commit bcc7968ff60299441048112ee03530148ec2418b Author: wehub-resource-sync Date: Mon Jul 13 13:08:41 2026 +0800 chore: import upstream snapshot with attribution diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..3cbe541 Binary files /dev/null and b/.DS_Store differ diff --git a/.codex b/.codex new file mode 100644 index 0000000..e69de29 diff --git a/.do/deploy.template.yaml b/.do/deploy.template.yaml new file mode 100644 index 0000000..0d924e3 --- /dev/null +++ b/.do/deploy.template.yaml @@ -0,0 +1,25 @@ +spec: + name: presenton + region: nyc + services: + - name: presenton + image: + registry_type: GHCR + registry: ghcr.io + repository: presenton/presenton + tag: latest + http_port: 80 + instance_count: 1 + instance_size_slug: apps-s-1vcpu-2gb + envs: + - key: MIGRATE_DATABASE_ON_STARTUP + value: "true" + scope: RUN_TIME + type: GENERAL + - key: START_OLLAMA + value: "false" + scope: RUN_TIME + type: GENERAL + alerts: + - rule: DEPLOYMENT_FAILED + - rule: DOMAIN_FAILED diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..352de0c --- /dev/null +++ b/.dockerignore @@ -0,0 +1,44 @@ +.git +.gitignore + +node_modules +**/node_modules +**/.next +**/.next-build +**/.venv +**/.pytest_cache +**/__pycache__ +**/*.pyc +**/debug +**/fastembed_cache +**/chroma +.cache +app_data +presentation-export +servers/fastapi/tests +servers/fastapi/presenton_backend.egg-info +servers/fastapi/.python-version +servers/fastapi/placeholder +servers/nextjs/cypress +servers/nextjs/cypress.config.ts +servers/nextjs/README.md +servers/nextjs/tsconfig.tsbuildinfo +**/*.cy.ts +**/*.cy.tsx + +# Keep only the LiteParse runner from the Electron tree. +electron/* +!electron/resources +electron/resources/* +!electron/resources/document-extraction +electron/resources/document-extraction/* +!electron/resources/document-extraction/liteparse_runner.mjs + +servers/fastapi/tmp +servers/fastapi/debug +servers/fastapi/.venv + +servers/nextjs/node_modules +servers/nextjs/.next + +container.db diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..f410a4c --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,15 @@ +# These are supported funding model platforms + +github: [presenton] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] +patreon: # Replace with a single Patreon username +open_collective: # Replace with a single Open Collective username +ko_fi: # Replace with a single Ko-fi username +tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel +community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry +liberapay: # Replace with a single Liberapay username +issuehunt: # Replace with a single IssueHunt username +lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry +polar: # Replace with a single Polar username +buy_me_a_coffee: # Replace with a single Buy Me a Coffee username +thanks_dev: # Replace with a single thanks.dev username +custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000..46de214 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,141 @@ +name: Bug report +description: Report crashes, regressions, or incorrect behavior in Presenton. +title: "[Bug]: " +labels: + - bug + +body: + - type: markdown + attributes: + value: | + Thanks for reporting a bug in **Presenton** 🚀 + Please provide clear steps so we can reproduce and fix the issue quickly. + + - type: dropdown + id: bug_type + attributes: + label: Bug type + description: Select the category that best matches the issue. + options: + - Regression (worked before, now fails) + - Crash (app exits or freezes) + - UI bug + - Generation bug (slides/content incorrect) + - Export bug (PPTX/PDF issues) + validations: + required: true + + - type: textarea + id: summary + attributes: + label: Summary + description: One sentence describing the issue. + placeholder: Exporting a generated presentation as PPTX fails after slide generation. + validations: + required: true + + - type: textarea + id: repro + attributes: + label: Steps to reproduce + description: Provide the shortest reproducible steps. + placeholder: | + 1. Start Presenton Electron app + 2. Generate presentation with 5 slides + 3. Click "Export PPTX" + 4. Error occurs + validations: + required: true + + - type: textarea + id: expected + attributes: + label: Expected behavior + description: What should happen. + placeholder: The presentation should export successfully as a PPTX file. + validations: + required: true + + - type: textarea + id: actual + attributes: + label: Actual behavior + description: What happened instead. + placeholder: Export fails and the app shows an error message. + validations: + required: true + + - type: input + id: version + attributes: + label: Presenton version + description: Version of Presenton you are using. + placeholder: 0.6.2-beta + validations: + required: true + + - type: input + id: os + attributes: + label: Operating system + description: OS and version. + placeholder: macOS 14 / Ubuntu 24.04 / Windows 11 + validations: + required: true + + - type: dropdown + id: run_method + attributes: + label: How are you running Presenton? + options: + - Electron Desktop App + - Docker + - Local Development + - API Only + validations: + required: true + + - type: dropdown + id: llm_provider + attributes: + label: LLM provider + description: AI model provider used for generation. + options: + - OpenAI + - Google Gemini + - Anthropic + - Ollama + - Custom OpenAI-compatible API + - Not relevant + + - type: textarea + id: logs + attributes: + label: Logs / screenshots + description: Include logs, console output, or screenshots. + render: shell + + - type: textarea + id: impact + attributes: + label: Impact + description: | + Explain how this bug affects usage. + + Include: + - Who is affected + - Severity + - Frequency + - Consequence + placeholder: | + Affected: Users generating AI presentations + Severity: High + Frequency: Always + Consequence: Presentations cannot be exported. + + - type: textarea + id: additional_information + attributes: + label: Additional information + description: Any extra context that might help debug the issue. + placeholder: Logs from Electron console, template used, or related issues. diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 0000000..f9cb530 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,88 @@ +name: Feature request +description: Suggest a new capability or improvement for Presenton. +title: "[Feature]: " +labels: + - enhancement + +body: + - type: markdown + attributes: + value: | + Thanks for suggesting an improvement to **Presenton** 🚀 + Please describe the feature clearly so we can understand the problem and evaluate the idea. + + - type: textarea + id: summary + attributes: + label: Summary + description: One-line description of the feature request. + placeholder: Add support for exporting presentations as Google Slides. + validations: + required: true + + - type: textarea + id: problem + attributes: + label: Problem to solve + description: What problem are you trying to solve? Why is the current behavior insufficient? + placeholder: | + Currently Presenton exports presentations only as PPTX or PDF. + Our team collaborates primarily in Google Slides, so we must manually convert files. + validations: + required: true + + - type: textarea + id: proposed_solution + attributes: + label: Proposed solution + description: Describe the feature you'd like to see and how it should work. + placeholder: | + Add a new export option for Google Slides. + When generating a presentation, users could select: + - PPTX + - PDF + - Google Slides + validations: + required: true + + - type: textarea + id: alternatives + attributes: + label: Alternatives considered + description: Have you considered other solutions or workarounds? + placeholder: | + Currently we export PPTX and manually upload to Google Slides, which adds extra steps. + + - type: textarea + id: use_case + attributes: + label: Use case + description: Describe how this feature would be used in real workflows. + placeholder: | + Teams generating AI presentations for meetings could directly open them in Google Slides + for collaborative editing. + + - type: textarea + id: impact + attributes: + label: Impact + description: | + Explain the importance of this feature. + + Include: + - Who would benefit from it + - Severity of the current limitation + - Frequency of the issue + - Workflow impact + placeholder: | + Affected users: Teams using Presenton for collaborative presentations + Severity: Medium + Frequency: Frequent + Impact: Saves time and removes manual conversion steps. + + - type: textarea + id: additional_information + attributes: + label: Additional information + description: Any extra context, screenshots, references, or examples. + placeholder: Links to similar features in Gamma, Beautiful AI, or other presentation tools. diff --git a/.github/workflows/README.md b/.github/workflows/README.md new file mode 100644 index 0000000..6f71ac4 --- /dev/null +++ b/.github/workflows/README.md @@ -0,0 +1,63 @@ +# GitHub Actions workflows + +## Test All Applications (`test-all.yml`) + +The test workflow runs on pushes and pull requests to `main`, and can also be +started manually. It enforces the checks that exist in the current repository: + +- repository tooling: template-converter tests and bundled export verification; +- FastAPI: every pytest test using the Python version and locked dependencies + declared in `servers/fastapi`; +- Next.js: all Node.js unit tests, ESLint, a production build, and Cypress + component tests. + +No test step is allowed to fail silently. + +## Run the CI checks locally + +Install Node.js 20+, npm, Python 3.11, and `uv`, then run: + +```bash +./test-local.sh +``` + +The script installs locked dependencies and runs the same commands as the +GitHub Actions workflow. + +## Run one test group + +### FastAPI + +```bash +cd servers/fastapi +uv sync --locked --dev +mkdir -p /tmp/presenton-tests/app-data /tmp/presenton-tests/temp +APP_DATA_DIRECTORY=/tmp/presenton-tests/app-data \ +TEMP_DIRECTORY=/tmp/presenton-tests/temp \ +DATABASE_URL=sqlite+aiosqlite:////tmp/presenton-tests/test.db \ +DISABLE_ANONYMOUS_TRACKING=true \ +DISABLE_IMAGE_GENERATION=true \ +uv run --locked python -m pytest --verbose --tb=short +``` + +### Next.js + +```bash +cd servers/nextjs +npm ci +npm test +npm run lint +NEXT_PUBLIC_FAST_API=http://localhost:8000 \ +NEXT_PUBLIC_URL=http://localhost:3000 \ +npm run build +npx cypress run --component --browser electron +``` + +### Repository tooling + +```bash +npm ci +npm test +npm run sync:presentation-export +npm run check:presentation-export +``` diff --git a/.github/workflows/docker-release.yml b/.github/workflows/docker-release.yml new file mode 100644 index 0000000..5eebda0 --- /dev/null +++ b/.github/workflows/docker-release.yml @@ -0,0 +1,77 @@ +name: Docker Release + +on: + workflow_dispatch: + release: + types: [published] + +permissions: + contents: read + packages: write + +concurrency: + group: docker-release-${{ github.event.release.tag_name || github.ref_name || github.run_id }} + cancel-in-progress: false + +env: + IMAGE_NAME: ghcr.io/presenton/presenton + MOVING_TAG: dev + +jobs: + build-and-push: + name: Build and push multi-architecture image + runs-on: ubuntu-latest + + steps: + - name: Checkout source + uses: actions/checkout@v4 + with: + ref: ${{ github.event.release.tag_name || github.ref }} + + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Log in to GHCR + uses: docker/login-action@v3 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Prepare Docker tags + id: docker-tags + shell: bash + run: | + if [[ "${{ github.event_name }}" == "release" ]]; then + IMAGE_TAG="${{ github.event.release.tag_name }}" + else + IMAGE_TAG="${MOVING_TAG}" + fi + + { + echo "tags<> "${GITHUB_OUTPUT}" + + - name: Build and push multi-architecture image + uses: docker/build-push-action@v7 + with: + context: . + platforms: linux/amd64,linux/arm64 + push: true + tags: ${{ steps.docker-tags.outputs.tags }} + cache-from: type=gha + cache-to: type=gha,mode=max + + - name: Verify image + env: + VERIFY_TAG: ${{ steps.docker-tags.outputs.verify_tag }} + run: | + docker buildx imagetools inspect "${IMAGE_NAME}:${VERIFY_TAG}" | tee image-inspect.txt + grep -q "linux/amd64" image-inspect.txt + grep -q "linux/arm64" image-inspect.txt diff --git a/.github/workflows/sync-releaes-to-r2.yml b/.github/workflows/sync-releaes-to-r2.yml new file mode 100644 index 0000000..0dedcb2 --- /dev/null +++ b/.github/workflows/sync-releaes-to-r2.yml @@ -0,0 +1,53 @@ +name: Upload Release to R2 + +on: + release: + types: [published] + +jobs: + upload: + runs-on: ubuntu-latest + environment: sync_r2 + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Download release assets + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + mkdir assets + gh release download "${{ github.event.release.tag_name }}" --dir assets --pattern '*.deb' --pattern '*.dmg' --pattern '*.exe' + echo "Downloaded files:" + ls -lh assets/ + + - name: Extract version from filename + run: | + FILE=$(ls assets/ | head -n 1) + VERSION=$(echo "$FILE" | sed -E 's/^Presenton-(.+)\.(deb|dmg|exe)$/\1/') + echo "Extracted version: $VERSION" + echo "VERSION=$VERSION" >> $GITHUB_ENV + + # 4. Install rclone + - name: Install rclone + run: | + curl https://rclone.org/install.sh | sudo bash + + # 5. Configure R2 + - name: Configure R2 + run: | + mkdir -p ~/.config/rclone + cat < ~/.config/rclone/rclone.conf + [r2] + type = s3 + provider = Cloudflare + access_key_id = ${{ secrets.R2_ACCESS_KEY }} + secret_access_key = ${{ secrets.R2_SECRET_KEY }} + endpoint = https://${{ secrets.R2_ACCOUNT_ID }}.r2.cloudflarestorage.com + EOF + + # 6. Upload to R2 (FINAL STEP) + - name: Upload files to R2 + run: | + rclone copy assets r2:presenton-desktop/${{ env.VERSION }} --progress --transfers=8 diff --git a/.github/workflows/test-all.yml b/.github/workflows/test-all.yml new file mode 100644 index 0000000..f8e5008 --- /dev/null +++ b/.github/workflows/test-all.yml @@ -0,0 +1,111 @@ +name: Test All Applications + +on: + push: + branches: [main] + pull_request: + branches: [main] + workflow_dispatch: + +permissions: + contents: read + +jobs: + test-repository-tools: + name: Test repository tooling + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: "20" + cache: npm + + - name: Install dependencies + run: npm ci + + - name: Run repository tests + run: npm test + + - name: Install presentation export runtime + run: npm run sync:presentation-export + + - name: Verify presentation export runtime + run: npm run check:presentation-export + + test-fastapi: + name: Test FastAPI + runs-on: ubuntu-latest + defaults: + run: + working-directory: servers/fastapi + env: + APP_DATA_DIRECTORY: /tmp/presenton-app-data + TEMP_DIRECTORY: /tmp/presenton-temp + DATABASE_URL: sqlite+aiosqlite:////tmp/presenton-test.db + DISABLE_ANONYMOUS_TRACKING: "true" + DISABLE_IMAGE_GENERATION: "true" + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: "3.11" + + - name: Set up uv + uses: astral-sh/setup-uv@v6 + with: + enable-cache: true + cache-dependency-glob: servers/fastapi/uv.lock + + - name: Install locked dependencies + run: uv sync --locked --dev + + - name: Create test directories + run: mkdir -p "$APP_DATA_DIRECTORY" "$TEMP_DIRECTORY" + + - name: Run all pytest tests + run: uv run --locked python -m pytest --verbose --tb=short + + test-nextjs: + name: Test Next.js + runs-on: ubuntu-latest + defaults: + run: + working-directory: servers/nextjs + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: "20" + cache: npm + cache-dependency-path: servers/nextjs/package-lock.json + + - name: Install dependencies + run: npm ci + + - name: Run Node.js tests + run: npm test + + - name: Run ESLint + run: npm run lint + + - name: Build application + env: + NEXT_PUBLIC_FAST_API: http://localhost:8000 + NEXT_PUBLIC_URL: http://localhost:3000 + run: npm run build + + - name: Run Cypress component tests + run: npx cypress run --component --browser electron diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..dc2f844 --- /dev/null +++ b/.gitignore @@ -0,0 +1,34 @@ +.env +.env.* +*.env +.venv +__pycache__ +.pytest_cache +.next +node_modules +out +user_data +app_data +tmp +debug +.fastembed_cache + +generated_models +nltk +chroma +container.db +.next-build +.cursor +.agents +skills-lock.json +.codex/ +eng.traineddata + +# presenton-export runtime (downloaded via scripts/sync-presentation-export.cjs or Docker build) +presentation-export/ +.cache/presentation-export/ +servers/fastapi/build/ +servers/fastapi/dist/ +servers/fastapi/fastembed_cache/ +servers/fastapi/*.egg-info/ +.codex/ diff --git a/.tmp-image-toolbar-figma.png b/.tmp-image-toolbar-figma.png new file mode 100644 index 0000000..b14a568 Binary files /dev/null and b/.tmp-image-toolbar-figma.png differ diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..b4f35d8 --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,153 @@ +# Presenton Code of Conduct + +## Our Community + +The **Presenton** community is made up of contributors, developers, designers, researchers, and users from all around the world. Together we are building an open-source platform for **AI-powered presentation generation**. + +We welcome contributions and participation from people of all backgrounds and experience levels. Whether you're fixing a typo, contributing code, reporting a bug, or proposing a new feature — you are a valued part of the community. + +To ensure a positive and inclusive environment for everyone, we ask all community members to follow this Code of Conduct. + +--- + +## Where This Applies + +This Code of Conduct applies to all spaces managed by the **Presenton project**, including but not limited to: + +- GitHub repositories (issues, pull requests, discussions) +- Official documentation +- Discord community +- Social media interactions +- Events, meetups, or presentations related to Presenton + +Violations of this code outside these spaces may also affect a person’s ability to participate in the Presenton community. + +--- + +## Our Values + +### 🤝 Be Friendly and Patient + +Remember that many people contribute their time voluntarily. Be patient with newcomers and respectful of different experience levels. + +--- + +### 🌍 Be Welcoming and Inclusive + +We are committed to creating a community that welcomes people of all backgrounds and identities. + +This includes, but is not limited to: + +- Race +- Ethnicity +- Culture +- National origin +- Gender identity and expression +- Sexual orientation +- Age +- Disability +- Religion +- Education level +- Socioeconomic background + +Everyone should feel safe and respected when participating in the Presenton community. + +--- + +### 🧠 Be Considerate + +Your work and decisions may impact others who rely on Presenton. Think about how your contributions affect: + +- users +- contributors +- maintainers +- the broader open-source ecosystem + +Remember that we are a global community, and English may not be everyone's first language. + +--- + +### Respect Others + +Disagreements are natural in any collaborative project, especially when discussing technical decisions. + +However: + +- Do not engage in personal attacks +- Avoid aggressive or dismissive language +- Focus on ideas, not individuals + +A respectful environment allows everyone to contribute effectively. + +--- + +### 💬 Choose Words Carefully + +We strive to maintain a professional and supportive community. + +The following behaviors are **not acceptable**: + +- Violent threats or abusive language +- Discriminatory jokes or remarks +- Harassment or intimidation +- Posting sexually explicit or violent material +- Sharing or threatening to share personal information ("doxing") +- Personal insults or derogatory language +- Unwanted sexual attention +- Encouraging or advocating harmful behavior +- Repeated harassment after being asked to stop + +If someone asks you to stop a behavior, please respect their request. + +--- + +### 🤔 When We Disagree + +Disagreements are part of building great software. + +When they occur: + +- Try to understand the other perspective +- Assume good intentions +- Focus on solving problems constructively + +Remember: **diverse perspectives make open-source projects stronger**. + +--- + +## Reporting Violations + +If you believe someone is violating this Code of Conduct, please report it privately. + +📧 **Email:** [suraj@presenton.ai](mailto:suraj@presenton.ai) + +All reports will be handled confidentially and respectfully by the maintainers. + +--- + +## Enforcement + +Project maintainers are responsible for clarifying and enforcing this Code of Conduct. They may take appropriate action in response to unacceptable behavior, including: + +- Warning the offender +- Removing content +- Temporarily restricting participation +- Banning users from community spaces + +Our goal is to maintain a safe and productive environment for everyone. + +--- + +## Acknowledgements + +This Code of Conduct is inspired by guidelines from open-source communities and the **Speak Up! project**, adapted for the Presenton community. + +--- + +## Questions? + +If you have questions about this Code of Conduct, feel free to contact us: + +📧 **suraj@presenton.ai** + +Thank you for helping make **Presenton a welcoming and collaborative open-source project.** diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..b6270fe --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,185 @@ +# Contributing to Presenton + +Welcome! 🚀 +Thanks for helping improve **Presenton — the open-source AI presentation generator.** + +## Quick Links + +- **GitHub:** https://github.com/presenton/presenton +- **Docs:** https://docs.presenton.ai +- **Website:** https://presenton.ai +- **Discord:** https://discord.gg/9ZsKKxudNE +- **X:** https://x.com/presentonai + +--- + +# Current Contribution Scope + +The Electron application contains: + +- Desktop application +- FastAPI backend +- Next.js frontend +- Local runtime integrations + +Contributions outside `electron/` may not be accepted at this time. + +--- + +# How to Contribute + +### Bugs +Open an issue and include: + +- Steps to reproduce +- Expected vs actual behavior +- Logs or screenshots + +### Features +Start a **GitHub Issue** or **Discussion** explaining: + +- The problem +- Proposed solution + +### Code Contributions + +1. Fork the repository +2. Create a branch +3. Implement your changes +4. Open a Pull Request + +Example branch names: + +``` + +feature/add-template-support +fix/export-pptx-error +docs/update-readme + +``` + +--- + +# Development Setup (Electron) + +### Prerequisites + +- Node.js (LTS) +- npm +- Python +- `uv` (Python package manager) + +# Setup Environment + +From the `electron` directory: + +``` +cd electron +npm run setup:env +``` + +This installs: + +- Node dependencies +- FastAPI dependencies +- Next.js dependencies + +--- + +# Run the Electron App (Development) + +``` + +npm run dev + +``` + +This will: + +- compile TypeScript +- start the Electron app +- run the backend and UI locally + +--- + +# Build the Electron App + +To build all components: + +``` + +npm run build:all + +``` + +--- + +# Before Opening a PR + +### CLA and PR age policy + +Pull requests must have the Contributor License Agreement (CLA) signed before +they can be accepted. Pull requests that remain open for more than 30 days +without a signed CLA may be discarded and closed. Please complete the CLA +prompt as soon as you open a pull request and update the pull request after +signing so maintainers can verify it. + +Please ensure: + +- Changes are **inside `electron/`** +- Code runs locally on development as well as build environment both +- PRs are **small and focused** +- You explain **what and why** + +For UI changes, include screenshots. + +--- + +# AI-Assisted Contributions + +PRs created with **AI tools (ChatGPT, Claude, Codex, etc.) are welcome.** + +Please mention: + +- that the PR is **AI-assisted** +- the level of testing performed +- confirmation that you reviewed the generated code + +--- + +# Good First Issues + +Look for issues labeled: + +``` + +good first issue +help wanted + +``` + +--- + +# Community + +Questions or discussions: + +💬 Discord +https://discord.gg/9ZsKKxudNE + +--- + +# Code of Conduct + +Please follow our community guidelines: + +``` + +CODE_OF_CONDUCT.md + +``` + +--- + +Thanks for helping make **Presenton better for everyone.** +``` diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..489cfca --- /dev/null +++ b/Dockerfile @@ -0,0 +1,161 @@ +# syntax=docker/dockerfile:1.7 + +FROM python:3.11-slim-trixie AS fastapi-builder + +WORKDIR /app/servers/fastapi + +ENV UV_COMPILE_BYTECODE=1 \ + UV_LINK_MODE=copy + +RUN python -m venv --without-pip /opt/venv \ + && pip install --no-cache-dir uv + +COPY servers/fastapi/pyproject.toml servers/fastapi/uv.lock ./ +RUN --mount=type=cache,target=/root/.cache/uv \ + uv export --frozen --no-dev --no-emit-project -o /tmp/requirements.txt \ + && uv pip install --python /opt/venv/bin/python -r /tmp/requirements.txt + +COPY servers/fastapi /app/servers/fastapi +RUN --mount=type=cache,target=/root/.cache/uv \ + uv pip install --python /opt/venv/bin/python --no-deps . +# mem0/spaCy BM25 lemmatization loads en_core_web_sm at runtime; spaCy tries pip to +# download it otherwise. Runtime image has no pip in PATH (--without-pip venv). +RUN --mount=type=cache,target=/root/.cache/uv \ + uv pip install --python /opt/venv/bin/python \ + "https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-3.8.0/en_core_web_sm-3.8.0-py3-none-any.whl" +ENV HF_HOME=/root/.cache/huggingface \ + PRESENTON_FASTEMBED_ICON_CACHE_DIR=/root/.cache/presenton/fastembed-icons +# Warm FastEmbed caches into the image (not a BuildKit cache mount, or HF weights would be missing). +RUN /opt/venv/bin/python scripts/warm_fastembed_cache.py + + +FROM node:20-bookworm-slim AS nextjs-builder + +WORKDIR /app/servers/nextjs + +ENV NEXT_TELEMETRY_DISABLED=1 + +COPY servers/nextjs/package.json servers/nextjs/package-lock.json ./ +RUN --mount=type=cache,target=/root/.npm \ + npm ci + +COPY servers/nextjs /app/servers/nextjs +RUN npm run build \ + && rm -rf .next-build/cache + + +FROM node:20-bookworm-slim AS assets-builder + +WORKDIR /app + +ARG TARGETARCH + +RUN apt-get update && apt-get install -y --no-install-recommends \ + ca-certificates unzip \ + && rm -rf /var/lib/apt/lists/* + +COPY package.json /app/ + +RUN mkdir -p /app/document-extraction-liteparse \ + && npm --prefix /app/document-extraction-liteparse init -y \ + && npm --prefix /app/document-extraction-liteparse install @llamaindex/liteparse@1.4.0 --omit=dev + +COPY electron/resources/document-extraction/liteparse_runner.mjs /app/document-extraction-liteparse/liteparse_runner.mjs +COPY scripts/sync-presentation-export.cjs /app/scripts/sync-presentation-export.cjs +# Bundled export still loads @img/sharp-* native addons from node_modules (not inlined). +RUN rm -rf /app/presentation-export \ + && EXPORT_RUNTIME_ARCH="${TARGETARCH}" node /app/scripts/sync-presentation-export.cjs --force \ + && find /app/presentation-export/py -maxdepth 1 -type f -name "convert-linux-*" -exec chmod +x {} \; \ + && cd /app/presentation-export \ + && npm init -y \ + && npm install "sharp@^0.34.5" --include=optional --omit=dev --no-fund --no-audit --no-package-lock + + +FROM python:3.11-slim-trixie AS runtime + +WORKDIR /app + +ARG INSTALL_TESSERACT=true +ARG TARGETARCH +ARG CHROMIUM_VERSION=149.0.7827.196-1~deb13u1 +ARG CHROMIUM_SNAPSHOT=20260625T180000Z + +# LiteParse uses Node + @llamaindex/liteparse (same runner as Electron); OCR uses Tesseract. +ENV APP_DATA_DIRECTORY=/app_data \ + TEMP_DIRECTORY=/tmp/presenton \ + EXPORT_PACKAGE_ROOT=/app/presentation-export \ + EXPORT_RUNTIME_DIR=/app/presentation-export \ + BUILT_PYTHON_MODULE_PATH=/app/presentation-export/py/convert-linux-current \ + PRESENTON_APP_ROOT=/app \ + HF_HOME=/root/.cache/huggingface \ + PRESENTON_FASTEMBED_ICON_CACHE_DIR=/root/.cache/presenton/fastembed-icons \ + PATH="/opt/venv/bin:${PATH}" \ + NODE_ENV=production \ + START_OLLAMA=false \ + PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium + +RUN set -eux; \ + printf 'Acquire::Check-Valid-Until "false";\n' > /etc/apt/apt.conf.d/99snapshot; \ + printf 'deb [check-valid-until=no] http://snapshot.debian.org/archive/debian-security/%s trixie-security main\n' "$CHROMIUM_SNAPSHOT" > /etc/apt/sources.list.d/chromium-snapshot.list; \ + packages="ca-certificates curl nginx fontconfig imagemagick zstd \ + fonts-liberation fonts-noto-core xdg-utils \ + libasound2t64 libatk-bridge2.0-0t64 libatk1.0-0t64 libatspi2.0-0t64 \ + libcairo2 libcups2t64 libdbus-1-3 libdrm2 libexpat1 libgbm1 \ + libglib2.0-0t64 libgtk-3-0t64 libnspr4 libnss3 libpango-1.0-0 \ + libx11-6 libxcb1 libxcomposite1 libxdamage1 libxext6 libxfixes3 \ + libxkbcommon0 libxrandr2 libxshmfence1 libxss1 libxtst6"; \ + if [ "$INSTALL_TESSERACT" = "true" ]; then packages="$packages tesseract-ocr tesseract-ocr-eng"; fi; \ + apt-get update; \ + apt-get install -y --no-install-recommends --allow-downgrades \ + $packages \ + chromium="${CHROMIUM_VERSION}" \ + chromium-common="${CHROMIUM_VERSION}" \ + chromium-driver="${CHROMIUM_VERSION}"; \ + apt-mark hold chromium chromium-common chromium-driver; \ + curl -fsSL https://deb.nodesource.com/setup_20.x | bash -; \ + apt-get install -y --no-install-recommends nodejs; \ + rm -rf /var/lib/apt/lists/* + +# Remove any non-Noto fonts that may have been installed as dependencies. +RUN find /usr/share/fonts -type f ! -iname 'Noto*' -delete \ + && find /usr/share/fonts -type d -empty -delete \ + && fc-cache -fsv + +RUN mkdir -p /app/scripts /app/servers/fastapi /app/servers/nextjs +RUN mkdir -p /app_data/exports /app_data/images /app_data/uploads /app_data/fonts /app_data/templates /app_data/pptx-to-html /app_data/pptx-to-json \ + && chmod -R a+rX /app_data + +COPY --from=fastapi-builder /opt/venv /opt/venv +COPY --from=fastapi-builder /app/servers/fastapi /app/servers/fastapi +COPY --from=fastapi-builder /root/.cache/huggingface /root/.cache/huggingface +COPY --from=fastapi-builder /root/.cache/presenton/fastembed-icons /root/.cache/presenton/fastembed-icons +COPY templates /app/templates + +COPY --from=assets-builder /app/package.json /app/package.json +COPY --from=assets-builder /app/document-extraction-liteparse /app/document-extraction-liteparse +COPY --from=assets-builder /app/presentation-export /app/presentation-export +COPY --from=assets-builder /app/scripts/sync-presentation-export.cjs /app/scripts/sync-presentation-export.cjs + +RUN set -eux; \ + if [ -z "${TARGETARCH:-}" ]; then TARGETARCH="$(dpkg --print-architecture)"; fi; \ + case "$TARGETARCH" in \ + amd64) export_arch="x64" ;; \ + arm64) export_arch="arm64" ;; \ + *) echo "Unsupported TARGETARCH: $TARGETARCH" && exit 1 ;; \ + esac; \ + test -f "/app/presentation-export/py/convert-linux-${export_arch}"; \ + ln -sf "/app/presentation-export/py/convert-linux-${export_arch}" /app/presentation-export/py/convert-linux-current; \ + chmod +x "/app/presentation-export/py/convert-linux-${export_arch}"; \ + ls -lah /app/presentation-export/py + +COPY --from=nextjs-builder /app/servers/nextjs/.next-build/standalone/ /app/servers/nextjs/ +COPY --from=nextjs-builder /app/servers/nextjs/public /app/servers/nextjs/public +COPY --from=nextjs-builder /app/servers/nextjs/.next-build/static /app/servers/nextjs/.next-build/static + +COPY start.js LICENSE NOTICE ./ +COPY scripts/presenton-terminal-banner.mjs /app/scripts/presenton-terminal-banner.mjs +COPY scripts/user-config-env.mjs /app/scripts/user-config-env.mjs +COPY nginx.conf /etc/nginx/nginx.conf + +EXPOSE 80 +CMD ["node", "/app/start.js"] diff --git a/Dockerfile.dev b/Dockerfile.dev new file mode 100644 index 0000000..355561f --- /dev/null +++ b/Dockerfile.dev @@ -0,0 +1,103 @@ +# syntax=docker/dockerfile:1.4 +FROM python:3.11-slim-trixie + +WORKDIR /app + +ARG TARGETARCH +ARG CHROMIUM_VERSION=149.0.7827.196-1~deb13u1 +ARG CHROMIUM_SNAPSHOT=20260625T180000Z + +# LiteParse (Node + @llamaindex/liteparse) for document extraction; OCR via Tesseract. +ENV APP_DATA_DIRECTORY=/app_data \ + TEMP_DIRECTORY=/tmp/presenton \ + UV_SYSTEM_PYTHON=1 \ + UV_COMPILE_BYTECODE=1 \ + UV_LINK_MODE=copy \ + PATH="/root/.local/bin:${PATH}" \ + EXPORT_PACKAGE_ROOT=/app/presentation-export \ + EXPORT_RUNTIME_DIR=/app/presentation-export \ + BUILT_PYTHON_MODULE_PATH=/app/presentation-export/py/convert-linux-current \ + PRESENTON_APP_ROOT=/app \ + HF_HOME=/root/.cache/huggingface \ + PRESENTON_FASTEMBED_ICON_CACHE_DIR=/root/.cache/presenton/fastembed-icons \ + PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium + +RUN printf 'Acquire::Check-Valid-Until "false";\n' > /etc/apt/apt.conf.d/99snapshot \ + && printf 'deb [check-valid-until=no] http://snapshot.debian.org/archive/debian-security/%s trixie-security main\n' "$CHROMIUM_SNAPSHOT" > /etc/apt/sources.list.d/chromium-snapshot.list \ + && apt-get update && apt-get install -y --no-install-recommends --allow-downgrades \ + ca-certificates curl unzip \ + nginx fontconfig imagemagick zstd \ + fonts-liberation fonts-noto-core xdg-utils \ + libasound2t64 libatk-bridge2.0-0t64 libatk1.0-0t64 libatspi2.0-0t64 \ + libcairo2 libcups2t64 libdbus-1-3 libdrm2 libexpat1 libgbm1 \ + libglib2.0-0t64 libgtk-3-0t64 libnspr4 libnss3 libpango-1.0-0 \ + libx11-6 libxcb1 libxcomposite1 libxdamage1 libxext6 libxfixes3 \ + libxkbcommon0 libxrandr2 libxshmfence1 libxss1 libxtst6 \ + tesseract-ocr tesseract-ocr-eng \ + chromium="${CHROMIUM_VERSION}" \ + chromium-common="${CHROMIUM_VERSION}" \ + chromium-driver="${CHROMIUM_VERSION}" \ + && apt-mark hold chromium chromium-common chromium-driver \ + && curl -LsSf https://astral.sh/uv/install.sh | sh \ + && rm -rf /var/lib/apt/lists/* + +# Remove any non-Noto fonts that may have been installed as dependencies. +RUN find /usr/share/fonts -type f ! -iname 'Noto*' -delete \ + && find /usr/share/fonts -type d -empty -delete \ + && fc-cache -fsv + +RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \ + && apt-get install -y nodejs \ + && rm -rf /var/lib/apt/lists/* + +COPY package.json package-lock.json /app/ +RUN npm --prefix /app install --omit=dev + +RUN mkdir -p /app/document-extraction-liteparse \ + && npm --prefix /app/document-extraction-liteparse init -y \ + && npm --prefix /app/document-extraction-liteparse install @llamaindex/liteparse@1.4.0 --omit=dev +COPY electron/resources/document-extraction/liteparse_runner.mjs /app/document-extraction-liteparse/liteparse_runner.mjs + +COPY scripts/sync-presentation-export.cjs /app/scripts/sync-presentation-export.cjs +COPY scripts/presenton-terminal-banner.mjs /app/scripts/presenton-terminal-banner.mjs +COPY scripts/user-config-env.mjs /app/scripts/user-config-env.mjs +RUN rm -rf /app/presentation-export \ + && EXPORT_RUNTIME_ARCH="${TARGETARCH}" node /app/scripts/sync-presentation-export.cjs --force \ + && find /app/presentation-export/py -maxdepth 1 -type f -name "convert-linux-*" -exec chmod +x {} \; \ + && set -eux; \ + if [ -z "${TARGETARCH:-}" ]; then TARGETARCH="$(dpkg --print-architecture)"; fi; \ + case "$TARGETARCH" in \ + amd64) export_arch="x64" ;; \ + arm64) export_arch="arm64" ;; \ + *) echo "Unsupported TARGETARCH: $TARGETARCH" && exit 1 ;; \ + esac; \ + test -f "/app/presentation-export/py/convert-linux-${export_arch}"; \ + ln -sf "/app/presentation-export/py/convert-linux-${export_arch}" /app/presentation-export/py/convert-linux-current; \ + chmod +x "/app/presentation-export/py/convert-linux-${export_arch}"; \ + ls -lah /app/presentation-export/py + +# Bind mount `.:/app` hides any .venv under servers/fastapi at runtime — install deps into +# system site-packages (same interpreter `start.js` uses as `python`). +COPY servers/fastapi /app/servers/fastapi +COPY templates /app/templates +WORKDIR /app/servers/fastapi +RUN --mount=type=cache,target=/root/.cache/uv \ + uv export --frozen --no-dev --no-emit-project -o /tmp/requirements.txt \ + && uv pip install --system -r /tmp/requirements.txt \ + && uv pip install --system --no-deps . +# Mem0 BM25 lemmatization requires a spaCy language model at runtime. +# Installing it in the image avoids per-run downloads and startup self-disable. +RUN --mount=type=cache,target=/root/.cache/uv \ + uv pip install --system \ + "https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-3.8.0/en_core_web_sm-3.8.0-py3-none-any.whl" + +# FastEmbed + Hugging Face Hub weights for icon search and Mem0 (no cache-only mount here: +# those files must remain in the image layer). +WORKDIR /app/servers/fastapi +RUN python scripts/warm_fastembed_cache.py + +WORKDIR /app +COPY nginx.conf /etc/nginx/nginx.conf + +EXPOSE 80 +CMD ["node", "/app/start.js", "--dev"] diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..5566576 --- /dev/null +++ b/LICENSE @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2025 presenton + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/NOTICE b/NOTICE new file mode 100644 index 0000000..ba5df53 --- /dev/null +++ b/NOTICE @@ -0,0 +1,26825 @@ +------------------------------------- +PYTHON PACKAGES +------------------------------------- +aioquic +1.2.0 +BSD-3-Clause +Jeremy Lainé + +Copyright (c) Jeremy Lainé. +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 aioquic 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 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. + +argon2-cffi +23.1.0 + +Hynek Schlawack + +The MIT License (MIT) + +Copyright (c) 2015 Hynek Schlawack and the argon2-cffi 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. + +argon2-cffi-bindings +25.1.0 + +Hynek Schlawack + +The MIT License (MIT) + +Copyright (c) 2021 Hynek Schlawack + +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. + +asgiref +3.8.1 +BSD-3-Clause +Django Software Foundation + +Copyright (c) Django Software Foundation and individual 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: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. 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. + + 3. Neither the name of Django 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. + +attrs +25.3.0 + +Hynek Schlawack + +The MIT License (MIT) + +Copyright (c) 2015 Hynek Schlawack and the attrs 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. + +blinker +1.9.0 + +Jason Kirtland + +Copyright 2010 Jason Kirtland + +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. + +Brotli +1.1.0 +MIT +The Brotli Authors + +Copyright (c) 2009, 2010, 2013-2016 by the Brotli Authors. + +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. + +certifi +2025.8.3 +MPL-2.0 +Kenneth Reitz + +This package contains a modified version of ca-bundle.crt: + +ca-bundle.crt -- Bundle of CA Root Certificates + +This is a bundle of X.509 certificates of public Certificate Authorities +(CA). These were automatically extracted from Mozilla's root certificates +file (certdata.txt). This file can be found in the mozilla source tree: +https://hg.mozilla.org/mozilla-central/file/tip/security/nss/lib/ckfw/builtins/certdata.txt +It contains the certificates in PEM format and therefore +can be directly used with curl / libcurl / php_curl, or with +an Apache+mod_ssl webserver for SSL client authentication. +Just configure this file as the SSLCACertificateFile.# + +***** BEGIN LICENSE BLOCK ***** +This Source Code Form is subject to the terms of the Mozilla Public License, +v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain +one at http://mozilla.org/MPL/2.0/. + +***** END LICENSE BLOCK ***** +@(#) $RCSfile: certdata.txt,v $ $Revision: 1.80 $ $Date: 2011/11/03 15:11:58 $ + +cffi +1.17.1 +MIT +Armin Rigo, Maciej Fijalkowski + +Except when otherwise stated (look for LICENSE files in directories or +information at the beginning of each file) all software and +documentation is licensed as follows: + + The 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. + +click +8.2.1 + + + +Copyright 2014 Pallets + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. 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. + +3. Neither the name of the copyright holder 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 +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. + +cryptography +44.0.3 +Apache-2.0 OR BSD-3-Clause +The cryptography developers + +This software is made available under the terms of *either* of the licenses +found in LICENSE.APACHE or LICENSE.BSD. Contributions to cryptography are made +under the terms of *both* these licenses. + +Flask +3.1.0 + + + +Copyright 2010 Pallets + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. 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. + +3. Neither the name of the copyright holder 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 +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. + +h11 +0.16.0 +MIT +Nathaniel J. Smith + +The MIT License (MIT) + +Copyright (c) 2016 Nathaniel J. Smith and other 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. + +h2 +4.1.0 +MIT License +Cory Benfield + +The MIT License (MIT) + +Copyright (c) 2015-2020 Cory Benfield and 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. + +hpack +4.1.0 +The MIT License (MIT) + +Copyright (c) 2014 Cory Benfield + +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. +Cory Benfield + +The MIT License (MIT) + +Copyright (c) 2014 Cory Benfield + +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. + +hyperframe +6.1.0 +The MIT License (MIT) + +Copyright (c) 2014 Cory Benfield + +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. +Cory Benfield + +The MIT License (MIT) + +Copyright (c) 2014 Cory Benfield + +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. + +itsdangerous +2.2.0 + + + +Copyright 2011 Pallets + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. 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. + +3. Neither the name of the copyright holder 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 +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. + +Jinja2 +3.1.6 + + + +Copyright 2007 Pallets + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. 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. + +3. Neither the name of the copyright holder 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 +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. + +kaitaistruct +0.10 +MIT +Kaitai Project + +MIT License + +Copyright (c) 2015-2022 Kaitai Project + +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. + +ldap3 +2.9.1 +LGPL v3 +Giovanni Cannata + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU Lesser General Public License as published +by the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public License +along with this program in the COPYING and COPYING.LESSER files. +If not, see . + +MarkupSafe +3.0.2 +Copyright 2010 Pallets + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +1. Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + +2. 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. + +3. Neither the name of the copyright holder 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 +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. + + +Copyright 2010 Pallets + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. 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. + +3. Neither the name of the copyright holder 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 +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. + +mitmproxy +12.1.1 +Copyright (c) 2013, Aldo Cortesi. 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. +Aldo Cortesi + +Copyright (c) 2013, Aldo Cortesi. 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. + +mitmproxy_linux +0.12.7 +MIT +Fabio Valentini , Maximilian Hils + +License field from METADATA: +MIT + +mitmproxy_rs +0.12.7 +MIT +Fabio Valentini , Maximilian Hils + +License field from METADATA: +MIT + +msgpack +1.1.0 +Apache 2.0 +Inada Naoki + +Copyright (C) 2008-2011 INADA Naoki + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +passlib +1.7.4 +BSD +Eli Collins + +.. -*- restructuredtext -*- + +===================== +Copyrights & Licenses +===================== + +Credits +======= +Passlib is primarily developed by Eli Collins. + +Special thanks to Darin Gordon for testing and +feedback on the :mod:`passlib.totp` module. + +License for Passlib +=================== +Passlib is (c) `Assurance Technologies `_, +and is released under the `BSD license `_:: + + Passlib + Copyright (c) 2008-2020 Assurance Technologies, LLC. + 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 Assurance Technologies, nor the names of the + 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. + +Licenses for incorporated software +================================== +Passlib contains some code derived from the following sources: + +MD5-Crypt +--------- +The source file ``passlib/handlers/md5_crypt.py`` contains code derived from the original +`FreeBSD md5-crypt implementation `_, +which is available under the following license:: + + "THE BEER-WARE LICENSE" (Revision 42): + wrote this file. As long as you retain this notice you + can do whatever you want with this stuff. If we meet some day, and you think + this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp + + converted to python May 2008 + by Eli Collins + +DES +--- +The source file ``passlib/crypto/des.py`` contains code derived from +`UnixCrypt.java `_, +a pure-java implementation of the historic unix-crypt password hash algorithm. +It is available under the following license:: + + UnixCrypt.java 0.9 96/11/25 + Copyright (c) 1996 Aki Yoshida. All rights reserved. + Permission to use, copy, modify and distribute this software + for non-commercial or commercial purposes and without fee is + hereby granted provided that this copyright notice appears in + all copies. + + modified April 2001 + by Iris Van den Broeke, Daniel Deville + + modified Aug 2005 + by Greg Wilkins (gregw) + + converted to python Jun 2009 + by Eli Collins + +jBCrypt +------- +The source file ``passlib/crypto/_blowfish/base.py`` contains code derived +from `jBcrypt 0.2 `_, a Java +implementation of the BCrypt password hash algorithm. It is available under +a BSD/ISC license:: + + Copyright (c) 2006 Damien Miller + + Permission to use, copy, modify, and 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 TORTUOUS ACTION, ARISING OUT OF + OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +Wordsets +-------- +The EFF wordsets in ``passlib/_data/wordsets`` are (c) 2016 the Electronic Freedom Foundation. +They were downloaded from ``_, +and are released under the `Creative Commons License `_. + +pip +25.2 + +The pip developers + +@Switch01 +A_Rog +Aakanksha Agrawal +Abhinav Sagar +ABHYUDAY PRATAP SINGH +abs51295 +AceGentile +Adam Chainz +Adam Tse +Adam Turner +Adam Wentz +admin +Adolfo Ochagavía +Adrien Morison +Agus +ahayrapetyan +Ahilya +AinsworthK +Akash Srivastava +Alan Yee +Albert Tugushev +Albert-Guan +albertg +Alberto Sottile +Aleks Bunin +Ales Erjavec +Alethea Flowers +Alex Gaynor +Alex Grönholm +Alex Hedges +Alex Loosley +Alex Morega +Alex Stachowiak +Alexander Regueiro +Alexander Shtyrov +Alexandre Conrad +Alexey Popravka +Aleš Erjavec +Alli +Ami Fischman +Ananya Maiti +Anatoly Techtonik +Anders Kaseorg +Andre Aguiar +Andreas Lutro +Andrei Geacar +Andrew Gaul +Andrew Shymanel +Andrey Bienkowski +Andrey Bulgakov +Andrés Delfino +Andy Freeland +Andy Kluger +Ani Hayrapetyan +Aniruddha Basak +Anish Tambe +Anrs Hu +Anthony Sottile +Antoine Musso +Anton Ovchinnikov +Anton Patrushev +Anton Zelenov +Antonio Alvarado Hernandez +Antony Lee +Antti Kaihola +Anubhav Patel +Anudit Nagar +Anuj Godase +AQNOUCH Mohammed +AraHaan +arena +arenasys +Arindam Choudhury +Armin Ronacher +Arnon Yaari +Artem +Arun Babu Neelicattu +Ashley Manton +Ashwin Ramaswami +atse +Atsushi Odagiri +Avinash Karhana +Avner Cohen +Awit (Ah-Wit) Ghirmai +Baptiste Mispelon +Barney Gale +barneygale +Bartek Ogryczak +Bastian Venthur +Ben Bodenmiller +Ben Darnell +Ben Hoyt +Ben Mares +Ben Rosser +Bence Nagy +Benjamin Peterson +Benjamin VanEvery +Benoit Pierre +Berker Peksag +Bernard +Bernard Tyers +Bernardo B. Marques +Bernhard M. Wiedemann +Bertil Hatt +Bhavam Vidyarthi +Blazej Michalik +Bogdan Opanchuk +BorisZZZ +Brad Erickson +Bradley Ayers +Bradley Reynolds +Branch Vincent +Brandon L. Reiss +Brandt Bucher +Brannon Dorsey +Brett Randall +Brett Rosen +Brian Cristante +Brian Rosner +briantracy +BrownTruck +Bruno Oliveira +Bruno Renié +Bruno S +Bstrdsmkr +Buck Golemon +burrows +Bussonnier Matthias +bwoodsend +c22 +Caleb Brown +Caleb Martinez +Calvin Smith +Carl Meyer +Carlos Liam +Carol Willing +Carter Thayer +Cass +Chandrasekhar Atina +Charlie Marsh +charwick +Chih-Hsuan Yen +Chris Brinker +Chris Hunt +Chris Jerdonek +Chris Kuehl +Chris Markiewicz +Chris McDonough +Chris Pawley +Chris Pryer +Chris Wolfe +Christian Clauss +Christian Heimes +Christian Oudard +Christoph Reiter +Christopher Hunt +Christopher Snyder +chrysle +cjc7373 +Clark Boylan +Claudio Jolowicz +Clay McClure +Cody +Cody Soyland +Colin Watson +Collin Anderson +Connor Osborn +Cooper Lees +Cooper Ry Lees +Cory Benfield +Cory Wright +Craig Kerstiens +Cristian Sorinel +Cristina +Cristina Muñoz +ctg123 +Curtis Doty +cytolentino +Daan De Meyer +Dale +Damian +Damian Quiroga +Damian Shaw +Dan Black +Dan Savilonis +Dan Sully +Dane Hillard +daniel +Daniel Collins +Daniel Hahler +Daniel Holth +Daniel Jost +Daniel Katz +Daniel Shaulov +Daniele Esposti +Daniele Nicolodi +Daniele Procida +Daniil Konovalenko +Danny Hermes +Danny McClanahan +Darren Kavanagh +Dav Clark +Dave Abrahams +Dave Jones +David Aguilar +David Black +David Bordeynik +David Caro +David D Lowe +David Evans +David Hewitt +David Linke +David Poggi +David Poznik +David Pursehouse +David Runge +David Tucker +David Wales +Davidovich +ddelange +Deepak Sharma +Deepyaman Datta +Denis Roussel (ACSONE) +Denise Yu +dependabot[bot] +derwolfe +Desetude +developer +Devesh Kumar +Devesh Kumar Singh +devsagul +Diego Caraballo +Diego Ramirez +DiegoCaraballo +Dimitri Merejkowsky +Dimitri Papadopoulos +Dimitri Papadopoulos Orfanos +Dirk Stolle +Dmitry Gladkov +Dmitry Volodin +Domen Kožar +Dominic Davis-Foster +Donald Stufft +Dongweiming +doron zarhi +Dos Moonen +Douglas Thor +DrFeathers +Dustin Ingram +Dustin Rodrigues +Dwayne Bailey +Ed Morley +Edgar Ramírez +Edgar Ramírez Mondragón +Ee Durbin +Efflam Lemaillet +efflamlemaillet +Eitan Adler +ekristina +elainechan +Eli Schwartz +Elisha Hollander +Ellen Marie Dash +Emil Burzo +Emil Styrke +Emmanuel Arias +Endoh Takanao +enoch +Erdinc Mutlu +Eric Cousineau +Eric Gillingham +Eric Hanchrow +Eric Hopper +Erik M. Bray +Erik Rose +Erwin Janssen +Eugene Vereshchagin +everdimension +Federico +Felipe Peter +Felix Yan +fiber-space +Filip Kokosiński +Filipe Laíns +Finn Womack +finnagin +Flavio Amurrio +Florian Briand +Florian Rathgeber +Francesco +Francesco Montesano +Fredrik Orderud +Fredrik Roubert +Frost Ming +Gabriel Curio +Gabriel de Perthuis +Garry Polley +gavin +gdanielson +Gene Wood +Geoffrey Sneddon +George Margaritis +George Song +Georgi Valkov +Georgy Pchelkin +ghost +Giftlin Rajaiah +gizmoguy1 +gkdoc +Godefroid Chapelle +Gopinath M +GOTO Hayato +gousaiyang +gpiks +Greg Roodt +Greg Ward +Guilherme Espada +Guillaume Seguin +gutsytechster +Guy Rozendorn +Guy Tuval +gzpan123 +Hanjun Kim +Hari Charan +Harsh Vardhan +harupy +Harutaka Kawamura +hauntsaninja +Henrich Hartzer +Henry Schreiner +Herbert Pfennig +Holly Stotelmyer +Honnix +Hsiaoming Yang +Hugo Lopes Tavares +Hugo van Kemenade +Hugues Bruant +Hynek Schlawack +iamsrp-deshaw +Ian Bicking +Ian Cordasco +Ian Lee +Ian Stapleton Cordasco +Ian Wienand +Igor Kuzmitshov +Igor Sobreira +Ikko Ashimine +Ilan Schnell +Illia Volochii +Ilya Baryshev +Inada Naoki +Ionel Cristian Mărieș +Ionel Maries Cristian +Itamar Turner-Trauring +iTrooz +Ivan Pozdeev +J. Nick Koston +Jacob Kim +Jacob Walls +Jaime Sanz +Jake Lishman +jakirkham +Jakub Kuczys +Jakub Stasiak +Jakub Vysoky +Jakub Wilk +James Cleveland +James Curtin +James Firth +James Gerity +James Polley +Jan Pokorný +Jannis Leidel +Jarek Potiuk +jarondl +Jason Curtis +Jason R. Coombs +JasonMo +JasonMo1 +Jay Graves +Jean Abou Samra +Jean-Christophe Fillion-Robin +Jeff Barber +Jeff Dairiki +Jeff Widman +Jelmer Vernooij +jenix21 +Jeremy Fleischman +Jeremy Stanley +Jeremy Zafran +Jesse Rittner +Jiashuo Li +Jim Fisher +Jim Garrison +Jinzhe Zeng +Jiun Bae +Jivan Amara +Joa +Joe Bylund +Joe Michelini +Johannes Altmanninger +John Paton +John Sirois +John T. Wodder II +John-Scott Atlakson +johnthagen +Jon Banafato +Jon Dufresne +Jon Parise +Jonas Nockert +Jonathan Herbert +Joonatan Partanen +Joost Molenaar +Jorge Niedbalski +Joseph Bylund +Joseph Long +Josh Bronson +Josh Cannon +Josh Hansen +Josh Schneier +Joshua +JoshuaPerdue +Juan Luis Cano Rodríguez +Juanjo Bazán +Judah Rand +Julian Berman +Julian Gethmann +Julien Demoor +July Tikhonov +Jussi Kukkonen +Justin van Heek +jwg4 +Jyrki Pulliainen +Kai Chen +Kai Mueller +Kamal Bin Mustafa +Karolina Surma +kasium +kaustav haldar +keanemind +Keith Maxwell +Kelsey Hightower +Kenneth Belitzky +Kenneth Reitz +Kevin Burke +Kevin Carter +Kevin Frommelt +Kevin R Patterson +Kexuan Sun +Kit Randel +Klaas van Schelven +KOLANICH +konstin +kpinc +Krishan Bhasin +Krishna Oza +Kumar McMillan +Kuntal Majumder +Kurt McKee +Kyle Persohn +lakshmanaram +Laszlo Kiss-Kollar +Laurent Bristiel +Laurent LAPORTE +Laurie O +Laurie Opperman +layday +Leon Sasson +Lev Givon +Lincoln de Sousa +Lipis +lorddavidiii +Loren Carvalho +Lucas Cimon +Ludovic Gasc +Luis Medel +Lukas Geiger +Lukas Juhrich +Luke Macken +Luo Jiebin +luojiebin +luz.paz +László Kiss Kollár +M00nL1ght +Malcolm Smith +Marc Abramowitz +Marc Tamlyn +Marcus Smith +Mariatta +Mark Kohler +Mark McLoughlin +Mark Williams +Markus Hametner +Martey Dodoo +Martin Fischer +Martin Häcker +Martin Pavlasek +Masaki +Masklinn +Matej Stuchlik +Mathew Jennings +Mathieu Bridon +Mathieu Kniewallner +Matt Bacchi +Matt Good +Matt Maker +Matt Robenolt +Matt Wozniski +matthew +Matthew Einhorn +Matthew Feickert +Matthew Gilliard +Matthew Hughes +Matthew Iversen +Matthew Treinish +Matthew Trumbell +Matthew Willson +Matthias Bussonnier +mattip +Maurits van Rees +Max W Chase +Maxim Kurnikov +Maxime Rouyrre +mayeut +mbaluna +Md Sujauddin Sekh +mdebi +memoselyk +meowmeowcat +Michael +Michael Aquilina +Michael E. Karpeles +Michael Klich +Michael Mintz +Michael Williamson +michaelpacer +Michał Górny +Mickaël Schoentgen +Miguel Araujo Perez +Mihir Singh +Mike +Mike Hendricks +Min RK +MinRK +Miro Hrončok +Monica Baluna +montefra +Monty Taylor +morotti +mrKazzila +Muha Ajjan +Nadav Wexler +Nahuel Ambrosini +Nate Coraor +Nate Prewitt +Nathan Houghton +Nathaniel J. Smith +Nehal J Wani +Neil Botelho +Nguyễn Gia Phong +Nicholas Serra +Nick Coghlan +Nick Stenning +Nick Timkovich +Nicolas Bock +Nicole Harris +Nikhil Benesch +Nikhil Ladha +Nikita Chepanov +Nikolay Korolev +Nipunn Koorapati +Nitesh Sharma +Niyas Sait +Noah +Noah Gorny +Nowell Strite +NtaleGrey +nucccc +nvdv +OBITORASU +Ofek Lev +ofrinevo +Oleg Burnaev +Oliver Freund +Oliver Jeeves +Oliver Mannion +Oliver Tonnhofer +Olivier Girardot +Olivier Grisel +Ollie Rutherfurd +OMOTO Kenji +Omry Yadan +onlinejudge95 +Oren Held +Oscar Benjamin +Oz N Tiram +Pachwenko +Patrick Dubroy +Patrick Jenkins +Patrick Lawson +patricktokeeffe +Patrik Kopkan +Paul Ganssle +Paul Kehrer +Paul Moore +Paul Nasrat +Paul Oswald +Paul van der Linden +Paulus Schoutsen +Pavel Safronov +Pavithra Eswaramoorthy +Pawel Jasinski +Paweł Szramowski +Pekka Klärck +Peter Gessler +Peter Lisák +Peter Shen +Peter Waller +Petr Viktorin +petr-tik +Phaneendra Chiruvella +Phil Elson +Phil Freo +Phil Pennock +Phil Whelan +Philip Jägenstedt +Philip Molloy +Philippe Ombredanne +Pi Delport +Pierre-Yves Rofes +Pieter Degroote +pip +Prabakaran Kumaresshan +Prabhjyotsing Surjit Singh Sodhi +Prabhu Marappan +Pradyun Gedam +Prashant Sharma +Pratik Mallya +pre-commit-ci[bot] +Preet Thakkar +Preston Holmes +Przemek Wrzos +Pulkit Goyal +q0w +Qiangning Hong +Qiming Xu +qraqras +Quentin Lee +Quentin Pradet +R. David Murray +Rafael Caricio +Ralf Schmitt +Ran Benita +Randy Döring +Razzi Abuissa +rdb +Reece Dunham +Remi Rampin +Rene Dudfield +Riccardo Magliocchetti +Riccardo Schirone +Richard Jones +Richard Si +Ricky Ng-Adam +Rishi +rmorotti +RobberPhex +Robert Collins +Robert McGibbon +Robert Pollak +Robert T. McGibbon +robin elisha robinson +Rodney, Tiara +Roey Berman +Rohan Jain +Roman Bogorodskiy +Roman Donchenko +Romuald Brunet +ronaudinho +Ronny Pfannschmidt +Rory McCann +Ross Brattain +Roy Wellington Ⅳ +Ruairidh MacLeod +Russell Keith-Magee +Ryan Shepherd +Ryan Wooden +ryneeverett +Ryuma Asai +S. Guliaev +Sachi King +Salvatore Rinchiera +sandeepkiran-js +Sander Van Balen +Savio Jomton +schlamar +Scott Kitterman +Sean +seanj +Sebastian Jordan +Sebastian Schaetz +Segev Finer +SeongSoo Cho +Sepehr Rasouli +sepehrrasooli +Sergey Vasilyev +Seth Michael Larson +Seth Woodworth +Shahar Epstein +Shantanu +shenxianpeng +shireenrao +Shivansh-007 +Shixian Sheng +Shlomi Fish +Shovan Maity +Simeon Visser +Simon Cross +Simon Pichugin +sinoroc +sinscary +snook92 +socketubs +Sorin Sbarnea +Srinivas Nyayapati +Srishti Hegde +Stavros Korokithakis +Stefan Scherfke +Stefano Rivera +Stephan Erb +Stephen Payne +Stephen Rosen +stepshal +Steve (Gadget) Barnes +Steve Barnes +Steve Dower +Steve Kowalik +Steven Myint +Steven Silvester +stonebig +studioj +Stéphane Bidoul +Stéphane Bidoul (ACSONE) +Stéphane Klein +Sumana Harihareswara +Surbhi Sharma +Sviatoslav Sydorenko +Sviatoslav Sydorenko (Святослав Сидоренко) +Swat009 +Sylvain +Takayuki SHIMIZUKAWA +Taneli Hukkinen +tbeswick +Thiago +Thijs Triemstra +Thomas Fenzl +Thomas Grainger +Thomas Guettler +Thomas Johansson +Thomas Kluyver +Thomas Smith +Thomas VINCENT +Tim D. Smith +Tim Gates +Tim Harder +Tim Heap +tim smith +tinruufu +Tobias Hermann +Tom Forbes +Tom Freudenheim +Tom V +Tomas Hrnciar +Tomas Orsava +Tomer Chachamu +Tommi Enenkel | AnB +Tomáš Hrnčiar +Tony Beswick +Tony Narlock +Tony Zhaocheng Tan +TonyBeswick +toonarmycaptain +Toshio Kuratomi +toxinu +Travis Swicegood +Tushar Sadhwani +Tzu-ping Chung +Valentin Haenel +Victor Stinner +victorvpaulo +Vikram - Google +Viktor Szépe +Ville Skyttä +Vinay Sajip +Vincent Philippon +Vinicyus Macedo +Vipul Kumar +Vitaly Babiy +Vladimir Fokow +Vladimir Rutsky +W. Trevor King +Wil Tan +Wilfred Hughes +William Edwards +William ML Leslie +William T Olson +William Woodruff +Wilson Mo +wim glenn +Winson Luk +Wolfgang Maier +Wu Zhenyu +XAMES3 +Xavier Fernandez +Xianpeng Shen +xoviat +xtreak +YAMAMOTO Takashi +Yen Chi Hsuan +Yeray Diaz Diaz +Yoval P +Yu Jian +Yuan Jing Vincent Yan +Yuki Kobayashi +Yusuke Hayashi +zackzack38 +Zearin +Zhiping Deng +ziebam +Zvezdan Petkovic +Łukasz Langa +Роман Донченко +Семён Марьясин + +proxy.py +2.4.10 +'BSD' +Abhinav Singh + +License field from METADATA: +'BSD' + +publicsuffix2 +2.20191221 +MIT and MPL-2.0 +nexB Inc., Tomaz Solc, David Wilson and others. + +The Public Suffix List vendored in this distribution has been downloaded +from http://publicsuffix.org/public_suffix_list.dat +This data file is licensed under the MPL-2.0 license. +http://mozilla.org/MPL/2.0/ + +Mozilla Public License Version 2.0 +================================== + +1. Definitions +-------------- + +1.1. "Contributor" + means each individual or legal entity that creates, contributes to + the creation of, or owns Covered Software. + +1.2. "Contributor Version" + means the combination of the Contributions of others (if any) used + by a Contributor and that particular Contributor's Contribution. + +1.3. "Contribution" + means Covered Software of a particular Contributor. + +1.4. "Covered Software" + means Source Code Form to which the initial Contributor has attached + the notice in Exhibit A, the Executable Form of such Source Code + Form, and Modifications of such Source Code Form, in each case + including portions thereof. + +1.5. "Incompatible With Secondary Licenses" + means + + (a) that the initial Contributor has attached the notice described + in Exhibit B to the Covered Software; or + + (b) that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the + terms of a Secondary License. + +1.6. "Executable Form" + means any form of the work other than Source Code Form. + +1.7. "Larger Work" + means a work that combines Covered Software with other material, in + a separate file or files, that is not Covered Software. + +1.8. "License" + means this document. + +1.9. "Licensable" + means having the right to grant, to the maximum extent possible, + whether at the time of the initial grant or subsequently, any and + all of the rights conveyed by this License. + +1.10. "Modifications" + means any of the following: + + (a) any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered + Software; or + + (b) any new file in Source Code Form that contains any Covered + Software. + +1.11. "Patent Claims" of a Contributor + means any patent claim(s), including without limitation, method, + process, and apparatus claims, in any patent Licensable by such + Contributor that would be infringed, but for the grant of the + License, by the making, using, selling, offering for sale, having + made, import, or transfer of either its Contributions or its + Contributor Version. + +1.12. "Secondary License" + means either the GNU General Public License, Version 2.0, the GNU + Lesser General Public License, Version 2.1, the GNU Affero General + Public License, Version 3.0, or any later versions of those + licenses. + +1.13. "Source Code Form" + means the form of the work preferred for making modifications. + +1.14. "You" (or "Your") + means an individual or a legal entity exercising rights under this + License. For legal entities, "You" includes any entity that + controls, is controlled by, or is under common control with You. For + purposes of this definition, "control" means (a) the power, direct + or indirect, to cause the direction or management of such entity, + whether by contract or otherwise, or (b) ownership of more than + fifty percent (50%) of the outstanding shares or beneficial + ownership of such entity. + +2. License Grants and Conditions +-------------------------------- + +2.1. Grants + +Each Contributor hereby grants You a world-wide, royalty-free, +non-exclusive license: + +(a) under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or + as part of a Larger Work; and + +(b) under Patent Claims of such Contributor to make, use, sell, offer + for sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. + +2.2. Effective Date + +The licenses granted in Section 2.1 with respect to any Contribution +become effective for each Contribution on the date the Contributor first +distributes such Contribution. + +2.3. Limitations on Grant Scope + +The licenses granted in this Section 2 are the only rights granted under +this License. No additional rights or licenses will be implied from the +distribution or licensing of Covered Software under this License. +Notwithstanding Section 2.1(b) above, no patent license is granted by a +Contributor: + +(a) for any code that a Contributor has removed from Covered Software; + or + +(b) for infringements caused by: (i) Your and any other third party's + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or + +(c) under Patent Claims infringed by Covered Software in the absence of + its Contributions. + +This License does not grant any rights in the trademarks, service marks, +or logos of any Contributor (except as may be necessary to comply with +the notice requirements in Section 3.4). + +2.4. Subsequent Licenses + +No Contributor makes additional grants as a result of Your choice to +distribute the Covered Software under a subsequent version of this +License (see Section 10.2) or under the terms of a Secondary License (if +permitted under the terms of Section 3.3). + +2.5. Representation + +Each Contributor represents that the Contributor believes its +Contributions are its original creation(s) or it has sufficient rights +to grant the rights to its Contributions conveyed by this License. + +2.6. Fair Use + +This License is not intended to limit any rights You have under +applicable copyright doctrines of fair use, fair dealing, or other +equivalents. + +2.7. Conditions + +Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted +in Section 2.1. + +3. Responsibilities +------------------- + +3.1. Distribution of Source Form + +All distribution of Covered Software in Source Code Form, including any +Modifications that You create or to which You contribute, must be under +the terms of this License. You must inform recipients that the Source +Code Form of the Covered Software is governed by the terms of this +License, and how they can obtain a copy of this License. You may not +attempt to alter or restrict the recipients' rights in the Source Code +Form. + +3.2. Distribution of Executable Form + +If You distribute Covered Software in Executable Form then: + +(a) such Covered Software must also be made available in Source Code + Form, as described in Section 3.1, and You must inform recipients of + the Executable Form how they can obtain a copy of such Source Code + Form by reasonable means in a timely manner, at a charge no more + than the cost of distribution to the recipient; and + +(b) You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter + the recipients' rights in the Source Code Form under this License. + +3.3. Distribution of a Larger Work + +You may create and distribute a Larger Work under terms of Your choice, +provided that You also comply with the requirements of this License for +the Covered Software. If the Larger Work is a combination of Covered +Software with a work governed by one or more Secondary Licenses, and the +Covered Software is not Incompatible With Secondary Licenses, this +License permits You to additionally distribute such Covered Software +under the terms of such Secondary License(s), so that the recipient of +the Larger Work may, at their option, further distribute the Covered +Software under the terms of either this License or such Secondary +License(s). + +3.4. Notices + +You may not remove or alter the substance of any license notices +(including copyright notices, patent notices, disclaimers of warranty, +or limitations of liability) contained within the Source Code Form of +the Covered Software, except that You may alter any license notices to +the extent required to remedy known factual inaccuracies. + +3.5. Application of Additional Terms + +You may choose to offer, and to charge a fee for, warranty, support, +indemnity or liability obligations to one or more recipients of Covered +Software. However, You may do so only on Your own behalf, and not on +behalf of any Contributor. You must make it absolutely clear that any +such warranty, support, indemnity, or liability obligation is offered by +You alone, and You hereby agree to indemnify every Contributor for any +liability incurred by such Contributor as a result of warranty, support, +indemnity or liability terms You offer. You may include additional +disclaimers of warranty and limitations of liability specific to any +jurisdiction. + +4. Inability to Comply Due to Statute or Regulation +--------------------------------------------------- + +If it is impossible for You to comply with any of the terms of this +License with respect to some or all of the Covered Software due to +statute, judicial order, or regulation then You must: (a) comply with +the terms of this License to the maximum extent possible; and (b) +describe the limitations and the code they affect. Such description must +be placed in a text file included with all distributions of the Covered +Software under this License. Except to the extent prohibited by statute +or regulation, such description must be sufficiently detailed for a +recipient of ordinary skill to be able to understand it. + +5. Termination +-------------- + +5.1. The rights granted under this License will terminate automatically +if You fail to comply with any of its terms. However, if You become +compliant, then the rights granted under this License from a particular +Contributor are reinstated (a) provisionally, unless and until such +Contributor explicitly and finally terminates Your grants, and (b) on an +ongoing basis, if such Contributor fails to notify You of the +non-compliance by some reasonable means prior to 60 days after You have +come back into compliance. Moreover, Your grants from a particular +Contributor are reinstated on an ongoing basis if such Contributor +notifies You of the non-compliance by some reasonable means, this is the +first time You have received notice of non-compliance with this License +from such Contributor, and You become compliant prior to 30 days after +Your receipt of the notice. + +5.2. If You initiate litigation against any entity by asserting a patent +infringement claim (excluding declaratory judgment actions, +counter-claims, and cross-claims) alleging that a Contributor Version +directly or indirectly infringes any patent, then the rights granted to +You by any and all Contributors for the Covered Software under Section +2.1 of this License shall terminate. + +5.3. In the event of termination under Sections 5.1 or 5.2 above, all +end user license agreements (excluding distributors and resellers) which +have been validly granted by You or Your distributors under this License +prior to termination shall survive termination. + +************************************************************************ +* * +* 6. Disclaimer of Warranty * +* ------------------------- * +* * +* Covered Software is provided under this License on an "as is" * +* basis, without warranty of any kind, either expressed, implied, or * +* statutory, including, without limitation, warranties that the * +* Covered Software is free of defects, merchantable, fit for a * +* particular purpose or non-infringing. The entire risk as to the * +* quality and performance of the Covered Software is with You. * +* Should any Covered Software prove defective in any respect, You * +* (not any Contributor) assume the cost of any necessary servicing, * +* repair, or correction. This disclaimer of warranty constitutes an * +* essential part of this License. No use of any Covered Software is * +* authorized under this License except under this disclaimer. * +* * +************************************************************************ + +************************************************************************ +* * +* 7. Limitation of Liability * +* -------------------------- * +* * +* Under no circumstances and under no legal theory, whether tort * +* (including negligence), contract, or otherwise, shall any * +* Contributor, or anyone who distributes Covered Software as * +* permitted above, be liable to You for any direct, indirect, * +* special, incidental, or consequential damages of any character * +* including, without limitation, damages for lost profits, loss of * +* goodwill, work stoppage, computer failure or malfunction, or any * +* and all other commercial damages or losses, even if such party * +* shall have been informed of the possibility of such damages. This * +* limitation of liability shall not apply to liability for death or * +* personal injury resulting from such party's negligence to the * +* extent applicable law prohibits such limitation. Some * +* jurisdictions do not allow the exclusion or limitation of * +* incidental or consequential damages, so this exclusion and * +* limitation may not apply to You. * +* * +************************************************************************ + +8. Litigation +------------- + +Any litigation relating to this License may be brought only in the +courts of a jurisdiction where the defendant maintains its principal +place of business and such litigation shall be governed by laws of that +jurisdiction, without reference to its conflict-of-law provisions. +Nothing in this Section shall prevent a party's ability to bring +cross-claims or counter-claims. + +9. Miscellaneous +---------------- + +This License represents the complete agreement concerning the subject +matter hereof. If any provision of this License is held to be +unenforceable, such provision shall be reformed only to the extent +necessary to make it enforceable. Any law or regulation which provides +that the language of a contract shall be construed against the drafter +shall not be used to construe this License against a Contributor. + +10. Versions of the License +--------------------------- + +10.1. New Versions + +Mozilla Foundation is the license steward. Except as provided in Section +10.3, no one other than the license steward has the right to modify or +publish new versions of this License. Each version will be given a +distinguishing version number. + +10.2. Effect of New Versions + +You may distribute the Covered Software under the terms of the version +of the License under which You originally received the Covered Software, +or under the terms of any subsequent version published by the license +steward. + +10.3. Modified Versions + +If you create software not governed by this License, and you want to +create a new license for such software, you may create and use a +modified version of this License if you rename the license and remove +any references to the name of the license steward (except to note that +such modified license differs from this License). + +10.4. Distributing Source Code Form that is Incompatible With Secondary +Licenses + +If You choose to distribute Source Code Form that is Incompatible With +Secondary Licenses under the terms of this version of the License, the +notice described in Exhibit B of this License must be attached. + +Exhibit A - Source Code Form License Notice +------------------------------------------- + + This Source Code Form is subject to the terms of the Mozilla Public + License, v. 2.0. If a copy of the MPL was not distributed with this + file, You can obtain one at http://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular +file, then You may include the notice in a location (such as a LICENSE +file in a relevant directory) where a recipient would be likely to look +for such a notice. + +You may add additional accurate notices of copyright ownership. + +Exhibit B - "Incompatible With Secondary Licenses" Notice +--------------------------------------------------------- + + This Source Code Form is "Incompatible With Secondary Licenses", as + defined by the Mozilla Public License, v. 2.0. + +pyasn1 +0.6.1 +BSD-2-Clause +Ilya Etingof + +Copyright (c) 2005-2020, Ilya Etingof +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. + +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. + +pyasn1_modules +0.4.2 +BSD +Ilya Etingof + +Copyright (c) 2005-2020, Ilya Etingof +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. + +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. + +pycparser +2.22 +BSD-3-Clause +Eli Bendersky + +pycparser -- A C parser in Python + +Copyright (c) 2008-2022, Eli Bendersky +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 copyright holder 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 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. + +pylsqpack +0.3.22 + +Jeremy Lainé + +Copyright (c) Jeremy Lainé. +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 pylsqpack 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 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. + +pyOpenSSL +25.0.0 +Apache License, Version 2.0 +The pyOpenSSL developers + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +pyparsing +3.2.3 + +Paul McGuire + +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. + +pyperclip +1.9.0 +BSD +Al Sweigart + +Here is an inevitably incomplete list of MUCH-APPRECIATED CONTRIBUTORS -- +people who have submitted patches, reported bugs, added translations, helped +answer newbie questions, and generally made Pyperclip that much better: + +Al Sweigart +Alexander Cobleigh ‏@cblgh +Andrea Scarpino https://github.com/ilpianista +Aniket Pandey https://github.com/lordaniket06 +Anton Yakutovich https://github.com/drakulavich +Brian Levin https://github.com/bnice5000 +Carvell Scott https://github.com/CarvellScott +Cees Timmerman https://github.com/CTimmerman +Chris Clark +Christopher Lambert https://github.com/XN137 +Chris Woerz https://github.com/erendrake +Corey Bryant https://github.com/coreycb +Daniel Shimon https://github.com/daniel-shimon +Edd Barrett https://github.com/vext01 +Eugene Yang https://github.com/eugene-yang +Felix Yan https://github.com/felixonmars +Fredrik Borg https://github.com/frbor +fthoma https://github.com/fthoma +Greg Witt https://github.com/GoodGuyGregory +hinlader https://github.com/hinlader +Hugo van Kemenade https://github.com/hugovk +Hynek Cernoch https://github.com/hynekcer +Jason R. Coombs https://github.com/jaraco +Jon Crall https://github.com/Erotemic +Jonathan Slenders https://github.com/jonathanslenders +JustAShoeMaker https://github.com/JustAShoeMaker +Marcelo Glezer https://github.com/gato +masajxxx https://github.com/masajxxx +Maximilian Hils https://github.com/mhils +mgunyho https://github.com/mgunyho +Michał Górny https://github.com/mgorny +Nicola Guerrera https://github.com/nik012003 +Nikolaos-Digenis Karagiannis https://github.com/Digenis +Nils Ohlmeier https://github.com/nils-ohlmeier +Orson Peters https://github.com/orlp +pgajdos https://github.com/pgajdos +PirateOfAndaman https://github.com/PirateOfAndaman +Six https://github.com/brbsix +Stefan Devai https://github.com/stefandevai +Stephen Finucane https://github.com/stephenfin +Stefan Scherfke https://github.com/sscherfke +Steve Elam +Tamir Bahar https://github.com/tmr232 +Terrel Shumway https://github.com/lernisto +Tim Cuthbertson https://github.com/timbertson +Tim Gates https://github.com/timgates42 +Todd Leonhardt https://github.com/tleonhardt +Troy Sankey https://github.com/pwnage101 +utagawa kiki https://github.com/utgwkk +Vertliba V.V. https://github.com/vertliba +Vince West https://github.com/dvincentwest +ZEDGR https://github.com/ZEDGR + +ruamel.yaml +0.18.10 +MIT license +Anthon van der Neut + +The MIT License (MIT) + + Copyright (c) 2014-2025 Anthon van der Neut, Ruamel bvba + + 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. + +ruamel.yaml.clib +0.2.12 +MIT +Anthon van der Neut + +The MIT License (MIT) + + Copyright (c) 2019-2024 Anthon van der Neut, Ruamel bvba + + 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. + +service-identity +24.2.0 + +Hynek Schlawack + +The MIT License (MIT) + +Copyright (c) 2014 Hynek Schlawack and the service-identity 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. + +setuptools +80.9.0 + +Python Packaging Authority + +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. + +sortedcontainers +2.4.0 +Apache 2.0 +Grant Jenks + +Copyright 2014-2019 Grant Jenks + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + +tornado +6.5 +Apache-2.0 +Facebook + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +typing_extensions +4.14.0 + +"Guido van Rossum, Jukka Lehtosalo, Łukasz Langa, Michael Lee" + +A. HISTORY OF THE SOFTWARE +========================== + +Python was created in the early 1990s by Guido van Rossum at Stichting +Mathematisch Centrum (CWI, see https://www.cwi.nl) in the Netherlands +as a successor of a language called ABC. Guido remains Python's +principal author, although it includes many contributions from others. + +In 1995, Guido continued his work on Python at the Corporation for +National Research Initiatives (CNRI, see https://www.cnri.reston.va.us) +in Reston, Virginia where he released several versions of the +software. + +In May 2000, Guido and the Python core development team moved to +BeOpen.com to form the BeOpen PythonLabs team. In October of the same +year, the PythonLabs team moved to Digital Creations, which became +Zope Corporation. In 2001, the Python Software Foundation (PSF, see +https://www.python.org/psf/) was formed, a non-profit organization +created specifically to own Python-related Intellectual Property. +Zope Corporation was a sponsoring member of the PSF. + +All Python releases are Open Source (see https://opensource.org for +the Open Source Definition). Historically, most, but not all, Python +releases have also been GPL-compatible; the table below summarizes +the various releases. + + Release Derived Year Owner GPL- + from compatible? (1) + + 0.9.0 thru 1.2 1991-1995 CWI yes + 1.3 thru 1.5.2 1.2 1995-1999 CNRI yes + 1.6 1.5.2 2000 CNRI no + 2.0 1.6 2000 BeOpen.com no + 1.6.1 1.6 2001 CNRI yes (2) + 2.1 2.0+1.6.1 2001 PSF no + 2.0.1 2.0+1.6.1 2001 PSF yes + 2.1.1 2.1+2.0.1 2001 PSF yes + 2.1.2 2.1.1 2002 PSF yes + 2.1.3 2.1.2 2002 PSF yes + 2.2 and above 2.1.1 2001-now PSF yes + +Footnotes: + +(1) GPL-compatible doesn't mean that we're distributing Python under + the GPL. All Python licenses, unlike the GPL, let you distribute + a modified version without making your changes open source. The + GPL-compatible licenses make it possible to combine Python with + other software that is released under the GPL; the others don't. + +(2) According to Richard Stallman, 1.6.1 is not GPL-compatible, + because its license has a choice of law clause. According to + CNRI, however, Stallman's lawyer has told CNRI's lawyer that 1.6.1 + is "not incompatible" with the GPL. + +Thanks to the many outside volunteers who have worked under Guido's +direction to make these releases possible. + + +B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON +=============================================================== + +Python software and documentation are licensed under the +Python Software Foundation License Version 2. + +Starting with Python 3.8.6, examples, recipes, and other code in +the documentation are dual licensed under the PSF License Version 2 +and the Zero-Clause BSD license. + +Some software incorporated into Python is under different licenses. +The licenses are listed with code falling under that license. + + +PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 +-------------------------------------------- + +1. This LICENSE AGREEMENT is between the Python Software Foundation +("PSF"), and the Individual or Organization ("Licensee") accessing and +otherwise using this software ("Python") in source or binary form and +its associated documentation. + +2. Subject to the terms and conditions of this License Agreement, PSF hereby +grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce, +analyze, test, perform and/or display publicly, prepare derivative works, +distribute, and otherwise use Python alone or in any derivative version, +provided, however, that PSF's License Agreement and PSF's notice of copyright, +i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, +2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023 Python Software Foundation; +All Rights Reserved" are retained in Python alone or in any derivative version +prepared by Licensee. + +3. In the event Licensee prepares a derivative work that is based on +or incorporates Python or any part thereof, and wants to make +the derivative work available to others as provided herein, then +Licensee hereby agrees to include in any such work a brief summary of +the changes made to Python. + +4. PSF is making Python available to Licensee on an "AS IS" +basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR +IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND +DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS +FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT +INFRINGE ANY THIRD PARTY RIGHTS. + +5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON +FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS +A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON, +OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + +6. This License Agreement will automatically terminate upon a material +breach of its terms and conditions. + +7. Nothing in this License Agreement shall be deemed to create any +relationship of agency, partnership, or joint venture between PSF and +Licensee. This License Agreement does not grant permission to use PSF +trademarks or trade name in a trademark sense to endorse or promote +products or services of Licensee, or any third party. + +8. By copying, installing or otherwise using Python, Licensee +agrees to be bound by the terms and conditions of this License +Agreement. + + +BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 +------------------------------------------- + +BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 + +1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an +office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the +Individual or Organization ("Licensee") accessing and otherwise using +this software in source or binary form and its associated +documentation ("the Software"). + +2. Subject to the terms and conditions of this BeOpen Python License +Agreement, BeOpen hereby grants Licensee a non-exclusive, +royalty-free, world-wide license to reproduce, analyze, test, perform +and/or display publicly, prepare derivative works, distribute, and +otherwise use the Software alone or in any derivative version, +provided, however, that the BeOpen Python License is retained in the +Software, alone or in any derivative version prepared by Licensee. + +3. BeOpen is making the Software available to Licensee on an "AS IS" +basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR +IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND +DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS +FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT +INFRINGE ANY THIRD PARTY RIGHTS. + +4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE +SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS +AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY +DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + +5. This License Agreement will automatically terminate upon a material +breach of its terms and conditions. + +6. This License Agreement shall be governed by and interpreted in all +respects by the law of the State of California, excluding conflict of +law provisions. Nothing in this License Agreement shall be deemed to +create any relationship of agency, partnership, or joint venture +between BeOpen and Licensee. This License Agreement does not grant +permission to use BeOpen trademarks or trade names in a trademark +sense to endorse or promote products or services of Licensee, or any +third party. As an exception, the "BeOpen Python" logos available at +http://www.pythonlabs.com/logos.html may be used according to the +permissions granted on that web page. + +7. By copying, installing or otherwise using the software, Licensee +agrees to be bound by the terms and conditions of this License +Agreement. + + +CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1 +--------------------------------------- + +1. This LICENSE AGREEMENT is between the Corporation for National +Research Initiatives, having an office at 1895 Preston White Drive, +Reston, VA 20191 ("CNRI"), and the Individual or Organization +("Licensee") accessing and otherwise using Python 1.6.1 software in +source or binary form and its associated documentation. + +2. Subject to the terms and conditions of this License Agreement, CNRI +hereby grants Licensee a nonexclusive, royalty-free, world-wide +license to reproduce, analyze, test, perform and/or display publicly, +prepare derivative works, distribute, and otherwise use Python 1.6.1 +alone or in any derivative version, provided, however, that CNRI's +License Agreement and CNRI's notice of copyright, i.e., "Copyright (c) +1995-2001 Corporation for National Research Initiatives; All Rights +Reserved" are retained in Python 1.6.1 alone or in any derivative +version prepared by Licensee. Alternately, in lieu of CNRI's License +Agreement, Licensee may substitute the following text (omitting the +quotes): "Python 1.6.1 is made available subject to the terms and +conditions in CNRI's License Agreement. This Agreement together with +Python 1.6.1 may be located on the internet using the following +unique, persistent identifier (known as a handle): 1895.22/1013. This +Agreement may also be obtained from a proxy server on the internet +using the following URL: http://hdl.handle.net/1895.22/1013". + +3. In the event Licensee prepares a derivative work that is based on +or incorporates Python 1.6.1 or any part thereof, and wants to make +the derivative work available to others as provided herein, then +Licensee hereby agrees to include in any such work a brief summary of +the changes made to Python 1.6.1. + +4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS" +basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR +IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND +DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS +FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT +INFRINGE ANY THIRD PARTY RIGHTS. + +5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON +1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS +A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1, +OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + +6. This License Agreement will automatically terminate upon a material +breach of its terms and conditions. + +7. This License Agreement shall be governed by the federal +intellectual property law of the United States, including without +limitation the federal copyright law, and, to the extent such +U.S. federal law does not apply, by the law of the Commonwealth of +Virginia, excluding Virginia's conflict of law provisions. +Notwithstanding the foregoing, with regard to derivative works based +on Python 1.6.1 that incorporate non-separable material that was +previously distributed under the GNU General Public License (GPL), the +law of the Commonwealth of Virginia shall govern this License +Agreement only as to issues arising under or with respect to +Paragraphs 4, 5, and 7 of this License Agreement. Nothing in this +License Agreement shall be deemed to create any relationship of +agency, partnership, or joint venture between CNRI and Licensee. This +License Agreement does not grant permission to use CNRI trademarks or +trade name in a trademark sense to endorse or promote products or +services of Licensee, or any third party. + +8. By clicking on the "ACCEPT" button where indicated, or by copying, +installing or otherwise using Python 1.6.1, Licensee agrees to be +bound by the terms and conditions of this License Agreement. + + ACCEPT + + +CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2 +-------------------------------------------------- + +Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, +The Netherlands. All rights reserved. + +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose and without fee is hereby granted, +provided that the above copyright notice appear in all copies and that +both that copyright notice and this permission notice appear in +supporting documentation, and that the name of Stichting Mathematisch +Centrum or CWI not be used in advertising or publicity pertaining to +distribution of the software without specific, written prior +permission. + +STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO +THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE +FOR ANY SPECIAL, 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. + +ZERO-CLAUSE BSD LICENSE FOR CODE IN THE PYTHON DOCUMENTATION +---------------------------------------------------------------------- + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted. + +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. + +urwid +2.6.16 +LGPL-2.1-only +Ian Ward + +GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! + +wcwidth +0.2.13 +MIT +Jeff Quast + +The MIT License (MIT) + +Copyright (c) 2014 Jeff Quast + +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. + +Markus Kuhn -- 2007-05-26 (Unicode 5.0) + +Permission to use, copy, modify, and distribute this software +for any purpose and without fee is hereby granted. The author +disclaims all warranties with regard to this software. + +Werkzeug +3.1.3 + + + +Copyright 2007 Pallets + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. 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. + +3. Neither the name of the copyright holder 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 +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. + +wheel +0.45.1 + +Daniel Holth + +MIT License + +Copyright (c) 2012 Daniel Holth and 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. + +wsproto +1.2.0 +MIT License +Benno Rice + +The MIT License (MIT) + +Copyright (c) 2017 Benno Rice and 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. + +zstandard +0.23.0 +BSD +Gregory Szorc + +Copyright (c) 2016, Gregory Szorc +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this +list of conditions and the following disclaimer. + +2. 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. + +3. Neither the name of the copyright holder 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 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. + +------------------------------------- +NODE PACKAGES +------------------------------------- +@alloc/quick-lru +5.2.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +@antfu/install-pkg +1.1.0 +MIT +Anthony Fu + +MIT License + +Copyright (c) 2021 Anthony Fu + +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. + +@antfu/utils +8.1.1 +MIT +Anthony Fu + +MIT License + +Copyright (c) 2021 Anthony Fu + +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/code-frame +7.27.1 +MIT +The Babel Team (https://babel.dev/team) + +MIT License + +Copyright (c) 2014-present Sebastian McKenzie and other 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. + +@babel/helper-string-parser +7.27.1 +MIT +The Babel Team (https://babel.dev/team) + +MIT License + +Copyright (c) 2014-present Sebastian McKenzie and other 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. + +@babel/helper-validator-identifier +7.27.1 +MIT +The Babel Team (https://babel.dev/team) + +MIT License + +Copyright (c) 2014-present Sebastian McKenzie and other 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. + +@babel/parser +7.28.0 +MIT +The Babel Team (https://babel.dev/team) + +Copyright (C) 2012-2014 by various contributors (see AUTHORS) + +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 +7.28.2 +MIT +The Babel Team (https://babel.dev/team) + +MIT License + +Copyright (c) 2014-present Sebastian McKenzie and other 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. + +@babel/standalone +7.28.2 +MIT +The Babel Team (https://babel.dev/team) + +MIT License + +Copyright (c) 2014-present Sebastian McKenzie and other 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. + +@babel/types +7.28.2 +MIT +The Babel Team (https://babel.dev/team) + +MIT License + +Copyright (c) 2014-present Sebastian McKenzie and other 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. + +@braintree/sanitize-url +7.1.1 +MIT + + +MIT License + +Copyright (c) 2017 Braintree + +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. + +@chevrotain/cst-dts-gen +11.0.3 +Apache-2.0 + + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +@chevrotain/gast +11.0.3 +Apache-2.0 + + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +@chevrotain/regexp-to-ast +11.0.3 +Apache-2.0 + + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +@chevrotain/types +11.0.3 +Apache-2.0 +Shahar Soel + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +@chevrotain/utils +11.0.3 +Apache-2.0 +Shahar Soel + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +@cypress/request +3.0.9 +Apache-2.0 +Mikeal Rogers + +Apache License + +Version 2.0, January 2004 + +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + +You must give any other recipients of the Work or Derivative Works a copy of this License; and + +You must cause any modified files to carry prominent notices stating that You changed the files; and + +You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and + +If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +@cypress/xvfb +1.2.4 +MIT +Rob Wu (https://robwu.nl) + +Original Work Copyright (C) 2012 ProxV, Inc. +Modified Work Copyright (c) 2015 Cypress.io, 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 +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. + +@dnd-kit/accessibility +3.1.1 +MIT +Claudéric Demers + +MIT License + +Copyright (c) 2021, Claudéric Demers + +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. + +@dnd-kit/core +6.3.1 +MIT +Claudéric Demers + +MIT License + +Copyright (c) 2021, Claudéric Demers + +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. + +@dnd-kit/sortable +10.0.0 +MIT +Claudéric Demers + +MIT License + +Copyright (c) 2021, Claudéric Demers + +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. + +@dnd-kit/utilities +3.2.2 +MIT +Claudéric Demers + +MIT License + +Copyright (c) 2021, Claudéric Demers + +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. + +@esbuild/linux-x64 +0.25.8 +MIT + + +LICENSE TEXT NOT FOUND + +@floating-ui/core +1.7.3 +MIT +atomiks + +MIT License + +Copyright (c) 2021-present Floating UI 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. + +@floating-ui/dom +1.7.3 +MIT +atomiks + +MIT License + +Copyright (c) 2021-present Floating UI 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. + +@floating-ui/react-dom +2.1.5 +MIT +atomiks + +MIT License + +Copyright (c) 2021-present Floating UI 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. + +@floating-ui/utils +0.2.10 +MIT +atomiks + +MIT License + +Copyright (c) 2021-present Floating UI 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. + +@iconify/types +2.0.0 +MIT +Vjacheslav Trushkin + +MIT License + +Copyright (c) 2021 - 2022 Vjacheslav Trushkin / Iconify OÜ + +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. + +@iconify/utils +2.3.0 +MIT +Vjacheslav Trushkin + +MIT License + +Copyright (c) 2021-PRESENT Vjacheslav Trushkin + +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. + +@img/sharp-libvips-linux-x64 +1.2.0 +LGPL-3.0-or-later +Lovell Fuller + +LICENSE TEXT NOT FOUND + +@img/sharp-libvips-linuxmusl-x64 +1.2.0 +LGPL-3.0-or-later +Lovell Fuller + +LICENSE TEXT NOT FOUND + +@img/sharp-linux-x64 +0.34.3 +Apache-2.0 +Lovell Fuller + +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and +distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright +owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities +that control, are controlled by, or are under common control with that entity. +For the purposes of this definition, "control" means (i) the power, direct or +indirect, to cause the direction or management of such entity, whether by +contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the +outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising +permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including +but not limited to software source code, documentation source, and configuration +files. + +"Object" form shall mean any form resulting from mechanical transformation or +translation of a Source form, including but not limited to compiled object code, +generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made +available under the License, as indicated by a copyright notice that is included +in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that +is based on (or derived from) the Work and for which the editorial revisions, +annotations, elaborations, or other modifications represent, as a whole, an +original work of authorship. For the purposes of this License, Derivative Works +shall not include works that remain separable from, or merely link (or bind by +name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version +of the Work and any modifications or additions to that Work or Derivative Works +thereof, that is intentionally submitted to Licensor for inclusion in the Work +by the copyright owner or by an individual or Legal Entity authorized to submit +on behalf of the copyright owner. For the purposes of this definition, +"submitted" means any form of electronic, verbal, or written communication sent +to the Licensor or its representatives, including but not limited to +communication on electronic mailing lists, source code control systems, and +issue tracking systems that are managed by, or on behalf of, the Licensor for +the purpose of discussing and improving the Work, but excluding communication +that is conspicuously marked or otherwise designated in writing by the copyright +owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf +of whom a Contribution has been received by Licensor and subsequently +incorporated within the Work. + +2. Grant of Copyright License. + +Subject to the terms and conditions of this License, each Contributor hereby +grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, +irrevocable copyright license to reproduce, prepare Derivative Works of, +publicly display, publicly perform, sublicense, and distribute the Work and such +Derivative Works in Source or Object form. + +3. Grant of Patent License. + +Subject to the terms and conditions of this License, each Contributor hereby +grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, +irrevocable (except as stated in this section) patent license to make, have +made, use, offer to sell, sell, import, and otherwise transfer the Work, where +such license applies only to those patent claims licensable by such Contributor +that are necessarily infringed by their Contribution(s) alone or by combination +of their Contribution(s) with the Work to which such Contribution(s) was +submitted. If You institute patent litigation against any entity (including a +cross-claim or counterclaim in a lawsuit) alleging that the Work or a +Contribution incorporated within the Work constitutes direct or contributory +patent infringement, then any patent licenses granted to You under this License +for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. + +You may reproduce and distribute copies of the Work or Derivative Works thereof +in any medium, with or without modifications, and in Source or Object form, +provided that You meet the following conditions: + +You must give any other recipients of the Work or Derivative Works a copy of +this License; and +You must cause any modified files to carry prominent notices stating that You +changed the files; and +You must retain, in the Source form of any Derivative Works that You distribute, +all copyright, patent, trademark, and attribution notices from the Source form +of the Work, excluding those notices that do not pertain to any part of the +Derivative Works; and +If the Work includes a "NOTICE" text file as part of its distribution, then any +Derivative Works that You distribute must include a readable copy of the +attribution notices contained within such NOTICE file, excluding those notices +that do not pertain to any part of the Derivative Works, in at least one of the +following places: within a NOTICE text file distributed as part of the +Derivative Works; within the Source form or documentation, if provided along +with the Derivative Works; or, within a display generated by the Derivative +Works, if and wherever such third-party notices normally appear. The contents of +the NOTICE file are for informational purposes only and do not modify the +License. You may add Your own attribution notices within Derivative Works that +You distribute, alongside or as an addendum to the NOTICE text from the Work, +provided that such additional attribution notices cannot be construed as +modifying the License. +You may add Your own copyright statement to Your modifications and may provide +additional or different license terms and conditions for use, reproduction, or +distribution of Your modifications, or for any such Derivative Works as a whole, +provided Your use, reproduction, and distribution of the Work otherwise complies +with the conditions stated in this License. + +5. Submission of Contributions. + +Unless You explicitly state otherwise, any Contribution intentionally submitted +for inclusion in the Work by You to the Licensor shall be under the terms and +conditions of this License, without any additional terms or conditions. +Notwithstanding the above, nothing herein shall supersede or modify the terms of +any separate license agreement you may have executed with Licensor regarding +such Contributions. + +6. Trademarks. + +This License does not grant permission to use the trade names, trademarks, +service marks, or product names of the Licensor, except as required for +reasonable and customary use in describing the origin of the Work and +reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. + +Unless required by applicable law or agreed to in writing, Licensor provides the +Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, +including, without limitation, any warranties or conditions of TITLE, +NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are +solely responsible for determining the appropriateness of using or +redistributing the Work and assume any risks associated with Your exercise of +permissions under this License. + +8. Limitation of Liability. + +In no event and under no legal theory, whether in tort (including negligence), +contract, or otherwise, unless required by applicable law (such as deliberate +and grossly negligent acts) or agreed to in writing, shall any Contributor be +liable to You for damages, including any direct, indirect, special, incidental, +or consequential damages of any character arising as a result of this License or +out of the use or inability to use the Work (including but not limited to +damages for loss of goodwill, work stoppage, computer failure or malfunction, or +any and all other commercial damages or losses), even if such Contributor has +been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. + +While redistributing the Work or Derivative Works thereof, You may choose to +offer, and charge a fee for, acceptance of support, warranty, indemnity, or +other liability obligations and/or rights consistent with this License. However, +in accepting such obligations, You may act only on Your own behalf and on Your +sole responsibility, not on behalf of any other Contributor, and only if You +agree to indemnify, defend, and hold each Contributor harmless for any liability +incurred by, or claims asserted against, such Contributor by reason of your +accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work + +To apply the Apache License to your work, attach the following boilerplate +notice, with the fields enclosed by brackets "[]" replaced with your own +identifying information. (Don't include the brackets!) The text should be +enclosed in the appropriate comment syntax for the file format. We also +recommend that a file or class name and description of purpose be included on +the same "printed page" as the copyright notice for easier identification within +third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +@img/sharp-linuxmusl-x64 +0.34.3 +Apache-2.0 +Lovell Fuller + +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and +distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright +owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities +that control, are controlled by, or are under common control with that entity. +For the purposes of this definition, "control" means (i) the power, direct or +indirect, to cause the direction or management of such entity, whether by +contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the +outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising +permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including +but not limited to software source code, documentation source, and configuration +files. + +"Object" form shall mean any form resulting from mechanical transformation or +translation of a Source form, including but not limited to compiled object code, +generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made +available under the License, as indicated by a copyright notice that is included +in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that +is based on (or derived from) the Work and for which the editorial revisions, +annotations, elaborations, or other modifications represent, as a whole, an +original work of authorship. For the purposes of this License, Derivative Works +shall not include works that remain separable from, or merely link (or bind by +name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version +of the Work and any modifications or additions to that Work or Derivative Works +thereof, that is intentionally submitted to Licensor for inclusion in the Work +by the copyright owner or by an individual or Legal Entity authorized to submit +on behalf of the copyright owner. For the purposes of this definition, +"submitted" means any form of electronic, verbal, or written communication sent +to the Licensor or its representatives, including but not limited to +communication on electronic mailing lists, source code control systems, and +issue tracking systems that are managed by, or on behalf of, the Licensor for +the purpose of discussing and improving the Work, but excluding communication +that is conspicuously marked or otherwise designated in writing by the copyright +owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf +of whom a Contribution has been received by Licensor and subsequently +incorporated within the Work. + +2. Grant of Copyright License. + +Subject to the terms and conditions of this License, each Contributor hereby +grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, +irrevocable copyright license to reproduce, prepare Derivative Works of, +publicly display, publicly perform, sublicense, and distribute the Work and such +Derivative Works in Source or Object form. + +3. Grant of Patent License. + +Subject to the terms and conditions of this License, each Contributor hereby +grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, +irrevocable (except as stated in this section) patent license to make, have +made, use, offer to sell, sell, import, and otherwise transfer the Work, where +such license applies only to those patent claims licensable by such Contributor +that are necessarily infringed by their Contribution(s) alone or by combination +of their Contribution(s) with the Work to which such Contribution(s) was +submitted. If You institute patent litigation against any entity (including a +cross-claim or counterclaim in a lawsuit) alleging that the Work or a +Contribution incorporated within the Work constitutes direct or contributory +patent infringement, then any patent licenses granted to You under this License +for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. + +You may reproduce and distribute copies of the Work or Derivative Works thereof +in any medium, with or without modifications, and in Source or Object form, +provided that You meet the following conditions: + +You must give any other recipients of the Work or Derivative Works a copy of +this License; and +You must cause any modified files to carry prominent notices stating that You +changed the files; and +You must retain, in the Source form of any Derivative Works that You distribute, +all copyright, patent, trademark, and attribution notices from the Source form +of the Work, excluding those notices that do not pertain to any part of the +Derivative Works; and +If the Work includes a "NOTICE" text file as part of its distribution, then any +Derivative Works that You distribute must include a readable copy of the +attribution notices contained within such NOTICE file, excluding those notices +that do not pertain to any part of the Derivative Works, in at least one of the +following places: within a NOTICE text file distributed as part of the +Derivative Works; within the Source form or documentation, if provided along +with the Derivative Works; or, within a display generated by the Derivative +Works, if and wherever such third-party notices normally appear. The contents of +the NOTICE file are for informational purposes only and do not modify the +License. You may add Your own attribution notices within Derivative Works that +You distribute, alongside or as an addendum to the NOTICE text from the Work, +provided that such additional attribution notices cannot be construed as +modifying the License. +You may add Your own copyright statement to Your modifications and may provide +additional or different license terms and conditions for use, reproduction, or +distribution of Your modifications, or for any such Derivative Works as a whole, +provided Your use, reproduction, and distribution of the Work otherwise complies +with the conditions stated in this License. + +5. Submission of Contributions. + +Unless You explicitly state otherwise, any Contribution intentionally submitted +for inclusion in the Work by You to the Licensor shall be under the terms and +conditions of this License, without any additional terms or conditions. +Notwithstanding the above, nothing herein shall supersede or modify the terms of +any separate license agreement you may have executed with Licensor regarding +such Contributions. + +6. Trademarks. + +This License does not grant permission to use the trade names, trademarks, +service marks, or product names of the Licensor, except as required for +reasonable and customary use in describing the origin of the Work and +reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. + +Unless required by applicable law or agreed to in writing, Licensor provides the +Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, +including, without limitation, any warranties or conditions of TITLE, +NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are +solely responsible for determining the appropriateness of using or +redistributing the Work and assume any risks associated with Your exercise of +permissions under this License. + +8. Limitation of Liability. + +In no event and under no legal theory, whether in tort (including negligence), +contract, or otherwise, unless required by applicable law (such as deliberate +and grossly negligent acts) or agreed to in writing, shall any Contributor be +liable to You for damages, including any direct, indirect, special, incidental, +or consequential damages of any character arising as a result of this License or +out of the use or inability to use the Work (including but not limited to +damages for loss of goodwill, work stoppage, computer failure or malfunction, or +any and all other commercial damages or losses), even if such Contributor has +been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. + +While redistributing the Work or Derivative Works thereof, You may choose to +offer, and charge a fee for, acceptance of support, warranty, indemnity, or +other liability obligations and/or rights consistent with this License. However, +in accepting such obligations, You may act only on Your own behalf and on Your +sole responsibility, not on behalf of any other Contributor, and only if You +agree to indemnify, defend, and hold each Contributor harmless for any liability +incurred by, or claims asserted against, such Contributor by reason of your +accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work + +To apply the Apache License to your work, attach the following boilerplate +notice, with the fields enclosed by brackets "[]" replaced with your own +identifying information. (Don't include the brackets!) The text should be +enclosed in the appropriate comment syntax for the file format. We also +recommend that a file or class name and description of purpose be included on +the same "printed page" as the copyright notice for easier identification within +third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +@isaacs/cliui +8.0.2 +ISC +Ben Coe + +Copyright (c) 2015, 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. + +@jridgewell/gen-mapping +0.3.12 +MIT +Justin Ridgewell + +Copyright 2024 Justin Ridgewell + +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. + +@jridgewell/resolve-uri +3.1.2 +MIT +Justin Ridgewell + +Copyright 2019 Justin Ridgewell + +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. + +@jridgewell/sourcemap-codec +1.5.4 +MIT +Justin Ridgewell + +Copyright 2024 Justin Ridgewell + +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. + +@jridgewell/trace-mapping +0.3.29 +MIT +Justin Ridgewell + +Copyright 2024 Justin Ridgewell + +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. + +@mermaid-js/parser +0.6.2 +MIT +Yokozuna59 + +The MIT License (MIT) + +Copyright (c) 2023 Yokozuna59 + +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. + +@next/env +14.2.31 +MIT +Next.js Team + +LICENSE TEXT NOT FOUND + +@next/swc-linux-x64-gnu +14.2.31 +MIT + + +LICENSE TEXT NOT FOUND + +@next/swc-linux-x64-musl +14.2.31 +MIT + + +LICENSE TEXT NOT FOUND + +@nodelib/fs.scandir +2.1.5 +MIT + + +The MIT License (MIT) + +Copyright (c) Denis Malinochkin + +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. + +@nodelib/fs.stat +2.0.5 +MIT + + +The MIT License (MIT) + +Copyright (c) Denis Malinochkin + +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. + +@nodelib/fs.walk +1.2.8 +MIT + + +The MIT License (MIT) + +Copyright (c) Denis Malinochkin + +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. + +@paciolan/remote-component +2.13.0 +MIT +Paciolan + +The MIT License (MIT) +Copyright (c) 2019 Paciolan + + +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. + +@paciolan/remote-module-loader +3.0.3 +MIT +Paciolan + +MIT License + +Copyright (c) 2019 Paciolan + +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. + +@pkgjs/parseargs +0.11.0 +MIT + + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +@popperjs/core +2.11.8 +MIT +Federico Zivolo + +The MIT License (MIT) + +Copyright (c) 2019 Federico Zivolo + +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. + +@puppeteer/browsers +2.10.6 +Apache-2.0 +The Chromium Authors + +LICENSE TEXT NOT FOUND + +@radix-ui/number +1.1.1 +MIT + + +LICENSE TEXT NOT FOUND + +@radix-ui/primitive +1.1.2 +MIT + + +LICENSE TEXT NOT FOUND + +@radix-ui/react-accordion +1.2.11 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-arrow +1.1.7 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-avatar +1.1.10 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-collapsible +1.1.11 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-collection +1.1.7 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-compose-refs +1.1.2 +MIT + + +LICENSE TEXT NOT FOUND + +@radix-ui/react-context +1.1.2 +MIT + + +LICENSE TEXT NOT FOUND + +@radix-ui/react-dialog +1.1.14 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-direction +1.1.1 +MIT + + +LICENSE TEXT NOT FOUND + +@radix-ui/react-dismissable-layer +1.1.10 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-dropdown-menu +2.1.15 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-focus-guards +1.1.2 +MIT + + +LICENSE TEXT NOT FOUND + +@radix-ui/react-focus-scope +1.1.7 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-icons +1.3.2 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-id +1.1.1 +MIT + + +LICENSE TEXT NOT FOUND + +@radix-ui/react-label +2.1.7 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-menu +2.1.15 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-popover +1.1.14 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-popper +1.2.7 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-portal +1.1.9 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-presence +1.1.4 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-primitive +2.1.3 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-progress +1.1.7 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-radio-group +1.3.7 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-roving-focus +1.1.10 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-scroll-area +1.2.9 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-select +2.2.5 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-separator +1.1.7 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-slider +1.3.5 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-slot +1.2.3 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-switch +1.2.5 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-tabs +1.1.12 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-toast +1.2.14 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-toggle +1.1.9 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-tooltip +1.2.7 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-use-callback-ref +1.1.1 +MIT + + +LICENSE TEXT NOT FOUND + +@radix-ui/react-use-controllable-state +1.2.2 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-use-effect-event +0.0.2 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-use-escape-keydown +1.1.1 +MIT + + +LICENSE TEXT NOT FOUND + +@radix-ui/react-use-is-hydrated +0.1.0 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-use-layout-effect +1.1.1 +MIT + + +LICENSE TEXT NOT FOUND + +@radix-ui/react-use-previous +1.1.1 +MIT + + +LICENSE TEXT NOT FOUND + +@radix-ui/react-use-rect +1.1.1 +MIT + + +LICENSE TEXT NOT FOUND + +@radix-ui/react-use-size +1.1.1 +MIT + + +LICENSE TEXT NOT FOUND + +@radix-ui/react-visually-hidden +1.2.3 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/rect +1.1.1 +MIT + + +LICENSE TEXT NOT FOUND + +@reduxjs/toolkit +2.8.2 +MIT +Mark Erikson + +MIT License + +Copyright (c) 2018 Mark Erikson + +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. + +@remirror/core-constants +3.0.0 +MIT + + +MIT License + +Copyright (c) 2019-2022, Remirror 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. + +@rrweb/types +2.0.0-alpha.18 +MIT + + +LICENSE TEXT NOT FOUND + +@rrweb/utils +2.0.0-alpha.18 +MIT + + +LICENSE TEXT NOT FOUND + +@standard-schema/spec +1.0.0 +MIT +Colin McDonnell + +MIT License + +Copyright (c) 2024 Colin McDonnell + +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. + +@standard-schema/utils +0.3.0 +MIT +Fabian Hiller + +MIT License + +Copyright (c) 2024 Fabian Hiller + +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. + +@swc/counter +0.1.3 +Apache-2.0 +강동윤 + +LICENSE TEXT NOT FOUND + +@swc/helpers +0.5.5 +Apache-2.0 +강동윤 + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + +@tailwindcss/typography +0.5.16 +MIT + + +MIT License + +Copyright (c) Tailwind Labs, 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 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. + +@tiptap/core +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-blockquote +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-bold +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-bubble-menu +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-bullet-list +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-code +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-code-block +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-document +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-dropcursor +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-floating-menu +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-gapcursor +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-hard-break +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-heading +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-history +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-horizontal-rule +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-italic +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-list-item +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-ordered-list +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-paragraph +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-strike +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-text +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-text-style +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-underline +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/pm +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/react +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/starter-kit +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tootallnate/quickjs-emscripten +0.23.0 +MIT + + +MIT License + +quickjs-emscripten copyright (c) 2019 Jake Teton-Landis + +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. + +@types/babel__core +7.20.5 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/babel__generator +7.27.0 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/babel__standalone +7.1.9 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/babel__template +7.4.4 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/babel__traverse +7.28.0 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/css-font-loading-module +0.0.7 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3 +7.4.3 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-array +3.2.1 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-axis +3.0.6 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-brush +3.0.6 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-chord +3.0.6 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-color +3.1.3 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-contour +3.0.6 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-delaunay +6.0.4 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-dispatch +3.0.7 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-drag +3.0.7 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-dsv +3.0.7 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-ease +3.0.2 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-fetch +3.0.7 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-force +3.0.10 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-format +3.0.4 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-geo +3.1.0 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-hierarchy +3.1.7 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-interpolate +3.0.4 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-path +3.1.1 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-polygon +3.0.2 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-quadtree +3.0.6 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-random +3.0.3 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-scale +4.0.9 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-scale-chromatic +3.1.0 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-selection +3.0.11 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-shape +3.1.7 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-time +3.0.4 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-time-format +4.0.3 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-timer +3.0.2 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-transition +3.0.9 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-zoom +3.0.8 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/geojson +7946.0.16 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/linkify-it +3.0.5 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/linkify-it +5.0.0 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/markdown-it +13.0.9 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/markdown-it +14.1.2 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/mdurl +1.0.5 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/mdurl +2.0.0 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/node +20.19.10 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/prismjs +1.26.5 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/prop-types +15.7.15 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/puppeteer +5.4.7 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/react +18.3.23 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/react-dom +18.3.7 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/sinonjs__fake-timers +8.1.1 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/sizzle +2.3.9 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/trusted-types +2.0.7 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/use-sync-external-store +0.0.6 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/uuid +10.0.0 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/ws +8.18.1 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/yauzl +2.10.3 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@xstate/fsm +1.6.5 +MIT +David Khourshid + +The MIT License (MIT) + +Copyright (c) 2015 David Khourshid + +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. + +acorn +8.15.0 +MIT + + +MIT License + +Copyright (C) 2012-2022 by various contributors (see AUTHORS) + +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. + +agent-base +7.1.4 +MIT +Nathan Rajlich (http://n8.io/) + +(The MIT License) + +Copyright (c) 2013 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. + +aggregate-error +3.1.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +ansi-colors +4.1.3 +MIT +Brian Woodward (https://github.com/doowb) + +The MIT License (MIT) + +Copyright (c) 2015-present, Brian Woodward. + +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. + +ansi-escapes +4.3.2 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +ansi-regex +5.0.1 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +ansi-regex +6.1.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +ansi-styles +4.3.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +ansi-styles +6.2.1 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +any-promise +1.3.0 +MIT +Kevin Beaty + +Copyright (C) 2014-2016 Kevin Beaty + +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. + +anymatch +3.1.3 +ISC +Elan Shanker + +The ISC License + +Copyright (c) 2019 Elan Shanker, Paul Miller (https://paulmillr.com) + +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. + +arch +2.2.0 +MIT +Feross Aboukhadijeh + +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. + +arg +5.0.2 +MIT +Josh Junon + +The MIT License (MIT) + +Copyright (c) 2021 Vercel, 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 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. + +argparse +2.0.1 +Python-2.0 + + +A. HISTORY OF THE SOFTWARE +========================== + +Python was created in the early 1990s by Guido van Rossum at Stichting +Mathematisch Centrum (CWI, see http://www.cwi.nl) in the Netherlands +as a successor of a language called ABC. Guido remains Python's +principal author, although it includes many contributions from others. + +In 1995, Guido continued his work on Python at the Corporation for +National Research Initiatives (CNRI, see http://www.cnri.reston.va.us) +in Reston, Virginia where he released several versions of the +software. + +In May 2000, Guido and the Python core development team moved to +BeOpen.com to form the BeOpen PythonLabs team. In October of the same +year, the PythonLabs team moved to Digital Creations, which became +Zope Corporation. In 2001, the Python Software Foundation (PSF, see +https://www.python.org/psf/) was formed, a non-profit organization +created specifically to own Python-related Intellectual Property. +Zope Corporation was a sponsoring member of the PSF. + +All Python releases are Open Source (see http://www.opensource.org for +the Open Source Definition). Historically, most, but not all, Python +releases have also been GPL-compatible; the table below summarizes +the various releases. + + Release Derived Year Owner GPL- + from compatible? (1) + + 0.9.0 thru 1.2 1991-1995 CWI yes + 1.3 thru 1.5.2 1.2 1995-1999 CNRI yes + 1.6 1.5.2 2000 CNRI no + 2.0 1.6 2000 BeOpen.com no + 1.6.1 1.6 2001 CNRI yes (2) + 2.1 2.0+1.6.1 2001 PSF no + 2.0.1 2.0+1.6.1 2001 PSF yes + 2.1.1 2.1+2.0.1 2001 PSF yes + 2.1.2 2.1.1 2002 PSF yes + 2.1.3 2.1.2 2002 PSF yes + 2.2 and above 2.1.1 2001-now PSF yes + +Footnotes: + +(1) GPL-compatible doesn't mean that we're distributing Python under + the GPL. All Python licenses, unlike the GPL, let you distribute + a modified version without making your changes open source. The + GPL-compatible licenses make it possible to combine Python with + other software that is released under the GPL; the others don't. + +(2) According to Richard Stallman, 1.6.1 is not GPL-compatible, + because its license has a choice of law clause. According to + CNRI, however, Stallman's lawyer has told CNRI's lawyer that 1.6.1 + is "not incompatible" with the GPL. + +Thanks to the many outside volunteers who have worked under Guido's +direction to make these releases possible. + + +B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON +=============================================================== + +PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 +-------------------------------------------- + +1. This LICENSE AGREEMENT is between the Python Software Foundation +("PSF"), and the Individual or Organization ("Licensee") accessing and +otherwise using this software ("Python") in source or binary form and +its associated documentation. + +2. Subject to the terms and conditions of this License Agreement, PSF hereby +grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce, +analyze, test, perform and/or display publicly, prepare derivative works, +distribute, and otherwise use Python alone or in any derivative version, +provided, however, that PSF's License Agreement and PSF's notice of copyright, +i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, +2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Python Software Foundation; +All Rights Reserved" are retained in Python alone or in any derivative version +prepared by Licensee. + +3. In the event Licensee prepares a derivative work that is based on +or incorporates Python or any part thereof, and wants to make +the derivative work available to others as provided herein, then +Licensee hereby agrees to include in any such work a brief summary of +the changes made to Python. + +4. PSF is making Python available to Licensee on an "AS IS" +basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR +IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND +DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS +FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT +INFRINGE ANY THIRD PARTY RIGHTS. + +5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON +FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS +A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON, +OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + +6. This License Agreement will automatically terminate upon a material +breach of its terms and conditions. + +7. Nothing in this License Agreement shall be deemed to create any +relationship of agency, partnership, or joint venture between PSF and +Licensee. This License Agreement does not grant permission to use PSF +trademarks or trade name in a trademark sense to endorse or promote +products or services of Licensee, or any third party. + +8. By copying, installing or otherwise using Python, Licensee +agrees to be bound by the terms and conditions of this License +Agreement. + + +BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 +------------------------------------------- + +BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 + +1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an +office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the +Individual or Organization ("Licensee") accessing and otherwise using +this software in source or binary form and its associated +documentation ("the Software"). + +2. Subject to the terms and conditions of this BeOpen Python License +Agreement, BeOpen hereby grants Licensee a non-exclusive, +royalty-free, world-wide license to reproduce, analyze, test, perform +and/or display publicly, prepare derivative works, distribute, and +otherwise use the Software alone or in any derivative version, +provided, however, that the BeOpen Python License is retained in the +Software, alone or in any derivative version prepared by Licensee. + +3. BeOpen is making the Software available to Licensee on an "AS IS" +basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR +IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND +DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS +FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT +INFRINGE ANY THIRD PARTY RIGHTS. + +4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE +SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS +AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY +DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + +5. This License Agreement will automatically terminate upon a material +breach of its terms and conditions. + +6. This License Agreement shall be governed by and interpreted in all +respects by the law of the State of California, excluding conflict of +law provisions. Nothing in this License Agreement shall be deemed to +create any relationship of agency, partnership, or joint venture +between BeOpen and Licensee. This License Agreement does not grant +permission to use BeOpen trademarks or trade names in a trademark +sense to endorse or promote products or services of Licensee, or any +third party. As an exception, the "BeOpen Python" logos available at +http://www.pythonlabs.com/logos.html may be used according to the +permissions granted on that web page. + +7. By copying, installing or otherwise using the software, Licensee +agrees to be bound by the terms and conditions of this License +Agreement. + + +CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1 +--------------------------------------- + +1. This LICENSE AGREEMENT is between the Corporation for National +Research Initiatives, having an office at 1895 Preston White Drive, +Reston, VA 20191 ("CNRI"), and the Individual or Organization +("Licensee") accessing and otherwise using Python 1.6.1 software in +source or binary form and its associated documentation. + +2. Subject to the terms and conditions of this License Agreement, CNRI +hereby grants Licensee a nonexclusive, royalty-free, world-wide +license to reproduce, analyze, test, perform and/or display publicly, +prepare derivative works, distribute, and otherwise use Python 1.6.1 +alone or in any derivative version, provided, however, that CNRI's +License Agreement and CNRI's notice of copyright, i.e., "Copyright (c) +1995-2001 Corporation for National Research Initiatives; All Rights +Reserved" are retained in Python 1.6.1 alone or in any derivative +version prepared by Licensee. Alternately, in lieu of CNRI's License +Agreement, Licensee may substitute the following text (omitting the +quotes): "Python 1.6.1 is made available subject to the terms and +conditions in CNRI's License Agreement. This Agreement together with +Python 1.6.1 may be located on the Internet using the following +unique, persistent identifier (known as a handle): 1895.22/1013. This +Agreement may also be obtained from a proxy server on the Internet +using the following URL: http://hdl.handle.net/1895.22/1013". + +3. In the event Licensee prepares a derivative work that is based on +or incorporates Python 1.6.1 or any part thereof, and wants to make +the derivative work available to others as provided herein, then +Licensee hereby agrees to include in any such work a brief summary of +the changes made to Python 1.6.1. + +4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS" +basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR +IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND +DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS +FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT +INFRINGE ANY THIRD PARTY RIGHTS. + +5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON +1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS +A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1, +OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + +6. This License Agreement will automatically terminate upon a material +breach of its terms and conditions. + +7. This License Agreement shall be governed by the federal +intellectual property law of the United States, including without +limitation the federal copyright law, and, to the extent such +U.S. federal law does not apply, by the law of the Commonwealth of +Virginia, excluding Virginia's conflict of law provisions. +Notwithstanding the foregoing, with regard to derivative works based +on Python 1.6.1 that incorporate non-separable material that was +previously distributed under the GNU General Public License (GPL), the +law of the Commonwealth of Virginia shall govern this License +Agreement only as to issues arising under or with respect to +Paragraphs 4, 5, and 7 of this License Agreement. Nothing in this +License Agreement shall be deemed to create any relationship of +agency, partnership, or joint venture between CNRI and Licensee. This +License Agreement does not grant permission to use CNRI trademarks or +trade name in a trademark sense to endorse or promote products or +services of Licensee, or any third party. + +8. By clicking on the "ACCEPT" button where indicated, or by copying, +installing or otherwise using Python 1.6.1, Licensee agrees to be +bound by the terms and conditions of this License Agreement. + + ACCEPT + + +CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2 +-------------------------------------------------- + +Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, +The Netherlands. All rights reserved. + +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose and without fee is hereby granted, +provided that the above copyright notice appear in all copies and that +both that copyright notice and this permission notice appear in +supporting documentation, and that the name of Stichting Mathematisch +Centrum or CWI not be used in advertising or publicity pertaining to +distribution of the software without specific, written prior +permission. + +STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO +THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE +FOR ANY SPECIAL, 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. + +aria-hidden +1.2.6 +MIT +Anton Korzunov + +MIT License + +Copyright (c) 2017 Anton Korzunov + +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. + +asn1 +0.2.6 +MIT +Joyent (joyent.com) + +Copyright (c) 2011 Mark Cavage, 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 + +assert-plus +1.0.0 +MIT +Mark Cavage + +LICENSE TEXT NOT FOUND + +ast-types +0.13.4 +MIT +Ben Newman + +Copyright (c) 2013 Ben Newman + +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. + +astral-regex +2.0.0 +MIT +Kevin Mårtensson + +MIT License + +Copyright (c) Kevin Mårtensson (github.com/kevva) + +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. + +async +3.2.6 +MIT +Caolan McMahon + +Copyright (c) 2010-2018 Caolan McMahon + +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. + +asynckit +0.4.0 +MIT +Alex Indigo + +The MIT License (MIT) + +Copyright (c) 2016 Alex Indigo + +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. + +at-least-node +1.0.0 +ISC +Ryan Zimmerman + +The ISC License +Copyright (c) 2020 Ryan Zimmerman + +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. + +aws-sign2 +0.7.0 +Apache-2.0 +Mikeal Rogers (http://www.futurealoof.com) + +Apache License + +Version 2.0, January 2004 + +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + +You must give any other recipients of the Work or Derivative Works a copy of this License; and + +You must cause any modified files to carry prominent notices stating that You changed the files; and + +You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and + +If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +aws4 +1.13.2 +MIT +Michael Hart (https://github.com/mhart) + +Copyright 2013 Michael Hart (michael.hart.au@gmail.com) + +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. + +b4a +1.6.7 +Apache-2.0 +Holepunch + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +balanced-match +1.0.2 +MIT +Julian Gruber + +(MIT) + +Copyright (c) 2013 Julian Gruber <julian@juliangruber.com> + +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. + +bare-events +2.6.1 +Apache-2.0 +Holepunch + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +bare-fs +4.1.6 +Apache-2.0 +Holepunch + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +bare-os +3.6.1 +Apache-2.0 +Holepunch + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +bare-path +3.0.0 +Apache-2.0 +Holepunch + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +bare-stream +2.6.5 +Apache-2.0 +Holepunch + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +base64-arraybuffer +1.0.2 +MIT +Niklas von Hertzen + +Copyright (c) 2012 Niklas von Hertzen + +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. + +base64-js +1.5.1 +MIT +T. Jameson Little + +The MIT License (MIT) + +Copyright (c) 2014 Jameson Little + +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. + +basic-ftp +5.0.5 +MIT +Patrick Juchli + +Copyright (c) 2019 Patrick Juchli + +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. + +bcrypt-pbkdf +1.0.2 +BSD-3-Clause + + +The Blowfish portions are under the following license: + +Blowfish block cipher for OpenBSD +Copyright 1997 Niels Provos +All rights reserved. + +Implementation advice by David Mazieres . + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. 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. +3. The name of the author may not be used to endorse or promote products + derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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 bcrypt_pbkdf portions are under the following license: + +Copyright (c) 2013 Ted Unangst + +Permission to use, copy, modify, and 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. + + + +Performance improvements (Javascript-specific): + +Copyright 2016, Joyent Inc +Author: Alex Wilson + +Permission to use, copy, modify, and 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. + +binary-extensions +2.3.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Paul Miller (https://paulmillr.com) + +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. + +blob-util +2.0.2 +Apache-2.0 +Nolan Lawson + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +bluebird +3.7.2 +MIT +Petka Antonov + +The MIT License (MIT) + +Copyright (c) 2013-2018 Petka Antonov + +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. + +brace-expansion +2.0.2 +MIT +Julian Gruber + +MIT License + +Copyright (c) 2013 Julian Gruber + +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. + +braces +3.0.3 +MIT +Jon Schlinkert (https://github.com/jonschlinkert) + +The MIT License (MIT) + +Copyright (c) 2014-present, Jon Schlinkert. + +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. + +buffer +5.7.1 +MIT +Feross Aboukhadijeh + +The MIT License (MIT) + +Copyright (c) Feross Aboukhadijeh, and other 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. + +buffer-crc32 +0.2.13 +MIT +Brian J. Brennan + +The MIT License + +Copyright (c) 2013 Brian J. Brennan + +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. + +busboy +1.6.0 +MIT +Brian White + +Copyright Brian White. 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. + +cachedir +2.4.0 +MIT +Linus Unnebäck + +The MIT License (MIT) + +Copyright (c) 2013-2014, 2016, 2018, 2023 Linus Unnebäck + +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. + +call-bind-apply-helpers +1.0.2 +MIT +Jordan Harband + +MIT License + +Copyright (c) 2024 Jordan Harband + +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. + +call-bound +1.0.4 +MIT +Jordan Harband + +MIT License + +Copyright (c) 2024 Jordan Harband + +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. + +callsites +3.1.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +camelcase-css +2.0.1 +MIT +Steven Vachon (https://www.svachon.com/) + +The MIT License (MIT) + +Copyright (c) Steven Vachon (svachon.com) + +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. + +caniuse-lite +1.0.30001733 +CC-BY-4.0 +Ben Briggs + +Attribution 4.0 International + +======================================================================= + +Creative Commons Corporation ("Creative Commons") is not a law firm and +does not provide legal services or legal advice. Distribution of +Creative Commons public licenses does not create a lawyer-client or +other relationship. Creative Commons makes its licenses and related +information available on an "as-is" basis. Creative Commons gives no +warranties regarding its licenses, any material licensed under their +terms and conditions, or any related information. Creative Commons +disclaims all liability for damages resulting from their use to the +fullest extent possible. + +Using Creative Commons Public Licenses + +Creative Commons public licenses provide a standard set of terms and +conditions that creators and other rights holders may use to share +original works of authorship and other material subject to copyright +and certain other rights specified in the public license below. The +following considerations are for informational purposes only, are not +exhaustive, and do not form part of our licenses. + + Considerations for licensors: Our public licenses are + intended for use by those authorized to give the public + permission to use material in ways otherwise restricted by + copyright and certain other rights. Our licenses are + irrevocable. Licensors should read and understand the terms + and conditions of the license they choose before applying it. + Licensors should also secure all rights necessary before + applying our licenses so that the public can reuse the + material as expected. Licensors should clearly mark any + material not subject to the license. This includes other CC- + licensed material, or material used under an exception or + limitation to copyright. More considerations for licensors: + wiki.creativecommons.org/Considerations_for_licensors + + Considerations for the public: By using one of our public + licenses, a licensor grants the public permission to use the + licensed material under specified terms and conditions. If + the licensor's permission is not necessary for any reason--for + example, because of any applicable exception or limitation to + copyright--then that use is not regulated by the license. Our + licenses grant only permissions under copyright and certain + other rights that a licensor has authority to grant. Use of + the licensed material may still be restricted for other + reasons, including because others have copyright or other + rights in the material. A licensor may make special requests, + such as asking that all changes be marked or described. + Although not required by our licenses, you are encouraged to + respect those requests where reasonable. More_considerations + for the public: + wiki.creativecommons.org/Considerations_for_licensees + +======================================================================= + +Creative Commons Attribution 4.0 International Public License + +By exercising the Licensed Rights (defined below), You accept and agree +to be bound by the terms and conditions of this Creative Commons +Attribution 4.0 International Public License ("Public License"). To the +extent this Public License may be interpreted as a contract, You are +granted the Licensed Rights in consideration of Your acceptance of +these terms and conditions, and the Licensor grants You such rights in +consideration of benefits the Licensor receives from making the +Licensed Material available under these terms and conditions. + + +Section 1 -- Definitions. + + a. Adapted Material means material subject to Copyright and Similar + Rights that is derived from or based upon the Licensed Material + and in which the Licensed Material is translated, altered, + arranged, transformed, or otherwise modified in a manner requiring + permission under the Copyright and Similar Rights held by the + Licensor. For purposes of this Public License, where the Licensed + Material is a musical work, performance, or sound recording, + Adapted Material is always produced where the Licensed Material is + synched in timed relation with a moving image. + + b. Adapter's License means the license You apply to Your Copyright + and Similar Rights in Your contributions to Adapted Material in + accordance with the terms and conditions of this Public License. + + c. Copyright and Similar Rights means copyright and/or similar rights + closely related to copyright including, without limitation, + performance, broadcast, sound recording, and Sui Generis Database + Rights, without regard to how the rights are labeled or + categorized. For purposes of this Public License, the rights + specified in Section 2(b)(1)-(2) are not Copyright and Similar + Rights. + + d. Effective Technological Measures means those measures that, in the + absence of proper authority, may not be circumvented under laws + fulfilling obligations under Article 11 of the WIPO Copyright + Treaty adopted on December 20, 1996, and/or similar international + agreements. + + e. Exceptions and Limitations means fair use, fair dealing, and/or + any other exception or limitation to Copyright and Similar Rights + that applies to Your use of the Licensed Material. + + f. Licensed Material means the artistic or literary work, database, + or other material to which the Licensor applied this Public + License. + + g. Licensed Rights means the rights granted to You subject to the + terms and conditions of this Public License, which are limited to + all Copyright and Similar Rights that apply to Your use of the + Licensed Material and that the Licensor has authority to license. + + h. Licensor means the individual(s) or entity(ies) granting rights + under this Public License. + + i. Share means to provide material to the public by any means or + process that requires permission under the Licensed Rights, such + as reproduction, public display, public performance, distribution, + dissemination, communication, or importation, and to make material + available to the public including in ways that members of the + public may access the material from a place and at a time + individually chosen by them. + + j. Sui Generis Database Rights means rights other than copyright + resulting from Directive 96/9/EC of the European Parliament and of + the Council of 11 March 1996 on the legal protection of databases, + as amended and/or succeeded, as well as other essentially + equivalent rights anywhere in the world. + + k. You means the individual or entity exercising the Licensed Rights + under this Public License. Your has a corresponding meaning. + + +Section 2 -- Scope. + + a. License grant. + + 1. Subject to the terms and conditions of this Public License, + the Licensor hereby grants You a worldwide, royalty-free, + non-sublicensable, non-exclusive, irrevocable license to + exercise the Licensed Rights in the Licensed Material to: + + a. reproduce and Share the Licensed Material, in whole or + in part; and + + b. produce, reproduce, and Share Adapted Material. + + 2. Exceptions and Limitations. For the avoidance of doubt, where + Exceptions and Limitations apply to Your use, this Public + License does not apply, and You do not need to comply with + its terms and conditions. + + 3. Term. The term of this Public License is specified in Section + 6(a). + + 4. Media and formats; technical modifications allowed. The + Licensor authorizes You to exercise the Licensed Rights in + all media and formats whether now known or hereafter created, + and to make technical modifications necessary to do so. The + Licensor waives and/or agrees not to assert any right or + authority to forbid You from making technical modifications + necessary to exercise the Licensed Rights, including + technical modifications necessary to circumvent Effective + Technological Measures. For purposes of this Public License, + simply making modifications authorized by this Section 2(a) + (4) never produces Adapted Material. + + 5. Downstream recipients. + + a. Offer from the Licensor -- Licensed Material. Every + recipient of the Licensed Material automatically + receives an offer from the Licensor to exercise the + Licensed Rights under the terms and conditions of this + Public License. + + b. No downstream restrictions. You may not offer or impose + any additional or different terms or conditions on, or + apply any Effective Technological Measures to, the + Licensed Material if doing so restricts exercise of the + Licensed Rights by any recipient of the Licensed + Material. + + 6. No endorsement. Nothing in this Public License constitutes or + may be construed as permission to assert or imply that You + are, or that Your use of the Licensed Material is, connected + with, or sponsored, endorsed, or granted official status by, + the Licensor or others designated to receive attribution as + provided in Section 3(a)(1)(A)(i). + + b. Other rights. + + 1. Moral rights, such as the right of integrity, are not + licensed under this Public License, nor are publicity, + privacy, and/or other similar personality rights; however, to + the extent possible, the Licensor waives and/or agrees not to + assert any such rights held by the Licensor to the limited + extent necessary to allow You to exercise the Licensed + Rights, but not otherwise. + + 2. Patent and trademark rights are not licensed under this + Public License. + + 3. To the extent possible, the Licensor waives any right to + collect royalties from You for the exercise of the Licensed + Rights, whether directly or through a collecting society + under any voluntary or waivable statutory or compulsory + licensing scheme. In all other cases the Licensor expressly + reserves any right to collect such royalties. + + +Section 3 -- License Conditions. + +Your exercise of the Licensed Rights is expressly made subject to the +following conditions. + + a. Attribution. + + 1. If You Share the Licensed Material (including in modified + form), You must: + + a. retain the following if it is supplied by the Licensor + with the Licensed Material: + + i. identification of the creator(s) of the Licensed + Material and any others designated to receive + attribution, in any reasonable manner requested by + the Licensor (including by pseudonym if + designated); + + ii. a copyright notice; + + iii. a notice that refers to this Public License; + + iv. a notice that refers to the disclaimer of + warranties; + + v. a URI or hyperlink to the Licensed Material to the + extent reasonably practicable; + + b. indicate if You modified the Licensed Material and + retain an indication of any previous modifications; and + + c. indicate the Licensed Material is licensed under this + Public License, and include the text of, or the URI or + hyperlink to, this Public License. + + 2. You may satisfy the conditions in Section 3(a)(1) in any + reasonable manner based on the medium, means, and context in + which You Share the Licensed Material. For example, it may be + reasonable to satisfy the conditions by providing a URI or + hyperlink to a resource that includes the required + information. + + 3. If requested by the Licensor, You must remove any of the + information required by Section 3(a)(1)(A) to the extent + reasonably practicable. + + 4. If You Share Adapted Material You produce, the Adapter's + License You apply must not prevent recipients of the Adapted + Material from complying with this Public License. + + +Section 4 -- Sui Generis Database Rights. + +Where the Licensed Rights include Sui Generis Database Rights that +apply to Your use of the Licensed Material: + + a. for the avoidance of doubt, Section 2(a)(1) grants You the right + to extract, reuse, reproduce, and Share all or a substantial + portion of the contents of the database; + + b. if You include all or a substantial portion of the database + contents in a database in which You have Sui Generis Database + Rights, then the database in which You have Sui Generis Database + Rights (but not its individual contents) is Adapted Material; and + + c. You must comply with the conditions in Section 3(a) if You Share + all or a substantial portion of the contents of the database. + +For the avoidance of doubt, this Section 4 supplements and does not +replace Your obligations under this Public License where the Licensed +Rights include other Copyright and Similar Rights. + + +Section 5 -- Disclaimer of Warranties and Limitation of Liability. + + a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE + EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS + AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF + ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, + IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, + WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, + ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT + KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT + ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. + + b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE + TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, + NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, + INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, + COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR + USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN + ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR + DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR + IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. + + c. The disclaimer of warranties and limitation of liability provided + above shall be interpreted in a manner that, to the extent + possible, most closely approximates an absolute disclaimer and + waiver of all liability. + + +Section 6 -- Term and Termination. + + a. This Public License applies for the term of the Copyright and + Similar Rights licensed here. However, if You fail to comply with + this Public License, then Your rights under this Public License + terminate automatically. + + b. Where Your right to use the Licensed Material has terminated under + Section 6(a), it reinstates: + + 1. automatically as of the date the violation is cured, provided + it is cured within 30 days of Your discovery of the + violation; or + + 2. upon express reinstatement by the Licensor. + + For the avoidance of doubt, this Section 6(b) does not affect any + right the Licensor may have to seek remedies for Your violations + of this Public License. + + c. For the avoidance of doubt, the Licensor may also offer the + Licensed Material under separate terms or conditions or stop + distributing the Licensed Material at any time; however, doing so + will not terminate this Public License. + + d. Sections 1, 5, 6, 7, and 8 survive termination of this Public + License. + + +Section 7 -- Other Terms and Conditions. + + a. The Licensor shall not be bound by any additional or different + terms or conditions communicated by You unless expressly agreed. + + b. Any arrangements, understandings, or agreements regarding the + Licensed Material not stated herein are separate from and + independent of the terms and conditions of this Public License. + + +Section 8 -- Interpretation. + + a. For the avoidance of doubt, this Public License does not, and + shall not be interpreted to, reduce, limit, restrict, or impose + conditions on any use of the Licensed Material that could lawfully + be made without permission under this Public License. + + b. To the extent possible, if any provision of this Public License is + deemed unenforceable, it shall be automatically reformed to the + minimum extent necessary to make it enforceable. If the provision + cannot be reformed, it shall be severed from this Public License + without affecting the enforceability of the remaining terms and + conditions. + + c. No term or condition of this Public License will be waived and no + failure to comply consented to unless expressly agreed to by the + Licensor. + + d. Nothing in this Public License constitutes or may be interpreted + as a limitation upon, or waiver of, any privileges and immunities + that apply to the Licensor or You, including from the legal + processes of any jurisdiction or authority. + + +======================================================================= + +Creative Commons is not a party to its public +licenses. Notwithstanding, Creative Commons may elect to apply one of +its public licenses to material it publishes and in those instances +will be considered the “Licensor.” The text of the Creative Commons +public licenses is dedicated to the public domain under the CC0 Public +Domain Dedication. Except for the limited purpose of indicating that +material is shared under a Creative Commons public license or as +otherwise permitted by the Creative Commons policies published at +creativecommons.org/policies, Creative Commons does not authorize the +use of the trademark "Creative Commons" or any other trademark or logo +of Creative Commons without its prior written consent including, +without limitation, in connection with any unauthorized modifications +to any of its public licenses or any other arrangements, +understandings, or agreements concerning use of licensed material. For +the avoidance of doubt, this paragraph does not form part of the +public licenses. + +Creative Commons may be contacted at creativecommons.org. + +caseless +0.12.0 +Apache-2.0 +Mikeal Rogers + +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION +1. Definitions. +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. +"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. +2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. +3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: +You must give any other recipients of the Work or Derivative Works a copy of this License; and +You must cause any modified files to carry prominent notices stating that You changed the files; and +You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and +If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. +6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. +8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. +9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. +END OF TERMS AND CONDITIONS + +chalk +4.1.2 +MIT + + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +check-more-types +2.24.0 +MIT +Gleb Bahmutov + +The MIT License (MIT) + +Copyright (c) 2014 Kensho + +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. + +chevrotain +11.0.3 +Apache-2.0 +Shahar Soel + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +chevrotain-allstar +0.3.1 +MIT +TypeFox + +Copyright 2022 TypeFox GmbH + +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. + +chokidar +3.6.0 +MIT +Paul Miller (https://paulmillr.com) + +The MIT License (MIT) + +Copyright (c) 2012-2019 Paul Miller (https://paulmillr.com), Elan Shanker + +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. + +chromium-bidi +7.2.0 +Apache-2.0 +The Chromium Authors + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +ci-info +4.3.0 +MIT +Thomas Watson Steen (https://twitter.com/wa7son) + +The MIT License (MIT) + +Copyright (c) 2016 Thomas Watson Steen + +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. + +class-variance-authority +0.7.1 +Apache-2.0 +Joe Bell (https://joebell.co.uk) + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + Copyright 2022 Joe Bell + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +clean-stack +2.2.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +cli-cursor +3.1.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +cli-table3 +0.6.1 +MIT +James Talmage + +MIT License + +Copyright (c) 2014 James Talmage + +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. + +cli-truncate +2.1.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +client-only +0.0.1 +MIT + + +LICENSE TEXT NOT FOUND + +cliui +8.0.1 +ISC +Ben Coe + +Copyright (c) 2015, 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. + +clsx +2.1.1 +MIT +Luke Edwards + +MIT License + +Copyright (c) Luke Edwards (lukeed.com) + +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. + +cmdk +1.1.1 +MIT +Paco + +MIT License + +Copyright (c) 2022 Paco Coursey + +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. + +color +4.2.3 +MIT + + +Copyright (c) 2012 Heather Arthur + +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. + +color-convert +2.0.1 +MIT +Heather Arthur + +Copyright (c) 2011-2016 Heather Arthur + +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. + +color-name +1.1.4 +MIT +DY + +The MIT License (MIT) +Copyright (c) 2015 Dmitry Ivanov + +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. + +color-string +1.9.1 +MIT +Heather Arthur + +Copyright (c) 2011 Heather Arthur + +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. + +colorette +2.0.20 +MIT +Jorge Bucaran + +Copyright © Jorge Bucaran <> + +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. + +colors +1.4.0 +MIT +Marak Squires + +MIT License + +Original Library + - Copyright (c) Marak Squires + +Additional Functionality + - Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +combined-stream +1.0.8 +MIT +Felix Geisendörfer (http://debuggable.com/) + +Copyright (c) 2011 Debuggable Limited + +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. + +commander +4.1.1 +MIT +TJ Holowaychuk + +(The MIT License) + +Copyright (c) 2011 TJ Holowaychuk + +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. + +commander +6.2.1 +MIT +TJ Holowaychuk + +(The MIT License) + +Copyright (c) 2011 TJ Holowaychuk + +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. + +commander +7.2.0 +MIT +TJ Holowaychuk + +(The MIT License) + +Copyright (c) 2011 TJ Holowaychuk + +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. + +commander +8.3.0 +MIT +TJ Holowaychuk + +(The MIT License) + +Copyright (c) 2011 TJ Holowaychuk + +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. + +common-tags +1.8.2 +MIT +Declan de Wet + +License (MIT) +------------- + +Copyright © Declan de Wet + +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. + +confbox +0.1.8 +MIT + + +MIT License + +Copyright (c) Pooya Parsa + +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. + +--- + +js-yaml: https://github.com/nodeca/js-yaml/tree/master + +(The MIT License) + +Copyright (C) 2011-2015 by Vitaly Puzrin + +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. + +--- + +smol-toml: https://github.com/squirrelchat/smol-toml/blob/mistress/LICENSE + +Copyright (c) Squirrel Chat et al., All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. +2. 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. +3. Neither the name of the copyright holder 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 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. + +--- + +jsonc-parser: https://github.com/microsoft/node-jsonc-parser/blob/main/LICENSE.md + +The MIT License (MIT) + +Copyright (c) Microsoft + +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. + +--- + +json5: https://github.com/json5/json5/blob/main/LICENSE.md + +MIT License + +Copyright (c) 2012-2018 Aseem Kishore, and others (https://github.com/json5/json5/graphs/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. + +--- + +detect-indent: https://github.com/sindresorhus/detect-indent/blob/main/license + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +confbox +0.2.2 +MIT + + +MIT License + +Copyright (c) Pooya Parsa + +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. + +--- + +js-yaml: https://github.com/nodeca/js-yaml/tree/master + +(The MIT License) + +Copyright (C) 2011-2015 by Vitaly Puzrin + +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. + +--- + +smol-toml: https://github.com/squirrelchat/smol-toml/blob/mistress/LICENSE + +Copyright (c) Squirrel Chat et al., All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. +2. 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. +3. Neither the name of the copyright holder 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 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. + +--- + +jsonc-parser: https://github.com/microsoft/node-jsonc-parser/blob/main/LICENSE.md + +The MIT License (MIT) + +Copyright (c) Microsoft + +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. + +--- + +json5: https://github.com/json5/json5/blob/main/LICENSE.md + +MIT License + +Copyright (c) 2012-2018 Aseem Kishore, and others (https://github.com/json5/json5/graphs/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. + +--- + +detect-indent: https://github.com/sindresorhus/detect-indent/blob/main/license + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +--- + +ini: https://github.com/npm/ini + +The ISC License + +Copyright (c) Isaac Z. Schlueter and 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. + +core-util-is +1.0.2 +MIT +Isaac Z. Schlueter (http://blog.izs.me/) + +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. + +cose-base +1.0.3 +MIT + + +MIT License + +Copyright (c) 2019 - present, iVis@Bilkent. + +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. + +cose-base +2.2.0 +MIT + + +MIT License + +Copyright (c) 2019 - present, iVis@Bilkent. + +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. + +cosmiconfig +9.0.0 +MIT +Daniel Fischer + +The MIT License (MIT) + +Copyright (c) 2015 David Clark + +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. + +crelt +1.0.6 +MIT +Marijn Haverbeke + +Copyright (C) 2020 by Marijn Haverbeke + +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. + +cross-spawn +7.0.6 +MIT +André Cruz + +The MIT License (MIT) + +Copyright (c) 2018 Made With MOXY Lda + +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. + +css-line-break +2.1.0 +MIT +Niklas von Hertzen + +Copyright (c) 2017 Niklas von Hertzen + +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. + +cssesc +3.0.0 +MIT +Mathias Bynens + +Copyright Mathias Bynens + +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. + +csstype +3.1.3 +MIT +Fredrik Nicol + +Copyright (c) 2017-2018 Fredrik Nicol + +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. + +cypress +14.5.4 +MIT + + +LICENSE TEXT NOT FOUND + +cytoscape +3.33.0 +MIT + + +Copyright (c) 2016-2025, The Cytoscape Consortium. + +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. + +cytoscape-cose-bilkent +4.1.0 +MIT + + +Copyright (c) 2016-2018, The Cytoscape Consortium. + +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. + +cytoscape-fcose +2.2.0 +MIT +iVis-at-Bilkent + +Copyright (c) 2018 - present, iVis-at-Bilkent. + +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 +7.9.0 +ISC +Mike Bostock + +Copyright 2010-2023 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 +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. + +d3-array +2.12.1 +BSD-3-Clause +Mike Bostock + +Copyright 2010-2020 Mike Bostock +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 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. + +d3-array +3.2.4 +ISC +Mike Bostock + +Copyright 2010-2023 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 +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. + +d3-axis +3.0.0 +ISC +Mike Bostock + +Copyright 2010-2021 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 +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. + +d3-brush +3.0.0 +ISC +Mike Bostock + +Copyright 2010-2021 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 +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. + +d3-chord +3.0.1 +ISC +Mike Bostock + +Copyright 2010-2021 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 +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. + +d3-color +3.1.0 +ISC +Mike Bostock + +Copyright 2010-2022 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 +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. + +d3-contour +4.0.2 +ISC +Mike Bostock + +Copyright 2012-2023 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 +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. + +d3-delaunay +6.0.4 +ISC +Mike Bostock + +Copyright 2018-2021 Observable, Inc. +Copyright 2021 Mapbox + +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. + +d3-dispatch +3.0.1 +ISC +Mike Bostock + +Copyright 2010-2021 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 +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. + +d3-drag +3.0.0 +ISC +Mike Bostock + +Copyright 2010-2021 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 +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. + +d3-dsv +3.0.1 +ISC +Mike Bostock + +Copyright 2013-2021 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 +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. + +d3-ease +3.0.1 +BSD-3-Clause +Mike Bostock + +Copyright 2010-2021 Mike Bostock +Copyright 2001 Robert Penner +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 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. + +d3-fetch +3.0.1 +ISC +Mike Bostock + +Copyright 2016-2021 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 +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. + +d3-force +3.0.0 +ISC +Mike Bostock + +Copyright 2010-2021 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 +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. + +d3-format +3.1.0 +ISC +Mike Bostock + +Copyright 2010-2021 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 +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. + +d3-geo +3.1.1 +ISC +Mike Bostock + +Copyright 2010-2024 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 +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. + +This license applies to GeographicLib, versions 1.12 and later. + +Copyright 2008-2012 Charles Karney + +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-hierarchy +3.1.2 +ISC +Mike Bostock + +Copyright 2010-2021 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 +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. + +d3-interpolate +3.0.1 +ISC +Mike Bostock + +Copyright 2010-2021 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 +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. + +d3-path +1.0.9 +BSD-3-Clause +Mike Bostock + +Copyright 2015-2016 Mike Bostock +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 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. + +d3-path +3.1.0 +ISC +Mike Bostock + +Copyright 2015-2022 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 +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. + +d3-polygon +3.0.1 +ISC +Mike Bostock + +Copyright 2010-2021 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 +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. + +d3-quadtree +3.0.1 +ISC +Mike Bostock + +Copyright 2010-2021 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 +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. + +d3-random +3.0.1 +ISC +Mike Bostock + +Copyright 2010-2021 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 +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. + +d3-sankey +0.12.3 +BSD-3-Clause +Mike Bostock + +Copyright 2015, Mike Bostock +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 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. + +d3-scale +4.0.2 +ISC +Mike Bostock + +Copyright 2010-2021 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 +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. + +d3-scale-chromatic +3.1.0 +ISC +Mike Bostock + +Copyright 2010-2024 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 +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. + +Apache-Style Software License for ColorBrewer software and ColorBrewer Color Schemes + +Copyright 2002 Cynthia Brewer, Mark Harrower, and The Pennsylvania State University + +Licensed under the Apache License, Version 2.0 (the "License"); you may not use +this file except in compliance with the License. You may obtain a copy of the +License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed +under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR +CONDITIONS OF ANY KIND, either express or implied. See the License for the +specific language governing permissions and limitations under the License. + +d3-selection +3.0.0 +ISC +Mike Bostock + +Copyright 2010-2021 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 +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. + +d3-shape +1.3.7 +BSD-3-Clause +Mike Bostock + +Copyright 2010-2015 Mike Bostock +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 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. + +d3-shape +3.2.0 +ISC +Mike Bostock + +Copyright 2010-2022 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 +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. + +d3-time +3.1.0 +ISC +Mike Bostock + +Copyright 2010-2022 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 +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. + +d3-time-format +4.1.0 +ISC +Mike Bostock + +Copyright 2010-2021 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 +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. + +d3-timer +3.0.1 +ISC +Mike Bostock + +Copyright 2010-2021 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 +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. + +d3-transition +3.0.1 +ISC +Mike Bostock + +Copyright 2010-2021 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 +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. + +d3-zoom +3.0.0 +ISC +Mike Bostock + +Copyright 2010-2021 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 +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. + +dagre-d3-es +7.0.11 +MIT + + +Original dagre-d3 copyright: Copyright (c) 2013 Chris Pettitt +Original dagre copyright: Copyright (c) 2012-2014 Chris Pettitt +Original graphlib copyright: Copyright (c) 2012-2014 Chris Pettitt + +Copyright (c) 2022-2024 Thibaut Lassalle, David Newell, Alois Klink, Sidharth Vinod and dagre-es 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. + +dashdash +1.14.1 +MIT +Trent Mick (http://trentm.com) + +# This is the MIT license + +Copyright (c) 2013 Trent Mick. All rights reserved. +Copyright (c) 2013 Joyent Inc. 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. + +data-uri-to-buffer +6.0.2 +MIT +Nathan Rajlich (http://n8.io/) + +(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. + +dayjs +1.11.13 +MIT +iamkun + +MIT License + +Copyright (c) 2018-present, iamkun + +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. + +debug +3.2.7 +MIT +TJ Holowaychuk + +(The MIT License) + +Copyright (c) 2014 TJ Holowaychuk + +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. + +debug +4.4.1 +MIT +Josh Junon (https://github.com/qix-) + +(The MIT License) + +Copyright (c) 2014-2017 TJ Holowaychuk +Copyright (c) 2018-2021 Josh Junon + +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. + +decimal.js-light +2.5.1 +MIT +Michael Mclaughlin + +The MIT Expat Licence. + +Copyright (c) 2020 Michael Mclaughlin + +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. + +degenerator +5.0.1 +MIT +Nathan Rajlich (http://n8.io/) + +LICENSE TEXT NOT FOUND + +delaunator +5.0.1 +ISC +Vladimir Agafonkin + +ISC License + +Copyright (c) 2021, Mapbox + +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. + +delayed-stream +1.0.0 +MIT +Felix Geisendörfer (http://debuggable.com/) + +Copyright (c) 2011 Debuggable Limited + +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. + +detect-libc +2.0.4 +Apache-2.0 +Lovell Fuller + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +detect-node-es +1.1.0 +MIT +Ilya Kantor + +MIT License + +Copyright (c) 2017 Ilya Kantor + +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. + +devtools-protocol +0.0.1475386 +BSD-3-Clause +The Chromium Authors + +// Copyright 2014 The Chromium Authors. 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 Google Inc. 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. + +didyoumean +1.2.2 +Apache-2.0 +Dave Porter + +## License + +didYouMean.js copyright (c) 2013 Dave Porter. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License +[here](http://www.apache.org/licenses/LICENSE-2.0). + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + +dlv +1.1.3 +MIT +Jason Miller (http://jasonformat.com) + +LICENSE TEXT NOT FOUND + +dom-helpers +5.2.1 +MIT +Jason Quense + +The MIT License (MIT) + +Copyright (c) 2015 Jason Quense + +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. + +dompurify +3.2.6 +(MPL-2.0 OR Apache-2.0) +Dr.-Ing. Mario Heiderich, Cure53 (https://cure53.de/) + +DOMPurify +Copyright 2025 Dr.-Ing. Mario Heiderich, Cure53 + +DOMPurify is free software; you can redistribute it and/or modify it under the +terms of either: + +a) the Apache License Version 2.0, or +b) the Mozilla Public License Version 2.0 + +----------------------------------------------------------------------------- + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +----------------------------------------------------------------------------- +Mozilla Public License, version 2.0 + +1. Definitions + +1.1. “Contributor” + + means each individual or legal entity that creates, contributes to the + creation of, or owns Covered Software. + +1.2. “Contributor Version” + + means the combination of the Contributions of others (if any) used by a + Contributor and that particular Contributor’s Contribution. + +1.3. “Contribution” + + means Covered Software of a particular Contributor. + +1.4. “Covered Software” + + means Source Code Form to which the initial Contributor has attached the + notice in Exhibit A, the Executable Form of such Source Code Form, and + Modifications of such Source Code Form, in each case including portions + thereof. + +1.5. “Incompatible With Secondary Licenses” + means + + a. that the initial Contributor has attached the notice described in + Exhibit B to the Covered Software; or + + b. that the Covered Software was made available under the terms of version + 1.1 or earlier of the License, but not also under the terms of a + Secondary License. + +1.6. “Executable Form” + + means any form of the work other than Source Code Form. + +1.7. “Larger Work” + + means a work that combines Covered Software with other material, in a separate + file or files, that is not Covered Software. + +1.8. “License” + + means this document. + +1.9. “Licensable” + + means having the right to grant, to the maximum extent possible, whether at the + time of the initial grant or subsequently, any and all of the rights conveyed by + this License. + +1.10. “Modifications” + + means any of the following: + + a. any file in Source Code Form that results from an addition to, deletion + from, or modification of the contents of Covered Software; or + + b. any new file in Source Code Form that contains any Covered Software. + +1.11. “Patent Claims” of a Contributor + + means any patent claim(s), including without limitation, method, process, + and apparatus claims, in any patent Licensable by such Contributor that + would be infringed, but for the grant of the License, by the making, + using, selling, offering for sale, having made, import, or transfer of + either its Contributions or its Contributor Version. + +1.12. “Secondary License” + + means either the GNU General Public License, Version 2.0, the GNU Lesser + General Public License, Version 2.1, the GNU Affero General Public + License, Version 3.0, or any later versions of those licenses. + +1.13. “Source Code Form” + + means the form of the work preferred for making modifications. + +1.14. “You” (or “Your”) + + means an individual or a legal entity exercising rights under this + License. For legal entities, “You” includes any entity that controls, is + controlled by, or is under common control with You. For purposes of this + definition, “control” means (a) the power, direct or indirect, to cause + the direction or management of such entity, whether by contract or + otherwise, or (b) ownership of more than fifty percent (50%) of the + outstanding shares or beneficial ownership of such entity. + + +2. License Grants and Conditions + +2.1. Grants + + Each Contributor hereby grants You a world-wide, royalty-free, + non-exclusive license: + + a. under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or as + part of a Larger Work; and + + b. under Patent Claims of such Contributor to make, use, sell, offer for + sale, have made, import, and otherwise transfer either its Contributions + or its Contributor Version. + +2.2. Effective Date + + The licenses granted in Section 2.1 with respect to any Contribution become + effective for each Contribution on the date the Contributor first distributes + such Contribution. + +2.3. Limitations on Grant Scope + + The licenses granted in this Section 2 are the only rights granted under this + License. No additional rights or licenses will be implied from the distribution + or licensing of Covered Software under this License. Notwithstanding Section + 2.1(b) above, no patent license is granted by a Contributor: + + a. for any code that a Contributor has removed from Covered Software; or + + b. for infringements caused by: (i) Your and any other third party’s + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or + + c. under Patent Claims infringed by Covered Software in the absence of its + Contributions. + + This License does not grant any rights in the trademarks, service marks, or + logos of any Contributor (except as may be necessary to comply with the + notice requirements in Section 3.4). + +2.4. Subsequent Licenses + + No Contributor makes additional grants as a result of Your choice to + distribute the Covered Software under a subsequent version of this License + (see Section 10.2) or under the terms of a Secondary License (if permitted + under the terms of Section 3.3). + +2.5. Representation + + Each Contributor represents that the Contributor believes its Contributions + are its original creation(s) or it has sufficient rights to grant the + rights to its Contributions conveyed by this License. + +2.6. Fair Use + + This License is not intended to limit any rights You have under applicable + copyright doctrines of fair use, fair dealing, or other equivalents. + +2.7. Conditions + + Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in + Section 2.1. + + +3. Responsibilities + +3.1. Distribution of Source Form + + All distribution of Covered Software in Source Code Form, including any + Modifications that You create or to which You contribute, must be under the + terms of this License. You must inform recipients that the Source Code Form + of the Covered Software is governed by the terms of this License, and how + they can obtain a copy of this License. You may not attempt to alter or + restrict the recipients’ rights in the Source Code Form. + +3.2. Distribution of Executable Form + + If You distribute Covered Software in Executable Form then: + + a. such Covered Software must also be made available in Source Code Form, + as described in Section 3.1, and You must inform recipients of the + Executable Form how they can obtain a copy of such Source Code Form by + reasonable means in a timely manner, at a charge no more than the cost + of distribution to the recipient; and + + b. You may distribute such Executable Form under the terms of this License, + or sublicense it under different terms, provided that the license for + the Executable Form does not attempt to limit or alter the recipients’ + rights in the Source Code Form under this License. + +3.3. Distribution of a Larger Work + + You may create and distribute a Larger Work under terms of Your choice, + provided that You also comply with the requirements of this License for the + Covered Software. If the Larger Work is a combination of Covered Software + with a work governed by one or more Secondary Licenses, and the Covered + Software is not Incompatible With Secondary Licenses, this License permits + You to additionally distribute such Covered Software under the terms of + such Secondary License(s), so that the recipient of the Larger Work may, at + their option, further distribute the Covered Software under the terms of + either this License or such Secondary License(s). + +3.4. Notices + + You may not remove or alter the substance of any license notices (including + copyright notices, patent notices, disclaimers of warranty, or limitations + of liability) contained within the Source Code Form of the Covered + Software, except that You may alter any license notices to the extent + required to remedy known factual inaccuracies. + +3.5. Application of Additional Terms + + You may choose to offer, and to charge a fee for, warranty, support, + indemnity or liability obligations to one or more recipients of Covered + Software. However, You may do so only on Your own behalf, and not on behalf + of any Contributor. You must make it absolutely clear that any such + warranty, support, indemnity, or liability obligation is offered by You + alone, and You hereby agree to indemnify every Contributor for any + liability incurred by such Contributor as a result of warranty, support, + indemnity or liability terms You offer. You may include additional + disclaimers of warranty and limitations of liability specific to any + jurisdiction. + +4. Inability to Comply Due to Statute or Regulation + + If it is impossible for You to comply with any of the terms of this License + with respect to some or all of the Covered Software due to statute, judicial + order, or regulation then You must: (a) comply with the terms of this License + to the maximum extent possible; and (b) describe the limitations and the code + they affect. Such description must be placed in a text file included with all + distributions of the Covered Software under this License. Except to the + extent prohibited by statute or regulation, such description must be + sufficiently detailed for a recipient of ordinary skill to be able to + understand it. + +5. Termination + +5.1. The rights granted under this License will terminate automatically if You + fail to comply with any of its terms. However, if You become compliant, + then the rights granted under this License from a particular Contributor + are reinstated (a) provisionally, unless and until such Contributor + explicitly and finally terminates Your grants, and (b) on an ongoing basis, + if such Contributor fails to notify You of the non-compliance by some + reasonable means prior to 60 days after You have come back into compliance. + Moreover, Your grants from a particular Contributor are reinstated on an + ongoing basis if such Contributor notifies You of the non-compliance by + some reasonable means, this is the first time You have received notice of + non-compliance with this License from such Contributor, and You become + compliant prior to 30 days after Your receipt of the notice. + +5.2. If You initiate litigation against any entity by asserting a patent + infringement claim (excluding declaratory judgment actions, counter-claims, + and cross-claims) alleging that a Contributor Version directly or + indirectly infringes any patent, then the rights granted to You by any and + all Contributors for the Covered Software under Section 2.1 of this License + shall terminate. + +5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user + license agreements (excluding distributors and resellers) which have been + validly granted by You or Your distributors under this License prior to + termination shall survive termination. + +6. Disclaimer of Warranty + + Covered Software is provided under this License on an “as is” basis, without + warranty of any kind, either expressed, implied, or statutory, including, + without limitation, warranties that the Covered Software is free of defects, + merchantable, fit for a particular purpose or non-infringing. The entire + risk as to the quality and performance of the Covered Software is with You. + Should any Covered Software prove defective in any respect, You (not any + Contributor) assume the cost of any necessary servicing, repair, or + correction. This disclaimer of warranty constitutes an essential part of this + License. No use of any Covered Software is authorized under this License + except under this disclaimer. + +7. Limitation of Liability + + Under no circumstances and under no legal theory, whether tort (including + negligence), contract, or otherwise, shall any Contributor, or anyone who + distributes Covered Software as permitted above, be liable to You for any + direct, indirect, special, incidental, or consequential damages of any + character including, without limitation, damages for lost profits, loss of + goodwill, work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses, even if such party shall have been + informed of the possibility of such damages. This limitation of liability + shall not apply to liability for death or personal injury resulting from such + party’s negligence to the extent applicable law prohibits such limitation. + Some jurisdictions do not allow the exclusion or limitation of incidental or + consequential damages, so this exclusion and limitation may not apply to You. + +8. Litigation + + Any litigation relating to this License may be brought only in the courts of + a jurisdiction where the defendant maintains its principal place of business + and such litigation shall be governed by laws of that jurisdiction, without + reference to its conflict-of-law provisions. Nothing in this Section shall + prevent a party’s ability to bring cross-claims or counter-claims. + +9. Miscellaneous + + This License represents the complete agreement concerning the subject matter + hereof. If any provision of this License is held to be unenforceable, such + provision shall be reformed only to the extent necessary to make it + enforceable. Any law or regulation which provides that the language of a + contract shall be construed against the drafter shall not be used to construe + this License against a Contributor. + + +10. Versions of the License + +10.1. New Versions + + Mozilla Foundation is the license steward. Except as provided in Section + 10.3, no one other than the license steward has the right to modify or + publish new versions of this License. Each version will be given a + distinguishing version number. + +10.2. Effect of New Versions + + You may distribute the Covered Software under the terms of the version of + the License under which You originally received the Covered Software, or + under the terms of any subsequent version published by the license + steward. + +10.3. Modified Versions + + If you create software not governed by this License, and you want to + create a new license for such software, you may create and use a modified + version of this License if you rename the license and remove any + references to the name of the license steward (except to note that such + modified license differs from this License). + +10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses + If You choose to distribute Source Code Form that is Incompatible With + Secondary Licenses under the terms of this version of the License, the + notice described in Exhibit B of this License must be attached. + +Exhibit A - Source Code Form License Notice + + This Source Code Form is subject to the + terms of the Mozilla Public License, v. + 2.0. If a copy of the MPL was not + distributed with this file, You can + obtain one at + http://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular file, then +You may include the notice in a location (such as a LICENSE file in a relevant +directory) where a recipient would be likely to look for such a notice. + +You may add additional accurate notices of copyright ownership. + +Exhibit B - “Incompatible With Secondary Licenses” Notice + + This Source Code Form is “Incompatible + With Secondary Licenses”, as defined by + the Mozilla Public License, v. 2.0. + +dunder-proto +1.0.1 +MIT +Jordan Harband + +MIT License + +Copyright (c) 2024 ECMAScript Shims + +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. + +eastasianwidth +0.2.0 +MIT +Masaki Komagata + +LICENSE TEXT NOT FOUND + +ecc-jsbn +0.1.2 +MIT +Jeremie Miller + +The MIT License (MIT) + +Copyright (c) 2014 Jeremie Miller + +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. + +emoji-regex +8.0.0 +MIT +Mathias Bynens + +Copyright Mathias Bynens + +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. + +emoji-regex +9.2.2 +MIT +Mathias Bynens + +Copyright Mathias Bynens + +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. + +end-of-stream +1.4.5 +MIT +Mathias Buus + +The MIT License (MIT) + +Copyright (c) 2014 Mathias Buus + +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. + +enquirer +2.4.1 +MIT +Jon Schlinkert (https://github.com/jonschlinkert) + +The MIT License (MIT) + +Copyright (c) 2016-present, Jon Schlinkert. + +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. + +entities +4.5.0 +BSD-2-Clause +Felix Boehm + +Copyright (c) Felix Böhm +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. + +THIS 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, +EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +env-paths +2.2.1 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +error-ex +1.3.2 +MIT + + +The MIT License (MIT) + +Copyright (c) 2015 JD Ballard + +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. + +es-define-property +1.0.1 +MIT +Jordan Harband + +MIT License + +Copyright (c) 2024 Jordan Harband + +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. + +es-errors +1.3.0 +MIT +Jordan Harband + +MIT License + +Copyright (c) 2024 Jordan Harband + +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. + +es-object-atoms +1.1.1 +MIT +Jordan Harband + +MIT License + +Copyright (c) 2024 Jordan Harband + +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. + +es-set-tostringtag +2.1.0 +MIT +Jordan Harband + +MIT License + +Copyright (c) 2022 ECMAScript Shims + +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. + +esbuild +0.25.8 +MIT + + +MIT License + +Copyright (c) 2020 Evan Wallace + +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. + +escalade +3.2.0 +MIT +Luke Edwards + +MIT License + +Copyright (c) Luke Edwards (lukeed.com) + +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. + +escape-string-regexp +1.0.5 +MIT +Sindre Sorhus + +The MIT License (MIT) + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +escape-string-regexp +4.0.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +escodegen +2.1.0 +BSD-2-Clause + + +Copyright (C) 2012 Yusuke Suzuki (twitter: @Constellation) and other contributors. + +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. + +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 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. + +esprima +4.0.1 +BSD-2-Clause +Ariya Hidayat + +Copyright JS Foundation and other contributors, https://js.foundation/ + +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. + +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 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. + +estraverse +5.3.0 +BSD-2-Clause + + +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. + +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 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. + +esutils +2.0.3 +BSD-2-Clause + + +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. + +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 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. + +eventemitter2 +6.4.7 +MIT +hij1nx http://twitter.com/hij1nx + +The MIT License (MIT) + +Copyright (c) 2016 Paolo Fragomeni and 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. + +eventemitter3 +4.0.7 +MIT +Arnout Kazemier + +The MIT License (MIT) + +Copyright (c) 2014 Arnout Kazemier + +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. + +execa +4.1.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +executable +4.1.1 +MIT +Kevin Mårtensson + +The MIT License (MIT) + +Copyright (c) Kevin Mårtensson + +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. + +exsolve +1.0.7 +MIT + + +MIT License + +Copyright (c) Pooya Parsa + +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 is a derivative work based on: +. + +--- + +This is a derivative work based on: +. + +Which is licensed: + +""" +(The MIT License) + +Copyright (c) 2021 Titus Wormer + +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 is a derivative work based on: +. + +Which is licensed: + +""" +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. +""" + +extend +3.0.2 +MIT +Stefan Thomas (http://www.justmoon.net) + +The MIT License (MIT) + +Copyright (c) 2014 Stefan Thomas + +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. + +extract-zip +2.0.1 +BSD-2-Clause +max ogden + +Copyright (c) 2014 Max Ogden and other 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. + +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. + +extsprintf +1.3.0 +MIT + + +Copyright (c) 2012, Joyent, Inc. 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 + +fast-deep-equal +3.1.3 +MIT +Evgeny Poberezkin + +MIT License + +Copyright (c) 2017 Evgeny Poberezkin + +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. + +fast-equals +5.2.2 +MIT +tony_quetano@planttheidea.com + +MIT License + +Copyright (c) 2017 Tony Quetano + +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. + +fast-fifo +1.3.2 +MIT +Mathias Buus (@mafintosh) + +The MIT License (MIT) + +Copyright (c) 2019 Mathias Buus + +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. + +fast-glob +3.3.3 +MIT +Denis Malinochkin + +The MIT License (MIT) + +Copyright (c) Denis Malinochkin + +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. + +fastq +1.19.1 +ISC +Matteo Collina + +Copyright (c) 2015-2020, Matteo Collina + +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. + +fd-slicer +1.1.0 +MIT +Andrew Kelley + +Copyright (c) 2014 Andrew Kelley + +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. + +figures +3.2.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +fill-range +7.1.1 +MIT +Jon Schlinkert (https://github.com/jonschlinkert) + +The MIT License (MIT) + +Copyright (c) 2014-present, Jon Schlinkert. + +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. + +foreground-child +3.3.1 +ISC +Isaac Z. Schlueter (http://blog.izs.me/) + +The ISC License + +Copyright (c) 2015-2023 Isaac Z. Schlueter and 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. + +forever-agent +0.6.1 +Apache-2.0 +Mikeal Rogers (http://www.futurealoof.com) + +Apache License + +Version 2.0, January 2004 + +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + +You must give any other recipients of the Work or Derivative Works a copy of this License; and + +You must cause any modified files to carry prominent notices stating that You changed the files; and + +You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and + +If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +form-data +4.0.4 +MIT +Felix Geisendörfer (http://debuggable.com/) + +Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and 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. + +fs-extra +9.1.0 +MIT +JP Richardson + +(The MIT License) + +Copyright (c) 2011-2017 JP Richardson + +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. + +function-bind +1.1.2 +MIT +Raynos + +Copyright (c) 2013 Raynos. + +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. + +get-caller-file +2.0.5 +ISC +Stefan Penner + +ISC License (ISC) +Copyright 2018 Stefan Penner + +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. + +get-intrinsic +1.3.0 +MIT +Jordan Harband + +MIT License + +Copyright (c) 2020 Jordan Harband + +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. + +get-nonce +1.0.1 +MIT +Anton Korzunov + +MIT License + +Copyright (c) 2020 Anton Korzunov + +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. + +get-proto +1.0.1 +MIT +Jordan Harband + +MIT License + +Copyright (c) 2025 Jordan Harband + +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. + +get-stream +5.2.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +get-uri +6.0.5 +MIT +Nathan Rajlich (http://n8.io/) + +(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. + +getos +3.2.1 +MIT +william.jblankenship@gmail.com + +The MIT License (MIT) + +Copyright (c) 2016 William Blankenship + +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. + +getpass +0.1.7 +MIT +Alex Wilson + +Copyright Joyent, Inc. 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. + +glob +10.4.5 +ISC +Isaac Z. Schlueter (https://blog.izs.me/) + +The ISC License + +Copyright (c) 2009-2023 Isaac Z. Schlueter and 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. + +glob-parent +5.1.2 +ISC +Gulp Team (https://gulpjs.com/) + +The ISC License + +Copyright (c) 2015, 2019 Elan Shanker + +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. + +glob-parent +6.0.2 +ISC +Gulp Team (https://gulpjs.com/) + +The ISC License + +Copyright (c) 2015, 2019 Elan Shanker, 2021 Blaine Bublitz , Eric Schoffstall and other 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. + +global-dirs +3.0.1 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +globals +15.15.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +gopd +1.2.0 +MIT +Jordan Harband + +MIT License + +Copyright (c) 2022 Jordan Harband + +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. + +graceful-fs +4.2.11 +ISC + + +The ISC License + +Copyright (c) 2011-2022 Isaac Z. Schlueter, Ben Noordhuis, and 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. + +hachure-fill +0.5.2 +MIT +Preet Shihn + +MIT License + +Copyright (c) 2023 Preet Shihn + +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. + +has-flag +4.0.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +has-symbols +1.1.0 +MIT +Jordan Harband + +MIT License + +Copyright (c) 2016 Jordan Harband + +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. + +has-tostringtag +1.0.2 +MIT +Jordan Harband + +MIT License + +Copyright (c) 2021 Inspect JS + +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. + +hasha +5.2.2 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +hasown +2.0.2 +MIT +Jordan Harband + +MIT License + +Copyright (c) Jordan Harband and 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. + +html2canvas +1.4.1 +MIT +Niklas von Hertzen + +Copyright (c) 2012 Niklas von Hertzen + +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. + +http-proxy-agent +7.0.2 +MIT +Nathan Rajlich (http://n8.io/) + +(The MIT License) + +Copyright (c) 2013 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. + +http-signature +1.4.0 +MIT +MNX Cloud (mnx.io) + +Copyright Joyent, Inc. 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. + +https-proxy-agent +7.0.6 +MIT +Nathan Rajlich (http://n8.io/) + +(The MIT License) + +Copyright (c) 2013 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. + +human-signals +1.1.1 +Apache-2.0 +ehmicky (https://github.com/ehmicky) + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2019 ehmicky + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +iconv-lite +0.6.3 +MIT +Alexander Shtuchkin + +Copyright (c) 2011 Alexander Shtuchkin + +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. + +ieee754 +1.2.1 +BSD-3-Clause +Feross Aboukhadijeh + +Copyright 2008 Fair Oaks Labs, Inc. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + +2. 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. + +3. Neither the name of the copyright holder 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 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. + +immer +10.1.1 +MIT +Michel Weststrate + +MIT License + +Copyright (c) 2017 Michel Weststrate + +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. + +import-fresh +3.3.1 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +indent-string +4.0.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +ini +2.0.0 +ISC +Isaac Z. Schlueter (http://blog.izs.me/) + +The ISC License + +Copyright (c) Isaac Z. Schlueter and 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. + +internmap +1.0.1 +ISC +Mike Bostock + +Copyright 2021 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 +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 +2.0.3 +ISC +Mike Bostock + +Copyright 2021 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 +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. + +ip-address +9.0.5 +MIT +Beau Gunderson (https://beaugunderson.com/) + +Copyright (C) 2011 by Beau Gunderson + +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. + +is-arrayish +0.2.1 +MIT +Qix (http://github.com/qix-) + +The MIT License (MIT) + +Copyright (c) 2015 JD Ballard + +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. + +is-arrayish +0.3.2 +MIT +Qix (http://github.com/qix-) + +The MIT License (MIT) + +Copyright (c) 2015 JD Ballard + +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. + +is-binary-path +2.1.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) 2019 Sindre Sorhus (https://sindresorhus.com), Paul Miller (https://paulmillr.com) + +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. + +is-core-module +2.16.1 +MIT +Jordan Harband + +The MIT License (MIT) + +Copyright (c) 2014 Dave Justice + +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. + +is-extglob +2.1.1 +MIT +Jon Schlinkert (https://github.com/jonschlinkert) + +The MIT License (MIT) + +Copyright (c) 2014-2016, Jon Schlinkert + +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. + +is-fullwidth-code-point +3.0.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +is-glob +4.0.3 +MIT +Jon Schlinkert (https://github.com/jonschlinkert) + +The MIT License (MIT) + +Copyright (c) 2014-2017, Jon Schlinkert. + +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. + +is-installed-globally +0.4.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +is-number +7.0.0 +MIT +Jon Schlinkert (https://github.com/jonschlinkert) + +The MIT License (MIT) + +Copyright (c) 2014-present, Jon Schlinkert. + +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. + +is-path-inside +3.0.3 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +is-stream +2.0.1 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +is-typedarray +1.0.0 +MIT +Hugh Kennedy (http://hughsk.io/) + +This software is released under the 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. + +is-unicode-supported +0.1.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +isexe +2.0.0 +ISC +Isaac Z. Schlueter (http://blog.izs.me/) + +The ISC License + +Copyright (c) Isaac Z. Schlueter and 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. + +isstream +0.1.2 +MIT +Rod Vagg + +The MIT License (MIT) +===================== + +Copyright (c) 2015 Rod Vagg +--------------------------- + +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. + +jackspeak +3.4.3 +BlueOak-1.0.0 +Isaac Z. Schlueter + +# Blue Oak Model License + +Version 1.0.0 + +## Purpose + +This license gives everyone as much permission to work with +this software as possible, while protecting contributors +from liability. + +## Acceptance + +In order to receive this license, you must agree to its +rules. The rules of this license are both obligations +under that agreement and conditions to your license. +You must not do anything with this software that triggers +a rule that you cannot or will not follow. + +## Copyright + +Each contributor licenses you to do everything with this +software that would otherwise infringe that contributor's +copyright in it. + +## Notices + +You must ensure that everyone who gets a copy of +any part of this software from you, with or without +changes, also gets the text of this license or a link to +. + +## Excuse + +If anyone notifies you in writing that you have not +complied with [Notices](#notices), you can keep your +license by taking all practical steps to comply within 30 +days after the notice. If you do not do so, your license +ends immediately. + +## Patent + +Each contributor licenses you to do everything with this +software that would otherwise infringe any patent claims +they can license or become able to license. + +## Reliability + +No contributor can revoke this license. + +## No Liability + +**_As far as the law allows, this software comes as is, +without any warranty or condition, and no contributor +will be liable to anyone for any damages related to this +software or this license, under any kind of legal claim._** + +jiti +1.21.7 +MIT + + +MIT License + +Copyright (c) Pooya Parsa + +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. + +js-tokens +4.0.0 +MIT +Simon Lydell + +The MIT License (MIT) + +Copyright (c) 2014, 2015, 2016, 2017, 2018 Simon Lydell + +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. + +js-yaml +4.1.0 +MIT +Vladimir Zapparov + +(The MIT License) + +Copyright (C) 2011-2015 by Vitaly Puzrin + +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. + +jsbn +0.1.1 +MIT +Tom Wu + +Licensing +--------- + +This software is covered under the following copyright: + +/* + * Copyright (c) 2003-2005 Tom Wu + * 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" AND WITHOUT WARRANTY OF ANY KIND, + * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY + * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. + * + * IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL, + * INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER + * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF + * THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT + * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * + * In addition, the following condition applies: + * + * All redistributions must retain an intact copy of this copyright notice + * and disclaimer. + */ + +Address all questions regarding this license to: + + Tom Wu + tjw@cs.Stanford.EDU + +jsbn +1.1.0 +MIT +Tom Wu + +Licensing +--------- + +This software is covered under the following copyright: + +/* + * Copyright (c) 2003-2005 Tom Wu + * 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" AND WITHOUT WARRANTY OF ANY KIND, + * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY + * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. + * + * IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL, + * INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER + * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF + * THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT + * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * + * In addition, the following condition applies: + * + * All redistributions must retain an intact copy of this copyright notice + * and disclaimer. + */ + +Address all questions regarding this license to: + + Tom Wu + tjw@cs.Stanford.EDU + +json-parse-even-better-errors +2.3.1 +MIT +Kat Marchán + +Copyright 2017 Kat Marchán +Copyright npm, 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 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 library is a fork of 'better-json-errors' by Kat Marchán, extended and +distributed under the terms of the MIT license above. + +json-schema +0.4.0 +(AFL-2.1 OR BSD-3-Clause) +Kris Zyp + +Dojo is available under *either* the terms of the BSD 3-Clause "New" License *or* the +Academic Free License version 2.1. As a recipient of Dojo, you may choose which +license to receive this code under (except as noted in per-module LICENSE +files). Some modules may not be the copyright of the Dojo Foundation. These +modules contain explicit declarations of copyright in both the LICENSE files in +the directories in which they reside and in the code itself. No external +contributions are allowed under licenses which are fundamentally incompatible +with the AFL-2.1 OR and BSD-3-Clause licenses that Dojo is distributed under. + +The text of the AFL-2.1 and BSD-3-Clause licenses is reproduced below. + +------------------------------------------------------------------------------- +BSD 3-Clause "New" License: +********************** + +Copyright (c) 2005-2015, The Dojo Foundation +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 Dojo Foundation 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. + +------------------------------------------------------------------------------- +The Academic Free License, v. 2.1: +********************************** + +This Academic Free License (the "License") applies to any original work of +authorship (the "Original Work") whose owner (the "Licensor") has placed the +following notice immediately following the copyright notice for the Original +Work: + +Licensed under the Academic Free License version 2.1 + +1) Grant of Copyright License. Licensor hereby grants You a world-wide, +royalty-free, non-exclusive, perpetual, sublicenseable license to do the +following: + +a) to reproduce the Original Work in copies; + +b) to prepare derivative works ("Derivative Works") based upon the Original +Work; + +c) to distribute copies of the Original Work and Derivative Works to the +public; + +d) to perform the Original Work publicly; and + +e) to display the Original Work publicly. + +2) Grant of Patent License. Licensor hereby grants You a world-wide, +royalty-free, non-exclusive, perpetual, sublicenseable license, under patent +claims owned or controlled by the Licensor that are embodied in the Original +Work as furnished by the Licensor, to make, use, sell and offer for sale the +Original Work and Derivative Works. + +3) Grant of Source Code License. The term "Source Code" means the preferred +form of the Original Work for making modifications to it and all available +documentation describing how to modify the Original Work. Licensor hereby +agrees to provide a machine-readable copy of the Source Code of the Original +Work along with each copy of the Original Work that Licensor distributes. +Licensor reserves the right to satisfy this obligation by placing a +machine-readable copy of the Source Code in an information repository +reasonably calculated to permit inexpensive and convenient access by You for as +long as Licensor continues to distribute the Original Work, and by publishing +the address of that information repository in a notice immediately following +the copyright notice that applies to the Original Work. + +4) Exclusions From License Grant. Neither the names of Licensor, nor the names +of any contributors to the Original Work, nor any of their trademarks or +service marks, may be used to endorse or promote products derived from this +Original Work without express prior written permission of the Licensor. Nothing +in this License shall be deemed to grant any rights to trademarks, copyrights, +patents, trade secrets or any other intellectual property of Licensor except as +expressly stated herein. No patent license is granted to make, use, sell or +offer to sell embodiments of any patent claims other than the licensed claims +defined in Section 2. No right is granted to the trademarks of Licensor even if +such marks are included in the Original Work. Nothing in this License shall be +interpreted to prohibit Licensor from licensing under different terms from this +License any Original Work that Licensor otherwise would have a right to +license. + +5) This section intentionally omitted. + +6) Attribution Rights. You must retain, in the Source Code of any Derivative +Works that You create, all copyright, patent or trademark notices from the +Source Code of the Original Work, as well as any notices of licensing and any +descriptive text identified therein as an "Attribution Notice." You must cause +the Source Code for any Derivative Works that You create to carry a prominent +Attribution Notice reasonably calculated to inform recipients that You have +modified the Original Work. + +7) Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that +the copyright in and to the Original Work and the patent rights granted herein +by Licensor are owned by the Licensor or are sublicensed to You under the terms +of this License with the permission of the contributor(s) of those copyrights +and patent rights. Except as expressly stated in the immediately proceeding +sentence, the Original Work is provided under this License on an "AS IS" BASIS +and WITHOUT WARRANTY, either express or implied, including, without limitation, +the warranties of NON-INFRINGEMENT, MERCHANTABILITY or FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. +This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No +license to Original Work is granted hereunder except under this disclaimer. + +8) Limitation of Liability. Under no circumstances and under no legal theory, +whether in tort (including negligence), contract, or otherwise, shall the +Licensor be liable to any person for any direct, indirect, special, incidental, +or consequential damages of any character arising as a result of this License +or the use of the Original Work including, without limitation, damages for loss +of goodwill, work stoppage, computer failure or malfunction, or any and all +other commercial damages or losses. This limitation of liability shall not +apply to liability for death or personal injury resulting from Licensor's +negligence to the extent applicable law prohibits such limitation. Some +jurisdictions do not allow the exclusion or limitation of incidental or +consequential damages, so this exclusion and limitation may not apply to You. + +9) Acceptance and Termination. If You distribute copies of the Original Work or +a Derivative Work, You must make a reasonable effort under the circumstances to +obtain the express assent of recipients to the terms of this License. Nothing +else but this License (or another written agreement between Licensor and You) +grants You permission to create Derivative Works based upon the Original Work +or to exercise any of the rights granted in Section 1 herein, and any attempt +to do so except under the terms of this License (or another written agreement +between Licensor and You) is expressly prohibited by U.S. copyright law, the +equivalent laws of other countries, and by international treaty. Therefore, by +exercising any of the rights granted to You in Section 1 herein, You indicate +Your acceptance of this License and all of its terms and conditions. + +10) Termination for Patent Action. This License shall terminate automatically +and You may no longer exercise any of the rights granted to You by this License +as of the date You commence an action, including a cross-claim or counterclaim, +against Licensor or any licensee alleging that the Original Work infringes a +patent. This termination provision shall not apply for an action alleging +patent infringement by combinations of the Original Work with other software or +hardware. + +11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this +License may be brought only in the courts of a jurisdiction wherein the +Licensor resides or in which Licensor conducts its primary business, and under +the laws of that jurisdiction excluding its conflict-of-law provisions. The +application of the United Nations Convention on Contracts for the International +Sale of Goods is expressly excluded. Any use of the Original Work outside the +scope of this License or after its termination shall be subject to the +requirements and penalties of the U.S. Copyright Act, 17 U.S.C. § 101 et +seq., the equivalent laws of other countries, and international treaty. This +section shall survive the termination of this License. + +12) Attorneys Fees. In any action to enforce the terms of this License or +seeking damages relating thereto, the prevailing party shall be entitled to +recover its costs and expenses, including, without limitation, reasonable +attorneys' fees and costs incurred in connection with such action, including +any appeal of such action. This section shall survive the termination of this +License. + +13) Miscellaneous. This License represents the complete agreement concerning +the subject matter hereof. If any provision of this License is held to be +unenforceable, such provision shall be reformed only to the extent necessary to +make it enforceable. + +14) Definition of "You" in This License. "You" throughout this License, whether +in upper or lower case, means an individual or a legal entity exercising rights +under, and complying with all of the terms of, this License. For legal +entities, "You" includes any entity that controls, is controlled by, or is +under common control with you. For purposes of this definition, "control" means +(i) the power, direct or indirect, to cause the direction or management of such +entity, whether by contract or otherwise, or (ii) ownership of fifty percent +(50%) or more of the outstanding shares, or (iii) beneficial ownership of such +entity. + +15) Right to Use. You may use the Original Work in all ways not otherwise +restricted or conditioned by this License or by law, and Licensor promises not +to interfere with or be responsible for such uses by You. + +This license is Copyright (C) 2003-2004 Lawrence E. Rosen. All rights reserved. +Permission is hereby granted to copy and distribute this license without +modification. This license may not be modified without the express written +permission of its copyright owner. + +json-stringify-safe +5.0.1 +ISC +Isaac Z. Schlueter (http://blog.izs.me) + +The ISC License + +Copyright (c) Isaac Z. Schlueter and 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. + +jsonfile +6.1.0 +MIT +JP Richardson + +(The MIT License) + +Copyright (c) 2012-2015, JP Richardson + +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. + +jsonrepair +3.13.0 +ISC +Jos de Jong + +The ISC License + +Copyright (c) 2020-2025 by Jos de Jong + +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 ISC DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC 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. + +jsprim +2.0.2 +MIT + + +Copyright (c) 2012, Joyent, Inc. 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 + +katex +0.16.22 +MIT + + +The MIT License (MIT) + +Copyright (c) 2013-2020 Khan Academy and other 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. + +khroma +2.1.0 + + + +The MIT License (MIT) + +Copyright (c) 2019-present Fabio Spampinato, Andrew Maney + +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. + +kolorist +1.8.0 +MIT +Marvin Hagemeister + +The MIT License (MIT) + +Copyright (c) 2020-present Marvin Hagemeister + +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. + +langium +3.3.1 +MIT +TypeFox + +Copyright 2021 TypeFox GmbH + +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. + +layout-base +1.0.2 +MIT + + +MIT License + +Copyright (c) 2019 iVis@Bilkent + +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. + +layout-base +2.0.1 +MIT + + +MIT License + +Copyright (c) 2019 iVis@Bilkent + +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. + +lazy-ass +1.6.0 +MIT +Gleb Bahmutov + +Copyright (c) 2014 Gleb Bahmutov + +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. + +lilconfig +3.1.3 +MIT +antonk52 + +MIT License + +Copyright (c) 2022 Anton Kastritskiy + +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. + +lines-and-columns +1.2.4 +MIT +Brian Donovan + +The MIT License (MIT) + +Copyright (c) 2015 Brian Donovan + +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. + +linkify-it +5.0.0 +MIT + + +Copyright (c) 2015 Vitaly Puzrin. + +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. + +listr2 +3.14.0 +MIT +Cenk Kilic + +The MIT License (MIT) + +Copyright (c) Cenk Kilic (https://srcs.kilic.dev), Sam Verschueren (github.com/SamVerschueren) + +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. + +local-pkg +1.1.1 +MIT +Anthony Fu + +MIT License + +Copyright (c) 2021 Anthony Fu + +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. + +lodash +4.17.21 +MIT +John-David Dalton + +Copyright OpenJS Foundation and other contributors + +Based on Underscore.js, copyright Jeremy Ashkenas, +DocumentCloud and Investigative Reporters & Editors + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/lodash/lodash + +The following license applies to all parts of this software except as +documented below: + +==== + +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 and related rights for sample code are waived via CC0. Sample +code is defined as all source code displayed within the prose of the +documentation. + +CC0: http://creativecommons.org/publicdomain/zero/1.0/ + +==== + +Files located in the node_modules and vendor directories are externally +maintained libraries used by this software which have their own +licenses; we recommend you read them, as their terms may differ from the +terms above. + +lodash-es +4.17.21 +MIT +John-David Dalton + +Copyright OpenJS Foundation and other contributors + +Based on Underscore.js, copyright Jeremy Ashkenas, +DocumentCloud and Investigative Reporters & Editors + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/lodash/lodash + +The following license applies to all parts of this software except as +documented below: + +==== + +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 and related rights for sample code are waived via CC0. Sample +code is defined as all source code displayed within the prose of the +documentation. + +CC0: http://creativecommons.org/publicdomain/zero/1.0/ + +==== + +Files located in the node_modules and vendor directories are externally +maintained libraries used by this software which have their own +licenses; we recommend you read them, as their terms may differ from the +terms above. + +lodash.castarray +4.4.0 +MIT +John-David Dalton (http://allyoucanleet.com/) + +The MIT License (MIT) + +Copyright 2012-2016 The Dojo Foundation +Based on Underscore.js, copyright 2009-2016 Jeremy Ashkenas, +DocumentCloud and Investigative Reporters & Editors + +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. + +lodash.isplainobject +4.0.6 +MIT +John-David Dalton (http://allyoucanleet.com/) + +Copyright jQuery Foundation and other contributors + +Based on Underscore.js, copyright Jeremy Ashkenas, +DocumentCloud and Investigative Reporters & Editors + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/lodash/lodash + +The following license applies to all parts of this software except as +documented below: + +==== + +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 and related rights for sample code are waived via CC0. Sample +code is defined as all source code displayed within the prose of the +documentation. + +CC0: http://creativecommons.org/publicdomain/zero/1.0/ + +==== + +Files located in the node_modules and vendor directories are externally +maintained libraries used by this software which have their own +licenses; we recommend you read them, as their terms may differ from the +terms above. + +lodash.merge +4.6.2 +MIT +John-David Dalton + +Copyright OpenJS Foundation and other contributors + +Based on Underscore.js, copyright Jeremy Ashkenas, +DocumentCloud and Investigative Reporters & Editors + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/lodash/lodash + +The following license applies to all parts of this software except as +documented below: + +==== + +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 and related rights for sample code are waived via CC0. Sample +code is defined as all source code displayed within the prose of the +documentation. + +CC0: http://creativecommons.org/publicdomain/zero/1.0/ + +==== + +Files located in the node_modules and vendor directories are externally +maintained libraries used by this software which have their own +licenses; we recommend you read them, as their terms may differ from the +terms above. + +lodash.once +4.1.1 +MIT +John-David Dalton (http://allyoucanleet.com/) + +Copyright jQuery Foundation and other contributors + +Based on Underscore.js, copyright Jeremy Ashkenas, +DocumentCloud and Investigative Reporters & Editors + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/lodash/lodash + +The following license applies to all parts of this software except as +documented below: + +==== + +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 and related rights for sample code are waived via CC0. Sample +code is defined as all source code displayed within the prose of the +documentation. + +CC0: http://creativecommons.org/publicdomain/zero/1.0/ + +==== + +Files located in the node_modules and vendor directories are externally +maintained libraries used by this software which have their own +licenses; we recommend you read them, as their terms may differ from the +terms above. + +log-symbols +4.1.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +log-update +4.0.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +loose-envify +1.4.0 +MIT +Andres Suarez + +The MIT License (MIT) + +Copyright (c) 2015 Andres Suarez + +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. + +lru-cache +10.4.3 +ISC +Isaac Z. Schlueter + +The ISC License + +Copyright (c) 2010-2023 Isaac Z. Schlueter and 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. + +lru-cache +7.18.3 +ISC +Isaac Z. Schlueter + +The ISC License + +Copyright (c) 2010-2023 Isaac Z. Schlueter and 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. + +lucide-react +0.447.0 +ISC +Eric Fennis + +ISC License + +Copyright (c) for portions of Lucide are held by Cole Bemis 2013-2022 as part of Feather (MIT). All other copyright (c) for Lucide are held by Lucide Contributors 2022. + +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. + +markdown-it +14.1.0 +MIT + + +Copyright (c) 2014 Vitaly Puzrin, Alex Kocharin. + +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. + +markdown-it-task-lists +2.1.1 +ISC +Revin Guillen + +Copyright (c) 2016, Revin Guillen + +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. + +marked +15.0.12 +MIT +Christopher Jeffrey + +# License information + +## Contribution License Agreement + +If you contribute code to this project, you are implicitly allowing your code +to be distributed under the MIT license. You are also implicitly verifying that +all code is your original work. `` + +## Marked + +Copyright (c) 2018+, MarkedJS (https://github.com/markedjs/) +Copyright (c) 2011-2018, Christopher Jeffrey (https://github.com/chjj/) + +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. + +## Markdown + +Copyright © 2004, John Gruber +http://daringfireball.net/ +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 “Markdown” 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. + +marked +16.1.2 +MIT +Christopher Jeffrey + +# License information + +## Contribution License Agreement + +If you contribute code to this project, you are implicitly allowing your code +to be distributed under the MIT license. You are also implicitly verifying that +all code is your original work. `` + +## Marked + +Copyright (c) 2018+, MarkedJS (https://github.com/markedjs/) +Copyright (c) 2011-2018, Christopher Jeffrey (https://github.com/chjj/) + +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. + +## Markdown + +Copyright © 2004, John Gruber +http://daringfireball.net/ +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 “Markdown” 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. + +math-intrinsics +1.1.0 +MIT +Jordan Harband + +MIT License + +Copyright (c) 2024 ECMAScript Shims + +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. + +mdurl +2.0.0 +MIT + + +Copyright (c) 2015 Vitaly Puzrin, Alex Kocharin. + +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() is based on Joyent's node.js `url` code: + +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. + +merge-stream +2.0.0 +MIT +Stephen Sugden + +The MIT License (MIT) + +Copyright (c) Stephen Sugden (stephensugden.com) + +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. + +merge2 +1.4.1 +MIT + + +The MIT License (MIT) + +Copyright (c) 2014-2020 Teambition + +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. + +mermaid +11.9.0 +MIT +Knut Sveidqvist + +The MIT License (MIT) + +Copyright (c) 2014 - 2022 Knut Sveidqvist + +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. + +micromatch +4.0.8 +MIT +Jon Schlinkert (https://github.com/jonschlinkert) + +The MIT License (MIT) + +Copyright (c) 2014-present, Jon Schlinkert. + +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. + +mime-db +1.52.0 +MIT + + +(The MIT License) + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2015-2022 Douglas Christopher Wilson + +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. + +mime-types +2.1.35 +MIT + + +(The MIT License) + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2015 Douglas Christopher Wilson + +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. + +mimic-fn +2.1.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +minimatch +9.0.5 +ISC +Isaac Z. Schlueter (http://blog.izs.me) + +The ISC License + +Copyright (c) 2011-2023 Isaac Z. Schlueter and 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. + +minimist +1.2.8 +MIT +James Halliday + +This software is released under the 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. + +minipass +7.1.2 +ISC +Isaac Z. Schlueter (http://blog.izs.me/) + +The ISC License + +Copyright (c) 2017-2023 npm, Inc., Isaac Z. Schlueter, and 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. + +mitt +3.0.1 +MIT + + +MIT License + +Copyright (c) 2021 Jason Miller + +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. + +mixpanel-browser +2.67.0 +Apache-2.0 + + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2015 Mixpanel, Inc. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +mlly +1.7.4 +MIT + + +MIT License + +Copyright (c) Pooya Parsa + +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. + +ms +2.1.3 +MIT + + +The MIT License (MIT) + +Copyright (c) 2020 Vercel, 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 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. + +mz +2.7.0 +MIT +Jonathan Ong + +The MIT License (MIT) + +Copyright (c) 2014-2016 Jonathan Ong me@jongleberry.com and 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. + +nanoid +3.3.11 +MIT +Andrey Sitnik + +The MIT License (MIT) + +Copyright 2017 Andrey Sitnik + +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. + +netmask +2.0.2 +MIT +Olivier Poitrey + +LICENSE TEXT NOT FOUND + +next +14.2.31 +MIT + + +The MIT License (MIT) + +Copyright (c) 2024 Vercel, 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 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. + +next-themes +0.4.6 +MIT + + +MIT License + +Copyright (c) 2022 Paco Coursey + +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. + +normalize-path +3.0.0 +MIT +Jon Schlinkert (https://github.com/jonschlinkert) + +The MIT License (MIT) + +Copyright (c) 2014-2018, Jon Schlinkert. + +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. + +npm-run-path +4.0.1 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +object-assign +4.1.1 +MIT +Sindre Sorhus + +The MIT License (MIT) + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +object-hash +3.0.0 +MIT +Scott Puleo + +The MIT License (MIT) + +Copyright (c) 2014 object-hash 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. + +object-inspect +1.13.4 +MIT +James Halliday + +MIT License + +Copyright (c) 2013 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. + +once +1.4.0 +ISC +Isaac Z. Schlueter (http://blog.izs.me/) + +The ISC License + +Copyright (c) Isaac Z. Schlueter and 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. + +onetime +5.1.2 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +orderedmap +2.1.1 +MIT +Marijn Haverbeke + +Copyright (C) 2016 by Marijn Haverbeke and others + +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. + +ospath +1.2.2 +MIT +JP Richardson + +LICENSE TEXT NOT FOUND + +p-map +4.0.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +pac-proxy-agent +7.2.0 +MIT +Nathan Rajlich (http://n8.io/) + +(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. + +pac-resolver +7.0.1 +MIT +Nathan Rajlich (http://n8.io/) + +(The MIT License) + +Copyright (c) 2013 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. + +package-json-from-dist +1.0.1 +BlueOak-1.0.0 +Isaac Z. Schlueter (https://izs.me) + +All packages under `src/` are licensed according to the terms in +their respective `LICENSE` or `LICENSE.md` files. + +The remainder of this project is licensed under the Blue Oak +Model License, as follows: + +----- + +# Blue Oak Model License + +Version 1.0.0 + +## Purpose + +This license gives everyone as much permission to work with +this software as possible, while protecting contributors +from liability. + +## Acceptance + +In order to receive this license, you must agree to its +rules. The rules of this license are both obligations +under that agreement and conditions to your license. +You must not do anything with this software that triggers +a rule that you cannot or will not follow. + +## Copyright + +Each contributor licenses you to do everything with this +software that would otherwise infringe that contributor's +copyright in it. + +## Notices + +You must ensure that everyone who gets a copy of +any part of this software from you, with or without +changes, also gets the text of this license or a link to +. + +## Excuse + +If anyone notifies you in writing that you have not +complied with [Notices](#notices), you can keep your +license by taking all practical steps to comply within 30 +days after the notice. If you do not do so, your license +ends immediately. + +## Patent + +Each contributor licenses you to do everything with this +software that would otherwise infringe any patent claims +they can license or become able to license. + +## Reliability + +No contributor can revoke this license. + +## No Liability + +***As far as the law allows, this software comes as is, +without any warranty or condition, and no contributor +will be liable to anyone for any damages related to this +software or this license, under any kind of legal claim.*** + +package-manager-detector +1.3.0 +MIT +Anthony Fu + +MIT License + +Copyright (c) 2020-PRESENT Anthony Fu + +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. + +parent-module +1.0.1 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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-json +5.2.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +path-data-parser +0.1.0 +MIT +Preet Shihn + +MIT License + +Copyright (c) 2020 Preet Shihn + +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. + +path-key +3.1.1 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +path-parse +1.0.7 +MIT +Javier Blanco + +The MIT License (MIT) + +Copyright (c) 2015 Javier Blanco + +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. + +path-scurry +1.11.1 +BlueOak-1.0.0 +Isaac Z. Schlueter (https://blog.izs.me) + +# Blue Oak Model License + +Version 1.0.0 + +## Purpose + +This license gives everyone as much permission to work with +this software as possible, while protecting contributors +from liability. + +## Acceptance + +In order to receive this license, you must agree to its +rules. The rules of this license are both obligations +under that agreement and conditions to your license. +You must not do anything with this software that triggers +a rule that you cannot or will not follow. + +## Copyright + +Each contributor licenses you to do everything with this +software that would otherwise infringe that contributor's +copyright in it. + +## Notices + +You must ensure that everyone who gets a copy of +any part of this software from you, with or without +changes, also gets the text of this license or a link to +. + +## Excuse + +If anyone notifies you in writing that you have not +complied with [Notices](#notices), you can keep your +license by taking all practical steps to comply within 30 +days after the notice. If you do not do so, your license +ends immediately. + +## Patent + +Each contributor licenses you to do everything with this +software that would otherwise infringe any patent claims +they can license or become able to license. + +## Reliability + +No contributor can revoke this license. + +## No Liability + +***As far as the law allows, this software comes as is, +without any warranty or condition, and no contributor +will be liable to anyone for any damages related to this +software or this license, under any kind of legal claim.*** + +pathe +2.0.3 +MIT + + +MIT License + +Copyright (c) Pooya Parsa - Daniel Roe + +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 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. + +--- + +Bundled zeptomatch (https://github.com/fabiospampinato/zeptomatch) + +The MIT License (MIT) + +Copyright (c) 2023-present Fabio Spampinato + +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. + +pend +1.2.0 +MIT +Andrew Kelley + +The MIT License (Expat) + +Copyright (c) 2014 Andrew Kelley + +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. + +performance-now +2.1.0 +MIT +Braveg1rl + +Copyright (c) 2013 Braveg1rl + +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. + +picocolors +1.1.1 +ISC +Alexey Raspopov + +ISC License + +Copyright (c) 2021-2024 Oleksii Raspopov, Kostiantyn Denysov, Anton Verinov + +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. + +picomatch +2.3.1 +MIT +Jon Schlinkert (https://github.com/jonschlinkert) + +The MIT License (MIT) + +Copyright (c) 2017-present, Jon Schlinkert. + +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. + +pify +2.3.0 +MIT +Sindre Sorhus + +The MIT License (MIT) + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +pirates +4.0.7 +MIT +Ari Porad + +MIT License + +Copyright (c) 2016-2018 Ari Porad + +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. + +pkg-types +1.3.1 +MIT + + +MIT License + +Copyright (c) Pooya Parsa - Daniel Roe + +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 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. + +pkg-types +2.2.0 +MIT + + +MIT License + +Copyright (c) Pooya Parsa - Daniel Roe + +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 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. + +points-on-curve +0.2.0 +MIT +Preet Shihn + +MIT License + +Copyright (c) 2020 Preet Shihn + +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. + +points-on-path +0.2.1 +MIT +Preet Shihn + +MIT License + +Copyright (c) 2020 Preet + +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. + +postcss +8.4.31 +MIT +Andrey Sitnik + +The MIT License (MIT) + +Copyright 2013 Andrey Sitnik + +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. + +postcss +8.5.6 +MIT +Andrey Sitnik + +The MIT License (MIT) + +Copyright 2013 Andrey Sitnik + +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. + +postcss-import +15.1.0 +MIT +Maxime Thirouin + +The MIT License (MIT) + +Copyright (c) 2014 Maxime Thirouin, Jason Campbell & Kevin Mårtensson + +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. + +postcss-js +4.0.1 +MIT +Andrey Sitnik + +The MIT License (MIT) + +Copyright 2015 Andrey Sitnik + +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. + +postcss-load-config +4.0.2 +MIT +Michael Ciniawky + +The MIT License (MIT) + +Copyright Michael Ciniawsky + +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. + +postcss-nested +6.2.0 +MIT +Andrey Sitnik + +The MIT License (MIT) + +Copyright 2014 Andrey Sitnik + +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. + +postcss-selector-parser +6.0.10 +MIT + + +Copyright (c) Ben Briggs (http://beneb.info) + +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. + +postcss-selector-parser +6.1.2 +MIT + + +Copyright (c) Ben Briggs (http://beneb.info) + +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. + +postcss-value-parser +4.2.0 +MIT +Bogdan Chadkin + +Copyright (c) Bogdan Chadkin + +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. + +pretty-bytes +5.6.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +prismjs +1.30.0 +MIT +Lea Verou + +MIT LICENSE + +Copyright (c) 2012 Lea Verou + +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. + +process +0.11.10 +MIT +Roman Shtylman + +(The MIT License) + +Copyright (c) 2013 Roman Shtylman + +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. + +progress +2.0.3 +MIT +TJ Holowaychuk + +(The MIT License) + +Copyright (c) 2017 TJ Holowaychuk + +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. + +prop-types +15.8.1 +MIT + + +MIT License + +Copyright (c) 2013-present, Facebook, 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 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. + +prosemirror-changeset +2.3.1 +MIT + + +Copyright (C) 2017 by Marijn Haverbeke and others + +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. + +prosemirror-collab +1.3.1 +MIT + + +Copyright (C) 2015-2017 by Marijn Haverbeke and others + +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. + +prosemirror-commands +1.7.1 +MIT + + +Copyright (C) 2015-2017 by Marijn Haverbeke and others + +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. + +prosemirror-dropcursor +1.8.2 +MIT + + +Copyright (C) 2015-2017 by Marijn Haverbeke and others + +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. + +prosemirror-gapcursor +1.3.2 +MIT + + +Copyright (C) 2015-2017 by Marijn Haverbeke and others + +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. + +prosemirror-history +1.4.1 +MIT + + +Copyright (C) 2015-2017 by Marijn Haverbeke and others + +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. + +prosemirror-inputrules +1.5.0 +MIT + + +Copyright (C) 2015-2017 by Marijn Haverbeke and others + +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. + +prosemirror-keymap +1.2.3 +MIT + + +Copyright (C) 2015-2017 by Marijn Haverbeke and others + +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. + +prosemirror-markdown +1.13.2 +MIT + + +Copyright (C) 2015-2017 by Marijn Haverbeke and others + +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. + +prosemirror-menu +1.2.5 +MIT + + +Copyright (C) 2015-2017 by Marijn Haverbeke and others + +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. + +prosemirror-model +1.25.3 +MIT + + +Copyright (C) 2015-2017 by Marijn Haverbeke and others + +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. + +prosemirror-schema-basic +1.2.4 +MIT + + +Copyright (C) 2015-2017 by Marijn Haverbeke and others + +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. + +prosemirror-schema-list +1.5.1 +MIT + + +Copyright (C) 2015-2017 by Marijn Haverbeke and others + +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. + +prosemirror-state +1.4.3 +MIT + + +Copyright (C) 2015-2017 by Marijn Haverbeke and others + +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. + +prosemirror-tables +1.7.1 +MIT + + +Copyright (C) 2015-2016 by Marijn Haverbeke and others + +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. + +prosemirror-trailing-node +3.0.0 +MIT + + +MIT License + +Copyright (c) 2019-2022, Remirror 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. + +prosemirror-transform +1.10.4 +MIT + + +Copyright (C) 2015-2017 by Marijn Haverbeke and others + +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. + +prosemirror-view +1.40.1 +MIT + + +Copyright (C) 2015-2017 by Marijn Haverbeke and others + +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. + +proxy-agent +6.5.0 +MIT +Nathan Rajlich (http://n8.io/) + +(The MIT License) + +Copyright (c) 2013 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. + +proxy-from-env +1.0.0 +MIT +Rob Wu (https://robwu.nl/) + +LICENSE TEXT NOT FOUND + +proxy-from-env +1.1.0 +MIT +Rob Wu (https://robwu.nl/) + +The MIT License + +Copyright (C) 2016-2018 Rob Wu + +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. + +pump +3.0.3 +MIT +Mathias Buus Madsen + +The MIT License (MIT) + +Copyright (c) 2014 Mathias Buus + +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. + +punycode.js +2.3.1 +MIT +Mathias Bynens + +Copyright Mathias Bynens + +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. + +puppeteer +24.16.0 +Apache-2.0 +The Chromium Authors + +LICENSE TEXT NOT FOUND + +puppeteer-core +24.16.0 +Apache-2.0 +The Chromium Authors + +LICENSE TEXT NOT FOUND + +qs +6.14.0 +BSD-3-Clause + + +BSD 3-Clause License + +Copyright (c) 2014, Nathan LaFreniere and other [contributors](https://github.com/ljharb/qs/graphs/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: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. 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. + +3. Neither the name of the copyright holder 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 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. + +quansync +0.2.10 +MIT +Anthony Fu + +MIT License + +Copyright (c) 2025-PRESENT Anthony Fu and Kevin Deng + +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. + +queue-microtask +1.2.3 +MIT +Feross Aboukhadijeh + +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. + +react +18.3.1 +MIT + + +MIT License + +Copyright (c) Facebook, Inc. and its affiliates. + +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. + +react-dom +18.3.1 +MIT + + +MIT License + +Copyright (c) Facebook, Inc. and its affiliates. + +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. + +react-is +16.13.1 +MIT + + +MIT License + +Copyright (c) Facebook, Inc. and its affiliates. + +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. + +react-is +18.3.1 +MIT + + +MIT License + +Copyright (c) Facebook, Inc. and its affiliates. + +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. + +react-redux +9.2.0 +MIT +Dan Abramov (https://github.com/gaearon) + +The MIT License (MIT) + +Copyright (c) 2015-present Dan Abramov + +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. + +react-remove-scroll +2.7.1 +MIT +Anton Korzunov + +MIT License + +Copyright (c) 2017 Anton Korzunov + +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. + +react-remove-scroll-bar +2.3.8 +MIT +Anton Korzunov + +LICENSE TEXT NOT FOUND + +react-simple-code-editor +0.14.1 +MIT +Satyajit Sahoo (https://github.com/satya164/) + +The MIT License (MIT) + +Copyright (C) 2018 - 2019 + +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. + +react-smooth +4.0.4 +MIT +JasonHzq + +The MIT License (MIT) + +Copyright (c) 2016 recharts + +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. + +react-style-singleton +2.2.3 +MIT +Anton Korzunov (thekashey@gmail.com) + +MIT License + +Copyright (c) 2017 Anton Korzunov + +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. + +react-transition-group +4.4.5 +BSD-3-Clause + + +BSD 3-Clause License + +Copyright (c) 2018, React Community +Forked from React (https://github.com/facebook/react) Copyright 2013-present, Facebook, Inc. +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 copyright holder 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 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. + +read-cache +1.0.0 +MIT +Bogdan Chadkin + +The MIT License (MIT) + +Copyright 2016 Bogdan Chadkin + +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. + +readdirp +3.6.0 +MIT +Thorsten Lorenz (thlorenz.com) + +MIT License + +Copyright (c) 2012-2019 Thorsten Lorenz, Paul Miller (https://paulmillr.com) + +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. + +recharts +2.15.4 +MIT +recharts group + +The MIT License (MIT) + +Copyright (c) 2015-present recharts + +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. + +recharts-scale +0.4.5 +MIT +recharts group + +The MIT License (MIT) + +Copyright (c) 2015 Sen Yang + +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. + +redux +5.0.1 +MIT + + +The MIT License (MIT) + +Copyright (c) 2015-present Dan Abramov + +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. + +redux-thunk +3.1.0 +MIT +Dan Abramov + +The MIT License (MIT) + +Copyright (c) 2015-present Dan Abramov + +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. + +request-progress +3.0.0 +MIT +IndigoUnited (http://indigounited.com) + +Copyright (c) 2012 IndigoUnited + +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. + +require-directory +2.1.1 +MIT +Troy Goode (http://github.com/troygoode/) + +The MIT License (MIT) + +Copyright (c) 2011 Troy Goode + +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. + +reselect +5.1.1 +MIT + + +The MIT License (MIT) + +Copyright (c) 2015-2018 Reselect 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. + +resolve +1.22.10 +MIT +James Halliday + +MIT License + +Copyright (c) 2012 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. + +resolve-from +4.0.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +restore-cursor +3.1.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +reusify +1.1.0 +MIT +Matteo Collina + +The MIT License (MIT) + +Copyright (c) 2015-2024 Matteo Collina + +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. + +rfdc +1.4.1 +MIT +David Mark Clements + +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. + +robust-predicates +3.0.2 +Unlicense +Vladimir Agafonkin + +This is free and unencumbered software released into the public domain. + +Anyone is free to copy, modify, publish, use, compile, sell, or +distribute this software, either in source code form or as a compiled +binary, for any purpose, commercial or non-commercial, and by any +means. + +In jurisdictions that recognize copyright laws, the author or authors +of this software dedicate any and all copyright interest in the +software to the public domain. We make this dedication for the benefit +of the public at large and to the detriment of our heirs and +successors. We intend this dedication to be an overt act of +relinquishment in perpetuity of all present and future rights to this +software under copyright law. + +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 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. + +For more information, please refer to + +rope-sequence +1.3.4 +MIT +Marijn Haverbeke + +Copyright (C) 2016 by Marijn Haverbeke + +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. + +roughjs +4.6.6 +MIT +Preet Shihn + +MIT License + +Copyright (c) 2019 Preet Shihn + +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. + +rrdom +2.0.0-alpha.18 +MIT + + +LICENSE TEXT NOT FOUND + +rrweb +2.0.0-alpha.18 +MIT +yanzhen@smartx.com + +LICENSE TEXT NOT FOUND + +rrweb-snapshot +2.0.0-alpha.18 +MIT +yanzhen@smartx.com + +LICENSE TEXT NOT FOUND + +run-parallel +1.2.0 +MIT +Feross Aboukhadijeh + +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. + +rw +1.3.3 +BSD-3-Clause +Mike Bostock + +Copyright (c) 2014-2016, Michael Bostock +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. + +* The name Michael Bostock may not 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 MICHAEL BOSTOCK 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. + +rxjs +7.8.2 +Apache-2.0 +Ben Lesh + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft Corp. and contributors + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +safe-buffer +5.2.1 +MIT +Feross Aboukhadijeh + +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. + +safer-buffer +2.1.2 +MIT +Nikita Skovoroda + +MIT License + +Copyright (c) 2018 Nikita Skovoroda + +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. + +scheduler +0.23.2 +MIT + + +MIT License + +Copyright (c) Facebook, Inc. and its affiliates. + +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. + +semver +7.7.2 +ISC +GitHub Inc. + +The ISC License + +Copyright (c) Isaac Z. Schlueter and 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. + +sharp +0.34.3 +Apache-2.0 +Lovell Fuller + +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and +distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright +owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities +that control, are controlled by, or are under common control with that entity. +For the purposes of this definition, "control" means (i) the power, direct or +indirect, to cause the direction or management of such entity, whether by +contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the +outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising +permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including +but not limited to software source code, documentation source, and configuration +files. + +"Object" form shall mean any form resulting from mechanical transformation or +translation of a Source form, including but not limited to compiled object code, +generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made +available under the License, as indicated by a copyright notice that is included +in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that +is based on (or derived from) the Work and for which the editorial revisions, +annotations, elaborations, or other modifications represent, as a whole, an +original work of authorship. For the purposes of this License, Derivative Works +shall not include works that remain separable from, or merely link (or bind by +name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version +of the Work and any modifications or additions to that Work or Derivative Works +thereof, that is intentionally submitted to Licensor for inclusion in the Work +by the copyright owner or by an individual or Legal Entity authorized to submit +on behalf of the copyright owner. For the purposes of this definition, +"submitted" means any form of electronic, verbal, or written communication sent +to the Licensor or its representatives, including but not limited to +communication on electronic mailing lists, source code control systems, and +issue tracking systems that are managed by, or on behalf of, the Licensor for +the purpose of discussing and improving the Work, but excluding communication +that is conspicuously marked or otherwise designated in writing by the copyright +owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf +of whom a Contribution has been received by Licensor and subsequently +incorporated within the Work. + +2. Grant of Copyright License. + +Subject to the terms and conditions of this License, each Contributor hereby +grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, +irrevocable copyright license to reproduce, prepare Derivative Works of, +publicly display, publicly perform, sublicense, and distribute the Work and such +Derivative Works in Source or Object form. + +3. Grant of Patent License. + +Subject to the terms and conditions of this License, each Contributor hereby +grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, +irrevocable (except as stated in this section) patent license to make, have +made, use, offer to sell, sell, import, and otherwise transfer the Work, where +such license applies only to those patent claims licensable by such Contributor +that are necessarily infringed by their Contribution(s) alone or by combination +of their Contribution(s) with the Work to which such Contribution(s) was +submitted. If You institute patent litigation against any entity (including a +cross-claim or counterclaim in a lawsuit) alleging that the Work or a +Contribution incorporated within the Work constitutes direct or contributory +patent infringement, then any patent licenses granted to You under this License +for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. + +You may reproduce and distribute copies of the Work or Derivative Works thereof +in any medium, with or without modifications, and in Source or Object form, +provided that You meet the following conditions: + +You must give any other recipients of the Work or Derivative Works a copy of +this License; and +You must cause any modified files to carry prominent notices stating that You +changed the files; and +You must retain, in the Source form of any Derivative Works that You distribute, +all copyright, patent, trademark, and attribution notices from the Source form +of the Work, excluding those notices that do not pertain to any part of the +Derivative Works; and +If the Work includes a "NOTICE" text file as part of its distribution, then any +Derivative Works that You distribute must include a readable copy of the +attribution notices contained within such NOTICE file, excluding those notices +that do not pertain to any part of the Derivative Works, in at least one of the +following places: within a NOTICE text file distributed as part of the +Derivative Works; within the Source form or documentation, if provided along +with the Derivative Works; or, within a display generated by the Derivative +Works, if and wherever such third-party notices normally appear. The contents of +the NOTICE file are for informational purposes only and do not modify the +License. You may add Your own attribution notices within Derivative Works that +You distribute, alongside or as an addendum to the NOTICE text from the Work, +provided that such additional attribution notices cannot be construed as +modifying the License. +You may add Your own copyright statement to Your modifications and may provide +additional or different license terms and conditions for use, reproduction, or +distribution of Your modifications, or for any such Derivative Works as a whole, +provided Your use, reproduction, and distribution of the Work otherwise complies +with the conditions stated in this License. + +5. Submission of Contributions. + +Unless You explicitly state otherwise, any Contribution intentionally submitted +for inclusion in the Work by You to the Licensor shall be under the terms and +conditions of this License, without any additional terms or conditions. +Notwithstanding the above, nothing herein shall supersede or modify the terms of +any separate license agreement you may have executed with Licensor regarding +such Contributions. + +6. Trademarks. + +This License does not grant permission to use the trade names, trademarks, +service marks, or product names of the Licensor, except as required for +reasonable and customary use in describing the origin of the Work and +reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. + +Unless required by applicable law or agreed to in writing, Licensor provides the +Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, +including, without limitation, any warranties or conditions of TITLE, +NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are +solely responsible for determining the appropriateness of using or +redistributing the Work and assume any risks associated with Your exercise of +permissions under this License. + +8. Limitation of Liability. + +In no event and under no legal theory, whether in tort (including negligence), +contract, or otherwise, unless required by applicable law (such as deliberate +and grossly negligent acts) or agreed to in writing, shall any Contributor be +liable to You for damages, including any direct, indirect, special, incidental, +or consequential damages of any character arising as a result of this License or +out of the use or inability to use the Work (including but not limited to +damages for loss of goodwill, work stoppage, computer failure or malfunction, or +any and all other commercial damages or losses), even if such Contributor has +been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. + +While redistributing the Work or Derivative Works thereof, You may choose to +offer, and charge a fee for, acceptance of support, warranty, indemnity, or +other liability obligations and/or rights consistent with this License. However, +in accepting such obligations, You may act only on Your own behalf and on Your +sole responsibility, not on behalf of any other Contributor, and only if You +agree to indemnify, defend, and hold each Contributor harmless for any liability +incurred by, or claims asserted against, such Contributor by reason of your +accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work + +To apply the Apache License to your work, attach the following boilerplate +notice, with the fields enclosed by brackets "[]" replaced with your own +identifying information. (Don't include the brackets!) The text should be +enclosed in the appropriate comment syntax for the file format. We also +recommend that a file or class name and description of purpose be included on +the same "printed page" as the copyright notice for easier identification within +third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +shebang-command +2.0.0 +MIT +Kevin Mårtensson + +MIT License + +Copyright (c) Kevin Mårtensson (github.com/kevva) + +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. + +shebang-regex +3.0.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +side-channel +1.1.0 +MIT +Jordan Harband + +MIT License + +Copyright (c) 2019 Jordan Harband + +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. + +side-channel-list +1.0.0 +MIT +Jordan Harband + +MIT License + +Copyright (c) 2024 Jordan Harband + +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. + +side-channel-map +1.0.1 +MIT +Jordan Harband + +MIT License + +Copyright (c) 2024 Jordan Harband + +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. + +side-channel-weakmap +1.0.2 +MIT +Jordan Harband + +MIT License + +Copyright (c) 2019 Jordan Harband + +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. + +signal-exit +3.0.7 +ISC +Ben Coe + +The ISC License + +Copyright (c) 2015, 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. + +signal-exit +4.1.0 +ISC +Ben Coe + +The ISC License + +Copyright (c) 2015-2023 Benjamin Coe, Isaac Z. Schlueter, and 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. + +simple-swizzle +0.2.2 +MIT +Qix (http://github.com/qix-) + +The MIT License (MIT) + +Copyright (c) 2015 Josh Junon + +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. + +slice-ansi +3.0.0 +MIT + + +MIT License + +Copyright (c) DC + +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. + +slice-ansi +4.0.0 +MIT + + +MIT License + +Copyright (c) DC +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +smart-buffer +4.2.0 +MIT +Josh Glazebrook + +The MIT License (MIT) + +Copyright (c) 2013-2017 Josh Glazebrook + +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. + +socks +2.8.6 +MIT +Josh Glazebrook + +The MIT License (MIT) + +Copyright (c) 2013 Josh Glazebrook + +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. + +socks-proxy-agent +8.0.5 +MIT +Nathan Rajlich + +(The MIT License) + +Copyright (c) 2013 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. + +sonner +2.0.7 +MIT +Emil Kowalski + +MIT License + +Copyright (c) 2023 Emil Kowalski + +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. + +source-map +0.6.1 +BSD-3-Clause +Nick Fitzgerald + +Copyright (c) 2009-2011, Mozilla Foundation and 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 names of the Mozilla Foundation nor the names of project + 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 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. + +source-map-js +1.2.1 +BSD-3-Clause +Valentin 7rulnik Semirulnik + +Copyright (c) 2009-2011, Mozilla Foundation and 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 names of the Mozilla Foundation nor the names of project + 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 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. + +sprintf-js +1.1.3 +BSD-3-Clause +Alexandru Mărășteanu + +Copyright (c) 2007-present, Alexandru Mărășteanu +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 this software 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 AUTHORS OR COPYRIGHT HOLDERS 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. + +sshpk +1.18.0 +MIT +Joyent, Inc + +Copyright Joyent, Inc. 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. + +streamsearch +1.1.0 +MIT +Brian White + +Copyright Brian White. 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. + +streamx +2.22.1 +MIT +Mathias Buus (@mafintosh) + +The MIT License (MIT) + +Copyright (c) 2019 Mathias Buus + +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-width +4.2.3 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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-width +5.1.2 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +strip-ansi +6.0.1 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +strip-ansi +7.1.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +strip-final-newline +2.0.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +styled-jsx +5.1.1 +MIT + + +MIT License + +Copyright (c) 2016-present Vercel, 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 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. + +stylis +4.3.6 +MIT +Sultan Tarimo + +MIT License + +Copyright (c) 2016-present Sultan Tarimo + +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. + +sucrase +3.35.0 +MIT +Alan Pierce + +The MIT License (MIT) + +Copyright (c) 2012-2018 various contributors (see AUTHORS) + +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. + +supports-color +7.2.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +supports-color +8.1.1 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +supports-preserve-symlinks-flag +1.0.0 +MIT +Jordan Harband + +MIT License + +Copyright (c) 2022 Inspect JS + +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. + +tailwind-merge +2.6.0 +MIT +Dany Castillo + +MIT License + +Copyright (c) 2021 Dany Castillo + +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. + +tailwindcss +3.4.17 +MIT + + +MIT License + +Copyright (c) Tailwind Labs, 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 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. + +tailwindcss-animate +1.0.7 +MIT +Jamie Kyle + +MIT License + +Copyright (c) 2020 Jamie Kyle + +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. + +tar-fs +3.1.0 +MIT +Mathias Buus + +The MIT License (MIT) + +Copyright (c) 2014 Mathias Buus + +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. + +tar-stream +3.1.7 +MIT +Mathias Buus + +The MIT License (MIT) + +Copyright (c) 2014 Mathias Buus + +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. + +text-decoder +1.2.3 +Apache-2.0 +Holepunch + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +text-segmentation +1.0.3 +MIT +Niklas von Hertzen + +Copyright (c) 2021 Niklas von Hertzen + +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. + +thenify +3.3.1 +MIT +Jonathan Ong (http://jongleberry.com) + +The MIT License (MIT) + +Copyright (c) 2014-2016 Jonathan Ong me@jongleberry.com and 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. + +thenify-all +1.6.0 +MIT +Jonathan Ong (http://jongleberry.com) + +The MIT License (MIT) + +Copyright (c) 2014 Jonathan Ong me@jongleberry.com + +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. + +throttleit +1.0.1 +MIT + + +LICENSE TEXT NOT FOUND + +through +2.3.8 +MIT +Dominic Tarr (dominictarr.com) + +The MIT License + +Copyright (c) 2011 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. + +tiny-invariant +1.3.3 +MIT +Alex Reardon + +MIT License + +Copyright (c) 2019 Alexander Reardon + +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. + +tinyexec +1.0.1 +MIT +James Garbutt (https://github.com/43081j) + +MIT License + +Copyright (c) 2024 Tinylibs + +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. + +tippy.js +6.3.7 +MIT +atomiks + +MIT License + +Copyright (c) 2017-present atomiks + +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. + +tiptap-markdown +0.8.10 +MIT +Antoine Guingand + +MIT License + +Copyright (c) 2021, Antoine Guingand + +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. + +tldts +6.1.86 +MIT +Rémi Berson + +Copyright (c) 2017 Thomas Parisot, 2018 Rémi Berson + +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. + +tldts-core +6.1.86 +MIT +Rémi Berson + +Copyright (c) 2017 Thomas Parisot, 2018 Rémi Berson + +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. + +tmp +0.2.5 +MIT +KARASZI István + +The MIT License (MIT) + +Copyright (c) 2014 KARASZI István + +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. + +to-regex-range +5.0.1 +MIT +Jon Schlinkert (https://github.com/jonschlinkert) + +The MIT License (MIT) + +Copyright (c) 2015-present, Jon Schlinkert. + +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. + +tough-cookie +5.1.2 +BSD-3-Clause +Jeremy Stashewsky + +Copyright (c) 2015, Salesforce.com, Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + +2. 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. + +3. Neither the name of Salesforce.com 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 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. + +tree-kill +1.2.2 +MIT +Peteris Krumins + +MIT License + +Copyright (c) 2018 Peter Krumins + +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. + +ts-dedent +2.2.0 +MIT +Tamino Martinius + +MIT License + +Copyright (c) 2018 Tamino Martinius + +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. + +ts-interface-checker +0.1.13 +Apache-2.0 +Dmitry S, Grist Labs + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +tslib +2.8.1 +0BSD +Microsoft Corp. + +Copyright (c) Microsoft Corporation. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted. + +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. + +tunnel-agent +0.6.0 +Apache-2.0 +Mikeal Rogers (http://www.futurealoof.com) + +Apache License + +Version 2.0, January 2004 + +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + +You must give any other recipients of the Work or Derivative Works a copy of this License; and + +You must cause any modified files to carry prominent notices stating that You changed the files; and + +You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and + +If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +tweetnacl +0.14.5 +Unlicense +TweetNaCl-js contributors + +This is free and unencumbered software released into the public domain. + +Anyone is free to copy, modify, publish, use, compile, sell, or +distribute this software, either in source code form or as a compiled +binary, for any purpose, commercial or non-commercial, and by any +means. + +In jurisdictions that recognize copyright laws, the author or authors +of this software dedicate any and all copyright interest in the +software to the public domain. We make this dedication for the benefit +of the public at large and to the detriment of our heirs and +successors. We intend this dedication to be an overt act of +relinquishment in perpetuity of all present and future rights to this +software under copyright law. + +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 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. + +For more information, please refer to + +type-fest +0.21.3 +(MIT OR CC0-1.0) +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https:/sindresorhus.com) + +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. + +type-fest +0.8.1 +(MIT OR CC0-1.0) +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +typed-query-selector +2.12.0 +MIT +Pig Fang + +MIT License + +Copyright (c) 2020-present Pig Fang + +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. + +typescript +5.9.2 +Apache-2.0 +Microsoft Corp. + +Apache License + +Version 2.0, January 2004 + +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + +You must give any other recipients of the Work or Derivative Works a copy of this License; and + +You must cause any modified files to carry prominent notices stating that You changed the files; and + +You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and + +If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +uc.micro +2.1.0 +MIT + + +Copyright Mathias Bynens + +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. + +ufo +1.6.1 +MIT + + +MIT License + +Copyright (c) Pooya Parsa + +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. + +undici-types +6.21.0 +MIT + + +MIT License + +Copyright (c) Matteo Collina and Undici 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. + +universalify +2.0.1 +MIT +Ryan Zimmerman + +(The MIT License) + +Copyright (c) 2017, Ryan Zimmerman + +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. + +untildify +4.0.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +use-callback-ref +1.3.3 +MIT +theKashey + +MIT License + +Copyright (c) 2017 Anton Korzunov + +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. + +use-sidecar +1.1.3 +MIT +theKashey + +MIT License + +Copyright (c) 2017 Anton Korzunov + +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. + +use-sync-external-store +1.5.0 +MIT + + +MIT License + +Copyright (c) Meta Platforms, Inc. and affiliates. + +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. + +util-deprecate +1.0.2 +MIT +Nathan Rajlich (http://n8.io/) + +(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. + +utrie +1.0.2 +MIT +Niklas von Hertzen + +Copyright (c) 2021 Niklas von Hertzen + +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. + +uuid +11.1.0 +MIT + + +The MIT License (MIT) + +Copyright (c) 2010-2020 Robert Kieffer and other 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. + +uuid +8.3.2 +MIT + + +The MIT License (MIT) + +Copyright (c) 2010-2020 Robert Kieffer and other 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. + +verror +1.10.0 +MIT + + +Copyright (c) 2016, Joyent, Inc. 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 + +victory-vendor +36.9.2 +MIT AND ISC +Formidable + +Copyright 2015-2021 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 +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. + +vscode-jsonrpc +8.2.0 +MIT +Microsoft Corporation + +Copyright (c) Microsoft Corporation + +All rights reserved. + +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. + +vscode-languageserver +9.0.1 +MIT +Microsoft Corporation + +Copyright (c) Microsoft Corporation + +All rights reserved. + +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. + +vscode-languageserver-protocol +3.17.5 +MIT +Microsoft Corporation + +Copyright (c) Microsoft Corporation + +All rights reserved. + +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. + +vscode-languageserver-textdocument +1.0.12 +MIT +Microsoft Corporation + +Copyright (c) Microsoft Corporation + +All rights reserved. + +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. + +vscode-languageserver-types +3.17.5 +MIT +Microsoft Corporation + +Copyright (c) Microsoft Corporation + +All rights reserved. + +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. + +vscode-uri +3.0.8 +MIT +Microsoft + +The MIT License (MIT) + +Copyright (c) Microsoft + +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. + +w3c-keyname +2.2.8 +MIT +Marijn Haverbeke + +Copyright (C) 2016 by Marijn Haverbeke and others + +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. + +which +2.0.2 +ISC +Isaac Z. Schlueter (http://blog.izs.me) + +The ISC License + +Copyright (c) Isaac Z. Schlueter and 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. + +wrap-ansi +6.2.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +wrap-ansi +7.0.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +wrap-ansi +8.1.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +wrappy +1.0.2 +ISC +Isaac Z. Schlueter (http://blog.izs.me/) + +The ISC License + +Copyright (c) Isaac Z. Schlueter and 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. + +ws +8.18.3 +MIT +Einar Otto Stangvik (http://2x.io) + +Copyright (c) 2011 Einar Otto Stangvik +Copyright (c) 2013 Arnout Kazemier and contributors +Copyright (c) 2016 Luigi Pinca and 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. + +y18n +5.0.8 +ISC +Ben Coe + +Copyright (c) 2015, 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. + +yaml +2.8.1 +ISC +Eemeli Aro + +Copyright Eemeli Aro + +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. + +yargs +17.7.2 +MIT + + +MIT License + +Copyright 2010 James Halliday (mail@substack.net); Modified work Copyright 2014 Contributors (ben@npmjs.com) + +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. + +yargs-parser +21.1.1 +ISC +Ben Coe + +Copyright (c) 2016, 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. + +yauzl +2.10.0 +MIT +Josh Wolfe + +The MIT License (MIT) + +Copyright (c) 2014 Josh Wolfe + +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. + +zod +3.25.76 +MIT +Colin McDonnell + +MIT License + +Copyright (c) 2025 Colin McDonnell + +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. + +zod +4.0.16 +MIT +Colin McDonnell + +MIT License + +Copyright (c) 2025 Colin McDonnell + +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. diff --git a/README.md b/README.md new file mode 100644 index 0000000..8e85b9e --- /dev/null +++ b/README.md @@ -0,0 +1,701 @@ +

+ Presenton +

+ +

+ Quickstart · + Docs · + Youtube · + Discord +

+ +

+ Apache2.0 + Stars + Platform +

+ +

+ presenton%2Fpresenton | Trendshift +

+ +# Open-Source AI Presentation Generator and API (Gamma, Canva, Beautiful AI, Decktopus, Presentations AI Alternative) + +Discover what Presenton can do from AI-powered presentation generation to editing, exporting, and flexible model providers. + +[▶ Watch Presenton in Action](https://github.com/user-attachments/assets/93e541dc-8487-4dcf-a9a0-95ad5ca94453) + +### ✨ Why Presenton + +No SaaS lock-in · No forced subscriptions · Full control over models and data + +What makes Presenton different? + +- Use Fully **self-hosted** in Web through [Docker Package](https://docs.presenton.ai/v3/get-started/quickstart) +- Or Download [Desktop App](https://presenton.ai/download) (Mac, Windows & Linux) +- Works with Ollama, LM Studio, OpenAI, Gemini, Vertex AI, Azure OpenAI, Amazon Bedrock, Fireworks, Together AI, Anthropic, or any other OpenAI compatible providers +- Comes with AI Presentation Generation API +- Fully open-source (Apache 2.0) +- Works with your own design/templates +- **Fully editable PPTX export** + +> [!TIP] +> **Star us!** A ⭐ shows your support and encourages us to keep building! 😇 + +

+ Presenton +

+ +# + +### 🎛 Features + +

+ Presenton Features +

+ +

+ Create stunning presentations with your existing ChatGPT subscription — secure and private, instant access, no API keys +

+ +# + +### 💻 Presenton Desktop + +Create AI-powered presentations using your own model provider (BYOK) or run everything locally on your own machine for full control and data privacy. + +

+ + Cloud deployment + +

+ +**Available Platforms** + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
PlatformArchitecturePackageDownload
macOSApple Silicon / Intel.dmgDownload ↗
Windowsx64.exeDownload ↗
Linuxx64 .debDownload ↗
+ + +**Deploy to Cloud Providers** + + + +# + +Presenton gives you complete control over your AI presentation workflow. Choose your models, customize your experience, and keep your data private. + +- Custom Templates & Themes — Create unlimited presentation designs with HTML and Tailwind CSS +- AI Template Generation — Create presentation templates from existing Powerpoint documents. +- Flexible Generation — Build presentations from prompts or uploaded documents +- Export Ready — Save as PowerPoint (PPTX) and PDF with professional formatting +- Built-In MCP Server — Generate presentations over Model Context Protocol +- Bring Your Own Key — Use your own API keys for OpenAI, Google Gemini, Vertex AI, Azure OpenAI, Anthropic Claude, or any compatible provider. Only pay for what you use, no hidden fees or subscriptions. +- Ollama Integration — Run open-source models locally with full privacy +- OpenAI API Compatible — Connect to any OpenAI-compatible endpoint with your own models +- Multi-Provider Support — Mix and match text and image generation providers +- Versatile Image Generation — Choose from DALL-E 3, Gemini Flash, Pexels, or Pixabay +- Rich Media Support — Icons, charts, and custom graphics for professional presentations +- Runs Locally — All processing happens on your device, no cloud dependencies +- API Deployment — Host as your own API service for your team +- Fully Open-Source — Apache 2.0 licensed, inspect, modify, and contribute +- Docker Ready — One-command deployment with GPU support for local models +- Electron Desktop App — Run Presenton as a native desktop application on Windows, macOS, and Linux (no browser required) +- Sign in with ChatGPT — Use your free or paid ChatGPT account to sign in and start creating presentations instantly — no separate API key required + +# + +### ☁️ Presenton Cloud + +Run Presenton directly in your browser — no installation, no setup required. Start creating presentations instantly from anywhere. + +

+ + Presenton Cloud + +

+ +# + +### ⚡ Running Presenton + +

+ You can run Presenton in two ways: + Docker for a one-command setup without installing a local dev + stack, or the Electron desktop app for a native app + experience (ideal for development or offline use). +

+ +**Option 1: Electron (Desktop App)** + +

+ Run Presenton as a native desktop application. LLM and image provider + (API keys, etc.) can be configured in the app. The same environment variables + used for Docker apply when running the bundled backend. +

+ +

+ Prerequisites: Node.js (LTS), npm, Python 3.11, and + uv + (for the shared FastAPI backend in servers/fastapi). +

+ +- Setup (First Time) +
cd electron
+  npm run setup:env
+ + This installs Node dependencies, runs uv sync in the FastAPI + server, and installs Next.js dependencies. + +- Run in Development +
npm run dev
+

+ This compiles TypeScript and starts Electron. The backend and UI run locally + inside the desktop window. +

+ +- Build Distributable (Optional) + To create installers for Windows, macOS, or Linux: +
npm run build:all
+  npm run dist
+

+ Output files are written to electron/dist + (or as configured in your electron-builder settings). +

+

+ For a public macOS DMG outside the Mac App Store, use + APPLE_KEYCHAIN_PROFILE="presenton-notary" npm run build:all:mac:signed + from electron/ after the one-time Developer ID and notarization + setup in docs/macos/dev/direct-distribution.md. +

+ +**Option 2: Docker** + +- Start Presenton + Linux/MacOS (Bash/Zsh Shell): +
docker run -it --name presenton -p 5001:80 -v "./app_data:/app_data" ghcr.io/presenton/presenton:latest
+ + Windows (PowerShell): +
docker run -it --name presenton -p 5001:80 -v "${PWD}\app_data:/app_data" ghcr.io/presenton/presenton:latest
+ +- Open Presenton +

+ Open http://localhost:5001 in the browser + of your choice to use Presenton. +

+ +
+

+ Note: You can replace 5001 with any other port + number of your choice to run Presenton on a different port number. If you use + Docker Compose, set PRESENTON_HTTP_HOST_PORT, for example + PRESENTON_HTTP_HOST_PORT=8080 docker compose up production. +

+
+ +# + +### ⚙️ Deployment Configurations + +The lists below match the environment variables forwarded in this repository’s **`docker-compose.yml`** (`production`, `production-gpu`, `development`, and `development-gpu`). Put values in a `.env` file next to the compose file, or export them before `docker compose up`. The Electron app backend can read the same names when run outside Docker. + +Other optional variables exist in code (for example advanced Mem0 paths, LiteParse runners, or `FAST_API_INTERNAL_URL` when Next.js and FastAPI are not same-origin); they are **not** wired in `docker-compose.yml`. Supported names are discoverable from `servers/fastapi/utils/get_env.py` and the Next.js server utilities under `servers/nextjs/`. + +#### LLM and API keys + +- **CAN_CHANGE_KEYS**=[true/false]: Set to **false** if you want to keep API keys hidden and make them unmodifiable. +- **LLM**=[openai/deepseek/google/vertex/azure/bedrock/openrouter/fireworks/together/cerebras/anthropic/litellm/lmstudio/ollama/custom/codex]: Select the text **LLM**. +- **OPENAI_API_KEY**: Required if **LLM** is **openai**. +- **OPENAI_MODEL**: Required if **LLM** is **openai** (default: `gpt-4.1`). +- **DEEPSEEK_API_KEY**: Required if **LLM** is **deepseek**. +- **DEEPSEEK_MODEL**: Required if **LLM** is **deepseek** (default: `deepseek-chat`). +- **DEEPSEEK_BASE_URL**: Optional if **LLM** is **deepseek** (default: `https://api.deepseek.com`). +- **GOOGLE_API_KEY**: Required if **LLM** is **google**. +- **GOOGLE_MODEL**: Required if **LLM** is **google** (default: `models/gemini-2.0-flash`). +- **VERTEX_MODEL**: Required if **LLM** is **vertex** (default: `gemini-2.5-flash`). +- **VERTEX_API_KEY**: Optional auth path for **LLM=vertex** (Vertex Express). +- **VERTEX_PROJECT** / **VERTEX_LOCATION**: Optional auth path for **LLM=vertex** when using GCP project credentials (do not combine with `VERTEX_API_KEY`). +- **VERTEX_BASE_URL**: Optional Vertex gateway/base URL override. +- **AZURE_OPENAI_MODEL**: Required if **LLM** is **azure** (deployment/model name). +- **AZURE_OPENAI_API_KEY**: Required if **LLM** is **azure**. +- **AZURE_OPENAI_API_VERSION**: Required if **LLM** is **azure** (for example `2024-10-21`). +- **AZURE_OPENAI_ENDPOINT** / **AZURE_OPENAI_BASE_URL**: At least one is required if **LLM** is **azure**. +- **AZURE_OPENAI_DEPLOYMENT**: Optional deployment override for **LLM** is **azure**. +- **BEDROCK_REGION**: Optional if **LLM** is **bedrock** (default: `us-east-1`). +- **BEDROCK_MODEL**: Required if **LLM** is **bedrock**. Use a standard model ID (example: `us.anthropic.claude-3-5-haiku-20241022-v1:0`) or a full **inference profile ARN** for newer models (example: Claude Sonnet 4.6). Passed through to Bedrock Converse as `modelId`. See **[Amazon Bedrock guide](docs/amazon-bedrock.md)**. +- **BEDROCK_API_KEY**: Optional if **LLM** is **bedrock** (API key auth; alternative to AWS keys). +- **BEDROCK_AWS_ACCESS_KEY_ID** / **BEDROCK_AWS_SECRET_ACCESS_KEY**: Required together if **LLM** is **bedrock** and `BEDROCK_API_KEY` is not set. +- **BEDROCK_AWS_SESSION_TOKEN**: Optional session token for **LLM** is **bedrock**. +- **BEDROCK_PROFILE_NAME**: Optional AWS profile name for **LLM** is **bedrock**. +- **OPENROUTER_API_KEY**: Required if **LLM** is **openrouter**. +- **OPENROUTER_MODEL**: Required if **LLM** is **openrouter** (default: `openai/gpt-4o`). +- **OPENROUTER_BASE_URL**: Optional if **LLM** is **openrouter** (default: `https://openrouter.ai/api/v1`). +- **FIREWORKS_API_KEY**: Required if **LLM** is **fireworks**. +- **FIREWORKS_MODEL**: Required if **LLM** is **fireworks** (example: `accounts/fireworks/models/llama-v3p1-8b-instruct`). +- **FIREWORKS_BASE_URL**: Optional if **LLM** is **fireworks** (default: `https://api.fireworks.ai/inference/v1`). +- **TOGETHER_API_KEY**: Required if **LLM** is **together**. +- **TOGETHER_MODEL**: Required if **LLM** is **together** (example: `openai/gpt-oss-20b`). +- **TOGETHER_BASE_URL**: Optional if **LLM** is **together** (default: `https://api.together.ai/v1`). +- **CEREBRAS_API_KEY**: Required if **LLM** is **cerebras**. +- **CEREBRAS_MODEL**: Required if **LLM** is **cerebras** (default: `llama-3.3-70b`). +- **CEREBRAS_BASE_URL**: Optional if **LLM** is **cerebras** (default: `https://api.cerebras.ai/v1`). +- **ANTHROPIC_API_KEY**: Required if **LLM** is **anthropic**. +- **ANTHROPIC_MODEL**: Required if **LLM** is **anthropic** (default: `claude-3-5-sonnet-20241022`). +- **CODEX_MODEL**: Required if **LLM** is **codex** (Codex OAuth flow; compose maps host port **1455** for the callback). +- **CUSTOM_LLM_URL**: OpenAI-compatible base URL if **LLM** is **custom**. +- **CUSTOM_LLM_API_KEY**: API key if **LLM** is **custom**. +- **CUSTOM_MODEL**: Model id if **LLM** is **custom**. +- **LITELLM_BASE_URL**: LiteLLM proxy or gateway base URL if **LLM** is **litellm**. +- **LITELLM_API_KEY**: Optional API key if **LLM** is **litellm**. +- **LITELLM_MODEL**: Required if **LLM** is **litellm** (default: `gpt-4.1`). +- **LMSTUDIO_BASE_URL**: Optional LM Studio base URL if **LLM** is **lmstudio** (default: `http://localhost:1234/v1`; `/v1` is auto-appended when omitted). +- **LMSTUDIO_API_KEY**: Optional API key if **LLM** is **lmstudio**. +- **LMSTUDIO_MODEL**: Required if **LLM** is **lmstudio** (example: `openai/gpt-oss-20b`). +- **DISABLE_THINKING**=[true/false]: If **true**, disables “thinking” for providers that support it (including DeepSeek). +- **WEB_GROUNDING**=[true/false]: If **true**, enables web search by default. +- **WEB_SEARCH_PROVIDER**=[auto/native/searxng/tavily/exa]: Selects the web search mode. `auto` uses native search for OpenAI, Google, and Anthropic, and otherwise leaves web search off unless you choose an external provider. + + +- **WEB_SEARCH_MAX_RESULTS**: Maximum external search results to add to model context (default `5`, maximum `10`). +- **SEARXNG_BASE_URL**: Base URL for a self-hosted SearXNG instance. +- **TAVILY_API_KEY**, **EXA_API_KEY**: Credentials for optional hosted search APIs. + +- **EXTENDED_REASONING**=[true/false]: Enables extended reasoning where supported by the configured stack. + +#### Ollama + +Use when **LLM** is **ollama**: + +- **OLLAMA_URL**: Base URL of the Ollama HTTP API (e.g. `http://host.docker.internal:11434` from Docker). +- **OLLAMA_MODEL**: Model name in Ollama (e.g. `llama3.2:3b`). +- **START_OLLAMA**=[true/false]: Container entrypoint (`start.js`): optional install + `ollama serve`. Default **false** (`development` / `production` compose). + +#### Presentation memory (Mem0 OSS) + +Mem0 uses local Qdrant + SQLite (OSS); memory is scoped per presentation. + +By default the Docker runtime now points Mem0 at a local Ollama-compatible LLM endpoint, so it no longer needs an OpenAI key just to initialize. If you want to use OpenAI instead, set `MEM0_LLM_BASE_URL`/`MEM0_LLM_API_KEY` to your OpenAI-compatible endpoint and key. +Docker images install the default spaCy model (`en_core_web_sm`) during build so Mem0 can start without extra setup on each run. + +| Variable | Purpose | +| ---------------------------- | ---------------------------------------------------------------------------------------------------------------- | +| **MEM0_ENABLED** | **true**/false (compose default **true**). | +| **MEM0_LLM_MODEL** | Mem0 LLM model name (compose default **`llama3.1:latest`** or `OLLAMA_MODEL`). | +| **MEM0_LLM_API_KEY** | Mem0 LLM API key placeholder for OpenAI-compatible clients (compose default **`ollama`**). | +| **MEM0_LLM_BASE_URL** | Mem0 LLM base URL (compose default **`OLLAMA_URL`** or `http://host.docker.internal:11434`). | +| **MEM0_DIR** | Root directory (compose default **`/app_data/mem0`**). | +| **MEM0_EMBEDDER_PROVIDER** | Embedder backend (compose default **`fastembed`**). | +| **MEM0_EMBEDDER_MODEL** | Model id (compose default **`BAAI/bge-small-en-v1.5`**). | +| **MEM0_EMBEDDING_DIMS** | Vector size (compose default **384**). | +| **MEM0_SPACY_MODEL** | Optional spaCy model override (default **`en_core_web_sm`**). | +| **MEM0_REQUIRE_SPACY_MODEL** | Keep as **true** (default). Set to false only if you intentionally want Mem0 to run without spaCy lemmatization. | + +#### Document parsing (LiteParse) + +| Variable | Purpose | +| ------------------------- | ----------------------------------------- | +| **LITEPARSE_DPI** | OCR render DPI (compose default **120**). | +| **LITEPARSE_NUM_WORKERS** | Worker count (compose default **1**). | + +#### Database + +- **DATABASE_URL**: SQLAlchemy URL; if unset, the app falls back to SQLite under app data. +- **MIGRATE_DATABASE_ON_STARTUP**: Compose sets **`true`** for all services so migrations run on startup. + +#### Image generation + +These variables match `docker-compose.yml`. **`IMAGE_PROVIDER`** selects the backend (`pexels`, `pixabay`, `gemini_flash`, `nanobanana_pro`, `dall-e-3`, `gpt-image-1.5`, `comfyui`, `open_webui`). Use **OPENAI_API_KEY** for OpenAI image modes and **GOOGLE_API_KEY** for Gemini image modes (same keys as the LLM section). + +- **DISABLE_IMAGE_GENERATION**=[true/false]: Disable slide image generation. +- **IMAGE_PROVIDER**: Provider id (see enum above). +- **PEXELS_API_KEY**: Pexels stock images. +- **PIXABAY_API_KEY**: Pixabay stock images. +- **DALL_E_3_QUALITY**=[standard/hd]: Optional for **dall-e-3** (default `standard`). +- **GPT_IMAGE_1_5_QUALITY**=[low/medium/high]: Optional for **gpt-image-1.5** (default `medium`). +- **COMFYUI_URL** / **COMFYUI_WORKFLOW**: Self-hosted ComfyUI workflow JSON. +- **OPEN_WEBUI_IMAGE_URL** / **OPEN_WEBUI_IMAGE_API_KEY**: Open WebUI–compatible image endpoint. +- **OPENAI_COMPAT_IMAGE_BASE_URL** / **OPENAI_COMPAT_IMAGE_API_KEY** / **OPENAI_COMPAT_IMAGE_MODEL**: Required if using **openai_compatible** to send image requests to any OpenAI-compatible `/v1/images/*` endpoint (LiteLLM, Azure, vLLM Gateways, etc.). + +#### Telemetry + +- **DISABLE_ANONYMOUS_TRACKING**=[true/false]: Set to **true** to disable anonymous telemetry. + +#### Authentication (web login) + +Presenton uses a **single admin account** per instance. Credentials live in `app_data` (hashed; see `userConfig.json`). Pass these with `-e` or via `.env` for compose: + +- **AUTH_USERNAME** / **AUTH_PASSWORD** — Preseed the admin login on first boot (password at least 6 characters). Ignored if a user already exists unless **AUTH_OVERRIDE_FROM_ENV** is set. +- **AUTH_OVERRIDE_FROM_ENV**=[true/false] — If **true**, replace stored credentials from the env vars on every FastAPI startup and rotate the session signing secret (invalidates existing sessions). Remove after a one-off rotation. +- **RESET_AUTH**=[true/false] — If **true**, clear stored credentials on startup. Use for a **single** boot to recover access, then unset. + +**Examples** + +```bash +docker run -it --name presenton -p 5001:80 -v "./app_data:/app_data" ghcr.io/presenton/presenton:latest +``` + +```bash +docker run -it --name presenton -p 5001:80 -e AUTH_USERNAME=admin -e AUTH_PASSWORD=changeme123 -v "./app_data:/app_data" ghcr.io/presenton/presenton:latest +``` + +```bash +docker run -it --name presenton -p 5001:80 -e AUTH_USERNAME=admin -e AUTH_PASSWORD=changeme123 -v "${PWD}\app_data:/app_data" ghcr.io/presenton/presenton:latest +``` + +```bash +docker stop presenton && docker rm presenton && docker run -it --name presenton -p 5001:80 -e AUTH_USERNAME=admin -e AUTH_PASSWORD=newcred456 -e AUTH_OVERRIDE_FROM_ENV=true -v "./app_data:/app_data" ghcr.io/presenton/presenton:latest +``` + +```bash +docker stop presenton && docker rm presenton && docker run -it --name presenton -p 5001:80 -e RESET_AUTH=true -v "./app_data:/app_data" ghcr.io/presenton/presenton:latest +``` + +```bash +docker stop presenton && docker rm presenton && docker run -it --name presenton -p 5001:80 -e AUTH_USERNAME=admin -e AUTH_PASSWORD=changeme123 -v "./app_data:/app_data" ghcr.io/presenton/presenton:latest +``` + +**Manual reset:** stop the container, edit `./app_data/userConfig.json`, delete `AUTH_USERNAME`, `AUTH_PASSWORD_HASH`, and `AUTH_SECRET_KEY`, save, and start again. + +Sign out from the app: **Settings → Other → Sign out**. + +#### MCP authentication + +When auth is configured (`AUTH_USERNAME` / `AUTH_PASSWORD`), the MCP endpoint at `/mcp` now requires authentication as well. + +1. Log in once to get a bearer token: + +```bash +curl -s -X POST http://localhost:5001/api/v1/auth/login \ + -H "Content-Type: application/json" \ + -d '{"username":"admin","password":"changeme123"}' +``` + +The response includes: + +- `access_token` (session token) +- `token_type` (`bearer`) + +2. Configure your MCP client to send that token on every request: + +```json +{ + "mcpServers": { + "presenton": { + "url": "http://localhost:5001/mcp", + "headers": { + "Authorization": "Bearer " + } + } + } +} +``` + +Notes: + +- If you rotate credentials with `AUTH_OVERRIDE_FROM_ENV=true`, previously issued session tokens are invalidated. +- MCP is not available in the Electron desktop app (`PRESENTON_ELECTRON=true`). Electron runs with `DISABLE_AUTH=true` by default, and the MCP server is disabled there to avoid auth conflicts. + +> Note: LLM and image variables above are forwarded from **`docker-compose.yml`** when set in `.env`. + +
+
+ +**Docker Run Examples by Provider** + +Same variables as compose; use `-e` instead of `.env` when running `docker run` directly. + +- Using OpenAI +
docker run -it --name presenton -p 5001:80 -e LLM="openai" -e OPENAI_API_KEY="******" -e IMAGE_PROVIDER="dall-e-3" -e CAN_CHANGE_KEYS="false" -v "./app_data:/app_data" ghcr.io/presenton/presenton:latest
+ +- Using Google +
docker run -it --name presenton -p 5001:80 -e LLM="google" -e GOOGLE_API_KEY="******" -e IMAGE_PROVIDER="gemini_flash" -e CAN_CHANGE_KEYS="false" -v "./app_data:/app_data" ghcr.io/presenton/presenton:latest
+ +- Using Vertex AI (API key mode) +
docker run -it --name presenton -p 5001:80 -e LLM="vertex" -e VERTEX_API_KEY="******" -e VERTEX_MODEL="gemini-2.5-flash" -e IMAGE_PROVIDER="gemini_flash" -e CAN_CHANGE_KEYS="false" -v "./app_data:/app_data" ghcr.io/presenton/presenton:latest
+ +- Using Azure OpenAI +
docker run -it --name presenton -p 5001:80 -e LLM="azure" -e AZURE_OPENAI_API_KEY="******" -e AZURE_OPENAI_MODEL="gpt-4.1" -e AZURE_OPENAI_API_VERSION="2024-10-21" -e AZURE_OPENAI_ENDPOINT="https://YOUR-RESOURCE.openai.azure.com" -e IMAGE_PROVIDER="pexels" -e PEXELS_API_KEY="******" -e CAN_CHANGE_KEYS="false" -v "./app_data:/app_data" ghcr.io/presenton/presenton:latest
+ +- Using Amazon Bedrock (on-demand model ID) — see **[docs/amazon-bedrock.md](docs/amazon-bedrock.md)** for inference profiles, IAM, and troubleshooting. +
docker run -it --name presenton -p 5001:80 -e LLM="bedrock" -e BEDROCK_REGION="us-east-1" -e BEDROCK_AWS_ACCESS_KEY_ID="******" -e BEDROCK_AWS_SECRET_ACCESS_KEY="******" -e BEDROCK_MODEL="us.anthropic.claude-3-5-haiku-20241022-v1:0" -e IMAGE_PROVIDER="pexels" -e PEXELS_API_KEY="******" -e CAN_CHANGE_KEYS="false" -v "./app_data:/app_data" ghcr.io/presenton/presenton:latest
+ +- Using Amazon Bedrock (inference profile ARN, e.g. Claude Sonnet 4.6) +
docker run -it --name presenton -p 5001:80 -e LLM="bedrock" -e BEDROCK_REGION="us-east-1" -e BEDROCK_AWS_ACCESS_KEY_ID="******" -e BEDROCK_AWS_SECRET_ACCESS_KEY="******" -e BEDROCK_MODEL="arn:aws:bedrock:us-east-1:YOUR_ACCOUNT_ID:inference-profile/us.anthropic.claude-sonnet-4-6" -e IMAGE_PROVIDER="pexels" -e PEXELS_API_KEY="******" -e CAN_CHANGE_KEYS="false" -v "./app_data:/app_data" ghcr.io/presenton/presenton:latest
+ +- Using Fireworks +
docker run -it --name presenton -p 5001:80 -e LLM="fireworks" -e FIREWORKS_API_KEY="******" -e FIREWORKS_MODEL="accounts/fireworks/models/llama-v3p1-8b-instruct" -e IMAGE_PROVIDER="pexels" -e PEXELS_API_KEY="******" -e CAN_CHANGE_KEYS="false" -v "./app_data:/app_data" ghcr.io/presenton/presenton:latest
+ +- Using Together AI +
docker run -it --name presenton -p 5001:80 -e LLM="together" -e TOGETHER_API_KEY="******" -e TOGETHER_MODEL="openai/gpt-oss-20b" -e IMAGE_PROVIDER="pexels" -e PEXELS_API_KEY="******" -e CAN_CHANGE_KEYS="false" -v "./app_data:/app_data" ghcr.io/presenton/presenton:latest
+ +- Using Ollama +
docker run -it --name presenton -p 5001:80 -e LLM="ollama" -e OLLAMA_MODEL="llama3.2:3b" -e IMAGE_PROVIDER="pexels" -e PEXELS_API_KEY="*******" -e CAN_CHANGE_KEYS="false" -v "./app_data:/app_data" ghcr.io/presenton/presenton:latest
+ +- Using Anthropic +
docker run -it --name presenton -p 5001:80 -e LLM="anthropic" -e ANTHROPIC_API_KEY="******" -e IMAGE_PROVIDER="pexels" -e PEXELS_API_KEY="******" -e CAN_CHANGE_KEYS="false" -v "./app_data:/app_data" ghcr.io/presenton/presenton:latest
+ +- Using LM Studio (local) +
docker run -it --name presenton -p 5001:80 -e LLM="lmstudio" -e LMSTUDIO_BASE_URL="http://host.docker.internal:1234" -e LMSTUDIO_MODEL="openai/gpt-oss-20b" -e IMAGE_PROVIDER="pexels" -e PEXELS_API_KEY="******" -e CAN_CHANGE_KEYS="false" -v "./app_data:/app_data" ghcr.io/presenton/presenton:latest
+ +- Using OpenAI Compatible LLM API +
docker run -it -p 5001:80 -e CAN_CHANGE_KEYS="false"  -e LLM="custom" -e CUSTOM_LLM_URL="http://*****" -e CUSTOM_LLM_API_KEY="*****" -e CUSTOM_MODEL="llama3.2:3b" -e IMAGE_PROVIDER="pexels" -e  PEXELS_API_KEY="********" -v "./app_data:/app_data" ghcr.io/presenton/presenton:latest
+ +- Running Presenton with GPU Support + To use GPU acceleration with Ollama models, you need to install and configure the NVIDIA Container Toolkit. This allows Docker containers to access your NVIDIA GPU. + Once the NVIDIA Container Toolkit is installed and configured, you can run Presenton with GPU support by adding the `--gpus=all` flag: +
docker run -it --name presenton --gpus=all -p 5001:80 -e LLM="ollama" -e OLLAMA_MODEL="llama3.2:3b" -e IMAGE_PROVIDER="pexels" -e PEXELS_API_KEY="*******" -e CAN_CHANGE_KEYS="false" -v "./app_data:/app_data" ghcr.io/presenton/presenton:latest
+ +- Using an OpenAI-Compatible Image Provider + + This routes all slide image requests through your OpenAI-compatible gateway (LiteLLM, Azure, vLLM, etc.) while keeping the text LLM configuration independent: +
docker run -it --name presenton -p 5001:80 -e IMAGE_PROVIDER="openai_compatible" -e OPENAI_COMPAT_IMAGE_BASE_URL="https://proxy.example.com/v1" -e OPENAI_COMPAT_IMAGE_API_KEY="******" -e OPENAI_COMPAT_IMAGE_MODEL="gpt-image-1" -v "./app_data:/app_data" ghcr.io/presenton/presenton:latest
+ +# + +### ✨ Generate Presentation via API + +**Generate Presentation** + +

+Endpoint: /api/v1/ppt/presentation/generate
+Method: POST
+Content-Type: application/json +

+ +

+Authentication (HTTP Basic):
+All /api/v1/ routes except /api/v1/auth/* require authentication. Send your Presenton admin username and password (same as the web UI, or AUTH_USERNAME / AUTH_PASSWORD when preseeding Docker). With curl, put them right after -u as -u USERNAME:PASSWORD — that is HTTP Basic auth and sets Authorization: Basic … for you. Replace the sample username:password below with your real credentials. +

+ +**Request Body** + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ParameterTypeRequiredDescription
contentstringYesMain content used to generate the presentation.
slides_markdownstring[] | nullNoProvide custom slide markdown instead of auto-generation.
instructionsstring | nullNoAdditional generation instructions.
tonestringNo +Text tone (default: "default"). +Options: default, casual, professional, +funny, educational, sales_pitch +
verbositystringNo +Content density (default: "standard"). +Options: concise, standard, text-heavy +
web_searchbooleanNoEnable web search grounding (default: false).
n_slidesintegerNoNumber of slides to generate (default: 8).
languagestringNoPresentation language (default: "English").
templatestringNoTemplate name (default: "general").
include_table_of_contentsbooleanNoInclude table of contents slide (default: false).
include_title_slidebooleanNoInclude title slide (default: true).
filesstring[] | nullNo +Files to use in generation. +Upload first via /api/v1/ppt/files/upload. +
export_asstringNo +Export format (default: "pptx"). +Options: pptx, pdf +
+ +**Response** + +
{
+  "presentation_id": "string",
+  "path": "string",
+  "edit_path": "string"
+}
+ +**Example (curl + HTTP Basic auth with -u)** + +
curl -u username:password \
+  -X POST http://localhost:5001/api/v1/ppt/presentation/generate \
+  -H "Content-Type: application/json" \
+  -d '{
+   "content": "Introduction to Machine Learning",
+    "n_slides": 5,
+    "language": "English",
+    "template": "general",
+    "export_as": "pptx"
+  }'
+ +**Example Response** + +
{
+  "presentation_id": "d3000f96-096c-4768-b67b-e99aed029b57",
+  "path": "/app_data/d3000f96-096c-4768-b67b-e99aed029b57/Introduction_to_Machine_Learning.pptx",
+  "edit_path": "/presentation?id=d3000f96-096c-4768-b67b-e99aed029b57"
+}
+ +
+Note: +Prepend your server’s root URL to path and +edit_path to construct valid links. +
+ +**Documentation & Tutorials** + + + +# + +### 🚀 Roadmap + +Track the public roadmap on GitHub Projects: [https://github.com/orgs/presenton/projects/2](https://github.com/orgs/presenton/projects/2) diff --git a/README.wehub.md b/README.wehub.md new file mode 100644 index 0000000..299c37c --- /dev/null +++ b/README.wehub.md @@ -0,0 +1,7 @@ +# WeHub 来源说明 + +- 原始项目:`presenton/presenton` +- 原始仓库:https://github.com/presenton/presenton +- 导入方式:上游默认分支的最新快照 +- 原作者、版权和许可证信息以原始仓库及本仓库 LICENSE 为准 +- 本文件仅用于记录来源,不代表 WeHub 是原项目作者 diff --git a/VISION.md b/VISION.md new file mode 100644 index 0000000..3dcd6e9 --- /dev/null +++ b/VISION.md @@ -0,0 +1,17 @@ +# Vision + +Presenton exists to make local AI visual asset generation simple, powerful, and private. + +AI should not only produce unstructured text blobs. It should generate structured, beautiful visual documents with layout, hierarchy, themes, diagrams, and design systems built in from the start. + +Visual asset generation must not require surrendering data to external platforms. It must run locally. It must work inside private networks. It must remain usable in controlled and air gapped environments. + +Users should be free to choose their models. Local models. Open models. Proprietary providers. Hybrid setups. Text models and image models working together. Systems such as Ollama or any compatible runtime. No lock in. + +Templates and Designs are first class citizens. Users should be able to create them, modify them, package them, share them internally, and distribute them publicly. Themes and Asset packs can be configured manually. + +Presenton is an open source document engine, not a closed design platform. It is infrastructure for AI native visual workflows. Portable. Extensible. Model agnostic. Private by default. + +Our ambition is to become the open foundation for local, private, AI powered visual document generation. + +Beautiful visual assets. Generated locally. Owned by the user. diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..6e15f20 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,476 @@ +services: + production: + platform: ${PRESENTON_DOCKER_PLATFORM:-linux/amd64} + # image: ghcr.io/presenton/presenton:latest + build: + context: . + dockerfile: Dockerfile + ports: + # Set PRESENTON_HTTP_HOST_PORT to change the host port. + - "${PRESENTON_HTTP_HOST_PORT:-5001}:80" + # Required for Codex OAuth callback (OpenAI redirects browser directly to localhost:1455) + - "1455:1455" + volumes: + - ./app_data:/app_data + - ./servers/fastapi/templates:/app/servers/fastapi/templates:ro + - ./servers/fastapi/utils/internal_http.py:/app/servers/fastapi/utils/internal_http.py:ro + environment: + - PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium + - PRESENTON_HOST_HTTP_PORT=${PRESENTON_HOST_HTTP_PORT:-5001} + - MIGRATE_DATABASE_ON_STARTUP=true + - CAN_CHANGE_KEYS=${CAN_CHANGE_KEYS:-} + - LLM=${LLM:-} + - OPENAI_API_KEY=${OPENAI_API_KEY:-} + - OPENAI_MODEL=${OPENAI_MODEL:-} + - DEEPSEEK_API_KEY=${DEEPSEEK_API_KEY:-} + - DEEPSEEK_MODEL=${DEEPSEEK_MODEL:-} + - DEEPSEEK_BASE_URL=${DEEPSEEK_BASE_URL:-} + - GOOGLE_API_KEY=${GOOGLE_API_KEY:-} + - GOOGLE_MODEL=${GOOGLE_MODEL:-} + - VERTEX_API_KEY=${VERTEX_API_KEY:-} + - VERTEX_MODEL=${VERTEX_MODEL:-} + - VERTEX_PROJECT=${VERTEX_PROJECT:-} + - VERTEX_LOCATION=${VERTEX_LOCATION:-} + - VERTEX_BASE_URL=${VERTEX_BASE_URL:-} + - AZURE_OPENAI_API_KEY=${AZURE_OPENAI_API_KEY:-} + - AZURE_OPENAI_MODEL=${AZURE_OPENAI_MODEL:-} + - AZURE_OPENAI_ENDPOINT=${AZURE_OPENAI_ENDPOINT:-} + - AZURE_OPENAI_BASE_URL=${AZURE_OPENAI_BASE_URL:-} + - AZURE_OPENAI_API_VERSION=${AZURE_OPENAI_API_VERSION:-} + - AZURE_OPENAI_DEPLOYMENT=${AZURE_OPENAI_DEPLOYMENT:-} + - BEDROCK_REGION=${BEDROCK_REGION:-} + - BEDROCK_API_KEY=${BEDROCK_API_KEY:-} + - BEDROCK_AWS_ACCESS_KEY_ID=${BEDROCK_AWS_ACCESS_KEY_ID:-} + - BEDROCK_AWS_SECRET_ACCESS_KEY=${BEDROCK_AWS_SECRET_ACCESS_KEY:-} + - BEDROCK_AWS_SESSION_TOKEN=${BEDROCK_AWS_SESSION_TOKEN:-} + - BEDROCK_PROFILE_NAME=${BEDROCK_PROFILE_NAME:-} + - BEDROCK_MODEL=${BEDROCK_MODEL:-} + - OPENROUTER_API_KEY=${OPENROUTER_API_KEY:-} + - OPENROUTER_MODEL=${OPENROUTER_MODEL:-} + - OPENROUTER_BASE_URL=${OPENROUTER_BASE_URL:-} + - FIREWORKS_API_KEY=${FIREWORKS_API_KEY:-} + - FIREWORKS_MODEL=${FIREWORKS_MODEL:-} + - FIREWORKS_BASE_URL=${FIREWORKS_BASE_URL:-} + - TOGETHER_API_KEY=${TOGETHER_API_KEY:-} + - TOGETHER_MODEL=${TOGETHER_MODEL:-} + - TOGETHER_BASE_URL=${TOGETHER_BASE_URL:-} + - CEREBRAS_API_KEY=${CEREBRAS_API_KEY:-} + - CEREBRAS_MODEL=${CEREBRAS_MODEL:-} + - CEREBRAS_BASE_URL=${CEREBRAS_BASE_URL:-} + - ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY:-} + - ANTHROPIC_MODEL=${ANTHROPIC_MODEL:-} + - OLLAMA_URL=${OLLAMA_URL:-} + - OLLAMA_MODEL=${OLLAMA_MODEL:-} + - START_OLLAMA=${START_OLLAMA:-false} + - CUSTOM_LLM_URL=${CUSTOM_LLM_URL:-} + - CUSTOM_LLM_API_KEY=${CUSTOM_LLM_API_KEY:-} + - CUSTOM_MODEL=${CUSTOM_MODEL:-} + - LITELLM_BASE_URL=${LITELLM_BASE_URL:-} + - LITELLM_API_KEY=${LITELLM_API_KEY:-} + - LITELLM_MODEL=${LITELLM_MODEL:-} + - LMSTUDIO_BASE_URL=${LMSTUDIO_BASE_URL:-} + - LMSTUDIO_API_KEY=${LMSTUDIO_API_KEY:-} + - LMSTUDIO_MODEL=${LMSTUDIO_MODEL:-} + - CODEX_MODEL=${CODEX_MODEL:-} + - DISABLE_IMAGE_GENERATION=${DISABLE_IMAGE_GENERATION:-} + - IMAGE_PROVIDER=${IMAGE_PROVIDER:-} + - PEXELS_API_KEY=${PEXELS_API_KEY:-} + - PIXABAY_API_KEY=${PIXABAY_API_KEY:-} + - DALL_E_3_QUALITY=${DALL_E_3_QUALITY:-} + - GPT_IMAGE_1_5_QUALITY=${GPT_IMAGE_1_5_QUALITY:-} + - EXTENDED_REASONING=${EXTENDED_REASONING:-} + - DISABLE_THINKING=${DISABLE_THINKING:-} + - WEB_GROUNDING=${WEB_GROUNDING:-} + - WEB_SEARCH_PROVIDER=${WEB_SEARCH_PROVIDER:-} + - WEB_SEARCH_MAX_RESULTS=${WEB_SEARCH_MAX_RESULTS:-} + - SEARXNG_BASE_URL=${SEARXNG_BASE_URL:-} + - TAVILY_API_KEY=${TAVILY_API_KEY:-} + - EXA_API_KEY=${EXA_API_KEY:-} + - BRAVE_SEARCH_API_KEY=${BRAVE_SEARCH_API_KEY:-} + - SERPER_API_KEY=${SERPER_API_KEY:-} + - DATABASE_URL=${DATABASE_URL:-} + - DISABLE_ANONYMOUS_TRACKING=${DISABLE_ANONYMOUS_TRACKING:-} + - COMFYUI_URL=${COMFYUI_URL:-} + - COMFYUI_WORKFLOW=${COMFYUI_WORKFLOW:-} + - MEM0_LLM_MODEL=${MEM0_LLM_MODEL:-${OLLAMA_MODEL:-llama3.1:latest}} + - MEM0_LLM_API_KEY=${MEM0_LLM_API_KEY:-ollama} + - MEM0_LLM_BASE_URL=${MEM0_LLM_BASE_URL:-${OLLAMA_URL:-http://host.docker.internal:11434}} + - MEM0_ENABLED=${MEM0_ENABLED:-true} + - MEM0_DIR=${MEM0_DIR:-/app_data/mem0} + - MEM0_EMBEDDER_PROVIDER=${MEM0_EMBEDDER_PROVIDER:-fastembed} + - MEM0_EMBEDDER_MODEL=${MEM0_EMBEDDER_MODEL:-BAAI/bge-small-en-v1.5} + - MEM0_EMBEDDING_DIMS=${MEM0_EMBEDDING_DIMS:-384} + - MEM0_SPACY_MODEL=${MEM0_SPACY_MODEL:-en_core_web_sm} + - MEM0_REQUIRE_SPACY_MODEL=${MEM0_REQUIRE_SPACY_MODEL:-true} + - LITEPARSE_DPI=${LITEPARSE_DPI:-120} + - LITEPARSE_NUM_WORKERS=${LITEPARSE_NUM_WORKERS:-1} + - OPEN_WEBUI_IMAGE_URL=${OPEN_WEBUI_IMAGE_URL:-} + - OPEN_WEBUI_IMAGE_API_KEY=${OPEN_WEBUI_IMAGE_API_KEY:-} + - OPENAI_COMPAT_IMAGE_BASE_URL=${OPENAI_COMPAT_IMAGE_BASE_URL:-} + - OPENAI_COMPAT_IMAGE_API_KEY=${OPENAI_COMPAT_IMAGE_API_KEY:-} + - OPENAI_COMPAT_IMAGE_MODEL=${OPENAI_COMPAT_IMAGE_MODEL:-} + - AUTH_USERNAME=${AUTH_USERNAME:-} + - AUTH_PASSWORD=${AUTH_PASSWORD:-} + - AUTH_OVERRIDE_FROM_ENV=${AUTH_OVERRIDE_FROM_ENV:-} + - RESET_AUTH=${RESET_AUTH:-} + + production-gpu: + platform: ${PRESENTON_DOCKER_PLATFORM:-linux/amd64} + # image: ghcr.io/presenton/presenton:latest + build: + context: . + dockerfile: Dockerfile + deploy: + resources: + reservations: + devices: + - driver: nvidia + count: 1 + capabilities: [gpu] + ports: + # Set PRESENTON_HTTP_HOST_PORT to change the host port. + - "${PRESENTON_HTTP_HOST_PORT:-5001}:80" + # Required for Codex OAuth callback (OpenAI redirects browser directly to localhost:1455) + - "1455:1455" + volumes: + - ./app_data:/app_data + environment: + - PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium + - PRESENTON_HOST_HTTP_PORT=${PRESENTON_HOST_HTTP_PORT:-5000} + - MIGRATE_DATABASE_ON_STARTUP=true + - CAN_CHANGE_KEYS=${CAN_CHANGE_KEYS:-} + - LLM=${LLM:-} + - OPENAI_API_KEY=${OPENAI_API_KEY:-} + - OPENAI_MODEL=${OPENAI_MODEL:-} + - DEEPSEEK_API_KEY=${DEEPSEEK_API_KEY:-} + - DEEPSEEK_MODEL=${DEEPSEEK_MODEL:-} + - DEEPSEEK_BASE_URL=${DEEPSEEK_BASE_URL:-} + - GOOGLE_API_KEY=${GOOGLE_API_KEY:-} + - GOOGLE_MODEL=${GOOGLE_MODEL:-} + - VERTEX_API_KEY=${VERTEX_API_KEY:-} + - VERTEX_MODEL=${VERTEX_MODEL:-} + - VERTEX_PROJECT=${VERTEX_PROJECT:-} + - VERTEX_LOCATION=${VERTEX_LOCATION:-} + - VERTEX_BASE_URL=${VERTEX_BASE_URL:-} + - AZURE_OPENAI_API_KEY=${AZURE_OPENAI_API_KEY:-} + - AZURE_OPENAI_MODEL=${AZURE_OPENAI_MODEL:-} + - AZURE_OPENAI_ENDPOINT=${AZURE_OPENAI_ENDPOINT:-} + - AZURE_OPENAI_BASE_URL=${AZURE_OPENAI_BASE_URL:-} + - AZURE_OPENAI_API_VERSION=${AZURE_OPENAI_API_VERSION:-} + - AZURE_OPENAI_DEPLOYMENT=${AZURE_OPENAI_DEPLOYMENT:-} + - BEDROCK_REGION=${BEDROCK_REGION:-} + - BEDROCK_API_KEY=${BEDROCK_API_KEY:-} + - BEDROCK_AWS_ACCESS_KEY_ID=${BEDROCK_AWS_ACCESS_KEY_ID:-} + - BEDROCK_AWS_SECRET_ACCESS_KEY=${BEDROCK_AWS_SECRET_ACCESS_KEY:-} + - BEDROCK_AWS_SESSION_TOKEN=${BEDROCK_AWS_SESSION_TOKEN:-} + - BEDROCK_PROFILE_NAME=${BEDROCK_PROFILE_NAME:-} + - BEDROCK_MODEL=${BEDROCK_MODEL:-} + - OPENROUTER_API_KEY=${OPENROUTER_API_KEY:-} + - OPENROUTER_MODEL=${OPENROUTER_MODEL:-} + - OPENROUTER_BASE_URL=${OPENROUTER_BASE_URL:-} + - FIREWORKS_API_KEY=${FIREWORKS_API_KEY:-} + - FIREWORKS_MODEL=${FIREWORKS_MODEL:-} + - FIREWORKS_BASE_URL=${FIREWORKS_BASE_URL:-} + - TOGETHER_API_KEY=${TOGETHER_API_KEY:-} + - TOGETHER_MODEL=${TOGETHER_MODEL:-} + - TOGETHER_BASE_URL=${TOGETHER_BASE_URL:-} + - CEREBRAS_API_KEY=${CEREBRAS_API_KEY:-} + - CEREBRAS_MODEL=${CEREBRAS_MODEL:-} + - CEREBRAS_BASE_URL=${CEREBRAS_BASE_URL:-} + - ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY:-} + - ANTHROPIC_MODEL=${ANTHROPIC_MODEL:-} + - OLLAMA_URL=${OLLAMA_URL:-} + - OLLAMA_MODEL=${OLLAMA_MODEL:-} + - START_OLLAMA=${START_OLLAMA:-false} + - CUSTOM_LLM_URL=${CUSTOM_LLM_URL:-} + - CUSTOM_LLM_API_KEY=${CUSTOM_LLM_API_KEY:-} + - CUSTOM_MODEL=${CUSTOM_MODEL:-} + - LITELLM_BASE_URL=${LITELLM_BASE_URL:-} + - LITELLM_API_KEY=${LITELLM_API_KEY:-} + - LITELLM_MODEL=${LITELLM_MODEL:-} + - LMSTUDIO_BASE_URL=${LMSTUDIO_BASE_URL:-} + - LMSTUDIO_API_KEY=${LMSTUDIO_API_KEY:-} + - LMSTUDIO_MODEL=${LMSTUDIO_MODEL:-} + - CODEX_MODEL=${CODEX_MODEL:-} + - DISABLE_IMAGE_GENERATION=${DISABLE_IMAGE_GENERATION:-} + - IMAGE_PROVIDER=${IMAGE_PROVIDER:-} + - PEXELS_API_KEY=${PEXELS_API_KEY:-} + - PIXABAY_API_KEY=${PIXABAY_API_KEY:-} + - DALL_E_3_QUALITY=${DALL_E_3_QUALITY:-} + - GPT_IMAGE_1_5_QUALITY=${GPT_IMAGE_1_5_QUALITY:-} + - EXTENDED_REASONING=${EXTENDED_REASONING:-} + - DISABLE_THINKING=${DISABLE_THINKING:-} + - WEB_GROUNDING=${WEB_GROUNDING:-} + - WEB_SEARCH_PROVIDER=${WEB_SEARCH_PROVIDER:-} + - WEB_SEARCH_MAX_RESULTS=${WEB_SEARCH_MAX_RESULTS:-} + - SEARXNG_BASE_URL=${SEARXNG_BASE_URL:-} + - TAVILY_API_KEY=${TAVILY_API_KEY:-} + - EXA_API_KEY=${EXA_API_KEY:-} + - BRAVE_SEARCH_API_KEY=${BRAVE_SEARCH_API_KEY:-} + - SERPER_API_KEY=${SERPER_API_KEY:-} + - DATABASE_URL=${DATABASE_URL:-} + - DISABLE_ANONYMOUS_TRACKING=${DISABLE_ANONYMOUS_TRACKING:-} + - COMFYUI_URL=${COMFYUI_URL:-} + - COMFYUI_WORKFLOW=${COMFYUI_WORKFLOW:-} + - MEM0_LLM_MODEL=${MEM0_LLM_MODEL:-${OLLAMA_MODEL:-llama3.1:latest}} + - MEM0_LLM_API_KEY=${MEM0_LLM_API_KEY:-ollama} + - MEM0_LLM_BASE_URL=${MEM0_LLM_BASE_URL:-${OLLAMA_URL:-http://host.docker.internal:11434}} + - MEM0_ENABLED=${MEM0_ENABLED:-true} + - MEM0_DIR=${MEM0_DIR:-/app_data/mem0} + - MEM0_EMBEDDER_PROVIDER=${MEM0_EMBEDDER_PROVIDER:-fastembed} + - MEM0_EMBEDDER_MODEL=${MEM0_EMBEDDER_MODEL:-BAAI/bge-small-en-v1.5} + - MEM0_EMBEDDING_DIMS=${MEM0_EMBEDDING_DIMS:-384} + - MEM0_SPACY_MODEL=${MEM0_SPACY_MODEL:-en_core_web_sm} + - MEM0_REQUIRE_SPACY_MODEL=${MEM0_REQUIRE_SPACY_MODEL:-true} + - LITEPARSE_DPI=${LITEPARSE_DPI:-120} + - LITEPARSE_NUM_WORKERS=${LITEPARSE_NUM_WORKERS:-1} + - OPEN_WEBUI_IMAGE_URL=${OPEN_WEBUI_IMAGE_URL:-} + - OPEN_WEBUI_IMAGE_API_KEY=${OPEN_WEBUI_IMAGE_API_KEY:-} + - OPENAI_COMPAT_IMAGE_BASE_URL=${OPENAI_COMPAT_IMAGE_BASE_URL:-} + - OPENAI_COMPAT_IMAGE_API_KEY=${OPENAI_COMPAT_IMAGE_API_KEY:-} + - OPENAI_COMPAT_IMAGE_MODEL=${OPENAI_COMPAT_IMAGE_MODEL:-} + - AUTH_USERNAME=${AUTH_USERNAME:-} + - AUTH_PASSWORD=${AUTH_PASSWORD:-} + - AUTH_OVERRIDE_FROM_ENV=${AUTH_OVERRIDE_FROM_ENV:-} + - RESET_AUTH=${RESET_AUTH:-} + + development: + platform: ${PRESENTON_DOCKER_PLATFORM:-linux/amd64} + build: + context: . + dockerfile: Dockerfile.dev + ports: + - "${PRESENTON_HTTP_HOST_PORT:-5001}:80" + # Required for Codex OAuth callback (OpenAI redirects browser directly to localhost:1455) + - "1455:1455" + volumes: + - .:/app + - presenton_root_node_modules:/app/node_modules + - presenton_document_extraction_liteparse:/app/document-extraction-liteparse + - ./app_data:/app_data + environment: + # Bundled PPTX/PDF export (Puppeteer); matches CI and production image. + - PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium + - PRESENTON_HOST_HTTP_PORT=${PRESENTON_HOST_HTTP_PORT:-5001} + # Ollama is not baked into the image; set START_OLLAMA=true for runtime install, or use OLLAMA_URL. + - START_OLLAMA=${START_OLLAMA:-false} + - MIGRATE_DATABASE_ON_STARTUP=true + - CAN_CHANGE_KEYS=${CAN_CHANGE_KEYS:-} + - LLM=${LLM:-} + - OPENAI_API_KEY=${OPENAI_API_KEY:-} + - OPENAI_MODEL=${OPENAI_MODEL:-} + - DEEPSEEK_API_KEY=${DEEPSEEK_API_KEY:-} + - DEEPSEEK_MODEL=${DEEPSEEK_MODEL:-} + - DEEPSEEK_BASE_URL=${DEEPSEEK_BASE_URL:-} + - GOOGLE_API_KEY=${GOOGLE_API_KEY:-} + - GOOGLE_MODEL=${GOOGLE_MODEL:-} + - VERTEX_API_KEY=${VERTEX_API_KEY:-} + - VERTEX_MODEL=${VERTEX_MODEL:-} + - VERTEX_PROJECT=${VERTEX_PROJECT:-} + - VERTEX_LOCATION=${VERTEX_LOCATION:-} + - VERTEX_BASE_URL=${VERTEX_BASE_URL:-} + - AZURE_OPENAI_API_KEY=${AZURE_OPENAI_API_KEY:-} + - AZURE_OPENAI_MODEL=${AZURE_OPENAI_MODEL:-} + - AZURE_OPENAI_ENDPOINT=${AZURE_OPENAI_ENDPOINT:-} + - AZURE_OPENAI_BASE_URL=${AZURE_OPENAI_BASE_URL:-} + - AZURE_OPENAI_API_VERSION=${AZURE_OPENAI_API_VERSION:-} + - AZURE_OPENAI_DEPLOYMENT=${AZURE_OPENAI_DEPLOYMENT:-} + - BEDROCK_REGION=${BEDROCK_REGION:-} + - BEDROCK_API_KEY=${BEDROCK_API_KEY:-} + - BEDROCK_AWS_ACCESS_KEY_ID=${BEDROCK_AWS_ACCESS_KEY_ID:-} + - BEDROCK_AWS_SECRET_ACCESS_KEY=${BEDROCK_AWS_SECRET_ACCESS_KEY:-} + - BEDROCK_AWS_SESSION_TOKEN=${BEDROCK_AWS_SESSION_TOKEN:-} + - BEDROCK_PROFILE_NAME=${BEDROCK_PROFILE_NAME:-} + - BEDROCK_MODEL=${BEDROCK_MODEL:-} + - OPENROUTER_API_KEY=${OPENROUTER_API_KEY:-} + - OPENROUTER_MODEL=${OPENROUTER_MODEL:-} + - OPENROUTER_BASE_URL=${OPENROUTER_BASE_URL:-} + - FIREWORKS_API_KEY=${FIREWORKS_API_KEY:-} + - FIREWORKS_MODEL=${FIREWORKS_MODEL:-} + - FIREWORKS_BASE_URL=${FIREWORKS_BASE_URL:-} + - TOGETHER_API_KEY=${TOGETHER_API_KEY:-} + - TOGETHER_MODEL=${TOGETHER_MODEL:-} + - TOGETHER_BASE_URL=${TOGETHER_BASE_URL:-} + - CEREBRAS_API_KEY=${CEREBRAS_API_KEY:-} + - CEREBRAS_MODEL=${CEREBRAS_MODEL:-} + - CEREBRAS_BASE_URL=${CEREBRAS_BASE_URL:-} + - ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY:-} + - ANTHROPIC_MODEL=${ANTHROPIC_MODEL:-} + - OLLAMA_URL=${OLLAMA_URL:-} + - OLLAMA_MODEL=${OLLAMA_MODEL:-} + - CUSTOM_LLM_URL=${CUSTOM_LLM_URL:-} + - CUSTOM_LLM_API_KEY=${CUSTOM_LLM_API_KEY:-} + - CUSTOM_MODEL=${CUSTOM_MODEL:-} + - LITELLM_BASE_URL=${LITELLM_BASE_URL:-} + - LITELLM_API_KEY=${LITELLM_API_KEY:-} + - LITELLM_MODEL=${LITELLM_MODEL:-} + - LMSTUDIO_BASE_URL=${LMSTUDIO_BASE_URL:-} + - LMSTUDIO_API_KEY=${LMSTUDIO_API_KEY:-} + - LMSTUDIO_MODEL=${LMSTUDIO_MODEL:-} + - CODEX_MODEL=${CODEX_MODEL:-} + - DISABLE_IMAGE_GENERATION=${DISABLE_IMAGE_GENERATION:-} + - IMAGE_PROVIDER=${IMAGE_PROVIDER:-} + - PEXELS_API_KEY=${PEXELS_API_KEY:-} + - PIXABAY_API_KEY=${PIXABAY_API_KEY:-} + - DALL_E_3_QUALITY=${DALL_E_3_QUALITY:-} + - GPT_IMAGE_1_5_QUALITY=${GPT_IMAGE_1_5_QUALITY:-} + - EXTENDED_REASONING=${EXTENDED_REASONING:-} + - DISABLE_THINKING=${DISABLE_THINKING:-} + - WEB_GROUNDING=${WEB_GROUNDING:-} + - WEB_SEARCH_PROVIDER=${WEB_SEARCH_PROVIDER:-} + - WEB_SEARCH_MAX_RESULTS=${WEB_SEARCH_MAX_RESULTS:-} + - SEARXNG_BASE_URL=${SEARXNG_BASE_URL:-} + - TAVILY_API_KEY=${TAVILY_API_KEY:-} + - EXA_API_KEY=${EXA_API_KEY:-} + - BRAVE_SEARCH_API_KEY=${BRAVE_SEARCH_API_KEY:-} + - SERPER_API_KEY=${SERPER_API_KEY:-} + - DATABASE_URL=${DATABASE_URL:-} + - DISABLE_ANONYMOUS_TRACKING=${DISABLE_ANONYMOUS_TRACKING:-} + - COMFYUI_URL=${COMFYUI_URL:-} + - COMFYUI_WORKFLOW=${COMFYUI_WORKFLOW:-} + - MEM0_LLM_MODEL=${MEM0_LLM_MODEL:-${OLLAMA_MODEL:-llama3.1:latest}} + - MEM0_LLM_API_KEY=${MEM0_LLM_API_KEY:-ollama} + - MEM0_LLM_BASE_URL=${MEM0_LLM_BASE_URL:-${OLLAMA_URL:-http://host.docker.internal:11434}} + - MEM0_ENABLED=${MEM0_ENABLED:-true} + - MEM0_DIR=${MEM0_DIR:-/app_data/mem0} + - MEM0_EMBEDDER_PROVIDER=${MEM0_EMBEDDER_PROVIDER:-fastembed} + - MEM0_EMBEDDER_MODEL=${MEM0_EMBEDDER_MODEL:-BAAI/bge-small-en-v1.5} + - MEM0_EMBEDDING_DIMS=${MEM0_EMBEDDING_DIMS:-384} + - MEM0_SPACY_MODEL=${MEM0_SPACY_MODEL:-en_core_web_sm} + - MEM0_REQUIRE_SPACY_MODEL=${MEM0_REQUIRE_SPACY_MODEL:-true} + - LITEPARSE_DPI=${LITEPARSE_DPI:-120} + - LITEPARSE_NUM_WORKERS=${LITEPARSE_NUM_WORKERS:-1} + - OPEN_WEBUI_IMAGE_URL=${OPEN_WEBUI_IMAGE_URL:-} + - OPEN_WEBUI_IMAGE_API_KEY=${OPEN_WEBUI_IMAGE_API_KEY:-} + - OPENAI_COMPAT_IMAGE_BASE_URL=${OPENAI_COMPAT_IMAGE_BASE_URL:-} + - OPENAI_COMPAT_IMAGE_API_KEY=${OPENAI_COMPAT_IMAGE_API_KEY:-} + - OPENAI_COMPAT_IMAGE_MODEL=${OPENAI_COMPAT_IMAGE_MODEL:-} + - AUTH_USERNAME=${AUTH_USERNAME:-} + - AUTH_PASSWORD=${AUTH_PASSWORD:-} + - AUTH_OVERRIDE_FROM_ENV=${AUTH_OVERRIDE_FROM_ENV:-} + - RESET_AUTH=${RESET_AUTH:-} + + development-gpu: + platform: ${PRESENTON_DOCKER_PLATFORM:-linux/amd64} + build: + context: . + dockerfile: Dockerfile.dev + deploy: + resources: + reservations: + devices: + - driver: nvidia + count: 1 + capabilities: [gpu] + ports: + - "${PRESENTON_HTTP_HOST_PORT:-5001}:80" + # Required for Codex OAuth callback (OpenAI redirects browser directly to localhost:1455) + - "1455:1455" + volumes: + - .:/app + - presenton_root_node_modules:/app/node_modules + - presenton_document_extraction_liteparse:/app/document-extraction-liteparse + - ./app_data:/app_data + environment: + - PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium + - PRESENTON_HOST_HTTP_PORT=${PRESENTON_HOST_HTTP_PORT:-5000} + - START_OLLAMA=${START_OLLAMA:-false} + - MIGRATE_DATABASE_ON_STARTUP=true + - CAN_CHANGE_KEYS=${CAN_CHANGE_KEYS:-} + - LLM=${LLM:-} + - OPENAI_API_KEY=${OPENAI_API_KEY:-} + - OPENAI_MODEL=${OPENAI_MODEL:-} + - DEEPSEEK_API_KEY=${DEEPSEEK_API_KEY:-} + - DEEPSEEK_MODEL=${DEEPSEEK_MODEL:-} + - DEEPSEEK_BASE_URL=${DEEPSEEK_BASE_URL:-} + - GOOGLE_API_KEY=${GOOGLE_API_KEY:-} + - GOOGLE_MODEL=${GOOGLE_MODEL:-} + - VERTEX_API_KEY=${VERTEX_API_KEY:-} + - VERTEX_MODEL=${VERTEX_MODEL:-} + - VERTEX_PROJECT=${VERTEX_PROJECT:-} + - VERTEX_LOCATION=${VERTEX_LOCATION:-} + - VERTEX_BASE_URL=${VERTEX_BASE_URL:-} + - AZURE_OPENAI_API_KEY=${AZURE_OPENAI_API_KEY:-} + - AZURE_OPENAI_MODEL=${AZURE_OPENAI_MODEL:-} + - AZURE_OPENAI_ENDPOINT=${AZURE_OPENAI_ENDPOINT:-} + - AZURE_OPENAI_BASE_URL=${AZURE_OPENAI_BASE_URL:-} + - AZURE_OPENAI_API_VERSION=${AZURE_OPENAI_API_VERSION:-} + - AZURE_OPENAI_DEPLOYMENT=${AZURE_OPENAI_DEPLOYMENT:-} + - BEDROCK_REGION=${BEDROCK_REGION:-} + - BEDROCK_API_KEY=${BEDROCK_API_KEY:-} + - BEDROCK_AWS_ACCESS_KEY_ID=${BEDROCK_AWS_ACCESS_KEY_ID:-} + - BEDROCK_AWS_SECRET_ACCESS_KEY=${BEDROCK_AWS_SECRET_ACCESS_KEY:-} + - BEDROCK_AWS_SESSION_TOKEN=${BEDROCK_AWS_SESSION_TOKEN:-} + - BEDROCK_PROFILE_NAME=${BEDROCK_PROFILE_NAME:-} + - BEDROCK_MODEL=${BEDROCK_MODEL:-} + - OPENROUTER_API_KEY=${OPENROUTER_API_KEY:-} + - OPENROUTER_MODEL=${OPENROUTER_MODEL:-} + - OPENROUTER_BASE_URL=${OPENROUTER_BASE_URL:-} + - FIREWORKS_API_KEY=${FIREWORKS_API_KEY:-} + - FIREWORKS_MODEL=${FIREWORKS_MODEL:-} + - FIREWORKS_BASE_URL=${FIREWORKS_BASE_URL:-} + - TOGETHER_API_KEY=${TOGETHER_API_KEY:-} + - TOGETHER_MODEL=${TOGETHER_MODEL:-} + - TOGETHER_BASE_URL=${TOGETHER_BASE_URL:-} + - CEREBRAS_API_KEY=${CEREBRAS_API_KEY:-} + - CEREBRAS_MODEL=${CEREBRAS_MODEL:-} + - CEREBRAS_BASE_URL=${CEREBRAS_BASE_URL:-} + - ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY:-} + - ANTHROPIC_MODEL=${ANTHROPIC_MODEL:-} + - OLLAMA_URL=${OLLAMA_URL:-} + - OLLAMA_MODEL=${OLLAMA_MODEL:-} + - CUSTOM_LLM_URL=${CUSTOM_LLM_URL:-} + - CUSTOM_LLM_API_KEY=${CUSTOM_LLM_API_KEY:-} + - CUSTOM_MODEL=${CUSTOM_MODEL:-} + - LITELLM_BASE_URL=${LITELLM_BASE_URL:-} + - LITELLM_API_KEY=${LITELLM_API_KEY:-} + - LITELLM_MODEL=${LITELLM_MODEL:-} + - LMSTUDIO_BASE_URL=${LMSTUDIO_BASE_URL:-} + - LMSTUDIO_API_KEY=${LMSTUDIO_API_KEY:-} + - LMSTUDIO_MODEL=${LMSTUDIO_MODEL:-} + - CODEX_MODEL=${CODEX_MODEL:-} + - DISABLE_IMAGE_GENERATION=${DISABLE_IMAGE_GENERATION:-} + - IMAGE_PROVIDER=${IMAGE_PROVIDER:-} + - PEXELS_API_KEY=${PEXELS_API_KEY:-} + - PIXABAY_API_KEY=${PIXABAY_API_KEY:-} + - DALL_E_3_QUALITY=${DALL_E_3_QUALITY:-} + - GPT_IMAGE_1_5_QUALITY=${GPT_IMAGE_1_5_QUALITY:-} + - EXTENDED_REASONING=${EXTENDED_REASONING:-} + - DISABLE_THINKING=${DISABLE_THINKING:-} + - WEB_GROUNDING=${WEB_GROUNDING:-} + - WEB_SEARCH_PROVIDER=${WEB_SEARCH_PROVIDER:-} + - WEB_SEARCH_MAX_RESULTS=${WEB_SEARCH_MAX_RESULTS:-} + - SEARXNG_BASE_URL=${SEARXNG_BASE_URL:-} + - TAVILY_API_KEY=${TAVILY_API_KEY:-} + - EXA_API_KEY=${EXA_API_KEY:-} + - BRAVE_SEARCH_API_KEY=${BRAVE_SEARCH_API_KEY:-} + - SERPER_API_KEY=${SERPER_API_KEY:-} + - DATABASE_URL=${DATABASE_URL:-} + - DISABLE_ANONYMOUS_TRACKING=${DISABLE_ANONYMOUS_TRACKING:-} + - COMFYUI_URL=${COMFYUI_URL:-} + - COMFYUI_WORKFLOW=${COMFYUI_WORKFLOW:-} + - MEM0_LLM_MODEL=${MEM0_LLM_MODEL:-${OLLAMA_MODEL:-llama3.1:latest}} + - MEM0_LLM_API_KEY=${MEM0_LLM_API_KEY:-ollama} + - MEM0_LLM_BASE_URL=${MEM0_LLM_BASE_URL:-${OLLAMA_URL:-http://host.docker.internal:11434}} + - MEM0_ENABLED=${MEM0_ENABLED:-true} + - MEM0_DIR=${MEM0_DIR:-/app_data/mem0} + - MEM0_EMBEDDER_PROVIDER=${MEM0_EMBEDDER_PROVIDER:-fastembed} + - MEM0_EMBEDDER_MODEL=${MEM0_EMBEDDER_MODEL:-BAAI/bge-small-en-v1.5} + - MEM0_EMBEDDING_DIMS=${MEM0_EMBEDDING_DIMS:-384} + - MEM0_SPACY_MODEL=${MEM0_SPACY_MODEL:-en_core_web_sm} + - MEM0_REQUIRE_SPACY_MODEL=${MEM0_REQUIRE_SPACY_MODEL:-true} + - LITEPARSE_DPI=${LITEPARSE_DPI:-120} + - LITEPARSE_NUM_WORKERS=${LITEPARSE_NUM_WORKERS:-1} + - OPEN_WEBUI_IMAGE_URL=${OPEN_WEBUI_IMAGE_URL:-} + - OPEN_WEBUI_IMAGE_API_KEY=${OPEN_WEBUI_IMAGE_API_KEY:-} + - OPENAI_COMPAT_IMAGE_BASE_URL=${OPENAI_COMPAT_IMAGE_BASE_URL:-} + - OPENAI_COMPAT_IMAGE_API_KEY=${OPENAI_COMPAT_IMAGE_API_KEY:-} + - OPENAI_COMPAT_IMAGE_MODEL=${OPENAI_COMPAT_IMAGE_MODEL:-} + - AUTH_USERNAME=${AUTH_USERNAME:-} + - AUTH_PASSWORD=${AUTH_PASSWORD:-} + - AUTH_OVERRIDE_FROM_ENV=${AUTH_OVERRIDE_FROM_ENV:-} + - RESET_AUTH=${RESET_AUTH:-} + +volumes: + presenton_root_node_modules: + presenton_document_extraction_liteparse: diff --git a/docs/amazon-bedrock.md b/docs/amazon-bedrock.md new file mode 100644 index 0000000..9b52cd4 --- /dev/null +++ b/docs/amazon-bedrock.md @@ -0,0 +1,192 @@ +# Amazon Bedrock provider + +Presenton can use **Amazon Bedrock** as the text LLM provider for presentation generation, editing, and chat. Configure Bedrock in the app UI (**Settings → Text provider**) or with environment variables / `userConfig.json` (Docker and desktop). + +The backend sends your configured **Model** value to the Bedrock **Converse** API as `modelId`. That means you can use: + +- Standard on-demand **model IDs** (for example `us.anthropic.claude-3-5-haiku-20241022-v1:0`) +- **Inference profile ARNs** (required for some newer models such as Claude Sonnet 4.6) + +Region and credentials must match the model or profile you choose. + +--- + +## Required configuration + +| Field (UI) | Environment variable | Description | +| --- | --- | --- | +| **Provider** | `LLM=bedrock` | Select **Amazon Bedrock**. | +| **Region** | `BEDROCK_REGION` | AWS region for Bedrock (default: `us-east-1`). Must match where the model or inference profile is available. | +| **Model** | `BEDROCK_MODEL` | Model ID or inference profile ARN (see below). | +| **AWS Access Key ID** | `BEDROCK_AWS_ACCESS_KEY_ID` | IAM access key with Bedrock invoke permissions. | +| **AWS Secret Access Key** | `BEDROCK_AWS_SECRET_ACCESS_KEY` | Secret for the access key above. | + +### Authentication + +Use **one** of these patterns: + +1. **AWS access key pair** (most common): Access Key ID + Secret Access Key (required fields above). +2. **Bedrock API key** (optional UI field): `BEDROCK_API_KEY` — if set, you do not need the access key pair. + +Do not mix Bedrock API key auth with explicit AWS access key fields; the client accepts one method only. + +--- + +## Optional (advanced) fields + +Under **Advanced settings** in the Bedrock form (or via env): + +| Field (UI) | Environment variable | When to use | +| --- | --- | --- | +| **AWS Session Token** | `BEDROCK_AWS_SESSION_TOKEN` | Temporary credentials (STS, assumed role, SSO session). | +| **AWS Profile Name** | `BEDROCK_PROFILE_NAME` | Use a named profile from `~/.aws/credentials` instead of inline keys (desktop/local dev). | + +These are optional. Most Docker and server deployments only need region, model, and access key + secret. + +--- + +## Model ID vs inference profile ARN + +Many Bedrock models support **on-demand** invocation with a model ID like: + +```text +us.anthropic.claude-3-5-haiku-20241022-v1:0 +``` + +Some **newer** models (for example **Claude Sonnet 4.6**) do **not** support on-demand throughput with a plain model ID. For those you must use an **inference profile** ARN in the **Model** field. + +In the AWS console: **Bedrock → Inference profiles** (or cross-region inference profiles), copy the full ARN, and paste it into Presenton’s **Model** field unchanged. + +Presenton passes that string directly to Converse as `modelId`, so both formats work as long as AWS accepts them for your account and region. + +--- + +## Common error: on-demand throughput not supported + +You may see an error similar to: + +```text +Invocation of model ID anthropic.claude-sonnet-4-6 with on-demand throughput isn't supported. +A model ID is currently required in model invocation requests for on-demand throughput. +A foundation model ARN or inference profile ARN is currently required in model invocation requests. +``` + +**What it means** + +- The model ID you entered is valid in Bedrock, but that model **only** supports invocation through a **foundation model ARN** or **inference profile ARN**, not classic on-demand model IDs. +- This often applies to newer Anthropic models and **cross-region inference** setups. + +**What to do** + +1. Open **Amazon Bedrock** in the same **region** as `BEDROCK_REGION`. +2. Find the **inference profile** for the model (for example `us.anthropic.claude-sonnet-4-6`). +3. Copy the full **inference profile ARN**. +4. Paste the ARN into Presenton’s **Model** field (not the short model ID). +5. Ensure IAM allows `bedrock:InvokeModel` / Converse on that profile in that region. + +--- + +## Example: working configuration (Claude Sonnet 4.6) + +Use an inference profile ARN in **Model**, with region **us-east-1**: + +| Setting | Value | +| --- | --- | +| Provider | `bedrock` | +| Region | `us-east-1` | +| Model | `arn:aws:bedrock:us-east-1:471112542209:inference-profile/us.anthropic.claude-sonnet-4-6` | +| AWS Access Key ID | Your IAM user or role access key | +| AWS Secret Access Key | Matching secret | + +Replace `471112542209` with **your** AWS account ID. The ARN must come from **your** Bedrock console for the profile you enabled. + +### Docker + +```bash +docker run -it --name presenton -p 5001:80 \ + -e LLM="bedrock" \ + -e BEDROCK_REGION="us-east-1" \ + -e BEDROCK_AWS_ACCESS_KEY_ID="YOUR_ACCESS_KEY_ID" \ + -e BEDROCK_AWS_SECRET_ACCESS_KEY="YOUR_SECRET_ACCESS_KEY" \ + -e BEDROCK_MODEL="arn:aws:bedrock:us-east-1:471112542209:inference-profile/us.anthropic.claude-sonnet-4-6" \ + -e IMAGE_PROVIDER="pexels" \ + -e PEXELS_API_KEY="YOUR_PEXELS_KEY" \ + -e CAN_CHANGE_KEYS="false" \ + -v "./app_data:/app_data" \ + ghcr.io/presenton/presenton:latest +``` + +### On-demand model example (Haiku) + +For models that support on-demand IDs: + +```bash +-e BEDROCK_MODEL="us.anthropic.claude-3-5-haiku-20241022-v1:0" +``` + +--- + +## IAM permissions + +The IAM principal (user or role) behind your keys needs permission to call Bedrock in the configured region, for example: + +- `bedrock:InvokeModel` +- `bedrock:InvokeModelWithResponseStream` + +Scope policies to the model IDs or inference profile ARNs you use. If you use inference profiles, include the profile ARN (or a wildcard your org allows) in the resource list. + +Enable model access in the Bedrock console (**Model access**) for the foundation models tied to your profile. + +--- + +## Troubleshooting + +### Invalid model identifier + +- **Symptom:** `ValidationException`, unknown model, or model not found. +- **Checks:** + - **Model** matches exactly what Bedrock shows (ID or full ARN, no extra spaces). + - For Sonnet 4.6–class models, use an **inference profile ARN**, not only `anthropic.claude-…` without the profile path. + - Model access is **enabled** for your account in that region. + +### Missing Bedrock permissions + +- **Symptom:** `AccessDeniedException`, not authorized to perform `bedrock:InvokeModel`. +- **Checks:** + - IAM policy allows invoke on the model or inference profile. + - Keys belong to the intended account; no typo in access key or secret. + - If using `BEDROCK_PROFILE_NAME`, the profile’s role has Bedrock permissions. + +### Region mismatch + +- **Symptom:** Model not found, or profile ARN rejected. +- **Checks:** + - `BEDROCK_REGION` is the region where the model/profile was created (for example `us-east-1` in the ARN path must match `BEDROCK_REGION`). + - Cross-region inference profiles still use a home region in the ARN; configure Presenton’s region to match AWS guidance for that profile. + +### Unsupported on-demand invocation + +- **Symptom:** Error text mentions *on-demand throughput isn’t supported* or requires *inference profile ARN*. +- **Fix:** Switch **Model** from a plain model ID to the **inference profile ARN** (see [Common error](#common-error-on-demand-throughput-not-supported) above). + +### Auth configuration errors at startup + +- **Symptom:** “Bedrock auth is incomplete” or “Provide either api_key or AWS credentials”. +- **Fix:** Set `BEDROCK_API_KEY`, **or** both `BEDROCK_AWS_ACCESS_KEY_ID` and `BEDROCK_AWS_SECRET_ACCESS_KEY`. Do not leave all three empty. + +--- + +## Environment variable reference + +| Variable | Required | Notes | +| --- | --- | --- | +| `LLM` | Yes | Must be `bedrock`. | +| `BEDROCK_REGION` | Recommended | Default `us-east-1` if unset. | +| `BEDROCK_MODEL` | Yes | Model ID or inference profile ARN. | +| `BEDROCK_AWS_ACCESS_KEY_ID` | If not using API key | Pair with secret. | +| `BEDROCK_AWS_SECRET_ACCESS_KEY` | If not using API key | Pair with access key ID. | +| `BEDROCK_API_KEY` | Optional | Alternative to access key pair. | +| `BEDROCK_AWS_SESSION_TOKEN` | Optional | Temporary credentials. | +| `BEDROCK_PROFILE_NAME` | Optional | Named AWS profile. | + +See also the [Deployment configurations](../README.md#️-deployment-configurations) section in the main README. diff --git a/docs/electron-dependency-strategy.md b/docs/electron-dependency-strategy.md new file mode 100644 index 0000000..4834734 --- /dev/null +++ b/docs/electron-dependency-strategy.md @@ -0,0 +1,110 @@ +# Electron Dependency Strategy + +This is the working strategy for reducing first-run dependency installers in +the Electron app while keeping Presenton Apache-2.0. + +## Recommendation + +- Bundle Chrome for Testing with the Electron package (including Microsoft APPX) + for export rendering. +- Bundle ImageMagick under `resources/imagemagick/` for each platform build; the + packaged app validates that bundle during `afterPack`. +- Bundle the presentation export runtime for PPTX-to-HTML conversion and use + Chromium to render custom template previews. +- Extract modern OOXML/OpenDocument text directly without an office engine. + +## Licensing Notes + +This is engineering guidance, not legal advice. + +ImageMagick is practical to bundle. The official license permits personal, +internal, and commercial use, and its terms are close to Apache-2.0. Keep the +ImageMagick license and notices in the distributed app. +Source: https://imagemagick.org/license/ + +Chromium/Chrome for Testing can be bundled, but the notices matter. Puppeteer +now targets Chrome for Testing for supported automation, and Chromium source is +BSD-style plus third-party licenses. Keep generated browser credits/notices with +the shipped runtime. +Sources: +- https://pptr.dev/supported-browsers +- https://chromium.googlesource.com/chromium/src/+/main/LICENSE +- https://www.chromium.org/chromium-os/licensing/ + +## Runtime Layout + +Bundled Chromium: + +```text +electron/resources/chromium/ + presenton-runtime.json + chrome//... +``` + +Populate it with: + +```bash +cd electron +npm run prepare:export-chromium +``` + +Set `SKIP_BUNDLED_CHROMIUM=1` to keep the old first-run download behavior. + +Bundled ImageMagick: + +```text +electron/resources/imagemagick/-/ + presenton-runtime.json + ... +``` + +Examples: + +```text +electron/resources/imagemagick/win32-x64/magick.exe +electron/resources/imagemagick/darwin-arm64/bin/magick +electron/resources/imagemagick/linux-x64/bin/magick +``` + +Populate it with: + +```bash +cd electron +npm run prepare:imagemagick +``` + +Platform behavior: + +- Windows downloads and validates the official portable `.7z` runtime. +- Linux downloads and validates the official AppImage, then writes a `bin/magick` + wrapper with `APPIMAGE_EXTRACT_AND_RUN=1` so it works without a host FUSE setup. +- macOS vendors a build-host ImageMagick prefix (`magick` on PATH, or + `IMAGEMAGICK_VENDOR_DIR`) and rewrites non-system dylib references into the + packaged runtime with `otool` and `install_name_tool`. + +The app checks the manifest-backed bundle before PATH, Homebrew, MacPorts, or +other system installs. + +## Current Behavior + +- FastAPI receives `IMAGEMAGICK_BINARY`, `MAGICK_HOME`, and + `MAGICK_CONFIGURE_PATH` when the bundled or system ImageMagick runtime is + detected at startup. +- PPTX previews use the bundled PPTX-to-HTML converter and Chromium renderer. +- Modern OOXML/OpenDocument text extraction uses the bundled Python parser. +- Export Chromium and ImageMagick resolution check manifest-backed bundled app + runtimes before user or system locations. + +## APPX / Store builds + +Before `npm run build:electron`: + +1. Run `npm run prepare:export-chromium` so Chromium is under `resources/chromium/`. +2. Run `npm run prepare:imagemagick` so ImageMagick is under + `resources/imagemagick/-/`. +3. The bundled export runtime and Chromium handle Template Studio previews. + +Microsoft Store (MSIX/APPX) packages install under `Program Files\WindowsApps`. +Bundled Chrome cannot be launched in place from that folder; on first export the app +copies the browser tree to `%LOCALAPPDATA%\…\Cache\msix-export-chromium\` (same pattern +as the MSIX export runtime for Sharp). The portable EXE install does not need this copy. diff --git a/docs/experimental-editor-docs/getting-started.md b/docs/experimental-editor-docs/getting-started.md new file mode 100644 index 0000000..1c4a053 --- /dev/null +++ b/docs/experimental-editor-docs/getting-started.md @@ -0,0 +1,54 @@ +# Custom Template Import Getting Started + +This document explains the current PPTX import behavior from the custom +template page. + +## What This Flow Does + +The `Select a PPTX file` action on: + +```txt +/custom-template +``` + +uses the original Template Studio UX. The slide-editor import backend is always +used. + +The flow is: + +1. Select a PPTX file. +2. Click `Check Fonts`. +3. Review available and missing fonts in the inline font management step. +4. Upload any missing fonts you want to preserve. +5. Continue to generate the old `Slide Preview` screen. +6. Click `Generate Template` to create the reusable template. + +Template Studio still uses the same old UX: inline font management, slide +preview, progress, and generated preview cards. Only the Generate backend +changes. It sends the preview data to the Templates V2 API: + +```txt +POST /api/v2/templates +``` + +That v2 request creates and saves the template, while the page stays on the +old `/custom-template` preview experience. The generated preview cards render +the raw Templates V2 `layouts.layouts[*]` JSON directly; they do not stage or +open a slide-editor deck. + +Template Studio does not open the `Prepare fonts` dialog, create a slide-editor +deck, stage anything in IndexedDB, or redirect to `/slide-editor`. + +## Verify The Flow + +1. Start the app normally. +2. Open `/custom-template`. +3. Click `Select a PPTX file`. +4. Choose a `.pptx` file under 100 MB. +5. Confirm the selected file appears in the upload card. +6. Click `Check Fonts`. +7. Confirm the inline font management step appears. +8. Continue to preview. +9. Click `Generate Template`. +10. Confirm the page stays on `/custom-template`. +11. Confirm Generate creates the template with `POST /api/v2/templates`. diff --git a/docs/macos/dev/README.md b/docs/macos/dev/README.md new file mode 100644 index 0000000..4c56537 --- /dev/null +++ b/docs/macos/dev/README.md @@ -0,0 +1,56 @@ +# macOS Development & Distribution + +Guides for building and signing the Presenton Electron app on macOS. + +| Guide | Description | +|-------|-------------| +| [Direct distribution](./direct-distribution.md) | Developer ID signing, notarization, DMG verification, and release commands for distribution outside the Mac App Store | +| [Mac App Store setup](./mac-app-store-setup.md) | Certificates, provisioning profiles, MAS build commands, and submission notes | + +## Quick reference + +All commands below run from the `electron/` directory on a Mac. + +**First-time setup** + +```bash +cd electron +npm run setup:env +``` + +**Run locally (development)** + +```bash +npm run dev +``` + +**Build a DMG (local distribution, not App Store)** + +```bash +npm run build:all +``` + +Output is written to `electron/dist/`. The default macOS target is a DMG built via `electron/build.js`. + +For public releases outside the Mac App Store, use the signed and notarized direct distribution flow: + +```bash +export APPLE_KEYCHAIN_PROFILE="presenton-notary" +npm run build:all:mac:signed +``` + +That assumes the release Mac already has a **Developer ID Application** certificate and a stored `notarytool` profile named `presenton-notary`. See [Direct distribution](./direct-distribution.md) for the exact one-time setup and verification commands. + +**Build for the Mac App Store** + +See [Mac App Store setup](./mac-app-store-setup.md) for certificates, provisioning profiles, and signing. Summary: + +```bash +npm run build:all:mas-dev # development / TestFlight-style testing +npm run build:all:mas # distribution / App Store submission +``` + +## Related docs + +- [Electron dependency strategy](../../electron-dependency-strategy.md) — bundled Chromium, ImageMagick, and export runtime +- [Project README — Electron section](../../../README.md) — prerequisites and high-level build steps diff --git a/docs/macos/dev/direct-distribution.md b/docs/macos/dev/direct-distribution.md new file mode 100644 index 0000000..1a8849a --- /dev/null +++ b/docs/macos/dev/direct-distribution.md @@ -0,0 +1,300 @@ +# macOS Direct Distribution + +Use this guide to ship Presenton as a signed and notarized macOS app outside the Mac App Store. This is the correct path for a downloadable DMG from GitHub Releases or presenton.ai. + +This is not a Mac App Store build. Do not use MAS provisioning profiles, App Store Connect upload, or App Review for this flow. + +If you are building from a Mac that is already registered in Apple Developer, that is fine, but the registration is not what makes the public DMG trusted. Registered devices are for development provisioning and MAS-style testing. Public direct distribution requires a Developer ID Application certificate and Apple notarization. + +## What This Produces + +The signed release build creates: + +```text +electron/dist/ + Presenton-.dmg +``` + +Users should be able to open the DMG and launch Presenton without macOS warning that the app is from an unidentified developer. + +## How This Differs From MAS + +| Area | Direct distribution | Mac App Store | +|------|---------------------|---------------| +| Certificate | Developer ID Application | Apple Distribution / 3rd Party Mac Developer | +| Provisioning profile | Not used | Required | +| App Sandbox | Not required by this build | Required | +| Notarization | Required | App Store processing handles distribution review | +| Output | DMG for download | PKG for App Store Connect | + +The MAS guide in the referenced gist is still useful for the Apple Developer account and signing concepts, but this repo's direct distribution flow deliberately stops before MAS provisioning and App Store submission. + +## Repository Configuration + +Direct macOS distribution is configured in `electron/build.js`: + +- `mac.hardenedRuntime` is enabled for non-MAS macOS builds. +- `mac.entitlements` uses `electron/build/entitlements.mac.plist`. +- `mac.entitlementsInherit` uses `electron/build/entitlements.mac.inherit.plist`. +- `mac.notarize` is enabled unless `PRESENTON_SKIP_NOTARIZATION=1`. +- `dmg.sign` is disabled because the app bundle is signed and notarized; signing the DMG itself is not required. + +Use the release scripts in `electron/package.json`: + +```bash +npm run build:all:mac:signed +npm run build:electron:mac:signed +npm run dist:mac:signed +``` + +The `:mac:signed` scripts set `PRESENTON_REQUIRE_MAC_SIGNING=1`, so they fail before packaging if a Developer ID certificate or notarization credentials are missing. + +## Exact Setup For A Release Mac + +Run this once on the Mac that will build releases. + +### 1. Install Apple Command Line Tools + +```bash +xcode-select --install +xcrun notarytool --version +``` + +`notarytool` must be available. If it is missing, install or update Xcode. + +### 2. Install The Developer ID Certificate + +In Xcode: + +1. Open **Xcode** -> **Settings** -> **Accounts**. +2. Select the Apple Developer team. +3. Click **Manage Certificates**. +4. Click **+**. +5. Select **Developer ID Application**. + +Do not choose **Apple Development** for public distribution. Do not choose **Apple Distribution** unless you are building for the Mac App Store. For a downloadable DMG, the certificate must be **Developer ID Application**. + +Confirm the certificate is visible to `codesign`: + +```bash +security find-identity -v -p codesigning | grep "Developer ID Application" +``` + +Expected shape: + +```text +Developer ID Application: Your Company Name (TEAMID) +``` + +Most release Macs only have one Developer ID Application certificate, so you usually do not need to export a signing identity. If multiple Developer ID certificates are installed, set the exact identity before building: + +```bash +export PRESENTON_MAC_SIGN_IDENTITY="Developer ID Application: Your Company Name (TEAMID)" +``` + +### 3. Store Notarization Credentials Once + +Create an app-specific password for the Apple ID, then store notarization credentials in the local Keychain: + +```bash +xcrun notarytool store-credentials "presenton-notary" \ + --apple-id "apple-id@example.com" \ + --team-id "TEAMID" \ + --password "app-specific-password" +``` + +After that, the only notarization environment variable needed for normal local release builds is: + +```bash +export APPLE_KEYCHAIN_PROFILE="presenton-notary" +``` + +To avoid exporting it manually every shell session, add it to your shell profile: + +```bash +echo 'export APPLE_KEYCHAIN_PROFILE="presenton-notary"' >> ~/.zshrc +source ~/.zshrc +``` + +If you store the profile in a non-default keychain, also set: + +```bash +export APPLE_KEYCHAIN="/path/to/keychain" +``` + +Do not commit notarization credentials, app-specific passwords, `.p8` keys, or real certificates to the repo. + +## Build A Signed DMG + +After the one-time setup, a normal release build is: + +```bash +cd electron +npm run build:all:mac:signed +``` + +If `APPLE_KEYCHAIN_PROFILE` is not in your shell profile, run it inline: + +```bash +cd electron +APPLE_KEYCHAIN_PROFILE="presenton-notary" npm run build:all:mac:signed +``` + +For the very first build on a fresh checkout, run setup first: + +```bash +cd electron +npm run setup:env +npm run build:all:mac:signed +``` + +If the app resources are already built and you only need to re-run Electron packaging: + +```bash +cd electron +npm run dist:mac:signed +``` + +The signed DMG is written to `electron/dist/`. + +## What You Do Not Need + +For public direct distribution, you do not need: + +- A registered test device. +- A `.provisionprofile` file. +- `PRESENTON_MAS_DEV_IDENTITY`. +- `PRESENTON_MAS_DISTRIBUTION_IDENTITY`. +- `PRESENTON_APP_STORE_VERSION`. +- App Store Connect upload. +- App Review approval. + +Those are MAS or development-provisioning concerns. The public DMG path is Developer ID signing plus notarization. + +## Other Credential Options + +The local Keychain profile above is the recommended flow for a human-operated release Mac. CI can use App Store Connect API keys instead: + +```bash +export APPLE_API_KEY="/secure/path/AuthKey_XXXXXXXXXX.p8" +export APPLE_API_KEY_ID="XXXXXXXXXX" +export APPLE_API_ISSUER="00000000-0000-0000-0000-000000000000" +npm run build:all:mac:signed +``` + +You can also pass Apple ID credentials directly, but this is less convenient than a stored Keychain profile: + +```bash +export APPLE_ID="apple-id@example.com" +export APPLE_APP_SPECIFIC_PASSWORD="app-specific-password" +export APPLE_TEAM_ID="TEAMID" +npm run build:all:mac:signed +``` + +## Verify The Release + +Run these checks before publishing the DMG. + +### 1. Check Code Signature + +Replace the app path if the architecture-specific output folder differs. + +```bash +codesign --verify --deep --strict --verbose=2 "dist/mac/Presenton.app" +codesign -dv --verbose=4 "dist/mac/Presenton.app" 2>&1 | grep -E "Authority|TeamIdentifier|Runtime" +``` + +Expected: + +- `Authority=Developer ID Application: ...` +- `TeamIdentifier=S6W5C54KL6` +- Hardened Runtime is present. + +### 2. Check Notarization Stapling + +```bash +xcrun stapler validate "dist/mac/Presenton.app" +``` + +Expected: + +```text +The validate action worked! +``` + +### 3. Check Gatekeeper + +```bash +spctl --assess --type execute --verbose=4 "dist/mac/Presenton.app" +spctl --assess --type open --verbose=4 "dist/Presenton-0.8.8-beta.dmg" +``` + +Expected shape: + +```text +accepted +source=Notarized Developer ID +``` + +### 4. Test On Another Mac + +Download the DMG on a Mac that did not build it, mount it, drag Presenton to `/Applications`, and launch it normally. This catches quarantine and Gatekeeper behavior that local build machines can hide. + +## Troubleshooting + +**The signed release build says the Developer ID identity is missing** + +Install a Developer ID Application certificate in Keychain Access, or set: + +```bash +export PRESENTON_MAC_SIGN_IDENTITY="Developer ID Application: Your Company Name (TEAMID)" +``` + +**The build says notarization credentials are missing** + +Set one complete credential group: + +```bash +export APPLE_KEYCHAIN_PROFILE="presenton-notary" +``` + +or: + +```bash +export APPLE_ID="apple-id@example.com" +export APPLE_APP_SPECIFIC_PASSWORD="app-specific-password" +export APPLE_TEAM_ID="TEAMID" +``` + +or: + +```bash +export APPLE_API_KEY="/secure/path/AuthKey_XXXXXXXXXX.p8" +export APPLE_API_KEY_ID="XXXXXXXXXX" +export APPLE_API_ISSUER="00000000-0000-0000-0000-000000000000" +``` + +**macOS still says the app is damaged or cannot be opened** + +Run the verification commands above. If stapling fails, rebuild with valid notarization credentials and do not publish the DMG until `spctl` reports `source=Notarized Developer ID`. + +**You need a local unsigned build** + +Use the generic build script instead of the signed release script: + +```bash +npm run build:all +``` + +For release artifacts, always use: + +```bash +npm run build:all:mac:signed +``` + +## References + +- Steve Crickmore's Electron MAS release gist: https://gist.github.com/steve981cr/def310670dfd9ed1439bf31cc734f941 +- Electron signing and notarization docs: https://www.electronjs.org/docs/latest/tutorial/code-signing +- electron-builder notarization docs: https://www.electron.build/code-signing-mac.html#notarize +- Apple notarization docs: https://developer.apple.com/documentation/security/notarizing_macos_software_before_distribution diff --git a/docs/macos/dev/mac-app-store-setup.md b/docs/macos/dev/mac-app-store-setup.md new file mode 100644 index 0000000..359ee1b --- /dev/null +++ b/docs/macos/dev/mac-app-store-setup.md @@ -0,0 +1,201 @@ +# Mac App Store Setup + +Presenton’s Electron app is configured for Mac App Store (MAS) distribution with App Sandbox. MAS builds must be produced on macOS because Apple’s signing tools are required. + +This guide covers Apple Developer setup, local provisioning files, and the npm scripts in `electron/package.json` on `main`. + +## Overview + +| Target | Purpose | npm script | +|--------|---------|------------| +| `dmg` | Direct download outside the App Store | `npm run build:all:mac:signed` | +| `mas-dev` | Sandbox testing on registered Macs | `npm run build:all:mas-dev` | +| `mas` | App Store submission | `npm run build:all:mas` | + +Build configuration lives in `electron/build.js`. Key identifiers: + +- **Bundle ID:** `com.presenton.presenton` +- **Team ID:** `S6W5C54KL6` (set in `extendInfo.ElectronTeamID`) + +## MAS files in the repo + +These are checked in under `electron/build/`: + +| File | Role | +|------|------| +| `entitlements.mas.plist` | Main app entitlements (sandbox, network, JIT, user-selected files) | +| `entitlements.mas.inherit.plist` | Inherited entitlements for helper processes and bundled binaries | +| `MacAppStore.provisionprofile.replace_me` | Placeholder — replace with your real App Store profile (see below) | + +`build.js` validates provisioning profiles with `security cms -D` before building. Invalid or placeholder files will fail the build with a clear error. + +## What you need from Apple + +### 1. Apple Development certificate + +Xcode → **Settings** → **Accounts** → your team → **Manage Certificates** → **+** → **Apple Development**. + +Used for `mas-dev` builds and local sandbox testing. + +### 2. Apple Distribution certificate + +Same path as above, but choose **Apple Distribution**. + +Used for `mas` (App Store submission) builds. + +### 3. App ID (Bundle ID) + +[Apple Developer Portal](https://developer.apple.com/account) → **Certificates, Identifiers & Profiles** → **Identifiers** → **App IDs**. + +Create a macOS App ID that matches `com.presenton.presenton` (or update `APP_ID` in `electron/build.js` if you use a different ID). + +### 4. Provisioning profiles + +Create **two** macOS profiles and download each `.provisionprofile` file into `electron/build/`: + +#### AppleDevelopment (MAS development) + +- Portal → **Profiles** → **+** +- Type: **macOS App Development** +- App ID: your Presenton app ID +- Certificate: **Apple Development** +- Save as `electron/build/AppleDevelopment.provisionprofile` + +`build.js` also accepts `AppleDev.provisionprofile` or `AppDev.provisionprofile` as fallbacks. + +#### MacAppStore (MAS distribution) + +- Portal → **Profiles** → **+** +- Type: **Mac App Store** +- App ID: your Presenton app ID +- Certificate: **Apple Distribution** +- Save as `electron/build/MacAppStore.provisionprofile` + +Verify profiles decode correctly: + +```bash +cd electron +security cms -D -i build/AppleDevelopment.provisionprofile +security cms -D -i build/MacAppStore.provisionprofile +``` + +Provisioning profiles expire (typically yearly). Regenerate and replace the local files when they do. + +## Environment variables + +| Variable | Used for | Description | +|----------|----------|-------------| +| `PRESENTON_MAC_TARGET` | Set by npm scripts | `mas-dev` or `mas` (do not set manually when using the scripts below) | +| `PRESENTON_MAS_DEV_IDENTITY` | `mas-dev` | Signing identity, e.g. `Apple Development: Your Name (TEAMID)` | +| `PRESENTON_MAS_DISTRIBUTION_IDENTITY` | `mas` | Distribution identity, e.g. `Apple Distribution: Your Org (TEAMID)` | +| `PRESENTON_MAS_IDENTITY` | `mas` | Alias for distribution identity | +| `CSC_NAME` | Either target | Fallback if the target-specific identity vars are unset | +| `PRESENTON_APP_STORE_VERSION` | `mas` | App Store **version** (`x.y.z`). Required when `package.json` version contains a suffix like `-beta` | +| `PRESENTON_APP_STORE_BUILD` | `mas` | App Store **build** number. Defaults to the short version if unset | + +Example for a beta package version: + +```bash +export PRESENTON_APP_STORE_VERSION=1.0.0 +export PRESENTON_APP_STORE_BUILD=42 +``` + +## Build commands + +Run from `electron/` after `npm run setup:env` (first time only). + +### Full build (recommended) + +Rebuilds Next.js, FastAPI, export runtime, and packages the app: + +```bash +# MAS development — runs on Macs in your dev provisioning profile +PRESENTON_MAS_DEV_IDENTITY="Apple Development: Your Name (TEAMID)" \ + npm run build:all:mas-dev + +# MAS distribution — for App Store Connect upload +PRESENTON_MAS_DISTRIBUTION_IDENTITY="Apple Distribution: Your Org (TEAMID)" \ + PRESENTON_APP_STORE_VERSION=1.0.0 \ + npm run build:all:mas +``` + +### Package only (resources already built) + +If you already ran `build:all` and only need to re-run the Electron packager: + +```bash +PRESENTON_MAS_DEV_IDENTITY="Apple Development: Your Name (TEAMID)" \ + npm run dist:mac:mas-dev + +PRESENTON_MAS_DISTRIBUTION_IDENTITY="Apple Distribution: Your Org (TEAMID)" \ + PRESENTON_APP_STORE_VERSION=1.0.0 \ + npm run dist:mac:mas +``` + +### Direct DMG (not App Store) + +For a signed and notarized macOS disk image that does not go through App Store approval: + +```bash +npm run build:all:mac:signed +``` + +See [Direct distribution](./direct-distribution.md) for the Developer ID certificate, notarization, and verification flow. + +Artifacts land in `electron/dist/`. + +## Output locations + +Exact paths depend on architecture (`arm64` vs `x64`). Typical layouts: + +```text +electron/dist/ + mas-dev-arm64/ # unsigned or dev-signed .app (mas-dev) + mas-arm64/ # distribution-signed .app (mas) + Presenton-.pkg # MAS installer for upload + Presenton-.dmg # signed and notarized direct distribution DMG +``` + +Upload the `.pkg` from the `mas` build to [App Store Connect](https://appstoreconnect.apple.com). + +## Icons + +The default macOS icon is `electron/resources/ui/assets/images/presenton_short_filled.png`. + +For App Store packaging you can provide a proper `.icns` at `electron/build/icon.icns` and update the `mac.icon` field in `electron/build.js` if you want a custom store icon. + +Source PNGs for generating an icon set are in `electron/build/icon.iconset/`. + +## Testing notes + +- **MAS-signed apps** require the MAS Electron build (`mas` or `mas-dev` targets). A normal DMG build is not sandbox-compatible in the same way. +- **`mas-dev` builds** run only on Macs registered in your development provisioning profile. +- **`mas` (distribution) builds** usually do not launch locally; they are meant for App Store Connect processing and release. +- **`mas-dev` signing** uses `--timestamp=none` in `build.js` so local signing works without a network timestamp server. + +## Troubleshooting + +**“Missing MAS development/distribution provisioning profile”** + +Place the correct `.provisionprofile` in `electron/build/` (see [Provisioning profiles](#4-provisioning-profiles)). + +**“macOS could not decode” a profile** + +Re-download the profile from the Developer Portal. Do not commit real profiles to git. + +**“Cannot derive an App Store version from package version”** + +Set `PRESENTON_APP_STORE_VERSION` to three integers, e.g. `1.0.0`. + +**“MAS builds must be run on macOS”** + +Run the build on a Mac with Xcode command-line tools installed (`xcode-select --install`). + +**FastAPI or export binary not executable inside the .app** + +`build.js` runs an `afterPack` hook that sets executable permissions on bundled binaries. If signing fails afterward, check that entitlements allow the sandboxed app to execute helpers in `Contents/Resources/app/resources/`. + +## See also + +- [macOS dev README](./README.md) — quick reference for all macOS build targets +- [Electron dependency strategy](../../electron-dependency-strategy.md) — what gets bundled in the app diff --git a/docs/new.md b/docs/new.md new file mode 100644 index 0000000..458396d --- /dev/null +++ b/docs/new.md @@ -0,0 +1,12 @@ +## 2. Remove the runtime adapter path + +From the Template V2 presentation flow, remove calls to: + +- adaptTemplateV2LayoutToSlide +- normalizeTemplateV2Slide +- serializeTemplateV2LayoutFromSlide +- serializeTemplateV2ContentFromSlide +- applyGeneratedSlideContentToLayout +- old normalized slide layout resolver + +Changes in editor, to adpot the slide.ui /components/elements. diff --git a/docs/template-v2-direct-component-rendering.md b/docs/template-v2-direct-component-rendering.md new file mode 100644 index 0000000..85c38e4 --- /dev/null +++ b/docs/template-v2-direct-component-rendering.md @@ -0,0 +1,295 @@ +# Template V2 direct component rendering + +This document describes the Template V2 presentation runtime on branch +`dipesh/pre-159-move-new-editor-code-to-main-codebase-for-proper-integration`. + +The governing rule is: + +> Select a layout → write the complete layout to `slide.ui` → render `slide.ui` +> directly → edit `slide.ui` → persist `slide.ui`. + +`slide.ui` is the only frontend source of truth for Template V2 layout and +content. The presentation renderer does not read Template V2 content from +`slide.content` and does not maintain a second canonical `Slide` copy. + +## Active flow + +```text +selected Template V2 layout + | + v +slide.ui = raw 1280 x 720 layout JSON + | + v +V1ContentRender + | + v +TemplateV2KonvaSlide + | + +-- render raw ui.components with react-konva + +-- edit an immutable, structurally shared raw UI tree + +-- dispatch updateSlideUi({ index, ui }) + | + v +Redux presentationData.slides[index].ui + | + v +debounced presentation autosave +``` + +The presentation runtime no longer performs this conversion loop: + +```text +raw slide.ui + -> canonical editor Slide + -> layout resolver / SlideSurface + -> reverse serialization + -> slide.ui plus hidden slide.content state +``` + +This removes redundant object construction, schema translation, Jotai editor +state, layout resolution, and reverse serialization from the render/edit path. + +## Primary implementation files + +| File | Responsibility | +| --- | --- | +| [`TemplateV2KonvaSlide.tsx`](../servers/nextjs/components/slide-editor/surface/TemplateV2KonvaSlide.tsx) | The preserved Dipesh component, now responsible for raw UI rendering, selection, transforms, existing element toolbars, inline editing, insertions, chart/image integration, history, and UI commits. | +| [`V1ContentRender.tsx`](../servers/nextjs/app/(presentation-generator)/components/V1ContentRender.tsx) | Routes Template V2 presentation slides directly to the raw renderer. | +| [`events.ts`](../servers/nextjs/components/slide-editor/events/events.ts) | Shared insert, chart, and active-surface event contracts. | +| [`presentationGeneration.ts`](../servers/nextjs/store/slices/presentationGeneration.ts) | Owns `updateSlideUi`, which updates only the selected slide's `ui`. | +| [`NewSlide.tsx`](../servers/nextjs/app/(presentation-generator)/presentation/components/NewSlide.tsx) | Writes a selected Template V2 layout directly into a new slide's `ui`. | +| [`blank-slide.ts`](../servers/nextjs/app/(presentation-generator)/_shared/blank-slide.ts) | Supplies an empty raw UI with `components: []`. | +| [`useAutoSave.tsx`](../servers/nextjs/app/(presentation-generator)/presentation/hooks/useAutoSave.tsx) | Persists the Redux presentation after its debounce. | + +There are two `NewSlide.tsx` entry points in the presentation-generator tree. +Both now use the same `slide.ui` behavior. + +## Raw UI contract + +The renderer consumes the backend Template V2 shape without converting units: + +```json +{ + "id": "layout_id", + "background": "#FFFFFF", + "components": [ + { + "id": "hero", + "position": { "x": 80, "y": 80 }, + "size": { "width": 1120, "height": 560 }, + "elements": [ + { + "type": "text", + "name": "title", + "position": { "x": 0, "y": 0 }, + "size": { "width": 900, "height": 140 }, + "runs": [{ "text": "Title" }] + } + ] + } + ] +} +``` + +Geometry is interpreted in the native `1280 x 720` stage coordinate system: + +- component positions are slide-relative; +- top-level element positions are component-relative; +- nested element positions are parent-relative; +- positions, sizes, font sizes, gaps, padding, strokes, and radii remain raw + UI values. + +The loose raw boundary is intentional. Alias readers handle known snake-case +and camel-case variants without rewriting the entire tree. + +## Rendering and editing + +`TemplateV2KonvaSlide` creates one fixed-size Konva Stage and renders +each raw component as a clipped Group. Raw elements are traversed recursively +through `children`, `elements`, `child`, or repeated `item` structures. + +Supported visuals include: + +- text and text lists; +- images and SVG; +- rectangles, ellipses, lines, groups, containers, flex, and grid; +- tables; +- bar, line, area, and pie-style charts; +- infographic/progress primitives. + +Interaction behavior: + +- components can be selected, dragged, resized, and rotated; +- a selected element can be dragged, resized, and rotated; +- the first pointer interaction on an unselected child continues to select or + move its component; a selected child receives its own drag; +- layout-managed children receive `__presenton_manual_position` after a manual + transform so the layout engine does not immediately overwrite the edit; +- text, text-list, table, and SVG values use inline overlays; +- images use the upload API and save the returned source in the raw element; +- charts use the shared chart-panel event bridge; +- the existing `ElementToolbar` controls are retained as a selected-element + editor boundary; only that selected element is projected into editor units, + while rendering and persistence remain raw `slide.ui` operations; +- component-level design-variable controls are retained through the same + editor boundary and write their changes back into the raw component tree; +- undo and redo store raw UI snapshots, not canonical editor Slides. + +## Backend-shape compatibility + +The renderer reads and preserves the backend's current data shapes: + +- TextList items may be arrays of text runs, direct text records, or legacy + strings. +- Table cells may contain `runs`, a direct `text`, and either `color` or `fill`. + Editing preserves the existing cell and first-run style metadata. +- Chart series read `values`, with `data` accepted as a compatibility alias. + +This matters because a direct renderer must not silently depend on the canonical +editor adapter to normalize these values first. + +## Commit and persistence behavior + +Every edit ends at one mutation boundary: + +```ts +updateSlideUi({ + index: slideIndex, + ui: nextUi, +}) +``` + +The reducer changes only: + +```text +presentationData.slides[slideIndex].ui +``` + +It does not replace the whole slide and does not write an editor snapshot into +`slide.content`. The existing autosave observes the Redux presentation object +and persists the updated `ui` after its debounce. + +New Template V2 slides are initialized as follows: + +```text +layout selection -> newSlide.ui = selected raw layout +empty selection -> newSlide.ui = { background: "#FFFFFF", components: [] } +``` + +`content: {}` is currently retained on newly created slides for the shared API +shape, but it is not a Template V2 rendering or editing source. + +## Adapter cleanup status + +The active Template V2 presentation runtime has no calls to: + +- `adaptTemplateV2LayoutToSlide`; +- `normalizeTemplateV2Slide`; +- `serializeTemplateV2LayoutFromSlide`; +- `serializeTemplateV2ContentFromSlide`; +- `applyGeneratedSlideContentToLayout`; +- the old normalized slide layout resolver. + +`TemplateV2KonvaSlide` was preserved and changed in place. Its old whole-slide +adapter, Jotai deck hydration, `SlideSurface` route, reverse serializers, and +hidden `__template_v2_konva_slide__` content fallback were removed. + +Some similarly named utilities remain for separate consumers: + +- `TemplateV2LayoutPreview` still uses `adaptTemplateV2LayoutToSlide` to feed + the shared preview surface. +- The reusable slide editor still uses `normalizeTemplateV2Slide` for canonical + `Slide` model conversion where needed. +- The Blocks/palette boundary can still convert a selected library component + into an insertion payload. This conversion occurs only on insertion, not on + every render or edit. + +Deleting these shared utilities globally would break template previews and the +standalone canonical editor without improving presentation-render performance. +They are not mounted in the direct presentation path. + +## Backend generation boundary + +The FastAPI generator currently creates semantic `slide.content` and then calls +`_apply_template_v2_content_to_ui()` during generation/streaming. The result is +a hydrated `slide.ui`, which is what the frontend renders and persists. + +That server operation is generation-time work, not a browser render adapter. +The stricter final architecture should generate named element values directly +into a copied UI tree and keep `slide.content` empty for Template V2. Removing +the server hydrator before replacing the generator output would produce blank +template values, so it is intentionally outside this frontend runtime cleanup. + +## Performance analysis + +The direct path is structurally cheaper than the old presentation path because +it removes full-tree model conversion and reverse conversion from mounts and +edits. It also avoids initializing the standalone slide editor's state graph for +each presentation surface. + +The editor hot path is optimized as follows: + +- the incoming immutable UI becomes the initial draft by reference; no + full-tree startup clone is performed; +- edits use structural sharing and copy only the UI/component/element path that + changed; +- unchanged components, nested elements, and visual nodes are memoized; +- undo/redo stores immutable UI references in a bounded 50-entry history + instead of deep-cloning the complete UI for every edit; +- inline typing keeps its draft inside the textarea component, so keystrokes do + not rerender the Stage; +- repeated `item` rendering reuses the immutable source object rather than + cloning it per occurrence and render; +- view-only Layers disable Konva hit testing; +- global deck history runs at the debounced autosave boundary and stores + immutable structurally shared snapshots instead of cloning/stringifying the + complete deck on every editor commit; +- autosave change detection uses Redux object identity rather than serializing + the complete presentation merely to compare it. + +Costs that remain include redraw of the affected Konva Layer, +selected-element toolbar projection, and request serialization performed by the +API client when autosave executes. + +The next performance work should be evidence-driven: + +1. Profile initial render, drag-end commit, inline-edit commit, and autosave on a + large real deck. +2. Split unusually large slides across carefully measured Konva Layers if canvas + redraw is still a bottleneck after React subtree memoization. +3. Move autosave comparison/persistence to slide-level patches if full-deck + JSON serialization is measurable. +4. Add browser performance tests before claiming a specific speedup. + +The architecture eliminates known redundant work, but “blazing fast” still +requires measurements on representative decks. + +## Verification checklist + +For a Template V2 slide: + +1. Confirm selecting a normal or blank layout immediately creates `slide.ui`. +2. Confirm `V1ContentRender` passes only `slide.ui` plus slide identity to the + direct renderer. +3. Render text, TextList, table, image, chart, flex, grid, and nested elements. +4. Drag, resize, and rotate both a component and a selected element. +5. Edit text/list/table values and verify their raw source shape is preserved. +6. Insert a palette element and a reusable block. +7. Replace an image and update a chart. +8. Undo/redo, reload, and confirm the saved values remain in `slide.ui`. +9. Confirm the presentation runtime does not create + `__template_v2_konva_slide__` in `slide.content`. +10. Confirm template previews and the standalone slide editor still work, + because their adapters were deliberately retained. + +## Rules to preserve + +1. Treat `slide.ui` as the only Template V2 frontend source of truth. +2. Do not add a renderer-side merge from `slide.content`. +3. Do not convert the whole UI to a canonical `Slide` for presentation display. +4. Preserve unknown raw fields while editing known fields. +5. Keep raw geometry in one coordinate system. +6. Keep preview/editor compatibility code outside the presentation runtime. +7. Persist through `updateSlideUi` and the existing autosave boundary. +8. Benchmark before adding caching complexity. diff --git a/electron/.DS_Store b/electron/.DS_Store new file mode 100644 index 0000000..a0aba94 Binary files /dev/null and b/electron/.DS_Store differ diff --git a/electron/.gitignore b/electron/.gitignore new file mode 100644 index 0000000..6620619 --- /dev/null +++ b/electron/.gitignore @@ -0,0 +1,53 @@ +.env +.env.* +*.env +.venv +__pycache__ +.pytest_cache +.next +node_modules +out +user_data +app_data +tmp +debug +.fastembed_cache +.codex + +generated_models +nltk +chroma +container.db +.next-build +.cursor +app_dist +resources/fastapi +resources/nextjs +dist +eng.traineddata +.cache/ +.cache/export-runtime/ + +# presenton-export runtime (downloaded via npm run setup:export-runtime / scripts/sync-export-runtime.cjs) +resources/export/ + +# Bundled export Chromium (Chrome for Testing) — npm run prepare:export-chromium +# Includes .exe, .dll, .pak, .manifest, .hyb, .dat, and other browser binaries. +resources/chromium/ + +# Optional bundled ImageMagick binaries — see docs/electron-dependency-strategy.md +resources/imagemagick/ +*.pkg +*.provisionprofile +*.cer +*.certSigningRequest +*.mobileprovision +*.p12 +*.p8 +*.toc +*.zip +*.pyc + +# Agent skill artifacts +.agents/ +skills-lock.json diff --git a/electron/app/ipc/api_handlers.ts b/electron/app/ipc/api_handlers.ts new file mode 100644 index 0000000..ee7dbc1 --- /dev/null +++ b/electron/app/ipc/api_handlers.ts @@ -0,0 +1,164 @@ +import { ipcMain } from "electron"; +import fs from "fs"; +import path from "path"; +import { getUserConfig } from "../utils"; +import { nextjsDir } from "../utils/constants"; + +export function setupApiHandlers() { + // Handler for can-change-keys API + ipcMain.handle("api:can-change-keys", async () => { + const canChangeKeys = process.env.CAN_CHANGE_KEYS !== "false"; + return { canChange: canChangeKeys }; + }); + + // Handler for has-required-key API + ipcMain.handle("api:has-required-key", async () => { + let keyFromFile = ""; + try { + const cfg = getUserConfig(); + keyFromFile = cfg?.OPENAI_API_KEY || ""; + } catch { + // Silent error handling + } + + const keyFromEnv = process.env.OPENAI_API_KEY || ""; + const hasKey = Boolean((keyFromFile || keyFromEnv).trim()); + + return { hasKey }; + }); + + // Reads persisted user config so runtime toggles from the settings page + // are picked up immediately without requiring an app restart. + ipcMain.handle("api:telemetry-status", async () => { + const cfg = getUserConfig(); + const fromConfig = cfg.DISABLE_ANONYMOUS_TRACKING; + const fromEnv = process.env.DISABLE_ANONYMOUS_TRACKING; + const raw = fromConfig ?? fromEnv ?? ""; + const isDisabled = raw === "true" || raw === "True"; + return { telemetryEnabled: !isDisabled }; + }); + + // Handler for save-layout API + ipcMain.handle("api:save-layout", async (event, { layout_name, components }) => { + try { + if (!layout_name || !components || !Array.isArray(components)) { + throw new Error("Invalid request body. Expected layout_name and components array."); + } + + // Define the layouts directory path + const layoutsDir = path.join(process.cwd(), "app_data", "layouts", layout_name); + + // Create the directory if it doesn't exist + if (!fs.existsSync(layoutsDir)) { + fs.mkdirSync(layoutsDir, { recursive: true }); + } + + // Save each component as a separate file + const savedFiles = []; + + for (const component of components) { + const { slide_number, component_code, component_name } = component; + + if (!component_code || !component_name) { + console.warn( + `Skipping component for slide ${slide_number}: missing code or name` + ); + continue; + } + + const fileName = `${component_name}.tsx`; + const filePath = path.join(layoutsDir, fileName); + const cleanComponentCode = component_code + .replace(/```tsx/g, "") + .replace(/```/g, ""); + + fs.writeFileSync(filePath, cleanComponentCode, "utf8"); + savedFiles.push({ + slide_number, + component_name, + file_path: filePath, + file_name: fileName, + }); + } + + return { + success: true, + layout_name, + path: layoutsDir, + saved_files: savedFiles.length, + components: savedFiles, + }; + } catch (error) { + console.error("Error saving layout:", error); + throw new Error("Failed to save layout components"); + } + }); + + // Handler for templates API (static list) + ipcMain.handle("api:templates", async () => { + try { + const templatesPath = path.join(nextjsDir, "presentation-templates"); + + if (!fs.existsSync(templatesPath)) { + return []; + } + + const items = fs.readdirSync(templatesPath, { withFileTypes: true }); + const templateDirectories = items + .filter(item => item.isDirectory()) + .map(dir => dir.name); + + const allLayouts: Array<{ templateName: string; templateID: string; files: string[]; settings: any }> = []; + + // Scan each template directory for layout files and settings + for (const templateName of templateDirectories) { + try { + const templatePath = path.join(templatesPath, templateName); + const templateFiles = fs.readdirSync(templatePath); + + // Filter for .tsx files and exclude any non-layout files + const layoutFiles = templateFiles.filter(file => + file.endsWith('.tsx') && + !file.startsWith('.') && + !file.includes('.test.') && + !file.includes('.spec.') && + file !== 'settings.json' + ); + + // Read settings.json if it exists + let settings: any = null; + const settingsPath = path.join(templatePath, 'settings.json'); + try { + const settingsContent = fs.readFileSync(settingsPath, 'utf-8'); + settings = JSON.parse(settingsContent); + } catch (settingsError) { + console.warn(`No settings.json found for template ${templateName} or invalid JSON`); + // Provide default settings if settings.json is missing or invalid + settings = { + description: `${templateName} presentation layouts`, + ordered: false, + default: false + }; + } + + if (layoutFiles.length > 0) { + allLayouts.push({ + templateName: templateName, + templateID: templateName, + files: layoutFiles, + settings: settings + }); + } + } catch (error) { + console.error(`Error reading template directory ${templateName}:`, error); + // Continue with other templates even if one fails + } + } + + return allLayouts; + } catch (error) { + console.error("Error reading templates:", error); + return []; + } + }); +} diff --git a/electron/app/ipc/export_handlers.ts b/electron/app/ipc/export_handlers.ts new file mode 100644 index 0000000..4fb196e --- /dev/null +++ b/electron/app/ipc/export_handlers.ts @@ -0,0 +1,583 @@ +import { ipcMain } from "electron"; +import { + getAppDataDir, + getCacheDir, + getDownloadsDir, + getTempDir, + resourceBaseDir, +} from "../utils/constants"; +import fs from "fs"; +import path from "path"; + +import { showFileDownloadedDialog } from "../utils/dialog"; +import { v4 as uuidv4 } from 'uuid'; +import { ChildProcess, spawn } from "child_process"; +import { safeError, safeLog } from "../utils/safe-console"; +import { addMainBreadcrumb } from "../sentry/main"; +import { BoundedTextBuffer, memorySnapshotMb } from "../utils/memory"; +import { destroyChildProcessStdio, terminateChildProcess } from "../utils/lifecycle"; +import { killProcess } from "../utils"; +import { + isExportChromiumAvailable, + removeBrokenExportChromiumCaches, + resolveLaunchableExportChromiumPath, +} from "../utils/export-chromium"; +import { resolveExportSpawnTarget } from "../utils/export-msix-runtime"; + +type BinaryFormat = "elf" | "mach-o" | "pe" | "unknown"; +type RuntimeCandidate = { + command: string; + label: string; + useElectronRunAsNode?: boolean; +}; + +const activeExportProcesses = new Set(); + +function showFileDownloadedDialogInBackground(filePath: string): void { + setImmediate(() => { + void showFileDownloadedDialog(filePath).catch((error) => { + safeError("[Export] Failed to show downloaded-file dialog:", error); + }); + }); +} + +export async function stopActiveExportProcesses(): Promise { + const processes = Array.from(activeExportProcesses); + activeExportProcesses.clear(); + await Promise.all( + processes.map((process) => + terminateChildProcess(process, "Export", killProcess).catch((error) => { + safeError("[Export] Failed to stop active export process:", error); + }), + ), + ); +} + +export function setupExportHandlers() { + ipcMain.handle("file-downloaded", async (_, filePath: string): Promise => { + const fileName = path.basename(filePath); + const destinationPath = path.join(getDownloadsDir(), fileName); + + await fs.promises.rename(filePath, destinationPath); + showFileDownloadedDialogInBackground(destinationPath); + return { success: true }; + }); + + ipcMain.handle("export-presentation", async (_, id: string, title: string, exportAs: "pptx" | "pdf") => { + let exportTempDir: string | undefined; + try { + await removeBrokenExportChromiumCaches(); + if (!isExportChromiumAvailable()) { + return { + success: false, + message: + "Export requires Chromium. Restart Presenton and complete the Chromium setup step when prompted.", + }; + } + + addMainBreadcrumb("export", "electron.ipc_export.start", { + id, + title, + exportAs, + memory: memorySnapshotMb(), + }); + const params = new URLSearchParams({ id }); + if (process.env.NEXT_PUBLIC_FAST_API) { + params.set("fastapiUrl", process.env.NEXT_PUBLIC_FAST_API); + } + const pptUrl = `${process.env.NEXT_PUBLIC_URL}/pdf-maker?${params.toString()}`; + + const exportTask = { + type: "export", + url: pptUrl, + format: exportAs, + title: title, + fastapiUrl: process.env.NEXT_PUBLIC_FAST_API, + }; + + const randomUuid = uuidv4(); + const tempDir = getTempDir(); + const appDataDir = getAppDataDir(); + exportTempDir = path.join(tempDir, randomUuid); + await fs.promises.mkdir(exportTempDir, { recursive: true }); + + const exportTaskPath = path.join(exportTempDir, "export_task.json"); + await fs.promises.writeFile(exportTaskPath, JSON.stringify(exportTask)); + + const packagedExportRoot = path.join(resourceBaseDir, "resources", "export"); + const packagedExportScriptPath = path.join(packagedExportRoot, "index.js"); + const { scriptPath: exportScriptPath, converterPath: pythonModulePath } = + await resolveExportSpawnTarget( + packagedExportRoot, + packagedExportScriptPath, + (exportRoot) => resolveConverterPath(exportRoot) + ); + safeLog("[Export] Spawning export task with config:", { + exportAs, + id, + title, + pptUrl, + exportTaskPath, + exportScriptPath, + pythonModulePath, + NEXT_PUBLIC_URL: process.env.NEXT_PUBLIC_URL, + NEXT_PUBLIC_FAST_API: process.env.NEXT_PUBLIC_FAST_API, + }); + const chromiumExecutablePath = await resolveLaunchableExportChromiumPath(); + if (!chromiumExecutablePath) { + return { + success: false, + message: + "Export could not prepare Chromium for this Microsoft Store install. Restart Presenton and try again.", + }; + } + const puppeteerTempDir = path.join(tempDir, "puppeteer"); + const puppeteerCacheDir = path.join(getCacheDir(), "puppeteer"); + await Promise.all([ + fs.promises.mkdir(puppeteerTempDir, { recursive: true }), + fs.promises.mkdir(puppeteerCacheDir, { recursive: true }), + ]); + const baseExportEnv = { + ...process.env, + TEMP_DIRECTORY: tempDir, + APP_DATA_DIRECTORY: appDataDir, + NODE_ENV: "development", + BUILT_PYTHON_MODULE_PATH: pythonModulePath, + PUPPETEER_EXECUTABLE_PATH: chromiumExecutablePath, + PUPPETEER_CACHE_DIR: puppeteerCacheDir, + PUPPETEER_TMP_DIR: puppeteerTempDir, + }; + const responsePath = exportTaskPath.replace(".json", ".response.json"); + const responseRaw = await runExportTaskAndReadResponse( + exportScriptPath, + exportTaskPath, + responsePath, + baseExportEnv + ); + const responseData = JSON.parse(responseRaw); + const exportFilePath = resolveExportedFilePath(responseData); + + if (!exportFilePath) { + return { success: false, message: "Export finished but output file was not found." }; + } + + const destinationPath = path.join(getDownloadsDir(), path.basename(exportFilePath)); + await moveFile(exportFilePath, destinationPath); + showFileDownloadedDialogInBackground(destinationPath); + addMainBreadcrumb("export", "electron.ipc_export.finish", { + id, + exportAs, + success: true, + memory: memorySnapshotMb(), + }); + return { success: true, message: "Export completed." }; + } catch (error: any) { + safeError("[Export] Error exporting presentation:", error); + addMainBreadcrumb("export", "electron.ipc_export.error", { + id, + exportAs, + message: error?.message, + memory: memorySnapshotMb(), + }); + return { success: false, message: error?.message ?? "Export failed." }; + } finally { + if (exportTempDir) { + await fs.promises.rm(exportTempDir, { recursive: true, force: true }).catch(() => {}); + } + } + }); +} + +function getExportRuntimeCandidates(): RuntimeCandidate[] { + const candidates: RuntimeCandidate[] = []; + const push = (command: string | undefined, label: string, useElectronRunAsNode?: boolean) => { + if (!command) return; + const trimmed = command.trim(); + if (!trimmed) return; + candidates.push({ command: trimmed, label, useElectronRunAsNode }); + }; + + // Explicit overrides first. + push(process.env.EXPORT_NODE_BINARY, "EXPORT_NODE_BINARY"); + push(process.env.NODE_BINARY, "NODE_BINARY"); + + // Match the older stable export approach: `spawn("node", ...)` first. + push("node", "node"); + + // Additional system node entries. + if (process.platform === "win32") { + push("node.exe", "node.exe"); + push("node.cmd", "node.cmd"); + } else { + push("/usr/bin/node", "/usr/bin/node"); + push("/usr/local/bin/node", "/usr/local/bin/node"); + } + + // Fallback: Electron runtime in Node mode. + push(process.execPath, "process.execPath (electron-as-node)", true); + + const deduped: RuntimeCandidate[] = []; + const seen = new Set(); + for (const candidate of candidates) { + const key = `${candidate.command}|${candidate.useElectronRunAsNode ? "electron-node" : "plain"}`; + if (seen.has(key)) continue; + seen.add(key); + deduped.push(candidate); + } + return deduped; +} + +function isRetryableRuntimeError(error: any): boolean { + const code = String(error?.code || ""); + // Try another runtime when binary is missing or cannot be spawned. + return ["ENOENT", "EACCES", "EPERM", "EAGAIN"].includes(code); +} + +async function runExportTaskWithRuntimeFallback( + exportScriptPath: string, + exportTaskPath: string, + baseEnv: NodeJS.ProcessEnv +): Promise { + const runtimeCandidates = getExportRuntimeCandidates(); + const failures: string[] = []; + + for (const runtime of runtimeCandidates) { + let repairedBrowserCache = false; + while (true) { + safeLog(`[Export] Trying runtime: ${runtime.label} -> ${runtime.command}`); + try { + await runExportTaskOnce( + runtime, + exportScriptPath, + exportTaskPath, + baseEnv + ); + return; + } catch (error: any) { + if (!repairedBrowserCache && (await repairBrokenPuppeteerCache(error))) { + repairedBrowserCache = true; + safeLog(`[Export] Retrying runtime ${runtime.label} after repairing Puppeteer cache.`); + continue; + } + + const details = [ + `${runtime.label}: ${error?.message || "Unknown error"}`, + error?.code ? `code=${error.code}` : "", + ] + .filter(Boolean) + .join(" "); + failures.push(details); + safeError(`[Export] Runtime failed (${runtime.label})`, error); + + if (!isRetryableRuntimeError(error)) { + throw error; + } + + break; + } + } + } + + throw new Error( + `Export failed to start with all runtimes.\n${failures.map((f) => `- ${f}`).join("\n")}` + ); +} + +async function runExportTaskAndReadResponse( + exportScriptPath: string, + exportTaskPath: string, + responsePath: string, + baseEnv: NodeJS.ProcessEnv +): Promise { + const maxAttempts = 2; + let lastError: unknown; + for (let attempt = 1; attempt <= maxAttempts; attempt += 1) { + await runExportTaskWithRuntimeFallback(exportScriptPath, exportTaskPath, baseEnv); + try { + return await fs.promises.readFile(responsePath, "utf8"); + } catch (error: any) { + if (error?.code === "ENOENT" && attempt < maxAttempts) { + safeError( + `[Export] Response file missing after successful export process. Retrying (${attempt}/${maxAttempts}).`, + error + ); + lastError = error; + continue; + } + throw error; + } + } + throw lastError instanceof Error + ? lastError + : new Error("Export task completed without creating a response file."); +} + +function extractMissingChromeFolderFromError(error: unknown): string | null { + const message = String((error as any)?.message ?? ""); + const match = message.match(/browser folder \(([^)]+)\) exists but the executable \(([^)]+)\) is missing/i); + if (!match) return null; + const browserFolder = path.normalize(match[1]); + const missingExecutablePath = path.normalize(match[2]); + if (!browserFolder || !missingExecutablePath.startsWith(browserFolder)) return null; + const normalized = browserFolder.toLowerCase().replace(/\\/g, "/"); + if (!normalized.includes("/.cache/puppeteer/chrome/")) return null; + return browserFolder; +} + +async function repairBrokenPuppeteerCache(error: unknown): Promise { + const browserFolder = extractMissingChromeFolderFromError(error); + if (!browserFolder) return false; + try { + await fs.promises.rm(browserFolder, { recursive: true, force: true }); + safeLog(`[Export] Removed broken Puppeteer browser cache: ${browserFolder}`); + return true; + } catch (rmError) { + safeError(`[Export] Failed to remove broken Puppeteer cache at ${browserFolder}`, rmError); + return false; + } +} + +async function runExportTaskOnce( + runtime: RuntimeCandidate, + exportScriptPath: string, + exportTaskPath: string, + baseEnv: NodeJS.ProcessEnv +): Promise { + const runtimeEnv = { + ...baseEnv, + ...(runtime.useElectronRunAsNode ? { ELECTRON_RUN_AS_NODE: "1" } : {}), + }; + + const exportTaskProcess = spawn(runtime.command, [exportScriptPath, exportTaskPath], { + stdio: ["ignore", "pipe", "pipe"], + cwd: path.dirname(exportScriptPath), + windowsHide: process.platform === "win32", + env: runtimeEnv, + }); + activeExportProcesses.add(exportTaskProcess); + + safeLog("[Export] Child process started:", { + runtime: runtime.label, + pid: exportTaskProcess.pid, + memory: memorySnapshotMb(), + }); + addMainBreadcrumb("export", "electron.export_child.start", { + runtime: runtime.label, + pid: exportTaskProcess.pid, + memory: memorySnapshotMb(), + }); + + const stdoutTail = new BoundedTextBuffer(); + const stderrTail = new BoundedTextBuffer(); + + const onStdoutData = (data: Buffer) => { + const text = data.toString(); + stdoutTail.append(text); + safeLog(`[Export] ${text}`); + }; + const onStderrData = (data: Buffer) => { + const text = data.toString(); + stderrTail.append(text); + safeError(`[Export] ${text}`); + }; + exportTaskProcess.stdout?.on("data", onStdoutData); + exportTaskProcess.stderr?.on("data", onStderrData); + + let settled = false; + let resolvePromise: (() => void) | null = null; + let rejectPromise: ((error: Error) => void) | null = null; + + const cleanup = () => { + exportTaskProcess.stdout?.removeListener("data", onStdoutData); + exportTaskProcess.stderr?.removeListener("data", onStderrData); + exportTaskProcess.removeListener("error", onError); + exportTaskProcess.removeListener("close", onClose); + activeExportProcesses.delete(exportTaskProcess); + }; + + const finish = (callback: () => void) => { + if (settled) { + return; + } + settled = true; + cleanup(); + callback(); + }; + + const onError = (error: Error) => { + finish(() => rejectPromise?.(error)); + }; + + const onClose = (code: number | null, signal: NodeJS.Signals | null) => { + finish(() => { + safeLog("[Export] Child process exited:", { + runtime: runtime.label, + pid: exportTaskProcess.pid, + code, + signal, + memory: memorySnapshotMb(), + }); + addMainBreadcrumb("export", "electron.export_child.exit", { + runtime: runtime.label, + pid: exportTaskProcess.pid, + code, + signal, + memory: memorySnapshotMb(), + }); + if (code === 0) { + resolvePromise?.(); + } else { + const stderrText = stderrTail.toString() || "(no stderr)"; + const stdoutText = stdoutTail.toString(); + const detail = + stderrText !== "(no stderr)" + ? stderrText + : stdoutText + ? `stdout: ${stdoutText}` + : ""; + const error: NodeJS.ErrnoException = new Error( + `Export process exited with code ${code ?? "unknown"}${signal ? ` signal ${signal}` : ""}${detail ? `. ${detail}` : ""}` + ); + error.code = `EXIT_${code ?? "UNKNOWN"}`; + rejectPromise?.(error); + } + }); + }; + + try { + await new Promise((resolve, reject) => { + resolvePromise = resolve; + rejectPromise = reject; + exportTaskProcess.once("error", onError); + exportTaskProcess.once("close", onClose); + }); + } finally { + cleanup(); + destroyChildProcessStdio(exportTaskProcess); + } +} + +async function resolveConverterPath(exportRoot: string): Promise { + const pyDir = path.join(exportRoot, "py"); + const extension = process.platform === "win32" ? ".exe" : ""; + const converterCandidates = [ + path.join(pyDir, `convert-${process.platform}-${process.arch}${extension}`), + path.join(pyDir, `convert-${process.platform}${extension}`), + ...(process.platform === "win32" + ? [path.join(pyDir, "convert.exe"), path.join(pyDir, "convert")] + : [path.join(pyDir, "convert")]), + ]; + + const converterPath = await findFirstExistingPath(converterCandidates); + if (!converterPath) { + throw new Error( + [ + "No converter binary found for export.", + "Expected one of:", + ...converterCandidates.map((candidate) => ` - ${candidate}`), + ].join("\n") + ); + } + + const format = await detectBinaryFormat(converterPath); + if (!isBinaryFormatCompatible(format)) { + throw new Error( + [ + `Converter binary is not valid for ${process.platform}/${process.arch}.`, + `Selected converter: ${converterPath}`, + `Detected format: ${format}`, + "Please bundle a platform-correct converter binary (for example convert-darwin-arm64 or convert-darwin-x64).", + ].join("\n") + ); + } + + return converterPath; +} + +async function findFirstExistingPath(paths: string[]): Promise { + for (const candidate of paths) { + try { + await fs.promises.access(candidate, fs.constants.F_OK); + return candidate; + } catch { + continue; + } + } + return null; +} + +async function detectBinaryFormat(binaryPath: string): Promise { + const fd = await fs.promises.open(binaryPath, "r"); + try { + const header = Buffer.alloc(4); + await fd.read(header, 0, 4, 0); + + if (header[0] === 0x7f && header[1] === 0x45 && header[2] === 0x4c && header[3] === 0x46) { + return "elf"; + } + + if (header[0] === 0x4d && header[1] === 0x5a) { + return "pe"; + } + + const magic = header.readUInt32BE(0); + if ( + magic === 0xfeedface || + magic === 0xcefaedfe || + magic === 0xfeedfacf || + magic === 0xcffaedfe || + magic === 0xcafebabe || + magic === 0xbebafeca + ) { + return "mach-o"; + } + + return "unknown"; + } finally { + await fd.close(); + } +} + +function isBinaryFormatCompatible(format: BinaryFormat): boolean { + if (process.platform === "darwin") return format === "mach-o"; + if (process.platform === "linux") return format === "elf"; + if (process.platform === "win32") return format === "pe"; + return true; +} + +function resolveExportedFilePath(responseData: any): string | null { + if (responseData?.path && typeof responseData.path === "string") { + return path.isAbsolute(responseData.path) + ? responseData.path + : path.join(getAppDataDir(), responseData.path); + } + + if (responseData?.url && typeof responseData.url === "string") { + try { + const parsed = new URL(responseData.url); + if (parsed.protocol === "file:") { + const filePath = decodeURIComponent(parsed.pathname); + if (process.platform === "win32" && filePath.startsWith("/")) { + return filePath.slice(1); + } + return filePath; + } + } catch { + return null; + } + } + + return null; +} + +async function moveFile(sourcePath: string, destinationPath: string) { + try { + await fs.promises.rename(sourcePath, destinationPath); + } catch (error: any) { + if (error?.code !== "EXDEV") { + throw error; + } + await fs.promises.copyFile(sourcePath, destinationPath); + await fs.promises.unlink(sourcePath); + } +} diff --git a/electron/app/ipc/footer_handlers.ts b/electron/app/ipc/footer_handlers.ts new file mode 100644 index 0000000..a9fa55b --- /dev/null +++ b/electron/app/ipc/footer_handlers.ts @@ -0,0 +1,32 @@ +import { ipcMain } from 'electron'; +import { settingsStore } from '../services/settings-store'; + +const FOOTER_KEY = 'footer'; + +export function setupFooterHandlers() { + ipcMain.handle('get-footer', async () => { + try { + const properties = settingsStore.get(FOOTER_KEY); + + return { properties }; + } catch (error) { + console.error('Error retrieving footer properties:', error); + throw error; + } + }); + + ipcMain.handle('set-footer', async (_, properties: any) => { + try { + if (!properties) { + throw new Error('Properties are required'); + } + + + settingsStore.set(FOOTER_KEY, properties); + return { success: true }; + } catch (error) { + console.error('Error saving footer properties:', error); + throw error; + } + }); +} \ No newline at end of file diff --git a/electron/app/ipc/index.ts b/electron/app/ipc/index.ts new file mode 100644 index 0000000..11193a3 --- /dev/null +++ b/electron/app/ipc/index.ts @@ -0,0 +1,21 @@ +import { setupExportHandlers } from "./export_handlers"; +import { setupUserConfigHandlers } from "./user_config_handlers"; +import { setupSlideMetadataHandlers } from "./slide_metadata"; +import { setupReadFile } from "./read_file"; +import { setupFooterHandlers } from "./footer_handlers"; +import { setupThemeHandlers } from "./theme_handlers"; +import { setupUploadImage } from "./upload_image"; +import { setupLogHandler } from "./log_handler"; +import { setupApiHandlers } from "./api_handlers"; + +export function setupIpcHandlers() { + setupExportHandlers(); + setupUserConfigHandlers(); + setupSlideMetadataHandlers(); + setupReadFile(); + setupFooterHandlers(); + setupThemeHandlers(); + setupUploadImage(); + setupLogHandler(); + setupApiHandlers(); +} diff --git a/electron/app/ipc/log_handler.ts b/electron/app/ipc/log_handler.ts new file mode 100644 index 0000000..f0f3884 --- /dev/null +++ b/electron/app/ipc/log_handler.ts @@ -0,0 +1,50 @@ +import { ipcMain } from 'electron'; +import * as fs from 'fs'; +import * as path from 'path'; +import { getLogsDir } from '../utils/constants'; + +export function setupLogHandler() { + // Ensure logs directory exists + const logsDir = getLogsDir(); + if (!fs.existsSync(logsDir)) { + fs.mkdirSync(logsDir, { recursive: true }); + } + + const logFilePath = path.join(logsDir, 'nextjs.log'); + + // Handle log writing through IPC - non-blocking + ipcMain.handle('write-nextjs-log', (_, logData: string) => { + try { + const timestamp = new Date().toISOString(); + const logEntry = `[${timestamp}] ${logData}\n`; + + // Use non-blocking write + fs.appendFile(logFilePath, logEntry, (err) => { + if (err) { + console.error('Error writing to log file:', err); + } + }); + + return { success: true }; + } catch (error) { + console.error('Error in log handler:', error); + return { success: false, error: (error as Error).message }; + } + }); + + // Handle log clearing + ipcMain.handle('clear-nextjs-logs', () => { + try { + // Create a new empty file, effectively clearing the old one + fs.writeFile(logFilePath, '', (err) => { + if (err) { + console.error('Error clearing log file:', err); + } + }); + return { success: true }; + } catch (error) { + console.error('Error in clear logs handler:', error); + return { success: false, error: (error as Error).message }; + } + }); +} diff --git a/electron/app/ipc/read_file.ts b/electron/app/ipc/read_file.ts new file mode 100644 index 0000000..8b2fcdc --- /dev/null +++ b/electron/app/ipc/read_file.ts @@ -0,0 +1,14 @@ +import { ipcMain } from "electron"; +import { readReadableLocalFile } from "../utils/readable-file-access"; + +export function setupReadFile() { + ipcMain.handle("read-file", async (_, filePath: unknown) => { + try { + const content = readReadableLocalFile(filePath); + return { content }; + } catch (error) { + console.error("Error reading file:", error); + throw error; + } + }); +} diff --git a/electron/app/ipc/slide_metadata.ts b/electron/app/ipc/slide_metadata.ts new file mode 100644 index 0000000..c9823ac --- /dev/null +++ b/electron/app/ipc/slide_metadata.ts @@ -0,0 +1,378 @@ +import { BrowserWindow, ipcMain } from "electron"; +import fs from 'fs'; +import path from 'path'; +import { getTempDir } from "../utils/constants"; +import { hasLiveWebContents, safeCloseWindow } from "../utils/lifecycle"; + + +interface Position { + left: number; + top: number; + width: number; + height: number; +} + +interface FontStyles { + name: string; + size: number; + bold: boolean; + weight: number; + color: string; +} + +interface TextElement { + position: Position; + paragraphs: { + alignment: number; + text: string; + font: FontStyles; + }[]; +} + +interface PictureElement { + position: Position; + picture: { + is_network: boolean; + path: string; + }; + shape: string | null; + object_fit: { + fit: string | null; + focus: number[]; + }; + overlay: string | null; + border_radius: number[]; +} + +interface BoxElement { + position: Position; + type: number; + fill: { + color: string; + }; + border_radius: number; + stroke: { + color: string; + thickness: number; + }; + shadow: { + radius: number; + color: string; + offset: number; + opacity: number; + angle: number; + }; +} + +interface LineElement { + position: Position; + lineType: number; + thickness: string; + color: string; +} + +interface GraphElement { + position: Position; + picture: { + is_network: boolean; + path: string; + }; + border_radius: number[]; +} + +type SlideElement = TextElement | PictureElement | BoxElement | LineElement | GraphElement; + + + + +export function setupSlideMetadataHandlers() { + ipcMain.handle("get-slide-metadata", async (_, url: string, theme: string, customColors?: any) => { + let win: BrowserWindow | null = null; + + const getLiveWebContents = () => { + if (!hasLiveWebContents(win)) { + throw new Error("Slide metadata window was closed before capture completed."); + } + return win.webContents; + }; + + const executeInMetadataWindow = async (script: string): Promise => { + try { + return (await getLiveWebContents().executeJavaScript(script)) as T; + } catch (error) { + if (!hasLiveWebContents(win)) { + throw new Error("Slide metadata window was closed before capture completed."); + } + throw error; + } + }; + + try { + win = new BrowserWindow({ + width: 1920, + height: 1080, + webPreferences: { + webSecurity: false, + preload: path.join(__dirname, '../preloads/index.js'), + }, + show: false, + }); + win.once("closed", () => { + win = null; + }); + + await win.loadURL(url, { userAgent: 'electron' }); + + + await executeInMetadataWindow(` + new Promise((resolve) => { + const check = () => { + const el = document.querySelector('[data-element-type="slide-container"]'); + if (el) return resolve(true); + setTimeout(check, 200); + }; + check(); + }); + `); + const metadata = await executeInMetadataWindow( + ` + (() => { + const rgbToHex = (color) => { + if (!color || color === "transparent" || color === "none") return "000000"; + if (color.startsWith("#")) return color.replace("#", ""); + const matches = color.match(/\\d+/g); + if (!matches) return "000000"; + const [r, g, b] = matches.map(x => parseInt(x)); + return [r, g, b].map(x => x.toString(16).padStart(2, "0")).join(""); + }; + + const slidesMetadata = []; + const slideContainers = document.querySelectorAll('[data-element-type="slide-container"]'); + + slideContainers.forEach((container) => { + const containerEl = container; + containerEl.style.width = "1280px"; + containerEl.style.height = "720px"; + containerEl.style.transform = "none"; + + const containerRect = containerEl.getBoundingClientRect(); + const slideIndex = parseInt(containerEl.getAttribute("data-slide-index") || "0"); + const backgroundColor = rgbToHex(window.getComputedStyle(containerEl).backgroundColor); + + const elements = []; + const slideElements = containerEl.querySelectorAll('[data-slide-element]:not([data-element-type="slide-container"])'); + + slideElements.forEach((element) => { + const el = element; + const elementRect = el.getBoundingClientRect(); + const computedStyle = window.getComputedStyle(el); + + const position = { + left: Math.round(elementRect.left - containerRect.left), + top: Math.round(elementRect.top - containerRect.top), + width: Math.round(elementRect.width), + height: Math.round(elementRect.height), + }; + + const elementType = el.getAttribute("data-element-type"); + if (!elementType) return; + + switch (elementType) { + case "text": + elements.push({ + position, + paragraphs: [{ + alignment: el.getAttribute("data-is-align") === 'true' ? 2 : 1, + text: el.getAttribute("data-text-content") || el.textContent || "", + font: { + name: computedStyle.fontFamily.split('_')[2] || 'Inter', + size: parseInt(computedStyle.fontSize), + bold: parseInt(computedStyle.fontWeight) >= 500, + weight: parseInt(computedStyle.fontWeight), + color: rgbToHex(computedStyle.color), + }, + }], + }); + break; + + case "picture": + const imgEl = el.tagName.toLowerCase() === "img" ? el : el.querySelector("img"); + if (imgEl) { + elements.push({ + position, + picture: { + is_network: imgEl.src.startsWith("http"), + path: imgEl.src || imgEl.getAttribute("data-image-path") || "", + }, + shape: imgEl.getAttribute('data-image-type'), + object_fit: { + fit: imgEl.getAttribute('data-object-fit'), + focus: [ + parseFloat(imgEl.getAttribute('data-focial-point-x') || '0'), + parseFloat(imgEl.getAttribute('data-focial-point-y') || '0'), + ], + }, + overlay: el.getAttribute("data-is-icon") ? "ffffff" : null, + border_radius: Array(4).fill(parseInt(computedStyle.borderRadius) || 0), + }); + } + break; + + case "graph": + elements.push({ + position, + picture: { + is_network: true, + path: \`__GRAPH_PLACEHOLDER__\${el.getAttribute("data-element-id")}\`, + }, + border_radius: [0, 0, 0, 0], + }); + break; + + case "slide-box": + case "filledbox": + const boxShadow = computedStyle.boxShadow; + let shadowRadius = 0; + let shadowColor = "000000"; + let shadowOffsetX = 0; + let shadowOffsetY = 0; + let shadowOpacity = 0; + + if (boxShadow && boxShadow !== "none") { + const boxShadowRegex = + /rgba?\\((\\d+),\\s*(\\d+),\\s*(\\d+),?\\s*([\\d.]+)?\\)?\\s+(-?\\d+)px\\s+(-?\\d+)px\\s+(-?\\d+)px/; + const match = boxShadow.match(boxShadowRegex); + + if (match) { + const r = match[1]; + const g = match[2]; + const b = match[3]; + const rgbStr = "rgb(" + r + ", " + g + ", " + b + ")"; + shadowColor = rgbToHex(rgbStr); + shadowOpacity = match[4] ? parseFloat(match[4]) : 1; + shadowOffsetX = parseInt(match[5]); + shadowOffsetY = parseInt(match[6]); + shadowRadius = parseInt(match[7]); + } + } + + elements.push({ + position, + type: + computedStyle.borderRadius === "9999px" || + computedStyle.borderRadius === "50%" + ? 9 + : 5, + fill: { + color: rgbToHex(computedStyle.backgroundColor), + }, + border_radius: parseInt(computedStyle.borderRadius) || 0, + stroke: { + color: rgbToHex(computedStyle.borderColor), + thickness: parseInt(computedStyle.borderWidth) || 0, + }, + shadow: { + radius: shadowRadius, + color: shadowColor, + offset: Math.sqrt( + shadowOffsetX * shadowOffsetX + + shadowOffsetY * shadowOffsetY + ), + opacity: shadowOpacity, + angle: Math.round( + (Math.atan2(shadowOffsetY, shadowOffsetX) * 180) / Math.PI + ), + }, + }); + break; + + case "line": + elements.push({ + position, + lineType: 1, + thickness: computedStyle.borderWidth || computedStyle.height, + color: rgbToHex( + computedStyle.borderColor || computedStyle.backgroundColor + ), + }); + break; + } + }); + + slidesMetadata.push({ slideIndex, backgroundColor, elements }); + }); + + return slidesMetadata; + })(); +` + ); + // ✅ Handle Graphs: capture each graph element as an image + const graphIds: string[] = await executeInMetadataWindow(` + (() => { + return Array.from(document.querySelectorAll('[data-element-type="graph"]')) + .map(el => el.getAttribute("data-element-id")) + .filter(Boolean); + })(); + `); + + for (const id of graphIds) { + try { + // Scroll into view first + await executeInMetadataWindow(` + document.querySelector('[data-element-id="${id}"]').scrollIntoView({ behavior: 'instant', block: 'center' }); + + `); + // Wait a bit for any animations/rendering to complete + await new Promise((r) => setTimeout(r, 2000)); + + const bounds: Electron.Rectangle | null = await executeInMetadataWindow(` + (() => { + const el = document.querySelector('[data-element-id="${id}"]'); + if (!el) return null; + const rect = el.getBoundingClientRect(); + return { + x: Math.round(rect.left), + y: Math.round(rect.top), + width: Math.round(rect.width), + height: Math.round(rect.height), + }; + })(); + `); + if (!bounds || bounds.width <= 0 || bounds.height <= 0) { + continue; + } + + const image = await getLiveWebContents().capturePage(bounds); + const buffer = image.toJPEG(100); + + + if (buffer.length === 0) { + console.error("Empty buffer! Graph not captured."); + continue; + } + + const filePath = path.join(getTempDir(), `chart-${id}-${Date.now()}.jpeg`); + fs.writeFileSync(filePath, buffer); + + // Update metadata + metadata.forEach((slide: any) => { + slide.elements.forEach((element: any) => { + if ("picture" in element && element.picture.path === `__GRAPH_PLACEHOLDER__${id}`) { + element.picture.path = filePath; + } + }); + }); + } catch (err) { + console.error(`Failed to capture or save chart-${id}:`, err); + } + } + return metadata; + } catch (error) { + console.error("Error during page preparation:", error); + throw error; + } finally { + // if (browser) await browser.close(); + safeCloseWindow(win); + } + }); +} diff --git a/electron/app/ipc/theme_handlers.ts b/electron/app/ipc/theme_handlers.ts new file mode 100644 index 0000000..5293559 --- /dev/null +++ b/electron/app/ipc/theme_handlers.ts @@ -0,0 +1,32 @@ +import { ipcMain } from 'electron'; +import { settingsStore } from '../services/settings-store'; + +const THEME_KEY = 'theme'; + +export function setupThemeHandlers() { + ipcMain.handle('get-theme', async () => { + try { + const theme = settingsStore.get(THEME_KEY); + + return { theme }; + } catch (error) { + console.error('Error retrieving theme:', error); + throw error; + } + }); + + ipcMain.handle('set-theme', async (_, themeData: any) => { + try { + if (!themeData) { + throw new Error('Theme data is required'); + } + + + settingsStore.set(THEME_KEY, themeData); + return { success: true }; + } catch (error) { + console.error('Error saving theme:', error); + throw error; + } + }); +} \ No newline at end of file diff --git a/electron/app/ipc/upload_image.ts b/electron/app/ipc/upload_image.ts new file mode 100644 index 0000000..acdad49 --- /dev/null +++ b/electron/app/ipc/upload_image.ts @@ -0,0 +1,28 @@ +import { ipcMain } from "electron"; +import path from "path"; +import fs from "fs"; +import crypto from "crypto"; +import { getUserDataDir } from "../utils/constants"; + +export function setupUploadImage() { + ipcMain.handle("upload-image", async (_, file: Buffer) => { + try { + // Create uploads directory if it doesn't exist + const uploadsDir = path.join(getUserDataDir(), "uploads"); + fs.mkdirSync(uploadsDir, { recursive: true }); + + // Generate unique filename + const filename = `${crypto.randomBytes(16).toString('hex')}.png`; + const filePath = path.join(uploadsDir, filename); + + // Write file to disk + await fs.writeFileSync(filePath, file); + + // Return the path with file:// protocol for Electron + return `file://${filePath}`; + } catch (error) { + console.error("Error saving image:", error); + throw error; + } + }); +} \ No newline at end of file diff --git a/electron/app/ipc/user_config_handlers.ts b/electron/app/ipc/user_config_handlers.ts new file mode 100644 index 0000000..4610e15 --- /dev/null +++ b/electron/app/ipc/user_config_handlers.ts @@ -0,0 +1,16 @@ +import { ipcMain } from "electron"; +import { getUserConfig, setUserConfig } from "../utils"; + +export function setupUserConfigHandlers() { + ipcMain.handle("get-user-config", async (_, __) => { + return getUserConfig(); + }); + + ipcMain.handle("set-user-config", async (_, userConfig: UserConfig) => { + setUserConfig(userConfig); + }); + + ipcMain.handle("get-can-change-keys", async (_, __) => { + return process.env.CAN_CHANGE_KEYS !== "false"; + }); +} diff --git a/electron/app/main.ts b/electron/app/main.ts new file mode 100644 index 0000000..e35383e --- /dev/null +++ b/electron/app/main.ts @@ -0,0 +1,630 @@ +require("dotenv").config(); +import { app, BrowserWindow, globalShortcut } from "electron"; +import path from "path"; +import fs from "fs"; +import crypto from "crypto"; +import { findUnusedPorts, setupEnv, setUserConfig } from "./utils"; +import { startFastApiServer, startNextJsServer } from "./utils/servers"; +import { + baseDir, + ensureDirectoriesExist, + fastapiDir, + getAppDataDir, + getCacheDir, + getTempDir, + getUserConfigPath, + initializeAppPaths, + isDev, + localhost, + nextjsDir, + resourceBaseDir, +} from "./utils/constants"; +import { setupIpcHandlers } from "./ipc"; +import { stopActiveExportProcesses } from "./ipc/export_handlers"; +import { getLiteParseRunnerPath } from "./utils/liteparse-check"; +import { + buildPathWithImageMagick, + resolveImageMagickRuntime, + type ImageMagickRuntime, +} from "./utils/imagemagick-runtime"; +import { startUpdateChecker, stopUpdateChecker } from "./utils/update-checker"; +import { + addMainBreadcrumb, + captureMainException, + initMainSentry, + setMainSentryRuntimeContext, +} from "./sentry/main"; +import { installSafeConsole, safeError, safeLog, safeStderrWrite, safeWarn } from "./utils/safe-console"; +import { memorySnapshotMb } from "./utils/memory"; +import { + isSupportedExternalUrl, + openExternalUrl, + showOpenTargetErrorDialog, +} from "./utils/open-target"; +import { + finishChromiumCacheRecovery, + prepareChromiumCacheRecovery, + type ChromiumCacheRecoveryStatus, +} from "./utils/chromium-cache-recovery"; +import { resolveLaunchableExportChromiumPath } from "./utils/export-chromium"; + +installSafeConsole(); + +// Local and ad-hoc signed macOS builds otherwise prompt for Keychain access when +// Chromium initializes encrypted session storage. +if (process.platform === "darwin") { + app.commandLine.appendSwitch("use-mock-keychain"); +} + +// Linux Chromium requires chrome-sandbox to be root-owned mode 4755; unpacked +// dist/linux-unpacked builds usually lack that. Disable sandbox only when invalid. +if (process.platform === "linux") { + try { + const sandboxPath = path.join(path.dirname(process.execPath), "chrome-sandbox"); + if (fs.existsSync(sandboxPath)) { + const st = fs.statSync(sandboxPath); + const hasSetuid = (st.mode & 0o4777) === 0o4755; + const rootOwned = st.uid === 0; + if (!(hasSetuid && rootOwned)) { + app.commandLine.appendSwitch("no-sandbox"); + } + } else { + app.commandLine.appendSwitch("no-sandbox"); + } + } catch { + app.commandLine.appendSwitch("no-sandbox"); + } + // Fall back to /tmp instead of shared memory to avoid Chromium crashes + // on systems where /dev/shm is unavailable/misconfigured. + app.commandLine.appendSwitch("disable-dev-shm-usage"); +} + +var win: BrowserWindow | undefined; +type ManagedServerProcess = Awaited>; +var fastApiServer: ManagedServerProcess | undefined; +var nextjsServer: ManagedServerProcess | undefined; +let isStopping = false; + +function getLiveMainWindow(): BrowserWindow | undefined { + if (!win || win.isDestroyed()) { + return undefined; + } + return win; +} + +type ProcessGoneDetails = { + reason?: string; + type?: string; + exitCode?: number; + serviceName?: string; + name?: string; +}; + +function profileHash(userDataDir: string): string { + return crypto.createHash("sha256").update(userDataDir).digest("hex").slice(0, 16); +} + +function updateSentryRuntimeContext(cacheRecovery: ChromiumCacheRecoveryStatus): void { + setMainSentryRuntimeContext({ + profileHash: profileHash(electronAppPaths.userDataDir), + cacheRecoveryStatus: cacheRecovery.status, + cacheRecoveryMode: cacheRecovery.mode, + }); +} + +function recordProcessGone(kind: "child" | "renderer", details: ProcessGoneDetails): void { + const reason = details.reason ?? "unknown"; + const data = { + kind, + reason, + type: details.type, + exitCode: details.exitCode, + serviceName: details.serviceName, + name: details.name, + }; + + addMainBreadcrumb("process", `electron.${kind}_process_gone`, data); + if (isStopping || reason === "clean-exit") { + return; + } + + captureMainException(new Error(`Electron ${kind} process gone: ${reason}`), data); +} + +function resolveExportConverterPath(appRoot: string): string | undefined { + const pyDir = path.join(appRoot, "resources", "export", "py"); + const candidates = [ + path.join(pyDir, `convert-${process.platform}-${process.arch}`), + path.join(pyDir, `convert-${process.platform}-${process.arch}.exe`), + path.join(pyDir, `convert-${process.platform}`), + path.join(pyDir, `convert-${process.platform}.exe`), + path.join(pyDir, "convert"), + path.join(pyDir, "convert.exe"), + ]; + return candidates.find((candidate) => fs.existsSync(candidate)); +} + +function isDisableAuthEnabledValue(value?: string): boolean { + const raw = value?.trim().toLowerCase(); + return raw === "1" || raw === "true" || raw === "yes" || raw === "on"; +} + +function resolveElectronDisableAuth(): string { + const raw = ( + process.env.ELECTRON_DISABLE_AUTH ?? process.env.DISABLE_AUTH + )?.trim().toLowerCase(); + if (!raw) { + return "true"; + } + if (["0", "false", "no", "off"].includes(raw)) { + return "false"; + } + if (isDisableAuthEnabledValue(raw)) { + return "true"; + } + return "true"; +} + +function buildImageMagickEnv(runtime: ImageMagickRuntime | null): Partial { + if (!runtime) { + return {}; + } + + const pathKey = process.platform === "win32" && process.env.Path !== undefined + ? "Path" + : "PATH"; + + return { + IMAGEMAGICK_BINARY: runtime.binaryPath, + MAGICK_HOME: runtime.homeDir, + MAGICK_CONFIGURE_PATH: runtime.homeDir, + [pathKey]: buildPathWithImageMagick(runtime), + }; +} + +app.commandLine.appendSwitch('gtk-version', '3'); + +// Work around Chromium/Electron GPU compositor issues that can cause +// startup white screens on some Linux/driver combinations. +app.disableHardwareAcceleration(); + +const gotSingleInstanceLock = app.requestSingleInstanceLock(); +if (!gotSingleInstanceLock) { + app.quit(); +} + +const electronAppPaths = initializeAppPaths(); +const chromiumCacheRecovery = prepareChromiumCacheRecovery( + electronAppPaths.cacheDir, + electronAppPaths.userDataDir, +); +safeLog("[Presenton] Electron paths initialized:", electronAppPaths); + +initMainSentry(); +updateSentryRuntimeContext(chromiumCacheRecovery); + +app.on("child-process-gone", (_event, details) => { + recordProcessGone("child", details); +}); + +addMainBreadcrumb("memory", "electron.main.startup", memorySnapshotMb()); +safeLog("[Presenton] Startup memory:", { + memory: memorySnapshotMb(), +}); + +const createWindow = () => { + const mainWindow = new BrowserWindow({ + width: 1280, + height: 720, + show: false, // Reveal once the launch screen has painted to avoid a blank flash. + backgroundColor: "#f3f5ff", + icon: path.join(resourceBaseDir, "resources/ui/assets/images/presenton_short_filled.png"), + webPreferences: { + webSecurity: false, + // Ensure a known preload path and explicit isolation settings so + // the `contextBridge` API is exposed reliably to renderer pages. + contextIsolation: true, + nodeIntegration: false, + sandbox: false, + preload: (() => { + const p = path.join(__dirname, 'preloads/index.js'); + try { + if (!fs.existsSync(p)) { + safeWarn(`[Presenton] Preload not found at ${p}`); + } + } catch (e) { + safeWarn('[Presenton] Failed to stat preload path', e); + } + return p; + })(), + }, + }); + win = mainWindow; + + mainWindow.on("closed", () => { + if (win === mainWindow) { + win = undefined; + } + }); + + mainWindow.webContents.on("render-process-gone", (_event, details) => { + recordProcessGone("renderer", details); + }); + + // Open external links (e.g. "Download update") in the system browser so the user + // sees download progress and can manage downloads normally. + mainWindow.webContents.setWindowOpenHandler(({ url }) => { + if (!isSupportedExternalUrl(url)) { + safeWarn("[Presenton] Blocked unsupported window open URL."); + return { action: "deny" }; + } + + void openExternalUrl(url) + .then(async (result) => { + if (result.success) { + return; + } + + safeWarn(`[Presenton] Failed to open external URL: ${result.message || "Unknown error"}`); + await showOpenTargetErrorDialog({ + parent: mainWindow, + title: "Could Not Open Link", + message: "Presenton could not open this link in your browser.", + detail: `${result.message || "No application is registered to open this link."}\n\n${url}`, + }); + }) + .catch((error) => { + safeWarn("[Presenton] Failed to handle external URL open:", error); + }); + + return { action: "deny" }; + }); + + mainWindow.once("ready-to-show", () => { + if (mainWindow.isDestroyed()) { + return; + } + mainWindow.show(); + mainWindow.focus(); + }); + +}; + +function focusMainWindow(): void { + const mainWindow = getLiveMainWindow(); + if (!mainWindow) { + return; + } + if (mainWindow.isMinimized()) { + mainWindow.restore(); + } + mainWindow.show(); + mainWindow.focus(); +} + +if (gotSingleInstanceLock) { + app.on("second-instance", () => { + focusMainWindow(); + }); +} + +async function startServers(fastApiPort: number, nextjsPort: number) { + try { + const appDataDir = getAppDataDir(); + const tempDir = getTempDir(); + const userConfigPath = getUserConfigPath(); + const disableAuthForElectron = resolveElectronDisableAuth(); + const imageMagickRuntime = resolveImageMagickRuntime(); + const exportPackageRoot = path.join(resourceBaseDir, "resources", "export"); + const exportConverterPath = resolveExportConverterPath(resourceBaseDir); + const exportChromiumPath = await resolveLaunchableExportChromiumPath(); + const puppeteerCacheDir = path.join(getCacheDir(), "puppeteer"); + const puppeteerTempDir = path.join(tempDir, "puppeteer"); + await Promise.all([ + fs.promises.mkdir(puppeteerCacheDir, { recursive: true }), + fs.promises.mkdir(puppeteerTempDir, { recursive: true }), + ]); + if (exportChromiumPath) { + safeLog("[Presenton] Export Chromium runtime resolved:", exportChromiumPath); + } else { + safeWarn( + "[Presenton] Export Chromium runtime was not found; Template Studio slide previews will fail until Chromium is installed." + ); + } + if (imageMagickRuntime) { + safeLog("[Presenton] ImageMagick runtime resolved:", { + source: imageMagickRuntime.source, + binaryPath: imageMagickRuntime.binaryPath, + homeDir: imageMagickRuntime.homeDir, + }); + } else { + safeWarn("[Presenton] ImageMagick runtime was not found; LiteParse image conversion will fail until it is bundled or installed."); + } + const fastApi = await startFastApiServer( + fastapiDir, + fastApiPort, + { + DEBUG: isDev ? "True" : "False", + CAN_CHANGE_KEYS: process.env.CAN_CHANGE_KEYS, + LLM: process.env.LLM, + OPENAI_API_KEY: process.env.OPENAI_API_KEY, + OPENAI_MODEL: process.env.OPENAI_MODEL, + DEEPSEEK_API_KEY: process.env.DEEPSEEK_API_KEY, + DEEPSEEK_MODEL: process.env.DEEPSEEK_MODEL, + DEEPSEEK_BASE_URL: process.env.DEEPSEEK_BASE_URL, + GOOGLE_API_KEY: process.env.GOOGLE_API_KEY, + GOOGLE_MODEL: process.env.GOOGLE_MODEL, + ANTHROPIC_API_KEY: process.env.ANTHROPIC_API_KEY, + ANTHROPIC_MODEL: process.env.ANTHROPIC_MODEL, + OLLAMA_URL: process.env.OLLAMA_URL, + OLLAMA_MODEL: process.env.OLLAMA_MODEL, + CUSTOM_LLM_URL: process.env.CUSTOM_LLM_URL, + CUSTOM_LLM_API_KEY: process.env.CUSTOM_LLM_API_KEY, + CUSTOM_MODEL: process.env.CUSTOM_MODEL, + BEDROCK_REGION: process.env.BEDROCK_REGION, + BEDROCK_API_KEY: process.env.BEDROCK_API_KEY, + BEDROCK_AWS_ACCESS_KEY_ID: process.env.BEDROCK_AWS_ACCESS_KEY_ID, + BEDROCK_AWS_SECRET_ACCESS_KEY: process.env.BEDROCK_AWS_SECRET_ACCESS_KEY, + BEDROCK_AWS_SESSION_TOKEN: process.env.BEDROCK_AWS_SESSION_TOKEN, + BEDROCK_PROFILE_NAME: process.env.BEDROCK_PROFILE_NAME, + BEDROCK_MODEL: process.env.BEDROCK_MODEL, + FIREWORKS_API_KEY: process.env.FIREWORKS_API_KEY, + FIREWORKS_MODEL: process.env.FIREWORKS_MODEL, + FIREWORKS_BASE_URL: process.env.FIREWORKS_BASE_URL, + TOGETHER_API_KEY: process.env.TOGETHER_API_KEY, + TOGETHER_MODEL: process.env.TOGETHER_MODEL, + TOGETHER_BASE_URL: process.env.TOGETHER_BASE_URL, + LMSTUDIO_BASE_URL: process.env.LMSTUDIO_BASE_URL, + LMSTUDIO_API_KEY: process.env.LMSTUDIO_API_KEY, + LMSTUDIO_MODEL: process.env.LMSTUDIO_MODEL, + PEXELS_API_KEY: process.env.PEXELS_API_KEY, + PIXABAY_API_KEY: process.env.PIXABAY_API_KEY, + IMAGE_PROVIDER: process.env.IMAGE_PROVIDER, + DISABLE_IMAGE_GENERATION: process.env.DISABLE_IMAGE_GENERATION, + EXTENDED_REASONING: process.env.EXTENDED_REASONING, + TOOL_CALLS: process.env.TOOL_CALLS, + DISABLE_THINKING: process.env.DISABLE_THINKING, + WEB_GROUNDING: process.env.WEB_GROUNDING, + WEB_SEARCH_PROVIDER: process.env.WEB_SEARCH_PROVIDER, + WEB_SEARCH_MAX_RESULTS: process.env.WEB_SEARCH_MAX_RESULTS, + SEARXNG_BASE_URL: process.env.SEARXNG_BASE_URL, + TAVILY_API_KEY: process.env.TAVILY_API_KEY, + EXA_API_KEY: process.env.EXA_API_KEY, + BRAVE_SEARCH_API_KEY: process.env.BRAVE_SEARCH_API_KEY, + SERPER_API_KEY: process.env.SERPER_API_KEY, + DATABASE_URL: process.env.DATABASE_URL, + DISABLE_ANONYMOUS_TRACKING: process.env.DISABLE_ANONYMOUS_TRACKING, + COMFYUI_URL: process.env.COMFYUI_URL, + COMFYUI_WORKFLOW: process.env.COMFYUI_WORKFLOW, + DALL_E_3_QUALITY: process.env.DALL_E_3_QUALITY, + GPT_IMAGE_1_5_QUALITY: process.env.GPT_IMAGE_1_5_QUALITY, + APP_DATA_DIRECTORY: appDataDir, + TEMP_DIRECTORY: tempDir, + USER_CONFIG_PATH: userConfigPath, + MIGRATE_DATABASE_ON_STARTUP: "True", + DISABLE_AUTH: disableAuthForElectron, + PRESENTON_ELECTRON: "true", + ...buildImageMagickEnv(imageMagickRuntime), + LITEPARSE_RUNNER_PATH: getLiteParseRunnerPath(), + // Use Electron's embedded runtime for LiteParse so parsing does not + // depend on a system-wide Node installation. + LITEPARSE_NODE_BINARY: process.execPath, + ELECTRON_RUN_AS_NODE: "1", + EXPORT_PACKAGE_ROOT: exportPackageRoot, + EXPORT_RUNTIME_DIR: exportPackageRoot, + PUPPETEER_CACHE_DIR: puppeteerCacheDir, + PUPPETEER_TMP_DIR: puppeteerTempDir, + ...(exportChromiumPath && { + PUPPETEER_EXECUTABLE_PATH: exportChromiumPath, + }), + ...(exportConverterPath && { + BUILT_PYTHON_MODULE_PATH: exportConverterPath, + }), + }, + isDev, + ); + fastApiServer = fastApi; + await fastApi.ready; + + const nextjs = await startNextJsServer( + nextjsDir, + nextjsPort, + { + NEXT_PUBLIC_FAST_API: process.env.NEXT_PUBLIC_FAST_API, + TEMP_DIRECTORY: process.env.TEMP_DIRECTORY, + NEXT_PUBLIC_URL: process.env.NEXT_PUBLIC_URL, + NEXT_PUBLIC_USER_CONFIG_PATH: process.env.NEXT_PUBLIC_USER_CONFIG_PATH, + USER_CONFIG_PATH: process.env.NEXT_PUBLIC_USER_CONFIG_PATH, + APP_DATA_DIRECTORY: appDataDir, + DISABLE_AUTH: disableAuthForElectron, + EXPORT_PACKAGE_ROOT: exportPackageRoot, + PRESENTON_APP_ROOT: resourceBaseDir, + ...(exportConverterPath && { + BUILT_PYTHON_MODULE_PATH: exportConverterPath, + }), + }, + isDev, + ); + nextjsServer = nextjs; + await nextjs.ready; + } catch (error) { + safeError("Server startup error:", error); + } +} + +async function stopServers() { + const fastApi = fastApiServer; + const nextjs = nextjsServer; + fastApiServer = undefined; + nextjsServer = undefined; + + await Promise.all([ + fastApi + ? fastApi.stop().catch((error) => safeError("Failed to stop FastAPI:", error)) + : Promise.resolve(), + nextjs + ? nextjs.stop().catch((error) => safeError("Failed to stop NextJS:", error)) + : Promise.resolve(), + ]); +} + +async function forceQuitApp(exitCode = 0) { + if (isStopping) return; + isStopping = true; + globalShortcut.unregisterAll(); + stopUpdateChecker(); + try { + await stopActiveExportProcesses(); + await stopServers(); + } finally { + app.exit(exitCode); + } +} + +if (gotSingleInstanceLock) { +app.whenReady().then(async () => { + const disableAuthForElectron = resolveElectronDisableAuth(); + process.env.DISABLE_AUTH = disableAuthForElectron; + process.env.ELECTRON_DISABLE_AUTH = disableAuthForElectron; + process.env.PRESENTON_ELECTRON = "true"; + + // Ensure all required directories exist before starting + ensureDirectoriesExist(); + + await finishChromiumCacheRecovery( + electronAppPaths.userDataDir, + chromiumCacheRecovery, + ); + updateSentryRuntimeContext(chromiumCacheRecovery); + + // Create main window and show the launch page while local servers boot. + createWindow(); + const initialWindow = getLiveMainWindow(); + if (initialWindow && !initialWindow.webContents.isDestroyed()) { + void initialWindow + .loadFile(path.join(resourceBaseDir, "resources/ui/homepage/index.html")) + .catch((error) => { + if (!initialWindow.isDestroyed()) { + safeWarn("[Presenton] Failed to load startup page", error); + } + }); + } + + // Ensure the launch screen stays visible and focused during the server boot. + const launchWindow = getLiveMainWindow(); + launchWindow?.show(); + launchWindow?.focus(); + + try { + setUserConfig({ + CAN_CHANGE_KEYS: process.env.CAN_CHANGE_KEYS, + LLM: process.env.LLM, + OPENAI_API_KEY: process.env.OPENAI_API_KEY, + OPENAI_MODEL: process.env.OPENAI_MODEL, + DEEPSEEK_API_KEY: process.env.DEEPSEEK_API_KEY, + DEEPSEEK_MODEL: process.env.DEEPSEEK_MODEL, + DEEPSEEK_BASE_URL: process.env.DEEPSEEK_BASE_URL, + GOOGLE_API_KEY: process.env.GOOGLE_API_KEY, + GOOGLE_MODEL: process.env.GOOGLE_MODEL, + ANTHROPIC_API_KEY: process.env.ANTHROPIC_API_KEY, + ANTHROPIC_MODEL: process.env.ANTHROPIC_MODEL, + OLLAMA_URL: process.env.OLLAMA_URL, + OLLAMA_MODEL: process.env.OLLAMA_MODEL, + CUSTOM_LLM_URL: process.env.CUSTOM_LLM_URL, + CUSTOM_LLM_API_KEY: process.env.CUSTOM_LLM_API_KEY, + CUSTOM_MODEL: process.env.CUSTOM_MODEL, + BEDROCK_REGION: process.env.BEDROCK_REGION, + BEDROCK_API_KEY: process.env.BEDROCK_API_KEY, + BEDROCK_AWS_ACCESS_KEY_ID: process.env.BEDROCK_AWS_ACCESS_KEY_ID, + BEDROCK_AWS_SECRET_ACCESS_KEY: process.env.BEDROCK_AWS_SECRET_ACCESS_KEY, + BEDROCK_AWS_SESSION_TOKEN: process.env.BEDROCK_AWS_SESSION_TOKEN, + BEDROCK_PROFILE_NAME: process.env.BEDROCK_PROFILE_NAME, + BEDROCK_MODEL: process.env.BEDROCK_MODEL, + FIREWORKS_API_KEY: process.env.FIREWORKS_API_KEY, + FIREWORKS_MODEL: process.env.FIREWORKS_MODEL, + FIREWORKS_BASE_URL: process.env.FIREWORKS_BASE_URL, + TOGETHER_API_KEY: process.env.TOGETHER_API_KEY, + TOGETHER_MODEL: process.env.TOGETHER_MODEL, + TOGETHER_BASE_URL: process.env.TOGETHER_BASE_URL, + LMSTUDIO_BASE_URL: process.env.LMSTUDIO_BASE_URL, + LMSTUDIO_API_KEY: process.env.LMSTUDIO_API_KEY, + LMSTUDIO_MODEL: process.env.LMSTUDIO_MODEL, + PEXELS_API_KEY: process.env.PEXELS_API_KEY, + PIXABAY_API_KEY: process.env.PIXABAY_API_KEY, + IMAGE_PROVIDER: process.env.IMAGE_PROVIDER, + DISABLE_IMAGE_GENERATION: process.env.DISABLE_IMAGE_GENERATION, + EXTENDED_REASONING: process.env.EXTENDED_REASONING, + TOOL_CALLS: process.env.TOOL_CALLS, + DISABLE_THINKING: process.env.DISABLE_THINKING, + WEB_GROUNDING: process.env.WEB_GROUNDING, + WEB_SEARCH_PROVIDER: process.env.WEB_SEARCH_PROVIDER, + WEB_SEARCH_MAX_RESULTS: process.env.WEB_SEARCH_MAX_RESULTS, + SEARXNG_BASE_URL: process.env.SEARXNG_BASE_URL, + TAVILY_API_KEY: process.env.TAVILY_API_KEY, + EXA_API_KEY: process.env.EXA_API_KEY, + BRAVE_SEARCH_API_KEY: process.env.BRAVE_SEARCH_API_KEY, + SERPER_API_KEY: process.env.SERPER_API_KEY, + DATABASE_URL: process.env.DATABASE_URL, + DISABLE_ANONYMOUS_TRACKING: process.env.DISABLE_ANONYMOUS_TRACKING, + COMFYUI_URL: process.env.COMFYUI_URL, + COMFYUI_WORKFLOW: process.env.COMFYUI_WORKFLOW, + DALL_E_3_QUALITY: process.env.DALL_E_3_QUALITY, + GPT_IMAGE_1_5_QUALITY: process.env.GPT_IMAGE_1_5_QUALITY, + }) + } catch (error) { + safeWarn("[Presenton] Failed to persist startup user config", error); + } + + const [fastApiPort, nextjsPort] = await findUnusedPorts(); + safeLog(`FastAPI port: ${fastApiPort}, NextJS port: ${nextjsPort}`); + + //? Setup environment variables to be used in the preloads + setupEnv(fastApiPort, nextjsPort); + setupIpcHandlers(); + + await startServers(fastApiPort, nextjsPort); + if (isStopping) { + return; + } + const mainWindow = getLiveMainWindow(); + if (!mainWindow || mainWindow.webContents.isDestroyed()) { + return; + } + + try { + const appPath = isDisableAuthEnabledValue(process.env.DISABLE_AUTH) + ? "/upload" + : ""; + await mainWindow.loadURL(`${localhost}:${nextjsPort}${appPath}`); + } catch (error) { + if (mainWindow.isDestroyed()) { + return; + } + safeWarn("[Presenton] Failed to load application URL", error); + return; + } + + // Begin polling the version server for available updates + const updateWindow = getLiveMainWindow(); + if (updateWindow && !updateWindow.webContents.isDestroyed()) { + safeStderrWrite("[Presenton] Starting update checker...\n"); + startUpdateChecker(updateWindow); + } +}); + +app.on("window-all-closed", async () => { + await forceQuitApp(0); +}); + +app.on("before-quit", async (event) => { + if (isStopping) return; + event.preventDefault(); + await forceQuitApp(0); +}); + +app.on("will-quit", async (event) => { + if (isStopping) return; + event.preventDefault(); + await forceQuitApp(0); +}); +} diff --git a/electron/app/preloads/index.ts b/electron/app/preloads/index.ts new file mode 100644 index 0000000..6a82709 --- /dev/null +++ b/electron/app/preloads/index.ts @@ -0,0 +1,34 @@ +import { contextBridge, ipcRenderer } from 'electron'; + +contextBridge.exposeInMainWorld('env', { + NEXT_PUBLIC_FAST_API: process.env.NEXT_PUBLIC_FAST_API || '', + NEXT_PUBLIC_URL: process.env.NEXT_PUBLIC_URL || '', + TEMP_DIRECTORY: process.env.TEMP_DIRECTORY || '', + NEXT_PUBLIC_USER_CONFIG_PATH: process.env.NEXT_PUBLIC_USER_CONFIG_PATH || '', + APP_VERSION: process.env.APP_VERSION || '', + DISABLE_AUTH: process.env.DISABLE_AUTH || '', +}); + + +contextBridge.exposeInMainWorld('electron', { + fileDownloaded: (filePath: string) => ipcRenderer.invoke("file-downloaded", filePath), + exportPresentation: (id: string, title: string, format: "pptx" | "pdf") => + ipcRenderer.invoke("export-presentation", id, title, format), + getUserConfig: () => ipcRenderer.invoke("get-user-config"), + setUserConfig: (userConfig: UserConfig) => ipcRenderer.invoke("set-user-config", userConfig), + getCanChangeKeys: () => ipcRenderer.invoke("get-can-change-keys"), + readFile: (filePath: string) => ipcRenderer.invoke("read-file", filePath), + getSlideMetadata: (url: string, theme: string, customColors?: any, tempDirectory?: string) => + ipcRenderer.invoke("get-slide-metadata", url, theme, customColors, tempDirectory), + getFooter: (userId: string) => ipcRenderer.invoke("get-footer", userId), + setFooter: (userId: string, properties: any) => ipcRenderer.invoke("set-footer", userId, properties), + getTheme: (userId: string) => ipcRenderer.invoke("get-theme", userId), + setTheme: (userId: string, themeData: any) => ipcRenderer.invoke("set-theme", userId, themeData), + uploadImage: (file: Buffer) => ipcRenderer.invoke("upload-image", file), + writeNextjsLog: (logData: string) => ipcRenderer.invoke("write-nextjs-log", logData), + clearNextjsLogs: () => ipcRenderer.invoke("clear-nextjs-logs"), + // API handlers + hasRequiredKey: () => ipcRenderer.invoke("api:has-required-key"), + telemetryStatus: () => ipcRenderer.invoke("api:telemetry-status"), + getTemplates: () => ipcRenderer.invoke("api:templates"), +}); diff --git a/electron/app/preloads/pptx-export.ts b/electron/app/preloads/pptx-export.ts new file mode 100644 index 0000000..7bcfb54 --- /dev/null +++ b/electron/app/preloads/pptx-export.ts @@ -0,0 +1,13 @@ +// Preload script for PPTX export browser window +// This script runs before the page loads and injects environment variables +import './sentry'; + +// Expose environment variables to the window +(window as any).env = { + NEXT_PUBLIC_FAST_API: process.env.NEXT_PUBLIC_FAST_API || '', + NEXT_PUBLIC_URL: process.env.NEXT_PUBLIC_URL || '', + TEMP_DIRECTORY: process.env.TEMP_DIRECTORY || '', + NEXT_PUBLIC_USER_CONFIG_PATH: process.env.NEXT_PUBLIC_USER_CONFIG_PATH || '', +}; + +console.log('[PPTX Export Preload] Environment variables set:', (window as any).env); diff --git a/electron/app/preloads/sentry.ts b/electron/app/preloads/sentry.ts new file mode 100644 index 0000000..8d5d143 --- /dev/null +++ b/electron/app/preloads/sentry.ts @@ -0,0 +1,77 @@ +import * as Sentry from '@sentry/electron/renderer'; + +let isSentryInitialized = false; + +function parseBoolean(value: string | undefined, defaultValue: boolean): boolean { + if (value === undefined) { + return defaultValue; + } + + return !['0', 'false', 'no', 'off'].includes(value.trim().toLowerCase()); +} + +function parseSampleRate(value: string | undefined, defaultValue: number): number { + if (!value) { + return defaultValue; + } + + const parsed = Number.parseFloat(value); + if (Number.isNaN(parsed)) { + return defaultValue; + } + + return Math.max(0, Math.min(1, parsed)); +} + +export function initRendererSentry(): void { + if (isSentryInitialized) { + return; + } + + const dsn = 'https://48b091ed88ae147c0957a46a823c1449@o4509882707410944.ingest.us.sentry.io/4511171070394368'; + const isEnabled = parseBoolean(process.env.SENTRY_ENABLED, true); + + if (!isEnabled) { + return; + } + + const enableTracing = parseBoolean(process.env.SENTRY_ENABLE_TRACING, true); + const enableReplay = parseBoolean(process.env.SENTRY_ENABLE_REPLAY, false); + const enableFeedback = parseBoolean(process.env.SENTRY_ENABLE_FEEDBACK, false); + + const integrations: any[] = []; + if (enableTracing) { + integrations.push(Sentry.browserTracingIntegration()); + } + if (enableReplay) { + integrations.push(Sentry.replayIntegration()); + } + if (enableFeedback) { + integrations.push( + Sentry.feedbackIntegration({ + colorScheme: 'system', + }), + ); + } + + Sentry.init({ + dsn, + enableLogs: parseBoolean(process.env.SENTRY_ENABLE_LOGS, true), + sendDefaultPii: parseBoolean(process.env.SENTRY_SEND_DEFAULT_PII, false), + tracesSampleRate: enableTracing + ? parseSampleRate(process.env.SENTRY_TRACES_SAMPLE_RATE, 1.0) + : undefined, + replaysSessionSampleRate: enableReplay + ? parseSampleRate(process.env.SENTRY_REPLAYS_SESSION_SAMPLE_RATE, 0.1) + : undefined, + replaysOnErrorSampleRate: enableReplay + ? parseSampleRate(process.env.SENTRY_REPLAYS_ON_ERROR_SAMPLE_RATE, 1.0) + : undefined, + integrations, + }); + + isSentryInitialized = true; + Sentry.setTag('process.type', 'renderer'); +} + +initRendererSentry(); diff --git a/electron/app/sentry/main.ts b/electron/app/sentry/main.ts new file mode 100644 index 0000000..518188c --- /dev/null +++ b/electron/app/sentry/main.ts @@ -0,0 +1,169 @@ +import { app } from "electron"; +import * as Sentry from "@sentry/electron/main"; + +let isSentryInitialized = false; + +type MainSentryRuntimeContext = { + profileHash?: string; + cacheRecoveryStatus?: string; + cacheRecoveryMode?: string; +}; + +function parseBoolean(value: string | undefined, defaultValue: boolean): boolean { + if (value === undefined) { + return defaultValue; + } + + return !["0", "false", "no", "off"].includes(value.trim().toLowerCase()); +} + +function parseSampleRate(value: string | undefined, defaultValue: number): number { + if (!value) { + return defaultValue; + } + + const parsed = Number.parseFloat(value); + if (Number.isNaN(parsed)) { + return defaultValue; + } + + return Math.max(0, Math.min(1, parsed)); +} + +function getEnvironment(): string { + if (process.env.SENTRY_ENVIRONMENT) { + return process.env.SENTRY_ENVIRONMENT; + } + + if (process.env.NODE_ENV) { + return process.env.NODE_ENV; + } + + return app.isPackaged ? "production" : "development"; +} + +function getRelease(): string { + if (process.env.SENTRY_RELEASE) { + return process.env.SENTRY_RELEASE; + } + + return `presenton-electron@${app.getVersion()}`; +} + +export function initMainSentry(): void { + if (isSentryInitialized) { + return; + } + + const dsn = "https://48b091ed88ae147c0957a46a823c1449@o4509882707410944.ingest.us.sentry.io/4511171070394368"; + const isEnabled = parseBoolean(process.env.SENTRY_ENABLED, true); + + if (!isEnabled) { + return; + } + + const tracesSampleRate = parseSampleRate( + process.env.SENTRY_TRACES_SAMPLE_RATE, + app.isPackaged ? 0.2 : 1.0, + ); + + try { + Sentry.init({ + dsn, + enabled: true, + release: getRelease(), + environment: getEnvironment(), + debug: parseBoolean(process.env.SENTRY_DEBUG, false), + sendDefaultPii: parseBoolean(process.env.SENTRY_SEND_DEFAULT_PII, false), + enableLogs: parseBoolean(process.env.SENTRY_ENABLE_LOGS, true), + tracesSampleRate, + integrations: [Sentry.startupTracingIntegration()], + }); + + isSentryInitialized = true; + Sentry.setTag("process.type", "main"); + Sentry.setTag("electron.version", process.versions.electron ?? "unknown"); + Sentry.setTag("chromium.version", process.versions.chrome ?? "unknown"); + Sentry.setTag("node.version", process.versions.node ?? "unknown"); + Sentry.setTag("os.platform", process.platform); + Sentry.setTag("os.arch", process.arch); + Sentry.setContext("runtime", { + appVersion: app.getVersion(), + electronVersion: process.versions.electron ?? "unknown", + chromiumVersion: process.versions.chrome ?? "unknown", + nodeVersion: process.versions.node ?? "unknown", + platform: process.platform, + arch: process.arch, + packaged: app.isPackaged, + }); + console.log("[Sentry] Initialized in Electron main process."); + } catch (error) { + console.error("[Sentry] Failed to initialize in Electron main process:", error); + } +} + +export function setMainSentryRuntimeContext(context: MainSentryRuntimeContext): void { + if (!isSentryInitialized) { + return; + } + + try { + if (context.profileHash) { + Sentry.setTag("profile.hash", context.profileHash); + } + if (context.cacheRecoveryStatus) { + Sentry.setTag("cache_recovery.status", context.cacheRecoveryStatus); + } + if (context.cacheRecoveryMode) { + Sentry.setTag("cache_recovery.mode", context.cacheRecoveryMode); + } + Sentry.setContext("presenton", { + profileHash: context.profileHash, + cacheRecoveryStatus: context.cacheRecoveryStatus, + cacheRecoveryMode: context.cacheRecoveryMode, + }); + } catch { + /* ignore context failures */ + } +} + +export function captureMainException( + error: unknown, + context?: Record, +): void { + if (!isSentryInitialized) { + return; + } + + try { + Sentry.withScope((scope) => { + if (context) { + scope.setContext("presenton", context); + } + Sentry.captureException(error); + }); + } catch { + /* ignore capture failures */ + } +} + +export function addMainBreadcrumb( + category: string, + message: string, + data?: Record, +): void { + if (!isSentryInitialized) { + return; + } + + try { + Sentry.addBreadcrumb({ + category, + message, + level: "info", + data, + }); + } catch { + /* ignore breadcrumb failures */ + } +} diff --git a/electron/app/services/settings-store.ts b/electron/app/services/settings-store.ts new file mode 100644 index 0000000..d36979b --- /dev/null +++ b/electron/app/services/settings-store.ts @@ -0,0 +1,84 @@ +import path from 'path'; +import fs from 'fs'; +import { getUserDataDir } from '../utils/constants'; + + +class SettingsStore { + private settingsPath: string | undefined; + private settings: { [key: string]: any }; + private loaded = false; + + constructor() { + this.settings = {}; + } + + private getSettingsPath(): string { + if (!this.settingsPath) { + this.settingsPath = path.join(getUserDataDir(), 'settings.json'); + } + return this.settingsPath; + } + + private loadSettings() { + if (this.loaded) { + return; + } + this.loaded = true; + + try { + const settingsPath = this.getSettingsPath(); + if (fs.existsSync(settingsPath)) { + const data = fs.readFileSync(settingsPath, 'utf-8'); + this.settings = JSON.parse(data); + + } else { + this.settings = {}; + this.saveSettings(); + + } + } catch (error) { + console.error('Error loading settings:', error); + this.settings = {}; + } + } + + private saveSettings() { + try { + fs.writeFileSync(this.getSettingsPath(), JSON.stringify(this.settings, null, 2)); + + } catch (error) { + console.error('Error saving settings:', error); + throw error; + } + } + + get(key: string, defaultValue: any = null): any { + this.loadSettings(); + const value = this.settings[key]; + + return value || defaultValue; + } + + set(key: string, value: any): void { + this.loadSettings(); + + this.settings[key] = value; + this.saveSettings(); + } + + // Helper method to check if settings exist + has(key: string): boolean { + this.loadSettings(); + return key in this.settings; + } + + // Helper method to delete a setting + delete(key: string): void { + this.loadSettings(); + delete this.settings[key]; + this.saveSettings(); + } +} + +// Export a singleton instance +export const settingsStore = new SettingsStore(); \ No newline at end of file diff --git a/electron/app/types/index.d.ts b/electron/app/types/index.d.ts new file mode 100644 index 0000000..5fc2155 --- /dev/null +++ b/electron/app/types/index.d.ts @@ -0,0 +1,173 @@ +interface FastApiEnv { + DEBUG?: string, + CAN_CHANGE_KEYS?: string, + LLM?: string, + OPENAI_API_KEY?: string, + OPENAI_MODEL?: string, + DEEPSEEK_API_KEY?: string, + DEEPSEEK_MODEL?: string, + DEEPSEEK_BASE_URL?: string, + GOOGLE_API_KEY?: string, + GOOGLE_MODEL?: string, + ANTHROPIC_API_KEY?: string, + ANTHROPIC_MODEL?: string, + OLLAMA_URL?: string, + OLLAMA_MODEL?: string, + CUSTOM_LLM_URL?: string, + CUSTOM_LLM_API_KEY?: string, + CUSTOM_MODEL?: string, + BEDROCK_REGION?: string, + BEDROCK_API_KEY?: string, + BEDROCK_AWS_ACCESS_KEY_ID?: string, + BEDROCK_AWS_SECRET_ACCESS_KEY?: string, + BEDROCK_AWS_SESSION_TOKEN?: string, + BEDROCK_PROFILE_NAME?: string, + BEDROCK_MODEL?: string, + FIREWORKS_API_KEY?: string, + FIREWORKS_MODEL?: string, + FIREWORKS_BASE_URL?: string, + TOGETHER_API_KEY?: string, + TOGETHER_MODEL?: string, + TOGETHER_BASE_URL?: string, + LMSTUDIO_BASE_URL?: string, + LMSTUDIO_API_KEY?: string, + LMSTUDIO_MODEL?: string, + PEXELS_API_KEY?: string, + PIXABAY_API_KEY?: string, + IMAGE_PROVIDER?: string, + DISABLE_IMAGE_GENERATION?: string, + EXTENDED_REASONING?: string, + TOOL_CALLS?: string, + DISABLE_THINKING?: string, + WEB_GROUNDING?: string, + WEB_SEARCH_PROVIDER?: string, + WEB_SEARCH_MAX_RESULTS?: string, + SEARXNG_BASE_URL?: string, + TAVILY_API_KEY?: string, + EXA_API_KEY?: string, + BRAVE_SEARCH_API_KEY?: string, + SERPER_API_KEY?: string, + DATABASE_URL?: string, + DISABLE_ANONYMOUS_TRACKING?: string, + COMFYUI_URL?: string, + COMFYUI_WORKFLOW?: string, + DALL_E_3_QUALITY?: string, + GPT_IMAGE_1_5_QUALITY?: string, + APP_DATA_DIRECTORY?: string, + /** Same origin the Next.js app uses for FastAPI (assets + API). Passed through to Python. */ + NEXT_PUBLIC_FAST_API?: string, + TEMP_DIRECTORY?: string, + USER_CONFIG_PATH?: string, + MIGRATE_DATABASE_ON_STARTUP?: string, + DISABLE_AUTH?: string, + PRESENTON_ELECTRON?: string, + /** Absolute path to the bundled/resolved ImageMagick magick executable. */ + IMAGEMAGICK_BINARY?: string, + /** ImageMagick runtime root used by the bundled portable build. */ + MAGICK_HOME?: string, + /** ImageMagick configuration directory used by the bundled portable build. */ + MAGICK_CONFIGURE_PATH?: string, + /** POSIX-style path key used on macOS/Linux child processes. */ + PATH?: string, + /** Windows path key, preserved to avoid duplicate PATH/Path env entries. */ + Path?: string, + /** Absolute path to the bundled LiteParse runner script. */ + LITEPARSE_RUNNER_PATH?: string, + /** Binary path used by LiteParseService to execute liteparse_runner.mjs. */ + LITEPARSE_NODE_BINARY?: string, + /** Set to "1" when using the Electron binary as a Node runtime. */ + ELECTRON_RUN_AS_NODE?: string, + /** Root directory of the bundled presentation export runtime package. */ + EXPORT_PACKAGE_ROOT?: string, + /** Directory used by FastAPI export task runtime resolution. */ + EXPORT_RUNTIME_DIR?: string, + /** Absolute path to the Chromium executable used by the export runtime. */ + PUPPETEER_EXECUTABLE_PATH?: string, + /** Writable Puppeteer browser cache directory. */ + PUPPETEER_CACHE_DIR?: string, + /** Writable Puppeteer temporary directory. */ + PUPPETEER_TMP_DIR?: string, + /** Absolute path to bundled PyInstaller converter binary for export runtime. */ + BUILT_PYTHON_MODULE_PATH?: string, +} + +interface NextJsEnv { + NEXT_PUBLIC_FAST_API?: string, + /** Optional Docker-only: SSR/middleware reach FastAPI on a different base than the browser. */ + FAST_API_INTERNAL_URL?: string, + TEMP_DIRECTORY?: string, + NEXT_PUBLIC_URL?: string, + NEXT_PUBLIC_USER_CONFIG_PATH?: string, + USER_CONFIG_PATH?: string, + APP_DATA_DIRECTORY?: string, + DISABLE_AUTH?: string, + EXPORT_PACKAGE_ROOT?: string, + PRESENTON_APP_ROOT?: string, + BUILT_PYTHON_MODULE_PATH?: string, +} + +interface UserConfig { + CAN_CHANGE_KEYS?: string, + LLM?: string, + OPENAI_API_KEY?: string, + OPENAI_MODEL?: string, + DEEPSEEK_API_KEY?: string, + DEEPSEEK_MODEL?: string, + DEEPSEEK_BASE_URL?: string, + GOOGLE_API_KEY?: string, + GOOGLE_MODEL?: string, + ANTHROPIC_API_KEY?: string, + ANTHROPIC_MODEL?: string, + OLLAMA_URL?: string, + OLLAMA_MODEL?: string, + CUSTOM_LLM_URL?: string, + CUSTOM_LLM_API_KEY?: string, + CUSTOM_MODEL?: string, + BEDROCK_REGION?: string, + BEDROCK_API_KEY?: string, + BEDROCK_AWS_ACCESS_KEY_ID?: string, + BEDROCK_AWS_SECRET_ACCESS_KEY?: string, + BEDROCK_AWS_SESSION_TOKEN?: string, + BEDROCK_PROFILE_NAME?: string, + BEDROCK_MODEL?: string, + FIREWORKS_API_KEY?: string, + FIREWORKS_MODEL?: string, + FIREWORKS_BASE_URL?: string, + TOGETHER_API_KEY?: string, + TOGETHER_MODEL?: string, + TOGETHER_BASE_URL?: string, + LMSTUDIO_BASE_URL?: string, + LMSTUDIO_API_KEY?: string, + LMSTUDIO_MODEL?: string, + PEXELS_API_KEY?: string, + PIXABAY_API_KEY?: string, + IMAGE_PROVIDER?: string, + DISABLE_IMAGE_GENERATION?: string, + EXTENDED_REASONING?: string, + TOOL_CALLS?: string, + DISABLE_THINKING?: string, + WEB_GROUNDING?: string, + WEB_SEARCH_PROVIDER?: string, + WEB_SEARCH_MAX_RESULTS?: string, + SEARXNG_BASE_URL?: string, + TAVILY_API_KEY?: string, + EXA_API_KEY?: string, + BRAVE_SEARCH_API_KEY?: string, + SERPER_API_KEY?: string, + DATABASE_URL?: string, + DISABLE_ANONYMOUS_TRACKING?: string, + COMFYUI_URL?: string, + COMFYUI_WORKFLOW?: string, + DALL_E_3_QUALITY?: string, + GPT_IMAGE_1_5_QUALITY?: string, + CODEX_MODEL?: string, + CODEX_ACCESS_TOKEN?: string, + CODEX_REFRESH_TOKEN?: string, + CODEX_TOKEN_EXPIRES?: string, + CODEX_ACCOUNT_ID?: string, +} + +interface IPCStatus { + success: boolean, + message?: string, +} diff --git a/electron/app/utils/chromium-cache-recovery.ts b/electron/app/utils/chromium-cache-recovery.ts new file mode 100644 index 0000000..da3ac04 --- /dev/null +++ b/electron/app/utils/chromium-cache-recovery.ts @@ -0,0 +1,235 @@ +import { app, session } from "electron"; +import fs from "fs"; +import path from "path"; +import { addMainBreadcrumb, captureMainException } from "../sentry/main"; +import { safeError, safeLog, safeWarn } from "./safe-console"; + +export type ChromiumCacheRecoveryStatus = { + mode: "auto" | "force" | "off"; + status: "pending-session-clear" | "completed" | "failed" | "skipped"; + recoveryKey: string; + appVersion: string; + electronVersion: string; + quarantined: string[]; + removedStaleDirectories: number; + errors: string[]; + reason?: string; +}; + +const RECOVERY_KEY = "shared-dictionary-cache-v1"; +const SENTINEL_FILE = "chromium-cache-recovery.json"; + +function getRecoveryMode(): ChromiumCacheRecoveryStatus["mode"] { + const raw = process.env.PRESENTON_CHROMIUM_CACHE_RECOVERY?.trim().toLowerCase(); + if (["0", "false", "no", "off"].includes(raw ?? "")) { + return "off"; + } + if (raw === "force") { + return "force"; + } + return "auto"; +} + +function getSentinelPath(userDataDir: string): string { + return path.join(userDataDir, SENTINEL_FILE); +} + +function readSentinel(userDataDir: string): Record | undefined { + try { + const raw = fs.readFileSync(getSentinelPath(userDataDir), "utf8"); + return JSON.parse(raw) as Record; + } catch { + return undefined; + } +} + +function writeSentinel(userDataDir: string, status: ChromiumCacheRecoveryStatus): void { + const payload = { + recoveryKey: status.recoveryKey, + appVersion: status.appVersion, + electronVersion: status.electronVersion, + completedAt: new Date().toISOString(), + quarantined: status.quarantined, + removedStaleDirectories: status.removedStaleDirectories, + }; + fs.writeFileSync(getSentinelPath(userDataDir), `${JSON.stringify(payload, null, 2)}\n`); +} + +function shouldRunRecovery( + mode: ChromiumCacheRecoveryStatus["mode"], + userDataDir: string, + appVersion: string, + electronVersion: string, +): boolean { + if (mode === "force") { + return true; + } + if (mode === "off") { + return false; + } + + const sentinel = readSentinel(userDataDir); + return !( + sentinel?.recoveryKey === RECOVERY_KEY && + sentinel?.appVersion === appVersion && + sentinel?.electronVersion === electronVersion + ); +} + +function uniqueQuarantinePath(quarantineRoot: string, label: string): string { + const timestamp = new Date().toISOString().replace(/[:.]/g, "-"); + let candidate = path.join(quarantineRoot, `${label}-${timestamp}`); + let suffix = 1; + while (fs.existsSync(candidate)) { + candidate = path.join(quarantineRoot, `${label}-${timestamp}-${suffix}`); + suffix += 1; + } + return candidate; +} + +function quarantineIfPresent( + source: string, + quarantineRoot: string, + label: string, + status: ChromiumCacheRecoveryStatus, +): void { + if (!fs.existsSync(source)) { + return; + } + + try { + fs.mkdirSync(quarantineRoot, { recursive: true }); + fs.renameSync(source, uniqueQuarantinePath(quarantineRoot, label)); + status.quarantined.push(label); + } catch (error) { + const message = error instanceof Error ? error.message : String(error); + status.errors.push(`${label}: ${message}`); + } +} + +function removeOldDirectories(dir: string, status: ChromiumCacheRecoveryStatus): void { + if (!fs.existsSync(dir)) { + return; + } + + try { + const entries = fs.readdirSync(dir, { withFileTypes: true }); + for (const entry of entries) { + if (entry.isDirectory() && entry.name.startsWith("old_")) { + fs.rmSync(path.join(dir, entry.name), { recursive: true, force: true }); + status.removedStaleDirectories += 1; + } + } + } catch (error) { + const message = error instanceof Error ? error.message : String(error); + status.errors.push(`old-cache-cleanup: ${message}`); + } +} + +export function prepareChromiumCacheRecovery( + cacheDir: string, + userDataDir: string, +): ChromiumCacheRecoveryStatus { + const mode = getRecoveryMode(); + const appVersion = app.getVersion(); + const electronVersion = process.versions.electron ?? "unknown"; + const status: ChromiumCacheRecoveryStatus = { + mode, + status: "pending-session-clear", + recoveryKey: RECOVERY_KEY, + appVersion, + electronVersion, + quarantined: [], + removedStaleDirectories: 0, + errors: [], + }; + + if (mode === "off") { + status.status = "skipped"; + status.reason = "disabled-by-env"; + return status; + } + + if (!shouldRunRecovery(mode, userDataDir, appVersion, electronVersion)) { + status.status = "skipped"; + status.reason = "already-completed"; + return status; + } + + removeOldDirectories(cacheDir, status); + removeOldDirectories(path.join(userDataDir, "GPUCache"), status); + + const quarantineRoot = path.join(userDataDir, "Recovered Chromium Cache"); + quarantineIfPresent( + path.join(userDataDir, "Shared Dictionary"), + quarantineRoot, + "Shared Dictionary", + status, + ); + + if (status.errors.length > 0) { + status.status = "failed"; + safeWarn("[Presenton] Chromium cache recovery finished with errors:", status); + return status; + } + + safeLog("[Presenton] Chromium cache recovery prepared:", { + mode: status.mode, + quarantined: status.quarantined, + removedStaleDirectories: status.removedStaleDirectories, + }); + return status; +} + +export async function finishChromiumCacheRecovery( + userDataDir: string, + status: ChromiumCacheRecoveryStatus, +): Promise { + if (status.status === "skipped") { + addMainBreadcrumb("cache-recovery", "electron.chromium_cache_recovery.skipped", { + reason: status.reason, + mode: status.mode, + }); + return status; + } + + try { + const defaultSession = session.defaultSession; + const skippedSessionClears: string[] = []; + + if (typeof defaultSession.clearSharedDictionaryCache === "function") { + await defaultSession.clearSharedDictionaryCache(); + } else { + skippedSessionClears.push("shared-dictionary-cache"); + } + + if (typeof defaultSession.clearCodeCaches === "function") { + await defaultSession.clearCodeCaches({ urls: [] }); + } else { + skippedSessionClears.push("code-cache"); + } + + await defaultSession.clearCache(); + writeSentinel(userDataDir, status); + status.status = "completed"; + addMainBreadcrumb("cache-recovery", "electron.chromium_cache_recovery.completed", { + mode: status.mode, + quarantined: status.quarantined, + removedStaleDirectories: status.removedStaleDirectories, + skippedSessionClears, + }); + } catch (error) { + status.status = "failed"; + const message = error instanceof Error ? error.message : String(error); + status.errors.push(`session-clear: ${message}`); + safeError("[Presenton] Chromium cache recovery failed:", error); + captureMainException(error, { + area: "chromium-cache-recovery", + mode: status.mode, + quarantined: status.quarantined, + removedStaleDirectories: status.removedStaleDirectories, + }); + } + + return status; +} diff --git a/electron/app/utils/constants.ts b/electron/app/utils/constants.ts new file mode 100644 index 0000000..ca529c1 --- /dev/null +++ b/electron/app/utils/constants.ts @@ -0,0 +1,337 @@ +import { app } from "electron" +import path from "path" +import fs from "fs" +import os from "os" + +export const localhost = "http://127.0.0.1" + + +export const isDev = !app.isPackaged; +export const baseDir = app.getAppPath(); +export const resourceBaseDir = + isDev || !baseDir.endsWith(".asar") ? baseDir : `${baseDir}.unpacked`; +export const fastapiDir = isDev + ? path.resolve(baseDir, "..", "servers", "fastapi") + : path.join(resourceBaseDir, "resources/fastapi"); +export const nextjsDir = isDev + ? path.resolve(baseDir, "..", "servers", "nextjs") + : path.join(resourceBaseDir, "resources/nextjs"); + +const appDirectoryName = "Presenton Open Source"; + +export type ElectronAppPaths = { + userDataDir: string; + appDataDir: string; + tempDir: string; + logsDir: string; + userConfigPath: string; + cacheDir: string; + crashDumpsDir: string; + sessionDataDir: string; +}; + +let appPaths: ElectronAppPaths | undefined; +let downloadsDir: string | undefined; + +function unique(paths: Array): string[] { + const seen = new Set(); + const result: string[] = []; + + for (const candidate of paths) { + if (!candidate) continue; + const resolved = path.resolve(candidate); + if (seen.has(resolved)) continue; + seen.add(resolved); + result.push(resolved); + } + + return result; +} + +function absoluteEnvPath(name: string): string | undefined { + const value = process.env[name]?.trim(); + if (!value || !path.isAbsolute(value)) { + return undefined; + } + return value; +} + +function getHomeDir(): string | undefined { + const envHome = + absoluteEnvPath("HOME") || + absoluteEnvPath("USERPROFILE") || + (() => { + const drive = process.env.HOMEDRIVE?.trim(); + const homePath = process.env.HOMEPATH?.trim(); + if (!drive || !homePath) return undefined; + const candidate = `${drive}${homePath}`; + return path.isAbsolute(candidate) ? candidate : undefined; + })(); + + if (envHome) { + return envHome; + } + + try { + const home = os.homedir(); + return home && path.isAbsolute(home) ? home : undefined; + } catch { + return undefined; + } +} + +function electronPathCandidate(name: "temp" | "downloads" | "userData"): string | undefined { + try { + const candidate = app.getPath(name); + return candidate && path.isAbsolute(candidate) ? candidate : undefined; + } catch { + return undefined; + } +} + +function canUseDirectory(dir: string): boolean { + try { + fs.mkdirSync(dir, { recursive: true }); + fs.accessSync(dir, fs.constants.W_OK); + return true; + } catch { + return false; + } +} + +function firstWritableDirectory(candidates: string[], label: string): string { + for (const candidate of candidates) { + if (canUseDirectory(candidate)) { + return candidate; + } + } + + throw new Error( + `Unable to create a writable ${label} directory. Tried: ${candidates.join(", ")}` + ); +} + +function getTempRoot(): string { + const home = getHomeDir(); + return firstWritableDirectory( + unique([ + absoluteEnvPath("TMPDIR"), + absoluteEnvPath("TEMP"), + absoluteEnvPath("TMP"), + electronPathCandidate("temp"), + (() => { + try { + const tmp = os.tmpdir(); + return tmp && path.isAbsolute(tmp) ? tmp : undefined; + } catch { + return undefined; + } + })(), + process.platform === "win32" ? absoluteEnvPath("LOCALAPPDATA") : undefined, + home ? path.join(home, ".cache") : undefined, + process.platform === "win32" ? undefined : "/tmp", + ]), + "temporary root" + ); +} + +function getAppDataBaseDir(tempRoot: string): string { + const home = getHomeDir(); + const fallback = path.join(tempRoot, "presenton-app-data"); + + if (process.platform === "win32") { + return firstWritableDirectory( + unique([ + absoluteEnvPath("APPDATA"), + absoluteEnvPath("LOCALAPPDATA"), + home ? path.join(home, "AppData", "Roaming") : undefined, + fallback, + ]), + "app data" + ); + } + + if (process.platform === "darwin") { + return firstWritableDirectory( + unique([ + home ? path.join(home, "Library", "Application Support") : undefined, + fallback, + ]), + "app data" + ); + } + + return firstWritableDirectory( + unique([ + absoluteEnvPath("XDG_CONFIG_HOME"), + home ? path.join(home, ".config") : undefined, + fallback, + ]), + "app data" + ); +} + +function resolveLinuxDownloadsDir(home: string | undefined): string | undefined { + if (!home) { + return undefined; + } + + const userDirsPath = path.join(home, ".config", "user-dirs.dirs"); + try { + const userDirs = fs.readFileSync(userDirsPath, "utf8"); + const match = userDirs.match(/^XDG_DOWNLOAD_DIR=(["']?)(.+)\1$/m); + const rawValue = match?.[2]?.trim(); + if (!rawValue) { + return undefined; + } + const expanded = rawValue.replace("$HOME", home); + return path.isAbsolute(expanded) ? expanded : path.join(home, expanded); + } catch { + return undefined; + } +} + +function getDownloadsDirCandidate(userDataDir: string): string { + const home = getHomeDir(); + const fallback = path.join(userDataDir, "exports"); + + if (process.platform === "linux") { + return firstWritableDirectory( + unique([ + electronPathCandidate("downloads"), + resolveLinuxDownloadsDir(home), + home ? path.join(home, "Downloads") : undefined, + fallback, + ]), + "downloads" + ); + } + + return firstWritableDirectory( + unique([ + electronPathCandidate("downloads"), + home ? path.join(home, "Downloads") : undefined, + fallback, + ]), + "downloads" + ); +} + +function setElectronPath(name: string, dir: string): void { + try { + app.setPath(name, dir); + } catch (error) { + console.warn(`[Presenton] Failed to set Electron path ${name}=${dir}`, error); + } +} + +function appendDiskCacheSwitch(cacheDir: string): void { + try { + app.commandLine.appendSwitch("disk-cache-dir", cacheDir); + } catch (error) { + console.warn("[Presenton] Failed to configure Chromium disk cache path", error); + } +} + +export function initializeAppPaths(): ElectronAppPaths { + if (appPaths) { + return appPaths; + } + + const tempRoot = getTempRoot(); + const appDataBaseDir = getAppDataBaseDir(tempRoot); + const userDataDir = firstWritableDirectory( + unique([ + electronPathCandidate("userData"), + path.join(appDataBaseDir, appDirectoryName), + path.join(tempRoot, "presenton-user-data"), + ]), + "user data" + ); + const appDataDir = isDev + ? firstWritableDirectory( + unique([path.join(baseDir, "app_data"), path.join(userDataDir, "app_data")]), + "application data" + ) + : userDataDir; + const tempDir = firstWritableDirectory( + unique([path.join(tempRoot, "presenton"), path.join(userDataDir, "temp")]), + "temporary" + ); + const logsDir = firstWritableDirectory( + unique([path.join(userDataDir, "logs"), path.join(tempDir, "logs")]), + "logs" + ); + const cacheDir = firstWritableDirectory( + unique([path.join(userDataDir, "Cache"), path.join(tempDir, "Cache")]), + "cache" + ); + const crashDumpsDir = firstWritableDirectory( + unique([path.join(userDataDir, "Crashpad"), path.join(tempDir, "Crashpad")]), + "crash dumps" + ); + const sessionDataDir = userDataDir; + + appPaths = { + userDataDir, + appDataDir, + tempDir, + logsDir, + userConfigPath: path.join(userDataDir, "userConfig.json"), + cacheDir, + crashDumpsDir, + sessionDataDir, + }; + + setElectronPath("userData", userDataDir); + setElectronPath("sessionData", sessionDataDir); + setElectronPath("temp", tempDir); + setElectronPath("crashDumps", crashDumpsDir); + setElectronPath("cache", cacheDir); + appendDiskCacheSwitch(cacheDir); + + return appPaths; +} + +export function ensureDirectoriesExist() { + initializeAppPaths(); +} + +function getInitializedPaths(): ElectronAppPaths { + return initializeAppPaths(); +} + +export function getUserDataDir(): string { + return getInitializedPaths().userDataDir; +} + +export function getAppDataDir(): string { + return getInitializedPaths().appDataDir; +} + +export function getTempDir(): string { + return getInitializedPaths().tempDir; +} + +export function getLogsDir(): string { + return getInitializedPaths().logsDir; +} + +export function getUserConfigPath(): string { + return getInitializedPaths().userConfigPath; +} + +export function getDownloadsDir(): string { + if (!downloadsDir) { + downloadsDir = getDownloadsDirCandidate(getUserDataDir()); + } + return downloadsDir; +} + +export function getCacheDir(): string { + return getInitializedPaths().cacheDir; +} + +export function getCrashDumpsDir(): string { + return getInitializedPaths().crashDumpsDir; +} diff --git a/electron/app/utils/dialog.ts b/electron/app/utils/dialog.ts new file mode 100644 index 0000000..6bf09f4 --- /dev/null +++ b/electron/app/utils/dialog.ts @@ -0,0 +1,43 @@ +import { dialog } from "electron"; +import path from "path"; +import { openLocalPath, showOpenTargetErrorDialog } from "./open-target"; +import { safeError } from "./safe-console"; + +export async function showFileDownloadedDialog(filePath: string): Promise { + try { + const { response } = await dialog.showMessageBox({ + type: "question", + buttons: ["Open File", "Open Folder", "Cancel"], + defaultId: 0, + title: "File Downloaded", + message: "What would you like to do?", + }); + + let targetPath: string | undefined; + let targetLabel: "file" | "folder" | undefined; + + if (response === 0) { + targetPath = filePath; + targetLabel = "file"; + } else if (response === 1) { + targetPath = path.dirname(filePath); + targetLabel = "folder"; + } + + if (targetPath && targetLabel) { + const result = await openLocalPath(targetPath); + if (!result.success) { + await showOpenTargetErrorDialog({ + title: `Could Not Open ${targetLabel === "file" ? "File" : "Folder"}`, + message: `The exported file was saved, but Presenton could not open the ${targetLabel}.`, + detail: `${result.message || "No application is registered to open this item."}\n\nSaved location:\n${filePath}`, + }); + } + } + + return true; + } catch (error) { + safeError("Error handling downloaded file:", error); + return false; + } +} diff --git a/electron/app/utils/export-chromium.ts b/electron/app/utils/export-chromium.ts new file mode 100644 index 0000000..8ea8a90 --- /dev/null +++ b/electron/app/utils/export-chromium.ts @@ -0,0 +1,471 @@ +import fs from "fs"; +import os from "os"; +import path from "path"; +import { spawn } from "child_process"; +import { + Browser, + Cache, + computeExecutablePath, + detectBrowserPlatform, + install, +} from "@puppeteer/browsers"; +import { getCacheDir, resourceBaseDir } from "./constants"; +import { isWindowsStoreInstall } from "./export-msix-runtime"; +import { safeError, safeLog } from "./safe-console"; + +/** Must match the Chrome revision expected by the bundled presentation-export runtime. */ +const EXPORT_CHROME_BUILD_ID = + process.env.EXPORT_CHROME_BUILD_ID?.trim() || "146.0.7680.76"; +const BUNDLED_CHROMIUM_MANIFEST = "presenton-runtime.json"; + +type BundledChromiumManifest = { + browser?: string; + buildId?: string; + platform?: string; + nodePlatform?: string; + arch?: string; + executable?: string; +}; + +export type ChromiumInstallProgress = { + phase: "downloading" | "installing" | "done" | "error"; + percent?: number; + message?: string; +}; + +function resolvePuppeteerCacheRoot(): string { + const configured = process.env.PUPPETEER_CACHE_DIR?.trim(); + if (configured) { + return path.resolve(configured); + } + return path.join(os.homedir(), ".cache", "puppeteer"); +} + +export function getBundledExportChromiumCacheRoot(): string { + return path.join(resourceBaseDir, "resources", "chromium"); +} + +function readBundledChromiumManifest(): BundledChromiumManifest | null { + const manifestPath = path.join(getBundledExportChromiumCacheRoot(), BUNDLED_CHROMIUM_MANIFEST); + try { + const manifest = JSON.parse(fs.readFileSync(manifestPath, "utf8")) as BundledChromiumManifest; + if (manifest.browser && manifest.browser !== Browser.CHROME) { + return null; + } + if (manifest.buildId && manifest.buildId !== EXPORT_CHROME_BUILD_ID) { + return null; + } + if (manifest.nodePlatform && manifest.nodePlatform !== process.platform) { + return null; + } + if (manifest.arch && manifest.arch !== process.arch) { + return null; + } + if (!manifest.executable) { + return null; + } + return manifest; + } catch { + return null; + } +} + +function resolveManifestBundledExportChromiumPath(): string | null { + const manifest = readBundledChromiumManifest(); + if (!manifest?.executable) { + return null; + } + const executablePath = path.join(getBundledExportChromiumCacheRoot(), manifest.executable); + return isMaterializedChromiumComplete(executablePath) ? executablePath : null; +} + +function resolveExportChromeInstallOptions(cacheDir = resolvePuppeteerCacheRoot()): + | { browser: Browser.CHROME; buildId: string; cacheDir: string; platform: NonNullable> } + | null { + const platform = detectBrowserPlatform(); + if (!platform) { + return null; + } + return { + browser: Browser.CHROME, + buildId: EXPORT_CHROME_BUILD_ID, + cacheDir, + platform, + }; +} + +/** Pre–Chrome-for-Testing cache layouts still present on some machines. */ +function getLegacyExecutableRelativePaths(): string[] { + if (process.platform === "win32") { + return [ + path.join("chrome-win64", "chrome.exe"), + path.join("chrome-win32", "chrome.exe"), + ]; + } + if (process.platform === "darwin") { + return [ + path.join("chrome-mac", "Chromium.app", "Contents", "MacOS", "Chromium"), + path.join("chrome-mac-arm64", "Chromium.app", "Contents", "MacOS", "Chromium"), + path.join("chrome-mac-x64", "Chromium.app", "Contents", "MacOS", "Chromium"), + ]; + } + return [path.join("chrome-linux64", "chrome")]; +} + +function resolveLegacyInstalledExportChromiumPath(): string | null { + const chromeBaseDir = path.join(resolvePuppeteerCacheRoot(), "chrome"); + let revisionDirs: string[] = []; + try { + revisionDirs = fs + .readdirSync(chromeBaseDir, { withFileTypes: true }) + .filter((entry) => entry.isDirectory()) + .map((entry) => path.join(chromeBaseDir, entry.name)); + } catch { + return null; + } + + const legacyRelativePaths = getLegacyExecutableRelativePaths(); + for (const revisionDir of revisionDirs) { + for (const relativePath of legacyRelativePaths) { + const executablePath = path.join(revisionDir, relativePath); + if (fs.existsSync(executablePath)) { + return executablePath; + } + } + } + return null; +} + +export function resolveInstalledExportChromiumPath(): string | null { + const manifestBundledPath = resolveManifestBundledExportChromiumPath(); + if (manifestBundledPath) { + return manifestBundledPath; + } + + const bundledOptions = resolveExportChromeInstallOptions(getBundledExportChromiumCacheRoot()); + if (bundledOptions) { + const bundledExpectedPath = computeExecutablePath(bundledOptions); + if (fs.existsSync(bundledExpectedPath)) { + return bundledExpectedPath; + } + + const bundledCache = new Cache(bundledOptions.cacheDir); + for (const installed of bundledCache.getInstalledBrowsers()) { + if (installed.browser !== Browser.CHROME || installed.buildId !== bundledOptions.buildId) { + continue; + } + if (fs.existsSync(installed.executablePath)) { + return installed.executablePath; + } + } + } + + const options = resolveExportChromeInstallOptions(); + if (options) { + const expectedPath = computeExecutablePath(options); + if (fs.existsSync(expectedPath)) { + return expectedPath; + } + + const cache = new Cache(options.cacheDir); + for (const installed of cache.getInstalledBrowsers()) { + if (installed.browser !== Browser.CHROME || installed.buildId !== options.buildId) { + continue; + } + if (fs.existsSync(installed.executablePath)) { + return installed.executablePath; + } + } + } + + return resolveLegacyInstalledExportChromiumPath(); +} + +export function isExportChromiumAvailable(): boolean { + return Boolean(resolveInstalledExportChromiumPath()); +} + +function isPathUnderWindowsApps(filePath: string): boolean { + return /\\windowsapps\\/i.test(filePath); +} + +function getMsixChromiumCacheRoot(): string { + return path.join(getCacheDir(), "msix-export-chromium", EXPORT_CHROME_BUILD_ID); +} + +/** + * MSIX/APPX installs keep the app under Program Files\\WindowsApps. Chrome cannot + * reliably launch from that read-only package, so copy the browser folder to user cache. + */ +async function materializeBundledChromiumForMsix(bundledExePath: string): Promise { + const browserDir = path.dirname(bundledExePath); + const revisionDir = path.dirname(browserDir); + const revisionName = path.basename(revisionDir); + const cacheRoot = getMsixChromiumCacheRoot(); + const destRevisionDir = path.join(cacheRoot, "chrome", revisionName); + const destExe = path.join(destRevisionDir, path.basename(browserDir), path.basename(bundledExePath)); + const stampPath = path.join(cacheRoot, ".source-revision-dir"); + const sourceStamp = `${revisionDir}\n${await getDirectoryMtimeFingerprint(revisionDir)}`; + + if (isMaterializedChromiumComplete(destExe)) { + try { + if ((await fs.promises.readFile(stampPath, "utf8")).trim() === sourceStamp.trim()) { + return destExe; + } + } catch { + // Stale cache; recopy below. + } + } + + safeLog( + "[Chromium] Copying bundled Chrome for Microsoft Store install:", + destRevisionDir + ); + await fs.promises.rm(cacheRoot, { recursive: true, force: true }); + await fs.promises.mkdir(path.dirname(destRevisionDir), { recursive: true }); + await fs.promises.cp(revisionDir, destRevisionDir, { recursive: true }); + await fs.promises.writeFile(stampPath, sourceStamp, "utf8"); + + if (!isMaterializedChromiumComplete(destExe)) { + throw new Error(`Chrome executable missing after MSIX materialization: ${destExe}`); + } + return destExe; +} + +function isMaterializedChromiumComplete(executablePath: string): boolean { + if (!fs.existsSync(executablePath)) { + return false; + } + if (process.platform !== "win32") { + return true; + } + + const chromeDir = path.dirname(executablePath); + return ["chrome.dll", "icudtl.dat"].every((fileName) => + fs.existsSync(path.join(chromeDir, fileName)) + ); +} + +async function getDirectoryMtimeFingerprint(directory: string): Promise { + let newestMtime = 0; + let fileCount = 0; + const visit = async (current: string) => { + const entries = await fs.promises.readdir(current, { withFileTypes: true }); + for (const entry of entries) { + const fullPath = path.join(current, entry.name); + if (entry.isDirectory()) { + await visit(fullPath); + continue; + } + const stat = await fs.promises.stat(fullPath); + newestMtime = Math.max(newestMtime, stat.mtimeMs); + fileCount += 1; + } + }; + await visit(directory); + return `${fileCount}:${newestMtime}`; +} + +function verifyChromiumCanStart(executablePath: string): Promise { + return new Promise((resolve, reject) => { + const probe = spawn( + executablePath, + [ + "--headless=new", + "--disable-gpu", + "--disable-dev-shm-usage", + "--no-sandbox", + "--no-first-run", + "--disable-extensions", + "about:blank", + ], + { + stdio: "ignore", + windowsHide: process.platform === "win32", + } + ); + + let settled = false; + const timeout = setTimeout(() => { + if (settled) return; + settled = true; + probe.kill(); + resolve(); + }, 3000); + + probe.once("error", (error) => { + if (settled) return; + settled = true; + clearTimeout(timeout); + reject(error); + }); + + probe.once("exit", (code) => { + if (settled) return; + settled = true; + clearTimeout(timeout); + code === 0 + ? resolve() + : reject(new Error(`Chrome probe exited with code ${code ?? "unknown"}`)); + }); + }); +} + +/** + * Resolves a Chrome binary path that can actually be spawned (writable on MSIX/APPX). + */ +export async function resolveLaunchableExportChromiumPath(): Promise { + const installed = resolveInstalledExportChromiumPath(); + if (!installed) { + return null; + } + + const mustMaterialize = + isWindowsStoreInstall() || isPathUnderWindowsApps(installed); + if (!mustMaterialize) { + return installed; + } + + try { + const materializedPath = await materializeBundledChromiumForMsix(installed); + await verifyChromiumCanStart(materializedPath); + return materializedPath; + } catch (error) { + safeError("[Chromium] Failed to prepare Chrome for Microsoft Store export", error); + return null; + } +} + +export async function removeBrokenExportChromiumCaches(): Promise { + const cacheDir = resolvePuppeteerCacheRoot(); + const cache = new Cache(cacheDir); + let removedCount = 0; + + for (const installed of cache.getInstalledBrowsers()) { + if (installed.browser !== Browser.CHROME) { + continue; + } + if (fs.existsSync(installed.executablePath)) { + continue; + } + try { + await fs.promises.rm(installed.path, { recursive: true, force: true }); + removedCount += 1; + safeLog(`[Chromium] Removed broken cache: ${installed.path}`); + } catch { + // Best effort cleanup only. + } + } + + const chromeBaseDir = path.join(cacheDir, "chrome"); + const legacyRelativePaths = getLegacyExecutableRelativePaths(); + let revisionDirs: string[] = []; + try { + revisionDirs = fs + .readdirSync(chromeBaseDir, { withFileTypes: true }) + .filter((entry) => entry.isDirectory()) + .map((entry) => path.join(chromeBaseDir, entry.name)); + } catch { + return removedCount; + } + + for (const revisionDir of revisionDirs) { + const hasLegacyExecutable = legacyRelativePaths.some((relativePath) => + fs.existsSync(path.join(revisionDir, relativePath)) + ); + if (hasLegacyExecutable) { + continue; + } + + const basename = path.basename(revisionDir); + if (basename.includes("-")) { + continue; + } + + try { + await fs.promises.rm(revisionDir, { recursive: true, force: true }); + removedCount += 1; + safeLog(`[Chromium] Removed broken cache: ${revisionDir}`); + } catch { + // Best effort cleanup only. + } + } + + return removedCount; +} + +function formatMegabytes(bytes: number): string { + return `${(bytes / 1024 / 1024).toFixed(1)} MB`; +} + +export async function installExportChromium( + onProgress?: (progress: ChromiumInstallProgress) => void +): Promise { + const removed = await removeBrokenExportChromiumCaches(); + if (removed > 0) { + onProgress?.({ + phase: "installing", + message: `Removed ${removed} incomplete Chromium download${removed === 1 ? "" : "s"}.`, + }); + } + + if (isExportChromiumAvailable()) { + onProgress?.({ phase: "done", percent: 100, message: "Chromium is already installed." }); + return; + } + + const options = resolveExportChromeInstallOptions(); + if (!options) { + throw new Error(`Unsupported platform for Chromium export runtime: ${process.platform}-${process.arch}`); + } + + await fs.promises.mkdir(options.cacheDir, { recursive: true }); + + onProgress?.({ + phase: "downloading", + percent: 0, + message: `Downloading Chromium ${options.buildId}…`, + }); + + let lastLoggedPercent = -1; + await install({ + ...options, + downloadProgressCallback(downloadedBytes, totalBytes) { + if (totalBytes <= 0) { + return; + } + const percent = Math.min(99, Math.floor((downloadedBytes / totalBytes) * 100)); + if (percent === lastLoggedPercent) { + return; + } + lastLoggedPercent = percent; + onProgress?.({ + phase: "downloading", + percent, + message: `${formatMegabytes(downloadedBytes)} / ${formatMegabytes(totalBytes)}`, + }); + }, + }); + + if (!isExportChromiumAvailable()) { + const expectedPath = computeExecutablePath(options); + throw new Error( + `Chromium download finished but chrome executable was not found at ${expectedPath}. Check your network connection and try again.` + ); + } + + onProgress?.({ + phase: "done", + percent: 100, + message: `Chromium ready (${resolveInstalledExportChromiumPath()})`, + }); +} + +export async function ensureExportChromiumReady(): Promise { + await removeBrokenExportChromiumCaches(); + if (isExportChromiumAvailable()) { + return true; + } + await installExportChromium(); + return isExportChromiumAvailable(); +} diff --git a/electron/app/utils/export-msix-runtime.ts b/electron/app/utils/export-msix-runtime.ts new file mode 100644 index 0000000..3fc8028 --- /dev/null +++ b/electron/app/utils/export-msix-runtime.ts @@ -0,0 +1,252 @@ +import fs from "fs"; +import path from "path"; +import { createHash } from "crypto"; +import { baseDir, getCacheDir, resourceBaseDir } from "./constants"; +import { safeLog } from "./safe-console"; + +const CACHE_LAYOUT_VERSION = "2"; + +type ExportSpawnTarget = { + scriptPath: string; + converterPath: string; +}; + +/** MSIX installs live under Program Files\\WindowsApps and block dlopen on packaged .node files. */ +export function isWindowsStoreInstall(): boolean { + if (process.platform !== "win32") { + return false; + } + const markers = [baseDir, process.execPath, path.dirname(process.execPath)]; + return markers.some((candidate) => /\\windowsapps\\/i.test(candidate)); +} + +function getExportRuntimeVersion(): string { + try { + const packageJsonPath = path.join(baseDir, "package.json"); + const pkg = JSON.parse(fs.readFileSync(packageJsonPath, "utf8")) as { + exportVersion?: string; + version?: string; + }; + return pkg.exportVersion?.trim() || pkg.version?.trim() || "unknown"; + } catch { + return "unknown"; + } +} + +function getMsixExportCacheRoot(exportRuntimeVersion: string): string { + return path.join( + getCacheDir(), + "msix-export-runtime", + CACHE_LAYOUT_VERSION, + exportRuntimeVersion + ); +} + +function sharpPackagesForPlatform(): string[] { + const arch = process.arch; + if (process.platform === "win32") { + if (arch === "arm64") { + return [ + "sharp", + "@img/sharp-win32-arm64", + "@img/colour", + "detect-libc", + "semver", + ]; + } + return [ + "sharp", + "@img/sharp-win32-x64", + "@img/colour", + "detect-libc", + "semver", + ]; + } + if (process.platform === "darwin") { + return arch === "arm64" + ? ["sharp", "@img/sharp-darwin-arm64", "@img/colour", "detect-libc", "semver"] + : ["sharp", "@img/sharp-darwin-x64", "@img/colour", "detect-libc", "semver"]; + } + return ["sharp", "@img/sharp-linux-x64", "@img/colour", "detect-libc", "semver"]; +} + +function resolvePackageSourceDir(sourceModulesRoot: string, packageName: string): string { + if (packageName.startsWith("@")) { + const [scope, name] = packageName.split("/"); + return path.join(sourceModulesRoot, scope, name); + } + return path.join(sourceModulesRoot, packageName); +} + +function resolvePackageDestDir(destModulesRoot: string, packageName: string): string { + return resolvePackageSourceDir(destModulesRoot, packageName); +} + +function assertSourcePackagesAvailable(sourceModulesRoot: string): void { + const missingPackages = sharpPackagesForPlatform().filter((packageName) => { + const sourceDir = resolvePackageSourceDir(sourceModulesRoot, packageName); + return !fs.existsSync(path.join(sourceDir, "package.json")); + }); + + if (missingPackages.length > 0) { + throw new Error( + [ + "Export dependencies are missing from the unpacked app bundle.", + `Missing: ${missingPackages.join(", ")}`, + `Expected under: ${sourceModulesRoot}`, + "Rebuild the APPX after unpacking sharp dependencies from app.asar.", + ].join(" ") + ); + } +} + +async function fileFingerprint(filePath: string): Promise { + const stat = await fs.promises.stat(filePath); + return `${stat.size}:${stat.mtimeMs}`; +} + +async function buildSourceFingerprint(exportRoot: string, sourceModulesRoot: string): Promise { + const hash = createHash("sha256"); + const indexPath = path.join(exportRoot, "index.js"); + hash.update(await fileFingerprint(indexPath)); + + for (const packageName of sharpPackagesForPlatform()) { + const packagePath = resolvePackageSourceDir(sourceModulesRoot, packageName); + hash.update(packageName); + hash.update(await fileFingerprint(path.join(packagePath, "package.json"))); + if (packageName.startsWith("@img/sharp-")) { + const libDir = path.join(packagePath, "lib"); + const entries = await fs.promises.readdir(libDir); + const nodeBinary = entries.find((entry) => entry.endsWith(".node")); + if (nodeBinary) { + hash.update(await fileFingerprint(path.join(libDir, nodeBinary))); + } + } + } + + const pyDir = path.join(exportRoot, "py"); + try { + const pyEntries = await fs.promises.readdir(pyDir); + for (const entry of pyEntries) { + if (!/^convert/i.test(entry)) { + continue; + } + hash.update(await fileFingerprint(path.join(pyDir, entry))); + } + } catch { + // Converter binaries are optional for fingerprinting. + } + + return hash.digest("hex"); +} + +async function readCacheFingerprint(cacheRoot: string): Promise { + const stampPath = path.join(cacheRoot, ".source-fingerprint"); + try { + return (await fs.promises.readFile(stampPath, "utf8")).trim() || null; + } catch { + return null; + } +} + +async function copyPath(source: string, destination: string): Promise { + await fs.promises.mkdir(path.dirname(destination), { recursive: true }); + await fs.promises.cp(source, destination, { recursive: true, force: true }); +} + +async function materializeMsixExportRuntime( + exportRoot: string, + sourceModulesRoot: string, + cacheRoot: string +): Promise { + safeLog("[Export] Preparing MSIX export runtime in user cache:", cacheRoot); + await fs.promises.rm(cacheRoot, { recursive: true, force: true }); + await fs.promises.mkdir(cacheRoot, { recursive: true }); + + await copyPath(path.join(exportRoot, "index.js"), path.join(cacheRoot, "index.js")); + + const pyDir = path.join(exportRoot, "py"); + if (fs.existsSync(pyDir)) { + await copyPath(pyDir, path.join(cacheRoot, "py")); + } + + const destModulesRoot = path.join(cacheRoot, "node_modules"); + for (const packageName of sharpPackagesForPlatform()) { + const sourceDir = resolvePackageSourceDir(sourceModulesRoot, packageName); + const destDir = resolvePackageDestDir(destModulesRoot, packageName); + if (!fs.existsSync(sourceDir)) { + throw new Error(`Export dependency missing from app bundle: ${packageName} (${sourceDir})`); + } + await copyPath(sourceDir, destDir); + } + + const fingerprint = await buildSourceFingerprint(exportRoot, sourceModulesRoot); + await fs.promises.writeFile(path.join(cacheRoot, ".source-fingerprint"), fingerprint, "utf8"); + safeLog("[Export] MSIX export runtime ready."); +} + +async function resolveConverterPathFromExportRoot(exportRoot: string): Promise { + const pyDir = path.join(exportRoot, "py"); + const extension = process.platform === "win32" ? ".exe" : ""; + const converterCandidates = [ + path.join(pyDir, `convert-${process.platform}-${process.arch}${extension}`), + path.join(pyDir, `convert-${process.platform}${extension}`), + ...(process.platform === "win32" + ? [path.join(pyDir, "convert.exe"), path.join(pyDir, "convert")] + : [path.join(pyDir, "convert")]), + ]; + + for (const candidate of converterCandidates) { + try { + await fs.promises.access(candidate, fs.constants.F_OK); + return candidate; + } catch { + continue; + } + } + + throw new Error( + [ + "No converter binary found for export.", + "Expected one of:", + ...converterCandidates.map((candidate) => ` - ${candidate}`), + ].join("\n") + ); +} + +/** + * For Microsoft Store (MSIX) installs, copy export JS + sharp native addons to a writable + * directory so Node can dlopen them. Returns the original paths elsewhere. + */ +export async function resolveExportSpawnTarget( + packagedExportRoot: string, + packagedScriptPath: string, + resolvePackagedConverterPath: (exportRoot: string) => Promise +): Promise { + if (!isWindowsStoreInstall()) { + return { + scriptPath: packagedScriptPath, + converterPath: await resolvePackagedConverterPath(packagedExportRoot), + }; + } + + const exportRuntimeVersion = getExportRuntimeVersion(); + const cacheRoot = getMsixExportCacheRoot(exportRuntimeVersion); + const cachedScriptPath = path.join(cacheRoot, "index.js"); + const sourceModulesRoot = path.join(resourceBaseDir, "node_modules"); + assertSourcePackagesAvailable(sourceModulesRoot); + + const expectedFingerprint = await buildSourceFingerprint(packagedExportRoot, sourceModulesRoot); + const cachedFingerprint = await readCacheFingerprint(cacheRoot); + const cacheIsCurrent = + cachedFingerprint === expectedFingerprint && fs.existsSync(cachedScriptPath); + + if (!cacheIsCurrent) { + await materializeMsixExportRuntime(packagedExportRoot, sourceModulesRoot, cacheRoot); + } + + return { + scriptPath: cachedScriptPath, + converterPath: await resolveConverterPathFromExportRoot(cacheRoot), + }; +} diff --git a/electron/app/utils/imagemagick-runtime.ts b/electron/app/utils/imagemagick-runtime.ts new file mode 100644 index 0000000..5f6be11 --- /dev/null +++ b/electron/app/utils/imagemagick-runtime.ts @@ -0,0 +1,208 @@ +import fs from "fs"; +import path from "path"; +import { spawnSync } from "child_process"; +import { resourceBaseDir } from "./constants"; + +export type ImageMagickRuntime = { + binaryPath: string; + binDir: string; + homeDir: string; + version: string; + source: "bundled" | "system"; +}; + +type ImageMagickRuntimeManifest = { + version?: string; + platform?: string; + arch?: string; + binary?: string; + kind?: string; +}; + +const RUNTIME_MANIFEST_NAME = "presenton-runtime.json"; + +function runVersion(command: string, homeDir = path.dirname(command)): string | null { + const result = spawnSync(command, ["-version"], { + stdio: ["ignore", "pipe", "pipe"], + encoding: "utf8", + timeout: 15000, + env: { + ...process.env, + MAGICK_HOME: homeDir, + MAGICK_CONFIGURE_PATH: homeDir, + MAGICK_TEMPORARY_PATH: process.env.TEMP || process.env.TMPDIR || homeDir, + MAGICK_OCL_DEVICE: "OFF", + APPIMAGE_EXTRACT_AND_RUN: "1", + }, + windowsHide: true, + }); + + if (result.status !== 0) { + return null; + } + + const output = `${result.stdout ?? ""}\n${result.stderr ?? ""}`.trim(); + return output.toLowerCase().includes("imagemagick") ? output : null; +} + +function resolveCommandPath(command: string): string | null { + if (path.isAbsolute(command)) { + return command; + } + + if (process.platform === "win32") { + const result = spawnSync( + "powershell.exe", + ["-NoProfile", "-Command", `(Get-Command '${command}' -ErrorAction Stop).Source`], + { + stdio: ["ignore", "pipe", "pipe"], + encoding: "utf8", + windowsHide: true, + }, + ); + const lines = (result.stdout ?? "").trim().split(/\r?\n/).filter(Boolean); + const resolved = lines.length ? lines[lines.length - 1] : undefined; + return result.status === 0 && resolved ? resolved : null; + } + + const result = spawnSync("which", [command], { + stdio: ["ignore", "pipe", "pipe"], + encoding: "utf8", + }); + const resolved = (result.stdout ?? "").trim().split(/\r?\n/).filter(Boolean)[0]; + return result.status === 0 && resolved ? resolved : null; +} + +function uniqueExistingDirs(paths: string[]): string[] { + const seen = new Set(); + const dirs: string[] = []; + for (const candidate of paths) { + if (!candidate || seen.has(candidate)) { + continue; + } + seen.add(candidate); + if (fs.existsSync(candidate) && fs.statSync(candidate).isDirectory()) { + dirs.push(candidate); + } + } + return dirs; +} + +export function getBundledImageMagickRoot(): string { + return path.join(resourceBaseDir, "resources", "imagemagick"); +} + +export function getBundledImageMagickDir(): string { + return path.join(getBundledImageMagickRoot(), `${process.platform}-${process.arch}`); +} + +function readBundledRuntimeManifest(): ImageMagickRuntimeManifest | null { + const manifestPath = path.join(getBundledImageMagickDir(), RUNTIME_MANIFEST_NAME); + try { + const manifest = JSON.parse(fs.readFileSync(manifestPath, "utf8")) as ImageMagickRuntimeManifest; + if ( + manifest.platform && + manifest.platform !== process.platform + ) { + return null; + } + if (manifest.arch && manifest.arch !== process.arch) { + return null; + } + return manifest; + } catch { + return null; + } +} + +function bundledBinaryCandidates(): string[] { + const runtimeDir = getBundledImageMagickDir(); + const executable = process.platform === "win32" ? "magick.exe" : "magick"; + const manifest = readBundledRuntimeManifest(); + const manifestBinary = manifest?.binary + ? [path.join(runtimeDir, manifest.binary)] + : []; + return [ + ...manifestBinary, + path.join(runtimeDir, executable), + path.join(runtimeDir, "bin", executable), + path.join(getBundledImageMagickRoot(), executable), + path.join(getBundledImageMagickRoot(), "bin", executable), + ]; +} + +function systemBinaryCandidates(): string[] { + if (process.platform === "win32") { + return ["magick"]; + } + return [ + "magick", + "convert", + "/opt/homebrew/bin/magick", + "/usr/local/bin/magick", + "/opt/local/bin/magick", + "/usr/bin/magick", + "/usr/local/bin/convert", + "/usr/bin/convert", + ]; +} + +function runtimeFromBinary( + binaryPath: string, + source: ImageMagickRuntime["source"], +): ImageMagickRuntime | null { + const resolvedBinaryPath = resolveCommandPath(binaryPath) ?? binaryPath; + const binDir = path.dirname(resolvedBinaryPath); + const manifest = source === "bundled" ? readBundledRuntimeManifest() : null; + const manifestRuntimeDir = getBundledImageMagickDir(); + const homeDir = source === "bundled" && manifest?.binary + ? manifestRuntimeDir + : path.basename(binDir).toLowerCase() === "bin" + ? path.dirname(binDir) + : binDir; + const version = runVersion(resolvedBinaryPath, homeDir); + if (!version) { + return null; + } + + return { + binaryPath: resolvedBinaryPath, + binDir, + homeDir, + version, + source, + }; +} + +export function resolveImageMagickRuntime(): ImageMagickRuntime | null { + for (const candidate of bundledBinaryCandidates()) { + if (fs.existsSync(candidate)) { + const runtime = runtimeFromBinary(candidate, "bundled"); + if (runtime) { + return runtime; + } + } + } + + for (const candidate of systemBinaryCandidates()) { + const runtime = runtimeFromBinary(candidate, "system"); + if (runtime) { + return runtime; + } + } + + return null; +} + +export function buildPathWithImageMagick(runtime: ImageMagickRuntime): string { + const currentPath = process.env.Path ?? process.env.PATH ?? ""; + return uniqueExistingDirs([runtime.binDir, currentPath]) + .concat( + currentPath + .split(path.delimiter) + .map((entry) => entry.trim()) + .filter(Boolean) + .filter((entry) => path.resolve(entry) !== path.resolve(runtime.binDir)), + ) + .join(path.delimiter); +} diff --git a/electron/app/utils/index.ts b/electron/app/utils/index.ts new file mode 100644 index 0000000..555203e --- /dev/null +++ b/electron/app/utils/index.ts @@ -0,0 +1,93 @@ +import net from 'net' +import treeKill from 'tree-kill' +import { getTempDir, getUserConfigPath, localhost } from './constants' +import { readUserConfigFile, updateUserConfigFile } from './user-config-store' + +export function setUserConfig(userConfig: UserConfig) { + const userConfigPath = getUserConfigPath() + updateUserConfigFile(userConfigPath, (existingConfig) => { + const definedIncomingEntries = Object.entries(userConfig).filter(([, value]) => value !== undefined) + return { + ...existingConfig, + ...Object.fromEntries(definedIncomingEntries), + CODEX_ACCESS_TOKEN: existingConfig.CODEX_ACCESS_TOKEN, + CODEX_REFRESH_TOKEN: existingConfig.CODEX_REFRESH_TOKEN, + CODEX_TOKEN_EXPIRES: existingConfig.CODEX_TOKEN_EXPIRES, + CODEX_ACCOUNT_ID: existingConfig.CODEX_ACCOUNT_ID, + } + }) +} + +export function getUserConfig(): UserConfig { + const userConfigPath = getUserConfigPath() + return readUserConfigFile(userConfigPath) +} + +export function setupEnv(fastApiPort: number, nextjsPort: number) { + const { app } = require('electron'); + process.env.APP_VERSION = app.getVersion(); + process.env.SENTRY_RELEASE = process.env.SENTRY_RELEASE || `presenton-electron@${process.env.APP_VERSION}`; + process.env.SENTRY_ENVIRONMENT = process.env.SENTRY_ENVIRONMENT || (app.isPackaged ? 'production' : 'development'); + const tempDir = getTempDir(); + const userConfigPath = getUserConfigPath(); + process.env.NEXT_PUBLIC_FAST_API = `${localhost}:${fastApiPort}`; + process.env.TEMP_DIRECTORY = tempDir; + process.env.NEXT_PUBLIC_USER_CONFIG_PATH = userConfigPath; + process.env.NEXT_PUBLIC_URL = `${localhost}:${nextjsPort}`; + + // Set environment variables for NextJS API routes + process.env.USER_CONFIG_PATH = userConfigPath; + // Read CAN_CHANGE_KEYS from existing env or default to true + if (process.env.CAN_CHANGE_KEYS === undefined) { + process.env.CAN_CHANGE_KEYS = "true"; + } +} + + +export function killProcess(pid: number, signal: NodeJS.Signals = "SIGTERM") { + return new Promise((resolve, reject) => { + treeKill(pid, signal, (err: any) => { + if (err) { + console.error(`Error killing process ${pid}:`, err) + reject(err) + } else { + console.log(`Process ${pid} killed (${signal})`) + resolve(true) + } + }) + }) +} + +export async function findUnusedPorts(startPort: number = 40000, count: number = 2): Promise { + const ports: number[] = []; + console.log(`Finding ${count} unused ports starting from ${startPort}`); + + const isPortAvailable = (port: number): Promise => { + return new Promise((resolve) => { + const server = net.createServer(); + server.once('error', () => { + resolve(false); + }); + server.once('listening', () => { + server.close(); + resolve(true); + }); + server.listen(port); + }); + }; + + let currentPort = startPort; + while (ports.length < count) { + if (await isPortAvailable(currentPort)) { + ports.push(currentPort); + } + currentPort++; + } + + return ports; +} + + +export function sanitizeFilename(filename: string): string { + return filename.replace(/[\\/:*?"<>|]/g, '_'); +} diff --git a/electron/app/utils/lifecycle.ts b/electron/app/utils/lifecycle.ts new file mode 100644 index 0000000..5bd390b --- /dev/null +++ b/electron/app/utils/lifecycle.ts @@ -0,0 +1,147 @@ +import type { ChildProcess } from "child_process"; +import type { BrowserWindow, WebContents } from "electron"; + +type DestroyableStream = { + destroyed?: boolean; + destroy?: (error?: Error) => void; + end?: () => void; +}; + +export function hasLiveWebContents(win: BrowserWindow | null | undefined): win is BrowserWindow { + return Boolean(win && !win.isDestroyed() && !win.webContents.isDestroyed()); +} + +export function safeSendToWebContents( + wc: WebContents | null | undefined, + channel: string, + payload: unknown, +): boolean { + try { + if (!wc || wc.isDestroyed()) { + return false; + } + wc.send(channel, payload); + return true; + } catch { + return false; + } +} + +export function safeCloseWindow(win: BrowserWindow | null | undefined, destroy = false): void { + try { + if (!win || win.isDestroyed()) { + return; + } + if (destroy) { + win.destroy(); + } else { + win.close(); + } + } catch { + /* Window/native handle may already be tearing down. */ + } +} + +export function isChildProcessAlive(child: ChildProcess | null | undefined): child is ChildProcess { + return Boolean( + child && + child.pid && + child.exitCode === null && + child.signalCode === null && + !child.killed, + ); +} + +export function waitForChildClose( + child: ChildProcess, + timeoutMs = 5_000, +): Promise { + if (!isChildProcessAlive(child)) { + return Promise.resolve(true); + } + + return new Promise((resolve) => { + let settled = false; + + const finish = (closed: boolean) => { + if (settled) { + return; + } + settled = true; + clearTimeout(timer); + child.removeListener("close", onClose); + child.removeListener("error", onError); + resolve(closed); + }; + + const onClose = () => finish(true); + const onError = () => finish(true); + const timer = setTimeout(() => finish(false), timeoutMs); + + child.once("close", onClose); + child.once("error", onError); + }); +} + +export function destroyChildProcessStdio(child: ChildProcess): void { + const streams: Array = [ + child.stdin, + child.stdout, + child.stderr, + ]; + + for (const stream of streams) { + try { + if (!stream || stream.destroyed) { + continue; + } + if (typeof stream.end === "function") { + stream.end(); + } + if (typeof stream.destroy === "function") { + stream.destroy(); + } + } catch { + /* Ignore stream teardown races during app shutdown. */ + } + } +} + +export async function terminateChildProcess( + child: ChildProcess, + name: string, + killProcessTree: (pid: number, signal: NodeJS.Signals) => Promise, + options: { + gracefulSignal?: NodeJS.Signals; + forceSignal?: NodeJS.Signals; + gracefulTimeoutMs?: number; + } = {}, +): Promise { + const gracefulSignal = options.gracefulSignal ?? "SIGTERM"; + const forceSignal = options.forceSignal ?? "SIGKILL"; + const gracefulTimeoutMs = options.gracefulTimeoutMs ?? 5_000; + + if (!isChildProcessAlive(child) || !child.pid) { + destroyChildProcessStdio(child); + return; + } + + try { + await killProcessTree(child.pid, gracefulSignal); + } catch { + /* Process may have already exited between the alive check and kill request. */ + } + + const closed = await waitForChildClose(child, gracefulTimeoutMs); + if (!closed && isChildProcessAlive(child) && child.pid) { + try { + await killProcessTree(child.pid, forceSignal); + } catch { + /* Best-effort forced shutdown. */ + } + await waitForChildClose(child, 2_000); + } + + destroyChildProcessStdio(child); +} + diff --git a/electron/app/utils/liteparse-check.ts b/electron/app/utils/liteparse-check.ts new file mode 100644 index 0000000..4bb3be3 --- /dev/null +++ b/electron/app/utils/liteparse-check.ts @@ -0,0 +1,6 @@ +import path from "path"; +import { resourceBaseDir } from "./constants"; + +export function getLiteParseRunnerPath(): string { + return path.join(resourceBaseDir, "resources", "document-extraction", "liteparse_runner.mjs"); +} diff --git a/electron/app/utils/memory.ts b/electron/app/utils/memory.ts new file mode 100644 index 0000000..fb3a2fd --- /dev/null +++ b/electron/app/utils/memory.ts @@ -0,0 +1,38 @@ +export function memorySnapshotMb(): Record { + const usage = process.memoryUsage(); + return { + rss_mb: Math.round(usage.rss / 1024 / 1024), + heap_used_mb: Math.round(usage.heapUsed / 1024 / 1024), + heap_total_mb: Math.round(usage.heapTotal / 1024 / 1024), + external_mb: Math.round(usage.external / 1024 / 1024), + array_buffers_mb: Math.round(usage.arrayBuffers / 1024 / 1024), + }; +} + +export class BoundedTextBuffer { + private text = ""; + private truncatedChars = 0; + + constructor(private readonly limit = 8192) {} + + append(value: Buffer | string): void { + const next = Buffer.isBuffer(value) ? value.toString("utf8") : value; + if (this.limit <= 0) { + this.truncatedChars += next.length; + return; + } + let combined = this.text + next; + if (combined.length > this.limit) { + const overflow = combined.length - this.limit; + this.truncatedChars += overflow; + combined = combined.slice(overflow); + } + this.text = combined; + } + + toString(): string { + const body = this.text.trim(); + if (!this.truncatedChars) return body; + return `... [truncated ${this.truncatedChars} chars]\n${body}`.trim(); + } +} diff --git a/electron/app/utils/open-target.ts b/electron/app/utils/open-target.ts new file mode 100644 index 0000000..228aaf9 --- /dev/null +++ b/electron/app/utils/open-target.ts @@ -0,0 +1,116 @@ +import { dialog, shell, type BrowserWindow } from "electron"; +import fs from "fs"; +import path from "path"; +import { safeWarn } from "./safe-console"; + +const ALLOWED_EXTERNAL_PROTOCOLS = new Set(["http:", "https:"]); + +function getErrorMessage(error: unknown, fallback: string): string { + if (error instanceof Error && error.message) { + return error.message; + } + + if (typeof error === "string" && error.trim()) { + return error; + } + + return fallback; +} + +export function isSupportedExternalUrl(url: string): boolean { + try { + const parsedUrl = new URL(url); + return ALLOWED_EXTERNAL_PROTOCOLS.has(parsedUrl.protocol); + } catch { + return false; + } +} + +export async function openExternalUrl(url: string): Promise { + if (!isSupportedExternalUrl(url)) { + return { + success: false, + message: "Only http and https links can be opened.", + }; + } + + try { + await shell.openExternal(url); + return { success: true }; + } catch (error) { + return { + success: false, + message: getErrorMessage(error, "The operating system could not open this link."), + }; + } +} + +export async function openLocalPath(targetPath: string): Promise { + const normalizedPath = path.normalize(targetPath); + + if (!normalizedPath || !path.isAbsolute(normalizedPath)) { + return { + success: false, + message: "The file path is invalid.", + }; + } + + try { + await fs.promises.access(normalizedPath, fs.constants.F_OK); + } catch { + return { + success: false, + message: "The file or folder no longer exists.", + }; + } + + try { + const openError = await shell.openPath(normalizedPath); + if (openError) { + return { + success: false, + message: openError, + }; + } + + return { success: true }; + } catch (error) { + return { + success: false, + message: getErrorMessage(error, "The operating system could not open this file or folder."), + }; + } +} + +export async function showOpenTargetErrorDialog({ + parent, + title, + message, + detail, +}: { + parent?: BrowserWindow; + title: string; + message: string; + detail?: string; +}): Promise { + try { + const options = { + type: "error" as const, + buttons: ["OK"], + defaultId: 0, + noLink: true, + title, + message, + detail, + }; + + if (parent && !parent.isDestroyed()) { + await dialog.showMessageBox(parent, options); + return; + } + + await dialog.showMessageBox(options); + } catch (error) { + safeWarn("[Presenton] Failed to show open target error dialog:", error); + } +} diff --git a/electron/app/utils/readable-file-access.ts b/electron/app/utils/readable-file-access.ts new file mode 100644 index 0000000..aef26bf --- /dev/null +++ b/electron/app/utils/readable-file-access.ts @@ -0,0 +1,93 @@ +import fs from "fs"; +import path from "path"; +import { getAppDataDir, getTempDir } from "./constants"; + +export class LocalFileAccessError extends Error { + constructor( + message: string, + public readonly code: "INVALID_PATH" | "NOT_FOUND" | "ACCESS_DENIED", + ) { + super(message); + this.name = "LocalFileAccessError"; + } +} + +function resolveBaseDir(baseDir: string): string { + const resolvedBaseDir = path.resolve(baseDir); + try { + return fs.realpathSync(resolvedBaseDir); + } catch { + return resolvedBaseDir; + } +} + +function allowedReadableFileBaseDirs(): string[] { + return [getAppDataDir(), getTempDir()].map(resolveBaseDir); +} + +function assertPathAllowed(candidatePath: string, baseDirs: string[]): void { + for (const baseDir of baseDirs) { + if (candidatePath === baseDir || candidatePath.startsWith(`${baseDir}${path.sep}`)) { + return; + } + } + + throw new LocalFileAccessError( + "Access denied: File path not allowed", + "ACCESS_DENIED", + ); +} + +export function resolveReadableLocalFile(filePath: unknown): string { + if (typeof filePath !== "string" || filePath.trim().length === 0) { + throw new LocalFileAccessError("Invalid file path", "INVALID_PATH"); + } + + const requestedPath = path.resolve(filePath); + const allowedBaseDirs = allowedReadableFileBaseDirs(); + assertPathAllowed(requestedPath, allowedBaseDirs); + + + let resolvedPath: string; + try { + resolvedPath = fs.realpathSync(requestedPath); + } catch { + throw new LocalFileAccessError("File not found", "NOT_FOUND"); + } + + assertPathAllowed(resolvedPath, allowedBaseDirs); + return resolvedPath; +} + +export function readReadableLocalFile(filePath: unknown): string { + if (typeof filePath !== "string" || filePath.trim().length === 0) { + throw new LocalFileAccessError("Invalid file path", "INVALID_PATH"); + } + + const requestedPath = path.resolve(filePath); + const [appDataDir, tempDir] = allowedReadableFileBaseDirs(); + + if (!(requestedPath.startsWith(appDataDir) || requestedPath.startsWith(tempDir))) { + throw new LocalFileAccessError( + "Access denied: File path not allowed", + "ACCESS_DENIED", + ); + } + + let resolvedPath: string; + try { + resolvedPath = fs.realpathSync(requestedPath); + } catch { + throw new LocalFileAccessError("File not found", "NOT_FOUND"); + } + + if (!(resolvedPath.startsWith(appDataDir) || resolvedPath.startsWith(tempDir))) { + throw new LocalFileAccessError( + "Access denied: File path not allowed", + "ACCESS_DENIED", + ); + } + assertPathAllowed(resolvedPath, [appDataDir, tempDir]); + + return fs.readFileSync(resolvedPath, "utf-8"); +} diff --git a/electron/app/utils/safe-console.ts b/electron/app/utils/safe-console.ts new file mode 100644 index 0000000..0e8ecfb --- /dev/null +++ b/electron/app/utils/safe-console.ts @@ -0,0 +1,100 @@ +import { format } from "util"; + +type WritableStream = NodeJS.WriteStream & { + closed?: boolean; + destroyed?: boolean; + writable?: boolean; + writableEnded?: boolean; + writableFinished?: boolean; +}; + +let installed = false; +const originalConsoleError = console.error.bind(console); + +export function isIgnorablePipeError(error: unknown): boolean { + const err = error as NodeJS.ErrnoException | undefined; + const code = typeof err?.code === "string" ? err.code : ""; + const message = error instanceof Error ? error.message : String(error ?? ""); + + return ( + code === "EPIPE" || + code === "ERR_STREAM_DESTROYED" || + code === "ERR_STREAM_WRITE_AFTER_END" || + /broken pipe/i.test(message) || + /write after end/i.test(message) || + /stream has been destroyed/i.test(message) + ); +} + +function isWritable(stream: WritableStream): boolean { + return ( + stream.writable !== false && + !stream.closed && + !stream.destroyed && + !stream.writableEnded && + !stream.writableFinished + ); +} + +function reportUnexpectedStreamError(error: unknown): void { + if (isIgnorablePipeError(error)) { + return; + } + + try { + originalConsoleError("[SafeConsole] stdout/stderr stream error:", error); + } catch { + /* If the console itself is unavailable, there is nowhere useful to report this. */ + } +} + +function writeToStream(stream: WritableStream, text: string): boolean { + if (!isWritable(stream)) { + return false; + } + + try { + return stream.write(text, (error?: Error | null) => { + if (error) { + reportUnexpectedStreamError(error); + } + }); + } catch (error) { + reportUnexpectedStreamError(error); + return false; + } +} + +export function safeStdoutWrite(text: string): boolean { + return writeToStream(process.stdout, text); +} + +export function safeStderrWrite(text: string): boolean { + return writeToStream(process.stderr, text); +} + +export function safeLog(...args: unknown[]): void { + safeStdoutWrite(`${format(...args)}\n`); +} + +export function safeWarn(...args: unknown[]): void { + safeStderrWrite(`${format(...args)}\n`); +} + +export function safeError(...args: unknown[]): void { + safeStderrWrite(`${format(...args)}\n`); +} + +export function installSafeConsole(): void { + if (installed) { + return; + } + installed = true; + + process.stdout.on("error", reportUnexpectedStreamError); + process.stderr.on("error", reportUnexpectedStreamError); + + console.log = safeLog; + console.warn = safeWarn; + console.error = safeError; +} diff --git a/electron/app/utils/servers.ts b/electron/app/utils/servers.ts new file mode 100644 index 0000000..fdc01cd --- /dev/null +++ b/electron/app/utils/servers.ts @@ -0,0 +1,393 @@ +import { ChildProcess, spawn } from "child_process"; +import { getLogsDir, localhost } from "./constants"; +import http from "http"; +import fs from "fs"; +import path from "path"; +import { safeError, safeLog as safeConsoleLog } from "./safe-console"; +import { memorySnapshotMb } from "./memory"; +import { destroyChildProcessStdio, terminateChildProcess } from "./lifecycle"; +import { killProcess } from "./index"; + +type ManagedServerProcess = { + process: ChildProcess; + ready: Promise; + stop: () => Promise; +}; + +function resolveNextJsStandaloneServer(directory: string): { + serverScript: string; + cwd: string; +} { + const directScript = path.join(directory, "server.js"); + if (fs.existsSync(directScript)) { + return { serverScript: directScript, cwd: directory }; + } + + const nestedScript = path.join(directory, "servers", "nextjs", "server.js"); + if (fs.existsSync(nestedScript)) { + return { serverScript: nestedScript, cwd: path.dirname(nestedScript) }; + } + + throw new Error(`Next.js standalone server not found under: ${directory}`); +} + +/** Next.js 16+ standalone runs from servers/nextjs/; static/public must sit next to server.js. */ +function ensureNestedStandaloneAssets(bundleRoot: string, serverCwd: string): void { + if (path.resolve(bundleRoot) === path.resolve(serverCwd)) { + return; + } + + const copyIfMissing = (source: string, destination: string) => { + if (!fs.existsSync(source) || fs.existsSync(destination)) { + return; + } + fs.mkdirSync(path.dirname(destination), { recursive: true }); + fs.cpSync(source, destination, { recursive: true }); + safeConsoleLog(`[Presenton] Linked Next.js assets: ${path.basename(source)} -> ${destination}`); + }; + + copyIfMissing( + path.join(bundleRoot, ".next-build", "static"), + path.join(serverCwd, ".next-build", "static"), + ); + copyIfMissing( + path.join(bundleRoot, "public"), + path.join(serverCwd, "public"), + ); +} + +function createManagedServerProcess(params: { + name: string; + process: ChildProcess; + readyUrl: string; + cleanupListeners: () => void; + markStopping?: (stopping: boolean) => void; +}): ManagedServerProcess { + const abortController = new AbortController(); + let stopPromise: Promise | null = null; + + const stop = async () => { + if (stopPromise) { + return stopPromise; + } + + params.markStopping?.(true); + abortController.abort(); + params.cleanupListeners(); + + stopPromise = terminateChildProcess( + params.process, + params.name, + killProcess, + ).finally(() => { + params.cleanupListeners(); + destroyChildProcessStdio(params.process); + }); + + return stopPromise; + }; + + return { + process: params.process, + ready: waitForServer(params.readyUrl, 120000, abortController.signal), + stop, + }; +} + +export async function startFastApiServer( + directory: string, + port: number, + env: FastApiEnv, + isDev: boolean, +) { + // Start FastAPI server + let command: string; + let args: string[]; + + if (isDev) { + command = "uv"; + args = ["run", "python", "server.py", "--port", port.toString(), "--reload", "true"]; + } else { + const binary = process.platform === "win32" ? "fastapi.exe" : "fastapi"; + command = path.join(directory, binary); + args = ["--port", port.toString()]; + } + + const safeFileLog = (data: Buffer | string, logPath: string) => { + try { + fs.appendFileSync(logPath, data); + } catch { + /* ignore if logs dir not writable */ + } + }; + const logsDir = getLogsDir(); + const fastapiLogPath = path.join(logsDir, "fastapi-server.log"); + + const fastApiProcess = spawn( + command, + args, + { + cwd: directory, + stdio: ["ignore", "pipe", "pipe"], + env: { ...process.env, ...env }, + windowsHide: process.platform === "win32" && !isDev, + } + ); + const onFastApiStdoutData = (data: any) => { + safeFileLog(data, fastapiLogPath); + safeConsoleLog(`FastAPI: ${data}`); + }; + const onFastApiStderrData = (data: any) => { + safeFileLog(data, fastapiLogPath); + safeError(`FastAPI: ${data}`); + }; + const onFastApiError = (err: Error) => { + safeFileLog(`Spawn error: ${err.message}\n`, fastapiLogPath); + }; + fastApiProcess.stdout.on("data", onFastApiStdoutData); + fastApiProcess.stderr.on("data", onFastApiStderrData); + fastApiProcess.on("error", onFastApiError); + safeConsoleLog("[Presenton] FastAPI process spawned:", { + pid: fastApiProcess.pid, + memory: memorySnapshotMb(), + }); + const cleanupListeners = () => { + fastApiProcess.stdout?.removeListener("data", onFastApiStdoutData); + fastApiProcess.stderr?.removeListener("data", onFastApiStderrData); + fastApiProcess.removeListener("error", onFastApiError); + }; + + return createManagedServerProcess({ + name: "FastAPI", + process: fastApiProcess, + readyUrl: `${localhost}:${port}/docs`, + cleanupListeners, + }); +} + +export async function startNextJsServer( + directory: string, + port: number, + env: NextJsEnv, + isDev: boolean, +) { + let nextjsProcess: ChildProcess; + let stopping = false; + + if (isDev) { + // Windows: npm is npm.cmd; spawn() needs a shell or ENOENT. + nextjsProcess = spawn( + process.platform === "win32" ? "npm.cmd" : "npm", + ["run", "dev", "--", "-p", port.toString()], + { + cwd: directory, + stdio: ["ignore", "pipe", "pipe"], + env: { ...process.env, ...env }, + shell: process.platform === "win32", + } + ); + const nextjsLogPath = path.join(getLogsDir(), "nextjs-server.log"); + const safeNextLog = (d: Buffer | string) => { + try { + fs.appendFileSync(nextjsLogPath, d); + } catch { + /* ignore */ + } + }; + const onStdoutData = (data: any) => { + safeNextLog(data); + safeConsoleLog(`NextJS: ${data}`); + }; + const onStderrData = (data: any) => { + safeNextLog(data); + safeError(`NextJS: ${data}`); + }; + const onError = (err: Error) => { + safeNextLog(`Spawn error: ${err.message}\n`); + safeError(`NextJS spawn error: ${err.message}`); + }; + const onExit = (code: number | null, signal: string | null) => { + if (stopping) { + return; + } + safeError(`NextJS process exited unexpectedly: code=${code}, signal=${signal}`); + }; + nextjsProcess.stdout?.on("data", onStdoutData); + nextjsProcess.stderr?.on("data", onStderrData); + nextjsProcess.on("error", onError); + nextjsProcess.on("exit", onExit); + + const cleanupListeners = () => { + nextjsProcess.stdout?.removeListener("data", onStdoutData); + nextjsProcess.stderr?.removeListener("data", onStderrData); + nextjsProcess.removeListener("error", onError); + nextjsProcess.removeListener("exit", onExit); + }; + + return createManagedServerProcess({ + name: "NextJS", + process: nextjsProcess, + readyUrl: `${localhost}:${port}`, + cleanupListeners, + markStopping: (value) => { + stopping = value; + }, + }); + } else { + const { serverScript, cwd } = resolveNextJsStandaloneServer(directory); + ensureNestedStandaloneAssets(directory, cwd); + + nextjsProcess = spawn( + process.execPath, + [serverScript], + { + cwd, + stdio: ["ignore", "pipe", "pipe"], + env: { + ...process.env, + ...env, + ELECTRON_RUN_AS_NODE: "1", + HOSTNAME: "127.0.0.1", + PORT: port.toString(), + }, + windowsHide: process.platform === "win32", + } + ); + const nextjsLogPath = path.join(getLogsDir(), "nextjs-server.log"); + const safeNextLog = (d: Buffer | string) => { + try { + fs.appendFileSync(nextjsLogPath, d); + } catch { + /* ignore */ + } + }; + const onStdoutData = (data: any) => { + safeNextLog(data); + safeConsoleLog(`NextJS: ${data}`); + }; + const onStderrData = (data: any) => { + safeNextLog(data); + safeError(`NextJS: ${data}`); + }; + const onError = (err: Error) => { + safeNextLog(`Spawn error: ${err.message}\n`); + safeError(`NextJS spawn error: ${err.message}`); + }; + const onExit = (code: number | null, signal: string | null) => { + if (stopping) { + return; + } + safeError(`NextJS process exited unexpectedly: code=${code}, signal=${signal}`); + }; + nextjsProcess.stdout?.on("data", onStdoutData); + nextjsProcess.stderr?.on("data", onStderrData); + nextjsProcess.on("error", onError); + nextjsProcess.on("exit", onExit); + + const cleanupListeners = () => { + nextjsProcess.stdout?.removeListener("data", onStdoutData); + nextjsProcess.stderr?.removeListener("data", onStderrData); + nextjsProcess.removeListener("error", onError); + nextjsProcess.removeListener("exit", onExit); + }; + + return createManagedServerProcess({ + name: "NextJS", + process: nextjsProcess, + readyUrl: `${localhost}:${port}`, + cleanupListeners, + markStopping: (value) => { + stopping = value; + }, + }); + } +} + + +function abortableDelay(delayMs: number, signal?: AbortSignal): Promise { + if (signal?.aborted) { + return Promise.reject(new Error("Server wait aborted")); + } + + return new Promise((resolve, reject) => { + let settled = false; + const cleanup = () => { + signal?.removeEventListener("abort", onAbort); + }; + const finish = (callback: () => void) => { + if (settled) { + return; + } + settled = true; + clearTimeout(timer); + cleanup(); + callback(); + }; + const onAbort = () => { + finish(() => reject(new Error("Server wait aborted"))); + }; + const timer = setTimeout(() => finish(resolve), delayMs); + signal?.addEventListener("abort", onAbort, { once: true }); + }); +} + +async function waitForServer(url: string, timeout = 120000, signal?: AbortSignal): Promise { + const startTime = Date.now(); + + while (Date.now() - startTime < timeout) { + if (signal?.aborted) { + throw new Error("Server wait aborted"); + } + + try { + await new Promise((resolve, reject) => { + let settled = false; + const req = http.get(url, (res) => { + cleanup(); + res.resume(); + if (res.statusCode && res.statusCode >= 200 && res.statusCode < 500) { + finish(resolve); + } else { + finish(() => reject(new Error(`Unexpected status code: ${res.statusCode}`))); + } + }); + + const finish = (callback: () => void) => { + if (settled) { + return; + } + settled = true; + cleanup(); + callback(); + }; + + const onError = (error: Error) => finish(() => reject(error)); + const onAbort = () => { + req.on("error", () => {}); + req.destroy(); + finish(() => reject(new Error("Server wait aborted"))); + }; + const onTimeout = () => { + req.on("error", () => {}); + req.destroy(); + finish(() => reject(new Error('Request timed out'))); + }; + const cleanup = () => { + req.removeListener("error", onError); + signal?.removeEventListener("abort", onAbort); + }; + + req.on('error', onError); + req.setTimeout(5000, onTimeout); + signal?.addEventListener("abort", onAbort, { once: true }); + }); + return; + } catch (error) { + if (signal?.aborted) { + throw error; + } + await abortableDelay(1000, signal); + } + } + throw new Error(`Server did not start within ${timeout}ms`); +} diff --git a/electron/app/utils/update-checker.ts b/electron/app/utils/update-checker.ts new file mode 100644 index 0000000..69a4806 --- /dev/null +++ b/electron/app/utils/update-checker.ts @@ -0,0 +1,390 @@ +import { net } from "electron"; +import { app, BrowserWindow } from "electron"; +import { isDev } from "./constants"; +import { safeStderrWrite } from "./safe-console"; + +/** + * Version check URL — GitHub raw version.json (no API required). + * Override with UPDATE_SERVER_URL for local testing. + */ +const VERSION_JSON_URL = + process.env.UPDATE_SERVER_URL || + "https://raw.githubusercontent.com/presenton/presenton/refs/heads/main/electron/version.json"; + +const CURRENT_VERSION = app.getVersion(); +const WEBSITE_DOWNLOAD_URL = "https://presenton.ai/download"; + +/** Maximum number of fetch attempts (polls). */ +const MAX_ATTEMPTS = 3; + +/** Wait 2 minutes after load before first poll (10s in dev for testing). */ +const INITIAL_DELAY_MS = isDev ? 10 * 1_000 : 2 * 60 * 1_000; + +/** 1 minute between poll attempts (5s in dev for testing). */ +const POLL_INTERVAL_MS = isDev ? 5 * 1_000 : 1 * 60 * 1_000; + +/** Short delay before injecting banner to allow React/Next.js to mount. */ +const INJECT_DELAY_MS = isDev ? 500 : 1_000; + +function log(msg: string): void { + const line = `[UpdateChecker] ${msg}\n`; + safeStderrWrite(line); +} + +interface VersionResponse { + version: string; + message?: string; + downloads?: { + linux: string; + mac: string; + windows: string; + }; +} + +/** + * Simple semver comparison that strips pre-release labels for numeric comparison. + * Returns true if `remote` is strictly newer than `current`. + */ +function isNewerVersion(current: string, remote: string): boolean { + const toNumbers = (v: string) => + v + .replace(/[^0-9.]/g, "") + .split(".") + .map(Number); + + const curr = toNumbers(current); + const rem = toNumbers(remote); + const len = Math.max(curr.length, rem.length); + + for (let i = 0; i < len; i++) { + const c = curr[i] ?? 0; + const r = rem[i] ?? 0; + if (r > c) return true; + if (r < c) return false; + } + return false; +} + +async function fetchVersionInfo(): Promise { + try { + log(`Fetching ${VERSION_JSON_URL}...`); + const response = await net.fetch(VERSION_JSON_URL, { + method: "GET", + headers: { "User-Agent": `Presenton/${CURRENT_VERSION}` }, + }); + if (!response.ok) { + log(`Fetch failed: HTTP ${response.status}`); + return null; + } + const data = (await response.json()) as VersionResponse; + log(`Fetched version: ${data.version}`); + return data; + } catch (err) { + log(`Fetch error: ${err}`); + return null; + } +} + +/** Pending update to re-inject on navigation (production: React/Next.js may replace DOM). */ +let pendingUpdate: { version: string; downloadUrl: string; message?: string } | null = null; +type UpdateTimer = ReturnType; +const scheduledTimers = new Set(); +const delayCancels = new Set<() => void>(); +let updateCheckerStopped = true; +let cleanupUpdateCheckerListeners: (() => void) | null = null; + +function hasLiveWebContents(win: BrowserWindow): boolean { + return !win.isDestroyed() && !win.webContents.isDestroyed(); +} + +function scheduleUpdateTimer(callback: () => void, delayMs: number): void { + if (updateCheckerStopped) return; + + const timer = setTimeout(() => { + scheduledTimers.delete(timer); + if (!updateCheckerStopped) { + callback(); + } + }, delayMs); + scheduledTimers.add(timer); +} + +function waitForUpdateDelay(delayMs: number): Promise { + if (updateCheckerStopped) { + return Promise.resolve(false); + } + + return new Promise((resolve) => { + let settled = false; + let cancel = () => {}; + const timer = setTimeout(() => { + if (settled) return; + settled = true; + scheduledTimers.delete(timer); + delayCancels.delete(cancel); + resolve(!updateCheckerStopped); + }, delayMs); + + cancel = () => { + if (settled) return; + settled = true; + clearTimeout(timer); + scheduledTimers.delete(timer); + delayCancels.delete(cancel); + resolve(false); + }; + + scheduledTimers.add(timer); + delayCancels.add(cancel); + }); +} + +function clearScheduledUpdateWork(): void { + for (const cancel of Array.from(delayCancels)) { + cancel(); + } + for (const timer of Array.from(scheduledTimers)) { + clearTimeout(timer); + scheduledTimers.delete(timer); + } + if (cleanupUpdateCheckerListeners) { + cleanupUpdateCheckerListeners(); + cleanupUpdateCheckerListeners = null; + } +} + +/** + * Schedules banner injection after INJECT_DELAY_MS so React/Next.js can mount first. + * In production (.deb), the DOM may not be ready when did-finish-load fires. + */ +function scheduleBannerInjection( + win: BrowserWindow, + version: string, + downloadUrl: string, + message?: string +): void { + pendingUpdate = { version, downloadUrl, message }; + scheduleUpdateTimer(() => { + if (!hasLiveWebContents(win) || !pendingUpdate) return; + log(`Injecting banner now`); + injectUpdateBanner(win, pendingUpdate.version, pendingUpdate.downloadUrl, pendingUpdate.message); + }, INJECT_DELAY_MS); +} + +/** Escape HTML to prevent XSS; preserve newlines for display. */ +function escapeHtml(text: string): string { + return text + .replace(/&/g, "&") + .replace(//g, ">") + .replace(/"/g, """) + .replace(/\n/g, "
"); +} + +/** + * Injects an update banner at the bottom, aligned with the app UI. + * Includes a "View details" overlay for changelog/message. + */ +function injectUpdateBanner( + win: BrowserWindow, + latest: string, + downloadUrl: string, + message?: string +): void { + if (!hasLiveWebContents(win)) { + return; + } + + const hasMessage = Boolean(message && message.trim()); + const safeMessage = hasMessage ? escapeHtml(message!.trim()) : ""; + const safeMessageJson = JSON.stringify(safeMessage); + const viewDetailsBtnHtml = hasMessage + ? '' + : ""; + + const script = /* js */ ` + (function () { + if (document.getElementById('__presenton_update_banner__')) return; + + const msgHtml = ${safeMessageJson}; + + const banner = document.createElement('div'); + banner.id = '__presenton_update_banner__'; + banner.style.cssText = [ + 'position:fixed', + 'bottom:16px', + 'left:50%', + 'transform:translateX(-50%)', + 'max-width:min(560px,calc(100vw - 32px))', + 'width:100%', + 'background:rgba(255,255,255,0.95)', + 'backdrop-filter:blur(12px)', + '-webkit-backdrop-filter:blur(12px)', + 'color:#191919', + 'display:flex', + 'align-items:center', + 'justify-content:space-between', + 'padding:12px 16px', + 'font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif', + 'font-size:13px', + 'z-index:2147483646', + 'border:1px solid rgba(148,163,184,0.3)', + 'border-radius:12px', + 'box-shadow:0 4px 24px rgba(0,0,0,0.08)', + 'gap:12px', + ].join(';'); + + banner.innerHTML = \` + + + + Presenton ${latest} is available + — you have ${CURRENT_VERSION} + + +
+ ${viewDetailsBtnHtml} + Download update + +
+ \`; + + document.body.appendChild(banner); + + if (msgHtml) { + const overlay = document.createElement('div'); + overlay.id = '__presenton_update_overlay__'; + overlay.style.cssText = 'position:fixed;inset:0;background:rgba(0,0,0,0.4);display:none;align-items:center;justify-content:center;z-index:2147483647;padding:24px;'; + overlay.onclick = function(e) { if (e.target === overlay) overlay.style.display = 'none'; }; + overlay.innerHTML = \` +
+
+

What's new in ${latest}

+ +
+
+
+ \`; + document.body.appendChild(overlay); + document.getElementById('__presenton_overlay_content__').innerHTML = msgHtml; + document.getElementById('__presenton_view_details_btn__').onclick = function() { + document.getElementById('__presenton_update_overlay__').style.display = 'flex'; + }; + } + })(); + `; + + win.webContents.executeJavaScript(script).catch((err) => { + log(`Banner injection failed: ${err}`); + }); +} + +/** + * Polls for version info up to MAX_ATTEMPTS times with 1 min between attempts. + * Stops as soon as a successful response is received or all attempts are exhausted. + */ +async function checkForUpdatesWithRetry(win: BrowserWindow): Promise { + log(`Starting check (current: ${CURRENT_VERSION})`); + for (let attempt = 1; attempt <= MAX_ATTEMPTS; attempt++) { + if (updateCheckerStopped || !hasLiveWebContents(win)) { + log("Window destroyed, aborting"); + return; + } + + log(`Attempt ${attempt}/${MAX_ATTEMPTS}`); + const data = await fetchVersionInfo(); + if (updateCheckerStopped || !hasLiveWebContents(win)) { + log("Window destroyed, aborting"); + return; + } + + if (data) { + const newer = isNewerVersion(CURRENT_VERSION, data.version); + log(`Remote ${data.version} vs current ${CURRENT_VERSION} -> newer? ${newer}`); + if (newer) { + const downloadUrl = WEBSITE_DOWNLOAD_URL; + log(`Injecting banner for ${data.version} (after ${INJECT_DELAY_MS}ms delay)`); + scheduleBannerInjection(win, data.version, downloadUrl, data.message); + } else { + log("No update needed, skipping banner"); + } + return; + } + + // Wait 1 minute before the next poll (skip delay after the last attempt) + if (attempt < MAX_ATTEMPTS) { + log(`Next poll in ${POLL_INTERVAL_MS / 1_000}s...`); + const shouldContinue = await waitForUpdateDelay(POLL_INTERVAL_MS); + if (!shouldContinue) return; + } + } + log("All attempts failed, no update info"); +} + +/** + * Starts the update checker. + * Waits 2 minutes after load, then polls 3 times with 1 min interval. + * Re-injects banner on every navigation (handles Next.js client routing). + */ +export function startUpdateChecker(win: BrowserWindow): void { + stopUpdateChecker(); + updateCheckerStopped = false; + if (!hasLiveWebContents(win)) { + updateCheckerStopped = true; + return; + } + + log("Registered, waiting for did-finish-load"); + let hasRunCheck = false; + + const onLoad = () => { + if (updateCheckerStopped || !hasLiveWebContents(win)) return; + + if (pendingUpdate) { + log("did-finish-load (navigation), re-injecting banner"); + scheduleBannerInjection(win, pendingUpdate.version, pendingUpdate.downloadUrl, pendingUpdate.message); + } else if (!hasRunCheck) { + hasRunCheck = true; + log(`did-finish-load fired, first poll in ${INITIAL_DELAY_MS / 1_000}s`); + scheduleUpdateTimer(() => { + if (!hasLiveWebContents(win)) return; + void checkForUpdatesWithRetry(win).catch((err) => { + log(`Update check failed: ${err}`); + }); + }, INITIAL_DELAY_MS); + } + }; + + const onClosed = () => { + stopUpdateChecker(); + }; + win.once("closed", onClosed); + cleanupUpdateCheckerListeners = () => { + if (hasLiveWebContents(win)) { + win.webContents.removeListener("did-finish-load", onLoad); + } + try { + win.removeListener("closed", onClosed); + } catch { + // BrowserWindow may already be torn down when cleanup runs from "closed". + } + }; + + if (!win.webContents.isLoading()) { + log(`Page already loaded, first poll in ${INITIAL_DELAY_MS / 1_000}s`); + hasRunCheck = true; + scheduleUpdateTimer(() => { + if (!hasLiveWebContents(win)) return; + void checkForUpdatesWithRetry(win).catch((err) => { + log(`Update check failed: ${err}`); + }); + }, INITIAL_DELAY_MS); + } + win.webContents.on("did-finish-load", onLoad); +} + +export function stopUpdateChecker(): void { + updateCheckerStopped = true; + pendingUpdate = null; + clearScheduledUpdateWork(); +} diff --git a/electron/app/utils/user-config-store.ts b/electron/app/utils/user-config-store.ts new file mode 100644 index 0000000..b4d5e1a --- /dev/null +++ b/electron/app/utils/user-config-store.ts @@ -0,0 +1,232 @@ +import crypto from "crypto"; +import fs from "fs"; +import path from "path"; + +type ConfigSnapshot = { + config: T; + primaryValid: boolean; +}; + +const LOCK_TIMEOUT_MS = 5000; +const LOCK_STALE_MS = 30000; +const RETRY_DELAY_MS = 50; +const MAX_IO_ATTEMPTS = 6; + +function sleepSync(ms: number): void { + const end = Date.now() + ms; + while (Date.now() < end) { + // Keep lock acquisition synchronous without requiring newer lib typings. + } +} + +function isRetryableFsError(error: unknown): boolean { + const code = (error as NodeJS.ErrnoException | undefined)?.code; + return code === "EPERM" || code === "EBUSY" || code === "EACCES"; +} + +function retrySync(label: string, operation: () => T): T { + let lastError: unknown; + + for (let attempt = 0; attempt < MAX_IO_ATTEMPTS; attempt += 1) { + try { + return operation(); + } catch (error) { + lastError = error; + if (!isRetryableFsError(error) || attempt === MAX_IO_ATTEMPTS - 1) { + break; + } + sleepSync(RETRY_DELAY_MS * (attempt + 1)); + } + } + + const message = lastError instanceof Error ? lastError.message : String(lastError); + throw new Error(`Failed to ${label}: ${message}`); +} + +function backupPath(configPath: string): string { + return `${configPath}.bak`; +} + +function lockPath(configPath: string): string { + return `${configPath}.lock`; +} + +function ensureParentDirectory(configPath: string): void { + retrySync("create user config directory", () => { + fs.mkdirSync(path.dirname(configPath), { recursive: true }); + }); +} + +function readJsonIfValid(filePath: string): T | undefined { + try { + const content = retrySync(`read ${path.basename(filePath)}`, () => + fs.readFileSync(filePath, "utf8") + ); + const trimmed = content.trim(); + if (!trimmed) { + return {} as T; + } + const parsed = JSON.parse(trimmed); + return parsed && typeof parsed === "object" && !Array.isArray(parsed) + ? (parsed as T) + : undefined; + } catch { + return undefined; + } +} + +function readSnapshot(configPath: string): ConfigSnapshot { + const primary = readJsonIfValid(configPath); + if (primary) { + return { config: primary, primaryValid: true }; + } + + const backup = readJsonIfValid(backupPath(configPath)); + return { config: backup ?? ({} as T), primaryValid: false }; +} + +function removeStaleLock(lockFilePath: string): void { + try { + const stat = fs.statSync(lockFilePath); + if (Date.now() - stat.mtimeMs >= LOCK_STALE_MS) { + retrySync("remove stale user config lock", () => { + fs.unlinkSync(lockFilePath); + }); + } + } catch (error) { + const code = (error as NodeJS.ErrnoException | undefined)?.code; + if (code !== "ENOENT") { + throw error; + } + } +} + +function acquireLock(configPath: string): () => void { + ensureParentDirectory(configPath); + const lockFilePath = lockPath(configPath); + const startedAt = Date.now(); + + while (true) { + try { + const fd = fs.openSync(lockFilePath, "wx"); + try { + fs.writeSync( + fd, + JSON.stringify({ pid: process.pid, createdAt: new Date().toISOString() }) + ); + } finally { + fs.closeSync(fd); + } + + return () => { + try { + retrySync("release user config lock", () => { + fs.unlinkSync(lockFilePath); + }); + } catch (error) { + const code = (error as NodeJS.ErrnoException | undefined)?.code; + if (code !== "ENOENT") { + console.warn("[Presenton] Failed to release user config lock", error); + } + } + }; + } catch (error) { + const code = (error as NodeJS.ErrnoException | undefined)?.code; + if (code !== "EEXIST" && !isRetryableFsError(error)) { + throw error; + } + + removeStaleLock(lockFilePath); + if (Date.now() - startedAt >= LOCK_TIMEOUT_MS) { + throw new Error(`Timed out waiting for user config lock: ${lockFilePath}`); + } + sleepSync(RETRY_DELAY_MS); + } + } +} + +function writeFileDurably(filePath: string, content: string): void { + const fd = retrySync(`open ${path.basename(filePath)} for writing`, () => + fs.openSync(filePath, "w") + ); + try { + retrySync(`write ${path.basename(filePath)}`, () => { + fs.writeFileSync(fd, content, "utf8"); + }); + retrySync(`sync ${path.basename(filePath)}`, () => { + fs.fsyncSync(fd); + }); + } finally { + fs.closeSync(fd); + } +} + +function copyBackupIfPossible(configPath: string, primaryValid: boolean): void { + const configBackupPath = backupPath(configPath); + + try { + if (primaryValid && fs.existsSync(configPath)) { + retrySync("write user config backup", () => { + fs.copyFileSync(configPath, configBackupPath); + }); + } else if (!fs.existsSync(configBackupPath) && fs.existsSync(configPath)) { + retrySync("initialize user config backup", () => { + fs.copyFileSync(configPath, configBackupPath); + }); + } + } catch (error) { + console.warn("[Presenton] Failed to update user config backup", error); + } +} + +function writeAtomicJson( + configPath: string, + config: T, + primaryValid: boolean +): void { + ensureParentDirectory(configPath); + copyBackupIfPossible(configPath, primaryValid); + + const tempPath = `${configPath}.${process.pid}.${Date.now()}.${crypto + .randomBytes(6) + .toString("hex")}.tmp`; + writeFileDurably(tempPath, JSON.stringify(config)); + + try { + retrySync("replace user config", () => { + fs.renameSync(tempPath, configPath); + }); + copyBackupIfPossible(configPath, false); + } catch (error) { + try { + fs.unlinkSync(tempPath); + } catch { + /* Best-effort cleanup. */ + } + throw error; + } +} + +export function readUserConfigFile(configPath: string): T { + try { + ensureParentDirectory(configPath); + return readSnapshot(configPath).config; + } catch { + return {} as T; + } +} + +export function updateUserConfigFile( + configPath: string, + update: (existingConfig: T) => T +): T { + const releaseLock = acquireLock(configPath); + try { + const snapshot = readSnapshot(configPath); + const nextConfig = update({ ...snapshot.config }); + writeAtomicJson(configPath, nextConfig, snapshot.primaryValid); + return nextConfig; + } finally { + releaseLock(); + } +} diff --git a/electron/build.js b/electron/build.js new file mode 100644 index 0000000..ecd93b0 --- /dev/null +++ b/electron/build.js @@ -0,0 +1,712 @@ +const builder = require("electron-builder") +const { execFileSync } = require("child_process") +const fs = require("fs") +const path = require("path") +const packageMetadata = require("./package.json") +const { + normalizeBundledMacChromiumForPackaging, +} = require("./scripts/prepare-export-chromium.cjs") + +const APP_ID = "com.presenton.presenton" +const TEAM_ID = "S6W5C54KL6" +const macTarget = process.env.PRESENTON_MAC_TARGET +const isMasBuild = macTarget === "mas" || macTarget === "mas-dev" +const isDirectMacBuild = !isMasBuild && (process.platform === "darwin" || !!macTarget) +const requireDirectMacSigning = process.env.PRESENTON_REQUIRE_MAC_SIGNING === "1" +const masDevProvisioningProfile = resolveProvisioningProfileForTarget({ + target: "mas-dev", + label: "MAS development", + candidates: [ + "build/AppleDevelopment.provisionprofile", + "build/AppleDev.provisionprofile", + "build/AppDev.provisionprofile", + ], +}) +const masProvisioningProfile = resolveProvisioningProfileForTarget({ + target: "mas", + label: "Mac App Store distribution", + candidates: [ + "build/MacAppStore.provisionprofile", + "build/AppDistri.provisionprofile", + ], +}) +const masDevIdentity = + process.env.PRESENTON_MAS_DEV_IDENTITY || process.env.CSC_NAME || "" +const masSigningIdentities = resolveMasSigningIdentitiesForTarget() +const masIdentityQualifier = masSigningIdentities.qualifier +const masAppSigningIdentity = masSigningIdentities.appIdentity +const masInstallerSigningIdentity = masSigningIdentities.installerIdentity +const appStoreBundleShortVersion = + macTarget === "mas" ? getAppStoreBundleShortVersion() : undefined +const appStoreBundleVersion = + macTarget === "mas" + ? getAppStoreBundleVersion(appStoreBundleShortVersion) + : undefined +const macDistributionIdentity = + process.env.PRESENTON_MAC_SIGN_IDENTITY || + process.env.CSC_NAME || + undefined +const shouldNotarizeDirectMacBuild = + isDirectMacBuild && process.env.PRESENTON_SKIP_NOTARIZATION !== "1" +const masSigningExtraArgs = + process.env.PRESENTON_CODESIGN_TIMESTAMP === "1" ? [] : ["--timestamp=none"] + +function getAppStoreBundleShortVersion() { + const configuredVersion = process.env.PRESENTON_APP_STORE_VERSION + if (configuredVersion) { + validateAppStoreVersion(configuredVersion, "PRESENTON_APP_STORE_VERSION") + return configuredVersion + } + + const match = /^(\d+)\.(\d+)\.(\d+)/.exec(packageMetadata.version) + if (!match) { + throw new Error( + `Cannot derive an App Store version from package version "${packageMetadata.version}". Set PRESENTON_APP_STORE_VERSION to three period-separated integers, for example 1.0.0.` + ) + } + return `${match[1]}.${match[2]}.${match[3]}` +} + +function getAppStoreBundleVersion(bundleShortVersion) { + const configuredBuild = process.env.PRESENTON_APP_STORE_BUILD + if (configuredBuild) { + validateAppStoreBuild(configuredBuild, "PRESENTON_APP_STORE_BUILD") + return configuredBuild + } + return bundleShortVersion +} + +function validateAppStoreVersion(value, source) { + if (!/^\d+\.\d+\.\d+$/.test(value)) { + throw new Error( + `${source} must be three period-separated integers, for example 1.0.0. Received: ${value}` + ) + } +} + +function validateAppStoreBuild(value, source) { + if (!/^\d+(\.\d+){0,2}$/.test(value)) { + throw new Error( + `${source} must be one to three period-separated integers, for example 42 or 1.0.1. Received: ${value}` + ) + } +} + +function resolveProvisioningProfileForTarget({ target, label, candidates }) { + try { + return resolveProvisioningProfile({ target, label, candidates }) + } catch (error) { + console.error(`\n${error.message}\n`) + process.exit(1) + } +} + +function resolveProvisioningProfile({ target, label, candidates }) { + if (macTarget !== target) { + return undefined + } + + if (process.platform !== "darwin") { + throw new Error( + `${label} builds must be run on macOS because Apple signing tools are required.` + ) + } + + const undecodableProfiles = [] + + for (const candidate of candidates) { + const candidatePath = path.join(__dirname, candidate) + if (!fs.existsSync(candidatePath)) { + continue + } + + if (canDecodeProvisioningProfile(candidatePath)) { + return candidate + } + + undecodableProfiles.push(candidate) + } + + if (undecodableProfiles.length > 0) { + throw new Error( + `Found ${label} provisioning profile, but macOS could not decode it: ${undecodableProfiles.join(", ")}. Re-download the matching Apple provisioning profile and replace the local file.` + ) + } + + throw new Error( + `Missing ${label} provisioning profile. Expected: ${candidates.join(", ")}` + ) +} + +function canDecodeProvisioningProfile(profilePath) { + if (commandSucceeds("security", ["cms", "-D", "-i", profilePath])) { + return true + } + + if ( + commandSucceeds("openssl", [ + "cms", + "-inform", + "DER", + "-verify", + "-noverify", + "-in", + profilePath, + "-out", + "/dev/null", + ]) + ) { + return true + } + + return false +} + +function commandSucceeds(command, args) { + try { + execFileSync(command, args, { stdio: "ignore" }) + return true + } catch { + return false + } +} + +function resolveMasSigningIdentitiesForTarget() { + if (macTarget !== "mas") { + return { + qualifier: "", + appIdentity: "", + installerIdentity: "", + } + } + + try { + return resolveMasSigningIdentities() + } catch (error) { + console.error(`\n${error.message}\n`) + process.exit(1) + } +} + +function resolveMasSigningIdentities() { + const identities = getAppleSigningIdentities() + const explicitIdentity = + process.env.PRESENTON_MAS_DISTRIBUTION_IDENTITY || + process.env.PRESENTON_MAS_IDENTITY + + const qualifier = explicitIdentity + ? validateMasIdentityQualifier( + explicitIdentity, + "PRESENTON_MAS_DISTRIBUTION_IDENTITY/PRESENTON_MAS_IDENTITY", + identities + ) + : process.env.CSC_NAME + ? validateMasIdentityQualifier( + String(process.env.CSC_NAME), + "CSC_NAME", + identities + ) + : discoverMasIdentityQualifier(identities) + + const appIdentity = identities.find((identity) => + isMasAppIdentityName(identity.name) && identity.name.includes(qualifier) + ) + const installerIdentity = identities.find((identity) => + isMasInstallerIdentityName(identity.name) && identity.name.includes(qualifier) + ) + if (!appIdentity || !installerIdentity) { + throw buildMissingMasIdentityError(qualifier, identities, { + appIdentityFound: !!appIdentity, + installerIdentityFound: !!installerIdentity, + }) + } + + return { + qualifier, + appIdentity: appIdentity.name, + installerIdentity: installerIdentity.name, + } +} + +function validateMasIdentityQualifier(value, source, identities) { + const identity = value.trim() + if (!identity) { + throw new Error(`${source} is set but empty.`) + } + + const matchedIdentity = identities.find( + (candidate) => candidate.hash === identity || candidate.name === identity + ) + const identityName = matchedIdentity?.name || identity + if (isDevelopmentIdentityName(identityName)) { + throw new Error( + `${source} points to a development identity (${identityName}). MAS distribution builds require Apple Distribution or 3rd Party Mac Developer Application.` + ) + } + if (isMasAppIdentityName(identityName) || isMasInstallerIdentityName(identityName)) { + return getMasIdentityQualifier(identityName) + } + if (/^[A-Fa-f0-9]{40}$/.test(identity) && !matchedIdentity) { + throw new Error( + `${source} is a certificate hash that was not found in the keychain, so the matching MAS installer certificate cannot be discovered. Use the certificate name or team qualifier instead.` + ) + } + + return identity +} + +function discoverMasIdentityQualifier(identities) { + const appIdentity = identities.find((identity) => isMasAppIdentityName(identity.name)) + if (appIdentity) { + return getMasIdentityQualifier(appIdentity.name) + } + + throw buildMissingMasIdentityError("", identities, { + appIdentityFound: false, + installerIdentityFound: identities.some((identity) => + isMasInstallerIdentityName(identity.name) + ), + }) +} + +function getAppleSigningIdentities() { + const outputs = [] + for (const args of [ + ["find-identity", "-v"], + ["find-identity", "-v", "-p", "codesigning"], + ]) { + try { + outputs.push(execFileSync("security", args, { encoding: "utf8" })) + } catch { + continue + } + } + + const seen = new Set() + return outputs + .join("\n") + .split(/\r?\n/) + .map((line) => { + const match = line.match(/^\s*\d+\)\s+([A-Fa-f0-9]{40})\s+"([^"]+)"/) + return match ? { hash: match[1], name: match[2] } : undefined + }) + .filter(Boolean) + .filter((identity) => { + if (seen.has(identity.name)) { + return false + } + seen.add(identity.name) + return true + }) +} + +function isMasAppIdentityName(name) { + return /^(Apple Distribution|3rd Party Mac Developer Application):/.test(name) +} + +function isMasInstallerIdentityName(name) { + return /^3rd Party Mac Developer Installer:/.test(name) +} + +function isDevelopmentIdentityName(name) { + return /^(Apple Development|Mac Developer):/.test(name) +} + +function isDeveloperIdApplicationIdentityName(name) { + return /^Developer ID Application:/.test(name) +} + +function getMasIdentityQualifier(identityName) { + return identityName.replace( + /^(Apple Distribution|3rd Party Mac Developer Application|3rd Party Mac Developer Installer):\s*/, + "" + ) +} + +function buildMissingMasIdentityError(qualifier, identities, status) { + const availableIdentities = identities.length + ? identities.map((identity) => ` - ${identity.name}`).join("\n") + : " (no valid Apple signing identities found)" + const expectedQualifier = qualifier ? ` matching "${qualifier}"` : "" + return new Error( + [ + "Missing MAS signing identity.", + `MAS distribution builds require both an app certificate and an installer certificate${expectedQualifier}:`, + " - Apple Distribution or 3rd Party Mac Developer Application", + " - 3rd Party Mac Developer Installer", + "", + `App certificate found: ${status.appIdentityFound ? "yes" : "no"}`, + `Installer certificate found: ${status.installerIdentityFound ? "yes" : "no"}`, + "", + "Create/download the missing certificate from Apple Developer Certificates,", + "install it in Keychain Access, then rerun the build.", + "", + "Available Apple signing identities:", + availableIdentities, + ].join("\n") + ) +} + +function assertCodesignCanUseIdentity(identity) { + if (!identity || macTarget !== "mas" || process.platform !== "darwin") { + return + } + + const tempDir = fs.mkdtempSync(path.join(require("os").tmpdir(), "presenton-codesign-")) + const tempFile = path.join(tempDir, "preflight") + try { + fs.writeFileSync(tempFile, "Presenton MAS signing preflight\n") + execFileSync( + "codesign", + ["--force", "--sign", identity, "--timestamp=none", tempFile], + { stdio: "ignore", timeout: 30000 } + ) + } catch (error) { + const timedOut = error && error.signal === "SIGTERM" + throw new Error( + [ + "Could not complete MAS signing preflight with the selected distribution identity.", + timedOut + ? "codesign timed out, usually because macOS is waiting for Keychain/private-key access." + : "codesign failed before electron-builder started signing the app.", + "Unlock the login keychain and allow codesign access to the Apple Distribution private key, then rerun the build.", + `Identity: ${identity}`, + ].join("\n") + ) + } finally { + fs.rmSync(tempDir, { recursive: true, force: true }) + } +} + +function assertDirectMacReleaseReadiness() { + if (!isDirectMacBuild || !requireDirectMacSigning) { + return + } + + if (process.platform !== "darwin") { + throw new Error( + "Signed macOS distribution builds must be run on macOS because Apple codesign and notarytool are required." + ) + } + + const identity = resolveDeveloperIdApplicationIdentity() + assertDirectMacNotarizationCredentials() + assertCodesignCanUseDirectIdentity(identity) +} + +function resolveDeveloperIdApplicationIdentity() { + const identities = getAppleSigningIdentities() + const configuredIdentity = macDistributionIdentity + + if (configuredIdentity) { + const matchedIdentity = identities.find( + (candidate) => + candidate.hash === configuredIdentity || candidate.name === configuredIdentity + ) + const identityName = matchedIdentity?.name || configuredIdentity + + if (!matchedIdentity) { + throw new Error( + [ + "The configured macOS signing identity was not found in the keychain.", + "Direct distribution requires a Developer ID Application certificate.", + `Configured identity: ${configuredIdentity}`, + "", + buildAvailableDeveloperIdIdentityList(identities), + ].join("\n") + ) + } + + if (!isDeveloperIdApplicationIdentityName(identityName)) { + throw new Error( + [ + "The configured macOS signing identity is not valid for direct distribution.", + "Use a Developer ID Application certificate, not Apple Development, Apple Distribution, or a Mac App Store certificate.", + `Configured identity: ${identityName}`, + ].join("\n") + ) + } + + return identityName + } + + const discoveredIdentity = identities.find((identity) => + isDeveloperIdApplicationIdentityName(identity.name) + ) + if (!discoveredIdentity) { + throw new Error( + [ + "Missing Developer ID Application signing identity.", + "Install the certificate in Keychain Access or set PRESENTON_MAC_SIGN_IDENTITY to its exact name.", + "", + buildAvailableDeveloperIdIdentityList(identities), + ].join("\n") + ) + } + + return discoveredIdentity.name +} + +function buildAvailableDeveloperIdIdentityList(identities) { + const available = identities.length + ? identities.map((identity) => ` - ${identity.name}`).join("\n") + : " (no valid Apple signing identities found)" + + return ["Available Apple signing identities:", available].join("\n") +} + +function assertDirectMacNotarizationCredentials() { + if (!shouldNotarizeDirectMacBuild) { + throw new Error( + "PRESENTON_SKIP_NOTARIZATION=1 is not allowed when PRESENTON_REQUIRE_MAC_SIGNING=1." + ) + } + + const hasAppleIdCredentials = + !!process.env.APPLE_ID && + !!process.env.APPLE_APP_SPECIFIC_PASSWORD && + !!process.env.APPLE_TEAM_ID + const hasApiKeyCredentials = + !!process.env.APPLE_API_KEY && + !!process.env.APPLE_API_KEY_ID && + !!process.env.APPLE_API_ISSUER + const hasKeychainProfile = !!process.env.APPLE_KEYCHAIN_PROFILE + + if (hasAppleIdCredentials || hasApiKeyCredentials || hasKeychainProfile) { + return + } + + throw new Error( + [ + "Missing Apple notarization credentials.", + "Set one of these credential groups before running the signed macOS release build:", + " - APPLE_ID, APPLE_APP_SPECIFIC_PASSWORD, APPLE_TEAM_ID", + " - APPLE_API_KEY, APPLE_API_KEY_ID, APPLE_API_ISSUER", + " - APPLE_KEYCHAIN_PROFILE, optionally APPLE_KEYCHAIN", + ].join("\n") + ) +} + +function assertCodesignCanUseDirectIdentity(identity) { + const tempDir = fs.mkdtempSync(path.join(require("os").tmpdir(), "presenton-codesign-")) + const tempFile = path.join(tempDir, "preflight") + try { + fs.writeFileSync(tempFile, "Presenton direct macOS signing preflight\n") + execFileSync( + "codesign", + ["--force", "--sign", identity, "--options", "runtime", tempFile], + { stdio: "ignore", timeout: 30000 } + ) + } catch (error) { + const timedOut = error && error.signal === "SIGTERM" + throw new Error( + [ + "Could not complete direct macOS signing preflight with the selected Developer ID identity.", + timedOut + ? "codesign timed out, usually because macOS is waiting for Keychain/private-key access." + : "codesign failed before electron-builder started signing the app.", + "Unlock the login keychain and allow codesign access to the Developer ID private key, then rerun the build.", + `Identity: ${identity}`, + ].join("\n") + ) + } finally { + fs.rmSync(tempDir, { recursive: true, force: true }) + } +} + +// AfterPack hook: set executable permissions and repair packaged runtime bundles on macOS. +const afterPack = async (context) => { + if (context.electronPlatformName === "darwin") { + const appPath = context.appOutDir + const appBundleName = `${context.packager.appInfo.productFilename}.app` + const resourcesRoot = resolvePackagedResourcesRoot( + appPath, + appBundleName + ) + const fastapiPath = path.join(resourcesRoot, "fastapi", "fastapi") + const exportPyDir = path.join(resourcesRoot, "export", "py") + const converterCandidates = [ + `convert-${process.platform}-${process.arch}`, + `convert-${process.platform}`, + "convert", + ] + + console.log("Setting executable permissions for FastAPI binary...") + console.log("FastAPI path:", fastapiPath) + + if (fs.existsSync(fastapiPath)) { + fs.chmodSync(fastapiPath, 0o755) + console.log("✓ Execute permissions set for FastAPI") + } else { + console.warn("⚠ FastAPI binary not found at:", fastapiPath) + } + + console.log("Setting executable permissions for export converter binary...") + let converterFound = false + for (const candidate of converterCandidates) { + const candidatePath = path.join(exportPyDir, candidate) + if (fs.existsSync(candidatePath)) { + fs.chmodSync(candidatePath, 0o755) + console.log("✓ Execute permissions set for converter:", candidatePath) + converterFound = true + } + } + if (!converterFound) { + console.warn("⚠ No converter binary found in:", exportPyDir) + } + + const fastapiDir = path.join(resourcesRoot, "fastapi") + if (fs.existsSync(fastapiDir)) { + console.log("FastAPI directory contents:", fs.readdirSync(fastapiDir)) + } + + if (fs.existsSync(exportPyDir)) { + console.log("Export py directory contents:", fs.readdirSync(exportPyDir)) + } + + normalizeBundledMacChromiumForPackaging(resourcesRoot) + } +} + +function resolvePackagedResourcesRoot(appPath, appBundleName) { + const contentsResourcesRoot = path.join(appPath, appBundleName, "Contents", "Resources") + const candidates = [ + path.join(contentsResourcesRoot, "app.asar.unpacked", "resources"), + path.join(contentsResourcesRoot, "app", "resources"), + ] + return candidates.find((candidate) => fs.existsSync(candidate)) || candidates[0] +} + +const config = { + appId: APP_ID, + productName: "Presenton", + asar: true, + asarUnpack: [ + "resources/**", + // LiteParse runs from FastAPI via Electron-as-Node and needs real package dirs. + "node_modules/**", + ], + copyright: "Copyright © 2026 Presenton", + directories: { + output: "dist", + buildResources: "build", + }, + files: [ + "resources", + "app_dist", + "node_modules", + "NOTICE" + ], + afterPack, + mac: { + artifactName: "Presenton-${version}.${ext}", + target: [macTarget || "dmg"], + category: "public.app-category.productivity", + hardenedRuntime: !isMasBuild, + gatekeeperAssess: false, + entitlements: isMasBuild ? undefined : "build/entitlements.mac.plist", + entitlementsInherit: isMasBuild ? undefined : "build/entitlements.mac.inherit.plist", + identity: + macTarget === "mas" || macTarget === "mas-dev" + ? null + : macDistributionIdentity, + notarize: isMasBuild || !shouldNotarizeDirectMacBuild ? false : true, + icon: "build/icon.icns", + bundleShortVersion: appStoreBundleShortVersion, + bundleVersion: appStoreBundleVersion, + extendInfo: { + ElectronTeamID: TEAM_ID, + }, + }, + masDev: { + type: "development", + identity: masDevIdentity || undefined, + provisioningProfile: masDevProvisioningProfile, + entitlements: "build/entitlements.mas.plist", + entitlementsInherit: "build/entitlements.mas.inherit.plist", + // osx-sign always adds --timestamp; this later flag keeps local MAS dev signing offline-tolerant. + additionalArguments: ["--timestamp=none"], + }, + mas: { + type: "distribution", + identity: masIdentityQualifier || undefined, + provisioningProfile: masProvisioningProfile, + entitlements: "build/entitlements.mas.plist", + entitlementsInherit: "build/entitlements.mas.inherit.plist", + // Avoid codesign hanging on Apple's timestamp service during local MAS packaging. + additionalArguments: masSigningExtraArgs, + }, + linux: { + artifactName: "Presenton-${version}.${ext}", + target: ["AppImage", "deb"], + icon: "build/icons", + }, + deb: { + afterInstall: "build/after-install.tpl", + }, + win: { + target: ["nsis", "appx"], + icon: "build/icon.ico", + artifactName: "Presenton-${version}.${ext}", + executableName: "Presenton", + }, + nsis: { + oneClick: false, + perMachine: false, + allowToChangeInstallationDirectory: true, + allowElevation: true, + installerIcon: "build/icon.ico", + uninstallerIcon: "build/icon.ico", + installerHeaderIcon: "build/icon.ico", + createDesktopShortcut: true, + createStartMenuShortcut: true, + shortcutName: "Presenton", + uninstallDisplayName: "Presenton", + }, + dmg: { + sign: false, + size: "2300m", + }, + appx: { + identityName: "PresentonAI.Presenton", + publisher: "CN=8A2C57B5-F1C6-473A-93EE-2E9B72134341", + displayName: "Presenton", + publisherDisplayName: "Presenton Inc.", + applicationId: "PresentonAI.Presenton", + + }, +} + +const effectiveMacTarget = macTarget || "dmg" +const targets = + process.platform === "darwin" + ? builder.Platform.MAC.createTarget([effectiveMacTarget]) + : undefined + +if (macTarget === "mas" && process.env.PRESENTON_SKIP_CODESIGN_PREFLIGHT !== "1") { + assertCodesignCanUseIdentity(masAppSigningIdentity) +} + +assertDirectMacReleaseReadiness() + +if (isDirectMacBuild && process.platform === "darwin") { + console.log("[macOS direct] Distribution settings:", { + target: effectiveMacTarget, + identity: macDistributionIdentity || "auto", + hardenedRuntime: true, + notarize: shouldNotarizeDirectMacBuild, + signingRequired: requireDirectMacSigning, + }) +} + +if (macTarget === "mas") { + console.log("[MAS] Signing preflight:", { + identityQualifier: masIdentityQualifier || "auto", + appIdentity: masAppSigningIdentity || "none", + installerIdentity: masInstallerSigningIdentity || "none", + provisioningProfile: masProvisioningProfile || "none", + additionalArguments: masSigningExtraArgs, + }) +} + +builder.build({ targets, config }) diff --git a/electron/build/MacAppStore.provisionprofile.replace_me b/electron/build/MacAppStore.provisionprofile.replace_me new file mode 100644 index 0000000..3ec23df --- /dev/null +++ b/electron/build/MacAppStore.provisionprofile.replace_me @@ -0,0 +1,20 @@ +Replace this marker with the real MAS distribution provisioning profile. + +Required final file name: + +MacAppStore.provisionprofile + +Where it should live: + +electron/build/MacAppStore.provisionprofile + +How to create it: + +1. Go to Apple Developer > Certificates, Identifiers & Profiles > Profiles. +2. Create a Mac App Store Connect distribution provisioning profile. +3. Select the explicit App ID: com.presenton.presenton. +4. Select the Apple Distribution certificate installed on the Mac. +5. Download the profile. +6. Rename or copy it to MacAppStore.provisionprofile in this folder. + +Do not commit the real .provisionprofile file. It is ignored by git. diff --git a/electron/build/after-install.tpl b/electron/build/after-install.tpl new file mode 100644 index 0000000..b4c0b0e --- /dev/null +++ b/electron/build/after-install.tpl @@ -0,0 +1,56 @@ +#!/bin/bash + +if type update-alternatives 2>/dev/null >&1; then + # Remove previous link if it doesn't use update-alternatives + if [ -L '/usr/bin/${executable}' -a -e '/usr/bin/${executable}' -a "`readlink '/usr/bin/${executable}'`" != '/etc/alternatives/${executable}' ]; then + rm -f '/usr/bin/${executable}' + fi + update-alternatives --install '/usr/bin/${executable}' '${executable}' '/opt/${sanitizedProductName}/${executable}' 100 || ln -sf '/opt/${sanitizedProductName}/${executable}' '/usr/bin/${executable}' +else + ln -sf '/opt/${sanitizedProductName}/${executable}' '/usr/bin/${executable}' +fi + +# Check if user namespaces are supported by the kernel and working with a quick test: +if ! { [[ -L /proc/self/ns/user ]] && unshare --user true; }; then + # Use SUID chrome-sandbox only on systems without user namespaces: + chmod 4755 '/opt/${sanitizedProductName}/chrome-sandbox' || true +else + chmod 0755 '/opt/${sanitizedProductName}/chrome-sandbox' || true +fi + +if hash update-mime-database 2>/dev/null; then + update-mime-database /usr/share/mime || true +fi + +if hash update-desktop-database 2>/dev/null; then + update-desktop-database /usr/share/applications || true +fi + +# Install apparmor profile. (Ubuntu 24+) +# First check if the version of AppArmor running on the device supports our profile. +# This is in order to keep backwards compatibility with Ubuntu 22.04 which does not support abi/4.0. +# +# Those apparmor_parser flags are akin to performing a dry run of loading a profile. +# https://wiki.debian.org/AppArmor/HowToUse#Dumping_profiles +# +# Unfortunately, at the moment AppArmor doesn't have a good story for backwards compatibility. +# https://askubuntu.com/questions/1517272/writing-a-backwards-compatible-apparmor-profile +if apparmor_status --enabled > /dev/null 2>&1; then + APPARMOR_PROFILE_SOURCE='/opt/${sanitizedProductName}/resources/apparmor-profile' + APPARMOR_PROFILE_TARGET='/etc/apparmor.d/${executable}' + if apparmor_parser --skip-kernel-load --debug "$APPARMOR_PROFILE_SOURCE" > /dev/null 2>&1; then + cp -f "$APPARMOR_PROFILE_SOURCE" "$APPARMOR_PROFILE_TARGET" + + # Updating the current AppArmor profile is not possible and probably not meaningful in a chroot'ed environment. + # Use cases are for example environments where images for clients are maintained. + # There, AppArmor might correctly be installed, but live updating makes no sense. + if ! { [ -x '/usr/bin/ischroot' ] && /usr/bin/ischroot; } && hash apparmor_parser 2>/dev/null; then + # Extra flags taken from dh_apparmor: + # > By using '-W -T' we ensure that any abstraction updates are also pulled in. + # https://wiki.debian.org/AppArmor/Contribute/FirstTimeProfileImport + apparmor_parser --replace --write-cache --skip-read-cache "$APPARMOR_PROFILE_TARGET" + fi + else + echo "Skipping the installation of the AppArmor profile as this version of AppArmor does not seem to support the bundled profile" + fi +fi diff --git a/electron/build/appx/Square150x150Logo.png b/electron/build/appx/Square150x150Logo.png new file mode 100644 index 0000000..272a6b2 Binary files /dev/null and b/electron/build/appx/Square150x150Logo.png differ diff --git a/electron/build/appx/Square150x150LogoTransParent.png b/electron/build/appx/Square150x150LogoTransParent.png new file mode 100644 index 0000000..6f90281 Binary files /dev/null and b/electron/build/appx/Square150x150LogoTransParent.png differ diff --git a/electron/build/appx/Square44x44Logo.png b/electron/build/appx/Square44x44Logo.png new file mode 100644 index 0000000..7e94c57 Binary files /dev/null and b/electron/build/appx/Square44x44Logo.png differ diff --git a/electron/build/appx/Square44x44LogoTransParent.png b/electron/build/appx/Square44x44LogoTransParent.png new file mode 100644 index 0000000..626dd49 Binary files /dev/null and b/electron/build/appx/Square44x44LogoTransParent.png differ diff --git a/electron/build/appx/StoreLogo.png b/electron/build/appx/StoreLogo.png new file mode 100644 index 0000000..c2864f3 Binary files /dev/null and b/electron/build/appx/StoreLogo.png differ diff --git a/electron/build/appx/StoreLogoTransParent.png b/electron/build/appx/StoreLogoTransParent.png new file mode 100644 index 0000000..28ebb89 Binary files /dev/null and b/electron/build/appx/StoreLogoTransParent.png differ diff --git a/electron/build/appx/Wide310x150Logo.png b/electron/build/appx/Wide310x150Logo.png new file mode 100644 index 0000000..9292594 Binary files /dev/null and b/electron/build/appx/Wide310x150Logo.png differ diff --git a/electron/build/appx/icon.ico b/electron/build/appx/icon.ico new file mode 100644 index 0000000..f9b9f8a Binary files /dev/null and b/electron/build/appx/icon.ico differ diff --git a/electron/build/entitlements.mac.inherit.plist b/electron/build/entitlements.mac.inherit.plist new file mode 100644 index 0000000..f2eb2ec --- /dev/null +++ b/electron/build/entitlements.mac.inherit.plist @@ -0,0 +1,12 @@ + + + + + com.apple.security.cs.allow-jit + + com.apple.security.cs.allow-unsigned-executable-memory + + com.apple.security.cs.disable-library-validation + + + diff --git a/electron/build/entitlements.mac.plist b/electron/build/entitlements.mac.plist new file mode 100644 index 0000000..f2eb2ec --- /dev/null +++ b/electron/build/entitlements.mac.plist @@ -0,0 +1,12 @@ + + + + + com.apple.security.cs.allow-jit + + com.apple.security.cs.allow-unsigned-executable-memory + + com.apple.security.cs.disable-library-validation + + + diff --git a/electron/build/entitlements.mas.inherit.plist b/electron/build/entitlements.mas.inherit.plist new file mode 100644 index 0000000..92a5b64 --- /dev/null +++ b/electron/build/entitlements.mas.inherit.plist @@ -0,0 +1,10 @@ + + + + + com.apple.security.app-sandbox + + com.apple.security.inherit + + + diff --git a/electron/build/entitlements.mas.plist b/electron/build/entitlements.mas.plist new file mode 100644 index 0000000..520d535 --- /dev/null +++ b/electron/build/entitlements.mas.plist @@ -0,0 +1,22 @@ + + + + + com.apple.security.app-sandbox + + com.apple.security.application-groups + + S6W5C54KL6.com.presenton.presenton + + com.apple.security.cs.allow-jit + + com.apple.security.network.client + + com.apple.security.network.server + + com.apple.security.files.user-selected.read-write + + com.apple.security.files.downloads.read-write + + + diff --git a/electron/build/icon-1024.png b/electron/build/icon-1024.png new file mode 100644 index 0000000..6f45bee Binary files /dev/null and b/electron/build/icon-1024.png differ diff --git a/electron/build/icon.icns b/electron/build/icon.icns new file mode 100644 index 0000000..ddcc11e Binary files /dev/null and b/electron/build/icon.icns differ diff --git a/electron/build/icon.ico b/electron/build/icon.ico new file mode 100644 index 0000000..46ff670 Binary files /dev/null and b/electron/build/icon.ico differ diff --git a/electron/build/icon.iconset/icon_128x128.png b/electron/build/icon.iconset/icon_128x128.png new file mode 100644 index 0000000..77b6854 Binary files /dev/null and b/electron/build/icon.iconset/icon_128x128.png differ diff --git a/electron/build/icon.iconset/icon_128x128@2x.png b/electron/build/icon.iconset/icon_128x128@2x.png new file mode 100644 index 0000000..9b5d684 Binary files /dev/null and b/electron/build/icon.iconset/icon_128x128@2x.png differ diff --git a/electron/build/icon.iconset/icon_16x16.png b/electron/build/icon.iconset/icon_16x16.png new file mode 100644 index 0000000..6a2c3ef Binary files /dev/null and b/electron/build/icon.iconset/icon_16x16.png differ diff --git a/electron/build/icon.iconset/icon_16x16@2x.png b/electron/build/icon.iconset/icon_16x16@2x.png new file mode 100644 index 0000000..ce35562 Binary files /dev/null and b/electron/build/icon.iconset/icon_16x16@2x.png differ diff --git a/electron/build/icon.iconset/icon_256x256.png b/electron/build/icon.iconset/icon_256x256.png new file mode 100644 index 0000000..9b5d684 Binary files /dev/null and b/electron/build/icon.iconset/icon_256x256.png differ diff --git a/electron/build/icon.iconset/icon_256x256@2x.png b/electron/build/icon.iconset/icon_256x256@2x.png new file mode 100644 index 0000000..df9e627 Binary files /dev/null and b/electron/build/icon.iconset/icon_256x256@2x.png differ diff --git a/electron/build/icon.iconset/icon_32x32.png b/electron/build/icon.iconset/icon_32x32.png new file mode 100644 index 0000000..ce35562 Binary files /dev/null and b/electron/build/icon.iconset/icon_32x32.png differ diff --git a/electron/build/icon.iconset/icon_32x32@2x.png b/electron/build/icon.iconset/icon_32x32@2x.png new file mode 100644 index 0000000..a07ad99 Binary files /dev/null and b/electron/build/icon.iconset/icon_32x32@2x.png differ diff --git a/electron/build/icon.iconset/icon_512x512.png b/electron/build/icon.iconset/icon_512x512.png new file mode 100644 index 0000000..df9e627 Binary files /dev/null and b/electron/build/icon.iconset/icon_512x512.png differ diff --git a/electron/build/icon.iconset/icon_512x512@2x.png b/electron/build/icon.iconset/icon_512x512@2x.png new file mode 100644 index 0000000..6f45bee Binary files /dev/null and b/electron/build/icon.iconset/icon_512x512@2x.png differ diff --git a/electron/build/icons/128x128.png b/electron/build/icons/128x128.png new file mode 100644 index 0000000..45e945d Binary files /dev/null and b/electron/build/icons/128x128.png differ diff --git a/electron/build/icons/16x16.png b/electron/build/icons/16x16.png new file mode 100644 index 0000000..06f86ae Binary files /dev/null and b/electron/build/icons/16x16.png differ diff --git a/electron/build/icons/256x256.png b/electron/build/icons/256x256.png new file mode 100644 index 0000000..e78a80c Binary files /dev/null and b/electron/build/icons/256x256.png differ diff --git a/electron/build/icons/32x32.png b/electron/build/icons/32x32.png new file mode 100644 index 0000000..7e86969 Binary files /dev/null and b/electron/build/icons/32x32.png differ diff --git a/electron/build/icons/48x48.png b/electron/build/icons/48x48.png new file mode 100644 index 0000000..a66f203 Binary files /dev/null and b/electron/build/icons/48x48.png differ diff --git a/electron/build/icons/512x512.png b/electron/build/icons/512x512.png new file mode 100644 index 0000000..3c9797a Binary files /dev/null and b/electron/build/icons/512x512.png differ diff --git a/electron/build/icons/64x64.png b/electron/build/icons/64x64.png new file mode 100644 index 0000000..7573eb3 Binary files /dev/null and b/electron/build/icons/64x64.png differ diff --git a/electron/build/installer.nsh b/electron/build/installer.nsh new file mode 100644 index 0000000..032c104 --- /dev/null +++ b/electron/build/installer.nsh @@ -0,0 +1,5 @@ +; Custom NSIS include for Presenton installer. +; LibreOffice installation is handled by the in-app installer UI on first launch. + +!macro customInstall +!macroend diff --git a/electron/build/logo.png b/electron/build/logo.png new file mode 100644 index 0000000..10ee3b8 Binary files /dev/null and b/electron/build/logo.png differ diff --git a/electron/package-lock.json b/electron/package-lock.json new file mode 100644 index 0000000..31fdc63 --- /dev/null +++ b/electron/package-lock.json @@ -0,0 +1,6922 @@ +{ + "name": "presenton", + "version": "0.8.9-beta", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "presenton", + "version": "0.8.9-beta", + "hasInstallScript": true, + "dependencies": { + "@llamaindex/liteparse": "^1.5.2", + "@puppeteer/browsers": "^3.0.3", + "@sentry/electron": "^7.10.0", + "@tailwindcss/cli": "^4.1.5", + "@types/uuid": "^10.0.0", + "dotenv": "^16.5.0", + "electron-squirrel-startup": "^1.0.1", + "serve-handler": "^6.1.6", + "sharp": "^0.34.5", + "tailwindcss": "^4.1.5", + "tree-kill": "^1.2.2", + "uuid": "^13.0.0" + }, + "devDependencies": { + "7zip-bin": "^5.2.0", + "cross-env": "^7.0.3", + "electron": "42.2.0", + "electron-builder": "^26.8.1", + "typescript": "^5.8.3" + }, + "peerDependencies": { + "typescript": "^5.0.0" + } + }, + "node_modules/@borewit/text-codec": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/@borewit/text-codec/-/text-codec-0.2.2.tgz", + "integrity": "sha512-DDaRehssg1aNrH4+2hnj1B7vnUGEjU6OIlyRdkMd0aUdIUvKXrJfXsy8LVtXAy7DRvYVluWbMspsRhz2lcW0mQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/@develar/schema-utils": { + "version": "2.6.5", + "resolved": "https://registry.npmjs.org/@develar/schema-utils/-/schema-utils-2.6.5.tgz", + "integrity": "sha512-0cp4PsWQ/9avqTVMCtZ+GirikIA36ikvjtHweU4/j8yLtgObI0+JUPhYFScgwlteveGB1rt3Cm8UhN04XayDig==", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^6.12.0", + "ajv-keywords": "^3.4.1" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/@electron/asar": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/@electron/asar/-/asar-3.4.1.tgz", + "integrity": "sha512-i4/rNPRS84t0vSRa2HorerGRXWyF4vThfHesw0dmcWHp+cspK743UanA0suA5Q5y8kzY2y6YKrvbIUn69BCAiA==", + "dev": true, + "license": "MIT", + "dependencies": { + "commander": "^5.0.0", + "glob": "^7.1.6", + "minimatch": "^3.0.4" + }, + "bin": { + "asar": "bin/asar.js" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/@electron/asar/node_modules/minimatch": { + "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" + }, + "engines": { + "node": "*" + } + }, + "node_modules/@electron/fuses": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/@electron/fuses/-/fuses-1.8.0.tgz", + "integrity": "sha512-zx0EIq78WlY/lBb1uXlziZmDZI4ubcCXIMJ4uGjXzZW0nS19TjSPeXPAjzzTmKQlJUZm0SbmZhPKP7tuQ1SsEw==", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.1.1", + "fs-extra": "^9.0.1", + "minimist": "^1.2.5" + }, + "bin": { + "electron-fuses": "dist/bin.js" + } + }, + "node_modules/@electron/fuses/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@electron/get": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@electron/get/-/get-5.0.0.tgz", + "integrity": "sha512-pjoBpru1KdEtcExBnuHAP1cAc/5faoedw0hzJkL3o4/IJp7HNF1+fbrdxT3gMYRX2oJfvnA/WXeCTVQpYYxyJA==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.1.1", + "env-paths": "^3.0.0", + "graceful-fs": "^4.2.11", + "progress": "^2.0.3", + "semver": "^7.6.3", + "sumchecker": "^3.0.1" + }, + "engines": { + "node": ">=22.12.0" + }, + "optionalDependencies": { + "undici": "^7.24.4" + } + }, + "node_modules/@electron/notarize": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@electron/notarize/-/notarize-2.5.0.tgz", + "integrity": "sha512-jNT8nwH1f9X5GEITXaQ8IF/KdskvIkOFfB2CvwumsveVidzpSc+mvhhTMdAGSYF3O+Nq49lJ7y+ssODRXu06+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.1.1", + "fs-extra": "^9.0.1", + "promise-retry": "^2.0.1" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@electron/notarize/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@electron/osx-sign": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/@electron/osx-sign/-/osx-sign-1.3.3.tgz", + "integrity": "sha512-KZ8mhXvWv2rIEgMbWZ4y33bDHyUKMXnx4M0sTyPNK/vcB81ImdeY9Ggdqy0SWbMDgmbqyQ+phgejh6V3R2QuSg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "compare-version": "^0.1.2", + "debug": "^4.3.4", + "fs-extra": "^10.0.0", + "isbinaryfile": "^4.0.8", + "minimist": "^1.2.6", + "plist": "^3.0.5" + }, + "bin": { + "electron-osx-flat": "bin/electron-osx-flat.js", + "electron-osx-sign": "bin/electron-osx-sign.js" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/@electron/osx-sign/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" + }, + "funding": { + "url": "https://github.com/sponsors/gjtorikian/" + } + }, + "node_modules/@electron/rebuild": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@electron/rebuild/-/rebuild-4.0.4.tgz", + "integrity": "sha512-Rzc39XPdk/+/wBG8MfwAHohXflep0ITUfulb6Rgz3R0NeSB1noE+E9/M/cb8ftCAiyDD9PPhLuuWgE1GaInbKg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@malept/cross-spawn-promise": "^2.0.0", + "debug": "^4.1.1", + "node-abi": "^4.2.0", + "node-api-version": "^0.2.1", + "node-gyp": "^12.2.0", + "read-binary-file-arch": "^1.0.6" + }, + "bin": { + "electron-rebuild": "lib/cli.js" + }, + "engines": { + "node": ">=22.12.0" + } + }, + "node_modules/@electron/universal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@electron/universal/-/universal-2.0.3.tgz", + "integrity": "sha512-Wn9sPYIVFRFl5HmwMJkARCCf7rqK/EurkfQ/rJZ14mHP3iYTjZSIOSVonEAnhWeAXwtw7zOekGRlc6yTtZ0t+g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@electron/asar": "^3.3.1", + "@malept/cross-spawn-promise": "^2.0.0", + "debug": "^4.3.1", + "dir-compare": "^4.2.0", + "fs-extra": "^11.1.1", + "minimatch": "^9.0.3", + "plist": "^3.1.0" + }, + "engines": { + "node": ">=16.4" + } + }, + "node_modules/@electron/universal/node_modules/brace-expansion": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.1.0.tgz", + "integrity": "sha512-TN1kCZAgdgweJhWWpgKYrQaMNHcDULHkWwQIspdtjV4Y5aurRdZpjAqn6yX3FPqTA9ngHCc4hJxMAMgGfve85w==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@electron/universal/node_modules/fs-extra": { + "version": "11.3.5", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.5.tgz", + "integrity": "sha512-eKpRKAovdpZtR1WopLHxlBWvAgPny3c4gX1G5Jhwmmw4XJj0ifSD5qB5TOo8hmA0wlRKDAOAhEE1yVPgs6Fgcg==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=14.14" + } + }, + "node_modules/@electron/universal/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/@electron/windows-sign": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@electron/windows-sign/-/windows-sign-1.2.2.tgz", + "integrity": "sha512-dfZeox66AvdPtb2lD8OsIIQh12Tp0GNCRUDfBHIKGpbmopZto2/A8nSpYYLoedPIHpqkeblZ/k8OV0Gy7PYuyQ==", + "dev": true, + "license": "BSD-2-Clause", + "optional": true, + "peer": true, + "dependencies": { + "cross-dirname": "^0.1.0", + "debug": "^4.3.4", + "fs-extra": "^11.1.1", + "minimist": "^1.2.8", + "postject": "^1.0.0-alpha.6" + }, + "bin": { + "electron-windows-sign": "bin/electron-windows-sign.js" + }, + "engines": { + "node": ">=14.14" + } + }, + "node_modules/@electron/windows-sign/node_modules/fs-extra": { + "version": "11.3.5", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.5.tgz", + "integrity": "sha512-eKpRKAovdpZtR1WopLHxlBWvAgPny3c4gX1G5Jhwmmw4XJj0ifSD5qB5TOo8hmA0wlRKDAOAhEE1yVPgs6Fgcg==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=14.14" + } + }, + "node_modules/@emnapi/runtime": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.8.1.tgz", + "integrity": "sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==", + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@fastify/otel": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/@fastify/otel/-/otel-0.16.0.tgz", + "integrity": "sha512-2304BdM5Q/kUvQC9qJO1KZq3Zn1WWsw+WWkVmFEaj1UE2hEIiuFqrPeglQOwEtw/ftngisqfQ3v70TWMmwhhHA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fastify" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fastify" + } + ], + "license": "MIT", + "dependencies": { + "@opentelemetry/core": "^2.0.0", + "@opentelemetry/instrumentation": "^0.208.0", + "@opentelemetry/semantic-conventions": "^1.28.0", + "minimatch": "^10.0.3" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.9.0" + } + }, + "node_modules/@fastify/otel/node_modules/@opentelemetry/api-logs": { + "version": "0.208.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/api-logs/-/api-logs-0.208.0.tgz", + "integrity": "sha512-CjruKY9V6NMssL/T1kAFgzosF1v9o6oeN+aX5JB/C/xPNtmgIJqcXHG7fA82Ou1zCpWGl4lROQUKwUNE1pMCyg==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/api": "^1.3.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@fastify/otel/node_modules/@opentelemetry/instrumentation": { + "version": "0.208.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation/-/instrumentation-0.208.0.tgz", + "integrity": "sha512-Eju0L4qWcQS+oXxi6pgh7zvE2byogAkcsVv0OjHF/97iOz1N/aKE6etSGowYkie+YA1uo6DNwdSxaaNnLvcRlA==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/api-logs": "0.208.0", + "import-in-the-middle": "^2.0.0", + "require-in-the-middle": "^8.0.0" + }, + "engines": { + "node": "^18.19.0 || >=20.6.0" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.3.0" + } + }, + "node_modules/@hyzyla/pdfium": { + "version": "2.1.12", + "resolved": "https://registry.npmjs.org/@hyzyla/pdfium/-/pdfium-2.1.12.tgz", + "integrity": "sha512-2ezbrJk9V4foB3+U+eQ7234spsHmrufPU+9EV2cVZCnhTLLfelPz7wWshO0HjUNtcECNBaAfEzrdaQZOigkW+A==", + "license": "MIT" + }, + "node_modules/@img/colour": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.0.0.tgz", + "integrity": "sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==", + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/@img/sharp-darwin-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.5.tgz", + "integrity": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-darwin-arm64": "1.2.4" + } + }, + "node_modules/@img/sharp-darwin-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.5.tgz", + "integrity": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-darwin-x64": "1.2.4" + } + }, + "node_modules/@img/sharp-libvips-darwin-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.4.tgz", + "integrity": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==", + "cpu": [ + "arm64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "darwin" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-darwin-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.4.tgz", + "integrity": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==", + "cpu": [ + "x64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "darwin" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-arm": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.4.tgz", + "integrity": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==", + "cpu": [ + "arm" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.4.tgz", + "integrity": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==", + "cpu": [ + "arm64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-ppc64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.4.tgz", + "integrity": "sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==", + "cpu": [ + "ppc64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-riscv64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.2.4.tgz", + "integrity": "sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==", + "cpu": [ + "riscv64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-s390x": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.4.tgz", + "integrity": "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==", + "cpu": [ + "s390x" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.4.tgz", + "integrity": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==", + "cpu": [ + "x64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linuxmusl-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.4.tgz", + "integrity": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==", + "cpu": [ + "arm64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linuxmusl-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.4.tgz", + "integrity": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==", + "cpu": [ + "x64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-linux-arm": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.5.tgz", + "integrity": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==", + "cpu": [ + "arm" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-arm": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.5.tgz", + "integrity": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-arm64": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-ppc64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.5.tgz", + "integrity": "sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==", + "cpu": [ + "ppc64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-ppc64": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-riscv64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.34.5.tgz", + "integrity": "sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==", + "cpu": [ + "riscv64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-riscv64": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-s390x": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.5.tgz", + "integrity": "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==", + "cpu": [ + "s390x" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-s390x": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.5.tgz", + "integrity": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-x64": "1.2.4" + } + }, + "node_modules/@img/sharp-linuxmusl-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.5.tgz", + "integrity": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linuxmusl-arm64": "1.2.4" + } + }, + "node_modules/@img/sharp-linuxmusl-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.5.tgz", + "integrity": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linuxmusl-x64": "1.2.4" + } + }, + "node_modules/@img/sharp-wasm32": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.5.tgz", + "integrity": "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==", + "cpu": [ + "wasm32" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT", + "optional": true, + "dependencies": { + "@emnapi/runtime": "^1.7.0" + }, + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.5.tgz", + "integrity": "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-ia32": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.5.tgz", + "integrity": "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==", + "cpu": [ + "ia32" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.5.tgz", + "integrity": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@isaacs/balanced-match": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@isaacs/balanced-match/-/balanced-match-4.0.1.tgz", + "integrity": "sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==", + "license": "MIT", + "engines": { + "node": "20 || >=22" + } + }, + "node_modules/@isaacs/brace-expansion": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@isaacs/brace-expansion/-/brace-expansion-5.0.0.tgz", + "integrity": "sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==", + "license": "MIT", + "dependencies": { + "@isaacs/balanced-match": "^4.0.1" + }, + "engines": { + "node": "20 || >=22" + } + }, + "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/@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==", + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "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==", + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@llamaindex/liteparse": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/@llamaindex/liteparse/-/liteparse-1.5.2.tgz", + "integrity": "sha512-fjJd12g0n8NyZz/5CcWAVNwO3OsI4kT3Iwdv85KMvpVnU9fDbY9HLloVT4mCwNxAmi03IydxJkICIzJZeNt2RA==", + "license": "Apache-2.0", + "dependencies": { + "@hyzyla/pdfium": "^2.1.9", + "axios": "^1.7.0", + "commander": "^12.0.0", + "file-type": "^21.3.3", + "form-data": "^4.0.0", + "p-limit": "^7.3.0", + "sharp": "^0.34.5", + "tesseract.js": "^7.0.0", + "unified": "^11.0.0", + "zod": "^3.23.0" + }, + "bin": { + "lit": "dist/src/index.js", + "liteparse": "dist/src/index.js" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/@llamaindex/liteparse/node_modules/commander": { + "version": "12.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-12.1.0.tgz", + "integrity": "sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==", + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/@llamaindex/liteparse/node_modules/p-limit": { + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-7.3.0.tgz", + "integrity": "sha512-7cIXg/Z0M5WZRblrsOla88S4wAK+zOQQWeBYfV3qJuJXMr+LnbYjaadrFaS0JILfEDPVqHyKnZ1Z/1d6J9VVUw==", + "license": "MIT", + "dependencies": { + "yocto-queue": "^1.2.1" + }, + "engines": { + "node": ">=20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@llamaindex/liteparse/node_modules/yocto-queue": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.2.2.tgz", + "integrity": "sha512-4LCcse/U2MHZ63HAJVE+v71o7yOdIe4cZ70Wpf8D/IyjDKYQLV5GD46B+hSTjJsvV5PztjvHoU580EftxjDZFQ==", + "license": "MIT", + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@malept/cross-spawn-promise": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-2.0.0.tgz", + "integrity": "sha512-1DpKU0Z5ThltBwjNySMC14g0CkbyhCaz9FkhxqNsZI6uAPJXFS8cMXlBKo26FJ8ZuW6S9GCMcR9IO5k2X5/9Fg==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/malept" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/subscription/pkg/npm-.malept-cross-spawn-promise?utm_medium=referral&utm_source=npm_fund" + } + ], + "license": "Apache-2.0", + "dependencies": { + "cross-spawn": "^7.0.1" + }, + "engines": { + "node": ">= 12.13.0" + } + }, + "node_modules/@malept/flatpak-bundler": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/@malept/flatpak-bundler/-/flatpak-bundler-0.4.0.tgz", + "integrity": "sha512-9QOtNffcOF/c1seMCDnjckb3R9WHcG34tky+FHpNKKCW0wc/scYLwMtO+ptyGUfMW0/b/n4qRiALlaFHc9Oj7Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.1.1", + "fs-extra": "^9.0.0", + "lodash": "^4.17.15", + "tmp-promise": "^3.0.2" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@malept/flatpak-bundler/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@opentelemetry/api": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.9.1.tgz", + "integrity": "sha512-gLyJlPHPZYdAk1JENA9LeHejZe1Ti77/pTeFm/nMXmQH/HFZlcS/O2XJB+L8fkbrNSqhdtlvjBVjxwUYanNH5Q==", + "license": "Apache-2.0", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@opentelemetry/api-logs": { + "version": "0.211.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/api-logs/-/api-logs-0.211.0.tgz", + "integrity": "sha512-swFdZq8MCdmdR22jTVGQDhwqDzcI4M10nhjXkLr1EsIzXgZBqm4ZlmmcWsg3TSNf+3mzgOiqveXmBLZuDi2Lgg==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/api": "^1.3.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@opentelemetry/context-async-hooks": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/context-async-hooks/-/context-async-hooks-2.6.1.tgz", + "integrity": "sha512-XHzhwRNkBpeP8Fs/qjGrAf9r9PRv67wkJQ/7ZPaBQQ68DYlTBBx5MF9LvPx7mhuXcDessKK2b+DcxqwpgkcivQ==", + "license": "Apache-2.0", + "engines": { + "node": "^18.19.0 || >=20.6.0" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.10.0" + } + }, + "node_modules/@opentelemetry/core": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/core/-/core-2.6.1.tgz", + "integrity": "sha512-8xHSGWpJP9wBxgBpnqGL0R3PbdWQndL1Qp50qrg71+B28zK5OQmUgcDKLJgzyAAV38t4tOyLMGDD60LneR5W8g==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/semantic-conventions": "^1.29.0" + }, + "engines": { + "node": "^18.19.0 || >=20.6.0" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.10.0" + } + }, + "node_modules/@opentelemetry/instrumentation": { + "version": "0.211.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation/-/instrumentation-0.211.0.tgz", + "integrity": "sha512-h0nrZEC/zvI994nhg7EgQ8URIHt0uDTwN90r3qQUdZORS455bbx+YebnGeEuFghUT0HlJSrLF4iHw67f+odY+Q==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/api-logs": "0.211.0", + "import-in-the-middle": "^2.0.0", + "require-in-the-middle": "^8.0.0" + }, + "engines": { + "node": "^18.19.0 || >=20.6.0" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.3.0" + } + }, + "node_modules/@opentelemetry/instrumentation-amqplib": { + "version": "0.58.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-amqplib/-/instrumentation-amqplib-0.58.0.tgz", + "integrity": "sha512-fjpQtH18J6GxzUZ+cwNhWUpb71u+DzT7rFkg5pLssDGaEber91Y2WNGdpVpwGivfEluMlNMZumzjEqfg8DeKXQ==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "^2.0.0", + "@opentelemetry/instrumentation": "^0.211.0", + "@opentelemetry/semantic-conventions": "^1.33.0" + }, + "engines": { + "node": "^18.19.0 || >=20.6.0" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.3.0" + } + }, + "node_modules/@opentelemetry/instrumentation-connect": { + "version": "0.54.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-connect/-/instrumentation-connect-0.54.0.tgz", + "integrity": "sha512-43RmbhUhqt3uuPnc16cX6NsxEASEtn8z/cYV8Zpt6EP4p2h9s4FNuJ4Q9BbEQ2C0YlCCB/2crO1ruVz/hWt8fA==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "^2.0.0", + "@opentelemetry/instrumentation": "^0.211.0", + "@opentelemetry/semantic-conventions": "^1.27.0", + "@types/connect": "3.4.38" + }, + "engines": { + "node": "^18.19.0 || >=20.6.0" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.3.0" + } + }, + "node_modules/@opentelemetry/instrumentation-dataloader": { + "version": "0.28.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-dataloader/-/instrumentation-dataloader-0.28.0.tgz", + "integrity": "sha512-ExXGBp0sUj8yhm6Znhf9jmuOaGDsYfDES3gswZnKr4MCqoBWQdEFn6EoDdt5u+RdbxQER+t43FoUihEfTSqsjA==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/instrumentation": "^0.211.0" + }, + "engines": { + "node": "^18.19.0 || >=20.6.0" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.3.0" + } + }, + "node_modules/@opentelemetry/instrumentation-express": { + "version": "0.59.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-express/-/instrumentation-express-0.59.0.tgz", + "integrity": "sha512-pMKV/qnHiW/Q6pmbKkxt0eIhuNEtvJ7sUAyee192HErlr+a1Jx+FZ3WjfmzhQL1geewyGEiPGkmjjAgNY8TgDA==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "^2.0.0", + "@opentelemetry/instrumentation": "^0.211.0", + "@opentelemetry/semantic-conventions": "^1.27.0" + }, + "engines": { + "node": "^18.19.0 || >=20.6.0" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.3.0" + } + }, + "node_modules/@opentelemetry/instrumentation-fs": { + "version": "0.30.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-fs/-/instrumentation-fs-0.30.0.tgz", + "integrity": "sha512-n3Cf8YhG7reaj5dncGlRIU7iT40bxPOjsBEA5Bc1a1g6e9Qvb+JFJ7SEiMlPbUw4PBmxE3h40ltE8LZ3zVt6OA==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "^2.0.0", + "@opentelemetry/instrumentation": "^0.211.0" + }, + "engines": { + "node": "^18.19.0 || >=20.6.0" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.3.0" + } + }, + "node_modules/@opentelemetry/instrumentation-generic-pool": { + "version": "0.54.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-generic-pool/-/instrumentation-generic-pool-0.54.0.tgz", + "integrity": "sha512-8dXMBzzmEdXfH/wjuRvcJnUFeWzZHUnExkmFJ2uPfa31wmpyBCMxO59yr8f/OXXgSogNgi/uPo9KW9H7LMIZ+g==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/instrumentation": "^0.211.0" + }, + "engines": { + "node": "^18.19.0 || >=20.6.0" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.3.0" + } + }, + "node_modules/@opentelemetry/instrumentation-graphql": { + "version": "0.58.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-graphql/-/instrumentation-graphql-0.58.0.tgz", + "integrity": "sha512-+yWVVY7fxOs3j2RixCbvue8vUuJ1inHxN2q1sduqDB0Wnkr4vOzVKRYl/Zy7B31/dcPS72D9lo/kltdOTBM3bQ==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/instrumentation": "^0.211.0" + }, + "engines": { + "node": "^18.19.0 || >=20.6.0" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.3.0" + } + }, + "node_modules/@opentelemetry/instrumentation-hapi": { + "version": "0.57.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-hapi/-/instrumentation-hapi-0.57.0.tgz", + "integrity": "sha512-Os4THbvls8cTQTVA8ApLfZZztuuqGEeqog0XUnyRW7QVF0d/vOVBEcBCk1pazPFmllXGEdNbbat8e2fYIWdFbw==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "^2.0.0", + "@opentelemetry/instrumentation": "^0.211.0", + "@opentelemetry/semantic-conventions": "^1.27.0" + }, + "engines": { + "node": "^18.19.0 || >=20.6.0" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.3.0" + } + }, + "node_modules/@opentelemetry/instrumentation-http": { + "version": "0.211.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-http/-/instrumentation-http-0.211.0.tgz", + "integrity": "sha512-n0IaQ6oVll9PP84SjbOCwDjaJasWRHi6BLsbMLiT6tNj7QbVOkuA5sk/EfZczwI0j5uTKl1awQPivO/ldVtsqA==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "2.5.0", + "@opentelemetry/instrumentation": "0.211.0", + "@opentelemetry/semantic-conventions": "^1.29.0", + "forwarded-parse": "2.1.2" + }, + "engines": { + "node": "^18.19.0 || >=20.6.0" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.3.0" + } + }, + "node_modules/@opentelemetry/instrumentation-http/node_modules/@opentelemetry/core": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/core/-/core-2.5.0.tgz", + "integrity": "sha512-ka4H8OM6+DlUhSAZpONu0cPBtPPTQKxbxVzC4CzVx5+K4JnroJVBtDzLAMx4/3CDTJXRvVFhpFjtl4SaiTNoyQ==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/semantic-conventions": "^1.29.0" + }, + "engines": { + "node": "^18.19.0 || >=20.6.0" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.10.0" + } + }, + "node_modules/@opentelemetry/instrumentation-ioredis": { + "version": "0.59.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-ioredis/-/instrumentation-ioredis-0.59.0.tgz", + "integrity": "sha512-875UxzBHWkW+P4Y45SoFM2AR8f8TzBMD8eO7QXGCyFSCUMP5s9vtt/BS8b/r2kqLyaRPK6mLbdnZznK3XzQWvw==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/instrumentation": "^0.211.0", + "@opentelemetry/redis-common": "^0.38.2", + "@opentelemetry/semantic-conventions": "^1.33.0" + }, + "engines": { + "node": "^18.19.0 || >=20.6.0" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.3.0" + } + }, + "node_modules/@opentelemetry/instrumentation-kafkajs": { + "version": "0.20.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-kafkajs/-/instrumentation-kafkajs-0.20.0.tgz", + "integrity": "sha512-yJXOuWZROzj7WmYCUiyT27tIfqBrVtl1/TwVbQyWPz7rL0r1Lu7kWjD0PiVeTCIL6CrIZ7M2s8eBxsTAOxbNvw==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/instrumentation": "^0.211.0", + "@opentelemetry/semantic-conventions": "^1.30.0" + }, + "engines": { + "node": "^18.19.0 || >=20.6.0" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.3.0" + } + }, + "node_modules/@opentelemetry/instrumentation-knex": { + "version": "0.55.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-knex/-/instrumentation-knex-0.55.0.tgz", + "integrity": "sha512-FtTL5DUx5Ka/8VK6P1VwnlUXPa3nrb7REvm5ddLUIeXXq4tb9pKd+/ThB1xM/IjefkRSN3z8a5t7epYw1JLBJQ==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/instrumentation": "^0.211.0", + "@opentelemetry/semantic-conventions": "^1.33.1" + }, + "engines": { + "node": "^18.19.0 || >=20.6.0" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.3.0" + } + }, + "node_modules/@opentelemetry/instrumentation-koa": { + "version": "0.59.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-koa/-/instrumentation-koa-0.59.0.tgz", + "integrity": "sha512-K9o2skADV20Skdu5tG2bogPKiSpXh4KxfLjz6FuqIVvDJNibwSdu5UvyyBzRVp1rQMV6UmoIk6d3PyPtJbaGSg==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "^2.0.0", + "@opentelemetry/instrumentation": "^0.211.0", + "@opentelemetry/semantic-conventions": "^1.36.0" + }, + "engines": { + "node": "^18.19.0 || >=20.6.0" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.9.0" + } + }, + "node_modules/@opentelemetry/instrumentation-lru-memoizer": { + "version": "0.55.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-lru-memoizer/-/instrumentation-lru-memoizer-0.55.0.tgz", + "integrity": "sha512-FDBfT7yDGcspN0Cxbu/k8A0Pp1Jhv/m7BMTzXGpcb8ENl3tDj/51U65R5lWzUH15GaZA15HQ5A5wtafklxYj7g==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/instrumentation": "^0.211.0" + }, + "engines": { + "node": "^18.19.0 || >=20.6.0" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.3.0" + } + }, + "node_modules/@opentelemetry/instrumentation-mongodb": { + "version": "0.64.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-mongodb/-/instrumentation-mongodb-0.64.0.tgz", + "integrity": "sha512-pFlCJjweTqVp7B220mCvCld1c1eYKZfQt1p3bxSbcReypKLJTwat+wbL2YZoX9jPi5X2O8tTKFEOahO5ehQGsA==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/instrumentation": "^0.211.0", + "@opentelemetry/semantic-conventions": "^1.33.0" + }, + "engines": { + "node": "^18.19.0 || >=20.6.0" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.3.0" + } + }, + "node_modules/@opentelemetry/instrumentation-mongoose": { + "version": "0.57.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-mongoose/-/instrumentation-mongoose-0.57.0.tgz", + "integrity": "sha512-MthiekrU/BAJc5JZoZeJmo0OTX6ycJMiP6sMOSRTkvz5BrPMYDqaJos0OgsLPL/HpcgHP7eo5pduETuLguOqcg==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "^2.0.0", + "@opentelemetry/instrumentation": "^0.211.0", + "@opentelemetry/semantic-conventions": "^1.33.0" + }, + "engines": { + "node": "^18.19.0 || >=20.6.0" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.3.0" + } + }, + "node_modules/@opentelemetry/instrumentation-mysql": { + "version": "0.57.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-mysql/-/instrumentation-mysql-0.57.0.tgz", + "integrity": "sha512-HFS/+FcZ6Q7piM7Il7CzQ4VHhJvGMJWjx7EgCkP5AnTntSN5rb5Xi3TkYJHBKeR27A0QqPlGaCITi93fUDs++Q==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/instrumentation": "^0.211.0", + "@opentelemetry/semantic-conventions": "^1.33.0", + "@types/mysql": "2.15.27" + }, + "engines": { + "node": "^18.19.0 || >=20.6.0" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.3.0" + } + }, + "node_modules/@opentelemetry/instrumentation-mysql2": { + "version": "0.57.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-mysql2/-/instrumentation-mysql2-0.57.0.tgz", + "integrity": "sha512-nHSrYAwF7+aV1E1V9yOOP9TchOodb6fjn4gFvdrdQXiRE7cMuffyLLbCZlZd4wsspBzVwOXX8mpURdRserAhNA==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/instrumentation": "^0.211.0", + "@opentelemetry/semantic-conventions": "^1.33.0", + "@opentelemetry/sql-common": "^0.41.2" + }, + "engines": { + "node": "^18.19.0 || >=20.6.0" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.3.0" + } + }, + "node_modules/@opentelemetry/instrumentation-pg": { + "version": "0.63.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-pg/-/instrumentation-pg-0.63.0.tgz", + "integrity": "sha512-dKm/ODNN3GgIQVlbD6ZPxwRc3kleLf95hrRWXM+l8wYo+vSeXtEpQPT53afEf6VFWDVzJK55VGn8KMLtSve/cg==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "^2.0.0", + "@opentelemetry/instrumentation": "^0.211.0", + "@opentelemetry/semantic-conventions": "^1.34.0", + "@opentelemetry/sql-common": "^0.41.2", + "@types/pg": "8.15.6", + "@types/pg-pool": "2.0.7" + }, + "engines": { + "node": "^18.19.0 || >=20.6.0" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.3.0" + } + }, + "node_modules/@opentelemetry/instrumentation-redis": { + "version": "0.59.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-redis/-/instrumentation-redis-0.59.0.tgz", + "integrity": "sha512-JKv1KDDYA2chJ1PC3pLP+Q9ISMQk6h5ey+99mB57/ARk0vQPGZTTEb4h4/JlcEpy7AYT8HIGv7X6l+br03Neeg==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/instrumentation": "^0.211.0", + "@opentelemetry/redis-common": "^0.38.2", + "@opentelemetry/semantic-conventions": "^1.27.0" + }, + "engines": { + "node": "^18.19.0 || >=20.6.0" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.3.0" + } + }, + "node_modules/@opentelemetry/instrumentation-tedious": { + "version": "0.30.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-tedious/-/instrumentation-tedious-0.30.0.tgz", + "integrity": "sha512-bZy9Q8jFdycKQ2pAsyuHYUHNmCxCOGdG6eg1Mn75RvQDccq832sU5OWOBnc12EFUELI6icJkhR7+EQKMBam2GA==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/instrumentation": "^0.211.0", + "@opentelemetry/semantic-conventions": "^1.33.0", + "@types/tedious": "^4.0.14" + }, + "engines": { + "node": "^18.19.0 || >=20.6.0" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.3.0" + } + }, + "node_modules/@opentelemetry/instrumentation-undici": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-undici/-/instrumentation-undici-0.21.0.tgz", + "integrity": "sha512-gok0LPUOTz2FQ1YJMZzaHcOzDFyT64XJ8M9rNkugk923/p6lDGms/cRW1cqgqp6N6qcd6K6YdVHwPEhnx9BWbw==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "^2.0.0", + "@opentelemetry/instrumentation": "^0.211.0", + "@opentelemetry/semantic-conventions": "^1.24.0" + }, + "engines": { + "node": "^18.19.0 || >=20.6.0" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.7.0" + } + }, + "node_modules/@opentelemetry/redis-common": { + "version": "0.38.2", + "resolved": "https://registry.npmjs.org/@opentelemetry/redis-common/-/redis-common-0.38.2.tgz", + "integrity": "sha512-1BCcU93iwSRZvDAgwUxC/DV4T/406SkMfxGqu5ojc3AvNI+I9GhV7v0J1HljsczuuhcnFLYqD5VmwVXfCGHzxA==", + "license": "Apache-2.0", + "engines": { + "node": "^18.19.0 || >=20.6.0" + } + }, + "node_modules/@opentelemetry/resources": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/resources/-/resources-2.6.1.tgz", + "integrity": "sha512-lID/vxSuKWXM55XhAKNoYXu9Cutoq5hFdkbTdI/zDKQktXzcWBVhNsOkiZFTMU9UtEWuGRNe0HUgmsFldIdxVA==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "2.6.1", + "@opentelemetry/semantic-conventions": "^1.29.0" + }, + "engines": { + "node": "^18.19.0 || >=20.6.0" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.3.0 <1.10.0" + } + }, + "node_modules/@opentelemetry/sdk-trace-base": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-trace-base/-/sdk-trace-base-2.6.1.tgz", + "integrity": "sha512-r86ut4T1e8vNwB35CqCcKd45yzqH6/6Wzvpk2/cZB8PsPLlZFTvrh8yfOS3CYZYcUmAx4hHTZJ8AO8Dj8nrdhw==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "2.6.1", + "@opentelemetry/resources": "2.6.1", + "@opentelemetry/semantic-conventions": "^1.29.0" + }, + "engines": { + "node": "^18.19.0 || >=20.6.0" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.3.0 <1.10.0" + } + }, + "node_modules/@opentelemetry/semantic-conventions": { + "version": "1.40.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.40.0.tgz", + "integrity": "sha512-cifvXDhcqMwwTlTK04GBNeIe7yyo28Mfby85QXFe1Yk8nmi36Ab/5UQwptOx84SsoGNRg+EVSjwzfSZMy6pmlw==", + "license": "Apache-2.0", + "engines": { + "node": ">=14" + } + }, + "node_modules/@opentelemetry/sql-common": { + "version": "0.41.2", + "resolved": "https://registry.npmjs.org/@opentelemetry/sql-common/-/sql-common-0.41.2.tgz", + "integrity": "sha512-4mhWm3Z8z+i508zQJ7r6Xi7y4mmoJpdvH0fZPFRkWrdp5fq7hhZ2HhYokEOLkfqSMgPR4Z9EyB3DBkbKGOqZiQ==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "^2.0.0" + }, + "engines": { + "node": "^18.19.0 || >=20.6.0" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.1.0" + } + }, + "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==", + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "detect-libc": "^2.0.3", + "is-glob": "^4.0.3", + "node-addon-api": "^7.0.0", + "picomatch": "^4.0.3" + }, + "engines": { + "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/@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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@prisma/instrumentation": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@prisma/instrumentation/-/instrumentation-7.2.0.tgz", + "integrity": "sha512-Rh9Z4x5kEj1OdARd7U18AtVrnL6rmLSI0qYShaB4W7Wx5BKbgzndWF+QnuzMb7GLfVdlT5aYCXoPQVYuYtVu0g==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/instrumentation": "^0.207.0" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.8" + } + }, + "node_modules/@prisma/instrumentation/node_modules/@opentelemetry/api-logs": { + "version": "0.207.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/api-logs/-/api-logs-0.207.0.tgz", + "integrity": "sha512-lAb0jQRVyleQQGiuuvCOTDVspc14nx6XJjP4FspJ1sNARo3Regq4ZZbrc3rN4b1TYSuUCvgH+UXUPug4SLOqEQ==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/api": "^1.3.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation": { + "version": "0.207.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation/-/instrumentation-0.207.0.tgz", + "integrity": "sha512-y6eeli9+TLKnznrR8AZlQMSJT7wILpXH+6EYq5Vf/4Ao+huI7EedxQHwRgVUOMLFbe7VFDvHJrX9/f4lcwnJsA==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/api-logs": "0.207.0", + "import-in-the-middle": "^2.0.0", + "require-in-the-middle": "^8.0.0" + }, + "engines": { + "node": "^18.19.0 || >=20.6.0" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.3.0" + } + }, + "node_modules/@puppeteer/browsers": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-3.0.3.tgz", + "integrity": "sha512-v3YaiGpzUTgOZkHBFR0iZg58Vto25SqBQxfLUXDiofJccwVl6Mlr7BdLCS1NZgxikdeIHf936cxYWL9IZp3tow==", + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.4.3", + "progress": "^2.0.3", + "semver": "^7.7.4", + "tar-fs": "^3.1.1", + "yargs": "^17.7.2" + }, + "bin": { + "browsers": "lib/main-cli.js" + }, + "engines": { + "node": ">=22.12.0" + }, + "peerDependencies": { + "proxy-agent": ">=8.0.1" + }, + "peerDependenciesMeta": { + "proxy-agent": { + "optional": true + } + } + }, + "node_modules/@sentry-internal/browser-utils": { + "version": "10.42.0", + "resolved": "https://registry.npmjs.org/@sentry-internal/browser-utils/-/browser-utils-10.42.0.tgz", + "integrity": "sha512-HCEICKvepxN4/6NYfnMMMlppcSwIEwtS66X6d1/mwaHdi2ivw0uGl52p7Nfhda/lIJArbrkWprxl0WcjZajhQA==", + "license": "MIT", + "dependencies": { + "@sentry/core": "10.42.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@sentry-internal/feedback": { + "version": "10.42.0", + "resolved": "https://registry.npmjs.org/@sentry-internal/feedback/-/feedback-10.42.0.tgz", + "integrity": "sha512-lpPcHsog10MVYFTWE0Pf8vQRqQWwZHJpkVl2FEb9/HDdHFyTBUhCVoWo1KyKaG7GJl9AVKMAg7bp9SSNArhFNQ==", + "license": "MIT", + "dependencies": { + "@sentry/core": "10.42.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@sentry-internal/replay": { + "version": "10.42.0", + "resolved": "https://registry.npmjs.org/@sentry-internal/replay/-/replay-10.42.0.tgz", + "integrity": "sha512-Zh3EoaH39x2lqVY1YyVB2vJEyCIrT+YLUQxYl1yvP0MJgLxaR6akVjkgxbSUJahan4cX5DxpZiEHfzdlWnYPyQ==", + "license": "MIT", + "dependencies": { + "@sentry-internal/browser-utils": "10.42.0", + "@sentry/core": "10.42.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@sentry-internal/replay-canvas": { + "version": "10.42.0", + "resolved": "https://registry.npmjs.org/@sentry-internal/replay-canvas/-/replay-canvas-10.42.0.tgz", + "integrity": "sha512-am3m1Fj8ihoPfoYo41Qq4KeCAAICn4bySso8Oepu9dMNe9Lcnsf+reMRS2qxTPg3pZDc4JEMOcLyNCcgnAfrHw==", + "license": "MIT", + "dependencies": { + "@sentry-internal/replay": "10.42.0", + "@sentry/core": "10.42.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@sentry/browser": { + "version": "10.42.0", + "resolved": "https://registry.npmjs.org/@sentry/browser/-/browser-10.42.0.tgz", + "integrity": "sha512-iXxYjXNEBwY1MH4lDSDZZUNjzPJDK7/YLwVIJq/3iBYpIQVIhaJsoJnf3clx9+NfJ8QFKyKfcvgae61zm+hgTA==", + "license": "MIT", + "dependencies": { + "@sentry-internal/browser-utils": "10.42.0", + "@sentry-internal/feedback": "10.42.0", + "@sentry-internal/replay": "10.42.0", + "@sentry-internal/replay-canvas": "10.42.0", + "@sentry/core": "10.42.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@sentry/core": { + "version": "10.42.0", + "resolved": "https://registry.npmjs.org/@sentry/core/-/core-10.42.0.tgz", + "integrity": "sha512-L4rMrXMqUKBanpjpMT+TuAVk6xAijz6AWM6RiEYpohAr7SGcCEc1/T0+Ep1eLV8+pwWacfU27OvELIyNeOnGzA==", + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/@sentry/electron": { + "version": "7.10.0", + "resolved": "https://registry.npmjs.org/@sentry/electron/-/electron-7.10.0.tgz", + "integrity": "sha512-RwifPIBQds31giWL5KF87R/owzcVamMcXkL2ctoe/ybsxV861cbNhXxba/XCI6YmYOGIaixqiCAasxeZ+mx1SA==", + "license": "MIT", + "dependencies": { + "@sentry/browser": "10.42.0", + "@sentry/core": "10.42.0", + "@sentry/node": "10.42.0" + }, + "peerDependencies": { + "@sentry/node-native": "10.42.0" + }, + "peerDependenciesMeta": { + "@sentry/node-native": { + "optional": true + } + } + }, + "node_modules/@sentry/node": { + "version": "10.42.0", + "resolved": "https://registry.npmjs.org/@sentry/node/-/node-10.42.0.tgz", + "integrity": "sha512-ZZfU3Fnni7Aj0lTX4e3QpY3UxK4FGuzfM20316UAJycBGnripm+sDHwcekPMGfLnk/FrN9wa1atspVlHvOI0WQ==", + "license": "MIT", + "dependencies": { + "@fastify/otel": "0.16.0", + "@opentelemetry/api": "^1.9.0", + "@opentelemetry/context-async-hooks": "^2.5.1", + "@opentelemetry/core": "^2.5.1", + "@opentelemetry/instrumentation": "^0.211.0", + "@opentelemetry/instrumentation-amqplib": "0.58.0", + "@opentelemetry/instrumentation-connect": "0.54.0", + "@opentelemetry/instrumentation-dataloader": "0.28.0", + "@opentelemetry/instrumentation-express": "0.59.0", + "@opentelemetry/instrumentation-fs": "0.30.0", + "@opentelemetry/instrumentation-generic-pool": "0.54.0", + "@opentelemetry/instrumentation-graphql": "0.58.0", + "@opentelemetry/instrumentation-hapi": "0.57.0", + "@opentelemetry/instrumentation-http": "0.211.0", + "@opentelemetry/instrumentation-ioredis": "0.59.0", + "@opentelemetry/instrumentation-kafkajs": "0.20.0", + "@opentelemetry/instrumentation-knex": "0.55.0", + "@opentelemetry/instrumentation-koa": "0.59.0", + "@opentelemetry/instrumentation-lru-memoizer": "0.55.0", + "@opentelemetry/instrumentation-mongodb": "0.64.0", + "@opentelemetry/instrumentation-mongoose": "0.57.0", + "@opentelemetry/instrumentation-mysql": "0.57.0", + "@opentelemetry/instrumentation-mysql2": "0.57.0", + "@opentelemetry/instrumentation-pg": "0.63.0", + "@opentelemetry/instrumentation-redis": "0.59.0", + "@opentelemetry/instrumentation-tedious": "0.30.0", + "@opentelemetry/instrumentation-undici": "0.21.0", + "@opentelemetry/resources": "^2.5.1", + "@opentelemetry/sdk-trace-base": "^2.5.1", + "@opentelemetry/semantic-conventions": "^1.39.0", + "@prisma/instrumentation": "7.2.0", + "@sentry/core": "10.42.0", + "@sentry/node-core": "10.42.0", + "@sentry/opentelemetry": "10.42.0", + "import-in-the-middle": "^2.0.6" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@sentry/node-core": { + "version": "10.42.0", + "resolved": "https://registry.npmjs.org/@sentry/node-core/-/node-core-10.42.0.tgz", + "integrity": "sha512-9tf3fPV6M071aps72D+PEtdQPTuj+SuqO2+PpTfdPP5ZL4TTKYo3VK0li76SL+5wGdTFGV5qmsokHq9IRBA0iA==", + "license": "MIT", + "dependencies": { + "@sentry/core": "10.42.0", + "@sentry/opentelemetry": "10.42.0", + "import-in-the-middle": "^2.0.6" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.9.0", + "@opentelemetry/context-async-hooks": "^1.30.1 || ^2.1.0", + "@opentelemetry/core": "^1.30.1 || ^2.1.0", + "@opentelemetry/instrumentation": ">=0.57.1 <1", + "@opentelemetry/resources": "^1.30.1 || ^2.1.0", + "@opentelemetry/sdk-trace-base": "^1.30.1 || ^2.1.0", + "@opentelemetry/semantic-conventions": "^1.39.0" + }, + "peerDependenciesMeta": { + "@opentelemetry/api": { + "optional": true + }, + "@opentelemetry/context-async-hooks": { + "optional": true + }, + "@opentelemetry/core": { + "optional": true + }, + "@opentelemetry/instrumentation": { + "optional": true + }, + "@opentelemetry/resources": { + "optional": true + }, + "@opentelemetry/sdk-trace-base": { + "optional": true + }, + "@opentelemetry/semantic-conventions": { + "optional": true + } + } + }, + "node_modules/@sentry/opentelemetry": { + "version": "10.42.0", + "resolved": "https://registry.npmjs.org/@sentry/opentelemetry/-/opentelemetry-10.42.0.tgz", + "integrity": "sha512-5vsYz683iihzlIj3sT1+tEixf0awwXK86a+aYsnMHrTXJDrkBDq4U0ZT+yxdPfJlkaxRtYycFR08SXr2pSm7Eg==", + "license": "MIT", + "dependencies": { + "@sentry/core": "10.42.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.9.0", + "@opentelemetry/context-async-hooks": "^1.30.1 || ^2.1.0", + "@opentelemetry/core": "^1.30.1 || ^2.1.0", + "@opentelemetry/sdk-trace-base": "^1.30.1 || ^2.1.0", + "@opentelemetry/semantic-conventions": "^1.39.0" + } + }, + "node_modules/@sindresorhus/is": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", + "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/is?sponsor=1" + } + }, + "node_modules/@szmarczak/http-timer": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", + "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==", + "dev": true, + "license": "MIT", + "dependencies": { + "defer-to-connect": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@tailwindcss/cli": { + "version": "4.1.18", + "resolved": "https://registry.npmjs.org/@tailwindcss/cli/-/cli-4.1.18.tgz", + "integrity": "sha512-sMZ+lZbDyxwjD2E0L7oRUjJ01Ffjtme5OtjvvnC+cV4CEDcbqzbp25TCpxHj6kWLU9+DlqJOiNgSOgctC2aZmg==", + "license": "MIT", + "dependencies": { + "@parcel/watcher": "^2.5.1", + "@tailwindcss/node": "4.1.18", + "@tailwindcss/oxide": "4.1.18", + "enhanced-resolve": "^5.18.3", + "mri": "^1.2.0", + "picocolors": "^1.1.1", + "tailwindcss": "4.1.18" + }, + "bin": { + "tailwindcss": "dist/index.mjs" + } + }, + "node_modules/@tailwindcss/node": { + "version": "4.1.18", + "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.1.18.tgz", + "integrity": "sha512-DoR7U1P7iYhw16qJ49fgXUlry1t4CpXeErJHnQ44JgTSKMaZUdf17cfn5mHchfJ4KRBZRFA/Coo+MUF5+gOaCQ==", + "license": "MIT", + "dependencies": { + "@jridgewell/remapping": "^2.3.4", + "enhanced-resolve": "^5.18.3", + "jiti": "^2.6.1", + "lightningcss": "1.30.2", + "magic-string": "^0.30.21", + "source-map-js": "^1.2.1", + "tailwindcss": "4.1.18" + } + }, + "node_modules/@tailwindcss/oxide": { + "version": "4.1.18", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.1.18.tgz", + "integrity": "sha512-EgCR5tTS5bUSKQgzeMClT6iCY3ToqE1y+ZB0AKldj809QXk1Y+3jB0upOYZrn9aGIzPtUsP7sX4QQ4XtjBB95A==", + "license": "MIT", + "engines": { + "node": ">= 10" + }, + "optionalDependencies": { + "@tailwindcss/oxide-android-arm64": "4.1.18", + "@tailwindcss/oxide-darwin-arm64": "4.1.18", + "@tailwindcss/oxide-darwin-x64": "4.1.18", + "@tailwindcss/oxide-freebsd-x64": "4.1.18", + "@tailwindcss/oxide-linux-arm-gnueabihf": "4.1.18", + "@tailwindcss/oxide-linux-arm64-gnu": "4.1.18", + "@tailwindcss/oxide-linux-arm64-musl": "4.1.18", + "@tailwindcss/oxide-linux-x64-gnu": "4.1.18", + "@tailwindcss/oxide-linux-x64-musl": "4.1.18", + "@tailwindcss/oxide-wasm32-wasi": "4.1.18", + "@tailwindcss/oxide-win32-arm64-msvc": "4.1.18", + "@tailwindcss/oxide-win32-x64-msvc": "4.1.18" + } + }, + "node_modules/@tailwindcss/oxide-android-arm64": { + "version": "4.1.18", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.1.18.tgz", + "integrity": "sha512-dJHz7+Ugr9U/diKJA0W6N/6/cjI+ZTAoxPf9Iz9BFRF2GzEX8IvXxFIi/dZBloVJX/MZGvRuFA9rqwdiIEZQ0Q==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-darwin-arm64": { + "version": "4.1.18", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.1.18.tgz", + "integrity": "sha512-Gc2q4Qhs660bhjyBSKgq6BYvwDz4G+BuyJ5H1xfhmDR3D8HnHCmT/BSkvSL0vQLy/nkMLY20PQ2OoYMO15Jd0A==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-darwin-x64": { + "version": "4.1.18", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.1.18.tgz", + "integrity": "sha512-FL5oxr2xQsFrc3X9o1fjHKBYBMD1QZNyc1Xzw/h5Qu4XnEBi3dZn96HcHm41c/euGV+GRiXFfh2hUCyKi/e+yw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-freebsd-x64": { + "version": "4.1.18", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.1.18.tgz", + "integrity": "sha512-Fj+RHgu5bDodmV1dM9yAxlfJwkkWvLiRjbhuO2LEtwtlYlBgiAT4x/j5wQr1tC3SANAgD+0YcmWVrj8R9trVMA==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": { + "version": "4.1.18", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.1.18.tgz", + "integrity": "sha512-Fp+Wzk/Ws4dZn+LV2Nqx3IilnhH51YZoRaYHQsVq3RQvEl+71VGKFpkfHrLM/Li+kt5c0DJe/bHXK1eHgDmdiA==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm64-gnu": { + "version": "4.1.18", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.1.18.tgz", + "integrity": "sha512-S0n3jboLysNbh55Vrt7pk9wgpyTTPD0fdQeh7wQfMqLPM/Hrxi+dVsLsPrycQjGKEQk85Kgbx+6+QnYNiHalnw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm64-musl": { + "version": "4.1.18", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.1.18.tgz", + "integrity": "sha512-1px92582HkPQlaaCkdRcio71p8bc8i/ap5807tPRDK/uw953cauQBT8c5tVGkOwrHMfc2Yh6UuxaH4vtTjGvHg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-linux-x64-gnu": { + "version": "4.1.18", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.1.18.tgz", + "integrity": "sha512-v3gyT0ivkfBLoZGF9LyHmts0Isc8jHZyVcbzio6Wpzifg/+5ZJpDiRiUhDLkcr7f/r38SWNe7ucxmGW3j3Kb/g==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-linux-x64-musl": { + "version": "4.1.18", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.1.18.tgz", + "integrity": "sha512-bhJ2y2OQNlcRwwgOAGMY0xTFStt4/wyU6pvI6LSuZpRgKQwxTec0/3Scu91O8ir7qCR3AuepQKLU/kX99FouqQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-wasm32-wasi": { + "version": "4.1.18", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.1.18.tgz", + "integrity": "sha512-LffYTvPjODiP6PT16oNeUQJzNVyJl1cjIebq/rWWBF+3eDst5JGEFSc5cWxyRCJ0Mxl+KyIkqRxk1XPEs9x8TA==", + "bundleDependencies": [ + "@napi-rs/wasm-runtime", + "@emnapi/core", + "@emnapi/runtime", + "@tybys/wasm-util", + "@emnapi/wasi-threads", + "tslib" + ], + "cpu": [ + "wasm32" + ], + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/core": "^1.7.1", + "@emnapi/runtime": "^1.7.1", + "@emnapi/wasi-threads": "^1.1.0", + "@napi-rs/wasm-runtime": "^1.1.0", + "@tybys/wasm-util": "^0.10.1", + "tslib": "^2.4.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@emnapi/core": { + "version": "1.7.1", + "inBundle": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/wasi-threads": "1.1.0", + "tslib": "^2.4.0" + } + }, + "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@emnapi/runtime": { + "version": "1.7.1", + "inBundle": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@emnapi/wasi-threads": { + "version": "1.1.0", + "inBundle": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@napi-rs/wasm-runtime": { + "version": "1.1.0", + "inBundle": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/core": "^1.7.1", + "@emnapi/runtime": "^1.7.1", + "@tybys/wasm-util": "^0.10.1" + } + }, + "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@tybys/wasm-util": { + "version": "0.10.1", + "inBundle": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/tslib": { + "version": "2.8.1", + "inBundle": true, + "license": "0BSD", + "optional": true + }, + "node_modules/@tailwindcss/oxide-win32-arm64-msvc": { + "version": "4.1.18", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.1.18.tgz", + "integrity": "sha512-HjSA7mr9HmC8fu6bdsZvZ+dhjyGCLdotjVOgLA2vEqxEBZaQo9YTX4kwgEvPCpRh8o4uWc4J/wEoFzhEmjvPbA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-win32-x64-msvc": { + "version": "4.1.18", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.1.18.tgz", + "integrity": "sha512-bJWbyYpUlqamC8dpR7pfjA0I7vdF6t5VpUGMWRkXVE3AXgIZjYUYAK7II1GNaxR8J1SSrSrppRar8G++JekE3Q==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tokenizer/inflate": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@tokenizer/inflate/-/inflate-0.4.1.tgz", + "integrity": "sha512-2mAv+8pkG6GIZiF1kNg1jAjh27IDxEPKwdGul3snfztFerfPGI1LjDezZp3i7BElXompqEtPmoPx6c2wgtWsOA==", + "license": "MIT", + "dependencies": { + "debug": "^4.4.3", + "token-types": "^6.1.1" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/@tokenizer/token": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@tokenizer/token/-/token-0.3.0.tgz", + "integrity": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==", + "license": "MIT" + }, + "node_modules/@types/cacheable-request": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.3.tgz", + "integrity": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/http-cache-semantics": "*", + "@types/keyv": "^3.1.4", + "@types/node": "*", + "@types/responselike": "^1.0.0" + } + }, + "node_modules/@types/connect": { + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", + "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/debug": { + "version": "4.1.13", + "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.13.tgz", + "integrity": "sha512-KSVgmQmzMwPlmtljOomayoR89W4FynCAi3E8PPs7vmDVPe84hT+vGPKkJfThkmXs0x0jAaa9U8uW8bbfyS2fWw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/ms": "*" + } + }, + "node_modules/@types/fs-extra": { + "version": "9.0.13", + "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-9.0.13.tgz", + "integrity": "sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/http-cache-semantics": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz", + "integrity": "sha512-L3LgimLHXtGkWikKnsPg0/VFx9OGZaC+eN1u4r+OB1XRqH3meBIAVC2zr1WdMH+RHmnRkqliQAOHNJ/E0j/e0Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/keyv": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz", + "integrity": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/ms": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz", + "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/mysql": { + "version": "2.15.27", + "resolved": "https://registry.npmjs.org/@types/mysql/-/mysql-2.15.27.tgz", + "integrity": "sha512-YfWiV16IY0OeBfBCk8+hXKmdTKrKlwKN1MNKAPBu5JYxLwBEZl7QzeEpGnlZb3VMGJrrGmB84gXiH+ofs/TezA==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/node": { + "version": "24.10.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-24.10.0.tgz", + "integrity": "sha512-qzQZRBqkFsYyaSWXuEHc2WR9c0a0CXwiE5FWUvn7ZM+vdy1uZLfCunD38UzhuB7YN/J11ndbDBcTmOdxJo9Q7A==", + "license": "MIT", + "dependencies": { + "undici-types": "~7.16.0" + } + }, + "node_modules/@types/pg": { + "version": "8.15.6", + "resolved": "https://registry.npmjs.org/@types/pg/-/pg-8.15.6.tgz", + "integrity": "sha512-NoaMtzhxOrubeL/7UZuNTrejB4MPAJ0RpxZqXQf2qXuVlTPuG6Y8p4u9dKRaue4yjmC7ZhzVO2/Yyyn25znrPQ==", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "pg-protocol": "*", + "pg-types": "^2.2.0" + } + }, + "node_modules/@types/pg-pool": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@types/pg-pool/-/pg-pool-2.0.7.tgz", + "integrity": "sha512-U4CwmGVQcbEuqpyju8/ptOKg6gEC+Tqsvj2xS9o1g71bUh8twxnC6ZL5rZKCsGN0iyH0CwgUyc9VR5owNQF9Ng==", + "license": "MIT", + "dependencies": { + "@types/pg": "*" + } + }, + "node_modules/@types/plist": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@types/plist/-/plist-3.0.5.tgz", + "integrity": "sha512-E6OCaRmAe4WDmWNsL/9RMqdkkzDCY1etutkflWk4c+AcjDU07Pcz1fQwTX0TQz+Pxqn9i4L1TU3UFpjnrcDgxA==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@types/node": "*", + "xmlbuilder": ">=11.0.1" + } + }, + "node_modules/@types/responselike": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.3.tgz", + "integrity": "sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/tedious": { + "version": "4.0.14", + "resolved": "https://registry.npmjs.org/@types/tedious/-/tedious-4.0.14.tgz", + "integrity": "sha512-KHPsfX/FoVbUGbyYvk1q9MMQHLPeRZhRJZdO45Q4YjvFkv4hMNghCWTvy7rdKessBsmtz4euWCWAB6/tVpI1Iw==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/unist": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", + "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", + "license": "MIT" + }, + "node_modules/@types/uuid": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-10.0.0.tgz", + "integrity": "sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ==", + "license": "MIT" + }, + "node_modules/@types/verror": { + "version": "1.10.11", + "resolved": "https://registry.npmjs.org/@types/verror/-/verror-1.10.11.tgz", + "integrity": "sha512-RlDm9K7+o5stv0Co8i8ZRGxDbrTxhJtgjqjFyVh/tXQyl/rYtTKlnTvZ88oSTeYREWurwx20Js4kTuKCsFkUtg==", + "dev": true, + "license": "MIT", + "optional": true + }, + "node_modules/@types/yauzl": { + "version": "2.10.3", + "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.3.tgz", + "integrity": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@xmldom/xmldom": { + "version": "0.8.13", + "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.13.tgz", + "integrity": "sha512-KRYzxepc14G/CEpEGc3Yn+JKaAeT63smlDr+vjB8jRfgTBBI9wRj/nkQEO+ucV8p8I9bfKLWp37uHgFrbntPvw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/7zip-bin": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/7zip-bin/-/7zip-bin-5.2.0.tgz", + "integrity": "sha512-ukTPVhqG4jNzMro2qA9HSCSSVJN3aN7tlb+hfqYCt3ER0yWroeA2VR38MNrOHLQ/cVj+DaIMad0kFCtWWowh/A==", + "dev": true, + "license": "MIT" + }, + "node_modules/abbrev": { + "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": "^20.17.0 || >=22.9.0" + } + }, + "node_modules/acorn": { + "version": "8.16.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz", + "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==", + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-import-attributes": { + "version": "1.9.5", + "resolved": "https://registry.npmjs.org/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz", + "integrity": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==", + "license": "MIT", + "peerDependencies": { + "acorn": "^8" + } + }, + "node_modules/agent-base": { + "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, + "license": "MIT", + "engines": { + "node": ">= 14" + } + }, + "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", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "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, + "license": "MIT", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "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==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "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==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/app-builder-bin": { + "version": "5.0.0-alpha.12", + "resolved": "https://registry.npmjs.org/app-builder-bin/-/app-builder-bin-5.0.0-alpha.12.tgz", + "integrity": "sha512-j87o0j6LqPL3QRr8yid6c+Tt5gC7xNfYo6uQIQkorAC6MpeayVMZrEDzKmJJ/Hlv7EnOQpaRm53k6ktDYZyB6w==", + "dev": true, + "license": "MIT" + }, + "node_modules/app-builder-lib": { + "version": "26.8.1", + "resolved": "https://registry.npmjs.org/app-builder-lib/-/app-builder-lib-26.8.1.tgz", + "integrity": "sha512-p0Im/Dx5C4tmz8QEE1Yn4MkuPC8PrnlRneMhWJj7BBXQfNTJUshM/bp3lusdEsDbvvfJZpXWnYesgSLvwtM2Zw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@develar/schema-utils": "~2.6.5", + "@electron/asar": "3.4.1", + "@electron/fuses": "^1.8.0", + "@electron/get": "^3.0.0", + "@electron/notarize": "2.5.0", + "@electron/osx-sign": "1.3.3", + "@electron/rebuild": "^4.0.3", + "@electron/universal": "2.0.3", + "@malept/flatpak-bundler": "^0.4.0", + "@types/fs-extra": "9.0.13", + "async-exit-hook": "^2.0.1", + "builder-util": "26.8.1", + "builder-util-runtime": "9.5.1", + "chromium-pickle-js": "^0.2.0", + "ci-info": "4.3.1", + "debug": "^4.3.4", + "dotenv": "^16.4.5", + "dotenv-expand": "^11.0.6", + "ejs": "^3.1.8", + "electron-publish": "26.8.1", + "fs-extra": "^10.1.0", + "hosted-git-info": "^4.1.0", + "isbinaryfile": "^5.0.0", + "jiti": "^2.4.2", + "js-yaml": "^4.1.0", + "json5": "^2.2.3", + "lazy-val": "^1.0.5", + "minimatch": "^10.0.3", + "plist": "3.1.0", + "proper-lockfile": "^4.1.2", + "resedit": "^1.7.0", + "semver": "~7.7.3", + "tar": "^7.5.7", + "temp-file": "^3.4.0", + "tiny-async-pool": "1.3.0", + "which": "^5.0.0" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "dmg-builder": "26.8.1", + "electron-builder-squirrel-windows": "26.8.1" + } + }, + "node_modules/app-builder-lib/node_modules/@electron/get": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@electron/get/-/get-3.1.0.tgz", + "integrity": "sha512-F+nKc0xW+kVbBRhFzaMgPy3KwmuNTYX1fx6+FxxoSnNgwYX6LD7AKBTWkU0MQ6IBoe7dz069CNkR673sPAgkCQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.1.1", + "env-paths": "^2.2.0", + "fs-extra": "^8.1.0", + "got": "^11.8.5", + "progress": "^2.0.3", + "semver": "^6.2.0", + "sumchecker": "^3.0.1" + }, + "engines": { + "node": ">=14" + }, + "optionalDependencies": { + "global-agent": "^3.0.0" + } + }, + "node_modules/app-builder-lib/node_modules/@electron/get/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, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/app-builder-lib/node_modules/@electron/get/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/app-builder-lib/node_modules/ci-info": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.3.1.tgz", + "integrity": "sha512-Wdy2Igu8OcBpI2pZePZ5oWjPC38tmDVx5WKUXKwlLYkA0ozo85sLsLvkBbBn/sZaSCMFOGZJ14fvW9t5/d7kdA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/app-builder-lib/node_modules/env-paths": { + "version": "2.2.1", + "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/app-builder-lib/node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "dev": true, + "license": "MIT", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/app-builder-lib/node_modules/semver": { + "version": "7.7.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz", + "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/app-builder-lib/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, + "license": "MIT", + "engines": { + "node": ">= 4.0.0" + } + }, + "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, + "license": "Python-2.0" + }, + "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==", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/async": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.6.tgz", + "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==", + "dev": true, + "license": "MIT" + }, + "node_modules/async-exit-hook": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/async-exit-hook/-/async-exit-hook-2.0.1.tgz", + "integrity": "sha512-NW2cX8m1Q7KPA7a5M2ULQeZ2wR5qI5PAbw5L0UOMxdioVk9PMZ0h1TmyZEkPYrCvYjDlFICusOu1dlEKAAeXBw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "license": "MIT" + }, + "node_modules/at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/axios": { + "version": "1.14.0", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.14.0.tgz", + "integrity": "sha512-3Y8yrqLSwjuzpXuZ0oIYZ/XGgLwUIBU3uLvbcpb0pidD9ctpShJd43KSlEEkVQg6DS0G9NKyzOvBfUtDKEyHvQ==", + "license": "MIT", + "dependencies": { + "follow-redirects": "^1.15.11", + "form-data": "^4.0.5", + "proxy-from-env": "^2.1.0" + } + }, + "node_modules/axios/node_modules/proxy-from-env": { + "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/b4a": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.8.1.tgz", + "integrity": "sha512-aiqre1Nr0B/6DgE2N5vwTc+2/oQZ4Wh1t4NznYY4E00y8LCt6NqdRv81so00oo27D8MVKTpUa/MwUUtBLXCoDw==", + "license": "Apache-2.0", + "peerDependencies": { + "react-native-b4a": "*" + }, + "peerDependenciesMeta": { + "react-native-b4a": { + "optional": true + } + } + }, + "node_modules/bail": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", + "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "license": "MIT" + }, + "node_modules/bare-events": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.8.3.tgz", + "integrity": "sha512-HdUm8EMQBLaJvGUdidNNbqpA1kYkwNcb+MYxkxCLAPJGQzlv9J0C24h8V65Z4c5GLd/JEALDvpFCQgpLJqc0zw==", + "license": "Apache-2.0", + "peerDependencies": { + "bare-abort-controller": "*" + }, + "peerDependenciesMeta": { + "bare-abort-controller": { + "optional": true + } + } + }, + "node_modules/bare-fs": { + "version": "4.7.1", + "resolved": "https://registry.npmjs.org/bare-fs/-/bare-fs-4.7.1.tgz", + "integrity": "sha512-WDRsyVN52eAx/lBamKD6uyw8H4228h/x0sGGGegOamM2cd7Pag88GfMQalobXI+HaEUxpCkbKQUDOQqt9wawRw==", + "license": "Apache-2.0", + "dependencies": { + "bare-events": "^2.5.4", + "bare-path": "^3.0.0", + "bare-stream": "^2.6.4", + "bare-url": "^2.2.2", + "fast-fifo": "^1.3.2" + }, + "engines": { + "bare": ">=1.16.0" + }, + "peerDependencies": { + "bare-buffer": "*" + }, + "peerDependenciesMeta": { + "bare-buffer": { + "optional": true + } + } + }, + "node_modules/bare-os": { + "version": "3.9.1", + "resolved": "https://registry.npmjs.org/bare-os/-/bare-os-3.9.1.tgz", + "integrity": "sha512-6M5XjcnsygQNPMCMPXSK379xrJFiZ/AEMNBmFEmQW8d/789VQATvriyi5r0HYTL9TkQ26rn3kgdTG3aisbrXkQ==", + "license": "Apache-2.0", + "engines": { + "bare": ">=1.14.0" + } + }, + "node_modules/bare-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bare-path/-/bare-path-3.0.0.tgz", + "integrity": "sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==", + "license": "Apache-2.0", + "dependencies": { + "bare-os": "^3.0.1" + } + }, + "node_modules/bare-stream": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/bare-stream/-/bare-stream-2.13.1.tgz", + "integrity": "sha512-Vp0cnjYyrEC4whYTymQ+YZi6pBpfiICZO3cfRG8sy67ZNWe951urv1x4eW1BKNngw3U+3fPYb5JQvHbCtxH7Ow==", + "license": "Apache-2.0", + "dependencies": { + "streamx": "^2.25.0", + "teex": "^1.0.1" + }, + "peerDependencies": { + "bare-abort-controller": "*", + "bare-buffer": "*", + "bare-events": "*" + }, + "peerDependenciesMeta": { + "bare-abort-controller": { + "optional": true + }, + "bare-buffer": { + "optional": true + }, + "bare-events": { + "optional": true + } + } + }, + "node_modules/bare-url": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/bare-url/-/bare-url-2.4.3.tgz", + "integrity": "sha512-Kccpc7ACfXaxfeInfqKcZtW4pT5YBn1mesc4sCsun6sRwtbJ4h+sNOaksUpYEJUKfN65YWC6Bw2OJEFiKxq8nQ==", + "license": "Apache-2.0", + "dependencies": { + "bare-path": "^3.0.0" + } + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/bmp-js": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/bmp-js/-/bmp-js-0.1.0.tgz", + "integrity": "sha512-vHdS19CnY3hwiNdkaqk93DvjVLfbEcI8mys4UjuWrlX1haDmroo8o4xCzh4wD6DGV6HxRCyauwhHRqMTfERtjw==", + "license": "MIT" + }, + "node_modules/boolean": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/boolean/-/boolean-3.2.0.tgz", + "integrity": "sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw==", + "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.", + "dev": true, + "license": "MIT", + "optional": true + }, + "node_modules/brace-expansion": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "optional": true, + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": "*" + } + }, + "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, + "license": "MIT" + }, + "node_modules/builder-util": { + "version": "26.8.1", + "resolved": "https://registry.npmjs.org/builder-util/-/builder-util-26.8.1.tgz", + "integrity": "sha512-pm1lTYbGyc90DHgCDO7eo8Rl4EqKLciayNbZqGziqnH9jrlKe8ZANGdityLZU+pJh16dfzjAx2xQq9McuIPEtw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/debug": "^4.1.6", + "7zip-bin": "~5.2.0", + "app-builder-bin": "5.0.0-alpha.12", + "builder-util-runtime": "9.5.1", + "chalk": "^4.1.2", + "cross-spawn": "^7.0.6", + "debug": "^4.3.4", + "fs-extra": "^10.1.0", + "http-proxy-agent": "^7.0.0", + "https-proxy-agent": "^7.0.0", + "js-yaml": "^4.1.0", + "sanitize-filename": "^1.6.3", + "source-map-support": "^0.5.19", + "stat-mode": "^1.0.0", + "temp-file": "^3.4.0", + "tiny-async-pool": "1.3.0" + } + }, + "node_modules/builder-util-runtime": { + "version": "9.5.1", + "resolved": "https://registry.npmjs.org/builder-util-runtime/-/builder-util-runtime-9.5.1.tgz", + "integrity": "sha512-qt41tMfgHTllhResqM5DcnHyDIWNgzHvuY2jDcYP9iaGpkWxTUzV6GQjDeLnlR1/DtdlcsWQbA7sByMpmJFTLQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.3.4", + "sax": "^1.2.4" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/cacheable-lookup": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", + "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.6.0" + } + }, + "node_modules/cacheable-request": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.4.tgz", + "integrity": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==", + "dev": true, + "license": "MIT", + "dependencies": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^4.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^6.0.1", + "responselike": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "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-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "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, + "license": "MIT", + "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/chownr": { + "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": ">=18" + } + }, + "node_modules/chromium-pickle-js": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz", + "integrity": "sha512-1R5Fho+jBq0DDydt+/vHWj5KJNJCKdARKOCwZUen84I5BreWoLqRLANH1U87eJy1tiASPtMnGqJJq0ZsLoRPOw==", + "dev": true, + "license": "MIT" + }, + "node_modules/ci-info": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.4.0.tgz", + "integrity": "sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/cjs-module-lexer": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-2.2.0.tgz", + "integrity": "sha512-4bHTS2YuzUvtoLjdy+98ykbNB5jS0+07EvFNXerqZQJ89F7DI6ET7OQo/HJuW6K0aVsKA9hj9/RVb2kQVOrPDQ==", + "license": "MIT" + }, + "node_modules/cli-truncate": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", + "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "slice-ansi": "^3.0.0", + "string-width": "^4.2.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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==", + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/clone-response": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", + "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", + "dev": true, + "license": "MIT", + "dependencies": { + "mimic-response": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/combined-stream": { + "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" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", + "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/compare-version": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/compare-version/-/compare-version-0.1.2.tgz", + "integrity": "sha512-pJDh5/4wrEnXX/VWRZvruAGHkzKdr46z11OlTPN+VrATlWWhSKewNCJ1futCO5C7eJB3nPMFZA1LeYtcFboZ2A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "license": "MIT" + }, + "node_modules/content-disposition": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", + "integrity": "sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "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==", + "dev": true, + "license": "MIT", + "optional": true + }, + "node_modules/crc": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/crc/-/crc-3.8.0.tgz", + "integrity": "sha512-iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "buffer": "^5.1.0" + } + }, + "node_modules/cross-dirname": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/cross-dirname/-/cross-dirname-0.1.0.tgz", + "integrity": "sha512-+R08/oI0nl3vfPcqftZRpytksBXDzOUveBq/NBVx0sUp1axwzPQrKinNx5yd5sxPu8j1wIy8AfnVQ+5eFdha6Q==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true + }, + "node_modules/cross-env": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz", + "integrity": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.1" + }, + "bin": { + "cross-env": "src/bin/cross-env.js", + "cross-env-shell": "src/bin/cross-env-shell.js" + }, + "engines": { + "node": ">=10.14", + "npm": ">=6", + "yarn": ">=1" + } + }, + "node_modules/cross-spawn": { + "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", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/cross-spawn/node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, + "license": "ISC" + }, + "node_modules/cross-spawn/node_modules/which": { + "version": "2.0.2", + "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" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/debug": { + "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.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decompress-response": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "mimic-response": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/decompress-response/node_modules/mimic-response": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/defer-to-connect": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", + "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "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==", + "dev": true, + "license": "MIT", + "optional": true, + "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-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dev": true, + "license": "MIT", + "optional": true, + "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/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" + } + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/detect-libc": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz", + "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==", + "license": "Apache-2.0", + "engines": { + "node": ">=8" + } + }, + "node_modules/detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", + "dev": true, + "license": "MIT", + "optional": true + }, + "node_modules/devlop": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz", + "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==", + "license": "MIT", + "dependencies": { + "dequal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/dir-compare": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/dir-compare/-/dir-compare-4.2.0.tgz", + "integrity": "sha512-2xMCmOoMrdQIPHdsTawECdNPwlVFB9zGcz3kuhmBO6U3oU+UQjsue0i8ayLKpgBcm+hcXPMVSGUN9d+pvJ6+VQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "minimatch": "^3.0.5", + "p-limit": "^3.1.0 " + } + }, + "node_modules/dir-compare/node_modules/minimatch": { + "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" + }, + "engines": { + "node": "*" + } + }, + "node_modules/dmg-builder": { + "version": "26.8.1", + "resolved": "https://registry.npmjs.org/dmg-builder/-/dmg-builder-26.8.1.tgz", + "integrity": "sha512-glMJgnTreo8CFINujtAhCgN96QAqApDMZ8Vl1r8f0QT8QprvC1UCltV4CcWj20YoIyLZx6IUskaJZ0NV8fokcg==", + "dev": true, + "license": "MIT", + "dependencies": { + "app-builder-lib": "26.8.1", + "builder-util": "26.8.1", + "fs-extra": "^10.1.0", + "iconv-lite": "^0.6.2", + "js-yaml": "^4.1.0" + }, + "optionalDependencies": { + "dmg-license": "^1.0.11" + } + }, + "node_modules/dmg-license": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/dmg-license/-/dmg-license-1.0.11.tgz", + "integrity": "sha512-ZdzmqwKmECOWJpqefloC5OJy1+WZBBse5+MR88z9g9Zn4VY+WYUkAyojmhzJckH5YbbZGcYIuGAkY5/Ys5OM2Q==", + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "@types/plist": "^3.0.1", + "@types/verror": "^1.10.3", + "ajv": "^6.10.0", + "crc": "^3.8.0", + "iconv-corefoundation": "^1.1.7", + "plist": "^3.0.4", + "smart-buffer": "^4.0.2", + "verror": "^1.10.0" + }, + "bin": { + "dmg-license": "bin/dmg-license.js" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dotenv": { + "version": "16.6.1", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.6.1.tgz", + "integrity": "sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" + } + }, + "node_modules/dotenv-expand": { + "version": "11.0.7", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-11.0.7.tgz", + "integrity": "sha512-zIHwmZPRshsCdpMDyVsqGmgyP0yT8GAgXUnkdAoJisxvf33k7yO6OuoKmcTGuXPWSsm8Oh88nZicRLA9Y0rUeA==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "dotenv": "^16.4.5" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" + } + }, + "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": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "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, + "license": "Apache-2.0", + "dependencies": { + "jake": "^10.8.5" + }, + "bin": { + "ejs": "bin/cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/electron": { + "version": "42.2.0", + "resolved": "https://registry.npmjs.org/electron/-/electron-42.2.0.tgz", + "integrity": "sha512-b2Tc7sIKiZEl0tBVwFM5GJ+FT5KYhmy9QJHjx8BGVZPVW2SctXWEvrE959ElB56qw7H05dBkhlikDA1DmpaAMw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@electron/get": "^5.0.0", + "@types/node": "^24.9.0", + "extract-zip": "^2.0.1" + }, + "bin": { + "electron": "cli.js", + "install-electron": "install.js" + }, + "engines": { + "node": ">= 22.12.0" + } + }, + "node_modules/electron-builder": { + "version": "26.8.1", + "resolved": "https://registry.npmjs.org/electron-builder/-/electron-builder-26.8.1.tgz", + "integrity": "sha512-uWhx1r74NGpCagG0ULs/P9Nqv2nsoo+7eo4fLUOB8L8MdWltq9odW/uuLXMFCDGnPafknYLZgjNX0ZIFRzOQAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "app-builder-lib": "26.8.1", + "builder-util": "26.8.1", + "builder-util-runtime": "9.5.1", + "chalk": "^4.1.2", + "ci-info": "^4.2.0", + "dmg-builder": "26.8.1", + "fs-extra": "^10.1.0", + "lazy-val": "^1.0.5", + "simple-update-notifier": "2.0.0", + "yargs": "^17.6.2" + }, + "bin": { + "electron-builder": "cli.js", + "install-app-deps": "install-app-deps.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/electron-builder-squirrel-windows": { + "version": "26.8.1", + "resolved": "https://registry.npmjs.org/electron-builder-squirrel-windows/-/electron-builder-squirrel-windows-26.8.1.tgz", + "integrity": "sha512-o288fIdgPLHA76eDrFADHPoo7VyGkDCYbLV1GzndaMSAVBoZrGvM9m2IehdcVMzdAZJ2eV9bgyissQXHv5tGzA==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "app-builder-lib": "26.8.1", + "builder-util": "26.8.1", + "electron-winstaller": "5.4.0" + } + }, + "node_modules/electron-publish": { + "version": "26.8.1", + "resolved": "https://registry.npmjs.org/electron-publish/-/electron-publish-26.8.1.tgz", + "integrity": "sha512-q+jrSTIh/Cv4eGZa7oVR+grEJo/FoLMYBAnSL5GCtqwUpr1T+VgKB/dn1pnzxIxqD8S/jP1yilT9VrwCqINR4w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/fs-extra": "^9.0.11", + "builder-util": "26.8.1", + "builder-util-runtime": "9.5.1", + "chalk": "^4.1.2", + "form-data": "^4.0.5", + "fs-extra": "^10.1.0", + "lazy-val": "^1.0.5", + "mime": "^2.5.2" + } + }, + "node_modules/electron-squirrel-startup": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/electron-squirrel-startup/-/electron-squirrel-startup-1.0.1.tgz", + "integrity": "sha512-sTfFIHGku+7PsHLJ7v0dRcZNkALrV+YEozINTW8X1nM//e5O3L+rfYuvSW00lmGHnYmUjARZulD8F2V8ISI9RA==", + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.2.0" + } + }, + "node_modules/electron-squirrel-startup/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" + } + }, + "node_modules/electron-squirrel-startup/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/electron-winstaller": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/electron-winstaller/-/electron-winstaller-5.4.0.tgz", + "integrity": "sha512-bO3y10YikuUwUuDUQRM4KfwNkKhnpVO7IPdbsrejwN9/AABJzzTQ4GeHwyzNSrVO+tEH3/Np255a3sVZpZDjvg==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@electron/asar": "^3.2.1", + "debug": "^4.1.1", + "fs-extra": "^7.0.1", + "lodash": "^4.17.21", + "temp": "^0.9.0" + }, + "engines": { + "node": ">=8.0.0" + }, + "optionalDependencies": { + "@electron/windows-sign": "^1.1.2" + } + }, + "node_modules/electron-winstaller/node_modules/fs-extra": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", + "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/electron-winstaller/node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "dev": true, + "license": "MIT", + "peer": true, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/electron-winstaller/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, + "license": "MIT", + "peer": true, + "engines": { + "node": ">= 4.0.0" + } + }, + "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/end-of-stream": { + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.5.tgz", + "integrity": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==", + "license": "MIT", + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/enhanced-resolve": { + "version": "5.18.4", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.4.tgz", + "integrity": "sha512-LgQMM4WXU3QI+SYgEc2liRgznaD5ojbmY3sb8LxyguVkIg5FxdpTkvk72te2R38/TGKxH634oLxXRGY6d7AP+Q==", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/env-paths": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-3.0.0.tgz", + "integrity": "sha512-dtJUTepzMW3Lm/NPxRf3wP4642UWhjL2sQxc+ym2YMj1m/H2zDNQOlezafzkHwn6sMstjHTwG6iQQsctDW/b1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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, + "license": "MIT" + }, + "node_modules/es-define-property": { + "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" + } + }, + "node_modules/es-errors": { + "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-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "license": "MIT", + "dependencies": { + "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/es6-error": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz", + "integrity": "sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==", + "dev": true, + "license": "MIT", + "optional": true + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "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, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/events-universal": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/events-universal/-/events-universal-1.0.1.tgz", + "integrity": "sha512-LUd5euvbMLpwOF8m6ivPCbhQeSiYVNb8Vs0fQ8QjXo0JTkEHpz8pxdQf0gStltaPpw0Cca8b39KxvK9cfKRiAw==", + "license": "Apache-2.0", + "dependencies": { + "bare-events": "^2.7.0" + } + }, + "node_modules/exponential-backoff": { + "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/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "license": "MIT" + }, + "node_modules/extract-zip": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", + "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "debug": "^4.1.1", + "get-stream": "^5.1.0", + "yauzl": "^2.10.0" + }, + "bin": { + "extract-zip": "cli.js" + }, + "engines": { + "node": ">= 10.17.0" + }, + "optionalDependencies": { + "@types/yauzl": "^2.9.1" + } + }, + "node_modules/extsprintf": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.1.tgz", + "integrity": "sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA==", + "dev": true, + "engines": [ + "node >=0.6.0" + ], + "license": "MIT", + "optional": true + }, + "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==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-fifo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.2.tgz", + "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==", + "license": "MIT" + }, + "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==", + "dev": true, + "license": "MIT" + }, + "node_modules/fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "pend": "~1.2.0" + } + }, + "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, + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/file-type": { + "version": "21.3.4", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-21.3.4.tgz", + "integrity": "sha512-Ievi/yy8DS3ygGvT47PjSfdFoX+2isQueoYP1cntFW1JLYAuS4GD7NUPGg4zv2iZfV52uDyk5w5Z0TdpRS6Q1g==", + "license": "MIT", + "dependencies": { + "@tokenizer/inflate": "^0.4.1", + "strtok3": "^10.3.4", + "token-types": "^6.1.1", + "uint8array-extras": "^1.4.0" + }, + "engines": { + "node": ">=20" + }, + "funding": { + "url": "https://github.com/sindresorhus/file-type?sponsor=1" + } + }, + "node_modules/filelist": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.6.tgz", + "integrity": "sha512-5giy2PkLYY1cP39p17Ech+2xlpTRL9HLspOfEgm0L6CwBXBTgsK5ou0JtzYuepxkaQ/tvhCFIJ5uXo0OrM2DxA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "minimatch": "^5.0.1" + } + }, + "node_modules/filelist/node_modules/brace-expansion": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.1.0.tgz", + "integrity": "sha512-TN1kCZAgdgweJhWWpgKYrQaMNHcDULHkWwQIspdtjV4Y5aurRdZpjAqn6yX3FPqTA9ngHCc4hJxMAMgGfve85w==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/filelist/node_modules/minimatch": { + "version": "5.1.9", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.9.tgz", + "integrity": "sha512-7o1wEA2RyMP7Iu7GNba9vc0RWWGACJOCZBJX2GJWip0ikV+wcOsgVuY9uE8CPiyQhkGFSlhuSkZPavN7u1c2Fw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/follow-redirects": { + "version": "1.15.11", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz", + "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "license": "MIT", + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/form-data": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz", + "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==", + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/forwarded-parse": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/forwarded-parse/-/forwarded-parse-2.1.2.tgz", + "integrity": "sha512-alTFZZQDKMporBH77856pXgzhEzaUVmLCDk+egLgIgHst3Tpndzz8MnKe+GzRJRfvVdn69HhpW7cmXzvtLvJAw==", + "license": "MIT" + }, + "node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true, + "license": "ISC" + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-caller-file": { + "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-intrinsic": { + "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", + "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" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "license": "MIT", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "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", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob/node_modules/minimatch": { + "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" + }, + "engines": { + "node": "*" + } + }, + "node_modules/global-agent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-agent/-/global-agent-3.0.0.tgz", + "integrity": "sha512-PT6XReJ+D07JvGoxQMkT6qji/jVNfX/h364XHZOWeRzy64sSFr+xJ5OX7LI3b4MPQzdL4H8Y8M0xzPpsVMwA8Q==", + "dev": true, + "license": "BSD-3-Clause", + "optional": true, + "dependencies": { + "boolean": "^3.0.1", + "es6-error": "^4.1.1", + "matcher": "^3.0.0", + "roarr": "^2.15.3", + "semver": "^7.3.2", + "serialize-error": "^7.0.1" + }, + "engines": { + "node": ">=10.0" + } + }, + "node_modules/globalthis": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "define-properties": "^1.2.1", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gopd": { + "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" + } + }, + "node_modules/got": { + "version": "11.8.6", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.6.tgz", + "integrity": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + }, + "engines": { + "node": ">=10.19.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/got?sponsor=1" + } + }, + "node_modules/graceful-fs": { + "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==", + "license": "ISC" + }, + "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, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "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==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "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" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "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" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/hosted-git-info": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", + "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", + "dev": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/http-cache-semantics": { + "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-proxy-agent": { + "version": "7.0.2", + "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" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/http2-wrapper": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", + "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", + "dev": true, + "license": "MIT", + "dependencies": { + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.0.0" + }, + "engines": { + "node": ">=10.19.0" + } + }, + "node_modules/https-proxy-agent": { + "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.1.2", + "debug": "4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/iconv-corefoundation": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/iconv-corefoundation/-/iconv-corefoundation-1.1.7.tgz", + "integrity": "sha512-T10qvkw0zz4wnm560lOEg0PovVqUXuOFhhHAkixw8/sycy7TJt7v/RrkEKEQnAw2viPSJu6iAkErxnzR0g8PpQ==", + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "cli-truncate": "^2.1.0", + "node-addon-api": "^1.6.3" + }, + "engines": { + "node": "^8.11.2 || >=10" + } + }, + "node_modules/iconv-corefoundation/node_modules/node-addon-api": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-1.7.2.tgz", + "integrity": "sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg==", + "dev": true, + "license": "MIT", + "optional": true + }, + "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, + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/idb-keyval": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/idb-keyval/-/idb-keyval-6.2.2.tgz", + "integrity": "sha512-yjD9nARJ/jb1g+CvD0tlhUHOrJ9Sy0P8T9MF3YaLlHnSRpwPfpTX0XIvpmw3gAJUmEu3FiICLBDPXVwyEvrleg==", + "license": "Apache-2.0" + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "BSD-3-Clause" + }, + "node_modules/import-in-the-middle": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/import-in-the-middle/-/import-in-the-middle-2.0.6.tgz", + "integrity": "sha512-3vZV3jX0XRFW3EJDTwzWoZa+RH1b8eTTx6YOCjglrLyPuepwoBti1k3L2dKwdCUrnVEfc5CuRuGstaC/uQJJaw==", + "license": "Apache-2.0", + "dependencies": { + "acorn": "^8.15.0", + "acorn-import-attributes": "^1.9.5", + "cjs-module-lexer": "^2.2.0", + "module-details-from-path": "^1.0.4" + } + }, + "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" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "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==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-plain-obj": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", + "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-url": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/is-url/-/is-url-1.2.4.tgz", + "integrity": "sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==", + "license": "MIT" + }, + "node_modules/isbinaryfile": { + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-5.0.7.tgz", + "integrity": "sha512-gnWD14Jh3FzS3CPhF0AxNOJ8CxqeblPTADzI38r0wt8ZyQl5edpy75myt08EG2oKvpyiqSqsx+Wkz9vtkbTqYQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 18.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/gjtorikian/" + } + }, + "node_modules/isexe": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.5.tgz", + "integrity": "sha512-6B3tLtFqtQS4ekarvLVMZ+X+VlvQekbe4taUkf/rhVO3d/h0M2rfARm/pXLcPEsjjMsFgrFgSrhQIxcSVrBz8w==", + "dev": true, + "license": "BlueOak-1.0.0", + "engines": { + "node": ">=18" + } + }, + "node_modules/jake": { + "version": "10.9.4", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.9.4.tgz", + "integrity": "sha512-wpHYzhxiVQL+IV05BLE2Xn34zW1S223hvjtqk0+gsPrwd/8JNLXJgZZM/iPFsYc1xyphF+6M6EvdE5E9MBGkDA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "async": "^3.2.6", + "filelist": "^1.0.4", + "picocolors": "^1.1.1" + }, + "bin": { + "jake": "bin/cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jiti": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz", + "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==", + "license": "MIT", + "bin": { + "jiti": "lib/jiti-cli.mjs" + } + }, + "node_modules/js-yaml": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz", + "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "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, + "license": "MIT" + }, + "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, + "license": "MIT" + }, + "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": "ISC", + "optional": true + }, + "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" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.1.tgz", + "integrity": "sha512-zwOTdL3rFQ/lRdBnntKVOX6k5cKJwEc1HdilT71BWEu7J41gXIB2MRp+vxduPSwZJPWBxEzv4yH1wYLJGUHX4Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/keyv": { + "version": "4.5.4", + "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" + } + }, + "node_modules/lazy-val": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/lazy-val/-/lazy-val-1.0.5.tgz", + "integrity": "sha512-0/BnGCCfyUMkBpeDgWihanIAF9JmZhHBgUhEqzvf+adhNGLoP6TaiI5oF8oyb3I45P+PcnrqihSf01M0l0G5+Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/lightningcss": { + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.30.2.tgz", + "integrity": "sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==", + "license": "MPL-2.0", + "dependencies": { + "detect-libc": "^2.0.3" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "lightningcss-android-arm64": "1.30.2", + "lightningcss-darwin-arm64": "1.30.2", + "lightningcss-darwin-x64": "1.30.2", + "lightningcss-freebsd-x64": "1.30.2", + "lightningcss-linux-arm-gnueabihf": "1.30.2", + "lightningcss-linux-arm64-gnu": "1.30.2", + "lightningcss-linux-arm64-musl": "1.30.2", + "lightningcss-linux-x64-gnu": "1.30.2", + "lightningcss-linux-x64-musl": "1.30.2", + "lightningcss-win32-arm64-msvc": "1.30.2", + "lightningcss-win32-x64-msvc": "1.30.2" + } + }, + "node_modules/lightningcss-android-arm64": { + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.30.2.tgz", + "integrity": "sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A==", + "cpu": [ + "arm64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-darwin-arm64": { + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.30.2.tgz", + "integrity": "sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==", + "cpu": [ + "arm64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-darwin-x64": { + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.30.2.tgz", + "integrity": "sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==", + "cpu": [ + "x64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-freebsd-x64": { + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.30.2.tgz", + "integrity": "sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==", + "cpu": [ + "x64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm-gnueabihf": { + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.30.2.tgz", + "integrity": "sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==", + "cpu": [ + "arm" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm64-gnu": { + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.30.2.tgz", + "integrity": "sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==", + "cpu": [ + "arm64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm64-musl": { + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.30.2.tgz", + "integrity": "sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==", + "cpu": [ + "arm64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-x64-gnu": { + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.30.2.tgz", + "integrity": "sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==", + "cpu": [ + "x64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-x64-musl": { + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.30.2.tgz", + "integrity": "sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==", + "cpu": [ + "x64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-win32-arm64-msvc": { + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.30.2.tgz", + "integrity": "sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==", + "cpu": [ + "arm64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-win32-x64-msvc": { + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.30.2.tgz", + "integrity": "sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==", + "cpu": [ + "x64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lodash": { + "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/lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/magic-string": { + "version": "0.30.21", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz", + "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.5" + } + }, + "node_modules/matcher": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/matcher/-/matcher-3.0.0.tgz", + "integrity": "sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "escape-string-regexp": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "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/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" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "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/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/mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/minimatch": { + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.1.1.tgz", + "integrity": "sha512-enIvLvRAFZYXJzkCYG5RKmPfrFArdLv+R+lbQ53BmIMLIry74bjKzX6iHAm8WYamJkhSSEabrWN5D97XnKObjQ==", + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/brace-expansion": "^5.0.0" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "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.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" + } + }, + "node_modules/minizlib": { + "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": "^7.1.2" + }, + "engines": { + "node": ">= 18" + } + }, + "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", + "peer": true, + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/module-details-from-path": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/module-details-from-path/-/module-details-from-path-1.0.4.tgz", + "integrity": "sha512-EGWKgxALGMgzvxYF1UyGTy0HXX/2vHLkw6+NvDKW2jypWbHpjQuj4UMcqQWXHERJhVGKikolT06G3bcKe4fi7w==", + "license": "MIT" + }, + "node_modules/mri": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", + "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "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==", + "license": "MIT" + }, + "node_modules/node-abi": { + "version": "4.31.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-4.31.0.tgz", + "integrity": "sha512-Erq5w/t3syw3s4sDsUaX4QttIdBPsGKTT1DTRsCkTonGggczhlDKm/wDX3o+HPJpQ41EjXCbcmXf0tgr5YZJXw==", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^7.6.3" + }, + "engines": { + "node": ">=22.12.0" + } + }, + "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==", + "license": "MIT" + }, + "node_modules/node-api-version": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/node-api-version/-/node-api-version-0.2.1.tgz", + "integrity": "sha512-2xP/IGGMmmSQpI1+O/k72jF/ykvZ89JeuKX3TLJAYPDVLUalrshrLHkeVcCCZqG/eEa635cr8IBYzgnDvM2O8Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^7.3.5" + } + }, + "node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "license": "MIT", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/node-gyp": { + "version": "12.3.0", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-12.3.0.tgz", + "integrity": "sha512-QNcUWM+HgJplcPzBvFBZ9VXacyGZ4+VTOb80PwWR+TlVzoHbRKULNEzpRsnaoxG3Wzr7Qh7BYxGDU3CbKib2Yg==", + "dev": true, + "license": "MIT", + "dependencies": { + "env-paths": "^2.2.0", + "exponential-backoff": "^3.1.1", + "graceful-fs": "^4.2.6", + "nopt": "^9.0.0", + "proc-log": "^6.0.0", + "semver": "^7.3.5", + "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": "^20.17.0 || >=22.9.0" + } + }, + "node_modules/node-gyp/node_modules/env-paths": { + "version": "2.2.1", + "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/node-gyp/node_modules/isexe": { + "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": ">=20" + } + }, + "node_modules/node-gyp/node_modules/undici": { + "version": "6.25.0", + "resolved": "https://registry.npmjs.org/undici/-/undici-6.25.0.tgz", + "integrity": "sha512-ZgpWDC5gmNiuY9CnLVXEH8rl50xhRCuLNA97fAUnKi8RRuV4E6KG31pDTsLVUKnohJE0I3XDrTeEydAXRw47xg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.17" + } + }, + "node_modules/node-gyp/node_modules/which": { + "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": "^4.0.0" + }, + "bin": { + "node-which": "bin/which.js" + }, + "engines": { + "node": "^20.17.0 || >=22.9.0" + } + }, + "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": "^20.17.0 || >=22.9.0" + } + }, + "node_modules/normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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==", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/opencollective-postinstall": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/opencollective-postinstall/-/opencollective-postinstall-2.0.3.tgz", + "integrity": "sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q==", + "license": "MIT", + "bin": { + "opencollective-postinstall": "index.js" + } + }, + "node_modules/p-cancelable": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz", + "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "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" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "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==", + "license": "(WTFPL OR MIT)" + }, + "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" + } + }, + "node_modules/path-to-regexp": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-3.3.0.tgz", + "integrity": "sha512-qyCH421YQPS2WFDxDjftfc1ZR5WKQzVzqsp4n9M2kQhVOo/ByahFoUNJfl58kOcEGfQ//7weFTDhm+ss8Ecxgw==", + "license": "MIT" + }, + "node_modules/pe-library": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/pe-library/-/pe-library-0.4.1.tgz", + "integrity": "sha512-eRWB5LBz7PpDu4PUlwT0PhnQfTQJlDDdPa35urV4Osrm0t0AqQFGn+UIkU3klZvwJ8KPO3VbBFsXquA6p6kqZw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12", + "npm": ">=6" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/jet2jet" + } + }, + "node_modules/pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", + "dev": true, + "license": "MIT" + }, + "node_modules/pg-int8": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/pg-int8/-/pg-int8-1.0.1.tgz", + "integrity": "sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==", + "license": "ISC", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/pg-protocol": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/pg-protocol/-/pg-protocol-1.13.0.tgz", + "integrity": "sha512-zzdvXfS6v89r6v7OcFCHfHlyG/wvry1ALxZo4LqgUoy7W9xhBDMaqOuMiF3qEV45VqsN6rdlcehHrfDtlCPc8w==", + "license": "MIT" + }, + "node_modules/pg-types": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/pg-types/-/pg-types-2.2.0.tgz", + "integrity": "sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==", + "license": "MIT", + "dependencies": { + "pg-int8": "1.0.1", + "postgres-array": "~2.0.0", + "postgres-bytea": "~1.0.0", + "postgres-date": "~1.0.4", + "postgres-interval": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz", + "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/plist": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/plist/-/plist-3.1.0.tgz", + "integrity": "sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@xmldom/xmldom": "^0.8.8", + "base64-js": "^1.5.1", + "xmlbuilder": "^15.1.1" + }, + "engines": { + "node": ">=10.4.0" + } + }, + "node_modules/postgres-array": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postgres-array/-/postgres-array-2.0.0.tgz", + "integrity": "sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/postgres-bytea": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-1.0.1.tgz", + "integrity": "sha512-5+5HqXnsZPE65IJZSMkZtURARZelel2oXUEO8rH83VS/hxH5vv1uHquPg5wZs8yMAfdv971IU+kcPUczi7NVBQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postgres-date": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/postgres-date/-/postgres-date-1.0.7.tgz", + "integrity": "sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postgres-interval": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/postgres-interval/-/postgres-interval-1.2.0.tgz", + "integrity": "sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==", + "license": "MIT", + "dependencies": { + "xtend": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postject": { + "version": "1.0.0-alpha.6", + "resolved": "https://registry.npmjs.org/postject/-/postject-1.0.0-alpha.6.tgz", + "integrity": "sha512-b9Eb8h2eVqNE8edvKdwqkrY6O7kAwmI8kcnBv1NScolYJbo59XUF0noFq+lxbC1yN20bmC0WBEbDC5H/7ASb0A==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "commander": "^9.4.0" + }, + "bin": { + "postject": "dist/cli.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/postject/node_modules/commander": { + "version": "9.5.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", + "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "engines": { + "node": "^12.20.0 || >=14" + } + }, + "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/progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "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==", + "dev": true, + "license": "MIT", + "dependencies": { + "err-code": "^2.0.2", + "retry": "^0.12.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/proper-lockfile": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/proper-lockfile/-/proper-lockfile-4.1.2.tgz", + "integrity": "sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.4", + "retry": "^0.12.0", + "signal-exit": "^3.0.2" + } + }, + "node_modules/pump": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.3.tgz", + "integrity": "sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==", + "license": "MIT", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "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" + } + }, + "node_modules/quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/range-parser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz", + "integrity": "sha512-kA5WQoNVo4t9lNx2kQNFCxKeBl5IbbSNBl1M/tLkw9WCn+hxNBAW5Qh8gdhs63CJnhjJ2zQWFoqPJP2sK1AV5A==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/read-binary-file-arch": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/read-binary-file-arch/-/read-binary-file-arch-1.0.6.tgz", + "integrity": "sha512-BNg9EN3DD3GsDXX7Aa8O4p92sryjkmzYYgmgTAc6CA4uGLEDzFfxOxugu21akOxpcXHiEgsYkC6nPsQvLLLmEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.3.4" + }, + "bin": { + "read-binary-file-arch": "cli.js" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", + "license": "MIT" + }, + "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" + } + }, + "node_modules/require-in-the-middle": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/require-in-the-middle/-/require-in-the-middle-8.0.1.tgz", + "integrity": "sha512-QT7FVMXfWOYFbeRBF6nu+I6tr2Tf3u0q8RIEjNob/heKY/nh7drD/k7eeMFmSQgnTtCzLDcCu/XEnpW2wk4xCQ==", + "license": "MIT", + "dependencies": { + "debug": "^4.3.5", + "module-details-from-path": "^1.0.3" + }, + "engines": { + "node": ">=9.3.0 || >=8.10.0 <9.0.0" + } + }, + "node_modules/resedit": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/resedit/-/resedit-1.7.2.tgz", + "integrity": "sha512-vHjcY2MlAITJhC0eRD/Vv8Vlgmu9Sd3LX9zZvtGzU5ZImdTN3+d6e/4mnTyV8vEbyf1sgNIrWxhWlrys52OkEA==", + "dev": true, + "license": "MIT", + "dependencies": { + "pe-library": "^0.4.1" + }, + "engines": { + "node": ">=12", + "npm": ">=6" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/jet2jet" + } + }, + "node_modules/resolve-alpn": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", + "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==", + "dev": true, + "license": "MIT" + }, + "node_modules/responselike": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz", + "integrity": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==", + "dev": true, + "license": "MIT", + "dependencies": { + "lowercase-keys": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/rimraf": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "dev": true, + "license": "ISC", + "peer": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/roarr": { + "version": "2.15.4", + "resolved": "https://registry.npmjs.org/roarr/-/roarr-2.15.4.tgz", + "integrity": "sha512-CHhPh+UNHD2GTXNYhPWLnU8ONHdI+5DI+4EYIAOaiD63rHeYlZvyh8P+in5999TTSFgUYuKUAjzRI4mdh/p+2A==", + "dev": true, + "license": "BSD-3-Clause", + "optional": true, + "dependencies": { + "boolean": "^3.0.1", + "detect-node": "^2.0.4", + "globalthis": "^1.0.1", + "json-stringify-safe": "^5.0.1", + "semver-compare": "^1.0.0", + "sprintf-js": "^1.1.2" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true, + "license": "MIT" + }, + "node_modules/sanitize-filename": { + "version": "1.6.4", + "resolved": "https://registry.npmjs.org/sanitize-filename/-/sanitize-filename-1.6.4.tgz", + "integrity": "sha512-9ZyI08PsvdQl2r/bBIGubpVdR3RR9sY6RDiWFPreA21C/EFlQhmgo20UZlNjZMMZNubusLhAQozkA0Od5J21Eg==", + "dev": true, + "license": "WTFPL OR ISC", + "dependencies": { + "truncate-utf8-bytes": "^1.0.0" + } + }, + "node_modules/sax": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.6.0.tgz", + "integrity": "sha512-6R3J5M4AcbtLUdZmRv2SygeVaM7IhrLXu9BmnOGmmACak8fiUtOsYNWUS4uK7upbmHIBbLBeFeI//477BKLBzA==", + "dev": true, + "license": "BlueOak-1.0.0", + "engines": { + "node": ">=11.0.0" + } + }, + "node_modules/semver": { + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.8.0.tgz", + "integrity": "sha512-AcM7dV/5ul4EekoQ29Agm5vri8JNqRyj39o0qpX6vDF2GZrtutZl5RwgD1XnZjiTAfncsJhMI48QQH3sN87YNA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver-compare": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz", + "integrity": "sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==", + "dev": true, + "license": "MIT", + "optional": true + }, + "node_modules/serialize-error": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-7.0.1.tgz", + "integrity": "sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "type-fest": "^0.13.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/serve-handler": { + "version": "6.1.6", + "resolved": "https://registry.npmjs.org/serve-handler/-/serve-handler-6.1.6.tgz", + "integrity": "sha512-x5RL9Y2p5+Sh3D38Fh9i/iQ5ZK+e4xuXRd/pGbM4D13tgo/MGwbttUk8emytcr1YYzBYs+apnUngBDFYfpjPuQ==", + "license": "MIT", + "dependencies": { + "bytes": "3.0.0", + "content-disposition": "0.5.2", + "mime-types": "2.1.18", + "minimatch": "3.1.2", + "path-is-inside": "1.0.2", + "path-to-regexp": "3.3.0", + "range-parser": "1.2.0" + } + }, + "node_modules/serve-handler/node_modules/mime-db": { + "version": "1.33.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz", + "integrity": "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-handler/node_modules/mime-types": { + "version": "2.1.18", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz", + "integrity": "sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==", + "license": "MIT", + "dependencies": { + "mime-db": "~1.33.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-handler/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/sharp": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.34.5.tgz", + "integrity": "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==", + "hasInstallScript": true, + "license": "Apache-2.0", + "dependencies": { + "@img/colour": "^1.0.0", + "detect-libc": "^2.1.2", + "semver": "^7.7.3" + }, + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-darwin-arm64": "0.34.5", + "@img/sharp-darwin-x64": "0.34.5", + "@img/sharp-libvips-darwin-arm64": "1.2.4", + "@img/sharp-libvips-darwin-x64": "1.2.4", + "@img/sharp-libvips-linux-arm": "1.2.4", + "@img/sharp-libvips-linux-arm64": "1.2.4", + "@img/sharp-libvips-linux-ppc64": "1.2.4", + "@img/sharp-libvips-linux-riscv64": "1.2.4", + "@img/sharp-libvips-linux-s390x": "1.2.4", + "@img/sharp-libvips-linux-x64": "1.2.4", + "@img/sharp-libvips-linuxmusl-arm64": "1.2.4", + "@img/sharp-libvips-linuxmusl-x64": "1.2.4", + "@img/sharp-linux-arm": "0.34.5", + "@img/sharp-linux-arm64": "0.34.5", + "@img/sharp-linux-ppc64": "0.34.5", + "@img/sharp-linux-riscv64": "0.34.5", + "@img/sharp-linux-s390x": "0.34.5", + "@img/sharp-linux-x64": "0.34.5", + "@img/sharp-linuxmusl-arm64": "0.34.5", + "@img/sharp-linuxmusl-x64": "0.34.5", + "@img/sharp-wasm32": "0.34.5", + "@img/sharp-win32-arm64": "0.34.5", + "@img/sharp-win32-ia32": "0.34.5", + "@img/sharp-win32-x64": "0.34.5" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "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" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "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/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, + "license": "ISC" + }, + "node_modules/simple-update-notifier": { + "version": "2.0.0", + "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" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/slice-ansi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", + "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "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", + "optional": true, + "engines": { + "node": ">= 6.0.0", + "npm": ">= 3.0.0" + } + }, + "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/source-map-js": { + "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==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "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" + } + }, + "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, + "license": "BSD-3-Clause", + "optional": true + }, + "node_modules/stat-mode": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/stat-mode/-/stat-mode-1.0.0.tgz", + "integrity": "sha512-jH9EhtKIjuXZ2cWxmXS8ZP80XyC3iasQxMDV8jzhNJpfDb7VbQLVW4Wvsxz9QZvzV+G4YoSfBUVKDOyxLzi/sg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/streamx": { + "version": "2.25.0", + "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.25.0.tgz", + "integrity": "sha512-0nQuG6jf1w+wddNEEXCF4nTg3LtufWINB5eFEN+5TNZW7KWJp6x87+JFL43vaAUPyCfH1wID+mNVyW6OHtFamg==", + "license": "MIT", + "dependencies": { + "events-universal": "^1.0.0", + "fast-fifo": "^1.3.2", + "text-decoder": "^1.1.0" + } + }, + "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/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" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strtok3": { + "version": "10.3.5", + "resolved": "https://registry.npmjs.org/strtok3/-/strtok3-10.3.5.tgz", + "integrity": "sha512-ki4hZQfh5rX0QDLLkOCj+h+CVNkqmp/CMf8v8kZpkNVK6jGQooMytqzLZYUVYIZcFZ6yDB70EfD8POcFXiF5oA==", + "license": "MIT", + "dependencies": { + "@tokenizer/token": "^0.3.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/sumchecker": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/sumchecker/-/sumchecker-3.0.1.tgz", + "integrity": "sha512-MvjXzkz/BOfyVDkG0oFOtBxHX2u3gKbMHIF/dXblZsgD3BWOFLmHovIpZY7BykJdAjcqRCBi1WYBNdEC9yI7vg==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0" + }, + "engines": { + "node": ">= 8.0" + } + }, + "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, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tailwindcss": { + "version": "4.1.18", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.1.18.tgz", + "integrity": "sha512-4+Z+0yiYyEtUVCScyfHCxOYP06L5Ne+JiHhY2IjR2KWMIWhJOYZKLSGZaP5HkZ8+bY0cxfzwDE5uOmzFXyIwxw==", + "license": "MIT" + }, + "node_modules/tapable": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.0.tgz", + "integrity": "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==", + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/tar": { + "version": "7.5.15", + "resolved": "https://registry.npmjs.org/tar/-/tar-7.5.15.tgz", + "integrity": "sha512-dzGK0boVlC4W5QFuQN1EFSl3bIDYsk7Tj40U6eIBnK2k/8ml7TZ5agbI5j5+qnoVcAA+rNtBml8SEiLxZpNqRQ==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/fs-minipass": "^4.0.0", + "chownr": "^3.0.0", + "minipass": "^7.1.2", + "minizlib": "^3.1.0", + "yallist": "^5.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/tar-fs": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.1.2.tgz", + "integrity": "sha512-QGxxTxxyleAdyM3kpFs14ymbYmNFrfY+pHj7Z8FgtbZ7w2//VAgLMac7sT6nRpIHjppXO2AwwEOg0bPFVRcmXw==", + "license": "MIT", + "dependencies": { + "pump": "^3.0.0", + "tar-stream": "^3.1.5" + }, + "optionalDependencies": { + "bare-fs": "^4.0.1", + "bare-path": "^3.0.0" + } + }, + "node_modules/tar-stream": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.2.0.tgz", + "integrity": "sha512-ojzvCvVaNp6aOTFmG7jaRD0meowIAuPc3cMMhSgKiVWws1GyHbGd/xvnyuRKcKlMpt3qvxx6r0hreCNITP9hIg==", + "license": "MIT", + "dependencies": { + "b4a": "^1.6.4", + "bare-fs": "^4.5.5", + "fast-fifo": "^1.2.0", + "streamx": "^2.15.0" + } + }, + "node_modules/tar/node_modules/yallist": { + "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/teex": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/teex/-/teex-1.0.1.tgz", + "integrity": "sha512-eYE6iEI62Ni1H8oIa7KlDU6uQBtqr4Eajni3wX7rpfXD8ysFx8z0+dri+KWEPWpBsxXfxu58x/0jvTVT1ekOSg==", + "license": "MIT", + "dependencies": { + "streamx": "^2.12.5" + } + }, + "node_modules/temp": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/temp/-/temp-0.9.4.tgz", + "integrity": "sha512-yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "mkdirp": "^0.5.1", + "rimraf": "~2.6.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/temp-file": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/temp-file/-/temp-file-3.4.0.tgz", + "integrity": "sha512-C5tjlC/HCtVUOi3KWVokd4vHVViOmGjtLwIh4MuzPo/nMYTV/p1urt3RnMz2IWXDdKEGJH3k5+KPxtqRsUYGtg==", + "dev": true, + "license": "MIT", + "dependencies": { + "async-exit-hook": "^2.0.1", + "fs-extra": "^10.0.0" + } + }, + "node_modules/tesseract.js": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/tesseract.js/-/tesseract.js-7.0.0.tgz", + "integrity": "sha512-exPBkd+z+wM1BuMkx/Bjv43OeLBxhL5kKWsz/9JY+DXcXdiBjiAch0V49QR3oAJqCaL5qURE0vx9Eo+G5YE7mA==", + "hasInstallScript": true, + "license": "Apache-2.0", + "dependencies": { + "bmp-js": "^0.1.0", + "idb-keyval": "^6.2.0", + "is-url": "^1.2.4", + "node-fetch": "^2.6.9", + "opencollective-postinstall": "^2.0.3", + "regenerator-runtime": "^0.13.3", + "tesseract.js-core": "^7.0.0", + "wasm-feature-detect": "^1.8.0", + "zlibjs": "^0.3.1" + } + }, + "node_modules/tesseract.js-core": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/tesseract.js-core/-/tesseract.js-core-7.0.0.tgz", + "integrity": "sha512-WnNH518NzmbSq9zgTPeoF8c+xmilS8rFIl1YKbk/ptuuc7p6cLNELNuPAzcmsYw450ca6bLa8j3t0VAtq435Vw==", + "license": "Apache-2.0" + }, + "node_modules/text-decoder": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.2.7.tgz", + "integrity": "sha512-vlLytXkeP4xvEq2otHeJfSQIRyWxo/oZGEbXrtEEF9Hnmrdly59sUbzZ/QgyWuLYHctCHxFF4tRQZNQ9k60ExQ==", + "license": "Apache-2.0", + "dependencies": { + "b4a": "^1.6.4" + } + }, + "node_modules/tiny-async-pool": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/tiny-async-pool/-/tiny-async-pool-1.3.0.tgz", + "integrity": "sha512-01EAw5EDrcVrdgyCLgoSPvqznC0sVxDSVeiOz09FUpjh71G79VCqneOr+xvt7T1r76CF6ZZfPjHorN2+d+3mqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^5.5.0" + } + }, + "node_modules/tiny-async-pool/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, + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/tinyglobby": { + "version": "0.2.16", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.16.tgz", + "integrity": "sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==", + "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/tmp": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.5.tgz", + "integrity": "sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.14" + } + }, + "node_modules/tmp-promise": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/tmp-promise/-/tmp-promise-3.0.3.tgz", + "integrity": "sha512-RwM7MoPojPxsOBYnyd2hy0bxtIlVrihNs9pj5SUvY8Zz1sQcQG2tG1hSr8PDxfgEB8RNKDhqbIlroIarSNDNsQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "tmp": "^0.2.0" + } + }, + "node_modules/token-types": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/token-types/-/token-types-6.1.2.tgz", + "integrity": "sha512-dRXchy+C0IgK8WPC6xvCHFRIWYUbqqdEIKPaKo/AcTUNzwLTK6AH7RjdLWsEZcAN/TBdtfUw3PYEgPr5VPr6ww==", + "license": "MIT", + "dependencies": { + "@borewit/text-codec": "^0.2.1", + "@tokenizer/token": "^0.3.0", + "ieee754": "^1.2.1" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "license": "MIT" + }, + "node_modules/tree-kill": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", + "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", + "license": "MIT", + "bin": { + "tree-kill": "cli.js" + } + }, + "node_modules/trough": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz", + "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/truncate-utf8-bytes": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz", + "integrity": "sha512-95Pu1QXQvruGEhv62XCMO3Mm90GscOCClvrIUwCM0PYOXK3kaF3l3sIHxx71ThJfcbM2O5Au6SO3AWCSEfW4mQ==", + "dev": true, + "license": "WTFPL", + "dependencies": { + "utf8-byte-length": "^1.0.1" + } + }, + "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", + "optional": true + }, + "node_modules/type-fest": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz", + "integrity": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==", + "dev": true, + "license": "(MIT OR CC0-1.0)", + "optional": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typescript": { + "version": "5.9.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/uint8array-extras": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/uint8array-extras/-/uint8array-extras-1.5.0.tgz", + "integrity": "sha512-rvKSBiC5zqCCiDZ9kAOszZcDvdAHwwIKJG33Ykj43OKcWsnmcBRL09YTU4nOeHZ8Y2a7l1MgTd08SBe9A8Qj6A==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/undici": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/undici/-/undici-7.25.0.tgz", + "integrity": "sha512-xXnp4kTyor2Zq+J1FfPI6Eq3ew5h6Vl0F/8d9XU5zZQf1tX9s2Su1/3PiMmUANFULpmksxkClamIZcaUqryHsQ==", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=20.18.1" + } + }, + "node_modules/undici-types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "license": "MIT" + }, + "node_modules/unified": { + "version": "11.0.5", + "resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz", + "integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "bail": "^2.0.0", + "devlop": "^1.0.0", + "extend": "^3.0.0", + "is-plain-obj": "^4.0.0", + "trough": "^2.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-stringify-position": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", + "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/uri-js": { + "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" + } + }, + "node_modules/utf8-byte-length": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/utf8-byte-length/-/utf8-byte-length-1.0.5.tgz", + "integrity": "sha512-Xn0w3MtiQ6zoz2vFyUVruaCL53O/DwUvkEeOvj+uulMm0BkUGYWmBYVyElqZaSLhY6ZD0ulfU3aBra2aVT4xfA==", + "dev": true, + "license": "(WTFPL OR MIT)" + }, + "node_modules/uuid": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-13.0.0.tgz", + "integrity": "sha512-XQegIaBTVUjSHliKqcnFqYypAd4S+WCYt5NIeRs6w/UAry7z8Y9j5ZwRRL4kzq9U3sD6v+85er9FvkEaBpji2w==", + "funding": [ + "https://github.com/sponsors/broofa", + "https://github.com/sponsors/ctavan" + ], + "license": "MIT", + "bin": { + "uuid": "dist-node/bin/uuid" + } + }, + "node_modules/verror": { + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.1.tgz", + "integrity": "sha512-veufcmxri4e3XSrT0xwfUR7kguIkaxBeosDg00yDWhk49wdwkSUrvvsm7nc75e1PUyvIeZj6nS8VQRYz2/S4Xg==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/vfile": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz", + "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-message": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz", + "integrity": "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-stringify-position": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/wasm-feature-detect": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/wasm-feature-detect/-/wasm-feature-detect-1.8.0.tgz", + "integrity": "sha512-zksaLKM2fVlnB5jQQDqKXXwYHLQUVH9es+5TOOHwGOVJOCeRBCiPjwSg+3tN2AdTCzjgli4jijCH290kXb/zWQ==", + "license": "Apache-2.0" + }, + "node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "license": "BSD-2-Clause" + }, + "node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "license": "MIT", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/which": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/which/-/which-5.0.0.tgz", + "integrity": "sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^3.1.1" + }, + "bin": { + "node-which": "bin/which.js" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "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==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "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==", + "license": "ISC" + }, + "node_modules/xmlbuilder": { + "version": "15.1.1", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-15.1.1.tgz", + "integrity": "sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.0" + } + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "license": "MIT", + "engines": { + "node": ">=0.4" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "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, + "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==", + "license": "MIT", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "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==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", + "dev": true, + "license": "MIT", + "dependencies": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "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" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/zlibjs": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/zlibjs/-/zlibjs-0.3.1.tgz", + "integrity": "sha512-+J9RrgTKOmlxFSDHo0pI1xM6BLVUv+o0ZT9ANtCxGkjIVCCUdx9alUF8Gm+dGLKbkkkidWIHFDZHDMpfITt4+w==", + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/zod": { + "version": "3.25.76", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz", + "integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + } + } +} diff --git a/electron/package.json b/electron/package.json new file mode 100644 index 0000000..e31da80 --- /dev/null +++ b/electron/package.json @@ -0,0 +1,91 @@ +{ + "name": "presenton", + "productName": "Presenton Open Source", + "version": "0.8.9-beta", + "exportVersion": "v0.3.6", + "main": "app_dist/main.js", + "description": "Open-Source AI Presentation Generator", + "homepage": "https://presenton.ai", + "repository": "https://github.com/presenton/presenton", + "keywords": [ + "electron", + "electron-builder", + "Microsoft Store", + "AI presentation generator", + "open-source", + "presentation software", + "tailwindcss", + "typescript", + "fastapi", + "nextjs", + "sharp", + "template management", + "slide generation", + "modern UI", + "automation" + ], + "scripts": { + "start": "electron . --no-sandbox", + "dist": "electron-builder", + "postinstall": "electron-builder install-app-deps", + "dev": "node -e \"fs.rmSync('app_dist',{recursive:true,force:true})\" && tsc && electron . --no-sandbox", + "setup:env": "npm install && cd ../servers/fastapi && uv sync && cd ../nextjs && npm install && cd ../../electron && npm run setup:export-runtime && npm run prepare:imagemagick", + "install:pyinstaller": "cd ../servers/fastapi && echo 'pyinstaller will be installed via uv run --with when building'", + "typecheck": "tsc --noEmit", + "build:ts": "node -e \"fs.rmSync('app_dist',{recursive:true,force:true})\" && tsc", + "check:main-no-undef": "node scripts/check-main-no-undef.cjs", + "lint:main": "npm run build:ts && npm run check:main-no-undef", + "build:css": "tailwindcss -i ./resources/ui/assets/css/tailwind.import.css -o ./resources/ui/assets/css/tailwind.css --watch", + "build:vectorstore": "echo 'Using prebuilt shared icons vectorstore index'", + "build:export-runtime": "node scripts/sync-export-runtime.cjs", + "setup:export-runtime": "node scripts/sync-export-runtime.cjs", + "fetch:export-runtime": "node scripts/sync-export-runtime.cjs --force", + "fetch:export-runtime:latest": "EXPORT_RUNTIME_VERSION=latest node scripts/sync-export-runtime.cjs --force", + "prepare:export-chromium": "node scripts/prepare-export-chromium.cjs", + "prepare:imagemagick": "node scripts/prepare-imagemagick.cjs", + "build:nextjs": "node scripts/build-nextjs-resources.cjs", + "build:fastapi": "node -e \"fs.rmSync('resources/fastapi',{recursive:true,force:true})\" && npm run build:vectorstore && cross-env MEM0_SPACY_STRICT=true node scripts/ensure-spacy-model.cjs && cd ../servers/fastapi && uv run --with pyinstaller python -m PyInstaller --distpath ../../electron/resources server.spec && cd ../../electron && node scripts/copy-fastapi-assets.cjs", + "generate:version": "node scripts/generate-version.cjs", + "upload:sourcemaps": "node scripts/upload-sourcemaps.cjs", + "build:electron": "npm run generate:version && npm run build:export-runtime && npm run prepare:export-chromium && npm run prepare:imagemagick && npm run typecheck && npm run build:ts && npm run check:main-no-undef && node build.js", + "build:electron:mac:signed": "npm run generate:version && npm run build:export-runtime && npm run prepare:export-chromium && npm run prepare:imagemagick && npm run typecheck && npm run build:ts && npm run check:main-no-undef && cross-env PRESENTON_MAC_TARGET=dmg PRESENTON_REQUIRE_MAC_SIGNING=1 node build.js", + "build:electron:mas-dev": "npm run generate:version && npm run build:export-runtime && npm run prepare:export-chromium && npm run prepare:imagemagick && npm run typecheck && npm run build:ts && npm run check:main-no-undef && cross-env PRESENTON_MAC_TARGET=mas-dev node build.js", + "build:electron:mas": "npm run generate:version && npm run build:export-runtime && npm run prepare:export-chromium && npm run prepare:imagemagick && npm run typecheck && npm run build:ts && npm run check:main-no-undef && cross-env PRESENTON_MAC_TARGET=mas node build.js", + "dist:mac:signed": "cross-env PRESENTON_MAC_TARGET=dmg PRESENTON_REQUIRE_MAC_SIGNING=1 node build.js", + "dist:mac:mas-dev": "cross-env PRESENTON_MAC_TARGET=mas-dev node build.js", + "dist:mac:mas": "cross-env PRESENTON_MAC_TARGET=mas node build.js", + "build:all": "npm run clean:build && npm run setup:env && npm run build:ts && npm run install:pyinstaller && npm run build:nextjs && npm run build:fastapi && npm run build:electron", + "build:all:mac:signed": "npm run clean:build && npm run setup:env && npm run build:ts && npm run install:pyinstaller && npm run build:nextjs && npm run build:fastapi && npm run build:electron:mac:signed", + "build:all:mas-dev": "npm run clean:build && npm run setup:env && npm run build:ts && npm run install:pyinstaller && npm run build:nextjs && npm run build:fastapi && npm run build:electron:mas-dev", + "build:all:mas": "npm run clean:build && npm run setup:env && npm run build:ts && npm run install:pyinstaller && npm run build:nextjs && npm run build:fastapi && npm run build:electron:mas", + "clean:build": "node -e \"for (const p of ['resources/nextjs','resources/fastapi','app_dist']) fs.rmSync(p,{recursive:true,force:true})\"" + }, + "author": { + "name": "Presenton", + "email": "suraj@presenton.ai" + }, + "dependencies": { + "@llamaindex/liteparse": "^1.5.2", + "@puppeteer/browsers": "^3.0.3", + "@sentry/electron": "^7.10.0", + "@tailwindcss/cli": "^4.1.5", + "@types/uuid": "^10.0.0", + "dotenv": "^16.5.0", + "electron-squirrel-startup": "^1.0.1", + "serve-handler": "^6.1.6", + "sharp": "^0.34.5", + "tailwindcss": "^4.1.5", + "tree-kill": "^1.2.2", + "uuid": "^13.0.0" + }, + "devDependencies": { + "7zip-bin": "^5.2.0", + "cross-env": "^7.0.3", + "electron": "42.2.0", + "electron-builder": "^26.8.1", + "typescript": "^5.8.3" + }, + "peerDependencies": { + "typescript": "^5.0.0" + } +} diff --git a/electron/resources/document-extraction/liteparse_runner.mjs b/electron/resources/document-extraction/liteparse_runner.mjs new file mode 100644 index 0000000..d89d422 --- /dev/null +++ b/electron/resources/document-extraction/liteparse_runner.mjs @@ -0,0 +1,176 @@ +#!/usr/bin/env node +/** + * CLI bridge for Python: by default, raw extracted text on stdout (--python-bridge plain); + * or one JSON line (--python-bridge json) for backward compatibility. + * + * OCR follows LlamaIndex LiteParse guidance (built-in Tesseract by default): + * https://developers.llamaindex.ai/liteparse/guides/ocr/ + * + * - ISO 639-3 for Tesseract (eng, fra, deu, jpn, …); multi-lang as "deu+eng" or "deu,eng". + * - Parallel workers ≈ CPU cores − 1 (override --num-workers). + * - Optional HTTP OCR: --ocr-server-url or LITEPARSE_OCR_SERVER_URL. + * - Optional local models: --tessdata-path or LITEPARSE_TESSDATA_PATH (else TESSDATA_PREFIX / CDN). + */ + +import fs from "node:fs"; +import os from "node:os"; +import path from "node:path"; +import { LiteParse } from "@llamaindex/liteparse"; + +function readArg(name) { + const idx = process.argv.indexOf(name); + if (idx === -1) return null; + return process.argv[idx + 1] ?? null; +} + +function parseBool(value, fallback) { + if (value == null || value === "") return fallback; + const s = String(value).trim().toLowerCase(); + if (["1", "true", "yes", "on"].includes(s)) return true; + if (["0", "false", "no", "off"].includes(s)) return false; + return fallback; +} + +function toNumber(value, fallback, min, max) { + if (value == null || value === "") return fallback; + const parsed = Number(value); + if (Number.isNaN(parsed)) return fallback; + return Math.min(Math.max(parsed, min), max); +} + +/** Tesseract accepts "deu+eng"; allow comma-separated CLI/env for convenience. */ +function normalizeOcrLanguage(raw) { + const s = String(raw ?? "").trim(); + if (!s) return "eng"; + if (s.includes(",")) { + return s + .split(",") + .map((p) => p.trim()) + .filter(Boolean) + .join("+"); + } + return s; +} + +function emit(result, exitCode = 0) { + process.stdout.write(`${JSON.stringify(result)}\n`); + process.exit(exitCode); +} + +/** "plain" = success: UTF-8 text on stdout only. "json" = one JSON line (legacy, huge payloads can break). */ +const pyBridgeArg = readArg("--python-bridge"); +const pyBridge = + pyBridgeArg == null || pyBridgeArg === "" + ? "json" + : String(pyBridgeArg).trim().toLowerCase() === "plain" + ? "plain" + : "json"; + +function bridgeError(message, exitCode) { + if (pyBridge === "plain") { + process.stderr.write(`${message}\n`); + process.exit(exitCode); + } + emit({ ok: false, error: message }, exitCode); +} + +const filePath = readArg("--file"); +if (!filePath) { + bridgeError("Missing required --file argument", 2); +} + +const resolvedPath = path.resolve(filePath); +if (!fs.existsSync(resolvedPath)) { + bridgeError(`File not found: ${resolvedPath}`, 2); +} + +const ocrEnabled = parseBool(readArg("--ocr-enabled"), true); +const dpi = toNumber(readArg("--dpi"), 150, 72, 600); +const numWorkers = toNumber( + readArg("--num-workers"), + Math.max(os.cpus().length - 2, 1), + 1, + 64 +); + +const cliOcrLanguage = readArg("--ocr-language"); +const ocrLanguageRaw = + (process.env.LITEPARSE_OCR_LANGUAGE && String(process.env.LITEPARSE_OCR_LANGUAGE).trim()) || + (cliOcrLanguage && String(cliOcrLanguage).trim()) || + ""; +const ocrLanguage = normalizeOcrLanguage(ocrLanguageRaw || "eng"); + +const outputFormatRaw = (readArg("--output-format") || "text").trim().toLowerCase(); +const outputFormat = outputFormatRaw === "json" ? "json" : "text"; + +const ocrServerUrlArg = readArg("--ocr-server-url"); +const ocrServerUrl = + (ocrServerUrlArg && String(ocrServerUrlArg).trim()) || + (process.env.LITEPARSE_OCR_SERVER_URL && String(process.env.LITEPARSE_OCR_SERVER_URL).trim()) || + undefined; + +const tessdataArg = readArg("--tessdata-path"); +const tessdataPath = + (tessdataArg && String(tessdataArg).trim()) || + (process.env.LITEPARSE_TESSDATA_PATH && String(process.env.LITEPARSE_TESSDATA_PATH).trim()) || + (process.env.TESSDATA_PREFIX && String(process.env.TESSDATA_PREFIX).trim()) || + undefined; + +try { + const config = { + ocrEnabled, + ocrLanguage, + outputFormat, + dpi, + numWorkers, + }; + if (ocrServerUrl) { + config.ocrServerUrl = ocrServerUrl; + } + if (tessdataPath) { + config.tessdataPath = tessdataPath; + } + + const parser = new LiteParse(config); + + const result = await parser.parse(resolvedPath, true); + const text = result?.text ?? ""; + if (pyBridge === "plain") { + process.stdout.write(text); + process.exit(0); + } + emit({ + ok: true, + filePath: resolvedPath, + text, + pageCount: Array.isArray(result?.pages) ? result.pages.length : 0, + ocr: { + engine: ocrServerUrl ? "http" : "tesseract", + ocrLanguage, + ocrEnabled, + dpi, + numWorkers, + }, + }); +} catch (error) { + const message = error instanceof Error ? error.message : String(error); + const stack = error instanceof Error ? error.stack : undefined; + if (pyBridge === "plain") { + if (stack) { + process.stderr.write(`${stack}\n`); + } + process.stderr.write(`${message}\n`); + process.exit(1); + } + if (stack) { + process.stderr.write(`${stack}\n`); + } + emit( + { + ok: false, + filePath: resolvedPath, + error: message, + }, + 1 + ); +} diff --git a/electron/resources/ui/assets/css/tailwind.css b/electron/resources/ui/assets/css/tailwind.css new file mode 100644 index 0000000..52f4669 --- /dev/null +++ b/electron/resources/ui/assets/css/tailwind.css @@ -0,0 +1,4270 @@ +/*! tailwindcss v4.1.5 | MIT License | https://tailwindcss.com */ +@layer properties; +@layer theme, base, components, utilities; +@layer theme { + :root, :host { + --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", + "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", + "Courier New", monospace; + --color-red-50: oklch(97.1% 0.013 17.38); + --color-red-300: oklch(80.8% 0.114 19.571); + --color-red-400: oklch(70.4% 0.191 22.216); + --color-red-500: oklch(63.7% 0.237 25.331); + --color-red-600: oklch(57.7% 0.245 27.325); + --color-red-700: oklch(50.5% 0.213 27.518); + --color-orange-500: oklch(70.5% 0.213 47.604); + --color-green-50: oklch(98.2% 0.018 155.826); + --color-green-100: oklch(96.2% 0.044 156.743); + --color-green-700: oklch(52.7% 0.154 150.069); + --color-emerald-500: oklch(69.6% 0.17 162.48); + --color-emerald-600: oklch(59.6% 0.145 163.225); + --color-emerald-700: oklch(50.8% 0.118 165.612); + --color-blue-50: oklch(97% 0.014 254.604); + --color-blue-100: oklch(93.2% 0.032 255.585); + --color-blue-200: oklch(88.2% 0.059 254.128); + --color-blue-300: oklch(80.9% 0.105 251.813); + --color-blue-400: oklch(70.7% 0.165 254.624); + --color-blue-500: oklch(62.3% 0.214 259.815); + --color-blue-600: oklch(54.6% 0.245 262.881); + --color-blue-700: oklch(48.8% 0.243 264.376); + --color-blue-800: oklch(42.4% 0.199 265.638); + --color-blue-900: oklch(37.9% 0.146 265.522); + --color-indigo-600: oklch(51.1% 0.262 276.966); + --color-indigo-700: oklch(45.7% 0.24 277.023); + --color-purple-50: oklch(97.7% 0.014 308.299); + --color-purple-100: oklch(94.6% 0.033 307.174); + --color-purple-200: oklch(90.2% 0.063 306.703); + --color-purple-400: oklch(71.4% 0.203 305.504); + --color-purple-500: oklch(62.7% 0.265 303.9); + --color-purple-600: oklch(55.8% 0.288 302.321); + --color-purple-700: oklch(49.6% 0.265 301.924); + --color-pink-500: oklch(65.6% 0.241 354.308); + --color-gray-50: oklch(98.5% 0.002 247.839); + --color-gray-100: oklch(96.7% 0.003 264.542); + --color-gray-200: oklch(92.8% 0.006 264.531); + --color-gray-300: oklch(87.2% 0.01 258.338); + --color-gray-400: oklch(70.7% 0.022 261.325); + --color-gray-500: oklch(55.1% 0.027 264.364); + --color-gray-600: oklch(44.6% 0.03 256.802); + --color-gray-700: oklch(37.3% 0.034 259.733); + --color-gray-800: oklch(27.8% 0.033 256.848); + --color-gray-900: oklch(21% 0.034 264.665); + --color-black: #000; + --color-white: #fff; + --spacing: 0.25rem; + --container-sm: 24rem; + --container-md: 28rem; + --container-lg: 32rem; + --container-3xl: 48rem; + --container-7xl: 80rem; + --text-xs: 0.75rem; + --text-xs--line-height: calc(1 / 0.75); + --text-sm: 0.875rem; + --text-sm--line-height: calc(1.25 / 0.875); + --text-base: 1rem; + --text-base--line-height: calc(1.5 / 1); + --text-lg: 1.125rem; + --text-lg--line-height: calc(1.75 / 1.125); + --text-xl: 1.25rem; + --text-xl--line-height: calc(1.75 / 1.25); + --text-2xl: 1.5rem; + --text-2xl--line-height: calc(2 / 1.5); + --text-3xl: 1.875rem; + --text-3xl--line-height: calc(2.25 / 1.875); + --text-4xl: 2.25rem; + --text-4xl--line-height: calc(2.5 / 2.25); + --font-weight-normal: 400; + --font-weight-medium: 500; + --font-weight-semibold: 600; + --font-weight-bold: 700; + --tracking-tight: -0.025em; + --tracking-widest: 0.1em; + --leading-relaxed: 1.625; + --radius-sm: 0.25rem; + --radius-md: 0.375rem; + --radius-lg: 0.5rem; + --radius-xl: 0.75rem; + --ease-out: cubic-bezier(0, 0, 0.2, 1); + --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1); + --animate-spin: spin 1s linear infinite; + --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + --blur-sm: 8px; + --blur-xl: 24px; + --aspect-video: 16 / 9; + --default-transition-duration: 150ms; + --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + --default-font-family: var(--font-sans); + --default-mono-font-family: var(--font-mono); + } +} +@layer base { + *, ::after, ::before, ::backdrop, ::file-selector-button { + box-sizing: border-box; + margin: 0; + padding: 0; + border: 0 solid; + } + html, :host { + line-height: 1.5; + -webkit-text-size-adjust: 100%; + tab-size: 4; + font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"); + font-feature-settings: var(--default-font-feature-settings, normal); + font-variation-settings: var(--default-font-variation-settings, normal); + -webkit-tap-highlight-color: transparent; + } + hr { + height: 0; + color: inherit; + border-top-width: 1px; + } + abbr:where([title]) { + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; + } + h1, h2, h3, h4, h5, h6 { + font-size: inherit; + font-weight: inherit; + } + a { + color: inherit; + -webkit-text-decoration: inherit; + text-decoration: inherit; + } + b, strong { + font-weight: bolder; + } + code, kbd, samp, pre { + font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace); + font-feature-settings: var(--default-mono-font-feature-settings, normal); + font-variation-settings: var(--default-mono-font-variation-settings, normal); + font-size: 1em; + } + small { + font-size: 80%; + } + sub, sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; + } + sub { + bottom: -0.25em; + } + sup { + top: -0.5em; + } + table { + text-indent: 0; + border-color: inherit; + border-collapse: collapse; + } + :-moz-focusring { + outline: auto; + } + progress { + vertical-align: baseline; + } + summary { + display: list-item; + } + ol, ul, menu { + list-style: none; + } + img, svg, video, canvas, audio, iframe, embed, object { + display: block; + vertical-align: middle; + } + img, video { + max-width: 100%; + height: auto; + } + button, input, select, optgroup, textarea, ::file-selector-button { + font: inherit; + font-feature-settings: inherit; + font-variation-settings: inherit; + letter-spacing: inherit; + color: inherit; + border-radius: 0; + background-color: transparent; + opacity: 1; + } + :where(select:is([multiple], [size])) optgroup { + font-weight: bolder; + } + :where(select:is([multiple], [size])) optgroup option { + padding-inline-start: 20px; + } + ::file-selector-button { + margin-inline-end: 4px; + } + ::placeholder { + opacity: 1; + } + @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) { + ::placeholder { + color: currentcolor; + @supports (color: color-mix(in lab, red, red)) { + color: color-mix(in oklab, currentcolor 50%, transparent); + } + } + } + textarea { + resize: vertical; + } + ::-webkit-search-decoration { + -webkit-appearance: none; + } + ::-webkit-date-and-time-value { + min-height: 1lh; + text-align: inherit; + } + ::-webkit-datetime-edit { + display: inline-flex; + } + ::-webkit-datetime-edit-fields-wrapper { + padding: 0; + } + ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field { + padding-block: 0; + } + :-moz-ui-invalid { + box-shadow: none; + } + button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button { + appearance: button; + } + ::-webkit-inner-spin-button, ::-webkit-outer-spin-button { + height: auto; + } + [hidden]:where(:not([hidden="until-found"])) { + display: none !important; + } +} +@layer utilities { + .pointer-events-auto { + pointer-events: auto; + } + .pointer-events-none { + pointer-events: none; + } + .visible { + visibility: visible; + } + .sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; + } + .absolute { + position: absolute; + } + .fixed { + position: fixed; + } + .relative { + position: relative; + } + .static { + position: static; + } + .sticky { + position: sticky; + } + .-inset-\[2px\] { + inset: calc(2px * -1); + } + .inset-0 { + inset: calc(var(--spacing) * 0); + } + .inset-x-0 { + inset-inline: calc(var(--spacing) * 0); + } + .inset-y-0 { + inset-block: calc(var(--spacing) * 0); + } + .top-0 { + top: calc(var(--spacing) * 0); + } + .top-1 { + top: calc(var(--spacing) * 1); + } + .top-1\/2 { + top: calc(1/2 * 100%); + } + .top-2 { + top: calc(var(--spacing) * 2); + } + .top-2\.5 { + top: calc(var(--spacing) * 2.5); + } + .top-4 { + top: calc(var(--spacing) * 4); + } + .top-\[5\.2rem\] { + top: 5.2rem; + } + .top-\[50\%\] { + top: 50%; + } + .-right-4 { + right: calc(var(--spacing) * -4); + } + .right-0 { + right: calc(var(--spacing) * 0); + } + .right-1 { + right: calc(var(--spacing) * 1); + } + .right-2 { + right: calc(var(--spacing) * 2); + } + .right-4 { + right: calc(var(--spacing) * 4); + } + .right-5 { + right: calc(var(--spacing) * 5); + } + .right-6 { + right: calc(var(--spacing) * 6); + } + .-bottom-4 { + bottom: calc(var(--spacing) * -4); + } + .bottom-0 { + bottom: calc(var(--spacing) * 0); + } + .bottom-2 { + bottom: calc(var(--spacing) * 2); + } + .bottom-4 { + bottom: calc(var(--spacing) * 4); + } + .bottom-5 { + bottom: calc(var(--spacing) * 5); + } + .bottom-6 { + bottom: calc(var(--spacing) * 6); + } + .bottom-20 { + bottom: calc(var(--spacing) * 20); + } + .-left-7 { + left: calc(var(--spacing) * -7); + } + .left-0 { + left: calc(var(--spacing) * 0); + } + .left-1 { + left: calc(var(--spacing) * 1); + } + .left-1\/2 { + left: calc(1/2 * 100%); + } + .left-2 { + left: calc(var(--spacing) * 2); + } + .left-3 { + left: calc(var(--spacing) * 3); + } + .left-4 { + left: calc(var(--spacing) * 4); + } + .left-\[50\%\] { + left: 50%; + } + .z-10 { + z-index: 10; + } + .z-20 { + z-index: 20; + } + .z-30 { + z-index: 30; + } + .z-40 { + z-index: 40; + } + .z-50 { + z-index: 50; + } + .z-\[-10\] { + z-index: -10; + } + .z-\[100\] { + z-index: 100; + } + .order-1 { + order: 1; + } + .col-span-2 { + grid-column: span 2 / span 2; + } + .col-span-3 { + grid-column: span 3 / span 3; + } + .container { + width: 100%; + @media (width >= 40rem) { + max-width: 40rem; + } + @media (width >= 48rem) { + max-width: 48rem; + } + @media (width >= 64rem) { + max-width: 64rem; + } + @media (width >= 80rem) { + max-width: 80rem; + } + @media (width >= 96rem) { + max-width: 96rem; + } + } + .-mx-1 { + margin-inline: calc(var(--spacing) * -1); + } + .mx-2 { + margin-inline: calc(var(--spacing) * 2); + } + .mx-auto { + margin-inline: auto; + } + .my-1 { + margin-block: calc(var(--spacing) * 1); + } + .my-4 { + margin-block: calc(var(--spacing) * 4); + } + .my-6 { + margin-block: calc(var(--spacing) * 6); + } + .my-10 { + margin-block: calc(var(--spacing) * 10); + } + .mt-0 { + margin-top: calc(var(--spacing) * 0); + } + .mt-0\.5 { + margin-top: calc(var(--spacing) * 0.5); + } + .mt-1 { + margin-top: calc(var(--spacing) * 1); + } + .mt-2 { + margin-top: calc(var(--spacing) * 2); + } + .mt-4 { + margin-top: calc(var(--spacing) * 4); + } + .mt-6 { + margin-top: calc(var(--spacing) * 6); + } + .mt-8 { + margin-top: calc(var(--spacing) * 8); + } + .mt-10 { + margin-top: calc(var(--spacing) * 10); + } + .mt-12 { + margin-top: calc(var(--spacing) * 12); + } + .mt-16 { + margin-top: calc(var(--spacing) * 16); + } + .mt-20 { + margin-top: calc(var(--spacing) * 20); + } + .mt-40 { + margin-top: calc(var(--spacing) * 40); + } + .mr-0 { + margin-right: calc(var(--spacing) * 0); + } + .mr-1 { + margin-right: calc(var(--spacing) * 1); + } + .mr-2 { + margin-right: calc(var(--spacing) * 2); + } + .mr-4 { + margin-right: calc(var(--spacing) * 4); + } + .mb-1 { + margin-bottom: calc(var(--spacing) * 1); + } + .mb-2 { + margin-bottom: calc(var(--spacing) * 2); + } + .mb-3 { + margin-bottom: calc(var(--spacing) * 3); + } + .mb-4 { + margin-bottom: calc(var(--spacing) * 4); + } + .mb-5 { + margin-bottom: calc(var(--spacing) * 5); + } + .mb-6 { + margin-bottom: calc(var(--spacing) * 6); + } + .mb-8 { + margin-bottom: calc(var(--spacing) * 8); + } + .mb-10 { + margin-bottom: calc(var(--spacing) * 10); + } + .mb-12 { + margin-bottom: calc(var(--spacing) * 12); + } + .-ml-\[300px\] { + margin-left: calc(300px * -1); + } + .ml-0 { + margin-left: calc(var(--spacing) * 0); + } + .ml-1 { + margin-left: calc(var(--spacing) * 1); + } + .ml-2 { + margin-left: calc(var(--spacing) * 2); + } + .ml-auto { + margin-left: auto; + } + .line-clamp-1 { + overflow: hidden; + display: -webkit-box; + -webkit-box-orient: vertical; + -webkit-line-clamp: 1; + } + .line-clamp-2 { + overflow: hidden; + display: -webkit-box; + -webkit-box-orient: vertical; + -webkit-line-clamp: 2; + } + .line-clamp-3 { + overflow: hidden; + display: -webkit-box; + -webkit-box-orient: vertical; + -webkit-line-clamp: 3; + } + .line-clamp-6 { + overflow: hidden; + display: -webkit-box; + -webkit-box-orient: vertical; + -webkit-line-clamp: 6; + } + .block { + display: block; + } + .contents { + display: contents; + } + .flex { + display: flex; + } + .grid { + display: grid; + } + .hidden { + display: none; + } + .inline-block { + display: inline-block; + } + .inline-flex { + display: inline-flex; + } + .table { + display: table; + } + .aspect-\[4\/3\] { + aspect-ratio: 4/3; + } + .aspect-\[16\/9\] { + aspect-ratio: 16/9; + } + .aspect-square { + aspect-ratio: 1 / 1; + } + .aspect-video { + aspect-ratio: var(--aspect-video); + } + .\!h-6 { + height: calc(var(--spacing) * 6) !important; + } + .h-0 { + height: calc(var(--spacing) * 0); + } + .h-0\.5 { + height: calc(var(--spacing) * 0.5); + } + .h-1 { + height: calc(var(--spacing) * 1); + } + .h-1\.5 { + height: calc(var(--spacing) * 1.5); + } + .h-2 { + height: calc(var(--spacing) * 2); + } + .h-2\.5 { + height: calc(var(--spacing) * 2.5); + } + .h-3 { + height: calc(var(--spacing) * 3); + } + .h-3\.5 { + height: calc(var(--spacing) * 3.5); + } + .h-4 { + height: calc(var(--spacing) * 4); + } + .h-5 { + height: calc(var(--spacing) * 5); + } + .h-6 { + height: calc(var(--spacing) * 6); + } + .h-7 { + height: calc(var(--spacing) * 7); + } + .h-8 { + height: calc(var(--spacing) * 8); + } + .h-9 { + height: calc(var(--spacing) * 9); + } + .h-10 { + height: calc(var(--spacing) * 10); + } + .h-12 { + height: calc(var(--spacing) * 12); + } + .h-14 { + height: calc(var(--spacing) * 14); + } + .h-16 { + height: calc(var(--spacing) * 16); + } + .h-20 { + height: calc(var(--spacing) * 20); + } + .h-24 { + height: calc(var(--spacing) * 24); + } + .h-28 { + height: calc(var(--spacing) * 28); + } + .h-32 { + height: calc(var(--spacing) * 32); + } + .h-40 { + height: calc(var(--spacing) * 40); + } + .h-48 { + height: calc(var(--spacing) * 48); + } + .h-64 { + height: calc(var(--spacing) * 64); + } + .h-\[1px\] { + height: 1px; + } + .h-\[2px\] { + height: 2px; + } + .h-\[3px\] { + height: 3px; + } + .h-\[16px\] { + height: 16px; + } + .h-\[24px\] { + height: 24px; + } + .h-\[32px\] { + height: 32px; + } + .h-\[34px\] { + height: 34px; + } + .h-\[48px\] { + height: 48px; + } + .h-\[60vh\] { + height: 60vh; + } + .h-\[80vh\] { + height: 80vh; + } + .h-\[85vh\] { + height: 85vh; + } + .h-\[120px\] { + height: 120px; + } + .h-\[210px\] { + height: 210px; + } + .h-\[calc\(100\%-100px\)\] { + height: calc(100% - 100px); + } + .h-\[calc\(100vh-100px\)\] { + height: calc(100vh - 100px); + } + .h-\[calc\(100vh-120px\)\] { + height: calc(100vh - 120px); + } + .h-\[calc\(100vh-150px\)\] { + height: calc(100vh - 150px); + } + .h-\[calc\(100vh-200px\)\] { + height: calc(100vh - 200px); + } + .h-\[calc\(100vh-300px\)\] { + height: calc(100vh - 300px); + } + .h-\[var\(--radix-select-trigger-height\)\] { + height: var(--radix-select-trigger-height); + } + .h-full { + height: 100%; + } + .h-px { + height: 1px; + } + .h-screen { + height: 100vh; + } + .max-h-96 { + max-height: calc(var(--spacing) * 96); + } + .max-h-\[20px\] { + max-height: 20px; + } + .max-h-\[80vh\] { + max-height: 80vh; + } + .max-h-\[100px\] { + max-height: 100px; + } + .max-h-\[300px\] { + max-height: 300px; + } + .max-h-\[500px\] { + max-height: 500px; + } + .max-h-\[720px\] { + max-height: 720px; + } + .max-h-full { + max-height: 100%; + } + .max-h-screen { + max-height: 100vh; + } + .min-h-\[60px\] { + min-height: 60px; + } + .min-h-\[70vh\] { + min-height: 70vh; + } + .min-h-\[100px\] { + min-height: 100px; + } + .min-h-\[120px\] { + min-height: 120px; + } + .min-h-\[150px\] { + min-height: 150px; + } + .min-h-\[200px\] { + min-height: 200px; + } + .min-h-\[300px\] { + min-height: 300px; + } + .min-h-screen { + min-height: 100vh; + } + .\!w-6 { + width: calc(var(--spacing) * 6) !important; + } + .w-0 { + width: calc(var(--spacing) * 0); + } + .w-0\.5 { + width: calc(var(--spacing) * 0.5); + } + .w-1 { + width: calc(var(--spacing) * 1); + } + .w-1\.5 { + width: calc(var(--spacing) * 1.5); + } + .w-1\/2 { + width: calc(1/2 * 100%); + } + .w-1\/3 { + width: calc(1/3 * 100%); + } + .w-2 { + width: calc(var(--spacing) * 2); + } + .w-2\.5 { + width: calc(var(--spacing) * 2.5); + } + .w-2\/3 { + width: calc(2/3 * 100%); + } + .w-3 { + width: calc(var(--spacing) * 3); + } + .w-3\.5 { + width: calc(var(--spacing) * 3.5); + } + .w-3\/4 { + width: calc(3/4 * 100%); + } + .w-3\/5 { + width: calc(3/5 * 100%); + } + .w-4 { + width: calc(var(--spacing) * 4); + } + .w-5 { + width: calc(var(--spacing) * 5); + } + .w-6 { + width: calc(var(--spacing) * 6); + } + .w-8 { + width: calc(var(--spacing) * 8); + } + .w-9 { + width: calc(var(--spacing) * 9); + } + .w-10 { + width: calc(var(--spacing) * 10); + } + .w-12 { + width: calc(var(--spacing) * 12); + } + .w-16 { + width: calc(var(--spacing) * 16); + } + .w-20 { + width: calc(var(--spacing) * 20); + } + .w-24 { + width: calc(var(--spacing) * 24); + } + .w-32 { + width: calc(var(--spacing) * 32); + } + .w-36 { + width: calc(var(--spacing) * 36); + } + .w-40 { + width: calc(var(--spacing) * 40); + } + .w-48 { + width: calc(var(--spacing) * 48); + } + .w-56 { + width: calc(var(--spacing) * 56); + } + .w-60 { + width: calc(var(--spacing) * 60); + } + .w-72 { + width: calc(var(--spacing) * 72); + } + .w-\[1px\] { + width: 1px; + } + .w-\[3px\] { + width: 3px; + } + .w-\[16px\] { + width: 16px; + } + .w-\[30\%\] { + width: 30%; + } + .w-\[32px\] { + width: 32px; + } + .w-\[34px\] { + width: 34px; + } + .w-\[70\%\] { + width: 70%; + } + .w-\[80\%\] { + width: 80%; + } + .w-\[80px\] { + width: 80px; + } + .w-\[85\%\] { + width: 85%; + } + .w-\[87\%\] { + width: 87%; + } + .w-\[95\%\] { + width: 95%; + } + .w-\[102px\] { + width: 102px; + } + .w-\[120px\] { + width: 120px; + } + .w-\[160px\] { + width: 160px; + } + .w-\[180px\] { + width: 180px; + } + .w-\[200px\] { + width: 200px; + } + .w-\[204px\] { + width: 204px; + } + .w-\[250px\] { + width: 250px; + } + .w-\[280px\] { + width: 280px; + } + .w-\[300px\] { + width: 300px; + } + .w-\[350px\] { + width: 350px; + } + .w-\[400px\] { + width: 400px; + } + .w-\[500px\] { + width: 500px; + } + .w-\[600px\] { + width: 600px; + } + .w-auto { + width: auto; + } + .w-full { + width: 100%; + } + .w-screen { + width: 100vw; + } + .max-w-3xl { + max-width: var(--container-3xl); + } + .max-w-7xl { + max-width: var(--container-7xl); + } + .max-w-\[20px\] { + max-width: 20px; + } + .max-w-\[90vw\] { + max-width: 90vw; + } + .max-w-\[200px\] { + max-width: 200px; + } + .max-w-\[300px\] { + max-width: 300px; + } + .max-w-\[350px\] { + max-width: 350px; + } + .max-w-\[1000px\] { + max-width: 1000px; + } + .max-w-\[1100px\] { + max-width: 1100px; + } + .max-w-\[1280px\] { + max-width: 1280px; + } + .max-w-\[1440px\] { + max-width: 1440px; + } + .max-w-full { + max-width: 100%; + } + .max-w-lg { + max-width: var(--container-lg); + } + .max-w-md { + max-width: var(--container-md); + } + .max-w-none { + max-width: none; + } + .min-w-8 { + min-width: calc(var(--spacing) * 8); + } + .min-w-\[8rem\] { + min-width: 8rem; + } + .min-w-\[60px\] { + min-width: 60px; + } + .min-w-\[100px\] { + min-width: 100px; + } + .min-w-\[162px\] { + min-width: 162px; + } + .min-w-\[280px\] { + min-width: 280px; + } + .min-w-\[300px\] { + min-width: 300px; + } + .min-w-\[var\(--radix-select-trigger-width\)\] { + min-width: var(--radix-select-trigger-width); + } + .flex-1 { + flex: 1; + } + .flex-shrink { + flex-shrink: 1; + } + .flex-shrink-0 { + flex-shrink: 0; + } + .shrink-0 { + flex-shrink: 0; + } + .flex-grow { + flex-grow: 1; + } + .grow { + flex-grow: 1; + } + .caption-bottom { + caption-side: bottom; + } + .border-collapse { + border-collapse: collapse; + } + .-translate-x-1 { + --tw-translate-x: calc(var(--spacing) * -1); + translate: var(--tw-translate-x) var(--tw-translate-y); + } + .-translate-x-1\/2 { + --tw-translate-x: calc(calc(1/2 * 100%) * -1); + translate: var(--tw-translate-x) var(--tw-translate-y); + } + .-translate-x-\[30\%\] { + --tw-translate-x: calc(30% * -1); + translate: var(--tw-translate-x) var(--tw-translate-y); + } + .-translate-x-full { + --tw-translate-x: -100%; + translate: var(--tw-translate-x) var(--tw-translate-y); + } + .translate-x-0 { + --tw-translate-x: calc(var(--spacing) * 0); + translate: var(--tw-translate-x) var(--tw-translate-y); + } + .translate-x-\[-50\%\] { + --tw-translate-x: -50%; + translate: var(--tw-translate-x) var(--tw-translate-y); + } + .-translate-y-1 { + --tw-translate-y: calc(var(--spacing) * -1); + translate: var(--tw-translate-x) var(--tw-translate-y); + } + .-translate-y-1\/2 { + --tw-translate-y: calc(calc(1/2 * 100%) * -1); + translate: var(--tw-translate-x) var(--tw-translate-y); + } + .translate-y-\[-50\%\] { + --tw-translate-y: -50%; + translate: var(--tw-translate-x) var(--tw-translate-y); + } + .scale-95 { + --tw-scale-x: 95%; + --tw-scale-y: 95%; + --tw-scale-z: 95%; + scale: var(--tw-scale-x) var(--tw-scale-y); + } + .scale-100 { + --tw-scale-x: 100%; + --tw-scale-y: 100%; + --tw-scale-z: 100%; + scale: var(--tw-scale-x) var(--tw-scale-y); + } + .scale-110 { + --tw-scale-x: 110%; + --tw-scale-y: 110%; + --tw-scale-z: 110%; + scale: var(--tw-scale-x) var(--tw-scale-y); + } + .transform { + transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,); + } + .animate-pulse { + animation: var(--animate-pulse); + } + .animate-spin { + animation: var(--animate-spin); + } + .cursor-crosshair { + cursor: crosshair; + } + .cursor-default { + cursor: default; + } + .cursor-grab { + cursor: grab; + } + .cursor-not-allowed { + cursor: not-allowed; + } + .cursor-pointer { + cursor: pointer; + } + .cursor-text { + cursor: text; + } + .cursor-wait { + cursor: wait; + } + .touch-none { + touch-action: none; + } + .resize { + resize: both; + } + .list-inside { + list-style-position: inside; + } + .list-decimal { + list-style-type: decimal; + } + .grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)); + } + .grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); + } + .grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); + } + .grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)); + } + .flex-col { + flex-direction: column; + } + .flex-col-reverse { + flex-direction: column-reverse; + } + .flex-wrap { + flex-wrap: wrap; + } + .items-center { + align-items: center; + } + .items-end { + align-items: flex-end; + } + .items-start { + align-items: flex-start; + } + .justify-between { + justify-content: space-between; + } + .justify-center { + justify-content: center; + } + .justify-end { + justify-content: flex-end; + } + .justify-start { + justify-content: flex-start; + } + .gap-1 { + gap: calc(var(--spacing) * 1); + } + .gap-1\.5 { + gap: calc(var(--spacing) * 1.5); + } + .gap-2 { + gap: calc(var(--spacing) * 2); + } + .gap-3 { + gap: calc(var(--spacing) * 3); + } + .gap-4 { + gap: calc(var(--spacing) * 4); + } + .gap-6 { + gap: calc(var(--spacing) * 6); + } + .gap-8 { + gap: calc(var(--spacing) * 8); + } + .gap-10 { + gap: calc(var(--spacing) * 10); + } + .gap-12 { + gap: calc(var(--spacing) * 12); + } + .gap-14 { + gap: calc(var(--spacing) * 14); + } + .gap-\[2px\] { + gap: 2px; + } + .space-y-1 { + :where(& > :not(:last-child)) { + --tw-space-y-reverse: 0; + margin-block-start: calc(calc(var(--spacing) * 1) * var(--tw-space-y-reverse)); + margin-block-end: calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-y-reverse))); + } + } + .space-y-1\.5 { + :where(& > :not(:last-child)) { + --tw-space-y-reverse: 0; + margin-block-start: calc(calc(var(--spacing) * 1.5) * var(--tw-space-y-reverse)); + margin-block-end: calc(calc(var(--spacing) * 1.5) * calc(1 - var(--tw-space-y-reverse))); + } + } + .space-y-2 { + :where(& > :not(:last-child)) { + --tw-space-y-reverse: 0; + margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse)); + margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse))); + } + } + .space-y-3 { + :where(& > :not(:last-child)) { + --tw-space-y-reverse: 0; + margin-block-start: calc(calc(var(--spacing) * 3) * var(--tw-space-y-reverse)); + margin-block-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse))); + } + } + .space-y-4 { + :where(& > :not(:last-child)) { + --tw-space-y-reverse: 0; + margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse)); + margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse))); + } + } + .space-y-6 { + :where(& > :not(:last-child)) { + --tw-space-y-reverse: 0; + margin-block-start: calc(calc(var(--spacing) * 6) * var(--tw-space-y-reverse)); + margin-block-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse))); + } + } + .space-y-8 { + :where(& > :not(:last-child)) { + --tw-space-y-reverse: 0; + margin-block-start: calc(calc(var(--spacing) * 8) * var(--tw-space-y-reverse)); + margin-block-end: calc(calc(var(--spacing) * 8) * calc(1 - var(--tw-space-y-reverse))); + } + } + .space-y-\[3px\] { + :where(& > :not(:last-child)) { + --tw-space-y-reverse: 0; + margin-block-start: calc(3px * var(--tw-space-y-reverse)); + margin-block-end: calc(3px * calc(1 - var(--tw-space-y-reverse))); + } + } + .space-x-1 { + :where(& > :not(:last-child)) { + --tw-space-x-reverse: 0; + margin-inline-start: calc(calc(var(--spacing) * 1) * var(--tw-space-x-reverse)); + margin-inline-end: calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-x-reverse))); + } + } + .space-x-2 { + :where(& > :not(:last-child)) { + --tw-space-x-reverse: 0; + margin-inline-start: calc(calc(var(--spacing) * 2) * var(--tw-space-x-reverse)); + margin-inline-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-x-reverse))); + } + } + .space-x-4 { + :where(& > :not(:last-child)) { + --tw-space-x-reverse: 0; + margin-inline-start: calc(calc(var(--spacing) * 4) * var(--tw-space-x-reverse)); + margin-inline-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-x-reverse))); + } + } + .truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + .overflow-auto { + overflow: auto; + } + .overflow-hidden { + overflow: hidden; + } + .overflow-x-auto { + overflow-x: auto; + } + .overflow-x-hidden { + overflow-x: hidden; + } + .overflow-y-auto { + overflow-y: auto; + } + .rounded { + border-radius: 0.25rem; + } + .rounded-\[8px\] { + border-radius: 8px; + } + .rounded-\[20px\] { + border-radius: 20px; + } + .rounded-\[32px\] { + border-radius: 32px; + } + .rounded-\[50\%\] { + border-radius: 50%; + } + .rounded-\[inherit\] { + border-radius: inherit; + } + .rounded-full { + border-radius: calc(infinity * 1px); + } + .rounded-lg { + border-radius: var(--radius-lg); + } + .rounded-md { + border-radius: var(--radius-md); + } + .rounded-none { + border-radius: 0; + } + .rounded-sm { + border-radius: var(--radius-sm); + } + .rounded-xl { + border-radius: var(--radius-xl); + } + .rounded-t-lg { + border-top-left-radius: var(--radius-lg); + border-top-right-radius: var(--radius-lg); + } + .rounded-r-lg { + border-top-right-radius: var(--radius-lg); + border-bottom-right-radius: var(--radius-lg); + } + .rounded-b-lg { + border-bottom-right-radius: var(--radius-lg); + border-bottom-left-radius: var(--radius-lg); + } + .rounded-b-none { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; + } + .border { + border-style: var(--tw-border-style); + border-width: 1px; + } + .border-0 { + border-style: var(--tw-border-style); + border-width: 0px; + } + .border-2 { + border-style: var(--tw-border-style); + border-width: 2px; + } + .border-4 { + border-style: var(--tw-border-style); + border-width: 4px; + } + .border-t { + border-top-style: var(--tw-border-style); + border-top-width: 1px; + } + .border-r { + border-right-style: var(--tw-border-style); + border-right-width: 1px; + } + .border-b { + border-bottom-style: var(--tw-border-style); + border-bottom-width: 1px; + } + .border-l { + border-left-style: var(--tw-border-style); + border-left-width: 1px; + } + .border-dashed { + --tw-border-style: dashed; + border-style: dashed; + } + .border-none { + --tw-border-style: none; + border-style: none; + } + .border-\[\#5146E5\] { + border-color: #5146E5; + } + .border-\[\#9034EA\] { + border-color: #9034EA; + } + .border-blue-100 { + border-color: var(--color-blue-100); + } + .border-blue-200 { + border-color: var(--color-blue-200); + } + .border-blue-300 { + border-color: var(--color-blue-300); + } + .border-blue-400 { + border-color: var(--color-blue-400); + } + .border-blue-500 { + border-color: var(--color-blue-500); + } + .border-current { + border-color: currentcolor; + } + .border-gray-100 { + border-color: var(--color-gray-100); + } + .border-gray-200 { + border-color: var(--color-gray-200); + } + .border-gray-300 { + border-color: var(--color-gray-300); + } + .border-gray-400 { + border-color: var(--color-gray-400); + } + .border-gray-800 { + border-color: var(--color-gray-800); + } + .border-purple-200 { + border-color: var(--color-purple-200); + } + .border-purple-400 { + border-color: var(--color-purple-400); + } + .border-red-300 { + border-color: var(--color-red-300); + } + .border-transparent { + border-color: transparent; + } + .border-white { + border-color: var(--color-white); + } + .border-white\/10 { + border-color: color-mix(in srgb, #fff 10%, transparent); + @supports (color: color-mix(in lab, red, red)) { + border-color: color-mix(in oklab, var(--color-white) 10%, transparent); + } + } + .border-t-blue-200 { + border-top-color: var(--color-blue-200); + } + .border-t-purple-600 { + border-top-color: var(--color-purple-600); + } + .border-t-transparent { + border-top-color: transparent; + } + .border-r-blue-200 { + border-right-color: var(--color-blue-200); + } + .border-b-gray-50 { + border-bottom-color: var(--color-gray-50); + } + .border-l-gray-50 { + border-left-color: var(--color-gray-50); + } + .border-l-transparent { + border-left-color: transparent; + } + .bg-\[\#5141e5\] { + background-color: #5141e5; + } + .bg-\[\#5146E5\] { + background-color: #5146E5; + } + .bg-\[\#6358fd\] { + background-color: #6358fd; + } + .bg-\[\#030303\] { + background-color: #030303; + } + .bg-\[\#E9E8F8\] { + background-color: #E9E8F8; + } + .bg-\[\#EDEDED\] { + background-color: #EDEDED; + } + .bg-\[\#F9F9F9\] { + background-color: #F9F9F9; + } + .bg-\[\#e8f0fe\] { + background-color: #e8f0fe; + } + .bg-\[\#f3f3f3\] { + background-color: #f3f3f3; + } + .bg-\[\#f8f9fa\] { + background-color: #f8f9fa; + } + .bg-black { + background-color: var(--color-black); + } + .bg-black\/0 { + background-color: color-mix(in srgb, #000 0%, transparent); + @supports (color: color-mix(in lab, red, red)) { + background-color: color-mix(in oklab, var(--color-black) 0%, transparent); + } + } + .bg-black\/20 { + background-color: color-mix(in srgb, #000 20%, transparent); + @supports (color: color-mix(in lab, red, red)) { + background-color: color-mix(in oklab, var(--color-black) 20%, transparent); + } + } + .bg-black\/50 { + background-color: color-mix(in srgb, #000 50%, transparent); + @supports (color: color-mix(in lab, red, red)) { + background-color: color-mix(in oklab, var(--color-black) 50%, transparent); + } + } + .bg-black\/70 { + background-color: color-mix(in srgb, #000 70%, transparent); + @supports (color: color-mix(in lab, red, red)) { + background-color: color-mix(in oklab, var(--color-black) 70%, transparent); + } + } + .bg-black\/80 { + background-color: color-mix(in srgb, #000 80%, transparent); + @supports (color: color-mix(in lab, red, red)) { + background-color: color-mix(in oklab, var(--color-black) 80%, transparent); + } + } + .bg-blue-50 { + background-color: var(--color-blue-50); + } + .bg-blue-100 { + background-color: var(--color-blue-100); + } + .bg-blue-200 { + background-color: var(--color-blue-200); + } + .bg-blue-300 { + background-color: var(--color-blue-300); + } + .bg-blue-400 { + background-color: var(--color-blue-400); + } + .bg-blue-500 { + background-color: var(--color-blue-500); + } + .bg-blue-600 { + background-color: var(--color-blue-600); + } + .bg-current { + background-color: currentcolor; + } + .bg-emerald-600 { + background-color: var(--color-emerald-600); + } + .bg-gray-50 { + background-color: var(--color-gray-50); + } + .bg-gray-100 { + background-color: var(--color-gray-100); + } + .bg-gray-200 { + background-color: var(--color-gray-200); + } + .bg-gray-300 { + background-color: var(--color-gray-300); + } + .bg-gray-400 { + background-color: var(--color-gray-400); + } + .bg-gray-600 { + background-color: var(--color-gray-600); + } + .bg-gray-900 { + background-color: var(--color-gray-900); + } + .bg-green-50 { + background-color: var(--color-green-50); + } + .bg-green-100 { + background-color: var(--color-green-100); + } + .bg-indigo-600 { + background-color: var(--color-indigo-600); + } + .bg-purple-50 { + background-color: var(--color-purple-50); + } + .bg-purple-600 { + background-color: var(--color-purple-600); + } + .bg-red-500 { + background-color: var(--color-red-500); + } + .bg-transparent { + background-color: transparent; + } + .bg-white { + background-color: var(--color-white); + } + .bg-white\/20 { + background-color: color-mix(in srgb, #fff 20%, transparent); + @supports (color: color-mix(in lab, red, red)) { + background-color: color-mix(in oklab, var(--color-white) 20%, transparent); + } + } + .bg-white\/30 { + background-color: color-mix(in srgb, #fff 30%, transparent); + @supports (color: color-mix(in lab, red, red)) { + background-color: color-mix(in oklab, var(--color-white) 30%, transparent); + } + } + .bg-white\/50 { + background-color: color-mix(in srgb, #fff 50%, transparent); + @supports (color: color-mix(in lab, red, red)) { + background-color: color-mix(in oklab, var(--color-white) 50%, transparent); + } + } + .bg-white\/70 { + background-color: color-mix(in srgb, #fff 70%, transparent); + @supports (color: color-mix(in lab, red, red)) { + background-color: color-mix(in oklab, var(--color-white) 70%, transparent); + } + } + .bg-white\/80 { + background-color: color-mix(in srgb, #fff 80%, transparent); + @supports (color: color-mix(in lab, red, red)) { + background-color: color-mix(in oklab, var(--color-white) 80%, transparent); + } + } + .bg-white\/90 { + background-color: color-mix(in srgb, #fff 90%, transparent); + @supports (color: color-mix(in lab, red, red)) { + background-color: color-mix(in oklab, var(--color-white) 90%, transparent); + } + } + .bg-gradient-to-b { + --tw-gradient-position: to bottom in oklab; + background-image: linear-gradient(var(--tw-gradient-stops)); + } + .bg-gradient-to-r { + --tw-gradient-position: to right in oklab; + background-image: linear-gradient(var(--tw-gradient-stops)); + } + .from-\[\#9034EA\] { + --tw-gradient-from: #9034EA; + --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position)); + } + .from-blue-600 { + --tw-gradient-from: var(--color-blue-600); + --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position)); + } + .from-gray-50 { + --tw-gradient-from: var(--color-gray-50); + --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position)); + } + .from-purple-500 { + --tw-gradient-from: var(--color-purple-500); + --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position)); + } + .via-\[\#5146E5\] { + --tw-gradient-via: #5146E5; + --tw-gradient-via-stops: var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position); + --tw-gradient-stops: var(--tw-gradient-via-stops); + } + .via-pink-500 { + --tw-gradient-via: var(--color-pink-500); + --tw-gradient-via-stops: var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position); + --tw-gradient-stops: var(--tw-gradient-via-stops); + } + .to-\[\#5146E5\] { + --tw-gradient-to: #5146E5; + --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position)); + } + .to-\[\#9034EA\] { + --tw-gradient-to: #9034EA; + --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position)); + } + .to-gray-100 { + --tw-gradient-to: var(--color-gray-100); + --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position)); + } + .to-indigo-600 { + --tw-gradient-to: var(--color-indigo-600); + --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position)); + } + .to-orange-500 { + --tw-gradient-to: var(--color-orange-500); + --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position)); + } + .to-white { + --tw-gradient-to: var(--color-white); + --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position)); + } + .fill-current { + fill: currentcolor; + } + .stroke-white { + stroke: var(--color-white); + } + .object-contain { + object-fit: contain; + } + .object-cover { + object-fit: cover; + } + .p-0 { + padding: calc(var(--spacing) * 0); + } + .p-1 { + padding: calc(var(--spacing) * 1); + } + .p-1\.5 { + padding: calc(var(--spacing) * 1.5); + } + .p-2 { + padding: calc(var(--spacing) * 2); + } + .p-3 { + padding: calc(var(--spacing) * 3); + } + .p-4 { + padding: calc(var(--spacing) * 4); + } + .p-5 { + padding: calc(var(--spacing) * 5); + } + .p-6 { + padding: calc(var(--spacing) * 6); + } + .p-8 { + padding: calc(var(--spacing) * 8); + } + .p-\[1px\] { + padding: 1px; + } + .p-\[2px\] { + padding: 2px; + } + .px-1 { + padding-inline: calc(var(--spacing) * 1); + } + .px-2 { + padding-inline: calc(var(--spacing) * 2); + } + .px-3 { + padding-inline: calc(var(--spacing) * 3); + } + .px-4 { + padding-inline: calc(var(--spacing) * 4); + } + .px-5 { + padding-inline: calc(var(--spacing) * 5); + } + .px-6 { + padding-inline: calc(var(--spacing) * 6); + } + .px-8 { + padding-inline: calc(var(--spacing) * 8); + } + .py-1 { + padding-block: calc(var(--spacing) * 1); + } + .py-1\.5 { + padding-block: calc(var(--spacing) * 1.5); + } + .py-2 { + padding-block: calc(var(--spacing) * 2); + } + .py-2\.5 { + padding-block: calc(var(--spacing) * 2.5); + } + .py-3 { + padding-block: calc(var(--spacing) * 3); + } + .py-4 { + padding-block: calc(var(--spacing) * 4); + } + .py-5 { + padding-block: calc(var(--spacing) * 5); + } + .py-6 { + padding-block: calc(var(--spacing) * 6); + } + .py-8 { + padding-block: calc(var(--spacing) * 8); + } + .py-12 { + padding-block: calc(var(--spacing) * 12); + } + .py-\[10px\] { + padding-block: 10px; + } + .pt-0 { + padding-top: calc(var(--spacing) * 0); + } + .pt-2 { + padding-top: calc(var(--spacing) * 2); + } + .pt-4 { + padding-top: calc(var(--spacing) * 4); + } + .pt-6 { + padding-top: calc(var(--spacing) * 6); + } + .pt-8 { + padding-top: calc(var(--spacing) * 8); + } + .pt-20 { + padding-top: calc(var(--spacing) * 20); + } + .pr-2 { + padding-right: calc(var(--spacing) * 2); + } + .pr-4 { + padding-right: calc(var(--spacing) * 4); + } + .pr-6 { + padding-right: calc(var(--spacing) * 6); + } + .pr-8 { + padding-right: calc(var(--spacing) * 8); + } + .pb-1 { + padding-bottom: calc(var(--spacing) * 1); + } + .pb-2 { + padding-bottom: calc(var(--spacing) * 2); + } + .pb-3 { + padding-bottom: calc(var(--spacing) * 3); + } + .pb-4 { + padding-bottom: calc(var(--spacing) * 4); + } + .pb-6 { + padding-bottom: calc(var(--spacing) * 6); + } + .pb-8 { + padding-bottom: calc(var(--spacing) * 8); + } + .pb-10 { + padding-bottom: calc(var(--spacing) * 10); + } + .pb-16 { + padding-bottom: calc(var(--spacing) * 16); + } + .pl-2 { + padding-left: calc(var(--spacing) * 2); + } + .pl-6 { + padding-left: calc(var(--spacing) * 6); + } + .pl-8 { + padding-left: calc(var(--spacing) * 8); + } + .pl-10 { + padding-left: calc(var(--spacing) * 10); + } + .text-center { + text-align: center; + } + .text-end { + text-align: end; + } + .text-left { + text-align: left; + } + .text-right { + text-align: right; + } + .text-start { + text-align: start; + } + .align-bottom { + vertical-align: bottom; + } + .align-middle { + vertical-align: middle; + } + .align-top { + vertical-align: top; + } + .font-mono { + font-family: var(--font-mono); + } + .text-2xl { + font-size: var(--text-2xl); + line-height: var(--tw-leading, var(--text-2xl--line-height)); + } + .text-3xl { + font-size: var(--text-3xl); + line-height: var(--tw-leading, var(--text-3xl--line-height)); + } + .text-4xl { + font-size: var(--text-4xl); + line-height: var(--tw-leading, var(--text-4xl--line-height)); + } + .text-base { + font-size: var(--text-base); + line-height: var(--tw-leading, var(--text-base--line-height)); + } + .text-lg { + font-size: var(--text-lg); + line-height: var(--tw-leading, var(--text-lg--line-height)); + } + .text-sm { + font-size: var(--text-sm); + line-height: var(--tw-leading, var(--text-sm--line-height)); + } + .text-xl { + font-size: var(--text-xl); + line-height: var(--tw-leading, var(--text-xl--line-height)); + } + .text-xs { + font-size: var(--text-xs); + line-height: var(--tw-leading, var(--text-xs--line-height)); + } + .text-\[4px\] { + font-size: 4px; + } + .text-\[5px\] { + font-size: 5px; + } + .text-\[6px\] { + font-size: 6px; + } + .text-\[8px\] { + font-size: 8px; + } + .text-\[10px\] { + font-size: 10px; + } + .text-\[13px\] { + font-size: 13px; + } + .text-\[16px\] { + font-size: 16px; + } + .text-\[20px\] { + font-size: 20px; + } + .text-\[24px\] { + font-size: 24px; + } + .text-\[26px\] { + font-size: 26px; + } + .text-\[32px\] { + font-size: 32px; + } + .text-\[40px\] { + font-size: 40px; + } + .leading-3 { + --tw-leading: calc(var(--spacing) * 3); + line-height: calc(var(--spacing) * 3); + } + .leading-6 { + --tw-leading: calc(var(--spacing) * 6); + line-height: calc(var(--spacing) * 6); + } + .leading-\[20px\] { + --tw-leading: 20px; + line-height: 20px; + } + .leading-\[24px\] { + --tw-leading: 24px; + line-height: 24px; + } + .leading-\[26px\] { + --tw-leading: 26px; + line-height: 26px; + } + .leading-\[32px\] { + --tw-leading: 32px; + line-height: 32px; + } + .leading-\[36px\] { + --tw-leading: 36px; + line-height: 36px; + } + .leading-\[40px\] { + --tw-leading: 40px; + line-height: 40px; + } + .leading-\[48px\] { + --tw-leading: 48px; + line-height: 48px; + } + .leading-none { + --tw-leading: 1; + line-height: 1; + } + .leading-relaxed { + --tw-leading: var(--leading-relaxed); + line-height: var(--leading-relaxed); + } + .font-\[400\] { + --tw-font-weight: 400; + font-weight: 400; + } + .font-bold { + --tw-font-weight: var(--font-weight-bold); + font-weight: var(--font-weight-bold); + } + .font-medium { + --tw-font-weight: var(--font-weight-medium); + font-weight: var(--font-weight-medium); + } + .font-normal { + --tw-font-weight: var(--font-weight-normal); + font-weight: var(--font-weight-normal); + } + .font-semibold { + --tw-font-weight: var(--font-weight-semibold); + font-weight: var(--font-weight-semibold); + } + .tracking-\[0\.64px\] { + --tw-tracking: 0.64px; + letter-spacing: 0.64px; + } + .tracking-tight { + --tw-tracking: var(--tracking-tight); + letter-spacing: var(--tracking-tight); + } + .tracking-widest { + --tw-tracking: var(--tracking-widest); + letter-spacing: var(--tracking-widest); + } + .whitespace-nowrap { + white-space: nowrap; + } + .text-\[\#000\] { + color: #000; + } + .text-\[\#2E2E2E\] { + color: #2E2E2E; + } + .text-\[\#6c7081\] { + color: #6c7081; + } + .text-\[\#444\] { + color: #444; + } + .text-\[\#5146E5\] { + color: #5146E5; + } + .text-\[\#9034EA\] { + color: #9034EA; + } + .text-\[\#51459e\] { + color: #51459e; + } + .text-\[\#101828\] { + color: #101828; + } + .text-\[\#667085\] { + color: #667085; + } + .text-black { + color: var(--color-black); + } + .text-blue-500 { + color: var(--color-blue-500); + } + .text-blue-600 { + color: var(--color-blue-600); + } + .text-blue-700 { + color: var(--color-blue-700); + } + .text-blue-800 { + color: var(--color-blue-800); + } + .text-blue-900 { + color: var(--color-blue-900); + } + .text-emerald-600 { + color: var(--color-emerald-600); + } + .text-gray-100 { + color: var(--color-gray-100); + } + .text-gray-400 { + color: var(--color-gray-400); + } + .text-gray-500 { + color: var(--color-gray-500); + } + .text-gray-600 { + color: var(--color-gray-600); + } + .text-gray-700 { + color: var(--color-gray-700); + } + .text-gray-800 { + color: var(--color-gray-800); + } + .text-gray-900 { + color: var(--color-gray-900); + } + .text-green-700 { + color: var(--color-green-700); + } + .text-purple-400 { + color: var(--color-purple-400); + } + .text-purple-600 { + color: var(--color-purple-600); + } + .text-red-500 { + color: var(--color-red-500); + } + .text-red-700 { + color: var(--color-red-700); + } + .text-white { + color: var(--color-white); + } + .text-white\/80 { + color: color-mix(in srgb, #fff 80%, transparent); + @supports (color: color-mix(in lab, red, red)) { + color: color-mix(in oklab, var(--color-white) 80%, transparent); + } + } + .capitalize { + text-transform: capitalize; + } + .italic { + font-style: italic; + } + .underline { + text-decoration-line: underline; + } + .underline-offset-4 { + text-underline-offset: 4px; + } + .antialiased { + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + } + .opacity-0 { + opacity: 0%; + } + .opacity-20 { + opacity: 20%; + } + .opacity-50 { + opacity: 50%; + } + .opacity-60 { + opacity: 60%; + } + .opacity-70 { + opacity: 70%; + } + .opacity-75 { + opacity: 75%; + } + .opacity-90 { + opacity: 90%; + } + .opacity-100 { + opacity: 100%; + } + .shadow { + --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)); + box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); + } + .shadow-2xl { + --tw-shadow: 0 25px 50px -12px var(--tw-shadow-color, rgb(0 0 0 / 0.25)); + box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); + } + .shadow-lg { + --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1)); + box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); + } + .shadow-md { + --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1)); + box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); + } + .shadow-sm { + --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)); + box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); + } + .shadow-xl { + --tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 8px 10px -6px var(--tw-shadow-color, rgb(0 0 0 / 0.1)); + box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); + } + .ring { + --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor); + box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); + } + .ring-0 { + --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor); + box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); + } + .ring-2 { + --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor); + box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); + } + .ring-\[\#5141e5\] { + --tw-ring-color: #5141e5; + } + .ring-\[\#5146E5\] { + --tw-ring-color: #5146E5; + } + .outline { + outline-style: var(--tw-outline-style); + outline-width: 1px; + } + .outline-2 { + outline-style: var(--tw-outline-style); + outline-width: 2px; + } + .outline-blue-500 { + outline-color: var(--color-blue-500); + } + .blur-xl { + --tw-blur: blur(var(--blur-xl)); + filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,); + } + .brightness-0 { + --tw-brightness: brightness(0%); + filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,); + } + .invert { + --tw-invert: invert(100%); + filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,); + } + .filter { + filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,); + } + .backdrop-blur-sm { + --tw-backdrop-blur: blur(var(--blur-sm)); + -webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,); + backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,); + } + .backdrop-filter { + -webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,); + backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,); + } + .transition { + transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, visibility, content-visibility, overlay, pointer-events; + transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); + transition-duration: var(--tw-duration, var(--default-transition-duration)); + } + .transition-all { + transition-property: all; + transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); + transition-duration: var(--tw-duration, var(--default-transition-duration)); + } + .transition-colors { + transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to; + transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); + transition-duration: var(--tw-duration, var(--default-transition-duration)); + } + .transition-opacity { + transition-property: opacity; + transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); + transition-duration: var(--tw-duration, var(--default-transition-duration)); + } + .transition-transform { + transition-property: transform, translate, scale, rotate; + transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); + transition-duration: var(--tw-duration, var(--default-transition-duration)); + } + .duration-200 { + --tw-duration: 200ms; + transition-duration: 200ms; + } + .duration-300 { + --tw-duration: 300ms; + transition-duration: 300ms; + } + .duration-500 { + --tw-duration: 500ms; + transition-duration: 500ms; + } + .ease-in-out { + --tw-ease: var(--ease-in-out); + transition-timing-function: var(--ease-in-out); + } + .ease-out { + --tw-ease: var(--ease-out); + transition-timing-function: var(--ease-out); + } + .outline-none { + --tw-outline-style: none; + outline-style: none; + } + .select-none { + -webkit-user-select: none; + user-select: none; + } + .group-hover\:scale-105 { + &:is(:where(.group):hover *) { + @media (hover: hover) { + --tw-scale-x: 105%; + --tw-scale-y: 105%; + --tw-scale-z: 105%; + scale: var(--tw-scale-x) var(--tw-scale-y); + } + } + } + .group-hover\:border-blue-500 { + &:is(:where(.group):hover *) { + @media (hover: hover) { + border-color: var(--color-blue-500); + } + } + } + .group-hover\:bg-black\/10 { + &:is(:where(.group):hover *) { + @media (hover: hover) { + background-color: color-mix(in srgb, #000 10%, transparent); + @supports (color: color-mix(in lab, red, red)) { + background-color: color-mix(in oklab, var(--color-black) 10%, transparent); + } + } + } + } + .group-hover\:bg-black\/20 { + &:is(:where(.group):hover *) { + @media (hover: hover) { + background-color: color-mix(in srgb, #000 20%, transparent); + @supports (color: color-mix(in lab, red, red)) { + background-color: color-mix(in oklab, var(--color-black) 20%, transparent); + } + } + } + } + .group-hover\:bg-purple-100 { + &:is(:where(.group):hover *) { + @media (hover: hover) { + background-color: var(--color-purple-100); + } + } + } + .group-hover\:stroke-black { + &:is(:where(.group):hover *) { + @media (hover: hover) { + stroke: var(--color-black); + } + } + } + .group-hover\:text-blue-500 { + &:is(:where(.group):hover *) { + @media (hover: hover) { + color: var(--color-blue-500); + } + } + } + .group-hover\:text-gray-600 { + &:is(:where(.group):hover *) { + @media (hover: hover) { + color: var(--color-gray-600); + } + } + } + .group-hover\:text-gray-900 { + &:is(:where(.group):hover *) { + @media (hover: hover) { + color: var(--color-gray-900); + } + } + } + .group-hover\:opacity-100 { + &:is(:where(.group):hover *) { + @media (hover: hover) { + opacity: 100%; + } + } + } + .group-\[\.destructive\]\:text-red-300 { + &:is(:where(.group):is(.destructive) *) { + color: var(--color-red-300); + } + } + .peer-disabled\:cursor-not-allowed { + &:is(:where(.peer):disabled ~ *) { + cursor: not-allowed; + } + } + .peer-disabled\:opacity-70 { + &:is(:where(.peer):disabled ~ *) { + opacity: 70%; + } + } + .file\:border-0 { + &::file-selector-button { + border-style: var(--tw-border-style); + border-width: 0px; + } + } + .file\:bg-transparent { + &::file-selector-button { + background-color: transparent; + } + } + .file\:text-sm { + &::file-selector-button { + font-size: var(--text-sm); + line-height: var(--tw-leading, var(--text-sm--line-height)); + } + } + .file\:font-medium { + &::file-selector-button { + --tw-font-weight: var(--font-weight-medium); + font-weight: var(--font-weight-medium); + } + } + .last\:border-b-0 { + &:last-child { + border-bottom-style: var(--tw-border-style); + border-bottom-width: 0px; + } + } + .hover\:scale-105 { + &:hover { + @media (hover: hover) { + --tw-scale-x: 105%; + --tw-scale-y: 105%; + --tw-scale-z: 105%; + scale: var(--tw-scale-x) var(--tw-scale-y); + } + } + } + .hover\:border { + &:hover { + @media (hover: hover) { + border-style: var(--tw-border-style); + border-width: 1px; + } + } + } + .hover\:border-\[\#5141e5\] { + &:hover { + @media (hover: hover) { + border-color: #5141e5; + } + } + } + .hover\:border-\[\#5146E5\] { + &:hover { + @media (hover: hover) { + border-color: #5146E5; + } + } + } + .hover\:border-blue-200 { + &:hover { + @media (hover: hover) { + border-color: var(--color-blue-200); + } + } + } + .hover\:border-purple-200 { + &:hover { + @media (hover: hover) { + border-color: var(--color-purple-200); + } + } + } + .hover\:bg-\[\#4338ca\] { + &:hover { + @media (hover: hover) { + background-color: #4338ca; + } + } + } + .hover\:bg-\[\#4638c7\] { + &:hover { + @media (hover: hover) { + background-color: #4638c7; + } + } + } + .hover\:bg-\[\#5141e5\]\/80 { + &:hover { + @media (hover: hover) { + background-color: color-mix(in oklab, #5141e5 80%, transparent); + } + } + } + .hover\:bg-\[\#5146E5\] { + &:hover { + @media (hover: hover) { + background-color: #5146E5; + } + } + } + .hover\:bg-\[\#5146E5\]\/80 { + &:hover { + @media (hover: hover) { + background-color: color-mix(in oklab, #5146E5 80%, transparent); + } + } + } + .hover\:bg-\[\#5146E5\]\/90 { + &:hover { + @media (hover: hover) { + background-color: color-mix(in oklab, #5146E5 90%, transparent); + } + } + } + .hover\:bg-\[\#E9E8F8\] { + &:hover { + @media (hover: hover) { + background-color: #E9E8F8; + } + } + } + .hover\:bg-\[\#f1f3f4\] { + &:hover { + @media (hover: hover) { + background-color: #f1f3f4; + } + } + } + .hover\:bg-\[\#f8f9fa\] { + &:hover { + @media (hover: hover) { + background-color: #f8f9fa; + } + } + } + .hover\:bg-blue-100 { + &:hover { + @media (hover: hover) { + background-color: var(--color-blue-100); + } + } + } + .hover\:bg-blue-600 { + &:hover { + @media (hover: hover) { + background-color: var(--color-blue-600); + } + } + } + .hover\:bg-blue-700 { + &:hover { + @media (hover: hover) { + background-color: var(--color-blue-700); + } + } + } + .hover\:bg-emerald-700 { + &:hover { + @media (hover: hover) { + background-color: var(--color-emerald-700); + } + } + } + .hover\:bg-gray-50 { + &:hover { + @media (hover: hover) { + background-color: var(--color-gray-50); + } + } + } + .hover\:bg-gray-100 { + &:hover { + @media (hover: hover) { + background-color: var(--color-gray-100); + } + } + } + .hover\:bg-gray-200 { + &:hover { + @media (hover: hover) { + background-color: var(--color-gray-200); + } + } + } + .hover\:bg-gray-700 { + &:hover { + @media (hover: hover) { + background-color: var(--color-gray-700); + } + } + } + .hover\:bg-indigo-700 { + &:hover { + @media (hover: hover) { + background-color: var(--color-indigo-700); + } + } + } + .hover\:bg-purple-700 { + &:hover { + @media (hover: hover) { + background-color: var(--color-purple-700); + } + } + } + .hover\:bg-red-50 { + &:hover { + @media (hover: hover) { + background-color: var(--color-red-50); + } + } + } + .hover\:bg-red-600 { + &:hover { + @media (hover: hover) { + background-color: var(--color-red-600); + } + } + } + .hover\:bg-white { + &:hover { + @media (hover: hover) { + background-color: var(--color-white); + } + } + } + .hover\:bg-white\/20 { + &:hover { + @media (hover: hover) { + background-color: color-mix(in srgb, #fff 20%, transparent); + @supports (color: color-mix(in lab, red, red)) { + background-color: color-mix(in oklab, var(--color-white) 20%, transparent); + } + } + } + } + .hover\:bg-white\/80 { + &:hover { + @media (hover: hover) { + background-color: color-mix(in srgb, #fff 80%, transparent); + @supports (color: color-mix(in lab, red, red)) { + background-color: color-mix(in oklab, var(--color-white) 80%, transparent); + } + } + } + } + .hover\:from-blue-700 { + &:hover { + @media (hover: hover) { + --tw-gradient-from: var(--color-blue-700); + --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position)); + } + } + } + .hover\:to-indigo-700 { + &:hover { + @media (hover: hover) { + --tw-gradient-to: var(--color-indigo-700); + --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position)); + } + } + } + .hover\:text-blue-700 { + &:hover { + @media (hover: hover) { + color: var(--color-blue-700); + } + } + } + .hover\:text-gray-600 { + &:hover { + @media (hover: hover) { + color: var(--color-gray-600); + } + } + } + .hover\:text-gray-700 { + &:hover { + @media (hover: hover) { + color: var(--color-gray-700); + } + } + } + .hover\:text-red-500 { + &:hover { + @media (hover: hover) { + color: var(--color-red-500); + } + } + } + .hover\:text-red-600 { + &:hover { + @media (hover: hover) { + color: var(--color-red-600); + } + } + } + .hover\:text-white { + &:hover { + @media (hover: hover) { + color: var(--color-white); + } + } + } + .hover\:no-underline { + &:hover { + @media (hover: hover) { + text-decoration-line: none; + } + } + } + .hover\:underline { + &:hover { + @media (hover: hover) { + text-decoration-line: underline; + } + } + } + .hover\:opacity-90 { + &:hover { + @media (hover: hover) { + opacity: 90%; + } + } + } + .hover\:opacity-100 { + &:hover { + @media (hover: hover) { + opacity: 100%; + } + } + } + .hover\:shadow-md { + &:hover { + @media (hover: hover) { + --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1)); + box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); + } + } + } + .hover\:shadow-xl { + &:hover { + @media (hover: hover) { + --tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 8px 10px -6px var(--tw-shadow-color, rgb(0 0 0 / 0.1)); + box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); + } + } + } + .hover\:ring-2 { + &:hover { + @media (hover: hover) { + --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor); + box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); + } + } + } + .hover\:ring-gray-200 { + &:hover { + @media (hover: hover) { + --tw-ring-color: var(--color-gray-200); + } + } + } + .hover\:outline { + &:hover { + @media (hover: hover) { + outline-style: var(--tw-outline-style); + outline-width: 1px; + } + } + } + .hover\:outline-gray-400 { + &:hover { + @media (hover: hover) { + outline-color: var(--color-gray-400); + } + } + } + .group-\[\.destructive\]\:hover\:text-red-50 { + &:is(:where(.group):is(.destructive) *) { + &:hover { + @media (hover: hover) { + color: var(--color-red-50); + } + } + } + } + .focus\:border-\[\#5146E5\] { + &:focus { + border-color: #5146E5; + } + } + .focus\:border-blue-500 { + &:focus { + border-color: var(--color-blue-500); + } + } + .focus\:border-transparent { + &:focus { + border-color: transparent; + } + } + .focus\:bg-gray-50 { + &:focus { + background-color: var(--color-gray-50); + } + } + .focus\:opacity-100 { + &:focus { + opacity: 100%; + } + } + .focus\:ring-0 { + &:focus { + --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor); + box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); + } + } + .focus\:ring-1 { + &:focus { + --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor); + box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); + } + } + .focus\:ring-2 { + &:focus { + --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor); + box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); + } + } + .focus\:ring-4 { + &:focus { + --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor); + box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); + } + } + .focus\:ring-blue-200 { + &:focus { + --tw-ring-color: var(--color-blue-200); + } + } + .focus\:ring-blue-500\/20 { + &:focus { + --tw-ring-color: color-mix(in srgb, oklch(62.3% 0.214 259.815) 20%, transparent); + @supports (color: color-mix(in lab, red, red)) { + --tw-ring-color: color-mix(in oklab, var(--color-blue-500) 20%, transparent); + } + } + } + .focus\:ring-emerald-500 { + &:focus { + --tw-ring-color: var(--color-emerald-500); + } + } + .focus\:ring-red-300 { + &:focus { + --tw-ring-color: var(--color-red-300); + } + } + .focus\:ring-offset-2 { + &:focus { + --tw-ring-offset-width: 2px; + --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + } + } + .focus\:outline-none { + &:focus { + --tw-outline-style: none; + outline-style: none; + } + } + .group-\[\.destructive\]\:focus\:ring-red-400 { + &:is(:where(.group):is(.destructive) *) { + &:focus { + --tw-ring-color: var(--color-red-400); + } + } + } + .group-\[\.destructive\]\:focus\:ring-offset-red-600 { + &:is(:where(.group):is(.destructive) *) { + &:focus { + --tw-ring-offset-color: var(--color-red-600); + } + } + } + .focus-visible\:ring-0 { + &:focus-visible { + --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor); + box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); + } + } + .focus-visible\:ring-1 { + &:focus-visible { + --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor); + box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); + } + } + .focus-visible\:ring-2 { + &:focus-visible { + --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor); + box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); + } + } + .focus-visible\:ring-\[\#5146E5\] { + &:focus-visible { + --tw-ring-color: #5146E5; + } + } + .focus-visible\:ring-blue-300 { + &:focus-visible { + --tw-ring-color: var(--color-blue-300); + } + } + .focus-visible\:ring-offset-0 { + &:focus-visible { + --tw-ring-offset-width: 0px; + --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + } + } + .focus-visible\:ring-offset-2 { + &:focus-visible { + --tw-ring-offset-width: 2px; + --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + } + } + .focus-visible\:outline-none { + &:focus-visible { + --tw-outline-style: none; + outline-style: none; + } + } + .disabled\:pointer-events-none { + &:disabled { + pointer-events: none; + } + } + .disabled\:cursor-not-allowed { + &:disabled { + cursor: not-allowed; + } + } + .disabled\:opacity-50 { + &:disabled { + opacity: 50%; + } + } + .data-\[disabled\]\:pointer-events-none { + &[data-disabled] { + pointer-events: none; + } + } + .data-\[disabled\]\:opacity-50 { + &[data-disabled] { + opacity: 50%; + } + } + .data-\[disabled\=true\]\:pointer-events-none { + &[data-disabled="true"] { + pointer-events: none; + } + } + .data-\[disabled\=true\]\:opacity-50 { + &[data-disabled="true"] { + opacity: 50%; + } + } + .data-\[side\=bottom\]\:translate-y-1 { + &[data-side="bottom"] { + --tw-translate-y: calc(var(--spacing) * 1); + translate: var(--tw-translate-x) var(--tw-translate-y); + } + } + .data-\[side\=left\]\:-translate-x-1 { + &[data-side="left"] { + --tw-translate-x: calc(var(--spacing) * -1); + translate: var(--tw-translate-x) var(--tw-translate-y); + } + } + .data-\[side\=right\]\:translate-x-1 { + &[data-side="right"] { + --tw-translate-x: calc(var(--spacing) * 1); + translate: var(--tw-translate-x) var(--tw-translate-y); + } + } + .data-\[side\=top\]\:-translate-y-1 { + &[data-side="top"] { + --tw-translate-y: calc(var(--spacing) * -1); + translate: var(--tw-translate-x) var(--tw-translate-y); + } + } + .data-\[state\=active\]\:shadow { + &[data-state="active"] { + --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)); + box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); + } + } + .data-\[state\=checked\]\:translate-x-4 { + &[data-state="checked"] { + --tw-translate-x: calc(var(--spacing) * 4); + translate: var(--tw-translate-x) var(--tw-translate-y); + } + } + .data-\[state\=closed\]\:duration-300 { + &[data-state="closed"] { + --tw-duration: 300ms; + transition-duration: 300ms; + } + } + .data-\[state\=open\]\:duration-500 { + &[data-state="open"] { + --tw-duration: 500ms; + transition-duration: 500ms; + } + } + .data-\[state\=unchecked\]\:translate-x-0 { + &[data-state="unchecked"] { + --tw-translate-x: calc(var(--spacing) * 0); + translate: var(--tw-translate-x) var(--tw-translate-y); + } + } + .data-\[swipe\=cancel\]\:translate-x-0 { + &[data-swipe="cancel"] { + --tw-translate-x: calc(var(--spacing) * 0); + translate: var(--tw-translate-x) var(--tw-translate-y); + } + } + .data-\[swipe\=end\]\:translate-x-\[var\(--radix-toast-swipe-end-x\)\] { + &[data-swipe="end"] { + --tw-translate-x: var(--radix-toast-swipe-end-x); + translate: var(--tw-translate-x) var(--tw-translate-y); + } + } + .data-\[swipe\=move\]\:translate-x-\[var\(--radix-toast-swipe-move-x\)\] { + &[data-swipe="move"] { + --tw-translate-x: var(--radix-toast-swipe-move-x); + translate: var(--tw-translate-x) var(--tw-translate-y); + } + } + .data-\[swipe\=move\]\:transition-none { + &[data-swipe="move"] { + transition-property: none; + } + } + .max-lg\:h-\[180px\] { + @media (width < 64rem) { + height: 180px; + } + } + .max-lg\:h-\[300px\] { + @media (width < 64rem) { + height: 300px; + } + } + .max-md\:pointer-events-none { + @media (width < 48rem) { + pointer-events: none; + } + } + .max-md\:mt-4 { + @media (width < 48rem) { + margin-top: calc(var(--spacing) * 4); + } + } + .max-md\:mb-4 { + @media (width < 48rem) { + margin-bottom: calc(var(--spacing) * 4); + } + } + .max-md\:block { + @media (width < 48rem) { + display: block; + } + } + .max-md\:h-\[140px\] { + @media (width < 48rem) { + height: 140px; + } + } + .max-md\:h-\[200px\] { + @media (width < 48rem) { + height: 200px; + } + } + .sm\:top-4 { + @media (width >= 40rem) { + top: calc(var(--spacing) * 4); + } + } + .sm\:right-4 { + @media (width >= 40rem) { + right: calc(var(--spacing) * 4); + } + } + .sm\:left-4 { + @media (width >= 40rem) { + left: calc(var(--spacing) * 4); + } + } + .sm\:mx-4 { + @media (width >= 40rem) { + margin-inline: calc(var(--spacing) * 4); + } + } + .sm\:mt-8 { + @media (width >= 40rem) { + margin-top: calc(var(--spacing) * 8); + } + } + .sm\:flex { + @media (width >= 40rem) { + display: flex; + } + } + .sm\:h-5 { + @media (width >= 40rem) { + height: calc(var(--spacing) * 5); + } + } + .sm\:h-14 { + @media (width >= 40rem) { + height: calc(var(--spacing) * 14); + } + } + .sm\:w-5 { + @media (width >= 40rem) { + width: calc(var(--spacing) * 5); + } + } + .sm\:w-14 { + @media (width >= 40rem) { + width: calc(var(--spacing) * 14); + } + } + .sm\:w-\[400px\] { + @media (width >= 40rem) { + width: 400px; + } + } + .sm\:max-w-\[500px\] { + @media (width >= 40rem) { + max-width: 500px; + } + } + .sm\:max-w-sm { + @media (width >= 40rem) { + max-width: var(--container-sm); + } + } + .sm\:min-w-10 { + @media (width >= 40rem) { + min-width: calc(var(--spacing) * 10); + } + } + .sm\:min-w-\[330px\] { + @media (width >= 40rem) { + min-width: 330px; + } + } + .sm\:grid-cols-2 { + @media (width >= 40rem) { + grid-template-columns: repeat(2, minmax(0, 1fr)); + } + } + .sm\:flex-col { + @media (width >= 40rem) { + flex-direction: column; + } + } + .sm\:flex-row { + @media (width >= 40rem) { + flex-direction: row; + } + } + .sm\:justify-end { + @media (width >= 40rem) { + justify-content: flex-end; + } + } + .sm\:gap-2 { + @media (width >= 40rem) { + gap: calc(var(--spacing) * 2); + } + } + .sm\:gap-4 { + @media (width >= 40rem) { + gap: calc(var(--spacing) * 4); + } + } + .sm\:gap-5 { + @media (width >= 40rem) { + gap: calc(var(--spacing) * 5); + } + } + .sm\:gap-6 { + @media (width >= 40rem) { + gap: calc(var(--spacing) * 6); + } + } + .sm\:gap-8 { + @media (width >= 40rem) { + gap: calc(var(--spacing) * 8); + } + } + .sm\:gap-18 { + @media (width >= 40rem) { + gap: calc(var(--spacing) * 18); + } + } + .sm\:space-x-2 { + @media (width >= 40rem) { + :where(& > :not(:last-child)) { + --tw-space-x-reverse: 0; + margin-inline-start: calc(calc(var(--spacing) * 2) * var(--tw-space-x-reverse)); + margin-inline-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-x-reverse))); + } + } + } + .sm\:rounded-lg { + @media (width >= 40rem) { + border-radius: var(--radius-lg); + } + } + .sm\:p-2 { + @media (width >= 40rem) { + padding: calc(var(--spacing) * 2); + } + } + .sm\:p-4 { + @media (width >= 40rem) { + padding: calc(var(--spacing) * 4); + } + } + .sm\:p-6 { + @media (width >= 40rem) { + padding: calc(var(--spacing) * 6); + } + } + .sm\:px-6 { + @media (width >= 40rem) { + padding-inline: calc(var(--spacing) * 6); + } + } + .sm\:px-12 { + @media (width >= 40rem) { + padding-inline: calc(var(--spacing) * 12); + } + } + .sm\:py-6 { + @media (width >= 40rem) { + padding-block: calc(var(--spacing) * 6); + } + } + .sm\:py-\[40px\] { + @media (width >= 40rem) { + padding-block: 40px; + } + } + .sm\:pr-4 { + @media (width >= 40rem) { + padding-right: calc(var(--spacing) * 4); + } + } + .sm\:pb-2 { + @media (width >= 40rem) { + padding-bottom: calc(var(--spacing) * 2); + } + } + .sm\:text-left { + @media (width >= 40rem) { + text-align: left; + } + } + .sm\:text-2xl { + @media (width >= 40rem) { + font-size: var(--text-2xl); + line-height: var(--tw-leading, var(--text-2xl--line-height)); + } + } + .sm\:text-base { + @media (width >= 40rem) { + font-size: var(--text-base); + line-height: var(--tw-leading, var(--text-base--line-height)); + } + } + .sm\:text-lg { + @media (width >= 40rem) { + font-size: var(--text-lg); + line-height: var(--tw-leading, var(--text-lg--line-height)); + } + } + .sm\:text-xl { + @media (width >= 40rem) { + font-size: var(--text-xl); + line-height: var(--tw-leading, var(--text-xl--line-height)); + } + } + .md\:block { + @media (width >= 48rem) { + display: block; + } + } + .md\:flex { + @media (width >= 48rem) { + display: flex; + } + } + .md\:h-\[32px\] { + @media (width >= 48rem) { + height: 32px; + } + } + .md\:h-\[64px\] { + @media (width >= 48rem) { + height: 64px; + } + } + .md\:h-\[210px\] { + @media (width >= 48rem) { + height: 210px; + } + } + .md\:w-\[32px\] { + @media (width >= 48rem) { + width: 32px; + } + } + .md\:w-\[64px\] { + @media (width >= 48rem) { + width: 64px; + } + } + .md\:w-\[90\%\] { + @media (width >= 48rem) { + width: 90%; + } + } + .md\:w-\[162px\] { + @media (width >= 48rem) { + width: 162px; + } + } + .md\:max-w-\[300px\] { + @media (width >= 48rem) { + max-width: 300px; + } + } + .md\:max-w-\[420px\] { + @media (width >= 48rem) { + max-width: 420px; + } + } + .md\:grid-cols-2 { + @media (width >= 48rem) { + grid-template-columns: repeat(2, minmax(0, 1fr)); + } + } + .md\:grid-cols-3 { + @media (width >= 48rem) { + grid-template-columns: repeat(3, minmax(0, 1fr)); + } + } + .md\:flex-row { + @media (width >= 48rem) { + flex-direction: row; + } + } + .md\:items-center { + @media (width >= 48rem) { + align-items: center; + } + } + .md\:gap-4 { + @media (width >= 48rem) { + gap: calc(var(--spacing) * 4); + } + } + .md\:gap-6 { + @media (width >= 48rem) { + gap: calc(var(--spacing) * 6); + } + } + .md\:gap-8 { + @media (width >= 48rem) { + gap: calc(var(--spacing) * 8); + } + } + .md\:gap-10 { + @media (width >= 48rem) { + gap: calc(var(--spacing) * 10); + } + } + .md\:gap-12 { + @media (width >= 48rem) { + gap: calc(var(--spacing) * 12); + } + } + .md\:space-y-2 { + @media (width >= 48rem) { + :where(& > :not(:last-child)) { + --tw-space-y-reverse: 0; + margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse)); + margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse))); + } + } + } + .md\:p-6 { + @media (width >= 48rem) { + padding: calc(var(--spacing) * 6); + } + } + .md\:px-8 { + @media (width >= 48rem) { + padding-inline: calc(var(--spacing) * 8); + } + } + .md\:py-3 { + @media (width >= 48rem) { + padding-block: calc(var(--spacing) * 3); + } + } + .md\:text-base { + @media (width >= 48rem) { + font-size: var(--text-base); + line-height: var(--tw-leading, var(--text-base--line-height)); + } + } + .lg\:mt-3 { + @media (width >= 64rem) { + margin-top: calc(var(--spacing) * 3); + } + } + .lg\:mt-4 { + @media (width >= 64rem) { + margin-top: calc(var(--spacing) * 4); + } + } + .lg\:mt-10 { + @media (width >= 64rem) { + margin-top: calc(var(--spacing) * 10); + } + } + .lg\:mt-12 { + @media (width >= 64rem) { + margin-top: calc(var(--spacing) * 12); + } + } + .lg\:mt-16 { + @media (width >= 64rem) { + margin-top: calc(var(--spacing) * 16); + } + } + .lg\:mb-4 { + @media (width >= 64rem) { + margin-bottom: calc(var(--spacing) * 4); + } + } + .lg\:mb-16 { + @media (width >= 64rem) { + margin-bottom: calc(var(--spacing) * 16); + } + } + .lg\:block { + @media (width >= 64rem) { + display: block; + } + } + .lg\:flex { + @media (width >= 64rem) { + display: flex; + } + } + .lg\:grid { + @media (width >= 64rem) { + display: grid; + } + } + .lg\:hidden { + @media (width >= 64rem) { + display: none; + } + } + .lg\:aspect-\[4\/4\] { + @media (width >= 64rem) { + aspect-ratio: 4/4; + } + } + .lg\:min-h-\[300px\] { + @media (width >= 64rem) { + min-height: 300px; + } + } + .lg\:w-1\/2 { + @media (width >= 64rem) { + width: calc(1/2 * 100%); + } + } + .lg\:w-16 { + @media (width >= 64rem) { + width: calc(var(--spacing) * 16); + } + } + .lg\:w-\[30\%\] { + @media (width >= 64rem) { + width: 30%; + } + } + .lg\:w-\[60\%\] { + @media (width >= 64rem) { + width: 60%; + } + } + .lg\:max-w-\[70\%\] { + @media (width >= 64rem) { + max-width: 70%; + } + } + .lg\:grid-cols-1 { + @media (width >= 64rem) { + grid-template-columns: repeat(1, minmax(0, 1fr)); + } + } + .lg\:grid-cols-2 { + @media (width >= 64rem) { + grid-template-columns: repeat(2, minmax(0, 1fr)); + } + } + .lg\:grid-cols-3 { + @media (width >= 64rem) { + grid-template-columns: repeat(3, minmax(0, 1fr)); + } + } + .lg\:grid-cols-4 { + @media (width >= 64rem) { + grid-template-columns: repeat(4, minmax(0, 1fr)); + } + } + .lg\:grid-cols-5 { + @media (width >= 64rem) { + grid-template-columns: repeat(5, minmax(0, 1fr)); + } + } + .lg\:flex-row { + @media (width >= 64rem) { + flex-direction: row; + } + } + .lg\:gap-6 { + @media (width >= 64rem) { + gap: calc(var(--spacing) * 6); + } + } + .lg\:gap-8 { + @media (width >= 64rem) { + gap: calc(var(--spacing) * 8); + } + } + .lg\:gap-10 { + @media (width >= 64rem) { + gap: calc(var(--spacing) * 10); + } + } + .lg\:gap-16 { + @media (width >= 64rem) { + gap: calc(var(--spacing) * 16); + } + } + .lg\:space-y-2 { + @media (width >= 64rem) { + :where(& > :not(:last-child)) { + --tw-space-y-reverse: 0; + margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse)); + margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse))); + } + } + } + .lg\:space-y-3 { + @media (width >= 64rem) { + :where(& > :not(:last-child)) { + --tw-space-y-reverse: 0; + margin-block-start: calc(calc(var(--spacing) * 3) * var(--tw-space-y-reverse)); + margin-block-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse))); + } + } + } + .lg\:space-y-4 { + @media (width >= 64rem) { + :where(& > :not(:last-child)) { + --tw-space-y-reverse: 0; + margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse)); + margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse))); + } + } + } + .lg\:space-y-6 { + @media (width >= 64rem) { + :where(& > :not(:last-child)) { + --tw-space-y-reverse: 0; + margin-block-start: calc(calc(var(--spacing) * 6) * var(--tw-space-y-reverse)); + margin-block-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse))); + } + } + } + .lg\:space-y-8 { + @media (width >= 64rem) { + :where(& > :not(:last-child)) { + --tw-space-y-reverse: 0; + margin-block-start: calc(calc(var(--spacing) * 8) * var(--tw-space-y-reverse)); + margin-block-end: calc(calc(var(--spacing) * 8) * calc(1 - var(--tw-space-y-reverse))); + } + } + } + .lg\:space-y-14 { + @media (width >= 64rem) { + :where(& > :not(:last-child)) { + --tw-space-y-reverse: 0; + margin-block-start: calc(calc(var(--spacing) * 14) * var(--tw-space-y-reverse)); + margin-block-end: calc(calc(var(--spacing) * 14) * calc(1 - var(--tw-space-y-reverse))); + } + } + } + .lg\:p-6 { + @media (width >= 64rem) { + padding: calc(var(--spacing) * 6); + } + } + .lg\:px-20 { + @media (width >= 64rem) { + padding-inline: calc(var(--spacing) * 20); + } + } + .lg\:py-\[86px\] { + @media (width >= 64rem) { + padding-block: 86px; + } + } + .lg\:pb-8 { + @media (width >= 64rem) { + padding-bottom: calc(var(--spacing) * 8); + } + } + .lg\:text-\[20px\] { + @media (width >= 64rem) { + font-size: 20px; + } + } + .lg\:text-\[24px\] { + @media (width >= 64rem) { + font-size: 24px; + } + } + .lg\:text-\[32px\] { + @media (width >= 64rem) { + font-size: 32px; + } + } + .lg\:text-\[40px\] { + @media (width >= 64rem) { + font-size: 40px; + } + } + .lg\:leading-\[30px\] { + @media (width >= 64rem) { + --tw-leading: 30px; + line-height: 30px; + } + } + .lg\:leading-\[32px\] { + @media (width >= 64rem) { + --tw-leading: 32px; + line-height: 32px; + } + } + .lg\:leading-\[48px\] { + @media (width >= 64rem) { + --tw-leading: 48px; + line-height: 48px; + } + } + .xl\:relative { + @media (width >= 80rem) { + position: relative; + } + } + .xl\:z-auto { + @media (width >= 80rem) { + z-index: auto; + } + } + .xl\:block { + @media (width >= 80rem) { + display: block; + } + } + .xl\:hidden { + @media (width >= 80rem) { + display: none; + } + } + .xl\:w-\[70\%\] { + @media (width >= 80rem) { + width: 70%; + } + } + .xl\:max-w-\[65\%\] { + @media (width >= 80rem) { + max-width: 65%; + } + } + .xl\:translate-x-0 { + @media (width >= 80rem) { + --tw-translate-x: calc(var(--spacing) * 0); + translate: var(--tw-translate-x) var(--tw-translate-y); + } + } + .\32 xl\:gap-6 { + @media (width >= 96rem) { + gap: calc(var(--spacing) * 6); + } + } + .\[\&_\[cmdk-group-heading\]\]\:px-2 { + & [cmdk-group-heading] { + padding-inline: calc(var(--spacing) * 2); + } + } + .\[\&_\[cmdk-group-heading\]\]\:py-1\.5 { + & [cmdk-group-heading] { + padding-block: calc(var(--spacing) * 1.5); + } + } + .\[\&_\[cmdk-group-heading\]\]\:text-xs { + & [cmdk-group-heading] { + font-size: var(--text-xs); + line-height: var(--tw-leading, var(--text-xs--line-height)); + } + } + .\[\&_\[cmdk-group-heading\]\]\:font-medium { + & [cmdk-group-heading] { + --tw-font-weight: var(--font-weight-medium); + font-weight: var(--font-weight-medium); + } + } + .\[\&_\[cmdk-group\]\]\:px-2 { + & [cmdk-group] { + padding-inline: calc(var(--spacing) * 2); + } + } + .\[\&_\[cmdk-group\]\:not\(\[hidden\]\)_\~\[cmdk-group\]\]\:pt-0 { + & [cmdk-group]:not([hidden]) ~[cmdk-group] { + padding-top: calc(var(--spacing) * 0); + } + } + .\[\&_\[cmdk-input-wrapper\]_svg\]\:h-5 { + & [cmdk-input-wrapper] svg { + height: calc(var(--spacing) * 5); + } + } + .\[\&_\[cmdk-input-wrapper\]_svg\]\:w-5 { + & [cmdk-input-wrapper] svg { + width: calc(var(--spacing) * 5); + } + } + .\[\&_\[cmdk-input\]\]\:h-12 { + & [cmdk-input] { + height: calc(var(--spacing) * 12); + } + } + .\[\&_\[cmdk-item\]\]\:px-2 { + & [cmdk-item] { + padding-inline: calc(var(--spacing) * 2); + } + } + .\[\&_\[cmdk-item\]\]\:py-3 { + & [cmdk-item] { + padding-block: calc(var(--spacing) * 3); + } + } + .\[\&_\[cmdk-item\]_svg\]\:h-5 { + & [cmdk-item] svg { + height: calc(var(--spacing) * 5); + } + } + .\[\&_\[cmdk-item\]_svg\]\:w-5 { + & [cmdk-item] svg { + width: calc(var(--spacing) * 5); + } + } + .\[\&_svg\]\:pointer-events-none { + & svg { + pointer-events: none; + } + } + .\[\&_svg\]\:size-4 { + & svg { + width: calc(var(--spacing) * 4); + height: calc(var(--spacing) * 4); + } + } + .\[\&_svg\]\:shrink-0 { + & svg { + flex-shrink: 0; + } + } + .\[\&_tr\]\:border-b { + & tr { + border-bottom-style: var(--tw-border-style); + border-bottom-width: 1px; + } + } + .\[\&_tr\:last-child\]\:border-0 { + & tr:last-child { + border-style: var(--tw-border-style); + border-width: 0px; + } + } + .\[\&\+div\]\:text-xs { + &+div { + font-size: var(--text-xs); + line-height: var(--tw-leading, var(--text-xs--line-height)); + } + } + .\[\&\:has\(\[role\=checkbox\]\)\]\:pr-0 { + &:has([role=checkbox]) { + padding-right: calc(var(--spacing) * 0); + } + } + .\[\&\>\[role\=checkbox\]\]\:translate-y-\[2px\] { + &>[role=checkbox] { + --tw-translate-y: 2px; + translate: var(--tw-translate-x) var(--tw-translate-y); + } + } + .\[\&\>span\]\:line-clamp-1 { + &>span { + overflow: hidden; + display: -webkit-box; + -webkit-box-orient: vertical; + -webkit-line-clamp: 1; + } + } + .\[\&\>svg\]\:size-4 { + &>svg { + width: calc(var(--spacing) * 4); + height: calc(var(--spacing) * 4); + } + } + .\[\&\>svg\]\:shrink-0 { + &>svg { + flex-shrink: 0; + } + } + .\[\&\>tr\]\:last\:border-b-0 { + &>tr { + &:last-child { + border-bottom-style: var(--tw-border-style); + border-bottom-width: 0px; + } + } + } + .\[\&\[data-state\=open\]\>svg\]\:rotate-180 { + &[data-state=open]>svg { + rotate: 180deg; + } + } +} +@property --tw-translate-x { + syntax: "*"; + inherits: false; + initial-value: 0; +} +@property --tw-translate-y { + syntax: "*"; + inherits: false; + initial-value: 0; +} +@property --tw-translate-z { + syntax: "*"; + inherits: false; + initial-value: 0; +} +@property --tw-scale-x { + syntax: "*"; + inherits: false; + initial-value: 1; +} +@property --tw-scale-y { + syntax: "*"; + inherits: false; + initial-value: 1; +} +@property --tw-scale-z { + syntax: "*"; + inherits: false; + initial-value: 1; +} +@property --tw-rotate-x { + syntax: "*"; + inherits: false; +} +@property --tw-rotate-y { + syntax: "*"; + inherits: false; +} +@property --tw-rotate-z { + syntax: "*"; + inherits: false; +} +@property --tw-skew-x { + syntax: "*"; + inherits: false; +} +@property --tw-skew-y { + syntax: "*"; + inherits: false; +} +@property --tw-space-y-reverse { + syntax: "*"; + inherits: false; + initial-value: 0; +} +@property --tw-space-x-reverse { + syntax: "*"; + inherits: false; + initial-value: 0; +} +@property --tw-border-style { + syntax: "*"; + inherits: false; + initial-value: solid; +} +@property --tw-gradient-position { + syntax: "*"; + inherits: false; +} +@property --tw-gradient-from { + syntax: ""; + inherits: false; + initial-value: #0000; +} +@property --tw-gradient-via { + syntax: ""; + inherits: false; + initial-value: #0000; +} +@property --tw-gradient-to { + syntax: ""; + inherits: false; + initial-value: #0000; +} +@property --tw-gradient-stops { + syntax: "*"; + inherits: false; +} +@property --tw-gradient-via-stops { + syntax: "*"; + inherits: false; +} +@property --tw-gradient-from-position { + syntax: ""; + inherits: false; + initial-value: 0%; +} +@property --tw-gradient-via-position { + syntax: ""; + inherits: false; + initial-value: 50%; +} +@property --tw-gradient-to-position { + syntax: ""; + inherits: false; + initial-value: 100%; +} +@property --tw-leading { + syntax: "*"; + inherits: false; +} +@property --tw-font-weight { + syntax: "*"; + inherits: false; +} +@property --tw-tracking { + syntax: "*"; + inherits: false; +} +@property --tw-shadow { + syntax: "*"; + inherits: false; + initial-value: 0 0 #0000; +} +@property --tw-shadow-color { + syntax: "*"; + inherits: false; +} +@property --tw-shadow-alpha { + syntax: ""; + inherits: false; + initial-value: 100%; +} +@property --tw-inset-shadow { + syntax: "*"; + inherits: false; + initial-value: 0 0 #0000; +} +@property --tw-inset-shadow-color { + syntax: "*"; + inherits: false; +} +@property --tw-inset-shadow-alpha { + syntax: ""; + inherits: false; + initial-value: 100%; +} +@property --tw-ring-color { + syntax: "*"; + inherits: false; +} +@property --tw-ring-shadow { + syntax: "*"; + inherits: false; + initial-value: 0 0 #0000; +} +@property --tw-inset-ring-color { + syntax: "*"; + inherits: false; +} +@property --tw-inset-ring-shadow { + syntax: "*"; + inherits: false; + initial-value: 0 0 #0000; +} +@property --tw-ring-inset { + syntax: "*"; + inherits: false; +} +@property --tw-ring-offset-width { + syntax: ""; + inherits: false; + initial-value: 0px; +} +@property --tw-ring-offset-color { + syntax: "*"; + inherits: false; + initial-value: #fff; +} +@property --tw-ring-offset-shadow { + syntax: "*"; + inherits: false; + initial-value: 0 0 #0000; +} +@property --tw-outline-style { + syntax: "*"; + inherits: false; + initial-value: solid; +} +@property --tw-blur { + syntax: "*"; + inherits: false; +} +@property --tw-brightness { + syntax: "*"; + inherits: false; +} +@property --tw-contrast { + syntax: "*"; + inherits: false; +} +@property --tw-grayscale { + syntax: "*"; + inherits: false; +} +@property --tw-hue-rotate { + syntax: "*"; + inherits: false; +} +@property --tw-invert { + syntax: "*"; + inherits: false; +} +@property --tw-opacity { + syntax: "*"; + inherits: false; +} +@property --tw-saturate { + syntax: "*"; + inherits: false; +} +@property --tw-sepia { + syntax: "*"; + inherits: false; +} +@property --tw-drop-shadow { + syntax: "*"; + inherits: false; +} +@property --tw-drop-shadow-color { + syntax: "*"; + inherits: false; +} +@property --tw-drop-shadow-alpha { + syntax: ""; + inherits: false; + initial-value: 100%; +} +@property --tw-drop-shadow-size { + syntax: "*"; + inherits: false; +} +@property --tw-backdrop-blur { + syntax: "*"; + inherits: false; +} +@property --tw-backdrop-brightness { + syntax: "*"; + inherits: false; +} +@property --tw-backdrop-contrast { + syntax: "*"; + inherits: false; +} +@property --tw-backdrop-grayscale { + syntax: "*"; + inherits: false; +} +@property --tw-backdrop-hue-rotate { + syntax: "*"; + inherits: false; +} +@property --tw-backdrop-invert { + syntax: "*"; + inherits: false; +} +@property --tw-backdrop-opacity { + syntax: "*"; + inherits: false; +} +@property --tw-backdrop-saturate { + syntax: "*"; + inherits: false; +} +@property --tw-backdrop-sepia { + syntax: "*"; + inherits: false; +} +@property --tw-duration { + syntax: "*"; + inherits: false; +} +@property --tw-ease { + syntax: "*"; + inherits: false; +} +@keyframes spin { + to { + transform: rotate(360deg); + } +} +@keyframes pulse { + 50% { + opacity: 0.5; + } +} +@layer properties { + @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) { + *, ::before, ::after, ::backdrop { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-translate-z: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + --tw-scale-z: 1; + --tw-rotate-x: initial; + --tw-rotate-y: initial; + --tw-rotate-z: initial; + --tw-skew-x: initial; + --tw-skew-y: initial; + --tw-space-y-reverse: 0; + --tw-space-x-reverse: 0; + --tw-border-style: solid; + --tw-gradient-position: initial; + --tw-gradient-from: #0000; + --tw-gradient-via: #0000; + --tw-gradient-to: #0000; + --tw-gradient-stops: initial; + --tw-gradient-via-stops: initial; + --tw-gradient-from-position: 0%; + --tw-gradient-via-position: 50%; + --tw-gradient-to-position: 100%; + --tw-leading: initial; + --tw-font-weight: initial; + --tw-tracking: initial; + --tw-shadow: 0 0 #0000; + --tw-shadow-color: initial; + --tw-shadow-alpha: 100%; + --tw-inset-shadow: 0 0 #0000; + --tw-inset-shadow-color: initial; + --tw-inset-shadow-alpha: 100%; + --tw-ring-color: initial; + --tw-ring-shadow: 0 0 #0000; + --tw-inset-ring-color: initial; + --tw-inset-ring-shadow: 0 0 #0000; + --tw-ring-inset: initial; + --tw-ring-offset-width: 0px; + --tw-ring-offset-color: #fff; + --tw-ring-offset-shadow: 0 0 #0000; + --tw-outline-style: solid; + --tw-blur: initial; + --tw-brightness: initial; + --tw-contrast: initial; + --tw-grayscale: initial; + --tw-hue-rotate: initial; + --tw-invert: initial; + --tw-opacity: initial; + --tw-saturate: initial; + --tw-sepia: initial; + --tw-drop-shadow: initial; + --tw-drop-shadow-color: initial; + --tw-drop-shadow-alpha: 100%; + --tw-drop-shadow-size: initial; + --tw-backdrop-blur: initial; + --tw-backdrop-brightness: initial; + --tw-backdrop-contrast: initial; + --tw-backdrop-grayscale: initial; + --tw-backdrop-hue-rotate: initial; + --tw-backdrop-invert: initial; + --tw-backdrop-opacity: initial; + --tw-backdrop-saturate: initial; + --tw-backdrop-sepia: initial; + --tw-duration: initial; + --tw-ease: initial; + } + } +} diff --git a/electron/resources/ui/assets/css/tailwind.import.css b/electron/resources/ui/assets/css/tailwind.import.css new file mode 100644 index 0000000..f173aa4 --- /dev/null +++ b/electron/resources/ui/assets/css/tailwind.import.css @@ -0,0 +1 @@ +@import 'tailwindcss'; \ No newline at end of file diff --git a/electron/resources/ui/assets/fonts/Syne-Medium.ttf b/electron/resources/ui/assets/fonts/Syne-Medium.ttf new file mode 100644 index 0000000..793e967 Binary files /dev/null and b/electron/resources/ui/assets/fonts/Syne-Medium.ttf differ diff --git a/electron/resources/ui/assets/fonts/Syne-Regular.ttf b/electron/resources/ui/assets/fonts/Syne-Regular.ttf new file mode 100644 index 0000000..3ef725c Binary files /dev/null and b/electron/resources/ui/assets/fonts/Syne-Regular.ttf differ diff --git a/electron/resources/ui/assets/fonts/Unbounded-Medium.ttf b/electron/resources/ui/assets/fonts/Unbounded-Medium.ttf new file mode 100644 index 0000000..aa09345 Binary files /dev/null and b/electron/resources/ui/assets/fonts/Unbounded-Medium.ttf differ diff --git a/electron/resources/ui/assets/fonts/Unbounded-SemiBold.ttf b/electron/resources/ui/assets/fonts/Unbounded-SemiBold.ttf new file mode 100644 index 0000000..683397a Binary files /dev/null and b/electron/resources/ui/assets/fonts/Unbounded-SemiBold.ttf differ diff --git a/electron/resources/ui/assets/images/presenton_logo.png b/electron/resources/ui/assets/images/presenton_logo.png new file mode 100644 index 0000000..4a3ac31 Binary files /dev/null and b/electron/resources/ui/assets/images/presenton_logo.png differ diff --git a/electron/resources/ui/assets/images/presenton_short_filled.png b/electron/resources/ui/assets/images/presenton_short_filled.png new file mode 100644 index 0000000..cdc9340 Binary files /dev/null and b/electron/resources/ui/assets/images/presenton_short_filled.png differ diff --git a/electron/resources/ui/homepage/index.html b/electron/resources/ui/homepage/index.html new file mode 100644 index 0000000..9578692 --- /dev/null +++ b/electron/resources/ui/homepage/index.html @@ -0,0 +1,193 @@ + + + + + + + Presenton + + + + +
+ +

Launching Presenton...

+

Please wait a moment

+
+
+
+

Preparing your workspace

+
+ + + + \ No newline at end of file diff --git a/electron/resources/ui/homepage/script.js b/electron/resources/ui/homepage/script.js new file mode 100644 index 0000000..64b8aec --- /dev/null +++ b/electron/resources/ui/homepage/script.js @@ -0,0 +1,46 @@ +window.addEventListener("DOMContentLoaded", () => { + const subtitleEl = document.querySelector("[data-startup-subtitle]"); + const hintEl = document.querySelector("[data-startup-hint]"); + const progressEl = document.querySelector("[data-startup-progress]"); + const meterEl = document.querySelector("[data-startup-meter]"); + + let visualProgress = 0.24; + let targetProgress = 0.62; + + function applyProgress(value) { + const clampedValue = Math.max(0.18, Math.min(value, 1)); + if (progressEl) { + progressEl.style.setProperty("--progress", String(clampedValue)); + progressEl.style.transform = `scaleX(${clampedValue})`; + } + if (meterEl) { + meterEl.setAttribute("aria-valuenow", String(Math.round(clampedValue * 100))); + } + } + + function updateStateCopy() { + if (subtitleEl) subtitleEl.textContent = "Please wait a moment"; + if (hintEl) hintEl.textContent = "Opening your workspace"; + } + + function animateProgress() { + visualProgress += (targetProgress - visualProgress) * 0.08; + applyProgress(visualProgress); + window.requestAnimationFrame(animateProgress); + } + + updateStateCopy(); + applyProgress(visualProgress); + animateProgress(); + + window.setInterval(() => { + if (targetProgress < 0.88) { + targetProgress = Math.min(0.88, targetProgress + 0.025); + } + }, 1200); + + window.addEventListener("beforeunload", () => { + targetProgress = 1; + applyProgress(1); + }); +}); diff --git a/electron/scripts/build-nextjs-resources.cjs b/electron/scripts/build-nextjs-resources.cjs new file mode 100644 index 0000000..9ba316c --- /dev/null +++ b/electron/scripts/build-nextjs-resources.cjs @@ -0,0 +1,90 @@ +const fs = require("fs"); +const path = require("path"); +const { spawnSync } = require("child_process"); + +const electronRoot = path.join(__dirname, ".."); +const nextjsDir = path.join(electronRoot, "..", "servers", "nextjs"); +const outDir = path.join(electronRoot, "resources", "nextjs"); +const nextBuildDir = path.join(nextjsDir, ".next-build"); +const standaloneDir = path.join(nextBuildDir, "standalone"); + +function rm(p) { + fs.rmSync(p, { recursive: true, force: true }); +} + +function cpDir(src, dest) { + fs.mkdirSync(path.dirname(dest), { recursive: true }); + fs.cpSync(src, dest, { recursive: true }); +} + +console.log("Running Next.js production build (BUILD_TARGET=electron)…"); + +rm(outDir); +rm(nextBuildDir); + +const npmCmd = process.platform === "win32" ? "npm.cmd" : "npm"; +const build = spawnSync(npmCmd, ["run", "build"], { + cwd: nextjsDir, + env: { ...process.env, BUILD_TARGET: "electron" }, + stdio: "inherit", + // Windows: cmd is required to run npm.cmd; without shell, spawnSync can throw EINVAL. + shell: process.platform === "win32", +}); + +if (build.error) { + console.error(build.error); + process.exit(1); +} +if (build.status !== 0) { + process.exit(build.status ?? 1); +} + +if (!fs.existsSync(standaloneDir)) { + console.error("Expected standalone output at:", standaloneDir); + process.exit(1); +} + +fs.mkdirSync(path.join(outDir, ".next-build"), { recursive: true }); + +for (const name of fs.readdirSync(standaloneDir)) { + fs.cpSync( + path.join(standaloneDir, name), + path.join(outDir, name), + { recursive: true } + ); +} + +// Next.js 16 standalone traces the app under servers/nextjs/; the server process +// runs from that directory, so static assets and public files must live beside +// server.js — not only at the bundle root (older Next versions used a flatter layout). +const nestedStandaloneDir = path.join(outDir, "servers", "nextjs"); + +const staticSrc = path.join(nextBuildDir, "static"); +const staticDestinations = [ + path.join(outDir, ".next-build", "static"), + path.join(nestedStandaloneDir, ".next-build", "static"), +]; +if (fs.existsSync(staticSrc)) { + for (const staticDest of staticDestinations) { + cpDir(staticSrc, staticDest); + } +} else { + console.error("Expected Next.js static output at:", staticSrc); + process.exit(1); +} + +const publicDir = path.join(nextjsDir, "public"); +if (fs.existsSync(publicDir)) { + cpDir(publicDir, path.join(outDir, "public")); + if (fs.existsSync(nestedStandaloneDir)) { + cpDir(publicDir, path.join(nestedStandaloneDir, "public")); + } +} + +const templatesSrc = path.join(nextjsDir, "app", "presentation-templates"); +const templatesDest = path.join(outDir, "presentation-templates"); +if (fs.existsSync(templatesSrc)) { + cpDir(templatesSrc, templatesDest); +} + +console.log("Next.js bundle copied to:", outDir); diff --git a/electron/scripts/check-main-no-undef.cjs b/electron/scripts/check-main-no-undef.cjs new file mode 100644 index 0000000..f67274b --- /dev/null +++ b/electron/scripts/check-main-no-undef.cjs @@ -0,0 +1,79 @@ +#!/usr/bin/env node + +const fs = require("fs"); +const path = require("path"); +const ts = require("typescript"); + +const repoRoot = path.resolve(__dirname, ".."); +const appDistDir = path.join(repoRoot, "app_dist"); + +const rootBuildFiles = ["build.js"].map((file) => path.join(repoRoot, file)); + +const scriptsDir = path.join(repoRoot, "scripts"); +const scriptBuildFiles = walkFiles( + scriptsDir, + (file) => file.endsWith(".cjs") || file.endsWith(".js"), +); + +function walkFiles(dir, predicate, results = []) { + if (!fs.existsSync(dir)) { + return results; + } + + for (const entry of fs.readdirSync(dir, { withFileTypes: true })) { + const fullPath = path.join(dir, entry.name); + if (entry.isDirectory()) { + walkFiles(fullPath, predicate, results); + } else if (predicate(fullPath)) { + results.push(fullPath); + } + } + + return results; +} + +const generatedMainFiles = walkFiles(appDistDir, (file) => file.endsWith(".js")); + +if (generatedMainFiles.length === 0) { + console.error( + "No generated Electron main files found in app_dist. Run `npm run build:ts` first.", + ); + process.exit(1); +} + +const files = [ + ...generatedMainFiles, + ...rootBuildFiles.filter((file) => fs.existsSync(file)), + ...scriptBuildFiles, +]; + +const program = ts.createProgram(files, { + allowJs: true, + checkJs: true, + noEmit: true, + skipLibCheck: true, + strict: false, + noImplicitAny: false, + module: ts.ModuleKind.CommonJS, + moduleResolution: ts.ModuleResolutionKind.Node10, + target: ts.ScriptTarget.ES2020, +}); + +const undefinedNameDiagnostics = ts + .getPreEmitDiagnostics(program) + .filter((diagnostic) => diagnostic.code === 2304); + +if (undefinedNameDiagnostics.length > 0) { + const host = { + getCanonicalFileName: (fileName) => fileName, + getCurrentDirectory: () => repoRoot, + getNewLine: () => "\n", + }; + + console.error( + ts.formatDiagnosticsWithColorAndContext(undefinedNameDiagnostics, host), + ); + process.exit(1); +} + +console.log(`No undefined names found in ${files.length} Electron main JS files.`); diff --git a/electron/scripts/copy-fastapi-assets.cjs b/electron/scripts/copy-fastapi-assets.cjs new file mode 100644 index 0000000..066910f --- /dev/null +++ b/electron/scripts/copy-fastapi-assets.cjs @@ -0,0 +1,35 @@ +const fs = require("fs"); +const path = require("path"); + +const electronRoot = path.join(__dirname, ".."); +const fastapiDir = path.join(electronRoot, "..", "servers", "fastapi"); +const resourcesFastapiDir = path.join(electronRoot, "resources", "fastapi"); + +const sources = [ + { name: "static", src: path.join(fastapiDir, "static"), dest: path.join(resourcesFastapiDir, "static") }, + { name: "assets", src: path.join(fastapiDir, "assets"), dest: path.join(resourcesFastapiDir, "assets") }, +]; + +function copyDir(src, dest) { + if (!fs.existsSync(src)) { + throw new Error(`Source directory not found: ${src}`); + } + fs.mkdirSync(dest, { recursive: true }); + fs.cpSync(src, dest, { recursive: true, force: true }); +} + +function main() { + fs.mkdirSync(resourcesFastapiDir, { recursive: true }); + + for (const { name, src, dest } of sources) { + console.log(`[fastapi-assets] Copying ${name} -> ${dest}`); + copyDir(src, dest); + } +} + +try { + main(); +} catch (error) { + console.error(`[fastapi-assets] ${error.message}`); + process.exit(1); +} diff --git a/electron/scripts/ensure-spacy-model.cjs b/electron/scripts/ensure-spacy-model.cjs new file mode 100644 index 0000000..90f0a40 --- /dev/null +++ b/electron/scripts/ensure-spacy-model.cjs @@ -0,0 +1,86 @@ +const fs = require("fs"); +const path = require("path"); +const { spawnSync } = require("child_process"); + +const electronRoot = path.join(__dirname, ".."); +const fastapiDir = path.join(electronRoot, "..", "servers", "fastapi"); +const uvCmd = process.platform === "win32" ? "uv.exe" : "uv"; +const requiredModel = process.env.MEM0_SPACY_MODEL || "en_core_web_sm"; +const strictMode = + (process.env.MEM0_SPACY_STRICT || "").trim().toLowerCase() === "true"; +const venvDir = path.join(fastapiDir, ".venv"); + +function runUv(args, description) { + const result = spawnSync(uvCmd, args, { + cwd: fastapiDir, + stdio: "inherit", + env: process.env, + }); + + if (result.error) { + throw new Error(`${description} failed: ${result.error.message}`); + } + return result.status === 0; +} + +function runUvPython(args, description) { + return runUv(["run", "python", ...args], description); +} + +function ensureVenv() { + if (fs.existsSync(venvDir)) { + return true; + } + console.log(`[spacy-setup] Creating uv venv at ${venvDir}`); + return runUv(["venv"], "uv venv"); +} + +function hasModelInstalled() { + return runUvPython( + ["-c", `import spacy; spacy.load("${requiredModel}")`], + `spaCy model check (${requiredModel})`, + ); +} + +function installModel() { + return runUvPython( + ["-m", "spacy", "download", requiredModel], + `spaCy model install (${requiredModel})`, + ); +} + +function main() { + if (!ensureVenv()) { + throw new Error("Failed to create uv virtual environment"); + } + console.log(`[spacy-setup] Checking spaCy model: ${requiredModel}`); + if (hasModelInstalled()) { + console.log( + `[spacy-setup] spaCy model already available: ${requiredModel}`, + ); + return; + } + + console.log(`[spacy-setup] Installing spaCy model: ${requiredModel}`); + const installed = installModel(); + if (installed && hasModelInstalled()) { + console.log(`[spacy-setup] spaCy model installed: ${requiredModel}`); + return; + } + + const message = + `[spacy-setup] Could not install spaCy model (${requiredModel}). ` + + "Mem0 will self-disable at runtime if this dependency is unavailable."; + + if (strictMode) { + throw new Error(message); + } + console.warn(message); +} + +try { + main(); +} catch (error) { + console.error(`[spacy-setup] ${error.message}`); + process.exit(1); +} diff --git a/electron/scripts/generate-version.cjs b/electron/scripts/generate-version.cjs new file mode 100644 index 0000000..0638439 --- /dev/null +++ b/electron/scripts/generate-version.cjs @@ -0,0 +1,32 @@ +const fs = require("fs"); +const path = require("path"); + +const electronRoot = path.join(__dirname, ".."); +const pkg = JSON.parse( + fs.readFileSync(path.join(electronRoot, "package.json"), "utf8"), +); +let existing = {}; +try { + existing = JSON.parse( + fs.readFileSync(path.join(electronRoot, "version.json"), "utf8"), + ); +} catch (_) {} + +const version = pkg.version; + +const update = { + version, + message: process.env.UPDATE_MESSAGE || existing.message || "", + downloads: { + linux: `https://github.com/presenton/presenton/releases/download/electron-v${version}/Presenton-${version}.deb`, + mac: `https://github.com/presenton/presenton/releases/download/electron-v${version}/Presenton-${version}.dmg`, + windows: `https://github.com/presenton/presenton/releases/download/electron-v${version}/Presenton-${version}.exe`, + }, +}; + +fs.writeFileSync( + path.join(electronRoot, "version.json"), + JSON.stringify(update, null, 2), +); + +console.log("version.json generated"); diff --git a/electron/scripts/prepare-export-chromium.cjs b/electron/scripts/prepare-export-chromium.cjs new file mode 100644 index 0000000..282b283 --- /dev/null +++ b/electron/scripts/prepare-export-chromium.cjs @@ -0,0 +1,466 @@ +const fs = require("fs"); +const os = require("os"); +const path = require("path"); +const { spawnSync } = require("child_process"); +const { + Browser, + computeExecutablePath, + detectBrowserPlatform, + install, +} = require("@puppeteer/browsers"); + +const buildId = (process.env.EXPORT_CHROME_BUILD_ID || "146.0.7680.76").trim(); +const cacheDir = path.join(__dirname, "..", "resources", "chromium"); +const manifestPath = path.join(cacheDir, "presenton-runtime.json"); +const windowsRequiredRuntimeFiles = [ + "chrome.dll", + "chrome_100_percent.pak", + "chrome_200_percent.pak", + "icudtl.dat", + "resources.pak", + "v8_context_snapshot.bin", + path.join("locales", "en-US.pak"), +]; + +function getRevisionDir(platform) { + return path.join(cacheDir, Browser.CHROME, `${platform}-${buildId}`); +} + +function fileLooksPresent(filePath) { + try { + const stat = fs.statSync(filePath); + return stat.isFile() && stat.size > 0; + } catch { + return false; + } +} + +function validateWindowsRuntimeLayout(executablePath) { + if (!fileLooksPresent(executablePath)) { + return { ok: false, reason: `Chromium executable is missing: ${executablePath}` }; + } + + const chromeDir = path.dirname(executablePath); + const missingFiles = windowsRequiredRuntimeFiles.filter( + (fileName) => !fileLooksPresent(path.join(chromeDir, fileName)) + ); + if (missingFiles.length > 0) { + return { + ok: false, + reason: `Chromium runtime layout is incomplete. Missing: ${missingFiles.join(", ")}`, + }; + } + + return { ok: true }; +} + +function runtimeLooksComplete(executablePath) { + if (!fs.existsSync(executablePath)) { + return false; + } + if (process.platform === "darwin") { + return macChromiumBundleLooksCodeSignReady(executablePath); + } + if (process.platform !== "win32") { + return true; + } + + return validateWindowsRuntimeLayout(executablePath).ok; +} + +function removeProbeProfile(profileDir) { + try { + fs.rmSync(profileDir, { + recursive: true, + force: true, + maxRetries: 10, + retryDelay: 100, + }); + } catch (error) { + console.warn( + `[Chromium] Could not remove temporary probe profile ${profileDir}: ${error.message}`, + ); + } +} + +function validateExecutable(executablePath) { + if (process.platform === "win32") { + // Windows Chrome startup can be slow or session-dependent during packaging. + // Runtime export still probes launchability, so the build validates the bundle. + return validateWindowsRuntimeLayout(executablePath); + } + + if (!runtimeLooksComplete(executablePath)) { + return { ok: false, reason: "Chromium runtime layout is incomplete." }; + } + + if (process.platform === "darwin") { + const appBundlePath = findAppBundle(executablePath); + const result = spawnSync( + "codesign", + ["--verify", "--deep", "--strict", appBundlePath], + { + stdio: ["ignore", "pipe", "pipe"], + encoding: "utf8", + }, + ); + if (result.status !== 0) { + const detail = result.error?.message || result.stderr || `status=${result.status}`; + return { ok: false, reason: detail.trim() }; + } + return { ok: true }; + } + + if (process.platform === "linux") { + const result = spawnSync(executablePath, ["--version"], { + stdio: ["ignore", "pipe", "pipe"], + encoding: "utf8", + }); + if (result.error || result.status !== 0) { + const detail = result.error?.message || result.stderr || `status=${result.status}`; + return { ok: false, reason: detail.trim() }; + } + if (!/chrome|chromium/i.test(result.stdout || "")) { + return { ok: false, reason: "Chromium version probe produced unexpected output." }; + } + return { ok: true }; + } + + const profileDir = fs.mkdtempSync(path.join(os.tmpdir(), "presenton-chromium-probe-")); + try { + const result = spawnSync( + executablePath, + [ + "--headless=new", + "--disable-gpu", + "--disable-dev-shm-usage", + "--disable-extensions", + "--disable-crash-reporter", + "--no-first-run", + "--no-sandbox", + "--password-store=basic", + "--use-mock-keychain", + `--user-data-dir=${profileDir}`, + "--dump-dom", + "about:blank", + ], + { + stdio: ["ignore", "pipe", "pipe"], + encoding: "utf8", + timeout: 15000, + windowsHide: process.platform === "win32", + }, + ); + if (result.status !== 0) { + const detail = result.error?.message || result.stderr || `status=${result.status}`; + return { ok: false, reason: detail.trim() }; + } + if (!(result.stdout || "").toLowerCase().includes(" entry.name !== "Current" && entry.isDirectory()) + .map((entry) => entry.name); + const currentTarget = + isSymlink(currentPath) && + fs.existsSync(path.resolve(versionsPath, fs.readlinkSync(currentPath))) + ? fs.readlinkSync(currentPath) + : versionEntries[0]; + + if (!currentTarget) { + return 0; + } + + if (!isSymlink(currentPath) || fs.readlinkSync(currentPath) !== currentTarget) { + fs.rmSync(currentPath, { recursive: true, force: true }); + fs.symlinkSync(currentTarget, currentPath); + rewritten += 1; + } + + const topLevelSymlinks = [ + "Google Chrome for Testing Framework", + "Helpers", + "Libraries", + "Resources", + ]; + for (const name of topLevelSymlinks) { + const linkPath = path.join(frameworkPath, name); + const linkTarget = ["Versions", "Current", name].join("/"); + if (!fs.existsSync(path.resolve(frameworkPath, linkTarget))) { + continue; + } + if (isSymlink(linkPath) && fs.readlinkSync(linkPath) === linkTarget) { + continue; + } + + fs.rmSync(linkPath, { recursive: true, force: true }); + fs.symlinkSync(linkTarget, linkPath); + rewritten += 1; + } + + return rewritten; +} + +function canonicalizeMacFrameworkSymlinks(rootDir) { + if (!fs.existsSync(rootDir)) { + return 0; + } + + const stack = [rootDir]; + let rewritten = 0; + while (stack.length) { + const current = stack.pop(); + const entries = fs.readdirSync(current, { withFileTypes: true }); + for (const entry of entries) { + const fullPath = path.join(current, entry.name); + if (!entry.isDirectory()) { + continue; + } + if (entry.name === "Google Chrome for Testing Framework.framework") { + rewritten += canonicalizeFrameworkSymlinkTargets(fullPath); + continue; + } + if (entry.name.endsWith(".framework")) { + continue; + } + stack.push(fullPath); + } + } + + return rewritten; +} + +function normalizeMacBundleForPackaging(executablePath) { + const appBundlePath = findAppBundle(executablePath); + if (!appBundlePath || !fs.existsSync(appBundlePath)) { + return 0; + } + + const frameworkPath = macChromiumFrameworkPath(appBundlePath); + const rewritten = canonicalizeFrameworkSymlinkTargets(frameworkPath); + if (rewritten > 0) { + console.log( + `[Chromium] Canonicalized ${rewritten} framework symlinks for App Store packaging.`, + ); + } + adHocSignMacBundle(appBundlePath); + return rewritten; +} + +function adHocSignMacBundle(appBundlePath) { + if (process.platform !== "darwin") { + return; + } + + const result = spawnSync( + "codesign", + ["--force", "--deep", "--sign", "-", "--timestamp=none", appBundlePath], + { + stdio: ["ignore", "pipe", "pipe"], + encoding: "utf8", + }, + ); + if (result.status !== 0) { + throw new Error( + `Failed to re-sign normalized Chromium bundle: ${(result.stderr || result.stdout || "").trim()}`, + ); + } + console.log(`[Chromium] Re-signed normalized macOS bundle: ${appBundlePath}`); +} + +function normalizeBundledMacChromiumForPackaging(rootDir = cacheDir) { + const rewritten = canonicalizeMacFrameworkSymlinks(rootDir); + if (rewritten > 0) { + console.log( + `[Chromium] Canonicalized ${rewritten} bundled macOS framework symlinks before packaging.`, + ); + } + return rewritten; +} + +function removeIncompleteRuntime(platform, executablePath) { + if (validateExecutable(executablePath).ok) { + return; + } + + const revisionDir = getRevisionDir(platform); + if (!fs.existsSync(revisionDir)) { + return; + } + + console.log( + `[Chromium] Removing incomplete runtime before download: ${revisionDir}` + ); + fs.rmSync(revisionDir, { recursive: true, force: true }); +} + +async function main() { + if (process.env.SKIP_BUNDLED_CHROMIUM === "1") { + console.log("[Chromium] SKIP_BUNDLED_CHROMIUM=1; leaving runtime unbundled."); + return; + } + + const platform = detectBrowserPlatform(); + if (!platform) { + throw new Error(`Unsupported platform for bundled Chromium: ${process.platform}-${process.arch}`); + } + + const options = { + browser: Browser.CHROME, + buildId, + cacheDir, + platform, + }; + const executablePath = computeExecutablePath(options); + if (runtimeLooksComplete(executablePath)) { + if (!validateExecutable(executablePath).ok) { + removeIncompleteRuntime(platform, executablePath); + } else { + normalizeMacBundleForPackaging(executablePath); + if (!validateExecutable(executablePath).ok) { + removeIncompleteRuntime(platform, executablePath); + } else { + writeManifest(platform, executablePath); + console.log(`[Chromium] Bundled runtime already exists: ${executablePath}`); + return; + } + } + } + + if (validateExecutable(executablePath).ok) { + writeManifest(platform, executablePath); + return; + } + + removeIncompleteRuntime(platform, executablePath); + fs.mkdirSync(cacheDir, { recursive: true }); + console.log(`[Chromium] Downloading Chrome for Testing ${buildId} into ${cacheDir}`); + await install({ + ...options, + downloadProgressCallback(downloadedBytes, totalBytes) { + if (totalBytes <= 0) return; + const percent = Math.floor((downloadedBytes / totalBytes) * 100); + process.stdout.write(`\r[Chromium] ${percent}%`); + }, + }); + process.stdout.write("\n"); + + normalizeMacBundleForPackaging(executablePath); + const validation = validateExecutable(executablePath); + if (!validation.ok) { + throw new Error( + `Chromium install finished, but the launch probe failed: ${validation.reason}\n${executablePath}`, + ); + } + writeManifest(platform, executablePath); + console.log(`[Chromium] Bundled runtime ready: ${executablePath}`); +} + +if (require.main === module) { + main().catch((error) => { + console.error(error); + process.exit(1); + }); +} + +module.exports = { + adHocSignMacBundle, + canonicalizeMacFrameworkSymlinks, + normalizeBundledMacChromiumForPackaging, + normalizeMacBundleForPackaging, +}; diff --git a/electron/scripts/prepare-imagemagick.cjs b/electron/scripts/prepare-imagemagick.cjs new file mode 100644 index 0000000..2d8dc64 --- /dev/null +++ b/electron/scripts/prepare-imagemagick.cjs @@ -0,0 +1,703 @@ +#!/usr/bin/env node +const fs = require("fs"); +const https = require("https"); +const os = require("os"); +const path = require("path"); +const { spawnSync } = require("child_process"); +const { path7za } = require("7zip-bin"); + +const VERSION = process.env.IMAGEMAGICK_VERSION || "7.1.2-18"; +const PLATFORM = process.platform; +const ARCH = process.arch; +const TARGET_DIR = path.join(__dirname, "..", "resources", "imagemagick", `${PLATFORM}-${ARCH}`); +const CACHE_DIR = path.join(__dirname, "..", ".cache", "imagemagick", VERSION); +const MANIFEST_NAME = "presenton-runtime.json"; + +function log(message) { + console.log(`[imagemagick] ${message}`); +} + +function fail(message) { + console.error(`[imagemagick] ${message}`); + process.exit(1); +} + +function run(command, args, options = {}) { + const result = spawnSync(command, args, { + stdio: "inherit", + windowsHide: true, + ...options, + }); + if (result.status !== 0) { + fail(`${command} ${args.join(" ")} failed with code ${result.status}`); + } + return result; +} + +function capture(command, args, options = {}) { + return spawnSync(command, args, { + stdio: ["ignore", "pipe", "pipe"], + encoding: "utf8", + windowsHide: true, + ...options, + }); +} + +function runtimeEnv(binaryPath) { + const homeDir = fs.statSync(binaryPath).isFile() + ? path.dirname(binaryPath) + : binaryPath; + const tempDir = process.env.TEMP || process.env.TMPDIR || os.tmpdir() || homeDir; + return { + ...process.env, + MAGICK_HOME: path.basename(homeDir).toLowerCase() === "bin" + ? path.dirname(homeDir) + : homeDir, + MAGICK_CONFIGURE_PATH: path.basename(homeDir).toLowerCase() === "bin" + ? path.dirname(homeDir) + : homeDir, + MAGICK_TEMPORARY_PATH: tempDir, + MAGICK_OCL_DEVICE: "OFF", + APPIMAGE_EXTRACT_AND_RUN: "1", + }; +} + +function versionOutput(binaryPath) { + const result = spawnSync(binaryPath, ["-version"], { + stdio: ["ignore", "pipe", "pipe"], + encoding: "utf8", + timeout: 120000, + env: runtimeEnv(binaryPath), + windowsHide: true, + }); + if (result.status !== 0 || result.signal) { + const reason = result.error?.message + || (result.stderr || "").trim() + || (result.signal ? `terminated by signal ${result.signal}` : `exit ${result.status}`); + return { ok: false, reason }; + } + const output = `${result.stdout || ""}\n${result.stderr || ""}`.trim(); + return { ok: output.toLowerCase().includes("imagemagick"), output }; +} + +function readManifest(targetDir) { + const manifestPath = path.join(targetDir, MANIFEST_NAME); + if (!fs.existsSync(manifestPath)) { + return null; + } + try { + return JSON.parse(fs.readFileSync(manifestPath, "utf8")); + } catch { + return null; + } +} + +function writeManifest(targetDir, manifest) { + fs.writeFileSync( + path.join(targetDir, MANIFEST_NAME), + JSON.stringify( + { + version: VERSION, + platform: PLATFORM, + arch: ARCH, + createdAt: new Date().toISOString(), + ...manifest, + }, + null, + 2, + ), + ); +} + +function validateRuntime(targetDir) { + const manifest = readManifest(targetDir); + const binary = manifest?.binary || (PLATFORM === "win32" ? "magick.exe" : "bin/magick"); + const binaryPath = path.join(targetDir, binary); + if (!fs.existsSync(binaryPath)) { + return null; + } + if (PLATFORM !== "win32") { + try { + fs.chmodSync(binaryPath, 0o755); + } catch { + return null; + } + } + const result = versionOutput(binaryPath); + if (!result.ok) { + log(`Runtime validation failed for ${binaryPath}: ${result.reason}`); + return null; + } + return { binaryPath, output: result.output }; +} + +function archiveName() { + if (PLATFORM !== "win32") { + return null; + } + const archName = ARCH === "x64" ? "x64" : ARCH === "arm64" ? "arm64" : ARCH === "ia32" ? "x86" : null; + if (!archName) { + fail(`No bundled ImageMagick Windows asset configured for ${PLATFORM}-${ARCH}`); + } + return `ImageMagick-${VERSION}-portable-Q16-${archName}.7z`; +} + +function linuxAppImageArch() { + if (PLATFORM !== "linux") { + return null; + } + if (ARCH !== "x64") { + fail(`No bundled ImageMagick Linux AppImage asset configured for ${PLATFORM}-${ARCH}`); + } + return "x86_64"; +} + +function linuxDefaultAppImageName() { + return `ImageMagick-${VERSION}-gcc-${linuxAppImageArch()}.AppImage`; +} + +function parseAssetNameFromUrl(urlValue) { + try { + const pathname = new URL(urlValue).pathname; + const name = pathname.split("/").filter(Boolean).pop(); + return name || null; + } catch { + return null; + } +} + +function downloadUrl(assetName) { + if (process.env.IMAGEMAGICK_DOWNLOAD_URL) { + return process.env.IMAGEMAGICK_DOWNLOAD_URL; + } + return `https://github.com/ImageMagick/ImageMagick/releases/download/${VERSION}/${assetName}`; +} + +function downloadFile(url, destination) { + return new Promise((resolve, reject) => { + const request = https.get( + url, + { headers: { "User-Agent": "Presenton ImageMagick runtime fetcher" } }, + (response) => { + if ([301, 302, 303, 307, 308].includes(response.statusCode || 0)) { + const location = response.headers.location; + if (!location) { + reject(new Error(`Redirect from ${url} did not include Location`)); + return; + } + response.resume(); + downloadFile(new URL(location, url).toString(), destination).then(resolve, reject); + return; + } + if (response.statusCode !== 200) { + reject(new Error(`Download failed with HTTP ${response.statusCode}: ${url}`)); + response.resume(); + return; + } + fs.mkdirSync(path.dirname(destination), { recursive: true }); + const file = fs.createWriteStream(destination); + response.pipe(file); + file.on("finish", () => file.close(resolve)); + file.on("error", reject); + }, + ); + request.on("error", reject); + }); +} + +function fetchJson(url) { + return new Promise((resolve, reject) => { + const request = https.get( + url, + { + headers: { + "User-Agent": "Presenton ImageMagick runtime fetcher", + Accept: "application/vnd.github+json", + }, + }, + (response) => { + if ([301, 302, 303, 307, 308].includes(response.statusCode || 0)) { + const location = response.headers.location; + if (!location) { + reject(new Error(`Redirect from ${url} did not include Location`)); + return; + } + response.resume(); + fetchJson(new URL(location, url).toString()).then(resolve, reject); + return; + } + if (response.statusCode !== 200) { + reject(new Error(`Request failed with HTTP ${response.statusCode}: ${url}`)); + response.resume(); + return; + } + + const chunks = []; + response.on("data", (chunk) => chunks.push(Buffer.from(chunk))); + response.on("end", () => { + try { + const body = Buffer.concat(chunks).toString("utf8"); + resolve(JSON.parse(body)); + } catch (error) { + reject(error); + } + }); + response.on("error", reject); + }, + ); + request.on("error", reject); + }); +} + +function uniqueNonEmpty(values) { + return values.filter(Boolean).filter((value, index, all) => all.indexOf(value) === index); +} + +async function linuxAppImageCandidates() { + const configuredAsset = process.env.IMAGEMAGICK_LINUX_ASSET_NAME?.trim(); + if (configuredAsset) { + return [configuredAsset]; + } + + const arch = linuxAppImageArch(); + const downloadOverride = process.env.IMAGEMAGICK_DOWNLOAD_URL?.trim(); + if (downloadOverride) { + return [parseAssetNameFromUrl(downloadOverride) || linuxDefaultAppImageName()]; + } + + const fallbackName = linuxDefaultAppImageName(); + const candidates = [fallbackName]; + try { + const release = await fetchJson(`https://api.github.com/repos/ImageMagick/ImageMagick/releases/tags/${VERSION}`); + const assets = Array.isArray(release?.assets) ? release.assets : []; + const appImages = assets + .map((asset) => asset?.name) + .filter((name) => typeof name === "string" && name.endsWith(`-${arch}.AppImage`)); + + const scored = appImages + .map((name) => ({ + name, + score: name === fallbackName + ? 100 + : name.includes(`-gcc-${arch}.AppImage`) + ? 90 + : name.includes(`-clang-${arch}.AppImage`) + ? 80 + : 70, + })) + .sort((a, b) => b.score - a.score) + .map((entry) => entry.name); + + candidates.push(...scored); + } catch (error) { + log(`Could not resolve Linux AppImage assets from release metadata: ${error?.message || error}`); + } + + return uniqueNonEmpty(candidates); +} + +function findMagickDir(root) { + const stack = [root]; + while (stack.length) { + const current = stack.pop(); + const entries = fs.readdirSync(current, { withFileTypes: true }); + if (entries.some((entry) => entry.isFile() && entry.name.toLowerCase() === "magick.exe")) { + return current; + } + for (const entry of entries) { + if (entry.isDirectory()) { + stack.push(path.join(current, entry.name)); + } + } + } + return null; +} + +async function prepareWindows() { + if (!path7za || !fs.existsSync(path7za)) { + fail("7zip-bin is unavailable; run npm install before preparing ImageMagick."); + } + + const assetName = archiveName(); + const archivePath = path.join(CACHE_DIR, assetName); + const extractDir = path.join(CACHE_DIR, "extract"); + const tempTarget = `${TARGET_DIR}.tmp`; + + if (!fs.existsSync(archivePath)) { + const url = downloadUrl(assetName); + log(`Downloading ${url}`); + await downloadFile(url, archivePath); + } else { + log(`Using cached archive: ${archivePath}`); + } + + fs.rmSync(extractDir, { recursive: true, force: true }); + fs.mkdirSync(extractDir, { recursive: true }); + log(`Extracting ${archivePath}`); + run(path7za, ["x", archivePath, `-o${extractDir}`, "-y"]); + + const magickDir = findMagickDir(extractDir); + if (!magickDir) { + fail("Extracted archive did not contain magick.exe"); + } + + fs.rmSync(tempTarget, { recursive: true, force: true }); + fs.mkdirSync(path.dirname(tempTarget), { recursive: true }); + fs.cpSync(magickDir, tempTarget, { recursive: true }); + writeManifest(tempTarget, { + kind: "windows-portable", + binary: "magick.exe", + source: downloadUrl(assetName), + }); + + if (!validateRuntime(tempTarget)) { + fail(`Prepared runtime failed validation at ${tempTarget}`); + } + + fs.rmSync(TARGET_DIR, { recursive: true, force: true }); + fs.renameSync(tempTarget, TARGET_DIR); + log(`Prepared ${path.join(TARGET_DIR, "magick.exe")}`); +} + +async function prepareLinux() { + const candidates = await linuxAppImageCandidates(); + const tempTarget = `${TARGET_DIR}.tmp`; + let assetName = null; + let appImagePath = null; + let lastDownloadError = null; + + for (const candidate of candidates) { + const candidatePath = path.join(CACHE_DIR, candidate); + if (fs.existsSync(candidatePath)) { + log(`Using cached AppImage: ${candidatePath}`); + assetName = candidate; + appImagePath = candidatePath; + break; + } + + const url = downloadUrl(candidate); + log(`Downloading ${url}`); + try { + await downloadFile(url, candidatePath); + assetName = candidate; + appImagePath = candidatePath; + break; + } catch (error) { + lastDownloadError = error; + const message = String(error?.message || error); + if (message.includes("HTTP 404")) { + log(`ImageMagick asset not found (${candidate}); trying next candidate.`); + continue; + } + throw error; + } + } + + if (!assetName || !appImagePath) { + const reason = lastDownloadError?.message || lastDownloadError || "no candidate succeeded"; + fail(`Could not fetch Linux ImageMagick AppImage: ${reason}`); + } + + fs.rmSync(tempTarget, { recursive: true, force: true }); + fs.mkdirSync(path.join(tempTarget, "bin"), { recursive: true }); + + const runtimeAppImage = path.join(tempTarget, assetName); + fs.copyFileSync(appImagePath, runtimeAppImage); + fs.chmodSync(runtimeAppImage, 0o755); + + const wrapperPath = path.join(tempTarget, "bin", "magick"); + fs.writeFileSync( + wrapperPath, + [ + "#!/usr/bin/env sh", + "set -eu", + 'DIR="$(CDPATH= cd -- "$(dirname -- "$0")/.." && pwd)"', + "export APPIMAGE_EXTRACT_AND_RUN=${APPIMAGE_EXTRACT_AND_RUN:-1}", + 'exec "$DIR/' + assetName + '" "$@"', + "", + ].join("\n"), + ); + fs.chmodSync(wrapperPath, 0o755); + writeManifest(tempTarget, { + kind: "linux-appimage", + binary: "bin/magick", + appImage: assetName, + source: downloadUrl(assetName), + }); + + if (!validateRuntime(tempTarget)) { + fail(`Prepared runtime failed validation at ${tempTarget}`); + } + + fs.rmSync(TARGET_DIR, { recursive: true, force: true }); + fs.renameSync(tempTarget, TARGET_DIR); + log(`Prepared ${path.join(TARGET_DIR, "bin", "magick")}`); +} + +function resolveCommandPath(command) { + if (path.isAbsolute(command)) { + return fs.existsSync(command) ? command : null; + } + const result = capture("which", [command]); + const resolved = (result.stdout || "").trim().split(/\r?\n/).filter(Boolean)[0]; + return result.status === 0 && resolved ? resolved : null; +} + +function resolveMacPrefixFromMagickBinary(magickPath) { + if (!magickPath || !fs.existsSync(magickPath)) { + return null; + } + const realMagick = fs.realpathSync(magickPath); + const binDir = path.dirname(realMagick); + const prefix = path.dirname(binDir); + return fs.existsSync(path.join(prefix, "bin", "magick")) ? prefix : null; +} + +function listBrewCandidates() { + return [resolveCommandPath("brew"), "/opt/homebrew/bin/brew", "/usr/local/bin/brew"] + .filter(Boolean) + .filter((candidate, index, all) => all.indexOf(candidate) === index) + .filter((candidate) => fs.existsSync(candidate)); +} + +function resolveMacPrefixFromBrew() { + const brewCandidates = listBrewCandidates(); + const formulas = ["imagemagick", "imagemagick@6"]; + + for (const brew of brewCandidates) { + for (const formula of formulas) { + const result = capture(brew, ["--prefix", formula]); + const prefix = (result.stdout || "").trim(); + if (result.status !== 0 || !prefix) { + continue; + } + if (fs.existsSync(path.join(prefix, "bin", "magick"))) { + return prefix; + } + } + } + return null; +} + +function ensureMacImageMagickWithBrew() { + for (const brew of listBrewCandidates()) { + log(`ImageMagick not found; trying to install with Homebrew (${brew} install imagemagick).`); + const install = spawnSync(brew, ["install", "imagemagick"], { + stdio: "inherit", + windowsHide: true, + }); + if (install.status === 0) { + return true; + } + const reason = install.error?.message || `exit ${install.status}`; + log(`Homebrew installation attempt failed via ${brew}: ${reason}`); + } + return false; +} + +function resolveMacSourcePrefix() { + const configured = process.env.IMAGEMAGICK_VENDOR_DIR?.trim(); + if (configured) { + return path.resolve(configured); + } + + const pathMagickPrefix = resolveMacPrefixFromMagickBinary(resolveCommandPath("magick")); + if (pathMagickPrefix) { + return pathMagickPrefix; + } + + for (const magickPath of ["/opt/homebrew/bin/magick", "/usr/local/bin/magick", "/opt/local/bin/magick"]) { + const prefix = resolveMacPrefixFromMagickBinary(magickPath); + if (prefix) { + return prefix; + } + } + + const brewPrefix = resolveMacPrefixFromBrew(); + if (brewPrefix) { + return brewPrefix; + } + + for (const optPrefix of ["/opt/homebrew/opt/imagemagick", "/usr/local/opt/imagemagick"]) { + if (fs.existsSync(path.join(optPrefix, "bin", "magick"))) { + return optPrefix; + } + } + + if (ensureMacImageMagickWithBrew()) { + const installedPrefix = resolveMacPrefixFromMagickBinary(resolveCommandPath("magick")) + || resolveMacPrefixFromBrew(); + if (installedPrefix) { + return installedPrefix; + } + log("Homebrew install succeeded but ImageMagick prefix was not auto-detected; continuing with fallback checks."); + } + + fail("Could not find a macOS ImageMagick runtime to vendor. Install ImageMagick (brew install imagemagick) and rerun, or set IMAGEMAGICK_VENDOR_DIR."); +} + +function parseOtoolDeps(filePath) { + const result = capture("otool", ["-L", filePath]); + if (result.status !== 0) { + fail(`otool -L failed for ${filePath}: ${result.stderr || result.status}`); + } + return (result.stdout || "") + .split(/\r?\n/) + .slice(1) + .map((line) => line.trim().split(/\s+/)[0]) + .filter(Boolean) + .filter((dep) => dep.startsWith("/")) + .filter((dep) => !dep.startsWith("/System/Library/") && !dep.startsWith("/usr/lib/")); +} + +function isMachOFile(filePath) { + if (!fs.existsSync(filePath) || !fs.statSync(filePath).isFile()) { + return false; + } + const result = capture("file", [filePath]); + return result.status === 0 && /Mach-O/.test(result.stdout || ""); +} + +function walkFiles(rootDir) { + const stack = [rootDir]; + const files = []; + while (stack.length) { + const current = stack.pop(); + const entries = fs.readdirSync(current, { withFileTypes: true }); + for (const entry of entries) { + const fullPath = path.join(current, entry.name); + if (entry.isDirectory()) { + stack.push(fullPath); + } else if (entry.isFile()) { + files.push(fullPath); + } + } + } + return files; +} + +function relinkMacDylibs(targetDir, mainExecutable) { + for (const tool of ["otool", "install_name_tool", "file"]) { + if (!resolveCommandPath(tool)) { + fail(`macOS runtime vendoring requires ${tool}.`); + } + } + + const libDir = path.join(targetDir, "lib"); + fs.mkdirSync(libDir, { recursive: true }); + + const queue = [mainExecutable]; + const visited = new Set(); + const copiedBySource = new Map(); + + while (queue.length) { + const current = queue.shift(); + if (visited.has(current) || !fs.existsSync(current) || !isMachOFile(current)) { + continue; + } + visited.add(current); + + const deps = parseOtoolDeps(current); + for (const dep of deps) { + const depBase = path.basename(dep); + let vendored = copiedBySource.get(dep); + if (!vendored) { + vendored = path.join(libDir, depBase); + if (!fs.existsSync(vendored)) { + fs.copyFileSync(dep, vendored); + fs.chmodSync(vendored, 0o755); + } + copiedBySource.set(dep, vendored); + queue.push(vendored); + } + + const replacement = current === mainExecutable + ? `@executable_path/../lib/${depBase}` + : `@loader_path/${depBase}`; + run("install_name_tool", ["-change", dep, replacement, current]); + } + + if (current !== mainExecutable) { + run("install_name_tool", ["-id", `@loader_path/${path.basename(current)}`, current]); + } + } +} + +function adHocSignMacRuntime(targetDir, mainExecutable) { + if (!resolveCommandPath("codesign")) { + fail("macOS runtime vendoring requires codesign."); + } + + const machOFiles = walkFiles(targetDir).filter(isMachOFile); + const signOrder = machOFiles + .filter((filePath) => filePath !== mainExecutable) + .concat(machOFiles.includes(mainExecutable) ? [mainExecutable] : []); + + log(`Ad-hoc signing ${signOrder.length} Mach-O files for macOS runtime.`); + for (const filePath of signOrder) { + run("codesign", ["--force", "--sign", "-", "--timestamp=none", filePath]); + } +} + +async function prepareMacOS() { + const sourcePrefix = resolveMacSourcePrefix(); + const sourceMagick = path.join(sourcePrefix, "bin", "magick"); + if (!fs.existsSync(sourceMagick)) { + fail(`macOS ImageMagick prefix does not contain bin/magick: ${sourcePrefix}`); + } + + const tempTarget = `${TARGET_DIR}.tmp`; + fs.rmSync(tempTarget, { recursive: true, force: true }); + fs.mkdirSync(tempTarget, { recursive: true }); + fs.cpSync(sourcePrefix, tempTarget, { + recursive: true, + dereference: true, + filter(source) { + const base = path.basename(source); + return base !== ".brew" && base !== "INSTALL_RECEIPT.json"; + }, + }); + + const targetMagick = path.join(tempTarget, "bin", "magick"); + fs.chmodSync(targetMagick, 0o755); + relinkMacDylibs(tempTarget, targetMagick); + adHocSignMacRuntime(tempTarget, targetMagick); + writeManifest(tempTarget, { + kind: "macos-vendored", + binary: "bin/magick", + source: sourcePrefix, + }); + + if (!validateRuntime(tempTarget)) { + fail(`Prepared runtime failed validation at ${tempTarget}`); + } + + fs.rmSync(TARGET_DIR, { recursive: true, force: true }); + fs.renameSync(tempTarget, TARGET_DIR); + log(`Prepared ${path.join(TARGET_DIR, "bin", "magick")}`); +} + +async function main() { + const existing = validateRuntime(TARGET_DIR); + if (existing) { + log(`Existing runtime OK: ${existing.binaryPath}`); + return; + } + + if (PLATFORM === "win32") { + await prepareWindows(); + return; + } + if (PLATFORM === "linux") { + await prepareLinux(); + return; + } + if (PLATFORM === "darwin") { + await prepareMacOS(); + return; + } + + fail(`Unsupported platform for bundled ImageMagick: ${PLATFORM}-${ARCH}`); +} + +main().catch((error) => fail(error?.stack || error?.message || String(error))); diff --git a/electron/scripts/rebuild_notice_all.py b/electron/scripts/rebuild_notice_all.py new file mode 100644 index 0000000..3281eef --- /dev/null +++ b/electron/scripts/rebuild_notice_all.py @@ -0,0 +1,334 @@ +#!/usr/bin/env python3 +import json +import os +import re +import sys +from pathlib import Path +from typing import Dict, List, Optional, Tuple + +ELECTRON_DIR = Path(__file__).resolve().parent.parent +REPO_ROOT = ELECTRON_DIR.parent +FASTAPI_DIR = REPO_ROOT / "servers" / "fastapi" +NEXT_DIR = REPO_ROOT / "servers" / "nextjs" +NOTICE_PATH = REPO_ROOT / "NOTICE" + +PY_LICENSE_CANDIDATES = [ + "LICENSE", + "LICENSE.txt", + "LICENSE.md", + "LICENCE", + "COPYING", + "COPYING.txt", + "NOTICE", + "NOTICE.txt", +] + +NODE_LICENSE_CANDIDATES = [ + "LICENSE", + "LICENSE.txt", + "LICENSE.md", + "LICENCE", + "LICENCE.txt", + "COPYING", + "COPYING.txt", + "NOTICE", + "NOTICE.txt", +] + + +def read_text_safe(path: Path) -> str: + try: + return path.read_text(encoding="utf-8", errors="replace").strip() + except Exception: + return "" + + +def parse_rfc822_metadata(text: str) -> Dict[str, str]: + data: Dict[str, str] = {} + key: Optional[str] = None + for raw_line in text.splitlines(): + if not raw_line: + key = None + continue + if raw_line[0] in " \t" and key: + data[key] += "\n" + raw_line.strip() + continue + if ":" in raw_line: + k, v = raw_line.split(":", 1) + key = k.strip() + data[key] = v.strip() + return data + + +def find_python_site_packages(venv_dir: Path) -> Optional[Path]: + # Linux/mac + lib_dir = venv_dir / "lib" + if lib_dir.exists(): + for child in lib_dir.iterdir(): + if child.is_dir() and child.name.startswith("python"): + sp = child / "site-packages" + if sp.exists(): + return sp + # Windows + sp = venv_dir / "Lib" / "site-packages" + if sp.exists(): + return sp + return None + + +def detect_python_venv() -> Optional[Path]: + env_path = os.environ.get("NOTICE_PYTHON_VENV") + if env_path: + v = Path(env_path) + if v.exists(): + return v + default = FASTAPI_DIR / ".venv" + if default.exists(): + return default + active = os.environ.get("VIRTUAL_ENV") + if active and FASTAPI_DIR.as_posix() in Path(active).as_posix(): + return Path(active) + return None + + +def scan_python_packages(site_packages_dir: Path) -> List[Dict[str, str]]: + entries: List[Dict[str, str]] = [] + dist_infos = sorted(site_packages_dir.glob("*.dist-info")) + for dist in dist_infos: + metadata_path = dist / "METADATA" + if not metadata_path.exists(): + continue + meta = parse_rfc822_metadata(read_text_safe(metadata_path)) + name = meta.get("Name", "").strip() + version = meta.get("Version", "").strip() + license_name = meta.get("License", "").strip() + if not name: + # Fallback to folder name pattern + # e.g., requests-2.32.3.dist-info + base = dist.name[:-10] + if "-" in base: + parts = base.rsplit("-", 1) + if len(parts) == 2: + name = parts[0] + version = version or parts[1] + author = meta.get("Author", meta.get("Maintainer", meta.get("Author-email", ""))).strip() + + # License text candidates inside dist-info + license_text = "" + for cand in PY_LICENSE_CANDIDATES: + p = dist / cand + if p.exists(): + license_text = read_text_safe(p) + if license_text: + break + + # Search via RECORD for license files elsewhere + if not license_text: + record = dist / "RECORD" + if record.exists(): + for line in read_text_safe(record).splitlines(): + path_part = line.split(",", 1)[0] + lower = path_part.lower() + if any(token in lower for token in ["license", "licence", "copying", "notice"]): + target = site_packages_dir / path_part + if target.exists(): + license_text = read_text_safe(target) + if license_text: + break + + # As last resort, embed the License: field content + if not license_text and license_name: + license_text = f"License field from METADATA:\n{license_name}" + + entries.append({ + "name": name or dist.name, + "version": version, + "license": license_name, + "author": author, + "license_text": license_text, + }) + + # Sort by name for stability + entries.sort(key=lambda e: (e["name"].lower(), e["version"])) + return entries + + +def find_license_file_in_dir(base_dir: Path, depth_limit: int = 2) -> Optional[Path]: + # First, try immediate candidates + for cand in NODE_LICENSE_CANDIDATES: + p = base_dir / cand + if p.exists(): + return p + # case-insensitive check + for child in base_dir.iterdir(): + if child.is_file() and child.name.lower() == cand.lower(): + return child + + # Recursive limited-depth scan excluding nested node_modules + def walk(dir_path: Path, depth: int) -> Optional[Path]: + if depth > depth_limit: + return None + try: + it = list(dir_path.iterdir()) + except Exception: + return None + for child in it: + name_lower = child.name.lower() + if child.is_dir(): + if child.name == "node_modules" or child.name.startswith('.'): + continue + found = walk(child, depth + 1) + if found: + return found + else: + if any(tok in name_lower for tok in ["license", "licence", "copying", "notice"]): + return child + return None + + return walk(base_dir, 0) + + +def scan_node_modules(node_modules_dir: Path) -> List[Dict[str, str]]: + entries: List[Dict[str, str]] = [] + seen: set[str] = set() + + def visit_pkg(pkg_dir: Path): + pkg_json = pkg_dir / "package.json" + if not pkg_json.exists(): + return + try: + data = json.loads(read_text_safe(pkg_json) or "{}") + except Exception: + return + name = data.get("name") or pkg_dir.name + version = str(data.get("version") or "") + key = f"{name}@{version}" + if key in seen: + return + seen.add(key) + + license_name = "" + lic_field = data.get("license") + if isinstance(lic_field, str): + license_name = lic_field + elif isinstance(lic_field, dict): + license_name = lic_field.get("type", "") + elif isinstance(data.get("licenses"), list): + license_name = ", ".join([str(x.get("type", "")) for x in data["licenses"] if isinstance(x, dict)]) + + author = "" + a = data.get("author") + if isinstance(a, str): + author = a + elif isinstance(a, dict): + author = a.get("name", "") + + license_text = "" + lic_file = find_license_file_in_dir(pkg_dir, depth_limit=2) + if lic_file: + license_text = read_text_safe(lic_file) + + entries.append({ + "name": name, + "version": version, + "license": license_name, + "author": author, + "license_text": license_text, + }) + + def walk_node_modules(base: Path): + if not base.exists(): + return + for entry in base.iterdir(): + if not entry.is_dir(): + continue + if entry.name == ".bin": + continue + if entry.name.startswith("@"): # scoped packages + for scoped in entry.iterdir(): + if scoped.is_dir(): + visit_pkg(scoped) + # nested node_modules inside the package + nested = scoped / "node_modules" + walk_node_modules(nested) + continue + visit_pkg(entry) + nested = entry / "node_modules" + walk_node_modules(nested) + + walk_node_modules(node_modules_dir) + # Sort by package name + entries.sort(key=lambda e: (e["name"].lower(), e["version"])) + return entries + + +def format_section(title: str, entries: List[Dict[str, str]]) -> str: + header = [ + "-------------------------------------", + title, + "-------------------------------------", + "", + ] + lines: List[str] = ["\n".join(header)] + for e in entries: + block = [ + e.get("name", "").strip(), + e.get("version", "").strip(), + e.get("license", "").strip(), + e.get("author", "").strip(), + "", + (e.get("license_text", "") or "LICENSE TEXT NOT FOUND").strip(), + "", + "", + ] + lines.append("\n".join(block)) + return "".join(lines).rstrip() + "\n" + + +def main(): + # Optional CLI overrides + import argparse + parser = argparse.ArgumentParser(description="Rebuild NOTICE from installed packages") + parser.add_argument("--python-venv", dest="python_venv", default=None, help="Path to Python venv to scan") + parser.add_argument("--node-modules", dest="node_modules", default=None, help="Path to node_modules to scan") + args = parser.parse_args() + python_entries: List[Dict[str, str]] = [] + node_entries: List[Dict[str, str]] = [] + + # Python scan + venv = Path(args.python_venv) if args.python_venv else detect_python_venv() + if venv: + sp = find_python_site_packages(venv) + if sp and sp.exists(): + python_entries = scan_python_packages(sp) + else: + print(f"Warning: site-packages not found under {venv}", file=sys.stderr) + else: + print("Warning: Python venv not found. Set NOTICE_PYTHON_VENV or create servers/fastapi/.venv", file=sys.stderr) + + # Node scan + node_modules_dir = Path(args.node_modules or os.environ.get("NOTICE_NODE_MODULES") or (NEXT_DIR / "node_modules")) + if node_modules_dir.exists(): + node_entries = scan_node_modules(node_modules_dir) + else: + print(f"Warning: node_modules not found at {node_modules_dir}", file=sys.stderr) + + # Build NOTICE content + parts: List[str] = [] + if python_entries: + parts.append(format_section("PYTHON PACKAGES", python_entries)) + if node_entries: + parts.append(format_section("NODE PACKAGES", node_entries)) + if not parts: + print("Error: No sections generated. Ensure .venv and node_modules exist.", file=sys.stderr) + sys.exit(1) + + content = "\n".join(parts) + NOTICE_PATH.write_text(content, encoding="utf-8") + print("NOTICE rebuilt from installed packages") + + +if __name__ == "__main__": + main() + + diff --git a/electron/scripts/sync-export-runtime.cjs b/electron/scripts/sync-export-runtime.cjs new file mode 100644 index 0000000..d7f2134 --- /dev/null +++ b/electron/scripts/sync-export-runtime.cjs @@ -0,0 +1,546 @@ +const fs = require("fs"); +const http = require("http"); +const https = require("https"); +const path = require("path"); +const { execFileSync } = require("child_process"); + +const electronRoot = path.join(__dirname, ".."); +const packageJson = JSON.parse( + fs.readFileSync(path.join(electronRoot, "package.json"), "utf8"), +); + +const targetRoot = path.join(electronRoot, "resources", "export"); +const targetPyDir = path.join(targetRoot, "py"); +const targetIndex = path.join(targetRoot, "index.js"); +const cacheDir = path.join(electronRoot, ".cache", "export-runtime"); +const exportRepoBase = "https://github.com/presenton/presenton-export/releases/download"; +const exportVersion = packageJson.exportVersion || "v0.1.0"; + +const cliArgs = new Set(process.argv.slice(2)); +const forceDownload = cliArgs.has("--force"); +const checkOnly = cliArgs.has("--check-only"); + +async function getTargetVersion() { + const requestedVersion = process.env.EXPORT_RUNTIME_VERSION || exportVersion; + if (requestedVersion !== "latest") { + return requestedVersion; + } + + const apiUrl = "https://api.github.com/repos/presenton/presenton-export/releases/latest"; + const latest = await requestJson(apiUrl); + if (!latest.tag_name) { + throw new Error(`Could not resolve latest release tag from ${apiUrl}`); + } + + return latest.tag_name; +} + +function getPlatformAssetName() { + const platformArch = `${process.platform}-${process.arch}`; + if (platformArch === "linux-arm64") return "export-Linux-ARM64.zip"; + if (platformArch === "linux-x64") return "export-Linux-X64.zip"; + if (platformArch === "darwin-arm64") return "export-macOS-ARM64.zip"; + if (platformArch === "darwin-x64") return "export-macOS-X64.zip"; + if (platformArch === "win32-x64") return "export-Windows-X64.zip"; + + throw new Error( + `Unsupported export runtime platform: ${platformArch}. Supported: linux-arm64, linux-x64, darwin-arm64, darwin-x64, win32-x64` + ); +} + +function getConverterCandidates() { + const platformAliases = { + linux: ["linux"], + darwin: ["darwin", "macos", "mac"], + win32: ["win32", "windows", "win"], + }; + const archAliases = { + x64: ["x64", "amd64"], + arm64: ["arm64", "aarch64"], + }; + + const candidates = []; + const platforms = platformAliases[process.platform] || [process.platform]; + const archs = archAliases[process.arch] || [process.arch]; + const windows = process.platform === "win32"; + + for (const p of platforms) { + for (const a of archs) { + candidates.push(path.join(targetPyDir, `convert-${p}-${a}`)); + candidates.push(path.join(targetPyDir, `convert-${p}-${a}.exe`)); + } + candidates.push(path.join(targetPyDir, `convert-${p}`)); + candidates.push(path.join(targetPyDir, `convert-${p}.exe`)); + } + + if (windows) { + candidates.push(path.join(targetPyDir, "convert.exe")); + } + candidates.push(path.join(targetPyDir, "convert")); + + return [...new Set(candidates)]; +} + +function ensureDir(dirPath) { + fs.mkdirSync(dirPath, { recursive: true }); +} + +function chmodIfPossible(filePath) { + if (process.platform !== "win32") { + fs.chmodSync(filePath, 0o755); + } +} + +function detectBinaryFormat(filePath) { + const fd = fs.openSync(filePath, "r"); + try { + const header = Buffer.alloc(4); + fs.readSync(fd, header, 0, 4, 0); + + if (header[0] === 0x7f && header[1] === 0x45 && header[2] === 0x4c && header[3] === 0x46) { + return "elf"; + } + + if (header[0] === 0x4d && header[1] === 0x5a) { + return "pe"; + } + + const magic = header.readUInt32BE(0); + if ( + magic === 0xfeedface || + magic === 0xcefaedfe || + magic === 0xfeedfacf || + magic === 0xcffaedfe || + magic === 0xcafebabe || + magic === 0xbebafeca + ) { + return "mach-o"; + } + + return "unknown"; + } finally { + fs.closeSync(fd); + } +} + +function isFormatCompatible(format) { + if (process.platform === "darwin") return format === "mach-o"; + if (process.platform === "linux") return format === "elf"; + if (process.platform === "win32") return format === "pe"; + return true; +} + +function validateExistingRuntime() { + if (!fs.existsSync(targetIndex)) { + return { ok: false, reason: `Missing runtime bundle: ${targetIndex}` }; + } + + const converterCandidates = getConverterCandidates(); + const converterPath = converterCandidates.find((candidate) => fs.existsSync(candidate)); + + if (!converterPath) { + return { + ok: false, + reason: [ + "No converter binary found in electron/resources/export/py.", + "Expected one of:", + ...converterCandidates.map((candidate) => ` - ${candidate}`), + ].join("\n"), + }; + } + + const binaryFormat = detectBinaryFormat(converterPath); + if (!isFormatCompatible(binaryFormat)) { + return { + ok: false, + reason: [ + `Converter binary is not valid for ${process.platform}/${process.arch}.`, + `Selected converter: ${converterPath}`, + `Detected format: ${binaryFormat}`, + ].join("\n"), + }; + } + + chmodIfPossible(converterPath); + return { ok: true, converterPath }; +} + +function patchHtmlToImageRuntime() { + if (!fs.existsSync(targetIndex)) { + return false; + } + + const original = fs.readFileSync(targetIndex, "utf8"); + let patched = original.replace( + 'await C.setContent(a.html,{waitUntil:"networkidle0",timeout:12e4})', + 'await C.setContent(a.html,{waitUntil:"domcontentloaded",timeout:12e4})', + ); + patched = patched.replace( + 'catch(C){throw C instanceof ig?C:new ig("Failed to render HTML to image",500)}', + 'catch(C){console.error("[html-to-image]",C);throw C instanceof ig?C:new ig("Failed to render HTML to image",500)}', + ); + + if (patched === original) { + return false; + } + fs.writeFileSync(targetIndex, patched); + console.log("[export-runtime] Patched HTML-to-image readiness and error logging."); + return true; +} + +function hasExportDirectoryContent() { + if (!fs.existsSync(targetRoot)) return false; + return fs.readdirSync(targetRoot).length > 0; +} + +function request(url) { + const client = url.startsWith("https:") ? https : http; + return client; +} + +function requestJson(url, redirects = 5) { + return new Promise((resolve, reject) => { + const client = request(url); + const req = client.get( + url, + { + headers: { + "User-Agent": "presenton-export-runtime-sync", + Accept: "application/vnd.github+json", + }, + }, + (res) => { + if ([301, 302, 303, 307, 308].includes(res.statusCode) && res.headers.location) { + if (redirects <= 0) { + reject(new Error(`Too many redirects for JSON request: ${url}`)); + return; + } + requestJson(res.headers.location, redirects - 1).then(resolve).catch(reject); + return; + } + + if (res.statusCode < 200 || res.statusCode >= 300) { + reject(new Error(`Failed to fetch ${url}. HTTP ${res.statusCode}`)); + return; + } + + let payload = ""; + res.setEncoding("utf8"); + res.on("data", (chunk) => { + payload += chunk; + }); + res.on("end", () => { + try { + resolve(JSON.parse(payload)); + } catch (error) { + reject(new Error(`Invalid JSON received from ${url}: ${error.message}`)); + } + }); + } + ); + + req.on("error", reject); + }); +} + +function sleep(ms) { + return new Promise((resolve) => setTimeout(resolve, ms)); +} + +function downloadFile(url, outputPath, redirects = 5) { + return new Promise((resolve, reject) => { + const client = request(url); + const req = client.get( + url, + { + headers: { + "User-Agent": "presenton-export-runtime-sync", + Accept: "application/octet-stream", + }, + }, + (res) => { + if ([301, 302, 303, 307, 308].includes(res.statusCode) && res.headers.location) { + if (redirects <= 0) { + reject(new Error(`Too many redirects while downloading ${url}`)); + return; + } + downloadFile(res.headers.location, outputPath, redirects - 1).then(resolve).catch(reject); + return; + } + + if (res.statusCode < 200 || res.statusCode >= 300) { + reject(new Error(`Failed to download ${url}. HTTP ${res.statusCode}`)); + return; + } + + ensureDir(path.dirname(outputPath)); + const fileStream = fs.createWriteStream(outputPath); + res.pipe(fileStream); + fileStream.on("finish", () => { + fileStream.close(resolve); + }); + fileStream.on("error", reject); + } + ); + + req.on("error", reject); + }); +} + +async function downloadFileWithRetries(url, outputPath, attempts = 4) { + let lastError; + for (let i = 0; i < attempts; i++) { + try { + if (i > 0) { + const delay = 1500 * Math.pow(2, i - 1); + console.log(`[export-runtime] Retrying download (attempt ${i + 1}/${attempts}) after ${delay}ms…`); + await sleep(delay); + } + try { + fs.unlinkSync(outputPath); + } catch { + /* ignore */ + } + await downloadFile(url, outputPath); + const st = fs.statSync(outputPath); + if (st.size < 512) { + throw new Error(`Downloaded file is too small (${st.size} bytes); likely corrupt or HTML error page`); + } + const magic = Buffer.alloc(4); + const fd = fs.openSync(outputPath, "r"); + try { + fs.readSync(fd, magic, 0, 4, 0); + } finally { + fs.closeSync(fd); + } + if (magic[0] !== 0x50 || magic[1] !== 0x4b) { + throw new Error("Downloaded file is not a ZIP (missing PK header); delete cache and retry"); + } + return; + } catch (err) { + lastError = err; + } + } + throw lastError; +} + +function unzipArchive(zipPath, destDir) { + ensureDir(destDir); + if (process.platform === "win32") { + const psQuote = (p) => p.replace(/'/g, "''"); + execFileSync( + "powershell.exe", + [ + "-NoProfile", + "-Command", + `Expand-Archive -LiteralPath '${psQuote(zipPath)}' -DestinationPath '${psQuote(destDir)}' -Force`, + ], + { stdio: "inherit" } + ); + return; + } + + execFileSync("unzip", ["-o", zipPath, "-d", destDir], { stdio: "inherit" }); +} + +function hasRuntimeLayout(dir) { + const indexPath = path.join(dir, "index.js"); + if (!fs.existsSync(indexPath)) return false; + + const pyPath = path.join(dir, "py"); + if (fs.existsSync(pyPath)) { + try { + return fs.statSync(pyPath).isDirectory(); + } catch { + return false; + } + } + + // Windows release zips are often flat: index.js + convert-*.exe (no py/ yet). + try { + return fs.readdirSync(dir).some((name) => { + if (!/^convert/i.test(name)) return false; + const p = path.join(dir, name); + try { + return fs.statSync(p).isFile(); + } catch { + return false; + } + }); + } catch { + return false; + } +} + +/** Flat Windows bundles ship convert-*.exe next to index.js; runtime expects py/. */ +function ensurePyConverterLayout(root) { + const pyDir = path.join(root, "py"); + let needMoveFromRoot = false; + + if (fs.existsSync(pyDir)) { + try { + if (fs.statSync(pyDir).isDirectory()) { + const inner = fs.readdirSync(pyDir); + const hasBin = inner.some( + (n) => + n === "convert" || + n === "convert.exe" || + /^convert-/i.test(n) + ); + if (hasBin) return; + needMoveFromRoot = true; + } + } catch { + needMoveFromRoot = true; + } + } else { + needMoveFromRoot = true; + } + + if (!needMoveFromRoot) return; + + fs.mkdirSync(pyDir, { recursive: true }); + const names = fs.readdirSync(root, { withFileTypes: true }); + for (const ent of names) { + if (!ent.isFile()) continue; + const base = ent.name; + if (!/^convert/i.test(base)) continue; + const from = path.join(root, base); + const to = path.join(pyDir, base); + fs.renameSync(from, to); + } +} + +function describeExtractTree(extractDir, maxEntries = 30) { + const lines = []; + function walk(dir, prefix, depth) { + if (depth > 3 || lines.length >= maxEntries) return; + let entries; + try { + entries = fs.readdirSync(dir, { withFileTypes: true }); + } catch { + return; + } + for (const e of entries) { + if (lines.length >= maxEntries) break; + const p = path.join(dir, e.name); + lines.push(`${prefix}${e.name}${e.isDirectory() ? "/" : ""}`); + if (e.isDirectory()) walk(p, `${prefix} `, depth + 1); + } + } + walk(extractDir, "", 0); + return lines.length ? lines.join("\n") : "(empty)"; +} + +function resolveExtractedRoot(extractDir) { + if (hasRuntimeLayout(extractDir)) { + return extractDir; + } + + const queue = [{ dir: extractDir, depth: 0 }]; + const maxDepth = 8; + while (queue.length > 0) { + const { dir, depth } = queue.shift(); + if (depth >= maxDepth) continue; + let children; + try { + children = fs.readdirSync(dir, { withFileTypes: true }); + } catch { + continue; + } + for (const entry of children) { + if (!entry.isDirectory()) continue; + const candidate = path.join(dir, entry.name); + if (hasRuntimeLayout(candidate)) { + return candidate; + } + queue.push({ dir: candidate, depth: depth + 1 }); + } + } + + const hint = describeExtractTree(extractDir); + throw new Error( + `Unable to locate export runtime root under ${extractDir}\n` + + `Expected a folder containing index.js and a py/ directory. Extracted layout (partial):\n${hint}` + ); +} + +async function downloadAndInstallRuntime() { + const tag = await getTargetVersion(); + const assetName = getPlatformAssetName(); + const downloadUrl = `${exportRepoBase}/${tag}/${assetName}`; + + ensureDir(cacheDir); + const zipPath = path.join(cacheDir, assetName); + const extractDir = path.join(cacheDir, `extract-${Date.now()}`); + + console.log(`[export-runtime] Downloading ${downloadUrl}`); + try { + await downloadFileWithRetries(downloadUrl, zipPath); + } catch (err) { + try { + fs.unlinkSync(zipPath); + } catch { + /* ignore */ + } + throw err; + } + + console.log(`[export-runtime] Extracting ${zipPath}`); + try { + unzipArchive(zipPath, extractDir); + const sourceRoot = resolveExtractedRoot(extractDir); + ensurePyConverterLayout(sourceRoot); + fs.rmSync(targetRoot, { recursive: true, force: true }); + ensureDir(targetRoot); + fs.cpSync(sourceRoot, targetRoot, { recursive: true, force: true }); + } finally { + fs.rmSync(extractDir, { recursive: true, force: true }); + } + + return { tag, downloadUrl }; +} + +async function main() { + const existing = validateExistingRuntime(); + + if (checkOnly) { + if (!existing.ok) { + throw new Error(existing.reason); + } + console.log("[export-runtime] Existing runtime is valid."); + console.log(` - ${targetIndex}`); + console.log(` - ${existing.converterPath}`); + return; + } + + if (existing.ok && !forceDownload) { + patchHtmlToImageRuntime(); + console.log("[export-runtime] Using existing runtime artifacts:"); + console.log(` - ${targetIndex}`); + console.log(` - ${existing.converterPath}`); + return; + } + + if (!existing.ok && hasExportDirectoryContent()) { + console.log("[export-runtime] Existing export directory is invalid, re-syncing package."); + } + + const { tag, downloadUrl } = await downloadAndInstallRuntime(); + patchHtmlToImageRuntime(); + const installed = validateExistingRuntime(); + if (!installed.ok) { + throw new Error(installed.reason); + } + + console.log("[export-runtime] Runtime synced successfully:"); + console.log(` - release: ${tag}`); + console.log(` - url: ${downloadUrl}`); + console.log(` - ${targetIndex}`); + console.log(` - ${installed.converterPath}`); +} + +main().catch((error) => { + console.error(`[export-runtime] ${error.message}`); + process.exit(1); +}); diff --git a/electron/scripts/upload-sourcemaps.cjs b/electron/scripts/upload-sourcemaps.cjs new file mode 100644 index 0000000..8ebccb4 --- /dev/null +++ b/electron/scripts/upload-sourcemaps.cjs @@ -0,0 +1,104 @@ +#!/usr/bin/env node + +const fs = require("fs"); +const path = require("path"); +const { spawnSync } = require("child_process"); + +const repoRoot = path.resolve(__dirname, ".."); +const appDistDir = path.join(repoRoot, "app_dist"); +const packageJson = require(path.join(repoRoot, "package.json")); + +function walkFiles(dir, predicate, results = []) { + if (!fs.existsSync(dir)) { + return results; + } + + for (const entry of fs.readdirSync(dir, { withFileTypes: true })) { + const fullPath = path.join(dir, entry.name); + if (entry.isDirectory()) { + walkFiles(fullPath, predicate, results); + } else if (predicate(fullPath)) { + results.push(fullPath); + } + } + + return results; +} + +function resolveSentryCli() { + if (process.env.SENTRY_CLI_BIN) { + return process.env.SENTRY_CLI_BIN; + } + + const localBinary = path.join( + repoRoot, + "node_modules", + ".bin", + process.platform === "win32" ? "sentry-cli.cmd" : "sentry-cli", + ); + + if (fs.existsSync(localBinary)) { + return localBinary; + } + + return "sentry-cli"; +} + +function run(command, args) { + const result = spawnSync(command, args, { + cwd: repoRoot, + env: process.env, + stdio: "inherit", + shell: process.platform === "win32", + }); + + if (result.error) { + console.error(`Failed to run ${command}: ${result.error.message}`); + process.exit(1); + } + + if (result.status !== 0) { + process.exit(result.status ?? 1); + } +} + +const sourceMaps = walkFiles(appDistDir, (file) => file.endsWith(".js.map")); + +if (sourceMaps.length === 0) { + console.error( + "No Electron sourcemaps found in app_dist. Run `npm run build:ts` before uploading.", + ); + process.exit(1); +} + +const release = + process.env.SENTRY_RELEASE || `presenton-electron@${packageJson.version}`; +const urlPrefix = process.env.SENTRY_URL_PREFIX || "app:///app_dist"; +const sentryCli = resolveSentryCli(); + +const globalArgs = []; +if (process.env.SENTRY_ORG) { + globalArgs.push("--org", process.env.SENTRY_ORG); +} +if (process.env.SENTRY_PROJECT) { + globalArgs.push("--project", process.env.SENTRY_PROJECT); +} + +const uploadArgs = [ + ...globalArgs, + "sourcemaps", + "upload", + appDistDir, + "--release", + release, + "--url-prefix", + urlPrefix, + "--rewrite", + "--validate", +]; + +if (process.env.SENTRY_DIST) { + uploadArgs.push("--dist", process.env.SENTRY_DIST); +} + +run(sentryCli, uploadArgs); diff --git a/electron/tsconfig.json b/electron/tsconfig.json new file mode 100644 index 0000000..83cf95e --- /dev/null +++ b/electron/tsconfig.json @@ -0,0 +1,108 @@ +{ + "compilerOptions": { + /* Visit https://aka.ms/tsconfig to read more about this file */ + /* Projects */ + // "incremental": true, /* Save .tsbuildinfo files to allow for incremental compilation of projects. */ + // "composite": true, /* Enable constraints that allow a TypeScript project to be used with project references. */ + // "tsBuildInfoFile": "./.tsbuildinfo", /* Specify the path to .tsbuildinfo incremental compilation file. */ + // "disableSourceOfProjectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when referencing composite projects. */ + // "disableSolutionSearching": true, /* Opt a project out of multi-project reference checking when editing. */ + // "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */ + /* Language and Environment */ + "target": "es2016", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */ + // "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */ + // "jsx": "preserve", /* Specify what JSX code is generated. */ + // "libReplacement": true, /* Enable lib replacement. */ + // "experimentalDecorators": true, /* Enable experimental support for legacy experimental decorators. */ + // "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */ + // "jsxFactory": "", /* Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h'. */ + // "jsxFragmentFactory": "", /* Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'. */ + // "jsxImportSource": "", /* Specify module specifier used to import the JSX factory functions when using 'jsx: react-jsx*'. */ + // "reactNamespace": "", /* Specify the object invoked for 'createElement'. This only applies when targeting 'react' JSX emit. */ + // "noLib": true, /* Disable including any library files, including the default lib.d.ts. */ + // "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */ + // "moduleDetection": "auto", /* Control what method is used to detect module-format JS files. */ + /* Modules */ + "module": "commonjs", /* Specify what module code is generated. */ + "rootDir": "./app", /* Specify the root folder within your source files. */ + // "moduleResolution": "node10", /* Specify how TypeScript looks up a file from a given module specifier. */ + // "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */ + // "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */ + // "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */ + // "typeRoots": [], /* Specify multiple folders that act like './node_modules/@types'. */ + // "types": [], /* Specify type package names to be included without being referenced in a source file. */ + // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */ + // "moduleSuffixes": [], /* List of file name suffixes to search when resolving a module. */ + // "allowImportingTsExtensions": true, /* Allow imports to include TypeScript file extensions. Requires '--moduleResolution bundler' and either '--noEmit' or '--emitDeclarationOnly' to be set. */ + // "rewriteRelativeImportExtensions": true, /* Rewrite '.ts', '.tsx', '.mts', and '.cts' file extensions in relative import paths to their JavaScript equivalent in output files. */ + // "resolvePackageJsonExports": true, /* Use the package.json 'exports' field when resolving package imports. */ + // "resolvePackageJsonImports": true, /* Use the package.json 'imports' field when resolving imports. */ + // "customConditions": [], /* Conditions to set in addition to the resolver-specific defaults when resolving imports. */ + // "noUncheckedSideEffectImports": true, /* Check side effect imports. */ + // "resolveJsonModule": true, /* Enable importing .json files. */ + // "allowArbitraryExtensions": true, /* Enable importing files with any extension, provided a declaration file is present. */ + // "noResolve": true, /* Disallow 'import's, 'require's or ''s from expanding the number of files TypeScript should add to a project. */ + /* JavaScript Support */ + // "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */ + // "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */ + // "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */ + /* Emit */ + // "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */ + // "declarationMap": true, /* Create sourcemaps for d.ts files. */ + // "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */ + "sourceMap": true, /* Create source map files for emitted JavaScript files. */ + // "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */ + // "noEmit": true, /* Disable emitting files from a compilation. */ + // "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */ + "outDir": "./app_dist", /* Specify an output folder for all emitted files. */ + // "removeComments": true, /* Disable emitting comments. */ + // "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */ + // "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */ + // "sourceRoot": "", /* Specify the root path for debuggers to find the reference source code. */ + // "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */ + "inlineSources": true, /* Include source code in the sourcemaps inside the emitted JavaScript. */ + // "emitBOM": true, /* Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files. */ + // "newLine": "crlf", /* Set the newline character for emitting files. */ + // "stripInternal": true, /* Disable emitting declarations that have '@internal' in their JSDoc comments. */ + // "noEmitHelpers": true, /* Disable generating custom helper functions like '__extends' in compiled output. */ + "noEmitOnError": true, /* Disable emitting files if any type checking errors are reported. */ + // "preserveConstEnums": true, /* Disable erasing 'const enum' declarations in generated code. */ + // "declarationDir": "./", /* Specify the output directory for generated declaration files. */ + /* Interop Constraints */ + // "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */ + // "verbatimModuleSyntax": true, /* Do not transform or elide any imports or exports not marked as type-only, ensuring they are written in the output file's format based on the 'module' setting. */ + // "isolatedDeclarations": true, /* Require sufficient annotation on exports so other tools can trivially generate declaration files. */ + // "erasableSyntaxOnly": true, /* Do not allow runtime constructs that are not part of ECMAScript. */ + // "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */ + "esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */ + // "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */ + "forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */ + /* Type Checking */ + "strict": true, /* Enable all strict type-checking options. */ + // "noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied 'any' type. */ + // "strictNullChecks": true, /* When type checking, take into account 'null' and 'undefined'. */ + // "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */ + // "strictBindCallApply": true, /* Check that the arguments for 'bind', 'call', and 'apply' methods match the original function. */ + // "strictPropertyInitialization": true, /* Check for class properties that are declared but not set in the constructor. */ + // "strictBuiltinIteratorReturn": true, /* Built-in iterators are instantiated with a 'TReturn' type of 'undefined' instead of 'any'. */ + // "noImplicitThis": true, /* Enable error reporting when 'this' is given the type 'any'. */ + // "useUnknownInCatchVariables": true, /* Default catch clause variables as 'unknown' instead of 'any'. */ + // "alwaysStrict": true, /* Ensure 'use strict' is always emitted. */ + // "noUnusedLocals": true, /* Enable error reporting when local variables aren't read. */ + // "noUnusedParameters": true, /* Raise an error when a function parameter isn't read. */ + // "exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */ + // "noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */ + // "noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */ + // "noUncheckedIndexedAccess": true, /* Add 'undefined' to a type when accessed using an index. */ + // "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */ + // "noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type. */ + // "allowUnusedLabels": true, /* Disable error reporting for unused labels. */ + // "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */ + /* Completeness */ + // "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */ + "skipLibCheck": true /* Skip type checking all .d.ts files. */ + }, + "include": [ + "app/**/*" + ] +} diff --git a/electron/version.json b/electron/version.json new file mode 100644 index 0000000..c26d3a3 --- /dev/null +++ b/electron/version.json @@ -0,0 +1,9 @@ +{ + "version": "0.8.9-beta", + "message": "Presenton Desktop electron-v0.8.9-beta\n\nA polished 0.8.9-beta release with lots of improvements across the Electron app.\n\nWhat's New\n\n• Faster, more reliable exports with Chromium export support\n• Better image editing with stock search and OpenAI-compatible generation\n• Improved AI model support, including LiteLLM, Azure, Vertex, and ComfyUI seeds\n• Cleaner editing workflows, markdown rendering, and slide management\n• Updated templates, Chart.js migration, and multilingual UI improvements\n• Stability fixes for packaging, onboarding, layouts, fonts, and exports\n\nInstallation\nDownload Link: https://presenton.ai/download\nLove the app? Star us on GitHub → github.com/presenton/presenton", + "downloads": { + "linux": "https://github.com/presenton/presenton/releases/download/electron-v0.8.9-beta/Presenton-0.8.9-beta.deb", + "mac": "https://github.com/presenton/presenton/releases/download/electron-v0.8.9-beta/Presenton-0.8.9-beta.dmg", + "windows": "https://github.com/presenton/presenton/releases/download/electron-v0.8.9-beta/Presenton-0.8.9-beta.exe" + } +} \ No newline at end of file diff --git a/layouts.json b/layouts.json new file mode 100644 index 0000000..954ce98 --- /dev/null +++ b/layouts.json @@ -0,0 +1,6670 @@ +{ + "layouts": { + "layouts": [ + { + "id": "business_proposal_cover_layout", + "description": "Dark business proposal cover with full-bleed building photo, dotted corner overlays, top-left branding, large stacked title, subtitle, and vertical accent bar.", + "components": [ + { + "id": "background_component", + "description": "Full-slide decorative background with base fill, architecture photo, and dotted wave overlays.", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 1280, + "height": 720 + }, + "elements": [ + { + "type": "rectangle", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 1280, + "height": 720 + }, + "fill": { + "color": "#FFFFFF", + "opacity": 1 + } + }, + { + "type": "image", + "position": { + "x": -0.05, + "y": 0 + }, + "size": { + "width": 1279.97, + "height": 719.97 + }, + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image1-16c43050d578.png", + "fit": "cover", + "decorative": true, + "name": "architecture_background", + "is_icon": false + }, + { + "type": "image", + "position": { + "x": 797.25, + "y": 429.35 + }, + "size": { + "width": 689.81, + "height": 611.02 + }, + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image2-e91f5b535bf6.png", + "fit": "cover", + "decorative": true, + "name": "bottom_right_dotted_overlay", + "is_icon": false + }, + { + "type": "image", + "position": { + "x": -295.33, + "y": -314.53 + }, + "size": { + "width": 590.64, + "height": 523.16 + }, + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image2-e91f5b535bf6.png", + "fit": "cover", + "decorative": true, + "name": "top_left_dotted_overlay", + "is_icon": false + } + ] + }, + { + "id": "brand_header_component", + "description": "Top-left brand lockup with logo icon and italic company name.", + "position": { + "x": 84.94, + "y": 142.44 + }, + "size": { + "width": 235.66, + "height": 71.74 + }, + "elements": [ + { + "type": "group", + "children": [ + { + "type": "image", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 68.33, + "height": 71.74 + }, + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image4-11074594581f.png", + "fit": "cover", + "decorative": false, + "name": "company_logo", + "is_icon": true + }, + { + "type": "text", + "position": { + "x": 84.48, + "y": 6.27 + }, + "size": { + "width": 151.18, + "height": 49.61 + }, + "font": { + "size": 18.4, + "family": "Montserrat Italics", + "color": "#FFFFFF", + "italic": true, + "wrap": "word" + }, + "alignment": { + "horizontal": "left", + "vertical": "top" + }, + "runs": [ + { + "text": "Arowwai Industries", + "font": { + "size": 18.4, + "family": "Montserrat Italics", + "color": "#FFFFFF", + "italic": true, + "wrap": "word" + } + } + ], + "decorative": false, + "name": "company_name", + "max_length": 24, + "min_length": 6 + } + ], + "name": "brand_lockup" + } + ] + }, + { + "id": "main_title_content_component", + "description": "Primary cover text block with vertical white accent, two-line headline, and short supporting paragraph.", + "position": { + "x": 94.34, + "y": 198.85 + }, + "size": { + "width": 946.72, + "height": 411.39 + }, + "elements": [ + { + "type": "group", + "children": [ + { + "type": "rectangle", + "position": { + "x": 0, + "y": 36.31 + }, + "size": { + "width": 10.78, + "height": 371 + }, + "fill": { + "color": "#FFFFFF", + "opacity": 1 + } + }, + { + "type": "text", + "position": { + "x": 34.95, + "y": 0 + }, + "size": { + "width": 911.77, + "height": 173.98 + }, + "font": { + "size": 132.44, + "family": "Codec Pro Ultra-Bold", + "color": "#FFFFFF", + "bold": true, + "wrap": "none" + }, + "alignment": { + "horizontal": "left", + "vertical": "top" + }, + "runs": [ + { + "text": "BUSINESS", + "font": { + "size": 132.44, + "family": "Codec Pro Ultra-Bold", + "color": "#FFFFFF", + "bold": true, + "wrap": "none" + } + } + ], + "decorative": false, + "name": "title_line_1", + "max_length": 12, + "min_length": 4 + }, + { + "type": "text", + "position": { + "x": 34.95, + "y": 132.69 + }, + "size": { + "width": 911.77, + "height": 205.91 + }, + "font": { + "size": 156.89, + "family": "Codec Pro Ultra-Bold", + "color": "#FFFFFF", + "bold": true, + "wrap": "none" + }, + "alignment": { + "horizontal": "left", + "vertical": "top" + }, + "runs": [ + { + "text": "PROPOSAL", + "font": { + "size": 156.89, + "family": "Codec Pro Ultra-Bold", + "color": "#FFFFFF", + "bold": true, + "wrap": "none" + } + } + ], + "decorative": false, + "name": "title_line_2", + "max_length": 12, + "min_length": 4 + }, + { + "type": "text", + "position": { + "x": 34.95, + "y": 323.05 + }, + "size": { + "width": 664.26, + "height": 88.34 + }, + "font": { + "size": 21.51, + "family": "Montserrat Medium", + "color": "#FFFFFF", + "bold": true, + "wrap": "word" + }, + "alignment": { + "horizontal": "left", + "vertical": "top" + }, + "runs": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim", + "font": { + "size": 21.51, + "family": "Montserrat Medium", + "color": "#FFFFFF", + "bold": true, + "wrap": "word" + } + } + ], + "decorative": false, + "name": "proposal_subtitle", + "max_length": 160, + "min_length": 40 + } + ], + "name": "title_block_with_accent" + } + ] + } + ] + }, + { + "id": "content_index_slide", + "description": "A presentation content/index slide with a dark architectural photo banner at the top, centered white title, and an eight-item content menu arranged in a two-row by four-column grid on a light gray background.", + "components": [ + { + "id": "background", + "description": "Full-slide light gray background.", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 1280, + "height": 720 + }, + "elements": [ + { + "type": "rectangle", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 1280, + "height": 720 + }, + "fill": { + "color": "#F2F2F2", + "opacity": 1 + } + } + ] + }, + { + "id": "hero_header", + "description": "Top photographic banner with centered slide title.", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 1280, + "height": 233.12 + }, + "elements": [ + { + "type": "image", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 1279.97, + "height": 233.12 + }, + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image6-e4eb32240a1a.png", + "fit": "cover", + "decorative": true, + "name": "header_architecture_photo", + "is_icon": false + }, + { + "type": "text", + "position": { + "x": 350.44, + "y": 92.95 + }, + "size": { + "width": 579.1, + "height": 110.71 + }, + "font": { + "size": 84.09, + "family": "Codec Pro", + "color": "#FFFFFF", + "bold": false, + "italic": false, + "line_height": 1, + "wrap": "none", + "ellipsis": false + }, + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "runs": [ + { + "text": "Content", + "font": { + "size": 84.09, + "family": "Codec Pro", + "color": "#FFFFFF", + "bold": false, + "italic": false, + "line_height": 1, + "wrap": "none", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "slide_title", + "max_length": 20, + "min_length": 4 + } + ] + }, + { + "id": "content_menu_grid", + "description": "Eight numbered content sections arranged as a centered 4-column by 2-row menu grid.", + "position": { + "x": 188.4, + "y": 282.91 + }, + "size": { + "width": 903.17, + "height": 329.02 + }, + "elements": [ + { + "type": "grid", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 903.17, + "height": 329.02 + }, + "columns": 4, + "rows": 2, + "column_gap": 32.43, + "row_gap": 80.99, + "align_items": "center", + "justify_items": "center", + "children": [ + { + "type": "container", + "alignment": { + "horizontal": "center", + "vertical": "middle" + }, + "padding": { + "top": 0, + "right": 0, + "bottom": 0, + "left": 0 + }, + "child": { + "type": "text", + "font": { + "size": 20.36, + "family": "Montserrat", + "color": "#010101", + "bold": false, + "italic": false, + "line_height": 1.2, + "wrap": "word", + "ellipsis": false + }, + "alignment": { + "horizontal": "center", + "vertical": "middle" + }, + "runs": [ + { + "text": "01\n", + "font": { + "size": 84.09, + "family": "Codec Pro", + "color": "#000000", + "bold": false, + "italic": false, + "line_height": 1, + "wrap": "none", + "ellipsis": false + } + }, + { + "text": "About Us", + "font": { + "size": 20.36, + "family": "Montserrat", + "color": "#010101", + "bold": false, + "italic": false, + "line_height": 1.2, + "wrap": "word", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "content_item", + "max_length": 15, + "min_length": 5 + }, + "decorative": false + }, + { + "type": "container", + "alignment": { + "horizontal": "center", + "vertical": "middle" + }, + "padding": { + "top": 0, + "right": 0, + "bottom": 0, + "left": 0 + }, + "child": { + "type": "text", + "font": { + "size": 20.36, + "family": "Montserrat", + "color": "#010101", + "bold": false, + "italic": false, + "line_height": 1.2, + "wrap": "word", + "ellipsis": false + }, + "alignment": { + "horizontal": "center", + "vertical": "middle" + }, + "runs": [ + { + "text": "02\n", + "font": { + "size": 84.09, + "family": "Codec Pro", + "color": "#000000", + "bold": false, + "italic": false, + "line_height": 1, + "wrap": "none", + "ellipsis": false + } + }, + { + "text": "Our Team", + "font": { + "size": 20.36, + "family": "Montserrat", + "color": "#010101", + "bold": false, + "italic": false, + "line_height": 1.2, + "wrap": "word", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "content_item", + "max_length": 15, + "min_length": 5 + }, + "decorative": false + }, + { + "type": "container", + "alignment": { + "horizontal": "center", + "vertical": "middle" + }, + "padding": { + "top": 0, + "right": 0, + "bottom": 0, + "left": 0 + }, + "child": { + "type": "text", + "font": { + "size": 20.36, + "family": "Montserrat", + "color": "#010101", + "bold": false, + "italic": false, + "line_height": 1.2, + "wrap": "word", + "ellipsis": false + }, + "alignment": { + "horizontal": "center", + "vertical": "middle" + }, + "runs": [ + { + "text": "03\n", + "font": { + "size": 84.09, + "family": "Codec Pro", + "color": "#000000", + "bold": false, + "italic": false, + "line_height": 1, + "wrap": "none", + "ellipsis": false + } + }, + { + "text": "Strategy", + "font": { + "size": 20.36, + "family": "Montserrat", + "color": "#010101", + "bold": false, + "italic": false, + "line_height": 1.2, + "wrap": "word", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "content_item", + "max_length": 15, + "min_length": 5 + }, + "decorative": false + }, + { + "type": "container", + "alignment": { + "horizontal": "center", + "vertical": "middle" + }, + "padding": { + "top": 0, + "right": 0, + "bottom": 0, + "left": 0 + }, + "child": { + "type": "text", + "font": { + "size": 20.36, + "family": "Montserrat", + "color": "#010101", + "bold": false, + "italic": false, + "line_height": 1.2, + "wrap": "word", + "ellipsis": false + }, + "alignment": { + "horizontal": "center", + "vertical": "middle" + }, + "runs": [ + { + "text": "04\n", + "font": { + "size": 84.09, + "family": "Codec Pro", + "color": "#000000", + "bold": false, + "italic": false, + "line_height": 1, + "wrap": "none", + "ellipsis": false + } + }, + { + "text": "Our Services", + "font": { + "size": 20.36, + "family": "Montserrat", + "color": "#010101", + "bold": false, + "italic": false, + "line_height": 1.2, + "wrap": "word", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "content_item", + "max_length": 15, + "min_length": 5 + }, + "decorative": false + }, + { + "type": "container", + "alignment": { + "horizontal": "center", + "vertical": "middle" + }, + "padding": { + "top": 0, + "right": 0, + "bottom": 0, + "left": 0 + }, + "child": { + "type": "text", + "font": { + "size": 20.36, + "family": "Montserrat", + "color": "#010101", + "bold": false, + "italic": false, + "line_height": 1.2, + "wrap": "word", + "ellipsis": false + }, + "alignment": { + "horizontal": "center", + "vertical": "middle" + }, + "runs": [ + { + "text": "05\n", + "font": { + "size": 84.09, + "family": "Codec Pro", + "color": "#000000", + "bold": false, + "italic": false, + "line_height": 1, + "wrap": "none", + "ellipsis": false + } + }, + { + "text": "Quarter", + "font": { + "size": 20.36, + "family": "Montserrat", + "color": "#010101", + "bold": false, + "italic": false, + "line_height": 1.2, + "wrap": "word", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "content_item", + "max_length": 15, + "min_length": 5 + }, + "decorative": false + }, + { + "type": "container", + "alignment": { + "horizontal": "center", + "vertical": "middle" + }, + "padding": { + "top": 0, + "right": 0, + "bottom": 0, + "left": 0 + }, + "child": { + "type": "text", + "font": { + "size": 20.36, + "family": "Montserrat", + "color": "#010101", + "bold": false, + "italic": false, + "line_height": 1.2, + "wrap": "word", + "ellipsis": false + }, + "alignment": { + "horizontal": "center", + "vertical": "middle" + }, + "runs": [ + { + "text": "06\n", + "font": { + "size": 84.09, + "family": "Codec Pro", + "color": "#000000", + "bold": false, + "italic": false, + "line_height": 1, + "wrap": "none", + "ellipsis": false + } + }, + { + "text": "Experience", + "font": { + "size": 20.36, + "family": "Montserrat", + "color": "#010101", + "bold": false, + "italic": false, + "line_height": 1.2, + "wrap": "word", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "content_item", + "max_length": 15, + "min_length": 5 + }, + "decorative": false + }, + { + "type": "container", + "alignment": { + "horizontal": "center", + "vertical": "middle" + }, + "padding": { + "top": 0, + "right": 0, + "bottom": 0, + "left": 0 + }, + "child": { + "type": "text", + "font": { + "size": 20.36, + "family": "Montserrat", + "color": "#010101", + "bold": false, + "italic": false, + "line_height": 1.2, + "wrap": "word", + "ellipsis": false + }, + "alignment": { + "horizontal": "center", + "vertical": "middle" + }, + "runs": [ + { + "text": "07\n", + "font": { + "size": 84.09, + "family": "Codec Pro", + "color": "#000000", + "bold": false, + "italic": false, + "line_height": 1, + "wrap": "none", + "ellipsis": false + } + }, + { + "text": "Concept", + "font": { + "size": 20.36, + "family": "Montserrat", + "color": "#010101", + "bold": false, + "italic": false, + "line_height": 1.2, + "wrap": "word", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "content_item", + "max_length": 15, + "min_length": 5 + }, + "decorative": false + }, + { + "type": "container", + "alignment": { + "horizontal": "center", + "vertical": "middle" + }, + "padding": { + "top": 0, + "right": 0, + "bottom": 0, + "left": 0 + }, + "child": { + "type": "text", + "font": { + "size": 20.36, + "family": "Montserrat", + "color": "#010101", + "bold": false, + "italic": false, + "line_height": 1.2, + "wrap": "word", + "ellipsis": false + }, + "alignment": { + "horizontal": "center", + "vertical": "middle" + }, + "runs": [ + { + "text": "08\n", + "font": { + "size": 84.09, + "family": "Codec Pro", + "color": "#000000", + "bold": false, + "italic": false, + "line_height": 1, + "wrap": "none", + "ellipsis": false + } + }, + { + "text": "Next Project", + "font": { + "size": 20.36, + "family": "Montserrat", + "color": "#010101", + "bold": false, + "italic": false, + "line_height": 1.2, + "wrap": "word", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "content_item", + "max_length": 15, + "min_length": 5 + }, + "decorative": false + } + ], + "name": "content_items_grid", + "max_children": 8, + "min_children": 4 + } + ] + } + ] + }, + { + "id": "about_us_slide_layout", + "description": "About Us slide with a grayscale architectural photo on the left, a large title on the upper right, two stacked dark information cards with white icons and body copy, and a decorative page marker at the bottom right.", + "components": [ + { + "id": "background", + "description": "Light gray full-slide background.", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 1280, + "height": 720 + }, + "elements": [ + { + "type": "rectangle", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 1280, + "height": 720 + }, + "fill": { + "color": "#F2F2F2", + "opacity": 1 + } + } + ] + }, + { + "id": "left_architecture_image", + "description": "Large decorative grayscale building image occupying the left side of the slide.", + "position": { + "x": 30.16, + "y": 32 + }, + "size": { + "width": 468.03, + "height": 655.75 + }, + "elements": [ + { + "type": "image", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 468.03, + "height": 655.75 + }, + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image7-a5820cb7a74e.png", + "fit": "cover", + "decorative": true, + "name": "architecture_photo", + "is_icon": false + } + ] + }, + { + "id": "title", + "description": "Main slide heading positioned above the information cards.", + "position": { + "x": 522.48, + "y": 101.17 + }, + "size": { + "width": 497.89, + "height": 93.15 + }, + "elements": [ + { + "type": "text", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 497.89, + "height": 93.15 + }, + "font": { + "size": 70.67, + "family": "Codec Pro", + "color": "#1A1A1A", + "wrap": "none", + "ellipsis": false + }, + "alignment": { + "horizontal": "left", + "vertical": "top" + }, + "runs": [ + { + "text": "ABOUT US", + "font": { + "size": 70.67, + "family": "Codec Pro", + "color": "#1A1A1A", + "wrap": "none", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "slide_title", + "max_length": 18, + "min_length": 4 + } + ] + }, + { + "id": "information_cards", + "description": "Two vertically stacked dark information cards, each with a white line icon on the left and a paragraph of white text on the right.", + "position": { + "x": 432.88, + "y": 241.03 + }, + "size": { + "width": 490.03, + "height": 334.47 + }, + "elements": [ + { + "type": "flex", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 490.03, + "height": 334.47 + }, + "direction": "column", + "wrap": false, + "align_items": "stretch", + "justify_content": "flex-start", + "gap": 46.49, + "row_gap": 46.49, + "children": [ + { + "type": "container", + "size": { + "width": 490.03, + "height": 120.74 + }, + "alignment": { + "horizontal": "left", + "vertical": "middle" + }, + "fill": { + "color": "#1A1A1A", + "opacity": 1 + }, + "border_radius": { + "tl": 0, + "tr": 0, + "bl": 0, + "br": 0 + }, + "shadow": { + "color": "#000000", + "blur": 34, + "opacity": 0.28, + "offset_x": 0, + "offset_y": 24 + }, + "padding": { + "top": 0, + "right": 0, + "bottom": 0, + "left": 0 + }, + "child": { + "type": "group", + "children": [ + { + "type": "image", + "position": { + "x": 18.32, + "y": 20.24 + }, + "size": { + "width": 82.62, + "height": 79.77 + }, + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image8-5246484067a4.png", + "fit": "contain", + "decorative": false, + "name": "card_icon", + "is_icon": true + }, + { + "type": "text", + "position": { + "x": 114.19, + "y": 18.22 + }, + "size": { + "width": 344.26, + "height": 86 + }, + "font": { + "size": 15.81, + "family": "Montserrat", + "color": "#FFFFFF", + "line_height": 1.45, + "wrap": "word", + "ellipsis": false + }, + "alignment": { + "horizontal": "left", + "vertical": "top" + }, + "runs": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis vulputate nulla at ante rhoncus, vel efficitur felis condimentum. Proin odio odio.", + "font": { + "size": 15.81, + "family": "Montserrat", + "color": "#FFFFFF", + "line_height": 1.45, + "wrap": "word", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "card_body_text", + "max_length": 144, + "min_length": 72 + } + ], + "name": "card_content" + }, + "decorative": false + }, + { + "type": "container", + "size": { + "width": 490.03, + "height": 120.74 + }, + "alignment": { + "horizontal": "left", + "vertical": "middle" + }, + "fill": { + "color": "#1A1A1A", + "opacity": 1 + }, + "border_radius": { + "tl": 0, + "tr": 0, + "bl": 0, + "br": 0 + }, + "shadow": { + "color": "#000000", + "blur": 34, + "opacity": 0.28, + "offset_x": 0, + "offset_y": 24 + }, + "padding": { + "top": 0, + "right": 0, + "bottom": 0, + "left": 0 + }, + "child": { + "type": "group", + "children": [ + { + "type": "image", + "position": { + "x": 18.32, + "y": 18.68 + }, + "size": { + "width": 82.62, + "height": 79.77 + }, + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image11-e574f00ea1f3.png", + "fit": "contain", + "decorative": false, + "name": "card_icon", + "is_icon": true + }, + { + "type": "text", + "position": { + "x": 114.19, + "y": 18.25 + }, + "size": { + "width": 344.26, + "height": 86 + }, + "font": { + "size": 15.81, + "family": "Montserrat", + "color": "#FFFFFF", + "line_height": 1.45, + "wrap": "word", + "ellipsis": false + }, + "alignment": { + "horizontal": "left", + "vertical": "top" + }, + "runs": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis vulputate nulla at ante rhoncus, vel efficitur felis condimentum. Proin odio odio.", + "font": { + "size": 15.81, + "family": "Montserrat", + "color": "#FFFFFF", + "line_height": 1.45, + "wrap": "word", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "card_body_text", + "max_length": 144, + "min_length": 72 + } + ], + "name": "card_content" + }, + "decorative": false + } + ], + "name": "stacked_card_list", + "max_children": 2, + "min_children": 2 + } + ] + }, + { + "id": "footer_page_marker", + "description": "Decorative black page marker block clipped at the bottom right with page number text.", + "position": { + "x": 1005.58, + "y": 670.09 + }, + "size": { + "width": 365.25, + "height": 79.07 + }, + "elements": [ + { + "type": "rectangle", + "position": { + "x": 0, + "y": 5.06 + }, + "size": { + "width": 365.25, + "height": 74 + }, + "fill": { + "color": "#000000", + "opacity": 1 + } + }, + { + "type": "text", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 365.25, + "height": 79.07 + }, + "font": { + "size": 19.56, + "family": "Open Sauce", + "color": "#000000", + "wrap": "none", + "ellipsis": false + }, + "alignment": { + "horizontal": "center", + "vertical": "middle" + }, + "runs": [ + { + "text": "01", + "font": { + "size": 19.56, + "family": "Open Sauce", + "color": "#000000", + "wrap": "none", + "ellipsis": false + } + } + ], + "decorative": true, + "name": "page_number", + "max_length": 2, + "min_length": 1 + } + ] + } + ] + }, + { + "id": "goals_objectives_slide_layout", + "description": "A minimalist goals and objectives slide with a grayscale architectural photo strip on the left, a black footer block, a large serif title at upper right, and three evenly spaced objective cards with circular icons, bold headings, and centered descriptions.", + "components": [ + { + "id": "background", + "description": "Full-slide light gray background.", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 1280, + "height": 720 + }, + "elements": [ + { + "type": "rectangle", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 1280, + "height": 720 + }, + "fill": { + "color": "#F2F2F2", + "opacity": 1 + } + } + ] + }, + { + "id": "left_photo_panel", + "description": "Decorative vertical grayscale architectural image panel on the left side of the slide.", + "position": { + "x": 72.01, + "y": 0 + }, + "size": { + "width": 315.89, + "height": 720 + }, + "elements": [ + { + "type": "image", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 315.89, + "height": 786.77 + }, + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image13-03865950d025.png", + "fit": "cover", + "decorative": true, + "name": "left_architecture_photo", + "is_icon": false + } + ] + }, + { + "id": "bottom_black_footer", + "description": "Decorative black rectangle footer extending from the left edge into the lower center.", + "position": { + "x": -42.78, + "y": 675.15 + }, + "size": { + "width": 582.4, + "height": 74 + }, + "elements": [ + { + "type": "rectangle", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 582.4, + "height": 74 + }, + "fill": { + "color": "#000000", + "opacity": 1 + } + } + ] + }, + { + "id": "slide_title", + "description": "Large two-line title reading 'GOALS AND OBJECTIVES' positioned above the objective cards.", + "position": { + "x": 406.27, + "y": 86.65 + }, + "size": { + "width": 500.49, + "height": 177.97 + }, + "elements": [ + { + "type": "text", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 500.49, + "height": 177.97 + }, + "font": { + "size": 70.67, + "family": "Codec Pro", + "color": "#1A1A1A", + "line_height": 1.15, + "wrap": "word", + "ellipsis": false + }, + "alignment": { + "horizontal": "left", + "vertical": "top" + }, + "runs": [ + { + "text": "GOALS AND\nOBJECTIVES", + "font": { + "size": 70.67, + "family": "Codec Pro", + "color": "#1A1A1A", + "line_height": 1.15, + "wrap": "word", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "main_title", + "max_length": 28, + "min_length": 10 + } + ] + }, + { + "id": "objectives_grid", + "description": "Three-column objective section with circular line icons, bold objective headings, and centered paragraph descriptions.", + "position": { + "x": 406.27, + "y": 279.16 + }, + "size": { + "width": 668.71, + "height": 336.87 + }, + "elements": [ + { + "type": "grid", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 668.71, + "height": 336.87 + }, + "columns": 3, + "rows": 1, + "gap": 37, + "column_gap": 37, + "row_gap": 0, + "align_items": "flex-start", + "justify_items": "center", + "children": [ + { + "type": "container", + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "padding": { + "top": 0, + "right": 0, + "bottom": 0, + "left": 0 + }, + "child": { + "type": "flex", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 201.15, + "height": 336.87 + }, + "direction": "column", + "wrap": false, + "align_items": "center", + "justify_content": "flex-start", + "gap": 14, + "row_gap": 14, + "children": [ + { + "type": "group", + "children": [ + { + "type": "image", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 128.68, + "height": 128.68 + }, + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image14-546b1b2dc574.png", + "fit": "cover", + "decorative": true, + "name": "icon_circle", + "is_icon": false + }, + { + "type": "image", + "position": { + "x": 33.76, + "y": 35.7 + }, + "size": { + "width": 61.18, + "height": 55.74 + }, + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image16-a993a1cd5d41.png", + "fit": "contain", + "decorative": false, + "name": "objective_icon", + "is_icon": true + } + ], + "name": "objective_icon_group" + }, + { + "type": "text", + "font": { + "size": 21.51, + "family": "Montserrat Bold", + "color": "#000000", + "bold": true, + "line_height": 1.1, + "wrap": "word", + "ellipsis": false + }, + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "runs": [ + { + "text": "Objective nº 1", + "font": { + "size": 21.51, + "family": "Montserrat Bold", + "color": "#000000", + "bold": true, + "line_height": 1.1, + "wrap": "word", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "objective_title", + "max_length": 14, + "min_length": 7 + }, + { + "type": "text", + "font": { + "size": 15.81, + "family": "Montserrat", + "color": "#010101", + "line_height": 1.45, + "wrap": "word", + "ellipsis": false + }, + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "runs": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis vulputate nulla at ante rhoncus, vel efficitur felis condimentum. Proin odio odio.", + "font": { + "size": 15.81, + "family": "Montserrat", + "color": "#010101", + "line_height": 1.45, + "wrap": "word", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "objective_description", + "max_length": 144, + "min_length": 72 + } + ], + "name": "objective_card", + "max_children": 3, + "min_children": 3 + }, + "decorative": false + }, + { + "type": "container", + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "padding": { + "top": 0, + "right": 0, + "bottom": 0, + "left": 0 + }, + "child": { + "type": "flex", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 201.15, + "height": 336.87 + }, + "direction": "column", + "wrap": false, + "align_items": "center", + "justify_content": "flex-start", + "gap": 14, + "row_gap": 14, + "children": [ + { + "type": "group", + "children": [ + { + "type": "image", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 128.68, + "height": 128.68 + }, + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image14-546b1b2dc574.png", + "fit": "cover", + "decorative": true, + "name": "icon_circle", + "is_icon": false + }, + { + "type": "image", + "position": { + "x": 36.26, + "y": 35.7 + }, + "size": { + "width": 56.16, + "height": 54.32 + }, + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image18-d4cf73b6f7e8.png", + "fit": "contain", + "decorative": false, + "name": "objective_icon", + "is_icon": true + } + ], + "name": "objective_icon_group" + }, + { + "type": "text", + "font": { + "size": 21.51, + "family": "Montserrat Bold", + "color": "#000000", + "bold": true, + "line_height": 1.1, + "wrap": "word", + "ellipsis": false + }, + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "runs": [ + { + "text": "Objective nº 2", + "font": { + "size": 21.51, + "family": "Montserrat Bold", + "color": "#000000", + "bold": true, + "line_height": 1.1, + "wrap": "word", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "objective_title", + "max_length": 14, + "min_length": 7 + }, + { + "type": "text", + "font": { + "size": 15.81, + "family": "Montserrat", + "color": "#010101", + "line_height": 1.45, + "wrap": "word", + "ellipsis": false + }, + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "runs": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis vulputate nulla at ante rhoncus, vel efficitur felis condimentum. Proin odio odio.", + "font": { + "size": 15.81, + "family": "Montserrat", + "color": "#010101", + "line_height": 1.45, + "wrap": "word", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "objective_description", + "max_length": 144, + "min_length": 72 + } + ], + "name": "objective_card", + "max_children": 3, + "min_children": 3 + }, + "decorative": false + }, + { + "type": "container", + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "padding": { + "top": 0, + "right": 0, + "bottom": 0, + "left": 0 + }, + "child": { + "type": "flex", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 201.15, + "height": 336.87 + }, + "direction": "column", + "wrap": false, + "align_items": "center", + "justify_content": "flex-start", + "gap": 14, + "row_gap": 14, + "children": [ + { + "type": "group", + "children": [ + { + "type": "image", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 128.68, + "height": 128.68 + }, + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image14-546b1b2dc574.png", + "fit": "cover", + "decorative": true, + "name": "icon_circle", + "is_icon": false + }, + { + "type": "image", + "position": { + "x": 34.02, + "y": 37.87 + }, + "size": { + "width": 57.73, + "height": 55.74 + }, + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image20-7e5d67b80871.png", + "fit": "contain", + "decorative": false, + "name": "objective_icon", + "is_icon": true + } + ], + "name": "objective_icon_group" + }, + { + "type": "text", + "font": { + "size": 21.51, + "family": "Montserrat Bold", + "color": "#000000", + "bold": true, + "line_height": 1.1, + "wrap": "word", + "ellipsis": false + }, + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "runs": [ + { + "text": "Objective nº 3", + "font": { + "size": 21.51, + "family": "Montserrat Bold", + "color": "#000000", + "bold": true, + "line_height": 1.1, + "wrap": "word", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "objective_title", + "max_length": 14, + "min_length": 7 + }, + { + "type": "text", + "font": { + "size": 15.81, + "family": "Montserrat", + "color": "#010101", + "line_height": 1.45, + "wrap": "word", + "ellipsis": false + }, + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "runs": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis vulputate nulla at ante rhoncus, vel efficitur felis condimentum. Proin odio odio.", + "font": { + "size": 15.81, + "family": "Montserrat", + "color": "#010101", + "line_height": 1.45, + "wrap": "word", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "objective_description", + "max_length": 144, + "min_length": 72 + } + ], + "name": "objective_card", + "max_children": 3, + "min_children": 3 + }, + "decorative": false + } + ], + "name": "objective_cards_grid", + "max_children": 3, + "min_children": 3 + } + ] + } + ] + }, + { + "id": "slide_5_component_layout", + "description": "Two-column concept slide with a light left infographic area and a dark right narrative panel containing title, body text, and highlighted monetary value.", + "components": [ + { + "id": "background_split", + "description": "Static full-slide split background: light gray canvas with dark right-side panel region.", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 1280, + "height": 720 + }, + "elements": [ + { + "type": "rectangle", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 1280, + "height": 720 + }, + "fill": { + "color": "#F2F2F2", + "opacity": 1 + } + }, + { + "type": "rectangle", + "position": { + "x": 752, + "y": 0 + }, + "size": { + "width": 527.97, + "height": 719.97 + }, + "fill": { + "color": "#1A1A1A", + "opacity": 1 + } + } + ] + }, + { + "id": "pyramid_percentage_infographic", + "description": "Left-side two-level pyramid infographic with a gray upper triangle, dark lower trapezoid, and percentage labels.", + "position": { + "x": 104.39, + "y": 145.79 + }, + "size": { + "width": 550.68, + "height": 477.58 + }, + "elements": [ + { + "type": "image", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 550.68, + "height": 477.58 + }, + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image22-f6c3c40e61c3.png", + "fit": "cover", + "decorative": true, + "name": "pyramid_shape_image", + "is_icon": false + }, + { + "type": "text", + "position": { + "x": 167.16, + "y": 173 + }, + "size": { + "width": 216.39, + "height": 98.14 + }, + "font": { + "size": 72.44, + "family": "Montserrat", + "color": "#FFFFFF", + "bold": false, + "italic": false, + "wrap": "none", + "ellipsis": false + }, + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "runs": [ + { + "text": "30%", + "font": { + "size": 72.44, + "family": "Montserrat", + "color": "#FFFFFF", + "bold": false, + "italic": false, + "wrap": "none", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "upper_percentage_label", + "max_length": 4, + "min_length": 2 + }, + { + "type": "text", + "position": { + "x": 167.16, + "y": 352.2 + }, + "size": { + "width": 216.39, + "height": 98.14 + }, + "font": { + "size": 72.44, + "family": "Montserrat", + "color": "#FFFFFF", + "bold": false, + "italic": false, + "wrap": "none", + "ellipsis": false + }, + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "runs": [ + { + "text": "70%", + "font": { + "size": 72.44, + "family": "Montserrat", + "color": "#FFFFFF", + "bold": false, + "italic": false, + "wrap": "none", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "lower_percentage_label", + "max_length": 4, + "min_length": 2 + } + ] + }, + { + "id": "right_business_content_panel", + "description": "Right-side dark content panel with large headline, paragraph copy, and outlined metric callout.", + "position": { + "x": 752, + "y": 0 + }, + "size": { + "width": 527.97, + "height": 720 + }, + "elements": [ + { + "type": "text", + "position": { + "x": 68.86, + "y": 64 + }, + "size": { + "width": 376.34, + "height": 155.54 + }, + "font": { + "size": 61.6, + "family": "Codec Pro", + "color": "#FFFFFF", + "bold": false, + "italic": false, + "wrap": "word", + "ellipsis": false + }, + "alignment": { + "horizontal": "left", + "vertical": "top" + }, + "runs": [ + { + "text": "CONCEPT IN BUSINESS", + "font": { + "size": 61.6, + "family": "Codec Pro", + "color": "#FFFFFF", + "bold": false, + "italic": false, + "wrap": "word", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "headline", + "max_length": 24, + "min_length": 8 + }, + { + "type": "text", + "position": { + "x": 74.08, + "y": 235.09 + }, + "size": { + "width": 332.12, + "height": 274.22 + }, + "font": { + "size": 22.13, + "family": "Montserrat", + "color": "#FFFFFF", + "bold": false, + "italic": false, + "line_height": 1.35, + "wrap": "word", + "ellipsis": false + }, + "alignment": { + "horizontal": "left", + "vertical": "top" + }, + "runs": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam euismod id sem quis accumsan. Sed tempus placerat velit a placerat. Cras suscipit est at mauris blandit efficitur finibus non augue. Sed tempus placerat velit a placerat. ", + "font": { + "size": 22.13, + "family": "Montserrat", + "color": "#FFFFFF", + "bold": false, + "italic": false, + "line_height": 1.35, + "wrap": "word", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "body_paragraph", + "max_length": 260, + "min_length": 80 + }, + { + "type": "rectangle", + "position": { + "x": 68.86, + "y": 534.68 + }, + "size": { + "width": 337.31, + "height": 100.36 + }, + "stroke": { + "color": "#FFFFFF", + "opacity": 1, + "width": 2.67 + } + }, + { + "type": "text", + "position": { + "x": 68.86, + "y": 495.12 + }, + "size": { + "width": 337.31, + "height": 139.92 + }, + "font": { + "size": 45.33, + "family": "Codec Pro", + "color": "#FFFFFF", + "bold": false, + "italic": true, + "wrap": "none", + "ellipsis": false + }, + "alignment": { + "horizontal": "center", + "vertical": "middle" + }, + "runs": [ + { + "text": "$ 5.250.257", + "font": { + "size": 45.33, + "family": "Codec Pro", + "color": "#FFFFFF", + "bold": false, + "italic": true, + "wrap": "none", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "metric_value", + "max_length": 16, + "min_length": 4 + } + ] + } + ] + }, + { + "id": "annual_earnings_slide_layout", + "description": "A minimalist annual earnings slide with a light gray background, decorative dotted contour patterns in opposite corners, a large editorial title and paragraph on the left, and a bar chart showing annual earnings from 2018 to 2022 on the right.", + "components": [ + { + "id": "background_decor", + "description": "Full-slide light gray background with static dotted contour pattern decorations in the bottom-left and top-right corners.", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 1280, + "height": 720 + }, + "elements": [ + { + "type": "rectangle", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 1280, + "height": 720 + }, + "fill": { + "color": "#F2F2F2", + "opacity": 1 + } + }, + { + "type": "image", + "position": { + "x": -77.98, + "y": 522.33 + }, + "size": { + "width": 446.31, + "height": 395.34 + }, + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image25-ffad6f70893e.png", + "fit": "cover", + "decorative": true, + "name": "bottom_left_dotted_pattern", + "is_icon": false + }, + { + "type": "image", + "position": { + "x": 1069.63, + "y": -188.75 + }, + "size": { + "width": 588.72, + "height": 521.5 + }, + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image25-ffad6f70893e.png", + "fit": "cover", + "decorative": true, + "name": "top_right_dotted_pattern", + "is_icon": false + } + ] + }, + { + "id": "left_text_content", + "description": "Left-column content area containing the large two-line slide title and a supporting paragraph.", + "position": { + "x": 145.23, + "y": 144.18 + }, + "size": { + "width": 405, + "height": 490 + }, + "elements": [ + { + "type": "flex", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 405, + "height": 490 + }, + "direction": "column", + "wrap": false, + "align_items": "flex-start", + "justify_content": "flex-start", + "gap": 14, + "children": [ + { + "type": "text", + "font": { + "size": 70.67, + "family": "Codec Pro", + "color": "#1A1A1A", + "bold": false, + "italic": false, + "line_height": 1.25, + "wrap": "word", + "ellipsis": false + }, + "alignment": { + "horizontal": "left", + "vertical": "top" + }, + "runs": [ + { + "text": "ANNUAL\nEARNINGS", + "font": { + "size": 70.67, + "family": "Codec Pro", + "color": "#1A1A1A", + "bold": false, + "italic": false, + "line_height": 1.25, + "wrap": "word", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "slide_title", + "max_length": 18, + "min_length": 8 + }, + { + "type": "text", + "font": { + "size": 22.13, + "family": "Montserrat", + "color": "#11100E", + "bold": false, + "italic": false, + "line_height": 1.58, + "wrap": "word", + "ellipsis": false + }, + "alignment": { + "horizontal": "left", + "vertical": "top" + }, + "runs": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam euismod id sem quis accumsan. Sed tempus placerat velit a placerat. Cras suscipit est at mauris blandit efficitur finibus non augue. Sed tempus placerat velit a placerat.", + "font": { + "size": 22.13, + "family": "Montserrat", + "color": "#11100E", + "bold": false, + "italic": false, + "line_height": 1.58, + "wrap": "word", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "supporting_paragraph", + "max_length": 240, + "min_length": 110 + } + ], + "name": "left_text_stack", + "max_children": 2, + "min_children": 2 + } + ] + }, + { + "id": "earnings_bar_chart", + "description": "Right-side vertical bar chart with five yearly earnings values, light horizontal gridlines, dark rounded bars, and x/y axis labels.", + "position": { + "x": 572, + "y": 176 + }, + "size": { + "width": 585, + "height": 465 + }, + "elements": [ + { + "type": "chart", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 585, + "height": 465 + }, + "chart_type": "bar", + "data": [ + { + "label": "2018", + "value": 7000, + "color": "#3A3A3A" + }, + { + "label": "2019", + "value": 15000, + "color": "#3A3A3A" + }, + { + "label": "2020", + "value": 20000, + "color": "#3A3A3A" + }, + { + "label": "2021", + "value": 36000, + "color": "#3A3A3A" + }, + { + "label": "2022", + "value": 39000, + "color": "#3A3A3A" + } + ], + "color": "#3A3A3A", + "axis_color": "#1A1A1A", + "label_color": "#1A1A1A", + "show_values": false, + "decorative": false, + "name": "annual_earnings_bar_chart" + } + ] + } + ] + }, + { + "id": "our_services_slide_layout", + "description": "A monochrome services title slide with a full-bleed architectural photo background, decorative dotted corner overlays, a large translucent dark content panel, centered two-line title, and two side-by-side service description blocks with vertical white dividers.", + "components": [ + { + "id": "background_decorative_layer", + "description": "Full-slide static background: white base, grayscale building image, and dotted decorative corner overlays.", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 1280, + "height": 720 + }, + "elements": [ + { + "type": "group", + "children": [ + { + "type": "rectangle", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 1280, + "height": 720 + }, + "fill": { + "color": "#FFFFFF", + "opacity": 1 + } + }, + { + "type": "image", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 1279.97, + "height": 719.97 + }, + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image27-9ac319b37852.png", + "fit": "cover", + "decorative": true, + "name": "grayscale_architecture_background", + "is_icon": false + }, + { + "type": "image", + "position": { + "x": 792.16, + "y": 434.44 + }, + "size": { + "width": 689.81, + "height": 611.02 + }, + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image2-e91f5b535bf6.png", + "fit": "cover", + "decorative": true, + "name": "bottom_right_dotted_overlay", + "is_icon": false + }, + { + "type": "image", + "position": { + "x": -344.92, + "y": -233.52 + }, + "size": { + "width": 689.81, + "height": 611.02 + }, + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image2-e91f5b535bf6.png", + "fit": "cover", + "decorative": true, + "name": "top_left_dotted_overlay", + "is_icon": false + } + ], + "name": "background_and_corner_decorations" + } + ] + }, + { + "id": "main_services_content_panel", + "description": "Central translucent dark overlay panel containing the large services heading and two service description text blocks.", + "position": { + "x": 72.01, + "y": 72.01 + }, + "size": { + "width": 1135.97, + "height": 575.97 + }, + "elements": [ + { + "type": "rectangle", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 1135.97, + "height": 575.97 + }, + "fill": { + "color": "#000000", + "opacity": 0.57 + } + }, + { + "type": "text", + "position": { + "x": 135.26, + "y": 103.89 + }, + "size": { + "width": 865.44, + "height": 311.46 + }, + "font": { + "size": 123.82, + "family": "Codec Pro", + "color": "#FFFFFF", + "line_height": 1.25, + "wrap": "word" + }, + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "runs": [ + { + "text": "OUR\nSERVICES", + "font": { + "size": 123.82, + "family": "Codec Pro", + "color": "#FFFFFF", + "line_height": 1.25, + "wrap": "word" + } + } + ], + "decorative": false, + "name": "main_services_title", + "max_length": 18, + "min_length": 6 + }, + { + "type": "flex", + "position": { + "x": 197.42, + "y": 440.02 + }, + "size": { + "width": 741.11, + "height": 86 + }, + "direction": "row", + "wrap": false, + "align_items": "flex-start", + "justify_content": "flex-start", + "gap": 30.52, + "column_gap": 30.52, + "row_gap": 0, + "children": [ + { + "type": "group", + "children": [ + { + "type": "rectangle", + "position": { + "x": 0, + "y": 1.99 + }, + "size": { + "width": 3.45, + "height": 84.01 + }, + "fill": { + "color": "#FFFFFF", + "opacity": 1 + } + }, + { + "type": "text", + "position": { + "x": 18.62, + "y": 0 + }, + "size": { + "width": 344.26, + "height": 86 + }, + "font": { + "size": 15.81, + "family": "Montserrat", + "color": "#FFFFFF", + "line_height": 1.45, + "wrap": "word" + }, + "alignment": { + "horizontal": "left", + "vertical": "top" + }, + "runs": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis vulputate nulla at ante rhoncus, vel efficitur felis condimentum. Proin odio odio.", + "font": { + "size": 15.81, + "family": "Montserrat", + "color": "#FFFFFF", + "line_height": 1.45, + "wrap": "word" + } + } + ], + "decorative": false, + "name": "left_service_description", + "max_length": 144, + "min_length": 72 + } + ], + "name": "service_description_item_left" + }, + { + "type": "group", + "children": [ + { + "type": "rectangle", + "position": { + "x": 0, + "y": 1.99 + }, + "size": { + "width": 3.45, + "height": 84.01 + }, + "fill": { + "color": "#FFFFFF", + "opacity": 1 + } + }, + { + "type": "text", + "position": { + "x": 18.62, + "y": 0 + }, + "size": { + "width": 344.26, + "height": 86 + }, + "font": { + "size": 15.81, + "family": "Montserrat", + "color": "#FFFFFF", + "line_height": 1.45, + "wrap": "word" + }, + "alignment": { + "horizontal": "left", + "vertical": "top" + }, + "runs": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis vulputate nulla at ante rhoncus, vel efficitur felis condimentum. Proin odio odio.", + "font": { + "size": 15.81, + "family": "Montserrat", + "color": "#FFFFFF", + "line_height": 1.45, + "wrap": "word" + } + } + ], + "decorative": false, + "name": "right_service_description", + "max_length": 144, + "min_length": 72 + } + ], + "name": "service_description_item_right" + } + ], + "name": "service_description_blocks", + "max_children": 2, + "min_children": 2 + } + ] + } + ] + }, + { + "id": "slide_8_component_layout", + "description": "A dark architectural background slide with a three-column services layout. Each service column contains a white line icon, bold service title, centered description, and a large lower rounded white pillar with a dark circular number badge.", + "components": [ + { + "id": "background_layer", + "description": "Full-slide decorative architecture photo background with a dark semi-transparent overlay across the upper and middle portion.", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 1280, + "height": 720 + }, + "elements": [ + { + "type": "rectangle", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 1280, + "height": 720 + }, + "fill": { + "color": "#FFFFFF", + "opacity": 1 + } + }, + { + "type": "image", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 1279.97, + "height": 719.97 + }, + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image28-85bfbdc752b1.png", + "fit": "cover", + "decorative": true, + "name": "architecture_background", + "is_icon": false + }, + { + "type": "rectangle", + "position": { + "x": -36.84, + "y": -45.15 + }, + "size": { + "width": 1357.61, + "height": 588.32 + }, + "rotation": 2.74, + "fill": { + "color": "#100F0D", + "opacity": 0.91 + } + } + ] + }, + { + "id": "three_services_section", + "description": "Three repeated service cards arranged horizontally. Each card has a replaceable service icon, title, description, and numbered badge integrated with a tall decorative white pillar.", + "position": { + "x": 144, + "y": 108 + }, + "size": { + "width": 992, + "height": 612 + }, + "elements": [ + { + "type": "grid", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 992, + "height": 612 + }, + "columns": 3, + "rows": 1, + "gap": 140, + "column_gap": 140, + "align_items": "stretch", + "justify_items": "center", + "children": [ + { + "type": "container", + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "padding": { + "top": 0, + "right": 0, + "bottom": 0, + "left": 0 + }, + "child": { + "type": "flex", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 236, + "height": 612 + }, + "direction": "column", + "wrap": false, + "align_items": "center", + "justify_content": "flex-start", + "gap": 14, + "row_gap": 14, + "children": [ + { + "type": "image", + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image29-895cfe2c0589.png", + "fit": "contain", + "decorative": false, + "name": "service_icon", + "is_icon": true + }, + { + "type": "text", + "font": { + "size": 19.56, + "family": "Montserrat Bold", + "color": "#FFFFFF", + "bold": true, + "wrap": "word" + }, + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "runs": [ + { + "text": "Service nº 1", + "font": { + "size": 19.56, + "family": "Montserrat Bold", + "color": "#FFFFFF", + "bold": true, + "wrap": "word" + } + } + ], + "decorative": false, + "name": "service_title", + "max_length": 12, + "min_length": 6 + }, + { + "type": "text", + "font": { + "size": 15.81, + "family": "Montserrat", + "color": "#FFFFFF", + "line_height": 1.45, + "wrap": "word" + }, + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "runs": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis vulputate nulla at ante rhoncus, vel efficitur felis condimentum. Proin odio odio.", + "font": { + "size": 15.81, + "family": "Montserrat", + "color": "#FFFFFF", + "line_height": 1.45, + "wrap": "word" + } + } + ], + "decorative": false, + "name": "service_description", + "max_length": 144, + "min_length": 72 + }, + { + "type": "container", + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "fill": { + "color": "#FFFFFF", + "opacity": 0.95 + }, + "border_radius": { + "tl": 94, + "tr": 94, + "bl": 0, + "br": 0 + }, + "padding": { + "top": 18, + "right": 14, + "bottom": 0, + "left": 14 + }, + "child": { + "type": "container", + "alignment": { + "horizontal": "center", + "vertical": "middle" + }, + "fill": { + "color": "#333333", + "opacity": 1 + }, + "stroke": { + "color": "#FFFFFF", + "opacity": 1, + "width": 5 + }, + "border_radius": { + "tl": 80, + "tr": 80, + "bl": 80, + "br": 80 + }, + "padding": { + "top": 18, + "right": 18, + "bottom": 18, + "left": 18 + }, + "child": { + "type": "text", + "font": { + "size": 73.6, + "family": "Codec Pro", + "color": "#FFFFFF", + "wrap": "none" + }, + "alignment": { + "horizontal": "center", + "vertical": "middle" + }, + "runs": [ + { + "text": "01", + "font": { + "size": 73.6, + "family": "Codec Pro", + "color": "#FFFFFF", + "wrap": "none" + } + } + ], + "decorative": false, + "name": "service_number", + "max_length": 2, + "min_length": 1 + }, + "decorative": true + }, + "decorative": true + } + ], + "name": "service_item_1", + "max_children": 4, + "min_children": 4 + }, + "decorative": false + }, + { + "type": "container", + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "padding": { + "top": 0, + "right": 0, + "bottom": 0, + "left": 0 + }, + "child": { + "type": "flex", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 236, + "height": 612 + }, + "direction": "column", + "wrap": false, + "align_items": "center", + "justify_content": "flex-start", + "gap": 14, + "row_gap": 14, + "children": [ + { + "type": "image", + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image31-90464f7841ef.png", + "fit": "contain", + "decorative": false, + "name": "service_icon", + "is_icon": true + }, + { + "type": "text", + "font": { + "size": 19.56, + "family": "Montserrat Bold", + "color": "#FFFFFF", + "bold": true, + "wrap": "word" + }, + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "runs": [ + { + "text": "Service nº 2", + "font": { + "size": 19.56, + "family": "Montserrat Bold", + "color": "#FFFFFF", + "bold": true, + "wrap": "word" + } + } + ], + "decorative": false, + "name": "service_title", + "max_length": 12, + "min_length": 6 + }, + { + "type": "text", + "font": { + "size": 15.81, + "family": "Montserrat", + "color": "#FFFFFF", + "line_height": 1.45, + "wrap": "word" + }, + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "runs": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis vulputate nulla at ante rhoncus, vel efficitur felis condimentum. Proin odio odio.", + "font": { + "size": 15.81, + "family": "Montserrat", + "color": "#FFFFFF", + "line_height": 1.45, + "wrap": "word" + } + } + ], + "decorative": false, + "name": "service_description", + "max_length": 144, + "min_length": 72 + }, + { + "type": "container", + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "fill": { + "color": "#FFFFFF", + "opacity": 0.95 + }, + "border_radius": { + "tl": 94, + "tr": 94, + "bl": 0, + "br": 0 + }, + "padding": { + "top": 18, + "right": 14, + "bottom": 0, + "left": 14 + }, + "child": { + "type": "container", + "alignment": { + "horizontal": "center", + "vertical": "middle" + }, + "fill": { + "color": "#333333", + "opacity": 1 + }, + "stroke": { + "color": "#FFFFFF", + "opacity": 1, + "width": 5 + }, + "border_radius": { + "tl": 80, + "tr": 80, + "bl": 80, + "br": 80 + }, + "padding": { + "top": 18, + "right": 18, + "bottom": 18, + "left": 18 + }, + "child": { + "type": "text", + "font": { + "size": 73.6, + "family": "Codec Pro", + "color": "#FFFFFF", + "wrap": "none" + }, + "alignment": { + "horizontal": "center", + "vertical": "middle" + }, + "runs": [ + { + "text": "02", + "font": { + "size": 73.6, + "family": "Codec Pro", + "color": "#FFFFFF", + "wrap": "none" + } + } + ], + "decorative": false, + "name": "service_number", + "max_length": 2, + "min_length": 1 + }, + "decorative": true + }, + "decorative": true + } + ], + "name": "service_item_2", + "max_children": 4, + "min_children": 4 + }, + "decorative": false + }, + { + "type": "container", + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "padding": { + "top": 0, + "right": 0, + "bottom": 0, + "left": 0 + }, + "child": { + "type": "flex", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 236, + "height": 612 + }, + "direction": "column", + "wrap": false, + "align_items": "center", + "justify_content": "flex-start", + "gap": 14, + "row_gap": 14, + "children": [ + { + "type": "image", + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image33-881d8ec48b4a.png", + "fit": "contain", + "decorative": false, + "name": "service_icon", + "is_icon": true + }, + { + "type": "text", + "font": { + "size": 19.56, + "family": "Montserrat Bold", + "color": "#FFFFFF", + "bold": true, + "wrap": "word" + }, + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "runs": [ + { + "text": "Service nº 3", + "font": { + "size": 19.56, + "family": "Montserrat Bold", + "color": "#FFFFFF", + "bold": true, + "wrap": "word" + } + } + ], + "decorative": false, + "name": "service_title", + "max_length": 12, + "min_length": 6 + }, + { + "type": "text", + "font": { + "size": 15.81, + "family": "Montserrat", + "color": "#FFFFFF", + "line_height": 1.45, + "wrap": "word" + }, + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "runs": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis vulputate nulla at ante rhoncus, vel efficitur felis condimentum. Proin odio odio.", + "font": { + "size": 15.81, + "family": "Montserrat", + "color": "#FFFFFF", + "line_height": 1.45, + "wrap": "word" + } + } + ], + "decorative": false, + "name": "service_description", + "max_length": 144, + "min_length": 72 + }, + { + "type": "container", + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "fill": { + "color": "#FFFFFF", + "opacity": 0.95 + }, + "border_radius": { + "tl": 94, + "tr": 94, + "bl": 0, + "br": 0 + }, + "padding": { + "top": 18, + "right": 14, + "bottom": 0, + "left": 14 + }, + "child": { + "type": "container", + "alignment": { + "horizontal": "center", + "vertical": "middle" + }, + "fill": { + "color": "#333333", + "opacity": 1 + }, + "stroke": { + "color": "#FFFFFF", + "opacity": 1, + "width": 5 + }, + "border_radius": { + "tl": 80, + "tr": 80, + "bl": 80, + "br": 80 + }, + "padding": { + "top": 18, + "right": 18, + "bottom": 18, + "left": 18 + }, + "child": { + "type": "text", + "font": { + "size": 73.6, + "family": "Codec Pro", + "color": "#FFFFFF", + "wrap": "none" + }, + "alignment": { + "horizontal": "center", + "vertical": "middle" + }, + "runs": [ + { + "text": "03", + "font": { + "size": 73.6, + "family": "Codec Pro", + "color": "#FFFFFF", + "wrap": "none" + } + } + ], + "decorative": false, + "name": "service_number", + "max_length": 2, + "min_length": 1 + }, + "decorative": true + }, + "decorative": true + } + ], + "name": "service_item_3", + "max_children": 4, + "min_children": 4 + }, + "decorative": false + } + ], + "name": "services_grid", + "max_children": 3, + "min_children": 3 + } + ] + } + ] + }, + { + "id": "strategy_slide_layout", + "description": "A minimalist strategy overview slide with a light gray background, abstract dotted decorative shapes in the top-left and bottom-right corners, a large right-aligned title with subtitle, and three horizontally arranged strategy cards with dark header bars and body descriptions.", + "components": [ + { + "id": "background_decor", + "description": "Static slide background with light gray fill and decorative dotted abstract corner images.", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 1280, + "height": 720 + }, + "elements": [ + { + "type": "rectangle", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 1280, + "height": 720 + }, + "fill": { + "color": "#F2F2F2", + "opacity": 1 + } + }, + { + "type": "image", + "position": { + "x": -189.53, + "y": -291.1 + }, + "size": { + "width": 786.65, + "height": 696.79 + }, + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image25-ffad6f70893e.png", + "fit": "cover", + "decorative": true, + "name": "top_left_dotted_abstract_shape", + "is_icon": false + }, + { + "type": "image", + "position": { + "x": 792.16, + "y": 434.44 + }, + "size": { + "width": 689.81, + "height": 611.02 + }, + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image25-ffad6f70893e.png", + "fit": "cover", + "decorative": true, + "name": "bottom_right_dotted_abstract_shape", + "is_icon": false + } + ] + }, + { + "id": "hero_header", + "description": "Right-aligned main slide heading and supporting subtitle paragraph near the upper-right of the slide.", + "position": { + "x": 423.89, + "y": 87.36 + }, + "size": { + "width": 738.24, + "height": 229.01 + }, + "elements": [ + { + "type": "flex", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 738.24, + "height": 229.01 + }, + "direction": "column", + "wrap": false, + "align_items": "flex-end", + "justify_content": "flex-start", + "gap": 10, + "children": [ + { + "type": "text", + "font": { + "size": 93.87, + "family": "Codec Pro", + "color": "#1A1A1A", + "bold": false, + "italic": false, + "line_height": 1, + "wrap": "none", + "ellipsis": false + }, + "alignment": { + "horizontal": "right", + "vertical": "top" + }, + "runs": [ + { + "text": "STRATEGY", + "font": { + "size": 93.87, + "family": "Codec Pro", + "color": "#1A1A1A", + "bold": false, + "italic": false, + "line_height": 1, + "wrap": "none", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "main_title", + "max_length": 18, + "min_length": 4 + }, + { + "type": "text", + "font": { + "size": 25.69, + "family": "Montserrat", + "color": "#000000", + "bold": false, + "italic": false, + "line_height": 1.35, + "wrap": "word", + "ellipsis": false + }, + "alignment": { + "horizontal": "right", + "vertical": "top" + }, + "runs": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis vulputate nulla at ante rhoncus, vel efficitur felis condimentum. Proin odio odio.", + "font": { + "size": 25.69, + "family": "Montserrat", + "color": "#000000", + "bold": false, + "italic": false, + "line_height": 1.35, + "wrap": "word", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "subtitle_paragraph", + "max_length": 150, + "min_length": 50 + } + ], + "name": "hero_header_flex", + "max_children": 2, + "min_children": 2 + } + ] + }, + { + "id": "strategy_cards", + "description": "Three-column strategy section with repeated cards. Each card has a dark header label and a descriptive text block underneath.", + "position": { + "x": 111.7, + "y": 388.16 + }, + "size": { + "width": 811.82, + "height": 217.92 + }, + "elements": [ + { + "type": "grid", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 811.82, + "height": 217.92 + }, + "columns": 3, + "rows": 1, + "gap": 38.6, + "column_gap": 38.6, + "align_items": "flex-start", + "justify_items": "stretch", + "children": [ + { + "type": "group", + "children": [ + { + "type": "rectangle", + "position": { + "x": 0, + "y": 5.06 + }, + "size": { + "width": 244.84, + "height": 37.44 + }, + "fill": { + "color": "#1A1A1A", + "opacity": 1 + } + }, + { + "type": "text", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 244.84, + "height": 42.48 + }, + "font": { + "size": 19.56, + "family": "Montserrat Bold", + "color": "#FFFFFF", + "bold": true, + "italic": false, + "line_height": 1, + "wrap": "word", + "ellipsis": false + }, + "alignment": { + "horizontal": "center", + "vertical": "middle" + }, + "runs": [ + { + "text": "Strategy nº 1", + "font": { + "size": 19.56, + "family": "Montserrat Bold", + "color": "#FFFFFF", + "bold": true, + "italic": false, + "line_height": 1, + "wrap": "word", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "strategy_card_title", + "max_length": 18, + "min_length": 7 + }, + { + "type": "text", + "position": { + "x": 0, + "y": 48.4 + }, + "size": { + "width": 244.84, + "height": 169.52 + }, + "font": { + "size": 17.51, + "family": "Montserrat", + "color": "#100F0D", + "bold": false, + "italic": false, + "line_height": 1.45, + "wrap": "word", + "ellipsis": false + }, + "alignment": { + "horizontal": "left", + "vertical": "top" + }, + "runs": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis vulputate nulla at ante rhoncus, vel efficitur felis condimentum. Proin odio odio.", + "font": { + "size": 17.51, + "family": "Montserrat", + "color": "#100F0D", + "bold": false, + "italic": false, + "line_height": 1.45, + "wrap": "word", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "strategy_card_body", + "max_length": 150, + "min_length": 60 + } + ], + "name": "strategy_card_1" + }, + { + "type": "group", + "children": [ + { + "type": "rectangle", + "position": { + "x": 0, + "y": 5.06 + }, + "size": { + "width": 244.84, + "height": 37.44 + }, + "fill": { + "color": "#1A1A1A", + "opacity": 1 + } + }, + { + "type": "text", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 244.84, + "height": 42.48 + }, + "font": { + "size": 19.56, + "family": "Montserrat Bold", + "color": "#FFFFFF", + "bold": true, + "italic": false, + "line_height": 1, + "wrap": "word", + "ellipsis": false + }, + "alignment": { + "horizontal": "center", + "vertical": "middle" + }, + "runs": [ + { + "text": "Strategy nº 2", + "font": { + "size": 19.56, + "family": "Montserrat Bold", + "color": "#FFFFFF", + "bold": true, + "italic": false, + "line_height": 1, + "wrap": "word", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "strategy_card_title", + "max_length": 18, + "min_length": 7 + }, + { + "type": "text", + "position": { + "x": 0, + "y": 48.4 + }, + "size": { + "width": 244.84, + "height": 169.52 + }, + "font": { + "size": 17.51, + "family": "Montserrat", + "color": "#100F0D", + "bold": false, + "italic": false, + "line_height": 1.45, + "wrap": "word", + "ellipsis": false + }, + "alignment": { + "horizontal": "left", + "vertical": "top" + }, + "runs": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis vulputate nulla at ante rhoncus, vel efficitur felis condimentum. Proin odio odio.", + "font": { + "size": 17.51, + "family": "Montserrat", + "color": "#100F0D", + "bold": false, + "italic": false, + "line_height": 1.45, + "wrap": "word", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "strategy_card_body", + "max_length": 150, + "min_length": 60 + } + ], + "name": "strategy_card_2" + }, + { + "type": "group", + "children": [ + { + "type": "rectangle", + "position": { + "x": 0, + "y": 5.06 + }, + "size": { + "width": 244.84, + "height": 37.44 + }, + "fill": { + "color": "#1A1A1A", + "opacity": 1 + } + }, + { + "type": "text", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 244.84, + "height": 42.48 + }, + "font": { + "size": 19.56, + "family": "Montserrat Bold", + "color": "#FFFFFF", + "bold": true, + "italic": false, + "line_height": 1, + "wrap": "word", + "ellipsis": false + }, + "alignment": { + "horizontal": "center", + "vertical": "middle" + }, + "runs": [ + { + "text": "Strategy nº 3", + "font": { + "size": 19.56, + "family": "Montserrat Bold", + "color": "#FFFFFF", + "bold": true, + "italic": false, + "line_height": 1, + "wrap": "word", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "strategy_card_title", + "max_length": 18, + "min_length": 7 + }, + { + "type": "text", + "position": { + "x": 0, + "y": 48.4 + }, + "size": { + "width": 244.84, + "height": 169.52 + }, + "font": { + "size": 17.51, + "family": "Montserrat", + "color": "#100F0D", + "bold": false, + "italic": false, + "line_height": 1.45, + "wrap": "word", + "ellipsis": false + }, + "alignment": { + "horizontal": "left", + "vertical": "top" + }, + "runs": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis vulputate nulla at ante rhoncus, vel efficitur felis condimentum. Proin odio odio.", + "font": { + "size": 17.51, + "family": "Montserrat", + "color": "#100F0D", + "bold": false, + "italic": false, + "line_height": 1.45, + "wrap": "word", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "strategy_card_body", + "max_length": 150, + "min_length": 60 + } + ], + "name": "strategy_card_3" + } + ], + "name": "strategy_cards_grid", + "max_children": 3, + "min_children": 3 + } + ] + } + ] + }, + { + "id": "profit_during_quarter_cover_layout", + "description": "Cover slide with a light gray background, large serif-style title on the left, and decorative rotated square motifs clipped around the top-right and bottom-left corners.", + "components": [ + { + "id": "background_geometric_motif", + "description": "Full-slide static background with light gray fill and decorative dark gray diamond shapes around the edges.", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 1280, + "height": 720 + }, + "elements": [ + { + "type": "rectangle", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 1280, + "height": 720 + }, + "fill": { + "color": "#F2F2F2", + "opacity": 1 + } + }, + { + "type": "group", + "children": [ + { + "type": "rectangle", + "position": { + "x": 890.71, + "y": 108.6 + }, + "size": { + "width": 380.77, + "height": 380.77 + }, + "rotation": 45, + "fill": { + "color": "#363636", + "opacity": 1 + } + }, + { + "type": "rectangle", + "position": { + "x": 1191.38, + "y": 218.94 + }, + "size": { + "width": 380.77, + "height": 380.77 + }, + "rotation": 45, + "fill": { + "color": "#363636", + "opacity": 0.51 + } + }, + { + "type": "rectangle", + "position": { + "x": 1103.67, + "y": -105.15 + }, + "size": { + "width": 380.77, + "height": 380.77 + }, + "rotation": 45, + "fill": { + "color": "#363636", + "opacity": 1 + } + }, + { + "type": "rectangle", + "position": { + "x": 793.52, + "y": -210.42 + }, + "size": { + "width": 380.77, + "height": 380.77 + }, + "rotation": 45, + "fill": { + "color": "#363636", + "opacity": 0.51 + } + }, + { + "type": "rectangle", + "position": { + "x": -119.74, + "y": 648.67 + }, + "size": { + "width": 380.77, + "height": 380.77 + }, + "rotation": 45, + "fill": { + "color": "#363636", + "opacity": 1 + } + }, + { + "type": "rectangle", + "position": { + "x": 93.2, + "y": 434.95 + }, + "size": { + "width": 380.77, + "height": 380.77 + }, + "rotation": 45, + "fill": { + "color": "#363636", + "opacity": 1 + } + }, + { + "type": "rectangle", + "position": { + "x": -216.92, + "y": 329.68 + }, + "size": { + "width": 380.77, + "height": 380.77 + }, + "rotation": 45, + "fill": { + "color": "#363636", + "opacity": 0.51 + } + } + ], + "name": "decorative_diamond_shapes" + } + ] + }, + { + "id": "main_title", + "description": "Large two-line headline positioned in the upper-left portion of the slide.", + "position": { + "x": 72.01, + "y": 139.99 + }, + "size": { + "width": 857.85, + "height": 246.22 + }, + "elements": [ + { + "type": "text", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 857.85, + "height": 246.22 + }, + "font": { + "size": 98.13, + "family": "Codec Pro", + "color": "#1A1A1A", + "bold": false, + "italic": false, + "line_height": 1.25, + "letter_spacing": 0, + "wrap": "word", + "ellipsis": false + }, + "alignment": { + "horizontal": "left", + "vertical": "top" + }, + "runs": [ + { + "text": "PROFIT DURING\nTHE QUARTER", + "font": { + "size": 98.13, + "family": "Codec Pro", + "color": "#1A1A1A", + "bold": false, + "italic": false, + "line_height": 1.25, + "letter_spacing": 0, + "wrap": "word", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "headline_text", + "max_length": 25, + "min_length": 13 + } + ] + } + ] + }, + { + "id": "slide_11_component_layout", + "description": "A six-step horizontal financial timeline with alternating text descriptions above and below dark value blocks, on a light gray background with two decorative corner diamonds.", + "components": [ + { + "id": "background_and_corner_decor", + "description": "Static slide background with light gray fill and two dark gray rotated corner accent shapes.", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 1280, + "height": 720 + }, + "elements": [ + { + "type": "rectangle", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 1280, + "height": 720 + }, + "fill": { + "color": "#F2F2F2", + "opacity": 1 + } + }, + { + "type": "rectangle", + "position": { + "x": 1113.68, + "y": -94.11 + }, + "size": { + "width": 380.77, + "height": 380.77 + }, + "rotation": 45, + "fill": { + "color": "#363636", + "opacity": 1 + } + }, + { + "type": "rectangle", + "position": { + "x": -211.07, + "y": 446.09 + }, + "size": { + "width": 380.77, + "height": 380.77 + }, + "rotation": 45, + "fill": { + "color": "#363636", + "opacity": 1 + } + } + ] + }, + { + "id": "alternating_value_timeline", + "description": "Main content component: six equal horizontal value cards with alternating dark fills, each paired with a short centered paragraph above or below the value block.", + "position": { + "x": 72, + "y": 95.52 + }, + "size": { + "width": 1136, + "height": 526.28 + }, + "elements": [ + { + "type": "flex", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 1136, + "height": 526.28 + }, + "direction": "row", + "wrap": false, + "align_items": "flex-start", + "justify_content": "flex-start", + "gap": 3.35, + "column_gap": 3.35, + "row_gap": 0, + "children": [ + { + "type": "container", + "child": { + "type": "group", + "children": [ + { + "type": "text", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 186.56, + "height": 191.14 + }, + "font": { + "size": 17.51, + "family": "Montserrat", + "color": "#100F0D", + "bold": false, + "italic": false, + "line_height": 1.55, + "wrap": "word", + "ellipsis": false + }, + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "runs": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis vulputate nulla at ante rhoncus, vel efficitur felis condimentum. Proin odio odio.", + "font": { + "size": 17.51, + "family": "Montserrat", + "color": "#100F0D", + "bold": false, + "italic": false, + "line_height": 1.55, + "wrap": "word", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "item_1_description", + "max_length": 144, + "min_length": 72 + }, + { + "type": "rectangle", + "position": { + "x": 0, + "y": 232.95 + }, + "size": { + "width": 186.58, + "height": 70.3 + }, + "fill": { + "color": "#1A1A1A", + "opacity": 1 + } + }, + { + "type": "rectangle", + "position": { + "x": 83.25, + "y": 206.31 + }, + "size": { + "width": 25.73, + "height": 34.24 + }, + "rotation": 45, + "fill": { + "color": "#1A1A1A", + "opacity": 1 + } + }, + { + "type": "text", + "position": { + "x": 25.85, + "y": 247.51 + }, + "size": { + "width": 143.67, + "height": 39.76 + }, + "font": { + "size": 31.56, + "family": "Montserrat", + "color": "#FFFFFF", + "bold": false, + "italic": false, + "line_height": 1.1, + "wrap": "none", + "ellipsis": false + }, + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "runs": [ + { + "text": "$ 1.520", + "font": { + "size": 31.56, + "family": "Montserrat", + "color": "#FFFFFF", + "bold": false, + "italic": false, + "line_height": 1.1, + "wrap": "none", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "item_1_value", + "max_length": 10, + "min_length": 4 + } + ], + "name": "timeline_item_1_top_text_dark_value" + }, + "decorative": false + }, + { + "type": "container", + "child": { + "type": "group", + "children": [ + { + "type": "rectangle", + "position": { + "x": 0, + "y": 233.1 + }, + "size": { + "width": 186.56, + "height": 70.15 + }, + "fill": { + "color": "#363636", + "opacity": 1 + } + }, + { + "type": "rectangle", + "position": { + "x": 82.52, + "y": 295.66 + }, + "size": { + "width": 25.65, + "height": 34.19 + }, + "rotation": 45, + "fill": { + "color": "#363636", + "opacity": 1 + } + }, + { + "type": "text", + "position": { + "x": 20.36, + "y": 247.51 + }, + "size": { + "width": 143.67, + "height": 39.76 + }, + "font": { + "size": 31.56, + "family": "Montserrat", + "color": "#FFFFFF", + "bold": false, + "italic": false, + "line_height": 1.1, + "wrap": "none", + "ellipsis": false + }, + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "runs": [ + { + "text": "$ 1.520", + "font": { + "size": 31.56, + "family": "Montserrat", + "color": "#FFFFFF", + "bold": false, + "italic": false, + "line_height": 1.1, + "wrap": "none", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "item_2_value", + "max_length": 10, + "min_length": 4 + }, + { + "type": "text", + "position": { + "x": 3.22, + "y": 335.14 + }, + "size": { + "width": 186.56, + "height": 191.14 + }, + "font": { + "size": 17.51, + "family": "Montserrat", + "color": "#100F0D", + "bold": false, + "italic": false, + "line_height": 1.55, + "wrap": "word", + "ellipsis": false + }, + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "runs": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis vulputate nulla at ante rhoncus, vel efficitur felis condimentum. Proin odio odio.", + "font": { + "size": 17.51, + "family": "Montserrat", + "color": "#100F0D", + "bold": false, + "italic": false, + "line_height": 1.55, + "wrap": "word", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "item_2_description", + "max_length": 144, + "min_length": 72 + } + ], + "name": "timeline_item_2_bottom_text_gray_value" + }, + "decorative": false + }, + { + "type": "container", + "child": { + "type": "group", + "children": [ + { + "type": "text", + "position": { + "x": 1.67, + "y": 0 + }, + "size": { + "width": 186.56, + "height": 191.14 + }, + "font": { + "size": 17.51, + "family": "Montserrat", + "color": "#100F0D", + "bold": false, + "italic": false, + "line_height": 1.55, + "wrap": "word", + "ellipsis": false + }, + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "runs": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis vulputate nulla at ante rhoncus, vel efficitur felis condimentum. Proin odio odio.", + "font": { + "size": 17.51, + "family": "Montserrat", + "color": "#100F0D", + "bold": false, + "italic": false, + "line_height": 1.55, + "wrap": "word", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "item_3_description", + "max_length": 144, + "min_length": 72 + }, + { + "type": "rectangle", + "position": { + "x": 0, + "y": 233.5 + }, + "size": { + "width": 186.58, + "height": 70.3 + }, + "fill": { + "color": "#1A1A1A", + "opacity": 1 + } + }, + { + "type": "rectangle", + "position": { + "x": 83.25, + "y": 206.89 + }, + "size": { + "width": 25.73, + "height": 34.24 + }, + "rotation": 45, + "fill": { + "color": "#1A1A1A", + "opacity": 1 + } + }, + { + "type": "text", + "position": { + "x": 25.86, + "y": 247.51 + }, + "size": { + "width": 143.67, + "height": 39.76 + }, + "font": { + "size": 31.56, + "family": "Montserrat", + "color": "#FFFFFF", + "bold": false, + "italic": false, + "line_height": 1.1, + "wrap": "none", + "ellipsis": false + }, + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "runs": [ + { + "text": "$ 1.520", + "font": { + "size": 31.56, + "family": "Montserrat", + "color": "#FFFFFF", + "bold": false, + "italic": false, + "line_height": 1.1, + "wrap": "none", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "item_3_value", + "max_length": 10, + "min_length": 4 + } + ], + "name": "timeline_item_3_top_text_dark_value" + }, + "decorative": false + }, + { + "type": "container", + "child": { + "type": "group", + "children": [ + { + "type": "rectangle", + "position": { + "x": 0, + "y": 233.65 + }, + "size": { + "width": 186.56, + "height": 70.15 + }, + "fill": { + "color": "#363636", + "opacity": 1 + } + }, + { + "type": "rectangle", + "position": { + "x": 82.52, + "y": 296.22 + }, + "size": { + "width": 25.65, + "height": 34.19 + }, + "rotation": 45, + "fill": { + "color": "#363636", + "opacity": 1 + } + }, + { + "type": "text", + "position": { + "x": 20.38, + "y": 247.51 + }, + "size": { + "width": 143.67, + "height": 39.76 + }, + "font": { + "size": 31.56, + "family": "Montserrat", + "color": "#FFFFFF", + "bold": false, + "italic": false, + "line_height": 1.1, + "wrap": "none", + "ellipsis": false + }, + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "runs": [ + { + "text": "$ 1.520", + "font": { + "size": 31.56, + "family": "Montserrat", + "color": "#FFFFFF", + "bold": false, + "italic": false, + "line_height": 1.1, + "wrap": "none", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "item_4_value", + "max_length": 10, + "min_length": 4 + }, + { + "type": "text", + "position": { + "x": 0, + "y": 335.14 + }, + "size": { + "width": 186.56, + "height": 191.14 + }, + "font": { + "size": 17.51, + "family": "Montserrat", + "color": "#100F0D", + "bold": false, + "italic": false, + "line_height": 1.55, + "wrap": "word", + "ellipsis": false + }, + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "runs": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis vulputate nulla at ante rhoncus, vel efficitur felis condimentum. Proin odio odio.", + "font": { + "size": 17.51, + "family": "Montserrat", + "color": "#100F0D", + "bold": false, + "italic": false, + "line_height": 1.55, + "wrap": "word", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "item_4_description", + "max_length": 144, + "min_length": 72 + } + ], + "name": "timeline_item_4_bottom_text_gray_value" + }, + "decorative": false + }, + { + "type": "container", + "child": { + "type": "group", + "children": [ + { + "type": "text", + "position": { + "x": -3.25, + "y": 0 + }, + "size": { + "width": 186.56, + "height": 191.14 + }, + "font": { + "size": 17.51, + "family": "Montserrat", + "color": "#100F0D", + "bold": false, + "italic": false, + "line_height": 1.55, + "wrap": "word", + "ellipsis": false + }, + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "runs": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis vulputate nulla at ante rhoncus, vel efficitur felis condimentum. Proin odio odio.", + "font": { + "size": 17.51, + "family": "Montserrat", + "color": "#100F0D", + "bold": false, + "italic": false, + "line_height": 1.55, + "wrap": "word", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "item_5_description", + "max_length": 144, + "min_length": 72 + }, + { + "type": "rectangle", + "position": { + "x": 0, + "y": 232.37 + }, + "size": { + "width": 186.58, + "height": 70.3 + }, + "fill": { + "color": "#1A1A1A", + "opacity": 1 + } + }, + { + "type": "rectangle", + "position": { + "x": 83.25, + "y": 205.76 + }, + "size": { + "width": 25.73, + "height": 34.24 + }, + "rotation": 45, + "fill": { + "color": "#1A1A1A", + "opacity": 1 + } + }, + { + "type": "text", + "position": { + "x": 25.85, + "y": 247.51 + }, + "size": { + "width": 143.67, + "height": 39.76 + }, + "font": { + "size": 31.56, + "family": "Montserrat", + "color": "#FFFFFF", + "bold": false, + "italic": false, + "line_height": 1.1, + "wrap": "none", + "ellipsis": false + }, + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "runs": [ + { + "text": "$ 1.520", + "font": { + "size": 31.56, + "family": "Montserrat", + "color": "#FFFFFF", + "bold": false, + "italic": false, + "line_height": 1.1, + "wrap": "none", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "item_5_value", + "max_length": 10, + "min_length": 4 + } + ], + "name": "timeline_item_5_top_text_dark_value" + }, + "decorative": false + }, + { + "type": "container", + "child": { + "type": "group", + "children": [ + { + "type": "rectangle", + "position": { + "x": 0, + "y": 232.52 + }, + "size": { + "width": 186.56, + "height": 70.15 + }, + "fill": { + "color": "#363636", + "opacity": 1 + } + }, + { + "type": "rectangle", + "position": { + "x": 82.52, + "y": 295.08 + }, + "size": { + "width": 25.65, + "height": 34.19 + }, + "rotation": 45, + "fill": { + "color": "#363636", + "opacity": 1 + } + }, + { + "type": "text", + "position": { + "x": 20.38, + "y": 247.51 + }, + "size": { + "width": 143.67, + "height": 39.76 + }, + "font": { + "size": 31.56, + "family": "Montserrat", + "color": "#FFFFFF", + "bold": false, + "italic": false, + "line_height": 1.1, + "wrap": "none", + "ellipsis": false + }, + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "runs": [ + { + "text": "$ 1.520", + "font": { + "size": 31.56, + "family": "Montserrat", + "color": "#FFFFFF", + "bold": false, + "italic": false, + "line_height": 1.1, + "wrap": "none", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "item_6_value", + "max_length": 10, + "min_length": 4 + }, + { + "type": "text", + "position": { + "x": 0, + "y": 323.6 + }, + "size": { + "width": 186.56, + "height": 191.14 + }, + "font": { + "size": 17.51, + "family": "Montserrat", + "color": "#100F0D", + "bold": false, + "italic": false, + "line_height": 1.55, + "wrap": "word", + "ellipsis": false + }, + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "runs": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis vulputate nulla at ante rhoncus, vel efficitur felis condimentum. Proin odio odio.", + "font": { + "size": 17.51, + "family": "Montserrat", + "color": "#100F0D", + "bold": false, + "italic": false, + "line_height": 1.55, + "wrap": "word", + "ellipsis": false + } + } + ], + "decorative": false, + "name": "item_6_description", + "max_length": 144, + "min_length": 72 + } + ], + "name": "timeline_item_6_bottom_text_gray_value" + }, + "decorative": false + } + ], + "name": "six_timeline_items_row", + "max_children": 6, + "min_children": 6 + } + ] + } + ] + }, + { + "id": "slide_12_project_cards_layout", + "description": "A dark full-bleed architectural photo background with a centered title and subtitle at the top, followed by three evenly spaced white rounded project cards in a row. Each card contains a bold project heading, a horizontal divider, and centered descriptive body text.", + "components": [ + { + "id": "background_image", + "description": "Full-slide decorative background image with dark architectural building photo.", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 1280, + "height": 720 + }, + "elements": [ + { + "type": "image", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 1280, + "height": 720 + }, + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image1-16c43050d578.png", + "fit": "cover", + "decorative": true, + "name": "background_architecture", + "is_icon": false + } + ] + }, + { + "id": "header_text_block", + "description": "Centered slide heading and supporting subtitle text near the top of the slide.", + "position": { + "x": 178.62, + "y": 68.81 + }, + "size": { + "width": 922.76, + "height": 156.7 + }, + "elements": [ + { + "type": "flex", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 922.76, + "height": 156.7 + }, + "direction": "column", + "wrap": false, + "align_items": "center", + "justify_content": "flex-start", + "gap": 8, + "children": [ + { + "type": "text", + "font": { + "size": 72.36, + "family": "Codec Pro", + "color": "#FFFFFF", + "wrap": "none" + }, + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "runs": [ + { + "text": "NEXT PROJECT", + "font": { + "size": 72.36, + "family": "Codec Pro", + "color": "#FFFFFF" + } + } + ], + "decorative": false, + "name": "slide_title", + "max_length": 24, + "min_length": 4 + }, + { + "type": "text", + "font": { + "size": 22.93, + "family": "Montserrat", + "color": "#FFFFFF", + "line_height": 1.35, + "wrap": "word" + }, + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "runs": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis vulputate nulla at ante rhoncus, vel efficitur felis condimentum. Proin odio odio.", + "font": { + "size": 22.93, + "family": "Montserrat", + "color": "#FFFFFF" + } + } + ], + "decorative": false, + "name": "slide_subtitle", + "max_length": 150, + "min_length": 40 + } + ], + "name": "header_vertical_stack", + "max_children": 2, + "min_children": 2 + } + ] + }, + { + "id": "project_cards_row", + "description": "Three-card project showcase section with identical white rounded cards, each containing a project title, divider line, and centered paragraph description.", + "position": { + "x": 147.25, + "y": 242.47 + }, + "size": { + "width": 985.5, + "height": 405.49 + }, + "elements": [ + { + "type": "flex", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 985.5, + "height": 405.49 + }, + "direction": "row", + "wrap": false, + "align_items": "stretch", + "justify_content": "center", + "gap": 64, + "children": [ + { + "type": "container", + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "fill": { + "color": "#FFFFFF", + "opacity": 0.99 + }, + "border_radius": { + "tl": 12, + "tr": 12, + "bl": 12, + "br": 12 + }, + "padding": { + "top": 38, + "right": 24, + "bottom": 28, + "left": 24 + }, + "child": { + "type": "flex", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 237.81, + "height": 339.49 + }, + "direction": "column", + "wrap": false, + "align_items": "stretch", + "justify_content": "flex-start", + "gap": 31, + "children": [ + { + "type": "text", + "font": { + "size": 24.89, + "family": "Montserrat Bold", + "color": "#000000", + "bold": true, + "wrap": "none" + }, + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "runs": [ + { + "text": "Project 1", + "font": { + "size": 24.89, + "family": "Montserrat Bold", + "color": "#000000", + "bold": true + } + } + ], + "decorative": false, + "name": "project_title", + "max_length": 18, + "min_length": 3 + }, + { + "type": "line", + "stroke": { + "color": "#000000", + "width": 3.56 + } + }, + { + "type": "text", + "font": { + "size": 20.62, + "family": "Montserrat", + "color": "#100F0D", + "line_height": 1.6, + "wrap": "word" + }, + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "runs": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis vulputate nulla at ante rhoncus, vel efficitur felis condimentum. Proin odio odio.", + "font": { + "size": 20.62, + "family": "Montserrat", + "color": "#100F0D" + } + } + ], + "decorative": false, + "name": "project_description", + "max_length": 150, + "min_length": 45 + } + ], + "name": "project_card_content", + "max_children": 3, + "min_children": 3 + }, + "decorative": false + }, + { + "type": "container", + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "fill": { + "color": "#FFFFFF", + "opacity": 0.99 + }, + "border_radius": { + "tl": 12, + "tr": 12, + "bl": 12, + "br": 12 + }, + "padding": { + "top": 38, + "right": 24, + "bottom": 28, + "left": 24 + }, + "child": { + "type": "flex", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 237.81, + "height": 339.49 + }, + "direction": "column", + "wrap": false, + "align_items": "stretch", + "justify_content": "flex-start", + "gap": 31, + "children": [ + { + "type": "text", + "font": { + "size": 24.89, + "family": "Montserrat Bold", + "color": "#000000", + "bold": true, + "wrap": "none" + }, + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "runs": [ + { + "text": "Project 2", + "font": { + "size": 24.89, + "family": "Montserrat Bold", + "color": "#000000", + "bold": true + } + } + ], + "decorative": false, + "name": "project_title", + "max_length": 18, + "min_length": 3 + }, + { + "type": "line", + "stroke": { + "color": "#000000", + "width": 3.56 + } + }, + { + "type": "text", + "font": { + "size": 20.62, + "family": "Montserrat", + "color": "#100F0D", + "line_height": 1.6, + "wrap": "word" + }, + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "runs": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis vulputate nulla at ante rhoncus, vel efficitur felis condimentum. Proin odio odio.", + "font": { + "size": 20.62, + "family": "Montserrat", + "color": "#100F0D" + } + } + ], + "decorative": false, + "name": "project_description", + "max_length": 150, + "min_length": 45 + } + ], + "name": "project_card_content", + "max_children": 3, + "min_children": 3 + }, + "decorative": false + }, + { + "type": "container", + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "fill": { + "color": "#FFFFFF", + "opacity": 0.99 + }, + "border_radius": { + "tl": 12, + "tr": 12, + "bl": 12, + "br": 12 + }, + "padding": { + "top": 38, + "right": 24, + "bottom": 28, + "left": 24 + }, + "child": { + "type": "flex", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 237.81, + "height": 339.49 + }, + "direction": "column", + "wrap": false, + "align_items": "stretch", + "justify_content": "flex-start", + "gap": 31, + "children": [ + { + "type": "text", + "font": { + "size": 24.89, + "family": "Montserrat Bold", + "color": "#000000", + "bold": true, + "wrap": "none" + }, + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "runs": [ + { + "text": "Project 3", + "font": { + "size": 24.89, + "family": "Montserrat Bold", + "color": "#000000", + "bold": true + } + } + ], + "decorative": false, + "name": "project_title", + "max_length": 18, + "min_length": 3 + }, + { + "type": "line", + "stroke": { + "color": "#000000", + "width": 3.56 + } + }, + { + "type": "text", + "font": { + "size": 20.62, + "family": "Montserrat", + "color": "#100F0D", + "line_height": 1.6, + "wrap": "word" + }, + "alignment": { + "horizontal": "center", + "vertical": "top" + }, + "runs": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis vulputate nulla at ante rhoncus, vel efficitur felis condimentum. Proin odio odio.", + "font": { + "size": 20.62, + "family": "Montserrat", + "color": "#100F0D" + } + } + ], + "decorative": false, + "name": "project_description", + "max_length": 150, + "min_length": 45 + } + ], + "name": "project_card_content", + "max_children": 3, + "min_children": 3 + }, + "decorative": false + } + ], + "name": "project_cards_flex_row", + "max_children": 3, + "min_children": 1 + } + ] + } + ] + }, + { + "id": "contact_us_slide_layout", + "description": "A contact information slide with a light gray left content area, large title, two stacked contact profile cards, and a full-height grayscale building photo panel on the right.", + "components": [ + { + "id": "background", + "description": "Full-slide light gray background.", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 1280, + "height": 720 + }, + "elements": [ + { + "type": "rectangle", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 1280, + "height": 720 + }, + "fill": { + "color": "#F2F2F2" + } + } + ] + }, + { + "id": "right_image_panel", + "description": "Decorative full-height architectural image panel occupying the right third of the slide.", + "position": { + "x": 851.25, + "y": 0 + }, + "size": { + "width": 428.75, + "height": 720 + }, + "elements": [ + { + "type": "image", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 1057.11, + "height": 719.97 + }, + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image45-3ff19205e326.png", + "fit": "cover", + "decorative": true, + "name": "building_photo_panel", + "is_icon": false + } + ] + }, + { + "id": "slide_title", + "description": "Large serif title reading CONTACT US at the upper left.", + "position": { + "x": 100.06, + "y": 81.61 + }, + "size": { + "width": 629.29, + "height": 106.28 + }, + "elements": [ + { + "type": "text", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 629.29, + "height": 106.28 + }, + "font": { + "size": 81.6, + "family": "Codec Pro", + "color": "#1A1A1A", + "wrap": "none" + }, + "alignment": { + "horizontal": "left", + "vertical": "top" + }, + "runs": [ + { + "text": "CONTACT US", + "font": { + "size": 81.6, + "family": "Codec Pro", + "color": "#1A1A1A", + "wrap": "none" + } + } + ], + "decorative": false, + "name": "title", + "max_length": 18, + "min_length": 5 + } + ] + }, + { + "id": "contact_profiles", + "description": "Two vertically stacked contact profile sections, each with a portrait on the left and contact details on the right with icons.", + "position": { + "x": 229.92, + "y": 193.91 + }, + "size": { + "width": 593.99, + "height": 434.03 + }, + "elements": [ + { + "type": "flex", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 593.99, + "height": 434.03 + }, + "direction": "column", + "wrap": false, + "align_items": "stretch", + "justify_content": "flex-start", + "gap": 28, + "children": [ + { + "type": "flex", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 593.99, + "height": 206.03 + }, + "direction": "row", + "wrap": false, + "align_items": "flex-start", + "justify_content": "flex-start", + "gap": 35, + "children": [ + { + "type": "image", + "size": { + "width": 147.4, + "height": 147.4 + }, + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image43-27798feb3c76.png", + "fit": "cover", + "decorative": false, + "name": "profile_photo", + "is_icon": false + }, + { + "type": "flex", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 409.93, + "height": 206.03 + }, + "direction": "column", + "wrap": false, + "align_items": "stretch", + "justify_content": "flex-start", + "gap": 10, + "children": [ + { + "type": "text", + "font": { + "size": 21.96, + "family": "Montserrat Bold", + "color": "#000000", + "bold": true, + "wrap": "word" + }, + "alignment": { + "horizontal": "left", + "vertical": "top" + }, + "runs": [ + { + "text": "Mr Rufus Stewart", + "font": { + "size": 21.96, + "family": "Montserrat Bold", + "color": "#000000", + "bold": true, + "wrap": "word" + } + } + ], + "decorative": false, + "name": "contact_name", + "max_length": 18, + "min_length": 8 + }, + { + "type": "flex", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 409.93, + "height": 160 + }, + "direction": "column", + "wrap": false, + "align_items": "stretch", + "justify_content": "flex-start", + "gap": 6, + "children": [ + { + "type": "flex", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 409.93, + "height": 30 + }, + "direction": "row", + "wrap": false, + "align_items": "center", + "justify_content": "flex-start", + "gap": 11, + "children": [ + { + "type": "image", + "size": { + "width": 26.91, + "height": 26.91 + }, + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image41-c0b32e4af036.png", + "fit": "cover", + "decorative": true, + "name": "phone_icon", + "is_icon": true + }, + { + "type": "text", + "font": { + "size": 21.96, + "family": "Montserrat", + "color": "#000000", + "wrap": "word" + }, + "alignment": { + "horizontal": "left", + "vertical": "top" + }, + "runs": [ + { + "text": "+123-456-7890", + "font": { + "size": 21.96, + "family": "Montserrat", + "color": "#000000", + "wrap": "word" + } + } + ], + "decorative": false, + "name": "phone", + "max_length": 18, + "min_length": 7 + } + ], + "name": "contact_method", + "max_children": 2, + "min_children": 2 + }, + { + "type": "flex", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 409.93, + "height": 30 + }, + "direction": "row", + "wrap": false, + "align_items": "center", + "justify_content": "flex-start", + "gap": 11, + "children": [ + { + "type": "image", + "size": { + "width": 26.91, + "height": 26.91 + }, + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image37-a2ce511e8a14.png", + "fit": "cover", + "decorative": true, + "name": "email_icon", + "is_icon": true + }, + { + "type": "text", + "font": { + "size": 21.96, + "family": "Montserrat", + "color": "#000000", + "wrap": "word" + }, + "alignment": { + "horizontal": "left", + "vertical": "top" + }, + "runs": [ + { + "text": "hello@reallygreatsite.com", + "font": { + "size": 21.96, + "family": "Montserrat", + "color": "#000000", + "wrap": "word" + } + } + ], + "decorative": false, + "name": "email", + "max_length": 32, + "min_length": 10 + } + ], + "name": "contact_method", + "max_children": 2, + "min_children": 2 + }, + { + "type": "flex", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 409.93, + "height": 30 + }, + "direction": "row", + "wrap": false, + "align_items": "center", + "justify_content": "flex-start", + "gap": 11, + "children": [ + { + "type": "image", + "size": { + "width": 26.91, + "height": 26.91 + }, + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image39-e9aa1bc1637b.png", + "fit": "cover", + "decorative": true, + "name": "website_icon", + "is_icon": true + }, + { + "type": "text", + "font": { + "size": 21.96, + "family": "Montserrat", + "color": "#000000", + "wrap": "word" + }, + "alignment": { + "horizontal": "left", + "vertical": "top" + }, + "runs": [ + { + "text": "www.reallygreatsite.com", + "font": { + "size": 21.96, + "family": "Montserrat", + "color": "#000000", + "wrap": "word" + } + } + ], + "decorative": false, + "name": "website", + "max_length": 32, + "min_length": 8 + } + ], + "name": "contact_method", + "max_children": 2, + "min_children": 2 + }, + { + "type": "flex", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 409.93, + "height": 60 + }, + "direction": "row", + "wrap": false, + "align_items": "flex-start", + "justify_content": "flex-start", + "gap": 11, + "children": [ + { + "type": "image", + "size": { + "width": 26.91, + "height": 26.91 + }, + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image35-4d2fb3e6c405.png", + "fit": "cover", + "decorative": true, + "name": "address_icon", + "is_icon": true + }, + { + "type": "text", + "font": { + "size": 21.96, + "family": "Montserrat", + "color": "#000000", + "wrap": "word" + }, + "alignment": { + "horizontal": "left", + "vertical": "top" + }, + "runs": [ + { + "text": "123 Anywhere St., Any City, State, Country 12345", + "font": { + "size": 21.96, + "family": "Montserrat", + "color": "#000000", + "wrap": "word" + } + } + ], + "decorative": false, + "name": "address", + "max_length": 60, + "min_length": 20 + } + ], + "name": "contact_method", + "max_children": 2, + "min_children": 2 + } + ], + "name": "contact_method_list", + "max_children": 4, + "min_children": 4 + } + ], + "name": "profile_contact_details", + "max_children": 2, + "min_children": 2 + } + ], + "name": "contact_profile_card", + "max_children": 2, + "min_children": 2 + }, + { + "type": "flex", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 593.99, + "height": 206.03 + }, + "direction": "row", + "wrap": false, + "align_items": "flex-start", + "justify_content": "flex-start", + "gap": 35, + "children": [ + { + "type": "image", + "size": { + "width": 147.4, + "height": 147.4 + }, + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image44-65374ba5acce.png", + "fit": "cover", + "decorative": false, + "name": "profile_photo", + "is_icon": false + }, + { + "type": "flex", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 409.93, + "height": 206.03 + }, + "direction": "column", + "wrap": false, + "align_items": "stretch", + "justify_content": "flex-start", + "gap": 10, + "children": [ + { + "type": "text", + "font": { + "size": 21.96, + "family": "Montserrat Bold", + "color": "#000000", + "bold": true, + "wrap": "word" + }, + "alignment": { + "horizontal": "left", + "vertical": "top" + }, + "runs": [ + { + "text": "Mr Morgan Maxwell", + "font": { + "size": 21.96, + "family": "Montserrat Bold", + "color": "#000000", + "bold": true, + "wrap": "word" + } + } + ], + "decorative": false, + "name": "contact_name", + "max_length": 18, + "min_length": 8 + }, + { + "type": "flex", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 409.93, + "height": 160 + }, + "direction": "column", + "wrap": false, + "align_items": "stretch", + "justify_content": "flex-start", + "gap": 6, + "children": [ + { + "type": "flex", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 409.93, + "height": 30 + }, + "direction": "row", + "wrap": false, + "align_items": "center", + "justify_content": "flex-start", + "gap": 11, + "children": [ + { + "type": "image", + "size": { + "width": 26.91, + "height": 26.91 + }, + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image41-c0b32e4af036.png", + "fit": "cover", + "decorative": true, + "name": "phone_icon", + "is_icon": true + }, + { + "type": "text", + "font": { + "size": 21.96, + "family": "Montserrat", + "color": "#000000", + "wrap": "word" + }, + "alignment": { + "horizontal": "left", + "vertical": "top" + }, + "runs": [ + { + "text": "+123-456-7890", + "font": { + "size": 21.96, + "family": "Montserrat", + "color": "#000000", + "wrap": "word" + } + } + ], + "decorative": false, + "name": "phone", + "max_length": 18, + "min_length": 7 + } + ], + "name": "contact_method", + "max_children": 2, + "min_children": 2 + }, + { + "type": "flex", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 409.93, + "height": 30 + }, + "direction": "row", + "wrap": false, + "align_items": "center", + "justify_content": "flex-start", + "gap": 11, + "children": [ + { + "type": "image", + "size": { + "width": 26.91, + "height": 26.91 + }, + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image37-a2ce511e8a14.png", + "fit": "cover", + "decorative": true, + "name": "email_icon", + "is_icon": true + }, + { + "type": "text", + "font": { + "size": 21.96, + "family": "Montserrat", + "color": "#000000", + "wrap": "word" + }, + "alignment": { + "horizontal": "left", + "vertical": "top" + }, + "runs": [ + { + "text": "hello@reallygreatsite.com", + "font": { + "size": 21.96, + "family": "Montserrat", + "color": "#000000", + "wrap": "word" + } + } + ], + "decorative": false, + "name": "email", + "max_length": 32, + "min_length": 10 + } + ], + "name": "contact_method", + "max_children": 2, + "min_children": 2 + }, + { + "type": "flex", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 409.93, + "height": 30 + }, + "direction": "row", + "wrap": false, + "align_items": "center", + "justify_content": "flex-start", + "gap": 11, + "children": [ + { + "type": "image", + "size": { + "width": 26.91, + "height": 26.91 + }, + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image39-e9aa1bc1637b.png", + "fit": "cover", + "decorative": true, + "name": "website_icon", + "is_icon": true + }, + { + "type": "text", + "font": { + "size": 21.96, + "family": "Montserrat", + "color": "#000000", + "wrap": "word" + }, + "alignment": { + "horizontal": "left", + "vertical": "top" + }, + "runs": [ + { + "text": "www.reallygreatsite.com", + "font": { + "size": 21.96, + "family": "Montserrat", + "color": "#000000", + "wrap": "word" + } + } + ], + "decorative": false, + "name": "website", + "max_length": 32, + "min_length": 8 + } + ], + "name": "contact_method", + "max_children": 2, + "min_children": 2 + }, + { + "type": "flex", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 409.93, + "height": 60 + }, + "direction": "row", + "wrap": false, + "align_items": "flex-start", + "justify_content": "flex-start", + "gap": 11, + "children": [ + { + "type": "image", + "size": { + "width": 26.91, + "height": 26.91 + }, + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image35-4d2fb3e6c405.png", + "fit": "cover", + "decorative": true, + "name": "address_icon", + "is_icon": true + }, + { + "type": "text", + "font": { + "size": 21.96, + "family": "Montserrat", + "color": "#000000", + "wrap": "word" + }, + "alignment": { + "horizontal": "left", + "vertical": "top" + }, + "runs": [ + { + "text": "123 Anywhere St., Any City, State, Country 12345", + "font": { + "size": 21.96, + "family": "Montserrat", + "color": "#000000", + "wrap": "word" + } + } + ], + "decorative": false, + "name": "address", + "max_length": 60, + "min_length": 20 + } + ], + "name": "contact_method", + "max_children": 2, + "min_children": 2 + } + ], + "name": "contact_method_list", + "max_children": 4, + "min_children": 4 + } + ], + "name": "profile_contact_details", + "max_children": 2, + "min_children": 2 + } + ], + "name": "contact_profile_card", + "max_children": 2, + "min_children": 2 + } + ], + "name": "contact_profile_stack", + "max_children": 4, + "min_children": 1 + } + ] + } + ] + }, + { + "id": "slide_14_component_layout", + "description": "Closing thank-you slide with a light gray background, tall portrait image on the left, large two-line thank-you headline in the center-right, dark caption box overlapping the portrait and text area, and a decorative dotted wave graphic in the top-right corner.", + "components": [ + { + "id": "background", + "description": "Full-slide light gray background layer.", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 1280, + "height": 720 + }, + "elements": [ + { + "type": "rectangle", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 1280, + "height": 720 + }, + "fill": { + "color": "#F2F2F2", + "opacity": 1 + } + } + ] + }, + { + "id": "left_portrait_image", + "description": "Tall portrait photo placed along the left side of the slide.", + "position": { + "x": 72.01, + "y": 34.65 + }, + "size": { + "width": 339.58, + "height": 650.66 + }, + "elements": [ + { + "type": "image", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 339.58, + "height": 650.66 + }, + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image46-9662dc97b97a.png", + "fit": "cover", + "decorative": false, + "name": "portrait_image", + "is_icon": false + } + ] + }, + { + "id": "main_thank_you_text", + "description": "Large bold thank-you headline positioned to the right of the portrait.", + "position": { + "x": 438.5, + "y": 191.14 + }, + "size": { + "width": 674.14, + "height": 193.61 + }, + "elements": [ + { + "type": "text", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 674.14, + "height": 193.61 + }, + "font": { + "size": 77.16, + "family": "Codec Pro Bold", + "color": "#1A1A1A", + "bold": true, + "wrap": "word" + }, + "alignment": { + "horizontal": "left", + "vertical": "top" + }, + "runs": [ + { + "text": "THANK'S FOR\nWATCHING", + "font": { + "size": 77.16, + "family": "Codec Pro Bold", + "color": "#1A1A1A", + "bold": true, + "wrap": "word" + } + } + ], + "decorative": false, + "name": "thank_you_headline", + "max_length": 24, + "min_length": 8 + } + ] + }, + { + "id": "center_caption_box", + "description": "Dark rectangular message box overlapping the lower center of the slide, with centered white paragraph text.", + "position": { + "x": 308.84, + "y": 431.95 + }, + "size": { + "width": 577.23, + "height": 162.72 + }, + "elements": [ + { + "type": "container", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 577.23, + "height": 162.72 + }, + "alignment": { + "horizontal": "center", + "vertical": "middle" + }, + "fill": { + "color": "#393939", + "opacity": 1 + }, + "padding": { + "top": 0, + "right": 20, + "bottom": 0, + "left": 20 + }, + "child": { + "type": "text", + "font": { + "size": 23.11, + "family": "Montserrat", + "color": "#FFFFFF", + "line_height": 1.45, + "wrap": "word" + }, + "alignment": { + "horizontal": "center", + "vertical": "middle" + }, + "runs": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis vulputate nulla at ante rhoncus, vel efficitur felis condimentum. Proin odio odio.", + "font": { + "size": 23.11, + "family": "Montserrat", + "color": "#FFFFFF", + "line_height": 1.45, + "wrap": "word" + } + } + ], + "decorative": false, + "name": "caption_text", + "max_length": 144, + "min_length": 72 + }, + "decorative": false + } + ] + }, + { + "id": "top_right_decorative_wave", + "description": "Large cropped dotted wave graphic used as a decorative accent in the upper-right corner.", + "position": { + "x": 945.13, + "y": -384.81 + }, + "size": { + "width": 868.79, + "height": 769.56 + }, + "elements": [ + { + "type": "image", + "position": { + "x": 0, + "y": 0 + }, + "size": { + "width": 868.79, + "height": 769.56 + }, + "data": "http://127.0.0.1:8000/app_data/pptx-to-json/1d2b545f-ee3f-4e05-950f-48e9326f5015/images/image25-ffad6f70893e.png", + "fit": "cover", + "decorative": true, + "name": "dotted_wave_decoration", + "is_icon": false + } + ] + } + ] + } + ] + } +} diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..0da6dd6 --- /dev/null +++ b/nginx.conf @@ -0,0 +1,181 @@ +user www-data; +worker_processes auto; +pid /run/nginx.pid; +error_log /var/log/nginx/error.log; + +events { + worker_connections 1024; +} + +http { + include /etc/nginx/mime.types; # Required for SVG mime type + default_type application/octet-stream; # Required for SVG mime type + client_max_body_size 100M; + + server { + listen 80; + server_name localhost; + + location / { + proxy_pass http://localhost:3000; + proxy_http_version 1.1; # Required for WebSocket + proxy_set_header Upgrade $http_upgrade; # WebSocket header + proxy_set_header Connection "upgrade"; # WebSocket header + # Preserve browser host:port (e.g. localhost:5000). $host strips the port + # and breaks Next.js redirects / absolute URLs. + proxy_set_header Host $http_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; + proxy_set_header X-Forwarded-Host $http_host; + proxy_read_timeout 30m; + proxy_connect_timeout 30m; + } + + location /api/v1/ { + client_max_body_size 110M; + error_page 413 = @request_entity_too_large; + proxy_pass http://localhost:8000; + proxy_read_timeout 30m; + proxy_send_timeout 30m; + proxy_connect_timeout 30m; + 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; + } + + location /api/v2/ { + proxy_pass http://localhost:8000; + proxy_read_timeout 30m; + proxy_send_timeout 30m; + proxy_connect_timeout 30m; + 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; + } + + location @request_entity_too_large { + default_type application/json; + return 413 '{"detail":"File size must be less than 100MB."}'; + } + + # MCP + location /mcp/ { + auth_request /_auth_check; + proxy_pass http://localhost:8001/mcp/; + proxy_read_timeout 30m; + proxy_connect_timeout 30m; + 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; + } + + location /mcp { + auth_request /_auth_check; + proxy_pass http://localhost:8001/mcp; + proxy_read_timeout 30m; + proxy_connect_timeout 30m; + 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; + } + + + location /docs { + proxy_pass http://localhost:8000/docs; + proxy_read_timeout 30m; + proxy_connect_timeout 30m; + 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; + } + + location /openapi.json { + proxy_pass http://localhost:8000/openapi.json; + proxy_read_timeout 30m; + proxy_connect_timeout 30m; + 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; + } + + # Internal auth subrequest used to gate /app_data/* static access behind the + # FastAPI session cookie. Nginx serves these files directly via `alias` for + # performance, so auth_request is what keeps them from being public. + location = /_auth_check { + internal; + proxy_pass http://localhost:8000/api/v1/auth/verify; + proxy_pass_request_body off; + proxy_set_header Content-Length ""; + proxy_set_header X-Original-URI $request_uri; + proxy_set_header Host $host; + proxy_set_header Cookie $http_cookie; + proxy_set_header Authorization $http_authorization; + } + + # Bundled UI static assets (logos, fonts packaged with the app) are safe to + # serve unauthenticated; they contain no user data. The trailing slash on + # the location pattern is required: with a bare `/static`, a request like + # `/static../server.py` matches this block and `alias` rewrites it to + # `/app/servers/fastapi/static/../server.py`, which nginx resolves to + # `/app/servers/fastapi/server.py` — unauthenticated arbitrary read of any + # file under /app the worker can stat. `/static/` constrains the match so + # the only path that lands here is one that actually started with the + # separator. + location /static/ { + alias /app/servers/fastapi/static/; + expires 1y; + add_header Cache-Control "public, immutable"; + } + + location /app_data/images/ { + alias /app_data/images/; + expires 1y; + add_header Cache-Control "private, max-age=31536000"; + } + + location /app_data/exports/ { + auth_request /_auth_check; + alias /app_data/exports/; + expires 1y; + add_header Cache-Control "private, max-age=31536000"; + } + + location /app_data/uploads/ { + auth_request /_auth_check; + alias /app_data/uploads/; + expires 1y; + add_header Cache-Control "private, max-age=31536000"; + } + + location /app_data/fonts/ { + alias /app_data/fonts/; + expires 1y; + add_header Cache-Control "private, max-age=31536000"; + } + + location /app_data/templates/ { + alias /app_data/templates/; + expires 1y; + add_header Cache-Control "private, max-age=31536000"; + } + + location /app_data/pptx-to-html/ { + alias /app_data/pptx-to-html/; + expires 1y; + add_header Cache-Control "private, max-age=31536000"; + } + + location /app_data/pptx-to-json/ { + alias /app_data/pptx-to-json/; + expires 1y; + add_header Cache-Control "private, max-age=31536000"; + } + } +} diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..5950d10 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,1301 @@ +{ + "name": "presenton", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "presenton", + "version": "1.0.0", + "dependencies": { + "@llamaindex/liteparse": "^1.5.2", + "sharp": "^0.34.5" + } + }, + "node_modules/@borewit/text-codec": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/@borewit/text-codec/-/text-codec-0.2.2.tgz", + "integrity": "sha512-DDaRehssg1aNrH4+2hnj1B7vnUGEjU6OIlyRdkMd0aUdIUvKXrJfXsy8LVtXAy7DRvYVluWbMspsRhz2lcW0mQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/@emnapi/runtime": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.10.0.tgz", + "integrity": "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==", + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@hyzyla/pdfium": { + "version": "2.1.12", + "resolved": "https://registry.npmjs.org/@hyzyla/pdfium/-/pdfium-2.1.12.tgz", + "integrity": "sha512-2ezbrJk9V4foB3+U+eQ7234spsHmrufPU+9EV2cVZCnhTLLfelPz7wWshO0HjUNtcECNBaAfEzrdaQZOigkW+A==", + "license": "MIT" + }, + "node_modules/@img/colour": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.1.0.tgz", + "integrity": "sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==", + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/@img/sharp-darwin-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.5.tgz", + "integrity": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-darwin-arm64": "1.2.4" + } + }, + "node_modules/@img/sharp-darwin-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.5.tgz", + "integrity": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-darwin-x64": "1.2.4" + } + }, + "node_modules/@img/sharp-libvips-darwin-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.4.tgz", + "integrity": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==", + "cpu": [ + "arm64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "darwin" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-darwin-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.4.tgz", + "integrity": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==", + "cpu": [ + "x64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "darwin" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-arm": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.4.tgz", + "integrity": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==", + "cpu": [ + "arm" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.4.tgz", + "integrity": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==", + "cpu": [ + "arm64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-ppc64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.4.tgz", + "integrity": "sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==", + "cpu": [ + "ppc64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-riscv64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.2.4.tgz", + "integrity": "sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==", + "cpu": [ + "riscv64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-s390x": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.4.tgz", + "integrity": "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==", + "cpu": [ + "s390x" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.4.tgz", + "integrity": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==", + "cpu": [ + "x64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linuxmusl-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.4.tgz", + "integrity": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==", + "cpu": [ + "arm64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linuxmusl-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.4.tgz", + "integrity": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==", + "cpu": [ + "x64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-linux-arm": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.5.tgz", + "integrity": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==", + "cpu": [ + "arm" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-arm": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.5.tgz", + "integrity": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-arm64": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-ppc64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.5.tgz", + "integrity": "sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==", + "cpu": [ + "ppc64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-ppc64": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-riscv64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.34.5.tgz", + "integrity": "sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==", + "cpu": [ + "riscv64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-riscv64": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-s390x": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.5.tgz", + "integrity": "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==", + "cpu": [ + "s390x" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-s390x": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.5.tgz", + "integrity": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-x64": "1.2.4" + } + }, + "node_modules/@img/sharp-linuxmusl-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.5.tgz", + "integrity": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linuxmusl-arm64": "1.2.4" + } + }, + "node_modules/@img/sharp-linuxmusl-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.5.tgz", + "integrity": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linuxmusl-x64": "1.2.4" + } + }, + "node_modules/@img/sharp-wasm32": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.5.tgz", + "integrity": "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==", + "cpu": [ + "wasm32" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT", + "optional": true, + "dependencies": { + "@emnapi/runtime": "^1.7.0" + }, + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.5.tgz", + "integrity": "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-ia32": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.5.tgz", + "integrity": "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==", + "cpu": [ + "ia32" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.5.tgz", + "integrity": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@llamaindex/liteparse": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/@llamaindex/liteparse/-/liteparse-1.5.2.tgz", + "integrity": "sha512-fjJd12g0n8NyZz/5CcWAVNwO3OsI4kT3Iwdv85KMvpVnU9fDbY9HLloVT4mCwNxAmi03IydxJkICIzJZeNt2RA==", + "license": "Apache-2.0", + "dependencies": { + "@hyzyla/pdfium": "^2.1.9", + "axios": "^1.7.0", + "commander": "^12.0.0", + "file-type": "^21.3.3", + "form-data": "^4.0.0", + "p-limit": "^7.3.0", + "sharp": "^0.34.5", + "tesseract.js": "^7.0.0", + "unified": "^11.0.0", + "zod": "^3.23.0" + }, + "bin": { + "lit": "dist/src/index.js", + "liteparse": "dist/src/index.js" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/@tokenizer/inflate": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@tokenizer/inflate/-/inflate-0.4.1.tgz", + "integrity": "sha512-2mAv+8pkG6GIZiF1kNg1jAjh27IDxEPKwdGul3snfztFerfPGI1LjDezZp3i7BElXompqEtPmoPx6c2wgtWsOA==", + "license": "MIT", + "dependencies": { + "debug": "^4.4.3", + "token-types": "^6.1.1" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/@tokenizer/token": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@tokenizer/token/-/token-0.3.0.tgz", + "integrity": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==", + "license": "MIT" + }, + "node_modules/@types/unist": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", + "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", + "license": "MIT" + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "license": "MIT" + }, + "node_modules/axios": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.15.2.tgz", + "integrity": "sha512-wLrXxPtcrPTsNlJmKjkPnNPK2Ihe0hn0wGSaTEiHRPxwjvJwT3hKmXF4dpqxmPO9SoNb2FsYXj/xEo0gHN+D5A==", + "license": "MIT", + "dependencies": { + "follow-redirects": "^1.15.11", + "form-data": "^4.0.5", + "proxy-from-env": "^2.1.0" + } + }, + "node_modules/bail": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", + "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/bmp-js": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/bmp-js/-/bmp-js-0.1.0.tgz", + "integrity": "sha512-vHdS19CnY3hwiNdkaqk93DvjVLfbEcI8mys4UjuWrlX1haDmroo8o4xCzh4wD6DGV6HxRCyauwhHRqMTfERtjw==", + "license": "MIT" + }, + "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-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/combined-stream": { + "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" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "12.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-12.1.0.tgz", + "integrity": "sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==", + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/debug": { + "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.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "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" + } + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/detect-libc": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz", + "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==", + "license": "Apache-2.0", + "engines": { + "node": ">=8" + } + }, + "node_modules/devlop": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz", + "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==", + "license": "MIT", + "dependencies": { + "dequal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "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": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-define-property": { + "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" + } + }, + "node_modules/es-errors": { + "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-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "license": "MIT", + "dependencies": { + "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/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "license": "MIT" + }, + "node_modules/file-type": { + "version": "21.3.4", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-21.3.4.tgz", + "integrity": "sha512-Ievi/yy8DS3ygGvT47PjSfdFoX+2isQueoYP1cntFW1JLYAuS4GD7NUPGg4zv2iZfV52uDyk5w5Z0TdpRS6Q1g==", + "license": "MIT", + "dependencies": { + "@tokenizer/inflate": "^0.4.1", + "strtok3": "^10.3.4", + "token-types": "^6.1.1", + "uint8array-extras": "^1.4.0" + }, + "engines": { + "node": ">=20" + }, + "funding": { + "url": "https://github.com/sindresorhus/file-type?sponsor=1" + } + }, + "node_modules/follow-redirects": { + "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" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/form-data": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz", + "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==", + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-intrinsic": { + "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", + "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" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/gopd": { + "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" + } + }, + "node_modules/has-symbols": { + "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" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "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" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.3.tgz", + "integrity": "sha512-ej4AhfhfL2Q2zpMmLo7U1Uv9+PyhIZpgQLGT1F9miIGmiCJIoCgSmczFdrc97mWT4kVY72KA+WnnhJ5pghSvSg==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/idb-keyval": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/idb-keyval/-/idb-keyval-6.2.2.tgz", + "integrity": "sha512-yjD9nARJ/jb1g+CvD0tlhUHOrJ9Sy0P8T9MF3YaLlHnSRpwPfpTX0XIvpmw3gAJUmEu3FiICLBDPXVwyEvrleg==", + "license": "Apache-2.0" + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "BSD-3-Clause" + }, + "node_modules/is-plain-obj": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", + "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-url": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/is-url/-/is-url-1.2.4.tgz", + "integrity": "sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==", + "license": "MIT" + }, + "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/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/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/ms": { + "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/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "license": "MIT", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/opencollective-postinstall": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/opencollective-postinstall/-/opencollective-postinstall-2.0.3.tgz", + "integrity": "sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q==", + "license": "MIT", + "bin": { + "opencollective-postinstall": "index.js" + } + }, + "node_modules/p-limit": { + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-7.3.0.tgz", + "integrity": "sha512-7cIXg/Z0M5WZRblrsOla88S4wAK+zOQQWeBYfV3qJuJXMr+LnbYjaadrFaS0JILfEDPVqHyKnZ1Z/1d6J9VVUw==", + "license": "MIT", + "dependencies": { + "yocto-queue": "^1.2.1" + }, + "engines": { + "node": ">=20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/proxy-from-env": { + "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/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", + "license": "MIT" + }, + "node_modules/semver": { + "version": "7.7.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz", + "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/sharp": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.34.5.tgz", + "integrity": "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==", + "hasInstallScript": true, + "license": "Apache-2.0", + "dependencies": { + "@img/colour": "^1.0.0", + "detect-libc": "^2.1.2", + "semver": "^7.7.3" + }, + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-darwin-arm64": "0.34.5", + "@img/sharp-darwin-x64": "0.34.5", + "@img/sharp-libvips-darwin-arm64": "1.2.4", + "@img/sharp-libvips-darwin-x64": "1.2.4", + "@img/sharp-libvips-linux-arm": "1.2.4", + "@img/sharp-libvips-linux-arm64": "1.2.4", + "@img/sharp-libvips-linux-ppc64": "1.2.4", + "@img/sharp-libvips-linux-riscv64": "1.2.4", + "@img/sharp-libvips-linux-s390x": "1.2.4", + "@img/sharp-libvips-linux-x64": "1.2.4", + "@img/sharp-libvips-linuxmusl-arm64": "1.2.4", + "@img/sharp-libvips-linuxmusl-x64": "1.2.4", + "@img/sharp-linux-arm": "0.34.5", + "@img/sharp-linux-arm64": "0.34.5", + "@img/sharp-linux-ppc64": "0.34.5", + "@img/sharp-linux-riscv64": "0.34.5", + "@img/sharp-linux-s390x": "0.34.5", + "@img/sharp-linux-x64": "0.34.5", + "@img/sharp-linuxmusl-arm64": "0.34.5", + "@img/sharp-linuxmusl-x64": "0.34.5", + "@img/sharp-wasm32": "0.34.5", + "@img/sharp-win32-arm64": "0.34.5", + "@img/sharp-win32-ia32": "0.34.5", + "@img/sharp-win32-x64": "0.34.5" + } + }, + "node_modules/strtok3": { + "version": "10.3.5", + "resolved": "https://registry.npmjs.org/strtok3/-/strtok3-10.3.5.tgz", + "integrity": "sha512-ki4hZQfh5rX0QDLLkOCj+h+CVNkqmp/CMf8v8kZpkNVK6jGQooMytqzLZYUVYIZcFZ6yDB70EfD8POcFXiF5oA==", + "license": "MIT", + "dependencies": { + "@tokenizer/token": "^0.3.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/tesseract.js": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/tesseract.js/-/tesseract.js-7.0.0.tgz", + "integrity": "sha512-exPBkd+z+wM1BuMkx/Bjv43OeLBxhL5kKWsz/9JY+DXcXdiBjiAch0V49QR3oAJqCaL5qURE0vx9Eo+G5YE7mA==", + "hasInstallScript": true, + "license": "Apache-2.0", + "dependencies": { + "bmp-js": "^0.1.0", + "idb-keyval": "^6.2.0", + "is-url": "^1.2.4", + "node-fetch": "^2.6.9", + "opencollective-postinstall": "^2.0.3", + "regenerator-runtime": "^0.13.3", + "tesseract.js-core": "^7.0.0", + "wasm-feature-detect": "^1.8.0", + "zlibjs": "^0.3.1" + } + }, + "node_modules/tesseract.js-core": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/tesseract.js-core/-/tesseract.js-core-7.0.0.tgz", + "integrity": "sha512-WnNH518NzmbSq9zgTPeoF8c+xmilS8rFIl1YKbk/ptuuc7p6cLNELNuPAzcmsYw450ca6bLa8j3t0VAtq435Vw==", + "license": "Apache-2.0" + }, + "node_modules/token-types": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/token-types/-/token-types-6.1.2.tgz", + "integrity": "sha512-dRXchy+C0IgK8WPC6xvCHFRIWYUbqqdEIKPaKo/AcTUNzwLTK6AH7RjdLWsEZcAN/TBdtfUw3PYEgPr5VPr6ww==", + "license": "MIT", + "dependencies": { + "@borewit/text-codec": "^0.2.1", + "@tokenizer/token": "^0.3.0", + "ieee754": "^1.2.1" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "license": "MIT" + }, + "node_modules/trough": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz", + "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "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", + "optional": true + }, + "node_modules/uint8array-extras": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/uint8array-extras/-/uint8array-extras-1.5.0.tgz", + "integrity": "sha512-rvKSBiC5zqCCiDZ9kAOszZcDvdAHwwIKJG33Ykj43OKcWsnmcBRL09YTU4nOeHZ8Y2a7l1MgTd08SBe9A8Qj6A==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/unified": { + "version": "11.0.5", + "resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz", + "integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "bail": "^2.0.0", + "devlop": "^1.0.0", + "extend": "^3.0.0", + "is-plain-obj": "^4.0.0", + "trough": "^2.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-stringify-position": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", + "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz", + "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-message": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz", + "integrity": "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-stringify-position": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/wasm-feature-detect": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/wasm-feature-detect/-/wasm-feature-detect-1.8.0.tgz", + "integrity": "sha512-zksaLKM2fVlnB5jQQDqKXXwYHLQUVH9es+5TOOHwGOVJOCeRBCiPjwSg+3tN2AdTCzjgli4jijCH290kXb/zWQ==", + "license": "Apache-2.0" + }, + "node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "license": "BSD-2-Clause" + }, + "node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "license": "MIT", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/yocto-queue": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.2.2.tgz", + "integrity": "sha512-4LCcse/U2MHZ63HAJVE+v71o7yOdIe4cZ70Wpf8D/IyjDKYQLV5GD46B+hSTjJsvV5PztjvHoU580EftxjDZFQ==", + "license": "MIT", + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/zlibjs": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/zlibjs/-/zlibjs-0.3.1.tgz", + "integrity": "sha512-+J9RrgTKOmlxFSDHo0pI1xM6BLVUv+o0ZT9ANtCxGkjIVCCUdx9alUF8Gm+dGLKbkkkidWIHFDZHDMpfITt4+w==", + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/zod": { + "version": "3.25.76", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz", + "integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..acabee3 --- /dev/null +++ b/package.json @@ -0,0 +1,20 @@ +{ + "name": "presenton", + "version": "0.8.7", + "presentationExportVersion": "v0.3.44", + "type": "module", + "description": "Open-source AI presentation generator", + "scripts": { + "test": "npm run test:template-converter", + "convert:template": "node scripts/convert-template.mjs", + "convert:presentation-template": "node scripts/convert-presentation-template.mjs", + "test:template-converter": "node --test scripts/convert-template.test.mjs scripts/convert-presentation-template.test.mjs", + "sync:presentation-export": "node scripts/sync-presentation-export.cjs", + "sync:presentation-export:force": "node scripts/sync-presentation-export.cjs --force", + "check:presentation-export": "node scripts/sync-presentation-export.cjs --check-only" + }, + "dependencies": { + "@llamaindex/liteparse": "^1.5.2", + "sharp": "^0.34.5" + } +} diff --git a/readme_assets/images/banner.png b/readme_assets/images/banner.png new file mode 100644 index 0000000..03349b1 Binary files /dev/null and b/readme_assets/images/banner.png differ diff --git a/readme_assets/images/banner_bg.gif b/readme_assets/images/banner_bg.gif new file mode 100644 index 0000000..1330d49 Binary files /dev/null and b/readme_assets/images/banner_bg.gif differ diff --git a/readme_assets/images/chatgpt-2-1.png b/readme_assets/images/chatgpt-2-1.png new file mode 100644 index 0000000..14515f5 Binary files /dev/null and b/readme_assets/images/chatgpt-2-1.png differ diff --git a/readme_assets/images/cloud-banner.png b/readme_assets/images/cloud-banner.png new file mode 100644 index 0000000..117dec5 Binary files /dev/null and b/readme_assets/images/cloud-banner.png differ diff --git a/readme_assets/images/features-1.png b/readme_assets/images/features-1.png new file mode 100644 index 0000000..02e2864 Binary files /dev/null and b/readme_assets/images/features-1.png differ diff --git a/readme_assets/images/features.png b/readme_assets/images/features.png new file mode 100644 index 0000000..20bacba Binary files /dev/null and b/readme_assets/images/features.png differ diff --git a/readme_assets/images/logo.png b/readme_assets/images/logo.png new file mode 100644 index 0000000..e50ca49 Binary files /dev/null and b/readme_assets/images/logo.png differ diff --git a/readme_assets/presenton.mp4 b/readme_assets/presenton.mp4 new file mode 100644 index 0000000..d3f5a12 --- /dev/null +++ b/readme_assets/presenton.mp4 @@ -0,0 +1 @@ + diff --git a/scripts/convert-presentation-template.mjs b/scripts/convert-presentation-template.mjs new file mode 100644 index 0000000..fafb371 --- /dev/null +++ b/scripts/convert-presentation-template.mjs @@ -0,0 +1,357 @@ +#!/usr/bin/env node + +import { readFile } from "node:fs/promises"; +import path from "node:path"; +import { isDeepStrictEqual } from "node:util"; +import { pathToFileURL } from "node:url"; + +import { convertTemplateData } from "./convert-template.mjs"; + +function usage() { + return `Usage: node scripts/convert-presentation-template.mjs [options] + +Options: + --output Output JSON path (default: overwrite the input) + --app-data App-data root (default: APP_DATA_DIRECTORY or ./app_data) + --id Override the template id + --name Override the template name + --description Override the template description + --thumbnail Thumbnail URL or asset path to package + --help Show this help +`; +} + +function parseArgs(argv) { + const options = {}; + const valueOptions = new Map([ + ["--output", "output"], + ["-o", "output"], + ["--app-data", "appData"], + ["--id", "id"], + ["--name", "name"], + ["--description", "description"], + ["--thumbnail", "thumbnail"], + ]); + + for (let index = 0; index < argv.length; index += 1) { + const argument = argv[index]; + if (argument === "--help" || argument === "-h") return { help: true }; + const optionName = valueOptions.get(argument); + if (optionName) { + const value = argv[++index]; + if (!value) throw new Error(`${argument} requires a value`); + options[optionName] = value; + continue; + } + if (argument.startsWith("-")) throw new Error(`Unknown option: ${argument}`); + if (options.input) throw new Error("Only one presentation JSON file may be provided"); + options.input = argument; + } + + if (!options.input) throw new Error("A presentation JSON file is required"); + return { ...options, help: false }; +} + +function asObject(value, label) { + if (!value || typeof value !== "object" || Array.isArray(value)) { + throw new Error(`${label} must be an object`); + } + return value; +} + +function unwrapArray(value, wrapperKey, label) { + const array = Array.isArray(value) ? value : value?.[wrapperKey]; + if (!Array.isArray(array)) { + throw new Error(`${label} must be an array or contain an array at .${wrapperKey}`); + } + return array; +} + +function firstNonEmptyString(...values) { + return values.find((value) => typeof value === "string" && value.trim())?.trim(); +} + +function displayName(value) { + return value + .replaceAll(/[-_]+/g, " ") + .replaceAll(/\b\w/g, (character) => character.toUpperCase()); +} + +function findVariant(mergedComponents, component) { + const matches = []; + for (let groupIndex = 0; groupIndex < mergedComponents.length; groupIndex += 1) { + const variants = mergedComponents[groupIndex].variants; + if (!Array.isArray(variants)) { + throw new Error( + `merged_components[${groupIndex}].variants must be an array`, + ); + } + for (let variantIndex = 0; variantIndex < variants.length; variantIndex += 1) { + if (isDeepStrictEqual(variants[variantIndex], component)) { + matches.push({ groupIndex, variantIndex }); + } + } + } + return matches; +} + +function uniqueGroupId(componentId, usedIds) { + const base = firstNonEmptyString(componentId) ?? "component"; + if (!usedIds.has(base)) { + usedIds.add(base); + return base; + } + + for (let suffix = 2; ; suffix += 1) { + const suffixText = `_${suffix}`; + const candidate = `${base.slice(0, 80 - suffixText.length)}${suffixText}`; + if (!usedIds.has(candidate)) { + usedIds.add(candidate); + return candidate; + } + } +} + +function takeComponentWithId(components, componentId) { + const index = components.findIndex((component) => component?.id === componentId); + if (index === -1) return null; + return components.splice(index, 1)[0]; +} + +function assertSingleVariantMatch(matches, layoutId, componentId) { + if (matches.length === 1) return matches[0]; + const reason = matches.length === 0 ? "was not found" : "is ambiguous"; + throw new Error( + `Original component ${layoutId}/${componentId ?? ""} ${reason} in merged_components`, + ); +} + +/** + * Apply the editor's latest slides[].ui trees to the reusable layout and merged + * component catalogs carried by a presentation-detail response. + */ +export function buildTemplateFromPresentation(rawPresentation, options = {}) { + const raw = asObject(rawPresentation, "The presentation"); + const sourceLayouts = structuredClone( + unwrapArray(raw.layout ?? raw.layouts, "layouts", "presentation.layout"), + ); + const mergedComponents = structuredClone( + unwrapArray(raw.merged_components, "components", "presentation.merged_components"), + ); + const originalMergedComponents = structuredClone(mergedComponents); + const removedVariant = Symbol("removed merged component variant"); + const slides = raw.slides == null ? [] : unwrapArray(raw.slides, "slides", "presentation.slides"); + const layoutIndexById = new Map(); + + sourceLayouts.forEach((layout, index) => { + asObject(layout, `presentation.layout.layouts[${index}]`); + if (typeof layout.id !== "string" || !layout.id.trim()) { + throw new Error(`presentation.layout.layouts[${index}].id must be a non-empty string`); + } + if (layoutIndexById.has(layout.id)) { + throw new Error(`Duplicate source layout id: ${layout.id}`); + } + if (!Array.isArray(layout.components)) { + throw new Error(`Layout ${layout.id}.components must be an array`); + } + layoutIndexById.set(layout.id, index); + }); + + mergedComponents.forEach((group, index) => { + asObject(group, `presentation.merged_components.components[${index}]`); + if (!Array.isArray(group.variants)) { + throw new Error( + `presentation.merged_components.components[${index}].variants must be an array`, + ); + } + }); + + const editedLayoutBySourceId = new Map(); + for (let index = 0; index < slides.length; index += 1) { + const slide = asObject(slides[index], `presentation.slides[${index}]`); + if (slide.ui == null) continue; + const ui = structuredClone(asObject(slide.ui, `presentation.slides[${index}].ui`)); + if (!Array.isArray(ui.components)) { + throw new Error(`presentation.slides[${index}].ui.components must be an array`); + } + const sourceId = firstNonEmptyString(slide.layout, ui.id); + if (!sourceId) { + throw new Error(`presentation.slides[${index}] needs a layout id when ui is present`); + } + + const existing = editedLayoutBySourceId.get(sourceId); + if (existing && !isDeepStrictEqual(existing, ui)) { + throw new Error(`Slides contain conflicting UI edits for layout ${sourceId}`); + } + editedLayoutBySourceId.set(sourceId, ui); + } + + let updatedLayoutCount = 0; + let updatedVariantCount = 0; + let removedVariantCount = 0; + let addedVariantCount = 0; + + for (const [sourceId, ui] of editedLayoutBySourceId) { + const layoutIndex = layoutIndexById.get(sourceId); + if (layoutIndex == null) { + const newLayout = { ...ui, id: firstNonEmptyString(ui.id, sourceId) }; + sourceLayouts.push(newLayout); + layoutIndexById.set(newLayout.id, sourceLayouts.length - 1); + for (const component of newLayout.components) { + if (findVariant(mergedComponents, component).length === 0) { + mergedComponents.push({ + id: component.id, + description: typeof component.description === "string" ? component.description : "", + variants: [component], + }); + addedVariantCount += 1; + } + } + updatedLayoutCount += 1; + continue; + } + + const sourceLayout = sourceLayouts[layoutIndex]; + const remainingUiComponents = [...ui.components]; + for (const sourceComponent of sourceLayout.components) { + const match = assertSingleVariantMatch( + findVariant(originalMergedComponents, sourceComponent), + sourceId, + sourceComponent.id, + ); + const editedComponent = takeComponentWithId(remainingUiComponents, sourceComponent.id); + if (editedComponent) { + mergedComponents[match.groupIndex].variants[match.variantIndex] = editedComponent; + if (!isDeepStrictEqual(sourceComponent, editedComponent)) updatedVariantCount += 1; + } else { + // Keep catalog indexes stable while other source components are mapped + // against the original catalog. Filtering happens after all UI edits. + mergedComponents[match.groupIndex].variants[match.variantIndex] = removedVariant; + removedVariantCount += 1; + } + } + + for (const addedComponent of remainingUiComponents) { + if (findVariant(mergedComponents, addedComponent).length > 0) continue; + mergedComponents.push({ + id: addedComponent.id, + description: + typeof addedComponent.description === "string" ? addedComponent.description : "", + variants: [addedComponent], + }); + addedVariantCount += 1; + } + + sourceLayouts[layoutIndex] = { ...sourceLayout, ...ui }; + if (!isDeepStrictEqual(sourceLayout, sourceLayouts[layoutIndex])) updatedLayoutCount += 1; + } + + const nonEmptyMergedComponents = mergedComponents + .map((group) => ({ + ...group, + variants: group.variants.filter((variant) => variant !== removedVariant), + })) + .filter((group) => group.variants.length > 0); + const usedGroupIds = new Set(); + for (const group of nonEmptyMergedComponents) { + group.id = uniqueGroupId(group.id, usedGroupIds); + } + + // A valid final catalog must contain every component from every final layout. + for (const layout of sourceLayouts) { + for (const component of layout.components) { + const matches = findVariant(nonEmptyMergedComponents, component); + if (matches.length === 0) { + throw new Error( + `Final component ${layout.id}/${component.id ?? ""} is missing from merged_components`, + ); + } + } + } + + const outputDirectoryName = path.basename( + path.dirname(path.resolve(options.output ?? options.input ?? ".")), + ); + const previewImages = Array.isArray(raw.assets?.slide_image_urls) + ? raw.assets.slide_image_urls + : []; + const id = firstNonEmptyString(options.id, raw.template_id, raw.id, outputDirectoryName); + const name = firstNonEmptyString(options.name, raw.name, displayName(outputDirectoryName), id); + + return { + template: { + id, + name, + description: + options.description ?? (typeof raw.description === "string" ? raw.description : ""), + thumbnail: firstNonEmptyString(options.thumbnail, raw.thumbnail, ...previewImages) ?? "", + merged_components: nonEmptyMergedComponents, + layouts: sourceLayouts, + fonts: + raw.assets?.fonts && + typeof raw.assets.fonts === "object" && + !Array.isArray(raw.assets.fonts) + ? raw.assets.fonts + : raw.fonts && typeof raw.fonts === "object" && !Array.isArray(raw.fonts) + ? raw.fonts + : {}, + }, + stats: { + updatedLayoutCount, + updatedVariantCount, + removedVariantCount, + addedVariantCount, + }, + }; +} + +export async function convertPresentationTemplate({ + input, + output = input, + appData, + ...metadata +} = {}) { + if (!input) throw new Error("input is required"); + const inputPath = path.resolve(input); + const outputPath = path.resolve(output); + const raw = JSON.parse(await readFile(inputPath, "utf8")); + const { template, stats } = buildTemplateFromPresentation(raw, { + ...metadata, + input: inputPath, + output: outputPath, + }); + const result = await convertTemplateData({ + raw: template, + input: inputPath, + output: outputPath, + appData, + }); + return { ...result, ...stats }; +} + +async function main() { + try { + const options = parseArgs(process.argv.slice(2)); + if (options.help) { + process.stdout.write(usage()); + return; + } + const result = await convertPresentationTemplate(options); + const editSummary = + `Applied UI edits to ${result.updatedLayoutCount} layout(s), ` + + `updated ${result.updatedVariantCount} merged variant(s), ` + + `removed ${result.removedVariantCount}, and added ${result.addedVariantCount}.\n`; + process.stdout.write( + `Converted ${result.outputPath}\n` + + editSummary + + `Packaged ${result.assetCount} referenced asset(s).\n`, + ); + } catch (error) { + process.stderr.write(`Presentation template conversion failed: ${error.message}\n\n${usage()}`); + process.exitCode = 1; + } +} + +if (process.argv[1] && pathToFileURL(path.resolve(process.argv[1])).href === import.meta.url) { + await main(); +} diff --git a/scripts/convert-presentation-template.test.mjs b/scripts/convert-presentation-template.test.mjs new file mode 100644 index 0000000..0754295 --- /dev/null +++ b/scripts/convert-presentation-template.test.mjs @@ -0,0 +1,159 @@ +import assert from "node:assert/strict"; +import { mkdtemp, mkdir, readFile, writeFile } from "node:fs/promises"; +import os from "node:os"; +import path from "node:path"; +import test from "node:test"; + +import { convertPresentationTemplate } from "./convert-presentation-template.mjs"; + +function component(id, data, extra = {}) { + return { + id, + description: `${id} description`, + position: { x: 0, y: 0 }, + size: { width: 100, height: 100 }, + elements: [ + { + type: "image", + data, + decorative: true, + is_icon: false, + }, + ], + ...extra, + }; +} + +test("converts presentation UI edits into bundled layouts and merged variants", async () => { + const root = await mkdtemp(path.join(os.tmpdir(), "presentation-template-converter-")); + const appData = path.join(root, "app_data"); + const inputDirectory = path.join(root, "templates", "dynamic"); + const input = path.join(inputDirectory, "presentation.json"); + const output = path.join(inputDirectory, "template.json"); + await mkdir(path.join(appData, "images"), { recursive: true }); + await mkdir(path.join(appData, "fonts"), { recursive: true }); + await mkdir(inputDirectory, { recursive: true }); + await writeFile(path.join(appData, "images", "updated.png"), "updated"); + await writeFile(path.join(appData, "images", "untouched.png"), "untouched"); + await writeFile(path.join(appData, "images", "added.png"), "added"); + await writeFile(path.join(appData, "images", "thumbnail.png"), "thumbnail"); + await writeFile(path.join(appData, "fonts", "custom.ttf"), "font"); + + const originalHero = component("hero", "/app_data/images/original.png"); + const originalRemoved = component("removed", "/app_data/images/removed.png"); + const untouched = component("untouched", "/app_data/images/untouched.png"); + const updatedHero = component("hero", "/app_data/images/updated.png", { + position: { x: 25, y: 30 }, + }); + const added = component("added", "/app_data/images/added.png"); + + await writeFile( + input, + JSON.stringify({ + id: "presentation-id", + layout: { + layouts: [ + { + id: "edited-layout", + description: "Original layout", + components: [originalHero, originalRemoved], + }, + { + id: "unused-layout", + description: "Unused layout", + components: [untouched], + }, + ], + }, + merged_components: { + components: [ + { + id: "hero-group", + description: "Hero variants", + variants: [originalHero, untouched], + }, + { + id: "removed", + description: "Removed variants", + variants: [originalRemoved], + }, + ], + }, + slides: [ + { + layout: "edited-layout", + ui: { + id: "edited-layout", + description: "Updated layout", + components: [updatedHero, added], + }, + }, + ], + fonts: { Custom: "/app_data/fonts/custom.ttf" }, + thumbnail: "/app_data/images/thumbnail.png", + }), + ); + + const result = await convertPresentationTemplate({ + input, + output, + appData, + name: "Dynamic", + }); + const converted = JSON.parse(await readFile(output, "utf8")); + + assert.deepEqual(Object.keys(converted), [ + "id", + "name", + "description", + "thumbnail", + "merged_components", + "layouts", + "fonts", + ]); + assert.equal(converted.name, "Dynamic"); + assert.equal(converted.layouts.length, 2); + assert.equal(converted.layouts[0].description, "Updated layout"); + assert.equal(converted.layouts[0].components[0].position.x, 25); + assert.equal(converted.layouts[0].components[0].elements[0].data, "static/updated.png"); + assert.equal(converted.layouts[1].components[0].elements[0].data, "static/untouched.png"); + + const variants = converted.merged_components.flatMap((group) => group.variants); + assert.equal(variants.some((variant) => variant.id === "removed"), false); + assert.equal( + variants.find((variant) => variant.id === "hero").elements[0].data, + "static/updated.png", + ); + assert.equal( + variants.find((variant) => variant.id === "added").elements[0].data, + "static/added.png", + ); + assert.equal(converted.thumbnail, "static/thumbnail.png"); + assert.equal(converted.fonts.Custom, "static/custom.ttf"); + assert.equal(result.updatedLayoutCount, 1); + assert.equal(result.updatedVariantCount, 1); + assert.equal(result.removedVariantCount, 1); + assert.equal(result.addedVariantCount, 1); + assert.equal(result.assetCount, 5); +}); + +test("fails when an original layout component cannot be mapped to merged_components", async () => { + const root = await mkdtemp(path.join(os.tmpdir(), "presentation-template-invalid-")); + const input = path.join(root, "presentation.json"); + const output = path.join(root, "template.json"); + const original = component("missing", "/static/images/replaceable_template_image.png"); + await writeFile( + input, + JSON.stringify({ + layout: { layouts: [{ id: "layout", components: [original] }] }, + merged_components: { components: [] }, + slides: [{ layout: "layout", ui: { id: "layout", components: [original] } }], + }), + ); + + await assert.rejects( + convertPresentationTemplate({ input, output, appData: path.join(root, "app_data") }), + /was not found in merged_components/, + ); + await assert.rejects(readFile(output), /ENOENT/); +}); diff --git a/scripts/convert-template.mjs b/scripts/convert-template.mjs new file mode 100644 index 0000000..dfdf521 --- /dev/null +++ b/scripts/convert-template.mjs @@ -0,0 +1,361 @@ +#!/usr/bin/env node + +import { createHash } from "node:crypto"; +import { + copyFile, + mkdir, + readFile, + readdir, + rm, + rmdir, + stat, + writeFile, +} from "node:fs/promises"; +import path from "node:path"; +import { pathToFileURL } from "node:url"; + +const TOP_LEVEL_KEYS = [ + "id", + "name", + "description", + "thumbnail", + "merged_components", + "layouts", + "fonts", +]; + +const REPLACEABLE_IMAGE = "/static/images/replaceable_template_image.png"; +const ICON_PLACEHOLDER = "/static/icons/placeholder.svg"; + +function usage() { + return `Usage: node scripts/convert-template.mjs [options] + +Options: + --output Output JSON path (default: overwrite the input) + --app-data App-data root (default: APP_DATA_DIRECTORY or ./app_data) + --help Show this help +`; +} + +function parseArgs(argv) { + let input; + let output; + let appData; + + for (let index = 0; index < argv.length; index += 1) { + const argument = argv[index]; + if (argument === "--help" || argument === "-h") return { help: true }; + if (argument === "--output" || argument === "-o") { + output = argv[++index]; + if (!output) throw new Error(`${argument} requires a path`); + continue; + } + if (argument === "--app-data") { + appData = argv[++index]; + if (!appData) throw new Error(`${argument} requires a directory`); + continue; + } + if (argument.startsWith("-")) throw new Error(`Unknown option: ${argument}`); + if (input) throw new Error("Only one input JSON file may be provided"); + input = argument; + } + + if (!input) throw new Error("An input JSON file is required"); + return { input, output, appData, help: false }; +} + +function unwrapArray(value, wrapperKey, fieldName) { + const unwrapped = Array.isArray(value) ? value : value?.[wrapperKey]; + if (!Array.isArray(unwrapped)) { + throw new Error( + `Top-level ${fieldName} must be an array or an object containing an array at .${wrapperKey}`, + ); + } + return unwrapped; +} + +function firstNonEmptyString(...values) { + return values.find((value) => typeof value === "string" && value.trim())?.trim(); +} + +function buildTargetShape(raw, outputPath) { + if (!raw || typeof raw !== "object" || Array.isArray(raw)) { + throw new Error("The input template must be a JSON object"); + } + + const id = firstNonEmptyString(raw.id, path.basename(path.dirname(outputPath))); + const name = firstNonEmptyString(raw.name, id); + const previewImages = Array.isArray(raw.assets?.slide_image_urls) + ? raw.assets.slide_image_urls + : []; + const thumbnailSource = firstNonEmptyString(raw.thumbnail, ...previewImages) ?? ""; + const fonts = + raw.assets?.fonts && typeof raw.assets.fonts === "object" && !Array.isArray(raw.assets.fonts) + ? raw.assets.fonts + : raw.fonts && typeof raw.fonts === "object" && !Array.isArray(raw.fonts) + ? raw.fonts + : {}; + + return { + template: { + id, + name, + description: typeof raw.description === "string" ? raw.description : "", + thumbnail: thumbnailSource, + merged_components: + raw.merged_components == null + ? [] + : unwrapArray(raw.merged_components, "components", "merged_components"), + layouts: unwrapArray(raw.layouts, "layouts", "layouts"), + fonts, + }, + thumbnailSource, + }; +} + +function replaceEditableImages(value) { + if (Array.isArray(value)) { + return value.map(replaceEditableImages); + } + if (!value || typeof value !== "object") return value; + + const converted = Object.fromEntries( + Object.entries(value).map(([key, child]) => [key, replaceEditableImages(child)]), + ); + if (value.type !== "image") return converted; + if (value.is_icon === true) { + return { ...converted, data: ICON_PLACEHOLDER }; + } + if (value.decorative !== true) { + return { ...converted, data: REPLACEABLE_IMAGE }; + } + return converted; +} + +function collectStrings(value, result = new Set()) { + if (typeof value === "string") { + result.add(value); + } else if (Array.isArray(value)) { + for (const child of value) collectStrings(child, result); + } else if (value && typeof value === "object") { + for (const child of Object.values(value)) collectStrings(child, result); + } + return result; +} + +function appDataRelativePath(value) { + let pathname = value; + try { + pathname = decodeURIComponent(new URL(value).pathname); + } catch { + // Plain filesystem and template-relative paths are handled below. + } + + const normalized = pathname.replaceAll("\\", "/"); + const marker = "/app_data/"; + if (normalized.startsWith(marker)) return normalized.slice(marker.length); + if (normalized.startsWith("app_data/")) return normalized.slice("app_data/".length); + return null; +} + +function assertInside(root, candidate, label) { + const relative = path.relative(root, candidate); + if (relative === ".." || relative.startsWith(`..${path.sep}`) || path.isAbsolute(relative)) { + throw new Error(`${label} resolves outside ${root}`); + } +} + +async function isFile(filePath) { + try { + return (await stat(filePath)).isFile(); + } catch { + return false; + } +} + +async function contentHash(filePath) { + return createHash("sha256").update(await readFile(filePath)).digest("hex"); +} + +async function resolveAsset(value, context) { + const appDataRelative = appDataRelativePath(value); + if (appDataRelative != null) { + const source = path.resolve(context.appDataRoot, appDataRelative); + assertInside(context.appDataRoot, source, value); + return { source, preferredName: path.basename(source) }; + } + + if (value.startsWith("static/")) { + const relative = value.slice("static/".length); + const source = path.resolve(context.inputDirectory, "static", relative); + assertInside(path.join(context.inputDirectory, "static"), source, value); + return { source, preferredName: relative }; + } + + const absolute = path.resolve(value); + if (path.isAbsolute(value) && absolute.startsWith(`${context.appDataRoot}${path.sep}`)) { + return { source: absolute, preferredName: path.basename(absolute) }; + } + + return null; +} + +async function planAssets(template, thumbnailSource, context) { + const plans = new Map(); + const plansBySource = new Map(); + const claimedNames = new Map(); + + for (const value of collectStrings(template)) { + const asset = await resolveAsset(value, context); + if (!asset) continue; + if (!(await isFile(asset.source))) { + throw new Error(`Referenced asset does not exist: ${asset.source} (from ${value})`); + } + + const sourceKey = path.resolve(asset.source); + const existing = plansBySource.get(sourceKey); + if (existing) { + plans.set(value, existing); + continue; + } + + let targetName = + value === thumbnailSource + ? `thumbnail${path.extname(asset.preferredName) || ".png"}` + : asset.preferredName; + targetName = targetName.replaceAll("\\", "/").replace(/^\/+/, ""); + assertInside( + context.staticDirectory, + path.resolve(context.staticDirectory, targetName), + targetName, + ); + + const claimed = claimedNames.get(targetName); + if (claimed && claimed.sourceKey !== sourceKey) { + const extension = path.extname(targetName); + const stem = extension ? targetName.slice(0, -extension.length) : targetName; + targetName = `${stem}-${(await contentHash(asset.source)).slice(0, 12)}${extension}`; + } + + const plan = { + source: asset.source, + sourceKey, + target: path.resolve(context.staticDirectory, targetName), + outputValue: `static/${targetName}`, + }; + claimedNames.set(targetName, plan); + plansBySource.set(sourceKey, plan); + plans.set(value, plan); + } + + return plans; +} + +function rewriteStrings(value, plans) { + if (typeof value === "string") return plans.get(value)?.outputValue ?? value; + if (Array.isArray(value)) return value.map((child) => rewriteStrings(child, plans)); + if (value && typeof value === "object") { + return Object.fromEntries( + Object.entries(value).map(([key, child]) => [key, rewriteStrings(child, plans)]), + ); + } + return value; +} + +async function cleanStaticDirectory(directory, retainedTargets) { + async function clean(currentDirectory) { + let entries; + try { + entries = await readdir(currentDirectory, { withFileTypes: true }); + } catch (error) { + if (error.code === "ENOENT") return; + throw error; + } + + for (const entry of entries) { + const entryPath = path.join(currentDirectory, entry.name); + if (entry.isDirectory()) { + await clean(entryPath); + try { + await rmdir(entryPath); + } catch (error) { + if (error.code !== "ENOTEMPTY" && error.code !== "EEXIST") throw error; + } + } else if (!retainedTargets.has(path.resolve(entryPath))) { + await rm(entryPath, { force: true }); + } + } + } + + await clean(directory); +} + +export async function convertTemplateData({ raw, input, output = input, appData } = {}) { + if (!input) throw new Error("input is required"); + if (raw === undefined) throw new Error("raw template data is required"); + + const inputPath = path.resolve(input); + const outputPath = path.resolve(output); + const appDataRoot = path.resolve( + appData ?? process.env.APP_DATA_DIRECTORY ?? path.join(process.cwd(), "app_data"), + ); + const inputDirectory = path.dirname(inputPath); + const outputDirectory = path.dirname(outputPath); + const staticDirectory = path.join(outputDirectory, "static"); + const { template: targetShape, thumbnailSource } = buildTargetShape(raw, outputPath); + const template = replaceEditableImages(targetShape); + const plans = await planAssets(template, thumbnailSource, { + appDataRoot, + inputDirectory, + staticDirectory, + }); + const converted = rewriteStrings(template, plans); + + await mkdir(outputDirectory, { recursive: true }); + for (const plan of new Set(plans.values())) { + await mkdir(path.dirname(plan.target), { recursive: true }); + if (path.resolve(plan.source) !== path.resolve(plan.target)) { + await copyFile(plan.source, plan.target); + } + } + await cleanStaticDirectory( + staticDirectory, + new Set([...plans.values()].map((plan) => path.resolve(plan.target))), + ); + await writeFile(outputPath, `${JSON.stringify(converted, null, 2)}\n`, "utf8"); + + return { + outputPath, + assetCount: new Set([...plans.values()].map((plan) => plan.target)).size, + topLevelKeys: TOP_LEVEL_KEYS, + }; +} + +export async function convertTemplate({ input, output = input, appData } = {}) { + if (!input) throw new Error("input is required"); + + const inputPath = path.resolve(input); + const raw = JSON.parse(await readFile(inputPath, "utf8")); + return convertTemplateData({ raw, input: inputPath, output, appData }); +} + +async function main() { + try { + const options = parseArgs(process.argv.slice(2)); + if (options.help) { + process.stdout.write(usage()); + return; + } + const result = await convertTemplate(options); + process.stdout.write( + `Converted ${result.outputPath}\nPackaged ${result.assetCount} referenced asset(s).\n`, + ); + } catch (error) { + process.stderr.write(`Template conversion failed: ${error.message}\n\n${usage()}`); + process.exitCode = 1; + } +} + +if (process.argv[1] && pathToFileURL(path.resolve(process.argv[1])).href === import.meta.url) { + await main(); +} diff --git a/scripts/convert-template.test.mjs b/scripts/convert-template.test.mjs new file mode 100644 index 0000000..98dd645 --- /dev/null +++ b/scripts/convert-template.test.mjs @@ -0,0 +1,162 @@ +import assert from "node:assert/strict"; +import { mkdtemp, mkdir, readFile, writeFile } from "node:fs/promises"; +import os from "node:os"; +import path from "node:path"; +import test from "node:test"; + +import { convertTemplate } from "./convert-template.mjs"; + +test("converts an exported template to the bundled default-template shape", async () => { + const root = await mkdtemp(path.join(os.tmpdir(), "template-converter-")); + const appData = path.join(root, "app_data"); + const inputDirectory = path.join(root, "templates", "modern"); + const input = path.join(inputDirectory, "source.json"); + const output = path.join(inputDirectory, "template.json"); + const decorativeImage = path.join( + appData, + "pptx-to-json", + "session", + "images", + "decoration.png", + ); + const preview = path.join(appData, "uploads", "template-previews", "id", "slide_1.png"); + const staticDirectory = path.join(inputDirectory, "static"); + await mkdir(path.dirname(decorativeImage), { recursive: true }); + await mkdir(path.dirname(preview), { recursive: true }); + await mkdir(staticDirectory, { recursive: true }); + await writeFile(decorativeImage, "decorative image bytes"); + await writeFile(preview, "preview bytes"); + await writeFile(path.join(staticDirectory, "stale.png"), "stale bytes"); + await writeFile( + input, + JSON.stringify({ + id: "modern", + name: "Modern", + description: null, + created_at: "remove only this top-level key", + merged_components: { + components: [{ id: "merged", metadata: { created_at: "keep nested" } }], + }, + layouts: { + layouts: [ + { + id: "cover", + custom_key: "keep me", + components: [ + { + elements: [ + { + type: "image", + data: "/app_data/pptx-to-json/session/images/editable.png", + decorative: false, + is_icon: false, + custom_image_key: true, + }, + { + type: "image", + data: "/app_data/pptx-to-json/session/images/icon.svg", + decorative: true, + is_icon: true, + }, + { + type: "image", + data: "/app_data/pptx-to-json/session/images/decoration.png", + decorative: true, + is_icon: false, + }, + ], + }, + ], + }, + ], + }, + assets: { + fonts: { Montserrat: "https://fonts.example/montserrat.css" }, + images: ["/app_data/unused.png"], + slide_image_urls: [ + "http://127.0.0.1:8000/app_data/uploads/template-previews/id/slide_1.png", + ], + }, + }), + ); + + const result = await convertTemplate({ input, output, appData }); + const converted = JSON.parse(await readFile(output, "utf8")); + + assert.deepEqual(Object.keys(converted), [ + "id", + "name", + "description", + "thumbnail", + "merged_components", + "layouts", + "fonts", + ]); + assert.equal(converted.description, ""); + assert.equal(converted.thumbnail, "static/thumbnail.png"); + assert.equal(converted.merged_components[0].metadata.created_at, "keep nested"); + assert.equal(converted.layouts[0].custom_key, "keep me"); + assert.equal(converted.layouts[0].components[0].elements[0].custom_image_key, true); + assert.equal( + converted.layouts[0].components[0].elements[0].data, + "/static/images/replaceable_template_image.png", + ); + assert.equal( + converted.layouts[0].components[0].elements[1].data, + "/static/icons/placeholder.svg", + ); + assert.equal( + converted.layouts[0].components[0].elements[2].data, + "static/decoration.png", + ); + assert.deepEqual(converted.fonts, { + Montserrat: "https://fonts.example/montserrat.css", + }); + assert.equal( + await readFile(path.join(staticDirectory, "decoration.png"), "utf8"), + "decorative image bytes", + ); + assert.equal( + await readFile(path.join(staticDirectory, "thumbnail.png"), "utf8"), + "preview bytes", + ); + await assert.rejects(readFile(path.join(staticDirectory, "stale.png")), /ENOENT/); + assert.equal(result.assetCount, 2); +}); + +test("fails before writing output when a retained asset is missing", async () => { + const root = await mkdtemp(path.join(os.tmpdir(), "template-converter-missing-")); + const input = path.join(root, "source.json"); + const output = path.join(root, "output", "template.json"); + await writeFile( + input, + JSON.stringify({ + id: "missing", + name: "Missing", + layouts: [ + { + components: [ + { + elements: [ + { + type: "image", + data: "/app_data/no.png", + decorative: true, + is_icon: false, + }, + ], + }, + ], + }, + ], + merged_components: [], + assets: { fonts: {} }, + }), + ); + + await assert.rejects( + convertTemplate({ input, output, appData: path.join(root, "app_data") }), + /Referenced asset does not exist/, + ); + await assert.rejects(readFile(output), /ENOENT/); +}); diff --git a/scripts/presenton-ascii.txt b/scripts/presenton-ascii.txt new file mode 100644 index 0000000..bb8b8a4 --- /dev/null +++ b/scripts/presenton-ascii.txt @@ -0,0 +1,7 @@ + ____ __ + / __ \________ ________ ____ / /_____ ____ + / /_/ / ___/ _ \/ ___/ _ \/ __ \/ __/ __ \/ __ \ + / ____/ / / __(__ ) __/ / / / /_/ /_/ / / / / +/_/ /_/ \___/____/\___/_/ /_/\__/\____/_/ /_/ + + diff --git a/scripts/presenton-terminal-banner.mjs b/scripts/presenton-terminal-banner.mjs new file mode 100644 index 0000000..39fd034 --- /dev/null +++ b/scripts/presenton-terminal-banner.mjs @@ -0,0 +1,191 @@ +/** + * Docker / startup terminal banner for Presenton. + * Renders a compact brand logo + startup status. + */ + +import fs from "node:fs"; +import path from "node:path"; +import { fileURLToPath } from "node:url"; + +const RESET = "\x1b[0m"; +const BOLD = "\x1b[1m"; +const DIM = "\x1b[2m"; + +function fgRgb(r, g, b, text) { + return `\x1b[38;2;${r};${g};${b}m${text}${RESET}`; +} + +function brand(text) { + return BOLD + fgRgb(138, 99, 255, text); +} + +function accent(text) { + return fgRgb(184, 176, 255, text); +} + +function muted(text) { + return DIM + fgRgb(160, 150, 210, text); +} + +function styleAsciiArt(rawAscii) { + const lines = rawAscii.replace(/\r/g, "").split("\n"); + const palette = [ + [153, 108, 255], + [145, 103, 250], + [136, 98, 245], + [127, 92, 239], + [118, 86, 233], + ]; + + return lines + .map((line, lineIdx) => { + const [r, g, b] = palette[lineIdx % palette.length]; + return line.replace(/[^\s]/g, (ch) => fgRgb(r, g, b, ch)); + }) + .join("\n"); +} + +function loadAsciiBanner() { + const thisDir = path.dirname(fileURLToPath(import.meta.url)); + const asciiPath = path.join(thisDir, "presenton-ascii.txt"); + + try { + const raw = fs.readFileSync(asciiPath, "utf8").trimEnd(); + if (!raw) return ""; + return styleAsciiArt(raw); + } catch { + return ""; + } +} + +function loadPackageVersion() { + const thisDir = path.dirname(fileURLToPath(import.meta.url)); + const packageJsonPath = path.join(thisDir, "..", "package.json"); + + try { + const pkg = JSON.parse(fs.readFileSync(packageJsonPath, "utf8")); + return typeof pkg.version === "string" ? pkg.version : ""; + } catch { + return ""; + } +} + +/** Visible width (strips SGR sequences). */ +function visLen(s) { + return s.replace(/\x1b\[[0-9;:]*m/g, "").length; +} + +/** Pad styled fragment to fixed visible width. */ +function padVis(styled, width) { + return styled + " ".repeat(Math.max(0, width - visLen(styled))); +} + +/** + * @param {object} [opts] + * @param {"development" | "production"} [opts.mode] + * @param {number} [opts.nextPort] + * @param {number} [opts.fastapiPort] + * @param {string} [opts.hostHttpPort] — host-published HTTP port (docker -p HOST:80). Default from env or "5001". + */ +export function printPresentonStartupBanner(opts = {}) { + const mode = opts.mode === "development" ? "development" : "production"; + const nextPort = opts.nextPort ?? 3000; + const fastapiPort = opts.fastapiPort ?? 8000; + const version = opts.version ?? loadPackageVersion(); + const hostHttpPort = + opts.hostHttpPort ?? + process.env.PRESENTON_HTTP_HOST_PORT ?? + process.env.PRESENTON_HOST_HTTP_PORT ?? + process.env.PRESENTON_PUBLIC_PORT ?? + "5001"; + + const nextUrl = `http://127.0.0.1:${nextPort}`; + const apiUrl = `http://127.0.0.1:${fastapiPort}`; + const publicUrl = + String(hostHttpPort) === "80" + ? "http://127.0.0.1" + : `http://127.0.0.1:${hostHttpPort}`; + + const iconBlock = loadAsciiBanner(); + + const title = [ + "", + BOLD + fgRgb(138, 99, 255, " Open Source AI Presentation Generator"), + ...(mode === "development" + ? [ + " " + + accent("Love the Project? ") + + brand("Star us on github: ") + + BOLD + + fgRgb(224, 218, 255, "https://github.com/presenton/presenton"), + ] + : []), + muted(" ─────────────────────────────────────────────────────────"), + "", + ].join("\n"); + + const W = 68; + const pipe = (inner) => brand(" ║") + inner + brand("║"); + + const boxTop = brand( + " ╔════════════════════════════════════════════════════════════════════╗", + ); + const boxDivider = brand( + " ╠════════════════════════════════════════════════════════════════════╣", + ); + const boxBottom = brand( + " ╚════════════════════════════════════════════════════════════════════╝", + ); + + const summaryLines = + mode === "development" + ? [ + pipe(padVis(" " + BOLD + "Routing summary" + RESET, W)), + boxDivider, + pipe(padVis(" " + muted("Mode: ") + mode, W)), + ...(version + ? [pipe(padVis(" " + muted("Version: ") + version, W))] + : []), + pipe(padVis(" " + accent("/ ") + muted("→ Next.js"), W)), + pipe(padVis(" " + accent("/api/v1/ ") + muted("→ FastAPI"), W)), + pipe(padVis(" " + muted("Next.js docker URL: ") + nextUrl, W)), + pipe(padVis(" " + muted("FastAPI docker URL: ") + apiUrl, W)), + pipe( + padVis( + " " + + muted("Public URL (Ctrl+Click to open): ") + + BOLD + + fgRgb(255, 255, 255, publicUrl), + W, + ), + ), + ] + : [ + pipe(padVis(" " + BOLD + "Application URL" + RESET, W)), + boxDivider, + pipe(padVis(" " + muted("Mode: ") + mode, W)), + ...(version + ? [pipe(padVis(" " + muted("Version: ") + version, W))] + : []), + pipe( + padVis( + " " + + muted("Open Presenton: ") + + BOLD + + fgRgb(255, 255, 255, publicUrl), + W, + ), + ), + ]; + + const summary = [ + boxTop, + ...summaryLines, + boxBottom, + "", + " " + muted("Made with ❤️ by the Presenton team"), + ].join("\n"); + + const bannerHeader = iconBlock ? `${iconBlock}\n` : ""; + console.log("\n" + bannerHeader + title + summary); +} diff --git a/scripts/rebuild_notice_all.py b/scripts/rebuild_notice_all.py new file mode 100644 index 0000000..b22376f --- /dev/null +++ b/scripts/rebuild_notice_all.py @@ -0,0 +1,333 @@ +#!/usr/bin/env python3 +import json +import os +import re +import sys +from pathlib import Path +from typing import Dict, List, Optional, Tuple + +REPO_ROOT = Path(__file__).resolve().parent.parent +FASTAPI_DIR = REPO_ROOT / "servers" / "fastapi" +NEXT_DIR = REPO_ROOT / "servers" / "nextjs" +NOTICE_PATH = REPO_ROOT / "NOTICE" + +PY_LICENSE_CANDIDATES = [ + "LICENSE", + "LICENSE.txt", + "LICENSE.md", + "LICENCE", + "COPYING", + "COPYING.txt", + "NOTICE", + "NOTICE.txt", +] + +NODE_LICENSE_CANDIDATES = [ + "LICENSE", + "LICENSE.txt", + "LICENSE.md", + "LICENCE", + "LICENCE.txt", + "COPYING", + "COPYING.txt", + "NOTICE", + "NOTICE.txt", +] + + +def read_text_safe(path: Path) -> str: + try: + return path.read_text(encoding="utf-8", errors="replace").strip() + except Exception: + return "" + + +def parse_rfc822_metadata(text: str) -> Dict[str, str]: + data: Dict[str, str] = {} + key: Optional[str] = None + for raw_line in text.splitlines(): + if not raw_line: + key = None + continue + if raw_line[0] in " \t" and key: + data[key] += "\n" + raw_line.strip() + continue + if ":" in raw_line: + k, v = raw_line.split(":", 1) + key = k.strip() + data[key] = v.strip() + return data + + +def find_python_site_packages(venv_dir: Path) -> Optional[Path]: + # Linux/mac + lib_dir = venv_dir / "lib" + if lib_dir.exists(): + for child in lib_dir.iterdir(): + if child.is_dir() and child.name.startswith("python"): + sp = child / "site-packages" + if sp.exists(): + return sp + # Windows + sp = venv_dir / "Lib" / "site-packages" + if sp.exists(): + return sp + return None + + +def detect_python_venv() -> Optional[Path]: + env_path = os.environ.get("NOTICE_PYTHON_VENV") + if env_path: + v = Path(env_path) + if v.exists(): + return v + default = FASTAPI_DIR / ".venv" + if default.exists(): + return default + active = os.environ.get("VIRTUAL_ENV") + if active and FASTAPI_DIR.as_posix() in Path(active).as_posix(): + return Path(active) + return None + + +def scan_python_packages(site_packages_dir: Path) -> List[Dict[str, str]]: + entries: List[Dict[str, str]] = [] + dist_infos = sorted(site_packages_dir.glob("*.dist-info")) + for dist in dist_infos: + metadata_path = dist / "METADATA" + if not metadata_path.exists(): + continue + meta = parse_rfc822_metadata(read_text_safe(metadata_path)) + name = meta.get("Name", "").strip() + version = meta.get("Version", "").strip() + license_name = meta.get("License", "").strip() + if not name: + # Fallback to folder name pattern + # e.g., requests-2.32.3.dist-info + base = dist.name[:-10] + if "-" in base: + parts = base.rsplit("-", 1) + if len(parts) == 2: + name = parts[0] + version = version or parts[1] + author = meta.get("Author", meta.get("Maintainer", meta.get("Author-email", ""))).strip() + + # License text candidates inside dist-info + license_text = "" + for cand in PY_LICENSE_CANDIDATES: + p = dist / cand + if p.exists(): + license_text = read_text_safe(p) + if license_text: + break + + # Search via RECORD for license files elsewhere + if not license_text: + record = dist / "RECORD" + if record.exists(): + for line in read_text_safe(record).splitlines(): + path_part = line.split(",", 1)[0] + lower = path_part.lower() + if any(token in lower for token in ["license", "licence", "copying", "notice"]): + target = site_packages_dir / path_part + if target.exists(): + license_text = read_text_safe(target) + if license_text: + break + + # As last resort, embed the License: field content + if not license_text and license_name: + license_text = f"License field from METADATA:\n{license_name}" + + entries.append({ + "name": name or dist.name, + "version": version, + "license": license_name, + "author": author, + "license_text": license_text, + }) + + # Sort by name for stability + entries.sort(key=lambda e: (e["name"].lower(), e["version"])) + return entries + + +def find_license_file_in_dir(base_dir: Path, depth_limit: int = 2) -> Optional[Path]: + # First, try immediate candidates + for cand in NODE_LICENSE_CANDIDATES: + p = base_dir / cand + if p.exists(): + return p + # case-insensitive check + for child in base_dir.iterdir(): + if child.is_file() and child.name.lower() == cand.lower(): + return child + + # Recursive limited-depth scan excluding nested node_modules + def walk(dir_path: Path, depth: int) -> Optional[Path]: + if depth > depth_limit: + return None + try: + it = list(dir_path.iterdir()) + except Exception: + return None + for child in it: + name_lower = child.name.lower() + if child.is_dir(): + if child.name == "node_modules" or child.name.startswith('.'): + continue + found = walk(child, depth + 1) + if found: + return found + else: + if any(tok in name_lower for tok in ["license", "licence", "copying", "notice"]): + return child + return None + + return walk(base_dir, 0) + + +def scan_node_modules(node_modules_dir: Path) -> List[Dict[str, str]]: + entries: List[Dict[str, str]] = [] + seen: set[str] = set() + + def visit_pkg(pkg_dir: Path): + pkg_json = pkg_dir / "package.json" + if not pkg_json.exists(): + return + try: + data = json.loads(read_text_safe(pkg_json) or "{}") + except Exception: + return + name = data.get("name") or pkg_dir.name + version = str(data.get("version") or "") + key = f"{name}@{version}" + if key in seen: + return + seen.add(key) + + license_name = "" + lic_field = data.get("license") + if isinstance(lic_field, str): + license_name = lic_field + elif isinstance(lic_field, dict): + license_name = lic_field.get("type", "") + elif isinstance(data.get("licenses"), list): + license_name = ", ".join([str(x.get("type", "")) for x in data["licenses"] if isinstance(x, dict)]) + + author = "" + a = data.get("author") + if isinstance(a, str): + author = a + elif isinstance(a, dict): + author = a.get("name", "") + + license_text = "" + lic_file = find_license_file_in_dir(pkg_dir, depth_limit=2) + if lic_file: + license_text = read_text_safe(lic_file) + + entries.append({ + "name": name, + "version": version, + "license": license_name, + "author": author, + "license_text": license_text, + }) + + def walk_node_modules(base: Path): + if not base.exists(): + return + for entry in base.iterdir(): + if not entry.is_dir(): + continue + if entry.name == ".bin": + continue + if entry.name.startswith("@"): # scoped packages + for scoped in entry.iterdir(): + if scoped.is_dir(): + visit_pkg(scoped) + # nested node_modules inside the package + nested = scoped / "node_modules" + walk_node_modules(nested) + continue + visit_pkg(entry) + nested = entry / "node_modules" + walk_node_modules(nested) + + walk_node_modules(node_modules_dir) + # Sort by package name + entries.sort(key=lambda e: (e["name"].lower(), e["version"])) + return entries + + +def format_section(title: str, entries: List[Dict[str, str]]) -> str: + header = [ + "-------------------------------------", + title, + "-------------------------------------", + "", + ] + lines: List[str] = ["\n".join(header)] + for e in entries: + block = [ + e.get("name", "").strip(), + e.get("version", "").strip(), + e.get("license", "").strip(), + e.get("author", "").strip(), + "", + (e.get("license_text", "") or "LICENSE TEXT NOT FOUND").strip(), + "", + "", + ] + lines.append("\n".join(block)) + return "".join(lines).rstrip() + "\n" + + +def main(): + # Optional CLI overrides + import argparse + parser = argparse.ArgumentParser(description="Rebuild NOTICE from installed packages") + parser.add_argument("--python-venv", dest="python_venv", default=None, help="Path to Python venv to scan") + parser.add_argument("--node-modules", dest="node_modules", default=None, help="Path to node_modules to scan") + args = parser.parse_args() + python_entries: List[Dict[str, str]] = [] + node_entries: List[Dict[str, str]] = [] + + # Python scan + venv = Path(args.python_venv) if args.python_venv else detect_python_venv() + if venv: + sp = find_python_site_packages(venv) + if sp and sp.exists(): + python_entries = scan_python_packages(sp) + else: + print(f"Warning: site-packages not found under {venv}", file=sys.stderr) + else: + print("Warning: Python venv not found. Set NOTICE_PYTHON_VENV or create servers/fastapi/.venv", file=sys.stderr) + + # Node scan + node_modules_dir = Path(args.node_modules or os.environ.get("NOTICE_NODE_MODULES") or (NEXT_DIR / "node_modules")) + if node_modules_dir.exists(): + node_entries = scan_node_modules(node_modules_dir) + else: + print(f"Warning: node_modules not found at {node_modules_dir}", file=sys.stderr) + + # Build NOTICE content + parts: List[str] = [] + if python_entries: + parts.append(format_section("PYTHON PACKAGES", python_entries)) + if node_entries: + parts.append(format_section("NODE PACKAGES", node_entries)) + if not parts: + print("Error: No sections generated. Ensure .venv and node_modules exist.", file=sys.stderr) + sys.exit(1) + + content = "\n".join(parts) + NOTICE_PATH.write_text(content, encoding="utf-8") + print("NOTICE rebuilt from installed packages") + + +if __name__ == "__main__": + main() + + diff --git a/scripts/sync-presentation-export.cjs b/scripts/sync-presentation-export.cjs new file mode 100644 index 0000000..d0bd531 --- /dev/null +++ b/scripts/sync-presentation-export.cjs @@ -0,0 +1,379 @@ +/** + * Download presenton-export release into repo-root `presentation-export/`. + * Same release host as Electron (`electron/scripts/sync-export-runtime.cjs`); Docker uses this at build time. + * + * Version resolution (first match): + * 1. EXPORT_RUNTIME_VERSION env + * 2. package.json → presentationExportVersion + * + * CLI: --force re-download even if valid runtime already exists + * --check-only verify index.cjs + converter exist and exit 0/1 + * + * On every run (including --check-only), index.cjs is overwritten from index.js + * so the CommonJS entrypoint never drifts from the bundled ESM build. + */ +const fs = require("fs"); +const path = require("path"); +const https = require("https"); +const http = require("http"); +const { execFileSync } = require("child_process"); + +const repoRoot = path.join(__dirname, ".."); +const targetRoot = path.join(repoRoot, "presentation-export"); +const targetPyDir = path.join(targetRoot, "py"); +const targetIndexJs = path.join(targetRoot, "index.js"); +const targetIndexCjs = path.join(targetRoot, "index.cjs"); +const packageJsonFile = path.join(repoRoot, "package.json"); +const cacheDir = path.join(repoRoot, ".cache", "presentation-export"); +const exportRepoBase = + "https://github.com/presenton/presenton-export/releases/download"; + +const cliArgs = new Set(process.argv.slice(2)); +const forceDownload = cliArgs.has("--force"); +const checkOnly = cliArgs.has("--check-only"); + +function resolveLinuxAssetName() { + const arch = ( + process.env.EXPORT_RUNTIME_ARCH || + process.env.TARGETARCH || + process.arch + ).toLowerCase(); + + if (arch === "amd64" || arch === "x64") { + return "export-Linux-X64.zip"; + } + if (arch === "arm64" || arch === "aarch64") { + return "export-Linux-ARM64.zip"; + } + + throw new Error(`Unsupported Linux export arch: ${arch}`); +} + +const linuxAssetName = resolveLinuxAssetName(); + +function ensureDir(dirPath) { + fs.mkdirSync(dirPath, { recursive: true }); +} + +function readPinnedVersion() { + if (!fs.existsSync(packageJsonFile)) { + throw new Error( + `Missing ${path.relative(repoRoot, packageJsonFile)}. Add \"presentationExportVersion\": \"vX.Y.Z\".` + ); + } + const raw = JSON.parse(fs.readFileSync(packageJsonFile, "utf8")); + const v = (raw.presentationExportVersion || "").trim(); + if (!v) { + throw new Error( + `${path.relative(repoRoot, packageJsonFile)} must set \"presentationExportVersion\" (e.g. \"v0.2.0\").` + ); + } + return v; +} + +async function getTargetVersion() { + const fromEnv = (process.env.EXPORT_RUNTIME_VERSION || "").trim(); + if (fromEnv) { + return fromEnv === "latest" ? await resolveLatestTag() : fromEnv; + } + const pinned = readPinnedVersion(); + if (pinned === "latest") { + return await resolveLatestTag(); + } + return pinned; +} + +function requestJson(url, redirects = 5) { + return new Promise((resolve, reject) => { + const client = url.startsWith("https:") ? https : http; + const req = client.get( + url, + { + headers: { + "User-Agent": "presenton-presentation-export-sync", + Accept: "application/vnd.github+json", + }, + }, + (res) => { + if ([301, 302, 303, 307, 308].includes(res.statusCode) && res.headers.location) { + if (redirects <= 0) { + reject(new Error(`Too many redirects for JSON request: ${url}`)); + return; + } + requestJson(res.headers.location, redirects - 1).then(resolve).catch(reject); + return; + } + if (res.statusCode < 200 || res.statusCode >= 300) { + reject(new Error(`Failed to fetch ${url}. HTTP ${res.statusCode}`)); + return; + } + let payload = ""; + res.setEncoding("utf8"); + res.on("data", (chunk) => { + payload += chunk; + }); + res.on("end", () => { + try { + resolve(JSON.parse(payload)); + } catch (e) { + reject(new Error(`Invalid JSON from ${url}: ${e.message}`)); + } + }); + } + ); + req.on("error", reject); + }); +} + +async function resolveLatestTag() { + const apiUrl = + "https://api.github.com/repos/presenton/presenton-export/releases/latest"; + const latest = await requestJson(apiUrl); + if (!latest.tag_name) { + throw new Error(`Could not resolve latest tag from ${apiUrl}`); + } + return latest.tag_name; +} + +function chmodIfPossible(filePath) { + if (process.platform !== "win32") { + fs.chmodSync(filePath, 0o755); + } +} + +function ensureCurrentConverterLink(converterPath) { + const currentPath = path.join(targetPyDir, "convert-linux-current"); + fs.rmSync(currentPath, { force: true }); + + if (process.platform === "win32") { + fs.copyFileSync(converterPath, currentPath); + return currentPath; + } + + fs.symlinkSync(path.basename(converterPath), currentPath); + return currentPath; +} + +function getConverterCandidates(baseDir = targetPyDir) { + if (linuxAssetName === "export-Linux-ARM64.zip") { + return [ + path.join(baseDir, "convert-linux-arm64"), + path.join(baseDir, "convert"), + ]; + } + + return [ + path.join(baseDir, "convert-linux-x64"), + path.join(baseDir, "convert-linux-amd64"), + path.join(baseDir, "convert"), + ]; +} + +function hasRuntimeBundle(baseDir) { + const indexPath = path.join(baseDir, "index.js"); + if (!fs.existsSync(indexPath)) { + return false; + } + + const pyCandidates = getConverterCandidates(path.join(baseDir, "py")); + const rootCandidates = getConverterCandidates(baseDir); + return [...pyCandidates, ...rootCandidates].some((candidate) => + fs.existsSync(candidate) + ); +} + +function moveFileAtomic(src, dest) { + try { + fs.renameSync(src, dest); + } catch { + fs.copyFileSync(src, dest); + fs.rmSync(src, { force: true }); + } +} + +function normalizeRuntimeLayout() { + if (!fs.existsSync(targetRoot)) { + return; + } + + ensureDir(targetPyDir); + + const rootCandidates = getConverterCandidates(targetRoot); + for (const sourcePath of rootCandidates) { + if (!fs.existsSync(sourcePath)) { + continue; + } + + const destinationPath = path.join(targetPyDir, path.basename(sourcePath)); + if (!fs.existsSync(destinationPath)) { + moveFileAtomic(sourcePath, destinationPath); + } + } +} + +function ensureCommonJsEntrypoint() { + if (!fs.existsSync(targetIndexJs)) { + return { ok: false, reason: `Missing runtime bundle: ${targetIndexJs}` }; + } + + try { + fs.copyFileSync(targetIndexJs, targetIndexCjs); + return { ok: true, entrypointPath: targetIndexCjs }; + } catch (err) { + return { + ok: false, + reason: `Failed to create CommonJS entrypoint ${targetIndexCjs}: ${err.message}`, + }; + } +} + +function validateExistingRuntime() { + normalizeRuntimeLayout(); + + const entrypoint = ensureCommonJsEntrypoint(); + if (!entrypoint.ok) { + return { ok: false, reason: entrypoint.reason }; + } + + const candidates = getConverterCandidates(); + const converterPath = candidates.find((c) => fs.existsSync(c)); + if (!converterPath) { + return { + ok: false, + reason: `No Linux converter binary under ${targetPyDir} or ${targetRoot}.`, + }; + } + chmodIfPossible(converterPath); + const currentConverterPath = ensureCurrentConverterLink(converterPath); + return { + ok: true, + entrypointPath: entrypoint.entrypointPath, + converterPath, + currentConverterPath, + }; +} + +function downloadFile(url, outputPath, redirects = 5) { + return new Promise((resolve, reject) => { + const client = url.startsWith("https:") ? https : http; + const req = client.get( + url, + { + headers: { + "User-Agent": "presenton-presentation-export-sync", + Accept: "application/octet-stream", + }, + }, + (res) => { + if ([301, 302, 303, 307, 308].includes(res.statusCode) && res.headers.location) { + if (redirects <= 0) { + reject(new Error(`Too many redirects while downloading ${url}`)); + return; + } + downloadFile(res.headers.location, outputPath, redirects - 1) + .then(resolve) + .catch(reject); + return; + } + if (res.statusCode < 200 || res.statusCode >= 300) { + reject(new Error(`Failed to download ${url}. HTTP ${res.statusCode}`)); + return; + } + ensureDir(path.dirname(outputPath)); + const fileStream = fs.createWriteStream(outputPath); + res.pipe(fileStream); + fileStream.on("finish", () => { + fileStream.close(resolve); + }); + fileStream.on("error", reject); + } + ); + req.on("error", reject); + }); +} + +function unzipArchive(zipPath, destDir) { + ensureDir(destDir); + execFileSync("unzip", ["-o", zipPath, "-d", destDir], { stdio: "inherit" }); +} + +function resolveExtractedRoot(extractDir) { + if (hasRuntimeBundle(extractDir)) { + return extractDir; + } + + const children = fs.readdirSync(extractDir, { withFileTypes: true }); + for (const entry of children) { + if (!entry.isDirectory()) continue; + const candidate = path.join(extractDir, entry.name); + if (hasRuntimeBundle(candidate)) { + return candidate; + } + } + throw new Error(`Unable to locate export runtime root under ${extractDir}`); +} + +async function downloadAndInstallRuntime() { + const tag = await getTargetVersion(); + const downloadUrl = `${exportRepoBase}/${tag}/${linuxAssetName}`; + + ensureDir(cacheDir); + const zipPath = path.join(cacheDir, linuxAssetName); + const extractDir = path.join(cacheDir, `extract-${Date.now()}`); + + console.log(`[presentation-export] Downloading ${downloadUrl}`); + await downloadFile(downloadUrl, zipPath); + + console.log(`[presentation-export] Extracting ${zipPath}`); + unzipArchive(zipPath, extractDir); + + const sourceRoot = resolveExtractedRoot(extractDir); + fs.rmSync(targetRoot, { recursive: true, force: true }); + ensureDir(targetRoot); + fs.cpSync(sourceRoot, targetRoot, { recursive: true, force: true }); + + fs.rmSync(extractDir, { recursive: true, force: true }); + + return { tag, downloadUrl }; +} + +async function main() { + const existing = validateExistingRuntime(); + + if (checkOnly) { + if (!existing.ok) { + throw new Error(existing.reason); + } + console.log("[presentation-export] OK"); + console.log(` - ${existing.entrypointPath}`); + console.log(` - ${existing.converterPath}`); + console.log(` - ${existing.currentConverterPath}`); + return; + } + + if (existing.ok && !forceDownload) { + console.log("[presentation-export] Using existing runtime:"); + console.log(` - ${existing.entrypointPath}`); + console.log(` - ${existing.converterPath}`); + console.log(` - ${existing.currentConverterPath}`); + return; + } + + const { tag, downloadUrl } = await downloadAndInstallRuntime(); + const installed = validateExistingRuntime(); + if (!installed.ok) { + throw new Error(installed.reason); + } + + console.log("[presentation-export] Synced successfully:"); + console.log(` - release: ${tag}`); + console.log(` - url: ${downloadUrl}`); + console.log(` - ${installed.entrypointPath}`); + console.log(` - ${installed.converterPath}`); + console.log(` - ${installed.currentConverterPath}`); +} + +main().catch((err) => { + console.error(`[presentation-export] ${err.message}`); + process.exit(1); +}); diff --git a/scripts/user-config-env.mjs b/scripts/user-config-env.mjs new file mode 100644 index 0000000..9e453ba --- /dev/null +++ b/scripts/user-config-env.mjs @@ -0,0 +1,213 @@ +const VALID_LLM_PROVIDERS = new Set([ + "ollama", + "openai", + "deepseek", + "google", + "vertex", + "azure", + "bedrock", + "openrouter", + "fireworks", + "together", + "cerebras", + "anthropic", + "litellm", + "lmstudio", + "custom", + "codex", +]); + +const USER_CONFIG_ENV_KEYS = [ + "LLM", + "OPENAI_API_KEY", + "OPENAI_MODEL", + "DEEPSEEK_API_KEY", + "DEEPSEEK_MODEL", + "DEEPSEEK_BASE_URL", + "GOOGLE_API_KEY", + "GOOGLE_MODEL", + "VERTEX_API_KEY", + "VERTEX_MODEL", + "VERTEX_PROJECT", + "VERTEX_LOCATION", + "VERTEX_BASE_URL", + "AZURE_OPENAI_API_KEY", + "AZURE_OPENAI_MODEL", + "AZURE_OPENAI_ENDPOINT", + "AZURE_OPENAI_BASE_URL", + "AZURE_OPENAI_API_VERSION", + "AZURE_OPENAI_DEPLOYMENT", + "BEDROCK_REGION", + "BEDROCK_API_KEY", + "BEDROCK_AWS_ACCESS_KEY_ID", + "BEDROCK_AWS_SECRET_ACCESS_KEY", + "BEDROCK_AWS_SESSION_TOKEN", + "BEDROCK_PROFILE_NAME", + "BEDROCK_MODEL", + "OPENROUTER_API_KEY", + "OPENROUTER_MODEL", + "OPENROUTER_BASE_URL", + "FIREWORKS_API_KEY", + "FIREWORKS_MODEL", + "FIREWORKS_BASE_URL", + "TOGETHER_API_KEY", + "TOGETHER_MODEL", + "TOGETHER_BASE_URL", + "CEREBRAS_API_KEY", + "CEREBRAS_MODEL", + "CEREBRAS_BASE_URL", + "OLLAMA_URL", + "OLLAMA_MODEL", + "ANTHROPIC_API_KEY", + "ANTHROPIC_MODEL", + "CUSTOM_LLM_URL", + "CUSTOM_LLM_API_KEY", + "CUSTOM_MODEL", + "LITELLM_BASE_URL", + "LITELLM_API_KEY", + "LITELLM_MODEL", + "LMSTUDIO_BASE_URL", + "LMSTUDIO_API_KEY", + "LMSTUDIO_MODEL", + "PEXELS_API_KEY", + "PIXABAY_API_KEY", + "IMAGE_PROVIDER", + "DISABLE_IMAGE_GENERATION", + "DISABLE_THINKING", + "EXTENDED_REASONING", + "WEB_GROUNDING", + "WEB_SEARCH_PROVIDER", + "WEB_SEARCH_MAX_RESULTS", + "SEARXNG_BASE_URL", + "TAVILY_API_KEY", + "EXA_API_KEY", + "BRAVE_SEARCH_API_KEY", + "SERPER_API_KEY", + "USE_CUSTOM_URL", + "COMFYUI_URL", + "COMFYUI_WORKFLOW", + "OPEN_WEBUI_IMAGE_URL", + "OPEN_WEBUI_IMAGE_API_KEY", + "OPENAI_COMPAT_IMAGE_BASE_URL", + "OPENAI_COMPAT_IMAGE_API_KEY", + "OPENAI_COMPAT_IMAGE_MODEL", + "DALL_E_3_QUALITY", + "GPT_IMAGE_1_5_QUALITY", + "CODEX_MODEL", + "CODEX_ACCESS_TOKEN", + "CODEX_REFRESH_TOKEN", + "CODEX_TOKEN_EXPIRES", + "CODEX_ACCOUNT_ID", + "CODEX_USERNAME", + "CODEX_EMAIL", + "CODEX_IS_PRO", + "DISABLE_ANONYMOUS_TRACKING", +]; + +const BOOLEAN_CONFIG_KEYS = new Set([ + "DISABLE_IMAGE_GENERATION", + "DISABLE_THINKING", + "EXTENDED_REASONING", + "WEB_GROUNDING", + "USE_CUSTOM_URL", + "CODEX_IS_PRO", +]); + +const envValue = (env, key) => { + const value = env[key]; + return value === undefined || value === "" ? undefined : value; +}; + +const parseBooleanLike = (value) => { + if (typeof value === "boolean") { + return value; + } + if (typeof value !== "string") { + return undefined; + } + + const normalized = value.trim().toLowerCase(); + if (["1", "true", "yes", "on"].includes(normalized)) { + return true; + } + if (["0", "false", "no", "off"].includes(normalized)) { + return false; + } + return undefined; +}; + +const readUserConfigEnv = (env) => { + const config = {}; + for (const key of USER_CONFIG_ENV_KEYS) { + const value = envValue(env, key); + if (value !== undefined) { + config[key] = value; + } + } + return config; +}; + +const normalizeConfigTypes = (config) => { + for (const key of BOOLEAN_CONFIG_KEYS) { + const parsedValue = parseBooleanLike(config[key]); + if (parsedValue !== undefined) { + config[key] = parsedValue; + } + } + return config; +}; + +const normalizeImageConfig = (config) => { + if (config.DISABLE_IMAGE_GENERATION || config.IMAGE_PROVIDER) { + return config; + } + + if ( + config.OPENAI_COMPAT_IMAGE_BASE_URL && + config.OPENAI_COMPAT_IMAGE_API_KEY && + config.OPENAI_COMPAT_IMAGE_MODEL + ) { + config.IMAGE_PROVIDER = "openai_compatible"; + } else if (config.OPEN_WEBUI_IMAGE_URL) { + config.IMAGE_PROVIDER = "open_webui"; + } else if (config.COMFYUI_URL) { + config.IMAGE_PROVIDER = "comfyui"; + } else if (config.PEXELS_API_KEY) { + config.IMAGE_PROVIDER = "pexels"; + } else if (config.PIXABAY_API_KEY) { + config.IMAGE_PROVIDER = "pixabay"; + } else if (config.LLM === "openai" && config.OPENAI_API_KEY) { + config.IMAGE_PROVIDER = "gpt-image-1.5"; + config.GPT_IMAGE_1_5_QUALITY = config.GPT_IMAGE_1_5_QUALITY || "medium"; + } else if (config.LLM === "google" && config.GOOGLE_API_KEY) { + config.IMAGE_PROVIDER = "gemini_flash"; + } else { + config.DISABLE_IMAGE_GENERATION = true; + } + + return config; +}; + +const sanitizeExistingConfig = (existingConfig) => { + const config = { ...existingConfig }; + if (config.LLM && !VALID_LLM_PROVIDERS.has(config.LLM)) { + delete config.LLM; + } + return config; +}; + +const buildUserConfigFromEnv = (existingConfig = {}, env = process.env) => + normalizeImageConfig( + normalizeConfigTypes({ + ...sanitizeExistingConfig(existingConfig), + ...readUserConfigEnv(env), + }) + ); + +export { + buildUserConfigFromEnv, + parseBooleanLike, + readUserConfigEnv, + USER_CONFIG_ENV_KEYS, + VALID_LLM_PROVIDERS, +}; diff --git a/servers/fastapi/.coverage b/servers/fastapi/.coverage new file mode 100644 index 0000000..719223c Binary files /dev/null and b/servers/fastapi/.coverage differ diff --git a/servers/fastapi/.python-version b/servers/fastapi/.python-version new file mode 100644 index 0000000..2c07333 --- /dev/null +++ b/servers/fastapi/.python-version @@ -0,0 +1 @@ +3.11 diff --git a/servers/fastapi/LICENSE b/servers/fastapi/LICENSE new file mode 100644 index 0000000..5566576 --- /dev/null +++ b/servers/fastapi/LICENSE @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2025 presenton + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/servers/fastapi/NOTICE b/servers/fastapi/NOTICE new file mode 100644 index 0000000..ba5df53 --- /dev/null +++ b/servers/fastapi/NOTICE @@ -0,0 +1,26825 @@ +------------------------------------- +PYTHON PACKAGES +------------------------------------- +aioquic +1.2.0 +BSD-3-Clause +Jeremy Lainé + +Copyright (c) Jeremy Lainé. +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 aioquic 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 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. + +argon2-cffi +23.1.0 + +Hynek Schlawack + +The MIT License (MIT) + +Copyright (c) 2015 Hynek Schlawack and the argon2-cffi 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. + +argon2-cffi-bindings +25.1.0 + +Hynek Schlawack + +The MIT License (MIT) + +Copyright (c) 2021 Hynek Schlawack + +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. + +asgiref +3.8.1 +BSD-3-Clause +Django Software Foundation + +Copyright (c) Django Software Foundation and individual 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: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. 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. + + 3. Neither the name of Django 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. + +attrs +25.3.0 + +Hynek Schlawack + +The MIT License (MIT) + +Copyright (c) 2015 Hynek Schlawack and the attrs 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. + +blinker +1.9.0 + +Jason Kirtland + +Copyright 2010 Jason Kirtland + +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. + +Brotli +1.1.0 +MIT +The Brotli Authors + +Copyright (c) 2009, 2010, 2013-2016 by the Brotli Authors. + +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. + +certifi +2025.8.3 +MPL-2.0 +Kenneth Reitz + +This package contains a modified version of ca-bundle.crt: + +ca-bundle.crt -- Bundle of CA Root Certificates + +This is a bundle of X.509 certificates of public Certificate Authorities +(CA). These were automatically extracted from Mozilla's root certificates +file (certdata.txt). This file can be found in the mozilla source tree: +https://hg.mozilla.org/mozilla-central/file/tip/security/nss/lib/ckfw/builtins/certdata.txt +It contains the certificates in PEM format and therefore +can be directly used with curl / libcurl / php_curl, or with +an Apache+mod_ssl webserver for SSL client authentication. +Just configure this file as the SSLCACertificateFile.# + +***** BEGIN LICENSE BLOCK ***** +This Source Code Form is subject to the terms of the Mozilla Public License, +v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain +one at http://mozilla.org/MPL/2.0/. + +***** END LICENSE BLOCK ***** +@(#) $RCSfile: certdata.txt,v $ $Revision: 1.80 $ $Date: 2011/11/03 15:11:58 $ + +cffi +1.17.1 +MIT +Armin Rigo, Maciej Fijalkowski + +Except when otherwise stated (look for LICENSE files in directories or +information at the beginning of each file) all software and +documentation is licensed as follows: + + The 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. + +click +8.2.1 + + + +Copyright 2014 Pallets + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. 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. + +3. Neither the name of the copyright holder 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 +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. + +cryptography +44.0.3 +Apache-2.0 OR BSD-3-Clause +The cryptography developers + +This software is made available under the terms of *either* of the licenses +found in LICENSE.APACHE or LICENSE.BSD. Contributions to cryptography are made +under the terms of *both* these licenses. + +Flask +3.1.0 + + + +Copyright 2010 Pallets + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. 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. + +3. Neither the name of the copyright holder 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 +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. + +h11 +0.16.0 +MIT +Nathaniel J. Smith + +The MIT License (MIT) + +Copyright (c) 2016 Nathaniel J. Smith and other 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. + +h2 +4.1.0 +MIT License +Cory Benfield + +The MIT License (MIT) + +Copyright (c) 2015-2020 Cory Benfield and 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. + +hpack +4.1.0 +The MIT License (MIT) + +Copyright (c) 2014 Cory Benfield + +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. +Cory Benfield + +The MIT License (MIT) + +Copyright (c) 2014 Cory Benfield + +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. + +hyperframe +6.1.0 +The MIT License (MIT) + +Copyright (c) 2014 Cory Benfield + +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. +Cory Benfield + +The MIT License (MIT) + +Copyright (c) 2014 Cory Benfield + +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. + +itsdangerous +2.2.0 + + + +Copyright 2011 Pallets + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. 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. + +3. Neither the name of the copyright holder 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 +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. + +Jinja2 +3.1.6 + + + +Copyright 2007 Pallets + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. 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. + +3. Neither the name of the copyright holder 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 +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. + +kaitaistruct +0.10 +MIT +Kaitai Project + +MIT License + +Copyright (c) 2015-2022 Kaitai Project + +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. + +ldap3 +2.9.1 +LGPL v3 +Giovanni Cannata + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU Lesser General Public License as published +by the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public License +along with this program in the COPYING and COPYING.LESSER files. +If not, see . + +MarkupSafe +3.0.2 +Copyright 2010 Pallets + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +1. Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + +2. 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. + +3. Neither the name of the copyright holder 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 +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. + + +Copyright 2010 Pallets + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. 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. + +3. Neither the name of the copyright holder 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 +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. + +mitmproxy +12.1.1 +Copyright (c) 2013, Aldo Cortesi. 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. +Aldo Cortesi + +Copyright (c) 2013, Aldo Cortesi. 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. + +mitmproxy_linux +0.12.7 +MIT +Fabio Valentini , Maximilian Hils + +License field from METADATA: +MIT + +mitmproxy_rs +0.12.7 +MIT +Fabio Valentini , Maximilian Hils + +License field from METADATA: +MIT + +msgpack +1.1.0 +Apache 2.0 +Inada Naoki + +Copyright (C) 2008-2011 INADA Naoki + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +passlib +1.7.4 +BSD +Eli Collins + +.. -*- restructuredtext -*- + +===================== +Copyrights & Licenses +===================== + +Credits +======= +Passlib is primarily developed by Eli Collins. + +Special thanks to Darin Gordon for testing and +feedback on the :mod:`passlib.totp` module. + +License for Passlib +=================== +Passlib is (c) `Assurance Technologies `_, +and is released under the `BSD license `_:: + + Passlib + Copyright (c) 2008-2020 Assurance Technologies, LLC. + 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 Assurance Technologies, nor the names of the + 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. + +Licenses for incorporated software +================================== +Passlib contains some code derived from the following sources: + +MD5-Crypt +--------- +The source file ``passlib/handlers/md5_crypt.py`` contains code derived from the original +`FreeBSD md5-crypt implementation `_, +which is available under the following license:: + + "THE BEER-WARE LICENSE" (Revision 42): + wrote this file. As long as you retain this notice you + can do whatever you want with this stuff. If we meet some day, and you think + this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp + + converted to python May 2008 + by Eli Collins + +DES +--- +The source file ``passlib/crypto/des.py`` contains code derived from +`UnixCrypt.java `_, +a pure-java implementation of the historic unix-crypt password hash algorithm. +It is available under the following license:: + + UnixCrypt.java 0.9 96/11/25 + Copyright (c) 1996 Aki Yoshida. All rights reserved. + Permission to use, copy, modify and distribute this software + for non-commercial or commercial purposes and without fee is + hereby granted provided that this copyright notice appears in + all copies. + + modified April 2001 + by Iris Van den Broeke, Daniel Deville + + modified Aug 2005 + by Greg Wilkins (gregw) + + converted to python Jun 2009 + by Eli Collins + +jBCrypt +------- +The source file ``passlib/crypto/_blowfish/base.py`` contains code derived +from `jBcrypt 0.2 `_, a Java +implementation of the BCrypt password hash algorithm. It is available under +a BSD/ISC license:: + + Copyright (c) 2006 Damien Miller + + Permission to use, copy, modify, and 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 TORTUOUS ACTION, ARISING OUT OF + OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +Wordsets +-------- +The EFF wordsets in ``passlib/_data/wordsets`` are (c) 2016 the Electronic Freedom Foundation. +They were downloaded from ``_, +and are released under the `Creative Commons License `_. + +pip +25.2 + +The pip developers + +@Switch01 +A_Rog +Aakanksha Agrawal +Abhinav Sagar +ABHYUDAY PRATAP SINGH +abs51295 +AceGentile +Adam Chainz +Adam Tse +Adam Turner +Adam Wentz +admin +Adolfo Ochagavía +Adrien Morison +Agus +ahayrapetyan +Ahilya +AinsworthK +Akash Srivastava +Alan Yee +Albert Tugushev +Albert-Guan +albertg +Alberto Sottile +Aleks Bunin +Ales Erjavec +Alethea Flowers +Alex Gaynor +Alex Grönholm +Alex Hedges +Alex Loosley +Alex Morega +Alex Stachowiak +Alexander Regueiro +Alexander Shtyrov +Alexandre Conrad +Alexey Popravka +Aleš Erjavec +Alli +Ami Fischman +Ananya Maiti +Anatoly Techtonik +Anders Kaseorg +Andre Aguiar +Andreas Lutro +Andrei Geacar +Andrew Gaul +Andrew Shymanel +Andrey Bienkowski +Andrey Bulgakov +Andrés Delfino +Andy Freeland +Andy Kluger +Ani Hayrapetyan +Aniruddha Basak +Anish Tambe +Anrs Hu +Anthony Sottile +Antoine Musso +Anton Ovchinnikov +Anton Patrushev +Anton Zelenov +Antonio Alvarado Hernandez +Antony Lee +Antti Kaihola +Anubhav Patel +Anudit Nagar +Anuj Godase +AQNOUCH Mohammed +AraHaan +arena +arenasys +Arindam Choudhury +Armin Ronacher +Arnon Yaari +Artem +Arun Babu Neelicattu +Ashley Manton +Ashwin Ramaswami +atse +Atsushi Odagiri +Avinash Karhana +Avner Cohen +Awit (Ah-Wit) Ghirmai +Baptiste Mispelon +Barney Gale +barneygale +Bartek Ogryczak +Bastian Venthur +Ben Bodenmiller +Ben Darnell +Ben Hoyt +Ben Mares +Ben Rosser +Bence Nagy +Benjamin Peterson +Benjamin VanEvery +Benoit Pierre +Berker Peksag +Bernard +Bernard Tyers +Bernardo B. Marques +Bernhard M. Wiedemann +Bertil Hatt +Bhavam Vidyarthi +Blazej Michalik +Bogdan Opanchuk +BorisZZZ +Brad Erickson +Bradley Ayers +Bradley Reynolds +Branch Vincent +Brandon L. Reiss +Brandt Bucher +Brannon Dorsey +Brett Randall +Brett Rosen +Brian Cristante +Brian Rosner +briantracy +BrownTruck +Bruno Oliveira +Bruno Renié +Bruno S +Bstrdsmkr +Buck Golemon +burrows +Bussonnier Matthias +bwoodsend +c22 +Caleb Brown +Caleb Martinez +Calvin Smith +Carl Meyer +Carlos Liam +Carol Willing +Carter Thayer +Cass +Chandrasekhar Atina +Charlie Marsh +charwick +Chih-Hsuan Yen +Chris Brinker +Chris Hunt +Chris Jerdonek +Chris Kuehl +Chris Markiewicz +Chris McDonough +Chris Pawley +Chris Pryer +Chris Wolfe +Christian Clauss +Christian Heimes +Christian Oudard +Christoph Reiter +Christopher Hunt +Christopher Snyder +chrysle +cjc7373 +Clark Boylan +Claudio Jolowicz +Clay McClure +Cody +Cody Soyland +Colin Watson +Collin Anderson +Connor Osborn +Cooper Lees +Cooper Ry Lees +Cory Benfield +Cory Wright +Craig Kerstiens +Cristian Sorinel +Cristina +Cristina Muñoz +ctg123 +Curtis Doty +cytolentino +Daan De Meyer +Dale +Damian +Damian Quiroga +Damian Shaw +Dan Black +Dan Savilonis +Dan Sully +Dane Hillard +daniel +Daniel Collins +Daniel Hahler +Daniel Holth +Daniel Jost +Daniel Katz +Daniel Shaulov +Daniele Esposti +Daniele Nicolodi +Daniele Procida +Daniil Konovalenko +Danny Hermes +Danny McClanahan +Darren Kavanagh +Dav Clark +Dave Abrahams +Dave Jones +David Aguilar +David Black +David Bordeynik +David Caro +David D Lowe +David Evans +David Hewitt +David Linke +David Poggi +David Poznik +David Pursehouse +David Runge +David Tucker +David Wales +Davidovich +ddelange +Deepak Sharma +Deepyaman Datta +Denis Roussel (ACSONE) +Denise Yu +dependabot[bot] +derwolfe +Desetude +developer +Devesh Kumar +Devesh Kumar Singh +devsagul +Diego Caraballo +Diego Ramirez +DiegoCaraballo +Dimitri Merejkowsky +Dimitri Papadopoulos +Dimitri Papadopoulos Orfanos +Dirk Stolle +Dmitry Gladkov +Dmitry Volodin +Domen Kožar +Dominic Davis-Foster +Donald Stufft +Dongweiming +doron zarhi +Dos Moonen +Douglas Thor +DrFeathers +Dustin Ingram +Dustin Rodrigues +Dwayne Bailey +Ed Morley +Edgar Ramírez +Edgar Ramírez Mondragón +Ee Durbin +Efflam Lemaillet +efflamlemaillet +Eitan Adler +ekristina +elainechan +Eli Schwartz +Elisha Hollander +Ellen Marie Dash +Emil Burzo +Emil Styrke +Emmanuel Arias +Endoh Takanao +enoch +Erdinc Mutlu +Eric Cousineau +Eric Gillingham +Eric Hanchrow +Eric Hopper +Erik M. Bray +Erik Rose +Erwin Janssen +Eugene Vereshchagin +everdimension +Federico +Felipe Peter +Felix Yan +fiber-space +Filip Kokosiński +Filipe Laíns +Finn Womack +finnagin +Flavio Amurrio +Florian Briand +Florian Rathgeber +Francesco +Francesco Montesano +Fredrik Orderud +Fredrik Roubert +Frost Ming +Gabriel Curio +Gabriel de Perthuis +Garry Polley +gavin +gdanielson +Gene Wood +Geoffrey Sneddon +George Margaritis +George Song +Georgi Valkov +Georgy Pchelkin +ghost +Giftlin Rajaiah +gizmoguy1 +gkdoc +Godefroid Chapelle +Gopinath M +GOTO Hayato +gousaiyang +gpiks +Greg Roodt +Greg Ward +Guilherme Espada +Guillaume Seguin +gutsytechster +Guy Rozendorn +Guy Tuval +gzpan123 +Hanjun Kim +Hari Charan +Harsh Vardhan +harupy +Harutaka Kawamura +hauntsaninja +Henrich Hartzer +Henry Schreiner +Herbert Pfennig +Holly Stotelmyer +Honnix +Hsiaoming Yang +Hugo Lopes Tavares +Hugo van Kemenade +Hugues Bruant +Hynek Schlawack +iamsrp-deshaw +Ian Bicking +Ian Cordasco +Ian Lee +Ian Stapleton Cordasco +Ian Wienand +Igor Kuzmitshov +Igor Sobreira +Ikko Ashimine +Ilan Schnell +Illia Volochii +Ilya Baryshev +Inada Naoki +Ionel Cristian Mărieș +Ionel Maries Cristian +Itamar Turner-Trauring +iTrooz +Ivan Pozdeev +J. Nick Koston +Jacob Kim +Jacob Walls +Jaime Sanz +Jake Lishman +jakirkham +Jakub Kuczys +Jakub Stasiak +Jakub Vysoky +Jakub Wilk +James Cleveland +James Curtin +James Firth +James Gerity +James Polley +Jan Pokorný +Jannis Leidel +Jarek Potiuk +jarondl +Jason Curtis +Jason R. Coombs +JasonMo +JasonMo1 +Jay Graves +Jean Abou Samra +Jean-Christophe Fillion-Robin +Jeff Barber +Jeff Dairiki +Jeff Widman +Jelmer Vernooij +jenix21 +Jeremy Fleischman +Jeremy Stanley +Jeremy Zafran +Jesse Rittner +Jiashuo Li +Jim Fisher +Jim Garrison +Jinzhe Zeng +Jiun Bae +Jivan Amara +Joa +Joe Bylund +Joe Michelini +Johannes Altmanninger +John Paton +John Sirois +John T. Wodder II +John-Scott Atlakson +johnthagen +Jon Banafato +Jon Dufresne +Jon Parise +Jonas Nockert +Jonathan Herbert +Joonatan Partanen +Joost Molenaar +Jorge Niedbalski +Joseph Bylund +Joseph Long +Josh Bronson +Josh Cannon +Josh Hansen +Josh Schneier +Joshua +JoshuaPerdue +Juan Luis Cano Rodríguez +Juanjo Bazán +Judah Rand +Julian Berman +Julian Gethmann +Julien Demoor +July Tikhonov +Jussi Kukkonen +Justin van Heek +jwg4 +Jyrki Pulliainen +Kai Chen +Kai Mueller +Kamal Bin Mustafa +Karolina Surma +kasium +kaustav haldar +keanemind +Keith Maxwell +Kelsey Hightower +Kenneth Belitzky +Kenneth Reitz +Kevin Burke +Kevin Carter +Kevin Frommelt +Kevin R Patterson +Kexuan Sun +Kit Randel +Klaas van Schelven +KOLANICH +konstin +kpinc +Krishan Bhasin +Krishna Oza +Kumar McMillan +Kuntal Majumder +Kurt McKee +Kyle Persohn +lakshmanaram +Laszlo Kiss-Kollar +Laurent Bristiel +Laurent LAPORTE +Laurie O +Laurie Opperman +layday +Leon Sasson +Lev Givon +Lincoln de Sousa +Lipis +lorddavidiii +Loren Carvalho +Lucas Cimon +Ludovic Gasc +Luis Medel +Lukas Geiger +Lukas Juhrich +Luke Macken +Luo Jiebin +luojiebin +luz.paz +László Kiss Kollár +M00nL1ght +Malcolm Smith +Marc Abramowitz +Marc Tamlyn +Marcus Smith +Mariatta +Mark Kohler +Mark McLoughlin +Mark Williams +Markus Hametner +Martey Dodoo +Martin Fischer +Martin Häcker +Martin Pavlasek +Masaki +Masklinn +Matej Stuchlik +Mathew Jennings +Mathieu Bridon +Mathieu Kniewallner +Matt Bacchi +Matt Good +Matt Maker +Matt Robenolt +Matt Wozniski +matthew +Matthew Einhorn +Matthew Feickert +Matthew Gilliard +Matthew Hughes +Matthew Iversen +Matthew Treinish +Matthew Trumbell +Matthew Willson +Matthias Bussonnier +mattip +Maurits van Rees +Max W Chase +Maxim Kurnikov +Maxime Rouyrre +mayeut +mbaluna +Md Sujauddin Sekh +mdebi +memoselyk +meowmeowcat +Michael +Michael Aquilina +Michael E. Karpeles +Michael Klich +Michael Mintz +Michael Williamson +michaelpacer +Michał Górny +Mickaël Schoentgen +Miguel Araujo Perez +Mihir Singh +Mike +Mike Hendricks +Min RK +MinRK +Miro Hrončok +Monica Baluna +montefra +Monty Taylor +morotti +mrKazzila +Muha Ajjan +Nadav Wexler +Nahuel Ambrosini +Nate Coraor +Nate Prewitt +Nathan Houghton +Nathaniel J. Smith +Nehal J Wani +Neil Botelho +Nguyễn Gia Phong +Nicholas Serra +Nick Coghlan +Nick Stenning +Nick Timkovich +Nicolas Bock +Nicole Harris +Nikhil Benesch +Nikhil Ladha +Nikita Chepanov +Nikolay Korolev +Nipunn Koorapati +Nitesh Sharma +Niyas Sait +Noah +Noah Gorny +Nowell Strite +NtaleGrey +nucccc +nvdv +OBITORASU +Ofek Lev +ofrinevo +Oleg Burnaev +Oliver Freund +Oliver Jeeves +Oliver Mannion +Oliver Tonnhofer +Olivier Girardot +Olivier Grisel +Ollie Rutherfurd +OMOTO Kenji +Omry Yadan +onlinejudge95 +Oren Held +Oscar Benjamin +Oz N Tiram +Pachwenko +Patrick Dubroy +Patrick Jenkins +Patrick Lawson +patricktokeeffe +Patrik Kopkan +Paul Ganssle +Paul Kehrer +Paul Moore +Paul Nasrat +Paul Oswald +Paul van der Linden +Paulus Schoutsen +Pavel Safronov +Pavithra Eswaramoorthy +Pawel Jasinski +Paweł Szramowski +Pekka Klärck +Peter Gessler +Peter Lisák +Peter Shen +Peter Waller +Petr Viktorin +petr-tik +Phaneendra Chiruvella +Phil Elson +Phil Freo +Phil Pennock +Phil Whelan +Philip Jägenstedt +Philip Molloy +Philippe Ombredanne +Pi Delport +Pierre-Yves Rofes +Pieter Degroote +pip +Prabakaran Kumaresshan +Prabhjyotsing Surjit Singh Sodhi +Prabhu Marappan +Pradyun Gedam +Prashant Sharma +Pratik Mallya +pre-commit-ci[bot] +Preet Thakkar +Preston Holmes +Przemek Wrzos +Pulkit Goyal +q0w +Qiangning Hong +Qiming Xu +qraqras +Quentin Lee +Quentin Pradet +R. David Murray +Rafael Caricio +Ralf Schmitt +Ran Benita +Randy Döring +Razzi Abuissa +rdb +Reece Dunham +Remi Rampin +Rene Dudfield +Riccardo Magliocchetti +Riccardo Schirone +Richard Jones +Richard Si +Ricky Ng-Adam +Rishi +rmorotti +RobberPhex +Robert Collins +Robert McGibbon +Robert Pollak +Robert T. McGibbon +robin elisha robinson +Rodney, Tiara +Roey Berman +Rohan Jain +Roman Bogorodskiy +Roman Donchenko +Romuald Brunet +ronaudinho +Ronny Pfannschmidt +Rory McCann +Ross Brattain +Roy Wellington Ⅳ +Ruairidh MacLeod +Russell Keith-Magee +Ryan Shepherd +Ryan Wooden +ryneeverett +Ryuma Asai +S. Guliaev +Sachi King +Salvatore Rinchiera +sandeepkiran-js +Sander Van Balen +Savio Jomton +schlamar +Scott Kitterman +Sean +seanj +Sebastian Jordan +Sebastian Schaetz +Segev Finer +SeongSoo Cho +Sepehr Rasouli +sepehrrasooli +Sergey Vasilyev +Seth Michael Larson +Seth Woodworth +Shahar Epstein +Shantanu +shenxianpeng +shireenrao +Shivansh-007 +Shixian Sheng +Shlomi Fish +Shovan Maity +Simeon Visser +Simon Cross +Simon Pichugin +sinoroc +sinscary +snook92 +socketubs +Sorin Sbarnea +Srinivas Nyayapati +Srishti Hegde +Stavros Korokithakis +Stefan Scherfke +Stefano Rivera +Stephan Erb +Stephen Payne +Stephen Rosen +stepshal +Steve (Gadget) Barnes +Steve Barnes +Steve Dower +Steve Kowalik +Steven Myint +Steven Silvester +stonebig +studioj +Stéphane Bidoul +Stéphane Bidoul (ACSONE) +Stéphane Klein +Sumana Harihareswara +Surbhi Sharma +Sviatoslav Sydorenko +Sviatoslav Sydorenko (Святослав Сидоренко) +Swat009 +Sylvain +Takayuki SHIMIZUKAWA +Taneli Hukkinen +tbeswick +Thiago +Thijs Triemstra +Thomas Fenzl +Thomas Grainger +Thomas Guettler +Thomas Johansson +Thomas Kluyver +Thomas Smith +Thomas VINCENT +Tim D. Smith +Tim Gates +Tim Harder +Tim Heap +tim smith +tinruufu +Tobias Hermann +Tom Forbes +Tom Freudenheim +Tom V +Tomas Hrnciar +Tomas Orsava +Tomer Chachamu +Tommi Enenkel | AnB +Tomáš Hrnčiar +Tony Beswick +Tony Narlock +Tony Zhaocheng Tan +TonyBeswick +toonarmycaptain +Toshio Kuratomi +toxinu +Travis Swicegood +Tushar Sadhwani +Tzu-ping Chung +Valentin Haenel +Victor Stinner +victorvpaulo +Vikram - Google +Viktor Szépe +Ville Skyttä +Vinay Sajip +Vincent Philippon +Vinicyus Macedo +Vipul Kumar +Vitaly Babiy +Vladimir Fokow +Vladimir Rutsky +W. Trevor King +Wil Tan +Wilfred Hughes +William Edwards +William ML Leslie +William T Olson +William Woodruff +Wilson Mo +wim glenn +Winson Luk +Wolfgang Maier +Wu Zhenyu +XAMES3 +Xavier Fernandez +Xianpeng Shen +xoviat +xtreak +YAMAMOTO Takashi +Yen Chi Hsuan +Yeray Diaz Diaz +Yoval P +Yu Jian +Yuan Jing Vincent Yan +Yuki Kobayashi +Yusuke Hayashi +zackzack38 +Zearin +Zhiping Deng +ziebam +Zvezdan Petkovic +Łukasz Langa +Роман Донченко +Семён Марьясин + +proxy.py +2.4.10 +'BSD' +Abhinav Singh + +License field from METADATA: +'BSD' + +publicsuffix2 +2.20191221 +MIT and MPL-2.0 +nexB Inc., Tomaz Solc, David Wilson and others. + +The Public Suffix List vendored in this distribution has been downloaded +from http://publicsuffix.org/public_suffix_list.dat +This data file is licensed under the MPL-2.0 license. +http://mozilla.org/MPL/2.0/ + +Mozilla Public License Version 2.0 +================================== + +1. Definitions +-------------- + +1.1. "Contributor" + means each individual or legal entity that creates, contributes to + the creation of, or owns Covered Software. + +1.2. "Contributor Version" + means the combination of the Contributions of others (if any) used + by a Contributor and that particular Contributor's Contribution. + +1.3. "Contribution" + means Covered Software of a particular Contributor. + +1.4. "Covered Software" + means Source Code Form to which the initial Contributor has attached + the notice in Exhibit A, the Executable Form of such Source Code + Form, and Modifications of such Source Code Form, in each case + including portions thereof. + +1.5. "Incompatible With Secondary Licenses" + means + + (a) that the initial Contributor has attached the notice described + in Exhibit B to the Covered Software; or + + (b) that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the + terms of a Secondary License. + +1.6. "Executable Form" + means any form of the work other than Source Code Form. + +1.7. "Larger Work" + means a work that combines Covered Software with other material, in + a separate file or files, that is not Covered Software. + +1.8. "License" + means this document. + +1.9. "Licensable" + means having the right to grant, to the maximum extent possible, + whether at the time of the initial grant or subsequently, any and + all of the rights conveyed by this License. + +1.10. "Modifications" + means any of the following: + + (a) any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered + Software; or + + (b) any new file in Source Code Form that contains any Covered + Software. + +1.11. "Patent Claims" of a Contributor + means any patent claim(s), including without limitation, method, + process, and apparatus claims, in any patent Licensable by such + Contributor that would be infringed, but for the grant of the + License, by the making, using, selling, offering for sale, having + made, import, or transfer of either its Contributions or its + Contributor Version. + +1.12. "Secondary License" + means either the GNU General Public License, Version 2.0, the GNU + Lesser General Public License, Version 2.1, the GNU Affero General + Public License, Version 3.0, or any later versions of those + licenses. + +1.13. "Source Code Form" + means the form of the work preferred for making modifications. + +1.14. "You" (or "Your") + means an individual or a legal entity exercising rights under this + License. For legal entities, "You" includes any entity that + controls, is controlled by, or is under common control with You. For + purposes of this definition, "control" means (a) the power, direct + or indirect, to cause the direction or management of such entity, + whether by contract or otherwise, or (b) ownership of more than + fifty percent (50%) of the outstanding shares or beneficial + ownership of such entity. + +2. License Grants and Conditions +-------------------------------- + +2.1. Grants + +Each Contributor hereby grants You a world-wide, royalty-free, +non-exclusive license: + +(a) under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or + as part of a Larger Work; and + +(b) under Patent Claims of such Contributor to make, use, sell, offer + for sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. + +2.2. Effective Date + +The licenses granted in Section 2.1 with respect to any Contribution +become effective for each Contribution on the date the Contributor first +distributes such Contribution. + +2.3. Limitations on Grant Scope + +The licenses granted in this Section 2 are the only rights granted under +this License. No additional rights or licenses will be implied from the +distribution or licensing of Covered Software under this License. +Notwithstanding Section 2.1(b) above, no patent license is granted by a +Contributor: + +(a) for any code that a Contributor has removed from Covered Software; + or + +(b) for infringements caused by: (i) Your and any other third party's + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or + +(c) under Patent Claims infringed by Covered Software in the absence of + its Contributions. + +This License does not grant any rights in the trademarks, service marks, +or logos of any Contributor (except as may be necessary to comply with +the notice requirements in Section 3.4). + +2.4. Subsequent Licenses + +No Contributor makes additional grants as a result of Your choice to +distribute the Covered Software under a subsequent version of this +License (see Section 10.2) or under the terms of a Secondary License (if +permitted under the terms of Section 3.3). + +2.5. Representation + +Each Contributor represents that the Contributor believes its +Contributions are its original creation(s) or it has sufficient rights +to grant the rights to its Contributions conveyed by this License. + +2.6. Fair Use + +This License is not intended to limit any rights You have under +applicable copyright doctrines of fair use, fair dealing, or other +equivalents. + +2.7. Conditions + +Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted +in Section 2.1. + +3. Responsibilities +------------------- + +3.1. Distribution of Source Form + +All distribution of Covered Software in Source Code Form, including any +Modifications that You create or to which You contribute, must be under +the terms of this License. You must inform recipients that the Source +Code Form of the Covered Software is governed by the terms of this +License, and how they can obtain a copy of this License. You may not +attempt to alter or restrict the recipients' rights in the Source Code +Form. + +3.2. Distribution of Executable Form + +If You distribute Covered Software in Executable Form then: + +(a) such Covered Software must also be made available in Source Code + Form, as described in Section 3.1, and You must inform recipients of + the Executable Form how they can obtain a copy of such Source Code + Form by reasonable means in a timely manner, at a charge no more + than the cost of distribution to the recipient; and + +(b) You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter + the recipients' rights in the Source Code Form under this License. + +3.3. Distribution of a Larger Work + +You may create and distribute a Larger Work under terms of Your choice, +provided that You also comply with the requirements of this License for +the Covered Software. If the Larger Work is a combination of Covered +Software with a work governed by one or more Secondary Licenses, and the +Covered Software is not Incompatible With Secondary Licenses, this +License permits You to additionally distribute such Covered Software +under the terms of such Secondary License(s), so that the recipient of +the Larger Work may, at their option, further distribute the Covered +Software under the terms of either this License or such Secondary +License(s). + +3.4. Notices + +You may not remove or alter the substance of any license notices +(including copyright notices, patent notices, disclaimers of warranty, +or limitations of liability) contained within the Source Code Form of +the Covered Software, except that You may alter any license notices to +the extent required to remedy known factual inaccuracies. + +3.5. Application of Additional Terms + +You may choose to offer, and to charge a fee for, warranty, support, +indemnity or liability obligations to one or more recipients of Covered +Software. However, You may do so only on Your own behalf, and not on +behalf of any Contributor. You must make it absolutely clear that any +such warranty, support, indemnity, or liability obligation is offered by +You alone, and You hereby agree to indemnify every Contributor for any +liability incurred by such Contributor as a result of warranty, support, +indemnity or liability terms You offer. You may include additional +disclaimers of warranty and limitations of liability specific to any +jurisdiction. + +4. Inability to Comply Due to Statute or Regulation +--------------------------------------------------- + +If it is impossible for You to comply with any of the terms of this +License with respect to some or all of the Covered Software due to +statute, judicial order, or regulation then You must: (a) comply with +the terms of this License to the maximum extent possible; and (b) +describe the limitations and the code they affect. Such description must +be placed in a text file included with all distributions of the Covered +Software under this License. Except to the extent prohibited by statute +or regulation, such description must be sufficiently detailed for a +recipient of ordinary skill to be able to understand it. + +5. Termination +-------------- + +5.1. The rights granted under this License will terminate automatically +if You fail to comply with any of its terms. However, if You become +compliant, then the rights granted under this License from a particular +Contributor are reinstated (a) provisionally, unless and until such +Contributor explicitly and finally terminates Your grants, and (b) on an +ongoing basis, if such Contributor fails to notify You of the +non-compliance by some reasonable means prior to 60 days after You have +come back into compliance. Moreover, Your grants from a particular +Contributor are reinstated on an ongoing basis if such Contributor +notifies You of the non-compliance by some reasonable means, this is the +first time You have received notice of non-compliance with this License +from such Contributor, and You become compliant prior to 30 days after +Your receipt of the notice. + +5.2. If You initiate litigation against any entity by asserting a patent +infringement claim (excluding declaratory judgment actions, +counter-claims, and cross-claims) alleging that a Contributor Version +directly or indirectly infringes any patent, then the rights granted to +You by any and all Contributors for the Covered Software under Section +2.1 of this License shall terminate. + +5.3. In the event of termination under Sections 5.1 or 5.2 above, all +end user license agreements (excluding distributors and resellers) which +have been validly granted by You or Your distributors under this License +prior to termination shall survive termination. + +************************************************************************ +* * +* 6. Disclaimer of Warranty * +* ------------------------- * +* * +* Covered Software is provided under this License on an "as is" * +* basis, without warranty of any kind, either expressed, implied, or * +* statutory, including, without limitation, warranties that the * +* Covered Software is free of defects, merchantable, fit for a * +* particular purpose or non-infringing. The entire risk as to the * +* quality and performance of the Covered Software is with You. * +* Should any Covered Software prove defective in any respect, You * +* (not any Contributor) assume the cost of any necessary servicing, * +* repair, or correction. This disclaimer of warranty constitutes an * +* essential part of this License. No use of any Covered Software is * +* authorized under this License except under this disclaimer. * +* * +************************************************************************ + +************************************************************************ +* * +* 7. Limitation of Liability * +* -------------------------- * +* * +* Under no circumstances and under no legal theory, whether tort * +* (including negligence), contract, or otherwise, shall any * +* Contributor, or anyone who distributes Covered Software as * +* permitted above, be liable to You for any direct, indirect, * +* special, incidental, or consequential damages of any character * +* including, without limitation, damages for lost profits, loss of * +* goodwill, work stoppage, computer failure or malfunction, or any * +* and all other commercial damages or losses, even if such party * +* shall have been informed of the possibility of such damages. This * +* limitation of liability shall not apply to liability for death or * +* personal injury resulting from such party's negligence to the * +* extent applicable law prohibits such limitation. Some * +* jurisdictions do not allow the exclusion or limitation of * +* incidental or consequential damages, so this exclusion and * +* limitation may not apply to You. * +* * +************************************************************************ + +8. Litigation +------------- + +Any litigation relating to this License may be brought only in the +courts of a jurisdiction where the defendant maintains its principal +place of business and such litigation shall be governed by laws of that +jurisdiction, without reference to its conflict-of-law provisions. +Nothing in this Section shall prevent a party's ability to bring +cross-claims or counter-claims. + +9. Miscellaneous +---------------- + +This License represents the complete agreement concerning the subject +matter hereof. If any provision of this License is held to be +unenforceable, such provision shall be reformed only to the extent +necessary to make it enforceable. Any law or regulation which provides +that the language of a contract shall be construed against the drafter +shall not be used to construe this License against a Contributor. + +10. Versions of the License +--------------------------- + +10.1. New Versions + +Mozilla Foundation is the license steward. Except as provided in Section +10.3, no one other than the license steward has the right to modify or +publish new versions of this License. Each version will be given a +distinguishing version number. + +10.2. Effect of New Versions + +You may distribute the Covered Software under the terms of the version +of the License under which You originally received the Covered Software, +or under the terms of any subsequent version published by the license +steward. + +10.3. Modified Versions + +If you create software not governed by this License, and you want to +create a new license for such software, you may create and use a +modified version of this License if you rename the license and remove +any references to the name of the license steward (except to note that +such modified license differs from this License). + +10.4. Distributing Source Code Form that is Incompatible With Secondary +Licenses + +If You choose to distribute Source Code Form that is Incompatible With +Secondary Licenses under the terms of this version of the License, the +notice described in Exhibit B of this License must be attached. + +Exhibit A - Source Code Form License Notice +------------------------------------------- + + This Source Code Form is subject to the terms of the Mozilla Public + License, v. 2.0. If a copy of the MPL was not distributed with this + file, You can obtain one at http://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular +file, then You may include the notice in a location (such as a LICENSE +file in a relevant directory) where a recipient would be likely to look +for such a notice. + +You may add additional accurate notices of copyright ownership. + +Exhibit B - "Incompatible With Secondary Licenses" Notice +--------------------------------------------------------- + + This Source Code Form is "Incompatible With Secondary Licenses", as + defined by the Mozilla Public License, v. 2.0. + +pyasn1 +0.6.1 +BSD-2-Clause +Ilya Etingof + +Copyright (c) 2005-2020, Ilya Etingof +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. + +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. + +pyasn1_modules +0.4.2 +BSD +Ilya Etingof + +Copyright (c) 2005-2020, Ilya Etingof +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. + +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. + +pycparser +2.22 +BSD-3-Clause +Eli Bendersky + +pycparser -- A C parser in Python + +Copyright (c) 2008-2022, Eli Bendersky +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 copyright holder 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 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. + +pylsqpack +0.3.22 + +Jeremy Lainé + +Copyright (c) Jeremy Lainé. +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 pylsqpack 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 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. + +pyOpenSSL +25.0.0 +Apache License, Version 2.0 +The pyOpenSSL developers + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +pyparsing +3.2.3 + +Paul McGuire + +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. + +pyperclip +1.9.0 +BSD +Al Sweigart + +Here is an inevitably incomplete list of MUCH-APPRECIATED CONTRIBUTORS -- +people who have submitted patches, reported bugs, added translations, helped +answer newbie questions, and generally made Pyperclip that much better: + +Al Sweigart +Alexander Cobleigh ‏@cblgh +Andrea Scarpino https://github.com/ilpianista +Aniket Pandey https://github.com/lordaniket06 +Anton Yakutovich https://github.com/drakulavich +Brian Levin https://github.com/bnice5000 +Carvell Scott https://github.com/CarvellScott +Cees Timmerman https://github.com/CTimmerman +Chris Clark +Christopher Lambert https://github.com/XN137 +Chris Woerz https://github.com/erendrake +Corey Bryant https://github.com/coreycb +Daniel Shimon https://github.com/daniel-shimon +Edd Barrett https://github.com/vext01 +Eugene Yang https://github.com/eugene-yang +Felix Yan https://github.com/felixonmars +Fredrik Borg https://github.com/frbor +fthoma https://github.com/fthoma +Greg Witt https://github.com/GoodGuyGregory +hinlader https://github.com/hinlader +Hugo van Kemenade https://github.com/hugovk +Hynek Cernoch https://github.com/hynekcer +Jason R. Coombs https://github.com/jaraco +Jon Crall https://github.com/Erotemic +Jonathan Slenders https://github.com/jonathanslenders +JustAShoeMaker https://github.com/JustAShoeMaker +Marcelo Glezer https://github.com/gato +masajxxx https://github.com/masajxxx +Maximilian Hils https://github.com/mhils +mgunyho https://github.com/mgunyho +Michał Górny https://github.com/mgorny +Nicola Guerrera https://github.com/nik012003 +Nikolaos-Digenis Karagiannis https://github.com/Digenis +Nils Ohlmeier https://github.com/nils-ohlmeier +Orson Peters https://github.com/orlp +pgajdos https://github.com/pgajdos +PirateOfAndaman https://github.com/PirateOfAndaman +Six https://github.com/brbsix +Stefan Devai https://github.com/stefandevai +Stephen Finucane https://github.com/stephenfin +Stefan Scherfke https://github.com/sscherfke +Steve Elam +Tamir Bahar https://github.com/tmr232 +Terrel Shumway https://github.com/lernisto +Tim Cuthbertson https://github.com/timbertson +Tim Gates https://github.com/timgates42 +Todd Leonhardt https://github.com/tleonhardt +Troy Sankey https://github.com/pwnage101 +utagawa kiki https://github.com/utgwkk +Vertliba V.V. https://github.com/vertliba +Vince West https://github.com/dvincentwest +ZEDGR https://github.com/ZEDGR + +ruamel.yaml +0.18.10 +MIT license +Anthon van der Neut + +The MIT License (MIT) + + Copyright (c) 2014-2025 Anthon van der Neut, Ruamel bvba + + 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. + +ruamel.yaml.clib +0.2.12 +MIT +Anthon van der Neut + +The MIT License (MIT) + + Copyright (c) 2019-2024 Anthon van der Neut, Ruamel bvba + + 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. + +service-identity +24.2.0 + +Hynek Schlawack + +The MIT License (MIT) + +Copyright (c) 2014 Hynek Schlawack and the service-identity 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. + +setuptools +80.9.0 + +Python Packaging Authority + +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. + +sortedcontainers +2.4.0 +Apache 2.0 +Grant Jenks + +Copyright 2014-2019 Grant Jenks + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + +tornado +6.5 +Apache-2.0 +Facebook + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +typing_extensions +4.14.0 + +"Guido van Rossum, Jukka Lehtosalo, Łukasz Langa, Michael Lee" + +A. HISTORY OF THE SOFTWARE +========================== + +Python was created in the early 1990s by Guido van Rossum at Stichting +Mathematisch Centrum (CWI, see https://www.cwi.nl) in the Netherlands +as a successor of a language called ABC. Guido remains Python's +principal author, although it includes many contributions from others. + +In 1995, Guido continued his work on Python at the Corporation for +National Research Initiatives (CNRI, see https://www.cnri.reston.va.us) +in Reston, Virginia where he released several versions of the +software. + +In May 2000, Guido and the Python core development team moved to +BeOpen.com to form the BeOpen PythonLabs team. In October of the same +year, the PythonLabs team moved to Digital Creations, which became +Zope Corporation. In 2001, the Python Software Foundation (PSF, see +https://www.python.org/psf/) was formed, a non-profit organization +created specifically to own Python-related Intellectual Property. +Zope Corporation was a sponsoring member of the PSF. + +All Python releases are Open Source (see https://opensource.org for +the Open Source Definition). Historically, most, but not all, Python +releases have also been GPL-compatible; the table below summarizes +the various releases. + + Release Derived Year Owner GPL- + from compatible? (1) + + 0.9.0 thru 1.2 1991-1995 CWI yes + 1.3 thru 1.5.2 1.2 1995-1999 CNRI yes + 1.6 1.5.2 2000 CNRI no + 2.0 1.6 2000 BeOpen.com no + 1.6.1 1.6 2001 CNRI yes (2) + 2.1 2.0+1.6.1 2001 PSF no + 2.0.1 2.0+1.6.1 2001 PSF yes + 2.1.1 2.1+2.0.1 2001 PSF yes + 2.1.2 2.1.1 2002 PSF yes + 2.1.3 2.1.2 2002 PSF yes + 2.2 and above 2.1.1 2001-now PSF yes + +Footnotes: + +(1) GPL-compatible doesn't mean that we're distributing Python under + the GPL. All Python licenses, unlike the GPL, let you distribute + a modified version without making your changes open source. The + GPL-compatible licenses make it possible to combine Python with + other software that is released under the GPL; the others don't. + +(2) According to Richard Stallman, 1.6.1 is not GPL-compatible, + because its license has a choice of law clause. According to + CNRI, however, Stallman's lawyer has told CNRI's lawyer that 1.6.1 + is "not incompatible" with the GPL. + +Thanks to the many outside volunteers who have worked under Guido's +direction to make these releases possible. + + +B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON +=============================================================== + +Python software and documentation are licensed under the +Python Software Foundation License Version 2. + +Starting with Python 3.8.6, examples, recipes, and other code in +the documentation are dual licensed under the PSF License Version 2 +and the Zero-Clause BSD license. + +Some software incorporated into Python is under different licenses. +The licenses are listed with code falling under that license. + + +PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 +-------------------------------------------- + +1. This LICENSE AGREEMENT is between the Python Software Foundation +("PSF"), and the Individual or Organization ("Licensee") accessing and +otherwise using this software ("Python") in source or binary form and +its associated documentation. + +2. Subject to the terms and conditions of this License Agreement, PSF hereby +grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce, +analyze, test, perform and/or display publicly, prepare derivative works, +distribute, and otherwise use Python alone or in any derivative version, +provided, however, that PSF's License Agreement and PSF's notice of copyright, +i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, +2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023 Python Software Foundation; +All Rights Reserved" are retained in Python alone or in any derivative version +prepared by Licensee. + +3. In the event Licensee prepares a derivative work that is based on +or incorporates Python or any part thereof, and wants to make +the derivative work available to others as provided herein, then +Licensee hereby agrees to include in any such work a brief summary of +the changes made to Python. + +4. PSF is making Python available to Licensee on an "AS IS" +basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR +IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND +DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS +FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT +INFRINGE ANY THIRD PARTY RIGHTS. + +5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON +FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS +A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON, +OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + +6. This License Agreement will automatically terminate upon a material +breach of its terms and conditions. + +7. Nothing in this License Agreement shall be deemed to create any +relationship of agency, partnership, or joint venture between PSF and +Licensee. This License Agreement does not grant permission to use PSF +trademarks or trade name in a trademark sense to endorse or promote +products or services of Licensee, or any third party. + +8. By copying, installing or otherwise using Python, Licensee +agrees to be bound by the terms and conditions of this License +Agreement. + + +BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 +------------------------------------------- + +BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 + +1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an +office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the +Individual or Organization ("Licensee") accessing and otherwise using +this software in source or binary form and its associated +documentation ("the Software"). + +2. Subject to the terms and conditions of this BeOpen Python License +Agreement, BeOpen hereby grants Licensee a non-exclusive, +royalty-free, world-wide license to reproduce, analyze, test, perform +and/or display publicly, prepare derivative works, distribute, and +otherwise use the Software alone or in any derivative version, +provided, however, that the BeOpen Python License is retained in the +Software, alone or in any derivative version prepared by Licensee. + +3. BeOpen is making the Software available to Licensee on an "AS IS" +basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR +IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND +DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS +FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT +INFRINGE ANY THIRD PARTY RIGHTS. + +4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE +SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS +AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY +DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + +5. This License Agreement will automatically terminate upon a material +breach of its terms and conditions. + +6. This License Agreement shall be governed by and interpreted in all +respects by the law of the State of California, excluding conflict of +law provisions. Nothing in this License Agreement shall be deemed to +create any relationship of agency, partnership, or joint venture +between BeOpen and Licensee. This License Agreement does not grant +permission to use BeOpen trademarks or trade names in a trademark +sense to endorse or promote products or services of Licensee, or any +third party. As an exception, the "BeOpen Python" logos available at +http://www.pythonlabs.com/logos.html may be used according to the +permissions granted on that web page. + +7. By copying, installing or otherwise using the software, Licensee +agrees to be bound by the terms and conditions of this License +Agreement. + + +CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1 +--------------------------------------- + +1. This LICENSE AGREEMENT is between the Corporation for National +Research Initiatives, having an office at 1895 Preston White Drive, +Reston, VA 20191 ("CNRI"), and the Individual or Organization +("Licensee") accessing and otherwise using Python 1.6.1 software in +source or binary form and its associated documentation. + +2. Subject to the terms and conditions of this License Agreement, CNRI +hereby grants Licensee a nonexclusive, royalty-free, world-wide +license to reproduce, analyze, test, perform and/or display publicly, +prepare derivative works, distribute, and otherwise use Python 1.6.1 +alone or in any derivative version, provided, however, that CNRI's +License Agreement and CNRI's notice of copyright, i.e., "Copyright (c) +1995-2001 Corporation for National Research Initiatives; All Rights +Reserved" are retained in Python 1.6.1 alone or in any derivative +version prepared by Licensee. Alternately, in lieu of CNRI's License +Agreement, Licensee may substitute the following text (omitting the +quotes): "Python 1.6.1 is made available subject to the terms and +conditions in CNRI's License Agreement. This Agreement together with +Python 1.6.1 may be located on the internet using the following +unique, persistent identifier (known as a handle): 1895.22/1013. This +Agreement may also be obtained from a proxy server on the internet +using the following URL: http://hdl.handle.net/1895.22/1013". + +3. In the event Licensee prepares a derivative work that is based on +or incorporates Python 1.6.1 or any part thereof, and wants to make +the derivative work available to others as provided herein, then +Licensee hereby agrees to include in any such work a brief summary of +the changes made to Python 1.6.1. + +4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS" +basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR +IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND +DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS +FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT +INFRINGE ANY THIRD PARTY RIGHTS. + +5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON +1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS +A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1, +OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + +6. This License Agreement will automatically terminate upon a material +breach of its terms and conditions. + +7. This License Agreement shall be governed by the federal +intellectual property law of the United States, including without +limitation the federal copyright law, and, to the extent such +U.S. federal law does not apply, by the law of the Commonwealth of +Virginia, excluding Virginia's conflict of law provisions. +Notwithstanding the foregoing, with regard to derivative works based +on Python 1.6.1 that incorporate non-separable material that was +previously distributed under the GNU General Public License (GPL), the +law of the Commonwealth of Virginia shall govern this License +Agreement only as to issues arising under or with respect to +Paragraphs 4, 5, and 7 of this License Agreement. Nothing in this +License Agreement shall be deemed to create any relationship of +agency, partnership, or joint venture between CNRI and Licensee. This +License Agreement does not grant permission to use CNRI trademarks or +trade name in a trademark sense to endorse or promote products or +services of Licensee, or any third party. + +8. By clicking on the "ACCEPT" button where indicated, or by copying, +installing or otherwise using Python 1.6.1, Licensee agrees to be +bound by the terms and conditions of this License Agreement. + + ACCEPT + + +CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2 +-------------------------------------------------- + +Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, +The Netherlands. All rights reserved. + +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose and without fee is hereby granted, +provided that the above copyright notice appear in all copies and that +both that copyright notice and this permission notice appear in +supporting documentation, and that the name of Stichting Mathematisch +Centrum or CWI not be used in advertising or publicity pertaining to +distribution of the software without specific, written prior +permission. + +STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO +THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE +FOR ANY SPECIAL, 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. + +ZERO-CLAUSE BSD LICENSE FOR CODE IN THE PYTHON DOCUMENTATION +---------------------------------------------------------------------- + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted. + +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. + +urwid +2.6.16 +LGPL-2.1-only +Ian Ward + +GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! + +wcwidth +0.2.13 +MIT +Jeff Quast + +The MIT License (MIT) + +Copyright (c) 2014 Jeff Quast + +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. + +Markus Kuhn -- 2007-05-26 (Unicode 5.0) + +Permission to use, copy, modify, and distribute this software +for any purpose and without fee is hereby granted. The author +disclaims all warranties with regard to this software. + +Werkzeug +3.1.3 + + + +Copyright 2007 Pallets + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. 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. + +3. Neither the name of the copyright holder 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 +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. + +wheel +0.45.1 + +Daniel Holth + +MIT License + +Copyright (c) 2012 Daniel Holth and 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. + +wsproto +1.2.0 +MIT License +Benno Rice + +The MIT License (MIT) + +Copyright (c) 2017 Benno Rice and 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. + +zstandard +0.23.0 +BSD +Gregory Szorc + +Copyright (c) 2016, Gregory Szorc +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this +list of conditions and the following disclaimer. + +2. 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. + +3. Neither the name of the copyright holder 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 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. + +------------------------------------- +NODE PACKAGES +------------------------------------- +@alloc/quick-lru +5.2.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +@antfu/install-pkg +1.1.0 +MIT +Anthony Fu + +MIT License + +Copyright (c) 2021 Anthony Fu + +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. + +@antfu/utils +8.1.1 +MIT +Anthony Fu + +MIT License + +Copyright (c) 2021 Anthony Fu + +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/code-frame +7.27.1 +MIT +The Babel Team (https://babel.dev/team) + +MIT License + +Copyright (c) 2014-present Sebastian McKenzie and other 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. + +@babel/helper-string-parser +7.27.1 +MIT +The Babel Team (https://babel.dev/team) + +MIT License + +Copyright (c) 2014-present Sebastian McKenzie and other 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. + +@babel/helper-validator-identifier +7.27.1 +MIT +The Babel Team (https://babel.dev/team) + +MIT License + +Copyright (c) 2014-present Sebastian McKenzie and other 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. + +@babel/parser +7.28.0 +MIT +The Babel Team (https://babel.dev/team) + +Copyright (C) 2012-2014 by various contributors (see AUTHORS) + +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 +7.28.2 +MIT +The Babel Team (https://babel.dev/team) + +MIT License + +Copyright (c) 2014-present Sebastian McKenzie and other 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. + +@babel/standalone +7.28.2 +MIT +The Babel Team (https://babel.dev/team) + +MIT License + +Copyright (c) 2014-present Sebastian McKenzie and other 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. + +@babel/types +7.28.2 +MIT +The Babel Team (https://babel.dev/team) + +MIT License + +Copyright (c) 2014-present Sebastian McKenzie and other 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. + +@braintree/sanitize-url +7.1.1 +MIT + + +MIT License + +Copyright (c) 2017 Braintree + +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. + +@chevrotain/cst-dts-gen +11.0.3 +Apache-2.0 + + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +@chevrotain/gast +11.0.3 +Apache-2.0 + + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +@chevrotain/regexp-to-ast +11.0.3 +Apache-2.0 + + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +@chevrotain/types +11.0.3 +Apache-2.0 +Shahar Soel + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +@chevrotain/utils +11.0.3 +Apache-2.0 +Shahar Soel + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +@cypress/request +3.0.9 +Apache-2.0 +Mikeal Rogers + +Apache License + +Version 2.0, January 2004 + +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + +You must give any other recipients of the Work or Derivative Works a copy of this License; and + +You must cause any modified files to carry prominent notices stating that You changed the files; and + +You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and + +If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +@cypress/xvfb +1.2.4 +MIT +Rob Wu (https://robwu.nl) + +Original Work Copyright (C) 2012 ProxV, Inc. +Modified Work Copyright (c) 2015 Cypress.io, 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 +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. + +@dnd-kit/accessibility +3.1.1 +MIT +Claudéric Demers + +MIT License + +Copyright (c) 2021, Claudéric Demers + +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. + +@dnd-kit/core +6.3.1 +MIT +Claudéric Demers + +MIT License + +Copyright (c) 2021, Claudéric Demers + +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. + +@dnd-kit/sortable +10.0.0 +MIT +Claudéric Demers + +MIT License + +Copyright (c) 2021, Claudéric Demers + +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. + +@dnd-kit/utilities +3.2.2 +MIT +Claudéric Demers + +MIT License + +Copyright (c) 2021, Claudéric Demers + +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. + +@esbuild/linux-x64 +0.25.8 +MIT + + +LICENSE TEXT NOT FOUND + +@floating-ui/core +1.7.3 +MIT +atomiks + +MIT License + +Copyright (c) 2021-present Floating UI 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. + +@floating-ui/dom +1.7.3 +MIT +atomiks + +MIT License + +Copyright (c) 2021-present Floating UI 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. + +@floating-ui/react-dom +2.1.5 +MIT +atomiks + +MIT License + +Copyright (c) 2021-present Floating UI 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. + +@floating-ui/utils +0.2.10 +MIT +atomiks + +MIT License + +Copyright (c) 2021-present Floating UI 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. + +@iconify/types +2.0.0 +MIT +Vjacheslav Trushkin + +MIT License + +Copyright (c) 2021 - 2022 Vjacheslav Trushkin / Iconify OÜ + +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. + +@iconify/utils +2.3.0 +MIT +Vjacheslav Trushkin + +MIT License + +Copyright (c) 2021-PRESENT Vjacheslav Trushkin + +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. + +@img/sharp-libvips-linux-x64 +1.2.0 +LGPL-3.0-or-later +Lovell Fuller + +LICENSE TEXT NOT FOUND + +@img/sharp-libvips-linuxmusl-x64 +1.2.0 +LGPL-3.0-or-later +Lovell Fuller + +LICENSE TEXT NOT FOUND + +@img/sharp-linux-x64 +0.34.3 +Apache-2.0 +Lovell Fuller + +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and +distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright +owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities +that control, are controlled by, or are under common control with that entity. +For the purposes of this definition, "control" means (i) the power, direct or +indirect, to cause the direction or management of such entity, whether by +contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the +outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising +permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including +but not limited to software source code, documentation source, and configuration +files. + +"Object" form shall mean any form resulting from mechanical transformation or +translation of a Source form, including but not limited to compiled object code, +generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made +available under the License, as indicated by a copyright notice that is included +in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that +is based on (or derived from) the Work and for which the editorial revisions, +annotations, elaborations, or other modifications represent, as a whole, an +original work of authorship. For the purposes of this License, Derivative Works +shall not include works that remain separable from, or merely link (or bind by +name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version +of the Work and any modifications or additions to that Work or Derivative Works +thereof, that is intentionally submitted to Licensor for inclusion in the Work +by the copyright owner or by an individual or Legal Entity authorized to submit +on behalf of the copyright owner. For the purposes of this definition, +"submitted" means any form of electronic, verbal, or written communication sent +to the Licensor or its representatives, including but not limited to +communication on electronic mailing lists, source code control systems, and +issue tracking systems that are managed by, or on behalf of, the Licensor for +the purpose of discussing and improving the Work, but excluding communication +that is conspicuously marked or otherwise designated in writing by the copyright +owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf +of whom a Contribution has been received by Licensor and subsequently +incorporated within the Work. + +2. Grant of Copyright License. + +Subject to the terms and conditions of this License, each Contributor hereby +grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, +irrevocable copyright license to reproduce, prepare Derivative Works of, +publicly display, publicly perform, sublicense, and distribute the Work and such +Derivative Works in Source or Object form. + +3. Grant of Patent License. + +Subject to the terms and conditions of this License, each Contributor hereby +grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, +irrevocable (except as stated in this section) patent license to make, have +made, use, offer to sell, sell, import, and otherwise transfer the Work, where +such license applies only to those patent claims licensable by such Contributor +that are necessarily infringed by their Contribution(s) alone or by combination +of their Contribution(s) with the Work to which such Contribution(s) was +submitted. If You institute patent litigation against any entity (including a +cross-claim or counterclaim in a lawsuit) alleging that the Work or a +Contribution incorporated within the Work constitutes direct or contributory +patent infringement, then any patent licenses granted to You under this License +for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. + +You may reproduce and distribute copies of the Work or Derivative Works thereof +in any medium, with or without modifications, and in Source or Object form, +provided that You meet the following conditions: + +You must give any other recipients of the Work or Derivative Works a copy of +this License; and +You must cause any modified files to carry prominent notices stating that You +changed the files; and +You must retain, in the Source form of any Derivative Works that You distribute, +all copyright, patent, trademark, and attribution notices from the Source form +of the Work, excluding those notices that do not pertain to any part of the +Derivative Works; and +If the Work includes a "NOTICE" text file as part of its distribution, then any +Derivative Works that You distribute must include a readable copy of the +attribution notices contained within such NOTICE file, excluding those notices +that do not pertain to any part of the Derivative Works, in at least one of the +following places: within a NOTICE text file distributed as part of the +Derivative Works; within the Source form or documentation, if provided along +with the Derivative Works; or, within a display generated by the Derivative +Works, if and wherever such third-party notices normally appear. The contents of +the NOTICE file are for informational purposes only and do not modify the +License. You may add Your own attribution notices within Derivative Works that +You distribute, alongside or as an addendum to the NOTICE text from the Work, +provided that such additional attribution notices cannot be construed as +modifying the License. +You may add Your own copyright statement to Your modifications and may provide +additional or different license terms and conditions for use, reproduction, or +distribution of Your modifications, or for any such Derivative Works as a whole, +provided Your use, reproduction, and distribution of the Work otherwise complies +with the conditions stated in this License. + +5. Submission of Contributions. + +Unless You explicitly state otherwise, any Contribution intentionally submitted +for inclusion in the Work by You to the Licensor shall be under the terms and +conditions of this License, without any additional terms or conditions. +Notwithstanding the above, nothing herein shall supersede or modify the terms of +any separate license agreement you may have executed with Licensor regarding +such Contributions. + +6. Trademarks. + +This License does not grant permission to use the trade names, trademarks, +service marks, or product names of the Licensor, except as required for +reasonable and customary use in describing the origin of the Work and +reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. + +Unless required by applicable law or agreed to in writing, Licensor provides the +Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, +including, without limitation, any warranties or conditions of TITLE, +NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are +solely responsible for determining the appropriateness of using or +redistributing the Work and assume any risks associated with Your exercise of +permissions under this License. + +8. Limitation of Liability. + +In no event and under no legal theory, whether in tort (including negligence), +contract, or otherwise, unless required by applicable law (such as deliberate +and grossly negligent acts) or agreed to in writing, shall any Contributor be +liable to You for damages, including any direct, indirect, special, incidental, +or consequential damages of any character arising as a result of this License or +out of the use or inability to use the Work (including but not limited to +damages for loss of goodwill, work stoppage, computer failure or malfunction, or +any and all other commercial damages or losses), even if such Contributor has +been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. + +While redistributing the Work or Derivative Works thereof, You may choose to +offer, and charge a fee for, acceptance of support, warranty, indemnity, or +other liability obligations and/or rights consistent with this License. However, +in accepting such obligations, You may act only on Your own behalf and on Your +sole responsibility, not on behalf of any other Contributor, and only if You +agree to indemnify, defend, and hold each Contributor harmless for any liability +incurred by, or claims asserted against, such Contributor by reason of your +accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work + +To apply the Apache License to your work, attach the following boilerplate +notice, with the fields enclosed by brackets "[]" replaced with your own +identifying information. (Don't include the brackets!) The text should be +enclosed in the appropriate comment syntax for the file format. We also +recommend that a file or class name and description of purpose be included on +the same "printed page" as the copyright notice for easier identification within +third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +@img/sharp-linuxmusl-x64 +0.34.3 +Apache-2.0 +Lovell Fuller + +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and +distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright +owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities +that control, are controlled by, or are under common control with that entity. +For the purposes of this definition, "control" means (i) the power, direct or +indirect, to cause the direction or management of such entity, whether by +contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the +outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising +permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including +but not limited to software source code, documentation source, and configuration +files. + +"Object" form shall mean any form resulting from mechanical transformation or +translation of a Source form, including but not limited to compiled object code, +generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made +available under the License, as indicated by a copyright notice that is included +in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that +is based on (or derived from) the Work and for which the editorial revisions, +annotations, elaborations, or other modifications represent, as a whole, an +original work of authorship. For the purposes of this License, Derivative Works +shall not include works that remain separable from, or merely link (or bind by +name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version +of the Work and any modifications or additions to that Work or Derivative Works +thereof, that is intentionally submitted to Licensor for inclusion in the Work +by the copyright owner or by an individual or Legal Entity authorized to submit +on behalf of the copyright owner. For the purposes of this definition, +"submitted" means any form of electronic, verbal, or written communication sent +to the Licensor or its representatives, including but not limited to +communication on electronic mailing lists, source code control systems, and +issue tracking systems that are managed by, or on behalf of, the Licensor for +the purpose of discussing and improving the Work, but excluding communication +that is conspicuously marked or otherwise designated in writing by the copyright +owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf +of whom a Contribution has been received by Licensor and subsequently +incorporated within the Work. + +2. Grant of Copyright License. + +Subject to the terms and conditions of this License, each Contributor hereby +grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, +irrevocable copyright license to reproduce, prepare Derivative Works of, +publicly display, publicly perform, sublicense, and distribute the Work and such +Derivative Works in Source or Object form. + +3. Grant of Patent License. + +Subject to the terms and conditions of this License, each Contributor hereby +grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, +irrevocable (except as stated in this section) patent license to make, have +made, use, offer to sell, sell, import, and otherwise transfer the Work, where +such license applies only to those patent claims licensable by such Contributor +that are necessarily infringed by their Contribution(s) alone or by combination +of their Contribution(s) with the Work to which such Contribution(s) was +submitted. If You institute patent litigation against any entity (including a +cross-claim or counterclaim in a lawsuit) alleging that the Work or a +Contribution incorporated within the Work constitutes direct or contributory +patent infringement, then any patent licenses granted to You under this License +for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. + +You may reproduce and distribute copies of the Work or Derivative Works thereof +in any medium, with or without modifications, and in Source or Object form, +provided that You meet the following conditions: + +You must give any other recipients of the Work or Derivative Works a copy of +this License; and +You must cause any modified files to carry prominent notices stating that You +changed the files; and +You must retain, in the Source form of any Derivative Works that You distribute, +all copyright, patent, trademark, and attribution notices from the Source form +of the Work, excluding those notices that do not pertain to any part of the +Derivative Works; and +If the Work includes a "NOTICE" text file as part of its distribution, then any +Derivative Works that You distribute must include a readable copy of the +attribution notices contained within such NOTICE file, excluding those notices +that do not pertain to any part of the Derivative Works, in at least one of the +following places: within a NOTICE text file distributed as part of the +Derivative Works; within the Source form or documentation, if provided along +with the Derivative Works; or, within a display generated by the Derivative +Works, if and wherever such third-party notices normally appear. The contents of +the NOTICE file are for informational purposes only and do not modify the +License. You may add Your own attribution notices within Derivative Works that +You distribute, alongside or as an addendum to the NOTICE text from the Work, +provided that such additional attribution notices cannot be construed as +modifying the License. +You may add Your own copyright statement to Your modifications and may provide +additional or different license terms and conditions for use, reproduction, or +distribution of Your modifications, or for any such Derivative Works as a whole, +provided Your use, reproduction, and distribution of the Work otherwise complies +with the conditions stated in this License. + +5. Submission of Contributions. + +Unless You explicitly state otherwise, any Contribution intentionally submitted +for inclusion in the Work by You to the Licensor shall be under the terms and +conditions of this License, without any additional terms or conditions. +Notwithstanding the above, nothing herein shall supersede or modify the terms of +any separate license agreement you may have executed with Licensor regarding +such Contributions. + +6. Trademarks. + +This License does not grant permission to use the trade names, trademarks, +service marks, or product names of the Licensor, except as required for +reasonable and customary use in describing the origin of the Work and +reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. + +Unless required by applicable law or agreed to in writing, Licensor provides the +Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, +including, without limitation, any warranties or conditions of TITLE, +NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are +solely responsible for determining the appropriateness of using or +redistributing the Work and assume any risks associated with Your exercise of +permissions under this License. + +8. Limitation of Liability. + +In no event and under no legal theory, whether in tort (including negligence), +contract, or otherwise, unless required by applicable law (such as deliberate +and grossly negligent acts) or agreed to in writing, shall any Contributor be +liable to You for damages, including any direct, indirect, special, incidental, +or consequential damages of any character arising as a result of this License or +out of the use or inability to use the Work (including but not limited to +damages for loss of goodwill, work stoppage, computer failure or malfunction, or +any and all other commercial damages or losses), even if such Contributor has +been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. + +While redistributing the Work or Derivative Works thereof, You may choose to +offer, and charge a fee for, acceptance of support, warranty, indemnity, or +other liability obligations and/or rights consistent with this License. However, +in accepting such obligations, You may act only on Your own behalf and on Your +sole responsibility, not on behalf of any other Contributor, and only if You +agree to indemnify, defend, and hold each Contributor harmless for any liability +incurred by, or claims asserted against, such Contributor by reason of your +accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work + +To apply the Apache License to your work, attach the following boilerplate +notice, with the fields enclosed by brackets "[]" replaced with your own +identifying information. (Don't include the brackets!) The text should be +enclosed in the appropriate comment syntax for the file format. We also +recommend that a file or class name and description of purpose be included on +the same "printed page" as the copyright notice for easier identification within +third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +@isaacs/cliui +8.0.2 +ISC +Ben Coe + +Copyright (c) 2015, 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. + +@jridgewell/gen-mapping +0.3.12 +MIT +Justin Ridgewell + +Copyright 2024 Justin Ridgewell + +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. + +@jridgewell/resolve-uri +3.1.2 +MIT +Justin Ridgewell + +Copyright 2019 Justin Ridgewell + +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. + +@jridgewell/sourcemap-codec +1.5.4 +MIT +Justin Ridgewell + +Copyright 2024 Justin Ridgewell + +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. + +@jridgewell/trace-mapping +0.3.29 +MIT +Justin Ridgewell + +Copyright 2024 Justin Ridgewell + +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. + +@mermaid-js/parser +0.6.2 +MIT +Yokozuna59 + +The MIT License (MIT) + +Copyright (c) 2023 Yokozuna59 + +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. + +@next/env +14.2.31 +MIT +Next.js Team + +LICENSE TEXT NOT FOUND + +@next/swc-linux-x64-gnu +14.2.31 +MIT + + +LICENSE TEXT NOT FOUND + +@next/swc-linux-x64-musl +14.2.31 +MIT + + +LICENSE TEXT NOT FOUND + +@nodelib/fs.scandir +2.1.5 +MIT + + +The MIT License (MIT) + +Copyright (c) Denis Malinochkin + +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. + +@nodelib/fs.stat +2.0.5 +MIT + + +The MIT License (MIT) + +Copyright (c) Denis Malinochkin + +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. + +@nodelib/fs.walk +1.2.8 +MIT + + +The MIT License (MIT) + +Copyright (c) Denis Malinochkin + +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. + +@paciolan/remote-component +2.13.0 +MIT +Paciolan + +The MIT License (MIT) +Copyright (c) 2019 Paciolan + + +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. + +@paciolan/remote-module-loader +3.0.3 +MIT +Paciolan + +MIT License + +Copyright (c) 2019 Paciolan + +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. + +@pkgjs/parseargs +0.11.0 +MIT + + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +@popperjs/core +2.11.8 +MIT +Federico Zivolo + +The MIT License (MIT) + +Copyright (c) 2019 Federico Zivolo + +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. + +@puppeteer/browsers +2.10.6 +Apache-2.0 +The Chromium Authors + +LICENSE TEXT NOT FOUND + +@radix-ui/number +1.1.1 +MIT + + +LICENSE TEXT NOT FOUND + +@radix-ui/primitive +1.1.2 +MIT + + +LICENSE TEXT NOT FOUND + +@radix-ui/react-accordion +1.2.11 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-arrow +1.1.7 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-avatar +1.1.10 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-collapsible +1.1.11 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-collection +1.1.7 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-compose-refs +1.1.2 +MIT + + +LICENSE TEXT NOT FOUND + +@radix-ui/react-context +1.1.2 +MIT + + +LICENSE TEXT NOT FOUND + +@radix-ui/react-dialog +1.1.14 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-direction +1.1.1 +MIT + + +LICENSE TEXT NOT FOUND + +@radix-ui/react-dismissable-layer +1.1.10 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-dropdown-menu +2.1.15 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-focus-guards +1.1.2 +MIT + + +LICENSE TEXT NOT FOUND + +@radix-ui/react-focus-scope +1.1.7 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-icons +1.3.2 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-id +1.1.1 +MIT + + +LICENSE TEXT NOT FOUND + +@radix-ui/react-label +2.1.7 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-menu +2.1.15 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-popover +1.1.14 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-popper +1.2.7 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-portal +1.1.9 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-presence +1.1.4 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-primitive +2.1.3 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-progress +1.1.7 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-radio-group +1.3.7 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-roving-focus +1.1.10 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-scroll-area +1.2.9 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-select +2.2.5 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-separator +1.1.7 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-slider +1.3.5 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-slot +1.2.3 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-switch +1.2.5 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-tabs +1.1.12 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-toast +1.2.14 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-toggle +1.1.9 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-tooltip +1.2.7 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-use-callback-ref +1.1.1 +MIT + + +LICENSE TEXT NOT FOUND + +@radix-ui/react-use-controllable-state +1.2.2 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-use-effect-event +0.0.2 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-use-escape-keydown +1.1.1 +MIT + + +LICENSE TEXT NOT FOUND + +@radix-ui/react-use-is-hydrated +0.1.0 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/react-use-layout-effect +1.1.1 +MIT + + +LICENSE TEXT NOT FOUND + +@radix-ui/react-use-previous +1.1.1 +MIT + + +LICENSE TEXT NOT FOUND + +@radix-ui/react-use-rect +1.1.1 +MIT + + +LICENSE TEXT NOT FOUND + +@radix-ui/react-use-size +1.1.1 +MIT + + +LICENSE TEXT NOT FOUND + +@radix-ui/react-visually-hidden +1.2.3 +MIT + + +MIT License + +Copyright (c) 2022 WorkOS + +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. + +@radix-ui/rect +1.1.1 +MIT + + +LICENSE TEXT NOT FOUND + +@reduxjs/toolkit +2.8.2 +MIT +Mark Erikson + +MIT License + +Copyright (c) 2018 Mark Erikson + +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. + +@remirror/core-constants +3.0.0 +MIT + + +MIT License + +Copyright (c) 2019-2022, Remirror 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. + +@rrweb/types +2.0.0-alpha.18 +MIT + + +LICENSE TEXT NOT FOUND + +@rrweb/utils +2.0.0-alpha.18 +MIT + + +LICENSE TEXT NOT FOUND + +@standard-schema/spec +1.0.0 +MIT +Colin McDonnell + +MIT License + +Copyright (c) 2024 Colin McDonnell + +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. + +@standard-schema/utils +0.3.0 +MIT +Fabian Hiller + +MIT License + +Copyright (c) 2024 Fabian Hiller + +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. + +@swc/counter +0.1.3 +Apache-2.0 +강동윤 + +LICENSE TEXT NOT FOUND + +@swc/helpers +0.5.5 +Apache-2.0 +강동윤 + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + +@tailwindcss/typography +0.5.16 +MIT + + +MIT License + +Copyright (c) Tailwind Labs, 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 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. + +@tiptap/core +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-blockquote +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-bold +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-bubble-menu +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-bullet-list +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-code +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-code-block +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-document +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-dropcursor +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-floating-menu +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-gapcursor +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-hard-break +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-heading +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-history +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-horizontal-rule +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-italic +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-list-item +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-ordered-list +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-paragraph +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-strike +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-text +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-text-style +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/extension-underline +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/pm +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/react +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tiptap/starter-kit +2.26.1 +MIT + + +LICENSE TEXT NOT FOUND + +@tootallnate/quickjs-emscripten +0.23.0 +MIT + + +MIT License + +quickjs-emscripten copyright (c) 2019 Jake Teton-Landis + +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. + +@types/babel__core +7.20.5 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/babel__generator +7.27.0 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/babel__standalone +7.1.9 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/babel__template +7.4.4 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/babel__traverse +7.28.0 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/css-font-loading-module +0.0.7 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3 +7.4.3 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-array +3.2.1 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-axis +3.0.6 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-brush +3.0.6 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-chord +3.0.6 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-color +3.1.3 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-contour +3.0.6 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-delaunay +6.0.4 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-dispatch +3.0.7 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-drag +3.0.7 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-dsv +3.0.7 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-ease +3.0.2 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-fetch +3.0.7 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-force +3.0.10 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-format +3.0.4 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-geo +3.1.0 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-hierarchy +3.1.7 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-interpolate +3.0.4 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-path +3.1.1 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-polygon +3.0.2 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-quadtree +3.0.6 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-random +3.0.3 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-scale +4.0.9 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-scale-chromatic +3.1.0 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-selection +3.0.11 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-shape +3.1.7 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-time +3.0.4 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-time-format +4.0.3 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-timer +3.0.2 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-transition +3.0.9 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/d3-zoom +3.0.8 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/geojson +7946.0.16 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/linkify-it +3.0.5 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/linkify-it +5.0.0 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/markdown-it +13.0.9 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/markdown-it +14.1.2 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/mdurl +1.0.5 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/mdurl +2.0.0 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/node +20.19.10 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/prismjs +1.26.5 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/prop-types +15.7.15 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/puppeteer +5.4.7 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/react +18.3.23 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/react-dom +18.3.7 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/sinonjs__fake-timers +8.1.1 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/sizzle +2.3.9 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/trusted-types +2.0.7 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/use-sync-external-store +0.0.6 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/uuid +10.0.0 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/ws +8.18.1 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@types/yauzl +2.10.3 +MIT + + +MIT License + + Copyright (c) Microsoft Corporation. + + 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 + +@xstate/fsm +1.6.5 +MIT +David Khourshid + +The MIT License (MIT) + +Copyright (c) 2015 David Khourshid + +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. + +acorn +8.15.0 +MIT + + +MIT License + +Copyright (C) 2012-2022 by various contributors (see AUTHORS) + +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. + +agent-base +7.1.4 +MIT +Nathan Rajlich (http://n8.io/) + +(The MIT License) + +Copyright (c) 2013 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. + +aggregate-error +3.1.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +ansi-colors +4.1.3 +MIT +Brian Woodward (https://github.com/doowb) + +The MIT License (MIT) + +Copyright (c) 2015-present, Brian Woodward. + +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. + +ansi-escapes +4.3.2 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +ansi-regex +5.0.1 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +ansi-regex +6.1.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +ansi-styles +4.3.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +ansi-styles +6.2.1 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +any-promise +1.3.0 +MIT +Kevin Beaty + +Copyright (C) 2014-2016 Kevin Beaty + +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. + +anymatch +3.1.3 +ISC +Elan Shanker + +The ISC License + +Copyright (c) 2019 Elan Shanker, Paul Miller (https://paulmillr.com) + +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. + +arch +2.2.0 +MIT +Feross Aboukhadijeh + +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. + +arg +5.0.2 +MIT +Josh Junon + +The MIT License (MIT) + +Copyright (c) 2021 Vercel, 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 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. + +argparse +2.0.1 +Python-2.0 + + +A. HISTORY OF THE SOFTWARE +========================== + +Python was created in the early 1990s by Guido van Rossum at Stichting +Mathematisch Centrum (CWI, see http://www.cwi.nl) in the Netherlands +as a successor of a language called ABC. Guido remains Python's +principal author, although it includes many contributions from others. + +In 1995, Guido continued his work on Python at the Corporation for +National Research Initiatives (CNRI, see http://www.cnri.reston.va.us) +in Reston, Virginia where he released several versions of the +software. + +In May 2000, Guido and the Python core development team moved to +BeOpen.com to form the BeOpen PythonLabs team. In October of the same +year, the PythonLabs team moved to Digital Creations, which became +Zope Corporation. In 2001, the Python Software Foundation (PSF, see +https://www.python.org/psf/) was formed, a non-profit organization +created specifically to own Python-related Intellectual Property. +Zope Corporation was a sponsoring member of the PSF. + +All Python releases are Open Source (see http://www.opensource.org for +the Open Source Definition). Historically, most, but not all, Python +releases have also been GPL-compatible; the table below summarizes +the various releases. + + Release Derived Year Owner GPL- + from compatible? (1) + + 0.9.0 thru 1.2 1991-1995 CWI yes + 1.3 thru 1.5.2 1.2 1995-1999 CNRI yes + 1.6 1.5.2 2000 CNRI no + 2.0 1.6 2000 BeOpen.com no + 1.6.1 1.6 2001 CNRI yes (2) + 2.1 2.0+1.6.1 2001 PSF no + 2.0.1 2.0+1.6.1 2001 PSF yes + 2.1.1 2.1+2.0.1 2001 PSF yes + 2.1.2 2.1.1 2002 PSF yes + 2.1.3 2.1.2 2002 PSF yes + 2.2 and above 2.1.1 2001-now PSF yes + +Footnotes: + +(1) GPL-compatible doesn't mean that we're distributing Python under + the GPL. All Python licenses, unlike the GPL, let you distribute + a modified version without making your changes open source. The + GPL-compatible licenses make it possible to combine Python with + other software that is released under the GPL; the others don't. + +(2) According to Richard Stallman, 1.6.1 is not GPL-compatible, + because its license has a choice of law clause. According to + CNRI, however, Stallman's lawyer has told CNRI's lawyer that 1.6.1 + is "not incompatible" with the GPL. + +Thanks to the many outside volunteers who have worked under Guido's +direction to make these releases possible. + + +B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON +=============================================================== + +PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 +-------------------------------------------- + +1. This LICENSE AGREEMENT is between the Python Software Foundation +("PSF"), and the Individual or Organization ("Licensee") accessing and +otherwise using this software ("Python") in source or binary form and +its associated documentation. + +2. Subject to the terms and conditions of this License Agreement, PSF hereby +grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce, +analyze, test, perform and/or display publicly, prepare derivative works, +distribute, and otherwise use Python alone or in any derivative version, +provided, however, that PSF's License Agreement and PSF's notice of copyright, +i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, +2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Python Software Foundation; +All Rights Reserved" are retained in Python alone or in any derivative version +prepared by Licensee. + +3. In the event Licensee prepares a derivative work that is based on +or incorporates Python or any part thereof, and wants to make +the derivative work available to others as provided herein, then +Licensee hereby agrees to include in any such work a brief summary of +the changes made to Python. + +4. PSF is making Python available to Licensee on an "AS IS" +basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR +IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND +DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS +FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT +INFRINGE ANY THIRD PARTY RIGHTS. + +5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON +FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS +A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON, +OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + +6. This License Agreement will automatically terminate upon a material +breach of its terms and conditions. + +7. Nothing in this License Agreement shall be deemed to create any +relationship of agency, partnership, or joint venture between PSF and +Licensee. This License Agreement does not grant permission to use PSF +trademarks or trade name in a trademark sense to endorse or promote +products or services of Licensee, or any third party. + +8. By copying, installing or otherwise using Python, Licensee +agrees to be bound by the terms and conditions of this License +Agreement. + + +BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 +------------------------------------------- + +BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 + +1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an +office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the +Individual or Organization ("Licensee") accessing and otherwise using +this software in source or binary form and its associated +documentation ("the Software"). + +2. Subject to the terms and conditions of this BeOpen Python License +Agreement, BeOpen hereby grants Licensee a non-exclusive, +royalty-free, world-wide license to reproduce, analyze, test, perform +and/or display publicly, prepare derivative works, distribute, and +otherwise use the Software alone or in any derivative version, +provided, however, that the BeOpen Python License is retained in the +Software, alone or in any derivative version prepared by Licensee. + +3. BeOpen is making the Software available to Licensee on an "AS IS" +basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR +IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND +DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS +FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT +INFRINGE ANY THIRD PARTY RIGHTS. + +4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE +SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS +AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY +DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + +5. This License Agreement will automatically terminate upon a material +breach of its terms and conditions. + +6. This License Agreement shall be governed by and interpreted in all +respects by the law of the State of California, excluding conflict of +law provisions. Nothing in this License Agreement shall be deemed to +create any relationship of agency, partnership, or joint venture +between BeOpen and Licensee. This License Agreement does not grant +permission to use BeOpen trademarks or trade names in a trademark +sense to endorse or promote products or services of Licensee, or any +third party. As an exception, the "BeOpen Python" logos available at +http://www.pythonlabs.com/logos.html may be used according to the +permissions granted on that web page. + +7. By copying, installing or otherwise using the software, Licensee +agrees to be bound by the terms and conditions of this License +Agreement. + + +CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1 +--------------------------------------- + +1. This LICENSE AGREEMENT is between the Corporation for National +Research Initiatives, having an office at 1895 Preston White Drive, +Reston, VA 20191 ("CNRI"), and the Individual or Organization +("Licensee") accessing and otherwise using Python 1.6.1 software in +source or binary form and its associated documentation. + +2. Subject to the terms and conditions of this License Agreement, CNRI +hereby grants Licensee a nonexclusive, royalty-free, world-wide +license to reproduce, analyze, test, perform and/or display publicly, +prepare derivative works, distribute, and otherwise use Python 1.6.1 +alone or in any derivative version, provided, however, that CNRI's +License Agreement and CNRI's notice of copyright, i.e., "Copyright (c) +1995-2001 Corporation for National Research Initiatives; All Rights +Reserved" are retained in Python 1.6.1 alone or in any derivative +version prepared by Licensee. Alternately, in lieu of CNRI's License +Agreement, Licensee may substitute the following text (omitting the +quotes): "Python 1.6.1 is made available subject to the terms and +conditions in CNRI's License Agreement. This Agreement together with +Python 1.6.1 may be located on the Internet using the following +unique, persistent identifier (known as a handle): 1895.22/1013. This +Agreement may also be obtained from a proxy server on the Internet +using the following URL: http://hdl.handle.net/1895.22/1013". + +3. In the event Licensee prepares a derivative work that is based on +or incorporates Python 1.6.1 or any part thereof, and wants to make +the derivative work available to others as provided herein, then +Licensee hereby agrees to include in any such work a brief summary of +the changes made to Python 1.6.1. + +4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS" +basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR +IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND +DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS +FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT +INFRINGE ANY THIRD PARTY RIGHTS. + +5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON +1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS +A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1, +OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + +6. This License Agreement will automatically terminate upon a material +breach of its terms and conditions. + +7. This License Agreement shall be governed by the federal +intellectual property law of the United States, including without +limitation the federal copyright law, and, to the extent such +U.S. federal law does not apply, by the law of the Commonwealth of +Virginia, excluding Virginia's conflict of law provisions. +Notwithstanding the foregoing, with regard to derivative works based +on Python 1.6.1 that incorporate non-separable material that was +previously distributed under the GNU General Public License (GPL), the +law of the Commonwealth of Virginia shall govern this License +Agreement only as to issues arising under or with respect to +Paragraphs 4, 5, and 7 of this License Agreement. Nothing in this +License Agreement shall be deemed to create any relationship of +agency, partnership, or joint venture between CNRI and Licensee. This +License Agreement does not grant permission to use CNRI trademarks or +trade name in a trademark sense to endorse or promote products or +services of Licensee, or any third party. + +8. By clicking on the "ACCEPT" button where indicated, or by copying, +installing or otherwise using Python 1.6.1, Licensee agrees to be +bound by the terms and conditions of this License Agreement. + + ACCEPT + + +CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2 +-------------------------------------------------- + +Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, +The Netherlands. All rights reserved. + +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose and without fee is hereby granted, +provided that the above copyright notice appear in all copies and that +both that copyright notice and this permission notice appear in +supporting documentation, and that the name of Stichting Mathematisch +Centrum or CWI not be used in advertising or publicity pertaining to +distribution of the software without specific, written prior +permission. + +STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO +THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE +FOR ANY SPECIAL, 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. + +aria-hidden +1.2.6 +MIT +Anton Korzunov + +MIT License + +Copyright (c) 2017 Anton Korzunov + +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. + +asn1 +0.2.6 +MIT +Joyent (joyent.com) + +Copyright (c) 2011 Mark Cavage, 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 + +assert-plus +1.0.0 +MIT +Mark Cavage + +LICENSE TEXT NOT FOUND + +ast-types +0.13.4 +MIT +Ben Newman + +Copyright (c) 2013 Ben Newman + +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. + +astral-regex +2.0.0 +MIT +Kevin Mårtensson + +MIT License + +Copyright (c) Kevin Mårtensson (github.com/kevva) + +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. + +async +3.2.6 +MIT +Caolan McMahon + +Copyright (c) 2010-2018 Caolan McMahon + +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. + +asynckit +0.4.0 +MIT +Alex Indigo + +The MIT License (MIT) + +Copyright (c) 2016 Alex Indigo + +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. + +at-least-node +1.0.0 +ISC +Ryan Zimmerman + +The ISC License +Copyright (c) 2020 Ryan Zimmerman + +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. + +aws-sign2 +0.7.0 +Apache-2.0 +Mikeal Rogers (http://www.futurealoof.com) + +Apache License + +Version 2.0, January 2004 + +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + +You must give any other recipients of the Work or Derivative Works a copy of this License; and + +You must cause any modified files to carry prominent notices stating that You changed the files; and + +You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and + +If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +aws4 +1.13.2 +MIT +Michael Hart (https://github.com/mhart) + +Copyright 2013 Michael Hart (michael.hart.au@gmail.com) + +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. + +b4a +1.6.7 +Apache-2.0 +Holepunch + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +balanced-match +1.0.2 +MIT +Julian Gruber + +(MIT) + +Copyright (c) 2013 Julian Gruber <julian@juliangruber.com> + +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. + +bare-events +2.6.1 +Apache-2.0 +Holepunch + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +bare-fs +4.1.6 +Apache-2.0 +Holepunch + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +bare-os +3.6.1 +Apache-2.0 +Holepunch + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +bare-path +3.0.0 +Apache-2.0 +Holepunch + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +bare-stream +2.6.5 +Apache-2.0 +Holepunch + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +base64-arraybuffer +1.0.2 +MIT +Niklas von Hertzen + +Copyright (c) 2012 Niklas von Hertzen + +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. + +base64-js +1.5.1 +MIT +T. Jameson Little + +The MIT License (MIT) + +Copyright (c) 2014 Jameson Little + +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. + +basic-ftp +5.0.5 +MIT +Patrick Juchli + +Copyright (c) 2019 Patrick Juchli + +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. + +bcrypt-pbkdf +1.0.2 +BSD-3-Clause + + +The Blowfish portions are under the following license: + +Blowfish block cipher for OpenBSD +Copyright 1997 Niels Provos +All rights reserved. + +Implementation advice by David Mazieres . + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. 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. +3. The name of the author may not be used to endorse or promote products + derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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 bcrypt_pbkdf portions are under the following license: + +Copyright (c) 2013 Ted Unangst + +Permission to use, copy, modify, and 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. + + + +Performance improvements (Javascript-specific): + +Copyright 2016, Joyent Inc +Author: Alex Wilson + +Permission to use, copy, modify, and 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. + +binary-extensions +2.3.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Paul Miller (https://paulmillr.com) + +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. + +blob-util +2.0.2 +Apache-2.0 +Nolan Lawson + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +bluebird +3.7.2 +MIT +Petka Antonov + +The MIT License (MIT) + +Copyright (c) 2013-2018 Petka Antonov + +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. + +brace-expansion +2.0.2 +MIT +Julian Gruber + +MIT License + +Copyright (c) 2013 Julian Gruber + +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. + +braces +3.0.3 +MIT +Jon Schlinkert (https://github.com/jonschlinkert) + +The MIT License (MIT) + +Copyright (c) 2014-present, Jon Schlinkert. + +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. + +buffer +5.7.1 +MIT +Feross Aboukhadijeh + +The MIT License (MIT) + +Copyright (c) Feross Aboukhadijeh, and other 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. + +buffer-crc32 +0.2.13 +MIT +Brian J. Brennan + +The MIT License + +Copyright (c) 2013 Brian J. Brennan + +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. + +busboy +1.6.0 +MIT +Brian White + +Copyright Brian White. 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. + +cachedir +2.4.0 +MIT +Linus Unnebäck + +The MIT License (MIT) + +Copyright (c) 2013-2014, 2016, 2018, 2023 Linus Unnebäck + +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. + +call-bind-apply-helpers +1.0.2 +MIT +Jordan Harband + +MIT License + +Copyright (c) 2024 Jordan Harband + +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. + +call-bound +1.0.4 +MIT +Jordan Harband + +MIT License + +Copyright (c) 2024 Jordan Harband + +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. + +callsites +3.1.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +camelcase-css +2.0.1 +MIT +Steven Vachon (https://www.svachon.com/) + +The MIT License (MIT) + +Copyright (c) Steven Vachon (svachon.com) + +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. + +caniuse-lite +1.0.30001733 +CC-BY-4.0 +Ben Briggs + +Attribution 4.0 International + +======================================================================= + +Creative Commons Corporation ("Creative Commons") is not a law firm and +does not provide legal services or legal advice. Distribution of +Creative Commons public licenses does not create a lawyer-client or +other relationship. Creative Commons makes its licenses and related +information available on an "as-is" basis. Creative Commons gives no +warranties regarding its licenses, any material licensed under their +terms and conditions, or any related information. Creative Commons +disclaims all liability for damages resulting from their use to the +fullest extent possible. + +Using Creative Commons Public Licenses + +Creative Commons public licenses provide a standard set of terms and +conditions that creators and other rights holders may use to share +original works of authorship and other material subject to copyright +and certain other rights specified in the public license below. The +following considerations are for informational purposes only, are not +exhaustive, and do not form part of our licenses. + + Considerations for licensors: Our public licenses are + intended for use by those authorized to give the public + permission to use material in ways otherwise restricted by + copyright and certain other rights. Our licenses are + irrevocable. Licensors should read and understand the terms + and conditions of the license they choose before applying it. + Licensors should also secure all rights necessary before + applying our licenses so that the public can reuse the + material as expected. Licensors should clearly mark any + material not subject to the license. This includes other CC- + licensed material, or material used under an exception or + limitation to copyright. More considerations for licensors: + wiki.creativecommons.org/Considerations_for_licensors + + Considerations for the public: By using one of our public + licenses, a licensor grants the public permission to use the + licensed material under specified terms and conditions. If + the licensor's permission is not necessary for any reason--for + example, because of any applicable exception or limitation to + copyright--then that use is not regulated by the license. Our + licenses grant only permissions under copyright and certain + other rights that a licensor has authority to grant. Use of + the licensed material may still be restricted for other + reasons, including because others have copyright or other + rights in the material. A licensor may make special requests, + such as asking that all changes be marked or described. + Although not required by our licenses, you are encouraged to + respect those requests where reasonable. More_considerations + for the public: + wiki.creativecommons.org/Considerations_for_licensees + +======================================================================= + +Creative Commons Attribution 4.0 International Public License + +By exercising the Licensed Rights (defined below), You accept and agree +to be bound by the terms and conditions of this Creative Commons +Attribution 4.0 International Public License ("Public License"). To the +extent this Public License may be interpreted as a contract, You are +granted the Licensed Rights in consideration of Your acceptance of +these terms and conditions, and the Licensor grants You such rights in +consideration of benefits the Licensor receives from making the +Licensed Material available under these terms and conditions. + + +Section 1 -- Definitions. + + a. Adapted Material means material subject to Copyright and Similar + Rights that is derived from or based upon the Licensed Material + and in which the Licensed Material is translated, altered, + arranged, transformed, or otherwise modified in a manner requiring + permission under the Copyright and Similar Rights held by the + Licensor. For purposes of this Public License, where the Licensed + Material is a musical work, performance, or sound recording, + Adapted Material is always produced where the Licensed Material is + synched in timed relation with a moving image. + + b. Adapter's License means the license You apply to Your Copyright + and Similar Rights in Your contributions to Adapted Material in + accordance with the terms and conditions of this Public License. + + c. Copyright and Similar Rights means copyright and/or similar rights + closely related to copyright including, without limitation, + performance, broadcast, sound recording, and Sui Generis Database + Rights, without regard to how the rights are labeled or + categorized. For purposes of this Public License, the rights + specified in Section 2(b)(1)-(2) are not Copyright and Similar + Rights. + + d. Effective Technological Measures means those measures that, in the + absence of proper authority, may not be circumvented under laws + fulfilling obligations under Article 11 of the WIPO Copyright + Treaty adopted on December 20, 1996, and/or similar international + agreements. + + e. Exceptions and Limitations means fair use, fair dealing, and/or + any other exception or limitation to Copyright and Similar Rights + that applies to Your use of the Licensed Material. + + f. Licensed Material means the artistic or literary work, database, + or other material to which the Licensor applied this Public + License. + + g. Licensed Rights means the rights granted to You subject to the + terms and conditions of this Public License, which are limited to + all Copyright and Similar Rights that apply to Your use of the + Licensed Material and that the Licensor has authority to license. + + h. Licensor means the individual(s) or entity(ies) granting rights + under this Public License. + + i. Share means to provide material to the public by any means or + process that requires permission under the Licensed Rights, such + as reproduction, public display, public performance, distribution, + dissemination, communication, or importation, and to make material + available to the public including in ways that members of the + public may access the material from a place and at a time + individually chosen by them. + + j. Sui Generis Database Rights means rights other than copyright + resulting from Directive 96/9/EC of the European Parliament and of + the Council of 11 March 1996 on the legal protection of databases, + as amended and/or succeeded, as well as other essentially + equivalent rights anywhere in the world. + + k. You means the individual or entity exercising the Licensed Rights + under this Public License. Your has a corresponding meaning. + + +Section 2 -- Scope. + + a. License grant. + + 1. Subject to the terms and conditions of this Public License, + the Licensor hereby grants You a worldwide, royalty-free, + non-sublicensable, non-exclusive, irrevocable license to + exercise the Licensed Rights in the Licensed Material to: + + a. reproduce and Share the Licensed Material, in whole or + in part; and + + b. produce, reproduce, and Share Adapted Material. + + 2. Exceptions and Limitations. For the avoidance of doubt, where + Exceptions and Limitations apply to Your use, this Public + License does not apply, and You do not need to comply with + its terms and conditions. + + 3. Term. The term of this Public License is specified in Section + 6(a). + + 4. Media and formats; technical modifications allowed. The + Licensor authorizes You to exercise the Licensed Rights in + all media and formats whether now known or hereafter created, + and to make technical modifications necessary to do so. The + Licensor waives and/or agrees not to assert any right or + authority to forbid You from making technical modifications + necessary to exercise the Licensed Rights, including + technical modifications necessary to circumvent Effective + Technological Measures. For purposes of this Public License, + simply making modifications authorized by this Section 2(a) + (4) never produces Adapted Material. + + 5. Downstream recipients. + + a. Offer from the Licensor -- Licensed Material. Every + recipient of the Licensed Material automatically + receives an offer from the Licensor to exercise the + Licensed Rights under the terms and conditions of this + Public License. + + b. No downstream restrictions. You may not offer or impose + any additional or different terms or conditions on, or + apply any Effective Technological Measures to, the + Licensed Material if doing so restricts exercise of the + Licensed Rights by any recipient of the Licensed + Material. + + 6. No endorsement. Nothing in this Public License constitutes or + may be construed as permission to assert or imply that You + are, or that Your use of the Licensed Material is, connected + with, or sponsored, endorsed, or granted official status by, + the Licensor or others designated to receive attribution as + provided in Section 3(a)(1)(A)(i). + + b. Other rights. + + 1. Moral rights, such as the right of integrity, are not + licensed under this Public License, nor are publicity, + privacy, and/or other similar personality rights; however, to + the extent possible, the Licensor waives and/or agrees not to + assert any such rights held by the Licensor to the limited + extent necessary to allow You to exercise the Licensed + Rights, but not otherwise. + + 2. Patent and trademark rights are not licensed under this + Public License. + + 3. To the extent possible, the Licensor waives any right to + collect royalties from You for the exercise of the Licensed + Rights, whether directly or through a collecting society + under any voluntary or waivable statutory or compulsory + licensing scheme. In all other cases the Licensor expressly + reserves any right to collect such royalties. + + +Section 3 -- License Conditions. + +Your exercise of the Licensed Rights is expressly made subject to the +following conditions. + + a. Attribution. + + 1. If You Share the Licensed Material (including in modified + form), You must: + + a. retain the following if it is supplied by the Licensor + with the Licensed Material: + + i. identification of the creator(s) of the Licensed + Material and any others designated to receive + attribution, in any reasonable manner requested by + the Licensor (including by pseudonym if + designated); + + ii. a copyright notice; + + iii. a notice that refers to this Public License; + + iv. a notice that refers to the disclaimer of + warranties; + + v. a URI or hyperlink to the Licensed Material to the + extent reasonably practicable; + + b. indicate if You modified the Licensed Material and + retain an indication of any previous modifications; and + + c. indicate the Licensed Material is licensed under this + Public License, and include the text of, or the URI or + hyperlink to, this Public License. + + 2. You may satisfy the conditions in Section 3(a)(1) in any + reasonable manner based on the medium, means, and context in + which You Share the Licensed Material. For example, it may be + reasonable to satisfy the conditions by providing a URI or + hyperlink to a resource that includes the required + information. + + 3. If requested by the Licensor, You must remove any of the + information required by Section 3(a)(1)(A) to the extent + reasonably practicable. + + 4. If You Share Adapted Material You produce, the Adapter's + License You apply must not prevent recipients of the Adapted + Material from complying with this Public License. + + +Section 4 -- Sui Generis Database Rights. + +Where the Licensed Rights include Sui Generis Database Rights that +apply to Your use of the Licensed Material: + + a. for the avoidance of doubt, Section 2(a)(1) grants You the right + to extract, reuse, reproduce, and Share all or a substantial + portion of the contents of the database; + + b. if You include all or a substantial portion of the database + contents in a database in which You have Sui Generis Database + Rights, then the database in which You have Sui Generis Database + Rights (but not its individual contents) is Adapted Material; and + + c. You must comply with the conditions in Section 3(a) if You Share + all or a substantial portion of the contents of the database. + +For the avoidance of doubt, this Section 4 supplements and does not +replace Your obligations under this Public License where the Licensed +Rights include other Copyright and Similar Rights. + + +Section 5 -- Disclaimer of Warranties and Limitation of Liability. + + a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE + EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS + AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF + ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, + IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, + WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, + ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT + KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT + ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. + + b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE + TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, + NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, + INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, + COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR + USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN + ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR + DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR + IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. + + c. The disclaimer of warranties and limitation of liability provided + above shall be interpreted in a manner that, to the extent + possible, most closely approximates an absolute disclaimer and + waiver of all liability. + + +Section 6 -- Term and Termination. + + a. This Public License applies for the term of the Copyright and + Similar Rights licensed here. However, if You fail to comply with + this Public License, then Your rights under this Public License + terminate automatically. + + b. Where Your right to use the Licensed Material has terminated under + Section 6(a), it reinstates: + + 1. automatically as of the date the violation is cured, provided + it is cured within 30 days of Your discovery of the + violation; or + + 2. upon express reinstatement by the Licensor. + + For the avoidance of doubt, this Section 6(b) does not affect any + right the Licensor may have to seek remedies for Your violations + of this Public License. + + c. For the avoidance of doubt, the Licensor may also offer the + Licensed Material under separate terms or conditions or stop + distributing the Licensed Material at any time; however, doing so + will not terminate this Public License. + + d. Sections 1, 5, 6, 7, and 8 survive termination of this Public + License. + + +Section 7 -- Other Terms and Conditions. + + a. The Licensor shall not be bound by any additional or different + terms or conditions communicated by You unless expressly agreed. + + b. Any arrangements, understandings, or agreements regarding the + Licensed Material not stated herein are separate from and + independent of the terms and conditions of this Public License. + + +Section 8 -- Interpretation. + + a. For the avoidance of doubt, this Public License does not, and + shall not be interpreted to, reduce, limit, restrict, or impose + conditions on any use of the Licensed Material that could lawfully + be made without permission under this Public License. + + b. To the extent possible, if any provision of this Public License is + deemed unenforceable, it shall be automatically reformed to the + minimum extent necessary to make it enforceable. If the provision + cannot be reformed, it shall be severed from this Public License + without affecting the enforceability of the remaining terms and + conditions. + + c. No term or condition of this Public License will be waived and no + failure to comply consented to unless expressly agreed to by the + Licensor. + + d. Nothing in this Public License constitutes or may be interpreted + as a limitation upon, or waiver of, any privileges and immunities + that apply to the Licensor or You, including from the legal + processes of any jurisdiction or authority. + + +======================================================================= + +Creative Commons is not a party to its public +licenses. Notwithstanding, Creative Commons may elect to apply one of +its public licenses to material it publishes and in those instances +will be considered the “Licensor.” The text of the Creative Commons +public licenses is dedicated to the public domain under the CC0 Public +Domain Dedication. Except for the limited purpose of indicating that +material is shared under a Creative Commons public license or as +otherwise permitted by the Creative Commons policies published at +creativecommons.org/policies, Creative Commons does not authorize the +use of the trademark "Creative Commons" or any other trademark or logo +of Creative Commons without its prior written consent including, +without limitation, in connection with any unauthorized modifications +to any of its public licenses or any other arrangements, +understandings, or agreements concerning use of licensed material. For +the avoidance of doubt, this paragraph does not form part of the +public licenses. + +Creative Commons may be contacted at creativecommons.org. + +caseless +0.12.0 +Apache-2.0 +Mikeal Rogers + +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION +1. Definitions. +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. +"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. +2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. +3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: +You must give any other recipients of the Work or Derivative Works a copy of this License; and +You must cause any modified files to carry prominent notices stating that You changed the files; and +You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and +If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. +6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. +8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. +9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. +END OF TERMS AND CONDITIONS + +chalk +4.1.2 +MIT + + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +check-more-types +2.24.0 +MIT +Gleb Bahmutov + +The MIT License (MIT) + +Copyright (c) 2014 Kensho + +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. + +chevrotain +11.0.3 +Apache-2.0 +Shahar Soel + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +chevrotain-allstar +0.3.1 +MIT +TypeFox + +Copyright 2022 TypeFox GmbH + +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. + +chokidar +3.6.0 +MIT +Paul Miller (https://paulmillr.com) + +The MIT License (MIT) + +Copyright (c) 2012-2019 Paul Miller (https://paulmillr.com), Elan Shanker + +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. + +chromium-bidi +7.2.0 +Apache-2.0 +The Chromium Authors + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +ci-info +4.3.0 +MIT +Thomas Watson Steen (https://twitter.com/wa7son) + +The MIT License (MIT) + +Copyright (c) 2016 Thomas Watson Steen + +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. + +class-variance-authority +0.7.1 +Apache-2.0 +Joe Bell (https://joebell.co.uk) + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + Copyright 2022 Joe Bell + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +clean-stack +2.2.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +cli-cursor +3.1.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +cli-table3 +0.6.1 +MIT +James Talmage + +MIT License + +Copyright (c) 2014 James Talmage + +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. + +cli-truncate +2.1.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +client-only +0.0.1 +MIT + + +LICENSE TEXT NOT FOUND + +cliui +8.0.1 +ISC +Ben Coe + +Copyright (c) 2015, 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. + +clsx +2.1.1 +MIT +Luke Edwards + +MIT License + +Copyright (c) Luke Edwards (lukeed.com) + +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. + +cmdk +1.1.1 +MIT +Paco + +MIT License + +Copyright (c) 2022 Paco Coursey + +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. + +color +4.2.3 +MIT + + +Copyright (c) 2012 Heather Arthur + +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. + +color-convert +2.0.1 +MIT +Heather Arthur + +Copyright (c) 2011-2016 Heather Arthur + +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. + +color-name +1.1.4 +MIT +DY + +The MIT License (MIT) +Copyright (c) 2015 Dmitry Ivanov + +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. + +color-string +1.9.1 +MIT +Heather Arthur + +Copyright (c) 2011 Heather Arthur + +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. + +colorette +2.0.20 +MIT +Jorge Bucaran + +Copyright © Jorge Bucaran <> + +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. + +colors +1.4.0 +MIT +Marak Squires + +MIT License + +Original Library + - Copyright (c) Marak Squires + +Additional Functionality + - Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +combined-stream +1.0.8 +MIT +Felix Geisendörfer (http://debuggable.com/) + +Copyright (c) 2011 Debuggable Limited + +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. + +commander +4.1.1 +MIT +TJ Holowaychuk + +(The MIT License) + +Copyright (c) 2011 TJ Holowaychuk + +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. + +commander +6.2.1 +MIT +TJ Holowaychuk + +(The MIT License) + +Copyright (c) 2011 TJ Holowaychuk + +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. + +commander +7.2.0 +MIT +TJ Holowaychuk + +(The MIT License) + +Copyright (c) 2011 TJ Holowaychuk + +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. + +commander +8.3.0 +MIT +TJ Holowaychuk + +(The MIT License) + +Copyright (c) 2011 TJ Holowaychuk + +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. + +common-tags +1.8.2 +MIT +Declan de Wet + +License (MIT) +------------- + +Copyright © Declan de Wet + +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. + +confbox +0.1.8 +MIT + + +MIT License + +Copyright (c) Pooya Parsa + +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. + +--- + +js-yaml: https://github.com/nodeca/js-yaml/tree/master + +(The MIT License) + +Copyright (C) 2011-2015 by Vitaly Puzrin + +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. + +--- + +smol-toml: https://github.com/squirrelchat/smol-toml/blob/mistress/LICENSE + +Copyright (c) Squirrel Chat et al., All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. +2. 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. +3. Neither the name of the copyright holder 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 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. + +--- + +jsonc-parser: https://github.com/microsoft/node-jsonc-parser/blob/main/LICENSE.md + +The MIT License (MIT) + +Copyright (c) Microsoft + +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. + +--- + +json5: https://github.com/json5/json5/blob/main/LICENSE.md + +MIT License + +Copyright (c) 2012-2018 Aseem Kishore, and others (https://github.com/json5/json5/graphs/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. + +--- + +detect-indent: https://github.com/sindresorhus/detect-indent/blob/main/license + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +confbox +0.2.2 +MIT + + +MIT License + +Copyright (c) Pooya Parsa + +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. + +--- + +js-yaml: https://github.com/nodeca/js-yaml/tree/master + +(The MIT License) + +Copyright (C) 2011-2015 by Vitaly Puzrin + +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. + +--- + +smol-toml: https://github.com/squirrelchat/smol-toml/blob/mistress/LICENSE + +Copyright (c) Squirrel Chat et al., All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. +2. 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. +3. Neither the name of the copyright holder 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 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. + +--- + +jsonc-parser: https://github.com/microsoft/node-jsonc-parser/blob/main/LICENSE.md + +The MIT License (MIT) + +Copyright (c) Microsoft + +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. + +--- + +json5: https://github.com/json5/json5/blob/main/LICENSE.md + +MIT License + +Copyright (c) 2012-2018 Aseem Kishore, and others (https://github.com/json5/json5/graphs/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. + +--- + +detect-indent: https://github.com/sindresorhus/detect-indent/blob/main/license + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +--- + +ini: https://github.com/npm/ini + +The ISC License + +Copyright (c) Isaac Z. Schlueter and 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. + +core-util-is +1.0.2 +MIT +Isaac Z. Schlueter (http://blog.izs.me/) + +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. + +cose-base +1.0.3 +MIT + + +MIT License + +Copyright (c) 2019 - present, iVis@Bilkent. + +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. + +cose-base +2.2.0 +MIT + + +MIT License + +Copyright (c) 2019 - present, iVis@Bilkent. + +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. + +cosmiconfig +9.0.0 +MIT +Daniel Fischer + +The MIT License (MIT) + +Copyright (c) 2015 David Clark + +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. + +crelt +1.0.6 +MIT +Marijn Haverbeke + +Copyright (C) 2020 by Marijn Haverbeke + +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. + +cross-spawn +7.0.6 +MIT +André Cruz + +The MIT License (MIT) + +Copyright (c) 2018 Made With MOXY Lda + +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. + +css-line-break +2.1.0 +MIT +Niklas von Hertzen + +Copyright (c) 2017 Niklas von Hertzen + +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. + +cssesc +3.0.0 +MIT +Mathias Bynens + +Copyright Mathias Bynens + +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. + +csstype +3.1.3 +MIT +Fredrik Nicol + +Copyright (c) 2017-2018 Fredrik Nicol + +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. + +cypress +14.5.4 +MIT + + +LICENSE TEXT NOT FOUND + +cytoscape +3.33.0 +MIT + + +Copyright (c) 2016-2025, The Cytoscape Consortium. + +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. + +cytoscape-cose-bilkent +4.1.0 +MIT + + +Copyright (c) 2016-2018, The Cytoscape Consortium. + +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. + +cytoscape-fcose +2.2.0 +MIT +iVis-at-Bilkent + +Copyright (c) 2018 - present, iVis-at-Bilkent. + +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 +7.9.0 +ISC +Mike Bostock + +Copyright 2010-2023 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 +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. + +d3-array +2.12.1 +BSD-3-Clause +Mike Bostock + +Copyright 2010-2020 Mike Bostock +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 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. + +d3-array +3.2.4 +ISC +Mike Bostock + +Copyright 2010-2023 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 +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. + +d3-axis +3.0.0 +ISC +Mike Bostock + +Copyright 2010-2021 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 +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. + +d3-brush +3.0.0 +ISC +Mike Bostock + +Copyright 2010-2021 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 +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. + +d3-chord +3.0.1 +ISC +Mike Bostock + +Copyright 2010-2021 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 +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. + +d3-color +3.1.0 +ISC +Mike Bostock + +Copyright 2010-2022 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 +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. + +d3-contour +4.0.2 +ISC +Mike Bostock + +Copyright 2012-2023 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 +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. + +d3-delaunay +6.0.4 +ISC +Mike Bostock + +Copyright 2018-2021 Observable, Inc. +Copyright 2021 Mapbox + +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. + +d3-dispatch +3.0.1 +ISC +Mike Bostock + +Copyright 2010-2021 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 +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. + +d3-drag +3.0.0 +ISC +Mike Bostock + +Copyright 2010-2021 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 +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. + +d3-dsv +3.0.1 +ISC +Mike Bostock + +Copyright 2013-2021 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 +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. + +d3-ease +3.0.1 +BSD-3-Clause +Mike Bostock + +Copyright 2010-2021 Mike Bostock +Copyright 2001 Robert Penner +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 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. + +d3-fetch +3.0.1 +ISC +Mike Bostock + +Copyright 2016-2021 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 +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. + +d3-force +3.0.0 +ISC +Mike Bostock + +Copyright 2010-2021 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 +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. + +d3-format +3.1.0 +ISC +Mike Bostock + +Copyright 2010-2021 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 +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. + +d3-geo +3.1.1 +ISC +Mike Bostock + +Copyright 2010-2024 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 +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. + +This license applies to GeographicLib, versions 1.12 and later. + +Copyright 2008-2012 Charles Karney + +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-hierarchy +3.1.2 +ISC +Mike Bostock + +Copyright 2010-2021 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 +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. + +d3-interpolate +3.0.1 +ISC +Mike Bostock + +Copyright 2010-2021 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 +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. + +d3-path +1.0.9 +BSD-3-Clause +Mike Bostock + +Copyright 2015-2016 Mike Bostock +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 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. + +d3-path +3.1.0 +ISC +Mike Bostock + +Copyright 2015-2022 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 +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. + +d3-polygon +3.0.1 +ISC +Mike Bostock + +Copyright 2010-2021 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 +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. + +d3-quadtree +3.0.1 +ISC +Mike Bostock + +Copyright 2010-2021 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 +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. + +d3-random +3.0.1 +ISC +Mike Bostock + +Copyright 2010-2021 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 +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. + +d3-sankey +0.12.3 +BSD-3-Clause +Mike Bostock + +Copyright 2015, Mike Bostock +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 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. + +d3-scale +4.0.2 +ISC +Mike Bostock + +Copyright 2010-2021 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 +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. + +d3-scale-chromatic +3.1.0 +ISC +Mike Bostock + +Copyright 2010-2024 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 +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. + +Apache-Style Software License for ColorBrewer software and ColorBrewer Color Schemes + +Copyright 2002 Cynthia Brewer, Mark Harrower, and The Pennsylvania State University + +Licensed under the Apache License, Version 2.0 (the "License"); you may not use +this file except in compliance with the License. You may obtain a copy of the +License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed +under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR +CONDITIONS OF ANY KIND, either express or implied. See the License for the +specific language governing permissions and limitations under the License. + +d3-selection +3.0.0 +ISC +Mike Bostock + +Copyright 2010-2021 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 +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. + +d3-shape +1.3.7 +BSD-3-Clause +Mike Bostock + +Copyright 2010-2015 Mike Bostock +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 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. + +d3-shape +3.2.0 +ISC +Mike Bostock + +Copyright 2010-2022 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 +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. + +d3-time +3.1.0 +ISC +Mike Bostock + +Copyright 2010-2022 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 +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. + +d3-time-format +4.1.0 +ISC +Mike Bostock + +Copyright 2010-2021 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 +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. + +d3-timer +3.0.1 +ISC +Mike Bostock + +Copyright 2010-2021 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 +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. + +d3-transition +3.0.1 +ISC +Mike Bostock + +Copyright 2010-2021 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 +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. + +d3-zoom +3.0.0 +ISC +Mike Bostock + +Copyright 2010-2021 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 +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. + +dagre-d3-es +7.0.11 +MIT + + +Original dagre-d3 copyright: Copyright (c) 2013 Chris Pettitt +Original dagre copyright: Copyright (c) 2012-2014 Chris Pettitt +Original graphlib copyright: Copyright (c) 2012-2014 Chris Pettitt + +Copyright (c) 2022-2024 Thibaut Lassalle, David Newell, Alois Klink, Sidharth Vinod and dagre-es 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. + +dashdash +1.14.1 +MIT +Trent Mick (http://trentm.com) + +# This is the MIT license + +Copyright (c) 2013 Trent Mick. All rights reserved. +Copyright (c) 2013 Joyent Inc. 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. + +data-uri-to-buffer +6.0.2 +MIT +Nathan Rajlich (http://n8.io/) + +(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. + +dayjs +1.11.13 +MIT +iamkun + +MIT License + +Copyright (c) 2018-present, iamkun + +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. + +debug +3.2.7 +MIT +TJ Holowaychuk + +(The MIT License) + +Copyright (c) 2014 TJ Holowaychuk + +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. + +debug +4.4.1 +MIT +Josh Junon (https://github.com/qix-) + +(The MIT License) + +Copyright (c) 2014-2017 TJ Holowaychuk +Copyright (c) 2018-2021 Josh Junon + +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. + +decimal.js-light +2.5.1 +MIT +Michael Mclaughlin + +The MIT Expat Licence. + +Copyright (c) 2020 Michael Mclaughlin + +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. + +degenerator +5.0.1 +MIT +Nathan Rajlich (http://n8.io/) + +LICENSE TEXT NOT FOUND + +delaunator +5.0.1 +ISC +Vladimir Agafonkin + +ISC License + +Copyright (c) 2021, Mapbox + +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. + +delayed-stream +1.0.0 +MIT +Felix Geisendörfer (http://debuggable.com/) + +Copyright (c) 2011 Debuggable Limited + +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. + +detect-libc +2.0.4 +Apache-2.0 +Lovell Fuller + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +detect-node-es +1.1.0 +MIT +Ilya Kantor + +MIT License + +Copyright (c) 2017 Ilya Kantor + +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. + +devtools-protocol +0.0.1475386 +BSD-3-Clause +The Chromium Authors + +// Copyright 2014 The Chromium Authors. 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 Google Inc. 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. + +didyoumean +1.2.2 +Apache-2.0 +Dave Porter + +## License + +didYouMean.js copyright (c) 2013 Dave Porter. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License +[here](http://www.apache.org/licenses/LICENSE-2.0). + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + +dlv +1.1.3 +MIT +Jason Miller (http://jasonformat.com) + +LICENSE TEXT NOT FOUND + +dom-helpers +5.2.1 +MIT +Jason Quense + +The MIT License (MIT) + +Copyright (c) 2015 Jason Quense + +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. + +dompurify +3.2.6 +(MPL-2.0 OR Apache-2.0) +Dr.-Ing. Mario Heiderich, Cure53 (https://cure53.de/) + +DOMPurify +Copyright 2025 Dr.-Ing. Mario Heiderich, Cure53 + +DOMPurify is free software; you can redistribute it and/or modify it under the +terms of either: + +a) the Apache License Version 2.0, or +b) the Mozilla Public License Version 2.0 + +----------------------------------------------------------------------------- + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +----------------------------------------------------------------------------- +Mozilla Public License, version 2.0 + +1. Definitions + +1.1. “Contributor” + + means each individual or legal entity that creates, contributes to the + creation of, or owns Covered Software. + +1.2. “Contributor Version” + + means the combination of the Contributions of others (if any) used by a + Contributor and that particular Contributor’s Contribution. + +1.3. “Contribution” + + means Covered Software of a particular Contributor. + +1.4. “Covered Software” + + means Source Code Form to which the initial Contributor has attached the + notice in Exhibit A, the Executable Form of such Source Code Form, and + Modifications of such Source Code Form, in each case including portions + thereof. + +1.5. “Incompatible With Secondary Licenses” + means + + a. that the initial Contributor has attached the notice described in + Exhibit B to the Covered Software; or + + b. that the Covered Software was made available under the terms of version + 1.1 or earlier of the License, but not also under the terms of a + Secondary License. + +1.6. “Executable Form” + + means any form of the work other than Source Code Form. + +1.7. “Larger Work” + + means a work that combines Covered Software with other material, in a separate + file or files, that is not Covered Software. + +1.8. “License” + + means this document. + +1.9. “Licensable” + + means having the right to grant, to the maximum extent possible, whether at the + time of the initial grant or subsequently, any and all of the rights conveyed by + this License. + +1.10. “Modifications” + + means any of the following: + + a. any file in Source Code Form that results from an addition to, deletion + from, or modification of the contents of Covered Software; or + + b. any new file in Source Code Form that contains any Covered Software. + +1.11. “Patent Claims” of a Contributor + + means any patent claim(s), including without limitation, method, process, + and apparatus claims, in any patent Licensable by such Contributor that + would be infringed, but for the grant of the License, by the making, + using, selling, offering for sale, having made, import, or transfer of + either its Contributions or its Contributor Version. + +1.12. “Secondary License” + + means either the GNU General Public License, Version 2.0, the GNU Lesser + General Public License, Version 2.1, the GNU Affero General Public + License, Version 3.0, or any later versions of those licenses. + +1.13. “Source Code Form” + + means the form of the work preferred for making modifications. + +1.14. “You” (or “Your”) + + means an individual or a legal entity exercising rights under this + License. For legal entities, “You” includes any entity that controls, is + controlled by, or is under common control with You. For purposes of this + definition, “control” means (a) the power, direct or indirect, to cause + the direction or management of such entity, whether by contract or + otherwise, or (b) ownership of more than fifty percent (50%) of the + outstanding shares or beneficial ownership of such entity. + + +2. License Grants and Conditions + +2.1. Grants + + Each Contributor hereby grants You a world-wide, royalty-free, + non-exclusive license: + + a. under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or as + part of a Larger Work; and + + b. under Patent Claims of such Contributor to make, use, sell, offer for + sale, have made, import, and otherwise transfer either its Contributions + or its Contributor Version. + +2.2. Effective Date + + The licenses granted in Section 2.1 with respect to any Contribution become + effective for each Contribution on the date the Contributor first distributes + such Contribution. + +2.3. Limitations on Grant Scope + + The licenses granted in this Section 2 are the only rights granted under this + License. No additional rights or licenses will be implied from the distribution + or licensing of Covered Software under this License. Notwithstanding Section + 2.1(b) above, no patent license is granted by a Contributor: + + a. for any code that a Contributor has removed from Covered Software; or + + b. for infringements caused by: (i) Your and any other third party’s + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or + + c. under Patent Claims infringed by Covered Software in the absence of its + Contributions. + + This License does not grant any rights in the trademarks, service marks, or + logos of any Contributor (except as may be necessary to comply with the + notice requirements in Section 3.4). + +2.4. Subsequent Licenses + + No Contributor makes additional grants as a result of Your choice to + distribute the Covered Software under a subsequent version of this License + (see Section 10.2) or under the terms of a Secondary License (if permitted + under the terms of Section 3.3). + +2.5. Representation + + Each Contributor represents that the Contributor believes its Contributions + are its original creation(s) or it has sufficient rights to grant the + rights to its Contributions conveyed by this License. + +2.6. Fair Use + + This License is not intended to limit any rights You have under applicable + copyright doctrines of fair use, fair dealing, or other equivalents. + +2.7. Conditions + + Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in + Section 2.1. + + +3. Responsibilities + +3.1. Distribution of Source Form + + All distribution of Covered Software in Source Code Form, including any + Modifications that You create or to which You contribute, must be under the + terms of this License. You must inform recipients that the Source Code Form + of the Covered Software is governed by the terms of this License, and how + they can obtain a copy of this License. You may not attempt to alter or + restrict the recipients’ rights in the Source Code Form. + +3.2. Distribution of Executable Form + + If You distribute Covered Software in Executable Form then: + + a. such Covered Software must also be made available in Source Code Form, + as described in Section 3.1, and You must inform recipients of the + Executable Form how they can obtain a copy of such Source Code Form by + reasonable means in a timely manner, at a charge no more than the cost + of distribution to the recipient; and + + b. You may distribute such Executable Form under the terms of this License, + or sublicense it under different terms, provided that the license for + the Executable Form does not attempt to limit or alter the recipients’ + rights in the Source Code Form under this License. + +3.3. Distribution of a Larger Work + + You may create and distribute a Larger Work under terms of Your choice, + provided that You also comply with the requirements of this License for the + Covered Software. If the Larger Work is a combination of Covered Software + with a work governed by one or more Secondary Licenses, and the Covered + Software is not Incompatible With Secondary Licenses, this License permits + You to additionally distribute such Covered Software under the terms of + such Secondary License(s), so that the recipient of the Larger Work may, at + their option, further distribute the Covered Software under the terms of + either this License or such Secondary License(s). + +3.4. Notices + + You may not remove or alter the substance of any license notices (including + copyright notices, patent notices, disclaimers of warranty, or limitations + of liability) contained within the Source Code Form of the Covered + Software, except that You may alter any license notices to the extent + required to remedy known factual inaccuracies. + +3.5. Application of Additional Terms + + You may choose to offer, and to charge a fee for, warranty, support, + indemnity or liability obligations to one or more recipients of Covered + Software. However, You may do so only on Your own behalf, and not on behalf + of any Contributor. You must make it absolutely clear that any such + warranty, support, indemnity, or liability obligation is offered by You + alone, and You hereby agree to indemnify every Contributor for any + liability incurred by such Contributor as a result of warranty, support, + indemnity or liability terms You offer. You may include additional + disclaimers of warranty and limitations of liability specific to any + jurisdiction. + +4. Inability to Comply Due to Statute or Regulation + + If it is impossible for You to comply with any of the terms of this License + with respect to some or all of the Covered Software due to statute, judicial + order, or regulation then You must: (a) comply with the terms of this License + to the maximum extent possible; and (b) describe the limitations and the code + they affect. Such description must be placed in a text file included with all + distributions of the Covered Software under this License. Except to the + extent prohibited by statute or regulation, such description must be + sufficiently detailed for a recipient of ordinary skill to be able to + understand it. + +5. Termination + +5.1. The rights granted under this License will terminate automatically if You + fail to comply with any of its terms. However, if You become compliant, + then the rights granted under this License from a particular Contributor + are reinstated (a) provisionally, unless and until such Contributor + explicitly and finally terminates Your grants, and (b) on an ongoing basis, + if such Contributor fails to notify You of the non-compliance by some + reasonable means prior to 60 days after You have come back into compliance. + Moreover, Your grants from a particular Contributor are reinstated on an + ongoing basis if such Contributor notifies You of the non-compliance by + some reasonable means, this is the first time You have received notice of + non-compliance with this License from such Contributor, and You become + compliant prior to 30 days after Your receipt of the notice. + +5.2. If You initiate litigation against any entity by asserting a patent + infringement claim (excluding declaratory judgment actions, counter-claims, + and cross-claims) alleging that a Contributor Version directly or + indirectly infringes any patent, then the rights granted to You by any and + all Contributors for the Covered Software under Section 2.1 of this License + shall terminate. + +5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user + license agreements (excluding distributors and resellers) which have been + validly granted by You or Your distributors under this License prior to + termination shall survive termination. + +6. Disclaimer of Warranty + + Covered Software is provided under this License on an “as is” basis, without + warranty of any kind, either expressed, implied, or statutory, including, + without limitation, warranties that the Covered Software is free of defects, + merchantable, fit for a particular purpose or non-infringing. The entire + risk as to the quality and performance of the Covered Software is with You. + Should any Covered Software prove defective in any respect, You (not any + Contributor) assume the cost of any necessary servicing, repair, or + correction. This disclaimer of warranty constitutes an essential part of this + License. No use of any Covered Software is authorized under this License + except under this disclaimer. + +7. Limitation of Liability + + Under no circumstances and under no legal theory, whether tort (including + negligence), contract, or otherwise, shall any Contributor, or anyone who + distributes Covered Software as permitted above, be liable to You for any + direct, indirect, special, incidental, or consequential damages of any + character including, without limitation, damages for lost profits, loss of + goodwill, work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses, even if such party shall have been + informed of the possibility of such damages. This limitation of liability + shall not apply to liability for death or personal injury resulting from such + party’s negligence to the extent applicable law prohibits such limitation. + Some jurisdictions do not allow the exclusion or limitation of incidental or + consequential damages, so this exclusion and limitation may not apply to You. + +8. Litigation + + Any litigation relating to this License may be brought only in the courts of + a jurisdiction where the defendant maintains its principal place of business + and such litigation shall be governed by laws of that jurisdiction, without + reference to its conflict-of-law provisions. Nothing in this Section shall + prevent a party’s ability to bring cross-claims or counter-claims. + +9. Miscellaneous + + This License represents the complete agreement concerning the subject matter + hereof. If any provision of this License is held to be unenforceable, such + provision shall be reformed only to the extent necessary to make it + enforceable. Any law or regulation which provides that the language of a + contract shall be construed against the drafter shall not be used to construe + this License against a Contributor. + + +10. Versions of the License + +10.1. New Versions + + Mozilla Foundation is the license steward. Except as provided in Section + 10.3, no one other than the license steward has the right to modify or + publish new versions of this License. Each version will be given a + distinguishing version number. + +10.2. Effect of New Versions + + You may distribute the Covered Software under the terms of the version of + the License under which You originally received the Covered Software, or + under the terms of any subsequent version published by the license + steward. + +10.3. Modified Versions + + If you create software not governed by this License, and you want to + create a new license for such software, you may create and use a modified + version of this License if you rename the license and remove any + references to the name of the license steward (except to note that such + modified license differs from this License). + +10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses + If You choose to distribute Source Code Form that is Incompatible With + Secondary Licenses under the terms of this version of the License, the + notice described in Exhibit B of this License must be attached. + +Exhibit A - Source Code Form License Notice + + This Source Code Form is subject to the + terms of the Mozilla Public License, v. + 2.0. If a copy of the MPL was not + distributed with this file, You can + obtain one at + http://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular file, then +You may include the notice in a location (such as a LICENSE file in a relevant +directory) where a recipient would be likely to look for such a notice. + +You may add additional accurate notices of copyright ownership. + +Exhibit B - “Incompatible With Secondary Licenses” Notice + + This Source Code Form is “Incompatible + With Secondary Licenses”, as defined by + the Mozilla Public License, v. 2.0. + +dunder-proto +1.0.1 +MIT +Jordan Harband + +MIT License + +Copyright (c) 2024 ECMAScript Shims + +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. + +eastasianwidth +0.2.0 +MIT +Masaki Komagata + +LICENSE TEXT NOT FOUND + +ecc-jsbn +0.1.2 +MIT +Jeremie Miller + +The MIT License (MIT) + +Copyright (c) 2014 Jeremie Miller + +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. + +emoji-regex +8.0.0 +MIT +Mathias Bynens + +Copyright Mathias Bynens + +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. + +emoji-regex +9.2.2 +MIT +Mathias Bynens + +Copyright Mathias Bynens + +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. + +end-of-stream +1.4.5 +MIT +Mathias Buus + +The MIT License (MIT) + +Copyright (c) 2014 Mathias Buus + +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. + +enquirer +2.4.1 +MIT +Jon Schlinkert (https://github.com/jonschlinkert) + +The MIT License (MIT) + +Copyright (c) 2016-present, Jon Schlinkert. + +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. + +entities +4.5.0 +BSD-2-Clause +Felix Boehm + +Copyright (c) Felix Böhm +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. + +THIS 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, +EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +env-paths +2.2.1 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +error-ex +1.3.2 +MIT + + +The MIT License (MIT) + +Copyright (c) 2015 JD Ballard + +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. + +es-define-property +1.0.1 +MIT +Jordan Harband + +MIT License + +Copyright (c) 2024 Jordan Harband + +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. + +es-errors +1.3.0 +MIT +Jordan Harband + +MIT License + +Copyright (c) 2024 Jordan Harband + +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. + +es-object-atoms +1.1.1 +MIT +Jordan Harband + +MIT License + +Copyright (c) 2024 Jordan Harband + +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. + +es-set-tostringtag +2.1.0 +MIT +Jordan Harband + +MIT License + +Copyright (c) 2022 ECMAScript Shims + +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. + +esbuild +0.25.8 +MIT + + +MIT License + +Copyright (c) 2020 Evan Wallace + +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. + +escalade +3.2.0 +MIT +Luke Edwards + +MIT License + +Copyright (c) Luke Edwards (lukeed.com) + +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. + +escape-string-regexp +1.0.5 +MIT +Sindre Sorhus + +The MIT License (MIT) + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +escape-string-regexp +4.0.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +escodegen +2.1.0 +BSD-2-Clause + + +Copyright (C) 2012 Yusuke Suzuki (twitter: @Constellation) and other contributors. + +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. + +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 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. + +esprima +4.0.1 +BSD-2-Clause +Ariya Hidayat + +Copyright JS Foundation and other contributors, https://js.foundation/ + +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. + +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 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. + +estraverse +5.3.0 +BSD-2-Clause + + +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. + +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 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. + +esutils +2.0.3 +BSD-2-Clause + + +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. + +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 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. + +eventemitter2 +6.4.7 +MIT +hij1nx http://twitter.com/hij1nx + +The MIT License (MIT) + +Copyright (c) 2016 Paolo Fragomeni and 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. + +eventemitter3 +4.0.7 +MIT +Arnout Kazemier + +The MIT License (MIT) + +Copyright (c) 2014 Arnout Kazemier + +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. + +execa +4.1.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +executable +4.1.1 +MIT +Kevin Mårtensson + +The MIT License (MIT) + +Copyright (c) Kevin Mårtensson + +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. + +exsolve +1.0.7 +MIT + + +MIT License + +Copyright (c) Pooya Parsa + +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 is a derivative work based on: +. + +--- + +This is a derivative work based on: +. + +Which is licensed: + +""" +(The MIT License) + +Copyright (c) 2021 Titus Wormer + +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 is a derivative work based on: +. + +Which is licensed: + +""" +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. +""" + +extend +3.0.2 +MIT +Stefan Thomas (http://www.justmoon.net) + +The MIT License (MIT) + +Copyright (c) 2014 Stefan Thomas + +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. + +extract-zip +2.0.1 +BSD-2-Clause +max ogden + +Copyright (c) 2014 Max Ogden and other 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. + +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. + +extsprintf +1.3.0 +MIT + + +Copyright (c) 2012, Joyent, Inc. 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 + +fast-deep-equal +3.1.3 +MIT +Evgeny Poberezkin + +MIT License + +Copyright (c) 2017 Evgeny Poberezkin + +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. + +fast-equals +5.2.2 +MIT +tony_quetano@planttheidea.com + +MIT License + +Copyright (c) 2017 Tony Quetano + +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. + +fast-fifo +1.3.2 +MIT +Mathias Buus (@mafintosh) + +The MIT License (MIT) + +Copyright (c) 2019 Mathias Buus + +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. + +fast-glob +3.3.3 +MIT +Denis Malinochkin + +The MIT License (MIT) + +Copyright (c) Denis Malinochkin + +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. + +fastq +1.19.1 +ISC +Matteo Collina + +Copyright (c) 2015-2020, Matteo Collina + +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. + +fd-slicer +1.1.0 +MIT +Andrew Kelley + +Copyright (c) 2014 Andrew Kelley + +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. + +figures +3.2.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +fill-range +7.1.1 +MIT +Jon Schlinkert (https://github.com/jonschlinkert) + +The MIT License (MIT) + +Copyright (c) 2014-present, Jon Schlinkert. + +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. + +foreground-child +3.3.1 +ISC +Isaac Z. Schlueter (http://blog.izs.me/) + +The ISC License + +Copyright (c) 2015-2023 Isaac Z. Schlueter and 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. + +forever-agent +0.6.1 +Apache-2.0 +Mikeal Rogers (http://www.futurealoof.com) + +Apache License + +Version 2.0, January 2004 + +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + +You must give any other recipients of the Work or Derivative Works a copy of this License; and + +You must cause any modified files to carry prominent notices stating that You changed the files; and + +You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and + +If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +form-data +4.0.4 +MIT +Felix Geisendörfer (http://debuggable.com/) + +Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and 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. + +fs-extra +9.1.0 +MIT +JP Richardson + +(The MIT License) + +Copyright (c) 2011-2017 JP Richardson + +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. + +function-bind +1.1.2 +MIT +Raynos + +Copyright (c) 2013 Raynos. + +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. + +get-caller-file +2.0.5 +ISC +Stefan Penner + +ISC License (ISC) +Copyright 2018 Stefan Penner + +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. + +get-intrinsic +1.3.0 +MIT +Jordan Harband + +MIT License + +Copyright (c) 2020 Jordan Harband + +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. + +get-nonce +1.0.1 +MIT +Anton Korzunov + +MIT License + +Copyright (c) 2020 Anton Korzunov + +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. + +get-proto +1.0.1 +MIT +Jordan Harband + +MIT License + +Copyright (c) 2025 Jordan Harband + +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. + +get-stream +5.2.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +get-uri +6.0.5 +MIT +Nathan Rajlich (http://n8.io/) + +(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. + +getos +3.2.1 +MIT +william.jblankenship@gmail.com + +The MIT License (MIT) + +Copyright (c) 2016 William Blankenship + +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. + +getpass +0.1.7 +MIT +Alex Wilson + +Copyright Joyent, Inc. 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. + +glob +10.4.5 +ISC +Isaac Z. Schlueter (https://blog.izs.me/) + +The ISC License + +Copyright (c) 2009-2023 Isaac Z. Schlueter and 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. + +glob-parent +5.1.2 +ISC +Gulp Team (https://gulpjs.com/) + +The ISC License + +Copyright (c) 2015, 2019 Elan Shanker + +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. + +glob-parent +6.0.2 +ISC +Gulp Team (https://gulpjs.com/) + +The ISC License + +Copyright (c) 2015, 2019 Elan Shanker, 2021 Blaine Bublitz , Eric Schoffstall and other 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. + +global-dirs +3.0.1 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +globals +15.15.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +gopd +1.2.0 +MIT +Jordan Harband + +MIT License + +Copyright (c) 2022 Jordan Harband + +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. + +graceful-fs +4.2.11 +ISC + + +The ISC License + +Copyright (c) 2011-2022 Isaac Z. Schlueter, Ben Noordhuis, and 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. + +hachure-fill +0.5.2 +MIT +Preet Shihn + +MIT License + +Copyright (c) 2023 Preet Shihn + +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. + +has-flag +4.0.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +has-symbols +1.1.0 +MIT +Jordan Harband + +MIT License + +Copyright (c) 2016 Jordan Harband + +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. + +has-tostringtag +1.0.2 +MIT +Jordan Harband + +MIT License + +Copyright (c) 2021 Inspect JS + +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. + +hasha +5.2.2 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +hasown +2.0.2 +MIT +Jordan Harband + +MIT License + +Copyright (c) Jordan Harband and 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. + +html2canvas +1.4.1 +MIT +Niklas von Hertzen + +Copyright (c) 2012 Niklas von Hertzen + +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. + +http-proxy-agent +7.0.2 +MIT +Nathan Rajlich (http://n8.io/) + +(The MIT License) + +Copyright (c) 2013 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. + +http-signature +1.4.0 +MIT +MNX Cloud (mnx.io) + +Copyright Joyent, Inc. 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. + +https-proxy-agent +7.0.6 +MIT +Nathan Rajlich (http://n8.io/) + +(The MIT License) + +Copyright (c) 2013 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. + +human-signals +1.1.1 +Apache-2.0 +ehmicky (https://github.com/ehmicky) + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2019 ehmicky + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +iconv-lite +0.6.3 +MIT +Alexander Shtuchkin + +Copyright (c) 2011 Alexander Shtuchkin + +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. + +ieee754 +1.2.1 +BSD-3-Clause +Feross Aboukhadijeh + +Copyright 2008 Fair Oaks Labs, Inc. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + +2. 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. + +3. Neither the name of the copyright holder 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 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. + +immer +10.1.1 +MIT +Michel Weststrate + +MIT License + +Copyright (c) 2017 Michel Weststrate + +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. + +import-fresh +3.3.1 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +indent-string +4.0.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +ini +2.0.0 +ISC +Isaac Z. Schlueter (http://blog.izs.me/) + +The ISC License + +Copyright (c) Isaac Z. Schlueter and 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. + +internmap +1.0.1 +ISC +Mike Bostock + +Copyright 2021 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 +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 +2.0.3 +ISC +Mike Bostock + +Copyright 2021 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 +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. + +ip-address +9.0.5 +MIT +Beau Gunderson (https://beaugunderson.com/) + +Copyright (C) 2011 by Beau Gunderson + +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. + +is-arrayish +0.2.1 +MIT +Qix (http://github.com/qix-) + +The MIT License (MIT) + +Copyright (c) 2015 JD Ballard + +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. + +is-arrayish +0.3.2 +MIT +Qix (http://github.com/qix-) + +The MIT License (MIT) + +Copyright (c) 2015 JD Ballard + +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. + +is-binary-path +2.1.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) 2019 Sindre Sorhus (https://sindresorhus.com), Paul Miller (https://paulmillr.com) + +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. + +is-core-module +2.16.1 +MIT +Jordan Harband + +The MIT License (MIT) + +Copyright (c) 2014 Dave Justice + +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. + +is-extglob +2.1.1 +MIT +Jon Schlinkert (https://github.com/jonschlinkert) + +The MIT License (MIT) + +Copyright (c) 2014-2016, Jon Schlinkert + +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. + +is-fullwidth-code-point +3.0.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +is-glob +4.0.3 +MIT +Jon Schlinkert (https://github.com/jonschlinkert) + +The MIT License (MIT) + +Copyright (c) 2014-2017, Jon Schlinkert. + +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. + +is-installed-globally +0.4.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +is-number +7.0.0 +MIT +Jon Schlinkert (https://github.com/jonschlinkert) + +The MIT License (MIT) + +Copyright (c) 2014-present, Jon Schlinkert. + +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. + +is-path-inside +3.0.3 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +is-stream +2.0.1 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +is-typedarray +1.0.0 +MIT +Hugh Kennedy (http://hughsk.io/) + +This software is released under the 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. + +is-unicode-supported +0.1.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +isexe +2.0.0 +ISC +Isaac Z. Schlueter (http://blog.izs.me/) + +The ISC License + +Copyright (c) Isaac Z. Schlueter and 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. + +isstream +0.1.2 +MIT +Rod Vagg + +The MIT License (MIT) +===================== + +Copyright (c) 2015 Rod Vagg +--------------------------- + +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. + +jackspeak +3.4.3 +BlueOak-1.0.0 +Isaac Z. Schlueter + +# Blue Oak Model License + +Version 1.0.0 + +## Purpose + +This license gives everyone as much permission to work with +this software as possible, while protecting contributors +from liability. + +## Acceptance + +In order to receive this license, you must agree to its +rules. The rules of this license are both obligations +under that agreement and conditions to your license. +You must not do anything with this software that triggers +a rule that you cannot or will not follow. + +## Copyright + +Each contributor licenses you to do everything with this +software that would otherwise infringe that contributor's +copyright in it. + +## Notices + +You must ensure that everyone who gets a copy of +any part of this software from you, with or without +changes, also gets the text of this license or a link to +. + +## Excuse + +If anyone notifies you in writing that you have not +complied with [Notices](#notices), you can keep your +license by taking all practical steps to comply within 30 +days after the notice. If you do not do so, your license +ends immediately. + +## Patent + +Each contributor licenses you to do everything with this +software that would otherwise infringe any patent claims +they can license or become able to license. + +## Reliability + +No contributor can revoke this license. + +## No Liability + +**_As far as the law allows, this software comes as is, +without any warranty or condition, and no contributor +will be liable to anyone for any damages related to this +software or this license, under any kind of legal claim._** + +jiti +1.21.7 +MIT + + +MIT License + +Copyright (c) Pooya Parsa + +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. + +js-tokens +4.0.0 +MIT +Simon Lydell + +The MIT License (MIT) + +Copyright (c) 2014, 2015, 2016, 2017, 2018 Simon Lydell + +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. + +js-yaml +4.1.0 +MIT +Vladimir Zapparov + +(The MIT License) + +Copyright (C) 2011-2015 by Vitaly Puzrin + +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. + +jsbn +0.1.1 +MIT +Tom Wu + +Licensing +--------- + +This software is covered under the following copyright: + +/* + * Copyright (c) 2003-2005 Tom Wu + * 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" AND WITHOUT WARRANTY OF ANY KIND, + * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY + * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. + * + * IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL, + * INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER + * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF + * THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT + * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * + * In addition, the following condition applies: + * + * All redistributions must retain an intact copy of this copyright notice + * and disclaimer. + */ + +Address all questions regarding this license to: + + Tom Wu + tjw@cs.Stanford.EDU + +jsbn +1.1.0 +MIT +Tom Wu + +Licensing +--------- + +This software is covered under the following copyright: + +/* + * Copyright (c) 2003-2005 Tom Wu + * 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" AND WITHOUT WARRANTY OF ANY KIND, + * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY + * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. + * + * IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL, + * INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER + * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF + * THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT + * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * + * In addition, the following condition applies: + * + * All redistributions must retain an intact copy of this copyright notice + * and disclaimer. + */ + +Address all questions regarding this license to: + + Tom Wu + tjw@cs.Stanford.EDU + +json-parse-even-better-errors +2.3.1 +MIT +Kat Marchán + +Copyright 2017 Kat Marchán +Copyright npm, 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 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 library is a fork of 'better-json-errors' by Kat Marchán, extended and +distributed under the terms of the MIT license above. + +json-schema +0.4.0 +(AFL-2.1 OR BSD-3-Clause) +Kris Zyp + +Dojo is available under *either* the terms of the BSD 3-Clause "New" License *or* the +Academic Free License version 2.1. As a recipient of Dojo, you may choose which +license to receive this code under (except as noted in per-module LICENSE +files). Some modules may not be the copyright of the Dojo Foundation. These +modules contain explicit declarations of copyright in both the LICENSE files in +the directories in which they reside and in the code itself. No external +contributions are allowed under licenses which are fundamentally incompatible +with the AFL-2.1 OR and BSD-3-Clause licenses that Dojo is distributed under. + +The text of the AFL-2.1 and BSD-3-Clause licenses is reproduced below. + +------------------------------------------------------------------------------- +BSD 3-Clause "New" License: +********************** + +Copyright (c) 2005-2015, The Dojo Foundation +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 Dojo Foundation 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. + +------------------------------------------------------------------------------- +The Academic Free License, v. 2.1: +********************************** + +This Academic Free License (the "License") applies to any original work of +authorship (the "Original Work") whose owner (the "Licensor") has placed the +following notice immediately following the copyright notice for the Original +Work: + +Licensed under the Academic Free License version 2.1 + +1) Grant of Copyright License. Licensor hereby grants You a world-wide, +royalty-free, non-exclusive, perpetual, sublicenseable license to do the +following: + +a) to reproduce the Original Work in copies; + +b) to prepare derivative works ("Derivative Works") based upon the Original +Work; + +c) to distribute copies of the Original Work and Derivative Works to the +public; + +d) to perform the Original Work publicly; and + +e) to display the Original Work publicly. + +2) Grant of Patent License. Licensor hereby grants You a world-wide, +royalty-free, non-exclusive, perpetual, sublicenseable license, under patent +claims owned or controlled by the Licensor that are embodied in the Original +Work as furnished by the Licensor, to make, use, sell and offer for sale the +Original Work and Derivative Works. + +3) Grant of Source Code License. The term "Source Code" means the preferred +form of the Original Work for making modifications to it and all available +documentation describing how to modify the Original Work. Licensor hereby +agrees to provide a machine-readable copy of the Source Code of the Original +Work along with each copy of the Original Work that Licensor distributes. +Licensor reserves the right to satisfy this obligation by placing a +machine-readable copy of the Source Code in an information repository +reasonably calculated to permit inexpensive and convenient access by You for as +long as Licensor continues to distribute the Original Work, and by publishing +the address of that information repository in a notice immediately following +the copyright notice that applies to the Original Work. + +4) Exclusions From License Grant. Neither the names of Licensor, nor the names +of any contributors to the Original Work, nor any of their trademarks or +service marks, may be used to endorse or promote products derived from this +Original Work without express prior written permission of the Licensor. Nothing +in this License shall be deemed to grant any rights to trademarks, copyrights, +patents, trade secrets or any other intellectual property of Licensor except as +expressly stated herein. No patent license is granted to make, use, sell or +offer to sell embodiments of any patent claims other than the licensed claims +defined in Section 2. No right is granted to the trademarks of Licensor even if +such marks are included in the Original Work. Nothing in this License shall be +interpreted to prohibit Licensor from licensing under different terms from this +License any Original Work that Licensor otherwise would have a right to +license. + +5) This section intentionally omitted. + +6) Attribution Rights. You must retain, in the Source Code of any Derivative +Works that You create, all copyright, patent or trademark notices from the +Source Code of the Original Work, as well as any notices of licensing and any +descriptive text identified therein as an "Attribution Notice." You must cause +the Source Code for any Derivative Works that You create to carry a prominent +Attribution Notice reasonably calculated to inform recipients that You have +modified the Original Work. + +7) Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that +the copyright in and to the Original Work and the patent rights granted herein +by Licensor are owned by the Licensor or are sublicensed to You under the terms +of this License with the permission of the contributor(s) of those copyrights +and patent rights. Except as expressly stated in the immediately proceeding +sentence, the Original Work is provided under this License on an "AS IS" BASIS +and WITHOUT WARRANTY, either express or implied, including, without limitation, +the warranties of NON-INFRINGEMENT, MERCHANTABILITY or FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. +This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No +license to Original Work is granted hereunder except under this disclaimer. + +8) Limitation of Liability. Under no circumstances and under no legal theory, +whether in tort (including negligence), contract, or otherwise, shall the +Licensor be liable to any person for any direct, indirect, special, incidental, +or consequential damages of any character arising as a result of this License +or the use of the Original Work including, without limitation, damages for loss +of goodwill, work stoppage, computer failure or malfunction, or any and all +other commercial damages or losses. This limitation of liability shall not +apply to liability for death or personal injury resulting from Licensor's +negligence to the extent applicable law prohibits such limitation. Some +jurisdictions do not allow the exclusion or limitation of incidental or +consequential damages, so this exclusion and limitation may not apply to You. + +9) Acceptance and Termination. If You distribute copies of the Original Work or +a Derivative Work, You must make a reasonable effort under the circumstances to +obtain the express assent of recipients to the terms of this License. Nothing +else but this License (or another written agreement between Licensor and You) +grants You permission to create Derivative Works based upon the Original Work +or to exercise any of the rights granted in Section 1 herein, and any attempt +to do so except under the terms of this License (or another written agreement +between Licensor and You) is expressly prohibited by U.S. copyright law, the +equivalent laws of other countries, and by international treaty. Therefore, by +exercising any of the rights granted to You in Section 1 herein, You indicate +Your acceptance of this License and all of its terms and conditions. + +10) Termination for Patent Action. This License shall terminate automatically +and You may no longer exercise any of the rights granted to You by this License +as of the date You commence an action, including a cross-claim or counterclaim, +against Licensor or any licensee alleging that the Original Work infringes a +patent. This termination provision shall not apply for an action alleging +patent infringement by combinations of the Original Work with other software or +hardware. + +11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this +License may be brought only in the courts of a jurisdiction wherein the +Licensor resides or in which Licensor conducts its primary business, and under +the laws of that jurisdiction excluding its conflict-of-law provisions. The +application of the United Nations Convention on Contracts for the International +Sale of Goods is expressly excluded. Any use of the Original Work outside the +scope of this License or after its termination shall be subject to the +requirements and penalties of the U.S. Copyright Act, 17 U.S.C. § 101 et +seq., the equivalent laws of other countries, and international treaty. This +section shall survive the termination of this License. + +12) Attorneys Fees. In any action to enforce the terms of this License or +seeking damages relating thereto, the prevailing party shall be entitled to +recover its costs and expenses, including, without limitation, reasonable +attorneys' fees and costs incurred in connection with such action, including +any appeal of such action. This section shall survive the termination of this +License. + +13) Miscellaneous. This License represents the complete agreement concerning +the subject matter hereof. If any provision of this License is held to be +unenforceable, such provision shall be reformed only to the extent necessary to +make it enforceable. + +14) Definition of "You" in This License. "You" throughout this License, whether +in upper or lower case, means an individual or a legal entity exercising rights +under, and complying with all of the terms of, this License. For legal +entities, "You" includes any entity that controls, is controlled by, or is +under common control with you. For purposes of this definition, "control" means +(i) the power, direct or indirect, to cause the direction or management of such +entity, whether by contract or otherwise, or (ii) ownership of fifty percent +(50%) or more of the outstanding shares, or (iii) beneficial ownership of such +entity. + +15) Right to Use. You may use the Original Work in all ways not otherwise +restricted or conditioned by this License or by law, and Licensor promises not +to interfere with or be responsible for such uses by You. + +This license is Copyright (C) 2003-2004 Lawrence E. Rosen. All rights reserved. +Permission is hereby granted to copy and distribute this license without +modification. This license may not be modified without the express written +permission of its copyright owner. + +json-stringify-safe +5.0.1 +ISC +Isaac Z. Schlueter (http://blog.izs.me) + +The ISC License + +Copyright (c) Isaac Z. Schlueter and 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. + +jsonfile +6.1.0 +MIT +JP Richardson + +(The MIT License) + +Copyright (c) 2012-2015, JP Richardson + +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. + +jsonrepair +3.13.0 +ISC +Jos de Jong + +The ISC License + +Copyright (c) 2020-2025 by Jos de Jong + +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 ISC DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC 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. + +jsprim +2.0.2 +MIT + + +Copyright (c) 2012, Joyent, Inc. 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 + +katex +0.16.22 +MIT + + +The MIT License (MIT) + +Copyright (c) 2013-2020 Khan Academy and other 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. + +khroma +2.1.0 + + + +The MIT License (MIT) + +Copyright (c) 2019-present Fabio Spampinato, Andrew Maney + +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. + +kolorist +1.8.0 +MIT +Marvin Hagemeister + +The MIT License (MIT) + +Copyright (c) 2020-present Marvin Hagemeister + +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. + +langium +3.3.1 +MIT +TypeFox + +Copyright 2021 TypeFox GmbH + +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. + +layout-base +1.0.2 +MIT + + +MIT License + +Copyright (c) 2019 iVis@Bilkent + +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. + +layout-base +2.0.1 +MIT + + +MIT License + +Copyright (c) 2019 iVis@Bilkent + +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. + +lazy-ass +1.6.0 +MIT +Gleb Bahmutov + +Copyright (c) 2014 Gleb Bahmutov + +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. + +lilconfig +3.1.3 +MIT +antonk52 + +MIT License + +Copyright (c) 2022 Anton Kastritskiy + +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. + +lines-and-columns +1.2.4 +MIT +Brian Donovan + +The MIT License (MIT) + +Copyright (c) 2015 Brian Donovan + +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. + +linkify-it +5.0.0 +MIT + + +Copyright (c) 2015 Vitaly Puzrin. + +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. + +listr2 +3.14.0 +MIT +Cenk Kilic + +The MIT License (MIT) + +Copyright (c) Cenk Kilic (https://srcs.kilic.dev), Sam Verschueren (github.com/SamVerschueren) + +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. + +local-pkg +1.1.1 +MIT +Anthony Fu + +MIT License + +Copyright (c) 2021 Anthony Fu + +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. + +lodash +4.17.21 +MIT +John-David Dalton + +Copyright OpenJS Foundation and other contributors + +Based on Underscore.js, copyright Jeremy Ashkenas, +DocumentCloud and Investigative Reporters & Editors + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/lodash/lodash + +The following license applies to all parts of this software except as +documented below: + +==== + +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 and related rights for sample code are waived via CC0. Sample +code is defined as all source code displayed within the prose of the +documentation. + +CC0: http://creativecommons.org/publicdomain/zero/1.0/ + +==== + +Files located in the node_modules and vendor directories are externally +maintained libraries used by this software which have their own +licenses; we recommend you read them, as their terms may differ from the +terms above. + +lodash-es +4.17.21 +MIT +John-David Dalton + +Copyright OpenJS Foundation and other contributors + +Based on Underscore.js, copyright Jeremy Ashkenas, +DocumentCloud and Investigative Reporters & Editors + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/lodash/lodash + +The following license applies to all parts of this software except as +documented below: + +==== + +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 and related rights for sample code are waived via CC0. Sample +code is defined as all source code displayed within the prose of the +documentation. + +CC0: http://creativecommons.org/publicdomain/zero/1.0/ + +==== + +Files located in the node_modules and vendor directories are externally +maintained libraries used by this software which have their own +licenses; we recommend you read them, as their terms may differ from the +terms above. + +lodash.castarray +4.4.0 +MIT +John-David Dalton (http://allyoucanleet.com/) + +The MIT License (MIT) + +Copyright 2012-2016 The Dojo Foundation +Based on Underscore.js, copyright 2009-2016 Jeremy Ashkenas, +DocumentCloud and Investigative Reporters & Editors + +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. + +lodash.isplainobject +4.0.6 +MIT +John-David Dalton (http://allyoucanleet.com/) + +Copyright jQuery Foundation and other contributors + +Based on Underscore.js, copyright Jeremy Ashkenas, +DocumentCloud and Investigative Reporters & Editors + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/lodash/lodash + +The following license applies to all parts of this software except as +documented below: + +==== + +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 and related rights for sample code are waived via CC0. Sample +code is defined as all source code displayed within the prose of the +documentation. + +CC0: http://creativecommons.org/publicdomain/zero/1.0/ + +==== + +Files located in the node_modules and vendor directories are externally +maintained libraries used by this software which have their own +licenses; we recommend you read them, as their terms may differ from the +terms above. + +lodash.merge +4.6.2 +MIT +John-David Dalton + +Copyright OpenJS Foundation and other contributors + +Based on Underscore.js, copyright Jeremy Ashkenas, +DocumentCloud and Investigative Reporters & Editors + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/lodash/lodash + +The following license applies to all parts of this software except as +documented below: + +==== + +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 and related rights for sample code are waived via CC0. Sample +code is defined as all source code displayed within the prose of the +documentation. + +CC0: http://creativecommons.org/publicdomain/zero/1.0/ + +==== + +Files located in the node_modules and vendor directories are externally +maintained libraries used by this software which have their own +licenses; we recommend you read them, as their terms may differ from the +terms above. + +lodash.once +4.1.1 +MIT +John-David Dalton (http://allyoucanleet.com/) + +Copyright jQuery Foundation and other contributors + +Based on Underscore.js, copyright Jeremy Ashkenas, +DocumentCloud and Investigative Reporters & Editors + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/lodash/lodash + +The following license applies to all parts of this software except as +documented below: + +==== + +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 and related rights for sample code are waived via CC0. Sample +code is defined as all source code displayed within the prose of the +documentation. + +CC0: http://creativecommons.org/publicdomain/zero/1.0/ + +==== + +Files located in the node_modules and vendor directories are externally +maintained libraries used by this software which have their own +licenses; we recommend you read them, as their terms may differ from the +terms above. + +log-symbols +4.1.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +log-update +4.0.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +loose-envify +1.4.0 +MIT +Andres Suarez + +The MIT License (MIT) + +Copyright (c) 2015 Andres Suarez + +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. + +lru-cache +10.4.3 +ISC +Isaac Z. Schlueter + +The ISC License + +Copyright (c) 2010-2023 Isaac Z. Schlueter and 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. + +lru-cache +7.18.3 +ISC +Isaac Z. Schlueter + +The ISC License + +Copyright (c) 2010-2023 Isaac Z. Schlueter and 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. + +lucide-react +0.447.0 +ISC +Eric Fennis + +ISC License + +Copyright (c) for portions of Lucide are held by Cole Bemis 2013-2022 as part of Feather (MIT). All other copyright (c) for Lucide are held by Lucide Contributors 2022. + +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. + +markdown-it +14.1.0 +MIT + + +Copyright (c) 2014 Vitaly Puzrin, Alex Kocharin. + +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. + +markdown-it-task-lists +2.1.1 +ISC +Revin Guillen + +Copyright (c) 2016, Revin Guillen + +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. + +marked +15.0.12 +MIT +Christopher Jeffrey + +# License information + +## Contribution License Agreement + +If you contribute code to this project, you are implicitly allowing your code +to be distributed under the MIT license. You are also implicitly verifying that +all code is your original work. `` + +## Marked + +Copyright (c) 2018+, MarkedJS (https://github.com/markedjs/) +Copyright (c) 2011-2018, Christopher Jeffrey (https://github.com/chjj/) + +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. + +## Markdown + +Copyright © 2004, John Gruber +http://daringfireball.net/ +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 “Markdown” 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. + +marked +16.1.2 +MIT +Christopher Jeffrey + +# License information + +## Contribution License Agreement + +If you contribute code to this project, you are implicitly allowing your code +to be distributed under the MIT license. You are also implicitly verifying that +all code is your original work. `` + +## Marked + +Copyright (c) 2018+, MarkedJS (https://github.com/markedjs/) +Copyright (c) 2011-2018, Christopher Jeffrey (https://github.com/chjj/) + +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. + +## Markdown + +Copyright © 2004, John Gruber +http://daringfireball.net/ +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 “Markdown” 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. + +math-intrinsics +1.1.0 +MIT +Jordan Harband + +MIT License + +Copyright (c) 2024 ECMAScript Shims + +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. + +mdurl +2.0.0 +MIT + + +Copyright (c) 2015 Vitaly Puzrin, Alex Kocharin. + +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() is based on Joyent's node.js `url` code: + +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. + +merge-stream +2.0.0 +MIT +Stephen Sugden + +The MIT License (MIT) + +Copyright (c) Stephen Sugden (stephensugden.com) + +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. + +merge2 +1.4.1 +MIT + + +The MIT License (MIT) + +Copyright (c) 2014-2020 Teambition + +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. + +mermaid +11.9.0 +MIT +Knut Sveidqvist + +The MIT License (MIT) + +Copyright (c) 2014 - 2022 Knut Sveidqvist + +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. + +micromatch +4.0.8 +MIT +Jon Schlinkert (https://github.com/jonschlinkert) + +The MIT License (MIT) + +Copyright (c) 2014-present, Jon Schlinkert. + +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. + +mime-db +1.52.0 +MIT + + +(The MIT License) + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2015-2022 Douglas Christopher Wilson + +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. + +mime-types +2.1.35 +MIT + + +(The MIT License) + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2015 Douglas Christopher Wilson + +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. + +mimic-fn +2.1.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +minimatch +9.0.5 +ISC +Isaac Z. Schlueter (http://blog.izs.me) + +The ISC License + +Copyright (c) 2011-2023 Isaac Z. Schlueter and 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. + +minimist +1.2.8 +MIT +James Halliday + +This software is released under the 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. + +minipass +7.1.2 +ISC +Isaac Z. Schlueter (http://blog.izs.me/) + +The ISC License + +Copyright (c) 2017-2023 npm, Inc., Isaac Z. Schlueter, and 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. + +mitt +3.0.1 +MIT + + +MIT License + +Copyright (c) 2021 Jason Miller + +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. + +mixpanel-browser +2.67.0 +Apache-2.0 + + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2015 Mixpanel, Inc. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +mlly +1.7.4 +MIT + + +MIT License + +Copyright (c) Pooya Parsa + +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. + +ms +2.1.3 +MIT + + +The MIT License (MIT) + +Copyright (c) 2020 Vercel, 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 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. + +mz +2.7.0 +MIT +Jonathan Ong + +The MIT License (MIT) + +Copyright (c) 2014-2016 Jonathan Ong me@jongleberry.com and 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. + +nanoid +3.3.11 +MIT +Andrey Sitnik + +The MIT License (MIT) + +Copyright 2017 Andrey Sitnik + +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. + +netmask +2.0.2 +MIT +Olivier Poitrey + +LICENSE TEXT NOT FOUND + +next +14.2.31 +MIT + + +The MIT License (MIT) + +Copyright (c) 2024 Vercel, 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 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. + +next-themes +0.4.6 +MIT + + +MIT License + +Copyright (c) 2022 Paco Coursey + +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. + +normalize-path +3.0.0 +MIT +Jon Schlinkert (https://github.com/jonschlinkert) + +The MIT License (MIT) + +Copyright (c) 2014-2018, Jon Schlinkert. + +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. + +npm-run-path +4.0.1 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +object-assign +4.1.1 +MIT +Sindre Sorhus + +The MIT License (MIT) + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +object-hash +3.0.0 +MIT +Scott Puleo + +The MIT License (MIT) + +Copyright (c) 2014 object-hash 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. + +object-inspect +1.13.4 +MIT +James Halliday + +MIT License + +Copyright (c) 2013 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. + +once +1.4.0 +ISC +Isaac Z. Schlueter (http://blog.izs.me/) + +The ISC License + +Copyright (c) Isaac Z. Schlueter and 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. + +onetime +5.1.2 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +orderedmap +2.1.1 +MIT +Marijn Haverbeke + +Copyright (C) 2016 by Marijn Haverbeke and others + +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. + +ospath +1.2.2 +MIT +JP Richardson + +LICENSE TEXT NOT FOUND + +p-map +4.0.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +pac-proxy-agent +7.2.0 +MIT +Nathan Rajlich (http://n8.io/) + +(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. + +pac-resolver +7.0.1 +MIT +Nathan Rajlich (http://n8.io/) + +(The MIT License) + +Copyright (c) 2013 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. + +package-json-from-dist +1.0.1 +BlueOak-1.0.0 +Isaac Z. Schlueter (https://izs.me) + +All packages under `src/` are licensed according to the terms in +their respective `LICENSE` or `LICENSE.md` files. + +The remainder of this project is licensed under the Blue Oak +Model License, as follows: + +----- + +# Blue Oak Model License + +Version 1.0.0 + +## Purpose + +This license gives everyone as much permission to work with +this software as possible, while protecting contributors +from liability. + +## Acceptance + +In order to receive this license, you must agree to its +rules. The rules of this license are both obligations +under that agreement and conditions to your license. +You must not do anything with this software that triggers +a rule that you cannot or will not follow. + +## Copyright + +Each contributor licenses you to do everything with this +software that would otherwise infringe that contributor's +copyright in it. + +## Notices + +You must ensure that everyone who gets a copy of +any part of this software from you, with or without +changes, also gets the text of this license or a link to +. + +## Excuse + +If anyone notifies you in writing that you have not +complied with [Notices](#notices), you can keep your +license by taking all practical steps to comply within 30 +days after the notice. If you do not do so, your license +ends immediately. + +## Patent + +Each contributor licenses you to do everything with this +software that would otherwise infringe any patent claims +they can license or become able to license. + +## Reliability + +No contributor can revoke this license. + +## No Liability + +***As far as the law allows, this software comes as is, +without any warranty or condition, and no contributor +will be liable to anyone for any damages related to this +software or this license, under any kind of legal claim.*** + +package-manager-detector +1.3.0 +MIT +Anthony Fu + +MIT License + +Copyright (c) 2020-PRESENT Anthony Fu + +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. + +parent-module +1.0.1 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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-json +5.2.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +path-data-parser +0.1.0 +MIT +Preet Shihn + +MIT License + +Copyright (c) 2020 Preet Shihn + +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. + +path-key +3.1.1 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +path-parse +1.0.7 +MIT +Javier Blanco + +The MIT License (MIT) + +Copyright (c) 2015 Javier Blanco + +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. + +path-scurry +1.11.1 +BlueOak-1.0.0 +Isaac Z. Schlueter (https://blog.izs.me) + +# Blue Oak Model License + +Version 1.0.0 + +## Purpose + +This license gives everyone as much permission to work with +this software as possible, while protecting contributors +from liability. + +## Acceptance + +In order to receive this license, you must agree to its +rules. The rules of this license are both obligations +under that agreement and conditions to your license. +You must not do anything with this software that triggers +a rule that you cannot or will not follow. + +## Copyright + +Each contributor licenses you to do everything with this +software that would otherwise infringe that contributor's +copyright in it. + +## Notices + +You must ensure that everyone who gets a copy of +any part of this software from you, with or without +changes, also gets the text of this license or a link to +. + +## Excuse + +If anyone notifies you in writing that you have not +complied with [Notices](#notices), you can keep your +license by taking all practical steps to comply within 30 +days after the notice. If you do not do so, your license +ends immediately. + +## Patent + +Each contributor licenses you to do everything with this +software that would otherwise infringe any patent claims +they can license or become able to license. + +## Reliability + +No contributor can revoke this license. + +## No Liability + +***As far as the law allows, this software comes as is, +without any warranty or condition, and no contributor +will be liable to anyone for any damages related to this +software or this license, under any kind of legal claim.*** + +pathe +2.0.3 +MIT + + +MIT License + +Copyright (c) Pooya Parsa - Daniel Roe + +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 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. + +--- + +Bundled zeptomatch (https://github.com/fabiospampinato/zeptomatch) + +The MIT License (MIT) + +Copyright (c) 2023-present Fabio Spampinato + +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. + +pend +1.2.0 +MIT +Andrew Kelley + +The MIT License (Expat) + +Copyright (c) 2014 Andrew Kelley + +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. + +performance-now +2.1.0 +MIT +Braveg1rl + +Copyright (c) 2013 Braveg1rl + +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. + +picocolors +1.1.1 +ISC +Alexey Raspopov + +ISC License + +Copyright (c) 2021-2024 Oleksii Raspopov, Kostiantyn Denysov, Anton Verinov + +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. + +picomatch +2.3.1 +MIT +Jon Schlinkert (https://github.com/jonschlinkert) + +The MIT License (MIT) + +Copyright (c) 2017-present, Jon Schlinkert. + +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. + +pify +2.3.0 +MIT +Sindre Sorhus + +The MIT License (MIT) + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +pirates +4.0.7 +MIT +Ari Porad + +MIT License + +Copyright (c) 2016-2018 Ari Porad + +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. + +pkg-types +1.3.1 +MIT + + +MIT License + +Copyright (c) Pooya Parsa - Daniel Roe + +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 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. + +pkg-types +2.2.0 +MIT + + +MIT License + +Copyright (c) Pooya Parsa - Daniel Roe + +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 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. + +points-on-curve +0.2.0 +MIT +Preet Shihn + +MIT License + +Copyright (c) 2020 Preet Shihn + +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. + +points-on-path +0.2.1 +MIT +Preet Shihn + +MIT License + +Copyright (c) 2020 Preet + +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. + +postcss +8.4.31 +MIT +Andrey Sitnik + +The MIT License (MIT) + +Copyright 2013 Andrey Sitnik + +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. + +postcss +8.5.6 +MIT +Andrey Sitnik + +The MIT License (MIT) + +Copyright 2013 Andrey Sitnik + +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. + +postcss-import +15.1.0 +MIT +Maxime Thirouin + +The MIT License (MIT) + +Copyright (c) 2014 Maxime Thirouin, Jason Campbell & Kevin Mårtensson + +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. + +postcss-js +4.0.1 +MIT +Andrey Sitnik + +The MIT License (MIT) + +Copyright 2015 Andrey Sitnik + +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. + +postcss-load-config +4.0.2 +MIT +Michael Ciniawky + +The MIT License (MIT) + +Copyright Michael Ciniawsky + +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. + +postcss-nested +6.2.0 +MIT +Andrey Sitnik + +The MIT License (MIT) + +Copyright 2014 Andrey Sitnik + +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. + +postcss-selector-parser +6.0.10 +MIT + + +Copyright (c) Ben Briggs (http://beneb.info) + +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. + +postcss-selector-parser +6.1.2 +MIT + + +Copyright (c) Ben Briggs (http://beneb.info) + +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. + +postcss-value-parser +4.2.0 +MIT +Bogdan Chadkin + +Copyright (c) Bogdan Chadkin + +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. + +pretty-bytes +5.6.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +prismjs +1.30.0 +MIT +Lea Verou + +MIT LICENSE + +Copyright (c) 2012 Lea Verou + +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. + +process +0.11.10 +MIT +Roman Shtylman + +(The MIT License) + +Copyright (c) 2013 Roman Shtylman + +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. + +progress +2.0.3 +MIT +TJ Holowaychuk + +(The MIT License) + +Copyright (c) 2017 TJ Holowaychuk + +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. + +prop-types +15.8.1 +MIT + + +MIT License + +Copyright (c) 2013-present, Facebook, 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 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. + +prosemirror-changeset +2.3.1 +MIT + + +Copyright (C) 2017 by Marijn Haverbeke and others + +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. + +prosemirror-collab +1.3.1 +MIT + + +Copyright (C) 2015-2017 by Marijn Haverbeke and others + +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. + +prosemirror-commands +1.7.1 +MIT + + +Copyright (C) 2015-2017 by Marijn Haverbeke and others + +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. + +prosemirror-dropcursor +1.8.2 +MIT + + +Copyright (C) 2015-2017 by Marijn Haverbeke and others + +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. + +prosemirror-gapcursor +1.3.2 +MIT + + +Copyright (C) 2015-2017 by Marijn Haverbeke and others + +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. + +prosemirror-history +1.4.1 +MIT + + +Copyright (C) 2015-2017 by Marijn Haverbeke and others + +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. + +prosemirror-inputrules +1.5.0 +MIT + + +Copyright (C) 2015-2017 by Marijn Haverbeke and others + +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. + +prosemirror-keymap +1.2.3 +MIT + + +Copyright (C) 2015-2017 by Marijn Haverbeke and others + +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. + +prosemirror-markdown +1.13.2 +MIT + + +Copyright (C) 2015-2017 by Marijn Haverbeke and others + +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. + +prosemirror-menu +1.2.5 +MIT + + +Copyright (C) 2015-2017 by Marijn Haverbeke and others + +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. + +prosemirror-model +1.25.3 +MIT + + +Copyright (C) 2015-2017 by Marijn Haverbeke and others + +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. + +prosemirror-schema-basic +1.2.4 +MIT + + +Copyright (C) 2015-2017 by Marijn Haverbeke and others + +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. + +prosemirror-schema-list +1.5.1 +MIT + + +Copyright (C) 2015-2017 by Marijn Haverbeke and others + +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. + +prosemirror-state +1.4.3 +MIT + + +Copyright (C) 2015-2017 by Marijn Haverbeke and others + +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. + +prosemirror-tables +1.7.1 +MIT + + +Copyright (C) 2015-2016 by Marijn Haverbeke and others + +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. + +prosemirror-trailing-node +3.0.0 +MIT + + +MIT License + +Copyright (c) 2019-2022, Remirror 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. + +prosemirror-transform +1.10.4 +MIT + + +Copyright (C) 2015-2017 by Marijn Haverbeke and others + +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. + +prosemirror-view +1.40.1 +MIT + + +Copyright (C) 2015-2017 by Marijn Haverbeke and others + +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. + +proxy-agent +6.5.0 +MIT +Nathan Rajlich (http://n8.io/) + +(The MIT License) + +Copyright (c) 2013 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. + +proxy-from-env +1.0.0 +MIT +Rob Wu (https://robwu.nl/) + +LICENSE TEXT NOT FOUND + +proxy-from-env +1.1.0 +MIT +Rob Wu (https://robwu.nl/) + +The MIT License + +Copyright (C) 2016-2018 Rob Wu + +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. + +pump +3.0.3 +MIT +Mathias Buus Madsen + +The MIT License (MIT) + +Copyright (c) 2014 Mathias Buus + +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. + +punycode.js +2.3.1 +MIT +Mathias Bynens + +Copyright Mathias Bynens + +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. + +puppeteer +24.16.0 +Apache-2.0 +The Chromium Authors + +LICENSE TEXT NOT FOUND + +puppeteer-core +24.16.0 +Apache-2.0 +The Chromium Authors + +LICENSE TEXT NOT FOUND + +qs +6.14.0 +BSD-3-Clause + + +BSD 3-Clause License + +Copyright (c) 2014, Nathan LaFreniere and other [contributors](https://github.com/ljharb/qs/graphs/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: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. 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. + +3. Neither the name of the copyright holder 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 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. + +quansync +0.2.10 +MIT +Anthony Fu + +MIT License + +Copyright (c) 2025-PRESENT Anthony Fu and Kevin Deng + +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. + +queue-microtask +1.2.3 +MIT +Feross Aboukhadijeh + +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. + +react +18.3.1 +MIT + + +MIT License + +Copyright (c) Facebook, Inc. and its affiliates. + +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. + +react-dom +18.3.1 +MIT + + +MIT License + +Copyright (c) Facebook, Inc. and its affiliates. + +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. + +react-is +16.13.1 +MIT + + +MIT License + +Copyright (c) Facebook, Inc. and its affiliates. + +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. + +react-is +18.3.1 +MIT + + +MIT License + +Copyright (c) Facebook, Inc. and its affiliates. + +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. + +react-redux +9.2.0 +MIT +Dan Abramov (https://github.com/gaearon) + +The MIT License (MIT) + +Copyright (c) 2015-present Dan Abramov + +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. + +react-remove-scroll +2.7.1 +MIT +Anton Korzunov + +MIT License + +Copyright (c) 2017 Anton Korzunov + +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. + +react-remove-scroll-bar +2.3.8 +MIT +Anton Korzunov + +LICENSE TEXT NOT FOUND + +react-simple-code-editor +0.14.1 +MIT +Satyajit Sahoo (https://github.com/satya164/) + +The MIT License (MIT) + +Copyright (C) 2018 - 2019 + +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. + +react-smooth +4.0.4 +MIT +JasonHzq + +The MIT License (MIT) + +Copyright (c) 2016 recharts + +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. + +react-style-singleton +2.2.3 +MIT +Anton Korzunov (thekashey@gmail.com) + +MIT License + +Copyright (c) 2017 Anton Korzunov + +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. + +react-transition-group +4.4.5 +BSD-3-Clause + + +BSD 3-Clause License + +Copyright (c) 2018, React Community +Forked from React (https://github.com/facebook/react) Copyright 2013-present, Facebook, Inc. +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 copyright holder 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 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. + +read-cache +1.0.0 +MIT +Bogdan Chadkin + +The MIT License (MIT) + +Copyright 2016 Bogdan Chadkin + +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. + +readdirp +3.6.0 +MIT +Thorsten Lorenz (thlorenz.com) + +MIT License + +Copyright (c) 2012-2019 Thorsten Lorenz, Paul Miller (https://paulmillr.com) + +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. + +recharts +2.15.4 +MIT +recharts group + +The MIT License (MIT) + +Copyright (c) 2015-present recharts + +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. + +recharts-scale +0.4.5 +MIT +recharts group + +The MIT License (MIT) + +Copyright (c) 2015 Sen Yang + +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. + +redux +5.0.1 +MIT + + +The MIT License (MIT) + +Copyright (c) 2015-present Dan Abramov + +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. + +redux-thunk +3.1.0 +MIT +Dan Abramov + +The MIT License (MIT) + +Copyright (c) 2015-present Dan Abramov + +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. + +request-progress +3.0.0 +MIT +IndigoUnited (http://indigounited.com) + +Copyright (c) 2012 IndigoUnited + +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. + +require-directory +2.1.1 +MIT +Troy Goode (http://github.com/troygoode/) + +The MIT License (MIT) + +Copyright (c) 2011 Troy Goode + +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. + +reselect +5.1.1 +MIT + + +The MIT License (MIT) + +Copyright (c) 2015-2018 Reselect 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. + +resolve +1.22.10 +MIT +James Halliday + +MIT License + +Copyright (c) 2012 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. + +resolve-from +4.0.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +restore-cursor +3.1.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +reusify +1.1.0 +MIT +Matteo Collina + +The MIT License (MIT) + +Copyright (c) 2015-2024 Matteo Collina + +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. + +rfdc +1.4.1 +MIT +David Mark Clements + +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. + +robust-predicates +3.0.2 +Unlicense +Vladimir Agafonkin + +This is free and unencumbered software released into the public domain. + +Anyone is free to copy, modify, publish, use, compile, sell, or +distribute this software, either in source code form or as a compiled +binary, for any purpose, commercial or non-commercial, and by any +means. + +In jurisdictions that recognize copyright laws, the author or authors +of this software dedicate any and all copyright interest in the +software to the public domain. We make this dedication for the benefit +of the public at large and to the detriment of our heirs and +successors. We intend this dedication to be an overt act of +relinquishment in perpetuity of all present and future rights to this +software under copyright law. + +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 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. + +For more information, please refer to + +rope-sequence +1.3.4 +MIT +Marijn Haverbeke + +Copyright (C) 2016 by Marijn Haverbeke + +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. + +roughjs +4.6.6 +MIT +Preet Shihn + +MIT License + +Copyright (c) 2019 Preet Shihn + +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. + +rrdom +2.0.0-alpha.18 +MIT + + +LICENSE TEXT NOT FOUND + +rrweb +2.0.0-alpha.18 +MIT +yanzhen@smartx.com + +LICENSE TEXT NOT FOUND + +rrweb-snapshot +2.0.0-alpha.18 +MIT +yanzhen@smartx.com + +LICENSE TEXT NOT FOUND + +run-parallel +1.2.0 +MIT +Feross Aboukhadijeh + +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. + +rw +1.3.3 +BSD-3-Clause +Mike Bostock + +Copyright (c) 2014-2016, Michael Bostock +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. + +* The name Michael Bostock may not 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 MICHAEL BOSTOCK 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. + +rxjs +7.8.2 +Apache-2.0 +Ben Lesh + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft Corp. and contributors + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +safe-buffer +5.2.1 +MIT +Feross Aboukhadijeh + +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. + +safer-buffer +2.1.2 +MIT +Nikita Skovoroda + +MIT License + +Copyright (c) 2018 Nikita Skovoroda + +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. + +scheduler +0.23.2 +MIT + + +MIT License + +Copyright (c) Facebook, Inc. and its affiliates. + +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. + +semver +7.7.2 +ISC +GitHub Inc. + +The ISC License + +Copyright (c) Isaac Z. Schlueter and 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. + +sharp +0.34.3 +Apache-2.0 +Lovell Fuller + +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and +distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright +owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities +that control, are controlled by, or are under common control with that entity. +For the purposes of this definition, "control" means (i) the power, direct or +indirect, to cause the direction or management of such entity, whether by +contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the +outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising +permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including +but not limited to software source code, documentation source, and configuration +files. + +"Object" form shall mean any form resulting from mechanical transformation or +translation of a Source form, including but not limited to compiled object code, +generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made +available under the License, as indicated by a copyright notice that is included +in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that +is based on (or derived from) the Work and for which the editorial revisions, +annotations, elaborations, or other modifications represent, as a whole, an +original work of authorship. For the purposes of this License, Derivative Works +shall not include works that remain separable from, or merely link (or bind by +name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version +of the Work and any modifications or additions to that Work or Derivative Works +thereof, that is intentionally submitted to Licensor for inclusion in the Work +by the copyright owner or by an individual or Legal Entity authorized to submit +on behalf of the copyright owner. For the purposes of this definition, +"submitted" means any form of electronic, verbal, or written communication sent +to the Licensor or its representatives, including but not limited to +communication on electronic mailing lists, source code control systems, and +issue tracking systems that are managed by, or on behalf of, the Licensor for +the purpose of discussing and improving the Work, but excluding communication +that is conspicuously marked or otherwise designated in writing by the copyright +owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf +of whom a Contribution has been received by Licensor and subsequently +incorporated within the Work. + +2. Grant of Copyright License. + +Subject to the terms and conditions of this License, each Contributor hereby +grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, +irrevocable copyright license to reproduce, prepare Derivative Works of, +publicly display, publicly perform, sublicense, and distribute the Work and such +Derivative Works in Source or Object form. + +3. Grant of Patent License. + +Subject to the terms and conditions of this License, each Contributor hereby +grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, +irrevocable (except as stated in this section) patent license to make, have +made, use, offer to sell, sell, import, and otherwise transfer the Work, where +such license applies only to those patent claims licensable by such Contributor +that are necessarily infringed by their Contribution(s) alone or by combination +of their Contribution(s) with the Work to which such Contribution(s) was +submitted. If You institute patent litigation against any entity (including a +cross-claim or counterclaim in a lawsuit) alleging that the Work or a +Contribution incorporated within the Work constitutes direct or contributory +patent infringement, then any patent licenses granted to You under this License +for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. + +You may reproduce and distribute copies of the Work or Derivative Works thereof +in any medium, with or without modifications, and in Source or Object form, +provided that You meet the following conditions: + +You must give any other recipients of the Work or Derivative Works a copy of +this License; and +You must cause any modified files to carry prominent notices stating that You +changed the files; and +You must retain, in the Source form of any Derivative Works that You distribute, +all copyright, patent, trademark, and attribution notices from the Source form +of the Work, excluding those notices that do not pertain to any part of the +Derivative Works; and +If the Work includes a "NOTICE" text file as part of its distribution, then any +Derivative Works that You distribute must include a readable copy of the +attribution notices contained within such NOTICE file, excluding those notices +that do not pertain to any part of the Derivative Works, in at least one of the +following places: within a NOTICE text file distributed as part of the +Derivative Works; within the Source form or documentation, if provided along +with the Derivative Works; or, within a display generated by the Derivative +Works, if and wherever such third-party notices normally appear. The contents of +the NOTICE file are for informational purposes only and do not modify the +License. You may add Your own attribution notices within Derivative Works that +You distribute, alongside or as an addendum to the NOTICE text from the Work, +provided that such additional attribution notices cannot be construed as +modifying the License. +You may add Your own copyright statement to Your modifications and may provide +additional or different license terms and conditions for use, reproduction, or +distribution of Your modifications, or for any such Derivative Works as a whole, +provided Your use, reproduction, and distribution of the Work otherwise complies +with the conditions stated in this License. + +5. Submission of Contributions. + +Unless You explicitly state otherwise, any Contribution intentionally submitted +for inclusion in the Work by You to the Licensor shall be under the terms and +conditions of this License, without any additional terms or conditions. +Notwithstanding the above, nothing herein shall supersede or modify the terms of +any separate license agreement you may have executed with Licensor regarding +such Contributions. + +6. Trademarks. + +This License does not grant permission to use the trade names, trademarks, +service marks, or product names of the Licensor, except as required for +reasonable and customary use in describing the origin of the Work and +reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. + +Unless required by applicable law or agreed to in writing, Licensor provides the +Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, +including, without limitation, any warranties or conditions of TITLE, +NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are +solely responsible for determining the appropriateness of using or +redistributing the Work and assume any risks associated with Your exercise of +permissions under this License. + +8. Limitation of Liability. + +In no event and under no legal theory, whether in tort (including negligence), +contract, or otherwise, unless required by applicable law (such as deliberate +and grossly negligent acts) or agreed to in writing, shall any Contributor be +liable to You for damages, including any direct, indirect, special, incidental, +or consequential damages of any character arising as a result of this License or +out of the use or inability to use the Work (including but not limited to +damages for loss of goodwill, work stoppage, computer failure or malfunction, or +any and all other commercial damages or losses), even if such Contributor has +been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. + +While redistributing the Work or Derivative Works thereof, You may choose to +offer, and charge a fee for, acceptance of support, warranty, indemnity, or +other liability obligations and/or rights consistent with this License. However, +in accepting such obligations, You may act only on Your own behalf and on Your +sole responsibility, not on behalf of any other Contributor, and only if You +agree to indemnify, defend, and hold each Contributor harmless for any liability +incurred by, or claims asserted against, such Contributor by reason of your +accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work + +To apply the Apache License to your work, attach the following boilerplate +notice, with the fields enclosed by brackets "[]" replaced with your own +identifying information. (Don't include the brackets!) The text should be +enclosed in the appropriate comment syntax for the file format. We also +recommend that a file or class name and description of purpose be included on +the same "printed page" as the copyright notice for easier identification within +third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +shebang-command +2.0.0 +MIT +Kevin Mårtensson + +MIT License + +Copyright (c) Kevin Mårtensson (github.com/kevva) + +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. + +shebang-regex +3.0.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +side-channel +1.1.0 +MIT +Jordan Harband + +MIT License + +Copyright (c) 2019 Jordan Harband + +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. + +side-channel-list +1.0.0 +MIT +Jordan Harband + +MIT License + +Copyright (c) 2024 Jordan Harband + +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. + +side-channel-map +1.0.1 +MIT +Jordan Harband + +MIT License + +Copyright (c) 2024 Jordan Harband + +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. + +side-channel-weakmap +1.0.2 +MIT +Jordan Harband + +MIT License + +Copyright (c) 2019 Jordan Harband + +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. + +signal-exit +3.0.7 +ISC +Ben Coe + +The ISC License + +Copyright (c) 2015, 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. + +signal-exit +4.1.0 +ISC +Ben Coe + +The ISC License + +Copyright (c) 2015-2023 Benjamin Coe, Isaac Z. Schlueter, and 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. + +simple-swizzle +0.2.2 +MIT +Qix (http://github.com/qix-) + +The MIT License (MIT) + +Copyright (c) 2015 Josh Junon + +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. + +slice-ansi +3.0.0 +MIT + + +MIT License + +Copyright (c) DC + +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. + +slice-ansi +4.0.0 +MIT + + +MIT License + +Copyright (c) DC +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +smart-buffer +4.2.0 +MIT +Josh Glazebrook + +The MIT License (MIT) + +Copyright (c) 2013-2017 Josh Glazebrook + +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. + +socks +2.8.6 +MIT +Josh Glazebrook + +The MIT License (MIT) + +Copyright (c) 2013 Josh Glazebrook + +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. + +socks-proxy-agent +8.0.5 +MIT +Nathan Rajlich + +(The MIT License) + +Copyright (c) 2013 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. + +sonner +2.0.7 +MIT +Emil Kowalski + +MIT License + +Copyright (c) 2023 Emil Kowalski + +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. + +source-map +0.6.1 +BSD-3-Clause +Nick Fitzgerald + +Copyright (c) 2009-2011, Mozilla Foundation and 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 names of the Mozilla Foundation nor the names of project + 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 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. + +source-map-js +1.2.1 +BSD-3-Clause +Valentin 7rulnik Semirulnik + +Copyright (c) 2009-2011, Mozilla Foundation and 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 names of the Mozilla Foundation nor the names of project + 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 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. + +sprintf-js +1.1.3 +BSD-3-Clause +Alexandru Mărășteanu + +Copyright (c) 2007-present, Alexandru Mărășteanu +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 this software 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 AUTHORS OR COPYRIGHT HOLDERS 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. + +sshpk +1.18.0 +MIT +Joyent, Inc + +Copyright Joyent, Inc. 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. + +streamsearch +1.1.0 +MIT +Brian White + +Copyright Brian White. 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. + +streamx +2.22.1 +MIT +Mathias Buus (@mafintosh) + +The MIT License (MIT) + +Copyright (c) 2019 Mathias Buus + +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-width +4.2.3 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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-width +5.1.2 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +strip-ansi +6.0.1 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +strip-ansi +7.1.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +strip-final-newline +2.0.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +styled-jsx +5.1.1 +MIT + + +MIT License + +Copyright (c) 2016-present Vercel, 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 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. + +stylis +4.3.6 +MIT +Sultan Tarimo + +MIT License + +Copyright (c) 2016-present Sultan Tarimo + +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. + +sucrase +3.35.0 +MIT +Alan Pierce + +The MIT License (MIT) + +Copyright (c) 2012-2018 various contributors (see AUTHORS) + +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. + +supports-color +7.2.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +supports-color +8.1.1 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +supports-preserve-symlinks-flag +1.0.0 +MIT +Jordan Harband + +MIT License + +Copyright (c) 2022 Inspect JS + +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. + +tailwind-merge +2.6.0 +MIT +Dany Castillo + +MIT License + +Copyright (c) 2021 Dany Castillo + +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. + +tailwindcss +3.4.17 +MIT + + +MIT License + +Copyright (c) Tailwind Labs, 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 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. + +tailwindcss-animate +1.0.7 +MIT +Jamie Kyle + +MIT License + +Copyright (c) 2020 Jamie Kyle + +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. + +tar-fs +3.1.0 +MIT +Mathias Buus + +The MIT License (MIT) + +Copyright (c) 2014 Mathias Buus + +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. + +tar-stream +3.1.7 +MIT +Mathias Buus + +The MIT License (MIT) + +Copyright (c) 2014 Mathias Buus + +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. + +text-decoder +1.2.3 +Apache-2.0 +Holepunch + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +text-segmentation +1.0.3 +MIT +Niklas von Hertzen + +Copyright (c) 2021 Niklas von Hertzen + +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. + +thenify +3.3.1 +MIT +Jonathan Ong (http://jongleberry.com) + +The MIT License (MIT) + +Copyright (c) 2014-2016 Jonathan Ong me@jongleberry.com and 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. + +thenify-all +1.6.0 +MIT +Jonathan Ong (http://jongleberry.com) + +The MIT License (MIT) + +Copyright (c) 2014 Jonathan Ong me@jongleberry.com + +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. + +throttleit +1.0.1 +MIT + + +LICENSE TEXT NOT FOUND + +through +2.3.8 +MIT +Dominic Tarr (dominictarr.com) + +The MIT License + +Copyright (c) 2011 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. + +tiny-invariant +1.3.3 +MIT +Alex Reardon + +MIT License + +Copyright (c) 2019 Alexander Reardon + +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. + +tinyexec +1.0.1 +MIT +James Garbutt (https://github.com/43081j) + +MIT License + +Copyright (c) 2024 Tinylibs + +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. + +tippy.js +6.3.7 +MIT +atomiks + +MIT License + +Copyright (c) 2017-present atomiks + +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. + +tiptap-markdown +0.8.10 +MIT +Antoine Guingand + +MIT License + +Copyright (c) 2021, Antoine Guingand + +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. + +tldts +6.1.86 +MIT +Rémi Berson + +Copyright (c) 2017 Thomas Parisot, 2018 Rémi Berson + +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. + +tldts-core +6.1.86 +MIT +Rémi Berson + +Copyright (c) 2017 Thomas Parisot, 2018 Rémi Berson + +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. + +tmp +0.2.5 +MIT +KARASZI István + +The MIT License (MIT) + +Copyright (c) 2014 KARASZI István + +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. + +to-regex-range +5.0.1 +MIT +Jon Schlinkert (https://github.com/jonschlinkert) + +The MIT License (MIT) + +Copyright (c) 2015-present, Jon Schlinkert. + +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. + +tough-cookie +5.1.2 +BSD-3-Clause +Jeremy Stashewsky + +Copyright (c) 2015, Salesforce.com, Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + +2. 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. + +3. Neither the name of Salesforce.com 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 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. + +tree-kill +1.2.2 +MIT +Peteris Krumins + +MIT License + +Copyright (c) 2018 Peter Krumins + +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. + +ts-dedent +2.2.0 +MIT +Tamino Martinius + +MIT License + +Copyright (c) 2018 Tamino Martinius + +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. + +ts-interface-checker +0.1.13 +Apache-2.0 +Dmitry S, Grist Labs + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +tslib +2.8.1 +0BSD +Microsoft Corp. + +Copyright (c) Microsoft Corporation. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted. + +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. + +tunnel-agent +0.6.0 +Apache-2.0 +Mikeal Rogers (http://www.futurealoof.com) + +Apache License + +Version 2.0, January 2004 + +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + +You must give any other recipients of the Work or Derivative Works a copy of this License; and + +You must cause any modified files to carry prominent notices stating that You changed the files; and + +You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and + +If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +tweetnacl +0.14.5 +Unlicense +TweetNaCl-js contributors + +This is free and unencumbered software released into the public domain. + +Anyone is free to copy, modify, publish, use, compile, sell, or +distribute this software, either in source code form or as a compiled +binary, for any purpose, commercial or non-commercial, and by any +means. + +In jurisdictions that recognize copyright laws, the author or authors +of this software dedicate any and all copyright interest in the +software to the public domain. We make this dedication for the benefit +of the public at large and to the detriment of our heirs and +successors. We intend this dedication to be an overt act of +relinquishment in perpetuity of all present and future rights to this +software under copyright law. + +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 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. + +For more information, please refer to + +type-fest +0.21.3 +(MIT OR CC0-1.0) +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https:/sindresorhus.com) + +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. + +type-fest +0.8.1 +(MIT OR CC0-1.0) +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +typed-query-selector +2.12.0 +MIT +Pig Fang + +MIT License + +Copyright (c) 2020-present Pig Fang + +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. + +typescript +5.9.2 +Apache-2.0 +Microsoft Corp. + +Apache License + +Version 2.0, January 2004 + +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + +You must give any other recipients of the Work or Derivative Works a copy of this License; and + +You must cause any modified files to carry prominent notices stating that You changed the files; and + +You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and + +If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +uc.micro +2.1.0 +MIT + + +Copyright Mathias Bynens + +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. + +ufo +1.6.1 +MIT + + +MIT License + +Copyright (c) Pooya Parsa + +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. + +undici-types +6.21.0 +MIT + + +MIT License + +Copyright (c) Matteo Collina and Undici 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. + +universalify +2.0.1 +MIT +Ryan Zimmerman + +(The MIT License) + +Copyright (c) 2017, Ryan Zimmerman + +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. + +untildify +4.0.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +use-callback-ref +1.3.3 +MIT +theKashey + +MIT License + +Copyright (c) 2017 Anton Korzunov + +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. + +use-sidecar +1.1.3 +MIT +theKashey + +MIT License + +Copyright (c) 2017 Anton Korzunov + +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. + +use-sync-external-store +1.5.0 +MIT + + +MIT License + +Copyright (c) Meta Platforms, Inc. and affiliates. + +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. + +util-deprecate +1.0.2 +MIT +Nathan Rajlich (http://n8.io/) + +(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. + +utrie +1.0.2 +MIT +Niklas von Hertzen + +Copyright (c) 2021 Niklas von Hertzen + +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. + +uuid +11.1.0 +MIT + + +The MIT License (MIT) + +Copyright (c) 2010-2020 Robert Kieffer and other 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. + +uuid +8.3.2 +MIT + + +The MIT License (MIT) + +Copyright (c) 2010-2020 Robert Kieffer and other 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. + +verror +1.10.0 +MIT + + +Copyright (c) 2016, Joyent, Inc. 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 + +victory-vendor +36.9.2 +MIT AND ISC +Formidable + +Copyright 2015-2021 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 +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. + +vscode-jsonrpc +8.2.0 +MIT +Microsoft Corporation + +Copyright (c) Microsoft Corporation + +All rights reserved. + +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. + +vscode-languageserver +9.0.1 +MIT +Microsoft Corporation + +Copyright (c) Microsoft Corporation + +All rights reserved. + +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. + +vscode-languageserver-protocol +3.17.5 +MIT +Microsoft Corporation + +Copyright (c) Microsoft Corporation + +All rights reserved. + +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. + +vscode-languageserver-textdocument +1.0.12 +MIT +Microsoft Corporation + +Copyright (c) Microsoft Corporation + +All rights reserved. + +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. + +vscode-languageserver-types +3.17.5 +MIT +Microsoft Corporation + +Copyright (c) Microsoft Corporation + +All rights reserved. + +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. + +vscode-uri +3.0.8 +MIT +Microsoft + +The MIT License (MIT) + +Copyright (c) Microsoft + +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. + +w3c-keyname +2.2.8 +MIT +Marijn Haverbeke + +Copyright (C) 2016 by Marijn Haverbeke and others + +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. + +which +2.0.2 +ISC +Isaac Z. Schlueter (http://blog.izs.me) + +The ISC License + +Copyright (c) Isaac Z. Schlueter and 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. + +wrap-ansi +6.2.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +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. + +wrap-ansi +7.0.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +wrap-ansi +8.1.0 +MIT +Sindre Sorhus + +MIT License + +Copyright (c) Sindre Sorhus (https://sindresorhus.com) + +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. + +wrappy +1.0.2 +ISC +Isaac Z. Schlueter (http://blog.izs.me/) + +The ISC License + +Copyright (c) Isaac Z. Schlueter and 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. + +ws +8.18.3 +MIT +Einar Otto Stangvik (http://2x.io) + +Copyright (c) 2011 Einar Otto Stangvik +Copyright (c) 2013 Arnout Kazemier and contributors +Copyright (c) 2016 Luigi Pinca and 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. + +y18n +5.0.8 +ISC +Ben Coe + +Copyright (c) 2015, 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. + +yaml +2.8.1 +ISC +Eemeli Aro + +Copyright Eemeli Aro + +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. + +yargs +17.7.2 +MIT + + +MIT License + +Copyright 2010 James Halliday (mail@substack.net); Modified work Copyright 2014 Contributors (ben@npmjs.com) + +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. + +yargs-parser +21.1.1 +ISC +Ben Coe + +Copyright (c) 2016, 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. + +yauzl +2.10.0 +MIT +Josh Wolfe + +The MIT License (MIT) + +Copyright (c) 2014 Josh Wolfe + +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. + +zod +3.25.76 +MIT +Colin McDonnell + +MIT License + +Copyright (c) 2025 Colin McDonnell + +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. + +zod +4.0.16 +MIT +Colin McDonnell + +MIT License + +Copyright (c) 2025 Colin McDonnell + +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. diff --git a/servers/fastapi/alembic.ini b/servers/fastapi/alembic.ini new file mode 100644 index 0000000..816710e --- /dev/null +++ b/servers/fastapi/alembic.ini @@ -0,0 +1,41 @@ +# Alembic configuration for CLI usage (e.g. alembic revision --autogenerate) +# migrations.py sets these programmatically when running at app startup. + +[alembic] +script_location = alembic +# sqlalchemy.url is overridden by env.py (uses DATABASE_URL or APP_DATA_DIRECTORY) +sqlalchemy.url = sqlite:///placeholder + +[loggers] +keys = root,sqlalchemy,alembic + +[handlers] +keys = console + +[formatters] +keys = generic + +[logger_root] +level = WARNING +handlers = console +qualname = + +[logger_sqlalchemy] +level = WARNING +handlers = +qualname = sqlalchemy.engine + +[logger_alembic] +level = INFO +handlers = +qualname = alembic + +[handler_console] +class = StreamHandler +args = (sys.stderr,) +level = NOTSET +formatter = generic + +[formatter_generic] +format = %(levelname)-5.5s [%(name)s] %(message)s +datefmt = %H:%M:%S diff --git a/servers/fastapi/alembic/env.py b/servers/fastapi/alembic/env.py new file mode 100644 index 0000000..96e3a73 --- /dev/null +++ b/servers/fastapi/alembic/env.py @@ -0,0 +1,97 @@ +import os +import sys +from logging.config import fileConfig +from pathlib import Path + +from alembic import context +from sqlalchemy import engine_from_config, pool +from sqlmodel import SQLModel + +# Make sure all models can be imported when alembic runs standalone. +sys.path.insert(0, str(Path(__file__).resolve().parents[1])) + +# Import every SQL model so they register with SQLModel.metadata before +# autogenerate or migration execution reads it. +from models.sql.async_task import AsyncTaskModel # noqa: F401, E402 +from models.sql.async_presentation_generation_status import ( # noqa: F401, E402 + AsyncPresentationGenerationTaskModel, +) +from models.sql.chat_history_message import ChatHistoryMessageModel # noqa: F401, E402 +from models.sql.font_upload import FontUpload # noqa: F401, E402 +from models.sql.image_asset import ImageAsset # noqa: F401, E402 +from models.sql.key_value import KeyValueSqlModel # noqa: F401, E402 +from models.sql.ollama_pull_status import OllamaPullStatus # noqa: F401, E402 +from models.sql.presentation import PresentationModel # noqa: F401, E402 +from models.sql.presentation_layout_code import ( # noqa: F401, E402 + PresentationLayoutCodeModel, +) +from models.sql.slide import SlideModel # noqa: F401, E402 +from models.sql.template import TemplateModel # noqa: F401, E402 +from models.sql.template_create_info import TemplateCreateInfoModel # noqa: F401, E402 +from models.sql.template_v2 import TemplateV2 # noqa: F401, E402 +from models.sql.webhook_subscription import WebhookSubscription # noqa: F401, E402 + +alembic_config = context.config + +if alembic_config.config_file_name is not None: + fileConfig(alembic_config.config_file_name) + +target_metadata = SQLModel.metadata + +# alembic.ini sets this so Config validates; treat it as "unset" for URL resolution. +_CLI_PLACEHOLDER_DB_URL = "sqlite:///placeholder" + + +def _get_url() -> str: + """ + Prefer the URL injected by migrations.py via config.set_main_option, + falling back to the DATABASE_URL environment variable or a local SQLite DB. + """ + configured = alembic_config.get_main_option("sqlalchemy.url") + if configured and configured != _CLI_PLACEHOLDER_DB_URL: + return configured + + from utils.db_utils import get_database_url_and_connect_args, to_sync_sqlalchemy_url + + url, _ = get_database_url_and_connect_args() + return to_sync_sqlalchemy_url(url) + + +def run_migrations_offline() -> None: + """Generate SQL script without connecting to the database.""" + url = _get_url() + context.configure( + url=url, + target_metadata=target_metadata, + literal_binds=True, + dialect_opts={"paramstyle": "named"}, + compare_type=True, + ) + with context.begin_transaction(): + context.run_migrations() + + +def run_migrations_online() -> None: + """Run migrations against the live database.""" + configuration = dict(alembic_config.get_section(alembic_config.config_ini_section) or {}) + configuration["sqlalchemy.url"] = _get_url() + + connectable = engine_from_config( + configuration, + prefix="sqlalchemy.", + poolclass=pool.NullPool, + ) + with connectable.connect() as connection: + context.configure( + connection=connection, + target_metadata=target_metadata, + compare_type=True, + ) + with context.begin_transaction(): + context.run_migrations() + + +if context.is_offline_mode(): + run_migrations_offline() +else: + run_migrations_online() diff --git a/servers/fastapi/alembic/script.py.mako b/servers/fastapi/alembic/script.py.mako new file mode 100644 index 0000000..6ce3351 --- /dev/null +++ b/servers/fastapi/alembic/script.py.mako @@ -0,0 +1,27 @@ +"""${message} + +Revision ID: ${up_revision} +Revises: ${down_revision | comma,n} +Create Date: ${create_date} + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa +import sqlmodel +${imports if imports else ""} + +# revision identifiers, used by Alembic. +revision: str = ${repr(up_revision)} +down_revision: Union[str, None] = ${repr(down_revision)} +branch_labels: Union[str, Sequence[str], None] = ${repr(branch_labels)} +depends_on: Union[str, Sequence[str], None] = ${repr(depends_on)} + + +def upgrade() -> None: + ${upgrades if upgrades else "pass"} + + +def downgrade() -> None: + ${downgrades if downgrades else "pass"} diff --git a/servers/fastapi/alembic/versions/.gitkeep b/servers/fastapi/alembic/versions/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/servers/fastapi/alembic/versions/00b3c27a13bc_init.py b/servers/fastapi/alembic/versions/00b3c27a13bc_init.py new file mode 100644 index 0000000..17fb3cc --- /dev/null +++ b/servers/fastapi/alembic/versions/00b3c27a13bc_init.py @@ -0,0 +1,135 @@ +"""init + +Revision ID: 00b3c27a13bc +Revises: +Create Date: 2026-03-08 19:12:45.478149 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa +import sqlmodel + + +# revision identifiers, used by Alembic. +revision: str = '00b3c27a13bc' +down_revision: Union[str, None] = None +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def upgrade() -> None: + # ### commands auto generated by Alembic - please adjust! ### + op.create_table('async_presentation_generation_tasks', + sa.Column('id', sqlmodel.sql.sqltypes.AutoString(), nullable=False), + sa.Column('status', sqlmodel.sql.sqltypes.AutoString(), nullable=False), + sa.Column('message', sqlmodel.sql.sqltypes.AutoString(), nullable=True), + sa.Column('error', sa.JSON(), nullable=True), + sa.Column('created_at', sa.DateTime(), nullable=False), + sa.Column('updated_at', sa.DateTime(), nullable=False), + sa.Column('data', sa.JSON(), nullable=True), + sa.PrimaryKeyConstraint('id') + ) + op.create_table('imageasset', + sa.Column('id', sa.Uuid(), nullable=False), + sa.Column('created_at', sa.DateTime(timezone=True), nullable=False), + sa.Column('is_uploaded', sa.Boolean(), nullable=False), + sa.Column('path', sqlmodel.sql.sqltypes.AutoString(), nullable=False), + sa.Column('extras', sa.JSON(), nullable=True), + sa.PrimaryKeyConstraint('id') + ) + op.create_table('keyvaluesqlmodel', + sa.Column('id', sa.Uuid(), nullable=False), + sa.Column('key', sqlmodel.sql.sqltypes.AutoString(), nullable=False), + sa.Column('value', sa.JSON(), nullable=True), + sa.PrimaryKeyConstraint('id') + ) + op.create_index(op.f('ix_keyvaluesqlmodel_key'), 'keyvaluesqlmodel', ['key'], unique=False) + op.create_table('ollamapullstatus', + sa.Column('id', sqlmodel.sql.sqltypes.AutoString(), nullable=False), + sa.Column('last_updated', sa.DateTime(), nullable=True), + sa.Column('status', sa.JSON(), nullable=True), + sa.PrimaryKeyConstraint('id') + ) + op.create_table('presentation_layout_codes', + sa.Column('id', sa.Integer(), nullable=False), + sa.Column('presentation', sa.Uuid(), nullable=False), + sa.Column('layout_id', sqlmodel.sql.sqltypes.AutoString(), nullable=False), + sa.Column('layout_name', sqlmodel.sql.sqltypes.AutoString(), nullable=False), + sa.Column('layout_code', sa.Text(), nullable=True), + sa.Column('fonts', sa.JSON(), nullable=True), + sa.Column('created_at', sa.DateTime(timezone=True), nullable=False), + sa.Column('updated_at', sa.DateTime(timezone=True), nullable=False), + sa.PrimaryKeyConstraint('id') + ) + op.create_index(op.f('ix_presentation_layout_codes_presentation'), 'presentation_layout_codes', ['presentation'], unique=False) + op.create_table('presentations', + sa.Column('id', sa.Uuid(), nullable=False), + sa.Column('content', sqlmodel.sql.sqltypes.AutoString(), nullable=False), + sa.Column('n_slides', sa.Integer(), nullable=False), + sa.Column('language', sqlmodel.sql.sqltypes.AutoString(), nullable=False), + sa.Column('title', sqlmodel.sql.sqltypes.AutoString(), nullable=True), + sa.Column('file_paths', sa.JSON(), nullable=True), + sa.Column('outlines', sa.JSON(), nullable=True), + sa.Column('created_at', sa.DateTime(timezone=True), nullable=False), + sa.Column('updated_at', sa.DateTime(timezone=True), nullable=False), + sa.Column('layout', sa.JSON(), nullable=True), + sa.Column('structure', sa.JSON(), nullable=True), + sa.Column('instructions', sa.String(), nullable=True), + sa.Column('tone', sa.String(), nullable=True), + sa.Column('verbosity', sa.String(), nullable=True), + sa.Column('include_table_of_contents', sa.Boolean(), nullable=True), + sa.Column('include_title_slide', sa.Boolean(), nullable=True), + sa.Column('web_search', sa.Boolean(), nullable=True), + sa.PrimaryKeyConstraint('id') + ) + op.create_table('templates', + sa.Column('id', sa.Uuid(), nullable=False), + sa.Column('name', sqlmodel.sql.sqltypes.AutoString(), nullable=False), + sa.Column('description', sqlmodel.sql.sqltypes.AutoString(), nullable=True), + sa.Column('created_at', sa.DateTime(timezone=True), nullable=False), + sa.PrimaryKeyConstraint('id') + ) + op.create_table('webhook_subscriptions', + sa.Column('id', sqlmodel.sql.sqltypes.AutoString(), nullable=False), + sa.Column('created_at', sa.DateTime(timezone=True), nullable=False), + sa.Column('url', sqlmodel.sql.sqltypes.AutoString(), nullable=False), + sa.Column('secret', sqlmodel.sql.sqltypes.AutoString(), nullable=True), + sa.Column('event', sqlmodel.sql.sqltypes.AutoString(), nullable=False), + sa.PrimaryKeyConstraint('id') + ) + op.create_index(op.f('ix_webhook_subscriptions_event'), 'webhook_subscriptions', ['event'], unique=False) + op.create_table('slides', + sa.Column('id', sa.Uuid(), nullable=False), + sa.Column('presentation', sa.Uuid(), nullable=True), + sa.Column('layout_group', sqlmodel.sql.sqltypes.AutoString(), nullable=False), + sa.Column('layout', sqlmodel.sql.sqltypes.AutoString(), nullable=False), + sa.Column('index', sa.Integer(), nullable=False), + sa.Column('content', sa.JSON(), nullable=True), + sa.Column('html_content', sqlmodel.sql.sqltypes.AutoString(), nullable=True), + sa.Column('speaker_note', sqlmodel.sql.sqltypes.AutoString(), nullable=True), + sa.Column('properties', sa.JSON(), nullable=True), + sa.ForeignKeyConstraint(['presentation'], ['presentations.id'], ondelete='CASCADE'), + sa.PrimaryKeyConstraint('id') + ) + op.create_index(op.f('ix_slides_presentation'), 'slides', ['presentation'], unique=False) + # ### end Alembic commands ### + + +def downgrade() -> None: + # ### commands auto generated by Alembic - please adjust! ### + op.drop_index(op.f('ix_slides_presentation'), table_name='slides') + op.drop_table('slides') + op.drop_index(op.f('ix_webhook_subscriptions_event'), table_name='webhook_subscriptions') + op.drop_table('webhook_subscriptions') + op.drop_table('templates') + op.drop_table('presentations') + op.drop_index(op.f('ix_presentation_layout_codes_presentation'), table_name='presentation_layout_codes') + op.drop_table('presentation_layout_codes') + op.drop_table('ollamapullstatus') + op.drop_index(op.f('ix_keyvaluesqlmodel_key'), table_name='keyvaluesqlmodel') + op.drop_table('keyvaluesqlmodel') + op.drop_table('imageasset') + op.drop_table('async_presentation_generation_tasks') + # ### end Alembic commands ### diff --git a/servers/fastapi/alembic/versions/1d9a4c7b8e2f_add_template_v2_chat_scope.py b/servers/fastapi/alembic/versions/1d9a4c7b8e2f_add_template_v2_chat_scope.py new file mode 100644 index 0000000..574f64f --- /dev/null +++ b/servers/fastapi/alembic/versions/1d9a4c7b8e2f_add_template_v2_chat_scope.py @@ -0,0 +1,123 @@ +"""add template v2 chat scope + +Revision ID: 1d9a4c7b8e2f +Revises: 9b2d1c4e5f6a +Create Date: 2026-06-30 00:00:00.000000 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa +import sqlmodel + + +# revision identifiers, used by Alembic. +revision: str = "1d9a4c7b8e2f" +down_revision: Union[str, None] = "9b2d1c4e5f6a" +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def _has_table(table_name: str) -> bool: + return table_name in sa.inspect(op.get_bind()).get_table_names() + + +def _has_column(table_name: str, column_name: str) -> bool: + columns = sa.inspect(op.get_bind()).get_columns(table_name) + return column_name in {column["name"] for column in columns} + + +def _column_nullable(table_name: str, column_name: str) -> bool: + columns = sa.inspect(op.get_bind()).get_columns(table_name) + for column in columns: + if column["name"] == column_name: + return bool(column.get("nullable")) + return True + + +def _has_index(table_name: str, index_name: str) -> bool: + inspector = sa.inspect(op.get_bind()) + if table_name not in inspector.get_table_names(): + return False + return index_name in {index["name"] for index in inspector.get_indexes(table_name)} + + +def _has_foreign_key(table_name: str, constraint_name: str) -> bool: + inspector = sa.inspect(op.get_bind()) + if table_name not in inspector.get_table_names(): + return False + return constraint_name in { + foreign_key.get("name") for foreign_key in inspector.get_foreign_keys(table_name) + } + + +FK_TEMPLATE_V2_ID = "fk_chat_history_messages_template_v2_id_template_v2" + + +def upgrade() -> None: + if not _has_table("chat_history_messages"): + return + + with op.batch_alter_table("chat_history_messages") as batch_op: + if _has_column("chat_history_messages", "presentation_id") and not _column_nullable( + "chat_history_messages", "presentation_id" + ): + batch_op.alter_column( + "presentation_id", + existing_type=sa.Uuid(), + nullable=True, + ) + if not _has_column("chat_history_messages", "template_v2_id"): + batch_op.add_column( + sa.Column( + "template_v2_id", + sqlmodel.sql.sqltypes.AutoString(), + nullable=True, + ) + ) + if not _has_foreign_key("chat_history_messages", FK_TEMPLATE_V2_ID): + batch_op.create_foreign_key( + FK_TEMPLATE_V2_ID, + "template_v2", + ["template_v2_id"], + ["id"], + ondelete="CASCADE", + ) + + if not _has_index( + "chat_history_messages", op.f("ix_chat_history_messages_template_v2_id") + ): + op.create_index( + op.f("ix_chat_history_messages_template_v2_id"), + "chat_history_messages", + ["template_v2_id"], + unique=False, + ) + + +def downgrade() -> None: + if not _has_table("chat_history_messages"): + return + + if _has_index( + "chat_history_messages", op.f("ix_chat_history_messages_template_v2_id") + ): + op.drop_index( + op.f("ix_chat_history_messages_template_v2_id"), + table_name="chat_history_messages", + ) + + with op.batch_alter_table("chat_history_messages") as batch_op: + if _has_foreign_key("chat_history_messages", FK_TEMPLATE_V2_ID): + batch_op.drop_constraint(FK_TEMPLATE_V2_ID, type_="foreignkey") + if _has_column("chat_history_messages", "template_v2_id"): + batch_op.drop_column("template_v2_id") + if _has_column("chat_history_messages", "presentation_id") and _column_nullable( + "chat_history_messages", "presentation_id" + ): + batch_op.alter_column( + "presentation_id", + existing_type=sa.Uuid(), + nullable=False, + ) diff --git a/servers/fastapi/alembic/versions/2c8f4a1b9d7e_make_template_v2_layouts_nullable.py b/servers/fastapi/alembic/versions/2c8f4a1b9d7e_make_template_v2_layouts_nullable.py new file mode 100644 index 0000000..8dfd8ca --- /dev/null +++ b/servers/fastapi/alembic/versions/2c8f4a1b9d7e_make_template_v2_layouts_nullable.py @@ -0,0 +1,56 @@ +"""make template v2 layouts nullable + +Revision ID: 2c8f4a1b9d7e +Revises: 1d9a4c7b8e2f +Create Date: 2026-07-06 00:00:00.000000 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision: str = "2c8f4a1b9d7e" +down_revision: Union[str, None] = "1d9a4c7b8e2f" +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def _has_table(table_name: str) -> bool: + return table_name in sa.inspect(op.get_bind()).get_table_names() + + +def _has_column(table_name: str, column_name: str) -> bool: + columns = sa.inspect(op.get_bind()).get_columns(table_name) + return column_name in {column["name"] for column in columns} + + +def upgrade() -> None: + if not _has_table("template_v2") or not _has_column("template_v2", "layouts"): + return + + with op.batch_alter_table("template_v2") as batch_op: + batch_op.alter_column( + "layouts", + existing_type=sa.JSON(), + nullable=True, + ) + + +def downgrade() -> None: + if not _has_table("template_v2") or not _has_column("template_v2", "layouts"): + return + + op.execute( + "UPDATE template_v2 " + "SET layouts = '{\"layouts\": []}' " + "WHERE layouts IS NULL" + ) + with op.batch_alter_table("template_v2") as batch_op: + batch_op.alter_column( + "layouts", + existing_type=sa.JSON(), + nullable=False, + ) diff --git a/servers/fastapi/alembic/versions/3f2a1b4c5d6e_template_v2_ids_to_strings.py b/servers/fastapi/alembic/versions/3f2a1b4c5d6e_template_v2_ids_to_strings.py new file mode 100644 index 0000000..ef46cad --- /dev/null +++ b/servers/fastapi/alembic/versions/3f2a1b4c5d6e_template_v2_ids_to_strings.py @@ -0,0 +1,197 @@ +"""change template v2 ids to strings + +Revision ID: 3f2a1b4c5d6e +Revises: 5d7e9a1b2c3f +Create Date: 2026-07-09 00:00:00.000000 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa +import sqlmodel + + +# revision identifiers, used by Alembic. +revision: str = "3f2a1b4c5d6e" +down_revision: Union[str, None] = "5d7e9a1b2c3f" +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +FK_TEMPLATE_V2_ID = "fk_chat_history_messages_template_v2_id_template_v2" +TEMPLATE_V2_INDEX_NAME = "ix_chat_history_messages_template_v2_id" + + +def _inspector() -> sa.Inspector: + return sa.inspect(op.get_bind()) + + +def _has_table(table_name: str) -> bool: + return table_name in _inspector().get_table_names() + + +def _has_column(table_name: str, column_name: str) -> bool: + columns = _inspector().get_columns(table_name) + return column_name in {column["name"] for column in columns} + + +def _column_type(table_name: str, column_name: str) -> sa.types.TypeEngine: + for column in _inspector().get_columns(table_name): + if column["name"] == column_name: + return column["type"] + return sa.Uuid() + + +def _has_index(table_name: str, index_name: str) -> bool: + if not _has_table(table_name): + return False + return index_name in {index["name"] for index in _inspector().get_indexes(table_name)} + + +def _has_foreign_key(table_name: str, constraint_name: str) -> bool: + if not _has_table(table_name): + return False + return constraint_name in { + foreign_key.get("name") for foreign_key in _inspector().get_foreign_keys(table_name) + } + + +def _batch_kwargs() -> dict[str, str]: + if op.get_bind().dialect.name == "sqlite": + return {"recreate": "always"} + return {} + + +def _drop_template_v2_chat_scope() -> None: + if not _has_table("chat_history_messages"): + return + + if _has_index("chat_history_messages", TEMPLATE_V2_INDEX_NAME): + op.drop_index(TEMPLATE_V2_INDEX_NAME, table_name="chat_history_messages") + + if _has_foreign_key("chat_history_messages", FK_TEMPLATE_V2_ID): + with op.batch_alter_table("chat_history_messages", **_batch_kwargs()) as batch_op: + batch_op.drop_constraint(FK_TEMPLATE_V2_ID, type_="foreignkey") + + +def _restore_template_v2_chat_scope() -> None: + if not ( + _has_table("chat_history_messages") + and _has_column("chat_history_messages", "template_v2_id") + and _has_table("template_v2") + ): + return + + if not _has_foreign_key("chat_history_messages", FK_TEMPLATE_V2_ID): + with op.batch_alter_table("chat_history_messages", **_batch_kwargs()) as batch_op: + batch_op.create_foreign_key( + FK_TEMPLATE_V2_ID, + "template_v2", + ["template_v2_id"], + ["id"], + ondelete="CASCADE", + ) + + if not _has_index("chat_history_messages", TEMPLATE_V2_INDEX_NAME): + op.create_index( + TEMPLATE_V2_INDEX_NAME, + "chat_history_messages", + ["template_v2_id"], + unique=False, + ) + + +def _normalize_sqlite_uuid_strings(table_name: str, column_name: str) -> None: + if op.get_bind().dialect.name != "sqlite": + return + if not (_has_table(table_name) and _has_column(table_name, column_name)): + return + + op.execute( + sa.text( + f""" + UPDATE {table_name} + SET {column_name} = lower( + substr({column_name}, 1, 8) || '-' || + substr({column_name}, 9, 4) || '-' || + substr({column_name}, 13, 4) || '-' || + substr({column_name}, 17, 4) || '-' || + substr({column_name}, 21) + ) + WHERE {column_name} IS NOT NULL + AND length({column_name}) = 32 + AND {column_name} NOT LIKE '%-%' + """ + ) + ) + + +def _denormalize_sqlite_uuid_strings(table_name: str, column_name: str) -> None: + if op.get_bind().dialect.name != "sqlite": + return + if not (_has_table(table_name) and _has_column(table_name, column_name)): + return + + op.execute( + sa.text( + f""" + UPDATE {table_name} + SET {column_name} = lower(replace({column_name}, '-', '')) + WHERE {column_name} IS NOT NULL + AND length({column_name}) = 36 + """ + ) + ) + + +def _alter_column_to_string(table_name: str, column_name: str, *, nullable: bool) -> None: + if not (_has_table(table_name) and _has_column(table_name, column_name)): + return + + with op.batch_alter_table(table_name, **_batch_kwargs()) as batch_op: + batch_op.alter_column( + column_name, + existing_type=_column_type(table_name, column_name), + type_=sqlmodel.sql.sqltypes.AutoString(), + nullable=nullable, + postgresql_using=f"{column_name}::text", + ) + + +def _alter_column_to_uuid(table_name: str, column_name: str, *, nullable: bool) -> None: + if not (_has_table(table_name) and _has_column(table_name, column_name)): + return + + with op.batch_alter_table(table_name, **_batch_kwargs()) as batch_op: + batch_op.alter_column( + column_name, + existing_type=_column_type(table_name, column_name), + type_=sa.Uuid(), + nullable=nullable, + postgresql_using=f"{column_name}::uuid", + ) + + +def upgrade() -> None: + if not _has_table("template_v2"): + return + + _drop_template_v2_chat_scope() + _alter_column_to_string("template_v2", "id", nullable=False) + _alter_column_to_string("chat_history_messages", "template_v2_id", nullable=True) + _normalize_sqlite_uuid_strings("template_v2", "id") + _normalize_sqlite_uuid_strings("chat_history_messages", "template_v2_id") + _restore_template_v2_chat_scope() + + +def downgrade() -> None: + if not _has_table("template_v2"): + return + + _drop_template_v2_chat_scope() + _denormalize_sqlite_uuid_strings("chat_history_messages", "template_v2_id") + _denormalize_sqlite_uuid_strings("template_v2", "id") + _alter_column_to_uuid("chat_history_messages", "template_v2_id", nullable=True) + _alter_column_to_uuid("template_v2", "id", nullable=False) + _restore_template_v2_chat_scope() diff --git a/servers/fastapi/alembic/versions/4b7c9d0e1f2a_add_is_default_to_template_v2.py b/servers/fastapi/alembic/versions/4b7c9d0e1f2a_add_is_default_to_template_v2.py new file mode 100644 index 0000000..7669c28 --- /dev/null +++ b/servers/fastapi/alembic/versions/4b7c9d0e1f2a_add_is_default_to_template_v2.py @@ -0,0 +1,47 @@ +"""add is_default to template v2 + +Revision ID: 4b7c9d0e1f2a +Revises: 3f2a1b4c5d6e +Create Date: 2026-07-09 00:00:00.000000 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision: str = "4b7c9d0e1f2a" +down_revision: Union[str, None] = "3f2a1b4c5d6e" +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def _has_table(table_name: str) -> bool: + return table_name in sa.inspect(op.get_bind()).get_table_names() + + +def _has_column(table_name: str, column_name: str) -> bool: + columns = sa.inspect(op.get_bind()).get_columns(table_name) + return column_name in {column["name"] for column in columns} + + +def upgrade() -> None: + if not _has_table("template_v2") or _has_column("template_v2", "is_default"): + return + + op.add_column( + "template_v2", + sa.Column( + "is_default", + sa.Boolean(), + nullable=False, + server_default=sa.false(), + ), + ) + + +def downgrade() -> None: + if _has_table("template_v2") and _has_column("template_v2", "is_default"): + op.drop_column("template_v2", "is_default") diff --git a/servers/fastapi/alembic/versions/5d7e9a1b2c3f_add_font_uploads.py b/servers/fastapi/alembic/versions/5d7e9a1b2c3f_add_font_uploads.py new file mode 100644 index 0000000..f9c8e47 --- /dev/null +++ b/servers/fastapi/alembic/versions/5d7e9a1b2c3f_add_font_uploads.py @@ -0,0 +1,75 @@ +"""add font uploads + +Revision ID: 5d7e9a1b2c3f +Revises: 2c8f4a1b9d7e +Create Date: 2026-07-07 00:00:00.000000 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa +import sqlmodel + + +# revision identifiers, used by Alembic. +revision: str = "5d7e9a1b2c3f" +down_revision: Union[str, None] = "2c8f4a1b9d7e" +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def _has_table(table_name: str) -> bool: + return table_name in sa.inspect(op.get_bind()).get_table_names() + + +def _has_index(table_name: str, index_name: str) -> bool: + indexes = sa.inspect(op.get_bind()).get_indexes(table_name) + return index_name in {index["name"] for index in indexes} + + +def upgrade() -> None: + if not _has_table("font_uploads"): + op.create_table( + "font_uploads", + sa.Column("id", sa.Uuid(), nullable=False), + sa.Column("created_at", sa.DateTime(timezone=True), nullable=False), + sa.Column("filename", sqlmodel.sql.sqltypes.AutoString(), nullable=False), + sa.Column("path", sqlmodel.sql.sqltypes.AutoString(), nullable=False), + sa.Column( + "normalized_family_name", + sqlmodel.sql.sqltypes.AutoString(), + nullable=False, + ), + sa.Column("family_name", sa.String(), nullable=True), + sa.Column("subfamily_name", sa.String(), nullable=True), + sa.Column("full_name", sa.String(), nullable=True), + sa.Column("postscript_name", sa.String(), nullable=True), + sa.Column("weight_class", sa.Integer(), nullable=True), + sa.Column("width_class", sa.Integer(), nullable=True), + sa.Column("format", sa.String(), nullable=True), + sa.Column("size_bytes", sa.Integer(), nullable=False), + sa.Column("extras", sa.JSON(), nullable=True), + sa.PrimaryKeyConstraint("id"), + ) + if not _has_index( + "font_uploads", op.f("ix_font_uploads_normalized_family_name") + ): + op.create_index( + op.f("ix_font_uploads_normalized_family_name"), + "font_uploads", + ["normalized_family_name"], + unique=False, + ) + + +def downgrade() -> None: + if _has_table("font_uploads"): + if _has_index( + "font_uploads", op.f("ix_font_uploads_normalized_family_name") + ): + op.drop_index( + op.f("ix_font_uploads_normalized_family_name"), + table_name="font_uploads", + ) + op.drop_table("font_uploads") diff --git a/servers/fastapi/alembic/versions/6e4a1b2c3d5f_add_template_v2_and_presentation_version.py b/servers/fastapi/alembic/versions/6e4a1b2c3d5f_add_template_v2_and_presentation_version.py new file mode 100644 index 0000000..15e46e9 --- /dev/null +++ b/servers/fastapi/alembic/versions/6e4a1b2c3d5f_add_template_v2_and_presentation_version.py @@ -0,0 +1,112 @@ +"""add template v2 and presentation version + +Revision ID: 6e4a1b2c3d5f +Revises: c7b70d0f31b1 +Create Date: 2026-06-20 00:00:00.000000 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa +import sqlmodel + + +# revision identifiers, used by Alembic. +revision: str = "6e4a1b2c3d5f" +down_revision: Union[str, None] = "c7b70d0f31b1" +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +PRESENTATION_VERSION_DEFAULT = "v1-standard" + + +def _has_table(table_name: str) -> bool: + return table_name in sa.inspect(op.get_bind()).get_table_names() + + +def _has_column(table_name: str, column_name: str) -> bool: + columns = sa.inspect(op.get_bind()).get_columns(table_name) + return column_name in {column["name"] for column in columns} + + +def _presentation_version_enum() -> sa.Enum: + return sa.Enum( + "v1-standard", + "v2-standard", + name="presentation_version", + native_enum=False, + create_constraint=True, + ) + + +def _upgrade_template_v2() -> None: + if not _has_table("template_v2"): + op.create_table( + "template_v2", + sa.Column("id", sqlmodel.sql.sqltypes.AutoString(), nullable=False), + sa.Column("name", sqlmodel.sql.sqltypes.AutoString(), nullable=False), + sa.Column("description", sqlmodel.sql.sqltypes.AutoString(), nullable=True), + sa.Column("raw_layouts", sa.JSON(), nullable=True), + sa.Column("components", sa.JSON(), nullable=True), + sa.Column("layouts", sa.JSON(), nullable=False), + sa.Column("assets", sa.JSON(), nullable=True), + sa.Column("created_at", sa.DateTime(timezone=True), nullable=False), + sa.Column("updated_at", sa.DateTime(timezone=True), nullable=False), + sa.PrimaryKeyConstraint("id"), + ) + return + + optional_columns = ( + ("description", sqlmodel.sql.sqltypes.AutoString()), + ("raw_layouts", sa.JSON()), + ("components", sa.JSON()), + ("assets", sa.JSON()), + ) + for column_name, column_type in optional_columns: + if not _has_column("template_v2", column_name): + op.add_column( + "template_v2", + sa.Column(column_name, column_type, nullable=True), + ) + + for obsolete_column in ("cluster_candidates", "clusters"): + if _has_column("template_v2", obsolete_column): + op.drop_column("template_v2", obsolete_column) + + +def _upgrade_presentation_version() -> None: + if not _has_table("presentations"): + return + + version_type = _presentation_version_enum() + if not _has_column("presentations", "version"): + op.add_column( + "presentations", + sa.Column("version", version_type, nullable=True), + ) + + op.execute( + "UPDATE presentations " + f"SET version = '{PRESENTATION_VERSION_DEFAULT}' " + "WHERE version IS NULL" + ) + with op.batch_alter_table("presentations") as batch_op: + batch_op.alter_column( + "version", + existing_type=version_type, + nullable=False, + ) + + +def upgrade() -> None: + _upgrade_template_v2() + _upgrade_presentation_version() + + +def downgrade() -> None: + if _has_table("presentations") and _has_column("presentations", "version"): + op.drop_column("presentations", "version") + if _has_table("template_v2"): + op.drop_table("template_v2") diff --git a/servers/fastapi/alembic/versions/7f5b2c3d4e6a_add_slide_ui.py b/servers/fastapi/alembic/versions/7f5b2c3d4e6a_add_slide_ui.py new file mode 100644 index 0000000..b9ac301 --- /dev/null +++ b/servers/fastapi/alembic/versions/7f5b2c3d4e6a_add_slide_ui.py @@ -0,0 +1,37 @@ +"""add slide ui + +Revision ID: 7f5b2c3d4e6a +Revises: 6e4a1b2c3d5f +Create Date: 2026-06-20 00:00:00.000000 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision: str = "7f5b2c3d4e6a" +down_revision: Union[str, None] = "6e4a1b2c3d5f" +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def _has_table(table_name: str) -> bool: + return table_name in sa.inspect(op.get_bind()).get_table_names() + + +def _has_column(table_name: str, column_name: str) -> bool: + columns = sa.inspect(op.get_bind()).get_columns(table_name) + return column_name in {column["name"] for column in columns} + + +def upgrade() -> None: + if _has_table("slides") and not _has_column("slides", "ui"): + op.add_column("slides", sa.Column("ui", sa.JSON(), nullable=True)) + + +def downgrade() -> None: + if _has_table("slides") and _has_column("slides", "ui"): + op.drop_column("slides", "ui") diff --git a/servers/fastapi/alembic/versions/82abdbc476a7_add_theme_column_to_presentations.py b/servers/fastapi/alembic/versions/82abdbc476a7_add_theme_column_to_presentations.py new file mode 100644 index 0000000..c7282a6 --- /dev/null +++ b/servers/fastapi/alembic/versions/82abdbc476a7_add_theme_column_to_presentations.py @@ -0,0 +1,31 @@ +"""add theme column to presentations + +Revision ID: 82abdbc476a7 +Revises: f42ad4074449 +Create Date: 2026-03-24 12:42:46.220359 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa +import sqlmodel + + +# revision identifiers, used by Alembic. +revision: str = '82abdbc476a7' +down_revision: Union[str, None] = 'f42ad4074449' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def upgrade() -> None: + # ### commands auto generated by Alembic - please adjust! ### + pass + # ### end Alembic commands ### + + +def downgrade() -> None: + # ### commands auto generated by Alembic - please adjust! ### + pass + # ### end Alembic commands ### diff --git a/servers/fastapi/alembic/versions/8a6c4d2e1f30_add_merged_components_to_template_v2.py b/servers/fastapi/alembic/versions/8a6c4d2e1f30_add_merged_components_to_template_v2.py new file mode 100644 index 0000000..53dd219 --- /dev/null +++ b/servers/fastapi/alembic/versions/8a6c4d2e1f30_add_merged_components_to_template_v2.py @@ -0,0 +1,44 @@ +"""add merged components to template v2 + +Revision ID: 8a6c4d2e1f30 +Revises: 7f5b2c3d4e6a +Create Date: 2026-06-22 00:00:00.000000 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision: str = "8a6c4d2e1f30" +down_revision: Union[str, None] = "7f5b2c3d4e6a" +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def _has_table(table_name: str) -> bool: + return table_name in sa.inspect(op.get_bind()).get_table_names() + + +def _has_column(table_name: str, column_name: str) -> bool: + columns = sa.inspect(op.get_bind()).get_columns(table_name) + return column_name in {column["name"] for column in columns} + + +def upgrade() -> None: + if _has_table("template_v2") and not _has_column( + "template_v2", "merged_components" + ): + op.add_column( + "template_v2", + sa.Column("merged_components", sa.JSON(), nullable=True), + ) + + +def downgrade() -> None: + if _has_table("template_v2") and _has_column( + "template_v2", "merged_components" + ): + op.drop_column("template_v2", "merged_components") diff --git a/servers/fastapi/alembic/versions/95b5127e93cd_template_create_info.py b/servers/fastapi/alembic/versions/95b5127e93cd_template_create_info.py new file mode 100644 index 0000000..e69b50e --- /dev/null +++ b/servers/fastapi/alembic/versions/95b5127e93cd_template_create_info.py @@ -0,0 +1,46 @@ +"""template create info + +Revision ID: 95b5127e93cd +Revises: 82abdbc476a7 +Create Date: 2026-04-08 13:44:21.132802 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa +import sqlmodel + + +# revision identifiers, used by Alembic. +revision: str = '95b5127e93cd' +down_revision: Union[str, None] = '82abdbc476a7' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def _has_table(table_name: str) -> bool: + return table_name in sa.inspect(op.get_bind()).get_table_names() + + +def upgrade() -> None: + # ### commands auto generated by Alembic - please adjust! ### + if not _has_table('template_create_infos'): + op.create_table( + 'template_create_infos', + sa.Column('id', sa.Uuid(), nullable=False), + sa.Column('fonts', sa.JSON(), nullable=True), + sa.Column('pptx_url', sqlmodel.sql.sqltypes.AutoString(), nullable=True), + sa.Column('slide_htmls', sa.JSON(), nullable=False), + sa.Column('slide_image_urls', sa.JSON(), nullable=False), + sa.Column('created_at', sa.DateTime(timezone=True), nullable=False), + sa.PrimaryKeyConstraint('id'), + ) + # ### end Alembic commands ### + + +def downgrade() -> None: + # ### commands auto generated by Alembic - please adjust! ### + if _has_table('template_create_infos'): + op.drop_table('template_create_infos') + # ### end Alembic commands ### diff --git a/servers/fastapi/alembic/versions/9b2d1c4e5f6a_add_fonts_column_to_presentations.py b/servers/fastapi/alembic/versions/9b2d1c4e5f6a_add_fonts_column_to_presentations.py new file mode 100644 index 0000000..eb033df --- /dev/null +++ b/servers/fastapi/alembic/versions/9b2d1c4e5f6a_add_fonts_column_to_presentations.py @@ -0,0 +1,40 @@ +"""add fonts column to presentations + +Revision ID: 9b2d1c4e5f6a +Revises: 8a6c4d2e1f30 +Create Date: 2026-06-29 00:00:00.000000 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision: str = "9b2d1c4e5f6a" +down_revision: Union[str, None] = "8a6c4d2e1f30" +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def _has_table(table_name: str) -> bool: + return table_name in sa.inspect(op.get_bind()).get_table_names() + + +def _has_column(table_name: str, column_name: str) -> bool: + columns = sa.inspect(op.get_bind()).get_columns(table_name) + return column_name in {column["name"] for column in columns} + + +def upgrade() -> None: + if _has_table("presentations") and not _has_column("presentations", "fonts"): + op.add_column( + "presentations", + sa.Column("fonts", sa.JSON(), nullable=True), + ) + + +def downgrade() -> None: + if _has_table("presentations") and _has_column("presentations", "fonts"): + op.drop_column("presentations", "fonts") diff --git a/servers/fastapi/alembic/versions/a7d4c9e2f1b3_add_async_tasks.py b/servers/fastapi/alembic/versions/a7d4c9e2f1b3_add_async_tasks.py new file mode 100644 index 0000000..6ebab5f --- /dev/null +++ b/servers/fastapi/alembic/versions/a7d4c9e2f1b3_add_async_tasks.py @@ -0,0 +1,66 @@ +"""add async tasks + +Revision ID: a7d4c9e2f1b3 +Revises: 4b7c9d0e1f2a +Create Date: 2026-07-09 00:00:00.000000 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa +import sqlmodel + + +# revision identifiers, used by Alembic. +revision: str = "a7d4c9e2f1b3" +down_revision: Union[str, None] = "4b7c9d0e1f2a" +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def _has_table(table_name: str) -> bool: + return table_name in sa.inspect(op.get_bind()).get_table_names() + + +def _has_index(table_name: str, index_name: str) -> bool: + indexes = sa.inspect(op.get_bind()).get_indexes(table_name) + return index_name in {index["name"] for index in indexes} + + +def upgrade() -> None: + if not _has_table("async_tasks"): + op.create_table( + "async_tasks", + sa.Column("id", sqlmodel.sql.sqltypes.AutoString(), nullable=False), + sa.Column("type", sqlmodel.sql.sqltypes.AutoString(), nullable=False), + sa.Column("status", sqlmodel.sql.sqltypes.AutoString(), nullable=False), + sa.Column("message", sqlmodel.sql.sqltypes.AutoString(), nullable=True), + sa.Column("error", sa.JSON(), nullable=True), + sa.Column("data", sa.JSON(), nullable=True), + sa.Column("created_at", sa.DateTime(timezone=True), nullable=False), + sa.Column("updated_at", sa.DateTime(timezone=True), nullable=False), + sa.PrimaryKeyConstraint("id"), + ) + + if not _has_index("async_tasks", "ix_async_tasks_type"): + op.create_index( + op.f("ix_async_tasks_type"), + "async_tasks", + ["type"], + unique=False, + ) + if not _has_index("async_tasks", "ix_async_tasks_status"): + op.create_index( + op.f("ix_async_tasks_status"), + "async_tasks", + ["status"], + unique=False, + ) + + +def downgrade() -> None: + if _has_table("async_tasks"): + op.drop_index(op.f("ix_async_tasks_status"), table_name="async_tasks") + op.drop_index(op.f("ix_async_tasks_type"), table_name="async_tasks") + op.drop_table("async_tasks") diff --git a/servers/fastapi/alembic/versions/c7b70d0f31b1_added_chat_history_messages_table.py b/servers/fastapi/alembic/versions/c7b70d0f31b1_added_chat_history_messages_table.py new file mode 100644 index 0000000..e1df69f --- /dev/null +++ b/servers/fastapi/alembic/versions/c7b70d0f31b1_added_chat_history_messages_table.py @@ -0,0 +1,106 @@ +"""added_chat_history_messages_table + +Revision ID: c7b70d0f31b1 +Revises: 95b5127e93cd +Create Date: 2026-04-26 12:29:49.508761 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa +import sqlmodel + + +# revision identifiers, used by Alembic. +revision: str = 'c7b70d0f31b1' +down_revision: Union[str, None] = '95b5127e93cd' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def _has_table(table_name: str) -> bool: + return table_name in sa.inspect(op.get_bind()).get_table_names() + + +def _has_index(table_name: str, index_name: str) -> bool: + inspector = sa.inspect(op.get_bind()) + if table_name not in inspector.get_table_names(): + return False + return index_name in {index["name"] for index in inspector.get_indexes(table_name)} + + +def upgrade() -> None: + # ### commands auto generated by Alembic - please adjust! ### + if not _has_table('chat_history_messages'): + op.create_table( + 'chat_history_messages', + sa.Column('id', sa.Uuid(), nullable=False), + sa.Column('presentation_id', sa.Uuid(), nullable=False), + sa.Column('conversation_id', sa.Uuid(), nullable=False), + sa.Column('position', sa.Integer(), nullable=False), + sa.Column('role', sqlmodel.sql.sqltypes.AutoString(), nullable=False), + sa.Column('content', sa.Text(), nullable=False), + sa.Column('created_at', sa.DateTime(timezone=True), nullable=False), + sa.Column('tool_calls', sa.JSON(), nullable=True), + sa.ForeignKeyConstraint( + ['presentation_id'], ['presentations.id'], ondelete='CASCADE' + ), + sa.PrimaryKeyConstraint('id'), + ) + if not _has_index( + 'chat_history_messages', op.f('ix_chat_history_messages_conversation_id') + ): + op.create_index( + op.f('ix_chat_history_messages_conversation_id'), + 'chat_history_messages', + ['conversation_id'], + unique=False, + ) + if not _has_index( + 'chat_history_messages', op.f('ix_chat_history_messages_position') + ): + op.create_index( + op.f('ix_chat_history_messages_position'), + 'chat_history_messages', + ['position'], + unique=False, + ) + if not _has_index( + 'chat_history_messages', op.f('ix_chat_history_messages_presentation_id') + ): + op.create_index( + op.f('ix_chat_history_messages_presentation_id'), + 'chat_history_messages', + ['presentation_id'], + unique=False, + ) + # ### end Alembic commands ### + + +def downgrade() -> None: + # ### commands auto generated by Alembic - please adjust! ### + if _has_index( + 'chat_history_messages', op.f('ix_chat_history_messages_presentation_id') + ): + op.drop_index( + op.f('ix_chat_history_messages_presentation_id'), + table_name='chat_history_messages', + ) + if _has_index( + 'chat_history_messages', op.f('ix_chat_history_messages_position') + ): + op.drop_index( + op.f('ix_chat_history_messages_position'), + table_name='chat_history_messages', + ) + if _has_index( + 'chat_history_messages', op.f('ix_chat_history_messages_conversation_id') + ): + op.drop_index( + op.f('ix_chat_history_messages_conversation_id'), + table_name='chat_history_messages', + ) + if _has_table('chat_history_messages'): + op.drop_table('chat_history_messages') + # ### end Alembic commands ### diff --git a/servers/fastapi/alembic/versions/f42ad4074449_add_theme_column_to_presentations.py b/servers/fastapi/alembic/versions/f42ad4074449_add_theme_column_to_presentations.py new file mode 100644 index 0000000..7959313 --- /dev/null +++ b/servers/fastapi/alembic/versions/f42ad4074449_add_theme_column_to_presentations.py @@ -0,0 +1,40 @@ +"""add theme column to presentations + +Revision ID: f42ad4074449 +Revises: 00b3c27a13bc +Create Date: 2026-03-24 12:42:32.369006 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa +import sqlmodel + + +# revision identifiers, used by Alembic. +revision: str = 'f42ad4074449' +down_revision: Union[str, None] = '00b3c27a13bc' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def _has_column(table_name: str, column_name: str) -> bool: + inspector = sa.inspect(op.get_bind()) + if table_name not in inspector.get_table_names(): + return False + return column_name in {column["name"] for column in inspector.get_columns(table_name)} + + +def upgrade() -> None: + # ### commands auto generated by Alembic - please adjust! ### + if not _has_column('presentations', 'theme'): + op.add_column('presentations', sa.Column('theme', sa.JSON(), nullable=True)) + # ### end Alembic commands ### + + +def downgrade() -> None: + # ### commands auto generated by Alembic - please adjust! ### + if _has_column('presentations', 'theme'): + op.drop_column('presentations', 'theme') + # ### end Alembic commands ### diff --git a/servers/fastapi/api/__init__.py b/servers/fastapi/api/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/servers/fastapi/api/lifespan.py b/servers/fastapi/api/lifespan.py new file mode 100644 index 0000000..062582e --- /dev/null +++ b/servers/fastapi/api/lifespan.py @@ -0,0 +1,123 @@ +from contextlib import asynccontextmanager +import logging +import os + +from fastapi import FastAPI + +from migrations import migrate_database_on_startup +from services.database import create_db_and_tables, dispose_engines +from templates.default_templates import import_default_templates_on_startup +from utils.get_env import get_app_data_directory_env, get_can_change_keys_env +from utils.model_availability import ( + check_llm_and_image_provider_api_or_model_availability, +) +from utils.user_config import update_env_with_user_config +from utils.simple_auth import ( + clear_stored_credentials, + force_set_credentials, + is_auth_configured, + setup_initial_credentials, +) + +logger = logging.getLogger(__name__) + + +def _configure_application_logging() -> None: + """Honor LOG_LEVEL (default INFO) so template/export diagnostics are visible.""" + raw = (os.getenv("LOG_LEVEL") or "INFO").strip().upper() + level = getattr(logging, raw, logging.INFO) + root_logger = logging.getLogger() + root_logger.setLevel(level) + + if root_logger.handlers: + return + + logger_cursor: logging.Logger | None = logging.getLogger("uvicorn.error") + visible_handlers: list[logging.Handler] = [] + while logger_cursor is not None: + visible_handlers.extend(logger_cursor.handlers) + if not logger_cursor.propagate: + break + logger_cursor = logger_cursor.parent + + for handler in visible_handlers: + root_logger.addHandler(handler) + + if not root_logger.handlers: + logging.basicConfig(level=level) + + +def _is_truthy(value: str | None) -> bool: + if value is None: + return False + return value.strip().lower() in {"1", "true", "yes", "on"} + + +def _bootstrap_auth_from_env() -> None: + """ + Bootstrap the single-user login from environment variables. + + Behaviour: + - RESET_AUTH=true -> wipe stored credentials (recovery path). + - AUTH_USERNAME + AUTH_PASSWORD set: + * if no credentials configured -> create them (first-run preseed). + * if AUTH_OVERRIDE_FROM_ENV=true -> overwrite existing credentials. + - Otherwise do nothing; the login UI will run in setup-mode on first + visit and in sign-in-mode afterwards. + + Any errors here are logged and swallowed so a bad env value can never + brick the app — the operator can always fall back to the UI/reset flow. + """ + try: + if _is_truthy(os.getenv("RESET_AUTH")): + clear_stored_credentials() + logger.warning( + "RESET_AUTH is set; cleared stored login credentials. " + "The next visit will prompt for setup." + ) + + env_username = os.getenv("AUTH_USERNAME") + env_password = os.getenv("AUTH_PASSWORD") + if not env_username or not env_password: + return + + override = _is_truthy(os.getenv("AUTH_OVERRIDE_FROM_ENV")) + if is_auth_configured() and not override: + return + + if is_auth_configured() and override: + force_set_credentials(env_username, env_password) + logger.warning( + "AUTH_OVERRIDE_FROM_ENV is set; replaced stored credentials " + "with values from AUTH_USERNAME/AUTH_PASSWORD." + ) + else: + setup_initial_credentials(env_username, env_password) + logger.info( + "Initialized login credentials from AUTH_USERNAME/AUTH_PASSWORD." + ) + except Exception as exc: # pragma: no cover - defensive, never fatal. + logger.exception("Failed to bootstrap auth from environment: %s", exc) + + +@asynccontextmanager +async def app_lifespan(_: FastAPI): + """ + Lifespan context manager for FastAPI application. + Initializes the application data directory, runs Alembic migrations when + MIGRATE_DATABASE_ON_STARTUP=true, creates any missing tables, bootstraps + the single-user login from env vars (if provided), and checks LLM model + availability. + """ + _configure_application_logging() + os.makedirs(get_app_data_directory_env(), exist_ok=True) + await migrate_database_on_startup() + await create_db_and_tables() + await import_default_templates_on_startup() + _bootstrap_auth_from_env() + if get_can_change_keys_env() != "false": + update_env_with_user_config() + await check_llm_and_image_provider_api_or_model_availability() + yield + # Shutdown: release all database connections to prevent stale/leaked pools. + await dispose_engines() diff --git a/servers/fastapi/api/main.py b/servers/fastapi/api/main.py new file mode 100644 index 0000000..f59104f --- /dev/null +++ b/servers/fastapi/api/main.py @@ -0,0 +1,107 @@ +import os + +from fastapi import FastAPI +from fastapi.middleware.cors import CORSMiddleware +from fastapi.staticfiles import StaticFiles +from starlette.requests import Request +from starlette.responses import FileResponse + +from api.lifespan import app_lifespan +from api.middlewares import SessionAuthMiddleware, UserConfigEnvUpdateMiddleware +from api.v1.async_tasks.router import API_V1_ASYNC_TASKS_ROUTER +from api.v1.auth.router import API_V1_AUTH_ROUTER +from api.v1.mock.router import API_V1_MOCK_ROUTER +from api.v1.ppt.router import API_V1_PPT_ROUTER +from api.v1.webhook.router import API_V1_WEBHOOK_ROUTER +from utils.get_env import ( + get_app_data_directory_env, + get_sentry_dsn_env, + get_sentry_send_default_pii_env, + get_sentry_traces_sample_rate_env, +) +from utils.mime_types import init_sandbox_safe_mimetypes +from utils.path_helpers import get_resource_path + + +init_sandbox_safe_mimetypes() + + +def _maybe_init_sentry() -> None: + sentry_dsn = get_sentry_dsn_env() + if not sentry_dsn: + return + + try: + import sentry_sdk + except Exception: + # Sentry SDK is optional in some runtime targets. + return + + traces_sample_rate = get_sentry_traces_sample_rate_env() + send_default_pii = get_sentry_send_default_pii_env() + try: + parsed_sample_rate = ( + float(traces_sample_rate) if traces_sample_rate is not None else 1.0 + ) + except ValueError: + parsed_sample_rate = 1.0 + + parsed_send_default_pii = ( + send_default_pii.lower() == "true" if send_default_pii is not None else True + ) + + sentry_sdk.init( + dsn=sentry_dsn, + send_default_pii=parsed_send_default_pii, + traces_sample_rate=parsed_sample_rate, + ) + + +_maybe_init_sentry() + +app = FastAPI(lifespan=app_lifespan) + +# Routers +app.include_router(API_V1_PPT_ROUTER) +app.include_router(API_V1_WEBHOOK_ROUTER) +app.include_router(API_V1_MOCK_ROUTER) +app.include_router(API_V1_AUTH_ROUTER) +app.include_router(API_V1_ASYNC_TASKS_ROUTER) + +# Mount app_data and static assets (direct FastAPI access; nginx also serves /static in Docker). +app_data_dir = get_app_data_directory_env() +if app_data_dir: + os.makedirs(app_data_dir, exist_ok=True) + app.mount("/app_data", StaticFiles(directory=app_data_dir), name="app_data") + +static_dir = get_resource_path("static") +if os.path.isdir(static_dir): + app.mount("/static", StaticFiles(directory=static_dir), name="static") + +# Middlewares +origins = ["*"] +app.add_middleware( + CORSMiddleware, + allow_origins=origins, + allow_credentials=True, + allow_methods=["*"], + allow_headers=["*"], +) + +app.add_middleware(UserConfigEnvUpdateMiddleware) +app.add_middleware(SessionAuthMiddleware) + + +@app.middleware("http") +async def static_icon_fallback_middleware(request: Request, call_next): + """Serve placeholder when icon paths are missing (e.g. renamed Phosphor icons).""" + response = await call_next(request) + if response.status_code != 404: + return response + path = request.url.path + if not path.startswith("/static/icons/"): + return response + placeholder = get_resource_path("static/icons/placeholder.svg") + if not os.path.isfile(placeholder): + return response + return FileResponse(placeholder, media_type="image/svg+xml") diff --git a/servers/fastapi/api/middlewares.py b/servers/fastapi/api/middlewares.py new file mode 100644 index 0000000..9cace30 --- /dev/null +++ b/servers/fastapi/api/middlewares.py @@ -0,0 +1,87 @@ +from fastapi import Request +from starlette.responses import JSONResponse +from starlette.middleware.base import BaseHTTPMiddleware + +from utils.get_env import get_can_change_keys_env, is_disable_auth_enabled +from utils.simple_auth import ( + get_auth_status, + get_basic_auth_credentials_from_request, + get_session_token_from_request, + verify_credentials, +) +from utils.user_config import update_env_with_user_config + + +class UserConfigEnvUpdateMiddleware(BaseHTTPMiddleware): + async def dispatch(self, request: Request, call_next): + if get_can_change_keys_env() != "false": + update_env_with_user_config() + return await call_next(request) + + +class SessionAuthMiddleware(BaseHTTPMiddleware): + _EXEMPT_PREFIXES = ( + "/api/v1/auth/", + ) + _PUBLIC_APP_DATA_PREFIXES = ( + "/app_data/images/", + "/app_data/fonts/", + "/app_data/pptx-to-html/", + ) + _PROTECTED_NON_API_PATHS = { + "/docs", + "/openapi.json", + "/redoc", + } + + def _is_exempt(self, path: str) -> bool: + return any(path.startswith(prefix) for prefix in self._EXEMPT_PREFIXES) + + def _requires_auth(self, path: str) -> bool: + if path.startswith("/api/"): + return True + # Browser rendering/export may re-fetch slide assets without session/basic headers. + if any(path.startswith(prefix) for prefix in self._PUBLIC_APP_DATA_PREFIXES): + return False + if path.startswith("/app_data/"): + return True + return path in self._PROTECTED_NON_API_PATHS + + async def dispatch(self, request: Request, call_next): + if is_disable_auth_enabled(): + return await call_next(request) + + path = request.url.path + + if ( + request.method == "OPTIONS" + or not self._requires_auth(path) + or self._is_exempt(path) + ): + return await call_next(request) + + auth_status = get_auth_status(get_session_token_from_request(request)) + if not auth_status["configured"]: + return JSONResponse( + status_code=428, + content={ + "detail": "Login setup is required", + "setup_required": True, + }, + ) + + if not auth_status["authenticated"]: + basic_credentials = get_basic_auth_credentials_from_request(request) + if basic_credentials and verify_credentials( + basic_credentials[0], basic_credentials[1] + ): + request.state.auth_username = basic_credentials[0].strip() + return await call_next(request) + + return JSONResponse( + status_code=401, + content={"detail": "Unauthorized"}, + ) + + request.state.auth_username = auth_status.get("username") + return await call_next(request) diff --git a/servers/fastapi/api/v1/async_tasks/router.py b/servers/fastapi/api/v1/async_tasks/router.py new file mode 100644 index 0000000..6e6d35f --- /dev/null +++ b/servers/fastapi/api/v1/async_tasks/router.py @@ -0,0 +1,78 @@ +from datetime import datetime +from typing import Literal + +from fastapi import APIRouter, Depends, HTTPException, Path, Query +from sqlalchemy.ext.asyncio import AsyncSession +from sqlmodel import select + +from models.sql.async_task import AsyncTaskModel +from services.database import get_async_session + + +API_V1_ASYNC_TASKS_ROUTER = APIRouter( + prefix="/api/v1/async-tasks", + tags=["Async Tasks"], +) + + +@API_V1_ASYNC_TASKS_ROUTER.get( + "", + response_model=list[AsyncTaskModel], +) +async def list_async_tasks( + task_type: str | None = Query(default=None, alias="type"), + status: str | None = Query(default=None), + created_at: datetime | None = Query( + default=None, + description=( + "Only include tasks created at or after this timestamp. " + "Alias for created_at_from." + ), + ), + created_at_from: datetime | None = Query( + default=None, + description="Only include tasks created at or after this timestamp", + ), + created_at_to: datetime | None = Query( + default=None, + description="Only include tasks created at or before this timestamp", + ), + order_by: Literal["created_at", "updated_at"] = Query(default="created_at"), + order: Literal["asc", "desc"] = Query(default="desc"), + limit: int = Query(default=50, ge=1, le=200), + offset: int = Query(default=0, ge=0), + sql_session: AsyncSession = Depends(get_async_session), +): + statement = select(AsyncTaskModel) + if task_type is not None: + statement = statement.where(AsyncTaskModel.type == task_type) + if status is not None: + statement = statement.where(AsyncTaskModel.status == status) + created_at_start = created_at_from or created_at + if created_at_start is not None: + statement = statement.where(AsyncTaskModel.created_at >= created_at_start) + if created_at_to is not None: + statement = statement.where(AsyncTaskModel.created_at <= created_at_to) + + order_column = getattr(AsyncTaskModel, order_by) + statement = statement.order_by( + order_column.asc() if order == "asc" else order_column.desc() + ) + statement = statement.offset(offset).limit(limit) + + result = await sql_session.execute(statement) + return list(result.scalars().all()) + + +@API_V1_ASYNC_TASKS_ROUTER.get( + "/status/{id}", + response_model=AsyncTaskModel, +) +async def check_async_task_status( + id: str = Path(description="ID of the async task"), + sql_session: AsyncSession = Depends(get_async_session), +): + task = await sql_session.get(AsyncTaskModel, id) + if not task: + raise HTTPException(status_code=404, detail="No async task found") + return task diff --git a/servers/fastapi/api/v1/auth/router.py b/servers/fastapi/api/v1/auth/router.py new file mode 100644 index 0000000..bfe1171 --- /dev/null +++ b/servers/fastapi/api/v1/auth/router.py @@ -0,0 +1,107 @@ +from fastapi import APIRouter, HTTPException, Request +from pydantic import BaseModel, Field +from starlette.responses import JSONResponse + +from utils.simple_auth import ( + clear_session_cookie, + create_session_token, + get_auth_status, + get_basic_auth_credentials_from_request, + get_session_token_from_request, + is_auth_configured, + set_session_cookie, + setup_initial_credentials, + verify_credentials, +) +from utils.get_env import is_disable_auth_enabled + +API_V1_AUTH_ROUTER = APIRouter(prefix="/api/v1/auth", tags=["Auth"]) + + +class AuthCredentialsRequest(BaseModel): + username: str = Field(min_length=3, max_length=128) + password: str = Field(min_length=6, max_length=256) + + +@API_V1_AUTH_ROUTER.get("/status") +async def get_status(request: Request): + if is_disable_auth_enabled(): + return {"configured": True, "authenticated": True, "username": "electron"} + token = get_session_token_from_request(request) + return get_auth_status(token) + + +@API_V1_AUTH_ROUTER.get("/verify") +async def verify_session(request: Request): + if is_disable_auth_enabled(): + return {"authenticated": True, "username": "electron"} + + auth_status = get_auth_status(get_session_token_from_request(request)) + if not auth_status["configured"]: + raise HTTPException(status_code=401, detail="Unauthorized") + + if not auth_status["authenticated"]: + basic_credentials = get_basic_auth_credentials_from_request(request) + if basic_credentials and verify_credentials( + basic_credentials[0], basic_credentials[1] + ): + return { + "authenticated": True, + "username": basic_credentials[0].strip(), + } + raise HTTPException(status_code=401, detail="Unauthorized") + + return { + "authenticated": True, + "username": auth_status.get("username"), + } + + +@API_V1_AUTH_ROUTER.post("/setup") +async def setup_credentials(body: AuthCredentialsRequest, request: Request): + if is_auth_configured(): + raise HTTPException(status_code=409, detail="Credentials already configured") + + try: + setup_initial_credentials(body.username, body.password) + except ValueError as exc: + raise HTTPException(status_code=400, detail=str(exc)) from exc + + username = body.username.strip() + return JSONResponse( + { + "configured": True, + "authenticated": False, + "username": username, + } + ) + + +@API_V1_AUTH_ROUTER.post("/login") +async def login(body: AuthCredentialsRequest, request: Request): + if not is_auth_configured(): + raise HTTPException(status_code=428, detail="Login setup is required") + + if not verify_credentials(body.username, body.password): + raise HTTPException(status_code=401, detail="Unauthorized") + + username = body.username.strip() + token = create_session_token(username) + response = JSONResponse( + { + "configured": True, + "authenticated": True, + "username": username, + "access_token": token, + "token_type": "bearer", + } + ) + set_session_cookie(response, token, request) + return response + + +@API_V1_AUTH_ROUTER.post("/logout") +async def logout(request: Request): + response = JSONResponse({"success": True}) + clear_session_cookie(response, request) + return response diff --git a/servers/fastapi/api/v1/mock/router.py b/servers/fastapi/api/v1/mock/router.py new file mode 100644 index 0000000..260fe30 --- /dev/null +++ b/servers/fastapi/api/v1/mock/router.py @@ -0,0 +1,36 @@ +import uuid +from fastapi import APIRouter +from models.api_error_model import APIErrorModel +from models.presentation_and_path import PresentationPathAndEditPath +from typing import List + +from utils.asset_directory_utils import absolute_fastapi_asset_url + +API_V1_MOCK_ROUTER = APIRouter(prefix="/api/v1/mock", tags=["Mock"]) + + +@API_V1_MOCK_ROUTER.get( + "/presentation-generation-completed", + response_model=List[PresentationPathAndEditPath], +) +async def mock_presentation_generation_completed(): + return [ + PresentationPathAndEditPath( + presentation_id=uuid.uuid4(), + path=absolute_fastapi_asset_url("/app_data/exports/test.pdf"), + edit_path="/presentation?id=123", + ) + ] + + +@API_V1_MOCK_ROUTER.get( + "/presentation-generation-failed", + response_model=List[APIErrorModel], +) +async def mock_presentation_generation_completed(): + return [ + APIErrorModel( + status_code=500, + detail="Presentation generation failed", + ) + ] diff --git a/servers/fastapi/api/v1/ppt/endpoints/__init__.py b/servers/fastapi/api/v1/ppt/endpoints/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/servers/fastapi/api/v1/ppt/endpoints/anthropic.py b/servers/fastapi/api/v1/ppt/endpoints/anthropic.py new file mode 100644 index 0000000..cbe2690 --- /dev/null +++ b/servers/fastapi/api/v1/ppt/endpoints/anthropic.py @@ -0,0 +1,21 @@ +from typing import Annotated, List +from fastapi import APIRouter, Body, HTTPException + +from utils.available_models import ( + ModelAvailabilityError, + list_available_anthropic_models, +) + +ANTHROPIC_ROUTER = APIRouter(prefix="/anthropic", tags=["Anthropic"]) + + +@ANTHROPIC_ROUTER.post("/models/available", response_model=List[str]) +async def get_available_models( + api_key: Annotated[str, Body(embed=True)], +): + try: + return await list_available_anthropic_models(api_key) + except ModelAvailabilityError as e: + raise HTTPException(status_code=e.status_code, detail=str(e)) + except Exception as e: + raise HTTPException(status_code=500, detail=str(e)) diff --git a/servers/fastapi/api/v1/ppt/endpoints/chat.py b/servers/fastapi/api/v1/ppt/endpoints/chat.py new file mode 100644 index 0000000..f3f1304 --- /dev/null +++ b/servers/fastapi/api/v1/ppt/endpoints/chat.py @@ -0,0 +1,147 @@ +import json +import uuid + +from fastapi import APIRouter, Depends, HTTPException, Query +from fastapi.responses import StreamingResponse +from sqlalchemy.ext.asyncio import AsyncSession + +from models.chat import ( + ChatConversationListItem, + ChatHistoryMessageItem, + ChatHistoryResponse, + ChatMessageRequest, + ChatMessageResponse, +) +from models.sse_response import ( + SSECompleteResponse, + SSEErrorResponse, + SSEResponse, + SSEStatusResponse, + SSETraceResponse, +) +from services.chat import sql_chat_history +from services.chat import ChatTurnResult, PresentationChatService +from services.database import get_async_session + + +CHAT_ROUTER = APIRouter(prefix="/chat", tags=["Chat"]) + + +@CHAT_ROUTER.get("/conversations", response_model=list[ChatConversationListItem]) +async def list_chat_conversations( + presentation_id: uuid.UUID = Query(..., description="Presentation id"), + sql_session: AsyncSession = Depends(get_async_session), +): + raw = await sql_chat_history.list_conversations( + sql_session, presentation_id=presentation_id + ) + return [ + ChatConversationListItem( + conversation_id=uuid.UUID(str(item["conversation_id"])), + updated_at=item.get("updated_at"), + last_message_preview=item.get("last_message_preview"), + ) + for item in raw + ] + + +@CHAT_ROUTER.get("/history", response_model=ChatHistoryResponse) +async def get_chat_history( + presentation_id: uuid.UUID = Query(..., description="Presentation id"), + conversation_id: uuid.UUID = Query(..., description="Conversation thread id"), + sql_session: AsyncSession = Depends(get_async_session), +): + rows = await sql_chat_history.load_messages_with_meta( + sql_session, + presentation_id=presentation_id, + conversation_id=conversation_id, + ) + return ChatHistoryResponse( + presentation_id=presentation_id, + conversation_id=conversation_id, + messages=[ + ChatHistoryMessageItem( + role=str(message.get("role") or ""), + content=str(message.get("content") or ""), + created_at=message.get("created_at") + if isinstance(message.get("created_at"), str) + else None, + ) + for message in rows + ], + ) + + +@CHAT_ROUTER.delete("/conversation", status_code=204) +async def delete_chat_conversation( + presentation_id: uuid.UUID = Query(..., description="Presentation id"), + conversation_id: uuid.UUID = Query(..., description="Conversation thread id"), + sql_session: AsyncSession = Depends(get_async_session), +): + await sql_chat_history.delete_conversation( + sql_session, + presentation_id=presentation_id, + conversation_id=conversation_id, + ) + await sql_session.commit() + + +@CHAT_ROUTER.post("/message", response_model=ChatMessageResponse) +async def chat_message( + payload: ChatMessageRequest, + sql_session: AsyncSession = Depends(get_async_session), +): + service = PresentationChatService( + sql_session=sql_session, + presentation_id=payload.presentation_id, + conversation_id=payload.conversation_id, + ) + result = await service.generate_reply(payload.message, payload.attachments) + return ChatMessageResponse( + conversation_id=result.conversation_id, + response=result.response_text, + tool_calls=result.tool_calls, + ) + + +@CHAT_ROUTER.post("/message/stream") +async def chat_message_stream( + payload: ChatMessageRequest, + sql_session: AsyncSession = Depends(get_async_session), +): + service = PresentationChatService( + sql_session=sql_session, + presentation_id=payload.presentation_id, + conversation_id=payload.conversation_id, + ) + + async def inner(): + try: + async for event_type, value in service.stream_reply( + payload.message, + payload.attachments, + ): + if event_type == "chunk" and isinstance(value, str): + yield SSEResponse( + event="response", + data=json.dumps({"type": "chunk", "chunk": value}), + ).to_string() + elif event_type == "status" and isinstance(value, str): + yield SSEStatusResponse(status=value).to_string() + elif event_type == "trace" and isinstance(value, dict): + yield SSETraceResponse(trace=value).to_string() + elif event_type == "complete" and isinstance(value, ChatTurnResult): + result = value + complete_payload = ChatMessageResponse( + conversation_id=result.conversation_id, + response=result.response_text, + tool_calls=result.tool_calls, + ) + yield SSECompleteResponse( + key="chat", + value=complete_payload.model_dump(mode="json"), + ).to_string() + except HTTPException as exc: + yield SSEErrorResponse(detail=exc.detail).to_string() + + return StreamingResponse(inner(), media_type="text/event-stream") diff --git a/servers/fastapi/api/v1/ppt/endpoints/codex_auth.py b/servers/fastapi/api/v1/ppt/endpoints/codex_auth.py new file mode 100644 index 0000000..2c3f570 --- /dev/null +++ b/servers/fastapi/api/v1/ppt/endpoints/codex_auth.py @@ -0,0 +1,349 @@ +""" +OpenAI Codex OAuth endpoints. + +Flow: + 1. POST /codex/auth/initiate — start the flow, get back an auth URL + session_id + 2. Browser opens the URL, user authenticates with OpenAI + 3. OpenAI redirects to http://localhost:1455/auth/callback (captured by local server) + 4. GET /codex/auth/status/{session_id} — poll until code captured; exchanges and stores tokens + 5. POST /codex/auth/exchange — manual fallback if browser callback didn't fire + 6. POST /codex/auth/refresh — refresh a stored token +""" +import uuid +from typing import Optional + +from fastapi import APIRouter, HTTPException +from pydantic import BaseModel + +from utils.oauth.openai_codex import ( + CodexAccountProfile, + OAuthCallbackServer, + TokenSuccess, + create_authorization_flow, + exchange_authorization_code, + get_account_profile, + parse_authorization_input, + refresh_access_token, +) +from utils.get_env import ( + get_codex_access_token_env, + get_codex_email_env, + get_codex_is_pro_env, + get_codex_refresh_token_env, + get_codex_token_expires_env, + get_codex_username_env, +) +from utils.set_env import ( + set_codex_access_token_env, + set_codex_account_id_env, + set_codex_email_env, + set_codex_is_pro_env, + set_codex_refresh_token_env, + set_codex_token_expires_env, + set_codex_model_env, + set_codex_username_env, +) +from utils.user_config import save_codex_tokens_to_user_config + +CODEX_AUTH_ROUTER = APIRouter(prefix="/codex/auth", tags=["Codex OAuth"]) +CHATGPT_AUTH_REQUIRED_HEADERS = {"X-Presenton-Auth-Action": "codex-reauth"} +CHATGPT_AUTH_REQUIRED_PREFIX = "CHATGPT_AUTH_REQUIRED:" + +# --------------------------------------------------------------------------- +# In-memory session store {session_id: {"verifier": str, "state": str, "server": OAuthCallbackServer}} +# Sessions are short-lived; garbage-collected when consumed. +# --------------------------------------------------------------------------- +_sessions: dict[str, dict] = {} + + +# --------------------------------------------------------------------------- +# Request / Response models +# --------------------------------------------------------------------------- + +class InitiateResponse(BaseModel): + session_id: str + url: str + instructions: str + + +class StatusResponse(BaseModel): + status: str # "pending" | "success" | "failed" + account_id: Optional[str] = None + username: Optional[str] = None + email: Optional[str] = None + is_pro: Optional[bool] = None + detail: Optional[str] = None + + +class ExchangeRequest(BaseModel): + session_id: str + code: str # raw code OR full redirect URL OR code#state shorthand + + +class ExchangeResponse(BaseModel): + account_id: Optional[str] = None + username: Optional[str] = None + email: Optional[str] = None + is_pro: Optional[bool] = None + + +class RefreshResponse(BaseModel): + account_id: Optional[str] + username: Optional[str] = None + email: Optional[str] = None + is_pro: Optional[bool] = None + detail: str + + +# --------------------------------------------------------------------------- +# Helper +# --------------------------------------------------------------------------- + +def _parse_optional_bool(value: Optional[str]) -> Optional[bool]: + if value is None: + return None + normalized = value.strip().lower() + if normalized in {"true", "1", "yes", "y"}: + return True + if normalized in {"false", "0", "no", "n"}: + return False + return None + + +def _store_token(result: TokenSuccess) -> CodexAccountProfile: + """Persist token fields in env vars and userConfig.json. Returns parsed profile.""" + set_codex_access_token_env(result.access) + set_codex_refresh_token_env(result.refresh) + set_codex_token_expires_env(str(result.expires)) + + profile = get_account_profile(result.access, result.id_token) + set_codex_account_id_env(profile.account_id or "") + set_codex_username_env(profile.username or "") + set_codex_email_env(profile.email or "") + set_codex_is_pro_env("" if profile.is_pro is None else str(profile.is_pro)) + + save_codex_tokens_to_user_config() + return profile + + +# --------------------------------------------------------------------------- +# Endpoints +# --------------------------------------------------------------------------- + +@CODEX_AUTH_ROUTER.post("/initiate", response_model=InitiateResponse) +async def initiate_codex_auth(): + """ + Start the OpenAI Codex OAuth flow. + + Returns an authorization URL to open in the browser and a session_id to use + when polling /status or calling /exchange. A local HTTP server is started + on port 1455 to receive the redirect automatically. + """ + flow = create_authorization_flow() + server = OAuthCallbackServer(state=flow.state) + server_started = server.start() + + session_id = str(uuid.uuid4()) + _sessions[session_id] = { + "verifier": flow.verifier, + "state": flow.state, + "server": server, + "server_started": server_started, + } + + instructions = ( + "Open the URL in your browser and complete the OpenAI login. " + + ( + "The callback will be captured automatically." + if server_started + else "Port 1455 could not be bound — paste the redirect URL or code into /exchange." + ) + ) + + return InitiateResponse( + session_id=session_id, + url=flow.url, + instructions=instructions, + ) + + +@CODEX_AUTH_ROUTER.get("/status/{session_id}", response_model=StatusResponse) +async def poll_codex_auth_status(session_id: str): + """ + Poll for the result of an ongoing OAuth flow. + + Returns {"status": "pending"} until the callback server captures the code. + On success the tokens are stored in environment variables and the session + is cleaned up. + """ + session = _sessions.get(session_id) + if not session: + raise HTTPException(status_code=404, detail="Session not found or already consumed") + + server: OAuthCallbackServer = session["server"] + + # Non-blocking peek — check whether the callback server already received a code + code = server.get_code_nowait() if session.get("server_started") else None + + if code is None: + return StatusResponse(status="pending") + + # We have a code — exchange it + verifier: str = session["verifier"] + result = exchange_authorization_code(code, verifier) + + # Clean up session + server.close() + _sessions.pop(session_id, None) + + if not isinstance(result, TokenSuccess): + return StatusResponse(status="failed", detail=result.reason) + + profile = _store_token(result) + return StatusResponse( + status="success", + account_id=profile.account_id, + username=profile.username, + email=profile.email, + is_pro=profile.is_pro, + ) + + +@CODEX_AUTH_ROUTER.post("/exchange", response_model=ExchangeResponse) +async def exchange_codex_code(body: ExchangeRequest): + """ + Manual code exchange fallback. + + Accepts the session_id from /initiate and either: + - a bare authorization code + - the full redirect URL (http://localhost:1455/auth/callback?code=…&state=…) + - the code#state shorthand + + Exchanges the code for tokens and stores them in environment variables. + """ + session = _sessions.get(body.session_id) + if not session: + raise HTTPException(status_code=404, detail="Session not found or already consumed") + + parsed = parse_authorization_input(body.code) + code = parsed.get("code") + incoming_state = parsed.get("state") + + if not code: + raise HTTPException(status_code=400, detail="Could not extract authorization code from input") + + if incoming_state and incoming_state != session["state"]: + raise HTTPException(status_code=400, detail="State mismatch — possible CSRF") + + verifier: str = session["verifier"] + server: OAuthCallbackServer = session["server"] + + result = exchange_authorization_code(code, verifier) + + server.close() + _sessions.pop(body.session_id, None) + + if not isinstance(result, TokenSuccess): + raise HTTPException(status_code=502, detail=f"Token exchange failed: {result.reason}") + + profile = _store_token(result) + if not profile.account_id: + raise HTTPException(status_code=502, detail="Token exchanged but could not extract account ID") + + return ExchangeResponse( + account_id=profile.account_id, + username=profile.username, + email=profile.email, + is_pro=profile.is_pro, + ) + + +@CODEX_AUTH_ROUTER.post("/refresh", response_model=RefreshResponse) +async def refresh_codex_token(): + """ + Refresh the stored Codex OAuth access token using the refresh token. + + Updates environment variables with the new tokens. + """ + refresh_token = get_codex_refresh_token_env() + if not refresh_token: + raise HTTPException( + status_code=401, + detail=( + f"{CHATGPT_AUTH_REQUIRED_PREFIX} ChatGPT authentication is required. " + "Please sign in again from Settings." + ), + headers=CHATGPT_AUTH_REQUIRED_HEADERS, + ) + + result = refresh_access_token(refresh_token) + if not isinstance(result, TokenSuccess): + raise HTTPException( + status_code=401, + detail=( + f"{CHATGPT_AUTH_REQUIRED_PREFIX} Your ChatGPT session expired. " + "Please sign in again from Settings." + ), + headers=CHATGPT_AUTH_REQUIRED_HEADERS, + ) + + profile = _store_token(result) + return RefreshResponse( + account_id=profile.account_id, + username=profile.username, + email=profile.email, + is_pro=profile.is_pro, + detail="Token refreshed successfully", + ) + + +@CODEX_AUTH_ROUTER.get("/status", response_model=StatusResponse) +async def get_codex_auth_status(): + """ + Return whether a valid Codex OAuth token is currently stored. + """ + import time + + access_token = get_codex_access_token_env() + if not access_token: + return StatusResponse(status="not_authenticated", detail="No access token stored") + + expires_str = get_codex_token_expires_env() + if expires_str: + try: + expires_ms = int(expires_str) + now_ms = int(time.time() * 1000) + if now_ms >= expires_ms: + return StatusResponse(status="expired", detail="Access token has expired — call /refresh") + except (ValueError, TypeError): + pass + + profile = get_account_profile(access_token) + return StatusResponse( + status="authenticated", + account_id=profile.account_id, + username=profile.username or get_codex_username_env(), + email=profile.email or get_codex_email_env(), + is_pro=( + profile.is_pro + if profile.is_pro is not None + else _parse_optional_bool(get_codex_is_pro_env()) + ), + ) + + +@CODEX_AUTH_ROUTER.post("/logout") +async def logout_codex(): + """ + Clear all stored Codex OAuth credentials from environment variables and userConfig.json. + """ + set_codex_access_token_env("") + set_codex_refresh_token_env("") + set_codex_token_expires_env("") + set_codex_account_id_env("") + set_codex_username_env("") + set_codex_email_env("") + set_codex_is_pro_env("") + set_codex_model_env("") + save_codex_tokens_to_user_config(include_model=True) + return {"detail": "Logged out successfully"} diff --git a/servers/fastapi/api/v1/ppt/endpoints/files.py b/servers/fastapi/api/v1/ppt/endpoints/files.py new file mode 100644 index 0000000..f323c57 --- /dev/null +++ b/servers/fastapi/api/v1/ppt/endpoints/files.py @@ -0,0 +1,90 @@ +import os +from typing import Annotated, List, Optional +from fastapi import APIRouter, Body, File, HTTPException, UploadFile + +from constants.documents import UPLOAD_ACCEPTED_FILE_TYPES +from models.decomposed_file_info import DecomposedFileInfo +from services.temp_file_service import TEMP_FILE_SERVICE +from services.documents_loader import DocumentsLoader +import uuid +from utils.validators import validate_files + +FILES_ROUTER = APIRouter(prefix="/files", tags=["Files"]) + + +@FILES_ROUTER.post("/upload", response_model=List[str]) +async def upload_files(files: Optional[List[UploadFile]]): + if not files: + raise HTTPException(400, "Documents are required") + + temp_dir = TEMP_FILE_SERVICE.create_temp_dir(str(uuid.uuid4())) + + validate_files(files, True, True, 100, UPLOAD_ACCEPTED_FILE_TYPES) + + temp_files: List[str] = [] + if files: + for each_file in files: + temp_path = TEMP_FILE_SERVICE.create_temp_file_path( + each_file.filename, temp_dir + ) + with open(temp_path, "wb") as f: + content = await each_file.read() + f.write(content) + + temp_files.append(temp_path) + + return temp_files + + +@FILES_ROUTER.post("/decompose", response_model=List[DecomposedFileInfo]) +async def decompose_files( + file_paths: Annotated[List[str], Body(embed=True)], + language: Annotated[Optional[str], Body()] = None, +): + temp_dir = TEMP_FILE_SERVICE.create_temp_dir(str(uuid.uuid4())) + resolved_file_paths = TEMP_FILE_SERVICE.resolve_existing_temp_paths(file_paths) + + txt_files = [] + other_files = [] + for file_path in resolved_file_paths: + if file_path.endswith(".txt"): + txt_files.append(file_path) + else: + other_files.append(file_path) + + documents_loader = DocumentsLoader(file_paths=other_files, presentation_language=language) + await documents_loader.load_documents(temp_dir) + parsed_documents = documents_loader.documents + + response = [] + for index, parsed_doc in enumerate(parsed_documents): + file_path = TEMP_FILE_SERVICE.create_temp_file_path( + f"{uuid.uuid4()}.txt", temp_dir + ) + parsed_doc = parsed_doc.replace("
", "\n") + with open(file_path, "w", encoding="utf-8") as text_file: + text_file.write(parsed_doc) + response.append( + DecomposedFileInfo( + name=os.path.basename(other_files[index]), file_path=file_path + ) + ) + + # Return the txt documents as it is + for each_file in txt_files: + response.append( + DecomposedFileInfo(name=os.path.basename(each_file), file_path=each_file) + ) + + return response + + +@FILES_ROUTER.post("/update") +async def update_files( + file_path: Annotated[str, Body()], + file: Annotated[UploadFile, File()], +): + validate_files(file, False, False, 100, UPLOAD_ACCEPTED_FILE_TYPES) + await TEMP_FILE_SERVICE.update_temp_file_from_upload(file_path, file) + + return {"message": "File updated successfully"} diff --git a/servers/fastapi/api/v1/ppt/endpoints/fonts.py b/servers/fastapi/api/v1/ppt/endpoints/fonts.py new file mode 100644 index 0000000..6336fc7 --- /dev/null +++ b/servers/fastapi/api/v1/ppt/endpoints/fonts.py @@ -0,0 +1,172 @@ +from pathlib import Path +from typing import List, Optional + +from fastapi import APIRouter, File, HTTPException, UploadFile +from pydantic import BaseModel + +from templates.preview import FontCheckResponse, check_fonts_in_pptx_handler +from utils.font_uploads import ( + FONT_CONTENT_TYPES, + delete_font_upload, + font_upload_to_info, + get_font_upload_url, + list_font_uploads, + persist_upload_file, +) + + +FONTS_ROUTER = APIRouter(prefix="/fonts", tags=["fonts"]) + +SUPPORTED_FONT_EXTENSIONS = FONT_CONTENT_TYPES + + +class FontUploadResponse(BaseModel): + success: bool + font_name: str + font_url: str + font_path: str + message: Optional[str] = None + + +class FontListResponse(BaseModel): + success: bool + fonts: List[dict] + message: Optional[str] = None + + +class UploadedFontsResponse(BaseModel): + fonts: List[dict] + + +def _font_display_name(font_info) -> str: + return ( + font_info.family_name + or font_info.full_name + or font_info.normalized_family_name + or Path(font_info.filename).stem + ) + + +def _font_original_name(filename: str) -> str: + path = Path(filename) + stem = path.stem + if "_" in stem and len(stem.rsplit("_", 1)[-1]) == 8: + stem = stem.rsplit("_", 1)[0] + return f"{stem}{path.suffix}" + + +@FONTS_ROUTER.post("/upload", response_model=FontUploadResponse) +async def upload_font( + font_file: UploadFile = File( + ..., description="Font file to upload (.ttf, .otf, .woff, .woff2, .eot)" + ) +): + try: + if not font_file.filename: + raise HTTPException(status_code=400, detail="No file name provided") + + font_upload, _font_path = await persist_upload_file(font_file) + font_info = await font_upload_to_info(font_upload) + font_name = _font_display_name(font_info) + + return FontUploadResponse( + success=True, + font_name=font_name, + font_url=await get_font_upload_url(font_upload), + font_path=font_info.path, + message=f"Font '{font_name}' uploaded successfully", + ) + + except HTTPException: + raise + except Exception as exc: + print(f"Error uploading font: {exc}") + raise HTTPException( + status_code=500, detail=f"Error uploading font: {exc}" + ) from exc + + +@FONTS_ROUTER.get("/list", response_model=FontListResponse) +async def list_fonts(): + try: + response = await list_font_uploads() + fonts = [] + for font_info in response.fonts: + file_ext = Path(font_info.filename).suffix.lower() + fonts.append( + { + "id": str(font_info.id), + "filename": font_info.filename, + "font_name": _font_display_name(font_info), + "original_name": _font_original_name(font_info.filename), + "font_url": font_info.url, + "font_path": font_info.path, + "font_type": SUPPORTED_FONT_EXTENSIONS.get(file_ext, "unknown"), + "file_size": font_info.size_bytes, + "family_name": font_info.family_name, + "subfamily_name": font_info.subfamily_name, + "full_name": font_info.full_name, + "postscript_name": font_info.postscript_name, + "normalized_family_name": font_info.normalized_family_name, + "weight_class": font_info.weight_class, + "width_class": font_info.width_class, + "format": font_info.format, + } + ) + + return FontListResponse( + success=True, + fonts=fonts, + message=f"Found {len(fonts)} font files", + ) + + except Exception as exc: + print(f"Error listing fonts: {exc}") + raise HTTPException( + status_code=500, detail=f"Error listing fonts: {exc}" + ) from exc + + +@FONTS_ROUTER.get("/uploaded", response_model=UploadedFontsResponse) +async def get_uploaded_fonts(): + try: + response = await list_font_uploads() + return UploadedFontsResponse( + fonts=[ + { + "id": str(font_info.id), + "name": _font_display_name(font_info), + "url": font_info.url, + } + for font_info in response.fonts + ] + ) + + except Exception as exc: + print(f"Error getting uploaded fonts: {exc}") + raise HTTPException( + status_code=500, detail=f"Error getting uploaded fonts: {exc}" + ) from exc + + +FONTS_ROUTER.post("/check", response_model=FontCheckResponse)( + check_fonts_in_pptx_handler +) + + +@FONTS_ROUTER.delete("/delete/{filename}") +async def delete_font(filename: str): + try: + deleted = await delete_font_upload(filename) + return { + "success": True, + "message": f"Font '{deleted.filename}' deleted successfully", + } + + except HTTPException: + raise + except Exception as exc: + print(f"Error deleting font: {exc}") + raise HTTPException( + status_code=500, detail=f"Error deleting font: {exc}" + ) from exc diff --git a/servers/fastapi/api/v1/ppt/endpoints/google.py b/servers/fastapi/api/v1/ppt/endpoints/google.py new file mode 100644 index 0000000..610ea54 --- /dev/null +++ b/servers/fastapi/api/v1/ppt/endpoints/google.py @@ -0,0 +1,16 @@ +from typing import Annotated, List +from fastapi import APIRouter, Body, HTTPException + +from utils.available_models import ModelAvailabilityError, list_available_google_models + +GOOGLE_ROUTER = APIRouter(prefix="/google", tags=["Google"]) + + +@GOOGLE_ROUTER.post("/models/available", response_model=List[str]) +async def get_available_models(api_key: Annotated[str, Body(embed=True)]): + try: + return await list_available_google_models(api_key) + except ModelAvailabilityError as e: + raise HTTPException(status_code=e.status_code, detail=str(e)) + except Exception as e: + raise HTTPException(status_code=500, detail=str(e)) diff --git a/servers/fastapi/api/v1/ppt/endpoints/icons.py b/servers/fastapi/api/v1/ppt/endpoints/icons.py new file mode 100644 index 0000000..8420e7c --- /dev/null +++ b/servers/fastapi/api/v1/ppt/endpoints/icons.py @@ -0,0 +1,20 @@ +from typing import List + +from fastapi import APIRouter, Query +from services.icon_finder_service import ICON_FINDER_SERVICE +from utils.icon_weights import DEFAULT_ICON_WEIGHT, normalize_icon_weight + +ICONS_ROUTER = APIRouter(prefix="/icons", tags=["Icons"]) + + +@ICONS_ROUTER.get("/search", response_model=List[str]) +async def search_icons( + query: str, + limit: int = 20, + icon_weight: str = Query(default=DEFAULT_ICON_WEIGHT), +): + return await ICON_FINDER_SERVICE.search_icons( + query, + limit, + weight=normalize_icon_weight(icon_weight), + ) diff --git a/servers/fastapi/api/v1/ppt/endpoints/images.py b/servers/fastapi/api/v1/ppt/endpoints/images.py new file mode 100644 index 0000000..0010dfb --- /dev/null +++ b/servers/fastapi/api/v1/ppt/endpoints/images.py @@ -0,0 +1,258 @@ +from io import BytesIO +from typing import List +from fastapi import APIRouter, Depends, File, UploadFile, HTTPException, Query, Header +from PIL import Image, UnidentifiedImageError +from sqlalchemy.ext.asyncio import AsyncSession +from sqlmodel import select + +from models.image_prompt import ImagePrompt +from models.sql.image_asset import ImageAsset +from services.database import get_async_session +from services.image_generation_service import ImageGenerationService +from utils.asset_directory_utils import ( + filesystem_image_path_to_app_data_url, + get_images_directory, + normalize_slide_asset_url, +) +from utils.get_env import get_pexels_api_key_env, get_pixabay_api_key_env +from utils.image_provider import get_selected_image_provider +from enums.image_provider import ImageProvider +import os +import uuid +from utils.file_utils import get_file_name_with_random_uuid + +IMAGES_ROUTER = APIRouter(prefix="/images", tags=["Images"]) + +ALLOWED_UPLOAD_IMAGE_EXTENSIONS = { + ".avif", + ".bmp", + ".gif", + ".jpeg", + ".jpg", + ".png", + ".tif", + ".tiff", + ".webp", +} +ALLOWED_UPLOAD_IMAGE_FORMATS = { + "AVIF", + "BMP", + "GIF", + "JPEG", + "PNG", + "TIFF", + "WEBP", +} + + +async def _read_validated_image_upload(file: UploadFile) -> bytes: + filename = file.filename or "" + extension = os.path.splitext(filename)[1].lower() + if extension not in ALLOWED_UPLOAD_IMAGE_EXTENSIONS: + accepted = ", ".join(sorted(ALLOWED_UPLOAD_IMAGE_EXTENSIONS)) + raise HTTPException( + status_code=400, + detail=f"Invalid image file type. Accepted types: {accepted}", + ) + + content = await file.read() + if not content: + raise HTTPException(status_code=400, detail="Uploaded image file is empty") + + try: + with Image.open(BytesIO(content)) as image: + if image.format not in ALLOWED_UPLOAD_IMAGE_FORMATS: + raise HTTPException( + status_code=400, + detail="Uploaded image format is not supported", + ) + image.verify() + except HTTPException: + raise + except ( + Image.DecompressionBombError, + OSError, + SyntaxError, + UnidentifiedImageError, + ValueError, + ): + raise HTTPException( + status_code=400, detail="Uploaded file is not a valid image" + ) + + return content + + +def _normalize_stock_provider(provider: str | None) -> str: + normalized_provider = (provider or "").strip().lower() + if normalized_provider in {"pixels", "pixel", "pexel"}: + normalized_provider = "pexels" + + if normalized_provider: + if normalized_provider in {"pexels", "pixabay"}: + return normalized_provider + raise HTTPException( + status_code=400, + detail="provider must be either 'pexels' or 'pixabay'", + ) + + selected_provider = get_selected_image_provider() + if selected_provider == ImageProvider.PIXABAY: + return "pixabay" + return "pexels" + + +@IMAGES_ROUTER.get("/search", response_model=List[str]) +async def search_stock_images( + query: str, + limit: int = Query(default=12, ge=1, le=30), + provider: str | None = Query(default=None), + strict_api_key: bool = Query(default=False), + x_provider_api_key: str | None = Header(default=None, alias="X-Provider-Api-Key"), +): + normalized_provider = _normalize_stock_provider(provider) + + image_generation_service = ImageGenerationService(get_images_directory()) + + if normalized_provider == "pexels": + api_key = (x_provider_api_key or get_pexels_api_key_env() or "").strip() + if strict_api_key and not api_key: + raise HTTPException(status_code=401, detail="Pexels API key is required") + + # Pexels can return cached public responses for common queries. + # Use a nonce query in strict mode to force a real auth check. + if strict_api_key: + validation_query = f"__presenton_auth_check_{uuid.uuid4().hex}" + await image_generation_service.get_image_from_pexels( + validation_query, + api_key=api_key, + limit=1, + ) + + images = await image_generation_service.get_image_from_pexels( + query, + api_key=api_key, + limit=limit, + ) + if isinstance(images, str): + return [images] if images else [] + return images + + api_key = (x_provider_api_key or get_pixabay_api_key_env() or "").strip() + if strict_api_key and not api_key: + raise HTTPException(status_code=401, detail="Pixabay API key is required") + + images = await image_generation_service.get_image_from_pixabay( + query, + api_key=api_key, + limit=limit, + ) + if isinstance(images, str): + return [images] if images else [] + return images + + +@IMAGES_ROUTER.get("/generate") +async def generate_image( + prompt: str, sql_session: AsyncSession = Depends(get_async_session) +): + images_directory = get_images_directory() + image_prompt = ImagePrompt(prompt=prompt) + image_generation_service = ImageGenerationService(images_directory) + + image = await image_generation_service.generate_image(image_prompt) + if not isinstance(image, ImageAsset): + return normalize_slide_asset_url(image) if isinstance(image, str) else image + + sql_session.add(image) + await sql_session.commit() + + return filesystem_image_path_to_app_data_url(image.path) + + +def _image_asset_api_dict(asset: ImageAsset) -> dict: + return { + "id": asset.id, + "created_at": asset.created_at, + "is_uploaded": asset.is_uploaded, + "path": asset.path, + "extras": asset.extras, + "file_url": filesystem_image_path_to_app_data_url(asset.path), + } + + +@IMAGES_ROUTER.get("/generated") +async def get_generated_images(sql_session: AsyncSession = Depends(get_async_session)): + try: + images_result = await sql_session.scalars( + select(ImageAsset) + .where(ImageAsset.is_uploaded == False) + .order_by(ImageAsset.created_at.desc()) + ) + return [_image_asset_api_dict(a) for a in images_result] + except Exception as e: + raise HTTPException( + status_code=500, detail=f"Failed to retrieve generated images: {str(e)}" + ) + + +@IMAGES_ROUTER.post("/upload") +async def upload_image( + file: UploadFile = File(...), sql_session: AsyncSession = Depends(get_async_session) +): + try: + content = await _read_validated_image_upload(file) + new_filename = get_file_name_with_random_uuid(file) + image_path = os.path.join( + get_images_directory(), os.path.basename(new_filename) + ) + + with open(image_path, "wb") as f: + f.write(content) + + image_asset = ImageAsset(path=image_path, is_uploaded=True) + + sql_session.add(image_asset) + await sql_session.commit() + # Refresh to ensure all defaults are loaded + await sql_session.refresh(image_asset) + + return _image_asset_api_dict(image_asset) + except HTTPException: + raise + except Exception as e: + raise HTTPException(status_code=500, detail=f"Failed to upload image: {str(e)}") + + +@IMAGES_ROUTER.get("/uploaded") +async def get_uploaded_images(sql_session: AsyncSession = Depends(get_async_session)): + try: + images_result = await sql_session.scalars( + select(ImageAsset) + .where(ImageAsset.is_uploaded == True) + .order_by(ImageAsset.created_at.desc()) + ) + return [_image_asset_api_dict(a) for a in images_result] + except Exception as e: + raise HTTPException( + status_code=500, detail=f"Failed to retrieve uploaded images: {str(e)}" + ) + + +@IMAGES_ROUTER.delete("/{id}", status_code=204) +async def delete_uploaded_image_by_id( + id: uuid.UUID, sql_session: AsyncSession = Depends(get_async_session) +): + try: + # Fetch the asset to get its actual file path + image = await sql_session.get(ImageAsset, id) + if not image: + raise HTTPException(status_code=404, detail="Image not found") + + os.remove(image.path) + + await sql_session.delete(image) + await sql_session.commit() + + except Exception as e: + raise HTTPException(status_code=500, detail=f"Failed to delete image: {str(e)}") diff --git a/servers/fastapi/api/v1/ppt/endpoints/layouts.py b/servers/fastapi/api/v1/ppt/endpoints/layouts.py new file mode 100644 index 0000000..63d71d0 --- /dev/null +++ b/servers/fastapi/api/v1/ppt/endpoints/layouts.py @@ -0,0 +1,26 @@ +from fastapi import APIRouter, HTTPException +import aiohttp +from utils.get_layout_by_name import get_layout_by_name +from models.presentation_layout import PresentationLayoutModel + +LAYOUTS_ROUTER = APIRouter(prefix="/layouts", tags=["Layouts"]) + +@LAYOUTS_ROUTER.get("/", summary="Get available layouts") +async def get_layouts(): + url = "http://localhost:3000/api/layouts" # Adjust port if needed + async with aiohttp.ClientSession() as session: + async with session.get(url) as response: + if response.status != 200: + error_text = await response.text() + raise HTTPException( + status_code=response.status, + detail=f"Failed to fetch layouts: {error_text}" + ) + layouts_json = await response.json() + # Optionally, parse into a Pydantic model if you have one matching the structure + return layouts_json + + +@LAYOUTS_ROUTER.get("/{layout_name}", summary="Get layout details by ID") +async def get_layout_detail(layout_name: str) -> PresentationLayoutModel: + return await get_layout_by_name(layout_name) diff --git a/servers/fastapi/api/v1/ppt/endpoints/ollama.py b/servers/fastapi/api/v1/ppt/endpoints/ollama.py new file mode 100644 index 0000000..09f22ff --- /dev/null +++ b/servers/fastapi/api/v1/ppt/endpoints/ollama.py @@ -0,0 +1,36 @@ +from typing import List + +from fastapi import APIRouter +from fastapi.responses import StreamingResponse +from constants.supported_ollama_models import get_supported_ollama_models +from models.ollama_model_metadata import OllamaModelMetadata +from models.ollama_model_status import OllamaModelStatus +from utils.ollama import list_available_ollama_models, pull_ollama_model, get_ollama_library_models + +OLLAMA_ROUTER = APIRouter(prefix="/ollama", tags=["Ollama"]) + + +@OLLAMA_ROUTER.get("/models/supported", response_model=List[OllamaModelMetadata]) +async def get_supported_models(): + try: + pulled_models = await list_available_ollama_models() + except Exception: + pulled_models = [] + + return get_supported_ollama_models(pulled_models) +@OLLAMA_ROUTER.get("/models/available", response_model=List[OllamaModelStatus]) +async def get_available_models(ollama_url: str | None = None): + return await list_available_ollama_models(ollama_url) + + +@OLLAMA_ROUTER.get("/models/library") +async def get_library_models(): + return get_ollama_library_models() + +@OLLAMA_ROUTER.post("/models/pull") +async def pull_model(model_name: str, ollama_url: str | None = None): + await list_available_ollama_models(ollama_url) + return StreamingResponse( + pull_ollama_model(model_name, ollama_url), + media_type="text/event-stream", + ) diff --git a/servers/fastapi/api/v1/ppt/endpoints/openai.py b/servers/fastapi/api/v1/ppt/endpoints/openai.py new file mode 100644 index 0000000..8a2b5fe --- /dev/null +++ b/servers/fastapi/api/v1/ppt/endpoints/openai.py @@ -0,0 +1,22 @@ +from typing import Annotated, List +from fastapi import APIRouter, Body, HTTPException + +from utils.available_models import ( + ModelAvailabilityError, + list_available_openai_compatible_models, +) + +OPENAI_ROUTER = APIRouter(prefix="/openai", tags=["OpenAI"]) + + +@OPENAI_ROUTER.post("/models/available", response_model=List[str]) +async def get_available_models( + url: Annotated[str, Body()], + api_key: Annotated[str, Body()], +): + try: + return await list_available_openai_compatible_models(url, api_key) + except ModelAvailabilityError as e: + raise HTTPException(status_code=e.status_code, detail=str(e)) + except Exception as e: + raise HTTPException(status_code=500, detail=str(e)) diff --git a/servers/fastapi/api/v1/ppt/endpoints/outlines.py b/servers/fastapi/api/v1/ppt/endpoints/outlines.py new file mode 100644 index 0000000..c2b22b9 --- /dev/null +++ b/servers/fastapi/api/v1/ppt/endpoints/outlines.py @@ -0,0 +1,267 @@ +import asyncio +import json +import logging +import traceback +import uuid +import dirtyjson +from fastapi import APIRouter, Depends, HTTPException +from fastapi.responses import StreamingResponse +from sqlalchemy.ext.asyncio import AsyncSession + +from constants.presentation import MAX_NUMBER_OF_SLIDES +from models.presentation_outline_model import PresentationOutlineModel +from models.sql.presentation import PresentationModel +from models.sse_response import ( + SSECompleteResponse, + SSEErrorResponse, + SSEResponse, + SSEStatusResponse, +) +from services.temp_file_service import TEMP_FILE_SERVICE +from services.database import get_async_session +from services.documents_loader import DocumentsLoader +from services.mem0_presentation_memory_service import ( + MEM0_PRESENTATION_MEMORY_SERVICE, +) +from utils.llm_utils import message_content_to_text +from utils.outline_utils import ( + get_no_of_outlines_to_generate_for_n_slides, + get_presentation_title_from_presentation_outline, +) +from utils.outline_limits import normalize_outline_payload +from utils.llm_calls.generate_presentation_outlines import ( + OutlineGenerationStatus, + generate_ppt_outline, + get_messages as get_outline_messages, +) +from utils.sse import safe_sse_stream +from utils.web_search import get_selected_web_search_provider, get_web_search_route + +OUTLINES_ROUTER = APIRouter(prefix="/outlines", tags=["Outlines"]) +LOGGER = logging.getLogger(__name__) + + +@OUTLINES_ROUTER.get("/{id}", response_model=PresentationOutlineModel) +async def get_outline( + id: uuid.UUID, + sql_session: AsyncSession = Depends(get_async_session), +): + presentation = await sql_session.get(PresentationModel, id) + if not presentation: + raise HTTPException(status_code=404, detail="Presentation not found") + + if not presentation.outlines: + return PresentationOutlineModel(slides=[]) + + return PresentationOutlineModel(**presentation.outlines) + + +@OUTLINES_ROUTER.put("/{id}", response_model=PresentationOutlineModel) +async def update_outline( + id: uuid.UUID, + outline: PresentationOutlineModel, + sql_session: AsyncSession = Depends(get_async_session), +): + presentation = await sql_session.get(PresentationModel, id) + if not presentation: + raise HTTPException(status_code=404, detail="Presentation not found") + + presentation.outlines = outline.model_dump(mode="json") + presentation.n_slides = len(outline.slides) + presentation.title = get_presentation_title_from_presentation_outline(outline) + + sql_session.add(presentation) + await sql_session.commit() + + await MEM0_PRESENTATION_MEMORY_SERVICE.store_generated_outlines( + presentation.id, + presentation.outlines, + ) + + return outline + + +@OUTLINES_ROUTER.get("/stream/{id}") +async def stream_outlines( + id: uuid.UUID, sql_session: AsyncSession = Depends(get_async_session) +): + presentation = await sql_session.get(PresentationModel, id) + + if not presentation: + raise HTTPException(status_code=404, detail="Presentation not found") + + search_route, actual_search_provider = get_web_search_route() + LOGGER.info( + "Starting outline stream: presentation_id=%s web_search_enabled=%s " + "selected_web_search_provider=%s web_search_route=%s actual_web_search_provider=%s", + presentation.id, + presentation.web_search, + get_selected_web_search_provider().value, + search_route, + ( + actual_search_provider.value + if actual_search_provider + else ("model-native" if search_route == "native" else "none") + ), + ) + + temp_dir = TEMP_FILE_SERVICE.create_temp_dir() + + async def inner(): + yield SSEStatusResponse( + status="Preparing your presentation outline" + ).to_string() + + additional_context = "" + if presentation.file_paths: + documents_loader = DocumentsLoader( + file_paths=presentation.file_paths, + presentation_language=presentation.language, + ) + await documents_loader.load_documents(temp_dir) + documents = documents_loader.documents + if documents: + additional_context = "\n\n".join(documents) + + presentation_outlines_text = "" + + if presentation.n_slides > 0: + n_slides_to_generate = get_no_of_outlines_to_generate_for_n_slides( + n_slides=presentation.n_slides, + toc=presentation.include_table_of_contents, + title_slide=presentation.include_title_slide, + ) + else: + n_slides_to_generate = None + + outline_messages = get_outline_messages( + presentation.content, + n_slides_to_generate, + presentation.language, + additional_context, + presentation.tone, + presentation.verbosity, + presentation.instructions, + presentation.include_title_slide, + presentation.include_table_of_contents, + ) + await MEM0_PRESENTATION_MEMORY_SERVICE.store_generation_context( + presentation_id=presentation.id, + system_prompt=( + message_content_to_text(outline_messages[0].content) + if len(outline_messages) > 0 + else None + ), + user_prompt=( + message_content_to_text(outline_messages[1].content) + if len(outline_messages) > 1 + else None + ), + extracted_document_text=additional_context, + source_content=presentation.content, + instructions=presentation.instructions, + ) + + async for chunk in generate_ppt_outline( + presentation.content, + n_slides_to_generate, + presentation.language, + additional_context, + presentation.tone, + presentation.verbosity, + presentation.instructions, + presentation.include_title_slide, + presentation.web_search, + presentation.include_table_of_contents, + emit_statuses=True, + ): + # Give control to the event loop + await asyncio.sleep(0) + + if isinstance(chunk, OutlineGenerationStatus): + LOGGER.info( + "Outline generation status: presentation_id=%s status=%s", + presentation.id, + chunk.message, + ) + yield SSEStatusResponse(status=chunk.message).to_string() + continue + + if isinstance(chunk, HTTPException): + yield SSEErrorResponse(detail=chunk.detail).to_string() + return + + yield SSEResponse( + event="response", + data=json.dumps({"type": "chunk", "chunk": chunk}), + ).to_string() + + presentation_outlines_text += chunk + + try: + presentation_outlines_json = dict( + dirtyjson.loads(presentation_outlines_text) + ) + except Exception as e: + traceback.print_exc() + yield SSEErrorResponse( + detail=f"Failed to generate presentation outlines. Please try again. {str(e)}", + ).to_string() + return + + presentation_outlines = PresentationOutlineModel( + **normalize_outline_payload( + presentation_outlines_json, + MAX_NUMBER_OF_SLIDES, + ) + ) + + if ( + n_slides_to_generate is not None + and len(presentation_outlines.slides) != n_slides_to_generate + ): + yield SSEErrorResponse( + detail=( + "Failed to generate presentation outlines with requested " + "number of slides. Please try again." + ) + ).to_string() + return + + if n_slides_to_generate is not None: + presentation_outlines.slides = presentation_outlines.slides[ + :n_slides_to_generate + ] + + if presentation.n_slides <= 0: + presentation.n_slides = len(presentation_outlines.slides) + + presentation.outlines = presentation_outlines.model_dump() + presentation.title = get_presentation_title_from_presentation_outline( + presentation_outlines + ) + + sql_session.add(presentation) + await sql_session.commit() + + await MEM0_PRESENTATION_MEMORY_SERVICE.store_generated_outlines( + presentation.id, + presentation.outlines, + ) + + yield SSECompleteResponse( + key="presentation", value=presentation.model_dump(mode="json") + ).to_string() + + async def rollback_stream_session(): + await sql_session.rollback() + + return StreamingResponse( + safe_sse_stream( + inner(), + logger=LOGGER, + error_detail="Failed to generate presentation outlines. Please try again.", + on_error=rollback_stream_session, + ), + media_type="text/event-stream", + ) diff --git a/servers/fastapi/api/v1/ppt/endpoints/pdf_slides.py b/servers/fastapi/api/v1/ppt/endpoints/pdf_slides.py new file mode 100644 index 0000000..ede87b4 --- /dev/null +++ b/servers/fastapi/api/v1/ppt/endpoints/pdf_slides.py @@ -0,0 +1,118 @@ +import os +import shutil +import tempfile +import subprocess +from typing import List, Optional +from fastapi import APIRouter, UploadFile, File, HTTPException +from pydantic import BaseModel + +from services.documents_loader import DocumentsLoader +from utils.asset_directory_utils import absolute_fastapi_asset_url, get_images_directory +import uuid +from constants.documents import PDF_MIME_TYPES + + +PDF_SLIDES_ROUTER = APIRouter(prefix="/pdf-slides", tags=["PDF Slides"]) + + +class PdfSlideData(BaseModel): + slide_number: int + screenshot_url: str + + +class PdfSlidesResponse(BaseModel): + success: bool + slides: List[PdfSlideData] + total_slides: int + + +@PDF_SLIDES_ROUTER.post("/process", response_model=PdfSlidesResponse) +async def process_pdf_slides( + pdf_file: UploadFile = File(..., description="PDF file to process") +): + """ + Process a PDF file to extract slide screenshots. + + This endpoint: + 1. Validates the uploaded PDF file + 2. Uses the Python PDF renderer to convert PDF pages to PNG images + 3. Returns screenshot URLs for each slide/page + + Note: Font installation is not needed since PDFs already have fonts embedded. + """ + + # Validate PDF file + if pdf_file.content_type not in PDF_MIME_TYPES: + raise HTTPException( + status_code=400, + detail=f"Invalid file type. Expected PDF file, got {pdf_file.content_type}", + ) + # Enforce 100MB size limit + if ( + hasattr(pdf_file, "size") + and pdf_file.size + and pdf_file.size > (100 * 1024 * 1024) + ): + raise HTTPException( + status_code=400, + detail="PDF file exceeded max upload size of 100 MB", + ) + + # Create temporary directory for processing + with tempfile.TemporaryDirectory() as temp_dir: + try: + # Save uploaded PDF file + pdf_path = os.path.join(temp_dir, "presentation.pdf") + with open(pdf_path, "wb") as f: + pdf_content = await pdf_file.read() + f.write(pdf_content) + + # Generate screenshots from PDF using the Python PDF renderer. + screenshot_paths = await DocumentsLoader.get_page_images_from_pdf_async( + pdf_path, temp_dir + ) + print(f"Generated {len(screenshot_paths)} PDF screenshots") + + # Move screenshots to images directory and generate URLs + images_dir = get_images_directory() + presentation_id = uuid.uuid4() + presentation_images_dir = os.path.join(images_dir, str(presentation_id)) + os.makedirs(presentation_images_dir, exist_ok=True) + + slides_data = [] + + for i, screenshot_path in enumerate(screenshot_paths, 1): + # Move screenshot to permanent location + screenshot_filename = f"slide_{i}.png" + permanent_screenshot_path = os.path.join( + presentation_images_dir, screenshot_filename + ) + + if ( + os.path.exists(screenshot_path) + and os.path.getsize(screenshot_path) > 0 + ): + # Use shutil.copy2 instead of os.rename to handle cross-device moves + shutil.copy2(screenshot_path, permanent_screenshot_path) + screenshot_url = absolute_fastapi_asset_url( + f"/app_data/images/{presentation_id}/{screenshot_filename}" + ) + else: + # Fallback if screenshot generation failed or file is empty placeholder + screenshot_url = absolute_fastapi_asset_url( + "/static/images/replaceable_template_image.png" + ) + + slides_data.append( + PdfSlideData(slide_number=i, screenshot_url=screenshot_url) + ) + + return PdfSlidesResponse( + success=True, slides=slides_data, total_slides=len(slides_data) + ) + + except Exception as e: + print(f"Error processing PDF slides: {str(e)}") + raise HTTPException( + status_code=500, detail=f"Failed to process PDF: {str(e)}" + ) diff --git a/servers/fastapi/api/v1/ppt/endpoints/pptx_slides.py b/servers/fastapi/api/v1/ppt/endpoints/pptx_slides.py new file mode 100644 index 0000000..6906608 --- /dev/null +++ b/servers/fastapi/api/v1/ppt/endpoints/pptx_slides.py @@ -0,0 +1,500 @@ +import os +import shutil +import zipfile +import tempfile +import uuid +from typing import List, Optional, Dict +from fastapi import APIRouter, UploadFile, File, HTTPException +from pydantic import BaseModel +import aiohttp +import asyncio +import xml.etree.ElementTree as ET +import re + +from templates.fonts_and_slides_preview import ( + _PreviewLogger, + render_pptx_slides_to_images, +) +from utils.asset_directory_utils import absolute_fastapi_asset_url, get_images_directory +from constants.documents import POWERPOINT_TYPES + + +PPTX_SLIDES_ROUTER = APIRouter(prefix="/pptx-slides", tags=["PPTX Slides"]) + + +class SlideData(BaseModel): + slide_number: int + screenshot_url: str + xml_content: str + normalized_fonts: List[str] + + +class FontAnalysisResult(BaseModel): + internally_supported_fonts: List[ + Dict[str, str] + ] # [{"name": "Open Sans", "google_fonts_url": "..."}] + not_supported_fonts: List[str] # ["Custom Font Name"] + + +class PptxSlidesResponse(BaseModel): + success: bool + slides: List[SlideData] + total_slides: int + fonts: Optional[FontAnalysisResult] = None + + +# NEW: Fonts-only router and response for PPTX +class PptxFontsResponse(BaseModel): + success: bool + fonts: FontAnalysisResult + + +PPTX_FONTS_ROUTER = APIRouter(prefix="/pptx-fonts", tags=["PPTX Fonts"]) + +# NEW: Normalize font family names by removing style/weight/stretch descriptors and splitting camel case +_STYLE_TOKENS = { + # styles + "italic", + "italics", + "ital", + "oblique", + "roman", + # combined style shortcuts + "bolditalic", + "bolditalics", + # weights + "thin", + "hairline", + "extralight", + "ultralight", + "light", + "demilight", + "semilight", + "book", + "regular", + "normal", + "medium", + "semibold", + "demibold", + "bold", + "extrabold", + "ultrabold", + "black", + "extrablack", + "ultrablack", + "heavy", + # width/stretch + "narrow", + "condensed", + "semicondensed", + "extracondensed", + "ultracondensed", + "expanded", + "semiexpanded", + "extraexpanded", + "ultraexpanded", +} +# Modifiers commonly used with style tokens +_STYLE_MODIFIERS = {"semi", "demi", "extra", "ultra"} + + +def _insert_spaces_in_camel_case(value: str) -> str: + # Insert space before capital letters preceded by lowercase or digits (e.g., MontserratBold -> Montserrat Bold) + value = re.sub(r"(?<=[a-z0-9])([A-Z])", r" \1", value) + # Handle sequences like BoldItalic -> Bold Italic + value = re.sub(r"([A-Z]+)([A-Z][a-z])", r"\1 \2", value) + return value + + +def normalize_font_family_name(raw_name: str) -> str: + if not raw_name: + return raw_name + # Replace separators with spaces + name = raw_name.replace("_", " ").replace("-", " ") + # Insert spaces in camel case + name = _insert_spaces_in_camel_case(name) + # Collapse multiple spaces + name = re.sub(r"\s+", " ", name).strip() + # Lowercase helper for matching but keep original casing for output + lower_name = name.lower() + # Quick cut: if the full string ends with a pure style suffix, trim it + for style in sorted(_STYLE_TOKENS, key=len, reverse=True): + if lower_name.endswith(" " + style): + name = name[: -(len(style) + 1)] + lower_name = lower_name[: -(len(style) + 1)] + break + # Tokenize + tokens_original = name.split(" ") + tokens_filtered: List[str] = [] + for index, tok in enumerate(tokens_original): + lower_tok = tok.lower() + # Always keep the first token to avoid stripping families like "Black Ops One" + if index == 0: + tokens_filtered.append(tok) + continue + # Drop style tokens and standalone modifiers + if lower_tok in _STYLE_TOKENS or lower_tok in _STYLE_MODIFIERS: + continue + tokens_filtered.append(tok) + # If everything except first token was dropped and first token is a style token (unlikely), fallback to original + if not tokens_filtered: + tokens_filtered = tokens_original + normalized = " ".join(tokens_filtered).strip() + # Final cleanup of leftover multiple spaces + normalized = re.sub(r"\s+", " ", normalized) + return normalized + + +def extract_fonts_from_oxml(xml_content: str) -> List[str]: + """ + Extract font names from OXML content. + + Args: + xml_content: OXML content as string + + Returns: + List of unique font names found in the OXML + """ + fonts = set() + + try: + # Parse the XML content + root = ET.fromstring(xml_content) + + # Define namespaces commonly used in OXML + namespaces = { + "a": "http://schemas.openxmlformats.org/drawingml/2006/main", + "p": "http://schemas.openxmlformats.org/presentationml/2006/main", + "r": "http://schemas.openxmlformats.org/officeDocument/2006/relationships", + } + + # Search for font references in various OXML elements + # Look for latin fonts + for font_elem in root.findall(".//a:latin", namespaces): + if "typeface" in font_elem.attrib: + fonts.add(font_elem.attrib["typeface"]) + + # Look for east asian fonts + for font_elem in root.findall(".//a:ea", namespaces): + if "typeface" in font_elem.attrib: + fonts.add(font_elem.attrib["typeface"]) + + # Look for complex script fonts + for font_elem in root.findall(".//a:cs", namespaces): + if "typeface" in font_elem.attrib: + fonts.add(font_elem.attrib["typeface"]) + + # Look for font references in theme elements + for font_elem in root.findall(".//a:font", namespaces): + if "typeface" in font_elem.attrib: + fonts.add(font_elem.attrib["typeface"]) + + # Look for rPr (run properties) font references + for rpr_elem in root.findall(".//a:rPr", namespaces): + for font_elem in rpr_elem.findall(".//a:latin", namespaces): + if "typeface" in font_elem.attrib: + fonts.add(font_elem.attrib["typeface"]) + + # Also search without namespace prefix for compatibility + for font_elem in root.findall(".//latin"): + if "typeface" in font_elem.attrib: + fonts.add(font_elem.attrib["typeface"]) + + # Regex fallback for fonts that might be missed + font_pattern = r'typeface="([^"]+)"' + regex_fonts = re.findall(font_pattern, xml_content) + fonts.update(regex_fonts) + + # Filter out system fonts and empty values + system_fonts = {"+mn-lt", "+mj-lt", "+mn-ea", "+mj-ea", "+mn-cs", "+mj-cs", ""} + fonts = {font for font in fonts if font not in system_fonts and font.strip()} + + return list(fonts) + + except Exception as e: + print(f"Error extracting fonts from OXML: {e}") + return [] + + +async def check_google_font_availability(font_name: str) -> bool: + """ + Check if a font is available in Google Fonts. + + Args: + font_name: Name of the font to check + + Returns: + True if font is available in Google Fonts, False otherwise + """ + try: + formatted_name = font_name.replace(" ", "+") + url = f"https://fonts.googleapis.com/css2?family={formatted_name}&display=swap" + + async with aiohttp.ClientSession() as session: + async with session.head( + url, timeout=aiohttp.ClientTimeout(total=10) + ) as response: + return response.status == 200 + + except Exception as e: + print(f"Error checking Google Font availability for {font_name}: {e}") + return False + + +async def analyze_fonts_in_all_slides(slide_xmls: List[str]) -> FontAnalysisResult: + """ + Analyze fonts across all slides and determine Google Fonts availability. + + Args: + slide_xmls: List of OXML content strings from all slides + + Returns: + FontAnalysisResult with supported and unsupported fonts + """ + # Extract fonts from all slides + raw_fonts = set() + for xml_content in slide_xmls: + slide_fonts = extract_fonts_from_oxml(xml_content) + raw_fonts.update(slide_fonts) + + # Normalize to root families (e.g., "Montserrat Italic" -> "Montserrat") + normalized_fonts = {normalize_font_family_name(f) for f in raw_fonts} + # Remove empties if any + normalized_fonts = {f for f in normalized_fonts if f} + + if not normalized_fonts: + return FontAnalysisResult(internally_supported_fonts=[], not_supported_fonts=[]) + + # Check each normalized font's availability in Google Fonts concurrently + tasks = [check_google_font_availability(font) for font in normalized_fonts] + results = await asyncio.gather(*tasks) + + internally_supported_fonts = [] + not_supported_fonts = [] + + for font, is_available in zip(normalized_fonts, results): + if is_available: + formatted_name = font.replace(" ", "+") + google_fonts_url = f"https://fonts.googleapis.com/css2?family={formatted_name}&display=swap" + internally_supported_fonts.append( + {"name": font, "google_fonts_url": google_fonts_url} + ) + else: + not_supported_fonts.append(font) + + return FontAnalysisResult( + internally_supported_fonts=internally_supported_fonts, not_supported_fonts=[] + ) + + +@PPTX_SLIDES_ROUTER.post("/process", response_model=PptxSlidesResponse) +async def process_pptx_slides( + pptx_file: UploadFile = File(..., description="PPTX file to process"), + fonts: Optional[List[UploadFile]] = File(None, description="Optional font files"), +): + """ + Process a PPTX file to extract slide screenshots and XML content. + + This endpoint: + 1. Validates the uploaded PPTX file + 2. Loads any provided font files for Chromium rendering + 3. Unzips the PPTX to extract slide XMLs + 4. Converts PPTX slides to HTML and renders screenshots with Chromium + 5. Returns both screenshot URLs and XML content for each slide + """ + + # Validate PPTX file + if pptx_file.content_type not in POWERPOINT_TYPES: + raise HTTPException( + status_code=400, + detail=f"Invalid file type. Expected PPTX file, got {pptx_file.content_type}", + ) + # Enforce 100MB size limit + if ( + hasattr(pptx_file, "size") + and pptx_file.size + and pptx_file.size > (100 * 1024 * 1024) + ): + raise HTTPException( + status_code=400, + detail="PPTX file exceeded max upload size of 100 MB", + ) + + # Create temporary directory for processing + with tempfile.TemporaryDirectory() as temp_dir: + if True: + # Save uploaded PPTX file + pptx_path = os.path.join(temp_dir, "presentation.pptx") + with open(pptx_path, "wb") as f: + pptx_content = await pptx_file.read() + f.write(pptx_content) + + font_paths = await _save_fonts(fonts or [], temp_dir) + + # Extract slide XMLs from PPTX + slide_xmls = _extract_slide_xmls(pptx_path, temp_dir) + + screenshot_paths = await render_pptx_slides_to_images( + modified_pptx_path=pptx_path, + font_paths_for_install=font_paths, + max_slides=None, + logger=_PreviewLogger(), + ) + if len(screenshot_paths) != len(slide_xmls): + raise HTTPException( + status_code=500, + detail=( + "PPTX preview renderer returned an unexpected slide count: " + f"expected {len(slide_xmls)}, got {len(screenshot_paths)}" + ), + ) + print(f"Screenshot paths: {screenshot_paths}") + + # Analyze fonts across all slides + font_analysis = await analyze_fonts_in_all_slides(slide_xmls) + print( + f"Font analysis completed: {len(font_analysis.internally_supported_fonts)} supported, {len(font_analysis.not_supported_fonts)} not supported" + ) + + # Move screenshots to images directory and generate URLs + images_dir = get_images_directory() + presentation_id = uuid.uuid4() + presentation_images_dir = os.path.join(images_dir, str(presentation_id)) + os.makedirs(presentation_images_dir, exist_ok=True) + + slides_data = [] + + for i, (xml_content, screenshot_path) in enumerate( + zip(slide_xmls, screenshot_paths), 1 + ): + # Move screenshot to permanent location + screenshot_filename = f"slide_{i}.png" + permanent_screenshot_path = os.path.join( + presentation_images_dir, screenshot_filename + ) + + if ( + os.path.exists(screenshot_path) + and os.path.getsize(screenshot_path) > 0 + ): + # Use shutil.copy2 instead of os.rename to handle cross-device moves + shutil.copy2(screenshot_path, permanent_screenshot_path) + screenshot_url = absolute_fastapi_asset_url( + f"/app_data/images/{presentation_id}/{screenshot_filename}" + ) + else: + # Fallback if screenshot generation failed or file is empty placeholder + screenshot_url = absolute_fastapi_asset_url( + "/static/images/replaceable_template_image.png" + ) + + # Compute normalized fonts for this slide + raw_slide_fonts = extract_fonts_from_oxml(xml_content) + normalized_fonts = sorted( + {normalize_font_family_name(f) for f in raw_slide_fonts if f} + ) + + slides_data.append( + SlideData( + slide_number=i, + screenshot_url=screenshot_url, + xml_content=xml_content, + normalized_fonts=normalized_fonts, + ) + ) + + return PptxSlidesResponse( + success=True, + slides=slides_data, + total_slides=len(slides_data), + fonts=font_analysis, + ) + + +# NEW: Fonts-only endpoint leveraging the same font extraction/analysis +@PPTX_FONTS_ROUTER.post("/process", response_model=PptxFontsResponse) +async def process_pptx_fonts( + pptx_file: UploadFile = File(..., description="PPTX file to analyze fonts from") +): + """ + Analyze a PPTX file and return only the fonts used in the document. + + Uses the exact same font extraction and analysis utilities as the /pptx-slides endpoint. + """ + # Validate PPTX file + if pptx_file.content_type not in POWERPOINT_TYPES: + raise HTTPException( + status_code=400, + detail=f"Invalid file type. Expected PPTX file, got {pptx_file.content_type}", + ) + + # Create temporary directory for processing + with tempfile.TemporaryDirectory() as temp_dir: + # Save uploaded PPTX file + pptx_path = os.path.join(temp_dir, "presentation.pptx") + with open(pptx_path, "wb") as f: + pptx_content = await pptx_file.read() + f.write(pptx_content) + + # Extract slide XMLs from PPTX + slide_xmls = _extract_slide_xmls(pptx_path, temp_dir) + + # Analyze fonts across all slides (same logic as in /pptx-slides) + font_analysis = await analyze_fonts_in_all_slides(slide_xmls) + + return PptxFontsResponse( + success=True, + fonts=font_analysis, + ) + + +async def _save_fonts(fonts: List[UploadFile], temp_dir: str) -> List[str]: + """Save provided fonts so the HTML preview renderer can load them.""" + fonts_dir = os.path.join(temp_dir, "fonts") + os.makedirs(fonts_dir, exist_ok=True) + font_paths: List[str] = [] + + for font_file in fonts: + font_path = os.path.join(fonts_dir, font_file.filename) + with open(font_path, "wb") as f: + font_content = await font_file.read() + f.write(font_content) + font_paths.append(font_path) + + return font_paths + + +def _extract_slide_xmls(pptx_path: str, temp_dir: str) -> List[str]: + """Extract slide XML content from PPTX file.""" + slide_xmls = [] + extract_dir = os.path.join(temp_dir, "pptx_extract") + + try: + # Unzip PPTX file + with zipfile.ZipFile(pptx_path, "r") as zip_ref: + zip_ref.extractall(extract_dir) + + # Look for slides in ppt/slides/ directory + slides_dir = os.path.join(extract_dir, "ppt", "slides") + + if not os.path.exists(slides_dir): + raise Exception("No slides directory found in PPTX file") + + # Get all slide XML files and sort them numerically + slide_files = [ + f + for f in os.listdir(slides_dir) + if f.startswith("slide") and f.endswith(".xml") + ] + slide_files.sort(key=lambda x: int(x.replace("slide", "").replace(".xml", ""))) + + # Read XML content from each slide + for slide_file in slide_files: + slide_path = os.path.join(slides_dir, slide_file) + with open(slide_path, "r", encoding="utf-8") as f: + slide_xmls.append(f.read()) + + return slide_xmls + + except Exception as e: + raise Exception(f"Failed to extract slide XMLs: {str(e)}") diff --git a/servers/fastapi/api/v1/ppt/endpoints/presentation.py b/servers/fastapi/api/v1/ppt/endpoints/presentation.py new file mode 100644 index 0000000..eaee71b --- /dev/null +++ b/servers/fastapi/api/v1/ppt/endpoints/presentation.py @@ -0,0 +1,2680 @@ +import asyncio +import copy +from datetime import datetime +import json +import logging +import os +import random +import re +import traceback +from typing import Annotated, Any, List, Literal, Optional, Tuple +import dirtyjson +from fastapi import ( + APIRouter, + BackgroundTasks, + Body, + Depends, + HTTPException, + Path, + Query, + Request, +) +from fastapi.responses import StreamingResponse +from sqlalchemy import delete +from sqlalchemy.ext.asyncio import AsyncSession +from sqlmodel import select +from constants.presentation import DEFAULT_TEMPLATES, MAX_NUMBER_OF_SLIDES +from enums.webhook_event import WebhookEvent +from models.api_error_model import APIErrorModel +from models.generate_presentation_request import GeneratePresentationRequest +from models.presentation_and_path import PresentationPathAndEditPath +from models.presentation_from_template import EditPresentationRequest +from models.presentation_outline_model import ( + PresentationOutlineModel, + SlideOutlineModel, +) +from enums.tone import Tone +from enums.verbosity import Verbosity +from models.presentation_structure_model import PresentationStructureModel +from models.presentation_with_slides import ( + PresentationDetailWithSlides, + PresentationWithSlides, +) +from services.documents_loader import DocumentsLoader +from services.temp_file_service import TEMP_FILE_SERVICE +from services.webhook_service import WebhookService +from services.image_generation_service import ImageGenerationService +from services.mem0_presentation_memory_service import ( + MEM0_PRESENTATION_MEMORY_SERVICE, +) +from utils.dict_utils import deep_update +from utils.export_utils import export_presentation +from utils.llm_calls.generate_presentation_outlines import ( + generate_ppt_outline, + get_messages as get_outline_messages, +) +from models.sql.slide import SlideModel +from models.sql.presentation_layout_code import PresentationLayoutCodeModel +from models.sse_response import SSECompleteResponse, SSEErrorResponse, SSEResponse + +from services.database import get_async_session +from services.database import async_session_maker +from services.concurrent_service import CONCURRENT_SERVICE +from models.sql.presentation import PresentationModel, PresentationVersion +from models.sql.template_v2 import TemplateV2 +from models.sql.async_task import AsyncTaskModel +from utils.asset_directory_utils import get_images_directory +from utils.llm_calls.generate_presentation_structure import ( + generate_presentation_structure, +) +from utils.llm_calls.generate_slide_content import ( + get_slide_content_from_type_and_outline, +) +from utils.ppt_utils import ( + select_toc_or_list_slide_layout_index, +) +from utils.outline_utils import ( + get_images_for_slides_from_outline, + get_no_of_outlines_to_generate_for_n_slides, + get_no_of_toc_required_for_n_outlines, + get_presentation_outline_model_with_toc, + get_presentation_title_from_presentation_outline, +) +from utils.outline_limits import normalize_outline_payload +from utils.process_slides import ( + process_slide_add_placeholder_assets, + process_slide_and_fetch_assets, +) +from utils.get_layout_by_name import get_layout_by_name +from utils.llm_utils import message_content_to_text +from utils.sse import safe_sse_stream +from utils.simple_auth import ( + SESSION_COOKIE_NAME, + create_session_token, + get_session_token_from_request, +) +from utils.web_search import get_selected_web_search_provider, get_web_search_route +from models.presentation_layout import PresentationLayoutModel, SlideLayoutModel +from templates.v2.schema import get_template_schema +import uuid + +logger = logging.getLogger(__name__) + + +PRESENTATION_ROUTER = APIRouter(prefix="/presentation", tags=["Presentation"]) +ASYNC_TASK_TYPE_PRESENTATION_GENERATE = "presentation.generate" + + +def _presentation_task_progress_data( + created_slides: int, + remaining_slides: int, +) -> dict[str, int]: + return { + "created_slides": max(created_slides, 0), + "remaining_slides": max(remaining_slides, 0), + } + + +def _requested_slide_count(request: GeneratePresentationRequest) -> int: + if request.slides_markdown: + return len(request.slides_markdown) + return request.n_slides or 0 + + +def _extract_custom_template_id(layout_name: Optional[str]) -> Optional[uuid.UUID]: + if not layout_name or not layout_name.startswith("custom-"): + return None + try: + return uuid.UUID(layout_name.replace("custom-", "")) + except Exception: + return None + + +def _extract_template_v2_id(layout_name: Optional[str]) -> Optional[str]: + if not isinstance(layout_name, str): + return None + + layout_name = layout_name.strip() + if not layout_name: + return None + for prefix in ("template-v2-", "template-v2:"): + if layout_name.startswith(prefix): + candidate = layout_name[len(prefix) :].strip() + return candidate or None + return None + + +def _extract_requested_template_v2_id( + template_name: Optional[str], + *, + allow_bare: bool = False, +) -> Optional[str]: + if not isinstance(template_name, str): + return None + + value = template_name.strip() + if not value: + return None + for prefix in ("template-v2-", "template-v2:", "custom-"): + if not value.startswith(prefix): + continue + candidate = value[len(prefix) :] + return candidate.strip() or None + + return value if allow_bare else None + + +def _extract_template_v2_metadata_id(key: str, value: Any) -> Optional[str]: + if not isinstance(value, str): + return None + + prefixed = _extract_template_v2_id(value) + if prefixed: + return prefixed + if key in {"template_id", "template_v2_id"}: + candidate = value.strip() + return candidate or None + return None + + +async def _resolve_requested_template_v2( + template_name: str, + sql_session: AsyncSession, + *, + allow_bare: bool = False, +) -> Optional[TemplateV2]: + template_id = _extract_requested_template_v2_id( + template_name, + allow_bare=allow_bare, + ) + if not template_id: + return None + + template = await sql_session.get(TemplateV2, template_id) + if template: + return template + + raise HTTPException( + status_code=400, + detail="Template not found. Please use a valid template.", + ) + + +def _copy_template_v2_layout_payload( + template: TemplateV2, +) -> dict[str, Any]: + layout_payload = copy.deepcopy(template.layouts) + if not isinstance(layout_payload, dict): + raise HTTPException( + status_code=400, + detail="Template v2 layout JSON must be an object", + ) + + return layout_payload + + +async def _resolve_generation_layout( + template_name: str, + sql_session: AsyncSession, +) -> tuple[dict[str, Any], PresentationLayoutModel, Optional[dict[str, str]], bool]: + template_v2 = await _resolve_requested_template_v2(template_name, sql_session) + if template_v2: + layout_payload = _copy_template_v2_layout_payload(template_v2) + return ( + layout_payload, + _build_template_v2_structure_layout(template_v2, layout_payload), + _extract_template_v2_fonts_from_assets(template_v2.assets), + True, + ) + + if template_name not in DEFAULT_TEMPLATES: + raise HTTPException( + status_code=400, + detail="Template not found. Please use a valid template.", + ) + + layout_model = await get_layout_by_name(template_name) + return layout_model.model_dump(mode="json"), layout_model, None, False + + +def _is_template_v2_slide(slide: SlideModel) -> bool: + return slide.layout_group.startswith("template-v2") or slide.layout.startswith( + "template-v2" + ) + + +def _hydrate_template_v2_slide_ui( + slide: SlideModel, + layout_payload: Any = None, +) -> None: + if not _is_template_v2_slide(slide): + return + + ui = slide.ui + if not isinstance(ui, dict): + ui = _template_v2_slide_ui(layout_payload, slide.layout) + slide.ui = _apply_template_v2_content_to_ui(ui, slide.content) + + +def _canonical_template_v2_layout_payload(layout_payload: Any) -> Optional[str]: + if not _is_template_v2_layout_payload(layout_payload): + return None + + comparable_payload = copy.deepcopy(layout_payload) + if isinstance(comparable_payload, dict): + for metadata_key in ("name", "template_id", "template_v2_id"): + comparable_payload.pop(metadata_key, None) + + try: + return json.dumps( + comparable_payload, + sort_keys=True, + separators=(",", ":"), + ) + except (TypeError, ValueError): + return None + + +def _coerce_presentation_font_map(value: Any) -> Optional[dict[str, str]]: + if not isinstance(value, dict): + return None + + fonts = { + name.strip(): url.strip() + for name, url in value.items() + if isinstance(name, str) + and isinstance(url, str) + and name.strip() + and url.strip() + } + return fonts or None + + +def _extract_template_v2_fonts_from_assets(assets: Any) -> Optional[dict[str, str]]: + if not isinstance(assets, dict): + return None + return _coerce_presentation_font_map(assets.get("fonts")) + + +async def _resolve_presentation_template_v2_fonts( + presentation: PresentationModel, + slides: List[SlideModel], + sql_session: AsyncSession, +): + candidate_template_ids: List[str] = [] + seen: set[str] = set() + + if isinstance(presentation.layout, dict): + for key in ("name", "template_id", "template_v2_id"): + value = presentation.layout.get(key) + template_id = _extract_template_v2_metadata_id(key, value) + if template_id and template_id not in seen: + candidate_template_ids.append(template_id) + seen.add(template_id) + + for slide in slides: + for value in (slide.layout_group, slide.layout): + template_id = _extract_template_v2_id(value) + if template_id and template_id not in seen: + candidate_template_ids.append(template_id) + seen.add(template_id) + + for template_id in candidate_template_ids: + template = await sql_session.get(TemplateV2, template_id) + if template: + fonts = _extract_template_v2_fonts_from_assets(template.assets) + if fonts is not None: + return fonts + + target_layout_payload = _canonical_template_v2_layout_payload(presentation.layout) + if not target_layout_payload: + return None + + try: + result = await sql_session.execute( + select(TemplateV2.id, TemplateV2.layouts, TemplateV2.assets) + ) + for _template_id, layouts, assets in result.all(): + if _canonical_template_v2_layout_payload(layouts) != target_layout_payload: + continue + fonts = _extract_template_v2_fonts_from_assets(assets) + if fonts is not None: + return fonts + except Exception: + logger.exception("[presentation.detail] failed to resolve template v2 fonts") + + return None + + +async def _resolve_presentation_fonts( + presentation: PresentationModel, + slides: List[SlideModel], + sql_session: AsyncSession, +): + stored_fonts = _coerce_presentation_font_map(getattr(presentation, "fonts", None)) + if stored_fonts is not None: + return stored_fonts + + candidate_template_ids: List[uuid.UUID] = [] + seen: set[uuid.UUID] = set() + + layout_name = None + if isinstance(presentation.layout, dict): + layout_name = presentation.layout.get("name") + layout_template_id = _extract_custom_template_id(layout_name) + if layout_template_id and layout_template_id not in seen: + candidate_template_ids.append(layout_template_id) + seen.add(layout_template_id) + + for slide in slides: + template_id = _extract_custom_template_id(slide.layout_group) + if template_id and template_id not in seen: + candidate_template_ids.append(template_id) + seen.add(template_id) + + for template_id in candidate_template_ids: + result = await sql_session.execute( + select(PresentationLayoutCodeModel.fonts).where( + PresentationLayoutCodeModel.presentation == template_id + ) + ) + fonts_list = result.scalars().all() + for fonts in fonts_list: + if fonts is not None: + return fonts + + return await _resolve_presentation_template_v2_fonts( + presentation, + slides, + sql_session, + ) + + +def _presentation_response_data(presentation: PresentationModel) -> dict: + return presentation.model_dump(exclude={"fonts"}) + + +async def _resolve_presentation_template_v2_payload( + presentation: PresentationModel, + slides: List[SlideModel], + sql_session: AsyncSession, + payload_field: Literal["components", "merged_components"], +): + candidate_template_ids: List[str] = [] + seen: set[str] = set() + + if isinstance(presentation.layout, dict): + for key in ("name", "template_id", "template_v2_id"): + value = presentation.layout.get(key) + template_id = _extract_template_v2_metadata_id(key, value) + if template_id and template_id not in seen: + candidate_template_ids.append(template_id) + seen.add(template_id) + + for slide in slides: + for value in (slide.layout_group, slide.layout): + template_id = _extract_template_v2_id(value) + if template_id and template_id not in seen: + candidate_template_ids.append(template_id) + seen.add(template_id) + + for template_id in candidate_template_ids: + template = await sql_session.get(TemplateV2, template_id) + if template: + payload = getattr(template, payload_field, None) + if payload is not None: + return payload + + target_layout_payload = _canonical_template_v2_layout_payload(presentation.layout) + if not target_layout_payload: + return None + + try: + payload_column = getattr(TemplateV2, payload_field) + result = await sql_session.execute( + select(TemplateV2.id, TemplateV2.layouts, payload_column) + ) + for _template_id, layouts, payload in result.all(): + if payload is None: + continue + if _canonical_template_v2_layout_payload(layouts) == target_layout_payload: + return payload + except Exception: + logger.exception( + "[presentation.detail] failed to resolve template v2 %s", + payload_field, + ) + + return None + + +async def _resolve_presentation_merged_components( + presentation: PresentationModel, + slides: List[SlideModel], + sql_session: AsyncSession, +): + return await _resolve_presentation_template_v2_payload( + presentation, + slides, + sql_session, + "merged_components", + ) + + +def _insert_toc_layouts( + structure: PresentationStructureModel, + n_toc_slides: int, + include_title_slide: bool, + toc_slide_layout_index: int, +): + if n_toc_slides <= 0 or toc_slide_layout_index == -1: + return + + insertion_index = 1 if include_title_slide else 0 + for i in range(n_toc_slides): + structure.slides.insert(insertion_index + i, toc_slide_layout_index) + + +def _layout_count(layout_payload: Any) -> int: + if isinstance(layout_payload, dict): + layouts = layout_payload.get("layouts", layout_payload.get("slides")) + return len(layouts) if isinstance(layouts, list) else 0 + if isinstance(layout_payload, list): + return len(layout_payload) + return 0 + + +def _build_template_v2_layout_model( + layout_payload: dict[str, Any], + *, + layout_name: str, +) -> PresentationLayoutModel: + try: + template_schema = get_template_schema(layout_payload) + except ValueError as exc: + raise HTTPException( + status_code=400, + detail=f"Invalid template v2 layout JSON: {exc}", + ) from exc + + source_layouts = layout_payload.get("layouts") + if not isinstance(source_layouts, list): + source_layouts = [] + + slides: list[SlideLayoutModel] = [] + for index, schema_layout in enumerate(template_schema["layouts"]): + if not isinstance(schema_layout, dict): + continue + + source_layout = ( + source_layouts[index] + if index < len(source_layouts) and isinstance(source_layouts[index], dict) + else {} + ) + layout_id = ( + schema_layout.get("layout_id") + or source_layout.get("id") + or f"layout_{index + 1}" + ) + layout_schema = schema_layout.get("schema") + if not isinstance(layout_schema, dict): + layout_schema = { + "title": str(layout_id), + "description": source_layout.get("description"), + } + + slides.append( + SlideLayoutModel( + id=str(layout_id), + name=source_layout.get("name") or layout_schema.get("title"), + description=source_layout.get("description") + or layout_schema.get("description"), + json_schema=layout_schema, + ) + ) + + if not slides: + raise HTTPException( + status_code=400, + detail="Template v2 layout JSON must contain at least one layout", + ) + + return PresentationLayoutModel( + name=layout_name, + ordered=False, + slides=slides, + ) + + +def _build_template_v2_structure_layout( + template: TemplateV2, + layout_payload: dict[str, Any], +) -> PresentationLayoutModel: + return _build_template_v2_layout_model( + layout_payload, + layout_name=f"template-v2-{template.id}", + ) + + +def _is_template_v2_layout_payload(layout_payload: Any) -> bool: + return ( + isinstance(layout_payload, dict) + and isinstance(layout_payload.get("layouts"), list) + ) + + +def _template_v2_slide_ui( + layout_payload: Any, + layout_id: str, +) -> Optional[dict[str, Any]]: + if not _is_template_v2_layout_payload(layout_payload): + return None + + for layout in layout_payload["layouts"]: + if isinstance(layout, dict) and str(layout.get("id")) == str(layout_id): + return copy.deepcopy(layout) + return None + + +GENERATED_VALUE_ELEMENT_TYPES = {"text", "image", "text-list", "table", "chart"} +GENERATED_TABLE_TEXT_FONT = { + "family": "Sniglet", + "size": 12, + "color": "#082314", +} +GENERATED_TABLE_HEADER_FONT = { + **GENERATED_TABLE_TEXT_FONT, + "bold": True, +} +GENERATED_TABLE_CELL_FILL = { + "color": "#F8F4E9", + "opacity": 1, +} +GENERATED_TABLE_CELL_STROKE = { + "color": "#D8D3C4", + "opacity": 1, + "width": 1, +} +TEMPLATE_V2_STRONG_MARKDOWN_DELIMITERS = ("**", "__") +TEMPLATE_V2_EMPHASIS_MARKDOWN_DELIMITERS = ("*", "_") +TEMPLATE_V2_MARKDOWN_DELIMITERS = ( + *TEMPLATE_V2_STRONG_MARKDOWN_DELIMITERS, + *TEMPLATE_V2_EMPHASIS_MARKDOWN_DELIMITERS, +) + + +def _template_v2_component_content_keys(components: list[Any]) -> list[str]: + ids: list[str] = [] + for index, component in enumerate(components): + component_id = ( + component.get("id") + if isinstance(component, dict) and isinstance(component.get("id"), str) + else None + ) + ids.append(component_id or f"component_{index}") + + counts: dict[str, int] = {} + for component_id in ids: + counts[component_id] = counts.get(component_id, 0) + 1 + + indexes: dict[str, int] = {} + used: set[str] = set() + keys: list[str] = [] + for component_id in ids: + occurrence_index = indexes.get(component_id, 0) + indexes[component_id] = occurrence_index + 1 + base = ( + f"{component_id}_{occurrence_index}" + if counts.get(component_id, 0) > 1 + else component_id + ) + + key = base + suffix = 1 + while key in used: + key = f"{base}_{suffix}" + suffix += 1 + used.add(key) + keys.append(key) + + return keys + + +def _apply_template_v2_content_to_ui( + ui: Optional[dict[str, Any]], + content: dict[str, Any], +) -> Optional[dict[str, Any]]: + if not isinstance(ui, dict): + return ui + + components = ui.get("components") + if not isinstance(components, list) or not components: + return ui + + component_keys = _template_v2_component_content_keys(components) + hydrated_ui = copy.deepcopy(ui) + hydrated_components = hydrated_ui.get("components") + if not isinstance(hydrated_components, list): + return hydrated_ui + + for index, component in enumerate(hydrated_components): + if not isinstance(component, dict): + continue + + component_id = component.get("id") + component_content = content.get(component_keys[index]) + if not isinstance(component_content, dict) and isinstance(component_id, str): + component_content = content.get(component_id) + if not isinstance(component_content, dict): + component_content = {} + + elements = component.get("elements") + if isinstance(elements, list): + component["elements"] = [ + _apply_template_v2_content_to_element(element, component_content) + for element in elements + ] + + return hydrated_ui + + +def _apply_template_v2_content_to_element( + element: Any, + content: Any, + *, + direct_value: bool = False, +) -> Any: + if not isinstance(element, dict): + return element + + content_values = content if isinstance(content, dict) else {} + element_type = element.get("type") + name = element.get("name") if isinstance(element.get("name"), str) else None + has_value = False + value = None + if name: + has_value, value = _template_v2_content_value(content_values, name) + + if ( + element.get("decorative") is False + and name + and has_value + and element_type in GENERATED_VALUE_ELEMENT_TYPES + ): + return _apply_template_v2_content_value(element, value) + + # Repeated flex/grid schemas omit the child-name wrapper when an item is a + # direct generated value. For example, three image children are emitted as + # [{"image_prompt": ..., "image_url": ...}, ...], not as + # [{"gallery_photo": {...}}, ...]. In that case the array item itself is + # the value for the child element. + if ( + direct_value + and not has_value + and element.get("decorative") is False + and element_type in GENERATED_VALUE_ELEMENT_TYPES + ): + return _apply_template_v2_content_value(element, content) + + nested_content = value if isinstance(value, dict) else content_values + nested_direct_value = direct_value and not has_value + + if element_type == "container": + updated = copy.deepcopy(element) + updated["child"] = _apply_template_v2_content_to_element( + element.get("child"), + nested_content, + direct_value=nested_direct_value, + ) + return updated + + if element_type in {"flex", "grid", "group"}: + updated = copy.deepcopy(element) + children = element.get("children") + if not isinstance(children, list): + children = [] + updated["children"] = _apply_template_v2_content_to_children( + children, + value, + nested_content, + direct_value=nested_direct_value, + ) + return updated + + return copy.deepcopy(element) + + +def _template_v2_content_value( + content: dict[str, Any], + name: str, +) -> tuple[bool, Any]: + for candidate in _template_v2_content_name_candidates(name): + if candidate in content: + return True, content[candidate] + return False, None + + +def _template_v2_content_name_candidates(name: str) -> list[str]: + without_numeric_token = re.sub(r"_\d+(?=_|$)", "", name) + without_prefix = ( + without_numeric_token.split("_", 1)[1] + if "_" in without_numeric_token + else without_numeric_token + ) + + candidates = [] + for candidate in (name, without_numeric_token, without_prefix): + if candidate and candidate not in candidates: + candidates.append(candidate) + return candidates + + +def _apply_template_v2_content_to_children( + children: list[Any], + value: Any, + content: Any, + *, + direct_value: bool = False, +) -> list[Any]: + if isinstance(value, list) and children: + return [ + _apply_template_v2_content_to_element( + children[min(index, len(children) - 1)], + item, + direct_value=True, + ) + for index, item in enumerate(value) + ] + + return [ + _apply_template_v2_content_to_element( + child, + content, + direct_value=direct_value, + ) + for child in children + ] + + +def _apply_template_v2_content_value(element: dict[str, Any], value: Any) -> dict[str, Any]: + element_type = element.get("type") + if element_type == "text": + return _apply_template_v2_text_content(element, value) + if element_type == "image": + return _apply_template_v2_image_content(element, value) + if element_type == "text-list": + return _apply_template_v2_text_list_content(element, value) + if element_type == "table": + return _apply_template_v2_table_content(element, value) + if element_type == "chart": + return _apply_template_v2_chart_content(element, value) + return copy.deepcopy(element) + + +def _read_template_v2_text(value: Any) -> Optional[str]: + if isinstance(value, str): + return value + if isinstance(value, (int, float)) and not isinstance(value, bool): + return str(value) + if isinstance(value, dict): + text = value.get("text") + if isinstance(text, str): + return text + if isinstance(text, (int, float)) and not isinstance(text, bool): + return str(text) + return None + + +def _apply_template_v2_text_content( + element: dict[str, Any], + value: Any, +) -> dict[str, Any]: + text = _read_template_v2_text(value) + if text is None or text == "": + return copy.deepcopy(element) + + updated = copy.deepcopy(element) + first_run = _first_template_v2_text_run(element.get("runs")) + updated["runs"] = _template_v2_text_runs_from_markdown( + text, + first_run, + fallback_font=element.get("font"), + ) + updated.pop("text", None) + return updated + + +def _apply_template_v2_image_content( + element: dict[str, Any], + value: Any, +) -> dict[str, Any]: + if not isinstance(value, dict): + return copy.deepcopy(element) + + url = None + for key in ("image_url", "icon_url", "__image_url__", "__icon_url__", "url"): + candidate = value.get(key) + if isinstance(candidate, str) and candidate: + url = candidate + break + + if not url: + return copy.deepcopy(element) + + updated = copy.deepcopy(element) + updated["data"] = url + prompt = _template_v2_asset_prompt(value, element.get("is_icon") is True) + if prompt: + updated["prompt"] = prompt + return updated + + +def _template_v2_asset_prompt(value: Any, is_icon: bool) -> Optional[str]: + if not isinstance(value, dict): + return None + + prompt_keys = ( + ("icon_query", "__icon_query__", "query", "prompt") + if is_icon + else ("image_prompt", "__image_prompt__", "prompt", "query") + ) + for key in prompt_keys: + prompt = value.get(key) + if isinstance(prompt, str) and prompt.strip(): + return prompt + return None + + +def _apply_template_v2_text_list_content( + element: dict[str, Any], + value: Any, +) -> dict[str, Any]: + if not isinstance(value, list): + return copy.deepcopy(element) + + existing_items = element.get("items") + if not isinstance(existing_items, list): + existing_items = [] + + items = [] + for index, item in enumerate(value): + text = _read_template_v2_text(item) + if text is not None and text != "": + existing_runs = ( + existing_items[index] + if index < len(existing_items) and isinstance(existing_items[index], list) + else None + ) + first_run = ( + existing_runs[0] + if isinstance(existing_runs, list) + and existing_runs + and isinstance(existing_runs[0], dict) + else {} + ) + items.append( + _template_v2_text_runs_from_markdown( + text, + first_run, + fallback_font=element.get("font"), + ) + ) + + updated = copy.deepcopy(element) + updated["items"] = items + return updated + + +def _apply_template_v2_table_content( + element: dict[str, Any], + value: Any, +) -> dict[str, Any]: + if not isinstance(value, dict): + return copy.deepcopy(element) + + template_columns = element.get("columns") + if not isinstance(template_columns, list): + template_columns = [] + template_rows = [ + row + for row in element.get("rows", []) + if isinstance(row, list) + ] + + generated_columns = [ + _read_template_v2_table_text(item) + for item in value.get("columns", []) + ] if isinstance(value.get("columns"), list) else [] + generated_rows = [ + [_read_template_v2_table_text(cell) for cell in row] + for row in value.get("rows", []) + if isinstance(row, list) + ] if isinstance(value.get("rows"), list) else [] + fallback_row = template_rows[-1] if template_rows else template_columns + + updated = copy.deepcopy(element) + updated["columns"] = ( + _merge_template_v2_table_row_to_length( + template_columns, + generated_columns, + is_header=True, + ) + if generated_columns + else copy.deepcopy(template_columns) + ) + updated["rows"] = ( + [ + _merge_template_v2_table_row_to_length( + template_rows[index] if index < len(template_rows) else fallback_row, + row, + is_header=False, + ) + for index, row in enumerate(generated_rows) + ] + if generated_rows + else copy.deepcopy(template_rows) + ) + return updated + + +def _merge_template_v2_table_row_to_length( + template_cells: list[Any], + generated_texts: list[Optional[str]], + *, + is_header: bool, +) -> list[Any]: + fallback_cell = template_cells[-1] if template_cells else None + return [ + _replace_template_v2_table_cell_text( + template_cells[index] if index < len(template_cells) else fallback_cell, + text or "", + is_header=is_header, + ) + for index, text in enumerate(generated_texts) + ] + + +def _replace_template_v2_table_cell_text( + cell: Any, + text: str, + *, + is_header: bool, +) -> dict[str, Any]: + font = GENERATED_TABLE_HEADER_FONT if is_header else GENERATED_TABLE_TEXT_FONT + if not isinstance(cell, dict): + return { + "color": GENERATED_TABLE_CELL_FILL, + "stroke": GENERATED_TABLE_CELL_STROKE, + "font": font, + "runs": _template_v2_text_runs_from_markdown( + text, + {"font": font}, + ), + } + + updated = copy.deepcopy(cell) + first_run = _first_template_v2_text_run(cell.get("runs")) + run_font = first_run.get("font") if isinstance(first_run.get("font"), dict) else None + next_font = run_font or cell.get("font") or font + updated["color"] = cell.get("color") or cell.get("fill") or GENERATED_TABLE_CELL_FILL + updated["stroke"] = cell.get("stroke") or GENERATED_TABLE_CELL_STROKE + updated["font"] = cell.get("font") or next_font + updated["runs"] = _template_v2_text_runs_from_markdown( + text, + first_run, + fallback_font=next_font, + ) + updated.pop("text", None) + updated.pop("fill", None) + return updated + + +def _first_template_v2_text_run(runs: Any) -> dict[str, Any]: + if isinstance(runs, list) and runs and isinstance(runs[0], dict): + return runs[0] + return {} + + +def _template_v2_text_runs_from_markdown( + text: str, + first_run: Any, + *, + fallback_font: Any = None, +) -> list[dict[str, Any]]: + base_run = copy.deepcopy(first_run) if isinstance(first_run, dict) else {} + parsed = _parse_template_v2_markdown_text(text) + has_markdown_style = any(style for _parsed_text, style in parsed) + base_run = _template_v2_base_run_for_markdown( + base_run, + fallback_font, + strip_inline_emphasis=has_markdown_style, + ) + + text_runs: list[dict[str, Any]] = [] + for parsed_text, style in parsed: + run = copy.deepcopy(base_run) + run["text"] = parsed_text + if style: + font = run.get("font") + run["font"] = { + **(copy.deepcopy(font) if isinstance(font, dict) else {}), + **style, + } + _append_template_v2_text_run(text_runs, run) + + if text_runs: + return text_runs + return [{**base_run, "text": " "}] + + +def _template_v2_base_run_for_markdown( + base_run: dict[str, Any], + fallback_font: Any, + *, + strip_inline_emphasis: bool, +) -> dict[str, Any]: + font = base_run.get("font") + if isinstance(fallback_font, dict): + merged_font = { + **copy.deepcopy(fallback_font), + **(copy.deepcopy(font) if isinstance(font, dict) else {}), + } + base_run["font"] = merged_font + elif isinstance(font, dict): + base_run["font"] = copy.deepcopy(font) + + if strip_inline_emphasis and isinstance(base_run.get("font"), dict): + base_run["font"].pop("bold", None) + base_run["font"].pop("italic", None) + + return base_run + + +def _parse_template_v2_markdown_text( + text: str, +) -> list[tuple[str, dict[str, bool]]]: + parsed: list[tuple[str, dict[str, bool]]] = [] + index = 0 + + while index < len(text): + strong_delimiter = _template_v2_read_markdown_delimiter( + text, + index, + TEMPLATE_V2_STRONG_MARKDOWN_DELIMITERS, + ) + if strong_delimiter: + close = text.find(strong_delimiter, index + len(strong_delimiter)) + if close > index + len(strong_delimiter): + parsed.append( + ( + text[index + len(strong_delimiter) : close], + {"bold": True}, + ) + ) + index = close + len(strong_delimiter) + continue + + emphasis_delimiter = _template_v2_read_markdown_delimiter( + text, + index, + TEMPLATE_V2_EMPHASIS_MARKDOWN_DELIMITERS, + ) + if emphasis_delimiter: + close = text.find(emphasis_delimiter, index + len(emphasis_delimiter)) + if close > index + len(emphasis_delimiter): + parsed.append( + ( + text[index + len(emphasis_delimiter) : close], + {"italic": True}, + ) + ) + index = close + len(emphasis_delimiter) + continue + + next_index = _template_v2_next_markdown_delimiter_index(text, index + 1) + parsed.append( + ( + text[index : len(text) if next_index == -1 else next_index], + {}, + ) + ) + index = len(text) if next_index == -1 else next_index + + return parsed + + +def _template_v2_read_markdown_delimiter( + text: str, + index: int, + delimiters: tuple[str, ...], +) -> Optional[str]: + for delimiter in delimiters: + if text.startswith(delimiter, index): + return delimiter + return None + + +def _template_v2_next_markdown_delimiter_index(text: str, start: int) -> int: + indexes = [ + index + for index in ( + text.find(delimiter, start) + for delimiter in TEMPLATE_V2_MARKDOWN_DELIMITERS + ) + if index != -1 + ] + return min(indexes) if indexes else -1 + + +def _append_template_v2_text_run( + text_runs: list[dict[str, Any]], + run: dict[str, Any], +) -> None: + text = run.get("text") + if not isinstance(text, str) or text == "": + return + + previous = text_runs[-1] if text_runs else None + if isinstance(previous, dict): + previous_style = {key: value for key, value in previous.items() if key != "text"} + next_style = {key: value for key, value in run.items() if key != "text"} + if previous_style == next_style and isinstance(previous.get("text"), str): + previous["text"] += text + return + + text_runs.append(run) + + +def _read_template_v2_table_text(value: Any) -> Optional[str]: + primitive_text = _read_template_v2_primitive_table_text(value) + if primitive_text is not None: + return primitive_text[:80] + + if not isinstance(value, dict): + return None + + runs = value.get("runs") + if isinstance(runs, list): + run_text = "".join( + run.get("text", "") + for run in runs + if isinstance(run, dict) and isinstance(run.get("text"), str) + ) + if run_text: + return run_text[:80] + + for key in ("text", "value"): + text = _read_template_v2_primitive_table_text(value.get(key)) + if text is not None: + return text[:80] + + return None + + +def _read_template_v2_primitive_table_text(value: Any) -> Optional[str]: + if isinstance(value, str): + return value + if isinstance(value, bool): + return str(value).lower() + if isinstance(value, (int, float)): + return str(value) + return None + + +def _read_template_v2_data_labels(value: Any) -> Optional[str]: + if value is True: + return "top" + if value is False or value is None: + return None + if isinstance(value, str): + normalized = value.strip().lower() + if normalized in {"base", "mid", "top", "outside"}: + return normalized + return None + + +def _apply_template_v2_chart_content( + element: dict[str, Any], + value: Any, +) -> dict[str, Any]: + updated = copy.deepcopy(element) + updated.pop("data_labels_color", None) + updated.pop("grid", None) + if not isinstance(value, dict): + return updated + + chart_type = value.get("chartType", value.get("chart_type")) + if chart_type in { + "area", + "bar", + "bubble", + "donut", + "horizontal_bar", + "horizontal_stacked_bar", + "line", + "pie", + "polar_area", + "radar", + "scatter", + "stacked_bar", + }: + updated["chart_type"] = chart_type + if isinstance(value.get("title"), str): + updated["title"] = value["title"] + if isinstance(value.get("categories"), list) and value["categories"]: + updated["categories"] = value["categories"] + if isinstance(value.get("series"), list) and value["series"]: + updated["series"] = value["series"] + colors = value.get("colors") + if isinstance(colors, list) and colors: + updated["colors"] = colors + for source_key, target_key in ( + ("axisColor", "axis_color"), + ("axis_color", "axis_color"), + ("gridColor", "grid_color"), + ("grid_color", "grid_color"), + ("xAxisTitle", "x_axis_title"), + ("x_axis_title", "x_axis_title"), + ("yAxisTitle", "y_axis_title"), + ("y_axis_title", "y_axis_title"), + ("source", "source"), + ): + if isinstance(value.get(source_key), str): + updated[target_key] = value[source_key] + for source_key, target_key in ( + ("xAxis", "x_axis"), + ("x_axis", "x_axis"), + ("yAxis", "y_axis"), + ("y_axis", "y_axis"), + ("xAxisGrid", "x_axis_grid"), + ("x_axis_grid", "x_axis_grid"), + ("yAxisGrid", "y_axis_grid"), + ("y_axis_grid", "y_axis_grid"), + ): + if isinstance(value.get(source_key), bool): + updated[target_key] = value[source_key] + for source_key in ("dataLabels", "data_labels"): + if source_key in value: + updated["data_labels"] = _read_template_v2_data_labels(value.get(source_key)) + return updated + + +def _get_presentation_stream_layout( + presentation: PresentationModel, +) -> PresentationLayoutModel: + if _is_template_v2_layout_payload(presentation.layout): + layout_name = str(presentation.layout.get("name") or "template-v2") + return _build_template_v2_layout_model( + presentation.layout, + layout_name=layout_name, + ) + + return presentation.get_layout() + + +async def _resolve_prepare_layout( + layout: PresentationLayoutModel | str, + sql_session: AsyncSession, +) -> tuple[dict[str, Any], PresentationLayoutModel, Optional[dict[str, str]]]: + if isinstance(layout, PresentationLayoutModel): + return layout.model_dump(mode="json"), layout, None + + template_id = layout.strip() + if not template_id: + raise HTTPException( + status_code=400, + detail="Template v2 layout id is required", + ) + + template = await sql_session.get(TemplateV2, template_id) + if not template: + raise HTTPException(status_code=404, detail="Template v2 layout not found") + + layout_payload = copy.deepcopy(template.layouts) + if not isinstance(layout_payload, dict): + raise HTTPException( + status_code=400, + detail="Template v2 layout JSON must be an object", + ) + + structure_layout = _build_template_v2_structure_layout(template, layout_payload) + return ( + layout_payload, + structure_layout, + _extract_template_v2_fonts_from_assets(template.assets), + ) + + +def _build_export_cookie_header(request: Request) -> Optional[str]: + cookie_header = (request.headers.get("cookie") or "").strip() + if cookie_header: + return cookie_header + + session_token = get_session_token_from_request(request) + if session_token: + return f"{SESSION_COOKIE_NAME}={session_token}" + + username = getattr(request.state, "auth_username", None) + if isinstance(username, str) and username.strip(): + try: + session_token = create_session_token(username.strip()) + return f"{SESSION_COOKIE_NAME}={session_token}" + except Exception: + logger.exception( + "[presentation.generate] failed to create export session token" + ) + + return None + + +@PRESENTATION_ROUTER.get("/all", response_model=List[PresentationWithSlides]) +async def get_all_presentations( + version: Annotated[ + Optional[PresentationVersion], + Query(description="Only include presentations matching this version."), + ] = None, + sql_session: AsyncSession = Depends(get_async_session), +): + query = ( + select(PresentationModel, SlideModel) + .join( + SlideModel, + (SlideModel.presentation == PresentationModel.id) & (SlideModel.index == 0), + ) + ) + if version is not None: + query = query.where(PresentationModel.version == version) + query = query.order_by(PresentationModel.created_at.desc()) + + results = await sql_session.execute(query) + rows = results.all() + presentations_with_slides = [] + for presentation, first_slide in rows: + slides = [first_slide] + fonts = await _resolve_presentation_fonts(presentation, slides, sql_session) + presentations_with_slides.append( + PresentationWithSlides( + **_presentation_response_data(presentation), + slides=slides, + fonts=fonts, + ) + ) + return presentations_with_slides + + +@PRESENTATION_ROUTER.get("/{id}", response_model=PresentationDetailWithSlides) +async def get_presentation( + id: uuid.UUID, + request: Request, + sql_session: AsyncSession = Depends(get_async_session), +): + presentation = await sql_session.get(PresentationModel, id) + if not presentation: + raise HTTPException(404, "Presentation not found") + slides_result = await sql_session.scalars( + select(SlideModel) + .where(SlideModel.presentation == id) + .order_by(SlideModel.index) + ) + slides = list(slides_result) + fonts = await _resolve_presentation_fonts(presentation, slides, sql_session) + merged_components = await _resolve_presentation_merged_components( + presentation, + slides, + sql_session, + ) + return PresentationDetailWithSlides( + **_presentation_response_data(presentation), + slides=slides, + fonts=fonts, + merged_components=merged_components, + ) + + +@PRESENTATION_ROUTER.delete("/{id}", status_code=204) +async def delete_presentation( + id: uuid.UUID, sql_session: AsyncSession = Depends(get_async_session) +): + presentation = await sql_session.get(PresentationModel, id) + if not presentation: + raise HTTPException(404, "Presentation not found") + + await sql_session.delete(presentation) + await sql_session.commit() + + +@PRESENTATION_ROUTER.post("/{id}/duplicate", response_model=PresentationWithSlides) +async def duplicate_presentation( + id: uuid.UUID, sql_session: AsyncSession = Depends(get_async_session) +): + presentation = await sql_session.get(PresentationModel, id) + if not presentation: + raise HTTPException(404, "Presentation not found") + + slides = list( + await sql_session.scalars( + select(SlideModel) + .where(SlideModel.presentation == id) + .order_by(SlideModel.index) + ) + ) + new_presentation = presentation.get_new_presentation() + if new_presentation.title: + new_presentation.title = f"{new_presentation.title} (Copy)" + new_slides = [slide.get_new_slide(new_presentation.id) for slide in slides] + + sql_session.add(new_presentation) + sql_session.add_all(new_slides) + await sql_session.commit() + await sql_session.refresh(new_presentation) + + return PresentationWithSlides( + **_presentation_response_data(new_presentation), + slides=new_slides, + fonts=await _resolve_presentation_fonts( + new_presentation, + new_slides, + sql_session, + ), + ) + + +@PRESENTATION_ROUTER.post("/create", response_model=PresentationModel) +async def create_presentation( + content: Annotated[str, Body()], + n_slides: Annotated[Optional[int], Body()] = None, + language: Annotated[Optional[str], Body()] = None, + file_paths: Annotated[Optional[List[str]], Body()] = None, + tone: Annotated[Tone, Body()] = Tone.DEFAULT, + verbosity: Annotated[Verbosity, Body()] = Verbosity.STANDARD, + instructions: Annotated[Optional[str], Body()] = None, + include_table_of_contents: Annotated[bool, Body()] = False, + include_title_slide: Annotated[bool, Body()] = True, + web_search: Annotated[bool, Body()] = False, + sql_session: AsyncSession = Depends(get_async_session), +): + + if n_slides is not None and n_slides < 1: + raise HTTPException( + status_code=400, + detail="Number of slides must be greater than 0", + ) + + if n_slides is not None and n_slides > MAX_NUMBER_OF_SLIDES: + raise HTTPException( + status_code=400, + detail=f"Number of slides cannot be greater than {MAX_NUMBER_OF_SLIDES}", + ) + + if include_table_of_contents and n_slides is not None and n_slides < 3: + raise HTTPException( + status_code=400, + detail="Number of slides cannot be less than 3 if table of contents is included", + ) + + presentation_id = uuid.uuid4() + language_to_store = (language or "").strip() + validated_file_paths = ( + TEMP_FILE_SERVICE.resolve_existing_temp_paths(file_paths) + if file_paths + else None + ) + # DB schema stores an int; 0 is used as internal marker for auto slide count. + n_slides_to_store = n_slides if n_slides is not None else 0 + + presentation = PresentationModel( + id=presentation_id, + version=PresentationVersion.V2_STANDARD, + content=content, + n_slides=n_slides_to_store, + language=language_to_store, + file_paths=validated_file_paths, + tone=tone.value, + verbosity=verbosity.value, + instructions=instructions, + include_table_of_contents=include_table_of_contents, + include_title_slide=include_title_slide, + web_search=web_search, + ) + + sql_session.add(presentation) + await sql_session.commit() + + search_route, actual_search_provider = get_web_search_route() + logger.info( + "Created presentation: id=%s web_search_enabled=%s selected_web_search_provider=%s " + "web_search_route=%s actual_web_search_provider=%s", + presentation_id, + web_search, + get_selected_web_search_provider().value, + search_route, + ( + actual_search_provider.value + if actual_search_provider + else ("model-native" if search_route == "native" else "none") + ), + ) + + return presentation + + +@PRESENTATION_ROUTER.post("/prepare", response_model=PresentationModel) +async def prepare_presentation( + presentation_id: Annotated[uuid.UUID, Body()], + outlines: Annotated[List[SlideOutlineModel], Body()], + layout: Annotated[PresentationLayoutModel | str, Body()], + title: Annotated[Optional[str], Body()] = None, + sql_session: AsyncSession = Depends(get_async_session), +): + if not outlines: + raise HTTPException(status_code=400, detail="Outlines are required") + if len(outlines) > MAX_NUMBER_OF_SLIDES: + raise HTTPException( + status_code=400, + detail=f"Number of outlines cannot be greater than {MAX_NUMBER_OF_SLIDES}", + ) + + presentation = await sql_session.get(PresentationModel, presentation_id) + if not presentation: + raise HTTPException(status_code=404, detail="Presentation not found") + + presentation_outline_model = PresentationOutlineModel(slides=outlines) + + layout_payload, structure_layout, template_fonts = await _resolve_prepare_layout( + layout, sql_session + ) + total_slide_layouts = _layout_count(layout_payload) + if total_slide_layouts < 1: + raise HTTPException( + status_code=400, + detail="Layout must contain at least one slide layout", + ) + total_outlines = len(outlines) + + if structure_layout.ordered: + presentation_structure = structure_layout.to_presentation_structure() + else: + presentation_structure: PresentationStructureModel = ( + await generate_presentation_structure( + presentation_outline=presentation_outline_model, + presentation_layout=structure_layout, + instructions=presentation.instructions, + ) + ) + + presentation_structure.slides = presentation_structure.slides[: len(outlines)] + for index in range(total_outlines): + random_slide_index = random.randint(0, total_slide_layouts - 1) + if index >= total_outlines: + presentation_structure.slides.append(random_slide_index) + continue + if presentation_structure.slides[index] >= total_slide_layouts: + presentation_structure.slides[index] = random_slide_index + + if presentation.include_table_of_contents: + n_toc_slides = get_no_of_toc_required_for_n_outlines( + n_outlines=total_outlines, + title_slide=presentation.include_title_slide, + target_total_slides=(presentation.n_slides if presentation.n_slides > 0 else None), + ) + toc_slide_layout_index = select_toc_or_list_slide_layout_index(structure_layout) + _insert_toc_layouts( + presentation_structure, + n_toc_slides, + presentation.include_title_slide, + toc_slide_layout_index, + ) + if toc_slide_layout_index != -1 and n_toc_slides > 0: + presentation_outline_model = get_presentation_outline_model_with_toc( + outline=presentation_outline_model, + n_toc_slides=n_toc_slides, + title_slide=presentation.include_title_slide, + ) + + sql_session.add(presentation) + presentation.outlines = presentation_outline_model.model_dump(mode="json") + presentation.title = title or presentation.title + # Final slide generation should follow the reviewed outline text. The + # original upload language can be stale after outline-page chat edits such + # as "convert these to Chinese". + presentation.language = "" + presentation.layout = layout_payload + presentation.fonts = template_fonts + presentation.set_structure(presentation_structure) + await sql_session.commit() + + await MEM0_PRESENTATION_MEMORY_SERVICE.store_generated_outlines( + presentation.id, + presentation.outlines, + ) + + return presentation + + +@PRESENTATION_ROUTER.get("/stream/{id}", response_model=PresentationDetailWithSlides) +async def stream_presentation( + id: uuid.UUID, sql_session: AsyncSession = Depends(get_async_session) +): + presentation = await sql_session.get(PresentationModel, id) + if not presentation: + raise HTTPException(status_code=404, detail="Presentation not found") + if not presentation.structure: + raise HTTPException( + status_code=400, + detail="Presentation not prepared for stream", + ) + if not presentation.outlines: + raise HTTPException( + status_code=400, + detail="Outlines can not be empty", + ) + + try: + structure = presentation.get_structure() + layout = _get_presentation_stream_layout(presentation) + outline = presentation.get_presentation_outline() + except Exception as exc: + raise HTTPException( + status_code=400, + detail="Presentation has invalid generated data", + ) from exc + + if not layout.slides: + raise HTTPException(status_code=400, detail="Presentation layout has no slides") + if len(structure.slides) > len(outline.slides): + raise HTTPException( + status_code=400, + detail="Presentation structure has more slides than outlines", + ) + invalid_layout_index = next( + ( + slide_layout_index + for slide_layout_index in structure.slides + if slide_layout_index < 0 or slide_layout_index >= len(layout.slides) + ), + None, + ) + if invalid_layout_index is not None: + raise HTTPException( + status_code=400, + detail="Presentation structure contains an invalid slide layout", + ) + + image_generation_service = ImageGenerationService(get_images_directory()) + + async def inner(): + icon_weight = layout.icon_weight + image_urls_for_slides = get_images_for_slides_from_outline(outline.slides) + + async_assets_generation_tasks: List[asyncio.Task] = [] + asset_events: asyncio.Queue = asyncio.Queue() + asset_warnings_by_slide: dict[int, list[dict]] = {} + + async def notify_slide_assets_ready(slide_index: int, asset_task: asyncio.Task): + try: + await asset_task + except Exception: + logger.exception( + "Slide asset generation failed: presentation_id=%s slide_index=%s", + id, + slide_index, + ) + asset_warnings_by_slide.setdefault(slide_index, []).append( + { + "type": "asset_generation_failed", + "message": "Some slide assets could not be generated.", + } + ) + finally: + await asset_events.put(slide_index) + + slides: List[SlideModel] = [] + yield SSEResponse( + event="response", + data=json.dumps({"type": "chunk", "chunk": '{ "slides": [ '}), + ).to_string() + yielded_slide_asset_sse_count = 0 + + for i, slide_layout_index in enumerate(structure.slides): + slide_layout = layout.slides[slide_layout_index] + + try: + slide_content = await get_slide_content_from_type_and_outline( + slide_layout, + outline.slides[i], + presentation.language, + presentation.tone, + presentation.verbosity, + presentation.instructions, + ) + except HTTPException as e: + yield SSEErrorResponse(detail=e.detail).to_string() + return + + slide = SlideModel( + presentation=id, + layout_group=layout.name, + layout=slide_layout.id, + index=i, + speaker_note=slide_content.get("__speaker_note__", ""), + content=slide_content, + ui=_template_v2_slide_ui(presentation.layout, slide_layout.id), + ) + slides.append(slide) + + # This will mutate slide and add placeholder assets + process_slide_add_placeholder_assets(slide) + slide.ui = _apply_template_v2_content_to_ui(slide.ui, slide.content) + + # This will mutate slide - start task immediately so it runs in parallel with next slide LLM generation + asset_warnings_by_slide[i] = [] + asset_task = asyncio.create_task( + process_slide_and_fetch_assets( + image_generation_service, + slide, + outline_image_urls=( + image_urls_for_slides[i] + if i < len(image_urls_for_slides) + else None + ), + icon_weight=icon_weight, + allow_image_fallback=True, + image_warnings=asset_warnings_by_slide[i], + ) + ) + async_assets_generation_tasks.append(asset_task) + asyncio.create_task(notify_slide_assets_ready(i, asset_task)) + + yield SSEResponse( + event="response", + data=json.dumps({"type": "chunk", "chunk": slide.model_dump_json()}), + ).to_string() + + while True: + try: + done_idx = asset_events.get_nowait() + except asyncio.QueueEmpty: + break + slides[done_idx].ui = _apply_template_v2_content_to_ui( + slides[done_idx].ui, + slides[done_idx].content, + ) + yielded_slide_asset_sse_count += 1 + yield SSEResponse( + event="response", + data=json.dumps( + { + "type": "slide_assets", + "slide_index": done_idx, + "slide": slides[done_idx].model_dump(mode="json"), + "warnings": asset_warnings_by_slide.get(done_idx, []), + } + ), + ).to_string() + + yield SSEResponse( + event="response", + data=json.dumps({"type": "chunk", "chunk": " ] }"}), + ).to_string() + + while yielded_slide_asset_sse_count < len(slides): + done_idx = await asset_events.get() + slides[done_idx].ui = _apply_template_v2_content_to_ui( + slides[done_idx].ui, + slides[done_idx].content, + ) + yielded_slide_asset_sse_count += 1 + yield SSEResponse( + event="response", + data=json.dumps( + { + "type": "slide_assets", + "slide_index": done_idx, + "slide": slides[done_idx].model_dump(mode="json"), + "warnings": asset_warnings_by_slide.get(done_idx, []), + } + ), + ).to_string() + + generated_assets_lists = await asyncio.gather( + *async_assets_generation_tasks, + return_exceptions=True, + ) + generated_assets = [] + for assets_list in generated_assets_lists: + if isinstance(assets_list, Exception): + logger.error( + "Slide asset generation failed during final collection: %s", + assets_list, + ) + continue + generated_assets.extend(assets_list) + + for slide in slides: + slide.ui = _apply_template_v2_content_to_ui(slide.ui, slide.content) + + # Moved this here to make sure new slides are generated before deleting the old ones + await sql_session.execute( + delete(SlideModel).where(SlideModel.presentation == id) + ) + await sql_session.commit() + + sql_session.add(presentation) + sql_session.add_all(slides) + sql_session.add_all(generated_assets) + await sql_session.commit() + + response = PresentationDetailWithSlides( + **_presentation_response_data(presentation), + slides=slides, + fonts=await _resolve_presentation_fonts(presentation, slides, sql_session), + merged_components=await _resolve_presentation_merged_components( + presentation, + slides, + sql_session, + ), + ) + + yield SSECompleteResponse( + key="presentation", + value=response.model_dump(mode="json"), + ).to_string() + + async def rollback_stream_session(): + await sql_session.rollback() + + return StreamingResponse( + safe_sse_stream( + inner(), + logger=logger, + error_detail="Failed to generate presentation slides. Please try again.", + on_error=rollback_stream_session, + ), + media_type="text/event-stream", + ) + + +@PRESENTATION_ROUTER.patch("/update", response_model=PresentationDetailWithSlides) +async def update_presentation( + id: Annotated[uuid.UUID, Body()], + n_slides: Annotated[Optional[int], Body()] = None, + title: Annotated[Optional[str], Body()] = None, + theme: Annotated[Optional[dict], Body()] = None, + slides: Annotated[Optional[List[SlideModel]], Body()] = None, + sql_session: AsyncSession = Depends(get_async_session), +): + presentation = await sql_session.get(PresentationModel, id) + if not presentation: + raise HTTPException(status_code=404, detail="Presentation not found") + + presentation_update_dict = {} + if n_slides is not None: + if n_slides < 1: + raise HTTPException( + status_code=400, + detail="Number of slides must be greater than 0", + ) + if n_slides > MAX_NUMBER_OF_SLIDES: + raise HTTPException( + status_code=400, + detail=f"Number of slides cannot be greater than {MAX_NUMBER_OF_SLIDES}", + ) + presentation_update_dict["n_slides"] = n_slides + if title: + presentation_update_dict["title"] = title + if theme or theme is None: + presentation_update_dict["theme"] = theme + + if presentation_update_dict: + presentation.sqlmodel_update(presentation_update_dict) + if slides: + if len(slides) > MAX_NUMBER_OF_SLIDES: + raise HTTPException( + status_code=400, + detail=f"Number of slides cannot be greater than {MAX_NUMBER_OF_SLIDES}", + ) + # Just to make sure id is UUID + for slide in slides: + slide.presentation = uuid.UUID(slide.presentation) + slide.id = uuid.UUID(slide.id) + + await sql_session.execute( + delete(SlideModel).where(SlideModel.presentation == presentation.id) + ) + sql_session.add_all(slides) + + await sql_session.commit() + + response_slides = slides or [] + fonts = await _resolve_presentation_fonts( + presentation, + response_slides, + sql_session, + ) + merged_components = await _resolve_presentation_merged_components( + presentation, + response_slides, + sql_session, + ) + + return PresentationDetailWithSlides( + **_presentation_response_data(presentation), + slides=response_slides, + fonts=fonts, + merged_components=merged_components, + ) + + +async def check_if_api_request_is_valid( + request: GeneratePresentationRequest, + sql_session: AsyncSession = Depends(get_async_session), +) -> Tuple[uuid.UUID,]: + presentation_id = uuid.uuid4() + print(f"Presentation ID: {presentation_id}") + + # Making sure either content, slides markdown or files is provided + if not (request.content or request.slides_markdown or request.files): + raise HTTPException( + status_code=400, + detail="Either content or slides markdown or files is required to generate presentation", + ) + + if request.n_slides is not None and request.n_slides <= 0: + raise HTTPException( + status_code=400, + detail="Number of slides must be greater than 0", + ) + + if request.n_slides is not None and request.n_slides > MAX_NUMBER_OF_SLIDES: + raise HTTPException( + status_code=400, + detail=f"Number of slides cannot be greater than {MAX_NUMBER_OF_SLIDES}", + ) + + if ( + request.slides_markdown is not None + and len(request.slides_markdown) > MAX_NUMBER_OF_SLIDES + ): + raise HTTPException( + status_code=400, + detail=f"Number of slides cannot be greater than {MAX_NUMBER_OF_SLIDES}", + ) + + if ( + request.include_table_of_contents + and request.n_slides is not None + and request.n_slides < 3 + ): + raise HTTPException( + status_code=400, + detail="Number of slides cannot be less than 3 if table of contents is included", + ) + + # Checking if template is valid + if request.template not in DEFAULT_TEMPLATES: + template_v2 = await _resolve_requested_template_v2( + request.template, + sql_session, + ) + if not template_v2: + raise HTTPException( + status_code=400, + detail="Template not found. Please use a valid template.", + ) + request.template = f"template-v2-{template_v2.id}" + return (presentation_id,) + + return (presentation_id,) + + +async def generate_presentation_handler( + request: GeneratePresentationRequest, + presentation_id: uuid.UUID, + async_status: Optional[AsyncTaskModel], + export_cookie_header: Optional[str] = None, + sql_session: AsyncSession = Depends(get_async_session), +): + try: + using_slides_markdown = False + language_to_use = (request.language or "").strip() or None + additional_context = "" + + if request.slides_markdown: + using_slides_markdown = True + if len(request.slides_markdown) > MAX_NUMBER_OF_SLIDES: + raise HTTPException( + status_code=400, + detail=f"Number of slides cannot be greater than {MAX_NUMBER_OF_SLIDES}", + ) + request.n_slides = len(request.slides_markdown) + + if not using_slides_markdown: + # Updating async status + if async_status: + async_status.message = "Generating presentation outlines" + async_status.data = _presentation_task_progress_data( + created_slides=0, + remaining_slides=_requested_slide_count(request), + ) + async_status.updated_at = datetime.now() + sql_session.add(async_status) + await sql_session.commit() + + if request.files: + documents_loader = DocumentsLoader( + file_paths=request.files, + presentation_language=request.language, + ) + await documents_loader.load_documents() + documents = documents_loader.documents + if documents: + additional_context = "\n\n".join(documents) + + # Finding number of slides to generate by considering table of contents + n_slides_to_generate = request.n_slides + if request.include_table_of_contents and request.n_slides is not None: + n_slides_to_generate = ( + get_no_of_outlines_to_generate_for_n_slides( + n_slides=request.n_slides, + toc=True, + title_slide=request.include_title_slide, + ) + ) + + outline_messages = get_outline_messages( + request.content, + n_slides_to_generate, + language_to_use, + additional_context, + request.tone.value, + request.verbosity.value, + request.instructions, + request.include_title_slide, + request.include_table_of_contents, + ) + await MEM0_PRESENTATION_MEMORY_SERVICE.store_generation_context( + presentation_id=presentation_id, + system_prompt=( + message_content_to_text(outline_messages[0].content) + if len(outline_messages) > 0 + else None + ), + user_prompt=( + message_content_to_text(outline_messages[1].content) + if len(outline_messages) > 1 + else None + ), + extracted_document_text=additional_context, + source_content=request.content, + instructions=request.instructions, + ) + + presentation_outlines_text = "" + async for chunk in generate_ppt_outline( + request.content, + n_slides_to_generate, + language_to_use, + additional_context, + request.tone.value, + request.verbosity.value, + request.instructions, + request.include_title_slide, + request.web_search, + request.include_table_of_contents, + ): + + if isinstance(chunk, HTTPException): + raise chunk + + presentation_outlines_text += chunk + + try: + presentation_outlines_json = dict( + dirtyjson.loads(presentation_outlines_text) + ) + except Exception: + traceback.print_exc() + raise HTTPException( + status_code=400, + detail="Failed to generate presentation outlines. Please try again.", + ) + presentation_outlines = PresentationOutlineModel( + **normalize_outline_payload( + presentation_outlines_json, + MAX_NUMBER_OF_SLIDES, + ) + ) + + if ( + n_slides_to_generate is not None + and len(presentation_outlines.slides) != n_slides_to_generate + ): + raise HTTPException( + status_code=400, + detail=( + "Failed to generate presentation outlines with requested " + "number of slides. Please try again." + ), + ) + + total_outlines = len(presentation_outlines.slides) + + else: + # Setting outlines to slides markdown + presentation_outlines = PresentationOutlineModel( + slides=[ + SlideOutlineModel(content=slide) + for slide in request.slides_markdown + ] + ) + total_outlines = len(request.slides_markdown) + + await MEM0_PRESENTATION_MEMORY_SERVICE.store_generation_context( + presentation_id=presentation_id, + system_prompt=None, + user_prompt=None, + extracted_document_text=None, + source_content=request.content, + instructions=request.instructions, + ) + + await MEM0_PRESENTATION_MEMORY_SERVICE.store_generated_outlines( + presentation_id, + presentation_outlines.model_dump(mode="json"), + ) + + # Updating async status + if async_status: + async_status.message = "Selecting layout for each slide" + async_status.updated_at = datetime.now() + sql_session.add(async_status) + await sql_session.commit() + + print("-" * 40) + print(f"Generated {total_outlines} outlines for the presentation") + + logger.info( + "[presentation.generate] loading layout template=%r presentation_id=%s", + request.template, + presentation_id, + ) + ( + layout_payload, + layout_model, + template_fonts, + is_template_v2, + ) = await _resolve_generation_layout(request.template, sql_session) + logger.info( + "[presentation.generate] layout ready template=%r slides=%d ordered=%s icon_weight=%s", + request.template, + len(layout_model.slides), + layout_model.ordered, + layout_model.icon_weight, + ) + total_slide_layouts = len(layout_model.slides) + + # Generate Structure + if layout_model.ordered: + presentation_structure = layout_model.to_presentation_structure() + else: + presentation_structure: PresentationStructureModel = ( + await generate_presentation_structure( + presentation_outlines, + layout_model, + request.instructions, + using_slides_markdown, + ) + ) + + presentation_structure.slides = presentation_structure.slides[:total_outlines] + for index in range(total_outlines): + random_slide_index = random.randint(0, total_slide_layouts - 1) + if index >= total_outlines: + presentation_structure.slides.append(random_slide_index) + continue + if presentation_structure.slides[index] >= total_slide_layouts: + presentation_structure.slides[index] = random_slide_index + + should_include_toc = ( + request.include_table_of_contents and not using_slides_markdown + ) + if should_include_toc: + n_toc_slides = get_no_of_toc_required_for_n_outlines( + n_outlines=total_outlines, + title_slide=request.include_title_slide, + target_total_slides=request.n_slides, + ) + toc_slide_layout_index = select_toc_or_list_slide_layout_index(layout_model) + _insert_toc_layouts( + presentation_structure, + n_toc_slides, + request.include_title_slide, + toc_slide_layout_index, + ) + if toc_slide_layout_index != -1 and n_toc_slides > 0: + presentation_outlines = get_presentation_outline_model_with_toc( + outline=presentation_outlines, + n_toc_slides=n_toc_slides, + title_slide=request.include_title_slide, + ) + + final_n_slides = request.n_slides + if final_n_slides is None: + final_n_slides = len(presentation_outlines.slides) + + # Create PresentationModel + presentation = PresentationModel( + id=presentation_id, + version=( + PresentationVersion.V2_STANDARD + if is_template_v2 + else PresentationVersion.V1_STANDARD + ), + content=request.content, + n_slides=final_n_slides, + language=language_to_use or "", + title=get_presentation_title_from_presentation_outline( + presentation_outlines + ), + outlines=presentation_outlines.model_dump(), + layout=layout_payload, + structure=presentation_structure.model_dump(), + tone=request.tone.value, + verbosity=request.verbosity.value, + instructions=request.instructions, + fonts=template_fonts, + ) + + # Updating async status + if async_status: + async_status.message = "Generating slides" + async_status.data = _presentation_task_progress_data( + created_slides=0, + remaining_slides=final_n_slides or 0, + ) + async_status.updated_at = datetime.now() + sql_session.add(async_status) + await sql_session.commit() + + image_generation_service = ImageGenerationService(get_images_directory()) + async_assets_generation_tasks = [] + image_warnings: List[dict] = [] + + # 7. Generate slide content concurrently (batched), then build slides and fetch assets + slides: List[SlideModel] = [] + + slide_layout_indices = presentation_structure.slides + slide_layouts = [layout_model.slides[idx] for idx in slide_layout_indices] + total_slides_to_create = len(slide_layouts) + + # Schedule slide content generation and asset fetching in batches of 10 + batch_size = 10 + for start in range(0, len(slide_layouts), batch_size): + end = min(start + batch_size, len(slide_layouts)) + + print(f"Generating slides from {start} to {end}") + + # Generate contents for this batch concurrently + content_tasks = [ + get_slide_content_from_type_and_outline( + slide_layouts[i], + presentation_outlines.slides[i], + language_to_use, + request.tone.value, + request.verbosity.value, + request.instructions, + ) + for i in range(start, end) + ] + batch_contents: List[dict] = await asyncio.gather(*content_tasks) + + # Build slides for this batch + batch_slides: List[SlideModel] = [] + for offset, slide_content in enumerate(batch_contents): + i = start + offset + slide_layout = slide_layouts[i] + slide = SlideModel( + presentation=presentation_id, + layout_group=layout_model.name, + layout=slide_layout.id, + index=i, + speaker_note=slide_content.get("__speaker_note__"), + content=slide_content, + ui=( + _template_v2_slide_ui(layout_payload, slide_layout.id) + if is_template_v2 + else None + ), + ) + slides.append(slide) + batch_slides.append(slide) + + if async_status: + async_status.data = _presentation_task_progress_data( + created_slides=len(slides), + remaining_slides=total_slides_to_create - len(slides), + ) + async_status.updated_at = datetime.now() + sql_session.add(async_status) + await sql_session.commit() + + if using_slides_markdown: + image_urls_for_batch = get_images_for_slides_from_outline( + presentation_outlines.slides[start:end] + ) + else: + image_urls_for_batch = [[] for _ in batch_slides] + + # Start asset fetch tasks immediately so they run in parallel with next batch's LLM calls + asset_tasks = [ + asyncio.create_task( + process_slide_and_fetch_assets( + image_generation_service, + slide, + outline_image_urls=image_urls_for_batch[offset], + icon_weight=layout_model.icon_weight, + allow_image_fallback=True, + image_warnings=image_warnings, + ) + ) + for offset, slide in enumerate(batch_slides) + ] + async_assets_generation_tasks.extend(asset_tasks) + + if async_status: + async_status.message = "Fetching assets for slides" + async_status.data = _presentation_task_progress_data( + created_slides=len(slides), + remaining_slides=0, + ) + async_status.updated_at = datetime.now() + sql_session.add(async_status) + await sql_session.commit() + + # Run all asset tasks concurrently while batches may still be generating content + generated_assets_list = await asyncio.gather(*async_assets_generation_tasks) + generated_assets = [] + for assets_list in generated_assets_list: + generated_assets.extend(assets_list) + for warning in image_warnings: + logger.warning( + "Slide image generation warning: presentation_id=%s detail=%s", + presentation_id, + warning.get("detail"), + ) + + if is_template_v2: + for slide in slides: + _hydrate_template_v2_slide_ui(slide, layout_payload) + + # 8. Save PresentationModel and Slides + sql_session.add(presentation) + sql_session.add_all(slides) + sql_session.add_all(generated_assets) + await sql_session.commit() + + if async_status: + async_status.message = "Exporting presentation" + async_status.updated_at = datetime.now() + sql_session.add(async_status) + + # 9. Export + presentation_and_path = await export_presentation( + presentation_id, + presentation.title or str(uuid.uuid4()), + request.export_as, + cookie_header=export_cookie_header, + ) + + response = PresentationPathAndEditPath( + **presentation_and_path.model_dump(), + edit_path=f"/presentation?id={presentation_id}", + ) + + if async_status: + async_status.message = "Presentation generation completed" + async_status.status = "completed" + async_status.data = _presentation_task_progress_data( + created_slides=len(slides), + remaining_slides=0, + ) + async_status.updated_at = datetime.now() + sql_session.add(async_status) + await sql_session.commit() + + # Triggering webhook on success + CONCURRENT_SERVICE.run_task( + None, + WebhookService.send_webhook, + WebhookEvent.PRESENTATION_GENERATION_COMPLETED, + response.model_dump(mode="json"), + ) + + return response + + except Exception as e: + if not isinstance(e, HTTPException): + traceback.print_exc() + e = HTTPException(status_code=500, detail="Presentation generation failed") + + api_error_model = APIErrorModel.from_exception(e) + + # Triggering webhook on failure + CONCURRENT_SERVICE.run_task( + None, + WebhookService.send_webhook, + WebhookEvent.PRESENTATION_GENERATION_FAILED, + api_error_model.model_dump(mode="json"), + ) + + if async_status: + async_status.status = "error" + async_status.message = "Presentation generation failed" + async_status.updated_at = datetime.now() + async_status.error = api_error_model.model_dump(mode="json") + sql_session.add(async_status) + await sql_session.commit() + + else: + raise e + + +@PRESENTATION_ROUTER.post("/generate", response_model=PresentationPathAndEditPath) +async def generate_presentation_sync( + request_http: Request, + request: GeneratePresentationRequest, + sql_session: AsyncSession = Depends(get_async_session), +): + try: + (presentation_id,) = await check_if_api_request_is_valid(request, sql_session) + return await generate_presentation_handler( + request, + presentation_id, + None, + export_cookie_header=_build_export_cookie_header(request_http), + sql_session=sql_session, + ) + except HTTPException: + raise + except Exception: + traceback.print_exc() + raise HTTPException(status_code=500, detail="Presentation generation failed") + + +async def _run_generate_presentation_task( + request: GeneratePresentationRequest, + presentation_id: uuid.UUID, + task_id: str, + export_cookie_header: Optional[str], +) -> None: + async with async_session_maker() as sql_session: + async_status = await sql_session.get(AsyncTaskModel, task_id) + if not async_status: + logger.warning( + "[presentation.generate.async] task missing task_id=%s", + task_id, + ) + return + + async_status.status = "processing" + async_status.message = "Starting presentation generation" + async_status.data = _presentation_task_progress_data( + created_slides=0, + remaining_slides=_requested_slide_count(request), + ) + async_status.updated_at = datetime.now() + sql_session.add(async_status) + await sql_session.commit() + + await generate_presentation_handler( + request, + presentation_id, + async_status=async_status, + export_cookie_header=export_cookie_header, + sql_session=sql_session, + ) + + +@PRESENTATION_ROUTER.post("/generate/async", response_model=AsyncTaskModel) +async def generate_presentation_async( + request_http: Request, + request: GeneratePresentationRequest, + background_tasks: BackgroundTasks, + sql_session: AsyncSession = Depends(get_async_session), +): + try: + (presentation_id,) = await check_if_api_request_is_valid(request, sql_session) + + async_status = AsyncTaskModel( + type=ASYNC_TASK_TYPE_PRESENTATION_GENERATE, + status="pending", + message="Queued for generation", + data=_presentation_task_progress_data( + created_slides=0, + remaining_slides=_requested_slide_count(request), + ), + ) + sql_session.add(async_status) + await sql_session.commit() + await sql_session.refresh(async_status) + + background_tasks.add_task( + _run_generate_presentation_task, + request, + presentation_id, + async_status.id, + _build_export_cookie_header(request_http), + ) + return async_status + + except Exception as e: + if not isinstance(e, HTTPException): + print(e) + e = HTTPException(status_code=500, detail="Presentation generation failed") + + raise e + + +@PRESENTATION_ROUTER.get("/status/{id}", response_model=AsyncTaskModel) +async def check_async_presentation_generation_status( + id: str = Path(description="ID of the presentation generation task"), + sql_session: AsyncSession = Depends(get_async_session), +): + status = await sql_session.get(AsyncTaskModel, id) + if not status: + raise HTTPException( + status_code=404, detail="No presentation generation task found" + ) + return status + + +@PRESENTATION_ROUTER.post("/edit", response_model=PresentationPathAndEditPath) +async def edit_presentation_with_new_content( + request_http: Request, + data: Annotated[EditPresentationRequest, Body()], + sql_session: AsyncSession = Depends(get_async_session), +): + presentation = await sql_session.get(PresentationModel, data.presentation_id) + if not presentation: + raise HTTPException(status_code=404, detail="Presentation not found") + + slides = await sql_session.scalars( + select(SlideModel).where(SlideModel.presentation == data.presentation_id) + ) + + new_slides = [] + slides_to_delete = [] + for each_slide in slides: + updated_content = None + new_slide_data = list( + filter(lambda x: x.index == each_slide.index, data.slides) + ) + if new_slide_data: + updated_content = deep_update(each_slide.content, new_slide_data[0].content) + new_slide = each_slide.get_new_slide(presentation.id, updated_content) + _hydrate_template_v2_slide_ui(new_slide, presentation.layout) + new_slides.append(new_slide) + slides_to_delete.append(each_slide.id) + + await sql_session.execute( + delete(SlideModel).where(SlideModel.id.in_(slides_to_delete)) + ) + + sql_session.add_all(new_slides) + await sql_session.commit() + + presentation_and_path = await export_presentation( + presentation.id, + presentation.title or str(uuid.uuid4()), + data.export_as, + cookie_header=_build_export_cookie_header(request_http), + ) + + return PresentationPathAndEditPath( + **presentation_and_path.model_dump(), + edit_path=f"/presentation?id={presentation.id}", + ) + + +@PRESENTATION_ROUTER.post("/derive", response_model=PresentationPathAndEditPath) +async def derive_presentation_from_existing_one( + request_http: Request, + data: Annotated[EditPresentationRequest, Body()], + sql_session: AsyncSession = Depends(get_async_session), +): + presentation = await sql_session.get(PresentationModel, data.presentation_id) + if not presentation: + raise HTTPException(status_code=404, detail="Presentation not found") + + slides = await sql_session.scalars( + select(SlideModel).where(SlideModel.presentation == data.presentation_id) + ) + + new_presentation = presentation.get_new_presentation() + new_slides = [] + for each_slide in slides: + updated_content = None + new_slide_data = list( + filter(lambda x: x.index == each_slide.index, data.slides) + ) + if new_slide_data: + updated_content = deep_update(each_slide.content, new_slide_data[0].content) + new_slide = each_slide.get_new_slide(new_presentation.id, updated_content) + _hydrate_template_v2_slide_ui(new_slide, new_presentation.layout) + new_slides.append(new_slide) + + sql_session.add(new_presentation) + sql_session.add_all(new_slides) + await sql_session.commit() + + presentation_and_path = await export_presentation( + new_presentation.id, + new_presentation.title or str(uuid.uuid4()), + data.export_as, + cookie_header=_build_export_cookie_header(request_http), + ) + + return PresentationPathAndEditPath( + **presentation_and_path.model_dump(), + edit_path=f"/presentation?id={new_presentation.id}", + ) diff --git a/servers/fastapi/api/v1/ppt/endpoints/prompts.py b/servers/fastapi/api/v1/ppt/endpoints/prompts.py new file mode 100644 index 0000000..d4b12d5 --- /dev/null +++ b/servers/fastapi/api/v1/ppt/endpoints/prompts.py @@ -0,0 +1,241 @@ +GENERATE_HTML_SYSTEM_PROMPT = """ +You need to generate html and tailwind code for given presentation slide image. Generated code will be used as template for different content. You need to think through each design elements and then decide where each element should go. +Follow these rules strictly: +- Make sure the design from html and tailwind is exact to the slide. +- Make sure all components are in their own place. +- Make sure size of elements are exact. Check sizes of images and other elements from OXML and convert them to pixels. +- Make sure all components should be noted of and should be added as it is. +- Image's and icons's size and position should be added exactly as it is. +- Read through the OXML data of slide and then match exact position ans size of elements. Make sure to convert between dimension and pixels. +- Make sure the vertical and horizonal spacing between elements are same as in the image. Try to get spacing from the OXML document as well. Make sure no elements overflows because of high spacing. +- Do not use absolute position unless absolutely necessary. Use flex, grid and spacing to properly arrange components. +- First, layout everything using flex or grid. Try to fit all the components using this layout. Finally, if you cannot layout any element without flex and grid, then only use absolute to place the element. +- Analyze each text's available space and it's design, and give minimum characters to fill in the text for the space and context and maximum that the space can handle. Be conservative with how many characters text space can handle. Make sure no text overflows and decide as to not disrupt the slide. Do this for every text. +- Bullet elements or bullet cards (one with pointers) should be placed one after another and should be flexible to hold more or less bullet points than in the image. Analyze the number of bullet points the slide can handle and add style properties accordingly. Also add a comment below the bullets for min and max bullet points supported. Make sure the number you quote should fit in the available space. Don't be too ambitious. +- For each text add font size and font family as tailwind property. Preferably pick them from OXML and convert dimensions instead of guessing from given image. +- Make sure that no elements overflow or exceed slide bounding in any way. +- Properly export shapes as exact SVG. +- Add relevant font in tailwind to all texts. +- Wrap the output code inside these classes: \"relative w-full rounded-sm max-w-[1280px] shadow-lg max-h-[720px] aspect-video bg-white relative z-20 mx-auto overflow-hidden\". +- For image everywhere use https://images.pexels.com/photos/31527637/pexels-photo-31527637.jpeg +- Image should never be inside of a SVG. +- Replace brand icons with a circle of same size with "i" between. Generic icons like "email", "call", etc should remain same. +- If there is a box/card enclosing a text, make it grow as well when the text grows, so that the text does not overflow the box/card. +- Give out only HTML and Tailwind code. No other texts or explanations. +- Do not give entire HTML structure with head, body, etc. Just give the respective HTML and Tailwind code inside div with above classes. +- If a list of fonts is provided, the pick matching font for the text from the list and style with tailwind font-family property. Use following format: font-["font-name"] +""" + +HTML_TO_REACT_SYSTEM_PROMPT = """ +Convert given static HTML and Tailwind slide to a TSX React component so that it can be dynamically populated. Follow these rules strictly while converting: + +1) Required imports, a zod schema and HTML layout has to be generated. +2) Schema will populate the layout so make sure schema has fields for all text, images and icons in the layout. +3) For similar components in the layouts (eg, team members), they should be represented by array of such components in the schema. +4) For image and icons icons should be a different schema with two dunder fields for prompt and url separately. +5) Default value for schema fields should be populated with the respective static value in HTML input. +6) In schema max and min value for characters in string and items in array should be specified as per the given image of the slide. You should accurately evaluate the maximum and minimum possible characters respective fields can handle visually through the image. ALso give out maximum number of words it can handle in the meta. +7) For image and icons schema should be compulsorily declared with two dunder fields for prompt and url separately. +8) Component name at the end should always yo 'dynamicSlideLayout'. +9) **Import or export statements should not be present in the output.** + - Don't give "import {React} from 'react'" + - Don't give "import {z} from 'zod'" +10) Always use double quotes for strings. +11) Layout Id, layout name and layout description should be declared and should describe the structure of the layout not its purpose. Do not describe numbers of any items in the layout. + -layoutDescription should not have any purpose for elements in it, so use '...cards' instead of '...goal cards' and '...bullet points' instead of '...solution bullet points'. + -layoutDescription should not have words like 'goals', 'solutions', 'problems' in it. + -layoutName constant should be same as the component name in the layout. + -Layout Id examples: header-description-bullet-points-slide, header-description-image-slide + -Layout Name examples: HeaderDescriptionBulletPointsLayout, HeaderDescriptionImageLayout + -Layout Description examples: A slide with a header, description, and bullet points and A slide with a header, description, and image +12. Only give Code and nothing else. No other text or comments. +13. Do not parse the slideData inside dynamicSlideLayout, just use it as it is. Do not use statements like `Schema.parse() ` anywhere. Instead directly use the data without validating or parsing. +14. Always complete the reference, do not give "slideData .? .cards" instead give "slideData?.cards". +15. Do not add anything other than code. Do not add "use client", "json", "typescript", "javascript" and other prefix or suffix, just give out code exactly formatted like example. +16. In schema, give default for all fields irrespective of their types, give defualt values for array and objects as well. +17. For charts use recharts.js library and follow these rules strictly: + - Do not import rechart, it will already be imported. + - There should support for multiple chart types including bar, line, pie and donut in the same size as given. + - Use an attribute in the schema to select between chart types. + - All data should be properly represented in schema. +18. For diagrams use mermaid with appropriate placeholder which can render any diagram. Schema should have a field for code. Render in the placeholder properly. +19. Don't add style attribute in the schema. Colors, font sizes, and all other style attributes should be added directly as tailwind classes. +For example: +Input: +

Effects of Global Warming

global warming effects on earth

Global warming triggers a cascade of effects on our planet. These changes impact everything from our oceans to our ecosystems.

sea level rising icon

Rising Sea Levels

Rising sea levels threaten coastal communities and ecosystems due to melting glaciers and thermal expansion.

heatwave icon

Intense Heatwaves

Heatwaves are becoming more frequent and intense, posing significant risks to human health and agriculture.

precipitation changes icon

Changes in Precipitation

Altered precipitation patterns lead to increased droughts in some regions and severe flooding in others, affecting water resources.

+Output: +const ImageSchema = z.object({ + __image_url__: z.url().meta({ + description: "URL to image", + }), + __image_prompt__: z.string().meta({ + description: "Prompt used to generate the image. Max 30 words", + }).min(10).max(50), +}) + +const IconSchema = z.object({ + __icon_url__: z.string().meta({ + description: "URL to icon", + }), + __icon_query__: z.string().meta({ + description: "Query used to search the icon. Max 3 words", + }).min(5).max(20), +}) +const layoutId = "bullet-with-icons-slide" +const layoutName = "Bullet with Icons" +const layoutDescription = "A bullets style slide with main content, supporting image, and bullet points with icons and descriptions." + +const Schema = z.object({ + title: z.string().min(3).max(40).default("Problem").meta({ + description: "Main title of the slide. Max 5 words", + }), + description: z.string().max(150).default("Businesses face challenges with outdated technology and rising costs, limiting efficiency and growth in competitive markets.").meta({ + description: "Main description text explaining the problem or topic. Max 30 words", + }), + image: ImageSchema.default({ + __image_url__: 'https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80', + __image_prompt__: "Business people analyzing documents and charts in office" + }).meta({ + description: "Supporting image for the slide. Max 30 words", + }), + bulletPoints: z.array(z.object({ + title: z.string().min(2).max(80).meta({ + description: "Bullet point title. Max 4 words", + }), + description: z.string().min(10).max(150).meta({ + description: "Bullet point description. Max 15 words", + }), + icon: IconSchema, + })).min(1).max(3).default([ + { + title: "Inefficiency", + description: "Businesses struggle to find digital tools that meet their needs, causing operational slowdowns.", + icon: { + __icon_url__: "/static/icons/placeholder.png", + __icon_query__: "warning alert inefficiency" + } + }, + { + title: "High Costs", + description: "Outdated systems increase expenses, while small businesses struggle to expand their market reach.", + icon: { + __icon_url__: "/static/icons/placeholder.png", + __icon_query__: "trending up costs chart" + } + } + ]).meta({ + description: "List of bullet points with icons and descriptions. Max 3 points", + }) +}) + +type BulletWithIconsSlideData = z.infer + +interface BulletWithIconsSlideLayoutProps { + data?: Partial +} + +const dynamicSlideLayout: React.FC = ({ data: slideData }) => { + const bulletPoints = slideData?.bulletPoints || [] + + return ( + <> +
+ + + {/* Main Content */} +
+ {/* Title Section - Full Width */} +
+

+ {slideData?.title || "Problem"} +

+
+ + {/* Content Container */} +
+ {/* Left Section - Image with Grid Pattern */} +
+ {/* Grid Pattern Background */} +
+ + + + + + + + +
+ + {/* Image Container */} +
+
+ {slideData?.image?.__image_prompt__ +
+
+ + {/* Decorative Sparkle */} +
+ + + +
+
+ + {/* Right Section - Content */} +
+ {/* Description */} +

+ {slideData?.description || "Businesses face challenges with outdated technology and rising costs, limiting efficiency and growth in competitive markets."} +

+ + {/* Bullet Points */} +
+ {bulletPoints.map((bullet, index) => ( +
+ {/* Icon */} +
+ {bullet.icon.__icon_query__} +
+ + {/* Content */} +
+

+ {bullet.title} +

+
+

+ {bullet.description} +

+
+
+ ))} +
+
+
+
+
+ + ) +} + +- Give output with only code and nothing else. (no json, no markdown, no text, no explanation) +""" + +HTML_EDIT_SYSTEM_PROMPT = """ +You need to edit given html with respect to the indication and sketch in the given UI. You'll be given the code for current UI which is in presentation size, along with its visualization in image form. Over that you'll also be given another image which has indications of what might change in form of sketch in the UI. You will have to return the edited html with tailwind with the changes as indicated on the image and through prompt. Make sure you think through the design before making the change and also make sure you don't change the non-indicated part. Try to follow the design style of current content for generated content. If sketch image is not provided, then you need to edit the html with respect to the prompt. Make sure size of the presentation does not change in any cirsumstance. Only give out code and nothing else. +""" + diff --git a/servers/fastapi/api/v1/ppt/endpoints/slide.py b/servers/fastapi/api/v1/ppt/endpoints/slide.py new file mode 100644 index 0000000..849fa8b --- /dev/null +++ b/servers/fastapi/api/v1/ppt/endpoints/slide.py @@ -0,0 +1,148 @@ +import logging +from typing import Annotated, Optional +from fastapi import APIRouter, Body, Depends, HTTPException +from sqlalchemy.ext.asyncio import AsyncSession +import uuid + +from models.sql.presentation import PresentationModel +from models.sql.slide import SlideModel +from services.database import get_async_session +from services.image_generation_service import ImageGenerationService +from services.mem0_presentation_memory_service import ( + MEM0_PRESENTATION_MEMORY_SERVICE, +) +from utils.asset_directory_utils import get_images_directory +from utils.llm_calls.edit_slide import get_edited_slide_content +from utils.llm_calls.edit_slide_html import get_edited_slide_html +from utils.llm_calls.select_slide_type_on_edit import get_slide_layout_from_prompt +from utils.process_slides import process_old_and_new_slides_and_fetch_assets + + +SLIDE_ROUTER = APIRouter(prefix="/slide", tags=["Slide"]) +LOGGER = logging.getLogger(__name__) + + +@SLIDE_ROUTER.post("/edit") +async def edit_slide( + id: Annotated[uuid.UUID, Body()], + prompt: Annotated[str, Body()], + sql_session: AsyncSession = Depends(get_async_session), +): + slide = await sql_session.get(SlideModel, id) + if not slide: + raise HTTPException(status_code=404, detail="Slide not found") + presentation = await sql_session.get(PresentationModel, slide.presentation) + if not presentation: + raise HTTPException(status_code=404, detail="Presentation not found") + + memory_context = await MEM0_PRESENTATION_MEMORY_SERVICE.retrieve_context( + presentation.id, + prompt, + ) + + presentation_layout = presentation.get_layout() + slide_layout = await get_slide_layout_from_prompt( + prompt, + presentation_layout, + slide, + memory_context, + ) + + edited_slide_content = await get_edited_slide_content( + prompt, + slide, + presentation.language, + slide_layout, + presentation.tone, + presentation.verbosity, + presentation.instructions, + memory_context, + ) + + image_generation_service = ImageGenerationService(get_images_directory()) + + # This will mutate edited_slide_content + image_warnings: list[dict] = [] + new_assets = await process_old_and_new_slides_and_fetch_assets( + image_generation_service, + slide.content, + edited_slide_content, + icon_weight=presentation.get_layout().icon_weight, + use_template_v2_asset_fields=slide.layout_group.startswith("template-v2"), + allow_image_fallback=True, + image_warnings=image_warnings, + ) + for warning in image_warnings: + LOGGER.warning( + "Slide edit image generation warning: presentation_id=%s slide_id=%s detail=%s", + presentation.id, + slide.id, + warning.get("detail"), + ) + + # Always assign a new unique id to the slide + slide.id = uuid.uuid4() + + sql_session.add(slide) + slide.content = edited_slide_content + slide.layout = slide_layout.id + slide.speaker_note = edited_slide_content.get("__speaker_note__", "") + sql_session.add_all(new_assets) + await sql_session.commit() + + await MEM0_PRESENTATION_MEMORY_SERVICE.store_slide_edit( + presentation_id=presentation.id, + slide_index=slide.index, + edit_prompt=prompt, + edited_slide_content=edited_slide_content, + ) + + return slide + + +@SLIDE_ROUTER.post("/edit-html", response_model=SlideModel) +async def edit_slide_html( + id: Annotated[uuid.UUID, Body()], + prompt: Annotated[str, Body()], + html: Annotated[Optional[str], Body()] = None, + sql_session: AsyncSession = Depends(get_async_session), +): + slide = await sql_session.get(SlideModel, id) + if not slide: + raise HTTPException(status_code=404, detail="Slide not found") + + presentation = await sql_session.get(PresentationModel, slide.presentation) + if not presentation: + raise HTTPException(status_code=404, detail="Presentation not found") + + html_to_edit = html or slide.html_content + if not html_to_edit: + raise HTTPException(status_code=400, detail="No HTML to edit") + + memory_context = await MEM0_PRESENTATION_MEMORY_SERVICE.retrieve_context( + presentation.id, + prompt, + ) + + edited_slide_html = await get_edited_slide_html( + prompt, + html_to_edit, + memory_context, + ) + + # Always assign a new unique id to the slide + # This is to ensure that the nextjs can track slide updates + slide.id = uuid.uuid4() + + sql_session.add(slide) + slide.html_content = edited_slide_html + await sql_session.commit() + + await MEM0_PRESENTATION_MEMORY_SERVICE.store_slide_edit( + presentation_id=presentation.id, + slide_index=slide.index, + edit_prompt=prompt, + edited_slide_content=edited_slide_html, + ) + + return slide diff --git a/servers/fastapi/api/v1/ppt/endpoints/slide_to_html.py b/servers/fastapi/api/v1/ppt/endpoints/slide_to_html.py new file mode 100644 index 0000000..0eb9360 --- /dev/null +++ b/servers/fastapi/api/v1/ppt/endpoints/slide_to_html.py @@ -0,0 +1,394 @@ +from datetime import datetime +from typing import List, Optional +from uuid import UUID + +from fastapi import APIRouter, Depends, HTTPException +from pydantic import BaseModel +from sqlalchemy import delete, func, select +from sqlalchemy.ext.asyncio import AsyncSession + +from models.sql.presentation_layout_code import PresentationLayoutCodeModel +from models.sql.template import TemplateModel +from services.database import get_async_session + +LAYOUT_MANAGEMENT_ROUTER = APIRouter( + prefix="/template-management", tags=["template-management"] +) + + +class LayoutData(BaseModel): + presentation: UUID + layout_id: str + layout_name: str + layout_code: str + fonts: Optional[List[str]] = None + + +class SaveLayoutsRequest(BaseModel): + layouts: list[LayoutData] + + +class SaveLayoutsResponse(BaseModel): + success: bool + saved_count: int + message: Optional[str] = None + + +class GetLayoutsResponse(BaseModel): + success: bool + layouts: list[LayoutData] + message: Optional[str] = None + template: Optional[dict] = None + fonts: Optional[List[str]] = None + + +class PresentationSummary(BaseModel): + presentation_id: UUID + layout_count: int + last_updated_at: Optional[datetime] = None + template: Optional[dict] = None + + +class GetPresentationSummaryResponse(BaseModel): + success: bool + presentations: List[PresentationSummary] + total_presentations: int + total_layouts: int + message: Optional[str] = None + + +class ErrorResponse(BaseModel): + success: bool = False + detail: str + error_code: Optional[str] = None + + +class TemplateCreateRequest(BaseModel): + id: UUID + name: str + description: Optional[str] = None + + +class TemplateCreateResponse(BaseModel): + success: bool + template: dict + message: Optional[str] = None + + +@LAYOUT_MANAGEMENT_ROUTER.post( + "/save-templates", + response_model=SaveLayoutsResponse, + responses={ + 400: {"model": ErrorResponse, "description": "Validation error"}, + 500: {"model": ErrorResponse, "description": "Internal server error"}, + }, +) +async def save_layouts( + request: SaveLayoutsRequest, session: AsyncSession = Depends(get_async_session) +): + """ + Save multiple layouts for presentations. + + Args: + request: JSON request containing array of layout data + session: Database session + + Returns: + SaveLayoutsResponse with success status and count of saved layouts + + Raises: + HTTPException: 400 for validation errors, 500 for server errors + """ + try: + if not request.layouts: + raise HTTPException(status_code=400, detail="Layouts array cannot be empty") + + if len(request.layouts) > 50: + raise HTTPException( + status_code=400, detail="Cannot save more than 50 layouts at once" + ) + + saved_count = 0 + + for i, layout_data in enumerate(request.layouts): + if ( + not layout_data.presentation + or not str(layout_data.presentation).strip() + ): + raise HTTPException( + status_code=400, + detail=f"Layout {i+1}: presentation_id cannot be empty", + ) + + if not layout_data.layout_id or not layout_data.layout_id.strip(): + raise HTTPException( + status_code=400, detail=f"Layout {i+1}: layout_id cannot be empty" + ) + + if not layout_data.layout_name or not layout_data.layout_name.strip(): + raise HTTPException( + status_code=400, detail=f"Layout {i+1}: layout_name cannot be empty" + ) + + if not layout_data.layout_code or not layout_data.layout_code.strip(): + raise HTTPException( + status_code=400, detail=f"Layout {i+1}: layout_code cannot be empty" + ) + + stmt = select(PresentationLayoutCodeModel).where( + PresentationLayoutCodeModel.presentation == layout_data.presentation, + PresentationLayoutCodeModel.layout_id == layout_data.layout_id, + ) + result = await session.execute(stmt) + existing_layout = result.scalar_one_or_none() + + if existing_layout: + existing_layout.layout_name = layout_data.layout_name + existing_layout.layout_code = layout_data.layout_code + existing_layout.fonts = layout_data.fonts + existing_layout.updated_at = datetime.now() + else: + new_layout = PresentationLayoutCodeModel( + presentation=layout_data.presentation, + layout_id=layout_data.layout_id, + layout_name=layout_data.layout_name, + layout_code=layout_data.layout_code, + fonts=layout_data.fonts, + ) + session.add(new_layout) + + saved_count += 1 + + await session.commit() + + return SaveLayoutsResponse( + success=True, + saved_count=saved_count, + message=f"Successfully saved {saved_count} layout(s)", + ) + + except HTTPException: + await session.rollback() + raise + except Exception as e: + await session.rollback() + print(f"Unexpected error saving layouts: {str(e)}") + raise HTTPException( + status_code=500, + detail=f"Internal server error while saving layouts: {str(e)}", + ) + + +@LAYOUT_MANAGEMENT_ROUTER.get( + "/get-templates/{presentation}", + response_model=GetLayoutsResponse, + responses={ + 400: {"model": ErrorResponse, "description": "Invalid presentation ID"}, + 404: { + "model": ErrorResponse, + "description": "No layouts found for presentation", + }, + 500: {"model": ErrorResponse, "description": "Internal server error"}, + }, +) +async def get_layouts( + presentation: UUID, session: AsyncSession = Depends(get_async_session) +): + """ + Retrieve all layouts for a specific presentation. + """ + try: + if not presentation or len(str(presentation).strip()) == 0: + raise HTTPException( + status_code=400, detail="Presentation ID cannot be empty" + ) + + stmt = select(PresentationLayoutCodeModel).where( + PresentationLayoutCodeModel.presentation == presentation + ) + result = await session.execute(stmt) + layouts_db = result.scalars().all() + + if not layouts_db: + raise HTTPException( + status_code=404, + detail=f"No layouts found for presentation ID: {presentation}", + ) + + layouts = [ + LayoutData( + presentation=layout.presentation, + layout_id=layout.layout_id, + layout_name=layout.layout_name, + layout_code=layout.layout_code, + fonts=layout.fonts, + ) + for layout in layouts_db + ] + + aggregated_fonts: set[str] = set() + for layout in layouts_db: + if layout.fonts: + aggregated_fonts.update([f for f in layout.fonts if isinstance(f, str)]) + fonts_list = sorted(list(aggregated_fonts)) if aggregated_fonts else None + + template_meta = await session.get(TemplateModel, presentation) + template = None + if template_meta: + template = { + "id": template_meta.id, + "name": template_meta.name, + "description": template_meta.description, + "created_at": template_meta.created_at, + } + + return GetLayoutsResponse( + success=True, + layouts=layouts, + message=f"Retrieved {len(layouts)} layout(s) for presentation {presentation}", + template=template, + fonts=fonts_list, + ) + + except HTTPException: + raise + except Exception as e: + print(f"Error retrieving layouts for presentation {presentation}: {str(e)}") + raise HTTPException( + status_code=500, + detail=f"Internal server error while retrieving layouts: {str(e)}", + ) + + +@LAYOUT_MANAGEMENT_ROUTER.get( + "/summary", + response_model=GetPresentationSummaryResponse, + summary="Get all presentations with layout counts", + description="Retrieve a summary of all presentations and the number of layouts in each", + responses={ + 200: { + "model": GetPresentationSummaryResponse, + "description": "Presentations summary retrieved successfully", + }, + 500: {"model": ErrorResponse, "description": "Internal server error"}, + }, +) +async def get_presentations_summary( + session: AsyncSession = Depends(get_async_session), +): + """Get summary of all presentations with their layout counts.""" + try: + stmt = select( + PresentationLayoutCodeModel.presentation, + func.count(PresentationLayoutCodeModel.id).label("layout_count"), + func.max(PresentationLayoutCodeModel.updated_at).label("last_updated_at"), + ).group_by(PresentationLayoutCodeModel.presentation) + + result = await session.execute(stmt) + presentation_data = result.all() + + presentations = [] + for row in presentation_data: + template_meta = await session.get(TemplateModel, row.presentation) + template = None + if template_meta: + template = { + "id": template_meta.id, + "name": template_meta.name, + "description": template_meta.description, + "created_at": template_meta.created_at, + } + presentations.append( + PresentationSummary( + presentation_id=row.presentation, + layout_count=row.layout_count, + last_updated_at=row.last_updated_at, + template=template, + ) + ) + + total_presentations = len(presentations) + total_layouts = sum(p.layout_count for p in presentations) + + return GetPresentationSummaryResponse( + success=True, + presentations=presentations, + total_presentations=total_presentations, + total_layouts=total_layouts, + message=f"Retrieved {total_presentations} presentation(s) with {total_layouts} total layout(s)", + ) + + except Exception as e: + print(f"Error retrieving presentations summary: {str(e)}") + raise HTTPException( + status_code=500, + detail=f"Internal server error while retrieving presentations summary: {str(e)}", + ) + + +@LAYOUT_MANAGEMENT_ROUTER.post( + "/templates", + response_model=TemplateCreateResponse, + responses={ + 400: {"model": ErrorResponse, "description": "Validation error"}, + 500: {"model": ErrorResponse, "description": "Internal server error"}, + }, +) +async def create_template( + request: TemplateCreateRequest, + session: AsyncSession = Depends(get_async_session), +): + try: + if not request.id or not request.name: + raise HTTPException(status_code=400, detail="id and name are required") + + existing = await session.get(TemplateModel, request.id) + if existing: + existing.name = request.name + existing.description = request.description + else: + session.add( + TemplateModel( + id=request.id, name=request.name, description=request.description + ) + ) + await session.commit() + + template = await session.get(TemplateModel, request.id) + return TemplateCreateResponse( + success=True, + template={ + "id": template.id, + "name": template.name, + "description": template.description, + "created_at": template.created_at, + }, + message="Template saved", + ) + except HTTPException: + await session.rollback() + raise + except Exception as e: + await session.rollback() + raise HTTPException( + status_code=500, detail=f"Failed to save template: {str(e)}" + ) + + +@LAYOUT_MANAGEMENT_ROUTER.delete("/delete-templates/{template_id}", status_code=204) +async def delete_template( + template_id: UUID, + session: AsyncSession = Depends(get_async_session), +): + try: + await session.execute( + delete(TemplateModel).where(TemplateModel.id == template_id) + ) + await session.execute( + delete(PresentationLayoutCodeModel).where( + PresentationLayoutCodeModel.presentation == template_id, + ) + ) + await session.commit() + except Exception: + raise HTTPException(status_code=500, detail="Failed to delete template") diff --git a/servers/fastapi/api/v1/ppt/endpoints/templates.py b/servers/fastapi/api/v1/ppt/endpoints/templates.py new file mode 100644 index 0000000..14532ed --- /dev/null +++ b/servers/fastapi/api/v1/ppt/endpoints/templates.py @@ -0,0 +1,1359 @@ +import asyncio +import logging +import os +import random +from concurrent.futures import ThreadPoolExecutor, as_completed +from datetime import datetime +from functools import partial +from typing import Any, Optional +from urllib.parse import unquote, urlparse + +from fastapi import ( + APIRouter, + BackgroundTasks, + Body, + Depends, + File, + Form, + HTTPException, + Path, + Query, + Response, + UploadFile, +) +from pydantic import ( + AliasChoices, + BaseModel, + ConfigDict, + Field, + ValidationError, + model_validator, +) +from sqlalchemy.ext.asyncio import AsyncSession +from sqlmodel import select + +from models.api_error_model import APIErrorModel +from models.sql.async_task import AsyncTaskModel +from models.sql.template_v2 import TemplateV2 +from services.database import async_session_maker, get_async_session +from services.export_task_service import EXPORT_TASK_SERVICE +from templates.preview import ( + FontsUploadAndSlidesPreviewResponse, + upload_fonts_and_slides_preview_handler, +) +from templates.v2.generation import ( + MAX_PARALLEL_SLIDE_LAYOUTS, + generate_slide_layout, + generate_template, + merge_similar_components, +) +from templates.v2.models.layouts import ( + MergedComponents, + RawSlideLayouts, + SlideLayout, + SlideLayouts, +) +from utils.asset_directory_utils import resolve_app_path_to_filesystem +from utils.file_utils import get_original_file_name + + +TEMPLATES_ROUTER = APIRouter(prefix="/templates", tags=["Templates"]) +TEMPLATE_ASSETS_ROUTER = APIRouter(prefix="/template", tags=["Template Assets"]) +LOGGER = logging.getLogger(__name__) +_TEMPLATE_LAYOUT_PATCH_LOCKS: dict[str, asyncio.Lock] = {} +_TEMPLATE_LAYOUT_PATCH_LOCKS_GUARD = asyncio.Lock() +ASYNC_TASK_TYPE_TEMPLATE_CREATE = "template.create" +SLIDE_LAYOUT_GENERATION_MAX_TOKENS = 16000 + + +class InitTemplateV2Request(BaseModel): + pptx_url: str + slide_image_urls: list[str] + fonts: dict[str, Any] = Field(default_factory=dict) + name: Optional[str] = None + description: Optional[str] = None + + +class CreateTemplateV2Request(InitTemplateV2Request): + pass + + +class GenerateTemplateV2BlocksRequest(BaseModel): + model_config = ConfigDict(populate_by_name=True) + + template_id: str = Field(validation_alias=AliasChoices("template_id", "id")) + + +class CreateTemplateV2LayoutsRequest(BaseModel): + model_config = ConfigDict(populate_by_name=True) + + template_id: str = Field(validation_alias=AliasChoices("template_id", "id")) + index: Optional[int] = Field(default=None, ge=0) + indices: Optional[list[int]] = None + + @model_validator(mode="after") + def _validate_indices(self) -> "CreateTemplateV2LayoutsRequest": + if self.index is None and self.indices is None: + raise ValueError("Either index or indices is required") + if self.index is not None and self.indices is not None: + raise ValueError("Use either index or indices, not both") + + values = self.layout_indices + if not values: + raise ValueError("At least one slide index is required") + if len(values) > MAX_PARALLEL_SLIDE_LAYOUTS: + raise ValueError( + f"At most {MAX_PARALLEL_SLIDE_LAYOUTS} slide layouts can be " + "created at once" + ) + if any(index < 0 for index in values): + raise ValueError("Slide indices must be non-negative") + if len(values) != len(set(values)): + raise ValueError("Slide indices must be unique") + return self + + @property + def layout_indices(self) -> list[int]: + if self.indices is not None: + return list(self.indices) + if self.index is not None: + return [self.index] + return [] + + +class CreatedTemplateV2SlideLayout(BaseModel): + index: int = Field(ge=0) + layout: SlideLayout + + +class CreateTemplateV2LayoutsResponse(BaseModel): + layouts: list[CreatedTemplateV2SlideLayout] + + +class PatchTemplateV2SlideLayoutItem(BaseModel): + index: int = Field(ge=0) + layout: SlideLayout + + +class PatchTemplateV2SlideLayoutRequest(BaseModel): + index: Optional[int] = Field(default=None, ge=0) + layout: Optional[SlideLayout] = None + layouts: Optional[list[PatchTemplateV2SlideLayoutItem]] = None + + @model_validator(mode="after") + def _validate_layout_items(self) -> "PatchTemplateV2SlideLayoutRequest": + has_single = self.index is not None or self.layout is not None + has_batch = self.layouts is not None + if has_single and has_batch: + raise ValueError("Use either a single layout or layouts, not both") + if has_single and (self.index is None or self.layout is None): + raise ValueError("Both index and layout are required") + if not has_single and not has_batch: + raise ValueError("Either a single layout or layouts is required") + if has_batch: + if not self.layouts: + raise ValueError("At least one layout is required") + indices = [item.index for item in self.layouts] + if len(indices) != len(set(indices)): + raise ValueError("Layout indices must be unique") + return self + + @property + def layout_items(self) -> list[PatchTemplateV2SlideLayoutItem]: + if self.layouts is not None: + return list(self.layouts) + if self.index is None or self.layout is None: + return [] + return [ + PatchTemplateV2SlideLayoutItem( + index=self.index, + layout=self.layout, + ) + ] + + +class UpdateTemplateV2MetadataRequest(BaseModel): + name: Optional[str] = None + description: Optional[str] = None + + +class TemplateV2ListItem(BaseModel): + model_config = ConfigDict(from_attributes=True) + + id: str + name: str + description: Optional[str] = None + layout_count: int = 0 + thumbnail: Optional[str] = None + is_default: bool = False + created_at: datetime + updated_at: datetime + + +class TemplateV2ListResponse(BaseModel): + items: list[TemplateV2ListItem] + total: int + page: int + page_size: int + + +class TemplateV2Response(TemplateV2ListItem): + raw_layouts: Optional[dict[str, Any]] = None + components: Optional[dict[str, Any]] = None + merged_components: Optional[dict[str, Any]] = None + layouts: Optional[dict[str, Any]] = None + assets: Optional[dict[str, Any]] = None + + +def _template_v2_task_progress_data( + created_layouts: int, + remaining_layouts: int, + name: str | None = None, + thumbnail: str | None = None, + completed_layout_indices: set[int] | None = None, +) -> dict[str, Any]: + total_layouts = max(created_layouts, 0) + max(remaining_layouts, 0) + if completed_layout_indices is None: + completed_layout_indices = set(range(max(created_layouts, 0))) + return { + "created_layouts": max(created_layouts, 0), + "remaining_layouts": max(remaining_layouts, 0), + "slide_layout_statuses": [ + { + "index": index, + "status": "completed" + if index in completed_layout_indices + else "pending", + } + for index in range(total_layouts) + ], + "name": name, + "thumbnail": thumbnail, + } + + +def _template_v2_request_name(request: InitTemplateV2Request) -> str: + return (request.name or "").strip() or _derive_template_name(request.pptx_url, "") + + +def _template_v2_request_thumbnail(request: InitTemplateV2Request) -> str | None: + for slide_image_url in request.slide_image_urls: + if isinstance(slide_image_url, str) and slide_image_url.strip(): + return slide_image_url.strip() + return None + + +def _derive_template_name(pptx_url: str, pptx_path: str) -> str: + source = pptx_path or unquote(urlparse(pptx_url).path) or pptx_url + basename = os.path.basename(source.rstrip("/")) + if "----" in basename: + basename = get_original_file_name(basename) + name = os.path.splitext(basename)[0].strip() + return name or "Untitled template" + + +def _collect_image_urls_from_layouts(layouts_json: dict[str, Any]) -> list[str]: + images: list[str] = [] + seen: set[str] = set() + + def visit(value: Any) -> None: + if isinstance(value, dict): + if value.get("type") == "image": + image_data = value.get("data") + if isinstance(image_data, str): + image_url = image_data.strip() + if image_url and image_url not in seen: + seen.add(image_url) + images.append(image_url) + + for child_value in value.values(): + visit(child_value) + return + + if isinstance(value, list): + for item in value: + visit(item) + + visit(layouts_json) + return images + + +def _count_layouts(layouts_json: Any) -> int: + if isinstance(layouts_json, dict): + layouts = layouts_json.get("layouts") + return len(layouts) if isinstance(layouts, list) else 0 + if isinstance(layouts_json, list): + return len(layouts_json) + return 0 + + +async def _generate_slide_layouts( + raw_layouts: RawSlideLayouts, + slide_image_urls: list[str], + fonts: dict[str, str] | None = None, +) -> SlideLayouts: + LOGGER.info( + "[templates.v2.create] slide layout generation start slides=%d", + len(raw_layouts.layouts), + ) + try: + generated_layouts = await _run_template_generation_thread( + generate_template, + raw_layouts, + slide_image_urls, + fonts, + ) + layouts = _coerce_generated_slide_layouts(generated_layouts) + except (ValidationError, ValueError) as exc: + LOGGER.exception( + "[templates.v2.create] slide layout generation produced invalid output " + "slides=%d", + len(raw_layouts.layouts), + ) + raise HTTPException( + status_code=500, + detail="Slide layout generation produced invalid output", + ) from exc + + LOGGER.info( + "[templates.v2.create] slide layout generation complete slides=%d " + "components=%d", + len(layouts.layouts), + sum(len(layout.components) for layout in layouts.layouts), + ) + return layouts + + +async def _merge_generated_components(layouts: SlideLayouts) -> MergedComponents: + LOGGER.info( + "[templates.v2.create] component de-duplication start components=%d", + sum(len(layout.components) for layout in layouts.layouts), + ) + try: + merged_components = await _run_template_generation_thread( + merge_similar_components, + layouts, + ) + except (ValidationError, ValueError) as exc: + LOGGER.exception( + "[templates.v2.create] component de-duplication produced invalid output" + ) + return MergedComponents(components=[]) + + LOGGER.info( + "[templates.v2.create] component de-duplication complete merged_components=%d", + len(merged_components.components), + ) + return merged_components + + +async def _commit_template_v2_task_progress( + task: AsyncTaskModel, + sql_session: AsyncSession, + *, + completed_layout_indices: set[int], + total_layouts: int, + name: str | None, + thumbnail: str | None, +) -> None: + task.data = _template_v2_task_progress_data( + created_layouts=len(completed_layout_indices), + remaining_layouts=total_layouts - len(completed_layout_indices), + completed_layout_indices=completed_layout_indices, + name=name, + thumbnail=thumbnail, + ) + task.updated_at = datetime.now() + sql_session.add(task) + await sql_session.commit() + + +def _ensure_unique_async_slide_layout_ids( + layouts: list[SlideLayout], +) -> list[SlideLayout]: + used_ids: set[str] = set() + unique_layouts: list[SlideLayout] = [] + for index, layout in enumerate(layouts): + if layout.id not in used_ids: + used_ids.add(layout.id) + unique_layouts.append(layout) + continue + + suffix = index + 1 + candidate_id = f"{layout.id}_{suffix}" + while candidate_id in used_ids: + suffix += 1 + candidate_id = f"{layout.id}_{suffix}" + used_ids.add(candidate_id) + unique_layouts.append( + layout.model_copy(deep=True, update={"id": candidate_id}) + ) + return unique_layouts + + +async def _generate_slide_layouts_with_task_progress( + raw_layouts: RawSlideLayouts, + slide_image_urls: list[str], + fonts: dict[str, str] | None, + task: AsyncTaskModel, + sql_session: AsyncSession, + *, + name: str | None, + thumbnail: str | None, +) -> SlideLayouts: + if not raw_layouts.layouts: + raise ValueError("layouts must contain at least one slide layout") + if len(slide_image_urls) != len(raw_layouts.layouts): + raise ValueError("slide_image_urls must contain one image for each layout") + + slide_count = len(raw_layouts.layouts) + max_workers = min(MAX_PARALLEL_SLIDE_LAYOUTS, slide_count) + LOGGER.info( + "[templates.v2.create.async] slide layout generation start " + "task_id=%s slides=%d max_parallel=%d", + task.id, + slide_count, + max_workers, + ) + loop = asyncio.get_running_loop() + completed_layout_indices: set[int] = set() + layouts_by_index: dict[int, SlideLayout] = {} + + async def generate_one(index: int, executor: ThreadPoolExecutor): + generated_layout = await loop.run_in_executor( + executor, + partial( + generate_slide_layout, + raw_layouts.layouts[index], + index, + slide_image_urls[index], + fonts, + max_tokens=SLIDE_LAYOUT_GENERATION_MAX_TOKENS, + ), + ) + layout = ( + generated_layout + if isinstance(generated_layout, SlideLayout) + else SlideLayout.model_validate(generated_layout) + ) + return index, layout + + with ThreadPoolExecutor( + max_workers=max_workers, + thread_name_prefix="template-v2-slide-layout", + ) as executor: + pending_tasks = [ + asyncio.create_task(generate_one(index, executor)) + for index in range(slide_count) + ] + try: + for completed_task in asyncio.as_completed(pending_tasks): + index, layout = await completed_task + layouts_by_index[index] = layout + completed_layout_indices.add(index) + await _commit_template_v2_task_progress( + task, + sql_session, + completed_layout_indices=completed_layout_indices, + total_layouts=slide_count, + name=name, + thumbnail=thumbnail, + ) + LOGGER.info( + "[templates.v2.create.async] slide layout complete " + "task_id=%s slide=%d/%d components=%d completed=%d/%d", + task.id, + index + 1, + slide_count, + len(layout.components), + len(completed_layout_indices), + slide_count, + ) + except Exception: + for pending_task in pending_tasks: + pending_task.cancel() + raise + + ordered_layouts = [layouts_by_index[index] for index in range(slide_count)] + unique_layouts = _ensure_unique_async_slide_layout_ids(ordered_layouts) + layouts = _with_randomized_layout_ids(SlideLayouts(layouts=unique_layouts)) + LOGGER.info( + "[templates.v2.create.async] slide layout generation complete " + "task_id=%s slides=%d components=%d", + task.id, + len(layouts.layouts), + sum(len(layout.components) for layout in layouts.layouts), + ) + return layouts + + +async def _run_template_generation_thread(func: Any, *args: Any) -> Any: + loop = asyncio.get_running_loop() + with ThreadPoolExecutor( + max_workers=1, + thread_name_prefix="template-v2-generation", + ) as executor: + return await loop.run_in_executor(executor, partial(func, *args)) + + +def _coerce_generated_slide_layouts(generated_layouts: Any) -> SlideLayouts: + if isinstance(generated_layouts, SlideLayouts): + return generated_layouts + return SlideLayouts.model_validate(generated_layouts) + + +def _coerce_template_slide_layouts(layouts_json: Any) -> SlideLayouts: + if isinstance(layouts_json, SlideLayouts): + return layouts_json + if isinstance(layouts_json, list): + return SlideLayouts.model_validate({"layouts": layouts_json}) + return SlideLayouts.model_validate(layouts_json) + + +def _with_randomized_layout_ids(layouts: SlideLayouts) -> SlideLayouts: + return SlideLayouts( + layouts=[ + layout.model_copy( + deep=True, + update={ + "id": f"{layout.id}_{random.randint(1000, 9999)}", + }, + ) + for layout in layouts.layouts + ] + ) + + +def _get_template_slide_image_urls(template: TemplateV2) -> list[str | None]: + if not isinstance(template.assets, dict): + return [] + + slide_image_urls = template.assets.get("slide_image_urls") + if not isinstance(slide_image_urls, list): + return [] + + return [ + slide_image_url.strip() + if isinstance(slide_image_url, str) and slide_image_url.strip() + else None + for slide_image_url in slide_image_urls + ] + + +def _coerce_font_map(value: Any) -> dict[str, str]: + if not isinstance(value, dict): + return {} + return { + name.strip(): url.strip() + for name, url in value.items() + if isinstance(name, str) + and isinstance(url, str) + and name.strip() + and url.strip() + } + + +def _get_template_fonts(template: TemplateV2) -> dict[str, str]: + if not isinstance(template.assets, dict): + return {} + return _coerce_font_map(template.assets.get("fonts")) + + +def _get_template_thumbnail_from_assets(assets: Any) -> str | None: + if not isinstance(assets, dict): + return None + + thumbnail = assets.get("thumbnail") + if isinstance(thumbnail, str) and thumbnail.strip(): + return thumbnail.strip() + + slide_image_urls = assets.get("slide_image_urls") + if not isinstance(slide_image_urls, list): + return None + + for slide_image_url in slide_image_urls: + if isinstance(slide_image_url, str) and slide_image_url.strip(): + return slide_image_url.strip() + return None + + +async def _get_template_layout_patch_lock(template_id: str) -> asyncio.Lock: + async with _TEMPLATE_LAYOUT_PATCH_LOCKS_GUARD: + lock = _TEMPLATE_LAYOUT_PATCH_LOCKS.get(template_id) + if lock is None: + lock = asyncio.Lock() + _TEMPLATE_LAYOUT_PATCH_LOCKS[template_id] = lock + return lock + + +async def _prepare_template_v2_source( + request: InitTemplateV2Request, + *, + operation: str, +) -> tuple[str, RawSlideLayouts, dict[str, Any], dict[str, str]]: + LOGGER.info( + "[templates.v2.%s] request received pptx_url=%s slide_images=%d " + "font_count=%d has_name=%s", + operation, + request.pptx_url, + len(request.slide_image_urls), + len(request.fonts or {}), + bool((request.name or "").strip()), + ) + if not request.slide_image_urls: + LOGGER.warning( + "[templates.v2.%s] rejected request without slide images pptx_url=%s", + operation, + request.pptx_url, + ) + raise HTTPException( + status_code=400, detail="At least one slide image is required" + ) + + pptx_path = resolve_app_path_to_filesystem(request.pptx_url) + if not pptx_path or not os.path.isfile(pptx_path): + LOGGER.warning( + "[templates.v2.%s] rejected request; PPTX file not found " + "pptx_url=%s resolved_path=%s", + operation, + request.pptx_url, + pptx_path, + ) + raise HTTPException(status_code=400, detail="PPTX file not found") + + LOGGER.info( + "[templates.v2.%s] converting PPTX to JSON pptx_path=%s", + operation, + pptx_path, + ) + pptx_json = await EXPORT_TASK_SERVICE.convert_pptx_to_json(pptx_path) + try: + raw_layouts = RawSlideLayouts.model_validate( + pptx_json.model_dump(mode="json") + ) + except ValidationError as exc: + LOGGER.exception( + "[templates.v2.%s] PPTX-to-JSON export produced invalid slide " + "layout JSON pptx_path=%s", + operation, + pptx_path, + ) + raise HTTPException( + status_code=500, + detail="PPTX-to-JSON export produced invalid slide layout JSON", + ) from exc + LOGGER.info( + "[templates.v2.%s] PPTX-to-JSON validation complete pptx_path=%s " + "slides=%d", + operation, + pptx_path, + len(raw_layouts.layouts), + ) + + if len(raw_layouts.layouts) > len(request.slide_image_urls): + LOGGER.info( + "[templates.v2.%s] capping raw layouts to preview images " + "raw_slides=%d slide_images=%d", + operation, + len(raw_layouts.layouts), + len(request.slide_image_urls), + ) + raw_layouts = RawSlideLayouts( + layouts=raw_layouts.layouts[: len(request.slide_image_urls)] + ) + elif len(request.slide_image_urls) > len(raw_layouts.layouts): + raise HTTPException( + status_code=400, + detail="Exactly one slide image is required for each slide layout", + ) + + return ( + pptx_path, + raw_layouts, + raw_layouts.model_dump(mode="json", exclude_none=True), + _coerce_font_map(request.fonts), + ) + + +def _layout_indexes_from_assets(assets: Any, layout_count: int) -> list[int]: + if isinstance(assets, dict): + indexes = assets.get("layout_indexes") + if ( + isinstance(indexes, list) + and len(indexes) == layout_count + and all(isinstance(index, int) and index >= 0 for index in indexes) + and len(indexes) == len(set(indexes)) + ): + return list(indexes) + return list(range(layout_count)) + + +def _raw_layout_count(template: TemplateV2) -> int | None: + if not isinstance(template.raw_layouts, dict): + return None + layouts = template.raw_layouts.get("layouts") + return len(layouts) if isinstance(layouts, list) else None + + +def _merge_template_layout_items( + template: TemplateV2, + items: list[PatchTemplateV2SlideLayoutItem], +) -> tuple[SlideLayouts, list[int]]: + existing_layouts = ( + _coerce_template_slide_layouts(template.layouts) + if template.layouts is not None + else None + ) + existing_items = existing_layouts.layouts if existing_layouts else [] + layout_indexes = _layout_indexes_from_assets(template.assets, len(existing_items)) + layout_by_index = dict(zip(layout_indexes, existing_items)) + raw_slide_count = _raw_layout_count(template) + if raw_slide_count is None: + max_slide_count = len(existing_layouts.layouts) if existing_layouts else None + elif existing_layouts is not None: + max_slide_count = max(raw_slide_count, len(existing_layouts.layouts)) + else: + max_slide_count = raw_slide_count + + for item in items: + if max_slide_count is not None and item.index >= max_slide_count: + raise HTTPException(status_code=400, detail="Invalid slide index") + layout_by_index[item.index] = item.layout + + ordered_indexes = sorted(layout_by_index) + try: + return ( + SlideLayouts( + layouts=[layout_by_index[index] for index in ordered_indexes] + ), + ordered_indexes, + ) + except ValidationError as exc: + raise HTTPException( + status_code=400, + detail="Patched template layouts are invalid", + ) from exc + + +def _generate_indexed_slide_layouts( + raw_layouts: RawSlideLayouts, + indices: list[int], + slide_image_urls: list[str | None], + fonts: dict[str, str], +) -> list[CreatedTemplateV2SlideLayout]: + max_workers = min(MAX_PARALLEL_SLIDE_LAYOUTS, len(indices)) + layouts_by_index: dict[int, SlideLayout] = {} + with ThreadPoolExecutor(max_workers=max_workers) as executor: + futures = { + executor.submit( + generate_slide_layout, + raw_layouts.layouts[index], + index, + slide_image_urls[index], + fonts, + max_tokens=SLIDE_LAYOUT_GENERATION_MAX_TOKENS, + ): index + for index in indices + } + for future in as_completed(futures): + index = futures[future] + generated_layout = future.result() + layouts_by_index[index] = ( + generated_layout + if isinstance(generated_layout, SlideLayout) + else SlideLayout.model_validate(generated_layout) + ) + + ordered_layouts = [layouts_by_index[index] for index in indices] + randomized = _with_randomized_layout_ids(SlideLayouts(layouts=ordered_layouts)) + return [ + CreatedTemplateV2SlideLayout(index=index, layout=layout) + for index, layout in zip(indices, randomized.layouts) + ] + + +@TEMPLATES_ROUTER.get("", response_model=TemplateV2ListResponse) +async def list_templates_v2( + page: int = Query(default=1, ge=1), + page_size: int = Query(default=20, ge=1, le=100), + sql_session: AsyncSession = Depends(get_async_session), +): + offset = (page - 1) * page_size + result = await sql_session.execute( + select( + TemplateV2.id, + TemplateV2.name, + TemplateV2.description, + TemplateV2.layouts, + TemplateV2.assets, + TemplateV2.is_default, + TemplateV2.created_at, + TemplateV2.updated_at, + ) + .order_by(TemplateV2.created_at.desc()) + ) + + items: list[TemplateV2ListItem] = [] + for ( + template_id, + name, + description, + layouts, + assets, + is_default, + created_at, + updated_at, + ) in result.all(): + layout_count = _count_layouts(layouts) + if layout_count == 0: + continue + + items.append( + TemplateV2ListItem( + id=template_id, + name=name, + description=description, + layout_count=layout_count, + thumbnail=_get_template_thumbnail_from_assets(assets), + is_default=is_default, + created_at=created_at, + updated_at=updated_at, + ) + ) + + return TemplateV2ListResponse( + items=items[offset : offset + page_size], + total=len(items), + page=page, + page_size=page_size, + ) + + +@TEMPLATE_ASSETS_ROUTER.post( + "/fonts-upload-and-slides-preview", + response_model=FontsUploadAndSlidesPreviewResponse, +) +async def upload_template_fonts_and_slides_preview( + pptx_file: UploadFile = File(..., description="PPTX file to preview"), + font_files: Optional[list[UploadFile]] = File( + default=None, description="Font files to upload" + ), + original_font_names: Optional[list[str]] = Form(default=None), + google_font_original_names: Optional[list[str]] = Form(default=None), + google_font_replacement_names: Optional[list[str]] = Form(default=None), + google_font_names: Optional[list[str]] = Form(default=None), + google_font_urls: Optional[list[str]] = Form(default=None), +): + return await upload_fonts_and_slides_preview_handler( + pptx_file=pptx_file, + font_files=font_files, + original_font_names=original_font_names, + google_font_original_names=google_font_original_names, + google_font_replacement_names=google_font_replacement_names, + google_font_names=google_font_names, + google_font_urls=google_font_urls, + ) + + +@TEMPLATES_ROUTER.post( + "/init", + status_code=201, + response_model=str, +) +async def init_template_v2( + request: InitTemplateV2Request = Body(...), + sql_session: AsyncSession = Depends(get_async_session), +): + pptx_path, raw_layouts, raw_layouts_json, available_fonts = ( + await _prepare_template_v2_source(request, operation="init") + ) + template = TemplateV2( + name=(request.name or "").strip() or _derive_template_name( + request.pptx_url, pptx_path + ), + description=request.description, + raw_layouts=raw_layouts_json, + layouts=None, + assets={ + "pptx_url": request.pptx_url, + "fonts": available_fonts, + "slide_image_urls": request.slide_image_urls, + "images": _collect_image_urls_from_layouts(raw_layouts_json), + "layout_indexes": [], + }, + ) + LOGGER.info( + "[templates.v2.init] persisting template name=%s slides=%d images=%d", + template.name, + len(raw_layouts.layouts), + len(template.assets.get("images", [])), + ) + sql_session.add(template) + await sql_session.commit() + await sql_session.refresh(template) + LOGGER.info( + "[templates.v2.init] template persisted template_id=%s name=%s", + template.id, + template.name, + ) + return template.id + + +def _build_created_template_v2( + request: CreateTemplateV2Request, + *, + pptx_path: str, + raw_layouts_json: dict[str, Any], + available_fonts: dict[str, str], + generated_layouts: SlideLayouts, + merged_components: MergedComponents, +) -> TemplateV2: + return TemplateV2( + name=(request.name or "").strip() or _derive_template_name( + request.pptx_url, pptx_path + ), + description=request.description, + raw_layouts=raw_layouts_json, + merged_components=merged_components.model_dump( + mode="json", exclude_none=True + ), + layouts=generated_layouts.model_dump(mode="json", exclude_none=True), + assets={ + "fonts": available_fonts, + "slide_image_urls": request.slide_image_urls, + "images": _collect_image_urls_from_layouts(raw_layouts_json), + }, + ) + + +async def _create_template_v2_sync( + request: CreateTemplateV2Request = Body(...), + sql_session: AsyncSession = Depends(get_async_session), +): + pptx_path, raw_layouts, raw_layouts_json, available_fonts = ( + await _prepare_template_v2_source(request, operation="create") + ) + generated_layouts = await _generate_slide_layouts( + raw_layouts, + request.slide_image_urls, + available_fonts, + ) + generated_layouts = _with_randomized_layout_ids(generated_layouts) + merged_components = await _merge_generated_components(generated_layouts) + template = _build_created_template_v2( + request, + pptx_path=pptx_path, + raw_layouts_json=raw_layouts_json, + available_fonts=available_fonts, + generated_layouts=generated_layouts, + merged_components=merged_components, + ) + LOGGER.info( + "[templates.v2.create] persisting template name=%s slides=%d images=%d", + template.name, + len(raw_layouts.layouts), + len(template.assets.get("images", [])), + ) + sql_session.add(template) + await sql_session.commit() + await sql_session.refresh(template) + LOGGER.info( + "[templates.v2.create] template persisted template_id=%s name=%s", + template.id, + template.name, + ) + return template + + +async def _create_template_v2_with_task_progress( + request: CreateTemplateV2Request, + task: AsyncTaskModel, + sql_session: AsyncSession, +) -> TemplateV2: + pptx_path, raw_layouts, raw_layouts_json, available_fonts = ( + await _prepare_template_v2_source(request, operation="create") + ) + name = (request.name or "").strip() or _derive_template_name( + request.pptx_url, pptx_path + ) + thumbnail = _template_v2_request_thumbnail(request) + await _commit_template_v2_task_progress( + task, + sql_session, + completed_layout_indices=set(), + total_layouts=len(raw_layouts.layouts), + name=name, + thumbnail=thumbnail, + ) + try: + generated_layouts = await _generate_slide_layouts_with_task_progress( + raw_layouts, + request.slide_image_urls, + available_fonts, + task, + sql_session, + name=name, + thumbnail=thumbnail, + ) + except (ValidationError, ValueError) as exc: + LOGGER.exception( + "[templates.v2.create.async] slide layout generation produced " + "invalid output task_id=%s slides=%d", + task.id, + len(raw_layouts.layouts), + ) + raise HTTPException( + status_code=500, + detail="Slide layout generation produced invalid output", + ) from exc + merged_components = await _merge_generated_components(generated_layouts) + template = _build_created_template_v2( + request, + pptx_path=pptx_path, + raw_layouts_json=raw_layouts_json, + available_fonts=available_fonts, + generated_layouts=generated_layouts, + merged_components=merged_components, + ) + LOGGER.info( + "[templates.v2.create.async] persisting template task_id=%s name=%s " + "slides=%d images=%d", + task.id, + template.name, + len(raw_layouts.layouts), + len(template.assets.get("images", [])), + ) + sql_session.add(template) + await sql_session.commit() + await sql_session.refresh(template) + LOGGER.info( + "[templates.v2.create.async] template persisted task_id=%s " + "template_id=%s name=%s", + task.id, + template.id, + template.name, + ) + return template + + +async def _run_create_template_v2_task( + task_id: str, + request: CreateTemplateV2Request, +) -> None: + async with async_session_maker() as sql_session: + task = await sql_session.get(AsyncTaskModel, task_id) + if not task: + LOGGER.warning( + "[templates.v2.create.async] task missing task_id=%s", + task_id, + ) + return + + try: + task.status = "processing" + task.message = "Creating template" + task.data = _template_v2_task_progress_data( + created_layouts=0, + remaining_layouts=len(request.slide_image_urls), + name=_template_v2_request_name(request), + thumbnail=_template_v2_request_thumbnail(request), + ) + task.updated_at = datetime.now() + sql_session.add(task) + await sql_session.commit() + + task.message = "Generating slide layouts" + template = await _create_template_v2_with_task_progress( + request, + task, + sql_session, + ) + created_layouts = _count_layouts(template.layouts) + + task.status = "completed" + task.message = "Template creation completed" + task.data = _template_v2_task_progress_data( + created_layouts=created_layouts, + remaining_layouts=len(request.slide_image_urls) - created_layouts, + name=template.name, + thumbnail=_get_template_thumbnail_from_assets(template.assets), + ) + task.updated_at = datetime.now() + sql_session.add(task) + await sql_session.commit() + except Exception as exc: + LOGGER.exception( + "[templates.v2.create.async] template creation failed task_id=%s", + task_id, + ) + task.status = "error" + task.message = "Template creation failed" + api_error = APIErrorModel.from_exception( + exc + if isinstance(exc, HTTPException) + else HTTPException(status_code=500, detail="Template creation failed") + ) + task.error = api_error.model_dump(mode="json") + task.updated_at = datetime.now() + sql_session.add(task) + await sql_session.commit() + + +@TEMPLATES_ROUTER.post( + "/async", + status_code=201, + response_model=AsyncTaskModel, +) +async def create_template_v2( + background_tasks: BackgroundTasks, + request: CreateTemplateV2Request = Body(...), + sql_session: AsyncSession = Depends(get_async_session), +): + task = AsyncTaskModel( + type=ASYNC_TASK_TYPE_TEMPLATE_CREATE, + status="pending", + message="Queued for template creation", + data=_template_v2_task_progress_data( + created_layouts=0, + remaining_layouts=len(request.slide_image_urls), + name=_template_v2_request_name(request), + thumbnail=_template_v2_request_thumbnail(request), + ), + ) + sql_session.add(task) + await sql_session.commit() + await sql_session.refresh(task) + + background_tasks.add_task(_run_create_template_v2_task, task.id, request) + return task + + +@TEMPLATES_ROUTER.post( + "/layouts/create", + response_model=CreateTemplateV2LayoutsResponse, +) +async def create_template_v2_slide_layouts( + request: CreateTemplateV2LayoutsRequest = Body(...), + sql_session: AsyncSession = Depends(get_async_session), +): + template = await sql_session.get(TemplateV2, request.template_id) + if not template: + raise HTTPException(status_code=404, detail="Template not found") + + if not isinstance(template.raw_layouts, dict): + raise HTTPException( + status_code=400, + detail="Template raw layouts are unavailable", + ) + + try: + raw_layouts = RawSlideLayouts.model_validate(template.raw_layouts) + except ValidationError as exc: + LOGGER.exception( + "[templates.v2.layouts.create] template has invalid raw layouts " + "template_id=%s", + request.template_id, + ) + raise HTTPException( + status_code=500, + detail="Template raw layouts are invalid", + ) from exc + + indices = request.layout_indices + if any(index >= len(raw_layouts.layouts) for index in indices): + raise HTTPException(status_code=400, detail="Invalid slide index") + + slide_image_urls = _get_template_slide_image_urls(template) + missing_slide_image = any( + index >= len(slide_image_urls) or slide_image_urls[index] is None + for index in indices + ) + if missing_slide_image: + raise HTTPException( + status_code=400, + detail="Slide image URL is unavailable for requested slide index", + ) + + LOGGER.info( + "[templates.v2.layouts.create] slide layout creation start " + "template_id=%s slides=%s/%d", + request.template_id, + ",".join(str(index + 1) for index in indices), + len(raw_layouts.layouts), + ) + try: + created_layouts = await _run_template_generation_thread( + _generate_indexed_slide_layouts, + raw_layouts, + indices, + slide_image_urls, + _get_template_fonts(template), + ) + except (ValidationError, ValueError) as exc: + LOGGER.exception( + "[templates.v2.layouts.create] slide layout creation produced " + "invalid output template_id=%s slides=%s", + request.template_id, + ",".join(str(index + 1) for index in indices), + ) + raise HTTPException( + status_code=500, + detail="Slide layout creation produced invalid output", + ) from exc + + LOGGER.info( + "[templates.v2.layouts.create] slide layout creation complete " + "template_id=%s slides=%s components=%d", + request.template_id, + ",".join(str(index + 1) for index in indices), + sum(len(item.layout.components) for item in created_layouts), + ) + return CreateTemplateV2LayoutsResponse(layouts=created_layouts) + + +@TEMPLATES_ROUTER.post( + "/generate-blocks", + response_model=TemplateV2Response, +) +async def generate_template_v2_blocks( + request: GenerateTemplateV2BlocksRequest = Body(...), + sql_session: AsyncSession = Depends(get_async_session), +): + template = await sql_session.get(TemplateV2, request.template_id) + if not template: + raise HTTPException(status_code=404, detail="Template not found") + + if template.layouts is None: + raise HTTPException( + status_code=400, + detail="Template layouts are unavailable", + ) + + try: + layouts = _coerce_template_slide_layouts(template.layouts) + except ValidationError as exc: + LOGGER.exception( + "[templates.v2.generate_blocks] template has invalid layouts " + "template_id=%s", + request.template_id, + ) + raise HTTPException( + status_code=500, + detail="Template layouts are invalid", + ) from exc + + merged_components = await _merge_generated_components(layouts) + template.merged_components = merged_components.model_dump( + mode="json", + exclude_none=True, + ) + sql_session.add(template) + await sql_session.commit() + await sql_session.refresh(template) + LOGGER.info( + "[templates.v2.generate_blocks] component blocks generated " + "template_id=%s layouts=%d merged_components=%d", + request.template_id, + len(layouts.layouts), + len(merged_components.components), + ) + return template + + +@TEMPLATES_ROUTER.patch( + "/{template_id}/layouts", + response_model=TemplateV2Response, +) +async def patch_template_v2_slide_layout( + template_id: str = Path(...), + request: PatchTemplateV2SlideLayoutRequest = Body(...), + sql_session: AsyncSession = Depends(get_async_session), +): + lock = await _get_template_layout_patch_lock(template_id) + async with lock: + template = await sql_session.get(TemplateV2, template_id) + if not template: + raise HTTPException(status_code=404, detail="Template not found") + + try: + updated_layouts, layout_indexes = _merge_template_layout_items( + template, + request.layout_items, + ) + except ValidationError as exc: + LOGGER.exception( + "[templates.v2.patch_layout] template has invalid layouts " + "template_id=%s", + template_id, + ) + raise HTTPException( + status_code=500, + detail="Template layouts are invalid", + ) from exc + + assets = dict(template.assets) if isinstance(template.assets, dict) else {} + assets["layout_indexes"] = layout_indexes + template.layouts = updated_layouts.model_dump(mode="json", exclude_none=True) + template.assets = assets + sql_session.add(template) + await sql_session.commit() + await sql_session.refresh(template) + LOGGER.info( + "[templates.v2.patch_layout] slide layouts patched template_id=%s " + "slides=%s saved_layouts=%d", + template_id, + ",".join(str(item.index + 1) for item in request.layout_items), + len(updated_layouts.layouts), + ) + return template + + +@TEMPLATES_ROUTER.patch("/{template_id}", response_model=TemplateV2Response) +async def update_template_v2_metadata( + template_id: str = Path(...), + request: UpdateTemplateV2MetadataRequest = Body(...), + sql_session: AsyncSession = Depends(get_async_session), +): + template = await sql_session.get(TemplateV2, template_id) + if not template: + raise HTTPException(status_code=404, detail="Template not found") + + if "name" in request.model_fields_set: + name = (request.name or "").strip() + if not name: + raise HTTPException(status_code=400, detail="Template name is required") + template.name = name + + if "description" in request.model_fields_set: + description = (request.description or "").strip() + template.description = description or None + + sql_session.add(template) + await sql_session.commit() + await sql_session.refresh(template) + return template + + +@TEMPLATES_ROUTER.get("/{template_id}", response_model=TemplateV2Response) +async def get_template_v2( + template_id: str = Path(...), + sql_session: AsyncSession = Depends(get_async_session), +): + template = await sql_session.get(TemplateV2, template_id) + if not template: + raise HTTPException(status_code=404, detail="Template not found") + return template + + +@TEMPLATES_ROUTER.delete("/{template_id}", status_code=204) +async def delete_template_v2( + template_id: str = Path(...), + sql_session: AsyncSession = Depends(get_async_session), +): + template = await sql_session.get(TemplateV2, template_id) + if not template: + raise HTTPException(status_code=404, detail="Template not found") + + await sql_session.delete(template) + await sql_session.commit() + return Response(status_code=204) diff --git a/servers/fastapi/api/v1/ppt/endpoints/theme.py b/servers/fastapi/api/v1/ppt/endpoints/theme.py new file mode 100644 index 0000000..846e19f --- /dev/null +++ b/servers/fastapi/api/v1/ppt/endpoints/theme.py @@ -0,0 +1,190 @@ +import copy +import uuid +from typing import Any, List, Optional + +from fastapi import APIRouter, Depends, HTTPException +from pydantic import BaseModel, Field +from sqlalchemy.ext.asyncio import AsyncSession +from sqlmodel import select + +from models.sql.image_asset import ImageAsset +from models.sql.key_value import KeyValueSqlModel +from services.database import get_async_session +from utils.asset_directory_utils import normalize_slide_asset_url + +THEMES_ROUTER = APIRouter(prefix="/themes", tags=["Themes"]) +THEMES_STORAGE_KEY = "presentation_custom_themes" + + +class ThemeRequest(BaseModel): + name: str + description: str + company_name: Optional[str] = None + logo: Optional[str] = None + logo_url: Optional[str] = None + data: dict[str, Any] = Field(default_factory=dict) + + +class ThemeUpdateRequest(BaseModel): + name: Optional[str] = None + description: Optional[str] = None + company_name: Optional[str] = None + logo: Optional[str] = None + logo_url: Optional[str] = None + data: Optional[dict[str, Any]] = None + + +class ThemeResponse(BaseModel): + id: str + name: str + description: str + user: str + logo: Optional[str] = None + logo_url: Optional[str] = None + company_name: Optional[str] = None + data: dict[str, Any] + + +def _normalize_theme(theme: dict[str, Any]) -> ThemeResponse: + raw_logo_url = theme.get("logo_url") + if raw_logo_url is None: + logo_url = None + elif isinstance(raw_logo_url, str): + s = raw_logo_url.strip() + logo_url = normalize_slide_asset_url(s) if s else None + else: + logo_url = raw_logo_url + return ThemeResponse( + id=str(theme["id"]), + name=theme["name"], + description=theme["description"], + user=theme.get("user", "local"), + logo=theme.get("logo"), + logo_url=logo_url, + company_name=theme.get("company_name"), + data=theme.get("data", {}), + ) + + +async def _get_themes_row(sql_session: AsyncSession) -> Optional[KeyValueSqlModel]: + return await sql_session.scalar( + select(KeyValueSqlModel).where(KeyValueSqlModel.key == THEMES_STORAGE_KEY) + ) + + +def _read_themes_from_row(row: Optional[KeyValueSqlModel]) -> list[dict[str, Any]]: + if not row: + return [] + value = row.value if isinstance(row.value, dict) else {} + themes = value.get("themes", []) + if not isinstance(themes, list): + return [] + return copy.deepcopy(themes) + + +async def _resolve_logo_url( + sql_session: AsyncSession, logo: Optional[str] +) -> Optional[str]: + if not logo: + return None + try: + logo_uuid = uuid.UUID(str(logo)) + except ValueError as exc: + raise HTTPException(status_code=400, detail="Invalid logo id") from exc + + image_asset = await sql_session.get(ImageAsset, logo_uuid) + if not image_asset: + raise HTTPException(status_code=404, detail="Logo not found") + return normalize_slide_asset_url(image_asset.path) + + +@THEMES_ROUTER.get("/default", response_model=List[dict[str, Any]]) +async def get_default_themes(): + # Built-in themes are provided by Next.js constants in this project. + return [] + + +@THEMES_ROUTER.get("/all", response_model=List[ThemeResponse]) +async def get_themes(sql_session: AsyncSession = Depends(get_async_session)): + row = await _get_themes_row(sql_session) + themes = _read_themes_from_row(row) + return [_normalize_theme(theme) for theme in themes] + + +@THEMES_ROUTER.post("/create", response_model=ThemeResponse) +async def create_theme( + payload: ThemeRequest, sql_session: AsyncSession = Depends(get_async_session) +): + row = await _get_themes_row(sql_session) + themes = _read_themes_from_row(row) + logo_url = payload.logo_url or await _resolve_logo_url(sql_session, payload.logo) + + theme = { + "id": str(uuid.uuid4()), + "name": payload.name, + "description": payload.description, + "user": "local", + "logo": payload.logo, + "logo_url": logo_url, + "company_name": payload.company_name, + "data": payload.data, + } + themes.append(theme) + + if row: + row.value = {"themes": themes} + sql_session.add(row) + else: + sql_session.add(KeyValueSqlModel(key=THEMES_STORAGE_KEY, value={"themes": themes})) + + await sql_session.commit() + return _normalize_theme(theme) + + +@THEMES_ROUTER.patch("/update/{theme_id}", response_model=ThemeResponse) +async def update_theme( + theme_id: str, + payload: ThemeUpdateRequest, + sql_session: AsyncSession = Depends(get_async_session), +): + row = await _get_themes_row(sql_session) + if not row: + raise HTTPException(status_code=404, detail="Theme not found") + + themes = _read_themes_from_row(row) + theme = next((item for item in themes if item.get("id") == theme_id), None) + if not theme: + raise HTTPException(status_code=404, detail="Theme not found") + + if payload.name is not None: + theme["name"] = payload.name + if payload.description is not None: + theme["description"] = payload.description + if payload.company_name is not None: + theme["company_name"] = payload.company_name + if payload.data is not None: + theme["data"] = payload.data + if payload.logo is not None: + theme["logo"] = payload.logo + theme["logo_url"] = await _resolve_logo_url(sql_session, payload.logo) + elif payload.logo_url is not None: + theme["logo_url"] = payload.logo_url + + row.value = {"themes": themes} + sql_session.add(row) + await sql_session.commit() + return _normalize_theme(theme) + + +@THEMES_ROUTER.delete("/delete/{theme_id}", status_code=204) +async def delete_theme( + theme_id: str, sql_session: AsyncSession = Depends(get_async_session) +): + row = await _get_themes_row(sql_session) + if not row: + return + + themes = _read_themes_from_row(row) + row.value = {"themes": [theme for theme in themes if theme.get("id") != theme_id]} + sql_session.add(row) + await sql_session.commit() diff --git a/servers/fastapi/api/v1/ppt/endpoints/theme_generate.py b/servers/fastapi/api/v1/ppt/endpoints/theme_generate.py new file mode 100644 index 0000000..94590fe --- /dev/null +++ b/servers/fastapi/api/v1/ppt/endpoints/theme_generate.py @@ -0,0 +1,75 @@ +from typing import Optional + +from fastapi import APIRouter +from pydantic import BaseModel + +from models.theme_data import ThemeData +from utils.theme_utils import ( + IS_DARK_BELOW, + generate_color_palette, + get_lightness_key_at_distance, +) + +THEME_ROUTER = APIRouter(prefix="/theme", tags=["V3 Theme"]) + + +class GenerateThemeRequestV3(BaseModel): + primary: Optional[str] = None + background: Optional[str] = None + accent_1: Optional[str] = None + accent_2: Optional[str] = None + text_1: Optional[str] = None + text_2: Optional[str] = None + + +@THEME_ROUTER.post("/generate", response_model=ThemeData) +async def generate_theme_v3(request: GenerateThemeRequestV3) -> ThemeData: + color_palette = generate_color_palette( + request.primary, + request.background, + request.accent_1, + request.accent_2, + request.text_1, + request.text_2, + ) + + is_dark_theme = color_palette.background_lightness < IS_DARK_BELOW + graph_colors = list(color_palette.primary_variations.values()) + + if not is_dark_theme: + graph_colors.reverse() + + theme_data = ThemeData( + primary=color_palette.primary, + background=color_palette.background, + card=color_palette.background_variations[ + get_lightness_key_at_distance( + color_palette.background_lightness, + min_distance=1, + max_distance=1, + prefer_dark=not is_dark_theme, + ) + ], + stroke=color_palette.background_variations[ + get_lightness_key_at_distance( + color_palette.background_lightness, + min_distance=2, + max_distance=2, + prefer_dark=not is_dark_theme, + ) + ], + background_text=color_palette.text_1, + primary_text=color_palette.text_2, + graph_0=graph_colors[0], + graph_1=graph_colors[1], + graph_2=graph_colors[2], + graph_3=graph_colors[3], + graph_4=graph_colors[4], + graph_5=graph_colors[5], + graph_6=graph_colors[6], + graph_7=graph_colors[7], + graph_8=graph_colors[8], + graph_9=graph_colors[9], + ) + return theme_data + diff --git a/servers/fastapi/api/v1/ppt/router.py b/servers/fastapi/api/v1/ppt/router.py new file mode 100644 index 0000000..c5c26aa --- /dev/null +++ b/servers/fastapi/api/v1/ppt/router.py @@ -0,0 +1,45 @@ +from fastapi import APIRouter + +from api.v1.ppt.endpoints.anthropic import ANTHROPIC_ROUTER +from api.v1.ppt.endpoints.chat import CHAT_ROUTER +from api.v1.ppt.endpoints.codex_auth import CODEX_AUTH_ROUTER +from api.v1.ppt.endpoints.google import GOOGLE_ROUTER +from api.v1.ppt.endpoints.openai import OPENAI_ROUTER +from api.v1.ppt.endpoints.files import FILES_ROUTER +from api.v1.ppt.endpoints.pptx_slides import PPTX_SLIDES_ROUTER +from api.v1.ppt.endpoints.pdf_slides import PDF_SLIDES_ROUTER +from api.v1.ppt.endpoints.fonts import FONTS_ROUTER +from api.v1.ppt.endpoints.icons import ICONS_ROUTER +from api.v1.ppt.endpoints.images import IMAGES_ROUTER +from api.v1.ppt.endpoints.ollama import OLLAMA_ROUTER +from api.v1.ppt.endpoints.outlines import OUTLINES_ROUTER +from api.v1.ppt.endpoints.slide import SLIDE_ROUTER +from api.v1.ppt.endpoints.templates import TEMPLATE_ASSETS_ROUTER, TEMPLATES_ROUTER +from api.v1.ppt.endpoints.presentation import PRESENTATION_ROUTER +from api.v1.ppt.endpoints.pptx_slides import PPTX_FONTS_ROUTER +from api.v1.ppt.endpoints.theme import THEMES_ROUTER +from api.v1.ppt.endpoints.theme_generate import THEME_ROUTER + + +API_V1_PPT_ROUTER = APIRouter(prefix="/api/v1/ppt") + +API_V1_PPT_ROUTER.include_router(FILES_ROUTER) +API_V1_PPT_ROUTER.include_router(FONTS_ROUTER) +API_V1_PPT_ROUTER.include_router(OUTLINES_ROUTER) +API_V1_PPT_ROUTER.include_router(PPTX_SLIDES_ROUTER) +API_V1_PPT_ROUTER.include_router(SLIDE_ROUTER) +API_V1_PPT_ROUTER.include_router(IMAGES_ROUTER) +API_V1_PPT_ROUTER.include_router(ICONS_ROUTER) +API_V1_PPT_ROUTER.include_router(OLLAMA_ROUTER) +API_V1_PPT_ROUTER.include_router(PDF_SLIDES_ROUTER) +API_V1_PPT_ROUTER.include_router(OPENAI_ROUTER) +API_V1_PPT_ROUTER.include_router(ANTHROPIC_ROUTER) +API_V1_PPT_ROUTER.include_router(GOOGLE_ROUTER) +API_V1_PPT_ROUTER.include_router(CODEX_AUTH_ROUTER) +API_V1_PPT_ROUTER.include_router(PPTX_FONTS_ROUTER) +API_V1_PPT_ROUTER.include_router(PRESENTATION_ROUTER) +API_V1_PPT_ROUTER.include_router(THEMES_ROUTER) +API_V1_PPT_ROUTER.include_router(THEME_ROUTER) +API_V1_PPT_ROUTER.include_router(CHAT_ROUTER) +API_V1_PPT_ROUTER.include_router(TEMPLATE_ASSETS_ROUTER) +API_V1_PPT_ROUTER.include_router(TEMPLATES_ROUTER) diff --git a/servers/fastapi/api/v1/webhook/router.py b/servers/fastapi/api/v1/webhook/router.py new file mode 100644 index 0000000..4b85fc4 --- /dev/null +++ b/servers/fastapi/api/v1/webhook/router.py @@ -0,0 +1,53 @@ +from typing import Optional +from fastapi import APIRouter, Body, Depends, HTTPException, Path +from pydantic import BaseModel, Field +from sqlalchemy.ext.asyncio import AsyncSession + +from enums.webhook_event import WebhookEvent +from models.sql.webhook_subscription import WebhookSubscription +from services.database import get_async_session + +API_V1_WEBHOOK_ROUTER = APIRouter(prefix="/api/v1/webhook", tags=["Webhook"]) + + +class SubscribeToWebhookRequest(BaseModel): + url: str = Field(description="The URL to send the webhook to") + secret: Optional[str] = Field(None, description="The secret to use for the webhook") + event: WebhookEvent = Field(description="The event to subscribe to") + + +class SubscribeToWebhookResponse(BaseModel): + id: str + + +@API_V1_WEBHOOK_ROUTER.post( + "/subscribe", response_model=SubscribeToWebhookResponse, status_code=201 +) +async def subscribe_to_webhook( + body: SubscribeToWebhookRequest, + sql_session: AsyncSession = Depends(get_async_session), +): + webhook_subscription = WebhookSubscription( + url=body.url, + secret=body.secret, + event=body.event, + ) + sql_session.add(webhook_subscription) + await sql_session.commit() + return SubscribeToWebhookResponse(id=webhook_subscription.id) + + +@API_V1_WEBHOOK_ROUTER.delete("/unsubscribe", status_code=204) +async def unsubscribe_to_webhook( + id: str = Body( + embed=True, description="The ID of the webhook subscription to unsubscribe from" + ), + sql_session: AsyncSession = Depends(get_async_session), +): + + webhook_subscription = await sql_session.get(WebhookSubscription, id) + if not webhook_subscription: + raise HTTPException(404, "Webhook subscription not found") + + await sql_session.delete(webhook_subscription) + await sql_session.commit() diff --git a/servers/fastapi/assets/icons-vectorstore.json b/servers/fastapi/assets/icons-vectorstore.json new file mode 100644 index 0000000..8da7d07 --- /dev/null +++ b/servers/fastapi/assets/icons-vectorstore.json @@ -0,0 +1,583634 @@ +{ + "acorn-bold||*new*,savings,nut,vegetable,veggies,food,groceries,market": [ + -0.0057829152792692184, + -0.0013464802177622914, + -0.021338682621717453, + 0.07750671356916428, + 0.06414784491062164, + 0.005593984853476286, + 0.022195439785718918, + -0.04624233394861221, + -0.03354458510875702, + -0.016500262543559074, + 0.09353434294462204, + -0.05930054187774658, + -0.00032440191716887057, + -0.12609952688217163, + -0.022183530032634735, + -0.044990211725234985, + 0.05184921249747276, + 0.011601909063756466, + -0.023848118260502815, + -0.11152748018503189, + -0.03072417713701725, + 0.022686917334794998, + 0.01602153480052948, + 0.049045857042074203, + 0.06365058571100235, + -0.0268794447183609, + 0.006096250843256712, + -0.015090860426425934, + -0.04082218185067177, + -0.09551548957824707, + 0.0005147660849615932, + 0.003524379339069128, + 0.08081340044736862, + 0.023033535107970238, + 0.007511202245950699, + 0.08296938985586166, + -0.005828246008604765, + -0.06518629193305969, + 0.021302634850144386, + -0.012960332445800304, + -0.010467927902936935, + -0.05769908055663109, + -0.004682260565459728, + 0.03799222409725189, + -0.06469348818063736, + -0.006265190429985523, + -0.027454620227217674, + 0.013765251263976097, + 0.0313410647213459, + 0.08755449950695038, + 0.008152738213539124, + -0.024085095152258873, + -0.14738772809505463, + -0.009107471443712711, + 0.03227218985557556, + 0.059960007667541504, + -0.07675039768218994, + -0.1021522507071495, + -0.017249202355742455, + 0.03572943061590195, + 0.04084507375955582, + -0.026687927544116974, + 0.009862822480499744, + 0.05434466153383255, + -0.03221756964921951, + 0.05909346789121628, + -0.05432291328907013, + 0.04625401645898819, + -0.047579921782016754, + -0.017682764679193497, + 0.03423013165593147, + -0.008523114025592804, + 0.005973213817924261, + 0.015696773305535316, + -0.012715097516775131, + 0.017409641295671463, + 0.011938843876123428, + -0.07286368310451508, + 0.023702474310994148, + -0.05594254657626152, + -0.0969289243221283, + -0.013519449159502983, + -0.09981628507375717, + -0.038858674466609955, + -0.05569426342844963, + 0.040527839213609695, + -0.07356418669223785, + -0.06462572515010834, + -0.04015417397022247, + -0.03198077529668808, + -0.0012823081342503428, + -0.01609673537313938, + 0.013640214689075947, + 0.044330205768346786, + -0.049884699285030365, + 0.0061083827167749405, + 0.05361944064497948, + -0.06657277047634125, + -0.054239850491285324, + 0.03260193020105362, + 0.04853289574384689, + 0.08290138095617294, + 0.07718182355165482, + -0.00761922774836421, + -0.09926097840070724, + -0.074909508228302, + -0.057981375604867935, + -0.04429825022816658, + 0.0011577600380405784, + 0.09206078201532364, + -0.04653768241405487, + -0.0026936745271086693, + -0.0695631131529808, + -0.08205167949199677, + -0.06093643605709076, + -5.123275695950724e-05, + -0.07756804674863815, + -0.10560288280248642, + 0.0747261792421341, + 0.07601217180490494, + 0.0026129670441150665, + 0.0576707161962986, + -0.06774954497814178, + -0.03465525060892105, + -0.045249514281749725, + -0.037266846746206284, + -0.019304553046822548, + -1.916833822163779e-33, + -0.05972835049033165, + 0.050457585602998734, + 0.008438117802143097, + 0.0877528116106987, + -0.008742564357817173, + -0.018915574997663498, + -0.060804009437561035, + -0.04694782570004463, + -0.0314418263733387, + 0.05032562464475632, + 0.03154647350311279, + 0.03751163184642792, + -0.052973710000514984, + 0.05010402575135231, + 0.04890769347548485, + -0.08448027819395065, + 0.01243322342634201, + -0.039980318397283554, + -0.01544747594743967, + 0.007327607832849026, + -0.08987690508365631, + 0.08052609860897064, + -0.040526024997234344, + 0.01834500953555107, + 0.0003478054131846875, + -0.09610769897699356, + 0.057787466794252396, + 0.006705287843942642, + 0.005417868960648775, + 0.02379746176302433, + 0.05884866416454315, + 0.0541570819914341, + 0.03808005899190903, + 0.01579335331916809, + -0.0035874044988304377, + -0.0064241159707307816, + -0.042796287685632706, + -0.05194047465920448, + -0.01680518314242363, + 0.005090724676847458, + 0.008294565603137016, + 0.012908115983009338, + 0.07570774853229523, + 0.05763839930295944, + 0.041085075587034225, + 0.05467779561877251, + -0.00365561805665493, + 0.030838416889309883, + 0.0056483568623661995, + 0.026843328028917313, + 0.03335731104016304, + 0.0030351870227605104, + -0.003526851302012801, + 0.03583040460944176, + -0.05236377194523811, + -0.06615700572729111, + -0.07058686763048172, + 0.004135299474000931, + -0.03606690466403961, + -0.04765845835208893, + 0.06521093100309372, + 0.06788390874862671, + 0.04828105494379997, + -0.03014088049530983, + -0.03742833063006401, + 0.0572676956653595, + -0.11155563592910767, + 0.007268212269991636, + 0.020403871312737465, + 0.1169092133641243, + 0.042899612337350845, + 0.05749565362930298, + -0.013017118908464909, + 0.0585206001996994, + 0.0464944913983345, + 0.06434741616249084, + -0.021557239815592766, + 0.06682755798101425, + -0.07200264930725098, + -0.04015697166323662, + -0.03418479114770889, + -0.01963207498192787, + -0.006396941840648651, + 0.11628888547420502, + -0.01367290411144495, + 0.05383629351854324, + 0.013896399177610874, + -0.04042672738432884, + 0.11629963666200638, + -0.013865604065358639, + -0.01721130684018135, + 0.09337981790304184, + -0.01171103771775961, + -0.06790081411600113, + -0.09885654598474503, + -1.106611300219063e-33, + 0.001127257477492094, + -0.0708775669336319, + 0.0024837644305080175, + 0.042931947857141495, + -0.019491389393806458, + -0.00039578447467647493, + 0.0007768059731461108, + -0.024459581822156906, + 0.038343120366334915, + -0.008221244439482689, + -0.04979996010661125, + 0.06781671196222305, + 0.018683239817619324, + -0.09413940459489822, + 0.05475625768303871, + 0.08134999126195908, + 0.04995644465088844, + 0.07479700446128845, + 0.052179086953401566, + 0.045141614973545074, + -0.1077105924487114, + 0.014760198071599007, + -0.03481396287679672, + 0.0400993786752224, + -0.007378995884209871, + 0.01737583428621292, + 0.0069011179730296135, + 0.019010396674275398, + -0.06369662284851074, + -0.08132108300924301, + -0.009128447622060776, + -0.08312845975160599, + 0.022615494206547737, + 0.045873768627643585, + -0.09363873302936554, + -0.01685432903468609, + 0.04274727776646614, + -0.12352824211120605, + -0.060257572680711746, + 0.03001617267727852, + 0.011351976543664932, + -0.01573116146028042, + 0.003319330746307969, + 0.05191320180892944, + -0.009671250358223915, + -0.04209018498659134, + 0.0008850636659190059, + -0.02393605001270771, + -0.011862348765134811, + 0.03849877044558525, + 0.07989808917045593, + -0.03647738695144653, + 0.0073289754800498486, + -0.04035148397088051, + 0.01508201565593481, + 0.08762232959270477, + -0.006858129985630512, + -0.002428741892799735, + 0.05831456556916237, + -0.0518806055188179, + -0.026470672339200974, + 0.10403051972389221, + 0.003742117201909423, + 0.0669599324464798, + 0.07045546174049377, + -0.12135478109121323, + -0.006798882503062487, + -0.1060052439570427, + -0.02383408322930336, + -0.016743872314691544, + 0.02612220123410225, + 0.13224801421165466, + -0.07184652984142303, + -0.0696958526968956, + -0.02298579551279545, + 0.0517071858048439, + 0.0809859111905098, + -0.013936433009803295, + -0.07252125442028046, + 0.03246644511818886, + -0.036322902888059616, + -0.003822740400210023, + -0.004818293731659651, + 0.07962461560964584, + -0.04395296797156334, + 0.019650697708129883, + -0.048234812915325165, + 0.03567458316683769, + 0.006102716084569693, + 0.04976680502295494, + -0.07870575040578842, + 0.06126163899898529, + -0.03865162283182144, + 0.06482651084661484, + 0.02696550451219082, + -2.373582042025646e-08, + 0.020363833755254745, + 0.0054434011690318584, + -0.10020256042480469, + 0.02206033281981945, + 0.03371863439679146, + -0.02963714301586151, + 0.0027742236852645874, + -0.0511244535446167, + 0.006001773290336132, + 0.0374382883310318, + -0.04742471128702164, + 0.10301599651575089, + -0.03321373090147972, + 0.016301840543746948, + -0.004854540340602398, + -0.021822281181812286, + 0.024488255381584167, + 0.06537989526987076, + -0.01215761061757803, + 0.04632343351840973, + 0.006126767955720425, + 0.09164612740278244, + -0.0031940664630383253, + 0.005292435642331839, + -0.010948004201054573, + 0.034353043884038925, + 0.059731148183345795, + -0.0026533491909503937, + 0.07722780853509903, + 0.04594386741518974, + 0.05436340719461441, + 0.035503096878528595, + 0.024025481194257736, + -0.0492294505238533, + -0.0440504215657711, + -0.015910569578409195, + -0.01942867413163185, + 0.051470085978507996, + -0.00777022447437048, + 0.08610549569129944, + -0.007249896414577961, + -0.027214454486966133, + -0.030520163476467133, + 0.009659488685429096, + -0.10563912987709045, + -0.06814084947109222, + -0.026203960180282593, + 0.008474229834973812, + 0.0075983284041285515, + -0.0355338416993618, + -0.03602168709039688, + 0.03633558750152588, + 0.05421166494488716, + -0.03583264723420143, + -0.003200201317667961, + -0.10024150460958481, + 0.017401158809661865, + -0.013422403484582901, + -0.0034398301504552364, + -0.02612096630036831, + 0.0948479101061821, + -0.06351904571056366, + 0.025867434218525887, + 0.03367352485656738 + ], + "address-book-bold||contacts,directory,roledex": [ + -0.04690495878458023, + -0.0262434221804142, + -0.019220756366848946, + 0.055065881460905075, + -0.003162124427035451, + -0.029265476390719414, + 0.057163842022418976, + -0.07030860334634781, + -0.0005847418215125799, + -0.08196067810058594, + -0.019688714295625687, + 0.034008052200078964, + 0.07036233693361282, + -0.020811844617128372, + -0.02277393452823162, + 0.011715942062437534, + -0.04396425932645798, + 0.04939741641283035, + 0.04742231220006943, + 0.03946441411972046, + 0.016959546133875847, + 0.09189840406179428, + 0.06428908556699753, + -0.06778829544782639, + -0.02108798362314701, + -0.11320324242115021, + 0.013737211935222149, + 0.015704749152064323, + -0.039309997111558914, + -0.07558830827474594, + 0.11572253704071045, + 0.059473250061273575, + 0.10332535952329636, + 0.05039581283926964, + 0.06478851288557053, + 0.051867809146642685, + 0.07127354294061661, + 0.005845644045621157, + 0.05855298042297363, + 0.0136430524289608, + 0.014979022555053234, + 0.035225339233875275, + 0.028513628989458084, + 0.004109119065105915, + -0.02646012231707573, + -0.022390736266970634, + 0.022806713357567787, + -0.020342499017715454, + 0.03239009529352188, + 0.009461591020226479, + 0.004844589624553919, + -0.07672619819641113, + -0.042572494596242905, + 0.013466814532876015, + 0.03234691545367241, + 0.12316248565912247, + -0.08933237940073013, + -0.017932094633579254, + -0.0451095812022686, + -0.030264535918831825, + 0.014339043758809566, + 0.024557294324040413, + -0.007886260747909546, + -0.01417236402630806, + -0.03523506224155426, + -0.011404688470065594, + -0.03945878893136978, + 0.03503983095288277, + -0.11970552057027817, + -0.02639274299144745, + -0.012904963456094265, + -0.004832057747989893, + -0.05391155555844307, + -0.011259598657488823, + 0.0011700709583237767, + 0.012137792073190212, + -0.049026526510715485, + -0.006824476644396782, + -2.3723900085315108e-05, + -0.06284663826227188, + -0.02969381771981716, + -0.03869345411658287, + -0.023709360510110855, + 0.05155150964856148, + 0.018787549808621407, + 0.08550742268562317, + -0.04375246912240982, + -0.10856903344392776, + -0.08133728802204132, + 0.00464894063770771, + 0.06601083278656006, + -0.06239250674843788, + 0.053089022636413574, + 0.03356825187802315, + -0.07938089221715927, + -0.005969998426735401, + 0.08369255810976028, + 0.026586497202515602, + -0.0572102852165699, + 0.05425576865673065, + -0.10482265800237656, + 0.033481549471616745, + 0.008626260794699192, + 0.002566782757639885, + -0.07276102900505066, + -0.03369449824094772, + 0.009046408347785473, + 0.010955872014164925, + -0.08770935982465744, + 0.03759453818202019, + 0.006860995665192604, + -0.03030259907245636, + -0.11000083386898041, + -0.07874871790409088, + -0.0169244185090065, + -0.05030402913689613, + 0.023356622084975243, + 0.02523302659392357, + 0.09657134860754013, + 0.022626549005508423, + 0.0026864500250667334, + 0.015698228031396866, + -0.05194238945841789, + 0.023234106600284576, + 0.025811390951275826, + -0.020464200526475906, + 0.07697086781263351, + -2.0987279813000967e-33, + 0.04584972932934761, + 0.10017355531454086, + -0.009704964235424995, + 0.11594650149345398, + -0.017538083717226982, + -0.00018114966223947704, + -0.016614561900496483, + -0.026157671585679054, + -0.06668347120285034, + -0.0023911052849143744, + 0.07331369817256927, + 0.022535597905516624, + 0.0027438632678240538, + 0.013363628648221493, + -0.08936461806297302, + 0.05531409755349159, + 0.06247689202427864, + 0.04122046008706093, + -0.05450046807527542, + -0.010635425336658955, + -0.030910104513168335, + 0.12920160591602325, + -0.0780918225646019, + -0.008128778077661991, + 0.08901679515838623, + -0.010804965160787106, + 0.007424144074320793, + 0.03961079567670822, + 0.018524955958127975, + 0.0349370613694191, + 0.017261378467082977, + -0.005800986662507057, + -0.027446305379271507, + -0.004821771755814552, + -0.002321879379451275, + 0.10022621601819992, + -0.10916595160961151, + -0.05556168034672737, + -0.0038562454283237457, + 0.07012823224067688, + -0.0885622575879097, + -0.027162350714206696, + 0.0062151881866157055, + -0.06766323000192642, + -0.04940652847290039, + 0.11776929348707199, + 0.01945628970861435, + 0.00615719985216856, + 0.04762907326221466, + 0.11493198573589325, + -0.03764967992901802, + -0.05822768434882164, + -0.03522222116589546, + 0.03179645538330078, + 0.011285117827355862, + -0.04462794214487076, + -0.03895534947514534, + 0.09062773734331131, + 0.02451718971133232, + -0.00635432917624712, + 0.004157522693276405, + 0.08071386814117432, + 0.008980230428278446, + 0.03992288187146187, + -0.012761353515088558, + -0.0426141656935215, + -0.01922685280442238, + -0.050964515656232834, + 0.026470618322491646, + -0.030399156734347343, + -0.02265540137887001, + 0.09574229270219803, + 0.06603600084781647, + 0.05499173328280449, + -0.10790348798036575, + -0.0375404916703701, + -0.014818578027188778, + 0.025143198668956757, + -0.001616635825484991, + -0.04051407426595688, + -0.013211298733949661, + -0.057832688093185425, + -0.060606714338064194, + 0.056712232530117035, + 0.008465856313705444, + -0.022580290213227272, + 0.0204973965883255, + -0.009192102588713169, + -0.004204771015793085, + 0.019915642216801643, + 0.04778829962015152, + -0.04341508820652962, + -0.06433247774839401, + -0.0008591971127316356, + -0.10102999955415726, + -3.6324375673929237e-34, + 0.10744658857584, + -0.08683636784553528, + -0.016990110278129578, + -0.09918262809515, + -0.04870809242129326, + 0.009574930183589458, + 0.11810217052698135, + 0.025856265798211098, + -0.004257951397448778, + -0.06619279086589813, + -0.02077709138393402, + 0.027339322492480278, + 0.010473882779479027, + 0.017179125919938087, + -0.040398068726062775, + 0.047291263937950134, + -0.016832146793603897, + 0.004607760813087225, + -0.029808292165398598, + -0.0013987795682623982, + -0.06913704425096512, + 0.001067947130650282, + 0.048910319805145264, + 0.07248681783676147, + 0.04355621337890625, + -0.07435746490955353, + 0.004312512464821339, + 0.02811283990740776, + -0.02068326808512211, + 0.013098453171551228, + 0.02969507686793804, + 0.008695539087057114, + -0.005610145162791014, + 0.03531961515545845, + -0.11968637257814407, + -0.0072909165173769, + -0.09762431681156158, + 0.05191916227340698, + 0.08775729686021805, + -0.004276860039681196, + 0.04712442308664322, + 0.03194890543818474, + 0.010001826100051403, + 0.0010912410216405988, + -0.017143556848168373, + -0.012067852541804314, + 0.059114422649145126, + -0.1131807491183281, + -0.028864583000540733, + 0.055779844522476196, + 0.011942415498197079, + -0.04773456230759621, + 0.05676517263054848, + 0.006814491469413042, + 0.01920045167207718, + 0.04960102587938309, + 0.06614396721124649, + -0.06074344366788864, + 0.1037849485874176, + 0.016301600262522697, + -0.010180213488638401, + 0.0847957506775856, + 0.010103067383170128, + 0.04750200733542442, + -0.002653958508744836, + -0.06504511833190918, + -0.04851788282394409, + -0.03459956869482994, + 0.03851110860705376, + -0.04002124071121216, + 0.025179866701364517, + -0.14344733953475952, + -0.006846058648079634, + 0.016452591866254807, + -0.005423883441835642, + -0.013676098547875881, + -0.013434890657663345, + 0.04600416496396065, + -0.08426078408956528, + 0.02426310069859028, + -0.07075154781341553, + -0.008797885850071907, + -0.053803496062755585, + 0.07062152773141861, + -0.019536534324288368, + 0.05658349767327309, + 0.015462154522538185, + 0.035698048770427704, + 0.035533346235752106, + -0.07280144840478897, + -0.010639214888215065, + 0.019021056592464447, + 0.008822145871818066, + -0.017293959856033325, + -0.08168226480484009, + -1.8409687996268076e-08, + -0.09205494821071625, + -0.0501953661441803, + -0.012829167768359184, + -0.012730639427900314, + -0.00032125666621141136, + 0.0205070860683918, + 0.02954578958451748, + -0.001234360970556736, + 0.01661737821996212, + 0.10200274735689163, + 0.004423568490892649, + -0.031144650653004646, + -0.047071073204278946, + -0.08504361659288406, + 0.0628897100687027, + 0.0472697913646698, + 0.023175138980150223, + -0.018593227490782738, + -0.04049144312739372, + -0.013112740591168404, + 0.04695871099829674, + 0.021233348175883293, + 0.053889013826847076, + 0.018071046099066734, + 0.054826777428388596, + 0.042355358600616455, + -0.09194841980934143, + -0.018373671919107437, + 0.04314688220620155, + 0.06537111848592758, + -0.007397992070764303, + 0.025706082582473755, + -0.032034777104854584, + 0.012324689887464046, + -0.042273469269275665, + 0.01873750425875187, + -0.025281500071287155, + 0.00343808950856328, + -0.0011410519946366549, + 0.09532005339860916, + -0.010975106619298458, + 0.004696742165833712, + -0.01198760699480772, + 0.015334946103394032, + 0.03855122998356819, + -0.03734069690108299, + 0.08061929792165756, + -0.039233602583408356, + 0.0387444868683815, + -0.11135214567184448, + -0.03908899426460266, + -0.026654355227947235, + -0.027058470994234085, + 0.03653869777917862, + -0.1078629121184349, + -0.002455721143633127, + 0.005247616674751043, + 0.12710340321063995, + 0.010271978564560413, + -0.0400361604988575, + 0.039638929069042206, + -0.0074469177052378654, + -0.06827482581138611, + 0.06800452619791031 + ], + "address-book-tabs-bold||*new*,contacts,directory,roledex": [ + -0.017588473856449127, + -0.055069632828235626, + -0.03339056670665741, + 0.05613747611641884, + 0.005920603405684233, + -0.03314889222383499, + 0.06884392350912094, + -0.08739063143730164, + -0.024241559207439423, + -0.015592250972986221, + -0.021441182121634483, + 0.026543598622083664, + 0.04284597933292389, + -0.016404327005147934, + -0.013059118762612343, + 0.0019056829623878002, + -0.04760593920946121, + 0.037103600800037384, + 0.04017838090658188, + 0.027883248403668404, + 0.0029884392861276865, + 0.0706358477473259, + 0.048068657517433167, + -0.08450168371200562, + -0.009719692170619965, + -0.06038004159927368, + -0.003255098359659314, + -0.01668555662035942, + -0.045347534120082855, + -0.08183807879686356, + 0.08349169790744781, + 0.056002289056777954, + 0.08492883294820786, + 0.04510488733649254, + 0.08061320334672928, + 0.017917953431606293, + 0.04169664531946182, + 0.02064397931098938, + 0.045533690601587296, + 0.018173644319176674, + -0.01366331521421671, + -0.01041511632502079, + -0.014102199114859104, + -0.017315801233053207, + -0.0546129085123539, + -0.038276053965091705, + 0.037468474358320236, + -0.0354359932243824, + 0.056296586990356445, + 0.00468555698171258, + -0.017819678410887718, + -0.05887775868177414, + -0.07534173130989075, + -0.019268164411187172, + 0.02496558055281639, + 0.10444457083940506, + -0.10517137497663498, + -0.07492192834615707, + -0.05596572533249855, + -0.01001240685582161, + 0.0009831406641751528, + 0.025347400456666946, + 0.03677992895245552, + 0.008578239940106869, + -0.046507786959409714, + 0.008834282867610455, + -0.05597042664885521, + 0.052495844662189484, + -0.07575345039367676, + 0.0023629951756447554, + -0.023250384256243706, + 0.006049103569239378, + -0.06707876920700073, + 0.017827624455094337, + 0.007854900322854519, + -0.050690874457359314, + -0.045235347002744675, + 0.040995944291353226, + -0.03650343045592308, + -0.06361306458711624, + -0.01836811937391758, + -0.02086419239640236, + -0.02673429250717163, + 0.06917396187782288, + 0.021714944392442703, + 0.10386862605810165, + -0.035273317247629166, + -0.07396543025970459, + -0.0716264396905899, + -0.002977675059810281, + 0.07151708751916885, + -0.05943989381194115, + 0.03907370567321777, + 0.053781744092702866, + -0.10609414428472519, + -0.009556584991514683, + 0.08381767570972443, + 0.016930023208260536, + -0.03547314181923866, + 0.07555534690618515, + -0.07973077148199081, + 0.04726884886622429, + 0.08219020813703537, + 0.07399245351552963, + -0.058826424181461334, + -0.01852322183549404, + 0.009970977902412415, + 0.023291090503335, + -0.0861101746559143, + 0.05464920029044151, + 0.04260624200105667, + -0.04430961236357689, + -0.09274700284004211, + -0.11710655689239502, + -0.03407721593976021, + -0.03583664074540138, + 0.0013314582174643874, + 0.024915359914302826, + 0.12081894278526306, + 0.07891001552343369, + 0.04109435901045799, + -0.022117991000413895, + -0.06882134079933167, + 0.023354675620794296, + -0.012510638684034348, + 0.011187839321792126, + 0.008056934922933578, + -1.0432136756368515e-33, + 0.06449107080698013, + 0.09141505509614944, + -0.029930392280220985, + 0.10297051072120667, + 0.01954960823059082, + 0.019665950909256935, + -0.014888369478285313, + -0.02080535516142845, + -0.05401965603232384, + -0.004999921191483736, + 0.061157986521720886, + 0.01564411073923111, + -0.022802555933594704, + 0.014372673816978931, + -0.06556433439254761, + 0.037341054528951645, + 0.029011959210038185, + 0.031505972146987915, + -0.03694898262619972, + -0.03180115297436714, + -0.08729726076126099, + 0.13933829963207245, + -0.02852143906056881, + -0.0031251476611942053, + 0.08187521994113922, + -0.007172735407948494, + 0.009065347723662853, + 0.029077939689159393, + 0.0018283273093402386, + 0.03127263858914375, + 0.02588377706706524, + -0.012874593026936054, + -0.0028143308591097593, + -0.016025502234697342, + -0.052128344774246216, + 0.09436657279729843, + -0.13506822288036346, + -0.04459771141409874, + 0.009423156268894672, + 0.0687149316072464, + -0.09613364189863205, + -0.04176335036754608, + -0.009995144791901112, + -0.03475179895758629, + -0.02769526280462742, + 0.09262814372777939, + 0.0036724682431668043, + 0.028923895210027695, + 0.03715872764587402, + 0.0948914960026741, + -0.009036616422235966, + -0.056228846311569214, + -0.03956260532140732, + 0.03559592366218567, + -0.033547114580869675, + -0.048423945903778076, + -0.07660779356956482, + 0.07530022412538528, + 0.04403117671608925, + 0.02118096500635147, + -0.024901263415813446, + 0.056831926107406616, + 0.0039092423394322395, + 0.07259923964738846, + -0.05363566055893898, + -0.03447937220335007, + -0.004245858173817396, + -0.008811145089566708, + 0.027891891077160835, + -0.06824533641338348, + -0.026344740763306618, + 0.059952378273010254, + 0.06744398921728134, + 0.035840462893247604, + -0.07363110035657883, + -0.07225490361452103, + 0.004912891425192356, + -0.007179516367614269, + 0.020040228962898254, + -0.057675059884786606, + 0.031253788620233536, + -0.029420562088489532, + -0.08095628768205643, + 0.06043098866939545, + -0.00846845656633377, + -0.014084680005908012, + 0.07791159301996231, + -0.016179246827960014, + -0.0014518110547214746, + 0.039219602942466736, + 0.02378876321017742, + -0.015047391876578331, + -0.06317773461341858, + -0.037177711725234985, + -0.10234782844781876, + -1.5382260098761289e-33, + 0.09382082521915436, + -0.09283968061208725, + -0.06246333196759224, + -0.09261757880449295, + -0.0865178257226944, + 0.034055694937705994, + 0.1376318484544754, + 0.04839608073234558, + 0.0274758730083704, + -0.05153332278132439, + 0.01460969913750887, + 0.06563770771026611, + -0.008007275871932507, + -0.003393453313037753, + -0.037669532001018524, + 0.05147436633706093, + -0.056501712650060654, + 0.039831653237342834, + -0.02633831836283207, + 0.012678087688982487, + -0.03478774055838585, + 0.006519106216728687, + 0.017492560669779778, + 0.054823558777570724, + 0.06144921854138374, + -0.09193512797355652, + 0.039789099246263504, + 0.0431479848921299, + 0.01252695918083191, + -0.01188425999134779, + 0.05888906121253967, + 0.002450945321470499, + -0.004031994380056858, + 0.05465449392795563, + -0.06801123917102814, + 0.010215314105153084, + -0.11193572729825974, + 0.0369826965034008, + 0.03994356840848923, + 0.014242145232856274, + 0.003110103076323867, + 0.028274010866880417, + 0.02019350975751877, + -0.004900665953755379, + -0.03412071615457535, + 0.020109089091420174, + 0.07466262578964233, + -0.09846682101488113, + -0.0715804472565651, + 0.044802047312259674, + 0.019507158547639847, + -0.11279518157243729, + 0.04438338428735733, + -0.021826246753335, + 0.007582659833133221, + 0.07597459107637405, + 0.046871431171894073, + -0.006975742056965828, + 0.03123059868812561, + -0.01769905909895897, + -0.032390303909778595, + 0.06685321033000946, + 0.01840904913842678, + 0.07453318685293198, + -0.003174028592184186, + -0.06241213530302048, + -0.02747291699051857, + -0.03187934309244156, + 0.008291773498058319, + -0.020229071378707886, + 0.016232401132583618, + -0.1252082735300064, + -0.04636811092495918, + -0.020039385184645653, + 0.007864844053983688, + -0.02839638665318489, + -0.008787543512880802, + 0.022595878690481186, + -0.13522456586360931, + -0.010723339393734932, + -0.046130210161209106, + 0.0008755010785534978, + -0.03579675778746605, + -0.0057648541405797005, + -0.04434222728013992, + 0.04794764891266823, + 0.01862080954015255, + 0.05805893987417221, + 0.020960086956620216, + -0.03473595902323723, + 0.004170783329755068, + 0.018475661054253578, + -0.007962296716868877, + 0.006668011657893658, + -0.09706206619739532, + -2.1304622066509182e-08, + -0.10314307361841202, + -0.034468505531549454, + -0.028959501534700394, + 0.03734341636300087, + 0.028269976377487183, + -0.018055206164717674, + 0.035829752683639526, + 0.017375711351633072, + -0.0017486094729974866, + 0.04500773176550865, + 0.045139528810977936, + 0.019163653254508972, + -0.02479727938771248, + -0.06699501723051071, + 0.06611654907464981, + 0.10392597317695618, + 0.017517555505037308, + -0.01921916753053665, + -0.029500912874937057, + -0.027778858318924904, + 0.05035959556698799, + 0.07139026373624802, + 0.07940453290939331, + 0.04082562029361725, + 0.057369522750377655, + 0.04671938717365265, + -0.10632635653018951, + -0.03142194077372551, + 0.020139571279287338, + 0.06619944423437119, + 0.016127297654747963, + -0.0009198982152156532, + -0.018161587417125702, + -0.02147958055138588, + -0.022300252690911293, + -0.018390599638223648, + -0.03813469782471657, + -0.023081164807081223, + -0.016097841784358025, + 0.057984791696071625, + 0.0069651296362280846, + -0.006246111821383238, + -0.02070574462413788, + 0.010219641029834747, + -0.03820732980966568, + -0.046967510133981705, + 0.019325342029333115, + 0.0021944812033325434, + 0.042709339410066605, + -0.11835821717977524, + -0.006997016724199057, + 0.02442586049437523, + -0.006834408268332481, + -0.0017505750292912126, + -0.11001557856798172, + 0.03236778452992439, + 0.026855306699872017, + 0.14058558642864227, + 0.036637403070926666, + -0.03394298627972603, + 0.040702350437641144, + 0.03400535136461258, + -0.031447988003492355, + 0.0727628841996193 + ], + "air-traffic-control-bold||airport,travel,transportation,buildings": [ + 0.05822962895035744, + -0.06219128519296646, + -0.030876073986291885, + 0.09275869280099869, + 0.03879780322313309, + 0.009017986245453358, + 0.07101955264806747, + -0.024671725928783417, + -0.06428327411413193, + 0.03158086910843849, + 0.036360420286655426, + -0.0037121805362403393, + -0.005526880733668804, + -0.028691241517663002, + -0.01332051120698452, + 0.06687600910663605, + 0.05892249941825867, + -0.04300430044531822, + -0.014366606250405312, + 0.017186367884278297, + 0.050962768495082855, + 0.018424004316329956, + 0.040048547089099884, + 0.007009564898908138, + 0.02900436893105507, + 0.04998575896024704, + 0.007833646610379219, + 0.05132392793893814, + 0.030209805816411972, + -0.09382879734039307, + -0.008374406024813652, + -0.0007201172993518412, + 0.05633574351668358, + 0.05549868568778038, + -0.01770579069852829, + -0.039564985781908035, + 0.061619751155376434, + -0.024708740413188934, + 0.0731407105922699, + -0.013075688853859901, + -0.024576421827077866, + -0.05448131635785103, + 0.0007009603432379663, + 0.04255424439907074, + -0.061719659715890884, + -0.03081219084560871, + -0.008353115990757942, + -0.009320415556430817, + 0.043471526354551315, + 0.013720998540520668, + 0.023467455059289932, + -0.08645173907279968, + -0.054101888090372086, + 0.0024516431149095297, + 0.05494717136025429, + 0.009366484358906746, + -0.06509144604206085, + 0.024170607328414917, + 0.0304475799202919, + -0.06568647921085358, + -0.05870514735579491, + 0.01322350837290287, + -0.033270835876464844, + 0.07811165601015091, + -0.012285456992685795, + 0.012411373667418957, + -0.06494667381048203, + 0.017401963472366333, + 0.006540419068187475, + -0.030977625399827957, + -0.009766640141606331, + -0.039883892983198166, + -0.005615785252302885, + -0.0120540801435709, + 0.04028492048382759, + -0.029366737231612206, + 0.028684185817837715, + -0.014868718571960926, + -0.03959845006465912, + -0.07003086805343628, + 0.07391875237226486, + -0.03640646114945412, + -0.08482826501131058, + 0.016360925510525703, + -0.02061411552131176, + -0.014753473922610283, + -0.06989886611700058, + -0.05427747964859009, + 0.030347049236297607, + 0.002618534257635474, + -0.039555370807647705, + -0.05201452970504761, + 0.06636565923690796, + -0.03735673800110817, + -0.050860144197940826, + 0.026411816477775574, + -0.015040487051010132, + -0.06542418152093887, + -0.035158008337020874, + 0.04472576081752777, + 0.06448622792959213, + 0.06527138501405716, + 0.04053796827793121, + 0.05088464915752411, + -0.04509170725941658, + -0.030826028436422348, + -0.008457059040665627, + 0.010499982163310051, + 0.007715181913226843, + -0.015432627871632576, + -0.013965839520096779, + -0.044765621423721313, + -0.049322400242090225, + -0.050842635333538055, + -0.021283989772200584, + 0.033803969621658325, + -0.03905562311410904, + -0.0603865347802639, + 0.06889038532972336, + -0.008861834183335304, + -0.09823241829872131, + -0.08029977977275848, + 0.056703854352235794, + 0.0029994938522577286, + -0.00955531932413578, + -0.08279648423194885, + 0.011629296466708183, + -5.0009078207551655e-33, + -0.05191933363676071, + 0.0017413344467058778, + -0.04422922432422638, + 0.15543580055236816, + 0.029801560565829277, + -0.010891098529100418, + -0.08676477521657944, + -0.03631993755698204, + 0.012308226898312569, + 0.06726417690515518, + 0.02529360167682171, + 0.04601813480257988, + -0.04317697882652283, + 0.04415466636419296, + 0.1257079839706421, + -0.04425801336765289, + -0.028745826333761215, + -0.042201459407806396, + -0.07210806757211685, + 0.03336402773857117, + -0.05186876654624939, + -0.011091694235801697, + -0.05710646137595177, + -0.037588391453027725, + 0.08606874942779541, + -0.020606346428394318, + -0.0053376853466033936, + 0.03286328539252281, + 0.02163122408092022, + 0.051619257777929306, + 0.0088902423158288, + 0.14237241446971893, + -0.011403686366975307, + 0.04662657901644707, + -0.07061626762151718, + 0.04738355800509453, + -0.04981061443686485, + -0.05622690171003342, + -0.021237052977085114, + -0.0012745059793815017, + -0.1123148649930954, + -0.07419335842132568, + -0.09367960691452026, + 0.03548488765954971, + 0.007821643725037575, + 0.09304577857255936, + -0.02560897171497345, + -0.027303844690322876, + 0.018890108913183212, + 0.051692184060811996, + -0.08401955664157867, + 0.022687338292598724, + -0.06938617676496506, + -0.03156933933496475, + 0.06745848804712296, + -0.012938977219164371, + -0.033516909927129745, + 0.06601981073617935, + 0.020378489047288895, + 0.07452844828367233, + -0.021570716053247452, + 0.021318379789590836, + -0.007869386114180088, + 0.03653198853135109, + 0.04003087803721428, + 0.0568736307322979, + -0.02724730223417282, + 0.01315190177410841, + 0.11284458637237549, + 0.019695419818162918, + -0.014447085559368134, + 0.004093097988516092, + 0.05016458407044411, + 0.10298089683055878, + 0.045470599085092545, + 0.0026954070199280977, + -0.08485482633113861, + 0.02592741698026657, + -0.07106924057006836, + 0.02066412754356861, + -0.10483573377132416, + 0.0780937448143959, + 0.0008824176620692015, + 0.07370653003454208, + 0.11538085341453552, + -0.0752108097076416, + 0.040996719151735306, + -0.06324994564056396, + -0.07762370258569717, + 0.01333133690059185, + -0.124881312251091, + 0.046927452087402344, + 0.008462397381663322, + 0.020681291818618774, + -0.10780424624681473, + 8.78206043863073e-34, + 0.06258422881364822, + 0.048614781349897385, + -0.08783155679702759, + -0.08166956901550293, + -0.08809288591146469, + 0.03889848291873932, + 0.020491130650043488, + -0.02435714565217495, + 0.019333651289343834, + 0.07751210033893585, + -0.06384502351284027, + -0.004801425151526928, + 0.044941727072000504, + -0.0695485919713974, + -0.013054469600319862, + -0.09255048632621765, + 0.044622890651226044, + -0.06805015355348587, + -0.07314466685056686, + 0.05380959063768387, + -0.07047552615404129, + -0.031435076147317886, + -0.05787045136094093, + 0.0078620919957757, + -0.05419513210654259, + 0.04506866633892059, + -0.0357278436422348, + 0.03763361647725105, + -0.037560537457466125, + 0.0277519803494215, + -0.11880040168762207, + 0.04868360236287117, + 0.07891404628753662, + 0.09755893051624298, + -0.07967058569192886, + 0.049257755279541016, + 0.07201051712036133, + -0.003235356416553259, + 0.0019193157786503434, + -0.05430680885910988, + -0.00992780551314354, + -0.011658632196485996, + 0.045440368354320526, + 0.013036224991083145, + 0.003776963334530592, + -0.0123709412291646, + -0.1022234782576561, + -0.03494291007518768, + -0.09328668564558029, + -0.06592554599046707, + 0.03043125569820404, + -0.012344962917268276, + -0.07777931541204453, + 0.046289123594760895, + 0.05739840120077133, + 0.08594787120819092, + 0.045255932956933975, + -0.01827438361942768, + 0.025624720379710197, + 0.02936641313135624, + 0.023870965465903282, + 0.042774081230163574, + -0.07837145775556564, + 0.06820487231016159, + -0.02191571332514286, + -0.0599009245634079, + 0.06754244118928909, + -0.024749789386987686, + 0.0842670127749443, + -0.0022628442384302616, + 0.03066086955368519, + -0.0066410936415195465, + -0.0024744304828345776, + 0.08439283072948456, + 0.0035031179431825876, + -0.07193019986152649, + 0.11055062711238861, + 0.09583338350057602, + -0.0060380431823432446, + 0.022671297192573547, + -0.023357927799224854, + 0.009763957932591438, + -0.03823576122522354, + 0.05494553595781326, + -0.015428966842591763, + 0.0611383393406868, + -0.05374779552221298, + -0.03851605951786041, + 0.010801730677485466, + -0.0012461591977626085, + -0.052952952682971954, + 0.05559718981385231, + -0.030631376430392265, + -0.04717585816979408, + -0.027653712779283524, + -2.218784445062738e-08, + -0.0259596798568964, + 0.04099568724632263, + 0.007366044446825981, + -0.060680508613586426, + -0.037887752056121826, + -0.032886311411857605, + 0.03489527478814125, + -0.03388417512178421, + -0.07881027460098267, + -0.0035169797483831644, + 0.0060019842348992825, + 0.0611102394759655, + -0.06532944738864899, + 0.044119942933321, + 0.012202189303934574, + -0.02784319594502449, + -0.10552921146154404, + 0.037623852491378784, + -0.03351408988237381, + -0.06822025775909424, + 0.0064438385888934135, + 0.02619517408311367, + -0.05353587120771408, + 0.023370856419205666, + 0.04724346846342087, + 0.057139065116643906, + -0.04215604439377785, + -0.0047376323491334915, + 0.07105332612991333, + 0.08136331290006638, + 0.004290775395929813, + 0.06901536136865616, + -0.06726496666669846, + -0.025806069374084473, + -0.04676781967282295, + -0.032451607286930084, + 0.034164588898420334, + -0.05213219299912453, + 0.0016791766975075006, + 0.061751846224069595, + -0.017171695828437805, + -0.020991509780287743, + -0.03393813595175743, + -0.013779198750853539, + 0.057252395898103714, + 0.05284900963306427, + 0.028090836480259895, + 0.011342928744852543, + -0.05102381482720375, + -0.08076871186494827, + -0.03225139528512955, + 0.007604644633829594, + 0.020740283653140068, + 0.03768087550997734, + 0.005375115666538477, + -0.061195921152830124, + 0.013116107322275639, + 0.0010093686869367957, + -0.014480753801763058, + 0.02085535228252411, + 0.08970078825950623, + 0.08112156391143799, + -0.020718352869153023, + 0.037502773106098175 + ], + "airplane-bold||vehicles,airports,flights,flying,planes,transit,transportation,traveling": [ + 0.08487144857645035, + -0.05599949136376381, + -0.04809682443737984, + 0.07393423467874527, + 0.016286959871649742, + -0.01221776008605957, + 0.08626189827919006, + -0.02795371226966381, + -0.05148179084062576, + 0.03420642018318176, + 0.03030848130583763, + 0.02550819143652916, + 0.002884506480768323, + 0.019027220085263252, + -0.03834422305226326, + 0.06859687715768814, + 0.04735507443547249, + -0.044173214584589005, + -0.03771502897143364, + 0.01989467814564705, + 0.024495963007211685, + 0.053206250071525574, + 0.015029573813080788, + 0.06502225250005722, + 0.04941467195749283, + 0.0355348065495491, + 0.04270695149898529, + 0.026777274906635284, + 0.0028696209192276, + -0.07568439096212387, + -0.043099891394376755, + 0.07311946153640747, + -0.0037423225585371256, + 0.07753943651914597, + 0.016255000606179237, + -0.03482162207365036, + 0.01619621366262436, + -0.016732944175601006, + 0.08939710259437561, + -0.02453538402915001, + 0.00354108982719481, + -0.053378626704216, + 0.01768483780324459, + 0.04479297623038292, + -0.01911774091422558, + -0.075467050075531, + 0.0007366330246441066, + -0.03584929183125496, + 0.04450538381934166, + -0.0003217484918422997, + -0.012362606823444366, + -0.09013121575117111, + -0.06991887837648392, + 0.038430675864219666, + 0.01648849993944168, + 0.008420098572969437, + -0.09859670698642731, + -0.004404045641422272, + -0.0119287995621562, + -0.01755315251648426, + -0.010244379751384258, + 0.042290229350328445, + 0.013468153774738312, + 0.06488803029060364, + -0.008968079462647438, + -0.007006428204476833, + -0.04323425143957138, + -0.008929606527090073, + -0.04482090100646019, + -0.022146912291646004, + 0.009921849705278873, + 0.04213442653417587, + -0.018059132620692253, + 0.054765183478593826, + 0.002471126150339842, + -0.0398724339902401, + 0.08232168108224869, + 0.002406282117590308, + -0.03324168547987938, + -0.04887338727712631, + -0.025421861559152603, + -0.024097153916954994, + -0.09855278581380844, + -0.007641130592674017, + 0.01704287715256214, + 0.01814735122025013, + -0.08884455263614655, + -0.06407420337200165, + -0.08408822864294052, + -0.027219442650675774, + -0.06057737022638321, + -0.07889524102210999, + 0.09487597644329071, + 0.009726080112159252, + -0.09608772397041321, + 0.040847014635801315, + 0.011752458289265633, + -0.054343391209840775, + -0.003148015821352601, + 0.037225715816020966, + 0.06713081896305084, + 0.06904105097055435, + 0.09509891271591187, + 0.07406512647867203, + -0.10148745775222778, + 0.005218504462391138, + 0.011339652352035046, + -0.052840255200862885, + 0.0037288356106728315, + -0.06468205899000168, + -0.07483036816120148, + -0.027481576427817345, + -0.009608150459825993, + -0.0434226356446743, + -0.08237059414386749, + -0.01698783040046692, + -0.06696003675460815, + -0.015761028975248337, + 0.09587432444095612, + -0.026154501363635063, + -0.08083368092775345, + -0.023046139627695084, + 0.0835554450750351, + 0.020420804619789124, + -0.030694924294948578, + -0.025620529428124428, + 0.03165266290307045, + -5.552581278591481e-33, + -0.002235003747045994, + -0.011704758740961552, + -0.011898440308868885, + 0.1220162957906723, + 0.010395500808954239, + -0.027937479317188263, + -0.09863217920064926, + -0.03297850117087364, + -0.02755117602646351, + 0.0517658069729805, + -0.0500485934317112, + 0.038657624274492264, + -0.0009188091498799622, + 0.030426453799009323, + 0.13759776949882507, + 0.017233893275260925, + -0.03007843904197216, + -0.08196261525154114, + -0.05375933647155762, + -0.023561185225844383, + -0.047296132892370224, + -0.004657643847167492, + -0.036751918494701385, + -0.045973073691129684, + 0.044666241854429245, + -0.03175392374396324, + -0.01441456750035286, + -0.07261845469474792, + -0.012458224780857563, + 0.06599874049425125, + -0.01568642258644104, + 0.1635012924671173, + 0.012613357976078987, + 0.010283496230840683, + -0.07656139135360718, + -0.015325892716646194, + -0.044496167451143265, + -0.040672704577445984, + -0.04574524238705635, + -0.016519827768206596, + -0.08155276626348495, + -0.06947028636932373, + -0.09637774527072906, + 0.06390874087810516, + 0.03481897711753845, + 0.13636083900928497, + -0.05407994985580444, + -0.026079503819346428, + 0.061226386576890945, + 0.07822978496551514, + -0.08634541183710098, + -0.014563851058483124, + 0.013823735527694225, + -0.08272560685873032, + -0.0036649415269494057, + -0.0018642810173332691, + 0.032998088747262955, + 0.0741850733757019, + 0.025690415874123573, + 0.013100874610245228, + -0.02480773627758026, + 0.02687976323068142, + 0.00924919918179512, + -0.004278421867638826, + 0.05792786926031113, + 0.0888121947646141, + -0.016631849110126495, + 0.024194153025746346, + 0.05833364650607109, + 0.043521422892808914, + -0.015511562116444111, + 0.04629908874630928, + 0.027462461963295937, + 0.04182865470647812, + 0.08493632078170776, + -0.017793934792280197, + -0.0730854868888855, + -0.047396935522556305, + -0.026981236413121223, + 0.001990747405216098, + -0.10243178904056549, + 0.04140496626496315, + -0.01486905012279749, + 0.09033678472042084, + 0.06296804547309875, + -0.026225779205560684, + -0.006657504942268133, + -0.10626564919948578, + 0.05071638152003288, + 0.0008211453096009791, + -0.13876381516456604, + 0.0015675814356654882, + -0.00604168651625514, + -0.019837191328406334, + -0.08561227470636368, + 1.1618392390630596e-33, + 0.08044435828924179, + 0.028999462723731995, + -0.09430234879255295, + -0.046423282474279404, + -0.022317031398415565, + -0.012263084761798382, + 0.016464004293084145, + 0.03372485935688019, + 0.0363842248916626, + 0.019430868327617645, + -0.05628020316362381, + -0.010409117676317692, + -0.01735687628388405, + -0.06393776834011078, + 0.054446760565042496, + -0.05686734989285469, + 0.010991005226969719, + 0.018349016085267067, + -0.05074465274810791, + 0.03985386714339256, + -0.030266107991337776, + -0.0276196226477623, + -0.08057304471731186, + 0.004517208319157362, + 0.0014994865050539374, + 0.0373089574277401, + 0.004969597328454256, + 0.02119550295174122, + -0.05047682672739029, + -0.0008941790438257158, + -0.04184167459607124, + 0.01304095983505249, + 0.11104615032672882, + 0.06197551637887955, + -0.09816842526197433, + 0.06568484008312225, + 0.04351576045155525, + -0.004220547620207071, + 0.01832558773458004, + -0.05740144103765488, + -0.01768416352570057, + -0.016919022426009178, + 0.05790706351399422, + 0.03914578631520271, + 0.020524702966213226, + -0.03689230605959892, + -0.09267707914113998, + -0.02553623355925083, + -0.014233028516173363, + -0.01820201799273491, + 0.040632911026477814, + -0.018327750265598297, + -0.0332176499068737, + 0.06185072660446167, + 0.07007744908332825, + 0.034100040793418884, + 0.008204380050301552, + -0.03289614990353584, + 0.0548098124563694, + -0.012052621692419052, + -0.06945627927780151, + 0.015384341590106487, + -0.0371219739317894, + 0.0420234352350235, + -0.05181483179330826, + -0.13771481812000275, + 0.03809010237455368, + 0.0031936769373714924, + 0.04506535455584526, + -0.037468526512384415, + 0.053155604749917984, + -0.016581369563937187, + -0.01462211087346077, + 0.10223285108804703, + -0.021649248898029327, + -0.04338432475924492, + 0.07461274415254593, + 0.09681347757577896, + 0.014525589533150196, + 0.043799370527267456, + 0.019970566034317017, + -0.05762366205453873, + -0.0139485327526927, + 0.06129561737179756, + -0.018286369740962982, + 0.04593723267316818, + -0.0013684920268133283, + -0.05744847282767296, + -0.011178196407854557, + -0.0063601392321288586, + 0.001269898028112948, + 0.06362152844667435, + -0.0276507381349802, + -0.05889525264501572, + -0.06198398768901825, + -2.3278605709720068e-08, + 0.030588632449507713, + 0.03099154680967331, + -0.02651740424335003, + -0.0027257006149739027, + 0.020418018102645874, + -0.04283357039093971, + 0.03388700261712074, + 0.005715593695640564, + -0.0782017931342125, + 0.01975787617266178, + 0.023418443277478218, + 0.028105583041906357, + -0.06781364232301712, + 0.04552865028381348, + 0.0014178069541230798, + 0.03207740560173988, + -0.08941607922315598, + 0.037079546600580215, + -0.01946300081908703, + -0.08067097514867783, + -0.07748150825500488, + 0.015835078433156013, + 0.0038235755637288094, + 0.014635276980698109, + 0.03331281989812851, + 0.034798502922058105, + -0.08057364076375961, + -0.0659135952591896, + 0.14194509387016296, + 0.01863176003098488, + -0.01879943534731865, + 0.08986824750900269, + -2.394258899585111e-06, + -0.017212748527526855, + -0.07466094195842743, + -0.027841471135616302, + 0.04749719798564911, + -0.040604814887046814, + -0.010523267090320587, + 0.037690576165914536, + 0.031590066850185394, + 0.007185071706771851, + -0.011073432862758636, + -0.03798382729291916, + 0.10255640745162964, + 0.002068310510367155, + 0.02861678972840309, + -0.0551522932946682, + -0.05060984194278717, + -0.10726702958345413, + -0.025400549173355103, + 0.030030550435185432, + -0.004021996166557074, + 0.09395486861467361, + -0.006867995485663414, + -0.023571278899908066, + -0.0106341652572155, + 0.02038613148033619, + 0.01442469097673893, + 0.008395408280193806, + 0.12451910227537155, + 0.06274642795324326, + 0.0047692544758319855, + 0.024903882294893265 + ], + "airplane-in-flight-bold||vehicles,airports,flights,flying,planes,transit,transportation,traveling,arrival": [ + 0.06410330533981323, + -0.04969300329685211, + -0.05536134913563728, + 0.06061315909028053, + 0.012195640243589878, + -0.017513245344161987, + 0.08660392463207245, + -0.00427262345328927, + -0.03360501304268837, + 0.05300220474600792, + 0.028988312929868698, + 0.01646132580935955, + 0.011734269559383392, + 0.004311955068260431, + -0.023185674101114273, + 0.06853242218494415, + 0.05331255868077278, + -0.06846048682928085, + -0.03493203595280647, + 0.016547294333577156, + 0.030460819602012634, + 0.04120738059282303, + -0.0023623486049473286, + 0.07305415719747543, + 0.061088837683200836, + 0.014267075806856155, + 0.01698722317814827, + 0.03286437690258026, + -0.009706770069897175, + -0.09410621225833893, + -0.05107780545949936, + 0.08885543793439865, + 0.012189792469143867, + 0.07835329324007034, + 0.028619932010769844, + -0.016299743205308914, + 0.02618400938808918, + -0.010604572482407093, + 0.09349851310253143, + -0.04564903676509857, + 0.0004119998193345964, + -0.04948628693819046, + 0.0171074029058218, + 0.059737835079431534, + -0.003080341499298811, + -0.07517347484827042, + -0.0056579336524009705, + -0.025550419464707375, + 0.04024296626448631, + 0.01811240427196026, + -0.04642925783991814, + -0.06478716433048248, + -0.06721029430627823, + 0.03378692641854286, + 0.01786176860332489, + 0.029557839035987854, + -0.07806698232889175, + -0.03361896052956581, + -0.01421948429197073, + -0.02969426102936268, + -0.029227374121546745, + 0.04747285693883896, + 0.023541932925581932, + 0.06720920652151108, + -0.05299440771341324, + -0.008324271067976952, + -0.02698640152812004, + -0.004408533219248056, + -0.05130227282643318, + -0.015944870188832283, + 0.0288675669580698, + 0.0643039271235466, + 0.0037107523530721664, + 0.08142643421888351, + 0.016156405210494995, + -0.03463141992688179, + 0.0629357099533081, + 0.0016158022917807102, + -0.05076305568218231, + -0.04124589264392853, + 0.028116775676608086, + -0.0226143728941679, + -0.11200270056724548, + -0.02340402826666832, + 0.022091729566454887, + 0.01404806412756443, + -0.06404764950275421, + -0.05364777147769928, + -0.0702555775642395, + -0.026727275922894478, + -0.08032844215631485, + -0.0968320369720459, + 0.08418241143226624, + 0.019627945497632027, + -0.10792567580938339, + 0.031058933585882187, + 0.015078231692314148, + -0.058181192725896835, + 0.03578653186559677, + 0.03827016428112984, + 0.06281664222478867, + 0.061211273074150085, + 0.05887257680296898, + 0.07164940237998962, + -0.10116101801395416, + -0.01279503758996725, + 0.01469037588685751, + -0.05157898738980293, + 0.004326528403908014, + -0.07480466365814209, + -0.06574007868766785, + -0.05563934147357941, + 0.026412317529320717, + -0.04790306091308594, + -0.07708647102117538, + 0.010694568045437336, + -0.0680888444185257, + -0.009218242019414902, + 0.11303682625293732, + -0.02764424867928028, + -0.08433461934328079, + -0.0007306378101930022, + 0.08204346895217896, + 0.0264591034501791, + -0.06355568766593933, + -0.03406300023198128, + 0.05375951528549194, + -6.2173181911937e-33, + -0.01063583604991436, + -0.04653258994221687, + -0.021745622158050537, + 0.10517369210720062, + 0.010525446385145187, + -0.03033500723540783, + -0.10293067246675491, + -0.03057628683745861, + -0.023272257298231125, + 0.04293002560734749, + -0.06444166600704193, + 0.0065406016074121, + 0.02245328575372696, + 0.02158820442855358, + 0.12233497202396393, + 0.02854996547102928, + -0.010581501759588718, + -0.07018794864416122, + -0.043200377374887466, + -0.0186994019895792, + -0.06654030084609985, + -0.000855137303005904, + -0.07827639579772949, + -0.03651221841573715, + 0.06065267696976662, + -0.013307776302099228, + -0.024189284071326256, + -0.07698812335729599, + -0.026617098599672318, + 0.06189093366265297, + 0.0034180362708866596, + 0.14719441533088684, + -0.004653181880712509, + 0.023171372711658478, + -0.07764438539743423, + -0.015549438074231148, + -0.021132932975888252, + -0.046118736267089844, + -0.041815828531980515, + -0.020278332754969597, + -0.10087668150663376, + -0.055045850574970245, + -0.09745072573423386, + 0.05386333167552948, + -0.012241804972290993, + 0.12039799243211746, + -0.07968106865882874, + -0.017507491633296013, + 0.06897733360528946, + 0.0671718642115593, + -0.09923779964447021, + -0.00689998734742403, + 0.023640882223844528, + -0.07649284601211548, + -0.0015560659812763333, + 0.018267549574375153, + 0.04778533801436424, + 0.05241154134273529, + 0.040498919785022736, + 0.016799822449684143, + -0.021793797612190247, + 0.004070815164595842, + 0.005142556503415108, + -0.01235274225473404, + 0.044212501496076584, + 0.0576077364385128, + -0.02368776686489582, + -0.006304572802037001, + 0.05425146222114563, + 0.03826582804322243, + -0.05270961672067642, + 0.030880870297551155, + 0.01425877120345831, + 0.04309726133942604, + 0.09086474031209946, + -0.012535548768937588, + -0.06010274216532707, + -0.06482904404401779, + -0.03895191103219986, + 0.008365152403712273, + -0.07489708065986633, + 0.04251840338110924, + -0.0020241891033947468, + 0.09342020750045776, + 0.051874276250600815, + -0.005388612858951092, + -0.005449127405881882, + -0.09824992716312408, + 0.044508833438158035, + 0.006558211985975504, + -0.13856562972068787, + 0.017758673056960106, + -0.00137777638155967, + -0.026349710300564766, + -0.08039038628339767, + 1.8294016543755713e-33, + 0.08291196078062057, + 0.056261155754327774, + -0.09055234491825104, + -0.046045415103435516, + -0.017639441415667534, + 0.011524424888193607, + 0.024009179323911667, + 0.03766258433461189, + 0.04612315446138382, + 0.003410221077501774, + -0.06754297763109207, + -0.0015587606467306614, + 0.0002741641364991665, + -0.06095487251877785, + 0.031422898173332214, + -0.08013899624347687, + 0.008323132060468197, + 0.025468554347753525, + -0.015046711079776287, + 0.054315805435180664, + 0.003860616125166416, + -0.06611564010381699, + -0.06980789452791214, + -0.009294623509049416, + 0.006473962217569351, + 0.04320812597870827, + 0.019357100129127502, + 0.05015450343489647, + -0.06590758264064789, + -0.0022021885961294174, + -0.04374636709690094, + 0.019772004336118698, + 0.11603816598653793, + 0.0627843588590622, + -0.09856772422790527, + 0.06333049386739731, + 0.0691937580704689, + -0.024769218638539314, + -0.026465270668268204, + -0.047732628881931305, + -0.03342897817492485, + 0.003936609718948603, + 0.05998046696186066, + 0.04892827570438385, + 0.008131853304803371, + -0.03568670153617859, + -0.09592136740684509, + -0.017886487767100334, + -0.024354923516511917, + 0.001539410324767232, + 0.006270192097872496, + -0.015920201316475868, + -0.04562263935804367, + 0.05286075174808502, + 0.07688654959201813, + 0.04068423807621002, + 0.013662302866578102, + -0.0321350134909153, + 0.0584959015250206, + -0.0012631355784833431, + -0.07483766227960587, + -0.015023056417703629, + -0.029743283987045288, + 0.023115504533052444, + -0.07352195680141449, + -0.13027282059192657, + 0.04551257565617561, + 0.016875168308615685, + 0.05428292229771614, + -0.03765590116381645, + 0.025970689952373505, + -0.022472836077213287, + -0.02224765717983246, + 0.10711659491062164, + -0.01600739359855652, + -0.050528090447187424, + 0.04893224686384201, + 0.07992185652256012, + 0.0191899873316288, + 0.028739383444190025, + -0.005244647618383169, + -0.054307468235492706, + -0.00982447899878025, + 0.07038599997758865, + -0.023755067959427834, + 0.03565743565559387, + 0.005955973640084267, + -0.03339311480522156, + -0.013730166479945183, + -0.01654852367937565, + 0.010995996184647083, + 0.07329952716827393, + 0.008789384737610817, + -0.0595601424574852, + -0.046750251203775406, + -2.488723005455995e-08, + 0.029828857630491257, + 0.022245004773139954, + -0.011374668218195438, + 0.009889607317745686, + 0.027126986533403397, + -0.032439347356557846, + 0.04471934586763382, + 0.02249131165444851, + -0.07102237641811371, + 0.016364427283406258, + 0.01893014647066593, + 0.025419967249035835, + -0.04960101470351219, + 0.04355302080512047, + 0.003121458226814866, + 0.05799086391925812, + -0.08738372474908829, + 0.02811676450073719, + -0.029520532116293907, + -0.08186867088079453, + -0.06954022496938705, + 0.04551894962787628, + 0.010766269639134407, + -0.004085160791873932, + 0.029709557071328163, + 0.03856045752763748, + -0.10960818827152252, + -0.06160586327314377, + 0.13749843835830688, + 0.022614525631070137, + -0.04319481551647186, + 0.09812664985656738, + -0.001596845337189734, + -0.02301829308271408, + -0.06178482621908188, + -0.02443515509366989, + 0.04474836215376854, + -0.01879313588142395, + -0.001232145237736404, + 0.0027525881305336952, + 0.02683148719370365, + -0.0009081546450033784, + -0.014912938699126244, + -0.04414040967822075, + 0.10766778141260147, + 0.0002891671610996127, + 0.022073296830058098, + -0.04057419300079346, + -0.06702511757612228, + -0.09896816313266754, + -0.02237563021481037, + 0.04771532490849495, + -0.021075397729873657, + 0.08392409980297089, + 0.007489663083106279, + -0.0037010381929576397, + -0.008727838285267353, + -0.002125269267708063, + 0.03003140538930893, + 0.01133683416992426, + 0.09662133455276489, + 0.07979977130889893, + -0.0016443714266642928, + 0.031623195856809616 + ], + "airplane-landing-bold||vehicles,airports,flights,flying,planes,transit,transportation,traveling,arrival": [ + 0.09448830783367157, + -0.05593610927462578, + -0.04180101305246353, + 0.048793379217386246, + 0.01303776167333126, + -0.025331446900963783, + 0.08696544170379639, + 0.014681371860206127, + -0.03808438032865524, + 0.02585485577583313, + -0.0009323636768385768, + 0.03696470335125923, + -0.007127746939659119, + 0.039608560502529144, + -0.047945212572813034, + 0.05152247101068497, + 0.016560407355427742, + -0.053668063133955, + -0.04449477046728134, + 0.024963168427348137, + 0.041718658059835434, + 0.04523569718003273, + -0.00883410219103098, + 0.04285946488380432, + 0.07386479526758194, + 0.023853318765759468, + 0.05342430621385574, + 0.007134017534554005, + 0.012043406255543232, + -0.0894765853881836, + -0.03535328805446625, + 0.12227988243103027, + 0.00465273205190897, + 0.05774398893117905, + 0.04172300919890404, + -0.013137844391167164, + 0.009632619097828865, + -0.02452421933412552, + 0.0911518931388855, + -0.013327869586646557, + 0.008506248705089092, + -0.08781301230192184, + 0.062247492372989655, + 0.05657243728637695, + 0.03818492218852043, + -0.05432291701436043, + -0.006069450173527002, + 0.0013876332668587565, + 0.03385770320892334, + 0.04106292128562927, + 0.01442680973559618, + -0.09137682616710663, + -0.03173054754734039, + 0.03928728401660919, + 0.005547798704355955, + 0.042093370109796524, + -0.08644869178533554, + -0.03356413170695305, + 0.003663058392703533, + -0.03561117500066757, + 0.006605383474379778, + 0.03833604231476784, + 0.009103056974709034, + 0.019865732640028, + -0.021535247564315796, + -0.016797862946987152, + -0.04088602960109711, + -0.04855123162269592, + -0.006771175656467676, + 0.022192412987351418, + 0.0037679860834032297, + 0.05476188659667969, + -0.014169675298035145, + 0.05285201594233513, + 0.008000883273780346, + -0.0669742301106453, + 0.05288113281130791, + 0.029419729486107826, + -0.043972987681627274, + -0.08427301794290543, + 0.024651769548654556, + -0.014220249839127064, + -0.08565101027488708, + -0.015846841037273407, + 0.0017325744265690446, + 0.030607273802161217, + -0.04419834911823273, + -0.02928418479859829, + -0.0487825870513916, + -0.026070859283208847, + -0.0816669762134552, + -0.09148762375116348, + 0.08591069281101227, + 0.011700170114636421, + -0.14945019781589508, + 0.04122139886021614, + 0.015026263892650604, + -0.10306607186794281, + 0.01584657095372677, + 0.028787491843104362, + 0.0665704607963562, + 0.05558006837964058, + 0.07599835097789764, + 0.054925285279750824, + -0.07797276228666306, + -0.03992214426398277, + -0.026091318577528, + -0.0582229308784008, + 0.010799395851790905, + -0.05324815213680267, + -0.052312299609184265, + -0.06089309602975845, + -0.014315451495349407, + -0.00905680377036333, + -0.07562227547168732, + 0.0011205603368580341, + -0.07751884311437607, + -0.039465829730033875, + 0.042648281902074814, + -0.06930376589298248, + -0.08149439841508865, + 0.033090345561504364, + 0.08726204186677933, + 0.02946142479777336, + -0.05183618143200874, + -0.09070855379104614, + 0.037128809839487076, + -5.664928416487352e-33, + -0.005353921093046665, + -0.040538690984249115, + -0.030049271881580353, + 0.053798649460077286, + 0.03623669221997261, + -0.08459274470806122, + -0.1103397086262703, + -0.04502514377236366, + -0.00451797666028142, + 0.045805905014276505, + -0.059907715767621994, + -0.005748310126364231, + 0.04016054421663284, + -0.010026264935731888, + 0.11078017950057983, + 0.027946505695581436, + -0.01765446737408638, + -0.0692269429564476, + -0.05098911002278328, + -0.017695782706141472, + -0.033981550484895706, + 0.02785508893430233, + -0.0706346333026886, + -0.026434166356921196, + 0.08564610034227371, + -0.05757784843444824, + -0.04380139335989952, + -0.04852287471294403, + -0.010021795518696308, + 0.044140368700027466, + 0.004486163146793842, + 0.13833992183208466, + 0.04018963873386383, + 0.0035410141572356224, + -0.06141055375337601, + -0.020189112052321434, + -0.011073869653046131, + -0.04644240811467171, + -0.06040973216295242, + -0.0190679170191288, + -0.08515287190675735, + -0.08028480410575867, + -0.06207326799631119, + 0.03561357036232948, + 0.024448547512292862, + 0.07863617688417435, + -0.07478463649749756, + -0.021402355283498764, + 0.09236302971839905, + 0.057177603244781494, + -0.1028350442647934, + -0.014552414417266846, + 0.0625142827630043, + -0.05526191368699074, + -0.026074770838022232, + 0.0016718306578695774, + 0.0094873933121562, + 0.06385467946529388, + 0.009575800970196724, + 0.026920566335320473, + -0.04441992938518524, + -0.011188870295882225, + 0.01474207267165184, + -0.01752595603466034, + 0.008897021412849426, + 0.041643671691417694, + -0.023969732224941254, + 0.015830812975764275, + 0.0747474879026413, + 0.05481535196304321, + -0.03974977880716324, + 0.039465904235839844, + 0.039006900042295456, + 0.02332700788974762, + 0.08830207586288452, + -0.02779187262058258, + -0.0603119395673275, + -0.04116630554199219, + -0.05187274143099785, + 0.021113397553563118, + -0.04791208729147911, + 0.04442862421274185, + -0.023534933105111122, + 0.05649275705218315, + 0.07615865767002106, + -0.014480403624475002, + -0.008293542079627514, + -0.10708130151033401, + 0.023815080523490906, + -0.0010953565360978246, + -0.17564284801483154, + 0.009421190246939659, + 0.028187403455376625, + -0.024293530732393265, + -0.05384737253189087, + 1.7690444275646624e-33, + 0.07880865037441254, + 0.079490527510643, + -0.11164269596338272, + 0.011013261042535305, + -0.03232003003358841, + -0.008828318677842617, + 0.04128739982843399, + 0.022581003606319427, + -0.004267600830644369, + 0.014649925753474236, + -0.09007662534713745, + 0.019258376210927963, + -0.034100037068128586, + -0.04751955345273018, + 0.0004954380565322936, + -0.06710154563188553, + 0.029574478045105934, + -0.005296665243804455, + -0.0110394936054945, + 0.06291862577199936, + -0.021864403039216995, + -0.04595034196972847, + -0.07825835794210434, + -0.022604474797844887, + -0.004567272495478392, + 0.05507747083902359, + 0.045600228011608124, + 0.0656450167298317, + -0.0692439004778862, + 0.015462313778698444, + -0.02256758138537407, + 0.030555360019207, + 0.09369160979986191, + 0.03249998763203621, + -0.09926798194646835, + 0.03389265015721321, + 0.08062564581632614, + -0.016261715441942215, + -0.0014317233581095934, + -0.0579100139439106, + -0.01267330627888441, + -0.0204414464533329, + 0.061956968158483505, + 0.037814728915691376, + 0.033339839428663254, + -0.034062523394823074, + -0.059135984629392624, + 0.04437549039721489, + -0.019558288156986237, + -0.04248568043112755, + 0.0369684062898159, + -0.01603974588215351, + -0.052608683705329895, + 0.08516384661197662, + 0.10212551802396774, + 0.04475865885615349, + 0.043341174721717834, + -0.04145154729485512, + 0.06437216699123383, + 0.01705119200050831, + -0.08314771950244904, + -0.02054857835173607, + -0.02342987433075905, + 0.014224977232515812, + -0.029900794848799706, + -0.13742034137248993, + 0.028779542073607445, + 0.049165260046720505, + 0.004742542747408152, + -0.02475261129438877, + 0.009646359831094742, + -0.003949511796236038, + 0.012819760479032993, + 0.0984550341963768, + -0.018075527623295784, + -0.050704486668109894, + 0.05776680260896683, + 0.07387083023786545, + 0.027024641633033752, + 0.0007642598357051611, + -0.013751212507486343, + -0.07943250238895416, + -0.021192459389567375, + 0.07752388715744019, + -0.016933750361204147, + 0.045510925352573395, + -0.029152369126677513, + -0.015733622014522552, + 0.0003803595609497279, + 0.005904161371290684, + 0.01244332268834114, + 0.0468856580555439, + 0.04288985952734947, + -0.05116960406303406, + -0.05912106856703758, + -2.4126883602093585e-08, + 0.03922337666153908, + 0.057506877928972244, + -0.04625847190618515, + -0.018633577972650528, + 0.03836973384022713, + -0.020129317417740822, + 0.036192577332258224, + 0.02503925934433937, + -0.04744003340601921, + -0.026819704100489616, + -0.002663577441126108, + 0.024513142183423042, + -0.10187854617834091, + 0.05936860665678978, + 0.023168018087744713, + 0.05166276544332504, + -0.09092659503221512, + 0.005186903290450573, + -0.04300824552774429, + -0.1089600995182991, + -0.0523926317691803, + 0.003909895662218332, + -0.012792614288628101, + -0.009620067663490772, + 0.05003185570240021, + 0.05752512812614441, + -0.07349356263875961, + -0.020752808079123497, + 0.09085334837436676, + 0.006673452910035849, + -0.012991274707019329, + 0.09506351500749588, + -0.002034473931416869, + 0.011571882292628288, + -0.024583954364061356, + -0.02223525010049343, + 0.05331350862979889, + -0.031466513872146606, + 0.030730176717042923, + 0.026637166738510132, + 0.027594147250056267, + 0.045729026198387146, + -0.013091574423015118, + -0.020468145608901978, + 0.0850573480129242, + 0.011405964381992817, + 0.02349703386425972, + -0.03531406819820404, + -0.015540760941803455, + -0.10946643352508545, + -0.03773617371916771, + 0.0010867990786209702, + 0.009330729022622108, + 0.10383793711662292, + 0.055296577513217926, + 0.01981283351778984, + -0.027221806347370148, + -0.015928421169519424, + 0.05574170500040054, + 0.04811915010213852, + 0.09868431836366653, + 0.09187241643667221, + -0.01808021031320095, + 0.02408972755074501 + ], + "airplane-takeoff-bold||vehicles,airports,flights,flying,planes,transit,transportation,traveling,departure": [ + 0.09359132498502731, + -0.0197143591940403, + -0.0275141391903162, + 0.06380759924650192, + 0.004165874794125557, + 0.011001955717802048, + 0.07968506217002869, + -0.03169943019747734, + -0.037345077842473984, + 0.04081243649125099, + 0.03445420786738396, + 0.06418516486883163, + -0.013861481100320816, + 0.03173740580677986, + -0.05993538722395897, + 0.08721581101417542, + 0.0505840927362442, + -0.044860631227493286, + -0.023279862478375435, + 0.014126445166766644, + 0.06708084791898727, + 0.030506504699587822, + -0.01715782657265663, + 0.07191017270088196, + 0.09373129159212112, + 0.030302131548523903, + 0.020117467269301414, + 0.022419624030590057, + 0.0031303546857088804, + -0.0640864148736, + -0.050155289471149445, + 0.040392085909843445, + 0.026783833280205727, + 0.039094917476177216, + 0.018577570095658302, + -0.026048831641674042, + -0.005164479836821556, + -0.012031657621264458, + 0.08878343552350998, + -0.01968435011804104, + -0.0004726762999780476, + -0.07762957364320755, + -0.003610803745687008, + 0.03307938575744629, + 0.00554673932492733, + -0.045268308371305466, + -0.018819911405444145, + -0.01343369297683239, + 0.03434707596898079, + 0.029091307893395424, + -0.0049590845592319965, + -0.09710193425416946, + -0.07534786313772202, + 0.028293021023273468, + 0.035559628158807755, + 0.0307565126568079, + -0.06973221898078918, + -0.03288662061095238, + -0.005747280083596706, + -0.028311964124441147, + -0.04871278256177902, + 0.039148252457380295, + -0.015776680782437325, + 0.04599691554903984, + -0.017447374761104584, + 0.020562948659062386, + -0.031054850667715073, + -0.04742671921849251, + -0.026765985414385796, + -0.0031326976604759693, + -0.007131330203264952, + 0.059296101331710815, + -0.01744181104004383, + 0.03906859830021858, + 0.00088814104674384, + -0.025717992335557938, + 0.05787399783730507, + 0.024087004363536835, + -0.05382665619254112, + -0.07819301635026932, + 0.015274843201041222, + -0.00731313182041049, + -0.06898101419210434, + -0.0009265574626624584, + -0.0190813597291708, + 0.0009535999270156026, + -0.04766502231359482, + -0.06614764779806137, + -0.05714710056781769, + -0.039602309465408325, + -0.09824389219284058, + -0.05880803242325783, + 0.10493025928735733, + 0.027352608740329742, + -0.1181747317314148, + 0.0003535544965416193, + -0.00569148687645793, + -0.06704315543174744, + 0.03118724375963211, + 0.03607276454567909, + 0.04205327853560448, + 0.052710432559251785, + 0.06440634280443192, + 0.04892915114760399, + -0.10627754777669907, + -0.004023170098662376, + 0.005633309483528137, + -0.07052233815193176, + 0.01325166318565607, + -0.06329195201396942, + -0.040720317512750626, + -0.030741572380065918, + -0.03194413706660271, + -0.04681142419576645, + -0.033704109489917755, + 0.020026644691824913, + -0.07035168260335922, + 0.0032866736873984337, + 0.09914161264896393, + -0.042042359709739685, + -0.06338111311197281, + -0.018619611859321594, + 0.0753578469157219, + 0.027954034507274628, + -0.08094479143619537, + -0.04546147212386131, + 0.06222847104072571, + -5.65965044685216e-33, + 0.001537070726044476, + -0.06361638009548187, + -0.022444581612944603, + 0.1540093719959259, + 0.0540585070848465, + -0.048321135342121124, + -0.12732528150081635, + -0.030631795525550842, + -0.002703507198020816, + 0.041286908090114594, + -0.048960573971271515, + 0.0174140352755785, + 0.0014968321193009615, + 0.0001952994498424232, + 0.18055643141269684, + 0.0018611501436680555, + 0.032451752573251724, + -0.09011946618556976, + -0.023211361840367317, + -0.018015092238783836, + 0.014554713852703571, + -0.011991819366812706, + -0.051534559577703476, + -0.014243090525269508, + 0.06935989856719971, + -0.02835790067911148, + -0.05640128627419472, + -0.054259032011032104, + -0.03418338671326637, + 0.06195308640599251, + -0.03181605786085129, + 0.12910543382167816, + -0.00790869165211916, + -0.023361440747976303, + -0.06275472044944763, + -0.04135579615831375, + -0.03876076266169548, + -0.023121677339076996, + -0.031853653490543365, + -0.024860139936208725, + -0.09170971065759659, + -0.07371202111244202, + -0.09077263623476028, + 0.05512288585305214, + -0.002632757881656289, + 0.08608663827180862, + -0.058891911059617996, + -0.02581990510225296, + 0.08236570656299591, + 0.06863381713628769, + -0.08262762427330017, + -0.03096706047654152, + 0.045093733817338943, + -0.08026052266359329, + -0.020555797964334488, + -0.0379231758415699, + 0.027687977999448776, + 0.05147472396492958, + 0.03375478833913803, + 0.01803656853735447, + -0.03356696292757988, + 0.05764031410217285, + 0.032154783606529236, + 0.001935817999765277, + 0.0477578267455101, + 0.0932670384645462, + -0.03801697865128517, + -0.00503653846681118, + 0.02564423531293869, + 0.025852635502815247, + -0.056770242750644684, + 0.04682810604572296, + 0.044214703142642975, + 0.02247903123497963, + 0.10338608920574188, + -0.024898134171962738, + -0.08343508094549179, + -0.05148400738835335, + -0.03253213316202164, + 0.022682907059788704, + -0.05426091328263283, + 0.058769118040800095, + -0.004911742638796568, + 0.024727685377001762, + 0.08300226926803589, + -0.03753775730729103, + -0.010783425532281399, + -0.12220063805580139, + 0.060251232236623764, + 0.004087429028004408, + -0.13386735320091248, + 0.039926908910274506, + 0.013229581527411938, + -0.02426413632929325, + -0.0666932538151741, + 1.5992624520166223e-33, + 0.09814456105232239, + 0.050516847521066666, + -0.0829954445362091, + -0.05131566897034645, + -0.04475131258368492, + 0.01598484069108963, + 0.03623216971755028, + 0.046087563037872314, + -0.006488227751106024, + 0.04458915442228317, + -0.08390158414840698, + -0.028617922216653824, + -0.017354635521769524, + -0.0658998116850853, + 0.026684796437621117, + -0.08670834451913834, + 0.029967430979013443, + -0.012813007459044456, + -0.0589299313724041, + 0.06127799302339554, + -0.025641852989792824, + -0.04455701261758804, + -0.08678071945905685, + -0.036063749343156815, + -0.003766285255551338, + 0.050228409469127655, + 0.037209369242191315, + 0.05808785557746887, + -0.043254610151052475, + 0.0033182778861373663, + -0.07030908763408661, + 0.034556686878204346, + 0.1234956905245781, + 0.036177199333906174, + -0.09500808268785477, + 0.06743624806404114, + 0.0019341697916388512, + 0.020610757172107697, + -0.006263619754463434, + -0.05487946420907974, + -0.025925446301698685, + -0.02691560797393322, + 0.0777534767985344, + 0.052281610667705536, + 0.018283234909176826, + -0.03244304656982422, + -0.06300082802772522, + 0.014078227803111076, + -0.015747908502817154, + -0.005438815802335739, + 0.02736751176416874, + -0.008872631937265396, + -0.04345856234431267, + 0.04635752737522125, + 0.07050865143537521, + 0.026295939460396767, + 0.013127489015460014, + -0.02664264477789402, + 0.054093312472105026, + -0.008754993788897991, + -0.0260677058249712, + -0.007277076598256826, + -0.012745808809995651, + 0.03303249180316925, + -0.043798405677080154, + -0.17716246843338013, + 0.041480448096990585, + 0.06095350533723831, + 0.03235246241092682, + -0.06464213132858276, + 0.028071468695998192, + -0.019860660657286644, + 0.014374027960002422, + 0.06086697801947594, + -0.029901618137955666, + -0.03928423300385475, + 0.04383762180805206, + 0.07079967111349106, + -0.01112335454672575, + 0.03497881442308426, + 0.013578531332314014, + -0.04046204686164856, + -0.009659727104008198, + 0.048925042152404785, + -0.018980439752340317, + 0.012763768434524536, + -0.033771269023418427, + -0.035163577646017075, + 0.00048238466843031347, + 0.004992432426661253, + 0.04264380782842636, + 0.04213989898562431, + 0.026648307219147682, + -0.0153173403814435, + -0.03880733996629715, + -2.3372690449718903e-08, + 0.022831084206700325, + 0.027370616793632507, + 0.010869570076465607, + -0.024967385455965996, + 0.03521423041820526, + -0.02762489579617977, + 0.03257882967591286, + 0.05977572500705719, + -0.062146320939064026, + -0.0016869466053321958, + 0.018935706466436386, + 0.09655992686748505, + -0.07456668466329575, + 0.07383587211370468, + -0.019462959840893745, + 0.06195686757564545, + -0.06057806685566902, + 0.045112647116184235, + -0.006821339018642902, + -0.08677693456411362, + -0.08657563477754593, + -0.017414383590221405, + 0.0038421961944550276, + -0.009270722977817059, + 0.05440488085150719, + 0.028841432183980942, + -0.10761934518814087, + -0.03935645520687103, + 0.11777547746896744, + 0.0022344919852912426, + -0.0015149485552683473, + 0.09181198477745056, + 0.010745315812528133, + 0.004930268041789532, + -0.023770134896039963, + -0.021175311878323555, + 0.008204719051718712, + 0.009503118693828583, + 0.011386347003281116, + -0.007192148827016354, + 0.042735520750284195, + 0.02432686649262905, + -0.01948314718902111, + -0.0034738078247755766, + 0.07823577523231506, + -0.008857598528265953, + 0.004275496583431959, + -0.019869839772582054, + -0.05141840875148773, + -0.0796731635928154, + -0.045057203620672226, + 0.01573312096297741, + -0.020267082378268242, + 0.08481418341398239, + 0.04041146859526634, + -0.024505803361535072, + -0.02439963072538376, + 0.0011151344515383244, + 0.009148004464805126, + -0.012236496433615685, + 0.12325254827737808, + 0.08638805150985718, + -0.0041458806954324245, + 0.02127952128648758 + ], + "airplane-taxiing-bold||*new*,vehicles,airports,flights,flying,planes,transit,transportation,traveling,arrival": [ + 0.048119109123945236, + -0.07783900946378708, + -0.020991558209061623, + 0.07987905293703079, + -0.0355653241276741, + -0.01668885163962841, + 0.10466929525136948, + -0.006718208082020283, + -0.08474653214216232, + 0.06852643191814423, + 0.03701097518205643, + 0.034247107803821564, + -0.01768404245376587, + 0.06522977352142334, + -0.04096824303269386, + 0.06847897917032242, + 0.04180169850587845, + -0.045798495411872864, + -0.011694984510540962, + 0.011023703962564468, + 0.052795302122831345, + 0.008834424428641796, + -0.025604339316487312, + 0.026222404092550278, + 0.11849038302898407, + 0.02319459430873394, + -0.004053367767482996, + -0.0022888805251568556, + 0.029938193038105965, + -0.051315873861312866, + -0.04406929761171341, + 0.12037308514118195, + -0.004173974972218275, + 0.022080006077885628, + 0.009965168312191963, + -0.010118690319359303, + 0.052930254489183426, + -0.0137688759714365, + 0.10761792957782745, + -0.024301256984472275, + 0.0431598424911499, + -0.05463014915585518, + 0.0022616146598011255, + 0.031998131424188614, + -0.0427321195602417, + -0.09467058628797531, + 0.03807403892278671, + -0.023073561489582062, + 0.03692860156297684, + 0.005687568336725235, + -0.02022400125861168, + -0.09568975865840912, + -0.062390394508838654, + 0.01215088926255703, + 0.045837774872779846, + -0.03556107357144356, + -0.037849728018045425, + -0.0012532442342489958, + -0.022370705381035805, + -0.01972237601876259, + -0.04380759224295616, + 0.02536027692258358, + 0.032414667308330536, + 0.045993976294994354, + 0.011151865124702454, + -0.019894136115908623, + -0.07172849774360657, + -0.041468679904937744, + -0.031215371564030647, + 0.0006496662390418351, + -0.01890086755156517, + 0.034937821328639984, + -0.028210654854774475, + 0.04413822665810585, + -0.006373289972543716, + -0.06286787986755371, + 0.03278275579214096, + 0.07151466608047485, + -0.04951425641775131, + -0.08063916862010956, + -0.017532717436552048, + 0.009120103903114796, + -0.08964250981807709, + -0.04609767720103264, + -0.0020836417097598314, + 0.01978849433362484, + -0.08299140632152557, + -0.06987304985523224, + -0.06301004439592361, + -0.030873633921146393, + -0.05673111602663994, + -0.044815193861722946, + 0.07505707442760468, + 0.021311646327376366, + -0.14520908892154694, + 0.029262622818350792, + -0.015620102174580097, + -0.05456630140542984, + 0.04975449666380882, + 0.03315366432070732, + 0.03567631542682648, + 0.11237480491399765, + 0.057493630796670914, + 0.06432820856571198, + -0.06252490729093552, + 0.0076103853061795235, + -0.015220636501908302, + -0.05182284861803055, + -0.017651235684752464, + -0.0340152308344841, + -0.04709748551249504, + -0.02689390257000923, + -0.011010895483195782, + -0.05279159173369408, + -0.06415366381406784, + 0.05013371631503105, + -0.07520509511232376, + -0.007944830693304539, + 0.09679216146469116, + 0.012573839165270329, + -0.07247906923294067, + -0.00949955265969038, + 0.08213247358798981, + -0.002134265610948205, + -0.0408867783844471, + -0.04671657830476761, + 0.04318070039153099, + -6.557692866049863e-33, + 0.008727988228201866, + -0.02872363291680813, + 0.010323059745132923, + 0.10896401852369308, + 0.023840244859457016, + -0.048000775277614594, + -0.09145645797252655, + 0.028952067717909813, + 0.018777884542942047, + 0.025416485965251923, + -0.060350798070430756, + -0.006450091488659382, + 0.0056559741497039795, + 0.040113914757966995, + 0.12598252296447754, + -0.009233636781573296, + -0.016936449334025383, + -0.07913801074028015, + 0.000680074212141335, + -0.03715425729751587, + -0.0455634668469429, + -0.0007919613271951675, + -0.0071373735554516315, + -0.01359472330659628, + 0.06002890318632126, + -0.023368796333670616, + -0.01360922958701849, + -0.09134367108345032, + -0.005611730739474297, + 0.04619550704956055, + -0.01059492863714695, + 0.16702325642108917, + 0.042185984551906586, + -0.001052817446179688, + -0.08538945764303207, + 0.0035190540365874767, + 0.005421258043497801, + -0.013454602099955082, + -0.04370071366429329, + -0.017881236970424652, + -0.09026584774255753, + -0.08532267808914185, + -0.06472108513116837, + 0.02467019110918045, + -0.001266705454327166, + 0.10071661323308945, + -0.055410321801900864, + -0.06802038103342056, + 0.015826858580112457, + 0.10243495553731918, + -0.08093486726284027, + -0.03760229051113129, + 0.046735409647226334, + -0.04632319137454033, + -0.0523751899600029, + 0.006840348243713379, + 0.02098904922604561, + 0.011362259276211262, + 0.05771627649664879, + 0.010065975598990917, + 0.016059352084994316, + 0.03342945873737335, + 0.014477076940238476, + 0.037064701318740845, + 0.026375912129878998, + 0.03381257876753807, + 0.014883517287671566, + -0.01481909491121769, + 0.06282442063093185, + 0.06466137617826462, + -0.03152814134955406, + 0.024483997374773026, + 0.0031482481863349676, + 0.04880990460515022, + 0.09515348076820374, + -0.012763717211782932, + -0.06201868876814842, + -0.054257847368717194, + -0.030511895194649696, + -0.020327672362327576, + -0.07121141254901886, + 0.026130083948373795, + -0.026230456307530403, + 0.02215968631207943, + 0.053170476108789444, + -0.006568419747054577, + 0.01915460266172886, + -0.104308120906353, + 0.04458519071340561, + 0.011100542731583118, + -0.15603527426719666, + 0.02228568308055401, + 0.001288212020881474, + -0.01285629440099001, + -0.030255716294050217, + 1.6996700570569927e-33, + 0.08242081850767136, + 0.03135325387120247, + -0.08729790896177292, + -0.06151893362402916, + -0.0658089891076088, + -0.01931282877922058, + 0.036814454942941666, + -0.009614176116883755, + 0.03417877480387688, + 0.020780958235263824, + -0.10526078939437866, + -0.003893050365149975, + 0.04003765061497688, + -0.01973748207092285, + 0.011576896533370018, + -0.06892287731170654, + 0.009106540121138096, + 0.00994996540248394, + -0.01927519030869007, + 0.09118588268756866, + -0.018868200480937958, + -0.02003704011440277, + -0.09827776253223419, + -0.007639364805072546, + 0.013863585889339447, + 0.013077166862785816, + 0.009881681762635708, + 0.03300543129444122, + -0.03007267788052559, + 0.00015764893032610416, + -0.042110443115234375, + -0.0047549777664244175, + 0.10102996230125427, + 0.035167284309864044, + -0.10490532219409943, + 0.09606567770242691, + 0.0747343897819519, + 0.008655617944896221, + 0.02125859633088112, + -0.06995676457881927, + -0.005048855673521757, + -0.047133881598711014, + 0.05949042737483978, + 0.025554582476615906, + 0.04894792288541794, + -0.04542917758226395, + -0.12018435448408127, + 0.03770679980516434, + -0.05085970088839531, + -0.029453929513692856, + 0.05831076577305794, + 0.03186175227165222, + -0.0635560005903244, + 0.07368077337741852, + 0.06153164058923721, + 0.09689949452877045, + 0.004015766084194183, + -0.03418372571468353, + 0.062397927045822144, + -0.015255536884069443, + -0.08715897053480148, + -0.017041301354765892, + -0.03377232700586319, + 0.014710582792758942, + -0.04120665416121483, + -0.15124507248401642, + 0.04143219441175461, + -0.013779846951365471, + 0.06663623452186584, + -0.04595542326569557, + 0.025917187333106995, + -0.015633800998330116, + -0.04962342232465744, + 0.06810440868139267, + -0.04913921654224396, + -0.008276157081127167, + 0.055994272232055664, + 0.053594715893268585, + 0.017455434426665306, + -0.020397314801812172, + 0.04067886620759964, + -0.03998547047376633, + 0.003241917584091425, + 0.055082932114601135, + -0.025342172011733055, + 0.024318646639585495, + 0.07479208707809448, + -0.027390506118535995, + -0.0015167701058089733, + -0.02841034345328808, + -0.03696957975625992, + 0.020448539406061172, + -0.03704666346311569, + -0.02013140358030796, + -0.050748061388731, + -2.6081663051513715e-08, + 0.028959937393665314, + 0.046199679374694824, + -0.012300766073167324, + 0.010019192472100258, + 0.05860993266105652, + -0.05702809616923332, + 0.010771874338388443, + 0.038546450436115265, + -0.10321994870901108, + -0.018009934574365616, + 0.0509980171918869, + 0.027335476130247116, + -0.05944083258509636, + 0.09692292660474777, + 0.0066032749600708485, + 0.04663342982530594, + -0.032327983528375626, + 0.037378016859292984, + -0.0378759428858757, + -0.07366687059402466, + -0.08241462707519531, + 0.00554825272411108, + 0.011050481349229813, + 0.020440759137272835, + 0.030876578763127327, + 0.01741480454802513, + -0.08445171266794205, + -0.06181999295949936, + 0.10777133703231812, + -0.03687780722975731, + -0.023273447528481483, + 0.11320527642965317, + -0.004791369661688805, + -0.015055154450237751, + -0.05410982295870781, + -0.031733185052871704, + 0.004352676682174206, + -0.03458436578512192, + 0.0066306875087320805, + -0.030764127150177956, + 0.041098155081272125, + 0.020650161430239677, + -0.01769847236573696, + -0.035610709339380264, + 0.05309190973639488, + 0.004693902097642422, + 0.007859406992793083, + -0.03588462993502617, + -0.04659111425280571, + -0.08428951352834702, + 0.0033766906708478928, + 0.027715040370821953, + 0.024332430213689804, + 0.05002593994140625, + 0.04186944290995598, + -0.00031557638430967927, + -0.026955798268318176, + 0.036659687757492065, + 0.03610242158174515, + 0.015900252386927605, + 0.13062141835689545, + 0.06686463952064514, + -0.006628168281167746, + 0.011219789274036884 + ], + "airplane-tilt-bold||vehicles,airports,flights,flying,planes,transit,transportation,traveling,departure": [ + 0.06721075624227524, + -0.04616401344537735, + -0.019099608063697815, + 0.0406341552734375, + -0.008106604218482971, + 0.03639726713299751, + 0.04438558220863342, + 0.005170808173716068, + -0.022921375930309296, + 0.03990941867232323, + 0.06537628918886185, + 0.02606639824807644, + -0.00430030794814229, + -0.020015737041831017, + -0.018144473433494568, + 0.08461516350507736, + 0.016984138637781143, + -0.010452681221067905, + 0.0014335152227431536, + 0.02208239585161209, + -0.008162622340023518, + 0.03242477774620056, + -0.026265084743499756, + 0.09665224701166153, + 0.023273849859833717, + 0.034995581954717636, + 0.050678353756666183, + 0.040598973631858826, + -0.03526192530989647, + -0.08765669912099838, + -0.05142725259065628, + 0.10217881947755814, + -0.019470395520329475, + 0.07058631628751755, + -0.03728209808468819, + -0.035001855343580246, + 0.004048058297485113, + -0.020560666918754578, + 0.035590484738349915, + -0.0242115817964077, + -0.00012577227607835084, + -0.03985576704144478, + 0.007353115361183882, + 0.05659111216664314, + 0.0028978066984564066, + -0.025671252980828285, + 0.015493101440370083, + -0.004579154308885336, + 0.020700836554169655, + 0.03912334144115448, + -0.05862512066960335, + -0.09149081259965897, + -0.061239093542099, + 0.014304098673164845, + 0.017504649236798286, + 0.07391373813152313, + -0.04654517024755478, + 0.006248441059142351, + 0.03028353862464428, + 0.001249487977474928, + 0.010758857242763042, + 0.00854682456701994, + -0.035492368042469025, + 0.07089363038539886, + -0.007713404484093189, + 0.0043921275064349174, + -0.0421532541513443, + -0.03622555360198021, + -0.03973635658621788, + -0.0588514618575573, + -0.025565747171640396, + -0.0050287023186683655, + 0.01780853234231472, + 0.013466358184814453, + 0.042435161769390106, + -0.08003337681293488, + 0.08705256134271622, + -0.04437711089849472, + -0.02433598041534424, + -0.05417829379439354, + -0.016034770756959915, + 0.006562304683029652, + -0.08639783412218094, + -0.0030652559362351894, + 0.0034450669772922993, + -0.05330052599310875, + -0.07751765102148056, + -0.02367120422422886, + -0.05332861468195915, + -0.018983466550707817, + -0.037825118750333786, + -0.06886980682611465, + 0.06378854811191559, + -0.00718518765643239, + -0.060456033796072006, + 0.05517636612057686, + 0.006530979182571173, + -0.08417676389217377, + 0.015305771492421627, + 0.037838131189346313, + 0.07147347182035446, + 0.05293336510658264, + 0.062214214354753494, + 0.09420133382081985, + -0.07149077951908112, + -0.02043367736041546, + 0.033094726502895355, + -0.08093148469924927, + -0.011670790612697601, + -0.07942267507314682, + -0.11439132690429688, + -0.010309833101928234, + -0.015254389494657516, + -0.0714200809597969, + -0.06650564819574356, + -0.023513514548540115, + -0.05231630429625511, + -0.02571750059723854, + 0.020428994670510292, + -0.03347301483154297, + -0.031356632709503174, + -0.018618695437908173, + 0.0824984535574913, + 0.043876755982637405, + -0.06352952867746353, + -0.013353356160223484, + 0.015598618425428867, + -5.258765730919481e-33, + 0.04735572636127472, + -0.0022064661607146263, + 0.012976091355085373, + 0.12923017144203186, + 0.021818814799189568, + -0.05079001933336258, + -0.10875599831342697, + -0.036786697804927826, + -0.022644544020295143, + 0.057812806218862534, + -0.06475116312503815, + 0.05312827602028847, + -0.005174546502530575, + 0.0059175337664783, + 0.10907644033432007, + -0.061871834099292755, + -0.004114842042326927, + -0.029900016263127327, + -0.05800063908100128, + 0.007392919156700373, + -0.06522451341152191, + -0.0006100056925788522, + -0.05599315091967583, + -0.06930184364318848, + 0.006338854320347309, + -0.02701941505074501, + -0.011488169431686401, + -0.06084379926323891, + -0.043982189148664474, + 0.05814581736922264, + -0.00785710196942091, + 0.11091309785842896, + -0.018828537315130234, + -0.04292965680360794, + -0.0763552114367485, + -0.039365217089653015, + -0.04614810645580292, + -0.04690549150109291, + -0.02019241265952587, + -0.0073219467885792255, + -0.09730133414268494, + -0.027834830805659294, + -0.08067503571510315, + 0.06044541671872139, + 0.014906872995197773, + 0.10922931879758835, + -0.041378192603588104, + -0.01798035390675068, + 0.06850867718458176, + 0.09033074229955673, + -0.08363579213619232, + -0.014555444940924644, + 0.003150876611471176, + -0.0988234430551529, + 0.014649434015154839, + 0.027033932507038116, + 0.022253505885601044, + 0.07055214792490005, + 0.011072051711380482, + 0.02537396550178528, + -0.025299018248915672, + 0.00229785218834877, + 0.012868514284491539, + -0.10071592032909393, + 0.051807403564453125, + 0.0688033178448677, + -0.002882797736674547, + 0.015642128884792328, + 0.03542574122548103, + 0.06324657797813416, + -0.006164017133414745, + 0.04498407989740372, + 0.013867821544408798, + 0.061514467000961304, + 0.0490107461810112, + 0.0216666292399168, + -0.06624981760978699, + -0.015896009281277657, + 0.013887095265090466, + -0.015729431062936783, + -0.07117021828889847, + 0.06346490979194641, + -0.0016316702822223306, + 0.052726514637470245, + 0.02545490674674511, + -0.07216478139162064, + -0.022475572302937508, + -0.08498398959636688, + 0.011181979440152645, + 0.03497133404016495, + -0.1890118271112442, + 0.011419730260968208, + 0.021121934056282043, + -0.0006688462453894317, + -0.057235412299633026, + 1.1215660679199188e-33, + 0.036269549280405045, + -0.022955749183893204, + -0.1494344174861908, + -0.02826463058590889, + -0.010755869559943676, + 0.012264791876077652, + 0.049200378358364105, + 0.03756561875343323, + 0.012043694965541363, + 0.026982296258211136, + -0.04969491437077522, + -0.036998871713876724, + -0.0025730389170348644, + -0.04398583993315697, + 0.04397199675440788, + -0.035220593214035034, + 0.04102233797311783, + 0.03967965021729469, + -0.05343841016292572, + 0.0673677995800972, + 0.04796955734491348, + -0.030118795111775398, + -0.08749400079250336, + 0.0017924598651006818, + 0.07269592583179474, + 0.05396397411823273, + 0.018011555075645447, + 0.031312864273786545, + -0.043651238083839417, + 0.01241814624518156, + -0.0810573399066925, + -0.0073196012526750565, + 0.12933702766895294, + 0.03786839172244072, + -0.08924355357885361, + 0.09347149729728699, + -0.010259278118610382, + -0.050860773772001266, + -0.02206472121179104, + -0.04600630700588226, + 0.006528930738568306, + 0.030370639637112617, + 0.11577260494232178, + -0.0026277718134224415, + 0.03470019996166229, + -0.0187531728297472, + -0.07515473663806915, + 0.005501940846443176, + -0.014943494461476803, + -0.001044988981448114, + 0.006675083190202713, + -0.014069457538425922, + -0.04185255616903305, + 0.07742274552583694, + 0.056630752980709076, + 0.006566255819052458, + 0.025044230744242668, + -0.04820898175239563, + 0.009630651213228703, + -0.023690180853009224, + -0.04652015492320061, + -0.03311530128121376, + -0.06891686469316483, + 0.01429997943341732, + -0.034676648676395416, + -0.13832888007164001, + 0.09837616980075836, + -0.050910141319036484, + 0.030990030616521835, + -0.017328383401036263, + 0.07538887113332748, + -0.023786796256899834, + 0.0268771480768919, + 0.043288689106702805, + -0.04769841209053993, + -0.04382995143532753, + 0.12625733017921448, + 0.1146993339061737, + -0.004786298144608736, + -0.010112058371305466, + 0.02766585908830166, + -0.06461198627948761, + 0.018253836780786514, + 0.06848026067018509, + -0.03685282915830612, + 0.05117388814687729, + -0.031380828469991684, + -0.05940341576933861, + 0.03867597132921219, + 0.01539585180580616, + -0.016487961634993553, + 0.006224909797310829, + -0.032663263380527496, + -0.045711878687143326, + -0.012398460879921913, + -2.5020911564865855e-08, + 0.024927744641900063, + 0.004724426195025444, + 0.018919939175248146, + 0.013491418212652206, + -0.020835669711232185, + -0.014845275320112705, + 0.05599640682339668, + -0.003427796997129917, + -0.07049096375703812, + -0.024866601452231407, + 0.03965047374367714, + 0.048325780779123306, + -0.03850976377725601, + 0.030664101243019104, + 0.023428164422512054, + 0.04683702439069748, + -0.10172709077596664, + 0.07349858433008194, + -0.003530950751155615, + -0.06367287784814835, + -0.06080413982272148, + 0.028325282037258148, + 0.028136523440480232, + 0.019739659503102303, + 0.05086125060915947, + 0.04333356022834778, + -0.09001445025205612, + -0.02115732431411743, + 0.1275564581155777, + -0.017905691638588905, + -0.028778821229934692, + 0.08716091513633728, + -0.010418443009257317, + -0.08496392518281937, + -0.07221467792987823, + 0.013932246714830399, + -0.01425340585410595, + 0.014424948953092098, + 0.02093096263706684, + 0.048165060579776764, + -0.017489252611994743, + 0.037978269159793854, + -0.035473793745040894, + 0.004556846804916859, + 0.10664675384759903, + 0.021386219188570976, + 0.06567329168319702, + -0.0003528140950948, + -0.020590316504240036, + -0.10749717801809311, + -0.021716274321079254, + 0.042746540158987045, + 0.025950506329536438, + 0.10264149308204651, + -0.02586117573082447, + 0.04523623734712601, + 0.02061438001692295, + 0.009851834736764431, + 0.008463130332529545, + -0.05850816145539284, + 0.10336602479219437, + 0.055186741054058075, + -0.0687599629163742, + 0.011942637152969837 + ], + "airplay-bold||apple,screencasting,television,tv": [ + 0.05029166862368584, + -0.09402187168598175, + 0.007626648060977459, + -0.05201421305537224, + 0.0381646528840065, + -0.02476241998374462, + 0.020772643387317657, + -0.09057361632585526, + -0.011693158186972141, + 0.02662765234708786, + -0.02132999897003174, + 0.02536037750542164, + 0.004776373039931059, + -0.03373239189386368, + -0.02095143124461174, + -0.09476424008607864, + 0.09383416920900345, + -0.06063075363636017, + 0.021804261952638626, + 0.010671311989426613, + 0.004336946178227663, + -0.0016904890071600676, + -0.030578384175896645, + 0.01997535489499569, + 0.14165066182613373, + 0.0003345572331454605, + 0.10035533457994461, + 0.02838055044412613, + 0.024256473407149315, + -0.04917115718126297, + 0.008676823228597641, + -0.007541191764175892, + 0.06856358796358109, + 0.01682215742766857, + -0.06018044054508209, + -0.09866557270288467, + 0.008391485549509525, + -0.04532039910554886, + -0.15255768597126007, + -0.008842072449624538, + 0.019638188183307648, + -0.03475140780210495, + 0.031075764447450638, + 0.0001573494664626196, + -0.1017540767788887, + -0.0737013965845108, + -0.033555641770362854, + -0.015217731706798077, + 0.006379261147230864, + 0.04198842868208885, + -0.0468536801636219, + -0.08029229193925858, + -0.03387078642845154, + 0.0403561070561409, + 0.05628994107246399, + -0.0035383044742047787, + -0.02734478935599327, + 0.07844483107328415, + 0.07944118231534958, + -0.008586814627051353, + 0.011404179967939854, + 0.006711255759000778, + 0.06239119917154312, + 0.03734489157795906, + 0.06970580667257309, + 0.008134611882269382, + 0.03356926515698433, + 0.05155950412154198, + -0.04977131262421608, + -0.010196620598435402, + -0.029238276183605194, + 0.017370490357279778, + 0.11867121607065201, + -0.07720327377319336, + 0.07040499150753021, + 0.016140621155500412, + 0.043851688504219055, + -0.0962858498096466, + -0.051788292825222015, + 0.0038233480881899595, + -0.04700103774666786, + -0.0269204992800951, + -0.08943057805299759, + -0.0036701317876577377, + 0.03277124837040901, + -0.005346305202692747, + -0.07580439746379852, + -0.06624637544155121, + -0.05985554680228233, + 0.08151794224977493, + -0.15388382971286774, + 0.04608366638422012, + -0.021248947829008102, + -0.01511369738727808, + -0.021591389551758766, + 0.03163788095116615, + 0.019259778782725334, + -0.07648353278636932, + 0.002350337104871869, + 0.07518181204795837, + -0.009934032335877419, + 0.019661756232380867, + 0.0609409362077713, + 0.04336680471897125, + -0.05368853732943535, + -0.059671346098184586, + -0.04647478088736534, + 0.02690313197672367, + 0.010682309046387672, + 0.09006582945585251, + 0.002576938597485423, + -0.042865198105573654, + -0.024545812979340553, + 0.005815500393509865, + 0.022152472287416458, + 0.030764473602175713, + 0.037853654474020004, + 0.017063414677977562, + 0.10286245495080948, + -0.048588115721940994, + -0.008023321628570557, + -0.01220036018639803, + 0.02643321081995964, + 0.008455808274447918, + 0.02627488784492016, + 0.011285852640867233, + 0.0016397577710449696, + -1.3166579062091013e-33, + 0.01278681494295597, + 0.015999790281057358, + -0.07499109953641891, + 0.07211768627166748, + -0.008233504369854927, + -0.01589553989470005, + -0.022771375253796577, + 0.04979822039604187, + 0.0340568944811821, + -0.014923382550477982, + 0.057244688272476196, + 0.06868749111890793, + -0.04174623265862465, + -0.002038538223132491, + 0.05713233724236488, + -0.08426306396722794, + -0.021105896681547165, + 0.021796906366944313, + -0.15280629694461823, + 0.07083804905414581, + -0.029209131374955177, + -0.025876905769109726, + -0.07311045378446579, + -0.043408576399087906, + -0.028861360624432564, + -0.011342023499310017, + 0.026221219450235367, + -0.04220856726169586, + -0.054531145840883255, + 0.012576956301927567, + 0.019704492762684822, + 0.040937550365924835, + 0.04858304560184479, + -0.04674043878912926, + 0.00837482139468193, + -0.06939203292131424, + -0.0679771900177002, + -0.018230285495519638, + 0.02345954068005085, + 0.027203362435102463, + -0.1180158257484436, + -0.03013165295124054, + -0.031513962894678116, + -0.0450325682759285, + 0.03608333691954613, + 0.10422112792730331, + -0.04735696688294411, + -0.003840718185529113, + -0.04131180793046951, + 0.04187866672873497, + -0.009741876274347305, + -0.01305375061929226, + 0.00377570278942585, + -0.05469932779669762, + 0.01850191503763199, + -0.007592613343149424, + -0.02212105505168438, + 0.0222491305321455, + 0.023265689611434937, + -0.024386705830693245, + 0.01397951040416956, + 0.013656962662935257, + 0.05095301568508148, + -0.04005393013358116, + -0.0926252156496048, + 0.09521259367465973, + 0.07374665886163712, + 0.07913432270288467, + 0.012272031046450138, + -0.030057203024625778, + -0.019093157723546028, + 0.10871151089668274, + 0.031435150653123856, + 0.08135795593261719, + -0.040200017392635345, + 0.038740724325180054, + 0.002127591287717223, + -0.004134545102715492, + -0.011678599752485752, + -0.0547783225774765, + -0.030971987172961235, + 0.06999079138040543, + -0.030775180086493492, + 0.07915490865707397, + -0.018672766163945198, + 0.014331542886793613, + -0.0893748328089714, + -0.08018940687179565, + -0.07831631600856781, + 0.05700049549341202, + -0.06784103810787201, + 0.0257687009871006, + -0.03314828872680664, + -0.03288891538977623, + -0.09387225657701492, + -8.381941447065017e-34, + 0.04214669018983841, + 0.003912276588380337, + -0.0867813304066658, + -0.08966616541147232, + -0.027886072173714638, + -0.059512220323085785, + 0.04250040650367737, + 0.0564897283911705, + 0.030417848378419876, + 0.013153111562132835, + 0.04281195253133774, + -0.04070465266704559, + -0.0726267546415329, + -0.009792912751436234, + -0.0612017884850502, + -0.013542615808546543, + 0.010247333906590939, + -0.0026134171057492495, + 0.010467453859746456, + -0.002840789034962654, + 0.005152182187885046, + -0.02821572683751583, + 0.019338194280862808, + 0.018109075725078583, + 0.07421296834945679, + -0.028427906334400177, + 0.042181167751550674, + 0.07153557986021042, + -0.06733004748821259, + 0.024613156914711, + 0.01709357462823391, + 0.01503743790090084, + 0.03724247217178345, + -0.0007518494385294616, + 0.03282257914543152, + 0.11990383267402649, + 0.023283762857317924, + -0.012351423501968384, + -0.03944798931479454, + -0.07942003756761551, + 0.04636325314640999, + 0.067253977060318, + -0.011678353883326054, + 0.0378522090613842, + 0.04293183237314224, + 0.05052153021097183, + -0.01932132989168167, + 0.032946303486824036, + -0.023921558633446693, + -0.0115743987262249, + 0.0669514462351799, + -0.002400364028289914, + 0.01846948266029358, + -0.0073538850992918015, + -0.07660705596208572, + -0.024506285786628723, + 0.09850417077541351, + 0.02674400992691517, + 0.008035356178879738, + 0.06660773605108261, + 0.016300557181239128, + 0.017217423766851425, + -0.03811336308717728, + -0.013081548735499382, + 0.023368792608380318, + -0.008073625154793262, + 0.06892075389623642, + -0.012089820578694344, + 0.032226428389549255, + 0.07718949019908905, + 0.03877593204379082, + -0.06495412439107895, + 0.04720968380570412, + 0.06807664781808853, + 0.03354620933532715, + 0.02324923500418663, + 0.045161399990320206, + 0.039212778210639954, + -0.021071137860417366, + 0.03005565144121647, + -0.005223729647696018, + 0.0851464793086052, + 0.07542282342910767, + 0.032528627663850784, + 0.03953537344932556, + 0.03810425102710724, + 0.06641531735658646, + 0.026396580040454865, + 0.023449312895536423, + 0.05395888164639473, + -0.02975611574947834, + 0.032408230006694794, + -0.014955118298530579, + -0.105829618871212, + 0.009126401506364346, + -1.8251864020157882e-08, + -0.04698694869875908, + -0.04195411503314972, + 0.005529188551008701, + -0.02727794274687767, + -0.05246809497475624, + -0.03166918829083443, + -0.00960500631481409, + -0.13585999608039856, + 0.04563963785767555, + -0.11932297796010971, + -0.01545371487736702, + -0.029062187299132347, + -0.07239817082881927, + 0.04138850048184395, + 0.0774025097489357, + -0.006921788677573204, + -0.10302481055259705, + 0.015312612988054752, + -0.06372211128473282, + -0.026012592017650604, + -0.06796731054782867, + 0.03268410637974739, + -0.025989454239606857, + -0.011811244301497936, + 0.03637583181262016, + 0.026871871203184128, + -0.03277566283941269, + 0.016224490478634834, + 0.04975099116563797, + -0.003906612284481525, + -0.03997229039669037, + 0.002464746590703726, + -0.06448321044445038, + -0.03957764804363251, + -0.1301455795764923, + 0.014737388119101524, + -0.03349701315164566, + -0.012108691968023777, + 0.01496055070310831, + 0.0821070522069931, + -0.09443952888250351, + -0.08531606197357178, + -0.02560015209019184, + -0.05004354566335678, + 0.034594692289829254, + 0.09015648812055588, + 0.016800880432128906, + 0.004252939019352198, + -0.014280763454735279, + -0.0680767297744751, + 0.015810096636414528, + 0.025116397067904472, + 0.019021200016140938, + -0.03151867538690567, + 0.004405037499964237, + -0.08185068517923355, + 0.06685513257980347, + -0.029035907238721848, + 0.02388773299753666, + -0.04181647673249245, + 0.10488048940896988, + 0.06018044427037239, + 0.02689283899962902, + 0.09212224185466766 + ], + "alarm-bold||times,timer,clock,schedule,events,watch": [ + 0.03129587695002556, + -0.010164693929255009, + -0.04000461846590042, + 0.0006357618840411305, + 0.05805559083819389, + 0.07803814858198166, + 0.11700756847858429, + -0.006546235177665949, + 0.05373828858137131, + -0.03987489268183708, + -0.04249010607600212, + -0.015331204049289227, + 0.011936229653656483, + -0.005861265119165182, + -0.03407592698931694, + -0.011450407095253468, + 0.010984559543430805, + -0.011667100712656975, + 0.010289712809026241, + -0.047305840998888016, + 0.05166956037282944, + -0.019002284854650497, + 0.08365835249423981, + 0.0775260403752327, + -0.01674468256533146, + 0.012658612802624702, + 0.05638324096798897, + 0.0150986323133111, + 0.013526995666325092, + -0.047940146178007126, + -0.023840241134166718, + -0.06634105741977692, + 0.12135525792837143, + -0.009155805222690105, + 0.015457317233085632, + -0.00866399984806776, + 0.048563141375780106, + 0.02410566806793213, + -0.05882596597075462, + 0.032568007707595825, + 0.07060302048921585, + -0.06740683317184448, + 0.012580478563904762, + 0.010081828571856022, + -0.023505738005042076, + 0.009022407233715057, + -0.04037456586956978, + -0.057140011340379715, + -0.04450109228491783, + 0.04534764215350151, + -0.0027226072270423174, + -0.03859017789363861, + -0.04436003789305687, + -0.030423440039157867, + 0.10745202749967575, + 0.09222059696912766, + -0.04425721615552902, + 0.00369758321903646, + 0.06582222133874893, + 0.0028879372403025627, + -0.0013615203788504004, + 0.05415533110499382, + -0.045367781072854996, + 0.06429615616798401, + -1.652556238695979e-05, + 0.03518407791852951, + -0.043856631964445114, + 0.05195670202374458, + 0.06660807132720947, + -0.009336498565971851, + -0.05494820699095726, + 0.031313858926296234, + 0.0424993634223938, + 0.015983639284968376, + -0.06874306499958038, + 0.0314687043428421, + 0.05430987477302551, + -0.03459423780441284, + -0.018430287018418312, + -0.06234822794795036, + -0.16061562299728394, + -0.1013864204287529, + -0.01318997610360384, + 0.0019155391491949558, + 0.11693357676267624, + -0.007210847921669483, + -0.011960627511143684, + 0.014604615047574043, + -0.022111553698778152, + -0.04263878986239433, + -0.03441385552287102, + -0.04685400798916817, + 0.02756074070930481, + 0.005324041470885277, + -0.01923675276339054, + 0.050207700580358505, + 0.027944430708885193, + 0.017009474337100983, + -0.04584673419594765, + 0.0428776778280735, + -0.024547597393393517, + -0.00493520637974143, + -0.029019376263022423, + 0.04948486387729645, + -0.025277892127633095, + -0.07535549253225327, + -0.07243576645851135, + -0.02181251347064972, + -0.024869700893759727, + 0.031519584357738495, + 0.0037568688858300447, + -0.07200143486261368, + 0.032785139977931976, + -0.06709995120763779, + 0.06788669526576996, + 0.010560194961726665, + -0.09589462727308273, + 0.02385515719652176, + 0.14009274542331696, + 0.10315579175949097, + 0.07851200550794601, + -0.008970563299953938, + -0.057101089507341385, + -0.05995387211441994, + 0.0008657898870296776, + 0.0750935822725296, + 0.04517098516225815, + -2.7755807509104393e-33, + 0.020130686461925507, + 0.042301274836063385, + -0.08333835750818253, + 0.051007337868213654, + 0.038592856377363205, + 0.02474784478545189, + -0.07122496515512466, + -0.021152697503566742, + -0.008747387677431107, + 0.0776345506310463, + 0.0432949997484684, + 0.04512448236346245, + -0.02513004280626774, + 0.02109922096133232, + 0.03549422696232796, + -0.002094071824103594, + 0.05232752859592438, + 0.042637746781110764, + -0.02101421356201172, + -0.06051900237798691, + -0.08230210840702057, + 0.057817865163087845, + -0.07030009478330612, + -0.001921617309562862, + 0.04157717898488045, + -0.0041395528241992, + 0.028764666989445686, + -0.019308922812342644, + -0.014860054478049278, + 0.018579544499516487, + 0.08459211140871048, + -0.02115032821893692, + -0.017948908731341362, + 0.014272991567850113, + 0.06555407494306564, + -0.001120407716371119, + -0.028775179758667946, + 0.010061088018119335, + -0.008517838083207607, + -0.016276666894555092, + -0.07555178552865982, + -0.08244305104017258, + -0.05021141469478607, + -0.0566134974360466, + 0.058350615203380585, + 0.028198273852467537, + 0.01777164451777935, + 0.009547731839120388, + 0.036379024386405945, + 0.024380618706345558, + 0.048579178750514984, + -0.012021290138363838, + 0.055924080312252045, + -0.07177992165088654, + 0.017008362337946892, + 0.0480327345430851, + 0.06638218462467194, + 0.0326324962079525, + 0.03283845633268356, + 0.06794368475675583, + -0.008461040444672108, + 0.058189667761325836, + 0.10197152942419052, + -0.07083313167095184, + -0.006531126797199249, + 0.05499263107776642, + -0.02156340889632702, + -0.02237529866397381, + 0.09887897968292236, + 0.036033324897289276, + -0.01760181225836277, + 0.02078087441623211, + 0.08725141733884811, + 0.025399429723620415, + -0.039566975086927414, + 0.038791801780462265, + 0.06876648217439651, + -0.01587277092039585, + -0.05127594992518425, + -0.015570148825645447, + -0.012452316470444202, + -0.03544885665178299, + 0.009343736805021763, + 0.07200372964143753, + 0.051118433475494385, + -0.01889948546886444, + -0.026679685339331627, + -0.05006064474582672, + -0.047097496688365936, + 0.0350470170378685, + -0.02303146943449974, + -0.044905342161655426, + 0.03978193923830986, + -0.020014874637126923, + -0.15304701030254364, + 1.0176788159301221e-33, + 0.03724130615592003, + -0.024673081934452057, + -0.02064112387597561, + -0.05031324550509453, + -0.020384937524795532, + -0.02650219015777111, + -0.021043088287115097, + -0.0032886462286114693, + 0.006299490109086037, + 0.03795238956809044, + 0.03348472714424133, + -0.007477268110960722, + -0.020490242168307304, + -0.03953992575407028, + -0.03264082968235016, + 0.012207239866256714, + 0.09383071213960648, + 0.04722267761826515, + 0.011487295851111412, + -0.00026946814614348114, + -0.04161457344889641, + -0.004522264003753662, + -0.13497017323970795, + -0.0034592358861118555, + 0.043948136270046234, + 0.03106856159865856, + 0.0318790078163147, + 0.04519176855683327, + -0.001530428766272962, + -0.056168507784605026, + -0.09533850848674774, + -0.06801825761795044, + 0.07421030849218369, + 0.04336410015821457, + -0.04875265434384346, + -0.006529498845338821, + 0.08171438425779343, + -0.032194286584854126, + -0.05256416276097298, + -0.06301280856132507, + 0.028650455176830292, + 0.004503783769905567, + 0.05072523653507233, + -0.001972458092495799, + -0.06913220882415771, + 0.07328439503908157, + -0.041041310876607895, + 0.019842633977532387, + -0.07729192078113556, + 0.07567699998617172, + -0.012744156643748283, + -0.11049363017082214, + -0.03246971592307091, + 0.012567468918859959, + -0.06598033010959625, + -0.02377280779182911, + 0.016883334144949913, + -0.04434841126203537, + 0.01066346000880003, + 0.0590057298541069, + -0.015228734351694584, + -0.03040820173919201, + 0.0040021371096372604, + 0.04131070524454117, + 0.021034445613622665, + -0.008124242536723614, + -0.0087553346529603, + -0.04594618082046509, + -0.03421551734209061, + -0.07905589044094086, + 0.06664593517780304, + -0.014052041806280613, + -0.04710541293025017, + -0.023331427946686745, + -0.07395907491445541, + -0.022685373201966286, + -0.005847198888659477, + 0.029675057157874107, + -0.10957703739404678, + -0.0030822688713669777, + -0.04023301973938942, + -0.062302116304636, + -0.002577816601842642, + 0.020760206505656242, + -0.08086160570383072, + 0.0897982269525528, + 0.08171182870864868, + 0.07398524135351181, + 0.03305526822805405, + 0.018118537962436676, + -0.08535540848970413, + 0.088166743516922, + 0.0012329629389569163, + 0.08775992691516876, + -0.013981464318931103, + -1.9613695556586208e-08, + -0.0070161111652851105, + -0.034294504672288895, + 0.020229674875736237, + -0.08543530851602554, + 0.041534673422575, + -0.08092489838600159, + -0.02777377888560295, + -0.08757166564464569, + -0.0492544025182724, + -0.03354784846305847, + 0.03727680817246437, + -0.03141932934522629, + -0.061153966933488846, + -0.06441579759120941, + 0.07144137471914291, + -0.03586624935269356, + -0.028987400233745575, + 0.03988826647400856, + -0.050872791558504105, + -0.06142611801624298, + 0.023931384086608887, + 0.06548500806093216, + 0.04922642558813095, + -0.052360571920871735, + 0.029956072568893433, + 0.05855289846658707, + -0.05454789102077484, + 0.05513402074575424, + 0.09409408271312714, + 0.08642575144767761, + 0.03304065391421318, + 0.06317998468875885, + 0.0054788654670119286, + -0.019924912601709366, + -0.12478478997945786, + -0.0749594122171402, + -0.03738738223910332, + -0.018526338040828705, + 0.05847075581550598, + 0.10343848168849945, + 0.05413506180047989, + -0.11663594841957092, + -0.1045839861035347, + 0.04697087034583092, + -0.037317611277103424, + -0.05276229977607727, + 0.01211629994213581, + -0.12353860586881638, + -0.020717496052384377, + -0.06179235503077507, + -0.03541387990117073, + 0.007755829021334648, + 0.03873253986239433, + 0.004636187106370926, + 0.0200588870793581, + 0.03310459479689598, + 0.061565544456243515, + -0.05480495095252991, + -0.029659751802682877, + 0.04061821103096008, + 0.058338943868875504, + 0.028821932151913643, + 0.005535602569580078, + -0.03321269154548645 + ], + "alien-bold||ufo,space,flying saucer,extra terrestrial,sci-fi": [ + -0.024815469980239868, + -0.10656307637691498, + -0.015584699809551239, + 0.027500884607434273, + 0.04022982344031334, + -0.07202767580747604, + 0.03765100613236427, + -0.04420241713523865, + 0.0008511427440680563, + -0.05991319194436073, + 0.03288301080465317, + -0.059027332812547684, + 0.00866701640188694, + 0.019881071522831917, + 0.001076373620890081, + 0.03685011714696884, + 0.03453727066516876, + -0.07990287244319916, + 0.02570694126188755, + 0.0026819489430636168, + -0.04302285984158516, + 0.11620351672172546, + -0.02294652722775936, + 0.046258408576250076, + 0.054635629057884216, + 0.03508690744638443, + 0.04003538936376572, + 0.03938828036189079, + -0.05864943936467171, + -0.07643084228038788, + 0.057610251009464264, + 0.15655595064163208, + 0.006809317506849766, + 0.006522376090288162, + 0.04606093466281891, + -0.013712627813220024, + 0.0022190306335687637, + -0.07372763752937317, + 0.059884704649448395, + 0.03236837685108185, + -0.04615285247564316, + -0.07407086342573166, + 0.07890652865171432, + 0.022089997306466103, + -0.08438189327716827, + -0.03277679160237312, + -0.09391871094703674, + -0.003981407731771469, + 0.09125636518001556, + 0.012812415137887001, + -0.0563044399023056, + -0.044576115906238556, + -0.047865599393844604, + 0.07423444092273712, + 0.06946621835231781, + -0.01546300109475851, + -0.020020753145217896, + -0.06209711357951164, + -0.03951382637023926, + -0.10253935307264328, + -0.01121925376355648, + 0.006616830360144377, + 0.10987289249897003, + 0.0308704674243927, + -0.024763930588960648, + -0.0040619815699756145, + -0.08906864374876022, + 0.010861653834581375, + 0.04254138469696045, + -0.024134619161486626, + -0.07064901292324066, + 0.014116049744188786, + -0.13067804276943207, + 0.021754326298832893, + -0.0025493938010185957, + 0.013386859558522701, + 0.0905691608786583, + 0.008170407265424728, + -0.048347312957048416, + -0.10993511229753494, + -0.010275599546730518, + -0.005923236254602671, + -0.12500441074371338, + -0.03469808027148247, + -0.015592401847243309, + 0.024050094187259674, + -0.04032640904188156, + 0.042434655129909515, + -0.04474802315235138, + 0.03125821426510811, + -0.053663212805986404, + -0.08535059541463852, + 0.021806633099913597, + -0.038021281361579895, + -0.052767641842365265, + 0.005840677302330732, + 0.006873183883726597, + -0.0716141015291214, + 0.025370005518198013, + 0.04011161997914314, + 0.06886562705039978, + -0.062221527099609375, + -0.08874247968196869, + 0.05415039509534836, + -0.006662311963737011, + -0.07524991035461426, + 0.044924017041921616, + 0.009349589236080647, + 0.0818958580493927, + -0.07004079967737198, + 0.018448565155267715, + -0.029423115774989128, + -0.06481552124023438, + -0.0508330874145031, + -0.03366527706384659, + 0.01095366571098566, + 0.028570380061864853, + 0.022835582494735718, + 0.02114156447350979, + -0.03615633398294449, + -0.01994708552956581, + -0.015247956849634647, + -0.0457458570599556, + -0.011290951631963253, + 0.003804814536124468, + -0.06513446569442749, + -0.020635200664401054, + -1.5834783179499637e-33, + 0.01438529510051012, + 0.033314794301986694, + 0.03304991498589516, + 0.02232981286942959, + 0.038051195442676544, + -0.0110229616984725, + -0.008578508161008358, + 0.10925086587667465, + -0.050946012139320374, + 0.019644256681203842, + -0.044725432991981506, + 0.019346870481967926, + 0.011263806372880936, + -0.012152514420449734, + 0.05066617578268051, + -0.0411006398499012, + -0.0269257090985775, + -0.04388231411576271, + -0.048539768904447556, + 0.003159136511385441, + -0.038761913776397705, + 0.03098752722144127, + -0.02614664100110531, + -0.010247888043522835, + -0.012946832925081253, + -0.033669669181108475, + -0.021851185709238052, + -0.06855448335409164, + 0.010538969188928604, + 0.01702592335641384, + 0.009551625698804855, + 0.08141026645898819, + 0.03941342607140541, + 0.05547105893492699, + 0.00041692578815855086, + -0.02300315536558628, + -0.02224111370742321, + -0.06781982630491257, + -0.005501804873347282, + 0.025926994159817696, + -0.07731538265943527, + 0.043700557202100754, + -0.008935262449085712, + 0.024517085403203964, + 0.0017498777015134692, + 0.06778574734926224, + -0.00442116754129529, + -0.03915810212492943, + 0.010487519204616547, + 0.0640173926949501, + -0.024306170642375946, + -0.00010015241423388943, + 0.0027650229167193174, + 0.00014839821960777044, + 0.05378447100520134, + -0.01480080932378769, + -0.04521077126264572, + 0.024613870307803154, + -0.02148100920021534, + -0.03875144198536873, + 0.027363743633031845, + -0.0024240626953542233, + -0.026768343523144722, + -0.0161352027207613, + 0.026090901345014572, + 0.08138235658407211, + 0.0673750564455986, + 0.059323739260435104, + 0.007405447773635387, + 0.14762282371520996, + -6.642695370828733e-05, + 0.03357250615954399, + 0.0012038260465487838, + 0.020708754658699036, + 0.051540445536375046, + 0.03415047749876976, + -0.048394955694675446, + -0.06722313165664673, + 0.05106376111507416, + -0.021878501400351524, + -0.07524095475673676, + 0.011318503879010677, + 0.027889356017112732, + 0.006079158745706081, + -0.05872764065861702, + 0.03055517189204693, + -0.007119430229067802, + -0.00671714311465621, + 0.08437585085630417, + 0.08878453075885773, + -0.0789535641670227, + -0.04107227176427841, + -0.056728485971689224, + -0.03623785451054573, + -0.13547059893608093, + -2.3819925947362532e-34, + 0.04858533665537834, + 0.01583010144531727, + -0.07586368918418884, + -0.0706774964928627, + 0.015323224477469921, + -0.0019505694508552551, + -0.09491978585720062, + 0.05613037943840027, + -0.009074793197214603, + -0.009067374281585217, + -0.031423963606357574, + 0.03966507688164711, + 0.036047931760549545, + -0.09924391657114029, + 0.01972051151096821, + -0.04725758731365204, + -0.020793603733181953, + 0.06269064545631409, + 0.021775461733341217, + 0.13461615145206451, + 0.005154761485755444, + -0.06360968202352524, + -0.06567883491516113, + -0.027653716504573822, + 0.0035621074493974447, + 0.06867336481809616, + 0.023343456909060478, + 0.014816315844655037, + -0.048945728689432144, + -0.03438697010278702, + -0.038683582097291946, + -0.03365904092788696, + 0.025027252733707428, + 0.02243807725608349, + 0.00599669199436903, + 0.06315802037715912, + 0.048728667199611664, + -0.018461421132087708, + -0.012383384630084038, + -0.07909132540225983, + -0.08266474306583405, + 0.15956944227218628, + 0.005986421834677458, + 0.09170550107955933, + -0.033334940671920776, + -0.030503688380122185, + -0.08588393777608871, + 0.08247704803943634, + -0.05808115378022194, + 0.04605947062373161, + -0.04617028310894966, + -0.04339301213622093, + 0.0030011802446097136, + -0.006153985392302275, + -0.08693450689315796, + -0.00968676246702671, + 0.008424973115324974, + -0.004651205148547888, + 0.034757379442453384, + 0.03257592022418976, + -0.007863841019570827, + 0.01939210295677185, + -0.006441266741603613, + 0.0216241292655468, + -0.02863820269703865, + -0.04260999709367752, + 0.04986604303121567, + 0.12211216986179352, + -0.06537139415740967, + -0.0025622136890888214, + 0.028207827359437943, + -0.10881047695875168, + -0.08651979267597198, + 0.07625775784254074, + 0.05255946144461632, + 0.005442843772470951, + 0.029193148016929626, + -0.023989053443074226, + 0.026687202975153923, + 0.07525953650474548, + 0.04104137793183327, + -0.03524306043982506, + 0.010989590547978878, + 0.07261120527982712, + 0.05832858383655548, + 0.10899928212165833, + -0.03271595388650894, + 0.025071755051612854, + 0.0013978189090266824, + 0.0011748188408091664, + -0.012727788649499416, + 0.03630055487155914, + 0.04445028677582741, + 0.004332131240516901, + 0.05626007169485092, + -2.2012345723965154e-08, + 0.056663624942302704, + 0.024019023403525352, + -0.09923462569713593, + -0.0052531687542796135, + 0.05564777925610542, + -0.04282703250646591, + -0.06171266734600067, + -0.044096238911151886, + -0.03346693515777588, + -0.04342647269368172, + -0.005428128410130739, + -0.0790637731552124, + -0.002051695017144084, + 0.01645604707300663, + 0.026284150779247284, + 0.012322360649704933, + -0.025745246559381485, + -0.005039488431066275, + -0.011101511307060719, + 0.03897656127810478, + -0.04898267984390259, + 0.07077747583389282, + 0.051851846277713776, + -0.11867733299732208, + -0.01789764128625393, + 0.1105608195066452, + -0.0014873510226607323, + -0.018670961260795593, + 0.10102395713329315, + 0.01772613264620304, + 0.014700804837048054, + 0.0525754876434803, + -0.06269649416208267, + 0.04963652789592743, + -0.07013527303934097, + 0.009033885784447193, + -0.017395682632923126, + -0.007172569166868925, + 0.04361071065068245, + 0.042661551386117935, + 0.017171623185276985, + 0.03515484556555748, + -0.0467786081135273, + 0.0016304913442581892, + 0.0362863689661026, + 0.0004919142229482532, + 0.03493984416127205, + -0.14735235273838043, + -0.014803907833993435, + -0.05684242397546768, + 0.06524696946144104, + -0.04990984499454498, + 0.05392933636903763, + 0.042912401258945465, + -0.004443153738975525, + 0.03119766339659691, + -0.001414431375451386, + 0.07222053408622742, + -0.03463903069496155, + -0.010010016150772572, + 0.09997348487377167, + 0.015138715505599976, + -0.007675836328417063, + 0.04732074216008186 + ], + "align-bottom-bold||alignment,arrangement,layout,flush bottom": [ + -0.01097987499088049, + -0.0036160938907414675, + 0.005459680687636137, + 0.060161665081977844, + 0.0016598256770521402, + -0.040257684886455536, + -0.0818486288189888, + -0.004540671594440937, + 0.088831827044487, + 0.011049722321331501, + -0.0681018978357315, + 0.09648049622774124, + 0.023510629311203957, + -0.042622219771146774, + -0.021562865003943443, + -0.01116906851530075, + -0.0007295356481336057, + 0.06608313322067261, + 0.034139484167099, + 0.07307366281747818, + -0.13031557202339172, + 0.020860539749264717, + 0.09014042466878891, + 0.030410747975111008, + 0.011531723663210869, + 0.06837310642004013, + 0.0366176962852478, + 0.04336431622505188, + -0.022738369181752205, + -0.13393984735012054, + -0.0020465964917093515, + 0.02745397575199604, + 0.2046716809272766, + 0.05448529124259949, + 0.044741012156009674, + -0.02730502560734749, + -0.02442154288291931, + 0.025790011510252953, + 0.05222448706626892, + -0.022657468914985657, + -0.01446042861789465, + -0.048851609230041504, + 0.02931683324277401, + 0.009932578541338444, + -0.0454738587141037, + 0.03888916224241257, + -0.05304945632815361, + -0.07082446664571762, + 0.00405981857329607, + 0.037415750324726105, + 0.00788725633174181, + -0.04218192771077156, + -0.07570090889930725, + 0.025008857250213623, + 0.0023121051490306854, + 0.04593270272016525, + -0.02644585259258747, + -0.0811072289943695, + 0.05110529065132141, + 0.027268007397651672, + 0.13082684576511383, + 0.03830508142709732, + 0.011188195087015629, + 0.05648248270153999, + 0.06887316703796387, + 0.03220063075423241, + -0.00640080776065588, + 0.058475106954574585, + -0.0978647992014885, + 0.05228804424405098, + -0.0052315546199679375, + -0.029211945831775665, + 0.007670558523386717, + -0.07465142756700516, + -0.047201063483953476, + -0.015313118696212769, + 0.03411222994327545, + 0.053679171949625015, + 0.0359174944460392, + 0.0018414349760860205, + -0.028305387124419212, + 0.016241436824202538, + -0.006256512366235256, + 0.07265564054250717, + -0.03239214047789574, + -0.05291559174656868, + -0.018559087067842484, + -0.014806292951107025, + -0.05510220304131508, + -0.061325445771217346, + -0.026887137442827225, + -0.04085870832204819, + -0.019650110974907875, + 0.031027447432279587, + -0.03259376809000969, + 0.03314261883497238, + 0.021587412804365158, + -0.023198623210191727, + -0.07246468216180801, + 0.06633228063583374, + -0.02029375731945038, + 0.02946055307984352, + 0.0024881477002054453, + -0.03371575474739075, + -0.04192445054650307, + -0.02592308633029461, + -0.005682895425707102, + -0.036958977580070496, + -0.03928329050540924, + -0.013315943069756031, + 0.02206447720527649, + -0.05474376678466797, + -0.021819492802023888, + 0.028216302394866943, + -0.09813079982995987, + -0.0018648771801963449, + 0.018614843487739563, + -0.010144438594579697, + 0.07435912638902664, + -0.045867811888456345, + -0.0007879160111770034, + 0.026482392102479935, + -0.04542899876832962, + -0.02696128375828266, + -0.0015781456604599953, + 0.03899092972278595, + 0.037210166454315186, + -1.5617377336024978e-33, + 0.057229626923799515, + 0.037370458245277405, + -0.04191426560282707, + 0.11403342336416245, + 0.05890456959605217, + 0.013181029818952084, + -0.07483013719320297, + -0.006660288665443659, + -0.034222155809402466, + 0.1008247584104538, + 0.05758364126086235, + 0.013582651503384113, + -0.0023724648635834455, + 0.01515761949121952, + -0.06214582547545433, + -0.017175454646348953, + -0.03784068301320076, + 0.03397446870803833, + -0.16762825846672058, + -0.046524833887815475, + 0.026286521926522255, + 0.01234030444175005, + -0.03061646595597267, + -0.01935439556837082, + -0.005551888607442379, + -0.0276788417249918, + 0.03549621254205704, + -0.011152259074151516, + -0.16781090199947357, + -0.018209308385849, + -0.026655208319425583, + 0.0072824531234800816, + 0.06828358769416809, + -0.0027534731198102236, + -0.027128027752041817, + 0.03939395770430565, + -0.0201218631118536, + -0.024332577362656593, + 0.03500981628894806, + 0.008757242001593113, + -0.08136023581027985, + 0.06875160336494446, + -0.006186947226524353, + -0.04117833450436592, + 0.039750829339027405, + 0.0868934765458107, + -0.010613257996737957, + -0.009782617911696434, + 0.10913078486919403, + 0.017629005014896393, + -0.09278172254562378, + -0.02733394131064415, + -0.029516560956835747, + -0.002724836580455303, + -0.006534054409712553, + -0.0713246688246727, + -0.04236134514212608, + 0.04926256835460663, + -0.00716434745118022, + 0.009708374738693237, + 0.04664944112300873, + -0.05486055836081505, + -0.07657159119844437, + -0.08968126773834229, + 0.002253918210044503, + -0.011207450181245804, + -0.03557713329792023, + 0.026287741959095, + 0.0790516659617424, + -0.06644637137651443, + 0.053575173020362854, + 0.025368548929691315, + -0.026714004576206207, + 0.04938848316669464, + -0.054038096219301224, + 0.040099382400512695, + 0.032164350152015686, + -0.08874169737100601, + 0.03335004299879074, + -0.0550357811152935, + 0.02439280040562153, + 0.03567267209291458, + -0.01206132210791111, + 0.032129015773534775, + -0.02167855016887188, + -0.03832688182592392, + 0.05128622427582741, + 0.04098915681242943, + 0.010495646856725216, + 0.1296907514333725, + -0.08907914906740189, + -0.08918335288763046, + 0.08766524493694305, + -0.038285985589027405, + -0.016125474125146866, + 4.3491656308593026e-34, + 0.04174802079796791, + 0.002263647736981511, + -0.005779754836112261, + 0.00026963447453454137, + -0.010923515073955059, + 0.04995502158999443, + 0.06677758693695068, + 0.03351767361164093, + 0.0018134338315576315, + 0.08776562660932541, + -0.026540817692875862, + 0.0322544239461422, + -0.017381876707077026, + 0.0011607417836785316, + -0.03577936068177223, + 0.039075035601854324, + 0.000827551179099828, + 0.009242408908903599, + 0.04197131469845772, + -0.033355969935655594, + -0.003323451615869999, + 0.032296206802129745, + -0.03917590156197548, + 0.051905084401369095, + 0.03278881683945656, + 0.030723363161087036, + 0.04870111867785454, + 0.030126266181468964, + -0.10164034366607666, + 0.05023853853344917, + 0.025607630610466003, + -0.04083117097616196, + 0.003109825076535344, + 0.004949925933033228, + 0.013036330230534077, + 0.04118425399065018, + -0.038033533841371536, + 0.04765862599015236, + -0.018421199172735214, + -0.02236315794289112, + -0.06857325881719589, + 0.0016481273341923952, + -0.04426785558462143, + 0.028176654130220413, + 0.009920581243932247, + -0.028376461938023567, + -0.06233379617333412, + -0.05891165882349014, + -0.005060589872300625, + -0.021086150780320168, + -0.023125268518924713, + -0.004041598178446293, + 0.0362076573073864, + -0.051571328192949295, + -0.03210682421922684, + 0.01976148411631584, + -0.03406485915184021, + 0.04777083173394203, + -0.08729778230190277, + 0.05489857867360115, + 0.0031743901781737804, + 0.07049635797739029, + 0.06384541094303131, + -0.08139579743146896, + 0.03583226352930069, + 0.09841997176408768, + 0.05863720178604126, + -0.007811026647686958, + -0.05678461119532585, + 0.021752577275037766, + -0.002392885508015752, + -0.07375233620405197, + -0.02373890019953251, + 0.020866408944129944, + 0.08516845107078552, + -0.045130908489227295, + 0.09835835546255112, + 0.04325694590806961, + 0.003755090292543173, + -0.024030311033129692, + -0.028782859444618225, + 0.01639895886182785, + -0.05286985635757446, + -0.005823387764394283, + -0.11638262122869492, + -0.03351251035928726, + 0.02288895845413208, + 0.018997928127646446, + -0.02983497828245163, + 0.024967413395643234, + -0.10967209190130234, + -0.04245917871594429, + 0.029727179557085037, + -0.03318607434630394, + -0.02816883847117424, + -2.137390708867315e-08, + 0.022685157135128975, + -0.13590079545974731, + 0.019629457965493202, + 0.027975980192422867, + -0.05495712533593178, + -0.009392477571964264, + 0.05873682722449303, + -0.013876162469387054, + 0.02318653278052807, + -0.036419548094272614, + -0.014978976920247078, + 0.09585628658533096, + -0.055432286113500595, + -0.09627665579319, + 0.018085096031427383, + 0.03757132962346077, + -0.14673030376434326, + 0.05286962911486626, + -0.07619349658489227, + -0.04985754191875458, + 0.044453199952840805, + 0.04194102808833122, + 0.05028330162167549, + 0.005280434153974056, + 0.06208209693431854, + 0.01855311542749405, + -0.08679603040218353, + -0.008105178363621235, + 0.07725262641906738, + -0.003940771333873272, + 0.06725426763296127, + 0.024408021941781044, + 0.11453301459550858, + -0.03821593150496483, + -0.0635756254196167, + -0.06340493261814117, + -0.024049900472164154, + 0.01539356354624033, + 0.05214957892894745, + 0.03718108311295509, + -0.08747968822717667, + 0.004496359266340733, + 0.03131138160824776, + -0.017281848937273026, + -0.016516370698809624, + -0.015014278702437878, + 0.01671096682548523, + 0.1110483855009079, + -0.03683476895093918, + -0.09169968962669373, + -0.013786719180643559, + -0.019558221101760864, + 0.045220840722322464, + 0.04511792212724686, + -0.06475480645895004, + -0.0399431437253952, + 0.021541614085435867, + 0.05201788619160652, + 0.09444162249565125, + -0.013832621276378632, + 0.0389835499227047, + 0.03599543124437332, + 0.01715264283120632, + -0.044869761914014816 + ], + "align-bottom-simple-bold||alignment,arrangement,layout,flush bottom": [ + -0.010383576154708862, + 0.0012844105949625373, + 0.010107642039656639, + 0.058513738214969635, + 0.01161591149866581, + -0.04173237457871437, + -0.09105604887008667, + 0.016705932095646858, + 0.06515715271234512, + 0.01980687491595745, + -0.05953676626086235, + 0.07921845465898514, + 0.017672307789325714, + -0.04703389108181, + -0.02769666165113449, + -0.018274715170264244, + -0.0037135351449251175, + 0.054596658796072006, + 0.03250932693481445, + 0.0680638924241066, + -0.14276348054409027, + 0.015440505929291248, + 0.0695575401186943, + 0.021086610853672028, + 0.011128295212984085, + 0.06974122673273087, + 0.031729523092508316, + 0.06152775138616562, + -0.008948953822255135, + -0.13182571530342102, + 0.00218946672976017, + 0.02279028296470642, + 0.20337864756584167, + 0.054905910044908524, + 0.03952765837311745, + -0.033137332648038864, + -0.014682662673294544, + 0.028517410159111023, + 0.043260034173727036, + -0.0337076336145401, + -0.015918007120490074, + -0.051555465906858444, + 0.037925053387880325, + 0.01564881019294262, + -0.06646101176738739, + 0.028550291433930397, + -0.04918268322944641, + -0.07216301560401917, + 0.005638837348669767, + 0.019693512469530106, + 0.023500939831137657, + -0.03864675760269165, + -0.08030619472265244, + 0.020741727203130722, + 0.012449868023395538, + 0.05376605689525604, + -0.03733784705400467, + -0.07055991888046265, + 0.05034656822681427, + 0.019116384908556938, + 0.13714222609996796, + 0.02610844187438488, + 0.010981499217450619, + 0.050358258187770844, + 0.05883612111210823, + 0.016459742560982704, + -0.010987408459186554, + 0.05722843110561371, + -0.10270299017429352, + 0.037967748939991, + -0.015438271686434746, + -0.02702862210571766, + -0.014715678058564663, + -0.05779167264699936, + -0.05235057324171066, + -0.03175678104162216, + 0.025717176496982574, + 0.06395261734724045, + 0.02594028227031231, + 0.017970839515328407, + -0.03976927697658539, + 0.00661240192130208, + -0.009164335206151009, + 0.09178426116704941, + -0.02699059434235096, + -0.06388107687234879, + -0.016370121389627457, + -0.009020576253533363, + -0.03092987649142742, + -0.06183874234557152, + -0.0180576890707016, + -0.02544914372265339, + -0.010464482940733433, + 0.029980337247252464, + -0.028352532535791397, + 0.034935351461172104, + 0.03903516009449959, + -0.020764637738466263, + -0.09939663857221603, + 0.07143736630678177, + -0.025867007672786713, + 0.03331582248210907, + 0.02636783942580223, + -0.04471259564161301, + -0.03493966907262802, + -0.02598254755139351, + -0.007126587443053722, + -0.049862321466207504, + -0.029298856854438782, + -0.029561486095190048, + 0.018025649711489677, + -0.05014530569314957, + -0.016919530928134918, + 0.02609364688396454, + -0.08326064795255661, + 0.0005639300215989351, + 0.003730056108906865, + -0.014433293603360653, + 0.07145364582538605, + -0.03136894106864929, + -0.001774281612597406, + 0.02390950731933117, + -0.06316923350095749, + -0.01884227804839611, + -0.008697183802723885, + 0.05495850369334221, + 0.04107046127319336, + -1.9743371690960823e-33, + 0.06909649819135666, + 0.06068362668156624, + -0.04326024278998375, + 0.12036563456058502, + 0.0564628429710865, + 0.007073580753058195, + -0.07351228594779968, + -0.008141075260937214, + -0.023723287507891655, + 0.09204553067684174, + 0.0725138708949089, + -0.003306215861812234, + -0.005078704096376896, + 0.02078317105770111, + -0.06259957700967789, + -0.014934754930436611, + -0.036620765924453735, + 0.03497700020670891, + -0.16599653661251068, + -0.054068684577941895, + 0.019988862797617912, + 0.03230800852179527, + -0.024264898151159286, + -0.030985290184617043, + -0.002111986046656966, + -0.019450431689620018, + 0.0385572649538517, + -0.018980497494339943, + -0.1639479249715805, + -0.01692492701113224, + -0.029256800189614296, + -0.000284660782199353, + 0.07448267936706543, + 0.009164496324956417, + -0.02416253834962845, + 0.03475199639797211, + -0.004316534847021103, + -0.019546600058674812, + 0.030230484902858734, + -0.011384774930775166, + -0.09241966903209686, + 0.06971527636051178, + -0.0026201161090284586, + -0.04343356192111969, + 0.04768233373761177, + 0.08998240530490875, + -0.01662379875779152, + -0.012406691908836365, + 0.12068454176187515, + 0.010834935121238232, + -0.0943678691983223, + -0.024019336327910423, + -0.030041618272662163, + 0.01125346776098013, + -0.0022980370558798313, + -0.04793564975261688, + -0.041595496237277985, + 0.04915081709623337, + -0.00771972443908453, + 0.008286263793706894, + 0.045917123556137085, + -0.03662121295928955, + -0.08410825580358505, + -0.07892569899559021, + 0.009246494621038437, + 0.00492823263630271, + -0.032634440809488297, + 0.01820903830230236, + 0.07317457348108292, + -0.05841909348964691, + 0.04086705297231674, + 0.035775989294052124, + -0.0372297503054142, + 0.03172651305794716, + -0.03813464194536209, + 0.045901838690042496, + 0.05673473700881004, + -0.11318369209766388, + 0.030289102345705032, + -0.06388255953788757, + 0.029650086537003517, + 0.046296458691358566, + -0.01870887540280819, + 0.03380555659532547, + -0.050260525196790695, + -0.042272742837667465, + 0.05468422919511795, + 0.055607717484235764, + 0.0005520437262021005, + 0.11440607160329819, + -0.09377353638410568, + -0.08517127484083176, + 0.07764735072851181, + -0.04073220118880272, + -0.01322183758020401, + 9.797727965359496e-34, + 0.039414212107658386, + -0.007262887433171272, + -0.010115298442542553, + 0.0036341960076242685, + -0.017191896215081215, + 0.056529514491558075, + 0.08466152846813202, + 0.03157017007470131, + 0.019177952781319618, + 0.09554536640644073, + -0.034216124564409256, + 0.028533944860100746, + -0.03372972458600998, + 0.003520046127960086, + -0.028635919094085693, + 0.03862525522708893, + -0.013288258574903011, + 0.024616550654172897, + 0.05095423012971878, + -0.03694361820816994, + 0.0007679823320358992, + 0.03587306663393974, + -0.05607658997178078, + 0.03877461329102516, + 0.03942888602614403, + 0.03575853630900383, + 0.039007529616355896, + 0.029743576422333717, + -0.10075728595256805, + 0.036047741770744324, + 0.0262736976146698, + -0.04733974114060402, + 0.004286520648747683, + -0.006456097587943077, + 0.006705137435346842, + 0.04633691534399986, + -0.05350366234779358, + 0.047190047800540924, + -0.017446991056203842, + -0.02984394133090973, + -0.07776536047458649, + 0.01724528893828392, + -0.040418174117803574, + 0.019540265202522278, + 0.011740191839635372, + -0.03487209230661392, + -0.050598472356796265, + -0.07378245145082474, + -0.013998091220855713, + -0.03729037940502167, + -0.035909973084926605, + -0.013186650350689888, + 0.03214260935783386, + -0.03816276416182518, + -0.025481628254055977, + 0.025651592761278152, + -0.019532768055796623, + 0.058193307369947433, + -0.07784223556518555, + 0.052547637373209, + -0.006107065826654434, + 0.07432299107313156, + 0.03767043352127075, + -0.07889946550130844, + 0.02495471201837063, + 0.09554704278707504, + 0.05599123239517212, + -0.015373441390693188, + -0.06179448589682579, + 0.01883946917951107, + 0.0007881166529841721, + -0.05884451046586037, + -0.01378801092505455, + 0.0020554119255393744, + 0.08671586960554123, + -0.038307756185531616, + 0.09674450755119324, + 0.03964823856949806, + -0.004497049376368523, + -0.03669121861457825, + -0.013157131150364876, + 0.006780704949051142, + -0.05689877271652222, + -0.023578045889735222, + -0.10037544369697571, + -0.03783740848302841, + 0.026617975905537605, + 0.007953863590955734, + -0.01691501960158348, + 0.025987541303038597, + -0.1221504658460617, + -0.015130352228879929, + 0.04856139048933983, + -0.01871543377637863, + -0.03459981828927994, + -2.234268769996106e-08, + 0.01991564966738224, + -0.14835649728775024, + 0.01787193864583969, + 0.030120637267827988, + -0.04433185234665871, + -0.0014250918757170439, + 0.06646184623241425, + -0.012735221534967422, + 0.020358718931674957, + -0.030856939032673836, + -0.01427954901009798, + 0.08785762637853622, + -0.060976315289735794, + -0.06660205125808716, + 0.003349367529153824, + 0.06334381550550461, + -0.13907574117183685, + 0.045501209795475006, + -0.06726519018411636, + -0.042077720165252686, + 0.03904744237661362, + 0.04720291867852211, + 0.05660192295908928, + -0.002123681828379631, + 0.05023430660367012, + 0.025936942547559738, + -0.06756727397441864, + 0.019916735589504242, + 0.08207499980926514, + -0.008354907855391502, + 0.06587222963571548, + 0.026170214638113976, + 0.12251720577478409, + -0.030587902292609215, + -0.0692887157201767, + -0.03631087765097618, + -0.03006346896290779, + 0.02338283881545067, + 0.031397949904203415, + 0.02217009849846363, + -0.08057490736246109, + 0.007813014090061188, + 0.023652605712413788, + -0.0219087116420269, + -0.012455825693905354, + -0.010767973959445953, + 0.032111745327711105, + 0.09238167107105255, + -0.035653796046972275, + -0.10379079729318619, + -0.008837644942104816, + -0.025490352883934975, + 0.04995516687631607, + 0.028965553268790245, + -0.07033649832010269, + -0.030288074165582657, + 0.039701372385025024, + 0.059384122490882874, + 0.07855667918920517, + -0.008058782666921616, + 0.0402359701693058, + 0.0781819149851799, + 0.004359371494501829, + -0.03779033198952675 + ], + "align-center-horizontal-bold||alignment,arrangement,layout,centered,middle": [ + 0.0006671403534710407, + -0.016495872288942337, + -0.07061757892370224, + 0.02221853658556938, + 0.023659560829401016, + 0.03539387881755829, + -0.06541069597005844, + -0.04948372393846512, + 0.05771931633353233, + 0.04392395541071892, + -0.01888890750706196, + 0.08349054306745529, + 0.04255412518978119, + 0.0017172368243336678, + -0.043658144772052765, + -0.005491027608513832, + -0.0550084114074707, + 0.014375066384673119, + 0.020223019644618034, + 0.10921956598758698, + -0.09315600246191025, + -0.041739571839571, + -0.004970083013176918, + 0.02680731751024723, + -0.007902292534708977, + 0.09075525403022766, + 0.04171362519264221, + 0.06623176485300064, + -0.017334459349513054, + -0.15514595806598663, + -0.018582286313176155, + 0.013047892600297928, + 0.16989842057228088, + 0.04451427236199379, + 0.018249517306685448, + 0.0040199775248765945, + -0.07586528360843658, + -0.04797344282269478, + 0.045836273580789566, + -0.0034493228886276484, + -0.0255963783711195, + -0.08568383753299713, + 0.029864948242902756, + -0.0076299370266497135, + -0.05902925133705139, + 0.011325255036354065, + -0.14702139794826508, + -0.02204197831451893, + 0.05411655455827713, + 0.010562640614807606, + -0.06327926367521286, + -0.07207822054624557, + -0.08314374089241028, + 0.036608047783374786, + 0.055502183735370636, + 0.04041750356554985, + -0.0707365944981575, + -0.04533401504158974, + 0.10487549751996994, + -0.0730305090546608, + 0.0959276482462883, + 0.031936854124069214, + 0.042724017053842545, + 0.12118268758058548, + 0.030517764389514923, + 0.013239212334156036, + -0.014839699491858482, + 0.04001394286751747, + -0.034731071442365646, + -0.018614832311868668, + -0.027044517919421196, + -0.026714155450463295, + 0.018905114382505417, + -0.059918444603681564, + -0.0008016020292416215, + -0.008014601655304432, + -0.0029136387165635824, + 0.004532176069915295, + -0.04831208661198616, + -0.04572465270757675, + -0.0918666273355484, + 0.08982706815004349, + 0.0010013057617470622, + 0.0556582435965538, + 0.014703377149999142, + 0.016819333657622337, + -0.01849410869181156, + -0.0018964182818308473, + -0.03473925217986107, + -0.044657036662101746, + -0.03635893389582634, + -0.004569328855723143, + -0.042442791163921356, + -0.007400918751955032, + -0.05942080169916153, + 0.06575937569141388, + -0.02510661631822586, + -0.021877853199839592, + -0.06604449450969696, + 0.037266410887241364, + 0.02314690500497818, + 0.0868784487247467, + 0.02419673465192318, + -0.08332756161689758, + -0.015409296378493309, + -0.08456835895776749, + -0.03292619809508324, + -0.009229673072695732, + -0.03515852987766266, + 0.0008628510404378176, + -0.05878731235861778, + -0.019042741507291794, + -0.09757062047719955, + -0.04506545141339302, + -0.05857929587364197, + -0.008588706143200397, + 0.023000378161668777, + 0.022318387404084206, + 0.14021910727024078, + -0.02200227789580822, + 0.02395368367433548, + 0.023777835071086884, + -0.05934666842222214, + -0.0687464252114296, + -0.03350537642836571, + 0.0411677286028862, + 0.02022635191679001, + -2.6205905350575744e-33, + -0.029303478077054024, + -0.0022214113269001245, + -0.01754867099225521, + 0.16342216730117798, + 0.02323979139328003, + -0.0215915460139513, + -0.05682879686355591, + 0.014746199361979961, + -0.009170586243271828, + 0.03151681274175644, + 0.07166971266269684, + 0.07547906786203384, + 0.004313667304813862, + 0.004376405384391546, + -0.0033557319547981024, + -0.060682263225317, + -0.025384163483977318, + 0.04260266199707985, + -0.15490788221359253, + -0.03423328697681427, + -0.03188308700919151, + 0.07670626789331436, + 0.042094893753528595, + -0.015835093334317207, + 0.0010037720203399658, + -0.02668170817196369, + 0.03527792915701866, + 0.01399292703717947, + -0.1602809876203537, + -0.01622929610311985, + 0.027172239497303963, + -0.005432325880974531, + 0.043927036225795746, + -0.024743765592575073, + 0.003389989724382758, + 0.07902325689792633, + -0.017999371513724327, + -0.027653027325868607, + 0.04117630422115326, + 0.08928723633289337, + -0.0877867266535759, + 0.01537879928946495, + -0.023533660918474197, + -0.08217605203390121, + 0.07776373624801636, + 0.15584634244441986, + -0.026251258328557014, + -0.016898121684789658, + 0.11964375525712967, + -0.040518783032894135, + -0.05729760229587555, + 0.015277228318154812, + 0.005749715492129326, + -0.015227386727929115, + 0.015131069347262383, + -0.0033978617284446955, + 0.031706832349300385, + 0.034695882350206375, + 0.04561293125152588, + 0.022993728518486023, + -0.0029181591235101223, + -0.03334508463740349, + -0.031898919492959976, + -0.07273468375205994, + -0.027819540351629257, + -0.05949785187840462, + -0.09485136717557907, + -0.018151430413126945, + 0.10823860764503479, + -0.015902796760201454, + 0.020730549469590187, + 0.013724272139370441, + 0.03217791020870209, + 0.09604130685329437, + -0.036483343690633774, + 0.020576056092977524, + -0.001622603042051196, + -0.030479056760668755, + -0.027671286836266518, + -0.04990639165043831, + -0.03920678421854973, + 0.04892624169588089, + -0.0019292444922029972, + 0.05197029188275337, + -0.05731530487537384, + -0.03016827441751957, + 0.030088553205132484, + 0.006662542000412941, + 0.005796252749860287, + 0.06704781204462051, + -0.05933903157711029, + -0.009814932011067867, + 0.04528793692588806, + -0.05292454734444618, + -0.03830292448401451, + -9.127269150333658e-34, + 0.03342888876795769, + 0.035069551318883896, + -0.02000204101204872, + 0.005883462261408567, + -0.023456983268260956, + 0.0994224026799202, + 0.06740318983793259, + -0.01648191548883915, + 0.0016212639166042209, + 0.08966722339391708, + 0.02301025576889515, + -0.02237069047987461, + -0.07446944713592529, + -0.023348188027739525, + -0.055145446211099625, + 0.07032013684511185, + 0.07070942968130112, + 0.020043103024363518, + -0.002211448037996888, + -0.02553717978298664, + 0.020641019567847252, + 0.0361844003200531, + -0.08456951379776001, + 0.051971301436424255, + 0.014773113653063774, + 0.018127910792827606, + -0.0027042825240641832, + -0.014305169694125652, + -0.00912126712501049, + 0.04155715927481651, + 0.012192119844257832, + -0.10003785043954849, + 0.019696496427059174, + 0.05451277643442154, + -0.033868543803691864, + -0.02866193652153015, + -0.04976917803287506, + 0.07774170488119125, + -0.010525679215788841, + -0.005976002663373947, + -0.004613348748534918, + 0.015742097049951553, + -0.006234625820070505, + 0.03333738073706627, + 0.03749389201402664, + -0.02158271335065365, + -0.005649837665259838, + -0.053990911692380905, + -0.04819716140627861, + 0.0684884637594223, + -0.02869023010134697, + 0.02102419175207615, + 0.015584798529744148, + -0.07684235274791718, + -0.03302813321352005, + 0.0318332239985466, + -0.02841903828084469, + -0.0033809072338044643, + -0.05036317557096481, + 0.03582654148340225, + 0.01897798664867878, + 0.05100319907069206, + 0.0052834562957286835, + -0.0195761825889349, + -0.007157572545111179, + 0.033173322677612305, + 0.05126498267054558, + -0.04128102585673332, + -0.051211629062891006, + 0.02911810204386711, + 0.026643764227628708, + -0.058452486991882324, + -0.005971002858132124, + -0.014103956520557404, + 0.027428142726421356, + -0.0402909554541111, + 0.04273543134331703, + 0.030538354068994522, + 0.022474244236946106, + -0.01782039739191532, + 0.012937557883560658, + 0.03080536238849163, + -0.0341777540743351, + 0.019681841135025024, + -0.09386567026376724, + 0.03976404666900635, + 0.04052289202809334, + -0.030232764780521393, + 0.025357402861118317, + -0.03272818401455879, + -0.06198927015066147, + -0.009569214656949043, + 0.006563505157828331, + -0.054858896881341934, + -0.024937395006418228, + -2.3359767453712266e-08, + -0.006476652342826128, + -0.1479072868824005, + -0.004914336372166872, + 0.022771693766117096, + -0.03194401413202286, + -0.06493519246578217, + 0.04363447427749634, + -0.051430873572826385, + 0.0006628577830269933, + 0.021818149834871292, + 0.008111127652227879, + 0.04739101603627205, + -0.08543245494365692, + -0.03902561590075493, + -0.003262345679104328, + 0.04320921748876572, + -0.10828306525945663, + 0.08113258332014084, + -0.03783249855041504, + -0.06386250257492065, + 0.013078207150101662, + 0.043420691043138504, + 0.02341880090534687, + -0.02716951258480549, + 0.08510778099298477, + 0.05108889192342758, + -0.07500047236680984, + 0.04968209192156792, + 0.0340995118021965, + 0.009356028400361538, + 0.005300476215779781, + 0.016641011461615562, + 0.08438152819871902, + -0.03405897319316864, + -0.08297392725944519, + -0.06453807651996613, + -0.028866304084658623, + 0.03370184451341629, + 0.03212010860443115, + 0.016959719359874725, + -0.012247041799128056, + 0.00477472972124815, + 0.04423211142420769, + -0.025515370070934296, + -0.008776728063821793, + -0.018702363595366478, + -0.02348669245839119, + 0.114998959004879, + -0.04514896124601364, + -0.11925046890974045, + -0.013033568859100342, + -0.001407058909535408, + 0.03545663505792618, + 0.0273890420794487, + -0.045573264360427856, + 0.0028173867613077164, + 0.02336352877318859, + -0.008137647993862629, + 0.07580649852752686, + -0.07802502810955048, + 0.07573113590478897, + 0.0778207778930664, + 0.014297856949269772, + -0.0038348461966961622 + ], + "align-center-horizontal-simple-bold||alignment,arrangement,layout,centered,middle": [ + 0.0065981317311525345, + -0.016382325440645218, + -0.062324702739715576, + 0.02074454538524151, + 0.02984301745891571, + 0.03686610236763954, + -0.07461217790842056, + -0.02104855701327324, + 0.03444862365722656, + 0.04578183591365814, + -0.006714615970849991, + 0.07377496361732483, + 0.03871743381023407, + -0.007821914739906788, + -0.047781459987163544, + -0.009081428870558739, + -0.053205061703920364, + 0.002303737448528409, + 0.023000527173280716, + 0.10128016769886017, + -0.10067466646432877, + -0.04039337486028671, + -0.021623363718390465, + 0.022945687174797058, + -0.005653968546539545, + 0.09390511363744736, + 0.042174454778432846, + 0.07853586226701736, + -0.0005786149995401502, + -0.14959682524204254, + -0.013659996911883354, + 0.012412427924573421, + 0.17408888041973114, + 0.04908863455057144, + 0.010124893859028816, + -0.0026439777575433254, + -0.06140942499041557, + -0.042139794677495956, + 0.035853635519742966, + -0.016307104378938675, + -0.03050776943564415, + -0.0814209133386612, + 0.03403649479150772, + 0.003628658363595605, + -0.07322370260953903, + -0.0004673567309509963, + -0.1344657838344574, + -0.027241384610533714, + 0.044909585267305374, + -0.00452777836471796, + -0.048646748065948486, + -0.06404833495616913, + -0.08829231560230255, + 0.02846292033791542, + 0.059363123029470444, + 0.04826045781373978, + -0.08483783155679703, + -0.03824414312839508, + 0.1031637042760849, + -0.07784529775381088, + 0.1020779237151146, + 0.015618237666785717, + 0.04748769849538803, + 0.10849211364984512, + 0.027537046000361443, + 0.0053323605097830296, + -0.018626807257533073, + 0.04160566255450249, + -0.036932118237018585, + -0.03284324333071709, + -0.03531092032790184, + -0.025109900161623955, + -0.0009597422322258353, + -0.04611297324299812, + -0.007204235065728426, + -0.026321278885006905, + -0.0024349030572921038, + 0.007229862734675407, + -0.05359305441379547, + -0.03297436609864235, + -0.10410676151514053, + 0.07660946249961853, + -0.005455419886857271, + 0.07851873338222504, + 0.013439571484923363, + 0.006603500340133905, + -0.014425983652472496, + 0.00523635558784008, + -0.014319846406579018, + -0.048583488911390305, + -0.030949272215366364, + 0.007375436369329691, + -0.03540106117725372, + -0.008749923668801785, + -0.056460652500391006, + 0.06493739783763885, + -0.005240331403911114, + -0.02064661495387554, + -0.09088467806577682, + 0.04680262506008148, + 0.028045954182744026, + 0.08311262726783752, + 0.04248866066336632, + -0.08899368345737457, + -0.017167773097753525, + -0.08265342563390732, + -0.03029930777847767, + -0.024535927921533585, + -0.026349274441599846, + -0.017092404887080193, + -0.055949337780475616, + -0.016090478748083115, + -0.09202965348958969, + -0.04770814999938011, + -0.04262898117303848, + -0.013040709309279919, + 0.009148981422185898, + 0.009892882779240608, + 0.1432420313358307, + -0.006365741603076458, + 0.02212052419781685, + 0.018946902826428413, + -0.06890468299388885, + -0.06512828171253204, + -0.04352127015590668, + 0.05390477925539017, + 0.023583225905895233, + -2.8512669750690477e-33, + -0.016708705574274063, + 0.0259087011218071, + -0.025163521990180016, + 0.16268901526927948, + 0.02441493421792984, + -0.022354457527399063, + -0.057572510093450546, + 0.013552631251513958, + -0.0011270265094935894, + 0.03488380089402199, + 0.08721304684877396, + 0.06288152188062668, + 0.005392984487116337, + 0.014168965630233288, + 0.003339570015668869, + -0.058144018054008484, + -0.019350294023752213, + 0.04733661189675331, + -0.1517815738916397, + -0.044780515134334564, + -0.037664707750082016, + 0.09994460642337799, + 0.046231139451265335, + -0.019611960276961327, + 0.004670942202210426, + -0.022303646430373192, + 0.03340743109583855, + 0.012103527784347534, + -0.1602439433336258, + -0.018947187811136246, + 0.024811461567878723, + -0.014468382112681866, + 0.04126499593257904, + -0.01151317823678255, + 0.010821609757840633, + 0.07179143279790878, + -0.009716536849737167, + -0.02586425095796585, + 0.03899557515978813, + 0.06553472578525543, + -0.0967521071434021, + 0.02335193008184433, + -0.01696852408349514, + -0.08683150261640549, + 0.08196036517620087, + 0.156137615442276, + -0.031099442392587662, + -0.01721314527094364, + 0.13636313378810883, + -0.04565348103642464, + -0.0637628510594368, + 0.019013892859220505, + 0.008836107328534126, + -0.007887299172580242, + 0.023779703304171562, + 0.01815919764339924, + 0.02814461663365364, + 0.03022320382297039, + 0.03495568409562111, + 0.022794773802161217, + -0.006310525815933943, + -0.013300731778144836, + -0.03852088376879692, + -0.06365051120519638, + -0.018363909795880318, + -0.042243409901857376, + -0.08800666779279709, + -0.027377134189009666, + 0.10235641896724701, + -0.006298311520367861, + 0.016964713111519814, + 0.0207365732640028, + 0.01887592300772667, + 0.08071200549602509, + -0.01896192692220211, + 0.02524517849087715, + 0.022196859121322632, + -0.05810346081852913, + -0.031541574746370316, + -0.05025196075439453, + -0.036857400089502335, + 0.0566348098218441, + -0.008972915820777416, + 0.055576689541339874, + -0.07937975972890854, + -0.03190309554338455, + 0.034354303032159805, + 0.017097363248467445, + -0.004919559694826603, + 0.056284718215465546, + -0.0640273317694664, + -0.008974448777735233, + 0.036053482443094254, + -0.048058610409498215, + -0.03178723156452179, + -1.8437009003048513e-34, + 0.02391442097723484, + 0.025824110954999924, + -0.01665327697992325, + 0.010407160967588425, + -0.027518978342413902, + 0.10003628581762314, + 0.08572541177272797, + -0.01787853240966797, + 0.021550746634602547, + 0.0865560993552208, + 0.012958466075360775, + -0.02457064762711525, + -0.0871223658323288, + -0.018725553527474403, + -0.05135466158390045, + 0.07113242149353027, + 0.056989263743162155, + 0.030591480433940887, + 0.008170612156391144, + -0.024671975523233414, + 0.02639739029109478, + 0.04454999417066574, + -0.09637193381786346, + 0.04538989067077637, + 0.028311090543866158, + 0.024895746260881424, + -0.004178726114332676, + -0.014204800128936768, + -0.01537912618368864, + 0.02599232830107212, + 0.012243039906024933, + -0.10063815116882324, + 0.020974719896912575, + 0.04044536501169205, + -0.038137003779411316, + -0.024423837661743164, + -0.06432082504034042, + 0.0716743990778923, + -0.012932040728628635, + -0.015595661476254463, + -0.01213047280907631, + 0.029403265565633774, + -0.004385083448141813, + 0.029611269012093544, + 0.03330811485648155, + -0.022490346804261208, + 0.0009541643667034805, + -0.0695648342370987, + -0.05406567454338074, + 0.04978873208165169, + -0.03471830487251282, + 0.012826971709728241, + 0.009774078615009785, + -0.05865773558616638, + -0.029480639845132828, + 0.0317947082221508, + -0.01861509494483471, + 0.0073380800895392895, + -0.039200324565172195, + 0.03149246796965599, + 0.009605178609490395, + 0.05302799865603447, + -0.012439859099686146, + -0.01291027944535017, + -0.015709001570940018, + 0.030064478516578674, + 0.04936057701706886, + -0.05076777935028076, + -0.06483885645866394, + 0.0248111505061388, + 0.02483964152634144, + -0.04723634198307991, + 0.000444762030383572, + -0.026726877316832542, + 0.031092887744307518, + -0.03168461099267006, + 0.0392899215221405, + 0.023220248520374298, + 0.011752844788134098, + -0.0296921469271183, + 0.026183824986219406, + 0.022568153217434883, + -0.03438481688499451, + 0.004841757006943226, + -0.07788699120283127, + 0.036632273346185684, + 0.04404352232813835, + -0.036983758211135864, + 0.03503819927573204, + -0.025616107508540154, + -0.07372681796550751, + 0.011731596663594246, + 0.02443956397473812, + -0.031814441084861755, + -0.03814084827899933, + -2.3981874264222824e-08, + -0.014720285311341286, + -0.15417563915252686, + -0.00585714727640152, + 0.01978142559528351, + -0.02509363926947117, + -0.055516403168439865, + 0.04574214294552803, + -0.05019180104136467, + -0.006521235685795546, + 0.028219595551490784, + 0.005085702985525131, + 0.04121175780892372, + -0.09282413870096207, + -0.014099681749939919, + -0.013653530739247799, + 0.06694146990776062, + -0.09737160801887512, + 0.07623174786567688, + -0.03047160990536213, + -0.05472201108932495, + 0.0064258878119289875, + 0.052437976002693176, + 0.027742212638258934, + -0.02721528150141239, + 0.06868299096822739, + 0.055659081786870956, + -0.05629103258252144, + 0.06979118287563324, + 0.042987264692783356, + 0.002177585382014513, + 0.013698846101760864, + 0.02293461374938488, + 0.09474776685237885, + -0.029079075902700424, + -0.09240158647298813, + -0.034173544496297836, + -0.026823749765753746, + 0.038032740354537964, + 0.013925228267908096, + 0.007991175167262554, + -0.010225215926766396, + 0.010255195200443268, + 0.03340061753988266, + -0.02945270761847496, + -0.004006682895123959, + -0.016130397096276283, + -0.012829978950321674, + 0.09614081680774689, + -0.040483519434928894, + -0.13800983130931854, + -0.011142930947244167, + -0.007199764717370272, + 0.03676554560661316, + 0.012735285796225071, + -0.04695998504757881, + 0.009833045303821564, + 0.04125528410077095, + 0.0031984508968889713, + 0.05919545888900757, + -0.07368818670511246, + 0.08414176106452942, + 0.10949952900409698, + 0.0034965521190315485, + -0.0010872305138036609 + ], + "align-center-vertical-bold||alignment,arrangement,layout,centered,middle": [ + -0.0050421226769685745, + -0.013828877359628677, + -0.07208842784166336, + 0.014523668214678764, + 0.017834942787885666, + 0.034789230674505234, + -0.0827985480427742, + -0.020425766706466675, + 0.06387441605329514, + 0.04284225404262543, + -0.02387402206659317, + 0.1019434705376625, + 0.042411524802446365, + -0.013807459734380245, + -0.04271934926509857, + 0.012684538960456848, + -0.03838985413312912, + 0.02062995545566082, + 0.004622356034815311, + 0.09701903909444809, + -0.10153166949748993, + -0.040803831070661545, + 0.004261968657374382, + 0.03058074787259102, + 0.000866672839038074, + 0.09556069225072861, + 0.040331073105335236, + 0.07356279343366623, + -0.0018567957449704409, + -0.14074842631816864, + -0.022584853693842888, + 0.017339730635285378, + 0.18001370131969452, + 0.044096529483795166, + 0.01775304228067398, + -0.00047740142326802015, + -0.062051527202129364, + -0.0460365004837513, + 0.03486890345811844, + -0.020114583894610405, + -0.011808673851191998, + -0.10963892936706543, + 0.028622061014175415, + -0.009049030020833015, + -0.06294108927249908, + 0.026429345831274986, + -0.12244254350662231, + -0.029812784865498543, + 0.033987585455179214, + 0.011814798228442669, + -0.051798153668642044, + -0.07992983609437943, + -0.08852938562631607, + 0.02845960482954979, + 0.06298725306987762, + 0.049722641706466675, + -0.07223211228847504, + -0.06210486218333244, + 0.10935473442077637, + -0.07346972078084946, + 0.10342966020107269, + 0.04306388646364212, + 0.017616325989365578, + 0.1302419900894165, + 0.02789873257279396, + 0.018355898559093475, + -0.02295432798564434, + 0.05806794390082359, + -0.03420862928032875, + -0.013780232518911362, + -0.01772380992770195, + -0.02262439765036106, + 0.02614295482635498, + -0.054891955107450485, + 0.0024238573387265205, + -0.015475531108677387, + -0.0006195589667186141, + -0.006690302398055792, + -0.029640348628163338, + -0.04144681245088577, + -0.08489882200956345, + 0.07630129903554916, + -0.014558074995875359, + 0.06364861130714417, + 0.011855138465762138, + 0.017684761434793472, + -0.0008710524998605251, + -0.006057860795408487, + -0.04479002207517624, + -0.046358373016119, + -0.023792043328285217, + -0.015003935433924198, + -0.041847024112939835, + -0.009710643440485, + -0.06032462790608406, + 0.056870438158512115, + -0.014981524087488651, + -0.05431274697184563, + -0.059193167835474014, + 0.04373609647154808, + 0.019888756796717644, + 0.07558619976043701, + 0.037057556211948395, + -0.0663832277059555, + -0.02707011066377163, + -0.09424789994955063, + -0.022906478494405746, + -0.004673852119594812, + -0.05294405668973923, + 0.007590051274746656, + -0.04611822962760925, + -0.024954786524176598, + -0.08252549916505814, + -0.03852742910385132, + -0.06535053998231888, + -0.0027982210740447044, + 0.010962605476379395, + 0.004702132660895586, + 0.13271410763263702, + -0.03930768370628357, + 0.015657715499401093, + 0.028015831485390663, + -0.059373557567596436, + -0.06526968628168106, + -0.02883296273648739, + 0.03989959880709648, + 0.028122184798121452, + -2.4215075261053656e-33, + -0.014761416241526604, + 0.005596150644123554, + -0.006519610527902842, + 0.16297882795333862, + 0.04060717672109604, + -0.00895506888628006, + -0.06053292006254196, + 0.009469862096011639, + -0.013734891079366207, + 0.06646423041820526, + 0.06047465279698372, + 0.07913465052843094, + 0.004048315342515707, + 0.03026863932609558, + -0.005827749613672495, + -0.0575408972799778, + -0.014151271432638168, + 0.026002109050750732, + -0.15871365368366241, + -0.047722890973091125, + -0.02382994070649147, + 0.0672755092382431, + 0.031028609722852707, + -0.0007455259328708053, + -0.007453397382050753, + -0.029939908534288406, + 0.04746239259839058, + 0.008435018360614777, + -0.17895427346229553, + -0.009558869525790215, + 0.015271090902388096, + 0.0022884036879986525, + 0.04043952003121376, + -0.03858919069170952, + -0.003836859716102481, + 0.09101127833127975, + -0.018673937767744064, + -0.03467541188001633, + 0.04517063498497009, + 0.0900660902261734, + -0.08953255414962769, + 0.011520651169121265, + -0.022089732810854912, + -0.07462067157030106, + 0.0862332358956337, + 0.1418941468000412, + -0.03271081671118736, + -0.028362056240439415, + 0.11123375594615936, + -0.03486434370279312, + -0.057818036526441574, + 0.01052247267216444, + 0.008068018592894077, + -0.01579270325601101, + 0.023178091272711754, + -0.0021749092265963554, + 0.01654179021716118, + 0.03022676333785057, + 0.03612053394317627, + 0.02439737506210804, + 0.0009202716173604131, + -0.03726134076714516, + -0.05261560529470444, + -0.07604324072599411, + -0.02353527955710888, + -0.05316295474767685, + -0.09450800716876984, + -0.002907698741182685, + 0.10996303707361221, + -0.010215873830020428, + 0.03372303768992424, + 0.01398424617946148, + 0.023330742493271828, + 0.07381793856620789, + -0.04400892183184624, + 0.027265390381217003, + 0.0047860946506261826, + -0.03577786684036255, + -0.0179673470556736, + -0.0320638008415699, + -0.030637402087450027, + 0.045624133199453354, + 0.008516197092831135, + 0.051060546189546585, + -0.05462532117962837, + -0.025428717955946922, + 0.031893763691186905, + 0.0002561109431553632, + 0.006804266944527626, + 0.0770844966173172, + -0.06703471392393112, + -0.014852135442197323, + 0.04053375869989395, + -0.04910002648830414, + -0.03661056235432625, + -7.708906646371947e-34, + 0.03289607912302017, + 0.04296859726309776, + -0.012113423086702824, + 0.01112739834934473, + -0.027774758636951447, + 0.09098440408706665, + 0.05650465190410614, + -0.012306311167776585, + -0.0213640034198761, + 0.07896127551794052, + 0.017891572788357735, + -0.009889681823551655, + -0.05132376402616501, + -0.02048303559422493, + -0.040593478828668594, + 0.0658319741487503, + 0.03261705860495567, + 0.008037847466766834, + 0.009482345543801785, + -0.02541700005531311, + 0.020187685266137123, + 0.0400991216301918, + -0.07143357396125793, + 0.048812948167324066, + 0.02859874628484249, + -0.0020184156019240618, + 0.004513221327215433, + -0.00903500709682703, + -0.006188650149852037, + 0.045922961086034775, + 0.02901260368525982, + -0.10540983825922012, + 0.013449208810925484, + 0.05530542507767677, + -0.02694779634475708, + -0.020463036373257637, + -0.036392707377672195, + 0.07506927847862244, + -0.022972865030169487, + -0.02123129740357399, + -0.0057227956131100655, + 0.01684672385454178, + -0.008574255742132664, + 0.019472550600767136, + 0.02622881531715393, + -0.007434512954205275, + -0.012361765839159489, + -0.06269548833370209, + -0.034395743161439896, + 0.04136331379413605, + -0.02778431959450245, + 0.011644700542092323, + 0.026977241039276123, + -0.06235837563872337, + -0.024287628009915352, + 0.02888772450387478, + -0.0016292005311697721, + -0.0005151875666342676, + -0.049576934427022934, + 0.017645003274083138, + 0.022611556574702263, + 0.02910393849015236, + 0.00239969021640718, + -0.027599534019827843, + 0.002078075660392642, + 0.048374470323324203, + 0.05977649614214897, + -0.01531268935650587, + -0.07379879802465439, + 0.03359990939497948, + -0.004199457820504904, + -0.05811496824026108, + -0.0010233271168544888, + -0.02541487291455269, + 0.02301592193543911, + -0.03777773305773735, + 0.05094921216368675, + 0.041075076907873154, + 0.02394924871623516, + -0.005393869709223509, + 0.004201000090688467, + 0.032384809106588364, + -0.03929785639047623, + 0.015756888315081596, + -0.11568884551525116, + 0.047040905803442, + 0.039383240044116974, + -0.02040722966194153, + 0.031208869069814682, + -0.043245185166597366, + -0.08583953231573105, + 0.0004147844738326967, + -0.01783912256360054, + -0.0574655756354332, + -0.017463717609643936, + -2.300782675490609e-08, + -0.019093943759799004, + -0.15065471827983856, + -0.005013932939618826, + 0.02327553927898407, + -0.03540889173746109, + -0.06538842618465424, + 0.04149051010608673, + -0.03890102356672287, + 0.012015569023787975, + 0.021673185750842094, + 0.004799970891326666, + 0.04999115690588951, + -0.08293464779853821, + -0.04855317249894142, + 0.0046725827269256115, + 0.04903159290552139, + -0.10894778370857239, + 0.08644534647464752, + -0.03501342609524727, + -0.05834866315126419, + 0.020181719213724136, + 0.058603644371032715, + 0.04761344566941261, + -0.024729590862989426, + 0.07570187747478485, + 0.04916972666978836, + -0.08186230063438416, + 0.034404292702674866, + 0.038258057087659836, + 0.001980894710868597, + 0.01640826091170311, + 0.022219093516469002, + 0.10122409462928772, + -0.05564733222126961, + -0.09209322184324265, + -0.05115693062543869, + -0.02301207184791565, + 0.02670998126268387, + 0.024645812809467316, + 0.0019452456617727876, + -0.006782847456634045, + -0.00421679113060236, + 0.05016488581895828, + -0.02606351114809513, + -0.008718903176486492, + -0.018856342881917953, + -0.00909686740487814, + 0.12489517778158188, + -0.04187322407960892, + -0.11362398415803909, + -0.03450595214962959, + 0.0019612025935202837, + 0.05121495947241783, + 0.03980178385972977, + -0.059401776641607285, + -0.010557164438068867, + 0.016105864197015762, + -0.001993709709495306, + 0.07137644290924072, + -0.07873962819576263, + 0.08494358509778976, + 0.06810600310564041, + 0.0020592170767486095, + -0.017906198278069496 + ], + "align-center-vertical-simple-bold||alignment,arrangement,layout,centered,middle": [ + 0.0006181888747960329, + -0.01282871887087822, + -0.06387815624475479, + 0.012865494936704636, + 0.023869959637522697, + 0.03731905296444893, + -0.0916859358549118, + 0.007145077455788851, + 0.04076015576720238, + 0.044639091938734055, + -0.011681576259434223, + 0.08858078718185425, + 0.03857862204313278, + -0.020807446911931038, + -0.0475747212767601, + 0.007868338376283646, + -0.039883941411972046, + 0.009153736755251884, + 0.00790307205170393, + 0.09063137322664261, + -0.10916435718536377, + -0.03947696089744568, + -0.015249869786202908, + 0.025782953947782516, + 0.0010023870272561908, + 0.09942794591188431, + 0.039173904806375504, + 0.08462009578943253, + 0.013979838229715824, + -0.13759177923202515, + -0.0182749442756176, + 0.016638243570923805, + 0.18155714869499207, + 0.0475526861846447, + 0.00910984817892313, + -0.007765586022287607, + -0.048913341015577316, + -0.04062480852007866, + 0.023785077035427094, + -0.03233221173286438, + -0.016549501568078995, + -0.10416943579912186, + 0.03240373730659485, + 0.002972734160721302, + -0.0750529021024704, + 0.014467176981270313, + -0.11232520639896393, + -0.03416812792420387, + 0.028090825304389, + -0.0019889669492840767, + -0.038835808634757996, + -0.07078666239976883, + -0.09198269993066788, + 0.020391836762428284, + 0.06644982844591141, + 0.05732065439224243, + -0.08545204997062683, + -0.0533304288983345, + 0.10759545862674713, + -0.07840733975172043, + 0.10889655351638794, + 0.02467339113354683, + 0.023851344361901283, + 0.1184157207608223, + 0.02576589211821556, + 0.008936289697885513, + -0.025456048548221588, + 0.057837922126054764, + -0.03634639456868172, + -0.028409074991941452, + -0.027804439887404442, + -0.022333433851599693, + 0.005075538065284491, + -0.03884115070104599, + -0.001990118296816945, + -0.03368477523326874, + -0.00015658140182495117, + -0.0029364326037466526, + -0.03679397329688072, + -0.03004697524011135, + -0.09783412516117096, + 0.0647704005241394, + -0.020336294546723366, + 0.08601773530244827, + 0.01046502124518156, + 0.007552254479378462, + 0.003335439134389162, + 0.0027240952476859093, + -0.023468883708119392, + -0.05116504430770874, + -0.0188132394105196, + -0.0022650803439319134, + -0.034558121114969254, + -0.010722356848418713, + -0.05526979640126228, + 0.05619984492659569, + 0.0027721370570361614, + -0.05165659636259079, + -0.08506861329078674, + 0.05212431028485298, + 0.024043990299105644, + 0.07384558022022247, + 0.055313486605882645, + -0.07353949546813965, + -0.028749050572514534, + -0.09175220876932144, + -0.02247786708176136, + -0.019727187231183052, + -0.04238523170351982, + -0.010076518170535564, + -0.04590639844536781, + -0.021581323817372322, + -0.07757409662008286, + -0.04387644678354263, + -0.04947568103671074, + -0.008069822564721107, + -0.0010355256963521242, + -0.006835017818957567, + 0.1367376744747162, + -0.02226916328072548, + 0.014643684029579163, + 0.02407497726380825, + -0.06924944370985031, + -0.06224567070603371, + -0.038730598986148834, + 0.05204575136303902, + 0.030763376504182816, + -2.6723631633586266e-33, + -0.002989888656884432, + 0.03157520294189453, + -0.016787966713309288, + 0.1633853316307068, + 0.03966988995671272, + -0.010934894904494286, + -0.060013968497514725, + 0.010480040684342384, + -0.003501836908981204, + 0.06810597330331802, + 0.07660321891307831, + 0.06616740673780441, + 0.005391908809542656, + 0.03758435323834419, + 0.004517802968621254, + -0.05417013168334961, + -0.008325732313096523, + 0.03166550025343895, + -0.15549522638320923, + -0.05755692347884178, + -0.03005017153918743, + 0.0904700756072998, + 0.03746166452765465, + -0.005979644600301981, + -0.002947744447737932, + -0.02423281781375408, + 0.04501054808497429, + 0.006323919165879488, + -0.17841731011867523, + -0.013026539236307144, + 0.01423605065792799, + -0.0067630913108587265, + 0.03899393603205681, + -0.023955266922712326, + 0.005192583426833153, + 0.08383169770240784, + -0.007303352002054453, + -0.033549096435308456, + 0.04294310510158539, + 0.06590324640274048, + -0.09832247346639633, + 0.019207444041967392, + -0.016744859516620636, + -0.07887960970401764, + 0.09003572165966034, + 0.14127051830291748, + -0.034827664494514465, + -0.0278322733938694, + 0.12697486579418182, + -0.03928958252072334, + -0.06412193179130554, + 0.01695922017097473, + 0.01115216501057148, + -0.009352423250675201, + 0.031340885907411575, + 0.019330302253365517, + 0.014675149694085121, + 0.02677711844444275, + 0.02715466544032097, + 0.02424452267587185, + -0.003993709571659565, + -0.016831405460834503, + -0.05861850455403328, + -0.06706146150827408, + -0.016085732728242874, + -0.03676335886120796, + -0.08931578695774078, + -0.013505985960364342, + 0.10471682995557785, + -0.001964263152331114, + 0.026651768013834953, + 0.022519268095493317, + 0.010536270216107368, + 0.05905437842011452, + -0.02580137737095356, + 0.03191157430410385, + 0.027997789904475212, + -0.06322123855352402, + -0.023177290335297585, + -0.033737652003765106, + -0.027476299554109573, + 0.053239837288856506, + -4.6561239287257195e-05, + 0.054407477378845215, + -0.07624926418066025, + -0.026847725734114647, + 0.03750831261277199, + 0.009364535100758076, + -0.005378989037126303, + 0.06442451477050781, + -0.0706726610660553, + -0.013021108694374561, + 0.03295709937810898, + -0.044226255267858505, + -0.027996597811579704, + -8.876222127906404e-35, + 0.021234123036265373, + 0.03151414170861244, + -0.007869229651987553, + 0.01631779968738556, + -0.03055214323103428, + 0.09161176532506943, + 0.07724917680025101, + -0.014254510402679443, + -0.0005347065743990242, + 0.077113576233387, + 0.006638555787503719, + -0.012787840329110622, + -0.0649217888712883, + -0.017111845314502716, + -0.03741326183080673, + 0.06834667176008224, + 0.022210819646716118, + 0.01665830798447132, + 0.017956111580133438, + -0.024391714483499527, + 0.02624860219657421, + 0.049016322940588, + -0.08421388268470764, + 0.04293394833803177, + 0.04106956347823143, + 0.006982299964874983, + 0.0018246961990371346, + -0.009099593386054039, + -0.011796670034527779, + 0.02966799959540367, + 0.028910037130117416, + -0.10595858842134476, + 0.015543034300208092, + 0.03924009948968887, + -0.031092403456568718, + -0.015286151319742203, + -0.05038630589842796, + 0.07056042551994324, + -0.024546492844820023, + -0.03099047765135765, + -0.012856043875217438, + 0.029096348211169243, + -0.005117403343319893, + 0.015146452002227306, + 0.023737816140055656, + -0.009293007664382458, + -0.006350616458803415, + -0.07894018292427063, + -0.04301464557647705, + 0.024952074512839317, + -0.035893652588129044, + 0.005624112207442522, + 0.019738972187042236, + -0.044809840619564056, + -0.020587600767612457, + 0.02961900644004345, + 0.006128841545432806, + 0.009820467792451382, + -0.03830074518918991, + 0.014813654124736786, + 0.011484973132610321, + 0.0318666510283947, + -0.015324684791266918, + -0.019655946642160416, + -0.007214030716568232, + 0.043145306408405304, + 0.0568421334028244, + -0.02730143442749977, + -0.08705238252878189, + 0.029577776789665222, + -0.004364549648016691, + -0.04612328112125397, + 0.005511036608368158, + -0.03960171714425087, + 0.025499222800135612, + -0.02962137944996357, + 0.047182049602270126, + 0.03314680978655815, + 0.01317119225859642, + -0.01840178109705448, + 0.019375456497073174, + 0.023380467668175697, + -0.03741631656885147, + 0.00048557596164755523, + -0.09709116816520691, + 0.042288199067115784, + 0.04364795610308647, + -0.026779916137456894, + 0.040274422615766525, + -0.0347229540348053, + -0.09672647714614868, + 0.019635071977972984, + 0.0032798796892166138, + -0.03486856818199158, + -0.03108830563724041, + -2.363188933429683e-08, + -0.026858802884817123, + -0.1575808823108673, + -0.005177620332688093, + 0.020653000101447105, + -0.028753850609064102, + -0.05568915978074074, + 0.044820304960012436, + -0.03669856861233711, + 0.0047490568831563, + 0.027941113337874413, + 0.003313098568469286, + 0.04363049194216728, + -0.09136905521154404, + -0.02029605396091938, + -0.004552981350570917, + 0.07259523868560791, + -0.09725194424390793, + 0.08235383778810501, + -0.02736707590520382, + -0.04987303540110588, + 0.013636528514325619, + 0.06521634012460709, + 0.049797553569078445, + -0.025479495525360107, + 0.059492047876119614, + 0.0535716786980629, + -0.06194901838898659, + 0.05447297915816307, + 0.04895441606640816, + -0.006072313990443945, + 0.022341413423419, + 0.028496619313955307, + 0.10989192873239517, + -0.04715879634022713, + -0.10071451961994171, + -0.02248908393085003, + -0.021560829132795334, + 0.031039614230394363, + 0.005570164881646633, + -0.007011535111814737, + -0.004667866509407759, + 0.0016316405963152647, + 0.03747555986046791, + -0.02895962819457054, + -0.004092327319085598, + -0.016803395003080368, + 0.0007946144323796034, + 0.10440509021282196, + -0.03772711008787155, + -0.1349504590034485, + -0.03089994564652443, + -0.0033594206906855106, + 0.050522297620773315, + 0.023673495277762413, + -0.057317595928907394, + -0.0008976877434179187, + 0.03517267480492592, + 0.005568864289671183, + 0.0559810996055603, + -0.07476355135440826, + 0.09033519774675369, + 0.09979991614818573, + -0.007403520401567221, + -0.014376500621438026 + ], + "align-left-bold||alignment,arrangement,layout,flush left": [ + -0.016709154471755028, + 0.011457345448434353, + -0.026984428986907005, + 0.12027731537818909, + -0.020316286012530327, + 0.01951656863093376, + -0.06279503554105759, + -0.09782934188842773, + 0.04047798365354538, + 0.03423260152339935, + -0.010974724777042866, + 0.08581824600696564, + 0.021471306681632996, + -0.044103991240262985, + -0.024598274379968643, + 0.015965308994054794, + -0.030931152403354645, + 0.05337095633149147, + 0.023821193724870682, + 0.10848858207464218, + -0.1812317967414856, + 0.028245404362678528, + 0.015306639485061169, + 0.04375592619180679, + 0.002960821148008108, + 0.06391694396734238, + 0.0724162682890892, + 0.008781937882304192, + -0.012589331716299057, + -0.14636939764022827, + 0.01420921366661787, + 0.03360411524772644, + 0.1700850874185562, + 0.030356500297784805, + 0.016759423539042473, + 0.03535821661353111, + -0.06443961709737778, + -0.024962540715932846, + 0.04277358949184418, + -0.023288097232580185, + -0.05596507340669632, + -0.06308935582637787, + 0.028595108538866043, + -0.003080638824030757, + -0.06527411937713623, + -0.012668267823755741, + -0.09796522557735443, + -0.028311043977737427, + 0.07077302783727646, + 0.026039158925414085, + -0.06863972544670105, + 0.004067381843924522, + -0.07060600072145462, + 0.047645654529333115, + -0.034040819853544235, + 0.048835016787052155, + -0.05577462911605835, + -0.05761370807886124, + 0.06691519916057587, + -0.006917724385857582, + 0.08744235336780548, + 0.0468297116458416, + 0.011048250831663609, + 0.05054643377661705, + 0.006875667721033096, + 0.04213318973779678, + 0.024079594761133194, + 0.028762049973011017, + -0.03287336602807045, + 0.045547645539045334, + -0.02311275526881218, + 0.010393020696938038, + -0.01771974191069603, + -0.07216307520866394, + -0.024536821991205215, + 0.007121887058019638, + 0.06450772285461426, + 0.04154679551720619, + -0.015598230063915253, + 0.012384173460304737, + -0.053226079791784286, + 0.04613179713487625, + -0.026163557544350624, + 0.043553583323955536, + 0.02692427858710289, + -0.0374172069132328, + -0.05166003853082657, + 0.005713051650673151, + -0.0010448647662997246, + -0.060453128069639206, + -0.01785307191312313, + 0.007093781605362892, + -0.0015457264380529523, + 0.030529659241437912, + -0.02805786393582821, + 0.0280003622174263, + 0.015692003071308136, + 0.032816171646118164, + -0.09371904283761978, + 0.04577748849987984, + -0.0062258257530629635, + 0.08819925785064697, + -0.027142351493239403, + -0.05187077447772026, + -0.026894904673099518, + -0.04110659286379814, + -0.03026222437620163, + -0.031806789338588715, + -0.059525344520807266, + -0.00512855127453804, + 0.01984463445842266, + -0.067201167345047, + -0.06453336775302887, + 0.015555947087705135, + -0.04920245334506035, + 5.910257823416032e-05, + -0.019251883029937744, + -0.013237738981842995, + 0.12080778181552887, + -0.016737528145313263, + -0.0036448067985475063, + 0.01980317384004593, + -0.07336033880710602, + -0.06390926241874695, + -0.0279121994972229, + 0.027601005509495735, + 0.011311599984765053, + -3.0529039291694103e-33, + -0.0039002050179988146, + -0.0028896897565573454, + -0.0018250402063131332, + 0.13890448212623596, + 0.0627223327755928, + 0.011848700232803822, + -0.1029045432806015, + 0.005623134318739176, + -0.030687004327774048, + 0.060234133154153824, + 0.07610391825437546, + 0.022873396053910255, + -0.009019667282700539, + 0.011357111856341362, + -0.06821277737617493, + -0.07166577875614166, + -0.055372729897499084, + 0.06300077587366104, + -0.15667809545993805, + 0.019519921392202377, + -0.043246328830718994, + 0.05033032223582268, + -0.020455610007047653, + -0.016357598826289177, + -0.013656103983521461, + -0.011211717501282692, + 0.047198060899972916, + 0.0019343673484399915, + -0.14800997078418732, + -0.01306953839957714, + -0.010204948484897614, + -0.004126900341361761, + 0.05485527217388153, + -0.03325941786170006, + -0.010747631080448627, + 0.044899217784404755, + -0.02329946681857109, + -0.017785657197237015, + 0.048339370638132095, + 0.07805287092924118, + -0.10092218965291977, + 0.06878425925970078, + 0.003051532432436943, + -0.0761425644159317, + 0.05192921683192253, + 0.09709583222866058, + 0.0057837930507957935, + -0.004296013619750738, + 0.14727893471717834, + 0.008275254629552364, + -0.0677955374121666, + 0.010723092593252659, + -0.04775503650307655, + 0.0010222849668934941, + -0.023397577926516533, + -0.037445276975631714, + 0.026640240103006363, + 0.06317834556102753, + 0.03170699253678322, + 0.0058654071763157845, + -0.00784014817327261, + -0.01689608208835125, + -0.047908879816532135, + -0.051501162350177765, + -0.05120987072587013, + -0.03227100893855095, + -0.04398205131292343, + -0.029716238379478455, + 0.08413131535053253, + -0.0552089624106884, + 0.024696102365851402, + 0.021209843456745148, + -0.004096250515431166, + 0.05558042600750923, + -0.04415441304445267, + 0.026940178126096725, + -0.0170371662825346, + -0.05637796223163605, + 0.03240785002708435, + -0.05298907682299614, + -0.002200725022703409, + 0.019401395693421364, + -0.05379802733659744, + 0.050701361149549484, + -0.024394486099481583, + -0.061252228915691376, + 0.012522554956376553, + 0.02868194319307804, + -0.008143289014697075, + 0.10099438577890396, + -0.05677495151758194, + -0.017412448301911354, + 0.03976433724164963, + -0.06842128187417984, + -0.0026153866201639175, + -2.4485225903391696e-34, + 0.0464586541056633, + -0.031963713467121124, + -0.011867806315422058, + -0.008838457986712456, + -0.013275365345180035, + 0.09743333607912064, + 0.06402460485696793, + 0.03893543779850006, + 0.0008511058986186981, + 0.07076606899499893, + 0.021177982911467552, + 0.01701487973332405, + -0.10157221555709839, + -0.014639882370829582, + -0.0448184572160244, + 0.08265507221221924, + 0.07830078899860382, + 0.03685566037893295, + 0.03730454295873642, + -0.011199889704585075, + -0.006204322911798954, + 0.015404175966978073, + -0.019569015130400658, + 0.10687115788459778, + 0.004850509576499462, + 0.01198743935674429, + 0.03670662268996239, + 0.015435784123837948, + -0.04743274673819542, + 0.06273331493139267, + -0.010476240888237953, + -0.05080030485987663, + 0.011886592023074627, + 0.03349887579679489, + -0.0004313048848416656, + 0.014236127026379108, + -0.05900963395833969, + 0.0589611642062664, + 0.015788191929459572, + 0.023436164483428, + 0.0003001587756443769, + -0.012612927705049515, + -0.0636739581823349, + 0.04834482818841934, + 0.016108931973576546, + -0.010922384448349476, + -0.04313165321946144, + -0.06831642985343933, + -0.028394322842359543, + 0.03443489596247673, + 0.004377439152449369, + 0.07423766702413559, + 0.03058331087231636, + -0.055072903633117676, + -0.044630032032728195, + -0.020235519856214523, + -0.08133884519338608, + 0.02463855966925621, + -0.04981828108429909, + 0.0574694387614727, + 0.011338192038238049, + 0.07683858275413513, + 0.057833876460790634, + -0.055283039808273315, + 0.0359557643532753, + 0.03471929207444191, + 0.07048343122005463, + -0.05223493650555611, + -0.041891373693943024, + 0.01843155547976494, + 0.032411422580480576, + -0.09011483192443848, + -0.03977257013320923, + 0.01019599661231041, + 0.0645427331328392, + -0.023367730900645256, + 0.045226000249385834, + 0.009139927104115486, + 0.022142183035612106, + 0.00015460653230547905, + -0.0037306572776287794, + 0.024150056764483452, + -0.017551014199852943, + -0.006948328111320734, + -0.09649389237165451, + -0.029112597927451134, + 0.038008593022823334, + -0.030701402574777603, + -0.002798025729134679, + 0.0328991524875164, + -0.048556290566921234, + -0.030839061364531517, + 0.02777591161429882, + -0.050297629088163376, + -0.02678430639207363, + -2.2447380843004794e-08, + 0.03748922422528267, + -0.14116282761096954, + -0.0007910962449386716, + 0.008916649967432022, + -0.06813602894544601, + -0.055332522839307785, + 0.0084484638646245, + -0.02500961534678936, + -0.026857823133468628, + -0.0008524504955857992, + 0.023328015580773354, + 0.08112119138240814, + -0.054516538977622986, + -0.06023142486810684, + -0.01251661591231823, + 0.00820139143615961, + -0.17650829255580902, + 0.008511853404343128, + -0.0647226944565773, + 0.0035852459259331226, + 0.05848465859889984, + 0.04714451730251312, + 0.034271489828825, + -0.0040928456000983715, + 0.08153670281171799, + 0.05944763496518135, + -0.05779598280787468, + -0.004906782880425453, + 0.03623279556632042, + 0.0076450747437775135, + 0.040158551186323166, + -0.023806750774383545, + 0.0817212238907814, + -0.03401714935898781, + -0.07593751698732376, + -0.07394628971815109, + -0.003948203753679991, + -0.00666074687615037, + 0.03718424588441849, + 0.027091357856988907, + -0.09982676804065704, + 0.021626422181725502, + 0.0009431466460227966, + -0.03247055783867836, + -0.036724261939525604, + -0.013789086602628231, + -0.002787604695186019, + 0.10283240675926208, + -0.06106123700737953, + -0.14277377724647522, + -0.02011234313249588, + 0.010507022961974144, + 0.02871924825012684, + 0.019249234348535538, + -0.049419160932302475, + -0.008078143000602722, + -0.0031676909420639277, + 0.041006166487932205, + 0.0944867879152298, + -0.03719237074255943, + 0.05295690894126892, + 0.08018604665994644, + 0.022412022575736046, + -0.016494041308760643 + ], + "align-left-simple-bold||alignment,arrangement,layout,flush left": [ + -0.013991061598062515, + 0.017177008092403412, + -0.01681133732199669, + 0.11206716299057007, + -0.009467532858252525, + 0.013860787265002728, + -0.07626595348119736, + -0.07642319053411484, + 0.012355632148683071, + 0.045881032943725586, + -0.005020427517592907, + 0.07148236781358719, + 0.0162888765335083, + -0.04581407457590103, + -0.032260697335004807, + 0.0051343925297260284, + -0.03138187155127525, + 0.04483313858509064, + 0.024811869487166405, + 0.10208529233932495, + -0.19398854672908783, + 0.02090800553560257, + -0.004119789693504572, + 0.03552201762795448, + 0.005173392593860626, + 0.06559380143880844, + 0.06623536348342896, + 0.030943263322114944, + 0.00037895774585194886, + -0.14013031125068665, + 0.01588556356728077, + 0.031943850219249725, + 0.16917400062084198, + 0.03678268566727638, + 0.015876052901148796, + 0.025944596156477928, + -0.057844143360853195, + -0.0184284970164299, + 0.040390074253082275, + -0.03513117879629135, + -0.05582420155405998, + -0.057961318641901016, + 0.036339953541755676, + 0.0004316924896556884, + -0.08538442850112915, + -0.017410559579730034, + -0.09504180401563644, + -0.0294371135532856, + 0.06728411465883255, + 0.008809681981801987, + -0.04917607828974724, + 0.008521410636603832, + -0.07596244663000107, + 0.038969773799180984, + -0.021685145795345306, + 0.05656943470239639, + -0.06955459713935852, + -0.048560548573732376, + 0.06148058548569679, + -0.011235339567065239, + 0.09684649109840393, + 0.0296588446944952, + 0.01006393227726221, + 0.04287835583090782, + -0.003638210939243436, + 0.028560852631926537, + 0.016219576820731163, + 0.027623968198895454, + -0.04409840330481529, + 0.031247969716787338, + -0.03260575234889984, + 0.005643913988023996, + -0.039757419377565384, + -0.05440829321742058, + -0.030372630804777145, + -0.010775556787848473, + 0.05242813006043434, + 0.05511835590004921, + -0.02721678838133812, + 0.025736205279827118, + -0.06490357220172882, + 0.03529519960284233, + -0.026282183825969696, + 0.06421925127506256, + 0.029355408623814583, + -0.053802262991666794, + -0.051725052297115326, + 0.012472450733184814, + 0.025167930871248245, + -0.06103997677564621, + -0.012174464762210846, + 0.020625615492463112, + 0.008119042962789536, + 0.030332086607813835, + -0.028270535171031952, + 0.029301892966032028, + 0.0320623554289341, + 0.031513553112745285, + -0.11978639662265778, + 0.05327468365430832, + -0.009167046286165714, + 0.08765456825494766, + 0.0013076687464490533, + -0.06341780722141266, + -0.0190623477101326, + -0.03541841730475426, + -0.03429410606622696, + -0.04343211650848389, + -0.049619320780038834, + -0.022799083963036537, + 0.01559761818498373, + -0.05765252560377121, + -0.05688850209116936, + 0.012675278820097446, + -0.03749321028590202, + 0.0018088276265189052, + -0.03390686213970184, + -0.017275134101510048, + 0.1188289225101471, + -0.002158417832106352, + -0.005711609032005072, + 0.01398787647485733, + -0.0913805291056633, + -0.058227818459272385, + -0.03623726963996887, + 0.044450826942920685, + 0.020063163712620735, + -3.3431569942744495e-33, + 0.005307402927428484, + 0.026375291869044304, + -0.005816538818180561, + 0.14319176971912384, + 0.05871310457587242, + 0.006014059763401747, + -0.09655975550413132, + 0.00024651375133544207, + -0.014885052107274532, + 0.05429304763674736, + 0.09677772223949432, + 0.00025670393370091915, + -0.011501009576022625, + 0.014226707629859447, + -0.0736020877957344, + -0.06292034685611725, + -0.05088484659790993, + 0.06128744035959244, + -0.1531294882297516, + 0.009145401418209076, + -0.047543566673994064, + 0.0707724466919899, + -0.014620901085436344, + -0.030262863263487816, + -0.010181189514696598, + -0.011203962378203869, + 0.04904966428875923, + -0.012097375467419624, + -0.13826416432857513, + -0.012428605929017067, + -0.008734489791095257, + -0.010904432274401188, + 0.06277530640363693, + -0.022192880511283875, + -0.0095536382868886, + 0.03692050278186798, + -0.007669440936297178, + -0.017474820837378502, + 0.042803071439266205, + 0.05692810192704201, + -0.1067524179816246, + 0.07528365403413773, + 0.006706124171614647, + -0.0825197771191597, + 0.05626912787556648, + 0.10473958402872086, + 0.00023267431242857128, + -0.008362476713955402, + 0.16083121299743652, + -0.0021304283291101456, + -0.07470101118087769, + 0.012309223413467407, + -0.047142527997493744, + 0.016388682648539543, + -0.017466101795434952, + -0.013418561778962612, + 0.026117758825421333, + 0.062106288969516754, + 0.02683904580771923, + 0.0008360365754924715, + -0.009991353377699852, + 0.0015344233252108097, + -0.0571211576461792, + -0.041827667504549026, + -0.043737202882766724, + -0.01852058432996273, + -0.03836582973599434, + -0.038025472313165665, + 0.07567822933197021, + -0.04305437207221985, + 0.012434435077011585, + 0.03106578066945076, + -0.017710428684949875, + 0.038440361618995667, + -0.02713434211909771, + 0.032887473702430725, + 0.011369246989488602, + -0.0812910720705986, + 0.026871351525187492, + -0.06568892300128937, + 0.005716088693588972, + 0.03681265935301781, + -0.05881698057055473, + 0.05281772091984749, + -0.055108584463596344, + -0.06492102891206741, + 0.015435708686709404, + 0.04354565590620041, + -0.01858631893992424, + 0.08768235146999359, + -0.06356833875179291, + -0.014376216568052769, + 0.029014671221375465, + -0.06342265754938126, + -0.002146776532754302, + 2.7635497958185135e-34, + 0.04089266061782837, + -0.03842643275856972, + -0.01761234924197197, + -0.0023857643827795982, + -0.022307895123958588, + 0.09919823706150055, + 0.08278271555900574, + 0.03616803511977196, + 0.020470788702368736, + 0.08077185600996017, + 0.01128305308520794, + 0.011875747703015804, + -0.11581665277481079, + -0.013758694753050804, + -0.03703923523426056, + 0.08397773653268814, + 0.06016014143824577, + 0.05307629331946373, + 0.04923395439982414, + -0.016945812851190567, + 0.000755456683691591, + 0.022162754088640213, + -0.037444211542606354, + 0.09030654281377792, + 0.016415279358625412, + 0.017452817410230637, + 0.028231553733348846, + 0.01655079796910286, + -0.04603473097085953, + 0.04852534458041191, + -0.012057110667228699, + -0.0582423210144043, + 0.01221975963562727, + 0.01879279501736164, + -0.004752587527036667, + 0.019600482657551765, + -0.07829296588897705, + 0.06091141700744629, + 0.013979350216686726, + 0.01287067960947752, + -0.01455359160900116, + 0.00525320740416646, + -0.05649011209607124, + 0.03932296484708786, + 0.01642821915447712, + -0.022039219737052917, + -0.032550957053899765, + -0.08674049377441406, + -0.038299091160297394, + 0.01622147113084793, + -0.009760274551808834, + 0.060888100415468216, + 0.02637861669063568, + -0.03925218805670738, + -0.037939898669719696, + -0.012163886800408363, + -0.0630393773317337, + 0.033471446484327316, + -0.04066101461648941, + 0.05366804823279381, + 0.00447798939421773, + 0.07991210371255875, + 0.03189759701490402, + -0.05541038513183594, + 0.02687983773648739, + 0.03845248743891716, + 0.0693386122584343, + -0.06212585046887398, + -0.04938070848584175, + 0.018558066338300705, + 0.032572273164987564, + -0.07285331934690475, + -0.02809145301580429, + -0.005076393950730562, + 0.06323301792144775, + -0.01805897429585457, + 0.041793834418058395, + 0.009430657140910625, + 0.015307129360735416, + -0.012784326449036598, + 0.011743501760065556, + 0.014723790809512138, + -0.026535753160715103, + -0.021035557612776756, + -0.07705216109752655, + -0.031426336616277695, + 0.03829006105661392, + -0.03945447504520416, + 0.008830467239022255, + 0.03669402748346329, + -0.0668344497680664, + -0.00860400591045618, + 0.048969630151987076, + -0.03599032387137413, + -0.028966620564460754, + -2.3307366703306798e-08, + 0.0324275940656662, + -0.15508045256137848, + -0.0035734560806304216, + 0.01280383300036192, + -0.057754795998334885, + -0.04634851589798927, + 0.019454797729849815, + -0.024148881435394287, + -0.029600409790873528, + 0.0013640329707413912, + 0.022636186331510544, + 0.07275883108377457, + -0.05720426142215729, + -0.02897888422012329, + -0.02946736291050911, + 0.03825167194008827, + -0.1674400418996811, + 0.004227670840919018, + -0.05504271015524864, + 0.008863690309226513, + 0.05037551745772362, + 0.05344798415899277, + 0.04065456986427307, + -0.011289549991488457, + 0.0631515234708786, + 0.06770572066307068, + -0.041099488735198975, + 0.025676919147372246, + 0.0430806428194046, + 0.00034086761297658086, + 0.03672535717487335, + -0.023812219500541687, + 0.095253586769104, + -0.027704712003469467, + -0.08215358853340149, + -0.04295364022254944, + -0.012853005900979042, + 0.0059442236088216305, + 0.018571240827441216, + 0.01025591790676117, + -0.09350813925266266, + 0.026852473616600037, + -0.004999369382858276, + -0.0389057993888855, + -0.029831431806087494, + -0.01469558198004961, + 0.016533270478248596, + 0.0854455903172493, + -0.05745437368750572, + -0.1509047895669937, + -0.008781987242400646, + 0.0007598394295200706, + 0.03375033661723137, + 0.0023651474621146917, + -0.05446004495024681, + 0.0009260266670025885, + 0.018596872687339783, + 0.0521131306886673, + 0.07803951948881149, + -0.028165852651000023, + 0.05556561425328255, + 0.12434662133455276, + 0.007529782131314278, + -0.008003904484212399 + ], + "align-right-bold||alignment,arrangement,layout,flush right": [ + -0.019123319536447525, + 0.008525495417416096, + -0.03994885832071304, + 0.12162356823682785, + -0.03321129083633423, + 0.04257616400718689, + -0.06092234328389168, + -0.09536953270435333, + 0.04046260938048363, + 0.037625718861818314, + 0.0047279042191803455, + 0.08740933239459991, + 0.01907826028764248, + -0.03478597477078438, + -0.01959982141852379, + 0.012474490329623222, + -0.04406605660915375, + 0.04345991462469101, + 0.031431250274181366, + 0.09386155754327774, + -0.15862560272216797, + 0.023715535178780556, + 0.010097889229655266, + 0.04413054510951042, + -0.0011920756660401821, + 0.06522667407989502, + 0.06383297592401505, + 0.00898717436939478, + -0.01782330498099327, + -0.13748550415039062, + 0.010143300518393517, + 0.026013927534222603, + 0.1649363785982132, + 0.03850754350423813, + 0.01879943162202835, + 0.04507587477564812, + -0.07838398963212967, + -0.016623305156826973, + 0.037946853786706924, + -0.03730475530028343, + -0.06485467404127121, + -0.08087047934532166, + 0.02368260733783245, + -0.01564852148294449, + -0.06854690611362457, + 0.002881006570532918, + -0.08818802237510681, + -0.023752933368086815, + 0.07283245027065277, + 0.031793612986803055, + -0.076504647731781, + 0.012855667620897293, + -0.07219191640615463, + 0.03688166290521622, + -0.01021992415189743, + 0.0652904361486435, + -0.06419214606285095, + -0.0450805239379406, + 0.06342196464538574, + -0.010597468353807926, + 0.06878621876239777, + 0.03581935539841652, + 0.007077186368405819, + 0.05524197965860367, + 0.016151275485754013, + 0.054453104734420776, + 0.017622660845518112, + 0.028987174853682518, + -0.04556389898061752, + 0.05845804139971733, + -0.023916851729154587, + 0.01109904795885086, + -0.010170483961701393, + -0.05860923230648041, + -0.017443876713514328, + 0.008005451411008835, + 0.05575408414006233, + 0.04087449237704277, + -0.017686186358332634, + 0.021913550794124603, + -0.05832403525710106, + 0.04106060042977333, + -0.037806328386068344, + 0.05444210395216942, + 0.03189331665635109, + -0.034527260810136795, + -0.05194304883480072, + 0.013545222580432892, + 0.00449873972684145, + -0.06052492931485176, + -0.0054217129945755005, + -0.0067306398414075375, + 0.003418581560254097, + 0.044889356940984726, + -0.03530668094754219, + 0.02408481389284134, + 0.018077967688441277, + 0.019564667716622353, + -0.09631983190774918, + 0.03246351704001427, + -0.0007590129389427602, + 0.07493674755096436, + -0.02449573017656803, + -0.05668018013238907, + -0.023090753704309464, + -0.04754696786403656, + -0.019552260637283325, + -0.02220129407942295, + -0.044085558503866196, + 0.009557726792991161, + 0.017225248739123344, + -0.0722612738609314, + -0.07100480049848557, + 0.02977721206843853, + -0.057167090475559235, + 0.010337566025555134, + -0.017929060384631157, + -0.023700863122940063, + 0.10778786987066269, + -0.01882084459066391, + -0.005667219404131174, + 0.03848811611533165, + -0.08646862953901291, + -0.06210233271121979, + -0.035699475556612015, + 0.01554942224174738, + 0.004884129390120506, + -3.1321311463888786e-33, + -0.01837102510035038, + -0.007498908322304487, + 0.008351818658411503, + 0.12908442318439484, + 0.06141159310936928, + 0.0027968548238277435, + -0.11396198719739914, + -0.001740019884891808, + -0.03078145906329155, + 0.08340966701507568, + 0.07342185080051422, + 0.007105523720383644, + -0.0023502151016145945, + 0.01927843689918518, + -0.06457268446683884, + -0.0688387081027031, + -0.05586806312203407, + 0.07679769396781921, + -0.1562543511390686, + 0.017422053962945938, + -0.05504408851265907, + 0.05008376017212868, + -0.022231601178646088, + -0.02464226447045803, + -0.014651003293693066, + -0.014050866477191448, + 0.047133669257164, + 0.0024114404805004597, + -0.1374884843826294, + -0.015358693897724152, + -0.022519253194332123, + -0.015924541279673576, + 0.05947262793779373, + -0.0291849784553051, + -0.012520070187747478, + 0.02613268792629242, + -0.016734031960368156, + -0.01531007420271635, + 0.035489507019519806, + 0.07132294774055481, + -0.09450069069862366, + 0.07428687065839767, + -0.0013137756614014506, + -0.06669405847787857, + 0.07205135375261307, + 0.0931415781378746, + 0.014621595852077007, + 0.00786686036735773, + 0.14905031025409698, + 0.005480520892888308, + -0.05740097165107727, + 0.022893184795975685, + -0.050278328359127045, + 0.018246948719024658, + -0.029180342331528664, + -0.028696808964014053, + 0.03314293920993805, + 0.08311821520328522, + 0.02099064737558365, + 0.007252013310790062, + -0.015668835490942, + -0.022046560421586037, + -0.03558645397424698, + -0.06707306951284409, + -0.05103011801838875, + -0.032302871346473694, + -0.0410984568297863, + -0.02762700244784355, + 0.08958343416452408, + -0.049189962446689606, + 0.018027806654572487, + 0.032755494117736816, + -0.008482221513986588, + 0.05228506401181221, + -0.05008971318602562, + 0.026027018204331398, + -0.022963646799325943, + -0.05060077831149101, + 0.048265330493450165, + -0.042059700936079025, + -0.009546983055770397, + 0.00969567708671093, + -0.060270946472883224, + 0.04428941383957863, + -0.03818412870168686, + -0.07265893369913101, + 0.009035423398017883, + 0.02897479385137558, + 0.0028778172563761473, + 0.09537622332572937, + -0.04242343455553055, + -0.010471564717590809, + 0.042746610939502716, + -0.0659937858581543, + 0.0042357295751571655, + -3.8040556100156506e-34, + 0.0546298548579216, + -0.02888680435717106, + 0.0015615270240232348, + 0.0068448311649262905, + -0.008857199922204018, + 0.09972184151411057, + 0.07117562741041183, + 0.032570816576480865, + 0.0002475994115229696, + 0.07562088221311569, + 0.02550620771944523, + 0.013895741663873196, + -0.09604832530021667, + -0.016868922859430313, + -0.044256631284952164, + 0.08610868453979492, + 0.07601138949394226, + 0.04315561056137085, + 0.04497823119163513, + -0.009367493912577629, + -0.013543636538088322, + 0.003647653851658106, + -0.011084047146141529, + 0.10563714802265167, + 0.009588465094566345, + 0.014434386044740677, + 0.04158196598291397, + 0.02154388092458248, + -0.03458702936768532, + 0.07558204978704453, + -0.0019571443554013968, + -0.06149176135659218, + -0.015302706509828568, + 0.04184030741453171, + 0.007449968717992306, + 0.0014022380346432328, + -0.061753638088703156, + 0.06395655870437622, + 0.02294500730931759, + 0.023839058354496956, + 0.014003485441207886, + -0.011376178823411465, + -0.06408139318227768, + 0.0576799176633358, + 0.00827692449092865, + -0.004232683219015598, + -0.03886030614376068, + -0.06882088631391525, + -0.04111678525805473, + 0.02583371475338936, + -0.0047838944010436535, + 0.06941954791545868, + 0.03259597346186638, + -0.07017278671264648, + -0.03860410675406456, + -0.016120994463562965, + -0.07150167226791382, + 0.01629795879125595, + -0.06135277822613716, + 0.05558515712618828, + 0.01881719008088112, + 0.07674814760684967, + 0.0486239530146122, + -0.0564398430287838, + 0.03216048330068588, + 0.026941990479826927, + 0.06364759802818298, + -0.05729024112224579, + -0.044342510402202606, + 0.007032863330096006, + 0.018836302682757378, + -0.10163214057683945, + -0.03822585567831993, + 0.013751351274549961, + 0.06232967600226402, + -0.04366804286837578, + 0.05288860946893692, + 0.012576383538544178, + 0.03922868147492409, + -0.018030868843197823, + 0.010067997500300407, + 0.03647300973534584, + -0.02599049173295498, + -0.0003612237051129341, + -0.09842666983604431, + -0.02566315419971943, + 0.03851465508341789, + -0.029856866225600243, + -0.0007851001573726535, + 0.03083871491253376, + -0.05004258081316948, + -0.01516043022274971, + 0.019103186205029488, + -0.047530144453048706, + -0.031574852764606476, + -2.243098506937713e-08, + 0.021518152207136154, + -0.1339220255613327, + 0.010986227542161942, + -0.00039018725510686636, + -0.058109454810619354, + -0.07326576113700867, + 0.0021108011715114117, + -0.016714394092559814, + -0.026236645877361298, + -0.0017548035830259323, + 0.009313652291893959, + 0.07431012392044067, + -0.060881953686475754, + -0.050708137452602386, + 0.003951118793338537, + -1.0737231605162378e-05, + -0.17945200204849243, + -0.0009997849119827151, + -0.06495590507984161, + -0.005370615515857935, + 0.03649119660258293, + 0.03616100549697876, + 0.03037245012819767, + -0.012652489356696606, + 0.07993394881486893, + 0.05559594929218292, + -0.06125584989786148, + -0.0008130298228934407, + 0.024545468389987946, + 0.002101041143760085, + 0.030714143067598343, + -0.02566278725862503, + 0.06697675585746765, + -0.03031892701983452, + -0.05558234825730324, + -0.06417050212621689, + -0.002753435866907239, + -0.015985380858182907, + 0.061183106154203415, + 0.017123054713010788, + -0.09730059653520584, + 0.027362128719687462, + -0.0019084666855633259, + -0.03532632812857628, + -0.047933828085660934, + -0.016643095761537552, + 0.005793651100248098, + 0.09498631954193115, + -0.06572937220335007, + -0.15137647092342377, + -0.025109590962529182, + 0.018996331840753555, + 0.03409627079963684, + 0.009446773678064346, + -0.0413375049829483, + 0.002953809918835759, + -0.005326154176145792, + 0.032060638070106506, + 0.10738006979227066, + -0.037887830287218094, + 0.07473365217447281, + 0.08692362159490585, + 0.01600024476647377, + -0.01569182798266411 + ], + "align-right-simple-bold||alignment,arrangement,layout,flush right": [ + -0.015976682305336, + 0.011437716893851757, + -0.030939796939492226, + 0.11346893757581711, + -0.02173680253326893, + 0.039493903517723083, + -0.07231642305850983, + -0.07398104667663574, + 0.014214332215487957, + 0.04744090139865875, + 0.008874807506799698, + 0.0731564313173294, + 0.014948972500860691, + -0.03789680823683739, + -0.02744428999722004, + 0.0032963126432150602, + -0.0460064671933651, + 0.03387703374028206, + 0.032087042927742004, + 0.08723581582307816, + -0.17054690420627594, + 0.017187487334012985, + -0.0063142795115709305, + 0.03737565129995346, + -0.0011197517160326242, + 0.06751123815774918, + 0.06090209633111954, + 0.02977827377617359, + -0.0058693652972579, + -0.13322488963603973, + 0.012844052165746689, + 0.022643012925982475, + 0.16557349264621735, + 0.04195348173379898, + 0.01440261397510767, + 0.03418426588177681, + -0.06806465983390808, + -0.011835706420242786, + 0.03318023309111595, + -0.04685274139046669, + -0.06511586904525757, + -0.07995548844337463, + 0.03096763975918293, + -0.01199328526854515, + -0.08664924651384354, + -0.003979468252509832, + -0.08390477299690247, + -0.025048505514860153, + 0.06765257567167282, + 0.013376252725720406, + -0.05998338386416435, + 0.01379731297492981, + -0.07729950547218323, + 0.030868081375956535, + -0.0004200763942208141, + 0.07120104134082794, + -0.07757259160280228, + -0.03658749908208847, + 0.05971803888678551, + -0.015685388818383217, + 0.07793489098548889, + 0.021631723269820213, + 0.006993910763412714, + 0.048360660672187805, + 0.00776896346360445, + 0.0424821637570858, + 0.010851619765162468, + 0.02649727836251259, + -0.0528566800057888, + 0.044756077229976654, + -0.031538818031549454, + 0.007701986934989691, + -0.03047623671591282, + -0.04362685605883598, + -0.023921027779579163, + -0.007187213283032179, + 0.04417800530791283, + 0.05383564904332161, + -0.0275164395570755, + 0.03283253684639931, + -0.06761977076530457, + 0.028502320870757103, + -0.037188731133937836, + 0.07568340748548508, + 0.03454173728823662, + -0.04907139018177986, + -0.052731797099113464, + 0.017330020666122437, + 0.02749924547970295, + -0.06092410162091255, + 0.0020877812057733536, + 0.007236259989440441, + 0.010371115989983082, + 0.04343719780445099, + -0.03270436450839043, + 0.026620743796229362, + 0.034558601677417755, + 0.016602402552962303, + -0.12248293310403824, + 0.04052382707595825, + -0.004615859594196081, + 0.07357207685709, + -0.00011159240239067003, + -0.06889832764863968, + -0.01799742504954338, + -0.04291161894798279, + -0.024308960884809494, + -0.034217335283756256, + -0.03959370777010918, + -0.006845057010650635, + 0.015963563695549965, + -0.061968132853507996, + -0.06507683545351028, + 0.024341249838471413, + -0.046668410301208496, + 0.009860493242740631, + -0.030447036027908325, + -0.027362555265426636, + 0.10639423877000809, + -0.005414803512394428, + -0.006897351238876581, + 0.033542610704898834, + -0.10451168566942215, + -0.05680439621210098, + -0.04209825396537781, + 0.033546410501003265, + 0.014563445933163166, + -3.420307259912809e-33, + -0.007647437509149313, + 0.020886866375803947, + 0.004850086756050587, + 0.13580358028411865, + 0.05638464540243149, + -0.0028671808540821075, + -0.1107698604464531, + -0.006104989908635616, + -0.019018271937966347, + 0.07673928141593933, + 0.09281139820814133, + -0.011045056395232677, + -0.0053237020038068295, + 0.023402653634548187, + -0.06849503517150879, + -0.06256324797868729, + -0.048381876200437546, + 0.07427501678466797, + -0.1555156409740448, + 0.006854016333818436, + -0.05656628683209419, + 0.07206062227487564, + -0.017911314964294434, + -0.03481905162334442, + -0.011877271346747875, + -0.011674067005515099, + 0.05180366709828377, + -0.009262017905712128, + -0.1328602284193039, + -0.013831602409482002, + -0.021191373467445374, + -0.021190783008933067, + 0.06704100221395493, + -0.018934177234768867, + -0.008870493620634079, + 0.020470591261982918, + -0.003696542466059327, + -0.014400940388441086, + 0.03213376924395561, + 0.048600465059280396, + -0.10249360650777817, + 0.0780678316950798, + 0.0029781009070575237, + -0.07397987693548203, + 0.07587708532810211, + 0.10076074302196503, + 0.0069358013570308685, + 0.0019343922613188624, + 0.1609332263469696, + -0.000890628551132977, + -0.06308077275753021, + 0.021894240751862526, + -0.05060841143131256, + 0.0299250278621912, + -0.021296480670571327, + -0.007378664333373308, + 0.031376227736473083, + 0.08131514489650726, + 0.017719784751534462, + 0.005354029592126608, + -0.014319665729999542, + -0.005867699161171913, + -0.04446174204349518, + -0.055860910564661026, + -0.04297826066613197, + -0.018359623849391937, + -0.037206731736660004, + -0.03680539131164551, + 0.08233432471752167, + -0.03922578692436218, + 0.008147608488798141, + 0.04032168909907341, + -0.021955745294690132, + 0.03706230968236923, + -0.035488832741975784, + 0.03090653195977211, + 0.0049824886955320835, + -0.07623261958360672, + 0.04467729106545448, + -0.05099586769938469, + -0.0030442727729678154, + 0.02388240583240986, + -0.06427626311779022, + 0.04778856784105301, + -0.06273619830608368, + -0.07584031671285629, + 0.012780087999999523, + 0.04084412753582001, + -0.008106337860226631, + 0.08097916096448898, + -0.04996990039944649, + -0.007280475925654173, + 0.03561050072312355, + -0.06450136005878448, + 0.005233230069279671, + 4.428813867910907e-35, + 0.05074645206332207, + -0.03260165452957153, + -0.006613927893340588, + 0.012462196871638298, + -0.019018346443772316, + 0.10530906915664673, + 0.08659534901380539, + 0.030413536354899406, + 0.019866105169057846, + 0.08389830589294434, + 0.01641368679702282, + 0.009404557757079601, + -0.10997337847948074, + -0.015396634116768837, + -0.039596982300281525, + 0.0857778862118721, + 0.05884610861539841, + 0.0548853725194931, + 0.05169976130127907, + -0.014122145250439644, + -0.00807702075690031, + 0.009360790252685547, + -0.02801371179521084, + 0.08989867568016052, + 0.017920657992362976, + 0.017563892528414726, + 0.03230447694659233, + 0.023506473749876022, + -0.033717911690473557, + 0.0628456398844719, + -0.003155247773975134, + -0.06649572402238846, + -0.010471127927303314, + 0.027790633961558342, + 0.0013992086751386523, + 0.006816370878368616, + -0.0752311497926712, + 0.06635958701372147, + 0.020649468526244164, + 0.01191262062638998, + -0.0009134174324572086, + 0.004807131830602884, + -0.057470519095659256, + 0.04705985262989998, + 0.007568288128823042, + -0.012445966713130474, + -0.02825423702597618, + -0.08442031592130661, + -0.04935073480010033, + 0.010439406149089336, + -0.016099726781249046, + 0.05651775375008583, + 0.027199938893318176, + -0.05262528732419014, + -0.031422585248947144, + -0.009834970347583294, + -0.05463821068406105, + 0.023537172004580498, + -0.05423777922987938, + 0.05445017293095589, + 0.009830565191805363, + 0.080476775765419, + 0.02454059012234211, + -0.05557919666171074, + 0.020900588482618332, + 0.02993587590754032, + 0.062529556453228, + -0.06525042653083801, + -0.05221790075302124, + 0.008339481428265572, + 0.019115904346108437, + -0.08431370556354523, + -0.024095553904771805, + -0.0034779764246195555, + 0.059293199330568314, + -0.03754742816090584, + 0.05107274278998375, + 0.01195715181529522, + 0.031900715082883835, + -0.02960764802992344, + 0.023659881204366684, + 0.02836914174258709, + -0.035583093762397766, + -0.014246323145925999, + -0.08366172015666962, + -0.02849431149661541, + 0.04075240716338158, + -0.03898340091109276, + 0.010122265666723251, + 0.03439033403992653, + -0.06688246130943298, + 0.007570071145892143, + 0.03798741474747658, + -0.033256858587265015, + -0.03568098321557045, + -2.3143996941143996e-08, + 0.016897806897759438, + -0.1478528082370758, + 0.006086655426770449, + 0.001291752210818231, + -0.049739524722099304, + -0.0645567923784256, + 0.012925965711474419, + -0.016322782263159752, + -0.025898687541484833, + -0.0013241271954029799, + 0.009888137690722942, + 0.06694929301738739, + -0.06441181898117065, + -0.02253325656056404, + -0.011260735802352428, + 0.02880563959479332, + -0.17200684547424316, + -0.004680664278566837, + -0.0568997859954834, + 4.178052768111229e-05, + 0.03175598755478859, + 0.04235721006989479, + 0.03733581677079201, + -0.018183548003435135, + 0.06504975259304047, + 0.06280243396759033, + -0.047881171107292175, + 0.02870257757604122, + 0.032972972840070724, + -0.004025551024824381, + 0.0317622534930706, + -0.024254491552710533, + 0.07988857477903366, + -0.022817350924015045, + -0.06295318156480789, + -0.03841580078005791, + -0.008564680814743042, + -0.003185103414580226, + 0.043144091963768005, + 0.0021938588470220566, + -0.09064965695142746, + 0.032089728862047195, + -0.008053739555180073, + -0.03990742936730385, + -0.03926229849457741, + -0.01583287864923477, + 0.023177506402134895, + 0.07731156051158905, + -0.06477753818035126, + -0.15999974310398102, + -0.018284624442458153, + 0.01156214252114296, + 0.03917665034532547, + -0.003994077909737825, + -0.04700620472431183, + 0.011421550996601582, + 0.015507711097598076, + 0.04419226944446564, + 0.08857522159814835, + -0.03136710450053215, + 0.07602249830961227, + 0.1269260048866272, + 0.0024367067962884903, + -0.008714228868484497 + ], + "align-top-bold||alignment,arrangement,layout,flush top": [ + -0.017197629436850548, + -0.01383920293301344, + -0.02996165119111538, + 0.050367530435323715, + 0.012613408267498016, + 0.010185647755861282, + -0.06554488837718964, + -0.03667834401130676, + 0.039323486387729645, + 0.05785991623997688, + -0.06035410612821579, + 0.06857768446207047, + 0.029899297282099724, + -0.06411495059728622, + -0.017544817179441452, + -0.034921396523714066, + -0.03858237341046333, + 0.05201135575771332, + 0.053843315690755844, + 0.05698563531041145, + -0.1375913918018341, + 0.014358900487422943, + 0.04726425185799599, + 0.02370046079158783, + 0.001656804815866053, + 0.05962035432457924, + 0.022259974852204323, + 0.0389944426715374, + -0.04224046692252159, + -0.13410019874572754, + 0.00955105572938919, + 0.007401659619063139, + 0.15654639899730682, + 0.05807119235396385, + 0.026463747024536133, + 0.0247328020632267, + -0.051524922251701355, + -0.027440056204795837, + 0.04127339646220207, + -0.03432869538664818, + -0.02465527132153511, + -0.047040462493896484, + 0.006936630234122276, + -0.0001803838968044147, + -0.04995580390095711, + 0.03887099027633667, + -0.038460876792669296, + -0.03126281127333641, + 0.011046350002288818, + 0.0011872571194544435, + -0.03517204150557518, + -0.040873732417821884, + -0.027204977348446846, + 0.0036203241907060146, + 0.05224663391709328, + 0.06678158044815063, + -0.022233428433537483, + -0.07878667116165161, + 0.05919543653726578, + 0.01434043888002634, + 0.05222715437412262, + 0.0441431850194931, + 0.020706908777356148, + 0.06015303358435631, + 0.07145523279905319, + 0.0353844128549099, + 0.024493511766195297, + 0.0701126754283905, + -0.08212205022573471, + 0.05321227386593819, + 0.006664664018899202, + 0.010395283810794353, + -0.017935102805495262, + -0.08319658041000366, + -0.018684804439544678, + -0.021278521046042442, + 0.024577084928750992, + 0.04008498787879944, + -0.005120068788528442, + 0.0414726585149765, + -0.04665172100067139, + 0.03968558833003044, + -0.036685243248939514, + 0.038072843104600906, + 0.008575095795094967, + -0.04341273382306099, + -0.036782748997211456, + -0.01929137296974659, + -0.05815650150179863, + -0.06367435306310654, + -0.030438629910349846, + -0.03272232040762901, + -0.006744981277734041, + 0.027104821056127548, + -0.04241618141531944, + 0.03835589811205864, + 0.007908365689218044, + -7.947430276544765e-05, + -0.09617838263511658, + 0.038935478776693344, + -0.025991536676883698, + 0.04139290377497673, + -0.019535450264811516, + -0.03710412234067917, + -0.042453162372112274, + -0.01319610420614481, + 0.03360637649893761, + 0.006553463637828827, + -0.05896921828389168, + -0.006575773470103741, + 0.019210780039429665, + -0.10771460086107254, + -0.035538796335458755, + 0.023155977949500084, + -0.09612777084112167, + 0.008390069007873535, + 0.028611307963728905, + -0.03787247836589813, + 0.12259975075721741, + -0.057488009333610535, + 0.02675345540046692, + 0.014815698377788067, + -0.047450173646211624, + -0.08224733918905258, + -0.04389425739645958, + 0.06864605844020844, + 0.061016205698251724, + -2.0790105329329914e-33, + 0.026631411164999008, + 0.06379665434360504, + -0.03223472833633423, + 0.13394156098365784, + 0.05448170006275177, + -0.006298020016402006, + -0.06834685802459717, + -0.04405410960316658, + -0.0194393340498209, + 0.10088255256414413, + 0.04245718941092491, + 0.0338301882147789, + -0.030634889379143715, + 0.029729776084423065, + -0.041946977376937866, + -0.06047461926937103, + -0.03585773706436157, + 0.06197051703929901, + -0.21268320083618164, + -0.0026953546330332756, + -0.044737495481967926, + 0.04111510515213013, + -0.05417068675160408, + -0.02844015136361122, + -0.024767154827713966, + -0.02653029002249241, + 0.017100324854254723, + -0.027566447854042053, + -0.12447696924209595, + -0.009466991759836674, + -0.022837916389107704, + 0.028695717453956604, + 0.047500282526016235, + 0.003315090434625745, + -0.02871495485305786, + 0.04976218193769455, + -0.0022102310322225094, + -0.026993852108716965, + 0.043651506304740906, + 0.031713273376226425, + -0.07058516889810562, + 0.09537487477064133, + 0.031087134033441544, + -0.03376264125108719, + 0.021012570708990097, + 0.13574939966201782, + -0.01616770774126053, + -0.013321613892912865, + 0.08810461312532425, + -0.004658714402467012, + -0.062458209693431854, + -0.008397204801440239, + -0.008487126789987087, + -0.0042597511783242226, + -0.026680702343583107, + -0.0377204604446888, + 0.01139242947101593, + 0.05958780273795128, + 0.047331154346466064, + 0.028067713603377342, + 0.002305370755493641, + -0.07668941468000412, + -0.05557432398200035, + -0.0534399151802063, + 0.00818849541246891, + -0.0039919656701385975, + -0.020234137773513794, + 0.005581818986684084, + 0.08172442764043808, + -0.039448726922273636, + 0.04243570938706398, + 0.03223701938986778, + -0.029233058914542198, + 0.06044900417327881, + -0.026881026104092598, + 0.05963736027479172, + 0.018698489293456078, + -0.09613624960184097, + 0.042908281087875366, + -0.05612939968705177, + 0.05310090258717537, + 0.03644254803657532, + -0.013013936579227448, + 0.0367378406226635, + -0.014740249142050743, + -0.03809273988008499, + 0.018224278464913368, + 0.04752802848815918, + 0.006899917032569647, + 0.12984928488731384, + -0.05462174862623215, + -0.02734997123479843, + 0.12342710793018341, + -0.06544037163257599, + -0.052669163793325424, + 6.031287026626457e-34, + 0.045775845646858215, + 0.026540834456682205, + 0.032820574939250946, + -0.012920022010803223, + -0.01522375363856554, + 0.08975515514612198, + 0.044645246118307114, + 0.00722693745046854, + -0.03229738771915436, + 0.05968329682946205, + 0.021958597004413605, + -0.016371242702007294, + -0.03312941640615463, + -0.000564665999263525, + -0.021035969257354736, + 0.0615406334400177, + 0.027272991836071014, + -0.006745916325598955, + -0.008548620156943798, + -0.06237395852804184, + 0.015617305412888527, + -0.004600984510034323, + -0.048623599112033844, + 0.06910903751850128, + 0.010680430568754673, + 0.014798354357481003, + 0.016024569049477577, + 0.046787213534116745, + -0.01268538273870945, + 0.05944192036986351, + 0.018143368884921074, + -0.07178820669651031, + -0.009748117066919804, + 0.04839221388101578, + -0.0028328080661594868, + 0.05733609199523926, + -0.03300470486283302, + 0.048333633691072464, + -0.009421818889677525, + 0.012186471372842789, + -0.031151575967669487, + -0.024700874462723732, + -0.02034970559179783, + 0.0463251993060112, + 0.006049380172044039, + 0.004810567479580641, + -0.09067298471927643, + -0.06421416252851486, + -0.05530435964465141, + 0.011288450099527836, + -0.02681683376431465, + 0.038642141968011856, + 0.030555913224816322, + -0.05859566852450371, + -0.04216944798827171, + 0.039512116461992264, + -0.026904219761490822, + 0.03066503442823887, + -0.07629701495170593, + 0.02470274269580841, + 0.03195304423570633, + 0.06348396837711334, + 0.056024156510829926, + -0.05875696241855621, + 0.02198599837720394, + 0.07389522343873978, + 0.06621752679347992, + -0.05261211469769478, + -0.07147306948900223, + 0.009113007225096226, + -0.023518497124314308, + -0.10944250226020813, + -0.0012580282054841518, + 0.0034219850786030293, + 0.0661609023809433, + -0.04082497954368591, + 0.09074190258979797, + 0.030873090028762817, + 0.04127363860607147, + -0.05457856506109238, + -0.011103091761469841, + 0.04156189411878586, + -0.04612557962536812, + -0.03187846764922142, + -0.08094018697738647, + -0.03411388397216797, + 0.02815340831875801, + -0.020951027050614357, + -0.010181321762502193, + 0.005307433661073446, + -0.09497896581888199, + -0.03709220886230469, + 0.021083470433950424, + -0.05105184018611908, + -0.033891480416059494, + -2.1371915792656182e-08, + 0.004258214961737394, + -0.17797264456748962, + 0.01865391992032528, + -0.0009369603940285742, + -0.06707890331745148, + -0.0219940934330225, + 0.06528570502996445, + -0.00920036155730486, + 0.03616701811552048, + -0.010405323468148708, + -0.007854701019823551, + 0.08212355524301529, + -0.03820612654089928, + -0.08869928121566772, + -0.00414123572409153, + 0.047512155026197433, + -0.15013135969638824, + 0.04353722929954529, + -0.06519930064678192, + -0.02470032498240471, + -0.004612944554537535, + 0.08043307065963745, + 0.060558728873729706, + -0.0033669357653707266, + 0.04339001327753067, + 0.027033526450395584, + -0.060470420867204666, + 0.03553357720375061, + 0.0809876024723053, + -0.0058888462372124195, + 0.0127247404307127, + 0.0008656002464704216, + 0.0815989226102829, + -0.04157391935586929, + -0.06256039440631866, + -0.033219944685697556, + -0.03231450542807579, + 0.01575787551701069, + 0.03949296474456787, + 0.00896249059587717, + -0.07234790921211243, + 0.031219204887747765, + 0.01595330983400345, + -0.013137925416231155, + -0.0256492979824543, + -0.02250891923904419, + -0.010431760922074318, + 0.1177482083439827, + -0.05506692826747894, + -0.11828546971082687, + -0.05743616074323654, + 0.021796856075525284, + 0.04523850977420807, + 0.02843809500336647, + -0.06268130987882614, + -0.016718128696084023, + 0.009814787656068802, + 0.05717059597373009, + 0.10741595178842545, + -0.013778002001345158, + 0.11864660680294037, + 0.02573983557522297, + 0.015278485603630543, + 0.011758480221033096 + ], + "align-top-simple-bold||alignment,arrangement,layout,flush top": [ + -0.01637810468673706, + -0.009794803336262703, + -0.021835489198565483, + 0.05069012567400932, + 0.026334086433053017, + 0.008550472557544708, + -0.07865557074546814, + -0.010758605785667896, + 0.010974937118589878, + 0.06428447365760803, + -0.05628892034292221, + 0.05292350798845291, + 0.022251736372709274, + -0.06853805482387543, + -0.023699598386883736, + -0.04288658872246742, + -0.04281385987997055, + 0.038466744124889374, + 0.054199445992708206, + 0.050799380987882614, + -0.1520196944475174, + 0.0068832626566290855, + 0.027707945555448532, + 0.013874444179236889, + 0.002174708992242813, + 0.05917641147971153, + 0.01660175621509552, + 0.059904199093580246, + -0.02726956270635128, + -0.12850697338581085, + 0.015742506831884384, + 0.00180644984357059, + 0.15670502185821533, + 0.05776151642203331, + 0.02748897857964039, + 0.01685645617544651, + -0.03966518118977547, + -0.02320258691906929, + 0.030518658459186554, + -0.045652054250240326, + -0.023680705577135086, + -0.04413603991270065, + 0.013269087299704552, + 0.0032131194602698088, + -0.06789655983448029, + 0.028470030054450035, + -0.035599369555711746, + -0.034762490540742874, + 0.009552795439958572, + -0.014508909545838833, + -0.01655390113592148, + -0.03893723711371422, + -0.033505141735076904, + -0.004477570299059153, + 0.06034373119473457, + 0.07348252087831497, + -0.03170362487435341, + -0.07032949477434158, + 0.05752468481659889, + 0.008836510591208935, + 0.062141627073287964, + 0.028180116787552834, + 0.022390970960259438, + 0.053727779537439346, + 0.06054022163152695, + 0.019619783386588097, + 0.014882640913128853, + 0.06855794042348862, + -0.08979691565036774, + 0.038208525627851486, + 6.982158811297268e-05, + 0.01064039021730423, + -0.036823466420173645, + -0.06322793662548065, + -0.021300148218870163, + -0.04053763300180435, + 0.015784744173288345, + 0.04789029806852341, + -0.014272309839725494, + 0.05378640070557594, + -0.05899037793278694, + 0.026869412511587143, + -0.040746405720710754, + 0.05901141092181206, + 0.009362668730318546, + -0.05603538453578949, + -0.03740130364894867, + -0.014754664152860641, + -0.03457817807793617, + -0.06491893529891968, + -0.021615929901599884, + -0.02046084962785244, + -0.0012246047845110297, + 0.028160307556390762, + -0.03627266362309456, + 0.040666963905096054, + 0.021896203979849815, + 0.0015956934075802565, + -0.12365957349538803, + 0.04451911896467209, + -0.03171544149518013, + 0.04285164177417755, + 0.009592872112989426, + -0.048735905438661575, + -0.03289497643709183, + -0.012166768312454224, + 0.03124208375811577, + -0.008724142797291279, + -0.054023709148168564, + -0.026152122765779495, + 0.016362348571419716, + -0.09500163048505783, + -0.0264823567122221, + 0.01906277798116207, + -0.08177193999290466, + 0.00917965080589056, + 0.013736405409872532, + -0.04494677484035492, + 0.11723661422729492, + -0.04478951916098595, + 0.02223910577595234, + 0.012345809489488602, + -0.062173992395401, + -0.0723537802696228, + -0.05057453736662865, + 0.08123071491718292, + 0.06342596560716629, + -2.4736849652734822e-33, + 0.03740248456597328, + 0.0854150578379631, + -0.0350058451294899, + 0.13702614605426788, + 0.052759554237127304, + -0.009706203825771809, + -0.06584865599870682, + -0.04553418979048729, + -0.007676026783883572, + 0.09228231012821198, + 0.061347845941782, + 0.010391040705144405, + -0.031284961849451065, + 0.033237677067518234, + -0.044282469898462296, + -0.054530069231987, + -0.030472200363874435, + 0.05739988386631012, + -0.20908699929714203, + -0.015240587294101715, + -0.04586879536509514, + 0.0629439651966095, + -0.04801538586616516, + -0.04130600765347481, + -0.02350728027522564, + -0.01900828443467617, + 0.020271876826882362, + -0.037020355463027954, + -0.12047272175550461, + -0.007750219199806452, + -0.025591222569346428, + 0.021565977483987808, + 0.054463792592287064, + 0.01878499612212181, + -0.02657007798552513, + 0.041107356548309326, + 0.012911200523376465, + -0.023449543863534927, + 0.036906901746988297, + 0.011892943643033504, + -0.07956493645906448, + 0.09835751354694366, + 0.03584514558315277, + -0.036971770226955414, + 0.02329665794968605, + 0.13873520493507385, + -0.01962101086974144, + -0.016156034544110298, + 0.1014569029211998, + -0.012159246020019054, + -0.06721387058496475, + -0.0037462799809873104, + -0.010680755600333214, + 0.007925180718302727, + -0.024053892120718956, + -0.015926038846373558, + 0.007713141851127148, + 0.05877641960978508, + 0.047392334789037704, + 0.025738799944519997, + 0.0029279449954628944, + -0.05845627933740616, + -0.06447341293096542, + -0.04100433364510536, + 0.015974070876836777, + 0.012731051072478294, + -0.012276801280677319, + -0.004252466838806868, + 0.07231832295656204, + -0.030478257685899734, + 0.02971811220049858, + 0.04002229869365692, + -0.0356963686645031, + 0.04253058135509491, + -0.006564620416611433, + 0.0654587671160698, + 0.04657593369483948, + -0.1193694919347763, + 0.037642739713191986, + -0.06575880199670792, + 0.06366478651762009, + 0.047615546733140945, + -0.01891208067536354, + 0.041414737701416016, + -0.04246753826737404, + -0.045018959790468216, + 0.022289520129561424, + 0.06070658564567566, + -0.0027401482220739126, + 0.11917710304260254, + -0.06177714839577675, + -0.025005251169204712, + 0.11070707440376282, + -0.06561923027038574, + -0.050252676010131836, + 1.1830649936190638e-33, + 0.04189503937959671, + 0.019578788429498672, + 0.027795225381851196, + -0.009803930297493935, + -0.02027035690844059, + 0.09119702130556107, + 0.06216641142964363, + 0.006090227514505386, + -0.012675228528678417, + 0.06953943520784378, + 0.01370444055646658, + -0.017285576090216637, + -0.0496576726436615, + -0.00016808212967589498, + -0.012713105417788029, + 0.06259528547525406, + 0.010249003767967224, + 0.009212611243128777, + 0.004169855732470751, + -0.06607095152139664, + 0.023842694237828255, + 0.000740020361263305, + -0.06756321340799332, + 0.052929267287254333, + 0.020086703822016716, + 0.01913420669734478, + 0.0051569086499512196, + 0.047792211174964905, + -0.01422937773168087, + 0.04451749846339226, + 0.018426870927214622, + -0.07741933315992355, + -0.007435343693941832, + 0.03827904909849167, + -0.007001618389040232, + 0.0607345886528492, + -0.05128179490566254, + 0.047154854983091354, + -0.010210862383246422, + 0.004836500156670809, + -0.04071309044957161, + -0.007978121750056744, + -0.01574808359146118, + 0.035281483083963394, + 0.008917578496038914, + -0.005820826627314091, + -0.07670126855373383, + -0.0804087221622467, + -0.06468107551336288, + -0.007902118377387524, + -0.03784310072660446, + 0.02608950063586235, + 0.0274436604231596, + -0.04390903189778328, + -0.031225230544805527, + 0.048269838094711304, + -0.010985083878040314, + 0.04298149794340134, + -0.06590654700994492, + 0.022558806464076042, + 0.022704701870679855, + 0.06547606736421585, + 0.027982808649539948, + -0.05792904645204544, + 0.015139725059270859, + 0.07173333317041397, + 0.06283638626337051, + -0.05971912667155266, + -0.07678008824586868, + 0.007316605653613806, + -0.021310551092028618, + -0.09387249499559402, + 0.0115878377109766, + -0.012920424342155457, + 0.06501199305057526, + -0.03255683183670044, + 0.0866253450512886, + 0.031345926225185394, + 0.035738252103328705, + -0.06544569134712219, + 0.005518982652574778, + 0.02966500073671341, + -0.052181705832481384, + -0.049675680696964264, + -0.05975218117237091, + -0.0351593978703022, + 0.031931787729263306, + -0.025853099301457405, + -0.001225417829118669, + 0.009053198620676994, + -0.1070842295885086, + -0.011272110976278782, + 0.04314321279525757, + -0.03254574164748192, + -0.04160422831773758, + -2.2112274677965615e-08, + -0.0012297069188207388, + -0.19026678800582886, + 0.019166763871908188, + 0.004829736426472664, + -0.05729609727859497, + -0.014608753845095634, + 0.07163739949464798, + -0.007651003077626228, + 0.033794891089200974, + -0.003118199296295643, + -0.00782913900911808, + 0.07153485715389252, + -0.04288395494222641, + -0.05852014198899269, + -0.020784886553883553, + 0.0751258134841919, + -0.143762469291687, + 0.03652190417051315, + -0.05507650971412659, + -0.017675213515758514, + -0.00998273678123951, + 0.08701279014348984, + 0.06539463251829147, + -0.007502029184252024, + 0.028046511113643646, + 0.03285996988415718, + -0.03902461379766464, + 0.06331946700811386, + 0.0850173756480217, + -0.011026233434677124, + 0.014529559761285782, + 0.003651462262496352, + 0.09133274853229523, + -0.03442096337676048, + -0.06868089735507965, + -0.003318238537758589, + -0.04079969599843025, + 0.02383437380194664, + 0.01718948595225811, + -0.006267148070037365, + -0.0665612444281578, + 0.030944496393203735, + 0.009716886095702648, + -0.019295651465654373, + -0.0198903176933527, + -0.017323225736618042, + 0.004924100823700428, + 0.09758587181568146, + -0.04991145431995392, + -0.12560580670833588, + -0.050392307341098785, + 0.013487230986356735, + 0.05018414556980133, + 0.01025847252458334, + -0.06675165891647339, + -0.010038441978394985, + 0.030305946245789528, + 0.06605786085128784, + 0.0908617451786995, + -0.007348992396146059, + 0.11543029546737671, + 0.06936124712228775, + 0.0007736664265394211, + 0.019440410658717155 + ], + "amazon-logo-bold||ecommerce,shopping,logos": [ + 0.05076677352190018, + 0.060300834476947784, + -0.030843397602438927, + 0.007717793807387352, + 0.10835833102464676, + -0.03260716050863266, + 0.0936647355556488, + -0.10217715799808502, + 0.07522040605545044, + -0.020654913038015366, + 0.03210239112377167, + 0.06141066923737526, + 0.03537159040570259, + -0.08014059066772461, + 0.049214016646146774, + -0.012138967402279377, + -0.02052653580904007, + -0.025458889082074165, + 0.012161987833678722, + -0.029712535440921783, + -0.005117121152579784, + 0.02397817000746727, + -0.009725620970129967, + 0.06766919791698456, + -0.08626207709312439, + 0.0628308430314064, + 0.019380321726202965, + 0.03285906836390495, + -0.031879182904958725, + -0.12947270274162292, + 0.015500686131417751, + 0.010139494203031063, + 0.09768202155828476, + 0.036108702421188354, + 0.02371424436569214, + -0.020397797226905823, + -0.0009682042873464525, + -0.05654638260602951, + 0.03718416392803192, + 0.03333403170108795, + 0.05167567357420921, + -0.05796306952834129, + -0.030854228883981705, + 0.01181488111615181, + -0.045382317155599594, + 0.0044476683251559734, + -0.0131995202973485, + 0.04484090209007263, + 0.05808446183800697, + -0.0033502746373414993, + 0.017083344981074333, + -0.06893843412399292, + -0.08522926270961761, + -0.09602022916078568, + -0.06926432996988297, + -0.002181290416046977, + -0.004628981929272413, + -0.0422307588160038, + 0.059271447360515594, + -0.05597291514277458, + 0.054303158074617386, + -0.016326434910297394, + 0.06366506963968277, + 0.07553819566965103, + 0.0894576832652092, + -0.012428933754563332, + -0.04301730915904045, + 0.02301984466612339, + -0.11549071222543716, + 0.043710965663194656, + 0.038788724690675735, + -0.019229618832468987, + -0.027255099266767502, + -0.016653109341859818, + -0.016275011003017426, + 0.03985714167356491, + 0.09515230357646942, + -0.03313862904906273, + -0.05233968421816826, + 0.005516613833606243, + -0.08547117561101913, + -0.04732396453619003, + -0.0948132574558258, + -0.005120700225234032, + 0.031127022579312325, + 0.01237528957426548, + -0.03680476173758507, + -0.07826955616474152, + 0.012683505192399025, + -0.014457880519330502, + -0.05671310797333717, + -0.021158967167139053, + 0.056121934205293655, + 0.003967400640249252, + -0.10354912281036377, + -0.03124391846358776, + -0.01632312498986721, + -0.03810232877731323, + -0.019701847806572914, + 0.04745694249868393, + 0.021300870925188065, + 0.05682386830449104, + 0.0916418507695198, + -0.05536741763353348, + -0.026154248043894768, + 0.00015988915401976556, + -0.013206754811108112, + 0.09559112787246704, + 0.06387899816036224, + 0.03280364349484444, + -0.009297434240579605, + -0.07307412475347519, + -0.039263781160116196, + 0.02802497334778309, + -0.0825885757803917, + -0.033692531287670135, + -0.05232667922973633, + -0.0720541775226593, + 0.12434998899698257, + 0.031011048704385757, + 0.015766069293022156, + -0.0005035242647863925, + -0.014836755581200123, + -0.11231861263513565, + -0.03439274802803993, + 0.006275257561355829, + -0.008045664988458157, + -3.212404186238594e-33, + -0.01816672459244728, + 0.09342296421527863, + -0.030485056340694427, + 0.0033461195416748524, + 0.008577554486691952, + 0.06243347004055977, + -0.03798286244273186, + -0.030336471274495125, + -0.07745789736509323, + 0.055572133511304855, + 0.03553509712219238, + 0.07144026458263397, + -0.01651305891573429, + 0.09437070786952972, + 0.008662831038236618, + -0.03765818849205971, + -0.04037439823150635, + -0.031040741130709648, + -0.0825277715921402, + -0.03177247941493988, + -0.007850611582398415, + 0.039559509605169296, + -0.057898882776498795, + -0.018123043701052666, + -0.05000162869691849, + -0.035116832703351974, + 0.025961903855204582, + 0.015347643755376339, + 0.06344705075025558, + 0.029613729566335678, + 0.09495026618242264, + 0.03899616375565529, + 0.01378712896257639, + 0.013362250290811062, + -0.09361262619495392, + -0.02802944742143154, + -0.04479240998625755, + 0.01682490110397339, + 0.056082163006067276, + 0.0034355176612734795, + -0.05478717014193535, + -0.04166792705655098, + 0.00802182499319315, + 0.07585346698760986, + -0.0291595458984375, + 0.15399619936943054, + 0.04114304110407829, + -0.07243593037128448, + 0.07859332859516144, + 0.03400442749261856, + -0.08400213718414307, + -0.08699866384267807, + 0.0684446468949318, + -0.059073131531476974, + -0.010451027192175388, + -0.1011761724948883, + -0.04610724747180939, + 0.04609457775950432, + -0.002610275289043784, + -0.08496209233999252, + 0.02615293115377426, + -0.007792227901518345, + 0.002572147874161601, + -0.0218974556773901, + -0.03573739156126976, + 0.06530699878931046, + 0.035104796290397644, + 0.06920876353979111, + 0.02784060686826706, + 0.0025957596953958273, + 0.014720825478434563, + 0.086624376475811, + 0.14911288022994995, + 0.04000156372785568, + -0.06176992878317833, + 0.033131200820207596, + -0.007696749176830053, + 0.042979106307029724, + 0.030648071318864822, + 0.01395761501044035, + -0.059888046234846115, + -0.0031885679345577955, + 0.013193770311772823, + 0.09462101012468338, + -0.0069014206528663635, + 0.04658930376172066, + 0.02200653962790966, + 0.02345728687942028, + -0.00917371828109026, + 0.03429345414042473, + -0.019685816019773483, + 0.03834450989961624, + -0.008409595116972923, + -0.020345669239759445, + -0.08200526237487793, + 9.967563021824316e-34, + 0.046541500836610794, + -0.018273886293172836, + 0.030107980594038963, + 0.05614357069134712, + -0.03834060579538345, + 0.01380646601319313, + 0.02399161085486412, + 0.06617281585931778, + -0.08754260092973709, + -0.05195913091301918, + 0.06226425990462303, + 0.025123925879597664, + -0.08894535899162292, + -0.04732330143451691, + -0.015079869888722897, + -0.010878094471991062, + 0.09261918812990189, + 0.024708576500415802, + -0.0382516086101532, + -0.016016235575079918, + -0.02433016523718834, + -0.0358579196035862, + -0.05277588963508606, + 0.024706577882170677, + -0.029960304498672485, + 0.02249239757657051, + 0.03808539733290672, + -0.032074350863695145, + -0.0512191504240036, + -0.026859909296035767, + -0.06868438422679901, + 0.017217816784977913, + 0.03179296478629112, + 0.09513568133115768, + -0.05000020191073418, + 0.010005045682191849, + -0.05001567676663399, + -0.010879355482757092, + 0.04327381029725075, + 0.002548328833654523, + -0.025614244863390923, + 0.02565539814531803, + 0.017867334187030792, + 0.035895343869924545, + 0.013868129812180996, + -0.025893062353134155, + -0.0471324659883976, + -0.09090299159288406, + 0.029182488098740578, + 0.07620900869369507, + -0.05396716296672821, + 0.0389464907348156, + 0.022298067808151245, + 0.009295725263655186, + -0.11669188737869263, + 0.005020804703235626, + -0.012430880218744278, + 0.0753747746348381, + 0.007536958437412977, + 0.04948404058814049, + -0.014160331338644028, + 0.03448493033647537, + 0.017713235691189766, + -0.049626950174570084, + -0.03530590236186981, + -0.021970780566334724, + 0.044432301074266434, + -0.0006774061475880444, + 0.028095494955778122, + 0.06685668230056763, + 0.012253709137439728, + -0.00980202853679657, + -0.005392438732087612, + 0.0028388877399265766, + -0.0561126247048378, + -0.007431127596646547, + 0.0670556053519249, + -0.0012928700307384133, + -0.0441635325551033, + 0.011114011518657207, + -0.014981191605329514, + 0.001361145288683474, + -0.030172323808073997, + 0.09094864875078201, + 0.033895738422870636, + 0.04311830922961235, + -0.09334338456392288, + -0.016301661729812622, + -0.003864926751703024, + -0.02104063704609871, + -0.10242652148008347, + 0.025343164801597595, + 0.024457702413201332, + 0.01067331712692976, + -0.06589771062135696, + -1.6926680501683222e-08, + 0.027607951313257217, + -0.04546736180782318, + 0.09049846976995468, + 0.0241344403475523, + 0.11912836134433746, + 0.025506217032670975, + -0.003118581371381879, + -0.03740403428673744, + -0.013453161343932152, + -0.010389014147222042, + -0.02554922178387642, + -0.07237361371517181, + -0.11533822119235992, + 0.0033070414792746305, + -0.01118200272321701, + 0.018353113904595375, + -0.03751298412680626, + 0.06446415185928345, + 0.025781238451600075, + -0.04029181972146034, + -0.11320019513368607, + 0.06539776176214218, + 0.061858780682086945, + -0.02960694395005703, + 0.009771267883479595, + 0.06609772890806198, + 0.00034051050897687674, + -0.02921883948147297, + 0.03436980023980141, + 0.0020184204913675785, + 0.0021780410315841436, + 0.05679097771644592, + 0.010028094053268433, + 0.006848687306046486, + -0.0783558264374733, + -0.10195371508598328, + -0.04504496976733208, + -0.0018203262006863952, + -0.09413855522871017, + 0.0025465493090450764, + 0.012940788641571999, + 0.004312632139772177, + -0.047680117189884186, + -0.03409627079963684, + 0.028230711817741394, + 0.010672330856323242, + 0.041896138340234756, + 0.025797594338655472, + -0.04115396738052368, + -0.024089474231004715, + 0.0181164238601923, + -0.042729273438453674, + 0.012079732492566109, + 0.06053641811013222, + -0.051022469997406006, + -0.10575545579195023, + 0.025727031752467155, + 0.017416488379240036, + 0.015568909235298634, + 0.07613781839609146, + 0.1373811960220337, + -0.10787107050418854, + 0.006111386232078075, + -0.031913530081510544 + ], + "ambulance-bold||*new*,first-aid,emt,medical,medicine,injury,safety,emergency,doctor,vehicles": [ + -0.021728625521063805, + -0.023127321153879166, + 0.02122778445482254, + -0.01103506051003933, + 0.03391316160559654, + 0.017875032499432564, + 0.025972479954361916, + 0.04268106445670128, + -0.018765363842248917, + 0.03337002918124199, + 0.06147710978984833, + 0.02961788699030876, + 0.05220073089003563, + 0.01849459856748581, + -0.07623735070228577, + 0.0002868533774744719, + 0.05156590789556503, + -0.048508331179618835, + -0.05760149285197258, + 0.06363754719495773, + 0.0071830893866717815, + 0.1288108229637146, + 0.024118024855852127, + -0.010099741630256176, + -0.007142913527786732, + -0.0286392942070961, + -0.031554266810417175, + 0.03950359672307968, + -0.011202058754861355, + -0.09646670520305634, + 0.026848044246435165, + -0.11640582978725433, + 0.08378829807043076, + -0.02413645200431347, + 0.010498696938157082, + -0.018470248207449913, + 0.06530831009149551, + 0.00876927562057972, + -0.005353872198611498, + 0.06410156935453415, + 0.0016772800590842962, + -0.049657613039016724, + -0.04291624575853348, + -0.01044459454715252, + 0.04838183522224426, + 0.00043217942584306, + 0.01457706093788147, + -0.045758068561553955, + 0.06806795299053192, + -0.020265726372599602, + 0.0454455241560936, + -0.05491882935166359, + -0.06762746721506119, + 0.019323598593473434, + 0.028408285230398178, + -0.07849381864070892, + -0.0627356693148613, + -0.017856046557426453, + -0.08634664118289948, + -0.014906717464327812, + -0.08727322518825531, + 0.01800016313791275, + 0.07781107723712921, + 0.010982131585478783, + -0.0662219300866127, + -0.002804148942232132, + -0.015750914812088013, + -0.016054421663284302, + 0.005043272860348225, + 0.018949024379253387, + -0.048425689339637756, + -0.0070930300280451775, + 0.06495621055364609, + 0.044432103633880615, + -0.057689227163791656, + -0.018977373838424683, + 0.08841338753700256, + 0.03633568063378334, + -0.005773626733571291, + -0.03631053492426872, + 0.007541645783931017, + -0.0944427102804184, + -0.03748210892081261, + 0.003942176233977079, + -0.03550863638520241, + 0.07030662894248962, + -0.11379361897706985, + -0.014131980948150158, + -0.09065783768892288, + 0.011256415396928787, + -0.04683368653059006, + -0.10112939774990082, + 0.12286489456892014, + 0.060868293046951294, + 0.04442782700061798, + 0.04647253081202507, + -0.008601953275501728, + -0.03102251887321472, + -0.022394968196749687, + 0.03234053775668144, + 0.00207749311812222, + -0.015465484000742435, + 0.04815911874175072, + 0.0719037652015686, + -0.02778022363781929, + -0.06422453373670578, + -0.1040610522031784, + -0.09999298304319382, + -0.02172663062810898, + 0.026650236919522285, + 0.04803363233804703, + -0.01036740094423294, + -0.004171842709183693, + -0.06384478509426117, + -0.0573442317545414, + 0.030620921403169632, + -0.1161431297659874, + -0.0004661361454054713, + 0.09142295271158218, + 0.09058614820241928, + -0.03005746193230152, + -0.01956101320683956, + -0.03269084915518761, + -0.050864238291978836, + 0.028697706758975983, + 0.020293550565838814, + 0.0432320311665535, + -5.1230644590086484e-33, + 0.03286178037524223, + -0.011163490824401379, + 0.0225647184997797, + 0.070834219455719, + -0.02272481843829155, + 0.021011779084801674, + -0.1004788875579834, + 0.002872822107747197, + 0.03328924998641014, + -0.0012307340512052178, + -0.016252707690000534, + 0.05937133729457855, + 0.0902286097407341, + 0.01885232888162136, + -0.06856034696102142, + -0.0012944991467520595, + -0.058340296149253845, + -0.017018936574459076, + -0.10424350947141647, + -0.025392798706889153, + -0.09606195986270905, + 0.026544038206338882, + -0.034277789294719696, + 0.022638309746980667, + -0.051118284463882446, + -0.012697779573500156, + 0.02015075273811817, + -0.03702697902917862, + 0.10317108035087585, + 0.021410180255770683, + -0.08363969624042511, + 0.08822105824947357, + 0.020621253177523613, + -0.01740405336022377, + -0.0003256330965086818, + 0.055215053260326385, + -0.029339296743273735, + -0.043159205466508865, + -0.061315715312957764, + -0.06174074113368988, + -0.07181849330663681, + 0.001425572787411511, + -0.05285703390836716, + 0.04087802395224571, + 0.06096380576491356, + 0.0018131433753296733, + -0.025837847962975502, + -0.03300339728593826, + 0.034646615386009216, + -0.020999440923333168, + -0.06771215796470642, + -0.044085901230573654, + 0.010412029922008514, + -0.02468325011432171, + -0.027977144345641136, + 0.026056667789816856, + -0.0028123578522354364, + 0.08939167857170105, + 0.01464751549065113, + -0.007720349356532097, + 0.02199060283601284, + 0.04200969263911247, + 0.057006191462278366, + 0.02826871909201145, + 0.03400687128305435, + 0.0024249358102679253, + -0.015685375779867172, + -0.031804587692022324, + 0.09648102521896362, + 0.018897609785199165, + 0.0023191701620817184, + 0.04170090705156326, + 0.024012524634599686, + 0.012897474691271782, + -0.014785458333790302, + 0.0527261346578598, + -0.00863654725253582, + 0.007926651276648045, + 0.010625423863530159, + -0.07415727525949478, + -0.09523792564868927, + -0.007354564033448696, + -0.03552890196442604, + 0.11617461591959, + 0.10240331292152405, + -0.023011215031147003, + -0.05966076999902725, + -0.01368814054876566, + -0.0712956115603447, + -0.04505455121397972, + -0.10433565080165863, + 0.07636114954948425, + -0.01259346678853035, + 0.036009419709444046, + -0.023049356415867805, + 6.887032564728808e-35, + 0.05664803087711334, + 0.028365636244416237, + -0.03234503045678139, + -0.01118315290659666, + 0.02834264747798443, + -0.012187741696834564, + 0.0014924296410754323, + 0.03257809951901436, + 0.04176905378699303, + 0.0836329460144043, + -0.0112394317984581, + -0.05265192687511444, + 0.014290720224380493, + -0.04435398802161217, + 0.03364437445998192, + -0.05958158150315285, + -0.07490178197622299, + -0.0036665243096649647, + -0.04475371167063713, + 0.11642631143331528, + 0.006419628858566284, + -0.0386846587061882, + -0.04214490205049515, + 0.10294988006353378, + 0.03840504586696625, + 0.06906348466873169, + -0.015021979808807373, + -0.013260475359857082, + -0.05820830911397934, + -0.09202200174331665, + -0.04640252888202667, + -0.05523684620857239, + 0.05440963804721832, + 0.06783121824264526, + -0.09285208582878113, + 0.03848681598901749, + 0.03595179319381714, + -0.05008384957909584, + -0.05940655618906021, + -0.06226188689470291, + 0.04971948638558388, + 0.019963903352618217, + 0.0847010463476181, + 0.06252714991569519, + 0.015066049993038177, + -0.032004378736019135, + -0.07611837238073349, + -0.021638261154294014, + -0.019969051703810692, + -0.015360199846327305, + -0.031067045405507088, + -0.03993537649512291, + -0.04906795918941498, + 0.03253062814474106, + 0.03997709974646568, + -0.00901529286056757, + -0.014214382506906986, + -0.05924305319786072, + -0.06821796298027039, + -0.019049745053052902, + 0.037844687700271606, + 0.02247277833521366, + -0.06552211195230484, + 0.12697690725326538, + -0.04576204717159271, + -0.10142303258180618, + -0.004022357054054737, + -0.0489809587597847, + -0.042537037283182144, + -0.011856308206915855, + 0.06306055933237076, + 0.052944354712963104, + -0.05380360782146454, + -0.0865972712635994, + 0.018558144569396973, + -0.028727611526846886, + -0.006934851873666048, + -0.017202194780111313, + -0.05595201626420021, + 0.0021394011564552784, + 0.03664729744195938, + -0.0786048173904419, + -0.01609923504292965, + 0.10235432535409927, + -0.02845904231071472, + 0.005433123558759689, + 0.09843789786100388, + -0.020640874281525612, + 0.005023372825235128, + 0.014212134294211864, + -0.06908377259969711, + 0.09017587453126907, + -0.04129917919635773, + 0.07118593156337738, + -0.07490795105695724, + -2.67423097000119e-08, + 0.009451168589293957, + 0.06663314253091812, + -0.07317937910556793, + -0.014174169860780239, + -0.03410806879401207, + -0.10438705235719681, + -0.06835759431123734, + 0.0410471074283123, + -0.10072240233421326, + -0.002819847548380494, + 0.006174921989440918, + 0.06560706347227097, + -0.00044610569602809846, + 0.010870813392102718, + 0.08907055854797363, + -0.011747739277780056, + -0.016254570335149765, + 0.033016107976436615, + -0.02728971838951111, + -0.009691964834928513, + -0.013071522116661072, + 0.01775166392326355, + 0.021550193428993225, + -0.01998637616634369, + 0.0688091591000557, + 0.04699333384633064, + -0.08375901728868484, + -0.06111122667789459, + 0.04368162900209427, + 0.04184221103787422, + 0.0019664783030748367, + 0.04782484471797943, + -0.019297409802675247, + -0.001067572389729321, + -0.10971525311470032, + -0.008577300235629082, + 0.06360264122486115, + -0.057445887476205826, + -0.0012401262065395713, + 0.043397948145866394, + 0.08250320702791214, + -0.049690067768096924, + 0.04331548139452934, + -0.00741647370159626, + 0.028569040820002556, + -0.021291356533765793, + 0.03995063155889511, + -0.004212339874356985, + -0.04013004153966904, + -0.1050397977232933, + 0.036660462617874146, + -0.06516654044389725, + 0.0430898480117321, + -0.001066753058694303, + 0.007956973277032375, + 0.050750188529491425, + 0.01701892353594303, + -0.007856837473809719, + 0.014562422409653664, + 0.06569583714008331, + 0.0932597666978836, + 0.0325920470058918, + 0.06914805620908737, + 0.0496346615254879 + ], + "anchor-bold||nautical,boats,ships,hope,safety,insurance": [ + -0.005679521709680557, + 0.04973858222365379, + -0.009298332966864109, + 0.020841004326939583, + 0.03917228803038597, + -0.018116001039743423, + 0.08798898011445999, + -0.0004011218552477658, + -0.07620052993297577, + 0.024682974442839622, + 0.04925312101840973, + 0.025136450305581093, + 0.03793451562523842, + -0.011965177953243256, + -0.05884953588247299, + 0.07927455753087997, + 0.005711370147764683, + 0.023436613380908966, + -0.03849976509809494, + 0.05385086312890053, + -0.058552950620651245, + 0.04027840867638588, + -0.016822896897792816, + 0.007096108980476856, + -0.03831823170185089, + -0.057609353214502335, + 0.03828679025173187, + 0.04911119118332863, + -0.044612787663936615, + -0.03427929803729057, + -0.061918433755636215, + -0.038646820932626724, + 0.020676661282777786, + 0.006588034797459841, + 0.02960342727601528, + 0.0614999383687973, + -0.023339472711086273, + -0.07787162065505981, + -0.044365670531988144, + 0.04560086876153946, + -0.02581430785357952, + -0.014101873151957989, + 0.012381058186292648, + 0.07146754115819931, + 0.001400195062160492, + -0.026012316346168518, + 0.008704209700226784, + 0.015886759385466576, + -0.012969612143933773, + 0.052033036947250366, + -0.018902646377682686, + -0.03854617848992348, + -0.07659824937582016, + -0.04640805721282959, + -0.009285254403948784, + -0.02193126082420349, + -0.10252566635608673, + 0.0009370588231831789, + 0.016928043216466904, + 0.011593137867748737, + 0.07699820399284363, + 0.06548579037189484, + -0.007988298311829567, + 0.05432717874646187, + 0.0066050454042851925, + -0.035028453916311264, + -0.039487674832344055, + 0.06733553111553192, + -0.02853122167289257, + -0.021915236487984657, + 0.005829141475260258, + -0.05003659054636955, + 0.024678338319063187, + 0.018613917753100395, + -0.010897117666900158, + -0.010884368792176247, + 0.013191431760787964, + 0.005677155684679747, + -0.011964868754148483, + -0.0383056104183197, + -0.10577280819416046, + -0.07051382958889008, + 0.02326110564172268, + -0.03416020795702934, + 0.03856602683663368, + 0.07126639038324356, + -0.023956749588251114, + 0.021344320848584175, + 0.025900300592184067, + 0.01804495044052601, + -0.017716391012072563, + -0.11589799076318741, + -0.0017318687168881297, + 0.002955300733447075, + 0.03293431177735329, + 0.05818581208586693, + -0.060672346502542496, + -0.01697435788810253, + -0.10315344482660294, + 0.03872701898217201, + 0.1104598343372345, + -0.02952605113387108, + 0.030519185587763786, + 0.026240529492497444, + -0.04631808027625084, + -0.013597448356449604, + -0.0546082928776741, + 0.027625584974884987, + 0.028061959892511368, + -0.033591631799936295, + -0.0347878597676754, + -0.02320520207285881, + 0.0007320926524698734, + -0.04140152782201767, + -0.11469398438930511, + -0.0009220459032803774, + -0.11401229351758957, + -0.05509551987051964, + 0.1491190791130066, + -0.04998229444026947, + 0.062334101647138596, + 0.020324626937508583, + 0.058168910443782806, + -0.0649024099111557, + -0.12113872915506363, + -0.03516249358654022, + 0.07120103389024734, + -4.2168442725490686e-33, + -0.0021268329583108425, + 0.057203613221645355, + -0.04428336024284363, + 0.011083177290856838, + 0.04357291758060455, + 0.010009443387389183, + -0.03858329728245735, + -0.06210566312074661, + -0.056478843092918396, + 0.06735732406377792, + -0.04487191140651703, + 0.07859818637371063, + 6.238854984985664e-05, + -0.018955672159790993, + 0.027568086981773376, + -0.028237884864211082, + -0.03161895275115967, + 0.02375439926981926, + -0.049553971737623215, + -0.02545219101011753, + -0.025293679907917976, + 0.0236760675907135, + -0.005435135215520859, + -0.08763161301612854, + 0.022591764107346535, + -0.030438490211963654, + 0.00018029907369054854, + -0.041530169546604156, + -0.054937586188316345, + 0.05798329785466194, + 0.00785430520772934, + 0.05917065963149071, + 0.04997768625617027, + -0.04801663011312485, + 0.03284502029418945, + -0.02277478203177452, + -0.013361102901399136, + -0.05648532882332802, + -0.124121755361557, + -0.04523221775889397, + -0.045439112931489944, + -0.03366458788514137, + 0.03875157982110977, + 0.11030053347349167, + 0.012142003513872623, + 0.038008324801921844, + 0.03567720204591751, + 0.01467791385948658, + 0.011112569831311703, + 0.0014199524885043502, + -0.04846622422337532, + -0.046090081334114075, + -0.0249456986784935, + -0.06762105971574783, + -0.02150922827422619, + 0.007713181897997856, + 0.013665665872395039, + 0.09944327175617218, + -0.030315667390823364, + -0.01804272085428238, + -0.08893653005361557, + -0.009506232105195522, + 0.06908584386110306, + -0.07381396740674973, + 0.03589581325650215, + 0.06941758841276169, + 0.03458155319094658, + -0.008727006614208221, + 0.03150768578052521, + 0.02559521608054638, + 0.003556613577529788, + 0.035950470715761185, + 0.07145032286643982, + 0.03744209185242653, + -0.015422943979501724, + 0.04962517321109772, + -0.03498262166976929, + -0.018005087971687317, + 0.08941859751939774, + -0.046554066240787506, + -0.10103260725736618, + 0.04208174720406532, + -0.021384187042713165, + 0.11888287961483002, + 0.04003458842635155, + -0.06612064689397812, + -0.029681798070669174, + -0.06065717712044716, + -0.030020590871572495, + 0.08011370897293091, + -0.042690690606832504, + 0.04740288108587265, + 0.022310452535748482, + -0.04418833553791046, + -0.08084306120872498, + 1.2816358887362744e-33, + 0.005349449347704649, + 0.010395272634923458, + 0.004209124483168125, + -0.05264877900481224, + -0.03233081102371216, + 0.0045604463666677475, + 0.033720869570970535, + -0.08266020566225052, + 0.023534905165433884, + 0.008643101900815964, + -0.10430778563022614, + -0.0553811639547348, + 0.03244363144040108, + 0.06251602619886398, + -0.02661179006099701, + -0.04064996913075447, + 0.060730475932359695, + 0.05568654462695122, + 0.003841554978862405, + -0.033473119139671326, + 0.08111948519945145, + -0.05857045575976372, + -0.10031449049711227, + 0.13465680181980133, + 0.024883609265089035, + 0.04295323044061661, + 0.08650970458984375, + -0.08283406496047974, + -0.08563095331192017, + -0.056071970611810684, + -0.008275962434709072, + 0.02972010150551796, + 0.011007203720510006, + 0.0837005078792572, + -0.10255805402994156, + 0.08921051025390625, + 0.10070578008890152, + 0.04118242487311363, + -0.03524458035826683, + -0.05602501332759857, + 0.1023920550942421, + -0.040915507823228836, + 0.06848937273025513, + 0.010061648674309254, + -0.04465862736105919, + -0.032343849539756775, + -0.032545074820518494, + 0.006830442231148481, + -0.03449534997344017, + 0.04621119797229767, + -0.08337598294019699, + -0.018992919474840164, + 0.035153113305568695, + 0.0049211448058485985, + -0.043472304940223694, + 0.017323536798357964, + -0.09546703845262527, + -0.0735526904463768, + -0.03895926475524902, + 0.061130326241254807, + 0.05334770679473877, + 0.02202056348323822, + -0.01574188657104969, + 0.16362527012825012, + 0.02939087525010109, + -0.038768500089645386, + -0.018003083765506744, + -0.09068037569522858, + -0.09455545246601105, + -0.004389210604131222, + 0.022555487230420113, + -0.029835963621735573, + -0.059564828872680664, + -0.011626273393630981, + -0.011310671456158161, + -0.05667141079902649, + 0.05216425284743309, + 1.7951993868337013e-05, + -0.028289617970585823, + 0.0569438710808754, + 0.06452002376317978, + -0.09967370331287384, + 0.00894217099994421, + 0.049140315502882004, + 0.014380066655576229, + 0.011009929701685905, + 0.03555306792259216, + 0.043797995895147324, + 0.06572695076465607, + 0.013489638455212116, + -0.03237767890095711, + 0.06947728991508484, + -0.10538826882839203, + -0.005717407912015915, + -0.058586716651916504, + -1.829991447266366e-08, + 0.041302140802145004, + 0.05968824028968811, + -0.01400079857558012, + -0.0538974404335022, + -0.05212296545505524, + -0.019376182928681374, + -0.00863343384116888, + -0.003930516075342894, + -0.04566418007016182, + -0.021421588957309723, + -0.005950184538960457, + 0.012060953304171562, + -0.08011215180158615, + -0.00978313572704792, + 0.021769965067505836, + -0.005210030358284712, + -0.03780822455883026, + 0.0649360865354538, + -0.03294052928686142, + -0.054905254393815994, + 0.026167482137680054, + 0.052023887634277344, + 0.025854092091321945, + -0.05201365798711777, + -0.03437943384051323, + -0.015316852368414402, + 0.014467287808656693, + 0.06533176451921463, + 0.11781755834817886, + 0.0978381484746933, + 0.025574181228876114, + 0.026342878118157387, + -0.0361807644367218, + -0.0016004584031179547, + -0.07163155823945999, + 0.0075796968303620815, + 0.0533130057156086, + -0.002710216213017702, + 0.025044966489076614, + 0.07745455205440521, + -0.023247884586453438, + 0.08312088251113892, + 0.032655008137226105, + 0.015218447893857956, + 0.04486840218305588, + 0.06607276946306229, + 0.008947239257395267, + 0.030945129692554474, + -0.0013320554280653596, + -0.10206399112939835, + 0.02973214164376259, + -0.03321710228919983, + 0.006739232689142227, + 0.07166706770658493, + 0.0333230085670948, + 0.04861428961157799, + 0.06216008588671684, + 0.02876490168273449, + -0.02071027271449566, + 0.038745563477277756, + 0.02378668263554573, + -0.04274791106581688, + 0.05419786274433136, + 0.09279623627662659 + ], + "anchor-simple-bold||nautical,boats,ships,hope,safety,insurance": [ + 0.011361321434378624, + 0.0460486114025116, + -0.0038677656557410955, + 0.028318244963884354, + 0.04593276605010033, + -0.01828484609723091, + 0.08852680027484894, + 0.017015991732478142, + -0.08633030951023102, + 0.03860219940543175, + 0.046070344746112823, + 0.015708373859524727, + 0.032381825149059296, + -0.011492179706692696, + -0.05603776127099991, + 0.06823437660932541, + -0.004789568483829498, + 0.011367741972208023, + -0.03869982808828354, + 0.06619354337453842, + -0.06531936675310135, + 0.030109427869319916, + -0.040147289633750916, + 0.010087518021464348, + -0.044985849410295486, + -0.04721897840499878, + 0.041102249175310135, + 0.0665976032614708, + -0.018361184746026993, + -0.04126964882016182, + -0.0658511221408844, + -0.026745375245809555, + 0.02696424163877964, + -0.001283039222471416, + 0.03184698522090912, + 0.04722849279642105, + -0.012424332089722157, + -0.05896110460162163, + -0.041180189698934555, + 0.04404132440686226, + -0.03634251654148102, + -0.02278810739517212, + 0.010816392488777637, + 0.084907665848732, + -0.010508683510124683, + -0.027990298345685005, + 0.0028236627113074064, + 0.019888021051883698, + -0.022421278059482574, + 0.034768905490636826, + -0.017156125977635384, + -0.04001879319548607, + -0.09366977214813232, + -0.06079110503196716, + -0.005647208541631699, + -0.00905370432883501, + -0.1117040365934372, + 0.013519659638404846, + 0.019108017906546593, + -0.001733680721372366, + 0.088435098528862, + 0.04207982122898102, + -0.005720088724046946, + 0.05479759722948074, + 0.0150509187951684, + -0.03780046105384827, + -0.03895510733127594, + 0.06272102892398834, + -0.03392012417316437, + -0.017667220905423164, + 0.007452500518411398, + -0.0532497763633728, + 0.006253680679947138, + 0.028321947902441025, + -0.012067025527358055, + -0.031179597601294518, + 0.005101269576698542, + 0.012685582973062992, + -0.023865437135100365, + -0.022441530600190163, + -0.12959681451320648, + -0.07790160924196243, + -0.004945423454046249, + -0.014990457333624363, + 0.03850623965263367, + 0.06566986441612244, + -0.019758611917495728, + 0.01844472624361515, + 0.0333656445145607, + 0.01394498161971569, + -0.014972303062677383, + -0.08917122334241867, + 0.01270307507365942, + -0.0010261614806950092, + 0.03467075526714325, + 0.053037893027067184, + -0.04205915331840515, + -0.013722282834351063, + -0.12499915063381195, + 0.04935189336538315, + 0.10269788652658463, + -0.01801890693604946, + 0.0596507266163826, + 0.008664914406836033, + -0.0375521220266819, + -0.01895807683467865, + -0.047835979610681534, + 0.01577778533101082, + 0.02992640808224678, + -0.047569453716278076, + -0.05265342816710472, + -0.0408669076859951, + 0.009170359931886196, + -0.04286342114210129, + -0.11095792055130005, + -0.01822958141565323, + -0.11441118270158768, + -0.06382826715707779, + 0.1453845202922821, + -0.025485990568995476, + 0.049337565898895264, + 0.0156856719404459, + 0.045139770954847336, + -0.06506180018186569, + -0.1241256445646286, + -0.024191860109567642, + 0.07735896110534668, + -4.711458499912501e-33, + 0.003060355084016919, + 0.07677066326141357, + -0.043797027319669724, + 0.021288149058818817, + 0.04314477741718292, + -0.0016672032652422786, + -0.05134020745754242, + -0.06696746498346329, + -0.052655186504125595, + 0.06877152621746063, + -0.012330356054008007, + 0.07028984278440475, + -0.006010455545037985, + 0.005343589466065168, + 0.03918139636516571, + -0.030453817918896675, + -0.007702266797423363, + 0.018565790727734566, + -0.05193737894296646, + -0.031106770038604736, + -0.02865571714937687, + 0.06748074293136597, + 7.788974471623078e-05, + -0.10930104553699493, + 0.017969464883208275, + -0.04003352299332619, + 0.005115820560604334, + -0.0447920560836792, + -0.0611044242978096, + 0.05017915740609169, + 0.02386246807873249, + 0.04875652864575386, + 0.05098153278231621, + -0.030642718076705933, + 0.030117513611912727, + -0.03645564615726471, + 0.007771322038024664, + -0.05194854736328125, + -0.1140919178724289, + -0.05673682689666748, + -0.06361200660467148, + -0.028351258486509323, + 0.044994521886110306, + 0.09441909193992615, + 0.03240865468978882, + 0.06378649920225143, + 0.03323051705956459, + 0.008400794118642807, + 0.00549886142835021, + -0.007855027914047241, + -0.04998889937996864, + -0.03285304456949234, + -0.016106536611914635, + -0.056999314576387405, + -0.013258259743452072, + 0.022747894749045372, + 0.010310739278793335, + 0.09496263414621353, + -0.04235490784049034, + -0.008053341880440712, + -0.0857478529214859, + 0.005540140438824892, + 0.06130241975188255, + -0.06560925394296646, + 0.02872086688876152, + 0.07875218242406845, + 0.019073352217674255, + -0.012321513146162033, + 0.03732309117913246, + 0.03283831104636192, + -0.0018087986391037703, + 0.04832654446363449, + 0.07049467414617538, + 0.023483265191316605, + 0.011459145694971085, + 0.060910291969776154, + -0.008110292255878448, + -0.045919615775346756, + 0.07956401258707047, + -0.048085298389196396, + -0.1012568473815918, + 0.04917970299720764, + -0.03711618110537529, + 0.12071553617715836, + 0.006129569839686155, + -0.0719335526227951, + -0.03491944074630737, + -0.04483417421579361, + -0.04438607394695282, + 0.08580677956342697, + -0.05127977952361107, + 0.04971839115023613, + 0.014710900373756886, + -0.050415124744176865, + -0.07658684998750687, + 1.9760037996803575e-33, + -0.005365871824324131, + 0.00535143306478858, + -0.0024155382998287678, + -0.03894996643066406, + -0.018503019586205482, + 0.027220549061894417, + 0.03882589191198349, + -0.08886802941560745, + 0.0315830372273922, + 0.02256234548985958, + -0.0966344103217125, + -0.06068271026015282, + 0.018817676231265068, + 0.055232934653759, + -0.02596127800643444, + -0.02961464412510395, + 0.05500238016247749, + 0.0777018740773201, + 0.012500197626650333, + -0.017260713502764702, + 0.08345065265893936, + -0.045063260942697525, + -0.12015362083911896, + 0.11151440441608429, + 0.04444019868969917, + 0.05597337335348129, + 0.06529922783374786, + -0.08028250187635422, + -0.08972629904747009, + -0.05147147178649902, + -0.011041290126740932, + 0.017739636823534966, + 0.013625155203044415, + 0.063063845038414, + -0.1004970595240593, + 0.08804327249526978, + 0.0738678127527237, + 0.028345435857772827, + -0.03158062323927879, + -0.04982195422053337, + 0.08101321756839752, + -0.034112971276044846, + 0.08136436343193054, + 0.0036711266729980707, + -0.031355828046798706, + -0.0422760508954525, + -0.032468851655721664, + -0.015099096111953259, + -0.050701726227998734, + 0.03578563034534454, + -0.08566678315401077, + -0.02302331104874611, + 0.02992226555943489, + 0.00831656251102686, + -0.03276326134800911, + 0.015795079991221428, + -0.0868631899356842, + -0.058177731931209564, + -0.03085344471037388, + 0.07129296660423279, + 0.04517433047294617, + 0.021653957664966583, + -0.04303170368075371, + 0.15469688177108765, + 0.02734084613621235, + -0.03489706292748451, + -0.018666332587599754, + -0.09578078985214233, + -0.1020745187997818, + -0.008092940784990788, + 0.03025319054722786, + -0.026897501200437546, + -0.05078495293855667, + -0.02469303272664547, + -0.0013988343998789787, + -0.05309593677520752, + 0.058324798941612244, + -0.008023886941373348, + -0.02850300818681717, + 0.03588779270648956, + 0.08423225581645966, + -0.09824352711439133, + 0.004452017601579428, + 0.02702171355485916, + 0.024443812668323517, + 0.007907364517450333, + 0.028554458171129227, + 0.04290614649653435, + 0.06816799938678741, + 0.023723674938082695, + -0.04017644375562668, + 0.08025790005922318, + -0.08851554989814758, + 0.008834446780383587, + -0.05810777097940445, + -1.962778917175001e-08, + 0.03912351280450821, + 0.026144932955503464, + -0.015404922887682915, + -0.059447333216667175, + -0.04493778198957443, + -0.018997088074684143, + -0.00703842006623745, + -0.019398173317313194, + -0.04332256317138672, + -0.007022388279438019, + -0.008671285584568977, + -0.002381820697337389, + -0.09101850539445877, + 0.01702045276761055, + 0.009233112446963787, + 0.024582533165812492, + -0.05094052478671074, + 0.05986596643924713, + -0.02661590650677681, + -0.05568763241171837, + 0.020675858482718468, + 0.05770484358072281, + 0.017771568149328232, + -0.045474302023649216, + -0.0399845615029335, + -0.007584745064377785, + 0.011935072019696236, + 0.08152937889099121, + 0.11517301201820374, + 0.10108837485313416, + 0.04084722325205803, + 0.03758949041366577, + -0.03982304036617279, + 0.008436043746769428, + -0.08710954338312149, + 0.016649670898914337, + 0.04355188459157944, + 0.001449685194529593, + 0.009436845779418945, + 0.06692687422037125, + -0.01668126881122589, + 0.08263511210680008, + 0.025716714560985565, + 0.005542268976569176, + 0.04711288958787918, + 0.07228870689868927, + 0.016335684806108475, + 0.022991212084889412, + -0.0073767537251114845, + -0.11307325214147568, + 0.037328653037548065, + -0.038851652294397354, + 0.021320709958672523, + 0.06249399110674858, + 0.029622312635183334, + 0.05523369088768959, + 0.07428908348083496, + 0.05510473996400833, + -0.030375223606824875, + 0.03727848082780838, + 0.03983001038432121, + -0.0037432913668453693, + 0.04363077133893967, + 0.08388439565896988 + ], + "android-logo-bold||logos,google,mobile,phone,cellular,cellphone": [ + -0.034757617861032486, + 0.06342574954032898, + 0.003845426719635725, + -0.07914324849843979, + 0.0513615645468235, + -0.07849995046854019, + 0.05458490177989006, + -0.05454723536968231, + 0.054168812930583954, + -0.015090535394847393, + 0.0402275025844574, + 0.056186359375715256, + 0.09453382343053818, + -0.05218571051955223, + 0.05055047571659088, + -0.05939362198114395, + -2.7537609639693983e-05, + 0.00013359238801058382, + 0.02158600091934204, + 0.0014380458742380142, + 0.05112171173095703, + 0.029621265828609467, + 0.032718319445848465, + -0.012072298675775528, + 0.07494139671325684, + -3.874649337376468e-05, + 0.0439201258122921, + -0.024181708693504333, + -0.0008899542735889554, + -0.0840597152709961, + -0.041489116847515106, + 0.058562736958265305, + 0.09805651754140854, + 0.04817159101366997, + -0.02322417125105858, + -0.04958951100707054, + -0.014074956066906452, + 0.03169868886470795, + 0.024108609184622765, + 0.04949521645903587, + 0.008919920772314072, + -0.09276559203863144, + 0.051386427134275436, + 0.03704165294766426, + -0.05854601413011551, + 0.01692608930170536, + -0.05713532119989395, + -0.029231658205389977, + 0.020033812150359154, + -0.0064103249460458755, + 0.04156772419810295, + -0.09388294816017151, + -0.10961776226758957, + -0.04260442405939102, + -0.07000473141670227, + -0.03174270689487457, + -0.028923574835062027, + 0.037450555711984634, + 0.06721871346235275, + 0.027019569650292397, + 0.040332090109586716, + 0.037882398813962936, + -0.01135000865906477, + 0.1125255674123764, + 0.0581529438495636, + 0.018911097198724747, + 0.01576215773820877, + -0.014237599447369576, + -0.07494357973337173, + 0.009892459027469158, + 0.07815965265035629, + 0.009523081593215466, + 0.002614167984575033, + -0.036980219185352325, + -0.03740513324737549, + 0.07538995146751404, + 0.05370377004146576, + 0.030222231522202492, + -0.03172296658158302, + -0.06386542320251465, + -0.07645971328020096, + -0.038930460810661316, + -0.011827967129647732, + 0.025702491402626038, + 0.0792260468006134, + 0.030788473784923553, + -0.06299704313278198, + -0.02511204034090042, + -0.015603713691234589, + -0.01665240153670311, + -0.1171225905418396, + 0.042776502668857574, + 0.016089677810668945, + 0.00777058769017458, + -0.11984620243310928, + 0.0337662473320961, + -0.07242331653833389, + -0.052664246410131454, + -0.08320827037096024, + 0.07717803120613098, + 0.00923183374106884, + 0.0645025447010994, + 0.08512254804372787, + 0.005982022732496262, + 0.00685103889554739, + 0.010603977367281914, + -0.026146449148654938, + -0.0402391143143177, + 0.031202012673020363, + 0.07123501598834991, + 0.010392739437520504, + -0.04953903704881668, + -0.05756772682070732, + -0.02128390409052372, + -0.09127303212881088, + -0.03735905513167381, + -0.036268897354602814, + -0.0364210270345211, + 0.1469980627298355, + 0.01399183925241232, + -0.06003692001104355, + -0.04591172933578491, + -0.07163361459970474, + -0.10790517181158066, + -0.011217406019568443, + 0.014748693443834782, + -0.04019179940223694, + -4.234630236760979e-33, + 0.04118430241942406, + 0.06607070565223694, + 0.00716615142300725, + 0.03967713564634323, + -0.04355069249868393, + 0.05785074457526207, + -0.040759243071079254, + -0.06184061989188194, + -0.08579102158546448, + 0.004111520014703274, + 0.04844454303383827, + 0.07976485788822174, + -0.01315817330032587, + 0.06062665209174156, + 0.06096584349870682, + -0.056021369993686676, + -0.030438454821705818, + -0.05204297602176666, + -0.052738334983587265, + -0.05272499471902847, + -0.045053597539663315, + 0.002268218668177724, + -0.05455804616212845, + -0.025901323184370995, + -0.017395347356796265, + -0.0052485158666968346, + 0.0796620324254036, + -0.03062375634908676, + -0.04027553275227547, + 0.013560407795011997, + 0.05070881545543671, + -0.014340918511152267, + 0.03239921107888222, + 0.03255299851298332, + -0.0328100360929966, + 0.005316867493093014, + -0.05109579861164093, + -0.04136175289750099, + 0.010681459680199623, + 0.0049981321208179, + -0.1018061563372612, + -0.05943518131971359, + -0.041360706090927124, + 0.0072524226270616055, + 0.03364500030875206, + 0.13172760605812073, + -0.02396625652909279, + -0.13725723326206207, + 0.04283781349658966, + 0.0024942979216575623, + 0.008786757476627827, + -0.042060721665620804, + -0.006851005833595991, + -0.10754267126321793, + -0.023578491061925888, + -0.033737823367118835, + -0.016517212614417076, + 0.05370306223630905, + -0.04630797728896141, + 0.006152747664600611, + 0.01150673720985651, + 0.015148251317441463, + 0.026115193963050842, + 0.012845305725932121, + -0.026219110935926437, + 0.06880171597003937, + 0.0003594830632209778, + 0.019308963790535927, + 0.012076027691364288, + -0.023677989840507507, + 0.062075965106487274, + -0.023041149601340294, + 0.13614022731781006, + 0.04141858592629433, + -0.07011370360851288, + 0.05209622532129288, + 0.05323335528373718, + -0.0025244546122848988, + -0.06562113761901855, + 0.037803251296281815, + -0.0577244758605957, + -0.0315839983522892, + -0.020188424736261368, + 0.04235951974987984, + 0.013827786780893803, + 0.00888464692980051, + 0.012971892021596432, + -0.11766556650400162, + -0.05227109417319298, + 0.0579039603471756, + -0.09254465997219086, + 0.004121439531445503, + 0.008566616103053093, + 0.026525532826781273, + -0.1146470457315445, + 1.627474224600861e-34, + 0.008804792538285255, + 0.011120816692709923, + 0.05456558242440224, + -0.06688439100980759, + 0.001304887467995286, + -0.024851856753230095, + 0.09722302854061127, + 0.07322987914085388, + -0.0854220986366272, + 0.04772312939167023, + 0.08360220491886139, + 0.004554595332592726, + -0.05749017745256424, + -0.06028330698609352, + -0.0400913804769516, + 2.0521369151538238e-05, + 0.06297695636749268, + 0.020566917955875397, + -0.07568000257015228, + 0.013302619569003582, + -0.048398543149232864, + 0.010285567492246628, + -0.02439889870584011, + 0.14843043684959412, + -0.011753028258681297, + 0.004341300576925278, + 0.006692022550851107, + -0.0012917411513626575, + -0.07725656777620316, + -0.024752333760261536, + -0.025801651179790497, + -0.012749399058520794, + 0.04531250149011612, + 0.08235128968954086, + 0.04062243551015854, + 0.016182418912649155, + -0.010302459821105003, + -0.06855002790689468, + 0.02574841119349003, + -0.016669603064656258, + -0.05025463178753853, + 0.004502365831285715, + 0.06866268068552017, + 0.009535078890621662, + -0.0017492263577878475, + -0.036427274346351624, + -0.01455960888415575, + -0.08738909661769867, + -0.0942799374461174, + 0.05818076804280281, + 0.060884058475494385, + 0.0018249988788738847, + 0.008562372997403145, + 0.004823037423193455, + -0.05761062353849411, + 0.0008150553330779076, + 0.008743725717067719, + 0.01054572593420744, + 0.014089220203459263, + 0.017401959747076035, + 0.07771427184343338, + -0.03642676770687103, + -0.04922327399253845, + 0.02585163153707981, + -0.04271603375673294, + -0.0033913778606802225, + 0.07281127572059631, + -0.001949890167452395, + -0.026739507913589478, + 0.08942807465791702, + -0.008555648848414421, + -0.03126240521669388, + -0.038591086864471436, + 0.03918565809726715, + -0.01386551558971405, + -0.012228669598698616, + 0.03195988014340401, + 0.037287384271621704, + -0.07955703139305115, + 0.02262679859995842, + 0.03993793949484825, + 0.009708292782306671, + -0.09148427098989487, + 0.07635867595672607, + 0.05366545543074608, + -0.006380891427397728, + -0.01828499138355255, + 0.029287263751029968, + -0.002229379490017891, + 0.008814126253128052, + -0.0805927962064743, + 0.07693623751401901, + 0.01183414924889803, + 0.011539419181644917, + -0.04168911278247833, + -2.0359914643108823e-08, + 0.05467895790934563, + -0.016594968736171722, + 0.07409148663282394, + -0.024680141359567642, + 0.04773605987429619, + -0.04072248563170433, + 0.004403793253004551, + -0.10093876719474792, + 0.0332624614238739, + -0.06498918682336807, + -0.041285112500190735, + -0.03735137730836868, + -0.08279604464769363, + 0.031489331275224686, + 0.06025411933660507, + 0.01259585004299879, + -0.07943404465913773, + 0.052838414907455444, + 7.289993664016947e-05, + 0.0037066861987113953, + -0.046155933290719986, + 0.06516845524311066, + 0.027342068031430244, + 0.005542143248021603, + 0.045439694076776505, + 0.016510969027876854, + -0.029398027807474136, + -0.027061598375439644, + 0.08629541844129562, + 0.05006447061896324, + 0.011741734109818935, + 0.06618399173021317, + 0.013392174616456032, + -0.06707992404699326, + -0.07232388108968735, + 0.0067940521985292435, + 0.050577472895383835, + -0.06853324174880981, + 0.007632342632859945, + 0.039895396679639816, + 0.015324546955525875, + -0.0239124596118927, + 0.013180042617022991, + -0.0010995917255058885, + -0.017770307138562202, + -0.0017374558374285698, + 0.10018066316843033, + 0.027620874345302582, + -0.04146842658519745, + -0.05284816399216652, + -0.05306655541062355, + 0.014634720049798489, + -0.03181825205683708, + -0.008763857185840607, + -0.019161367788910866, + -0.14449700713157654, + 0.005068018566817045, + 0.021267004311084747, + 0.0367901548743248, + 0.009533858858048916, + 0.1540733128786087, + 0.0062622856348752975, + -0.000296523590805009, + -0.01308333408087492 + ], + "angle-bold||*new*,geometry,trigonometry,degrees,radians,measurement,protractor,compass,arc": [ + -0.029328564181923866, + -0.015376867726445198, + -0.08630631119012833, + 0.022547781467437744, + -0.015508327633142471, + -0.06474366039037704, + 0.02053072117269039, + 0.01025549415498972, + -0.03143397346138954, + 0.013677013106644154, + 0.05254165455698967, + -0.028223207220435143, + 0.023779550567269325, + -0.011089031584560871, + 0.04549858346581459, + -0.02001153863966465, + -0.016779933124780655, + 0.028712976723909378, + -0.017852794378995895, + 0.029155373573303223, + -0.014528119936585426, + 0.02284378558397293, + 0.021380668506026268, + 0.071894571185112, + 0.015196331776678562, + 0.03299705311655998, + 0.11481282114982605, + -0.03875148296356201, + 0.002514216350391507, + -0.057411447167396545, + -0.05691135302186012, + 0.030721398070454597, + 0.08717631548643112, + -0.01515311561524868, + -0.009293393231928349, + -0.00638317596167326, + -0.029976384714245796, + -0.0024361140094697475, + -0.04643477499485016, + 0.048992857336997986, + -0.002426944440230727, + -0.036059532314538956, + 0.035156913101673126, + 0.06292947381734848, + -0.031337182968854904, + 0.017584586516022682, + -0.03201641887426376, + -0.0055002779699862, + 0.03310970962047577, + -0.006645225919783115, + -0.07960943877696991, + -0.06209293007850647, + -0.19284820556640625, + -0.032507315278053284, + 0.015584411099553108, + 0.07133898138999939, + -0.029514890164136887, + -0.0422961562871933, + 0.06720779091119766, + -0.03766605257987976, + 0.07397525012493134, + 0.007902367040514946, + 0.002737713046371937, + 0.061316847801208496, + -0.019975973293185234, + 0.021808482706546783, + -0.013230976648628712, + -0.02339206077158451, + -0.01089472509920597, + -0.0002788861165754497, + -0.02753389999270439, + 0.037498101592063904, + -0.06508494913578033, + 0.00019978558702860028, + -0.013331565074622631, + -0.055141083896160126, + -0.008287616074085236, + 0.021967660635709763, + -0.0261329747736454, + -0.08003557473421097, + -0.11331713944673538, + -0.016734229400753975, + -0.042578719556331635, + 0.0388227142393589, + 0.03047698177397251, + 0.12310658395290375, + -0.06956350058317184, + -0.021040230989456177, + -0.017416510730981827, + -0.11992018669843674, + 0.0004329645016696304, + -0.07003216445446014, + -0.08295632153749466, + 0.03179408982396126, + -0.02253267914056778, + 0.0788307636976242, + -0.00986060593277216, + -0.06787779182195663, + -0.03292335197329521, + 0.04937925934791565, + 0.05347610265016556, + 0.007760234177112579, + -0.036562588065862656, + 0.07016264647245407, + -0.08147885650396347, + -0.0022197512444108725, + 0.042376626282930374, + -0.013290341012179852, + 0.03938114270567894, + 0.04818285256624222, + 0.0005160319851711392, + -0.05545676127076149, + -0.022104907780885696, + -0.09654171019792557, + 0.02511841058731079, + 0.04234616830945015, + -0.08457361906766891, + -0.005923985969275236, + 0.1212887391448021, + 0.08542042225599289, + 0.03786131739616394, + 0.02594107761979103, + 0.031680285930633545, + 0.018537065014243126, + -0.024670111015439034, + 0.028454428538680077, + 0.03783923014998436, + 4.364253442365358e-36, + 0.015594659373164177, + 0.1028173491358757, + -0.004081196151673794, + 0.11431711167097092, + -0.03790992870926857, + -0.0272580124437809, + -0.024452149868011475, + 0.0263698548078537, + 0.045307375490665436, + 0.04314986988902092, + 0.037553418427705765, + 0.1277613490819931, + 0.008809623308479786, + 0.045023247599601746, + 0.10596953332424164, + -0.00656752148643136, + 0.06043911352753639, + -0.00790313445031643, + -0.049015119671821594, + -0.0020375344902276993, + -0.03619534522294998, + 0.07167819887399673, + -0.018746385350823402, + -0.04497567191720009, + -0.06880611181259155, + 0.04408552870154381, + 0.044840529561042786, + 0.04471949487924576, + -0.1511559933423996, + 0.012648535892367363, + 0.04280203580856323, + -0.027350030839443207, + 0.007573585491627455, + 0.03325150907039642, + -0.013314888812601566, + 0.0017459295922890306, + -0.08403030037879944, + -0.019484542310237885, + 0.0222152229398489, + -0.01571616902947426, + -0.10633209347724915, + 0.026042098179459572, + -0.02060301974415779, + 0.0033167346846312284, + 0.055801525712013245, + 0.07025730609893799, + -0.047463349997997284, + -0.032793328166007996, + 0.05686236917972565, + 0.07000821828842163, + -0.06080475449562073, + 0.0012398032704368234, + 0.022802889347076416, + -0.04683355614542961, + 0.014450307935476303, + 0.0016579811926931143, + -0.051170721650123596, + 0.06269821524620056, + -0.06621067225933075, + -0.00881434790790081, + -0.007473871111869812, + 0.04714357107877731, + 0.024150026962161064, + -0.038235124200582504, + -0.10478847473859787, + 0.04372445493936539, + -0.14707954227924347, + 0.0262307021766901, + 0.09623011201620102, + 0.006691147107630968, + -0.047153353691101074, + 0.08618435263633728, + 0.0018099257722496986, + 0.07013411074876785, + 0.008825266733765602, + 0.054376594722270966, + 0.02051304467022419, + -0.013594424352049828, + 0.02614455856382847, + -0.007028719875961542, + -0.11585180461406708, + 0.03614160418510437, + -0.03866567090153694, + -0.017490990459918976, + -0.05723759904503822, + -0.020380891859531403, + 0.034327223896980286, + -0.07450491189956665, + 0.009655461646616459, + 0.03931682929396629, + -0.14022907614707947, + 0.05523880943655968, + -0.046996451914310455, + -0.019104067236185074, + -0.0710698738694191, + -3.254122848091262e-33, + -0.092808797955513, + 0.015810344368219376, + -0.08148190379142761, + -0.031550779938697815, + -0.07912460714578629, + 0.06004653498530388, + 0.024845896288752556, + -0.004823308903723955, + -0.011888612061738968, + -0.021949274465441704, + 0.012432405725121498, + -0.018358148634433746, + -0.004733317065984011, + -0.0783078670501709, + 0.01823406107723713, + -0.0030318638309836388, + -0.03052792325615883, + -0.013081320561468601, + -0.0638153925538063, + 0.07673363387584686, + -0.0035299481824040413, + 0.06336665153503418, + -0.09190396964550018, + 0.0047651673667132854, + 0.055580757558345795, + 0.01248884852975607, + 0.035722482949495316, + -0.07720941305160522, + -0.00462361192330718, + -0.03665431961417198, + -0.016007840633392334, + -0.060624174773693085, + 0.07611138373613358, + 0.0629420205950737, + -0.10860586911439896, + -0.026004580780863762, + 0.07938554883003235, + -0.05280156806111336, + -0.03965158388018608, + -0.04545573890209198, + 0.05556925758719444, + 0.0026601466815918684, + 0.11658265441656113, + -0.0010815620189532638, + -0.06614957004785538, + -0.03838662430644035, + 0.023938171565532684, + -0.019857201725244522, + -0.011748249642550945, + 0.0829547792673111, + -0.012631517834961414, + -0.08688219636678696, + 0.04335014149546623, + -0.0027457207906991243, + -0.003910928498953581, + -0.024816999211907387, + 0.004725510720163584, + 0.03420687094330788, + 0.03533751890063286, + 0.02728060632944107, + 0.0034641020465642214, + 0.016912754625082016, + 0.01235769409686327, + 0.08395074307918549, + -0.00555805116891861, + -0.06851222366094589, + 0.040203407406806946, + -0.049438364803791046, + -0.031844668090343475, + 0.04016926884651184, + -0.03715624660253525, + 0.024700840935111046, + -0.048221200704574585, + -0.06620850414037704, + -0.042973849922418594, + -0.03910667076706886, + 0.048951730132102966, + -0.009127818048000336, + -0.0640244334936142, + 0.011831442825496197, + 0.03694215416908264, + -0.0037436748389154673, + -0.07155972719192505, + 0.05047572776675224, + 0.010465691797435284, + 0.043446946889162064, + -0.02861502207815647, + -0.02081146091222763, + 0.051921065896749496, + 0.010422893799841404, + -0.07621048390865326, + 0.08922971785068512, + -0.08469907194375992, + -0.004991022404283285, + -0.005659033544361591, + -2.5852450846741704e-08, + -0.03455665335059166, + 0.034299712628126144, + -0.05224724858999252, + 0.020184768363833427, + -0.013641862198710442, + -0.050474394112825394, + -0.020108889788389206, + -0.06490388512611389, + -0.10565350204706192, + -0.016965722665190697, + 0.02542204223573208, + 0.09347356110811234, + -0.026365265250205994, + -0.009419677779078484, + 0.05110747739672661, + -0.003078286536037922, + 0.04433036223053932, + 0.022890180349349976, + 0.024712832644581795, + -0.04648755490779877, + 0.06475315988063812, + 0.03607509657740593, + 0.10249824076890945, + -0.01800043135881424, + 0.010582761839032173, + 0.03520451858639717, + -0.005942996125668287, + 0.005790079943835735, + 0.05205681174993515, + 0.039174869656562805, + 0.054293613880872726, + -0.00504730548709631, + 0.05388060212135315, + -0.02493191510438919, + -0.05127640441060066, + 0.005964735522866249, + -0.04684212803840637, + 0.043466903269290924, + 0.023059621453285217, + 0.0951220840215683, + -0.07856490463018417, + 0.057592954486608505, + -0.037502966821193695, + 0.0019526038086041808, + 0.04497883841395378, + 0.021044528111815453, + 0.04151901975274086, + -0.015244287438690662, + -0.05844876915216446, + -0.11204149574041367, + -0.09002961963415146, + 0.034985776990652084, + 0.02013258822262287, + 0.03456518054008484, + -0.003945853095501661, + 0.03395147621631622, + 0.07175496220588684, + 0.024100322276353836, + -0.05570809543132782, + 0.01715921238064766, + 0.1097724661231041, + 0.030735699459910393, + -0.018649449571967125, + -0.009780732914805412 + ], + "angular-logo-bold||framework,javascript,google,web": [ + -0.02005644142627716, + 0.04186669737100601, + -0.02944382093846798, + 0.013630489818751812, + 0.11436798423528671, + -0.034927282482385635, + 0.00981162954121828, + -0.052768103778362274, + 0.0010256146779283881, + 0.05634378269314766, + -0.014691122807562351, + 0.09682992100715637, + -0.023164857178926468, + -0.026140008121728897, + 0.0988483875989914, + -0.03221423923969269, + -0.016040807589888573, + 0.027525445446372032, + 0.04542066156864166, + -0.027826765552163124, + -0.007083819713443518, + 0.018338946625590324, + 0.05635588988661766, + -0.027874689549207687, + 0.036744624376297, + 0.01135239191353321, + 0.08873597532510757, + -0.05893012136220932, + 0.0335344523191452, + -0.07420453429222107, + 0.010739846155047417, + -0.03009096533060074, + 0.055937446653842926, + -0.010757919400930405, + -0.09518977254629135, + 0.05487104505300522, + 0.018841203302145004, + -0.04724440723657608, + 0.021291138604283333, + 0.00855873804539442, + 0.03584655374288559, + -0.008109848946332932, + 0.01151847280561924, + -0.050452690571546555, + -0.05234073847532272, + -0.03339682146906853, + -0.07041718810796738, + 0.030743101611733437, + 0.02073599211871624, + -0.030634019523859024, + -0.006504430435597897, + -0.16765594482421875, + -0.09523573517799377, + -0.060317207127809525, + -0.03428899496793747, + -0.06886449456214905, + -0.05380421131849289, + -0.02791011333465576, + 0.06220688298344612, + 0.01566626876592636, + 0.01422759797424078, + 0.007829753682017326, + 0.0417909175157547, + 0.06056193262338638, + 0.12282068282365799, + -0.0026810397394001484, + 0.011103778146207333, + 0.0009688723366707563, + -0.10471119731664658, + 0.026795994490385056, + 0.07240357249975204, + -0.06705601513385773, + -0.0016705148154869676, + -0.04948670044541359, + -0.07224234938621521, + 0.02679450251162052, + 0.024913717061281204, + 0.09157969057559967, + -0.004752762615680695, + -0.015480468049645424, + -0.03621206805109978, + -0.006656220648437738, + 0.016201019287109375, + 0.06688927114009857, + 0.0763486921787262, + 0.05896225944161415, + -0.037207357585430145, + -0.03637704998254776, + 0.02598518691956997, + -0.052093733102083206, + -0.05652983859181404, + -0.004182070028036833, + 0.05216106399893761, + 0.06039130315184593, + -0.07274099439382553, + 0.025180678814649582, + -0.03868696093559265, + -0.002085690852254629, + -0.07229132950305939, + 0.041662536561489105, + -0.01471107266843319, + 0.021057596430182457, + 0.11277759820222855, + -0.031352750957012177, + -0.028994612395763397, + 0.08149512112140656, + -0.012644358910620213, + 0.024255763739347458, + 0.044159289449453354, + 0.03561681881546974, + 0.022868948057293892, + 0.04967998340725899, + -0.07502289861440659, + -0.04380595684051514, + -0.04549429938197136, + -0.09976579248905182, + -0.022096021100878716, + -0.06295902281999588, + 0.08740458637475967, + 0.07500414550304413, + -0.025125784799456596, + -0.0073531013913452625, + 0.02384294383227825, + -0.06937610357999802, + 0.05369997024536133, + 0.0076679387129843235, + 0.02447679452598095, + -3.0396324142776343e-33, + 0.020881228148937225, + 0.08221814781427383, + -0.0581507571041584, + 0.016035106033086777, + 0.014551308937370777, + -0.012314843945205212, + -0.03445788472890854, + -0.09616012126207352, + -0.10053998231887817, + 0.06857126951217651, + 0.10428377985954285, + 0.12851636111736298, + 0.017576511949300766, + 0.04926750808954239, + 0.0516958087682724, + -0.05738410726189613, + 0.03674577921628952, + -0.05123399943113327, + -0.027013590559363365, + -0.02464914694428444, + -0.02062802016735077, + 0.004893162753432989, + -0.07797824591398239, + -0.009383004158735275, + -0.051270462572574615, + -0.014024322852492332, + 0.040438201278448105, + 0.009195135906338692, + -0.13205945491790771, + 0.010557383298873901, + 0.10353595018386841, + 0.01896081119775772, + -0.02884402684867382, + 0.055436871945858, + 0.027029579505324364, + -0.04151581600308418, + -0.04581321030855179, + -0.03464913368225098, + 0.023899251595139503, + 0.022565774619579315, + -0.03447108343243599, + -0.055836472660303116, + -0.04158025607466698, + 0.04268312454223633, + -0.017321471124887466, + 0.10796627402305603, + 0.01047181710600853, + -0.1287844330072403, + 0.057566337287425995, + 0.032039493322372437, + -0.04082203283905983, + 0.0056395079009234905, + -0.02558324672281742, + -0.0035071447491645813, + -0.0040671019814908504, + -0.0012005126336589456, + -0.0270598903298378, + 0.05217455327510834, + 0.03390423581004143, + -0.016288144513964653, + 0.01777944155037403, + -0.014737885445356369, + 0.025270214304327965, + -0.05187069624662399, + -0.03169289976358414, + 0.024287182837724686, + -0.056416429579257965, + 0.040209200233221054, + 0.035178035497665405, + -0.043175406754016876, + 0.08874890953302383, + -0.018197009339928627, + 0.10834579169750214, + 0.06168927252292633, + -0.03661268949508667, + 0.01224631816148758, + 0.041538842022418976, + 0.08265326172113419, + 0.06617113947868347, + 0.008174746297299862, + -0.016366731375455856, + -0.02549142949283123, + -0.0386299230158329, + 0.07000354677438736, + 0.02504531294107437, + 0.010564492084085941, + -0.005037798546254635, + -0.02796676754951477, + -0.015053538605570793, + -0.009489637799561024, + -0.019587621092796326, + 0.020621268078684807, + 0.03784937039017677, + -0.03771969676017761, + -0.11081326752901077, + 4.239546650047797e-34, + 0.06615004688501358, + 0.031794458627700806, + 0.0394718311727047, + 0.014451909810304642, + -0.06935051828622818, + 0.029790040105581284, + 0.07072072476148605, + 0.0440564788877964, + -0.06916054338216782, + 0.04473893716931343, + 0.1176896020770073, + 0.04068024829030037, + -0.06335265934467316, + 0.013377084396779537, + -0.04929051548242569, + 0.02022729255259037, + 0.013136208057403564, + -0.01997939869761467, + -0.014178220182657242, + -0.04704001173377037, + 0.013801898807287216, + 0.004060104954987764, + -0.04123813286423683, + 0.047347113490104675, + -0.04815599322319031, + 0.06702360510826111, + -0.001920014969073236, + -0.04141232743859291, + -0.09025587886571884, + 0.02129649557173252, + -0.038101594895124435, + 0.06697826087474823, + 0.03494338318705559, + 0.018748704344034195, + -0.014583490788936615, + -0.04051651060581207, + 0.01599198207259178, + -0.018103796988725662, + -0.01072468888014555, + -0.04914769530296326, + -0.0430903360247612, + -0.004843884613364935, + 0.06520305573940277, + -0.0015926246996968985, + -0.03711659088730812, + -0.029401982203125954, + -0.048331357538700104, + -0.06878523528575897, + -0.05367927625775337, + 0.044070739299058914, + 0.022175339981913567, + 0.007866616360843182, + 0.05688821151852608, + -0.021127041429281235, + -0.10024271160364151, + -0.07730617374181747, + 0.013818674720823765, + 0.006738279480487108, + -0.018926773220300674, + 0.10676304250955582, + 0.005033883731812239, + 0.017036499455571175, + -0.004502652212977409, + -0.005540122278034687, + -0.00822457391768694, + 0.022280732169747353, + -0.016995778307318687, + -0.03318828344345093, + 0.04162795469164848, + 0.024702036753296852, + -0.03976638987660408, + -0.03802971541881561, + 0.10653701424598694, + 0.050690580159425735, + -0.030669687315821648, + 0.00876872893422842, + 0.15894751250743866, + -0.012520442716777325, + -0.03126722574234009, + -0.018635937944054604, + 0.037607815116643906, + -0.007908090949058533, + -0.12344367057085037, + 0.04099500551819801, + -0.011273031122982502, + -0.00453495467081666, + -0.0812363252043724, + -0.05524415150284767, + 0.016352655366063118, + -0.0186030101031065, + -0.11072966456413269, + 0.04632578790187836, + 0.0162045955657959, + -0.02619411237537861, + 0.0061870175413787365, + -1.7896351067747673e-08, + -0.04788576811552048, + 0.029717683792114258, + 0.024378880858421326, + -0.038414496928453445, + 0.044804297387599945, + -0.03257898613810539, + -0.012259047478437424, + -0.10750555992126465, + -0.01861957460641861, + -0.03278667852282524, + -0.07390879094600677, + 0.07217906415462494, + -0.06622355431318283, + 0.02156432531774044, + -0.0005671925027854741, + 0.040185704827308655, + -0.06773129105567932, + 0.05967746302485466, + 0.012404163368046284, + -0.01172430906444788, + -0.02274894528090954, + 0.059764716774225235, + 0.06576207280158997, + 0.004246025811880827, + 0.06581345200538635, + 0.013465279713273048, + -0.006678575649857521, + -0.001687247073277831, + 0.03403187543153763, + 0.07511937618255615, + -0.06870419532060623, + 0.06572288274765015, + 0.03496195375919342, + -0.0074516525492072105, + -0.06463973969221115, + -0.10052398592233658, + -0.012339767999947071, + -0.06731238216161728, + -0.057149093598127365, + 0.01859472133219242, + 0.017441406846046448, + 0.06108454614877701, + 0.03963173180818558, + -0.031313035637140274, + -0.006121156737208366, + 0.040910691022872925, + 0.016933638602495193, + 0.046878375113010406, + -0.009567403234541416, + -0.04391393065452576, + -0.0035781762562692165, + -0.01365666463971138, + -0.08362875878810883, + 0.03667735680937767, + -0.06931352615356445, + -0.12171299010515213, + -0.021996017545461655, + 0.07585658133029938, + 0.005078687332570553, + -0.026131100952625275, + 0.11762909591197968, + -0.07146726548671722, + 0.014248323626816273, + -0.07025172561407089 + ], + "aperture-bold||photography,cameras,pictures,lens": [ + 0.043349094688892365, + -0.01610551029443741, + -0.0387486033141613, + -0.003138348925858736, + 0.027972713112831116, + -0.06349768489599228, + 0.11226554960012436, + 0.033614978194236755, + 0.017900625243782997, + 0.03241245076060295, + -0.011183593422174454, + -0.013712991960346699, + 0.038698285818099976, + 0.03184797987341881, + -0.00620547030121088, + -0.03838630020618439, + 0.012291088700294495, + 0.019329803064465523, + -0.026625828817486763, + 0.0392824187874794, + 0.0061331442557275295, + 0.03285371512174606, + 0.05021238699555397, + -0.0029159104451537132, + 0.021801749244332314, + 0.05600544065237045, + 0.0622253455221653, + 0.0011424620170146227, + -0.006307325325906277, + -0.04653165861964226, + -0.06695261597633362, + 0.0371527373790741, + 0.05184750631451607, + 0.005587100982666016, + 0.01483186986297369, + -0.03565380722284317, + -0.042569007724523544, + -0.030079809948801994, + -0.008250595070421696, + 0.049593061208724976, + -0.007946394383907318, + -0.009255880489945412, + 0.05610516294836998, + -0.0015663575613871217, + 0.009557428769767284, + -0.034729983657598495, + -0.032489899545907974, + 0.006689430680125952, + 0.03634972125291824, + -0.008305040188133717, + -0.06586383283138275, + -0.04176868125796318, + -0.11340124160051346, + 0.06341071426868439, + 0.05209331214427948, + 0.029361329972743988, + -0.11418003588914871, + -0.04057452455163002, + -0.000832773803267628, + 0.005015233065932989, + 0.031904011964797974, + -0.03353520855307579, + 0.025117231532931328, + 0.04778598994016647, + 0.06811299920082092, + 0.03786100819706917, + 0.021132228896021843, + -0.037951622158288956, + -0.0023946415167301893, + -0.020155923441052437, + -0.013788540847599506, + 0.06942327320575714, + -0.07839477062225342, + -0.07154189050197601, + -0.027768265455961227, + 0.015191194601356983, + 0.003010829444974661, + 0.04862094298005104, + 0.05067407339811325, + -0.05503615736961365, + 0.049150947481393814, + -0.05883793532848358, + 0.012393620796501637, + 0.02971324510872364, + 0.03221952170133591, + 0.015126500278711319, + -0.07631729543209076, + -0.04545576497912407, + -0.05765679478645325, + -0.047527190297842026, + -0.10820038616657257, + -0.0701037347316742, + -0.07428597658872604, + 0.02351807989180088, + -0.06642872095108032, + -0.045140620321035385, + 0.02480257861316204, + -0.004924573935568333, + -0.042996250092983246, + 0.0781422108411789, + 0.07745558768510818, + -0.008418099954724312, + -0.010782490484416485, + 0.044537466019392014, + -0.03390692174434662, + 0.002009345218539238, + 0.041486844420433044, + -0.002870553405955434, + -0.021839763969182968, + 0.030349070206284523, + -0.03597070649266243, + -0.04211059585213661, + -0.042707983404397964, + -0.053194452077150345, + -0.002174537628889084, + -0.04208588972687721, + -0.07328172028064728, + 0.04537295922636986, + 0.06729409843683243, + 0.01318663265556097, + -0.011011078953742981, + -0.020739436149597168, + -0.05878787860274315, + 0.04382231831550598, + 0.0018172546988353133, + -0.037402957677841187, + 0.019234392791986465, + -1.5977715945719934e-33, + 0.0418914258480072, + 0.038347940891981125, + 0.05606758967041969, + 0.08948011696338654, + -0.02025584876537323, + -0.013593361712992191, + -0.010830691084265709, + 0.04876171052455902, + -0.05283991992473602, + 0.014736920595169067, + 0.014738359488546848, + 0.07553235441446304, + -0.0484282560646534, + 0.06532831490039825, + 0.12042926251888275, + 0.01390469167381525, + 0.04619899392127991, + 0.015414713881909847, + -0.005467263516038656, + 0.044547758996486664, + 0.016963064670562744, + 0.0221097469329834, + -0.04592139646410942, + 0.015429409220814705, + 0.017653344199061394, + -0.012805524282157421, + -0.01846918836236, + 0.012803974561393261, + -0.06655649095773697, + 0.032614536583423615, + -0.008804753422737122, + 0.08536919206380844, + 0.049474842846393585, + -0.033819470554590225, + 0.002127506537362933, + -0.038117483258247375, + -0.04354199394583702, + 0.02556166984140873, + -0.03452306240797043, + 0.010906259529292583, + -0.043435562402009964, + 0.05331088975071907, + -0.0619359016418457, + -0.04838715121150017, + 0.05298715457320213, + 0.15041068196296692, + -0.04384346306324005, + 0.026136597618460655, + 0.020993737503886223, + 0.12315137684345245, + 0.0056725069880485535, + -0.0467851385474205, + -0.0452655553817749, + 0.01676304079592228, + 0.06195934861898422, + 0.026054762303829193, + -0.07344798743724823, + 0.029560081660747528, + -0.06109056621789932, + 0.0022941362112760544, + -0.011457791551947594, + -0.06695666164159775, + -0.027364160865545273, + 0.011626669205725193, + -0.08029025048017502, + 0.08386863768100739, + -0.04316281899809837, + 0.04429234191775322, + 0.018646545708179474, + 0.055147685110569, + -0.022412491962313652, + 0.060363560914993286, + -0.018846381455659866, + 0.02264438197016716, + 0.05226737633347511, + 0.03838096186518669, + -0.024011343717575073, + -0.019969375804066658, + -0.0320514552295208, + -0.03116999939084053, + -0.15065254271030426, + 0.011849308386445045, + -0.03364919126033783, + 0.04737221449613571, + -0.09989391267299652, + 0.00805659405887127, + -0.0003582784265745431, + -0.04261159524321556, + 0.006724535953253508, + -0.01853863149881363, + -0.047571927309036255, + 0.048965759575366974, + -0.027723386883735657, + -0.04186578467488289, + -0.14693471789360046, + -4.349107774496723e-34, + 0.027899136766791344, + 0.046520449221134186, + -0.09252159297466278, + -0.047308020293712616, + -0.04057825729250908, + 0.06551725417375565, + 0.08114276081323624, + 0.028337698429822922, + 0.0540519654750824, + 0.06424421817064285, + 0.04851672425866127, + -0.02291726879775524, + -0.09939875453710556, + -0.07527918368577957, + -0.08610884100198746, + -0.025599664077162743, + 0.0062412237748503685, + -0.04049293324351311, + -0.058469224721193314, + 0.025070298463106155, + -0.013016719371080399, + 0.008764606900513172, + 0.09160377830266953, + -0.010139073245227337, + -0.02394919842481613, + 0.08206120133399963, + 0.01931333914399147, + -0.032173074781894684, + -0.08958926051855087, + -0.03280428797006607, + -0.013508835807442665, + -0.05890120193362236, + 0.07088539004325867, + 0.034847650676965714, + -0.045173656195402145, + 0.06323204189538956, + 0.061873532831668854, + -0.13609060645103455, + -0.01032889075577259, + -0.0128064239397645, + 0.004985470324754715, + 0.031270839273929596, + 0.023369643837213516, + 0.03142070025205612, + -0.06676791608333588, + -0.056170474737882614, + -0.0003227429115213454, + 0.005120501387864351, + 0.048446133732795715, + -0.002841618610545993, + -0.07663265615701675, + -0.06790123134851456, + 0.015752652660012245, + 0.006633408833295107, + -0.09898417443037033, + -0.06445755064487457, + -0.024255651980638504, + -0.056271087378263474, + 0.04382433742284775, + 0.1300923228263855, + 0.05111093819141388, + 0.012224358506500721, + -0.0880957543849945, + 0.025427207350730896, + -0.0015221487265080214, + -0.10465629398822784, + 0.010186977684497833, + 0.00201151124201715, + 0.05260403826832771, + 0.05834512785077095, + 0.02582515776157379, + -0.011111550964415073, + 0.1158415749669075, + 0.08735386282205582, + 0.04728946462273598, + -0.04844004288315773, + 0.05054177716374397, + 0.004924848210066557, + 0.05037437006831169, + 0.052727118134498596, + -0.01957811415195465, + -0.006865105126053095, + -0.04613308236002922, + 0.12095048278570175, + -0.005316379014402628, + 0.02039027400314808, + 0.0003358040121383965, + -0.0870436504483223, + 0.011636544018983841, + 0.006777279544621706, + -0.021522128954529762, + 0.09084395319223404, + 0.00268471403978765, + -0.028418228030204773, + 0.04458856210112572, + -1.615355849082789e-08, + 0.026589546352624893, + 0.004550801124423742, + -0.05906069651246071, + -0.005368425045162439, + 0.024608131498098373, + -0.12309914827346802, + -0.0720926821231842, + -0.013367395848035812, + 0.010325254872441292, + -0.03337850421667099, + 0.034828245639801025, + 0.02519078552722931, + -0.08817575871944427, + -0.01645570434629917, + 0.05651084706187248, + -0.00957092922180891, + -0.01912725158035755, + -0.01862933114171028, + -0.006950439419597387, + -0.054432403296232224, + -0.03958703204989433, + 0.0023031325545161963, + 0.057425957173109055, + -0.08382311463356018, + 0.05959228426218033, + -0.032506607472896576, + -0.05887778475880623, + -0.004933747462928295, + 0.10065602511167526, + 0.10630537569522858, + 0.04124994948506355, + 0.01935986801981926, + 0.03996480628848076, + 0.05827668309211731, + -0.12841401994228363, + -0.04704749584197998, + -0.019428452476859093, + -7.467922114301473e-05, + -0.08142965286970139, + 0.07308655977249146, + -0.06979458034038544, + 0.006849747616797686, + 0.04635036736726761, + -0.02360963076353073, + 0.032967664301395416, + 0.07762607932090759, + 0.09228586405515671, + 0.0007224849541671574, + -0.06321774423122406, + -0.0780225619673729, + -0.10779716819524765, + 0.022127360105514526, + 0.007526598405092955, + 0.08913939446210861, + -0.05921556055545807, + -0.044562675058841705, + 0.05211358889937401, + 0.04551718384027481, + -0.021936841309070587, + 0.022294368594884872, + 0.09089020639657974, + 0.014347071759402752, + -0.08723381161689758, + 0.02229912392795086 + ], + "app-store-logo-bold||macintosh,imac,iphone,ipad,macos,ios": [ + 0.028971467167139053, + 0.03702311962842941, + -0.022527024149894714, + -0.060648370534181595, + 0.06728211045265198, + -0.037814922630786896, + 0.032186947762966156, + -0.029700640588998795, + 0.060707274824380875, + 0.04531985521316528, + 0.06311812996864319, + 0.01667080633342266, + 0.027128655463457108, + 0.0023099170066416264, + 0.07442202419042587, + -0.03799751400947571, + -0.04410559684038162, + 0.03625764325261116, + 0.020583942532539368, + -0.0034868838265538216, + 0.046518269926309586, + 0.014931885525584221, + 0.05161728709936142, + 0.02174949273467064, + 0.023783985525369644, + -0.007100388873368502, + 0.031025709584355354, + 0.0158221535384655, + -0.008788041770458221, + -0.04997776448726654, + -0.03789659962058067, + -0.03215866908431053, + 0.1070006713271141, + 0.05709311366081238, + 0.051041312515735626, + -0.03506702929735184, + 0.06227738782763481, + -0.047614749521017075, + -0.010821264237165451, + -0.044664643704891205, + 0.02827674150466919, + 0.006086699198931456, + 0.039839163422584534, + 0.10355563461780548, + -0.033266812562942505, + 0.021560700610280037, + -0.020895972847938538, + 0.0034808164928108454, + 0.03230886906385422, + 0.021190525963902473, + 0.07648825645446777, + -0.08854325860738754, + -0.08958481252193451, + -0.03661075979471207, + -0.010943956673145294, + 0.034639500081539154, + -0.007632135879248381, + 0.026530759409070015, + 0.11825314164161682, + 0.05049498379230499, + -0.007341578137129545, + 0.011794794350862503, + 0.042428091168403625, + 0.09425171464681625, + 0.06214435026049614, + 0.0023973260540515184, + -0.025466011837124825, + 0.037424467504024506, + -0.10212253034114838, + -0.08220101147890091, + 0.053219955414533615, + -0.050226423889398575, + 0.05298923701047897, + -0.042972493916749954, + -0.05399741604924202, + 0.05032401904463768, + 0.06603631377220154, + 0.012773251160979271, + -0.0874922126531601, + -0.08154208958148956, + -0.04913897439837456, + -0.005864753853529692, + -0.04119991883635521, + 0.06124166399240494, + 0.09310093522071838, + 0.02170843444764614, + -0.06963568925857544, + -0.06266864389181137, + -0.019105257466435432, + 0.06460896134376526, + -0.07524851709604263, + -0.0032490273006260395, + 0.058870039880275726, + -0.04424114152789116, + -0.06170051917433739, + -0.016764000058174133, + 0.004718509037047625, + 0.012222918681800365, + -0.0931321382522583, + 0.03632432967424393, + 0.012185635045170784, + 0.01747983880341053, + 0.10365931689739227, + -0.03511194512248039, + 0.023017989471554756, + -0.010984063148498535, + 0.009083569049835205, + -0.09495075792074203, + 0.03330039978027344, + 0.09344018995761871, + 0.0037170599680393934, + -0.0729435384273529, + -0.07155324518680573, + 0.005802587140351534, + -0.01761484332382679, + -0.035358354449272156, + -0.02733466774225235, + 0.0023372650612145662, + 0.10727865248918533, + 0.009871038608253002, + -0.05588262528181076, + -0.007166329771280289, + -0.023329908028244972, + -0.10313519090414047, + -0.03777717053890228, + 0.036697868257761, + -0.012552767060697079, + -2.1545452285229392e-33, + -0.06257551163434982, + 0.0734463632106781, + -0.030049635097384453, + 0.001276814378798008, + 0.011002566665410995, + -0.09322676062583923, + -0.0009840596467256546, + -0.04611913859844208, + -0.08609989285469055, + 0.026248520240187645, + 0.021730683743953705, + 0.07626352459192276, + -0.05339273437857628, + 0.06392457336187363, + 0.057341884821653366, + 0.00705675408244133, + -0.037997711449861526, + -0.015561035834252834, + -0.04846808314323425, + 0.01902269944548607, + -0.030963685363531113, + -0.018196269869804382, + -0.036003246903419495, + -0.07194657623767853, + -0.05792376026511192, + -0.04105517640709877, + 0.019666370004415512, + -0.018704596906900406, + 0.00027178824529983103, + -0.014616919681429863, + 0.036807138472795486, + 0.08294765651226044, + 0.052082765847444534, + -0.002331692725419998, + -0.059153977781534195, + -0.07931598275899887, + 0.019090775400400162, + -0.01785319112241268, + 0.02033708244562149, + 0.05967184156179428, + -0.0813550353050232, + -0.03697282820940018, + 0.011654344387352467, + 0.049434587359428406, + 0.03959494084119797, + 0.1255885660648346, + -0.015949582681059837, + -0.11071830987930298, + -0.00354099296964705, + 0.012999414466321468, + -0.05539149045944214, + -0.04321867227554321, + -0.03347251936793327, + -0.04955633729696274, + -0.027018828317523003, + -0.07283692061901093, + -0.049493882805109024, + -0.028025245293974876, + 0.008493894711136818, + -0.06412297487258911, + -0.01571451500058174, + -0.0010481626959517598, + 0.013418314047157764, + -0.004190117586404085, + -0.057969026267528534, + 0.09565740823745728, + 0.03315180540084839, + -0.03148937597870827, + -0.028104634955525398, + 0.012596752494573593, + 0.0011121139395982027, + 0.03792397677898407, + 0.11311089992523193, + -0.005176417529582977, + -0.052577219903469086, + 0.020547697320580482, + -0.024975938722491264, + 0.07541732490062714, + -0.052304863929748535, + -0.0020451578311622143, + -0.04197036847472191, + 0.0022612232714891434, + -0.023931847885251045, + 0.1257457286119461, + 0.0044188606552779675, + 0.07210291177034378, + 0.04338464140892029, + -0.02903672866523266, + -0.028735945001244545, + 0.06838342547416687, + -0.05314744636416435, + 0.0010119727812707424, + 0.018924115225672722, + -0.030706319957971573, + -0.15032543241977692, + -1.4118135310596924e-33, + 0.07893644273281097, + -0.009982251562178135, + 0.02304820530116558, + -0.039892081171274185, + -0.06266901642084122, + 0.005019335076212883, + 0.034328561276197433, + 0.07627051323652267, + -0.04919023439288139, + -0.05700698867440224, + 0.06833204627037048, + 0.019322197884321213, + -0.04179680347442627, + -0.0323830284178257, + -0.06406118720769882, + 0.05140627175569534, + 0.036142025142908096, + 0.07713868468999863, + -0.003520646598190069, + -0.023880556225776672, + -0.06295295804738998, + -0.05693797767162323, + -0.026793571189045906, + 0.08336184918880463, + -0.0006922511965967715, + -0.052190057933330536, + 0.0461767353117466, + -0.032693225890398026, + -0.04735581576824188, + -0.06117459386587143, + -0.047096122056245804, + -0.012087557464838028, + 0.016782214865088463, + -0.000872071017511189, + -0.015342898666858673, + 0.008367377333343029, + -0.048430513590574265, + -0.0603972002863884, + -0.013268532231450081, + 0.027922123670578003, + -0.008816804736852646, + 0.0335061214864254, + -0.020397109910845757, + 0.03282938152551651, + -0.045848485082387924, + 0.012394680641591549, + -0.049877118319272995, + -0.05551200360059738, + -0.03977877274155617, + 0.038678962737321854, + 0.03128053620457649, + -0.003832716727629304, + -0.020490897819399834, + -0.04470977187156677, + -0.06727210432291031, + 0.012949631549417973, + 0.05583101883530617, + 0.044594354927539825, + -0.04086543619632721, + 0.054054055362939835, + 0.009678210131824017, + -0.04807998612523079, + -0.018867021426558495, + -0.06909501552581787, + 0.005710245575755835, + -0.02832147479057312, + 0.01401694118976593, + 0.010478188283741474, + -0.013473091647028923, + 0.08980105817317963, + 0.01661231927573681, + -0.06746884435415268, + 0.031107274815440178, + 0.007509845308959484, + -0.07847508043050766, + -0.03624338284134865, + 0.1154390498995781, + -0.018444960936903954, + -0.05454988777637482, + 0.0020966646261513233, + 0.007654685527086258, + 0.1156434640288353, + -0.052787892520427704, + 0.09074181318283081, + 0.013003196567296982, + 0.0053351218812167645, + -0.033933404833078384, + 0.016719859093427658, + 0.048401348292827606, + 0.005614665802568197, + -0.06185146048665047, + 0.0967872142791748, + 0.06021207198500633, + -0.04501745477318764, + -0.09407120198011398, + -2.1214239254163658e-08, + -0.010685955174267292, + -0.06970882415771484, + 0.04594727233052254, + -0.011508578434586525, + -0.01451961975544691, + 0.05398965999484062, + 0.015711644664406776, + -0.04431801661849022, + 0.05001272261142731, + -0.055184099823236465, + -0.0768037885427475, + -0.016671765595674515, + -0.15234827995300293, + 0.024911927059292793, + -0.022297754883766174, + 0.052330296486616135, + -0.03995504230260849, + 0.1537824273109436, + 0.025300344452261925, + -0.028468968346714973, + -0.11183495074510574, + 0.10599939525127411, + 0.008301385678350925, + 0.029141033068299294, + 0.00030630381661467254, + 0.040085919201374054, + -0.015512282028794289, + -0.027160275727510452, + 0.04129788279533386, + 0.07189352065324783, + 0.004563501104712486, + 0.032378070056438446, + 0.023388609290122986, + -0.011263706721365452, + -0.019736092537641525, + -0.050035420805215836, + -0.03378093242645264, + 0.0212619099766016, + -0.01531771570444107, + 0.012189218774437904, + -0.027376066893339157, + -0.07787030935287476, + -0.021259929984807968, + -0.0361485555768013, + 0.011330022476613522, + -0.0048507582396268845, + 0.06256117671728134, + 0.05905731022357941, + -0.020894723013043404, + -0.02831512875854969, + 0.03740376606583595, + 0.03489496558904648, + -0.02643330954015255, + 0.021786611527204514, + -0.0010395942954346538, + -0.10519380122423172, + 0.016919802874326706, + -0.04858287423849106, + 0.0381426066160202, + 0.01926598511636257, + 0.18372920155525208, + -0.08476053923368454, + 0.02870367467403412, + 0.022137455642223358 + ], + "app-window-bold||windows,software,programs,applications": [ + -0.010540634393692017, + 0.02045615203678608, + -0.05847907066345215, + 0.0034447102807462215, + 0.054934728890657425, + -0.06502307951450348, + 0.07776099443435669, + 0.006309394259005785, + 0.009167108684778214, + -0.012582832016050816, + -0.06677408516407013, + 0.009768994525074959, + 0.03767327964305878, + -0.03877410292625427, + 0.036379728466272354, + 0.031155336648225784, + -0.0025257044471800327, + 0.02725444734096527, + -0.01145573053508997, + -0.015441039577126503, + -0.005038202274590731, + 0.04727862402796745, + 0.02805202081799507, + 0.008794118650257587, + 0.08249407261610031, + 0.001261728466488421, + -0.039802491664886475, + 0.00657625263556838, + 0.039962269365787506, + -0.022909458726644516, + -0.012985443696379662, + -0.014764626510441303, + 0.10883527249097824, + 0.03532257676124573, + 0.018075790256261826, + 0.0012835068628191948, + -0.022750727832317352, + -0.087910957634449, + -0.05697815865278244, + -0.020328586921095848, + 0.026764096692204475, + 0.003420271212235093, + -0.015559046529233456, + 0.03830929845571518, + -0.0878460556268692, + -0.07549179345369339, + -0.04278114438056946, + -0.031920723617076874, + 0.015361335128545761, + 0.01640923321247101, + -0.024142419919371605, + -0.06939871609210968, + -0.07617142796516418, + -0.010380172170698643, + -0.029091333970427513, + 0.02535850740969181, + 0.010505123995244503, + 0.023058822378516197, + 0.050213929265737534, + 0.058033205568790436, + 0.02594073675572872, + 0.0414242222905159, + -0.007735455874353647, + 0.07897704094648361, + 0.00758939515799284, + 0.11935805529356003, + -0.008040206506848335, + 0.03068632259964943, + 0.0012264903634786606, + -0.10056019574403763, + 0.007171712350100279, + -0.028001395985484123, + 0.030648233368992805, + -0.05276724696159363, + -0.08622530102729797, + -0.07064122706651688, + 0.021069761365652084, + 0.045763637870550156, + -0.0928066298365593, + -0.10824647545814514, + 0.03760131821036339, + -0.04946264624595642, + -0.06626643240451813, + 0.08900534361600876, + 0.12646175920963287, + 0.0879630520939827, + -0.049874771386384964, + -0.0949031412601471, + 0.007298508193343878, + 0.05954349413514137, + -0.07477157562971115, + -0.09617189317941666, + 0.0037007450591772795, + 0.059273913502693176, + -0.030426286160945892, + -0.010330377146601677, + 0.07539433240890503, + -0.034711018204689026, + -0.08333297073841095, + 0.06037526950240135, + 0.00748799042776227, + -0.025340113788843155, + 0.10486210137605667, + -0.0031739724799990654, + 0.0031859728042036295, + -0.02496684528887272, + 0.018518975004553795, + -0.05189866945147514, + -0.02703733928501606, + -0.008699096739292145, + 6.330812902888283e-05, + -0.10581052303314209, + 0.0024415263906121254, + -0.0788155049085617, + -0.008683789521455765, + -0.0331532321870327, + -0.023927845060825348, + -0.016237730160355568, + 0.060988593846559525, + 0.11809585988521576, + 0.00263945828191936, + -0.04725174978375435, + -0.06443262100219727, + -0.10355985164642334, + 0.06321914494037628, + -0.004612648393958807, + 0.016837676987051964, + -1.923189940523866e-33, + 0.024452118203043938, + 0.010283153504133224, + -0.01656026765704155, + 0.08577518910169601, + 0.049990687519311905, + -0.013079041615128517, + -0.02836943045258522, + -0.041718557476997375, + -0.10203941911458969, + -0.0290598813444376, + 0.08460478484630585, + 0.08480018377304077, + -0.05192834138870239, + 0.006274155806750059, + 0.1066170185804367, + -0.001035025343298912, + -0.014124175533652306, + 0.045200467109680176, + -0.06600335240364075, + -0.02030651643872261, + -0.07648483663797379, + 0.014268718659877777, + -0.08884169906377792, + -0.014903710223734379, + -0.0561632364988327, + 0.009903468191623688, + 0.06251557171344757, + -0.01687627285718918, + -0.06786658614873886, + 0.029909620061516762, + -0.0002706728409975767, + 0.08508148789405823, + 0.04193953052163124, + 0.022466417402029037, + -0.09601283818483353, + 0.003305683610960841, + -0.055617962032556534, + -0.015076345764100552, + 0.05403225123882294, + 0.06663379073143005, + -0.14331121742725372, + -0.003965126350522041, + 0.04075167700648308, + -0.010063211433589458, + 0.06185115873813629, + 0.08064506202936172, + -0.020214281976222992, + -0.0536750853061676, + -0.04325869306921959, + 0.04363535717129707, + -0.0028431278187781572, + 0.04017158970236778, + -0.004763290286064148, + 0.050185177475214005, + -0.05306907743215561, + -0.04729799926280975, + 0.027903782203793526, + 0.08783271908760071, + 0.020972037687897682, + -0.009759302251040936, + 0.013187159784138203, + -0.01350767444819212, + 0.00031614580075256526, + -0.02169693261384964, + -0.06833745539188385, + 0.08065725862979889, + -0.004619631916284561, + 0.006335814017802477, + -0.036676112562417984, + 0.01249654870480299, + -0.021513577550649643, + 0.021066967397928238, + 0.021214203909039497, + 0.08779431134462357, + 0.006943288259208202, + -0.0004232003993820399, + 0.07618354260921478, + 0.006133658345788717, + -0.007135557476431131, + -0.06252145767211914, + -0.04853324964642525, + -0.004319564905017614, + -0.06168684735894203, + 0.024889659136533737, + -0.04996320232748985, + 0.006305956281721592, + -0.03439287841320038, + -0.05277904123067856, + -0.040867168456315994, + 0.024169012904167175, + -0.051411524415016174, + 0.021483033895492554, + -0.023122237995266914, + -0.010486926883459091, + -0.12281998246908188, + -1.991804647807317e-33, + 0.03832453116774559, + 0.03304669260978699, + -0.07210498303174973, + -0.0329715758562088, + -0.053030095994472504, + 0.07334163039922714, + 0.015608157962560654, + 0.04100295156240463, + 0.007512415759265423, + 0.01260988600552082, + 0.09312355518341064, + 0.07421300560235977, + -0.022566625848412514, + 0.018351495265960693, + -0.05503332242369652, + 0.04425250366330147, + 0.07540997862815857, + 0.06812255084514618, + -0.010756232775747776, + -0.020424379035830498, + -0.0250232070684433, + -0.04229588061571121, + -0.06335976719856262, + 0.03185281157493591, + 0.025118138641119003, + -0.06557472050189972, + 0.018228234723210335, + -0.04512699320912361, + 0.026002390310168266, + -0.06100716441869736, + 0.05239873006939888, + 0.030843019485473633, + -0.07798262685537338, + -0.0022739374544471502, + -0.021758971735835075, + -0.013920329511165619, + 0.04384411871433258, + -0.11775919049978256, + -0.009636574424803257, + -0.012397386133670807, + 0.039619382470846176, + -0.002221141243353486, + 0.06963548064231873, + 0.04923953860998154, + -0.03380202129483223, + 0.05434029921889305, + -0.03734194487333298, + -0.10848845541477203, + -0.02020607888698578, + 0.03425980359315872, + 0.08097505569458008, + -0.014448271133005619, + 0.014913608320057392, + -0.02837597392499447, + -0.05891970917582512, + -0.0024852484930306673, + 0.0537324994802475, + 0.07017289102077484, + -0.09992772340774536, + 0.03833974897861481, + 0.013037930242717266, + 0.03643549606204033, + -0.07862982898950577, + -0.05124290660023689, + -0.03619259595870972, + -0.00306876702234149, + 0.04686613380908966, + 8.481602708343416e-05, + 0.052241433411836624, + -0.01692272163927555, + 0.035030875355005264, + -0.05516722798347473, + -0.04901178926229477, + 0.04743180051445961, + -0.0952790230512619, + 0.02204424887895584, + 0.13616999983787537, + -0.031544167548418045, + -0.10431243479251862, + 0.0008398302015848458, + 0.04112372174859047, + 0.035827696323394775, + 0.051537755876779556, + -0.019792625680565834, + -0.082188181579113, + 0.003513361793011427, + -0.03694616258144379, + 0.017307309433817863, + 0.0015932460082694888, + -0.0018770825117826462, + -0.0398738831281662, + 0.10393809527158737, + 0.037934307008981705, + -0.03575555607676506, + -0.0982334241271019, + -1.8273095037102394e-08, + -0.03732198476791382, + -0.06670810282230377, + -0.04362105578184128, + -0.035368531942367554, + -0.042095623910427094, + 0.015216666273772717, + -0.041708119213581085, + -0.008585072122514248, + -0.025222422555088997, + -0.10354091972112656, + -0.07205203920602798, + -0.0016042054630815983, + -0.12738242745399475, + -0.02175159566104412, + 0.05387003347277641, + 0.04805075377225876, + -0.043704573065042496, + 0.0783970057964325, + -0.0010948979761451483, + -0.03685108572244644, + -0.0006696319323964417, + 0.07118118554353714, + 0.0702364593744278, + 0.058487024158239365, + 0.009067782200872898, + 0.00813046470284462, + -0.050051137804985046, + 0.02187376841902733, + 0.08376120030879974, + 0.06079617142677307, + 0.03780152648687363, + 0.06739998608827591, + 0.015037698671221733, + 0.031439803540706635, + -0.03756866604089737, + 0.031830377876758575, + 0.0027060264255851507, + 0.05334008112549782, + 0.0002724202931858599, + 0.06596633791923523, + -0.0037649990990757942, + -0.0754302367568016, + -0.025329438969492912, + -0.024358000606298447, + -0.03926006704568863, + 0.031680572777986526, + 0.06385038793087006, + -0.01290702261030674, + -0.020732298493385315, + -0.08623038977384567, + -0.023524651303887367, + 0.03820572793483734, + 0.003101501613855362, + 0.05180153623223305, + -0.06006866320967674, + 0.009683256037533283, + -0.006254900246858597, + -0.0032001689542084932, + 0.024261483922600746, + -0.015247365459799767, + 0.0940399095416069, + 0.029637625440955162, + 0.01745252124965191, + 0.08337225019931793 + ], + "apple-logo-bold||macintosh,imac,iphone,ipad,macos,ios": [ + 0.020105067640542984, + 0.018999995663762093, + 5.253059134702198e-05, + -0.04667709767818451, + 0.07806811481714249, + -0.06758508086204529, + 0.04533541947603226, + -0.059451084583997726, + 0.07323028147220612, + 0.017432276159524918, + 0.0641263946890831, + 0.03085906244814396, + 0.015273930504918098, + 0.0092549379914999, + 0.038651369512081146, + -0.045296985656023026, + -0.04824063181877136, + -0.0022003676276654005, + 0.034869082272052765, + -0.00411255843937397, + 0.048482395708560944, + 0.020441509783267975, + 0.03276682645082474, + 0.02063586935400963, + 0.04398095980286598, + 0.021584240719676018, + 0.0942414402961731, + -0.0002781443763524294, + -0.0427003875374794, + -0.05554869398474693, + -0.08478068560361862, + -0.026935292407870293, + 0.10525268316268921, + 0.0545450821518898, + 0.0233002882450819, + -0.03221229836344719, + 0.0792313888669014, + -0.028096601366996765, + -0.011877937242388725, + -0.039670430123806, + -0.013673441484570503, + -0.019092703238129616, + 0.08721128851175308, + 0.08623238652944565, + -0.016129281371831894, + 0.036135707050561905, + -0.02857954055070877, + -0.027175281196832657, + 0.04762176796793938, + 0.0033980959560722113, + 0.05831398442387581, + -0.09218044579029083, + -0.09261881560087204, + -0.02437051758170128, + 0.016957947984337807, + 0.005795428995043039, + -0.012578903697431087, + 0.006845986004918814, + 0.10995319485664368, + 0.02375767193734646, + -0.020518718287348747, + 0.018939612433314323, + 0.031933121383190155, + 0.09302758425474167, + 0.07244747877120972, + -0.028369713574647903, + -0.007120579015463591, + 0.012433418072760105, + -0.0891323983669281, + -0.025524359196424484, + 0.09358800202608109, + -0.04593440517783165, + 0.04100838303565979, + -0.010706095024943352, + -0.035549573600292206, + 0.06003905087709427, + 0.07104619592428207, + 0.002901987871155143, + -0.05933335795998573, + -0.06606656312942505, + -0.0862959772348404, + 0.012172892689704895, + -0.04116058722138405, + 0.03797074034810066, + 0.1214083805680275, + 0.038353197276592255, + -0.10088387131690979, + -0.065848708152771, + -0.01886756159365177, + 0.05636071041226387, + -0.09475108981132507, + 0.0024152579717338085, + 0.0443347729742527, + -0.02410372719168663, + -0.02811609022319317, + -0.009493455290794373, + 0.021832268685102463, + -0.005931035615503788, + -0.08994230628013611, + 0.0669572725892067, + 0.003398309461772442, + 0.016873905435204506, + 0.07425843924283981, + -0.011851439252495766, + 0.013107549399137497, + -0.005665773991495371, + 0.03870682790875435, + -0.10225924104452133, + 0.03987307846546173, + 0.08404994755983353, + 0.035710498690605164, + -0.09220805019140244, + -0.10322228819131851, + 0.027098119258880615, + -0.027972713112831116, + -0.05479101091623306, + -0.028937047347426414, + 0.012460126541554928, + 0.12097878009080887, + -0.012461734004318714, + -0.07730270177125931, + -0.007966399192810059, + -0.041903503239154816, + -0.08725495636463165, + -0.023564016446471214, + 0.026792792603373528, + -0.018900705501437187, + -2.5658720077107662e-33, + -0.04384971410036087, + 0.06339385360479355, + -0.02232695370912552, + 0.0285029374063015, + 0.006818919442594051, + -0.08092347532510757, + -0.01474860031157732, + -0.040021322667598724, + -0.07468713819980621, + 0.03392407298088074, + 0.06013229861855507, + 0.06295984238386154, + -0.026083625853061676, + 0.05830502137541771, + 0.0584404282271862, + -0.04627276584506035, + -0.013995588757097721, + -0.04429670795798302, + -0.0803331807255745, + 0.009051516652107239, + -0.011118100956082344, + 0.013748562894761562, + -0.04114098846912384, + -0.07398975640535355, + -0.0678352639079094, + -0.03836039453744888, + 0.016652362421154976, + -0.02527623251080513, + 0.00789398979395628, + 0.009387463331222534, + 0.0310229379683733, + 0.07478511333465576, + 0.03996426612138748, + -0.03766505420207977, + -0.05426796153187752, + -0.05125673860311508, + 0.004217540845274925, + -0.021792007610201836, + 0.024387938901782036, + 0.06264324486255646, + -0.10416510701179504, + -0.025945430621504784, + 0.005349086131900549, + 0.0066902171820402145, + 0.05229334160685539, + 0.119776651263237, + -0.004215470049530268, + -0.07157707214355469, + -0.0027763734105974436, + 0.008225939236581326, + -0.050316229462623596, + -0.05883270129561424, + 0.013073818758130074, + -0.06254149228334427, + -0.02214209921658039, + -0.03837351128458977, + -0.038283511996269226, + 0.011174729093909264, + -0.011814743280410767, + -0.011153601109981537, + -0.002550425473600626, + 0.007400198373943567, + 0.03273021802306175, + -0.0005446819704957306, + -0.038581185042858124, + 0.12103099375963211, + 0.004746331367641687, + 0.011683344841003418, + -0.00411921227350831, + 0.021510468795895576, + 0.005071216728538275, + 0.02128623239696026, + 0.06864745914936066, + -0.002067605732008815, + -0.05184607952833176, + 0.017544111236929893, + -0.028832899406552315, + 0.04476339742541313, + -0.04460630938410759, + 0.018963363021612167, + -0.06814009696245193, + 0.01783374883234501, + -0.02583901956677437, + 0.09442123770713806, + 0.033698197454214096, + 0.06920553743839264, + -0.0006467913626693189, + -0.010898768901824951, + -0.029392285272479057, + 0.06852966547012329, + -0.05181195214390755, + 0.000908173737116158, + 0.010361365973949432, + -0.02901586890220642, + -0.16573457419872284, + -9.347754237994494e-34, + 0.0504574254155159, + -0.004422161728143692, + 0.019018225371837616, + -0.06001013517379761, + -0.05761058256030083, + -0.007558992598205805, + 0.037841469049453735, + 0.057710543274879456, + -0.08407653123140335, + -0.03940628841519356, + 0.10056371241807938, + 0.02151518687605858, + -0.04687599465250969, + -0.05914837867021561, + -0.06405512988567352, + 0.02269461192190647, + 0.0034450574312359095, + 0.06590698659420013, + -0.02618136629462242, + -0.012377546168863773, + -0.03577105328440666, + -0.04332888126373291, + 0.012627783231437206, + 0.0753314420580864, + 0.0023444986436516047, + -0.023229967802762985, + 0.03962406516075134, + 0.024014944210648537, + -0.045965954661369324, + -0.029761526733636856, + -0.051519472151994705, + -0.006642707157880068, + 0.03195347264409065, + 0.01263351272791624, + 0.038018081337213516, + 0.02764710783958435, + -0.03522958606481552, + -0.06692249327898026, + -0.039949532598257065, + 0.0072119636461138725, + 0.003455263329669833, + 0.054235637187957764, + -0.0024558885488659143, + 0.03056619130074978, + -0.04884520173072815, + 0.028376184403896332, + -0.07118096202611923, + -0.024079876020550728, + -0.059209179133176804, + 0.04785505682229996, + 0.024653159081935883, + -0.03715817257761955, + -0.005076636094599962, + 0.011533541604876518, + -0.09173690527677536, + -0.02930459938943386, + 0.0203752052038908, + 0.0533054880797863, + -0.02953939512372017, + 0.07805521786212921, + 0.00345062674023211, + -0.03557095304131508, + -0.013060000725090504, + -0.0718652755022049, + 0.0048126233741641045, + -0.05482909455895424, + -0.002339584520086646, + 0.011493636295199394, + -0.00957139115780592, + 0.07938016951084137, + 0.03199350833892822, + -0.03434545546770096, + 0.02521711401641369, + 0.009815506637096405, + -0.03538171947002411, + -0.05477327108383179, + 0.10437067598104477, + -0.019757796078920364, + -0.056481558829545975, + 0.04017343372106552, + 0.031316131353378296, + 0.11027967184782028, + -0.09433099627494812, + 0.12103453278541565, + 0.02598404884338379, + 0.019589154049754143, + -0.016641542315483093, + 0.023381410166621208, + 0.034853462129831314, + 0.05070719122886658, + -0.06473299115896225, + 0.06088976189494133, + 0.06749837845563889, + -0.054300595074892044, + -0.11886528879404068, + -2.103013052590086e-08, + -0.02996428683400154, + -0.04062118008732796, + 0.07018262147903442, + -0.023149635642766953, + -0.002888191258534789, + 0.043327074497938156, + -0.003953765612095594, + -0.08964744955301285, + 0.028905630111694336, + -0.05423083156347275, + -0.03001052513718605, + -0.019774304702878, + -0.11607382446527481, + 0.00574400695040822, + -0.006722669582813978, + 0.04103899002075195, + -0.07027000933885574, + 0.13936394453048706, + 0.015450443141162395, + -0.059772200882434845, + -0.09154891222715378, + 0.07925419509410858, + 0.0064124600030481815, + 0.011068442836403847, + -0.012491690926253796, + 0.05114983767271042, + -0.019887788221240044, + -0.021867509931325912, + 0.016700467094779015, + 0.04072336480021477, + -0.027778100222349167, + 0.03471508249640465, + 0.0010305598843842745, + -0.0006087833899073303, + -0.06063481420278549, + -0.04946630075573921, + -0.041478659957647324, + -0.002450002124533057, + -0.03229329735040665, + 0.02097303606569767, + -0.03582939878106117, + -0.05204227939248085, + -0.02053014747798443, + -0.027296438813209534, + -0.0004498568596318364, + -0.007989865727722645, + 0.048476751893758774, + 0.07415921241044998, + -0.08139337599277496, + -0.04884693771600723, + 0.040460407733917236, + 0.01841062866151333, + -0.007212335243821144, + 0.06571011245250702, + -0.03201018646359444, + -0.1381019651889801, + 0.02841140516102314, + -0.022715363651514053, + 0.017489062622189522, + 0.04415798559784889, + 0.19794747233390808, + -0.06510137021541595, + 0.04053133353590965, + 0.00854568649083376 + ], + "apple-podcasts-logo-bold||macintosh,imac,iphone,ipad,macos,ios": [ + 0.022428497672080994, + -0.010723625309765339, + -0.008727670647203922, + -0.08336368203163147, + 0.11043783277273178, + -0.019000863656401634, + 0.037788402289152145, + -0.06343307346105576, + 0.0596301406621933, + 0.012046506628394127, + -0.018951162695884705, + 0.040597688406705856, + -0.003272397443652153, + 0.02554190717637539, + 0.02400376833975315, + -0.08598171174526215, + -0.041211679577827454, + 0.0018039033748209476, + 0.05230514332652092, + 0.012574365362524986, + -0.006533228792250156, + 0.07229498773813248, + 0.0706280842423439, + 0.04185361787676811, + 0.04747326672077179, + -0.017675315961241722, + 0.023175718262791634, + -0.028497256338596344, + -0.02463565021753311, + -0.044697318226099014, + -0.012923400849103928, + -0.02423221431672573, + 0.17461352050304413, + 0.039184484630823135, + 0.02556159719824791, + -0.056276872754096985, + 0.052345700562000275, + -0.0016296388348564506, + -0.044860269874334335, + -0.0027670287527143955, + 0.002987607615068555, + 0.003670882899314165, + 0.06568683683872223, + 0.021229682490229607, + -0.04478662461042404, + -0.044812191277742386, + -0.027619216591119766, + -0.05122619867324829, + 0.05850940942764282, + 0.09973934292793274, + -0.0007291491492651403, + -0.11504647135734558, + -0.07950858026742935, + 0.004547859076410532, + 0.0057324981316924095, + 0.015163752250373363, + -0.005683688912540674, + 0.059746503829956055, + 0.11035643517971039, + 0.0031626324634999037, + -0.008594878949224949, + -0.039994433522224426, + 0.01923888549208641, + 0.10569354146718979, + 0.05830293148756027, + 0.0033615774009376764, + -0.009000096470117569, + 0.052656300365924835, + -0.05730041116476059, + -0.015460708178579807, + 0.001815709751099348, + 0.008451271802186966, + 0.04657280445098877, + -0.012300902977585793, + -0.02071836218237877, + 0.05687263607978821, + 0.08387665450572968, + -0.016053766012191772, + -0.07651365548372269, + -0.056032851338386536, + -0.07778288424015045, + -0.0238634143024683, + -0.01658598706126213, + -0.011316138319671154, + 0.10497434437274933, + 0.04538982734084129, + -0.05605937913060188, + -0.11708942800760269, + -0.03364190459251404, + 0.04233197122812271, + -0.14807458221912384, + 0.011081122793257236, + 0.035848602652549744, + -0.029744230210781097, + -0.019389746710658073, + 0.016775377094745636, + 0.034014035016298294, + 0.005484317895025015, + -0.0625782459974289, + 0.07437051087617874, + 0.029220230877399445, + 6.10613715252839e-05, + 0.030514974147081375, + -0.05681627243757248, + -0.0014962218701839447, + -0.04808888956904411, + -0.04009206220507622, + -0.1176985502243042, + 0.06183486059308052, + 0.11410616338253021, + 0.04919464886188507, + -0.0456419363617897, + -0.0742705836892128, + -0.02032470703125, + 0.0016509713605046272, + 0.0010450496338307858, + 0.03294142708182335, + 0.016018586233258247, + 0.07238991558551788, + -0.004464312456548214, + -0.03535497561097145, + -0.017676109448075294, + -0.04743747040629387, + -0.10631652176380157, + -0.02597571536898613, + 0.018160300329327583, + -0.008654056116938591, + -2.9758317237027854e-33, + -0.05660250410437584, + 0.010805339552462101, + 0.007213241886347532, + 0.03902731463313103, + 0.08533330261707306, + -0.060844190418720245, + -0.04284634813666344, + -0.018856288865208626, + -0.08692218363285065, + 0.03519348427653313, + 0.07574019581079483, + 0.06430470943450928, + -0.02627559006214142, + 0.03150838986039162, + 0.007167201489210129, + 0.002789620077237487, + -0.07146545499563217, + 0.0033124866895377636, + -0.08853456377983093, + -0.03501186519861221, + 0.0031944371294230223, + 0.020175427198410034, + -0.01693556271493435, + -0.018746692687273026, + -0.007337218150496483, + -0.03297970071434975, + 0.05459699034690857, + -0.07929430902004242, + 0.06710769981145859, + 0.022434763610363007, + -0.012336206622421741, + 0.024038240313529968, + 0.019820833578705788, + -0.08969403058290482, + -0.026300087571144104, + -0.024490850046277046, + -0.022058244794607162, + 0.004751028958708048, + 0.048610441386699677, + 0.005414394196122885, + -0.0515269860625267, + -0.09033071249723434, + -0.033455729484558105, + -0.009594450704753399, + 0.03726786747574806, + 0.09194054454565048, + 0.031216425821185112, + -0.03440845012664795, + -0.009210982359945774, + 0.0003837452968582511, + -0.03630577400326729, + -0.06213062256574631, + -0.015161584131419659, + -0.08619784563779831, + 0.018771948292851448, + -0.06530904769897461, + 0.0030406713485717773, + 0.03515670448541641, + -0.01562400721013546, + -0.018651245161890984, + 0.0028175844345241785, + 0.025694003328680992, + 0.07738720625638962, + -0.01934194564819336, + -0.035676341503858566, + 0.0823858380317688, + 0.049184396862983704, + 0.011596362106502056, + 0.02426917850971222, + 0.0375337116420269, + 0.028522875159978867, + 0.029840873554348946, + 0.06707954406738281, + -0.011969870887696743, + -0.08913750946521759, + 0.021491197869181633, + -0.03782565891742706, + 0.0050774565897881985, + -0.016221465542912483, + 0.07690033316612244, + -0.08231443911790848, + 0.023429056629538536, + -0.034281522035598755, + 0.062347061932086945, + 0.00454809470102191, + 0.02110668271780014, + 0.01498095691204071, + -0.01272985152900219, + -0.03911977633833885, + 0.052380748093128204, + -0.06054864078760147, + 0.08500084280967712, + -0.013754313811659813, + -0.030010608956217766, + -0.11928106844425201, + 3.918829259829319e-35, + 0.027991993352770805, + 0.04517511650919914, + -0.01502144243568182, + -0.06412617117166519, + -0.05343281850218773, + -0.03447384387254715, + 0.06948932260274887, + 0.10407689958810806, + -0.05973898619413376, + -0.058504436165094376, + 0.07242672890424728, + -0.0470716767013073, + -0.0704919621348381, + -0.007857320830225945, + -0.08350714296102524, + -0.009068319573998451, + -0.007451014127582312, + 0.02452961541712284, + -0.02328156679868698, + -0.01899624802172184, + -0.0020438709761947393, + -0.040691737085580826, + 0.011144082993268967, + 0.12792488932609558, + 0.034385278820991516, + -0.045950811356306076, + 0.041811492294073105, + 0.04284881800413132, + -0.018348241224884987, + -0.02196546085178852, + -0.03641612455248833, + -0.019859645515680313, + -0.021773993968963623, + -0.0010666949674487114, + 0.06062234938144684, + 0.0666339322924614, + -0.008575943298637867, + -0.021289994940161705, + -0.009984423406422138, + -0.0498664416372776, + -0.011544405482709408, + 0.03033921681344509, + -0.017564499750733376, + -0.013417433016002178, + 0.0010714172385632992, + -0.06921003013849258, + -0.0991596207022667, + 0.06011135131120682, + -0.03546205535531044, + 0.010778971016407013, + 0.045796334743499756, + -0.0734010562300682, + 0.008195498026907444, + 0.006556529086083174, + -0.06993303447961807, + 0.006165346130728722, + -0.0007112181629054248, + 0.03145184367895126, + -0.008783295750617981, + 0.041234295815229416, + -0.01858784630894661, + -0.049472711980342865, + -0.035107243806123734, + -0.09179844707250595, + 0.0028611021116375923, + -0.035813815891742706, + 0.03311556577682495, + 0.014365778304636478, + -0.03830324485898018, + 0.07536563277244568, + 0.052868738770484924, + -0.030576201155781746, + 0.05971308797597885, + 0.0329631008207798, + -0.0205991268157959, + 0.0212092287838459, + 0.09889639914035797, + -0.016585063189268112, + -0.06801322847604752, + -0.010162359103560448, + 0.011693636886775494, + 0.12247873842716217, + -0.02184874750673771, + 0.06609342247247696, + 0.03714803233742714, + 0.05721025541424751, + 0.05531906709074974, + 0.011246507056057453, + 0.015520840883255005, + 0.06082076206803322, + -0.011335824616253376, + 0.0686028003692627, + 0.0597468726336956, + -0.006521904841065407, + -0.09787821024656296, + -2.1370064828829527e-08, + -0.054103024303913116, + -0.028463708236813545, + 0.04733939841389656, + -0.018550168722867966, + -0.035098206251859665, + 0.03435436636209488, + 0.022027628496289253, + -0.09706861525774002, + 0.04245033860206604, + -0.063779816031456, + -0.01645580679178238, + -0.060691948980093, + -0.08141288161277771, + 0.06860417872667313, + 0.031754039227962494, + 0.03130919113755226, + -0.10649903118610382, + 0.14896871149539948, + -0.008548036217689514, + -0.12206060439348221, + -0.06946306675672531, + 0.08511006832122803, + 0.028323257341980934, + 0.01751183718442917, + -0.010674669407308102, + 0.023489460349082947, + 0.008354936726391315, + -0.04038779437541962, + 0.0163048654794693, + 0.01207653060555458, + -0.08135127276182175, + 0.018527310341596603, + -0.07023057341575623, + -0.020520159974694252, + -0.07657137513160706, + -0.04969392344355583, + -0.0468100979924202, + 0.008222198113799095, + -0.04699535667896271, + 0.023597659543156624, + -0.02686290256679058, + -0.09975732117891312, + 0.023076066747307777, + -0.05110367387533188, + -0.0677904412150383, + -0.02866140753030777, + 0.08876348286867142, + 0.07147204875946045, + -0.0189043115824461, + -0.05157162621617317, + 0.047049008309841156, + 0.006286883261054754, + 0.07786711305379868, + 0.009388129226863384, + -0.007283068727701902, + -0.0788654088973999, + 0.03217226639389992, + -0.007141659501940012, + -0.014258249662816525, + 0.02133289910852909, + 0.11857449263334274, + -0.0075767869129776955, + 0.043277557939291, + 0.052863433957099915 + ], + "approximate-equals-bold||*new*,\u2248,is approximately equal to,congruent,equality,equivalent,equivalence,comparison,mathematics,arithmetic,calculator": [ + -0.02098925970494747, + 0.025651447474956512, + 0.035089340060949326, + 0.01909196935594082, + -0.05196639522910118, + -0.08349338173866272, + 0.01452417392283678, + 0.03744642063975334, + -0.025524763390421867, + 0.009659391827881336, + 0.03304681554436684, + -0.06852345913648605, + 0.06127538904547691, + -0.02788509801030159, + -0.025149429216980934, + -0.04069686308503151, + 0.04430753365159035, + -0.02499811165034771, + -0.052307143807411194, + 0.006684430409222841, + -0.0324627123773098, + -0.008731362409889698, + -0.002985150320455432, + 0.15430772304534912, + 0.05849384143948555, + 0.006764540448784828, + -0.006160551682114601, + -0.012307838536798954, + 0.10903451591730118, + 0.028648972511291504, + -0.08031967282295227, + -0.02011600323021412, + 0.08594026416540146, + -0.030169498175382614, + -0.012715383432805538, + 0.039090655744075775, + 0.010481002740561962, + -0.019756978377699852, + 0.0275829266756773, + -0.010860144160687923, + -0.07615284621715546, + -0.0027743102982640266, + 0.017202317714691162, + 0.06784111261367798, + -0.10784388333559036, + 0.009901586920022964, + -0.048822734504938126, + -0.02678428590297699, + -0.013641337864100933, + -0.06796577572822571, + -0.08117083460092545, + 0.031843312084674835, + -0.10340913385152817, + -0.09181942045688629, + 0.026937952265143394, + -0.008865621872246265, + -0.04207529500126839, + -0.00010981539526255801, + 0.04122677445411682, + -0.034853655844926834, + 0.006610123906284571, + -0.01951802708208561, + 0.09458713233470917, + 0.006540355272591114, + 0.006186882499605417, + 0.008616488426923752, + 0.045488160103559494, + -0.06353400647640228, + 0.025594022125005722, + 0.05637919902801514, + -0.014179795980453491, + 0.03491421416401863, + -0.05046906694769859, + 0.052788980305194855, + -0.04380330815911293, + -0.034095361828804016, + 0.06437291949987411, + 0.04312041401863098, + -0.00885413121432066, + 0.04742056876420975, + -0.13893653452396393, + -0.07741399109363556, + -0.044554416090250015, + -0.05894821509718895, + 0.028442738577723503, + 0.015131697058677673, + -0.013575469143688679, + -0.035751186311244965, + 0.06879092752933502, + -0.10753191262483597, + -0.030833110213279724, + 0.01500244066119194, + -0.0927664041519165, + 0.028904277831315994, + -0.047283805906772614, + -0.016506897285580635, + 0.014612924307584763, + 0.009426266886293888, + 0.012080579064786434, + 0.09337660670280457, + 0.012104781344532967, + 0.12592971324920654, + 0.005758731160312891, + -0.028415242210030556, + 0.010003099218010902, + -0.07708953320980072, + -0.0073527381755411625, + -0.06227703019976616, + 0.06495944410562515, + -0.0419502817094326, + 0.001549800974316895, + -0.09681766480207443, + 0.021550340577960014, + 0.09340215474367142, + -0.003646917175501585, + -0.019772477447986603, + 0.018614424392580986, + -0.018529841676354408, + 0.05087899789214134, + 0.032584406435489655, + 0.04232759401202202, + -0.014166799373924732, + -0.004100937861949205, + 0.0008007119758985937, + 0.005502820946276188, + -0.06361912190914154, + 0.017578894272446632, + -2.0791616941596675e-33, + 0.030602218583226204, + 0.06595553457736969, + 0.006458648480474949, + 0.06627505272626877, + -0.06953349709510803, + -0.017363179475069046, + -0.04208841919898987, + -0.016443734988570213, + -0.019767021760344505, + 0.03491576388478279, + 0.04299033805727959, + 0.13080644607543945, + -0.002030446892604232, + 0.07290604710578918, + 0.0660024955868721, + -0.04956716671586037, + 0.03911105915904045, + -0.009415988810360432, + -0.08637357503175735, + -0.04271617904305458, + 0.011076231487095356, + -0.0396103598177433, + -0.03950226679444313, + 0.02772432565689087, + -0.011801326647400856, + -0.018187666311860085, + 0.08145533502101898, + 0.04801559075713158, + 0.01632915437221527, + -0.011792901903390884, + 0.011294135823845863, + 0.008109871298074722, + 0.045348990708589554, + 0.04136233404278755, + 0.036733970046043396, + -0.0074739158153533936, + 0.017377005890011787, + -0.044275179505348206, + 0.05663333088159561, + -0.03709978237748146, + -0.06471177190542221, + -0.006269847508519888, + 0.033146053552627563, + -0.06395010650157928, + 0.10187043994665146, + 0.0026259589940309525, + -0.05483977124094963, + 0.0072034806944429874, + 0.1020304411649704, + -0.04857411980628967, + -0.03219396620988846, + 0.018888656049966812, + 0.0007231610361486673, + 0.052673522382974625, + -0.01228085346519947, + -0.06906024366617203, + -0.023295283317565918, + 0.0637446790933609, + 0.032643262296915054, + 0.07452275604009628, + -0.00800449587404728, + -0.039806634187698364, + 0.012240174226462841, + -0.01039605587720871, + -0.08457665145397186, + 0.053805433213710785, + -0.06900221109390259, + 0.004822096787393093, + 0.10249440371990204, + 0.06846500188112259, + 0.032888177782297134, + 0.0365557037293911, + -0.04802345484495163, + 0.044512759894132614, + 0.03975696116685867, + -0.0056706927716732025, + 0.04530508443713188, + -0.025461696088314056, + 0.05572286248207092, + -0.040767036378383636, + -0.12093491852283478, + 0.061889227479696274, + -0.023913301527500153, + -0.032382380217313766, + -0.01921134814620018, + -0.08269477635622025, + 0.05431791767477989, + 0.03174504637718201, + 0.009904585778713226, + -0.003142597386613488, + -0.024406902492046356, + 0.0044962577521800995, + -0.028201429173350334, + -0.028238968923687935, + -0.08090891689062119, + -1.5112154455816367e-33, + -0.0052039423026144505, + 0.021019134670495987, + -0.005570337176322937, + 0.059247154742479324, + -0.05256202816963196, + 0.00970112718641758, + 0.04737120866775513, + -0.053038615733385086, + 0.02788359299302101, + -0.04764920845627785, + 0.011927184648811817, + -0.0025404111947864294, + 0.020282654091715813, + -0.038086116313934326, + -0.037969332188367844, + 0.029975302517414093, + 0.05106938257813454, + -0.008813288994133472, + -0.022293657064437866, + 0.06803170591592789, + 0.06671936064958572, + -0.024904249235987663, + -0.030754946172237396, + 0.008041257038712502, + -0.0012236559996381402, + -0.0008641437161713839, + -0.008049980737268925, + 0.03106793574988842, + -0.012629203498363495, + -0.11039736121892929, + -0.0040669827722013, + -0.09183720499277115, + -0.037795282900333405, + -0.07022905349731445, + -0.03679544851183891, + -0.042800694704055786, + 0.11933834105730057, + 0.02982516400516033, + 0.042246267199516296, + -0.00752718560397625, + 0.01238462794572115, + -0.04957941174507141, + -0.0007965388358570635, + 0.0319855622947216, + 0.04431505501270294, + -0.03250567987561226, + 0.007438630796968937, + -0.08881090581417084, + -0.029298843815922737, + -0.019756624475121498, + 0.12599286437034607, + -0.04130032658576965, + -0.011141723953187466, + 0.06925782561302185, + -0.04443641006946564, + 0.02528293803334236, + -0.04768388718366623, + 0.051281966269016266, + -0.06450238078832626, + 0.07395315915346146, + -0.06402692198753357, + 0.00959207396954298, + 0.049392953515052795, + 0.07016982138156891, + -0.04210640862584114, + -0.04833393916487694, + -0.0193850826472044, + 0.021542975679039955, + 0.01061154529452324, + 0.001638511079363525, + 0.042259156703948975, + 0.009537959471344948, + -0.02547241747379303, + -0.037833210080862045, + -0.02845495566725731, + -0.08390390127897263, + 0.09966225177049637, + -0.028003761544823647, + 0.07014187425374985, + 0.0042083472944796085, + 0.041499100625514984, + 0.0418991819024086, + 0.0014257733710110188, + -0.06337704509496689, + -0.08821401000022888, + 0.011620523408055305, + 0.05639317259192467, + 0.002334828022867441, + -0.06914299726486206, + 0.012930492870509624, + -0.0652051568031311, + 0.016075603663921356, + -0.04057002440094948, + -0.10292907804250717, + -0.01011103019118309, + -2.8689708386764323e-08, + -0.005868219770491123, + 0.023207928985357285, + -0.07678601145744324, + 0.019881313666701317, + 0.0749792531132698, + -0.025966668501496315, + -0.03363221138715744, + -0.1269330233335495, + -0.08245112746953964, + -0.06876304745674133, + 0.09066635370254517, + 0.016141748055815697, + 0.009191527031362057, + -0.04500657692551613, + -0.002630465431138873, + 0.007860951125621796, + -0.047323938459157944, + -0.05426093190908432, + -0.022002484649419785, + 0.06443112343549728, + -0.0314919650554657, + 0.020380115136504173, + 0.052108608186244965, + -0.049804843962192535, + 0.0009715920314192772, + 0.03633563965559006, + -0.10156260430812836, + 0.07065555453300476, + 0.007407955825328827, + 0.020817698910832405, + 0.040200117975473404, + 0.04837959259748459, + 0.08718666434288025, + -0.10107199102640152, + -0.04616987705230713, + 0.0012486421037465334, + 0.04203825071454048, + 0.023495396599173546, + -0.03850865364074707, + 0.04103262722492218, + -0.02154754474759102, + -0.06233415752649307, + -0.011676941066980362, + -0.012607911601662636, + 0.1039438545703888, + -0.04267941042780876, + 0.006893395446240902, + -0.06878530234098434, + -0.08365163952112198, + -0.10612647235393524, + 0.0074136569164693356, + 0.11422133445739746, + -0.002448062412440777, + 0.03060193359851837, + -0.05423981323838234, + -0.08776043355464935, + -0.024114640429615974, + 0.04397914186120033, + -0.03934742137789726, + 0.025838585570454597, + 0.13082990050315857, + 0.004928062669932842, + 0.13420690596103668, + 0.03104962594807148 + ], + "archive-bold||saved,saving,archived,archiving,archival,downloaded,downloading": [ + -0.0027885909657925367, + 0.04657486826181412, + -0.084083192050457, + 0.033745430409908295, + 0.1161751002073288, + 0.024087712168693542, + 0.002013928722590208, + -0.029419491067528725, + 0.035988762974739075, + 0.03092973306775093, + 0.0020234922412782907, + 0.11416197568178177, + 0.03920091316103935, + -0.04063396528363228, + -0.08475717157125473, + 0.059876881539821625, + -0.06723339855670929, + 0.053570542484521866, + -0.016946373507380486, + -0.020143231377005577, + 0.00746601726859808, + 0.05515463650226593, + 0.07217148691415787, + 0.017448000609874725, + 0.07137320190668106, + 0.0062079099006950855, + -0.030539093539118767, + 0.04085639491677284, + 0.1008833721280098, + -0.0767209604382515, + -0.002016494981944561, + -0.027644284069538116, + 0.11303076148033142, + 0.04038040712475777, + 0.0703003853559494, + 0.07363501191139221, + -0.03413277119398117, + 0.0351187102496624, + 0.010830356739461422, + 0.03822155296802521, + 0.0335332490503788, + -0.03565023094415665, + -0.05572450906038284, + 0.021961700171232224, + -0.09888862818479538, + -0.06585364043712616, + -0.02197185717523098, + -0.048042330890893936, + -0.013730852864682674, + 0.02547263726592064, + 0.03617027401924133, + -0.053212497383356094, + -0.14522266387939453, + 0.049971193075180054, + 0.04233802482485771, + -0.01412415411323309, + -0.06396923959255219, + -0.016345955431461334, + -0.042351868003606796, + -0.021586580201983452, + -0.016360128298401833, + 0.017988109961152077, + -0.03252483159303665, + 0.040924910455942154, + 0.016937650740146637, + 0.08033204078674316, + 0.017570219933986664, + 0.0765160471200943, + 0.011907234787940979, + -0.05543198436498642, + -0.06025389954447746, + 0.023215515539050102, + -0.0688822939991951, + 0.02668466605246067, + -0.03699156269431114, + 0.035520847886800766, + 0.08866985142230988, + 0.057346995919942856, + -0.09386289864778519, + -0.04906833916902542, + -0.02991170436143875, + -0.08810264617204666, + 0.009346258826553822, + -0.007297373376786709, + 0.011213225312530994, + 0.02279975265264511, + -0.026519428938627243, + -0.09457846730947495, + 0.015787798911333084, + -0.025830134749412537, + -0.05495726689696312, + 0.01687980815768242, + 0.1371813714504242, + -0.008436951786279678, + -0.13761866092681885, + 0.02712136320769787, + 0.1178058311343193, + 0.025470221415162086, + 0.0034246151335537434, + 0.06894426047801971, + 0.06908683478832245, + 0.039510928094387054, + 0.04452398791909218, + -0.06498923152685165, + -0.04218243062496185, + -0.06756118685007095, + 0.06854011863470078, + -0.03273291140794754, + 0.011003071442246437, + 0.05161895230412483, + -0.022061385214328766, + -0.05791313201189041, + -0.025744091719388962, + -0.09100162982940674, + -0.006886562332510948, + -0.0114293172955513, + -0.15155529975891113, + 0.008966905996203423, + 0.07851225137710571, + 0.005380067974328995, + 0.04213118180632591, + -0.03861280530691147, + 0.07659158855676651, + -0.055039942264556885, + -0.022455718368291855, + -0.07016487419605255, + 0.08794643729925156, + -1.113476646405346e-33, + 0.08322308957576752, + 0.05385684594511986, + -0.06321926414966583, + 0.07634603977203369, + 0.016339005902409554, + 0.022812258452177048, + -0.027629408985376358, + -0.01590307056903839, + -0.11871005594730377, + -0.012811422348022461, + 0.06316058337688446, + 0.09854630380868912, + -0.06401810050010681, + 0.06915167719125748, + 0.025677546858787537, + 0.02518436685204506, + -0.04881436750292778, + 0.04964033141732216, + 0.006286262068897486, + 0.010561561211943626, + -0.04523419961333275, + 0.0421362966299057, + -0.010271817445755005, + 0.008341223001480103, + 0.01270904578268528, + -0.09397764503955841, + 0.04279952123761177, + -0.0739409327507019, + -0.06710498034954071, + 0.011435037478804588, + 0.021059826016426086, + -0.02759222500026226, + 0.03561766818165779, + -0.018640825524926186, + 0.024484235793352127, + 0.03720218315720558, + -0.07844825088977814, + 0.007419016677886248, + 0.0022352924570441246, + 0.0021010006312280893, + -0.020270520821213722, + -0.0194463562220335, + 0.032729700207710266, + -0.04791969805955887, + 0.04421323165297508, + 0.04170624911785126, + -0.020938526839017868, + -0.0426858589053154, + -0.0059641762636601925, + 0.007285030093044043, + 0.00676018837839365, + 0.02818022482097149, + 0.016708170995116234, + 0.01572481356561184, + -0.017612604424357414, + -0.019620254635810852, + 0.003022998571395874, + 0.019404513761401176, + 0.06338699162006378, + 0.004513099789619446, + 0.059831757098436356, + 0.03193221613764763, + 0.0423237644135952, + -0.026202114298939705, + 0.02379409596323967, + 0.03205565735697746, + -0.021707620471715927, + 0.025208160281181335, + 0.08523698896169662, + 0.03685050457715988, + -0.018269283697009087, + -0.021893324330449104, + 0.03873177990317345, + 0.018339676782488823, + -0.0006015730905346572, + 0.003883959958329797, + -0.05612790584564209, + 0.0008590022334828973, + 0.002408405765891075, + -0.07689373195171356, + -0.10091494023799896, + -0.08340482413768768, + -0.07571824640035629, + 0.020930249243974686, + 0.0016367645002901554, + 0.025646865367889404, + 0.017241278663277626, + -0.05532743036746979, + -0.023430008441209793, + 0.01595274917781353, + 0.0007580150268040597, + 0.04112139344215393, + -0.020810691639780998, + -0.0981699675321579, + -0.049396537244319916, + -1.1174871943580616e-33, + 0.0715562254190445, + -0.005117918364703655, + -0.081581249833107, + -0.012040484696626663, + -0.06029260903596878, + 0.0344109944999218, + -0.01977359503507614, + 0.03043321706354618, + -0.05274498090147972, + -0.006419273093342781, + -0.017453426495194435, + 0.002513561863452196, + -0.06812909990549088, + -0.03618296980857849, + -0.008804615586996078, + 0.0008354797028005123, + 0.05100387707352638, + -0.05051003396511078, + -0.06073828414082527, + 0.01868746243417263, + -0.07918286323547363, + -0.014951829798519611, + -0.04892692714929581, + 0.1392640471458435, + 0.0327853262424469, + -0.0009098302107304335, + 0.01592099666595459, + 0.019747884944081306, + -0.011473037302494049, + -0.029208127409219742, + -0.016182737424969673, + -0.0183241106569767, + -0.02190393954515457, + -0.0375945046544075, + -0.05659264326095581, + -0.030354829505085945, + 0.07730502635240555, + -0.0010024977382272482, + -0.02098613791167736, + 0.048637550324201584, + 0.005241370294243097, + 0.047061119228601456, + -0.050427500158548355, + -0.01695324294269085, + 0.005421088542789221, + -0.0753341019153595, + -0.10572848469018936, + -0.014718655496835709, + -0.004592973738908768, + 0.027249563485383987, + 0.0655348151922226, + -0.037155695259571075, + -0.05184662342071533, + -0.038854148238897324, + 0.03902933746576309, + -0.011776155792176723, + -0.0032822403591126204, + 0.06298573315143585, + -0.020294008776545525, + 0.01578564941883087, + -0.055452074855566025, + 0.0022568104322999716, + -0.04050101339817047, + -0.042429693043231964, + -0.055937837809324265, + -0.07625582069158554, + 0.028743993490934372, + -0.04528617486357689, + -0.13066886365413666, + 0.016146207228302956, + 0.015251673758029938, + -0.03543826937675476, + -0.0015794257633388042, + 0.009957998991012573, + 0.03451217710971832, + -0.02976965345442295, + 0.09699895977973938, + 0.03324192017316818, + -0.030640942975878716, + -0.05962289124727249, + -0.05694327875971794, + 0.06781268864870071, + -0.003339416580274701, + 0.03856120631098747, + -0.04328656569123268, + -0.03784345090389252, + -0.015763355419039726, + -0.01764865592122078, + 0.0026594819501042366, + -0.07810293138027191, + -0.00691635999828577, + 0.03666885197162628, + -0.03232661634683609, + 0.0029988328460603952, + 0.014959401451051235, + -2.0795152266828154e-08, + -0.07546299695968628, + -0.019158650189638138, + -0.006097319070249796, + 0.02365981973707676, + 0.046487897634506226, + -0.01492870133370161, + -0.009975590743124485, + 0.01706501841545105, + -0.043228719383478165, + -0.10280187427997589, + 0.12698973715305328, + -0.010946500115096569, + -0.1239037960767746, + -0.02110952138900757, + -0.002648319350555539, + 0.05300762131810188, + -0.005434443708509207, + 0.007235798053443432, + -0.028001267462968826, + -0.032361555844545364, + -0.03507943078875542, + 0.04584597423672676, + 0.0480092391371727, + 0.0242135189473629, + 0.058421120047569275, + -0.011055100709199905, + -0.018199535086750984, + 0.0434606559574604, + 0.0899152085185051, + 0.016982166096568108, + 0.07312262803316116, + 0.0901554673910141, + -0.0014582705916836858, + -0.057170454412698746, + -0.036666370928287506, + 0.002483126474544406, + 0.010839776135981083, + -0.00474885618314147, + 0.021495908498764038, + 0.11040069162845612, + 0.0323246531188488, + -0.03757196664810181, + -0.014860856346786022, + -0.015389204025268555, + -0.023937877267599106, + -0.028278101235628128, + 0.04362393915653229, + 0.008410868234932423, + -0.027557240799069405, + -0.0837147906422615, + -0.03615344315767288, + -0.051773492246866226, + 0.05765945091843605, + 0.10008952766656876, + -0.011143346317112446, + -0.088816337287426, + 0.043182481080293655, + 0.08056529611349106, + 0.05171765759587288, + 0.013821887783706188, + 0.1767055094242096, + -0.02898506261408329, + 0.06770360469818115, + 0.008317489176988602 + ], + "armchair-bold||seat,furniture": [ + 0.06953370571136475, + -0.030897166579961777, + -0.027976246550679207, + 0.009763817302882671, + 0.029384935274720192, + 0.0017999086994677782, + 0.055940087884664536, + -0.06344960629940033, + 0.039158083498477936, + 0.04415049031376839, + -0.004494684282690287, + 0.014838485978543758, + 0.10970703512430191, + -0.047768473625183105, + -0.010145043022930622, + -0.02663568966090679, + 0.055655963718891144, + 0.017974084243178368, + 0.06473908573389053, + 0.10763153433799744, + -0.06089472770690918, + 0.09724517911672592, + -0.00980410072952509, + 0.03275004401803017, + 0.007819289341568947, + -0.051901672035455704, + 0.09483782202005386, + 0.0031590047292411327, + -0.0017549260519444942, + -0.021978197619318962, + 0.011311524547636509, + -0.07034872472286224, + 0.06521274894475937, + -0.0028882266487926245, + 0.0014417058555409312, + 0.002590346382930875, + -0.03727354109287262, + -0.06648177653551102, + 0.015104500576853752, + 0.03562033548951149, + -0.02783665992319584, + -0.04984438046813011, + -0.014083219692111015, + -0.013099836185574532, + 0.0033396873623132706, + 0.006693155970424414, + -0.0585332028567791, + -0.036998897790908813, + 0.035920657217502594, + 0.03107212670147419, + -0.06798119097948074, + -0.08725734055042267, + -0.08864692598581314, + -0.0039258087053895, + -0.01837565004825592, + 0.0043066260404884815, + -0.05329764261841774, + 0.029341096058487892, + 0.008032724261283875, + -0.01605006866157055, + 0.062152065336704254, + -0.02538980357348919, + 0.058488499373197556, + 0.03329496458172798, + -0.011347847059369087, + 0.03212377429008484, + -0.022696835920214653, + -0.0423402339220047, + -0.06941233575344086, + 0.0833236426115036, + -0.046975281089544296, + 0.01662072353065014, + 0.008358931168913841, + -0.06521956622600555, + -0.08730404824018478, + -0.021665332838892937, + 0.0028668269515037537, + -0.009266506880521774, + 0.04027383774518967, + -0.03220931813120842, + -0.09249979257583618, + -0.011561163701117039, + -0.04727373644709587, + 0.0005804317770525813, + 0.026208769530057907, + 0.038994137197732925, + -0.047627173364162445, + -0.0029001326765865088, + -0.15084132552146912, + -0.07130925357341766, + 0.021363908424973488, + -0.01714664325118065, + -0.008819847367703915, + 0.0609099343419075, + -0.12310848385095596, + 0.05532846972346306, + 0.05067974328994751, + 0.06716898828744888, + 0.006355547811836004, + 0.07068482041358948, + 0.003629503073170781, + 0.10026614367961884, + 0.011972609907388687, + 0.04429157078266144, + -0.12822383642196655, + -0.04911782220005989, + -0.037293653935194016, + -0.07644636183977127, + -0.005790661554783583, + -0.052785906940698624, + -0.05809623375535011, + -0.08262377977371216, + -0.030753619968891144, + -0.026837380602955818, + -0.10392927378416061, + 0.03583570942282677, + -0.034905530512332916, + -0.06849832087755203, + 0.09404616057872772, + 0.0376143604516983, + -0.020077407360076904, + 0.027003085240721703, + -0.0007456569583155215, + 0.0622536838054657, + -0.007850767113268375, + -0.013218329288065434, + 0.049205388873815536, + -3.1406152768659384e-33, + 0.014775881543755531, + 0.033093251287937164, + 0.018356993794441223, + 0.07993367314338684, + 0.0228144321590662, + 0.023675207048654556, + -0.036735404282808304, + 0.0657939538359642, + -0.003033948363736272, + 0.006739064119756222, + 0.0527985543012619, + -0.026654159650206566, + 0.01487361453473568, + -0.043338146060705185, + 0.043479032814502716, + -0.012967104092240334, + 0.002388096647337079, + -0.05539688467979431, + -0.09285830706357956, + 0.04708101972937584, + -0.02171311154961586, + 0.09681735932826996, + -0.02349827252328396, + 0.02160281129181385, + -0.03859621658921242, + -0.03404197841882706, + 0.026921767741441727, + -0.021860552951693535, + -0.06468536704778671, + 0.041233763098716736, + 0.01688646711409092, + 0.01336399931460619, + -0.06732451170682907, + 0.014217287302017212, + -0.06842213124036789, + -0.01756400242447853, + -0.05803562328219414, + -0.006723675411194563, + -0.02920149266719818, + 0.05143815651535988, + -0.08881845325231552, + 0.05892244353890419, + 0.02758488431572914, + 0.01749943196773529, + -0.017799079418182373, + 0.12388728559017181, + 0.021520892158150673, + 0.02181747928261757, + -0.03273986279964447, + -0.04320250824093819, + -0.05806340277194977, + 0.08302325010299683, + 0.0355818010866642, + 0.004972581285983324, + -0.037202779203653336, + -0.09520138800144196, + 0.011387595906853676, + 0.045970767736434937, + -0.0206739604473114, + -0.030393458902835846, + 0.07152680307626724, + 0.007198427803814411, + 0.08937202394008636, + -0.034161441028118134, + -0.07524778693914413, + -0.005814198404550552, + -0.003764101769775152, + -0.0029367750976234674, + 0.15351851284503937, + 0.025459781289100647, + 0.03913417458534241, + 0.08430104702711105, + 0.04001631215214729, + 0.06645910441875458, + -0.03617369383573532, + 0.02531193196773529, + 0.00038343292544595897, + -0.04833747074007988, + 0.0347859263420105, + -0.14239470660686493, + -0.0675966814160347, + 0.055385325103998184, + -0.023691263049840927, + 0.08094704151153564, + 0.00735878711566329, + -0.04631100967526436, + -0.04116251692175865, + -0.046234868466854095, + -0.041824739426374435, + 0.06663933396339417, + -0.06913811713457108, + -0.015433836728334427, + -0.022248463705182076, + -0.06383837759494781, + -0.08500216156244278, + -8.550799373850715e-34, + 0.09373805671930313, + -0.004684739746153355, + -0.07114121317863464, + -0.041511863470077515, + 0.008641128428280354, + -0.023786626756191254, + -0.038297139108181, + -0.007338032126426697, + -0.05676907300949097, + 0.04984833300113678, + -0.009066351689398289, + -0.001175287296064198, + 0.03870093822479248, + -0.056300222873687744, + 0.07812776416540146, + 0.016855759546160698, + 0.02051718905568123, + 0.013660880737006664, + -0.02209431305527687, + 0.020801328122615814, + 0.023274173960089684, + -0.006443328689783812, + 0.026801984757184982, + 0.016481056809425354, + -0.010544270277023315, + 0.007237726356834173, + 0.05472977086901665, + 0.0010604027193039656, + -0.09878905862569809, + 0.0011763735674321651, + -0.05748385563492775, + -0.04033442214131355, + -0.028189558535814285, + 0.0640149861574173, + -0.044917814433574677, + 0.05942097678780556, + -0.07177570462226868, + -0.05499296262860298, + -0.03327194228768349, + 0.013631854206323624, + 0.054632145911455154, + -0.0397505946457386, + 0.03836726397275925, + 0.06211763620376587, + 0.04106501489877701, + -0.09600906074047089, + -0.1087290495634079, + -0.021732794120907784, + 0.026816193014383316, + 0.025754166767001152, + 0.009309506043791771, + 0.03102532960474491, + 0.03270281106233597, + 0.004950617905706167, + -0.0168206337839365, + -0.014430578798055649, + -0.05950181186199188, + -0.05240509286522865, + -0.0044552963227033615, + 0.10093286633491516, + -0.010585591197013855, + 0.09794554859399796, + -0.07310298085212708, + 0.03655983507633209, + 0.017970457673072815, + 0.011476709507405758, + -0.07450870424509048, + -0.014662366360425949, + 0.02260967716574669, + 0.004812001716345549, + 0.048850879073143005, + -0.04537416622042656, + -0.0015422996366396546, + 0.10179762542247772, + 0.02002270705997944, + -0.0012593603460118175, + 0.13456884026527405, + 0.04702547565102577, + 0.025497501716017723, + 0.049933452159166336, + -0.03817533329129219, + -0.037189386785030365, + 0.07014000415802002, + -0.018435508012771606, + -0.015268711373209953, + 0.03753741458058357, + -0.03909822180867195, + 0.0064128078520298, + -0.08466583490371704, + -0.018440652638673782, + 0.00521582318469882, + 0.07173760235309601, + -0.031188489869236946, + -0.02351568639278412, + 0.004865842871367931, + -1.6236679556413947e-08, + -0.030220963060855865, + -0.0391155481338501, + -0.014245920814573765, + -0.020432965829968452, + -0.050661392509937286, + -0.12080253660678864, + -0.0013362731551751494, + -0.07996620982885361, + -0.08235824108123779, + -0.016279425472021103, + -0.011076035909354687, + -0.03787172585725784, + 0.015850279480218887, + 0.01474692765623331, + 0.04249243438243866, + 0.08319292217493057, + -0.05714693292975426, + 0.07526682317256927, + -0.07850134372711182, + 0.005392124410718679, + 0.007923634722828865, + -0.034106139093637466, + 0.03591219708323479, + -0.02739919163286686, + 0.03247309476137161, + -0.01724350079894066, + -0.05480646714568138, + -0.024227386340498924, + 0.051494475454092026, + 0.12080556154251099, + 0.06939911842346191, + 0.04302007704973221, + -0.020740140229463577, + -0.0007015646551735699, + -0.06769946962594986, + 0.0413423590362072, + -0.03424801677465439, + -0.050829559564590454, + 0.04879598692059517, + 0.10458353906869888, + -0.09709370881319046, + -0.10303497314453125, + -0.002151662018150091, + -0.0067365532740950584, + 0.04896127060055733, + 0.014664135873317719, + 0.04494141414761543, + -0.00893697701394558, + -0.013071305118501186, + -0.04609178379178047, + -0.0002525906020309776, + -0.06140424311161041, + 0.03143003210425377, + 0.06277673691511154, + -0.05301201716065407, + -0.04831502214074135, + 0.05960172414779663, + 0.07007556408643723, + -0.02006741613149643, + 0.04025670886039734, + 0.12013153731822968, + 0.0403478629887104, + 0.004432312678545713, + 0.018282292410731316 + ], + "arrow-arc-left-bold||directional,pointer,pointing,arrowhead": [ + 0.06227913126349449, + -0.06943570822477341, + -0.04062240198254585, + 0.045349426567554474, + 0.011075328104197979, + -0.039464209228754044, + 0.07325910776853561, + -0.003022279590368271, + 0.0064569562673568726, + -0.01546153612434864, + 0.028471726924180984, + 0.0628320649266243, + 0.022076105698943138, + 0.0215817391872406, + -0.020405955612659454, + 0.032799385488033295, + -0.053194835782051086, + 0.0074254777282476425, + 0.05140572786331177, + 0.03530389443039894, + -0.015973053872585297, + 0.03840654343366623, + -0.04405863583087921, + 0.04436066001653671, + -0.027988895773887634, + 0.03541474789381027, + 0.0999358519911766, + -0.04577358812093735, + -0.05945076420903206, + -0.07130811363458633, + -0.058456409722566605, + -0.05824531614780426, + -0.04431983083486557, + 0.034916140139102936, + -0.09187644720077515, + -0.05323736369609833, + -0.0021186007652431726, + 0.014839665032923222, + -0.0023998571559786797, + 0.050137314945459366, + 0.03275459632277489, + 0.0010935950558632612, + 0.03082546591758728, + -0.033997904509305954, + 0.028921926394104958, + 0.07246500998735428, + -0.07494354993104935, + -0.025639668107032776, + 0.06799805909395218, + 0.09408145397901535, + -0.06461635231971741, + -0.0684695914387703, + -0.06727574020624161, + -0.0061189476400613785, + 0.03706391155719757, + 0.0952625572681427, + -0.03143519535660744, + -0.007569740526378155, + 0.08748526126146317, + 0.022609718143939972, + 0.06791737675666809, + -0.02886509895324707, + 0.035079747438430786, + 0.0004295648541301489, + 0.00335460202768445, + -0.030545366927981377, + 0.013682984746992588, + 0.030303096398711205, + 0.006836181040853262, + 0.012279108166694641, + 0.020716512575745583, + -0.01647808402776718, + -0.05025685951113701, + -0.050875209271907806, + 0.007987289689481258, + 0.012656758539378643, + 0.0573890395462513, + 0.0867856964468956, + -0.012676323764026165, + -0.045723505318164825, + -0.06898404657840729, + 0.022099332883954048, + -0.02256840653717518, + 0.05338036268949509, + 0.06421300023794174, + 0.1257777363061905, + -0.07719118893146515, + -0.06800609827041626, + -0.010444870218634605, + 0.005080136004835367, + -0.01648813858628273, + 0.004598306491971016, + -0.03437887504696846, + -0.024444477632641792, + 0.059757500886917114, + -0.03063800558447838, + 0.06632296741008759, + -0.0627046450972557, + -0.13774080574512482, + 0.08080662041902542, + 0.028194095939397812, + 0.008143211714923382, + 0.021809451282024384, + -0.060850709676742554, + -0.009881231002509594, + 0.044662922620773315, + -0.028534457087516785, + -0.03699459508061409, + -0.06537452340126038, + -0.004872709047049284, + -0.017984071746468544, + -0.14836359024047852, + -0.02414349466562271, + -0.056663479655981064, + 0.017103351652622223, + -0.019947966560721397, + -0.1268051266670227, + -0.019221927970647812, + 0.10054601728916168, + -0.0028143152594566345, + 0.014680987223982811, + -0.06250756978988647, + -0.04524684324860573, + 0.004624593537300825, + -0.05206213518977165, + 0.019110962748527527, + 0.0034203645773231983, + -3.6233882353547595e-33, + 0.0024439035914838314, + 0.05446753278374672, + -0.014035233296453953, + -0.022219091653823853, + -0.037292029708623886, + -0.018971217796206474, + -0.027327299118041992, + 0.007665673736482859, + -0.07047765702009201, + 0.0019686007872223854, + 0.1255451887845993, + -0.016293928027153015, + -0.05020947381854057, + 0.05830111727118492, + 0.019512560218572617, + -0.09987322986125946, + 0.04397238418459892, + 0.05153243616223335, + -0.1353009045124054, + 0.01794516295194626, + -0.028687527403235435, + 0.08220775425434113, + -0.12071402370929718, + -0.08429946005344391, + -0.08320069313049316, + 0.0015972362598404288, + -0.009942198172211647, + -0.022886674851179123, + -0.07811257988214493, + 0.03048604540526867, + 0.001934764557518065, + 0.03179439529776573, + 0.03615672513842583, + -0.07372268289327621, + -0.010665668174624443, + -0.014640671201050282, + -0.09203798323869705, + -0.0458780936896801, + -0.02534027397632599, + -0.0012078656582161784, + -0.017255298793315887, + 0.011652030050754547, + -0.046290844678878784, + 0.025384826585650444, + -0.02372102253139019, + 0.16056078672409058, + -0.05174585059285164, + -0.06440920382738113, + -0.00023749364481773227, + -0.01223082933574915, + -0.01625644601881504, + 0.012476895935833454, + 0.014495011419057846, + -0.00596099067479372, + 0.04411282390356064, + -0.012153160758316517, + -0.10113947838544846, + 0.10959187150001526, + -0.005030122585594654, + -0.01521958690136671, + -0.0037064480129629374, + 0.01779070310294628, + -0.0016857984010130167, + 0.005695216357707977, + -0.11110793799161911, + 0.01839256100356579, + -0.10669337213039398, + 0.019963348284363747, + 0.12700888514518738, + -0.028055371716618538, + 0.011840554885566235, + 0.022897616028785706, + 0.053346190601587296, + 0.01770145632326603, + -0.04230666160583496, + -0.001419775770045817, + -0.03071543388068676, + -0.019043585285544395, + 0.08965844660997391, + -0.09761779755353928, + -0.10511718690395355, + 0.04677094891667366, + -0.053953323513269424, + -0.002248852513730526, + 0.056183844804763794, + -0.03897974640130997, + -0.0057206288911402225, + -0.023525120690464973, + -0.0342964269220829, + 0.0884329304099083, + -0.031265053898096085, + 0.01316362526267767, + -0.04061958193778992, + 0.045477695763111115, + -0.05369742587208748, + 7.741421003786684e-34, + -0.012455573305487633, + 0.02275238372385502, + -0.07502032071352005, + -0.009348810650408268, + -0.12596414983272552, + 0.04691018536686897, + 0.05491379648447037, + -0.046685945242643356, + -0.019395463168621063, + 0.05707022175192833, + 0.014032132923603058, + 0.026792729273438454, + -0.06971731781959534, + -0.020002439618110657, + 0.07080627232789993, + -0.03981348127126694, + 0.07369382679462433, + 0.03937125205993652, + 0.004607077222317457, + -0.020231319591403008, + -0.008244631811976433, + -0.040135107934474945, + -0.00509227579459548, + 0.03799593076109886, + 0.022331712767481804, + 0.049306273460388184, + 0.03822944313287735, + 0.02497026138007641, + -0.04058291018009186, + -0.05171119421720505, + 0.00986167136579752, + 0.035420630127191544, + 0.06645603477954865, + 0.0359942764043808, + -0.05855278670787811, + -0.045429784804582596, + -0.03267781808972359, + -0.0856737494468689, + 0.08146468549966812, + -0.00823241751641035, + 0.05800481140613556, + 0.029652893543243408, + 0.0951814278960228, + 0.013586471788585186, + 0.013033994473516941, + 0.097166508436203, + 0.05610927939414978, + 0.03003132902085781, + 0.03201492875814438, + 0.02241077460348606, + -0.00503196194767952, + -0.02449413388967514, + 0.017945606261491776, + -0.046429987996816635, + -0.07060231268405914, + -0.0360453762114048, + 0.06169308349490166, + 0.0369085930287838, + 0.020742300897836685, + 0.012052861973643303, + -0.024912675842642784, + -0.035859525203704834, + 0.0478006973862648, + 0.033571694046258926, + -0.00526762381196022, + -0.024360936135053635, + 0.08466186374425888, + -0.07764542102813721, + 0.0278285201638937, + -0.026611831039190292, + 0.062027156352996826, + 0.08140461146831512, + 0.037250228226184845, + -0.015619047917425632, + 0.03031095862388611, + -0.07153759896755219, + 0.062245357781648636, + -0.015591916628181934, + -0.03572477772831917, + -0.020294398069381714, + -0.08350857347249985, + -0.008521679788827896, + -0.010039337910711765, + 0.019539915025234222, + 0.015301816165447235, + -0.004613326396793127, + -0.04548703134059906, + -0.006903181783854961, + 0.014097052626311779, + 0.02743855118751526, + -0.02713906019926071, + -0.016861291602253914, + 0.0020822123624384403, + -0.08152724802494049, + -0.023232629522681236, + -2.110337327110301e-08, + -0.04646750167012215, + -0.0042933514341712, + 0.003232539864256978, + -0.004159574396908283, + -0.02240261808037758, + -0.003588150953873992, + -0.0019368549110367894, + 0.014572711661458015, + -0.03752931207418442, + -0.05753626674413681, + 0.034044984728097916, + 0.06965551525354385, + -0.06524199992418289, + -0.02513086050748825, + 0.11803896725177765, + 0.057280104607343674, + -0.04132532328367233, + -0.0027072832453995943, + -0.02783014439046383, + -0.03446921333670616, + -0.00597259821370244, + 0.009018982760608196, + 0.045477110892534256, + 0.03676434978842735, + -0.029295291751623154, + 0.014288336038589478, + 0.011408250778913498, + 0.13004982471466064, + 0.08028838038444519, + 0.018626457080245018, + 0.03555553779006004, + 0.003700325032696128, + -0.029783017933368683, + -0.00605217507109046, + -0.03520546108484268, + -0.043452925980091095, + -0.05460025370121002, + 0.04494532197713852, + 0.03723646327853203, + 0.08535505086183548, + -0.06489399075508118, + 0.06011226773262024, + -0.016519026830792427, + -0.008615369908511639, + -0.0161843653768301, + 0.06728995591402054, + 0.04401254653930664, + -0.005172161851078272, + -0.08764901012182236, + -0.11868389695882797, + -0.043567854911088943, + 0.061048466712236404, + 0.009344239719212055, + 0.09506527334451675, + -0.0054972050711512566, + 0.03695205971598625, + 0.04053715616464615, + -0.023523783311247826, + -0.08864868432283401, + 0.022319911047816277, + 0.10335712879896164, + 0.08074703067541122, + 0.02008242905139923, + 0.05284601449966431 + ], + "arrow-arc-right-bold||directional,pointer,pointing,arrowhead": [ + 0.06013054400682449, + -0.07418270409107208, + -0.05145767331123352, + 0.046092480421066284, + 0.004275694489479065, + -0.02541760541498661, + 0.07029008865356445, + 0.0010405676439404488, + 0.003091932274401188, + -0.015897125005722046, + 0.04016099125146866, + 0.06681554764509201, + 0.023498166352510452, + 0.0193948894739151, + -0.014422165229916573, + 0.029883041977882385, + -0.05456603690981865, + 0.005126868840306997, + 0.05258218199014664, + 0.027090413495898247, + -0.0005442320834845304, + 0.03951640799641609, + -0.04625757783651352, + 0.04341069236397743, + -0.027627872303128242, + 0.03745273873209953, + 0.09703394770622253, + -0.051462896168231964, + -0.06252314150333405, + -0.06925535947084427, + -0.06219536438584328, + -0.060251571238040924, + -0.044562771916389465, + 0.03212769329547882, + -0.08962114155292511, + -0.0451020672917366, + -0.01077775377780199, + 0.016862498596310616, + -0.005181180778890848, + 0.03999876603484154, + 0.022111516445875168, + -0.008526270277798176, + 0.02948412485420704, + -0.040233924984931946, + 0.02250887267291546, + 0.07170043885707855, + -0.06776905804872513, + -0.02723437175154686, + 0.06650695949792862, + 0.09642916917800903, + -0.06492162495851517, + -0.06222333014011383, + -0.07012496143579483, + -0.0081793162971735, + 0.04747288301587105, + 0.1073746606707573, + -0.03316782787442207, + -0.0037049632519483566, + 0.09105278551578522, + 0.02388571761548519, + 0.05836006999015808, + -0.034448765218257904, + 0.0344318188726902, + 0.004423090722411871, + 0.001890726969577372, + -0.02335098199546337, + 0.01075282134115696, + 0.030013497918844223, + 0.004015839193016291, + 0.017334334552288055, + 0.02165970765054226, + -0.014655821025371552, + -0.04596148431301117, + -0.04461102560162544, + 0.007099194917827845, + 0.012309643439948559, + 0.05598809942603111, + 0.08770011365413666, + -0.019214309751987457, + -0.041933368891477585, + -0.07100583612918854, + 0.021578237414360046, + -0.02567126601934433, + 0.0621812678873539, + 0.06565391272306442, + 0.12832394242286682, + -0.07299492508172989, + -0.06056806072592735, + -0.0014916200889274478, + 0.011151020415127277, + -0.010173057205975056, + -0.005447433330118656, + -0.03304619714617729, + -0.017555348575115204, + 0.05641908943653107, + -0.02725672721862793, + 0.06163213402032852, + -0.06511261314153671, + -0.1385176181793213, + 0.070942223072052, + 0.030229026451706886, + 0.00042420285171829164, + 0.021418215706944466, + -0.06146703287959099, + -0.007267048116773367, + 0.040743906050920486, + -0.02458488941192627, + -0.03623127564787865, + -0.05969815328717232, + 0.0045916237868368626, + -0.014873869717121124, + -0.15075276792049408, + -0.027805741876363754, + -0.05193769931793213, + 0.02021164633333683, + -0.014743325300514698, + -0.1239282637834549, + -0.024853210896253586, + 0.09417378157377243, + 0.000366822729120031, + 0.015616641379892826, + -0.049025509506464005, + -0.04899328574538231, + 0.0037022442556917667, + -0.05152023956179619, + 0.01435056421905756, + 0.002992138732224703, + -3.613539429404792e-33, + -0.008497864007949829, + 0.05104827135801315, + -0.008386109955608845, + -0.024154644459486008, + -0.0356319397687912, + -0.026645394042134285, + -0.032054029405117035, + 0.008917633444070816, + -0.06915222108364105, + 0.012118587270379066, + 0.12407692521810532, + -0.02110007219016552, + -0.04653030261397362, + 0.06473402678966522, + 0.018508970737457275, + -0.10009732097387314, + 0.045358214527368546, + 0.05527880787849426, + -0.1330825686454773, + 0.021388256922364235, + -0.03738510608673096, + 0.08093879371881485, + -0.11775557696819305, + -0.08944433182477951, + -0.08660201728343964, + -0.00017330861010123044, + -0.009076898917555809, + -0.02172520011663437, + -0.0747942179441452, + 0.02854928933084011, + -0.004408815409988165, + 0.021779492497444153, + 0.041517917066812515, + -0.06898579746484756, + -0.009226660244166851, + -0.02353476732969284, + -0.09073560684919357, + -0.04113653674721718, + -0.028358159586787224, + -0.002007211558520794, + -0.014268050901591778, + 0.017128463834524155, + -0.05203146114945412, + 0.026908276602625847, + -0.013985654339194298, + 0.15308117866516113, + -0.05155060812830925, + -0.05627453699707985, + 0.0007329114596359432, + -0.009687637910246849, + -0.011307873763144016, + 0.020019304007291794, + 0.01382011454552412, + 0.008652222342789173, + 0.043592654168605804, + -0.009267069399356842, + -0.10267357528209686, + 0.12251875549554825, + -0.010139448568224907, + -0.016808487474918365, + -0.007253212388604879, + 0.018823806196451187, + 0.006309314165264368, + 0.0001251985813723877, + -0.11315090209245682, + 0.02154599130153656, + -0.1061895415186882, + 0.01722482405602932, + 0.12677328288555145, + -0.027236290276050568, + 0.010821030475199223, + 0.030465543270111084, + 0.04655606299638748, + 0.018420761451125145, + -0.04571520909667015, + -0.0017774640582501888, + -0.039132677018642426, + -0.015082924626767635, + 0.09524079412221909, + -0.08967073261737823, + -0.11471713334321976, + 0.042366016656160355, + -0.061240267008543015, + -0.002744306344538927, + 0.050481781363487244, + -0.048992857336997986, + -0.010514435358345509, + -0.02272859215736389, + -0.030024409294128418, + 0.08078877627849579, + -0.02720494195818901, + 0.019072383642196655, + -0.04306904226541519, + 0.044513359665870667, + -0.05098766088485718, + 6.706645265372324e-34, + -0.005389142315834761, + 0.021815409883856773, + -0.06507893651723862, + -0.0052459705621004105, + -0.1288079470396042, + 0.05356137827038765, + 0.05418235808610916, + -0.05083596333861351, + -0.02452194318175316, + 0.06153225898742676, + 0.013714442029595375, + 0.026499152183532715, + -0.0738472193479538, + -0.022002754732966423, + 0.07561247050762177, + -0.041420064866542816, + 0.07191518694162369, + 0.04115387424826622, + 0.013329035602509975, + -0.01829487644135952, + -0.011538833379745483, + -0.0443301759660244, + -0.00767119275406003, + 0.03970630094408989, + 0.024514557793736458, + 0.05040174350142479, + 0.03660387545824051, + 0.02536575123667717, + -0.03336954489350319, + -0.04811681807041168, + 0.010903006419539452, + 0.031052112579345703, + 0.05314837396144867, + 0.040305089205503464, + -0.055791016668081284, + -0.04909466579556465, + -0.0329793281853199, + -0.08203446120023727, + 0.08236047625541687, + -0.00926193967461586, + 0.06389294564723969, + 0.029973195865750313, + 0.09777168184518814, + 0.01689332164824009, + 0.005935861729085445, + 0.10255996137857437, + 0.05963391065597534, + 0.031214311718940735, + 0.028047500178217888, + 0.016160763800144196, + -0.01044700387865305, + -0.028439491987228394, + 0.02052651345729828, + -0.047844935208559036, + -0.0669466033577919, + -0.032045796513557434, + 0.06627946346998215, + 0.02914421632885933, + 0.012692388147115707, + 0.014083546586334705, + -0.018329938873648643, + -0.0420181043446064, + 0.04285560920834541, + 0.03357558324933052, + -0.007505773566663265, + -0.021574700251221657, + 0.08319167792797089, + -0.08022996783256531, + 0.02150627039372921, + -0.029156675562262535, + 0.05662807449698448, + 0.06970638781785965, + 0.036728400737047195, + -0.015371336601674557, + 0.02186650224030018, + -0.08293161541223526, + 0.0634731724858284, + -0.01765214093029499, + -0.030918674543499947, + -0.027709314599633217, + -0.07271607965230942, + 0.0026865839026868343, + -0.018301742151379585, + 0.020306924358010292, + 0.012907738797366619, + -0.0010311031946912408, + -0.04622739925980568, + -0.005659912247210741, + 0.018150195479393005, + 0.024045376107096672, + -0.031233102083206177, + -0.007608502637594938, + -0.0019480637274682522, + -0.08012431859970093, + -0.028608888387680054, + -2.137429078175046e-08, + -0.05582420527935028, + -0.00020530930487439036, + 0.006957692559808493, + -0.004994388669729233, + -0.01909904181957245, + -0.009353294037282467, + -0.007479947991669178, + 0.01752246730029583, + -0.03826666995882988, + -0.05873437225818634, + 0.02642914280295372, + 0.06266690045595169, + -0.06796416640281677, + -0.020833231508731842, + 0.12945953011512756, + 0.05376662313938141, + -0.04008905962109566, + -0.006618910003453493, + -0.024520304054021835, + -0.03905978798866272, + -0.011101791635155678, + 0.003798365592956543, + 0.04459098353981972, + 0.0346551313996315, + -0.027578935027122498, + 0.015382323414087296, + 0.009965418837964535, + 0.1273505538702011, + 0.07434634119272232, + 0.019951149821281433, + 0.03155095875263214, + -0.000578138162381947, + -0.03072340227663517, + -0.004492896609008312, + -0.024596048519015312, + -0.040795255452394485, + -0.05154453217983246, + 0.04075128212571144, + 0.05058911070227623, + 0.07962285727262497, + -0.06566319614648819, + 0.060641102492809296, + -0.016378486528992653, + -0.009361258707940578, + -0.013258114457130432, + 0.06742791831493378, + 0.053480517119169235, + -0.009921550750732422, + -0.09017173200845718, + -0.12594561278820038, + -0.05293824151158333, + 0.06946468353271484, + 0.011115789413452148, + 0.0930243730545044, + -0.006066585425287485, + 0.04561116173863411, + 0.03980404511094093, + -0.031241657212376595, + -0.08225962519645691, + 0.020165598019957542, + 0.10751235485076904, + 0.0861445814371109, + 0.016086578369140625, + 0.051322270184755325 + ], + "arrow-bend-double-up-left-bold||directional,pointer,pointing,arrowhead,reply-all": [ + 0.004504880402237177, + -0.05414367467164993, + -0.018148845061659813, + 0.01886524260044098, + -0.0329691506922245, + -0.04203038290143013, + 0.022024601697921753, + 0.061860375106334686, + 0.002251476515084505, + 0.0062203542329370975, + 0.007272709626704454, + 0.0788370817899704, + -0.023529330268502235, + 0.014256090857088566, + -0.030093906447291374, + 0.07084745913743973, + -0.0939297154545784, + 0.02687734365463257, + 0.03680872172117233, + 0.02352682501077652, + 0.03229352831840515, + -0.016523342579603195, + -0.03575694561004639, + 0.02945062145590782, + -0.01500951498746872, + 0.048185355961322784, + 0.054884884506464005, + 0.02229893021285534, + -0.035071153193712234, + -0.08518745750188828, + -0.05823184922337532, + -0.00026131290360353887, + -0.04424980282783508, + 0.06759128719568253, + -0.10973398387432098, + 0.0001957563654286787, + 0.057784974575042725, + 0.01597723923623562, + -0.03510485216975212, + 0.030936844646930695, + -0.0024388092570006847, + 0.0034364701714366674, + -0.008699567057192326, + -0.020479537546634674, + 0.07390903681516647, + 0.05878731235861778, + -0.07476947456598282, + 0.011589190922677517, + 0.028776133432984352, + 0.08316006511449814, + -0.02289818972349167, + -0.06336119025945663, + -0.05900637432932854, + 0.03863675892353058, + 0.06639374047517776, + 0.08714917302131653, + -0.07532241940498352, + 0.0018142035696655512, + 0.07178997993469238, + 0.033824943006038666, + 0.05359364300966263, + -0.03853705897927284, + 0.007568676024675369, + 0.04476642981171608, + 0.018414510414004326, + -0.03856419026851654, + -0.023355502635240555, + 0.025954846292734146, + -0.03560344874858856, + 0.028237730264663696, + 0.011135177686810493, + -0.05022304132580757, + -0.03752171993255615, + -0.060141440480947495, + 0.034299176186323166, + -0.06358151882886887, + 0.0456051304936409, + 0.019392486661672592, + 0.034403447061777115, + 0.0033789630979299545, + -0.09072839468717575, + -0.015093084424734116, + -0.03927995264530182, + 0.06038462370634079, + 0.05242486298084259, + 0.0635325163602829, + -0.06899240612983704, + -0.03923993930220604, + 0.00856715813279152, + 0.03609256446361542, + -0.011203551664948463, + -0.0299181267619133, + -0.012884889729321003, + -0.016697749495506287, + 0.011603807099163532, + 0.005620036274194717, + 0.0701766312122345, + -0.11489670723676682, + -0.11039377003908157, + 0.08439044654369354, + 0.009595075622200966, + -0.002307559596374631, + 0.056915391236543655, + -0.07586900144815445, + -0.004145875573158264, + -0.018290191888809204, + -0.030256371945142746, + -0.056228358298540115, + -0.014524615369737148, + -0.04811618849635124, + -0.0559375025331974, + -0.11787271499633789, + 0.005516020581126213, + -0.05806092172861099, + -0.013643316924571991, + -0.04631609469652176, + -0.13018788397312164, + -0.010292716324329376, + 0.07061122357845306, + -0.0482381135225296, + 0.007941427640616894, + -0.047341488301754, + -0.05671501159667969, + -0.000210481186513789, + -0.05424335226416588, + 0.0032572809141129255, + -0.05739149451255798, + -3.564590007926629e-33, + 0.04568098112940788, + 0.06425365060567856, + 0.01208858098834753, + 0.005430620163679123, + -0.022273078560829163, + -0.0010093704331666231, + -0.04011526331305504, + -0.027555325999855995, + -0.12416382879018784, + 0.00539295794442296, + 0.14991609752178192, + -0.024894515052437782, + -0.026640456169843674, + 0.08147619664669037, + 0.007226908579468727, + -0.078471839427948, + 0.05815079063177109, + 0.07820572704076767, + -0.09788242727518082, + 0.005693885497748852, + -0.04814090207219124, + 0.08863236755132675, + -0.06062377616763115, + -0.011028939858078957, + 0.005249743815511465, + -0.014239230193197727, + 0.011937862262129784, + -0.008718823082745075, + -0.08595088869333267, + 0.021012132987380028, + 0.024203861132264137, + 0.03258337825536728, + -0.022742856293916702, + -0.06422877311706543, + -0.001211745198816061, + -0.032403334975242615, + -0.07575097680091858, + -0.04805542528629303, + -0.03770540654659271, + 0.0012213829904794693, + -0.053871508687734604, + -0.030774608254432678, + -0.04195906221866608, + -0.025114532560110092, + 0.004049382638186216, + 0.09530112892389297, + -0.09014815092086792, + -0.0683637410402298, + 0.0320928618311882, + -0.03341095894575119, + -0.000143849931191653, + 0.008353598415851593, + 0.010507065802812576, + 0.012525414116680622, + 0.04387495666742325, + -0.0013292020885273814, + -0.07649722695350647, + 0.12445984780788422, + -0.02743939496576786, + 0.06762658059597015, + 0.023579392582178116, + 0.03203665465116501, + -0.011701023206114769, + -0.0411808118224144, + -0.05567402020096779, + -0.0197149645537138, + -0.11462541669607162, + 0.03611268848180771, + 0.1288137137889862, + 0.03189431503415108, + -0.0242025014013052, + 0.041786082088947296, + 0.06113903596997261, + 0.061429090797901154, + -0.059888169169425964, + -0.006971900817006826, + 0.004325822461396456, + -0.023042896762490273, + 0.10828591883182526, + -0.04321427270770073, + -0.14340840280056, + 0.0339566171169281, + -0.02819526381790638, + -0.005354361142963171, + 0.04593535140156746, + -0.05359296128153801, + 0.012028822675347328, + -0.10394009947776794, + -0.022969214245676994, + 0.07328557968139648, + -0.07191465049982071, + 0.02578284591436386, + -0.0383184440433979, + -0.003204135689884424, + -0.06293320655822754, + 1.2714438935371644e-33, + -0.012649538926780224, + 0.07494529336690903, + -0.1164320781826973, + 0.02467888779938221, + -0.11608797311782837, + 0.03633487597107887, + 0.05081045627593994, + -0.016970369964838028, + 0.05239880457520485, + 0.011778985150158405, + 0.01536677498370409, + 0.04022624343633652, + -0.012659347616136074, + -0.0032334874849766493, + 0.07918687909841537, + -0.006500019691884518, + 0.05574534088373184, + 0.04917621240019798, + -0.002715225564315915, + -0.043655239045619965, + -0.003288139821961522, + -0.03375590965151787, + 0.003732931101694703, + 0.0001453561708331108, + 0.02543017826974392, + 0.007798999082297087, + 0.06189742684364319, + 0.0047997524961829185, + 0.0034964822698384523, + -0.02181949093937874, + 0.021220093593001366, + 0.013886875472962856, + 0.03574780002236366, + 0.06428402662277222, + -0.03257134556770325, + -0.023267878219485283, + -0.015220802277326584, + -0.08609014749526978, + 0.09616225957870483, + -0.008613997139036655, + 0.0803050547838211, + 0.03839699178934097, + 0.06140202656388283, + 0.055102378129959106, + 0.025299232453107834, + 0.016976315528154373, + 0.0020864331163465977, + 0.01940823346376419, + -0.024642514064908028, + 0.0015739630907773972, + 0.003694054437801242, + -0.026521848514676094, + 0.006662600673735142, + -0.0024234154261648655, + -0.08056492358446121, + -0.07428226619958878, + 0.10969395935535431, + 0.02455296739935875, + 0.04999484121799469, + 0.008750529028475285, + -0.024503886699676514, + -0.03518896549940109, + 0.024509165436029434, + 0.027082841843366623, + 0.004975087940692902, + -0.028224708512425423, + 0.05210142582654953, + -0.07787957787513733, + 0.01796158216893673, + -0.022103842347860336, + 0.09052969515323639, + 0.09760085493326187, + 0.0278405100107193, + -0.032984405755996704, + 0.09772814065217972, + -0.026457643136382103, + 0.02260551229119301, + -0.012573170475661755, + -0.051328592002391815, + -0.01981552690267563, + -0.06782706081867218, + 0.0045881085097789764, + 0.009552493691444397, + 0.058687347918748856, + -0.008320996537804604, + -0.016708778217434883, + -0.02333301492035389, + 0.0590721033513546, + 0.03715861588716507, + 0.03204139694571495, + 0.01667729951441288, + 0.005578805226832628, + -0.00474665267392993, + 0.029637938365340233, + -0.045813459903001785, + -2.4619488669941347e-08, + -0.10014975070953369, + -0.05597187578678131, + 0.000940116064157337, + 0.02290225960314274, + 0.047208383679389954, + 0.03566548600792885, + 0.02572244592010975, + 0.0011019592639058828, + -0.03648744523525238, + -0.10808377712965012, + 0.009841595776379108, + 0.09360289573669434, + -0.06539202481508255, + -0.04736514016985893, + 0.143934428691864, + 0.028369741514325142, + -0.06583839654922485, + 0.02597394958138466, + -0.05502551794052124, + -0.020414011552929878, + -0.013219018466770649, + 0.018921662122011185, + -0.003374428255483508, + 0.08818555623292923, + -0.04971402883529663, + -0.02135978825390339, + -0.02042088657617569, + 0.11800891906023026, + 0.012426662258803844, + 0.022678645327687263, + 0.035147525370121, + 0.004014023579657078, + -0.009009015746414661, + -0.041224028915166855, + -0.019506782293319702, + -0.002259528264403343, + -0.05688090622425079, + 0.028251631185412407, + 0.03469691425561905, + 0.10900450497865677, + -0.016507385298609734, + 0.011437096633017063, + -0.01347594428807497, + 0.018909689038991928, + -0.007055542431771755, + 0.07369635254144669, + 0.030379517003893852, + -0.009979049675166607, + -0.07442911714315414, + -0.128761425614357, + -0.031156986951828003, + 0.04206659644842148, + 0.02401883527636528, + 0.058256130665540695, + -0.057602714747190475, + 0.08965197950601578, + 0.014946443028748035, + -0.02546456642448902, + -0.037439700216054916, + 0.015105774626135826, + 0.08341240882873535, + 0.1079607680439949, + 0.0327683761715889, + 0.038803718984127045 + ], + "arrow-bend-double-up-right-bold||directional,pointer,pointing,arrowhead": [ + 0.020377079024910927, + -0.035747211426496506, + -0.032958514988422394, + 0.006154906935989857, + -0.041873663663864136, + -0.021813346073031425, + 0.02090856060385704, + 0.06056880205869675, + -0.023910803720355034, + 0.0059127239510416985, + 0.016830621287226677, + 0.09461576491594315, + -0.0147318746894598, + 0.018734803423285484, + -0.01813000813126564, + 0.06639757752418518, + -0.11318464577198029, + 0.055865101516246796, + 0.03830217197537422, + 0.03757594898343086, + 0.03873012587428093, + -0.030792836099863052, + -0.042976588010787964, + 0.024068167433142662, + -0.02110462449491024, + 0.04997820407152176, + 0.07546456158161163, + 0.026526832953095436, + -0.025550518184900284, + -0.0614105649292469, + -0.058672331273555756, + -0.02353004366159439, + -0.07824371010065079, + 0.04365360736846924, + -0.09000865370035172, + -0.04041833430528641, + 0.04918413609266281, + 0.005936430301517248, + -0.031039830297231674, + 0.03429427742958069, + 0.03010150045156479, + -0.004308804403990507, + -0.00850495882332325, + -0.02249968610703945, + 0.05826069787144661, + 0.07024751603603363, + -0.06857584416866302, + 0.008407607674598694, + 0.03982971981167793, + 0.07595785707235336, + -0.0369994081556797, + -0.08400318026542664, + -0.04305298998951912, + 0.011204765178263187, + 0.07850150018930435, + 0.10303632915019989, + -0.07303464412689209, + -0.016107996925711632, + 0.08499810844659805, + 0.03153641149401665, + 0.05694223567843437, + -0.04088515415787697, + 0.02445574663579464, + 0.03295741230249405, + 0.028860051184892654, + -0.04048941656947136, + -0.01466441247612238, + 0.039485007524490356, + -0.009261494502425194, + 0.027738044038414955, + 0.01986326090991497, + -0.037893958389759064, + -0.035279128700494766, + -0.07477554678916931, + 0.02398747391998768, + -0.07608570903539658, + 0.0428428053855896, + 0.02532271482050419, + 0.03256206214427948, + -0.02114897221326828, + -0.081975057721138, + -0.0074227722361683846, + -0.057449374347925186, + 0.057473186403512955, + 0.040053363889455795, + 0.06488818675279617, + -0.08533945679664612, + -0.0629924014210701, + 0.006160500925034285, + 0.020187560468912125, + 0.0006474164547398686, + -0.008968856185674667, + -0.03339977189898491, + -0.02187022753059864, + 0.022509990260004997, + -0.01938607729971409, + 0.06552348285913467, + -0.08917630463838577, + -0.11682561039924622, + 0.07501211017370224, + 7.533951429650187e-05, + -0.006038103252649307, + 0.05146060138940811, + -0.0557725615799427, + 0.0013590350281447172, + -0.02661127783358097, + -0.022155163809657097, + -0.033005326986312866, + 0.0014908856246620417, + -0.03131437674164772, + -0.04218648374080658, + -0.1293540745973587, + -0.012090090662240982, + -0.04667980596423149, + -0.026181384921073914, + -0.022589730098843575, + -0.12361372262239456, + -0.005716036539524794, + 0.05851372703909874, + -0.042083702981472015, + 0.008237184025347233, + -0.039800919592380524, + -0.03596731275320053, + -0.017148232087492943, + -0.08011483401060104, + 0.005998200736939907, + -0.05983112007379532, + -3.7223174725779786e-33, + 0.04170737788081169, + 0.05662520229816437, + 0.0055657983757555485, + -0.0017704955535009503, + -0.017719987779855728, + -0.02623770758509636, + -0.04831816628575325, + -0.03459395095705986, + -0.12839733064174652, + 0.023540109395980835, + 0.14880171418190002, + -0.02211485616862774, + -0.05964889004826546, + 0.09014842659235, + 0.031921736896038055, + -0.11104883998632431, + 0.06170213222503662, + 0.081090047955513, + -0.09200423955917358, + 0.0239071324467659, + -0.0368427075445652, + 0.07925436645746231, + -0.05951616168022156, + -0.031287290155887604, + -0.016285058110952377, + -0.018303032964468002, + -0.018653851002454758, + 0.003195888828486204, + -0.061191849410533905, + 0.025533048436045647, + 0.019275931641459465, + 0.03179486468434334, + -0.01953798532485962, + -0.0819113552570343, + -0.010839913971722126, + -0.031300149857997894, + -0.07147863507270813, + -0.0514618381857872, + -0.04585481062531471, + -0.015336120501160622, + -0.03316432610154152, + -0.029476260766386986, + -0.028492050245404243, + -0.012515871785581112, + 0.012281565926969051, + 0.11591137945652008, + -0.08730562031269073, + -0.07020324468612671, + 0.03670230135321617, + -0.03452307730913162, + -0.009871963411569595, + 0.01116934698075056, + 0.01161788497120142, + 0.03372833505272865, + 0.04200882092118263, + 0.02903895266354084, + -0.07907121628522873, + 0.1202370747923851, + -0.013982314616441727, + 0.056129373610019684, + 0.00395695585757494, + 0.04233661666512489, + -0.002498913323506713, + -0.03362393006682396, + -0.06963664293289185, + -0.005703500472009182, + -0.09241489320993423, + 0.03359682857990265, + 0.1256929337978363, + 0.024962719529867172, + -0.04054935649037361, + 0.045835159718990326, + 0.043733883649110794, + 0.05931984260678291, + -0.052392084151506424, + 0.0013162674149498343, + 0.004213527776300907, + -0.03194895014166832, + 0.09340278804302216, + -0.04402266442775726, + -0.14220750331878662, + 0.032087814062833786, + -0.015508882701396942, + -0.016896318644285202, + 0.03211335092782974, + -0.055489834398031235, + -0.0013682222925126553, + -0.08925288915634155, + -0.015323353931307793, + 0.07248183339834213, + -0.05646400526165962, + 0.03586732968688011, + -0.03767832741141319, + -0.009918725118041039, + -0.06933709979057312, + 8.687448755423883e-34, + -0.01596221514046192, + 0.05892509967088699, + -0.07988736778497696, + 0.014237185940146446, + -0.10395293682813644, + 0.02140895649790764, + 0.0459466315805912, + -0.06301737576723099, + 0.032471913844347, + 0.019318418577313423, + 0.012649192474782467, + 0.033055152744054794, + -0.033458907157182693, + -0.018049880862236023, + 0.08586931973695755, + -0.015867292881011963, + 0.05119246989488602, + 0.06571926176548004, + 0.01294456236064434, + -0.03997142240405083, + 0.0028568515554070473, + -0.048275113105773926, + -0.0014349110424518585, + 0.005873973481357098, + 0.026751913130283356, + 0.022569948807358742, + 0.05686108022928238, + 0.003252187976613641, + -0.00584870669990778, + -0.0267020333558321, + 0.02480744756758213, + -0.013397141359746456, + 0.032334715127944946, + 0.07610213756561279, + -0.04212553799152374, + -0.033704135566949844, + -0.03204907849431038, + -0.08334462344646454, + 0.10553348809480667, + -0.014061976224184036, + 0.06555118411779404, + 0.059802278876304626, + 0.07471015304327011, + 0.05189303308725357, + 0.014987790957093239, + 0.046666234731674194, + 0.026283344253897667, + 0.03928305581212044, + -0.02826816961169243, + -0.0037795172538608313, + -0.0011228054063394666, + -0.0051911682821810246, + -0.009578675962984562, + -0.006155238952487707, + -0.07755973190069199, + -0.0656798928976059, + 0.11075419932603836, + 0.016531653702259064, + 0.03960178792476654, + 0.027354398742318153, + -0.012837541289627552, + -0.026784546673297882, + -0.011393314227461815, + 0.03422066941857338, + -0.011044814251363277, + -0.03423858433961868, + 0.058082617819309235, + -0.08587472140789032, + -0.0023398203775286674, + -0.005332596134394407, + 0.06688527762889862, + 0.11346349120140076, + 0.04139501601457596, + -0.03374165669083595, + 0.06382951885461807, + -0.0356285534799099, + 0.020114509388804436, + 0.0017036470817402005, + -0.015157418325543404, + -0.04301733151078224, + -0.06493131071329117, + -0.0034500795882195234, + 0.0005044302088208497, + 0.04191727191209793, + -0.01379198208451271, + 0.00648587616160512, + -0.024990776553750038, + 0.04258064553141594, + 0.033737462013959885, + 0.006200852338224649, + 0.0010505284881219268, + -0.0002361004735575989, + -0.02746189385652542, + 0.016769705340266228, + -0.06279280036687851, + -2.33698589369169e-08, + -0.0789540484547615, + -0.0454067587852478, + -2.2667154553346336e-06, + -0.004266939591616392, + 0.044067107141017914, + 0.01430083904415369, + 0.018970735371112823, + -0.004021077882498503, + -0.033922355622053146, + -0.10796540230512619, + 0.005105223972350359, + 0.08315267413854599, + -0.0693628191947937, + -0.03723476827144623, + 0.1335429698228836, + 0.025206850841641426, + -0.05496600270271301, + 0.049057889729738235, + -0.0495927520096302, + -0.01933608390390873, + -0.05118989199399948, + 0.015807364135980606, + 0.018993321806192398, + 0.08212143927812576, + -0.05157497525215149, + -0.008320039138197899, + -0.016506416723132133, + 0.12849725782871246, + 0.054411206394433975, + 0.03282848745584488, + 0.056365374475717545, + 0.013148928992450237, + -0.012660372070968151, + -0.019323622807860374, + -0.01324307918548584, + -0.018150437623262405, + -0.06775899231433868, + 0.02961096167564392, + 0.017342200502753258, + 0.12410547584295273, + -0.013189475983381271, + 0.021859902888536453, + 0.0077584306709468365, + 0.02107148990035057, + -0.009259406477212906, + 0.06234077364206314, + 0.04321017488837242, + 0.010520338080823421, + -0.08597289770841599, + -0.12127519398927689, + -0.042543306946754456, + 0.06877025961875916, + 0.018212879076600075, + 0.06997217983007431, + -0.043443288654088974, + 0.08871280401945114, + 0.0011586537584662437, + -0.010065136477351189, + -0.07498888671398163, + 0.020377114415168762, + 0.09276462346315384, + 0.08551931381225586, + 0.039318718016147614, + 0.05967780202627182 + ], + "arrow-bend-down-left-bold||directional,pointer,pointing,arrowhead": [ + 0.033994898200035095, + -0.02417415753006935, + -0.029903411865234375, + 0.0146044185385108, + -0.022718850523233414, + -0.029055355116724968, + 0.04137430340051651, + 0.055904775857925415, + -0.020401356741786003, + 0.008535205386579037, + 0.0007816563593223691, + 0.08679580688476562, + -0.0017113240901380777, + 0.03459714725613594, + -0.035190314054489136, + 0.047769296914339066, + -0.1016882136464119, + 0.06044965237379074, + 0.044627267867326736, + 0.06351342797279358, + 0.008340043015778065, + -0.014752637594938278, + -0.06186604127287865, + 0.018263600766658783, + -0.039110660552978516, + 0.05040598288178444, + 0.08537573367357254, + 0.007725590839982033, + -0.02320590429008007, + -0.07595142722129822, + -0.06762988120317459, + -0.028358876705169678, + -0.06806956976652145, + 0.04572164639830589, + -0.10565947741270065, + -0.04987380653619766, + 0.033450957387685776, + -0.00638953223824501, + -0.029150143265724182, + 0.03758145496249199, + 0.039308059960603714, + 0.006916502490639687, + 0.002803672570735216, + 0.004534018225967884, + 0.05417218431830406, + 0.06919556111097336, + -0.07768862694501877, + -0.005655111279338598, + 0.02703249640762806, + 0.09040722995996475, + -0.049977000802755356, + -0.07219729572534561, + -0.033698540180921555, + 0.00800468772649765, + 0.056106068193912506, + 0.07846277207136154, + -0.056503795087337494, + -0.01813422329723835, + 0.07447792589664459, + 0.043100517243146896, + 0.07660630345344543, + -0.06126425415277481, + 0.013849334791302681, + 0.00583020132035017, + 0.018874553963541985, + -0.03547694906592369, + 0.0015119716990739107, + 0.025069892406463623, + -0.01094735786318779, + 0.01437841635197401, + 0.012816203758120537, + -0.04864590987563133, + -0.04157564416527748, + -0.062470585107803345, + 0.00597143080085516, + -0.0650181844830513, + 0.056102313101291656, + 0.03022461012005806, + 0.01947108656167984, + -0.02626221254467964, + -0.07251116633415222, + 0.013474376872181892, + -0.05561027303338051, + 0.05972920358181, + 0.02486916072666645, + 0.06785856187343597, + -0.08219663053750992, + -0.05698101595044136, + -0.00523742800578475, + 0.00406599510461092, + 0.0006722284597344697, + -0.0013246183516457677, + -0.035660069435834885, + -0.03359748423099518, + 0.02110583707690239, + -0.02865844964981079, + 0.07519912719726562, + -0.09960918873548508, + -0.12058965861797333, + 0.07914900034666061, + -0.0028840734157711267, + 0.022081155329942703, + 0.04319996386766434, + -0.07538265734910965, + -0.008992865681648254, + -0.017097027972340584, + -0.02045421302318573, + -0.046625666320323944, + -0.014290158636868, + -0.02867690660059452, + -0.052891917526721954, + -0.14015063643455505, + -0.011945084668695927, + -0.06363755464553833, + -0.01965244859457016, + -0.03131871670484543, + -0.12578466534614563, + -0.010901358909904957, + 0.06496340781450272, + -0.034228596836328506, + 0.016764894127845764, + -0.030844883993268013, + -0.05409979075193405, + -0.012776369228959084, + -0.0626847967505455, + 0.02219417877495289, + -0.05665941536426544, + -3.8085609217039174e-33, + 0.04526564106345177, + 0.036860328167676926, + 0.0028255083598196507, + 0.014628669247031212, + -0.012497062794864178, + -0.013986550271511078, + -0.04449416324496269, + -0.03245196118950844, + -0.13078680634498596, + 0.004714254755526781, + 0.1553095281124115, + -0.04037705436348915, + -0.06298631429672241, + 0.06164974719285965, + 0.04495997354388237, + -0.11034952849149704, + 0.045173075050115585, + 0.05695754662156105, + -0.12315020710229874, + 0.01706135831773281, + -0.04426838457584381, + 0.07823824137449265, + -0.0717025101184845, + -0.04354381188750267, + -0.01657114364206791, + -0.0032306150533258915, + -0.02440844476222992, + 0.002750587649643421, + -0.06918255984783173, + 0.02251465432345867, + 0.018900210037827492, + 0.042256854474544525, + -0.02643474005162716, + -0.10349200665950775, + -0.017603611573576927, + -0.020866816863417625, + -0.08054405450820923, + -0.042704686522483826, + -0.0350150503218174, + -0.025158030912280083, + -0.03235473111271858, + -0.03631270304322243, + -0.0323638916015625, + 0.0035831870045512915, + 0.006619800813496113, + 0.13684025406837463, + -0.0538906566798687, + -0.07355406880378723, + 0.014808199368417263, + -0.03434700518846512, + -0.0030798614025115967, + 0.003300107317045331, + 0.0016063868533819914, + 0.021362392231822014, + 0.05743182450532913, + 0.0334198884665966, + -0.0912952646613121, + 0.12802068889141083, + -0.021962741389870644, + 0.056419648230075836, + 0.01115969754755497, + 0.028560256585478783, + -0.004405525512993336, + -0.042154405266046524, + -0.06496014446020126, + -0.001193252275697887, + -0.10146874934434891, + 0.036894045770168304, + 0.1139296367764473, + 0.02079085074365139, + -0.025446588173508644, + 0.04734133556485176, + 0.05577382817864418, + 0.041858572512865067, + -0.052526313811540604, + 0.03085969388484955, + 0.0028275682125240564, + -0.01860031485557556, + 0.08654899150133133, + -0.0754731148481369, + -0.11941755563020706, + 0.04492952302098274, + -0.024088459089398384, + 0.00931539200246334, + 0.04973454400897026, + -0.04639806970953941, + 0.020115764811635017, + -0.0768977627158165, + -0.016959045082330704, + 0.06260985136032104, + -0.07189032435417175, + 0.015412924811244011, + -0.03425683081150055, + -0.0066941785626113415, + -0.08565450459718704, + 8.463213106099954e-34, + -0.021472299471497536, + 0.04389583691954613, + -0.08828438073396683, + 0.019876355305314064, + -0.11912047117948532, + 0.012979773804545403, + 0.04771962761878967, + -0.04614965245127678, + 0.012661570683121681, + 0.05032913759350777, + 0.02619950659573078, + 0.01944558508694172, + -0.03783965855836868, + -0.02049814537167549, + 0.06870216876268387, + -0.004064495675265789, + 0.05883743241429329, + 0.05388352647423744, + 0.015518499538302422, + -0.035040128976106644, + -0.015677260234951973, + -0.03425740823149681, + -0.004111839458346367, + 0.01821179874241352, + 0.029691357165575027, + 0.03228373825550079, + 0.07148417085409164, + 0.014503750018775463, + -0.013553835451602936, + -0.04456229880452156, + 0.015947189182043076, + -0.0007164603448472917, + 0.03660020977258682, + 0.06783468276262283, + -0.06644301861524582, + -0.027541041374206543, + -0.03986569494009018, + -0.0691508948802948, + 0.09792731702327728, + -0.014891189523041248, + 0.04871828109025955, + 0.06120646372437477, + 0.10283072292804718, + 0.02844981662929058, + 0.014659903012216091, + 0.05528774484992027, + 0.020154889672994614, + 0.029641617089509964, + -0.008994377218186855, + 0.007685390766710043, + 0.006958294659852982, + -0.011683149263262749, + -0.00024085742188617587, + -0.009830002672970295, + -0.09063346683979034, + -0.048479340970516205, + 0.09807226806879044, + 0.02462848462164402, + 0.03290606662631035, + 0.037575624883174896, + -0.0226327795535326, + -0.02239001914858818, + 0.005105162505060434, + 0.046019893139600754, + -0.006517689675092697, + -0.027338527143001556, + 0.05329230800271034, + -0.06100756302475929, + 0.0195170808583498, + -0.013856036588549614, + 0.07853125780820847, + 0.10955385118722916, + 0.062068872153759, + -0.02389957755804062, + 0.07775832712650299, + -0.03796589747071266, + 0.021586433053016663, + 0.006408093497157097, + -0.03113504871726036, + -0.03408707305788994, + -0.05395624041557312, + -0.012198694050312042, + 0.00011295658623566851, + 0.01772790402173996, + 0.0007647460442967713, + 0.010163430124521255, + -0.0463465191423893, + 0.036007702350616455, + 0.03761298581957817, + 0.02586451917886734, + -0.013265077956020832, + -0.006379330530762672, + 0.0017174240201711655, + -0.004599070642143488, + -0.062316492199897766, + -2.283382016798896e-08, + -0.061729270964860916, + -0.04747213050723076, + 0.004355705808848143, + -0.0018894453532993793, + 0.023333439603447914, + 0.034167129546403885, + 0.021710701286792755, + -0.017196480184793472, + -0.023052474483847618, + -0.07443752139806747, + 0.016155079007148743, + 0.06892076879739761, + -0.06493117660284042, + -0.006798557937145233, + 0.12110510468482971, + 0.04019688814878464, + -0.05597412958741188, + 0.035680051892995834, + -0.027151616290211678, + -0.014525603502988815, + -0.047894980758428574, + -0.0023471717722713947, + 0.008490731939673424, + 0.08430666476488113, + -0.045932698994874954, + -0.0020742088090628386, + -0.00883064977824688, + 0.14440764486789703, + 0.0660901591181755, + 0.02622375637292862, + 0.061421941965818405, + 0.03694723919034004, + -0.008573087863624096, + -0.017253275960683823, + -0.02689725160598755, + -0.02818121761083603, + -0.07247978448867798, + 0.019961996003985405, + 0.026285123080015182, + 0.13216319680213928, + -0.020443156361579895, + 0.02769608050584793, + -0.01586754620075226, + 0.015884289517998695, + -0.016263045370578766, + 0.06170906499028206, + 0.0477897934615612, + 0.005475275218486786, + -0.06539896130561829, + -0.12457051128149033, + -0.02707826904952526, + 0.05906934663653374, + 0.014723717235028744, + 0.06877162307500839, + -0.03082195483148098, + 0.07326328754425049, + 0.0042284466326236725, + -0.004603693727403879, + -0.09459830075502396, + 0.011900153942406178, + 0.08171673864126205, + 0.0868513435125351, + 0.04412452131509781, + 0.0666547566652298 + ], + "arrow-bend-down-right-bold||directional,pointer,pointing,arrowhead": [ + 0.03306884318590164, + -0.02524167113006115, + -0.038049470633268356, + 0.009826481342315674, + -0.027970438823103905, + -0.020261647179722786, + 0.041118744760751724, + 0.0599256232380867, + -0.020258715376257896, + 0.009934326633810997, + 0.011081372387707233, + 0.08965137600898743, + 0.000905115099158138, + 0.03206922113895416, + -0.031492751091718674, + 0.04648834094405174, + -0.10403753072023392, + 0.0606495700776577, + 0.04215836897492409, + 0.05544988811016083, + 0.022307347506284714, + -0.01647002063691616, + -0.06088149920105934, + 0.018087273463606834, + -0.036092158406972885, + 0.05355299264192581, + 0.07861751317977905, + 0.007946034893393517, + -0.0206761471927166, + -0.07424600422382355, + -0.07364911586046219, + -0.028127258643507957, + -0.06451665610074997, + 0.04577845707535744, + -0.10347230732440948, + -0.042540617287158966, + 0.03028099425137043, + -0.007824404165148735, + -0.029099030420184135, + 0.03455447405576706, + 0.03276042267680168, + 0.0012706635752692819, + -0.0008226843783631921, + 0.005411739926785231, + 0.05015568807721138, + 0.07258787751197815, + -0.07292820513248444, + -0.007421478629112244, + 0.020113179460167885, + 0.08775094896554947, + -0.049795836210250854, + -0.07110682874917984, + -0.035932958126068115, + 0.010343065485358238, + 0.06189582124352455, + 0.08590059727430344, + -0.05652409419417381, + -0.015020140446722507, + 0.07777369022369385, + 0.04288513958454132, + 0.06893421709537506, + -0.06103700399398804, + 0.011706559918820858, + 0.012392125092446804, + 0.019129252061247826, + -0.030732378363609314, + 1.9179065930075012e-05, + 0.021488187834620476, + -0.014476005919277668, + 0.01837349869310856, + 0.014821362681686878, + -0.04796323925256729, + -0.03723066672682762, + -0.057961754500865936, + 0.005835680291056633, + -0.0670117735862732, + 0.054308854043483734, + 0.02909744344651699, + 0.014836405403912067, + -0.02461986429989338, + -0.073631651699543, + 0.013197442516684532, + -0.0549117811024189, + 0.06739864498376846, + 0.022878773510456085, + 0.06988675147294998, + -0.07924502342939377, + -0.05520347133278847, + -0.0009638758492656052, + 0.0058658542111516, + 0.0035989072639495134, + -0.011666735634207726, + -0.040660180151462555, + -0.025692956522107124, + 0.014067437499761581, + -0.028265180066227913, + 0.07214230298995972, + -0.10174751281738281, + -0.11954367160797119, + 0.07293134182691574, + -0.001707444665953517, + 0.013869855552911758, + 0.047327812761068344, + -0.07160262763500214, + -0.009564954787492752, + -0.023238465189933777, + -0.019221603870391846, + -0.04586305841803551, + -0.009398261085152626, + -0.02260723151266575, + -0.05348199978470802, + -0.13815410435199738, + -0.01418275386095047, + -0.06155591458082199, + -0.022982986643910408, + -0.030663106590509415, + -0.12603294849395752, + -0.015129377134144306, + 0.061312027275562286, + -0.03131386265158653, + 0.017859363928437233, + -0.02077457308769226, + -0.052652373909950256, + -0.014543858356773853, + -0.06364374607801437, + 0.01600784994661808, + -0.059027668088674545, + -3.645616466186824e-33, + 0.04470770061016083, + 0.03383782505989075, + 0.004931671544909477, + 0.014684031717479229, + -0.010515851899981499, + -0.016405446454882622, + -0.05147364363074303, + -0.034444816410541534, + -0.13057595491409302, + 0.015048552304506302, + 0.1545395702123642, + -0.04046332836151123, + -0.06201637163758278, + 0.06920458376407623, + 0.05049353837966919, + -0.10863109678030014, + 0.04357745498418808, + 0.05658188462257385, + -0.12220810353755951, + 0.01619793474674225, + -0.04804183542728424, + 0.08058720082044601, + -0.06705301254987717, + -0.04453233256936073, + -0.0150130121037364, + -0.0013173787156119943, + -0.02442295104265213, + 0.002683867933228612, + -0.07044045627117157, + 0.02204526588320732, + 0.011612987145781517, + 0.03441573306918144, + -0.025254251435399055, + -0.09913887083530426, + -0.01814303733408451, + -0.024259978905320168, + -0.08007080852985382, + -0.042131248861551285, + -0.03740443289279938, + -0.02812046743929386, + -0.03282890468835831, + -0.03462563827633858, + -0.03780244663357735, + 0.003483026521280408, + 0.014345401898026466, + 0.13197532296180725, + -0.05093969777226448, + -0.06982272863388062, + 0.012334849685430527, + -0.03298889845609665, + 0.0012398103717714548, + 0.007151473313570023, + 0.004360079299658537, + 0.02900671400129795, + 0.05887114629149437, + 0.03611071780323982, + -0.09011117368936539, + 0.13656002283096313, + -0.02720610424876213, + 0.05777588114142418, + 0.00930015929043293, + 0.02827642858028412, + 0.00027709908317774534, + -0.045742712914943695, + -0.06227382645010948, + 0.002769103506579995, + -0.10068953782320023, + 0.03665948286652565, + 0.11829787492752075, + 0.022888915613293648, + -0.029269075021147728, + 0.05187537521123886, + 0.049168530851602554, + 0.04562777653336525, + -0.0577310174703598, + 0.029360616579651833, + -0.00243012304417789, + -0.017216244712471962, + 0.0887499526143074, + -0.06907240301370621, + -0.12640292942523956, + 0.04270847141742706, + -0.02855757437646389, + 0.005048670340329409, + 0.041344840079545975, + -0.05179402977228165, + 0.020022189244627953, + -0.08170878887176514, + -0.01300275232642889, + 0.05817217752337456, + -0.07111962884664536, + 0.01890399120748043, + -0.034093890339136124, + -0.01085907407104969, + -0.08475969731807709, + 6.610274473236571e-34, + -0.018673690035939217, + 0.04409586638212204, + -0.08042803406715393, + 0.024829434230923653, + -0.12379543483257294, + 0.01712772063910961, + 0.04990498349070549, + -0.045735087245702744, + 0.010808601975440979, + 0.05317569896578789, + 0.02905113250017166, + 0.019494399428367615, + -0.03810296207666397, + -0.023763244971632957, + 0.07206948101520538, + -0.0033576027490198612, + 0.05478976294398308, + 0.05459652468562126, + 0.022550391033291817, + -0.030620891600847244, + -0.016052421182394028, + -0.04056272655725479, + -0.011014256626367569, + 0.018164338544011116, + 0.02856270968914032, + 0.03207162022590637, + 0.07376791536808014, + 0.011413352563977242, + -0.007519470993429422, + -0.04138418287038803, + 0.018445035442709923, + -0.008215406909584999, + 0.02468458190560341, + 0.07285107672214508, + -0.06736243516206741, + -0.028293592855334282, + -0.04280483350157738, + -0.0654233992099762, + 0.09515509754419327, + -0.015232456848025322, + 0.051754578948020935, + 0.06127957999706268, + 0.10887430608272552, + 0.0289018452167511, + 0.009580298326909542, + 0.05679825320839882, + 0.01486571878194809, + 0.030069416388869286, + -0.014925950206816196, + 0.0009127979865297675, + 0.0053164223209023476, + -0.010061299428343773, + 0.00255121779628098, + -0.010448567569255829, + -0.09016252309083939, + -0.04692825302481651, + 0.10233239829540253, + 0.018341921269893646, + 0.026623370125889778, + 0.04026421159505844, + -0.017693599686026573, + -0.027883347123861313, + -0.0015068550128489733, + 0.047330018132925034, + -0.00673544779419899, + -0.023643769323825836, + 0.04840417206287384, + -0.06387665867805481, + 0.01351682934910059, + -0.01615709625184536, + 0.07330506294965744, + 0.10338182002305984, + 0.05988899990916252, + -0.024913493543863297, + 0.07041449844837189, + -0.04614309221506119, + 0.020451022312045097, + 0.006878155283629894, + -0.030648689717054367, + -0.039367012679576874, + -0.04723444581031799, + -0.005775492172688246, + -0.0032173567451536655, + 0.020498812198638916, + -0.0026150646153837442, + 0.012407035566866398, + -0.05003209784626961, + 0.03843853622674942, + 0.04188840463757515, + 0.0239117331802845, + -0.009093625470995903, + 0.002459281124174595, + -0.00016158541257027537, + 0.0026513885241001844, + -0.06593061983585358, + -2.282588340563052e-08, + -0.06913521140813828, + -0.04512406513094902, + 0.007388841360807419, + -0.004829150624573231, + 0.027592599391937256, + 0.03288739174604416, + 0.018342096358537674, + -0.014181326143443584, + -0.02223050780594349, + -0.07557570934295654, + 0.014800170436501503, + 0.06552921235561371, + -0.06831282377243042, + -0.003646554658189416, + 0.1316571980714798, + 0.03754584863781929, + -0.0551285594701767, + 0.0345248319208622, + -0.02395804412662983, + -0.016220739111304283, + -0.05290199816226959, + -0.004945023451000452, + 0.005654662847518921, + 0.08425933867692947, + -0.043125689029693604, + -0.0014169723726809025, + -0.012316267006099224, + 0.14494968950748444, + 0.06015710160136223, + 0.030127359554171562, + 0.0625048503279686, + 0.038730066269636154, + -0.007103761192411184, + -0.019360249862074852, + -0.019956428557634354, + -0.020559892058372498, + -0.06815219670534134, + 0.014782330952584743, + 0.032772619277238846, + 0.12971922755241394, + -0.018842345103621483, + 0.02323792316019535, + -0.018242835998535156, + 0.0173118207603693, + -0.015010618604719639, + 0.06188210844993591, + 0.05281269922852516, + 0.003738204250112176, + -0.06820544600486755, + -0.12909385561943054, + -0.03087029606103897, + 0.06432445347309113, + 0.017105553299188614, + 0.06776251643896103, + -0.03169218450784683, + 0.07670808583498001, + 0.004486592020839453, + -0.010762526653707027, + -0.08792364597320557, + 0.011430478654801846, + 0.08187177777290344, + 0.08703085035085678, + 0.04281126707792282, + 0.06443291157484055 + ], + "arrow-bend-left-down-bold||directional,pointer,pointing,arrowhead": [ + 0.03111855871975422, + -0.02755294367671013, + -0.033057719469070435, + 0.01654892973601818, + -0.022233562543988228, + -0.024534717202186584, + 0.039509840309619904, + 0.05118469148874283, + -0.01747940666973591, + 0.011593000032007694, + -0.0017153549706563354, + 0.0901205837726593, + -0.004908944480121136, + 0.03379765525460243, + -0.03462953120470047, + 0.04939970001578331, + -0.10443119704723358, + 0.06040465086698532, + 0.04298815131187439, + 0.056310173124074936, + 0.010202480480074883, + -0.016346607357263565, + -0.06201411038637161, + 0.018688196316361427, + -0.037710580974817276, + 0.05450063198804855, + 0.08305657655000687, + 0.009550104849040508, + -0.020049484446644783, + -0.07322946190834045, + -0.06747378408908844, + -0.028955571353435516, + -0.05797766149044037, + 0.04666069895029068, + -0.11094050109386444, + -0.04667205363512039, + 0.03245530650019646, + -0.006996741984039545, + -0.03002004511654377, + 0.041095420718193054, + 0.037748634815216064, + 0.008869856595993042, + 0.0007989580044522882, + 0.006254158448427916, + 0.05495861545205116, + 0.07024862617254257, + -0.0808272510766983, + -0.012511931359767914, + 0.026433836668729782, + 0.09026865661144257, + -0.04014982655644417, + -0.07539984583854675, + -0.03858518227934837, + 0.011076753959059715, + 0.05918513238430023, + 0.0784432664513588, + -0.05848240852355957, + -0.02549644745886326, + 0.07699336856603622, + 0.040321461856365204, + 0.07509364932775497, + -0.055413272231817245, + 0.008828497491776943, + 0.011011343449354172, + 0.01648808643221855, + -0.03172071650624275, + 0.0005604483303613961, + 0.019427446648478508, + -0.007793685887008905, + 0.01165792252868414, + 0.013473599217832088, + -0.047579579055309296, + -0.03842609375715256, + -0.06159081682562828, + 0.00759026687592268, + -0.06686490774154663, + 0.05829720199108124, + 0.03436636924743652, + 0.008809155784547329, + -0.02387993223965168, + -0.07550748437643051, + 0.018099037930369377, + -0.05068046227097511, + 0.05812297388911247, + 0.02501240186393261, + 0.0723065435886383, + -0.07507146894931793, + -0.05824332684278488, + -0.005942438263446093, + 0.002435749163851142, + -0.003657159162685275, + 0.0010570783633738756, + -0.044370558112859726, + -0.03356790170073509, + 0.016746236011385918, + -0.027352508157491684, + 0.06933043897151947, + -0.09951604157686234, + -0.12006407976150513, + 0.07629579305648804, + -0.001576460083015263, + 0.017824623733758926, + 0.05246363952755928, + -0.06913350522518158, + -0.005524457897990942, + -0.017912305891513824, + -0.024700630456209183, + -0.04583399370312691, + -0.012615218758583069, + -0.024206532165408134, + -0.0526956245303154, + -0.13931266963481903, + -0.013164101168513298, + -0.06181392818689346, + -0.015248486772179604, + -0.03605497255921364, + -0.12767603993415833, + -0.009477965533733368, + 0.06571103632450104, + -0.032741520553827286, + 0.022912316024303436, + -0.028849530965089798, + -0.05009464919567108, + -0.020077578723430634, + -0.06280671805143356, + 0.019633490592241287, + -0.05865996703505516, + -3.7776810524498005e-33, + 0.04421498253941536, + 0.029278527945280075, + 0.0029047231655567884, + 0.015845369547605515, + -0.010483687743544579, + -0.012743069790303707, + -0.04380641132593155, + -0.03451067954301834, + -0.12926793098449707, + 0.00943867675960064, + 0.15488936007022858, + -0.04153618961572647, + -0.06350146234035492, + 0.06339593976736069, + 0.04355446994304657, + -0.10657965391874313, + 0.044261518865823746, + 0.054653435945510864, + -0.12163854390382767, + 0.015360916964709759, + -0.047662775963544846, + 0.07800055295228958, + -0.07325731217861176, + -0.04361163079738617, + -0.012936804443597794, + -0.0024677629116922617, + -0.024092113599181175, + 0.0035152267664670944, + -0.07212157547473907, + 0.022650709375739098, + 0.021813301369547844, + 0.04312705621123314, + -0.021865569055080414, + -0.09953015297651291, + -0.022394457831978798, + -0.020841946825385094, + -0.08320146799087524, + -0.04634085297584534, + -0.031316325068473816, + -0.025003748014569283, + -0.033906400203704834, + -0.03948276862502098, + -0.036042191088199615, + 0.0015841915737837553, + 0.008946642279624939, + 0.13316069543361664, + -0.050754614174366, + -0.07101114839315414, + 0.01419032458215952, + -0.032711680978536606, + -0.002260558307170868, + 0.004192762076854706, + 0.0055972798727452755, + 0.021962452679872513, + 0.055292680859565735, + 0.03651205077767372, + -0.0882801041007042, + 0.13524845242500305, + -0.027215689420700073, + 0.05555434897542, + 0.006638282909989357, + 0.029457058757543564, + -0.00802001915872097, + -0.04414207488298416, + -0.06556473672389984, + 0.004042165353894234, + -0.09878092259168625, + 0.03922325000166893, + 0.11299967020750046, + 0.018786374479532242, + -0.027175234630703926, + 0.049789562821388245, + 0.055167391896247864, + 0.041360288858413696, + -0.051346734166145325, + 0.026679590344429016, + 0.004104682710021734, + -0.016484498977661133, + 0.09490189701318741, + -0.07055410742759705, + -0.13014575839042664, + 0.04514602571725845, + -0.028882965445518494, + 0.008436080068349838, + 0.04435648396611214, + -0.04193728789687157, + 0.02376723103225231, + -0.08133674412965775, + -0.014146341010928154, + 0.06370493769645691, + -0.07235880196094513, + 0.020056791603565216, + -0.03888562694191933, + -0.0075962296687066555, + -0.08562852442264557, + 7.92556494890788e-34, + -0.021597761660814285, + 0.044295843690633774, + -0.09204184263944626, + 0.023943081498146057, + -0.11837199330329895, + 0.016371430829167366, + 0.043721213936805725, + -0.04086524248123169, + 0.014291731640696526, + 0.04736195504665375, + 0.03161057457327843, + 0.023590832948684692, + -0.04462618753314018, + -0.024223143234848976, + 0.0726996511220932, + 0.00047785372589714825, + 0.05754335969686508, + 0.05058005079627037, + 0.020609745755791664, + -0.03140383958816528, + -0.00905944500118494, + -0.031136253848671913, + -0.012928456999361515, + 0.008282460272312164, + 0.022225502878427505, + 0.030553273856639862, + 0.06697995960712433, + 0.012113433331251144, + -0.007094649598002434, + -0.04006181284785271, + 0.017363665625452995, + -0.003978591412305832, + 0.03616756573319435, + 0.0651043951511383, + -0.07268677651882172, + -0.03064756654202938, + -0.0367615781724453, + -0.06921873986721039, + 0.09892648458480835, + -0.013328122906386852, + 0.05274295061826706, + 0.054604921489953995, + 0.10851950943470001, + 0.0208489540964365, + 0.010671609081327915, + 0.05170498788356781, + 0.015965638682246208, + 0.032641783356666565, + -0.008839275687932968, + 0.0018418468534946442, + 0.005137049593031406, + -0.006248078774660826, + 0.0019039391772821546, + -0.0067842756398022175, + -0.0948311910033226, + -0.049398668110370636, + 0.10199329257011414, + 0.02378111705183983, + 0.03532661497592926, + 0.035085879266262054, + -0.02200760878622532, + -0.022819986566901207, + 0.006059459876269102, + 0.048248909413814545, + -0.00679660914465785, + -0.025962913408875465, + 0.0505407452583313, + -0.06401936709880829, + 0.014298513531684875, + -0.015372980386018753, + 0.06908174604177475, + 0.11084088683128357, + 0.06126583367586136, + -0.026973167434334755, + 0.07690326124429703, + -0.0444740429520607, + 0.018833808600902557, + 0.01026479247957468, + -0.02701541967689991, + -0.027016129344701767, + -0.048567138612270355, + -0.004149564076215029, + -0.0005208744551055133, + 0.02093346230685711, + 0.004519564565271139, + 0.0052908435463905334, + -0.04822485148906708, + 0.037788987159729004, + 0.04024841636419296, + 0.022004248574376106, + -0.008080273866653442, + -0.0009979571914300323, + 0.00018334935884922743, + -0.0028490498661994934, + -0.06338918954133987, + -2.2754527151391812e-08, + -0.06230131536722183, + -0.046568915247917175, + 0.006059807725250721, + -0.005540274549275637, + 0.02220291458070278, + 0.03312736004590988, + 0.022309422492980957, + -0.01692376844584942, + -0.028475958853960037, + -0.07259000092744827, + 0.02080482617020607, + 0.0735161229968071, + -0.06989030539989471, + -0.007535200100392103, + 0.11960440129041672, + 0.04359935224056244, + -0.06201168894767761, + 0.03359159454703331, + -0.023507267236709595, + -0.017353564500808716, + -0.05101862922310829, + -0.0024542477913200855, + 0.004634177777916193, + 0.0857652872800827, + -0.04460672661662102, + -0.00305121298879385, + -0.007896257564425468, + 0.14186497032642365, + 0.06323893368244171, + 0.03273261338472366, + 0.059178128838539124, + 0.03836149722337723, + -0.005779433064162731, + -0.015563029795885086, + -0.021180927753448486, + -0.026102859526872635, + -0.07303576916456223, + 0.014458447694778442, + 0.02738700620830059, + 0.1324237436056137, + -0.017015673220157623, + 0.025540800765156746, + -0.01732429675757885, + 0.013964088633656502, + -0.015624597668647766, + 0.06406230479478836, + 0.0461929589509964, + 0.004754193127155304, + -0.07124292850494385, + -0.12503325939178467, + -0.025139734148979187, + 0.059337642043828964, + 0.010541116818785667, + 0.06866734474897385, + -0.030204234644770622, + 0.07592003047466278, + 0.00653267465531826, + -0.009255306795239449, + -0.08506927639245987, + 0.013084284961223602, + 0.08002421259880066, + 0.08988784998655319, + 0.049252551048994064, + 0.06613767147064209 + ], + "arrow-bend-left-up-bold||directional,pointer,pointing,arrowhead": [ + 0.021679623052477837, + -0.023852616548538208, + -0.040014687925577164, + 0.020244134590029716, + -0.016017895191907883, + -0.02513721212744713, + 0.033628229051828384, + 0.044637054204940796, + -0.016084956005215645, + 0.01012625265866518, + -5.43356072739698e-05, + 0.10088340193033218, + -0.017781086266040802, + 0.029838427901268005, + -0.0337616465985775, + 0.05856737121939659, + -0.10477808117866516, + 0.05099307373166084, + 0.04205286502838135, + 0.059032030403614044, + 0.0021294651087373495, + -0.015271611511707306, + -0.05622490867972374, + 0.02434806525707245, + -0.031814247369766235, + 0.052363134920597076, + 0.09316757321357727, + 0.009143431670963764, + -0.026222288608551025, + -0.061577748507261276, + -0.06356638669967651, + -0.02513345703482628, + -0.06824328750371933, + 0.0343475416302681, + -0.09359922260046005, + -0.03966522589325905, + 0.041564617305994034, + -0.0010142996907234192, + -0.03964860364794731, + 0.04408837854862213, + 0.037446871399879456, + 0.004085398279130459, + -0.0015331280883401632, + -0.013599134981632233, + 0.06361033767461777, + 0.06502871215343475, + -0.0806228294968605, + 0.008179601281881332, + 0.04321402683854103, + 0.08486588299274445, + -0.04837755858898163, + -0.08487465232610703, + -0.0433044470846653, + 0.012793884612619877, + 0.0502096563577652, + 0.08688602596521378, + -0.06558117270469666, + -0.02804751507937908, + 0.08526512235403061, + 0.036466244608163834, + 0.06364065408706665, + -0.04686545580625534, + 0.030279695987701416, + 0.021011855453252792, + 0.023508120328187943, + -0.039543382823467255, + 0.00748474569991231, + 0.028968369588255882, + -0.010377991944551468, + 0.016406958922743797, + 0.013003695756196976, + -0.03574594482779503, + -0.041217394173145294, + -0.06058862432837486, + 0.016677487641572952, + -0.06837821006774902, + 0.05588643252849579, + 0.03420813009142876, + 0.027885999530553818, + -0.021940622478723526, + -0.08610348403453827, + 0.005033732857555151, + -0.054932594299316406, + 0.05020853877067566, + 0.03153862804174423, + 0.07259037345647812, + -0.08476428687572479, + -0.06088453158736229, + 0.0003706318966578692, + 0.009044662117958069, + -0.008156605996191502, + 0.014135388657450676, + -0.04130854830145836, + -0.042806997895240784, + 0.03251511976122856, + -0.02399737387895584, + 0.06518825888633728, + -0.096302330493927, + -0.1232130229473114, + 0.0724576786160469, + 0.004555586259812117, + 0.011721139773726463, + 0.05040859058499336, + -0.05881308391690254, + 0.004328257404267788, + -0.003831669455394149, + -0.02553711272776127, + -0.03523227199912071, + -0.0180389154702425, + -0.03241861239075661, + -0.05178773030638695, + -0.14203719794750214, + -0.019032878801226616, + -0.06230930611491203, + -0.01826060563325882, + -0.03502378985285759, + -0.13060176372528076, + -0.004519633948802948, + 0.06439253687858582, + -0.038048937916755676, + 0.02603512443602085, + -0.04020282253623009, + -0.04761185869574547, + -0.018194086849689484, + -0.07312903553247452, + 0.02216535620391369, + -0.04920848831534386, + -3.873886081514989e-33, + 0.03902459517121315, + 0.03394755348563194, + -0.0014463309198617935, + 0.0071386853232979774, + -0.01368495263159275, + -0.02017780765891075, + -0.03516107797622681, + -0.02835266850888729, + -0.12979716062545776, + 0.006392079405486584, + 0.15855704247951508, + -0.02371281571686268, + -0.06348226964473724, + 0.05704446882009506, + 0.05045472830533981, + -0.09754322469234467, + 0.0472225546836853, + 0.07614526152610779, + -0.11495070904493332, + 0.013665741309523582, + -0.03776285797357559, + 0.06890759617090225, + -0.07120279967784882, + -0.047818370163440704, + -0.02753504179418087, + -0.011414485983550549, + -0.0254001896828413, + 0.005814652424305677, + -0.0760161280632019, + 0.017059098929166794, + 0.03763777017593384, + 0.04306141659617424, + -0.02174399234354496, + -0.10213139653205872, + -0.021727897226810455, + -0.02644731104373932, + -0.07146592438220978, + -0.05682411417365074, + -0.03493504598736763, + -0.019268743693828583, + -0.03646840155124664, + -0.02525455690920353, + -0.033690594136714935, + 0.003070431062951684, + -0.0050658429972827435, + 0.1378074586391449, + -0.06716620177030563, + -0.08158908784389496, + 0.027402035892009735, + -0.032687749713659286, + -0.000581981148570776, + 0.0042384169064462185, + 0.009606383740901947, + 0.021998781710863113, + 0.04073625057935715, + 0.03444819524884224, + -0.07799293845891953, + 0.1358793079853058, + -0.016218148171901703, + 0.03729817643761635, + 0.007687265053391457, + 0.0350048653781414, + -0.012199330143630505, + -0.028699491173028946, + -0.07159057259559631, + 0.0015754896448925138, + -0.10144452005624771, + 0.04643262177705765, + 0.11225371807813644, + 0.013718826696276665, + -0.030847536399960518, + 0.049286793917417526, + 0.04233746603131294, + 0.05786331743001938, + -0.049613505601882935, + 0.00764432130381465, + -0.00534966541454196, + -0.027682462707161903, + 0.0869244709610939, + -0.05816489830613136, + -0.11974969506263733, + 0.04786861315369606, + -0.027610471472144127, + -0.001481083338148892, + 0.04350225627422333, + -0.042752452194690704, + 0.008107555098831654, + -0.0870986059308052, + -0.016076013445854187, + 0.06918232142925262, + -0.055365487933158875, + 0.02458958327770233, + -0.03172380104660988, + 0.0003965675423387438, + -0.0829932913184166, + 7.123057251488908e-34, + -0.027215559035539627, + 0.04519312456250191, + -0.09306693077087402, + 0.012193151749670506, + -0.10847398638725281, + 0.024534819647669792, + 0.05141585320234299, + -0.04379410669207573, + 0.02856438048183918, + 0.027216777205467224, + 0.01753806695342064, + 0.03149692714214325, + -0.04499702528119087, + -0.025507021695375443, + 0.0796956717967987, + -0.0022959993220865726, + 0.05652961879968643, + 0.05933813378214836, + 0.01371946930885315, + -0.03646748512983322, + -0.008560474030673504, + -0.040766872465610504, + -0.010105034336447716, + 0.003060226561501622, + 0.013910367153584957, + 0.027873078361153603, + 0.05768347531557083, + 0.009906407445669174, + -0.009100692346692085, + -0.044441889971494675, + 0.02344750240445137, + 0.004079570062458515, + 0.04154893383383751, + 0.07457476854324341, + -0.061034563928842545, + -0.027628714218735695, + -0.04118063673377037, + -0.08584684133529663, + 0.11263629794120789, + -0.004370882175862789, + 0.06690347194671631, + 0.047533661127090454, + 0.09097572416067123, + 0.03552461043000221, + 0.012774073518812656, + 0.04574032872915268, + 0.018470147624611855, + 0.035719674080610275, + -0.020043913275003433, + 0.012265508063137531, + 0.008643179200589657, + 0.0042590731754899025, + -0.00028868846129626036, + -0.00854034535586834, + -0.08822105824947357, + -0.056254711002111435, + 0.09520646184682846, + 0.02519567497074604, + 0.044091664254665375, + 0.031776685267686844, + -0.018394608050584793, + -0.015126365236938, + 0.0039032399654388428, + 0.032666001468896866, + -0.0135369086638093, + -0.03473835811018944, + 0.061083439737558365, + -0.07070328295230865, + 0.018719526007771492, + -0.011711761355400085, + 0.08372342586517334, + 0.11414282023906708, + 0.04991515725851059, + -0.03156784921884537, + 0.0757845863699913, + -0.03480181470513344, + 0.026149945333600044, + 0.0022729854099452496, + -0.02078297734260559, + -0.035152681171894073, + -0.0634075403213501, + 0.0024927472695708275, + 5.107207834953442e-05, + 0.023977573961019516, + 0.007174992468208075, + -0.0023079628590494394, + -0.023347795009613037, + 0.027518419548869133, + 0.03366009145975113, + 0.019262775778770447, + 0.007203410379588604, + -0.018168697133660316, + -0.01123871561139822, + 0.0017765305237844586, + -0.059740327298641205, + -2.219492500898923e-08, + -0.0641491711139679, + -0.04672383517026901, + 0.001174194854684174, + -0.0068544913083314896, + 0.03150921314954758, + 0.021628329530358315, + 0.027415050193667412, + -0.011931288987398148, + -0.03517097979784012, + -0.09021097421646118, + 0.019329484552145004, + 0.07258910685777664, + -0.06779638677835464, + -0.02024216391146183, + 0.11549026519060135, + 0.039052870124578476, + -0.06499813497066498, + 0.034320104867219925, + -0.03416872024536133, + -0.007524878717958927, + -0.052587904036045074, + 0.014627495780587196, + 0.006924800109118223, + 0.07689105719327927, + -0.052431534975767136, + -0.0060000065714120865, + -0.007740034721791744, + 0.12713241577148438, + 0.0570044070482254, + 0.03407231718301773, + 0.05520806089043617, + 0.028342915698885918, + -0.01160060428082943, + -0.011730454862117767, + -0.017701851204037666, + -0.02195454202592373, + -0.07657749950885773, + 0.022052031010389328, + 0.015393838286399841, + 0.1251349151134491, + -0.016786085441708565, + 0.03126209229230881, + -0.012803895398974419, + 0.0060715279541909695, + -0.02312571555376053, + 0.06643394380807877, + 0.0358281284570694, + 0.0027410269249230623, + -0.09238632768392563, + -0.11899276822805405, + -0.025651905685663223, + 0.04991474002599716, + 0.0009337488445453346, + 0.06370587646961212, + -0.023637091740965843, + 0.07692645490169525, + 0.0069122700951993465, + -0.006438461132347584, + -0.0837477594614029, + 0.018653588369488716, + 0.0886235386133194, + 0.08739675581455231, + 0.05744760110974312, + 0.07112525403499603 + ], + "arrow-bend-right-down-bold||directional,pointer,pointing,arrowhead": [ + 0.028999730944633484, + -0.026437878608703613, + -0.03844057396054268, + 0.014359468594193459, + -0.02745497226715088, + -0.020184097811579704, + 0.03735344484448433, + 0.06037457659840584, + -0.01879081316292286, + 0.007785724010318518, + 0.007501600310206413, + 0.09112787991762161, + -0.005930276587605476, + 0.029252612963318825, + -0.027703670784831047, + 0.047105997800827026, + -0.10697823762893677, + 0.06371479481458664, + 0.04266631230711937, + 0.04888803884387016, + 0.026148881763219833, + -0.017116181552410126, + -0.058488037437200546, + 0.019168084487318993, + -0.03869367390871048, + 0.05744234845042229, + 0.08094644546508789, + 0.008226477541029453, + -0.01872875727713108, + -0.07318314164876938, + -0.06911329925060272, + -0.028236262500286102, + -0.06370701640844345, + 0.047921761870384216, + -0.1053709164261818, + -0.04400050640106201, + 0.028563184663653374, + -0.003652304643765092, + -0.03205883130431175, + 0.03382906690239906, + 0.036612991243600845, + 0.004109704867005348, + -0.0023208418861031532, + 0.0035934196785092354, + 0.05268389731645584, + 0.06929602473974228, + -0.07116669416427612, + -0.007564150728285313, + 0.02221517823636532, + 0.091991126537323, + -0.04313524439930916, + -0.0754728615283966, + -0.03431883081793785, + 0.006661476567387581, + 0.06443578004837036, + 0.08803260326385498, + -0.05762305483222008, + -0.016839511692523956, + 0.08026202023029327, + 0.045077450573444366, + 0.06903383135795593, + -0.06228012219071388, + 0.012652575969696045, + 0.01328890211880207, + 0.01562640257179737, + -0.028065497055649757, + 0.004434098955243826, + 0.021186796948313713, + -0.012558070942759514, + 0.01747586950659752, + 0.014994077384471893, + -0.048739250749349594, + -0.03771543502807617, + -0.06217840686440468, + 0.006973884534090757, + -0.06731103360652924, + 0.05336812138557434, + 0.02973850816488266, + 0.009782123379409313, + -0.021994106471538544, + -0.0771099105477333, + 0.010797246359288692, + -0.05135731026530266, + 0.067596435546875, + 0.02287333831191063, + 0.07293570786714554, + -0.07524438202381134, + -0.058388713747262955, + -0.0019281129352748394, + 0.007400627247989178, + 0.002737244125455618, + -0.010627579875290394, + -0.045763399451971054, + -0.025580517947673798, + 0.013500802218914032, + -0.027336932718753815, + 0.06970079243183136, + -0.10151331126689911, + -0.12056700140237808, + 0.07051622867584229, + -0.0024182861670851707, + 0.012514693662524223, + 0.04669328033924103, + -0.06972292810678482, + -0.003366147866472602, + -0.018419036641716957, + -0.020524829626083374, + -0.04310309514403343, + -0.007828561589121819, + -0.019184712320566177, + -0.0535891093313694, + -0.13784082233905792, + -0.010238869115710258, + -0.05971694737672806, + -0.020443327724933624, + -0.030849888920783997, + -0.124246746301651, + -0.01649852842092514, + 0.05669356510043144, + -0.030353331938385963, + 0.02149527333676815, + -0.018152713775634766, + -0.052184123545885086, + -0.01864219643175602, + -0.0609067901968956, + 0.021487269550561905, + -0.06006257236003876, + -3.6186939721331476e-33, + 0.0432402603328228, + 0.03676805645227432, + 0.002870140364393592, + 0.013219158165156841, + -0.01089127454906702, + -0.019128335639834404, + -0.046873629093170166, + -0.03679569065570831, + -0.13127657771110535, + 0.015860071405768394, + 0.15413250029087067, + -0.043910082429647446, + -0.06300485879182816, + 0.06515567749738693, + 0.046442463994026184, + -0.10992757976055145, + 0.045148007571697235, + 0.05640691891312599, + -0.12148213386535645, + 0.021849405020475388, + -0.048391442745923996, + 0.07606259733438492, + -0.06957697123289108, + -0.047006793320178986, + -0.015647800639271736, + -0.0026285808999091387, + -0.0241946280002594, + 0.005527203902602196, + -0.06494192034006119, + 0.022889120504260063, + 0.011100131087005138, + 0.03542028367519379, + -0.02250077947974205, + -0.09848710894584656, + -0.022152893245220184, + -0.027212899178266525, + -0.07991474121809006, + -0.04397207126021385, + -0.03748222440481186, + -0.025538571178913116, + -0.031794287264347076, + -0.03596831485629082, + -0.03580627590417862, + 0.005309945438057184, + 0.015298724174499512, + 0.13368473947048187, + -0.05201486870646477, + -0.066977858543396, + 0.007756950333714485, + -0.030095450580120087, + 0.004835858475416899, + 0.010226326994597912, + 0.0016140186926349998, + 0.032028574496507645, + 0.05832728371024132, + 0.03630034998059273, + -0.08975259214639664, + 0.13755589723587036, + -0.028920508921146393, + 0.05666550621390343, + 0.009804394096136093, + 0.025475239381194115, + -0.0038261450827121735, + -0.046588074415922165, + -0.06207994744181633, + 0.0045636603608727455, + -0.1002192422747612, + 0.04417630285024643, + 0.11368628591299057, + 0.02024136111140251, + -0.02916976436972618, + 0.053379617631435394, + 0.047046124935150146, + 0.04121163859963417, + -0.05828825756907463, + 0.02776050940155983, + 0.001693344791419804, + -0.013955536298453808, + 0.09993796050548553, + -0.06770627200603485, + -0.13232925534248352, + 0.03979999199509621, + -0.027486102655529976, + 0.005200332961976528, + 0.04121200740337372, + -0.04678791016340256, + 0.022521641105413437, + -0.08210811764001846, + -0.012827180325984955, + 0.056384459137916565, + -0.07264704257249832, + 0.020694920793175697, + -0.0384332649409771, + -0.01385975070297718, + -0.08404775708913803, + 7.403138525203992e-34, + -0.019383354112505913, + 0.04472352936863899, + -0.07995568215847015, + 0.028767196461558342, + -0.11877182871103287, + 0.017770422622561455, + 0.03981836140155792, + -0.04506529122591019, + 0.010806430131196976, + 0.04788803681731224, + 0.026944193989038467, + 0.020871367305517197, + -0.04344720393419266, + -0.021343465894460678, + 0.07414646446704865, + -0.004811885766685009, + 0.054618559777736664, + 0.05413859710097313, + 0.022771088406443596, + -0.028092605993151665, + -0.010248304344713688, + -0.03652792423963547, + -0.01220838911831379, + 0.011225749738514423, + 0.026525359600782394, + 0.029002847149968147, + 0.07108265906572342, + 0.013092609122395515, + -0.0037590195424854755, + -0.04033994302153587, + 0.019111882895231247, + -0.008255347609519958, + 0.022614598274230957, + 0.06586796790361404, + -0.07184986770153046, + -0.02598303183913231, + -0.03792396932840347, + -0.06527912616729736, + 0.0986095517873764, + -0.019098935648798943, + 0.05153380706906319, + 0.056326381862163544, + 0.10508374869823456, + 0.024429522454738617, + 0.0061597456224262714, + 0.05690434202551842, + 0.015427973121404648, + 0.031392402946949005, + -0.015514876693487167, + 0.0027017476968467236, + 0.005297958385199308, + -0.009682492353022099, + 0.0037553482688963413, + -0.004410134628415108, + -0.09629013389348984, + -0.04924510046839714, + 0.10611648857593536, + 0.01488518062978983, + 0.024234918877482414, + 0.03739471733570099, + -0.0169509407132864, + -0.026522664353251457, + -0.002345193177461624, + 0.0481986366212368, + -0.005937043111771345, + -0.02217332273721695, + 0.04948600381612778, + -0.06581324338912964, + 0.014079753309488297, + -0.014115572907030582, + 0.06884196400642395, + 0.10662419348955154, + 0.06051505357027054, + -0.02283405512571335, + 0.0744415670633316, + -0.04857369884848595, + 0.02096116729080677, + 0.006965727545320988, + -0.023596283048391342, + -0.038999468088150024, + -0.044726189225912094, + -0.004653347656130791, + -0.0024207518436014652, + 0.016717975959181786, + 0.0030445235315710306, + 0.009078701958060265, + -0.04858504235744476, + 0.04099560156464577, + 0.040669117122888565, + 0.02387085370719433, + -0.012999623082578182, + -0.0006035570404492319, + -0.003673461964353919, + 0.0011476828949525952, + -0.06805448234081268, + -2.2754015560622065e-08, + -0.06947528570890427, + -0.04205862432718277, + 0.010021253488957882, + -0.003298495663329959, + 0.031816527247428894, + 0.03710262477397919, + 0.019718550145626068, + -0.015176340006291866, + -0.024384373798966408, + -0.07560302317142487, + 0.015383457764983177, + 0.06777976453304291, + -0.06857530027627945, + -0.004116694908589125, + 0.12745951116085052, + 0.04222547635436058, + -0.05572154372930527, + 0.034079715609550476, + -0.025015858933329582, + -0.01938323676586151, + -0.060146868228912354, + -0.004921805113554001, + 0.006589710246771574, + 0.08833926171064377, + -0.045496974140405655, + -0.004436294548213482, + -0.012080871500074863, + 0.14372561872005463, + 0.06365533173084259, + 0.03237534314393997, + 0.057876311242580414, + 0.037429455667734146, + -0.006985400803387165, + -0.016035856679081917, + -0.018154559656977654, + -0.023760199546813965, + -0.07011767476797104, + 0.012661352753639221, + 0.03434288874268532, + 0.1318431943655014, + -0.01966710574924946, + 0.026396116241812706, + -0.015096316114068031, + 0.016297467052936554, + -0.013345333747565746, + 0.06218980997800827, + 0.055036380887031555, + -0.0001517379132565111, + -0.06950648128986359, + -0.12317904829978943, + -0.0291929729282856, + 0.06284713000059128, + 0.01179293543100357, + 0.06908858567476273, + -0.033808961510658264, + 0.07962068170309067, + 0.007899463176727295, + -0.009216872975230217, + -0.08733193576335907, + 0.012739642523229122, + 0.08000028133392334, + 0.08395696431398392, + 0.04726888984441757, + 0.0645081177353859 + ], + "arrow-bend-right-up-bold||directional,pointer,pointing,arrowhead": [ + 0.017349760979413986, + -0.01970221847295761, + -0.045161206275224686, + 0.012383808381855488, + -0.024517489597201347, + -0.017596229910850525, + 0.03312733396887779, + 0.05450916662812233, + -0.021201906725764275, + 0.009882275015115738, + 0.006028858479112387, + 0.10349774360656738, + -0.015266833826899529, + 0.022796843200922012, + -0.026463504880666733, + 0.05914711207151413, + -0.10533925145864487, + 0.061962712556123734, + 0.0442817397415638, + 0.05047925189137459, + 0.018447747454047203, + -0.018844300881028175, + -0.04566245898604393, + 0.025010572746396065, + -0.035199470818042755, + 0.05051860958337784, + 0.09038246423006058, + 0.011147190816700459, + -0.025557180866599083, + -0.054748836904764175, + -0.06936106830835342, + -0.025373054668307304, + -0.07168524712324142, + 0.02945132739841938, + -0.08476964384317398, + -0.0329342782497406, + 0.03874923661351204, + -0.00012604353833012283, + -0.042282700538635254, + 0.03423880785703659, + 0.029615556821227074, + -0.005093879997730255, + -0.005491412710398436, + -0.016489963978528976, + 0.059259332716464996, + 0.06652600318193436, + -0.06915955245494843, + 0.011536121368408203, + 0.037287771701812744, + 0.08114629983901978, + -0.051978256553411484, + -0.08681874722242355, + -0.041161756962537766, + 0.008602140471339226, + 0.0558447539806366, + 0.10187043994665146, + -0.06633613258600235, + -0.02733837440609932, + 0.09218662232160568, + 0.03897072374820709, + 0.05343274027109146, + -0.054376840591430664, + 0.030778538435697556, + 0.02802184782922268, + 0.026832034811377525, + -0.036415521055459976, + 0.006293104961514473, + 0.033224787563085556, + -0.015507920645177364, + 0.020065471529960632, + 0.01370906550437212, + -0.03801292926073074, + -0.044721730053424835, + -0.06196264177560806, + 0.017695443704724312, + -0.06791169196367264, + 0.0500006377696991, + 0.028351670131087303, + 0.03400738909840584, + -0.022447723895311356, + -0.08591972291469574, + 0.0022848849184811115, + -0.057732392102479935, + 0.06278280913829803, + 0.031410474330186844, + 0.07176156342029572, + -0.08341974765062332, + -0.059149131178855896, + 0.0050199623219668865, + 0.018010586500167847, + -0.0025856178253889084, + -0.00040283429552800953, + -0.044684626162052155, + -0.03243798017501831, + 0.02945718728005886, + -0.025169651955366135, + 0.0660192221403122, + -0.10223401337862015, + -0.1225220263004303, + 0.06594081223011017, + 0.00017013341130223125, + 0.007929874584078789, + 0.0450763963162899, + -0.06361622363328934, + -0.00023465626873075962, + -0.006834207568317652, + -0.023303408175706863, + -0.03025614470243454, + -0.004145556129515171, + -0.02890365570783615, + -0.055426351726055145, + -0.14492936432361603, + -0.016528410837054253, + -0.05226225033402443, + -0.023396551609039307, + -0.027276253327727318, + -0.12651975452899933, + -0.01750631257891655, + 0.051656574010849, + -0.03507455810904503, + 0.026907915249466896, + -0.028872570022940636, + -0.05505496263504028, + -0.013188177719712257, + -0.07193709909915924, + 0.021286288276314735, + -0.05078836530447006, + -3.769216391097926e-33, + 0.04139802232384682, + 0.043938152492046356, + -0.00042323576053604484, + 0.005298861302435398, + -0.016479216516017914, + -0.030662083998322487, + -0.04355614632368088, + -0.03201714903116226, + -0.13172902166843414, + 0.019104838371276855, + 0.15072737634181976, + -0.022176966071128845, + -0.06517241150140762, + 0.06386961042881012, + 0.0523943156003952, + -0.10669028013944626, + 0.04926782473921776, + 0.07958788424730301, + -0.11252759397029877, + 0.020504385232925415, + -0.03951675817370415, + 0.06626582890748978, + -0.06353287398815155, + -0.04996364563703537, + -0.029878994449973106, + -0.011858879588544369, + -0.028924085199832916, + 0.013335269875824451, + -0.06796795129776001, + 0.017437143251299858, + 0.027729704976081848, + 0.033131491392850876, + -0.023648768663406372, + -0.09862323105335236, + -0.01997990719974041, + -0.033152688294649124, + -0.07046021521091461, + -0.05555316433310509, + -0.047007106244564056, + -0.021450188010931015, + -0.03387681022286415, + -0.020579148083925247, + -0.03682161867618561, + 0.008291703648865223, + 0.0029484278056770563, + 0.13811059296131134, + -0.07175931334495544, + -0.08145073801279068, + 0.02687775157392025, + -0.027365561574697495, + 0.0036886800080537796, + 0.005922569893300533, + 0.005613791290670633, + 0.03286024555563927, + 0.04038694128394127, + 0.036597270518541336, + -0.07959999889135361, + 0.1381988525390625, + -0.016586050391197205, + 0.04023020714521408, + 0.006254240404814482, + 0.026925157755613327, + -0.0032328299712389708, + -0.027113351970911026, + -0.07066406309604645, + 0.001707974704913795, + -0.10024702548980713, + 0.04581880569458008, + 0.11189113557338715, + 0.019028089940547943, + -0.037405695766210556, + 0.056574709713459015, + 0.031899452209472656, + 0.05944286286830902, + -0.053292177617549896, + 0.008786843158304691, + -0.009389014914631844, + -0.027773907408118248, + 0.09049458801746368, + -0.05090628191828728, + -0.12048327177762985, + 0.0385843925178051, + -0.02444409765303135, + -0.009912839159369469, + 0.04351227357983589, + -0.05278000980615616, + 0.0039530908688902855, + -0.08625023066997528, + -0.016398483887314796, + 0.060632865875959396, + -0.057137664407491684, + 0.02904394082725048, + -0.02748492732644081, + -0.007496559992432594, + -0.07773277163505554, + 6.9532171440718e-34, + -0.019753742963075638, + 0.044813722372055054, + -0.0749882385134697, + 0.013152413070201874, + -0.10677534341812134, + 0.028453079983592033, + 0.050004929304122925, + -0.04735630005598068, + 0.025142883881926537, + 0.02449852228164673, + 0.008044246584177017, + 0.027018466964364052, + -0.0404902845621109, + -0.023511381819844246, + 0.07822554558515549, + -0.005327061749994755, + 0.05489259585738182, + 0.06389960646629333, + 0.020108459517359734, + -0.03195968642830849, + -0.008587771095335484, + -0.04872917756438255, + -0.008859353139996529, + 0.005351224448531866, + 0.015759382396936417, + 0.027336303144693375, + 0.05831839144229889, + 0.012297185137867928, + -0.007109432015568018, + -0.040044933557510376, + 0.022092126309871674, + -0.0022238814271986485, + 0.02089497074484825, + 0.07942842692136765, + -0.06264710426330566, + -0.021335188299417496, + -0.04108070954680443, + -0.0789080560207367, + 0.11157864332199097, + -0.00970754399895668, + 0.07116976380348206, + 0.04968535155057907, + 0.08598215878009796, + 0.038292478770017624, + 0.012329446151852608, + 0.04695902019739151, + 0.016923747956752777, + 0.03688732162117958, + -0.03241301327943802, + 0.01183044258505106, + 0.004810096230357885, + -0.0006585688679479063, + 0.0014046216383576393, + -0.004312945529818535, + -0.08424883335828781, + -0.049505382776260376, + 0.10523757338523865, + 0.016123268753290176, + 0.03358018025755882, + 0.03047862835228443, + -0.014070916920900345, + -0.01448033470660448, + -0.008687413297593594, + 0.03779648244380951, + -0.012556832283735275, + -0.02575784921646118, + 0.06647924333810806, + -0.07624798268079758, + 0.010643945075571537, + -0.006706297863274813, + 0.08056893199682236, + 0.10677089542150497, + 0.05039180815219879, + -0.02559588849544525, + 0.07265349477529526, + -0.04187425598502159, + 0.026197748258709908, + -0.0017542806454002857, + -0.015582007355988026, + -0.050773024559020996, + -0.06098557263612747, + 0.003923265263438225, + -0.0028087643440812826, + 0.030322110280394554, + 0.0031141226645559072, + 0.005903025157749653, + -0.026525219902396202, + 0.03680989891290665, + 0.03620989993214607, + 0.015880873426795006, + 0.00615326315164566, + -0.012544791214168072, + -0.014818170107901096, + 0.004498633556067944, + -0.061819445341825485, + -2.2189990289689376e-08, + -0.07041129469871521, + -0.043507836759090424, + -0.0024891658686101437, + -0.010174010880291462, + 0.044964563101530075, + 0.025825252756476402, + 0.025336841121315956, + -0.01224895752966404, + -0.029198843985795975, + -0.09968651831150055, + 0.0125019121915102, + 0.06802096962928772, + -0.06454905867576599, + -0.015135911293327808, + 0.12453192472457886, + 0.037945155054330826, + -0.062237098813056946, + 0.04127167910337448, + -0.03872312977910042, + -0.012213753536343575, + -0.06206158176064491, + 0.013805467635393143, + 0.01359914056956768, + 0.08005636930465698, + -0.05371277779340744, + -0.008416682481765747, + -0.01724802888929844, + 0.13206827640533447, + 0.05945803225040436, + 0.030578985810279846, + 0.056227605789899826, + 0.02795148827135563, + -0.014432129450142384, + -0.01604766957461834, + -0.009343147277832031, + -0.01307753100991249, + -0.07245100289583206, + 0.018193304538726807, + 0.02394486963748932, + 0.12361583113670349, + -0.015422140248119831, + 0.030561422929167747, + -0.008030530996620655, + 0.005486710462719202, + -0.024608174338936806, + 0.0674285814166069, + 0.04451368376612663, + 0.00020527411834336817, + -0.09509528428316116, + -0.11457028239965439, + -0.028031207621097565, + 0.05835044011473656, + 0.00377403455786407, + 0.06481314450502396, + -0.029784414917230606, + 0.07946684211492538, + 0.006192816887050867, + -0.008611606433987617, + -0.08386880159378052, + 0.016254357993602753, + 0.09197834134101868, + 0.07702526450157166, + 0.05097194015979767, + 0.0692499577999115 + ], + "arrow-bend-up-left-bold||directional,pointer,pointing,arrowhead,reply,re": [ + 0.009019083343446255, + -0.043566521257162094, + -0.026172226294875145, + 0.0076554701663553715, + -0.03422381356358528, + -0.028575347736477852, + 0.038322821259498596, + 0.057074617594480515, + 0.0017891759052872658, + 0.007562169339507818, + 0.010634134523570538, + 0.07270612567663193, + -0.009072894230484962, + 0.021827057003974915, + -0.05067286640405655, + 0.05583618953824043, + -0.0754561722278595, + 0.03408140689134598, + 0.03985557705163956, + 0.0436883419752121, + 0.03674514219164848, + -0.010594581253826618, + -0.03893470764160156, + 0.024302927777171135, + -0.004603780340403318, + 0.04140574485063553, + 0.06718558818101883, + 0.016816599294543266, + -0.030458610504865646, + -0.08433894068002701, + -0.073915995657444, + 0.0023324068170040846, + -0.04246455058455467, + 0.050964340567588806, + -0.1026517003774643, + 0.013209576718509197, + 0.05614667385816574, + 0.0008762690704315901, + -0.03966765105724335, + 0.033668991178274155, + -0.014890963211655617, + -0.002316376892849803, + 0.0019724504090845585, + -0.005954017397016287, + 0.08884230256080627, + 0.06263089925050735, + -0.08258625864982605, + 0.025250544771552086, + 0.01874244026839733, + 0.07571439445018768, + -0.03918364271521568, + -0.07219305634498596, + -0.08246829360723495, + 0.04145459830760956, + 0.05134013667702675, + 0.08016718178987503, + -0.04839237779378891, + -0.007054009474813938, + 0.08671140670776367, + 0.03179427981376648, + 0.060585442930459976, + -0.05910838767886162, + 0.019338032230734825, + 0.02779223397374153, + 0.021674931049346924, + -0.041702110320329666, + -0.016711249947547913, + 0.01539601944386959, + -0.02536441572010517, + 0.013402806594967842, + -0.0002611812960822135, + -0.05101941153407097, + -0.0579010434448719, + -0.05079478770494461, + 0.02058590017259121, + -0.05734419450163841, + 0.0502777062356472, + 0.00965145044028759, + 0.03901628777384758, + -0.0145290307700634, + -0.08908485621213913, + -0.013881020247936249, + -0.0415298268198967, + 0.07136983424425125, + 0.04864440858364105, + 0.06398317217826843, + -0.07050015032291412, + -0.040745124220848083, + 0.015682926401495934, + 0.03198926895856857, + -0.015230574645102024, + -0.03645036369562149, + -0.015606780536472797, + -0.02947324514389038, + 0.008973237127065659, + -0.003884125966578722, + 0.07100977748632431, + -0.11708351969718933, + -0.10645736753940582, + 0.08221793174743652, + 0.013333047740161419, + 0.0054034157656133175, + 0.044215548783540726, + -0.08270222693681717, + -0.015968240797519684, + -0.001039027818478644, + -0.03124365210533142, + -0.04477672651410103, + -0.019069449976086617, + -0.044914793223142624, + -0.0732211023569107, + -0.14019307494163513, + 0.0014135127421468496, + -0.06899476051330566, + -0.007192601449787617, + -0.051089752465486526, + -0.12788504362106323, + -0.017057226970791817, + 0.07950353622436523, + -0.03238959237933159, + 0.019907215610146523, + -0.03828463330864906, + -0.07323188334703445, + -0.006339722778648138, + -0.034614432603120804, + -0.0008703023777343333, + -0.04158153384923935, + -3.149095366581167e-33, + 0.04973797872662544, + 0.0686236172914505, + 0.0024011617060750723, + 0.017449380829930305, + -0.01672513224184513, + -0.010006620548665524, + -0.039129454642534256, + -0.026824332773685455, + -0.11446258425712585, + -0.006509498227387667, + 0.13506220281124115, + -0.02008301205933094, + -0.02425645850598812, + 0.05717727169394493, + 0.03238163888454437, + -0.08035717159509659, + 0.04004925861954689, + 0.06670139729976654, + -0.12490508705377579, + -0.01092995423823595, + -0.054341576993465424, + 0.09870602935552597, + -0.049732983112335205, + -0.026541251689195633, + -0.003300717566162348, + -0.02111070230603218, + -0.0031928066164255142, + -0.010368756018579006, + -0.08553308993577957, + 0.010731825605034828, + 0.035773489624261856, + 0.038665033876895905, + -0.01942889392375946, + -0.07025592029094696, + -0.00620467122644186, + -0.02537325583398342, + -0.06369253993034363, + -0.05082967132329941, + -0.026007860898971558, + -0.0053715514950454235, + -0.04276736080646515, + -0.023386096581816673, + -0.059190746396780014, + -0.010026741772890091, + 0.010292429476976395, + 0.102622389793396, + -0.0668162927031517, + -0.07220035791397095, + 0.029205290600657463, + -0.03568607196211815, + 0.020659247413277626, + 0.012969446368515491, + 0.016494182869791985, + 0.007715714164078236, + 0.03604671731591225, + 0.0024653393775224686, + -0.06898878514766693, + 0.13908468186855316, + -0.0322832316160202, + 0.05746086314320564, + 0.02807156927883625, + 0.03310917690396309, + 0.009173093363642693, + -0.02996770665049553, + -0.057723209261894226, + -0.01937790773808956, + -0.12648284435272217, + 0.03619871661067009, + 0.12466909736394882, + 0.03669273853302002, + -0.022177357226610184, + 0.053223446011543274, + 0.05733013525605202, + 0.055976755917072296, + -0.06616903841495514, + 0.0034230994060635567, + -0.01569206267595291, + -0.018691906705498695, + 0.08086388558149338, + -0.0603892058134079, + -0.12754160165786743, + 0.03730746731162071, + -0.03932062163949013, + 0.004050321877002716, + 0.04425396770238876, + -0.06425774097442627, + 0.017979010939598083, + -0.10275611281394958, + -0.023951133713126183, + 0.05760747939348221, + -0.07590515166521072, + 0.013166713528335094, + -0.03629839047789574, + 0.0027238994371145964, + -0.060974717140197754, + 1.0270574241397608e-33, + -0.021698756143450737, + 0.07709396630525589, + -0.1091507151722908, + 0.019534165039658546, + -0.1281120479106903, + 0.03523529693484306, + 0.06698919087648392, + 0.0009767523733898997, + 0.036292724311351776, + 0.013926248997449875, + 0.004076178185641766, + 0.024675702676177025, + -0.009917911142110825, + -0.007138350512832403, + 0.06413819640874863, + -0.005094850901514292, + 0.04832547903060913, + 0.043327413499355316, + -0.003177412087097764, + -0.039557356387376785, + -0.01757916621863842, + -0.04202922061085701, + -0.004062270279973745, + 0.018203478306531906, + 0.013265838846564293, + 0.01839963160455227, + 0.06828833371400833, + -0.0015299456426873803, + -0.0009171804413199425, + -0.03486770763993263, + 0.022644229233264923, + 0.011964588426053524, + 0.03111620619893074, + 0.0737430676817894, + -0.03634451702237129, + -0.017376122996211052, + -0.016125541180372238, + -0.0862111821770668, + 0.08725292980670929, + -0.0029953336343169212, + 0.09373671561479568, + 0.04358793795108795, + 0.07968252152204514, + 0.05841813236474991, + 0.022769926115870476, + 0.020249180495738983, + -0.007701263763010502, + 0.02371044270694256, + -0.01990360952913761, + 0.004665471613407135, + 0.004107538610696793, + -0.03171328827738762, + -0.0026790343690663576, + -0.02411872148513794, + -0.08530599623918533, + -0.059313226491212845, + 0.08704336732625961, + 0.02333179861307144, + 0.0488048791885376, + 0.019791774451732635, + -0.029760083183646202, + -0.03703587129712105, + 0.03190011903643608, + 0.024990294128656387, + 0.01242572721093893, + -0.02804025448858738, + 0.05315234139561653, + -0.06690005213022232, + 0.027157582342624664, + -0.016429495066404343, + 0.11880270391702652, + 0.10195457190275192, + 0.04199871048331261, + -0.02563789114356041, + 0.0931781679391861, + -0.04206066578626633, + 0.022283660247921944, + -0.012456238269805908, + -0.0633062869310379, + -0.027744175866246223, + -0.06050189584493637, + 0.008837088011205196, + 0.004046270158141851, + 0.06645117700099945, + -0.009744754992425442, + -0.0009395142551511526, + -0.03308872506022453, + 0.05201727896928787, + 0.04787331447005272, + 0.03539566323161125, + 0.02236941084265709, + 0.0026912030298262835, + 0.007957398891448975, + 0.025784118101000786, + -0.03411241993308067, + -2.3064679055551096e-08, + -0.08619904518127441, + -0.05256779491901398, + 0.016484176740050316, + 0.009670412167906761, + 0.05095050856471062, + 0.04392580687999725, + 0.038706835359334946, + -0.00770718976855278, + -0.030962195247411728, + -0.09722046554088593, + 0.029729457572102547, + 0.07476448267698288, + -0.06646116822957993, + -0.038204409182071686, + 0.13566169142723083, + 0.039291203022003174, + -0.06249058246612549, + 0.02467181347310543, + -0.04372489079833031, + -0.021085789427161217, + -0.011608319357037544, + 0.020244725048542023, + -0.0019441075855866075, + 0.08562508970499039, + -0.0531701035797596, + -0.01880396157503128, + -0.018384117633104324, + 0.11780835688114166, + 0.014708706177771091, + 0.013252819888293743, + 0.046924374997615814, + 0.022859664633870125, + -0.001990083372220397, + -0.03966807946562767, + -0.03179161623120308, + 0.013713234104216099, + -0.043298281729221344, + 0.03975916653871536, + 0.03024383820593357, + 0.11266260594129562, + -0.01245688647031784, + 0.026060160249471664, + -0.027131477370858192, + 0.009311530739068985, + -0.012332203797996044, + 0.07254407554864883, + 0.035684142261743546, + -0.016992192715406418, + -0.07780453562736511, + -0.1382230520248413, + -0.01918691396713257, + 0.03606691583991051, + 0.015463236719369888, + 0.039411500096321106, + -0.05012042075395584, + 0.08008681237697601, + 0.012722764164209366, + -0.017430607229471207, + -0.04989476129412651, + 0.01777549460530281, + 0.08583027124404907, + 0.11451500654220581, + 0.04402054473757744, + 0.04010807350277901 + ], + "arrow-bend-up-right-bold||directional,pointer,pointing,arrowhead,forward,fwd": [ + 0.027791213244199753, + -0.028139039874076843, + -0.06190108135342598, + -0.0009073765831999481, + -0.012234214693307877, + -0.0012427788460627198, + 0.011219538748264313, + 0.06825435906648636, + -0.013319389894604683, + 0.023573316633701324, + 0.03941972926259041, + 0.09519558399915695, + -0.004149997606873512, + 0.007540824357420206, + -0.031736090779304504, + 0.06368529796600342, + -0.11382295936346054, + 0.05391957238316536, + 0.03875061124563217, + 0.03902263566851616, + 0.00779770640656352, + -0.00015977976727299392, + -0.027611594647169113, + 0.011283131316304207, + -0.048520270735025406, + 0.03291575610637665, + 0.08062689751386642, + 0.020533103495836258, + -0.034701328724622726, + -0.07182475179433823, + -0.05846541002392769, + 0.001498032477684319, + -0.04308247193694115, + 0.05481395870447159, + -0.0992635041475296, + -0.018980294466018677, + 0.02974129095673561, + 0.001892915228381753, + -0.020025363191962242, + 0.022950228303670883, + 0.0068917605094611645, + -0.02068648673593998, + 0.02105036936700344, + -0.023745864629745483, + 0.04649131000041962, + 0.07111194729804993, + -0.06876615434885025, + 0.010957574471831322, + 0.03670670464634895, + 0.07803378999233246, + -0.026682119816541672, + -0.07420367002487183, + -0.05249128118157387, + 0.04163360595703125, + 0.06522540748119354, + 0.08343221247196198, + -0.06907721608877182, + -0.018109044060111046, + 0.06437952816486359, + 0.047108884900808334, + 0.05675248056650162, + -0.03920649737119675, + -0.004340344108641148, + 0.022117966786026955, + 0.016990674659609795, + -0.04290063679218292, + -0.002585145179182291, + 0.020247023552656174, + -0.010976160876452923, + 0.01254991628229618, + 0.012280946597456932, + -0.03337414562702179, + -0.04103173315525055, + -0.083798348903656, + 0.03031761944293976, + -0.0712016299366951, + 0.055375825613737106, + 0.035180386155843735, + 0.032178934663534164, + -0.0542973130941391, + -0.08226145058870316, + 0.028509197756648064, + -0.031206930056214333, + 0.056869253516197205, + 0.021144825965166092, + 0.07442878186702728, + -0.08866970241069794, + -0.041779790073633194, + 0.0013314621755853295, + 0.018353158608078957, + -0.013092957437038422, + -0.03522808104753494, + -0.05115070566534996, + -0.036647919565439224, + 0.007705637253820896, + -0.01941225305199623, + 0.06487435102462769, + -0.09270304441452026, + -0.10071529448032379, + 0.062294915318489075, + -0.008809749037027359, + 0.010102164931595325, + 0.05561903864145279, + -0.05833275616168976, + -0.0165408942848444, + 0.008342137560248375, + -0.017305469140410423, + -0.012244876474142075, + -0.020306527614593506, + -0.02326342463493347, + -0.053613632917404175, + -0.11995001137256622, + -0.017895080149173737, + -0.07020507007837296, + -0.0207285825163126, + -0.04393430054187775, + -0.14793841540813446, + -0.020716292783617973, + 0.0764712393283844, + -0.017169881612062454, + 0.026516497135162354, + -0.034848205745220184, + -0.0322628915309906, + 0.0007386531797237694, + -0.06543660163879395, + -0.012449521571397781, + -0.0495089516043663, + -3.575179742659599e-33, + 0.03846469521522522, + 0.05644522234797478, + -0.008395154029130936, + 0.011603444814682007, + -0.009140778332948685, + -0.015004047192633152, + -0.02554268389940262, + -0.04183342680335045, + -0.10404734313488007, + 0.053130682557821274, + 0.14902937412261963, + -0.006429134402424097, + -0.06793949753046036, + 0.03343266621232033, + 0.05151590332388878, + -0.13612425327301025, + 0.03725385293364525, + 0.05966796353459358, + -0.116802878677845, + 0.005288728978484869, + -0.006943814922124147, + 0.09508692473173141, + -0.04332965239882469, + -0.05785393714904785, + -0.007281797006726265, + -0.00019938747573178262, + -0.030893728137016296, + 0.028131015598773956, + -0.054170284420251846, + 0.023843765258789062, + 0.02275656722486019, + 0.023585230112075806, + -0.028505511581897736, + -0.08821989595890045, + 0.00015647416876163334, + -0.03599465265870094, + -0.090284064412117, + -0.07367812097072601, + -0.05987749993801117, + -0.02582399733364582, + -0.026947150006890297, + -0.03454655408859253, + -0.048472512513399124, + -0.009029166772961617, + -0.004265155177563429, + 0.13789987564086914, + -0.07024665176868439, + -0.06966537982225418, + 0.04079589247703552, + 0.00565520441159606, + 0.004693540744483471, + -0.001105415285564959, + 0.011466797441244125, + 0.02286350540816784, + 0.030045386403799057, + 0.005448051728308201, + -0.07485457509756088, + 0.10913015902042389, + -0.03810185566544533, + 0.0683886855840683, + -0.0016780465375632048, + 0.03718667849898338, + -0.003333567874506116, + -0.03906593471765518, + -0.08243784308433533, + -0.016132395714521408, + -0.08626638352870941, + 0.04395883157849312, + 0.11495819687843323, + 0.04350361227989197, + -0.03888636827468872, + 0.05667737498879433, + 0.05500089377164841, + 0.0655939057469368, + -0.04714424908161163, + 0.025999318808317184, + 0.0017399933421984315, + -0.03790657967329025, + 0.06635767221450806, + -0.05282074585556984, + -0.14284919202327728, + 0.030151087790727615, + -0.0712510496377945, + 0.009097754955291748, + 0.053726907819509506, + -0.045730311423540115, + -0.0010607076110318303, + -0.08386120945215225, + -0.01154392585158348, + 0.03748251497745514, + -0.053839147090911865, + 0.03067086450755596, + -0.01834956742823124, + -0.006212329491972923, + -0.05103737860918045, + 7.49553008529122e-34, + -0.02310478314757347, + 0.05806310474872589, + -0.06468767672777176, + 0.00040295562939718366, + -0.0901845246553421, + 0.03212514892220497, + 0.06968583911657333, + -0.04543152451515198, + 0.0338839553296566, + 0.02516549453139305, + -0.005843773949891329, + 0.03746859356760979, + -0.0370677188038826, + -0.035106685012578964, + 0.06889711320400238, + -0.010634608566761017, + 0.060612741857767105, + 0.047081273049116135, + 0.012832755222916603, + -0.013076510280370712, + -0.02352537214756012, + -0.02796350046992302, + -0.009769383817911148, + 0.012651397846639156, + 0.023391127586364746, + 0.035377658903598785, + 0.06919340044260025, + 0.035360224545001984, + 0.0004702867299783975, + -0.01117210928350687, + 0.02794777601957321, + -0.029211798682808876, + 0.04689338803291321, + 0.08004623651504517, + -0.0671306625008583, + -0.04824526235461235, + -0.03274669498205185, + -0.0516885481774807, + 0.0888790711760521, + -0.026121744886040688, + 0.0787108987569809, + 0.058936506509780884, + 0.08983544260263443, + 0.04999718442559242, + 0.0024693321902304888, + 0.039520177990198135, + -0.004208685830235481, + 0.014631645753979683, + -0.017233235761523247, + 0.010011590085923672, + 0.007821820676326752, + -0.002428839448839426, + -0.0017488728044554591, + -0.031834885478019714, + -0.08471526205539703, + -0.04640687629580498, + 0.09102010726928711, + 0.03488689288496971, + 0.032729372382164, + 0.04348678141832352, + -0.015468575060367584, + -0.028716057538986206, + 0.011655688285827637, + 0.03694052994251251, + -0.012964551337063313, + -0.051680006086826324, + 0.03996693342924118, + -0.08086766302585602, + -0.006099844817072153, + 0.008239688351750374, + 0.07993233948945999, + 0.09828625619411469, + 0.04675588011741638, + -0.03407788276672363, + 0.08019384741783142, + -0.04457782208919525, + 0.018494149670004845, + -0.02707192301750183, + -0.016470812261104584, + -0.02776130475103855, + -0.03454430028796196, + -0.0017189848003908992, + -0.012940122745931149, + 0.06451259553432465, + -0.0258267130702734, + 0.007090470753610134, + -0.028439177200198174, + 0.03851864114403725, + 0.06902865320444107, + -0.0037929024547338486, + 0.015649236738681793, + 0.019231406971812248, + 0.005549018736928701, + 0.007896803319454193, + -0.07131592929363251, + -2.3624435740998706e-08, + -0.07456516474485397, + -0.056129876524209976, + 0.0014333664439618587, + -0.016582170501351357, + 0.041567083448171616, + 0.03695215284824371, + 0.029323158785700798, + -0.013533512130379677, + -0.06489774584770203, + -0.083833247423172, + 0.04215921834111214, + 0.09761663526296616, + -0.062499143183231354, + -0.026785869151353836, + 0.11361028999090195, + 0.019079716876149178, + -0.04716678708791733, + 0.039726030081510544, + -0.040384113788604736, + -0.01785583794116974, + -0.06943003088235855, + 0.018531877547502518, + 0.006305376999080181, + 0.084647998213768, + -0.07048838585615158, + 0.002802558010444045, + -0.009498978964984417, + 0.09817307442426682, + 0.05028239265084267, + 0.02052588202059269, + 0.07986246794462204, + 0.047578565776348114, + 0.003916680347174406, + -0.015580270439386368, + -0.03919536620378494, + -0.0024639510083943605, + -0.06655340641736984, + 0.035219524055719376, + 0.003882765071466565, + 0.1367434561252594, + -0.0010790078667923808, + 0.032637108117341995, + -0.0074558681808412075, + 0.012153573334217072, + -0.04862998053431511, + 0.07510367035865784, + 0.04529079794883728, + -0.002864985726773739, + -0.10421202331781387, + -0.14311020076274872, + -0.02572142705321312, + 0.05531159043312073, + -0.007952065207064152, + 0.06910020112991333, + -0.04748883098363876, + 0.0785248875617981, + 0.008879237808287144, + -0.0031412411481142044, + -0.07511989772319794, + -0.00470867520198226, + 0.07100186496973038, + 0.07603586465120316, + 0.06339886784553528, + 0.052419718354940414 + ], + "arrow-circle-down-bold||directional,pointer,pointing,arrowhead": [ + 0.0429040864109993, + -0.020736409351229668, + -0.09444518387317657, + 0.02074221521615982, + 0.015129770152270794, + -0.06539043039083481, + 0.07667471468448639, + 0.016377367079257965, + 0.027919232845306396, + -0.029899893328547478, + 0.001767989480867982, + 0.09148187935352325, + 0.04657484591007233, + -0.001030068495310843, + 0.003839022945612669, + 0.011791810393333435, + -0.07273072004318237, + 0.0482742004096508, + 0.05612388625741005, + 0.008814920671284199, + -0.015601655468344688, + 0.004236659035086632, + -0.010817560367286205, + 0.06927377730607986, + -0.0412820428609848, + 0.03652917966246605, + 0.07963401824235916, + -0.0018554143607616425, + -0.022071177139878273, + -0.06669828295707703, + -0.1045454815030098, + -0.03485574945807457, + -0.041068509221076965, + 0.03278486058115959, + -0.09730550646781921, + -0.011018899269402027, + 0.0028430279344320297, + 0.024569565430283546, + -0.018125101923942566, + 0.01657846011221409, + 0.06869823485612869, + 0.008549993857741356, + 0.022782962769269943, + -0.03518134728074074, + 0.008626111783087254, + 0.08855979889631271, + -0.10833238810300827, + -0.02803141623735428, + 0.020363984629511833, + 0.0765233263373375, + -0.07293572276830673, + -0.07387253642082214, + -0.06298471242189407, + -0.024730414152145386, + 0.07868758589029312, + 0.054645489901304245, + -0.034080080687999725, + -0.025194242596626282, + 0.07443057000637054, + 0.0006914125406183302, + 0.07300440967082977, + -0.060400716960430145, + 0.03079075925052166, + 0.009154917672276497, + 0.0372338630259037, + -0.01615937426686287, + -0.02660096436738968, + 0.0037361562717705965, + 0.005439799278974533, + -0.0025978409685194492, + 0.004263991955667734, + -0.04620666801929474, + -0.0205795019865036, + -0.05435726419091225, + -0.02988615818321705, + 0.01425887830555439, + 0.025364462286233902, + 0.07942482829093933, + -0.038688208907842636, + -0.05117211118340492, + -0.026994017884135246, + 0.011933205649256706, + -0.038906581699848175, + 0.08462274819612503, + 0.03320450708270073, + 0.1206946074962616, + -0.06215225160121918, + -0.09713656455278397, + -0.05224243551492691, + -0.002712596207857132, + -0.014031765051186085, + 0.005687724333256483, + -0.044683508574962616, + -0.016268115490674973, + -0.009090638719499111, + -0.04752635210752487, + 0.07364700734615326, + -0.09689398854970932, + -0.13116693496704102, + 0.09518400579690933, + 0.008677905425429344, + 0.009015255607664585, + 0.03701487556099892, + -0.07516507804393768, + -0.030949167907238007, + -0.010030260309576988, + -0.00831612292677164, + -0.06716401129961014, + -0.04125045984983444, + 0.0027248328551650047, + -0.04804454743862152, + -0.13542595505714417, + -0.034768253564834595, + -0.0480208694934845, + -0.03361184149980545, + 0.01283512357622385, + -0.1025492250919342, + -0.0031603947281837463, + 0.09555720537900925, + -0.003814639523625374, + 0.03643114119768143, + -0.025622259825468063, + -0.06925211101770401, + -0.021045232191681862, + -0.07382366806268692, + 0.01073041558265686, + -0.027022596448659897, + -3.671470729749191e-33, + 0.04880470409989357, + 0.062089335173368454, + 0.006147765554487705, + -0.009046675637364388, + -0.037559591233730316, + -0.03226269409060478, + -0.025921262800693512, + -0.04911947622895241, + -0.03360305353999138, + 0.011748908087611198, + 0.12607601284980774, + -0.04333335906267166, + -0.048950474709272385, + 0.07804491370916367, + 0.023976102471351624, + -0.09163052588701248, + 0.06240326538681984, + 0.021671665832400322, + -0.13567321002483368, + -0.01467856578528881, + -0.013462486676871777, + 0.05568832531571388, + -0.1310337483882904, + -0.05300017073750496, + -0.036418016999959946, + 0.021089795976877213, + -0.019484655931591988, + 0.0022552928421646357, + -0.0728108361363411, + 0.026525942608714104, + 0.005166391842067242, + 0.022444196045398712, + 0.0062410952523350716, + -0.05202031880617142, + 0.0004514237225521356, + 0.018737906590104103, + -0.1048935055732727, + -0.010050229728221893, + -0.03405896574258804, + -0.043224651366472244, + -0.01356942392885685, + -0.05830906704068184, + -0.07852993905544281, + 0.023301593959331512, + -0.004767192993313074, + 0.1483428031206131, + -0.05500508472323418, + -0.09797301888465881, + -0.02348681539297104, + -0.008602865040302277, + -0.016284294426441193, + 0.003999040462076664, + -0.009864107705652714, + -0.009433737024664879, + 0.0241217203438282, + 0.0012926222989335656, + -0.06703267991542816, + 0.09641313552856445, + -0.038318246603012085, + 0.010856554843485355, + 0.007884657941758633, + -0.004996808245778084, + 0.0028589728754013777, + -0.039848342537879944, + -0.07103823870420456, + 0.05058981478214264, + -0.12575934827327728, + 0.015894047915935516, + 0.09007374942302704, + -0.01334634143859148, + 0.019923290237784386, + 0.03577159717679024, + 0.07648798078298569, + 0.04213529825210571, + -0.029836716130375862, + 0.05511403828859329, + -0.007024284917861223, + -0.03855055943131447, + 0.11409910768270493, + -0.09281954914331436, + -0.0793665200471878, + 0.06356797367334366, + -0.033922262489795685, + -0.0019794113468378782, + 0.07498595118522644, + -0.06235365569591522, + 0.009217693470418453, + -0.024337954819202423, + -0.009213141165673733, + 0.07539276033639908, + -0.03508852422237396, + 0.02379976585507393, + 0.008785383775830269, + 0.02946709282696247, + -0.08925621956586838, + 4.0259965198793315e-34, + -0.006760797463357449, + 0.0592353381216526, + -0.03891806676983833, + 0.009338983334600925, + -0.12978114187717438, + 0.02747577801346779, + 0.04001638665795326, + -0.05771974101662636, + -0.01597956009209156, + 0.07275117188692093, + -0.00848555937409401, + 0.01796157844364643, + -0.019143400713801384, + -0.0002491594641469419, + 0.0781753659248352, + 0.017834192141890526, + 0.05750490725040436, + 0.06461677700281143, + 0.015766173601150513, + -0.02923782356083393, + -0.021315360441803932, + -0.02683774195611477, + -0.005589609500020742, + 0.016152137890458107, + -0.009489035233855247, + 0.04334282502532005, + 0.07275842130184174, + 0.015298399142920971, + -0.04287196323275566, + -0.03384550288319588, + 0.0054741185158491135, + 0.0006809138576500118, + 0.05325426161289215, + 0.07278864085674286, + -0.0396653451025486, + -0.05465279147028923, + -0.027896445244550705, + -0.07659485191106796, + 0.041050512343645096, + -0.03449722006917, + 0.0013515554601326585, + 0.020448485389351845, + 0.12158753722906113, + 0.018915293738245964, + 0.029805652797222137, + 0.04648197069764137, + 0.057329799979925156, + 0.0292119849473238, + 0.001934191444888711, + 0.024856235831975937, + 0.01652885228395462, + -0.010355577804148197, + 0.009921437129378319, + -0.016874412074685097, + -0.08192228525876999, + -0.008476206101477146, + 0.07958582788705826, + 0.06535445153713226, + 0.02680794708430767, + 0.018591653555631638, + -0.030999358743429184, + -0.0558483861386776, + -0.002322091255337, + 0.09565267711877823, + -0.004962161183357239, + -0.02359648048877716, + 0.06097586825489998, + -0.053089920431375504, + 0.001423523761332035, + 0.005715447943657637, + 0.027080044150352478, + 0.1062263548374176, + 0.057611823081970215, + -0.010812878608703613, + 0.054744888097047806, + -0.059223804622888565, + 0.06213736534118652, + 0.010515420697629452, + -0.04072485864162445, + -0.01641426794230938, + -0.08176110684871674, + 0.006772560067474842, + -0.03089294768869877, + 0.038639042526483536, + 0.004289030563086271, + 0.023833470419049263, + -0.060345541685819626, + 0.015015601180493832, + 0.0025500799529254436, + 0.003445018082857132, + -0.01688154973089695, + 0.004723566118627787, + -0.0014083647402003407, + -0.020768335089087486, + 0.0036068004556000233, + -2.0344987916587343e-08, + -0.0469977967441082, + -0.0012073972029611468, + -0.005799880251288414, + 0.00388375879265368, + 0.04127577319741249, + -0.008135315962135792, + -0.004783395677804947, + -0.019206196069717407, + -0.012378163635730743, + -0.07073929905891418, + 0.013086395338177681, + 0.06989481300115585, + -0.07036163657903671, + -0.03096674382686615, + 0.10169165581464767, + 0.04088800773024559, + -0.0266195610165596, + 0.03603653237223625, + -0.004747559316456318, + -0.01403712760657072, + -0.008986318483948708, + -0.007072075270116329, + 0.031049566343426704, + 0.03358334302902222, + -0.012122275307774544, + -0.013580911792814732, + 0.01952064037322998, + 0.15185779333114624, + 0.05598335340619087, + 0.00368029554374516, + 0.06285818666219711, + 0.04065961018204689, + -0.03276284411549568, + 0.004637771751731634, + -0.018272923305630684, + -0.06327209621667862, + -0.04739027097821236, + 0.04472992569208145, + 0.05039290338754654, + 0.11689574271440506, + -0.05112273246049881, + 0.03366764634847641, + -0.017297832295298576, + -0.010756335221230984, + -0.035249367356300354, + 0.08681418746709824, + 0.02474639005959034, + -0.016131499782204628, + -0.09972774237394333, + -0.1039387509226799, + -0.04088840261101723, + 0.05577399209141731, + 0.05145474150776863, + 0.07913549244403839, + -0.01135209295898676, + 0.011377102695405483, + 0.030698580667376518, + 0.016423417255282402, + -0.11787091940641403, + 0.017816290259361267, + 0.08208172023296356, + 0.06795825064182281, + 0.025090841576457024, + 0.05646912381052971 + ], + "arrow-circle-down-left-bold||directional,pointer,pointing,arrowhead": [ + 0.04721296951174736, + -0.02627001702785492, + -0.09144307672977448, + 0.01798865757882595, + 0.009959953837096691, + -0.052426692098379135, + 0.06864138692617416, + 0.0157910343259573, + 0.013980180025100708, + -0.03019966185092926, + 0.019273681566119194, + 0.0871058776974678, + 0.04431924596428871, + 0.007962456904351711, + -0.011847993358969688, + 0.01642252691090107, + -0.08482509106397629, + 0.03791271895170212, + 0.048850253224372864, + 0.021228544414043427, + -0.01808932237327099, + 0.0009781286353245378, + -0.031417544931173325, + 0.06091324985027313, + -0.03059501200914383, + 0.0498298779129982, + 0.07211513072252274, + -0.0002912893833126873, + -0.017939887940883636, + -0.07508902996778488, + -0.1003904715180397, + -0.029867121949791908, + -0.04582731053233147, + 0.035773713141679764, + -0.10496575385332108, + -0.020638125017285347, + 0.0011602516751736403, + 0.02135458029806614, + -0.018016422167420387, + 0.010340712033212185, + 0.0580507256090641, + -0.00947016105055809, + 0.02316744066774845, + -0.027150914072990417, + 0.013552682474255562, + 0.0889783576130867, + -0.12269272655248642, + -0.022150807082653046, + 0.029170123860239983, + 0.07284501194953918, + -0.08524946868419647, + -0.06988421082496643, + -0.07279444485902786, + -0.003388897283002734, + 0.07463672757148743, + 0.05333651229739189, + -0.031260717660188675, + -0.02967139333486557, + 0.08534841984510422, + 0.0024562207981944084, + 0.07753987610340118, + -0.05261769890785217, + 0.029474016278982162, + 0.01202039048075676, + 0.03065321408212185, + -0.030116776004433632, + -0.028782984241843224, + 0.008328705094754696, + 0.017972704023122787, + -0.010258245281875134, + 0.005187130067497492, + -0.042467668652534485, + -0.029577981680631638, + -0.05487420782446861, + -0.01143144816160202, + 0.005028072278946638, + 0.028776932507753372, + 0.07398548722267151, + -0.03602853789925575, + -0.04959041625261307, + -0.0369209386408329, + 0.021439440548419952, + -0.033128101378679276, + 0.08565670251846313, + 0.04333176836371422, + 0.1174352690577507, + -0.06263813376426697, + -0.07994316518306732, + -0.034248512238264084, + -0.0023558991961181164, + -0.022815575823187828, + 0.005448698066174984, + -0.03469078987836838, + -0.028954699635505676, + -0.0025556201580911875, + -0.044514309614896774, + 0.06338213384151459, + -0.09579651057720184, + -0.12718622386455536, + 0.094243623316288, + 0.018112605437636375, + -0.004125889390707016, + 0.0390734001994133, + -0.08030730485916138, + -0.026653887704014778, + -0.01652403362095356, + -0.015362481586635113, + -0.0602482445538044, + -0.041028160601854324, + -0.006830878090113401, + -0.04860127344727516, + -0.13337019085884094, + -0.043439168483018875, + -0.060969699174165726, + -0.025890182703733444, + 0.004959900863468647, + -0.12150240689516068, + 0.004225695040076971, + 0.1126895472407341, + -0.008429800160229206, + 0.024740170687437057, + -0.03478322550654411, + -0.0663856789469719, + -0.02249983325600624, + -0.07222925126552582, + 0.010626661591231823, + -0.04471801221370697, + -3.861697307122916e-33, + 0.04384325072169304, + 0.049626946449279785, + 0.010121901519596577, + -0.010566778481006622, + -0.03859057277441025, + -0.023076942190527916, + -0.026576103642582893, + -0.039065923541784286, + -0.034491539001464844, + 0.0135499844327569, + 0.13172319531440735, + -0.03589114546775818, + -0.048307377845048904, + 0.08150377869606018, + 0.034680627286434174, + -0.1019829735159874, + 0.0554593987762928, + 0.02402045577764511, + -0.13645528256893158, + -0.02182055450975895, + -0.01745651476085186, + 0.07359497994184494, + -0.11120457202196121, + -0.0469636470079422, + -0.028852295130491257, + 0.02414828911423683, + -0.017397044226527214, + -0.005361597985029221, + -0.07753501832485199, + 0.025219043716788292, + 0.015462091192603111, + 0.028574200347065926, + -0.0030969439540058374, + -0.05950663983821869, + 0.009496713057160378, + 0.016462616622447968, + -0.09692224860191345, + -0.015276385471224785, + -0.02967074327170849, + -0.046523988246917725, + -0.022029446437954903, + -0.06096331775188446, + -0.0805252268910408, + 0.014574824832379818, + -0.0035416479222476482, + 0.14479653537273407, + -0.05249933525919914, + -0.08481018245220184, + -0.0034832488745450974, + -0.01671554334461689, + -0.020591698586940765, + 0.0017046451102942228, + 0.0009056451381184161, + -0.008521173149347305, + 0.02562698721885681, + 0.008016563020646572, + -0.06597040593624115, + 0.10197734832763672, + -0.040871936827898026, + 0.012185998260974884, + 0.007147173397243023, + 0.011784987524151802, + 0.0011083721183240414, + -0.042336106300354004, + -0.08117543160915375, + 0.03716597706079483, + -0.124482661485672, + 0.0038927134592086077, + 0.10161783546209335, + -0.010502191260457039, + 0.00885880645364523, + 0.03554453328251839, + 0.08892886340618134, + 0.049993161112070084, + -0.03817644342780113, + 0.045295219868421555, + -0.01835630089044571, + -0.03242407366633415, + 0.08358968794345856, + -0.08416256308555603, + -0.08894141018390656, + 0.06761141866445541, + -0.037530843168497086, + -0.004721877630800009, + 0.06594450771808624, + -0.0734369307756424, + 0.010446541011333466, + -0.03190736472606659, + -0.005822567734867334, + 0.06305612623691559, + -0.04277057573199272, + 0.023720471188426018, + -8.871262252796441e-05, + 0.032888177782297134, + -0.09611901640892029, + 3.871286310454252e-34, + -0.010771100409328938, + 0.051928263157606125, + -0.051573026925325394, + 0.0101900864392519, + -0.1280062198638916, + 0.02784538082778454, + 0.050648994743824005, + -0.05645345523953438, + -0.0030123379547148943, + 0.07854542881250381, + -0.00684222299605608, + 0.02314085140824318, + -0.019296981394290924, + -0.006273510865867138, + 0.07058902084827423, + 0.02140672318637371, + 0.057356227189302444, + 0.058451928198337555, + 0.019983695819973946, + -0.036600444465875626, + -0.031567029654979706, + -0.02779299207031727, + -0.002220829715952277, + 0.03398468717932701, + -0.005440395791083574, + 0.042339351028203964, + 0.07506271451711655, + 9.228039562003687e-05, + -0.04496057331562042, + -0.022485479712486267, + 0.009467619471251965, + -0.003126117866486311, + 0.06677192449569702, + 0.0734582468867302, + -0.033623162657022476, + -0.06697209924459457, + -0.02520361915230751, + -0.0743148997426033, + 0.046542488038539886, + -0.02498164027929306, + 0.012637208215892315, + 0.02260390669107437, + 0.12483759224414825, + 0.031308189034461975, + 0.03274596855044365, + 0.047466497868299484, + 0.060618773102760315, + 0.030366677790880203, + -0.00483380351215601, + 0.021526357159018517, + 0.018295006826519966, + 0.004524285439401865, + 0.004940531682223082, + -0.03611520305275917, + -0.07492969185113907, + -0.021747658029198647, + 0.06545761972665787, + 0.0631752759218216, + 0.04626629874110222, + 0.017462288960814476, + -0.02743356116116047, + -0.05851267650723457, + 0.006617696024477482, + 0.08508129417896271, + -0.010037281550467014, + -0.0315963551402092, + 0.05304926261305809, + -0.056029148399829865, + -0.0028537826146930456, + 0.0005292530986480415, + 0.035130247473716736, + 0.11426404863595963, + 0.044831328094005585, + -0.02121085114777088, + 0.04839382693171501, + -0.04987622797489166, + 0.05271928384900093, + 0.0011564843589439988, + -0.043554045259952545, + -0.0143058430403471, + -0.07742763310670853, + 0.0035092334728688, + -0.020177321508526802, + 0.04149956256151199, + -0.0029803088400512934, + 0.022381309419870377, + -0.04570950195193291, + 0.00551569601520896, + 0.016109900549054146, + 0.0009229120332747698, + -0.008079376071691513, + 0.015663133934140205, + 0.003978936467319727, + -0.00882815569639206, + 0.00028293507057242095, + -2.2038697977677657e-08, + -0.041840098798274994, + -0.01601020060479641, + -0.001788063789717853, + 0.00249978294596076, + 0.031284891068935394, + -0.0069521511904895306, + 0.011301089078187943, + -0.007423876319080591, + -0.0200370904058218, + -0.058347977697849274, + 0.022978801280260086, + 0.0811334028840065, + -0.07521365582942963, + -0.028791366145014763, + 0.11153791099786758, + 0.03315094858407974, + -0.03133336827158928, + 0.0395641028881073, + -0.005693124607205391, + -0.012141301296651363, + 0.007315468043088913, + -0.01887035369873047, + 0.028760988265275955, + 0.030634064227342606, + -0.010153456591069698, + -0.005902828183025122, + 0.02077181078493595, + 0.14525213837623596, + 0.052099090069532394, + 0.00265507772564888, + 0.06108523905277252, + 0.02997029386460781, + -0.03070611134171486, + -0.002447302220389247, + -0.018485061824321747, + -0.04878617078065872, + -0.05508825182914734, + 0.047547001391649246, + 0.0384887270629406, + 0.11179777979850769, + -0.03935423120856285, + 0.03090677224099636, + -0.023694461211562157, + -0.007111700717359781, + -0.03161605820059776, + 0.08607763797044754, + 0.027185989543795586, + -0.009471154771745205, + -0.10026930272579193, + -0.11832594871520996, + -0.04500092566013336, + 0.0620725043118, + 0.049368422478437424, + 0.06758711487054825, + -0.009076585993170738, + 0.02705635502934456, + 0.03381195291876793, + 0.005325937643647194, + -0.10750051587820053, + 0.01646217703819275, + 0.08612911403179169, + 0.09900934249162674, + 0.02778351679444313, + 0.05857634171843529 + ], + "arrow-circle-down-right-bold||directional,pointer,pointing,arrowhead": [ + 0.04591314122080803, + -0.026249084621667862, + -0.09657038003206253, + 0.014505126513540745, + 0.004576068837195635, + -0.04404624179005623, + 0.06784476339817047, + 0.01946420595049858, + 0.012906664982438087, + -0.0292817410081625, + 0.02698664739727974, + 0.09211437404155731, + 0.046302128583192825, + 0.004635380115360022, + -0.008885259740054607, + 0.015205794014036655, + -0.08580320328474045, + 0.03892697021365166, + 0.04816032201051712, + 0.01516113430261612, + -0.006679642479866743, + -0.002018711995333433, + -0.03125642240047455, + 0.06022254005074501, + -0.028825176879763603, + 0.051326580345630646, + 0.06734715402126312, + -0.00043629106949083507, + -0.01787339150905609, + -0.07357767969369888, + -0.10509659349918365, + -0.030658580362796783, + -0.04166518896818161, + 0.035669464617967606, + -0.10325522720813751, + -0.01610742136836052, + -0.0018143471097573638, + 0.021410221233963966, + -0.016934748739004135, + 0.007882901467382908, + 0.05335472524166107, + -0.013835854828357697, + 0.019695255905389786, + -0.026119422167539597, + 0.009608716703951359, + 0.09090671688318253, + -0.11862114816904068, + -0.02219322696328163, + 0.023015843704342842, + 0.07252827286720276, + -0.08513705432415009, + -0.06769126653671265, + -0.07556329667568207, + -0.0010753922397270799, + 0.08107268065214157, + 0.06128125637769699, + -0.031532011926174164, + -0.025847701355814934, + 0.08873222768306732, + 0.0035878000780940056, + 0.0729028657078743, + -0.05365580692887306, + 0.02680901251733303, + 0.01687159575521946, + 0.03170947730541229, + -0.02541208080947399, + -0.029393933713436127, + 0.005421262700110674, + 0.013621238991618156, + -0.0068432786501944065, + 0.006482985801994801, + -0.04073711112141609, + -0.026849260553717613, + -0.05283074453473091, + -0.013554397039115429, + 0.005124514456838369, + 0.02754336968064308, + 0.0740676298737526, + -0.04181676730513573, + -0.04908008873462677, + -0.03620490804314613, + 0.0233165230602026, + -0.033473119139671326, + 0.09327999502420425, + 0.04238659888505936, + 0.11778296530246735, + -0.06029136851429939, + -0.07632533460855484, + -0.028502145782113075, + -0.0019405564526095986, + -0.01966392993927002, + -0.0029603803995996714, + -0.0377817340195179, + -0.02220759727060795, + -0.009907110594213009, + -0.04497654363512993, + 0.06281396746635437, + -0.09843140840530396, + -0.1255398690700531, + 0.08904247730970383, + 0.01962216943502426, + -0.01206518616527319, + 0.04250537231564522, + -0.07883515954017639, + -0.026229409500956535, + -0.021457592025399208, + -0.013185384683310986, + -0.05948938801884651, + -0.036215003579854965, + -4.811887629330158e-05, + -0.048545196652412415, + -0.1304861456155777, + -0.04442552849650383, + -0.058468833565711975, + -0.028886759653687477, + 0.004813886247575283, + -0.11998127400875092, + -0.0013092851731926203, + 0.10973595082759857, + -0.006566233467310667, + 0.024235371500253677, + -0.025302095338702202, + -0.06585211306810379, + -0.026953281834721565, + -0.07370731979608536, + 0.007366526871919632, + -0.04606792703270912, + -3.719498122845928e-33, + 0.042085617780685425, + 0.04659683629870415, + 0.013901318423449993, + -0.010361825115978718, + -0.03528065234422684, + -0.026046553626656532, + -0.03458761051297188, + -0.04104013741016388, + -0.034991852939128876, + 0.02282150462269783, + 0.132583349943161, + -0.037172622978687286, + -0.049530692398548126, + 0.08739013969898224, + 0.03880180045962334, + -0.10159675776958466, + 0.05633779615163803, + 0.02349373884499073, + -0.13481979072093964, + -0.023426972329616547, + -0.0227940883487463, + 0.07329542934894562, + -0.10740724205970764, + -0.04835128039121628, + -0.02732018195092678, + 0.02567303739488125, + -0.01636992208659649, + -0.005073233041912317, + -0.07802706956863403, + 0.024424558505415916, + 0.008014676161110401, + 0.021256932988762856, + -0.00025469245156273246, + -0.05558931082487106, + 0.0097006531432271, + 0.012657925486564636, + -0.09689879417419434, + -0.01427321694791317, + -0.03286757692694664, + -0.05014945566654205, + -0.02390183135867119, + -0.05833985283970833, + -0.08531223237514496, + 0.015362353064119816, + 0.0028063945937901735, + 0.1396041214466095, + -0.04876081645488739, + -0.08430372923612595, + -0.003623359836637974, + -0.015248402953147888, + -0.01791354827582836, + 0.0043454417027533054, + 0.0019628251902759075, + -0.0011575381504371762, + 0.025974737480282784, + 0.009366297163069248, + -0.06504079699516296, + 0.11238081008195877, + -0.04504632577300072, + 0.013793526217341423, + 0.006544552743434906, + 0.011681235395371914, + 0.005424111150205135, + -0.044921450316905975, + -0.07808039337396622, + 0.03919748216867447, + -0.12450092285871506, + 0.004103202372789383, + 0.10497178882360458, + -0.007009398192167282, + 0.006315615028142929, + 0.039310868829488754, + 0.08335205167531967, + 0.053463201969861984, + -0.042809776961803436, + 0.04545694217085838, + -0.02433869056403637, + -0.03246304765343666, + 0.08537515252828598, + -0.07875535637140274, + -0.09429988265037537, + 0.06564440578222275, + -0.04211585223674774, + -0.010021479800343513, + 0.059418149292469025, + -0.07720489799976349, + 0.010426855646073818, + -0.034104473888874054, + -0.0025026057846844196, + 0.05709732323884964, + -0.04348957538604736, + 0.027122672647237778, + 0.0017416581977158785, + 0.028563540428876877, + -0.0955396369099617, + 3.010188025663963e-34, + -0.009821068495512009, + 0.05164376646280289, + -0.04352106899023056, + 0.014807689934968948, + -0.13084474205970764, + 0.03239817917346954, + 0.054550740867853165, + -0.05535057187080383, + -0.003973465412855148, + 0.08380632102489471, + -0.003628756385296583, + 0.022980161011219025, + -0.019821256399154663, + -0.008831494487822056, + 0.07440782338380814, + 0.0209680013358593, + 0.05622655525803566, + 0.06090198829770088, + 0.026706313714385033, + -0.034564483910799026, + -0.032529305666685104, + -0.035225365310907364, + -0.008242123760282993, + 0.03431423753499985, + -0.005570468958467245, + 0.042661797255277634, + 0.07986684143543243, + -9.17919896892272e-05, + -0.03751346841454506, + -0.02127492055296898, + 0.01117583829909563, + -0.009076996706426144, + 0.05694980174303055, + 0.0780084952712059, + -0.035718876868486404, + -0.06761164218187332, + -0.029478702694177628, + -0.06939651817083359, + 0.043465401977300644, + -0.02675786241889, + 0.013645299710333347, + 0.023437388241291046, + 0.13032568991184235, + 0.03273216634988785, + 0.026032675057649612, + 0.04829161986708641, + 0.05479125678539276, + 0.03002164326608181, + -0.008934369310736656, + 0.014845247380435467, + 0.016264136880636215, + 0.003803492058068514, + 0.008173282258212566, + -0.035109296441078186, + -0.07442347705364227, + -0.02016785740852356, + 0.07011756300926208, + 0.05868935212492943, + 0.03987150266766548, + 0.020251499488949776, + -0.023126140236854553, + -0.06244892254471779, + 0.00098178640473634, + 0.08592214435338974, + -0.010556399822235107, + -0.026349155232310295, + 0.0486147366464138, + -0.05738444626331329, + -0.010829787701368332, + 0.0003158317704219371, + 0.0319162979722023, + 0.10857433080673218, + 0.0420246459543705, + -0.023183315992355347, + 0.04370760917663574, + -0.057797666639089584, + 0.05097898468375206, + 0.003076660679653287, + -0.04404522851109505, + -0.019177718088030815, + -0.07103727012872696, + 0.009532952681183815, + -0.024318212643265724, + 0.04431614279747009, + -0.004537062253803015, + 0.023434694856405258, + -0.049767330288887024, + 0.009775510989129543, + 0.0183391235768795, + -0.0012477788841351867, + -0.00540215102955699, + 0.022116465494036674, + 0.0016682366840541363, + -0.002737488131970167, + -0.0030189601238816977, + -2.19582414473507e-08, + -0.04758867993950844, + -0.01439474243670702, + 0.0024512324016541243, + 0.00046972656855359674, + 0.034344229847192764, + -0.007767029106616974, + 0.008372344076633453, + -0.005853328853845596, + -0.01952211558818817, + -0.06029442325234413, + 0.019571267068386078, + 0.07759547978639603, + -0.07666996121406555, + -0.02425806224346161, + 0.11991189420223236, + 0.03189985454082489, + -0.03266522288322449, + 0.03848542273044586, + -0.0019510226557031274, + -0.014641106128692627, + 0.0038231685757637024, + -0.020127197727560997, + 0.0267928559333086, + 0.030841879546642303, + -0.009551133029162884, + -0.0028924194630235434, + 0.017758598551154137, + 0.14611567556858063, + 0.04702340066432953, + 0.00458949152380228, + 0.0617949552834034, + 0.030000263825058937, + -0.02683234214782715, + -0.005191524513065815, + -0.010960735380649567, + -0.044262003153562546, + -0.05379696935415268, + 0.04305611923336983, + 0.04361831769347191, + 0.10927573591470718, + -0.036329858005046844, + 0.025923894718289375, + -0.0251188762485981, + -0.005662648472934961, + -0.03138413652777672, + 0.08599080890417099, + 0.03233642503619194, + -0.009474621154367924, + -0.10247845202684402, + -0.12180795520544052, + -0.0473768450319767, + 0.06592634320259094, + 0.0519108772277832, + 0.0658227875828743, + -0.010353287681937218, + 0.029932327568531036, + 0.03343639895319939, + -0.0008452754700556397, + -0.10083892196416855, + 0.014877201057970524, + 0.0859694853425026, + 0.1000252515077591, + 0.025049958378076553, + 0.057503845542669296 + ], + "arrow-circle-left-bold||directional,pointer,pointing,arrowhead": [ + 0.04928714781999588, + -0.035766392946243286, + -0.09565884619951248, + 0.04704806208610535, + 0.03191426768898964, + -0.0686914324760437, + 0.07177938520908356, + -0.0016538079362362623, + 0.02048327960073948, + -0.043517906218767166, + 0.011276482604444027, + 0.08120030164718628, + 0.03504176065325737, + 0.0009192650322802365, + -0.007124077528715134, + 0.014666778035461903, + -0.08661195635795593, + 0.01984393782913685, + 0.06054119020700455, + 0.01846666820347309, + -0.03220365568995476, + 0.018600698560476303, + -0.013791459612548351, + 0.07171911746263504, + -0.03283539041876793, + 0.0483427420258522, + 0.08215584605932236, + -0.0043462407775223255, + -0.023130079731345177, + -0.07488679885864258, + -0.08366706222295761, + -0.031038368120789528, + -0.05281895399093628, + 0.02968219667673111, + -0.09258340299129486, + -0.014864202588796616, + -0.005690862890332937, + 0.01596127636730671, + -0.022241506725549698, + 0.003581495024263859, + 0.06999601423740387, + 0.000624735897872597, + 0.03222915157675743, + -0.039362430572509766, + 0.009885468520224094, + 0.08629417419433594, + -0.12040571123361588, + -0.017495663836598396, + 0.04068950191140175, + 0.07602629065513611, + -0.09159725904464722, + -0.08644729107618332, + -0.06871341168880463, + -0.0277258213609457, + 0.06918486207723618, + 0.0488458015024662, + -0.03629845008254051, + -0.03442072123289108, + 0.0814843699336052, + -0.005744115449488163, + 0.06687086820602417, + -0.047166042029857635, + 0.040872011333703995, + 0.010705463588237762, + 0.022323623299598694, + -0.03353739157319069, + -0.014612293802201748, + 0.0096989581361413, + 0.015592253766953945, + -0.011719492264091969, + 0.008000282570719719, + -0.03780992329120636, + -0.03479529172182083, + -0.05685517564415932, + -0.0017601089784875512, + 0.007774235215038061, + 0.02704981528222561, + 0.08351311832666397, + -0.04015743359923363, + -0.04272810369729996, + -0.04153855890035629, + -0.0004633041098713875, + -0.026919016614556313, + 0.07132024317979813, + 0.05899038538336754, + 0.13015946745872498, + -0.06589285284280777, + -0.09651949256658554, + -0.03657056763768196, + 0.0028869183734059334, + -0.018391765654087067, + 0.020191214978694916, + -0.042321328073740005, + -0.03167923167347908, + 0.012275208719074726, + -0.038546714931726456, + 0.05617908015847206, + -0.08097647875547409, + -0.14187608659267426, + 0.09488331526517868, + 0.030852029100060463, + 0.014620276167988777, + 0.03222673013806343, + -0.07171616703271866, + -0.012149758636951447, + 0.005517894867807627, + -0.01974037103354931, + -0.050034668296575546, + -0.06464419513940811, + -0.0019410363165661693, + -0.042002227157354355, + -0.14405186474323273, + -0.04575781151652336, + -0.06105569005012512, + -0.01954473927617073, + 0.00701269693672657, + -0.12916940450668335, + 0.013397731818258762, + 0.11089880764484406, + -0.001345501164905727, + 0.017689289525151253, + -0.04779810085892677, + -0.06520663946866989, + -0.022517580538988113, + -0.07314702868461609, + 0.012208650819957256, + -0.03968599811196327, + -3.971352195613419e-33, + 0.023368069902062416, + 0.05861447751522064, + 0.008090273477137089, + -0.018469281494617462, + -0.05552379786968231, + -0.02720184251666069, + -0.00020018698705825955, + -0.026084864512085915, + -0.022728336974978447, + -0.00675196060910821, + 0.1267346441745758, + -0.03183068335056305, + -0.039911240339279175, + 0.0657322108745575, + 0.024840541183948517, + -0.08759140223264694, + 0.05154339596629143, + 0.027902282774448395, + -0.13940314948558807, + -0.008167046122252941, + -0.01126519963145256, + 0.05738728493452072, + -0.13136817514896393, + -0.06251813471317291, + -0.04430174082517624, + 0.008117961697280407, + -0.004320091567933559, + 0.00100385129917413, + -0.06708362698554993, + 0.028369786217808723, + 0.022061489522457123, + 0.04664323851466179, + 0.01047465205192566, + -0.04961124062538147, + 0.007025794591754675, + 0.009134355001151562, + -0.08042561262845993, + -0.023043207824230194, + -0.02570239268243313, + -0.024120548740029335, + -0.008774971589446068, + -0.04222886636853218, + -0.058669161051511765, + 0.005623652134090662, + -0.013452849350869656, + 0.15915372967720032, + -0.061379704624414444, + -0.07470444589853287, + -0.0007833301788195968, + -0.012412145733833313, + -0.020753847435116768, + 0.014941208064556122, + 0.007964099757373333, + -0.014907727017998695, + 0.022933674976229668, + -0.004246204160153866, + -0.057835936546325684, + 0.08562520146369934, + -0.03467685356736183, + -0.00446137972176075, + 2.2839637949800817e-06, + 0.01665395125746727, + -0.0014675187412649393, + -0.03326583281159401, + -0.08671854436397552, + 0.04484285041689873, + -0.1285589188337326, + 0.008362571708858013, + 0.09546288102865219, + -0.031943079084157944, + 0.027041500434279442, + 0.02847519889473915, + 0.08947868645191193, + 0.039855118840932846, + -0.03213943541049957, + 0.03669329732656479, + -0.02598913200199604, + -0.021286875009536743, + 0.09255730360746384, + -0.08313845843076706, + -0.07208506017923355, + 0.06656549125909805, + -0.03994001820683479, + 0.011586088687181473, + 0.06347966194152832, + -0.07840330898761749, + 0.004783873446285725, + -0.029476702213287354, + -0.0059834932908415794, + 0.09035657346248627, + -0.01598213240504265, + 0.019665997475385666, + -0.008947922848165035, + 0.05372416600584984, + -0.10207202285528183, + 3.5420018737851207e-34, + -0.00644297432154417, + 0.05217861756682396, + -0.043074753135442734, + 0.007480757776647806, + -0.11913822591304779, + 0.01633402891457081, + 0.0398542620241642, + -0.05814007669687271, + -0.006601396016776562, + 0.07553432881832123, + -0.006211413536220789, + 0.021726343780755997, + -0.037346385419368744, + 0.0019735312089323997, + 0.0794248878955841, + 0.00404010247439146, + 0.05968469753861427, + 0.057697854936122894, + 0.0009480869630351663, + -0.03839331492781639, + -0.02570505626499653, + -0.020559003576636314, + 0.016750609502196312, + 0.03316892683506012, + -0.006533426232635975, + 0.04271101579070091, + 0.06123504042625427, + -0.0030049020424485207, + -0.05995982885360718, + -0.023265250027179718, + 0.0006340620457194746, + 0.002428887877613306, + 0.07118085771799088, + 0.0646510198712349, + -0.016222743317484856, + -0.06631479412317276, + -0.016296153888106346, + -0.09309624135494232, + 0.06566079705953598, + -0.02208261378109455, + 0.016060518100857735, + 0.009831208735704422, + 0.09996230155229568, + 0.02597123198211193, + 0.03927861526608467, + 0.043658170849084854, + 0.07766839116811752, + 0.028388405218720436, + -0.00120789825450629, + 0.02748451568186283, + 0.027186375111341476, + 0.019087450578808784, + 0.019115325063467026, + -0.0416775643825531, + -0.0672394409775734, + -0.023947902023792267, + 0.048056650906801224, + 0.06169569492340088, + 0.05423836037516594, + 0.0034685959108173847, + -0.02653457596898079, + -0.049307867884635925, + 0.0041904509998857975, + 0.07874990999698639, + -0.008364210836589336, + -0.04608987271785736, + 0.07096749544143677, + -0.06712692230939865, + 0.023940885439515114, + 0.0035805003717541695, + 0.034635432064533234, + 0.11136212944984436, + 0.04035414382815361, + -0.010350954718887806, + 0.047503191977739334, + -0.03774162381887436, + 0.0650886595249176, + -0.006926732137799263, + -0.040095627307891846, + 0.002358785131946206, + -0.08431296795606613, + -0.0010543063981458545, + -0.01460628304630518, + 0.022580472752451897, + -0.0006831726641394198, + 0.011551509611308575, + -0.019906556233763695, + -0.019844237715005875, + 0.006397731602191925, + -0.00039405692950822413, + -0.008887912146747112, + -0.00013652995403390378, + -0.010171524249017239, + -0.017992202192544937, + 0.009816981852054596, + -2.0622586305307777e-08, + -0.04574816673994064, + -0.007517633028328419, + -0.003864741651341319, + 0.013987618498504162, + 0.028039494529366493, + -0.02782497927546501, + 0.00521560525521636, + -0.015207149088382721, + -0.03378245234489441, + -0.040441468358039856, + 0.020164864137768745, + 0.07848702371120453, + -0.07408121973276138, + -0.04556674510240555, + 0.09428241848945618, + 0.0361575186252594, + -0.02782447636127472, + 0.029275475069880486, + -0.014348652213811874, + -0.002285667695105076, + 0.0029417267069220543, + -0.010258621536195278, + 0.04146028310060501, + 0.013232098892331123, + -0.014828291721642017, + -0.014475582167506218, + 0.03454393148422241, + 0.13297118246555328, + 0.05448649451136589, + -8.886575233191252e-05, + 0.04954202100634575, + 0.009873393923044205, + -0.04256146773695946, + 0.009539976716041565, + -0.03703383356332779, + -0.07865522056818008, + -0.05890950188040733, + 0.05073702707886696, + 0.03619004786014557, + 0.10764332115650177, + -0.047298915684223175, + 0.046548064798116684, + -0.008419782854616642, + -0.013580583967268467, + -0.036329250782728195, + 0.08467935025691986, + 0.02075415849685669, + -0.008043954148888588, + -0.10133285820484161, + -0.11167828738689423, + -0.05100301280617714, + 0.05594092234969139, + 0.038149066269397736, + 0.07130976766347885, + 0.0005649001686833799, + 0.009349711239337921, + 0.03843570128083229, + 0.020830119028687477, + -0.10608658939599991, + 0.023076817393302917, + 0.09423535317182541, + 0.09389545023441315, + 0.031219422817230225, + 0.06232086196541786 + ], + "arrow-circle-right-bold||directional,pointer,pointing,arrowhead": [ + 0.04821719601750374, + -0.037777721881866455, + -0.10777328908443451, + 0.0467233844101429, + 0.027488846331834793, + -0.05906905233860016, + 0.07002685219049454, + 0.0006292733596637845, + 0.01878317818045616, + -0.044602591544389725, + 0.020838961005210876, + 0.08507677167654037, + 0.03469955176115036, + -0.0027274293825030327, + -0.003418716136366129, + 0.012996139004826546, + -0.08981052041053772, + 0.018986700102686882, + 0.0633506029844284, + 0.011059029959142208, + -0.017364537343382835, + 0.018015235662460327, + -0.013495235703885555, + 0.07077940553426743, + -0.03184330835938454, + 0.051406119018793106, + 0.07940454035997391, + -0.007626296952366829, + -0.024669498205184937, + -0.0728003978729248, + -0.08627165853977203, + -0.03331785649061203, + -0.051634397357702255, + 0.028564926236867905, + -0.0903058648109436, + -0.010890645906329155, + -0.010756445117294788, + 0.017966007813811302, + -0.02312132716178894, + -0.004551759455353022, + 0.06535544991493225, + -0.0074186478741467, + 0.029422499239444733, + -0.04323336109519005, + 0.005651101469993591, + 0.08817792683839798, + -0.11744718998670578, + -0.017325198277831078, + 0.03553793579339981, + 0.07829423248767853, + -0.09202983975410461, + -0.0861995741724968, + -0.07413241267204285, + -0.026287931948900223, + 0.078160859644413, + 0.056702833622694016, + -0.038760386407375336, + -0.030969414860010147, + 0.08327091485261917, + -0.005991708487272263, + 0.06057322025299072, + -0.05270207300782204, + 0.03943328186869621, + 0.018166465684771538, + 0.02457539737224579, + -0.02616111934185028, + -0.01650800183415413, + 0.007066106423735619, + 0.01098891906440258, + -0.00927647389471531, + 0.006292703095823526, + -0.03558952733874321, + -0.032396987080574036, + -0.05342894047498703, + -0.0013351505622267723, + 0.008226567879319191, + 0.024577196687459946, + 0.08257944136857986, + -0.047136835753917694, + -0.03971560299396515, + -0.043352577835321426, + -0.00029645906761288643, + -0.029368458315730095, + 0.07773429900407791, + 0.059742819517850876, + 0.13204073905944824, + -0.06382153183221817, + -0.09146255999803543, + -0.026735596358776093, + 0.007383984513580799, + -0.013059038668870926, + 0.014621584676206112, + -0.04329001158475876, + -0.02452624775469303, + 0.005022016353905201, + -0.03698563575744629, + 0.05552035942673683, + -0.08381591737270355, + -0.14206953346729279, + 0.0870126485824585, + 0.03473848104476929, + 0.006705686915665865, + 0.033624548465013504, + -0.0711611658334732, + -0.010398286394774914, + 0.00032747816294431686, + -0.016639191657304764, + -0.047993287444114685, + -0.05718114227056503, + 0.005700150970369577, + -0.0426965057849884, + -0.14560826122760773, + -0.04976661130785942, + -0.05812426283955574, + -0.022456027567386627, + 0.009640968404710293, + -0.1276169866323471, + 0.008719125762581825, + 0.10860712081193924, + 0.0020478658843785524, + 0.016738664358854294, + -0.03525809198617935, + -0.06788864731788635, + -0.02613748237490654, + -0.07567735761404037, + 0.010876079089939594, + -0.041003767400979996, + -3.8495974294911234e-33, + 0.017583368346095085, + 0.05790729075670242, + 0.012401329353451729, + -0.018441328778862953, + -0.05293663963675499, + -0.031048089265823364, + -0.004524510353803635, + -0.027485985308885574, + -0.02214832231402397, + 0.0015585327055305243, + 0.12539735436439514, + -0.035111602395772934, + -0.039202794432640076, + 0.07230027765035629, + 0.02729380689561367, + -0.08779654651880264, + 0.052691902965307236, + 0.02847439981997013, + -0.1353815644979477, + -0.00896729901432991, + -0.018462661653757095, + 0.056738127022981644, + -0.13035397231578827, + -0.06421379745006561, + -0.04270567744970322, + 0.005782073829323053, + -0.0030432329513132572, + 0.002208488527685404, + -0.06524354219436646, + 0.027546221390366554, + 0.016022317111492157, + 0.0392010398209095, + 0.013081767596304417, + -0.04484040290117264, + 0.00887106079608202, + 0.004273359198123217, + -0.08031285554170609, + -0.020066378638148308, + -0.028368815779685974, + -0.028293708339333534, + -0.005705744493752718, + -0.0395878441631794, + -0.0628795400261879, + 0.007072889246046543, + -0.004946458153426647, + 0.15463116765022278, + -0.06013704463839531, + -0.07182296365499496, + 0.002889410126954317, + -0.010421541519463062, + -0.01750626415014267, + 0.020303945988416672, + 0.008597064763307571, + -0.0032783548813313246, + 0.023779328912496567, + -0.0024616785813122988, + -0.05604788288474083, + 0.09589651972055435, + -0.042028237134218216, + -0.005948008503764868, + -0.0008424378465861082, + 0.018453527241945267, + 0.00685920612886548, + -0.0398179329931736, + -0.08752407133579254, + 0.04752330854535103, + -0.12866316735744476, + 0.008750732988119125, + 0.09720950573682785, + -0.029174095019698143, + 0.025024674832820892, + 0.03587395325303078, + 0.08682841807603836, + 0.0437445305287838, + -0.036323029547929764, + 0.037147846072912216, + -0.0338008888065815, + -0.019000817090272903, + 0.0950048491358757, + -0.07587387412786484, + -0.07876008003950119, + 0.06357091665267944, + -0.04639961197972298, + 0.010490961372852325, + 0.05471881479024887, + -0.08480707556009293, + 0.003585353959351778, + -0.027907319366931915, + -0.0003337326634209603, + 0.08544369786977768, + -0.013620911166071892, + 0.02555328980088234, + -0.01012426894158125, + 0.05208255723118782, + -0.10360534489154816, + 2.0556179657628875e-34, + -0.0023808195255696774, + 0.05312511697411537, + -0.03333301469683647, + 0.012752458453178406, + -0.12104374915361404, + 0.0216695424169302, + 0.039262209087610245, + -0.06021164357662201, + -0.007934939116239548, + 0.08036269247531891, + -0.0021572064142674208, + 0.018465178087353706, + -0.03812900930643082, + 0.00027968332869932055, + 0.08193812519311905, + 0.004344551358371973, + 0.05547187849879265, + 0.06040763854980469, + 0.00878243800252676, + -0.03799382969737053, + -0.02718976140022278, + -0.026691609993577003, + 0.014571248553693295, + 0.033720239996910095, + -0.008211763575673103, + 0.0435958057641983, + 0.06571919471025467, + -0.006280860863626003, + -0.054901838302612305, + -0.019865533336997032, + 0.0015231829602271318, + -0.005487794987857342, + 0.06068107485771179, + 0.07094927132129669, + -0.015189212746918201, + -0.06739460676908493, + -0.016726665198802948, + -0.08975052088499069, + 0.06693722307682037, + -0.024858027696609497, + 0.018238894641399384, + 0.010001237504184246, + 0.102665975689888, + 0.029476230964064598, + 0.03136839717626572, + 0.04603232443332672, + 0.07852014154195786, + 0.028560491278767586, + -0.0061869011260569096, + 0.02020971290767193, + 0.02232423424720764, + 0.01772056333720684, + 0.021493883803486824, + -0.04217301681637764, + -0.06498131155967712, + -0.02247983030974865, + 0.05207905173301697, + 0.054690420627593994, + 0.0492432527244091, + 0.003779190592467785, + -0.020495925098657608, + -0.052166055887937546, + -0.0014083926798775792, + 0.08053440600633621, + -0.010795503854751587, + -0.04419644922018051, + 0.0697590783238411, + -0.06948045641183853, + 0.019401224330067635, + 0.003221237100660801, + 0.031172866001725197, + 0.10419885069131851, + 0.03965117782354355, + -0.00981346145272255, + 0.0423833429813385, + -0.04730493202805519, + 0.06648649275302887, + -0.00822096411138773, + -0.03835523501038551, + -0.003711894154548645, + -0.07588358968496323, + 0.00765170669183135, + -0.01993015594780445, + 0.025707222521305084, + -0.003969157580286264, + 0.01363573782145977, + -0.020643869414925575, + -0.01748030073940754, + 0.009650655090808868, + -0.003970824182033539, + -0.012200048193335533, + 0.010218817740678787, + -0.01669350638985634, + -0.01494062040001154, + 0.0068751792423427105, + -2.0800252187314072e-08, + -0.05153409764170647, + -0.006823402363806963, + 0.0009024443570524454, + 0.01172455120831728, + 0.03216928616166115, + -0.0327301099896431, + 0.003030107356607914, + -0.015039954334497452, + -0.03545264154672623, + -0.03944859653711319, + 0.014846648089587688, + 0.0732056200504303, + -0.07656267285346985, + -0.0414838008582592, + 0.10359854251146317, + 0.033261287957429886, + -0.02905782125890255, + 0.02783098816871643, + -0.010603181086480618, + -0.00548845250159502, + -0.0023391067516058683, + -0.01436522789299488, + 0.04079541191458702, + 0.009225457906723022, + -0.011590458452701569, + -0.011474472470581532, + 0.032565247267484665, + 0.13313943147659302, + 0.04819531738758087, + 0.0003474042459856719, + 0.048373088240623474, + 0.0064348094165325165, + -0.04219216853380203, + 0.007785466033965349, + -0.03029896877706051, + -0.07578679174184799, + -0.060438372194767, + 0.04622454196214676, + 0.043834831565618515, + 0.10831138491630554, + -0.045638978481292725, + 0.04524872079491615, + -0.009493539109826088, + -0.013819982297718525, + -0.035337164998054504, + 0.0850910097360611, + 0.029147537425160408, + -0.011790676042437553, + -0.106932632625103, + -0.11706391721963882, + -0.05670280009508133, + 0.059794992208480835, + 0.040058597922325134, + 0.07020777463912964, + -0.0012747824657708406, + 0.012422876432538033, + 0.03776473179459572, + 0.016693737357854843, + -0.0994359701871872, + 0.020407047122716904, + 0.09901939332485199, + 0.09684120118618011, + 0.028405284509062767, + 0.06120241433382034 + ], + "arrow-circle-up-bold||directional,pointer,pointing,arrowhead": [ + 0.030726343393325806, + -0.019680863246321678, + -0.1079699695110321, + 0.019766034558415413, + 0.026279626414179802, + -0.05314069613814354, + 0.06659828871488571, + 0.00701055396348238, + 0.027132472023367882, + -0.02505914308130741, + 0.0012732953764498234, + 0.10764830559492111, + 0.03376518934965134, + -0.010805732570588589, + 0.012403550557792187, + 0.01951080746948719, + -0.07466840744018555, + 0.0429331436753273, + 0.05774441361427307, + 0.009167158044874668, + -0.01605766825377941, + 0.0035766090732067823, + 0.01620667800307274, + 0.07329708337783813, + -0.03191488981246948, + 0.02555963397026062, + 0.0853312686085701, + -0.00027734931791201234, + -0.029694294556975365, + -0.046120136976242065, + -0.10479222238063812, + -0.035459257662296295, + -0.04741351678967476, + 0.009505782276391983, + -0.06877093017101288, + -0.007291794754564762, + 0.01642242819070816, + 0.031972527503967285, + -0.038673773407936096, + 0.005745442118495703, + 0.06223532184958458, + -0.012096133083105087, + 0.022427357733249664, + -0.06382902711629868, + 0.015895742923021317, + 0.0818256288766861, + -0.10797285288572311, + -0.006681408267468214, + 0.03667301684617996, + 0.05961924046278, + -0.07691166549921036, + -0.09349340200424194, + -0.06508159637451172, + -0.02776385098695755, + 0.07405129820108414, + 0.06619779765605927, + -0.045603085309267044, + -0.039475373923778534, + 0.09110665321350098, + -0.009395572356879711, + 0.04459608718752861, + -0.05364491418004036, + 0.053206413984298706, + 0.03468632698059082, + 0.051435403525829315, + -0.025339672341942787, + -0.022483142092823982, + 0.013470212928950787, + 0.0016664194408804178, + -0.004042861517518759, + 0.007130133453756571, + -0.03163578733801842, + -0.028764091432094574, + -0.05481258034706116, + -0.006079702638089657, + 0.011875069700181484, + 0.02091621793806553, + 0.06903047114610672, + -0.0045737167820334435, + -0.04927799850702286, + -0.04341161251068115, + 0.00021163091878406703, + -0.043836597353219986, + 0.08044905215501785, + 0.04760468751192093, + 0.12043974548578262, + -0.06997404992580414, + -0.09354916214942932, + -0.04873168095946312, + 0.011942924931645393, + -0.02401622198522091, + 0.015150346793234348, + -0.04242710769176483, + -0.02143166959285736, + 0.004767994396388531, + -0.045644018799066544, + 0.06931398063898087, + -0.09836709499359131, + -0.13402560353279114, + 0.08511503040790558, + 0.0169772170484066, + 0.009103250689804554, + 0.032155442982912064, + -0.07078912854194641, + -0.027659425511956215, + 0.005418263375759125, + -0.007486783433705568, + -0.043146587908267975, + -0.040716562420129776, + -0.0082229133695364, + -0.04764915257692337, + -0.15273745357990265, + -0.03531406819820404, + -0.04185200110077858, + -0.03630609065294266, + 0.01605023443698883, + -0.10456975549459457, + -0.009555735625326633, + 0.09036322683095932, + -0.006937028374522924, + 0.04793159291148186, + -0.03768936172127724, + -0.07482832670211792, + -0.011502358131110668, + -0.08679742366075516, + 0.011321686208248138, + -0.007956389337778091, + -3.8689956576735836e-33, + 0.04894881322979927, + 0.07326113432645798, + -0.001889184582978487, + -0.01731780730187893, + -0.04366341233253479, + -0.041679542511701584, + -0.017126526683568954, + -0.04058937728404999, + -0.032165687531232834, + 0.011930787935853004, + 0.11161677539348602, + -0.006977802142500877, + -0.05076821148395538, + 0.07631079107522964, + 0.026634089648723602, + -0.09540066868066788, + 0.0701914057135582, + 0.051968980580568314, + -0.12379296869039536, + -0.010341091081500053, + -0.006799997761845589, + 0.037775520235300064, + -0.122348852455616, + -0.05839208513498306, + -0.05000720173120499, + 0.01496876310557127, + -0.027319056913256645, + 0.019012419506907463, + -0.07809238880872726, + 0.02532275579869747, + 0.03413296490907669, + 0.017507905140519142, + -0.006561614573001862, + -0.04567034915089607, + 0.0017489121528342366, + 0.017114166170358658, + -0.09325109422206879, + -0.020216012373566628, + -0.04098528251051903, + -0.035672497004270554, + -0.011275555938482285, + -0.04339566454291344, + -0.0721004381775856, + 0.026184653863310814, + -0.017693327739834785, + 0.1593833565711975, + -0.08690489828586578, + -0.10915244370698929, + -0.007874846458435059, + -0.0009301441023126245, + -0.014473129995167255, + 0.006761068012565374, + -0.004760559182614088, + -0.015092870220541954, + 0.0014758663019165397, + 0.005536509677767754, + -0.05090750381350517, + 0.09489555656909943, + -0.027847720310091972, + 0.00040402961894869804, + -0.004302975721657276, + 0.0005989068886265159, + 0.01054187398403883, + -0.01766079105436802, + -0.07782123982906342, + 0.05364986136555672, + -0.12843351066112518, + 0.015412612818181515, + 0.08235231041908264, + -0.018249867483973503, + 0.00960440095514059, + 0.043478600680828094, + 0.05885692313313484, + 0.06616136431694031, + -0.026340072974562645, + 0.03349998965859413, + -0.025857621803879738, + -0.054604653269052505, + 0.09332652390003204, + -0.07021443545818329, + -0.06545067578554153, + 0.05617169290781021, + -0.025412365794181824, + -0.01282859779894352, + 0.07913743704557419, + -0.071840301156044, + -0.018290773034095764, + -0.0206240676343441, + -0.00874264445155859, + 0.0755922719836235, + -0.00948195531964302, + 0.0384383499622345, + 0.028094466775655746, + 0.03657929226756096, + -0.08866024017333984, + 5.250059909554696e-34, + 0.0015209595439955592, + 0.06352666020393372, + -0.031209329143166542, + -0.00960379559546709, + -0.11719346791505814, + 0.03773064538836479, + 0.046356406062841415, + -0.06258200109004974, + -0.004160684533417225, + 0.039757661521434784, + -0.03600088506937027, + 0.02206934615969658, + -0.004776736721396446, + -0.007142363581806421, + 0.08034385740756989, + 0.017130132764577866, + 0.051437992602586746, + 0.0828169733285904, + 0.009202398359775543, + -0.027914367616176605, + -0.02973090298473835, + -0.04692387953400612, + 0.0013852844713255763, + 0.014012415893375874, + -0.0177273228764534, + 0.04722209647297859, + 0.05295266956090927, + 0.015591361559927464, + -0.04355345666408539, + -0.03607097268104553, + 0.01307651773095131, + 0.002352714305743575, + 0.04375634714961052, + 0.08405335992574692, + -0.02228127419948578, + -0.0503915399312973, + -0.022314690053462982, + -0.09840332716703415, + 0.05859852582216263, + -0.02023312635719776, + 0.02217630110681057, + 0.012637964449822903, + 0.08763670921325684, + 0.029939690604805946, + 0.04032779484987259, + 0.03843479976058006, + 0.06790846586227417, + 0.03608423098921776, + -0.022912075743079185, + 0.034768834710121155, + 0.013373487628996372, + 0.004817381035536528, + 0.01061232015490532, + -0.0182359516620636, + -0.06934934109449387, + -0.006330723408609629, + 0.07429143041372299, + 0.06668736040592194, + 0.04825817048549652, + 0.007529285736382008, + -0.02479008212685585, + -0.033013615757226944, + -0.00877406820654869, + 0.09070827811956406, + -0.014780841767787933, + -0.023423923179507256, + 0.08298974484205246, + -0.06565652042627335, + -0.005425312090665102, + 0.013128750957548618, + 0.04189509525895119, + 0.0965028777718544, + 0.04180547967553139, + -0.007832013070583344, + 0.05130661278963089, + -0.04366603493690491, + 0.07102534919977188, + -0.0037176546175032854, + -0.03578777238726616, + -0.03022509440779686, + -0.09677130728960037, + 0.011543376371264458, + -0.02592603489756584, + 0.05809083580970764, + -0.00504655996337533, + 0.02800470031797886, + -0.02955823577940464, + 0.01478668488562107, + -0.0006588815595023334, + -0.011050817556679249, + 0.00222932081669569, + -0.0037012030370533466, + -0.015702206641435623, + -0.015615283511579037, + 0.008045215159654617, + -1.994257203818961e-08, + -0.04482518881559372, + -0.008795533329248428, + -0.019452383741736412, + -0.0026776986196637154, + 0.048857755959033966, + -0.027742935344576836, + 0.003313451074063778, + -0.01895696297287941, + -0.014226381666958332, + -0.09990807622671127, + 0.00608605332672596, + 0.07405140995979309, + -0.05629587173461914, + -0.04545162245631218, + 0.10178613662719727, + 0.03638940677046776, + -0.025220055133104324, + 0.04636993259191513, + -0.02332535944879055, + -0.004119508899748325, + -0.02090708538889885, + 0.01566903106868267, + 0.0393715426325798, + 0.018575280904769897, + -0.018791507929563522, + -0.017362361773848534, + 0.0033162981271743774, + 0.14034873247146606, + 0.055313605815172195, + 0.004274473525583744, + 0.05753375589847565, + 0.022473169490695, + -0.04905714839696884, + 0.0061216638423502445, + -0.011824674904346466, + -0.049298085272312164, + -0.04851178079843521, + 0.04449696093797684, + 0.035976704210042953, + 0.11098229140043259, + -0.0429673045873642, + 0.035422373563051224, + -0.010547986254096031, + -0.023128945380449295, + -0.0446886382997036, + 0.08918055891990662, + 0.012616397812962532, + -0.021359901875257492, + -0.13474725186824799, + -0.1027093157172203, + -0.051770057529211044, + 0.05180387943983078, + 0.045509062707424164, + 0.06552302837371826, + -0.006684590131044388, + 0.0050819031894207, + 0.0335010327398777, + 0.011617431417107582, + -0.1145961731672287, + 0.02352949231863022, + 0.09458453208208084, + 0.06109423562884331, + 0.023894894868135452, + 0.058449119329452515 + ], + "arrow-circle-up-left-bold||directional,pointer,pointing,arrowhead": [ + 0.039086245000362396, + -0.02416233718395233, + -0.10091187059879303, + 0.020481381565332413, + 0.018922489136457443, + -0.04481998831033707, + 0.061718378216028214, + 0.007201282773166895, + 0.014891490340232849, + -0.027244634926319122, + 0.014728035777807236, + 0.10342174023389816, + 0.03260887786746025, + 0.0019731761422008276, + -0.00432400731369853, + 0.021360095590353012, + -0.08377280831336975, + 0.03337994962930679, + 0.04954636096954346, + 0.020792480558156967, + -0.022413356229662895, + 0.0007469988195225596, + -0.01239294558763504, + 0.06457006186246872, + -0.025642115622758865, + 0.040546659380197525, + 0.08090651780366898, + -0.0009359075920656323, + -0.0243248101323843, + -0.058950021862983704, + -0.10330598056316376, + -0.030428968369960785, + -0.0528583750128746, + 0.0172186978161335, + -0.08228977769613266, + -0.017525620758533478, + 0.012214136309921741, + 0.026652740314602852, + -0.035523150116205215, + 0.003909079357981682, + 0.054779186844825745, + -0.023603592067956924, + 0.023468732833862305, + -0.050740212202072144, + 0.01710362732410431, + 0.08281680941581726, + -0.12077014148235321, + -0.004890915006399155, + 0.04350375011563301, + 0.06165977939963341, + -0.08821343630552292, + -0.08137926459312439, + -0.07323579490184784, + -0.00739049818366766, + 0.07172439247369766, + 0.062232282012701035, + -0.04113763943314552, + -0.040786366909742355, + 0.09854672104120255, + -0.005801766645163298, + 0.057287950068712234, + -0.04792633280158043, + 0.047887593507766724, + 0.030446277931332588, + 0.04203610122203827, + -0.03828275576233864, + -0.023788897320628166, + 0.015136961825191975, + 0.015118052251636982, + -0.009416988119482994, + 0.009027628228068352, + -0.03197246417403221, + -0.034723322838544846, + -0.05384894460439682, + 0.004172959364950657, + 0.00480593042448163, + 0.025723738595843315, + 0.06805755943059921, + -0.010158630087971687, + -0.04808592423796654, + -0.047232333570718765, + 0.011949114501476288, + -0.03628327324986458, + 0.08249154686927795, + 0.05165955051779747, + 0.11835852265357971, + -0.0684308111667633, + -0.07928861677646637, + -0.03293948993086815, + 0.010434349067509174, + -0.030441591516137123, + 0.016345303505659103, + -0.0326395109295845, + -0.032233599573373795, + 0.009112480096518993, + -0.04111757129430771, + 0.059160035103559494, + -0.09635119140148163, + -0.13152161240577698, + 0.08600086718797684, + 0.022686142474412918, + -0.001690130215138197, + 0.037165746092796326, + -0.07457864284515381, + -0.021114498376846313, + -0.0029933813493698835, + -0.01562386006116867, + -0.04249311983585358, + -0.042960673570632935, + -0.013320461846888065, + -0.046906035393476486, + -0.14519210159778595, + -0.04323918744921684, + -0.054528865963220596, + -0.02830401249229908, + 0.008752480149269104, + -0.12130871415138245, + 0.002476789988577366, + 0.10525136440992355, + -0.010664834640920162, + 0.032204847782850266, + -0.0444599986076355, + -0.07084175199270248, + -0.017267951741814613, + -0.0807412788271904, + 0.011630657128989697, + -0.028973352164030075, + -4.05362100446564e-33, + 0.04287043213844299, + 0.05725088343024254, + 0.0036338611971586943, + -0.01816910319030285, + -0.0439290776848793, + -0.032872214913368225, + -0.020176568999886513, + -0.032614607363939285, + -0.03499624878168106, + 0.012619619257748127, + 0.1260601431131363, + -0.0112546281889081, + -0.05131153762340546, + 0.07802005112171173, + 0.0346280075609684, + -0.10125028342008591, + 0.06226353719830513, + 0.04556753858923912, + -0.1305815577507019, + -0.01663055829703808, + -0.01147312019020319, + 0.057124748826026917, + -0.10829295217990875, + -0.05243486538529396, + -0.04108930751681328, + 0.016837885603308678, + -0.02190367877483368, + 0.007643627468496561, + -0.08273512870073318, + 0.02253301441669464, + 0.037068501114845276, + 0.023947561159729958, + -0.010909533128142357, + -0.055299241095781326, + 0.00820319913327694, + 0.01572856493294239, + -0.08881319314241409, + -0.02196137234568596, + -0.03672769293189049, + -0.042034707963466644, + -0.02260611765086651, + -0.04788513854146004, + -0.07779345661401749, + 0.017995154485106468, + -0.01454722136259079, + 0.1527138352394104, + -0.07534855604171753, + -0.09896305203437805, + 0.008875329047441483, + -0.010649577714502811, + -0.01901279017329216, + 0.003819829784333706, + 0.0029542455449700356, + -0.0145802553743124, + 0.007179560139775276, + 0.010019361041486263, + -0.05299612134695053, + 0.10269587486982346, + -0.03145406395196915, + 0.0027648350223898888, + -0.0007739553111605346, + 0.01129157654941082, + 0.0033625385258346796, + -0.026060650125145912, + -0.08613383024930954, + 0.04048984497785568, + -0.12730054557323456, + 0.006295591127127409, + 0.09485830366611481, + -0.017690377309918404, + 0.002482326701283455, + 0.03795574605464935, + 0.07544171810150146, + 0.06898266077041626, + -0.03441870957612991, + 0.028420602902770042, + -0.031977083534002304, + -0.047730810940265656, + 0.07256439328193665, + -0.06792186200618744, + -0.07726182043552399, + 0.06516067683696747, + -0.02956179529428482, + -0.012586687691509724, + 0.07028830796480179, + -0.08000662922859192, + -0.012118929997086525, + -0.030304240062832832, + -0.00641620671376586, + 0.06533007323741913, + -0.02125389501452446, + 0.035260867327451706, + 0.016154076904058456, + 0.04072321578860283, + -0.09512793272733688, + 4.849145622592254e-34, + -0.008284701965749264, + 0.053500641137361526, + -0.047390785068273544, + -0.0028316136449575424, + -0.11845420300960541, + 0.036584023386240005, + 0.054328229278326035, + -0.06038617715239525, + 0.005527512636035681, + 0.051866549998521805, + -0.0278544332832098, + 0.027272209525108337, + -0.012754038907587528, + -0.008996367454528809, + 0.07269984483718872, + 0.019256213679909706, + 0.056232430040836334, + 0.07340439409017563, + 0.014358140528202057, + -0.03563615679740906, + -0.038509104400873184, + -0.041707806289196014, + 0.0031417550053447485, + 0.029330499470233917, + -0.012091029435396194, + 0.04444488510489464, + 0.059392914175987244, + 0.0019756315741688013, + -0.04511933773756027, + -0.02531418390572071, + 0.01530973520129919, + 0.0026242383755743504, + 0.06209386885166168, + 0.08165956288576126, + -0.021027831360697746, + -0.06475809216499329, + -0.023058630526065826, + -0.09146369993686676, + 0.06344606727361679, + -0.014472069218754768, + 0.028205202892422676, + 0.015855062752962112, + 0.0980101078748703, + 0.03918593376874924, + 0.04002191871404648, + 0.03873954713344574, + 0.06906263530254364, + 0.035891883075237274, + -0.022698551416397095, + 0.029828021302819252, + 0.018198568373918533, + 0.0202366653829813, + 0.006172228138893843, + -0.034496549516916275, + -0.06460841745138168, + -0.021137742325663567, + 0.06133208051323891, + 0.06589385867118835, + 0.06188066303730011, + 0.00970339123159647, + -0.025684930384159088, + -0.03988512232899666, + 0.002427443163469434, + 0.08213730156421661, + -0.01662498526275158, + -0.03173304721713066, + 0.07060163468122482, + -0.06494536250829697, + -0.0065784459002316, + 0.007915562950074673, + 0.045666344463825226, + 0.10890945047140121, + 0.03269257768988609, + -0.019323166459798813, + 0.04842456802725792, + -0.040064211934804916, + 0.06171756610274315, + -0.00846149493008852, + -0.03712648153305054, + -0.023552514612674713, + -0.08972512930631638, + 0.008058475330471992, + -0.018166257068514824, + 0.054557204246520996, + -0.0066106547601521015, + 0.023151589557528496, + -0.02250554785132408, + 0.00286989938467741, + 0.011610415764153004, + -0.00551514932885766, + 0.007212347816675901, + 0.0029769239481538534, + -0.009738476015627384, + -0.006101212929934263, + 0.004613405559211969, + -2.161179857296247e-08, + -0.03974846750497818, + -0.020114006474614143, + -0.012005941942334175, + -0.0006069946102797985, + 0.03849589079618454, + -0.02155362442135811, + 0.01673286408185959, + -0.00691357534378767, + -0.022173147648572922, + -0.08248035609722137, + 0.01550085935741663, + 0.0848516970872879, + -0.06628280878067017, + -0.04251608997583389, + 0.10988471657037735, + 0.03006870672106743, + -0.03220640495419502, + 0.047018688172101974, + -0.020520532503724098, + -0.001060964073985815, + -0.0017699324525892735, + -0.0005181430606171489, + 0.03282151371240616, + 0.019606035202741623, + -0.014686261303722858, + -0.01062081754207611, + 0.010607908479869366, + 0.1356993168592453, + 0.04993889853358269, + 0.0032458347268402576, + 0.05598680302500725, + 0.01645597442984581, + -0.04322049766778946, + -0.0015904365573078394, + -0.011319943703711033, + -0.04416486993432045, + -0.05476509779691696, + 0.0486115999519825, + 0.029822885990142822, + 0.10502789914608002, + -0.034185558557510376, + 0.033506251871585846, + -0.01823362521827221, + -0.018261656165122986, + -0.040017761290073395, + 0.08890385180711746, + 0.016086522489786148, + -0.013192515820264816, + -0.129029780626297, + -0.11483526974916458, + -0.05063425004482269, + 0.05687208101153374, + 0.04650174453854561, + 0.05816969275474548, + -0.003114450490102172, + 0.024037638679146767, + 0.03616698831319809, + 0.002841812325641513, + -0.10456880182027817, + 0.021827761083841324, + 0.0950729101896286, + 0.09142100065946579, + 0.028190111741423607, + 0.06163987144827843 + ], + "arrow-circle-up-right-bold||directional,pointer,pointing,arrowhead": [ + 0.036799684166908264, + -0.022602546960115433, + -0.10744066536426544, + 0.016821041703224182, + 0.013411124236881733, + -0.035041503608226776, + 0.06046168506145477, + 0.009977048262953758, + 0.011458074674010277, + -0.02498367615044117, + 0.022382840514183044, + 0.10816264897584915, + 0.034937500953674316, + -0.0037215626798570156, + -0.0008265252690762281, + 0.022069808095693588, + -0.08522620052099228, + 0.035909611731767654, + 0.05028955638408661, + 0.014745538122951984, + -0.011311098001897335, + -0.002243738155812025, + -0.00833331048488617, + 0.06364881247282028, + -0.023991605266928673, + 0.04107509180903435, + 0.07558057457208633, + -0.0010316533735021949, + -0.025700734928250313, + -0.056596025824546814, + -0.10701964795589447, + -0.032438334077596664, + -0.04799526557326317, + 0.01551373302936554, + -0.07903210073709488, + -0.012603485956788063, + 0.008357610553503036, + 0.027256062254309654, + -0.03439504653215408, + 9.628903171687853e-06, + 0.04903717339038849, + -0.02975142002105713, + 0.0201752707362175, + -0.052402935922145844, + 0.01410086452960968, + 0.08490648120641708, + -0.1163080707192421, + -0.0035994374193251133, + 0.039170041680336, + 0.06015167757868767, + -0.0876273512840271, + -0.08221616595983505, + -0.07555040717124939, + -0.005344080738723278, + 0.07754495739936829, + 0.07225427776575089, + -0.04145880416035652, + -0.037951041013002396, + 0.10374309867620468, + -0.005747923161834478, + 0.05117834359407425, + -0.0491907000541687, + 0.045109353959560394, + 0.036794617772102356, + 0.04490481689572334, + -0.032463278621435165, + -0.024275315925478935, + 0.013225515373051167, + 0.009133761748671532, + -0.005939709488302469, + 0.008840951137244701, + -0.029705079272389412, + -0.03378966823220253, + -0.05230552330613136, + 0.00386701337993145, + 0.005621654912829399, + 0.02589351125061512, + 0.06732161343097687, + -0.011949954554438591, + -0.04652319476008415, + -0.04767118766903877, + 0.01351030170917511, + -0.038212090730667114, + 0.09029657393693924, + 0.052322693169116974, + 0.11877959966659546, + -0.06798096746206284, + -0.0745990127325058, + -0.02547590620815754, + 0.012117117643356323, + -0.02713349089026451, + 0.006902078166604042, + -0.03509011119604111, + -0.02523372322320938, + 0.0016443036729469895, + -0.0423884391784668, + 0.05900053679943085, + -0.09929906576871872, + -0.129272922873497, + 0.08039920777082443, + 0.025118928402662277, + -0.01114495750516653, + 0.03915691003203392, + -0.07338536530733109, + -0.022656727582216263, + -0.008342115208506584, + -0.012128082104027271, + -0.03988637402653694, + -0.036204829812049866, + -0.00783887505531311, + -0.0474298819899559, + -0.1455707848072052, + -0.04364904761314392, + -0.05004551634192467, + -0.032257236540317535, + 0.011060046963393688, + -0.11910311132669449, + -0.0059399474412202835, + 0.10128272324800491, + -0.009005234576761723, + 0.03305237367749214, + -0.03514128923416138, + -0.07218710333108902, + -0.020013095811009407, + -0.08370804786682129, + 0.008296326734125614, + -0.029294567182660103, + -3.927579724724674e-33, + 0.0408138744533062, + 0.05580560863018036, + 0.008065374568104744, + -0.017939163371920586, + -0.04017436504364014, + -0.035552993416786194, + -0.028748774901032448, + -0.034025855362415314, + -0.035351429134607315, + 0.023149505257606506, + 0.1246471032500267, + -0.010697911493480206, + -0.05224010720849037, + 0.08351603150367737, + 0.03833717480301857, + -0.10446186363697052, + 0.06389757245779037, + 0.04834126681089401, + -0.12784253060817719, + -0.01734757237136364, + -0.017057133838534355, + 0.05454649403691292, + -0.10440701991319656, + -0.05422689765691757, + -0.04201347753405571, + 0.017810139805078506, + -0.022071797400712967, + 0.008608154952526093, + -0.08137520402669907, + 0.02174030803143978, + 0.031128300353884697, + 0.015958622097969055, + -0.00937312375754118, + -0.05110204219818115, + 0.009173479862511158, + 0.011840417049825191, + -0.08883123844861984, + -0.022073974832892418, + -0.04108511283993721, + -0.04443499445915222, + -0.0236751027405262, + -0.04316529631614685, + -0.0823347344994545, + 0.01939164474606514, + -0.007825861684978008, + 0.14921610057353973, + -0.07455713301897049, + -0.09776673465967178, + 0.010329721495509148, + -0.008381380699574947, + -0.016651751473546028, + 0.006649346090853214, + 0.003927046433091164, + -0.006015277933329344, + 0.006767008453607559, + 0.012554318644106388, + -0.0521087683737278, + 0.11253677308559418, + -0.035493653267621994, + 0.003624104196205735, + -0.0023119021207094193, + 0.010986671783030033, + 0.010109835304319859, + -0.026854928582906723, + -0.08499006181955338, + 0.04100743681192398, + -0.12645630538463593, + 0.005275285802781582, + 0.09799189120531082, + -0.012589683756232262, + -0.0017229695804417133, + 0.043320182710886, + 0.06896856427192688, + 0.07430128008127213, + -0.03926916420459747, + 0.02827276848256588, + -0.03896928206086159, + -0.04791106656193733, + 0.07260799407958984, + -0.06166550889611244, + -0.08094000816345215, + 0.06147843599319458, + -0.033578552305698395, + -0.018680285662412643, + 0.0655377209186554, + -0.08521585166454315, + -0.013737726025283337, + -0.029468325898051262, + -0.0025906420778483152, + 0.05858965590596199, + -0.020404713228344917, + 0.040663961321115494, + 0.019572848454117775, + 0.03560318425297737, + -0.09463081508874893, + 4.6681181150331795e-34, + -0.004159197211265564, + 0.05388486757874489, + -0.03606567159295082, + -0.0005958222900517285, + -0.12013940513134003, + 0.04206879064440727, + 0.060560259968042374, + -0.06075984612107277, + 0.0068249814212322235, + 0.056077975779771805, + -0.026458075270056725, + 0.02628660388290882, + -0.010945314541459084, + -0.012104964815080166, + 0.0761142373085022, + 0.01989973522722721, + 0.05274293199181557, + 0.07847455888986588, + 0.02195914462208748, + -0.03325846418738365, + -0.03885921090841293, + -0.051559675484895706, + -0.0023024596739560366, + 0.030163241550326347, + -0.013435489498078823, + 0.04537244513630867, + 0.06203260272741318, + 0.002147618681192398, + -0.03804237022995949, + -0.023208124563097954, + 0.016840366646647453, + -0.0042490591295063496, + 0.04990087077021599, + 0.08815668523311615, + -0.02180851437151432, + -0.06383798271417618, + -0.026345277205109596, + -0.0858142077922821, + 0.05945136025547981, + -0.015198920853435993, + 0.030555035918951035, + 0.01713487133383751, + 0.10069513320922852, + 0.04046046733856201, + 0.03445064276456833, + 0.0402594730257988, + 0.0642022117972374, + 0.035952724516391754, + -0.029227331280708313, + 0.02463242970407009, + 0.013853909447789192, + 0.017690155655145645, + 0.009303336963057518, + -0.033059436827898026, + -0.06390459090471268, + -0.018446452915668488, + 0.06644811481237411, + 0.059887416660785675, + 0.05600893124938011, + 0.011170887388288975, + -0.01983308047056198, + -0.041039735078811646, + -0.003995987586677074, + 0.08297573775053024, + -0.017909886315464973, + -0.025327540934085846, + 0.06898285448551178, + -0.06663581728935242, + -0.016770843416452408, + 0.007196277845650911, + 0.0433872826397419, + 0.10029766708612442, + 0.029156558215618134, + -0.020399823784828186, + 0.044266849756240845, + -0.046245235949754715, + 0.05940739065408707, + -0.00855312217026949, + -0.0366852842271328, + -0.031024007126688957, + -0.08485846221446991, + 0.014564082026481628, + -0.02237408235669136, + 0.06010875105857849, + -0.010757803916931152, + 0.025706635788083076, + -0.024905391037464142, + 0.008698458783328533, + 0.01401613000780344, + -0.011162549257278442, + 0.009001212194561958, + 0.010291283950209618, + -0.010709230788052082, + -0.0010299411369487643, + 0.0018645398085936904, + -2.1553004714292e-08, + -0.04550511762499809, + -0.02083858847618103, + -0.00933743640780449, + -0.003862489713355899, + 0.041949667036533356, + -0.022616485133767128, + 0.013707289472222328, + -0.0065339417196810246, + -0.020901253446936607, + -0.08703156560659409, + 0.010437926277518272, + 0.08216157555580139, + -0.06469054520130157, + -0.0383891835808754, + 0.11832892149686813, + 0.02859191596508026, + -0.03485916182398796, + 0.047667182981967926, + -0.0180959515273571, + -0.004934170749038458, + -0.006719290278851986, + -0.000502716691698879, + 0.03370331972837448, + 0.01923583261668682, + -0.014459526166319847, + -0.007025275379419327, + 0.004671498201787472, + 0.1369686722755432, + 0.04660606384277344, + 0.004586067516356707, + 0.05655501410365105, + 0.014963901601731777, + -0.03989320620894432, + -0.0038666168693453074, + -0.002925112145021558, + -0.037752289324998856, + -0.05384509637951851, + 0.044351689517498016, + 0.03383960202336311, + 0.1035948321223259, + -0.030373485758900642, + 0.02846144139766693, + -0.019274156540632248, + -0.017436180263757706, + -0.04205439239740372, + 0.08918308466672897, + 0.022055599838495255, + -0.012815462425351143, + -0.133897602558136, + -0.11916235089302063, + -0.05370723828673363, + 0.06185901537537575, + 0.04874299466609955, + 0.05638186261057854, + -0.005610594060271978, + 0.02456599846482277, + 0.03557712957262993, + -0.003242970211431384, + -0.09937389194965363, + 0.01931757666170597, + 0.09767428785562515, + 0.09203188121318817, + 0.02334495820105076, + 0.0601930133998394 + ], + "arrow-clockwise-bold||*updated*,directional,pointer,pointing,arrowhead,redo,refreshing,rotate,spin,flip": [ + 0.007197932805866003, + -0.06825963407754898, + -0.07664491981267929, + -0.006960668135434389, + -0.04327577352523804, + -0.023598363623023033, + 0.038274411112070084, + -0.041767314076423645, + 0.031124917790293694, + 0.0023026620037853718, + 0.04739733040332794, + 0.0995652824640274, + 0.008634144440293312, + -0.042912695556879044, + -0.06300897151231766, + 0.06893675029277802, + -0.05160731449723244, + 0.03270288184285164, + 0.016543446108698845, + 0.016972649842500687, + -0.03029794432222843, + -0.016670502722263336, + -0.036533743143081665, + 0.04750891774892807, + -0.01097237691283226, + 0.07222570478916168, + 0.056846193969249725, + 0.0022139528300613165, + -0.022819533944129944, + -0.09178534895181656, + -0.06586474180221558, + 0.022953927516937256, + -0.0015959996962919831, + 0.02713819593191147, + -0.12675011157989502, + -0.048997096717357635, + -0.005794414319097996, + 0.002786285476759076, + -0.015590722672641277, + 0.04666619002819061, + 0.043146464973688126, + -0.023427700623869896, + 0.02072630263864994, + -0.006574584636837244, + 0.04586726054549217, + 0.09726503491401672, + -0.09706199914216995, + -0.00026622143923304975, + 0.04699631407856941, + 0.06499756127595901, + -0.06821441650390625, + -0.1221441701054573, + -0.0923675149679184, + -0.010974393226206303, + 0.05392732098698616, + 0.066573366522789, + 0.04651382938027382, + -0.04721472039818764, + 0.06855494529008865, + -0.02723643183708191, + 0.10091733187437057, + -0.006344325840473175, + 0.0023565124720335007, + 0.05900128185749054, + 0.03048114664852619, + -0.025675559416413307, + -0.002333529992029071, + -0.051818013191223145, + 0.019155625253915787, + 0.0027368434239178896, + 0.020169192925095558, + -0.007200698833912611, + -0.03626464307308197, + -0.06634427607059479, + 0.0043013873510062695, + -0.0525621734559536, + 0.06381361186504364, + 0.0253620445728302, + -0.01673520915210247, + -0.05847468972206116, + -0.053510356694459915, + -0.0018411751370877028, + -0.03697255253791809, + 0.05594787001609802, + 0.09074881672859192, + 0.07281192392110825, + -0.09140347689390182, + -0.045727066695690155, + -0.012757522985339165, + 0.0075768656097352505, + -0.040450844913721085, + 0.006924109533429146, + -0.03893236070871353, + -0.058578260242938995, + -0.012087250128388405, + 0.004621803294867277, + 0.07487949728965759, + -0.06397344917058945, + -0.12389902770519257, + 0.06842191517353058, + 0.04930830001831055, + -0.003918662667274475, + 0.014520900323987007, + -0.02045292779803276, + -0.007462817709892988, + 0.020103909075260162, + -0.030593743547797203, + -0.029021495953202248, + -0.0550994873046875, + 0.011257546953856945, + -0.044920239597558975, + -0.10773146152496338, + -0.0009585304651409388, + -0.07493140548467636, + -0.0453127957880497, + -0.02561413124203682, + -0.11298289149999619, + 0.006353824399411678, + 0.047336921095848083, + 0.031602781265974045, + 0.044398900121450424, + -0.05081615597009659, + -0.06737695634365082, + -0.04843556135892868, + -0.08085443824529648, + -0.003476707963272929, + -0.013787435367703438, + -3.248153908182977e-33, + 0.03648362308740616, + 0.042321838438510895, + 0.02010902389883995, + 0.021523011848330498, + -0.013333335518836975, + 0.019830580800771713, + -0.010754251852631569, + -0.06539814919233322, + -0.06255774199962616, + 0.004158613737672567, + 0.14230060577392578, + 0.02643272839486599, + -0.06386993825435638, + 0.052247487008571625, + 0.014864481054246426, + -0.1252940446138382, + 0.0470116063952446, + 0.04902758076786995, + -0.11426705867052078, + -0.038248155266046524, + -0.0019029342802241445, + 0.07821737974882126, + -0.10073220729827881, + -0.05621008574962616, + -0.02315373159945011, + 0.012457694858312607, + 0.011144055984914303, + -0.004216895438730717, + -0.10333399474620819, + 0.02402767725288868, + 0.04620389640331268, + 0.04118078574538231, + -0.014942913316190243, + -0.041371505707502365, + -0.03203728422522545, + -0.02163482829928398, + -0.08853718638420105, + -0.07826991379261017, + 0.0032912935130298138, + -0.020201759412884712, + -0.059061937034130096, + -0.053507283329963684, + -0.09739571064710617, + -0.026760129258036613, + 0.01988428831100464, + 0.11518602073192596, + -0.05191393196582794, + -0.051749128848314285, + 0.07051849365234375, + -0.006561006419360638, + 0.03192539140582085, + 0.0240746159106493, + -0.005216977093368769, + -0.004787829704582691, + 0.021701904013752937, + -0.00046722328988835216, + -0.009241567924618721, + 0.14042149484157562, + -0.0594550296664238, + 0.01615765690803528, + 0.028397828340530396, + 0.054905496537685394, + 0.02243467979133129, + -0.029754599556326866, + -0.06396438926458359, + 0.062097132205963135, + -0.08205750584602356, + -0.0043854606337845325, + 0.10279752314090729, + 0.017191534861922264, + -0.016418982297182083, + 0.0289763156324625, + 0.03774493932723999, + 0.06962762027978897, + -0.04530321806669235, + -0.0016425602370873094, + -0.030278503894805908, + -0.030064161866903305, + 0.05980443209409714, + -0.07862633466720581, + -0.07546760886907578, + 0.010251185856759548, + -0.08069184422492981, + 0.02051580883562565, + 0.029095260426402092, + -0.05528659000992775, + -0.009309769608080387, + -0.013545479625463486, + -0.020652662962675095, + 0.0830979123711586, + -0.025149499997496605, + 0.009579272009432316, + -0.011231728829443455, + 0.015018787235021591, + -0.057136550545692444, + 1.4212271974699894e-34, + -0.028361180797219276, + 0.025347093120217323, + -0.08719832450151443, + 0.03824762627482414, + -0.13326029479503632, + 0.007364671211689711, + 0.04218844696879387, + 0.002622462809085846, + 0.006212355103343725, + 0.013013649731874466, + 0.06433062255382538, + 0.02730615623295307, + -0.0728854238986969, + -0.001634756219573319, + 0.09342140704393387, + 0.029105529189109802, + 0.0413479246199131, + 0.0597558468580246, + -0.02511107176542282, + -0.007184884510934353, + 0.010425341315567493, + -0.036674510687589645, + 0.014223205856978893, + 0.07612894475460052, + 0.009127676486968994, + 0.021000918000936508, + 0.10067838430404663, + 0.025127794593572617, + 0.007426335010677576, + -0.01615065522491932, + 0.022735560312867165, + -0.013075107708573341, + 0.0594995841383934, + 0.07852449268102646, + -0.04176268354058266, + -0.016649361699819565, + 0.007031362969428301, + -0.09567339718341827, + 0.03095461241900921, + 0.01573983021080494, + 0.03507237508893013, + 0.027993615716695786, + 0.11916425079107285, + 0.03723601624369621, + -0.015653233975172043, + 0.045416343957185745, + -0.0328969806432724, + 0.04043145850300789, + -0.01221292931586504, + 0.004005929920822382, + 0.028050793334841728, + -0.0157531276345253, + 0.009892848320305347, + -0.026090053841471672, + -0.05586523935198784, + -0.007149343844503164, + 0.037416305392980576, + 0.033602409064769745, + 0.0657874047756195, + 0.006124059669673443, + -0.030339080840349197, + -0.009590488858520985, + 0.017730727791786194, + 0.0016717478865757585, + -0.021723486483097076, + -0.01639309711754322, + 0.053322698920965195, + -0.07910344749689102, + 0.03868820145726204, + 0.003704032627865672, + 0.06308412551879883, + 0.12248261272907257, + 0.009192602708935738, + -0.055461782962083817, + 0.056368473917245865, + -0.06669849157333374, + 0.06858252733945847, + -0.01717992313206196, + -0.03677413612604141, + -0.019017133861780167, + -0.07421783357858658, + 0.01094113290309906, + 0.041074689477682114, + 0.05346449837088585, + -0.037395182996988297, + 0.014902700670063496, + -0.059785112738609314, + 0.019506633281707764, + 0.03507593646645546, + -0.0014461075188592076, + -0.008318256586790085, + 0.0370473675429821, + -0.012455709278583527, + -0.032169170677661896, + -0.012696727178990841, + -2.437903745544645e-08, + -0.06351646035909653, + -0.023327140137553215, + 0.0670805349946022, + -0.006607178132981062, + 0.046327199786901474, + -0.016884339973330498, + 0.0453263595700264, + -0.017675912007689476, + -0.05785895138978958, + -0.08803962171077728, + 0.057979516685009, + 0.07323066890239716, + -0.028045982122421265, + -0.044565558433532715, + 0.1367538720369339, + 0.054551225155591965, + -0.07462521642446518, + 0.02256660908460617, + -0.013750480487942696, + -0.03871047496795654, + -0.004205763339996338, + 0.01662135310471058, + 0.03851471096277237, + 0.04665559157729149, + -0.024463167414069176, + -0.005871194414794445, + 0.007101788651198149, + 0.11482931673526764, + 0.05760519579052925, + -0.017928002402186394, + 0.07349327951669693, + -0.002143356716260314, + 0.022569330409169197, + -0.013748853467404842, + -0.06348787248134613, + -0.015746580436825752, + -0.04600507766008377, + 0.04017246887087822, + 0.04742773249745369, + 0.08561070263385773, + -0.052703823894262314, + 0.011290309019386768, + -0.042016707360744476, + 0.009220482781529427, + -0.08912711590528488, + 0.04513927549123764, + 0.031319811940193176, + -0.034311629831790924, + -0.07853655517101288, + -0.14818651974201202, + -0.03933124244213104, + 0.044722218066453934, + 0.027345916256308556, + 0.0831264853477478, + -0.021372070536017418, + 0.03949729725718498, + 0.017724499106407166, + -0.005068737082183361, + -0.03442176803946495, + 0.03925195708870888, + 0.07680512964725494, + 0.07904832810163498, + 0.010542967356741428, + 0.02933020144701004 + ], + "arrow-counter-clockwise-bold||*updated*,directional,pointer,pointing,arrowhead,undo,refreshing,rotate,spin,flip": [ + -0.0034309516195207834, + -0.06966356188058853, + -0.0661686509847641, + 0.0026698352303355932, + -0.05835253372788429, + -0.013000222854316235, + 0.022718174383044243, + -0.04245404154062271, + 0.035678982734680176, + 0.013527858071029186, + 0.05574755743145943, + 0.10681605339050293, + 0.01209892425686121, + -0.04551428183913231, + -0.06977203488349915, + 0.04781360551714897, + -0.05461857095360756, + 0.03610948100686073, + 0.026596572250127792, + 0.012311586178839207, + -0.033169254660606384, + -0.007590829860419035, + -0.014197658747434616, + 0.05406711995601654, + 0.004076443612575531, + 0.06381174921989441, + 0.05632663518190384, + 0.003831887384876609, + -0.0022172771859914064, + -0.09675802290439606, + -0.06282802671194077, + 0.018711160868406296, + -0.0064482432790100574, + 0.035899121314287186, + -0.1371483951807022, + -0.04481232538819313, + -0.006077475845813751, + 0.00896309595555067, + -0.009616105817258358, + 0.05361717566847801, + 0.023344239220023155, + -0.028777483850717545, + 0.0066854036413133144, + -0.02530261129140854, + 0.03783281147480011, + 0.08189229667186737, + -0.10886053740978241, + -0.016437051817774773, + 0.034206341952085495, + 0.06936446577310562, + -0.045877791941165924, + -0.10969369113445282, + -0.08803091198205948, + -0.013414480723440647, + 0.06277491897344589, + 0.06076851487159729, + 0.05280221253633499, + -0.04321904852986336, + 0.07308387011289597, + -0.007218484301120043, + 0.09586720913648605, + -0.0024137848522514105, + -0.00156412273645401, + 0.06298816204071045, + 0.022996272891759872, + -0.0072442940436303616, + -0.015726279467344284, + -0.04746362194418907, + 0.035246703773736954, + 0.011060311459004879, + 0.02367282845079899, + -0.010956594720482826, + -0.03279200568795204, + -0.056746263056993484, + -0.0027178763411939144, + -0.04594425857067108, + 0.04873524606227875, + 0.0267446618527174, + -0.03106645494699478, + -0.05275329574942589, + -0.05728316679596901, + -0.022115305066108704, + -0.04209361597895622, + 0.07538498938083649, + 0.09215819835662842, + 0.06037266552448273, + -0.08820505440235138, + -0.01669766940176487, + -0.0013919700868427753, + 0.005842308048158884, + -0.04351362586021423, + -0.013059917837381363, + -0.02024509571492672, + -0.059413325041532516, + -0.007933064363896847, + -0.0018832782516255975, + 0.09601593762636185, + -0.06455469131469727, + -0.1323598027229309, + 0.06496290862560272, + 0.051706235855817795, + -0.009416784159839153, + 0.0086097726598382, + -0.016025176271796227, + -0.012606745585799217, + 0.018362270668148994, + -0.019690237939357758, + -0.04104703664779663, + -0.0647287368774414, + 0.00599700678139925, + -0.04630647599697113, + -0.11581138521432877, + -0.0009249194990843534, + -0.06407066434621811, + -0.03465688228607178, + -0.03288182616233826, + -0.11248435080051422, + 0.002698659198358655, + 0.058595333248376846, + 0.02294149436056614, + 0.05085226893424988, + -0.057100456207990646, + -0.05208992958068848, + -0.0393429696559906, + -0.08248117566108704, + -0.0021107124630361795, + -0.006964185740798712, + -3.949478449796524e-33, + 0.0530562698841095, + 0.03832152485847473, + 0.0014990339986979961, + 0.011091777123510838, + -0.008542390540242195, + 0.013476153835654259, + -0.007859610952436924, + -0.0673154667019844, + -0.06714098155498505, + 0.007467184215784073, + 0.15086840093135834, + 0.039244916290044785, + -0.06527409702539444, + 0.07188883423805237, + 0.015859615057706833, + -0.11483631283044815, + 0.05912122130393982, + 0.06400299817323685, + -0.0983203798532486, + -0.03605886921286583, + 0.0165217537432909, + 0.07574683427810669, + -0.09699898213148117, + -0.06025063991546631, + -0.015229041688144207, + 0.023266242817044258, + 0.005959843751043081, + 0.005970292259007692, + -0.1023714616894722, + 0.02957506664097309, + 0.03476506844162941, + 0.04145176336169243, + -0.0070901853032410145, + -0.05093305557966232, + -0.021927474066615105, + -0.01223434042185545, + -0.07678060233592987, + -0.07269135117530823, + 0.00021488929633051157, + -0.017886456102132797, + -0.04594334214925766, + -0.06469400972127914, + -0.0975116416811943, + -0.056402966380119324, + 0.025541415438055992, + 0.09708938747644424, + -0.051958877593278885, + -0.03790948912501335, + 0.04201571270823479, + -0.014475963078439236, + 0.04555757716298103, + 0.03706131502985954, + -0.022222664207220078, + -0.015074944123625755, + 0.02147834002971649, + 0.00044704583706334233, + -0.017054354771971703, + 0.12721852958202362, + -0.06438694894313812, + 0.042648594826459885, + 0.03369765728712082, + 0.07085969299077988, + 0.012015440501272678, + -0.01813887059688568, + -0.07129605114459991, + 0.05831443518400192, + -0.07981131970882416, + -0.007083111442625523, + 0.08965097367763519, + 0.02442638948559761, + -0.0297915730625391, + 0.02271919883787632, + 0.015474572777748108, + 0.06086248531937599, + -0.052339550107717514, + 0.007538349833339453, + -0.03573961183428764, + -0.04644019529223442, + 0.048311080783605576, + -0.06622470170259476, + -0.09306635707616806, + 0.007592544890940189, + -0.08091804385185242, + 0.01885894127190113, + 0.043068982660770416, + -0.06555760651826859, + 0.0003476684505585581, + -0.020145751535892487, + -0.022929716855287552, + 0.0732460469007492, + -0.021190160885453224, + 0.018274104222655296, + 0.011440349742770195, + 0.01772887632250786, + -0.06269165128469467, + 6.440639618153376e-34, + -0.013117312453687191, + 0.03133800998330116, + -0.07382625341415405, + 0.05435293912887573, + -0.14338216185569763, + 0.015504340641200542, + 0.0365203358232975, + 0.0016982093220576644, + 0.004183140583336353, + 0.0027017907705157995, + 0.05052423104643822, + 0.029739830642938614, + -0.05086466670036316, + -0.01005446258932352, + 0.11567067354917526, + 0.01842612400650978, + 0.03913265839219093, + 0.0668402761220932, + -0.03643941879272461, + -0.00634027412161231, + 0.018517710268497467, + -0.04564492404460907, + 0.018314195796847343, + 0.05651102960109711, + 0.01055891253054142, + 0.024240044876933098, + 0.09505488723516464, + 0.024145767092704773, + 0.024689508602023125, + -0.017227405682206154, + 0.03688459470868111, + -0.0052278353832662106, + 0.06071149557828903, + 0.06832820922136307, + -0.036262668669223785, + -0.031296852976083755, + 0.008527973666787148, + -0.0872689038515091, + 0.022326868027448654, + 0.011293841525912285, + 0.04428178817033768, + 0.031720515340566635, + 0.10929354280233383, + 0.04850592464208603, + -0.014794529415667057, + 0.038909006863832474, + -0.04212294518947601, + 0.053967371582984924, + 0.004309800453484058, + -0.007682722993195057, + 0.019338617101311684, + -0.020115401595830917, + 0.00342363934032619, + -0.02939966320991516, + -0.04685121029615402, + 0.004061558749526739, + 0.05565661936998367, + 0.025798209011554718, + 0.08531240373849869, + 0.0001395892322761938, + -0.028042593970894814, + -0.01737849973142147, + 0.020934144034981728, + 0.004291785880923271, + -0.02110404521226883, + -0.022474374622106552, + 0.02817883901298046, + -0.07691160589456558, + 0.00039294143789447844, + -6.576258601853624e-05, + 0.052261222153902054, + 0.11748549342155457, + 0.0001394171704305336, + -0.06758232414722443, + 0.06850875914096832, + -0.06091439723968506, + 0.04874071106314659, + -0.015023510903120041, + -0.031470898538827896, + -0.045239780098199844, + -0.067982517182827, + 0.009477599523961544, + 0.03313661739230156, + 0.037054259330034256, + -0.05819198489189148, + 0.02463650517165661, + -0.08294258266687393, + 0.026278747245669365, + 0.034868355840444565, + 0.0015785263385623693, + -0.025150593370199203, + 0.04399494454264641, + 0.005029333755373955, + -0.02287484146654606, + -0.018803030252456665, + -2.513744945531471e-08, + -0.09725804626941681, + -0.029801463708281517, + 0.07324650883674622, + 0.00698591535910964, + 0.038400016725063324, + -0.02339780144393444, + 0.032820120453834534, + 0.005316284950822592, + -0.05395057424902916, + -0.10578027367591858, + 0.04229780286550522, + 0.08339212089776993, + -0.018926704302430153, + -0.0347711443901062, + 0.11991927027702332, + 0.04696566238999367, + -0.047596484422683716, + 0.01868423819541931, + -0.008540363050997257, + -0.03548329323530197, + -0.01637689396739006, + 0.006521595176309347, + 0.049673110246658325, + 0.03147687017917633, + -0.031980980187654495, + -0.006722844671458006, + -0.003962673246860504, + 0.13621163368225098, + 0.06333784759044647, + -0.007738769520074129, + 0.06248975917696953, + -0.010062958113849163, + 0.026394924148917198, + -0.009057946503162384, + -0.05349661782383919, + -0.01608344539999962, + -0.029919026419520378, + 0.029932839795947075, + 0.04916471987962723, + 0.08181929588317871, + -0.03339159116148949, + 0.016602877527475357, + -0.043464355170726776, + 0.020182350650429726, + -0.0805547907948494, + 0.03168613091111183, + 0.036679793149232864, + -0.03575436770915985, + -0.09179899841547012, + -0.14858777821063995, + -0.058439381420612335, + 0.03622265160083771, + 0.025618942454457283, + 0.08005589991807938, + -0.002498646266758442, + 0.0657259002327919, + 0.013168991543352604, + -0.02977338433265686, + -0.04481078311800957, + 0.04744827002286911, + 0.08269886672496796, + 0.08954492211341858, + -0.00283777411095798, + 0.01268034614622593 + ], + "arrow-down-bold||directional,pointer,pointing,arrowhead": [ + 0.045436792075634, + -0.041017044335603714, + -0.047425445169210434, + 0.005487298592925072, + -0.006755608133971691, + -0.03185928612947464, + 0.07359465956687927, + -0.0014764497755095363, + 0.006925568915903568, + 0.020213354378938675, + -0.006548723205924034, + 0.09934152662754059, + 0.037760179489851, + 0.013439357280731201, + -0.018765689805150032, + 0.029984597116708755, + -0.04598473757505417, + 0.06684228032827377, + 0.05583394318819046, + 0.0526624396443367, + -0.020852429792284966, + 0.01887214556336403, + -0.02466713823378086, + 0.02931886352598667, + -0.033253178000450134, + 0.01593133434653282, + 0.09191625565290451, + 0.004489009268581867, + -0.013673877343535423, + -0.05592922121286392, + -0.07420206815004349, + -0.05376695096492767, + -0.03807985410094261, + 0.042117487639188766, + -0.08597327768802643, + -0.02649773471057415, + 0.026914358139038086, + 0.004346480593085289, + -0.02097829431295395, + 0.06475807726383209, + 0.047970179468393326, + 0.019968921318650246, + -0.00834322813898325, + -0.013594302348792553, + 0.02767622284591198, + 0.07463237643241882, + -0.06975807249546051, + -0.03177325055003166, + 0.038940321654081345, + 0.06331901252269745, + -0.06479917466640472, + -0.07622334361076355, + -0.04832007735967636, + -0.010837438516318798, + 0.06355595588684082, + 0.07425951212644577, + -0.035638026893138885, + -0.02363784797489643, + 0.05709163099527359, + 0.015568330883979797, + 0.058119792491197586, + -0.0372028574347496, + 0.024419182911515236, + -0.013620124198496342, + 0.05809088051319122, + 0.00318742822855711, + -0.010108290240168571, + 0.03489194065332413, + -0.000668445834890008, + 0.036827947944402695, + 0.01294877752661705, + -0.043192654848098755, + -0.011726546101272106, + -0.042278192937374115, + -0.03980503976345062, + -0.01182582974433899, + 0.05172238498926163, + 0.06551417708396912, + -0.015182250179350376, + -0.050180185586214066, + -0.04626571387052536, + 0.008227286860346794, + -0.06395172327756882, + 0.050209734588861465, + 0.028981946408748627, + 0.08987335115671158, + -0.09636084735393524, + -0.06749299168586731, + -0.04772989824414253, + -0.013215135782957077, + -0.020143432542681694, + -0.006250753533095121, + -0.03294897451996803, + -0.003058174392208457, + 0.026997167617082596, + -0.03748741000890732, + 0.09930329024791718, + -0.08321455121040344, + -0.11633528023958206, + 0.07665452361106873, + 0.007067546714097261, + 0.024786997586488724, + 0.02715868130326271, + -0.0649455115199089, + -0.014216295443475246, + 0.008593526668846607, + -0.009960602968931198, + -0.06366892904043198, + -0.04410850256681442, + -0.02420155704021454, + -0.04583079740405083, + -0.14286179840564728, + -0.03465212881565094, + -0.04213440790772438, + -0.039848022162914276, + -0.028211627155542374, + -0.09349588304758072, + -0.019962625578045845, + 0.09577756375074387, + -0.02588500641286373, + 0.028963686898350716, + -0.028043227270245552, + -0.04932161048054695, + -0.011531480588018894, + -0.05350737273693085, + 0.008649665862321854, + -0.003068224061280489, + -3.761755675390051e-33, + 0.07288500666618347, + 0.03321782499551773, + 0.00332032167352736, + 0.02241489663720131, + -0.0016050112899392843, + 0.009120449423789978, + -0.0565415658056736, + -0.038406454026699066, + -0.10130476206541061, + 0.01655682548880577, + 0.14160311222076416, + -0.048553310334682465, + -0.06462255865335464, + 0.07947812974452972, + 0.023114878684282303, + -0.08651969581842422, + 0.041324347257614136, + 0.03611839562654495, + -0.1311355084180832, + 0.009917668998241425, + -0.016705887392163277, + 0.056932903826236725, + -0.11211704462766647, + -0.052991025149822235, + -0.030492963269352913, + 0.005813984666019678, + -0.02378864958882332, + -0.0028488391544669867, + -0.09870906919240952, + 0.019991882145404816, + 0.005469054449349642, + 0.03213180974125862, + 0.003823054488748312, + -0.08894557505846024, + -0.022858131676912308, + 0.006844343151897192, + -0.11505915969610214, + -0.01727849803864956, + -0.01673843525350094, + -0.028737058863043785, + -0.021028105169534683, + -0.039213232696056366, + -0.05590115487575531, + 0.01004119124263525, + -0.0059696463868021965, + 0.15651275217533112, + -0.05695204436779022, + -0.11000730097293854, + -0.006030038930475712, + -0.010279342532157898, + 0.00971817784011364, + -0.011983394622802734, + -0.004531109239906073, + 0.016446847468614578, + 0.03488994389772415, + 0.008914141915738583, + -0.09484223276376724, + 0.14142538607120514, + -0.008199530653655529, + 0.01623684912919998, + 0.009485013782978058, + -0.0026485861744731665, + 0.017926635220646858, + -0.021420709788799286, + -0.06147425249218941, + 0.04572093114256859, + -0.1131897121667862, + 0.04588671401143074, + 0.09612321853637695, + 0.0035186135210096836, + 0.012480949983000755, + 0.03603580966591835, + 0.044989146292209625, + 0.02426185831427574, + -0.023396359756588936, + 0.03911440819501877, + -0.014358960092067719, + -0.0568278469145298, + 0.11555512249469757, + -0.10945559293031693, + -0.09106475859880447, + 0.05931564420461655, + -0.04385339096188545, + 0.008429942652583122, + 0.06821738183498383, + -0.038628704845905304, + 0.00619885977357626, + -0.03223181143403053, + -0.02242162823677063, + 0.07875183969736099, + -0.04887581244111061, + 0.00763791985809803, + -0.02430027350783348, + -0.005667112767696381, + -0.08030906319618225, + 3.565609106427494e-34, + -0.010604440234601498, + 0.060046494007110596, + -0.06765177845954895, + 0.011364300735294819, + -0.15031059086322784, + 0.02394496649503708, + 0.05169473960995674, + -0.04200606420636177, + -0.012624045833945274, + 0.06685567647218704, + 0.021488189697265625, + 0.021260753273963928, + -0.034589167684316635, + -0.02175143174827099, + 0.06166407838463783, + 0.012143406085669994, + 0.05896320194005966, + 0.053380999714136124, + 0.01226240023970604, + -0.04778289049863815, + -0.011002132669091225, + -0.050516851246356964, + -0.006588667165488005, + 0.0286036878824234, + -0.0001956430496647954, + 0.025980636477470398, + 0.08007580041885376, + 0.0551651231944561, + -0.04279094189405441, + -0.0582459531724453, + 0.03563649579882622, + 0.02363913133740425, + 0.03058912418782711, + 0.04804467409849167, + -0.07436619699001312, + -0.02361096628010273, + -0.050252821296453476, + -0.0633031502366066, + 0.07190388441085815, + -0.00420971168205142, + 0.02756904996931553, + 0.038594458252191544, + 0.11409204453229904, + -0.0013427415397018194, + 0.005817514378577471, + 0.08610271662473679, + 0.021792517974972725, + 0.003938180860131979, + 0.03420236334204674, + 0.02239486202597618, + -0.0004131197347305715, + -0.03557731211185455, + -0.005290919914841652, + -0.007006462197750807, + -0.10010109841823578, + -0.028365343809127808, + 0.09048032015562057, + 0.057993728667497635, + 0.012061030603945255, + 0.021013939753174782, + -0.01728149875998497, + -0.023721231147646904, + 0.005061290226876736, + 0.06118938326835632, + -0.002787744626402855, + -0.025606565177440643, + 0.0525311715900898, + -0.06006535142660141, + 0.04168839380145073, + -0.024434596300125122, + 0.055740151554346085, + 0.08902669697999954, + 0.0591098815202713, + 0.0001680127315921709, + 0.057440269738435745, + -0.0670565515756607, + 0.053045302629470825, + 0.02640598639845848, + -0.02634480968117714, + -0.029849879443645477, + -0.06930042058229446, + -0.002831818303093314, + -0.027655772864818573, + 0.039419908076524734, + 0.0034214514307677746, + 0.03998561576008797, + -0.07658558338880539, + 0.029475506395101547, + 0.004335412289947271, + -0.0010476931929588318, + -0.019304970279335976, + -0.012217815965414047, + -0.008053443394601345, + -0.06647174805402756, + -0.04994761571288109, + -1.9757200320213997e-08, + -0.05872717872262001, + -0.009271010756492615, + -0.0073950584046542645, + -0.013896604999899864, + -0.0038563350681215525, + 0.0031236682552844286, + -0.0017434435430914164, + -0.008766567334532738, + -0.0003638869384303689, + -0.07528426498174667, + 0.017844490706920624, + 0.050551436841487885, + -0.07390725612640381, + -0.01608188822865486, + 0.11763329803943634, + 0.038630906492471695, + -0.0577239915728569, + 0.007705477066338062, + -0.01966691017150879, + -0.02564028650522232, + -0.031063539907336235, + 0.027741635218262672, + 0.006762480828911066, + 0.07891570031642914, + -0.015620578080415726, + 0.004338213242590427, + 0.0010132691822946072, + 0.15512147545814514, + 0.0791647657752037, + 0.0200046319514513, + 0.07219016551971436, + 0.04953980818390846, + -0.014693248085677624, + 0.0055375839583575726, + -0.03805318847298622, + -0.024883348494768143, + -0.04822728410363197, + 0.03611176460981369, + 0.044558580964803696, + 0.11040778458118439, + -0.06583743542432785, + 0.0021037496626377106, + -0.03165123984217644, + -0.014696926809847355, + -0.04762746021151543, + 0.06819526106119156, + 0.02703147567808628, + 0.003494128817692399, + -0.08236881345510483, + -0.11160680651664734, + -0.01815623976290226, + 0.05861439183354378, + 0.02789289876818657, + 0.09826840460300446, + -0.018366746604442596, + 0.024996820837259293, + -0.014123281463980675, + -0.010278263129293919, + -0.08983486890792847, + 0.005990868899971247, + 0.09915439039468765, + 0.044836826622486115, + 0.0036988400388509035, + 0.06478238850831985 + ], + "arrow-down-left-bold||directional,pointer,pointing,arrowhead": [ + 0.0414217934012413, + -0.03576961159706116, + -0.044829290360212326, + 0.010185320861637592, + -0.008725212886929512, + -0.021873077377676964, + 0.0694546177983284, + 0.00011150293721584603, + -0.006242995150387287, + 0.020867299288511276, + 0.00651743495836854, + 0.0962134599685669, + 0.036944322288036346, + 0.023888062685728073, + -0.030544523149728775, + 0.03157731890678406, + -0.05938398465514183, + 0.061382461339235306, + 0.055230677127838135, + 0.0666075050830841, + -0.03342010825872421, + 0.015007001347839832, + -0.049186866730451584, + 0.024025138467550278, + -0.02475498616695404, + 0.025012584403157234, + 0.0869312435388565, + 0.0003187281545251608, + -0.017618302255868912, + -0.06464216113090515, + -0.07193276286125183, + -0.05180375650525093, + -0.04328029602766037, + 0.034690652042627335, + -0.09404651075601578, + -0.03103553131222725, + 0.018600529059767723, + -0.005544946528971195, + -0.017826735973358154, + 0.05425205081701279, + 0.03962322697043419, + 0.005829507485032082, + -0.00308752479031682, + -0.013634754344820976, + 0.02552906796336174, + 0.07462112605571747, + -0.08955854922533035, + -0.021143034100532532, + 0.04789525270462036, + 0.061299461871385574, + -0.07869012653827667, + -0.06691287457942963, + -0.0537126362323761, + 0.009246875531971455, + 0.05560028925538063, + 0.07258330285549164, + -0.03228339925408363, + -0.03070804290473461, + 0.0674356073141098, + 0.021057279780507088, + 0.06613507121801376, + -0.03243550285696983, + 0.014162328094244003, + -0.01060763094574213, + 0.04639585316181183, + -0.018522484228014946, + -0.014417394064366817, + 0.03392987325787544, + 0.005582422949373722, + 0.02843976579606533, + 0.013623511418700218, + -0.041242536157369614, + -0.022602418437600136, + -0.045317646116018295, + -0.024514297023415565, + -0.016565952450037003, + 0.05657128989696503, + 0.06659307330846786, + -0.015806864947080612, + -0.048430122435092926, + -0.046538207679986954, + 0.027577068656682968, + -0.0553937666118145, + 0.04927259683609009, + 0.040566664189100266, + 0.08527730405330658, + -0.1005372554063797, + -0.05060727149248123, + -0.028060927987098694, + -0.004342047031968832, + -0.023165756836533546, + 0.0019946263637393713, + -0.03017188236117363, + -0.01855309307575226, + 0.029229147359728813, + -0.03661752864718437, + 0.08409903198480606, + -0.0800313651561737, + -0.11264359951019287, + 0.08085105568170547, + 0.014239411801099777, + 0.02020498551428318, + 0.03253675997257233, + -0.07655484974384308, + -0.012441554106771946, + -2.562420559115708e-05, + -0.019905004650354385, + -0.05646746605634689, + -0.05248728767037392, + -0.027229633182287216, + -0.04560181498527527, + -0.13690721988677979, + -0.04152658209204674, + -0.053474050015211105, + -0.03214801475405693, + -0.024949615821242332, + -0.11198655515909195, + -0.005498649086803198, + 0.11028940975666046, + -0.03165535628795624, + 0.011890591122210026, + -0.03808965906500816, + -0.05348389968276024, + -0.010135184973478317, + -0.05415479466319084, + 0.006660285405814648, + -0.026069466024637222, + -3.991734900314693e-33, + 0.06018499284982681, + 0.01774437725543976, + 0.012501816265285015, + 0.019948596134781837, + -0.007172992918640375, + 0.015552321448922157, + -0.056835733354091644, + -0.026062635704874992, + -0.10449279099702835, + 0.011353994719684124, + 0.15484844148159027, + -0.05094457045197487, + -0.06061867997050285, + 0.07866378128528595, + 0.022255245596170425, + -0.09789175540208817, + 0.02790045365691185, + 0.037140220403671265, + -0.13422006368637085, + 0.002204114105552435, + -0.020971577614545822, + 0.0678071603178978, + -0.09662522375583649, + -0.05266788601875305, + -0.022661056369543076, + 0.009498161263763905, + -0.018246976658701897, + -0.016369570046663284, + -0.09884975105524063, + 0.020885426551103592, + 0.01513521559536457, + 0.04098071530461311, + -0.0018678641645237803, + -0.09792771190404892, + -0.014659124426543713, + 0.0050334990955889225, + -0.10693934559822083, + -0.024080833420157433, + -0.02117345482110977, + -0.0329800620675087, + -0.02472301945090294, + -0.03347840905189514, + -0.06223485991358757, + -0.0019479956245049834, + -0.008676272816956043, + 0.15420152246952057, + -0.05336279049515724, + -0.09928315877914429, + 0.0163545124232769, + -0.020467787981033325, + -0.001009883126243949, + -0.014898782595992088, + 0.003088291035965085, + 0.017983216792345047, + 0.031834907829761505, + 0.015500539913773537, + -0.08714886009693146, + 0.14078737795352936, + -0.012110337615013123, + 0.017202874645590782, + 0.01333922054618597, + 0.016513032838702202, + 0.010429277084767818, + -0.02369369938969612, + -0.07730606943368912, + 0.03201206400990486, + -0.10890566557645798, + 0.024369752034544945, + 0.1081765741109848, + 0.004828839097172022, + 0.0018779959063977003, + 0.03505248576402664, + 0.06698242574930191, + 0.032423898577690125, + -0.031989891082048416, + 0.03058319166302681, + -0.027241144329309464, + -0.04853518679738045, + 0.08832655847072601, + -0.10299747437238693, + -0.0934695452451706, + 0.06317047029733658, + -0.04851372912526131, + 0.009824162349104881, + 0.06175471842288971, + -0.05945330113172531, + 0.0033485812600702047, + -0.03475624695420265, + -0.02022775448858738, + 0.06705765426158905, + -0.05040154233574867, + 0.0059302793815732, + -0.03241301700472832, + 0.005366642028093338, + -0.09278035163879395, + 2.6627669968585896e-34, + -0.012512817978858948, + 0.04735522344708443, + -0.07178490608930588, + 0.011685463599860668, + -0.14937523007392883, + 0.024997418746352196, + 0.06704171001911163, + -0.039466459304094315, + -0.0010443226201459765, + 0.08126863837242126, + 0.031399067491292953, + 0.02704644203186035, + -0.03549031913280487, + -0.02352040633559227, + 0.06382030993700027, + 0.021043287590146065, + 0.06409803777933121, + 0.05020717531442642, + 0.019748471677303314, + -0.0560343936085701, + -0.024762528017163277, + -0.0568808950483799, + -0.0001340994203928858, + 0.03892039135098457, + 0.006381606683135033, + 0.0235636867582798, + 0.07455005496740341, + 0.047796692699193954, + -0.046034231781959534, + -0.050280217081308365, + 0.033208925276994705, + 0.02842375636100769, + 0.045506466180086136, + 0.051533348858356476, + -0.07045070827007294, + -0.033839721232652664, + -0.05492401495575905, + -0.05905322730541229, + 0.0773833766579628, + 0.009539686143398285, + 0.04508420079946518, + 0.03979772329330444, + 0.1202254369854927, + 0.012374854646623135, + 0.011779243126511574, + 0.0803028866648674, + 0.01663381978869438, + 0.010911253280937672, + 0.02210615575313568, + 0.016312116757035255, + 0.0013027599779888988, + -0.017563000321388245, + -0.007360551971942186, + -0.027759645134210587, + -0.08914501219987869, + -0.03424741327762604, + 0.07687532901763916, + 0.05856996402144432, + 0.027914680540561676, + 0.022464962676167488, + -0.010186821222305298, + -0.027606716379523277, + 0.0057311044074594975, + 0.05636771395802498, + -0.0064420741982758045, + -0.0313648022711277, + 0.05047864094376564, + -0.059026457369327545, + 0.031059324741363525, + -0.027786241844296455, + 0.059052299708127975, + 0.09714088588953018, + 0.04643497243523598, + -0.011044071055948734, + 0.05231169983744621, + -0.05489315465092659, + 0.038935448974370956, + 0.021183738484978676, + -0.02886773832142353, + -0.02216339111328125, + -0.06426624953746796, + -0.004768780432641506, + -0.0160583034157753, + 0.04425452649593353, + 0.00014417973579838872, + 0.03628655895590782, + -0.06398788094520569, + 0.018197035416960716, + 0.013209129683673382, + -0.006797087844461203, + -0.01713847555220127, + -0.002199997194111347, + 0.0014017809880897403, + -0.05368994548916817, + -0.04325379803776741, + -2.1817395889911495e-08, + -0.05301768705248833, + -0.030509158968925476, + -0.0028426365461200476, + -0.010190918110311031, + -0.013394403271377087, + -0.0007379691815003753, + 0.008726709522306919, + -0.0022041501943022013, + -0.00746499840170145, + -0.06208595633506775, + 0.01747007854282856, + 0.057238053530454636, + -0.0684335008263588, + -0.017926044762134552, + 0.11882267892360687, + 0.03174393251538277, + -0.06773149222135544, + 0.013645381666719913, + -0.017745807766914368, + -0.01872028037905693, + -0.011486445553600788, + 0.013290603645145893, + 0.007837094366550446, + 0.07235001772642136, + -0.013507824391126633, + 0.014296210370957851, + 0.00865589827299118, + 0.15266907215118408, + 0.07384025305509567, + 0.015852877870202065, + 0.07021866738796234, + 0.03720694035291672, + -0.018646106123924255, + 0.0009841626742854714, + -0.03758516535162926, + -0.017978576943278313, + -0.06261933594942093, + 0.036347877234220505, + 0.034479714930057526, + 0.10402297973632812, + -0.05521857365965843, + 0.0038940212689340115, + -0.03203178197145462, + -0.01023895014077425, + -0.04466161131858826, + 0.06755760312080383, + 0.029351012781262398, + 0.010710016824305058, + -0.0794832855463028, + -0.12345858663320541, + -0.017741169780492783, + 0.06673324108123779, + 0.027014661580324173, + 0.08527253568172455, + -0.012053921818733215, + 0.036734841763973236, + -0.015881787985563278, + -0.019975516945123672, + -0.08515428751707077, + 0.007635870948433876, + 0.09996702522039413, + 0.07966514676809311, + 0.00536363897845149, + 0.07510159909725189 + ], + "arrow-down-right-bold||directional,pointer,pointing,arrowhead": [ + 0.039237964898347855, + -0.036025501787662506, + -0.054364848881959915, + 0.007044455502182245, + -0.015791794285178185, + -0.010773704387247562, + 0.06802845001220703, + 0.0049141631461679935, + -0.008470222353935242, + 0.01964694820344448, + 0.018987972289323807, + 0.10058074444532394, + 0.039063580334186554, + 0.019555851817131042, + -0.02750379592180252, + 0.03138977661728859, + -0.0612206794321537, + 0.0629245787858963, + 0.05455688014626503, + 0.05716322362422943, + -0.01798531785607338, + 0.013231571763753891, + -0.050291478633880615, + 0.023474756628274918, + -0.024090828374028206, + 0.026474010199308395, + 0.08038939535617828, + 0.0010938165942206979, + -0.018312683328986168, + -0.06222312152385712, + -0.07828228175640106, + -0.052671365439891815, + -0.04232490435242653, + 0.03390740975737572, + -0.09099723398685455, + -0.02191406860947609, + 0.015281391330063343, + -0.0035518305376172066, + -0.018159519881010056, + 0.0471758171916008, + 0.033759620040655136, + -0.0016545596299692988, + -0.008223287761211395, + -0.015369249507784843, + 0.018614891916513443, + 0.07876913249492645, + -0.08295892924070358, + -0.020318536087870598, + 0.03950357064604759, + 0.06122693791985512, + -0.08044229447841644, + -0.06229333579540253, + -0.05784911289811134, + 0.011543733067810535, + 0.06529822945594788, + 0.08409024029970169, + -0.03278103843331337, + -0.02499057538807392, + 0.06926630437374115, + 0.022160589694976807, + 0.05658119171857834, + -0.03674997389316559, + 0.010436429642140865, + -0.004594021942466497, + 0.04818880558013916, + -0.011996849440038204, + -0.016687730327248573, + 0.032231226563453674, + 0.0015169241232797503, + 0.033505089581012726, + 0.013291292823851109, + -0.040616512298583984, + -0.01826556771993637, + -0.04170243814587593, + -0.02692399173974991, + -0.019350772723555565, + 0.053313788026571274, + 0.0665636956691742, + -0.020864294841885567, + -0.04598161205649376, + -0.045613233000040054, + 0.0278264582157135, + -0.05890337750315666, + 0.05943085998296738, + 0.03705825284123421, + 0.08948692679405212, + -0.0981220230460167, + -0.04717547819018364, + -0.021769331768155098, + -0.0018716736230999231, + -0.01817176304757595, + -0.008693605661392212, + -0.029853759333491325, + -0.008783094584941864, + 0.021766824647784233, + -0.03733901306986809, + 0.08302395045757294, + -0.08261522650718689, + -0.11001748591661453, + 0.07523824274539948, + 0.015444302931427956, + 0.00916519109159708, + 0.0328177846968174, + -0.0766352191567421, + -0.01242019422352314, + -0.006582878530025482, + -0.015691250562667847, + -0.05509107559919357, + -0.04406645894050598, + -0.01933867484331131, + -0.044918082654476166, + -0.13377955555915833, + -0.04546874016523361, + -0.04879920557141304, + -0.03680377081036568, + -0.0208843145519495, + -0.110126793384552, + -0.010815788991749287, + 0.10481523722410202, + -0.028961360454559326, + 0.010853229090571404, + -0.02544410340487957, + -0.05336643382906914, + -0.015080939047038555, + -0.055019352585077286, + 0.0022069881670176983, + -0.02854200080037117, + -3.859715497115826e-33, + 0.05758952349424362, + 0.01583906263113022, + 0.01770484820008278, + 0.01711835153400898, + -0.003706113202497363, + 0.011010858230292797, + -0.06541567295789719, + -0.029461722820997238, + -0.10283748805522919, + 0.024315670132637024, + 0.15516436100006104, + -0.055523477494716644, + -0.0617617703974247, + 0.08837622404098511, + 0.025166569277644157, + -0.09826831519603729, + 0.029033491387963295, + 0.03720921650528908, + -0.13204434514045715, + 0.0027930301148444414, + -0.027654102072119713, + 0.0680413469672203, + -0.0931643396615982, + -0.05353487282991409, + -0.02025245502591133, + 0.009877984412014484, + -0.018278706818819046, + -0.01611306704580784, + -0.09591176360845566, + 0.019520539790391922, + 0.0055440920405089855, + 0.03130486607551575, + 0.00024363920965697616, + -0.09503096342086792, + -0.013795001432299614, + -0.0017784454394131899, + -0.107355996966362, + -0.022175287827849388, + -0.025350214913487434, + -0.037755027413368225, + -0.023914234712719917, + -0.029279818758368492, + -0.06984445452690125, + -0.0011718976311385632, + -0.001390929101034999, + 0.14535874128341675, + -0.05119825527071953, + -0.09846645593643188, + 0.015529850497841835, + -0.018934981897473335, + 0.004298042505979538, + -0.01106405258178711, + 0.0053262109868228436, + 0.03078577108681202, + 0.0321250818669796, + 0.01683700457215309, + -0.08619945496320724, + 0.15339277684688568, + -0.01773037388920784, + 0.017708582803606987, + 0.012863032519817352, + 0.013513295911252499, + 0.018304022029042244, + -0.029046108946204185, + -0.07402396202087402, + 0.035208914428949356, + -0.10949085652828217, + 0.024916497990489006, + 0.11038367450237274, + 0.008207706734538078, + -0.002115157898515463, + 0.04035396873950958, + 0.060457296669483185, + 0.037047889083623886, + -0.037353288382291794, + 0.030902745202183723, + -0.036447759717702866, + -0.046120330691337585, + 0.09224207699298859, + -0.09481249749660492, + -0.10004325956106186, + 0.06165150925517082, + -0.0556279718875885, + 0.003933339845389128, + 0.05407295003533363, + -0.06467416137456894, + 0.0014914507046341896, + -0.036199554800987244, + -0.015410713851451874, + 0.06000662222504616, + -0.04992881789803505, + 0.010570901446044445, + -0.0327315516769886, + 0.001765238819643855, + -0.08845774829387665, + 1.1186798619466655e-34, + -0.010015158914029598, + 0.048213470727205276, + -0.061268050223588943, + 0.01752646453678608, + -0.1523669958114624, + 0.029345203191041946, + 0.068906769156456, + -0.040496572852134705, + -0.0035818121396005154, + 0.08702313899993896, + 0.031904373317956924, + 0.02541683241724968, + -0.03662821650505066, + -0.024753320962190628, + 0.06768019497394562, + 0.0190596841275692, + 0.060604892671108246, + 0.05089884251356125, + 0.02821800857782364, + -0.05358847230672836, + -0.027013326063752174, + -0.06555173546075821, + -0.004032287746667862, + 0.0387185662984848, + 0.007167960051447153, + 0.022936953231692314, + 0.08090896904468536, + 0.047566913068294525, + -0.03762722760438919, + -0.04855581000447273, + 0.035396166145801544, + 0.0214465893805027, + 0.032111380249261856, + 0.0574936717748642, + -0.07175742089748383, + -0.03374888375401497, + -0.058575332164764404, + -0.05309976637363434, + 0.07442276179790497, + 0.006528024096041918, + 0.04781073331832886, + 0.042381253093481064, + 0.1250191181898117, + 0.015196663327515125, + 0.004317654296755791, + 0.08340877294540405, + 0.01139282900840044, + 0.010849520564079285, + 0.01687058061361313, + 0.007201412692666054, + -0.0016888516256585717, + -0.01747008040547371, + -0.003612068248912692, + -0.02665886841714382, + -0.08728746324777603, + -0.03128677234053612, + 0.08368352055549622, + 0.05136323720216751, + 0.017396997660398483, + 0.02510644868016243, + -0.005872773006558418, + -0.03536605462431908, + -0.0022081080824136734, + 0.05801737308502197, + -0.009483975358307362, + -0.027131158858537674, + 0.046035222709178925, + -0.06279002875089645, + 0.023625468835234642, + -0.028240442276000977, + 0.055662382394075394, + 0.08912687003612518, + 0.045997921377420425, + -0.010647027753293514, + 0.046582408249378204, + -0.06741419434547424, + 0.03725401684641838, + 0.023566285148262978, + -0.025490960106253624, + -0.029414435848593712, + -0.05607425048947334, + 0.0018752190517261624, + -0.023030489683151245, + 0.04816077649593353, + -0.0019113015150651336, + 0.03929699584841728, + -0.06818558275699615, + 0.019449058920145035, + 0.016450736671686172, + -0.009780997410416603, + -0.015691004693508148, + 0.00689713703468442, + -0.0023580000270158052, + -0.0477963387966156, + -0.049571871757507324, + -2.1935903760095243e-08, + -0.060077570378780365, + -0.02898191474378109, + 0.002535104751586914, + -0.011631411500275135, + -0.008005192503333092, + -0.0008601230219937861, + 0.00372962630353868, + 0.0018333018524572253, + -0.005079568363726139, + -0.0639682486653328, + 0.011868744157254696, + 0.05253206193447113, + -0.07063421607017517, + -0.013828307390213013, + 0.13029435276985168, + 0.029501430690288544, + -0.0676841139793396, + 0.013470705598592758, + -0.013882582075893879, + -0.020817937329411507, + -0.017032267525792122, + 0.010354900732636452, + 0.006430888082832098, + 0.0725478008389473, + -0.011191233992576599, + 0.015591228380799294, + 0.006642678752541542, + 0.15455305576324463, + 0.06577551364898682, + 0.0166273582726717, + 0.07003093510866165, + 0.038604844361543655, + -0.017277969047427177, + -0.0014376321341842413, + -0.02490743063390255, + -0.011345135979354382, + -0.06051257997751236, + 0.03336704522371292, + 0.044203635305166245, + 0.09995567053556442, + -0.05304607003927231, + -0.0006009632488712668, + -0.03305867314338684, + -0.010303277522325516, + -0.04313928633928299, + 0.06780991703271866, + 0.037499748170375824, + 0.008735130541026592, + -0.0812474861741066, + -0.1268460899591446, + -0.021828701719641685, + 0.07229065150022507, + 0.030645960941910744, + 0.0844387635588646, + -0.013346264138817787, + 0.04288036376237869, + -0.017009753733873367, + -0.026127617806196213, + -0.07893778383731842, + 0.0063903140835464, + 0.1021798774600029, + 0.0804508626461029, + 0.0029168466571718454, + 0.07335377484560013 + ], + "arrow-elbow-down-left-bold||directional,pointer,pointing,arrowhead": [ + 0.051632486283779144, + -0.030859902501106262, + -0.02537606470286846, + -0.0143645154312253, + -0.017524031922221184, + -0.01785631664097309, + 0.08264573663473129, + 0.020291583612561226, + 0.011542079038918018, + 0.010199818760156631, + 0.042656295001506805, + 0.0579012893140316, + 0.04462774097919464, + 0.0111052505671978, + -0.04780547693371773, + 0.02574235014617443, + -0.06327222287654877, + 0.046716492623090744, + 0.04852226749062538, + 0.05275543034076691, + -0.007276112213730812, + 0.03002566657960415, + -0.023830806836485863, + 0.022107142955064774, + -0.0014969917247071862, + 0.029117939993739128, + 0.07568530738353729, + 0.03026377595961094, + -0.019777005538344383, + -0.08598507195711136, + -0.068126380443573, + -0.019810566678643227, + -0.02812367118895054, + 0.05173620209097862, + -0.09168332070112228, + -0.059282828122377396, + 0.0010046196402981877, + 0.014953093603253365, + -0.013057631440460682, + 0.0541905015707016, + 0.027998061850667, + -0.003211013972759247, + 0.012939920648932457, + -0.01511218212544918, + 0.043919287621974945, + 0.12161601334810257, + -0.1037689745426178, + -0.026536526158452034, + 0.027705222368240356, + 0.0633082464337349, + -0.0684477910399437, + -0.06978803873062134, + -0.03396419435739517, + 0.018382348120212555, + 0.09019666165113449, + 0.0748172402381897, + -0.03627122938632965, + -0.03677443414926529, + 0.06142259016633034, + 0.031465500593185425, + 0.08323387056589127, + -0.056414343416690826, + 0.004748126026242971, + -0.0026951865293085575, + 0.04064277932047844, + -0.024350587278604507, + -0.004143522121012211, + 0.017343366518616676, + -0.00590293575078249, + -0.00109494396019727, + 0.0267495047301054, + -0.03234543651342392, + -0.05521203950047493, + -0.05928053706884384, + -0.004641991574317217, + -0.02569580078125, + 0.05183661729097366, + 0.04934652894735336, + -0.01276308111846447, + -0.03730474412441254, + -0.08815103024244308, + 0.03598768264055252, + -0.044907815754413605, + 0.05416397750377655, + 0.032510679215192795, + 0.09352975338697433, + -0.06871556490659714, + -0.029915351420640945, + -0.033678822219371796, + -0.0027576214633882046, + -0.023602494969964027, + -0.008782691322267056, + -0.04668986424803734, + -0.0546765960752964, + 0.03628993034362793, + -0.01991228759288788, + 0.08602757006883621, + -0.10858228802680969, + -0.12012453377246857, + 0.08126570284366608, + 0.014054258354008198, + -0.01831064186990261, + 0.031169023364782333, + -0.08031807839870453, + -0.006750741507858038, + -0.008656085468828678, + -0.02320716716349125, + -0.04978741705417633, + -0.0294273030012846, + -0.030221398919820786, + -0.04217485338449478, + -0.1434873789548874, + -0.043689578771591187, + -0.045262936502695084, + -0.007073543965816498, + -0.020533457398414612, + -0.12301202863454819, + -0.02073046565055847, + 0.11877326667308807, + -0.012123383581638336, + 0.002813542727380991, + -0.016611307859420776, + -0.048211101442575455, + 0.004906890448182821, + -0.06990907341241837, + 0.008286356925964355, + -0.033671531826257706, + -3.7760302175708645e-33, + 0.02840346097946167, + 0.024978158995509148, + -0.00812448188662529, + -0.0006387931061908603, + -0.014035518281161785, + -0.016666393727064133, + -0.040576331317424774, + -0.05324869602918625, + -0.06573989242315292, + 0.022800877690315247, + 0.11853393912315369, + -0.012793172150850296, + -0.034757986664772034, + 0.08751555532217026, + 0.06948070228099823, + -0.10024631023406982, + 0.018752597272396088, + 0.06076308712363243, + -0.1312446892261505, + 0.028447261080145836, + -0.010038293898105621, + 0.07533296942710876, + -0.07291322946548462, + -0.03434135392308235, + -0.015654444694519043, + 0.03413087874650955, + -0.029243171215057373, + -0.02452711947262287, + -0.058757808059453964, + 0.02081025391817093, + -0.017758971080183983, + 0.054908156394958496, + -0.01641499623656273, + -0.08928028494119644, + -0.008134252391755581, + -0.024360448122024536, + -0.09138818085193634, + -0.03539656847715378, + -0.02676287852227688, + -0.038788579404354095, + -0.011729542165994644, + -0.02272608131170273, + -0.06925531476736069, + -0.012703989632427692, + 0.009845591150224209, + 0.1372602880001068, + -0.05793600529432297, + -0.062617227435112, + 0.009927406907081604, + -0.009859736077487469, + 0.00933797936886549, + 0.01858808659017086, + 0.03392155468463898, + -0.002958097029477358, + 0.03158050402998924, + 0.02048248052597046, + -0.08273454010486603, + 0.11588945239782333, + -0.03136680647730827, + 0.04596855863928795, + 0.01353922113776207, + 0.03077736869454384, + 0.0040420228615403175, + -0.021327031776309013, + -0.07192539423704147, + 0.02978135459125042, + -0.1098761335015297, + 0.014931181445717812, + 0.12037204205989838, + 0.004159111063927412, + -0.010068394243717194, + 0.01647328957915306, + 0.08308979123830795, + 0.08051016926765442, + -0.05700712651014328, + 0.027838753536343575, + -0.03159056231379509, + -0.0147316362708807, + 0.07548531889915466, + -0.08766148239374161, + -0.10666006058454514, + 0.07781585305929184, + -0.04563841223716736, + -0.008993779309093952, + 0.056887537240982056, + -0.0781201496720314, + 0.00704360194504261, + -0.05291154235601425, + -0.03644396364688873, + 0.06887266039848328, + -0.05788654461503029, + 0.03918738290667534, + -0.036494478583335876, + 0.012749536894261837, + -0.09237086772918701, + 8.696763629799188e-34, + 0.004334454890340567, + 0.05007129907608032, + -0.07889187335968018, + -0.004369551781564951, + -0.1317872703075409, + 0.0090070441365242, + 0.08091466128826141, + -0.03362425044178963, + 0.00527995266020298, + 0.07169783860445023, + 0.020157521590590477, + 0.02585049904882908, + -0.03879479691386223, + -0.028334753587841988, + 0.0875348150730133, + -0.005230470560491085, + 0.06212298199534416, + 0.054057776927948, + 0.03527165949344635, + -0.037380069494247437, + -0.0070272875018417835, + -0.04274487867951393, + 0.018183749169111252, + 0.01876075193285942, + 0.005851720925420523, + 0.028021248057484627, + 0.07267438620328903, + 0.0009912402601912618, + -0.06153301149606705, + -0.03862948715686798, + 0.012190185487270355, + -0.0014529156032949686, + 0.04149172455072403, + 0.06911943852901459, + -0.05277957022190094, + -0.04573734849691391, + -0.04513455927371979, + -0.08056619763374329, + 0.056391641497612, + 0.01649114117026329, + 0.05616229027509689, + 0.0339445061981678, + 0.11275868117809296, + 0.03541644290089607, + 0.03297218307852745, + 0.0494663342833519, + -0.028163231909275055, + 0.018583819270133972, + -0.0179989542812109, + -0.006189580075442791, + -0.009793555364012718, + 0.0030759312212467194, + 0.016602108255028725, + -0.05548308789730072, + -0.08336854726076126, + -0.053615737706422806, + 0.0836765319108963, + 0.020037660375237465, + 0.052224792540073395, + 0.010018223896622658, + -0.013607174158096313, + -0.039975594729185104, + 0.009403147734701633, + 0.07264549285173416, + -0.002124544233083725, + -0.032443366944789886, + 0.01670796051621437, + -0.09719108045101166, + -0.022065117955207825, + -0.02027934603393078, + 0.06590008735656738, + 0.08513148128986359, + 0.05413764715194702, + -0.02350454404950142, + 0.0381590910255909, + -0.02284613437950611, + 0.039296090602874756, + 0.0014120086561888456, + -0.019445868209004402, + -0.04479915276169777, + -0.09932678192853928, + -0.004885972943156958, + -0.008934766985476017, + 0.07734864205121994, + -0.008153902366757393, + 0.040954966098070145, + -0.06391135603189468, + 0.012059497646987438, + 0.02079862169921398, + -0.004437913186848164, + 0.0015886523760855198, + -0.009443278424441814, + -0.0011129770427942276, + 0.0002083781873807311, + -0.03724292665719986, + -2.1743911560179185e-08, + -0.06406386941671371, + -0.005872067995369434, + -0.0014029772719368339, + -0.0005826811539009213, + 0.01542800571769476, + 0.036635518074035645, + 0.015835268422961235, + -0.017009301111102104, + -0.0011802827939391136, + -0.059569351375103, + 0.036507971584796906, + 0.059331510215997696, + -0.07217272371053696, + 0.013535622507333755, + 0.1214337944984436, + 0.04301942139863968, + -0.05880262330174446, + 0.01895511895418167, + -0.026499982923269272, + -0.04832322895526886, + -0.009837837889790535, + 0.000864808913320303, + 0.01841716095805168, + 0.05624030530452728, + -0.023410309106111526, + 0.008577668108046055, + -0.0011299342149868608, + 0.13775378465652466, + 0.031557612121105194, + 0.013197913765907288, + 0.08627632260322571, + 0.02442907728254795, + -0.015304342843592167, + -0.014139225706458092, + -0.014980151318013668, + 0.00417967839166522, + -0.050932321697473526, + 0.04461568221449852, + 0.01822873018682003, + 0.1116383969783783, + -0.07044806331396103, + 0.007169247139245272, + -0.03478129953145981, + -0.017737090587615967, + -0.012378289364278316, + 0.05881338566541672, + 0.032485481351614, + 0.006953709293156862, + -0.07302282005548477, + -0.11361747980117798, + -0.018241526558995247, + 0.061767734587192535, + 0.01853601075708866, + 0.07537693530321121, + -0.02712620608508587, + 0.052122749388217926, + 0.012729172594845295, + -0.03713846951723099, + -0.08244302123785019, + 0.020899154245853424, + 0.10293319821357727, + 0.10449231415987015, + 0.013622126542031765, + 0.07750155031681061 + ], + "arrow-elbow-down-right-bold||directional,pointer,pointing,arrowhead": [ + 0.052668482065200806, + -0.030371809378266335, + -0.027010727673768997, + -0.01853693276643753, + -0.02346121333539486, + -0.009142397902905941, + 0.08404524624347687, + 0.025228086858987808, + 0.013362164609134197, + 0.012779450044035912, + 0.05027921497821808, + 0.059244878590106964, + 0.04748620092868805, + 0.009014664217829704, + -0.04557828977704048, + 0.02403256669640541, + -0.0613582544028759, + 0.04770985245704651, + 0.0460023395717144, + 0.04540546238422394, + 0.004335104487836361, + 0.028723042458295822, + -0.019701635465025902, + 0.022446123883128166, + 0.0006091214600019157, + 0.027954889461398125, + 0.0701078549027443, + 0.03256586939096451, + -0.019616330042481422, + -0.08625199645757675, + -0.07439662516117096, + -0.01688506454229355, + -0.022881966084241867, + 0.051138315349817276, + -0.09000766277313232, + -0.05373440682888031, + -0.002687973203137517, + 0.015064180828630924, + -0.011358116753399372, + 0.053079910576343536, + 0.023424144834280014, + -0.007216974627226591, + 0.01102299615740776, + -0.014662768691778183, + 0.040955495089292526, + 0.12671822309494019, + -0.09794919937849045, + -0.026037955656647682, + 0.02103571966290474, + 0.06228194013237953, + -0.06863758713006973, + -0.06701385974884033, + -0.03155688941478729, + 0.01978376694023609, + 0.09585222601890564, + 0.08249973505735397, + -0.03859354928135872, + -0.034569378942251205, + 0.06377488374710083, + 0.03260194510221481, + 0.0790947899222374, + -0.058208025991916656, + 0.0023541573900729418, + 0.0010220252443104982, + 0.04058712720870972, + -0.02093326859176159, + -0.0030069516506046057, + 0.013739258050918579, + -0.009922749362885952, + 0.004316018428653479, + 0.02938527800142765, + -0.03104264661669731, + -0.05311136692762375, + -0.055653464049100876, + -0.0071981861256062984, + -0.02368558570742607, + 0.04929262772202492, + 0.04768884554505348, + -0.018038718029856682, + -0.037175502628088, + -0.08910518139600754, + 0.035498443990945816, + -0.04478254169225693, + 0.06053485348820686, + 0.03064611554145813, + 0.09552998840808868, + -0.0644727498292923, + -0.027252841740846634, + -0.0335293710231781, + -0.002690268447622657, + -0.020754577592015266, + -0.01737373135983944, + -0.048699017614126205, + -0.049476221203804016, + 0.03138710930943489, + -0.018936719745397568, + 0.08346103876829147, + -0.11077175289392471, + -0.11890672892332077, + 0.07586111128330231, + 0.013937830924987793, + -0.025893375277519226, + 0.03309128060936928, + -0.07867021858692169, + -0.005567681044340134, + -0.014954114332795143, + -0.022317862138152122, + -0.050448063760995865, + -0.024705173447728157, + -0.022136716172099113, + -0.040183018893003464, + -0.13910429179668427, + -0.042925506830215454, + -0.04185093939304352, + -0.010032122023403645, + -0.017635757103562355, + -0.1225285604596138, + -0.024455761536955833, + 0.11395294964313507, + -0.008565498515963554, + 0.0014708306407555938, + -0.007453469093888998, + -0.0468575693666935, + 0.0015267165144905448, + -0.07119415700435638, + 0.005863345228135586, + -0.03504451364278793, + -3.598744363631755e-33, + 0.02693372219800949, + 0.022045593708753586, + -0.006769385654479265, + -0.0017829716671258211, + -0.012881162576377392, + -0.02340575121343136, + -0.046991243958473206, + -0.05720536410808563, + -0.06233707442879677, + 0.032222915440797806, + 0.11531022191047668, + -0.010635467246174812, + -0.03227192535996437, + 0.09235433489084244, + 0.0749099850654602, + -0.09862199425697327, + 0.016637705266475677, + 0.059597279876470566, + -0.1289863884449005, + 0.029729554429650307, + -0.014430101029574871, + 0.07426561415195465, + -0.06794442236423492, + -0.033539459109306335, + -0.01387549377977848, + 0.03696979954838753, + -0.030499225482344627, + -0.025548789650201797, + -0.05720200017094612, + 0.020239101722836494, + -0.026015713810920715, + 0.04804081842303276, + -0.014880492351949215, + -0.08555498719215393, + -0.007463662885129452, + -0.028695322573184967, + -0.09068960696458817, + -0.034964218735694885, + -0.02951630763709545, + -0.041508544236421585, + -0.014692220836877823, + -0.019252005964517593, + -0.07475893199443817, + -0.014208258129656315, + 0.017462030053138733, + 0.13137303292751312, + -0.055202417075634, + -0.0605957992374897, + 0.006349262781441212, + -0.009274599142372608, + 0.013380071148276329, + 0.021616606041789055, + 0.03710592910647392, + 0.0006443147431127727, + 0.031078018248081207, + 0.021846523508429527, + -0.08078087121248245, + 0.12174229323863983, + -0.03420544043183327, + 0.05035768449306488, + 0.011680598370730877, + 0.029501065611839294, + 0.007508524693548679, + -0.022838309407234192, + -0.06740612536668777, + 0.03279030695557594, + -0.10884822905063629, + 0.013860244303941727, + 0.12211636453866959, + 0.004649397451430559, + -0.011104770936071873, + 0.01682579517364502, + 0.07690779119729996, + 0.08485616743564606, + -0.06061084195971489, + 0.029759807512164116, + -0.03675714135169983, + -0.012067119590938091, + 0.07730699330568314, + -0.08276477456092834, + -0.11115605384111404, + 0.07728521525859833, + -0.0483098067343235, + -0.01450523640960455, + 0.0515478141605854, + -0.08255557715892792, + 0.007415049709379673, + -0.05808510258793831, + -0.03530937805771828, + 0.0646277517080307, + -0.05691669508814812, + 0.043377846479415894, + -0.03491608798503876, + 0.008983856998383999, + -0.08993696421384811, + 8.044165900421117e-34, + 0.005337531678378582, + 0.050755102187395096, + -0.07119739055633545, + -0.001294179237447679, + -0.1325770616531372, + 0.011112360283732414, + 0.08669783920049667, + -0.03194337710738182, + 0.0039596413262188435, + 0.07432031631469727, + 0.02382420375943184, + 0.02449207194149494, + -0.042379237711429596, + -0.030536120757460594, + 0.09110403805971146, + -0.008223187178373337, + 0.062077876180410385, + 0.0576757937669754, + 0.042506806552410126, + -0.03121187351644039, + -0.005292239133268595, + -0.04680100455880165, + 0.011249636299908161, + 0.01883196085691452, + 0.0068289353512227535, + 0.027732452377676964, + 0.07487135380506516, + -6.814226071583107e-05, + -0.05714934691786766, + -0.03890879824757576, + 0.012206018902361393, + -0.006563835311681032, + 0.03195874020457268, + 0.07549487799406052, + -0.054953865706920624, + -0.045869067311286926, + -0.04894912987947464, + -0.07750097662210464, + 0.05104086175560951, + 0.01840316131711006, + 0.058533068746328354, + 0.03340752795338631, + 0.11669135838747025, + 0.03474988788366318, + 0.03016146831214428, + 0.047076236456632614, + -0.036273181438446045, + 0.01686694473028183, + -0.024165472015738487, + -0.01324344053864479, + -0.008508839644491673, + 0.005318600218743086, + 0.020834464579820633, + -0.05553945526480675, + -0.08258307725191116, + -0.053460799157619476, + 0.08873956650495529, + 0.011982861906290054, + 0.043183524161577225, + 0.012458904646337032, + -0.010987863875925541, + -0.04423117637634277, + 0.0052384547889232635, + 0.07505785673856735, + -0.002542604226619005, + -0.02791662886738777, + 0.009448479861021042, + -0.10150763392448425, + -0.0314021036028862, + -0.020640060305595398, + 0.06106787919998169, + 0.07838208973407745, + 0.05288277938961983, + -0.02505565620958805, + 0.03212418407201767, + -0.02751820534467697, + 0.03718820959329605, + 0.0042249467223882675, + -0.019406553357839584, + -0.04971826449036598, + -0.09643735736608505, + 0.0007108257850632071, + -0.013006939552724361, + 0.08157043159008026, + -0.009683155454695225, + 0.04349370300769806, + -0.06689883768558502, + 0.013444686308503151, + 0.02404291369020939, + -0.004416110925376415, + 0.006926999893039465, + -0.005961421877145767, + -0.002270472701638937, + 0.009059961885213852, + -0.03899670019745827, + -2.1322600574080752e-08, + -0.07024573534727097, + 0.00048390819574706256, + 0.003143787384033203, + -0.000975338218268007, + 0.019878333434462547, + 0.039080265909433365, + 0.010705742985010147, + -0.014865980483591557, + 0.001122741959989071, + -0.06129823625087738, + 0.03380068764090538, + 0.05741288885474205, + -0.07231545448303223, + 0.018728576600551605, + 0.12823858857154846, + 0.04158897325396538, + -0.06057754158973694, + 0.019543420523405075, + -0.024148432537913322, + -0.05178279057145119, + -0.012843377888202667, + -0.00036489139893092215, + 0.015389563515782356, + 0.05677664279937744, + -0.022936712950468063, + 0.0077545917592942715, + -0.004597190767526627, + 0.13596214354038239, + 0.023496778681874275, + 0.015622653998434544, + 0.08716633915901184, + 0.024000976234674454, + -0.012590275146067142, + -0.01743854582309723, + -0.007489955984055996, + 0.008338992483913898, + -0.045210134238004684, + 0.04055067524313927, + 0.02228076569736004, + 0.10850434005260468, + -0.07062791287899017, + 0.0031720588449388742, + -0.03719818964600563, + -0.01617385447025299, + -0.011007185094058514, + 0.056777313351631165, + 0.03614741191267967, + 0.007071318104863167, + -0.07361423969268799, + -0.11445056647062302, + -0.019001368433237076, + 0.06456200033426285, + 0.02107875980436802, + 0.07292164862155914, + -0.02787020429968834, + 0.056329116225242615, + 0.012948885560035706, + -0.042158834636211395, + -0.07793018221855164, + 0.020730935037136078, + 0.10168265551328659, + 0.10378755629062653, + 0.012154695577919483, + 0.07647208869457245 + ], + "arrow-elbow-left-bold||directional,pointer,pointing,arrowhead": [ + 0.04682313650846481, + -0.03401772305369377, + -0.025269942358136177, + 0.0006722025573253632, + -0.0033468904439359903, + -0.026843206956982613, + 0.08701270818710327, + 0.0025184534024447203, + 0.016666850075125694, + -7.311203808058053e-05, + 0.039028432220220566, + 0.044951945543289185, + 0.03458573296666145, + 0.007203113287687302, + -0.042894113808870316, + 0.02592862769961357, + -0.06780903041362762, + 0.031196895986795425, + 0.05814378336071968, + 0.04819149896502495, + -0.02552417293190956, + 0.04675641655921936, + -0.01351658720523119, + 0.02469765953719616, + -0.006043664179742336, + 0.028421832248568535, + 0.08541018515825272, + 0.027904752641916275, + -0.026885906234383583, + -0.09087186306715012, + -0.055597059428691864, + -0.018055975437164307, + -0.035287365317344666, + 0.04568925127387047, + -0.08349538594484329, + -0.06307144463062286, + -0.012074456550180912, + 0.013721365481615067, + -0.01706504262983799, + 0.053435757756233215, + 0.036676663905382156, + 0.007347160950303078, + 0.024035941809415817, + -0.02404606342315674, + 0.042918216437101364, + 0.13132216036319733, + -0.0985511988401413, + -0.021791653707623482, + 0.03826753422617912, + 0.07084399461746216, + -0.07092145085334778, + -0.08334890007972717, + -0.025076210498809814, + 0.003142214845865965, + 0.09739264100790024, + 0.07462193816900253, + -0.0387638695538044, + -0.039269864559173584, + 0.054646383970975876, + 0.022128162905573845, + 0.08001857995986938, + -0.0470026433467865, + 0.013064226135611534, + -0.003133502323180437, + 0.03365562856197357, + -0.028989432379603386, + 0.001678453292697668, + 0.01586402952671051, + -0.013220162130892277, + -0.005510770715773106, + 0.03440814092755318, + -0.02682402916252613, + -0.06635011732578278, + -0.06587568670511246, + 0.0052876719273626804, + -0.02542317472398281, + 0.046563033014535904, + 0.05877021327614784, + -0.013518201187252998, + -0.03316492959856987, + -0.09451454877853394, + 0.02109844982624054, + -0.04303474351763725, + 0.043316617608070374, + 0.04307842627167702, + 0.1028655618429184, + -0.06685854494571686, + -0.04053006321191788, + -0.03559715300798416, + 0.0008262568735517561, + -0.015674853697419167, + 0.004780508112162352, + -0.0567961223423481, + -0.06457890570163727, + 0.05231636017560959, + -0.008351374417543411, + 0.07926255464553833, + -0.09932191669940948, + -0.1307966560125351, + 0.08597691357135773, + 0.02049754559993744, + -0.012930215336382389, + 0.026267174631357193, + -0.0744912326335907, + 0.010232634842395782, + 0.005317346658557653, + -0.022808343172073364, + -0.038868919014930725, + -0.0456046462059021, + -0.027704434469342232, + -0.0313517190515995, + -0.14910954236984253, + -0.04695003107190132, + -0.035800132900476456, + -0.004012374673038721, + -0.020904844626784325, + -0.12980574369430542, + -0.014075547456741333, + 0.11705480515956879, + -0.009156840853393078, + -0.005318161100149155, + -0.022253533825278282, + -0.05071483924984932, + 0.006965396925806999, + -0.06780995428562164, + 0.012560655362904072, + -0.033418089151382446, + -3.59534571558994e-33, + 0.005555150099098682, + 0.027851110324263573, + -0.010080649517476559, + -0.008338207378983498, + -0.026246976107358932, + -0.02038555219769478, + -0.014546244405210018, + -0.04749642685055733, + -0.05259457230567932, + 0.006415432784706354, + 0.11479669064283371, + -0.011009348556399345, + -0.028048651292920113, + 0.07618072628974915, + 0.06756308674812317, + -0.0848068818449974, + 0.011007039807736874, + 0.06504326313734055, + -0.1309128999710083, + 0.042092885822057724, + 0.002081195591017604, + 0.061914850026369095, + -0.09140763431787491, + -0.046259187161922455, + -0.028728552162647247, + 0.025699296966195107, + -0.016506681218743324, + -0.02543061599135399, + -0.043290797621011734, + 0.021142503246665, + -0.02141892910003662, + 0.0743802860379219, + -0.005398060195147991, + -0.08261958509683609, + -0.017348049208521843, + -0.0365443155169487, + -0.08040217310190201, + -0.04455098882317543, + -0.025293324142694473, + -0.023292317986488342, + 0.006906111724674702, + -0.007333606481552124, + -0.05862538889050484, + -0.025143196806311607, + 0.0014842906966805458, + 0.14417074620723724, + -0.05741965398192406, + -0.05112813040614128, + 0.012798589654266834, + -0.006747259292751551, + 0.01353454776108265, + 0.031474463641643524, + 0.04526035860180855, + -0.008384132757782936, + 0.02396692894399166, + 0.008298533968627453, + -0.07862866669893265, + 0.1095397025346756, + -0.0271602850407362, + 0.031434688717126846, + 0.013702692463994026, + 0.031681403517723083, + 0.0001921543589560315, + -0.00937815010547638, + -0.07520945370197296, + 0.03445618599653244, + -0.10954388231039047, + 0.014692006632685661, + 0.1208564043045044, + -0.01599356159567833, + 0.0008014946361072361, + 0.005064322147518396, + 0.08765655755996704, + 0.07884237170219421, + -0.05833753943443298, + 0.017572136595845222, + -0.03780638426542282, + 0.003534487448632717, + 0.08123063296079636, + -0.09052640199661255, + -0.09312387555837631, + 0.078879214823246, + -0.04672107473015785, + 0.00497007742524147, + 0.05564051494002342, + -0.0857919231057167, + 0.004044255241751671, + -0.050678085535764694, + -0.041583236306905746, + 0.09780958294868469, + -0.03664866089820862, + 0.04388096183538437, + -0.05441068857908249, + 0.03215425834059715, + -0.09936951845884323, + 6.186315905223204e-34, + 0.008405988104641438, + 0.05061807855963707, + -0.06947978585958481, + -0.01016065664589405, + -0.11936752498149872, + 0.0003137991880066693, + 0.07514843344688416, + -0.034755639731884, + 0.0050242287106812, + 0.07000894844532013, + 0.026718005537986755, + 0.02780596725642681, + -0.06149821728467941, + -0.018921291455626488, + 0.10040436685085297, + -0.018041474744677544, + 0.06171850860118866, + 0.052570734173059464, + 0.018542826175689697, + -0.036953266710042953, + 0.0024474638048559427, + -0.03991945832967758, + 0.038019947707653046, + 0.011091632768511772, + 0.0044821640476584435, + 0.028317373245954514, + 0.06717956811189651, + -0.0011343746446073055, + -0.08055920153856277, + -0.03698580712080002, + 0.0018871917854994535, + 0.0008115374366752803, + 0.04264553636312485, + 0.067695252597332, + -0.04133393242955208, + -0.042849428951740265, + -0.038646671921014786, + -0.09374057501554489, + 0.07327164709568024, + 0.020614584907889366, + 0.05951620265841484, + 0.021051878109574318, + 0.0894683301448822, + 0.03923775628209114, + 0.03623131290078163, + 0.03950652480125427, + -0.02129693143069744, + 0.013318555429577827, + -0.016829874366521835, + -0.008361433632671833, + -0.005216069053858519, + 0.01491511706262827, + 0.029684312641620636, + -0.06836546212434769, + -0.07415629923343658, + -0.05432474985718727, + 0.07472597807645798, + 0.011875171214342117, + 0.05950412526726723, + -0.003861434059217572, + -0.016397012397646904, + -0.028153352439403534, + 0.0069405697286129, + 0.06347678601741791, + 0.008388579823076725, + -0.046417586505413055, + 0.025865547358989716, + -0.11539196223020554, + -0.00886488240212202, + -0.014499222859740257, + 0.06744320690631866, + 0.08275724947452545, + 0.05688002333045006, + -0.01657313108444214, + 0.037493590265512466, + -0.010020152665674686, + 0.05171654373407364, + -0.003019294934347272, + -0.006796784233301878, + -0.03306882083415985, + -0.1164436861872673, + -0.010038573294878006, + -0.008064467459917068, + 0.07020256668329239, + -0.004658725578337908, + 0.03221626579761505, + -0.04545317217707634, + -0.003193874843418598, + 0.01375318132340908, + -0.007871625944972038, + 0.001011408749036491, + -0.022466031834483147, + -0.011712508276104927, + -0.0048553235828876495, + -0.028677405789494514, + -2.0340001682939146e-08, + -0.06743010878562927, + 0.0018532488029450178, + -0.003354632295668125, + 0.011806936003267765, + 0.014506499283015728, + 0.029121385887265205, + 0.013437413610517979, + -0.023929879069328308, + -0.012128161266446114, + -0.046055495738983154, + 0.033967845141887665, + 0.053541433066129684, + -0.06913329660892487, + 0.008914967067539692, + 0.11124896258115768, + 0.04664834588766098, + -0.06573795527219772, + 0.008528945036232471, + -0.03900706395506859, + -0.05175882205367088, + -0.010934381745755672, + 0.0036397057119756937, + 0.029298406094312668, + 0.045572150498628616, + -0.022675655782222748, + -0.0010326619958505034, + 0.01001617219299078, + 0.1280669867992401, + 0.026489978656172752, + 0.013212226331233978, + 0.08012571930885315, + 0.0058975983411073685, + -0.020407073199748993, + -0.0044072396121919155, + -0.020307688042521477, + -0.02052641287446022, + -0.05886174738407135, + 0.04923548176884651, + 0.019002608954906464, + 0.1076691746711731, + -0.08382776379585266, + 0.022403256967663765, + -0.02240215241909027, + -0.025627683848142624, + -0.016321204602718353, + 0.05354168638586998, + 0.026991957798600197, + 0.008577700704336166, + -0.07832043617963791, + -0.10227169096469879, + -0.017260005697607994, + 0.05419540777802467, + 0.004910626914352179, + 0.08242718130350113, + -0.025526998564600945, + 0.043801892548799515, + 0.01626954972743988, + -0.03386035934090614, + -0.07870779186487198, + 0.030518939718604088, + 0.10731585323810577, + 0.09931400418281555, + 0.01360606960952282, + 0.08594655245542526 + ], + "arrow-elbow-left-down-bold||directional,pointer,pointing,arrowhead": [ + 0.050900861620903015, + -0.029256479814648628, + -0.023872729390859604, + -0.012765377759933472, + -0.012530344538390636, + -0.0094680804759264, + 0.08088535070419312, + 0.013608556240797043, + 0.018924232572317123, + 0.017342524603009224, + 0.03771437704563141, + 0.05576324090361595, + 0.03987276926636696, + 0.008748214691877365, + -0.04147176444530487, + 0.024081705138087273, + -0.05942137911915779, + 0.047481145709753036, + 0.04470878094434738, + 0.0446174219250679, + -0.009041774086654186, + 0.029811104759573936, + -0.02191091515123844, + 0.020618539303541183, + -0.001126096467487514, + 0.025062257423996925, + 0.07474281638860703, + 0.0339987650513649, + -0.0212573055177927, + -0.08547460287809372, + -0.0691889077425003, + -0.01476346980780363, + -0.015360390767455101, + 0.04643063619732857, + -0.09899290651082993, + -0.05867289751768112, + -0.00353652099147439, + 0.01587262563407421, + -0.01748982071876526, + 0.05947110429406166, + 0.026646502315998077, + -0.004079470410943031, + 0.014832345768809319, + -0.014717650599777699, + 0.04048867151141167, + 0.13104885816574097, + -0.10030011832714081, + -0.034274108707904816, + 0.029167361557483673, + 0.06367012858390808, + -0.06045064702630043, + -0.06955309212207794, + -0.033484138548374176, + 0.02068134769797325, + 0.09907080233097076, + 0.07677950710058212, + -0.043840277940034866, + -0.04504629969596863, + 0.059505101293325424, + 0.025794338434934616, + 0.08459712564945221, + -0.04738880321383476, + 0.0008258884190581739, + 0.004578784108161926, + 0.04023909568786621, + -0.02162051387131214, + -0.005908221006393433, + 0.0045902319252491, + -0.007465393282473087, + -0.005081797018647194, + 0.03254655376076698, + -0.03399023413658142, + -0.05843346565961838, + -0.0590503104031086, + -0.0003014573303516954, + -0.026667198166251183, + 0.050142135471105576, + 0.04818352311849594, + -0.02024725452065468, + -0.03503218665719032, + -0.09513199329376221, + 0.04312235116958618, + -0.0438394621014595, + 0.05418098717927933, + 0.032624371349811554, + 0.09893352538347244, + -0.05345400050282478, + -0.032846368849277496, + -0.03840891644358635, + -0.005179102532565594, + -0.01965448260307312, + -0.008740360848605633, + -0.057014159858226776, + -0.058679331094026566, + 0.03540775552392006, + -0.015728047117590904, + 0.07679267227649689, + -0.1132785826921463, + -0.11833472549915314, + 0.07907577604055405, + 0.01518359687179327, + -0.019748510792851448, + 0.03899430111050606, + -0.0747271180152893, + -0.007514914032071829, + -0.01582169346511364, + -0.024844340980052948, + -0.04596477001905441, + -0.027822311967611313, + -0.026232697069644928, + -0.03496386110782623, + -0.1410900056362152, + -0.04772220551967621, + -0.03514057770371437, + -0.0011407866841182113, + -0.02123747579753399, + -0.12531086802482605, + -0.01970256119966507, + 0.1171959713101387, + -0.009595679119229317, + 0.0016647910233587027, + -0.010899988003075123, + -0.04571403190493584, + 0.0014791465364396572, + -0.0702054351568222, + 0.00575843034312129, + -0.03565829247236252, + -3.803538622090029e-33, + 0.019347162917256355, + 0.013609218411147594, + -0.009541469626128674, + 0.00015981712203938514, + -0.01668565534055233, + -0.01993832178413868, + -0.03403697535395622, + -0.05877605453133583, + -0.054610855877399445, + 0.026430238038301468, + 0.11466453969478607, + -0.007405443582683802, + -0.03077084571123123, + 0.08699938654899597, + 0.07373961061239243, + -0.08811833709478378, + 0.00894200336188078, + 0.0613524504005909, + -0.12434780597686768, + 0.0342184379696846, + -0.009621665813028812, + 0.07246880233287811, + -0.07668890804052353, + -0.03461424633860588, + -0.011332268826663494, + 0.03774869814515114, + -0.029701147228479385, + -0.025108255445957184, + -0.06374826282262802, + 0.0197981558740139, + -0.01705387607216835, + 0.06055653840303421, + -0.01905963197350502, + -0.08363635838031769, + -0.01827581226825714, + -0.024699874222278595, + -0.09152192622423172, + -0.03715956211090088, + -0.021715419366955757, + -0.0410013347864151, + -0.009231609292328358, + -0.021916642785072327, + -0.07617012411355972, + -0.019388722255825996, + 0.012308471836149693, + 0.1324261575937271, + -0.05179902911186218, + -0.05977494642138481, + 0.008974828757345676, + -0.012495889328420162, + 0.012812464497983456, + 0.02346792258322239, + 0.044203195720911026, + -0.011096540838479996, + 0.02364754118025303, + 0.022131258621811867, + -0.07818732410669327, + 0.11606393754482269, + -0.03615520894527435, + 0.047680407762527466, + 0.01078289095312357, + 0.030375627800822258, + -0.00151826033834368, + -0.018985390663146973, + -0.06818423420190811, + 0.035514459013938904, + -0.10383941233158112, + 0.011396622285246849, + 0.12383760511875153, + -0.0013973239110782743, + -0.009888797998428345, + 0.011385894380509853, + 0.0880548357963562, + 0.0839078426361084, + -0.05516902729868889, + 0.026336872950196266, + -0.030581438913941383, + -0.008744077757000923, + 0.07689022272825241, + -0.08179550617933273, + -0.11203614622354507, + 0.08276540040969849, + -0.050531547516584396, + -0.004036244470626116, + 0.051788389682769775, + -0.08109942078590393, + 0.008467035368084908, + -0.058418095111846924, + -0.03867902234196663, + 0.07996981590986252, + -0.055132798850536346, + 0.04985351860523224, + -0.04607056453824043, + 0.01679082214832306, + -0.09418545663356781, + 8.699895220218176e-34, + 0.00485468003898859, + 0.05178406089544296, + -0.07938669621944427, + -0.0035334222484380007, + -0.12810824811458588, + 0.00830385833978653, + 0.07904859632253647, + -0.025627439841628075, + 0.007342008873820305, + 0.06843531131744385, + 0.028847886249423027, + 0.02747134305536747, + -0.05263984575867653, + -0.03413749113678932, + 0.08897990733385086, + -0.0035434612073004246, + 0.05981779098510742, + 0.05616481229662895, + 0.03686997666954994, + -0.026985879987478256, + -0.0012998755555599928, + -0.03842931613326073, + 0.01387045532464981, + 0.007148550357669592, + -0.0014093245845288038, + 0.02936510555446148, + 0.06930496543645859, + -0.0002087455941364169, + -0.0642964094877243, + -0.03623953089118004, + 0.00459110364317894, + -0.005719901993870735, + 0.04240845888853073, + 0.07257930189371109, + -0.059192948043346405, + -0.045135319232940674, + -0.04237080365419388, + -0.08011182397603989, + 0.05689496546983719, + 0.028822103515267372, + 0.06118064373731613, + 0.026891320943832397, + 0.1104339212179184, + 0.030860334634780884, + 0.033673424273729324, + 0.034150511026382446, + -0.033031802624464035, + 0.017236940562725067, + -0.02188068814575672, + -0.012060577981173992, + -0.010183792561292648, + 0.015447494573891163, + 0.019248908385634422, + -0.059313997626304626, + -0.08411971479654312, + -0.05111870542168617, + 0.08428534120321274, + 0.015947237610816956, + 0.05400201678276062, + 0.007310699671506882, + -0.015925049781799316, + -0.03437136858701706, + 0.010523666627705097, + 0.08016838133335114, + 0.0006420009885914624, + -0.029830094426870346, + 0.011973077431321144, + -0.1058274656534195, + -0.03444885462522507, + -0.018705174326896667, + 0.0547831729054451, + 0.07633021473884583, + 0.061613816767930984, + -0.026815026998519897, + 0.037318721413612366, + -0.025806447491049767, + 0.03632720187306404, + 0.005574818234890699, + -0.013741755858063698, + -0.03768662363290787, + -0.10024227201938629, + -0.0029922814574092627, + -0.012660247273743153, + 0.08041408658027649, + -0.00456019164994359, + 0.04110854119062424, + -0.0625978633761406, + 0.015520340763032436, + 0.028466086834669113, + -0.01020824909210205, + 0.011156723834574223, + -0.008593757636845112, + -0.0042976755648851395, + 0.004329917952418327, + -0.03935765475034714, + -2.152167155600182e-08, + -0.06597448140382767, + -0.0009972058469429612, + 0.0011523400899022818, + 0.00447743060067296, + 0.01710996776819229, + 0.04052003473043442, + 0.011879966594278812, + -0.018125498667359352, + -0.004501037765294313, + -0.056367579847574234, + 0.03549382835626602, + 0.05876513570547104, + -0.07271164655685425, + 0.014328505843877792, + 0.11774560809135437, + 0.048852574080228806, + -0.07364357262849808, + 0.015176096931099892, + -0.0256558358669281, + -0.05370767414569855, + -0.00917552039027214, + -0.002901998348534107, + 0.015101087279617786, + 0.054421186447143555, + -0.01664096675813198, + 0.005656295921653509, + -0.0014740504557266831, + 0.13274164497852325, + 0.020183036103844643, + 0.021696055307984352, + 0.08882734179496765, + 0.023541230708360672, + -0.010062255896627903, + -0.012786466628313065, + -0.004188282880932093, + 0.0017702281475067139, + -0.047766804695129395, + 0.03481917083263397, + 0.020685182884335518, + 0.10887166112661362, + -0.07640033960342407, + 0.0041000694036483765, + -0.03454427421092987, + -0.02110670879483223, + -0.00762341869994998, + 0.06014428660273552, + 0.027650324627757072, + 0.005798664875328541, + -0.08055277913808823, + -0.11463005840778351, + -0.01281579490751028, + 0.05635908246040344, + 0.013908376917243004, + 0.0755060687661171, + -0.024771681055426598, + 0.050540242344141006, + 0.016281733289361, + -0.04470772668719292, + -0.07571907341480255, + 0.02366645261645317, + 0.10224395245313644, + 0.10728577524423599, + 0.0171226616948843, + 0.0814458355307579 + ], + "arrow-elbow-left-up-bold||directional,pointer,pointing,arrowhead": [ + 0.04278425872325897, + -0.025944791734218597, + -0.028864771127700806, + -0.008508329279720783, + -0.006052191369235516, + -0.01124268863350153, + 0.07642284780740738, + 0.0055070798844099045, + 0.020134756341576576, + 0.017460687085986137, + 0.037769168615341187, + 0.06466615200042725, + 0.028811203315854073, + 0.005465163849294186, + -0.037432003766298294, + 0.030766557902097702, + -0.06072620674967766, + 0.03999343514442444, + 0.04486541077494621, + 0.0458686389029026, + -0.020667800679802895, + 0.030648894608020782, + -0.017482129856944084, + 0.021949676796793938, + 0.004679831676185131, + 0.02257382683455944, + 0.08235599100589752, + 0.03321554511785507, + -0.026878003031015396, + -0.07838074862957001, + -0.06973730772733688, + -0.010861225426197052, + -0.023668209090828896, + 0.03656327724456787, + -0.08581354469060898, + -0.05522894486784935, + 0.00013615781790576875, + 0.023565106093883514, + -0.02638324163854122, + 0.062423206865787506, + 0.028024176135659218, + -0.009788116440176964, + 0.013323318213224411, + -0.034151237457990646, + 0.046280890703201294, + 0.12493153661489487, + -0.10104339569807053, + -0.013390203937888145, + 0.04340730980038643, + 0.05802943930029869, + -0.06554772704839706, + -0.07702454179525375, + -0.0358276329934597, + 0.02242392860352993, + 0.09179454296827316, + 0.08495499193668365, + -0.04924262315034866, + -0.045898038893938065, + 0.06584396958351135, + 0.019886590540409088, + 0.07575707137584686, + -0.040065716952085495, + 0.017770517617464066, + 0.012083075009286404, + 0.04483780264854431, + -0.026687731966376305, + -0.001842154422774911, + 0.011601809412240982, + -0.01266799308359623, + 0.001825635670684278, + 0.034651000052690506, + -0.024228999391198158, + -0.05976409465074539, + -0.05935494974255562, + 0.006772896740585566, + -0.025294508785009384, + 0.048221126198768616, + 0.048922110348939896, + 0.00038546655559912324, + -0.03267538547515869, + -0.10451464354991913, + 0.03479635715484619, + -0.047907959669828415, + 0.04760925844311714, + 0.03832567110657692, + 0.09756408631801605, + -0.06001037359237671, + -0.032446954399347305, + -0.03545888140797615, + 0.0006179623305797577, + -0.02192864380776882, + 0.001425890950486064, + -0.053184881806373596, + -0.06681376695632935, + 0.04993608966469765, + -0.012410050258040428, + 0.07269508391618729, + -0.10964590311050415, + -0.12351659685373306, + 0.07517086714506149, + 0.019510852172970772, + -0.023954931646585464, + 0.03536901995539665, + -0.06862372905015945, + -0.0019494760781526566, + -0.005885572172701359, + -0.024346880614757538, + -0.03916103392839432, + -0.030504856258630753, + -0.03335586190223694, + -0.03249526396393776, + -0.14442838728427887, + -0.05039474368095398, + -0.032520923763513565, + -0.0033777416683733463, + -0.019936129450798035, + -0.12441680580377579, + -0.01621829718351364, + 0.11540213227272034, + -0.015410548076033592, + 0.0031261893454939127, + -0.02091020904481411, + -0.04340735450387001, + 0.0032411133870482445, + -0.07873421162366867, + 0.006244074087589979, + -0.028106993064284325, + -3.846822895481198e-33, + 0.01603620871901512, + 0.018627954646945, + -0.014046511612832546, + -0.006684762425720692, + -0.020554346963763237, + -0.02435855194926262, + -0.0272679403424263, + -0.054264042526483536, + -0.053472451865673065, + 0.02245255559682846, + 0.1163134053349495, + 0.0072326683439314365, + -0.03146999329328537, + 0.08136822283267975, + 0.07888004183769226, + -0.08200736343860626, + 0.011920087039470673, + 0.08003956079483032, + -0.11951086670160294, + 0.03163958340883255, + -0.0007829322712495923, + 0.06390421092510223, + -0.07773077487945557, + -0.039179932326078415, + -0.023369550704956055, + 0.031508177518844604, + -0.030072232708334923, + -0.025184165686368942, + -0.06865175813436508, + 0.01489816140383482, + -0.003686893032863736, + 0.061613257974386215, + -0.02092585526406765, + -0.08584810048341751, + -0.020712632685899734, + -0.028485706076025963, + -0.08047760277986526, + -0.04352116957306862, + -0.02425430342555046, + -0.036976903676986694, + -0.011376644484698772, + -0.00854857824742794, + -0.07376492768526077, + -0.01995152421295643, + -0.0020772390998899937, + 0.1349543035030365, + -0.06523310393095016, + -0.06850561499595642, + 0.021342525258660316, + -0.011628092266619205, + 0.015714604407548904, + 0.025511162355542183, + 0.046288494020700455, + -0.012080262415111065, + 0.008896912448108196, + 0.0240651722997427, + -0.06934501230716705, + 0.11927981674671173, + -0.025971481576561928, + 0.032061658799648285, + 0.01170729286968708, + 0.031376246362924576, + -0.007165908347815275, + -0.0035298403818160295, + -0.07478417456150055, + 0.03492734208703041, + -0.10641888529062271, + 0.015266475267708302, + 0.11999835819005966, + -0.008185764774680138, + -0.010656925849616528, + 0.009735044091939926, + 0.0791148766875267, + 0.09896525740623474, + -0.055480215698480606, + 0.013323590159416199, + -0.03708643466234207, + -0.018275810405611992, + 0.0670447051525116, + -0.07200992107391357, + -0.10131815820932388, + 0.0843774601817131, + -0.04675028845667839, + -0.011809874325990677, + 0.05243847146630287, + -0.08264478296041489, + -0.0046319421380758286, + -0.06237354874610901, + -0.04017869010567665, + 0.08586874604225159, + -0.03701389580965042, + 0.05513099208474159, + -0.03746960312128067, + 0.022921450436115265, + -0.09019260853528976, + 8.12734130929141e-34, + 0.002449039136990905, + 0.05000778287649155, + -0.07898849248886108, + -0.015673920512199402, + -0.11545430123806, + 0.01750144548714161, + 0.0855981633067131, + -0.028663238510489464, + 0.020234759896993637, + 0.04802954941987991, + 0.016828423365950584, + 0.03450659662485123, + -0.0542583130300045, + -0.03493807092308998, + 0.09513645619153976, + -0.005438198335468769, + 0.05808626115322113, + 0.06687232851982117, + 0.03094116412103176, + -0.028994670137763023, + -0.00029992853524163365, + -0.049689050763845444, + 0.01683761551976204, + 0.005973014049232006, + -0.008409622125327587, + 0.029707204550504684, + 0.06235602870583534, + 0.0002920541737694293, + -0.07012630999088287, + -0.03983538597822189, + 0.008491497486829758, + 0.00357434363104403, + 0.04693133011460304, + 0.0833575427532196, + -0.04980941861867905, + -0.04212547093629837, + -0.045907918363809586, + -0.09477867186069489, + 0.0693691298365593, + 0.03726096823811531, + 0.07050882279872894, + 0.021755240857601166, + 0.09358098357915878, + 0.043658968061208725, + 0.03710532560944557, + 0.025403540581464767, + -0.02935546264052391, + 0.019119417294859886, + -0.030068589374423027, + -0.002572012599557638, + -0.00770904216915369, + 0.02475370094180107, + 0.015660079196095467, + -0.06166402995586395, + -0.0780664011836052, + -0.05412837117910385, + 0.07723315805196762, + 0.02037644200026989, + 0.06193583458662033, + 0.0074829645454883575, + -0.016694989055395126, + -0.025882843881845474, + 0.011118671856820583, + 0.06312549859285355, + -0.005085271317511797, + -0.038098305463790894, + 0.01784605160355568, + -0.1124233528971672, + -0.03192721679806709, + -0.01587831974029541, + 0.06622063368558884, + 0.07955565303564072, + 0.05060059204697609, + -0.030043087899684906, + 0.03766701743006706, + -0.016978541389107704, + 0.04440971091389656, + -0.0006970349932089448, + -0.007718165870755911, + -0.046442825347185135, + -0.11734990030527115, + 0.0021442631259560585, + -0.01680263690650463, + 0.08405659347772598, + -0.004688798915594816, + 0.035217106342315674, + -0.0402853898704052, + 0.008000663481652737, + 0.021992146968841553, + -0.011114581488072872, + 0.02223791740834713, + -0.023130904883146286, + -0.011087344959378242, + 0.007796086836606264, + -0.03605664521455765, + -2.0961808289143846e-08, + -0.06463510543107986, + -0.0025114240124821663, + -0.002397606847807765, + 0.005853176582604647, + 0.022571684792637825, + 0.033040374517440796, + 0.016651783138513565, + -0.012164384126663208, + -0.008491882123053074, + -0.07520154118537903, + 0.03342898190021515, + 0.05688280239701271, + -0.06979332119226456, + 0.0044055781327188015, + 0.11389840394258499, + 0.04684419557452202, + -0.07725915312767029, + 0.01681075058877468, + -0.03630362078547478, + -0.04722181707620621, + -0.009933477267622948, + 0.011702174320816994, + 0.01790630631148815, + 0.05048659071326256, + -0.023834271356463432, + 0.002819386310875416, + -0.00540506886318326, + 0.12189748883247375, + 0.016770079731941223, + 0.024339459836483, + 0.0865326076745987, + 0.014273948036134243, + -0.011672460474073887, + -0.009754559025168419, + 0.003191875061020255, + 0.003350981045514345, + -0.05059322342276573, + 0.041473500430583954, + 0.01273720245808363, + 0.10204467922449112, + -0.07617910206317902, + 0.009799878112971783, + -0.030867498368024826, + -0.028386784717440605, + -0.017997650429606438, + 0.05975145846605301, + 0.017870591953396797, + 0.0023386168759316206, + -0.09885815531015396, + -0.11163869500160217, + -0.010811785236001015, + 0.04995447397232056, + 0.006017623469233513, + 0.07092240452766418, + -0.017312748357653618, + 0.051051732152700424, + 0.015300137922167778, + -0.04084361717104912, + -0.07498288154602051, + 0.0310809388756752, + 0.10825634747743607, + 0.10370268672704697, + 0.020803801715373993, + 0.08804478496313095 + ], + "arrow-elbow-right-bold||directional,pointer,pointing,arrowhead": [ + 0.04823979362845421, + -0.0351019911468029, + -0.03242066502571106, + -0.00374118541367352, + -0.007856631651520729, + -0.01571420207619667, + 0.08812101930379868, + 0.007674314081668854, + 0.018571162596344948, + 0.003102245507761836, + 0.04902049899101257, + 0.046409718692302704, + 0.03725166246294975, + 0.0041075521148741245, + -0.04101163521409035, + 0.024266695603728294, + -0.0680021122097969, + 0.03102453052997589, + 0.0576021783053875, + 0.03976380079984665, + -0.00910721905529499, + 0.04474683851003647, + -0.0070283543318510056, + 0.022013528272509575, + -0.002709426684305072, + 0.028395524248480797, + 0.08031273633241653, + 0.030463069677352905, + -0.02659478597342968, + -0.09138507395982742, + -0.059108782559633255, + -0.015638278797268867, + -0.030986279249191284, + 0.046520981937646866, + -0.08136405795812607, + -0.06069410964846611, + -0.014204686507582664, + 0.013715804554522038, + -0.01779974438250065, + 0.04780329391360283, + 0.032222554087638855, + -2.0305917132645845e-05, + 0.02270628698170185, + -0.028799420222640038, + 0.04045909270644188, + 0.137889564037323, + -0.09297504276037216, + -0.023023515939712524, + 0.03193582594394684, + 0.07179982960224152, + -0.07129903137683868, + -0.0824904814362526, + -0.023709526285529137, + 0.003920497372746468, + 0.10630810260772705, + 0.0821823924779892, + -0.04231039807200432, + -0.038069020956754684, + 0.05664558336138725, + 0.0235114935785532, + 0.07680410891771317, + -0.050625622272491455, + 0.010613647289574146, + 0.004980633035302162, + 0.0352611280977726, + -0.0229948703199625, + 0.001828022999688983, + 0.013146243058145046, + -0.016250725835561752, + -0.004500617738813162, + 0.032909464091062546, + -0.024189094081521034, + -0.06630732119083405, + -0.062250640243291855, + 0.0037126708775758743, + -0.02476608008146286, + 0.04305054247379303, + 0.05466710031032562, + -0.021853100508451462, + -0.032149236649274826, + -0.09902428835630417, + 0.02048262394964695, + -0.04317808151245117, + 0.05060357227921486, + 0.04111766815185547, + 0.10639012604951859, + -0.06243644654750824, + -0.03676147013902664, + -0.03127068281173706, + 0.0021788859739899635, + -0.012065104208886623, + -0.0040714493952691555, + -0.057806141674518585, + -0.05883674696087837, + 0.04659879580140114, + -0.005691045895218849, + 0.07742246240377426, + -0.10175316780805588, + -0.1297263354063034, + 0.07925226539373398, + 0.021879857406020164, + -0.020506829023361206, + 0.027089251205325127, + -0.07189323753118515, + 0.011323807761073112, + -0.0025692079216241837, + -0.023344766348600388, + -0.03914036974310875, + -0.03820621594786644, + -0.018895482644438744, + -0.0290268175303936, + -0.14907772839069366, + -0.04741954058408737, + -0.030010154470801353, + -0.007802492938935757, + -0.0164586640894413, + -0.12963537871837616, + -0.01702144742012024, + 0.11504767090082169, + -0.00530208321288228, + -0.0056467726826667786, + -0.010207843035459518, + -0.049765441566705704, + 0.0054885465651750565, + -0.06987259536981583, + 0.010375479236245155, + -0.03362840786576271, + -3.467247320735035e-33, + 0.002828846452757716, + 0.025919245555996895, + -0.009200033731758595, + -0.008220476098358631, + -0.024062125012278557, + -0.028256304562091827, + -0.017543645575642586, + -0.05298992246389389, + -0.04855804517865181, + 0.01616632752120495, + 0.11018465459346771, + -0.009218661114573479, + -0.02385570853948593, + 0.08299828320741653, + 0.07398276776075363, + -0.08482106029987335, + 0.007907700724899769, + 0.06494085490703583, + -0.12762615084648132, + 0.044520966708660126, + -0.0027089582290500402, + 0.06254848092794418, + -0.08554571866989136, + -0.04387076571583748, + -0.023647485300898552, + 0.0280047245323658, + -0.017739349976181984, + -0.022682340815663338, + -0.04165221378207207, + 0.02081914246082306, + -0.029662517830729485, + 0.06748563051223755, + -0.00367985712364316, + -0.07772234082221985, + -0.01483262050896883, + -0.041034795343875885, + -0.08025632053613663, + -0.0444960817694664, + -0.02833865024149418, + -0.028162358328700066, + 0.005857109557837248, + -0.005071463529020548, + -0.06400739401578903, + -0.02767319604754448, + 0.012328281998634338, + 0.13797707855701447, + -0.057925816625356674, + -0.048030123114585876, + 0.01307190116494894, + -0.00620789872482419, + 0.016547394916415215, + 0.036194056272506714, + 0.048993874341249466, + -0.002165408805012703, + 0.024172520264983177, + 0.009936589747667313, + -0.07688285410404205, + 0.11568126082420349, + -0.032898999750614166, + 0.037949785590171814, + 0.009823302738368511, + 0.033255837857723236, + 0.006355341523885727, + -0.014522758312523365, + -0.07211194932460785, + 0.04055369272828102, + -0.10655369609594345, + 0.015443762764334679, + 0.12440700829029083, + -0.015005303546786308, + -0.0011153535451740026, + 0.007391493767499924, + 0.08186428993940353, + 0.0843040943145752, + -0.062450114637613297, + 0.020132070407271385, + -0.04659824073314667, + 0.007109515368938446, + 0.08122698217630386, + -0.08254217356443405, + -0.09986883401870728, + 0.07767107337713242, + -0.05085078626871109, + 0.0015278999926522374, + 0.046314314007759094, + -0.09237774461507797, + 0.003643002361059189, + -0.05276719480752945, + -0.036633532494306564, + 0.0923645868897438, + -0.0375540517270565, + 0.05262010172009468, + -0.052963986992836, + 0.029529299587011337, + -0.09783614426851273, + 5.401176596015113e-34, + 0.014263136312365532, + 0.05139562487602234, + -0.059330590069293976, + -0.007926196791231632, + -0.12007446587085724, + 0.002462025498971343, + 0.07849260419607162, + -0.03639094531536102, + 0.0031609595753252506, + 0.0718378871679306, + 0.029566075652837753, + 0.024810070171952248, + -0.06422587484121323, + -0.021204518154263496, + 0.10318663716316223, + -0.020189527422189713, + 0.05948081240057945, + 0.0574619397521019, + 0.023908281698822975, + -0.03339450806379318, + 0.002641554456204176, + -0.04417869821190834, + 0.03353765606880188, + 0.010147050954401493, + 0.00558021804317832, + 0.027776489034295082, + 0.06879805773496628, + -0.0047829411923885345, + -0.07669062912464142, + -0.03612283989787102, + 0.003980180248618126, + -0.007453803904354572, + 0.030512072145938873, + 0.0760350301861763, + -0.04044276848435402, + -0.04262636601924896, + -0.03996352478861809, + -0.09024092555046082, + 0.06923728436231613, + 0.02142699994146824, + 0.061389654874801636, + 0.020498126745224, + 0.09082727879285812, + 0.03924213722348213, + 0.03144511952996254, + 0.04012761637568474, + -0.025805596262216568, + 0.011884218081831932, + -0.02437126450240612, + -0.017543978989124298, + -0.006073021795600653, + 0.017211439087986946, + 0.03321649134159088, + -0.07257816195487976, + -0.07315973192453384, + -0.053177785128355026, + 0.08075481653213501, + 0.000686216342728585, + 0.049672555178403854, + -0.003834265051409602, + -0.010068409144878387, + -0.03172369301319122, + 0.002593047684058547, + 0.0684313029050827, + 0.0038766423240303993, + -0.044077955186367035, + 0.020401379093527794, + -0.11999496817588806, + -0.018440036103129387, + -0.014867407269775867, + 0.06259502470493317, + 0.07448592782020569, + 0.057487256824970245, + -0.017234405502676964, + 0.030864180997014046, + -0.015305559150874615, + 0.050268154591321945, + -0.0018934750696644187, + -0.00573190301656723, + -0.041250571608543396, + -0.11164716631174088, + -0.0015537248691543937, + -0.013837750069797039, + 0.07614989578723907, + -0.010128775611519814, + 0.03662065044045448, + -0.04590407758951187, + -0.0030031430069357157, + 0.019343301653862, + -0.009358135983347893, + 0.0013604749692603946, + -0.014550041407346725, + -0.014604335650801659, + 0.004152845591306686, + -0.03140956535935402, + -2.0094523378588747e-08, + -0.0730414092540741, + 0.007900885306298733, + 0.003215248230844736, + 0.010836908593773842, + 0.017661329358816147, + 0.030696550384163857, + 0.007284014485776424, + -0.022125329822301865, + -0.010732326656579971, + -0.04526960477232933, + 0.03184392303228378, + 0.052634917199611664, + -0.07114110141992569, + 0.014865148812532425, + 0.11841258406639099, + 0.044223345816135406, + -0.0674080178141594, + 0.008744088001549244, + -0.036238815635442734, + -0.057351164519786835, + -0.014457902871072292, + 0.0012135686120018363, + 0.027231011539697647, + 0.0432719811797142, + -0.018969949334859848, + -0.0019408947555348277, + 0.004806404933333397, + 0.1254819631576538, + 0.01721773110330105, + 0.015466617420315742, + 0.08011813461780548, + 0.0036334367468953133, + -0.019417231902480125, + -0.007090553175657988, + -0.012888627126812935, + -0.017355317249894142, + -0.05378498509526253, + 0.04452115297317505, + 0.022340811789035797, + 0.10615165531635284, + -0.08374419063329697, + 0.019126202911138535, + -0.024721642956137657, + -0.02530525252223015, + -0.013468132354319096, + 0.05112597346305847, + 0.033332303166389465, + 0.006378265097737312, + -0.08308414369821548, + -0.10454633086919785, + -0.021999500691890717, + 0.057649705559015274, + 0.0064464774914085865, + 0.07953298836946487, + -0.028663501143455505, + 0.04678964614868164, + 0.0153580317273736, + -0.040153127163648605, + -0.0720709040760994, + 0.03002471663057804, + 0.11009226739406586, + 0.10200716555118561, + 0.012337075546383858, + 0.08355981111526489 + ], + "arrow-elbow-right-down-bold||directional,pointer,pointing,arrowhead": [ + 0.05127689987421036, + -0.031687770038843155, + -0.028570054098963737, + -0.01653905399143696, + -0.01892189122736454, + -0.0048229871317744255, + 0.0808914303779602, + 0.019800309091806412, + 0.01944882422685623, + 0.015026720240712166, + 0.04982561990618706, + 0.056239109486341476, + 0.04210523143410683, + 0.005351037718355656, + -0.03715650364756584, + 0.021852342411875725, + -0.058764342218637466, + 0.04973628371953964, + 0.045840419828891754, + 0.03824249655008316, + 0.006219891365617514, + 0.03218667954206467, + -0.014673874713480473, + 0.020576542243361473, + -0.00019420188618823886, + 0.0252087339758873, + 0.07297102361917496, + 0.034295227378606796, + -0.01842574030160904, + -0.08598245680332184, + -0.07345817983150482, + -0.01270485669374466, + -0.01768541894853115, + 0.04838014021515846, + -0.09363847225904465, + -0.05724027380347252, + -0.009116766043007374, + 0.01939024217426777, + -0.01876767911016941, + 0.05241168290376663, + 0.02612290531396866, + -0.008407429791986942, + 0.012759005650877953, + -0.019883206114172935, + 0.040329109877347946, + 0.13424141705036163, + -0.09288346022367477, + -0.02905830554664135, + 0.02478133700788021, + 0.0652032196521759, + -0.0638083666563034, + -0.07014802098274231, + -0.02889174409210682, + 0.018506746739149094, + 0.10474327206611633, + 0.08554723113775253, + -0.04126148670911789, + -0.038552895188331604, + 0.06324605643749237, + 0.03082166239619255, + 0.07945476472377777, + -0.05402115359902382, + 0.004134820308536291, + 0.004828547593206167, + 0.03913532570004463, + -0.016671881079673767, + -0.0028889025561511517, + 0.008783022873103619, + -0.009497511200606823, + -0.000433766923379153, + 0.032690200954675674, + -0.0324472151696682, + -0.05697896331548691, + -0.05955839157104492, + -0.003066759556531906, + -0.02258983999490738, + 0.046618152409791946, + 0.045027587562799454, + -0.021241148933768272, + -0.03599126636981964, + -0.09700720012187958, + 0.038789354264736176, + -0.04384647682309151, + 0.06120702624320984, + 0.031183218583464622, + 0.10143017023801804, + -0.05451802909374237, + -0.028835685923695564, + -0.037216413766145706, + -0.003145794617012143, + -0.017807383090257645, + -0.018886098638176918, + -0.0574001669883728, + -0.05460716038942337, + 0.031661998480558395, + -0.016717838123440742, + 0.07738082855939865, + -0.1126132681965828, + -0.11775346845388412, + 0.07275819033384323, + 0.015301045030355453, + -0.0274067223072052, + 0.033767834305763245, + -0.07506316900253296, + -0.003840239252895117, + -0.016369683668017387, + -0.022960959002375603, + -0.04433047026395798, + -0.024922484531998634, + -0.019764522090554237, + -0.03438391909003258, + -0.13992464542388916, + -0.044261470437049866, + -0.03511038422584534, + -0.0059409188106656075, + -0.015524531714618206, + -0.12250597029924393, + -0.025462379679083824, + 0.11369812488555908, + -0.005649496801197529, + -4.586638533510268e-05, + -0.002435993403196335, + -0.047096263617277145, + 0.0010660940315574408, + -0.06999030709266663, + 0.009258954785764217, + -0.03691849485039711, + -3.610335472614832e-33, + 0.022387824952602386, + 0.019210215657949448, + -0.008266243152320385, + -0.002696722513064742, + -0.016680939123034477, + -0.02645915374159813, + -0.037718892097473145, + -0.06176099181175232, + -0.050672661513090134, + 0.03463376685976982, + 0.11130648851394653, + -0.00823698379099369, + -0.02776416391134262, + 0.09086209535598755, + 0.07607649266719818, + -0.0938064306974411, + 0.008919645100831985, + 0.061913520097732544, + -0.12582853436470032, + 0.03777832165360451, + -0.009435245767235756, + 0.07086417078971863, + -0.07115086168050766, + -0.03433263301849365, + -0.01139090396463871, + 0.04018179327249527, + -0.02943078801035881, + -0.025215886533260345, + -0.055901769548654556, + 0.020042160525918007, + -0.02847389318048954, + 0.054321642965078354, + -0.015685267746448517, + -0.08369789272546768, + -0.014500214718282223, + -0.03047841601073742, + -0.09016671776771545, + -0.03649985045194626, + -0.028038233518600464, + -0.04141802713274956, + -0.00780964270234108, + -0.019973676651716232, + -0.07772006839513779, + -0.017604347318410873, + 0.017533693462610245, + 0.1314922571182251, + -0.05462374910712242, + -0.05535179749131203, + 0.003515643300488591, + -0.009342656470835209, + 0.018728502094745636, + 0.02742280438542366, + 0.04112982749938965, + -0.0039656804874539375, + 0.02640165016055107, + 0.020657720044255257, + -0.07901843637228012, + 0.11878837645053864, + -0.03531812131404877, + 0.0502217561006546, + 0.010430051945149899, + 0.027869239449501038, + 0.004483938217163086, + -0.018874118104577065, + -0.0658460408449173, + 0.038058698177337646, + -0.10627936571836472, + 0.014263021759688854, + 0.12273108214139938, + -0.0013780869776383042, + -0.011205092072486877, + 0.012810446321964264, + 0.08064084500074387, + 0.08519286662340164, + -0.05966606363654137, + 0.027015842497348785, + -0.035251516848802567, + -0.007510542869567871, + 0.07899744808673859, + -0.08013025671243668, + -0.11302635073661804, + 0.07917775958776474, + -0.05044984072446823, + -0.008203800767660141, + 0.05022881180047989, + -0.08803432434797287, + 0.006399821024388075, + -0.05682263895869255, + -0.040445901453495026, + 0.06932106614112854, + -0.05473628640174866, + 0.05138484761118889, + -0.044981639832258224, + 0.012529776431620121, + -0.09178738296031952, + 8.403033305467623e-34, + 0.008265705779194832, + 0.05139625072479248, + -0.06822439283132553, + -0.0019896249286830425, + -0.1271776258945465, + 0.008856251835823059, + 0.08118284493684769, + -0.029117383062839508, + 0.0034895825665444136, + 0.06992312520742416, + 0.02421540766954422, + 0.026450885459780693, + -0.05113091319799423, + -0.030347051098942757, + 0.09117548167705536, + -0.005231186747550964, + 0.05727550387382507, + 0.061987098306417465, + 0.0406930111348629, + -0.023225754499435425, + -0.0025971613358706236, + -0.04252428561449051, + 0.014970246702432632, + 0.0114360973238945, + 0.0026943201664835215, + 0.02652255818247795, + 0.07276119291782379, + 0.0007579805096611381, + -0.062449268996715546, + -0.03757815062999725, + 0.006597555708140135, + -0.008514304645359516, + 0.030464233830571175, + 0.07458185404539108, + -0.058105941861867905, + -0.04307278245687485, + -0.044138919562101364, + -0.07783346623182297, + 0.05383040010929108, + 0.02455134317278862, + 0.058583542704582214, + 0.026809029281139374, + 0.10980423539876938, + 0.03290128335356712, + 0.02993389032781124, + 0.041276365518569946, + -0.03598658740520477, + 0.01310979388654232, + -0.029107021167874336, + -0.013074154034256935, + -0.009706576354801655, + 0.010229378007352352, + 0.020406575873494148, + -0.057587362825870514, + -0.0847165510058403, + -0.05201786756515503, + 0.08795824646949768, + 0.004580735694617033, + 0.044260285794734955, + 0.00628688745200634, + -0.010948028415441513, + -0.04001611843705177, + 0.002815643325448036, + 0.08224143832921982, + 0.00043145063682459295, + -0.026064548641443253, + 0.00969900842756033, + -0.10865287482738495, + -0.03689492121338844, + -0.01881442777812481, + 0.054573751986026764, + 0.07218128442764282, + 0.059747327119112015, + -0.02281136065721512, + 0.03134472668170929, + -0.028841190040111542, + 0.038277413696050644, + 0.0031851197127252817, + -0.01103633176535368, + -0.04986416921019554, + -0.09899520874023438, + -0.0010044313967227936, + -0.01411753986030817, + 0.08164484798908234, + -0.005917915143072605, + 0.04501558467745781, + -0.06408877670764923, + 0.01673739217221737, + 0.02815971150994301, + -0.009594895876944065, + 0.00684217968955636, + -0.007897544652223587, + -0.00757065461948514, + 0.009188600815832615, + -0.04169226810336113, + -2.1287695162186537e-08, + -0.07242549955844879, + 0.007224841509014368, + 0.006565350107848644, + 0.0037578248884528875, + 0.02357124537229538, + 0.043662190437316895, + 0.010230141691863537, + -0.015011387877166271, + 0.0006900529842823744, + -0.057752326130867004, + 0.031691305339336395, + 0.054976385086774826, + -0.07222507148981094, + 0.01894359663128853, + 0.12614858150482178, + 0.04709088057279587, + -0.06781516224145889, + 0.017818240448832512, + -0.027163797989487648, + -0.05880957469344139, + -0.014098504558205605, + -0.0031359901186078787, + 0.01722821034491062, + 0.05679520219564438, + -0.016283011063933372, + 0.0037942188791930676, + -0.00676350062713027, + 0.13438200950622559, + 0.018873389810323715, + 0.01936989836394787, + 0.08841666579246521, + 0.019407983869314194, + -0.010837797075510025, + -0.013933626003563404, + -0.0025742959696799517, + 0.006233362480998039, + -0.04481636360287666, + 0.03576480597257614, + 0.024904916062951088, + 0.1078210398554802, + -0.07967430353164673, + 0.002997275674715638, + -0.03564682602882385, + -0.019744444638490677, + -0.006904457230120897, + 0.056340403854846954, + 0.034478746354579926, + -1.6832043911563233e-05, + -0.07968421280384064, + -0.11037714779376984, + -0.015856707468628883, + 0.060528822243213654, + 0.01741846464574337, + 0.07454534620046616, + -0.027228953316807747, + 0.05471231788396835, + 0.01692323572933674, + -0.049034278839826584, + -0.07530999928712845, + 0.023349881172180176, + 0.10342520475387573, + 0.10394518077373505, + 0.01324747409671545, + 0.0790974572300911 + ], + "arrow-elbow-right-up-bold||directional,pointer,pointing,arrowhead": [ + 0.04124494269490242, + -0.02751826122403145, + -0.03210777789354324, + -0.018593905493617058, + -0.016310302540659904, + -0.001094865147024393, + 0.07892085611820221, + 0.012573041021823883, + 0.016818705946207047, + 0.018508590757846832, + 0.045306120067834854, + 0.0651714876294136, + 0.03555123880505562, + 0.0008773031295277178, + -0.0328739657998085, + 0.029253238812088966, + -0.056557390838861465, + 0.04933760315179825, + 0.04819668456912041, + 0.03830419480800629, + -9.751350444275886e-05, + 0.03187273070216179, + -0.00494352076202631, + 0.021708238869905472, + 0.002163467463105917, + 0.01966163143515587, + 0.07822223007678986, + 0.035035572946071625, + -0.02432984858751297, + -0.07583864033222198, + -0.07568223029375076, + -0.012951076030731201, + -0.02293453738093376, + 0.03445325791835785, + -0.0826396495103836, + -0.05036395415663719, + -0.00362596707418561, + 0.02561934106051922, + -0.028431620448827744, + 0.054310597479343414, + 0.02277257665991783, + -0.01912282593548298, + 0.01188838854432106, + -0.0355464406311512, + 0.046234674751758575, + 0.1305762231349945, + -0.09070112556219101, + -0.013646564446389675, + 0.03708384558558464, + 0.05579704791307449, + -0.07025287300348282, + -0.07677993923425674, + -0.03043818473815918, + 0.01865110732614994, + 0.10066498070955276, + 0.09821806102991104, + -0.04670701175928116, + -0.044713784009218216, + 0.07173530757427216, + 0.022524964064359665, + 0.06720846146345139, + -0.0487041175365448, + 0.015372679568827152, + 0.014556526206433773, + 0.0449862964451313, + -0.023240890353918076, + -0.0035133983474224806, + 0.015942435711622238, + -0.013336656615138054, + 0.003274761838838458, + 0.033710233867168427, + -0.024758141487836838, + -0.061696745455265045, + -0.05823104828596115, + 0.005910910665988922, + -0.020410187542438507, + 0.046311333775520325, + 0.04538581520318985, + 0.0005359514034353197, + -0.03528738394379616, + -0.10360163450241089, + 0.03185366466641426, + -0.047166042029857635, + 0.057112790644168854, + 0.03827705234289169, + 0.10012472420930862, + -0.05819890275597572, + -0.02269602380692959, + -0.031733229756355286, + 0.007517796941101551, + -0.022521940991282463, + -0.013620095327496529, + -0.05626004934310913, + -0.060036152601242065, + 0.04335058853030205, + -0.012850873172283173, + 0.07204845547676086, + -0.11385931074619293, + -0.12285605818033218, + 0.06836486607789993, + 0.019434140995144844, + -0.029367420822381973, + 0.02854679524898529, + -0.07271324098110199, + -0.0015896084951236844, + -0.009558049030601978, + -0.02257952280342579, + -0.033758118748664856, + -0.021584445610642433, + -0.02745082974433899, + -0.032043591141700745, + -0.14727237820625305, + -0.04667253792285919, + -0.02667270600795746, + -0.0069299438036978245, + -0.012444516643881798, + -0.12231633067131042, + -0.025926940143108368, + 0.10939838737249374, + -0.010632450692355633, + 0.004198962822556496, + -0.010560458526015282, + -0.0480676144361496, + 0.00466914800927043, + -0.07680445164442062, + 0.00717253377661109, + -0.028032507747411728, + -3.708204560870403e-33, + 0.01808031089603901, + 0.025304675102233887, + -0.010490608401596546, + -0.006924614775925875, + -0.024045245721936226, + -0.034967098385095596, + -0.035723552107810974, + -0.05831233784556389, + -0.048734504729509354, + 0.03582170978188515, + 0.10588961839675903, + 0.008171534165740013, + -0.02897625043988228, + 0.08881949633359909, + 0.08090846240520477, + -0.09204189479351044, + 0.00921111274510622, + 0.07940810173749924, + -0.1193465143442154, + 0.03956672549247742, + -0.00211480725556612, + 0.05851934850215912, + -0.06972914934158325, + -0.03757050260901451, + -0.0207383893430233, + 0.03437575325369835, + -0.0328490175306797, + -0.020983053371310234, + -0.06008370220661163, + 0.01612110249698162, + -0.014578716829419136, + 0.051847510039806366, + -0.019458523020148277, + -0.08391467481851578, + -0.014461667276918888, + -0.035114824771881104, + -0.08300100266933441, + -0.04370669275522232, + -0.03285624086856842, + -0.03626154735684395, + -0.010044277645647526, + -0.0073167551308870316, + -0.0769999623298645, + -0.0177028588950634, + 0.006537290755659342, + 0.1353367567062378, + -0.06991693377494812, + -0.0647277981042862, + 0.016878647729754448, + -0.006600668653845787, + 0.01982969231903553, + 0.027049871161580086, + 0.04252132773399353, + -0.005164771806448698, + 0.009992927312850952, + 0.023936307057738304, + -0.07033763080835342, + 0.12364450842142105, + -0.026977937668561935, + 0.03926030173897743, + 0.008056565187871456, + 0.02480239048600197, + 0.002688219305127859, + -0.0025797039270401, + -0.07368959486484528, + 0.03674939274787903, + -0.10591904819011688, + 0.011930647306144238, + 0.12088774889707565, + -0.004663519561290741, + -0.014985829591751099, + 0.011443334631621838, + 0.07281509786844254, + 0.100974440574646, + -0.058727607131004333, + 0.016046209260821342, + -0.042607538402080536, + -0.014095157384872437, + 0.0679948553442955, + -0.06511298567056656, + -0.10366690158843994, + 0.07683859765529633, + -0.04475094750523567, + -0.018900545313954353, + 0.05556052550673485, + -0.0921926200389862, + -0.008809770457446575, + -0.05732796713709831, + -0.04244287312030792, + 0.07296348363161087, + -0.0376867912709713, + 0.060145024210214615, + -0.035369131714105606, + 0.016481216996908188, + -0.08869688212871552, + 8.908839341076837e-34, + 0.009809209033846855, + 0.049436431378126144, + -0.0634855106472969, + -0.013364425860345364, + -0.11434356123209, + 0.018548540771007538, + 0.08739199489355087, + -0.03241496905684471, + 0.014888264238834381, + 0.04960627853870392, + 0.008667648769915104, + 0.030041459947824478, + -0.04975999519228935, + -0.03002697415649891, + 0.09568481147289276, + -0.009317789226770401, + 0.05857066810131073, + 0.07281918078660965, + 0.037311457097530365, + -0.021556759253144264, + -0.0019178006332367659, + -0.053493380546569824, + 0.018101615831255913, + 0.009932941757142544, + -0.0045920126140117645, + 0.02893766760826111, + 0.061892494559288025, + 0.004596665035933256, + -0.06863489001989365, + -0.03712184727191925, + 0.007568353321403265, + -0.0023401884827762842, + 0.02874869480729103, + 0.08607438206672668, + -0.050760526210069656, + -0.04052785784006119, + -0.045612674206495285, + -0.08846054971218109, + 0.06453706324100494, + 0.03520868718624115, + 0.07302139699459076, + 0.02332393079996109, + 0.09059370309114456, + 0.04335338994860649, + 0.03561034053564072, + 0.02964266948401928, + -0.033831506967544556, + 0.01604403927922249, + -0.04266086965799332, + -0.00723913311958313, + -0.011034681461751461, + 0.022507717832922935, + 0.016342779621481895, + -0.057821039110422134, + -0.07550407201051712, + -0.05146677419543266, + 0.08568480610847473, + 0.008033555001020432, + 0.052921514958143234, + 0.0020226887427270412, + -0.013629802502691746, + -0.026779383420944214, + 0.002218964509665966, + 0.07239861786365509, + -0.004989500157535076, + -0.028211085125803947, + 0.018233647570014, + -0.11770065873861313, + -0.04018312692642212, + -0.015148093923926353, + 0.060692086815834045, + 0.07076780498027802, + 0.052552297711372375, + -0.022264091297984123, + 0.02925603836774826, + -0.022191431373357773, + 0.045308660715818405, + -0.003804851556196809, + -0.0027162337210029364, + -0.05978366732597351, + -0.1159941554069519, + 0.004622742533683777, + -0.01882851868867874, + 0.09329285472631454, + -0.008748907595872879, + 0.04365713149309158, + -0.04602110758423805, + 0.014483018778264523, + 0.024355243891477585, + -0.015105843544006348, + 0.02157646231353283, + -0.01544422097504139, + -0.016030622646212578, + 0.013113017193973064, + -0.035082198679447174, + -2.0768485597955078e-08, + -0.07163643836975098, + 0.006835268344730139, + -0.0025709837209433317, + 0.002796505345031619, + 0.029669376090168953, + 0.0389365553855896, + 0.014770638197660446, + -0.012908206321299076, + -0.0018134266138076782, + -0.07945092022418976, + 0.026625873520970345, + 0.055994633585214615, + -0.06558053940534592, + 0.011479918844997883, + 0.12347932904958725, + 0.045349590480327606, + -0.07354524731636047, + 0.02493826113641262, + -0.04023779183626175, + -0.05361395329236984, + -0.015623859129846096, + 0.01035065297037363, + 0.022465376183390617, + 0.05150468274950981, + -0.020819319412112236, + -0.00021331165044102818, + -0.013156106695532799, + 0.12443935871124268, + 0.016554033383727074, + 0.018978063017129898, + 0.08559112250804901, + 0.01079824659973383, + -0.016647623851895332, + -0.01327642984688282, + 0.007577349431812763, + 0.011364645324647427, + -0.04486190527677536, + 0.03886115923523903, + 0.020352400839328766, + 0.10009533911943436, + -0.07584279030561447, + 0.009000629186630249, + -0.02941242977976799, + -0.026984065771102905, + -0.01878286339342594, + 0.05748388543725014, + 0.025002330541610718, + -0.0021361513063311577, + -0.09915535897016525, + -0.10840222239494324, + -0.013179728761315346, + 0.058168478310108185, + 0.01093306951224804, + 0.06968400627374649, + -0.0217549167573452, + 0.056621260941028595, + 0.014574197120964527, + -0.05078661069273949, + -0.07338802516460419, + 0.030323628336191177, + 0.11174692213535309, + 0.0953361839056015, + 0.015076824463903904, + 0.0822867900133133 + ], + "arrow-elbow-up-left-bold||directional,pointer,pointing,arrowhead": [ + 0.040826115757226944, + -0.031724732369184494, + -0.03005400113761425, + -0.014991097152233124, + -0.010651717893779278, + -0.015488897450268269, + 0.08024189621210098, + 0.011336538009345531, + 0.012117923237383366, + 0.015569670125842094, + 0.0388004444539547, + 0.06578271836042404, + 0.033984459936618805, + 0.0086255744099617, + -0.03968973830342293, + 0.030168140307068825, + -0.062290411442518234, + 0.0435841903090477, + 0.05064695328474045, + 0.052060216665267944, + -0.012135314755141735, + 0.030327580869197845, + -0.010074686259031296, + 0.02163625694811344, + 0.0033875827211886644, + 0.025900395587086678, + 0.0815173014998436, + 0.031064651906490326, + -0.02518337219953537, + -0.07853438705205917, + -0.07066281884908676, + -0.020987385883927345, + -0.03366443142294884, + 0.03756079450249672, + -0.07871377468109131, + -0.057915546000003815, + 0.007450958713889122, + 0.02310444973409176, + -0.02595118246972561, + 0.052668582648038864, + 0.02876635268330574, + -0.011588890105485916, + 0.01683582365512848, + -0.031924378126859665, + 0.04909930005669594, + 0.12106006592512131, + -0.10118814557790756, + -0.016460439190268517, + 0.037848249077796936, + 0.05717485398054123, + -0.07076892256736755, + -0.07991694658994675, + -0.0292336568236351, + 0.012911630794405937, + 0.09253446012735367, + 0.08221815526485443, + -0.041153259575366974, + -0.04363242909312248, + 0.0693468302488327, + 0.021991366520524025, + 0.070261649787426, + -0.04932739958167076, + 0.017607493326067924, + 0.00739658810198307, + 0.04495862498879433, + -0.030323047190904617, + -0.002849388401955366, + 0.02376292459666729, + -0.010162336751818657, + 0.0004385291540529579, + 0.03099776804447174, + -0.026721108704805374, + -0.06338266283273697, + -0.06120505556464195, + 0.007609570398926735, + -0.023216281086206436, + 0.04760134592652321, + 0.04735284671187401, + 0.006879949476569891, + -0.033706169575452805, + -0.09739549458026886, + 0.029483027756214142, + -0.04686775431036949, + 0.05139642208814621, + 0.039236247539520264, + 0.09572573006153107, + -0.06859859079122543, + -0.026779338717460632, + -0.03387506306171417, + 0.006328036542981863, + -0.026420630514621735, + -0.0023968059103935957, + -0.04910650476813316, + -0.060528628528118134, + 0.04924315959215164, + -0.015299268066883087, + 0.0806836411356926, + -0.11265222728252411, + -0.1243864893913269, + 0.0756002739071846, + 0.01789465919137001, + -0.015410605818033218, + 0.028192298486828804, + -0.07665690034627914, + -0.0025913778226822615, + 0.0025073206052184105, + -0.02311907708644867, + -0.03586296737194061, + -0.028404615819454193, + -0.035216160118579865, + -0.0387389212846756, + -0.15145745873451233, + -0.04376992955803871, + -0.03885429725050926, + -0.007805998437106609, + -0.017244473099708557, + -0.12365265935659409, + -0.022816654294729233, + 0.11278493702411652, + -0.01613660715520382, + 0.01039652805775404, + -0.02366463840007782, + -0.05032406002283096, + 0.0077113136649131775, + -0.07496468722820282, + 0.009263676591217518, + -0.02286403439939022, + -3.870377965561754e-33, + 0.02194695733487606, + 0.03219131752848625, + -0.014299950562417507, + -0.006013189442455769, + -0.020420363172888756, + -0.024785390123724937, + -0.03337636962532997, + -0.04982202500104904, + -0.06138959899544716, + 0.020457802340388298, + 0.10846732556819916, + 0.0055931792594492435, + -0.03333703801035881, + 0.08374560624361038, + 0.06943538039922714, + -0.0980168879032135, + 0.020378440618515015, + 0.07774525135755539, + -0.12696808576583862, + 0.03571058809757233, + 0.0001825017243390903, + 0.06245972216129303, + -0.07501810789108276, + -0.03672128915786743, + -0.0252281092107296, + 0.030391892418265343, + -0.030541956424713135, + -0.01690174825489521, + -0.060107287019491196, + 0.017388226464390755, + -0.0040521216578781605, + 0.05469715967774391, + -0.022028759121894836, + -0.08662278950214386, + -0.013067333959043026, + -0.02738882414996624, + -0.08441632241010666, + -0.04272853210568428, + -0.02977890893816948, + -0.03279517590999603, + -0.009744817391037941, + -0.01342448778450489, + -0.0683276504278183, + -0.014219168573617935, + 0.0011181100271642208, + 0.14441631734371185, + -0.07257337868213654, + -0.07238718867301941, + 0.02108338288962841, + -0.007460960187017918, + 0.011287943460047245, + 0.021330684423446655, + 0.03682154044508934, + -0.006086355075240135, + 0.015241927467286587, + 0.02447337843477726, + -0.07523138076066971, + 0.11925600469112396, + -0.023957133293151855, + 0.03588292375206947, + 0.011989975348114967, + 0.02697945199906826, + 0.0021982744801789522, + -0.008511248975992203, + -0.07627534121274948, + 0.03178105875849724, + -0.11064942926168442, + 0.01808036118745804, + 0.1174604743719101, + -0.0028145061805844307, + -0.011075939051806927, + 0.015346444211900234, + 0.07749523222446442, + 0.09593790769577026, + -0.05990896746516228, + 0.01781083643436432, + -0.03911728039383888, + -0.018906427547335625, + 0.0657767504453659, + -0.07539234310388565, + -0.0980285182595253, + 0.07262308150529861, + -0.03540053218603134, + -0.014388306997716427, + 0.06277644634246826, + -0.08226118236780167, + -0.009658465161919594, + -0.05238128453493118, + -0.03963722661137581, + 0.0763653963804245, + -0.04017797112464905, + 0.048439208418130875, + -0.03017609193921089, + 0.015189273282885551, + -0.09220419079065323, + 1.0144519002661226e-33, + 0.009309650398790836, + 0.0491456501185894, + -0.07636073976755142, + -0.016234098002314568, + -0.12153004854917526, + 0.016019834205508232, + 0.08182552456855774, + -0.036423228681087494, + 0.012644696980714798, + 0.049419842660427094, + 0.0050157285295426846, + 0.030981002375483513, + -0.037029094994068146, + -0.02845258265733719, + 0.09140089154243469, + -0.010753101669251919, + 0.060959529131650925, + 0.06607422232627869, + 0.027934173122048378, + -0.033810291439294815, + -0.005194599740207195, + -0.05267529562115669, + 0.025350643321871758, + 0.015415974892675877, + 0.0003966933290939778, + 0.03169203922152519, + 0.06089204177260399, + 0.0013442537747323513, + -0.0654701292514801, + -0.03771689161658287, + 0.013715935871005058, + 0.0019239415414631367, + 0.041062917560338974, + 0.07676254957914352, + -0.04443369060754776, + -0.0435786172747612, + -0.040605101734399796, + -0.09243747591972351, + 0.0683450996875763, + 0.024699803441762924, + 0.06673435121774673, + 0.02954777702689171, + 0.09162583202123642, + 0.041077129542827606, + 0.04210945963859558, + 0.04088246449828148, + -0.02318461984395981, + 0.02125474624335766, + -0.0314335972070694, + -0.0019500800408422947, + -0.008999573066830635, + 0.016563374549150467, + 0.017003390938043594, + -0.057491011917591095, + -0.07544153928756714, + -0.05210983008146286, + 0.08444677293300629, + 0.019328724592924118, + 0.060878217220306396, + 0.0014149106573313475, + -0.015910882502794266, + -0.024436742067337036, + 0.005145312286913395, + 0.0676330104470253, + -0.005196421407163143, + -0.03399288281798363, + 0.02569531835615635, + -0.11054911464452744, + -0.025109604001045227, + -0.016757173463702202, + 0.06956497579813004, + 0.08070363849401474, + 0.04899958148598671, + -0.021504085510969162, + 0.03941568732261658, + -0.012011411599814892, + 0.05025976896286011, + -0.0070758406072855, + -0.008650016039609909, + -0.055178653448820114, + -0.11540630459785461, + -0.0011760179186239839, + -0.011907773092389107, + 0.08864381164312363, + -0.009987782686948776, + 0.041893262416124344, + -0.05012134835124016, + 0.009586875326931477, + 0.01622624322772026, + -0.013220924884080887, + 0.01123401802033186, + -0.018396422266960144, + -0.011610645800828934, + 0.005748066119849682, + -0.031250860542058945, + -2.1227462454476154e-08, + -0.061823051422834396, + -0.00427604466676712, + -0.010521645657718182, + 0.0017246394418179989, + 0.01880292035639286, + 0.032383497804403305, + 0.020911213010549545, + -0.017012597993016243, + -0.0027732006274163723, + -0.07858850806951523, + 0.03255050629377365, + 0.058649174869060516, + -0.06448910385370255, + 0.007304873317480087, + 0.12029707431793213, + 0.04171471297740936, + -0.06387066841125488, + 0.024934710934758186, + -0.0402512364089489, + -0.04748937860131264, + -0.01589694432914257, + 0.013640292920172215, + 0.024799779057502747, + 0.05127542093396187, + -0.02790168486535549, + 0.005942319054156542, + -0.008259077556431293, + 0.12883375585079193, + 0.029877325519919395, + 0.014256536029279232, + 0.08410235494375229, + 0.0122650396078825, + -0.021332688629627228, + -0.011588596738874912, + -0.00585579639300704, + 0.005544519517570734, + -0.05393392592668533, + 0.04607745632529259, + 0.013953340239822865, + 0.10572417825460434, + -0.06899861991405487, + 0.014159604907035828, + -0.028648119419813156, + -0.02546982280910015, + -0.020031005144119263, + 0.058022648096084595, + 0.023739024996757507, + 0.0038370119873434305, + -0.09246653318405151, + -0.10966679453849792, + -0.019243469461798668, + 0.058307528495788574, + 0.012970778159797192, + 0.07301205396652222, + -0.023853441700339317, + 0.0546492338180542, + 0.011775702238082886, + -0.040877774357795715, + -0.07735219597816467, + 0.028544843196868896, + 0.10938744246959686, + 0.09466622024774551, + 0.014940928667783737, + 0.08374443650245667 + ], + "arrow-elbow-up-right-bold||directional,pointer,pointing,arrowhead": [ + 0.04070137068629265, + -0.031175684183835983, + -0.03378388285636902, + -0.018997201696038246, + -0.01641579158604145, + -0.005131856072694063, + 0.08182764798402786, + 0.014376427978277206, + 0.01242896169424057, + 0.01931041292846203, + 0.04596873000264168, + 0.06710667908191681, + 0.03795689344406128, + 0.005881997290998697, + -0.03542869910597801, + 0.029641438275575638, + -0.06101069226861, + 0.04580540955066681, + 0.049285806715488434, + 0.04329947754740715, + -0.0008751996210776269, + 0.028020506724715233, + -0.003747302806004882, + 0.021053167060017586, + 0.005825127474963665, + 0.025233043357729912, + 0.07484705746173859, + 0.033109791576862335, + -0.02537812665104866, + -0.07933463901281357, + -0.0753207802772522, + -0.02058582939207554, + -0.025849804282188416, + 0.036235373467206955, + -0.07771853357553482, + -0.05267633870244026, + 0.0023272240068763494, + 0.024175917729735374, + -0.025127919390797615, + 0.050835199654102325, + 0.023830808699131012, + -0.0179486945271492, + 0.01572982408106327, + -0.03352385014295578, + 0.04653552174568176, + 0.12641921639442444, + -0.09604791551828384, + -0.017145199701189995, + 0.033810682594776154, + 0.056333158165216446, + -0.07134386152029037, + -0.07946072518825531, + -0.026725029572844505, + 0.01455133780837059, + 0.09898505359888077, + 0.09123630821704865, + -0.04331555217504501, + -0.04189186915755272, + 0.0732000470161438, + 0.02167385257780552, + 0.0655210092663765, + -0.05019461363554001, + 0.014391609467566013, + 0.012486524879932404, + 0.04448316618800163, + -0.025986265391111374, + -0.002302690874785185, + 0.02103384956717491, + -0.01464198250323534, + 0.004816730506718159, + 0.0321270190179348, + -0.025103535503149033, + -0.06230791658163071, + -0.057409580796957016, + 0.00605211965739727, + -0.01994219422340393, + 0.04614263027906418, + 0.04522122070193291, + 0.0026212388183921576, + -0.03244452551007271, + -0.09947211295366287, + 0.028284184634685516, + -0.04657250642776489, + 0.05822242051362991, + 0.03896230459213257, + 0.09829998761415482, + -0.06378687173128128, + -0.023113161325454712, + -0.032741621136665344, + 0.006572287529706955, + -0.024274522438645363, + -0.01161559484899044, + -0.05237036198377609, + -0.05476913973689079, + 0.0431070476770401, + -0.014945912174880505, + 0.07691109925508499, + -0.11505745351314545, + -0.12297429889440536, + 0.07075008749961853, + 0.019988808780908585, + -0.022636931389570236, + 0.02946624718606472, + -0.0746375247836113, + -0.004273482598364353, + -0.0048398361541330814, + -0.0221625417470932, + -0.03478475287556648, + -0.02252042293548584, + -0.027252530679106712, + -0.03664281591773033, + -0.1491965353488922, + -0.04269915074110031, + -0.03352074697613716, + -0.010649059899151325, + -0.013272061012685299, + -0.12379458546638489, + -0.028342414647340775, + 0.10866989195346832, + -0.01202822383493185, + 0.011123000644147396, + -0.014359904453158379, + -0.05040990188717842, + 0.004791599698364735, + -0.07703735679388046, + 0.006009101402014494, + -0.023127557709813118, + -3.693582513172128e-33, + 0.02003454603254795, + 0.030260251834988594, + -0.012550700455904007, + -0.00559022044762969, + -0.01879347488284111, + -0.03108726069331169, + -0.039419565349817276, + -0.05296899378299713, + -0.057807762175798416, + 0.03041781298816204, + 0.10342612117528915, + 0.007834799587726593, + -0.02991485595703125, + 0.08823742717504501, + 0.07504355907440186, + -0.09858272224664688, + 0.016948457807302475, + 0.07723312079906464, + -0.12439107149839401, + 0.03762953355908394, + -0.003864802187308669, + 0.06062540411949158, + -0.07024893909692764, + -0.035909105092287064, + -0.024433042854070663, + 0.033503882586956024, + -0.03126896545290947, + -0.01693716086447239, + -0.05802471935749054, + 0.017176952213048935, + -0.011412949301302433, + 0.048038557171821594, + -0.02179396152496338, + -0.08263447135686874, + -0.011818068102002144, + -0.030919965356588364, + -0.0844419002532959, + -0.04327557235956192, + -0.032331693917512894, + -0.034143563359975815, + -0.011911092326045036, + -0.01040621753782034, + -0.07346039265394211, + -0.015769973397254944, + 0.009800141677260399, + 0.14066214859485626, + -0.0708099752664566, + -0.06898897886276245, + 0.018877262249588966, + -0.006914123427122831, + 0.014976553618907928, + 0.025125104933977127, + 0.0399877093732357, + -0.0020855944603681564, + 0.014450209215283394, + 0.027202272787690163, + -0.07389573752880096, + 0.12511534988880157, + -0.02640646882355213, + 0.040327586233615875, + 0.009069961495697498, + 0.026068897917866707, + 0.007279754616320133, + -0.008841592818498611, + -0.07302901148796082, + 0.03422114998102188, + -0.10846465826034546, + 0.01647076942026615, + 0.1201232448220253, + -0.0018328450387343764, + -0.012869193218648434, + 0.016549736261367798, + 0.07164968550205231, + 0.10037557035684586, + -0.0648856982588768, + 0.019903331995010376, + -0.044568195939064026, + -0.016287410631775856, + 0.06551014631986618, + -0.07052408158779144, + -0.10196360945701599, + 0.06991086155176163, + -0.03737455606460571, + -0.01908787712454796, + 0.05919140577316284, + -0.08861061930656433, + -0.009783211164176464, + -0.05565859377384186, + -0.0378216952085495, + 0.07107628881931305, + -0.03871520981192589, + 0.053612131625413895, + -0.0278865247964859, + 0.01039293222129345, + -0.09115608781576157, + 9.919975704425168e-34, + 0.013885535299777985, + 0.04991915449500084, + -0.06605097651481628, + -0.014879448339343071, + -0.12133807688951492, + 0.018866917118430138, + 0.08795049786567688, + -0.03500555828213692, + 0.012674073688685894, + 0.052467506378889084, + 0.00790336448699236, + 0.02847028151154518, + -0.038099098950624466, + -0.03170366957783699, + 0.09419559687376022, + -0.012309711426496506, + 0.059641361236572266, + 0.07111441344022751, + 0.035002436488866806, + -0.026598189026117325, + -0.0029198306147009134, + -0.05797863379120827, + 0.01812606118619442, + 0.01657121255993843, + -0.0005807949346490204, + 0.031832508742809296, + 0.06243282929062843, + 0.00012527719081845134, + -0.061294689774513245, + -0.035852305591106415, + 0.012901893816888332, + -0.005180363543331623, + 0.030015941709280014, + 0.08494013547897339, + -0.04615127295255661, + -0.0432259775698185, + -0.043367013335227966, + -0.08827561885118484, + 0.06201866269111633, + 0.02716204524040222, + 0.0690123438835144, + 0.02864694595336914, + 0.09312941133975983, + 0.03948280215263367, + 0.039624981582164764, + 0.03929740935564041, + -0.030160924419760704, + 0.01945296861231327, + -0.039013855159282684, + -0.008245090022683144, + -0.009355802088975906, + 0.01799343340098858, + 0.02013249695301056, + -0.05876429006457329, + -0.07481184601783752, + -0.05080696567893028, + 0.08957981318235397, + 0.010333241894841194, + 0.05220625177025795, + 0.0020481133833527565, + -0.012312682345509529, + -0.026831122115254402, + 0.0002745694946497679, + 0.07039643824100494, + -0.005487053655087948, + -0.02842714823782444, + 0.018783004954457283, + -0.11537185311317444, + -0.036156609654426575, + -0.017984673380851746, + 0.06380079686641693, + 0.0715329647064209, + 0.04766257107257843, + -0.022176507860422134, + 0.03267741575837135, + -0.015338989906013012, + 0.04816664755344391, + -0.005818862933665514, + -0.008829261176288128, + -0.06150208041071892, + -0.11231459677219391, + 0.003929194062948227, + -0.016072148457169533, + 0.09380897134542465, + -0.013283038511872292, + 0.046351440250873566, + -0.052038904279470444, + 0.012334654107689857, + 0.02008376270532608, + -0.01573139801621437, + 0.015367493033409119, + -0.012331456877291203, + -0.01134376972913742, + 0.01495447289198637, + -0.03286688029766083, + -2.0869663330813637e-08, + -0.06777022778987885, + 0.00172048294916749, + -0.007145303767174482, + 0.0014147080946713686, + 0.022578636184334755, + 0.03470290079712868, + 0.015690943226218224, + -0.015713529661297798, + -0.0010479956399649382, + -0.08175189048051834, + 0.02939041517674923, + 0.057331278920173645, + -0.06294339150190353, + 0.012994944117963314, + 0.12642133235931396, + 0.04041919857263565, + -0.06696556508541107, + 0.027003271505236626, + -0.0384814627468586, + -0.05309185013175011, + -0.019363312050700188, + 0.012457565404474735, + 0.024180224165320396, + 0.05105279013514519, + -0.02621246501803398, + 0.006176874507218599, + -0.013956819660961628, + 0.1272546947002411, + 0.022822394967079163, + 0.01695486716926098, + 0.08508177101612091, + 0.010785643011331558, + -0.018625255674123764, + -0.014356580562889576, + 0.0020980006083846092, + 0.009459305554628372, + -0.048446569591760635, + 0.040942635387182236, + 0.01786571554839611, + 0.1021975427865982, + -0.0682988092303276, + 0.011543190106749535, + -0.030620694160461426, + -0.02350686304271221, + -0.020554395392537117, + 0.05636946111917496, + 0.028563430532813072, + 0.003025658894330263, + -0.09607336670160294, + -0.11163439601659775, + -0.020062794908881187, + 0.06154313683509827, + 0.015415171161293983, + 0.0700225904583931, + -0.02416282892227173, + 0.05773734301328659, + 0.011766115203499794, + -0.046489469707012177, + -0.07218511402606964, + 0.02847478538751602, + 0.10939837247133255, + 0.09438300132751465, + 0.012864530086517334, + 0.08207006007432938 + ], + "arrow-fat-down-bold||directional,pointer,pointing,arrowhead,outlined": [ + 0.05029061436653137, + -0.032667070627212524, + -0.04271900653839111, + 0.022810732945799828, + -0.0016367711359634995, + -0.022855613380670547, + 0.06065403297543526, + 0.011044858954846859, + -0.004845432937145233, + -0.004591700155287981, + 0.0003893033426720649, + 0.0739077776670456, + 0.02248304896056652, + 0.010301447473466396, + -0.025809122249484062, + 0.002534609753638506, + -0.051150090992450714, + 0.02038550190627575, + 0.047257304191589355, + 0.03150215372443199, + 0.021329017356038094, + 0.013761414214968681, + -0.026474792510271072, + 0.03795623406767845, + -0.027392474934458733, + 0.024052631109952927, + 0.08533116430044174, + -0.008903775364160538, + -0.020682577043771744, + -0.049937903881073, + -0.06875462085008621, + -0.04960297420620918, + -0.010231966152787209, + 0.03712092712521553, + -0.10048376768827438, + -0.040899857878685, + 0.03015908971428871, + 0.011197461746633053, + -0.0298506710678339, + 0.03324234113097191, + 0.04382539540529251, + -0.005733045283704996, + 0.002453376306220889, + 0.010160231031477451, + 0.0532054603099823, + 0.059662461280822754, + -0.07331182807683945, + -0.0035696399863809347, + 0.02502412721514702, + 0.06581493467092514, + -0.06934524327516556, + -0.10525722056627274, + -0.057586945593357086, + -0.004950445145368576, + 0.05826833099126816, + 0.06282267719507217, + -0.029304325580596924, + -0.03544890880584717, + 0.04033418372273445, + 0.01859651505947113, + 0.06348006427288055, + -0.028639107942581177, + 0.036236077547073364, + 0.018253512680530548, + 0.04404480755329132, + -0.01624680683016777, + -0.013090184889733791, + 0.010196790099143982, + 0.011793836951255798, + 0.04625453054904938, + 0.01942399889230728, + -0.043209753930568695, + -0.05185126140713692, + -0.05707761272788048, + -0.019420795142650604, + -0.01860012672841549, + 0.013050593435764313, + 0.04912181198596954, + 0.005877506919205189, + -0.070347361266613, + -0.056024014949798584, + 0.034363213926553726, + -0.046626582741737366, + 0.06442014127969742, + 0.03207821026444435, + 0.0940001904964447, + -0.05855177342891693, + -0.06940143555402756, + -0.05223698914051056, + -0.025615310296416283, + -0.0017211062368005514, + -0.01079671923071146, + -0.0445232056081295, + 0.006367217283695936, + -0.0025001789908856153, + -0.04176612198352814, + 0.08110512793064117, + -0.08110293000936508, + -0.12251230329275131, + 0.07401284575462341, + 0.002741910284385085, + 0.011528854258358479, + 0.03839896246790886, + -0.053541336208581924, + -0.027310268953442574, + -0.0003848039195872843, + -0.037657517939805984, + -0.052975814789533615, + -0.04356544092297554, + -0.022041305899620056, + -0.03800761699676514, + -0.15128719806671143, + -0.033416204154491425, + -0.014784666709601879, + -0.030995385721325874, + -0.02755199745297432, + -0.09022390097379684, + -0.01637057587504387, + 0.0918692946434021, + -0.018915707245469093, + 0.005441925022751093, + -0.04177383333444595, + -0.05067044124007225, + -0.03184129670262337, + -0.059952374547719955, + 0.0006903320900164545, + -0.03959397226572037, + -3.9527268549666244e-33, + 0.04482470452785492, + 0.026437705382704735, + -0.02467365562915802, + -0.007976244203746319, + -0.00020363807561807334, + -0.0264720655977726, + -0.036833859980106354, + -0.048911355435848236, + -0.10481476783752441, + 0.03030410036444664, + 0.15938778221607208, + -0.05237160623073578, + -0.059090204536914825, + 0.12531661987304688, + 0.023200105875730515, + -0.1123419776558876, + 0.0661354809999466, + 0.08832786977291107, + -0.11002780497074127, + -0.004387312103062868, + -0.025226233527064323, + 0.07701796293258667, + -0.09478602558374405, + -0.08004790544509888, + 0.0012917109997943044, + 0.008404728025197983, + -0.044235534965991974, + -0.0036769660655409098, + -0.08233527839183807, + 0.032088808715343475, + -0.0029858897905796766, + 0.04188891872763634, + 0.012241815216839314, + -0.10714172571897507, + -0.021063704043626785, + -0.01824493333697319, + -0.07701010257005692, + -0.04629580304026604, + -0.030373016372323036, + -0.053599197417497635, + 3.66248787031509e-05, + -0.048280227929353714, + -0.04545316845178604, + -0.011287951841950417, + -0.01896301656961441, + 0.17548592388629913, + -0.045993804931640625, + -0.06942237913608551, + 0.01207785401493311, + -0.03136083483695984, + 0.01669195108115673, + -8.105270535452291e-05, + 0.012802484445273876, + 0.003988450858741999, + 0.04078720137476921, + -0.01579918898642063, + -0.09452717006206512, + 0.12715686857700348, + -0.01806313917040825, + 0.013856794685125351, + 0.01806330680847168, + 0.016541052609682083, + -0.008238708600401878, + -0.0061533283442258835, + -0.08304375410079956, + 0.02641768753528595, + -0.11005997657775879, + 0.03366013616323471, + 0.10060624033212662, + 0.03447340056300163, + 0.014084135182201862, + 0.04898996278643608, + 0.07545699179172516, + 0.04289964959025383, + -0.01470137108117342, + 0.02600632794201374, + -0.012820093892514706, + -0.06053568422794342, + 0.07030046731233597, + -0.07548467814922333, + -0.10265875607728958, + 0.05841239169239998, + -0.045723263174295425, + -0.0200207382440567, + 0.02078324183821678, + -0.030786840245127678, + 0.01533977035433054, + -0.01220740843564272, + -0.009688423946499825, + 0.06464029848575592, + -0.08092357218265533, + 0.015849877148866653, + -0.014996308833360672, + -0.003646045457571745, + -0.08239737898111343, + 7.466441651060657e-34, + -0.004930241033434868, + 0.0669497400522232, + -0.05979565531015396, + 0.005577705800533295, + -0.13707947731018066, + 0.026648176833987236, + 0.03284419700503349, + -0.04504288733005524, + 0.013690328225493431, + 0.04444410651922226, + 0.011231387965381145, + 0.018987927585840225, + -0.04626116156578064, + -0.024423662573099136, + 0.0590176098048687, + 0.006316448096185923, + 0.04632796347141266, + 0.03378890082240105, + -0.005236804950982332, + -0.05020969361066818, + -0.009303104132413864, + -0.08527861535549164, + -0.009700595401227474, + 0.03872197866439819, + 0.02796320989727974, + 0.031919773668050766, + 0.0888061672449112, + 0.046715330332517624, + -0.04554607346653938, + -0.04461582750082016, + 0.013634942471981049, + 0.0045800101943314075, + 0.03771332651376724, + 0.019038792699575424, + -0.07193369418382645, + -0.04427636042237282, + -0.04509763419628143, + -0.05454358458518982, + 0.07414131611585617, + -0.004134573973715305, + 0.026929473504424095, + 0.028441566973924637, + 0.10805583745241165, + 0.030265988782048225, + 0.015622901730239391, + 0.054975029081106186, + 0.023655114695429802, + 0.021727386862039566, + 0.022066503763198853, + 0.006132806185632944, + 0.01757563091814518, + -0.024992141872644424, + 0.0214725062251091, + 0.0011385760735720396, + -0.11492756754159927, + -0.004818308632820845, + 0.08239475637674332, + 0.048092179000377655, + 0.02122088149189949, + -0.01358716282993555, + -0.019933167845010757, + -0.04514189064502716, + 0.0024762344546616077, + 0.04083826020359993, + 0.014163018204271793, + -0.03363227844238281, + 0.04593465477228165, + -0.08147944509983063, + 0.01983783021569252, + 0.009243314154446125, + 0.043447189033031464, + 0.08933045715093613, + 0.053443245589733124, + 0.020024755969643593, + 0.06945859640836716, + -0.07118108868598938, + 0.04216504842042923, + -0.0045594447292387486, + -0.042357511818408966, + -0.001041291281580925, + -0.05181572213768959, + 0.0016205912688747048, + 0.0007067893166095018, + 0.027592608705163002, + 0.025078924372792244, + 0.053223565220832825, + -0.10179676115512848, + 0.034150101244449615, + 0.013856279663741589, + 0.0296749547123909, + -0.016252340748906136, + 0.010510995052754879, + -0.00264915288425982, + -0.05311168357729912, + -0.06044163554906845, + -2.133972998308309e-08, + -0.047351304441690445, + -0.026058761402964592, + 0.014317773282527924, + -0.02976936474442482, + -0.007529562339186668, + 0.01017233356833458, + 0.019868474453687668, + -0.017603417858481407, + 0.015424768440425396, + -0.08080704510211945, + 0.02695370279252529, + 0.05493569001555443, + -0.08669739961624146, + -0.008355945348739624, + 0.12924548983573914, + 0.044467441737651825, + -0.06535607576370239, + 0.03573516383767128, + -0.033304616808891296, + -0.050217706710100174, + -0.03327196091413498, + 0.007373282220214605, + 0.00687683979049325, + 0.08082617074251175, + -0.028874406591057777, + -0.0035426304675638676, + 0.009301885031163692, + 0.16615860164165497, + 0.07183921337127686, + 0.04139907658100128, + 0.07941050082445145, + 0.048135414719581604, + 0.005686646327376366, + 0.02148871310055256, + 0.004870340693742037, + 0.0009032553061842918, + -0.034849658608436584, + 0.03011656552553177, + 0.01775437593460083, + 0.1429189145565033, + -0.042397838085889816, + 0.004166790749877691, + 0.012457172386348248, + -0.012429285794496536, + -0.014665648341178894, + 0.05564158782362938, + 0.004509887658059597, + 0.041889045387506485, + -0.07613785564899445, + -0.10704217851161957, + -0.025795714929699898, + 0.05166099593043327, + -0.0019365509506314993, + 0.10549788922071457, + -0.025662215426564217, + 0.02327008545398712, + 0.004600337706506252, + 0.0009266132838092744, + -0.07538999617099762, + 0.03976528346538544, + 0.1099209114909172, + 0.05535170063376427, + 0.032977137714624405, + 0.07485678791999817 + ], + "arrow-fat-left-bold||directional,pointer,pointing,arrowhead,outlined": [ + 0.050315555185079575, + -0.044094208627939224, + -0.04434424266219139, + 0.04139598459005356, + 0.011727592907845974, + -0.02223305031657219, + 0.05446561798453331, + -0.00028593585011549294, + -0.01356069091707468, + -0.012831252999603748, + 0.009639536030590534, + 0.06597070395946503, + 0.011115155182778835, + 0.013323981314897537, + -0.033955976366996765, + 0.008026042021811008, + -0.06586144119501114, + -0.008866604417562485, + 0.05280175432562828, + 0.04331277683377266, + 0.004582044668495655, + 0.02256358414888382, + -0.03322581574320793, + 0.036237869411706924, + -0.02315708063542843, + 0.03589893877506256, + 0.09122525155544281, + -0.013858618214726448, + -0.02384975552558899, + -0.05719119310379028, + -0.049998726695775986, + -0.049442827701568604, + -0.020680304616689682, + 0.03571692481637001, + -0.09576644748449326, + -0.04538702964782715, + 0.024249281734228134, + 0.007489717099815607, + -0.029575347900390625, + 0.02280029095709324, + 0.04361152648925781, + -0.013858254067599773, + 0.008746126666665077, + 0.01157890260219574, + 0.059906456619501114, + 0.0573301799595356, + -0.08269358426332474, + 0.004115982912480831, + 0.043976232409477234, + 0.0666390135884285, + -0.08166192471981049, + -0.1138053685426712, + -0.06324021518230438, + -0.0034427635837346315, + 0.05109263211488724, + 0.05765670910477638, + -0.028824396431446075, + -0.0391797199845314, + 0.04608999192714691, + 0.012546085752546787, + 0.059541966766119, + -0.019793309271335602, + 0.04068610072135925, + 0.018729712814092636, + 0.03357419744133949, + -0.03256094828248024, + -0.006306464783847332, + 0.014777092263102531, + 0.021979665383696556, + 0.03742027282714844, + 0.022604865953326225, + -0.031260885298252106, + -0.06463198363780975, + -0.06271176040172577, + 0.0030479568522423506, + -0.023294957354664803, + 0.015878336504101753, + 0.05413973331451416, + 0.006271081976592541, + -0.0629824697971344, + -0.06584426015615463, + 0.025776801630854607, + -0.03672502189874649, + 0.049626290798187256, + 0.05452575162053108, + 0.09795165807008743, + -0.061308082193136215, + -0.06534391641616821, + -0.03464013338088989, + -0.019518719986081123, + -0.004164230078458786, + 0.007209707051515579, + -0.04292230308055878, + -0.009868506342172623, + 0.01673446036875248, + -0.0359237864613533, + 0.06794318556785583, + -0.06934131681919098, + -0.1292535364627838, + 0.07467716932296753, + 0.020470837131142616, + 0.012313037179410458, + 0.03257743641734123, + -0.05249600112438202, + -0.011463938280940056, + 0.012463406659662724, + -0.04675274342298508, + -0.04284927621483803, + -0.059571582823991776, + -0.028635887429118156, + -0.034713368862867355, + -0.16037584841251373, + -0.040958065539598465, + -0.026471329852938652, + -0.021791888400912285, + -0.03459995985031128, + -0.11171780526638031, + -0.005115435924381018, + 0.10809077322483063, + -0.02281835302710533, + -0.004433023743331432, + -0.05861086770892143, + -0.04210074245929718, + -0.035757701843976974, + -0.06150459870696068, + 0.0029001045040786266, + -0.04663754999637604, + -4.16217092826637e-33, + 0.022092018276453018, + 0.024794410914182663, + -0.019676992669701576, + -0.013452142477035522, + -0.011264611035585403, + -0.022749444469809532, + -0.01807389035820961, + -0.027392538264393806, + -0.10210653394460678, + 0.016329815611243248, + 0.16230085492134094, + -0.042973391711711884, + -0.05552004650235176, + 0.11280402541160583, + 0.0273901280015707, + -0.1074342280626297, + 0.05440600588917732, + 0.0907013937830925, + -0.11550047993659973, + -1.8334679907638929e-06, + -0.020784297958016396, + 0.07518584281206131, + -0.09490244835615158, + -0.0823042020201683, + -0.008196868002414703, + -0.0035129664465785027, + -0.03105231560766697, + -0.0059174103662371635, + -0.07482857257127762, + 0.03180873766541481, + 0.004925377666950226, + 0.06013401597738266, + 0.015861766412854195, + -0.10834163427352905, + -0.017237668856978416, + -0.023791460320353508, + -0.057962432503700256, + -0.060515038669109344, + -0.02530796080827713, + -0.041323207318782806, + 0.005260536912828684, + -0.03988810256123543, + -0.02867933362722397, + -0.028020581230521202, + -0.027001623064279556, + 0.18362842500209808, + -0.048103053122758865, + -0.05145970731973648, + 0.038266219198703766, + -0.03382764384150505, + 0.006895692087709904, + 0.008122598752379417, + 0.029468221589922905, + -0.0012689810246229172, + 0.04395751282572746, + -0.022831453010439873, + -0.08800992369651794, + 0.12110879272222519, + -0.01600087806582451, + 0.001324248849414289, + 0.01474207453429699, + 0.03699054569005966, + -0.010447717271745205, + -0.0035449881106615067, + -0.09784530848264694, + 0.016549140214920044, + -0.11491245776414871, + 0.030451668426394463, + 0.11293846368789673, + 0.019400449469685555, + 0.020045336335897446, + 0.04193182662129402, + 0.08937735855579376, + 0.04078841581940651, + -0.021494269371032715, + 0.01252999622374773, + -0.030239401385188103, + -0.04326049983501434, + 0.05210384353995323, + -0.0697869211435318, + -0.0958680510520935, + 0.05626659840345383, + -0.051943089812994, + -0.0076577188447117805, + 0.012729103676974773, + -0.04269193857908249, + 0.015258160419762135, + -0.013954676687717438, + -0.00979472417384386, + 0.07758206129074097, + -0.06679791212081909, + 0.014028715901076794, + -0.026453716680407524, + 0.01556910015642643, + -0.0940430611371994, + 6.391597626495085e-34, + -0.008225134573876858, + 0.056953851133584976, + -0.06352154165506363, + 0.0006567553500644863, + -0.1273806393146515, + 0.020596357062458992, + 0.03526567295193672, + -0.04698540270328522, + 0.02133856527507305, + 0.05181807279586792, + 0.011361672542989254, + 0.022910479456186295, + -0.05816864222288132, + -0.02338227443397045, + 0.06069684028625488, + -0.003952125087380409, + 0.04591909795999527, + 0.02888508141040802, + -0.012021149508655071, + -0.05926014482975006, + -0.011791946366429329, + -0.08364984393119812, + 0.00818232074379921, + 0.05197818949818611, + 0.029762249439954758, + 0.03307785838842392, + 0.08575228601694107, + 0.03164404258131981, + -0.06101485341787338, + -0.03643884137272835, + 0.009477227926254272, + 0.0010440138867124915, + 0.056647542864084244, + 0.017206883057951927, + -0.053335826843976974, + -0.05813464894890785, + -0.03391331434249878, + -0.06769844144582748, + 0.09869609773159027, + 0.003071725135669112, + 0.035737380385398865, + 0.0234183669090271, + 0.09598860889673233, + 0.04157160595059395, + 0.020903807133436203, + 0.058868829160928726, + 0.036512620747089386, + 0.02544904127717018, + 0.0183123666793108, + 0.004700234159827232, + 0.02227247692644596, + 0.0013617097865790129, + 0.026011472567915916, + -0.02498258650302887, + -0.10178720951080322, + -0.019823461771011353, + 0.05665125325322151, + 0.04206639528274536, + 0.04379802569746971, + -0.02405056171119213, + -0.013623497448861599, + -0.03843339532613754, + 0.00848152581602335, + 0.02623097039759159, + 0.010214830748736858, + -0.049663811922073364, + 0.05519692599773407, + -0.08842216432094574, + 0.03532940521836281, + 0.0034018566366285086, + 0.052145011723041534, + 0.09632625430822372, + 0.03840349242091179, + 0.018668562173843384, + 0.0637047067284584, + -0.052423372864723206, + 0.04721776023507118, + -0.015581885352730751, + -0.037559542804956436, + 0.014286619611084461, + -0.05984504520893097, + -0.0060224574990570545, + 0.010928895324468613, + 0.01486867293715477, + 0.021352527663111687, + 0.03639480099081993, + -0.06680213660001755, + 0.006623489782214165, + 0.01792597584426403, + 0.023770635947585106, + -0.015443118289113045, + 0.00794973224401474, + -0.010764025151729584, + -0.054254043847322464, + -0.05053271725773811, + -2.2026943824471346e-08, + -0.044866397976875305, + -0.03514440730214119, + 0.01804247312247753, + -0.02437134087085724, + -0.019113996997475624, + -0.003735460340976715, + 0.03200877457857132, + -0.01944395713508129, + -0.0029698924627155066, + -0.057638440281152725, + 0.031364452093839645, + 0.06018597260117531, + -0.09066358208656311, + -0.01606414094567299, + 0.1231922060251236, + 0.04095100611448288, + -0.06982839852571487, + 0.028632866218686104, + -0.0413658544421196, + -0.039983220398426056, + -0.022186746820807457, + 0.0026622777804732323, + 0.018505243584513664, + 0.06279046088457108, + -0.03169304504990578, + -0.00019914950826205313, + 0.0189641322940588, + 0.14938591420650482, + 0.07486602663993835, + 0.03844611346721649, + 0.06731808185577393, + 0.021489277482032776, + -0.0011599770514294505, + 0.02344195730984211, + -0.01167142391204834, + -0.013458466157317162, + -0.04752686992287636, + 0.03766902908682823, + 0.003595781046897173, + 0.13543091714382172, + -0.03317134827375412, + 0.017392247915267944, + 0.02054152451455593, + -0.01315606664866209, + -0.016115207225084305, + 0.05315962806344032, + 0.0009473069803789258, + 0.05100655183196068, + -0.07830905169248581, + -0.11456470191478729, + -0.03403079882264137, + 0.050443097949028015, + -0.015561524778604507, + 0.09949366748332977, + -0.017316702753305435, + 0.024926668033003807, + 0.009237900376319885, + 0.002024237532168627, + -0.06437340378761292, + 0.03914743289351463, + 0.12412945926189423, + 0.0774175375699997, + 0.038403552025556564, + 0.08184543997049332 + ], + "arrow-fat-line-down-bold||directional,pointer,pointing,arrowhead,outlined": [ + 0.031150665134191513, + -0.03526270389556885, + -0.05355813354253769, + 0.019124669954180717, + -0.007894586771726608, + -0.00851929560303688, + 0.04596453532576561, + 0.01867702044546604, + -0.010879434645175934, + -0.008264538832008839, + -0.00033017690293490887, + 0.0706750676035881, + 0.017508305609226227, + 0.006291390862315893, + -0.03506121411919594, + 0.014262598007917404, + -0.06461859494447708, + 0.0027175210416316986, + 0.041093312203884125, + 0.03171512484550476, + 0.027860982343554497, + 0.0035025160759687424, + -0.03881014510989189, + 0.03354073688387871, + -0.025549856945872307, + 0.03327910602092743, + 0.09335578978061676, + 0.0011449839221313596, + -0.022517889738082886, + -0.053861454129219055, + -0.07767944782972336, + -0.0418967604637146, + -0.003542422316968441, + 0.046495579183101654, + -0.087625652551651, + -0.041248828172683716, + 0.047611381858587265, + 0.01946587674319744, + -0.04143039137125015, + 0.02291039749979973, + 0.03914114832878113, + -0.012868798337876797, + -0.013887124136090279, + 0.015049796551465988, + 0.058546558022499084, + 0.052125971764326096, + -0.07702458649873734, + -0.021131452172994614, + 0.030620472505688667, + 0.07211579382419586, + -0.06728426367044449, + -0.09417729824781418, + -0.07224825769662857, + 0.009723606519401073, + 0.06537754833698273, + 0.059378523379564285, + -0.019308039918541908, + -0.032694194465875626, + 0.04474903643131256, + 0.01274227537214756, + 0.05887775495648384, + -0.024672800675034523, + 0.029505284503102303, + 0.011735351756215096, + 0.035260457545518875, + -0.01374838687479496, + -0.021624010056257248, + 0.021019326522946358, + 0.036443911492824554, + 0.03102966584265232, + 0.007946968078613281, + -0.04283062368631363, + -0.049405112862586975, + -0.06309105455875397, + -0.017106199637055397, + -0.013813593424856663, + 0.018200673162937164, + 0.049624182283878326, + 0.004334298428148031, + -0.07187756896018982, + -0.0651523545384407, + 0.03730177506804466, + -0.049383342266082764, + 0.07303965091705322, + 0.027344461530447006, + 0.09884019941091537, + -0.05124788358807564, + -0.07505550235509872, + -0.032166242599487305, + -0.02177843451499939, + 0.0013841022737324238, + -0.005700371228158474, + -0.03890835493803024, + -0.002674703486263752, + -0.007676354609429836, + -0.036671385169029236, + 0.08108045160770416, + -0.0941607877612114, + -0.12061053514480591, + 0.06869985163211823, + 0.001633436419069767, + -0.001654709572903812, + 0.042880281805992126, + -0.04253683611750603, + -0.030939023941755295, + -0.0014587492914870381, + -0.02343619056046009, + -0.05407266318798065, + -0.04206189513206482, + -0.02757699228823185, + -0.0354941301047802, + -0.15114030241966248, + -0.04271245002746582, + -0.028156986460089684, + -0.01640462502837181, + -0.03958047181367874, + -0.09571611136198044, + -0.01603202149271965, + 0.10352230817079544, + -0.01040523312985897, + 0.009559167549014091, + -0.035157568752765656, + -0.041503049433231354, + -0.03216690570116043, + -0.05640258640050888, + 0.008352783508598804, + -0.018263094127178192, + -4.033996126278662e-33, + 0.04961436241865158, + 0.02636703848838806, + -0.006110754329711199, + -0.002786975586786866, + 0.005188352894037962, + -0.02216893620789051, + -0.05195688083767891, + -0.04009148105978966, + -0.09746479988098145, + 0.05347706377506256, + 0.15249070525169373, + -0.08216755092144012, + -0.05245570093393326, + 0.1270495504140854, + 0.03130672499537468, + -0.11568666249513626, + 0.05534178391098976, + 0.06726008653640747, + -0.10812835395336151, + 0.006831313017755747, + -0.0453881174325943, + 0.07630769163370132, + -0.07829979062080383, + -0.07457716763019562, + 0.017302662134170532, + 0.009220179170370102, + -0.038318850100040436, + -0.002747765276581049, + -0.08794763684272766, + 0.027650637552142143, + 0.007939214818179607, + 0.027270162478089333, + 0.011101124808192253, + -0.0985834151506424, + -0.03889651224017143, + -0.0030637348536401987, + -0.07971271872520447, + -0.05296708643436432, + -0.020722122862935066, + -0.049321819096803665, + 0.00027813954511657357, + -0.04944346100091934, + -0.03556138649582863, + -0.008282016031444073, + -0.013251865282654762, + 0.16892856359481812, + -0.0485573410987854, + -0.05937523767352104, + 0.010810515843331814, + -0.020519914105534554, + 0.002168340841308236, + 0.0034048939123749733, + 0.027434134855866432, + -0.009862707927823067, + 0.047723837196826935, + -0.01604044809937477, + -0.09602479636669159, + 0.1363203227519989, + -0.023273160681128502, + 0.020010095089673996, + 0.023640958592295647, + 0.020914854481816292, + -0.018289953470230103, + 0.0010732642840594053, + -0.06380502879619598, + 0.02523685246706009, + -0.11204005032777786, + 0.03073473460972309, + 0.1113070547580719, + 0.03415772318840027, + -0.005304819438606501, + 0.04022597894072533, + 0.08082951605319977, + 0.05077531933784485, + -0.01634555123746395, + 0.019373370334506035, + -0.02229064702987671, + -0.049446605145931244, + 0.08069305866956711, + -0.07282055169343948, + -0.10872799903154373, + 0.05523849278688431, + -0.043704163283109665, + -0.02087622694671154, + 0.022888069972395897, + -0.02253287471830845, + 0.029411308467388153, + -0.015267645940184593, + -0.00986868143081665, + 0.05708262324333191, + -0.0841396301984787, + 0.01975146308541298, + -0.009146423079073429, + -0.0014380242209881544, + -0.08185257017612457, + 8.674626683450304e-34, + -0.004206623882055283, + 0.06562146544456482, + -0.06624139100313187, + 0.006307590752840042, + -0.13245974481105804, + 0.033554594963788986, + 0.025490518659353256, + -0.04491966590285301, + 0.030219759792089462, + 0.06890896707773209, + 0.009341901168227196, + 0.028907209634780884, + -0.0416797399520874, + -0.03259760141372681, + 0.04939306899905205, + 0.009096775203943253, + 0.034487221390008926, + 0.026547882705926895, + 0.01568242907524109, + -0.05725153163075447, + -0.01251524779945612, + -0.09570955485105515, + -0.007144780829548836, + 0.03128315880894661, + 0.023237327113747597, + 0.02012731321156025, + 0.08928930759429932, + 0.03846139833331108, + -0.03866386413574219, + -0.03877648711204529, + 0.02059841901063919, + -0.007433636579662561, + 0.03810688480734825, + 0.015529133379459381, + -0.07301473617553711, + -0.043906040489673615, + -0.0385001003742218, + -0.037139929831027985, + 0.07345495373010635, + -0.010033595375716686, + 0.016703054308891296, + 0.03881452605128288, + 0.12234161794185638, + 0.011909271590411663, + 0.0029608523473143578, + 0.06527519226074219, + 0.020192192867398262, + 0.025563878938555717, + 0.002781215123832226, + 0.013210945762693882, + 0.004023990128189325, + -0.0037465840578079224, + 0.012364722788333893, + 0.008200360462069511, + -0.11468848586082458, + -0.015843117609620094, + 0.07690513879060745, + 0.04727236181497574, + 0.018586410209536552, + -0.010417617857456207, + -0.013056034222245216, + -0.043413806706666946, + -0.007232779171317816, + 0.04418448731303215, + 0.02537187933921814, + -0.024289825931191444, + 0.04405931010842323, + -0.08286546915769577, + 0.013493603095412254, + 0.0037218923680484295, + 0.04321332275867462, + 0.09064517915248871, + 0.042951859533786774, + 0.021744504570961, + 0.061536889523267746, + -0.06885562837123871, + 0.03903244808316231, + 0.0007619731477461755, + -0.038506630808115005, + -0.003676133695989847, + -0.039352141320705414, + -0.00129665806889534, + -0.00488240085542202, + 0.03609398379921913, + 0.019489247351884842, + 0.04938630759716034, + -0.09285923838615417, + 0.043772727251052856, + 0.03296329826116562, + 0.025717752054333687, + -0.017648251727223396, + 0.0073508406057953835, + -0.023941218852996826, + -0.03506770357489586, + -0.05568227544426918, + -2.2567489210700842e-08, + -0.041636399924755096, + -0.026995906606316566, + 0.025555318221449852, + -0.0409969799220562, + 0.002147424966096878, + 0.015315834432840347, + 0.032626472413539886, + -0.01949700154364109, + 0.010121800936758518, + -0.07988455146551132, + 0.03450936824083328, + 0.0718977227807045, + -0.10757613927125931, + -0.004837438464164734, + 0.13359840214252472, + 0.04348098486661911, + -0.06373104453086853, + 0.032966818660497665, + -0.031055783852934837, + -0.050455231219530106, + -0.03271292895078659, + -0.0025036106817424297, + 0.0026046461425721645, + 0.08201070874929428, + -0.024080561473965645, + 0.004177645314484835, + 0.009511910378932953, + 0.16800238192081451, + 0.06372161209583282, + 0.04230240359902382, + 0.07920989394187927, + 0.04470507428050041, + 0.020964091643691063, + 0.010176949203014374, + 0.012935948558151722, + -0.0021124714985489845, + -0.03509645164012909, + 0.03156415745615959, + 0.011645370163023472, + 0.13634474575519562, + -0.03295891359448433, + 0.005573923699557781, + 0.01242835447192192, + -0.02283579111099243, + -0.0006080864113755524, + 0.05030207708477974, + -0.00032532549812458456, + 0.036426760256290436, + -0.09447064995765686, + -0.11615730077028275, + -0.03945227712392807, + 0.05456944555044174, + 0.004380295984447002, + 0.08116263896226883, + -0.04348618537187576, + 0.024272741749882698, + 0.017772052437067032, + -0.008229326456785202, + -0.06926896423101425, + 0.026492953300476074, + 0.11256866902112961, + 0.06171058863401413, + 0.03406549617648125, + 0.06493482738733292 + ], + "arrow-fat-line-left-bold||directional,pointer,pointing,arrowhead,outlined": [ + 0.032178159803152084, + -0.04244377464056015, + -0.05549886077642441, + 0.033882468938827515, + 0.0031430067028850317, + -0.011740182526409626, + 0.04446529597043991, + 0.006569010205566883, + -0.020327815786004066, + -0.01823507808148861, + 0.006477905437350273, + 0.06362763792276382, + 0.008656742051243782, + 0.005974193569272757, + -0.04255014285445213, + 0.01867528446018696, + -0.08031228184700012, + -0.023980945348739624, + 0.045361876487731934, + 0.04110029339790344, + 0.01688558980822563, + 0.013065367005765438, + -0.043911997228860855, + 0.03177575021982193, + -0.02311618998646736, + 0.04243147373199463, + 0.10086245089769363, + -0.00382527569308877, + -0.02715289779007435, + -0.061629265546798706, + -0.059323061257600784, + -0.04121123626828194, + -0.015471509657800198, + 0.04479178786277771, + -0.08153726905584335, + -0.046748608350753784, + 0.04051077365875244, + 0.016038065776228905, + -0.04210870340466499, + 0.013965294696390629, + 0.04168974235653877, + -0.017934191972017288, + -0.0071305097080767155, + 0.013324246741831303, + 0.06784925609827042, + 0.04918989539146423, + -0.08451464772224426, + -0.011561919935047626, + 0.04679207503795624, + 0.0715174451470375, + -0.08073084056377411, + -0.10669411718845367, + -0.07404020428657532, + 0.0075940280221402645, + 0.05669933184981346, + 0.056587278842926025, + -0.01882762275636196, + -0.03834213688969612, + 0.048390090465545654, + 0.00831132847815752, + 0.05404184013605118, + -0.018489697948098183, + 0.03835729509592056, + 0.014032730832695961, + 0.028109075501561165, + -0.029625464230775833, + -0.016554171219468117, + 0.02528049610555172, + 0.043313756585121155, + 0.023044494912028313, + 0.010831199586391449, + -0.034367240965366364, + -0.06299074739217758, + -0.06584545969963074, + 0.001157908234745264, + -0.023372957482933998, + 0.015963183715939522, + 0.05611785128712654, + 0.0076334429904818535, + -0.06716320663690567, + -0.0724293440580368, + 0.027367962524294853, + -0.040193118155002594, + 0.057333625853061676, + 0.04512939602136612, + 0.10265075415372849, + -0.05783933401107788, + -0.07397248595952988, + -0.0184215996414423, + -0.013099249452352524, + -0.0007761646993458271, + 0.008466193452477455, + -0.0400087907910347, + -0.016061190515756607, + 0.012054488994181156, + -0.03148921579122543, + 0.06966837495565414, + -0.08278235048055649, + -0.12794901430606842, + 0.07028915733098984, + 0.015855446457862854, + 0.0023256782442331314, + 0.03603605926036835, + -0.03967248648405075, + -0.018555814400315285, + 0.01264192070811987, + -0.031208161264657974, + -0.04140550643205643, + -0.05747118964791298, + -0.030502961948513985, + -0.03168390691280365, + -0.16243521869182587, + -0.04999031126499176, + -0.04004541039466858, + -0.006632327102124691, + -0.043774478137493134, + -0.11251042038202286, + -0.004074733704328537, + 0.11373577266931534, + -0.010622254572808743, + 0.00017707237566355616, + -0.04890333488583565, + -0.03758113458752632, + -0.03184646740555763, + -0.05807113274931908, + 0.01008553709834814, + -0.024952294304966927, + -4.185725263662956e-33, + 0.0273950956761837, + 0.02787083387374878, + -0.006196359172463417, + -0.007083693519234657, + -0.006549837999045849, + -0.018686285242438316, + -0.031157977879047394, + -0.020595185458660126, + -0.09374677389860153, + 0.03998645022511482, + 0.15428432822227478, + -0.07780278474092484, + -0.0496910996735096, + 0.11868138611316681, + 0.035145219415426254, + -0.11237049847841263, + 0.047727473080158234, + 0.07150156795978546, + -0.1110738068819046, + 0.012632809579372406, + -0.0409228578209877, + 0.07642713934183121, + -0.07915808260440826, + -0.07920055836439133, + 0.00771869532763958, + -0.004526592791080475, + -0.02971992827951908, + -0.0011705723591148853, + -0.08114040642976761, + 0.028074830770492554, + 0.01752341166138649, + 0.04343525692820549, + 0.013532648794353008, + -0.09849637746810913, + -0.0358886644244194, + -0.012056604959070683, + -0.06142837554216385, + -0.06552539020776749, + -0.01577032171189785, + -0.038638677448034286, + 0.005900607444345951, + -0.0402664877474308, + -0.021818868815898895, + -0.022586489096283913, + -0.024052804335951805, + 0.17761185765266418, + -0.0551644042134285, + -0.04196653887629509, + 0.03229835629463196, + -0.021072762086987495, + -0.004239312373101711, + 0.014266720972955227, + 0.03873750939965248, + -0.01234021969139576, + 0.04990650713443756, + -0.02204543724656105, + -0.09172618389129639, + 0.12830427289009094, + -0.022032534703612328, + 0.007652599364519119, + 0.022743742913007736, + 0.03780139237642288, + -0.021059304475784302, + 0.0027320461813360453, + -0.07535001635551453, + 0.0169660747051239, + -0.11493159830570221, + 0.028781326487660408, + 0.11634587496519089, + 0.022095754742622375, + 0.00023675360716879368, + 0.03621996194124222, + 0.09184003621339798, + 0.0483185350894928, + -0.020061422139406204, + 0.007014130707830191, + -0.03690604865550995, + -0.03253509849309921, + 0.06454651057720184, + -0.0690433606505394, + -0.10142847150564194, + 0.054232653230428696, + -0.04820960387587547, + -0.009274030104279518, + 0.015633177012205124, + -0.032784510403871536, + 0.027776677161455154, + -0.01740965247154236, + -0.012035399675369263, + 0.06975790858268738, + -0.07050906121730804, + 0.018252473324537277, + -0.023076770827174187, + 0.01529580820351839, + -0.08875808119773865, + 6.583043871093284e-34, + -0.0042217085137963295, + 0.061609432101249695, + -0.06731729209423065, + 0.004147182684391737, + -0.12275804579257965, + 0.029556630179286003, + 0.024530166760087013, + -0.045484475791454315, + 0.03868139535188675, + 0.07503465563058853, + 0.007107734680175781, + 0.03262360766530037, + -0.05138291046023369, + -0.02834932692348957, + 0.05481679365038872, + -0.0009764963760972023, + 0.03343058004975319, + 0.024401521310210228, + 0.0011696508154273033, + -0.06401655822992325, + -0.014264476485550404, + -0.09455331414937973, + 0.011362395249307156, + 0.04048812389373779, + 0.025623396039009094, + 0.020031213760375977, + 0.08633069694042206, + 0.025185799226164818, + -0.05278967320919037, + -0.031454458832740784, + 0.0173195730894804, + -0.007603304926306009, + 0.0524025596678257, + 0.010203121230006218, + -0.05574115738272667, + -0.052963633090257645, + -0.028600072488188744, + -0.04939241334795952, + 0.09290635585784912, + -0.004625037312507629, + 0.02495172992348671, + 0.03488275781273842, + 0.10437972098588943, + 0.02117311954498291, + 0.008316625840961933, + 0.06503277271986008, + 0.034400831907987595, + 0.027939101681113243, + -5.814351879962487e-06, + 0.01586378552019596, + 0.009334024041891098, + 0.018315834924578667, + 0.017859548330307007, + -0.012150268070399761, + -0.10435386747121811, + -0.025391068309545517, + 0.05460270494222641, + 0.041332732886075974, + 0.03575819358229637, + -0.021636556833982468, + -0.009579408913850784, + -0.03819376975297928, + -0.004122654441744089, + 0.02662648633122444, + 0.02478455938398838, + -0.04424440860748291, + 0.05394396930932999, + -0.09233850985765457, + 0.029664184898138046, + 0.0019422571640461683, + 0.05241779983043671, + 0.09740176796913147, + 0.031715601682662964, + 0.021810701116919518, + 0.055503103882074356, + -0.05034640431404114, + 0.044636890292167664, + -0.015344299376010895, + -0.036460135132074356, + 0.008039267733693123, + -0.04509976878762245, + -0.009311981499195099, + 0.00582572678104043, + 0.023649848997592926, + 0.019388670101761818, + 0.0380079448223114, + -0.06431063264608383, + 0.015857446938753128, + 0.031756218522787094, + 0.02161911502480507, + -0.016127830371260643, + 0.00517400074750185, + -0.0321115106344223, + -0.03726894408464432, + -0.05308324843645096, + -2.311140434585468e-08, + -0.04073107987642288, + -0.036543454974889755, + 0.02697618305683136, + -0.03159140795469284, + -0.005749591160565615, + 0.0038206358440220356, + 0.04302191734313965, + -0.02194618247449398, + -0.005859600845724344, + -0.06154022365808487, + 0.03980403020977974, + 0.0753483772277832, + -0.10861961543560028, + -0.012387802824378014, + 0.12914204597473145, + 0.04053119570016861, + -0.06327728182077408, + 0.02854527346789837, + -0.04015786573290825, + -0.04428916797041893, + -0.024590948596596718, + -0.006817830726504326, + 0.011668807826936245, + 0.06758128851652145, + -0.029232241213321686, + 0.0038722646422684193, + 0.02201835997402668, + 0.1574125587940216, + 0.06528152525424957, + 0.039208073168992996, + 0.06983844935894012, + 0.021710317581892014, + 0.01421714574098587, + 0.013155665248632431, + -0.00024255945754703134, + -0.016787294298410416, + -0.045060865581035614, + 0.03772493451833725, + -0.00015376840019598603, + 0.13030335307121277, + -0.027365263551473618, + 0.020667601376771927, + 0.022235659882426262, + -0.021857954561710358, + -0.003499651560559869, + 0.04783713445067406, + -0.002595047000795603, + 0.04114615172147751, + -0.09632696956396103, + -0.11889693140983582, + -0.04878241568803787, + 0.05359983071684837, + -0.009590239264070988, + 0.07696963846683502, + -0.03881754353642464, + 0.029925359413027763, + 0.024856364354491234, + -0.004863574635237455, + -0.0628601536154747, + 0.030803412199020386, + 0.12199225276708603, + 0.08128342032432556, + 0.039355698972940445, + 0.07130802422761917 + ], + "arrow-fat-line-right-bold||directional,pointer,pointing,arrowhead,outlined": [ + 0.029019970446825027, + -0.04457559809088707, + -0.061682336032390594, + 0.034183040261268616, + -0.00135821383446455, + -0.003860494354739785, + 0.04278600215911865, + 0.007935073226690292, + -0.020405791699886322, + -0.018423674628138542, + 0.012004912830889225, + 0.06507410854101181, + 0.008324461989104748, + 0.002764798467978835, + -0.04114628583192825, + 0.017641771584749222, + -0.08302678912878036, + -0.026915572583675385, + 0.04504208639264107, + 0.03362328186631203, + 0.027848931029438972, + 0.011410792358219624, + -0.04129856824874878, + 0.031177394092082977, + -0.02261921390891075, + 0.044771406799554825, + 0.09734984487295151, + -0.003280224511399865, + -0.02793576940894127, + -0.06082035228610039, + -0.06224264204502106, + -0.04088887944817543, + -0.012464719824492931, + 0.04588255658745766, + -0.07802560180425644, + -0.04097842797636986, + 0.0391075573861599, + 0.013354572467505932, + -0.04317857325077057, + 0.00975794531404972, + 0.03926679119467735, + -0.023946156725287437, + -0.009175404906272888, + 0.01196135301142931, + 0.06383709609508514, + 0.051311105489730835, + -0.07996676862239838, + -0.012578146532177925, + 0.04172297194600105, + 0.07307463884353638, + -0.08232207596302032, + -0.10466741025447845, + -0.07684821635484695, + 0.00876078475266695, + 0.06301470100879669, + 0.062197569757699966, + -0.019664745777845383, + -0.03555924445390701, + 0.05088675022125244, + 0.008156401105225086, + 0.04915476590394974, + -0.018904751166701317, + 0.03829340636730194, + 0.01896495744585991, + 0.029112258926033974, + -0.025505514815449715, + -0.018582718446850777, + 0.023763354867696762, + 0.04054735228419304, + 0.027583831921219826, + 0.010853979736566544, + -0.03377648815512657, + -0.06271716207265854, + -0.062069542706012726, + -0.0003671027079690248, + -0.02135254442691803, + 0.014121787622570992, + 0.056184154003858566, + 0.003374060383066535, + -0.0641641616821289, + -0.07413032650947571, + 0.025794869288802147, + -0.04096304252743721, + 0.06415572762489319, + 0.045876793563365936, + 0.10657189041376114, + -0.056930042803287506, + -0.07486502081155777, + -0.012425472028553486, + -0.012829860672354698, + 0.002659720601513982, + 0.00019033302669413388, + -0.040182653814554214, + -0.00838499702513218, + 0.007011130917817354, + -0.03077102079987526, + 0.07045429944992065, + -0.08507630974054337, + -0.12748044729232788, + 0.06431616842746735, + 0.01736542023718357, + -0.0020710467360913754, + 0.0384192131459713, + -0.03478948026895523, + -0.018415452912449837, + 0.009139608591794968, + -0.02809007838368416, + -0.03924982622265816, + -0.054539699107408524, + -0.024835916236042976, + -0.03058360330760479, + -0.16290301084518433, + -0.050302062183618546, + -0.0382426418364048, + -0.009414016269147396, + -0.042572323232889175, + -0.11263005435466766, + -0.00701073557138443, + 0.11188378930091858, + -0.006563177797943354, + -0.0012210917193442583, + -0.041098453104496, + -0.03934421017765999, + -0.03419777750968933, + -0.05884788930416107, + 0.00738925626501441, + -0.023913241922855377, + -4.0467414237774524e-33, + 0.023782776668667793, + 0.026417139917612076, + -0.002436240902170539, + -0.007054172921925783, + -0.005267447791993618, + -0.02402319945394993, + -0.03642633929848671, + -0.02240033820271492, + -0.09333223849534988, + 0.048563212156295776, + 0.15399599075317383, + -0.08161257207393646, + -0.04810139164328575, + 0.12528583407402039, + 0.03616977110505104, + -0.1103457510471344, + 0.046597737818956375, + 0.071632981300354, + -0.10887003690004349, + 0.01301251258701086, + -0.047881510108709335, + 0.07547008246183395, + -0.07591169327497482, + -0.08224943280220032, + 0.008854595012962818, + -0.004439274314790964, + -0.02891773357987404, + -4.642090425477363e-05, + -0.07845305651426315, + 0.02781941182911396, + 0.011955277994275093, + 0.036778587847948074, + 0.017094071954488754, + -0.09284070879220963, + -0.0368497371673584, + -0.015028112567961216, + -0.060235682874917984, + -0.06500983238220215, + -0.018721969798207283, + -0.03876600041985512, + 0.008896452374756336, + -0.03633412718772888, + -0.024044182151556015, + -0.02220829762518406, + -0.017388280481100082, + 0.17373715341091156, + -0.0533585287630558, + -0.03850390389561653, + 0.03191138803958893, + -0.019575834274291992, + -0.0008916797232814133, + 0.01902901940047741, + 0.04319457709789276, + -0.006225925404578447, + 0.05094343051314354, + -0.021565372124314308, + -0.08965691179037094, + 0.1366942822933197, + -0.025899793952703476, + 0.00892950501292944, + 0.020767197012901306, + 0.03788091987371445, + -0.016364989802241325, + 0.0018130977405235171, + -0.07164572924375534, + 0.02111414633691311, + -0.11262805014848709, + 0.028697364032268524, + 0.1192382276058197, + 0.025765979662537575, + -0.001795625896193087, + 0.04014922305941582, + 0.08544984459877014, + 0.051310449838638306, + -0.02377864345908165, + 0.008335821330547333, + -0.04244258999824524, + -0.03293050825595856, + 0.06808045506477356, + -0.06411215662956238, + -0.1055324375629425, + 0.051494620740413666, + -0.05029439553618431, + -0.012118917889893055, + 0.007629729807376862, + -0.0359804630279541, + 0.028552502393722534, + -0.020030377432703972, + -0.006689907051622868, + 0.06790176033973694, + -0.06876187026500702, + 0.022083882242441177, + -0.022339478135108948, + 0.013762286864221096, + -0.08906322717666626, + 6.012067693990513e-34, + -0.0005708431708626449, + 0.06148133799433708, + -0.06015412509441376, + 0.008501661010086536, + -0.125013530254364, + 0.03149425610899925, + 0.02452787384390831, + -0.04748119041323662, + 0.040145739912986755, + 0.07954347133636475, + 0.011145082302391529, + 0.03221213445067406, + -0.052585992962121964, + -0.03108935058116913, + 0.05783214047551155, + 0.00010353545803809538, + 0.030329983681440353, + 0.022603344172239304, + 0.006055917590856552, + -0.06378773599863052, + -0.01267798151820898, + -0.10253479331731796, + 0.009380342438817024, + 0.040455594658851624, + 0.023388177156448364, + 0.02001047506928444, + 0.0882454589009285, + 0.024563057348132133, + -0.048182934522628784, + -0.029322883114218712, + 0.01977725513279438, + -0.01332091260701418, + 0.04134482890367508, + 0.013413830660283566, + -0.05449872463941574, + -0.053538620471954346, + -0.030949590727686882, + -0.0429876483976841, + 0.09295858442783356, + -0.005750590935349464, + 0.027083054184913635, + 0.03513908013701439, + 0.1074502021074295, + 0.01946331188082695, + 0.00246908375993371, + 0.06501632183790207, + 0.03233657777309418, + 0.026510054245591164, + -0.0036563037429004908, + 0.01115960069000721, + 0.005559622775763273, + 0.02058476023375988, + 0.021442199125885963, + -0.010814530774950981, + -0.10398904234170914, + -0.021916130557656288, + 0.05765005201101303, + 0.03675055131316185, + 0.0297224223613739, + -0.021498173475265503, + -0.005583641584962606, + -0.04154704511165619, + -0.008172494359314442, + 0.025754300877451897, + 0.026232698932290077, + -0.04269729554653168, + 0.05116840824484825, + -0.09700993448495865, + 0.025814183056354523, + 0.0019451798871159554, + 0.05005437508225441, + 0.0926440879702568, + 0.028202295303344727, + 0.023293768987059593, + 0.05041234567761421, + -0.0571557953953743, + 0.04456716403365135, + -0.014567248523235321, + -0.03615204244852066, + 0.005486683454364538, + -0.038379620760679245, + -0.004026557318866253, + 0.004153055604547262, + 0.02629554457962513, + 0.015379225835204124, + 0.04107266291975975, + -0.06374046951532364, + 0.017624152824282646, + 0.03474338352680206, + 0.01861252449452877, + -0.015382141806185246, + 0.009939702227711678, + -0.03810260817408562, + -0.033661436289548874, + -0.055488985031843185, + -2.2948466238403853e-08, + -0.046215564012527466, + -0.035896532237529755, + 0.031141085550189018, + -0.03233756497502327, + -0.0030581119935959578, + 0.001073565916158259, + 0.04021648317575455, + -0.020102055743336678, + -0.005016435869038105, + -0.06154568865895271, + 0.03630891814827919, + 0.07562301307916641, + -0.1105417013168335, + -0.009533032774925232, + 0.13522930443286896, + 0.03768283128738403, + -0.06371934711933136, + 0.027158182114362717, + -0.038356248289346695, + -0.04780113697052002, + -0.030069399625062943, + -0.008359720930457115, + 0.010529915802180767, + 0.06539980322122574, + -0.029008857905864716, + 0.00359885161742568, + 0.01965891756117344, + 0.15742921829223633, + 0.05961614474654198, + 0.04154758155345917, + 0.06983010470867157, + 0.02092025987803936, + 0.016890181228518486, + 0.012542868964374065, + 0.005175188183784485, + -0.01538233831524849, + -0.04216116666793823, + 0.0343405045568943, + 0.00488470820710063, + 0.1287962645292282, + -0.02672136202454567, + 0.019959919154644012, + 0.02247566170990467, + -0.022540638223290443, + -0.0034010529052466154, + 0.046410560607910156, + 0.0014293324202299118, + 0.041697908192873, + -0.10109018534421921, + -0.12166828662157059, + -0.05132623761892319, + 0.0572514645755291, + -0.009076595306396484, + 0.07388681918382645, + -0.04259280860424042, + 0.030387181788682938, + 0.024612346664071083, + -0.006725326646119356, + -0.058878522366285324, + 0.03041127137839794, + 0.12327482551336288, + 0.08156810700893402, + 0.03877880796790123, + 0.06808609515428543 + ], + "arrow-fat-line-up-bold||directional,pointer,pointing,arrowhead,caps lock,outlined": [ + 0.009189223870635033, + -0.04403138533234596, + -0.0651773139834404, + -0.004247145727276802, + 0.014157849363982677, + 0.00497101666405797, + 0.0500921867787838, + 0.014986559748649597, + -0.01411957386881113, + -0.0004672883660532534, + 0.020088888704776764, + 0.05905700474977493, + 0.008942315354943275, + -0.016822149977087975, + -0.04305199161171913, + 0.022971751168370247, + -0.07692185789346695, + -0.0007693523657508194, + 0.03505358099937439, + 0.02658875845372677, + 0.024659378454089165, + -0.0026294707786291838, + -0.01699485071003437, + 0.04739953950047493, + -0.018880287185311317, + 0.0467115193605423, + 0.08311634510755539, + 0.022343235090374947, + -0.019488433375954628, + -0.06724053621292114, + -0.08446759730577469, + -0.0537588968873024, + 0.017790617421269417, + 0.031253889203071594, + -0.0790911614894867, + -0.021122168749570847, + 0.0581766776740551, + 0.017340198159217834, + -0.04106490686535835, + 0.007214276120066643, + 0.008633832447230816, + -0.02501530572772026, + -0.0020481881219893694, + 0.017408687621355057, + 0.07996642589569092, + 0.06278295069932938, + -0.09516695141792297, + -0.0007281118887476623, + 0.018879147246479988, + 0.0627831444144249, + -0.06024851277470589, + -0.09248163551092148, + -0.09937816858291626, + 0.016987746581435204, + 0.05543365329504013, + 0.07128685712814331, + -0.02425646036863327, + -0.06051808223128319, + 0.08075981587171555, + 0.011367845349013805, + 0.029678644612431526, + -0.011446447111666203, + 0.040670059621334076, + 0.038440290838479996, + 0.05233127623796463, + 0.006639144383370876, + -0.027992496266961098, + 0.026789505034685135, + 0.0288082342594862, + 0.02447572909295559, + 0.002951989881694317, + -0.043073225766420364, + -0.0810394138097763, + -0.05803655833005905, + -0.01534944772720337, + -0.012729977257549763, + 0.002764700911939144, + 0.02624778263270855, + 0.027807746082544327, + -0.03249048814177513, + -0.09995727241039276, + 0.007274997420608997, + -0.05462506040930748, + 0.08832846581935883, + 0.027460264042019844, + 0.09993038326501846, + -0.051395632326602936, + -0.07472177594900131, + -0.016540026292204857, + -0.00433830451220274, + -0.017658788710832596, + -0.008485487662255764, + -0.008534451015293598, + -0.017691006883978844, + -0.014035358093678951, + -0.010470862500369549, + 0.06791801750659943, + -0.08394946157932281, + -0.12026273459196091, + 0.06977977603673935, + 0.03035302460193634, + -0.013216015882790089, + 0.04606276750564575, + -0.0541379377245903, + -0.024683361873030663, + 0.01240315567702055, + -0.007314636837691069, + -0.06799779832363129, + -0.052497878670692444, + -0.03610040619969368, + -0.029399706050753593, + -0.1324947625398636, + -0.05807845667004585, + -0.03585211932659149, + -0.01669197343289852, + -0.02978554368019104, + -0.10652389377355576, + -0.02037167362868786, + 0.12202145159244537, + 0.0069122957065701485, + 0.006831750739365816, + -0.061562661081552505, + -0.05117860063910484, + -0.0517091304063797, + -0.0655999407172203, + 0.005989012308418751, + -0.037647221237421036, + -3.561869473188444e-33, + 0.0324954092502594, + 0.027234356850385666, + -0.027061281725764275, + 0.01235529687255621, + -0.015372620895504951, + -0.014397412538528442, + -0.045077819377183914, + -0.05424327030777931, + -0.1097472608089447, + 0.07320915907621384, + 0.15351110696792603, + -0.061886049807071686, + -0.04326990991830826, + 0.11072183400392532, + 0.07333448529243469, + -0.11578740924596786, + 0.07374343276023865, + 0.07100469619035721, + -0.094153493642807, + -0.00016928838158492, + -0.03202361240983009, + 0.07544038444757462, + -0.04233018681406975, + -0.058692291378974915, + 0.029172571375966072, + 0.012807388789951801, + -0.04442550241947174, + -0.009493790566921234, + -0.06351491808891296, + 0.03142671287059784, + 0.026869161054491997, + 0.0567249171435833, + -0.0021619675680994987, + -0.06529390066862106, + -0.030415954068303108, + -0.013295679353177547, + -0.07437585294246674, + -0.08559692651033401, + -0.01860802434384823, + -0.05563734844326973, + -0.022672263905405998, + -0.052383530884981155, + -0.05063195899128914, + -0.01871315948665142, + -0.010912006720900536, + 0.15534110367298126, + -0.07450101524591446, + -0.048442915081977844, + 0.021554099395871162, + -0.021626215428113937, + 0.002019945764914155, + 0.011652015149593353, + 0.016420433297753334, + -0.02047065459191799, + 0.03779151290655136, + -0.004232664126902819, + -0.08418773859739304, + 0.14090785384178162, + -0.018565835431218147, + 0.0328364335000515, + 0.006178788375109434, + 0.02831149473786354, + 0.00947836134582758, + 0.017142951488494873, + -0.050577741116285324, + 0.036618124693632126, + -0.09535866230726242, + 0.016605176031589508, + 0.11304228752851486, + 0.024805501103401184, + -0.020674899220466614, + 0.01629926823079586, + 0.041280508041381836, + 0.09091297537088394, + -0.04112961143255234, + 0.003969518467783928, + -0.022568073123693466, + -0.04252041131258011, + 0.04766257852315903, + -0.052147068083286285, + -0.09215717017650604, + 0.0512218251824379, + -0.04041729122400284, + -0.010412503033876419, + 0.018652481958270073, + -0.059013355523347855, + 0.01043163612484932, + -0.02551480196416378, + -0.008806072175502777, + 0.05631696805357933, + -0.04921369627118111, + 0.032932981848716736, + -0.012207773514091969, + -0.0016506151296198368, + -0.08491157740354538, + 6.91781226441549e-34, + 0.005883431062102318, + 0.04560129716992378, + -0.07419497519731522, + -0.002773057436570525, + -0.09923645108938217, + 0.0360851064324379, + 0.0132309440523386, + -0.05072254315018654, + 0.04594559222459793, + 0.024698961526155472, + 0.002479255199432373, + 0.05395057052373886, + -0.05746923014521599, + -0.028420763090252876, + 0.05343204736709595, + 0.007180234417319298, + 0.05343734100461006, + 0.05402367562055588, + 0.017097005620598793, + -0.07031955569982529, + -0.0013182185357436538, + -0.10745483636856079, + -0.030644193291664124, + 0.049530256539583206, + 0.010149922221899033, + 0.023121261969208717, + 0.04338078945875168, + 0.015024085529148579, + -0.029535183683037758, + -0.009304308332502842, + -0.003060102229937911, + 0.01735926978290081, + 0.052789345383644104, + 0.049128495156764984, + -0.053171515464782715, + -0.04807204753160477, + -0.011152726598083973, + -0.04552416130900383, + 0.08590091019868851, + -0.0007478804909624159, + 0.045461248606443405, + 0.03157873451709747, + 0.11814101040363312, + 0.011646643280982971, + 0.0012637315085157752, + 0.03637123852968216, + 0.02244378998875618, + 0.016649261116981506, + -0.024674227461218834, + 0.03485921770334244, + 0.0040682279504835606, + -0.008379931561648846, + 0.00486874021589756, + -0.018693313002586365, + -0.10417241603136063, + -0.013927546329796314, + 0.06561097502708435, + 0.034117817878723145, + 0.04124593362212181, + -0.028469787910580635, + -0.0007051239372231066, + -0.05069518834352493, + -0.011354348622262478, + 0.05215184763073921, + 0.025654364377260208, + -0.042965035885572433, + 0.044065847992897034, + -0.1199260875582695, + -0.018045231699943542, + 0.008205185644328594, + 0.06802168488502502, + 0.05179127678275108, + 0.04026484116911888, + 0.026885148137807846, + 0.04006657004356384, + -0.058611925691366196, + 0.034404683858156204, + -0.012841052375733852, + -0.03733310475945473, + -0.007634025998413563, + -0.04210870712995529, + 0.015662159770727158, + -0.009355724789202213, + 0.0758315771818161, + 0.00962304137647152, + 0.06400761008262634, + -0.05445195361971855, + 0.03995976224541664, + 0.028062719851732254, + -0.002608782844617963, + -0.0015100492164492607, + 0.020582599565386772, + -0.04681964963674545, + -0.0014534496003761888, + -0.04107709601521492, + -2.3518287761703505e-08, + -0.02783765271306038, + -0.0300829466432333, + 0.01307619083672762, + -0.027494575828313828, + 0.015209791250526905, + 0.03857527673244476, + 0.029765421524643898, + -0.03694983571767807, + -0.003087091026827693, + -0.07771515846252441, + 0.04663568362593651, + 0.09480820596218109, + -0.11457442492246628, + -0.02497580647468567, + 0.10144813358783722, + 0.041683025658130646, + -0.07182327657938004, + 0.049062617123126984, + -0.044285815209150314, + -0.05151020362973213, + -0.026660311967134476, + 0.04438091069459915, + 0.03203404322266579, + 0.05740691348910332, + -0.05908733606338501, + 0.0030051462817937136, + 0.008390219882130623, + 0.1476498246192932, + 0.06712543964385986, + 0.0437634252011776, + 0.08029579371213913, + 0.02434380352497101, + 0.027698557823896408, + -0.021958058699965477, + 0.008362309075891972, + 0.02682584896683693, + -0.050591472536325455, + 0.03678722679615021, + 0.02107846736907959, + 0.13131308555603027, + -0.013298142701387405, + -0.003801560029387474, + 0.0017108333995565772, + -0.03087421879172325, + -0.01605243608355522, + 0.07608384639024734, + -0.0005114061059430242, + 0.04371848329901695, + -0.1094079464673996, + -0.10076958686113358, + -0.04731496423482895, + 0.04988997429609299, + -0.002811027690768242, + 0.06751612573862076, + -0.051424238830804825, + 0.05517778918147087, + 0.038669243454933167, + -0.005016429349780083, + -0.02767159603536129, + 0.02303832210600376, + 0.11708319187164307, + 0.06335987895727158, + 0.030009597539901733, + 0.05571096017956734 + ], + "arrow-fat-lines-down-bold||directional,pointer,pointing,arrowhead,outlined": [ + 0.027097664773464203, + -0.03616718947887421, + -0.046248920261859894, + 0.01270829327404499, + -0.0060993763618171215, + -0.013754613697528839, + 0.04437105357646942, + 0.015923868864774704, + -0.01487679872661829, + -0.012732920236885548, + -0.00041815772419795394, + 0.06692090630531311, + 0.014651879668235779, + 0.008780794218182564, + -0.039351459592580795, + 0.01906079426407814, + -0.06933946907520294, + -0.0015478478744626045, + 0.039498746395111084, + 0.029227979481220245, + 0.030550559982657433, + 0.0016129051800817251, + -0.04749487712979317, + 0.035042837262153625, + -0.02078535035252571, + 0.041025035083293915, + 0.08796427398920059, + 0.0018508556531742215, + -0.020674508064985275, + -0.053123507648706436, + -0.07961969822645187, + -0.03266614302992821, + -0.0020882131066173315, + 0.05448877066373825, + -0.07800821959972382, + -0.04322526231408119, + 0.04453622177243233, + 0.021310612559318542, + -0.049066949635744095, + 0.02266630157828331, + 0.03558216616511345, + -0.012475953437387943, + -0.018073387444019318, + 0.017710665240883827, + 0.06353893876075745, + 0.05024687945842743, + -0.07738257199525833, + -0.022128604352474213, + 0.028789738193154335, + 0.07014988362789154, + -0.0746392011642456, + -0.0900348648428917, + -0.07995215803384781, + 0.005753397475928068, + 0.06627871841192245, + 0.05400953069329262, + -0.01716981828212738, + -0.038947299122810364, + 0.05394702032208443, + 0.013958465307950974, + 0.06353628635406494, + -0.01922925002872944, + 0.030343452468514442, + 0.012258525937795639, + 0.03214503079652786, + -0.012110439129173756, + -0.02191999740898609, + 0.025946855545043945, + 0.04285063594579697, + 0.03662152215838432, + 0.0036088484339416027, + -0.03497108072042465, + -0.051963042467832565, + -0.05590488389134407, + -0.015199278481304646, + -0.019017290323972702, + 0.008813134394586086, + 0.0432778000831604, + 0.0017811316065490246, + -0.0772961974143982, + -0.07046230137348175, + 0.03181145340204239, + -0.047024425119161606, + 0.07397955656051636, + 0.025517936795949936, + 0.10219706594944, + -0.05249914526939392, + -0.0782521665096283, + -0.029273781925439835, + -0.025423945859074593, + -0.0014196352567523718, + -0.009849882684648037, + -0.03917798399925232, + -0.0014642319874837995, + -0.007150242105126381, + -0.03507591784000397, + 0.08429498970508575, + -0.09975047409534454, + -0.11993084102869034, + 0.07114613801240921, + 0.0037250008899718523, + -0.003278091549873352, + 0.04981829598546028, + -0.04107373580336571, + -0.035301920026540756, + 0.010271676816046238, + -0.020261425524950027, + -0.05480766296386719, + -0.044299203902482986, + -0.02511713281273842, + -0.03341451659798622, + -0.15910182893276215, + -0.04465048760175705, + -0.033936697989702225, + -0.015633052214980125, + -0.04395896568894386, + -0.09596720337867737, + -0.015184874646365643, + 0.10339518636465073, + -0.00447035999968648, + 0.012763537466526031, + -0.035380009561777115, + -0.035876162350177765, + -0.031328946352005005, + -0.05295848101377487, + 0.009341190569102764, + -0.019267287105321884, + -3.830728541108518e-33, + 0.04895684868097305, + 0.026849564164876938, + -0.005557020660489798, + 0.0021977636497467756, + 0.009086555801331997, + -0.022249070927500725, + -0.0506662093102932, + -0.0442502424120903, + -0.09048239886760712, + 0.06173308566212654, + 0.1439308226108551, + -0.07607682049274445, + -0.05393219739198685, + 0.1356724351644516, + 0.0379311740398407, + -0.11631344258785248, + 0.05629778653383255, + 0.061224810779094696, + -0.10647150874137878, + 0.010375907644629478, + -0.05167284980416298, + 0.07352304458618164, + -0.07041902840137482, + -0.07411884516477585, + 0.023923952132463455, + 0.0088192168623209, + -0.038738470524549484, + -0.00020471590687520802, + -0.0788593590259552, + 0.026532461866736412, + 0.010626750998198986, + 0.0320235937833786, + 0.017018018290400505, + -0.09637428820133209, + -0.0407344326376915, + 0.007414643652737141, + -0.08037079870700836, + -0.056111641228199005, + -0.015914957970380783, + -0.04656665027141571, + -0.002417977899312973, + -0.04873203486204147, + -0.03441306948661804, + -0.011093633249402046, + -0.00787391234189272, + 0.1673412322998047, + -0.04838421195745468, + -0.048612307757139206, + 0.006941594649106264, + -0.019173387438058853, + 0.00435923645272851, + 0.007627063896507025, + 0.026569010689854622, + -0.016896003857254982, + 0.04696090146899223, + -0.015649905428290367, + -0.09474936872720718, + 0.13301722705364227, + -0.02551868185400963, + 0.024592099711298943, + 0.02339773438870907, + 0.017375845462083817, + -0.02188778482377529, + 0.0009940408635884523, + -0.05954216420650482, + 0.02289593033492565, + -0.11435984820127487, + 0.031031982973217964, + 0.11014901101589203, + 0.030135681852698326, + -0.011476519517600536, + 0.04381399601697922, + 0.08538100868463516, + 0.04955334588885307, + -0.01818717271089554, + 0.01645379327237606, + -0.025384511798620224, + -0.03858257085084915, + 0.0726165696978569, + -0.07574311643838882, + -0.1066712886095047, + 0.04740038886666298, + -0.0427204892039299, + -0.028879042714834213, + 0.01916203461587429, + -0.024706918746232986, + 0.03157775104045868, + -0.019554095342755318, + -0.010938973166048527, + 0.0621052049100399, + -0.08193621039390564, + 0.02330862730741501, + -0.008369441144168377, + -0.006723722442984581, + -0.08316199481487274, + 6.296797680521114e-34, + -0.005838965065777302, + 0.07200654596090317, + -0.07346087694168091, + 0.010126933455467224, + -0.1288091093301773, + 0.038107980042696, + 0.024803126230835915, + -0.038162559270858765, + 0.035300031304359436, + 0.06298403441905975, + 0.004027793649584055, + 0.03667237237095833, + -0.04060479626059532, + -0.03793114051222801, + 0.05149452015757561, + 0.006598316133022308, + 0.039041824638843536, + 0.026134362444281578, + 0.014338654465973377, + -0.06380445510149002, + -0.007732887752354145, + -0.09053948521614075, + -0.005651325453072786, + 0.03081064112484455, + 0.02428598515689373, + 0.01854991540312767, + 0.08829560875892639, + 0.028316093608736992, + -0.03660787642002106, + -0.03655451163649559, + 0.025268012657761574, + -0.012530344538390636, + 0.03367564454674721, + 0.011700375005602837, + -0.06746737658977509, + -0.04804883152246475, + -0.03083372861146927, + -0.04003145173192024, + 0.07124480605125427, + -0.010476422496140003, + 0.018566271290183067, + 0.04048018157482147, + 0.12118043005466461, + 0.005473049823194742, + 0.0023215964902192354, + 0.06418762356042862, + 0.01459476351737976, + 0.026393039152026176, + -0.004925513174384832, + 0.014303270727396011, + 0.002440212294459343, + -0.003911853767931461, + 0.010686291381716728, + -0.00030467272154055536, + -0.11312758922576904, + -0.021244794130325317, + 0.0787859559059143, + 0.046864114701747894, + 0.02321508526802063, + -0.011137174442410469, + -0.016252033412456512, + -0.04746513441205025, + -0.016824377700686455, + 0.034685056656599045, + 0.02559662237763405, + -0.02671472541987896, + 0.03954087942838669, + -0.0903061032295227, + 0.02191433124244213, + 0.007835990749299526, + 0.04816742613911629, + 0.08095619082450867, + 0.03308466821908951, + 0.017023209482431412, + 0.06375648081302643, + -0.06568758934736252, + 0.04034492000937462, + 0.002029437106102705, + -0.03854085132479668, + -0.005343437194824219, + -0.03649443760514259, + -0.003936335910111666, + 0.0009720264351926744, + 0.04556389898061752, + 0.02243678830564022, + 0.0551423504948616, + -0.09220743179321289, + 0.04183937981724739, + 0.0384797528386116, + 0.029969312250614166, + -0.015393612906336784, + 0.006954386830329895, + -0.018987391144037247, + -0.031073840335011482, + -0.05417240783572197, + -2.2347867556504752e-08, + -0.04164416342973709, + -0.0248667411506176, + 0.024245209991931915, + -0.03950261324644089, + 0.0037778583355247974, + 0.014044709503650665, + 0.03702313080430031, + -0.006953802425414324, + 0.008668890222907066, + -0.07931936532258987, + 0.0451202392578125, + 0.07856183499097824, + -0.11374562978744507, + -0.004799209535121918, + 0.1409570425748825, + 0.04256479814648628, + -0.057801321148872375, + 0.031179135665297508, + -0.03342176601290703, + -0.05063696578145027, + -0.034893229603767395, + -0.002381093567237258, + 3.043982906092424e-05, + 0.08679088950157166, + -0.030562428757548332, + 0.004247752018272877, + 0.014357042498886585, + 0.16100652515888214, + 0.056284476071596146, + 0.04754696041345596, + 0.07771825790405273, + 0.04110592603683472, + 0.029629012569785118, + 0.004267064854502678, + 0.017022304236888885, + -0.0036731285508722067, + -0.0350739024579525, + 0.034444428980350494, + 0.003365488722920418, + 0.12651152908802032, + -0.03642914816737175, + 0.003982105292379856, + 0.01586327515542507, + -0.02688617631793022, + -0.0009912436362355947, + 0.04455418884754181, + 0.0012586580123752356, + 0.03598329797387123, + -0.1007673591375351, + -0.11795327067375183, + -0.047685932368040085, + 0.058366525918245316, + -4.872226782026701e-05, + 0.07735244184732437, + -0.052081894129514694, + 0.01965436153113842, + 0.022753940895199776, + -0.005086587741971016, + -0.060239989310503006, + 0.02744295261800289, + 0.10664629191160202, + 0.06815365701913834, + 0.03363043814897537, + 0.06354334205389023 + ], + "arrow-fat-lines-left-bold||directional,pointer,pointing,arrowhead,outlined": [ + 0.02639687806367874, + -0.04367524012923241, + -0.046653054654598236, + 0.030395137146115303, + 0.00428395951166749, + -0.013341893441975117, + 0.04197538644075394, + 0.004878465086221695, + -0.022799720987677574, + -0.021722009405493736, + 0.003145434893667698, + 0.06261598318815231, + 0.004351323004812002, + 0.007399233989417553, + -0.04535379260778427, + 0.023983184248209, + -0.08534367382526398, + -0.027165662497282028, + 0.042160939425230026, + 0.039946094155311584, + 0.017095904797315598, + 0.009643841534852982, + -0.05088850110769272, + 0.03360021859407425, + -0.01960880495607853, + 0.05082742124795914, + 0.0959554985165596, + -0.0011004561092704535, + -0.02541518025100231, + -0.060776758939027786, + -0.06256777048110962, + -0.033378783613443375, + -0.01223636232316494, + 0.051423825323581696, + -0.07273629307746887, + -0.046798769384622574, + 0.03907230868935585, + 0.016189664602279663, + -0.05056487023830414, + 0.01447953563183546, + 0.03902082517743111, + -0.018404532223939896, + -0.011822921223938465, + 0.015000611543655396, + 0.06914013624191284, + 0.04874047636985779, + -0.08199591189622879, + -0.014036785811185837, + 0.04621124267578125, + 0.07026699930429459, + -0.0832005962729454, + -0.10023072361946106, + -0.08063691109418869, + 0.004561029840260744, + 0.060009364038705826, + 0.051807984709739685, + -0.015466050244867802, + -0.04536174610257149, + 0.058783795684576035, + 0.011466257274150848, + 0.05963810160756111, + -0.010483924299478531, + 0.03618282452225685, + 0.013080677948892117, + 0.02364858239889145, + -0.024526342749595642, + -0.01538749597966671, + 0.02871406264603138, + 0.05017552152276039, + 0.02781069278717041, + 0.0068992795422673225, + -0.025511961430311203, + -0.06261070817708969, + -0.05952095612883568, + 0.0009121804614551365, + -0.02541191130876541, + 0.0056987605057656765, + 0.0510706752538681, + 0.003205448854714632, + -0.07323794811964035, + -0.075938381254673, + 0.025064578279852867, + -0.038708917796611786, + 0.059799302369356155, + 0.03925999253988266, + 0.10667447000741959, + -0.05692901089787483, + -0.07912183552980423, + -0.016962459310889244, + -0.020515985786914825, + -0.004979852121323347, + 0.005338949151337147, + -0.0399325005710125, + -0.013024184852838516, + 0.009607846848666668, + -0.030258769169449806, + 0.07016819715499878, + -0.08805210143327713, + -0.12671200931072235, + 0.07171425968408585, + 0.016216933727264404, + 0.0011156918480992317, + 0.047418683767318726, + -0.03634916990995407, + -0.02314567379653454, + 0.023479586467146873, + -0.027419613674283028, + -0.04327559098601341, + -0.05920960381627083, + -0.02687295526266098, + -0.028790870681405067, + -0.16808094084262848, + -0.0509069450199604, + -0.041563164442777634, + -0.00759385759010911, + -0.04692567139863968, + -0.11238770931959152, + -0.00541896466165781, + 0.11270800977945328, + -0.005889531224966049, + 0.005749229807406664, + -0.04632054269313812, + -0.030337724834680557, + -0.03370615467429161, + -0.05288943275809288, + 0.007147497963160276, + -0.026283103972673416, + -3.990945482389719e-33, + 0.028375403955578804, + 0.025053033605217934, + -0.003755411133170128, + -0.0009531923569738865, + 0.00022625354176852852, + -0.019381510093808174, + -0.03470822051167488, + -0.02716916799545288, + -0.08559536933898926, + 0.04884053394198418, + 0.14427660405635834, + -0.07538049668073654, + -0.051820892840623856, + 0.12649010121822357, + 0.04046948254108429, + -0.11302126944065094, + 0.0521310493350029, + 0.06358355283737183, + -0.1111072227358818, + 0.01623711735010147, + -0.049127377569675446, + 0.07411732524633408, + -0.07089564204216003, + -0.0795932337641716, + 0.014719647355377674, + -0.001021364238113165, + -0.030951697379350662, + 0.0013843320775777102, + -0.07160194218158722, + 0.02567955106496811, + 0.02044045925140381, + 0.046126410365104675, + 0.0212226714938879, + -0.09516551345586777, + -0.044700492173433304, + 0.0010238280519843102, + -0.0624505914747715, + -0.06614716351032257, + -0.0129222571849823, + -0.0371612012386322, + 0.0038197198882699013, + -0.03992115333676338, + -0.02218940295279026, + -0.02258439175784588, + -0.019123926758766174, + 0.17501279711723328, + -0.05224095657467842, + -0.03336317092180252, + 0.027296684682369232, + -0.019639749079942703, + -0.004041521809995174, + 0.01726321130990982, + 0.038691624999046326, + -0.018779605627059937, + 0.04913780838251114, + -0.020493289455771446, + -0.09261434525251389, + 0.1285986602306366, + -0.02359296940267086, + 0.014636371284723282, + 0.021893519908189774, + 0.033423785120248795, + -0.02658369205892086, + 0.0019848875235766172, + -0.06891126185655594, + 0.015504234470427036, + -0.11618730425834656, + 0.03223909065127373, + 0.11431734263896942, + 0.018886763602495193, + -0.0069333151914179325, + 0.03854552283883095, + 0.09660118073225021, + 0.04721572622656822, + -0.019536394625902176, + 0.006459029857069254, + -0.040945541113615036, + -0.02387837879359722, + 0.059571970254182816, + -0.07068560272455215, + -0.09730543196201324, + 0.047489769756793976, + -0.04694298282265663, + -0.018443753942847252, + 0.015575474128127098, + -0.032962098717689514, + 0.031507235020399094, + -0.02377769909799099, + -0.0126121137291193, + 0.07449078559875488, + -0.06910776346921921, + 0.021882856264710426, + -0.020288649946451187, + 0.009332815185189247, + -0.09064503759145737, + 4.364752410444718e-34, + -0.007114839274436235, + 0.06875305622816086, + -0.07512408494949341, + 0.007899458520114422, + -0.1204443946480751, + 0.03648878633975983, + 0.023209011182188988, + -0.03803715854883194, + 0.04026386886835098, + 0.07114064693450928, + 0.0020731540862470865, + 0.03983056917786598, + -0.05279698967933655, + -0.035555753856897354, + 0.05586257576942444, + -0.001820821431465447, + 0.03815268725156784, + 0.02312444895505905, + 0.002287505427375436, + -0.07112747430801392, + -0.00843073334544897, + -0.08860932290554047, + 0.009296603500843048, + 0.037673793733119965, + 0.026073390617966652, + 0.01906721293926239, + 0.08684362471103668, + 0.01700805127620697, + -0.048590853810310364, + -0.02938735857605934, + 0.02266181819140911, + -0.0133169274777174, + 0.04575592651963234, + 0.008636259473860264, + -0.05235998332500458, + -0.05706571042537689, + -0.02502693422138691, + -0.04754740744829178, + 0.0900980606675148, + -0.006990852765738964, + 0.025371341034770012, + 0.03658432513475418, + 0.10617026686668396, + 0.011630591005086899, + 0.006364138796925545, + 0.06347109377384186, + 0.02820470929145813, + 0.029370689764618874, + -0.008745324797928333, + 0.013658165000379086, + 0.005583325866609812, + 0.01820181868970394, + 0.01484466902911663, + -0.0204791110008955, + -0.10327664017677307, + -0.027407214045524597, + 0.05961928144097328, + 0.04257642850279808, + 0.039800941944122314, + -0.02090645395219326, + -0.011782364919781685, + -0.04165896028280258, + -0.01761729083955288, + 0.016977038234472275, + 0.02700401470065117, + -0.04454406723380089, + 0.04923942685127258, + -0.10065902769565582, + 0.0358804427087307, + 0.00524185923859477, + 0.055238910019397736, + 0.08591187745332718, + 0.02177196927368641, + 0.01526758074760437, + 0.05974183976650238, + -0.0469917431473732, + 0.044473711401224136, + -0.010991791263222694, + -0.03555166348814964, + 0.007419310510158539, + -0.04071088135242462, + -0.012766240164637566, + 0.011268343776464462, + 0.03325044363737106, + 0.02285909280180931, + 0.04567042738199234, + -0.06509802490472794, + 0.017642507329583168, + 0.03768710419535637, + 0.024299778044223785, + -0.01258865837007761, + 0.005486138630658388, + -0.025869987905025482, + -0.030761688947677612, + -0.05075819045305252, + -2.300628842988317e-08, + -0.03834810107946396, + -0.03349367901682854, + 0.023530742153525352, + -0.03059914894402027, + -0.005325152538716793, + 0.002160467905923724, + 0.04515215754508972, + -0.008937842212617397, + -0.00838476698845625, + -0.06342612206935883, + 0.04686322808265686, + 0.08084538578987122, + -0.11659758538007736, + -0.008611857891082764, + 0.13355208933353424, + 0.03995232284069061, + -0.062417224049568176, + 0.026662645861506462, + -0.04129122942686081, + -0.04628916084766388, + -0.02788705937564373, + -0.007599500007927418, + 0.009554889053106308, + 0.07541874051094055, + -0.03590161353349686, + 0.0047728028148412704, + 0.026403294876217842, + 0.15130281448364258, + 0.05522240698337555, + 0.04701586812734604, + 0.06899859756231308, + 0.019795572385191917, + 0.02427555061876774, + 0.009257430210709572, + 0.007746859919279814, + -0.022021431475877762, + -0.04362287372350693, + 0.03853096067905426, + -0.005693091079592705, + 0.12014584243297577, + -0.03061668947339058, + 0.015560051426291466, + 0.026050733402371407, + -0.02649576961994171, + -0.002720480551943183, + 0.042696837335824966, + -0.00188342051114887, + 0.043034255504608154, + -0.1034383475780487, + -0.12097375839948654, + -0.05742958188056946, + 0.05600697919726372, + -0.012327857315540314, + 0.07123550772666931, + -0.047734394669532776, + 0.021092724055051804, + 0.028811238706111908, + -0.001492415671236813, + -0.0522722527384758, + 0.031249841675162315, + 0.11326254159212112, + 0.08508367091417313, + 0.03930177539587021, + 0.06930192559957504 + ], + "arrow-fat-lines-right-bold||directional,pointer,pointing,arrowhead,outlined": [ + 0.024011902511119843, + -0.04575783386826515, + -0.05272962898015976, + 0.0290435329079628, + -0.0009964496130123734, + -0.0058692749589681625, + 0.04070792719721794, + 0.006959731690585613, + -0.023124178871512413, + -0.021320387721061707, + 0.008776667527854443, + 0.06349655240774155, + 0.004057431593537331, + 0.00569893466308713, + -0.04420007765293121, + 0.023188279941678047, + -0.08679351210594177, + -0.028303414583206177, + 0.043234385550022125, + 0.032358430325984955, + 0.02901269495487213, + 0.007667343597859144, + -0.04847784340381622, + 0.03207293152809143, + -0.018447145819664, + 0.053045254200696945, + 0.09172409772872925, + -0.001172863063402474, + -0.024807555601000786, + -0.05987093225121498, + -0.06561446189880371, + -0.032408200204372406, + -0.008540167473256588, + 0.05317207798361778, + -0.06950952112674713, + -0.04170660674571991, + 0.03672485053539276, + 0.013798071071505547, + -0.05175004526972771, + 0.011242841370403767, + 0.03623359650373459, + -0.023822473362088203, + -0.013332296162843704, + 0.013844379223883152, + 0.06457401067018509, + 0.05105371028184891, + -0.07739576697349548, + -0.014340964145958424, + 0.04056120663881302, + 0.07101142406463623, + -0.08507818728685379, + -0.09858297556638718, + -0.08445165306329727, + 0.00554342195391655, + 0.06547680497169495, + 0.0578731968998909, + -0.015806173905730247, + -0.04228467121720314, + 0.0615825280547142, + 0.011851283721625805, + 0.05495348200201988, + -0.011331754736602306, + 0.035379111766815186, + 0.01865536719560623, + 0.025184134021401405, + -0.019140511751174927, + -0.017071567475795746, + 0.02741670235991478, + 0.04661187902092934, + 0.03221964091062546, + 0.006577709224075079, + -0.025641009211540222, + -0.06229247525334358, + -0.055987294763326645, + -0.0004469179839361459, + -0.022853564471006393, + 0.004826726857572794, + 0.050117600709199905, + -0.0014852856984362006, + -0.07065276056528091, + -0.0777982547879219, + 0.024112511426210403, + -0.03834328427910805, + 0.06622496992349625, + 0.03929106146097183, + 0.10940771549940109, + -0.055838003754615784, + -0.07921557873487473, + -0.010754384100437164, + -0.01989714428782463, + -0.0019757093396037817, + -0.0038993563503026962, + -0.04078899696469307, + -0.005442140158265829, + 0.0037883110344409943, + -0.029842756688594818, + 0.07101496309041977, + -0.09120731055736542, + -0.12531492114067078, + 0.06541988253593445, + 0.018442075699567795, + -0.0040223547257483006, + 0.04925905913114548, + -0.03325771167874336, + -0.02285873331129551, + 0.019680209457874298, + -0.02413453906774521, + -0.04122937098145485, + -0.05544910952448845, + -0.022335132583975792, + -0.02800554223358631, + -0.16853053867816925, + -0.05066164582967758, + -0.04002675414085388, + -0.01168092992156744, + -0.04506366699934006, + -0.11310174316167831, + -0.008675786666572094, + 0.11167008429765701, + -0.00201047258451581, + 0.0044926065020263195, + -0.03842415660619736, + -0.03156258165836334, + -0.03575974702835083, + -0.054615266621112823, + 0.005356485024094582, + -0.026267044246196747, + -3.8246064195926416e-33, + 0.025178654119372368, + 0.024815421551465988, + -0.00044706303742714226, + -0.0006654824828729033, + 0.0008912779157981277, + -0.02501911297440529, + -0.039517875760793686, + -0.030104780569672585, + -0.08486513048410416, + 0.05783356726169586, + 0.1434706598520279, + -0.0776401236653328, + -0.050471678376197815, + 0.1337648630142212, + 0.042376041412353516, + -0.11120400577783585, + 0.05020076781511307, + 0.06307827681303024, + -0.10909083485603333, + 0.01637844555079937, + -0.056030288338661194, + 0.07359255105257034, + -0.06725530326366425, + -0.08215568959712982, + 0.016517143696546555, + -0.0008902776753529906, + -0.02983274683356285, + 0.0016508825356140733, + -0.06908842921257019, + 0.025669101625680923, + 0.014048573561012745, + 0.03970031812787056, + 0.024721285328269005, + -0.08947299420833588, + -0.04397571459412575, + -0.0015963254263624549, + -0.06290645897388458, + -0.06616343557834625, + -0.015328165143728256, + -0.03685062751173973, + 0.006020992062985897, + -0.03569028526544571, + -0.024732572957873344, + -0.022050321102142334, + -0.011320617981255054, + 0.1708822101354599, + -0.05123526230454445, + -0.029419928789138794, + 0.026422642171382904, + -0.017722904682159424, + -1.280430069527938e-06, + 0.021889669820666313, + 0.04259023442864418, + -0.012597923167049885, + 0.05016656592488289, + -0.020299162715673447, + -0.09010208398103714, + 0.13634522259235382, + -0.0270229484885931, + 0.016462109982967377, + 0.020192492753267288, + 0.03385007008910179, + -0.021507708355784416, + 0.0007347676437348127, + -0.06555052846670151, + 0.019670523703098297, + -0.11367233097553253, + 0.031042126938700676, + 0.11681545525789261, + 0.022307856008410454, + -0.009918575175106525, + 0.04328171908855438, + 0.09032528102397919, + 0.05028817057609558, + -0.023739982396364212, + 0.0072835106402635574, + -0.04598066210746765, + -0.0242950227111578, + 0.06149685010313988, + -0.06550949811935425, + -0.10168074816465378, + 0.04438580945134163, + -0.049205005168914795, + -0.022437842562794685, + 0.006883770693093538, + -0.03672293573617935, + 0.0327669121325016, + -0.02622181922197342, + -0.007763332687318325, + 0.07140108942985535, + -0.06748397648334503, + 0.02620813623070717, + -0.019059540703892708, + 0.00781923532485962, + -0.09079554677009583, + 3.7701205574753497e-34, + -0.0032957675866782665, + 0.06814798712730408, + -0.06813459098339081, + 0.012715214863419533, + -0.12190210819244385, + 0.03730420768260956, + 0.023921027779579163, + -0.03944869711995125, + 0.04173204302787781, + 0.07462485879659653, + 0.005787801928818226, + 0.03979000076651573, + -0.05357614904642105, + -0.038474176079034805, + 0.05832052603363991, + -0.0016498321201652288, + 0.035221561789512634, + 0.021890904754400253, + 0.006756993476301432, + -0.070999376475811, + -0.006457917392253876, + -0.09664253890514374, + 0.006186795420944691, + 0.03781750053167343, + 0.024313785135746002, + 0.01929372176527977, + 0.08821208775043488, + 0.01578463241457939, + -0.04468046501278877, + -0.026685431599617004, + 0.025125140324234962, + -0.01967315375804901, + 0.0351136215031147, + 0.012143869884312153, + -0.05054178833961487, + -0.057697076350450516, + -0.02591017447412014, + -0.04235929623246193, + 0.08890842646360397, + -0.0070752594619989395, + 0.02713819406926632, + 0.036535702645778656, + 0.10861115902662277, + 0.010780815966427326, + 0.0011098256800323725, + 0.06359165906906128, + 0.025042667984962463, + 0.027448158711194992, + -0.013120448216795921, + 0.008633334189653397, + 0.001233079587109387, + 0.02021566592156887, + 0.01797310821712017, + -0.02028687670826912, + -0.10248912870883942, + -0.025692740455269814, + 0.061973173171281815, + 0.03800087422132492, + 0.034069404006004333, + -0.020435888320207596, + -0.008238375186920166, + -0.04579605534672737, + -0.021548829972743988, + 0.01577979512512684, + 0.027284210547804832, + -0.042743414640426636, + 0.0466005876660347, + -0.10506103187799454, + 0.03161931037902832, + 0.005936089903116226, + 0.05356448143720627, + 0.08087226748466492, + 0.01880166120827198, + 0.016244180500507355, + 0.053867802023887634, + -0.053845468908548355, + 0.04523782432079315, + -0.010320086032152176, + -0.035646505653858185, + 0.003962098155170679, + -0.03470011055469513, + -0.00712400209158659, + 0.009752667509019375, + 0.03700629249215126, + 0.019046111032366753, + 0.04908456280827522, + -0.06511065363883972, + 0.01955435611307621, + 0.04114013910293579, + 0.02244681864976883, + -0.012162529863417149, + 0.010431722737848759, + -0.02999563328921795, + -0.02734808251261711, + -0.05302977189421654, + -2.2846158742595435e-08, + -0.04389321431517601, + -0.03228957951068878, + 0.027676749974489212, + -0.030811509117484093, + -0.0019765945617109537, + 3.890900552505627e-05, + 0.04252668842673302, + -0.006358823738992214, + -0.007885889150202274, + -0.06383440643548965, + 0.044456057250499725, + 0.08122213184833527, + -0.11859020590782166, + -0.005074881948530674, + 0.13974568247795105, + 0.03768230229616165, + -0.06202290579676628, + 0.02586950547993183, + -0.03919810429215431, + -0.048412565141916275, + -0.03368162363767624, + -0.008734983392059803, + 0.008689594455063343, + 0.07315561175346375, + -0.03642963990569115, + 0.0055221207439899445, + 0.023995600640773773, + 0.15133105218410492, + 0.049762267619371414, + 0.04923597350716591, + 0.06904802471399307, + 0.019408654421567917, + 0.027149097993969917, + 0.007635367568582296, + 0.012533346191048622, + -0.019125159829854965, + -0.0412399061024189, + 0.035508304834365845, + -0.0011421613162383437, + 0.1184784322977066, + -0.029706072062253952, + 0.015323006547987461, + 0.026067985221743584, + -0.02676505595445633, + -0.002159387804567814, + 0.04151580482721329, + 0.0026318568270653486, + 0.04341503232717514, + -0.10873342305421829, + -0.12390761822462082, + -0.060166992247104645, + 0.059393469244241714, + -0.011952023953199387, + 0.06805861741304398, + -0.05093642324209213, + 0.021097147837281227, + 0.028803497552871704, + -0.0034004738554358482, + -0.04755675420165062, + 0.031157158315181732, + 0.1142948642373085, + 0.08611921966075897, + 0.0391555093228817, + 0.06548189371824265 + ], + "arrow-fat-lines-up-bold||directional,pointer,pointing,arrowhead,outlined": [ + 0.018558019772171974, + -0.04058682173490524, + -0.05753442645072937, + 0.013013583607971668, + 0.0021746126003563404, + -0.007396242115646601, + 0.03804126754403114, + 0.01062870118767023, + -0.016146400943398476, + -0.011995705775916576, + -0.00400478346273303, + 0.0729261189699173, + 0.00353877991437912, + 0.0036826003342866898, + -0.03434540331363678, + 0.025173969566822052, + -0.07200883328914642, + -0.009197971783578396, + 0.04088450223207474, + 0.03315979614853859, + 0.02960432507097721, + 0.0004933793097734451, + -0.032965078949928284, + 0.03496506065130234, + -0.017936397343873978, + 0.04228648543357849, + 0.0985405445098877, + 0.0043178098276257515, + -0.02628573589026928, + -0.042810577899217606, + -0.07166892290115356, + -0.032694052904844284, + -0.006193619221448898, + 0.04212387278676033, + -0.05880248174071312, + -0.04158657416701317, + 0.052673909813165665, + 0.019633721560239792, + -0.05815344676375389, + 0.019001564010977745, + 0.030565008521080017, + -0.02404489926993847, + -0.01625732146203518, + 0.0005530770868062973, + 0.06975388526916504, + 0.045062728226184845, + -0.07669735699892044, + -0.00903396774083376, + 0.04183785989880562, + 0.061941761523485184, + -0.07594618201255798, + -0.10762351751327515, + -0.08106022328138351, + 0.0026085679419338703, + 0.0646892711520195, + 0.059467293322086334, + -0.027621222659945488, + -0.046984899789094925, + 0.06375521421432495, + 0.007262172177433968, + 0.049221016466617584, + -0.011440061032772064, + 0.05075341835618019, + 0.0242119450122118, + 0.04127053916454315, + -0.01698959618806839, + -0.017323071137070656, + 0.037391845136880875, + 0.04217686504125595, + 0.03584396466612816, + 0.0028723750729113817, + -0.02562694437801838, + -0.05972210317850113, + -0.05738386511802673, + -0.006775365211069584, + -0.01673547551035881, + 0.0038858833722770214, + 0.03884825110435486, + 0.01948672905564308, + -0.07299529761075974, + -0.08282064646482468, + 0.02604813128709793, + -0.04902997240424156, + 0.0730627104640007, + 0.038618434220552444, + 0.09815985709428787, + -0.057380545884370804, + -0.08362326771020889, + -0.023589245975017548, + -0.015818819403648376, + -0.007977843284606934, + -0.0004082595696672797, + -0.03866191208362579, + -0.0078104520216584206, + 0.0024090458173304796, + -0.028372034430503845, + 0.07904934883117676, + -0.10049788653850555, + -0.12285123765468597, + 0.06357552856206894, + 0.010706639848649502, + -6.271960592130199e-05, + 0.046942904591560364, + -0.034048158675432205, + -0.03112671710550785, + 0.02200847864151001, + -0.02137843146920204, + -0.044446781277656555, + -0.0441354475915432, + -0.031093847006559372, + -0.03293845057487488, + -0.16866183280944824, + -0.04506506025791168, + -0.034244783222675323, + -0.01520693302154541, + -0.04159253090620041, + -0.10059967637062073, + -0.01424805074930191, + 0.10735084116458893, + -0.008037270978093147, + 0.020171742886304855, + -0.04486432299017906, + -0.03738940879702568, + -0.023249706253409386, + -0.05949908867478371, + 0.010339953005313873, + -0.007821024395525455, + -3.8677081240174486e-33, + 0.04557989165186882, + 0.03847513720393181, + -0.006890318356454372, + 0.0009071825188584626, + 0.0011285000946372747, + -0.028245463967323303, + -0.0407724604010582, + -0.03784484043717384, + -0.09018678218126297, + 0.05758126452565193, + 0.13950374722480774, + -0.060366928577423096, + -0.05414135754108429, + 0.13500596582889557, + 0.036081861704587936, + -0.11292438209056854, + 0.056960273534059525, + 0.07590609043836594, + -0.10511752218008041, + 0.01485869474709034, + -0.04491047561168671, + 0.06344630569219589, + -0.06734442710876465, + -0.08009450137615204, + 0.013479139655828476, + 0.0037905059289187193, + -0.042101841419935226, + 0.007115676999092102, + -0.08252028375864029, + 0.022645847871899605, + 0.02570735476911068, + 0.03356274962425232, + 0.012727847322821617, + -0.0916876420378685, + -0.043072327971458435, + 0.004677361808717251, + -0.06767897307872772, + -0.06543309986591339, + -0.016559148207306862, + -0.039732933044433594, + 0.0005221499595791101, + -0.03953671455383301, + -0.025711877271533012, + -0.012350165285170078, + -0.01516621746122837, + 0.1780179738998413, + -0.06965826451778412, + -0.055981725454330444, + 0.02283588796854019, + -0.01900612749159336, + 0.003899037605151534, + 0.010136649943888187, + 0.03454116731882095, + -0.018020758405327797, + 0.0350792370736599, + -0.014900652691721916, + -0.08945564180612564, + 0.12842346727848053, + -0.01704326830804348, + 0.017240386456251144, + 0.0134923430159688, + 0.022527309134602547, + -0.022574830800294876, + 0.014603487215936184, + -0.06615328043699265, + 0.022098863497376442, + -0.11319249123334885, + 0.03633666783571243, + 0.1091916561126709, + 0.026916606351733208, + -0.016409093514084816, + 0.047760069370269775, + 0.07381005585193634, + 0.06187963858246803, + -0.018294651061296463, + 0.004333916120231152, + -0.034567154943943024, + -0.04455291107296944, + 0.06191413849592209, + -0.061759255826473236, + -0.09810429066419601, + 0.045293089002370834, + -0.038117993623018265, + -0.031236058101058006, + 0.015687022358179092, + -0.028807494789361954, + 0.019098129123449326, + -0.023012539371848106, + -0.013709153048694134, + 0.06867142766714096, + -0.06519307941198349, + 0.03110869973897934, + -0.0002051152550848201, + -0.0009260487277060747, + -0.08236716687679291, + 5.020295763362056e-34, + -0.0003610967251006514, + 0.07472862303256989, + -0.06917402893304825, + -0.0036036402452737093, + -0.12277211993932724, + 0.04092191159725189, + 0.02640746533870697, + -0.04433450847864151, + 0.04490189999341965, + 0.04836127907037735, + -0.010969841852784157, + 0.04098618030548096, + -0.03562687337398529, + -0.04345651715993881, + 0.05525708571076393, + 0.0058847032487392426, + 0.03381925821304321, + 0.03719354420900345, + 0.00853403564542532, + -0.07032852619886398, + -0.003747433889657259, + -0.09960615634918213, + -0.0011302826460450888, + 0.025458814576268196, + 0.018490297719836235, + 0.017231808975338936, + 0.07876167446374893, + 0.02309616282582283, + -0.0403197780251503, + -0.037272512912750244, + 0.030080195516347885, + -0.013569449074566364, + 0.03321224823594093, + 0.01700354926288128, + -0.05236344039440155, + -0.045495375990867615, + -0.029611045494675636, + -0.054885659366846085, + 0.08943729102611542, + -0.004421217832714319, + 0.031222790479660034, + 0.03387058153748512, + 0.09921368211507797, + 0.01213036011904478, + 0.00602683937177062, + 0.05968998372554779, + 0.023013992235064507, + 0.02968347817659378, + -0.0165216326713562, + 0.02267533168196678, + -0.004354120697826147, + 0.007917026057839394, + 0.007955338805913925, + -0.0050247530452907085, + -0.10516633093357086, + -0.02110307104885578, + 0.07608256489038467, + 0.04552523046731949, + 0.03457574546337128, + -0.019808555021882057, + -0.01031587366014719, + -0.03408455476164818, + -0.01981276646256447, + 0.026949452236294746, + 0.01766929402947426, + -0.03088882938027382, + 0.0533161461353302, + -0.1031961515545845, + 0.022281240671873093, + 0.012738487683236599, + 0.05573238804936409, + 0.07944472879171371, + 0.026783160865306854, + 0.019879551604390144, + 0.05900976434350014, + -0.05659341812133789, + 0.048507362604141235, + -0.007209646515548229, + -0.03417283296585083, + -0.012269400991499424, + -0.042678963392972946, + 0.00011037450894946232, + 0.003327049547806382, + 0.053599342703819275, + 0.019030829891562462, + 0.05786287784576416, + -0.0692199096083641, + 0.036853041499853134, + 0.034862276166677475, + 0.018190326169133186, + -0.010317623615264893, + -0.001769836526364088, + -0.03336245194077492, + -0.031535014510154724, + -0.05237489566206932, + -2.2062661031441166e-08, + -0.04405185952782631, + -0.029571523889899254, + 0.01651018112897873, + -0.038255296647548676, + 0.006188816390931606, + 0.0003010945802088827, + 0.04477541893720627, + -0.008374876342713833, + 0.0013479274930432439, + -0.09140673279762268, + 0.044351208955049515, + 0.0807434469461441, + -0.11502110958099365, + -0.0179402194917202, + 0.13562656939029694, + 0.04054513946175575, + -0.059080738574266434, + 0.03448265418410301, + -0.04592573642730713, + -0.0473058708012104, + -0.042413379997015, + 0.013583416119217873, + 0.007922676391899586, + 0.07873731851577759, + -0.035838719457387924, + 0.0037431297823786736, + 0.010809646919369698, + 0.15342751145362854, + 0.05573917552828789, + 0.05051753297448158, + 0.07527682185173035, + 0.029615603387355804, + 0.02161642350256443, + 0.0057138907723128796, + 0.013882282190024853, + -0.0015429817140102386, + -0.03872142732143402, + 0.039807360619306564, + -0.0011603933526203036, + 0.12084243446588516, + -0.0343155637383461, + 0.01185836736112833, + 0.022842029109597206, + -0.03518904745578766, + -0.0021024385932832956, + 0.048713840544223785, + -0.007943305186927319, + 0.03251015767455101, + -0.1235484778881073, + -0.11748203635215759, + -0.053042471408843994, + 0.05123172327876091, + -0.00496900686994195, + 0.07035105675458908, + -0.053744472563266754, + 0.015653438866138458, + 0.021186789497733116, + -0.0018693073652684689, + -0.054061803966760635, + 0.0321880541741848, + 0.11425356566905975, + 0.06649258732795715, + 0.03893241658806801, + 0.0654107928276062 + ], + "arrow-fat-right-bold||directional,pointer,pointing,arrowhead,outlined": [ + 0.04954725131392479, + -0.047014620155096054, + -0.05226047337055206, + 0.040419213473796844, + 0.006410034839063883, + -0.01169225201010704, + 0.0532003790140152, + 0.001516353222541511, + -0.013990296050906181, + -0.013367556035518646, + 0.01882931776344776, + 0.06678266823291779, + 0.012907777912914753, + 0.009939808398485184, + -0.029066884890198708, + 0.004549295641481876, + -0.0686892569065094, + -0.0084398053586483, + 0.05352553725242615, + 0.03484958037734032, + 0.019240878522396088, + 0.021366139873862267, + -0.030177611857652664, + 0.03496411815285683, + -0.02310345508158207, + 0.03668757528066635, + 0.08637341856956482, + -0.015383698977530003, + -0.02364368923008442, + -0.05590123310685158, + -0.05163804441690445, + -0.04945529252290726, + -0.019344763830304146, + 0.035005856305360794, + -0.09321872144937515, + -0.03814908489584923, + 0.02025516703724861, + 0.00395544245839119, + -0.03221181407570839, + 0.016112947836518288, + 0.03916187584400177, + -0.02146216668188572, + 0.006863547954708338, + 0.007828670553863049, + 0.056031785905361176, + 0.05985502153635025, + -0.0783458799123764, + 0.005214286968111992, + 0.03673238679766655, + 0.06883668154478073, + -0.08485168218612671, + -0.11333681643009186, + -0.06569334119558334, + -0.0033460597041994333, + 0.057565730065107346, + 0.06801345199346542, + -0.031023094430565834, + -0.03666547313332558, + 0.04964503273367882, + 0.012642535381019115, + 0.05341663584113121, + -0.021699223667383194, + 0.03980095311999321, + 0.025406252592802048, + 0.035784654319286346, + -0.02768557518720627, + -0.00850205309689045, + 0.012185057625174522, + 0.01700902357697487, + 0.04478633403778076, + 0.023690499365329742, + -0.03114273212850094, + -0.06277366727590561, + -0.05818670988082886, + 0.0008422038517892361, + -0.023015130311250687, + 0.011758279986679554, + 0.05554414540529251, + -0.0010774050606414676, + -0.06113363802433014, + -0.06799688190221786, + 0.024318382143974304, + -0.038935162127017975, + 0.05804703012108803, + 0.05537397041916847, + 0.10323267430067062, + -0.06292976438999176, + -0.062172066420316696, + -0.02930479310452938, + -0.017813174054026604, + -0.0007816378492861986, + -0.0029282320756465197, + -0.043204471468925476, + -0.0013480321504175663, + 0.011939626187086105, + -0.034904491156339645, + 0.06682910025119781, + -0.07140065729618073, + -0.12756478786468506, + 0.06719422340393066, + 0.021862220019102097, + 0.007129821926355362, + 0.03349657356739044, + -0.04998146370053291, + -0.010297897271811962, + 0.008070454932749271, + -0.046530332416296005, + -0.04136473685503006, + -0.0531722791492939, + -0.02114982344210148, + -0.032529283314943314, + -0.1625635027885437, + -0.040400102734565735, + -0.021466486155986786, + -0.023699410259723663, + -0.03149387612938881, + -0.11100286990404129, + -0.009392579086124897, + 0.1059606671333313, + -0.01942947320640087, + -0.007831699214875698, + -0.04970156028866768, + -0.04354894161224365, + -0.03883395716547966, + -0.06287044286727905, + -0.0026673520915210247, + -0.04947052150964737, + -4.060961966686525e-33, + 0.017777882516384125, + 0.021339330822229385, + -0.01667504385113716, + -0.01390809752047062, + -0.009169823490083218, + -0.029010731726884842, + -0.021810058504343033, + -0.029875917360186577, + -0.10169176757335663, + 0.026237566024065018, + 0.16186411678791046, + -0.04453571140766144, + -0.05414995178580284, + 0.12025180459022522, + 0.029485151171684265, + -0.1062532439827919, + 0.05540606006979942, + 0.094593346118927, + -0.1139393001794815, + -0.00022560279467143118, + -0.027425356209278107, + 0.07641126960515976, + -0.0919763520359993, + -0.08571692556142807, + -0.005494717974215746, + -0.0042518614791333675, + -0.030332816764712334, + -0.004902422893792391, + -0.07134678959846497, + 0.03134770691394806, + -0.0017598822014406323, + 0.05283571407198906, + 0.02075396105647087, + -0.10286009311676025, + -0.01566627062857151, + -0.029948322102427483, + -0.05687536299228668, + -0.05832934007048607, + -0.03125216066837311, + -0.04403161257505417, + 0.008976382203400135, + -0.03564724698662758, + -0.03227810189127922, + -0.028725598007440567, + -0.019459374248981476, + 0.1798529475927353, + -0.04783225059509277, + -0.047893013805150986, + 0.03990674391388893, + -0.03381012752652168, + 0.011746582575142384, + 0.013477211818099022, + 0.03174743428826332, + 0.009107199497520924, + 0.044904425740242004, + -0.021774083375930786, + -0.08839321881532669, + 0.13150887191295624, + -0.02064047008752823, + 0.0018034899840131402, + 0.011589798144996166, + 0.038325097411870956, + -0.0028170139994472265, + -0.008296400308609009, + -0.09725923836231232, + 0.022022340446710587, + -0.11309731006622314, + 0.029051054269075394, + 0.1142304390668869, + 0.024195779114961624, + 0.019223567098379135, + 0.048494551330804825, + 0.08146176487207413, + 0.04393382743000984, + -0.023923303931951523, + 0.015093388967216015, + -0.038059052079916, + -0.043342672288417816, + 0.05396679416298866, + -0.06199326738715172, + -0.1021723821759224, + 0.05479598417878151, + -0.05659489333629608, + -0.008038119412958622, + 0.001972708385437727, + -0.04781114682555199, + 0.013840094208717346, + -0.01591053046286106, + -0.004055550787597895, + 0.07374848425388336, + -0.06699497997760773, + 0.019323967397212982, + -0.027241073548793793, + 0.01376795768737793, + -0.09464899450540543, + 5.338664632957849e-34, + -0.0031732090283185244, + 0.05717291682958603, + -0.05290772020816803, + 0.006134271156042814, + -0.13079948723316193, + 0.022798893973231316, + 0.03479527682065964, + -0.05139103904366493, + 0.0225475262850523, + 0.052921850234270096, + 0.012627673335373402, + 0.020829780027270317, + -0.06087388098239899, + -0.02626049891114235, + 0.06352177262306213, + -0.0036103096790611744, + 0.04366477206349373, + 0.027706630527973175, + -0.0077386233024299145, + -0.05807342752814293, + -0.011444793082773685, + -0.08999151736497879, + 0.0037602370139211416, + 0.05368995666503906, + 0.02927461266517639, + 0.034638289362192154, + 0.08709284663200378, + 0.03209309279918671, + -0.05644485354423523, + -0.0341833271086216, + 0.011708531528711319, + -0.003389985766261816, + 0.045207154005765915, + 0.023956196382641792, + -0.0516812838613987, + -0.05940163880586624, + -0.036597952246665955, + -0.061270203441381454, + 0.09868635982275009, + 0.002952623413875699, + 0.0417504645884037, + 0.022457290440797806, + 0.09825246036052704, + 0.043144453316926956, + 0.015505459159612656, + 0.05808703973889351, + 0.03541351109743118, + 0.02437453344464302, + 0.01514263916760683, + -0.0021762053947895765, + 0.01986297033727169, + -0.00014152817311696708, + 0.029927920550107956, + -0.0261651873588562, + -0.10027583688497543, + -0.013954994268715382, + 0.06175724416971207, + 0.03456218168139458, + 0.037667591124773026, + -0.02508673444390297, + -0.009171273559331894, + -0.04414764791727066, + 0.005977158434689045, + 0.0264685470610857, + 0.007969402708113194, + -0.0502723827958107, + 0.05169334262609482, + -0.09360004961490631, + 0.030559919774532318, + 0.0025199700612574816, + 0.047686867415905, + 0.09012286365032196, + 0.03736516088247299, + 0.01942071132361889, + 0.05747672915458679, + -0.06043282896280289, + 0.04739769548177719, + -0.014746936969459057, + -0.03691711649298668, + 0.00896146334707737, + -0.05225680023431778, + 0.0012472330126911402, + 0.007452983874827623, + 0.018287187442183495, + 0.017336884513497353, + 0.04280836135149002, + -0.06705159693956375, + 0.0054656388238072395, + 0.021084245294332504, + 0.021675163879990578, + -0.016011523082852364, + 0.01776248775422573, + -0.013543465174734592, + -0.0512964203953743, + -0.05464041605591774, + -2.1990981480257688e-08, + -0.05244513601064682, + -0.033705227077007294, + 0.022948650643229485, + -0.022914638742804527, + -0.018282264471054077, + -0.00715445214882493, + 0.027546826750040054, + -0.015952786430716515, + -0.002242167480289936, + -0.05658730864524841, + 0.02508673444390297, + 0.05932263284921646, + -0.09164521098136902, + -0.013607693836092949, + 0.1294277161359787, + 0.03727466240525246, + -0.07099016010761261, + 0.02601257711648941, + -0.03948203846812248, + -0.043688226491212845, + -0.02914908528327942, + 0.001014354289509356, + 0.01765032485127449, + 0.06119558587670326, + -0.031207995489239693, + -0.0013689161278307438, + 0.015636222437024117, + 0.14812801778316498, + 0.06853307783603668, + 0.042626556009054184, + 0.06655149161815643, + 0.020136887207627296, + -0.000585391593631357, + 0.026196766644716263, + -0.003695041872560978, + -0.013231180608272552, + -0.0455806739628315, + 0.0339476503431797, + 0.010673346929252148, + 0.13480357825756073, + -0.03241832181811333, + 0.01733190380036831, + 0.019268762320280075, + -0.013785749673843384, + -0.015662312507629395, + 0.051621969789266586, + 0.00767612736672163, + 0.0504838302731514, + -0.08229562640190125, + -0.11784273386001587, + -0.03928818553686142, + 0.055987000465393066, + -0.016136126592755318, + 0.09878204762935638, + -0.01871289312839508, + 0.029227986931800842, + 0.008209706284105778, + -0.0015428103506565094, + -0.058906178921461105, + 0.040598973631858826, + 0.1270744353532791, + 0.07788775116205215, + 0.0379965715110302, + 0.07935517281293869 + ], + "arrow-fat-up-bold||directional,pointer,pointing,arrowhead,shift,outlined": [ + 0.02951442264020443, + -0.04952837899327278, + -0.050733987241983414, + 0.020446540787816048, + 0.009773768484592438, + -0.006444540340453386, + 0.05330542474985123, + -0.0007830371032468975, + 6.525743856400368e-07, + 0.0038873697631061077, + 0.01957048289477825, + 0.07729604095220566, + 0.0180731900036335, + -0.004403960425406694, + -0.017909180372953415, + 0.01926260069012642, + -0.054729290306568146, + 0.01781570538878441, + 0.045117370784282684, + 0.0216034147888422, + 0.03367279842495918, + -0.001112037687562406, + -0.014435531571507454, + 0.04697216674685478, + -0.0025167546700686216, + 0.023782717064023018, + 0.08444219082593918, + -0.01236688531935215, + -0.016651730984449387, + -0.04683258756995201, + -0.07707390934228897, + -0.04450056329369545, + -0.005587792955338955, + 0.0236370712518692, + -0.08755943924188614, + -0.03226444497704506, + 0.040022317320108414, + 0.020148776471614838, + -0.03915194422006607, + 0.028261657804250717, + 0.034015290439128876, + -0.025851719081401825, + 0.002740522613748908, + -0.012832924723625183, + 0.06418118625879288, + 0.05518531799316406, + -0.08044521510601044, + 0.01674058474600315, + 0.03246183320879936, + 0.05664180964231491, + -0.08282093703746796, + -0.11857251822948456, + -0.07173112034797668, + 0.010329943150281906, + 0.05053691938519478, + 0.06104861572384834, + -0.030586009845137596, + -0.0368543416261673, + 0.06936085224151611, + 0.0069583505392074585, + 0.04642642289400101, + -0.01152793224900961, + 0.05700848996639252, + 0.03513277694582939, + 0.04545779526233673, + -0.03016960807144642, + -0.019374387338757515, + 0.004485907033085823, + 0.014872276224195957, + 0.03794551640748978, + 0.010380465537309647, + -0.03304246813058853, + -0.057225484400987625, + -0.05514860153198242, + -0.0120588643476367, + -0.03029727376997471, + 0.023757310584187508, + 0.04267921298742294, + 0.031000589951872826, + -0.06497573107481003, + -0.06769505888223648, + 0.022332193329930305, + -0.04049123451113701, + 0.0663340613245964, + 0.04928415268659592, + 0.08855824917554855, + -0.0670495554804802, + -0.056314945220947266, + -0.052363164722919464, + -0.013368933461606503, + -0.014110129326581955, + -0.01599733904004097, + -0.03794339671730995, + 0.0017365950625389814, + 0.007017616182565689, + -0.0363042913377285, + 0.07481735199689865, + -0.0779612585902214, + -0.11118149012327194, + 0.06861523538827896, + 0.011667417362332344, + 0.011146356351673603, + 0.028339380398392677, + -0.0478692352771759, + -0.03193284198641777, + 0.018184205517172813, + -0.03878813236951828, + -0.04919459670782089, + -0.03810952976346016, + -0.02135055512189865, + -0.031230274587869644, + -0.15769903361797333, + -0.04335397854447365, + -0.024811169132590294, + -0.03367595374584198, + -0.025617141276597977, + -0.09971994906663895, + -0.01139210443943739, + 0.08918432891368866, + -0.005621552001684904, + 0.009312070906162262, + -0.04912494868040085, + -0.05531015992164612, + -0.020377235487103462, + -0.07722406089305878, + 0.0023660026490688324, + -0.023736489936709404, + -4.033038465724726e-33, + 0.04938005283474922, + 0.03410380706191063, + -0.031942833214998245, + -0.0045316629111766815, + -0.0005732771242037416, + -0.03291935846209526, + -0.03845786303281784, + -0.04505527392029762, + -0.09646119922399521, + 0.0264933779835701, + 0.14737121760845184, + -0.017039060592651367, + -0.052633438259363174, + 0.12939845025539398, + 0.04121683910489082, + -0.11973431706428528, + 0.07178962975740433, + 0.10702620446681976, + -0.0944434106349945, + -0.00854235328733921, + -0.02048114687204361, + 0.06533949822187424, + -0.08154967427253723, + -0.07156622409820557, + -0.0014879711670801044, + 0.009028003551065922, + -0.063359335064888, + 0.004263067618012428, + -0.08600658178329468, + 0.02689376100897789, + 0.010593083687126637, + 0.043065834790468216, + -0.00617391150444746, + -0.10859627276659012, + -0.01771719381213188, + -0.0186320748180151, + -0.07093255966901779, + -0.0653800442814827, + -0.01855878345668316, + -0.05414263904094696, + -0.010534200817346573, + -0.046885840594768524, + -0.04862627387046814, + -0.014784109778702259, + -0.021298203617334366, + 0.17379513382911682, + -0.07196331024169922, + -0.05129308998584747, + 0.029051126912236214, + -0.024542249739170074, + 0.02145964466035366, + 0.003509933827444911, + 0.01116944756358862, + -0.010805444791913033, + 0.021153295412659645, + -0.011329094879329205, + -0.06459638476371765, + 0.12794369459152222, + 0.00070019910344854, + 0.012794199399650097, + 0.0009686315315775573, + 0.022909916937351227, + 0.009467767551541328, + 0.02017296478152275, + -0.07615365833044052, + 0.022260678932070732, + -0.1196238100528717, + 0.02721773460507393, + 0.09663303941488266, + 0.041172921657562256, + 0.005423430819064379, + 0.051990121603012085, + 0.05953522026538849, + 0.06687948852777481, + -0.017995934933423996, + 0.008510144427418709, + -0.03626077622175217, + -0.08147555589675903, + 0.03514992073178291, + -0.059717223048210144, + -0.09713388234376907, + 0.056695032864809036, + -0.03466234728693962, + -0.025157544761896133, + 0.02109350822865963, + -0.03691058233380318, + -0.002986186882480979, + -0.003890217514708638, + -0.001136229489929974, + 0.058390162885189056, + -0.06399869173765182, + 0.02172216586768627, + 0.0020345624070614576, + -0.0002461654366925359, + -0.07533244788646698, + 9.23185233171334e-34, + -0.0003859068383462727, + 0.079032301902771, + -0.05913783609867096, + -0.001966232666745782, + -0.12239563465118408, + 0.03026723861694336, + 0.040722232311964035, + -0.04366983845829964, + 0.03256073594093323, + 0.020584065467119217, + -0.0037619424983859062, + 0.028080057352781296, + -0.047545455396175385, + -0.03485201299190521, + 0.04752572625875473, + 0.005382976494729519, + 0.0502995066344738, + 0.052548397332429886, + -0.01703580468893051, + -0.05767357721924782, + -0.008698711171746254, + -0.1034744530916214, + -0.019119851291179657, + 0.05298458784818649, + 0.018921369686722755, + 0.03669016435742378, + 0.07654259353876114, + 0.0561528317630291, + -0.055677998811006546, + -0.03714238852262497, + 0.016212141141295433, + 0.00997031107544899, + 0.04298020899295807, + 0.03874250873923302, + -0.05361015722155571, + -0.04235157370567322, + -0.04606560245156288, + -0.05870542675256729, + 0.08087559044361115, + 0.01067381538450718, + 0.04033425822854042, + 0.015736401081085205, + 0.09701027721166611, + 0.04584881663322449, + 0.01665358804166317, + 0.04644104838371277, + 0.027137935161590576, + 0.02958321012556553, + -0.004933398682624102, + 0.016996417194604874, + 0.028691869229078293, + -0.014179075136780739, + 0.010870085097849369, + -0.012288274243474007, + -0.10723911225795746, + 0.00041977796354331076, + 0.05720724165439606, + 0.05161719769239426, + 0.03435640037059784, + -0.02308707870543003, + -0.021727783605456352, + -0.02839205600321293, + 0.006490757223218679, + 0.032048385590314865, + 0.007232156582176685, + -0.04105521738529205, + 0.05376802012324333, + -0.1067250594496727, + 0.012896479107439518, + 0.0063336011953651905, + 0.06892232596874237, + 0.07434552162885666, + 0.04890426993370056, + 0.019619712606072426, + 0.06191560626029968, + -0.07262040674686432, + 0.05639170855283737, + -0.014557398855686188, + -0.03897185996174812, + -0.004642450250685215, + -0.05681098997592926, + -0.002169513376429677, + 0.01591218262910843, + 0.049166496843099594, + -0.007774329278618097, + 0.0812823697924614, + -0.0785970464348793, + 0.03170058876276016, + 0.01750064827501774, + 0.014547470025718212, + -0.009410842321813107, + 0.009080254472792149, + -0.009051775559782982, + -0.059093356132507324, + -0.052092477679252625, + -2.2198651805638292e-08, + -0.048993002623319626, + -0.02286875620484352, + 0.0052007283084094524, + -0.03419089689850807, + 0.007221724838018417, + -0.004258713219314814, + 0.036079611629247665, + -0.008169376291334629, + 0.007602953817695379, + -0.10179706662893295, + 0.027867458760738373, + 0.0665014237165451, + -0.07127425074577332, + -0.027713440358638763, + 0.1335933804512024, + 0.03521977365016937, + -0.04921317100524902, + 0.034554287791252136, + -0.045189183205366135, + -0.05598831549286842, + -0.04166773334145546, + 0.025153469294309616, + 0.025441760197281837, + 0.06493910402059555, + -0.03735167533159256, + -0.020109934732317924, + -0.0068528419360518456, + 0.15611182153224945, + 0.07951541244983673, + 0.04136922210454941, + 0.07425425201654434, + 0.038962703198194504, + 0.009610132314264774, + 0.024237027391791344, + 0.012985321693122387, + 0.015551338903605938, + -0.03111921064555645, + 0.030829813331365585, + 0.01044982299208641, + 0.14137907326221466, + -0.027907149866223335, + -0.001653902931138873, + 0.013937598094344139, + -0.02788001298904419, + -0.045027557760477066, + 0.05667202174663544, + -0.00011620880832197145, + 0.03548888489603996, + -0.10402864217758179, + -0.11411014199256897, + -0.026605891063809395, + 0.050967030227184296, + -0.01834651082754135, + 0.09835200756788254, + -0.03479945659637451, + 0.022610871121287346, + 0.0021947668865323067, + -0.01064416766166687, + -0.06020769476890564, + 0.04005934298038483, + 0.1147814393043518, + 0.04926319047808647, + 0.025148874148726463, + 0.0715593546628952 + ], + "arrow-left-bold||directional,pointer,pointing,arrowhead": [ + 0.047942016273736954, + -0.0607561357319355, + -0.04705796018242836, + 0.03298526257276535, + 0.007047615014016628, + -0.0370694138109684, + 0.06607861071825027, + -0.019883574917912483, + -0.0037208045832812786, + 0.001568335690535605, + 0.0071275136433541775, + 0.08841700851917267, + 0.026167085394263268, + 0.015928301960229874, + -0.02840591035783291, + 0.0361364372074604, + -0.06583472341299057, + 0.03219121694564819, + 0.06295791268348694, + 0.06589828431606293, + -0.04027729481458664, + 0.03761408105492592, + -0.03266194835305214, + 0.03402935341000557, + -0.023541036993265152, + 0.030992411077022552, + 0.0967772901058197, + -0.002654086798429489, + -0.01524723507463932, + -0.06561243534088135, + -0.04551408439874649, + -0.05253709852695465, + -0.05048041418194771, + 0.0432349257171154, + -0.08278561383485794, + -0.027899472042918205, + 0.01708182692527771, + -0.008822709321975708, + -0.01984018087387085, + 0.055223606526851654, + 0.048061322420835495, + 0.01314808614552021, + -0.00159749248996377, + -0.010127494111657143, + 0.03793554753065109, + 0.07311724126338959, + -0.09057589620351791, + -0.0159702617675066, + 0.06330897659063339, + 0.06395617872476578, + -0.083039790391922, + -0.08651184290647507, + -0.0567576102912426, + -0.008409117348492146, + 0.0535198375582695, + 0.068107470870018, + -0.03547582030296326, + -0.03463580086827278, + 0.07199797034263611, + 0.00783565454185009, + 0.057811759412288666, + -0.02071722224354744, + 0.03216535970568657, + -0.014423121698200703, + 0.04295975714921951, + -0.02503461390733719, + -0.005077848676592112, + 0.039532046765089035, + 0.011940454132854939, + 0.03236381337046623, + 0.015018238686025143, + -0.033053237944841385, + -0.03126309812068939, + -0.049576979130506516, + -0.013516458682715893, + -0.018837591633200645, + 0.05732415243983269, + 0.0765061303973198, + -0.021514272317290306, + -0.03888137266039848, + -0.06415446847677231, + -0.009023312479257584, + -0.048233162611722946, + 0.03088739700615406, + 0.06366708129644394, + 0.09688963741064072, + -0.10418321937322617, + -0.0585990808904171, + -0.021419255062937737, + -0.005914284847676754, + -0.02399061620235443, + 0.015918035060167313, + -0.034983549267053604, + -0.020814623683691025, + 0.05419330298900604, + -0.028078794479370117, + 0.08043371140956879, + -0.06231880933046341, + -0.12902005016803741, + 0.07729915529489517, + 0.03591250628232956, + 0.03143146261572838, + 0.023328479379415512, + -0.06168011575937271, + 0.00994809903204441, + 0.026332328096032143, + -0.027227653190493584, + -0.044744569808244705, + -0.07043785601854324, + -0.030292905867099762, + -0.042860083281993866, + -0.15750759840011597, + -0.04393443092703819, + -0.058618996292352676, + -0.025047563016414642, + -0.039309270679950714, + -0.12432043254375458, + 0.0005839597433805466, + 0.11639636009931564, + -0.023548217490315437, + 0.007793982047587633, + -0.05711417645215988, + -0.04171213135123253, + -0.016931077465415, + -0.04770369455218315, + 0.00953566376119852, + -0.020621376112103462, + -4.001323628139541e-33, + 0.03622972592711449, + 0.02370002306997776, + 0.010788259096443653, + 0.015644533559679985, + -0.01898692362010479, + 0.014511195942759514, + -0.03317240625619888, + -0.006828198209404945, + -0.0959530919790268, + 0.002434923779219389, + 0.14620521664619446, + -0.03187074139714241, + -0.05561395362019539, + 0.0627034455537796, + 0.025543011724948883, + -0.08248227834701538, + 0.02556671015918255, + 0.04375867918133736, + -0.13566350936889648, + 0.012233152985572815, + -0.012895895168185234, + 0.057955916970968246, + -0.11013524234294891, + -0.06692104786634445, + -0.04539407044649124, + -0.01310700736939907, + -0.0016325103351846337, + -0.007518799975514412, + -0.08763610571622849, + 0.02067844197154045, + 0.01834001950919628, + 0.061955537647008896, + 0.013587209396064281, + -0.08810495585203171, + -0.015522658824920654, + -0.0028703392017632723, + -0.08675635606050491, + -0.03725023567676544, + -0.016003362834453583, + -0.003813565708696842, + -0.01627122424542904, + -0.021066416054964066, + -0.03253837674856186, + -0.015835106372833252, + -0.011314458213746548, + 0.16927365958690643, + -0.06339026242494583, + -0.07858292758464813, + 0.023646684363484383, + -0.009688314981758595, + -0.0004769264778587967, + -0.0020170973148196936, + 0.019838271662592888, + 0.011812569573521614, + 0.038338031619787216, + 0.0027426849119365215, + -0.08099133521318436, + 0.13210737705230713, + -0.003291844157502055, + -0.004325751680880785, + 0.0005188465001992881, + 0.0244345311075449, + 0.011872771196067333, + -0.015299508348107338, + -0.08357037603855133, + 0.03279222920536995, + -0.1158408597111702, + 0.03931528702378273, + 0.11067960411310196, + -0.010887214913964272, + 0.0215827077627182, + 0.03221840038895607, + 0.058244235813617706, + 0.015772514045238495, + -0.035301752388477325, + 0.013324510306119919, + -0.039382338523864746, + -0.033921610563993454, + 0.08637160807847977, + -0.10088988393545151, + -0.08293960243463516, + 0.05449781194329262, + -0.04913979768753052, + 0.026259643957018852, + 0.05240137502551079, + -0.05890569090843201, + 0.004999140277504921, + -0.03712824732065201, + -0.025772757828235626, + 0.09501637518405914, + -0.028760049492120743, + 0.001868498045951128, + -0.048760730773210526, + 0.016530971974134445, + -0.09709139168262482, + 3.372006793968246e-34, + -0.013295403681695461, + 0.04652761295437813, + -0.07222521305084229, + 0.00966133177280426, + -0.13147421181201935, + 0.012728865258395672, + 0.05366494134068489, + -0.040316708385944366, + 0.000444280740339309, + 0.07304562628269196, + 0.0216835904866457, + 0.029338883236050606, + -0.05805056542158127, + -0.01735469326376915, + 0.0681866705417633, + -0.0025722996797412634, + 0.0629754289984703, + 0.044575415551662445, + 0.0025495202280580997, + -0.0597304068505764, + -0.01087562832981348, + -0.043052736669778824, + 0.017271138727664948, + 0.05380754917860031, + 0.0025164459366351366, + 0.027393467724323273, + 0.06587009131908417, + 0.03830200806260109, + -0.06818750500679016, + -0.0433342307806015, + 0.033773936331272125, + 0.02260155975818634, + 0.05359216779470444, + 0.04118270054459572, + -0.04645382985472679, + -0.04398065060377121, + -0.0394163653254509, + -0.07987340539693832, + 0.10534985363483429, + 0.007296908181160688, + 0.047787170857191086, + 0.02910524606704712, + 0.09513647109270096, + 0.011634617112576962, + 0.01601973921060562, + 0.08925829827785492, + 0.040322039276361465, + 0.008389742113649845, + 0.03279146924614906, + 0.020490536466240883, + 0.013531082309782505, + -0.001464872038923204, + 0.003529174253344536, + -0.037339430302381516, + -0.07881809771060944, + -0.05096346512436867, + 0.053150519728660583, + 0.04731760546565056, + 0.0451991967856884, + 0.005719123408198357, + -0.011671054176986217, + -0.01580815576016903, + 0.009534592740237713, + 0.03847896680235863, + -0.00628450233489275, + -0.05054781958460808, + 0.06459249556064606, + -0.07333660870790482, + 0.06499823927879333, + -0.0248853899538517, + 0.06654088944196701, + 0.0993417277932167, + 0.03397398069500923, + -0.00011552362411748618, + 0.043508294969797134, + -0.04067687690258026, + 0.05544137954711914, + 0.006472836248576641, + -0.025912277400493622, + -0.003881061915308237, + -0.07847877591848373, + -0.016676397994160652, + -0.007498443126678467, + 0.029468245804309845, + -0.006046179216355085, + 0.01813673786818981, + -0.030092505738139153, + -0.010483158752322197, + 0.008309154771268368, + -0.006970344111323357, + -0.009902062825858593, + -0.015709783881902695, + -0.020699743181467056, + -0.06308113038539886, + -0.03890490159392357, + -2.0180927151614014e-08, + -0.05938252806663513, + -0.017731351777911186, + -0.007406646851450205, + -0.006467347964644432, + -0.02224169857800007, + -0.017037171870470047, + 0.013359571807086468, + -0.009761516004800797, + -0.02789551578462124, + -0.038792841136455536, + 0.027820106595754623, + 0.05662365257740021, + -0.07464707642793655, + -0.03248549625277519, + 0.11293154209852219, + 0.03131089732050896, + -0.05806965008378029, + -0.0025430680252611637, + -0.03285471349954605, + -0.013499382883310318, + -0.012644752860069275, + 0.02538546361029148, + 0.025193890556693077, + 0.05155637115240097, + -0.019582364708185196, + 0.005839002784341574, + 0.021296868100762367, + 0.13244186341762543, + 0.08280500024557114, + 0.0165487602353096, + 0.05497134476900101, + 0.00959440041333437, + -0.021245509386062622, + 0.012515878304839134, + -0.06242077797651291, + -0.04458649829030037, + -0.0705520287156105, + 0.04340022802352905, + 0.025655975565314293, + 0.10253579914569855, + -0.05934668332338333, + 0.018297918140888214, + -0.01827671378850937, + -0.015727195888757706, + -0.0555436871945858, + 0.0661211833357811, + 0.023627955466508865, + 0.014537684619426727, + -0.08582954853773117, + -0.12579737603664398, + -0.026840364560484886, + 0.06108125299215317, + 0.008575906045734882, + 0.09069196879863739, + -0.008585123345255852, + 0.031069643795490265, + -0.005418324843049049, + -0.00985243171453476, + -0.07351464033126831, + 0.011610323563218117, + 0.11178724467754364, + 0.08121390640735626, + 0.007037491537630558, + 0.07015089690685272 + ], + "arrow-line-down-bold||directional,pointer,pointing,arrowhead,bottom": [ + 0.01273383479565382, + -0.0418161079287529, + -0.05006013810634613, + 0.0001661506830714643, + -0.017792487516999245, + -0.03559766709804535, + 0.0519341304898262, + 0.026086023077368736, + 0.011106283403933048, + 0.007917668670415878, + -0.017363570630550385, + 0.09613361954689026, + 0.04229264333844185, + 0.004899877589195967, + -0.038845330476760864, + 0.03815081715583801, + -0.05041765421628952, + 0.04738372564315796, + 0.045389872044324875, + 0.049509916454553604, + -0.015979241579771042, + 0.01048237830400467, + -0.02639862522482872, + 0.019796054810285568, + -0.028238721191883087, + 0.027994828298687935, + 0.09628760069608688, + 0.024401308968663216, + -0.03317314386367798, + -0.06554076820611954, + -0.09365718066692352, + -0.04602661728858948, + -0.011516091413795948, + 0.05323870852589607, + -0.06530550867319107, + -0.03349995240569115, + 0.04405475780367851, + 0.02417246624827385, + -0.025757161900401115, + 0.044441502541303635, + 0.05268040671944618, + 0.010090157389640808, + -0.026060646399855614, + -0.008086614310741425, + 0.025260649621486664, + 0.07242721319198608, + -0.07231774926185608, + -0.06307041645050049, + 0.03309440612792969, + 0.08247849345207214, + -0.05171261727809906, + -0.062149155884981155, + -0.06867390125989914, + 0.010631417855620384, + 0.07449460029602051, + 0.06481492519378662, + -0.006639201194047928, + -0.032100629061460495, + 0.05400620028376579, + 0.020799607038497925, + 0.07323794066905975, + -0.0286959670484066, + 0.005691107362508774, + -0.01475992426276207, + 0.0556940957903862, + -0.007261271122843027, + -0.027036773040890694, + 0.05552634596824646, + 0.006083161570131779, + 0.02773677185177803, + 0.003502346109598875, + -0.04984273016452789, + -0.015226813033223152, + -0.05310097336769104, + -0.04381595179438591, + -0.012978899292647839, + 0.046656280755996704, + 0.07526510953903198, + 0.0020789150148630142, + -0.042208220809698105, + -0.04652678593993187, + 0.009078340604901314, + -0.05457214266061783, + 0.07089252024888992, + 0.012254231609404087, + 0.08432766795158386, + -0.07948832958936691, + -0.08105149865150452, + -0.03255042806267738, + -0.011702576652169228, + -0.019939187914133072, + -0.00461245933547616, + -0.02543642744421959, + -0.008141097612679005, + 0.01712678000330925, + -0.021461904048919678, + 0.09700880944728851, + -0.09162044525146484, + -0.11988816410303116, + 0.07572706788778305, + 0.004517765715718269, + 0.00852781068533659, + 0.0398096963763237, + -0.05017533525824547, + -0.01664990372955799, + 0.0045585730113089085, + 0.002821987261995673, + -0.06884691119194031, + -0.04376805201172829, + -0.026098309084773064, + -0.04027494415640831, + -0.13306091725826263, + -0.036099206656217575, + -0.05053555592894554, + -0.03973241522908211, + -0.02523641474545002, + -0.09749011695384979, + 0.0016185542335733771, + 0.09284254908561707, + -0.016699545085430145, + 0.025223419070243835, + -0.024928752332925797, + -0.04372303560376167, + -0.001190310693345964, + -0.03696753829717636, + 0.020694058388471603, + 0.019900191575288773, + -3.796673000397258e-33, + 0.08219783753156662, + 0.019868973642587662, + 0.028217189013957977, + 0.014286672696471214, + 0.002698831493034959, + 0.011647239327430725, + -0.06770069897174835, + -0.025825783610343933, + -0.10501711815595627, + 0.04110398888587952, + 0.14773818850517273, + -0.09714046865701675, + -0.05578029528260231, + 0.08222481608390808, + 0.016922537237405777, + -0.08048515021800995, + 0.02600095048546791, + 0.004866642411798239, + -0.12354996055364609, + 0.004096367862075567, + -0.02516990713775158, + 0.04635396972298622, + -0.08870448172092438, + -0.05819494277238846, + -0.006195220164954662, + -0.006285206880420446, + -0.01904042437672615, + -0.011498309671878815, + -0.10314008593559265, + 0.015496538020670414, + 0.01660577952861786, + 0.015573985874652863, + 0.016370873898267746, + -0.08032473176717758, + -0.051185037940740585, + 0.02479778230190277, + -0.1135355606675148, + -0.021901020780205727, + -0.014747303910553455, + -0.038054268807172775, + -0.017520038411021233, + -0.025781337171792984, + -0.04566119611263275, + 0.003142743371427059, + -6.350454350467771e-05, + 0.14181964099407196, + -0.05576584115624428, + -0.09890221804380417, + -0.0066743940114974976, + 0.004989106673747301, + -0.015503991395235062, + -0.025764012709259987, + 0.015157446265220642, + 0.004946377594023943, + 0.0459495410323143, + -0.004350133240222931, + -0.09539776295423508, + 0.1504661738872528, + -0.029191194102168083, + 0.018501797690987587, + 0.02847730740904808, + -0.011119470000267029, + -0.0019056936725974083, + -0.01900700107216835, + -0.0302872397005558, + 0.04670316353440285, + -0.11243525892496109, + 0.045163653790950775, + 0.10431084036827087, + 0.0074601974338293076, + 0.005948527250438929, + 0.02794601209461689, + 0.052270423620939255, + 0.03337182104587555, + -0.03192734345793724, + 0.029042361304163933, + -0.0189075730741024, + -0.05408291518688202, + 0.1173514872789383, + -0.1038694679737091, + -0.08543180674314499, + 0.05285809561610222, + -0.04266348108649254, + 0.014273521490395069, + 0.054343994706869125, + -0.0388873890042305, + 0.028346791863441467, + -0.023025808855891228, + -0.01044534333050251, + 0.07771565020084381, + -0.05533101409673691, + -0.016712583601474762, + -0.019137181341648102, + 0.002328154630959034, + -0.0913655236363411, + 7.629959343744768e-34, + -0.007330477703362703, + 0.06144527718424797, + -0.06858202815055847, + 0.018789278343319893, + -0.1400820016860962, + 0.022153373807668686, + 0.05157804116606712, + -0.035567522048950195, + 0.015486745163798332, + 0.11314712464809418, + 0.016342738643288612, + 0.036558084189891815, + -0.015148167498409748, + -0.026872700080275536, + 0.0692872703075409, + 0.015222076326608658, + 0.033112917095422745, + 0.03755239397287369, + 0.03730148449540138, + -0.07391789555549622, + -0.012333317659795284, + -0.06464706361293793, + 0.00506106112152338, + 0.015574304386973381, + 0.010085184127092361, + 0.010481567122042179, + 0.08046726137399673, + 0.05625109001994133, + -0.057203806936740875, + -0.05585475638508797, + 0.051616135984659195, + 0.026753392070531845, + 0.028033530339598656, + 0.03623375669121742, + -0.07991541922092438, + -0.022191494703292847, + -0.04424155503511429, + -0.034586600959300995, + 0.05986901372671127, + -0.012411500327289104, + 0.0001100299705285579, + 0.057963114231824875, + 0.13788029551506042, + -0.020773809403181076, + -0.0072848005220294, + 0.08291568607091904, + 0.0029880490619689226, + 0.005019458010792732, + 0.01917264610528946, + 0.012268837541341782, + -0.015543210320174694, + -0.02539457008242607, + -0.01148833055049181, + 0.0013625860447064042, + -0.09955371916294098, + -0.02086726389825344, + 0.09134121239185333, + 0.0730031356215477, + -0.0009664984536357224, + 0.020964832976460457, + -0.007135413121432066, + -0.03262411803007126, + -0.0117317670956254, + 0.04328528791666031, + 0.005343135446310043, + 0.009700654074549675, + 0.049399085342884064, + -0.0482792854309082, + 0.03510802611708641, + -0.020041026175022125, + 0.04970382899045944, + 0.09089451283216476, + 0.036871425807476044, + 0.008147552609443665, + 0.047646019607782364, + -0.07402755320072174, + 0.051604028791189194, + 0.03341270983219147, + -0.03068404830992222, + -0.027114911004900932, + -0.0538468211889267, + -0.009732482023537159, + -0.03455554321408272, + 0.05514799803495407, + -0.012851887382566929, + 0.030629388988018036, + -0.06667889654636383, + 0.049325764179229736, + 0.016871299594640732, + 0.0006994518917053938, + -0.04127826169133186, + -0.016385218128561974, + -0.03524583578109741, + -0.04503239318728447, + -0.04759052023291588, + -2.2285430389956673e-08, + -0.05495085194706917, + -0.02682054415345192, + 0.011975889094173908, + -0.005590534303337336, + 0.0065787299536168575, + 0.0225291159003973, + 0.024927418678998947, + -0.0037584854289889336, + 0.006371119059622288, + -0.07805701345205307, + 0.019551094621419907, + 0.07913398742675781, + -0.08148933202028275, + -0.034742873162031174, + 0.13074252009391785, + 0.04561471566557884, + -0.05014374479651451, + 0.010140077210962772, + -0.020881805568933487, + -0.04048794135451317, + -0.016094790771603584, + 0.015168029814958572, + 0.007293406408280134, + 0.07815403491258621, + -0.01299315132200718, + 0.004745170474052429, + 0.0032957037910819054, + 0.15653324127197266, + 0.07580818980932236, + 0.024121785536408424, + 0.08216842263936996, + 0.048953309655189514, + 0.020658085122704506, + -0.015196435153484344, + -0.01288907416164875, + -0.03332563117146492, + -0.05392732098698616, + 0.04054924473166466, + 0.03605879098176956, + 0.10235154628753662, + -0.05842018127441406, + 0.0015121299074962735, + -0.013258577324450016, + -0.01902610808610916, + -0.03907105699181557, + 0.04842992126941681, + 0.019931955263018608, + 0.009446796961128712, + -0.08041095733642578, + -0.11407990008592606, + -0.025994887575507164, + 0.05900494381785393, + 0.03678411245346069, + 0.07206761091947556, + -0.050842031836509705, + 0.0194210484623909, + -0.002982965437695384, + -0.016883481293916702, + -0.0850832536816597, + 0.003959361929446459, + 0.08970724046230316, + 0.056096017360687256, + 0.004118913784623146, + 0.048691920936107635 + ], + "arrow-line-down-left-bold||directional,pointer,pointing,arrowhead": [ + 0.02167545072734356, + -0.03610081598162651, + -0.05254689231514931, + 0.0083518847823143, + -0.019757380709052086, + -0.015018981881439686, + 0.058661386370658875, + 0.0034864223562180996, + -0.014682510867714882, + 0.009400567971169949, + 0.0014133077347651124, + 0.08737046271562576, + 0.03848646953701973, + 0.014549246057868004, + -0.042308956384658813, + 0.037338871508836746, + -0.07283175736665726, + 0.042134840041399, + 0.04737381637096405, + 0.06328243017196655, + -0.028618263080716133, + 0.00909498706459999, + -0.05681229755282402, + 0.02417152374982834, + -0.027594849467277527, + 0.031534045934677124, + 0.10155583173036575, + 0.01544219721108675, + -0.030853059142827988, + -0.0696309357881546, + -0.07939441502094269, + -0.042417384684085846, + -0.03814971446990967, + 0.041158147156238556, + -0.07958681881427765, + -0.02612149529159069, + 0.03410445526242256, + -0.0008715101866982877, + -0.033446211367845535, + 0.0418408028781414, + 0.04162437841296196, + 0.002492301631718874, + -0.02059837616980076, + -0.009129827842116356, + 0.03458563983440399, + 0.06197569519281387, + -0.09287344664335251, + -0.03971300274133682, + 0.05292138829827309, + 0.07179074734449387, + -0.08058120310306549, + -0.05470360070466995, + -0.06743444502353668, + 0.017153486609458923, + 0.06152193993330002, + 0.07177923619747162, + -0.01610771007835865, + -0.03105994313955307, + 0.06816417723894119, + 0.0166313499212265, + 0.06313863396644592, + -0.027931833639740944, + 0.01130705513060093, + -0.015387282706797123, + 0.03785809502005577, + -0.015704194083809853, + -0.02535540796816349, + 0.05120781064033508, + 0.027859872207045555, + 0.024876367300748825, + 0.0007036926108412445, + -0.04006803780794144, + -0.025286443531513214, + -0.048816096037626266, + -0.024735035374760628, + -0.012726372107863426, + 0.050342708826065063, + 0.07050478458404541, + -0.0119918342679739, + -0.04475259408354759, + -0.05903172120451927, + 0.025093430653214455, + -0.060716766864061356, + 0.05731208622455597, + 0.03399469703435898, + 0.09231188148260117, + -0.09760622680187225, + -0.06583419442176819, + -0.012512654066085815, + -0.0036695082671940327, + -0.021339213475584984, + 0.006880287546664476, + -0.020199034363031387, + -0.020547019317746162, + 0.029452886432409286, + -0.02702181413769722, + 0.08377044647932053, + -0.08593784272670746, + -0.11541964113712311, + 0.07518842071294785, + 0.011987539008259773, + 0.012909219600260258, + 0.035385388880968094, + -0.06099919602274895, + -0.013181498274207115, + 0.0030650971457362175, + -0.005084803327918053, + -0.054198600351810455, + -0.052127912640571594, + -0.03330923244357109, + -0.040759939700365067, + -0.13961967825889587, + -0.049579501152038574, + -0.060519296675920486, + -0.021793855354189873, + -0.03485018387436867, + -0.11272343248128891, + 0.0011562336003407836, + 0.11444155871868134, + -0.018590912222862244, + 0.011626997031271458, + -0.032920412719249725, + -0.04863373190164566, + -0.01085036713629961, + -0.04430677741765976, + 0.014112110249698162, + -0.0022544630337506533, + -4.223763526171596e-33, + 0.06055143475532532, + 0.016118153929710388, + 0.03959905356168747, + 0.020928600803017616, + 0.0010656840167939663, + 0.016621915623545647, + -0.0701969712972641, + -0.01701926998794079, + -0.09903249144554138, + 0.032943643629550934, + 0.15048718452453613, + -0.09043361246585846, + -0.058042630553245544, + 0.0848429799079895, + 0.026702428236603737, + -0.10190578550100327, + 0.0202570129185915, + 0.019160006195306778, + -0.12231800705194473, + 0.015111559070646763, + -0.04033669829368591, + 0.06648927181959152, + -0.08211236447095871, + -0.05718252807855606, + -0.008257228881120682, + -0.0002692099951673299, + -0.016807204112410545, + -0.012532752938568592, + -0.09187778830528259, + 0.01826689951121807, + 0.027913812547922134, + 0.0268629789352417, + 0.0038226095493882895, + -0.09161663055419922, + -0.03902226313948631, + 0.014871049672365189, + -0.10523277521133423, + -0.02807270735502243, + -0.02184990793466568, + -0.03027966059744358, + -0.016214190050959587, + -0.030421126633882523, + -0.05224121734499931, + 0.0005908600869588554, + -0.005367946811020374, + 0.15326538681983948, + -0.05533298850059509, + -0.09113268554210663, + 0.008143937215209007, + -0.004919569939374924, + -0.014991662465035915, + -0.011351345106959343, + 0.014752855524420738, + 0.007573385257273912, + 0.03952096775174141, + 0.010365469381213188, + -0.09140542149543762, + 0.15088455379009247, + -0.01472645066678524, + 0.017867859452962875, + 0.018027329817414284, + 0.013853112235665321, + 0.00034381821751594543, + -0.012543314136564732, + -0.05464562028646469, + 0.031023139134049416, + -0.10841737687587738, + 0.02092374488711357, + 0.10830901563167572, + 0.009681674651801586, + -0.01073678582906723, + 0.028494717553257942, + 0.07130421698093414, + 0.03490341454744339, + -0.03179782256484032, + 0.024874208495020866, + -0.03611661493778229, + -0.037005651742219925, + 0.10122334957122803, + -0.10287059098482132, + -0.09251947700977325, + 0.05713935196399689, + -0.04685428738594055, + 0.013946603052318096, + 0.0618145652115345, + -0.05163811892271042, + 0.016939574852585793, + -0.03730814903974533, + -0.020109884440898895, + 0.06654921174049377, + -0.04807585850358009, + 0.007949749007821083, + -0.03321152552962303, + 0.000792155449744314, + -0.09253545850515366, + 3.9356294733049065e-34, + -0.00846805889159441, + 0.04891303926706314, + -0.07505122572183609, + 0.0152689004316926, + -0.1371375322341919, + 0.03345349803566933, + 0.05066751688718796, + -0.041448552161455154, + 0.022360606119036674, + 0.10341425985097885, + 0.020986506715416908, + 0.03183858096599579, + -0.03628353029489517, + -0.02828005701303482, + 0.0656660795211792, + 0.022368136793375015, + 0.05400122329592705, + 0.03727059066295624, + 0.03556356579065323, + -0.06710562109947205, + -0.019013134762644768, + -0.06436969339847565, + 0.009513924829661846, + 0.03303665295243263, + 0.00293253012932837, + 0.00840666238218546, + 0.07324355840682983, + 0.04271413013339043, + -0.04715815186500549, + -0.04244091734290123, + 0.04045455530285835, + 0.02124990150332451, + 0.03929464519023895, + 0.04435334727168083, + -0.07565167546272278, + -0.0339224711060524, + -0.051030006259679794, + -0.03703717514872551, + 0.07530149072408676, + 0.005167454481124878, + 0.029828283935785294, + 0.050450339913368225, + 0.12887336313724518, + -0.012585177086293697, + 0.005758578423410654, + 0.08694954216480255, + 0.015680452808737755, + 0.012736206874251366, + 0.009535464458167553, + 0.02806369960308075, + -0.010590280406177044, + 0.0013090654974803329, + -0.018182039260864258, + -0.01285051554441452, + -0.09367536753416061, + -0.036743804812431335, + 0.07693251222372055, + 0.05919519066810608, + 0.0201271940022707, + 0.019834917038679123, + -0.006727616302669048, + -0.03298776224255562, + -0.008227509446442127, + 0.048736657947301865, + 0.00167886633425951, + -0.021116407588124275, + 0.047584518790245056, + -0.0652700737118721, + 0.038573257625103, + -0.02707456424832344, + 0.05743211507797241, + 0.0967698022723198, + 0.03212607279419899, + -0.00028456715517677367, + 0.037855662405490875, + -0.0587037168443203, + 0.03803371638059616, + 0.02328036166727543, + -0.021935952827334404, + -0.024478204548358917, + -0.04988924041390419, + -0.00816277600824833, + -0.017501967027783394, + 0.05413096025586128, + -0.0075560035184025764, + 0.03175123780965805, + -0.05737990885972977, + 0.0262579545378685, + 0.025593062862753868, + -0.0031338974367827177, + -0.016125395894050598, + -0.007825769484043121, + -0.023537252098321915, + -0.039874859154224396, + -0.04130001366138458, + -2.3016070826997748e-08, + -0.046547770500183105, + -0.02991645224392414, + 0.0053299483843147755, + -0.009569135494530201, + -0.004278793465346098, + 0.0067466008476912975, + 0.023180043324828148, + -0.005305321887135506, + -0.01013755053281784, + -0.061282072216272354, + 0.027835983783006668, + 0.07302822917699814, + -0.083290234208107, + -0.017518572509288788, + 0.12552857398986816, + 0.032494667917490005, + -0.06040963530540466, + 0.009195404127240181, + -0.020509449765086174, + -0.026242392137646675, + -0.012498470023274422, + 0.0066359080374240875, + 0.007295568007975817, + 0.07678480446338654, + -0.012619493529200554, + 0.017854265868663788, + 0.018717190250754356, + 0.15807011723518372, + 0.06640602648258209, + 0.02095969207584858, + 0.06923654675483704, + 0.031081877648830414, + -0.007214321289211512, + -0.008590462617576122, + -0.018434077501296997, + -0.03368821740150452, + -0.05852695181965828, + 0.04010019078850746, + 0.030274761840701103, + 0.0977104902267456, + -0.05677911639213562, + 0.01278016995638609, + -0.024009451270103455, + -0.01988990232348442, + -0.03743293508887291, + 0.05499189719557762, + 0.0219099298119545, + 0.00961071066558361, + -0.09138358384370804, + -0.12731370329856873, + -0.032837510108947754, + 0.0712658241391182, + 0.025533897802233696, + 0.062096770852804184, + -0.03469860553741455, + 0.04009402543306351, + -0.00345969432964921, + -0.027883635833859444, + -0.08791312575340271, + 0.0014898711815476418, + 0.10316085070371628, + 0.07639739662408829, + 0.010989036411046982, + 0.06240471825003624 + ], + "arrow-line-down-right-bold||directional,pointer,pointing,arrowhead": [ + 0.01914346031844616, + -0.03662019595503807, + -0.059962183237075806, + 0.005244060885161161, + -0.02584167942404747, + -0.0052460976876318455, + 0.05770130082964897, + 0.008048945106565952, + -0.016192924231290817, + 0.009690058417618275, + 0.011744445189833641, + 0.09175540506839752, + 0.04089732840657234, + 0.011152034625411034, + -0.03952772170305252, + 0.03512381389737129, + -0.07462377846240997, + 0.04240928217768669, + 0.04603619500994682, + 0.05481414496898651, + -0.01666054129600525, + 0.006109700538218021, + -0.05679207667708397, + 0.023401400074362755, + -0.026422707363963127, + 0.033325280994176865, + 0.09508392959833145, + 0.017284462228417397, + -0.03012189455330372, + -0.06711501628160477, + -0.08582098037004471, + -0.04360300302505493, + -0.03578883782029152, + 0.04194096103310585, + -0.07868655771017075, + -0.018753252923488617, + 0.03145120292901993, + 0.00031041892361827195, + -0.03412368893623352, + 0.037355560809373856, + 0.036596063524484634, + -0.0046012368984520435, + -0.02472018264234066, + -0.010290953330695629, + 0.027548829093575478, + 0.06519965082406998, + -0.08744753897190094, + -0.04079744219779968, + 0.045600421726703644, + 0.07070831954479218, + -0.08161237090826035, + -0.05029064416885376, + -0.0701536238193512, + 0.019206061959266663, + 0.07101114094257355, + 0.08079688251018524, + -0.016026794910430908, + -0.025439566001296043, + 0.07012569904327393, + 0.01736295595765114, + 0.055133409798145294, + -0.03028680384159088, + 0.008218756876885891, + -0.010397149249911308, + 0.03947606682777405, + -0.009973390027880669, + -0.027374176308512688, + 0.048562921583652496, + 0.02435750514268875, + 0.028357235714793205, + 0.0015987888909876347, + -0.039466775953769684, + -0.022160695865750313, + -0.045298293232917786, + -0.026570681482553482, + -0.013527513481676579, + 0.04823001101613045, + 0.06970086693763733, + -0.01651313714683056, + -0.04205719754099846, + -0.05796048790216446, + 0.02572675421833992, + -0.062263261526823044, + 0.0672377273440361, + 0.03243136405944824, + 0.094132199883461, + -0.09318415820598602, + -0.0637698546051979, + -0.007144534029066563, + -0.0032498217187821865, + -0.016907336190342903, + -0.0032453767489641905, + -0.021240849047899246, + -0.012281591072678566, + 0.022051125764846802, + -0.027335960417985916, + 0.0833180621266365, + -0.08877863734960556, + -0.11315511912107468, + 0.06967013329267502, + 0.01337385829538107, + 0.0038227392360568047, + 0.03773817792534828, + -0.06049090623855591, + -0.013752072118222713, + -0.0025366104673594236, + -0.0019356857519596815, + -0.05328361690044403, + -0.04581573233008385, + -0.02706270106136799, + -0.04107014834880829, + -0.1353176087141037, + -0.052176013588905334, + -0.05705771967768669, + -0.025235479697585106, + -0.03214281424880028, + -0.11104047298431396, + -0.004007229581475258, + 0.11011612415313721, + -0.016390731558203697, + 0.011822797358036041, + -0.021800657734274864, + -0.048701219260692596, + -0.014046432450413704, + -0.04517490789294243, + 0.009347307495772839, + -0.0034641155507415533, + -4.080363500946847e-33, + 0.05878129228949547, + 0.013230393640697002, + 0.04340803250670433, + 0.019941557198762894, + 0.0036255076993256807, + 0.012148321606218815, + -0.0790199488401413, + -0.0201923456043005, + -0.09776420146226883, + 0.04338427260518074, + 0.1507900506258011, + -0.09359221905469894, + -0.059043433517217636, + 0.09329324215650558, + 0.0294374730437994, + -0.10144070535898209, + 0.020349035039544106, + 0.01874968595802784, + -0.1203944981098175, + 0.014467662200331688, + -0.045716021209955215, + 0.06542541831731796, + -0.0779062807559967, + -0.0588572695851326, + -0.005932377651333809, + 0.0027699784841388464, + -0.017127754166722298, + -0.011356710456311703, + -0.09051328152418137, + 0.01692558079957962, + 0.018894201144576073, + 0.019248664379119873, + 0.005366457160562277, + -0.08776314556598663, + -0.03941451013088226, + 0.010784182697534561, + -0.10537620633840561, + -0.025604842230677605, + -0.02485285885632038, + -0.034021031111478806, + -0.016718795523047447, + -0.028506146743893623, + -0.05814315751194954, + 0.0019899806939065456, + 0.0020589285995811224, + 0.14595870673656464, + -0.052382342517375946, + -0.08916151523590088, + 0.006345272529870272, + -0.003871845081448555, + -0.011205129325389862, + -0.007408601697534323, + 0.016946246847510338, + 0.017265785485506058, + 0.04006248712539673, + 0.012329114601016045, + -0.08977280557155609, + 0.16153976321220398, + -0.019737007096409798, + 0.020331626757979393, + 0.0177873857319355, + 0.011602523736655712, + 0.006217220798134804, + -0.015903998166322708, + -0.050897665321826935, + 0.03522292152047157, + -0.1078173816204071, + 0.020722180604934692, + 0.11195527017116547, + 0.012768374755978584, + -0.014788594096899033, + 0.0325268916785717, + 0.06574839353561401, + 0.03829493373632431, + -0.036897726356983185, + 0.02607904002070427, + -0.04227564483880997, + -0.03728964924812317, + 0.10530641674995422, + -0.09641984850168228, + -0.0983324646949768, + 0.05496431887149811, + -0.05154088884592056, + 0.007220190484076738, + 0.05510229989886284, + -0.05719534307718277, + 0.016220515593886375, + -0.03911866620182991, + -0.014763496816158295, + 0.06082892790436745, + -0.046791963279247284, + 0.012706920504570007, + -0.031103985384106636, + -0.0032113681081682444, + -0.08950082212686539, + 2.5103724194691343e-34, + -0.005667102988809347, + 0.04906928166747093, + -0.06639047712087631, + 0.020076682791113853, + -0.14062705636024475, + 0.03684595972299576, + 0.05256184935569763, + -0.04222385585308075, + 0.0187239907681942, + 0.10857414454221725, + 0.022679071873426437, + 0.031272996217012405, + -0.03517727181315422, + -0.030266767367720604, + 0.06922478973865509, + 0.023043161258101463, + 0.05029289424419403, + 0.03776289522647858, + 0.04348266124725342, + -0.06526266783475876, + -0.020185016095638275, + -0.07256641238927841, + 0.005307214800268412, + 0.03235943242907524, + 0.002241122769191861, + 0.007806026842445135, + 0.0770546942949295, + 0.0421404130756855, + -0.038704268634319305, + -0.04012196138501167, + 0.0435422882437706, + 0.014360773377120495, + 0.026546280831098557, + 0.048863962292671204, + -0.07586904615163803, + -0.03516928851604462, + -0.05515684187412262, + -0.03126230463385582, + 0.07183871418237686, + 0.002656313357874751, + 0.03147076442837715, + 0.05174288898706436, + 0.13422825932502747, + -0.012005599215626717, + -0.0008772563887760043, + 0.08917813748121262, + 0.010522115975618362, + 0.011361383832991123, + 0.00483638234436512, + 0.019695669412612915, + -0.012759207747876644, + 0.0020670827943831682, + -0.014643484726548195, + -0.01255929097533226, + -0.09210337698459625, + -0.03404691442847252, + 0.08181614428758621, + 0.05409769341349602, + 0.011929547414183617, + 0.0231879074126482, + -0.0031412963289767504, + -0.039022594690322876, + -0.015223920345306396, + 0.04964834451675415, + 0.00019252303172834218, + -0.016057873144745827, + 0.04275405779480934, + -0.06862295418977737, + 0.030824778601527214, + -0.02833886444568634, + 0.05408341437578201, + 0.08927691727876663, + 0.0301184244453907, + -0.0003678046923596412, + 0.03328666463494301, + -0.06889587640762329, + 0.03602968528866768, + 0.026352781802415848, + -0.02006090059876442, + -0.029375579208135605, + -0.04183831065893173, + -0.0017983323195949197, + -0.02246699295938015, + 0.05706192925572395, + -0.01097008679062128, + 0.033670082688331604, + -0.060580186545848846, + 0.02947821654379368, + 0.029922859743237495, + -0.00726552726700902, + -0.013827289454638958, + -0.0001037387628457509, + -0.027265340089797974, + -0.03402102366089821, + -0.045426249504089355, + -2.303863588792865e-08, + -0.05263803154230118, + -0.02839437685906887, + 0.009616801515221596, + -0.01064577791839838, + -2.4344719804503256e-06, + 0.005783052649348974, + 0.019231362268328667, + -0.002484495285898447, + -0.00796781200915575, + -0.06291647255420685, + 0.02306075021624565, + 0.0696633905172348, + -0.08476550877094269, + -0.013906504958868027, + 0.1347331553697586, + 0.02985309809446335, + -0.060938410460948944, + 0.008854475803673267, + -0.016196217387914658, + -0.02831631898880005, + -0.017121776938438416, + 0.0037004072219133377, + 0.005401236936450005, + 0.07720912992954254, + -0.011016587726771832, + 0.01909148320555687, + 0.015249151736497879, + 0.1599104255437851, + 0.059347547590732574, + 0.022852780297398567, + 0.0692279115319252, + 0.03224014490842819, + -0.005041689146310091, + -0.01038090419024229, + -0.008038464933633804, + -0.027561979368329048, + -0.05614754185080528, + 0.03610841557383537, + 0.039028726518154144, + 0.09292130917310715, + -0.0552421510219574, + 0.007738946937024593, + -0.02462470531463623, + -0.018514370545744896, + -0.036102574318647385, + 0.05484787002205849, + 0.027561241760849953, + 0.008427638560533524, + -0.09321893006563187, + -0.13097041845321655, + -0.03517790511250496, + 0.0767815113067627, + 0.02957097813487053, + 0.059955496340990067, + -0.03574912250041962, + 0.04278533533215523, + -0.004865433555096388, + -0.032934822142124176, + -0.08248627185821533, + -0.00018985540373250842, + 0.10300741344690323, + 0.07739345729351044, + 0.007906288839876652, + 0.059849340468645096 + ], + "arrow-line-left-bold||directional,pointer,pointing,arrowhead": [ + 0.01882120594382286, + -0.049211177974939346, + -0.05805835500359535, + 0.03333529457449913, + -0.00350995734333992, + -0.031132835894823074, + 0.06446095556020737, + -0.018231093883514404, + -0.01227680966258049, + -0.002590046962723136, + -0.004128193482756615, + 0.07933918386697769, + 0.025501739233732224, + 0.00670959148555994, + -0.04013635963201523, + 0.04155011102557182, + -0.08111455291509628, + 0.01660461351275444, + 0.05977896973490715, + 0.06274838745594025, + -0.04250229895114899, + 0.028798935934901237, + -0.04567212611436844, + 0.03139299526810646, + -0.0291784405708313, + 0.03216701000928879, + 0.1143733486533165, + 0.009825642220675945, + -0.036707259714603424, + -0.07191026210784912, + -0.05707639828324318, + -0.046937935054302216, + -0.0445004403591156, + 0.03958473727107048, + -0.0627611055970192, + -0.02189779281616211, + 0.02893177606165409, + -0.009820114821195602, + -0.03709733486175537, + 0.04098662734031677, + 0.053154345601797104, + 0.013503190129995346, + -0.01393373403698206, + -0.01391481515020132, + 0.04136047139763832, + 0.059311918914318085, + -0.08817413449287415, + -0.03498781844973564, + 0.06977826356887817, + 0.07273023575544357, + -0.08711022883653641, + -0.07494763284921646, + -0.06363724172115326, + -0.007418646477162838, + 0.055119190365076065, + 0.06880446523427963, + -0.01597491465508938, + -0.03860000893473625, + 0.06837081164121628, + 0.007625164929777384, + 0.05128387734293938, + -0.014867691323161125, + 0.02607007510960102, + -0.016210924834012985, + 0.03321686387062073, + -0.02426820434629917, + -0.013830232433974743, + 0.05287961661815643, + 0.02423481084406376, + 0.026898572221398354, + 0.004573136568069458, + -0.03578367456793785, + -0.03439664840698242, + -0.049414824694395065, + -0.01497397106140852, + -0.017364252358675003, + 0.04734864458441734, + 0.08257251232862473, + -0.011974086984992027, + -0.037831030786037445, + -0.06577960401773453, + -0.004482641350477934, + -0.05268567427992821, + 0.036157313734292984, + 0.05418150871992111, + 0.10309745371341705, + -0.10374962538480759, + -0.08296256512403488, + -0.008325952105224133, + 0.004110705107450485, + -0.01612406224012375, + 0.020553167909383774, + -0.03190623223781586, + -0.023555463179945946, + 0.05033291131258011, + -0.01840824820101261, + 0.07672296464443207, + -0.07153113186359406, + -0.13249337673187256, + 0.07205109298229218, + 0.027331208810210228, + 0.03319577872753143, + 0.02672043815255165, + -0.044187914580106735, + 0.004696929827332497, + 0.029989831149578094, + -0.012392871081829071, + -0.040852129459381104, + -0.07719472050666809, + -0.028665117919445038, + -0.03433830291032791, + -0.1593308001756668, + -0.054299451410770416, + -0.06376515328884125, + -0.01600257307291031, + -0.03668999671936035, + -0.12430931627750397, + 0.009551206603646278, + 0.11358229070901871, + -0.011083358898758888, + 0.00749347684904933, + -0.049656350165605545, + -0.04816562682390213, + -0.008388468995690346, + -0.04156305268406868, + 0.018237706273794174, + 0.004338610917329788, + -4.244922791828382e-33, + 0.03632643073797226, + 0.021288543939590454, + 0.03577851131558418, + 0.01483147032558918, + -0.012610641308128834, + 0.016326390206813812, + -0.04529714584350586, + 0.0012006602482870221, + -0.09626225382089615, + 0.01740318350493908, + 0.14599959552288055, + -0.08834204077720642, + -0.05048658698797226, + 0.0704512670636177, + 0.025622844696044922, + -0.0867854580283165, + 0.012677989900112152, + 0.02407732419669628, + -0.12651455402374268, + 0.02789974957704544, + -0.033799994736909866, + 0.05188189074397087, + -0.09612419456243515, + -0.0749354362487793, + -0.026636457070708275, + -0.019320214167237282, + -0.0017697421135380864, + -0.004615077283233404, + -0.0780385360121727, + 0.019864507019519806, + 0.03376643732190132, + 0.0469396710395813, + 0.018443116918206215, + -0.08293185383081436, + -0.04560244828462601, + 0.0062807840295135975, + -0.08695554733276367, + -0.042841970920562744, + -0.013208121992647648, + -0.002235413296148181, + -0.0043189674615859985, + -0.011029982008039951, + -0.026009220629930496, + -0.013933717273175716, + -0.015247819013893604, + 0.16759750247001648, + -0.0674905851483345, + -0.07430672645568848, + 0.013314838521182537, + 0.00308418576605618, + -0.015257766470313072, + 0.004480778239667416, + 0.025079835206270218, + 0.00022745189198758453, + 0.040870651602745056, + -0.0038156870286911726, + -0.08288490027189255, + 0.13999375700950623, + -0.008499694988131523, + -0.004253994673490524, + 0.010211706161499023, + 0.020235572010278702, + -0.003860561642795801, + -0.0028578692581504583, + -0.05576638877391815, + 0.03769223392009735, + -0.1117442399263382, + 0.030549880117177963, + 0.10884125530719757, + -0.010233701206743717, + 0.00627569854259491, + 0.022750593721866608, + 0.06712990254163742, + 0.021453607827425003, + -0.03345493972301483, + 0.00883269589394331, + -0.045071523636579514, + -0.020197369158267975, + 0.10534701496362686, + -0.10081493854522705, + -0.07346159219741821, + 0.050387416034936905, + -0.04725421592593193, + 0.0334305576980114, + 0.054975591599941254, + -0.055916257202625275, + 0.014562353491783142, + -0.040006984025239944, + -0.02598106861114502, + 0.09872769564390182, + -0.02228287234902382, + 0.0035485748667269945, + -0.05068721994757652, + 0.018537528812885284, + -0.0999678522348404, + 3.18725260197508e-34, + -0.004173373803496361, + 0.048752203583717346, + -0.06796024739742279, + 0.013538978062570095, + -0.1256246566772461, + 0.020767081528902054, + 0.03605608269572258, + -0.04061725363135338, + 0.0249418243765831, + 0.10479582846164703, + 0.02469444088637829, + 0.036990292370319366, + -0.05726831033825874, + -0.018706979230046272, + 0.08375133574008942, + -0.0004029263509437442, + 0.05522880703210831, + 0.037089452147483826, + 0.011641077697277069, + -0.06993643194437027, + -0.008692437782883644, + -0.062195561826229095, + 0.0304061621427536, + 0.034383535385131836, + 0.004322751425206661, + 0.006583424285054207, + 0.06066207215189934, + 0.03983256220817566, + -0.06477858126163483, + -0.043775126338005066, + 0.0358496718108654, + 0.025211524218320847, + 0.041567862033843994, + 0.03274628520011902, + -0.0534890815615654, + -0.033141955733299255, + -0.03873903304338455, + -0.05794622749090195, + 0.10095024108886719, + 0.010553588159382343, + 0.0386539101600647, + 0.039667125791311264, + 0.1027895137667656, + -0.015604853630065918, + 0.010427302680909634, + 0.08816704154014587, + 0.029977446421980858, + 0.013427569530904293, + 0.016629541292786598, + 0.03216247633099556, + -0.0023803398944437504, + 0.019349530339241028, + -0.0030448883771896362, + -0.01832873560488224, + -0.08664261549711227, + -0.039474207907915115, + 0.055476222187280655, + 0.057511959224939346, + 0.02918156236410141, + 0.0009284501429647207, + -0.002875507576391101, + -0.020124943926930428, + -0.012761472724378109, + 0.03051065467298031, + 0.005167774856090546, + -0.04038069769740105, + 0.06802442669868469, + -0.07795146107673645, + 0.0690661147236824, + -0.02254914492368698, + 0.06391037255525589, + 0.0981043204665184, + 0.023697443306446075, + 0.010929395444691181, + 0.027554700151085854, + -0.042889147996902466, + 0.054622892290353775, + 0.010883564129471779, + -0.01861977018415928, + -0.006303736008703709, + -0.05870242789387703, + -0.01622648909687996, + -0.008804921060800552, + 0.035321563482284546, + -0.002559854183346033, + 0.01698271371424198, + -0.029508918523788452, + -0.0005536503158509731, + 0.015236825682222843, + -0.007856648415327072, + -0.015642913058400154, + -0.022288095206022263, + -0.046179480850696564, + -0.05207632854580879, + -0.03889823332428932, + -2.1301032049336754e-08, + -0.0554724857211113, + -0.024881813675165176, + 0.0013219998218119144, + 0.002566812327131629, + -0.008900139480829239, + -0.009708669036626816, + 0.024186475202441216, + -0.015314389951527119, + -0.02760453335940838, + -0.0414595864713192, + 0.0318315289914608, + 0.07222117483615875, + -0.08131032437086105, + -0.03397025540471077, + 0.11108357459306717, + 0.035438358783721924, + -0.058680225163698196, + -0.006065674126148224, + -0.03468683362007141, + -0.02011425606906414, + -0.017456863075494766, + 0.0203794464468956, + 0.02193473093211651, + 0.059753213077783585, + -0.02479993924498558, + 0.011245878413319588, + 0.03489287570118904, + 0.1453857570886612, + 0.07157700508832932, + 0.022136690095067024, + 0.05854562297463417, + 0.010749615728855133, + -0.013431926257908344, + 0.00025247977464459836, + -0.039927951991558075, + -0.06626662611961365, + -0.06727658957242966, + 0.04485214129090309, + 0.024948811158537865, + 0.08968053013086319, + -0.06115620583295822, + 0.030380388721823692, + -0.007193342316895723, + -0.02234780415892601, + -0.04743335396051407, + 0.05289018899202347, + 0.014934001490473747, + 0.012954337522387505, + -0.09557971358299255, + -0.12074458599090576, + -0.03921838477253914, + 0.0659702718257904, + 0.006700766738504171, + 0.0645967647433281, + -0.029485434293746948, + 0.032388366758823395, + 0.003371953731402755, + -0.013257422484457493, + -0.08173295110464096, + 0.012207194231450558, + 0.11158566176891327, + 0.07478451728820801, + 0.014087616465985775, + 0.06754930317401886 + ], + "arrow-line-right-bold||directional,pointer,pointing,arrowhead": [ + 0.014464102685451508, + -0.05226123705506325, + -0.07081710547208786, + 0.03357800096273422, + -0.008884517475962639, + -0.01774660311639309, + 0.0627601221203804, + -0.01524573564529419, + -0.015472524799406528, + -0.0018290526932105422, + 0.008022011257708073, + 0.08190973848104477, + 0.025460734963417053, + 0.00364509504288435, + -0.03810502216219902, + 0.039406027644872665, + -0.08562332391738892, + 0.012385647743940353, + 0.061551373451948166, + 0.05334953963756561, + -0.02805824764072895, + 0.028487881645560265, + -0.04693964868783951, + 0.029901834204792976, + -0.027742428705096245, + 0.03599264845252037, + 0.10946141928434372, + 0.009189391508698463, + -0.037837132811546326, + -0.06863764673471451, + -0.0618390329182148, + -0.0490630567073822, + -0.04451283812522888, + 0.039827752858400345, + -0.05920456349849701, + -0.013875467702746391, + 0.023934481665492058, + -0.008340013213455677, + -0.039584044367074966, + 0.031236210837960243, + 0.04614467918872833, + 0.0022319278214126825, + -0.01930135488510132, + -0.018467538058757782, + 0.03471946716308594, + 0.06268282234668732, + -0.08205262571573257, + -0.03776117414236069, + 0.06355603039264679, + 0.07410816848278046, + -0.09033138304948807, + -0.07109323889017105, + -0.06874365359544754, + -0.006794195622205734, + 0.06741312146186829, + 0.07765939831733704, + -0.01702820137143135, + -0.034817300736904144, + 0.06867806613445282, + 0.006911422125995159, + 0.0409255251288414, + -0.019632378593087196, + 0.023207761347293854, + -0.009018556214869022, + 0.03654404729604721, + -0.016375958919525146, + -0.018069816753268242, + 0.05152676999568939, + 0.019946806132793427, + 0.03242143988609314, + 0.0034469091333448887, + -0.03391217067837715, + -0.03176899626851082, + -0.04315483942627907, + -0.01562504656612873, + -0.018371030688285828, + 0.0432601273059845, + 0.0815194696187973, + -0.0170309916138649, + -0.031241342425346375, + -0.06761494278907776, + -0.004828636534512043, + -0.057409174740314484, + 0.044560756534338, + 0.05521751195192337, + 0.10571258515119553, + -0.10103027522563934, + -0.07985571771860123, + 0.0019076272146776319, + 0.008923268876969814, + -0.008175059221684933, + 0.013661581091582775, + -0.030201556161046028, + -0.013963128440082073, + 0.0455470085144043, + -0.017040954902768135, + 0.0767369493842125, + -0.074139304459095, + -0.13239650428295135, + 0.06324177235364914, + 0.03134336322546005, + 0.024837268516421318, + 0.02736254595220089, + -0.04398089274764061, + 0.007091457489877939, + 0.024688301607966423, + -0.006320139858871698, + -0.03874040022492409, + -0.0696081668138504, + -0.020710386335849762, + -0.03445952385663986, + -0.16011109948158264, + -0.06062741577625275, + -0.05978147312998772, + -0.02025975100696087, + -0.032879408448934555, + -0.1230294480919838, + 0.004814928397536278, + 0.11013627797365189, + -0.008294215425848961, + 0.0062521351501345634, + -0.03546665981411934, + -0.05142984911799431, + -0.010524729266762733, + -0.041335366666316986, + 0.014629139564931393, + 0.0042359190993011, + -4.208674586810854e-33, + 0.029152056202292442, + 0.01800459250807762, + 0.04255574569106102, + 0.014108850620687008, + -0.00940603855997324, + 0.011022324673831463, + -0.05296780914068222, + 0.00025047469534911215, + -0.09593207389116287, + 0.0293738953769207, + 0.14555573463439941, + -0.09618775546550751, + -0.048923514783382416, + 0.08193701505661011, + 0.025905590504407883, + -0.08634582906961441, + 0.01225669402629137, + 0.024194840341806412, + -0.12271016091108322, + 0.029547659680247307, + -0.04312741011381149, + 0.049999114125967026, + -0.09313677996397018, + -0.07779645174741745, + -0.025624290108680725, + -0.02104046568274498, + -0.001163687789812684, + -0.003734034486114979, + -0.07451868802309036, + 0.018286770209670067, + 0.02555329166352749, + 0.0375584214925766, + 0.02176867611706257, + -0.08001191169023514, + -0.046207111328840256, + 0.0003041889285668731, + -0.08652110397815704, + -0.03951573744416237, + -0.01634400710463524, + -0.006449617445468903, + 0.0006830483325757086, + -0.006335498299449682, + -0.03166446462273598, + -0.012660747393965721, + -0.005602265242487192, + 0.16026663780212402, + -0.0662471279501915, + -0.06915436685085297, + 0.015166208148002625, + 0.004101967439055443, + -0.011183948256075382, + 0.01086364034563303, + 0.028469562530517578, + 0.014795824885368347, + 0.04221586138010025, + -0.0011746759992092848, + -0.07958272844552994, + 0.15254947543144226, + -0.017181746661663055, + -0.006298740394413471, + 0.008791511878371239, + 0.019816206768155098, + 0.006130372639745474, + -0.009568862617015839, + -0.05397064611315727, + 0.0426596999168396, + -0.11121714860200882, + 0.030501684173941612, + 0.11232977360486984, + -0.006551739294081926, + 0.001981937326490879, + 0.031016826629638672, + 0.06296288967132568, + 0.02498527057468891, + -0.03943224996328354, + 0.009328871965408325, + -0.054044459015131, + -0.018418800085783005, + 0.11122541129589081, + -0.09233197569847107, + -0.08068382740020752, + 0.04604966565966606, + -0.05397728458046913, + 0.03004048578441143, + 0.045334555208683014, + -0.06568603217601776, + 0.013858274556696415, + -0.04016214609146118, + -0.01975039206445217, + 0.09449201822280884, + -0.01593351550400257, + 0.00982904713600874, + -0.05293009802699089, + 0.016686029732227325, + -0.0979706272482872, + 1.6391163252431797e-34, + 0.0016051792772486806, + 0.05044504627585411, + -0.058591216802597046, + 0.019142592325806618, + -0.12828582525253296, + 0.02487345226109028, + 0.03292170912027359, + -0.04347595199942589, + 0.02253134921193123, + 0.11210823804140091, + 0.02995731309056282, + 0.03516177460551262, + -0.05825669690966606, + -0.020568495616316795, + 0.08822928369045258, + 0.0006247518467716873, + 0.04949069395661354, + 0.036864493042230606, + 0.021448511630296707, + -0.07136226445436478, + -0.009885909967124462, + -0.07168690860271454, + 0.03086528740823269, + 0.034729473292827606, + 0.0032332888804376125, + 0.006854534614831209, + 0.06305450946092606, + 0.03820021077990532, + -0.059179432690143585, + -0.03840861842036247, + 0.03942117467522621, + 0.01568719930946827, + 0.026936907321214676, + 0.038677096366882324, + -0.05025056004524231, + -0.03520099073648453, + -0.04005881026387215, + -0.05277647823095322, + 0.10338663309812546, + 0.009308517910540104, + 0.04366021975874901, + 0.04089618846774101, + 0.10709656774997711, + -0.014707709662616253, + 0.0019265178125351667, + 0.09260967373847961, + 0.029285266995429993, + 0.012974991463124752, + 0.01109667494893074, + 0.023715512827038765, + -0.008081936277449131, + 0.020816002041101456, + -0.0006842879811301827, + -0.019406452775001526, + -0.08338502794504166, + -0.03623390942811966, + 0.059267111122608185, + 0.05080090090632439, + 0.020620843395590782, + 0.0018858128460124135, + 0.0036576485726982355, + -0.025048552080988884, + -0.0213302168995142, + 0.03019147738814354, + 0.002859831787645817, + -0.039719440042972565, + 0.06496015936136246, + -0.08302666991949081, + 0.06562305986881256, + -0.024273863062262535, + 0.05966414138674736, + 0.08941208571195602, + 0.020891575142741203, + 0.014017435722053051, + 0.021651310846209526, + -0.05472302809357643, + 0.05558525025844574, + 0.012260404415428638, + -0.01389504224061966, + -0.0122825987637043, + -0.04726532846689224, + -0.006831534672528505, + -0.014637386426329613, + 0.04065296798944473, + -0.007667746860533953, + 0.02050893008708954, + -0.028559155762195587, + -0.0004999194643460214, + 0.02056966908276081, + -0.013912200927734375, + -0.01895226538181305, + -0.011186799965798855, + -0.056134216487407684, + -0.048750147223472595, + -0.04379504919052124, + -2.157590550666555e-08, + -0.06242653355002403, + -0.02506364695727825, + 0.006014883518218994, + 0.0009090350940823555, + -0.0037709155585616827, + -0.015432252548635006, + 0.020635537803173065, + -0.015382456593215466, + -0.02803335338830948, + -0.0401759073138237, + 0.025139760226011276, + 0.06652384996414185, + -0.08557126671075821, + -0.03087461180984974, + 0.12261289358139038, + 0.030115406960248947, + -0.06194457411766052, + -0.008078380487859249, + -0.031467992812395096, + -0.02371499501168728, + -0.024103360250592232, + 0.01478527206927538, + 0.020891893655061722, + 0.055496253073215485, + -0.02169608883559704, + 0.013303739950060844, + 0.03348039090633392, + 0.14640679955482483, + 0.06299716979265213, + 0.022335831075906754, + 0.05758972465991974, + 0.008313052356243134, + -0.014087180607020855, + -0.0006195153691805899, + -0.028853686526417732, + -0.061635661870241165, + -0.0663326159119606, + 0.04039829596877098, + 0.03715827688574791, + 0.08686783164739609, + -0.06195785850286484, + 0.02954217419028282, + -0.006999782752245665, + -0.023144586011767387, + -0.046936336904764175, + 0.05286553129553795, + 0.025241613388061523, + 0.010104859247803688, + -0.10106968134641647, + -0.1265133172273636, + -0.04475691542029381, + 0.07248703390359879, + 0.008696014061570168, + 0.06255661696195602, + -0.031701672822237015, + 0.035658229142427444, + 0.001070779049769044, + -0.016188085079193115, + -0.07443670183420181, + 0.00974525697529316, + 0.11703217774629593, + 0.07841181010007858, + 0.009972182102501392, + 0.065671905875206 + ], + "arrow-line-up-bold||directional,pointer,pointing,arrowhead,top": [ + -0.0067023239098489285, + -0.047640856355428696, + -0.07525715976953506, + -0.014558708295226097, + 0.0030344189144670963, + -0.015886405482888222, + 0.03996223583817482, + 0.006792483851313591, + -0.004593865945935249, + 0.026729270815849304, + -0.029937906190752983, + 0.10588368028402328, + 0.020712582394480705, + -0.013624677434563637, + -0.026057975366711617, + 0.04487721621990204, + -0.060088202357292175, + 0.03833772614598274, + 0.04984014481306076, + 0.04361560195684433, + -0.020489545539021492, + 0.002368814079090953, + -0.014566666446626186, + 0.026267360895872116, + -0.026031920686364174, + 0.023467842489480972, + 0.10603315383195877, + 0.03043944761157036, + -0.04584234952926636, + -0.04583984985947609, + -0.08219260722398758, + -0.041549887508153915, + -0.02660885453224182, + 0.02615576609969139, + -0.032780569046735764, + -0.016737477853894234, + 0.052046459168195724, + 0.006780585274100304, + -0.044479887932538986, + 0.033693667501211166, + 0.03278830647468567, + -0.011522537097334862, + -0.0324549600481987, + -0.030689863488078117, + 0.03800030052661896, + 0.05505707114934921, + -0.06695221364498138, + -0.027823112905025482, + 0.05192585289478302, + 0.05359293892979622, + -0.06505103409290314, + -0.0910683274269104, + -0.05896153673529625, + -0.0014067920856177807, + 0.08097618073225021, + 0.07855065912008286, + -0.024541521444916725, + -0.0574817918241024, + 0.07476909458637238, + 0.0022361399605870247, + 0.029079796746373177, + -0.007886570878326893, + 0.03951152041554451, + 0.008031207136809826, + 0.07189292460680008, + -0.01486898958683014, + -0.01439131610095501, + 0.07216107845306396, + 0.004456122871488333, + 0.03096618503332138, + 0.007962777279317379, + -0.028110070154070854, + -0.03133250027894974, + -0.05140102654695511, + -0.01820799894630909, + -0.014577810652554035, + 0.034247927367687225, + 0.05605946481227875, + 0.027821538969874382, + -0.033789802342653275, + -0.07057786732912064, + 0.01124921441078186, + -0.06520058959722519, + 0.06374134123325348, + 0.04134362190961838, + 0.08572972565889359, + -0.08836335688829422, + -0.08468320965766907, + -0.027409397065639496, + 0.006652542389929295, + -0.028383711352944374, + 0.0027079014107584953, + -0.022087600082159042, + -0.017518633976578712, + 0.023940332233905792, + -0.011570164002478123, + 0.07682771980762482, + -0.09972836077213287, + -0.12083231657743454, + 0.058423303067684174, + 0.009851975366473198, + 0.0033293357118964195, + 0.03779890015721321, + -0.041227322071790695, + -0.013645642437040806, + 0.0247805193066597, + 0.017584282904863358, + -0.03371680900454521, + -0.04528576508164406, + -0.034395087510347366, + -0.0426192469894886, + -0.16293959319591522, + -0.03915373235940933, + -0.04330252483487129, + -0.03672323748469353, + -0.022917980328202248, + -0.09653501957654953, + -0.011540167033672333, + 0.10935509949922562, + -0.02390812523663044, + 0.04680776968598366, + -0.04057736694812775, + -0.04415263235569, + -0.0021450927015393972, + -0.056345973163843155, + 0.0292389877140522, + 0.04856326803565025, + -3.954347935144805e-33, + 0.07227417826652527, + 0.04145924001932144, + 0.022969398647546768, + 0.02146565169095993, + -0.000727499311324209, + -0.0010502156801521778, + -0.057359352707862854, + -0.028697920963168144, + -0.10394339263439178, + 0.0446411557495594, + 0.12129737436771393, + -0.05568944290280342, + -0.06504414230585098, + 0.08285491168498993, + 0.029453683644533157, + -0.08835404366254807, + 0.03272196277976036, + 0.03881815820932388, + -0.12963390350341797, + 0.01710181124508381, + -0.03680652007460594, + 0.03359278663992882, + -0.08197259902954102, + -0.06716427206993103, + -0.024588564410805702, + -0.009130235761404037, + -0.03596561402082443, + 0.0021409145556390285, + -0.09789358079433441, + 0.01331978291273117, + 0.045929186046123505, + 0.01637246459722519, + 0.0026309038512408733, + -0.06446194648742676, + -0.062103625386953354, + 0.02156689763069153, + -0.08240167051553726, + -0.037026297301054, + -0.015215899795293808, + -0.01869731955230236, + -0.015488389879465103, + -0.0045257145538926125, + -0.025510676205158234, + 0.010041122324764729, + -0.016456035897135735, + 0.17588770389556885, + -0.09220504015684128, + -0.11449301987886429, + 0.00864297803491354, + 0.0063062673434615135, + -0.010475722141563892, + -0.011309336870908737, + 0.03443393483757973, + -0.005478674080222845, + 0.019936813041567802, + 0.0074369050562381744, + -0.06620752811431885, + 0.14672966301441193, + -0.0019160355441272259, + 0.009788778610527515, + 0.003448253031820059, + -0.013274995610117912, + -0.0003103877534158528, + 0.01601959392428398, + -0.03570310398936272, + 0.0429278202354908, + -0.10877633094787598, + 0.043679941445589066, + 0.10604958981275558, + 0.004979400895535946, + -0.019116809591650963, + 0.03904618322849274, + 0.03289966285228729, + 0.06504768133163452, + -0.026444802060723305, + 0.012543318793177605, + -0.03429151326417923, + -0.06531323492527008, + 0.09735602885484695, + -0.08114921301603317, + -0.0634278953075409, + 0.046397048979997635, + -0.03396517038345337, + 0.000596864556428045, + 0.056495942175388336, + -0.044946637004613876, + -0.01039285957813263, + -0.03401598706841469, + -0.02002018131315708, + 0.08598218858242035, + -0.031860824674367905, + 0.01628132164478302, + 0.013365945778787136, + -0.0007677785470150411, + -0.09318035840988159, + 6.617864676994029e-34, + -0.0014666595961898565, + 0.07334350049495697, + -0.051388517022132874, + -0.010278738103806973, + -0.12899598479270935, + 0.04169170558452606, + 0.04447144642472267, + -0.0531901940703392, + 0.02536584809422493, + 0.07567640393972397, + 0.005268019158393145, + 0.03433084860444069, + -0.010518113151192665, + -0.03707190230488777, + 0.08220448344945908, + 0.019119488075375557, + 0.037342365831136703, + 0.05701863765716553, + 0.016319766640663147, + -0.08395641297101974, + -0.0019812851678580046, + -0.08703500032424927, + 0.002885211491957307, + 0.006175346206873655, + -0.009679320268332958, + 0.010380447842180729, + 0.04981740936636925, + 0.051257502287626266, + -0.03535014018416405, + -0.05338182672858238, + 0.051141951233148575, + 0.01322946511209011, + 0.022787736728787422, + 0.05561494454741478, + -0.06453738361597061, + -0.007671094033867121, + -0.041373856365680695, + -0.05678650736808777, + 0.08657599985599518, + 0.008482144214212894, + 0.039724841713905334, + 0.03793427720665932, + 0.10551274567842484, + -0.008216106332838535, + 0.0007242908468469977, + 0.07523183524608612, + 0.0008870622841641307, + 0.014823462814092636, + -0.016869457438588142, + 0.032465022057294846, + -0.031047357246279716, + 0.007476888131350279, + -0.014574927277863026, + 0.010044953785836697, + -0.08079855889081955, + -0.01450013555586338, + 0.09418356418609619, + 0.06968891620635986, + 0.016833916306495667, + 0.0016875782748684287, + 0.007093391381204128, + -0.0018098291475325823, + -0.020166149362921715, + 0.03198776766657829, + -0.007450681179761887, + 0.0019299134146422148, + 0.07099398970603943, + -0.08270082622766495, + 0.02992643415927887, + -0.01451658271253109, + 0.05344395712018013, + 0.08103818446397781, + 0.0313442200422287, + 0.005002694670110941, + 0.03854730725288391, + -0.052456386387348175, + 0.056402452290058136, + 0.018637580797076225, + -0.010412832722067833, + -0.050135865807533264, + -0.06343521177768707, + 0.0020553695503622293, + -0.03413659706711769, + 0.07173295319080353, + -0.009406004101037979, + 0.03524800390005112, + -0.029084065929055214, + 0.03739326074719429, + 0.023687005043029785, + -0.028886515647172928, + -0.017706982791423798, + -0.020747486501932144, + -0.060264941304922104, + -0.04419144243001938, + -0.04543264955282211, + -2.166538060066614e-08, + -0.06263025104999542, + -0.04493365436792374, + -0.007135168183594942, + -0.013533992692828178, + 0.014026527293026447, + 0.0007917670882306993, + 0.041274309158325195, + -0.008297588676214218, + 0.004735101945698261, + -0.09755239635705948, + 0.020301396027207375, + 0.07627522945404053, + -0.08061681687831879, + -0.05542747303843498, + 0.11710909754037857, + 0.04488668963313103, + -0.05711817741394043, + 0.01729951985180378, + -0.04200252890586853, + -0.030165093019604683, + -0.04393241927027702, + 0.05629328265786171, + 0.02279447764158249, + 0.0667581856250763, + -0.029073871672153473, + 0.007028381340205669, + -0.000936829368583858, + 0.14588020741939545, + 0.07448085397481918, + 0.030621910467743874, + 0.06691548973321915, + 0.02991248294711113, + -0.0007591569446958601, + -0.017435165122151375, + -0.007671633269637823, + -0.009668480604887009, + -0.060900673270225525, + 0.045135196298360825, + 0.020498596131801605, + 0.08330840617418289, + -0.05023034289479256, + 0.008673079311847687, + -0.007756388746201992, + -0.0291922427713871, + -0.04032658413052559, + 0.05587760731577873, + -0.0022828325163573027, + 0.002115546725690365, + -0.12741948664188385, + -0.11965823173522949, + -0.04828936606645584, + 0.061188530176877975, + 0.029936911538243294, + 0.06299751251935959, + -0.05056379362940788, + 0.020459316670894623, + -0.004743547644466162, + -0.008395381271839142, + -0.0741472914814949, + 0.016523735597729683, + 0.123993419110775, + 0.04273587837815285, + 0.005183772649616003, + 0.07025599479675293 + ], + "arrow-line-up-left-bold||directional,pointer,pointing,arrowhead": [ + 0.0027923646848648787, + -0.035438813269138336, + -0.06329421699047089, + 0.005585991311818361, + -0.009747466072440147, + -0.008429746143519878, + 0.045884810388088226, + -0.008023419417440891, + -0.014728313311934471, + 0.01501660980284214, + -0.00845563318580389, + 0.10415039956569672, + 0.019190741702914238, + 0.003999689128249884, + -0.03621818125247955, + 0.04940919578075409, + -0.06892356276512146, + 0.03696084022521973, + 0.04486655443906784, + 0.0631990060210228, + -0.03605001047253609, + 0.008223694749176502, + -0.03804706037044525, + 0.03067847155034542, + -0.020120294764637947, + 0.02642405778169632, + 0.11613687127828598, + 0.018276873975992203, + -0.04010657221078873, + -0.04636145755648613, + -0.07984673231840134, + -0.03912350907921791, + -0.04626431688666344, + 0.017732292413711548, + -0.047539956867694855, + -0.020910726860165596, + 0.05110438913106918, + -0.0008809535065665841, + -0.051587268710136414, + 0.03995002061128616, + 0.030205870047211647, + -0.012636461295187473, + -0.02595617063343525, + -0.03600185737013817, + 0.04234834015369415, + 0.04932073876261711, + -0.08825234323740005, + -0.01961963064968586, + 0.06895708292722702, + 0.059559132903814316, + -0.08391941338777542, + -0.06932093948125839, + -0.0711061954498291, + 0.015492607839405537, + 0.05472352355718613, + 0.08161019533872604, + -0.03236350417137146, + -0.05007767304778099, + 0.08367973566055298, + 0.004105823114514351, + 0.04390782117843628, + -0.013535956852138042, + 0.037978120148181915, + 0.0036744032986462116, + 0.053247492760419846, + -0.02533562295138836, + -0.020059416070580482, + 0.06878433376550674, + 0.02299458160996437, + 0.03185383602976799, + 0.003687811316922307, + -0.027027375996112823, + -0.03307969123125076, + -0.04583435878157616, + -0.009363451041281223, + -0.010643898509442806, + 0.04473190754652023, + 0.060812536627054214, + 0.021733323112130165, + -0.038626160472631454, + -0.07229569554328918, + 0.018115438520908356, + -0.06377094984054565, + 0.0550696924328804, + 0.046190399676561356, + 0.08706080168485641, + -0.10176907479763031, + -0.0711948573589325, + -0.0061175026930868626, + 0.01270822063088417, + -0.027130234986543655, + 0.018343491479754448, + -0.017025815322995186, + -0.0227340217679739, + 0.04437311366200447, + -0.01984294131398201, + 0.07713886350393295, + -0.09164291620254517, + -0.11900418996810913, + 0.06122048199176788, + 0.0149427130818367, + 0.015550849959254265, + 0.03283276781439781, + -0.05284017696976662, + -0.0077758654952049255, + 0.020977869629859924, + -0.004928404465317726, + -0.034476522356271744, + -0.051371894776821136, + -0.04379526898264885, + -0.04029181972146034, + -0.15330170094966888, + -0.049117930233478546, + -0.05060487985610962, + -0.020344719290733337, + -0.032591573894023895, + -0.11269156634807587, + 0.000770255399402231, + 0.11050819605588913, + -0.024671025574207306, + 0.023375244811177254, + -0.04883936047554016, + -0.054628778249025345, + 0.0001617932430235669, + -0.04971931129693985, + 0.014073766767978668, + 0.01734764128923416, + -4.5598821767938134e-33, + 0.05661780387163162, + 0.02369236946105957, + 0.03917037695646286, + 0.014136589132249355, + -0.005917262751609087, + 0.00664450554177165, + -0.06706828624010086, + -0.008449120447039604, + -0.1044696718454361, + 0.03309454396367073, + 0.1405554711818695, + -0.06704495847225189, + -0.0610857792198658, + 0.0794977992773056, + 0.02806156687438488, + -0.09793155640363693, + 0.024521740153431892, + 0.044543564319610596, + -0.11683906614780426, + 0.020935997366905212, + -0.03229694813489914, + 0.04524834454059601, + -0.07359444350004196, + -0.06525781005620956, + -0.019472701475024223, + -0.005413100589066744, + -0.024035414680838585, + 0.001527654007077217, + -0.09939368069171906, + 0.012844566255807877, + 0.053024955093860626, + 0.023851631209254265, + -0.003234796691685915, + -0.08722330629825592, + -0.046748969703912735, + 0.01339857466518879, + -0.0821600928902626, + -0.03911884129047394, + -0.026161322370171547, + -0.019169658422470093, + -0.020700858905911446, + -0.011149806901812553, + -0.04724741354584694, + 0.0001865609228843823, + -0.016175907105207443, + 0.16463331878185272, + -0.08529876172542572, + -0.10896428674459457, + 0.02928382344543934, + -0.0011362654622644186, + -0.01837381161749363, + -0.007512802258133888, + 0.022183328866958618, + -0.000984040554612875, + 0.017631947994232178, + 0.014642251655459404, + -0.07789257913827896, + 0.1487603634595871, + -0.003606746206060052, + 0.006070337723940611, + 0.0053273700177669525, + 0.011702971532940865, + -0.0031278077512979507, + 0.012590546160936356, + -0.05889461934566498, + 0.030237248167395592, + -0.10763418674468994, + 0.029777834191918373, + 0.1065392717719078, + 0.0036155246198177338, + -0.022458277642726898, + 0.03099547140300274, + 0.04796392470598221, + 0.05838064104318619, + -0.03052947111427784, + 0.0036560131702572107, + -0.04809712991118431, + -0.053361404687166214, + 0.08500515669584274, + -0.07988016307353973, + -0.07812724262475967, + 0.0531863234937191, + -0.036599792540073395, + 0.0006500008748844266, + 0.06097719073295593, + -0.05697692185640335, + -0.009520440362393856, + -0.04431067034602165, + -0.02535194344818592, + 0.07540477812290192, + -0.027821268886327744, + 0.018202174454927444, + -0.01418258436024189, + 0.007590733002871275, + -0.0865047425031662, + 4.869093669890212e-34, + -0.004543787334114313, + 0.05049663782119751, + -0.06889297813177109, + -0.00463256286457181, + -0.1267600953578949, + 0.042555298656225204, + 0.05339669808745384, + -0.04860343411564827, + 0.04083343222737312, + 0.07739083468914032, + -0.001469623064622283, + 0.04258473962545395, + -0.03345470875501633, + -0.034730128943920135, + 0.07068680226802826, + 0.020782023668289185, + 0.05416380241513252, + 0.05625753849744797, + 0.030423004180192947, + -0.07246963679790497, + -0.015615138225257397, + -0.08115691691637039, + 0.014854317530989647, + 0.021997246891260147, + -0.006158743053674698, + 0.009956364519894123, + 0.05533202737569809, + 0.04323313757777214, + -0.04947461932897568, + -0.04555919021368027, + 0.048589352518320084, + 0.02443523332476616, + 0.036403365433216095, + 0.05043478682637215, + -0.0574430488049984, + -0.028106946498155594, + -0.05283421650528908, + -0.05647653713822365, + 0.10042441636323929, + 0.017938869073987007, + 0.056146230548620224, + 0.04216814786195755, + 0.09640306234359741, + -0.0039009798783808947, + 0.015435672365128994, + 0.0715160220861435, + 0.019628074020147324, + 0.021610187366604805, + -0.009885535575449467, + 0.03794049471616745, + -0.016547050327062607, + 0.021794689819216728, + -0.01973818987607956, + -0.006500924471765757, + -0.08090485632419586, + -0.032918546348810196, + 0.07442450523376465, + 0.06524378806352615, + 0.03343803063035011, + 0.010018197819590569, + -0.0023513268679380417, + -0.006010628771036863, + -0.011332528665661812, + 0.031239010393619537, + -0.008857185952365398, + -0.01952993869781494, + 0.07030420750379562, + -0.08017417043447495, + 0.03840169683098793, + -0.01663731038570404, + 0.06947162747383118, + 0.0964631587266922, + 0.015138906426727772, + 0.001327384146861732, + 0.03612670302391052, + -0.04522967338562012, + 0.04515575245022774, + 0.01490583922713995, + -0.012958251871168613, + -0.03685132414102554, + -0.06388218700885773, + -0.0019186933059245348, + -0.018388953059911728, + 0.07109978795051575, + -0.010656594298779964, + 0.030395880341529846, + -0.027578409761190414, + 0.023704618215560913, + 0.023969393223524094, + -0.015965506434440613, + 0.002646609442308545, + -0.026186028495430946, + -0.04850609228014946, + -0.03992383927106857, + -0.03851580247282982, + -2.2303307645188397e-08, + -0.047543905675411224, + -0.03582082688808441, + -0.010619600303471088, + -0.010972586460411549, + 0.005920779425650835, + -0.010632839985191822, + 0.032080426812171936, + -0.007447236217558384, + -0.014224428683519363, + -0.08766528218984604, + 0.025616323575377464, + 0.07871975749731064, + -0.08225811272859573, + -0.039927419275045395, + 0.11937349289655685, + 0.027293790131807327, + -0.06644681096076965, + 0.012125418521463871, + -0.041061390191316605, + -0.015289003029465675, + -0.020881013944745064, + 0.035790711641311646, + 0.013109576888382435, + 0.06834396719932556, + -0.024782542139291763, + 0.0168446097522974, + 0.009446658194065094, + 0.14292235672473907, + 0.06590339541435242, + 0.02577541209757328, + 0.06732257455587387, + 0.017045529559254646, + -0.015559845604002476, + -0.013275966979563236, + -0.011118731461465359, + -0.027270151302218437, + -0.05605898052453995, + 0.04525259509682655, + 0.018734313547611237, + 0.0832475870847702, + -0.05267558991909027, + 0.014021146111190319, + -0.012055584229528904, + -0.03419988974928856, + -0.0428587943315506, + 0.05870816856622696, + 0.005078576970845461, + 0.006600848864763975, + -0.127484992146492, + -0.1284341961145401, + -0.037111010402441025, + 0.061769869178533554, + 0.02155322954058647, + 0.05173030495643616, + -0.03294073045253754, + 0.03679388761520386, + -0.0016698247054591775, + -0.023846963420510292, + -0.0823880210518837, + 0.010581729002296925, + 0.11292695254087448, + 0.06638569384813309, + 0.014695086516439915, + 0.06765169650316238 + ], + "arrow-line-up-right-bold||directional,pointer,pointing,arrowhead": [ + 0.0010075044119730592, + -0.03551263362169266, + -0.07217723876237869, + 0.0009392952779307961, + -0.016067352145910263, + 0.0019338912097737193, + 0.043655022978782654, + -0.003186203772202134, + -0.01828070543706417, + 0.015194396488368511, + 0.0011197625426575541, + 0.10653145611286163, + 0.02055736444890499, + -0.0008796746260486543, + -0.03435823693871498, + 0.04988575726747513, + -0.0722229927778244, + 0.03773932158946991, + 0.046099450439214706, + 0.054525673389434814, + -0.024601735174655914, + 0.005211587063968182, + -0.03577820211648941, + 0.029614830389618874, + -0.01859556883573532, + 0.027376430109143257, + 0.10997670888900757, + 0.019622625783085823, + -0.03954985737800598, + -0.04296867549419403, + -0.08397134393453598, + -0.0397937148809433, + -0.0445072166621685, + 0.017185335978865623, + -0.044057730585336685, + -0.01390878576785326, + 0.046574827283620834, + -0.0004975139163434505, + -0.051275864243507385, + 0.034903425723314285, + 0.023724062368273735, + -0.021043675020337105, + -0.028962068259716034, + -0.03911059349775314, + 0.03878479078412056, + 0.05220552533864975, + -0.08354566991329193, + -0.01786714419722557, + 0.062758669257164, + 0.05709173530340195, + -0.0852852389216423, + -0.06890814751386642, + -0.07481084018945694, + 0.01615036092698574, + 0.06334134191274643, + 0.09355584532022476, + -0.0339323915541172, + -0.04681829735636711, + 0.086152583360672, + 0.003390916157513857, + 0.036955609917640686, + -0.016225319355726242, + 0.03601706773042679, + 0.009563161991536617, + 0.05704743042588234, + -0.017941679805517197, + -0.022464489564299583, + 0.06823953986167908, + 0.017580393701791763, + 0.0355716235935688, + 0.002450609114021063, + -0.025784650817513466, + -0.032237015664577484, + -0.04132334515452385, + -0.01090281456708908, + -0.010267626494169235, + 0.043683942407369614, + 0.05878545716404915, + 0.019979560747742653, + -0.035744160413742065, + -0.07246918231248856, + 0.019598504528403282, + -0.06629417091608047, + 0.0649818480014801, + 0.04818704351782799, + 0.0869341641664505, + -0.09868761897087097, + -0.0681072399020195, + 0.0014012791216373444, + 0.01567971333861351, + -0.02128167450428009, + 0.007556886412203312, + -0.01830558106303215, + -0.014449854381382465, + 0.03808130696415901, + -0.019761184230446815, + 0.07585269957780838, + -0.09504670649766922, + -0.11779000610113144, + 0.055560242384672165, + 0.0165594182908535, + 0.005098129156976938, + 0.033691342920064926, + -0.05275231599807739, + -0.00981138739734888, + 0.015221291221678257, + -0.001504013896919787, + -0.033112239092588425, + -0.04400262609124184, + -0.038961201906204224, + -0.04127427563071251, + -0.15173101425170898, + -0.050989117473363876, + -0.04501133784651756, + -0.02412588708102703, + -0.027828704565763474, + -0.11162420362234116, + -0.006502063479274511, + 0.1078309640288353, + -0.022631291300058365, + 0.02323269471526146, + -0.03930509835481644, + -0.05748049169778824, + 0.0006028329953551292, + -0.0513593815267086, + 0.00863611325621605, + 0.016359424218535423, + -4.407546925134876e-33, + 0.05328407883644104, + 0.023662159219384193, + 0.04373180493712425, + 0.014687604270875454, + -0.003505459986627102, + 0.002900652587413788, + -0.07591293007135391, + -0.011434159241616726, + -0.10277485847473145, + 0.0423881895840168, + 0.13860978186130524, + -0.06920391321182251, + -0.06054979935288429, + 0.08841866254806519, + 0.03125324472784996, + -0.09932135045528412, + 0.025818245485424995, + 0.04764046147465706, + -0.11464592814445496, + 0.02004215493798256, + -0.03809799998998642, + 0.04292810708284378, + -0.07058846205472946, + -0.06835142523050308, + -0.01956021599471569, + -0.003332233289256692, + -0.025617480278015137, + 0.002826005918905139, + -0.09804484248161316, + 0.011488853022456169, + 0.044421952217817307, + 0.014802108518779278, + -0.003261379199102521, + -0.08217151463031769, + -0.04611850529909134, + 0.008019094355404377, + -0.08204180747270584, + -0.037343818694353104, + -0.029862243682146072, + -0.021666279062628746, + -0.02136744186282158, + -0.006453259848058224, + -0.05301487445831299, + 0.0014886726858094335, + -0.007931681349873543, + 0.15897683799266815, + -0.08437375724315643, + -0.1058075875043869, + 0.02948550321161747, + 0.00016386309289373457, + -0.014390893280506134, + -0.0025618199724704027, + 0.02430225908756256, + 0.010802969336509705, + 0.018927475437521935, + 0.017539815977215767, + -0.07720071822404861, + 0.15572230517864227, + -0.008287456817924976, + 0.005771882366389036, + 0.0031552135478705168, + 0.00979344081133604, + 0.00403271010145545, + 0.010774023830890656, + -0.05882123112678528, + 0.03274669125676155, + -0.10629777610301971, + 0.027420325204730034, + 0.11085915565490723, + 0.007417196873575449, + -0.028093986213207245, + 0.03618115559220314, + 0.0406511016190052, + 0.06257223337888718, + -0.036636754870414734, + 0.004259459674358368, + -0.055104371160268784, + -0.052754782140254974, + 0.08781418949365616, + -0.07230909913778305, + -0.08162787556648254, + 0.05053509771823883, + -0.04104078561067581, + -0.007764614187180996, + 0.05515270307660103, + -0.06594038754701614, + -0.0108437929302454, + -0.04539212957024574, + -0.020418552681803703, + 0.07039424031972885, + -0.025230390951037407, + 0.02521640621125698, + -0.011684633791446686, + 0.004099145531654358, + -0.080987848341465, + 3.491999512425758e-34, + 0.0006433974485844374, + 0.052352242171764374, + -0.05660684406757355, + -0.0022037148009985685, + -0.12897871434688568, + 0.04693715274333954, + 0.0574042834341526, + -0.051634036004543304, + 0.039754197001457214, + 0.08084374666213989, + -0.0013095843605697155, + 0.04230843484401703, + -0.032819271087646484, + -0.03622165694832802, + 0.07495979219675064, + 0.02144860289990902, + 0.04848768189549446, + 0.05937056243419647, + 0.039465658366680145, + -0.06961638480424881, + -0.01435347180813551, + -0.0895056501030922, + 0.009665051475167274, + 0.021073153242468834, + -0.008002007380127907, + 0.01113568153232336, + 0.057120420038700104, + 0.041068803519010544, + -0.044496480375528336, + -0.0409865602850914, + 0.04950787127017975, + 0.016806120052933693, + 0.022283446043729782, + 0.05629488080739975, + -0.05519908666610718, + -0.02831858955323696, + -0.0559818260371685, + -0.052884090691804886, + 0.09705540537834167, + 0.016894038766622543, + 0.06201140582561493, + 0.042475104331970215, + 0.09848221391439438, + -0.0018059139838442206, + 0.0090727424249053, + 0.07213598489761353, + 0.017109176144003868, + 0.021008357405662537, + -0.016619613394141197, + 0.031052231788635254, + -0.022235069423913956, + 0.021276084706187248, + -0.01625244878232479, + -0.0063458336517214775, + -0.07866304367780685, + -0.02968987636268139, + 0.0784488096833229, + 0.05943940207362175, + 0.025612598285079002, + 0.011930137872695923, + 0.002362942323088646, + -0.01044467743486166, + -0.018167857080698013, + 0.030120084062218666, + -0.009652371518313885, + -0.01725863851606846, + 0.06789348274469376, + -0.08501043915748596, + 0.030185818672180176, + -0.01580190099775791, + 0.06482909619808197, + 0.08854760229587555, + 0.013491492718458176, + 0.0007383401971310377, + 0.031136294826865196, + -0.053011953830718994, + 0.0432017520070076, + 0.01554096583276987, + -0.00851074792444706, + -0.043513379991054535, + -0.05781784653663635, + 0.0062646628357470036, + -0.0237446092069149, + 0.07694793492555618, + -0.016041791066527367, + 0.03246119245886803, + -0.02860499918460846, + 0.026864666491746902, + 0.02852856181561947, + -0.02148749865591526, + 0.005688249599188566, + -0.018157437443733215, + -0.05175352096557617, + -0.03475387394428253, + -0.04183453693985939, + -2.2347647288256667e-08, + -0.0555865541100502, + -0.036449287086725235, + -0.007118850946426392, + -0.012089367024600506, + 0.011591189540922642, + -0.013160712085664272, + 0.028841378167271614, + -0.00624137232080102, + -0.012991534546017647, + -0.09013916552066803, + 0.020171834155917168, + 0.07602144777774811, + -0.08358961343765259, + -0.03631066530942917, + 0.12827454507350922, + 0.022747986018657684, + -0.06940053403377533, + 0.011915229260921478, + -0.04015401005744934, + -0.017311878502368927, + -0.026661362498998642, + 0.034720487892627716, + 0.01425771601498127, + 0.06891097873449326, + -0.024626826867461205, + 0.017430881038308144, + 0.005730987526476383, + 0.1438877284526825, + 0.06113559007644653, + 0.026914400979876518, + 0.06814442574977875, + 0.017509786412119865, + -0.013302878476679325, + -0.014549988321959972, + -0.0007689647609367967, + -0.018381036818027496, + -0.05432608351111412, + 0.04247221723198891, + 0.028327761217951775, + 0.07885941863059998, + -0.050680022686719894, + 0.010993734002113342, + -0.01344742625951767, + -0.03342439606785774, + -0.041372064501047134, + 0.06003270298242569, + 0.012469785287976265, + 0.005154294427484274, + -0.1334620863199234, + -0.1323428452014923, + -0.04061472415924072, + 0.06790021061897278, + 0.025142919272184372, + 0.0501629076898098, + -0.03490764647722244, + 0.03769112750887871, + -0.0032295703422278166, + -0.025696368888020515, + -0.07596533000469208, + 0.009765146300196648, + 0.11500648409128189, + 0.0674721822142601, + 0.011274653486907482, + 0.0649634525179863 + ], + "arrow-right-bold||directional,pointer,pointing,arrowhead": [ + 0.045349545776844025, + -0.06304419785737991, + -0.06204424425959587, + 0.03534485027194023, + 0.0005351549480110407, + -0.02336619608104229, + 0.06223619729280472, + -0.016210855916142464, + -0.006342479959130287, + 0.0018270682776346803, + 0.019462671130895615, + 0.0920809879899025, + 0.025308934971690178, + 0.012853196822106838, + -0.023783231154084206, + 0.03515684977173805, + -0.06969001889228821, + 0.030605008825659752, + 0.06539568305015564, + 0.05696502700448036, + -0.021609874442219734, + 0.03929891809821129, + -0.0333280935883522, + 0.03192758932709694, + -0.022222885861992836, + 0.03290900960564613, + 0.09330514073371887, + -0.006584816612303257, + -0.01627975143492222, + -0.06232841685414314, + -0.05005485564470291, + -0.056759681552648544, + -0.05183399096131325, + 0.04299912229180336, + -0.08076080679893494, + -0.020772261545062065, + 0.010233703069388866, + -0.004447900224477053, + -0.021566366776823997, + 0.04493208974599838, + 0.039681918919086456, + 0.002888978226110339, + -0.006171246990561485, + -0.018151815980672836, + 0.03061511367559433, + 0.07519640028476715, + -0.084975965321064, + -0.016780830919742584, + 0.05790894106030464, + 0.06507768481969833, + -0.08574246615171432, + -0.0853797197341919, + -0.0630245953798294, + -0.00851327832788229, + 0.0658520981669426, + 0.07828052341938019, + -0.04022551327943802, + -0.031237024813890457, + 0.0709405243396759, + 0.007978043518960476, + 0.04663751646876335, + -0.02836996503174305, + 0.029920965433120728, + -0.00721120135858655, + 0.04728442430496216, + -0.017320208251476288, + -0.009141341783106327, + 0.03817654773592949, + 0.0067481487058103085, + 0.036510445177555084, + 0.013830459676682949, + -0.03152626007795334, + -0.027164874598383904, + -0.04531295970082283, + -0.012780998833477497, + -0.021136978641152382, + 0.05396208167076111, + 0.0754859447479248, + -0.026003917679190636, + -0.032249439507722855, + -0.06887128949165344, + -0.010876769199967384, + -0.05436527729034424, + 0.04020744934678078, + 0.06532078236341476, + 0.10058896988630295, + -0.10194078087806702, + -0.052454352378845215, + -0.01177810225635767, + -0.00045688572572544217, + -0.015929272398352623, + 0.009738144464790821, + -0.03298390656709671, + -0.010790206491947174, + 0.047603897750377655, + -0.026393232867121696, + 0.08045056462287903, + -0.06679290533065796, + -0.1282636970281601, + 0.06820202618837357, + 0.038217946887016296, + 0.021817287430167198, + 0.021052831783890724, + -0.06161757558584213, + 0.012856361456215382, + 0.019670413807034492, + -0.02177419699728489, + -0.04330345243215561, + -0.06005663797259331, + -0.021281862631440163, + -0.04259469732642174, + -0.15990500152111053, + -0.05094441398978233, + -0.054645393043756485, + -0.028714152052998543, + -0.03405254706740379, + -0.12487746775150299, + -0.0053587500005960464, + 0.11143749207258224, + -0.021103497594594955, + 0.007165250368416309, + -0.042896196246147156, + -0.049143195152282715, + -0.020824652165174484, + -0.04906413331627846, + 0.007287134882062674, + -0.019783377647399902, + -4.0418726731131404e-33, + 0.02955414354801178, + 0.02156895212829113, + 0.017021775245666504, + 0.014783956110477448, + -0.014613544568419456, + 0.010453480295836926, + -0.03867611661553383, + -0.007095948792994022, + -0.09622860699892044, + 0.014206064864993095, + 0.14451777935028076, + -0.03796029090881348, + -0.053921934217214584, + 0.07283637672662735, + 0.023562652990221977, + -0.08414413779973984, + 0.0255493875592947, + 0.04810282588005066, + -0.13147541880607605, + 0.013215715996921062, + -0.02195081301033497, + 0.05695448815822601, + -0.1086275577545166, + -0.06965368241071701, + -0.045276422053575516, + -0.015368496999144554, + -0.00029021978843957186, + -0.006038944702595472, + -0.08484461158514023, + 0.02011103555560112, + 0.011914829723536968, + 0.05225500464439392, + 0.013880664482712746, + -0.0849209651350975, + -0.015210513025522232, + -0.01025150716304779, + -0.08791524916887283, + -0.03279609978199005, + -0.01795205846428871, + -0.007894771173596382, + -0.00874477531760931, + -0.01636834442615509, + -0.03748224303126335, + -0.014836667105555534, + -0.0009396710665896535, + 0.16317129135131836, + -0.06270036101341248, + -0.07500321418046951, + 0.02916559763252735, + -0.007584922946989536, + 0.005210143513977528, + 0.004327912349253893, + 0.020254412665963173, + 0.030139897018671036, + 0.03986060246825218, + 0.008510985411703587, + -0.07848010212182999, + 0.14493924379348755, + -0.012085472233593464, + -0.0073248520493507385, + 0.000761740084271878, + 0.024325164034962654, + 0.023456990718841553, + -0.02230391465127468, + -0.08305181562900543, + 0.0383727066218853, + -0.11712384968996048, + 0.03891955688595772, + 0.11344312876462936, + -0.007002216298133135, + 0.0204472616314888, + 0.04137369617819786, + 0.05319986119866371, + 0.0206121988594532, + -0.04157506674528122, + 0.01507494505494833, + -0.04733338952064514, + -0.0324958935379982, + 0.09099557995796204, + -0.09081003814935684, + -0.09246913343667984, + 0.050380218774080276, + -0.057363834232091904, + 0.026957137510180473, + 0.044170185923576355, + -0.06595429033041, + 0.0016141270752996206, + -0.03491559624671936, + -0.01694212295114994, + 0.09092491865158081, + -0.02701408788561821, + 0.006311879958957434, + -0.051061589270830154, + 0.01682344265282154, + -0.09455732256174088, + 3.1167403896700127e-34, + -0.006131274159997702, + 0.04730754345655441, + -0.06277024745941162, + 0.014774435199797153, + -0.13317829370498657, + 0.0188350398093462, + 0.0515839122235775, + -0.04438556730747223, + -0.0033246446400880814, + 0.07925304770469666, + 0.02586115524172783, + 0.02650495059788227, + -0.05920286476612091, + -0.020112577825784683, + 0.0700964629650116, + -0.002039889805018902, + 0.059254709631204605, + 0.047733865678310394, + 0.011133958585560322, + -0.05917820334434509, + -0.014885371550917625, + -0.052721407264471054, + 0.016582094132900238, + 0.055088672786951065, + 0.0016958806663751602, + 0.02822825126349926, + 0.06925343722105026, + 0.03728383034467697, + -0.06342574208974838, + -0.0379592701792717, + 0.03588603436946869, + 0.012818966992199421, + 0.040262430906295776, + 0.048807136714458466, + -0.04478983208537102, + -0.04405032843351364, + -0.03888530284166336, + -0.07587012648582458, + 0.1090182438492775, + 0.004938758444041014, + 0.05117902532219887, + 0.02983533963561058, + 0.09896473586559296, + 0.016211025416851044, + 0.008302193135023117, + 0.09496850520372391, + 0.04189552739262581, + 0.008394777774810791, + 0.028073115274310112, + 0.012727000750601292, + 0.007260449696332216, + -0.00346191693097353, + 0.005488874390721321, + -0.03797436133027077, + -0.07599293440580368, + -0.048499271273612976, + 0.058436568826436996, + 0.03965641185641289, + 0.03865702822804451, + 0.006369621958583593, + -0.004774883855134249, + -0.017926111817359924, + 0.002753940876573324, + 0.041627608239650726, + -0.011400423012673855, + -0.0494665801525116, + 0.061728090047836304, + -0.07849100977182388, + 0.0611882321536541, + -0.02589917555451393, + 0.061406176537275314, + 0.09158120304346085, + 0.03263316676020622, + 0.0014149165945127606, + 0.039624910801649094, + -0.05411182716488838, + 0.05575410649180412, + 0.007268495392054319, + -0.020477965474128723, + -0.013765078969299793, + -0.0678967610001564, + -0.005987504962831736, + -0.015684081241488457, + 0.03303076699376106, + -0.009909032844007015, + 0.022347841411828995, + -0.02934757061302662, + -0.012155523523688316, + 0.012240862473845482, + -0.012158146128058434, + -0.01635609194636345, + -0.0037553024012595415, + -0.029362458735704422, + -0.06546471267938614, + -0.04421686753630638, + -2.0371839326571717e-08, + -0.06715996563434601, + -0.017375992611050606, + -0.0005283901118673384, + -0.009092858992516994, + -0.01643947698175907, + -0.02342209406197071, + 0.008563864976167679, + -0.007148102391511202, + -0.028260383754968643, + -0.03783886507153511, + 0.020077338442206383, + 0.05128781870007515, + -0.07771456241607666, + -0.026449378579854965, + 0.12420803308486938, + 0.027053195983171463, + -0.060145821422338486, + -0.0042624035850167274, + -0.02972293645143509, + -0.01836761273443699, + -0.019484519958496094, + 0.020418468862771988, + 0.025391265749931335, + 0.04879103600978851, + -0.014654608443379402, + 0.007844404317438602, + 0.017738893628120422, + 0.1322137862443924, + 0.07523547857999802, + 0.018351523205637932, + 0.05206042900681496, + 0.00768260145559907, + -0.02483457140624523, + 0.010781890712678432, + -0.0511871799826622, + -0.039430174976587296, + -0.07095477730035782, + 0.03865997865796089, + 0.038134489208459854, + 0.10034100711345673, + -0.05786309018731117, + 0.018494490534067154, + -0.019847266376018524, + -0.01722702570259571, + -0.05374111980199814, + 0.06642609089612961, + 0.03555205464363098, + 0.007600306998938322, + -0.0919552892446518, + -0.13186481595039368, + -0.031544774770736694, + 0.06657956540584564, + 0.013348889537155628, + 0.08956805616617203, + -0.010664922185242176, + 0.03626401722431183, + -0.00808000285178423, + -0.014837019145488739, + -0.06663880497217178, + 0.008780105039477348, + 0.1207255944609642, + 0.08710923045873642, + 0.003258077660575509, + 0.06853827834129333 + ], + "arrow-square-down-bold||directional,pointer,pointing,arrowhead": [ + 0.058576785027980804, + -0.023979386314749718, + -0.032331015914678574, + 0.012981466017663479, + -0.04178299382328987, + -0.015264540910720825, + 0.05534966289997101, + -0.005328597966581583, + 0.010184939019382, + 0.003615285037085414, + 0.009746833704411983, + 0.10338278114795685, + 0.045531418174505234, + 0.016166871413588524, + -0.05227024108171463, + 0.029962901026010513, + -0.05194617807865143, + 0.06356967240571976, + 0.05598491430282593, + 0.04852761700749397, + 0.00423561641946435, + 0.0074469721876084805, + -0.04683100804686546, + 0.013551875948905945, + -0.03074716404080391, + 0.018575865775346756, + 0.08452079445123672, + 0.029433822259306908, + -7.096499757608399e-05, + -0.0632278248667717, + -0.05309171602129936, + -0.06432300806045532, + -0.042564306408166885, + 0.043067384511232376, + -0.10269836336374283, + -0.02095946855843067, + 0.02132054977118969, + 0.00588655611500144, + -0.0016494026640430093, + 0.052072566002607346, + 0.05385776236653328, + -0.00602774228900671, + 0.00600121496245265, + -0.015701279044151306, + 0.033070918172597885, + 0.06673426181077957, + -0.06350782513618469, + -0.03258682042360306, + 0.03314962610602379, + 0.04572830721735954, + -0.07113751024007797, + -0.07816597074270248, + -0.030119480565190315, + -0.02645917795598507, + 0.06927540898323059, + 0.07230199128389359, + -0.018399937078356743, + -0.014834814704954624, + 0.0789056271314621, + 0.019582310691475868, + 0.06608245521783829, + -0.03740128502249718, + 0.013245061971247196, + -0.013241778127849102, + 0.024266362190246582, + -0.003961783833801746, + -0.018218548968434334, + 0.02186674252152443, + 0.01270617637783289, + 0.03274333104491234, + 0.018124623224139214, + -0.01686974987387657, + -0.01748645305633545, + -0.02939244732260704, + -0.021341944113373756, + -0.059895988553762436, + 0.05349245294928551, + 0.04539620131254196, + -0.010666092857718468, + -0.029054803773760796, + -0.058721594512462616, + 0.01862792856991291, + -0.07053247839212418, + 0.04806520417332649, + 0.019988587126135826, + 0.07503356039524078, + -0.08196493238210678, + -0.06536190211772919, + -0.050948020070791245, + -0.013811800628900528, + -0.010728229768574238, + -0.007320732809603214, + -0.03371454030275345, + -0.004758948925882578, + 0.020682064816355705, + -0.03587748482823372, + 0.10474856942892075, + -0.0796799287199974, + -0.13093319535255432, + 0.06905841827392578, + 0.02623649500310421, + -0.0024511320516467094, + 0.018522411584854126, + -0.0862826555967331, + -0.0026979725807905197, + 0.004055938683450222, + 0.011741884052753448, + -0.062272317707538605, + -0.031790196895599365, + -0.02099415846168995, + -0.056378863751888275, + -0.137472465634346, + -0.03565223142504692, + -0.019013650715351105, + -0.037983812391757965, + -0.005359414964914322, + -0.10144200921058655, + -0.032513245940208435, + 0.11559074372053146, + -0.034597404301166534, + 0.03338970988988876, + -0.02782067470252514, + -0.044180117547512054, + -0.0007667928584851325, + -0.05427587777376175, + 0.013054954819381237, + -0.01545468345284462, + -3.6876510421462754e-33, + 0.05132872611284256, + 0.059236910194158554, + 0.02746117301285267, + 0.022803910076618195, + -0.0030071763321757317, + -0.011674371547996998, + -0.042658962309360504, + -0.06077294051647186, + -0.05364836007356644, + 0.02600189484655857, + 0.12719780206680298, + -0.06752026826143265, + -0.09971590340137482, + 0.0943988636136055, + 0.04157331585884094, + -0.09440373629331589, + 0.05484679713845253, + 0.058576103299856186, + -0.10804034769535065, + 0.00895838625729084, + -0.020427299663424492, + 0.06247589364647865, + -0.11206035315990448, + -0.02296767570078373, + -0.011480949819087982, + 0.011497591622173786, + -0.02482823096215725, + -0.01064401026815176, + -0.057215239852666855, + 0.03465114161372185, + 0.026828331872820854, + 0.05317041277885437, + -0.012417443096637726, + -0.08490061014890671, + -0.0056669991463422775, + -0.0038847853429615498, + -0.07387584447860718, + -0.021318024024367332, + -0.015754224732518196, + -0.04414481297135353, + -0.011874834075570107, + -0.038267701864242554, + -0.051978785544633865, + -0.004404709208756685, + 0.01691952347755432, + 0.12297070771455765, + -0.03751547262072563, + -0.09866117686033249, + -0.017969544976949692, + -0.02700452134013176, + 0.0066404789686203, + -0.008200408890843391, + -0.0021073955576866865, + 0.03134869039058685, + 0.06810379028320312, + -0.013797665946185589, + -0.10655858367681503, + 0.12700261175632477, + 0.012426979839801788, + 0.04339654743671417, + 0.014435757882893085, + -0.007045657839626074, + 0.008368946611881256, + -0.03152388706803322, + -0.06801387667655945, + 0.032604459673166275, + -0.10586079955101013, + 0.0037031308747828007, + 0.07542320340871811, + 0.01492417324334383, + 0.007773401215672493, + 0.02104273810982704, + 0.05593213811516762, + 0.03594600036740303, + -0.04227656498551369, + 0.029441189020872116, + -0.01948997564613819, + -0.056410301476716995, + 0.11279492825269699, + -0.12744946777820587, + -0.0963597223162651, + 0.06856968253850937, + -0.07271701097488403, + -0.036228030920028687, + 0.05094475299119949, + -0.0748773142695427, + 0.014366653747856617, + -0.0476822704076767, + -0.0304159764200449, + 0.058637604117393494, + -0.06840711086988449, + 0.018863309174776077, + -0.02666144073009491, + 0.006360391620546579, + -0.08874353021383286, + 3.522117881745733e-34, + -0.021145496517419815, + 0.08965514600276947, + -0.06402582675218582, + 0.015679987147450447, + -0.13318808376789093, + 0.009685439988970757, + 0.044244349002838135, + -0.050541952252388, + 0.012679224833846092, + 0.06542316824197769, + 0.009367191232740879, + 0.00044353812700137496, + -0.03109874576330185, + -0.04259498044848442, + 0.07283560931682587, + 0.022224120795726776, + 0.07837305217981339, + 0.04692688211798668, + -0.016190193593502045, + -0.06908345967531204, + -0.017794135957956314, + -0.06557322293519974, + 0.020853344351053238, + 0.026383625343441963, + 0.002350905444473028, + 0.032083164900541306, + 0.07229834049940109, + 0.04623842611908913, + -0.03152937814593315, + -0.026236144825816154, + 0.027114572003483772, + 0.027416016906499863, + 0.015017766505479813, + 0.05404198169708252, + -0.08012492954730988, + -0.04192155599594116, + -0.03918730467557907, + -0.06885901093482971, + 0.07140562683343887, + -0.007163443602621555, + 0.05592087656259537, + 0.028210259974002838, + 0.11210647225379944, + 0.033866506069898605, + 0.02455052360892296, + 0.08160310238599777, + 0.03769510239362717, + 0.006369367707520723, + 0.027292093262076378, + -0.02088230662047863, + -0.002490787301212549, + -0.035775575786828995, + -0.01138152927160263, + 0.004081268794834614, + -0.09862431138753891, + -0.02456807717680931, + 0.08491218835115433, + 0.06922521442174911, + 0.02342182956635952, + 0.03093266859650612, + -0.016254227608442307, + -0.03916052728891373, + -0.004847483243793249, + 0.05108588933944702, + -0.01742803305387497, + -0.02022670954465866, + 0.05979805812239647, + -0.038474299013614655, + 0.028685519471764565, + 0.011447258293628693, + 0.04866240173578262, + 0.10462354123592377, + 0.03908450901508331, + -0.007572272326797247, + 0.035113804042339325, + -0.05759566277265549, + 0.018956100568175316, + 0.011456329375505447, + -0.03449774906039238, + -0.008996888063848019, + -0.054686833173036575, + 0.021794822067022324, + -0.004318063147366047, + 0.017138974741101265, + 0.0004349430091679096, + 0.022950902581214905, + -0.06766178458929062, + 0.05674252659082413, + 0.0049657877534627914, + -0.002800733782351017, + -0.018448980525135994, + -0.011635909788310528, + -0.020864006131887436, + -0.04839128255844116, + -0.047741904854774475, + -2.0686840684902563e-08, + -0.07849753648042679, + -0.010555644519627094, + 0.008567157201468945, + -0.016920017078518867, + -0.006588500924408436, + -0.012525318190455437, + -0.0002859714441001415, + -0.006727030500769615, + 0.007216937839984894, + -0.07666830718517303, + -0.0028895456343889236, + 0.05328622832894325, + -0.07930166274309158, + -0.02290050871670246, + 0.12044071406126022, + 0.042751412838697433, + -0.05250866338610649, + 0.013549315743148327, + -0.014513418078422546, + -0.01492016389966011, + -0.018476668745279312, + 0.0034558409824967384, + -0.0007745835464447737, + 0.091151162981987, + -0.05186818167567253, + -0.0016185393324121833, + 0.004352070856839418, + 0.1676471084356308, + 0.07678577303886414, + 0.030207058414816856, + 0.07227426767349243, + 0.05516940355300903, + -0.0107337711378932, + 0.009475680068135262, + -0.03778241202235222, + -0.04922935739159584, + -0.05964783951640129, + 0.0497099794447422, + 0.03370470926165581, + 0.09916980564594269, + -0.04817861318588257, + -0.010620483197271824, + 0.0010737417032942176, + -0.01109516154974699, + -0.02660161256790161, + 0.0945756733417511, + 0.033259350806474686, + 0.0028899218887090683, + -0.08762644231319427, + -0.11861557513475418, + -0.019123662263154984, + 0.05586876720190048, + 0.01538221724331379, + 0.09885502606630325, + -0.03706169128417969, + 0.026046356186270714, + -0.029669078066945076, + -0.013899051584303379, + -0.07352550327777863, + -0.0034813852980732918, + 0.08820527046918869, + 0.07980510592460632, + -0.006224865093827248, + 0.07456805557012558 + ], + "arrow-square-down-left-bold||directional,pointer,pointing,arrowhead": [ + 0.061678286641836166, + -0.02720658667385578, + -0.030842619016766548, + 0.013447717763483524, + -0.04296771436929703, + -0.006955131888389587, + 0.04696037247776985, + -0.005027171224355698, + -0.0009778186213225126, + 0.0016799800796434283, + 0.024630311876535416, + 0.10102856904268265, + 0.042527686804533005, + 0.02484116703271866, + -0.06285925954580307, + 0.031315673142671585, + -0.06472034752368927, + 0.053719278424978256, + 0.049806371331214905, + 0.058140043169260025, + -0.0019220500253140926, + 0.0027571599930524826, + -0.06402495503425598, + 0.00933681707829237, + -0.023857858031988144, + 0.03246341273188591, + 0.07872714847326279, + 0.027598222717642784, + -0.0011760970810428262, + -0.07054807990789413, + -0.05341922119259834, + -0.058347225189208984, + -0.049748584628105164, + 0.04251674562692642, + -0.11108549684286118, + -0.028937185183167458, + 0.017119446769356728, + 0.0022919054608792067, + -0.0020918070804327726, + 0.04223591461777687, + 0.04589012637734413, + -0.024078918620944023, + 0.008286596275866032, + -0.01011034194380045, + 0.03648640587925911, + 0.06733577698469162, + -0.07974810153245926, + -0.02645283192396164, + 0.03892067074775696, + 0.0466628298163414, + -0.08285757154226303, + -0.07337357848882675, + -0.04131677374243736, + -0.003555301344022155, + 0.06534389406442642, + 0.06967367976903915, + -0.017273807898163795, + -0.01971375197172165, + 0.08780522644519806, + 0.023294467478990555, + 0.07147107273340225, + -0.03285984694957733, + 0.008310380391776562, + -0.009564974345266819, + 0.017765119671821594, + -0.016728801652789116, + -0.021066177636384964, + 0.0251773688942194, + 0.02639259770512581, + 0.02283172681927681, + 0.01887291669845581, + -0.015731822699308395, + -0.02604401856660843, + -0.032789502292871475, + -0.0035369782708585262, + -0.06385575234889984, + 0.05566781759262085, + 0.04437195509672165, + -0.010424003936350346, + -0.030738340690732002, + -0.06712126731872559, + 0.03197310119867325, + -0.06479144841432571, + 0.04939012601971626, + 0.02991095744073391, + 0.07474760711193085, + -0.07963032275438309, + -0.0466693677008152, + -0.034214988350868225, + -0.00946745928376913, + -0.019364522770047188, + -0.001663815462961793, + -0.02490871772170067, + -0.020398808643221855, + 0.02347373776137829, + -0.0363239161670208, + 0.0922703966498375, + -0.0777350515127182, + -0.12548740208148956, + 0.0680474191904068, + 0.03400305658578873, + -0.012485599145293236, + 0.020709648728370667, + -0.09281481057405472, + -0.0005672110710293055, + -0.003363129450008273, + 0.002477328758686781, + -0.056035250425338745, + -0.032128553837537766, + -0.028339779004454613, + -0.05934128537774086, + -0.1311141848564148, + -0.04248514771461487, + -0.030170893296599388, + -0.02881019003689289, + -0.011053225956857204, + -0.11734314262866974, + -0.022702660411596298, + 0.13155929744243622, + -0.03572239726781845, + 0.02162930555641651, + -0.03384153172373772, + -0.042141202837228775, + -0.009571651928126812, + -0.05231620371341705, + 0.013856921344995499, + -0.03275036811828613, + -3.957126142574577e-33, + 0.045341260731220245, + 0.04696789011359215, + 0.03274426981806755, + 0.02293296717107296, + -0.003954460844397545, + -0.007677986286580563, + -0.043072089552879333, + -0.04724724218249321, + -0.051460396498441696, + 0.027411367744207382, + 0.13380658626556396, + -0.06046617031097412, + -0.09837794303894043, + 0.09308827668428421, + 0.04999931901693344, + -0.10313168168067932, + 0.047026101499795914, + 0.05911533161997795, + -0.10677902400493622, + 0.0021229307167232037, + -0.02483152598142624, + 0.0768585056066513, + -0.09484139084815979, + -0.017502976581454277, + -0.005114719737321138, + 0.012510331347584724, + -0.023273209109902382, + -0.016061797738075256, + -0.06069831922650337, + 0.03352895751595497, + 0.03832795098423958, + 0.05670243501663208, + -0.02000061795115471, + -0.0900227501988411, + 0.0036336109042167664, + -0.00504684541374445, + -0.06709215044975281, + -0.02559730038046837, + -0.015027533285319805, + -0.04870966821908951, + -0.01968936063349247, + -0.0399618037045002, + -0.05492362007498741, + -0.009512855671346188, + 0.01607169397175312, + 0.11949511617422104, + -0.033815301954746246, + -0.08855804055929184, + 0.0017447535647079349, + -0.030518369749188423, + -0.0024216673336923122, + -0.009432868100702763, + 0.007423344999551773, + 0.02926374413073063, + 0.06527412682771683, + -0.00373851484619081, + -0.1040717363357544, + 0.12929455935955048, + 0.006124851293861866, + 0.04546111822128296, + 0.014760334976017475, + 0.010709038935601711, + 0.0065817381255328655, + -0.03657582774758339, + -0.07566490024328232, + 0.019422411918640137, + -0.10658551752567291, + -0.006931203417479992, + 0.08396458625793457, + 0.016976457089185715, + -0.0016495895106345415, + 0.021233215928077698, + 0.07152839750051498, + 0.0434502512216568, + -0.04729434847831726, + 0.019871555268764496, + -0.03190029039978981, + -0.050634123384952545, + 0.0844826027750969, + -0.11747974157333374, + -0.10414944589138031, + 0.07333216071128845, + -0.07629059255123138, + -0.035117052495479584, + 0.04508268088102341, + -0.0831548199057579, + 0.014758497476577759, + -0.05133514851331711, + -0.0286459531635046, + 0.04706589877605438, + -0.07445399463176727, + 0.020277174189686775, + -0.030604233965277672, + 0.009531732648611069, + -0.09556124359369278, + 3.778706717188641e-34, + -0.02556580677628517, + 0.07843662053346634, + -0.07362323999404907, + 0.01696566678583622, + -0.12867899239063263, + 0.011624585837125778, + 0.05534782633185387, + -0.04943694919347763, + 0.021265197545289993, + 0.07113127410411835, + 0.01067344006150961, + 0.004206377547234297, + -0.030003901571035385, + -0.04543597996234894, + 0.06325308978557587, + 0.02585449628531933, + 0.07812797278165817, + 0.04172606021165848, + -0.0045530847273766994, + -0.07283885776996613, + -0.03080781176686287, + -0.0631783977150917, + 0.02269746921956539, + 0.042184121906757355, + 0.005342377815395594, + 0.030282102525234222, + 0.07355162501335144, + 0.03126353397965431, + -0.03520575910806656, + -0.015927162021398544, + 0.027885662391781807, + 0.024037905037403107, + 0.03140271082520485, + 0.0570068322122097, + -0.07273739576339722, + -0.05452786013484001, + -0.037370506674051285, + -0.06576298177242279, + 0.07600920647382736, + -0.0007377116708084941, + 0.06373577564954758, + 0.0295953918248415, + 0.11566730588674545, + 0.045323021709918976, + 0.028352919965982437, + 0.078117236495018, + 0.03947685286402702, + 0.009997946210205555, + 0.015463324263691902, + -0.02021125704050064, + 0.0005844775587320328, + -0.02057008445262909, + -0.015805495902895927, + -0.01574031263589859, + -0.08690395951271057, + -0.036730095744132996, + 0.07019602507352829, + 0.06152564287185669, + 0.04175219312310219, + 0.03248748928308487, + -0.014022812247276306, + -0.04047483578324318, + 0.0037090713158249855, + 0.045468177646398544, + -0.0222206711769104, + -0.024741394445300102, + 0.05216827988624573, + -0.03785732761025429, + 0.018839865922927856, + 0.005625839810818434, + 0.05445219948887825, + 0.10946164280176163, + 0.02932111918926239, + -0.01589217223227024, + 0.032511595636606216, + -0.049659449607133865, + 0.011264069937169552, + 0.00576891889795661, + -0.03610607236623764, + -0.00814476702362299, + -0.049678850919008255, + 0.01645803637802601, + 0.004480433650314808, + 0.019412357360124588, + -0.006162887904793024, + 0.021024256944656372, + -0.0525791198015213, + 0.042840633541345596, + 0.017487818375229836, + -0.0047318413853645325, + -0.009013081900775433, + -0.003154967911541462, + -0.015661533921957016, + -0.03527839854359627, + -0.04663196951150894, + -2.243139540780703e-08, + -0.07010520994663239, + -0.021399417892098427, + 0.012860736809670925, + -0.017614243552088737, + -0.013612807728350163, + -0.013015300035476685, + 0.013695831410586834, + 0.0005436176434159279, + -0.0011969563784077764, + -0.06493634730577469, + 0.0055275182239711285, + 0.06294271349906921, + -0.08176524937152863, + -0.017636654898524284, + 0.12552370131015778, + 0.03599803149700165, + -0.05856931209564209, + 0.02021140046417713, + -0.013754056766629219, + -0.009236576035618782, + -0.0036902576684951782, + -0.010560620576143265, + -0.0022401439491659403, + 0.08409382402896881, + -0.04580238461494446, + 0.007547864690423012, + 0.0063246870413422585, + 0.1566009521484375, + 0.0709741860628128, + 0.027222273871302605, + 0.06942000985145569, + 0.040624503046274185, + -0.009847670793533325, + 0.0019860598258674145, + -0.03467945381999016, + -0.039248812943696976, + -0.06598066538572311, + 0.04765108600258827, + 0.021941060200333595, + 0.09528300166130066, + -0.035972077399492264, + -0.009520399384200573, + -0.0030945483595132828, + -0.007879769429564476, + -0.02291165478527546, + 0.09303747862577438, + 0.03535168617963791, + 0.0097429808229208, + -0.08853983879089355, + -0.1345655918121338, + -0.024987388402223587, + 0.061971694231033325, + 0.014034387655556202, + 0.08642975986003876, + -0.03024599887430668, + 0.041699621826410294, + -0.023413553833961487, + -0.025701740756630898, + -0.06641887873411179, + -0.006642219610512257, + 0.0940043181180954, + 0.1087314710021019, + -0.002834313316270709, + 0.07715091854333878 + ], + "arrow-square-down-right-bold||directional,pointer,pointing,arrowhead": [ + 0.05874175205826759, + -0.029580337926745415, + -0.03770493343472481, + 0.008171097375452518, + -0.0496448390185833, + -0.00023639130813535303, + 0.04772583022713661, + -0.0013476199237629771, + -0.0019768141210079193, + 0.0016058539040386677, + 0.03332464396953583, + 0.10240922123193741, + 0.045516155660152435, + 0.02190236561000347, + -0.059654057025909424, + 0.031353119760751724, + -0.06659314036369324, + 0.054856084287166595, + 0.047822386026382446, + 0.05130605027079582, + 0.010565187782049179, + 0.0014766326639801264, + -0.06466581672430038, + 0.01043515931814909, + -0.02081066556274891, + 0.03304801881313324, + 0.07358059287071228, + 0.027143169194459915, + -0.0005264902720227838, + -0.06731120496988297, + -0.06049500033259392, + -0.057089913636446, + -0.043878719210624695, + 0.045140452682971954, + -0.108442023396492, + -0.021775515750050545, + 0.013824349269270897, + 0.0019570793956518173, + -0.0024413149803876877, + 0.04072195664048195, + 0.03906049579381943, + -0.02741282247006893, + 0.004828518722206354, + -0.009152132086455822, + 0.03225642442703247, + 0.07068505883216858, + -0.07690300047397614, + -0.02470594272017479, + 0.03164689242839813, + 0.04690050333738327, + -0.08354067802429199, + -0.06798789650201797, + -0.04695083200931549, + -0.0003836980613414198, + 0.07080703973770142, + 0.07697347551584244, + -0.01701742224395275, + -0.01469891332089901, + 0.08887788653373718, + 0.02191639132797718, + 0.06411704421043396, + -0.03573698550462723, + 0.006295971106737852, + -0.005216250196099281, + 0.020751332864165306, + -0.013876207172870636, + -0.02284145914018154, + 0.022710680961608887, + 0.02203579992055893, + 0.02773360349237919, + 0.018284859135746956, + -0.018045032396912575, + -0.024008305743336678, + -0.030720582231879234, + -0.007846761494874954, + -0.0627458319067955, + 0.05356716737151146, + 0.045427240431308746, + -0.015393740497529507, + -0.031032443046569824, + -0.06486670672893524, + 0.03245040401816368, + -0.06469181180000305, + 0.05750422179698944, + 0.02912469208240509, + 0.07746947556734085, + -0.07908080518245697, + -0.042933687567710876, + -0.02889285236597061, + -0.009923319332301617, + -0.015446115285158157, + -0.012016608379781246, + -0.027173765003681183, + -0.012286963872611523, + 0.017805298790335655, + -0.03613786771893501, + 0.09093573689460754, + -0.0798635482788086, + -0.12225861847400665, + 0.06430796533823013, + 0.033615656197071075, + -0.020350614562630653, + 0.02300085686147213, + -0.09075567126274109, + -0.0020533795468509197, + -0.00804472528398037, + 0.004803073592483997, + -0.05449311435222626, + -0.027310915291309357, + -0.02202553115785122, + -0.05970024690032005, + -0.12803621590137482, + -0.04307078942656517, + -0.030015865340828896, + -0.03251636028289795, + -0.009986625984311104, + -0.11615154147148132, + -0.025682779029011726, + 0.12704382836818695, + -0.03247491642832756, + 0.020219234749674797, + -0.025784382596611977, + -0.042145948857069016, + -0.01106981374323368, + -0.0541522242128849, + 0.010417855344712734, + -0.0345839262008667, + -3.748992378134013e-33, + 0.04412681236863136, + 0.04399722442030907, + 0.03556293621659279, + 0.02053256891667843, + -0.0033328919671475887, + -0.010272621177136898, + -0.05074908956885338, + -0.04941098392009735, + -0.051053304225206375, + 0.0387827605009079, + 0.13432089984416962, + -0.060551103204488754, + -0.096047043800354, + 0.09976993501186371, + 0.05215351656079292, + -0.10062755644321442, + 0.045291006565093994, + 0.057063110172748566, + -0.10619630664587021, + 6.495897105196491e-05, + -0.02867426536977291, + 0.07730806618928909, + -0.092085100710392, + -0.020347073674201965, + -0.0045666140504181385, + 0.01353690680116415, + -0.02220749668776989, + -0.01632816530764103, + -0.06119842827320099, + 0.03145354986190796, + 0.02996242046356201, + 0.04683913663029671, + -0.016946300864219666, + -0.08727061748504639, + 0.004064544569700956, + -0.008784863166511059, + -0.06890061497688293, + -0.024832207709550858, + -0.01809314824640751, + -0.05068519338965416, + -0.02057763561606407, + -0.03627282381057739, + -0.0619792602956295, + -0.00992484949529171, + 0.02150535397231579, + 0.1148766577243805, + -0.032977283000946045, + -0.08821138739585876, + 0.0010421824408695102, + -0.02878637984395027, + 0.0013108482817187905, + -0.006044697482138872, + 0.009644757024943829, + 0.0366521030664444, + 0.06435247510671616, + -0.0023275879211723804, + -0.10117055475711823, + 0.13974949717521667, + 0.00197036936879158, + 0.04492693021893501, + 0.012769324705004692, + 0.009096651338040829, + 0.011702814139425755, + -0.03910579904913902, + -0.07407074421644211, + 0.02319660224020481, + -0.10831470787525177, + -0.006655378267168999, + 0.08889555186033249, + 0.019725443795323372, + -0.004633311647921801, + 0.025770794600248337, + 0.06471219658851624, + 0.04566919058561325, + -0.051992565393447876, + 0.021218696609139442, + -0.03731090575456619, + -0.04743893817067146, + 0.08675731718540192, + -0.11112246662378311, + -0.1098555326461792, + 0.07289743423461914, + -0.07927678525447845, + -0.03926824405789375, + 0.038205474615097046, + -0.08441231399774551, + 0.013995298184454441, + -0.05434975028038025, + -0.025175033137202263, + 0.041429221630096436, + -0.07177085429430008, + 0.022167805582284927, + -0.03055501915514469, + 0.006458813324570656, + -0.09220540523529053, + 2.4172445682914598e-34, + -0.02504899725317955, + 0.07790891081094742, + -0.06603292375802994, + 0.021562380716204643, + -0.13282495737075806, + 0.01564698852598667, + 0.05952555313706398, + -0.049672942608594894, + 0.021303599700331688, + 0.07629337906837463, + 0.011899436824023724, + 0.0038181832060217857, + -0.03145797178149223, + -0.04734558239579201, + 0.0676681399345398, + 0.024897376075387, + 0.07491379231214523, + 0.042505551129579544, + 0.002178046852350235, + -0.06797342002391815, + -0.03044562228024006, + -0.0686074048280716, + 0.015578566119074821, + 0.04264606907963753, + 0.00511338422074914, + 0.029952412471175194, + 0.07797691971063614, + 0.031373411417007446, + -0.028397873044013977, + -0.016206063330173492, + 0.029720991849899292, + 0.017805438488721848, + 0.021601485088467598, + 0.06317149102687836, + -0.07545454055070877, + -0.05562379211187363, + -0.04218289256095886, + -0.06048167869448662, + 0.0726747065782547, + -0.0023902857210487127, + 0.064203180372715, + 0.03079215995967388, + 0.12312790006399155, + 0.04650610685348511, + 0.02223978191614151, + 0.0798167809844017, + 0.03231378644704819, + 0.009266900829970837, + 0.012257405556738377, + -0.025770463049411774, + 3.110461329924874e-05, + -0.020463313907384872, + -0.011370640248060226, + -0.014854936860501766, + -0.0852096900343895, + -0.03547639772295952, + 0.07565783709287643, + 0.05669286847114563, + 0.03433780372142792, + 0.03430236503481865, + -0.011227808892726898, + -0.04628361389040947, + -0.0009400626295246184, + 0.047313347458839417, + -0.022815100848674774, + -0.022445641458034515, + 0.04693736881017685, + -0.04280019924044609, + 0.01354421116411686, + 0.003405041294172406, + 0.04985896870493889, + 0.10357252508401871, + 0.027886884286999702, + -0.017334939911961555, + 0.027213623747229576, + -0.06007989123463631, + 0.009624095633625984, + 0.007093741092830896, + -0.03541778773069382, + -0.01408332772552967, + -0.044949721544981, + 0.021610615774989128, + -0.000423386663896963, + 0.02538352832198143, + -0.009314190596342087, + 0.024222441017627716, + -0.05571299046278, + 0.04409785941243172, + 0.01930609717965126, + -0.005910338833928108, + -0.0061653065495193005, + 0.0037390394136309624, + -0.016592929139733315, + -0.028616273775696754, + -0.04906560480594635, + -2.231567819421798e-08, + -0.07447653263807297, + -0.019556866958737373, + 0.016938524320721626, + -0.019255617633461952, + -0.008065717294812202, + -0.012498017400503159, + 0.010816259309649467, + 0.0048223682679235935, + 0.000976339157205075, + -0.06677483767271042, + 0.004046241752803326, + 0.059769779443740845, + -0.08414781093597412, + -0.014412245713174343, + 0.13612842559814453, + 0.03345651924610138, + -0.057346414774656296, + 0.019243158400058746, + -0.010824623517692089, + -0.011497695930302143, + -0.007657981477677822, + -0.010394316166639328, + -0.0025946972891688347, + 0.08478614687919617, + -0.04273919761180878, + 0.009580858051776886, + 0.005034930072724819, + 0.1582232415676117, + 0.06496131420135498, + 0.0287580918520689, + 0.06965775042772293, + 0.041504908353090286, + -0.006596805062144995, + 0.00023231346858665347, + -0.027111805975437164, + -0.0321829579770565, + -0.06346205621957779, + 0.045607853680849075, + 0.028502928093075752, + 0.09425109624862671, + -0.03471130505204201, + -0.013469035737216473, + -0.007171277422457933, + -0.008071200922131538, + -0.02390926145017147, + 0.09193935990333557, + 0.04002325236797333, + 0.00854424200952053, + -0.09023555368185043, + -0.13578800857067108, + -0.025124652311205864, + 0.06683115661144257, + 0.01620631478726864, + 0.0844636932015419, + -0.03142550215125084, + 0.045394089072942734, + -0.023144850507378578, + -0.030254125595092773, + -0.060446787625551224, + -0.00611829711124301, + 0.0931934043765068, + 0.1078261286020279, + -0.003610685234889388, + 0.074969582259655 + ], + "arrow-square-in-bold||import,directional,pointer,pointing,arrowhead": [ + 0.03570392355322838, + -0.054078251123428345, + -0.03382293879985809, + 0.0621088407933712, + 0.013606679625809193, + -0.015545778907835484, + 0.044289905577898026, + -0.012098265811800957, + -0.007653634529560804, + -0.025927279144525528, + 0.015276922844350338, + 0.09706771373748779, + 0.0750926211476326, + 0.020185012370347977, + -0.030895181000232697, + 0.02296186052262783, + -0.07922162115573883, + 0.026864061132073402, + 0.047145646065473557, + 0.027680974453687668, + 0.004163282457739115, + -0.0036982656456530094, + -0.012545272707939148, + 0.03257734328508377, + -0.043629538267850876, + 0.016027526929974556, + 0.08083367347717285, + 0.01814957521855831, + -0.025931406766176224, + -0.07691309601068497, + -0.0527556911110878, + -0.032457321882247925, + -0.03034381940960884, + 0.0720011442899704, + -0.08371619135141373, + 0.03588699549436569, + 0.0007504175300709903, + -0.035617005079984665, + 0.000417590606957674, + 0.020786700770258904, + 0.09442871809005737, + 0.014441149309277534, + 0.012439989484846592, + -0.049468934535980225, + 0.015374204143881798, + 0.026778189465403557, + -0.06481238454580307, + -0.023283230140805244, + 0.06603012979030609, + 0.025184793397784233, + -0.09574656933546066, + -0.10601238161325455, + -0.04749838262796402, + -0.042281195521354675, + 0.04597964510321617, + 0.09027718007564545, + 0.009811311960220337, + -0.04610750824213028, + 0.08193071186542511, + 0.003167572431266308, + 0.04766448214650154, + -0.007924064062535763, + 0.06494665890932083, + -0.010725008323788643, + 0.006518341135233641, + -0.01853233203291893, + -0.036404047161340714, + 0.05643421784043312, + -0.010607979260385036, + 0.027776755392551422, + 0.005106328520923853, + -0.0046319072134792805, + -0.044422414153814316, + -0.0077173588797450066, + 0.012601968832314014, + -0.06880361586809158, + 0.02818821184337139, + 0.058610036969184875, + -0.005593870300799608, + -0.02679337188601494, + -0.050174176692962646, + -0.029900001361966133, + -0.06494089961051941, + 0.03510608151555061, + 0.07443130016326904, + 0.08202076703310013, + -0.0663156807422638, + -0.07686316221952438, + -0.06791704893112183, + -0.014270766638219357, + -0.015530060976743698, + -0.04187428951263428, + -0.03888855129480362, + 0.04438267648220062, + 0.04306725040078163, + -0.00861937552690506, + 0.10591509938240051, + -0.007943885400891304, + -0.15268132090568542, + 0.05001888424158096, + 0.041775863617658615, + -0.028392845764756203, + 0.023003805428743362, + -0.04871591925621033, + 0.013919801451265812, + 0.04243845492601395, + 0.02593124471604824, + -0.10093711316585541, + -0.047915227711200714, + -0.04580390825867653, + -0.017343200743198395, + -0.1541469246149063, + 0.011906602419912815, + -0.0455019436776638, + -0.034044694155454636, + 0.016146359965205193, + -0.11034464836120605, + -0.02545200288295746, + 0.10584210604429245, + -0.014803852885961533, + 0.015754250809550285, + -0.027350997552275658, + 0.0018095114501193166, + -0.015665234997868538, + -0.04977863281965256, + 0.026910338550806046, + -0.012677826918661594, + -4.1334238465750264e-33, + -0.007145765703171492, + 0.07140804082155228, + 0.007856370881199837, + 0.013340676203370094, + -0.025410056114196777, + -0.018343066796660423, + 0.015781229361891747, + -0.04491504654288292, + -0.08547011762857437, + -0.0064796521328389645, + 0.09343450516462326, + -0.029289286583662033, + -0.11983567476272583, + 0.11130354553461075, + 0.050822608172893524, + -0.06136750429868698, + 0.055669210851192474, + 0.08097600936889648, + -0.0819070115685463, + 0.01304764673113823, + -0.008479968644678593, + 0.012050455436110497, + -0.09623739123344421, + -0.030151212587952614, + -0.014150528237223625, + 0.036164335906505585, + -0.030293414369225502, + -0.050231192260980606, + -0.02235206589102745, + 0.04645457863807678, + 0.01729613170027733, + 0.08089298009872437, + 0.006253709550946951, + -0.04707200452685356, + 0.003486804896965623, + -0.03652288392186165, + -0.030444614589214325, + -0.030071008950471878, + -0.023738259449601173, + -0.00990479439496994, + -0.015845393761992455, + 0.003093414008617401, + -0.006070451345294714, + -0.011246238835155964, + 0.001086519449017942, + 0.13084502518177032, + -0.02900734730064869, + -0.06870859861373901, + -0.01984720304608345, + -0.009465005248785019, + 0.01932237297296524, + 0.025224260985851288, + 0.015386789105832577, + -0.012129833921790123, + 0.041025560349226, + -0.028074849396944046, + -0.06128963083028793, + 0.10014597326517105, + 0.052436765283346176, + 0.008525040931999683, + 0.01187665294855833, + 0.005960588809102774, + 0.013730707578361034, + 0.022195423021912575, + -0.022202860563993454, + 0.05177975818514824, + -0.09985140711069107, + -0.007202901877462864, + 0.013863367959856987, + 0.01786074787378311, + 0.021676115691661835, + 0.010602781549096107, + -0.007251130882650614, + 0.03222668915987015, + -0.039561279118061066, + 0.029286852106451988, + -0.03143293410539627, + -0.05473659560084343, + 0.14230889081954956, + -0.1587732434272766, + -0.09331971406936646, + 0.029240688309073448, + -0.07602079957723618, + -0.04635155573487282, + 0.02760878950357437, + -0.058859772980213165, + 0.012732274830341339, + -0.06929228454828262, + 0.003637623740360141, + 0.06024257838726044, + -0.05017399787902832, + 0.011426065117120743, + -0.05429815128445625, + -0.015856575220823288, + -0.09532297402620316, + 6.77430231210184e-34, + 0.037031140178442, + 0.10696704685688019, + -0.03144698217511177, + 0.018703140318393707, + -0.11499843001365662, + 0.007448011543601751, + 0.03547444939613342, + -0.013503655791282654, + 0.0677160993218422, + 0.05005544424057007, + 0.010777432471513748, + 0.01312720775604248, + -0.013068944215774536, + -0.06844916939735413, + 0.09238084405660629, + 0.009315334260463715, + 0.0667480081319809, + 0.08463612198829651, + -0.0609506331384182, + -0.09994103759527206, + -0.001913572777993977, + -0.10077906399965286, + 0.028451815247535706, + 0.043776508420705795, + -0.002503402531147003, + 0.049244631081819534, + 0.059546828269958496, + 0.05176568776369095, + -0.054354168474674225, + -0.005645441822707653, + 0.011971141211688519, + 0.0628366693854332, + -0.009574990719556808, + 0.025045156478881836, + -0.11639849096536636, + -0.026064272969961166, + 0.015629874542355537, + -0.07845774292945862, + 0.07618029415607452, + 0.009873062372207642, + 0.07549343258142471, + 0.05261371657252312, + 0.06209075078368187, + 0.05242852866649628, + 0.001684051938354969, + 0.05732426792383194, + 0.030917976051568985, + 0.014344094321131706, + 0.02820914424955845, + -0.020424338057637215, + -0.003062700154259801, + -0.015123164281249046, + -0.010538404807448387, + -0.03465154394507408, + -0.08567366003990173, + -0.01268591545522213, + 0.09477578103542328, + 0.0757172703742981, + 0.008977418765425682, + -0.03719856217503548, + -0.03286615386605263, + -0.023407774046063423, + -0.02303064614534378, + -0.006104838568717241, + -0.049559276551008224, + -0.03188478574156761, + 0.04482939466834068, + -0.04815041646361351, + 0.07113814353942871, + -0.007481330540031195, + 0.08504845947027206, + 0.09712108224630356, + 0.026277592405676842, + 0.0042480663396418095, + 0.005897128023207188, + -0.016116248443722725, + 0.03696180880069733, + 0.01946215331554413, + 0.006731189321726561, + 0.01876869425177574, + -0.05495656654238701, + 0.006389519665390253, + 0.042607806622982025, + 0.009841001592576504, + 0.013190342113375664, + 0.009082325734198093, + -0.02965690568089485, + 0.06474588811397552, + 0.016820497810840607, + -0.010092552751302719, + -0.037387117743492126, + -0.01593494601547718, + -0.01533597707748413, + -0.06936013698577881, + -0.045587360858917236, + -2.1762810220593565e-08, + -0.10908225923776627, + -0.0035708220675587654, + 0.020731277763843536, + -0.012098051607608795, + -0.029676439240574837, + -0.02935710921883583, + -0.019559664651751518, + 0.014047173783183098, + 0.0064575280994176865, + -0.044511061161756516, + -0.04072577506303787, + 0.06181388720870018, + -0.07603511214256287, + -0.0432753823697567, + 0.08275076001882553, + 0.08962541818618774, + -0.02641044184565544, + 0.03277869150042534, + -0.03783738985657692, + -0.03713742271065712, + -0.025453899055719376, + 0.04411790147423744, + 0.04541470482945442, + 0.10715325176715851, + -0.07428231090307236, + -0.02490839920938015, + -0.00027915561804547906, + 0.1166190430521965, + 0.09248536825180054, + 0.02764267474412918, + 0.033058051019907, + 0.03052223101258278, + -0.031433749943971634, + 0.0046870470978319645, + -0.06502155214548111, + -0.07564564794301987, + -0.026602454483509064, + 0.04037508741021156, + 0.02091868966817856, + 0.05568353086709976, + -0.08821544051170349, + -0.03614460304379463, + -1.0915448456216836e-06, + -0.048859499394893646, + -0.02300541289150715, + 0.0793924331665039, + -0.014569105580449104, + -0.006337975617498159, + -0.08962654322385788, + -0.08057045936584473, + -0.026618970558047295, + 0.029404858127236366, + -0.03689401224255562, + 0.09685835242271423, + -0.018279442563652992, + 0.021709302440285683, + -0.03748839721083641, + 0.010994048789143562, + -0.06043814867734909, + -0.033603131771087646, + 0.05709453672170639, + 0.06787092238664627, + 0.0422062911093235, + 0.050979457795619965 + ], + "arrow-square-left-bold||directional,pointer,pointing,arrowhead": [ + 0.06188663840293884, + -0.036174193024635315, + -0.032430823892354965, + 0.03570101037621498, + -0.028862513601779938, + -0.015503570437431335, + 0.051626916974782944, + -0.019897781312465668, + 0.0019960799254477024, + -0.00942378118634224, + 0.025547338649630547, + 0.09660284966230392, + 0.033938582986593246, + 0.017829395830631256, + -0.06560581922531128, + 0.031198345124721527, + -0.06714342534542084, + 0.03156621381640434, + 0.06331608444452286, + 0.06053851172327995, + -0.014005793258547783, + 0.01875983737409115, + -0.05235512927174568, + 0.016045071184635162, + -0.026907265186309814, + 0.03064073994755745, + 0.08742276579141617, + 0.024763356894254684, + -0.002624199725687504, + -0.07321541756391525, + -0.03292151540517807, + -0.06253639608621597, + -0.06226268410682678, + 0.04021323472261429, + -0.09860339015722275, + -0.021104728803038597, + 0.015126364305615425, + -0.004076240584254265, + -0.0026352107524871826, + 0.042134325951337814, + 0.05717647075653076, + -0.013614865951240063, + 0.014294659718871117, + -0.014951126649975777, + 0.041867226362228394, + 0.06792575120925903, + -0.07499172538518906, + -0.023533495143055916, + 0.0477316677570343, + 0.04635681211948395, + -0.08861388266086578, + -0.09074501693248749, + -0.0359727144241333, + -0.028239907696843147, + 0.06211833283305168, + 0.06860020756721497, + -0.01597285084426403, + -0.024260681122541428, + 0.08928168565034866, + 0.017616763710975647, + 0.06507286429405212, + -0.0247182659804821, + 0.018348658457398415, + -0.0126955546438694, + 0.010936399921774864, + -0.023982753977179527, + -0.011217428371310234, + 0.02457886002957821, + 0.024187250062823296, + 0.023817244917154312, + 0.0188674945384264, + -0.006770506501197815, + -0.03065880574285984, + -0.033197175711393356, + 0.0031516137532889843, + -0.06611073762178421, + 0.05637507513165474, + 0.053121231496334076, + -0.013248260132968426, + -0.02488594315946102, + -0.07035796344280243, + 0.005781144369393587, + -0.059210553765296936, + 0.0331849567592144, + 0.04329501837491989, + 0.08134579658508301, + -0.08988796174526215, + -0.059492845088243484, + -0.032365504652261734, + -0.003010065760463476, + -0.012980145402252674, + 0.007697053719311953, + -0.029143301770091057, + -0.024126043543219566, + 0.03933259844779968, + -0.03321877494454384, + 0.09026852250099182, + -0.06441669911146164, + -0.13913123309612274, + 0.06794638931751251, + 0.045703087002038956, + 0.002448589773848653, + 0.011473426595330238, + -0.08305548876523972, + 0.022761331871151924, + 0.023492515087127686, + -0.0019782809540629387, + -0.05150538682937622, + -0.05379631370306015, + -0.02502252161502838, + -0.05487741902470589, + -0.14656184613704681, + -0.0452619269490242, + -0.032476406544446945, + -0.027465177699923515, + -0.011128808371722698, + -0.12927910685539246, + -0.016745131462812424, + 0.13285210728645325, + -0.03564910218119621, + 0.01688320003449917, + -0.04921414703130722, + -0.037678204476833344, + -0.006897146813571453, + -0.05139986053109169, + 0.01623612269759178, + -0.029705125838518143, + -3.872557405556575e-33, + 0.027379751205444336, + 0.05667511746287346, + 0.028897559270262718, + 0.01630694791674614, + -0.015139489434659481, + -0.012923093512654305, + -0.019619837403297424, + -0.03540686517953873, + -0.046830177307128906, + 0.010913945734500885, + 0.12899363040924072, + -0.05392486974596977, + -0.0957660973072052, + 0.08505506813526154, + 0.049346767365932465, + -0.09058940410614014, + 0.044022075831890106, + 0.06589744985103607, + -0.10963285714387894, + 0.012198593467473984, + -0.015560575760900974, + 0.06398580968379974, + -0.11124299466609955, + -0.031095439568161964, + -0.021883836016058922, + 0.0006710822344757617, + -0.011858783662319183, + -0.013459701091051102, + -0.050561174750328064, + 0.035467974841594696, + 0.04057633876800537, + 0.0765346810221672, + -0.0063529908657073975, + -0.08459950983524323, + 0.0012274947948753834, + -0.013524381443858147, + -0.05343882739543915, + -0.038118503987789154, + -0.00848260335624218, + -0.0287725031375885, + -0.009585543535649776, + -0.025100314989686012, + -0.03285195305943489, + -0.0214020274579525, + 0.008419616147875786, + 0.13110904395580292, + -0.04185279458761215, + -0.07574925571680069, + 0.004106360487639904, + -0.030229486525058746, + -0.002581457607448101, + -0.0001787433575373143, + 0.01371505856513977, + 0.02867039106786251, + 0.06772597134113312, + -0.017178945243358612, + -0.1019940972328186, + 0.11656146496534348, + 0.014311366714537144, + 0.02871847338974476, + 0.010999273508787155, + 0.01721189171075821, + 0.005340821109712124, + -0.029907986521720886, + -0.07873662561178207, + 0.021970190107822418, + -0.11062293499708176, + -0.0017148719634860754, + 0.08442232012748718, + 0.002500365022569895, + 0.014660698361694813, + 0.012395840138196945, + 0.07164658606052399, + 0.03393467143177986, + -0.0499044768512249, + 0.010546271689236164, + -0.04227709397673607, + -0.04184760898351669, + 0.09003617614507675, + -0.11837174743413925, + -0.0853416919708252, + 0.07153870910406113, + -0.07956092804670334, + -0.023078547790646553, + 0.04427403584122658, + -0.08980046957731247, + 0.010014183819293976, + -0.053349535912275314, + -0.032503943890333176, + 0.07339360564947128, + -0.053878966718912125, + 0.014418245293200016, + -0.04469370096921921, + 0.025409016758203506, + -0.10253529995679855, + 2.124419053185791e-34, + -0.022580549120903015, + 0.08263887465000153, + -0.06738274544477463, + 0.013909884728491306, + -0.1218237429857254, + -0.0016363149043172598, + 0.04536399245262146, + -0.051525015383958817, + 0.017803343012928963, + 0.0712333545088768, + 0.010141970589756966, + 0.005788122303783894, + -0.04613155499100685, + -0.03602189943194389, + 0.07349301874637604, + 0.00815069954842329, + 0.07821650058031082, + 0.039353061467409134, + -0.027771607041358948, + -0.08193131536245346, + -0.024567585438489914, + -0.057875048369169235, + 0.04282042384147644, + 0.04301055893301964, + 0.007564798463135958, + 0.030419550836086273, + 0.06338604539632797, + 0.029704665765166283, + -0.049896977841854095, + -0.01558726653456688, + 0.022060295566916466, + 0.029477013275027275, + 0.03376016393303871, + 0.0461018830537796, + -0.05477391555905342, + -0.054027706384658813, + -0.029000652953982353, + -0.08139074593782425, + 0.09515538811683655, + 0.0037565191742032766, + 0.07463598996400833, + 0.02434622123837471, + 0.09704088419675827, + 0.046914298087358475, + 0.033468469977378845, + 0.08541083335876465, + 0.050413597375154495, + 0.008293351158499718, + 0.023059092462062836, + -0.02131369709968567, + 0.0062538860365748405, + -0.0122574707493186, + -0.002383422339335084, + -0.02211754210293293, + -0.08353343605995178, + -0.03720153495669365, + 0.05424273759126663, + 0.05987263098359108, + 0.050003595650196075, + 0.020947290584445, + -0.006943719927221537, + -0.03393291309475899, + -0.002154239919036627, + 0.028722016140818596, + -0.02035277895629406, + -0.039306070655584335, + 0.06872338801622391, + -0.04172038659453392, + 0.046188097447156906, + 0.007576621603220701, + 0.05965367332100868, + 0.11107579618692398, + 0.025316819548606873, + -0.009238981641829014, + 0.028654132038354874, + -0.03341119736433029, + 0.02149427868425846, + -0.004782304633408785, + -0.03129996731877327, + 0.0077042849734425545, + -0.05931996554136276, + 0.013958890922367573, + 0.013297180645167828, + 0.004635585006326437, + -0.0024894485250115395, + 0.00793764740228653, + -0.031258683651685715, + 0.021641599014401436, + 0.009397587738931179, + -0.007587407249957323, + -0.010702217929065228, + -0.013538746163249016, + -0.0323445163667202, + -0.04360834136605263, + -0.039291322231292725, + -2.1052091625506364e-08, + -0.07949725538492203, + -0.014886405318975449, + 0.013334563933312893, + -0.012049971148371696, + -0.019421428442001343, + -0.029411258175969124, + 0.0132218012586236, + -0.006726149469614029, + -0.013803331181406975, + -0.04828983545303345, + 0.0028821933083236217, + 0.05585106462240219, + -0.08035717159509659, + -0.033399224281311035, + 0.11180204153060913, + 0.039021074771881104, + -0.057908788323402405, + 0.008337883278727531, + -0.025590909644961357, + -0.003602410899475217, + -0.00603098701685667, + -0.0024084055330604315, + 0.011786079034209251, + 0.0743911862373352, + -0.05734299495816231, + 0.0014957153471186757, + 0.020893944427371025, + 0.14826549589633942, + 0.0809277668595314, + 0.02715945988893509, + 0.06271830201148987, + 0.025507772341370583, + -0.0185314379632473, + 0.01051156222820282, + -0.0541970320045948, + -0.06075733155012131, + -0.0753873959183693, + 0.05354931950569153, + 0.018574340268969536, + 0.08628154546022415, + -0.04263340309262276, + 0.005265646148473024, + 0.01020143087953329, + -0.008958181366324425, + -0.026137351989746094, + 0.0919698178768158, + 0.02970307320356369, + 0.013976093381643295, + -0.08974551409482956, + -0.12617309391498566, + -0.03345101699233055, + 0.054525166749954224, + -0.00022631802130490541, + 0.09377122670412064, + -0.029883211478590965, + 0.02824367769062519, + -0.022452959790825844, + -0.011906566098332405, + -0.06155521422624588, + -0.001004948397167027, + 0.10279273986816406, + 0.10458243638277054, + -0.0007367284270003438, + 0.0810227245092392 + ], + "arrow-square-out-bold||export,external,directional,pointer,pointing,arrowhead": [ + 0.05796734243631363, + -0.04466305300593376, + -0.04097921773791313, + 0.08221131563186646, + 0.05493704974651337, + -0.006917011458426714, + 0.016683068126440048, + 0.0011294446885585785, + 0.024877315387129784, + -0.0011758462060242891, + 0.00021632153948303312, + 0.09193549305200577, + 0.01593296229839325, + -0.04336383193731308, + -0.018812716007232666, + 0.035995159298181534, + -0.08452069759368896, + 0.024233663454651833, + 0.009156436659395695, + 0.0007794425473548472, + 0.0036222513299435377, + 0.019482430070638657, + -0.012054963037371635, + 0.011167249642312527, + -0.0006007091142237186, + -0.0064173368737101555, + 0.05174148455262184, + 0.03118370659649372, + -0.0053284852765500546, + -0.07925049215555191, + -0.05883604660630226, + -0.036787308752536774, + -0.04023190587759018, + 0.042984191328287125, + -0.03626822307705879, + 0.029203522950410843, + 0.01601228304207325, + 0.013755574822425842, + -0.018725186586380005, + -0.0061415727250278, + 0.0797131136059761, + 0.03174186497926712, + 0.03443549573421478, + -0.07082153111696243, + 0.018709108233451843, + 0.05539533495903015, + -0.060367509722709656, + -0.05855507776141167, + 0.045752622187137604, + 0.0720280110836029, + -0.07038185745477676, + -0.07760041952133179, + -0.07650869339704514, + -0.023479212075471878, + 0.09703037887811661, + 0.07304209470748901, + -0.01649986207485199, + -0.05805626139044762, + 0.07470378279685974, + 0.05495822802186012, + 0.05804246664047241, + -0.009954055771231651, + 0.020502613857388496, + -0.010924933478236198, + 0.00838406104594469, + -0.01102367788553238, + -0.050848428159952164, + 0.08259940147399902, + -0.0410451702773571, + 0.011398248374462128, + -0.005770373158156872, + -0.014616576954722404, + -0.07763674110174179, + -0.05589499697089195, + 0.019258232787251472, + -0.06945565342903137, + 0.017856189981102943, + 0.03305269032716751, + -0.02511637471616268, + -0.010567697696387768, + -0.03329765796661377, + 0.026863139122724533, + -0.09475749731063843, + 0.07395514100790024, + 0.06390201300382614, + 0.09837634861469269, + -0.02130391076207161, + -0.08101881295442581, + -0.0729895681142807, + -0.0012112751137465239, + -0.07272297143936157, + -0.06045815721154213, + -0.004257426597177982, + 0.029296541586518288, + 0.013554482720792294, + -0.03500034660100937, + 0.12656603753566742, + -0.03602438047528267, + -0.12056917697191238, + 0.04528536647558212, + 0.044312264770269394, + 0.0010979454964399338, + 0.03992180526256561, + -0.08981166034936905, + -0.009148702956736088, + 0.025004485622048378, + 0.0327303484082222, + -0.0402546226978302, + -0.040502555668354034, + -0.022931132465600967, + -0.01991310901939869, + -0.09019728749990463, + -0.02713073417544365, + -0.07487638294696808, + -0.029033849015831947, + -0.005478870123624802, + -0.11431101709604263, + -0.05704136937856674, + 0.1243710070848465, + -0.004481147974729538, + 0.0329669788479805, + -0.00939583033323288, + 0.013452036306262016, + 0.013098246417939663, + -0.041647061705589294, + 0.0013593219919130206, + 0.01973572000861168, + -3.440862248004875e-33, + 0.020670201629400253, + 0.02025904506444931, + -0.0038509725127369165, + -0.001979443710297346, + 0.018040109425783157, + 0.01916683278977871, + -0.0058778077363967896, + -0.0862208902835846, + -0.031863078474998474, + 0.02287783846259117, + 0.09291800856590271, + -0.035470180213451385, + -0.09961352497339249, + 0.12740600109100342, + 0.07178875803947449, + -0.07662394642829895, + 0.07591862976551056, + 0.07789725810289383, + -0.07496514916419983, + 0.039884842932224274, + 0.0030376543290913105, + 0.031218502670526505, + -0.1335543692111969, + -0.02354849874973297, + -0.009765674360096455, + 0.04172610491514206, + -0.017460336908698082, + -0.0026880595833063126, + -0.08282599598169327, + 0.03913388401269913, + 0.035122741013765335, + 0.08082470297813416, + 0.03616008535027504, + -0.06238066032528877, + 0.0003716168866958469, + -0.03652755171060562, + -0.07923956215381622, + -0.016108613461256027, + -0.0034291655756533146, + 0.0012570350663736463, + -0.04739415645599365, + -0.03341545909643173, + -0.07921907305717468, + 0.00037046842044219375, + 0.018227403983473778, + 0.10909392684698105, + -0.03258820250630379, + -0.09691347181797028, + 0.02032977156341076, + -0.05168967321515083, + -0.008892902173101902, + 0.0358855277299881, + 0.06727947294712067, + -0.006020371336489916, + 0.05247260630130768, + -0.07175841182470322, + -0.073851577937603, + 0.11190889030694962, + 0.011906777508556843, + 0.04420863464474678, + -0.01056312769651413, + 0.056756168603897095, + 0.0045551336370408535, + -0.0053809452801942825, + -0.03446180373430252, + 0.0451492965221405, + -0.09250681847333908, + -0.01336417905986309, + 0.008590666577219963, + -0.029681935906410217, + 0.0097935376688838, + 0.01665983349084854, + 0.044599853456020355, + -0.0043060025200247765, + -0.012526012025773525, + 0.020885946229100227, + -0.0396459586918354, + -0.02280012145638466, + 0.12143677473068237, + -0.12120585143566132, + -0.11998340487480164, + 0.04869195446372032, + -0.07162880897521973, + -0.04507787898182869, + 0.061035580933094025, + -0.06498011946678162, + 0.0018135670106858015, + -0.06308034807443619, + -0.00041552874608896673, + 0.08155746012926102, + -0.05885621905326843, + 0.014443855732679367, + -0.05379604920744896, + -0.012215964496135712, + -0.10200566798448563, + 3.3302643467220734e-34, + 0.011754260398447514, + 0.11840247362852097, + -0.05755046010017395, + -0.013921759091317654, + -0.12050410360097885, + 0.03363557532429695, + 0.03455638512969017, + -0.0026397693436592817, + 0.01950465328991413, + 0.058855969458818436, + -0.03937520831823349, + 0.00878507737070322, + -0.01447654701769352, + -0.04677224159240723, + 0.0617341548204422, + -0.006676255725324154, + 0.06396497040987015, + 0.0793706476688385, + -0.046113744378089905, + -0.08875128626823425, + 0.003436942584812641, + -0.07647309452295303, + 0.05717715993523598, + 0.05745692178606987, + 0.030476924031972885, + 0.03580214083194733, + 0.06519389897584915, + 0.07301998138427734, + -0.05943472310900688, + -0.050094325095415115, + 0.03749961778521538, + 0.059897150844335556, + 0.027583027258515358, + 0.029822789132595062, + -0.09621585160493851, + -0.03593887388706207, + -0.042418044060468674, + -0.045420706272125244, + 0.07277597486972809, + 0.03183239698410034, + 0.029857711866497993, + 0.015010150149464607, + 0.05523591861128807, + 0.04472021013498306, + -0.0192207470536232, + 0.062454741448163986, + 0.014293898828327656, + -0.012361417524516582, + 0.0377824530005455, + 0.010253041982650757, + 0.05594794452190399, + -0.020783014595508575, + -0.028369314968585968, + -0.03868768736720085, + -0.06546396017074585, + -0.0306178517639637, + 0.06754621118307114, + 0.07826192677021027, + -0.00020655292610172182, + -0.008771572262048721, + -0.0031559232156723738, + -0.052097830921411514, + 0.02273971028625965, + 0.004438014701008797, + -0.02256868965923786, + -0.028441129252314568, + 0.05384834483265877, + -0.0064359563402831554, + 0.02626965567469597, + 0.04419879615306854, + 0.03349513188004494, + 0.06336718797683716, + 0.013116234913468361, + 0.01678263396024704, + 0.03340454027056694, + -0.022802360355854034, + 0.018903587013483047, + -0.04312621057033539, + -0.017687972635030746, + 0.0030480583664029837, + -0.047801196575164795, + 0.010184402577579021, + 0.03281956538558006, + 0.005386508069932461, + 0.024531526491045952, + -0.03215305507183075, + -0.04093082621693611, + 0.058108244091272354, + 0.015607384033501148, + -0.03239448368549347, + -0.03011193685233593, + -0.01592995971441269, + -0.01944773830473423, + -0.01760074310004711, + -0.06790399551391602, + -2.2202765848078343e-08, + -0.09828520566225052, + -0.027061089873313904, + 0.026053564622998238, + 0.0039052048232406378, + -0.054995983839035034, + -0.030528463423252106, + 0.014119837433099747, + -0.0026638575363904238, + 0.014249801635742188, + -0.06576624512672424, + -0.0023200595751404762, + 0.05486487224698067, + -0.0699964240193367, + -0.016203805804252625, + 0.12612806260585785, + 0.03501860797405243, + -0.0011337572941556573, + 0.028221596032381058, + -0.01889876276254654, + -0.0839671716094017, + -0.04194140434265137, + 0.010134102776646614, + 0.007231089286506176, + 0.09712546318769455, + -0.05954185873270035, + -0.034105464816093445, + 0.0011210879310965538, + 0.12866033613681793, + 0.08843810856342316, + 0.005044155288487673, + 0.03824909031391144, + 0.04537671431899071, + -0.03495427221059799, + 0.026828063651919365, + -0.06567763537168503, + -0.044060803949832916, + -0.03213828057050705, + 0.05264436453580856, + 0.0024431729689240456, + 0.07727264612913132, + -0.057830169796943665, + -0.02711949124932289, + -0.014177794568240643, + -0.009705246426165104, + -0.04631846398115158, + 0.04674247279763222, + 0.016402585431933403, + -0.006324010901153088, + -0.0873933807015419, + -0.10977032035589218, + -0.021430375054478645, + 0.026612747460603714, + -0.0008919948595575988, + 0.07137477397918701, + -0.007069360930472612, + 0.004680389538407326, + -0.03669094666838646, + 0.015865296125411987, + -0.040280524641275406, + -0.005480497609823942, + 0.04642843082547188, + 0.10460232943296432, + 0.009747409261763096, + 0.07880020886659622 + ], + "arrow-square-right-bold||directional,pointer,pointing,arrowhead": [ + 0.05875590816140175, + -0.041169174015522, + -0.0440344512462616, + 0.0351162888109684, + -0.03435764089226723, + -0.004178515635430813, + 0.05060814693570137, + -0.019376443699002266, + 0.0005911880871281028, + -0.008038206957280636, + 0.03473816439509392, + 0.09848026931285858, + 0.034367866814136505, + 0.015741493552923203, + -0.06050953269004822, + 0.03157978504896164, + -0.07190356403589249, + 0.03135785087943077, + 0.06407754123210907, + 0.053644001483917236, + 0.001789940521121025, + 0.018699195235967636, + -0.05269748345017433, + 0.015128078870475292, + -0.023605894297361374, + 0.031765617430210114, + 0.08452831208705902, + 0.021652469411492348, + -0.0026242027524858713, + -0.0687088891863823, + -0.03746216744184494, + -0.06405196338891983, + -0.058271750807762146, + 0.04115359112620354, + -0.09578750282526016, + -0.014359398745000362, + 0.009004613384604454, + -0.004505541175603867, + -0.0053885746747255325, + 0.036134228110313416, + 0.048215411603450775, + -0.0222324226051569, + 0.011742091737687588, + -0.017758848145604134, + 0.037045422941446304, + 0.06877563893795013, + -0.07105648517608643, + -0.02263290248811245, + 0.042388904839754105, + 0.04692155495285988, + -0.0905202329158783, + -0.08664767444133759, + -0.04320315271615982, + -0.026706984266638756, + 0.06925902515649796, + 0.07620455324649811, + -0.018512530252337456, + -0.02059962786734104, + 0.091389961540699, + 0.014316444285213947, + 0.05532745644450188, + -0.02874220535159111, + 0.01705613173544407, + -0.0069269221276044846, + 0.014132503420114517, + -0.02018880844116211, + -0.013651059940457344, + 0.022276194766163826, + 0.019085925072431564, + 0.029823485761880875, + 0.017763204872608185, + -0.007025773171335459, + -0.02803778648376465, + -0.028980383649468422, + 0.0023329127579927444, + -0.06798957288265228, + 0.05432121083140373, + 0.05393451079726219, + -0.020233411341905594, + -0.021267635747790337, + -0.0708429142832756, + 0.0052077206782996655, + -0.0618031769990921, + 0.03954849764704704, + 0.04407110810279846, + 0.08396954834461212, + -0.09045229107141495, + -0.054360199719667435, + -0.023635830730199814, + -0.0004040104104205966, + -0.005961815360933542, + 0.0013539071660488844, + -0.02982359565794468, + -0.014294548891484737, + 0.03550511598587036, + -0.031112466007471085, + 0.08866195380687714, + -0.06525982171297073, + -0.13853950798511505, + 0.06032910197973251, + 0.04730953276157379, + -0.0041394317522645, + 0.011269410140812397, + -0.08102584630250931, + 0.024517841637134552, + 0.019096199423074722, + 0.0016041981289163232, + -0.04784447327256203, + -0.04869207739830017, + -0.01619192585349083, + -0.054196011275053024, + -0.14835524559020996, + -0.04755276069045067, + -0.029223807156085968, + -0.031118886545300484, + -0.007235163822770119, + -0.13048440217971802, + -0.0214082058519125, + 0.1298748254776001, + -0.03245816379785538, + 0.015330353751778603, + -0.03927595168352127, + -0.04014457389712334, + -0.007775377482175827, + -0.052886929363012314, + 0.013881873339414597, + -0.030589956790208817, + -3.7584095572520384e-33, + 0.020659953355789185, + 0.05263681337237358, + 0.034736696630716324, + 0.015438227914273739, + -0.013637175783514977, + -0.015375332906842232, + -0.02481061778962612, + -0.03576776757836342, + -0.0452139675617218, + 0.02238420397043228, + 0.1283148229122162, + -0.05727578327059746, + -0.09315095096826553, + 0.09130597859621048, + 0.0493488647043705, + -0.08806879073381424, + 0.04175810515880585, + 0.06635472923517227, + -0.10817323625087738, + 0.011823530308902264, + -0.022632688283920288, + 0.06257345527410507, + -0.11171746999025345, + -0.03276033326983452, + -0.022328954190015793, + -0.0015852481592446566, + -0.008579439483582973, + -0.012942035682499409, + -0.048850882798433304, + 0.0337274894118309, + 0.034396637231111526, + 0.06637977808713913, + -0.002903548302128911, + -0.08120811730623245, + 0.000845519476570189, + -0.01836194470524788, + -0.05306022986769676, + -0.035441186279058456, + -0.011919398792088032, + -0.030549824237823486, + -0.006663573905825615, + -0.019542109221220016, + -0.038395076990127563, + -0.022978048771619797, + 0.01689266413450241, + 0.12584540247917175, + -0.04233037307858467, + -0.07389063388109207, + 0.0069122277200222015, + -0.028655298054218292, + 0.0009256217163056135, + 0.006456509232521057, + 0.015780752524733543, + 0.04104773327708244, + 0.06785684078931808, + -0.015390748158097267, + -0.1000579297542572, + 0.12897983193397522, + 0.009119695983827114, + 0.026429707184433937, + 0.007216913625597954, + 0.017223505303263664, + 0.013062399812042713, + -0.03518335521221161, + -0.0802420899271965, + 0.02708175592124462, + -0.11139139533042908, + -0.002265924820676446, + 0.08884670585393906, + 0.005022088997066021, + 0.013395226560533047, + 0.020051300525665283, + 0.0667843297123909, + 0.036751389503479004, + -0.05483269318938255, + 0.0110102454200387, + -0.050153788179159164, + -0.037093669176101685, + 0.0930333212018013, + -0.11174529790878296, + -0.0917634665966034, + 0.06999220699071884, + -0.08629058301448822, + -0.021925387904047966, + 0.03458182141184807, + -0.09491202980279922, + 0.007510027848184109, + -0.053864020854234695, + -0.028550567105412483, + 0.06886453181505203, + -0.04930993169546127, + 0.018260732293128967, + -0.04705258086323738, + 0.025586547330021858, + -0.10202223807573318, + 5.677975209920029e-35, + -0.018190501257777214, + 0.08355527371168137, + -0.058290816843509674, + 0.018233275040984154, + -0.12541724741458893, + 0.0032824643421918154, + 0.045022327452898026, + -0.054731257259845734, + 0.018228042870759964, + 0.07575955986976624, + 0.013195754960179329, + 0.0024343274999409914, + -0.04976949468255043, + -0.03942802548408508, + 0.07720179855823517, + 0.008255455642938614, + 0.07362746447324753, + 0.04016944020986557, + -0.021880893036723137, + -0.07853006571531296, + -0.024801120162010193, + -0.06471021473407745, + 0.03922045975923538, + 0.043572958558797836, + 0.006916722282767296, + 0.030719168484210968, + 0.06527964025735855, + 0.02883627638220787, + -0.04498632252216339, + -0.013207003474235535, + 0.024037988856434822, + 0.02138485759496689, + 0.02365000732243061, + 0.053853075951337814, + -0.05635128170251846, + -0.055760059505701065, + -0.031557630747556686, + -0.0780588835477829, + 0.09753119945526123, + 0.0036216445732861757, + 0.0791005939245224, + 0.024038657546043396, + 0.10266178101301193, + 0.04901750013232231, + 0.0262776929885149, + 0.08850937336683273, + 0.04975934326648712, + 0.008500165306031704, + 0.019367748871445656, + -0.029913589358329773, + 0.002704250393435359, + -0.012859974056482315, + 0.0010722159640863538, + -0.022806579247117043, + -0.07960160076618195, + -0.03427814692258835, + 0.05906984955072403, + 0.054372403770685196, + 0.04421694949269295, + 0.020969673991203308, + -0.0010711129289120436, + -0.036403071135282516, + -0.00623379647731781, + 0.03127909079194069, + -0.023218173533678055, + -0.04029101878404617, + 0.06710537523031235, + -0.04604567959904671, + 0.04373395815491676, + 0.005655194167047739, + 0.05285346508026123, + 0.1034393459558487, + 0.023943809792399406, + -0.008942538872361183, + 0.021970856934785843, + -0.044061966240406036, + 0.021823789924383163, + -0.004372394643723965, + -0.02884819731116295, + 0.0014240812743082643, + -0.05154838040471077, + 0.021829528734087944, + 0.007352199871093035, + 0.009242231957614422, + -0.007355427369475365, + 0.012001809664070606, + -0.029498877003788948, + 0.020801983773708344, + 0.012484760023653507, + -0.010730182752013206, + -0.013235069811344147, + -0.0035391610581427813, + -0.03789551556110382, + -0.04133693128824234, + -0.04325205460190773, + -2.119059949734492e-08, + -0.08494596928358078, + -0.013739995658397675, + 0.018243426457047462, + -0.01276261918246746, + -0.014206182211637497, + -0.03317103534936905, + 0.010062318295240402, + -0.003957100212574005, + -0.014675118029117584, + -0.046007368713617325, + -0.0037263412959873676, + 0.0527920201420784, + -0.08494371920824051, + -0.03184523805975914, + 0.1223292350769043, + 0.0345330648124218, + -0.05975022166967392, + 0.005278573837131262, + -0.023094046860933304, + -0.0062448931857943535, + -0.010829754173755646, + -0.003531443187966943, + 0.012149674817919731, + 0.07163312286138535, + -0.05353729799389839, + 0.004362716339528561, + 0.01878437213599682, + 0.14771771430969238, + 0.07491075247526169, + 0.02938019298017025, + 0.06107629835605621, + 0.02322278916835785, + -0.0176964420825243, + 0.010437224060297012, + -0.046362053602933884, + -0.05935722216963768, + -0.07525946944952011, + 0.05048094317317009, + 0.027155444025993347, + 0.08543288707733154, + -0.041956909000873566, + 0.002220097929239273, + 0.00805121660232544, + -0.011473669670522213, + -0.027217524126172066, + 0.09254614263772964, + 0.037440963089466095, + 0.009740432724356651, + -0.09634993225336075, + -0.13036449253559113, + -0.03590477630496025, + 0.05827169492840767, + 0.0009204841917380691, + 0.09294963628053665, + -0.030754907056689262, + 0.033027052879333496, + -0.02422511577606201, + -0.015677830204367638, + -0.05206895247101784, + -0.0017181354342028499, + 0.10675761103630066, + 0.10801874101161957, + -0.004101874306797981, + 0.08048149198293686 + ], + "arrow-square-up-bold||directional,pointer,pointing,arrowhead": [ + 0.04664988815784454, + -0.020176677033305168, + -0.04219815507531166, + 0.015220681205391884, + -0.03229411318898201, + -0.013378256000578403, + 0.04611925035715103, + -0.016308888792991638, + 0.01213585864752531, + 0.006028134375810623, + 0.010654180310666561, + 0.116287961602211, + 0.030052190646529198, + 0.005721868481487036, + -0.0479605533182621, + 0.03705677390098572, + -0.06162121519446373, + 0.06080428510904312, + 0.054671186953783035, + 0.04963569715619087, + 0.005750749725848436, + 0.00670670485123992, + -0.02911739982664585, + 0.019912444055080414, + -0.02340741641819477, + 0.014380782842636108, + 0.09337947517633438, + 0.027332467958331108, + -0.008661769330501556, + -0.047314953058958054, + -0.04104916378855705, + -0.061526551842689514, + -0.05455078184604645, + 0.022320084273815155, + -0.07703150063753128, + -0.015786195173859596, + 0.03371349349617958, + 0.007523604668676853, + -0.020236028358340263, + 0.04497344791889191, + 0.045516446232795715, + -0.019455337896943092, + 0.002190933795645833, + -0.04248778522014618, + 0.041677407920360565, + 0.0603950172662735, + -0.06632101535797119, + -0.015062682330608368, + 0.05448693037033081, + 0.02936621755361557, + -0.0783272460103035, + -0.1004321351647377, + -0.039277926087379456, + -0.03181253746151924, + 0.06518865376710892, + 0.08227578550577164, + -0.02933274768292904, + -0.027466949075460434, + 0.09228906780481339, + 0.013784563168883324, + 0.04722631722688675, + -0.025221973657608032, + 0.03944103792309761, + 0.007606741972267628, + 0.036866266280412674, + -0.01617407239973545, + -0.01804357022047043, + 0.03275714069604874, + 0.009092872031033039, + 0.03178149089217186, + 0.017599638551473618, + -0.002125738887116313, + -0.02393307536840439, + -0.03362375125288963, + -0.0005203851033002138, + -0.06315236538648605, + 0.04491857811808586, + 0.03443101420998573, + 0.014747309498488903, + -0.02486489713191986, + -0.07797417044639587, + 0.006092756520956755, + -0.07878020405769348, + 0.038265641778707504, + 0.037579528987407684, + 0.07036212831735611, + -0.08890338242053986, + -0.06738172471523285, + -0.04194720834493637, + 0.0017998014809563756, + -0.019950641319155693, + 0.003306384664028883, + -0.030613411217927933, + -0.011639577336609364, + 0.035348303616046906, + -0.031872402876615524, + 0.10391382873058319, + -0.07408959418535233, + -0.1382429152727127, + 0.06139957532286644, + 0.030396221205592155, + -0.004077560734003782, + 0.014088216237723827, + -0.08140829205513, + 0.004560381174087524, + 0.019951622933149338, + 0.011602929793298244, + -0.0433402881026268, + -0.03045884147286415, + -0.03081272356212139, + -0.054923102259635925, + -0.15245510637760162, + -0.04351333901286125, + -0.012827462516725063, + -0.039933837950229645, + 0.0011030457681044936, + -0.10961665213108063, + -0.03387364745140076, + 0.11750457435846329, + -0.03674830496311188, + 0.04117513447999954, + -0.04338861629366875, + -0.04642686992883682, + 0.009619523771107197, + -0.06018027290701866, + 0.014097532257437706, + 0.003976223058998585, + -3.722370002481781e-33, + 0.05216561630368233, + 0.07251191884279251, + 0.020329659804701805, + 0.018884824588894844, + -0.0102744922041893, + -0.021673837676644325, + -0.03137405216693878, + -0.054745666682720184, + -0.053573548793792725, + 0.022093890234827995, + 0.11932618916034698, + -0.039290208369493484, + -0.09933080524206161, + 0.09295915812253952, + 0.04418247193098068, + -0.09164374321699142, + 0.057723306119441986, + 0.08911368995904922, + -0.09610898792743683, + 0.009069894440472126, + -0.011813458055257797, + 0.051386505365371704, + -0.09966245293617249, + -0.028662631288170815, + -0.02585837058722973, + 0.0029032647144049406, + -0.03212583065032959, + 0.008317668922245502, + -0.059805165976285934, + 0.03239288181066513, + 0.053775135427713394, + 0.059069667011499405, + -0.021019987761974335, + -0.07960193604230881, + -0.0030343178659677505, + -0.007055017165839672, + -0.05512122064828873, + -0.03287757188081741, + -0.022280532866716385, + -0.03123825415968895, + -0.012442130595445633, + -0.02877049893140793, + -0.04328714311122894, + -0.003602360375225544, + 0.0038465058896690607, + 0.13228005170822144, + -0.06384698301553726, + -0.10690730065107346, + 0.0007333469111472368, + -0.023965442553162575, + 0.006422320380806923, + -0.00521365599706769, + 0.006063555367290974, + 0.029835989698767662, + 0.05602399632334709, + -0.011323041282594204, + -0.09175316244363785, + 0.12130387127399445, + 0.0241073090583086, + 0.0306668933480978, + 0.005614246241748333, + 0.0018442540895193815, + 0.011897803284227848, + -0.01197486836463213, + -0.07551296055316925, + 0.03259483352303505, + -0.10290811210870743, + 0.008529885672032833, + 0.0724041759967804, + 0.011606676504015923, + -0.002446739701554179, + 0.027252908796072006, + 0.041370078921318054, + 0.057503800839185715, + -0.04089672490954399, + 0.005488293711096048, + -0.03141050413250923, + -0.06698612123727798, + 0.09511842578649521, + -0.10879315435886383, + -0.08509130030870438, + 0.06338662654161453, + -0.0673532783985138, + -0.04535486549139023, + 0.04830139875411987, + -0.08379143476486206, + -0.008360594511032104, + -0.0543021596968174, + -0.03758717328310013, + 0.06480316072702408, + -0.051233742386102676, + 0.03374063968658447, + -0.018102901056408882, + 0.012020180933177471, + -0.08891049027442932, + 1.2725775568194867e-34, + -0.017385046929121017, + 0.09206467121839523, + -0.06332530826330185, + -0.002046535722911358, + -0.1248450055718422, + 0.014572354033589363, + 0.045752402395009995, + -0.057213425636291504, + 0.023778939619660378, + 0.03549034520983696, + -0.01031443476676941, + 0.0019212723709642887, + -0.021797431632876396, + -0.045177239924669266, + 0.0774044543504715, + 0.020713210105895996, + 0.07755587249994278, + 0.05899130925536156, + -0.027951490134000778, + -0.07122969627380371, + -0.020780976861715317, + -0.08119356632232666, + 0.030309505760669708, + 0.019429903477430344, + -0.0037375681567937136, + 0.028471117839217186, + 0.053962934762239456, + 0.03845328465104103, + -0.03506689518690109, + -0.030253471806645393, + 0.03795197233557701, + 0.027612170204520226, + 0.011191594414412975, + 0.05975917726755142, + -0.05787738040089607, + -0.03858180344104767, + -0.03657073527574539, + -0.0937815010547638, + 0.09157782047986984, + 0.002382490085437894, + 0.07881759107112885, + 0.01764538139104843, + 0.08175500482320786, + 0.04573918506503105, + 0.03319858759641647, + 0.07157513499259949, + 0.04858451709151268, + 0.012557209469377995, + 0.010023623704910278, + -0.012311977334320545, + -0.0031617972999811172, + -0.024336475878953934, + -0.014654052443802357, + 0.0015137945301830769, + -0.08772401511669159, + -0.023532947525382042, + 0.0793832391500473, + 0.07165069878101349, + 0.042629532516002655, + 0.020562173798680305, + -0.01146829966455698, + -0.02383231930434704, + -0.009637890383601189, + 0.039683081209659576, + -0.025833550840616226, + -0.027973758056759834, + 0.08393558859825134, + -0.05022939667105675, + 0.0308738611638546, + 0.025157447904348373, + 0.06883233785629272, + 0.103349469602108, + 0.025754550471901894, + -0.005470460280776024, + 0.028193652629852295, + -0.046732209622859955, + 0.028803950175642967, + 0.0018542892066761851, + -0.03116321563720703, + -0.01932612992823124, + -0.059579987078905106, + 0.026433167979121208, + 0.004872132558375597, + 0.028032613918185234, + -0.006864534225314856, + 0.02467179484665394, + -0.03328555449843407, + 0.055621713399887085, + 0.0014222951140254736, + -0.011245416477322578, + -0.002587879542261362, + -0.01878463663160801, + -0.040970683097839355, + -0.044159047305583954, + -0.04442538321018219, + -2.0384350207791613e-08, + -0.08251950889825821, + -0.015776170417666435, + -0.0031916070729494095, + -0.022368814796209335, + 0.001715496415272355, + -0.033427830785512924, + 0.009546714834868908, + -0.006547477561980486, + -0.0015872129006311297, + -0.09433455020189285, + -0.008810022845864296, + 0.0549885630607605, + -0.07633000612258911, + -0.0425947941839695, + 0.11628132313489914, + 0.03968290984630585, + -0.05307343602180481, + 0.019417699426412582, + -0.030494675040245056, + -0.010555372573435307, + -0.02676994726061821, + 0.02131325751543045, + 0.011754371225833893, + 0.07698056101799011, + -0.06278089433908463, + -0.005521938670426607, + -0.0002122434671036899, + 0.15349853038787842, + 0.0800500139594078, + 0.027237463742494583, + 0.06820310652256012, + 0.041253309696912766, + -0.027110975235700607, + 0.007858327589929104, + -0.03767523542046547, + -0.03897251933813095, + -0.06002591922879219, + 0.05371268838644028, + 0.022680876776576042, + 0.09053588658571243, + -0.04843064770102501, + -0.0019159517250955105, + 0.01423164363950491, + -0.022289443761110306, + -0.03125010430812836, + 0.0988217145204544, + 0.02334260754287243, + -0.0011743088252842426, + -0.11974727362394333, + -0.11402498185634613, + -0.024966096505522728, + 0.05101233720779419, + 0.0023656245321035385, + 0.09281118959188461, + -0.036612022668123245, + 0.01943858712911606, + -0.028946444392204285, + -0.014087715186178684, + -0.06775984168052673, + 0.0012272618478164077, + 0.10284595191478729, + 0.07615255564451218, + -0.00440683588385582, + 0.07790616899728775 + ], + "arrow-square-up-left-bold||directional,pointer,pointing,arrowhead": [ + 0.05239531770348549, + -0.022845767438411713, + -0.03600728139281273, + 0.016140656545758247, + -0.03698498755693436, + -0.007096668239682913, + 0.04037506878376007, + -0.01490770187228918, + 0.0002515432715881616, + 0.0031930722761899233, + 0.02423185296356678, + 0.11279264837503433, + 0.028780903667211533, + 0.018094724044203758, + -0.059630393981933594, + 0.03661420941352844, + -0.06933067739009857, + 0.050890594720840454, + 0.04861392825841904, + 0.057776592671871185, + -0.003973491955548525, + 0.0024070870131254196, + -0.05258922651410103, + 0.014864730648696423, + -0.019798731431365013, + 0.02845282107591629, + 0.08839579671621323, + 0.024667367339134216, + -0.008775602094829082, + -0.058423858135938644, + -0.04761389642953873, + -0.05582849681377411, + -0.06196663901209831, + 0.026063593104481697, + -0.09138061851263046, + -0.024689294397830963, + 0.029370732605457306, + 0.003943505231291056, + -0.016246728599071503, + 0.039483942091464996, + 0.041045233607292175, + -0.032343488186597824, + 0.005188163835555315, + -0.031186813488602638, + 0.042053479701280594, + 0.06192255765199661, + -0.07946013659238815, + -0.010924066416919231, + 0.056084148585796356, + 0.0362129881978035, + -0.08811325579881668, + -0.08657242357730865, + -0.04614643752574921, + -0.009350438602268696, + 0.06226786598563194, + 0.07909981161355972, + -0.025326348841190338, + -0.02764512039721012, + 0.0986904725432396, + 0.018439382314682007, + 0.05854233354330063, + -0.023721085861325264, + 0.027279462665319443, + 0.005463821347802877, + 0.027505068108439445, + -0.026640871539711952, + -0.019633827731013298, + 0.033895209431648254, + 0.024427201598882675, + 0.025879614055156708, + 0.020766161382198334, + -0.005963996052742004, + -0.03263034671545029, + -0.03450809791684151, + 0.010322627611458302, + -0.06557217985391617, + 0.051010824739933014, + 0.03852597624063492, + 0.010756331495940685, + -0.02665150724351406, + -0.07946296036243439, + 0.02108185365796089, + -0.07106684148311615, + 0.04212281480431557, + 0.0409674346446991, + 0.07283862680196762, + -0.08602042496204376, + -0.04815727844834328, + -0.02753962203860283, + 0.0033041464630514383, + -0.02612515352666378, + 0.007524399086833, + -0.020600242540240288, + -0.024696625769138336, + 0.03727400675415993, + -0.03326701372861862, + 0.09125519543886185, + -0.07319647073745728, + -0.1321447789669037, + 0.06212831288576126, + 0.03734709322452545, + -0.013440901413559914, + 0.017801983281970024, + -0.08797591924667358, + 0.007658075541257858, + 0.010436242446303368, + 0.002169867744669318, + -0.041223324835300446, + -0.032307229936122894, + -0.034944746643304825, + -0.05728635564446449, + -0.1407860666513443, + -0.04745475947856903, + -0.02371310442686081, + -0.029853681102395058, + -0.005849294364452362, + -0.12117460370063782, + -0.021005628630518913, + 0.12899906933307648, + -0.03900933638215065, + 0.025414681062102318, + -0.04592163488268852, + -0.04380294680595398, + -0.004302804823964834, + -0.055523522198200226, + 0.014636735431849957, + -0.018111757934093475, + -4.032472759068393e-33, + 0.043742600828409195, + 0.05660776048898697, + 0.02817770466208458, + 0.017587335780262947, + -0.010647325776517391, + -0.016775332391262054, + -0.03523912653326988, + -0.041009243577718735, + -0.053160373121500015, + 0.02498205006122589, + 0.13138626515865326, + -0.04102371633052826, + -0.10036540031433105, + 0.09148665517568588, + 0.05134391039609909, + -0.09950613975524902, + 0.050397567451000214, + 0.0820896178483963, + -0.09951303899288177, + 0.0041412771679461, + -0.016415510326623917, + 0.06655509024858475, + -0.08822426199913025, + -0.02262447215616703, + -0.01717638224363327, + 0.0023151144850999117, + -0.027660490944981575, + -0.002684445586055517, + -0.06265199184417725, + 0.03036515973508358, + 0.05931168794631958, + 0.06070192530751228, + -0.02359744906425476, + -0.08808477967977524, + 0.004654081538319588, + -0.008066569454967976, + -0.053219959139823914, + -0.03443904593586922, + -0.021745681762695312, + -0.039728794246912, + -0.022657210007309914, + -0.02959476225078106, + -0.05064705014228821, + -0.009040521457791328, + 0.004379630088806152, + 0.1256425976753235, + -0.05323544517159462, + -0.09821400791406631, + 0.01631803810596466, + -0.028388801962137222, + -0.0025209372397512197, + -0.007237260229885578, + 0.012158522382378578, + 0.027062684297561646, + 0.054378535598516464, + -0.004101118538528681, + -0.09217902272939682, + 0.1270628422498703, + 0.01620141789317131, + 0.033760108053684235, + 0.009552830830216408, + 0.012500137090682983, + 0.0074156345799565315, + -0.021870698779821396, + -0.08096199482679367, + 0.01851133070886135, + -0.10503106564283371, + -0.002135341288521886, + 0.08087042719125748, + 0.013003864325582981, + -0.008503737859427929, + 0.022644151002168655, + 0.05870293825864792, + 0.06081007793545723, + -0.04594865068793297, + -0.00012298514775466174, + -0.042511023581027985, + -0.060380496084690094, + 0.07336217910051346, + -0.10284049808979034, + -0.09570696204900742, + 0.0713939517736435, + -0.07055596262216568, + -0.04418054595589638, + 0.04495849460363388, + -0.08856723457574844, + -0.005188678856939077, + -0.05777684226632118, + -0.03551552817225456, + 0.052522771060466766, + -0.05995023995637894, + 0.031229237094521523, + -0.023808786645531654, + 0.014806400053203106, + -0.0937354788184166, + 2.5555912994223676e-34, + -0.026348087936639786, + 0.07859276980161667, + -0.07520631700754166, + 0.004538607783615589, + -0.12177308648824692, + 0.01706804893910885, + 0.05793861672282219, + -0.05460750311613083, + 0.03095385991036892, + 0.04677344858646393, + -0.0046718670055270195, + 0.007311878260225058, + -0.026506906375288963, + -0.04526778683066368, + 0.06678349524736404, + 0.021966490894556046, + 0.08026387542486191, + 0.05132843926548958, + -0.014062543399631977, + -0.07482515275478363, + -0.03307609632611275, + -0.07517822086811066, + 0.03135482594370842, + 0.036462534219026566, + 0.0016874512657523155, + 0.027167297899723053, + 0.060307539999485016, + 0.028299542143940926, + -0.037765052169561386, + -0.019881339743733406, + 0.03695210441946983, + 0.028885239735245705, + 0.029881274327635765, + 0.060298219323158264, + -0.0567520447075367, + -0.05318623036146164, + -0.035830266773700714, + -0.08303990960121155, + 0.093199223279953, + 0.00712117925286293, + 0.08123890310525894, + 0.02261069044470787, + 0.09221255779266357, + 0.05619165673851967, + 0.034840621054172516, + 0.0692177414894104, + 0.047077834606170654, + 0.014251764863729477, + 0.0026779500767588615, + -0.01260389108210802, + 0.0021397126838564873, + -0.008892571553587914, + -0.017712067812681198, + -0.01569066196680069, + -0.07753103226423264, + -0.038559440523386, + 0.06508225202560425, + 0.0629047080874443, + 0.05512961000204086, + 0.026276743039488792, + -0.013201339170336723, + -0.028821276500821114, + -0.0005687021184712648, + 0.035484060645103455, + -0.02835462987422943, + -0.030220558866858482, + 0.0697081983089447, + -0.04621468856930733, + 0.021431243047118187, + 0.016241837292909622, + 0.07125367224216461, + 0.10941816866397858, + 0.01725737564265728, + -0.014041967689990997, + 0.028997784480452538, + -0.0426873080432415, + 0.020573416724801064, + -0.000884546956513077, + -0.029620934277772903, + -0.014950118027627468, + -0.05640776455402374, + 0.019411958754062653, + 0.01020774431526661, + 0.028269978240132332, + -0.009682505391538143, + 0.01982671022415161, + -0.02755521424114704, + 0.04044698551297188, + 0.012531261891126633, + -0.006995553150773048, + 0.0038921574596315622, + -0.013467266224324703, + -0.032642610371112823, + -0.0336923822760582, + -0.04314054548740387, + -2.2024064350034678e-08, + -0.07195261120796204, + -0.024780815467238426, + 0.004757261835038662, + -0.020949918776750565, + -0.007863732054829597, + -0.026953496038913727, + 0.02083280310034752, + 0.001978136133402586, + -0.00784231536090374, + -0.08166936039924622, + -0.0007892478606663644, + 0.06516019999980927, + -0.07950864732265472, + -0.03388446569442749, + 0.12315339595079422, + 0.03380657359957695, + -0.0604092963039875, + 0.024922577664256096, + -0.027383029460906982, + -0.0020422826055437326, + -0.00971333310008049, + 0.004350136499851942, + 0.0049673826433718204, + 0.0741310641169548, + -0.054668575525283813, + 0.004045860376209021, + 0.0044195400550961494, + 0.1467059999704361, + 0.07278510183095932, + 0.025078440085053444, + 0.0651094987988472, + 0.02950483001768589, + -0.02242763713002205, + 0.0006738637457601726, + -0.033441897481679916, + -0.035751741379499435, + -0.06545896083116531, + 0.05216241255402565, + 0.014089656062424183, + 0.08718596398830414, + -0.03687019273638725, + -0.002960438374429941, + 0.007398801855742931, + -0.017468545585870743, + -0.028508780524134636, + 0.09715636074542999, + 0.02736537903547287, + 0.009110798127949238, + -0.11305403709411621, + -0.12944050133228302, + -0.027792979031801224, + 0.057233378291130066, + 0.004931763280183077, + 0.08268715441226959, + -0.028771238401532173, + 0.039851561188697815, + -0.02307393215596676, + -0.026780664920806885, + -0.061825741082429886, + -0.0022934055887162685, + 0.1055511087179184, + 0.10320024192333221, + -0.0010469916742295027, + 0.08099997788667679 + ], + "arrow-square-up-right-bold||directional,pointer,pointing,arrowhead": [ + 0.0485633909702301, + -0.02308383770287037, + -0.0459754504263401, + 0.011467496864497662, + -0.042667973786592484, + 0.0019242746056988835, + 0.040480442345142365, + -0.012963971123099327, + -0.0026662484742701054, + 0.005783507134765387, + 0.030991489067673683, + 0.11621399223804474, + 0.031023157760500908, + 0.014010666869580746, + -0.055704616010189056, + 0.03815532848238945, + -0.07160965353250504, + 0.05409831553697586, + 0.047919776290655136, + 0.051477983593940735, + 0.00731114624068141, + 0.00043132895370945334, + -0.050235483795404434, + 0.014989322982728481, + -0.015621869824826717, + 0.02755405567586422, + 0.08322212100028992, + 0.0236059557646513, + -0.009615637362003326, + -0.052814923226833344, + -0.05372985079884529, + -0.056048959493637085, + -0.056951310485601425, + 0.025173645466566086, + -0.08558860421180725, + -0.017875323072075844, + 0.025071147829294205, + 0.0034293641801923513, + -0.01864301599562168, + 0.03604380413889885, + 0.03179708123207092, + -0.03932797908782959, + 0.0017927397275343537, + -0.034469589591026306, + 0.03831326961517334, + 0.0640302300453186, + -0.07675710320472717, + -0.007951172068715096, + 0.052105557173490524, + 0.03386691212654114, + -0.08946578204631805, + -0.08485318720340729, + -0.052836425602436066, + -0.006669549737125635, + 0.0667690858244896, + 0.08871068060398102, + -0.027368837967514992, + -0.02604689635336399, + 0.10131240636110306, + 0.015218119136989117, + 0.04921615868806839, + -0.02535962127149105, + 0.028183283284306526, + 0.012475364841520786, + 0.032781776040792465, + -0.023486806079745293, + -0.02285151183605194, + 0.03260127082467079, + 0.017978768795728683, + 0.030376993119716644, + 0.01915392465889454, + -0.006279283203184605, + -0.03040706366300583, + -0.03210701048374176, + 0.008992649614810944, + -0.06524837762117386, + 0.04923552647233009, + 0.0375528410077095, + 0.010483884252607822, + -0.02518284134566784, + -0.07911205291748047, + 0.02185901440680027, + -0.07275009900331497, + 0.04863579571247101, + 0.04300997406244278, + 0.0734451562166214, + -0.08618680387735367, + -0.04399187117815018, + -0.021012233570218086, + 0.004219922702759504, + -0.02218344248831272, + -0.001471383380703628, + -0.02334936335682869, + -0.01653042994439602, + 0.032477326691150665, + -0.03288489952683449, + 0.0888015627861023, + -0.0752515122294426, + -0.12969550490379333, + 0.056367650628089905, + 0.036186620593070984, + -0.020790254697203636, + 0.019129730761051178, + -0.08646528422832489, + 0.0043111564591526985, + 0.005331230349838734, + 0.005121416412293911, + -0.03738647326827049, + -0.025889676064252853, + -0.030206715688109398, + -0.05771214887499809, + -0.14122141897678375, + -0.04856115207076073, + -0.02034067176282406, + -0.033444177359342575, + -0.0022958770859986544, + -0.12030218541622162, + -0.026597851887345314, + 0.12405690550804138, + -0.035993125289678574, + 0.026284880936145782, + -0.03948233649134636, + -0.04621734097599983, + -0.002699846401810646, + -0.05856439471244812, + 0.010409764014184475, + -0.01759335771203041, + -3.8812248396839663e-33, + 0.04188452288508415, + 0.05393056198954582, + 0.03150712326169014, + 0.01617291197180748, + -0.009395875968039036, + -0.019559122622013092, + -0.04394624009728432, + -0.042659372091293335, + -0.05304129794239998, + 0.03563511371612549, + 0.13072632253170013, + -0.040111493319272995, + -0.09676589071750641, + 0.09698843210935593, + 0.05235789716243744, + -0.09838210046291351, + 0.04906019940972328, + 0.08402097970247269, + -0.09772704541683197, + 0.0017784282099455595, + -0.020874103531241417, + 0.06411729007959366, + -0.08555406332015991, + -0.02542419545352459, + -0.01953698694705963, + 0.0027247064281255007, + -0.028663858771324158, + 5.6330136430915445e-06, + -0.06289545446634293, + 0.02838088944554329, + 0.053767137229442596, + 0.04999777302145958, + -0.023870304226875305, + -0.08389326930046082, + 0.00503867631778121, + -0.011574847623705864, + -0.05406004935503006, + -0.03404933586716652, + -0.025604883208870888, + -0.04106505960226059, + -0.022324424237012863, + -0.023924710229039192, + -0.05724405124783516, + -0.008475239388644695, + 0.009753238409757614, + 0.12254305183887482, + -0.05572844296693802, + -0.09875243157148361, + 0.01899663172662258, + -0.026508960872888565, + 0.00025689194444566965, + -0.003473946126177907, + 0.013840650208294392, + 0.03546398878097534, + 0.053170546889305115, + 0.0001541063975309953, + -0.08951208740472794, + 0.13748735189437866, + 0.01306898333132267, + 0.032466821372509, + 0.0049685328267514706, + 0.011293821968138218, + 0.013993936590850353, + -0.02157844603061676, + -0.08118496090173721, + 0.022954342886805534, + -0.10487043112516403, + -0.0031318271066993475, + 0.08596357703208923, + 0.017078163102269173, + -0.013786355033516884, + 0.02914327196776867, + 0.05116961523890495, + 0.06567852199077606, + -0.05071500688791275, + -0.0006551665137521923, + -0.04841150715947151, + -0.059777457267045975, + 0.07438474893569946, + -0.09517153352499008, + -0.09871622920036316, + 0.06960708647966385, + -0.07271657884120941, + -0.048757802695035934, + 0.039403289556503296, + -0.09325575083494186, + -0.008524136617779732, + -0.05943628028035164, + -0.031639304012060165, + 0.04760979861021042, + -0.05574541911482811, + 0.03611515834927559, + -0.021040599793195724, + 0.011532423086464405, + -0.09090070426464081, + 1.2372960811111395e-34, + -0.021657679229974747, + 0.07785546779632568, + -0.06420101970434189, + 0.006075798999518156, + -0.12509870529174805, + 0.022829722613096237, + 0.06263062357902527, + -0.05693190544843674, + 0.03263191133737564, + 0.049377359449863434, + -0.004967214073985815, + 0.005707980133593082, + -0.02725669927895069, + -0.04839548096060753, + 0.07064393162727356, + 0.02329663559794426, + 0.07543863356113434, + 0.05533289164304733, + -0.0063552698120474815, + -0.0694315955042839, + -0.033599622547626495, + -0.08370397239923477, + 0.024869438260793686, + 0.035811878740787506, + -0.0010818963637575507, + 0.027823083102703094, + 0.06043051928281784, + 0.027973752468824387, + -0.03219473361968994, + -0.018691282719373703, + 0.03851844742894173, + 0.021515697240829468, + 0.017040761187672615, + 0.06915292143821716, + -0.05765114724636078, + -0.05310630425810814, + -0.040906962007284164, + -0.08017513900995255, + 0.09203246235847473, + 0.007366751320660114, + 0.08524373173713684, + 0.022477826103568077, + 0.09507811069488525, + 0.05683903023600578, + 0.029718205332756042, + 0.06952832639217377, + 0.04261010140180588, + 0.01468745619058609, + -0.002982728648930788, + -0.018169265240430832, + -0.0011125403689220548, + -0.00878309179097414, + -0.014381681568920612, + -0.014819707721471786, + -0.0754222497344017, + -0.034320928156375885, + 0.07114969938993454, + 0.05933859944343567, + 0.04964512214064598, + 0.025718968361616135, + -0.008676981553435326, + -0.03023025207221508, + -0.005393358878791332, + 0.03714320436120033, + -0.028711924329400063, + -0.028643740341067314, + 0.06911813467741013, + -0.05193236842751503, + 0.01520964689552784, + 0.01588030718266964, + 0.06691643595695496, + 0.10141851007938385, + 0.01554858312010765, + -0.014822307974100113, + 0.024095378816127777, + -0.050763923674821854, + 0.018857726827263832, + -0.001194845186546445, + -0.028374068439006805, + -0.0231699887663126, + -0.0522303432226181, + 0.02704566903412342, + 0.005251980386674404, + 0.035864777863025665, + -0.015169070102274418, + 0.024222776293754578, + -0.027616634964942932, + 0.042401935905218124, + 0.01586231030523777, + -0.011808502487838268, + 0.00805377122014761, + -0.005934002343565226, + -0.03443578630685806, + -0.028251387178897858, + -0.04543157294392586, + -2.1964535079632697e-08, + -0.07643460482358932, + -0.025104805827140808, + 0.0062136962078511715, + -0.023813454434275627, + -0.001153265591710806, + -0.02880982682108879, + 0.018223661929368973, + 0.004436969757080078, + -0.006133990827947855, + -0.08585920184850693, + -0.004623561631888151, + 0.06321422010660172, + -0.08026782423257828, + -0.031324226409196854, + 0.1325162947177887, + 0.029424244537949562, + -0.06189528852701187, + 0.024692922830581665, + -0.02610187418758869, + -0.004833891987800598, + -0.01461006235331297, + 0.006057642865926027, + 0.007270044181495905, + 0.07418854534626007, + -0.05201532319188118, + 0.006614083424210548, + -1.779832564352546e-05, + 0.1472964584827423, + 0.06821177899837494, + 0.027199674397706985, + 0.06531716883182526, + 0.02973751537501812, + -0.020460233092308044, + -0.0006915186531841755, + -0.0233111921697855, + -0.02735949121415615, + -0.0626506432890892, + 0.04985904321074486, + 0.020945416763424873, + 0.08517269045114517, + -0.03471972048282623, + -0.005500569473952055, + 0.003937533590942621, + -0.01855427399277687, + -0.030523886904120445, + 0.09680581092834473, + 0.03200792148709297, + 0.0068990569561719894, + -0.1208777204155922, + -0.1315797120332718, + -0.02800561487674713, + 0.062495987862348557, + 0.006797871086746454, + 0.08000613003969193, + -0.029830388724803925, + 0.04150765389204025, + -0.02373066172003746, + -0.030308589339256287, + -0.05554543435573578, + -0.002138777170330286, + 0.10723275691270828, + 0.10239807516336441, + -0.0035129075404256582, + 0.0796564370393753 + ], + "arrow-u-down-left-bold||directional,pointer,pointing,arrowhead,undo,return,u-turns": [ + 0.032163769006729126, + -0.02542780712246895, + -0.04299383610486984, + 0.03474230319261551, + -0.03797071799635887, + 0.0008223959011957049, + 0.042518068104982376, + -0.03693392500281334, + -0.007406638935208321, + 0.0033828497398644686, + 0.0456811785697937, + 0.09775887429714203, + 0.010661518201231956, + 9.085602505365387e-05, + -0.03702781721949577, + 0.016665855422616005, + -0.06502434611320496, + 0.06198716163635254, + 0.03520529717206955, + 0.05000530928373337, + 0.015581064857542515, + 0.007077512796968222, + -0.021654177457094193, + 0.015147441998124123, + -0.011848784051835537, + 0.023695193231105804, + 0.08480119705200195, + 0.011501949280500412, + -0.000738181290216744, + -0.1095394417643547, + -0.05947832763195038, + -0.028621232137084007, + -0.015101867727935314, + 0.024464083835482597, + -0.12595827877521515, + -0.027525637298822403, + 0.009166749194264412, + 5.6938926718430594e-05, + -0.017795760184526443, + 0.04692305624485016, + 0.01606266386806965, + -0.02366717718541622, + 0.005226041190326214, + -0.004757831804454327, + 0.0439828559756279, + 0.09240362048149109, + -0.1254877746105194, + -0.00876251608133316, + 0.06182786449790001, + 0.08242852240800858, + -0.016254017129540443, + -0.033059701323509216, + -0.061427660286426544, + 0.021097103133797646, + 0.07431091368198395, + 0.08401630818843842, + 0.010897133499383926, + -0.02040620520710945, + 0.05904390662908554, + -0.0005069243488833308, + 0.06362349539995193, + -0.03640799969434738, + 0.010372328571975231, + 0.006178739946335554, + 0.01839504949748516, + -0.01074393093585968, + -0.014755723997950554, + -0.006203975062817335, + 0.02041638270020485, + 0.013390697538852692, + 0.015566890127956867, + -0.06697305291891098, + -0.04781356453895569, + -0.05440831556916237, + -0.0068121557123959064, + -0.024921847507357597, + 0.045646898448467255, + 0.06266136467456818, + -0.04467833414673805, + -0.033450737595558167, + -0.0428055115044117, + 4.5231317926663905e-05, + -0.04454809054732323, + 0.0778418704867363, + 0.052386924624443054, + 0.06268156319856644, + -0.11245139688253403, + -0.017471197992563248, + 0.03274782747030258, + 0.01624833047389984, + -0.0747632086277008, + -0.03617815673351288, + -0.004522962030023336, + -0.03662232682108879, + 0.0226085614413023, + -0.05272575467824936, + 0.10429596155881882, + -0.06817623972892761, + -0.12215259671211243, + 0.0649474710226059, + 0.03979722410440445, + -0.006366719491779804, + 0.01152094081044197, + -0.06608285754919052, + -0.0076688965782523155, + 0.008852179162204266, + -0.017256341874599457, + -0.06193042919039726, + -0.03882274776697159, + -0.009693133644759655, + -0.026936881244182587, + -0.12823404371738434, + -0.0196791160851717, + -0.042159125208854675, + -0.00025984321837313473, + -0.043391935527324677, + -0.11029911786317825, + -0.02106819488108158, + 0.05280042439699173, + -0.01351031195372343, + 0.014449885115027428, + -0.04081195220351219, + -0.05283259600400925, + 0.006377748213708401, + -0.08954261243343353, + -0.025110390037298203, + -0.006959766149520874, + -4.434466113110691e-33, + 0.06622364372015, + 0.025465484708547592, + 0.005043881479650736, + -0.01446598395705223, + -0.005584893748164177, + 0.014004929922521114, + -0.0466051809489727, + -0.05580374225974083, + -0.10745011270046234, + 0.005690386518836021, + 0.16010330617427826, + 0.024776631966233253, + -0.052849069237709045, + 0.10512584447860718, + 0.02749442867934704, + -0.07063093781471252, + 0.07961006462574005, + 0.02793877385556698, + -0.11568102985620499, + -0.023851215839385986, + 0.019450124353170395, + 0.09285972267389297, + -0.07232547551393509, + -0.06895711272954941, + 0.010171065106987953, + -0.0010943671222776175, + -0.051934193819761276, + -0.005304695572704077, + -0.07650724053382874, + 0.017158107832074165, + 0.0047393557615578175, + 0.04400784522294998, + -0.017337167635560036, + -0.04953531175851822, + -0.010841840878129005, + 0.018680959939956665, + -0.07595722377300262, + -0.028959114104509354, + -0.01037739496678114, + -0.019261224195361137, + -0.060273006558418274, + -0.05662161484360695, + -0.0907737985253334, + -0.030469980090856552, + 0.019488807767629623, + 0.08981284499168396, + -0.041260749101638794, + -0.05191250890493393, + 0.02118370682001114, + -0.05087840184569359, + 0.022416353225708008, + 0.021120481193065643, + -0.011455741710960865, + -0.011045923456549644, + 0.02188519947230816, + 0.003910513129085302, + -0.05452201887965202, + 0.16424378752708435, + -0.05637107789516449, + 0.041780903935432434, + 0.03434084355831146, + 0.046671561896800995, + 0.012682214379310608, + -0.01200468186289072, + -0.11401623487472534, + 0.011357208713889122, + -0.11509944498538971, + 0.02444293536245823, + 0.06874095648527145, + 0.011143522337079048, + -0.04623531550168991, + 0.02002275176346302, + 0.0447707399725914, + 0.04630454257130623, + -0.04491274803876877, + 0.011897300370037556, + -0.03698008507490158, + -0.0699949860572815, + 0.09043591469526291, + -0.09908124804496765, + -0.1298517882823944, + 0.03409940004348755, + -0.08019422739744186, + 0.01412610337138176, + 0.0928947702050209, + -0.052990783005952835, + 0.018696479499340057, + -0.0457388311624527, + -0.021203991025686264, + 0.05061081796884537, + -0.05787480250000954, + 0.00972667708992958, + 0.007685543037950993, + 0.014301522634923458, + -0.037834350019693375, + 3.700847435602194e-34, + 0.0306842103600502, + 0.052352797240018845, + -0.06174090877175331, + 0.03472905978560448, + -0.13835330307483673, + 0.004119451157748699, + 0.06516559422016144, + -0.0007411136757582426, + -0.0026129232719540596, + 0.048839181661605835, + 0.023518351837992668, + 0.04064459353685379, + -0.01824755035340786, + -0.016614437103271484, + 0.10038977861404419, + 0.017223244532942772, + 0.04974555969238281, + 0.044049423187971115, + -0.0035094371996819973, + -0.012838651426136494, + 0.000425449397880584, + -0.06292495876550674, + 0.022086823359131813, + 0.0242135189473629, + -0.015389339067041874, + 0.02786923199892044, + 0.09498509019613266, + 0.02721003256738186, + -0.0095356535166502, + -0.04988759383559227, + 0.027064597234129906, + 0.015781117603182793, + 0.03498019650578499, + 0.05164776369929314, + -0.047376420348882675, + -0.03412782400846481, + -0.05087927728891373, + -0.028528884053230286, + 0.048234038054943085, + 0.0012430778006091714, + 0.03607805818319321, + 0.036855049431324005, + 0.10980383306741714, + 0.04641198366880417, + -0.00591255770996213, + 0.05353169143199921, + -0.03702912852168083, + 0.03357485681772232, + -0.019526032730937004, + -0.007493291515856981, + 0.010605170391499996, + -0.010412078350782394, + -0.03489004820585251, + -0.029983947053551674, + -0.08735141158103943, + -0.000609220121987164, + 0.08368511497974396, + 0.02185739204287529, + 0.06710737943649292, + 0.03996996581554413, + -0.02897210791707039, + -0.018783384934067726, + 0.021256251260638237, + 0.042365435510873795, + -0.01759568229317665, + -0.041383665055036545, + 0.023782040923833847, + -0.027558833360671997, + -0.024809537455439568, + -0.020217284560203552, + 0.08631852269172668, + 0.10425277799367905, + 0.020792579278349876, + -0.05968044698238373, + 0.0805131122469902, + -0.035647571086883545, + 0.0032834152225404978, + -0.016223955899477005, + -0.034409571439027786, + -0.05423382297158241, + -0.03700907528400421, + -0.023474067449569702, + 0.003124157665297389, + 0.03515578433871269, + -0.03167711943387985, + 0.010779784992337227, + -0.08042369782924652, + 0.037666141986846924, + 0.02864336222410202, + 0.016315246000885963, + -0.014207634143531322, + 0.024496063590049744, + 0.03561769425868988, + -0.03951722010970116, + -0.04338458925485611, + -2.5166391637299057e-08, + -0.11425543576478958, + -0.04587513580918312, + 0.0517517551779747, + 0.0051106479950249195, + 0.010745578445494175, + 5.815588519908488e-05, + 0.016256246715784073, + 0.03344593942165375, + -0.029537180438637733, + -0.0996093824505806, + 0.020840885117650032, + 0.07201885432004929, + -0.06116796284914017, + -0.029838798567652702, + 0.12353041768074036, + 0.04366987198591232, + -0.03573642298579216, + 0.02132343128323555, + -0.007041053846478462, + -0.010552170686423779, + -0.027987385168671608, + -0.006303473375737667, + -0.010943353176116943, + 0.06106971576809883, + -0.04361795261502266, + 0.007565287407487631, + -0.010860567912459373, + 0.1389361470937729, + 0.052133847028017044, + 0.012445862405002117, + 0.07950086146593094, + 0.017390232533216476, + -0.0027339744847267866, + 0.020599208772182465, + -0.05111268535256386, + -0.007926230318844318, + -0.02958795614540577, + 0.016202080994844437, + 0.061609603464603424, + 0.07388979941606522, + -0.02246836945414543, + 0.012551636435091496, + -0.04914533719420433, + 0.019365491345524788, + -0.07879350334405899, + 0.0593184158205986, + 0.0589272566139698, + -0.010484562255442142, + -0.08236417919397354, + -0.1375730186700821, + -0.030084965750575066, + 0.03303107991814613, + 0.008554556407034397, + 0.06363239884376526, + 0.008875579573214054, + 0.08677852898836136, + -0.008614014834165573, + -0.04458072781562805, + -0.06805197894573212, + 0.016954271122813225, + 0.09589972347021103, + 0.07814984023571014, + -0.010904205031692982, + 0.04240213334560394 + ], + "arrow-u-down-right-bold||directional,pointer,pointing,arrowhead,redo,u-turns": [ + 0.048133786767721176, + -0.049542371183633804, + -0.06524384766817093, + 0.01156360562890768, + -0.03574567660689354, + -0.0020149697083979845, + 0.06745779514312744, + 0.0017514642095193267, + -0.028168337419629097, + -0.005911663640290499, + 0.03812089562416077, + 0.07671407610177994, + 0.025770006701350212, + 0.0037365739699453115, + -0.03412181884050369, + 0.04707234352827072, + -0.07636715471744537, + 0.054285258054733276, + 0.03500998020172119, + 0.032747287303209305, + 0.03821058198809624, + -0.009382935240864754, + -0.05386081710457802, + 0.015170269645750523, + -0.02475763112306595, + 0.02744295261800289, + 0.0821380615234375, + 0.012606353498995304, + -0.019250409677624702, + -0.0940147340297699, + -0.06707960367202759, + -0.03945934772491455, + -0.0080774100497365, + 0.030027233064174652, + -0.1184549555182457, + -0.019396863877773285, + 0.025246072560548782, + -0.016815131530165672, + -0.03023500181734562, + 0.046055082231760025, + 0.03760724887251854, + -0.018026703968644142, + 0.022242965176701546, + 0.02733726054430008, + 0.060727499425411224, + 0.11765620857477188, + -0.12271346896886826, + 0.022223221138119698, + 0.043217822909355164, + 0.06977423280477524, + -0.061715591698884964, + -0.05166765674948692, + -0.07615150511264801, + 0.04295088350772858, + 0.08231386542320251, + 0.09123695641756058, + 0.00036020518746227026, + -0.02489435486495495, + 0.07364589720964432, + -0.01480462308973074, + 0.0504329651594162, + -0.0416724756360054, + 0.00749847199767828, + 0.010002261027693748, + 0.025112926959991455, + -0.02481241337954998, + -0.006997932214289904, + 0.004201182164251804, + 0.007411759812384844, + 0.028723808005452156, + 0.003593606175854802, + -0.06250141561031342, + -0.029675329104065895, + -0.05122138187289238, + -0.01484358124434948, + -0.03567153960466385, + 0.05835608392953873, + 0.05100323259830475, + -0.018216855823993683, + -0.04852662235498428, + -0.054542750120162964, + 0.025080502033233643, + -0.03030207008123398, + 0.04508361965417862, + 0.04146663099527359, + 0.07767294347286224, + -0.09575783461332321, + -0.041508208960294724, + 0.013667973689734936, + 0.01664184406399727, + -0.06488624960184097, + -0.031043119728565216, + -0.017898336052894592, + -0.031663887202739716, + 0.014755361713469028, + -0.03027203120291233, + 0.08813703060150146, + -0.07576191425323486, + -0.11157949268817902, + 0.06691601872444153, + 0.027197614312171936, + -0.02392418123781681, + 0.018261175602674484, + -0.07390986382961273, + -0.006457420065999031, + -0.0053230104967951775, + -0.024578744545578957, + -0.04023626446723938, + -0.02160022407770157, + -0.0036547898780554533, + -0.028042791411280632, + -0.12648123502731323, + -0.029462959617376328, + -0.07520104199647903, + -0.02616482973098755, + -0.038400594145059586, + -0.11253311485052109, + -0.02599330060184002, + 0.06631793826818466, + -0.020528068765997887, + 0.030384719371795654, + -0.03788689523935318, + -0.06927555054426193, + -0.012779280543327332, + -0.06736598908901215, + -0.03412836790084839, + -0.03427942842245102, + -3.1034472475188916e-33, + 0.059082914143800735, + 0.021077359095215797, + 0.02097460813820362, + 0.01425949577242136, + -0.009942090138792992, + 0.009358014911413193, + -0.05315794050693512, + -0.04703003540635109, + -0.0975923165678978, + 0.026516394689679146, + 0.15072908997535706, + 0.006394367199391127, + -0.06171846389770508, + 0.09913889318704605, + 0.04477699100971222, + -0.08922510594129562, + 0.06340199708938599, + 0.023572854697704315, + -0.1199311837553978, + -0.0361824631690979, + -0.015897763893008232, + 0.08508195728063583, + -0.06204436346888542, + -0.06640681624412537, + 0.00718117319047451, + 0.014058874920010567, + -0.05072340369224548, + -0.029317205771803856, + -0.07484311610460281, + 0.01398823969066143, + 0.01331202033907175, + 0.033580053597688675, + -0.037214890122413635, + -0.03528931736946106, + -0.0036401564721018076, + -0.005413558334112167, + -0.11134978383779526, + -0.031695690006017685, + -0.012272403575479984, + -0.00939114112406969, + -0.05350903049111366, + -0.04844577610492706, + -0.0971091240644455, + 0.004801461473107338, + 0.026346860453486443, + 0.10252473503351212, + -0.06651104986667633, + -0.06469620764255524, + 0.031960949301719666, + -0.027822529897093773, + 0.009852191433310509, + 0.002950405003502965, + 0.010235534980893135, + 0.02196507528424263, + 0.02630290761590004, + -0.002355912933126092, + -0.062382567673921585, + 0.16438835859298706, + -0.04207417741417885, + 0.02803657576441765, + 0.023941682651638985, + 0.04069751501083374, + 0.016348008066415787, + -0.017913110554218292, + -0.08906876295804977, + 0.0002279585605720058, + -0.11034689843654633, + 0.020306997001171112, + 0.09705327451229095, + 0.010735868476331234, + -0.03028431534767151, + 0.036622483283281326, + 0.07427102327346802, + 0.057293061167001724, + -0.050051331520080566, + 0.00291759567335248, + -0.01670059747993946, + -0.03251684457063675, + 0.06896832585334778, + -0.10580720752477646, + -0.11795841157436371, + 0.04476593807339668, + -0.07388781011104584, + 0.0036702242214232683, + 0.054486896842718124, + -0.05026077479124069, + 0.022126764059066772, + -0.0388256199657917, + -0.03644701465964317, + 0.03781618922948837, + -0.05466598644852638, + 0.012674303725361824, + -0.014095316641032696, + 0.000531623256392777, + -0.04709276929497719, + -1.712028658240336e-34, + 0.0031865143682807684, + 0.04364961385726929, + -0.06671947240829468, + 0.021815601736307144, + -0.12773321568965912, + -0.0034320997074246407, + 0.09277882426977158, + -0.013953570276498795, + 0.020689072087407112, + 0.06267552077770233, + 0.02591538429260254, + 0.042178358882665634, + -0.018661608919501305, + -0.013003350235521793, + 0.08230896294116974, + 0.024400988593697548, + 0.055068161338567734, + 0.04104962572455406, + 0.02544858306646347, + -0.01726098358631134, + -0.008638049475848675, + -0.05859852954745293, + -0.00789838656783104, + 0.0466887392103672, + -0.01198043767362833, + 0.01670471392571926, + 0.09730401635169983, + 0.02490231953561306, + -0.010220328345894814, + -0.042068954557180405, + 0.031344130635261536, + -0.006202624179422855, + 0.027775384485721588, + 0.06278538703918457, + -0.06910166144371033, + -0.02370763011276722, + -0.05977003276348114, + -0.023385023698210716, + 0.060526661574840546, + 0.022409070283174515, + 0.05501146242022514, + 0.029517898336052895, + 0.12542679905891418, + 0.032751962542533875, + 0.00526121910661459, + 0.04811926558613777, + -0.03586317598819733, + 0.04441443830728531, + -0.05678709223866463, + -0.009036209434270859, + 0.011443044058978558, + -0.015730630606412888, + -0.03521528095006943, + -0.027896735817193985, + -0.09658163040876389, + -0.019163019955158234, + 0.07651930302381516, + 0.03488485887646675, + 0.04286196827888489, + 0.03966018185019493, + -0.02854429930448532, + -0.03439106047153473, + 0.019199326634407043, + 0.04964997246861458, + -0.018629377707839012, + -0.029808778315782547, + 0.03521902114152908, + -0.05142257362604141, + -0.006181678734719753, + -0.014113077893853188, + 0.09107460826635361, + 0.09718116372823715, + 0.01788005791604519, + -0.04446855187416077, + 0.038390353322029114, + -0.07065209746360779, + 0.010839290916919708, + -0.009298584423959255, + -0.042996834963560104, + -0.03057529218494892, + -0.043202418833971024, + -0.016809480264782906, + 0.0025199875235557556, + 0.06755641102790833, + -0.01219754945486784, + 0.024977166205644608, + -0.054851967841386795, + 0.036698900163173676, + 0.03695051744580269, + 0.005749387200921774, + 0.003787914989516139, + 0.021641399711370468, + 0.025353455916047096, + -0.03529012203216553, + -0.041129980236291885, + -2.461924353269751e-08, + -0.08002976328134537, + -0.0275434460490942, + 0.043371010571718216, + -0.017638185992836952, + 0.023389320820569992, + 0.018556535243988037, + 0.042990393936634064, + 0.01152992807328701, + -0.029924023896455765, + -0.06678008288145065, + 0.03701068460941315, + 0.05878457427024841, + -0.06182953715324402, + -0.0410701259970665, + 0.1536792814731598, + 0.05782562121748924, + -0.05573442950844765, + 0.03677316755056381, + -0.008167853578925133, + -0.022407138720154762, + -0.015545787289738655, + 0.0053006247617304325, + -0.03128505125641823, + 0.07123160362243652, + -0.0450395904481411, + 0.012442919425666332, + 0.014847625978291035, + 0.11722498387098312, + 0.037068501114845276, + 0.010029435157775879, + 0.08808267116546631, + 0.03458371385931969, + 0.00047650907072238624, + -0.0007004647050052881, + -0.03462328761816025, + 0.01700589433312416, + -0.048033710569143295, + 0.04057066887617111, + 0.0503724031150341, + 0.0757848396897316, + -0.03759617358446121, + 0.002000733744353056, + -0.04252276197075844, + 0.01690870150923729, + -0.07170500606298447, + 0.0805932879447937, + 0.04016702622175217, + -0.015442517586052418, + -0.06596563011407852, + -0.13273823261260986, + -0.015697594732046127, + 0.05011509731411934, + 0.004010682925581932, + 0.05646606534719467, + -0.017459921538829803, + 0.06407471001148224, + 0.006481988355517387, + -0.02945566177368164, + -0.049505289644002914, + 0.011785769835114479, + 0.0885193943977356, + 0.08686257153749466, + 0.005716722924262285, + 0.06949300318956375 + ], + "arrow-u-left-down-bold||directional,pointer,pointing,arrowhead,undo,return,u-turns": [ + 0.033762235194444656, + -0.027852369472384453, + -0.04419723525643349, + 0.043483637273311615, + -0.026142431423068047, + 0.0015714879846200347, + 0.04067982733249664, + -0.04322171211242676, + -0.0033525265753269196, + 0.008070104755461216, + 0.03831292316317558, + 0.10140552371740341, + 0.005576051771640778, + -0.0015244687674567103, + -0.031179258599877357, + 0.01516391895711422, + -0.06529443711042404, + 0.058718450367450714, + 0.033441394567489624, + 0.04914451763033867, + 0.013962269760668278, + 0.0084865503013134, + -0.020565154030919075, + 0.014379829168319702, + -0.008514676243066788, + 0.021970991045236588, + 0.08464136719703674, + 0.013197258114814758, + -0.000943101302254945, + -0.10661071538925171, + -0.05619857832789421, + -0.03148669749498367, + -0.00977067556232214, + 0.023514719679951668, + -0.1290912628173828, + -0.02731478586792946, + 0.010014608502388, + -0.00017249480879399925, + -0.01946013979613781, + 0.049452800303697586, + 0.015690505504608154, + -0.02348366379737854, + 0.0027586459182202816, + -0.002996904542669654, + 0.03953873738646507, + 0.09041392058134079, + -0.12917637825012207, + -0.012767125852406025, + 0.06522931158542633, + 0.08038274198770523, + -0.009794864803552628, + -0.035328853875398636, + -0.06384658068418503, + 0.02098366804420948, + 0.07374594360589981, + 0.08125985413789749, + 0.0035821772180497646, + -0.027749663218855858, + 0.05914175137877464, + -0.0025023475755006075, + 0.0608961284160614, + -0.029556626453995705, + 0.0105019835755229, + 0.010733254253864288, + 0.02158627100288868, + -0.010980624705553055, + -0.015604797750711441, + -0.01276088785380125, + 0.01928872987627983, + 0.01189849991351366, + 0.019013255834579468, + -0.06635915488004684, + -0.048249103128910065, + -0.05337952449917793, + -0.0038375004660338163, + -0.026073534041643143, + 0.04825986549258232, + 0.06457304209470749, + -0.04639887437224388, + -0.030001943930983543, + -0.04748687148094177, + 0.0058074588887393475, + -0.04249744489789009, + 0.07220327109098434, + 0.05657609552145004, + 0.06642531603574753, + -0.10443512350320816, + -0.020404605194926262, + 0.02963579259812832, + 0.014008472673594952, + -0.07266901433467865, + -0.03579918295145035, + -0.011729296296834946, + -0.034335099160671234, + 0.023459695279598236, + -0.053193993866443634, + 0.09800037741661072, + -0.06880011409521103, + -0.1254623532295227, + 0.061364974826574326, + 0.040680479258298874, + -0.0012571996776387095, + 0.01738889142870903, + -0.06252285093069077, + -0.007638143841177225, + 0.006252954714000225, + -0.01920314133167267, + -0.06189911812543869, + -0.04072915017604828, + -0.006965446285903454, + -0.02472659945487976, + -0.13269466161727905, + -0.025187227874994278, + -0.03992466628551483, + -0.0008447174914181232, + -0.046509500592947006, + -0.11402983218431473, + -0.020524099469184875, + 0.05601318180561066, + -0.013811466284096241, + 0.01699705421924591, + -0.04302778095006943, + -0.05188322439789772, + 0.004586653783917427, + -0.09060277789831161, + -0.030284631997346878, + -0.006255093030631542, + -4.588749379314132e-33, + 0.06256972998380661, + 0.01576559990644455, + 0.0052800970152020454, + -0.011028743349015713, + -0.007254301104694605, + 0.01920871064066887, + -0.04769003018736839, + -0.0553332082927227, + -0.11200624704360962, + 0.006033950950950384, + 0.16267956793308258, + 0.026341235265135765, + -0.054189153015613556, + 0.10365363955497742, + 0.0262738149613142, + -0.06106904521584511, + 0.07525361329317093, + 0.029496392235159874, + -0.11550203710794449, + -0.024359259754419327, + 0.012737300246953964, + 0.09090736508369446, + -0.07753674685955048, + -0.07069388031959534, + 0.009683817625045776, + 0.00029119313694536686, + -0.04981352388858795, + -0.0013836977304890752, + -0.0840933695435524, + 0.018785180523991585, + 0.010151907801628113, + 0.05034696310758591, + -0.01850266382098198, + -0.04599029943346977, + -0.01594400405883789, + 0.021882712841033936, + -0.07356632500886917, + -0.026047712191939354, + -0.0055825188755989075, + -0.019037039950489998, + -0.058733873069286346, + -0.05485076084733009, + -0.0856257826089859, + -0.03440573811531067, + 0.0216632392257452, + 0.0929531455039978, + -0.039298128336668015, + -0.050226859748363495, + 0.02307342179119587, + -0.04960399121046066, + 0.02039876952767372, + 0.021747497841715813, + -0.006846578326076269, + -0.01162171270698309, + 0.02272464707493782, + 0.009534696117043495, + -0.05224804952740669, + 0.1667196899652481, + -0.05794280767440796, + 0.03915435075759888, + 0.026652749627828598, + 0.048395972698926926, + 0.00983474962413311, + -0.009579281322658062, + -0.11367706954479218, + 0.018378494307398796, + -0.11287788301706314, + 0.02651902288198471, + 0.07225482910871506, + 0.009436899796128273, + -0.04339243471622467, + 0.02249027229845524, + 0.04607408493757248, + 0.04580564424395561, + -0.04287146031856537, + 0.010120473802089691, + -0.035335756838321686, + -0.0706879049539566, + 0.09436668455600739, + -0.09336088597774506, + -0.13290812075138092, + 0.03550798445940018, + -0.08384484052658081, + 0.020144270732998848, + 0.08430827409029007, + -0.05423572659492493, + 0.01767808571457863, + -0.045837052166461945, + -0.016928507015109062, + 0.05665618181228638, + -0.056736383587121964, + 0.011916794814169407, + 0.0046915775164961815, + 0.014718128368258476, + -0.041858166456222534, + 3.6697967064074753e-34, + 0.03327007591724396, + 0.05091783404350281, + -0.06553521007299423, + 0.03474824130535126, + -0.14103876054286957, + 0.005462838802486658, + 0.062239136546850204, + 0.0008249162929132581, + -0.0022389262448996305, + 0.04764508828520775, + 0.03131621703505516, + 0.04136059805750847, + -0.025444813072681427, + -0.022114217281341553, + 0.09877211600542068, + 0.020478658378124237, + 0.04944075644016266, + 0.04558299109339714, + 0.0006882156594656408, + -0.014153310097754002, + -9.52478160343162e-07, + -0.06538129597902298, + 0.02063516154885292, + 0.019963877275586128, + -0.016597077250480652, + 0.028949391096830368, + 0.09166615456342697, + 0.0260318536311388, + -0.008756284601986408, + -0.05143313854932785, + 0.02480100281536579, + 0.015111534856259823, + 0.03704795613884926, + 0.0510837659239769, + -0.04827486723661423, + -0.03588671237230301, + -0.04909493774175644, + -0.031531136482954025, + 0.0553923174738884, + 0.00809304229915142, + 0.03905687481164932, + 0.03251485154032707, + 0.10945374518632889, + 0.03864746168255806, + -0.007287945132702589, + 0.04907439649105072, + -0.034536246210336685, + 0.03439096733927727, + -0.01663193665444851, + -0.011625144630670547, + 0.009657987393438816, + -0.004629050847142935, + -0.032962579280138016, + -0.032063864171504974, + -0.0911383405327797, + -0.0013438656460493803, + 0.08045069873332977, + 0.02615419588983059, + 0.07010791450738907, + 0.04172420874238014, + -0.025890428572893143, + -0.012429029680788517, + 0.02450633980333805, + 0.04589227959513664, + -0.021141424775123596, + -0.044251952320337296, + 0.026812953874468803, + -0.030424349009990692, + -0.02315673604607582, + -0.023476645350456238, + 0.08091498911380768, + 0.09953524172306061, + 0.02073034830391407, + -0.06192730739712715, + 0.07951018214225769, + -0.039410192519426346, + 0.002838831627741456, + -0.014819120056927204, + -0.03359545022249222, + -0.047308776527643204, + -0.031950511038303375, + -0.02183661237359047, + -0.0022389863152056932, + 0.03183215111494064, + -0.032486457377672195, + 0.006646119058132172, + -0.07777569442987442, + 0.03601761907339096, + 0.03101695515215397, + 0.01077248901128769, + -0.010839256457984447, + 0.026612572371959686, + 0.0332157239317894, + -0.04324115812778473, + -0.04755154252052307, + -2.5311031492947222e-08, + -0.11251097917556763, + -0.04746732860803604, + 0.05187276005744934, + 0.002723999787122011, + 0.005434333346784115, + -0.001992779551073909, + 0.013976803049445152, + 0.030794363468885422, + -0.03459085151553154, + -0.09042287617921829, + 0.021349096670746803, + 0.07462645322084427, + -0.061858031898736954, + -0.03369610756635666, + 0.12225977331399918, + 0.04591591656208038, + -0.04199481010437012, + 0.015411515720188618, + -0.00413121934980154, + -0.0099648367613554, + -0.027762064710259438, + -0.0034200691152364016, + -0.01273817103356123, + 0.05652330443263054, + -0.043767448514699936, + 0.008177618496119976, + -0.01220730971544981, + 0.13450075685977936, + 0.051789045333862305, + 0.017563872039318085, + 0.07712993025779724, + 0.01766035705804825, + -0.0038061661180108786, + 0.02073802426457405, + -0.04808567464351654, + -0.010029369965195656, + -0.03108171746134758, + 0.01059430930763483, + 0.06434717774391174, + 0.07422210276126862, + -0.020994821563363075, + 0.008096919395029545, + -0.0467941053211689, + 0.017808375880122185, + -0.07844466716051102, + 0.06284476071596146, + 0.057003140449523926, + -0.008453784510493279, + -0.08960410207509995, + -0.14454790949821472, + -0.02815503440797329, + 0.03199726715683937, + 0.006831733975559473, + 0.06136777251958847, + 0.010040312074124813, + 0.08249256759881973, + -0.009809348732233047, + -0.045131485909223557, + -0.06093154847621918, + 0.013036957941949368, + 0.09775295853614807, + 0.08638063073158264, + -0.009387807920575142, + 0.04574868455529213 + ], + "arrow-u-left-up-bold||directional,pointer,pointing,arrowhead,redo,u-turns": [ + 0.044204965233802795, + -0.046567294746637344, + -0.06711891293525696, + 0.03116084448993206, + -0.012415138073265553, + -0.007274494040757418, + 0.06056924909353256, + -0.01769622601568699, + -0.025914158672094345, + -0.005987861659377813, + 0.027918340638279915, + 0.08577649295330048, + 0.0050146374851465225, + -0.001382652553729713, + -0.029752101749181747, + 0.04857133328914642, + -0.07649610191583633, + 0.042041536420583725, + 0.03301803022623062, + 0.04074109345674515, + 0.0180924404412508, + -0.008216406218707561, + -0.04805927351117134, + 0.017435824498534203, + -0.016975780948996544, + 0.023490410298109055, + 0.09567609429359436, + 0.01503809541463852, + -0.024839896708726883, + -0.08375243097543716, + -0.05587822571396828, + -0.03714235872030258, + -0.014640850946307182, + 0.01740683615207672, + -0.11375455558300018, + -0.0200877133756876, + 0.03298722580075264, + -0.011759763583540916, + -0.04057629778981209, + 0.0552031435072422, + 0.0426013246178627, + -0.02207518368959427, + 0.02220277301967144, + 0.010702410712838173, + 0.06612582504749298, + 0.11042781174182892, + -0.1321917623281479, + 0.03619786351919174, + 0.06717970222234726, + 0.06997769325971603, + -0.058465078473091125, + -0.06111188605427742, + -0.08195984363555908, + 0.043110016733407974, + 0.07037996500730515, + 0.08992120623588562, + -0.00891274493187666, + -0.03330089896917343, + 0.07614772766828537, + -0.023843826726078987, + 0.04545795917510986, + -0.02895340695977211, + 0.02646123431622982, + 0.0203686635941267, + 0.032639358192682266, + -0.03532863408327103, + -0.004145065322518349, + 0.0075631882064044476, + 0.00626383675262332, + 0.028483251109719276, + 0.00749956676736474, + -0.05678556486964226, + -0.03704211860895157, + -0.05176896974444389, + -0.004946081433445215, + -0.03725346550345421, + 0.06111512705683708, + 0.055115774273872375, + -0.0016728678019717336, + -0.04149620607495308, + -0.06559976190328598, + 0.01814858987927437, + -0.03314552456140518, + 0.024823661893606186, + 0.05150158703327179, + 0.0797833651304245, + -0.10019633919000626, + -0.0482914038002491, + 0.015527850948274136, + 0.021000202745199203, + -0.07085669785737991, + -0.011399535462260246, + -0.019589083269238472, + -0.04380010813474655, + 0.03341083228588104, + -0.02907024323940277, + 0.08073214441537857, + -0.06695502251386642, + -0.1197858452796936, + 0.060638539493083954, + 0.03246450796723366, + -0.02051999419927597, + 0.01944315992295742, + -0.06040755659341812, + 0.001365790143609047, + 0.007968288846313953, + -0.02807147614657879, + -0.03302951157093048, + -0.03086712770164013, + -0.01222908589988947, + -0.0249192975461483, + -0.1323956847190857, + -0.03626479208469391, + -0.07109230756759644, + -0.025356095284223557, + -0.040005020797252655, + -0.11886683106422424, + -0.01904950477182865, + 0.06978333741426468, + -0.02772524207830429, + 0.03259462118148804, + -0.055974625051021576, + -0.063767209649086, + -0.013279510661959648, + -0.07552482187747955, + -0.03848383203148842, + -0.025439079850912094, + -3.4875315777844275e-33, + 0.051097698509693146, + 0.01654987223446369, + 0.01660432666540146, + 0.011312628164887428, + -0.0160807054489851, + 0.011587456800043583, + -0.039594586938619614, + -0.04294659569859505, + -0.1022779792547226, + 0.012946569360792637, + 0.15787017345428467, + 0.026723986491560936, + -0.06309379637241364, + 0.08888597041368484, + 0.04241997003555298, + -0.06996374577283859, + 0.06298235803842545, + 0.03794921934604645, + -0.11265099793672562, + -0.036559879779815674, + -0.006108477711677551, + 0.07614830136299133, + -0.06890219449996948, + -0.07356186211109161, + -0.005246260203421116, + 0.0020643973257392645, + -0.04913733899593353, + -0.025642910972237587, + -0.08683023601770401, + 0.011766246519982815, + 0.03626289218664169, + 0.04768720269203186, + -0.04084622114896774, + -0.03675449639558792, + -0.012814202345907688, + -0.0005667883087880909, + -0.09710821509361267, + -0.03958391025662422, + -0.00874642189592123, + 0.0010133390314877033, + -0.057737138122320175, + -0.03815065324306488, + -0.08658896386623383, + -0.001126794028095901, + 0.012389942072331905, + 0.11268553137779236, + -0.07934312522411346, + -0.068262979388237, + 0.04870208725333214, + -0.025860177353024483, + 0.006099527236074209, + 0.0015422365395352244, + 0.017815470695495605, + 0.011661033146083355, + 0.012745381332933903, + 0.00026101735420525074, + -0.05264988914132118, + 0.16268473863601685, + -0.035618945956230164, + 0.009955208748579025, + 0.018768254667520523, + 0.0437251478433609, + 0.005336809437721968, + -0.002267837291583419, + -0.09788300096988678, + 0.0005419608787633479, + -0.11249754577875137, + 0.03181091696023941, + 0.09588097780942917, + 0.002549218013882637, + -0.027305210009217262, + 0.03359828144311905, + 0.07130549848079681, + 0.07091844081878662, + -0.04300759732723236, + -0.014593858271837234, + -0.017270896583795547, + -0.04401910677552223, + 0.06368182599544525, + -0.09654132276773453, + -0.10639748722314835, + 0.053397007286548615, + -0.07470196485519409, + 0.0074980612844228745, + 0.050217822194099426, + -0.048440802842378616, + 0.007943866774439812, + -0.040130551904439926, + -0.03659462183713913, + 0.05690710246562958, + -0.038695063441991806, + 0.015251271426677704, + -0.00827343575656414, + 0.011356743983924389, + -0.04978681728243828, + -2.143155101523204e-34, + -0.0003386030439287424, + 0.04102239012718201, + -0.07694945484399796, + 0.010015138424932957, + -0.11693719029426575, + 0.0019498858600854874, + 0.0915985256433487, + -0.013006018474698067, + 0.03594450280070305, + 0.04144826903939247, + 0.021734274923801422, + 0.04902617633342743, + -0.028739357367157936, + -0.01693316549062729, + 0.08314607292413712, + 0.023347748443484306, + 0.05287230387330055, + 0.04660559445619583, + 0.017183169722557068, + -0.024128569290041924, + -0.004248041659593582, + -0.06249179691076279, + -0.0004313245590310544, + 0.0370393842458725, + -0.02068285271525383, + 0.016624411568045616, + 0.08316786587238312, + 0.02396438829600811, + -0.01784774474799633, + -0.04976982623338699, + 0.03362838178873062, + 0.0035744549240916967, + 0.0423293262720108, + 0.06626972556114197, + -0.05635973438620567, + -0.02071288600564003, + -0.05965851992368698, + -0.042591214179992676, + 0.08448545634746552, + 0.03511425852775574, + 0.06339522451162338, + 0.019967859610915184, + 0.10795965790748596, + 0.03974656015634537, + 0.009352470748126507, + 0.04002148658037186, + -0.02811426669359207, + 0.04550570994615555, + -0.060586798936128616, + -0.00333783240057528, + 0.011074176989495754, + -0.0026754734572023153, + -0.04088699817657471, + -0.03152099996805191, + -0.0946936309337616, + -0.02254415489733219, + 0.06570035964250565, + 0.04354572668671608, + 0.06030326336622238, + 0.03723548352718353, + -0.026942502707242966, + -0.015496386215090752, + 0.027236124500632286, + 0.03386026620864868, + -0.029988158494234085, + -0.042849574238061905, + 0.04979116842150688, + -0.052742887288331985, + 0.00402731541544199, + -0.013561876490712166, + 0.09829404950141907, + 0.09937810897827148, + 0.008397589437663555, + -0.051096610724925995, + 0.04214685782790184, + -0.05780564248561859, + 0.01598239690065384, + -0.01516228262335062, + -0.03688672184944153, + -0.029354192316532135, + -0.05658441781997681, + -0.01974462904036045, + -0.0018799962708726525, + 0.06261444836854935, + -0.012338045053184032, + 0.012352616526186466, + -0.02796558104455471, + 0.023589668795466423, + 0.033342283219099045, + 0.001710195210762322, + 0.014931181445717812, + 0.005194623488932848, + 0.015494020655751228, + -0.04120651260018349, + -0.04071234166622162, + -2.4237623463818636e-08, + -0.07350494712591171, + -0.034101877361536026, + 0.03964822739362717, + -0.018412631005048752, + 0.020640768110752106, + 0.011032427661120892, + 0.050273727625608444, + 0.012049075216054916, + -0.04041430354118347, + -0.07354015111923218, + 0.035126522183418274, + 0.061069305986166, + -0.05971914902329445, + -0.060970135033130646, + 0.14242583513259888, + 0.05819956585764885, + -0.06663509458303452, + 0.033153507858514786, + -0.017977917566895485, + -0.013704036362469196, + -0.013943657279014587, + 0.01934158429503441, + -0.029733343049883842, + 0.061417702585458755, + -0.05057184770703316, + 0.012285535223782063, + 0.01707042194902897, + 0.10109097510576248, + 0.03560815751552582, + 0.01502186432480812, + 0.08154970407485962, + 0.025461705401539803, + -0.004689913708716631, + 0.005284048151224852, + -0.03393940627574921, + 0.011875190772116184, + -0.051759444177150726, + 0.04302152991294861, + 0.04395083338022232, + 0.0724477767944336, + -0.03930366039276123, + 0.0061661903746426105, + -0.03553856164216995, + 0.009727749042212963, + -0.08108928799629211, + 0.08703518658876419, + 0.025943635031580925, + -0.012614980340003967, + -0.08881967514753342, + -0.13265231251716614, + -0.010056761093437672, + 0.03622105345129967, + -0.009871890768408775, + 0.05227629095315933, + -0.008656437508761883, + 0.05875707045197487, + 0.005164346657693386, + -0.023680487647652626, + -0.04468889534473419, + 0.013765762560069561, + 0.09781748801469803, + 0.09303916245698929, + 0.015406045131385326, + 0.07848133146762848 + ], + "arrow-u-right-down-bold||directional,pointer,pointing,arrowhead,undo,return,u-turns": [ + 0.030352596193552017, + -0.03029036708176136, + -0.04713204503059387, + 0.04031762853264809, + -0.0364464595913887, + 0.006671331822872162, + 0.03761020675301552, + -0.03754793480038643, + -0.006113642826676369, + 0.004755870439112186, + 0.048376914113759995, + 0.10239420086145401, + 0.007489947136491537, + -0.002883594250306487, + -0.024855835363268852, + 0.012997664511203766, + -0.06526879221200943, + 0.06324376165866852, + 0.03647870197892189, + 0.041762761771678925, + 0.026495471596717834, + 0.01098948810249567, + -0.01652863621711731, + 0.014650855213403702, + -0.01024998351931572, + 0.022747142240405083, + 0.08378344774246216, + 0.009315370582044125, + 0.0014360680943354964, + -0.10800398141145706, + -0.05710585042834282, + -0.03069618158042431, + -0.013362369500100613, + 0.022363191470503807, + -0.12259206920862198, + -0.02093895524740219, + 0.0047951252199709415, + 0.0017783306539058685, + -0.023071477189660072, + 0.04392208531498909, + 0.013056661002337933, + -0.025267885997891426, + 0.0014788166154175997, + -0.008329049684107304, + 0.04036584123969078, + 0.09138654917478561, + -0.12046349048614502, + -0.00860197376459837, + 0.061653848737478256, + 0.08204656094312668, + -0.014207442291080952, + -0.0335116907954216, + -0.06062386557459831, + 0.01716555468738079, + 0.08082457631826401, + 0.09126200526952744, + 0.008120411075651646, + -0.02220800518989563, + 0.06114236265420914, + -0.0006145100924186409, + 0.05276700481772423, + -0.03632187843322754, + 0.013474378734827042, + 0.007193390745669603, + 0.020336752757430077, + -0.00413524778559804, + -0.014098405838012695, + -0.008791078813374043, + 0.017737220972776413, + 0.019384432584047318, + 0.01668565720319748, + -0.06692497432231903, + -0.04581223800778389, + -0.05307686701416969, + -0.00603055115789175, + -0.024775240570306778, + 0.04407120123505592, + 0.062109965831041336, + -0.04888732731342316, + -0.03152370825409889, + -0.04674087464809418, + -0.0036128321662545204, + -0.04436493664979935, + 0.0834837481379509, + 0.05557885766029358, + 0.06611365079879761, + -0.1051168292760849, + -0.017385302111506462, + 0.034187182784080505, + 0.018618060275912285, + -0.06896091997623444, + -0.04772176966071129, + -0.007981615141034126, + -0.0315953828394413, + 0.020037086680531502, + -0.05211545154452324, + 0.10027007013559341, + -0.07230482250452042, + -0.12476538866758347, + 0.05871207267045975, + 0.04121602699160576, + -0.009762927889823914, + 0.011090893298387527, + -0.06821262091398239, + -0.0033298686612397432, + 0.008831605315208435, + -0.015566417947411537, + -0.0589982271194458, + -0.03993958979845047, + -0.0024831662885844707, + -0.02334684506058693, + -0.13240651786327362, + -0.023694340139627457, + -0.04120849817991257, + -0.003784158732742071, + -0.041495148092508316, + -0.1096305251121521, + -0.024463718757033348, + 0.04873768985271454, + -0.011779511347413063, + 0.016465570777654648, + -0.0340980663895607, + -0.05477136746048927, + 0.0062888250686228275, + -0.08875008672475815, + -0.02817736193537712, + -0.00763068487867713, + -4.316305420966035e-33, + 0.06266845017671585, + 0.023526722565293312, + 0.006147090811282396, + -0.014838014729321003, + -0.005214895587414503, + 0.011693799868226051, + -0.0488387830555439, + -0.056119006127119064, + -0.1093611940741539, + 0.013202843256294727, + 0.15938782691955566, + 0.025167763233184814, + -0.05134056881070137, + 0.10624465346336365, + 0.02695344388484955, + -0.06578020751476288, + 0.07729757577180862, + 0.03222094476222992, + -0.11619792878627777, + -0.023717636242508888, + 0.016259264200925827, + 0.08819006383419037, + -0.07337768375873566, + -0.0755130872130394, + 0.006913959980010986, + 0.0009068655199371278, + -0.04939577728509903, + -0.002585371257737279, + -0.07380931079387665, + 0.016774993389844894, + 0.001779282814823091, + 0.043041545897722244, + -0.01600782759487629, + -0.044812608510255814, + -0.014218015596270561, + 0.014708743430674076, + -0.07354306429624557, + -0.0266592837870121, + -0.009393264539539814, + -0.018441809341311455, + -0.05643801763653755, + -0.053495150059461594, + -0.08879133313894272, + -0.030863860622048378, + 0.025455642491579056, + 0.09095348417758942, + -0.04326007887721062, + -0.047241587191820145, + 0.016303233802318573, + -0.04868441820144653, + 0.027492204681038857, + 0.028774356469511986, + -0.0139317587018013, + -0.0028442752081900835, + 0.023770935833454132, + 0.0039893086068332195, + -0.052629418671131134, + 0.1709953248500824, + -0.057334449142217636, + 0.03702331706881523, + 0.030185751616954803, + 0.04793160408735275, + 0.015868231654167175, + -0.011275764554738998, + -0.11424770206212997, + 0.019535964354872704, + -0.11465092748403549, + 0.02705278806388378, + 0.06929974257946014, + 0.010933163575828075, + -0.045885879546403885, + 0.0260321032255888, + 0.03800329193472862, + 0.042983125895261765, + -0.049329664558172226, + 0.01071871817111969, + -0.040154311805963516, + -0.06987355649471283, + 0.09723608195781708, + -0.09249856323003769, + -0.13134554028511047, + 0.027241231873631477, + -0.08466719090938568, + 0.017743030562996864, + 0.08763528615236282, + -0.06233571842312813, + 0.01692342385649681, + -0.04465881735086441, + -0.020599355921149254, + 0.046746816486120224, + -0.05540906637907028, + 0.011376086622476578, + 0.0042043086141347885, + 0.011573875322937965, + -0.03856504335999489, + 2.384428072094363e-34, + 0.038312144577503204, + 0.05183561146259308, + -0.052637115120887756, + 0.039688967168331146, + -0.14120884239673615, + 0.004738244693726301, + 0.06064879894256592, + -0.0019907806999981403, + -0.008467143401503563, + 0.04941006749868393, + 0.022312507033348083, + 0.04236109182238579, + -0.019496729597449303, + -0.018027516081929207, + 0.10320433229207993, + 0.01770715042948723, + 0.04546556994318962, + 0.046757739037275314, + 0.001388530246913433, + -0.00951436161994934, + -0.0007887003012001514, + -0.06621239334344864, + 0.020717309787869453, + 0.026928113773465157, + -0.014034470543265343, + 0.025493623688817024, + 0.09468492120504379, + 0.03059259243309498, + -0.004893124103546143, + -0.05012643709778786, + 0.027554644271731377, + 0.013656153343617916, + 0.02416374906897545, + 0.049976568669080734, + -0.044825002551078796, + -0.03332895785570145, + -0.04827573522925377, + -0.02662394754588604, + 0.05122193321585655, + 0.00499369902536273, + 0.04044431075453758, + 0.032324548810720444, + 0.10740600526332855, + 0.044335462152957916, + -0.010526759549975395, + 0.056566912680864334, + -0.03602685406804085, + 0.033699728548526764, + -0.022824496030807495, + -0.010446397587656975, + 0.008724590763449669, + -0.00936618447303772, + -0.03362824767827988, + -0.031111042946577072, + -0.0900752916932106, + 0.0020932189654558897, + 0.08433182537555695, + 0.01695924624800682, + 0.06351630389690399, + 0.040707044303417206, + -0.021135397255420685, + -0.020467041060328484, + 0.015616042539477348, + 0.046763692051172256, + -0.019004346802830696, + -0.04068896919488907, + 0.02303897775709629, + -0.03057555854320526, + -0.025944141671061516, + -0.02242826297879219, + 0.08392404764890671, + 0.0956071987748146, + 0.019851451739668846, + -0.05835309997200966, + 0.07572378218173981, + -0.04449715092778206, + 0.005735969170928001, + -0.017452238127589226, + -0.02822275646030903, + -0.0585344173014164, + -0.026508187875151634, + -0.017985817044973373, + -0.0004115995834581554, + 0.03127960488200188, + -0.03209756314754486, + 0.014877204783260822, + -0.08073338121175766, + 0.03953166306018829, + 0.028515348210930824, + 0.011423296295106411, + -0.017205864191055298, + 0.026452405378222466, + 0.03313611075282097, + -0.03937716409564018, + -0.04998065531253815, + -2.5622396648827817e-08, + -0.12340045720338821, + -0.043071962893009186, + 0.05693715438246727, + 0.006069772411137819, + 0.013213691301643848, + -0.004591186065226793, + 0.012272484600543976, + 0.03364991024136543, + -0.030402079224586487, + -0.09518921375274658, + 0.015142776072025299, + 0.06828431785106659, + -0.06057872250676155, + -0.02902202121913433, + 0.13067322969436646, + 0.04605624079704285, + -0.034116171300411224, + 0.015456934459507465, + -0.004611309617757797, + -0.01253136433660984, + -0.03286047652363777, + -0.005330326035618782, + -0.010700116865336895, + 0.05941816419363022, + -0.045712023973464966, + 0.005565326195210218, + -0.013749891892075539, + 0.13643015921115875, + 0.05238690972328186, + 0.015656042844057083, + 0.07647925615310669, + 0.01487627811729908, + -0.005521496292203665, + 0.024575887247920036, + -0.047963470220565796, + -0.0056368689984083176, + -0.03135394677519798, + 0.01113490853458643, + 0.07196173816919327, + 0.06943872570991516, + -0.02234228327870369, + 0.012077300809323788, + -0.04987547546625137, + 0.018754413351416588, + -0.07808583229780197, + 0.059689149260520935, + 0.06513179838657379, + -0.01884344406425953, + -0.08672766387462616, + -0.1402062624692917, + -0.035224806517362595, + 0.03518430516123772, + 0.009257448837161064, + 0.061423756182193756, + 0.008273684419691563, + 0.08827834576368332, + -0.00891699269413948, + -0.048125721514225006, + -0.06243833526968956, + 0.015568807721138, + 0.0998096764087677, + 0.0797080397605896, + -0.013375225476920605, + 0.04253952205181122 + ], + "arrow-u-right-up-bold||directional,pointer,pointing,arrowhead,redo,u-turns": [ + 0.04087688773870468, + -0.04819577559828758, + -0.06991983205080032, + 0.023343823850154877, + -0.025622742250561714, + 0.0019698587711900473, + 0.05842602252960205, + -0.011776619590818882, + -0.029468074440956116, + -0.004112887661904097, + 0.03503002971410751, + 0.08911604434251785, + 0.011381639167666435, + -0.004718429874628782, + -0.022953033447265625, + 0.048818137496709824, + -0.07461964339017868, + 0.05123881995677948, + 0.039070699363946915, + 0.031962450593709946, + 0.035341013222932816, + -0.007071548141539097, + -0.0410417802631855, + 0.018921980634331703, + -0.02046247199177742, + 0.02151382714509964, + 0.09333983808755875, + 0.01234487071633339, + -0.021365104243159294, + -0.0805957019329071, + -0.06059381738305092, + -0.039611510932445526, + -0.0168561190366745, + 0.013939382508397102, + -0.10728465765714645, + -0.0102382218465209, + 0.028355544432997704, + -0.011424234136939049, + -0.04354062303900719, + 0.04804209992289543, + 0.034608494490385056, + -0.028478635475039482, + 0.019065048545598984, + 0.007970478385686874, + 0.06437263637781143, + 0.11060552299022675, + -0.12062262743711472, + 0.03764549642801285, + 0.06040710583329201, + 0.06605865061283112, + -0.06457936018705368, + -0.060821209102869034, + -0.07995045185089111, + 0.039403077214956284, + 0.07724491506814957, + 0.10425924509763718, + -0.006947740912437439, + -0.0356825515627861, + 0.08263420313596725, + -0.020621739327907562, + 0.03410380706191063, + -0.03425629436969757, + 0.02379106543958187, + 0.020391764119267464, + 0.034161996096372604, + -0.029505420476198196, + -0.005128547083586454, + 0.013376801274716854, + 0.004770791623741388, + 0.03477832302451134, + 0.007347451522946358, + -0.0564659908413887, + -0.03538747504353523, + -0.050645627081394196, + -0.0030200821347534657, + -0.03400919958949089, + 0.05927838757634163, + 0.05385975539684296, + -0.00036835993523709476, + -0.04268479719758034, + -0.06571032106876373, + 0.017078373581171036, + -0.03214997053146362, + 0.039848703891038895, + 0.05290398374199867, + 0.07960741966962814, + -0.09741780161857605, + -0.04013572260737419, + 0.02169160731136799, + 0.02896738238632679, + -0.06972914189100266, + -0.027009272947907448, + -0.017591901123523712, + -0.0355263277888298, + 0.028549861162900925, + -0.02792041376233101, + 0.0815107673406601, + -0.07337917387485504, + -0.11867792904376984, + 0.05595379322767258, + 0.031390294432640076, + -0.02731357142329216, + 0.013159678317606449, + -0.06982918083667755, + 0.00164699403103441, + 0.0053107598796486855, + -0.02483455277979374, + -0.029567977413535118, + -0.0242849662899971, + -0.010737678036093712, + -0.024495653808116913, + -0.13742680847644806, + -0.03362509235739708, + -0.0672498345375061, + -0.027203865349292755, + -0.03321683034300804, + -0.1152370274066925, + -0.027148377150297165, + 0.06402251869440079, + -0.02563442848622799, + 0.0352182611823082, + -0.04775121808052063, + -0.0713442862033844, + -0.010086975991725922, + -0.07238727062940598, + -0.037932589650154114, + -0.0283102635294199, + -3.3363358209618186e-33, + 0.05288553237915039, + 0.0237713810056448, + 0.021211806684732437, + 0.010127821937203407, + -0.018591074272990227, + 0.0023796067107468843, + -0.04964321479201317, + -0.04364146664738655, + -0.10090374946594238, + 0.026725171133875847, + 0.15250615775585175, + 0.024386972188949585, + -0.0622795894742012, + 0.09355478733778, + 0.04344044625759125, + -0.082794189453125, + 0.06428398191928864, + 0.04226118326187134, + -0.11338400095701218, + -0.03372422233223915, + -0.01039224024862051, + 0.06870101392269135, + -0.06287651509046555, + -0.07748979330062866, + -0.005589665379375219, + 0.007175970356911421, + -0.05083887651562691, + -0.022374995052814484, + -0.07760283350944519, + 0.012292983941733837, + 0.029204491525888443, + 0.03683358058333397, + -0.03737176954746246, + -0.03644096478819847, + -0.006619908846914768, + -0.008700708858668804, + -0.1010601669549942, + -0.03735179826617241, + -0.017551811411976814, + 0.0015252921730279922, + -0.054618608206510544, + -0.03543587401509285, + -0.0905904471874237, + 0.0031074362341314554, + 0.01932510733604431, + 0.11039471626281738, + -0.08578447997570038, + -0.06910880655050278, + 0.043890222907066345, + -0.024159830063581467, + 0.012047973461449146, + 0.006428414024412632, + 0.010005727410316467, + 0.02197808027267456, + 0.013905688188970089, + -0.002125674858689308, + -0.05254378169775009, + 0.16805242002010345, + -0.036228347569704056, + 0.012767848558723927, + 0.01574878953397274, + 0.04054588824510574, + 0.015614516101777554, + 0.0006659249193035066, + -0.098124198615551, + 0.0032108533196151257, + -0.11250575631856918, + 0.024087676778435707, + 0.09476690739393234, + 0.006317028310149908, + -0.03335657715797424, + 0.03759877756237984, + 0.06112261116504669, + 0.0678425282239914, + -0.050548434257507324, + -0.01294610183686018, + -0.024007318541407585, + -0.04224717989563942, + 0.06451299786567688, + -0.08980364352464676, + -0.10576348751783371, + 0.0420895591378212, + -0.07470561563968658, + -0.0009019818971864879, + 0.056310225278139114, + -0.061140209436416626, + 0.004304178059101105, + -0.03689645230770111, + -0.03941969573497772, + 0.041137050837278366, + -0.037725239992141724, + 0.01859458163380623, + -0.005916966125369072, + 0.005977530963718891, + -0.048086363822221756, + -2.109900779598174e-34, + 0.009691712446510792, + 0.039214540272951126, + -0.06293730437755585, + 0.014429653063416481, + -0.11865172535181046, + 0.00321878120303154, + 0.09335104376077652, + -0.01787458546459675, + 0.028766969218850136, + 0.042023368179798126, + 0.011459782719612122, + 0.048708729445934296, + -0.022702939808368683, + -0.013657511211931705, + 0.0859069898724556, + 0.02150198072195053, + 0.053853217512369156, + 0.05111946910619736, + 0.022972460836172104, + -0.017334427684545517, + -0.01062195934355259, + -0.07044315338134766, + 0.0012427406618371606, + 0.04386433586478233, + -0.018791748210787773, + 0.01645832695066929, + 0.08398003876209259, + 0.03336985409259796, + -0.01448767352849245, + -0.04337908327579498, + 0.033284664154052734, + 0.0010234618093818426, + 0.02379957027733326, + 0.06682989001274109, + -0.05831640958786011, + -0.020398396998643875, + -0.05843057483434677, + -0.0367855541408062, + 0.07967962324619293, + 0.03475158289074898, + 0.07141430675983429, + 0.02017338015139103, + 0.10324142873287201, + 0.041680146008729935, + 0.006371611263602972, + 0.043666694313287735, + -0.030793866142630577, + 0.04573040455579758, + -0.07064751535654068, + -0.0036405709106475115, + 0.007648774888366461, + -0.0035752453841269016, + -0.042089104652404785, + -0.028079185634851456, + -0.09217047691345215, + -0.01685555838048458, + 0.0704931914806366, + 0.03802810609340668, + 0.05630898475646973, + 0.03515256196260452, + -0.025175385177135468, + -0.02061864547431469, + 0.01910938136279583, + 0.040224816650152206, + -0.027341706678271294, + -0.03436523675918579, + 0.049759235233068466, + -0.05695175379514694, + -0.0035904233809560537, + -0.012689691968262196, + 0.09885571897029877, + 0.09352846443653107, + 0.006805830169469118, + -0.04311847686767578, + 0.03301788493990898, + -0.06627191603183746, + 0.01890525221824646, + -0.01810406520962715, + -0.03180268779397011, + -0.039522044360637665, + -0.050286129117012024, + -0.015787195414304733, + -0.0019161130767315626, + 0.07018042355775833, + -0.01530106458812952, + 0.022515607997775078, + -0.032013144344091415, + 0.03160964697599411, + 0.03318552300333977, + -0.0010841615730896592, + 0.014584562741219997, + 0.0106898732483387, + 0.013469846919178963, + -0.03872401639819145, + -0.042329203337430954, + -2.4600653958373186e-08, + -0.08520887047052383, + -0.03151648864150047, + 0.04056226834654808, + -0.018696608021855354, + 0.02769063040614128, + 0.008023182861506939, + 0.049515631049871445, + 0.01268658135086298, + -0.035326503217220306, + -0.07884010672569275, + 0.02768993191421032, + 0.06073939800262451, + -0.0555734820663929, + -0.05481167137622833, + 0.15293803811073303, + 0.05834672227501869, + -0.06006637588143349, + 0.03566053509712219, + -0.020715851336717606, + -0.01609143801033497, + -0.02006770484149456, + 0.016318250447511673, + -0.02426152490079403, + 0.06312867999076843, + -0.05033314973115921, + 0.007902504876255989, + 0.01175384595990181, + 0.10477465391159058, + 0.038880810141563416, + 0.011402118019759655, + 0.07998189330101013, + 0.023264465853571892, + -0.010419817641377449, + 0.004702224861830473, + -0.028876200318336487, + 0.021187232807278633, + -0.049198396503925323, + 0.04092727228999138, + 0.0534825399518013, + 0.06727201491594315, + -0.03595343232154846, + 0.008722678758203983, + -0.035568296909332275, + 0.010046398267149925, + -0.08371195197105408, + 0.08717722445726395, + 0.03580095246434212, + -0.020189575850963593, + -0.08946339040994644, + -0.13300380110740662, + -0.0151106221601367, + 0.04527957737445831, + -0.0040153199806809425, + 0.04903164878487587, + -0.012624379247426987, + 0.06566188484430313, + 0.0048684547655284405, + -0.033781811594963074, + -0.04612478241324425, + 0.014272615313529968, + 0.10102653503417969, + 0.08713310956954956, + 0.008774671703577042, + 0.0728304460644722 + ], + "arrow-u-up-left-bold||directional,pointer,pointing,arrowhead,undo,return,u-turns": [ + 0.02786858007311821, + -0.02694312296807766, + -0.04661158099770546, + 0.03877884894609451, + -0.028941690921783447, + -0.0004801834875252098, + 0.038365937769412994, + -0.046923667192459106, + -0.006772087421268225, + 0.0011469732271507382, + 0.044195517897605896, + 0.10554000735282898, + 7.332536188187078e-05, + -0.0033194096758961678, + -0.033311471343040466, + 0.019468573853373528, + -0.0642402172088623, + 0.05296454578638077, + 0.036087702959775925, + 0.050876691937446594, + 0.012415477074682713, + 0.004796032328158617, + -0.010736274532973766, + 0.01540317665785551, + -0.00602142745628953, + 0.019359996542334557, + 0.09543173760175705, + 0.011711246334016323, + -0.004887556191533804, + -0.10231582820415497, + -0.05355241894721985, + -0.028990520164370537, + -0.02281857095658779, + 0.013847481459379196, + -0.11041676998138428, + -0.02522558532655239, + 0.01804308220744133, + 0.00240436103194952, + -0.028841467574238777, + 0.0491102933883667, + 0.01579350046813488, + -0.030981896445155144, + 0.006072940304875374, + -0.01621023379266262, + 0.05026095360517502, + 0.09054779261350632, + -0.12637120485305786, + 0.005097076762467623, + 0.07246082276105881, + 0.07736071944236755, + -0.022068914026021957, + -0.042640216648578644, + -0.06585187464952469, + 0.018019400537014008, + 0.06979002803564072, + 0.08836989849805832, + 0.00420992961153388, + -0.026838669553399086, + 0.06710051745176315, + -0.008051653392612934, + 0.051757656037807465, + -0.027735058218240738, + 0.0290916059166193, + 0.01624707505106926, + 0.023808877915143967, + -0.019575852900743484, + -0.013367163948714733, + 0.0022042528726160526, + 0.01996304653584957, + 0.016517212614417076, + 0.016980746760964394, + -0.055922236293554306, + -0.05314945429563522, + -0.052460022270679474, + 0.0026986519806087017, + -0.02385302074253559, + 0.0426093265414238, + 0.06038256734609604, + -0.029324911534786224, + -0.032933659851551056, + -0.05385669320821762, + -0.010076050646603107, + -0.04691842570900917, + 0.0701427310705185, + 0.061255235224962234, + 0.06205350533127785, + -0.12052767723798752, + -0.01809999719262123, + 0.038448579609394073, + 0.026454614475369453, + -0.08020246028900146, + -0.028394395485520363, + -0.0036006153095513582, + -0.038970861583948135, + 0.03590502589941025, + -0.048439815640449524, + 0.10235132277011871, + -0.06518417596817017, + -0.12966111302375793, + 0.059114258736371994, + 0.042789142578840256, + -0.008345397189259529, + 0.007783765438944101, + -0.059975992888212204, + 0.0015654703602194786, + 0.023658353835344315, + -0.018855884671211243, + -0.05230408534407616, + -0.04003622755408287, + -0.01541172992438078, + -0.02278347872197628, + -0.13385455310344696, + -0.021817827597260475, + -0.040810469537973404, + -0.002919502556324005, + -0.04232310131192207, + -0.11652230471372604, + -0.019715871661901474, + 0.050804853439331055, + -0.01560200471431017, + 0.01803024671971798, + -0.050720565021038055, + -0.051911432296037674, + 0.008025298826396465, + -0.09506183117628098, + -0.0250540878623724, + 0.0041456338949501514, + -4.5447017692788974e-33, + 0.06260085850954056, + 0.030640529468655586, + 0.001724572153761983, + -0.020050253719091415, + -0.012091505341231823, + 0.007588307373225689, + -0.038950443267822266, + -0.05522241070866585, + -0.10904601216316223, + 0.0008874844061210752, + 0.16047954559326172, + 0.045399259775877, + -0.05383541062474251, + 0.10505855083465576, + 0.030435504391789436, + -0.06289929151535034, + 0.08202680200338364, + 0.04078124836087227, + -0.10976403206586838, + -0.02101786434650421, + 0.02421266958117485, + 0.0838790237903595, + -0.06923224031925201, + -0.07584991306066513, + 0.00030228696414269507, + -0.009493830613791943, + -0.052421461790800095, + 0.0021268215496093035, + -0.08110616356134415, + 0.014798341318964958, + 0.018616924062371254, + 0.04695899412035942, + -0.01957627385854721, + -0.04532523825764656, + -0.010725608095526695, + 0.016800154000520706, + -0.06808154284954071, + -0.03705684840679169, + -0.014775402843952179, + -0.010887842625379562, + -0.0607370100915432, + -0.0479043647646904, + -0.08629859238862991, + -0.03291710838675499, + 0.014352330006659031, + 0.09622472524642944, + -0.055372439324855804, + -0.05727129057049751, + 0.03189915791153908, + -0.048776183277368546, + 0.02483770251274109, + 0.021158820018172264, + -0.007119831629097462, + -0.015082232654094696, + 0.012220541015267372, + 0.004707855638116598, + -0.045699674636125565, + 0.16194577515125275, + -0.04763396456837654, + 0.031196903437376022, + 0.03087075613439083, + 0.049769215285778046, + 0.014892471954226494, + -0.000293835619231686, + -0.11997158825397491, + 0.012108555994927883, + -0.11575407534837723, + 0.028867345303297043, + 0.06816679984331131, + 0.008055347017943859, + -0.046565745025873184, + 0.019577473402023315, + 0.03496682643890381, + 0.05875574052333832, + -0.04276473447680473, + -0.00030391215113922954, + -0.04522935301065445, + -0.07546155899763107, + 0.08376935869455338, + -0.08860107511281967, + -0.12085333466529846, + 0.03193478286266327, + -0.07934128493070602, + 0.009154099971055984, + 0.0909002348780632, + -0.055055420845746994, + 0.005852739792317152, + -0.04802960529923439, + -0.022960400208830833, + 0.05667989328503609, + -0.04195895791053772, + 0.014952189289033413, + 0.013971097767353058, + 0.020158279687166214, + -0.03796464577317238, + 3.107123376512348e-34, + 0.0319800041615963, + 0.054039809852838516, + -0.0622364804148674, + 0.027132496237754822, + -0.13201461732387543, + 0.006535940803587437, + 0.0678534060716629, + -0.0024285633116960526, + 0.007447654847055674, + 0.031361885368824005, + 0.013619114644825459, + 0.04501301422715187, + -0.018850671127438545, + -0.01909123919904232, + 0.10252920538187027, + 0.011693266220390797, + 0.04767068475484848, + 0.050605177879333496, + -0.007409130688756704, + -0.01626667194068432, + -0.0031521720811724663, + -0.07187782227993011, + 0.028438696637749672, + 0.02061234600841999, + -0.01946204900741577, + 0.027805199846625328, + 0.0845826044678688, + 0.025164764374494553, + -0.013340393081307411, + -0.0535908117890358, + 0.03359351307153702, + 0.021130742505192757, + 0.035090330988168716, + 0.05828704312443733, + -0.03421744331717491, + -0.03252952918410301, + -0.04928017780184746, + -0.04310993850231171, + 0.06600185483694077, + 0.00794272217899561, + 0.047181300818920135, + 0.02972053550183773, + 0.09238128364086151, + 0.05581166222691536, + -0.00656880671158433, + 0.04958781599998474, + -0.030952922999858856, + 0.03510710969567299, + -0.030533835291862488, + -0.005910045932978392, + 0.011836773715913296, + 0.00039052145439200103, + -0.03765978664159775, + -0.033422742038965225, + -0.0808216854929924, + -0.0012943641049787402, + 0.0790112242102623, + 0.022925924509763718, + 0.08049887418746948, + 0.03824246674776077, + -0.029716065153479576, + -0.008729963563382626, + 0.021357443183660507, + 0.03354256600141525, + -0.026114584878087044, + -0.048378340899944305, + 0.035329435020685196, + -0.03425741568207741, + -0.0194809939712286, + -0.014649850316345692, + 0.09654149413108826, + 0.10394462198019028, + 0.011685686185956001, + -0.058306965976953506, + 0.07679952681064606, + -0.027715906500816345, + 0.009025712497532368, + -0.024132711812853813, + -0.0302710123360157, + -0.05796359106898308, + -0.04723234474658966, + -0.023943636566400528, + 0.004413519985973835, + 0.04124986007809639, + -0.03522453084588051, + 0.005613719113171101, + -0.059301141649484634, + 0.03178093954920769, + 0.02742804028093815, + 0.014463679865002632, + -0.002212134189903736, + 0.015176740474998951, + 0.021770626306533813, + -0.03542536124587059, + -0.038955070078372955, + -2.4825114408599802e-08, + -0.11590717732906342, + -0.04658031836152077, + 0.047029029577970505, + 0.003433650592342019, + 0.012099936604499817, + -0.01184789091348648, + 0.02311970852315426, + 0.03392216935753822, + -0.03611576929688454, + -0.10935624688863754, + 0.019614877179265022, + 0.07381480187177658, + -0.0612528920173645, + -0.041631270200014114, + 0.12512269616127014, + 0.041821639984846115, + -0.03380180150270462, + 0.022201471030712128, + -0.01793668419122696, + -0.006240535993129015, + -0.03140871226787567, + 0.00515832519158721, + -0.007953669875860214, + 0.05365943908691406, + -0.04839314892888069, + 0.005115719046443701, + -0.009137008339166641, + 0.12756377458572388, + 0.05112285539507866, + 0.014630825258791447, + 0.07541144639253616, + 0.00649232929572463, + -0.012612207792699337, + 0.021443510428071022, + -0.05185839161276817, + -0.004676664248108864, + -0.032364409416913986, + 0.018498515710234642, + 0.05645051598548889, + 0.06771533936262131, + -0.02175123803317547, + 0.01772560551762581, + -0.04212511330842972, + 0.011712855659425259, + -0.08745653182268143, + 0.06241732835769653, + 0.05135291442275047, + -0.010961415246129036, + -0.10219817608594894, + -0.1357174813747406, + -0.03298582881689072, + 0.026382166892290115, + -0.0016177711077034473, + 0.05726851895451546, + 0.010941541753709316, + 0.08653657138347626, + -0.009681438095867634, + -0.04495676979422569, + -0.06117110326886177, + 0.018739530816674232, + 0.10551925748586655, + 0.07445580512285233, + -0.00555571261793375, + 0.04467332363128662 + ], + "arrow-u-up-right-bold||directional,pointer,pointing,arrowhead,redo,u-turns": [ + 0.04136672988533974, + -0.05205163359642029, + -0.07240781933069229, + 0.015598517842590809, + -0.028171829879283905, + -0.00040178667404688895, + 0.06267178058624268, + -0.009541935287415981, + -0.028850911185145378, + -0.003764890832826495, + 0.035590458661317825, + 0.08736593276262283, + 0.015458771958947182, + -0.0006674068281427026, + -0.02699989639222622, + 0.050973277539014816, + -0.07613959163427353, + 0.048200059682130814, + 0.03724515065550804, + 0.03256833925843239, + 0.036105964332818985, + -0.012942987494170666, + -0.03971192613244057, + 0.01670053042471409, + -0.019679704681038857, + 0.020905552431941032, + 0.09093392640352249, + 0.011441890150308609, + -0.02466784231364727, + -0.08363421261310577, + -0.06619887053966522, + -0.04124532639980316, + -0.016791872680187225, + 0.015927372500300407, + -0.10237917304039001, + -0.01637229695916176, + 0.03333175182342529, + -0.012887116521596909, + -0.04270513355731964, + 0.04771694168448448, + 0.03598364442586899, + -0.027248278260231018, + 0.02436404675245285, + 0.01092430017888546, + 0.0677553191781044, + 0.11495620012283325, + -0.12172245979309082, + 0.03510711342096329, + 0.05695449188351631, + 0.06496500968933105, + -0.06617140769958496, + -0.06275783479213715, + -0.07705517113208771, + 0.03697820007801056, + 0.07838725298643112, + 0.09935401380062103, + -0.004976009950041771, + -0.03157678246498108, + 0.08228356391191483, + -0.025207068771123886, + 0.03493393212556839, + -0.033878717571496964, + 0.024971162900328636, + 0.021691452711820602, + 0.033103398978710175, + -0.033885277807712555, + -0.007745480630546808, + 0.01458363514393568, + 0.005752058699727058, + 0.031898580491542816, + 0.004398948047310114, + -0.05437533184885979, + -0.03566899523139, + -0.050425101071596146, + -0.0033599173184484243, + -0.0346340574324131, + 0.05774804204702377, + 0.04971091449260712, + 0.0017110951012000442, + -0.04481486603617668, + -0.06466787308454514, + 0.014501010999083519, + -0.03257300332188606, + 0.03818289563059807, + 0.0508154071867466, + 0.07680182158946991, + -0.10368220508098602, + -0.03929750993847847, + 0.0197135079652071, + 0.02812994085252285, + -0.07260648161172867, + -0.02613178826868534, + -0.01750761829316616, + -0.03347019851207733, + 0.028117621317505836, + -0.02651708386838436, + 0.0860549733042717, + -0.07451193034648895, + -0.11973032355308533, + 0.059263601899147034, + 0.03063465841114521, + -0.02520216815173626, + 0.013464347459375858, + -0.06756364554166794, + -0.001984139671549201, + 0.010797332972288132, + -0.024911049753427505, + -0.028034793213009834, + -0.021853996440768242, + -0.010971284471452236, + -0.02572440542280674, + -0.13635917007923126, + -0.029440633952617645, + -0.07044388353824615, + -0.027770239859819412, + -0.03376813977956772, + -0.11617764830589294, + -0.029000867158174515, + 0.060008443892002106, + -0.022605186328291893, + 0.03778392821550369, + -0.04891471192240715, + -0.07197225093841553, + -0.008639173582196236, + -0.07447843253612518, + -0.035332392901182175, + -0.023003075271844864, + -3.302764804328288e-33, + 0.0551508292555809, + 0.02730301395058632, + 0.019662240520119667, + 0.009674892760813236, + -0.01714046485722065, + 0.0016356110572814941, + -0.04647207632660866, + -0.04545753449201584, + -0.0986596867442131, + 0.022901419550180435, + 0.1483374983072281, + 0.02892269939184189, + -0.06103133782744408, + 0.0980190709233284, + 0.044950708746910095, + -0.08636049926280975, + 0.06666085869073868, + 0.03999640420079231, + -0.11179031431674957, + -0.03255605325102806, + -0.0074987998232245445, + 0.07190006226301193, + -0.060920294374227524, + -0.07483431696891785, + -0.003224285552278161, + 0.005423360969871283, + -0.054109275341033936, + -0.01902615651488304, + -0.07939798384904861, + 0.012183383107185364, + 0.02913173846900463, + 0.03382125869393349, + -0.04079344496130943, + -0.030751734972000122, + -0.006512118503451347, + -0.006428881082683802, + -0.10520457476377487, + -0.04131283238530159, + -0.017089687287807465, + 0.0008729352848604321, + -0.051706183701753616, + -0.04062987118959427, + -0.09310682117938995, + 0.004086255095899105, + 0.01966514252126217, + 0.11156652867794037, + -0.08567777276039124, + -0.07161889225244522, + 0.044009480625391006, + -0.023266470059752464, + 0.011253192089498043, + 0.004831068683415651, + 0.010954715311527252, + 0.01702425256371498, + 0.013325135223567486, + -0.0005846025887876749, + -0.05388839542865753, + 0.16458413004875183, + -0.035086628049612045, + 0.017278900370001793, + 0.017635192722082138, + 0.04062863811850548, + 0.01986023597419262, + -0.003200176637619734, + -0.09558034688234329, + 0.0021923340391367674, + -0.11064212024211884, + 0.023698993027210236, + 0.09464776515960693, + 0.007429348770529032, + -0.0341784730553627, + 0.035981498658657074, + 0.06175357848405838, + 0.07115334272384644, + -0.05000373721122742, + -0.009439628571271896, + -0.025881260633468628, + -0.040671855211257935, + 0.06129574030637741, + -0.09335608780384064, + -0.1066012978553772, + 0.03846144303679466, + -0.06993946433067322, + -0.0028510643169283867, + 0.05823412537574768, + -0.054302945733070374, + 0.005235831253230572, + -0.03692847117781639, + -0.03815155103802681, + 0.04277556762099266, + -0.037379760295152664, + 0.019699113443493843, + -0.0025139721110463142, + 0.00524594821035862, + -0.04633595049381256, + -1.3248218522288064e-34, + 0.008678126148879528, + 0.04349483177065849, + -0.06342543661594391, + 0.011342290788888931, + -0.11852516233921051, + 0.0012387182796373963, + 0.09404104202985764, + -0.017434891313314438, + 0.031976547092199326, + 0.041438475251197815, + 0.010625437833368778, + 0.04795018211007118, + -0.016532182693481445, + -0.015229178592562675, + 0.0837247222661972, + 0.019304482266306877, + 0.05160875990986824, + 0.05234529450535774, + 0.020140744745731354, + -0.017676036804914474, + -0.00931503251194954, + -0.07019098848104477, + -0.001341938623227179, + 0.04224194958806038, + -0.019222576171159744, + 0.018967846408486366, + 0.08255259692668915, + 0.027233531698584557, + -0.013675044290721416, + -0.042601753026247025, + 0.037171870470047, + -0.0008540055714547634, + 0.024785080924630165, + 0.07025529444217682, + -0.05600377172231674, + -0.020688293501734734, + -0.05592099949717522, + -0.036374613642692566, + 0.07766779512166977, + 0.031216232106089592, + 0.06717831641435623, + 0.023203570395708084, + 0.10493066906929016, + 0.04142576456069946, + 0.007233043201267719, + 0.04472627490758896, + -0.03058994933962822, + 0.04789108410477638, + -0.06987350434064865, + -0.004419069737195969, + 0.009564085863530636, + -0.00453242938965559, + -0.039270758628845215, + -0.028734218329191208, + -0.08966031670570374, + -0.015198465436697006, + 0.0736546441912651, + 0.0376732312142849, + 0.05677226558327675, + 0.03433647006750107, + -0.028849508613348007, + -0.018983930349349976, + 0.017933038994669914, + 0.04043911397457123, + -0.02703530341386795, + -0.033469367772340775, + 0.048225514590740204, + -0.05933063104748726, + -0.005131075158715248, + -0.008087771013379097, + 0.10043967515230179, + 0.09357334673404694, + 0.007195586338639259, + -0.043433599174022675, + 0.03675113618373871, + -0.0619087778031826, + 0.01698344759643078, + -0.017438238486647606, + -0.037388693541288376, + -0.04082580655813217, + -0.05510647967457771, + -0.015689069405198097, + 0.004359810147434473, + 0.07809841632843018, + -0.017600977793335915, + 0.02390504814684391, + -0.035013943910598755, + 0.03399353474378586, + 0.03566651791334152, + 0.00023945111024659127, + 0.014898879453539848, + 0.012565629556775093, + 0.013278935104608536, + -0.03379366546869278, + -0.03679344803094864, + -2.4291122002750853e-08, + -0.08140306174755096, + -0.029378842562437057, + 0.03658655285835266, + -0.01868637651205063, + 0.026203244924545288, + 0.007800284773111343, + 0.04965094104409218, + 0.011769182048738003, + -0.033737484365701675, + -0.08216129243373871, + 0.03177241235971451, + 0.06193796545267105, + -0.0568365640938282, + -0.05309996381402016, + 0.1548870950937271, + 0.05596650764346123, + -0.057453278452157974, + 0.04009029641747475, + -0.021370625123381615, + -0.019149430096149445, + -0.02142769657075405, + 0.01752774976193905, + -0.023897264152765274, + 0.06429217010736465, + -0.050343725830316544, + 0.010754631832242012, + 0.010467324405908585, + 0.10730613023042679, + 0.037628863006830215, + 0.013595710508525372, + 0.08508432656526566, + 0.02320251427590847, + -0.009667734615504742, + 0.002396291820332408, + -0.030591564252972603, + 0.020810352638363838, + -0.0498812161386013, + 0.04127921536564827, + 0.045950748026371, + 0.06882146000862122, + -0.03468747437000275, + 0.007856499403715134, + -0.035652488470077515, + 0.010293092578649521, + -0.08397673070430756, + 0.08384326100349426, + 0.03090968169271946, + -0.017102567479014397, + -0.0894990935921669, + -0.1311793029308319, + -0.018548760563135147, + 0.04585149511694908, + -0.004430290777236223, + 0.051319826394319534, + -0.013764233328402042, + 0.06388410180807114, + 0.004665656480938196, + -0.03199904039502144, + -0.04570235684514046, + 0.015617511235177517, + 0.09963110834360123, + 0.08096545934677124, + 0.008229304105043411, + 0.0718856230378151 + ], + "arrow-up-bold||directional,pointer,pointing,arrowhead": [ + 0.030805077403783798, + -0.043905071914196014, + -0.06140834838151932, + 0.0025958085898309946, + 0.006229784805327654, + -0.02143610082566738, + 0.06397152692079544, + -0.01344903465360403, + 0.008423496969044209, + 0.02507684752345085, + -0.005625552963465452, + 0.11965322494506836, + 0.02384204789996147, + 0.0030597590375691652, + -0.010003157891333103, + 0.04154913127422333, + -0.04827975481748581, + 0.05885317921638489, + 0.0585913360118866, + 0.05168985202908516, + -0.017238905653357506, + 0.014709881506860256, + 0.0020020962692797184, + 0.036017294973134995, + -0.022761588916182518, + 0.0020300622563809156, + 0.09962452948093414, + 0.00540571752935648, + -0.024403980001807213, + -0.030922168865799904, + -0.07414478063583374, + -0.055210843682289124, + -0.051228009164333344, + 0.02009185589849949, + -0.05134299024939537, + -0.0216225478798151, + 0.044665466994047165, + 0.015271281823515892, + -0.0438116192817688, + 0.057787928730249405, + 0.0392439067363739, + -0.00043986298260279, + -0.012027190066874027, + -0.04560285806655884, + 0.03950463980436325, + 0.06684230268001556, + -0.06815125048160553, + -0.008306941948831081, + 0.059334926307201385, + 0.04731108248233795, + -0.06983353197574615, + -0.09769926965236664, + -0.05505771189928055, + -0.014158239588141441, + 0.056190669536590576, + 0.08841896057128906, + -0.04891455918550491, + -0.04269033670425415, + 0.07547716051340103, + 0.0036416607908904552, + 0.02729279361665249, + -0.024235248565673828, + 0.05659326910972595, + 0.011096781119704247, + 0.07522595673799515, + -0.01319189090281725, + -0.01358074601739645, + 0.052061766386032104, + -0.0035641235299408436, + 0.03885967284440994, + 0.01639639399945736, + -0.026458989828824997, + -0.019549690186977386, + -0.04446906968951225, + -0.015419158153235912, + -0.013906816951930523, + 0.04561281576752663, + 0.057248298078775406, + 0.02159314788877964, + -0.04793550446629524, + -0.06627371162176132, + -0.01001314539462328, + -0.0688607320189476, + 0.04346494749188423, + 0.04873203486204147, + 0.08787268400192261, + -0.10643229633569717, + -0.062131617218256, + -0.04075542092323303, + 0.001334285014308989, + -0.033594414591789246, + 0.0023713097907602787, + -0.030347883701324463, + -0.005487589631229639, + 0.047370392829179764, + -0.030060481280088425, + 0.09501974284648895, + -0.08040907233953476, + -0.12305736541748047, + 0.06341831386089325, + 0.013428771868348122, + 0.023595567792654037, + 0.018034176900982857, + -0.05772078037261963, + -0.008139263838529587, + 0.03185059502720833, + -0.01241267193108797, + -0.039041198790073395, + -0.03944854810833931, + -0.03986876457929611, + -0.04559437930583954, + -0.16211088001728058, + -0.03505208343267441, + -0.035820767283439636, + -0.04188503324985504, + -0.023727091029286385, + -0.09784485399723053, + -0.026208994910120964, + 0.08902770280838013, + -0.027738800272345543, + 0.044188059866428375, + -0.047108884900808334, + -0.05538799986243248, + -0.0029053599573671818, + -0.06457433849573135, + 0.008578457869589329, + 0.017911121249198914, + -4.097731429980246e-33, + 0.06803715974092484, + 0.04303101822733879, + -0.004258888773620129, + 0.011217921040952206, + -0.009565167129039764, + -0.002009488409385085, + -0.04722476005554199, + -0.031546492129564285, + -0.10246686637401581, + 0.017031565308570862, + 0.12680914998054504, + -0.00809472892433405, + -0.06602054834365845, + 0.07598620653152466, + 0.028300480917096138, + -0.08831554651260376, + 0.04980867728590965, + 0.07245709002017975, + -0.11825039982795715, + 0.009217371232807636, + -0.00567286042496562, + 0.03605944290757179, + -0.09848549216985703, + -0.061529308557510376, + -0.04505664110183716, + -0.0013509594136849046, + -0.0357770137488842, + 0.021246066316962242, + -0.10595735162496567, + 0.017250828444957733, + 0.03620793670415878, + 0.030265970155596733, + -0.006533745210617781, + -0.0786927342414856, + -0.025729747489094734, + 0.0008664152701385319, + -0.0989769771695137, + -0.031047914177179337, + -0.02298637293279171, + -0.015445899218320847, + -0.017928840592503548, + -0.024055320769548416, + -0.050412457436323166, + 0.011005459353327751, + -0.016483517363667488, + 0.16942301392555237, + -0.09189813584089279, + -0.1215200275182724, + 0.015118656679987907, + -0.0032847020775079727, + 0.010073121637105942, + -0.007237256038933992, + -0.00012492584937717766, + 0.009176108986139297, + 0.01130130235105753, + 0.013528073206543922, + -0.07962887734174728, + 0.13976392149925232, + 0.006515589542686939, + -0.0021809120662510395, + -0.005913381930440664, + 0.004355559125542641, + 0.02664267085492611, + 0.006961295381188393, + -0.06453549861907959, + 0.051914289593696594, + -0.11311609297990799, + 0.04817405715584755, + 0.09064347296953201, + 0.0014126019086688757, + 0.0033874886576086283, + 0.04414277523756027, + 0.020463399589061737, + 0.04959018528461456, + -0.022681990638375282, + 0.0129019720479846, + -0.03466949984431267, + -0.07123833149671555, + 0.0917210802435875, + -0.08170898258686066, + -0.07363196462392807, + 0.04613872617483139, + -0.03561345860362053, + -0.0018263555830344558, + 0.07326240092515945, + -0.0499725267291069, + -0.02282889559864998, + -0.031372565776109695, + -0.027035027742385864, + 0.08033276349306107, + -0.02349795401096344, + 0.021811945363879204, + -0.006443885155022144, + -0.0017249039374291897, + -0.07682912051677704, + 4.788354656732991e-34, + -0.0020980737172067165, + 0.06464166939258575, + -0.06021089106798172, + -0.011751629412174225, + -0.13235746324062347, + 0.03367844969034195, + 0.056570470333099365, + -0.04866673797369003, + 0.0039015936199575663, + 0.025825152173638344, + -0.010243451222777367, + 0.02919914945960045, + -0.022265218198299408, + -0.03034878522157669, + 0.06310644000768661, + 0.009852292947471142, + 0.0519501231610775, + 0.07670676708221436, + 0.0007975983317010105, + -0.05059552565217018, + -0.019001832231879234, + -0.0725916177034378, + 0.0008864629780873656, + 0.025106344372034073, + -0.010734578594565392, + 0.03213629499077797, + 0.056022148579359055, + 0.05608438327908516, + -0.049401771277189255, + -0.05932537093758583, + 0.048051442950963974, + 0.027311719954013824, + 0.020900314673781395, + 0.06291855871677399, + -0.05078718066215515, + -0.020549917593598366, + -0.04086809232831001, + -0.08928002417087555, + 0.09799515455961227, + 0.011575117707252502, + 0.05486086755990982, + 0.030290652066469193, + 0.0787125900387764, + 0.011107398197054863, + 0.01588798314332962, + 0.07482871413230896, + 0.03178444877266884, + 0.013027054257690907, + 0.009925715625286102, + 0.029244733974337578, + -0.002292879158630967, + -0.0196832288056612, + -0.007713529746979475, + -0.008943410590291023, + -0.0836513563990593, + -0.02250170335173607, + 0.08247070014476776, + 0.0649242028594017, + 0.035762786865234375, + 0.008315539918839931, + -0.015145246870815754, + 0.0028251418843865395, + -0.00039490117342211306, + 0.046999212354421616, + -0.01703575626015663, + -0.028013085946440697, + 0.07446659356355667, + -0.07508572190999985, + 0.03718062862753868, + -0.01290731318295002, + 0.07190712541341782, + 0.08147142082452774, + 0.03973166272044182, + 0.004328321199864149, + 0.051329389214515686, + -0.048418670892715454, + 0.06086944788694382, + 0.013332908973097801, + -0.020345665514469147, + -0.04723956063389778, + -0.08892294764518738, + -0.0006018809508532286, + -0.02214473858475685, + 0.06263449788093567, + -0.006062965840101242, + 0.04019919037818909, + -0.040022000670433044, + 0.02874150313436985, + 0.0024864135775715113, + -0.017396407201886177, + 0.006837989203631878, + -0.022652314975857735, + -0.02786843478679657, + -0.06074993684887886, + -0.044278427958488464, + -1.93521305646982e-08, + -0.0584237165749073, + -0.014885375276207924, + -0.023293742910027504, + -0.02288156934082508, + 0.005382453557103872, + -0.01924051344394684, + 0.008390682749450207, + -0.008273528888821602, + -0.005415665451437235, + -0.10485545545816422, + 0.015515285544097424, + 0.05513552576303482, + -0.05941522866487503, + -0.03407379612326622, + 0.11810647696256638, + 0.030091751366853714, + -0.05419669300317764, + 0.0135574946179986, + -0.0421072393655777, + -0.019513368606567383, + -0.040671300143003464, + 0.05404352769255638, + 0.021054109558463097, + 0.06365349143743515, + -0.028334947302937508, + -0.0010985543485730886, + -0.012897646054625511, + 0.13608816266059875, + 0.08172643184661865, + 0.02501809224486351, + 0.06694666296243668, + 0.028905455023050308, + -0.032053329050540924, + 0.008435217663645744, + -0.02910158783197403, + -0.009599843062460423, + -0.05092944577336311, + 0.03806956857442856, + 0.027943063527345657, + 0.09920477867126465, + -0.05770799517631531, + 0.0020553814247250557, + -0.02038220874965191, + -0.02742895297706127, + -0.059637024998664856, + 0.06989851593971252, + 0.009908418171107769, + -0.0027343113906681538, + -0.1255582720041275, + -0.108797088265419, + -0.02639883942902088, + 0.054161977022886276, + 0.01575300842523575, + 0.08412272483110428, + -0.015225035138428211, + 0.02115236409008503, + -0.009423897601664066, + -0.01530849002301693, + -0.08725401014089584, + 0.01170401182025671, + 0.11285040527582169, + 0.03737721964716911, + 0.004875404294580221, + 0.06570252031087875 + ], + "arrow-up-left-bold||directional,pointer,pointing,arrowhead": [ + 0.030439700931310654, + -0.039372753351926804, + -0.053115565329790115, + 0.012381363660097122, + 0.0013162076938897371, + -0.018297061324119568, + 0.062054526060819626, + -0.013450543396174908, + -0.003138180123642087, + 0.022521203383803368, + 0.005177300423383713, + 0.11248410493135452, + 0.02131642773747444, + 0.019054386764764786, + -0.02460313029587269, + 0.03955233842134476, + -0.057829350233078, + 0.051805514842271805, + 0.05560916289687157, + 0.06650223582983017, + -0.03592309355735779, + 0.01409195363521576, + -0.03192253038287163, + 0.030083831399679184, + -0.017110001295804977, + 0.01569776050746441, + 0.10073574632406235, + -0.001482550986111164, + -0.02684122510254383, + -0.0458015538752079, + -0.07016891241073608, + -0.0530342236161232, + -0.05493027716875076, + 0.019198352470993996, + -0.06793837994337082, + -0.027005955576896667, + 0.03460477665066719, + 0.0012435640674084425, + -0.039512645453214645, + 0.053270041942596436, + 0.0354403518140316, + -0.008298209868371487, + -0.006462735123932362, + -0.038523364812135696, + 0.03344866633415222, + 0.06719060987234116, + -0.08754395693540573, + 4.368963709566742e-05, + 0.06760953366756439, + 0.050741713494062424, + -0.08513827621936798, + -0.08060886710882187, + -0.059562262147665024, + 0.006970350630581379, + 0.049243997782468796, + 0.08269456028938293, + -0.04405210539698601, + -0.04433247074484825, + 0.08328049629926682, + 0.010244564153254032, + 0.04437761753797531, + -0.019694045186042786, + 0.04225434735417366, + 0.006403771694749594, + 0.05829022824764252, + -0.03152121603488922, + -0.014122078195214272, + 0.04700933024287224, + 0.00421594874933362, + 0.03421197831630707, + 0.01628209464251995, + -0.028190691024065018, + -0.027865152806043625, + -0.04453380033373833, + -0.00828658975660801, + -0.017516998574137688, + 0.05287614464759827, + 0.06118050962686539, + 0.012088172137737274, + -0.045324310660362244, + -0.0632886067032814, + 0.010503021068871021, + -0.056158870458602905, + 0.04117871820926666, + 0.05598868429660797, + 0.08641098439693451, + -0.10944933444261551, + -0.04712693393230438, + -0.022604763507843018, + 0.007059137336909771, + -0.03317198157310486, + 0.013600618578493595, + -0.027330586686730385, + -0.022554494440555573, + 0.04921169579029083, + -0.02808964066207409, + 0.07951144874095917, + -0.07711329311132431, + -0.1211097240447998, + 0.07009349018335342, + 0.018342383205890656, + 0.020199378952383995, + 0.027060311287641525, + -0.0677611455321312, + -0.0011702077463269234, + 0.022566260769963264, + -0.023612745106220245, + -0.0380309522151947, + -0.053995128720998764, + -0.04074922576546669, + -0.044603381305933, + -0.15063530206680298, + -0.042675502598285675, + -0.0475725494325161, + -0.03407145291566849, + -0.023103153333067894, + -0.11651752144098282, + -0.003550285939127207, + 0.10423829406499863, + -0.03488188609480858, + 0.021537281572818756, + -0.05656203627586365, + -0.05539139360189438, + -0.006952176336199045, + -0.06168605014681816, + 0.007495939265936613, + -0.009600085206329823, + -4.3133181959470076e-33, + 0.05338764563202858, + 0.022869225591421127, + 0.006886834278702736, + 0.009978160262107849, + -0.015771469101309776, + 0.004814635030925274, + -0.04832300916314125, + -0.018368395045399666, + -0.10846397280693054, + 0.008631251752376556, + 0.15010671317577362, + -0.022517884150147438, + -0.06263245642185211, + 0.07367609441280365, + 0.02460898458957672, + -0.09148625284433365, + 0.031636618077754974, + 0.06429964303970337, + -0.12780112028121948, + 0.003190372372046113, + -0.010438661091029644, + 0.05046771466732025, + -0.09026863425970078, + -0.060997918248176575, + -0.036670275032520294, + -0.0003077186120208353, + -0.024370096623897552, + 9.413115185452625e-05, + -0.10472813248634338, + 0.016938867047429085, + 0.03889165818691254, + 0.042056843638420105, + -0.006533636711537838, + -0.09307938069105148, + -0.018236517906188965, + 0.001241556485183537, + -0.0915592759847641, + -0.03593382611870766, + -0.027232032269239426, + -0.021404607221484184, + -0.024798253551125526, + -0.019045565277338028, + -0.056859202682971954, + -0.00349963060580194, + -0.019258547574281693, + 0.16445913910865784, + -0.07896356284618378, + -0.10986487567424774, + 0.03522353991866112, + -0.01415987964719534, + 0.0016013620188459754, + -0.011219614185392857, + 0.007378879003226757, + 0.008716880343854427, + 0.013167568482458591, + 0.01643214374780655, + -0.07421348989009857, + 0.14084365963935852, + 0.0014981027925387025, + 0.0011912203626707196, + 0.003799867583438754, + 0.019820472225546837, + 0.013129147700965405, + -0.0025398037396371365, + -0.07962117344141006, + 0.036690086126327515, + -0.11016009002923965, + 0.030449479818344116, + 0.10504482686519623, + -0.0016375499544665217, + -0.0020912212785333395, + 0.03656473010778427, + 0.04808175936341286, + 0.05056530609726906, + -0.03189107030630112, + 0.006368778180330992, + -0.042327508330345154, + -0.061988748610019684, + 0.0723382830619812, + -0.08207619935274124, + -0.08123180270195007, + 0.05542987957596779, + -0.04096587002277374, + 0.001351001556031406, + 0.06325219571590424, + -0.06661059707403183, + -0.0206398144364357, + -0.03940282016992569, + -0.025040587410330772, + 0.07271675020456314, + -0.0275504682213068, + 0.016717709600925446, + -0.02012905292212963, + 0.011971279047429562, + -0.09039641171693802, + 3.49274475747708e-34, + -0.01149633340537548, + 0.048730626702308655, + -0.07171319425106049, + -0.002632544143125415, + -0.13538260757923126, + 0.032718364149332047, + 0.06752417236566544, + -0.043663036078214645, + 0.012743888422846794, + 0.04937686398625374, + 0.0074664633721113205, + 0.035503365099430084, + -0.03477715700864792, + -0.02856353484094143, + 0.0670706033706665, + 0.016039349138736725, + 0.06387346237897873, + 0.06674030423164368, + 0.008050689473748207, + -0.05991259217262268, + -0.02900031954050064, + -0.07124762237071991, + 0.009046542458236217, + 0.0356665663421154, + -0.00191214750520885, + 0.026458686217665672, + 0.05697530135512352, + 0.048684969544410706, + -0.05319669097661972, + -0.05131489410996437, + 0.04273458570241928, + 0.036565471440553665, + 0.04333261027932167, + 0.0603846050798893, + -0.050573017448186874, + -0.034926965832710266, + -0.05028156936168671, + -0.0807838961482048, + 0.10525064915418625, + 0.021635321900248528, + 0.06625975668430328, + 0.03134160488843918, + 0.09141486883163452, + 0.02482263185083866, + 0.018361108377575874, + 0.07160051167011261, + 0.02709062024950981, + 0.017917515709996223, + 0.006590378470718861, + 0.022723888978362083, + 0.0033110647927969694, + 0.002259479369968176, + -0.009074884466826916, + -0.030684819445014, + -0.07654333114624023, + -0.03500766679644585, + 0.06847898662090302, + 0.0632246881723404, + 0.04761617258191109, + 0.014460889622569084, + -0.01213901862502098, + -0.007544292137026787, + 0.0035094539634883404, + 0.042342040687799454, + -0.01687115803360939, + -0.036687638610601425, + 0.06679315865039825, + -0.0703127309679985, + 0.03408004716038704, + -0.017742276191711426, + 0.07504431903362274, + 0.09643097966909409, + 0.029248788952827454, + -0.00915544480085373, + 0.047949451953172684, + -0.04314073920249939, + 0.04863240569829941, + 0.011310680769383907, + -0.021865518763661385, + -0.03151296079158783, + -0.0816476047039032, + -0.0034631644375622272, + -0.012295668013393879, + 0.05653366819024086, + -0.0039699808694422245, + 0.031453508883714676, + -0.032367948442697525, + 0.01165566686540842, + 0.009826569817960262, + -0.013645135797560215, + 0.004216498229652643, + -0.01782204955816269, + -0.018057480454444885, + -0.05155323073267937, + -0.03906761109828949, + -2.1277598349911386e-08, + -0.05428876727819443, + -0.030794061720371246, + -0.014547326602041721, + -0.014126259833574295, + -0.007464692462235689, + -0.01746559888124466, + 0.016891611739993095, + -0.0002292152348672971, + -0.01521206647157669, + -0.08338699489831924, + 0.015674836933612823, + 0.0614774152636528, + -0.06081273779273033, + -0.03510181978344917, + 0.11840058118104935, + 0.0261607076972723, + -0.06704176962375641, + 0.01627250760793686, + -0.03674094378948212, + -0.00860287994146347, + -0.017154045403003693, + 0.03564130514860153, + 0.015369554981589317, + 0.058592867106199265, + -0.022967150434851646, + 0.007700870279222727, + 0.0030983362812548876, + 0.13457272946834564, + 0.07336871325969696, + 0.022593418136239052, + 0.06302106380462646, + 0.020158592611551285, + -0.030765101313591003, + 0.0018959862645715475, + -0.031247321516275406, + -0.01304757222533226, + -0.06560547649860382, + 0.039884574711322784, + 0.02290969528257847, + 0.09112510830163956, + -0.05142564699053764, + 0.008763314224779606, + -0.021397914737462997, + -0.022321486845612526, + -0.05608934536576271, + 0.0696270614862442, + 0.014918307773768902, + 0.006796663627028465, + -0.11354678124189377, + -0.11801968514919281, + -0.019376281648874283, + 0.059650082141160965, + 0.017178043723106384, + 0.07450836896896362, + -0.005865936167538166, + 0.038435276597738266, + -0.010596701875329018, + -0.023735903203487396, + -0.07919647544622421, + 0.01435435377061367, + 0.11140419542789459, + 0.07438433915376663, + 0.010150320827960968, + 0.07757227122783661 + ], + "arrow-up-right-bold||directional,pointer,pointing,arrowhead": [ + 0.026267079636454582, + -0.038542769849300385, + -0.06369329243898392, + 0.008439390920102596, + -0.0067198327742516994, + -0.00402938574552536, + 0.06116406247019768, + -0.008942252956330776, + -0.008464417420327663, + 0.02510968968272209, + 0.017278015613555908, + 0.12011335790157318, + 0.02409140206873417, + 0.011560089886188507, + -0.019194457679986954, + 0.04090898111462593, + -0.05967852473258972, + 0.056320030242204666, + 0.05825849249958992, + 0.05537707731127739, + -0.021309878677129745, + 0.012923208065330982, + -0.026295654475688934, + 0.03036898747086525, + -0.01660352572798729, + 0.013294889591634274, + 0.09071758389472961, + -0.0007915075402706861, + -0.02856316789984703, + -0.04091748595237732, + -0.08075214922428131, + -0.05511298030614853, + -0.0552317276597023, + 0.01442104671150446, + -0.06097785755991936, + -0.01697792485356331, + 0.029420500621199608, + 0.005600144155323505, + -0.04039743170142174, + 0.04460212215781212, + 0.027567755430936813, + -0.017738379538059235, + -0.011011035181581974, + -0.045125968754291534, + 0.027820488438010216, + 0.0698757991194725, + -0.07809551805257797, + 0.0015302997780963778, + 0.059707850217819214, + 0.05029229819774628, + -0.08635967969894409, + -0.07899938523769379, + -0.061945196241140366, + 0.005866965278983116, + 0.059130724519491196, + 0.09893828630447388, + -0.044244397431612015, + -0.041025206446647644, + 0.08704143017530441, + 0.0085075618699193, + 0.032154832035303116, + -0.02494395710527897, + 0.03713381662964821, + 0.015126071870326996, + 0.06334303319454193, + -0.024474764242768288, + -0.018826540559530258, + 0.047343432903289795, + -0.0025035631842911243, + 0.04081271216273308, + 0.017690202221274376, + -0.027664074674248695, + -0.02500566653907299, + -0.041796453297138214, + -0.008405718021094799, + -0.01916004903614521, + 0.0507679246366024, + 0.062017928808927536, + 0.01472484041005373, + -0.041169025003910065, + -0.060343846678733826, + 0.009520077146589756, + -0.06253524124622345, + 0.054246686398983, + 0.053283706307411194, + 0.08954145759344101, + -0.10906772315502167, + -0.04123219847679138, + -0.01517126802355051, + 0.01065311674028635, + -0.028342243283987045, + -0.0003461301967035979, + -0.02694299817085266, + -0.009460194036364555, + 0.04196545481681824, + -0.03076966293156147, + 0.0787181630730629, + -0.08058340102434158, + -0.11789216846227646, + 0.06371141970157623, + 0.019627457484602928, + 0.00889237318187952, + 0.024329306557774544, + -0.06917265057563782, + -0.005963562056422234, + 0.01573820225894451, + -0.01678232103586197, + -0.033086054027080536, + -0.041616689413785934, + -0.03293576091527939, + -0.043383851647377014, + -0.1525912880897522, + -0.0442427359521389, + -0.038569532334804535, + -0.03823494538664818, + -0.014315029606223106, + -0.11178262531757355, + -0.016408080235123634, + 0.0927257388830185, + -0.03283971920609474, + 0.02342214062809944, + -0.04318578168749809, + -0.0601218156516552, + -0.009525698609650135, + -0.06461591273546219, + 0.00238385540433228, + -0.00920871552079916, + -4.277007175450107e-33, + 0.049404628574848175, + 0.023043420165777206, + 0.013636409305036068, + 0.006508330814540386, + -0.010253543965518475, + 0.00021067957277409732, + -0.060064271092414856, + -0.02095654048025608, + -0.10638541728258133, + 0.024471808224916458, + 0.14475511014461517, + -0.023638810962438583, + -0.0640873983502388, + 0.08355724811553955, + 0.025370215997099876, + -0.09921155124902725, + 0.03684693202376366, + 0.07066557556390762, + -0.12225304543972015, + 0.0055445157922804356, + -0.015957338735461235, + 0.0452737882733345, + -0.0878208577632904, + -0.06328213959932327, + -0.03886481001973152, + 0.0005600369768217206, + -0.02785344421863556, + 0.003287379862740636, + -0.10046404600143433, + 0.015687648206949234, + 0.03244444355368614, + 0.028495904058218002, + -0.005580927710980177, + -0.08826157450675964, + -0.01776590198278427, + -0.007666304241865873, + -0.09496737271547318, + -0.03439025580883026, + -0.03334622457623482, + -0.023857291787862778, + -0.022416064515709877, + -0.01196206547319889, + -0.0667443498969078, + -0.0006186049431562424, + -0.011035575531423092, + 0.15785612165927887, + -0.08197477459907532, + -0.11055374890565872, + 0.03472748398780823, + -0.010276404209434986, + 0.004376756027340889, + -0.005685876123607159, + 0.006156952120363712, + 0.022186394780874252, + 0.00984741747379303, + 0.021116917952895164, + -0.07407181710004807, + 0.1549500674009323, + -0.005092982668429613, + -0.0012301212409511209, + -7.492635631933808e-05, + 0.01273457519710064, + 0.023936672136187553, + -0.004889513831585646, + -0.07821086049079895, + 0.03982800245285034, + -0.1093081384897232, + 0.028516128659248352, + 0.10599642992019653, + 0.005066779442131519, + -0.008139781653881073, + 0.04407035931944847, + 0.03812330588698387, + 0.057825081050395966, + -0.03829379007220268, + 0.009071892127394676, + -0.054155316203832626, + -0.06136254593729973, + 0.0755380243062973, + -0.0714072659611702, + -0.08348296582698822, + 0.05032956600189209, + -0.045397672802209854, + -0.006277615670114756, + 0.06213563308119774, + -0.07503381371498108, + -0.026377465575933456, + -0.0340445376932621, + -0.020360946655273438, + 0.06525194644927979, + -0.024647703394293785, + 0.02444172278046608, + -0.015488820150494576, + 0.00604436406865716, + -0.08458567410707474, + 3.7669823089828907e-34, + -0.004151059780269861, + 0.048608534038066864, + -0.05512874200940132, + -0.0017561587737873197, + -0.1355646699666977, + 0.04013660177588463, + 0.07168030738830566, + -0.04748431220650673, + 0.012777608819305897, + 0.05055252090096474, + 0.0033645122312009335, + 0.032889582216739655, + -0.03064575605094433, + -0.03134964779019356, + 0.06992059201002121, + 0.013632010668516159, + 0.057990383356809616, + 0.07355831563472748, + 0.01897312141954899, + -0.05420439690351486, + -0.03011440299451351, + -0.08382830023765564, + 0.003961028065532446, + 0.03547431901097298, + -0.004139663185924292, + 0.030372433364391327, + 0.057251833379268646, + 0.05237102508544922, + -0.044887933880090714, + -0.046622034162282944, + 0.044440336525440216, + 0.026978351175785065, + 0.025159049779176712, + 0.06970468163490295, + -0.051737230271101, + -0.03205825388431549, + -0.051220014691352844, + -0.07446599751710892, + 0.09978070110082626, + 0.02100207656621933, + 0.07161273062229156, + 0.03552152216434479, + 0.09253320842981339, + 0.025876818224787712, + 0.014731713570654392, + 0.07491736859083176, + 0.022044606506824493, + 0.020100180059671402, + -0.002327605849131942, + 0.01413619052618742, + -0.0036922607105225325, + -0.0006901241140440106, + -0.0051721930503845215, + -0.026248609647154808, + -0.07289693504571915, + -0.025801872834563255, + 0.07655170559883118, + 0.056930914521217346, + 0.03589888662099838, + 0.013995535671710968, + -0.00620192289352417, + -0.00946333073079586, + -0.007440872956067324, + 0.044741105288267136, + -0.019831715151667595, + -0.029301492497324944, + 0.06496486067771912, + -0.07502976059913635, + 0.020820802077651024, + -0.01897384226322174, + 0.06912842392921448, + 0.08314701914787292, + 0.027228431776165962, + -0.007677770219743252, + 0.044108301401138306, + -0.05231007561087608, + 0.04687679931521416, + 0.011753461323678493, + -0.015592867508530617, + -0.04556243494153023, + -0.07787427306175232, + 0.0038404343649744987, + -0.02051640674471855, + 0.06834477186203003, + -0.00810078252106905, + 0.035940300673246384, + -0.03762717917561531, + 0.016833482310175896, + 0.014255261048674583, + -0.02157379873096943, + 0.006186582613736391, + -0.006615108344703913, + -0.021073510870337486, + -0.0464198999106884, + -0.043177440762519836, + -2.145417532517513e-08, + -0.05947566404938698, + -0.032964203506708145, + -0.012594930827617645, + -0.017112625762820244, + -0.0006027847994118929, + -0.018024025484919548, + 0.011721125803887844, + 0.0019108392298221588, + -0.009245242923498154, + -0.09420067816972733, + 0.005905807483941317, + 0.058071643114089966, + -0.05693173035979271, + -0.03031529113650322, + 0.13034763932228088, + 0.020973999053239822, + -0.07054799795150757, + 0.018902868032455444, + -0.035881225019693375, + -0.013644392602145672, + -0.02594822272658348, + 0.03467671200633049, + 0.019566543400287628, + 0.061124756932258606, + -0.0222672987729311, + 0.010137957520782948, + -0.0051529924385249615, + 0.13810361921787262, + 0.06847470253705978, + 0.022095099091529846, + 0.06485338509082794, + 0.01915510930120945, + -0.031347040086984634, + 0.0021488573402166367, + -0.013840718194842339, + -0.004434649366885424, + -0.06222299486398697, + 0.03687605261802673, + 0.03256894648075104, + 0.08681337535381317, + -0.046756014227867126, + 0.002150199841707945, + -0.02179661951959133, + -0.02246236614882946, + -0.057705096900463104, + 0.0700252577662468, + 0.022676007822155952, + 0.006252161227166653, + -0.11982136964797974, + -0.12219344079494476, + -0.02668946422636509, + 0.06865260750055313, + 0.022477995604276657, + 0.07474825531244278, + -0.007828088477253914, + 0.041601359844207764, + -0.012900928035378456, + -0.02971133589744568, + -0.07651351392269135, + 0.013311967253684998, + 0.11633096635341644, + 0.07086046785116196, + 0.002428727690130472, + 0.0755830705165863 + ], + "arrows-clockwise-bold||*updated*,directional,pointer,pointing,arrowhead,redo,refreshing,sync,synchronize,rotate,spin,flip": [ + -0.0068885465152561665, + -0.07550505548715591, + -0.08268347382545471, + -0.019083304330706596, + -0.04902192950248718, + -0.015424416400492191, + 0.018497267737984657, + -0.05870567634701729, + 0.020964283496141434, + -0.011859244666993618, + 0.06128812953829765, + 0.10326969623565674, + 0.006919120904058218, + -0.06079050153493881, + -0.06247375160455704, + 0.07910190522670746, + -0.051365386694669724, + 0.02056075818836689, + 0.005708105396479368, + 0.013117588125169277, + -0.05846681073307991, + -0.0518321730196476, + -0.036820851266384125, + 0.04491348937153816, + -0.014555699191987514, + 0.07806822657585144, + 0.029734158888459206, + 0.005412856116890907, + -0.025893785059452057, + -0.09031831473112106, + -0.05331878364086151, + 0.002314874902367592, + -0.007335747592151165, + 0.03313327580690384, + -0.11759568005800247, + -0.03763516619801521, + 0.007893078960478306, + 0.0020170651841908693, + -0.017078779637813568, + 0.04332970827817917, + 0.0618089884519577, + -0.03245241567492485, + 0.02146744169294834, + -0.0001764595799613744, + 0.03788477182388306, + 0.09787804633378983, + -0.10874658823013306, + 0.012390228919684887, + 0.021707843989133835, + 0.07015371322631836, + -0.0838935375213623, + -0.11953467130661011, + -0.08195923268795013, + -0.0017739558825269341, + 0.0694812759757042, + 0.07605409622192383, + 0.037593692541122437, + -0.02674245834350586, + 0.06139548495411873, + -0.009884231723845005, + 0.12490834295749664, + 0.00517362542450428, + 0.00789839681237936, + 0.05747372657060623, + 0.023331239819526672, + -0.0166411641985178, + 0.009039679542183876, + -0.02449374832212925, + 0.014783118851482868, + -0.009334661066532135, + 0.01605992764234543, + -0.014176599681377411, + -0.029711592942476273, + -0.059528131037950516, + 0.012811541557312012, + -0.03960263729095459, + 0.04560812935233116, + 0.01566585712134838, + -0.04593699425458908, + -0.08973526954650879, + -0.0652274563908577, + -0.001641815877519548, + -0.02945352904498577, + 0.07785914093255997, + 0.08058953285217285, + 0.06104199215769768, + -0.08027897030115128, + -0.02646220475435257, + -0.01988799497485161, + -0.013821753673255444, + -0.026008451357483864, + 0.013788118027150631, + -0.04009541869163513, + -0.07986307889223099, + -0.001543967635370791, + 0.01843448169529438, + 0.07542938739061356, + -0.035040482878685, + -0.12493862211704254, + 0.06075761467218399, + 0.05661047250032425, + -0.014401285909116268, + 0.01837020181119442, + -0.024181397631764412, + -0.008147230371832848, + 0.029756205156445503, + -0.052198395133018494, + -0.024675743654370308, + -0.06359285116195679, + 0.01488436572253704, + -0.048970773816108704, + -0.09710735082626343, + 0.0037670203018933535, + -0.07399521768093109, + -0.0355844646692276, + -0.040215399116277695, + -0.11469336599111557, + 0.02161787636578083, + 0.05657394602894783, + 0.010362114757299423, + 0.054127320647239685, + -0.0409262552857399, + -0.05512227118015289, + -0.07419607043266296, + -0.07876786589622498, + -0.015879888087511063, + -0.031046900898218155, + -2.4394354679943364e-33, + 0.05102354288101196, + 0.03009216859936714, + 0.02015656605362892, + 0.006483381148427725, + -0.0027989442460238934, + 0.027272600680589676, + -0.0106714041903615, + -0.0892183855175972, + -0.05058305338025093, + 0.014830457977950573, + 0.14152924716472626, + 0.01918034441769123, + -0.06515610218048096, + 0.0361274890601635, + 0.012008307501673698, + -0.13976116478443146, + 0.05100737512111664, + 0.058047812432050705, + -0.09221326559782028, + -0.043916139751672745, + -0.004001286346465349, + 0.07555559277534485, + -0.08871281147003174, + -0.04056570306420326, + -0.008360148407518864, + 0.037026382982730865, + 0.007889308035373688, + 0.016195397824048996, + -0.0996309444308281, + 0.018069831654429436, + 0.04591554030776024, + 0.03547220677137375, + -0.014706416055560112, + -0.027419807389378548, + -0.02638501673936844, + -0.02396451123058796, + -0.10252952575683594, + -0.08468504250049591, + -0.005729387979954481, + -0.02255588211119175, + -0.049859289079904556, + -0.07088691741228104, + -0.10547937452793121, + -0.04276912286877632, + -0.005566223990172148, + 0.10302466154098511, + -0.045329559594392776, + -0.0391581729054451, + 0.08975862711668015, + -0.01359070185571909, + 0.029748737812042236, + 0.020269913598895073, + -0.005324379540979862, + -0.030565081164240837, + 0.020531168207526207, + -0.0021850401535630226, + -0.009867483749985695, + 0.12572714686393738, + -0.06433562934398651, + 0.038953717797994614, + 0.023125093430280685, + 0.03906893730163574, + 0.0071790763176977634, + -0.04953598231077194, + -0.03931458666920662, + 0.05746440589427948, + -0.08343682438135147, + -0.011505008675158024, + 0.09919896721839905, + 0.029374685138463974, + -0.01669231988489628, + 0.034252166748046875, + 0.02672341838479042, + 0.07425741106271744, + -0.028473518788814545, + 0.004094964358955622, + -0.04304986447095871, + -0.03204088658094406, + 0.04822743684053421, + -0.07192892581224442, + -0.09243935346603394, + -0.020116083323955536, + -0.08130980283021927, + 0.017319072037935257, + 0.0302807055413723, + -0.06241195276379585, + -0.013204796239733696, + 0.005838452838361263, + -0.028647683560848236, + 0.07837821543216705, + -0.017789937555789948, + 0.016854317858815193, + 0.013486041687428951, + 0.007084941025823355, + -0.06664935499429703, + -2.818536987909332e-34, + -0.02132372371852398, + 0.02516092173755169, + -0.06893575936555862, + 0.05251682549715042, + -0.10549505800008774, + 0.022186260670423508, + 0.04516606032848358, + 0.01982182264328003, + 0.0016387992072850466, + 0.028953896835446358, + 0.08416637033224106, + 0.02164013870060444, + -0.07685668021440506, + 0.008982629515230656, + 0.09363346546888351, + 0.029192041605710983, + 0.06295885890722275, + 0.05224558338522911, + -0.010030444711446762, + -0.0188872329890728, + 0.027126334607601166, + -0.028656071051955223, + 0.023934107273817062, + 0.07809969782829285, + 0.017551008611917496, + 0.006956686265766621, + 0.10006070882081985, + 0.01391257718205452, + 0.028745749965310097, + -0.003912101499736309, + 0.040166642516851425, + -0.01864732801914215, + 0.05038351193070412, + 0.06885450333356857, + -0.03322164714336395, + -0.015723785385489464, + -0.0023169999476522207, + -0.07223998010158539, + 0.03129596263170242, + -0.0025027981027960777, + 0.02851882576942444, + 0.02828252501785755, + 0.08716188371181488, + 0.035401392728090286, + -0.013502010144293308, + 0.043889082968235016, + -0.06135803088545799, + 0.05938486382365227, + -0.03815179318189621, + 0.003092672908678651, + 0.030613679438829422, + -0.005654844455420971, + 0.0063110655173659325, + -0.04771081730723381, + -0.05773903802037239, + 0.012420148588716984, + 0.04801642894744873, + 0.0396486334502697, + 0.06410827487707138, + -0.013642027974128723, + -0.02568519487977028, + -0.033044278621673584, + 0.025456873700022697, + -0.007811353541910648, + -0.01799643225967884, + 0.008549388498067856, + 0.04847569391131401, + -0.08025208115577698, + 0.023157306015491486, + 0.023194968700408936, + 0.0639476329088211, + 0.11167068034410477, + 0.00884648971259594, + -0.0549662783741951, + 0.06862647086381912, + -0.07892804592847824, + 0.05307188630104065, + -0.026165399700403214, + -0.018197832629084587, + -0.022430207580327988, + -0.07106500118970871, + 0.013143121264874935, + 0.05376877635717392, + 0.0691041424870491, + -0.04376939684152603, + 0.02341536059975624, + -0.04869777336716652, + 0.02756526879966259, + 0.04845401272177696, + 0.0011515499791130424, + 0.00178165128454566, + 0.04074664041399956, + -0.002547906944528222, + 0.019473586231470108, + -0.008123406209051609, + -2.5536841974371782e-08, + -0.0615944042801857, + -0.023181192576885223, + 0.06364922970533371, + -0.0033295259345322847, + 0.04047847539186478, + -0.00914738979190588, + 0.04050612449645996, + -0.004675073083490133, + -0.040346428751945496, + -0.06977920979261398, + 0.07334369421005249, + 0.06821996718645096, + -0.03745085000991821, + -0.03991914913058281, + 0.1292717605829239, + 0.03626030683517456, + -0.06809715181589127, + 0.021937718614935875, + -0.011321742087602615, + -0.056098099797964096, + 0.003670051461085677, + 0.006741997320204973, + 0.023153452202677727, + 0.0691436380147934, + -0.0034781128633767366, + -0.01796596683561802, + 0.018725473433732986, + 0.12226982414722443, + 0.043634213507175446, + -0.021861111745238304, + 0.06350946426391602, + -0.017573155462741852, + 0.04507676139473915, + -0.028782673180103302, + -0.06573139876127243, + -0.022727644070982933, + -0.0680810809135437, + 0.028786513954401016, + 0.048166077584028244, + 0.07952175289392471, + -0.03293662518262863, + 0.023384541273117065, + -0.0413610078394413, + 0.010273553431034088, + -0.07157046347856522, + 0.029699523001909256, + 0.02252517081797123, + -0.02711174637079239, + -0.0900781974196434, + -0.14075523614883423, + -0.05364035442471504, + 0.032730016857385635, + 0.03481778874993324, + 0.06364265829324722, + -0.013585161417722702, + 0.03690308704972267, + 0.028256261721253395, + -0.0008146223262883723, + -0.028744349256157875, + 0.05147149786353111, + 0.0556286945939064, + 0.1043626070022583, + 0.023031048476696014, + 0.019595734775066376 + ], + "arrows-counter-clockwise-bold||*updated*,directional,pointer,pointing,arrowhead,undo,refreshing,rotate,spin,flip": [ + -0.002727713668718934, + -0.07429704070091248, + -0.0581759475171566, + -0.005484562832862139, + -0.057784587144851685, + -0.013077009469270706, + 0.01757778599858284, + -0.049628544598817825, + 0.02434188313782215, + 0.01383622270077467, + 0.058879461139440536, + 0.10685189813375473, + 0.0184959527105093, + -0.04793369024991989, + -0.06675615161657333, + 0.05559098348021507, + -0.05554290860891342, + 0.032334063202142715, + 0.021071655675768852, + 0.010325117968022823, + -0.04756588116288185, + -0.018426276743412018, + -0.01491036918014288, + 0.05253615602850914, + -0.0008137126569636166, + 0.06717851012945175, + 0.042507339268922806, + 0.01263698935508728, + -0.002512692240998149, + -0.09836359322071075, + -0.055172599852085114, + 0.011758020147681236, + -0.007481810171157122, + 0.03464648500084877, + -0.12279197573661804, + -0.041487742215394974, + -0.008543449454009533, + 0.010073088109493256, + -0.021903781220316887, + 0.0636572614312172, + 0.02382848970592022, + -0.028434524312615395, + 0.009467825293540955, + -0.01607275940477848, + 0.03755953535437584, + 0.0838945135474205, + -0.11479948461055756, + -0.016170280054211617, + 0.02792144939303398, + 0.07260763645172119, + -0.05343439429998398, + -0.11077447980642319, + -0.08560887724161148, + -0.01260724849998951, + 0.07239937037229538, + 0.04701358079910278, + 0.03143804520368576, + -0.04665236547589302, + 0.07585476338863373, + -0.00689694844186306, + 0.11093896627426147, + -0.00855231937021017, + 0.004252758342772722, + 0.06006048619747162, + 0.005450956989079714, + 2.677420707186684e-05, + -0.010239333845674992, + -0.04113131761550903, + 0.046271272003650665, + 0.003477452788501978, + 0.019593585282564163, + -0.010613447986543179, + -0.029707850888371468, + -0.0470690056681633, + 0.001878943876363337, + -0.03376629948616028, + 0.03162481263279915, + 0.021631881594657898, + -0.0464324988424778, + -0.06862200796604156, + -0.0674644410610199, + -0.025951644405722618, + -0.03797826170921326, + 0.08051998913288116, + 0.08609795570373535, + 0.0581597201526165, + -0.08739326894283295, + -0.0072646792978048325, + -0.01084111537784338, + 0.003722448367625475, + -0.03996921330690384, + -0.015650494024157524, + -0.017992684617638588, + -0.06604896485805511, + -0.0020174095407128334, + -0.0022653720807284117, + 0.09411024302244186, + -0.06402566283941269, + -0.12942825257778168, + 0.06695675104856491, + 0.05757654085755348, + -0.017986634746193886, + 0.01121152751147747, + -0.022087328135967255, + -0.014941660687327385, + 0.029069500043988228, + -0.032686807215213776, + -0.033115655183792114, + -0.06459928303956985, + 0.010516173206269741, + -0.055820100009441376, + -0.11051115393638611, + -0.0025148808490484953, + -0.07175540179014206, + -0.03980856388807297, + -0.046743787825107574, + -0.11204201728105545, + 0.004604288376867771, + 0.056128352880477905, + 0.00862540490925312, + 0.04912276566028595, + -0.04559692367911339, + -0.04251815378665924, + -0.05523274466395378, + -0.07295998930931091, + -0.007417154032737017, + -0.028958002105355263, + -3.960243406656164e-33, + 0.0618152879178524, + 0.03868318349123001, + -0.0010321158915758133, + 0.019333258271217346, + -0.007309495005756617, + 0.014983972534537315, + -0.007166062016040087, + -0.07230819761753082, + -0.047546494752168655, + 0.007353824097663164, + 0.14830949902534485, + 0.04759078472852707, + -0.06128450483083725, + 0.06477849930524826, + 0.020491857081651688, + -0.1258661150932312, + 0.06296024471521378, + 0.06435167789459229, + -0.09018129110336304, + -0.047328125685453415, + 0.010551915504038334, + 0.07373955845832825, + -0.07525279372930527, + -0.05359483137726784, + -0.006361714564263821, + 0.037799760699272156, + -0.005388496443629265, + 0.008226171135902405, + -0.10315912961959839, + 0.026661211624741554, + 0.03675620257854462, + 0.045441705733537674, + -0.00659462995827198, + -0.04017070680856705, + -0.018315380439162254, + -0.004214681219309568, + -0.08653227984905243, + -0.07482034713029861, + 0.0010586041025817394, + -0.025163767859339714, + -0.05248698592185974, + -0.06896491348743439, + -0.09281902015209198, + -0.05741526931524277, + 0.01761253923177719, + 0.10119371861219406, + -0.07523132860660553, + -0.034477151930332184, + 0.04860031232237816, + -0.016664374619722366, + 0.04215199127793312, + 0.04154767468571663, + -0.01291979756206274, + -0.018270239233970642, + 0.018391063436865807, + -0.0020652562379837036, + -0.019214771687984467, + 0.1224466860294342, + -0.06864992529153824, + 0.039685849100351334, + 0.038977961987257004, + 0.07580912858247757, + 0.003032529726624489, + -0.02888515032827854, + -0.06768748164176941, + 0.04968031123280525, + -0.07899420708417892, + 0.006962906569242477, + 0.0888250470161438, + 0.025619294494390488, + -0.027572214603424072, + 0.024056583642959595, + 0.01934395357966423, + 0.06294000148773193, + -0.04454963281750679, + 0.00839248113334179, + -0.033584754914045334, + -0.05592533200979233, + 0.04602917656302452, + -0.06470934301614761, + -0.09606769680976868, + -0.006942921783775091, + -0.08075886964797974, + 0.010221469216048717, + 0.04958091303706169, + -0.07464955747127533, + 0.0012414624216035008, + -0.022617101669311523, + -0.017221083864569664, + 0.07673799991607666, + -0.023203672841191292, + 0.022083526477217674, + 0.014698254875838757, + 0.016026347875595093, + -0.07286865264177322, + 7.165478822229169e-34, + -0.018898190930485725, + 0.04708719253540039, + -0.07783064991235733, + 0.05967651307582855, + -0.13114146888256073, + 0.02647453546524048, + 0.03882380202412605, + 0.014377960935235023, + 0.009614247828722, + 0.0019111145520582795, + 0.059179771691560745, + 0.0321330726146698, + -0.0572078675031662, + -0.012474204413592815, + 0.11531180888414383, + 0.010586913675069809, + 0.04229848086833954, + 0.06810501217842102, + -0.023133534938097, + -0.011820348910987377, + 0.017002291977405548, + -0.026584871113300323, + 0.009507974609732628, + 0.04965858533978462, + 0.012485533021390438, + 0.026247743517160416, + 0.08747739344835281, + 0.013944688253104687, + 0.03021796979010105, + -0.0030135458800941706, + 0.04465651884675026, + -0.010503937490284443, + 0.059960078448057175, + 0.06476031988859177, + -0.029243946075439453, + -0.03830385208129883, + 0.008358439430594444, + -0.07424838095903397, + 0.025842538103461266, + 0.016291650012135506, + 0.03792203590273857, + 0.03014937788248062, + 0.10334699600934982, + 0.04269389808177948, + -0.02203342132270336, + 0.03593765199184418, + -0.05061871185898781, + 0.056363191455602646, + -0.0029347690287977457, + -0.010446485131978989, + 0.025531915947794914, + -0.012867799028754234, + 0.0021746421698480844, + -0.042112067341804504, + -0.05204688012599945, + -0.0005541826249100268, + 0.061069611459970474, + 0.029081784188747406, + 0.08025828748941422, + -0.0039655473083257675, + -0.03492836281657219, + -0.01925169676542282, + 0.016567325219511986, + 0.006497152149677277, + -0.027053894475102425, + -0.014018709771335125, + 0.017098993062973022, + -0.07808741927146912, + -0.009134823456406593, + -0.0003311272303108126, + 0.050838205963373184, + 0.10538574308156967, + 0.002978438511490822, + -0.07360510528087616, + 0.07731130719184875, + -0.07155455648899078, + 0.044751569628715515, + -0.0025998635683208704, + -0.01605447381734848, + -0.05062532052397728, + -0.06405195593833923, + 0.014468632638454437, + 0.041747353971004486, + 0.053960610181093216, + -0.052735548466444016, + 0.03471900895237923, + -0.08710934966802597, + 0.018621698021888733, + 0.039269302040338516, + 0.0035910161677747965, + -0.011897220276296139, + 0.04856361821293831, + 0.025304459035396576, + 0.007789224851876497, + -0.018137674778699875, + -2.4989169844502612e-08, + -0.09661010652780533, + -0.025424214079976082, + 0.0676286593079567, + 0.010653247125446796, + 0.037660252302885056, + -0.01749579608440399, + 0.020028216764330864, + 0.019897880032658577, + -0.052031394094228745, + -0.0989883542060852, + 0.06681128591299057, + 0.08605942875146866, + -0.016623906791210175, + -0.03880641236901283, + 0.11890455335378647, + 0.041665736585855484, + -0.048552364110946655, + 0.029242420569062233, + -0.005838190671056509, + -0.046102527529001236, + -0.020701412111520767, + 0.003294927068054676, + 0.0477280355989933, + 0.0475454106926918, + -0.01670333370566368, + -0.007649124599993229, + -0.0073168398812413216, + 0.12704014778137207, + 0.05622204765677452, + 0.009806059300899506, + 0.05683346465229988, + -0.020717021077871323, + 0.0381457582116127, + -0.011297226883471012, + -0.04938381537795067, + -0.02334951050579548, + -0.043393369764089584, + 0.015129851177334785, + 0.03934311866760254, + 0.07003399729728699, + -0.03617733344435692, + 0.017875906080007553, + -0.046277713030576706, + 0.020069677382707596, + -0.07133800536394119, + 0.026825478300452232, + 0.037483491003513336, + -0.01976284384727478, + -0.1021806076169014, + -0.13809071481227875, + -0.06737477332353592, + 0.03774861618876457, + 0.03591141849756241, + 0.07520581781864166, + 0.004640626721084118, + 0.05966338887810707, + 0.016046317294239998, + -0.017413578927516937, + -0.0435265451669693, + 0.05096704512834549, + 0.0740349069237709, + 0.10533114522695541, + 0.0017410673899576068, + 0.008731095120310783 + ], + "arrows-down-up-bold||*updated*,directional,pointer,pointing,arrowhead": [ + 0.01682954467833042, + -0.023315399885177612, + -0.04264269769191742, + -0.0013686016900464892, + -0.005808214191347361, + -0.03432077169418335, + 0.04930121451616287, + -0.024835428223013878, + -0.009261930361390114, + 0.04602682217955589, + 0.0033167623914778233, + 0.12015844136476517, + 0.027773067355155945, + -0.02903987653553486, + -0.01446655485779047, + 0.05339374765753746, + -0.03680151328444481, + 0.06416779011487961, + 0.02845594845712185, + 0.02210284024477005, + -0.06105289235711098, + -0.004753571003675461, + -0.021455658599734306, + 0.050549328327178955, + -0.017049536108970642, + 0.028453486040234566, + 0.04909222200512886, + 0.010556255467236042, + -0.019352130591869354, + -0.05144517868757248, + -0.09191087633371353, + -0.03599933162331581, + -0.010013939812779427, + 0.011600985191762447, + -0.06736902892589569, + -0.02778673730790615, + 0.035959262400865555, + 0.029060017317533493, + -0.03344253450632095, + 0.07101375609636307, + 0.03070082888007164, + -0.008998428471386433, + -0.014239415526390076, + -0.019947947934269905, + 0.006222038995474577, + 0.06797866523265839, + -0.08580971509218216, + -0.013293279334902763, + 0.02337990514934063, + 0.0476248562335968, + -0.06937721371650696, + -0.1019258201122284, + -0.06642266362905502, + -0.016278095543384552, + 0.06457365304231644, + 0.06627938151359558, + -0.024700164794921875, + -0.023511357605457306, + 0.08819703012704849, + 0.00021370366448536515, + 0.07473868876695633, + -0.004837234038859606, + 0.05679529905319214, + 0.012923571281135082, + 0.035168953239917755, + -0.007873700000345707, + -0.005678724963217974, + 0.005694080609828234, + 0.02358490228652954, + 0.026492318138480186, + 0.028051650151610374, + -0.004796001128852367, + 0.0002890616306103766, + -0.05909475311636925, + -0.030026255175471306, + -0.02500479482114315, + 0.04332471266388893, + 0.056822601705789566, + 0.02106541022658348, + -0.07880284637212753, + -0.036798905581235886, + -0.00610215263441205, + -0.06995849311351776, + 0.03910398855805397, + 0.032890692353248596, + 0.0704418495297432, + -0.08554421365261078, + -0.05776175111532211, + -0.06515080481767654, + -0.01873597502708435, + -0.00868153478950262, + -0.025632617995142937, + -0.022502020001411438, + -0.02186918631196022, + -0.004481179639697075, + -0.014115420170128345, + 0.08372428268194199, + -0.07270167022943497, + -0.1071048155426979, + 0.09882315248250961, + 0.007815622724592686, + 0.005394701845943928, + 0.014988958835601807, + -0.03796614333987236, + -0.02327592670917511, + 0.02764919400215149, + -0.026277074590325356, + -0.020884592086076736, + -0.03524558246135712, + -0.01642664708197117, + -0.0595993846654892, + -0.1399279236793518, + -0.045872267335653305, + -0.05432898923754692, + -0.06772278994321823, + -0.015493896789848804, + -0.07353628426790237, + -0.005451202392578125, + 0.05043802782893181, + -0.014611516147851944, + 0.07180473208427429, + -0.028730660676956177, + -0.04393007606267929, + -0.026070265099406242, + -0.07070427387952805, + -0.002505506621673703, + -0.009961862117052078, + -3.783012654014749e-33, + 0.08847051858901978, + 0.020592590793967247, + -0.01180163025856018, + 0.03286336734890938, + 0.005690393969416618, + 0.008274894207715988, + -0.06698650121688843, + -0.06918860226869583, + -0.07336633652448654, + 0.011864157393574715, + 0.14375518262386322, + 0.006828082259744406, + -0.07054176926612854, + 0.08473872393369675, + 0.03345561400055885, + -0.13243825733661652, + 0.05724863335490227, + 0.07427673786878586, + -0.09127434343099594, + -0.011571517214179039, + -0.02011464722454548, + 0.04065724462270737, + -0.09035968035459518, + -0.0546126551926136, + -0.01140626147389412, + 0.03078562021255493, + -0.0417746901512146, + 0.025788892060518265, + -0.10303749889135361, + 0.009047703817486763, + 0.020712995901703835, + 0.04147381708025932, + 0.006805695593357086, + -0.07287897914648056, + -0.03525606170296669, + -0.0050420300103724, + -0.13162913918495178, + -0.04652995988726616, + -0.016081813722848892, + -0.057019926607608795, + -0.04004242643713951, + -0.050079405307769775, + -0.08465158939361572, + -0.002464998047798872, + 0.007348373997956514, + 0.13521608710289001, + -0.11684997379779816, + -0.10237594693899155, + 0.007194822654128075, + -0.011986594647169113, + 0.01407573651522398, + 0.020930081605911255, + -0.02547594904899597, + -0.008832080289721489, + -0.020344167947769165, + 0.008367286995053291, + -0.07522331178188324, + 0.1495116502046585, + 0.003620459930971265, + 0.0077680726535618305, + 0.030330181121826172, + -0.00990370661020279, + 0.007510012481361628, + -8.529828846803866e-06, + -0.04685821384191513, + 0.06681229174137115, + -0.08874816447496414, + 0.04210026562213898, + 0.09420578181743622, + 0.026018505915999413, + -0.016804128885269165, + 0.04428129643201828, + 0.041765592992305756, + 0.0755864828824997, + -0.029215484857559204, + 0.0024078215938061476, + -0.03908678516745567, + -0.06722377985715866, + 0.0682612806558609, + -0.09270497411489487, + -0.07339836657047272, + 0.013088095001876354, + -0.05399153754115105, + -4.84418123960495e-05, + 0.09231316298246384, + -0.062054455280303955, + -0.0205813180655241, + 0.004142310470342636, + -0.02229681983590126, + 0.06740036606788635, + -0.04277408495545387, + 0.024310767650604248, + -0.009716754779219627, + -0.01483054831624031, + -0.06680221855640411, + 1.94648020295125e-34, + 0.00303881848230958, + 0.06937603652477264, + -0.08990880846977234, + 0.005404049064964056, + -0.1384402960538864, + 0.04934132099151611, + 0.04563142731785774, + -0.008588307537138462, + 0.015654845163226128, + 0.025659678503870964, + 0.02507447823882103, + 0.035739731043577194, + -0.03335648030042648, + -0.0306392852216959, + 0.06165406107902527, + 0.03917674347758293, + 0.0459771491587162, + 0.057728614658117294, + -0.005613952409476042, + -0.029218202456831932, + -0.020373277366161346, + -0.039180103689432144, + -0.032438818365335464, + 0.014857634902000427, + 0.006373216863721609, + 0.007775253616273403, + 0.05107802525162697, + 0.06101694330573082, + -0.006419120356440544, + -0.053945425897836685, + 0.02786320075392723, + 0.01152148749679327, + 0.005895558744668961, + 0.05320337414741516, + -0.04901284724473953, + -0.023055298253893852, + -0.02114412561058998, + -0.08902852237224579, + 0.04677511006593704, + 0.034481387585401535, + 0.04269076883792877, + 0.04226575791835785, + 0.1080339327454567, + 0.020098645240068436, + 0.02353929542005062, + 0.07015972584486008, + -0.01742931455373764, + 0.022911665961146355, + -0.013052674010396004, + 0.011878406628966331, + 0.013828515075147152, + -0.03496298938989639, + -0.01105074118822813, + -0.007238162215799093, + -0.07614138722419739, + 0.007675881963223219, + 0.0935211107134819, + 0.0897616371512413, + 0.0007549611618742347, + 0.018504798412322998, + -0.030861835926771164, + -0.005355386063456535, + 0.0007316519622690976, + 0.04741713032126427, + -0.018119996413588524, + 0.0083928806707263, + 0.02722887322306633, + -0.0914086177945137, + 0.012396975420415401, + -0.010547006502747536, + 0.06246732547879219, + 0.06182737275958061, + 0.009811250492930412, + -0.01994427666068077, + 0.07152838259935379, + -0.09952805936336517, + 0.044930920004844666, + 0.026450185105204582, + 0.006188424304127693, + -0.06671669334173203, + -0.07447925955057144, + 0.019275270402431488, + 0.0015453380765393376, + 0.07406634092330933, + -0.018570711836218834, + 0.05622101202607155, + -0.07401025295257568, + 0.05040402337908745, + 0.01160524133592844, + -0.03480060026049614, + -0.0027588431257754564, + -0.016717080026865005, + -0.00019197056826669723, + -0.027460532262921333, + -0.05852761119604111, + -2.3363995182990038e-08, + -0.04891753941774368, + -0.00038738196599297225, + -0.0392376184463501, + -0.015544370748102665, + 0.04304976761341095, + -0.003913318272680044, + -0.013345967046916485, + 0.013186241500079632, + 0.0032218219712376595, + -0.13361001014709473, + 0.04021051153540611, + 0.06737762689590454, + -0.027805857360363007, + -0.026102008298039436, + 0.1329726129770279, + 0.030035585165023804, + -0.07222627103328705, + 0.03262300789356232, + -0.015718448907136917, + -0.052682068198919296, + -0.04189255088567734, + 0.04941006749868393, + 0.01438137236982584, + 0.09243194013834, + 0.002880747662857175, + -0.01255705300718546, + -0.012825076468288898, + 0.12872928380966187, + 0.06058823689818382, + 0.02885318547487259, + 0.07649382203817368, + 0.03641258552670479, + 0.006113989744335413, + 0.013017192482948303, + 0.011309471912682056, + 0.002888624556362629, + -0.04774101823568344, + 0.03994925692677498, + 0.039737552404403687, + 0.1063627153635025, + -0.048737961798906326, + -0.017072120681405067, + -0.02874176576733589, + -0.01149777416139841, + -0.04670841619372368, + 0.057479944080114365, + 0.013159061782062054, + -0.012607402168214321, + -0.12761816382408142, + -0.10973086953163147, + -0.029782114550471306, + 0.07274451106786728, + 0.04796495661139488, + 0.08127130568027496, + -0.011420140042901039, + 0.030120471492409706, + -0.01038447767496109, + -0.01057928241789341, + -0.06667088717222214, + 0.017977528274059296, + 0.08084513247013092, + 0.03874250873923302, + 0.0122192008420825, + 0.06505683064460754 + ], + "arrows-horizontal-bold||*updated*,directional,pointer,cursor,resize,expand,left,right": [ + 0.01720455475151539, + -0.05834060534834862, + -0.018055187538266182, + 0.03199490159749985, + -0.02075210027396679, + -0.03249916434288025, + 0.022123461589217186, + -0.05027865245938301, + -0.01983884908258915, + 0.013321101665496826, + 0.030425289645791054, + 0.11438753455877304, + 0.014137396588921547, + -0.022194446995854378, + -0.028098292648792267, + 0.08328956365585327, + -0.06411170214414597, + 0.02201163023710251, + -0.018524160608649254, + -0.005788870621472597, + -0.05846685171127319, + -0.027143973857164383, + -0.045721422880887985, + 0.04543452337384224, + 0.0025405623018741608, + 0.06069747358560562, + 0.02809576690196991, + 0.0240006260573864, + 0.004414968658238649, + -0.08777540922164917, + -0.06258874386548996, + -0.011276332661509514, + -0.001851118286140263, + 0.03818674385547638, + -0.046846333891153336, + -0.02714207023382187, + -0.001708494615741074, + 0.007709560915827751, + -0.02804718352854252, + 0.08552127331495285, + 0.054921139031648636, + -0.02095217816531658, + 0.006750654429197311, + 0.014539843425154686, + -0.0021530187223106623, + -0.007665783166885376, + -0.11234023422002792, + -0.015781093388795853, + 0.046262066811323166, + 0.06335321813821793, + -0.07419928163290024, + -0.09218990057706833, + -0.09995036572217941, + 0.011958025395870209, + 0.07321736961603165, + 0.0031023703049868345, + 0.002813838655129075, + -0.021849891170859337, + 0.11349053680896759, + -0.032291583716869354, + 0.08975356817245483, + 0.007175103761255741, + 0.08405807614326477, + 0.0025301415007561445, + -0.0006371348863467574, + -0.0006229039281606674, + -0.016761764883995056, + -0.006239407230168581, + 0.038160912692546844, + 0.014162680134177208, + 0.02662598341703415, + -0.009994103573262691, + -0.026330437511205673, + -0.03893572464585304, + -0.0017994613153859973, + -0.030854010954499245, + 0.02347397245466709, + 0.05876266211271286, + 0.004834073130041361, + -0.027914773672819138, + -0.058192744851112366, + 0.004056642297655344, + -0.05403948575258255, + 0.04572047293186188, + 0.05338240787386894, + 0.09885273873806, + -0.05945534259080887, + -0.08240216225385666, + -0.021710261702537537, + -0.04844605550169945, + -0.008548089303076267, + -0.014927573502063751, + -0.061042625457048416, + -0.03070092760026455, + -0.03044651448726654, + -0.07047955691814423, + 0.06258387863636017, + -0.09526211768388748, + -0.121428482234478, + 0.07647045701742172, + 0.05584034323692322, + 0.031913649290800095, + 0.03638775274157524, + -0.051894888281822205, + 0.0016731258947402239, + 0.047776561230421066, + -0.0636596530675888, + -0.055878400802612305, + -0.031170569360256195, + 0.02778351865708828, + -0.06556311249732971, + -0.11017629504203796, + -0.04333809018135071, + -0.03809056058526039, + -0.024636808782815933, + -0.019436150789260864, + -0.1123349741101265, + 0.01894691213965416, + 0.10107817500829697, + 0.01220420841127634, + 0.08807292580604553, + -0.013943219557404518, + -0.056688468903303146, + -0.03596590831875801, + -0.057998474687337875, + 0.024473415687680244, + -0.02694169618189335, + -3.00422119797209e-33, + 0.00253238994628191, + -0.009023773483932018, + 0.009326571598649025, + 0.06871065497398376, + 0.004395492374897003, + 0.021563196554780006, + -0.04693512246012688, + -0.013016660697758198, + -0.07169283926486969, + -0.04156793653964996, + 0.13144560158252716, + 0.040812134742736816, + -0.06410462409257889, + 0.056166619062423706, + 0.04380057379603386, + -0.1322011500597, + 0.05072207748889923, + 0.11635120958089828, + -0.10649648308753967, + -0.02521313726902008, + -0.04402009770274162, + 0.05912342667579651, + -0.052227430045604706, + -0.03147371858358383, + 0.003907664678990841, + -0.036406755447387695, + -0.022180404514074326, + 0.03506091609597206, + -0.10617618262767792, + 0.0004253211081959307, + -0.011782237328588963, + 0.0498046837747097, + 0.019647402688860893, + -0.05871395021677017, + -0.03516466170549393, + 0.008302086032927036, + -0.09643633663654327, + -0.049171146005392075, + 0.02292252704501152, + -0.0172574520111084, + -0.050835199654102325, + -0.0613272562623024, + -0.020444393157958984, + -0.06551197171211243, + 0.01881367526948452, + 0.12894077599048615, + -0.07076488435268402, + -0.03919770196080208, + 0.012314087711274624, + -0.05354011431336403, + 0.017857268452644348, + 0.06061768904328346, + -0.005964388605207205, + -0.03870470076799393, + 0.02447526715695858, + -0.024127889424562454, + -0.032879140228033066, + 0.1314474493265152, + -0.020426660776138306, + -0.0021634676959365606, + -0.009201903827488422, + -0.014348234049975872, + 0.014794083312153816, + 0.03546610474586487, + -0.03941049054265022, + 0.03089049831032753, + -0.10517138242721558, + 0.04283193498849869, + 0.12392483651638031, + 0.03310370072722435, + 0.022307172417640686, + 0.04166277125477791, + 0.07116369903087616, + 0.0478723868727684, + -0.0421428345143795, + 0.0003071072278544307, + -0.04420807585120201, + -0.05426732823252678, + 0.03970332071185112, + -0.10155872255563736, + -0.09383874386548996, + -0.021004538983106613, + -0.031829833984375, + 0.015692906454205513, + 0.054044537246227264, + -0.0880800411105156, + -0.01071321964263916, + 0.007754617836326361, + 0.0018654931336641312, + 0.0459648072719574, + -0.059423428028821945, + 0.004183016251772642, + -0.01319599524140358, + -0.03655906021595001, + -0.07188546657562256, + -5.992087504268899e-34, + 0.010185722261667252, + 0.05618320778012276, + -0.08530489355325699, + -0.008644349873065948, + -0.1180230975151062, + 0.044900525361299515, + 0.010917809791862965, + 0.0457933284342289, + -0.011495891958475113, + 0.03042312152683735, + 0.033633071929216385, + 0.037749022245407104, + -0.07557675242424011, + -0.07282917201519012, + 0.04615335538983345, + 0.052160054445266724, + 0.0462159737944603, + 0.06853462010622025, + -0.002444557612761855, + -0.04449664056301117, + 0.02246084436774254, + -0.03938097134232521, + 0.0073735774494707584, + 0.0522412545979023, + 0.021886028349399567, + -0.007526794448494911, + 0.06591343879699707, + 0.0334160141646862, + 0.005607313942164183, + -0.004643455613404512, + 0.027739467099308968, + -0.00594900269061327, + 0.03091672994196415, + 0.05137316882610321, + 0.00550731411203742, + -0.06653941422700882, + 0.019808253273367882, + -0.08211001753807068, + 0.09401729702949524, + 0.021310467272996902, + 0.026477690786123276, + 0.03333386778831482, + 0.12828710675239563, + 0.020862139761447906, + 0.02508326806128025, + 0.05899990722537041, + 0.007957163266837597, + 0.016750842332839966, + -0.002521978924050927, + 0.01420516800135374, + 0.03136409446597099, + -0.011235203593969345, + -0.004503951873630285, + -0.05274000018835068, + -0.10139467567205429, + -0.01761390082538128, + 0.04444533959031105, + 0.029656149446964264, + -0.012155052274465561, + -0.01190866343677044, + -0.07618475705385208, + -0.03283993899822235, + 0.0043170941062271595, + -0.0039890664629638195, + -0.021422507241368294, + -0.00013260597188491374, + 0.02270365133881569, + -0.10810299962759018, + 0.003783240681514144, + -0.017266694456338882, + 0.11143548786640167, + 0.08418742567300797, + -0.015612855553627014, + -0.0055542984046041965, + 0.04952612146735191, + -0.08549538254737854, + 0.04722410440444946, + -0.024903414770960808, + -0.007834529504179955, + -0.03606807067990303, + -0.06628869473934174, + -0.01727287657558918, + 0.042376499623060226, + 0.05564241483807564, + -0.04027550667524338, + 0.059913549572229385, + -0.047327443957328796, + 0.03116794489324093, + 0.049533769488334656, + -0.018821261823177338, + -0.018094059079885483, + -0.011538857594132423, + -0.007179188542068005, + -0.06474694609642029, + -0.03394165262579918, + -2.5730304997750864e-08, + -0.05277131497859955, + 0.0004700571298599243, + -0.015840187668800354, + 0.0021780687384307384, + 0.050809767097234726, + -0.028781708329916, + -0.014723698608577251, + 0.0268532894551754, + -0.022360986098647118, + -0.04578927159309387, + 0.07254067808389664, + 0.06840857863426208, + -0.013639125041663647, + -0.02129649743437767, + 0.12161366641521454, + 0.026974432170391083, + -0.046260714530944824, + 0.031098492443561554, + 0.0008843083051033318, + -0.06926229596138, + -0.011802194640040398, + 0.02409163862466812, + 0.005784781649708748, + 0.07585025578737259, + 0.0037239405792206526, + -0.029936885461211205, + -0.07081903517246246, + 0.12586313486099243, + 0.07127190381288528, + 0.033049438148736954, + 0.0778912752866745, + 0.0024334141053259373, + 0.04607227444648743, + 0.05225927010178566, + -0.01722046546638012, + -0.05758845806121826, + -0.020395096391439438, + 0.058288294821977615, + 0.0004636150551959872, + 0.06727015227079391, + -0.04349476844072342, + -0.012652289122343063, + 0.009919009171426296, + -0.013496153987944126, + -0.05419398471713066, + -0.0016662488924339414, + 0.021280018612742424, + 0.011901847086846828, + -0.10179274529218674, + -0.1122751384973526, + -0.022608958184719086, + 0.06331727653741837, + 0.05514951050281525, + 0.045091938227415085, + -0.001957179047167301, + 0.015162643045186996, + -0.026046769693493843, + 0.04953460022807121, + -0.059261009097099304, + 0.03472556546330452, + 0.07625125348567963, + 0.10793297737836838, + -0.00959525816142559, + 0.047793421894311905 + ], + "arrows-in-bold||*updated*,directional,pointer,pointing,arrowhead,collapse,minimize,resize,shrink": [ + 0.03613578528165817, + -0.04917941987514496, + -0.010350405238568783, + 0.07189789414405823, + 0.023402025923132896, + -0.026027286425232887, + 0.044858429580926895, + -0.012325872667133808, + -0.009825633838772774, + 0.028507931157946587, + -0.0027008976321667433, + 0.1239752247929573, + 0.02914539910852909, + -0.020135922357439995, + -0.025590740144252777, + 0.07260511815547943, + -0.04605802893638611, + 0.04467739909887314, + -0.00954989530146122, + -0.017964288592338562, + -0.05593829229474068, + -0.0157768614590168, + -0.04712875559926033, + 0.05671679973602295, + 0.0031181497033685446, + 0.02631458267569542, + 0.019937263801693916, + 0.02874710224568844, + -0.0012554749846458435, + -0.07519716769456863, + -0.041596729308366776, + -0.03709729015827179, + 0.02648770995438099, + 0.03802351653575897, + -0.05029352009296417, + 0.013000397942960262, + 0.012178055942058563, + 0.023673538118600845, + -0.04030986875295639, + 0.05577543377876282, + 0.045683812350034714, + 0.034645918756723404, + -0.015126822516322136, + -0.008263484574854374, + 0.009343750774860382, + 0.03893667459487915, + -0.09076754748821259, + -0.029257958754897118, + 0.008970319293439388, + 0.018915262073278427, + -0.056329887360334396, + -0.10752803087234497, + -0.0771244689822197, + -0.015844985842704773, + 0.08637475222349167, + -0.016031069681048393, + -0.046389322727918625, + -0.06244809553027153, + 0.09712552279233932, + -0.003244567895308137, + 0.1029345765709877, + 0.004142987076193094, + 0.05095716938376427, + 0.020387297496199608, + 0.019974788650870323, + 0.0242888443171978, + 0.02926790900528431, + -0.01745949499309063, + 0.028237270191311836, + 0.022391866892576218, + 0.03167254850268364, + -0.005214650183916092, + -0.02234489656984806, + -0.0008466407307423651, + 0.0011781426146626472, + -0.04489361122250557, + 0.05912886932492256, + 0.0497758649289608, + -0.014051501639187336, + -0.008262032642960548, + -0.060123007744550705, + -0.020362185314297676, + -0.0760393887758255, + 0.02736205793917179, + 0.03996116667985916, + 0.10662639886140823, + -0.059826575219631195, + -0.10689843446016312, + -0.032664209604263306, + -0.06588561832904816, + -0.03633950650691986, + -0.02403445728123188, + -0.07028410583734512, + 0.019359035417437553, + 0.010017058812081814, + -0.07059787213802338, + 0.08040665090084076, + -0.06357438117265701, + -0.12570716440677643, + 0.1177208349108696, + 0.045528944581747055, + 0.021453088149428368, + 0.05220168083906174, + -0.030529838055372238, + 0.013274100609123707, + 0.03930532559752464, + -0.04937339946627617, + -0.0642378181219101, + -0.023780303075909615, + 0.002058627549558878, + -0.04005421698093414, + -0.15887363255023956, + -0.016878562048077583, + -0.03741684556007385, + -0.0641302764415741, + -0.0403127484023571, + -0.10059235990047455, + -0.010350953787565231, + 0.10225046426057816, + 0.01305642444640398, + 0.07547059655189514, + -0.0179714597761631, + -0.04511965811252594, + -0.06027885898947716, + -0.0502503402531147, + 0.03746011480689049, + -0.03815940022468567, + -3.12241311418544e-33, + 0.027825361117720604, + 0.029125507920980453, + -0.023475470021367073, + 0.02377636916935444, + 0.012798826210200787, + 0.015665888786315918, + -0.016901401802897453, + -0.06622963398694992, + -0.07612715661525726, + -0.022729171440005302, + 0.13041988015174866, + 0.018646705895662308, + -0.06960094720125198, + 0.07240261882543564, + 0.0538804866373539, + -0.12796439230442047, + 0.0841599628329277, + 0.12636657059192657, + -0.11926891654729843, + -0.04016048461198807, + -0.06350672990083694, + 0.06385385245084763, + -0.08371404558420181, + -0.03707711026072502, + -0.01394327450543642, + -0.020349031314253807, + -0.013517658226191998, + 0.004309253767132759, + -0.11576304584741592, + 0.019662093371152878, + -0.02254539541900158, + 0.07445304840803146, + -0.010936854407191277, + -0.03041836805641651, + -0.03358623757958412, + -0.013394146226346493, + -0.10824327170848846, + -0.04743846133351326, + 0.014245760627090931, + -0.03745035082101822, + -0.040592122822999954, + -0.02259136736392975, + -0.024923600256443024, + -0.040938932448625565, + -0.0042809671722352505, + 0.11798372864723206, + -0.0794694796204567, + -0.03263905271887779, + 0.015622223727405071, + -0.058554332703351974, + 0.03504229709506035, + 0.06263387948274612, + -0.011523986235260963, + -0.03175932914018631, + 0.02407335676252842, + -0.03188050910830498, + -0.03412329778075218, + 0.09692265093326569, + 0.00047325590276159346, + 0.008033509366214275, + -0.02074827253818512, + -0.025996342301368713, + 0.0005147692863829434, + 0.003024300327524543, + -0.01300528272986412, + 0.04193165898323059, + -0.07794775813817978, + 0.04337336868047714, + 0.06965460628271103, + 0.016091955825686455, + 0.0017646453343331814, + 0.04857570677995682, + 0.05778993293642998, + 0.04161848872900009, + -0.0002741561911534518, + 0.00966149102896452, + 0.01989804580807686, + -0.0722905620932579, + 0.07304297387599945, + -0.1132078468799591, + -0.10371113568544388, + -0.005855666007846594, + -0.05118706822395325, + 0.02362990193068981, + 0.031788673251867294, + -0.08011682331562042, + 0.04329679161310196, + -0.015543127432465553, + -0.023647261783480644, + 0.0645747035741806, + -0.0906129777431488, + 0.02846103347837925, + -0.028882864862680435, + -0.009370813146233559, + -0.07679558545351028, + 2.576796345073988e-34, + 0.0010559316724538803, + 0.08775102347135544, + -0.08991461992263794, + 0.002205392811447382, + -0.10965853929519653, + 0.02454298362135887, + -0.007398044224828482, + 0.025753572583198547, + 0.005837015341967344, + 0.0003564171784091741, + 0.0643194317817688, + 0.02476484142243862, + -0.036664482206106186, + -0.04652523249387741, + 0.03019632399082184, + 0.017868056893348694, + 0.06590963155031204, + 0.018557660281658173, + -0.01905447244644165, + -0.032276902347803116, + 0.04734739661216736, + -0.0217689648270607, + -0.010436286218464375, + 0.03775063529610634, + 0.02138984203338623, + -0.017285509034991264, + 0.055267322808504105, + 0.04373924061655998, + -0.01885049045085907, + -0.0476655550301075, + 0.024081477895379066, + -0.014036178588867188, + 0.0184673760086298, + 0.04215847700834274, + -0.04548906162381172, + -0.027967941015958786, + -0.003231544280424714, + -0.09449917078018188, + 0.0720408484339714, + 0.025265268981456757, + 0.025511590763926506, + 0.037127185612916946, + 0.08447734266519547, + 0.013902176171541214, + 0.03360529616475105, + 0.06358213722705841, + 0.018552396446466446, + -0.009816702455282211, + -0.025903601199388504, + 0.017790457233786583, + 0.016651714220643044, + -0.016006609424948692, + -0.0201756302267313, + -0.047417011111974716, + -0.1010163202881813, + -0.011131233535706997, + 0.06340730935335159, + 0.06481815129518509, + -0.018692905083298683, + -0.009358052164316177, + -0.0325634628534317, + -0.039573781192302704, + 0.0049642822705209255, + 0.017955226823687553, + -0.031052131205797195, + 0.014259150251746178, + 0.03130601719021797, + -0.07742719352245331, + 0.022715719416737556, + -0.010346787050366402, + 0.113438181579113, + 0.07545028626918793, + 0.00997819472104311, + -0.00967421755194664, + 0.04643985256552696, + -0.1019815057516098, + 0.06457338482141495, + 0.011713835410773754, + 0.005232719704508781, + -0.034924618899822235, + -0.03914817422628403, + 0.004568710923194885, + 0.04284043237566948, + 0.04491255432367325, + -0.004961948376148939, + 0.0707520917057991, + -0.056883424520492554, + 0.055298514664173126, + 0.020805630832910538, + 0.031393349170684814, + -0.03233720362186432, + -0.010616851039230824, + 0.042895298451185226, + -0.058159589767456055, + -0.05829787254333496, + -2.573028190511195e-08, + -0.0870504155755043, + 0.030808817595243454, + -0.0387534573674202, + -0.006411632057279348, + 0.023677654564380646, + -0.03976832702755928, + 0.010261379182338715, + 0.022622333839535713, + -0.02461051195859909, + -0.0478472076356411, + 0.053598590195178986, + 0.07283667474985123, + -0.058648087084293365, + -0.017729584127664566, + 0.10160176455974579, + 0.034212626516819, + -0.060116007924079895, + 0.027955280616879463, + -0.028354685753583908, + -0.07202235609292984, + -0.045189760625362396, + 0.056232038885354996, + 0.03102305345237255, + 0.08190438896417618, + -0.011624517850577831, + -0.05869600921869278, + 0.006190553307533264, + 0.11954547464847565, + 0.07239376753568649, + 0.0423542857170105, + 0.047725386917591095, + 0.03820677474141121, + 0.025623386725783348, + 0.04015526920557022, + -0.054911840707063675, + -0.009356321766972542, + -0.05034451559185982, + 0.059096962213516235, + -0.0071512009017169476, + 0.08877609670162201, + -0.05576290190219879, + -0.020511049777269363, + 0.0007934225723147392, + -0.01731276325881481, + -0.04238700866699219, + 0.056844454258680344, + 0.02532797120511532, + 0.006859294138848782, + -0.09194013476371765, + -0.12720540165901184, + -0.03050348348915577, + 0.06023595854640007, + 0.008300446905195713, + 0.06306783109903336, + -0.006887688767164946, + 0.030443059280514717, + -0.015094524249434471, + 0.03926452249288559, + -0.055768635123968124, + 0.01749814860522747, + 0.07551554590463638, + 0.06558810919523239, + 0.0017861099913716316, + 0.06529417634010315 + ], + "arrows-in-cardinal-bold||*updated*,directional,pointer,pointing,arrowhead,collapse,minimize,resize,shrink": [ + 0.08435851335525513, + -0.03022608533501625, + -0.01087976060807705, + 0.03398784250020981, + 0.005752132274210453, + 0.00620746286585927, + 0.05407844856381416, + 0.005295448005199432, + -0.008650056086480618, + 0.012455708347260952, + 0.0045332531444728374, + 0.08518905192613602, + 0.0359538272023201, + -0.009606413543224335, + -0.056816644966602325, + 0.057947494089603424, + -0.047769591212272644, + 0.042111851274967194, + -0.002516780514270067, + -0.009269457310438156, + -0.046323735266923904, + -0.0057175313122570515, + -0.07250647246837616, + 0.06163516640663147, + -0.00759894959628582, + 0.027051890268921852, + 0.0010160767706111073, + 0.008389950729906559, + 0.003824990475550294, + -0.07895373553037643, + -0.05808873474597931, + -0.012062200345098972, + 0.011626663617789745, + 0.043049395084381104, + -0.06253673136234283, + 0.0036580259911715984, + 0.019263042137026787, + 0.01810435578227043, + -0.015147206373512745, + 0.05184905603528023, + 0.04205708205699921, + 0.04263954982161522, + -0.009001968428492546, + 0.017677994444966316, + 0.014521765522658825, + 0.07041196525096893, + -0.10372549295425415, + -0.013739120215177536, + -0.011662843637168407, + 0.018873117864131927, + -0.06315627694129944, + -0.09071630984544754, + -0.08174023032188416, + -0.003382359864190221, + 0.10721932351589203, + 0.0022606535349041224, + -0.05200747027993202, + -0.09100181609392166, + 0.10980379581451416, + -0.014826640486717224, + 0.09845677763223648, + -0.00668316287919879, + 0.033632997423410416, + 0.023187879472970963, + 0.017799871042370796, + 0.007982995361089706, + 0.03500041738152504, + 0.004611545242369175, + 0.05025497451424599, + 0.03803293779492378, + 0.04399706423282623, + 0.003721241606399417, + -0.01541344728320837, + -0.006600570399314165, + -0.006067533046007156, + -0.03885265067219734, + 0.05574377626180649, + 0.04844426363706589, + -0.008892186917364597, + -0.006130709312856197, + -0.07678588479757309, + -0.027368633076548576, + -0.07039053738117218, + 0.03501831367611885, + 0.0447019562125206, + 0.1012500673532486, + -0.06967642158269882, + -0.10316886007785797, + -0.02882041595876217, + -0.062190741300582886, + -0.03990240767598152, + -0.014668702147901058, + -0.04287935420870781, + 0.00740598700940609, + 0.012050752528011799, + -0.06920615583658218, + 0.06954944133758545, + -0.07145705074071884, + -0.10629881173372269, + 0.1325240135192871, + 0.03940753638744354, + 0.03344190493226051, + 0.05973530560731888, + -0.045337971299886703, + 0.012956983409821987, + 0.0488237589597702, + -0.05459630489349365, + -0.08060824871063232, + -0.018127869814634323, + -0.018839415162801743, + -0.027482666075229645, + -0.16013292968273163, + -0.019100427627563477, + -0.049393028020858765, + -0.04867624118924141, + -0.04320579767227173, + -0.08219457417726517, + -0.016678528860211372, + 0.08498938381671906, + 0.0013323932653293014, + 0.07633267343044281, + -0.027957795187830925, + -0.04135260730981827, + -0.04593952000141144, + -0.06503303349018097, + 0.03219413757324219, + -0.04179114103317261, + -3.100112149640418e-33, + 0.04060422256588936, + 0.02548825368285179, + -0.008654552511870861, + 0.02355309948325157, + 0.029810866340994835, + 0.02303151786327362, + -0.021581850945949554, + -0.06463341414928436, + -0.08361206948757172, + -0.012163063511252403, + 0.11522592604160309, + 0.054147738963365555, + -0.07176494598388672, + 0.09283768385648727, + 0.07452764362096786, + -0.13335104286670685, + 0.09613049030303955, + 0.13868451118469238, + -0.12539023160934448, + -0.05902693420648575, + -0.05556643381714821, + 0.06860900670289993, + -0.05719446390867233, + -0.04447381943464279, + -0.0012550937244668603, + -0.020663462579250336, + -0.014171425253152847, + -0.019989224150776863, + -0.11412292718887329, + 0.019281772896647453, + -0.036206476390361786, + 0.07430783659219742, + -0.006631799973547459, + -0.035955846309661865, + -0.002891837852075696, + -0.03898922726511955, + -0.09413933753967285, + -0.04399552941322327, + 0.00930895283818245, + -0.06876513361930847, + -0.022608371451497078, + -0.03361096978187561, + -0.037313733249902725, + -0.03453001752495766, + 0.005969446152448654, + 0.11311451345682144, + -0.07106271386146545, + -0.020998982712626457, + 0.006061422638595104, + -0.06074502319097519, + 0.043854646384716034, + 0.042398419231176376, + -0.023875508457422256, + -0.04341192543506622, + 0.016740981489419937, + -0.06281111389398575, + -0.045398276299238205, + 0.10632749646902084, + -0.013918578624725342, + 0.02616746723651886, + -0.05016189068555832, + -0.017641417682170868, + 0.01942683383822441, + 0.012560172006487846, + 0.0041469791904091835, + 0.026762330904603004, + -0.08673018962144852, + 0.016670992597937584, + 0.09063886851072311, + 0.03452528268098831, + -0.011539184488356113, + 0.05946392938494682, + 0.05903094634413719, + 0.024190086871385574, + -0.006062598899006844, + 0.01542691234499216, + -0.002551139099523425, + -0.08184628933668137, + 0.026014072820544243, + -0.08357541263103485, + -0.0975104495882988, + 0.017293395474553108, + -0.04217839241027832, + 0.007776874117553234, + 0.038283489644527435, + -0.08937595039606094, + 0.06395188719034195, + -0.008108708076179028, + -0.02613307535648346, + 0.04134289175271988, + -0.0985587015748024, + 0.05270003899931908, + 4.857400563196279e-05, + -0.018155746161937714, + -0.06967028975486755, + 2.246282231111301e-34, + -0.020845990628004074, + 0.06750835478305817, + -0.07212270051240921, + 0.0017725613433867693, + -0.11341748386621475, + -0.005039811134338379, + 0.0030765095725655556, + 0.02444765344262123, + 0.013280072249472141, + -0.019615095108747482, + 0.02589426375925541, + 0.03557799756526947, + -0.015830669552087784, + -0.05405406281352043, + 0.028763853013515472, + 0.012225866317749023, + 0.04935804754495621, + -0.007463947404175997, + -0.024024054408073425, + -0.0413982979953289, + 0.05401090905070305, + -0.0333029180765152, + -0.015619011595845222, + 0.06364967674016953, + 0.036360081285238266, + 0.002948021050542593, + 0.06542418897151947, + 0.028926610946655273, + -0.005974391475319862, + -0.04711831733584404, + 0.02837456576526165, + -0.02318946085870266, + 0.018792789429426193, + 0.04916635900735855, + -0.026449216529726982, + -0.032634079456329346, + 0.010822280310094357, + -0.05232684314250946, + 0.05461960658431053, + 0.031121570616960526, + 0.006244253367185593, + 0.03516611456871033, + 0.06822776794433594, + 0.0015692035667598248, + 0.038831621408462524, + 0.056777097284793854, + 0.03104245290160179, + -0.020912133157253265, + -0.03889653459191322, + -0.0009476381237618625, + 0.018821198493242264, + -0.02563071809709072, + -0.0355929471552372, + -0.047259993851184845, + -0.08574753999710083, + -0.014607001096010208, + 0.042911726981401443, + 0.05629822984337807, + 0.034409116953611374, + -0.006469890009611845, + -0.027719147503376007, + -0.07278875261545181, + 0.012355816550552845, + 0.014239423908293247, + -0.02411724627017975, + 0.007831095717847347, + 0.03011215664446354, + -0.08245470374822617, + -0.01444179192185402, + -0.00491855014115572, + 0.10566303133964539, + 0.0933477059006691, + 0.001220340491272509, + 0.007594889961183071, + 0.022665079683065414, + -0.08952752500772476, + 0.06851579248905182, + -0.0019136875635012984, + -0.0036265943199396133, + -0.008426115848124027, + -0.055992718786001205, + -0.011580556631088257, + 0.04398701339960098, + 0.06096421927213669, + 0.0013694001827389002, + 0.05391358211636543, + -0.02732275426387787, + 0.03917216137051582, + 0.02173752710223198, + 0.03750629350543022, + -0.024381054565310478, + 0.016463523730635643, + 0.039331842213869095, + -0.05442944914102554, + -0.04297584667801857, + -2.629984940938357e-08, + -0.07522779703140259, + 0.017268547788262367, + -0.045999784022569656, + 0.0026508388109505177, + 0.03332909196615219, + -0.050244711339473724, + 0.03984258696436882, + 0.03455425798892975, + -0.03553717955946922, + -0.06730997562408447, + 0.053223658353090286, + 0.07846525311470032, + -0.04451083019375801, + -0.01525258831679821, + 0.13251498341560364, + 0.00572648411616683, + -0.06338176131248474, + 0.015201202593743801, + -0.029163889586925507, + -0.05683836340904236, + -0.050273723900318146, + 0.060253843665122986, + 0.039280544966459274, + 0.05724473297595978, + -0.05028478428721428, + -0.07959393411874771, + 0.026244396343827248, + 0.11646617949008942, + 0.0792868509888649, + 0.04599827527999878, + 0.06884843111038208, + 0.05520796403288841, + 0.05054633319377899, + 0.05115736648440361, + -0.04658055678009987, + 0.0031975549645721912, + -0.06029748171567917, + 0.07086396962404251, + -0.011364506557583809, + 0.07977648079395294, + -0.0728505328297615, + -0.015683064237236977, + -0.013645063154399395, + -0.015684770420193672, + -0.03748961538076401, + 0.01580190658569336, + 0.03708435967564583, + 0.021633684635162354, + -0.06337524205446243, + -0.11205990612506866, + -0.03420814126729965, + 0.08121879398822784, + 0.005655277520418167, + 0.041526276618242264, + -0.02067326009273529, + 0.04013825207948685, + -0.020831916481256485, + 0.01035361085087061, + -0.059673793613910675, + 0.01262485422194004, + 0.048985693603754044, + 0.033050984144210815, + -0.008112423121929169, + 0.05923432111740112 + ], + "arrows-in-line-horizontal-bold||*updated*,directional,pointer,pointing,arrowhead,close,center,align": [ + -0.008243453688919544, + -0.04789191484451294, + -0.06395602226257324, + 0.004715281538665295, + -0.008961929008364677, + -0.03215555101633072, + 0.023132897913455963, + -0.01713721826672554, + -0.003253985894843936, + 0.03442880138754845, + 0.02906966395676136, + 0.07888507843017578, + 0.013865876942873001, + -0.03798361495137215, + -0.04986964166164398, + 0.06919081509113312, + -0.09160946309566498, + -0.001457141013815999, + 0.007293226663023233, + 0.021837962791323662, + -0.05605326220393181, + -0.015154176391661167, + -0.04756246507167816, + 0.05957615375518799, + -0.045552488416433334, + 0.07968734204769135, + 0.05205749347805977, + 0.035666510462760925, + -0.03425617143511772, + -0.0973777323961258, + -0.07713610678911209, + -0.029989296570420265, + 0.009346945211291313, + 0.03262357413768768, + -0.05705700069665909, + -0.02484097331762314, + 0.025927115231752396, + 0.006623555906116962, + -0.01515262108296156, + 0.041449591517448425, + 0.04114660248160362, + -0.014385011978447437, + -0.010622463189065456, + -0.0014737489400431514, + 0.021720511838793755, + 0.057797711342573166, + -0.12785625457763672, + -0.03742094710469246, + 0.05800671875476837, + 0.07849067449569702, + -0.12238974869251251, + -0.10026923567056656, + -0.07127801328897476, + 0.004281907342374325, + 0.09165876358747482, + 0.021563779562711716, + 0.005604968871921301, + -0.03982766345143318, + 0.10830830037593842, + -0.03778637573122978, + 0.11359334737062454, + 0.009905568324029446, + 0.06386681646108627, + 0.02778049372136593, + 0.013613875024020672, + -0.006562721915543079, + -0.0045863366685807705, + 0.023303700610995293, + 0.031151920557022095, + -0.009660597890615463, + -0.002298255916684866, + -0.019513487815856934, + -0.03853994607925415, + -0.058412324637174606, + -0.010456991381943226, + -0.021545687690377235, + 0.012592105194926262, + 0.061356816440820694, + -0.014431752264499664, + -0.04080544412136078, + -0.04611249268054962, + -0.0015231900615617633, + -0.04789593443274498, + 0.042601458728313446, + 0.03850005939602852, + 0.10033509880304337, + -0.06754054874181747, + -0.08451873064041138, + -0.01703951507806778, + -0.036543458700180054, + -0.014679777435958385, + -0.005692361854016781, + -0.03263207897543907, + -0.02107098698616028, + 0.0017980647971853614, + -0.016535580158233643, + 0.0732342004776001, + -0.05734453722834587, + -0.13080517947673798, + 0.09919855743646622, + 0.03677385300397873, + 0.019722051918506622, + -0.00034931523259729147, + -0.05234323814511299, + 0.0038770840037614107, + 0.02081316150724888, + -0.046799976378679276, + -0.030112143605947495, + -0.05089177191257477, + -0.009068775922060013, + -0.06868663430213928, + -0.14418518543243408, + -0.06300702691078186, + -0.0715893805027008, + -0.05033347010612488, + -0.024562761187553406, + -0.09454986453056335, + 0.02656920813024044, + 0.09883153438568115, + -0.0050604273565113544, + 0.06228017434477806, + -0.01901903934776783, + -0.055158089846372604, + -0.0339181013405323, + -0.06232823058962822, + 0.03238888829946518, + -0.004596926737576723, + -4.667123995787269e-33, + 0.023793606087565422, + 0.002193148247897625, + 0.01843307912349701, + 0.05613977834582329, + -0.0260762982070446, + 0.00994066335260868, + -0.05474507808685303, + -0.03750300779938698, + -0.04461994394659996, + 0.0024407675955444574, + 0.1345268040895462, + -0.03266351670026779, + -0.05240035802125931, + 0.048491980880498886, + 0.034838054329156876, + -0.13437998294830322, + 0.03239627555012703, + 0.04583410173654556, + -0.12721621990203857, + 0.0018942664610221982, + -0.034242771565914154, + 0.03806329146027565, + -0.08019779622554779, + -0.05501208081841469, + 0.008141935802996159, + 0.0242934413254261, + -0.01910916529595852, + 0.011558747850358486, + -0.10472947359085083, + 0.010582621209323406, + 0.02402670867741108, + 0.054234061390161514, + 0.040289755910634995, + -0.03783047944307327, + -0.03409966826438904, + 0.014987033791840076, + -0.09974253922700882, + -0.06570124626159668, + -0.007226667366921902, + -0.04857033118605614, + -0.05132559686899185, + -0.0412101186811924, + -0.0590302050113678, + -0.03961437940597534, + 0.03040986694395542, + 0.13075104355812073, + -0.10226686298847198, + -0.0535806305706501, + 0.04598420113325119, + -0.024658428505063057, + -0.0093957195058465, + 0.061820048838853836, + -0.007973112165927887, + -0.03785985708236694, + 0.01042708195745945, + 0.005370745435357094, + -0.04670543596148491, + 0.1353762447834015, + -0.017545128241181374, + 0.0018323756521567702, + 0.008775598369538784, + -0.012358191423118114, + 0.0005552440998144448, + -0.029199866577982903, + -0.03346549719572067, + 0.02621937356889248, + -0.1031322106719017, + 0.03977490961551666, + 0.13060076534748077, + 0.024976622313261032, + -0.015213368460536003, + 0.0018547861836850643, + 0.04149424284696579, + 0.07558031380176544, + -0.0360066294670105, + 0.006724419537931681, + -0.04273006692528725, + -0.04460301995277405, + 0.08372104167938232, + -0.09347409009933472, + -0.05323100835084915, + 0.011364232748746872, + -0.04305293411016464, + 0.00670213857665658, + 0.05729033425450325, + -0.08351223915815353, + 0.009210903197526932, + 0.01913643442094326, + -0.02082662284374237, + 0.09595814347267151, + -0.04453132301568985, + 0.033880606293678284, + -0.01665099337697029, + 0.012693937867879868, + -0.07659083604812622, + 4.54756887346895e-34, + 0.011487969197332859, + 0.07779084891080856, + -0.07749120891094208, + 0.01902063935995102, + -0.11624171584844589, + 0.0556638166308403, + 0.035982903093099594, + -0.02289743348956108, + 0.03538472577929497, + 0.07692863047122955, + 0.0560818612575531, + 0.03537352383136749, + -0.0810740739107132, + -0.028836112469434738, + 0.06543070077896118, + 0.017300650477409363, + 0.068668894469738, + 0.06752218306064606, + 0.0006905941991135478, + -0.05505949631333351, + 0.04051188752055168, + -0.0532352551817894, + 0.0014334606239572167, + 0.035702869296073914, + 0.01684531196951866, + -0.005847385618835688, + 0.049883753061294556, + 0.00503175612539053, + -0.01801975816488266, + -0.021771332249045372, + 0.05000428482890129, + -0.028809722512960434, + 0.032396454364061356, + 0.026300283148884773, + -0.040443308651447296, + -0.056545473635196686, + 0.011891300790011883, + -0.06630858778953552, + 0.06346508115530014, + 0.017916547134518623, + 0.02438768371939659, + 0.04754079505801201, + 0.10889793187379837, + -0.0006053115939721465, + 0.0305955708026886, + 0.0678715929389, + -0.020036747679114342, + 0.01737404055893421, + -0.03756409138441086, + 0.0366438552737236, + 0.00412830151617527, + -8.165524195646867e-05, + -0.003413426224142313, + -0.04758934676647186, + -0.07660982757806778, + -0.006727238651365042, + 0.03974435478448868, + 0.07591763138771057, + -0.02139575034379959, + -0.018158189952373505, + -0.025590647011995316, + -0.017333893105387688, + 0.006636396050453186, + 0.02570650540292263, + -0.01142264436930418, + 0.028743000701069832, + 0.0437636598944664, + -0.09540654718875885, + 0.03166637942194939, + -0.006225609686225653, + 0.062096212059259415, + 0.05753638222813606, + -0.009040823206305504, + -0.013621936552226543, + 0.043148644268512726, + -0.09858487546443939, + 0.0663938820362091, + 0.015856588259339333, + 0.02131045050919056, + -0.041645217686891556, + -0.05718414857983589, + 0.0007127173012122512, + 0.017367400228977203, + 0.06747419387102127, + -0.03179436922073364, + 0.03971760347485542, + -0.025607237592339516, + 0.009750846773386002, + 0.03439122438430786, + -0.021317921578884125, + -0.04284915328025818, + -0.0011977736139670014, + -0.023470282554626465, + -0.04110139235854149, + -0.03890574723482132, + -2.8117533190652466e-08, + -0.0504191592335701, + -0.024187687784433365, + -0.0047828019596636295, + 0.00992882065474987, + 0.03944087773561478, + -0.012023274786770344, + -0.000869995797984302, + 0.00338041502982378, + -0.004190976265817881, + -0.055687353014945984, + 0.06335634738206863, + 0.10399924963712692, + -0.056270673871040344, + -0.043123435229063034, + 0.10552496463060379, + 0.033075232058763504, + -0.07293732464313507, + 0.038418084383010864, + -0.00914886686950922, + -0.06854379922151566, + -0.014414693228900433, + 0.03497110307216644, + 0.024717804044485092, + 0.06991274654865265, + 0.010121311992406845, + -0.015132327564060688, + -0.003980678040534258, + 0.13598591089248657, + 0.05650684982538223, + 0.017655448988080025, + 0.05722199007868767, + 0.004637506790459156, + 0.040572259575128555, + -0.0033702983055263758, + -0.01898583397269249, + -0.05112311244010925, + -0.03125151991844177, + 0.05649197846651077, + 0.031717631965875626, + 0.0809103474020958, + -0.03883856534957886, + 0.0066164350137114525, + 0.015108470804989338, + -0.025330353528261185, + -0.01259660441428423, + 0.038077156990766525, + 0.01332275103777647, + 0.04717631638050079, + -0.11281418055295944, + -0.10638301819562912, + -0.043638911098241806, + 0.07525168359279633, + 0.036310892552137375, + 0.04654533788561821, + -0.04960331693291664, + 0.027804318815469742, + 0.022375525906682014, + -0.02335449866950512, + -0.05117301642894745, + -0.005375872366130352, + 0.08907776325941086, + 0.08167356997728348, + 0.020211735740303993, + 0.05586118996143341 + ], + "arrows-in-line-vertical-bold||*updated*,directional,pointer,pointing,arrowhead,close,center,align": [ + -0.016702791675925255, + -0.0433981753885746, + -0.06831111013889313, + 0.0008314177393913269, + -0.013255434110760689, + -0.03797178715467453, + 0.008516301400959492, + 0.002899991348385811, + -0.00057967659085989, + 0.03412165492773056, + 0.025735434144735336, + 0.09139245003461838, + 0.01736045442521572, + -0.05047977715730667, + -0.04475867748260498, + 0.0859345942735672, + -0.07920077443122864, + 0.008990934118628502, + -0.007064539473503828, + 0.012986749410629272, + -0.06590619683265686, + -0.01233657356351614, + -0.03756231814622879, + 0.054552409797906876, + -0.03429682180285454, + 0.0803477093577385, + 0.055421460419893265, + 0.03804202750325203, + -0.023295342922210693, + -0.0887780636548996, + -0.07686774432659149, + -0.027035996317863464, + 0.023814834654331207, + 0.03577321767807007, + -0.05453642085194588, + -0.025068890303373337, + 0.034708261489868164, + 0.008672904223203659, + -0.025913182646036148, + 0.03233581781387329, + 0.05071733519434929, + -0.03287152945995331, + -0.011087066493928432, + -0.005482358392328024, + 0.015273883938789368, + 0.06958747655153275, + -0.10920794308185577, + -0.04526509344577789, + 0.04499664530158043, + 0.07750649005174637, + -0.11199521273374557, + -0.11090188473463058, + -0.07522321492433548, + -0.002710222965106368, + 0.10077489912509918, + 0.02888781763613224, + 0.0031767936889082193, + -0.052738286554813385, + 0.11301815509796143, + -0.036819037050008774, + 0.116648368537426, + 0.017378440126776695, + 0.04262397810816765, + 0.03582053631544113, + 0.011481148190796375, + 0.0008619143627583981, + -0.01183065865188837, + 0.03619854897260666, + 0.029741868376731873, + -0.007863819599151611, + 0.0034492495469748974, + -0.014787506312131882, + -0.03484385833144188, + -0.052624382078647614, + -0.01294947974383831, + -0.028189420700073242, + 0.014599604532122612, + 0.05156353861093521, + -0.0005631133099086583, + -0.041110340505838394, + -0.03993842005729675, + -0.012043341994285583, + -0.06193883344531059, + 0.0509270541369915, + 0.03203360363841057, + 0.09687291085720062, + -0.058153364807367325, + -0.0884484276175499, + -0.02705821394920349, + -0.03940248116850853, + -0.004985386971384287, + -0.01253554318100214, + -0.03634527325630188, + -0.023287441581487656, + -0.0006696003838442266, + -0.02214890345931053, + 0.08111507445573807, + -0.08475072681903839, + -0.1239900141954422, + 0.10436123609542847, + 0.030459925532341003, + 0.013438534922897816, + 0.00627325801178813, + -0.038752906024456024, + -0.011491859331727028, + 0.012359724380075932, + -0.03941192105412483, + -0.030229510739445686, + -0.05853325128555298, + 0.0010987571440637112, + -0.06061068922281265, + -0.14619575440883636, + -0.04945852607488632, + -0.06764903664588928, + -0.056733161211013794, + -0.02073177881538868, + -0.10077796876430511, + 0.011197266168892384, + 0.09341777861118317, + -0.012111229822039604, + 0.05395624041557312, + -0.008788170292973518, + -0.05006782338023186, + -0.02907732129096985, + -0.05904345214366913, + 0.034540336579084396, + 0.0035001374781131744, + -4.5612424441629056e-33, + 0.03353731706738472, + 0.01362277939915657, + 0.02650921791791916, + 0.06186579167842865, + -0.011458219960331917, + 0.01997492089867592, + -0.06025102734565735, + -0.04362726956605911, + -0.04541458189487457, + 0.030329037457704544, + 0.12476138770580292, + -0.02857990562915802, + -0.05630643665790558, + 0.0672353208065033, + 0.033020924776792526, + -0.13227106630802155, + 0.04010293632745743, + 0.036212801933288574, + -0.13033032417297363, + -0.008139241486787796, + -0.027624458074569702, + 0.03004535846412182, + -0.08337929844856262, + -0.04394106566905975, + -0.0024068441707640886, + 0.01595422439277172, + -0.009950034320354462, + 0.009623025543987751, + -0.11885171383619308, + 0.014662734232842922, + 0.012691407464444637, + 0.05822711065411568, + 0.03713890165090561, + -0.04812154173851013, + -0.03910539671778679, + 0.026206526905298233, + -0.10184048116207123, + -0.06905702501535416, + -0.003289582673460245, + -0.043968480080366135, + -0.053471460938453674, + -0.04254031926393509, + -0.05265577509999275, + -0.034326497465372086, + 0.03567473962903023, + 0.12139106541872025, + -0.10778069496154785, + -0.06296054273843765, + 0.042979300022125244, + -0.01733388938009739, + -0.006585931871086359, + 0.05954165384173393, + -0.00923625472933054, + -0.03632908686995506, + 0.01644216664135456, + 0.0011954520596191287, + -0.051689501851797104, + 0.12997229397296906, + -0.02329854853451252, + 0.00586871150881052, + 0.00893475953489542, + -0.013629759661853313, + -0.01771542988717556, + -0.02916903607547283, + -0.033886320888996124, + 0.029859649017453194, + -0.10185139626264572, + 0.047722432762384415, + 0.13148075342178345, + 0.030055725947022438, + -0.0031751650385558605, + 0.0018612504936754704, + 0.03548174351453781, + 0.058224793523550034, + -0.043897707015275955, + 0.009872444905340672, + -0.035035956650972366, + -0.04721953719854355, + 0.08831192553043365, + -0.08256271481513977, + -0.04898492991924286, + 0.010011996142566204, + -0.03975788876414299, + 0.004032684490084648, + 0.05709460377693176, + -0.07776625454425812, + 0.009706713259220123, + 0.015287807211279869, + -0.014512185007333755, + 0.10570225119590759, + -0.05072392150759697, + 0.023443765938282013, + -0.01788962073624134, + 0.008026662282645702, + -0.07363691180944443, + 5.901300769477032e-34, + 0.012809228152036667, + 0.08409077674150467, + -0.069976307451725, + 0.021925821900367737, + -0.11739594489336014, + 0.049619827419519424, + 0.02661694958806038, + -0.0182278361171484, + 0.01649579405784607, + 0.06803739070892334, + 0.04733141139149666, + 0.04526672884821892, + -0.05522580072283745, + -0.029544414952397346, + 0.07919195294380188, + 0.01544656790792942, + 0.040641430765390396, + 0.05716116353869438, + 0.007666362915188074, + -0.052554238587617874, + 0.04612071067094803, + -0.046604737639427185, + 0.008955700322985649, + 0.03761029988527298, + 0.02282346971333027, + -0.02047129161655903, + 0.05394045636057854, + 0.009307649917900562, + -0.014707759022712708, + -0.016641391441226006, + 0.06168157979846001, + -0.034224361181259155, + 0.026607444509863853, + 0.027151377871632576, + -0.04083024710416794, + -0.0544816330075264, + 0.02348075434565544, + -0.06670232862234116, + 0.05153309181332588, + 0.004493200220167637, + 0.019745660945773125, + 0.04965345561504364, + 0.10267584025859833, + -0.007212110795080662, + 0.02233431674540043, + 0.08051662892103195, + -0.023590970784425735, + 0.004440451040863991, + -0.026248041540384293, + 0.01699865236878395, + 0.0024373256601393223, + -0.01084648072719574, + 0.0031055661384016275, + -0.031700558960437775, + -0.06859813630580902, + -0.011416634544730186, + 0.05408201366662979, + 0.07321160286664963, + -0.020462555810809135, + -0.028944093734025955, + -0.019516073167324066, + -0.03340030461549759, + 0.002362537896260619, + 0.021064482629299164, + -0.00797371007502079, + 0.04427041485905647, + 0.04856686666607857, + -0.0759849026799202, + 0.01172459963709116, + -0.002125707920640707, + 0.043313998728990555, + 0.055115025490522385, + 0.0007015731534920633, + -0.01656547375023365, + 0.0422358363866806, + -0.0960257425904274, + 0.0742347240447998, + 0.029112376272678375, + 0.026528816670179367, + -0.031812380999326706, + -0.06368663907051086, + 6.585375376744196e-05, + 0.007811236660927534, + 0.0675685852766037, + -0.04995386675000191, + 0.04586305096745491, + -0.02426154538989067, + 0.01840880885720253, + 0.04309224709868431, + -0.029774436727166176, + -0.06252418458461761, + 0.004416303709149361, + -0.042585570365190506, + -0.04591355472803116, + -0.028960026800632477, + -2.813736266205069e-08, + -0.0616295263171196, + -0.02820868417620659, + -0.004150974564254284, + 0.010828307829797268, + 0.03389834240078926, + -0.010940838605165482, + 0.0008109426707960665, + 0.014598369598388672, + 0.0039082299917936325, + -0.05517752468585968, + 0.06058632582426071, + 0.10563842952251434, + -0.05357701703906059, + -0.0532258003950119, + 0.1127261146903038, + 0.04029524326324463, + -0.07004941254854202, + 0.043609846383333206, + -0.008095717057585716, + -0.06500864028930664, + -0.011392508633434772, + 0.04995548352599144, + 0.04539074748754501, + 0.07385765016078949, + 0.006450701504945755, + -0.01847340539097786, + -0.015055221505463123, + 0.1206435114145279, + 0.06198959797620773, + 0.018304849043488503, + 0.0639599934220314, + 0.006782665848731995, + 0.0548439621925354, + -0.018400760367512703, + -0.025017837062478065, + -0.03963262960314751, + -0.0315389521420002, + 0.04837256669998169, + 0.02645763009786606, + 0.0702967643737793, + -0.03786603733897209, + 0.005181447137147188, + 0.02062639780342579, + -0.027431242167949677, + -0.018370144069194794, + 0.03830453380942345, + 0.022083038464188576, + 0.0529027096927166, + -0.11039546132087708, + -0.10726466029882431, + -0.05935923755168915, + 0.07897652685642242, + 0.04684232547879219, + 0.05817406252026558, + -0.05792982876300812, + 0.01707187294960022, + 0.012631476856768131, + -0.017709527164697647, + -0.0550144799053669, + -0.0075677079148590565, + 0.09542583674192429, + 0.07397929579019547, + 0.012137346900999546, + 0.041989803314208984 + ], + "arrows-in-simple-bold||*updated*,directional,pointer,pointing,arrowhead,collapse,minimize,resize": [ + 0.0430559478700161, + -0.05270415544509888, + -0.012382625602185726, + 0.06195066124200821, + 0.016823643818497658, + -0.026959862560033798, + 0.031137794256210327, + 0.008903204463422298, + -0.039944205433130264, + 0.029130462557077408, + 0.003116702428087592, + 0.11038225144147873, + 0.0207036342471838, + -0.02153639681637287, + -0.024510608986020088, + 0.05969110131263733, + -0.043338607996702194, + 0.04142312705516815, + -0.0032378407195210457, + -0.011669508181512356, + -0.07027751207351685, + -0.021689461544156075, + -0.061539117246866226, + 0.05016437545418739, + 0.0013678257819265127, + 0.03215714544057846, + 0.007453697267919779, + 0.04388504475355148, + 0.013290438801050186, + -0.06835944205522537, + -0.03336568549275398, + -0.0368027426302433, + 0.017623383551836014, + 0.02534075267612934, + -0.04988500103354454, + 0.004502670373767614, + 0.02183101326227188, + 0.02706746570765972, + -0.05229396000504494, + 0.0537039116024971, + 0.03727858513593674, + 0.04767211526632309, + -0.00987123604863882, + -0.0021385191939771175, + 0.004690791014581919, + 0.0413651280105114, + -0.09634186327457428, + -0.022977342829108238, + 0.014591607265174389, + 0.006832638289779425, + -0.03962444141507149, + -0.10667794197797775, + -0.08115950971841812, + -0.027276020497083664, + 0.10057835280895233, + -0.011514045298099518, + -0.051681410521268845, + -0.04170909896492958, + 0.0929780825972557, + -0.011867651715874672, + 0.10123725980520248, + -0.008528069593012333, + 0.055161260068416595, + 0.01129514817148447, + 0.00827830284833908, + 0.008207660168409348, + 0.013835703954100609, + -0.019285190850496292, + 0.02626132033765316, + 0.01696811616420746, + 0.0271401796489954, + -0.007549201603978872, + -0.03774989768862724, + -0.006337640341371298, + -0.0029221721924841404, + -0.0558079369366169, + 0.03989972174167633, + 0.06316186487674713, + -0.024376656860113144, + 0.0047756945714354515, + -0.06227178871631622, + -0.02684435248374939, + -0.0809977576136589, + 0.0362723283469677, + 0.037703532725572586, + 0.08842413127422333, + -0.0671495795249939, + -0.0895485207438469, + -0.011581561528146267, + -0.05907708406448364, + -0.025504814460873604, + 0.003471778705716133, + -0.055093541741371155, + 0.015454387292265892, + 0.016720613464713097, + -0.06565055251121521, + 0.08786585927009583, + -0.06547992676496506, + -0.14453774690628052, + 0.11649203300476074, + 0.044005922973155975, + 0.031784143298864365, + 0.06403958797454834, + -0.054616957902908325, + 0.01985401287674904, + 0.05240461975336075, + -0.043351348489522934, + -0.06302537769079208, + -0.03479176387190819, + -0.020052699372172356, + -0.04789864644408226, + -0.16236114501953125, + -0.010101031512022018, + -0.040360450744628906, + -0.05183735489845276, + -0.031428974121809006, + -0.09829780459403992, + -0.02102217823266983, + 0.09512980282306671, + 0.01522703655064106, + 0.07085319608449936, + -0.020670369267463684, + -0.04054488614201546, + -0.053447332233190536, + -0.060580261051654816, + 0.04017440229654312, + -0.035304438322782516, + -3.490012238206647e-33, + 0.029404258355498314, + 0.05490059405565262, + -0.02443612366914749, + 0.04086571931838989, + 0.007126761134713888, + 0.012342664413154125, + -0.005346335470676422, + -0.060160089284181595, + -0.05872552841901779, + -0.02767978236079216, + 0.14006410539150238, + 0.012304672040045261, + -0.07246500253677368, + 0.065000019967556, + 0.05408729985356331, + -0.12081626802682877, + 0.07642240822315216, + 0.12911075353622437, + -0.11627105623483658, + -0.04816034063696861, + -0.04475768283009529, + 0.07615052163600922, + -0.08109482377767563, + -0.05781524255871773, + -0.0034128630068153143, + -0.007874839007854462, + -0.009306322783231735, + 0.008782761171460152, + -0.11880940198898315, + 0.010317182168364525, + -0.013270308263599873, + 0.06877732276916504, + -0.0004224158765282482, + -0.017777806147933006, + -0.03737596422433853, + -0.012786133214831352, + -0.09007342159748077, + -0.04610888287425041, + 0.00021825969452038407, + -0.045256517827510834, + -0.039790429174900055, + -0.01602908782660961, + -0.02057906985282898, + -0.04536193609237671, + -0.0029316700529307127, + 0.1256171613931656, + -0.0868341475725174, + -0.0390649288892746, + 0.014257239177823067, + -0.057191647589206696, + 0.020224696025252342, + 0.07336143404245377, + -0.01225809846073389, + -0.03153297305107117, + 0.023975934833288193, + -0.011955664493143559, + -0.044454190880060196, + 0.09244955331087112, + -0.005314479116350412, + 0.0020129214972257614, + -0.021950390189886093, + -0.018554752692580223, + -0.005281839054077864, + 0.009186327457427979, + -0.017785385251045227, + 0.06000189110636711, + -0.07732102274894714, + 0.030132615938782692, + 0.0675591230392456, + 0.02709386870265007, + -0.005031930282711983, + 0.05716728791594505, + 0.055179573595523834, + 0.017391877248883247, + 0.023973943665623665, + 0.017575642094016075, + 0.03708953410387039, + -0.08825727552175522, + 0.05669933184981346, + -0.1041635274887085, + -0.08417027443647385, + 0.009830954484641552, + -0.04768867418169975, + 0.043631263077259064, + 0.016034701839089394, + -0.09168863296508789, + 0.0354100801050663, + 0.007693842984735966, + -0.04018261283636093, + 0.06743689626455307, + -0.08067434281110764, + 0.034746717661619186, + -0.031097766011953354, + -0.01062111184000969, + -0.06488709151744843, + 7.554084397641555e-34, + 0.009262548759579659, + 0.07919725775718689, + -0.09429734945297241, + 0.002142737852409482, + -0.11627662926912308, + 0.031912896782159805, + 0.011467094533145428, + 0.01902926340699196, + 0.009147390723228455, + 0.0029870993457734585, + 0.039012644439935684, + 0.023374179378151894, + -0.037390463054180145, + -0.040659308433532715, + 0.03207581117749214, + 0.016473857685923576, + 0.053034983575344086, + 0.04248148575425148, + -0.002043006010353565, + -0.03026239387691021, + 0.0574539490044117, + -0.011585826054215431, + -0.02278732880949974, + 0.005926330108195543, + 0.03144538030028343, + 0.0011623045429587364, + 0.026754174381494522, + 0.04437952861189842, + -0.013807768933475018, + -0.05135276913642883, + 0.024372229352593422, + -0.025439096614718437, + 0.024729257449507713, + 0.035965848714113235, + -0.04095872491598129, + -0.018070682883262634, + -0.022413620725274086, + -0.09938406944274902, + 0.07474049925804138, + 0.027096614241600037, + 0.02463774010539055, + 0.04733967036008835, + 0.09255930036306381, + 0.01698523759841919, + 0.044023629277944565, + 0.05422357842326164, + 0.03090258128941059, + -0.025594890117645264, + -0.04086120054125786, + -0.008821246214210987, + 0.006673047784715891, + -0.037907108664512634, + -0.02361920103430748, + -0.03897499665617943, + -0.08375517278909683, + 0.004158587194979191, + 0.09275243431329727, + 0.06437740474939346, + -0.006340906955301762, + -0.009216553531587124, + -0.03613082692027092, + -0.04541695863008499, + -0.02375798113644123, + 0.018325425684452057, + -0.04564869776368141, + 0.013699390925467014, + 0.03405659273266792, + -0.09233370423316956, + 0.01223125122487545, + -0.016642408445477486, + 0.10352320224046707, + 0.07783696800470352, + 0.029802801087498665, + -0.029193725436925888, + 0.0496981106698513, + -0.08809289336204529, + 0.0642305314540863, + 0.016053635627031326, + 0.006713075563311577, + -0.049642063677310944, + -0.04053562507033348, + 0.0021635168232023716, + 0.034563254565000534, + 0.031069742515683174, + 0.021415110677480698, + 0.06486545503139496, + -0.06786354631185532, + 0.03598654642701149, + 0.023085983470082283, + 0.02782106027007103, + -0.046208083629608154, + 0.006598298903554678, + 0.056459493935108185, + -0.03882961720228195, + -0.050649307668209076, + -2.5983473150859027e-08, + -0.08078792691230774, + 0.017700549215078354, + -0.04997379705309868, + 0.0020099813118577003, + 0.03587014973163605, + -0.034400999546051025, + 0.007494073361158371, + 0.025941181927919388, + -0.03333808481693268, + -0.04054960235953331, + 0.04790482297539711, + 0.05679995194077492, + -0.05505215376615524, + 0.0007330556400120258, + 0.08839758485555649, + 0.057145506143569946, + -0.05732344835996628, + 0.019229039549827576, + -0.026628712192177773, + -0.06419821828603745, + -0.04743780568242073, + 0.057496678084135056, + 0.02737310901284218, + 0.0798834040760994, + -0.01529816072434187, + -0.044043153524398804, + 0.023761484771966934, + 0.14214104413986206, + 0.07663372159004211, + 0.038624584674835205, + 0.04503875598311424, + 0.02862006239593029, + 0.03128444403409958, + 0.05687331408262253, + -0.06145957484841347, + -0.00426064757630229, + -0.059853263199329376, + 0.07412870228290558, + -0.027826065197587013, + 0.06357873231172562, + -0.0499972403049469, + -0.008343509398400784, + -0.008080808445811272, + -0.016195321455597878, + -0.03630566596984863, + 0.049542393535375595, + 0.026631560176610947, + -0.002238027984276414, + -0.0926586389541626, + -0.1272241175174713, + -0.029922429472208023, + 0.055675920099020004, + 0.013953951187431812, + 0.04185396432876587, + -0.00729417847469449, + 0.036474622786045074, + 0.0018141791224479675, + 0.04341825097799301, + -0.07107850909233093, + 0.02820405550301075, + 0.07995442301034927, + 0.09355149418115616, + -0.003596319817006588, + 0.07291652262210846 + ], + "arrows-left-right-bold||*updated*,directional,pointer,pointing,arrowhead": [ + 0.02406453713774681, + -0.05170409008860588, + -0.04051133617758751, + 0.028043175116181374, + -0.0035142414271831512, + -0.034731704741716385, + 0.04612334072589874, + -0.04895434528589249, + -0.02492925338447094, + 0.019782792776823044, + 0.028344597667455673, + 0.0933571308851242, + 0.018542179837822914, + -0.02900719828903675, + -0.024564530700445175, + 0.05096481367945671, + -0.0670747384428978, + 0.028407251462340355, + 0.03736141324043274, + 0.030944662168622017, + -0.07451122999191284, + 0.025912253186106682, + -0.047937020659446716, + 0.05131758376955986, + -0.00994226336479187, + 0.06017518788576126, + 0.04983476176857948, + -0.003867637598887086, + -0.01298515684902668, + -0.0849345475435257, + -0.051089487969875336, + -0.035241272300481796, + -0.026302725076675415, + 0.02827949821949005, + -0.07828465104103088, + -0.03122669644653797, + 0.015724515542387962, + 0.013586445711553097, + -0.023738231509923935, + 0.06091953441500664, + 0.03655048459768295, + -0.008337038569152355, + -0.0009488745708949864, + -0.0018438302213326097, + 0.012574223801493645, + 0.07525423914194107, + -0.10821203887462616, + -0.006436316762119532, + 0.0369953028857708, + 0.061082739382982254, + -0.10065401345491409, + -0.11383380740880966, + -0.0859500989317894, + -0.012296305038034916, + 0.06357056647539139, + 0.052943792194128036, + -0.011103155091404915, + -0.02407083660364151, + 0.09388156235218048, + -0.012230311520397663, + 0.09029290825128555, + 0.00488226069137454, + 0.054598163813352585, + 0.0025237619411200285, + 0.009870331734418869, + -0.027922919020056725, + 0.0027188186068087816, + -0.0008765741367824376, + 0.03870692849159241, + 0.021737460047006607, + 0.03274965658783913, + 0.006043948233127594, + -0.012249250896275043, + -0.06938143819570541, + -0.01334424503147602, + -0.02532207779586315, + 0.048121128231287, + 0.07453999668359756, + -0.01609322428703308, + -0.06624598801136017, + -0.046966828405857086, + -0.025308268144726753, + -0.044499970972537994, + 0.014759502373635769, + 0.06234822794795036, + 0.07681406289339066, + -0.09931572526693344, + -0.045629192143678665, + -0.03461065888404846, + -0.013529184274375439, + -0.004933210089802742, + -0.016645340248942375, + -0.02986498363316059, + -0.037080708891153336, + 0.019953245297074318, + -0.0025669981259852648, + 0.06950311362743378, + -0.04898954555392265, + -0.11668696254491806, + 0.10549571365118027, + 0.03893497213721275, + 0.009034628979861736, + 0.002466430887579918, + -0.03522765263915062, + 0.013554968871176243, + 0.041365258395671844, + -0.04592563211917877, + -0.019062671810388565, + -0.067442886531353, + -0.012365307658910751, + -0.05426819249987602, + -0.15193504095077515, + -0.055784620344638824, + -0.0776563510298729, + -0.05589159205555916, + -0.03653885796666145, + -0.10884056240320206, + 0.016757512465119362, + 0.07980126887559891, + -0.007953197695314884, + 0.0441741868853569, + -0.04602861404418945, + -0.01916295848786831, + -0.03158833459019661, + -0.06509328633546829, + -0.008388945832848549, + -0.03982912749052048, + -3.9721460216422086e-33, + 0.04107964038848877, + 0.01445447001606226, + 0.007482127286493778, + 0.03367358446121216, + -0.013711548410356045, + 0.02317625656723976, + -0.0357004813849926, + -0.036129921674728394, + -0.058594223111867905, + -0.00791521929204464, + 0.1417088657617569, + 0.010231700725853443, + -0.052932340651750565, + 0.06734403222799301, + 0.03222183510661125, + -0.12762291729450226, + 0.03871650621294975, + 0.06780146807432175, + -0.11282352358102798, + 0.00038369197864085436, + -0.02631521411240101, + 0.05959828197956085, + -0.09858699142932892, + -0.06640505790710449, + -0.018833355978131294, + 0.007276257500052452, + -0.015378806740045547, + 0.013291398994624615, + -0.08512075245380402, + 0.009024525992572308, + 0.0187296811491251, + 0.07691379636526108, + 0.022392375394701958, + -0.05823684483766556, + -0.028517594560980797, + -0.018096789717674255, + -0.09843305498361588, + -0.06736307591199875, + -0.004753257613629103, + -0.04242419824004173, + -0.027370132505893707, + -0.02900630608201027, + -0.06584781408309937, + -0.03731669485569, + 0.004108218010514975, + 0.14187324047088623, + -0.11801315099000931, + -0.05428054556250572, + 0.04080693796277046, + -0.014387001283466816, + -0.0003695230989251286, + 0.04210752248764038, + 0.001646746532060206, + -0.004607246723026037, + 0.0007122093811631203, + -0.0028176659252494574, + -0.06980624794960022, + 0.15135458111763, + -0.0038252142257988453, + -0.008892154321074486, + 0.03283135965466499, + 0.027452800422906876, + 0.0046970234252512455, + -0.015967564657330513, + -0.07545193284749985, + 0.060514356940984726, + -0.0968615859746933, + 0.030724119395017624, + 0.12171319127082825, + 0.012173430062830448, + 0.00040299867396242917, + 0.034752700477838516, + 0.061132121831178665, + 0.06300462782382965, + -0.04185594990849495, + -0.004135956987738609, + -0.06976062804460526, + -0.027065657079219818, + 0.0492011234164238, + -0.0944497212767601, + -0.0772237628698349, + 0.020234279334545135, + -0.06669413298368454, + 0.03513699397444725, + 0.06512836366891861, + -0.07562783360481262, + -0.0073468745686113834, + 0.0021993594709783792, + -0.018686898052692413, + 0.08822783827781677, + -0.03199653699994087, + 0.017690349370241165, + -0.044639986008405685, + 0.013724508695304394, + -0.08651664853096008, + 1.0133630871442364e-35, + -0.0005658607697114348, + 0.06242747604846954, + -0.09240435808897018, + 0.020457100123167038, + -0.12969598174095154, + 0.03305690363049507, + 0.036486104130744934, + -0.011402045376598835, + 0.025088882073760033, + 0.059490058571100235, + 0.043298326432704926, + 0.031425897032022476, + -0.0774003118276596, + -0.01930774562060833, + 0.07009739428758621, + 0.016629057005047798, + 0.046215273439884186, + 0.036929186433553696, + -0.017106523737311363, + -0.04075589030981064, + -0.015177998691797256, + -0.021471038460731506, + -0.010495026595890522, + 0.041237931698560715, + 0.022412218153476715, + 0.007789128459990025, + 0.050050485879182816, + 0.03690904751420021, + -0.029976224526762962, + -0.032570503652095795, + 0.016753029078245163, + -0.00046615820610895753, + 0.03271503746509552, + 0.049442969262599945, + -0.022886818274855614, + -0.044162601232528687, + -0.011294803582131863, + -0.09365198761224747, + 0.07974082231521606, + 0.03410060703754425, + 0.05925546586513519, + 0.030093414708971977, + 0.10665259510278702, + 0.034396253526210785, + 0.02503313310444355, + 0.07775139063596725, + -0.0016240898985415697, + 0.025632159784436226, + -0.006419422570616007, + 0.0016709018964320421, + 0.02324880100786686, + -0.003890690626576543, + -0.0022978833876550198, + -0.051568564027547836, + -0.06093858182430267, + -0.0180075503885746, + 0.053911130875349045, + 0.06483374536037445, + 0.02342766895890236, + 0.005962807219475508, + -0.024727191776037216, + -0.0110595328733325, + 0.014627883210778236, + 0.015256357379257679, + -0.01627914421260357, + -0.02964220568537712, + 0.026255037635564804, + -0.11442754417657852, + 0.046689003705978394, + -0.02416885457932949, + 0.06579320877790451, + 0.07586243748664856, + -0.013287920504808426, + -0.0197526253759861, + 0.06000084802508354, + -0.07713714987039566, + 0.04324207454919815, + 0.009489222429692745, + 0.006289772689342499, + -0.03302692249417305, + -0.08214285224676132, + 0.007380031514912844, + 0.01929835043847561, + 0.0580267459154129, + -0.030527181923389435, + 0.04230710491538048, + -0.03042535111308098, + -0.004944527521729469, + 0.021291518583893776, + -0.04132479801774025, + -0.011315731331706047, + -0.001024805475026369, + -0.008798028342425823, + -0.027596376836299896, + -0.049773022532463074, + -2.4612033300286384e-08, + -0.050761278718709946, + -0.010115772485733032, + -0.02590668387711048, + 0.010413888841867447, + 0.014733629301190376, + -0.031680043786764145, + -0.008445554412901402, + 0.007337329443544149, + -0.03159131854772568, + -0.0750894621014595, + 0.04649486020207405, + 0.07239146530628204, + -0.0372798927128315, + -0.038773488253355026, + 0.12387797236442566, + 0.028598785400390625, + -0.07862140238285065, + 0.0073356772772967815, + -0.021935511380434036, + -0.044914551079273224, + -0.021211987361311913, + 0.032567523419857025, + 0.029478976503014565, + 0.07436634600162506, + 0.006085218861699104, + -0.004260116722434759, + 0.021352631971240044, + 0.10702566802501678, + 0.05737125501036644, + 0.024706320837140083, + 0.06638923287391663, + -0.008552595973014832, + 0.007685381919145584, + 0.030186109244823456, + -0.016628941521048546, + -0.03848697617650032, + -0.07005313783884048, + 0.04764463007450104, + 0.03388889878988266, + 0.1062127947807312, + -0.04899774491786957, + 0.005658023990690708, + -0.014658378437161446, + -0.000694782065693289, + -0.041789595037698746, + 0.051512181758880615, + 0.01702911965548992, + -0.003363644238561392, + -0.12221851199865341, + -0.13286370038986206, + -0.04170548543334007, + 0.07949978858232498, + 0.02837599255144596, + 0.07974797487258911, + -0.007650480140000582, + 0.0358605794608593, + 0.002610553056001663, + -0.0015831971541047096, + -0.03647443652153015, + 0.02536008134484291, + 0.09420578926801682, + 0.08460639417171478, + 0.019149119034409523, + 0.06882986426353455 + ], + "arrows-merge-bold||*updated*,arrowheads,join,combine": [ + 0.05121299624443054, + -0.05932825431227684, + 0.007284083869308233, + 0.0734386071562767, + 0.032394055277109146, + -0.031143823638558388, + 0.025930337607860565, + -0.05408685281872749, + 0.01169781293720007, + -0.01973402127623558, + 0.018485821783542633, + 0.07309453189373016, + 0.020611664280295372, + -0.05889645218849182, + 0.01775299943983555, + 0.09608078747987747, + -0.0793953388929367, + 0.06841990351676941, + -0.043675851076841354, + -0.04333754628896713, + -0.09460488706827164, + 0.02514328807592392, + -0.009247278794646263, + 0.03369002789258957, + 0.03222208842635155, + 0.06064121425151825, + -0.01314554177224636, + -0.011406708508729935, + -0.012782140634953976, + -0.0703740045428276, + -0.0002325724926777184, + -0.039826780557632446, + 0.023516906425356865, + 0.057192329317331314, + -0.03644074499607086, + -0.0021772715263068676, + 0.02866179309785366, + 0.07022485136985779, + 0.04159267991781235, + 0.05980523303151131, + 0.021465489640831947, + 0.005815180949866772, + 0.008457564748823643, + -0.03264966234564781, + -0.039215169847011566, + 0.0663120374083519, + -0.113172747194767, + -0.005684183444827795, + 0.0038597327657043934, + 0.05677015706896782, + -0.028229599818587303, + -0.12818275392055511, + -0.08843045681715012, + -0.04191480576992035, + 0.0670294389128685, + 0.05526009947061539, + -0.08873511105775833, + -0.05508184805512428, + 0.07346954196691513, + -0.010139303281903267, + 0.056224845349788666, + 0.03194946423172951, + 0.03509088605642319, + 0.008727718144655228, + 0.022014707326889038, + -0.01980159804224968, + 0.04495599493384361, + 0.08146467059850693, + -0.025499442592263222, + 0.06511742621660233, + 0.03884705901145935, + 0.03886175528168678, + -0.019367503002285957, + -0.09455721080303192, + -0.05774684622883797, + 0.04608297348022461, + 0.030122073367238045, + 0.053422074764966965, + -0.009800688363611698, + -0.013131494633853436, + -0.11193728446960449, + -0.042199406772851944, + -0.09419778734445572, + -0.03669527545571327, + 0.08192866295576096, + 0.08186041563749313, + -0.12523393332958221, + -0.09323235601186752, + -0.13404789566993713, + -0.10634458065032959, + -0.07183679193258286, + 0.014843708835542202, + 0.04241303354501724, + 0.01699747145175934, + 0.05477822944521904, + 0.025000648573040962, + 0.11237972974777222, + -0.006419026758521795, + -0.048408906906843185, + 0.09836630523204803, + -0.03551755100488663, + 0.014858721755445004, + -0.020170677453279495, + -0.07841076701879501, + 0.024967577308416367, + 0.04042261466383934, + -0.0440463051199913, + 0.019308794289827347, + 0.005763874854892492, + -0.02721567451953888, + -0.0037409327924251556, + -0.1707407534122467, + 0.02014756388962269, + -0.07701179385185242, + -0.05047788843512535, + 0.009102607145905495, + -0.06259871274232864, + -0.04246117174625397, + 0.07794509828090668, + -0.024243932217359543, + 0.08750790357589722, + -0.02498980611562729, + -0.025647861883044243, + -0.056936755776405334, + -0.04163847491145134, + -0.016495099291205406, + -0.00307764345780015, + -2.232745724895361e-33, + 0.053108200430870056, + 0.011210531927645206, + -0.025926904752850533, + 0.05939112603664398, + 0.03266496583819389, + 0.033896446228027344, + -0.06152935326099396, + -0.11048756539821625, + -0.07248707860708237, + 0.017135005444288254, + 0.06588473916053772, + 0.0709921196103096, + -0.07319685816764832, + 0.006842265371233225, + -0.036786504089832306, + -0.09045719355344772, + 0.07681839913129807, + 0.08093611150979996, + -0.09340221434831619, + 0.022252047434449196, + -0.031099218875169754, + 0.06663396209478378, + -0.07286224514245987, + 0.011154497042298317, + -0.0439794585108757, + -0.015065113082528114, + 0.006650758907198906, + 0.055082228034734726, + -0.012454746291041374, + 0.016475694254040718, + -0.010437630116939545, + 0.12233977764844894, + 0.004360938910394907, + 0.012038003653287888, + -0.04141489416360855, + 0.0009964340133592486, + -0.042184121906757355, + -0.060399122536182404, + -0.016431549564003944, + 0.028252890333533287, + -0.012677297927439213, + -0.017361560836434364, + -0.0535338819026947, + -0.05122563987970352, + 0.0237426795065403, + 0.0701775848865509, + -0.11198612302541733, + -0.040012773126363754, + 0.07804398983716965, + -0.0010830118553712964, + 0.015772169455885887, + 0.020129011943936348, + -0.01151349488645792, + 0.008280660957098007, + -0.04365568980574608, + 0.017276886850595474, + -0.07564573734998703, + 0.08299608528614044, + -0.009879030287265778, + 0.01491550263017416, + -0.0362597219645977, + -0.008267886936664581, + -0.01852300949394703, + 0.041232045739889145, + 0.0020618471316993237, + 0.10408321022987366, + 0.013085328973829746, + 0.09165510535240173, + 0.045452781021595, + -0.05989832803606987, + 0.031499143689870834, + 0.05274044722318649, + 0.002616930054500699, + 0.01594887115061283, + -0.005607305560261011, + -0.0308071319013834, + -0.028622344136238098, + -0.0016386241186410189, + 0.09342813491821289, + -0.08815591782331467, + -0.024706602096557617, + 0.01095280796289444, + -0.05907731503248215, + -0.0015333819901570678, + 0.08992429077625275, + 0.011809349060058594, + -0.03401149809360504, + 0.0412931852042675, + -0.05737418681383133, + 0.09463933855295181, + -0.07802706211805344, + 0.029621727764606476, + 0.024086041375994682, + -0.03942481800913811, + 0.0008587423362769186, + 6.595728189822626e-34, + 0.06359750032424927, + 0.05043064057826996, + -0.029671544209122658, + 0.028433816507458687, + -0.05620642006397247, + 0.012681102380156517, + 0.021305976435542107, + -0.04270479828119278, + 0.005911155603826046, + 0.0030998731963336468, + 0.03806615248322487, + -0.012912134639918804, + -0.05259073153138161, + -0.08137325942516327, + 0.0009236798505298793, + 0.0034955693408846855, + 0.08434603363275528, + 0.04136073961853981, + 0.007785598747432232, + -0.032515786588191986, + 0.03436800092458725, + -0.03390725329518318, + 0.01543762069195509, + 0.04670712351799011, + 0.010475105606019497, + 0.01150391437113285, + -0.014931764453649521, + 0.03403009846806526, + 0.01752273179590702, + -0.00731446361169219, + 0.06806957721710205, + -0.05773017182946205, + -0.019172104075551033, + 0.003853315720334649, + -0.04464557394385338, + -0.01079891249537468, + 0.019871119409799576, + -0.08083827793598175, + 0.06360568851232529, + -0.01950417272746563, + -0.007991049438714981, + 0.0008500675903633237, + 0.00880846194922924, + 0.03836682066321373, + 0.08635926991701126, + 0.021611399948596954, + -0.007526339031755924, + -0.01865832507610321, + -0.05103856697678566, + -0.048490606248378754, + 0.018766280263662338, + -0.004455144051462412, + -0.052579328417778015, + -0.04544396325945854, + -0.058114927262067795, + -0.049892574548721313, + 0.11805810034275055, + 0.09659886360168457, + -0.03558190166950226, + -0.02931630052626133, + -0.009337110444903374, + 0.017252178862690926, + 0.03398997336626053, + 0.009971840307116508, + -0.0004510498547460884, + -0.03200484812259674, + 0.016943039372563362, + -0.0778348371386528, + 0.05363580584526062, + 0.0014609353384003043, + 0.05006983503699303, + 0.03220635652542114, + -0.014158988371491432, + 0.030404357239603996, + 0.07184004038572311, + -0.07975933700799942, + 0.0526559054851532, + -0.005028378684073687, + 0.029669316485524178, + -0.03399718180298805, + -0.13489215075969696, + -0.03849709406495094, + 0.04419245570898056, + 0.051801420748233795, + -0.030745193362236023, + 0.01570979878306389, + -0.02779543399810791, + 0.05828028544783592, + 0.038450974971055984, + -0.06195839121937752, + -0.045239999890327454, + -0.04599824920296669, + 0.06628622114658356, + -0.054676298052072525, + -0.06090297922492027, + -1.8253640376997282e-08, + 0.000623075757175684, + 0.05552512779831886, + -0.1014755517244339, + -0.04098920896649361, + 0.032542549073696136, + -0.021043619140982628, + -0.047472141683101654, + 0.007227860391139984, + -0.011028734967112541, + -0.06099061295390129, + 0.06948953866958618, + 0.07942155003547668, + -0.06113181263208389, + -0.04532802477478981, + 0.04202410578727722, + 0.004455852322280407, + -0.04781178757548332, + 0.00830007903277874, + -0.015556544996798038, + -0.0968179851770401, + -0.05630244314670563, + 0.06956618279218674, + 0.0069849747233092785, + 0.07471542805433273, + 0.018436061218380928, + -0.034169089049100876, + 0.014122570864856243, + 0.08458617329597473, + 0.06414462625980377, + 0.042493414133787155, + 0.0225771963596344, + -0.013997029513120651, + -0.03462032601237297, + 0.016397757455706596, + -0.003775086021050811, + -0.07408291846513748, + 0.005327308550477028, + 0.05848203971982002, + -0.0004074634925927967, + 0.09705062955617905, + -0.015070111490786076, + 0.0016385362250730395, + 0.01143417414277792, + 0.008267831988632679, + -0.03659785911440849, + 0.016961295157670975, + 0.028980568051338196, + -0.040579214692115784, + -0.06266412883996964, + -0.042646996676921844, + 0.01802888698875904, + 0.05010170489549637, + 0.017377128824591637, + 0.034197643399238586, + -0.05557351931929588, + 0.006374930031597614, + 0.04777020215988159, + 0.093088798224926, + 0.021956685930490494, + 0.0011114983353763819, + 0.0730019062757492, + -0.0020094953943043947, + 0.0026499901432543993, + 0.03461296856403351 + ], + "arrows-out-bold||*updated*,directional,pointer,pointing,arrowhead,expand,fullscreen,resize,grow": [ + 0.04137369990348816, + -0.01974327303469181, + -0.005636001005768776, + 0.032078854739665985, + 0.029105156660079956, + -0.042591262608766556, + 0.04749200865626335, + -0.022754760459065437, + -0.01858089677989483, + 0.028400041162967682, + 0.029884440824389458, + 0.11610044538974762, + 0.01916448399424553, + -0.029313061386346817, + -0.015497869811952114, + 0.04726199060678482, + -0.04612426459789276, + 0.02761538326740265, + -0.024112027138471603, + -0.030785569921135902, + -0.055376578122377396, + -0.04982198402285576, + -0.047479767352342606, + 0.0426635667681694, + 0.008406727574765682, + 0.039533667266368866, + 0.013094494119286537, + 0.02278069406747818, + -0.019903171807527542, + -0.0890875831246376, + -0.05457982048392296, + -0.0025252457708120346, + 0.012610278092324734, + 0.03474130854010582, + -0.0555797815322876, + -0.03156604245305061, + 0.011848685331642628, + 0.0035299179144203663, + -0.07050569355487823, + 0.03420655056834221, + 0.03407910838723183, + 0.0037902561016380787, + 0.03446310758590698, + 0.04220462962985039, + 0.015016760677099228, + 0.033233460038900375, + -0.10769784450531006, + -0.03722386434674263, + 0.03742063418030739, + 0.04056395962834358, + -0.07839694619178772, + -0.10611889511346817, + -0.08079561591148376, + 0.0035089547745883465, + 0.07285591959953308, + -0.010187155567109585, + -0.026495691388845444, + -0.01761188544332981, + 0.11163808405399323, + 0.018507173284888268, + 0.07408023625612259, + 0.021380355581641197, + 0.0649910569190979, + 0.02317640744149685, + 0.011824064888060093, + -0.008870212361216545, + 0.018808389082551003, + -0.01970263570547104, + 0.010038825683295727, + -0.014488168060779572, + 0.02414572425186634, + -0.006849757395684719, + -0.005340954754501581, + -0.04454575106501579, + 0.009399461559951305, + -0.06396904587745667, + -0.014153283089399338, + 0.033273596316576004, + -0.00022428792726714164, + -0.020660296082496643, + -0.060345228761434555, + -0.007178630214184523, + -0.06057868152856827, + 0.035226088017225266, + 0.05179710313677788, + 0.09794872999191284, + -0.048169977962970734, + -0.09369800984859467, + -0.04211784154176712, + -0.034511931240558624, + -0.05509638413786888, + -0.03497156873345375, + -0.06402966380119324, + -0.005448026582598686, + -0.010521436110138893, + -0.07476483285427094, + 0.05691661685705185, + -0.12264498323202133, + -0.12397123873233795, + 0.09061013907194138, + 0.0438196063041687, + 0.014128380455076694, + 0.07078934460878372, + -0.02372067980468273, + 0.011981882154941559, + 0.06269953399896622, + -0.037650108337402344, + -0.028267940506339073, + -0.04296218976378441, + 0.0018557817675173283, + -0.0432962067425251, + -0.09030242264270782, + -0.012295093387365341, + -0.041159067302942276, + -0.030735449865460396, + -0.011608781293034554, + -0.09112434834241867, + -0.0030592004768550396, + 0.10106883198022842, + 0.011766086332499981, + 0.08201714605093002, + 0.014136957004666328, + -0.06652769446372986, + -0.05373421311378479, + -0.051028262823820114, + 0.029359539970755577, + -0.016648752614855766, + -2.9823145750475703e-33, + 2.5479303076281212e-05, + 0.02373404987156391, + -0.01407658588141203, + 0.06950385868549347, + 0.03645261004567146, + 0.042659156024456024, + -0.03167053684592247, + -0.02102630026638508, + -0.08588593453168869, + -0.04041258618235588, + 0.12646803259849548, + 0.016588930040597916, + -0.07197645306587219, + 0.07666680961847305, + 0.09047691524028778, + -0.11388400942087173, + 0.07226189225912094, + 0.11765772849321365, + -0.07240650802850723, + -0.01569020375609398, + -0.04892866313457489, + 0.059840500354766846, + -0.07504785060882568, + -0.014321808703243732, + 0.006413210183382034, + 0.024069806560873985, + -0.019081074744462967, + 0.05669119209051132, + -0.14141008257865906, + 0.011034006252884865, + 0.00627587316557765, + 0.05073112994432449, + 0.009331747889518738, + -0.0694345086812973, + -0.04592285305261612, + -0.04114494472742081, + -0.10510193556547165, + -0.0510428324341774, + 0.03375189006328583, + -0.012593823485076427, + -0.08984703570604324, + -0.06693968921899796, + -0.03478577733039856, + -0.031050357967615128, + -0.003145606257021427, + 0.12513498961925507, + -0.07256878912448883, + -0.08248361200094223, + 0.014886938035488129, + -0.04032504931092262, + 0.025309300050139427, + 0.033766817301511765, + 0.0041880132630467415, + -0.07337095588445663, + -0.0356612429022789, + -0.019614607095718384, + -0.05108088627457619, + 0.11261353641748428, + -0.0018214151496067643, + 0.004972484428435564, + -0.0028960187919437885, + -0.014298788271844387, + -0.0321805402636528, + 0.04698760062456131, + -0.038510531187057495, + 0.03716713562607765, + -0.05634285882115364, + 0.07020322233438492, + 0.03892282024025917, + 0.010019318200647831, + 0.027105266228318214, + 0.028600485995411873, + 0.09331914782524109, + 0.06389571726322174, + -0.05483544245362282, + -0.023684214800596237, + -0.016607804223895073, + -0.07361190766096115, + 0.04757986217737198, + -0.09265608340501785, + -0.08379705250263214, + -0.008900046348571777, + -0.010553215630352497, + 0.005742594599723816, + 0.055536847561597824, + -0.09024712443351746, + -0.009064110927283764, + -0.04049351438879967, + 0.004264328628778458, + 0.0854470506310463, + -0.07272680103778839, + -0.013979331590235233, + -0.030004438012838364, + -0.03454678878188133, + -0.08249475061893463, + 2.3815003277782539e-35, + 0.03841274231672287, + 0.07357393950223923, + -0.11489804089069366, + -0.017432302236557007, + -0.11062715202569962, + 0.054772138595581055, + 0.014556631445884705, + 0.07039068639278412, + 0.03326714038848877, + -0.008320404216647148, + 0.046975765377283096, + 0.07287916541099548, + -0.025354178622364998, + -0.056597791612148285, + 0.003995380364358425, + 0.033215541392564774, + 0.06091083958745003, + 0.04354904964566231, + -0.037222813814878464, + -0.013929065316915512, + 0.026857657358050346, + -0.0594082735478878, + -0.003956981468945742, + 0.038085855543613434, + 0.0594913549721241, + -0.026076771318912506, + 0.05673515796661377, + 0.06437203288078308, + -0.006955367047339678, + -0.024881931021809578, + 0.04255248233675957, + -0.020893966779112816, + 0.020742492750287056, + 0.04583243653178215, + -0.0014015305787324905, + -0.047768883407115936, + 0.007533164229243994, + -0.09325817972421646, + 0.034592319279909134, + 0.06255082786083221, + 0.010293928906321526, + 0.0348614938557148, + 0.09174931794404984, + 0.02679106965661049, + 0.028908485546708107, + 0.10830823332071304, + 0.028777290135622025, + -0.011123153381049633, + -0.019411584362387657, + 0.028638930991292, + 0.034013569355010986, + -0.010345607995986938, + 0.008678077720105648, + -0.07111084461212158, + -0.1113995611667633, + -0.01430680975317955, + 0.06705409288406372, + 0.1005287766456604, + -0.027620214968919754, + -0.021520666778087616, + -0.005386894568800926, + -0.034622516483068466, + -0.02557632327079773, + -0.018270321190357208, + -0.025865914300084114, + 0.02456415444612503, + 0.010371166281402111, + -0.05327923223376274, + 0.002525459276512265, + -0.009203318506479263, + 0.08378233015537262, + 0.03629497438669205, + -0.026201320812106133, + -0.009173528291285038, + 0.005676870234310627, + -0.03798302263021469, + 0.07701209932565689, + -0.034420743584632874, + 0.0028154333122074604, + -0.034743644297122955, + -0.052241962403059006, + -0.010296853259205818, + 0.057353634387254715, + 0.01701737381517887, + 0.01785135455429554, + 0.0486832819879055, + -0.060703910887241364, + 0.05373057723045349, + 0.0159262977540493, + -0.0015124892815947533, + -0.026405230164527893, + 0.010675557889044285, + 0.027333032339811325, + -0.050432153046131134, + -0.05723901465535164, + -2.526347131492912e-08, + -0.06795193254947662, + 0.034729111939668655, + -0.014843529090285301, + -0.00885912124067545, + 0.02986794337630272, + -0.03277578204870224, + 0.02638530544936657, + 0.04338327795267105, + -0.00036315954639576375, + -0.06456425040960312, + 0.026197191327810287, + 0.061969541013240814, + -0.028782568871974945, + 0.0005897720111533999, + 0.13081812858581543, + 0.04554693028330803, + -0.06041678041219711, + 0.045421864837408066, + -0.013862119987607002, + -0.07507696002721786, + -0.038821130990982056, + 0.04387005418539047, + 0.015220079571008682, + 0.07021325081586838, + -0.03460364416241646, + -0.04938327521085739, + -0.040435537695884705, + 0.12246570736169815, + 0.0600397065281868, + 0.010175781324505806, + 0.06637157499790192, + 0.02946358732879162, + 0.011025361716747284, + 0.026738429442048073, + -0.02260231412947178, + -0.0108097018674016, + -0.05116122215986252, + 0.055138371884822845, + 0.02373635582625866, + 0.07417318969964981, + -0.042001575231552124, + -0.03257574886083603, + -0.0014651335077360272, + -0.014862827956676483, + -0.06739357858896255, + 0.03556983545422554, + 0.048062071204185486, + 0.0014003566466271877, + -0.10881190747022629, + -0.11677625775337219, + 0.0008309415425173938, + 0.05679049342870712, + 0.023743128404021263, + 0.035730622708797455, + 0.006609796546399593, + 0.03058391623198986, + 0.011293480172753334, + 0.04678909480571747, + -0.038948625326156616, + 0.0245937779545784, + 0.06138261780142784, + 0.08909881860017776, + -0.0003313886118121445, + 0.07496695220470428 + ], + "arrows-out-cardinal-bold||*updated*,directional,pointer,pointing,arrowhead,expand,fullscreen,resize,pan,move,grow": [ + 0.07346482574939728, + -0.02088799700140953, + -0.02276984415948391, + 0.004529271274805069, + 0.01721460185945034, + 0.0001308437203988433, + 0.06418351083993912, + -0.006910762749612331, + -0.0044775609858334064, + 0.01359257847070694, + 0.029308104887604713, + 0.07549785077571869, + 0.02219117432832718, + -0.021900853142142296, + -0.04278692975640297, + 0.020749101415276527, + -0.0492769330739975, + 0.018557511270046234, + -0.021179236471652985, + -0.02822984755039215, + -0.03562949225306511, + -0.045056115835905075, + -0.06235349178314209, + 0.04929782822728157, + 0.011291361413896084, + 0.050125863403081894, + -0.007280467078089714, + -0.005161555018275976, + -0.0204152911901474, + -0.08225613087415695, + -0.07732167840003967, + 0.018781105056405067, + 0.00436475919559598, + 0.03677158057689667, + -0.08153554797172546, + -0.029891837388277054, + 0.006348768249154091, + 0.015478289686143398, + -0.050815653055906296, + 0.017901360988616943, + 0.04461238160729408, + -0.0007441052584908903, + 0.043581049889326096, + 0.04014509543776512, + 0.04091620817780495, + 0.06387787312269211, + -0.13368503749370575, + -0.030632805079221725, + 0.020192919299006462, + 0.049454960972070694, + -0.08126946538686752, + -0.09826092422008514, + -0.08842282742261887, + 0.03018103539943695, + 0.09316201508045197, + 0.01740233227610588, + -0.027464022859930992, + -0.04760240390896797, + 0.1290673166513443, + 0.010096978396177292, + 0.06097006797790527, + 0.027699744328856468, + 0.04594836011528969, + 0.03879311680793762, + 0.010944675654172897, + -0.029789088293910027, + 0.02298758365213871, + 0.0022570157889276743, + 0.02871035784482956, + -0.007344894111156464, + 0.022024091333150864, + -0.0013811136595904827, + 0.009977760724723339, + -0.04700078070163727, + 0.014269092120230198, + -0.05753379315137863, + -0.015224620699882507, + 0.032352570444345474, + 0.010195380076766014, + -0.03688887134194374, + -0.07318960130214691, + -0.01333176251500845, + -0.04801980406045914, + 0.06121601164340973, + 0.055826906114816666, + 0.10234815627336502, + -0.05913878604769707, + -0.07676529884338379, + -0.030307305976748466, + -0.03764442726969719, + -0.05936979502439499, + -0.036077868193387985, + -0.04604388028383255, + -0.007604844868183136, + -0.010527301579713821, + -0.07704233378171921, + 0.03137093409895897, + -0.13324511051177979, + -0.11000127345323563, + 0.0956089124083519, + 0.037840548902750015, + 0.02056940458714962, + 0.07933373004198074, + -0.04188293591141701, + -0.0020902578253299, + 0.0669650286436081, + -0.04335832968354225, + -0.05376265197992325, + -0.035938914865255356, + 0.00336261885240674, + -0.03558672219514847, + -0.09320878237485886, + -0.010983637534081936, + -0.06883208453655243, + -0.01810314692556858, + -0.013924941420555115, + -0.08552530407905579, + -0.02441071905195713, + 0.07982014864683151, + 0.002486137207597494, + 0.07834234088659286, + 0.005736172664910555, + -0.058816418051719666, + -0.04158957675099373, + -0.08530828356742859, + 0.01809052936732769, + -0.02098776586353779, + -3.1616962986799976e-33, + 0.014211655594408512, + 0.013726850971579552, + 0.0017093115020543337, + 0.07694349437952042, + 0.047380488365888596, + 0.02991616167128086, + -0.04095805436372757, + -0.02004779875278473, + -0.08954217284917831, + -0.02034466527402401, + 0.10821262747049332, + 0.042736683040857315, + -0.07573890686035156, + 0.09653821587562561, + 0.10536238551139832, + -0.11895017325878143, + 0.09526629000902176, + 0.11308871954679489, + -0.0764550268650055, + -0.046005669981241226, + -0.05310126021504402, + 0.08045409619808197, + -0.0633196234703064, + -0.018561556935310364, + 0.02893233858048916, + 0.037965402007102966, + -0.024345165118575096, + 0.038721077144145966, + -0.13662175834178925, + 0.016360629349946976, + -0.0012355500366538763, + 0.05220671743154526, + -0.0004080729268025607, + -0.07210364937782288, + -0.016502369195222855, + -0.060539405792951584, + -0.09687863290309906, + -0.05075489357113838, + 0.04256689175963402, + -0.035974085330963135, + -0.08594813197851181, + -0.08165658265352249, + -0.04703249782323837, + -0.022023040801286697, + 0.008842448703944683, + 0.11159045249223709, + -0.05500483140349388, + -0.04995403066277504, + 0.002584710018709302, + -0.02166680246591568, + 0.035959891974925995, + 0.019250059500336647, + -0.00258848094381392, + -0.06414804607629776, + -0.0422029010951519, + -0.037793803960084915, + -0.055658064782619476, + 0.12376734614372253, + -0.0026987434830516577, + 0.030484208837151527, + -0.02719220146536827, + -0.002213782863691449, + -0.02853340096771717, + 0.06151094660162926, + -0.013590254820883274, + 0.031689729541540146, + -0.0643329992890358, + 0.0475320890545845, + 0.049129974097013474, + 0.03207441791892052, + 0.019732605665922165, + 0.027122169733047485, + 0.09178020805120468, + 0.05482521653175354, + -0.04086996614933014, + -0.02403576672077179, + -0.037951335310935974, + -0.08314196020364761, + -0.005815695971250534, + -0.06512585282325745, + -0.07522256672382355, + 0.005046483129262924, + -0.00970083475112915, + -0.014550828374922276, + 0.05164046213030815, + -0.08148617297410965, + 0.020966332405805588, + -0.020069727674126625, + 0.005652484484016895, + 0.05898440629243851, + -0.07702914625406265, + 0.010517340153455734, + 0.009402796626091003, + -0.039401739835739136, + -0.07330687344074249, + 4.892789523786378e-34, + 0.017321515828371048, + 0.06517468392848969, + -0.10647639632225037, + -0.010736869648098946, + -0.1170300617814064, + 0.020946690812706947, + 0.03151099383831024, + 0.05175630375742912, + 0.04196549206972122, + -0.024358656257390976, + 0.01026892475783825, + 0.07679226994514465, + -0.0037355427630245686, + -0.06673292815685272, + -0.0012589553371071815, + 0.024856459349393845, + 0.033935144543647766, + 0.037426117807626724, + -0.03642450273036957, + -0.026140982285141945, + 0.031243514269590378, + -0.07372798025608063, + -0.019617972895503044, + 0.06482155621051788, + 0.049297913908958435, + -0.00820475909858942, + 0.07481690496206284, + 0.061143629252910614, + 0.004311850294470787, + -0.018992725759744644, + 0.044914763420820236, + -0.037992484867572784, + 0.0261300727725029, + 0.06658364832401276, + 0.003368149744346738, + -0.053037744015455246, + 0.024697186425328255, + -0.05073099583387375, + 0.009685412980616093, + 0.05369206890463829, + -0.019304990768432617, + 0.026991741731762886, + 0.09217612445354462, + 0.01946479082107544, + 0.02610369585454464, + 0.10132016986608505, + 0.03164272755384445, + 0.00019812594109680504, + -0.029364002868533134, + 0.013628853484988213, + 0.02872050739824772, + -0.01759425364434719, + 0.0026155065279453993, + -0.07729095220565796, + -0.09229566156864166, + -0.01156449131667614, + 0.055648863315582275, + 0.08267732709646225, + 0.011922263540327549, + -0.02910192683339119, + -0.0008370857685804367, + -0.05438578873872757, + -0.0013854635180905461, + -0.014318937435746193, + -0.008667362853884697, + 0.02641824446618557, + -0.010585788637399673, + -0.05935722589492798, + -0.03773592412471771, + -0.018892435356974602, + 0.07073262333869934, + 0.045593418180942535, + -0.030889559537172318, + -0.0015496928244829178, + -0.016624921932816505, + -0.037413496524095535, + 0.08545880019664764, + -0.044911790639162064, + -0.005250347312539816, + -0.01666795089840889, + -0.05498902499675751, + -0.026741178706288338, + 0.07250237464904785, + 0.018653733655810356, + 0.00454863952472806, + 0.04929150268435478, + -0.04687512665987015, + 0.031009875237941742, + 0.01616973988711834, + -0.0018227704567834735, + -0.028403639793395996, + 0.040784601122140884, + 0.045755255967378616, + -0.04904313012957573, + -0.05392416566610336, + -2.6386043572301787e-08, + -0.05831821262836456, + 0.028883909806609154, + -0.0020247893407940865, + -0.011918402276933193, + 0.026450851932168007, + -0.02430548332631588, + 0.05761369690299034, + 0.055343106389045715, + -0.00037115460145287216, + -0.07795476913452148, + 0.03189906105399132, + 0.07852786034345627, + -0.015800029039382935, + -0.0014227856881916523, + 0.15071308612823486, + 0.020231476053595543, + -0.045994244515895844, + 0.04068685322999954, + -0.014458980411291122, + -0.07359527051448822, + -0.02586318925023079, + 0.04504862427711487, + 0.0315135233104229, + 0.05266468599438667, + -0.06322215497493744, + -0.07137688249349594, + -0.037713248282670975, + 0.1255345195531845, + 0.06115645170211792, + 0.023531632497906685, + 0.07945847511291504, + 0.03403579443693161, + 0.04584044590592384, + 0.04296945035457611, + -0.008207651786506176, + 0.00677459966391325, + -0.06501574069261551, + 0.05305255949497223, + 0.01816677674651146, + 0.06028485670685768, + -0.03613688051700592, + -0.03146476298570633, + -0.010105492547154427, + -0.01724272407591343, + -0.06559666991233826, + 0.010993700474500656, + 0.05393050238490105, + -0.00428466172888875, + -0.07995281368494034, + -0.11033227294683456, + -0.0054825288243591785, + 0.07823115587234497, + 0.02504635415971279, + 0.027152109891176224, + -0.0032623927108943462, + 0.03641336038708687, + 0.01358986645936966, + 0.009663280099630356, + -0.02458989806473255, + 0.029967062175273895, + 0.01541140116751194, + 0.07512106001377106, + -0.016050973907113075, + 0.06927912682294846 + ], + "arrows-out-line-horizontal-bold||*updated*,directional,pointer,pointing,arrowhead,open,split": [ + 0.027124514803290367, + -0.018971417099237442, + -0.03240032121539116, + 0.02902115322649479, + 0.011108280159533024, + -0.019611142575740814, + 0.016736255958676338, + -0.013719062320888042, + -0.01217377744615078, + 0.033829186111688614, + 0.023457121104002, + 0.09837789833545685, + 0.017473990097641945, + -0.04412009194493294, + 0.00507152546197176, + 0.06839245557785034, + -0.09802662581205368, + -0.004370932001620531, + 0.006613817531615496, + -0.00968550518155098, + -0.030995873734354973, + -0.017405323684215546, + -0.08775759488344193, + 0.038270313292741776, + -0.03308824077248573, + 0.06711841374635696, + 0.03765695542097092, + 0.006384633481502533, + -0.01844693347811699, + -0.08210176974534988, + -0.0352550745010376, + -0.043182358145713806, + -0.036400582641363144, + 0.03786245360970497, + -0.03701362758874893, + -0.02672741375863552, + 0.031173063442111015, + 0.029229260981082916, + -0.06511062383651733, + 0.041140880435705185, + 0.06538423895835876, + -0.00825699046254158, + -0.0060038138180971146, + 0.0015838568797335029, + 0.04241431877017021, + 0.04972511902451515, + -0.11506984382867813, + -0.058453142642974854, + 0.0700986236333847, + 0.09206639975309372, + -0.10541968047618866, + -0.07789184153079987, + -0.08282459527254105, + 0.03423016145825386, + 0.08773153275251389, + 0.03213324397802353, + -0.012514553964138031, + -0.03681381419301033, + 0.08452645689249039, + 0.0034221112728118896, + 0.09210889786481857, + 0.013133201748132706, + 0.05225939676165581, + -0.010850881226360798, + 0.026008162647485733, + -0.031145520508289337, + -0.017239537090063095, + 0.026816193014383316, + 0.03912439942359924, + -0.01906018890440464, + 0.004640298895537853, + -0.011212773621082306, + -0.03351428359746933, + -0.06600628048181534, + -0.013079146854579449, + -0.025784453377127647, + 0.011415953747928143, + 0.045970331877470016, + 9.013144881464541e-05, + -0.05357085540890694, + -0.025479502975940704, + -0.01674255169928074, + -0.07101345807313919, + 0.023253099992871284, + 0.045461662113666534, + 0.09842004626989365, + -0.07880314439535141, + -0.07955807447433472, + -0.03218463435769081, + -0.024971578270196915, + -0.03308271989226341, + -0.012322042137384415, + -0.015106015838682652, + -0.021174505352973938, + 0.019981490448117256, + -0.039083331823349, + 0.07720387727022171, + -0.06677994877099991, + -0.10025850683450699, + 0.11292160302400589, + 0.019147325307130814, + 0.01173441018909216, + 0.027823586016893387, + -0.04047214612364769, + -0.0016359695000573993, + 0.03379170224070549, + -0.01281424518674612, + -0.045896582305431366, + -0.04700391739606857, + -0.0222820732742548, + -0.035907965153455734, + -0.13338245451450348, + -0.0264760572463274, + -0.07934258878231049, + -0.022861484438180923, + -0.027715783566236496, + -0.09995777904987335, + 0.025272684171795845, + 0.09134440124034882, + 0.04361508786678314, + 0.04089554399251938, + -0.0328315906226635, + -0.04618869349360466, + -0.013181210495531559, + -0.047721777111291885, + 0.002868607407435775, + 0.0024538347497582436, + -4.422787209393287e-33, + 0.030903374776244164, + 0.02130398154258728, + 0.001281348173506558, + 0.05157844349741936, + 0.01275889202952385, + 0.014962896704673767, + -0.07506193220615387, + -0.056455496698617935, + -0.08123045414686203, + 0.009745062328875065, + 0.13866102695465088, + -0.07365713268518448, + -0.04902537167072296, + 0.08631303161382675, + 0.07147616147994995, + -0.12399348616600037, + 0.052866097539663315, + 0.06308578699827194, + -0.09718726575374603, + 0.009466945193707943, + -0.059784382581710815, + 0.05071023479104042, + -0.06414493918418884, + -0.02456444688141346, + -0.009336251765489578, + 0.012958060950040817, + -0.028680577874183655, + -0.015107863582670689, + -0.09694620221853256, + 0.017645426094532013, + 0.03170956298708916, + 0.05191607400774956, + 0.009392215870320797, + -0.04352251812815666, + -0.026821648702025414, + -0.003719238331541419, + -0.12680760025978088, + -0.04372193291783333, + -0.005474484525620937, + -0.06204092875123024, + -0.07865981757640839, + -0.06694332510232925, + -0.036376625299453735, + -0.027459263801574707, + -0.006865167524665594, + 0.11979738622903824, + -0.12841074168682098, + -0.05198469012975693, + 0.019235683605074883, + -0.04109575226902962, + 0.0014082264387980103, + 0.06372874230146408, + 0.0013641995610669255, + -0.019115271046757698, + -0.013170718215405941, + -0.04237980768084526, + -0.058571506291627884, + 0.15609602630138397, + 0.005379288457334042, + 0.021267781034111977, + -0.004358045756816864, + 0.04145964980125427, + -0.021530654281377792, + 0.013954349793493748, + -0.03507308289408684, + 0.044463273137807846, + -0.0985427051782608, + 0.036941833794116974, + 0.08616749197244644, + 0.03998938947916031, + -0.02919013984501362, + 0.012164236977696419, + 0.05075579136610031, + 0.04954998195171356, + -0.0560278594493866, + 0.011520047672092915, + -0.0409930981695652, + -0.054433006793260574, + 0.11298959702253342, + -0.10768367350101471, + -0.0596248060464859, + 0.019501332193613052, + -0.007033930160105228, + -0.008147538639605045, + 0.06287151575088501, + -0.05931223928928375, + -0.0017269110539928079, + -0.004389713518321514, + -0.008979860693216324, + 0.06703381985425949, + -0.05960104987025261, + 0.024474184960126877, + -0.03043864294886589, + -0.025755614042282104, + -0.044533710926771164, + 2.005448234211777e-34, + 0.018449125811457634, + 0.10519018024206161, + -0.08402939885854721, + -0.03396056219935417, + -0.11701979488134384, + 0.05145225673913956, + 0.014355180785059929, + 0.022580701857805252, + 0.03360055014491081, + 0.07581727206707001, + 0.038888100534677505, + 0.05158361792564392, + -0.04087339714169502, + -0.014649308286607265, + 0.046205393970012665, + -0.017216039821505547, + 0.04726061224937439, + 0.06355936080217361, + -9.602407953934744e-05, + -0.015457372181117535, + 0.01094279158860445, + -0.0647808313369751, + 0.00395206967368722, + 0.03883238509297371, + 0.03822973743081093, + -0.00975827220827341, + 0.08565238118171692, + 0.0489451140165329, + -0.02528589963912964, + -0.04279946908354759, + 0.01519605703651905, + -0.006218600086867809, + 0.028263304382562637, + 0.03128655627369881, + -0.050177350640296936, + -0.046307273209095, + -0.02604961395263672, + -0.06687259674072266, + 0.06578156352043152, + 0.040209606289863586, + -0.0045554800890386105, + 0.059512991458177567, + 0.09763191640377045, + 0.01698347181081772, + -0.0027370681054890156, + 0.08229417353868484, + -0.007847907952964306, + 0.028216879814863205, + -0.038451068103313446, + 0.028299475088715553, + 0.013719220645725727, + 0.0009733187034726143, + -0.00492453295737505, + -0.05706947296857834, + -0.09694910049438477, + -0.027568012475967407, + 0.05438091605901718, + 0.09142623841762543, + -0.031313348561525345, + -0.020144155248999596, + -0.03602953255176544, + -0.007256639655679464, + -0.014534874819219112, + 0.021038224920630455, + 0.0259593166410923, + -0.01671060547232628, + 0.020267384126782417, + -0.10507453978061676, + 0.02103457786142826, + -0.03374312445521355, + 0.060431379824876785, + 0.0753764733672142, + -0.00021602903143502772, + -0.02451154962182045, + 0.05977001413702965, + -0.04927399381995201, + 0.03790140151977539, + -0.034162215888500214, + -0.014871617779135704, + -0.028525330126285553, + -0.08035490661859512, + -0.03718658909201622, + 0.04935266822576523, + 0.023207319900393486, + -0.020017411559820175, + 0.011783657595515251, + -0.04718011990189552, + 0.02257688343524933, + 0.027362626045942307, + -0.05598435923457146, + -0.02215960994362831, + 0.014752676710486412, + 0.011221902444958687, + -0.0009648604900576174, + -0.06507063657045364, + -2.738567950189008e-08, + -0.047276128083467484, + -0.026091378182172775, + -0.0009281925158575177, + 0.0195016972720623, + 0.04045483097434044, + 0.00716958986595273, + -0.007817426696419716, + 0.015095975250005722, + 0.004894095938652754, + -0.07076314091682434, + 0.057979483157396317, + 0.09269865602254868, + -0.06091609224677086, + -0.024224907159805298, + 0.12436044961214066, + 0.018270887434482574, + -0.04213249310851097, + 0.04399421811103821, + -0.012597145512700081, + -0.07280385494232178, + -0.02504260092973709, + 0.01368244644254446, + 0.035013165324926376, + 0.11114483326673508, + -0.022671081125736237, + -0.03165839985013008, + -0.03597810119390488, + 0.1316145956516266, + 0.049463436007499695, + 0.026902679353952408, + 0.06109842658042908, + 0.021198498085141182, + 0.020232049748301506, + 0.03566011041402817, + -0.008689730428159237, + -0.003322741249576211, + -0.032261867076158524, + 0.07511375099420547, + 0.03377564251422882, + 0.084394671022892, + -0.03440060839056969, + 0.004468212369829416, + 0.000593426579143852, + -0.006368682719767094, + -0.04005590081214905, + 0.023236798122525215, + 0.029608553275465965, + 0.008268398232758045, + -0.10701295733451843, + -0.10553628206253052, + -0.05759734287858009, + 0.06979747116565704, + 0.029414232820272446, + 0.007720046676695347, + -0.03506859019398689, + 0.024200022220611572, + 0.01877778396010399, + 0.0008732303394936025, + -0.0788988247513771, + 0.006533090490847826, + 0.06100251525640488, + 0.0657147765159607, + 0.02451998181641102, + 0.06783441454172134 + ], + "arrows-out-line-vertical-bold||*updated*,directional,pointer,pointing,arrowhead,open,split": [ + 0.021614648401737213, + -0.015894144773483276, + -0.03811196982860565, + 0.023970745503902435, + 0.00840719137340784, + -0.02708829753100872, + 0.003127354895696044, + 0.004481031559407711, + -0.010512313805520535, + 0.033413734287023544, + 0.020049886777997017, + 0.10766667872667313, + 0.019757281988859177, + -0.05539996549487114, + 0.010358341038227081, + 0.08276598900556564, + -0.08844130486249924, + 0.00530651630833745, + -0.007252886891365051, + -0.01519358716905117, + -0.039933640509843826, + -0.015737954527139664, + -0.07822436839342117, + 0.03195701539516449, + -0.022507499903440475, + 0.06687168776988983, + 0.042556218802928925, + 0.00885827001184225, + -0.00993901863694191, + -0.07481134682893753, + -0.035114388912916183, + -0.041291721165180206, + -0.02471178211271763, + 0.04145343601703644, + -0.03620344400405884, + -0.027895383536815643, + 0.038914669305086136, + 0.03180193901062012, + -0.07383313030004501, + 0.03334052488207817, + 0.07309577614068985, + -0.022285567596554756, + -0.005975905805826187, + -0.003636548761278391, + 0.036690853536129, + 0.060506947338581085, + -0.09921535104513168, + -0.06570374220609665, + 0.06016155704855919, + 0.09033732861280441, + -0.09799923002719879, + -0.09075675159692764, + -0.08470536023378372, + 0.02874208800494671, + 0.09494730830192566, + 0.04118867591023445, + -0.014427841641008854, + -0.04748683050274849, + 0.0882091373205185, + 0.004698979668319225, + 0.0933353528380394, + 0.019289691001176834, + 0.03287891298532486, + -0.003419990884140134, + 0.025950660929083824, + -0.02511151321232319, + -0.023954540491104126, + 0.03642905876040459, + 0.03540778160095215, + -0.018392588943243027, + 0.008904730901122093, + -0.006381159648299217, + -0.03214053064584732, + -0.06185900419950485, + -0.014104952104389668, + -0.03301427140831947, + 0.013820912688970566, + 0.037847090512514114, + 0.01190928928554058, + -0.05384402722120285, + -0.020236147567629814, + -0.025235699489712715, + -0.0831712931394577, + 0.030338967218995094, + 0.03967246785759926, + 0.0954563319683075, + -0.07031825929880142, + -0.08339790254831314, + -0.041176632046699524, + -0.027645334601402283, + -0.021982895210385323, + -0.01860027015209198, + -0.019845586270093918, + -0.02391955442726612, + 0.018148640170693398, + -0.042628273367881775, + 0.08501707017421722, + -0.09115904569625854, + -0.0950637087225914, + 0.11600612103939056, + 0.013224074617028236, + 0.006058251019567251, + 0.03348573297262192, + -0.02681090496480465, + -0.015626998618245125, + 0.025905050337314606, + -0.008405748754739761, + -0.044291138648986816, + -0.05484510958194733, + -0.013253485783934593, + -0.02842596359550953, + -0.13523301482200623, + -0.013310174457728863, + -0.07608276605606079, + -0.028148869052529335, + -0.024438055232167244, + -0.1057891696691513, + 0.011403648182749748, + 0.08753921836614609, + 0.03658061847090721, + 0.034240804612636566, + -0.022116035223007202, + -0.043683815747499466, + -0.009018611162900925, + -0.043744370341300964, + 0.006538000889122486, + 0.011308050714433193, + -4.2999733963292976e-33, + 0.0392334870994091, + 0.031165385618805885, + 0.00542141729965806, + 0.05786968022584915, + 0.023846307769417763, + 0.02442181296646595, + -0.07971570640802383, + -0.06068311259150505, + -0.08116748929023743, + 0.03383490443229675, + 0.12871898710727692, + -0.07081203907728195, + -0.0531802773475647, + 0.10200393944978714, + 0.07049741595983505, + -0.1205395981669426, + 0.058459118008613586, + 0.05560571700334549, + -0.10016565769910812, + 0.0008717172895558178, + -0.0509362630546093, + 0.04365416616201401, + -0.0673961266875267, + -0.01480402797460556, + -0.018526529893279076, + 0.00690416619181633, + -0.020229704678058624, + -0.013918877579271793, + -0.1105450764298439, + 0.020928960293531418, + 0.020212076604366302, + 0.05573452636599541, + 0.007426013704389334, + -0.05130623281002045, + -0.030660608783364296, + 0.006225273013114929, + -0.12859418988227844, + -0.04640336334705353, + -0.0005289131659083068, + -0.05983394756913185, + -0.08148468285799026, + -0.06737726181745529, + -0.031152641400694847, + -0.02017628774046898, + -0.0027495655231177807, + 0.11172125488519669, + -0.13137932121753693, + -0.06042945012450218, + 0.017354300245642662, + -0.030039871111512184, + 0.0055341944098472595, + 0.060526564717292786, + -1.598958442627918e-05, + -0.018370455130934715, + -0.006632245611399412, + -0.046996042132377625, + -0.06241606920957565, + 0.15179263055324554, + -0.001503005507402122, + 0.024229399859905243, + -0.003374810330569744, + 0.03933584317564964, + -0.03874105215072632, + 0.013560591265559196, + -0.0360068678855896, + 0.049261610954999924, + -0.09804434329271317, + 0.04359837993979454, + 0.08917342126369476, + 0.04450911283493042, + -0.018839150667190552, + 0.011511123739182949, + 0.046631988137960434, + 0.03612072393298149, + -0.06326093524694443, + 0.01419500820338726, + -0.03299430385231972, + -0.056543976068496704, + 0.11556841433048248, + -0.09832259267568588, + -0.0553177073597908, + 0.02003372274339199, + -0.005005620885640383, + -0.00946059636771679, + 0.0615268275141716, + -0.055470410734415054, + -0.001426379312761128, + -0.0076873465441167355, + -0.002191216219216585, + 0.07595314830541611, + -0.06508638709783554, + 0.01266651600599289, + -0.031265828758478165, + -0.02961079217493534, + -0.04332587122917175, + 2.8101755955728873e-34, + 0.018101325258612633, + 0.10944430530071259, + -0.0772961974143982, + -0.030088121071457863, + -0.11775697022676468, + 0.04635779932141304, + 0.005414808169007301, + 0.024124033749103546, + 0.01692347601056099, + 0.0674731582403183, + 0.029892785474658012, + 0.06019022688269615, + -0.01753327250480652, + -0.015367851592600346, + 0.059270188212394714, + -0.017587006092071533, + 0.022585753351449966, + 0.054028622806072235, + 0.005172685254365206, + -0.016070101410150528, + 0.015246088616549969, + -0.05791451036930084, + 0.009792432188987732, + 0.04044440761208534, + 0.0429728627204895, + -0.024809937924146652, + 0.08869285881519318, + 0.05176253244280815, + -0.021731864660978317, + -0.04026612266898155, + 0.026954974979162216, + -0.010344699025154114, + 0.024255134165287018, + 0.0314163900911808, + -0.05002351850271225, + -0.04487225040793419, + -0.0158709604293108, + -0.06741435825824738, + 0.055382099002599716, + 0.029002901166677475, + -0.009891461580991745, + 0.06118160858750343, + 0.09221430122852325, + 0.010756286792457104, + -0.011530250310897827, + 0.09415782243013382, + -0.009483445435762405, + 0.015930242836475372, + -0.028905250132083893, + 0.01092232670634985, + 0.012213582172989845, + -0.007481512147933245, + 0.0023003548849374056, + -0.04175567999482155, + -0.08797413110733032, + -0.031166506931185722, + 0.06595766544342041, + 0.08893824368715286, + -0.02859503962099552, + -0.029049929231405258, + -0.029819564893841743, + -0.02060091681778431, + -0.016170186921954155, + 0.016804026439785957, + 0.02787107788026333, + 0.0010439474135637283, + 0.023646891117095947, + -0.08899997174739838, + 0.004625880159437656, + -0.02753460593521595, + 0.04422261565923691, + 0.07397594302892685, + 0.011871649883687496, + -0.025043858215212822, + 0.055711716413497925, + -0.047987788915634155, + 0.04510021582245827, + -0.023377131670713425, + -0.010696063749492168, + -0.020162498578429222, + -0.08536754548549652, + -0.03902007266879082, + 0.04067587852478027, + 0.024142932146787643, + -0.034501004964113235, + 0.017945636063814163, + -0.04580603912472725, + 0.028958527371287346, + 0.03494666889309883, + -0.06286954134702682, + -0.04009891301393509, + 0.018896864727139473, + -0.0065893190912902355, + -0.006445839069783688, + -0.056140702217817307, + -2.7465970831030972e-08, + -0.056475330144166946, + -0.027647634968161583, + -0.0005098768160678446, + 0.021699901670217514, + 0.03488578647375107, + 0.009720946662127972, + -0.0044832974672317505, + 0.024930253624916077, + 0.011894532479345798, + -0.07044727355241776, + 0.05627846345305443, + 0.09354308992624283, + -0.05806971341371536, + -0.0329044833779335, + 0.1315375715494156, + 0.022764423862099648, + -0.03996318206191063, + 0.04710245132446289, + -0.011647774837911129, + -0.07116440683603287, + -0.022345317527651787, + 0.026326315477490425, + 0.05595875158905983, + 0.11198851466178894, + -0.025589315220713615, + -0.03771660104393959, + -0.046441707760095596, + 0.11908600479364395, + 0.054705820977687836, + 0.026227623224258423, + 0.06631359457969666, + 0.021931365132331848, + 0.03275679051876068, + 0.021778082475066185, + -0.01345452107489109, + 0.006196409929543734, + -0.03411746025085449, + 0.06859482079744339, + 0.02941766381263733, + 0.07522428035736084, + -0.03221026808023453, + 0.0046993340365588665, + 0.005600047763437033, + -0.007047781255096197, + -0.04513633996248245, + 0.02413734421133995, + 0.03786083310842514, + 0.011925728991627693, + -0.10419706255197525, + -0.106897734105587, + -0.07051616162061691, + 0.07255043089389801, + 0.038081347942352295, + 0.017507242038846016, + -0.04168427735567093, + 0.01477980799973011, + 0.009976403787732124, + 0.005352526903152466, + -0.08076321333646774, + 0.004015383310616016, + 0.06540612131357193, + 0.058113016188144684, + 0.01744774542748928, + 0.056425727903842926 + ], + "arrows-out-simple-bold||*updated*,directional,pointer,pointing,arrowhead,expand,fullscreen,resize": [ + 0.05359454080462456, + -0.0230012945830822, + 0.006209176499396563, + 0.03525898978114128, + 0.028317833319306374, + -0.0367976650595665, + 0.03061584383249283, + -0.007615596055984497, + -0.03584454581141472, + 0.02785988710820675, + 0.019904380664229393, + 0.11704406887292862, + 0.010062048211693764, + -0.03128036484122276, + -0.007229911163449287, + 0.03209466114640236, + -0.045918647199869156, + 0.02610080875456333, + -0.022177277132868767, + -0.02705325372517109, + -0.07460226863622665, + -0.055605724453926086, + -0.06350608170032501, + 0.03724914416670799, + 0.0005774289020337164, + 0.03254978358745575, + 0.012083088047802448, + 0.029989443719387054, + -0.010340889915823936, + -0.08079887181520462, + -0.04461662098765373, + -0.017074042931199074, + 0.0005819966900162399, + 0.028244562447071075, + -0.06596973538398743, + -0.03172031417489052, + 0.010677832178771496, + 0.013211610727012157, + -0.08316034823656082, + 0.037360284477472305, + 0.03553707152605057, + 0.015471374616026878, + 0.03159771487116814, + 0.04633070528507233, + 0.007588863838464022, + 0.02752586640417576, + -0.10525371879339218, + -0.03971433266997337, + 0.048143234103918076, + 0.03639800101518631, + -0.06677935272455215, + -0.09744641929864883, + -0.08526686578989029, + -0.00018513253598939627, + 0.08140239119529724, + -0.011335939168930054, + -0.04291190207004547, + -0.0057465857826173306, + 0.10579875111579895, + 0.012975329533219337, + 0.07547314465045929, + 0.01508869044482708, + 0.06625423580408096, + 0.010955572128295898, + 0.00855452474206686, + -0.023048225790262222, + 0.01306824665516615, + -0.011345879174768925, + 0.009240296669304371, + -0.014192664064466953, + 0.015346664004027843, + -0.015842480584979057, + -0.013389521278440952, + -0.03910674899816513, + 0.007096683606505394, + -0.07077363133430481, + -0.013762046582996845, + 0.050617847591638565, + -0.016382979229092598, + -0.0054094502702355385, + -0.06293454766273499, + -0.014361186884343624, + -0.05495351552963257, + 0.03450698405504227, + 0.06309403479099274, + 0.09755124151706696, + -0.05611881613731384, + -0.08011027425527573, + -0.03225050866603851, + -0.0332392156124115, + -0.04245913401246071, + -0.025576358661055565, + -0.05846014246344566, + -0.010771711356937885, + 0.015036622062325478, + -0.07204083353281021, + 0.0679154247045517, + -0.10986029356718063, + -0.13584531843662262, + 0.0993182435631752, + 0.04011806100606918, + 0.021265069022774696, + 0.06976239383220673, + -0.04508451744914055, + 0.01190065685659647, + 0.0690407082438469, + -0.032578546553850174, + -0.029728667810559273, + -0.05056172236800194, + -0.018215732648968697, + -0.04525667056441307, + -0.09832648932933807, + -0.005689270794391632, + -0.048893529921770096, + -0.02118200622498989, + -0.012806729413568974, + -0.10121684521436691, + -0.011201371438801289, + 0.09396877139806747, + 0.010244879871606827, + 0.06633013486862183, + 0.013786298222839832, + -0.06181391701102257, + -0.0430833175778389, + -0.05756213515996933, + 0.03637770190834999, + -0.01774541847407818, + -3.0752862599640282e-33, + -0.0004351231036707759, + 0.04527994617819786, + -0.018050873652100563, + 0.07301808893680573, + 0.020990880206227303, + 0.04149254783987999, + -0.023693282157182693, + -0.018926838412880898, + -0.07239685207605362, + -0.03373906761407852, + 0.14456316828727722, + 0.006676454097032547, + -0.07432371377944946, + 0.07612789422273636, + 0.08266430348157883, + -0.10798756033182144, + 0.06959161162376404, + 0.12419427931308746, + -0.07755498588085175, + -0.017097340896725655, + -0.0450664721429348, + 0.06547802686691284, + -0.07393286377191544, + -0.02943117544054985, + 0.004350210074335337, + 0.029363175854086876, + -0.021754473447799683, + 0.06871812045574188, + -0.13938498497009277, + 0.007617258001118898, + 0.007399034686386585, + 0.05343092232942581, + 0.01594330370426178, + -0.060513369739055634, + -0.0509912446141243, + -0.04419336095452309, + -0.0953802540898323, + -0.04569142684340477, + 0.023662813007831573, + -0.02853817120194435, + -0.08702101558446884, + -0.05569874495267868, + -0.029682660475373268, + -0.03479233756661415, + -0.009555570781230927, + 0.12093518674373627, + -0.08511978387832642, + -0.08074063062667847, + 0.01891917735338211, + -0.036707647144794464, + 0.015452621504664421, + 0.03849590942263603, + -0.009167992509901524, + -0.06720326095819473, + -0.0404956191778183, + -0.009242631494998932, + -0.057261206209659576, + 0.11121045798063278, + -0.005286016501486301, + 0.003060881979763508, + -0.005940478760749102, + -0.0021270914003252983, + -0.044833213090896606, + 0.049007516354322433, + -0.037855371832847595, + 0.0495622381567955, + -0.05959299951791763, + 0.05785423144698143, + 0.04043811187148094, + 0.01458877045661211, + 0.021359369158744812, + 0.03392060846090317, + 0.09345802664756775, + 0.046945687383413315, + -0.03000304289162159, + -0.01351466029882431, + -0.004199948161840439, + -0.08788749575614929, + 0.05582302063703537, + -0.09526766836643219, + -0.07958847284317017, + 0.00017211523663718253, + -0.005788340698927641, + 0.0161745622754097, + 0.04839957877993584, + -0.09264613687992096, + -0.007685595192015171, + -0.03143011033535004, + -0.001231954898685217, + 0.08415967971086502, + -0.07557559758424759, + -0.0015784165589138865, + -0.04166755452752113, + -0.04015609249472618, + -0.07028822600841522, + 8.530834566574708e-35, + 0.03961527720093727, + 0.07998362183570862, + -0.11667344719171524, + -0.018158629536628723, + -0.11012258380651474, + 0.0664137527346611, + 0.01725177839398384, + 0.05863390862941742, + 0.03577549010515213, + -0.010591510683298111, + 0.036349132657051086, + 0.05743217468261719, + -0.026453005149960518, + -0.0519588328897953, + 0.004945689346641302, + 0.024827977642416954, + 0.046762723475694656, + 0.05142039433121681, + -0.027588771656155586, + -0.021248048171401024, + 0.03908899053931236, + -0.05135728046298027, + -0.004091136623173952, + 0.016685843467712402, + 0.06303709745407104, + -0.0184884425252676, + 0.04482419416308403, + 0.07828858494758606, + -0.0043390351347625256, + -0.030167747288942337, + 0.039769914001226425, + -0.02336624450981617, + 0.02104933187365532, + 0.03994115814566612, + -0.014714252203702927, + -0.04325941950082779, + -0.0028807148337364197, + -0.07987666875123978, + 0.052675116807222366, + 0.05639713257551193, + 0.013072646223008633, + 0.036713484674692154, + 0.09365271776914597, + 0.020550983026623726, + 0.036743104457855225, + 0.10142071545124054, + 0.025094592943787575, + -0.021381506696343422, + -0.02479468658566475, + 0.01749929040670395, + 0.028980396687984467, + -0.02140793390572071, + 0.0035455457400530577, + -0.06293734163045883, + -0.10292122513055801, + -0.01787034049630165, + 0.08543933182954788, + 0.09631562978029251, + -0.02113950252532959, + -0.018976423889398575, + -0.019135495647788048, + -0.031471509486436844, + -0.0294203981757164, + -0.022358346730470657, + -0.03210168331861496, + 0.020927896723151207, + 0.010501994751393795, + -0.07264818996191025, + 0.006134290713816881, + -0.0174239594489336, + 0.06345828622579575, + 0.04307950288057327, + -0.016114922240376472, + -0.026560746133327484, + 0.024370791390538216, + -0.03157845512032509, + 0.07151517271995544, + -0.030957819893956184, + 0.013831954449415207, + -0.05190972238779068, + -0.05197381228208542, + -0.015169315040111542, + 0.052290257066488266, + 0.0044387513771653175, + 0.03719053789973259, + 0.05715474486351013, + -0.06550919264554977, + 0.0448516383767128, + 0.024196133017539978, + -0.005364423617720604, + -0.02855229377746582, + 0.02214871346950531, + 0.05535746365785599, + -0.03196825832128525, + -0.05634891986846924, + -2.6453927048919468e-08, + -0.06412064284086227, + 0.029747482389211655, + -0.025175292044878006, + -0.001188543508760631, + 0.029239529743790627, + -0.02701820246875286, + 0.01990617997944355, + 0.044545333832502365, + 0.0002050294860964641, + -0.06067831814289093, + 0.02590050920844078, + 0.05208761617541313, + -0.02421063929796219, + 0.005063173361122608, + 0.1171995997428894, + 0.06034065783023834, + -0.05429216846823692, + 0.03236187621951103, + -0.014680491760373116, + -0.06721712648868561, + -0.038920991122722626, + 0.039832763373851776, + 0.010678717866539955, + 0.06878607720136642, + -0.02882451005280018, + -0.03679976239800453, + -0.027229759842157364, + 0.14588499069213867, + 0.06088860332965851, + 0.01926434226334095, + 0.05415526404976845, + 0.02492109313607216, + 0.007566545624285936, + 0.03907758742570877, + -0.02515893615782261, + -0.01953725330531597, + -0.04306764900684357, + 0.0593663789331913, + 0.007123064715415239, + 0.06419486552476883, + -0.04544369876384735, + -0.027247276157140732, + -0.00395543547347188, + -0.010873878374695778, + -0.055489275604486465, + 0.033356186002492905, + 0.04359715059399605, + -0.00331653724424541, + -0.1178511381149292, + -0.11946659535169601, + 0.0026154418010264635, + 0.057799093425273895, + 0.02424503304064274, + 0.018542008474469185, + 0.005969539284706116, + 0.03851310536265373, + 0.017951278015971184, + 0.04710986092686653, + -0.05651525780558586, + 0.029692422598600388, + 0.06479804217815399, + 0.10907626897096634, + -0.011739027686417103, + 0.08043580502271652 + ], + "arrows-split-bold||*updated*,arrowheads,fork": [ + 0.039518654346466064, + -0.053085628896951675, + 0.0467054657638073, + 0.051759663969278336, + 0.04819703474640846, + -0.07670923322439194, + 0.030153794214129448, + -0.030298803001642227, + -0.023619292303919792, + 0.008071049116551876, + -0.0006952350377105176, + 0.03227917477488518, + -0.003454102436080575, + -0.07619710266590118, + 0.04931820183992386, + 0.05969992280006409, + -0.0724041759967804, + 0.027949972078204155, + 0.003378572640940547, + -0.05899021402001381, + -0.03806712478399277, + 0.011220277287065983, + -0.017780011519789696, + 0.07141347229480743, + 0.03911902382969856, + 0.02538248337805271, + -0.031318698078393936, + -0.00058434356469661, + 0.01709875464439392, + -0.077553890645504, + 0.0446929857134819, + -0.04721757769584656, + -0.03698473051190376, + 0.02688838168978691, + -0.040549587458372116, + 0.009374573826789856, + 0.008078616112470627, + 0.05877010524272919, + -0.03340260311961174, + 0.07259123772382736, + 0.07577469199895859, + 0.028225308284163475, + -0.01593826524913311, + -0.054205067455768585, + -0.006409329827874899, + 0.05574384331703186, + -0.0968654677271843, + -0.018753662705421448, + -0.00046178308548405766, + 0.05539064481854439, + -0.01847977004945278, + -0.11420958489179611, + -0.06111600250005722, + -0.021711191162467003, + 0.08661514520645142, + 0.01831362023949623, + -0.05373988673090935, + -0.043835125863552094, + 0.10552997887134552, + 0.044624198228120804, + 0.050804346799850464, + 0.06383848190307617, + 0.03995097056031227, + -0.0017663234611973166, + 0.04024779424071312, + 0.01954258233308792, + 0.03732142224907875, + 0.02150295116007328, + -0.020969552919268608, + 0.04158024862408638, + 0.03362264111638069, + -0.009016245603561401, + -0.008330664597451687, + -0.06848491728305817, + -0.042438387870788574, + -0.013374063186347485, + 0.05391305312514305, + 0.06500644236803055, + -0.028299283236265182, + -0.030188225209712982, + -0.11091873794794083, + -0.039088547229766846, + -0.05919266864657402, + -0.03395400568842888, + 0.04465938359498978, + 0.07111545652151108, + -0.09274427592754364, + -0.08527764678001404, + -0.08714412897825241, + -0.04091577231884003, + -0.05769404396414757, + 0.0006808144389651716, + 0.10277512669563293, + 0.05044979229569435, + 0.058372288942337036, + 0.01127034891396761, + 0.05932813137769699, + -0.00016007776139304042, + -0.06316788494586945, + 0.1363125890493393, + -0.0271044559776783, + 0.022059917449951172, + 0.0021559307351708412, + -0.04244738817214966, + 0.03456147015094757, + 0.02533910423517227, + -0.03603149205446243, + -0.02312680333852768, + -0.017008043825626373, + -0.01915106177330017, + 0.005948166828602552, + -0.09837518632411957, + -0.0005402960814535618, + -0.07498084753751755, + -0.030505863949656487, + -0.0583309531211853, + -0.0708620622754097, + -0.04324224218726158, + 0.062993124127388, + 0.053513240069150925, + 0.07941698282957077, + -0.048773422837257385, + -0.023520207032561302, + -0.05703943967819214, + 0.014082593843340874, + 0.0034511343110352755, + -0.008153557777404785, + -2.6584998605296086e-33, + 0.05226299539208412, + 0.030097596347332, + -0.010683656670153141, + 0.011064941994845867, + 0.06292888522148132, + 0.023565292358398438, + -0.062476035207509995, + -0.08543738722801208, + -0.07874862849712372, + 0.013852527365088463, + 0.10048907995223999, + -0.011246980167925358, + -0.08093667775392532, + 0.0406331941485405, + 0.005557102616876364, + -0.12845560908317566, + 0.08451922982931137, + 0.056725744158029556, + -0.06679069250822067, + -0.0032389573752880096, + -0.06448429822921753, + 0.016797956079244614, + -0.09050099551677704, + -0.006661270745098591, + -0.05994562432169914, + -0.024042390286922455, + -0.011197470128536224, + -0.009918898344039917, + -0.009339983575046062, + 0.035252027213573456, + -0.040968023240566254, + 0.09043417870998383, + 0.046500105410814285, + -0.003043021773919463, + -0.035719551146030426, + -0.025486735627055168, + -0.08745451271533966, + -0.013310205191373825, + -0.030526425689458847, + -0.021043408662080765, + -0.0031660625245422125, + -0.04881700500845909, + -0.03952734172344208, + -0.012589186429977417, + -0.0071555874310433865, + 0.06858851760625839, + -0.1507299691438675, + -0.034239500761032104, + 0.018734758719801903, + -0.021836664527654648, + 0.06960675865411758, + 0.06398329138755798, + 0.042897406965494156, + 0.017031796276569366, + -0.000674512586556375, + -0.025738367810845375, + -0.07910389453172684, + 0.13164886832237244, + 0.06114599108695984, + 0.024095412343740463, + -0.04364588111639023, + 0.029364999383687973, + 0.010251298546791077, + 0.07222077250480652, + -0.0369812436401844, + 0.12452772259712219, + -0.03805496171116829, + 0.08729984611272812, + 0.025004975497722626, + -0.004726193379610777, + -0.030701519921422005, + 0.03914215415716171, + 0.013084416277706623, + 0.017427589744329453, + -0.011482012458145618, + -0.015535186976194382, + -0.042371541261672974, + -0.017506375908851624, + 0.08765075355768204, + -0.09130573272705078, + -0.0360577218234539, + 0.027791960164904594, + -0.05674241483211517, + 0.011820142157375813, + 0.11081231385469437, + -0.013981723226606846, + 0.005369864869862795, + -0.028835125267505646, + -0.04252181574702263, + 0.06823628395795822, + -0.05936926230788231, + 0.012203721329569817, + -0.0015060963341966271, + -0.0359794907271862, + -0.03428071737289429, + 5.067875733921511e-34, + 0.04472832381725311, + 0.06492763012647629, + -0.0646391436457634, + 0.016491811722517014, + -0.06267226487398148, + -0.02438889443874359, + 0.005119475070387125, + 0.045404769480228424, + -0.023973610252141953, + -0.004061083309352398, + 0.01656433753669262, + 0.04474986717104912, + -0.10706330835819244, + 0.0023026105482131243, + -0.011398239061236382, + -0.03816332295536995, + 0.10918055474758148, + 0.05087672173976898, + 0.045132700353860855, + -0.008112325333058834, + -0.010677456855773926, + -0.05255644768476486, + -0.056237783282995224, + 0.05104440078139305, + 0.020212290808558464, + -0.004463616758584976, + 0.025395115837454796, + 0.05068347603082657, + 0.0016900256741791964, + -0.05612003058195114, + -0.030163105577230453, + -0.04531076177954674, + -0.00655923830345273, + 0.001414444763213396, + -0.07326743751764297, + 0.032994579523801804, + -0.065773144364357, + -0.07223097234964371, + 0.052870627492666245, + 0.06389136612415314, + -0.029047220945358276, + -0.011915970593690872, + -0.030462341383099556, + 0.03005940653383732, + 0.03146859630942345, + 0.05892891809344292, + 0.028193959966301918, + 0.029903171584010124, + -0.04678982496261597, + -0.01580253802239895, + 0.06717319041490555, + -0.007743163965642452, + 0.028490062803030014, + -0.016765659675002098, + -0.05533112585544586, + -0.0571594312787056, + 0.09168101102113724, + 0.10706823319196701, + -0.08021268993616104, + -0.013031215406954288, + -0.04556667432188988, + 0.001061779446899891, + -0.0007234381628222764, + 0.007646733429282904, + 0.05089498683810234, + -0.07905836403369904, + 0.026119520887732506, + -0.11767314374446869, + 0.053867992013692856, + -0.04157146066427231, + 0.06474816054105759, + 0.049116116017103195, + -0.012286888435482979, + -0.002322259359061718, + 0.05839470028877258, + -0.05041350796818733, + 0.01244129054248333, + -0.022352280095219612, + 0.019461646676063538, + 0.03194454684853554, + -0.10773908346891403, + -0.05650970712304115, + 0.0583813413977623, + 0.005740543361753225, + -0.040790148079395294, + -0.031936369836330414, + -0.009649418294429779, + 0.026701102033257484, + 0.028330495581030846, + -0.07965045422315598, + -0.008421762846410275, + -0.025986336171627045, + 0.04955567419528961, + 0.008262934163212776, + -0.04289862513542175, + -1.8891114450525492e-08, + 0.025698469951748848, + 0.05553548038005829, + -0.09999138116836548, + 0.017321715131402016, + 0.04853362590074539, + -0.008679582737386227, + -0.03614421188831329, + -0.03774749115109444, + -0.05213730037212372, + -0.06892924010753632, + 0.050146959722042084, + 0.08638986200094223, + -0.036899834871292114, + 0.006486775353550911, + 0.06325465440750122, + -0.01781800016760826, + 0.004521307069808245, + 0.05821102857589722, + -0.04235363379120827, + -0.07213938981294632, + -0.07611577957868576, + 0.0645621046423912, + 0.05400307476520538, + 0.06429954618215561, + -0.05315506458282471, + -0.08163230866193771, + 0.029694534838199615, + 0.09713690727949142, + 0.04137374088168144, + 0.03775232657790184, + 0.00018904167518485337, + -0.001146688126027584, + -0.019322387874126434, + 0.03317129611968994, + 0.0044774156995117664, + -0.03075909987092018, + -0.0948268473148346, + 0.0858449935913086, + 0.0822601318359375, + 0.10662444680929184, + -0.03596815839409828, + -0.014042409136891365, + 0.027976742014288902, + -0.012876257300376892, + -0.1078704297542572, + 0.0309157632291317, + 0.014077971689403057, + 0.022990243509411812, + -0.059741415083408356, + -0.058128032833337784, + 0.011359493248164654, + 0.05978181213140488, + 0.0073067802004516125, + 0.050023242831230164, + -0.008518082089722157, + 0.01956203766167164, + 0.04529751464724541, + 0.07555456459522247, + -0.0408468134701252, + -0.008877742104232311, + 0.0513833686709404, + -0.009883962571620941, + 0.05135097727179527, + 0.03156811743974686 + ], + "arrows-vertical-bold||*updated*,directional,pointer,cursor,resize,expand,up,down": [ + 0.005008917301893234, + -0.050334542989730835, + -0.022614195942878723, + 0.013884223997592926, + -0.03108943998813629, + -0.04136272519826889, + 0.002491109538823366, + -0.01191577035933733, + 0.0009175996528938413, + 0.02138068526983261, + 0.016554228961467743, + 0.13528409600257874, + 0.017726505175232887, + -0.036112312227487564, + -0.0214775949716568, + 0.10543858259916306, + -0.040721531957387924, + 0.04360650107264519, + -0.03174489364027977, + -0.018955858424305916, + -0.06003889441490173, + -0.02714894898235798, + -0.01927480287849903, + 0.03969356790184975, + 0.012498531490564346, + 0.05082279443740845, + 0.03089657612144947, + 0.03376040235161781, + 0.011721923016011715, + -0.06427669525146484, + -0.07785996794700623, + -0.005566439125686884, + 0.016847465187311172, + 0.03899526968598366, + -0.04013504460453987, + -0.02637794427573681, + 0.017039787024259567, + 0.015084994025528431, + -0.04680944234132767, + 0.07776527851819992, + 0.0712229460477829, + -0.0383794903755188, + 0.0003685694537125528, + 0.0011263239430263638, + -0.009509194642305374, + 0.014707384631037712, + -0.07123655080795288, + -0.025652915239334106, + 0.019435614347457886, + 0.0631764680147171, + -0.04575447738170624, + -0.10045992583036423, + -0.0942666307091713, + -0.0019246009178459644, + 0.09038219600915909, + 0.02220885455608368, + 0.0010504897218197584, + -0.03868217021226883, + 0.11460252106189728, + -0.025451118126511574, + 0.0862458124756813, + 0.015941072255373, + 0.0512935034930706, + 0.010367521084845066, + 0.006611068267375231, + 0.017606796696782112, + -0.027882982045412064, + 0.011080042459070683, + 0.02941562607884407, + 0.023199310526251793, + 0.03145600110292435, + -0.009553991258144379, + -0.020362891256809235, + -0.02674144320189953, + -0.01174668688327074, + -0.039451438933610916, + 0.02571268565952778, + 0.03813531994819641, + 0.03159341961145401, + -0.028924286365509033, + -0.050098635256290436, + -0.0037868868093937635, + -0.08380931615829468, + 0.062072861939668655, + 0.04031694307923317, + 0.09435506910085678, + -0.04123673215508461, + -0.09972624480724335, + -0.043165598064661026, + -0.05300068482756615, + 0.0036029014736413956, + -0.032113607972860336, + -0.06292885541915894, + -0.021329184994101524, + -0.03333528712391853, + -0.07827553898096085, + 0.08251228928565979, + -0.12999826669692993, + -0.11397743225097656, + 0.07950892299413681, + 0.045534178614616394, + 0.021967055276036263, + 0.04549963027238846, + -0.029165394604206085, + -0.022426769137382507, + 0.03685628995299339, + -0.04915039613842964, + -0.05987894907593727, + -0.04092000797390938, + 0.0326191671192646, + -0.056493740528821945, + -0.11579220741987228, + -0.015150683000683784, + -0.025475844740867615, + -0.04504065215587616, + -0.009798740036785603, + -0.1122327670454979, + -0.007993114180862904, + 0.07863141596317291, + -0.0009164890507236123, + 0.08393529057502747, + 6.51730370009318e-05, + -0.04883353412151337, + -0.030234137549996376, + -0.05971313267946243, + 0.027437293902039528, + -0.0007185498834587634, + -2.7649557513469443e-33, + 0.028386220335960388, + 0.010952560231089592, + 0.010549529455602169, + 0.06960006058216095, + 0.024152228608727455, + 0.0350928008556366, + -0.06606937944889069, + -0.027072150260210037, + -0.07675033062696457, + -0.00011732887651305646, + 0.11535925418138504, + 0.04288119450211525, + -0.06956832110881805, + 0.0824153944849968, + 0.03915473073720932, + -0.12291545420885086, + 0.07187820225954056, + 0.10470638424158096, + -0.11260644346475601, + -0.0389610230922699, + -0.029695410281419754, + 0.04080585017800331, + -0.0688880905508995, + -0.018562203273177147, + -0.01077903900295496, + -0.03825381025671959, + -0.016657501459121704, + 0.029399391263723373, + -0.12653307616710663, + 0.0057814898900687695, + -0.027631210163235664, + 0.04609328508377075, + 0.013323924504220486, + -0.07302170246839523, + -0.04324861243367195, + 0.03268926218152046, + -0.10216901451349258, + -0.047630902379751205, + 0.01659933663904667, + -0.017593050375580788, + -0.05498955026268959, + -0.06380972266197205, + -0.0161345973610878, + -0.04289447143673897, + 0.029324159026145935, + 0.10954444855451584, + -0.0793808177113533, + -0.06612232327461243, + -0.010283591225743294, + -0.04028736799955368, + 0.031250447034835815, + 0.049268174916505814, + -0.012351278215646744, + -0.04117628186941147, + 0.03062196634709835, + -0.024893905967473984, + -0.04584265127778053, + 0.11762404441833496, + -0.028852632269263268, + 0.004628486465662718, + -0.010780452750623226, + -0.02917991764843464, + -0.006512967403978109, + 0.03863454610109329, + -0.027466608211398125, + 0.0423041395843029, + -0.0972314178943634, + 0.06137529015541077, + 0.11338647454977036, + 0.04436071217060089, + 0.033444844186306, + 0.0425892099738121, + 0.051229074597358704, + 0.025905149057507515, + -0.04588392749428749, + 0.002777631161734462, + -0.023629052564501762, + -0.0649247020483017, + 0.05060150846838951, + -0.07917673885822296, + -0.07917806506156921, + -0.024289309978485107, + -0.022748442366719246, + 0.006122219376266003, + 0.06199685484170914, + -0.06997254490852356, + -0.016550974920392036, + 0.0027248223777860403, + 0.007521044462919235, + 0.061416491866111755, + -0.06458405405282974, + -0.009918063879013062, + 0.0005815624608658254, + -0.041262924671173096, + -0.05983417481184006, + -3.793958067624339e-34, + 0.012053043581545353, + 0.0696340873837471, + -0.071663498878479, + -0.006209926679730415, + -0.12156227976083755, + 0.036902766674757004, + -0.0016093006124719977, + 0.039718981832265854, + -0.03823316469788551, + 0.005009644199162722, + 0.010714678093791008, + 0.05236427113413811, + -0.025700589641928673, + -0.07708881795406342, + 0.07035041600465775, + 0.056147053837776184, + 0.002005541231483221, + 0.056881777942180634, + 0.007552287541329861, + -0.036636848002672195, + 0.03153965622186661, + -0.0372498519718647, + 0.010984530672430992, + 0.04559408873319626, + 0.03226679563522339, + -0.02671041525900364, + 0.06923940777778625, + 0.04396776109933853, + 0.009989330545067787, + -0.00425522867590189, + 0.05450131371617317, + -0.014150156639516354, + 0.014506853185594082, + 0.05123724415898323, + -0.003522817976772785, + -0.05116801708936691, + 0.03609274700284004, + -0.08323831111192703, + 0.06770917028188705, + 0.0007837201119400561, + 0.015604724176228046, + 0.045021235942840576, + 0.12188023328781128, + 0.0014359576161950827, + 0.02026217058300972, + 0.0740044116973877, + 0.0033413295168429613, + 0.004803171847015619, + 0.008243720047175884, + -0.012291092425584793, + 0.019871048629283905, + -0.028639789670705795, + 0.0031061279587447643, + -0.019354822114109993, + -0.09789816290140152, + -0.011812182143330574, + 0.07107274979352951, + 0.03637350723147392, + -0.01822432316839695, + -0.029114672914147377, + -0.06772729009389877, + -0.054985228925943375, + -0.0018278141506016254, + -0.0013440287439152598, + -0.02045374922454357, + 0.03594312444329262, + 0.031458839774131775, + -0.07384034246206284, + -0.024682551622390747, + -0.014865542761981487, + 0.08389787375926971, + 0.08108482509851456, + 0.009167684242129326, + -0.00866468995809555, + 0.044501159340143204, + -0.08474482595920563, + 0.06335563957691193, + -0.0023555520456284285, + -0.0036156033165752888, + -0.03345197066664696, + -0.07677687704563141, + -0.015370426699519157, + 0.02219332754611969, + 0.05775586888194084, + -0.06040281802415848, + 0.06673002243041992, + -0.06280601024627686, + 0.0556061714887619, + 0.04964098706841469, + -0.027088712900877, + -0.042438261210918427, + -0.012535277754068375, + -0.028439117595553398, + -0.08322922885417938, + -0.023341519758105278, + -2.5111983603665067e-08, + -0.07107392698526382, + 0.003536455100402236, + -0.017701061442494392, + -0.004499679896980524, + 0.05048663914203644, + -0.013886231929063797, + -0.01639905944466591, + 0.03915298357605934, + -1.3663287973031402e-05, + -0.05971010401844978, + 0.06472925841808319, + 0.07181824743747711, + -0.009646939113736153, + -0.03682815656065941, + 0.12913405895233154, + 0.030732035636901855, + -0.034442733973264694, + 0.04183823987841606, + -0.00011830979929072782, + -0.06407540291547775, + -0.017381323501467705, + 0.05503438040614128, + 0.035163335502147675, + 0.082989901304245, + -0.016235338523983955, + -0.04305419698357582, + -0.08591124415397644, + 0.11212685704231262, + 0.07819699496030807, + 0.031153859570622444, + 0.09140567481517792, + 0.02158976159989834, + 0.0581992082297802, + 0.033769406378269196, + -0.019491536542773247, + -0.03597417101264, + -0.008229241706430912, + 0.04789019748568535, + 0.0004807232762686908, + 0.05035040155053139, + -0.04202873259782791, + -0.022646035999059677, + 0.01314319297671318, + -0.016393933445215225, + -0.05567319691181183, + 0.006758785340934992, + 0.03086436167359352, + 0.017145032063126564, + -0.09658636152744293, + -0.10414988547563553, + -0.039786193519830704, + 0.06709091365337372, + 0.06987164914608002, + 0.061558544635772705, + -0.01516199205070734, + 0.00422357814386487, + -0.040528908371925354, + 0.05228911712765694, + -0.0760200247168541, + 0.030069278553128242, + 0.07918975502252579, + 0.07892104238271713, + -0.019754167646169662, + 0.025450745597481728 + ], + "article-bold||reading,writing,journals,periodicals,text,newspaper": [ + 0.07699983566999435, + -0.02639366313815117, + -0.05300714820623398, + 0.08972351253032684, + 0.021320730447769165, + 0.03280625119805336, + -0.011904804036021233, + 0.0049940296448767185, + 0.020406877622008324, + 0.041910719126462936, + 0.006614577490836382, + 0.10323689877986908, + 0.027463247999548912, + 0.004250854253768921, + 0.021494602784514427, + -0.009866767562925816, + 0.01697937771677971, + 0.04259118065237999, + 0.016169534996151924, + 0.053035151213407516, + 0.04001684486865997, + 0.07089241594076157, + 0.07055993378162384, + 0.007486122194677591, + 0.040829502046108246, + -0.01643459126353264, + -0.03345891460776329, + -0.06257130205631256, + -0.007799393497407436, + -0.058987997472286224, + -0.07590529322624207, + 0.018570972606539726, + 0.09670127928256989, + 0.01789541356265545, + 0.039147309958934784, + 0.013002816587686539, + 0.008781561627984047, + -0.03225356712937355, + 0.0606917105615139, + 0.08372955769300461, + 0.047605883330106735, + -0.10026710480451584, + -0.03001490980386734, + 0.0014854249311611056, + -0.016239359974861145, + -0.042724963277578354, + -0.08523961901664734, + 0.05042994022369385, + -0.055923942476511, + 0.03368503972887993, + -0.03494342043995857, + -0.05537116900086403, + -0.09897808730602264, + 0.03467084839940071, + 0.01892091892659664, + -0.045462511479854584, + -0.12283557653427124, + 0.022494299337267876, + 0.009596103802323341, + -0.044050272554159164, + 0.0012126194778829813, + 0.01961621642112732, + -0.04969484731554985, + 0.08122269064188004, + 0.06507662683725357, + 0.01125112734735012, + 0.007974972017109394, + 0.028968021273612976, + -0.06308894604444504, + -0.008222859352827072, + 0.04345507547259331, + 0.024153996258974075, + 0.03617996349930763, + 0.006835690699517727, + -0.013396426104009151, + -0.06062275543808937, + 0.016900528222322464, + -0.01805017702281475, + -0.004187660291790962, + -0.048246316611766815, + -0.02470133826136589, + -0.028813259676098824, + -0.01518313493579626, + -0.027689944952726364, + -0.005247011780738831, + 0.032180819660425186, + -0.05155951902270317, + -0.06386745721101761, + 0.010990174487233162, + -0.03512542322278023, + -0.04063457250595093, + -0.07414837926626205, + -0.0020723084453493357, + 0.034999243915081024, + -0.0745403990149498, + 0.0005150227807462215, + 0.043181635439395905, + 0.0064435978420078754, + 0.01755364239215851, + 0.06445485353469849, + 0.0789477676153183, + 0.055050674825906754, + 0.039720915257930756, + 0.02999262511730194, + -0.03291076049208641, + -0.1121881902217865, + -0.04327293112874031, + -0.016870679333806038, + -0.06529724597930908, + 0.02464723028242588, + -0.032569508999586105, + 9.040541044669226e-05, + -0.008935428224503994, + -0.051432911306619644, + 0.01314080785959959, + -0.05374188348650932, + 0.008936773985624313, + -0.014341861009597778, + 0.1287699192762375, + 0.07701043784618378, + -0.051445215940475464, + 0.011033322662115097, + -0.03047681786119938, + -0.05007677152752876, + -0.044820331037044525, + 0.02150760032236576, + 0.015882067382335663, + -2.8917686329266296e-33, + 0.04483155906200409, + 0.07656634598970413, + -0.03284970298409462, + 0.12716370820999146, + -0.0691603273153305, + 0.03299204260110855, + -0.04933389648795128, + -0.07241871953010559, + -0.04302854463458061, + -0.05137524753808975, + 0.04695664346218109, + 0.1097104474902153, + -0.01807413622736931, + 0.08711184561252594, + 0.03614446893334389, + 0.007443088106811047, + -0.03239798545837402, + 0.033650025725364685, + -0.05194780230522156, + -0.019339924678206444, + 0.020262381061911583, + -0.00617334945127368, + 0.004764002747833729, + 0.004833991639316082, + -0.011379689909517765, + -0.035963088274002075, + 0.00041825094376690686, + -0.08173857629299164, + -0.10948770493268967, + 0.0348612517118454, + 0.03453018516302109, + 0.01992698572576046, + -0.010111584328114986, + -0.04439323768019676, + -0.0060873148031532764, + 0.04322477802634239, + 0.0018898306880146265, + 0.013242819346487522, + 0.015348589979112148, + -0.007710856851190329, + -0.10558298230171204, + -0.04450604319572449, + 0.018496235832571983, + -0.007297572214156389, + 0.08311615884304047, + 0.16178034245967865, + -0.0571584552526474, + -0.07390300929546356, + 0.042041677981615067, + -0.01111655030399561, + 0.022654512897133827, + -0.03277553990483284, + -0.02155979909002781, + -0.010861832648515701, + 0.08630800247192383, + 0.04758291319012642, + 0.0005618627765215933, + 0.02956371195614338, + -0.010982022620737553, + -0.0014589271740987897, + 0.06938190758228302, + 0.07433199137449265, + 0.02759883552789688, + 0.020413478836417198, + -0.002459137234836817, + 0.08223968744277954, + -0.09342349320650101, + 0.03049507364630699, + 0.09251298755407333, + -0.010698093101382256, + 0.023750146850943565, + 0.03036149963736534, + -0.0058973259292542934, + 0.02860463224351406, + -0.06443236768245697, + 0.0558459497988224, + -0.025075268000364304, + -0.05971481278538704, + -0.015762466937303543, + -0.006237965542823076, + -0.05674196407198906, + 0.010159392841160297, + -0.030429745092988014, + 0.04716109111905098, + -0.020276663824915886, + -0.005082281772047281, + 0.01306839007884264, + -0.0910172387957573, + 0.03666425868868828, + -0.021162230521440506, + -0.011813361197710037, + 0.04563327133655548, + -0.005737676750868559, + -0.05236447975039482, + -0.08679961413145065, + -5.120961242475638e-34, + -0.037751179188489914, + -0.03553399816155434, + -0.05269395187497139, + 0.02104385383427143, + -0.05218588188290596, + 0.02315623126924038, + -0.06486140936613083, + 0.03846585005521774, + 0.042257487773895264, + 0.026661871001124382, + -0.02117541804909706, + -0.0817367285490036, + -0.09674478322267532, + 0.03526333346962929, + -0.020125020295381546, + -0.00027753014001064, + 0.04880782216787338, + 0.006321566179394722, + -0.06935561448335648, + 0.1028776466846466, + -0.06710484623908997, + -0.0715271383523941, + -0.060295265167951584, + 0.10599708557128906, + 0.04980136454105377, + -0.004762370605021715, + 0.00880427286028862, + -0.04611528664827347, + -0.09363214671611786, + -0.062179043889045715, + -0.02698126807808876, + -0.06041917949914932, + 0.0543767511844635, + 0.03692985326051712, + -0.08434410393238068, + 0.05210518464446068, + 0.07559750229120255, + -0.04701986163854599, + 0.009682797826826572, + -0.01292140781879425, + 0.03253934532403946, + 0.03363783285021782, + 0.03969305753707886, + 0.0013548508286476135, + -0.060185447335243225, + 0.007265355903655291, + -0.042986899614334106, + -0.06857334822416306, + 0.0029671676456928253, + 0.0481070876121521, + -0.0027467815671116114, + -0.0353245884180069, + -0.0072892652824521065, + 0.009851374663412571, + -0.07894063740968704, + -0.0032293081749230623, + -0.026684528216719627, + -0.03677966818213463, + -0.02882583998143673, + 0.040027618408203125, + -0.020870259031653404, + 0.10447333008050919, + -0.09720492362976074, + 0.061255764216184616, + 0.022762712091207504, + -0.14568963646888733, + -0.005569383502006531, + -0.05439155548810959, + -0.023540029302239418, + 0.01638110913336277, + 0.06090371683239937, + 0.013838504441082478, + 0.02088124118745327, + -0.032687634229660034, + 0.022924154996871948, + 0.009061768651008606, + 0.04478755593299866, + 0.046632200479507446, + -0.06313148140907288, + 0.01598145067691803, + -0.021494543179869652, + 0.030526336282491684, + -0.06163797527551651, + 0.053726065903902054, + -0.03994952514767647, + 0.05571265146136284, + 0.01601487025618553, + -0.1064361035823822, + -0.04348820447921753, + -0.025717128068208694, + 0.007977682165801525, + -0.04383639618754387, + -0.014760403893887997, + -0.00545088155195117, + -0.05550791695713997, + -2.053882042218902e-08, + -0.009173542261123657, + -0.061010900884866714, + -0.07122748345136642, + -0.000702756573446095, + 0.010744034312665462, + -0.022138357162475586, + 0.03231648728251457, + -0.0863397940993309, + -0.050207480788230896, + 0.0456002913415432, + -0.007420873269438744, + 0.017082005739212036, + -0.07244165986776352, + -0.0521533265709877, + 0.06650913506746292, + -0.043439336121082306, + 0.018289681524038315, + 0.019380517303943634, + -0.016644643619656563, + -0.04558109492063522, + 0.07018857449293137, + 0.038461264222860336, + 0.010056629776954651, + -0.02918391488492489, + 0.09674449265003204, + 0.05740664526820183, + -0.0623130239546299, + -0.0803152546286583, + 0.07304304093122482, + 0.06661439687013626, + -0.007693454157561064, + 0.09124410897493362, + -0.050206054002046585, + 0.02097531221807003, + -0.0794890895485878, + 0.009120641276240349, + 0.11577833443880081, + -0.011242789216339588, + -0.06402790546417236, + 0.1297779232263565, + 0.0515805259346962, + -0.05151587724685669, + -0.01519914623349905, + -0.008703913539648056, + 0.05253458768129349, + 0.019887320697307587, + 0.0236678384244442, + -0.022273872047662735, + 0.04571664333343506, + -0.12143363803625107, + -0.0022579620126634836, + -0.039981503039598465, + 0.1377258449792862, + 0.021485047414898872, + -0.06852995604276657, + -0.0273298230022192, + 0.042937345802783966, + 0.058736301958560944, + -0.022566543892025948, + -0.022952649742364883, + 0.13706578314304352, + 0.0008262635092251003, + 0.06820131838321686, + 0.006535637658089399 + ], + "article-medium-bold||*updated*,reading,writing,journals,periodicals,text,newspaper": [ + 0.07922965288162231, + -0.034966837614774704, + -0.0449085496366024, + 0.0899762287735939, + 0.03556111454963684, + 0.02097404934465885, + -0.00519201485440135, + 0.01586010865867138, + 0.003026180202141404, + 0.062411293387413025, + -0.009073646739125252, + 0.06573694199323654, + 0.004260760731995106, + 0.012587547302246094, + 0.019285358488559723, + -0.013119091279804707, + 0.03909854218363762, + 0.023177415132522583, + -0.005805825348943472, + 0.042452551424503326, + 0.025480974465608597, + 0.06041577458381653, + 0.0713861733675003, + -0.00922122597694397, + 0.05086882412433624, + -0.03565066307783127, + -0.05941741541028023, + -0.0790552869439125, + -0.014992267824709415, + -0.050701480358839035, + -0.07735077291727066, + 0.058842673897743225, + 0.1017412394285202, + 0.020348867401480675, + 0.0014598225243389606, + 0.027048220857977867, + -0.014571945182979107, + -0.009969948790967464, + 0.045297082513570786, + 0.08286559581756592, + 0.056703001260757446, + -0.09896869212388992, + -0.028398318216204643, + -0.006272825412452221, + -0.04681015387177467, + -0.032510995864868164, + -0.06582928448915482, + 0.06932016462087631, + -0.09273159503936768, + 0.02919568307697773, + -0.04290293529629707, + -0.0697457417845726, + -0.12504839897155762, + 0.04064979776740074, + 0.0051999809220433235, + -0.04054020717740059, + -0.06780689209699631, + 0.04564693570137024, + 0.030033433809876442, + -0.053800955414772034, + -0.0032449422869831324, + 0.026944035664200783, + -0.04965416342020035, + 0.06360198557376862, + 0.09069223701953888, + 0.032690782099962234, + -0.007297748699784279, + 0.008408550173044205, + -0.05309294909238815, + -0.020134784281253815, + 0.06426379084587097, + 0.042646847665309906, + 0.04910489171743393, + 0.016938215121626854, + 0.01469128206372261, + -0.11044749617576599, + 0.027841081842780113, + -0.004625407513231039, + -0.006320829503238201, + 0.00017700872558634728, + 0.008321582339704037, + -0.034944795072078705, + -0.04070591926574707, + -0.02568894252181053, + 0.030559267848730087, + 0.02024940960109234, + -0.05748265981674194, + -0.06427253037691116, + -0.01921886019408703, + -0.04697655886411667, + -0.03270049765706062, + -0.058456242084503174, + -0.025732211768627167, + 0.019978433847427368, + -0.060085561126470566, + -0.0053961933590471745, + 0.01545739732682705, + -0.014046279713511467, + 0.03328147530555725, + 0.04995710030198097, + 0.05615002289414406, + 0.043148189783096313, + 0.017817072570323944, + 0.018937425687909126, + -0.04301008954644203, + -0.12104330211877823, + -0.02671652100980282, + 0.029338248074054718, + -0.0518697127699852, + 0.036034706979990005, + -0.0044423798099160194, + -0.015132944099605083, + -0.010340351611375809, + -0.05884088575839996, + 0.019720319658517838, + -0.008068724535405636, + 0.025586077943444252, + 0.018121695145964622, + 0.10854072123765945, + 0.0760846734046936, + -0.008959099650382996, + 0.015542187727987766, + -0.006432043854147196, + -0.05887482315301895, + -0.04777843505144119, + 0.018513774499297142, + 0.024661850184202194, + -3.140306342256863e-33, + 0.01753213442862034, + 0.04653539881110191, + -0.05317956209182739, + 0.10302887111902237, + -0.044864472001791, + 0.03160950914025307, + -0.05027703940868378, + -0.10456713289022446, + -0.016695793718099594, + -0.065822072327137, + 0.04352215304970741, + 0.1494830846786499, + -0.0698854923248291, + 0.0948464423418045, + 0.015541582368314266, + -0.004608467221260071, + 0.005232258699834347, + 0.06634598970413208, + -0.018274761736392975, + -0.01915144734084606, + 0.006809258833527565, + 0.006574002560228109, + -0.008222708478569984, + -0.005109408870339394, + -0.002170382998883724, + -0.06117372214794159, + 0.0007898894837126136, + -0.07766151428222656, + -0.08304432034492493, + 0.016425857320427895, + 0.016458889469504356, + 0.014638189226388931, + 0.016423169523477554, + -0.03915207087993622, + -0.03284863755106926, + 0.0471685491502285, + -0.014211570844054222, + -0.0027009418699890375, + 0.03431332856416702, + -0.043803613632917404, + -0.0879761129617691, + -0.018936045467853546, + 0.001151281758211553, + -0.008217491209506989, + 0.04450956732034683, + 0.13539168238639832, + -0.05306205153465271, + -0.07962368428707123, + 0.017984885722398758, + -0.029493089765310287, + 0.038466621190309525, + -0.040169112384319305, + 0.0013881823979318142, + -0.023077616468071938, + 0.08893510699272156, + 0.07468414306640625, + 0.025471946224570274, + 0.03032037802040577, + 0.006796864792704582, + 0.0018325616838410497, + 0.09064367413520813, + 0.028584681451320648, + 0.03772513568401337, + 0.018927251920104027, + 0.017431436106562614, + 0.08534824103116989, + -0.09082255512475967, + 0.01968807354569435, + 0.08803687989711761, + -0.01626194827258587, + 0.020746661350131035, + 0.043148625642061234, + -0.009181286208331585, + 0.05771539732813835, + -0.05604473128914833, + 0.03400370851159096, + -0.04148384928703308, + -0.04307195916771889, + -0.010336440056562424, + 0.015623658895492554, + -0.06158724054694176, + 0.01279388926923275, + -0.06685034185647964, + 0.038329388946294785, + -0.04450461268424988, + 0.030795639380812645, + 0.00963729340583086, + -0.049935683608055115, + 0.006199524272233248, + -0.03418811783194542, + -0.04503542184829712, + 0.05316504091024399, + -0.014556554146111012, + -0.041410911828279495, + -0.05807243660092354, + -6.649156244777422e-34, + -0.048176467418670654, + -0.023230591788887978, + -0.08887770771980286, + 0.0545690581202507, + -0.03130267187952995, + 0.006718138232827187, + -0.06425875425338745, + 0.04815495014190674, + 0.05338624119758606, + 0.028854435309767723, + 0.023036599159240723, + -0.09942194819450378, + -0.13089202344417572, + 0.014925502240657806, + -0.022308481857180595, + -0.007900509983301163, + 0.01550254039466381, + 0.007764885667711496, + -0.042630333453416824, + 0.11293007433414459, + -0.08136533945798874, + -0.11473587155342102, + -0.03587644174695015, + 0.1072411835193634, + 0.03368467465043068, + -0.030931830406188965, + 0.0034579059574753046, + -0.03771300986409187, + -0.10714199393987656, + -0.06096045672893524, + -0.02147185616195202, + -0.08442028611898422, + 0.06504939496517181, + 0.03519747033715248, + -0.05317492038011551, + 0.0494128055870533, + 0.10040058940649033, + -0.06917885690927505, + -0.006986008025705814, + -0.016088636592030525, + 0.05381998419761658, + 0.03421949967741966, + 0.02636142447590828, + -0.02068161591887474, + -0.06789769977331161, + 0.03056073747575283, + -0.03692237287759781, + -0.07861391454935074, + 0.002358671510592103, + 0.029254386201500893, + 0.04483593627810478, + -0.04728154465556145, + 0.017318975180387497, + -0.010729326866567135, + -0.08869591355323792, + 0.0163874588906765, + -0.03430314362049103, + -0.01581617258489132, + -0.042213618755340576, + 0.02862873114645481, + -0.009400605224072933, + 0.06429091840982437, + -0.09294898062944412, + 0.01660003326833248, + 0.017770834267139435, + -0.12379741668701172, + -0.012829668819904327, + -0.08470051735639572, + -0.06071652099490166, + 0.03730421140789986, + 0.053479135036468506, + 0.012847602367401123, + 0.0016740420833230019, + -0.020387543365359306, + 0.02207467518746853, + -0.04019715264439583, + 0.033835917711257935, + 0.030557408928871155, + -0.05173623934388161, + 0.002682490274310112, + -0.022577745839953423, + 0.04150928184390068, + -0.051503464579582214, + 0.019848501309752464, + -0.019628113135695457, + 0.0745568573474884, + 0.026144154369831085, + -0.10030915588140488, + -0.04788096994161606, + -0.023128163069486618, + -0.000687591265887022, + -0.04281312972307205, + -0.024461274966597557, + -0.020903367549180984, + -0.08682946860790253, + -2.3701032247913645e-08, + 0.006146568804979324, + -0.07199886441230774, + -0.08547945320606232, + -0.0057917190715670586, + 0.002496063942089677, + -0.01962701976299286, + 0.031144049018621445, + -0.09718301892280579, + -0.013041521422564983, + 0.023306896910071373, + -0.015715397894382477, + -0.009419233538210392, + -0.03441157191991806, + -0.02184186317026615, + 0.0774390697479248, + -0.04144744947552681, + 0.014641120098531246, + -0.007136216852813959, + -0.017893243581056595, + -0.07429773360490799, + 0.07236265391111374, + 0.04991371929645538, + 0.005405474454164505, + -0.02607065998017788, + 0.10849955677986145, + 0.06019234657287598, + -0.05358288809657097, + -0.06777749210596085, + 0.06618103384971619, + 0.07112941145896912, + -0.02115078829228878, + 0.06364040821790695, + -0.06153760477900505, + 0.030930133536458015, + -0.07949462532997131, + 0.036661528050899506, + 0.1021730899810791, + -0.004910185933113098, + -0.06564997136592865, + 0.13402439653873444, + 0.05311731621623039, + -0.04092944785952568, + -0.0004551569581963122, + -0.012030202895402908, + 0.06119532138109207, + 0.016485661268234253, + 0.02518986538052559, + 0.019023630768060684, + 0.019901592284440994, + -0.07214903086423874, + 0.017736302688717842, + -0.0013692022766917944, + 0.11928502470254898, + 0.009609104134142399, + -0.050043895840644836, + -0.024879930540919304, + 0.037931542843580246, + 0.09310775995254517, + -0.007883922196924686, + -0.011259321123361588, + 0.12974199652671814, + -0.008412756025791168, + 0.05921274796128273, + 0.05008559301495552 + ], + "article-ny-times-bold||*updated*,reading,writing,journals,periodicals,text,news,newspaper,nyt,new york times": [ + 0.078611359000206, + -0.07116778194904327, + 0.0018425576854497194, + 0.07046733796596527, + 0.008913494646549225, + 0.03949896618723869, + -0.02060549333691597, + 0.013299268670380116, + -0.0469929501414299, + -0.02107752487063408, + -0.027991419658064842, + 0.12187697738409042, + -0.05981497839093208, + 0.052758753299713135, + -0.014055459760129452, + 0.04755916818976402, + 0.08213422447443008, + 0.015348132699728012, + 0.03076981194317341, + 0.06735855340957642, + 0.06075214222073555, + -0.029982689768075943, + 0.08698826283216476, + 0.035403087735176086, + 0.0694136768579483, + 0.014806903898715973, + -0.07371322065591812, + -0.053430430591106415, + -0.06735052168369293, + -0.042613495141267776, + -0.11130267381668091, + 0.008694845251739025, + 0.07175150513648987, + 0.005357399582862854, + 0.04921283945441246, + 0.0059180776588618755, + 0.056202247738838196, + 0.021597884595394135, + 0.11569209396839142, + 0.094119131565094, + 0.03937777131795883, + -0.07314396649599075, + -0.014303726144134998, + -0.001229632762260735, + -0.028653312474489212, + -0.018873712047934532, + -0.09331270307302475, + 0.07242178171873093, + -0.05144494026899338, + 0.06218639016151428, + -0.027781199663877487, + -0.0768597349524498, + -0.05908801034092903, + 0.016655202955007553, + 0.029068242758512497, + -0.06993250548839569, + -0.06781125068664551, + 0.029419003054499626, + -0.031125646084547043, + 0.0036622402258217335, + -0.0008570306235924363, + 0.055410236120224, + -0.04899465665221214, + 0.12415549904108047, + 0.03105293959379196, + -0.02406279183924198, + -0.021242622286081314, + 0.01086345687508583, + -0.10614033043384552, + -0.07962535321712494, + 0.06813143938779831, + 0.05243056267499924, + 0.01614617370069027, + 0.007931833155453205, + -0.03589249029755592, + -0.07172901928424835, + 0.015127122402191162, + -0.012762564234435558, + -0.02639373205602169, + 0.020073706284165382, + 0.049589719623327255, + 0.010139296762645245, + 0.0007688018959015608, + -0.004192078020423651, + -0.01451836060732603, + 0.021065780892968178, + -0.12423000484704971, + 0.012034566141664982, + -0.0035654224921017885, + -0.05834439396858215, + -0.056209418922662735, + -0.03267430141568184, + 0.007433546707034111, + 0.018593771383166313, + -0.052445270121097565, + -0.0018886385951191187, + 0.004739435389637947, + 0.028362872079014778, + -0.006116810254752636, + 0.042832933366298676, + 0.011234105564653873, + 0.00582347996532917, + -0.018694646656513214, + 0.026309316977858543, + -0.011702240444719791, + -0.09255200624465942, + -0.029282713308930397, + -0.040131088346242905, + -0.06653120368719101, + 0.08909058570861816, + -0.025108186528086662, + 0.036502089351415634, + -0.04943085461854935, + -0.016214774921536446, + -0.0014773220755159855, + -0.07900118827819824, + -0.05803251266479492, + 0.012616782449185848, + 0.08673448115587234, + 0.004321243613958359, + -0.0540170893073082, + 0.0700908750295639, + -0.05040307715535164, + -0.054310087114572525, + -0.10854682326316833, + 0.006326507311314344, + -0.013597989454865456, + -2.4563950964118172e-33, + -0.002965278457850218, + 0.01453544944524765, + 0.01748342253267765, + 0.07065770030021667, + -0.06698030978441238, + -0.008397550322115421, + -0.04959104210138321, + -0.09269748628139496, + 0.019020283594727516, + -0.03589989244937897, + 0.012548232451081276, + 0.05241846665740013, + -0.007288875058293343, + 0.021649014204740524, + 0.03118196502327919, + 0.014483485370874405, + -0.002125838305801153, + 0.028674304485321045, + -0.013020546175539494, + -0.02858911082148552, + 0.036674484610557556, + 0.011455433443188667, + -0.0029746131040155888, + 0.0014221202582120895, + -0.07918956875801086, + -0.10108327865600586, + -0.04689832031726837, + -0.027304932475090027, + -0.08801481127738953, + 0.012298451736569405, + 0.031263433396816254, + 0.031063884496688843, + 0.008348215371370316, + 0.0021295216865837574, + 0.03761664032936096, + 0.038712888956069946, + 0.014041570015251637, + -0.013276467099785805, + 0.013210071250796318, + -0.02843785472214222, + -0.10558953136205673, + -0.010347077623009682, + -0.0373249277472496, + 0.007808774709701538, + 0.10919522494077682, + 0.1714726686477661, + -0.020085399970412254, + -0.059790048748254776, + 0.060532186180353165, + 0.00837165117263794, + -0.014139370061457157, + 0.019703980535268784, + -0.07617034018039703, + -0.05960828810930252, + 0.026409752666950226, + 0.04952966794371605, + 0.03823748603463173, + 0.014269601553678513, + 0.027012480422854424, + 0.014804724603891373, + 0.014188991859555244, + 0.034260429441928864, + 0.02800215408205986, + -0.02785816788673401, + -0.041785165667533875, + 0.034689903259277344, + -0.013032213784754276, + 0.02213186025619507, + 0.07511098682880402, + 0.056174345314502716, + 0.017868509516119957, + 0.02566893771290779, + -0.017249496653676033, + 0.0669354498386383, + -0.011585776694118977, + 0.01944836974143982, + 0.016225889325141907, + 0.03233126178383827, + 0.0423920638859272, + -0.04222744703292847, + -0.0016587497666478157, + -0.016410797834396362, + -0.013813981786370277, + 0.03659551218152046, + 0.0304767657071352, + 0.032084375619888306, + 0.06973768770694733, + -0.034897319972515106, + 0.014068889431655407, + 0.036699019372463226, + -0.04903966560959816, + 0.0413355678319931, + -0.05713600665330887, + -0.01789223775267601, + -0.06465011835098267, + -2.494962147707335e-33, + -0.033479269593954086, + -0.07563269138336182, + -0.014814390800893307, + -0.013404651544988155, + -0.10775726288557053, + -0.019588012248277664, + -0.05866863578557968, + 0.013624178245663643, + 0.08972277492284775, + 0.04986007884144783, + -0.03392363339662552, + -0.06475972384214401, + -0.01691693812608719, + 0.07258199900388718, + -0.022100914269685745, + -0.009058915078639984, + 0.023310618475079536, + -0.031779929995536804, + -0.09981851279735565, + 0.07227641344070435, + 0.020209139212965965, + -0.06039765104651451, + -0.06921850144863129, + 0.0772167295217514, + 0.018720533698797226, + -0.030804747715592384, + 0.016117220744490623, + -0.05597319453954697, + -0.06613210588693619, + -0.029587920755147934, + -0.042107969522476196, + -0.07216031104326248, + 0.04357961192727089, + 0.022087417542934418, + -0.03526906296610832, + 0.0865422859787941, + 0.06370217353105545, + -0.06296294927597046, + 0.0016277061076834798, + -0.038807254284620285, + 0.0153671158477664, + 0.0022158625070005655, + -0.003133391262963414, + 0.02172916568815708, + -0.03904356434941292, + 0.06776163727045059, + -0.10023543983697891, + -0.03389061614871025, + 0.002634485950693488, + 0.043159179389476776, + -0.07708896696567535, + -0.020816119387745857, + -0.07152654230594635, + 0.032490313053131104, + -0.05265669897198677, + 0.007944099605083466, + -0.0635916218161583, + -0.05820076912641525, + -0.089019276201725, + -0.03328889235854149, + -0.054129790514707565, + 0.0705346018075943, + -0.11162260919809341, + 0.07814593613147736, + 0.031047919765114784, + -0.11525937169790268, + 0.0294692050665617, + -0.12318987399339676, + 0.020882856100797653, + 0.029510507360100746, + 0.05453674495220184, + 0.03878087177872658, + -0.026625456288456917, + -0.08083048462867737, + -0.04113537073135376, + -0.03758443146944046, + -0.009472989477217197, + 0.05639795586466789, + -0.0484839491546154, + 0.05577981099486351, + 0.06104905903339386, + 0.024787606671452522, + -0.04228520393371582, + 0.026220280677080154, + 0.016146766021847725, + 0.06168319284915924, + 0.06809836626052856, + -0.0637236163020134, + -0.10613580793142319, + -0.007185851223766804, + 0.03333470970392227, + -0.053732361644506454, + -0.05500992015004158, + 0.02780630812048912, + -0.03670179098844528, + -3.052768349220969e-08, + 0.016810180619359016, + -0.030562041327357292, + -0.05637543648481369, + 0.03406120091676712, + -0.003441434819251299, + -0.044419508427381516, + 0.008398550562560558, + -0.06339140981435776, + -0.016871271654963493, + 0.06664030998945236, + 0.06968905031681061, + 0.004132750444114208, + -0.08459095656871796, + -0.013681773096323013, + 0.01876778155565262, + -0.0744951069355011, + -0.023716231808066368, + 0.03901194781064987, + 0.0013930803397670388, + -0.036952923983335495, + 0.03156355768442154, + 0.05079180374741554, + 0.03806951642036438, + -0.021188566461205482, + 0.08652765303850174, + 0.05819632485508919, + -0.05724760890007019, + -0.05719023942947388, + 0.07918298989534378, + 0.03556327149271965, + -0.02418537251651287, + 0.08199486136436462, + -0.051992982625961304, + -0.042820606380701065, + -0.04311300441622734, + -0.009320181794464588, + 0.054452113807201385, + 0.022310391068458557, + -0.01690153405070305, + 0.05559645965695381, + -0.005480160936713219, + -0.04060537368059158, + 0.018164120614528656, + 0.03663737699389458, + 0.06578833609819412, + -0.003435474820435047, + -0.021751677617430687, + -0.017052127048373222, + 0.05150881037116051, + -0.12590396404266357, + 0.01856621727347374, + -0.06445138156414032, + 0.130997896194458, + -0.018632618710398674, + -0.024540850892663002, + 0.04008706286549568, + 0.008881563320755959, + 0.05760081484913826, + -0.05196448415517807, + -0.020650213584303856, + 0.0817008912563324, + -0.06393025815486908, + 0.1038571149110794, + 0.06132613122463226 + ], + "asclepius-bold||*new*,caduceus,staff,mythology,rx,medicine,drugs,pharmacy,pharmacist,pharmaceuticals,doctor,hospital,snake,mercury,hermes": [ + -0.009321863763034344, + 0.024287473410367966, + -0.05326437950134277, + 0.05123613402247429, + -0.1202501654624939, + -0.05228991433978081, + 0.07038460671901703, + 0.02366986870765686, + -0.03402400761842728, + -0.04420551285147667, + -0.025339525192975998, + -0.08312038332223892, + 0.03131256625056267, + -0.00547023955732584, + -0.06225788965821266, + -0.05321275442838669, + 0.028609633445739746, + 0.01921890489757061, + -0.00021884065063204616, + 0.07198725640773773, + 0.013655122369527817, + 0.02513887546956539, + 0.045243993401527405, + 0.08327921479940414, + 0.011097865179181099, + 0.005709497723728418, + -0.04092872515320778, + -0.1132282167673111, + -0.019178105518221855, + -0.10597673803567886, + -0.04012934863567352, + 0.04051033779978752, + 0.0862656831741333, + -0.04275105521082878, + 0.08149392902851105, + 0.03383355215191841, + -0.015735801309347153, + 0.06688772141933441, + 0.0502975769340992, + 0.016095921397209167, + 0.030788753181695938, + 0.0396457314491272, + 0.013234834186732769, + 0.06856141239404678, + -0.06087074056267738, + -0.054503537714481354, + -0.053697675466537476, + 0.03813818469643593, + 0.056111473590135574, + 0.083796925842762, + -0.044723138213157654, + -0.11259952187538147, + -0.1155875101685524, + 0.004532282240688801, + 0.004979693330824375, + 0.011991108767688274, + -0.055455923080444336, + -0.13182051479816437, + -0.01910443790256977, + -0.07941902428865433, + 0.01662677712738514, + 0.03483196720480919, + 0.08590590953826904, + 0.11288321763277054, + -0.054305460304021835, + -0.0028793879318982363, + 0.0067564318887889385, + 0.004693180788308382, + -0.006139203440397978, + 0.01699335128068924, + 0.06119691953063011, + -0.04083409160375595, + 0.03999936580657959, + 0.05529765412211418, + -0.03268567845225334, + 0.03966916352510452, + 0.08257380872964859, + -0.02797589637339115, + -0.01715942472219467, + -0.10139401257038116, + -0.02886038087308407, + 0.0024403866846114397, + -0.048376310616731644, + 0.032502006739377975, + -0.0046659777872264385, + 0.08680140227079391, + -0.02992922253906727, + -0.059284813702106476, + -0.050444357097148895, + -0.042060788720846176, + 0.04867660999298096, + -0.024155283346772194, + 0.061019182205200195, + -0.05366382375359535, + -0.04268192872405052, + 0.02214532345533371, + 0.09640255570411682, + 0.017106661573052406, + -0.028678767383098602, + 0.04470294341444969, + 0.026347843930125237, + 0.0042951274663209915, + 0.01888422481715679, + 0.07378696650266647, + -0.014796115458011627, + -0.010401206091046333, + -0.10231878608465195, + -0.13860943913459778, + 0.05610715225338936, + -0.022320516407489777, + -0.018106939271092415, + -0.09387745708227158, + -0.04168645292520523, + -0.05740482360124588, + -0.010529712773859501, + 0.046294204890728, + -0.07622119784355164, + -0.0018337434157729149, + 0.007951198145747185, + 0.04501260071992874, + -0.02594671957194805, + -0.006059843581169844, + -0.03115839883685112, + -0.06368556618690491, + 0.008067628368735313, + 0.05663163214921951, + -0.0849681943655014, + -3.046971907130581e-33, + -0.03186487779021263, + 0.04152102768421173, + 0.06024511903524399, + 0.016157513484358788, + 0.06849485635757446, + -0.041068196296691895, + -0.060844115912914276, + -0.008834654465317726, + -0.03772200644016266, + -0.031038260087370872, + -0.05782052129507065, + 0.007375371176749468, + -0.010507277213037014, + 0.10843260586261749, + -0.07443739473819733, + -0.006165233440697193, + 0.027883635833859444, + -0.03175731748342514, + -0.03386063501238823, + -0.01414966769516468, + -0.000516018713824451, + 0.053985629230737686, + -0.031078074127435684, + 0.03976699709892273, + -0.059891439974308014, + 0.00776760745793581, + -0.06254583597183228, + 0.029869234189391136, + 0.06798746436834335, + 0.05231409892439842, + 0.010913883335888386, + -0.022227918729186058, + -0.021902378648519516, + 0.02938717231154442, + -0.02132471650838852, + 0.03456421568989754, + -0.03391987830400467, + -0.12271437793970108, + -0.025181492790579796, + -0.017803309485316277, + -0.03495847061276436, + 0.03840884193778038, + -0.019604697823524475, + -0.0010865593794733286, + -0.0059602344408631325, + 0.04607779532670975, + -0.048599738627672195, + -0.040832553058862686, + 0.03403380885720253, + 0.011290102265775204, + -0.07698880881071091, + 0.02982274256646633, + 0.04927055910229683, + 0.008348534815013409, + -0.028206568211317062, + -0.03056817129254341, + -0.047567158937454224, + 0.07462362200021744, + 0.0007704637246206403, + 0.031076369807124138, + 0.08101972192525864, + 0.042922601103782654, + 0.017120733857154846, + 0.04877161234617233, + 0.01338912919163704, + 0.08041466772556305, + -0.05061190575361252, + 0.023565812036395073, + 0.052356041967868805, + -0.037078674882650375, + -0.05260303243994713, + 0.04598919302225113, + 0.01238465029746294, + 0.047166064381599426, + 0.010356258600950241, + 0.06650993227958679, + -0.011057732626795769, + -0.06260722130537033, + -0.09435048699378967, + -0.030713122338056564, + -0.13494494557380676, + 0.024506911635398865, + -0.04346616193652153, + 0.0721440315246582, + 0.08555668592453003, + -0.010806743986904621, + 0.1260490119457245, + -0.03883003816008568, + 0.024601228535175323, + 0.01670980639755726, + -0.08128741383552551, + -0.03991388902068138, + 0.014908886514604092, + -0.035780444741249084, + -0.14839816093444824, + -6.48442919340328e-35, + -0.04335293918848038, + -0.01465615164488554, + 0.023922506719827652, + -0.031798671931028366, + 0.01710604690015316, + -0.00827634148299694, + 0.005367063917219639, + 0.07840412855148315, + -0.0037988675758242607, + -0.012951123528182507, + 0.03685271739959717, + 0.05572434887290001, + -0.03670185059309006, + -0.0755084902048111, + 0.08265378326177597, + 0.028223803266882896, + 0.05716756731271744, + 0.04243046045303345, + -0.010610031895339489, + 0.05658050626516342, + -0.0324883908033371, + -0.014005397446453571, + -0.09509292244911194, + 0.05168412625789642, + 0.00730988010764122, + 0.0452515073120594, + 0.04529651626944542, + -0.07555655390024185, + -0.03507155552506447, + 0.021181125193834305, + -0.034030091017484665, + 0.1031527891755104, + -0.03234425559639931, + 0.049828946590423584, + -0.0505823940038681, + 0.0080451350659132, + 0.012921247631311417, + -0.06599920243024826, + 0.005003543570637703, + -0.015702182427048683, + 0.03339711204171181, + -0.0027007851749658585, + 0.05591806396842003, + 0.09752190858125687, + 0.05962428078055382, + -0.055166132748126984, + -0.12089082598686218, + 0.08838550746440887, + -0.028029441833496094, + 0.04705795645713806, + 0.006638557184487581, + -0.06689180433750153, + 0.050625622272491455, + 0.014484994113445282, + 0.025303559377789497, + -0.03414205461740494, + 0.002430971711874008, + -0.020572520792484283, + 0.021808886900544167, + 0.04408813267946243, + -0.010711690410971642, + -0.00620392756536603, + -0.04935583844780922, + 0.05193055421113968, + -0.02788352221250534, + -0.053975507616996765, + -0.01729203388094902, + -0.0017457280773669481, + -0.08254991471767426, + 0.002187909558415413, + 0.053796324878931046, + -0.011163591407239437, + -0.11242064833641052, + -0.016421733424067497, + 0.01513354480266571, + -0.02121960185468197, + -0.04916951432824135, + -0.060473136603832245, + -0.028070097789168358, + 0.015796653926372528, + -0.022597139701247215, + -0.008400596678256989, + 0.02079024910926819, + 0.094680555164814, + 0.038253217935562134, + -0.04587893560528755, + -0.023621419444680214, + 0.034598153084516525, + 0.028190448880195618, + 0.0066638244315981865, + -0.028872087597846985, + -0.04049510508775711, + 0.0006632495205849409, + 0.004839732777327299, + 0.05755801498889923, + -2.8784542749349384e-08, + 0.028989113867282867, + 0.024482782930135727, + 0.06104172393679619, + -0.0398506335914135, + 0.07096727937459946, + -0.054073087871074677, + -0.08205121010541916, + -0.09793050587177277, + -0.03345349431037903, + 0.07592009752988815, + 0.014594514854252338, + 0.023184338584542274, + 0.02130129747092724, + -0.040380824357271194, + 0.05181567743420601, + 0.01778111420571804, + 0.0159930232912302, + 0.09421183913946152, + -0.006672832183539867, + -0.0570116825401783, + -0.025203440338373184, + 0.07483910024166107, + 0.031019147485494614, + -0.0850580632686615, + 0.039309632033109665, + 0.012545128352940083, + 0.004271089565008879, + -0.08562633395195007, + 0.010143441148102283, + -0.021815162152051926, + 0.028562111780047417, + 0.06217772886157036, + 0.037906523793935776, + -0.03857356309890747, + -0.019035786390304565, + -0.04842758923768997, + -0.008146991953253746, + -0.03098864108324051, + 0.05278436094522476, + 0.04052475839853287, + 0.009996299631893635, + -0.000462820113170892, + 0.006200315896421671, + 0.0015554275596514344, + -0.02242065966129303, + -0.03725430369377136, + 0.0826740637421608, + 0.03826159983873367, + 0.012513786554336548, + -0.05200006812810898, + -0.019178366288542747, + 0.029448961839079857, + 0.07167448103427887, + -0.07296957820653915, + -0.07185743004083633, + -0.057969335466623306, + 2.5836690838332288e-05, + 0.09319151192903519, + -0.07775130122900009, + -0.014319400303065777, + 0.08632402867078781, + -0.02089899219572544, + 0.10306362807750702, + 0.010738457553088665 + ], + "asterisk-bold||star,wildcard,bullet point,6,emergency": [ + -0.02615843340754509, + -0.008425204083323479, + -0.05368920788168907, + 0.084446981549263, + 0.03717425838112831, + 0.040813084691762924, + 0.048372648656368256, + -0.010945796966552734, + 0.020628059282898903, + -0.04137960448861122, + -0.03969641402363777, + 0.005502779968082905, + 0.00010173115151701495, + -0.06044401228427887, + 0.016854405403137207, + -0.007317618001252413, + -0.02177932858467102, + -0.025209689512848854, + -0.03118489682674408, + 0.04615507274866104, + 0.014774339273571968, + 0.08058635145425797, + -0.012277543544769287, + 0.016857769340276718, + 0.03857393562793732, + 0.0002458821691107005, + 0.02121540531516075, + -0.019121326506137848, + -0.022107811644673347, + -0.14292289316654205, + 0.026867443695664406, + 0.019955186173319817, + 0.11875975877046585, + 0.08205689489841461, + 0.0821913480758667, + -0.01876358687877655, + -0.019058432430028915, + 0.01876489631831646, + 0.00025885680224746466, + 0.057632338255643845, + 0.040284451097249985, + -0.10764197260141373, + 0.004046793095767498, + 0.02815919928252697, + -0.009268445894122124, + -0.05907224118709564, + -0.16430293023586273, + -0.0032116188667714596, + 0.04294399917125702, + 0.048049427568912506, + -0.016033107414841652, + -0.05725983530282974, + -0.14258474111557007, + -0.008111831732094288, + 0.04158451035618782, + -0.009246465750038624, + -0.049476198852062225, + -0.08844519406557083, + 0.03774449601769447, + -0.043658316135406494, + 0.012943865731358528, + -0.0002494041982572526, + 0.012718715704977512, + 0.020084576681256294, + -0.002533803228288889, + -0.05576719716191292, + -0.05422297120094299, + 0.0196004007011652, + -0.009346474893391132, + 0.0389300212264061, + 0.00720836129039526, + 0.023956913501024246, + 0.008338232524693012, + 0.0004973895847797394, + -0.019936619326472282, + 0.07265347242355347, + 0.010782727040350437, + -0.03701436147093773, + 0.0441652312874794, + 0.004153159447014332, + -0.02628847025334835, + -0.09723880141973495, + -0.01171666570007801, + 0.02251511439681053, + 0.03309953585267067, + 0.013109857216477394, + -0.06530621647834778, + -0.019306831061840057, + -0.025146719068288803, + 0.006480780895799398, + -0.021443767473101616, + -0.06375090777873993, + 0.013476983644068241, + 0.03362138196825981, + -0.0530376173555851, + 0.0028479727916419506, + 0.03134375065565109, + -0.1427115947008133, + 0.00616687536239624, + 0.06544652581214905, + -0.014970088377594948, + 0.02092093601822853, + -0.013160361908376217, + 0.007461302448064089, + 0.04061870276927948, + -0.05911368876695633, + 0.003946988377720118, + -0.08061672002077103, + 0.04008940979838371, + -0.0042043160647153854, + -0.00996275432407856, + -0.09366606920957565, + 0.037636179476976395, + -0.06390374153852463, + -0.035380467772483826, + -0.032342638820409775, + -0.07879789918661118, + -0.012219213880598545, + 0.1512622833251953, + 0.01712421327829361, + 0.025850925594568253, + -0.011592532508075237, + -0.047077372670173645, + 0.003013673471286893, + -0.04424445703625679, + 0.056267715990543365, + 0.05781135335564613, + -1.2705253549045922e-33, + 0.04007968306541443, + 0.05325766280293465, + 0.0006206955295056105, + 0.061082158237695694, + -0.01242042612284422, + -0.01778464950621128, + -0.09645040333271027, + -0.04668492078781128, + -0.05491402745246887, + -0.011284449137747288, + 0.07715651392936707, + -0.009783988818526268, + 0.0548149049282074, + 0.0787888616323471, + 0.04902008920907974, + -0.057030998170375824, + 0.06412892788648605, + -0.021377557888627052, + -0.10389214009046555, + -0.0032430009450763464, + -0.07489939033985138, + 0.05603896453976631, + -0.026154935359954834, + -0.03623705729842186, + 3.1588679121341556e-05, + 0.023919260129332542, + 0.014463442377746105, + -0.00364839774556458, + 0.01625029370188713, + 0.040863655507564545, + 0.004278754815459251, + 0.004021490458399057, + -0.008921483531594276, + 0.048634059727191925, + 0.011491404846310616, + 0.07433325052261353, + -0.058401357382535934, + -0.018081100657582283, + -0.03907300904393196, + -0.0480383075773716, + -0.05100229009985924, + -0.006154215894639492, + -0.10936569422483444, + -0.02679743617773056, + -0.009363928809762001, + 0.0721462219953537, + -0.02540081925690174, + -0.04780057445168495, + 0.038839805871248245, + -0.02642892114818096, + -0.03912439942359924, + 0.033458661288022995, + -0.01481754519045353, + 0.0011714163701981306, + 0.009092914871871471, + 0.019029946997761726, + 0.03580141067504883, + 0.07078392058610916, + 0.01828119531273842, + -0.01914411038160324, + 0.06332401186227798, + 0.014361527748405933, + 0.046686556190252304, + -0.01527472399175167, + -0.04653094336390495, + 0.04218895733356476, + -0.013268841430544853, + 0.005525692366063595, + 0.06588085740804672, + 0.05263375863432884, + -0.0036321794614195824, + 0.08305927366018295, + 0.05822254717350006, + 0.00703096529468894, + -0.08020264655351639, + 0.0689370185136795, + 0.07619910687208176, + 0.05041852965950966, + 0.004042020998895168, + -0.0751974955201149, + -0.09914235025644302, + -0.027883930131793022, + 0.01726270467042923, + 0.0773915946483612, + 0.032125070691108704, + -0.03741360828280449, + 0.010133524425327778, + -0.03679441660642624, + -0.06491809338331223, + 0.004807033576071262, + -0.011204791255295277, + -0.028965698555111885, + -0.08039052039384842, + -0.015472996979951859, + -0.06148982420563698, + -1.2124799948739646e-33, + 0.05201452597975731, + 0.027571827173233032, + 0.002515267813578248, + -0.009736104868352413, + -0.019913649186491966, + -0.0005528668989427388, + 0.024379262700676918, + 0.0028644902631640434, + 0.01959516480565071, + 0.02846323512494564, + -0.040508195757865906, + 0.06682689487934113, + -0.010844528675079346, + -0.100491464138031, + 0.1325705200433731, + 0.012872922234237194, + -0.010325129143893719, + 0.0674653947353363, + -0.01054526399821043, + 0.04671900346875191, + 0.0030219631735235453, + 0.0274781733751297, + -0.08696211129426956, + 0.07778330892324448, + -0.014742150902748108, + 0.011704732663929462, + -0.03616558387875557, + -0.0567801296710968, + -0.1096881777048111, + -0.06279880553483963, + 0.06325561553239822, + 0.012090962380170822, + 0.007446839474141598, + 0.03154406324028969, + -0.06418924033641815, + 0.027684727683663368, + -0.0038273774553090334, + 0.017055073752999306, + -0.016325877979397774, + 0.005166538525372744, + 0.043347809463739395, + 0.03189694881439209, + 0.04311061277985573, + 0.03898445516824722, + 0.058376964181661606, + -0.03521338105201721, + 0.059275899082422256, + -0.013752592727541924, + -0.018798984587192535, + 0.11650640517473221, + -0.015499192290008068, + -0.07336300611495972, + -0.04816760867834091, + 0.07194479554891586, + -0.11762464046478271, + -0.0110928351059556, + 0.05119313299655914, + -0.03208060935139656, + -0.045782655477523804, + 0.028281237930059433, + 0.0032576401717960835, + 0.06186123192310333, + 0.018536778166890144, + -0.009253675118088722, + 0.025029229000210762, + -0.06772766262292862, + -0.021775083616375923, + -0.07952328026294708, + -0.006718141492456198, + -0.033591028302907944, + 0.018182454630732536, + 0.0848856121301651, + -0.0939575731754303, + 0.06645574420690536, + 0.05936615914106369, + -0.028983579948544502, + -0.031128842383623123, + 0.000995508162304759, + -0.04562406241893768, + 0.0552026592195034, + -0.0568537674844265, + 0.052300743758678436, + -0.04437438026070595, + 0.12342367321252823, + -0.008960363455116749, + 0.06333266198635101, + 0.08902330696582794, + 0.030744148418307304, + -0.004249745514243841, + -0.034601785242557526, + -0.007060086354613304, + 0.030417943373322487, + 0.01283232867717743, + 0.016985546797513962, + -0.08377842605113983, + -1.917643110971312e-08, + -0.06881467998027802, + 0.010769721120595932, + -0.0772869735956192, + -0.0028955137822777033, + 0.044053830206394196, + -0.04297550767660141, + -0.07496385276317596, + -0.0882861390709877, + -0.005183210130780935, + -0.03236342594027519, + -0.002580170752480626, + -0.008185217157006264, + -0.04421602189540863, + -0.08155126869678497, + 0.009406465105712414, + -0.04656321182847023, + -0.0556182898581028, + 0.03349610045552254, + -0.04044165462255478, + 0.0649072602391243, + -0.0003500925377011299, + 0.07583596557378769, + 0.03859328106045723, + -0.027670126408338547, + 0.011917374096810818, + 0.018230538815259933, + -0.02289891242980957, + 0.0165249053388834, + 0.0610048808157444, + 0.03201886638998985, + 0.07822968810796738, + 0.08735567331314087, + -0.0009502595639787614, + -0.014360891655087471, + -0.05110600218176842, + 0.05501890927553177, + 0.11288714408874512, + -0.023392343893647194, + 0.030448105186223984, + 0.20392300188541412, + 0.05432552844285965, + -0.07526285946369171, + -0.005325943697243929, + -0.04626297950744629, + -0.12256334722042084, + 0.02536751516163349, + -0.012662982568144798, + -0.06461549550294876, + -0.045701004564762115, + -0.09832466393709183, + -0.016959145665168762, + -0.0062471129931509495, + -0.05558491498231888, + 0.0576653853058815, + 0.00959581695497036, + -0.015890387818217278, + -0.0243033766746521, + 0.05753638222813606, + 0.01637120172381401, + 0.0378604419529438, + 0.12874843180179596, + -0.010487309657037258, + -0.01781512424349785, + 0.04679837450385094 + ], + "asterisk-simple-bold||*updated*,star,wildcard,bullet point,5,emergency": [ + -0.028812985867261887, + -0.00500511797145009, + -0.04255024716258049, + 0.08093462884426117, + 0.051625754684209824, + 0.002099943347275257, + 0.03332408145070076, + -0.03442090004682541, + 0.004630295094102621, + -0.004711749963462353, + -0.032134003937244415, + 0.002619100734591484, + -0.0027405181899666786, + -0.06955920904874802, + 0.01570829004049301, + -0.007754790596663952, + -0.008144227787852287, + -0.010775052942335606, + -0.0341695174574852, + 0.011502168141305447, + 0.000993812340311706, + 0.07745833694934845, + -0.025995690375566483, + 0.03003309853374958, + 0.03346601128578186, + 0.02162170223891735, + -0.009247930720448494, + -0.02851216495037079, + -0.02420824207365513, + -0.14601778984069824, + 0.024433467537164688, + 0.011784996837377548, + 0.13319465517997742, + 0.051463689655065536, + 0.07178545743227005, + -0.025660088285803795, + -0.025807257741689682, + 0.03240305930376053, + 0.003473425516858697, + 0.0564853809773922, + 0.038057610392570496, + -0.10702304542064667, + -0.021900737658143044, + 0.04523400217294693, + -0.03694602847099304, + -0.06913356482982635, + -0.16785116493701935, + -0.020651651546359062, + 0.028945978730916977, + 0.03451612964272499, + -0.013374443165957928, + -0.07989015430212021, + -0.14919236302375793, + -0.025092486292123795, + 0.041031770408153534, + -0.010013923980295658, + -0.028342964127659798, + -0.05254553630948067, + 0.03489335626363754, + -0.06504923850297928, + 0.04317327216267586, + -0.0008022421388886869, + 0.024375304579734802, + 0.0017449199222028255, + -0.03153126314282417, + -0.04100003093481064, + -0.04966198652982712, + -0.022153684869408607, + -0.0009698896901682019, + 0.036901045590639114, + 0.013937963172793388, + 0.024942602962255478, + 0.013454818166792393, + -0.010802016593515873, + -0.03863135352730751, + 0.046897757798433304, + 0.02829335257411003, + 0.01178971491754055, + 0.03521816059947014, + 0.014254285953938961, + -0.03607020154595375, + -0.1063138097524643, + -0.013790142722427845, + 0.0074709211476147175, + 0.056550104171037674, + 0.017310094088315964, + -0.06320519000291824, + -0.010047534480690956, + -0.03401002287864685, + -0.0028399622533470392, + -0.01606813631951809, + -0.06525430828332901, + 0.027690047398209572, + 0.02885613963007927, + -0.08414313197135925, + 0.023996591567993164, + 0.03597915172576904, + -0.12083613872528076, + -0.034739136695861816, + 0.06881997734308243, + -0.02379745803773403, + 0.031350769102573395, + -0.004878712818026543, + 0.014448912814259529, + 0.019502488896250725, + -0.05293766409158707, + 0.00752342538908124, + -0.07985047250986099, + 0.03677783161401749, + -0.010546308010816574, + -0.02183266170322895, + -0.10490760952234268, + 0.01301528885960579, + -0.08058769255876541, + -0.053556639701128006, + -0.025875823572278023, + -0.05658404529094696, + -0.002154411282390356, + 0.13625483214855194, + 0.04410042241215706, + 0.057016391307115555, + -0.025929726660251617, + -0.05905192345380783, + 0.0022680480033159256, + -0.057455699890851974, + 0.05295176804065704, + 0.06163347139954567, + -1.9398656135872264e-33, + 0.04386838898062706, + 0.058831579983234406, + -0.01802350953221321, + 0.0731855183839798, + -0.022830605506896973, + -0.019905613735318184, + -0.08646325021982193, + -0.048374854028224945, + -0.037896789610385895, + -0.02665189653635025, + 0.10796469449996948, + 0.004160677082836628, + 0.04282676801085472, + 0.0750197321176529, + 0.0196951013058424, + -0.07720542699098587, + 0.06362271308898926, + -0.010314717888832092, + -0.08710379153490067, + 0.0011513991048559546, + -0.07910554111003876, + 0.06213986501097679, + -0.03031032346189022, + -0.04562375694513321, + 0.020908884704113007, + 0.011913458816707134, + 0.0279019083827734, + -0.012013501487672329, + 0.02988724410533905, + 0.03716763108968735, + 0.022175375372171402, + 0.0012060009175911546, + 0.0037484383210539818, + 0.06090349331498146, + 0.0013435891596600413, + 0.06548149138689041, + -0.05710163339972496, + -0.018789149820804596, + -0.03675716742873192, + -0.07127213478088379, + -0.05239927023649216, + -0.01574583910405636, + -0.09854596108198166, + -0.038386207073926926, + 0.017021482810378075, + 0.08860202133655548, + -0.07036229223012924, + -0.042899783700704575, + 0.039078425616025925, + -0.05455104634165764, + -0.032628193497657776, + 0.057368502020835876, + -0.054073333740234375, + 0.004850536584854126, + -0.004732040222734213, + 0.021692264825105667, + 0.026616914197802544, + 0.07636003941297531, + 0.017291981726884842, + -0.04079766198992729, + 0.06775949895381927, + 0.01991107128560543, + 0.03892625868320465, + -0.022224174812436104, + -0.0410069040954113, + 0.07385595142841339, + -0.0010500696953386068, + 0.005268691573292017, + 0.07464400678873062, + 0.05454261228442192, + -0.004651552066206932, + 0.10142301023006439, + 0.04604025185108185, + 0.022966645658016205, + -0.07169520109891891, + 0.05748847872018814, + 0.0585397444665432, + 0.04404536262154579, + 0.009024995379149914, + -0.0533607192337513, + -0.08078427612781525, + -0.04241574928164482, + -0.008894605562090874, + 0.10501796007156372, + 0.038063451647758484, + -0.02130504697561264, + 0.016450488939881325, + 0.007951095700263977, + -0.07328755408525467, + -0.003131550271064043, + -0.03100486472249031, + -0.017183426767587662, + -0.08340585976839066, + -0.028683675453066826, + -0.05687219277024269, + -8.956796755525502e-34, + 0.07158736139535904, + 0.010697143152356148, + -0.02498648315668106, + 0.005586354993283749, + -0.05354905128479004, + 0.0003288876614533365, + -0.004342168569564819, + 0.01404402032494545, + 0.036683790385723114, + 0.030704926699399948, + -0.03288789466023445, + 0.06644665449857712, + -0.03857285529375076, + -0.08615005016326904, + 0.10949991643428802, + 0.04097738116979599, + -0.02835431694984436, + 0.06728637218475342, + -0.031389374285936356, + 0.05617770180106163, + -0.003858588868752122, + 0.0365009643137455, + -0.08687415719032288, + 0.08206360042095184, + 0.0011773986043408513, + -0.0002867214207071811, + -0.03911418095231056, + -0.025412457063794136, + -0.07995373010635376, + -0.07116387784481049, + 0.04782268404960632, + 0.013242928311228752, + -0.013365846127271652, + 0.0155547596514225, + -0.03623349592089653, + 0.025554005056619644, + 0.005086878780275583, + -0.0061120446771383286, + -0.024455662816762924, + 0.019908029586076736, + 0.02667345479130745, + 0.04965407773852348, + 0.052189674228429794, + 0.027957860380411148, + 0.052000660449266434, + -0.030471092090010643, + 0.03775654733181, + -0.011951779946684837, + -0.04273528605699539, + 0.09247034043073654, + 0.001964864321053028, + -0.08664645999670029, + -0.04939569905400276, + 0.05837010219693184, + -0.09008700400590897, + 0.009253887459635735, + 0.059567298740148544, + 0.0025383851025253534, + -0.050946854054927826, + 0.0344340018928051, + -0.01971209980547428, + 0.07475118339061737, + 0.034410957247018814, + -0.017455805093050003, + 0.01717204414308071, + -0.051545076072216034, + -0.02948942221701145, + -0.10466932505369186, + 0.004856917075812817, + -0.03801298141479492, + 0.022799625992774963, + 0.07073038071393967, + -0.08463479578495026, + 0.06317288428544998, + 0.06415978074073792, + -0.04458167776465416, + -0.0226129237562418, + -0.011327904649078846, + -0.04067603126168251, + 0.03768878057599068, + -0.045434948056936264, + 0.05558205395936966, + -0.02344944328069687, + 0.07949605584144592, + -0.02391502819955349, + 0.05607045814394951, + 0.07805999368429184, + 0.04413481056690216, + 0.01006685197353363, + -0.05532871186733246, + -0.030177850276231766, + 0.03664853051304817, + 0.018587157130241394, + 0.028129875659942627, + -0.09198754280805588, + -2.21543157152837e-08, + -0.05966382473707199, + 0.01573457010090351, + -0.08129909634590149, + 0.01311031635850668, + 0.05453125387430191, + -0.039049774408340454, + -0.0804363340139389, + -0.09821505844593048, + 0.012138626538217068, + -0.05831106752157211, + -0.003539509605616331, + 0.004480457399040461, + -0.04109557345509529, + -0.04583629220724106, + 0.014628109522163868, + -0.014458408579230309, + -0.04886147752404213, + 0.02690776437520981, + -0.010978460311889648, + 0.04857572540640831, + -0.015782153233885765, + 0.08485808968544006, + 0.03894427791237831, + -0.03033043071627617, + 0.04124312475323677, + -0.0024324532132595778, + -0.023957837373018265, + 0.01840204931795597, + 0.060082025825977325, + 0.023299088701605797, + 0.08232630789279938, + 0.07943523675203323, + 0.01984018087387085, + 0.007164635229855776, + -0.040042322129011154, + 0.04183359816670418, + 0.10510993748903275, + -0.008783693425357342, + 0.03158627077937126, + 0.21212780475616455, + 0.0647021159529686, + -0.05077189952135086, + -0.010995769873261452, + -0.03473735973238945, + -0.11696667224168777, + 0.00214644824154675, + -0.010126824490725994, + -0.08778762817382812, + -0.05549722537398338, + -0.12516140937805176, + -0.010693837888538837, + 0.013350269757211208, + -0.0327695794403553, + 0.04887674003839493, + -0.01064207125455141, + -0.0059397476725280285, + 0.0008482635603286326, + 0.06528391689062119, + 0.020100992172956467, + 0.028065036982297897, + 0.11208710819482803, + 0.0031014170963317156, + -0.014238186180591583, + 0.06527087837457657 + ], + "at-bold||@,address,email,at symbol,commercial at,arobase": [ + -0.022516414523124695, + -0.05382678657770157, + -0.07586744427680969, + 0.01805511675775051, + 0.054342467337846756, + 0.030322374776005745, + 0.08128391951322556, + -0.03870831057429314, + 0.02032688818871975, + -0.05193335935473442, + -0.018331751227378845, + 0.03158177062869072, + 0.04470562934875488, + -0.05645114555954933, + -0.014112090691924095, + 0.04937320575118065, + 0.006258429493755102, + 0.018936747685074806, + 0.05491030588746071, + 0.00040006739436648786, + 0.056592512875795364, + 0.05396975576877594, + 0.0054942891001701355, + 0.03742232546210289, + 0.04075147584080696, + -0.031222118064761162, + 0.018098173663020134, + 0.01765594817698002, + -0.057847872376441956, + -0.1109975278377533, + 0.02321338839828968, + -0.054028935730457306, + 0.14827238023281097, + 0.06582345813512802, + 0.07176164537668228, + 0.06665278226137161, + -0.03390580415725708, + 0.043298497796058655, + 0.04173504561185837, + -0.003942935727536678, + 0.026488300412893295, + -0.1052846908569336, + 0.004739411640912294, + -0.0007277014665305614, + -0.005842569284141064, + -0.0018273949390277267, + -0.031702350825071335, + 0.037508800625801086, + -0.019833406433463097, + 0.03401903063058853, + -0.025698821991682053, + -0.11093954741954803, + -0.07994431257247925, + 0.020155923441052437, + -0.02860790118575096, + 0.039424531161785126, + -0.0885225161910057, + -0.06301674246788025, + 0.012240041047334671, + -0.0024574894923716784, + -0.013696412555873394, + 0.016589811071753502, + 0.014587769284844398, + 0.06277637928724289, + 0.011556443758308887, + -0.00815319363027811, + -0.030927587300539017, + 0.04992309957742691, + -0.03269499912858009, + -0.018856799229979515, + 0.00506494240835309, + -0.0339919812977314, + -0.07203656435012817, + 0.05543125793337822, + -0.04075302556157112, + 0.05423744022846222, + 0.01501566544175148, + 0.006302810739725828, + -0.00201361789368093, + -0.00384273799136281, + -0.08486120402812958, + -0.07438351958990097, + -0.040385063737630844, + 0.045986395329236984, + 0.06444837152957916, + 0.06965424865484238, + -0.05855013430118561, + -0.0724160298705101, + -0.014749567024409771, + 0.016747701913118362, + 0.0071279495023190975, + -0.03788308426737785, + -0.011325513944029808, + 0.002657709177583456, + -0.07950577884912491, + 0.005944106262177229, + 0.07566685974597931, + -0.061967894434928894, + -0.03671695664525032, + 0.09369868785142899, + -0.0024452703073620796, + 0.05688822269439697, + 0.0327313095331192, + -0.027895869687199593, + -0.009354015812277794, + -0.046237967908382416, + -0.01340029388666153, + -0.04848982393741608, + -0.005975785665214062, + 0.04506969079375267, + -0.02756928652524948, + -0.013696917332708836, + -0.024649346247315407, + -0.10749144107103348, + -0.005832676775753498, + -0.031164994463324547, + -0.056472163647413254, + -0.009948727674782276, + 0.18482527136802673, + -0.029607927426695824, + -0.05041227489709854, + -0.053630705922842026, + -0.07145094126462936, + -0.019011281430721283, + -0.04710725322365761, + -0.012329020537436008, + -0.002981154015287757, + 9.020005290821124e-34, + -0.015049711801111698, + 0.10875306278467178, + -0.01917313225567341, + 0.054601915180683136, + -0.0499575138092041, + 0.02736855298280716, + -0.05623197555541992, + -0.02143383026123047, + -0.07065633684396744, + 0.03493484482169151, + 0.054910458624362946, + 0.08841736614704132, + 0.04783884808421135, + 0.03931834176182747, + -0.07279554754495621, + 0.0016209593741223216, + 0.0656866505742073, + 0.003866881364956498, + -0.04191974923014641, + -0.051658108830451965, + -0.06933123618364334, + 0.05195305496454239, + -0.055389899760484695, + 0.058700207620859146, + 0.0556303933262825, + -0.016117561608552933, + 0.060264039784669876, + 0.0009845022577792406, + -0.06336073577404022, + 0.06476520746946335, + 0.04502926394343376, + -0.015272840857505798, + -0.050780296325683594, + 0.06157759949564934, + 0.007315940223634243, + -0.004710037726908922, + -0.09185832738876343, + -0.020899822935461998, + -0.002729116240516305, + 0.07852395623922348, + -0.01895429752767086, + -0.00964687205851078, + 0.0013173525221645832, + -0.007133045233786106, + 0.020723985508084297, + 0.10470765084028244, + 0.0051867724396288395, + 0.026041869074106216, + 0.11377593129873276, + 0.024632003158330917, + 0.004581575747579336, + -0.051852997392416, + -0.05263769254088402, + 0.04467771202325821, + -0.019545812159776688, + -0.030950723215937614, + -0.013861953280866146, + 0.07445239275693893, + 0.05421051010489464, + -0.0418260432779789, + 0.011213828809559345, + 0.07147712260484695, + 0.036965690553188324, + -0.014813301153481007, + -0.08256039023399353, + -0.02425500936806202, + -0.026670685037970543, + -0.042505089193582535, + 0.08193530887365341, + 0.03229554742574692, + 0.04595925286412239, + 0.04323803260922432, + 0.05812891200184822, + 0.05860433727502823, + -0.09612824022769928, + -0.011675892397761345, + -0.02469165064394474, + 0.005205841269344091, + 0.05656999349594116, + 0.004694767761975527, + -0.0929674357175827, + 0.03961607441306114, + -0.04621025174856186, + 0.12612798810005188, + 0.03269825875759125, + -0.007473822683095932, + 0.050207141786813736, + -0.046781741082668304, + -0.05387422814965248, + 0.020000269636511803, + -0.035371556878089905, + -0.021069874987006187, + -0.07650335878133774, + 0.011440211907029152, + -0.06686447560787201, + -1.7476689811499207e-33, + 0.06427755951881409, + 0.0009610700071789324, + -0.015961388126015663, + 0.008408837020397186, + -0.08573126792907715, + -0.018366847187280655, + 0.10322270542383194, + 0.07859095931053162, + 0.028635287657380104, + 0.017090298235416412, + 0.011113296262919903, + 0.0051751635037362576, + -0.08636367321014404, + -0.07061068713665009, + 0.03822724148631096, + 0.03450677543878555, + 0.062180619686841965, + 0.03725193813443184, + -0.029294759035110474, + -0.02207806147634983, + -0.06732271611690521, + -0.0025978859048336744, + -0.05256563425064087, + 0.05216098204255104, + -0.02906295843422413, + -0.0011980276321992278, + 0.05911003053188324, + 0.01328576635569334, + -0.0479375459253788, + -0.010372718796133995, + 0.009339475072920322, + 0.027954483404755592, + -0.01473492756485939, + 0.09180491417646408, + -0.12280533462762833, + -0.007322217337787151, + 0.02406843565404415, + 0.05994437262415886, + 0.040770210325717926, + 0.02696315012872219, + 0.09685419499874115, + 0.04422773793339729, + -0.0007180863176472485, + 0.08653898537158966, + -0.006240083836019039, + -0.014865904115140438, + -0.06580429524183273, + -0.10428734868764877, + 0.0036353585310280323, + 0.03105459176003933, + 0.006434372626245022, + -0.09846583753824234, + 0.06319892406463623, + -0.028485525399446487, + -0.08103783428668976, + -0.019494768232107162, + 0.07026322931051254, + 0.006777594331651926, + -0.05961903929710388, + -0.004131203517317772, + 0.018398070707917213, + 0.01703779771924019, + 0.04721769690513611, + 0.03580459952354431, + 0.006994463503360748, + -0.051076292991638184, + -0.0018894037930294871, + -0.047950614243745804, + -0.06350017338991165, + -0.06930407136678696, + 0.0839543491601944, + -0.06670918315649033, + -0.067940853536129, + 0.03578143194317818, + -0.036988548934459686, + -0.03628471493721008, + 0.015340323559939861, + 0.041254911571741104, + -0.027518529444932938, + 0.017773335799574852, + -0.017835628241300583, + 0.026863252744078636, + -0.09491872787475586, + 0.05502099171280861, + -0.04056458920240402, + 0.0719027891755104, + -0.01169931422919035, + 0.058859553188085556, + 0.03298771008849144, + 0.005085376091301441, + -0.03698088601231575, + 0.08435606211423874, + 0.007298681419342756, + -0.01744212582707405, + -0.10704005509614944, + -2.1927430537971304e-08, + -0.03947349637746811, + -0.06990616023540497, + 0.06835801899433136, + -0.0019063404761254787, + 0.036129117012023926, + 0.04210178926587105, + -0.01489511039108038, + -0.07040190696716309, + 0.005641068797558546, + -0.0488768145442009, + -0.011914233677089214, + 0.01727677881717682, + -0.08702686429023743, + -0.03534858673810959, + 0.10080158710479736, + -0.008124875836074352, + -0.0263053048402071, + 0.001019589719362557, + -0.056496646255254745, + -0.009423119947314262, + -0.023735443130135536, + 0.13682737946510315, + 0.0148883406072855, + -0.04573249816894531, + 0.05510181561112404, + 0.01898602768778801, + -0.03655458986759186, + 0.03060898929834366, + 0.04996044188737869, + 0.07246020436286926, + 0.01590842567384243, + 0.01662348583340645, + 0.011970275081694126, + -0.032916728407144547, + -0.10159282386302948, + 0.04013686999678612, + 0.019235067069530487, + -0.09775884449481964, + 0.011373868212103844, + 0.09257251769304276, + -0.0009767680894583464, + -0.07229070365428925, + -0.04957931116223335, + -0.02768576517701149, + 0.008374829776585102, + 0.015876146033406258, + 0.023858297616243362, + -0.07611872255802155, + -0.005703957751393318, + -0.11026859283447266, + -0.030595744028687477, + -0.016309088096022606, + -0.02189282700419426, + 0.06098242476582527, + -0.09670356661081314, + -0.06468473374843597, + 0.024954507127404213, + -0.0019217077642679214, + 0.033665869385004044, + 0.018053047358989716, + 0.09544249624013901, + -0.007121233735233545, + -0.05231541395187378, + 0.022853776812553406 + ], + "atom-bold||atomic,nucleus,nuclear,reactor,science,physics,electron,automation,react": [ + -0.0036009582690894604, + -0.041245777159929276, + -0.03858392313122749, + 0.06871035695075989, + 0.022665107622742653, + 0.01908148266375065, + 0.030132852494716644, + 0.03816273808479309, + -0.04957592487335205, + 0.046469103544950485, + 0.05286664515733719, + -0.07105103135108948, + 0.0029127681627869606, + -0.006486611440777779, + 0.008611610159277916, + 0.04741012305021286, + -0.0008593138190917671, + -0.023771917447447777, + -0.018916437402367592, + 0.01396916527301073, + 0.015069376677274704, + 0.022148484364151955, + 0.09539822489023209, + 0.012326342053711414, + 0.03902864828705788, + 0.07943663746118546, + 0.058657217770814896, + -0.030465109273791313, + 0.03181890770792961, + -0.07495274394750595, + -0.017759954556822777, + 0.030731193721294403, + 0.11843656003475189, + -0.009493045508861542, + 0.07102932780981064, + -0.03428048640489578, + -0.10555431991815567, + -0.07601521164178848, + 0.03673415258526802, + 0.025054510682821274, + 0.005863145925104618, + -0.03305787593126297, + -0.011637444607913494, + 0.044198110699653625, + -0.007023604586720467, + 0.03120492585003376, + 0.027998004108667374, + -0.07469866424798965, + -0.019829118624329567, + -0.007793507073074579, + -0.009160775691270828, + -0.08331354707479477, + -0.08344016969203949, + 0.055180057883262634, + 0.05020355060696602, + 0.04389946535229683, + 0.04001561552286148, + -0.02744462341070175, + 0.021393833681941032, + -0.05605226755142212, + 0.022028861567378044, + -0.02961059659719467, + 0.03225838765501976, + 0.026503577828407288, + 0.08816366642713547, + 0.050916094332933426, + 0.01683906652033329, + 0.017078163102269173, + 0.0282022412866354, + 0.02449624240398407, + 0.024347146973013878, + -0.028659116476774216, + 0.018954427912831306, + 0.02794264815747738, + -0.007835264317691326, + -0.050312742590904236, + 0.08737888187170029, + 0.015349640510976315, + 0.04255817085504532, + -0.021633191034197807, + -0.12833480536937714, + -0.06456658244132996, + -0.0938987284898758, + -0.015416242182254791, + -0.045926470309495926, + 0.11979535967111588, + -0.05025109648704529, + -0.07754958420991898, + -0.032529305666685104, + -0.049591220915317535, + -0.09119386970996857, + -0.06440973281860352, + 0.09932096302509308, + -0.003300134325399995, + -0.05691060423851013, + 0.10217674821615219, + 0.06009870395064354, + 0.0007703060982748866, + 0.002242155373096466, + 0.02607681229710579, + 0.10007267445325851, + 0.09872842580080032, + -0.05772833898663521, + 0.034311164170503616, + -0.10465595126152039, + -0.03759395703673363, + 0.010622357949614525, + -0.061104875057935715, + -0.0010658311657607555, + 0.05421692505478859, + 0.021313486620783806, + -0.09258564561605453, + 0.000674778304528445, + -0.05620799958705902, + 0.016356442123651505, + -0.0373060517013073, + 0.0073769837617874146, + 0.015409582294523716, + 0.08965329825878143, + 0.05273597687482834, + 0.0003159982734359801, + -0.030912308022379875, + -0.016628818586468697, + 0.04737703874707222, + 0.04102131724357605, + -0.011176268570125103, + -0.018839236348867416, + -4.064005395029201e-33, + 0.07821433991193771, + 0.04411499574780464, + -0.034741394221782684, + 0.0538722388446331, + -0.028923170641064644, + -0.04848850518465042, + -0.014254278503358364, + -0.07828587293624878, + -0.08866198360919952, + 0.027844686061143875, + 0.07021992653608322, + 0.05238145589828491, + 0.03234664350748062, + 0.03518836200237274, + -0.004769299644976854, + -0.005675464402884245, + 0.03675747290253639, + 0.02973884902894497, + -0.03313541039824486, + 0.015231087803840637, + -0.053111184388399124, + 0.08483204990625381, + -0.028020303696393967, + -0.004218894988298416, + -0.02444625459611416, + -0.004650580231100321, + 0.00471898028627038, + -0.03316893428564072, + -0.04016382247209549, + -0.024823756888508797, + 0.020782524719834328, + 0.11531499028205872, + -0.007589544169604778, + 0.06586301326751709, + -0.016887417063117027, + -0.03333760425448418, + -0.1159224584698677, + -0.029687320813536644, + -0.006550008896738291, + -0.08651894330978394, + -0.07158614695072174, + 0.009188652038574219, + -0.04986245185136795, + 0.032270606607198715, + 0.12095291167497635, + 0.0639946386218071, + -0.010432272218167782, + -0.05209672451019287, + 0.06138738617300987, + 0.0030429232865571976, + -0.035058408975601196, + -0.05632878467440605, + 0.10862638801336288, + -0.020817700773477554, + 0.06549365818500519, + 0.025327548384666443, + -0.002735610119998455, + 0.06022578105330467, + -0.00474295811727643, + 0.03191706910729408, + -0.036245040595531464, + 0.07251603156328201, + 0.033487483859062195, + 0.003030192106962204, + -0.017942745238542557, + 0.12520326673984528, + -0.1221122294664383, + -0.027591798454523087, + 0.10898774117231369, + 0.03837498277425766, + -0.04167288914322853, + 0.056630849838256836, + 0.023087559267878532, + 0.03665422648191452, + 0.0334613136947155, + 0.0613778755068779, + -0.04453215003013611, + -0.10378868132829666, + -0.034703049808740616, + 0.0024827441666275263, + -0.1083771139383316, + -0.03526707738637924, + -0.05452698841691017, + 0.023748597130179405, + -0.005624100100249052, + -0.03676576539874077, + -0.09252188354730606, + -0.0515865683555603, + 0.054530754685401917, + 0.018038496375083923, + -0.010276881977915764, + -0.07388255000114441, + 0.02496189996600151, + -0.051438380032777786, + -0.10347951948642731, + 1.6093494792436237e-33, + -0.02622787095606327, + 0.03465275093913078, + -0.09255823493003845, + 0.002309817122295499, + -0.02192155458033085, + -0.007735258433967829, + -0.06456806510686874, + -0.03832145780324936, + -0.015779372304677963, + 0.031414587050676346, + 0.038969505578279495, + 0.00014194932009559125, + -0.073405921459198, + -0.1267971396446228, + -0.028713015839457512, + 0.011776026338338852, + 0.033939436078071594, + 0.008023490197956562, + 0.09552666544914246, + 0.04522568732500076, + -0.02334563061594963, + -0.044250454753637314, + -0.060796305537223816, + 0.048277243971824646, + 0.04940767213702202, + 0.06433527171611786, + 0.03926899656653404, + -0.05160168185830116, + 0.05402470380067825, + -0.021716302260756493, + -0.023152394220232964, + 0.0027999053709208965, + 0.048738643527030945, + 0.07019973546266556, + -0.05095332860946655, + -0.025269662961363792, + 0.04645957425236702, + 0.020124224945902824, + 0.0025736354291439056, + -0.06472210586071014, + -0.04636073857545853, + 0.022519415244460106, + 0.046290624886751175, + 0.05140555277466774, + -0.005663196090608835, + -0.05632314085960388, + -0.06463257223367691, + 0.006384407170116901, + -0.0832885205745697, + 0.034074366092681885, + 0.01703832671046257, + -0.07041183114051819, + 0.02834060974419117, + -0.0885014608502388, + -0.008052708581089973, + -0.013044125400483608, + 0.0003691888996399939, + 0.0391785129904747, + 0.033424533903598785, + 0.05193864554166794, + 0.03146480768918991, + -0.004595062229782343, + 0.06310123205184937, + 0.07168009877204895, + -0.07906585931777954, + -0.11638146638870239, + -0.059545621275901794, + 0.023803317919373512, + 0.02499724179506302, + -0.06481076031923294, + 0.016576500609517097, + 0.06923697888851166, + 0.027790280058979988, + 0.004606103990226984, + 0.028771378099918365, + -0.06567653268575668, + 0.04941076040267944, + -0.04606770724058151, + -0.03755267336964607, + 0.057060133665800095, + -0.06506151705980301, + 0.07842277735471725, + -0.06225868687033653, + 0.04022115841507912, + -0.04561443254351616, + 0.056722383946180344, + -0.032422199845314026, + 0.040820132941007614, + 0.038377441465854645, + -0.049820512533187866, + -0.057548969984054565, + 0.046961016952991486, + 0.018224965780973434, + -0.015052242204546928, + -0.038385916501283646, + -2.042327373885655e-08, + 0.027662791311740875, + -0.013085094280540943, + 0.00601903535425663, + -0.05523576959967613, + 0.10058347135782242, + 0.01766018569469452, + -0.03326202183961868, + -0.05762246996164322, + -0.06391816586256027, + 0.020851684734225273, + 0.012011125683784485, + 0.09025803953409195, + -0.014061179012060165, + -0.03150341287255287, + 0.08249294757843018, + 0.030143460258841515, + -0.03319168463349342, + -0.0027654378209263086, + -0.03273835405707359, + -0.024946607649326324, + 0.036969080567359924, + 0.03657488152384758, + 0.004226353485137224, + 0.02588636800646782, + 0.0376417301595211, + 0.011529422365128994, + -0.013269398361444473, + 0.015998074784874916, + 0.004461875185370445, + -0.007666440214961767, + 0.01562766544520855, + -0.002034734236076474, + 0.032853614538908005, + -0.027841895818710327, + -0.021004004403948784, + -0.02843307889997959, + 0.07692059874534607, + -0.09987302869558334, + -0.05235337093472481, + 0.11210916936397552, + -0.042255744338035583, + 0.038721971213817596, + -0.05231189355254173, + 0.010875571519136429, + -0.023737745359539986, + 0.0019649541936814785, + -0.028920048847794533, + -0.026311302557587624, + 0.005660912953317165, + -0.0789765790104866, + -0.047615863382816315, + 0.0027337027713656425, + -0.06843142956495285, + 0.009896056726574898, + -0.027786390855908394, + 0.037256136536598206, + -0.04350138083100319, + 0.0005236549186520278, + -0.017292913049459457, + -0.01272960938513279, + 0.1598510444164276, + -0.012791251763701439, + 0.06184135004878044, + -0.01915503479540348 + ], + "avocado-bold||*new*,food,vegetable,veggie,fruit,groceries,market": [ + 0.008604078553617, + -0.037409037351608276, + -0.02766847237944603, + 0.07780668884515762, + 0.04989983141422272, + 0.03760139271616936, + 0.03832748904824257, + -0.07517319917678833, + -0.007151980418711901, + -0.012983147986233234, + 0.11647577583789825, + -0.08373837172985077, + -0.0577910952270031, + -0.10440351814031601, + -0.029365113005042076, + -0.023985449224710464, + 0.10819622874259949, + 0.02584769017994404, + 0.005757582373917103, + -0.003552531125023961, + 0.01465600449591875, + 0.04990818724036217, + 0.015621471218764782, + 0.0062543428502976894, + 0.05256590247154236, + 0.04933604970574379, + 0.018653148785233498, + 0.04367634654045105, + -0.04959947243332863, + -0.08422618359327316, + -0.04796280339360237, + -0.0010937924962490797, + 0.18906836211681366, + 0.07334041595458984, + 0.03881247341632843, + -0.005041658412665129, + -0.002208236139267683, + -0.11039503663778305, + 0.019765591248869896, + -0.027760403230786324, + 0.03555436432361603, + -0.04328684136271477, + -0.0045792399905622005, + 0.026459932327270508, + -0.05037209391593933, + -0.00707927206531167, + -0.016021743416786194, + -0.025875668972730637, + 0.07334189862012863, + -0.012867307290434837, + -0.0759124904870987, + -0.09943877905607224, + -0.1090289056301117, + -0.01738967001438141, + 0.027656281366944313, + 0.05937039107084274, + -0.08165063709020615, + -0.08742786198854446, + 0.016400696709752083, + 0.08561693131923676, + 0.05356111004948616, + -0.028056487441062927, + 0.02740572765469551, + 0.03583928570151329, + -0.028579356148838997, + -0.03861021623015404, + -0.03586723282933235, + 0.023137176409363747, + -0.046509236097335815, + 0.012953070923686028, + 0.0173606276512146, + 0.06151866167783737, + -0.004950551316142082, + 0.054604701697826385, + -0.07602895796298981, + 0.041226040571928024, + 0.023058053106069565, + -0.04184458404779434, + 0.02727043814957142, + -0.06292930245399475, + -0.059503164142370224, + -0.05367250740528107, + -0.08279632031917572, + -0.03178856149315834, + -0.03958284109830856, + -0.01394074596464634, + -0.024231497198343277, + -0.027936091646552086, + -0.043723635375499725, + 0.00991798099130392, + -0.002484469208866358, + 0.02675941213965416, + 0.0030517682898789644, + -0.0014864217955619097, + 0.004580581560730934, + -0.0018133865669369698, + 0.04960298910737038, + -0.1288914680480957, + -0.025747915729880333, + 0.010219614952802658, + 0.016309360042214394, + 0.011669838801026344, + 0.09846130013465881, + -0.020249737426638603, + -0.07148609310388565, + -0.022312261164188385, + -0.07302611321210861, + -0.06408204138278961, + -0.011910224333405495, + 0.08382470160722733, + -0.05396859720349312, + 0.004943564534187317, + -0.07260601967573166, + -0.06411376595497131, + -0.0631585419178009, + -0.001388039905577898, + -0.009909126907587051, + -0.09134408831596375, + 0.02192050777375698, + 0.08730801194906235, + -0.0076726386323571205, + -0.032408423721790314, + 0.016211386770009995, + -0.066405288875103, + -0.07108704745769501, + -0.0019033655989915133, + 0.0010140736121684313, + -8.100799014191827e-34, + -0.012706874869763851, + 0.009133013896644115, + -0.019035302102565765, + 0.0683247372508049, + 0.04298103228211403, + -0.00024022352590691298, + -0.05011536180973053, + 0.017307844012975693, + 0.00480831740424037, + 0.021961495280265808, + -0.038176845759153366, + -0.0006440168945118785, + -0.04533429443836212, + 0.15043403208255768, + 0.08403075486421585, + 0.004735131748020649, + -0.06107800826430321, + -0.02138790860772133, + 0.009599835611879826, + 0.02402019314467907, + -0.06268458813428879, + 0.039681702852249146, + -0.0402800515294075, + 0.0025412070099264383, + -0.037048760801553726, + -0.09483646601438522, + 0.05220014229416847, + -0.07373332977294922, + 0.03015810251235962, + 0.017106765881180763, + 0.027621975168585777, + 0.036593958735466, + 0.028412336483597755, + -0.034678954631090164, + -0.05463961139321327, + 0.026115544140338898, + -0.019751904532313347, + -0.04583010822534561, + 0.0022931741550564766, + 0.02967650815844536, + 0.05655769258737564, + 0.004825743846595287, + 0.03441767767071724, + 0.031015818938612938, + 0.04093522951006889, + 0.05648483335971832, + 0.0032771872356534004, + 0.0037523123901337385, + 0.02796080708503723, + 0.03792157024145126, + -0.0050530387088656425, + -0.07842397689819336, + -0.02356722205877304, + -0.016355203464627266, + -0.008378298953175545, + -0.012317259795963764, + -0.07610295712947845, + 0.07062768936157227, + -0.045456014573574066, + -0.041563451290130615, + 0.014276498928666115, + 0.05532148852944374, + 0.042170871049165726, + -0.02155117876827717, + -0.05909436196088791, + 0.04236576706171036, + -0.12252747267484665, + -0.012300267815589905, + 0.03397774323821068, + 0.0735170990228653, + 0.053533703088760376, + 0.01850956119596958, + 0.025935012847185135, + 0.02320372313261032, + -0.025537410750985146, + 0.028216779232025146, + -0.028233852237462997, + 0.05786442756652832, + -0.0203836802393198, + -0.04720326140522957, + -0.027102287858724594, + 0.0605919286608696, + 0.03069656901061535, + 0.09980825334787369, + -0.024978263303637505, + 0.1311187446117401, + -0.0506846122443676, + -0.029131637886166573, + 0.0370962992310524, + 0.030661161988973618, + -0.030981460586190224, + 0.03644213452935219, + -0.04532802104949951, + -0.04540231078863144, + -0.08893179893493652, + -2.2581740554265473e-33, + -6.787055463064462e-05, + -0.05224759876728058, + -0.018827572464942932, + 0.04806976765394211, + -0.0051043047569692135, + 0.00531876552850008, + -0.03405774384737015, + 0.03440248593688011, + 0.044825777411460876, + -0.07053200900554657, + -0.029887286946177483, + -0.012584407813847065, + 0.04518941044807434, + -0.11398836970329285, + 0.008741290308535099, + 0.09534933418035507, + -0.012056798674166203, + 0.03502232953906059, + -0.008266231045126915, + 0.012425718829035759, + -0.12263157218694687, + -0.006228916347026825, + 0.010626699775457382, + 0.06526436656713486, + 0.026913676410913467, + 0.009893348440527916, + 0.04739779978990555, + 0.02963303215801716, + -0.07912952452898026, + -0.02746068686246872, + 0.013735645450651646, + -0.13251788914203644, + 0.0319373793900013, + 0.08744470775127411, + -0.03565288707613945, + 0.06644462794065475, + -0.016952594742178917, + -0.16835634410381317, + 0.04511548951268196, + 0.07159143686294556, + -0.00448466744273901, + 0.017241444438695908, + 0.028197403997182846, + 0.013809802010655403, + -0.06172430142760277, + -0.05068228766322136, + -0.02726730704307556, + -0.051226478070020676, + -0.0077523826621472836, + -0.042452309280633926, + 0.054500650614500046, + -0.01999749429523945, + -0.07008794695138931, + 0.010005352087318897, + -0.019481783732771873, + 0.05396922305226326, + -0.00403275340795517, + 0.04432002082467079, + -0.08730747550725937, + 0.003665344323962927, + -0.03701392933726311, + 0.07628731429576874, + 0.024357859045267105, + -0.009362896904349327, + 0.07318869233131409, + -0.004378988407552242, + 0.018271980807185173, + -0.043861620128154755, + -0.060322221368551254, + -0.023895667865872383, + 0.06833211332559586, + 0.045575011521577835, + -0.05499216541647911, + 0.01088644377887249, + -0.0010042166104540229, + 0.030917320400476456, + 0.03235694766044617, + 0.010805987752974033, + -0.046479735523462296, + 0.03503111004829407, + 0.04480660706758499, + -0.02120479755103588, + -0.06632917374372482, + 0.06369716674089432, + -0.04178745299577713, + 0.035895057022571564, + -0.0501241572201252, + 0.04774080961942673, + -0.012323059141635895, + 0.0708281397819519, + -0.04370347782969475, + 0.0454130582511425, + -0.04550556093454361, + 0.057474467903375626, + 0.018669214099645615, + -2.310047619857869e-08, + 0.09323883801698685, + -0.06928697973489761, + -0.04242338612675667, + 0.05016247183084488, + 0.04343658313155174, + -0.028507983312010765, + -0.02435348369181156, + -0.054177019745111465, + 0.008696761913597584, + 0.004781885072588921, + -0.025475656613707542, + 0.061521828174591064, + -0.09587808698415756, + 0.07962300628423691, + 0.008828011341392994, + -0.05487963929772377, + -5.9557172789936885e-05, + 0.10503367334604263, + -0.007811099756509066, + -0.002100475365296006, + -0.10239609330892563, + 0.09308222681283951, + -0.020955145359039307, + -0.08407960832118988, + 0.03438383713364601, + 0.04024399444460869, + 0.012858814559876919, + -0.03670312464237213, + 0.08820556104183197, + 0.06561324745416641, + 0.08335551619529724, + 0.030601391568779945, + -0.011465598829090595, + -0.018035346642136574, + -0.08467277139425278, + 0.00382227567024529, + -0.033430278301239014, + -0.004100707359611988, + -0.058334171772003174, + 0.04265391454100609, + 0.06804296374320984, + -0.014710049144923687, + -0.05310409516096115, + -0.02934904210269451, + -0.10899390280246735, + 0.008913885802030563, + -0.02466493844985962, + 0.04155805706977844, + -0.0030225305818021297, + -0.022390972822904587, + -0.02581191435456276, + 0.0380949005484581, + 0.06960970163345337, + 0.019866405054926872, + -0.035358890891075134, + -0.047014012932777405, + 0.03258892148733139, + -0.02923831343650818, + 0.042835842818021774, + 0.013197962194681168, + 0.06610545516014099, + 0.003784664673730731, + 0.022393783554434776, + 0.09034470468759537 + ], + "axe-bold||*new*,tools,carpentry,forestry,construction": [ + -0.01067119650542736, + 0.006278224755078554, + -0.023357413709163666, + 0.04944741725921631, + 0.02643372118473053, + -0.09568803012371063, + 0.032898105680942535, + -0.07702241837978363, + -0.07129254192113876, + 0.0927780345082283, + 0.03649989143013954, + -0.04562661796808243, + -0.03840714693069458, + 0.010460449382662773, + -0.06406962126493454, + 0.03827136009931564, + -0.016967156901955605, + -0.04088908061385155, + 0.03195599094033241, + 0.015373236499726772, + 0.018041804432868958, + 0.12914146482944489, + 0.03661493584513664, + 0.016516923904418945, + 0.07196592539548874, + 0.05842582508921623, + -0.025176554918289185, + 0.0449724979698658, + 0.03936517611145973, + -0.05476800724864006, + 0.005111271515488625, + 0.0449381060898304, + 0.02236560359597206, + 0.043027039617300034, + 0.028066599741578102, + 0.031404800713062286, + 0.01188379805535078, + -0.053735487163066864, + 0.013317487202584743, + 0.047714583575725555, + -0.0214279405772686, + -0.0005328198312781751, + -0.003438435960561037, + -0.02549094893038273, + -0.06934477388858795, + -0.0006133519345894456, + -0.02234819158911705, + -0.050556082278490067, + 0.025522297248244286, + 0.013819349929690361, + 0.019818656146526337, + -0.11961446702480316, + -0.11016061902046204, + -0.03210146725177765, + 0.06770788878202438, + 0.0074776834808290005, + -0.08009262382984161, + -0.07256756722927094, + 0.025418858975172043, + 0.003827259410172701, + 0.06829797476530075, + 0.0646756961941719, + -0.004161641001701355, + 0.03790244832634926, + -0.008267157711088657, + -0.013194750994443893, + -0.062208451330661774, + 0.0042609646916389465, + -0.10219907760620117, + 0.025325188413262367, + 0.014377143234014511, + -0.0380556657910347, + -0.005717169027775526, + 0.005587941035628319, + -0.020985208451747894, + -0.04358426854014397, + 0.031682610511779785, + 0.01975024864077568, + -0.0018196445889770985, + -0.11400901526212692, + -0.10347654670476913, + 0.050207268446683884, + -0.02820446714758873, + 0.001554128946736455, + 0.018474947661161423, + 0.10726188123226166, + -0.0349748320877552, + -0.025332164019346237, + -0.0019125695107504725, + -0.06328343600034714, + -0.004313069395720959, + -0.03835021331906319, + -0.04081748425960541, + 0.06880373507738113, + -0.034201089292764664, + 0.053653135895729065, + 0.0644311010837555, + 0.035448357462882996, + -0.08157502114772797, + 0.07436995953321457, + -0.009479732252657413, + -0.00886031985282898, + 0.004130748566240072, + -0.06547164171934128, + -0.11318621039390564, + 0.025941425934433937, + -0.10687168687582016, + -0.022008657455444336, + -0.04535678029060364, + -0.0013454650761559606, + 0.029242344200611115, + -0.047245901077985764, + -0.08282943069934845, + -0.00830652005970478, + 0.00022624329722020775, + 0.002620104467496276, + -0.0543394610285759, + -0.0860806554555893, + 0.06685718148946762, + 0.0497840940952301, + 0.03170056268572807, + 0.023204557597637177, + 0.008907019160687923, + -0.0201861709356308, + 0.00840677134692669, + 0.0108512407168746, + 0.06649802625179291, + -2.3215203439664065e-33, + 0.015181154944002628, + 0.04469788074493408, + -0.09320420026779175, + 0.04694708436727524, + 0.027080753818154335, + -0.06453276425600052, + -0.032160647213459015, + 0.0008684326894581318, + -0.01669851504266262, + 0.09790164232254028, + 0.025592226535081863, + 0.07185152173042297, + -0.04122517630457878, + 0.06716257333755493, + 0.12814202904701233, + -0.07980823516845703, + 0.03834714740514755, + -0.04846837744116783, + -0.04216728359460831, + -0.003424384631216526, + -0.07575210183858871, + 0.05131794884800911, + -0.03844311460852623, + 0.011527537368237972, + 0.008126593194901943, + -0.036724891513586044, + 0.0801568478345871, + -0.0659615620970726, + -0.03439878299832344, + 0.03725810348987579, + 0.004480564035475254, + 0.0681244432926178, + 0.06620758026838303, + -0.0019430986139923334, + -0.03727561980485916, + 0.03780338168144226, + -0.011214032769203186, + -0.07377934455871582, + -0.07536525279283524, + -0.0014270141255110502, + -0.014668216928839684, + -0.008833788335323334, + -0.018409015610814095, + 0.001190827344544232, + 0.07855810970067978, + 0.08361241221427917, + 0.017816998064517975, + 0.044326119124889374, + -0.0031648497097194195, + 0.027935020625591278, + -0.002090046415105462, + 0.08069953322410583, + 0.10378336161375046, + 0.04495001956820488, + -0.060658086091279984, + 0.024814436212182045, + -0.03769484534859657, + 0.03594062477350235, + 0.04897285997867584, + -0.0012356590013951063, + -0.022270862013101578, + 0.009590688161551952, + 0.01981036551296711, + 0.058392032980918884, + -0.02509470470249653, + 0.011980429291725159, + 0.04770994931459427, + 0.01919998787343502, + 0.083211749792099, + -0.0006175311864353716, + -0.02851274237036705, + 0.018413979560136795, + 0.005110128782689571, + 0.077065110206604, + -0.047090061008930206, + 0.04307452589273453, + -0.024627361446619034, + 0.035984329879283905, + 0.017608851194381714, + -0.0737684816122055, + -0.11384207755327225, + 0.039921555668115616, + -0.07744370400905609, + 0.06078505143523216, + 0.06006947159767151, + -0.02039816603064537, + 0.06582512706518173, + -0.05181300267577171, + 0.018122565001249313, + 0.060769371688365936, + -0.11373606324195862, + 0.027401361614465714, + -0.06655453145503998, + -0.08783810585737228, + -0.047991231083869934, + -1.4311400357196532e-33, + 0.02964787930250168, + -0.0012503555044531822, + -0.09272733330726624, + -0.012542636133730412, + -0.07248926907777786, + 0.005219513550400734, + -0.008238597773015499, + -0.038764581084251404, + -0.010247534140944481, + -0.036206476390361786, + -0.007804793771356344, + 0.05821705982089043, + -0.00971154309809208, + -0.04475373774766922, + 0.08319204300642014, + -0.047922283411026, + -0.06180685758590698, + 0.05845865234732628, + 0.024279417470097542, + 0.026244601234793663, + 0.038052141666412354, + 0.00727436225861311, + -0.049543630331754684, + -0.016457967460155487, + 0.014541881158947945, + 0.009265621192753315, + -0.04906114563345909, + -0.04470459371805191, + -0.07433030754327774, + -0.048614487051963806, + -0.040074944496154785, + -0.04986570402979851, + 0.026899203658103943, + 0.052766431123018265, + -0.08964484184980392, + 0.02948838099837303, + 0.06535202264785767, + -0.05669305846095085, + -0.02882453054189682, + 0.0026623322628438473, + 0.07685227692127228, + -0.0010025511728599668, + 0.048769231885671616, + 0.08874506503343582, + -0.09282739460468292, + -0.08588338643312454, + -0.10924000293016434, + 0.010599317960441113, + -0.03805118054151535, + 0.037355318665504456, + 0.08334213495254517, + 0.05902108550071716, + 0.08342067897319794, + -0.08855324983596802, + 0.005310180597007275, + -0.0371718630194664, + 0.005887843668460846, + -0.12362542003393173, + -0.04844041168689728, + 0.0789792537689209, + -0.015768805518746376, + 0.057803675532341, + -0.041950494050979614, + 0.10127098113298416, + 0.09282511472702026, + -0.08492439985275269, + -0.054502494633197784, + -0.0820135548710823, + -0.04751637205481529, + -0.001594234025105834, + 0.028322631493210793, + 0.023614849895238876, + -0.02313355542719364, + -0.026879247277975082, + -0.010079008527100086, + -0.037157636135816574, + 0.07525958865880966, + 0.0019608449656516314, + 0.0160268135368824, + 0.025586379691958427, + 0.0121474489569664, + -0.030117863789200783, + 0.02313397079706192, + 0.05992503464221954, + -0.05613173171877861, + 0.029481105506420135, + -0.029900146648287773, + 0.03232748433947563, + 0.04579250141978264, + -0.018805459141731262, + -0.0023439633660018444, + -0.020120002329349518, + -0.04488440603017807, + -0.012066000141203403, + -0.05660675838589668, + -2.197367621192825e-08, + -0.04602394998073578, + 0.07854986935853958, + -0.061053380370140076, + -0.029476813971996307, + 0.029731441289186478, + -0.014772756956517696, + -0.014351043850183487, + -0.004728376399725676, + -0.054344452917575836, + -0.035141944885253906, + 0.04026060551404953, + 0.05266834422945976, + -0.042118292301893234, + 0.06627921760082245, + 0.013447858393192291, + -0.03374869003891945, + -0.004469152074307203, + 0.0003710459277499467, + -0.07273281365633011, + -0.11558700352907181, + -0.0024113263934850693, + 0.042088963091373444, + 0.04332208260893822, + -0.0006100120954215527, + -0.03300761431455612, + -0.001226436230354011, + -0.05290350690484047, + -0.01016329601407051, + 0.057775940746068954, + 0.15019303560256958, + 0.029948070645332336, + 0.08711829036474228, + 0.021407535299658775, + 0.0215784702450037, + -0.03366168588399887, + -0.03747166693210602, + -0.03736409172415733, + 0.04354356974363327, + -0.01065603457391262, + 0.03764686360955238, + -0.06622003763914108, + -0.03053545206785202, + 0.007016547955572605, + -0.03270449861884117, + -0.05503401532769203, + 0.02624356746673584, + -0.03976309671998024, + -0.013437089510262012, + 0.013652856461703777, + -0.13622625172138214, + -0.0007731661899015307, + 0.011993194930255413, + 0.051397427916526794, + 0.030844900757074356, + -0.0406988151371479, + 0.01615133136510849, + 0.03249232470989227, + 0.031142450869083405, + -0.012950197793543339, + -0.048816975206136703, + 0.10489196330308914, + -0.043660007417201996, + 0.03239571303129196, + 0.09401150047779083 + ], + "baby-bold||infant,child,children,toddler": [ + -0.017936326563358307, + -0.03000475838780403, + -0.040574248880147934, + 0.07222941517829895, + 0.03922084718942642, + 0.008196205832064152, + 0.006755721289664507, + -0.03041607141494751, + 0.015343835577368736, + 0.05377931892871857, + 0.03225173428654671, + -0.039388708770275116, + -0.013993825763463974, + -0.012934165075421333, + 0.032754868268966675, + 0.054331544786691666, + 0.06693500280380249, + 0.016994792968034744, + 0.052867017686367035, + -0.019891006872057915, + -0.02343119867146015, + 0.05545039847493172, + 0.07663825899362564, + 0.035921335220336914, + 0.02913186326622963, + 0.024895083159208298, + 0.031128281727433205, + 0.006452956236898899, + 0.05380944907665253, + -0.03717373311519623, + -0.017004651948809624, + -0.06588447839021683, + 0.10157693922519684, + -0.04844389110803604, + -0.004870518110692501, + -0.026830678805708885, + -0.001823774422518909, + 0.025511832907795906, + 0.031491924077272415, + 0.05210981145501137, + 0.04282097518444061, + -0.011478004045784473, + -0.07094603031873703, + -0.008351500146090984, + -0.05035615339875221, + -0.07081107050180435, + -0.09567216038703918, + -0.011445334181189537, + 0.005016579292714596, + 0.018201544880867004, + -0.04884263128042221, + -0.1354619562625885, + -0.07867158204317093, + 0.12952184677124023, + 0.017378894612193108, + -0.0036998207215219736, + -0.06782404333353043, + -0.06674180924892426, + 0.04308060556650162, + 0.03511952981352806, + -0.03204946219921112, + 0.009175682440400124, + 0.037581849843263626, + -0.01375028770416975, + 0.03814181685447693, + -0.02305874042212963, + 0.03981741890311241, + 0.000789754674769938, + 0.0003484951739665121, + 0.00405221339315176, + 0.07181499153375626, + 0.05796064808964729, + 0.05360576510429382, + 0.07226773351430893, + -0.11424478143453598, + 0.05675743147730827, + 0.03484217822551727, + 0.04966805875301361, + 0.0013942416990175843, + -0.09823191910982132, + -0.12465375661849976, + -0.07788565754890442, + -0.0622318796813488, + -0.06701862812042236, + -0.0080193430185318, + 0.06219741702079773, + -0.0825827419757843, + -0.07959704101085663, + -0.11425194144248962, + -0.01839194819331169, + -0.04246845096349716, + -0.0057636951096355915, + 0.06369033455848694, + 0.07472536712884903, + -0.011124896816909313, + -0.047087542712688446, + 0.06431911140680313, + -0.007642805110663176, + -0.08620667457580566, + 0.0026893075555562973, + -0.015927117317914963, + 0.061823770403862, + 0.07681719213724136, + 0.07617632299661636, + -0.048089705407619476, + -0.052858855575323105, + -0.062071703374385834, + -0.09510104358196259, + -0.050981052219867706, + 0.007998581975698471, + -0.06443527340888977, + -0.09299840778112411, + 0.01367133017629385, + 0.019415978342294693, + -0.06405632197856903, + -0.11293677240610123, + 0.015032901428639889, + -0.05174506828188896, + 0.09979581087827682, + 0.07409210503101349, + -0.001589053776115179, + 0.03799564018845558, + -0.017138179391622543, + -0.022129373624920845, + -0.01784038171172142, + -0.07546483725309372, + -0.01684746704995632, + -4.353508072295133e-34, + 0.02061859704554081, + 0.028850367292761803, + 0.005355049390345812, + 0.14665161073207855, + -0.018146494403481483, + 0.057822730392217636, + -0.043644603341817856, + -0.05012986809015274, + -0.06076953560113907, + 0.013987317681312561, + -0.026249872520565987, + 0.007628285326063633, + 0.015163982287049294, + 0.005705537274479866, + -0.01883428916335106, + 0.03961339220404625, + -0.05774037912487984, + -0.04857505112886429, + -0.0506746880710125, + 0.08638966083526611, + -0.053378187119960785, + 0.12306871265172958, + -0.07606188952922821, + -0.012757502496242523, + -0.012877365574240685, + -0.0020982567220926285, + 0.04470769315958023, + -0.027675002813339233, + -0.022247176617383957, + 0.047025714069604874, + 0.021372688934206963, + -0.0004502649244386703, + 0.025695744901895523, + -0.0029311515390872955, + -0.04645946994423866, + -0.04546745866537094, + 0.013422766700387001, + -0.016300223767757416, + -0.06039373204112053, + 0.05895295366644859, + -0.10952984541654587, + -0.06129445880651474, + 0.005528839770704508, + 0.026504239067435265, + -0.04454706609249115, + 0.07555829733610153, + 0.025528419762849808, + -0.04789726436138153, + -0.007054865825921297, + -0.016959426924586296, + 0.03895319253206253, + -0.05701592564582825, + -0.08978625386953354, + -0.025859776884317398, + -0.01698737032711506, + 0.08800444006919861, + -0.058968931436538696, + 0.07690733671188354, + -0.04768681526184082, + -0.027625633403658867, + 0.08244257420301437, + -0.003459029132500291, + 0.02841658517718315, + -0.026716304942965508, + -0.026293491944670677, + 0.03518182784318924, + -0.003658589441329241, + 0.06556028872728348, + 0.0911477729678154, + -0.016079142689704895, + 0.002333348849788308, + 0.029302481561899185, + -0.01952665112912655, + -0.03608875721693039, + 0.018963392823934555, + -0.00608034897595644, + 0.08519523590803146, + -0.04241297394037247, + -0.0036165101919323206, + -0.089460089802742, + -0.09223196655511856, + 0.08041106164455414, + 0.04925013706088066, + 0.08606705069541931, + -0.0395352877676487, + -0.08445426821708679, + -0.04921197518706322, + 0.0004125464765820652, + -0.05957907810807228, + 0.08208343386650085, + -0.02265467867255211, + 0.029491296038031578, + 0.025646375492215157, + -0.02945280447602272, + -0.0230119489133358, + -2.5103157569680048e-33, + 0.04265902563929558, + 0.008567539043724537, + 0.003807185450568795, + -0.06017088517546654, + -0.040485285222530365, + -0.027177346870303154, + -0.006771352607756853, + 0.06375090032815933, + 0.019075265154242516, + 0.05649898946285248, + -0.029865365475416183, + -0.040996767580509186, + -0.017791448161005974, + -0.10902544856071472, + -0.006315701175481081, + 0.017227327451109886, + 0.019253861159086227, + 0.10490527749061584, + 0.021533025428652763, + 0.020255425944924355, + 0.057114310562610626, + -0.0322127491235733, + -0.13081622123718262, + 0.017241165041923523, + 0.047060608863830566, + 0.027233872562646866, + 0.002985362196341157, + 0.05901077762246132, + -0.045966822654008865, + -0.02033080719411373, + -0.03070887364447117, + -0.03964051976799965, + 0.07697953283786774, + 0.02351241372525692, + -0.015095858834683895, + 0.022496258839964867, + -0.05525567755103111, + -0.05364451929926872, + 0.035414233803749084, + -0.038342658430337906, + -0.01556449756026268, + -0.022386768832802773, + 0.03997722640633583, + 0.06656462699174881, + -0.00727974995970726, + 0.003026134567335248, + 0.03893600404262543, + -0.0002418559161014855, + -0.013635915704071522, + 0.08117394149303436, + -0.008661970496177673, + -0.036620207130908966, + -0.07717577368021011, + 0.010564860887825489, + -0.044630520045757294, + -0.0023374075535684824, + 0.051888443529605865, + -0.036862846463918686, + 0.03994923457503319, + 0.12452023476362228, + 0.015123330987989902, + 0.0344049297273159, + -0.08811590075492859, + 0.012094559147953987, + -0.04302358999848366, + -0.011939896270632744, + -0.0333145372569561, + -0.04440310597419739, + 0.04913496598601341, + 0.01600554585456848, + 0.04636508226394653, + 0.03368569165468216, + 0.011999892070889473, + -0.051328014582395554, + 0.0027023744769394398, + -0.037318602204322815, + -0.05847511813044548, + 0.017059609293937683, + -0.021380770951509476, + 0.017645755782723427, + -0.015781477093696594, + -0.02537132240831852, + -0.05359399691224098, + 0.05117395892739296, + 0.0059506818652153015, + -0.0029115972574800253, + 0.04057774320244789, + -0.009048371575772762, + -0.02152837999165058, + -0.05805188789963722, + 0.0031653898768126965, + 0.032502975314855576, + -0.05285774543881416, + -0.05171053111553192, + -0.01428869180381298, + -1.9998266154175326e-08, + 0.03836923465132713, + 0.0032330178655683994, + -0.09095510095357895, + -0.0033175768330693245, + 0.05208119377493858, + -0.02679961360991001, + -0.07469295710325241, + -0.05040174722671509, + -0.08046182990074158, + 0.048857275396585464, + -0.028170114383101463, + 0.04987243935465813, + -0.015088165178894997, + -0.002426509978249669, + 0.08053682744503021, + 0.0049934727139770985, + -0.023961758241057396, + 0.017776919528841972, + -0.0005379727808758616, + 0.02783438004553318, + -0.008842525072395802, + 0.09125572443008423, + 0.07376819849014282, + 0.011095630936324596, + 0.016114691272377968, + -0.05902993306517601, + -0.040027931332588196, + -0.022323165088891983, + 0.0039002015255391598, + 0.04461894556879997, + 0.07954024523496628, + 0.0901724249124527, + -0.031484637409448624, + 0.05985195189714432, + -0.0667303204536438, + 0.007457179483026266, + -0.04917498677968979, + 0.03830668702721596, + 0.0010358260478824377, + 0.13004164397716522, + 0.07316400855779648, + 0.01638496108353138, + -0.013367928564548492, + -0.020461048930883408, + 0.0023849946446716785, + -0.04701458290219307, + 0.005102865863591433, + -0.04688073322176933, + -0.029610952362418175, + -0.07487090677022934, + -0.06331872940063477, + -0.06400038301944733, + -0.01715969853103161, + 0.05215540900826454, + 0.022166971117258072, + -0.024796249344944954, + -0.000593742763157934, + 0.043802447617053986, + -0.03070136159658432, + 0.12051449716091156, + 0.1338091939687729, + -0.006433933041989803, + 0.0798288956284523, + 0.06464186310768127 + ], + "baby-carriage-bold||*new*,pram,stroller,infant,child,children,toddler": [ + -0.025715528056025505, + -0.06371729075908661, + -0.05665338784456253, + 0.10173764824867249, + 0.005564653314650059, + 0.06713420152664185, + 0.005353063344955444, + -0.033557090908288956, + 0.01770155131816864, + 0.09616324305534363, + 0.07731577754020691, + 0.009147033095359802, + -0.0032371266279369593, + -0.02096816897392273, + -0.0027335232589393854, + 0.07536045461893082, + 0.07011226564645767, + 0.006700797472149134, + 0.03626485541462898, + 0.002597338752821088, + -0.034631021320819855, + 0.007440662942826748, + 0.014826012775301933, + 0.05644117295742035, + -0.011706545017659664, + -0.004174298141151667, + 0.03019455447793007, + 0.036209385842084885, + 0.04474978893995285, + -0.03508633002638817, + 0.010509056970477104, + -0.04405393823981285, + 0.12149205058813095, + -0.016440406441688538, + 0.04206686094403267, + -0.015421795658767223, + 0.06394615024328232, + -0.04026156663894653, + -0.013759392313659191, + -0.009626828134059906, + 0.036882393062114716, + -0.00473025580868125, + -0.09620603919029236, + 0.01038404367864132, + -0.002173177432268858, + -0.017741765826940536, + -0.03785684332251549, + 0.0029229153878986835, + -0.004105901811271906, + -0.018825402483344078, + -0.003970054443925619, + -0.09439782798290253, + -0.08145067095756531, + 0.05368693545460701, + -0.05649250000715256, + 0.017105065286159515, + -0.061840031296014786, + -0.054320573806762695, + 0.033760569989681244, + 0.015072192996740341, + -0.05800572410225868, + 0.03378647193312645, + 0.015576111152768135, + 0.002719626296311617, + -0.05467631295323372, + -0.04888502508401871, + -0.002328083384782076, + 0.026181722059845924, + 0.025435952469706535, + 0.017790112644433975, + 0.0014205770567059517, + 0.0518149696290493, + 0.027032170444726944, + 0.032640840858221054, + -0.05748853459954262, + -0.01990794762969017, + 0.038771577179431915, + 0.053573425859212875, + -0.010314257815480232, + -0.06631070375442505, + -0.12011438608169556, + -0.043253228068351746, + -0.033801428973674774, + -0.023395711556077003, + 0.012052660807967186, + 0.03181031346321106, + -0.09689787030220032, + -0.017176814377307892, + -0.09901739656925201, + -0.015471351332962513, + -0.03206215426325798, + 0.00770270312204957, + -0.0007944343378767371, + 0.15366142988204956, + -0.1094881147146225, + 0.059556957334280014, + -0.005187112372368574, + -0.0032016008626669645, + 0.005521717015653849, + -0.01602916792035103, + -0.036353450268507004, + 0.06596903502941132, + 0.11208292841911316, + 0.12460135668516159, + -0.06416088342666626, + -0.011174172163009644, + -0.03595167025923729, + -0.0856405645608902, + -0.030955202877521515, + 0.018558483570814133, + -0.0445132739841938, + -0.0765921100974083, + 0.00865666102617979, + 0.00511199003085494, + -0.06769299507141113, + -0.11451047658920288, + -0.08983828872442245, + -0.013688493520021439, + 0.09174995124340057, + 0.09876860678195953, + -0.0053793275728821754, + 0.022568145766854286, + -0.003790336661040783, + -0.009856916032731533, + -0.049657825380563736, + -0.10120734572410583, + -0.0006524018826894462, + -2.792215281671521e-33, + -0.05712214484810829, + 0.022660287097096443, + 0.08858136087656021, + 0.1258242130279541, + 0.035856060683727264, + 0.042848315089941025, + -0.08391246944665909, + 0.009572270326316357, + -0.01230790838599205, + 0.05093713849782944, + 0.03619232401251793, + -0.085511215031147, + 0.014168238267302513, + 0.007112071383744478, + 0.012443093582987785, + -0.05475082993507385, + -0.07332205027341843, + -0.0070732152089476585, + -0.04313861206173897, + 0.09944646805524826, + -0.13308298587799072, + 0.09601738303899765, + 0.017268583178520203, + -0.053055472671985626, + 0.053431060165166855, + 0.03504820913076401, + 0.05517381429672241, + -0.015202339738607407, + 0.0010316545376554132, + 0.047963425517082214, + 0.009691857732832432, + 0.01982950232923031, + 0.010781426914036274, + -0.003906318452209234, + -0.08243641257286072, + -0.040716107934713364, + -0.005195177625864744, + -0.04321451112627983, + -0.06530854851007462, + 0.08058657497167587, + -0.10681107640266418, + -0.05777611583471298, + -0.012364134192466736, + 0.07066116482019424, + -0.05323553457856178, + 0.057299189269542694, + 0.06568556278944016, + 0.014026768505573273, + -0.006790845189243555, + 0.06790783256292343, + -0.017023345455527306, + -0.047238633036613464, + -0.0707998126745224, + 0.022269338369369507, + -0.07177802175283432, + 0.0014606121694669127, + -0.029321135953068733, + 0.10386567562818527, + -0.01871042139828205, + -0.06288952380418777, + 0.073969267308712, + 0.06141360476613045, + 0.053378768265247345, + -0.0025272113271057606, + 0.03313039243221283, + -0.024914206936955452, + -0.02858917973935604, + 0.048878081142902374, + 0.07968852669000626, + -0.0011076709488406777, + -0.016415981575846672, + 0.07353232800960541, + -0.015518920496106148, + 0.025188174098730087, + 0.07734759896993637, + -0.012590574100613594, + 0.050500571727752686, + 0.011930907145142555, + -0.006741667632013559, + -0.0940706878900528, + -0.07278483361005783, + 0.05811097472906113, + 0.013783108443021774, + 0.05692986771464348, + 0.0015773804625496268, + -0.06944181025028229, + -0.03455740958452225, + 0.04360766336321831, + -0.027600029483437538, + 0.06113972142338753, + -0.03441045060753822, + 0.03440322354435921, + -0.010376714169979095, + 0.030772877857089043, + -0.0016486336244270205, + -6.6786432450613105e-34, + 0.014071790501475334, + 0.05623586103320122, + -0.04138198867440224, + -0.06751393526792526, + -0.06835370510816574, + -0.012029343284666538, + -0.013303213752806187, + 0.020755508914589882, + 0.023338576778769493, + 0.03617560863494873, + -0.014471210539340973, + -0.01737760379910469, + 0.04272521287202835, + -0.0544215627014637, + 0.028430335223674774, + 0.02115180529654026, + 0.03637697175145149, + 0.0761750116944313, + -0.002323019551113248, + 0.013088359497487545, + 0.04642746224999428, + -0.028258608654141426, + -0.13779178261756897, + -0.02702905423939228, + 0.021660244092345238, + -0.01242100540548563, + -0.0021530217491090298, + 0.061701174825429916, + -0.04540563374757767, + 0.012278789654374123, + -0.0183225329965353, + -0.07505057752132416, + 0.06336475163698196, + 0.06980997323989868, + -0.038726333528757095, + -0.052476055920124054, + -0.06503432989120483, + -0.005758758168667555, + 0.04215393587946892, + -0.02548382058739662, + 0.03269010782241821, + -0.08495952934026718, + 0.08192616701126099, + 0.04044673964381218, + 0.0043093240819871426, + -0.03985002264380455, + -0.01032206229865551, + -0.017423706129193306, + 0.01870233379304409, + 0.09322195500135422, + -0.026997432112693787, + -0.01509277056902647, + -0.08091459423303604, + -0.0032464161049574614, + -0.008744913153350353, + 0.03605629876255989, + -0.03503618761897087, + -0.04531991854310036, + 0.047968991100788116, + 0.015099535696208477, + 0.015750112012028694, + 0.052533190697431564, + -0.080294668674469, + 0.007644403725862503, + -0.011092562228441238, + -0.07398110628128052, + -0.02204200252890587, + -0.051502615213394165, + 0.04148399084806442, + -0.027104919776320457, + 0.053937848657369614, + 0.08229460567235947, + -0.0661069005727768, + -0.05177512392401695, + -0.020348235964775085, + -0.012060527689754963, + 0.02845885045826435, + -0.011745846830308437, + -0.01779721863567829, + 0.050275105983018875, + 0.012972339987754822, + -0.05464979633688927, + 0.011850538663566113, + 0.022280989214777946, + -0.03539775684475899, + -0.01466349046677351, + 0.01429826207458973, + 0.006434199865907431, + -0.0047126817516982555, + -0.06369194388389587, + 0.05082244426012039, + 0.04696504771709442, + -0.03318113461136818, + -0.007818015292286873, + -0.051693469285964966, + -2.406644661334667e-08, + 0.005405602511018515, + -0.03967698663473129, + -0.07624318450689316, + -0.0327659510076046, + 0.06149015203118324, + -0.10238077491521835, + -0.09775063395500183, + -0.025247618556022644, + -0.1725931167602539, + 0.023266011849045753, + 0.043110158294439316, + 0.04790349677205086, + -0.04510532692074776, + 0.044674694538116455, + 0.04395753890275955, + 0.03143466264009476, + -0.016915734857320786, + 0.0254514217376709, + -0.0015417214017361403, + -0.01494558434933424, + -0.031630005687475204, + 0.10100656747817993, + 0.05600737780332565, + 0.03236638754606247, + -0.008675836957991123, + -0.03887772932648659, + -0.004681886173784733, + -0.07223737984895706, + 0.01725315861403942, + -0.010827243328094482, + 0.10657690465450287, + 0.07022568583488464, + 0.012911194935441017, + 0.019121024757623672, + -0.07181364297866821, + -0.0029299072921276093, + -0.054602451622486115, + 0.050693463534116745, + 0.010526932775974274, + 0.06462641060352325, + 0.059877533465623856, + -0.027837298810482025, + -0.020807387307286263, + -0.030502600595355034, + 0.0033541840966790915, + -0.019418589770793915, + -0.04167834296822548, + -0.04366987571120262, + -0.06953083723783493, + -0.09690358489751816, + -0.04933939874172211, + -0.025174541398882866, + -0.015136683359742165, + 0.050153035670518875, + 0.03621108829975128, + 0.02317170426249504, + -0.04241892695426941, + 0.0351933054625988, + -0.0012584705837070942, + 0.10944163799285889, + 0.07008180022239685, + 0.021053899079561234, + 0.062218744307756424, + 0.053600504994392395 + ], + "backpack-bold||knapsack,camping,school,bag": [ + -0.021976912394165993, + 0.08778543770313263, + -0.02543569728732109, + 0.08426716923713684, + 0.09093185514211655, + -0.05481431260704994, + 0.12660907208919525, + -0.01995777152478695, + -0.010403665713965893, + 0.0347200371325016, + 0.03207952529191971, + 0.01663053222000599, + 0.04241534695029259, + 0.03878999501466751, + -0.003225889289751649, + 0.039311159402132034, + 0.024360395967960358, + 0.028116440400481224, + -0.042266469448804855, + -0.046313297003507614, + -0.001853535301052034, + -0.0165046826004982, + 0.04810161516070366, + 0.08451619744300842, + 0.06766918301582336, + 0.05811493843793869, + 0.022551938891410828, + -0.042648665606975555, + -0.004792278166860342, + -0.04446763917803764, + -0.018593784421682358, + -0.0027843052521348, + 0.0450277253985405, + 0.013619860634207726, + 0.0791466012597084, + 0.07880620658397675, + 0.0006951274117454886, + -0.013226844370365143, + -0.007917859591543674, + 0.02343052066862583, + -0.03576060011982918, + 0.00190774688962847, + -0.04648253321647644, + 0.05581081658601761, + -0.05799776315689087, + -0.00752263842150569, + -0.06397993117570877, + 0.05487752705812454, + 0.04407082498073578, + 0.010672188363969326, + 0.028613051399588585, + -0.06100046634674072, + -0.17441439628601074, + 0.016136592254042625, + 0.010428204201161861, + 0.012768684886395931, + -0.07264520972967148, + -0.07588443160057068, + -0.04257553070783615, + -0.03801785036921501, + -0.006037586834281683, + 0.03790045157074928, + -0.01818210445344448, + 0.06573305279016495, + 0.0589132122695446, + -0.010492570698261261, + -0.040990930050611496, + 0.03443659096956253, + -0.04449877142906189, + 0.07694108039140701, + 0.045924875885248184, + 0.057548750191926956, + -0.014057784341275692, + -0.02743527665734291, + 0.012021045200526714, + 0.04064308479428291, + 0.07972261309623718, + 0.05526357516646385, + 0.04718736186623573, + -0.06241631880402565, + -0.07044467329978943, + 0.009586012922227383, + -0.034012988209724426, + -0.013175206258893013, + 0.003132782643660903, + -0.034574881196022034, + -0.01443110965192318, + -0.06672465056180954, + 0.00861033983528614, + -0.024699663743376732, + -0.0545610636472702, + -0.022837793454527855, + -0.006238129921257496, + 0.06560251116752625, + -0.11826448887586594, + 0.03065446764230728, + 0.015455212444067001, + 0.009910733439028263, + -0.04438262805342674, + 0.05268963426351547, + 0.029561268165707588, + 0.058939628303050995, + 0.1465616077184677, + -0.027576036751270294, + 0.009929790161550045, + -0.07281597703695297, + 0.03127705305814743, + -0.06230659410357475, + -0.022684616968035698, + 0.0017392141744494438, + -0.0032820303458720446, + -0.00026757753221318126, + 0.03129548951983452, + -0.010690631344914436, + -0.01614473946392536, + -0.0008069147006608546, + 0.01952230930328369, + 0.024877602234482765, + 0.0008582021109759808, + 0.11009074002504349, + -0.023450640961527824, + -0.031185390427708626, + 0.028587674722075462, + -0.027776511386036873, + -0.05221051722764969, + -0.020029129460453987, + -0.008043368346989155, + -2.292024619310383e-33, + -0.029243800789117813, + 0.018658000975847244, + -0.026387568563222885, + 0.13645683228969574, + -0.0036228448152542114, + -0.10280921310186386, + 0.0195766594260931, + -0.04509960860013962, + -0.11301444470882416, + 0.0785626694560051, + 0.009821416810154915, + 0.060154203325510025, + -0.023873688653111458, + 0.1064535602927208, + 0.11628122627735138, + -0.0372428223490715, + -0.05504121631383896, + -0.021142154932022095, + 0.019255924969911575, + -0.04501647129654884, + -0.07797334343194962, + -0.06154480203986168, + 0.05115775018930435, + -0.06984958797693253, + 0.04081186652183533, + -0.06773628294467926, + 0.027311986312270164, + -0.010519109666347504, + 0.018025418743491173, + 0.02907213382422924, + 0.0267637912184, + -0.01878226175904274, + 0.031213413923978806, + -0.04324775189161301, + -0.08474311977624893, + -0.021018877625465393, + 0.03362380340695381, + -0.022317543625831604, + 0.029778530821204185, + 0.014074689708650112, + -0.024326784536242485, + -0.018419543281197548, + 0.010529509745538235, + 0.0033719916827976704, + 0.0029130505863577127, + 0.08666929602622986, + 0.09230387955904007, + 0.05639434978365898, + -0.07039188593626022, + 0.011925761587917805, + -0.0965544804930687, + -0.07105787098407745, + 0.013051030226051807, + -0.05066075548529625, + -0.06449019908905029, + -0.026189012452960014, + 0.05478700250387192, + 0.05386531352996826, + 0.025303339585661888, + -0.020321398973464966, + 0.061124660074710846, + 0.07401051372289658, + 0.0288584902882576, + 0.030967917293310165, + 0.005737580358982086, + -0.01845453679561615, + -0.00764461699873209, + -0.009299877099692822, + 0.11763843148946762, + -0.027993451803922653, + -0.04604804515838623, + 0.060115259140729904, + 0.03292216360569, + 0.0648045539855957, + 0.052820317447185516, + 0.0034935669973492622, + 0.06744334101676941, + 0.03746064007282257, + -0.018671443685889244, + -0.08312949538230896, + -0.012436826713383198, + -0.048957742750644684, + 0.018751561641693115, + 0.07534594088792801, + -0.09143803268671036, + 0.008524596691131592, + 0.0473126545548439, + -0.08107542991638184, + -0.01143142580986023, + 0.0021973466500639915, + -0.057283591479063034, + 0.001561031793244183, + -0.05543585866689682, + -0.09130173176527023, + -0.02715601958334446, + 3.4415910085846366e-34, + 0.13305795192718506, + 0.03316018357872963, + 0.015202786773443222, + -0.050076358020305634, + 0.07053782045841217, + 0.009141813032329082, + -0.04704080522060394, + -0.06481530517339706, + 0.019902337342500687, + 0.03312836214900017, + -0.12089771777391434, + -0.03538225591182709, + 0.014217467978596687, + 0.002694731345400214, + 0.0777859091758728, + -0.011052731424570084, + -0.030179297551512718, + 0.007295010145753622, + 0.005646167788654566, + -0.03043716959655285, + -0.08784706145524979, + -0.00018469813221599907, + -0.04645036533474922, + -0.003423756454139948, + -0.06965695321559906, + 0.026494372636079788, + -0.09102573990821838, + 0.03874355927109718, + -0.10243738442659378, + 0.03733459860086441, + 0.040384549647569656, + -0.07666446268558502, + 0.06406225264072418, + 0.04873199760913849, + -0.10175145417451859, + -0.011143164709210396, + 0.04315564036369324, + -0.006868565920740366, + 0.004992987960577011, + 0.019821831956505775, + 0.06220772862434387, + -0.03346797078847885, + -0.0034231238532811403, + -0.031131332740187645, + -0.015354083850979805, + -0.04555588960647583, + -0.03254867345094681, + -0.0620514377951622, + 0.058137767016887665, + 0.0007318767602555454, + 0.025328578427433968, + 0.004449884407222271, + -0.08025147765874863, + 0.027315162122249603, + -0.017151709645986557, + 0.02968258038163185, + -0.05456630885601044, + -0.016589660197496414, + 0.0543803870677948, + 0.021706970408558846, + -0.04486771300435066, + 0.0033972468227148056, + -0.06700148433446884, + 0.01983431540429592, + -0.00764478137716651, + -0.0784619152545929, + -0.03082101047039032, + -0.07201874256134033, + -0.04764138534665108, + 0.051731403917074203, + -0.020653119310736656, + 0.042399875819683075, + 0.05283740162849426, + -0.02342839166522026, + 0.015218179672956467, + 0.025308184325695038, + 0.0875200554728508, + 0.07415984570980072, + 0.056407153606414795, + 0.019040441140532494, + -0.010113478638231754, + -0.07399546355009079, + -0.030363356694579124, + 0.04798317328095436, + -0.007571929134428501, + 0.034154798835515976, + 0.07333728671073914, + 0.02923872135579586, + -0.038937948644161224, + -0.01838505268096924, + 0.030564099550247192, + -0.013061409816145897, + -0.019291171804070473, + 0.031991276890039444, + 0.03377808257937431, + -1.7144873964980434e-08, + -0.001488007721491158, + 0.036418575793504715, + -0.07762851566076279, + 0.029945632442831993, + 0.0801960900425911, + -0.02198990434408188, + 0.028231356292963028, + 0.010616311803460121, + 0.0018467382760718465, + 0.10176955908536911, + 0.031794797629117966, + 0.010003072209656239, + -0.03941396623849869, + -0.016314303502440453, + -0.08848361670970917, + 0.02263796143233776, + -0.10269230604171753, + 0.04292849823832512, + -0.04978078603744507, + -0.07457941025495529, + 0.060852885246276855, + 0.019932933151721954, + 0.03152132034301758, + 0.04690580070018768, + 0.0343024767935276, + 0.0620858334004879, + -0.03210153058171272, + -0.050240904092788696, + 0.0677691325545311, + 0.11474207043647766, + 0.02883649803698063, + 0.03340725228190422, + -0.05379093438386917, + -0.02404218353331089, + -0.04699249565601349, + -0.053818922489881516, + -0.08065732568502426, + 0.011286039836704731, + 0.03504630923271179, + 0.13795138895511627, + -0.04559220001101494, + -0.11222466081380844, + -0.014900860376656055, + -0.04403480142354965, + -0.011070177890360355, + 0.06066617742180824, + -0.08760330826044083, + -0.03256272152066231, + -0.07882317155599594, + -0.0203359704464674, + -0.013839049264788628, + -0.09328131377696991, + 0.011698688380420208, + -0.0035435252357274294, + 0.05475239455699921, + -0.06333422660827637, + -0.016131388023495674, + 0.03150201961398125, + -0.0178537517786026, + -0.011875987984240055, + 0.033181846141815186, + -0.05568237975239754, + -0.06941226124763489, + -0.011683178134262562 + ], + "backspace-bold||keyboard,remove,delete": [ + -0.01961764506995678, + -0.04834628850221634, + -0.0071689472533762455, + 0.11387650668621063, + 0.0405275858938694, + 0.020458286628127098, + 0.05938064306974411, + -0.09632587432861328, + 0.055124346166849136, + 0.04562682285904884, + 0.025835596024990082, + 0.06420201808214188, + 0.10827001184225082, + -0.13480772078037262, + -0.011807992123067379, + 0.007970807142555714, + -0.0048187123611569405, + 0.033228594809770584, + -0.027265550568699837, + 0.04847220331430435, + -0.025597326457500458, + 0.02533860132098198, + 0.06759894639253616, + 0.009300369769334793, + 0.08826596289873123, + 0.03979816660284996, + 0.060292165726423264, + -0.011894242838025093, + -0.012030120939016342, + -0.04154347628355026, + 0.00390933733433485, + -0.10082646459341049, + 0.1306033730506897, + -0.0036398060619831085, + 0.01204273197799921, + 0.07890259474515915, + -0.014097897335886955, + -0.03313229978084564, + -0.03566977009177208, + 0.014142715372145176, + -0.07538768649101257, + -0.02519569918513298, + -0.008152293972671032, + 0.03037083148956299, + 0.006100211758166552, + -0.018918877467513084, + -0.037220779806375504, + -0.09364207834005356, + -0.0021021871361881495, + -0.01493814680725336, + 0.07976943254470825, + -0.028861725702881813, + -0.04812312498688698, + -0.014455241151154041, + -0.0022784650791436434, + -0.018608102574944496, + -0.03224577754735947, + 0.04210424795746803, + 0.012434079311788082, + -0.004792466759681702, + 0.024634024128317833, + 0.010179671458899975, + 0.017649782821536064, + -0.014009828679263592, + 0.07944667339324951, + 0.0829383134841919, + -0.025971468538045883, + -0.00019789909129031003, + -0.033406343311071396, + 0.02169104292988777, + 0.03754425421357155, + 0.0016633347840979695, + -0.032741572707891464, + -0.0638941153883934, + -0.07342855632305145, + 0.05251137912273407, + 0.02522147074341774, + 0.022723903879523277, + -0.004046174231916666, + 0.04608985781669617, + 0.04661586135625839, + -0.05505957454442978, + -0.045151907950639725, + 0.06662233173847198, + 0.0393451526761055, + 0.02786891907453537, + -0.06663317233324051, + -0.1121523454785347, + -0.029654115438461304, + -0.014000323601067066, + 0.021389322355389595, + -0.005287496838718653, + 0.0313006266951561, + 0.09494560956954956, + -0.09026843309402466, + -0.011072629131376743, + 0.08228059113025665, + 0.046354327350854874, + -0.04367798566818237, + 0.07280585914850235, + -0.021043604239821434, + 0.04711286351084709, + 0.03219318762421608, + 0.039322663098573685, + -0.024261221289634705, + 0.04309716448187828, + 0.052969153970479965, + -0.06727565824985504, + -0.03447815775871277, + -0.00815778598189354, + -0.013419250026345253, + -0.08454468101263046, + -0.07331960648298264, + 0.02865377627313137, + -0.02291395142674446, + 0.0067777629010379314, + 0.032176144421100616, + -0.019858919084072113, + 0.135364830493927, + 0.038748372346162796, + -0.012992504052817822, + -0.040656834840774536, + -0.09674295783042908, + 0.0028030076064169407, + 0.020371129736304283, + -0.028171861544251442, + 0.04023197293281555, + -9.491877192245e-34, + 0.00986342690885067, + 0.02630653604865074, + -0.0890934020280838, + 0.05094509571790695, + 0.12169725447893143, + 0.09960600733757019, + -0.08212259411811829, + 0.033504944294691086, + -0.0640643909573555, + -0.00011813002492999658, + 0.03888789564371109, + -0.003921472933143377, + -0.0015728820580989122, + -0.015099496580660343, + 0.06402203440666199, + -0.019178498536348343, + 0.041379164904356, + 0.04011640325188637, + -0.046926241368055344, + -0.03966396301984787, + 0.017131254076957703, + 0.061479583382606506, + -0.06035555154085159, + -0.01875915378332138, + -0.036415424197912216, + -0.021188927814364433, + 0.04883250221610069, + -0.052281033247709274, + -0.05712985619902611, + 0.016125725582242012, + -0.009852759540081024, + 0.05276161804795265, + -0.04937465116381645, + -0.007923484779894352, + -0.06645297259092331, + 0.055675484240055084, + -0.04099534824490547, + 0.030966611579060555, + -0.003263309830799699, + 0.04260784760117531, + -0.046939022839069366, + -0.006987320259213448, + -0.0958828404545784, + -0.020333224907517433, + 0.045326750725507736, + -0.022155998274683952, + 0.028726696968078613, + -0.006819533184170723, + -0.015542762354016304, + -0.00020364837837405503, + -0.005615126807242632, + 0.020291153341531754, + 0.0021983119659125805, + -0.018204832449555397, + -0.01927339658141136, + -0.06654086709022522, + -0.014939303509891033, + 0.05640209838747978, + 0.061577241867780685, + 0.07993581891059875, + 0.06170561909675598, + 0.04865804314613342, + 0.0825159028172493, + 0.053702596575021744, + -0.037754692137241364, + -0.019606659188866615, + -0.03188500925898552, + 0.06288062036037445, + 0.04569486156105995, + -0.07883615046739578, + 0.017449023202061653, + 0.018138397485017776, + -0.02093535102903843, + -0.008132449351251125, + -0.08858086168766022, + -0.02414984256029129, + 0.01932789757847786, + -0.07003017514944077, + 0.03463273122906685, + -0.05943208560347557, + -0.06931763887405396, + -0.013803218491375446, + -0.01885235495865345, + 0.040167924016714096, + 0.02761879563331604, + -0.00796440802514553, + -0.035904791206121445, + -0.04594650864601135, + 0.05165783688426018, + 0.05168585851788521, + -0.01852421835064888, + -0.05920279771089554, + -0.028525926172733307, + -0.07610910385847092, + -0.10323096066713333, + -3.3061132183537044e-34, + 0.05128110572695732, + 0.05893668904900551, + -0.0496760755777359, + 0.007246093358844519, + -0.04032532870769501, + 0.05476148799061775, + -0.03784504160284996, + 0.10494355857372284, + -0.005550171714276075, + 0.00010965675755869597, + 0.024513782933354378, + 0.011462963186204433, + 0.02812066301703453, + -0.00964504387229681, + 0.02815869078040123, + 0.07508979737758636, + -0.011081877164542675, + 0.007656322326511145, + -0.10719592124223709, + -0.018065165728330612, + -0.004945139866322279, + -0.05397599935531616, + -0.03290963172912598, + 0.11347649991512299, + -0.052740246057510376, + -0.024529019370675087, + 0.0007971500162966549, + 0.07292725890874863, + -0.06548640131950378, + 0.054064251482486725, + -0.010099153965711594, + 0.015211774967610836, + 0.04662681370973587, + 0.019193759188055992, + -0.04270992800593376, + -0.002634847303852439, + -0.07330530881881714, + 0.04680323973298073, + 0.006233604159206152, + -0.0015541299944743514, + 0.029685337096452713, + -0.0007880472694523633, + -0.013444710522890091, + 0.0012142863124608994, + -0.06830961257219315, + 0.08539465814828873, + -0.025820471346378326, + -0.07305336743593216, + 0.09824319183826447, + 0.025948340073227882, + 0.09035106748342514, + -0.08749938756227493, + -0.035022832453250885, + -0.04786211624741554, + -0.07642396539449692, + -0.02725706249475479, + -0.0036575470585376024, + 0.044255565851926804, + -0.0678354799747467, + 0.02553013525903225, + 0.021564312279224396, + 0.049754951149225235, + -0.0009413269581273198, + 0.05370369553565979, + 0.07225974649190903, + -0.09558748453855515, + 0.04075241833925247, + 0.04499324783682823, + 0.003807209664955735, + -0.042411141097545624, + 0.053517814725637436, + 0.055515918880701065, + -0.022367918863892555, + 0.11499630659818649, + 0.02054581604897976, + 0.025112733244895935, + 0.10476835072040558, + -0.06452228128910065, + 0.009779677726328373, + 0.02929396741092205, + -0.003836106276139617, + -0.007860691286623478, + -0.021957674995064735, + -0.005303645972162485, + -0.10068216919898987, + 0.0739004835486412, + -0.08792354166507721, + 0.05420957878232002, + -0.10022731870412827, + -0.00790970865637064, + -0.008842116221785545, + -0.01655658520758152, + -0.002751917578279972, + -0.015165534801781178, + 0.029904680326581, + -1.7892967107968616e-08, + 0.025814242660999298, + -0.016601942479610443, + -0.0439767986536026, + 0.013760091736912727, + -0.04128476604819298, + -0.0699678584933281, + -0.03862704336643219, + -0.005469313357025385, + 0.016845019534230232, + -0.13250310719013214, + -0.008698606863617897, + 0.0004323696775827557, + -0.060692716389894485, + -0.052635446190834045, + -0.01096726767718792, + 0.004947812762111425, + -0.04599322751164436, + 0.04299179092049599, + -0.019196586683392525, + -0.04193703457713127, + -0.028960835188627243, + 0.014336410909891129, + 0.051948994398117065, + -0.0188309233635664, + 0.046868834644556046, + 0.0029840325005352497, + -0.05569654703140259, + 0.06076152250170708, + 0.09345383197069168, + 0.010080156847834587, + 0.09365472197532654, + 0.0034687586594372988, + 0.004093760624527931, + 0.013612667098641396, + -0.10160800814628601, + -0.031941138207912445, + 0.004809868987649679, + -0.004585477989166975, + -0.03556289151310921, + 0.15350309014320374, + -0.052308034151792526, + 0.015526507049798965, + -0.011879341676831245, + -0.044183261692523956, + -0.12901364266872406, + 0.01830500178039074, + 0.08014914393424988, + 0.03453447297215462, + -0.041663262993097305, + -0.06707681715488434, + -0.0018118631560355425, + -0.01426977664232254, + 0.016711972653865814, + 0.02522956021130085, + -0.08152507990598679, + -0.00396365812048316, + 0.0006660465733148158, + 0.12111133337020874, + -0.05724715068936348, + -0.024670517072081566, + 0.14358429610729218, + 0.012064732611179352, + -0.009188313968479633, + -0.05431359261274338 + ], + "bag-bold||suitcase,valise,baggage,folders,portfolio": [ + 0.021813033148646355, + 0.03277624398469925, + -0.08567541092634201, + 0.07368635386228561, + 0.08539684861898422, + -0.01380584854632616, + 0.11248251050710678, + -0.01699342019855976, + 0.02673671767115593, + -0.022648025304079056, + 0.023197846487164497, + 0.06814934313297272, + 0.0366867259144783, + -0.004072748590260744, + -0.027587106451392174, + 0.058238714933395386, + 0.01013200730085373, + 0.05785810202360153, + -0.07675129920244217, + 0.030667675659060478, + -0.024977196007966995, + 0.041956495493650436, + 0.025223365053534508, + 0.008450016379356384, + 0.03182617574930191, + 0.02950112707912922, + 0.033707354217767715, + -0.017514890059828758, + 0.02333836443722248, + -0.05233508348464966, + 0.026509616523981094, + 0.0026656517293304205, + 0.07337310910224915, + 0.06632956862449646, + 0.059492144733667374, + 0.059386733919382095, + -0.04547148570418358, + -0.023829516023397446, + 0.016506295651197433, + 0.04133762791752815, + -0.016766931861639023, + -0.015364524908363819, + -0.03158663213253021, + 0.044558845460414886, + -0.03085709549486637, + -0.09670782834291458, + -0.03097417578101158, + -0.002191628096625209, + 0.017640169709920883, + 0.042797837406396866, + -0.020372262224555016, + -0.10326005518436432, + -0.15097962319850922, + 0.0009041744633577764, + -0.07048168033361435, + 0.014852624386548996, + -0.0841032937169075, + -0.045906178653240204, + -0.009563179686665535, + -0.07802823185920715, + 0.03923177719116211, + 0.0525784008204937, + 0.055085793137550354, + 0.048744652420282364, + 0.06401041895151138, + 0.010395746678113937, + 0.004243628587573767, + 0.043212179094552994, + -0.05945594608783722, + 0.008216188289225101, + 0.07208284735679626, + -0.008501322008669376, + -0.060449037700891495, + 0.020406516268849373, + -0.012941022403538227, + 0.011055795475840569, + 0.049347370862960815, + -0.025756577029824257, + -0.009254058822989464, + -0.04988853260874748, + -0.09107580035924911, + -0.023464513942599297, + -0.03514030948281288, + -0.00813380815088749, + 0.02132372185587883, + -0.011608937755227089, + -0.04473816975951195, + -0.07585284858942032, + -0.03076944313943386, + -0.017214283347129822, + -0.035259172320365906, + -0.08633651584386826, + 0.03807294741272926, + 0.09433875977993011, + -0.1451297402381897, + 0.028359998017549515, + 0.028416717424988747, + 0.06875809282064438, + -0.040088266134262085, + 0.04305675998330116, + -0.0017447452992200851, + 0.05687877535820007, + 0.07964551448822021, + 0.03129839897155762, + -0.03737296536564827, + -0.0015897729899734259, + 0.058397311717271805, + -0.08483211696147919, + -0.05306718498468399, + -0.012714695185422897, + -0.07513785362243652, + -0.01370153296738863, + -0.012922357767820358, + -0.11755623668432236, + -0.0422726646065712, + 0.005061886738985777, + -0.025211641564965248, + 0.08053097128868103, + 0.04405193775892258, + 0.06297099590301514, + 0.025759384036064148, + -0.018928224220871925, + 0.0655718594789505, + -0.042426761239767075, + -0.054465048015117645, + -0.02924899198114872, + 0.0006890015793032944, + -1.3678324099236765e-33, + -0.007690599653869867, + 0.04305992275476456, + -0.0226022657006979, + 0.1954047828912735, + -0.003302309662103653, + -0.05336134880781174, + -0.03666543960571289, + -0.02579650655388832, + -0.09240709245204926, + 0.08615217357873917, + 0.0499664731323719, + 0.08240833133459091, + -0.017816469073295593, + 0.053094785660505295, + 0.057489246129989624, + -0.034263722598552704, + 0.008296468295156956, + -0.014984343200922012, + 0.014094247482717037, + -0.06836671382188797, + -0.09955326467752457, + -0.023169020190835, + 0.0021265335381031036, + -0.07962116599082947, + 0.01825142093002796, + -0.0068800789304077625, + 0.0741538479924202, + -0.02169209159910679, + -0.06831786781549454, + 0.057294439524412155, + 0.006755182519555092, + 0.045173924416303635, + 0.015217851847410202, + 0.03485552966594696, + -0.07544779777526855, + 0.040820054709911346, + -0.05704323202371597, + 0.0003350738843437284, + 0.03788911923766136, + 0.0913630872964859, + -0.048800040036439896, + -0.05589662864804268, + -0.02296474017202854, + -0.004923610016703606, + -0.008717524819076061, + 0.0773417130112648, + 0.07631371170282364, + 0.0051735760644078255, + 0.01714305579662323, + 0.009469285607337952, + -0.014084839262068272, + -0.039249252527952194, + 0.009491360746324062, + 0.014659225009381771, + -0.00239389156922698, + -0.024709928780794144, + -0.0011139166308566928, + 0.06235959380865097, + 0.02743709646165371, + -0.02932003326714039, + 0.08180858939886093, + 0.06203706935048103, + 0.026305777952075005, + 0.025260422378778458, + 0.0058648125268518925, + 0.05350927636027336, + 0.020826810970902443, + -0.01998046785593033, + 0.09271357208490372, + -0.013725954107940197, + -0.059573449194431305, + 0.09497139602899551, + 0.08365149050951004, + 0.037801552563905716, + 0.0010980789083987474, + -0.01011611521244049, + 0.019403042271733284, + 0.004253069870173931, + -0.005954910069704056, + -0.08677564561367035, + -0.11751371622085571, + -0.022103572264313698, + -0.00272821681573987, + 0.12268140912055969, + -0.04613253101706505, + 0.028690366074442863, + 0.04391416162252426, + -0.019996656104922295, + -0.004179325886070728, + -0.021648678928613663, + -0.11102019250392914, + 0.02275528386235237, + -0.0208973940461874, + -0.13200736045837402, + -0.008576365187764168, + 7.249520699005712e-34, + 0.12190238386392593, + -0.02724473364651203, + -0.06932711601257324, + -0.013921401463449001, + 0.03908463194966316, + -0.049237433820962906, + -0.03288622573018074, + -0.023785162717103958, + -0.05913429334759712, + 0.03605501353740692, + -0.021204913035035133, + -0.10223837941884995, + -0.047033924609422684, + -0.03847198933362961, + 0.044335585087537766, + 0.03571213781833649, + -0.02402637153863907, + -0.02438853308558464, + -0.05050892382860184, + -0.04169214889407158, + -0.04385196045041084, + -0.005272839218378067, + -0.0361904576420784, + 0.051245804876089096, + -0.06112083047628403, + 0.014356028288602829, + -0.0313735157251358, + -0.03752484545111656, + -0.024639874696731567, + 0.0015828987816348672, + -0.019272906705737114, + -0.0035169378388673067, + 0.053733471781015396, + 0.08183927834033966, + -0.09443534165620804, + 0.027413638308644295, + -0.025384021922945976, + -0.02992398664355278, + 0.07302378863096237, + 0.00712940189987421, + -0.015805058181285858, + -0.016842259094119072, + -0.03285522758960724, + 0.006579641718417406, + -0.018777864053845406, + -0.07871823012828827, + 0.03993355482816696, + -0.04885977506637573, + 0.07239224761724472, + -0.04027323052287102, + 0.06542054563760757, + 0.02385062165558338, + -0.09025700390338898, + 0.052785713225603104, + -0.0263238362967968, + 0.06600935757160187, + -0.04744365066289902, + -0.053588151931762695, + 0.04872400313615799, + 0.012535596266388893, + 0.012076414190232754, + 0.09305372089147568, + -0.02477443218231201, + -0.037977296859025955, + -0.007668713107705116, + -0.06670858711004257, + -0.047641873359680176, + -0.025992458686232567, + -0.03765067830681801, + 0.008418036624789238, + 0.02863403595983982, + -0.05122660845518112, + 0.03953788802027702, + 0.04165787622332573, + 0.07727959007024765, + -0.029088478535413742, + 0.11067232489585876, + 0.022301970049738884, + 0.09326108545064926, + -0.013035566546022892, + -0.027386555448174477, + -0.03772617504000664, + -0.03655305504798889, + 0.10559307038784027, + 0.009152742102742195, + 0.04779767245054245, + -0.04385661333799362, + -0.011014928109943867, + -0.023018168285489082, + -0.0577460452914238, + 0.03699677437543869, + 0.024382099509239197, + 0.020500056445598602, + 0.021145273000001907, + -0.01917096972465515, + -1.8228632825412205e-08, + -0.045760128647089005, + -0.002240169094875455, + -0.018122302368283272, + 0.03103622794151306, + -0.030332369729876518, + -0.01946747675538063, + -0.01639355719089508, + 0.0198614951223135, + -0.03629565238952637, + 0.0536748468875885, + 0.0487503744661808, + -0.010470050387084484, + -0.15359744429588318, + -0.005853191018104553, + -0.053494662046432495, + 0.03768182545900345, + -0.06250032782554626, + 0.10063543915748596, + -0.04641120880842209, + -0.06251458823680878, + 0.026328034698963165, + 0.08153939992189407, + 0.04782155156135559, + -0.029629796743392944, + 0.024423107504844666, + 0.04185310751199722, + -0.07106845080852509, + -0.03655356913805008, + 0.093949094414711, + 0.07685340195894241, + 0.038452498614788055, + 0.051065921783447266, + -0.024652011692523956, + -0.040281862020492554, + -0.035015445202589035, + -0.003714220365509391, + 0.016994785517454147, + -0.026947960257530212, + 0.003646161174401641, + 0.15206094086170197, + -0.015388939529657364, + -0.07200947403907776, + -0.008445998653769493, + -0.0038312480319291353, + -0.007289244793355465, + 0.02724267728626728, + -0.008281183429062366, + 0.018010031431913376, + -0.07867275178432465, + -0.03736500442028046, + -0.008861877024173737, + -0.056886740028858185, + 0.018802447244524956, + 0.0615759901702404, + 0.0015504686161875725, + -0.014581448398530483, + 0.008855725638568401, + 0.07315666228532791, + 0.00582327414304018, + 0.036224137991666794, + 0.035219285637140274, + -0.021360909566283226, + -0.028256280347704887, + -0.02578330971300602 + ], + "bag-simple-bold||suitcase,valise,baggage,folders,portfolio": [ + 0.03147079423069954, + 0.04262234643101692, + -0.07598363608121872, + 0.08622610569000244, + 0.09157394617795944, + -0.016685064882040024, + 0.10074774920940399, + -0.009027499705553055, + 0.009908964857459068, + -0.014172260649502277, + 0.022630484774708748, + 0.05541219189763069, + 0.03356141969561577, + -0.006522412411868572, + -0.021613813936710358, + 0.05390259996056557, + 0.0017196845728904009, + 0.037336308509111404, + -0.0710325688123703, + 0.03690248355269432, + -0.038453109562397, + 0.0299232117831707, + 0.014971062541007996, + 0.012688172049820423, + 0.02245848998427391, + 0.03363654762506485, + 0.036704547703266144, + -0.0008801286458037794, + 0.037220414727926254, + -0.0534944012761116, + 0.02780376560986042, + -0.0007182225817814469, + 0.07906968146562576, + 0.05978110805153847, + 0.05697385221719742, + 0.04966811463236809, + -0.03264828026294708, + -0.016079504042863846, + 0.006413629744201899, + 0.036004651337862015, + -0.02055199071764946, + -0.02721273899078369, + -0.02556566148996353, + 0.05254588648676872, + -0.04518625885248184, + -0.09552451968193054, + -0.03193848580121994, + -0.0021986467763781548, + 0.019431108608841896, + 0.02904234640300274, + -0.005393370054662228, + -0.09743290394544601, + -0.148915097117424, + -0.010814014822244644, + -0.06448029726743698, + 0.018150627613067627, + -0.0999659076333046, + -0.03706786036491394, + -0.002120302990078926, + -0.08519437909126282, + 0.0493333600461483, + 0.038908008486032486, + 0.052361372858285904, + 0.04531451687216759, + 0.05693874508142471, + 0.006490523926913738, + 0.00013495681923814118, + 0.0341709740459919, + -0.06078570708632469, + 0.0014395569451153278, + 0.06998729705810547, + -0.017681969329714775, + -0.07396362721920013, + 0.026671497151255608, + -0.010974423959851265, + -0.006578824948519468, + 0.042680252343416214, + -0.011505389586091042, + -0.022884780541062355, + -0.028248708695173264, + -0.10784637182950974, + -0.03564568608999252, + -0.05291929841041565, + 0.012840073555707932, + 0.02495887503027916, + -0.011669485829770565, + -0.0489075593650341, + -0.0715816542506218, + -0.02285672165453434, + -0.019738266244530678, + -0.028206394985318184, + -0.06553954631090164, + 0.04241733253002167, + 0.09699918329715729, + -0.1394091695547104, + 0.028251824900507927, + 0.03795217350125313, + 0.07469301670789719, + -0.07215803861618042, + 0.04938947781920433, + 0.003074066247791052, + 0.059926893562078476, + 0.095688097178936, + 0.018943002447485924, + -0.030842553824186325, + -0.0030039986595511436, + 0.06283514946699142, + -0.09379485249519348, + -0.05073262006044388, + -0.025862248614430428, + -0.08352834731340408, + -0.020525887608528137, + -0.004834207706153393, + -0.11105629056692123, + -0.035430990159511566, + 0.008464098908007145, + -0.030335834249854088, + 0.07534052431583405, + 0.046381328254938126, + 0.07858777791261673, + 0.03127938136458397, + -0.01944626495242119, + 0.050282374024391174, + -0.036720409989356995, + -0.0548640601336956, + -0.021904408931732178, + 0.011798563413321972, + -1.8837974717888803e-33, + 0.0044909194111824036, + 0.05570689216256142, + -0.025242453441023827, + 0.20583698153495789, + -0.0025726156309247017, + -0.05427373945713043, + -0.03979496285319328, + -0.024706391617655754, + -0.09017211943864822, + 0.08731591701507568, + 0.07041645050048828, + 0.06863106042146683, + -0.01907840557396412, + 0.058907944709062576, + 0.06128912419080734, + -0.032046761363744736, + 0.013321459293365479, + -0.02190270461142063, + 0.012170727364718914, + -0.07462011277675629, + -0.10444676876068115, + 0.0038756593130528927, + 0.0033260537311434746, + -0.09025856107473373, + 0.01853102445602417, + -0.00023289650562219322, + 0.07915104180574417, + -0.0240002628415823, + -0.06691199541091919, + 0.052422501146793365, + 0.010090869851410389, + 0.040970027446746826, + 0.014471892267465591, + 0.0388214997947216, + -0.07731113582849503, + 0.03256499767303467, + -0.03532186523079872, + 0.006803066469728947, + 0.033336836844682693, + 0.07080164551734924, + -0.06068871170282364, + -0.05134614184498787, + -0.016486408188939095, + -0.009121134877204895, + 0.004478587303310633, + 0.08209465444087982, + 0.07354120165109634, + -0.0004305157926864922, + 0.019689077511429787, + 0.00520553532987833, + -0.026842467486858368, + -0.03358085826039314, + 0.007280812133103609, + 0.025809576734900475, + 0.003735534381121397, + -0.01305366400629282, + -0.0020680183079093695, + 0.069717176258564, + 0.025895893573760986, + -0.03068375587463379, + 0.07632843405008316, + 0.07165902107954025, + 0.011679531075060368, + 0.031205706298351288, + -0.0015758272493258119, + 0.06186522915959358, + 0.014282011426985264, + -0.022798236459493637, + 0.08733482658863068, + -0.012271419167518616, + -0.05951812490820885, + 0.09848145395517349, + 0.07754857838153839, + 0.021572282537817955, + 0.014825679361820221, + 0.0011821414809674025, + 0.042091403156518936, + -0.016752034425735474, + -0.002845112234354019, + -0.08168796449899673, + -0.10897702723741531, + -0.010921652428805828, + -0.008033487014472485, + 0.1342952698469162, + -0.06487733125686646, + 0.023695513606071472, + 0.04091152548789978, + -0.006095090415328741, + -0.01702752895653248, + -0.023350724950432777, + -0.1150805652141571, + 0.025058096274733543, + -0.021024730056524277, + -0.1349063217639923, + -0.005584670230746269, + 1.067015140353599e-33, + 0.12051387876272202, + -0.03366351127624512, + -0.07547252625226974, + -0.0074944449588656425, + 0.03968564048409462, + -0.0359971858561039, + -0.015809696167707443, + -0.02800269052386284, + -0.04749938100576401, + 0.041563838720321655, + -0.0200907364487648, + -0.09991596639156342, + -0.061512935906648636, + -0.03417939692735672, + 0.04450097307562828, + 0.04610365256667137, + -0.03253462165594101, + -0.009271037764847279, + -0.038442857563495636, + -0.048112012445926666, + -0.03647950291633606, + 0.006634585093706846, + -0.04847870022058487, + 0.03269819915294647, + -0.06017501652240753, + 0.015618584118783474, + -0.03842257708311081, + -0.0214630626142025, + -0.028568251058459282, + 0.0002965393359772861, + -0.017513703554868698, + -0.004703365731984377, + 0.05519457161426544, + 0.07585632801055908, + -0.0915602296590805, + 0.028605131432414055, + -0.042518556118011475, + -0.02225697971880436, + 0.0743364468216896, + 0.0028851330280303955, + -0.02796732448041439, + -0.01593143865466118, + -0.021936573088169098, + -0.008068772964179516, + -0.018245531246066093, + -0.08209263533353806, + 0.05447320640087128, + -0.06810643523931503, + 0.055038388818502426, + -0.04560690373182297, + 0.05729681998491287, + 0.010125321336090565, + -0.09255316853523254, + 0.05788594111800194, + -0.024414431303739548, + 0.06478516757488251, + -0.03429096192121506, + -0.04107332602143288, + 0.04689808934926987, + 0.01774498261511326, + 0.00361220957711339, + 0.09924326092004776, + -0.04110988229513168, + -0.036956027150154114, + -0.013506600633263588, + -0.06348709017038345, + -0.04419234022498131, + -0.031122468411922455, + -0.037052299827337265, + 0.005919146817177534, + 0.023978153243660927, + -0.04478584975004196, + 0.05329662188887596, + 0.027161255478858948, + 0.0766298845410347, + -0.030026372522115707, + 0.10580476373434067, + 0.01682485267519951, + 0.09183249622583389, + -0.022545430809259415, + -0.010529734194278717, + -0.043993499130010605, + -0.050844352692365646, + 0.08261138200759888, + 0.013196953572332859, + 0.04475792124867439, + -0.03889259323477745, + -0.01529776118695736, + -0.02437719702720642, + -0.048654694110155106, + 0.023631321266293526, + 0.037663739174604416, + 0.03400271385908127, + 0.026377970352768898, + -0.02840656228363514, + -1.922053627367859e-08, + -0.04467286914587021, + -0.0196551363915205, + -0.019557302817702293, + 0.02977566048502922, + -0.02441582828760147, + -0.024117007851600647, + -0.012981371022760868, + 0.008290338329970837, + -0.03512777015566826, + 0.06267493963241577, + 0.04214054346084595, + -0.01832599937915802, + -0.15243813395500183, + 0.012461891397833824, + -0.06839482486248016, + 0.057053204625844955, + -0.06934142112731934, + 0.10087336599826813, + -0.03862351179122925, + -0.06636413186788559, + 0.028669903054833412, + 0.0736146792769432, + 0.035293933004140854, + -0.028633544221520424, + 0.022488193586468697, + 0.04117026925086975, + -0.06807184219360352, + -0.018236959353089333, + 0.0968085452914238, + 0.07643705606460571, + 0.0388798862695694, + 0.05222458019852638, + -0.022266309708356857, + -0.02819269709289074, + -0.04701601713895798, + 0.0007298083510249853, + 0.01045568473637104, + -0.0276925228536129, + -0.00306985923089087, + 0.13371242582798004, + -0.011393058113753796, + -0.06032862141728401, + -0.009733972139656544, + -0.012480937875807285, + -0.00851118378341198, + 0.02599748596549034, + -0.0030982601456344128, + 0.009286414831876755, + -0.07823389023542404, + -0.04154389724135399, + -0.005469608586281538, + -0.05782875046133995, + 0.022894615307450294, + 0.05010155215859413, + -0.005928900558501482, + -0.008731585927307606, + 0.01749243773519993, + 0.08255919814109802, + -0.0024241602513939142, + 0.035683128982782364, + 0.03866222873330116, + 0.016351552680134773, + -0.04026234149932861, + -0.027696002274751663 + ], + "balloon-bold||helium,birthday,party": [ + -0.027996622025966644, + 0.06551134586334229, + -0.01597110740840435, + 0.05838169902563095, + -0.0015049115754663944, + 0.023926610127091408, + 0.06876257807016373, + -0.010997702367603779, + -0.11167577654123306, + -0.04002689570188522, + 0.0009570445399731398, + -0.030480200424790382, + -0.0854351669549942, + -0.005723265465348959, + 0.014929529279470444, + 0.06018004193902016, + 0.03182333707809448, + -0.05803466960787773, + -0.02821291610598564, + 0.0052994629368186, + -0.07106325775384903, + -0.01981884427368641, + 0.03681928291916847, + 0.08056507259607315, + 0.05416030436754227, + 0.07308900356292725, + 0.042729903012514114, + -0.016748566180467606, + 0.04965496063232422, + -0.05448374152183533, + 0.033597227185964584, + 0.05875212326645851, + 0.011972252279520035, + -0.04211723059415817, + 0.05855954810976982, + 0.01445784978568554, + -0.03892405703663826, + -0.03560515120625496, + 0.042874664068222046, + 0.044940270483493805, + 0.030715487897396088, + -0.11584992706775665, + -0.03357468917965889, + 0.02439352124929428, + -0.006503736134618521, + 0.017620835453271866, + 0.008305097930133343, + 0.053109727799892426, + 0.04198405519127846, + 0.10288432985544205, + 0.015063759870827198, + -0.11469636857509613, + -0.033124059438705444, + 0.036142315715551376, + 0.04258453845977783, + 0.024899300187826157, + -0.03896209970116615, + -0.08856429904699326, + 0.024237817153334618, + -0.10597725957632065, + -0.09340038895606995, + 0.02809186838567257, + 0.07046636193990707, + 0.007391875609755516, + -0.00016044119547586888, + -0.035653989762067795, + 0.026234257966279984, + 0.017127351835370064, + 0.015682395547628403, + 0.016790060326457024, + 0.05348338559269905, + 0.075454942882061, + 0.004047913942486048, + 0.04967302083969116, + -0.05038172006607056, + 0.01809951476752758, + 0.016599299386143684, + -0.04444718360900879, + -0.009481465443968773, + 0.04014665260910988, + -0.06807836145162582, + -0.0879652202129364, + -0.0750814825296402, + -0.04544556140899658, + -0.05532456189393997, + 0.04978698492050171, + -0.043173838406801224, + 0.01213559228926897, + -0.10389567911624908, + -0.04527846723794937, + -0.13439233601093292, + 0.018978426232933998, + 0.02688043750822544, + 0.011795002967119217, + -0.07790432870388031, + 0.06164306029677391, + 0.03298114612698555, + -0.009846650063991547, + -0.01993812620639801, + 0.06662444770336151, + 0.026874683797359467, + 0.07187190651893616, + -0.006085910834372044, + 0.05901547893881798, + -0.005243739113211632, + -0.05930224061012268, + 0.02061782218515873, + -0.021942785009741783, + 0.03153553977608681, + -0.013342310674488544, + -0.030211305245757103, + -0.08716611564159393, + 0.10751724988222122, + -0.04724075272679329, + -0.04664304479956627, + -0.02542208693921566, + -0.029750803485512733, + 0.01967768743634224, + 0.007786356378346682, + 0.05268070101737976, + 0.08812655508518219, + 0.006071795243769884, + 0.03322408348321915, + 0.0457143560051918, + -0.0747213140130043, + 0.010939502157270908, + -0.031391169875860214, + -3.662789703968369e-33, + 0.05272011458873749, + 0.05404004827141762, + 0.021763041615486145, + 0.15458953380584717, + 0.0482143834233284, + -0.021354135125875473, + -0.03716665133833885, + -0.04395972192287445, + -0.05085388198494911, + 0.03544383496046066, + -0.029019823297858238, + 0.0025461670011281967, + 0.04337335750460625, + -0.002581062028184533, + -0.007211571093648672, + -0.044181179255247116, + 0.01559780165553093, + -0.03801046311855316, + -0.028218422085046768, + -0.017163611948490143, + -0.10572976619005203, + 0.04311027750372887, + -0.0719560906291008, + -0.05624544247984886, + -0.019385213032364845, + 0.035090308636426926, + 0.048600345849990845, + 0.03319880738854408, + -0.007582016289234161, + 0.013307005167007446, + 0.1524754911661148, + -0.04935605823993683, + 0.05393676459789276, + 0.05266030505299568, + -0.007566454354673624, + -0.02055668830871582, + -0.08168946951627731, + -0.0426621176302433, + -0.04734962061047554, + 0.04107418656349182, + -0.07215437293052673, + -0.04668300971388817, + -0.06527428328990936, + 0.015225652605295181, + -0.03914272040128708, + 0.035329919308423996, + 0.0790301188826561, + -0.06543941050767899, + 0.09484502673149109, + -0.0707358568906784, + 0.02267937920987606, + 0.032320305705070496, + -0.019783755764365196, + 0.04062233120203018, + 0.08897840231657028, + -0.020193418487906456, + -0.0260344035923481, + 0.010681774467229843, + -0.019516989588737488, + -0.09669622033834457, + 0.042750295251607895, + 0.020420921966433525, + -0.010266461409628391, + -0.007755881641060114, + -0.06672724336385727, + 0.015381519682705402, + -0.07017766684293747, + -0.023060793057084084, + 0.08647539466619492, + -0.012215988710522652, + 0.042302876710891724, + 0.06979755312204361, + 0.010743572376668453, + -0.07326434552669525, + -0.022016895934939384, + 0.0685790628194809, + 0.07684209942817688, + 0.008191066794097424, + 0.07272700220346451, + -0.11388403177261353, + -0.056673936545848846, + -0.004269856959581375, + 0.04250906780362129, + -0.025764111429452896, + 0.024599559605121613, + -0.020155126228928566, + -0.015824241563677788, + -0.04358644410967827, + -0.01366292405873537, + 0.027805158868432045, + -0.06955620646476746, + -0.022398222237825394, + -0.01645835116505623, + -0.08585494011640549, + -0.023883698508143425, + 2.0066948551543735e-33, + 0.005842057056725025, + 0.052046675235033035, + -0.06788710504770279, + -0.04148710146546364, + 0.08918207138776779, + 0.019502565264701843, + -0.008063091896474361, + -0.04217151552438736, + 0.004057127516716719, + -0.02228149026632309, + -0.04644475877285004, + 0.035245347768068314, + -0.012926492840051651, + -0.044526856392621994, + 0.10527224093675613, + 0.017750078812241554, + 0.028632555156946182, + 0.05603715404868126, + 0.02729906514286995, + 0.0055536129511892796, + -0.07525216788053513, + 0.0326518788933754, + -0.05025196075439453, + 0.05044792219996452, + -0.059387873858213425, + 0.061186183243989944, + 0.06686823815107346, + -0.10524196177721024, + 0.031628165394067764, + 0.01403865497559309, + -0.05575999617576599, + -0.01512130256742239, + 0.010962356813251972, + 0.01993771269917488, + -0.03729815408587456, + 0.0011655335547402501, + 0.026482051238417625, + 0.005892625544220209, + 0.015932150185108185, + -0.06082560867071152, + -0.04911277815699577, + 0.02347736246883869, + -0.0026390645653009415, + -0.032914139330387115, + -0.030347438529133797, + 0.0321776308119297, + -0.060190290212631226, + -0.02835899405181408, + 0.05247698724269867, + 0.015631219372153282, + -0.03573466092348099, + -0.06529492884874344, + -0.040796976536512375, + 0.03842536360025406, + 0.0031423724722117186, + -0.026991767808794975, + -0.028401216492056847, + 0.019870933145284653, + 0.10942389816045761, + 0.032282911241054535, + -0.02090972103178501, + -0.018859973177313805, + 0.07697627693414688, + -0.009746579453349113, + -0.03644725680351257, + -0.022802317515015602, + -0.00040866946801543236, + 0.010442182421684265, + 0.002325382549315691, + 0.04800708219408989, + 0.06194513663649559, + 0.024721814319491386, + -0.04731416329741478, + 0.07047465443611145, + -0.05430230125784874, + -0.04280850663781166, + 0.08820739388465881, + 0.08370500057935715, + 0.05282314866781235, + 0.02024739794433117, + -0.0691499188542366, + 0.06088744103908539, + -0.08041683584451675, + 0.014940680004656315, + -0.009505419060587883, + -0.014696410857141018, + 0.04310773313045502, + -0.013958378694951534, + -0.10986664891242981, + -0.0504639707505703, + -0.03075801022350788, + 0.08619702607393265, + -0.011362039484083652, + -0.019897576421499252, + 0.05019893869757652, + -1.5070108716486175e-08, + 0.05293456092476845, + 0.027261242270469666, + -0.12251105159521103, + -0.0010307198390364647, + 0.053925108164548874, + 0.011027331463992596, + -0.02046796679496765, + -0.05990210548043251, + -0.019267164170742035, + -0.013099724426865578, + 0.05636010318994522, + 0.000653898052405566, + 0.09172037988901138, + -0.0662713423371315, + 0.033285561949014664, + -0.019892174750566483, + -0.1239323541522026, + 0.05748242884874344, + -0.03763690963387489, + -0.07334177941083908, + 0.030100280418992043, + 0.09362728893756866, + 0.04816482961177826, + -0.045340877026319504, + -0.0486065074801445, + 0.04999314248561859, + 0.05471237748861313, + 0.01630111038684845, + 0.06253613531589508, + -0.010623588226735592, + -0.022479934617877007, + 0.08337918668985367, + 0.030885254964232445, + -0.05567952245473862, + -0.05218350887298584, + -0.046876195818185806, + -0.028617793694138527, + -0.0033008938189595938, + 0.015448625199496746, + 0.16050083935260773, + 0.02186194807291031, + 0.008673913776874542, + -0.00484228041023016, + -0.03403973951935768, + 0.01671496033668518, + 0.02821972779929638, + 0.06151176616549492, + -0.05529231205582619, + -0.1137857511639595, + -0.00797121413052082, + 0.0022426170762628317, + 0.025525571778416634, + -0.033119022846221924, + 0.06691750884056091, + 0.017790330573916435, + 0.011716583743691444, + -0.029566850513219833, + 0.07459571957588196, + -0.041874103248119354, + 0.01628255285322666, + 0.08422914147377014, + 0.03147898614406586, + -0.030864132568240166, + -0.027761297300457954 + ], + "bandaids-bold||bandages,medical,medicine,first aid,injury": [ + -0.10077366977930069, + 0.0637049525976181, + 0.003232837887480855, + -0.003792005591094494, + 0.050399281084537506, + 0.02933214046061039, + 0.07105090469121933, + 0.09768868237733841, + -0.020062534138560295, + 0.06962189078330994, + 0.06417810171842575, + 0.04662610962986946, + -0.007728583179414272, + 0.04324980080127716, + 0.0025552897714078426, + -0.011726298369467258, + 0.034351661801338196, + -0.01683521270751953, + -0.07700478285551071, + -0.005977511405944824, + 0.015332409180700779, + 0.08567899465560913, + 0.023742588236927986, + 0.03149736300110817, + -0.033544301986694336, + 0.02765739895403385, + -0.04190146550536156, + 0.0022664573043584824, + 0.04460757225751877, + 0.010774563997983932, + -0.06271073967218399, + -0.055774789303541183, + 0.0328182727098465, + 0.017251301556825638, + 0.05831681564450264, + 0.015652518719434738, + -0.005382049363106489, + -0.013975096866488457, + -0.07561036199331284, + 0.11447689682245255, + 0.06751123815774918, + -0.06464362889528275, + -0.04151523858308792, + -0.009713785722851753, + 0.02689642645418644, + -0.06263972073793411, + 0.010338104330003262, + 0.06627543270587921, + 0.04735377058386803, + 0.03769588842988014, + -0.011494617909193039, + -0.03252982720732689, + -0.03747221454977989, + 0.048475850373506546, + 0.00905301421880722, + -0.016062969341874123, + -0.08762016147375107, + -0.0066896285861730576, + -0.0448446124792099, + 0.04176381602883339, + -0.00544718699529767, + 0.008179093711078167, + 0.02799604833126068, + 0.06066998094320297, + -0.023276273161172867, + -0.041501183062791824, + 0.09391515702009201, + 0.014402369037270546, + 0.03536099195480347, + 0.07447896152734756, + 0.000584073830395937, + -0.04753634333610535, + 0.07510528713464737, + 0.014502240344882011, + -0.05358562618494034, + -0.02295142598450184, + 0.04261091351509094, + 0.04807419702410698, + -0.01829850673675537, + -0.03037460520863533, + -0.07662893831729889, + -0.060093071311712265, + 0.035953339189291, + 0.026153331622481346, + -0.07459156215190887, + 0.09476248174905777, + -0.0644078329205513, + -0.03796827048063278, + -0.03061739169061184, + 0.0023271276149898767, + -0.021157480776309967, + -0.01037425734102726, + 0.08984287083148956, + 0.059829290956258774, + -0.03084121271967888, + 0.05852694436907768, + 0.006372867152094841, + 0.04279384762048721, + -0.06882952153682709, + 0.06543076783418655, + -0.002059632446616888, + -0.04215674102306366, + 0.00377466413192451, + 0.046676382422447205, + -0.002647294895723462, + -0.11977483332157135, + -0.08420508354902267, + -0.07472731918096542, + -0.00927718635648489, + 0.03988364338874817, + 0.0056652347557246685, + -0.021058233454823494, + -0.01835809089243412, + -0.04693356156349182, + -0.08762263506650925, + -0.012558000162243843, + -0.04029575735330582, + 0.03912755846977234, + 0.07762964814901352, + 0.051720425486564636, + 0.06697410345077515, + -0.021922169253230095, + -0.01916438899934292, + -0.07679347693920135, + 0.019255908206105232, + -0.0163414403796196, + 0.033972643315792084, + -3.657861811244531e-33, + 0.09284322708845139, + 0.016351992264389992, + 0.001500187674537301, + 0.017800843343138695, + -0.04200112074613571, + 0.01864168979227543, + -0.07383876293897629, + -0.07421477138996124, + -0.0354800783097744, + 0.07591912895441055, + -0.013801810331642628, + 0.0662316307425499, + 0.019397735595703125, + 0.05450281500816345, + -0.021949676796793938, + 0.02533935382962227, + -0.09518363326787949, + -0.02177792601287365, + -0.03327193856239319, + 0.007709640543907881, + -0.04159252345561981, + 0.037759266793727875, + -0.0027909798081964254, + 0.019707033410668373, + -0.04140956327319145, + 0.06494218856096268, + -0.030532095581293106, + -0.031246231868863106, + 0.05588525906205177, + 0.021300576627254486, + -0.024341026321053505, + 0.0037830211222171783, + 0.08929792791604996, + -0.09354417771100998, + -0.08675586432218552, + 0.018022675067186356, + -0.06766565889120102, + -0.04585649445652962, + -0.08239136636257172, + -0.04340985044836998, + 0.03372938185930252, + 0.03688924014568329, + -0.01702738180756569, + 0.02558748424053192, + 0.04662715643644333, + 0.02327612414956093, + -0.013393618166446686, + -0.03198670595884323, + 0.04172453284263611, + -0.09576636552810669, + 0.005088615696877241, + 0.023530127480626106, + 0.06999089568853378, + -0.03192269802093506, + -0.021062305197119713, + 0.03149700537323952, + 0.02182812988758087, + 0.04811091721057892, + -0.014629805460572243, + 0.013912128284573555, + 0.0674232617020607, + -0.04985896497964859, + 0.06377696990966797, + -0.007335963658988476, + 0.029459282755851746, + -0.0009207383263856173, + 0.019403213635087013, + -0.0020713319536298513, + 0.0026130613405257463, + -0.10417845100164413, + -0.0676894411444664, + 0.07259080559015274, + 0.07505448907613754, + 0.059251297265291214, + 0.009454823099076748, + 0.04374963045120239, + 0.050986453890800476, + 0.0627177357673645, + -0.03911728039383888, + -0.11783235520124435, + -0.07970962673425674, + -0.042505159974098206, + -0.0035515795461833477, + 0.11793121695518494, + 0.05709291249513626, + 0.013194636441767216, + -0.03472835198044777, + -0.06040635332465172, + -0.0533541664481163, + -0.0951709896326065, + -0.084269218146801, + 0.029866166412830353, + -0.01252646092325449, + -0.02073870599269867, + -0.046602703630924225, + -4.25396941471941e-34, + 0.0738145112991333, + 0.0359022356569767, + 0.010958144441246986, + -0.05231742188334465, + 0.03204117342829704, + -0.004877357743680477, + -0.0014209712389856577, + 0.10394804924726486, + 0.0396975539624691, + 0.06775243580341339, + -0.014595011249184608, + -0.07575749605894089, + -0.10576844215393066, + 0.009689108468592167, + -0.040576133877038956, + 0.007699983660131693, + -0.016057154163718224, + 0.03709590435028076, + -0.04050813987851143, + -0.024569526314735413, + -0.03278294950723648, + -0.0009052192326635122, + 0.07975485175848007, + 0.02864416129887104, + 0.002329087583348155, + 0.031194765120744705, + 0.012928413227200508, + -0.05522005259990692, + -0.10883625596761703, + 0.007311520166695118, + 0.04908917844295502, + -0.09573269635438919, + -0.025629231706261635, + 0.027978943660855293, + -0.05865393206477165, + 0.04908474162220955, + -0.018489420413970947, + -0.08232179284095764, + -0.031099338084459305, + -0.10555097460746765, + 0.054937005043029785, + -0.04791732504963875, + 0.017925774678587914, + 0.056066494435071945, + -0.0065100667998194695, + -0.03262739256024361, + -0.08567683398723602, + -0.021062932908535004, + -0.07500754296779633, + 0.03524264693260193, + -0.020390523597598076, + 0.08085454255342484, + -0.018826304003596306, + 0.016528861597180367, + 0.021004198119044304, + -0.0045120492577552795, + -0.0589863620698452, + -0.0679904893040657, + -0.0477839894592762, + 0.0008064155117608607, + 0.016442056745290756, + 0.05332719162106514, + -0.06956365704536438, + 0.0608176663517952, + 0.06555461883544922, + -0.011341093108057976, + -0.0005695752915926278, + -0.009110639803111553, + -0.04778224974870682, + 0.022503981366753578, + 0.028425205498933792, + 0.013696489855647087, + -0.05372273549437523, + -0.04468449950218201, + 0.021514147520065308, + -0.007594264578074217, + -0.036701396107673645, + -0.03626599162817001, + -0.027405871078372, + 0.07693168520927429, + 0.024982992559671402, + -0.08106844872236252, + -0.05937892198562622, + 0.07542760670185089, + 0.028132863342761993, + -0.01620391570031643, + 0.12642590701580048, + 0.04019135609269142, + 0.0058790105395019054, + 0.00667619239538908, + -0.015739165246486664, + 0.041162919253110886, + 0.026333900168538094, + 0.07020214200019836, + -0.02312258444726467, + -2.0481609297462455e-08, + 0.05008401349186897, + 0.04761079326272011, + -0.0809864029288292, + -0.055968694388866425, + -0.03566772863268852, + -0.04797368869185448, + -0.14022968709468842, + -0.009399285539984703, + -0.011642671190202236, + 0.0007232677307911217, + 0.0184684619307518, + 0.06421573460102081, + -0.03495902940630913, + 0.0033594619017094374, + -0.028794795274734497, + 0.006948171183466911, + -0.07456792145967484, + 0.0271117202937603, + -0.05791136622428894, + -0.07563960552215576, + -0.06854791194200516, + 0.04418771341443062, + 0.07210507243871689, + -0.05907792970538139, + 0.026357974857091904, + 0.007138511631637812, + -0.061877209693193436, + -0.02195427566766739, + -0.05492806062102318, + 0.11709590256214142, + -0.0017686515348032117, + -0.007017046213150024, + 0.013897120952606201, + -0.02464723400771618, + -0.08085168153047562, + -0.0052009280771017075, + 0.07635591179132462, + -0.08231896907091141, + 0.04219814017415047, + 0.008491668850183487, + 0.02964881807565689, + -0.1398027539253235, + 0.06782873719930649, + 0.0392068549990654, + 0.045017484575510025, + -0.026181228458881378, + 0.04662482440471649, + 0.021523158997297287, + -0.05545956268906593, + -0.0723748505115509, + 0.01772739179432392, + -0.050212837755680084, + -0.06404567509889603, + -0.021194331347942352, + -0.07462536543607712, + -0.08032692968845367, + 0.0234559066593647, + 0.06902145594358444, + 0.027905676513910294, + 0.05354708805680275, + -0.007131120190024376, + -0.033882297575473785, + 0.11283481866121292, + 0.06536760181188583 + ], + "bank-bold||banking,checking,money,savings,deposit,withdraw,places,locations": [ + 0.1079578846693039, + -0.03187619894742966, + -0.08437487483024597, + 0.019277088344097137, + -0.010238396003842354, + -0.030611613765358925, + 0.0912063866853714, + -0.03417308256030083, + 0.026486588642001152, + -0.03638816252350807, + 0.04234819859266281, + 0.009226554073393345, + 0.016649482771754265, + -0.02615811489522457, + -0.007109685800969601, + -0.03377366065979004, + 0.001041304087266326, + 0.027162155136466026, + 0.054659146815538406, + 0.04727104306221008, + 0.03249557316303253, + -0.008716655895113945, + -0.024220196530222893, + 0.03357216715812683, + 0.11041475087404251, + -0.0011852951720356941, + 0.015919286757707596, + 0.0005327676772139966, + -0.020775021985173225, + -0.07969696074724197, + -0.03659718856215477, + 0.059977807104587555, + 0.02106928825378418, + -0.03130219876766205, + 0.08982925117015839, + -0.008583969436585903, + -0.010827906429767609, + 0.026413828134536743, + 0.06119395047426224, + -0.013457301072776318, + -0.050869327038526535, + -0.09367696195840836, + 0.04303276166319847, + -0.00983892846852541, + -0.00622115982696414, + 0.029418140649795532, + -0.012941749766469002, + 0.02953670173883438, + -0.002874705707654357, + 0.050307027995586395, + 0.05124484375119209, + -0.08734441548585892, + -0.09211601316928864, + 0.047978196293115616, + 0.0037218299694359303, + 0.035338208079338074, + -0.0036997159477323294, + -0.0036763260141015053, + 0.033416345715522766, + -0.0031292105559259653, + 0.038143813610076904, + 0.054982516914606094, + 0.014217175543308258, + 0.062202759087085724, + 0.0393776074051857, + 0.03337593749165535, + -0.0714595764875412, + 0.046106476336717606, + -0.02691612020134926, + -0.046672552824020386, + 0.02491777203977108, + -0.08553330600261688, + -0.04817347228527069, + -0.09033886343240738, + -0.041377171874046326, + -0.005173640325665474, + 0.0805261880159378, + 0.04212217405438423, + -0.005642960779368877, + -0.06262330710887909, + -0.048436325043439865, + -0.07251434028148651, + -0.023036740720272064, + -0.03714286535978317, + 0.010152306407690048, + 0.042541030794382095, + -0.05404967814683914, + -0.0856880396604538, + 0.042894914746284485, + -0.08742767572402954, + -0.020885657519102097, + 0.03400520235300064, + 0.024815669283270836, + -0.0416988879442215, + -0.022526666522026062, + -0.04303746670484543, + 0.027249248698353767, + 0.028467725962400436, + 0.07903659343719482, + 0.02813095971941948, + 0.1244736909866333, + 0.10732576996088028, + 0.05676338076591492, + 0.07726667076349258, + 0.019201064482331276, + -0.012748668901622295, + 0.01602523773908615, + 0.015817461535334587, + 0.03243798390030861, + -0.04916924983263016, + -0.06628500670194626, + 0.006728084292262793, + 0.052780672907829285, + -0.03645637631416321, + -0.055443260818719864, + -0.019191280007362366, + -0.07829181104898453, + -0.050804417580366135, + 0.13081319630146027, + 0.0801457017660141, + -0.001946507953107357, + 0.03778338432312012, + -0.04590878635644913, + -0.06266258656978607, + -0.0716845914721489, + 0.01872291788458824, + 0.0067407819442451, + -3.853044199332925e-33, + -0.00851510837674141, + 0.028782324865460396, + -0.02012641541659832, + 0.03388247266411781, + -0.026229189708828926, + 0.016772007569670677, + -0.07970166951417923, + -0.01900639757514, + -0.07236584275960922, + 0.08828748017549515, + 0.04286757484078407, + -0.024047469720244408, + -0.0012693366734310985, + 0.09436249732971191, + 0.04371717944741249, + 0.014453406445682049, + 0.0351625420153141, + -0.014892402105033398, + 0.015950851142406464, + 0.04429785534739494, + -0.01599222980439663, + 0.04605385288596153, + -0.044697247445583344, + -0.010010486468672752, + 0.040553417056798935, + -0.05210256204009056, + -0.03591348975896835, + -0.016760047525167465, + -0.011458726599812508, + 0.03462505340576172, + 0.00408750306814909, + -0.029155883938074112, + 0.021823551505804062, + -0.02038818784058094, + 0.0013566430425271392, + 0.01551539171487093, + 0.004398288205265999, + -0.029496988281607628, + 0.004169439896941185, + -0.03376496955752373, + -0.07413855195045471, + -0.008716615848243237, + -0.025187412276864052, + 0.05206535756587982, + 0.043891433626413345, + 0.14953146874904633, + -0.060676414519548416, + -0.005693633109331131, + 0.037665955722332, + 0.017983514815568924, + -0.06743478029966354, + -0.030017947778105736, + -0.09716213494539261, + -0.008656436577439308, + 0.009221545420587063, + -0.06377741694450378, + -0.03349065035581589, + 0.02540316991508007, + -0.0022351928055286407, + -0.0174231119453907, + 0.016659121960401535, + 0.032053593546152115, + -0.07603650540113449, + -0.07301419973373413, + -0.05328074097633362, + 0.04191716015338898, + -0.03103732503950596, + 0.03863148018717766, + 0.047040026634931564, + 0.060786910355091095, + -0.11051660776138306, + 0.0520721934735775, + 0.08663304895162582, + 0.09153135120868683, + 0.03488225117325783, + -0.012811800464987755, + -0.02639944478869438, + 0.027269942685961723, + -0.03128008171916008, + -0.004313897807151079, + -0.0551312230527401, + -0.0006479092407971621, + -0.08275331556797028, + 0.13060171902179718, + 0.019986357539892197, + 0.017923640087246895, + 0.05440560728311539, + -0.17158223688602448, + -0.001937580294907093, + -0.0599990077316761, + -0.08907068520784378, + 0.01940837875008583, + 0.05631423741579056, + -0.03844865784049034, + -0.0609925203025341, + -3.5927885102816726e-34, + 0.004669046029448509, + -0.05776888132095337, + -0.002558597130700946, + 0.007814179174602032, + -0.10661755502223969, + 0.024207046255469322, + 0.04008606821298599, + -0.04892323911190033, + 0.07670153677463531, + 0.043266259133815765, + -0.08620239794254303, + 0.02745378576219082, + 0.002596273086965084, + -0.04848131164908409, + -0.04636548459529877, + -0.031729646027088165, + 0.020366931334137917, + 0.0037919420283287764, + -0.038327042013406754, + 0.05215076729655266, + -0.016902046278119087, + -0.02899613417685032, + -0.0009793532080948353, + 0.03468415141105652, + -0.01710868440568447, + 0.03751225396990776, + -0.040099479258060455, + -0.07195059210062027, + -0.05683262273669243, + 0.012359419837594032, + -0.08800949901342392, + -0.040930502116680145, + 0.05768924206495285, + 0.05504933372139931, + -0.13591963052749634, + -0.012427841313183308, + 0.062376849353313446, + -0.020430130884051323, + -0.006610237527638674, + 0.015672925859689713, + 0.010311334393918514, + -0.004177694208920002, + 0.0435037836432457, + 0.046769097447395325, + -0.017915168777108192, + 0.018274305388331413, + -0.04575197398662567, + 0.009145342744886875, + -0.03114536963403225, + 0.002753443317487836, + 0.031168721616268158, + -0.03972684592008591, + -0.07757170498371124, + 0.056304872035980225, + -0.02539469115436077, + 0.0695885643362999, + 0.08197694271802902, + -0.03376948833465576, + 0.018773283809423447, + 0.018470831215381622, + -0.04014570638537407, + 0.02312573604285717, + 0.004244227893650532, + 0.08619564026594162, + -0.016412092372775078, + -0.06900911033153534, + 0.0007238623220473528, + -0.005300221499055624, + 0.041775356978178024, + -0.06812410056591034, + -0.0099775530397892, + -0.017929287627339363, + 8.87571441126056e-05, + 0.038950756192207336, + -0.018740572035312653, + 0.0378742441534996, + 0.03638114407658577, + -0.06832420080900192, + -0.01242160052061081, + 0.011499416083097458, + -0.014490450732409954, + 0.004751043859869242, + -0.02776133455336094, + 0.05026727542281151, + 0.016561169177293777, + -0.021508891135454178, + -0.028053978458046913, + -0.0676359310746193, + 0.02012370154261589, + -0.08331431448459625, + -0.059063248336315155, + 0.03126324340701103, + -0.00960775651037693, + -0.01123552955687046, + -0.09206932038068771, + -2.2182478076615553e-08, + -0.044560108333826065, + -0.004170404281467199, + 0.005356540437787771, + -0.01538741122931242, + 0.04547639936208725, + -0.08810929954051971, + 0.03920717537403107, + 0.017502009868621826, + -0.05248646438121796, + 0.04051131382584572, + 0.032629404217004776, + 0.06731092184782028, + -0.14690853655338287, + -0.13085775077342987, + 0.007488393224775791, + 0.024797603487968445, + -0.00471488619223237, + -0.026441648602485657, + -0.01244395412504673, + 0.010849686339497566, + -0.015042662620544434, + 0.07021927088499069, + -0.0050167362205684185, + -0.012578957714140415, + -0.0007576305652037263, + -0.021814120933413506, + 0.022116363048553467, + 0.10465111583471298, + 0.11065535247325897, + -0.04042407497763634, + 0.02621397189795971, + 0.08479705452919006, + 0.05057494342327118, + -0.032482169568538666, + -0.07641365379095078, + 0.018114643171429634, + 0.024570729583501816, + 0.04411931708455086, + -0.001396128092892468, + 0.07871639728546143, + -0.02840190753340721, + -0.1591571718454361, + -0.07087881863117218, + -0.05082367733120918, + 0.01787663623690605, + -0.005297544877976179, + 0.049381863325834274, + 0.02306249551475048, + 0.03351469710469246, + -0.11183073371648788, + -0.08194022625684738, + -0.0351615734398365, + 0.09212015569210052, + 0.08224447071552277, + 0.04534108564257622, + -0.03352957218885422, + -0.05488559976220131, + -0.041041117161512375, + 0.04293217882514, + -0.023752950131893158, + 0.1318722367286682, + 0.013948858715593815, + 0.05166309326887131, + -0.028164593502879143 + ], + "barbell-bold||gym,weights,dumbbells,strength training,workout,exercises,fitness": [ + -0.023990552872419357, + -0.08002758771181107, + 0.01011549960821867, + 0.025156669318675995, + -0.12378373742103577, + -0.00253663444891572, + 0.05106036365032196, + -0.05636676400899887, + -0.012275110930204391, + -0.027073418721556664, + 0.03706960752606392, + -0.020687751471996307, + 0.0504976361989975, + -0.08650721609592438, + 0.02257799729704857, + 0.05836936831474304, + 0.073348268866539, + 0.030418792739510536, + -0.03441621735692024, + 0.018812870606780052, + -0.0014449236914515495, + 0.012125537730753422, + 0.031241243705153465, + 0.11536315828561783, + 0.006678462959825993, + 0.008391326293349266, + -0.022613517940044403, + 0.030805695801973343, + -0.00241237785667181, + -0.042895738035440445, + -0.061537355184555054, + -0.07540951669216156, + 0.06058978661894798, + 0.018346838653087616, + -0.07755707204341888, + -0.009935121051967144, + 0.004536124877631664, + 0.0025748617481440306, + -0.026810547336935997, + 0.07773870974779129, + -0.02563435584306717, + -0.042392730712890625, + -0.0027859576512128115, + 0.028106508776545525, + 0.04194517061114311, + 0.0864403173327446, + -0.002980662975460291, + -0.0446457713842392, + 0.005065798759460449, + -0.009207417257130146, + -0.01279130857437849, + -0.09355403482913971, + -0.01239969115704298, + 0.03513794019818306, + 0.02250952459871769, + 0.01075051911175251, + -0.05149834603071213, + -0.019379083067178726, + 0.017386196181178093, + 0.08325197547674179, + -0.018040208145976067, + 0.04264025390148163, + 0.009710440412163734, + 0.05359960347414017, + 0.0388365313410759, + 0.04733266681432724, + 0.007513856049627066, + 0.07783780992031097, + 0.0902630016207695, + -0.03747698664665222, + 0.09954163432121277, + -0.0066889263689517975, + -0.09390375018119812, + -0.004280870780348778, + -0.0031669731251895428, + -0.0218302421271801, + 0.08092350512742996, + -0.0027546179480850697, + -0.008534001186490059, + -0.0410316176712513, + -0.12046608328819275, + -0.043153755366802216, + -0.058795277029275894, + -0.029207516461610794, + 0.05200216919183731, + 0.054121896624565125, + -0.07647343724966049, + -0.02429766207933426, + -0.03577549010515213, + 0.059835199266672134, + -0.04599372670054436, + -0.015162741765379906, + -0.060787755995988846, + 0.041411153972148895, + -0.03577731177210808, + -0.024708397686481476, + -0.014728883281350136, + -0.01987343281507492, + -0.06872086971998215, + 0.016863303259015083, + 0.09618774801492691, + 0.030413631349802017, + 0.12488600611686707, + 0.029119456186890602, + -0.05712089687585831, + -0.04376332461833954, + 0.014136984944343567, + 0.014325649477541447, + 0.059320781379938126, + -0.016310708597302437, + -0.003363360185176134, + -0.10172950476408005, + 0.004996369127184153, + -0.007718189619481564, + -0.048252351582050323, + 0.007241622544825077, + 0.01356376800686121, + 0.05303235352039337, + -0.024027036502957344, + 0.06965846568346024, + -0.04728630185127258, + 0.016302600502967834, + -0.0009750670869834721, + -0.09005472809076309, + -0.12092173099517822, + -0.018154485151171684, + -0.04092409834265709, + -1.2956415365843374e-33, + 0.02053658291697502, + -0.06361763179302216, + -0.0043633971363306046, + 0.08570074290037155, + -0.050174299627542496, + -0.0779758021235466, + -0.06658191233873367, + -0.06346308439970016, + 0.019267069175839424, + 0.03279859200119972, + 0.057185154408216476, + 0.04064252972602844, + 0.018569665029644966, + 0.11368399858474731, + 0.10657280683517456, + -0.026442335918545723, + -0.0019393657566979527, + 0.01492556557059288, + -0.001653588144108653, + 0.018164990469813347, + -0.02312023565173149, + 0.08500242233276367, + -0.01850011944770813, + -0.008632844313979149, + -0.005739923100918531, + -0.04213045910000801, + 0.03990326076745987, + 0.02506190352141857, + -0.13578176498413086, + 0.019514888525009155, + -0.007831994444131851, + 0.019499558955430984, + -0.017476605251431465, + -0.05125997215509415, + -0.014675860293209553, + -0.037258073687553406, + 0.03646538406610489, + -0.04780095815658569, + 0.02340555749833584, + -0.028808867558836937, + 0.0410466194152832, + -0.02423357218503952, + -0.010462875477969646, + -0.002923208987340331, + 0.0561518520116806, + 0.04629959911108017, + 0.024550432339310646, + -0.012538040988147259, + 0.047229766845703125, + -0.00027005502488464117, + -0.012938302010297775, + 0.009947314858436584, + 0.06198793277144432, + -0.03450172394514084, + 0.03351663425564766, + 0.05130860209465027, + -0.05602424591779709, + 0.1331447809934616, + -0.025121299549937248, + 0.023529905825853348, + 0.06742726266384125, + 0.06785622239112854, + -0.0010691385250538588, + 0.03865724802017212, + -0.06972258538007736, + 0.015868527814745903, + -0.03838410973548889, + 0.013151627033948898, + 0.048073526471853256, + -0.00612138444557786, + -0.006989270448684692, + 0.047755975276231766, + 0.03258359059691429, + 0.02422340400516987, + 0.06584787368774414, + -0.008937029168009758, + -0.037429329007864, + -0.03342391550540924, + -0.0365685299038887, + -0.03092687763273716, + -0.004282310139387846, + 0.051723066717386246, + -0.06769388169050217, + 0.14612339437007904, + -0.005246379412710667, + 0.05518628656864166, + 0.06399853527545929, + -0.048107411712408066, + 0.0013686317251995206, + 0.06770287454128265, + -0.1163799911737442, + -0.008244417607784271, + -0.03541126847267151, + -0.013932748697698116, + -0.06181082874536514, + -1.1249507569663177e-33, + -0.015232620760798454, + 0.03460203483700752, + 0.005505663808435202, + -0.015433036722242832, + 0.06923191994428635, + 0.027731606736779213, + -0.004392493981868029, + 0.011413045227527618, + 0.014208742417395115, + 0.06671591848134995, + -0.012909301556646824, + -0.0714743435382843, + -0.14837898313999176, + -0.10950829833745956, + 0.0022456240840256214, + 0.03339735046029091, + -0.09915048629045486, + 0.03943302854895592, + -0.069581538438797, + 0.009987222962081432, + 0.03996884077787399, + -0.008177190087735653, + -0.020755039528012276, + 0.048035115003585815, + -0.009339632466435432, + 0.0034944326616823673, + -0.08019242435693741, + 0.0607258602976799, + 0.06634919345378876, + -0.019792305305600166, + -0.049621302634477615, + -0.008114980533719063, + 0.11999476701021194, + 0.0026573368813842535, + -0.1462530493736267, + 0.047208331525325775, + 0.08757546544075012, + -0.04007144272327423, + 0.05647662281990051, + 0.04596593603491783, + 0.037018321454524994, + 0.02167428471148014, + 0.03803662583231926, + -0.0037348587065935135, + -0.024990350008010864, + -0.026820404455065727, + -0.015434658154845238, + -0.10458070039749146, + -0.07665684074163437, + 0.025333916768431664, + 0.03459533303976059, + -0.019450785592198372, + -0.06188281625509262, + 0.02028411440551281, + 0.009189466014504433, + -0.10377371311187744, + 0.0033837477676570415, + -0.03753679245710373, + -0.049826785922050476, + -0.0521651953458786, + -0.06868797540664673, + 0.005764506291598082, + -0.002932954579591751, + 0.07056902348995209, + 0.031082646921277046, + -0.0018359553068876266, + 0.020010316744446754, + -0.019559647887945175, + -0.0469793863594532, + -0.02483050711452961, + -0.014270763844251633, + 0.010292872786521912, + 0.10187525302171707, + 0.017566993832588196, + -0.03778449445962906, + -0.037561237812042236, + 0.018654264509677887, + -0.0176922008395195, + -0.02737012505531311, + 0.006684716325253248, + -0.006949207745492458, + -0.09843232482671738, + 0.01232144795358181, + 0.08995931595563889, + 0.010081138461828232, + 0.08751995861530304, + 0.0076170917600393295, + 0.017281796783208847, + -0.024511851370334625, + -0.024639781564474106, + 0.025670159608125687, + 0.011874684132635593, + -0.029367787763476372, + 0.027407590299844742, + -0.005926575977355242, + -2.1170004416148913e-08, + 0.035936564207077026, + 0.03629573434591293, + -0.027424337342381477, + 0.018001889809966087, + -0.011244655586779118, + 0.058470044285058975, + -0.06002744287252426, + -0.05690411850810051, + -0.08423226326704025, + -0.029375862330198288, + 0.05420149862766266, + 0.03191637620329857, + -0.001024072989821434, + -0.046714089810848236, + -0.028401609510183334, + -0.04340623319149017, + -0.054883312433958054, + 0.10913636535406113, + -0.002621231833472848, + -0.03834087774157524, + -0.010599368251860142, + 0.006658444181084633, + 0.05717158690094948, + 0.0020533178467303514, + -0.016975747421383858, + -0.08351188898086548, + -0.12312770634889603, + 0.030532894656062126, + 0.04361964762210846, + 0.03304353356361389, + 0.051695555448532104, + 0.05495956540107727, + 0.02705676667392254, + -0.06722724437713623, + -0.10390880703926086, + -0.029240941628813744, + -0.018472790718078613, + -0.05533813312649727, + -0.07921916991472244, + 0.16475674510002136, + -0.03747539967298508, + -0.0611187219619751, + 0.005643964745104313, + 0.020256858319044113, + 0.07999418675899506, + -0.030819183215498924, + -0.005012539681047201, + -0.00817335955798626, + -0.012873746454715729, + -0.09460184723138809, + 0.03677760064601898, + 0.0015737906796857715, + 0.04879378154873848, + 0.03895144909620285, + -0.057188015431165695, + 0.09405959397554398, + -0.03292856737971306, + 0.006753409747034311, + -0.025266114622354507, + 0.03187831491231918, + 0.10445033758878708, + -0.026411492377519608, + 0.003954824525862932, + -0.004946027882397175 + ], + "barcode-bold||upc,qr,products,shopping,scanner": [ + -0.08692880719900131, + -0.002096832962706685, + -0.12465663999319077, + -0.04751647636294365, + -0.03777920827269554, + 0.02396170049905777, + 0.02944982424378395, + -0.05451237037777901, + -0.026407836005091667, + -0.04091726243495941, + 0.0391245111823082, + 0.05378101393580437, + 0.11579826474189758, + -0.05472180247306824, + -0.0010683611035346985, + 0.056206461042165756, + -0.03297797590494156, + 0.015330085530877113, + 0.005856887437403202, + -0.019734282046556473, + -0.025962430983781815, + 0.01290248241275549, + 0.0028358486015349627, + 0.02268020436167717, + -0.020632900297641754, + 0.009024595841765404, + -0.0046578808687627316, + 0.019138729199767113, + 0.0225755013525486, + -0.057440441101789474, + 0.034973904490470886, + 0.00311006186529994, + 0.18539774417877197, + 0.027361175045371056, + 0.0170916598290205, + -0.04948745295405388, + 0.0033389730378985405, + -0.03666103631258011, + -0.026838550344109535, + 0.018983514979481697, + -0.06522495299577713, + -0.0111686447635293, + -0.1058727577328682, + 0.06843794882297516, + 0.031126342713832855, + -0.033442165702581406, + -0.05479912832379341, + 0.010406163521111012, + 0.004583445843309164, + -0.049726493656635284, + 0.006473244167864323, + -0.03923249617218971, + -0.08718540519475937, + 0.001793466042727232, + -0.038964565843343735, + -0.04071351885795593, + -0.07479485869407654, + -0.03954792395234108, + 0.10784372687339783, + 0.06053601950407028, + -0.03219104930758476, + 0.08692246675491333, + 0.038247715681791306, + 0.0446186438202858, + 0.09599528461694717, + 0.049720458686351776, + -0.021565832197666168, + 0.07060583680868149, + -0.03135368227958679, + -0.018677247688174248, + 0.013221723958849907, + -0.0724678561091423, + -0.022353099659085274, + -0.015596644952893257, + 0.02976585179567337, + -0.053436633199453354, + 0.02072725258767605, + 0.028608888387680054, + 0.005544744431972504, + -0.050794586539268494, + -0.0779760405421257, + -0.06644029915332794, + -0.05927661433815956, + 0.05138452351093292, + 0.07936794310808182, + 0.004427620209753513, + -0.038035593926906586, + -0.01675993762910366, + 0.008085533045232296, + 0.013833540491759777, + -0.03883599117398262, + -0.05025174468755722, + -0.012357551604509354, + -0.008525962010025978, + -0.0313306488096714, + -0.05470111593604088, + 0.09814957529306412, + -0.001849142019636929, + 0.008057506754994392, + 0.025983424857258797, + 0.04307912662625313, + 0.008427179418504238, + 0.049855414777994156, + -0.05863797664642334, + -0.07060451805591583, + -0.016978664323687553, + 0.08294074982404709, + 0.05720825120806694, + 0.07354763895273209, + 0.020130472257733345, + -0.036285847425460815, + -0.030502116307616234, + -0.024760572239756584, + -0.08940662443637848, + -0.06750579923391342, + 0.008626740425825119, + 0.03342093899846077, + 0.02938276343047619, + 0.09296716749668121, + 0.019537368789315224, + -0.039453428238630295, + -0.005306446924805641, + -0.07081592082977295, + -0.04585406556725502, + -0.06632937490940094, + -0.01908164471387863, + 0.00719752162694931, + -1.878757172417745e-33, + -0.022608453407883644, + 0.03011026605963707, + -0.05899140611290932, + 0.03876702859997749, + 0.008363308385014534, + 0.03277147188782692, + -0.06612399965524673, + -0.015140795148909092, + -0.05762487277388573, + 0.04722042381763458, + 0.0797862783074379, + 0.03287142142653465, + -0.05280900374054909, + 0.11465869098901749, + 0.07196011394262314, + 0.01164213102310896, + -0.029772555455565453, + -0.030456310138106346, + -0.03155938535928726, + -0.045915402472019196, + -0.09194619208574295, + -0.061145760118961334, + 0.008194304071366787, + 0.01658722572028637, + 0.057680197060108185, + 0.0777437686920166, + 0.04594654217362404, + 0.044114354997873306, + -0.022836778312921524, + 0.02458959072828293, + 0.020041847601532936, + -0.029346942901611328, + 0.039874106645584106, + -0.04598817601799965, + -0.04815388843417168, + 0.07448222488164902, + -0.031321581453084946, + 0.05142949894070625, + -0.020219841971993446, + 0.018678095191717148, + -0.024656716734170914, + -0.03497448191046715, + -0.015523935668170452, + -0.026812301948666573, + 0.028556719422340393, + 0.07605612277984619, + -0.04234948754310608, + -0.03177526965737343, + -0.03057161718606949, + 0.07441370189189911, + -0.07371694594621658, + 0.020588714629411697, + -0.03420817479491234, + 0.009249317459762096, + -0.03652884438633919, + -0.04446079209446907, + 0.015656160190701485, + 0.09466271847486496, + 0.03045794740319252, + -0.019639233127236366, + 0.0036427020095288754, + 0.02152455598115921, + 0.06653919070959091, + 0.009683684445917606, + -0.041699137538671494, + -0.002431260421872139, + -0.0054190936498343945, + -0.01823684386909008, + 0.003583603771403432, + 0.040681593120098114, + -0.05425966531038284, + 0.06700386106967926, + 0.04431847855448723, + 0.04559915512800217, + 0.0041068196296691895, + 0.03144872188568115, + -0.02218526229262352, + 0.012820146977901459, + -0.003347110701724887, + -0.10063843429088593, + -0.06448850780725479, + -0.01366431824862957, + 0.010925962589681149, + 0.11237279325723648, + 0.027447199448943138, + 0.011404694058001041, + 0.06893420219421387, + -0.06804246455430984, + -0.10935067385435104, + 0.08513016998767853, + -0.05258256569504738, + 0.01271222997456789, + -0.027562899515032768, + -0.0412086546421051, + 0.005538025870919228, + -4.575295846468971e-34, + 0.037126049399375916, + -0.005871412809938192, + 0.013334084302186966, + -0.00478539802134037, + -0.08289939910173416, + -0.03251692280173302, + -0.00367174344137311, + 0.010733063332736492, + 0.019976455718278885, + 0.0014691506512463093, + 0.034162487834692, + -0.013159272260963917, + -0.03236367553472519, + -0.05184050649404526, + 0.025508027523756027, + 0.085944265127182, + -0.021611006930470467, + 0.1391548216342926, + -0.029383087530732155, + 0.009922902099788189, + -0.019787853583693504, + 6.685655534965917e-05, + -0.06460197269916534, + 0.07236209511756897, + -0.04947504773736, + 0.06874367594718933, + -0.0027390799950808287, + 0.044201068580150604, + 0.017070211470127106, + -0.03889424353837967, + -0.04105965048074722, + -0.07301660627126694, + 0.01074977032840252, + 0.01337339635938406, + -0.10988504439592361, + -0.0017618787242099643, + 0.08464133739471436, + -0.025364845991134644, + 0.015293458476662636, + 0.02316613495349884, + 0.05533936619758606, + 0.0677962675690651, + -0.03630317747592926, + 0.03249022364616394, + -0.02381816692650318, + -0.027074960991740227, + 0.01841585338115692, + -0.062035832554101944, + 0.03435268998146057, + 0.01478583738207817, + 0.08406031876802444, + 0.03355100005865097, + -0.04973696917295456, + 0.0534297339618206, + -0.07005909085273743, + 0.0023322703782469034, + 0.02391321212053299, + 0.052275191992521286, + -0.034345898777246475, + 0.03133522346615791, + -0.032975587993860245, + 0.04451100900769234, + 0.002694683847948909, + -0.024708256125450134, + 0.03516366332769394, + -0.1010134220123291, + 0.10255024582147598, + 0.004431060049682856, + -0.021856555715203285, + -0.044500045478343964, + 0.03849736601114273, + -0.06322645395994186, + 0.03289002925157547, + 0.04625828564167023, + -0.023927317932248116, + -0.04248052090406418, + -0.0006770858308300376, + 0.01957218535244465, + -0.009255836717784405, + -0.012389672920107841, + 0.020184319466352463, + -0.07820457965135574, + 0.039195466786623, + 0.14171630144119263, + -0.011745982803404331, + 0.043714191764593124, + 0.015172739513218403, + 0.00162508524954319, + -0.010084539651870728, + -0.04215110465884209, + 0.010217114351689816, + 0.09925767779350281, + 0.009050706401467323, + -0.004443460609763861, + -0.043488532304763794, + -1.934019344673743e-08, + 0.028917519375681877, + -0.0761059895157814, + -0.07646549493074417, + -0.039921313524246216, + 0.01975349523127079, + 0.0039898972027003765, + -0.07733972370624542, + -0.0052703083492815495, + -0.08327960222959518, + -0.06973304599523544, + 0.09209857881069183, + -0.012880576774477959, + -0.14636100828647614, + -0.02619173936545849, + 0.0473744198679924, + 0.015685202553868294, + -0.03350672498345375, + 0.036961786448955536, + -0.00418595876544714, + -0.04194866865873337, + -0.04171761870384216, + 0.11581612378358841, + 0.07944098860025406, + -0.007987177930772305, + -0.03242235630750656, + -0.025451332330703735, + -0.021441591903567314, + 0.07904278486967087, + 0.08803168684244156, + 0.00024725895491428673, + 0.0703992247581482, + 0.06872724741697311, + 0.048570290207862854, + -0.06664660573005676, + -0.0605119988322258, + -0.06571843475103378, + 0.00917180348187685, + -0.04263538494706154, + -0.015468270517885685, + 0.12210184335708618, + 0.01050056517124176, + -0.14161726832389832, + -0.16351988911628723, + -0.04006888344883919, + -0.036116886883974075, + 0.025142580270767212, + 0.05472765117883682, + -0.004546990152448416, + -0.0969959944486618, + -0.02295803278684616, + -0.005603049416095018, + -0.006519204471260309, + 0.07148978114128113, + 0.0026185032911598682, + -0.024951988831162453, + -0.06428294628858566, + -0.01269270945340395, + 0.02843928523361683, + 0.0612860769033432, + 0.02642030455172062, + 0.09243264049291611, + -0.007340822368860245, + -0.01223638467490673, + 0.005791727919131517 + ], + "barn-bold||*new*,animals,livestock,buildings,farming,agriculture": [ + 0.056768111884593964, + -0.02515706606209278, + 0.01947835460305214, + -7.697911496507004e-05, + 0.02720549888908863, + -0.0324958972632885, + -0.07833867520093918, + -0.10163215547800064, + -0.08348080515861511, + 0.061235830187797546, + 0.08115524798631668, + -0.05855630338191986, + -0.004824064206331968, + -0.013177775777876377, + -0.020951878279447556, + 0.023699302226305008, + 0.02239163964986801, + 0.026038940995931625, + 0.03971301391720772, + 0.009886138141155243, + -0.013339737430214882, + 0.07114199548959732, + -0.01377546600997448, + 0.03454215079545975, + 0.06537315994501114, + -0.0017482070252299309, + -0.013356686569750309, + -0.018307838588953018, + -0.03198985755443573, + -0.05751771107316017, + -0.025818929076194763, + 0.03859659284353256, + 0.11576741933822632, + -0.0028592036105692387, + 0.05584060028195381, + 0.07939346134662628, + 0.06589210778474808, + -0.022815866395831108, + 0.07236216217279434, + 0.0352545790374279, + -0.0001281167205888778, + -0.10122545808553696, + 0.017604654654860497, + -0.010684085078537464, + -0.01677818037569523, + 0.026895960792899132, + -0.022508250549435616, + -0.07059954851865768, + 0.0727769210934639, + 0.002857326529920101, + 0.006731885485351086, + -0.05070099979639053, + -0.11897081136703491, + 0.031511932611465454, + 0.014150533825159073, + -0.016354890540242195, + -0.0784805417060852, + -0.019434912130236626, + 0.0011980455601587892, + -0.03171567991375923, + 0.03954740986227989, + 0.034670185297727585, + 0.036190010607242584, + 0.040986549109220505, + 0.06407133489847183, + 0.011117568239569664, + -0.11802436411380768, + 0.06293553858995438, + -0.03901044279336929, + -0.028507500886917114, + 0.031254906207323074, + -0.0398159921169281, + 0.009302821010351181, + -0.08274033665657043, + -0.1108904480934143, + -0.03332860767841339, + -0.01598220132291317, + 0.003913747146725655, + 0.08777721226215363, + -0.10703280568122864, + -0.02661236748099327, + -0.049682505428791046, + -0.0675036758184433, + -0.07501840591430664, + -0.03905119001865387, + 0.057280004024505615, + -0.06078921630978584, + -0.014267325401306152, + -0.00902117695659399, + -0.05606379732489586, + -0.03298010304570198, + -0.09544694423675537, + -0.030373532325029373, + 0.05469239130616188, + 0.005666509736329317, + 0.013096043840050697, + -0.032266583293676376, + -0.029732903465628624, + -0.004448596853762865, + 0.055286262184381485, + 0.029733318835496902, + 0.012980330735445023, + 0.025423379614949226, + -0.0627809390425682, + -0.055588964372873306, + -0.030880451202392578, + -0.1781865954399109, + -0.0018570628017187119, + -0.022592587396502495, + 0.06431154906749725, + -0.06067991629242897, + -0.019052540883421898, + -0.05878140777349472, + 0.031486768275499344, + 0.017372310161590576, + 0.06624679267406464, + -0.019623177126049995, + -0.09764540940523148, + -0.0018947195494547486, + 0.013173983432352543, + 0.07672437280416489, + 0.005235128570348024, + 0.024209463968873024, + -0.02961588464677334, + 0.004398333374410868, + 0.043985139578580856, + 0.031157949939370155, + -2.899697893335903e-33, + 0.016552018001675606, + -0.07162567973136902, + -0.03915353864431381, + 0.06522147357463837, + 0.08604778349399567, + -0.001198110869154334, + -0.05480613932013512, + -0.007840121164917946, + -0.0326915979385376, + 0.045836612582206726, + 0.015522045083343983, + 0.01746458373963833, + 0.0006995548610575497, + 0.011098959483206272, + 0.037462156265974045, + -0.05150429904460907, + -0.002753469394519925, + -0.06366908550262451, + -0.023816561326384544, + 0.03769480437040329, + -0.08784926682710648, + 0.10518380999565125, + -0.0394534133374691, + 0.029745548963546753, + 0.060822710394859314, + -0.0754462331533432, + 0.03089578077197075, + -0.0851922333240509, + -0.0570484958589077, + 0.05973583087325096, + 0.03312414512038231, + -0.0827905535697937, + -0.02284310944378376, + -0.029948614537715912, + -0.011738056316971779, + 0.014640041626989841, + -0.03973894193768501, + -0.08861188590526581, + -0.008286136202514172, + 0.056541960686445236, + 0.012990826740860939, + -0.04986691102385521, + 0.05098869651556015, + 0.03963368758559227, + 0.08718985319137573, + 0.13341540098190308, + 0.023394528776407242, + 0.050491128116846085, + -0.041474029421806335, + 0.01152210682630539, + 0.004216774832457304, + 0.009184649214148521, + -0.08268974721431732, + -0.003355893073603511, + 0.04513946548104286, + -0.012793654575943947, + -0.04377460479736328, + 0.050832729786634445, + 0.009363586083054543, + 0.03307813033461571, + 0.01974627748131752, + 0.04958552494645119, + 0.002430553548038006, + -0.020072059705853462, + 0.006213331129401922, + -0.02133975923061371, + -0.01906104013323784, + 0.10425466299057007, + 0.05079237371683121, + 0.06111500412225723, + 0.03150308504700661, + -0.029140017926692963, + -0.007708572782576084, + 0.0005950343329459429, + -0.013329754583537579, + 0.02655215561389923, + 0.009014356881380081, + 0.006799561902880669, + -0.022508785128593445, + -0.07841651886701584, + -0.039387065917253494, + 0.07692839950323105, + -0.09695327281951904, + 0.1319843977689743, + -0.04661432281136513, + 0.03442074730992317, + 0.06305915117263794, + -0.06140991300344467, + 0.0029200371354818344, + -0.05742235481739044, + -0.014741591177880764, + 0.040212422609329224, + -0.07881771773099899, + -0.12572698295116425, + -0.0328635647892952, + -4.471979535758788e-34, + 0.011083489283919334, + -0.008349282667040825, + -0.03816838562488556, + -0.006848531775176525, + -0.04665893688797951, + -0.05294421315193176, + 0.030738066881895065, + -0.015699341893196106, + 0.07277785986661911, + 0.023912983015179634, + -0.06670757383108139, + -0.013121281750500202, + -0.03132271766662598, + -0.008812817744910717, + 0.037913452833890915, + 0.0009381921263411641, + -0.041909657418727875, + 0.013240845873951912, + 0.018474876880645752, + 0.033417318016290665, + -0.027092991396784782, + 0.02445659041404724, + -0.05663974583148956, + 0.05195588991045952, + 0.012461408972740173, + 0.035488665103912354, + -0.11551453918218613, + 0.005010815802961588, + -0.015816178172826767, + -0.06516444683074951, + -0.10770401358604431, + -0.08967292308807373, + 0.032331254333257675, + 0.03974100202322006, + -0.062002796679735184, + 0.05793438106775284, + 0.10263385623693466, + -0.09233132004737854, + -0.01403327751904726, + -0.022953616455197334, + 0.047899868339300156, + 0.0020249453373253345, + -0.033108294010162354, + 0.03329509124159813, + -0.08161362260580063, + -0.0012142370687797666, + -0.05384549871087074, + 0.014129599556326866, + -0.0433129258453846, + 0.0824907124042511, + 0.091262586414814, + 0.018457509577274323, + 0.014327372424304485, + -0.07640872895717621, + -0.029230479151010513, + -0.0005249461974017322, + -0.0011377660557627678, + -0.03330913931131363, + -0.024040836840867996, + 0.09077443927526474, + 0.00633236626163125, + 0.07407399266958237, + -0.05225728824734688, + 0.11119939386844635, + 0.03203468769788742, + -0.09710755944252014, + -0.055655281990766525, + -0.04702376946806908, + 0.00771880941465497, + -0.056002937257289886, + -0.00810792576521635, + 0.021166687831282616, + -0.03955930098891258, + 0.01758059486746788, + 0.004870503209531307, + 0.05367594584822655, + 0.0003451292868703604, + 0.005644573830068111, + 0.06261052936315536, + 0.012849228456616402, + -0.032010238617658615, + -0.07855429500341415, + 0.051723357290029526, + 0.10482647269964218, + 0.046981822699308395, + 0.04469155892729759, + -0.030903978273272514, + 0.062080420553684235, + 0.08066809922456741, + 0.009094204753637314, + -0.04446727782487869, + -0.004377658944576979, + -0.020065676420927048, + 0.03554925695061684, + -0.01742071844637394, + -2.1289281448844122e-08, + -0.015939204022288322, + 0.003709389828145504, + -0.019174152985215187, + -0.0012655279133468866, + 0.06647159159183502, + -0.05081269145011902, + 0.004917527548968792, + -0.0034940438345074654, + -0.01485577505081892, + 0.046015750616788864, + -0.05577842518687248, + 0.10732108354568481, + -0.0628553107380867, + 0.06533652544021606, + 0.02735982835292816, + 0.013974174857139587, + 0.030963825061917305, + -0.006357788108289242, + -0.04690747708082199, + -0.019238822162151337, + -0.031143777072429657, + 0.08905380964279175, + -0.04999743774533272, + -0.07751689851284027, + -0.004042079672217369, + -0.0126475365832448, + -0.036793988198041916, + 0.014295595698058605, + 0.09494425356388092, + 0.054984431713819504, + 0.05611370876431465, + 0.06889542192220688, + -0.04360920563340187, + -0.04774143174290657, + -0.07455038279294968, + 0.021962253376841545, + -0.03423796594142914, + 0.036692384630441666, + 0.0035993983037769794, + 0.01942512020468712, + -0.015183904208242893, + -0.0017701879842206836, + 0.03992539644241333, + -0.029934370890259743, + 0.009685846976935863, + -0.010749099776148796, + 0.0287478007376194, + 0.00033037454704754055, + -0.01667906530201435, + -0.1433134526014328, + -0.05437370389699936, + 0.026659566909074783, + 0.09841188788414001, + 0.003479451173916459, + 0.00797467865049839, + -0.06765146553516388, + -0.013152343221008778, + -0.023430991917848587, + 0.11391285061836243, + -0.027509134262800217, + 0.0817795991897583, + -0.010899675078690052, + 0.0443287156522274, + 0.04611840099096298 + ], + "barricade-bold||construction,safety,gate": [ + -0.023625925183296204, + 0.05194208025932312, + -0.04382740333676338, + 0.017116252332925797, + 0.0835329070687294, + -0.005333940032869577, + 0.1065828949213028, + -0.004067359957844019, + -0.007510431110858917, + 0.02346092462539673, + 0.0029412403237074614, + -0.04127270728349686, + 0.04754931107163429, + -0.043851565569639206, + -0.04985284432768822, + 0.028044486418366432, + 0.017422663047909737, + -0.004764717537909746, + -0.014917831867933273, + -0.01600535959005356, + -0.0035474144387990236, + 0.042934600263834, + 0.04226568713784218, + 0.06929052621126175, + -0.09612731635570526, + 0.0503348782658577, + -0.016711438074707985, + 0.033188287168741226, + 0.07007116079330444, + -0.09750379621982574, + -0.08681651204824448, + -0.06541458517313004, + 0.06289298832416534, + -0.0060877082869410515, + 0.015040080063045025, + 0.01867719553411007, + 0.03130337968468666, + 0.003297366900369525, + 0.059080541133880615, + 0.02307475358247757, + -0.032516006380319595, + -0.018255233764648438, + 0.024555187672376633, + 0.007714595180004835, + -0.004513051360845566, + 0.06209905445575714, + -0.059418708086013794, + -0.040033578872680664, + 0.05278289318084717, + -0.08038903772830963, + 0.03907426446676254, + -0.005522335413843393, + -0.004293221049010754, + -0.0017794357845559716, + 0.03838455304503441, + -0.016470303758978844, + -0.06960130482912064, + -0.09530681371688843, + 0.057287827134132385, + 0.041624993085861206, + 0.04662004113197327, + 0.04882441833615303, + 0.01019236445426941, + 0.039796438068151474, + 0.06538869440555573, + -0.006844817195087671, + -0.07892078906297684, + 0.05236733332276344, + 0.03536791354417801, + 0.10573354363441467, + 0.05117885023355484, + -0.021205207332968712, + -0.040674980729818344, + -0.02564772218465805, + 0.04641992598772049, + 0.007889200001955032, + 0.03141402453184128, + 0.06618749350309372, + 0.02230532467365265, + -0.12464995682239532, + -0.08891312777996063, + -0.026989096775650978, + -0.045741938054561615, + -0.0012221945216879249, + -0.01113526988774538, + 0.041220393031835556, + -0.02678597718477249, + -0.023063480854034424, + 0.06625381112098694, + -0.011915501207113266, + -0.015970533713698387, + -0.07066570222377777, + -0.029803989455103874, + 0.07057163119316101, + -0.003611750202253461, + -0.03833918273448944, + 0.008253791369497776, + -0.017269257456064224, + -0.054320842027664185, + 0.06332773715257645, + 0.029880216345191002, + 0.05441656708717346, + -0.009016621857881546, + 0.006555302068591118, + -0.0322922058403492, + -0.04107008874416351, + 0.03175051137804985, + -0.006068520713597536, + 0.005575048737227917, + -0.01788957789540291, + 0.05558989942073822, + -0.0697060152888298, + -0.03330952674150467, + -0.06997547298669815, + -0.08138702809810638, + -0.019960826262831688, + -0.09203823655843735, + -0.03652159869670868, + 0.0724051222205162, + 0.03174635395407677, + 0.03142749145627022, + 0.005261688493192196, + -0.03526453673839569, + -0.07338710874319077, + -0.009284445084631443, + -0.06973037868738174, + -0.006583069916814566, + -2.739613378840162e-33, + 0.04371507093310356, + -0.017203882336616516, + -0.06679008156061172, + 0.057840753346681595, + 0.062353603541851044, + -0.022325584664940834, + -0.07136156409978867, + -0.030674660578370094, + -0.03469192981719971, + 0.13431920111179352, + 0.021668674424290657, + -0.06293768435716629, + -0.06264994293451309, + -0.014738036319613457, + 0.09255579113960266, + -0.11292331665754318, + -0.04032381623983383, + -0.07782334834337234, + -0.14197705686092377, + -0.028007088229060173, + -0.03035212866961956, + -0.026157721877098083, + -0.031343571841716766, + 0.0247701033949852, + 0.05224021524190903, + -0.02158169262111187, + -0.0052844807505607605, + -0.004225591663271189, + -0.06424356251955032, + 0.07652560621500015, + -0.08164319396018982, + 0.04656216502189636, + 0.015305369161069393, + 0.05224621295928955, + -0.0037694498896598816, + 0.05350883677601814, + -0.07069634646177292, + -0.08864996582269669, + 0.004679304081946611, + -0.023602362722158432, + -0.06760167330503464, + -0.0742746964097023, + 0.013289179652929306, + 0.004479920957237482, + 0.029219670221209526, + 0.05855722725391388, + 0.036353494971990585, + -0.07334314286708832, + -0.021254587918519974, + -0.023045869544148445, + -0.018466409295797348, + 0.06649522483348846, + 0.03700023517012596, + -0.010027754120528698, + -0.0076149082742631435, + -0.0024092483799904585, + 0.005798466503620148, + 0.1074552908539772, + 0.027884669601917267, + 0.05429738014936447, + -0.026058416813611984, + 0.07466232776641846, + 0.042440734803676605, + 0.029460225254297256, + -0.03533544763922691, + 0.04785989224910736, + -0.041751738637685776, + 0.030113477259874344, + 0.11148721724748611, + -0.06989780813455582, + -0.0647612065076828, + 0.021854465827345848, + -0.021623440086841583, + 0.08247954398393631, + -0.06487920135259628, + 0.03804832696914673, + -0.004694116767495871, + 0.057093098759651184, + 0.06848197430372238, + -0.08022668212652206, + -0.07706800103187561, + 0.023308930918574333, + -0.02980770170688629, + 0.07003636658191681, + 0.04025134816765785, + 0.05715054273605347, + 0.020863978192210197, + -0.025982610881328583, + -0.054197825491428375, + 0.0711560994386673, + -0.07097674906253815, + 0.008893690072000027, + 0.10294366627931595, + -0.04166111350059509, + -0.039823979139328, + 2.2426322293165016e-34, + 0.0016704529989510775, + 0.03462697193026543, + 0.014529191888868809, + -0.1384240686893463, + -0.10520225763320923, + -0.024223661050200462, + -0.05937252566218376, + -0.010372324846684933, + -0.020963497459888458, + 0.06568331271409988, + -0.029246730729937553, + 0.051116880029439926, + -0.006536779925227165, + -0.04990055784583092, + -0.06590614467859268, + -0.03198444843292236, + 0.052998293191194534, + -0.04481209069490433, + -0.08139215409755707, + 0.004692673683166504, + 0.005683182273060083, + 0.007158700376749039, + -0.06837868690490723, + 0.005017183721065521, + -0.024561746045947075, + 0.05502283200621605, + -0.0015817017992958426, + 0.02415420487523079, + 0.003739047795534134, + -0.013745463453233242, + -0.07232408970594406, + -0.00020788067195098847, + -0.05027870088815689, + 0.10056063532829285, + -0.03204794228076935, + -0.10035338252782822, + 0.0958499014377594, + -0.011406278237700462, + -0.014462611638009548, + -0.1286342591047287, + 0.05793655663728714, + 0.06967734545469284, + 0.03611321747303009, + 0.017675794661045074, + -0.030976949259638786, + 0.023515408858656883, + 0.017421850934624672, + -0.05194295197725296, + -0.03170415759086609, + 0.017164412885904312, + -0.03868388757109642, + 0.007816288620233536, + 0.004003209061920643, + 0.06674336642026901, + -0.03117356076836586, + -0.01318893302232027, + -0.02250034175813198, + -0.014962194487452507, + -0.002899582963436842, + 0.021952493116259575, + 0.013715758919715881, + 0.016764430329203606, + 0.016380947083234787, + 0.022478530183434486, + 0.052817150950431824, + -0.03738699480891228, + -0.060729388147592545, + 0.027504483237862587, + 0.035107869654893875, + -0.01981678605079651, + 0.05254919081926346, + 0.020884953439235687, + -0.010515804402530193, + 0.0014445784036070108, + -0.058561477810144424, + -0.02149917371571064, + 0.06602755934000015, + -0.029856331646442413, + -0.003933245781809092, + 0.07929332554340363, + 0.04097441956400871, + -0.015263302251696587, + -0.07369466871023178, + 0.09355580806732178, + 0.03806021437048912, + 0.01022604014724493, + 0.015029655769467354, + 0.022603392601013184, + 0.007040193770080805, + -0.029286513105034828, + -0.05177396908402443, + 0.028506994247436523, + -0.0324850007891655, + -0.008863058872520924, + -0.020709963515400887, + -1.8190540629348106e-08, + -0.0033971057273447514, + -0.03053622506558895, + -0.09824144840240479, + -0.08419261872768402, + 0.032213058322668076, + -0.01938299834728241, + -0.08919166773557663, + -0.12616054713726044, + -0.08526505529880524, + -0.08637194335460663, + 0.05116228386759758, + 0.05342903733253479, + -0.06611520051956177, + 0.009343837387859821, + -0.06363420188426971, + 0.04535382613539696, + -0.07029411941766739, + 0.06498203426599503, + -0.03518255427479744, + 0.00014802065561525524, + 0.0216845590621233, + -0.002130557782948017, + 0.0378987081348896, + 0.05210075527429581, + -0.030705418437719345, + 0.0592019222676754, + -0.046737197786569595, + -0.041575461626052856, + 0.033489663153886795, + 0.03963811323046684, + 0.04561561346054077, + 0.07861202210187912, + 0.028208062052726746, + 0.029111485928297043, + 0.0381823405623436, + 0.07641151547431946, + -0.03009679913520813, + 0.002069279318675399, + 0.024087293073534966, + 0.09130311757326126, + 0.04274306818842888, + -0.003971776459366083, + 0.06732393056154251, + 0.0266653411090374, + -0.03564168140292168, + 0.05728697404265404, + -0.07573996484279633, + 0.06399472802877426, + -0.047047778964042664, + -0.05095386132597923, + 0.009961049072444439, + -0.044681768864393234, + 0.12218263000249863, + 0.12144947052001953, + -0.00188712147064507, + -0.016892582178115845, + 0.03177743777632713, + 0.028954843059182167, + -0.026703953742980957, + 0.03875510022044182, + 0.06984972953796387, + -0.02849377505481243, + 0.0911073163151741, + 0.05171964317560196 + ], + "baseball-bold||sports,mlb": [ + 0.01329004019498825, + 0.0315508171916008, + -0.0269234087318182, + -0.01603367179632187, + 0.05698109045624733, + 0.049160998314619064, + 0.0017442833632230759, + 0.021049221977591515, + 0.01944224163889885, + 0.05086595192551613, + -0.06809230148792267, + -0.01682155579328537, + -0.039241231977939606, + -0.041143931448459625, + -0.012139150872826576, + 0.013259206898510456, + 0.029517505317926407, + 0.018851598724722862, + 0.02515375427901745, + 0.03562100976705551, + 0.024655640125274658, + 0.07540729641914368, + -0.02543705143034458, + 0.06170778349041939, + 0.08753897249698639, + -0.0021201763302087784, + 0.014916328713297844, + 0.052974529564380646, + -0.0843004658818245, + -0.05633428692817688, + -0.07233450561761856, + -0.015209117904305458, + 0.1403358429670334, + 0.0913369208574295, + 0.006747609004378319, + -0.04100656136870384, + -0.03438876196742058, + -0.016176782548427582, + 0.059138014912605286, + 0.08161251246929169, + 0.04087105393409729, + -0.05378119647502899, + -0.017797701060771942, + 0.05784399434924126, + -0.1258610337972641, + 0.0011221803724765778, + -0.042588409036397934, + 0.02179078944027424, + -0.021470606327056885, + 0.04784182831645012, + 0.021496551111340523, + -0.04577144607901573, + -0.035819265991449356, + 0.044149864464998245, + 0.09274721145629883, + 0.06458702683448792, + -0.0649602860212326, + 0.062420595437288284, + -0.01488717831671238, + 0.03406710550189018, + 0.04841362684965134, + -0.0015736802015453577, + -0.0004922058433294296, + 0.04898654669523239, + -0.002252059755846858, + -0.07052766531705856, + -0.04000086709856987, + 0.030909158289432526, + -0.0535922534763813, + -0.030076026916503906, + 0.06220557540655136, + 0.03083186224102974, + -0.02943248674273491, + -0.021762290969491005, + -0.01922469213604927, + 0.0700760930776596, + -0.035198356956243515, + 0.01720523275434971, + -0.04080725833773613, + -0.07532519847154617, + -0.04346092417836189, + -0.12894362211227417, + -0.07480356097221375, + -0.026561832055449486, + 0.03411286696791649, + -0.03667399287223816, + -0.06268146634101868, + -0.025799045339226723, + -0.02891278825700283, + 0.010453552938997746, + -0.11778488010168076, + -0.021374711766839027, + 0.04156670346856117, + 0.015159906819462776, + -0.0753541961312294, + 0.08353777974843979, + 0.010925384238362312, + -0.060548894107341766, + -0.027906090021133423, + 0.10576065629720688, + 0.0861918106675148, + 0.023405153304338455, + 0.012519069947302341, + -0.009005634114146233, + 0.0639171153306961, + 0.03300407528877258, + -0.03213079646229744, + -0.01475454680621624, + -0.015378927811980247, + 0.01543400902301073, + -0.008041243068873882, + -0.016646044328808784, + -0.03696082532405853, + 0.030907168984413147, + -0.05445212870836258, + -0.017543397843837738, + -0.027005169540643692, + -0.0016046402743086219, + 0.08861999213695526, + 0.010668819770216942, + -0.008242323994636536, + -0.015660148113965988, + -0.013630704022943974, + 0.013433731161057949, + -0.027272051200270653, + 0.025272076949477196, + 0.06475630402565002, + -3.834832853102811e-33, + 0.01736416481435299, + -0.029817350208759308, + -0.05242370069026947, + 0.11401587724685669, + -0.07136617600917816, + 0.038829222321510315, + 0.007963773794472218, + -0.039854153990745544, + -0.029423967003822327, + -0.020987780764698982, + 0.0312960259616375, + 0.12337719649076462, + -0.024371057748794556, + -0.017069075256586075, + 0.04970955103635788, + -0.012227256782352924, + -0.07508506625890732, + -0.05181027576327324, + -0.02382248267531395, + 0.03620314598083496, + -0.006807676050812006, + 0.022183511406183243, + -0.03582197055220604, + -0.03821145370602608, + -0.08196140825748444, + -0.04038204997777939, + 0.008745204657316208, + -0.16009260714054108, + -0.025249144062399864, + 0.03384656831622124, + 0.03965599834918976, + 0.03156977891921997, + 0.031518884003162384, + -0.027059193700551987, + 0.04444114491343498, + -0.014424344524741173, + 0.03827819228172302, + -0.014077549800276756, + -0.030463214963674545, + -0.04279232397675514, + -0.07499846816062927, + -0.0665561854839325, + -0.07963929325342178, + -0.030650535598397255, + 0.0038723614998161793, + 0.1510176956653595, + -0.03951464220881462, + -0.018778175115585327, + 0.006893024779856205, + 0.024399546906352043, + 0.015108692459762096, + -0.08194072544574738, + 0.04210083559155464, + -0.02805601991713047, + 0.06751973927021027, + -0.031140198931097984, + -0.02857447788119316, + 0.05019783601164818, + -0.006156108807772398, + -0.015136286616325378, + -0.03728660196065903, + 0.03697030246257782, + 0.04562218487262726, + -0.022779688239097595, + -0.041327495127916336, + 0.07850990444421768, + 0.0030149980448186398, + -0.006126109976321459, + 0.03086468018591404, + 0.01063594687730074, + 0.03495347872376442, + 0.027945425361394882, + -0.017248325049877167, + 0.010818688198924065, + -0.018733637407422066, + 0.08054050803184509, + 0.05179440975189209, + 0.02630607783794403, + -0.021160895004868507, + -0.06692299991846085, + -0.10300606489181519, + 0.02381005510687828, + -0.04503544792532921, + 0.026449358090758324, + 0.01619982160627842, + 0.03179795667529106, + 0.00440974673256278, + -0.03943059593439102, + -0.0007934531895443797, + 0.07694967836141586, + -0.05371474847197533, + -0.006609955802559853, + -0.010821636766195297, + -0.03681360185146332, + -0.06048814207315445, + 3.8356254393524024e-34, + 0.042376041412353516, + -0.04768828675150871, + -0.022146880626678467, + -0.11033491790294647, + 0.049548663198947906, + 1.2831654203182552e-05, + -0.06752050668001175, + 0.06678542494773865, + -0.00899339746683836, + -0.005843431688845158, + 0.0021004604641348124, + -0.0705595463514328, + -0.08977964520454407, + 0.007852763868868351, + 0.00999927893280983, + -0.0715494155883789, + 0.03156067430973053, + 0.04800393432378769, + -0.09669622778892517, + 0.05439949035644531, + 0.013641547411680222, + -0.050291310995817184, + -0.09596024453639984, + 0.09932903200387955, + -0.018162939697504044, + 0.04272760823369026, + -0.019159816205501556, + 0.007340399082750082, + -0.10253027081489563, + -0.023405302315950394, + 0.008527039550244808, + 0.02913876250386238, + 0.04614701867103577, + 0.06658005714416504, + -0.08749332278966904, + 0.14306873083114624, + 0.00026535545475780964, + -0.01753734052181244, + 0.05380077287554741, + -0.08625012636184692, + 0.010028896853327751, + 0.03776450455188751, + -0.020942529663443565, + 0.02213241159915924, + 0.02074860781431198, + 0.007727495394647121, + -0.04747516289353371, + 0.015537727624177933, + -0.040092583745718, + 0.07634171098470688, + -0.06570029258728027, + -0.02754935808479786, + -0.047080181539058685, + 0.03716033324599266, + -0.039202138781547546, + -0.004251061473041773, + -0.030859364196658134, + -0.07103784382343292, + -0.016014480963349342, + -0.04434063285589218, + -0.02738415077328682, + 0.07754004746675491, + -0.12611696124076843, + 0.07431679219007492, + -0.028605258092284203, + 0.0011920089600607753, + 0.04467599093914032, + -0.06932342797517776, + -0.02946666069328785, + 0.02705277130007744, + -0.04712355509400368, + 0.008274154737591743, + -0.04822373762726784, + 0.0452689602971077, + 0.04611706733703613, + 0.0098796421661973, + 0.012944325804710388, + 0.10056060552597046, + -0.011334897950291634, + 0.07602951675653458, + -0.010175837203860283, + 0.06792426109313965, + -0.05050943046808243, + 0.08431774377822876, + 0.05431220307946205, + 0.05937746539711952, + 0.006852338090538979, + 0.015053200535476208, + -0.03011295571923256, + -0.0022112755104899406, + -0.029149752110242844, + 0.05688032880425453, + -0.028225760906934738, + -0.058951638638973236, + -0.01075187511742115, + -1.6647154765792038e-08, + 0.021304305642843246, + 0.03778921440243721, + -0.07162150740623474, + 0.024557385593652725, + 0.0408981591463089, + 0.005540627986192703, + -0.046928923577070236, + -0.02221589721739292, + 0.038765110075473785, + -0.029558829963207245, + -0.0021124400664120913, + -0.010322709567844868, + -0.05635380744934082, + 0.009193742647767067, + 0.0781368687748909, + 0.015153755433857441, + -0.09609147906303406, + 0.057161130011081696, + -0.04179505631327629, + -0.008966255001723766, + -0.034442100673913956, + 0.017339253798127174, + 0.011017372831702232, + -0.011605698615312576, + 0.07216737419366837, + 0.026412226259708405, + -0.08638827502727509, + -0.050762277096509933, + 0.042062364518642426, + 0.02591249719262123, + 0.1102103665471077, + 0.11014329642057419, + -0.027348803356289864, + 0.009523305110633373, + -0.03269176557660103, + 0.004947873763740063, + 0.07581070810556412, + -0.059289801865816116, + -0.010450179688632488, + 0.029705863445997238, + -0.05677694082260132, + -0.006244088988751173, + -0.05335246026515961, + -0.028995761647820473, + -0.00969724077731371, + -0.07214266061782837, + 0.09765134751796722, + -0.05211324989795685, + -0.08500027656555176, + -0.08153776079416275, + -0.08218702673912048, + -0.022293157875537872, + 0.057266298681497574, + 0.01862051896750927, + -0.04157363995909691, + 0.017192907631397247, + -0.016112837940454483, + 0.04629907011985779, + -0.055317189544439316, + -0.03662616014480591, + 0.1520884782075882, + -0.021794745698571205, + 0.04591730237007141, + 0.11845388263463974 + ], + "baseball-cap-bold||clothes,clothing,sports,hat": [ + 0.013616031967103481, + 0.08884653449058533, + -0.0012074774131178856, + -0.016398226842284203, + 0.13716308772563934, + 0.037248142063617706, + 0.10348263382911682, + 0.03914446011185646, + -0.007690265774726868, + 0.04235586151480675, + -0.0060422904789447784, + -0.07651104778051376, + -0.009247498586773872, + -0.034304745495319366, + 0.01030818186700344, + -0.009372647851705551, + -0.01363267283886671, + 0.061483122408390045, + 0.037612225860357285, + -0.0118989497423172, + -0.021315928548574448, + 0.05918058753013611, + 0.008512782864272594, + 0.04763055965304375, + 0.020294111222028732, + 0.026618676260113716, + 0.008845865726470947, + 0.031242407858371735, + -0.10338933020830154, + -0.06721112877130508, + -0.04632832854986191, + -0.05237859487533569, + 0.1214965283870697, + 0.05917183682322502, + -0.026702100411057472, + 0.005566670559346676, + 0.0234816987067461, + 0.02257038839161396, + 0.05947309732437134, + 0.1061244085431099, + -0.019860045984387398, + -0.049893975257873535, + -0.09209694713354111, + 0.06357088685035706, + -0.04566947743296623, + 0.03185030445456505, + -0.018232785165309906, + 0.031257402151823044, + -0.0152712631970644, + 0.07203305512666702, + 0.01360277459025383, + -0.041836004704236984, + -0.029849987477064133, + 0.0005886548897251487, + 0.07137737423181534, + 0.07212531566619873, + -0.05245817080140114, + -0.011727331206202507, + 0.014210165478289127, + 0.04634865000844002, + -0.013707696460187435, + -0.028985049575567245, + -0.025150129571557045, + 0.059352241456508636, + 0.04208517447113991, + -0.06067090481519699, + -0.03024102747440338, + 0.03941815719008446, + -0.07770536094903946, + -0.003755007404834032, + 0.04455933719873428, + 0.02489854209125042, + -0.034409601241350174, + -0.013281370513141155, + -0.06789381802082062, + 0.04535406455397606, + 0.003391674719750881, + -0.02246997505426407, + -0.012947491370141506, + 0.015771929174661636, + -0.15454795956611633, + -0.12067579478025436, + -0.01255826372653246, + -0.002375217154622078, + -0.022141536697745323, + 0.026803944259881973, + -0.08196762204170227, + -0.061495840549468994, + -0.08264251053333282, + -0.019551407545804977, + -0.13544538617134094, + -0.023093514144420624, + 0.05306459963321686, + -0.007686855271458626, + -0.03153185173869133, + 0.08176369965076447, + 0.04617011547088623, + -0.00039216227014549077, + 0.012742849066853523, + 0.09628307074308395, + 0.06384183466434479, + -0.003608020255342126, + 0.04016343131661415, + -0.04859619960188866, + -0.004015791695564985, + -0.03422464802861214, + -0.023820020258426666, + -0.03790365532040596, + -0.00044217598042450845, + -0.005301203113049269, + -0.020690126344561577, + -0.03508409112691879, + -0.10069055110216141, + -0.0016406510258093476, + -0.023282740265130997, + -0.0433063879609108, + 0.004937510937452316, + 0.013408058322966099, + 0.07043077796697617, + -0.0031041919719427824, + 0.012418040074408054, + 0.003979797940701246, + 0.00602143257856369, + -0.050869107246398926, + -0.11642187833786011, + 0.01605040766298771, + 0.0688784271478653, + -3.605041339932316e-33, + -0.005648707505315542, + 0.02430175617337227, + -0.028700517490506172, + 0.13366714119911194, + -0.047788187861442566, + 0.03443676605820656, + 0.007862892933189869, + -0.02468275837600231, + -0.090903140604496, + 0.04769466817378998, + 0.05778530612587929, + 0.10193392634391785, + -0.05798212066292763, + 0.03102434240281582, + 0.09849697351455688, + -0.006407993845641613, + -0.04113144800066948, + -0.06631547957658768, + -0.02864570915699005, + 0.0005711398553103209, + -0.04473068565130234, + 0.01362044457346201, + -0.0018547304207459092, + 0.017402907833456993, + -0.037515684962272644, + -0.01328557264059782, + 0.017184866592288017, + -0.10770706832408905, + -0.004047553986310959, + 0.021422188729047775, + 0.056870948523283005, + 0.07100888341665268, + 0.043986111879348755, + -0.021546896547079086, + 0.0007733029779046774, + -0.020875563845038414, + -0.06232907995581627, + -0.020053070038557053, + 0.016106445342302322, + -0.005651076789945364, + -0.007003331556916237, + -0.04118596017360687, + -0.011857777833938599, + 0.019227825105190277, + -0.038168732076883316, + 0.10589775443077087, + 0.017942070960998535, + 0.020385226234793663, + 0.013437543995678425, + 0.01376267895102501, + 0.02289128676056862, + -0.06083177775144577, + -0.000628998561296612, + -0.07196491956710815, + 0.0007920763455331326, + -0.05930599942803383, + -0.0469142347574234, + 0.06589015573263168, + -0.0006286150892265141, + -0.015578929334878922, + 0.052493348717689514, + 0.0341918058693409, + 0.05990789458155632, + -0.017711782827973366, + 0.007543136831372976, + 0.06482986360788345, + 0.00865400955080986, + -0.011615069583058357, + 0.027943896129727364, + -0.00901264138519764, + 0.04067428037524223, + 0.09310449659824371, + 0.011814181692898273, + 0.06868746876716614, + -0.009381983429193497, + 0.056210100650787354, + 0.06858359277248383, + 0.0650787428021431, + 0.022947099059820175, + -0.0852551981806755, + -0.08066542446613312, + 0.04467954486608505, + -0.019175805151462555, + 0.0504685677587986, + 0.02226274646818638, + -0.032191913574934006, + 0.012783885933458805, + -0.03449118509888649, + -0.024975184351205826, + 0.044634297490119934, + 0.018983840942382812, + 0.01817629672586918, + -0.06969930231571198, + -0.07729114592075348, + -0.10666104406118393, + 3.6316133438149057e-34, + 0.11687802523374557, + -0.038615547120571136, + 0.0014309330144897103, + -0.047777771949768066, + 0.08476803451776505, + 0.01885456033051014, + 0.006320239510387182, + 0.02176298014819622, + -0.016485076397657394, + -0.0038959889207035303, + 0.015061119571328163, + -0.06811821460723877, + -0.09875381737947464, + -0.012706192210316658, + 0.010316813364624977, + 0.005869346670806408, + 0.02844502218067646, + 0.01988803967833519, + -0.030553510412573814, + -0.02469209022819996, + 0.005881909746676683, + -0.0551031194627285, + -0.02762782946228981, + 0.03150257468223572, + -0.07853730767965317, + -0.0114505086094141, + -0.02033180184662342, + -0.02702035941183567, + -0.1414768546819687, + 0.00439918227493763, + -0.007737905718386173, + 0.02577286772429943, + 0.03885689377784729, + 0.11879932880401611, + -0.09525129199028015, + 0.05606742575764656, + -0.003931829240173101, + -0.044116005301475525, + 0.07590129971504211, + 0.0008437139331363142, + -0.014683661982417107, + -0.047920506447553635, + 0.042741622775793076, + 0.05216570198535919, + 0.0260701272636652, + -0.07847023010253906, + -0.1113445833325386, + -0.04411645233631134, + -0.06457427889108658, + 0.08895755559206009, + -0.03338632732629776, + -0.0008872346370480955, + -0.051854249089956284, + 0.0018398026004433632, + -0.07265687733888626, + 0.007614389527589083, + -0.08440162241458893, + -0.036200448870658875, + 0.004432172514498234, + 0.0017831097356975079, + -0.00660516694188118, + 0.03517486900091171, + -0.0911625549197197, + 0.08419113606214523, + -0.007010572589933872, + -0.04944288358092308, + -0.011792301200330257, + -0.07954920828342438, + -0.07073963433504105, + -0.0042901854030787945, + 0.0320255309343338, + -0.09539136290550232, + 0.01807095669209957, + 0.04339555650949478, + -0.05114266648888588, + -0.02799171209335327, + 0.039469052106142044, + 0.10992883890867233, + 0.010646495968103409, + 0.07541991770267487, + -0.06485117971897125, + 0.022311393171548843, + -0.08735724538564682, + 0.104422926902771, + 0.09296926856040955, + 0.048592548817396164, + -0.04441269114613533, + 0.016224801540374756, + -0.008918949402868748, + -0.006966497749090195, + -0.020870331674814224, + 0.054305873811244965, + -0.01816485822200775, + 0.04286841303110123, + -0.01913377456367016, + -1.7815809272292427e-08, + 0.02619461715221405, + 0.07210181653499603, + -0.01731359213590622, + 0.03302876278758049, + 0.05301464721560478, + 0.06843900680541992, + -0.05470986291766167, + -0.08544784039258957, + 0.010265759192407131, + -0.05271616950631142, + 0.008602173067629337, + 0.03556147962808609, + -0.045222099870443344, + 0.012230061925947666, + 0.00023714338021818548, + 0.02640373632311821, + -0.1027466431260109, + 0.08100660890340805, + -0.02942565828561783, + -0.01375085674226284, + -0.02986263670027256, + 0.033959437161684036, + 0.03914755582809448, + 0.013075902126729488, + 0.0376749187707901, + 0.008200358599424362, + -0.06218624487519264, + 0.04376618191599846, + 0.015316380187869072, + 0.09771449863910675, + 0.07065919786691666, + 0.08960001170635223, + -0.05851082503795624, + -0.05507957935333252, + -0.027219997718930244, + -0.04643097519874573, + 0.013158237561583519, + -0.11041493713855743, + -0.0020887793507426977, + 0.04440290480852127, + 0.02302681654691696, + -0.015208977274596691, + -0.06642714142799377, + 0.012479111552238464, + 0.03645673394203186, + -0.01321230735629797, + 0.05063513666391373, + 0.0010780708398669958, + -0.05839145928621292, + -0.022788017988204956, + -0.032027848064899445, + -0.04489794746041298, + 0.007087073754519224, + 0.06788770109415054, + -0.0814533680677414, + -0.029402324929833412, + 0.013191047124564648, + 0.08408550173044205, + -0.013470885343849659, + -0.011975754052400589, + 0.060167208313941956, + -0.07189670950174332, + -0.0024287858977913857, + 0.01901591569185257 + ], + "baseball-helmet-bold||*new*,sports,mlb": [ + 0.013525016605854034, + 0.0861375629901886, + -0.014446635730564594, + -0.06248966231942177, + 0.08438009768724442, + 0.0504976361989975, + 0.056241851300001144, + 0.008719882927834988, + 0.04344484582543373, + 0.07404135167598724, + -0.009836867451667786, + -0.04291839525103569, + -0.00513363117352128, + -0.012123119086027145, + 0.03138871490955353, + 0.011004294268786907, + 0.01889161579310894, + 0.05032617971301079, + 0.029284736141562462, + 0.003668210469186306, + -0.006261767819523811, + 0.08380833268165588, + -0.06544487178325653, + 0.03375495970249176, + 0.014675742015242577, + 0.0462305024266243, + -0.009914448484778404, + 0.015545627102255821, + -0.07721731066703796, + -0.0682029202580452, + -0.0714324340224266, + -0.03378235176205635, + 0.10694257915019989, + 0.0688839703798294, + -0.026286901906132698, + -0.030851170420646667, + -0.00035284613841213286, + 0.04678952321410179, + 0.04574533551931381, + 0.08478279411792755, + -0.016463322564959526, + -0.03975117951631546, + -0.07537010312080383, + 0.052380967885255814, + -0.06424462050199509, + 0.06875484436750412, + -0.022771313786506653, + 0.01674555242061615, + 0.006823549512773752, + 0.04247184842824936, + 0.03206147998571396, + -0.08010006695985794, + -0.03637528419494629, + 0.007116068620234728, + 0.11963578313589096, + 0.049655575305223465, + -0.09006217122077942, + 0.04498583823442459, + -0.013431617990136147, + 0.06466259807348251, + 0.015950944274663925, + -0.010245099663734436, + 0.027371957898139954, + 0.07623402774333954, + -0.04045343026518822, + -0.10199395567178726, + -0.04905756935477257, + -0.006014905869960785, + -0.05573530122637749, + 0.05142432823777199, + 0.049504853785037994, + 0.03691571205854416, + -0.004053774755448103, + -0.05175594612956047, + -0.04645058885216713, + -6.871148070786148e-05, + -0.007535671815276146, + 0.002160245319828391, + -0.026220854371786118, + -0.03236233443021774, + -0.061788320541381836, + -0.07476537674665451, + -0.06764126569032669, + -0.02393903210759163, + 0.05200646072626114, + 0.025915713980793953, + -0.1100885197520256, + -0.03617889806628227, + -0.09763219207525253, + 0.01902369037270546, + -0.10137512534856796, + -0.0420844629406929, + 0.05027494207024574, + 0.005902797915041447, + -0.027675267308950424, + 0.05938193202018738, + 0.009527190588414669, + -0.039229877293109894, + 0.00932434294372797, + 0.13351942598819733, + 0.038496483117341995, + -0.01260591484606266, + 0.01010515633970499, + -0.006520731840282679, + 0.044991690665483475, + 0.003023813245818019, + -0.06563977897167206, + -0.013450267724692822, + -0.0029235256370157003, + 0.05052703619003296, + 0.03404998406767845, + -0.03563245013356209, + -0.06674086302518845, + -0.0193097572773695, + -0.0730406865477562, + 0.01845191977918148, + -0.08329800516366959, + -0.006020950153470039, + 0.07996013015508652, + 0.06701719015836716, + 0.025530602782964706, + -0.021400634199380875, + -0.028231794014573097, + -0.0425906628370285, + -0.05857543647289276, + -0.0031183194369077682, + 0.025478003546595573, + -5.338518247176973e-33, + -0.005209822673350573, + 0.014783856458961964, + -0.016426388174295425, + 0.12525981664657593, + -0.04887830466032028, + 0.04063691571354866, + 0.016597846522927284, + -0.019844673573970795, + -0.02612643502652645, + 0.0025654155761003494, + 0.06006105616688728, + 0.10270410031080246, + -0.04984292387962341, + 0.022202404215931892, + 0.04507719725370407, + -0.03883454203605652, + -0.0747281089425087, + -0.03859296441078186, + -0.06013433262705803, + 0.009558734484016895, + -0.03416505455970764, + 0.04720187559723854, + -0.026775265112519264, + 0.027282219380140305, + -0.0867617130279541, + -0.00474051758646965, + 0.05400475859642029, + -0.17012841999530792, + -0.027831466868519783, + 0.040627945214509964, + -0.0025171104352921247, + 0.01025945320725441, + 0.035617053508758545, + -0.00277552823536098, + 0.024420326575636864, + 0.03654259443283081, + 0.02042255364358425, + -0.05324201285839081, + -0.050417542457580566, + -0.051959503442049026, + -0.06245604157447815, + -0.038125038146972656, + -0.10961668938398361, + 0.0063766720704734325, + -0.012496174313127995, + 0.0953281819820404, + -0.019135979935526848, + 0.015424949117004871, + 0.004117466975003481, + -0.022269146516919136, + 0.055266909301280975, + -0.05681322142481804, + 0.02158460021018982, + -0.05866996943950653, + -0.0003895850677508861, + -0.051857102662324905, + -0.059556711465120316, + 0.07245897501707077, + -0.005292186979204416, + -0.04410255327820778, + 0.003308030078187585, + 0.02960973232984543, + 0.029477132484316826, + 0.012556187808513641, + -0.0006371606141328812, + 0.057878654450178146, + 0.019233448430895805, + 0.008000059984624386, + 0.031205227598547935, + -0.013453960418701172, + 0.05820659548044205, + 0.07411401718854904, + -0.019070329144597054, + 0.03959745168685913, + -0.009864640422165394, + 0.07255207002162933, + 0.023933442309498787, + 0.03964361920952797, + -0.014132494106888771, + -0.04617050290107727, + -0.0883641466498375, + 0.09623578935861588, + -0.05040447413921356, + 0.029067719355225563, + 0.040978070348501205, + -0.019345179200172424, + 0.03131062537431717, + -0.02498524822294712, + -0.06330996751785278, + 0.02485596016049385, + -0.02539820224046707, + 0.009162292815744877, + -0.038614850491285324, + -0.027069520205259323, + -0.09298595786094666, + 6.586342602115279e-34, + 0.00440733227878809, + -0.0431048758327961, + 0.02441774494946003, + -0.05269555002450943, + 0.03468359634280205, + -0.0031826484482735395, + -0.004579297732561827, + 0.07337739318609238, + -0.03181590139865875, + -0.0023726532235741615, + 0.01166420429944992, + -0.07465079426765442, + -0.10045415163040161, + 0.009232132695615292, + 0.06148020550608635, + -0.06518520414829254, + -0.03899691626429558, + 0.06315361708402634, + -0.06267847120761871, + 0.08180256187915802, + 0.042165711522102356, + -0.03390718996524811, + -0.0851273164153099, + 0.06284989416599274, + -0.08488171547651291, + 0.01996942237019539, + -0.0464584045112133, + -0.0030231941491365433, + -0.09261267632246017, + 0.008639377541840076, + -0.03380407765507698, + 0.01260913535952568, + 0.013352750800549984, + 0.10747993737459183, + -0.05521807074546814, + 0.10195744037628174, + -0.009852650575339794, + -0.04695405066013336, + -0.004675714299082756, + -0.01680932752788067, + -0.01815638691186905, + -0.019139742478728294, + 0.06477051973342896, + 0.059861570596694946, + 0.023007851094007492, + -0.05454288423061371, + -0.07020281255245209, + -0.0005114920786581933, + -0.04051819071173668, + 0.0952305793762207, + -0.04347167909145355, + -0.009259683080017567, + -0.0764932930469513, + -0.013607524335384369, + -0.07146858423948288, + 0.03137587010860443, + -0.10867615789175034, + -0.049527741968631744, + 0.006840964779257774, + -0.02522997185587883, + 0.002235923195257783, + 0.028213243931531906, + -0.10626164078712463, + 0.12190242856740952, + -0.02535751275718212, + -0.0074684834107756615, + -0.004614392761141062, + -0.030164087191224098, + -0.07836941629648209, + 0.028034718707203865, + -0.026584632694721222, + 0.017908189445734024, + -0.05438870191574097, + -0.016567815095186234, + 0.006383390165865421, + -0.04552110284566879, + 0.03894105926156044, + 0.09797149151563644, + -0.0015540736494585872, + 0.09747166931629181, + -0.031813330948352814, + 0.04679393395781517, + -0.05277356132864952, + 0.09228786826133728, + 0.08090990781784058, + 0.027077559381723404, + -0.021607935428619385, + -0.0006533069536089897, + -0.036920323967933655, + 0.006820060312747955, + -0.030915183946490288, + 0.08690351992845535, + -0.04620232805609703, + 0.026741471141576767, + -0.03587400168180466, + -2.0002978828870255e-08, + 0.024102380499243736, + 0.05785650014877319, + -0.051752474159002304, + -0.013843684457242489, + 0.04423489421606064, + -0.006729836110025644, + -0.09371813386678696, + -0.07023424655199051, + -0.007862451486289501, + -0.06269320845603943, + 0.015572971664369106, + -0.009559242986142635, + -0.042997054755687714, + -0.012632440775632858, + 0.04803010821342468, + 0.0378623828291893, + -0.08833517134189606, + 0.07799819856882095, + -0.04108398035168648, + -0.04903807118535042, + -0.05039750784635544, + 0.05482824146747589, + 0.03278929367661476, + 0.010070046409964561, + 0.03554277867078781, + 0.0020309274550527334, + -0.08026590198278427, + -0.04895540326833725, + 0.02916187047958374, + 0.0740504115819931, + 0.06822279095649719, + 0.12257202714681625, + -0.06846914440393448, + -0.028095949441194534, + -0.030601924285292625, + -0.04416633024811745, + 0.008462119847536087, + -0.043158888816833496, + 0.02050447091460228, + 0.03077753260731697, + -0.017639057710766792, + 0.0016786622582003474, + -0.022260481491684914, + 0.017459062859416008, + 0.005282314494252205, + -0.03288635239005089, + 0.08000700920820236, + -0.03497489169239998, + -0.11426523327827454, + -0.09140893071889877, + -0.01903230883181095, + -0.03240422159433365, + 0.016345785930752754, + 0.033938560634851456, + -0.051497697830200195, + 0.0535028912127018, + 0.024696581065654755, + 0.04250921308994293, + -0.036085519939661026, + -0.037508007138967514, + 0.06529221683740616, + -0.005603260360658169, + 0.08434227108955383, + 0.09462255984544754 + ], + "basket-bold||ecommerce,market,cart,buying,shopping,groceries,checkout,places,locations": [ + 0.08138833194971085, + -0.010628481395542622, + -0.001488188747316599, + 0.047593191266059875, + 0.03372678533196449, + 0.013901639729738235, + 0.12483412772417068, + -0.04772593453526497, + 0.0036469530314207077, + -0.09940449893474579, + 0.09997217357158661, + 0.0200957041233778, + 0.01520110946148634, + -0.0507226400077343, + 0.013176092877984047, + -0.0034383947495371103, + 0.07095599174499512, + 0.05470946058630943, + -0.0290532186627388, + -0.06177327781915665, + 0.009406802244484425, + -0.014794526621699333, + -0.011316118761897087, + 0.055450763553380966, + -0.001086898148059845, + 0.012821367010474205, + -0.018207043409347534, + -0.006725747603923082, + -0.05445573851466179, + -0.08862344920635223, + -0.04332123324275017, + 0.02936962991952896, + 0.08599387109279633, + 0.051715053617954254, + 0.05769480764865875, + -0.05985990911722183, + 0.03242432698607445, + -0.016555674374103546, + 0.057134948670864105, + -0.0399993397295475, + 0.014462856575846672, + -0.06685921549797058, + -0.08916953206062317, + 0.013559508137404919, + -1.989877455343958e-05, + -0.027217814698815346, + -0.008295956999063492, + 0.0015871793730184436, + 0.04236356168985367, + 0.059320129454135895, + -0.040289897471666336, + -0.0034910005051642656, + -0.06622419506311417, + -0.015063253231346607, + -0.02582493983209133, + 0.0404936708509922, + -0.025366051122546196, + -0.02752572111785412, + 0.11335355043411255, + -0.011287390254437923, + 0.05900079011917114, + -0.04355804994702339, + 0.0612422451376915, + 0.050051260739564896, + 0.07043791562318802, + -0.028494589030742645, + -0.08032044023275375, + 0.04350416734814644, + -0.09043065458536148, + -0.04703611135482788, + 0.047321420162916183, + -0.005026510916650295, + -0.05975355580449104, + -0.009502308443188667, + -0.015502922236919403, + -0.014657986350357533, + 0.051809072494506836, + -0.046481091529130936, + -0.048856254667043686, + 0.0528300404548645, + -0.08734600991010666, + -0.029548680409789085, + -0.03443035110831261, + 0.014355014078319073, + -0.05537249520421028, + -0.00944539438933134, + -0.03582434728741646, + -0.10203931480646133, + 0.01585337519645691, + -0.05755143240094185, + -0.10162343084812164, + -0.06414124369621277, + -0.004192219581454992, + -0.01677604764699936, + -0.0946880578994751, + -0.021974386647343636, + 0.04944569244980812, + -0.04834279045462608, + 0.06254968047142029, + 0.06516623497009277, + 0.06887399405241013, + 0.047569867223501205, + 0.09203188866376877, + 0.002850827295333147, + -0.08213914185762405, + -0.049385081976652145, + -0.030789071694016457, + 0.03987479954957962, + 0.009858153760433197, + 0.015047366730868816, + -0.023808622732758522, + -0.09261398017406464, + 0.017252173274755478, + -0.04597344622015953, + -0.11026988178491592, + -0.028141239657998085, + -0.07453096657991409, + -0.032537586987018585, + 0.11411244422197342, + 0.11495044082403183, + 0.038417305797338486, + 0.033930107951164246, + -0.009791979566216469, + -0.04756886139512062, + -0.06927591562271118, + 0.03187774121761322, + 0.03337215259671211, + -1.4496525105416695e-33, + -0.047573015093803406, + 0.01156473346054554, + 0.03884998708963394, + 0.049679502844810486, + 0.06431747227907181, + -0.003039976814761758, + -0.020298494026064873, + -0.0767899826169014, + -0.07608141005039215, + 0.0579669214785099, + 0.05056775361299515, + 0.05373510345816612, + -0.03942645341157913, + 0.07013525813817978, + 0.021805714815855026, + -0.01640530861914158, + -0.044136982411146164, + 0.012655950151383877, + 0.013667399995028973, + -0.029710005968809128, + -0.04078526422381401, + 0.013596970587968826, + -0.04242199286818504, + -0.025210602208971977, + -0.032680802047252655, + -0.02675621025264263, + 0.011628756299614906, + 0.03196640685200691, + 0.07073593139648438, + 0.058585844933986664, + 0.10504961758852005, + 0.012383329682052135, + 0.028263302519917488, + 0.018150130286812782, + -0.05567232891917229, + -0.02092316560447216, + -0.06777866184711456, + -0.024500494822859764, + 0.03812431916594505, + -0.043861281126737595, + -0.10185110569000244, + -0.01434355229139328, + -0.021114252507686615, + 0.05828535929322243, + -0.00031209265580400825, + 0.09571670740842819, + -0.002679252065718174, + -0.028018061071634293, + 0.022817151620984077, + 0.04983488842844963, + -0.09920987486839294, + -0.01591389812529087, + -0.003080957103520632, + 0.013813856057822704, + -0.019041623920202255, + -0.07489116489887238, + -0.03176789730787277, + 0.003646505530923605, + -0.0035970984026789665, + -0.011482390575110912, + 0.04496898874640465, + 0.08240807056427002, + -0.033043600618839264, + -0.06214636564254761, + -0.021403323858976364, + 0.04047326371073723, + -0.025623787194490433, + 0.021015724167227745, + 0.06870325654745102, + 0.04932311922311783, + -0.015569302253425121, + 0.11316675692796707, + 0.09024835377931595, + 0.0964260920882225, + 0.029694698750972748, + 0.04765918478369713, + -0.026027821004390717, + 0.06961032003164291, + -0.01485136616975069, + -0.10397498309612274, + -0.09426560997962952, + -0.04114881530404091, + -0.029024789109826088, + 0.12371248006820679, + -0.05527292564511299, + 0.0304544847458601, + -0.05134815350174904, + -0.052573107182979584, + -0.03335687890648842, + 0.02355339191854, + -0.08137159049510956, + 0.10678413510322571, + -0.06094963848590851, + -0.00113316357601434, + -0.06609601527452469, + -1.7576917235296115e-33, + 0.04482356458902359, + -0.01137799583375454, + -0.029047414660453796, + 0.05224873125553131, + -0.017468078061938286, + 0.008663548156619072, + -0.015645496547222137, + -0.03602418303489685, + 0.035643454641103745, + -0.018305005505681038, + -0.09033869951963425, + 0.004771871957927942, + 0.0007221400737762451, + -0.001492048380896449, + 0.0023890899028629065, + 0.05067282170057297, + 0.09378966689109802, + 0.009124037809669971, + -0.021755307912826538, + 0.011060257442295551, + -0.060347508639097214, + -0.010449005290865898, + -0.08208400011062622, + 0.07184291630983353, + -0.0359824113547802, + 0.03848924860358238, + -0.03143157437443733, + -0.046462543308734894, + -0.031209083274006844, + 0.008449668996036053, + -0.05492418631911278, + -0.06641750037670135, + 0.1081945076584816, + 0.09091031551361084, + -0.09101244807243347, + -0.014628424309194088, + -0.014180767349898815, + -0.027959436178207397, + 0.08639803528785706, + 0.03112879954278469, + 0.06335638463497162, + -0.02316475100815296, + 0.011213164776563644, + 0.04431156814098358, + 0.011865455657243729, + -0.021035997197031975, + -0.02586321532726288, + -0.024498512968420982, + 0.09358878433704376, + -0.022918634116649628, + -0.01856634020805359, + 0.05852695554494858, + -0.10634482651948929, + -0.03337569162249565, + -0.025038717314600945, + 0.0930040255188942, + 0.05860721692442894, + 0.015660107135772705, + -0.05238372087478638, + -0.016165245324373245, + -0.034948837012052536, + 0.06959059834480286, + 0.06755149364471436, + 0.03405970335006714, + 0.03034611977636814, + -0.08943038433790207, + 0.04194727912545204, + -0.06905795633792877, + 0.030938005074858665, + -0.07819227874279022, + 0.03876073285937309, + 0.04311924800276756, + 0.008813350461423397, + -0.02077251672744751, + -0.03614405170083046, + 0.015194244682788849, + 0.08302398025989532, + 0.03647701442241669, + -0.014826859347522259, + 0.006342903710901737, + -0.05154360458254814, + -0.018056554719805717, + 0.00939138699322939, + 0.057268206030130386, + 0.05206456407904625, + -0.03186364471912384, + -0.08701126277446747, + -0.012010053731501102, + 0.01968180574476719, + -0.01915854588150978, + -0.07896637916564941, + 0.02563786692917347, + -0.07867870479822159, + -0.015128320083022118, + -0.05883786827325821, + -2.534308407575736e-08, + 0.03802190348505974, + -0.04079179838299751, + -0.02836158499121666, + 0.053728215396404266, + 0.05539819225668907, + -0.027151471003890038, + 0.039270393550395966, + 0.04417607560753822, + -0.07262006402015686, + 0.025019608438014984, + 0.03770419955253601, + 0.002407464198768139, + -0.13414305448532104, + -0.017712634056806564, + 0.044881198555231094, + 0.02973777987062931, + 0.03609701618552208, + 0.022313933819532394, + -0.004022705834358931, + -0.008827702142298222, + -0.04965557903051376, + 0.045484066009521484, + 0.028770292177796364, + -0.00828804261982441, + -0.05440276488661766, + 0.00902055948972702, + -0.014201829209923744, + 0.001189377042464912, + 0.05411577597260475, + -0.04206899181008339, + 0.045470673590898514, + 0.051533281803131104, + -0.031001437455415726, + -0.006497716531157494, + -0.05322960019111633, + -0.051320880651474, + -0.09071042388677597, + 0.008658778853714466, + -0.07969191670417786, + 0.05438952147960663, + -0.0372491255402565, + -0.06073188781738281, + -0.04147189110517502, + -0.05140647292137146, + 0.024150557816028595, + 0.044024508446455, + 0.0027024599257856607, + -0.03717179223895073, + -0.023423293605446815, + -0.004070907365530729, + -0.08436421304941177, + -0.04651317745447159, + 0.09234246611595154, + 0.02842188999056816, + 0.0009709646110422909, + -0.008831536397337914, + 0.010710479691624641, + -0.06204140558838844, + 0.012342995032668114, + 0.04019828513264656, + 0.12829160690307617, + -0.012853717431426048, + 0.02454506978392601, + -0.018471188843250275 + ], + "basketball-bold||sports,nba": [ + -0.00024259663769043982, + 0.012258972972631454, + -0.023335209116339684, + -0.023260487243533134, + 0.025089697912335396, + 0.008255885913968086, + 0.09043963253498077, + -0.06696972995996475, + 0.07995355129241943, + 0.07118083536624908, + -0.07055526226758957, + 0.04279996454715729, + 0.050581399351358414, + -0.01161181554198265, + 0.0022864309139549732, + 0.011543610133230686, + 0.04965537413954735, + 0.07762044668197632, + -0.007807615213096142, + -0.05613536387681961, + 0.03602476418018341, + 0.06598074734210968, + 0.033444713801145554, + 0.0544297955930233, + 0.03746243566274643, + -0.005404487252235413, + 0.03213551640510559, + 0.04838321730494499, + -0.10047503560781479, + -0.05751831829547882, + -0.0774158462882042, + -0.047045234590768814, + 0.06154535710811615, + 0.05824199318885803, + 0.03174856677651405, + -0.03016182780265808, + -0.07132605463266373, + 0.062251441180706024, + -0.005797399207949638, + 0.039799388498067856, + 0.06450194120407104, + -0.09948282688856125, + 0.043523721396923065, + 0.06640999019145966, + -0.03964032977819443, + 0.04175320267677307, + -0.07601190358400345, + -0.010690459981560707, + 0.027856890112161636, + 0.05725527182221413, + -0.027773352339863777, + 0.001771654817275703, + -0.04189611226320267, + -0.018691955134272575, + 0.08880897611379623, + 0.0899467021226883, + -0.019367681816220284, + 0.04758240655064583, + 0.010783401317894459, + -0.0396433062851429, + 0.05634621903300285, + -0.008925532922148705, + 0.002093538409098983, + 0.030719321221113205, + 0.017458228394389153, + -0.018930954858660698, + 0.015765316784381866, + 0.04798012971878052, + -0.07045728713274002, + -0.0024713147431612015, + 0.04961315169930458, + 0.016166837885975838, + -0.07565274089574814, + -0.03460339456796646, + 0.012743370607495308, + 0.048283450305461884, + 0.011530613526701927, + 0.007468017283827066, + -0.05986127257347107, + -0.02598564699292183, + 0.022444896399974823, + -0.13512544333934784, + -0.02244124934077263, + -0.02783180959522724, + -0.04746289178729057, + -0.036830391734838486, + -0.10161848366260529, + -0.04247710481286049, + 0.018854860216379166, + 0.010980168357491493, + -0.11607788503170013, + -0.06672846525907516, + 0.04249333590269089, + -0.039781972765922546, + -0.01922890916466713, + 0.059905800968408585, + -0.05620143935084343, + -0.11867661774158478, + -0.009020251221954823, + 0.11346545815467834, + 0.08350471407175064, + 0.008595835417509079, + -0.015483357943594456, + 0.05808679014444351, + -0.020031357184052467, + 0.0056878128089010715, + -0.027388211339712143, + 0.02827218547463417, + 0.0027346478309482336, + 0.08216938376426697, + -0.0024744896218180656, + -0.023708663880825043, + 0.01630573160946369, + 0.01922660879790783, + -0.040258750319480896, + -0.026545364409685135, + 0.00852027628570795, + 0.018915018066763878, + 0.11962758749723434, + 0.029395831748843193, + 0.012892652302980423, + 0.01282067596912384, + -0.0391923151910305, + 0.015293515287339687, + -0.0034428134094923735, + 0.04569390416145325, + 0.043131738901138306, + -6.217864061382863e-33, + 0.021379848942160606, + -0.03032093122601509, + 0.06029178202152252, + 0.12797804176807404, + -0.043075140565633774, + -0.015977662056684494, + 0.020966384559869766, + -0.07284890115261078, + -0.08845333755016327, + -0.0417550690472126, + 0.032348018139600754, + 0.07591595500707626, + -0.008382010273635387, + 0.012743934988975525, + 0.061483077704906464, + -0.020828813314437866, + -0.05325888469815254, + -0.0500146858394146, + -0.05057380720973015, + 0.07011768221855164, + -0.058752987533807755, + 0.04820560663938522, + 0.011306839063763618, + -0.0013214764185249805, + -0.07115878909826279, + -0.06086615473031998, + -0.019312122836709023, + -0.08113566786050797, + -0.055555496364831924, + 0.018008295446634293, + 0.026736263185739517, + 0.007429526187479496, + 0.01434461958706379, + -0.030015889555215836, + 0.022712145000696182, + -0.010664439760148525, + -0.054558999836444855, + -0.012400399893522263, + 0.02536914311349392, + -0.036756448447704315, + -0.049432046711444855, + -0.08308053016662598, + -0.03674750775098801, + -0.028999654576182365, + 0.00793765764683485, + 0.13552327454090118, + -0.07067873328924179, + -0.044541455805301666, + -0.05148952081799507, + -0.01004012767225504, + 0.03349611535668373, + -0.037768635898828506, + 0.02541773021221161, + -0.052738089114427567, + 0.009279727004468441, + -0.02443266287446022, + 0.01156837958842516, + -0.004005066119134426, + -0.014376855455338955, + -0.020712576806545258, + 0.037523142993450165, + 0.04904038831591606, + 0.01778925582766533, + -0.01101849228143692, + -0.0684865415096283, + 0.042301248759031296, + 0.037148162722587585, + 0.11003272980451584, + 0.10461778938770294, + -0.021734748035669327, + 0.02752808667719364, + 0.037690941244363785, + -0.029941927641630173, + 0.05295867845416069, + -0.015290850773453712, + 0.0948370024561882, + 0.03678315505385399, + 0.02461601421236992, + -0.017633548006415367, + -0.0631481260061264, + -0.09105964750051498, + -0.035161636769771576, + -0.04234473407268524, + 0.04522869363427162, + -0.006303225178271532, + -0.0004591270990204066, + -0.0656961053609848, + -0.05382981151342392, + 0.0031221024692058563, + 0.02892090193927288, + -0.11218029260635376, + -0.01364991720765829, + -0.022897157818078995, + 0.013978048227727413, + -0.0896838903427124, + 1.384561623081297e-33, + 0.05844409018754959, + -0.024096572771668434, + -0.009812196716666222, + -0.028135087341070175, + 0.020886685699224472, + -0.031850893050432205, + 0.011220764368772507, + 0.06808038800954819, + 0.0250460896641016, + 0.05170068517327309, + 0.022634562104940414, + -0.05539427325129509, + -0.06309207528829575, + -0.02880116179585457, + 0.0351470410823822, + -0.022946219891309738, + 0.03669377788901329, + 0.060193710029125214, + -0.043059539049863815, + 0.08119429647922516, + 0.0005213445401750505, + -0.031462155282497406, + -0.05517483875155449, + 0.04994506388902664, + -0.045275695621967316, + -0.005174148827791214, + -0.014083586633205414, + 0.031309764832258224, + -0.06749026477336884, + 0.010104325599968433, + -0.005193530116230249, + 0.035062339156866074, + 0.05664417892694473, + 0.06846693903207779, + -0.10413873940706253, + 0.0729629322886467, + 0.050138458609580994, + -0.0803733691573143, + 0.0552702397108078, + -0.04680200293660164, + 0.05035256966948509, + 0.016453206539154053, + -0.021388303488492966, + -0.014604288153350353, + 0.058428484946489334, + 0.06680548936128616, + 0.017781326547265053, + -0.0001869194966275245, + -0.054578352719545364, + 0.022609030827879906, + -0.05239716172218323, + -0.005584729835391045, + -0.06383085250854492, + 0.07666952908039093, + -0.052685294300317764, + -0.05200653150677681, + -0.05435984581708908, + 0.014875267632305622, + -0.025776000693440437, + -0.01882021129131317, + -0.044298525899648666, + 0.0812680795788765, + -0.10423395037651062, + 0.03785092756152153, + 0.015238083899021149, + 0.014941196888685226, + 0.07064004987478256, + -0.056797608733177185, + -0.04116015136241913, + -0.07333642989397049, + -0.07142825424671173, + 0.007310632150620222, + -0.027676787227392197, + 0.04134409874677658, + 0.022594237700104713, + 0.0335870087146759, + -0.00581370247527957, + 0.10857227444648743, + -0.01756674237549305, + 0.07826543599367142, + -0.04422318562865257, + -0.0170726515352726, + -0.13122506439685822, + 0.08425683528184891, + 0.03187141567468643, + 0.05428198352456093, + 0.030797278508543968, + 0.03630974143743515, + -0.014623589813709259, + -0.020102495327591896, + -0.019154017791152, + 0.013691967353224754, + -0.013931420631706715, + -0.03251289948821068, + -0.01659197174012661, + -1.633648238907881e-08, + 0.036889225244522095, + 0.07382752746343613, + -0.06627409160137177, + -0.002972386311739683, + -0.031808044761419296, + -0.012423396110534668, + 0.0061697945930063725, + -0.053109340369701385, + 0.024502338841557503, + -0.05097996070981026, + -0.0224752277135849, + -0.0526166707277298, + 0.0017655616393312812, + 0.0032992069609463215, + 0.052903056144714355, + 0.08629083633422852, + -0.1309509426355362, + 0.011276615783572197, + -0.016551867127418518, + -0.009085886180400848, + -0.018046068027615547, + 0.012159147299826145, + 0.010255539789795876, + -0.008561745285987854, + -0.004604069050401449, + -0.02884996123611927, + -0.11238280683755875, + -0.06622730940580368, + 0.015614203177392483, + -0.025047359988093376, + 0.07674303650856018, + 0.06014886498451233, + -0.011001943610608578, + -0.0454581156373024, + -0.06217781454324722, + -0.01712811551988125, + 0.08657757192850113, + -0.0826219990849495, + 0.047607094049453735, + 0.037678834050893784, + -0.06868169456720352, + -0.016795676201581955, + -0.02122320793569088, + -0.050748009234666824, + -0.012950691394507885, + -0.031049858778715134, + 0.07300855219364166, + -0.05943150818347931, + -0.15716129541397095, + -0.08704283088445663, + -0.05201705917716026, + 0.033940114080905914, + 0.03435397893190384, + 0.04120512306690216, + 0.032598335295915604, + -0.01350633054971695, + 0.022540315985679626, + 0.040673527866601944, + -0.013561302796006203, + -0.022184856235980988, + 0.1931837946176529, + 0.01064322516322136, + 0.03446885198354721, + 0.015446250326931477 + ], + "bathtub-bold||bath,shower,bathroom,faucet": [ + -0.018585624173283577, + -0.07265479117631912, + 0.03575592860579491, + -0.07119497656822205, + -0.009633008390665054, + -0.009159306064248085, + 0.08155036717653275, + 0.020876683294773102, + -0.040349509567022324, + -0.015580391511321068, + 0.047961488366127014, + 0.02183493599295616, + 0.052837617695331573, + 0.023511121049523354, + -0.03967265412211418, + -0.0243217796087265, + 0.004228046163916588, + 0.07819576561450958, + 0.03216562792658806, + 0.00491259153932333, + 0.05588908493518829, + 0.0831054151058197, + 0.024571679532527924, + -0.0053736502304673195, + 0.07128497213125229, + 0.07118116319179535, + 0.0018496629782021046, + -0.015459920279681683, + 0.0032123287674039602, + -0.02756452187895775, + -0.041853711009025574, + 0.03122645989060402, + -0.009086081758141518, + -0.1264815479516983, + 0.05219624191522598, + -0.027772774919867516, + -0.0574624128639698, + -0.022789431735873222, + 0.02041378803551197, + -0.0013091741129755974, + 0.02943764440715313, + -0.07919605821371078, + 0.02292059361934662, + 0.059075985103845596, + 0.031964920461177826, + 0.0038395922165364027, + 0.03483784571290016, + -0.03276040032505989, + 0.02841668389737606, + -0.019780602306127548, + -0.03370002657175064, + -0.08406774699687958, + -0.09408919513225555, + 0.04361874610185623, + -0.03227118030190468, + -0.024141032248735428, + -0.049059972167015076, + -0.022788982838392258, + 0.07838990539312363, + 0.053085483610630035, + -0.004682983737438917, + 0.019231094047427177, + -0.0017922497354447842, + 0.09314068406820297, + 0.09396959841251373, + 0.01598631776869297, + -0.0647365003824234, + 0.08618795871734619, + 0.01433243416249752, + 0.027965663000941277, + 0.011658523231744766, + 0.021372664719820023, + -0.03637891262769699, + 0.029392294585704803, + -0.012869809754192829, + 0.0187055841088295, + 0.025608697906136513, + 0.08388661593198776, + -0.08607625216245651, + 0.03597092628479004, + -0.10262787342071533, + -0.1001763716340065, + 0.019646868109703064, + 0.014065342955291271, + 0.04996567592024803, + 0.046184733510017395, + -0.026902377605438232, + -0.07699902355670929, + -0.004734293557703495, + -0.05834506079554558, + -0.1282270848751068, + -0.03037242777645588, + 0.00015397170500364155, + -0.02339388057589531, + -0.020212270319461823, + 0.0367671363055706, + -0.025345904752612114, + 0.019899563863873482, + -0.025896715000271797, + 0.04489477723836899, + -0.00611661933362484, + 0.00212271511554718, + 0.03422035276889801, + 0.08916239440441132, + -0.006759193725883961, + -0.12566062808036804, + -0.06384492665529251, + 0.04361439868807793, + 0.03462923318147659, + -0.0287970881909132, + -0.04334709420800209, + -0.16980120539665222, + 0.012837075628340244, + -0.04217641428112984, + -0.08842799812555313, + -0.13595938682556152, + -0.017695419490337372, + -0.07949096709489822, + 0.0880855843424797, + 0.05745863914489746, + -0.017639467492699623, + -0.002867042552679777, + -0.02540563978254795, + -0.07139170169830322, + -0.049367379397153854, + 0.006404010578989983, + 0.0175849087536335, + -1.2837524214162277e-33, + 0.03558136522769928, + -0.021538332104682922, + 0.05011921375989914, + 0.01725900173187256, + 0.04481227695941925, + 0.04620973765850067, + -0.049971193075180054, + -0.028999147936701775, + -0.008935762569308281, + 0.06953493505716324, + 0.015055224299430847, + 0.028553875163197517, + -0.05806498974561691, + 0.03675518557429314, + -0.006752957124263048, + 0.04841126874089241, + 0.04093286395072937, + -0.03127892687916756, + -0.008700852282345295, + -0.0009491796372458339, + 0.04567313566803932, + 0.14501625299453735, + -0.05689391493797302, + -0.000406824256060645, + -0.07414162158966064, + -0.10084248334169388, + -0.04164446145296097, + 0.005824847612529993, + -0.0964341014623642, + 0.07123550027608871, + -0.007242078427225351, + -0.020639143884181976, + 0.05816206336021423, + 0.006476130802184343, + -0.05560962110757828, + -0.04681110009551048, + -0.04647884890437126, + -0.043350446969270706, + 0.04802658036351204, + 0.014892875216901302, + -0.08286312967538834, + -0.02291891723871231, + -0.013192798011004925, + 0.08044793456792831, + 0.07645347714424133, + 0.07214633375406265, + -0.043064482510089874, + 0.01011557225137949, + 0.037817925214767456, + 0.06545335799455643, + 0.02912880666553974, + -0.008588080294430256, + -0.0013161726528778672, + 0.10920270532369614, + -0.0038062105886638165, + -0.04537299647927284, + -0.05250225588679314, + 0.10486960411071777, + -0.03363565355539322, + 0.08928912878036499, + -0.055987678468227386, + 0.07927675545215607, + 0.016126809641718864, + -0.043034132570028305, + -0.040941596031188965, + 0.03696117550134659, + 0.03175092488527298, + 0.0750594511628151, + 0.09697485715150833, + -0.006024183239787817, + -0.11333368718624115, + 0.05150531977415085, + 0.021862775087356567, + 0.044130366295576096, + 0.04384526237845421, + -0.053062696009874344, + 0.01483651902526617, + -0.020710309967398643, + -0.036069247871637344, + -0.013577458448708057, + -0.0781438797712326, + 0.010640231892466545, + -0.029616396874189377, + 0.1242317482829094, + -0.023385582491755486, + 0.042776063084602356, + 0.0016248325118795037, + -0.024601690471172333, + 0.027715608477592468, + 0.04675355926156044, + -0.0320952907204628, + 0.03010205738246441, + -0.03415819630026817, + 0.0262023713439703, + -0.034563492983579636, + -8.376968554948062e-34, + 0.01976134069263935, + -0.010189902037382126, + -0.059752482920885086, + 0.020041685551404953, + -0.0006038379506208003, + -0.035784754902124405, + 0.03594005107879639, + -0.024200107902288437, + -0.04667677357792854, + 0.0697990208864212, + 0.004186762031167746, + 0.0011495238868519664, + -0.046687591820955276, + -0.041708171367645264, + -0.03261489048600197, + 0.04243774712085724, + 0.06962352991104126, + -0.09148797392845154, + 0.017949983477592468, + 0.09054187685251236, + -0.04855350777506828, + 0.02905595302581787, + -0.009642867371439934, + 0.03540222346782684, + -0.05865444242954254, + 0.03583015128970146, + 0.05859358236193657, + -0.054228972643613815, + 0.020355619490146637, + 0.043677184730768204, + -0.08520533889532089, + 0.039381273090839386, + 0.0702090635895729, + 0.018765535205602646, + -0.03352558985352516, + 0.021384095773100853, + 0.0791572853922844, + -0.05579695105552673, + -0.01507155504077673, + -0.016026655212044716, + 0.07856840640306473, + -0.01418327633291483, + 0.04878048226237297, + 0.0524301752448082, + -0.014161823317408562, + 0.07474999129772186, + -0.03394834324717522, + -0.01743447780609131, + -0.08494243025779724, + 0.054105404764413834, + -0.038720548152923584, + -0.0433492474257946, + -0.012231376953423023, + -0.018482951447367668, + -0.009808775968849659, + -0.11488879472017288, + 0.005935251712799072, + 0.011309158056974411, + -0.022924525663256645, + 0.1089252457022667, + 0.06651793420314789, + 0.0022796541452407837, + -0.04584251344203949, + 0.03675517812371254, + -0.008348864503204823, + -0.017402607947587967, + -0.035534925758838654, + 0.04754546284675598, + -0.02945615164935589, + 0.043378714472055435, + -0.03615656495094299, + -0.0038055921904742718, + 0.033840663731098175, + -0.016536517068743706, + 0.12375351041555405, + -0.03455907106399536, + 0.019118377938866615, + 0.012524769641458988, + -0.046696048229932785, + 0.021052218973636627, + -0.08408025652170181, + 0.06902997195720673, + -0.06056047976016998, + -0.020517323166131973, + 0.016097545623779297, + -0.05994633957743645, + -0.062019530683755875, + 0.08845891058444977, + 0.003736336948350072, + -0.04693635180592537, + 0.0015453384257853031, + 0.06496678292751312, + -0.06199250370264053, + -0.003824881510809064, + 0.01605934649705887, + -1.8808181678764413e-08, + -0.012385454960167408, + 0.03137768805027008, + 0.020855503156781197, + -0.015961986035108566, + 0.035762619227170944, + -0.05089325085282326, + -0.02271396666765213, + 0.035690706223249435, + -0.02656860649585724, + -0.0017985721351578832, + 0.033199243247509, + -0.0014538143295794725, + -0.04838472604751587, + -0.01126015093177557, + 0.08080413192510605, + 0.0954207256436348, + -0.03699471428990364, + 0.0035278289578855038, + -0.045698415488004684, + -0.10145632177591324, + -0.024088244885206223, + 0.006889401935040951, + 0.06188308075070381, + -0.00633346987888217, + -0.021538712084293365, + 0.009293664246797562, + -0.04749114066362381, + 0.00772246066480875, + -0.05986269190907478, + -0.01731332205235958, + 0.053785912692546844, + -0.03392579406499863, + -0.0522952638566494, + 0.034784480929374695, + -0.08445994555950165, + 0.031062420457601547, + 0.0036855011712759733, + -0.061040956526994705, + -0.014594216831028461, + 0.0074065388180315495, + -0.11239790171384811, + -0.13027100265026093, + -0.0029102445114403963, + 0.013114347122609615, + 0.012900808826088905, + 0.04779750108718872, + 0.11328044533729553, + 0.0286189503967762, + -0.013915515504777431, + -0.09542053192853928, + -0.03178003057837486, + -0.03210759162902832, + 0.08748605102300644, + 0.0033088333439081907, + 0.024317367002367973, + -0.0011686409125104547, + 0.0378115177154541, + -0.05424919351935387, + -0.06962791085243225, + 0.012349730357527733, + 0.07003188133239746, + 0.027328699827194214, + 0.014640401117503643, + -0.0044869049452245235 + ], + "battery-charging-bold||charged,charger,charging,power": [ + -0.052788589149713516, + 0.11162053048610687, + -0.08612774312496185, + 0.06302732229232788, + 0.06045245751738548, + -0.048225272446870804, + 0.09316805750131607, + -0.04953326657414436, + -0.017868926748633385, + 0.014861822128295898, + 0.10270927846431732, + -0.047310005873441696, + 0.08179207891225815, + 0.0739651769399643, + -0.006642051972448826, + 0.030919399112462997, + -0.016386691480875015, + -0.0041716755367815495, + 0.0075126392766833305, + 0.0745222270488739, + -0.0062172263860702515, + 0.026748064905405045, + 0.06279236078262329, + -0.0019279083935543895, + 0.07509461790323257, + 0.051271114498376846, + 0.07221300154924393, + -0.03734399378299713, + -0.03962456062436104, + -0.12076203525066376, + 0.014468993991613388, + 0.007365287747234106, + 0.07346024364233017, + -0.01297111064195633, + 0.03539092838764191, + 0.03862471133470535, + -0.007284443359822035, + 0.05384114012122154, + 0.022834010422229767, + 0.011819539591670036, + 0.060852114111185074, + -0.08697183430194855, + 0.034217558801174164, + 0.020690755918622017, + -0.04146486148238182, + 0.030047357082366943, + -0.02572954259812832, + 0.004474936984479427, + 0.04144881293177605, + 0.011295010335743427, + 0.02654987946152687, + -0.12489717453718185, + -0.10757783055305481, + -0.01923867128789425, + -0.018494194373488426, + 0.014563223347067833, + -0.06809360533952713, + 0.012717772275209427, + 0.08558196574449539, + -0.08182042837142944, + -0.04842013493180275, + -0.0029287412762641907, + 0.02246668003499508, + 0.05219893902540207, + 0.010468830354511738, + -0.0066746496595442295, + 0.022522903978824615, + 0.0594274140894413, + -0.1172766163945198, + 0.03447446599602699, + 0.06302186101675034, + 0.016365358605980873, + -0.04643246531486511, + -0.08584665507078171, + -0.05093080550432205, + 0.016662251204252243, + 0.010425315238535404, + 0.07619629055261612, + -0.08565763384103775, + -0.00206528021954, + -0.03928657993674278, + -0.08742336183786392, + -0.05376506596803665, + 0.004091125912964344, + 0.08039531856775284, + 0.03442154452204704, + -0.03318291902542114, + -0.11122967302799225, + -0.0274787787348032, + -0.05100718513131142, + -0.031283266842365265, + 0.05624670535326004, + 0.02940937876701355, + -0.008458313532173634, + -0.11801012605428696, + 0.06251116096973419, + 0.05852680280804634, + 0.00041061313822865486, + -0.04827560856938362, + 0.05667468160390854, + 0.09687425941228867, + 0.06205686181783676, + 0.021192563697695732, + -0.02439226768910885, + -0.00965146254748106, + -0.03913840651512146, + -0.036720044910907745, + 0.04047366976737976, + 0.033639051020145416, + -0.002299538580700755, + 0.032621752470731735, + -0.07350993901491165, + -0.01662287674844265, + -0.01856568455696106, + 0.004520991817116737, + 0.052995823323726654, + -0.05865129455924034, + -0.0032605803571641445, + 0.14293426275253296, + -0.010761460289359093, + 0.013965224847197533, + -0.03255750611424446, + -0.03908311575651169, + -0.08365991711616516, + 0.00578525522723794, + 0.007311282679438591, + 0.11061307787895203, + -2.1209136004619443e-33, + 0.06542903184890747, + -0.00343369971960783, + -0.01827702485024929, + 0.028832651674747467, + 0.023591510951519012, + 0.007862715050578117, + -0.017165755853056908, + 0.025493822991847992, + -0.028539637103676796, + 0.028756430372595787, + 0.04711110517382622, + 0.031047113239765167, + 0.0632113516330719, + 0.056155554950237274, + 0.03579118847846985, + 0.010444416664540768, + -0.03505498170852661, + -0.024595772847533226, + -0.03882385045289993, + 0.043748993426561356, + -0.0461236946284771, + 0.07796338945627213, + -0.03218037635087967, + 0.020654812455177307, + -0.024791879579424858, + -0.011645058169960976, + 0.1147981807589531, + -0.011883731000125408, + -0.05041254311800003, + 0.0020824153907597065, + 0.055217351764440536, + 0.07325179129838943, + 0.026824289932847023, + 0.025433583185076714, + -0.0533236600458622, + 0.09331710636615753, + 0.026003306731581688, + -0.015215739607810974, + 0.01534800324589014, + -0.05434389039874077, + -0.08099478483200073, + -0.039569396525621414, + -0.08435359597206116, + -0.057809796184301376, + 0.007539925631135702, + 0.04867614805698395, + -0.004245200660079718, + -0.11916743218898773, + -0.04246692731976509, + 0.026103705167770386, + -0.10092857480049133, + -0.07071586698293686, + 0.06020529568195343, + 0.028934821486473083, + 0.03748955577611923, + 0.02622351422905922, + -0.04555889219045639, + 0.09010224789381027, + 0.01734212040901184, + 0.001977168256416917, + 0.024546939879655838, + -0.03379528969526291, + -0.03936244174838066, + -0.08382908254861832, + -0.09865487366914749, + 0.007091428153216839, + -0.07880879193544388, + -0.014776316471397877, + 0.00991770252585411, + 0.026924291625618935, + 0.024934671819210052, + 0.049479562789201736, + 0.04237928241491318, + 0.02689771167933941, + 0.009690587408840656, + 0.07060796767473221, + 0.016800766810774803, + -0.010493162088096142, + -0.00523871136829257, + -0.05694957077503204, + -0.1081029549241066, + -0.013865988701581955, + -0.04680833965539932, + 0.09248713403940201, + -0.03351528197526932, + 0.010162119753658772, + -0.019640114158391953, + -0.05322674661874771, + 0.0075739710591733456, + 0.039665814489126205, + -0.026971207931637764, + -0.005591948516666889, + -0.045814089477062225, + -0.10042143613100052, + -0.026511574164032936, + -8.808063659367866e-34, + 0.05256744846701622, + 0.06186836212873459, + -0.025682659819722176, + -0.026392947882413864, + -0.017882825806736946, + 0.027666158974170685, + -0.037234026938676834, + -0.024500126019120216, + -0.02591085247695446, + -0.03285018727183342, + -0.02911408618092537, + 0.026039214804768562, + -0.07701665163040161, + -0.061965785920619965, + 0.06891749799251556, + 0.04346629977226257, + -0.009566106833517551, + -0.006511206738650799, + 0.007497205398976803, + 0.052386559545993805, + -0.01959715038537979, + 0.04746308922767639, + -0.004255205858498812, + 0.06429905444383621, + 0.060384735465049744, + 0.03505658358335495, + 0.04306350648403168, + -0.04571283981204033, + 0.04838740825653076, + -0.006345637142658234, + 0.004855528008192778, + -0.07040960341691971, + 0.07298948615789413, + 0.04845692962408066, + -0.0829399973154068, + 0.022257858887314796, + 0.014135955832898617, + -0.0015999977476894855, + 0.07021522521972656, + 0.006988289300352335, + -0.0059904721565544605, + -0.010264070704579353, + -0.0006393286166712642, + 0.037870436906814575, + -0.05558892711997032, + -0.08551015704870224, + -0.07797389477491379, + -0.027990780770778656, + -0.041853830218315125, + 0.06435644626617432, + -0.05734513700008392, + -0.05706850066781044, + -0.04226358234882355, + 0.03665837645530701, + -0.08985871076583862, + -0.07925774157047272, + 0.0618773028254509, + 0.007571626920253038, + -0.05893018841743469, + 0.022838009521365166, + 0.018563363701105118, + 0.012444574385881424, + -0.005542018450796604, + -0.03441157937049866, + -0.09665071964263916, + -0.06594269722700119, + 0.061697568744421005, + -0.007789899595081806, + 0.060416094958782196, + -0.024176258593797684, + -0.025108857080340385, + -0.017957525327801704, + -0.00463217543438077, + 0.015734894201159477, + -0.02292761020362377, + -0.05453898385167122, + 0.001439128303900361, + -0.030423348769545555, + -0.01870398037135601, + -0.03366955742239952, + 0.04447952285408974, + 0.0020561786368489265, + -0.017211701720952988, + -0.059069592505693436, + -0.07304700464010239, + -0.024526111781597137, + 0.038828518241643906, + 0.038322243839502335, + -0.00010925308015430346, + -0.06692351400852203, + -0.012148676440119743, + 0.028189510107040405, + -0.026936184614896774, + 0.10622378438711166, + -0.10045633465051651, + -1.8982220240104652e-08, + -0.014887350611388683, + 0.002572757424786687, + -0.05059880018234253, + -0.01817200519144535, + 0.0328817293047905, + -0.052521370351314545, + -0.03109491989016533, + -0.036492008715867996, + -0.04443926364183426, + -0.024347998201847076, + 0.0632496327161789, + -0.011337053030729294, + 0.0026034347247332335, + -0.03065411001443863, + 0.058220066130161285, + 0.07960077375173569, + -0.033475104719400406, + 0.08009267598390579, + -0.06484923511743546, + 0.006984812207520008, + -0.06024659052491188, + 0.035964787006378174, + -0.03728744015097618, + 0.005804449785500765, + 0.04628114402294159, + 0.029982905834913254, + -0.0586002916097641, + 0.020342163741588593, + 0.07674843072891235, + -0.029034798964858055, + 0.007709533907473087, + 0.11196359992027283, + 0.026443183422088623, + 0.006073818076401949, + -0.10241872072219849, + -0.06387800723314285, + 0.005594685208052397, + -0.05801673233509064, + 0.03433431684970856, + 0.07879368215799332, + -0.0230350773781538, + -0.06234823912382126, + -0.036735933274030685, + -0.005412079393863678, + -0.05546946078538895, + -0.010122186504304409, + 0.08997324854135513, + -0.07907994091510773, + -0.08588409423828125, + -0.01649339869618416, + -0.036241866648197174, + 0.015183859504759312, + 0.004285641945898533, + 0.06826566159725189, + -0.03150275722146034, + 0.04681010916829109, + -0.026494497433304787, + 0.0387914814054966, + -0.02669653296470642, + 0.008808465674519539, + 0.1618177443742752, + -0.0239232387393713, + 0.078495554625988, + 0.012831761501729488 + ], + "battery-charging-vertical-bold||charged,charger,charging,power": [ + -0.04978152737021446, + 0.1288680136203766, + -0.09891780465841293, + 0.02793530374765396, + 0.014372488483786583, + -0.03238176554441452, + 0.0358266606926918, + 0.002948860637843609, + -0.0006260370719246566, + -0.0015876495745033026, + 0.11299069225788116, + 0.021705130115151405, + 0.10129062086343765, + 0.06724102050065994, + -0.002036371035501361, + 0.03847220912575722, + -0.010562565177679062, + 0.021633291617035866, + -0.008329899050295353, + 0.0689789280295372, + -0.021246355026960373, + -0.01801176369190216, + 0.06035545468330383, + -0.013788907788693905, + 0.05074694752693176, + 0.06340494006872177, + 0.0677032321691513, + 0.007033787202090025, + -0.02211463823914528, + -0.1302105039358139, + 0.004525518510490656, + 0.03492864593863487, + 0.06393210589885712, + -0.009251673705875874, + 0.024503694847226143, + -0.009137229062616825, + -0.0037331413477659225, + 0.04970720782876015, + 0.02239343151450157, + 0.004012838006019592, + 0.06138671934604645, + -0.10927537083625793, + 0.023499371483922005, + 0.029817841947078705, + -0.04856843873858452, + 0.04031951352953911, + 0.008809802122414112, + -0.007759164087474346, + 0.02783455140888691, + 0.018239304423332214, + 0.04618264362215996, + -0.1343335062265396, + -0.09284768253564835, + 0.03826120123267174, + -0.003094821237027645, + 0.029381485655903816, + -0.036862339824438095, + 0.008748008869588375, + 0.09366676211357117, + -0.09932392090559006, + -0.00021186340018175542, + 0.012628956697881222, + -0.0049001420848071575, + 0.05367467179894447, + 0.004782756324857473, + -0.013674091547727585, + -0.025272240862250328, + 0.07150627672672272, + -0.12201099842786789, + 0.03930577635765076, + 0.07951655983924866, + -0.010986094363033772, + -0.039978206157684326, + -0.11583689600229263, + -0.025904567912220955, + 0.015277870930731297, + 0.01717250607907772, + 0.05935512110590935, + -0.06153223663568497, + -0.0015991920372471213, + 0.0023424963001161814, + -0.050471629947423935, + -0.07956627756357193, + 0.056333139538764954, + 0.04810751602053642, + 0.03138885274529457, + -0.008339105173945427, + -0.11081886291503906, + -0.04380478337407112, + -0.06690666079521179, + -0.005952319595962763, + 0.0365615151822567, + 0.019805021584033966, + -0.014163739047944546, + -0.12128127366304398, + 0.0168179702013731, + 0.045533888041973114, + -0.05458775907754898, + -0.04326862841844559, + 0.04234153777360916, + 0.10391619056463242, + 0.012874261476099491, + 0.03505739942193031, + 0.008504469878971577, + -0.0052293529734015465, + -0.05284391716122627, + -0.04473165422677994, + 0.033379927277565, + 0.037324246019124985, + -0.0013438509777188301, + 0.025331631302833557, + -0.04044913128018379, + -0.012739650905132294, + 0.009429547935724258, + -0.001940589165315032, + 0.06238945573568344, + -0.058247268199920654, + 0.007419337518513203, + 0.11546938866376877, + -0.021237999200820923, + 0.0026771854609251022, + -0.003409826662391424, + -0.03857900947332382, + -0.08257170021533966, + 0.01340672466903925, + 0.037044722586870193, + 0.10041718184947968, + -2.476935941837475e-33, + 0.06405433267354965, + -0.030869094654917717, + 0.016439612954854965, + 0.0325920432806015, + 0.048225149512290955, + 0.004102046135812998, + -0.024921100586652756, + 0.03576528653502464, + -0.02797451801598072, + 0.06692046672105789, + 0.05228266492486, + 0.04659578949213028, + 0.054637037217617035, + 0.08485206216573715, + 0.03255581483244896, + -0.03789391741156578, + -0.019643526524305344, + -0.026562191545963287, + -0.07585439085960388, + 0.023603487759828568, + -0.05735919997096062, + 0.03299004212021828, + -0.021830039098858833, + 0.025098834186792374, + -0.014741291292011738, + -0.0158262737095356, + 0.09523003548383713, + -0.03213481977581978, + -0.08616598695516586, + 0.01419706828892231, + 0.002982785226777196, + 0.04183366522192955, + 0.04318917915225029, + 0.006382577586919069, + -0.04738591983914375, + 0.10417836159467697, + 0.018357180058956146, + -0.03171452879905701, + 0.008190625347197056, + -0.05080345645546913, + -0.1056210994720459, + -0.05161430686712265, + -0.07530608028173447, + -0.06325849145650864, + 0.028750263154506683, + 0.04302452504634857, + 0.004326510708779097, + -0.13547123968601227, + -0.04944094642996788, + 0.032199423760175705, + -0.09054698795080185, + -0.05957140773534775, + 0.06569142639636993, + 0.014693171717226505, + 0.059971120208501816, + 0.013585149310529232, + -0.07956326007843018, + 0.09864920377731323, + -0.02100883424282074, + 0.006073570344597101, + 0.01983293890953064, + -0.03514506667852402, + -0.07023578882217407, + -0.08683747053146362, + -0.09375166893005371, + -0.003240105463191867, + -0.09019829332828522, + -0.02533602900803089, + 0.030510641634464264, + 0.050322216004133224, + 0.04351506382226944, + 0.02926563285291195, + 0.031179284676909447, + 0.02023705281317234, + -0.022651854902505875, + 0.07140295952558517, + 0.008538209833204746, + 0.004945564083755016, + 0.03561675548553467, + -0.030880652368068695, + -0.08997740596532822, + -0.016345810145139694, + -0.00972013734281063, + 0.03823305666446686, + -0.03395804017782211, + -0.011378541588783264, + -0.00958151277154684, + -0.056522492319345474, + 0.01498444750905037, + 0.02311556600034237, + -0.06550544500350952, + 7.959963113535196e-05, + -0.01022542268037796, + -0.09170079976320267, + -0.018223967403173447, + -4.484435643280177e-34, + 0.04660321772098541, + 0.03253093361854553, + -0.01925508677959442, + -0.039597295224666595, + -0.03271019831299782, + 0.027198174968361855, + -0.02618114836513996, + -0.0056366813369095325, + -0.06611819565296173, + -0.010007896460592747, + -0.023544611409306526, + 0.051766056567430496, + -0.07663692533969879, + -0.057295139878988266, + 0.09311516582965851, + 0.06163966655731201, + -0.048844680190086365, + -0.008686311542987823, + 0.014579041860997677, + 0.06872191280126572, + 0.010566339828073978, + 0.031931597739458084, + -0.007605175953358412, + 0.08208386600017548, + 0.08735015243291855, + 0.0002255289873573929, + 0.06883752346038818, + -0.038323044776916504, + 0.05379081517457962, + 0.007153131067752838, + 0.016683237627148628, + -0.08110629767179489, + 0.060327474027872086, + 0.043640896677970886, + -0.10571847856044769, + -0.003544829785823822, + 0.005445658229291439, + 0.015081694349646568, + 0.06436917185783386, + -0.017972180619835854, + -0.03161536902189255, + -0.008569224737584591, + 0.04373771697282791, + 0.017924988642334938, + -0.061986636370420456, + -0.08396165072917938, + -0.09653495997190475, + -0.006054960656911135, + -0.027640357613563538, + 0.0405554361641407, + -0.09396343678236008, + -0.05485612154006958, + -0.011229054071009159, + 0.07129077613353729, + -0.07203643769025803, + -0.08313853293657303, + 0.044807787984609604, + 0.009648716077208519, + -0.0683838352560997, + -0.005680491682142019, + 0.046945903450250626, + -0.017376957461237907, + -0.013492361642420292, + -0.05857950076460838, + -0.07769011706113815, + -0.01392402220517397, + 0.06687545776367188, + -0.010889404453337193, + 0.016085920855402946, + -0.015381859615445137, + -0.044495366513729095, + -0.00875353254377842, + 0.002199836540967226, + -0.018250741064548492, + -0.02514401450753212, + -0.05187208950519562, + 0.020792877301573753, + -0.0191809069365263, + -0.016222065314650536, + -0.04778274521231651, + 0.012756729498505592, + -0.00809416826814413, + -0.0327095165848732, + -0.03702336549758911, + -0.11054129898548126, + -0.021293936297297478, + 0.012770903296768665, + 0.06392035633325577, + 0.04144119843840599, + -0.08881434798240662, + -0.029619503766298294, + 0.024309825152158737, + -0.054221492260694504, + 0.09148562699556351, + -0.06049155443906784, + -1.9880243229408734e-08, + -0.03618019446730614, + -0.031013285741209984, + -0.011276653036475182, + -0.007802288047969341, + 0.004757225047796965, + -0.027441129088401794, + -0.013287373818457127, + -0.02407063916325569, + 0.010407737456262112, + -0.01695840433239937, + 0.061007704585790634, + -0.0006202945369295776, + 0.012522091157734394, + -0.03948373720049858, + 0.049417056143283844, + 0.08040681481361389, + -0.028152910992503166, + 0.09858401119709015, + -0.04733436554670334, + 0.02705954946577549, + -0.033635709434747696, + 0.056341253221035004, + -0.015781953930854797, + 0.02618405595421791, + 0.051791440695524216, + 0.027515461668372154, + -0.08121652156114578, + 0.02235165610909462, + 0.0891612321138382, + -0.04186994582414627, + -0.0016472890274599195, + 0.11044077575206757, + 0.05273322016000748, + -0.030180299654603004, + -0.08745627105236053, + -0.03788919746875763, + 0.016455460339784622, + -0.045328062027692795, + 0.02689705416560173, + 0.03351273760199547, + -0.011758394539356232, + -0.08510714769363403, + 0.006439592689275742, + 0.00040937651647254825, + -0.026487605646252632, + -0.01613985002040863, + 0.1141476258635521, + -0.018214212730526924, + -0.06827155500650406, + -0.00622223736718297, + -0.06998539716005325, + 0.012046094983816147, + 0.03343196213245392, + 0.07490109652280807, + -0.013078419491648674, + 0.04272116720676422, + -0.03914356231689453, + 0.022959260269999504, + -0.04877232015132904, + -0.014034906402230263, + 0.1671300232410431, + -0.007125338539481163, + 0.04069628566503525, + 0.011879470199346542 + ], + "battery-empty-bold||charged,charger,charging,power,dead": [ + -0.01970634050667286, + 0.08035176992416382, + -0.05981647968292236, + 0.05961591750383377, + 0.07852289080619812, + -0.06547214835882187, + 0.012402201071381569, + -0.030505822971463203, + 0.0414632223546505, + 0.013631073758006096, + 0.10977964848279953, + -0.08013081550598145, + 0.06770302355289459, + 0.07882292568683624, + -0.012632999569177628, + 0.03440240025520325, + -0.008317416533827782, + -0.0919899120926857, + -0.030988123267889023, + 0.0657792016863823, + -0.06597259640693665, + 0.019112829118967056, + 0.03908005729317665, + -0.013962341472506523, + 0.08557726442813873, + 0.04366656765341759, + 0.022481977939605713, + -0.09720854461193085, + -0.05647154152393341, + -0.08185859769582748, + 0.01578107476234436, + 0.06070008501410484, + 0.05320490524172783, + -0.04356258362531662, + 0.12760911881923676, + 0.0528448186814785, + 0.040492817759513855, + 0.03254946693778038, + 0.028576957061886787, + -0.011012612842023373, + 0.03617584705352783, + 0.001319137867540121, + 0.009217371232807636, + 0.07090860605239868, + 0.02462497167289257, + 0.06559493392705917, + -0.012476902455091476, + -0.010330754332244396, + 0.07114781439304352, + -0.0029289990197867155, + 0.026362715288996696, + -0.10214952379465103, + -0.040399711579084396, + -0.01650267280638218, + -0.04406745731830597, + -0.017791220918297768, + -0.02121003158390522, + -0.008979839272797108, + 0.057217519730329514, + -0.06768543273210526, + -0.010945716872811317, + -0.0035979156382381916, + -0.005005945917218924, + 0.01946011185646057, + 0.025896314531564713, + -0.017620161175727844, + 0.0053273639641702175, + 0.014514882117509842, + -0.06545045226812363, + 0.06452029198408127, + 0.08115563541650772, + 0.008264794945716858, + -0.05742863193154335, + -0.001186706474982202, + -0.11019276827573776, + 0.00838011410087347, + 0.0462927520275116, + 0.03527817502617836, + -0.05332716926932335, + 0.050563935190439224, + -0.053214628249406815, + -0.10386355966329575, + -0.07534048706293106, + 0.03585253655910492, + 0.06449829787015915, + 0.050699423998594284, + -0.012681437656283379, + -0.08064137399196625, + -0.029561776667833328, + -0.04244120419025421, + -0.06533732265233994, + 0.11397572606801987, + 0.0043161786161363125, + -0.015333577990531921, + -0.0915880873799324, + 0.02850855141878128, + 0.07931225001811981, + 0.02245309203863144, + -0.0791313648223877, + 0.09556132555007935, + 0.07328711450099945, + 0.02844574861228466, + 0.0401693619787693, + -0.03981823846697807, + -0.0012756716459989548, + -0.00760643882676959, + -0.03995177522301674, + 0.04838929697871208, + 0.03558165580034256, + 0.008203239180147648, + 0.08535715192556381, + -0.08098722994327545, + 0.03416652977466583, + 0.014177743345499039, + 0.0010725661413744092, + 0.03706855699419975, + -0.08347222954034805, + -0.05576867237687111, + 0.07208967208862305, + 0.00021417481184471399, + -0.006008214317262173, + -0.04760225862264633, + -0.01202273927628994, + -0.058867376297712326, + 0.014396268874406815, + 0.04113633558154106, + 0.10681348294019699, + -3.65660476697312e-33, + 0.07227053493261337, + -0.03706292435526848, + 0.01392326783388853, + 0.06409913301467896, + 0.038833074271678925, + -0.007166191004216671, + -0.014177373610436916, + -0.027946902438998222, + 0.017139747738838196, + 0.04670465737581253, + 0.044368110597133636, + 0.018156182020902634, + 0.04627631604671478, + 0.006056645419448614, + -0.009391029365360737, + -0.05212793126702309, + 0.042585741728544235, + -0.06102666258811951, + -0.020854748785495758, + 0.03160005435347557, + -0.01222813967615366, + 0.07458928227424622, + -0.056933388113975525, + 0.03995611518621445, + -0.005224674940109253, + 0.01593080163002014, + 0.061730463057756424, + -0.03200552985072136, + -0.05867524817585945, + -0.0031027249060571194, + 0.05418069660663605, + 0.056326497346162796, + 0.04964579641819, + -0.01382516697049141, + -0.07228370755910873, + 0.06837554275989532, + 0.01766108348965645, + 0.022509140893816948, + -0.017134279012680054, + -0.08066922426223755, + -0.05564329773187637, + -0.03402687981724739, + -0.03441068157553673, + -0.07412967830896378, + 0.0037272039335221052, + -0.02369820512831211, + 0.010717884637415409, + -0.07276998460292816, + -0.05950962007045746, + 0.05264006182551384, + -0.10285516083240509, + -0.06664134562015533, + 0.040047090500593185, + 0.05059890076518059, + -0.048578161746263504, + 0.06355041265487671, + -0.07417774945497513, + 0.01655949093401432, + -0.009965186007320881, + -0.04103463515639305, + 0.0925774872303009, + 0.020798800513148308, + -0.051649708300828934, + -0.07438290119171143, + -0.016163431107997894, + -0.031515736132860184, + -0.07932665944099426, + -0.052967701107263565, + 0.008351670578122139, + -0.035606272518634796, + 0.052452508360147476, + -0.005721642170101404, + 0.02580239810049534, + 0.015842599794268608, + 0.018309149891138077, + 0.1048017144203186, + -0.022149978205561638, + -0.057692836970090866, + -0.025774942710995674, + -0.036420054733753204, + 0.02028391696512699, + -0.02900179848074913, + -0.009398405440151691, + 0.08711272478103638, + -0.00922719668596983, + 0.027860358357429504, + -0.003333150641992688, + -0.011487630195915699, + -0.028827741742134094, + 0.07506635785102844, + -0.04930250346660614, + -0.0549793504178524, + -0.08582796156406403, + -0.09192606061697006, + 0.024412458762526512, + 3.5048968895061863e-34, + 0.0482826866209507, + 0.044045690447092056, + -0.017604688182473183, + -0.00792752392590046, + -0.024061763659119606, + 0.036666858941316605, + -0.0337386317551136, + 0.025209615007042885, + 0.009221949614584446, + -0.02451675944030285, + -0.010439502075314522, + 0.03437436744570732, + -0.08827143907546997, + -0.01690204069018364, + 0.07683000713586807, + 0.06328079104423523, + -0.026781145483255386, + -0.01644829846918583, + 0.007546109147369862, + 0.09417784214019775, + -0.006138315424323082, + 0.05692598968744278, + -0.04935593158006668, + 0.07272100448608398, + 0.047526631504297256, + 0.06346672773361206, + 0.039895519614219666, + -0.025052795186638832, + -0.03050830215215683, + -0.015218649990856647, + 0.06962193548679352, + -0.07736252248287201, + 0.09905878454446793, + 0.06566083431243896, + -0.06131855025887489, + -0.006311170291155577, + 0.048606179654598236, + 0.017326632514595985, + 0.03383396565914154, + -0.025125941261649132, + -0.03801481053233147, + 0.044566065073013306, + 0.01997215487062931, + 0.007342599332332611, + -0.08831391483545303, + -0.08794188499450684, + -0.06871509552001953, + -0.023520175367593765, + -0.001219404162839055, + 0.0836729183793068, + -0.052719343453645706, + -0.05687297508120537, + -0.03314996510744095, + 0.031961288303136826, + -0.07712175697088242, + -0.0722283199429512, + 0.02945399284362793, + 0.024701910093426704, + -0.05254092812538147, + -0.04578852280974388, + 0.032005663961172104, + 0.02628481201827526, + -0.023957019671797752, + -0.02248280681669712, + -0.06584178656339645, + -0.07809209078550339, + 0.07958769053220749, + 0.06015673279762268, + 0.022305810824036598, + -0.07312246412038803, + 0.027580343186855316, + 0.027155563235282898, + -0.03432745859026909, + -0.03058384358882904, + 0.04467514902353287, + 0.03810829669237137, + -0.05585477128624916, + -0.018879931420087814, + -0.03299633413553238, + -0.01997704617679119, + 0.03928842395544052, + -0.0508369542658329, + -0.032861147075891495, + -0.05657678097486496, + -0.0001821100158849731, + -0.03191584721207619, + 0.031222864985466003, + 0.043349239975214005, + -0.006461986806243658, + -0.03767402097582817, + -0.047374483197927475, + -0.02551877126097679, + 0.0013285099994391203, + 0.0944535881280899, + -0.09686398506164551, + -2.1750489409555485e-08, + -0.00997745431959629, + 0.008401253260672092, + -0.027198975905776024, + -0.029075613245368004, + 0.02916158363223076, + -0.09922077506780624, + 0.02124835178256035, + -0.022554557770490646, + -0.04729306697845459, + -0.019536297768354416, + 0.019407350569963455, + -0.02271580696105957, + -0.061506543308496475, + -0.03356258571147919, + 0.04354625195264816, + 0.038042016327381134, + -0.0670146644115448, + 0.04718295857310295, + -0.05119164660573006, + -0.028095977380871773, + -0.06966819614171982, + 0.012833974324166775, + -0.020893169566988945, + -0.04821346327662468, + 0.08260747790336609, + 0.04577768221497536, + -0.017593204975128174, + -0.019810767844319344, + 0.08676391839981079, + -0.01603386364877224, + 0.021446404978632927, + 0.1341359168291092, + 0.05497824028134346, + -0.035025704652071, + -0.10588926821947098, + -0.05158640444278717, + 0.03364522382616997, + -0.01561946701258421, + -0.01299681980162859, + 0.01038390677422285, + -0.04485810548067093, + -0.023839203640818596, + -0.040579795837402344, + -0.05240258201956749, + -0.03290500119328499, + -0.011303940787911415, + 0.09621698409318924, + -0.03881748020648956, + -0.04727676883339882, + -0.028859544545412064, + -0.0436076745390892, + 0.01521267555654049, + -0.02290477231144905, + 0.08007841557264328, + -0.0430058129131794, + 0.010334855876863003, + 0.008202395401895046, + 0.11133693158626556, + -0.033121392130851746, + 0.0032935794442892075, + 0.17867091298103333, + -0.06860145926475525, + 0.0071837324649095535, + -0.032555051147937775 + ], + "battery-full-bold||charged,charger,charging,power,filled": [ + -0.020924264565110207, + 0.11971710622310638, + -0.061519358307123184, + 0.0530552938580513, + 0.04535315930843353, + -0.06601913273334503, + 0.08664761483669281, + -0.0003284635313320905, + -0.013764585368335247, + 0.033100198954343796, + 0.06422820687294006, + -0.0418391115963459, + 0.05373426526784897, + 0.041685961186885834, + 0.019322911277413368, + 0.035571612417697906, + -0.0033032307401299477, + -0.05374404042959213, + -0.02687411569058895, + 0.03452644124627113, + -0.020803973078727722, + -0.008819516748189926, + 0.020777730271220207, + 0.005360931623727083, + 0.047900501638650894, + 0.09362689405679703, + 0.03960862010717392, + -0.02825157158076763, + -0.013719649985432625, + -0.12223242223262787, + -0.01434341911226511, + 0.045859113335609436, + 0.12601687014102936, + -0.021077904850244522, + 0.04830464348196983, + 0.008516290225088596, + -0.04169004410505295, + 0.05936707928776741, + 0.033732231706380844, + -0.006254139821976423, + 0.0393812470138073, + -0.06309192627668381, + 0.07123555988073349, + 0.11873407661914825, + -0.027562502771615982, + 0.07429826259613037, + 0.0024035447277128696, + 0.005729309283196926, + 0.05845458805561066, + 0.02243749238550663, + 0.068746417760849, + -0.10864493995904922, + -0.07577002048492432, + 0.030369482934474945, + -0.022613581269979477, + -0.011775159277021885, + -0.046415627002716064, + 0.00980417337268591, + 0.05304817110300064, + -0.07564009726047516, + -0.06521935760974884, + 0.03952115401625633, + 0.007399774622172117, + 0.05635373666882515, + -0.010345111601054668, + -0.035809729248285294, + -0.033996112644672394, + 0.030665762722492218, + -0.0961611345410347, + 0.04618643969297409, + 0.0870252251625061, + 0.03806756064295769, + -0.07599940150976181, + -0.05689612776041031, + -0.07487165182828903, + -0.016521882265806198, + 0.014195924624800682, + 0.056440722197294235, + -0.06499169021844864, + 0.03303483501076698, + -0.056546516716480255, + -0.12229591608047485, + -0.05252203345298767, + 0.0025550418067723513, + 0.05992906168103218, + 0.05916642025113106, + -0.015047390945255756, + -0.08601827919483185, + -0.05188889056444168, + -0.04976896569132805, + -0.031074175611138344, + 0.06729943305253983, + 0.00922386534512043, + 0.00011075649672420695, + -0.12004262953996658, + 0.05852140486240387, + 0.043531835079193115, + -0.02060014195740223, + -0.04882611706852913, + 0.09068144857883453, + 0.09229034185409546, + 0.045108310878276825, + 0.03943401575088501, + -0.03706403449177742, + -0.0120569858700037, + -0.05452648922801018, + -0.026664843782782555, + 0.0707521140575409, + 0.04941041022539139, + 0.004217683337628841, + 0.055569786578416824, + -0.08031169325113297, + 0.04120410606265068, + 0.001511870650574565, + 0.017721273005008698, + 0.03387807682156563, + -0.06899679452180862, + 0.0043546827509999275, + 0.1140536293387413, + 0.01698615960776806, + 0.012262360192835331, + -0.022158464416861534, + -0.06472182273864746, + -0.09252455830574036, + -0.006801430135965347, + 0.01773640513420105, + 0.11646466702222824, + -2.723877917586467e-33, + 0.005343204364180565, + -0.01120110135525465, + 0.00240916246548295, + 0.07353832572698593, + -0.012891360558569431, + 0.02376258373260498, + 0.0025355685502290726, + 0.026077134534716606, + -0.04216542840003967, + 0.039967238903045654, + 0.017506742849946022, + 0.06673336029052734, + 0.020026149228215218, + 0.08502493798732758, + 0.01724206656217575, + -0.0547993928194046, + 0.0024412814527750015, + 0.018199853599071503, + -0.017400886863470078, + 0.023950373753905296, + -0.03636135533452034, + 0.05766565352678299, + -0.05104735121130943, + 0.025665223598480225, + 0.02364140748977661, + -0.017947440966963768, + 0.08679161965847015, + -0.02651858888566494, + -0.05043269693851471, + 0.007896634750068188, + 0.03934874013066292, + 0.05261481925845146, + 0.023804660886526108, + 0.01521879993379116, + -0.05289587378501892, + 0.046847153455019, + 0.04067849740386009, + 0.014047753997147083, + 0.014499625191092491, + -0.08606099337339401, + -0.07804588228464127, + -0.0471779927611351, + -0.08906226605176926, + -0.048026323318481445, + -0.03848036751151085, + 0.00727195106446743, + -0.04517870768904686, + -0.09347013384103775, + -0.044135306030511856, + 0.07751783728599548, + -0.09661924839019775, + -0.08748931437730789, + 0.02428833581507206, + 0.024589844048023224, + -0.048284247517585754, + 0.04383523762226105, + -0.05657101050019264, + 0.06216232851147652, + 0.00810735672712326, + -0.0024795127101242542, + 0.03702118992805481, + 0.012238169088959694, + -0.06691011786460876, + -0.045561812818050385, + -0.07659725844860077, + 0.005893363617360592, + -0.054955169558525085, + -0.05414901301264763, + 0.0300501249730587, + 0.011443986557424068, + 0.03637077286839485, + -0.009683183394372463, + 0.04971250146627426, + 0.020695064216852188, + -0.01016263384371996, + 0.05849699676036835, + 0.02469068393111229, + -0.019942963495850563, + -0.019756438210606575, + -0.024083571508526802, + -0.09326895326375961, + -0.020813489332795143, + -0.010213762521743774, + 0.05922272428870201, + -0.02430676855146885, + -0.005061122123152018, + -0.04683022201061249, + -0.08123616129159927, + -0.02789153903722763, + 0.04743299260735512, + -0.019896313548088074, + -0.05631973221898079, + -0.027934042736887932, + -0.09933896362781525, + -0.03091844730079174, + -1.8187149872764062e-34, + 0.07030971348285675, + 0.038897689431905746, + -0.03456307575106621, + -0.004248441196978092, + 0.0032452421728521585, + 0.07075410336256027, + -0.04192861169576645, + 0.013538356870412827, + -0.0283918846398592, + -0.012480737641453743, + 0.021658647805452347, + 0.04403248801827431, + -0.04860376566648483, + -0.0330224372446537, + 0.01060422696173191, + 0.03667854145169258, + 0.009851912036538124, + 0.0028218908701092005, + 0.019005775451660156, + 0.0915878638625145, + -0.036510370671749115, + 0.0007794370758347213, + -0.017083268612623215, + 0.0515906848013401, + 0.06677426397800446, + 0.04200843721628189, + 0.02773905359208584, + -0.025182442739605904, + 0.024999963119626045, + 0.014639192260801792, + 0.011867781169712543, + -0.10143924504518509, + 0.033680886030197144, + 0.05838779732584953, + -0.1188206672668457, + -0.018759679049253464, + 0.06870588660240173, + 0.06342858076095581, + 0.04569745808839798, + 0.006522228941321373, + -0.01488178689032793, + -0.0503874346613884, + -0.025261642411351204, + 0.062490858137607574, + -0.08013086766004562, + -0.12798736989498138, + -0.07097399234771729, + -0.04330645874142647, + -0.015813900157809258, + 0.048865776509046555, + -0.058686207979917526, + -0.051828980445861816, + -0.010761565528810024, + 0.09260299056768417, + -0.04214813932776451, + -0.05959361419081688, + 0.0003360121918376535, + 0.021814750507473946, + -0.05594928190112114, + -0.028006672859191895, + 0.034993480890989304, + 0.024695537984371185, + -0.00681925006210804, + -0.0730874240398407, + -0.063926562666893, + -0.08199198544025421, + 0.05814970284700394, + 0.009612955152988434, + 0.017034130170941353, + -0.0484001450240612, + 0.009175977669656277, + 0.022491713985800743, + -0.001980631146579981, + 0.012775933369994164, + 0.017290281131863594, + -0.00490040797740221, + 0.04190022125840187, + -0.07294876128435135, + 0.0021883950103074312, + -0.013624503277242184, + 0.009763228707015514, + -0.018225688487291336, + -0.018254300579428673, + -0.08454164117574692, + -0.045452602207660675, + -0.02107454277575016, + 0.0101585378870368, + 0.049243465065956116, + -0.03222804144024849, + -0.03512844443321228, + -0.01324399746954441, + 0.03240227326750755, + 0.0057250140234827995, + 0.05636795237660408, + -0.09251868724822998, + -2.1162911423289188e-08, + -0.016771692782640457, + 0.004083832260221243, + -0.021548857912421227, + -0.04790940135717392, + 0.06912551075220108, + -0.07127994298934937, + 0.03305109217762947, + 0.019008547067642212, + -0.03160347416996956, + -0.011439325287938118, + 0.045512691140174866, + -0.0206855908036232, + -0.010748249478638172, + -0.04518976807594299, + 0.04599732905626297, + 0.11719086021184921, + -0.034627337008714676, + 0.094306081533432, + -0.053588882088661194, + 0.0025265172589570284, + -0.05338344722986221, + 0.0118170864880085, + -0.05960485711693764, + -0.034046370536088943, + 0.06372832506895065, + 0.022490382194519043, + -0.07554978877305984, + -0.009615804068744183, + 0.08608522266149521, + -0.008905387483537197, + 0.01321640145033598, + 0.11427649110555649, + 0.015398635528981686, + -0.03225712105631828, + -0.073818139731884, + -0.05364612489938736, + 0.03860261291265488, + -0.04680076614022255, + -0.0029381797648966312, + 0.08199534565210342, + -0.04834988713264465, + -0.064531609416008, + 0.013087661005556583, + -0.021245097741484642, + -0.040075670927762985, + 0.006180770695209503, + 0.09146717935800552, + -0.027855398133397102, + -0.1015227809548378, + -0.028348689898848534, + -0.016633205115795135, + -0.011123153381049633, + 0.0061511085368692875, + 0.07819132506847382, + -0.07253272831439972, + 0.05788509547710419, + -0.014126362279057503, + 0.09448335319757462, + -0.046165239065885544, + 0.01884337142109871, + 0.1492016762495041, + -0.015357952564954758, + 0.03710542246699333, + 0.01230787392705679 + ], + "battery-high-bold||charged,charger,charging,power": [ + -0.02534440904855728, + 0.07271758466959, + -0.0824255719780922, + 0.03423827141523361, + 0.029191507026553154, + -0.05395560339093208, + 0.08283654600381851, + 0.012557817623019218, + -0.01718360371887684, + 0.028123855590820312, + 0.04930287227034569, + 0.0009238029597327113, + 0.04669438302516937, + 0.052085597068071365, + 0.023173648864030838, + 0.03666426241397858, + 0.0747595727443695, + -0.032952066510915756, + -0.032663024961948395, + 0.05684756115078926, + -0.029596848413348198, + 0.0035298937000334263, + 0.09362493455410004, + 0.0419340543448925, + 0.06561541557312012, + 0.024867363274097443, + 0.05846283212304115, + -0.025332283228635788, + -0.05811884626746178, + -0.11110048741102219, + -0.00786584708839655, + 0.05081578344106674, + 0.09635762125253677, + -0.014064176939427853, + 0.02919810265302658, + 0.049030013382434845, + -0.0061600347980856895, + 0.025246528908610344, + 0.0323701947927475, + 0.002212970983237028, + 0.04895501956343651, + -0.07355985045433044, + 0.05901328846812248, + 0.033999353647232056, + -0.0410492978990078, + 0.03185683861374855, + 0.002877244958654046, + 0.0023299488238990307, + 0.02318597584962845, + -0.012543936260044575, + 0.02373061701655388, + -0.09946777671575546, + -0.06926728785037994, + -0.04004978761076927, + -0.020612571388483047, + 0.02146259695291519, + -0.05758468061685562, + -0.0028856133576482534, + 0.11199446767568588, + -0.08935629576444626, + -0.06395746022462845, + 0.02040419727563858, + 0.0306706540286541, + 0.03273852542042732, + 0.018960073590278625, + -0.0224028080701828, + 0.007740437518805265, + 0.006790144369006157, + -0.08016005158424377, + 0.04524809867143631, + 0.06863479316234589, + 0.02099449932575226, + -0.05061465501785278, + -0.0798296108841896, + -0.07346095144748688, + -0.008027611300349236, + 0.024174733087420464, + 0.049575045704841614, + -0.04541115462779999, + -0.00642413878813386, + -0.026744840666651726, + -0.10327906161546707, + -0.07751303166151047, + 0.02735067903995514, + 0.08912645280361176, + 0.02533033676445484, + -0.015356609597802162, + -0.098582424223423, + -0.05053596571087837, + -0.04152603819966316, + -0.011204955168068409, + 0.051872074604034424, + 0.02815624140202999, + 0.003914010711014271, + -0.1366330087184906, + 0.054099831730127335, + 0.05608956143260002, + -0.039499860256910324, + -0.04816315695643425, + 0.0904567763209343, + 0.11633963137865067, + 0.05875713378190994, + 0.024966111406683922, + -0.023628147318959236, + -0.012688351795077324, + -0.044489625841379166, + -0.0047981091775000095, + 0.065162293612957, + 0.02213195152580738, + 0.01723993942141533, + 0.04070856794714928, + -0.06238570436835289, + -0.007806319743394852, + -0.008270826190710068, + -0.026737671345472336, + 0.04978902265429497, + -0.0580778494477272, + -0.012454249896109104, + 0.11103536188602448, + -0.0049742599949240685, + 0.017274530604481697, + -0.04567475989460945, + -0.02863767370581627, + -0.0826961025595665, + 0.0028089971747249365, + 0.020568570122122765, + 0.08536581695079803, + -2.2841111546064488e-33, + 0.062094125896692276, + 0.022334350273013115, + -0.013821806758642197, + 0.04755095764994621, + 0.002687526401132345, + 0.008065324276685715, + -0.04287084564566612, + -0.007909820415079594, + -0.030994463711977005, + 0.048574239015579224, + 0.021378275007009506, + 0.07870730012655258, + 0.041844382882118225, + 0.09724980592727661, + 0.03688497468829155, + -0.04651814326643944, + -0.020578308030962944, + -0.029942311346530914, + -0.03090146742761135, + 0.024186141788959503, + -0.047597870230674744, + 0.052362650632858276, + -0.05220156908035278, + 0.030541151762008667, + -0.005058209411799908, + -0.020044667646288872, + 0.0918087288737297, + -0.039788659662008286, + -0.03526414930820465, + 0.011289519257843494, + 0.05752434954047203, + 0.02759416215121746, + 0.04392395541071892, + 0.011206932365894318, + -0.07447085529565811, + 0.07704363763332367, + -0.0002996737021021545, + -0.019139515236020088, + 0.009142821654677391, + -0.043250009417533875, + -0.07938623428344727, + 0.011486352421343327, + -0.06692541390657425, + -0.037638477981090546, + 0.02676377259194851, + 0.0705065131187439, + -0.03717702999711037, + -0.1007554903626442, + -0.06113471835851669, + 0.040558431297540665, + -0.1050434559583664, + -0.0757874846458435, + 0.05511903390288353, + 0.04064921289682388, + -0.014519226737320423, + 0.055466633290052414, + -0.033372215926647186, + 0.06843951344490051, + 0.043780505657196045, + 0.02930689975619316, + 0.01918727159500122, + -0.0023299294989556074, + -0.04367683827877045, + -0.037449732422828674, + -0.0771351084113121, + -0.004939234349876642, + -0.07389780879020691, + -0.013069906271994114, + -0.0009431657381355762, + 0.044429711997509, + 0.07167967408895493, + 0.027321841567754745, + 0.05794892460107803, + -0.011632895097136497, + -3.846510298899375e-05, + 0.07661369442939758, + 0.014907478354871273, + -0.003611833555623889, + 0.015113740228116512, + -0.07029350847005844, + -0.10005205124616623, + -0.014480018056929111, + -0.009721658192574978, + 0.0738239586353302, + -0.04172302782535553, + -0.006899205502122641, + -0.07240916788578033, + -0.061180830001831055, + -0.017523163929581642, + 0.06679971516132355, + -0.022644752636551857, + -0.015037190169095993, + -0.008002224378287792, + -0.10645108669996262, + -0.04415779560804367, + -4.7368372249264656e-36, + 0.04872751608490944, + 0.07712092995643616, + 0.01782548800110817, + -0.024508437141776085, + -0.015360494144260883, + 0.05619662255048752, + -0.06118768826127052, + 0.008084812201559544, + -0.07734476774930954, + -0.0320911668241024, + 0.007188751827925444, + 0.02269093319773674, + -0.06957405060529709, + -0.051201287657022476, + 0.09029608219861984, + 0.00737368268892169, + 0.042040642350912094, + 0.016324041411280632, + 0.02709634229540825, + 0.02777659334242344, + -0.002180307637900114, + 0.03321269527077675, + -0.02665421925485134, + 0.07770630717277527, + 0.04827963560819626, + 0.027554672211408615, + -0.013914089649915695, + -0.053729280829429626, + 0.015007259324193, + -0.017431292682886124, + -0.019412042573094368, + -0.05984426662325859, + 0.08075645565986633, + 0.064472496509552, + -0.09495298564434052, + 0.008838538080453873, + 0.029847359284758568, + -0.009705496951937675, + 0.026994982734322548, + -0.011360926553606987, + -0.01540382206439972, + 0.006787177640944719, + -0.007744702510535717, + 0.008299355395138264, + -0.054755453020334244, + -0.0551055483520031, + -0.117487333714962, + -0.027863759547472, + 0.0011423638788983226, + 0.08940043300390244, + -0.06296674907207489, + -0.06284693628549576, + -0.014243788085877895, + 0.08005155622959137, + -0.10749901086091995, + -0.09774980694055557, + 0.029812389984726906, + 0.011650335043668747, + -0.0747874528169632, + 0.00016024750948417932, + 0.05834481492638588, + 0.02336631901562214, + -0.03134644404053688, + -0.016960972920060158, + -0.05221917852759361, + -0.0633106529712677, + 0.05203677713871002, + -0.00041254181996919215, + 0.032517191022634506, + -0.029027529060840607, + -0.018268046900629997, + -0.03437972441315651, + 0.02902551181614399, + 0.019030988216400146, + -0.027776099741458893, + -0.0811036005616188, + 0.012274489738047123, + -0.005084938835352659, + 0.014830742962658405, + -0.02959415875375271, + 0.03296841308474541, + 0.02145109325647354, + -0.025136234238743782, + -0.047450657933950424, + -0.05757597088813782, + -0.00357275502756238, + 0.00801082793623209, + 0.02488662116229534, + 0.010062395595014095, + -0.0582658126950264, + -0.008011234924197197, + 0.018016323447227478, + -0.06960952281951904, + 0.06843086332082748, + -0.08471997827291489, + -2.0353818186436e-08, + -0.018824873492121696, + -0.0046539148315787315, + -0.053440045565366745, + -0.01715479977428913, + 0.06064805015921593, + -0.053717367351055145, + -0.014566105790436268, + 0.024827368557453156, + -0.016782907769083977, + -0.044336434453725815, + 0.0680961161851883, + -0.04132048040628433, + -0.012377784587442875, + -0.06859716773033142, + 0.08286421746015549, + 0.050863076001405716, + -0.03375726938247681, + 0.10288519412279129, + -0.04833752289414406, + -0.03706732019782066, + -0.04812481999397278, + 0.03756185248494148, + 0.023092543706297874, + -0.019929049536585808, + 0.055634792894124985, + 0.04822402819991112, + -0.06492933630943298, + 0.015420451760292053, + 0.06712142378091812, + 0.010192564688622952, + 0.008164528757333755, + 0.09351401031017303, + 0.016018448397517204, + -0.004286586306989193, + -0.07933744043111801, + -0.03886236622929573, + -0.0219598226249218, + -0.05952317640185356, + 0.039470747113227844, + 0.07285789400339127, + -0.0271613709628582, + -0.07816987484693527, + -0.03569714352488518, + -0.0041661858558654785, + -0.027302438393235207, + -0.03598639369010925, + 0.07555092871189117, + -0.06860645115375519, + -0.05558519810438156, + -0.023871473968029022, + -0.05074945464730263, + 0.03863196820020676, + 0.04205677658319473, + 0.05674741044640541, + -0.06959658116102219, + 0.04121742770075798, + -0.04259779304265976, + 0.07971911132335663, + -0.05305159091949463, + -0.005315870977938175, + 0.2456246018409729, + -0.06662125885486603, + 0.01124508399516344, + 0.0402434803545475 + ], + "battery-low-bold||charged,charger,charging,power": [ + -0.007261628285050392, + 0.10629275441169739, + -0.07302379608154297, + 0.06072276458144188, + 0.03379799798130989, + -0.040165599435567856, + 0.07313831150531769, + 0.026330463588237762, + 0.004670669790357351, + 0.029630109667778015, + 0.08643529564142227, + -0.0291664469987154, + 0.07355982065200806, + 0.06330400705337524, + 0.0051458850502967834, + 0.0472039058804512, + 0.059996627271175385, + -0.013094342313706875, + -0.029071591794490814, + 0.0779535099864006, + -0.028538774698972702, + 0.00825381837785244, + 0.08183840662240982, + 0.021398797631263733, + 0.05367523059248924, + 0.014232384040951729, + 0.05226810649037361, + -0.03226596117019653, + -0.0431009940803051, + -0.10661767423152924, + 0.007162937894463539, + 0.04156892001628876, + 0.11858873069286346, + -0.020560752600431442, + 0.04361625388264656, + 0.04409041628241539, + 0.03335630148649216, + 0.05764229968190193, + 0.03768375515937805, + 0.014310304075479507, + 0.04382433742284775, + -0.05392203480005264, + 0.04103982448577881, + 0.04781012237071991, + -0.04421238601207733, + 0.03663945943117142, + -0.003272897331044078, + -0.005703416187316179, + 0.0030739170033484697, + -0.025856515392661095, + 0.048099059611558914, + -0.0880642831325531, + -0.1045372411608696, + -0.03295186161994934, + -0.03618019074201584, + 0.010891733691096306, + -0.0730707049369812, + 0.0028572638984769583, + 0.1016116738319397, + -0.06951353698968887, + -0.027218371629714966, + -0.00925777480006218, + 0.025350339710712433, + 0.026704268530011177, + 0.012659093365073204, + -0.0193534754216671, + 0.011488777585327625, + 0.00961144920438528, + -0.08796246349811554, + 0.022650649771094322, + 0.05869285389780998, + 0.012000071816146374, + -0.04406525567173958, + -0.05358313024044037, + -0.10234344750642776, + -0.00920945592224598, + 0.03162110596895218, + 0.05890272930264473, + -0.04975979030132294, + 0.0022086910903453827, + -0.0471990704536438, + -0.11081179976463318, + -0.10172457247972488, + 0.030263548716902733, + 0.06601449102163315, + 0.02165558561682701, + 0.0014542925637215376, + -0.10961046814918518, + -0.0415969118475914, + -0.05326682701706886, + -0.014391252771019936, + 0.07435248047113419, + 0.028798265382647514, + -0.02048802562057972, + -0.1243508830666542, + 0.04396875575184822, + 0.08499747514724731, + -0.013977602124214172, + -0.07278453558683395, + 0.10376568138599396, + 0.10539187490940094, + 0.04971804842352867, + 0.024674925953149796, + -0.041962698101997375, + -0.010318257845938206, + -0.0433528870344162, + -0.014902113005518913, + 0.03441357985138893, + 0.005747842602431774, + 0.018496129661798477, + 0.05109260976314545, + -0.06316571682691574, + -0.01583118923008442, + -0.023469649255275726, + -0.03141451254487038, + 0.03404340147972107, + -0.06489256769418716, + -0.013674886897206306, + 0.11414454877376556, + 0.015114943496882915, + 0.001004609395749867, + -0.05007733777165413, + -0.026999136433005333, + -0.08545451611280441, + 0.0003479782026261091, + 0.028592461720108986, + 0.06427516788244247, + -2.1051630781868795e-33, + 0.07905732095241547, + 0.0031913896091282368, + -0.014998164027929306, + 0.027634048834443092, + 0.025417812168598175, + 0.018253730610013008, + -0.05637320876121521, + -0.02849980629980564, + -0.02895301766693592, + 0.056378431618213654, + 0.03872084990143776, + 0.056148793548345566, + 0.046180594712495804, + 0.06324776262044907, + 0.04880570247769356, + -0.043047841638326645, + -0.01858583278954029, + -0.049052223563194275, + -0.00627455860376358, + 0.03140206262469292, + -0.0714200809597969, + 0.07032322883605957, + -0.038443055003881454, + 0.03032717853784561, + -0.009577510878443718, + -0.013675440102815628, + 0.09994048625230789, + -0.0560070276260376, + -0.04368143528699875, + 0.007405524607747793, + 0.035929545760154724, + 0.044631507247686386, + 0.0406867116689682, + -0.0009642276563681662, + -0.061122387647628784, + 0.07675934582948685, + -0.002853034995496273, + -0.01355972234159708, + 0.001380133326165378, + -0.07293082028627396, + -0.07918556779623032, + 0.017473239451646805, + -0.06847086548805237, + -0.06698442250490189, + 0.030360065400600433, + 0.030142612755298615, + 0.002274530939757824, + -0.1000593900680542, + -0.052313704043626785, + 0.039127856492996216, + -0.09471035748720169, + -0.07371830195188522, + 0.04212387278676033, + 0.03830865025520325, + 0.009061582386493683, + 0.03698910027742386, + -0.050376903265714645, + 0.052236542105674744, + 0.021861735731363297, + 0.015655387192964554, + 0.031098375096917152, + -0.013054830022156239, + -0.04727133736014366, + -0.059810519218444824, + -0.05825928971171379, + -0.01130701880902052, + -0.07802600413560867, + -0.04269396513700485, + -0.022815296426415443, + 0.015257824212312698, + 0.05269722640514374, + 0.029052859172225, + 0.06345837563276291, + 0.003083077957853675, + 0.02692287229001522, + 0.09520747512578964, + 0.04949713125824928, + -0.02711394988000393, + 0.003756715217605233, + -0.07621719688177109, + -0.08081118017435074, + -0.0050465720705688, + -0.03434757888317108, + 0.09794875979423523, + -0.03183339163661003, + -0.013950860127806664, + -0.03801616281270981, + -0.01944408006966114, + -0.02159956283867359, + 0.04034384712576866, + -0.039388976991176605, + -0.04631256312131882, + -0.05823022499680519, + -0.09305761754512787, + -0.014831368811428547, + -4.587562772868274e-34, + 0.03347667306661606, + 0.06523493677377701, + 0.014232431538403034, + -0.00546965841203928, + -0.008637798018753529, + 0.05495994910597801, + -0.020395180210471153, + -0.01629304327070713, + -0.035788364708423615, + -0.009363078512251377, + 0.00039870847831480205, + 0.02495071478188038, + -0.06355855613946915, + -0.04098760709166527, + 0.08780981600284576, + 0.03469564765691757, + 0.023243118077516556, + 0.004727483727037907, + 0.0561734139919281, + 0.059614147990942, + -0.0011653949040919542, + 0.06102446839213371, + -0.03732576593756676, + 0.07825452834367752, + 0.06571219116449356, + 0.037027861922979355, + 0.007705406751483679, + -0.03865758702158928, + -0.006298304069787264, + -0.04082641750574112, + -0.005927284248173237, + -0.05788419395685196, + 0.09404734522104263, + 0.05423017218708992, + -0.10454258322715759, + 0.0051625920459628105, + 0.016029372811317444, + 0.0031762474682182074, + 0.01639922522008419, + -0.009662694297730923, + -0.014635183848440647, + 0.020797748118638992, + 0.00374471303075552, + 0.00724788848310709, + -0.0668766126036644, + -0.0788971483707428, + -0.10567820072174072, + -0.034306786954402924, + -0.008073172532022, + 0.07100770622491837, + -0.0627942904829979, + -0.0701104924082756, + -0.025954660028219223, + 0.08649091422557831, + -0.09452316164970398, + -0.09893683344125748, + 0.03953391686081886, + 0.031202487647533417, + -0.05099615082144737, + 0.029644975438714027, + 0.032208167016506195, + 0.010525302961468697, + -0.017067482694983482, + -0.03988170251250267, + -0.06916128844022751, + -0.05989233776926994, + 0.051592741161584854, + 0.03174920007586479, + 0.0175122432410717, + -0.04846592992544174, + 0.009816521778702736, + -0.021905073896050453, + 0.04278542101383209, + -0.0129892872646451, + -0.012479846365749836, + -0.06904547661542892, + -0.0052949064411222935, + -0.009921344928443432, + -0.007288079708814621, + -0.03361072018742561, + 0.04705810546875, + 0.012803319841623306, + -0.03460606932640076, + -0.0663573294878006, + -0.04968180134892464, + -0.007524497341364622, + 0.016833042725920677, + 0.019515151157975197, + -0.0019978589843958616, + -0.03704295679926872, + -0.023166900500655174, + 0.029971608892083168, + -0.014137351885437965, + 0.0866643562912941, + -0.10147660225629807, + -2.0490796615035833e-08, + -0.018678346648812294, + -0.014303538016974926, + -0.029329443350434303, + -0.023261090740561485, + 0.05224841088056564, + -0.05179841071367264, + -0.036414992064237595, + -0.015284819528460503, + -0.01778888888657093, + -0.021266646683216095, + 0.07452709227800369, + -0.044203873723745346, + -0.014993728138506413, + -0.058603864163160324, + 0.0843181312084198, + 0.0915491059422493, + -0.0340985432267189, + 0.08351093530654907, + -0.04506269469857216, + -0.032797910273075104, + -0.04760697856545448, + 0.03240298852324486, + -0.00627144193276763, + -0.021254301071166992, + 0.0625867024064064, + 0.018319742754101753, + -0.03190163895487785, + -0.006925677414983511, + 0.06451366096735, + -0.03007512353360653, + 0.01450252253562212, + 0.13005255162715912, + 0.0332682840526104, + -0.013347519561648369, + -0.10719554871320724, + -0.029890986159443855, + -0.012109115719795227, + -0.050968561321496964, + 0.015264828689396381, + 0.07282175868749619, + -0.03485504910349846, + -0.0873081162571907, + -0.05351504683494568, + -0.016458185389637947, + -0.045121658593416214, + -0.03133233264088631, + 0.08366528898477554, + -0.07606689631938934, + -0.05868041142821312, + -0.017332104966044426, + -0.023167667910456657, + 0.03766791895031929, + 0.029250619933009148, + 0.05780140310525894, + -0.08067051321268082, + 0.04993767663836479, + -0.02191130444407463, + 0.07089576870203018, + -0.06178402900695801, + -0.03053865022957325, + 0.19991286098957062, + -0.03957066312432289, + 0.029308009892702103, + 0.011134094558656216 + ], + "battery-medium-bold||charged,charger,charging,power": [ + -0.0061729527078568935, + 0.07083508372306824, + -0.06555046141147614, + 0.06844984740018845, + 0.061759091913700104, + -0.03986175358295441, + 0.10496363043785095, + 0.01194660272449255, + -0.03874601051211357, + 0.04601896181702614, + 0.09037342667579651, + -0.05206537991762161, + 0.05277685448527336, + 0.07284615933895111, + -0.009934044443070889, + 0.030781909823417664, + 0.020864997059106827, + -0.01931172050535679, + -0.03369481861591339, + 0.07851611822843552, + -0.010846177116036415, + 0.02244412899017334, + 0.08796587586402893, + 0.014216883108019829, + 0.06428136676549911, + 0.014600706286728382, + 0.040861595422029495, + -0.035532210022211075, + -0.03746793419122696, + -0.12580949068069458, + -0.02402392402291298, + 0.0634375587105751, + 0.0967850610613823, + 0.0033773155882954597, + 0.034691281616687775, + 0.025711646303534508, + -0.0043051578104496, + 0.04893065243959427, + 0.019887709990143776, + 0.01333533599972725, + 0.05127313360571861, + -0.09552831202745438, + 0.05659475922584534, + 0.029414445161819458, + -0.048198431730270386, + 0.028310131281614304, + -0.006962265353649855, + 0.026492318138480186, + 0.0035001453943550587, + -0.005641463212668896, + 0.03912289813160896, + -0.10193155705928802, + -0.11574073880910873, + 0.0037656836211681366, + -0.010990616865456104, + 0.0018478387501090765, + -0.04900567978620529, + 0.046094972640275955, + 0.10051855444908142, + -0.09293627738952637, + -0.054814402014017105, + 0.01050750445574522, + 0.002490023151040077, + 0.039876941591501236, + 0.03894166648387909, + -0.009764830581843853, + 0.0012823456199839711, + 0.03726149722933769, + -0.09683317691087723, + 0.01614569127559662, + 0.08282364904880524, + 0.02799432910978794, + -0.05358413979411125, + -0.052317529916763306, + -0.05470608174800873, + -0.032663743942976, + 0.03581274300813675, + 0.06719399988651276, + -0.06459111720323563, + 0.04893789440393448, + -0.06018891930580139, + -0.08310052752494812, + -0.1041494607925415, + 0.02352115511894226, + 0.09774591028690338, + 0.02679651416838169, + -0.006243424490094185, + -0.09422595053911209, + -0.025536978617310524, + -0.05934598669409752, + -0.03319159150123596, + 0.08085861802101135, + -0.03777485340833664, + -0.01654699817299843, + -0.08069457858800888, + 0.026519527658820152, + 0.03023461624979973, + -0.027030406519770622, + -0.02876393496990204, + 0.07254379987716675, + 0.103693887591362, + 0.049592651426792145, + 0.03772852569818497, + -0.023425979539752007, + -0.032290779054164886, + -0.08337204903364182, + -0.013021011836826801, + 0.05939525365829468, + 0.0524652898311615, + 0.022129792720079422, + 0.050918079912662506, + -0.049305252730846405, + -0.03233775123953819, + -0.016442405059933662, + 0.02320977859199047, + 0.03940591961145401, + -0.05471048504114151, + 0.01237526535987854, + 0.1479114592075348, + -0.02462966926395893, + 0.01663094200193882, + -0.023200510069727898, + -0.05048040673136711, + -0.09329577535390854, + -0.0011405800469219685, + 0.026211386546492577, + 0.10826026648283005, + -2.6303326281610065e-33, + 0.04798627272248268, + -0.020797254517674446, + -0.028864555060863495, + 0.05409659445285797, + 0.0035771247930824757, + 0.029125481843948364, + -0.01716119796037674, + -0.0275257620960474, + -0.02586825005710125, + 0.003210679395124316, + 0.022574380040168762, + 0.1063026562333107, + 0.02112523466348648, + 0.07434055209159851, + 0.04754749312996864, + -0.012557053938508034, + 0.01373351737856865, + -0.005621980410069227, + -0.011549613438546658, + -0.0035773292183876038, + -0.04231666773557663, + 0.0800703689455986, + -0.04489370062947273, + 0.04853813722729683, + -0.010793703608214855, + -0.03731488808989525, + 0.10601629316806793, + -0.028889061883091927, + -0.03001341037452221, + 0.006562509573996067, + 0.03385177254676819, + 0.04637756943702698, + 0.04184286296367645, + 0.010128029622137547, + -0.05375057831406593, + 0.0908033475279808, + -0.0011294056894257665, + -0.015698719769716263, + 0.03458869829773903, + -0.07590463012456894, + -0.04981476441025734, + -0.0007448155665770173, + -0.07234656810760498, + -0.045393019914627075, + -0.026219163089990616, + 0.05115583539009094, + -0.014935082755982876, + -0.09352372586727142, + -0.05214067921042442, + 0.011819945648312569, + -0.08475498855113983, + -0.08661144226789474, + 0.08980496972799301, + 0.00714842788875103, + 0.052956052124500275, + 0.060756996273994446, + -0.03346274420619011, + 0.06725849211215973, + 0.021772295236587524, + 0.00516835181042552, + 0.03610503673553467, + -0.025737963616847992, + -0.004911006428301334, + -0.04542616754770279, + -0.04061982035636902, + 0.009124238975346088, + -0.10253001004457474, + -0.03135558217763901, + 0.023523399606347084, + 0.009032422676682472, + 0.0376112125813961, + 0.04564506188035011, + 0.05777304992079735, + 0.028881581500172615, + -0.005502596497535706, + 0.05139632150530815, + 0.013057214207947254, + -0.015740979462862015, + 0.0018680139910429716, + -0.03810368850827217, + -0.11945200711488724, + 0.006479870527982712, + -0.07576663792133331, + 0.10424374788999557, + -0.06112591549754143, + -0.0006121295737102628, + -0.018203333020210266, + -0.0517798513174057, + -0.019268646836280823, + 0.03487056493759155, + -0.06109987944364548, + -0.026116278022527695, + -0.018894806504249573, + -0.08739104866981506, + -0.04166613891720772, + -3.0789415882176047e-34, + 0.012806692160665989, + 0.03894420713186264, + -0.038288913667201996, + 0.01862393133342266, + 0.012111837044358253, + 0.039546895772218704, + -0.04717645049095154, + 0.012733697891235352, + -0.03332112357020378, + -0.036366067826747894, + 0.012729065492749214, + -0.006409734487533569, + -0.10771191120147705, + -0.061518214643001556, + 0.07092934846878052, + 0.053048647940158844, + 0.0038840752094984055, + 0.013046632520854473, + 0.05640234798192978, + 0.04555276408791542, + -0.029190516099333763, + -0.011346458457410336, + 0.003483528969809413, + 0.08892645686864853, + 0.034272853285074234, + 0.015956560149788857, + 0.02247629687190056, + -0.05025266110897064, + -0.03602305054664612, + -0.028561163693666458, + 0.02056962437927723, + -0.0746503472328186, + 0.08689315617084503, + 0.07429283857345581, + -0.08939918875694275, + 0.003716923762112856, + 0.06724849343299866, + -0.0038288950454443693, + 0.025015797466039658, + -0.008197745308279991, + 0.012977068312466145, + -0.004764165263622999, + -0.00674982788041234, + -0.006107756402343512, + -0.061752889305353165, + -0.09006132930517197, + -0.05517931655049324, + -0.08357571065425873, + -0.01914084702730179, + 0.06086575984954834, + -0.001086608157493174, + -0.06746997684240341, + -0.003610061714425683, + 0.029060393571853638, + -0.10816667228937149, + -0.06389710307121277, + 0.02891555428504944, + 0.024465523660182953, + -0.05216098204255104, + -0.005826347973197699, + 0.035526759922504425, + -0.027516672387719154, + -0.02038438990712166, + -0.04532715678215027, + -0.08649980276823044, + -0.0778689906001091, + 0.04056278243660927, + -0.015838855877518654, + -0.01326906681060791, + -0.021776052191853523, + -0.011899777688086033, + -0.006579720880836248, + 0.026195526123046875, + 0.007892116904258728, + -0.02460515685379505, + -0.09037740528583527, + -0.0031941947527229786, + -0.026814408600330353, + -0.017267389222979546, + -0.016276495531201363, + 0.04781898483633995, + 0.03174566105008125, + -0.033610258251428604, + -0.07008428871631622, + -0.04348134249448776, + -0.0068627758882939816, + 0.04410076513886452, + 0.03077070228755474, + -0.0037126142997294664, + -0.03435496240854263, + -0.017313284799456596, + 0.0048940107226371765, + -0.04186215624213219, + 0.04530034959316254, + -0.11380109190940857, + -2.020572864580572e-08, + 0.0036514948587864637, + -0.017588557675480843, + -0.06934083998203278, + -0.016315186396241188, + 0.021178383380174637, + -0.050470106303691864, + -0.011549444869160652, + -0.04464763402938843, + -0.012811161577701569, + -0.025195585563778877, + 0.08120270818471909, + -0.04645958170294762, + -0.0009474469698034227, + -0.018971960991621017, + 0.09573449939489365, + 0.054206039756536484, + -0.03470084071159363, + 0.06986809521913528, + -0.06288573145866394, + -0.047288380563259125, + -0.027262596413493156, + 0.039626166224479675, + -0.019595058634877205, + -0.008111526258289814, + 0.06873273104429245, + 0.04679364711046219, + -0.051725346595048904, + -0.0026163363363593817, + 0.07979339361190796, + 0.01407651137560606, + -0.003114043502137065, + 0.10564617812633514, + 0.01771504618227482, + 0.008758755400776863, + -0.13441459834575653, + -0.030657172203063965, + 0.016582701355218887, + -0.057822275906801224, + 0.014786901883780956, + 0.08276011049747467, + -0.010616983287036419, + -0.07184126228094101, + -0.032139573246240616, + -0.02070489525794983, + -0.03897205740213394, + -0.024798594415187836, + 0.11050020903348923, + -0.035559624433517456, + -0.08254741132259369, + 0.01756591908633709, + -0.01672687754034996, + 0.02488774061203003, + 0.012240024283528328, + 0.05206737294793129, + -0.043964631855487823, + 0.0231460053473711, + -0.021986959502100945, + 0.07712244987487793, + -0.04044636711478233, + -0.013285750523209572, + 0.17850163578987122, + -0.032145824283361435, + 0.05068650841712952, + 0.03350409120321274 + ], + "battery-plus-bold||charged,charger,charging,power": [ + -0.053689781576395035, + 0.09750747680664062, + -0.07676643878221512, + 0.051495261490345, + 0.0655149444937706, + -0.0026913892943412066, + 0.08943159878253937, + -0.04084402322769165, + -0.014537204056978226, + 0.04581012576818466, + 0.10830848664045334, + -0.03192499652504921, + 0.058771539479494095, + 0.04414784908294678, + 0.005782532040029764, + 0.01924198307096958, + -0.0050776805728673935, + 0.0012366187293082476, + -0.021182991564273834, + 0.030110111460089684, + -0.01427844911813736, + -0.0006543821655213833, + 0.08737180382013321, + 0.016266290098428726, + 0.09011458605527878, + 0.05162130668759346, + 0.018477262929081917, + -0.007018552161753178, + -0.008555348962545395, + -0.10573958605527878, + 0.018711954355239868, + 0.032936085015535355, + 0.10102597624063492, + -0.02860451117157936, + 0.009284974075853825, + -0.004709317814558744, + -0.01337837427854538, + 0.05590496584773064, + 0.03785356506705284, + -0.029226144775748253, + 0.033904481679201126, + -0.08579277247190475, + 0.05268864333629608, + 0.030055180191993713, + -0.049454446882009506, + 0.0011904165148735046, + -0.022042876109480858, + -0.03518790006637573, + 0.08038155734539032, + 0.022545021027326584, + 0.07206454128026962, + -0.08743519335985184, + -0.11787140369415283, + 0.0055171651765704155, + 0.0042177606374025345, + 0.022162042558193207, + -0.08152743428945541, + 0.02299230359494686, + 0.053790122270584106, + -0.10246552526950836, + -0.016742989420890808, + -0.013776939362287521, + 0.03156181052327156, + 0.04567486047744751, + 0.009543121792376041, + -0.024324731901288033, + -0.024614809080958366, + 0.05126242712140083, + -0.08762086927890778, + 0.05541389063000679, + 0.07144379615783691, + 0.010646175593137741, + -0.026475215330719948, + -0.06901104003190994, + -0.06494422256946564, + 0.024641739204525948, + 0.018257001414895058, + 0.05176660418510437, + -0.0502658486366272, + -0.00805251207202673, + -0.04774343594908714, + -0.08427365124225616, + -0.051469676196575165, + 0.03474254533648491, + 0.09518375247716904, + 0.031671322882175446, + -0.0156172513961792, + -0.10177665948867798, + -0.029701529070734978, + -0.06909172981977463, + -0.04263751953840256, + 0.04444866254925728, + 0.0037512555718421936, + -0.014729747548699379, + -0.12300385534763336, + 0.031998179852962494, + 0.025366755202412605, + 0.0033792525064200163, + -0.07774026691913605, + 0.06020651012659073, + 0.10492366552352905, + 0.05864923447370529, + 0.024993902072310448, + -0.038724254816770554, + 0.02130804769694805, + -0.07560558617115021, + -0.03807253763079643, + 0.04765859618782997, + 0.024216879159212112, + 0.00042703162762336433, + 0.059288155287504196, + -0.04716387018561363, + -0.00020402419613674283, + -0.021544136106967926, + -0.000705939601175487, + 0.06547515839338303, + -0.05409683287143707, + -0.004357447382062674, + 0.15813452005386353, + -0.0444449745118618, + 0.03915752097964287, + -0.0398893877863884, + -0.024635933339595795, + -0.08081179857254028, + -0.0028735361993312836, + -0.008266755379736423, + 0.09294796735048294, + -1.883049747179162e-33, + 0.05007585510611534, + 0.006178483832627535, + -0.029177790507674217, + 0.04516846314072609, + 0.03516802564263344, + 0.04789304733276367, + -0.04757505655288696, + 0.0015540334861725569, + -0.05443645641207695, + 0.03528600558638573, + 0.02287468872964382, + 0.03300725296139717, + 0.03404872491955757, + 0.08702398836612701, + 0.04068242385983467, + -0.017775077372789383, + -0.014690087176859379, + -0.06320100277662277, + -0.01738515868782997, + 0.02615143544971943, + -0.03274468705058098, + 0.04616069048643112, + -0.05701039731502533, + 0.061868008226156235, + 0.031008929014205933, + -0.002521135611459613, + 0.10157722979784012, + -0.011023326776921749, + -0.02472943253815174, + 0.014800334349274635, + 0.05094575509428978, + 0.05637173727154732, + -0.02146403305232525, + 0.026898259297013283, + -0.03765524551272392, + 0.08702494204044342, + 0.014301305636763573, + -0.025206230580806732, + 0.024579644203186035, + -0.06958537548780441, + -0.1013544499874115, + -0.02428361587226391, + -0.11683603376150131, + -0.09435439109802246, + 0.0028202158864587545, + 0.022128576412796974, + -0.02104337327182293, + -0.09290749579668045, + -0.021465517580509186, + 0.02796751633286476, + -0.11038552969694138, + -0.07961401343345642, + 0.05420605465769768, + 0.02700563333928585, + -0.020310889929533005, + 0.05244002491235733, + -0.06790482997894287, + 0.10080405324697495, + 0.020011484622955322, + 0.017833281308412552, + 0.019131910055875778, + -0.022687340155243874, + -0.00788333173841238, + -0.06735572218894958, + -0.06848118454217911, + 0.013983638025820255, + -0.07505110651254654, + -0.02429352141916752, + 0.027973517775535583, + 0.029573922976851463, + 0.0243997685611248, + 0.025188105180859566, + 0.03479523956775665, + 0.03799081966280937, + 0.021630289033055305, + 0.04035486653447151, + 0.015286365523934364, + -0.0245980154722929, + -0.00016321959265042096, + -0.048340409994125366, + -0.10028719156980515, + -0.012043975293636322, + -0.01787603832781315, + 0.10623615235090256, + -0.017878828570246696, + 0.00730487797409296, + -0.04728797823190689, + -0.058867547661066055, + 0.014488790184259415, + 0.03668311610817909, + -0.04183756932616234, + -0.022691039368510246, + -0.04669107124209404, + -0.06662333011627197, + -0.058100905269384384, + -9.618237324828626e-34, + 0.0001565720740472898, + 0.033173009753227234, + -0.03831682726740837, + -0.035237569361925125, + -0.0204730574041605, + 0.0516241155564785, + -0.03060421161353588, + -0.054547976702451706, + -0.05622687190771103, + -0.04729985073208809, + 0.004006763454526663, + 0.03863993659615517, + -0.10141836851835251, + -0.043292026966810226, + 0.055182334035634995, + 0.03260122239589691, + -0.02261759340763092, + 0.009693299420177937, + 0.04518640786409378, + 0.052705973386764526, + -0.009120950475335121, + 0.01894318126142025, + 0.0032195684034377337, + 0.06539183855056763, + 0.06785079091787338, + 0.05057807266712189, + 0.016053393483161926, + -0.03304240107536316, + 0.02414029650390148, + -0.043289948254823685, + 0.016768891364336014, + -0.039090994745492935, + 0.04620447754859924, + 0.06185920163989067, + -0.09044641256332397, + -0.0033639182802289724, + 0.03691304102540016, + 0.015672879293560982, + 0.05090199410915375, + 0.024748899042606354, + 0.00132039375603199, + -0.030049415305256844, + 0.01954680122435093, + 0.04230906441807747, + -0.02901029773056507, + -0.0832316130399704, + -0.06372297555208206, + -0.031189266592264175, + -0.05239340290427208, + 0.0464274138212204, + -0.02559848316013813, + -0.057774946093559265, + -0.06278175115585327, + 0.05616491660475731, + -0.07224573194980621, + -0.0965055599808693, + 0.05295124277472496, + 0.0070846653543412685, + -0.03768431395292282, + 0.0063400971703231335, + 0.013582071289420128, + -0.001155033358372748, + -0.0003615425666794181, + -0.04886298626661301, + -0.09275207668542862, + -0.05026790872216225, + 0.05506384000182152, + 0.0029755535069853067, + 0.0256955586373806, + -0.045963868498802185, + 0.020416216924786568, + -0.009943190962076187, + 0.00635365629568696, + 0.014151799492537975, + -0.04646730422973633, + -0.06324797123670578, + -0.01334348227828741, + -0.02655213139951229, + 0.018992528319358826, + -0.03469981253147125, + 0.02521863766014576, + -0.0063737304881215096, + -0.0010006678057834506, + -0.05268936976790428, + -0.058007266372442245, + -0.014395478181540966, + 0.007757050916552544, + 0.08598048239946365, + -0.0045257131569087505, + -0.062069375067949295, + -0.009390313178300858, + 0.06442870199680328, + -0.08283258229494095, + 0.0806986391544342, + -0.10157269984483719, + -2.0445911630417868e-08, + 0.011965646408498287, + -0.024893349036574364, + -0.0732060894370079, + -0.05277777835726738, + 0.05001088231801987, + -0.06115592643618584, + -0.028452550992369652, + -0.025710605084896088, + -0.025065915659070015, + -0.04028600454330444, + 0.08305798470973969, + -0.02402910403907299, + -0.008599117398262024, + -0.03717683628201485, + 0.041930973529815674, + 0.10360746085643768, + -0.008419903926551342, + 0.07998502999544144, + -0.05908021703362465, + 0.0110913822427392, + -0.04279431700706482, + 0.0558161735534668, + -0.04421284422278404, + 0.001507546636275947, + 0.0389120914041996, + 0.05633685365319252, + -0.030606180429458618, + -0.015238343738019466, + 0.07895978540182114, + 0.005055828019976616, + 0.03951210528612137, + 0.11237811297178268, + 0.003649587044492364, + 0.01684514433145523, + -0.08501403778791428, + -0.048129841685295105, + 0.02451966144144535, + -0.038115933537483215, + 0.03143301233649254, + 0.08428309857845306, + -0.04489891231060028, + -0.08193118125200272, + -0.001975797116756439, + -0.0031795240938663483, + -0.01965102180838585, + -0.007516609504818916, + 0.09651295095682144, + -0.08350852131843567, + -0.10556816309690475, + -0.02512217126786709, + -0.006555782165378332, + 0.010254913941025734, + 0.05150557681918144, + 0.0568329319357872, + -0.07174917310476303, + 0.03589991480112076, + -0.0216078981757164, + 0.05440643057227135, + -0.005774948745965958, + 0.023475056514143944, + 0.16044585406780243, + -0.08672305941581726, + 0.054271623492240906, + 0.0008916222141124308 + ], + "battery-plus-vertical-bold||charged,charger,charging,power": [ + -0.05774044245481491, + 0.1145540401339531, + -0.09019630402326584, + 0.018946900963783264, + 0.020678237080574036, + 0.003798899007961154, + 0.03571800887584686, + 0.004973853472620249, + -0.0011555211385712028, + 0.031009886413812637, + 0.11253491044044495, + 0.026226134970784187, + 0.070135697722435, + 0.04400826245546341, + 0.010368173941969872, + 0.024004317820072174, + -0.0032372225541621447, + 0.02431141957640648, + -0.029243098571896553, + 0.030604269355535507, + -0.02536192536354065, + -0.03653527796268463, + 0.0790805071592331, + 0.003885391168296337, + 0.06472109258174896, + 0.07036270946264267, + 0.01919560506939888, + 0.028386659920215607, + 0.00271417573094368, + -0.11300806701183319, + 0.006254180334508419, + 0.05691828951239586, + 0.08983051031827927, + -0.022405143827199936, + 0.0031163354869931936, + -0.034893300384283066, + -0.008983150124549866, + 0.05481370911002159, + 0.032386664301157, + -0.03601010516285896, + 0.033631857484579086, + -0.10306597501039505, + 0.04905645549297333, + 0.041752249002456665, + -0.06277035176753998, + 0.011614692397415638, + 0.006593409460037947, + -0.039833735674619675, + 0.06895224004983902, + 0.028523482382297516, + 0.08315619081258774, + -0.09812548756599426, + -0.09994165599346161, + 0.043528731912374496, + 0.01375670451670885, + 0.03210753574967384, + -0.054011207073926926, + 0.014664847403764725, + 0.06506384909152985, + -0.1118098720908165, + 0.029169980436563492, + 0.0069945501163601875, + 0.010440930724143982, + 0.05010899156332016, + 0.0037893669214099646, + -0.031514644622802734, + -0.059028029441833496, + 0.06691297143697739, + -0.09798324108123779, + 0.06271002441644669, + 0.08350832015275955, + -0.01846967823803425, + -0.02789301797747612, + -0.09907615184783936, + -0.03407616913318634, + 0.023043936118483543, + 0.01736062951385975, + 0.045035433024168015, + -0.04020042344927788, + -0.004751404281705618, + -0.005565371364355087, + -0.05055921524763107, + -0.07408594340085983, + 0.07422234863042831, + 0.06426407396793365, + 0.03204062581062317, + 0.006577857304364443, + -0.10527510195970535, + -0.040538445115089417, + -0.08158811926841736, + -0.015516959130764008, + 0.03487939015030861, + -0.0005175043479539454, + -0.01815793104469776, + -0.12433435022830963, + -0.004281603265553713, + 0.014563356526196003, + -0.04850822687149048, + -0.07023721933364868, + 0.050983019173145294, + 0.11141426116228104, + 0.018794335424900055, + 0.04182637855410576, + -0.008929972536861897, + 0.02940702997148037, + -0.08497706800699234, + -0.04567074403166771, + 0.0396801233291626, + 0.026338696479797363, + 0.003019987139850855, + 0.04697670042514801, + -0.026689566671848297, + 0.0028666078578680754, + 0.006184894125908613, + -0.003394161118194461, + 0.06809981912374496, + -0.05217422544956207, + 0.003546551801264286, + 0.1317012906074524, + -0.05325506627559662, + 0.028291787952184677, + -0.01601087860763073, + -0.03183016926050186, + -0.07856440544128418, + 0.0037299145478755236, + 0.023201176896691322, + 0.08427488058805466, + -2.2171276294057562e-33, + 0.049615100026130676, + -0.016908051446080208, + 0.002314518205821514, + 0.0426311157643795, + 0.056967057287693024, + 0.04713927209377289, + -0.05399565026164055, + 0.01030962448567152, + -0.04797758534550667, + 0.06927680969238281, + 0.030130423605442047, + 0.04762929677963257, + 0.03033880889415741, + 0.10742085427045822, + 0.03073769062757492, + -0.05812988802790642, + -0.012411973439157009, + -0.05738447234034538, + -0.05199350789189339, + 0.00373198208399117, + -0.048576466739177704, + 0.012372692115604877, + -0.043967463076114655, + 0.059448521584272385, + 0.033017847687006, + -0.012575631029903889, + 0.09239526838064194, + -0.02717745117843151, + -0.058896902948617935, + 0.022918973118066788, + 0.00809417013078928, + 0.0335562601685524, + -0.004335306119173765, + 0.0047751180827617645, + -0.03660575672984123, + 0.10131999850273132, + 0.006533470470458269, + -0.03935184329748154, + 0.02190537378191948, + -0.058224622160196304, + -0.11906896531581879, + -0.04030757024884224, + -0.10322840511798859, + -0.08952797204256058, + 0.01717851310968399, + 0.027269696816802025, + -0.004496689885854721, + -0.10898195952177048, + -0.035562414675951004, + 0.028569184243679047, + -0.10094822198152542, + -0.06822855025529861, + 0.05904768407344818, + 0.006481714081019163, + 4.362795880297199e-05, + 0.03899219259619713, + -0.08889145404100418, + 0.10280732065439224, + -0.01523995865136385, + 0.02043684385716915, + 0.01318855956196785, + -0.028727753087878227, + -0.040971413254737854, + -0.06876544654369354, + -0.06893385946750641, + 0.0056052543222904205, + -0.08454068750143051, + -0.029590453952550888, + 0.04155319184064865, + 0.051421869546175, + 0.04079410061240196, + 0.01158822700381279, + 0.023200424388051033, + 0.03374425694346428, + -0.012765510939061642, + 0.04276032745838165, + 0.0061662402004003525, + -0.010592712089419365, + 0.02926390804350376, + -0.023262502625584602, + -0.08050253242254257, + -0.013339345343410969, + 0.008828835561871529, + 0.05784732475876808, + -0.02256762608885765, + -0.00586521252989769, + -0.03116988018155098, + -0.059857092797756195, + 0.0133326081559062, + 0.02326197177171707, + -0.07438044250011444, + -0.019096611067652702, + -0.013577514328062534, + -0.05634002014994621, + -0.041791364550590515, + -4.467282150130307e-34, + 0.0019460307667031884, + 0.014690078794956207, + -0.03348719701170921, + -0.05166347697377205, + -0.029663385823369026, + 0.04493086785078049, + -0.023723650723695755, + -0.03295068442821503, + -0.08705747872591019, + -0.024651436135172844, + 0.007450819946825504, + 0.05912238359451294, + -0.09791653603315353, + -0.04421138018369675, + 0.075221486389637, + 0.0504923015832901, + -0.0574563667178154, + 0.005252583883702755, + 0.04792202636599541, + 0.061059173196554184, + 0.023420467972755432, + 0.009931032545864582, + 0.0009188767871819437, + 0.08143480122089386, + 0.09152484685182571, + 0.021050842478871346, + 0.04767175391316414, + -0.026784747838974, + 0.03295014426112175, + -0.024412594735622406, + 0.02730816788971424, + -0.05470666661858559, + 0.04002713784575462, + 0.050620924681425095, + -0.10266958177089691, + -0.01908719167113304, + 0.029513660818338394, + 0.024520374834537506, + 0.05085931718349457, + -0.005642716307193041, + -0.020330939441919327, + -0.023737339302897453, + 0.055262237787246704, + 0.022625623270869255, + -0.030954865738749504, + -0.07861021906137466, + -0.08117102831602097, + -0.0036501740105450153, + -0.03952141851186752, + 0.029242748394608498, + -0.06730546802282333, + -0.04964534193277359, + -0.03147703409194946, + 0.08916119486093521, + -0.05789120867848396, + -0.09411539882421494, + 0.03700431436300278, + 0.014254288747906685, + -0.040655311197042465, + -0.0222319308668375, + 0.03617037832736969, + -0.027210600674152374, + -0.009625294245779514, + -0.070389024913311, + -0.07411069422960281, + -0.0008683978230692446, + 0.06637917459011078, + -0.004131587687879801, + -0.019054600968956947, + -0.02844846434891224, + -0.005330873187631369, + 0.003002819139510393, + 0.007170672994107008, + -0.019775306805968285, + -0.04110844060778618, + -0.06229346990585327, + 0.010880361311137676, + -0.013645724393427372, + 0.01448461040854454, + -0.0463038794696331, + 0.004486013203859329, + -0.015135666355490685, + -0.012390094809234142, + -0.031034890562295914, + -0.09063064306974411, + -0.008067243732511997, + -0.017826702445745468, + 0.10592282563447952, + 0.03179116174578667, + -0.08251355588436127, + -0.030213013291358948, + 0.048034120351076126, + -0.10499250143766403, + 0.07167693972587585, + -0.060555923730134964, + -2.0564636216136023e-08, + -0.008114554919302464, + -0.049063511192798615, + -0.040579862892627716, + -0.04362310469150543, + 0.019377369433641434, + -0.041477520018815994, + -0.018179846927523613, + -0.016799475997686386, + 0.022481737658381462, + -0.03321641683578491, + 0.07273077219724655, + -0.00986268650740385, + -0.0024735338520258665, + -0.03978385031223297, + 0.03600314259529114, + 0.10134898871183395, + -0.008456772193312645, + 0.09550891071557999, + -0.04467280954122543, + 0.029281191527843475, + -0.021280571818351746, + 0.06962999701499939, + -0.02178308367729187, + 0.016766371205449104, + 0.03622804582118988, + 0.04960057511925697, + -0.055631235241889954, + -0.010741667822003365, + 0.09122168272733688, + -0.013564476743340492, + 0.032088279724121094, + 0.11102953553199768, + 0.032195210456848145, + -0.013313590548932552, + -0.07588478922843933, + -0.02761675976216793, + 0.032240401953458786, + -0.028492318466305733, + 0.01801132597029209, + 0.04161054641008377, + -0.03544846549630165, + -0.10164762288331985, + 0.03085406869649887, + -0.0006360594998113811, + 0.0006929982337169349, + -0.015554768033325672, + 0.12404602020978928, + -0.026998652145266533, + -0.08578674495220184, + -0.016238242387771606, + -0.04229400306940079, + 0.007424915209412575, + 0.07277324050664902, + 0.06610876321792603, + -0.05643052980303764, + 0.03292527794837952, + -0.033152833580970764, + 0.040984246879816055, + -0.028663253411650658, + 0.009454303421080112, + 0.1646791398525238, + -0.06383243948221207, + 0.024398770183324814, + 0.0026645592879503965 + ], + "battery-vertical-empty-bold||charged,charger,charging,power,dead": [ + -0.022604484111070633, + 0.10031943023204803, + -0.07607514411211014, + 0.03225799649953842, + 0.029952440410852432, + -0.04869762435555458, + -0.017158908769488335, + 0.003084109164774418, + 0.0393221378326416, + 0.006239754613488913, + 0.11782048642635345, + -0.01713404431939125, + 0.08938322961330414, + 0.07826634496450424, + -0.01249491423368454, + 0.03620569035410881, + -0.003197681624442339, + -0.05357657000422478, + -0.0466700941324234, + 0.0570918545126915, + -0.06490689516067505, + -0.01339766290038824, + 0.03928515687584877, + -0.008189765736460686, + 0.06552083790302277, + 0.06584065407514572, + 0.027483968064188957, + -0.043998513370752335, + -0.03590892255306244, + -0.10876771807670593, + -0.0022797584533691406, + 0.07958755642175674, + 0.05179912969470024, + -0.02745642513036728, + 0.11440707743167877, + 0.018603401258587837, + 0.017171410843729973, + 0.02963164448738098, + 0.02884906902909279, + -0.02287469245493412, + 0.033767618238925934, + -0.027737699449062347, + 0.016479814425110817, + 0.06285368651151657, + 0.0030185645446181297, + 0.06987318396568298, + 0.017417194321751595, + -0.02148071862757206, + 0.07228425145149231, + 0.011723380535840988, + 0.04797669127583504, + -0.11194216459989548, + -0.03976667299866676, + 0.021738052368164062, + -0.01647372357547283, + -0.009901008568704128, + -0.007901190780103207, + -0.00754135474562645, + 0.06927701085805893, + -0.08224175125360489, + 0.024719661101698875, + -0.0011911478359252214, + -0.016054198145866394, + 0.0272639449685812, + 0.018411068245768547, + -0.030305946245789528, + -0.030233601108193398, + 0.029310038313269615, + -0.08140721172094345, + 0.07440540194511414, + 0.09541855752468109, + -0.00915466621518135, + -0.05790054425597191, + -0.04623652994632721, + -0.08109602332115173, + 0.008480428718030453, + 0.033568739891052246, + 0.02762100100517273, + -0.04136350378394127, + 0.032690972089767456, + -0.00641745375469327, + -0.08665437996387482, + -0.08358081430196762, + 0.07239066064357758, + 0.04872910678386688, + 0.044664349406957626, + 0.012664856389164925, + -0.08787889778614044, + -0.0410630963742733, + -0.055718932300806046, + -0.039412129670381546, + 0.09010916948318481, + 0.013566785492002964, + -0.013220286928117275, + -0.1018681675195694, + 0.0033777221105992794, + 0.062170855700969696, + -0.03782161325216293, + -0.06868541240692139, + 0.08442535251379013, + 0.09281489253044128, + -0.002590370364487171, + 0.05870973691344261, + -0.0053254603408277035, + 0.014482720755040646, + -0.030426276847720146, + -0.03868807107210159, + 0.04046902433037758, + 0.03666955977678299, + 0.022153686732053757, + 0.07575550675392151, + -0.0372672863304615, + 0.028649352490901947, + 0.03849916160106659, + -0.0013313917443156242, + 0.04260764271020889, + -0.08626169711351395, + -0.04496082291007042, + 0.05924096331000328, + -0.02166857197880745, + -0.005681672599166632, + -0.02509276382625103, + -0.025095872581005096, + -0.06069251522421837, + 0.03410020470619202, + 0.05556905269622803, + 0.09952741116285324, + -3.689984031090673e-33, + 0.07530631124973297, + -0.05660595744848251, + 0.029550179839134216, + 0.05872344598174095, + 0.05141884461045265, + -0.0030534740071743727, + -0.023106519132852554, + -0.013735898770391941, + 0.00809236615896225, + 0.07599877566099167, + 0.05056339129805565, + 0.03771770000457764, + 0.04844498634338379, + 0.037319499999284744, + -0.01915440708398819, + -0.0819619819521904, + 0.035247065126895905, + -0.05499501898884773, + -0.06776954233646393, + 0.010514160618185997, + -0.02825484611093998, + 0.03626757115125656, + -0.04575556516647339, + 0.03839932754635811, + -0.008737212978303432, + 0.007238490041345358, + 0.058977555483579636, + -0.051206324249506, + -0.0862981379032135, + 0.012421355582773685, + 0.015830062329769135, + 0.034768376499414444, + 0.057695526629686356, + -0.02707301266491413, + -0.06219369173049927, + 0.08867323398590088, + 0.010603146627545357, + 0.008911610580980778, + -0.018598347902297974, + -0.07802116125822067, + -0.09088613092899323, + -0.04619374871253967, + -0.0418468713760376, + -0.07121208310127258, + 0.02600613422691822, + -0.016989555209875107, + 0.012100924737751484, + -0.0862351804971695, + -0.07374871522188187, + 0.056011367589235306, + -0.10289234668016434, + -0.0586070790886879, + 0.05644474923610687, + 0.03584340214729309, + -0.024765171110630035, + 0.054949697107076645, + -0.08413903415203094, + 0.03419665992259979, + -0.03842076659202576, + -0.024274509400129318, + 0.08215370029211044, + 0.013466156087815762, + -0.07991977781057358, + -0.07866489887237549, + -0.02164636366069317, + -0.03581971302628517, + -0.08943050354719162, + -0.050232965499162674, + 0.0316101498901844, + -0.0015305511187762022, + 0.06246675178408623, + -0.020684707909822464, + 0.020606359466910362, + 0.013444244861602783, + -0.02045043371617794, + 0.09152791649103165, + -0.019978269934654236, + -0.031976211816072464, + 0.012313712388277054, + -0.0309698935598135, + 0.018517659977078438, + -0.028298813849687576, + 0.015094202011823654, + 0.03792097792029381, + -0.01308402605354786, + 0.005549102555960417, + 0.009663685224950314, + -0.029156558215618134, + -0.021679045632481575, + 0.058960311114788055, + -0.07665793597698212, + -0.04505136236548424, + -0.03945824131369591, + -0.08179932832717896, + 0.013461647555232048, + 7.204718752205036e-34, + 0.04264025017619133, + 0.02863048017024994, + -0.011288145557045937, + -0.03078257478773594, + -0.0327589213848114, + 0.043820515275001526, + -0.040281686931848526, + 0.027694126591086388, + -0.03636370599269867, + -0.017715798690915108, + -0.006229826714843512, + 0.06383365392684937, + -0.09543231129646301, + -0.024623526260256767, + 0.10008645057678223, + 0.08090715855360031, + -0.06031695380806923, + -0.01515759527683258, + 0.020654158666729927, + 0.10177009552717209, + 0.02008952759206295, + 0.048045020550489426, + -0.04822314903140068, + 0.10336969792842865, + 0.08164075016975403, + 0.039779338985681534, + 0.05741735175251961, + -0.025345509871840477, + -0.008496184833347797, + -0.01077277958393097, + 0.0712440237402916, + -0.07950490713119507, + 0.08265859633684158, + 0.06110653281211853, + -0.07835526764392853, + -0.02815364859998226, + 0.04712613299489021, + 0.015851017087697983, + 0.038285233080387115, + -0.04539891332387924, + -0.042267173528671265, + 0.04359886795282364, + 0.05141656473278999, + -0.006806646939367056, + -0.07483715564012527, + -0.09311681240797043, + -0.0938798040151596, + -0.006306125782430172, + 0.01087780762463808, + 0.06226973235607147, + -0.0872173011302948, + -0.0650784894824028, + -0.006973260082304478, + 0.07254855334758759, + -0.05517500638961792, + -0.07208801060914993, + 0.01635916158556938, + 0.028817549347877502, + -0.056226808577775955, + -0.055109139531850815, + 0.056474603712558746, + 0.00452066445723176, + -0.021341439336538315, + -0.05673534795641899, + -0.05213555321097374, + -0.04002397507429123, + 0.07782770693302155, + 0.04644094407558441, + -0.007736630737781525, + -0.05420614778995514, + -0.0034804593306034803, + 0.02204805053770542, + -0.030238982290029526, + -0.06294790655374527, + 0.03529725223779678, + 0.012982112355530262, + -0.02602393366396427, + -0.008551395498216152, + -0.030033648014068604, + -0.03560246527194977, + 0.027990149334073067, + -0.04416608810424805, + -0.031843703240156174, + -0.029807208105921745, + -0.04708864912390709, + -0.03369782119989395, + 0.005436616484075785, + 0.07119215279817581, + 0.026260145008563995, + -0.0727149024605751, + -0.05885481461882591, + -0.019535358995199203, + -0.03348635882139206, + 0.08836321532726288, + -0.06748654693365097, + -2.2104334362893496e-08, + -0.02960335463285446, + -0.02971735969185829, + -0.006748576648533344, + -0.02015537954866886, + 0.01444665901362896, + -0.07629251480102539, + 0.023393386974930763, + -0.013330521993339062, + -0.002276067156344652, + -0.019412586465477943, + 0.02711818739771843, + -0.01731225848197937, + -0.03975968807935715, + -0.046374280005693436, + 0.031518448144197464, + 0.043560683727264404, + -0.07495526224374771, + 0.07830528914928436, + -0.03753663972020149, + -0.007862715981900692, + -0.04626965522766113, + 0.0328267440199852, + 0.00448760949075222, + -0.028794951736927032, + 0.07110734283924103, + 0.05230878293514252, + -0.047768525779247284, + -0.01617789827287197, + 0.0958489254117012, + -0.023303324356675148, + 0.011679214425384998, + 0.13694331049919128, + 0.07356847822666168, + -0.05478087440133095, + -0.09222569316625595, + -0.03336447849869728, + 0.049445293843746185, + -0.012980913743376732, + -0.01103352103382349, + -0.013674548827111721, + -0.029960673302412033, + -0.04353075474500656, + -0.007488143164664507, + -0.039819229394197464, + -0.022077754139900208, + -0.026880614459514618, + 0.12186223268508911, + -0.004279401618987322, + -0.04873053729534149, + -0.021958917379379272, + -0.06593844294548035, + 0.013656308874487877, + 0.013104865327477455, + 0.08342208713293076, + -0.036584995687007904, + 0.005976473912596703, + -0.02054743282496929, + 0.08910764008760452, + -0.04615439847111702, + -0.0036499900743365288, + 0.17492277920246124, + -0.04898020252585411, + -0.010472922585904598, + -0.023388853296637535 + ], + "battery-vertical-full-bold||charged,charger,charging,power": [ + -0.02818475477397442, + 0.1364281326532364, + -0.08154113590717316, + 0.019305549561977386, + 0.006797672249376774, + -0.03736170008778572, + 0.023150192573666573, + 0.030818266794085503, + 0.000960419129114598, + 0.023873768746852875, + 0.09431179612874985, + 0.032578203827142715, + 0.08042901754379272, + 0.04507456719875336, + 0.019780585542321205, + 0.04616397246718407, + 0.008963174186646938, + 0.0020615928806364536, + -0.03611141815781593, + 0.04552779719233513, + -0.027028119191527367, + -0.026900285854935646, + 0.04937626048922539, + 0.0076657445169985294, + 0.032895706593990326, + 0.08274843543767929, + 0.04754621163010597, + 0.009897208772599697, + -0.011128980666399002, + -0.13443492352962494, + -0.0009224002133123577, + 0.060625456273555756, + 0.10692695528268814, + -0.007829421199858189, + 0.03591930493712425, + -0.014385893940925598, + -0.015789365395903587, + 0.042901743203401566, + 0.03717740252614021, + -0.013042439706623554, + 0.045115165412425995, + -0.08743176609277725, + 0.049589015543460846, + 0.08233356475830078, + -0.039639249444007874, + 0.05646755173802376, + 0.034485992044210434, + -0.0098772794008255, + 0.05337563529610634, + 0.024682169780135155, + 0.07212071120738983, + -0.10906220972537994, + -0.07343710958957672, + 0.04597999528050423, + 0.0018135285936295986, + 0.01434146985411644, + -0.04748700186610222, + 0.006407978478819132, + 0.08144765347242355, + -0.08916234970092773, + -0.0030350936576724052, + 0.02992219105362892, + -0.00948211457580328, + 0.050299737602472305, + 0.0005206316127441823, + -0.03432073816657066, + -0.04931690916419029, + 0.05021611973643303, + -0.11086034774780273, + 0.04518227279186249, + 0.08323797583580017, + -0.00771462544798851, + -0.05861290171742439, + -0.09583594650030136, + -0.03972736373543739, + 0.00564152467995882, + 0.011036586947739124, + 0.046554405242204666, + -0.04300850257277489, + 0.010376634076237679, + -0.009398145601153374, + -0.08288275450468063, + -0.0686199814081192, + 0.05473565682768822, + 0.041532002389431, + 0.03980754688382149, + 0.005808710120618343, + -0.08243618160486221, + -0.041245367377996445, + -0.05943616107106209, + -0.00803565327078104, + 0.036798372864723206, + 0.014408592134714127, + -0.021477999165654182, + -0.12038743495941162, + 0.010603561997413635, + 0.034729499369859695, + -0.07541214674711227, + -0.05408192798495293, + 0.06560736894607544, + 0.10836444795131683, + -0.0038862123619765043, + 0.04953194037079811, + -0.002082146005704999, + -0.007289205677807331, + -0.05973120406270027, + -0.03887007012963295, + 0.04640447720885277, + 0.039970796555280685, + 0.0019338105339556932, + 0.03804652765393257, + -0.03794071823358536, + 0.01328077632933855, + 0.020862257108092308, + 0.0020229206420481205, + 0.04005388543009758, + -0.0723891630768776, + -0.0014877463690936565, + 0.10626327991485596, + -0.014326880685985088, + -0.0010820075403898954, + -0.010458002798259258, + -0.046733710914850235, + -0.06135191023349762, + 0.006225322373211384, + 0.06046540290117264, + 0.09020549058914185, + -2.691522068238099e-33, + 0.03679043427109718, + -0.02347046695649624, + 0.02550177276134491, + 0.04806719720363617, + 0.04164756089448929, + 0.027765223756432533, + -0.02086511440575123, + 0.021889755502343178, + -0.052119504660367966, + 0.08317025750875473, + 0.04366006702184677, + 0.07084144651889801, + 0.03663603961467743, + 0.10607340186834335, + 0.024594144895672798, + -0.07221465557813644, + -0.004900483880192041, + -0.01086907647550106, + -0.06636536121368408, + 0.00852261297404766, + -0.0524769201874733, + 0.021773068234324455, + -0.042569201439619064, + 0.046093497425317764, + 0.002235308289527893, + -0.028431657701730728, + 0.08147723227739334, + -0.03656596317887306, + -0.07762632519006729, + 0.018739767372608185, + -0.017190411686897278, + 0.030376417562365532, + 0.03955179080367088, + -0.010119529440999031, + -0.04352591186761856, + 0.08324361592531204, + 0.013036362826824188, + -0.018934551626443863, + 0.0052899932488799095, + -0.06297756731510162, + -0.11242328584194183, + -0.047211047261953354, + -0.0838274136185646, + -0.06803680956363678, + 0.005090333055704832, + 0.01990490034222603, + -0.018115533515810966, + -0.10594343394041061, + -0.04715787619352341, + 0.06406478583812714, + -0.09162549674510956, + -0.06694331765174866, + 0.0505526028573513, + 0.0003411842917557806, + 0.013359996490180492, + 0.028130674734711647, + -0.08510080724954605, + 0.08419577032327652, + -0.018225444480776787, + 0.0027773366309702396, + 0.01561816968023777, + -0.013535010628402233, + -0.09079225361347198, + -0.06573694944381714, + -0.07350832968950272, + 0.004308467730879784, + -0.08514952659606934, + -0.03926435858011246, + 0.040229037404060364, + 0.03893103078007698, + 0.05352546274662018, + 0.0020392299629747868, + 0.03899917006492615, + 0.005225600674748421, + -0.034155312925577164, + 0.06438598036766052, + 0.013150463812053204, + -0.006353144068270922, + 0.026053277775645256, + -0.01624726504087448, + -0.07912974059581757, + -0.0037164122331887484, + 0.01695425994694233, + 0.03149198368191719, + -0.031971678137779236, + -0.013949256390333176, + -0.023226207122206688, + -0.08192285895347595, + -0.006335188634693623, + 0.043700091540813446, + -0.06180444732308388, + -0.03546113520860672, + 0.005681686103343964, + -0.07551571726799011, + -0.02025032602250576, + 1.050252544993125e-34, + 0.05218164995312691, + 0.01909204199910164, + -0.021903887391090393, + -0.03906741738319397, + -0.020293191075325012, + 0.04676498845219612, + -0.0407712496817112, + 0.01937166042625904, + -0.07889831066131592, + -0.007039932068437338, + 0.020566314458847046, + 0.050643276423215866, + -0.0704653337597847, + -0.036024123430252075, + 0.07074154913425446, + 0.06538433581590652, + -0.03097611851990223, + 0.010167204774916172, + 0.029013317078351974, + 0.08335551619529724, + 0.009064913727343082, + 0.012963477522134781, + -0.012213781476020813, + 0.0842256173491478, + 0.0996825248003006, + 0.01255516242235899, + 0.05979353189468384, + -0.023082276806235313, + 0.03218541294336319, + 0.010598567314445972, + 0.02314971387386322, + -0.08632901310920715, + 0.04456821084022522, + 0.0437038280069828, + -0.11274317651987076, + -0.023782359436154366, + 0.027827627956867218, + 0.04361685737967491, + 0.05635286122560501, + -0.022437456995248795, + -0.032276250422000885, + -0.02829328551888466, + 0.02365863509476185, + 0.024262094870209694, + -0.0588093027472496, + -0.10042985528707504, + -0.09373985230922699, + -0.005666821263730526, + -0.01636415161192417, + 0.03836905211210251, + -0.09768566489219666, + -0.049315620213747025, + 0.018218256533145905, + 0.10123797506093979, + -0.05546804890036583, + -0.10075860470533371, + 0.01600480265915394, + 0.02289440669119358, + -0.05416133627295494, + -0.03373466059565544, + 0.05277331918478012, + -0.010807033628225327, + -0.02165915258228779, + -0.06736844778060913, + -0.06516782939434052, + -0.026959897950291634, + 0.07135149836540222, + 0.010793888941407204, + -0.01563001051545143, + -0.02859291061758995, + -0.027692070230841637, + 0.010851029306650162, + -0.00017118027608375996, + -0.02132457122206688, + -0.003773495787754655, + -0.028796780854463577, + 0.0344143845140934, + -0.038740817457437515, + -0.009271861985325813, + -0.03635153919458389, + -0.0022179835941642523, + -0.02399911917746067, + -0.028251241892576218, + -0.06015120446681976, + -0.10404748469591141, + -0.022662239149212837, + -0.007863909006118774, + 0.08018972724676132, + 0.02573617734014988, + -0.07731246948242188, + -0.03379213437438011, + 0.00958319939672947, + -0.04403912276029587, + 0.05797651782631874, + -0.056714802980422974, + -2.0648295517844417e-08, + -0.034214381128549576, + -0.03769334405660629, + -0.006008925847709179, + -0.025512225925922394, + 0.026331814005970955, + -0.027659276500344276, + 0.007283608429133892, + -0.004844509530812502, + 0.01957613229751587, + -0.019239339977502823, + 0.060982596129179, + -0.020224373787641525, + 0.0002832577156368643, + -0.04849010333418846, + 0.04974253848195076, + 0.10135143995285034, + -0.02265082113444805, + 0.10597655177116394, + -0.03645922988653183, + 0.03140466660261154, + -0.03489374369382858, + 0.037002552300691605, + -0.0074362545274198055, + 0.0025014346465468407, + 0.04917098581790924, + 0.03691571578383446, + -0.09939996898174286, + 0.0021727934945374727, + 0.10236609727144241, + -0.02366337925195694, + 0.008982782252132893, + 0.11544594168663025, + 0.04687279090285301, + -0.04768989980220795, + -0.08337211608886719, + -0.03900602459907532, + 0.03393286094069481, + -0.03820444643497467, + 0.002277952153235674, + 0.04288572445511818, + -0.028842680156230927, + -0.0916295051574707, + 0.019347483292222023, + -0.0066023278050124645, + -0.028485311195254326, + -0.012079821899533272, + 0.12580496072769165, + -0.013479410670697689, + -0.07154683768749237, + -0.01949235051870346, + -0.06002182886004448, + 0.0012797147501260042, + 0.03777386620640755, + 0.07780839502811432, + -0.049308136105537415, + 0.0497354194521904, + -0.03342946246266365, + 0.06129477918148041, + -0.06981603056192398, + -0.013583586551249027, + 0.17782145738601685, + -0.005448455922305584, + -0.0012823326978832483, + 0.006789208855479956 + ], + "battery-vertical-high-bold||charged,charger,charging,power": [ + -0.03778400272130966, + 0.11344263702630997, + -0.09727633744478226, + 0.005337274633347988, + -0.011862917803227901, + -0.03213241696357727, + 0.029199430719017982, + 0.046791743487119675, + 0.0018013229127973318, + 0.013732189312577248, + 0.07491310685873032, + 0.04793515428900719, + 0.08264811336994171, + 0.0507216677069664, + 0.018951257690787315, + 0.043844904750585556, + 0.04193350672721863, + 0.011089839972555637, + -0.04234383627772331, + 0.056630268692970276, + -0.025502175092697144, + -0.026514748111367226, + 0.07790054380893707, + 0.022533565759658813, + 0.04139476642012596, + 0.04990413784980774, + 0.06134430319070816, + 0.017451543360948563, + -0.03262001648545265, + -0.1243329718708992, + -0.006249722559005022, + 0.06796349585056305, + 0.08145392686128616, + -0.00974755734205246, + 0.028133368119597435, + 0.0027056802064180374, + -0.0007664591539651155, + 0.02794310636818409, + 0.033176541328430176, + -0.007646233309060335, + 0.042607251554727554, + -0.09315003454685211, + 0.051151495426893234, + 0.044991880655288696, + -0.04286029562354088, + 0.044921208173036575, + 0.03329560160636902, + -0.00519999023526907, + 0.02207116037607193, + -0.0031077510211616755, + 0.055426161736249924, + -0.1113458052277565, + -0.06842375546693802, + 0.02111595869064331, + -0.0017284416826441884, + 0.03725713491439819, + -0.028189489617943764, + -0.008765659295022488, + 0.10407418757677078, + -0.09409089386463165, + -0.0006540642934851348, + 0.022939560934901237, + 0.0019535489846020937, + 0.04195750504732132, + 0.009564037434756756, + -0.02674091048538685, + -0.033881571143865585, + 0.032569050788879395, + -0.09378670156002045, + 0.04230938479304314, + 0.07845960557460785, + -0.010491907596588135, + -0.05627042055130005, + -0.11357205361127853, + -0.045944247394800186, + -0.003397383028641343, + 0.026769893243908882, + 0.04976639896631241, + -0.03394077345728874, + -0.008850444108247757, + 0.008133703842759132, + -0.06377251446247101, + -0.0968305915594101, + 0.07216822355985641, + 0.051042214035987854, + 0.027407601475715637, + 0.005193631164729595, + -0.09560176730155945, + -0.04323909059166908, + -0.05922892689704895, + -0.00497217895463109, + 0.03484164923429489, + 0.019384456798434258, + -0.005808382760733366, + -0.13104180991649628, + 0.009629560634493828, + 0.046190354973077774, + -0.08150896430015564, + -0.04477487504482269, + 0.07470713555812836, + 0.122804194688797, + 0.010865232907235622, + 0.04315107688307762, + 0.007794565986841917, + -0.0031636557541787624, + -0.05837445706129074, + -0.028191890567541122, + 0.049997687339782715, + 0.03159676492214203, + 0.01565655507147312, + 0.021439485251903534, + -0.03558823838829994, + -0.003437360282987356, + 0.016831211745738983, + -0.02118733339011669, + 0.048038579523563385, + -0.055535800755023956, + -0.0018356302753090858, + 0.0907646045088768, + -0.02702174335718155, + 0.006507599726319313, + -0.01785193383693695, + -0.0355474054813385, + -0.07669558376073837, + 0.011498608626425266, + 0.042551904916763306, + 0.0805516391992569, + -2.4266582117428827e-33, + 0.06260429322719574, + -0.018276967108249664, + 0.020754802972078323, + 0.04724331945180893, + 0.03924564644694328, + 0.00784783624112606, + -0.03571595624089241, + 0.002501813927665353, + -0.03904670104384422, + 0.08676955848932266, + 0.0347173810005188, + 0.08445186167955399, + 0.04166711866855621, + 0.10956801474094391, + 0.02482077293097973, + -0.07514143735170364, + -0.009824009612202644, + -0.03440256416797638, + -0.07066701352596283, + 0.006886024493724108, + -0.0647025853395462, + 0.016680384054780006, + -0.040941257029771805, + 0.03677070513367653, + -0.0015792592894285917, + -0.030766639858484268, + 0.07781460881233215, + -0.057600390166044235, + -0.06723043322563171, + 0.02196275256574154, + 0.008362952619791031, + 0.014129450544714928, + 0.04463469609618187, + -0.012586094439029694, + -0.055241990834474564, + 0.09011732041835785, + 0.0015160846523940563, + -0.03327760845422745, + 0.005266956984996796, + -0.05151169374585152, + -0.0962534248828888, + -0.02297823876142502, + -0.06031212955713272, + -0.049566082656383514, + 0.035313550382852554, + 0.05542983487248421, + -0.020503291860222816, + -0.11130333691835403, + -0.05906984582543373, + 0.04341111704707146, + -0.09366456419229507, + -0.06023644655942917, + 0.06809616833925247, + 0.015828769654035568, + 0.01969725824892521, + 0.031822413206100464, + -0.07196158170700073, + 0.08354873210191727, + -0.008752552792429924, + 0.013734552077949047, + 0.016273656859993935, + -0.008335649967193604, + -0.07429204136133194, + -0.05022675544023514, + -0.07188217341899872, + -0.007568199187517166, + -0.081511490046978, + -0.03089194744825363, + 0.031539179384708405, + 0.06125987693667412, + 0.06837476789951324, + 0.014888997189700603, + 0.03772139176726341, + 0.0008710200781933963, + -0.03236807882785797, + 0.07239978760480881, + 0.0034740460105240345, + 0.0023939963430166245, + 0.04392164945602417, + -0.031804077327251434, + -0.07491423189640045, + -0.0138047244399786, + 0.007234071847051382, + 0.033879365772008896, + -0.04228705167770386, + -0.01867815852165222, + -0.04009690135717392, + -0.06851983815431595, + -0.009744169190526009, + 0.045864179730415344, + -0.06621035188436508, + -0.015491349622607231, + 0.019141413271427155, + -0.08104729652404785, + -0.02459244430065155, + 5.274925288494434e-35, + 0.043741270899772644, + 0.043084267526865005, + -0.00023212550149764866, + -0.04679477587342262, + -0.017855597659945488, + 0.04624704271554947, + -0.043969184160232544, + 0.00989654753357172, + -0.10102349519729614, + -0.010529116727411747, + 0.004845108836889267, + 0.04038617014884949, + -0.06699962168931961, + -0.04360002651810646, + 0.10380233079195023, + 0.04326522722840309, + -0.020643310621380806, + 0.005553968250751495, + 0.030183158814907074, + 0.05745016038417816, + 0.025115331634879112, + 0.02112455852329731, + -0.027377810329198837, + 0.09346254169940948, + 0.0813344195485115, + 0.002805710770189762, + 0.037270817905664444, + -0.047280821949243546, + 0.02426641806960106, + 0.00018479119171388447, + 0.0033925066236406565, + -0.08025255054235458, + 0.06689049303531647, + 0.056314945220947266, + -0.11121053248643875, + -0.01583760790526867, + 0.026142211630940437, + 0.0005024003330618143, + 0.03708440437912941, + -0.03859945014119148, + -0.035579998046159744, + 0.004596153739839792, + 0.03659573197364807, + -0.0052122874185442924, + -0.05557354912161827, + -0.06537109613418579, + -0.11324797570705414, + 0.0009118776069954038, + -0.001210633898153901, + 0.04956027492880821, + -0.10248924791812897, + -0.06165928393602371, + 0.015914563089609146, + 0.09979625046253204, + -0.07015523314476013, + -0.09757909178733826, + 0.0215053278952837, + 0.01158212125301361, + -0.06342489272356033, + -0.019275013357400894, + 0.07024852186441422, + -0.012323941104114056, + -0.027057932689785957, + -0.04859065264463425, + -0.058756470680236816, + -0.015467792749404907, + 0.05845368281006813, + -0.005176604725420475, + -0.00988119374960661, + -0.016557013615965843, + -0.03405933082103729, + -0.010932767763733864, + 0.030448079109191895, + -0.022524971514940262, + -0.01910398155450821, + -0.07277797162532806, + 0.03148593008518219, + -0.006174430251121521, + -0.0004399950848892331, + -0.041534844785928726, + 0.009382365271449089, + 0.0020668942015618086, + -0.035451240837574005, + -0.02864735573530197, + -0.09913462400436401, + -0.011397847905755043, + -0.008119780570268631, + 0.06564374268054962, + 0.04636046662926674, + -0.08496305346488953, + -0.028883693739771843, + 0.017669517546892166, + -0.0803288072347641, + 0.0500955767929554, + -0.04648377746343613, + -2.0493814645305974e-08, + -0.03178875893354416, + -0.03834814205765724, + -0.02401917614042759, + -0.023626618087291718, + 0.02007378824055195, + -0.02232578583061695, + -0.0001695796672720462, + 0.0014524651924148202, + 0.02779412642121315, + -0.03747641295194626, + 0.05852799862623215, + -0.03276307135820389, + -0.0009255519835278392, + -0.061851974576711655, + 0.06476011127233505, + 0.0667492002248764, + -0.03632132336497307, + 0.11773332208395004, + -0.03577931225299835, + 0.0014960392145439982, + -0.024348564445972443, + 0.05494922026991844, + 0.02671905793249607, + 0.00668393075466156, + 0.05214496701955795, + 0.04133144021034241, + -0.09014388173818588, + 0.008218529634177685, + 0.08176599442958832, + -0.005169159732758999, + 0.0037000314332544804, + 0.10710479319095612, + 0.04520267993211746, + -0.035975221544504166, + -0.0833599641919136, + -0.02914581634104252, + 0.0003831563808489591, + -0.04440609738230705, + 0.023963887244462967, + 0.03079751320183277, + -0.012993456795811653, + -0.09491918236017227, + 0.002961330581456423, + 0.00352863734588027, + -0.015013189055025578, + -0.02497078664600849, + 0.1155344620347023, + -0.015016746707260609, + -0.05551071837544441, + -0.012544109486043453, + -0.07831725478172302, + 0.0258512981235981, + 0.057738225907087326, + 0.07324273884296417, + -0.04499390348792076, + 0.03883323073387146, + -0.047263018786907196, + 0.055826976895332336, + -0.06705902516841888, + -0.020802538841962814, + 0.2165394425392151, + -0.02527262270450592, + -0.007621796336025, + 0.02342059649527073 + ], + "battery-vertical-low-bold||charged,charger,charging,power": [ + -0.024621864780783653, + 0.1268380582332611, + -0.09289946407079697, + 0.02111990563571453, + -0.006536375265568495, + -0.031019821763038635, + 0.027503162622451782, + 0.051265571266412735, + 0.01327724102884531, + 0.014112760312855244, + 0.09563793987035751, + 0.02969210222363472, + 0.09708379954099655, + 0.06143609434366226, + 0.008307913318276405, + 0.05296417325735092, + 0.041427649557590485, + 0.016226397827267647, + -0.03982536494731903, + 0.06821775436401367, + -0.029027072712779045, + -0.019689660519361496, + 0.0726248249411583, + 0.00870874896645546, + 0.04082411155104637, + 0.0433846041560173, + 0.056306127458810806, + 0.010160978883504868, + -0.021357577294111252, + -0.12258339673280716, + 0.0023915504571050406, + 0.06279872357845306, + 0.0952308401465416, + -0.015841323882341385, + 0.03618292883038521, + -0.00028680809191428125, + 0.018137171864509583, + 0.048629362136125565, + 0.03306618332862854, + 0.0019349153153598309, + 0.04494006186723709, + -0.07999776303768158, + 0.04054916277527809, + 0.04663018137216568, + -0.047946181148290634, + 0.047223739326000214, + 0.024874145165085793, + -0.012099338695406914, + 0.01274513266980648, + -0.009278781712055206, + 0.06743107736110687, + -0.10588198155164719, + -0.08988328278064728, + 0.02514456771314144, + -0.018408335745334625, + 0.03094431571662426, + -0.03992602229118347, + -0.005055402871221304, + 0.09752456843852997, + -0.08839892596006393, + 0.017771733924746513, + 0.0051201521418988705, + -0.0016530175926163793, + 0.037544433027505875, + 0.005666221491992474, + -0.028313936665654182, + -0.029160071164369583, + 0.035669032484292984, + -0.0954543873667717, + 0.033139247447252274, + 0.07299149036407471, + -0.010750907473266125, + -0.050231825560331345, + -0.10083084553480148, + -0.06736237555742264, + 0.0008237254805862904, + 0.03517022356390953, + 0.05267553776502609, + -0.038357608020305634, + -0.007518743630498648, + -0.0019584938418120146, + -0.07207082211971283, + -0.10895740240812302, + 0.06704801321029663, + 0.04063009098172188, + 0.021633803844451904, + 0.0143399303779006, + -0.10309195518493652, + -0.04052424430847168, + -0.06137336418032646, + -0.00483483774587512, + 0.05261196568608284, + 0.016086675226688385, + -0.022111330181360245, + -0.12455498427152634, + 0.008603687398135662, + 0.06178312376141548, + -0.06111960485577583, + -0.05734288692474365, + 0.08318369090557098, + 0.11587610840797424, + 0.010684024542570114, + 0.041569795459508896, + -0.005851271096616983, + -0.0029576867818832397, + -0.05675436928868294, + -0.0313255600631237, + 0.033266182988882065, + 0.022618606686592102, + 0.016591500490903854, + 0.03336299955844879, + -0.034795425832271576, + -0.010492761619389057, + 0.006878306623548269, + -0.02389628067612648, + 0.04208863154053688, + -0.06231401860713959, + 0.0007477115141227841, + 0.09780380129814148, + -0.012518323957920074, + -0.0031444921623915434, + -0.02409987524151802, + -0.03781212866306305, + -0.07453877478837967, + 0.010248987935483456, + 0.0497269406914711, + 0.06677985191345215, + -2.41882574594656e-33, + 0.07290007174015045, + -0.025924034416675568, + 0.017209134995937347, + 0.03425856679677963, + 0.04871135950088501, + 0.015765339136123657, + -0.04665415734052658, + -0.00681498646736145, + -0.035071760416030884, + 0.08997254073619843, + 0.042194608598947525, + 0.06846187263727188, + 0.044060297310352325, + 0.09345954656600952, + 0.0347207710146904, + -0.07467134296894073, + -0.011291748844087124, + -0.046347476541996, + -0.05492318421602249, + 0.012279832735657692, + -0.06972738355398178, + 0.029472460970282555, + -0.031417179852724075, + 0.033962927758693695, + -0.004140006843954325, + -0.023258917033672333, + 0.08765985071659088, + -0.06482505053281784, + -0.0749298632144928, + 0.02072739601135254, + -0.002984750084578991, + 0.024319833144545555, + 0.0434112623333931, + -0.01752309501171112, + -0.04690549150109291, + 0.09382202476263046, + -0.001317976275458932, + -0.027267711237072945, + 0.0036783195100724697, + -0.06344794481992722, + -0.09758748859167099, + -0.016985826194286346, + -0.06561675667762756, + -0.06879685819149017, + 0.03619818016886711, + 0.030239682644605637, + 0.0023902258835732937, + -0.10688954591751099, + -0.05435840040445328, + 0.046541597694158554, + -0.09223707765340805, + -0.06208568438887596, + 0.055366624146699905, + 0.01676967367529869, + 0.030716808512806892, + 0.024827515706419945, + -0.08065035194158554, + 0.07010776549577713, + -0.01917228288948536, + 0.009376248344779015, + 0.023334193974733353, + -0.012512359768152237, + -0.07556242495775223, + -0.06980380415916443, + -0.06246301159262657, + -0.00998003501445055, + -0.08847041428089142, + -0.04507296532392502, + 0.013379215262830257, + 0.04514655843377113, + 0.05662662908434868, + 0.020103296265006065, + 0.04474688693881035, + 0.00438831839710474, + -0.01131733600050211, + 0.0837920606136322, + 0.024568328633904457, + -0.0074911522679030895, + 0.037220921367406845, + -0.04216165840625763, + -0.06429647654294968, + -0.00494151096791029, + -0.008697676472365856, + 0.04741062596440315, + -0.03925309702754021, + -0.023690905421972275, + -0.021634075790643692, + -0.043411485850811005, + -0.013970425352454185, + 0.03210446238517761, + -0.07035239040851593, + -0.03287070244550705, + -0.013259923085570335, + -0.07632243633270264, + -0.01263772789388895, + -1.065975929879075e-34, + 0.0346941277384758, + 0.03779163584113121, + 0.002244382631033659, + -0.03279713913798332, + -0.018070563673973083, + 0.0464504137635231, + -0.01989654451608658, + -0.0007810333627276123, + -0.0777103453874588, + 0.0016119744395837188, + 0.001297114184126258, + 0.04673013836145401, + -0.06859268993139267, + -0.03896447271108627, + 0.1045648381114006, + 0.0587865449488163, + -0.027867935597896576, + 0.0004665080923587084, + 0.04988372325897217, + 0.07204906642436981, + 0.025118766352534294, + 0.0427425391972065, + -0.030529377982020378, + 0.09434498846530914, + 0.09136404097080231, + 0.00801633857190609, + 0.04398918151855469, + -0.03859385475516319, + 0.00905395857989788, + -0.015096955932676792, + 0.009541451930999756, + -0.07215296477079391, + 0.07749396562576294, + 0.04911548271775246, + -0.11687766015529633, + -0.014783854596316814, + 0.016268914565443993, + 0.008426009677350521, + 0.03279970958828926, + -0.03300229460000992, + -0.03244546800851822, + 0.015359493903815746, + 0.03794478997588158, + -0.004682753700762987, + -0.0628281682729721, + -0.0772847831249237, + -0.1114310473203659, + -0.004146015737205744, + -0.007490544114261866, + 0.04351847246289253, + -0.10148841142654419, + -0.06653012335300446, + 0.0010214158101007342, + 0.10573306679725647, + -0.06658253073692322, + -0.09865868836641312, + 0.025357473641633987, + 0.02553144283592701, + -0.0524912104010582, + -0.003016497939825058, + 0.051601592451334, + -0.01836213283240795, + -0.020904172211885452, + -0.06216377764940262, + -0.06556772440671921, + -0.01918618753552437, + 0.06100397929549217, + 0.011634930036962032, + -0.014714490622282028, + -0.031243279576301575, + -0.020575325936079025, + -0.006782738026231527, + 0.03589990362524986, + -0.04081781581044197, + -0.01389163639396429, + -0.06583746522665024, + 0.018658844754099846, + -0.010090255178511143, + -0.012729665264487267, + -0.04222189635038376, + 0.016160544008016586, + -0.00492059625685215, + -0.03718843311071396, + -0.04154563695192337, + -0.09411837160587311, + -0.011494609527289867, + -0.0033732138108462095, + 0.058970022946596146, + 0.03587769716978073, + -0.07086692005395889, + -0.03638330474495888, + 0.023206934332847595, + -0.04960041493177414, + 0.06835632771253586, + -0.05830663815140724, + -2.1025469365554272e-08, + -0.03403357043862343, + -0.04085655137896538, + -0.012121054343879223, + -0.018839890137314796, + 0.019010821357369423, + -0.02814304083585739, + -0.011511866934597492, + -0.01769082248210907, + 0.027007605880498886, + -0.025695940479636192, + 0.06738270074129105, + -0.030224042013287544, + -0.006889775861054659, + -0.05872378870844841, + 0.06406807154417038, + 0.08851177245378494, + -0.034810155630111694, + 0.10533670336008072, + -0.03480388969182968, + 0.004647481720894575, + -0.025584697723388672, + 0.05101518705487251, + 0.011551262810826302, + 0.0030185787472873926, + 0.056834883987903595, + 0.028003178536891937, + -0.07048023492097855, + -0.0030183857306838036, + 0.08344730734825134, + -0.027271131053566933, + 0.010452214628458023, + 0.12665437161922455, + 0.05713747441768646, + -0.03984083980321884, + -0.09774754196405411, + -0.019295234233140945, + 0.004060286562889814, + -0.04131114482879639, + 0.010536701418459415, + 0.03566665202379227, + -0.017639536410570145, + -0.09869490563869476, + -0.008478617295622826, + -0.005808091722428799, + -0.02406863495707512, + -0.026312585920095444, + 0.11607495695352554, + -0.02304607257246971, + -0.05624029412865639, + -0.010250723920762539, + -0.059967149049043655, + 0.027981217950582504, + 0.04810910299420357, + 0.071619413793087, + -0.04918765276670456, + 0.03980492427945137, + -0.03798174485564232, + 0.04953887313604355, + -0.0734441876411438, + -0.03345848619937897, + 0.19554924964904785, + -0.017326384782791138, + 0.003145078895613551, + 0.007674899417907 + ], + "battery-vertical-medium-bold||charged,charger,charging,power": [ + -0.019425496459007263, + 0.1014263927936554, + -0.0817275196313858, + 0.02831759862601757, + 0.013036327436566353, + -0.025955840945243835, + 0.047637939453125, + 0.04608508571982384, + -0.014359032735228539, + 0.01855439320206642, + 0.09530269354581833, + 0.016738826408982277, + 0.08103262633085251, + 0.058571670204401016, + -0.0028469108510762453, + 0.042279623448848724, + 0.027425019070506096, + 0.004267735406756401, + -0.04067163169384003, + 0.06689920276403427, + -0.02278776839375496, + -0.009808069095015526, + 0.07319709658622742, + 0.009174109436571598, + 0.04426976293325424, + 0.04421824961900711, + 0.04124100133776665, + 0.014208395965397358, + -0.019444676116108894, + -0.13287536799907684, + -0.01747233420610428, + 0.07581110298633575, + 0.09205563366413116, + 0.00010357437713537365, + 0.027612442150712013, + -0.013186243362724781, + 0.004056696780025959, + 0.04018141329288483, + 0.015870239585638046, + 0.007743016816675663, + 0.049673184752464294, + -0.11985745280981064, + 0.043963950127363205, + 0.039691656827926636, + -0.051230356097221375, + 0.04382599890232086, + 0.02189738117158413, + 0.005087616387754679, + 0.0059244646690785885, + 0.010393601842224598, + 0.062406376004219055, + -0.10934880375862122, + -0.1052718535065651, + 0.04513637721538544, + 0.003656940069049597, + 0.027955809608101845, + -0.026411952450871468, + 0.02507508173584938, + 0.10340011119842529, + -0.09785651415586472, + 0.0007449595141224563, + 0.024060528725385666, + -0.015931427478790283, + 0.04946103319525719, + 0.02459588646888733, + -0.01793145202100277, + -0.04198012501001358, + 0.055244095623493195, + -0.10030003637075424, + 0.026089021936058998, + 0.09067589789628983, + 0.0011036276118829846, + -0.05073774233460426, + -0.08939652144908905, + -0.03738745301961899, + -0.02099287137389183, + 0.03902618587017059, + 0.045001424849033356, + -0.04487628862261772, + 0.02019699476659298, + -0.013345706276595592, + -0.05957197770476341, + -0.11808814853429794, + 0.06358972191810608, + 0.060453224927186966, + 0.025497503578662872, + 0.012076354585587978, + -0.09378942847251892, + -0.03313516080379486, + -0.07210841774940491, + -0.015296067111194134, + 0.04823245853185654, + -0.02046968974173069, + -0.021653059870004654, + -0.09788816422224045, + -0.0015402216231450438, + 0.026348203420639038, + -0.07964564859867096, + -0.027734773233532906, + 0.06609806418418884, + 0.11800923943519592, + 0.013858611695468426, + 0.052515026181936264, + 0.0008085271110758185, + -0.016797229647636414, + -0.0860833078622818, + -0.03125671297311783, + 0.04955360293388367, + 0.052443210035562515, + 0.010735662654042244, + 0.031668152660131454, + -0.02588750049471855, + -0.02901322953402996, + 0.004196148365736008, + 0.011347927153110504, + 0.043966084718704224, + -0.057609785348176956, + 0.019059723243117332, + 0.12062279880046844, + -0.040644336491823196, + 0.0039975605905056, + -0.009958713315427303, + -0.048913680016994476, + -0.09393423050642014, + 0.00734905619174242, + 0.04260312020778656, + 0.09040368348360062, + -2.6710106101712117e-33, + 0.054673995822668076, + -0.03734150901436806, + 0.0037383558228611946, + 0.05540691316127777, + 0.03633735328912735, + 0.02075246535241604, + -0.025878045707941055, + -0.006773713510483503, + -0.03970997780561447, + 0.05907188355922699, + 0.030288131907582283, + 0.11036452651023865, + 0.020193468779325485, + 0.10826659947633743, + 0.04137130454182625, + -0.056855835020542145, + 0.009531675837934017, + -0.02153758704662323, + -0.05119121074676514, + -0.009146484546363354, + -0.05247042700648308, + 0.045219652354717255, + -0.029998255893588066, + 0.04690765216946602, + 0.00048817656352184713, + -0.04064380005002022, + 0.09065236151218414, + -0.046289682388305664, + -0.07126165181398392, + 0.01993640698492527, + -0.0019866942893713713, + 0.029817556962370872, + 0.04774976521730423, + -0.011709005571901798, + -0.0395464226603508, + 0.09586068987846375, + -0.010127824731171131, + -0.036251045763492584, + 0.01789809577167034, + -0.06910610944032669, + -0.0839516818523407, + -0.02208140306174755, + -0.07340116798877716, + -0.06066342070698738, + 0.004125029779970646, + 0.04606959596276283, + -0.00707279471680522, + -0.09940412640571594, + -0.0474422350525856, + 0.026768933981657028, + -0.08597197383642197, + -0.06554973870515823, + 0.08026409894227982, + -0.0005761705106124282, + 0.0567101426422596, + 0.04069186747074127, + -0.07706592231988907, + 0.08377736061811447, + -0.016875099390745163, + 0.005951335188001394, + 0.034428417682647705, + -0.020397115498781204, + -0.0485975481569767, + -0.05917933210730553, + -0.04825691133737564, + 0.0004018512845505029, + -0.10012061148881912, + -0.04188818857073784, + 0.04045001417398453, + 0.03806820511817932, + 0.05125448480248451, + 0.029139751568436623, + 0.03969907388091087, + 0.017229711636900902, + -0.02691812627017498, + 0.05952618271112442, + 0.0006889858050271869, + -0.0013346404302865267, + 0.03968041017651558, + -0.01149645447731018, + -0.10081390291452408, + 0.003827314358204603, + -0.03449210524559021, + 0.052338454872369766, + -0.055191583931446075, + -0.008403909392654896, + -0.0074856760911643505, + -0.06498514860868454, + -0.013836375437676907, + 0.03272074833512306, + -0.0917406678199768, + -0.011157574132084846, + 0.001767729758284986, + -0.07727830857038498, + -0.029398353770375252, + -9.054016796411977e-35, + 0.017796849831938744, + 0.020992059260606766, + -0.02624799869954586, + -0.01049020141363144, + 0.00015683882520534098, + 0.02832409180700779, + -0.040005896240472794, + 0.022985918447375298, + -0.07121389359235764, + -0.014939339831471443, + 0.00968110654503107, + 0.02206125296652317, + -0.09791199117898941, + -0.058538805693387985, + 0.09449111670255661, + 0.065931037068367, + -0.03899392858147621, + 0.004149359650909901, + 0.055398985743522644, + 0.06034901365637779, + 0.0028799150604754686, + -0.002532841172069311, + -0.006553528364747763, + 0.09768681973218918, + 0.06772241741418839, + -0.00295536988414824, + 0.05357525870203972, + -0.04419936612248421, + -0.015380158089101315, + -0.007131997961550951, + 0.025953955948352814, + -0.08353715389966965, + 0.07645196467638016, + 0.06346315145492554, + -0.1012972742319107, + -0.011548822745680809, + 0.05669247731566429, + 0.007409250363707542, + 0.020298480987548828, + -0.03354460746049881, + -0.013865952380001545, + 0.0005988363409414887, + 0.03285771235823631, + -0.00892985612154007, + -0.0646558403968811, + -0.08555812388658524, + -0.08833543956279755, + -0.04009876400232315, + -0.004438892938196659, + 0.04291117936372757, + -0.05239865183830261, + -0.07336895912885666, + 0.01496787928044796, + 0.06965391337871552, + -0.08019649982452393, + -0.08468181639909744, + 0.022123780101537704, + 0.01716998592019081, + -0.053456272929906845, + -0.022514183074235916, + 0.055721353739500046, + -0.040182895958423615, + -0.028963319957256317, + -0.05617811903357506, + -0.07406492531299591, + -0.025420570746064186, + 0.05549241974949837, + -0.01746147684752941, + -0.039995111525058746, + -0.016453074291348457, + -0.02954878844320774, + 0.00017313774151261896, + 0.024847395718097687, + -0.027918988838791847, + -0.022188572213053703, + -0.07941026240587234, + 0.012136802077293396, + -0.018502824008464813, + -0.02168792486190796, + -0.03173151984810829, + 0.02048349753022194, + 0.008868788368999958, + -0.040349364280700684, + -0.04301254451274872, + -0.08768241852521896, + -0.009837479330599308, + 0.016530312597751617, + 0.06406902521848679, + 0.0354207418859005, + -0.06507527828216553, + -0.02871233969926834, + 0.013093216344714165, + -0.07166041433811188, + 0.05099211633205414, + -0.07380730658769608, + -2.066016513424529e-08, + -0.020739076659083366, + -0.04248132184147835, + -0.03394997492432594, + -0.014916080981492996, + -0.0013201943365857005, + -0.03617487847805023, + 0.003551890142261982, + -0.0337662398815155, + 0.03343601152300835, + -0.024030279368162155, + 0.08040927350521088, + -0.030543135479092598, + 0.0001064022580976598, + -0.038812655955553055, + 0.07229376584291458, + 0.06729533523321152, + -0.03235914558172226, + 0.098844975233078, + -0.04563703387975693, + -0.011137223802506924, + -0.00814343336969614, + 0.05372929573059082, + -0.00028737017419189215, + 0.012924988754093647, + 0.06496553868055344, + 0.04126204922795296, + -0.06530513614416122, + -0.0019886381924152374, + 0.09400393068790436, + 0.007534276694059372, + 0.004544133320450783, + 0.11311832070350647, + 0.04488123208284378, + -0.03076443448662758, + -0.11775003373622894, + -0.017525510862469673, + 0.02159530483186245, + -0.04986478388309479, + 0.010229404084384441, + 0.04127997159957886, + -0.0035183585714548826, + -0.08680854737758636, + 0.0007625806028954685, + -0.012668567709624767, + -0.008640926331281662, + -0.024570303037762642, + 0.12252207100391388, + 0.009582352824509144, + -0.06654711067676544, + 0.014941016212105751, + -0.05602302402257919, + 0.017205175012350082, + 0.04235897958278656, + 0.07149141281843185, + -0.035456061363220215, + 0.020259002223610878, + -0.0357082262635231, + 0.058498017489910126, + -0.05569963902235031, + -0.023000525310635567, + 0.18065011501312256, + -0.0182114876806736, + 0.022900620475411415, + 0.02270192839205265 + ], + "battery-warning-bold||charged,charger,charging,power,empty,critical": [ + -0.007889761589467525, + 0.09662888944149017, + -0.08806143701076508, + 0.06725887209177017, + 0.09328851848840714, + -0.05085450038313866, + 0.08638107031583786, + 0.004020047374069691, + 0.007655064109712839, + 0.02149650827050209, + 0.10655741393566132, + -0.11706214398145676, + 0.10072994977235794, + 0.09638012945652008, + -0.054305993020534515, + 0.021711504086852074, + 0.004109532572329044, + -0.11706693470478058, + -0.03133552893996239, + 0.07836874574422836, + 0.013699023984372616, + 0.0506509430706501, + 0.05381952226161957, + 0.05579864978790283, + 0.047115664929151535, + 0.05716971307992935, + 0.04782163351774216, + -0.01792154088616371, + -0.07798890769481659, + -0.04334959387779236, + 0.0008892676560208201, + 0.0627831295132637, + 0.07443994283676147, + -0.016588924452662468, + 0.0819304957985878, + 0.07179427891969681, + 0.011125017888844013, + 0.02709495835006237, + 0.04409895837306976, + -0.033505890518426895, + 0.03953441604971886, + -0.02880886197090149, + 0.026400195434689522, + 0.07966645061969757, + -0.03161901235580444, + 0.06471429765224457, + -0.02521137148141861, + -0.04727664589881897, + 0.03736603632569313, + -0.0007824937929399312, + 0.02190367691218853, + -0.10827359557151794, + -0.048018574714660645, + -0.06569071114063263, + -0.04053407534956932, + 0.0030651153065264225, + -0.060994409024715424, + -0.032700520008802414, + 0.04975547268986702, + -0.03334246575832367, + -0.017084769904613495, + -0.030701156705617905, + 0.032804060727357864, + 0.03018376976251602, + 0.028626883402466774, + -0.013827544637024403, + -0.024383429437875748, + 0.06383348256349564, + -0.10532794147729874, + 0.09631370007991791, + 0.0689871609210968, + -0.018919488415122032, + -0.033769551664590836, + -0.03484869748353958, + -0.06975632160902023, + 0.014533387497067451, + 0.023117706179618835, + 0.02527940459549427, + -0.02856253646314144, + -0.010695538483560085, + -0.07230884581804276, + -0.11560767143964767, + -0.035755570977926254, + 0.011736318469047546, + 0.06681504845619202, + 0.03482038527727127, + 0.002677340991795063, + -0.11444222927093506, + -0.025789525359869003, + -0.05478985235095024, + -0.011102024465799332, + 0.041488513350486755, + 0.007022342178970575, + 0.04336225986480713, + -0.08387929201126099, + 0.04744720086455345, + 0.01934174820780754, + -0.01669219695031643, + -0.08270254731178284, + 0.07206712663173676, + 0.0800846591591835, + 0.015276561491191387, + 0.06716485321521759, + -0.04392559826374054, + -0.007598656229674816, + -0.06085941940546036, + -0.02693151868879795, + 0.03564245253801346, + 0.035416971892118454, + 0.0066902413964271545, + 0.0444164015352726, + -0.06103162094950676, + 0.04706786945462227, + -0.024435894563794136, + -0.008173566311597824, + 0.07303520292043686, + -0.10393740981817245, + -0.033616211265325546, + 0.11366114765405655, + 0.014255711808800697, + 0.0033271010033786297, + -0.07735364139080048, + -0.03348355367779732, + -0.05497855320572853, + 0.04054432734847069, + 0.015288926661014557, + 0.10211924463510513, + -3.7416760278260985e-33, + 0.08672498166561127, + -0.017340825870633125, + 0.028324447572231293, + 0.052338555455207825, + 0.021260205656290054, + -0.007715567946434021, + -0.029350414872169495, + -0.04962551221251488, + -0.024642758071422577, + 0.0042493040673434734, + 0.0448138564825058, + 0.024286309257149696, + 0.049170102924108505, + 0.026837920770049095, + -0.016255266964435577, + -0.02189413271844387, + 0.027603765949606895, + -0.027278104797005653, + -0.022521864622831345, + -0.0020811050198972225, + -0.014534801244735718, + 0.018879400566220284, + -0.05200613662600517, + -0.006342916749417782, + -0.03180856630206108, + 0.014388466253876686, + 0.08997827768325806, + -0.0200995784252882, + -0.014657480642199516, + -0.0039957682602107525, + 0.008311002515256405, + 0.05870963633060455, + 0.03572103753685951, + -0.005698137916624546, + -0.039712149649858475, + 0.07987448573112488, + 0.005162216257303953, + 0.019152779132127762, + -0.02908925712108612, + -0.08131388574838638, + -0.020004162564873695, + -0.034250885248184204, + -0.04919137433171272, + -0.022815726697444916, + 0.07451216876506805, + 0.012973802164196968, + -0.005009133834391832, + -0.06491265445947647, + -0.06081392616033554, + 0.0580485574901104, + -0.12504570186138153, + -0.04501831904053688, + 0.08016114681959152, + 0.08184044808149338, + -0.04300945997238159, + 0.030478714033961296, + -0.033217184245586395, + 0.048811107873916626, + -0.020495811477303505, + -0.049191080033779144, + 0.022818828001618385, + -0.007735871709883213, + -0.06458216160535812, + -0.08658996969461441, + -0.020790614187717438, + -0.007314267568290234, + -0.07445516437292099, + -0.0017134133959189057, + 0.011618360877037048, + -0.019442610442638397, + 0.020734265446662903, + -0.0035473296884447336, + 0.05830259248614311, + 0.02592984400689602, + -0.004180619493126869, + 0.0818261131644249, + -0.01260315254330635, + -0.01611272245645523, + -0.011599899269640446, + -0.10630589723587036, + -0.058765191584825516, + -0.039716582745313644, + 0.008721440099179745, + 0.07169627398252487, + -0.047286033630371094, + -0.016806945204734802, + -0.01191686186939478, + 0.005855684634298086, + -0.06915118545293808, + 0.10806072503328323, + -0.0035135468933731318, + -0.018851689994335175, + -0.043824952095746994, + -0.04382793605327606, + -0.03138356655836105, + 6.203217309936121e-34, + 0.016052767634391785, + 0.04304507374763489, + -0.011513651348650455, + 0.004366562236100435, + -0.007689007557928562, + 0.03576793521642685, + -0.03042212873697281, + -0.011369269341230392, + 0.003489237278699875, + -0.0336294025182724, + -0.01996295526623726, + -0.004927682690322399, + -0.0738976001739502, + -0.06469268351793289, + 0.06363680958747864, + 0.058534275740385056, + -0.005066402722150087, + -0.006549396552145481, + 0.01063202042132616, + 0.09200771898031235, + 0.019065188243985176, + 0.06430646777153015, + -0.0314459353685379, + 0.09195928275585175, + 0.014705172739923, + 0.06915543973445892, + 0.05701567605137825, + -0.04591881111264229, + -0.005810885690152645, + 0.011524885892868042, + 0.03828331083059311, + -0.05250198394060135, + 0.06063026934862137, + 0.09880392253398895, + -0.05536733940243721, + -0.04007676988840103, + 0.05925564467906952, + -0.03592881187796593, + 0.01950741745531559, + 0.01912039704620838, + -0.0028073855210095644, + 0.05195523053407669, + 0.004394461400806904, + -0.005296788178384304, + -0.08117221295833588, + -0.08861637115478516, + -0.008661906234920025, + -0.0414264090359211, + -0.0389065146446228, + 0.06863273680210114, + -0.0653710663318634, + -0.06905082613229752, + -0.028798650950193405, + 0.036397624760866165, + -0.08136247098445892, + -0.07819683104753494, + -0.002303013112396002, + 0.027285359799861908, + -0.046296872198581696, + -0.00028380739968270063, + 0.029771454632282257, + 0.019669823348522186, + -0.04674002528190613, + -0.07268182188272476, + -0.08111736178398132, + -0.08084780722856522, + 0.0524078831076622, + 0.04265111684799194, + 0.10080596059560776, + -0.0273944940418005, + 0.02202199213206768, + 0.03001074306666851, + -0.02234451286494732, + -0.05838270112872124, + 0.01635180041193962, + -0.04592873901128769, + -0.008686814457178116, + -0.03391647711396217, + -0.02439219504594803, + -0.03807033598423004, + 0.0741029754281044, + 0.0010265352902933955, + -0.01701672375202179, + -0.027046585455536842, + -0.02561245486140251, + -0.05922289565205574, + 0.046768270432949066, + 0.07238727062940598, + -0.02753578871488571, + -0.03749122843146324, + -0.022279178723692894, + -0.0056025260128080845, + -0.009384362027049065, + 0.09919403493404388, + -0.08423320204019547, + -2.1664067872961823e-08, + -0.008607519790530205, + 0.0013317344710230827, + -0.03898037597537041, + -0.05166151002049446, + 0.08227822184562683, + -0.10060884803533554, + -0.0012208397965878248, + -0.052477553486824036, + -0.029858611524105072, + -0.011441376991569996, + 0.04946736991405487, + -0.0472235381603241, + -0.025871871039271355, + -0.05303941294550896, + 0.03353160619735718, + 0.02746325545012951, + -0.06817467510700226, + 0.09417983144521713, + -0.05122692510485649, + 0.004690312780439854, + -0.05225919187068939, + -0.0004956330521963537, + -0.041465628892183304, + -0.03071262314915657, + 0.06678523868322372, + 0.04075375944375992, + -0.007191854063421488, + -0.009232552722096443, + 0.07186783850193024, + -0.03235721215605736, + -0.009282397106289864, + 0.11111251264810562, + 0.060536108911037445, + -0.017831951379776, + -0.08555525541305542, + 0.0357278548181057, + 0.06449989229440689, + -0.026736397296190262, + 0.006590496748685837, + 0.04890091344714165, + -0.04765599966049194, + -0.04869147390127182, + -0.03571052476763725, + -0.011770990677177906, + -0.041843231767416, + -0.023644300177693367, + 0.04856949672102928, + -0.03580426424741745, + -0.023959197103977203, + -0.02747310698032379, + -0.04139251261949539, + 0.02268870919942856, + -0.015830881893634796, + 0.08345667272806168, + -0.06147240102291107, + 0.03618547320365906, + -0.025752296671271324, + 0.09844381362199783, + -0.046030208468437195, + 0.018571626394987106, + 0.18341217935085297, + -0.0535837784409523, + 0.022598303854465485, + -0.02928563766181469 + ], + "battery-warning-vertical-bold||charged,charger,charging,power,empty,critical": [ + -0.012035561725497246, + 0.11726179718971252, + -0.09379106760025024, + 0.041609376668930054, + 0.06062488257884979, + -0.03399944677948952, + 0.049769576638936996, + 0.037040602415800095, + 0.02413412556052208, + 0.003985346294939518, + 0.11122643947601318, + -0.06355700641870499, + 0.11042984575033188, + 0.09068658947944641, + -0.047101374715566635, + 0.02928120456635952, + 0.003335576970130205, + -0.08194348216056824, + -0.03500454127788544, + 0.06337650120258331, + 0.001586617436259985, + 0.024487104266881943, + 0.051240723580121994, + 0.04954352229833603, + 0.030878430232405663, + 0.0727020800113678, + 0.05486910417675972, + 0.01907571591436863, + -0.06017228215932846, + -0.073361337184906, + -0.005219405051320791, + 0.07475636154413223, + 0.08181453496217728, + -0.006594981532543898, + 0.07658857107162476, + 0.03986898064613342, + 0.0013888610992580652, + 0.023805219680070877, + 0.04436847195029259, + -0.04253913462162018, + 0.041500672698020935, + -0.04936811700463295, + 0.019870752468705177, + 0.07536172866821289, + -0.046118006110191345, + 0.06990855187177658, + 0.004459882155060768, + -0.05315086618065834, + 0.035775698721408844, + 0.009430507197976112, + 0.04612477496266365, + -0.11730576306581497, + -0.0408187061548233, + -0.02996380254626274, + -0.020524635910987854, + 0.006549932528287172, + -0.04032811149954796, + -0.029466252774000168, + 0.06368423253297806, + -0.04946436733007431, + 0.015261591412127018, + -0.016729159280657768, + 0.018896741792559624, + 0.037155117839574814, + 0.017491746693849564, + -0.020847376435995102, + -0.05438103899359703, + 0.06443274766206741, + -0.11488249152898788, + 0.08873558044433594, + 0.08580274134874344, + -0.02506151795387268, + -0.031216586008667946, + -0.06890951097011566, + -0.05222407728433609, + 0.016077600419521332, + 0.014494044706225395, + 0.018009701743721962, + -0.023565106093883514, + -0.019157083705067635, + -0.030824091285467148, + -0.08965316414833069, + -0.04881216585636139, + 0.05198732390999794, + 0.058122649788856506, + 0.033969447016716, + 0.0191093347966671, + -0.11091135442256927, + -0.03518946096301079, + -0.061868611723184586, + 0.004409136716276407, + 0.019059037789702415, + -0.00339307333342731, + 0.04108955338597298, + -0.10348652303218842, + 0.014429574832320213, + 0.013912693597376347, + -0.06391941756010056, + -0.08008506894111633, + 0.06870970129966736, + 0.08775559067726135, + -0.01206255704164505, + 0.07328584045171738, + -0.014230174012482166, + 0.0004513624880928546, + -0.07204355299472809, + -0.025051752105355263, + 0.030924765393137932, + 0.02919391356408596, + 0.009647978469729424, + 0.04540272057056427, + -0.027592577040195465, + 0.0482594296336174, + 0.002213281812146306, + -0.00723400479182601, + 0.07648319751024246, + -0.10167845338582993, + -0.026154369115829468, + 0.09149511158466339, + 0.001887536491267383, + -0.0014168244088068604, + -0.05988882854580879, + -0.044103916734457016, + -0.06251846253871918, + 0.04542985558509827, + 0.044536590576171875, + 0.09280028194189072, + -3.8382087259415786e-33, + 0.08512432128190994, + -0.03445139899849892, + 0.041329268366098404, + 0.05414575710892677, + 0.040268924087285995, + -0.0010812109103426337, + -0.031520161777734756, + -0.0434735007584095, + -0.031029773876070976, + 0.041832298040390015, + 0.05289452150464058, + 0.0434272363781929, + 0.045289427042007446, + 0.046178657561540604, + -0.02607775293290615, + -0.05491071566939354, + 0.03390846773982048, + -0.028303930535912514, + -0.05446222797036171, + -0.0189497247338295, + -0.02543054334819317, + -0.007477944251149893, + -0.044081103056669235, + 0.008271328173577785, + -0.023266064003109932, + 0.010038891807198524, + 0.08575645834207535, + -0.03771989792585373, + -0.04401743784546852, + 0.006372872274369001, + -0.01944595016539097, + 0.038239095360040665, + 0.05115867778658867, + -0.018679775297641754, + -0.033458106219768524, + 0.0874236598610878, + -0.011536043137311935, + 0.004684942774474621, + -0.029947422444820404, + -0.07833483070135117, + -0.05224275216460228, + -0.04464610666036606, + -0.04939970374107361, + -0.03248750418424606, + 0.07659796625375748, + 0.015657125040888786, + 0.0011036783689633012, + -0.07765805721282959, + -0.06044226512312889, + 0.06433146446943283, + -0.12166149169206619, + -0.03756491839885712, + 0.08623605221509933, + 0.05063252151012421, + -0.022980010136961937, + 0.020698223263025284, + -0.05200484022498131, + 0.05876748636364937, + -0.043438781052827835, + -0.042954836040735245, + 0.021823110058903694, + -0.009104311466217041, + -0.08420834690332413, + -0.09293031692504883, + -0.022292738780379295, + -0.004768457729369402, + -0.08966446667909622, + -0.008069728501141071, + 0.019794803112745285, + 0.007809753529727459, + 0.03287385776638985, + -0.018389571458101273, + 0.04857943579554558, + 0.027910077944397926, + -0.03614255413413048, + 0.06971562653779984, + -0.011512864381074905, + -0.0037310656625777483, + 0.02933415025472641, + -0.09226800501346588, + -0.047343116253614426, + -0.03759180009365082, + 0.029599731788039207, + 0.0315997339785099, + -0.03635089471936226, + -0.03217289596796036, + -0.007580339442938566, + -0.008368105627596378, + -0.06773149222135544, + 0.09824776649475098, + -0.039541810750961304, + -0.008821869269013405, + -0.015047489665448666, + -0.04003983363509178, + -0.0318109467625618, + 9.420333667318078e-34, + 0.015168816782534122, + 0.026757774874567986, + -0.0058028316125273705, + -0.014915920794010162, + -0.02959069237112999, + 0.03847416117787361, + -0.02616002969443798, + 0.0070401583798229694, + -0.03337394818663597, + -0.017565220594406128, + -0.008763223886489868, + 0.025595860555768013, + -0.08388062566518784, + -0.062122393399477005, + 0.07725220918655396, + 0.07655275613069534, + -0.04289441183209419, + -0.0024980800226330757, + 0.022443074733018875, + 0.09747587144374847, + 0.03339014947414398, + 0.05325127765536308, + -0.03937185928225517, + 0.10819294303655624, + 0.044328369200229645, + 0.04136199131608009, + 0.08282370865345001, + -0.0350700244307518, + 0.009429612196981907, + 0.001111992634832859, + 0.04104958847165108, + -0.05265332758426666, + 0.05356212705373764, + 0.08844508975744247, + -0.07160285860300064, + -0.0606720969080925, + 0.05780228227376938, + -0.03330453485250473, + 0.019633859395980835, + 0.006726567167788744, + -0.016765909269452095, + 0.05650800094008446, + 0.03452533856034279, + -0.0225602425634861, + -0.07279262691736221, + -0.09022364765405655, + -0.033411528915166855, + -0.02408919483423233, + -0.022014254704117775, + 0.0509505532681942, + -0.08954465389251709, + -0.0705597847700119, + -0.003340161172673106, + 0.07038773596286774, + -0.07175764441490173, + -0.07673685997724533, + -0.00736204581335187, + 0.030373279005289078, + -0.0571291409432888, + -0.016881480813026428, + 0.05286835506558418, + -0.000826112984213978, + -0.048466045409440994, + -0.09546741843223572, + -0.06866171211004257, + -0.03873444348573685, + 0.054466333240270615, + 0.03609522432088852, + 0.06243551895022392, + -0.022011226043105125, + -0.004960683640092611, + 0.016858531162142754, + -0.023267604410648346, + -0.08311529457569122, + 0.010268435813486576, + -0.05917404219508171, + 0.004311303608119488, + -0.022902749478816986, + -0.022769197821617126, + -0.04554484039545059, + 0.06328777223825455, + -0.005171501077711582, + -0.01697269268333912, + -0.007003092207014561, + -0.05690029636025429, + -0.046853628009557724, + 0.027235103771090508, + 0.09572095423936844, + 0.0017524170689284801, + -0.054808489978313446, + -0.03900774195790291, + -0.003956868313252926, + -0.03438873216509819, + 0.09271018207073212, + -0.06012304872274399, + -2.276560806535599e-08, + -0.03086499124765396, + -0.030645674094557762, + -0.0142965791746974, + -0.04790074750781059, + 0.06319405883550644, + -0.07693516463041306, + 0.002446357626467943, + -0.04674825444817543, + 0.008460664190351963, + -0.015512379817664623, + 0.04693763703107834, + -0.04127391055226326, + -0.02256099507212639, + -0.0645599439740181, + 0.03159968554973602, + 0.03484836593270302, + -0.07115795463323593, + 0.10975169390439987, + -0.038556165993213654, + 0.0267779640853405, + -0.03562628850340843, + 0.025434954091906548, + -0.02220006473362446, + -0.010829503647983074, + 0.06638536602258682, + 0.04287831485271454, + -0.042195145040750504, + -0.007492251228541136, + 0.08556521683931351, + -0.03710486367344856, + -0.0069384039379656315, + 0.10915358364582062, + 0.08025825768709183, + -0.046180278062820435, + -0.06983517110347748, + 0.045805543661117554, + 0.06988609582185745, + -0.02510160021483898, + 0.010016808286309242, + 0.029082367196679115, + -0.03330576792359352, + -0.05972738936543465, + -0.006892308127135038, + -0.008435503579676151, + -0.02797008492052555, + -0.033347468823194504, + 0.07417085766792297, + 0.0022350833751261234, + -0.0332038439810276, + -0.017793480306863785, + -0.06396527588367462, + 0.019490843638777733, + 0.01128547266125679, + 0.09288943558931351, + -0.057504262775182724, + 0.024783946573734283, + -0.0383075550198555, + 0.08369790762662888, + -0.060547687113285065, + 0.006462494842708111, + 0.18932369351387024, + -0.03815970942378044, + 0.0012757036602124572, + -0.026709984987974167 + ], + "beach-ball-bold||*new*,sports,ocean,party": [ + 0.0012083372566848993, + -0.003834058763459325, + 0.04716600477695465, + -0.04542123153805733, + 0.07582426071166992, + 0.022041134536266327, + 0.08052476495504379, + -0.12281505018472672, + 0.023494040593504906, + 0.02076704055070877, + -0.0030378014780580997, + -0.03178459033370018, + 0.004594877362251282, + -0.03188927844166756, + 0.1082121729850769, + 0.0606820285320282, + 0.040444642305374146, + -0.037192560732364655, + 0.02576555870473385, + 0.0038834894075989723, + -0.03740030527114868, + 0.07204281538724899, + -0.05256510153412819, + 0.020241986960172653, + 0.0059934635646641254, + 0.0714486762881279, + 0.07597994804382324, + 0.059659093618392944, + -0.09487003833055496, + -0.04521217942237854, + -0.04093412682414055, + 0.05217093229293823, + 0.044192124158144, + 0.02161579392850399, + 0.05493275076150894, + -0.008509326726198196, + -0.06924930959939957, + -0.11547352373600006, + -0.016204288229346275, + 0.08760908991098404, + -0.04504506662487984, + -0.08639167249202728, + 0.016804318875074387, + 0.1065378487110138, + -0.0264804195612669, + 0.01279047317802906, + 0.023825207725167274, + -0.0009558856254443526, + 0.07296459376811981, + 0.07120906561613083, + 0.0036712063010782003, + -0.053947947919368744, + -0.07603619247674942, + -0.02511264756321907, + 0.04543771222233772, + 0.03344167768955231, + -0.06687624007463455, + 0.010138633660972118, + 0.022315613925457, + -0.011789355427026749, + 0.05868852511048317, + 0.006537157576531172, + 0.07107599079608917, + 0.02727973647415638, + 0.0345456525683403, + -0.06889448314905167, + -0.04019744694232941, + 0.02345295436680317, + -0.022862643003463745, + 0.050123944878578186, + -0.01952126994729042, + 0.04700383543968201, + 0.03360520675778389, + 0.0074053434655070305, + -0.04893782362341881, + -0.033561769872903824, + -0.03625738248229027, + 0.03341398388147354, + -0.06289838254451752, + -0.03997073322534561, + -0.06638099998235703, + -0.14002379775047302, + -0.10478521138429642, + -0.05923724174499512, + -0.003513127798214555, + -0.002739769872277975, + -0.04951898753643036, + -0.02695251815021038, + -0.03696587681770325, + 0.06735959649085999, + -0.18256258964538574, + -0.0661662369966507, + 0.018373485654592514, + 0.011155828833580017, + -0.08982859551906586, + 0.03215184435248375, + -0.0557548888027668, + -0.06372959166765213, + -0.0036732342559844255, + 0.09911162406206131, + 0.027316303923726082, + 0.1072085052728653, + 0.03269204869866371, + 0.023927584290504456, + 0.018326425924897194, + -0.05785910785198212, + -0.04645124077796936, + 0.039886828511953354, + 0.02630619890987873, + 0.07596386969089508, + -0.03210362046957016, + -0.05863811820745468, + 0.012429039925336838, + 0.018462006002664566, + -0.06500811874866486, + 0.04714202880859375, + -0.010021278634667397, + -0.05438092350959778, + 0.04368848353624344, + 0.10245245695114136, + 0.10473062843084335, + -0.040521297603845596, + -0.026313146576285362, + 0.022181350737810135, + -0.09512346982955933, + 0.05500050261616707, + 0.013011829927563667, + -3.908999567141989e-33, + 0.08391023427248001, + 0.002092293230816722, + 0.033578261733055115, + 0.13378868997097015, + 0.04001287370920181, + 0.026952508836984634, + -0.03567609190940857, + -0.04813152179121971, + -0.04413343593478203, + 0.006487613078206778, + -0.0699421837925911, + 0.02492670901119709, + -0.02342849038541317, + 0.00030715425964444876, + 0.08842296153306961, + -0.07614665478467941, + -0.05802444368600845, + -0.05588160455226898, + -0.05698534473776817, + 0.05650338530540466, + -0.07630190253257751, + 0.061677925288677216, + -0.024256158620119095, + -0.03724284842610359, + -0.06270270049571991, + -0.033734213560819626, + 0.05577118322253227, + -0.05798572674393654, + 0.01679086685180664, + 0.05064674839377403, + 0.0447835847735405, + -0.059282973408699036, + 0.02991650439798832, + 0.0424078069627285, + 0.0282211285084486, + 0.011051274836063385, + -0.02819494903087616, + -0.028868893161416054, + 0.015398446470499039, + -0.03127371892333031, + -0.039369598031044006, + -0.04317116737365723, + -0.052886731922626495, + 0.049162767827510834, + -0.019555525854229927, + 0.009833029471337795, + -0.012901559472084045, + -0.0018803528510034084, + 0.018450438976287842, + -0.04769201576709747, + 0.02705201506614685, + -0.06166381016373634, + 0.018404372036457062, + 0.008029223419725895, + -0.002316228114068508, + -0.09820925444364548, + -0.0012929192744195461, + 0.019323380663990974, + -0.0719020664691925, + -0.06734392791986465, + 0.10151893645524979, + 0.04540892317891121, + 0.03310247138142586, + -0.021221620962023735, + -0.014911052770912647, + 0.1256830096244812, + 0.04150202125310898, + 0.014747042208909988, + 0.04353803023695946, + -0.06126626580953598, + 0.015316409058868885, + 0.052038390189409256, + 0.04575391486287117, + 0.02369820512831211, + -0.01922658458352089, + 0.07545215636491776, + 0.04813951253890991, + -0.00046101276529952884, + -0.006800640840083361, + -0.052687015384435654, + -0.04983608424663544, + 0.017067115753889084, + -0.013247600756585598, + 0.06410321593284607, + -0.02255241759121418, + 0.0673704594373703, + 0.056005366146564484, + -0.08796437829732895, + -0.020451391115784645, + -0.014450175687670708, + -0.14378513395786285, + -0.009284663014113903, + -0.008552150800824165, + -0.04373147338628769, + -0.11370959132909775, + 4.2525614617689375e-35, + -0.007315929513424635, + -0.03980691358447075, + -0.030740389600396156, + -0.04088262841105461, + 0.06915045529603958, + 0.014338583685457706, + 0.027082692831754684, + -0.01836821436882019, + 0.0189406368881464, + -0.017838886007666588, + -0.106493279337883, + -0.07157891243696213, + -0.0044173309579491615, + -0.06736922264099121, + 0.07529181241989136, + -0.003001720644533634, + -0.003598112380132079, + 0.013093945570290089, + 0.007067765109241009, + 0.07075472176074982, + -0.020251519978046417, + -0.0014744236832484603, + 0.046444062143564224, + 0.0297706201672554, + -0.06826934218406677, + -0.013837994076311588, + 0.02481330744922161, + 0.010207422077655792, + -0.07718725502490997, + -0.006858375389128923, + -0.03463282808661461, + 0.031237317249178886, + 0.04434501752257347, + 0.005134521517902613, + -0.07402301579713821, + 0.06909552216529846, + -0.022444669157266617, + -0.07424601167440414, + 0.0030545401386916637, + -0.011319320648908615, + 0.0009349440806545317, + -0.07415472716093063, + -0.006771274842321873, + 0.02797502651810646, + -0.009199993684887886, + 0.04768998920917511, + -0.10026586800813675, + 0.03747778385877609, + -0.058087464421987534, + 0.08214405179023743, + 0.00021042226580902934, + -0.02630213089287281, + -0.022140424698591232, + 0.03448230400681496, + -0.013994107022881508, + 0.055183738470077515, + -0.06791476905345917, + 0.0183036420494318, + -0.024668153375387192, + 0.031089775264263153, + -0.03683850169181824, + 0.06043631583452225, + -0.05857427045702934, + 0.068301260471344, + 0.040696196258068085, + 0.025070490315556526, + -0.05160156637430191, + 0.01610706001520157, + -0.027897439897060394, + 0.029488684609532356, + -0.08141841739416122, + 0.019466424360871315, + -0.0984913781285286, + 0.054006852209568024, + 0.016015956178307533, + -0.04340779408812523, + -0.022505909204483032, + 0.05136997625231743, + -0.02565808966755867, + 0.0717504471540451, + -0.06982649117708206, + 0.04956876486539841, + -0.08113674819469452, + 0.04531185328960419, + 0.04668998718261719, + 0.04699352756142616, + 0.019357549026608467, + 0.01675065979361534, + -0.057246387004852295, + 0.016154780983924866, + 0.03154589980840683, + 0.03715986758470535, + -0.04899485409259796, + -0.00439824303612113, + -0.06466732919216156, + -2.0639831177504675e-08, + 0.06927122175693512, + 0.0622231587767601, + -0.06668196618556976, + -0.013077137991786003, + 0.028858911246061325, + -0.013337700627744198, + -0.04326959326863289, + -0.022736795246601105, + 0.03466236591339111, + -0.10195736587047577, + -0.0021874879021197557, + -0.027424652129411697, + 0.04517499729990959, + 0.0034790716599673033, + -0.02799893729388714, + 0.06144775450229645, + -0.049037449061870575, + 0.05329053848981857, + -0.04898989945650101, + -0.040721721947193146, + 0.026780664920806885, + 0.03091501258313656, + -0.014056704007089138, + 0.0019224740099161863, + -0.02137277089059353, + 0.033005934208631516, + -0.06617117673158646, + -0.03749639168381691, + 0.02901153452694416, + -0.007463924586772919, + 0.012682564556598663, + 0.03947604075074196, + -0.04660987854003906, + -0.02975955419242382, + -0.10239768028259277, + -0.02716902643442154, + 0.02429204247891903, + -0.037754885852336884, + -0.03513225167989731, + 0.08854389935731888, + -0.0236427690833807, + 0.04037205129861832, + -0.007894599810242653, + -0.01580451801419258, + -0.022316008806228638, + 0.004111198242753744, + 0.08412043005228043, + -0.012880424037575722, + -0.1170191615819931, + -0.02886248752474785, + -0.026847928762435913, + 0.05431653559207916, + 0.03143048658967018, + 0.0010438977042213082, + 0.02301928959786892, + 0.08220599591732025, + -0.018215525895357132, + 0.08402910083532333, + -0.01685580424964428, + 0.047195665538311005, + 0.06210136413574219, + 0.04055202379822731, + 0.01016516424715519, + 0.03589891269803047 + ], + "beanie-bold||*new*,clothes,clothing,sports,hat,winter": [ + -0.03340230509638786, + -0.0030661928467452526, + 0.04660601168870926, + 0.022300295531749725, + 0.10465791821479797, + 0.05639604851603508, + 0.065579853951931, + -0.07005859911441803, + -0.040803272277116776, + -0.007570367772132158, + 0.03623425215482712, + -0.017443133518099785, + 0.04150087758898735, + -0.10613594949245453, + 0.07362518459558487, + -0.035752397030591965, + 0.06033458933234215, + 0.061849743127822876, + 0.008172230795025826, + -0.09397613257169724, + 0.050815168768167496, + 0.06296484917402267, + 0.014132305979728699, + 0.05490722879767418, + -0.007262133061885834, + 0.022265618667006493, + 0.01696670614182949, + -0.03636401146650314, + -0.07342208921909332, + -0.07214686274528503, + -0.048590805381536484, + 0.060972847044467926, + 0.07321366667747498, + 0.024858195334672928, + -0.006780602037906647, + -0.013547048904001713, + 0.07465922087430954, + -0.054968949407339096, + 0.04477299749851227, + 0.0936102420091629, + -0.059478797018527985, + -0.08776595443487167, + -0.09053118526935577, + -0.0491442047059536, + 0.025158187374472618, + -0.02206760086119175, + 0.014684939756989479, + -0.028264639899134636, + 0.040895868092775345, + 0.05001861974596977, + 0.0164007768034935, + -0.040633946657180786, + -0.06597256660461426, + -0.015431367792189121, + -0.019636718556284904, + 0.002679276978597045, + -0.04092886298894882, + -0.07413407415151596, + 0.07802323997020721, + 0.05546034127473831, + -0.01437525637447834, + 0.016019219532608986, + 0.026496708393096924, + 0.09363220632076263, + 0.058282844722270966, + -0.10155044496059418, + -0.06652363389730453, + 0.03648541867733002, + -0.02889380417764187, + -0.011299196630716324, + 0.012359019368886948, + 0.025842729955911636, + -0.036030881106853485, + 0.009462597779929638, + -0.09642862528562546, + -0.012652243487536907, + 0.024286361411213875, + 0.0045606642961502075, + -0.015473478473722935, + -0.00802040658891201, + -0.09769821912050247, + -0.060563649982213974, + 0.04301095008850098, + -0.046678654849529266, + -0.03211100026965141, + 0.060440026223659515, + -0.06666414439678192, + -0.027146337553858757, + -0.0633830577135086, + 0.02947818860411644, + -0.09526735544204712, + -0.04316657781600952, + 0.06748654693365097, + 0.08465348929166794, + -0.09147989749908447, + 0.015381017699837685, + 0.013630419969558716, + -0.07884249091148376, + -0.054927486926317215, + 0.0888611376285553, + -0.00183305109385401, + 0.0007388063822872937, + 0.07326990365982056, + 0.04650329053401947, + 0.009528392925858498, + -0.06564785540103912, + -0.047089751809835434, + -0.040620025247335434, + 0.030891919508576393, + 0.050052519887685776, + -0.0019433079287409782, + -0.07499875873327255, + -0.10401318967342377, + -0.03701728209853172, + -0.01655762270092964, + -0.08955719321966171, + -0.015339165925979614, + -0.01612466387450695, + 0.05526342988014221, + 0.07031525671482086, + 0.08387170732021332, + -0.02362537942826748, + -0.015719139948487282, + -0.04960251599550247, + -0.1102849617600441, + 0.017864901572465897, + 0.03473863750696182, + -1.0317946663735746e-33, + 0.04378129914402962, + 0.03875747695565224, + 0.045469731092453, + 0.10155391693115234, + 0.005691467318683863, + 0.012778441421687603, + -0.05810491740703583, + -0.027963832020759583, + -0.009483088739216328, + 0.06643155962228775, + -0.04822852835059166, + 0.09571123123168945, + -0.12063346058130264, + 0.06051994860172272, + 0.052510831505060196, + -0.016251565888524055, + -0.12445880472660065, + -0.03339236602187157, + -0.0013698278926312923, + 0.013849387876689434, + -0.05244729667901993, + 0.08656933903694153, + 0.02718779630959034, + -0.007748900447040796, + -0.042803116142749786, + -0.09504533559083939, + 0.0573875829577446, + -0.09701932221651077, + -0.0559750571846962, + 0.026206742972135544, + 0.07602177560329437, + -0.029943326488137245, + 0.1463807076215744, + 0.0442386157810688, + -0.07472749799489975, + -0.0355004258453846, + -0.03549839183688164, + -0.03223070874810219, + 0.035526055842638016, + 0.06850166618824005, + -0.04824232682585716, + -0.06278643012046814, + -0.01690894179046154, + 0.01717052049934864, + -0.022873833775520325, + 0.07464498281478882, + 0.05856294184923172, + 0.03859582915902138, + -0.020932501181960106, + 0.06279732286930084, + -0.0008249235106632113, + -0.01981685869395733, + 0.015110701322555542, + -0.002439292147755623, + 0.003196565667167306, + -0.017238017171621323, + -0.017932366579771042, + 0.07136590033769608, + 0.04977539926767349, + -0.03294798359274864, + 0.03368442505598068, + 0.04520881175994873, + 0.1370314359664917, + -0.06987504661083221, + 0.003855616319924593, + 0.07226109504699707, + -0.00983559712767601, + -0.004668271169066429, + 0.029119061306118965, + 0.0061495015397667885, + -0.013334255665540695, + 0.08675946295261383, + 0.07013455033302307, + 0.013039559125900269, + 0.08533034473657608, + -0.02537248469889164, + 0.051109474152326584, + 0.037709157913923264, + -0.009525815024971962, + -0.06691576540470123, + -0.020709458738565445, + 0.0129702715203166, + -0.021781932562589645, + 0.1318926066160202, + 0.02098316140472889, + 0.0266561359167099, + 0.03790726512670517, + -0.04781624302268028, + -0.02791455388069153, + 0.015143899247050285, + -0.04397544637322426, + 0.04111682251095772, + -0.07065226882696152, + -0.02589207887649536, + -0.042752303183078766, + -1.1700824850336971e-33, + 0.10717581957578659, + -0.048047155141830444, + 0.00841734278947115, + 0.0016150138108059764, + 0.03568577021360397, + -0.018552036955952644, + -0.012487327679991722, + 0.029074396938085556, + 0.025660209357738495, + 0.009160950779914856, + -0.012834666296839714, + -0.050772763788700104, + -0.009333287365734577, + -0.07262901961803436, + 0.003308860817924142, + 0.029795419424772263, + -0.004791824612766504, + 0.07325158268213272, + -0.0382126159965992, + 0.021273750811815262, + -0.03936271369457245, + -0.008327018469572067, + -0.0971013605594635, + -0.00570310465991497, + -0.037680577486753464, + -0.04164726287126541, + 0.012362941168248653, + 0.016559455543756485, + -0.07415845990180969, + -0.08623445779085159, + 0.024494459852576256, + -0.05731766298413277, + 0.03883533179759979, + 0.06416396796703339, + -0.05996428057551384, + 0.027613244950771332, + -0.0061410353519022465, + -0.03180212154984474, + 0.03337951377034187, + 0.029709627851843834, + -0.0386170819401741, + -0.050120677798986435, + 0.023659301921725273, + 0.049651168286800385, + 0.02506323717534542, + -0.11111077666282654, + -0.12782004475593567, + -0.03619331866502762, + -0.0014064747374504805, + 0.09492134302854538, + 0.01994512602686882, + -0.04916585609316826, + -0.04817536473274231, + 0.013782238587737083, + -0.062396831810474396, + 0.0020926371216773987, + -0.07168218493461609, + 0.03152424469590187, + -0.03727344423532486, + 0.06622422486543655, + -0.018193334341049194, + 0.030831441283226013, + -0.011548181064426899, + 0.051354825496673584, + 0.025228722020983696, + -0.05041452497243881, + 0.020943444222211838, + -0.048432692885398865, + 0.0037742110434919596, + -0.023851245641708374, + 0.048537854105234146, + -0.06390666961669922, + -0.008438404649496078, + -0.00917449127882719, + 0.03795358166098595, + -0.05275629088282585, + 0.030463527888059616, + 0.007548968773335218, + -0.0070806764997541904, + 0.02140739932656288, + -0.05932831019163132, + -0.008576593361794949, + -0.07474296540021896, + 0.07848192006349564, + 0.06852441281080246, + 0.0868389829993248, + -0.03142374008893967, + 0.05257723852992058, + 0.04003484547138214, + 0.012276332825422287, + 0.008080636151134968, + 0.08311275392770767, + -0.04170427843928337, + 0.03668910637497902, + -0.04294932633638382, + -2.1836584096490697e-08, + 0.045401282608509064, + 0.027880525216460228, + -0.0476088710129261, + 0.05744510143995285, + 0.030472775921225548, + 0.023974275216460228, + -0.03678795322775841, + -0.11630551517009735, + -0.016664933413267136, + -0.052408698946237564, + 0.05687295272946358, + 0.07126947492361069, + -0.04491973668336868, + 0.01592060551047325, + -0.017264967784285545, + 0.011746909469366074, + -0.029189296066761017, + 0.10563068091869354, + -0.012286264449357986, + -0.056426532566547394, + -0.0007814531563781202, + 0.04964841157197952, + 0.06090463325381279, + -0.03635627403855324, + 0.020825304090976715, + 0.0008229175582528114, + -0.03997412323951721, + -0.009286558255553246, + 0.06675240397453308, + 0.042513661086559296, + 0.017421213909983635, + 0.034812457859516144, + -0.023846706375479698, + -0.059626948088407516, + -0.07990073412656784, + -0.04551997780799866, + -0.05480930581688881, + -0.014865254983305931, + -0.03598293289542198, + -0.008495323359966278, + 0.025030983611941338, + -0.012937509454786777, + 0.02686137892305851, + -0.0211919154971838, + -0.052923060953617096, + -0.00690028490498662, + 0.042466871440410614, + 0.019416945055127144, + -0.03776063770055771, + -0.05412888154387474, + -0.017540499567985535, + -0.008626826107501984, + 0.04319096729159355, + 0.049800582230091095, + -0.04380166530609131, + 0.0167695265263319, + 0.0006942275213077664, + 0.08762770146131516, + 0.05404676869511604, + 0.0064218961633741856, + 0.01547556184232235, + -0.0735715851187706, + -0.04050270840525627, + 0.007029504980891943 + ], + "bed-bold||hotels,accommodations,sleeping,places,locations,medical,hospital": [ + 0.10206444561481476, + -0.03702329099178314, + -0.006964261643588543, + 0.05957271158695221, + 0.005889212712645531, + 0.06673765927553177, + -0.010364972986280918, + -0.03548665717244148, + 0.024961363524198532, + 0.01365351490676403, + -0.03260449692606926, + 0.02218552492558956, + 0.06603855639696121, + 0.02659284695982933, + 0.004697246942669153, + -0.006805236916989088, + 0.09699665755033493, + -0.03882365673780441, + 0.08498872071504593, + 0.04570435732603073, + 0.012365198694169521, + 0.09360280632972717, + 0.09768828004598618, + 0.024267690256237984, + 0.037877872586250305, + -0.02620202861726284, + -0.030271366238594055, + -0.026114825159311295, + -0.015649789944291115, + -0.05630318075418472, + -0.017071465030312538, + 0.02581814117729664, + 0.02294287458062172, + -0.0030779996886849403, + 0.11654023826122284, + 0.009827826172113419, + -0.0342109240591526, + -0.010483147576451302, + -0.021782787516713142, + 0.0461905300617218, + 0.022065699100494385, + 0.008578279055655003, + 0.0029480764642357826, + 0.00675759045407176, + 0.007662009447813034, + 0.02374757081270218, + -0.08171052485704422, + -0.032864637672901154, + 0.04663270339369774, + 0.043020643293857574, + 0.06538238376379013, + -0.032795969396829605, + -0.08572889119386673, + 0.0887657031416893, + 0.0017679139273241162, + -0.010132384486496449, + -0.08067916333675385, + -0.06419683247804642, + 0.0008928871247917414, + 0.03335028141736984, + 0.014486541971564293, + 0.08784718811511993, + 0.06433059275150299, + 0.036349184811115265, + -0.0033649741671979427, + -0.010285482741892338, + -0.06689973175525665, + 0.07447323948144913, + 0.047861821949481964, + -0.05464138463139534, + -0.05622955784201622, + -0.016828659921884537, + -0.014363005757331848, + 0.01145920716226101, + -0.0610947422683239, + -0.03922193497419357, + 0.06508297473192215, + -0.01398590300232172, + 0.03467343747615814, + -0.06522834300994873, + -0.11672055721282959, + -0.06637978553771973, + 0.05841344967484474, + -0.000785822223406285, + -0.045873697847127914, + 0.013524872250854969, + -0.03399549052119255, + 0.005639024078845978, + -0.016402196139097214, + -0.06793516129255295, + 0.03025689721107483, + -0.020765986293554306, + -0.03469731658697128, + 0.01703132875263691, + 0.02172299101948738, + 0.010000639595091343, + -0.06710054725408554, + -0.006067799404263496, + -0.04181200638413429, + 0.013054395094513893, + 0.056634023785591125, + 0.0693405419588089, + 0.0841742530465126, + 0.018389491364359856, + -0.048409558832645416, + -0.05252763628959656, + -0.031546853482723236, + -0.023173702880740166, + -0.06729353219270706, + -0.029721712693572044, + -0.02771797962486744, + -0.023681193590164185, + 0.029090680181980133, + 0.011087688617408276, + 0.018375596031546593, + 0.029905887320637703, + 0.06064717099070549, + -0.04320095106959343, + 0.10738471150398254, + 0.03161158040165901, + -0.02301892451941967, + -0.00812942162156105, + 0.011850614100694656, + -0.044128239154815674, + -0.0698733776807785, + -0.021740008145570755, + -0.032165128737688065, + -3.698302490332664e-33, + 0.013286172412335873, + -0.007119492162019014, + -0.022483767941594124, + 0.10971631854772568, + 0.07781586050987244, + 0.025684168562293053, + -0.08291000872850418, + 0.0031714693177491426, + 0.026146525517106056, + 0.0769481286406517, + -0.025777176022529602, + 0.005898381117731333, + 0.036547113209962845, + -0.021198388189077377, + -0.012920836918056011, + 0.028454730287194252, + -0.010649476200342178, + 0.007044258527457714, + -0.1276530772447586, + 0.06085745245218277, + -0.06676264852285385, + 0.07267645001411438, + 0.018595969304442406, + 0.08748415112495422, + -0.025121893733739853, + -0.04314610734581947, + -0.025040367618203163, + -0.02937067672610283, + -0.0021284190006554127, + 0.016097143292427063, + -0.02162690833210945, + -0.020424501970410347, + 0.0035805553197860718, + -0.07134752720594406, + 0.03215203806757927, + 0.046597808599472046, + 0.0002120074350386858, + -0.007221573498100042, + -0.11140163987874985, + 0.029689017683267593, + -0.05528121441602707, + -0.012681432068347931, + -0.03638731315732002, + 0.09420222789049149, + 0.07273082435131073, + 0.10160481184720993, + 0.043161790817976, + 0.0034852498210966587, + 0.048436135053634644, + -0.0333692766726017, + -0.07539096474647522, + -0.005139551125466824, + -0.16902205348014832, + -0.04774056747555733, + -0.023023683577775955, + 0.021243566647171974, + -0.03547339886426926, + 0.022555602714419365, + 0.11609068512916565, + 0.07510878890752792, + 0.09481320530176163, + 0.0006371414638124406, + 0.016991226002573967, + -0.07641743123531342, + -0.027392273768782616, + -0.06698059290647507, + 0.040333572775125504, + -0.014395337551832199, + 0.024874694645404816, + -0.06261998414993286, + 0.0038644641172140837, + 0.007222841493785381, + 0.07881081849336624, + 0.07329034805297852, + 0.016676727682352066, + -0.0068017966113984585, + -0.054184187203645706, + 0.018920594826340675, + -0.02641269937157631, + -0.05661379173398018, + 0.001195829943753779, + -0.002807151060551405, + -0.011755876243114471, + 0.13444341719150543, + 0.10237572342157364, + -0.0402173213660717, + -0.014423188753426075, + -0.04997233673930168, + -0.07302556931972504, + -3.954769636038691e-05, + -0.1125195100903511, + 0.022415366023778915, + 0.07608549296855927, + -0.053764160722494125, + -0.07736878842115402, + 1.5855667030503445e-34, + 0.021130386739969254, + -0.09899283200502396, + -0.0411258190870285, + -0.04647450149059296, + 0.02642238512635231, + 0.023022692650556564, + -0.008958685211837292, + -0.040883392095565796, + 0.035111233592033386, + 0.025345677509903908, + -0.07440291345119476, + -0.027506062760949135, + 0.034866783767938614, + -0.0341225303709507, + -0.005648056510835886, + 0.011007877066731453, + 0.01727554015815258, + -0.010658529587090015, + -0.08461233973503113, + 0.09582313150167465, + -0.011630326509475708, + -0.02502044476568699, + -0.07058238983154297, + 0.03444818779826164, + 0.006076131947338581, + 0.11256659775972366, + -0.026656614616513252, + 0.0222182460129261, + -0.07662343233823776, + -0.0565975196659565, + -0.09172235429286957, + -0.007624536287039518, + -0.009332452900707722, + 0.03305260092020035, + -0.0852411538362503, + 0.05182788521051407, + 0.02958413027226925, + -0.01875021494925022, + -0.05526529997587204, + -0.006950116250663996, + 0.0990867093205452, + -0.08094657212495804, + -0.02484734356403351, + 0.056767527014017105, + 0.029126660898327827, + 0.01074778288602829, + -0.14570209383964539, + -0.0837116539478302, + 0.05144955962896347, + 0.027340086176991463, + 0.006216954905539751, + -0.056650497019290924, + -0.03199297562241554, + -0.005516819655895233, + -0.045314542949199677, + -0.025174658745527267, + -0.057559750974178314, + -0.03352978080511093, + 0.0006612133583985269, + 0.10055004805326462, + 0.049193695187568665, + 0.001669069635681808, + -0.04991922155022621, + 0.06629285216331482, + -0.026257963851094246, + -0.05709053575992584, + 0.011859099380671978, + -0.011308194138109684, + -0.01024830061942339, + -0.013427093625068665, + -0.037267547100782394, + -0.06182802468538284, + -0.02884835936129093, + 0.06162711977958679, + 0.0007812398253008723, + -0.02941792644560337, + 0.0870235338807106, + -0.06518878042697906, + -0.017478911206126213, + -0.016493964940309525, + -0.02441556565463543, + -0.11044077575206757, + -0.022459302097558975, + 0.052795566618442535, + -0.012407117523252964, + -0.048849426209926605, + 0.08104775846004486, + -0.012159480713307858, + 0.003239947371184826, + -0.05152164772152901, + -0.06000329554080963, + -0.01240252610296011, + -0.10469380021095276, + -0.06705551594495773, + -0.02043934538960457, + -2.2338200622584736e-08, + -0.03447684273123741, + 0.003426136914640665, + 0.010016107000410557, + 0.0010972140589728951, + -0.03778814151883125, + -0.13000993430614471, + 0.06344329565763474, + 0.05645706504583359, + -0.05589614808559418, + 0.06493139266967773, + -0.01742258481681347, + 0.03895487263798714, + 0.008778097108006477, + -0.07733474671840668, + 0.017817098647356033, + 0.06185794249176979, + -0.08474016189575195, + 0.09135142713785172, + -0.002534111263230443, + -0.060403820127248764, + 0.010097050108015537, + 0.051509469747543335, + -0.0069796317256987095, + -0.02813171036541462, + 0.0549742728471756, + 0.04638143628835678, + 0.004907547030597925, + 0.07145951688289642, + 0.07234343141317368, + -0.002927041845396161, + 0.08413141965866089, + 0.049553826451301575, + -0.011162873357534409, + -0.006280712317675352, + -0.09870055317878723, + -0.0608561709523201, + 0.06150767579674721, + -0.04463004693388939, + 0.004290521610528231, + 0.02543543465435505, + -0.04488492012023926, + -0.07604186236858368, + -0.0162788238376379, + -0.03369593247771263, + -0.00041697180131450295, + -0.009770839475095272, + 0.07135748863220215, + 0.03476892411708832, + -0.011979940347373486, + -0.014737210236489773, + 0.011220988817512989, + 0.026497334241867065, + 0.07180481404066086, + 0.02636064775288105, + 0.0056650456972420216, + 0.008516603149473667, + 0.0015916487900540233, + -0.04471519589424133, + 0.024058235809206963, + 0.05390036478638649, + 0.06959734857082367, + -0.06555608659982681, + 0.0008890501921996474, + 0.002815780695527792 + ], + "beer-bottle-bold||drinks,beverages,places,locations,bars,restaurants,food,dining": [ + 0.04111216962337494, + 0.0005598684656433761, + -0.04857350513339043, + 0.03145439177751541, + -0.00576545437797904, + 0.03862093389034271, + 0.048562198877334595, + -0.03918089345097542, + -0.02097148634493351, + -0.05111629515886307, + 0.035599712282419205, + -0.029299426823854446, + -0.0459313690662384, + -9.482686436967924e-05, + 0.049340713769197464, + -0.03297501802444458, + 0.0952184796333313, + -0.04078241065144539, + 0.06646114587783813, + -0.046223536133766174, + 0.01729397661983967, + 0.02982458658516407, + 0.09037384390830994, + 0.09403339773416519, + 0.07742968946695328, + 0.05833074823021889, + -0.020646603778004646, + 0.05261128023266792, + 0.011494530364871025, + -0.05573638901114464, + 0.002595307072624564, + 0.07025433331727982, + 0.05451556667685509, + -0.032171912491321564, + 0.03125661239027977, + -0.0362156517803669, + 0.04111456125974655, + -0.041438985615968704, + 0.0922226831316948, + 0.043795593082904816, + 0.036339737474918365, + -0.010223958641290665, + -0.030611691996455193, + 0.06319771707057953, + -0.01858467608690262, + 0.022492239251732826, + -0.0743570402264595, + 0.08060821890830994, + 0.020061945542693138, + -0.005138912703841925, + -0.012441742233932018, + -0.03190251439809799, + -0.011148545891046524, + 0.015207380056381226, + 0.08316639810800552, + -0.050959598273038864, + -0.03917771950364113, + -0.04364308342337608, + 0.04454198107123375, + 0.0922943726181984, + 0.0860227718949318, + 0.012898209504783154, + -0.048885975033044815, + 0.10594115406274796, + -0.011123226955533028, + -0.02929673157632351, + -0.0760243609547615, + 0.04114314168691635, + -0.045157141983509064, + -0.06691161543130875, + 0.01923229917883873, + -0.05284737050533295, + 0.038047801703214645, + -0.00305081601254642, + -0.058948829770088196, + -0.09195389598608017, + 0.0770958960056305, + -0.024858752265572548, + -0.04876643791794777, + 0.0623256154358387, + -0.08890983462333679, + -0.03397839888930321, + -0.007567931432276964, + 0.02251615934073925, + -0.043518055230379105, + -0.02693108096718788, + -0.03897799551486969, + -0.027830468490719795, + -0.026667797937989235, + -0.018542999401688576, + -0.1607796549797058, + -0.03722695633769035, + -0.04042278230190277, + -0.08639688044786453, + -0.029521793127059937, + 0.052089184522628784, + 0.07864004373550415, + -0.016726018860936165, + 0.029352053999900818, + 0.048671722412109375, + 0.06797003000974655, + 0.05369729921221733, + 0.025443870574235916, + -0.036893393844366074, + 0.01325907651335001, + -0.014240099117159843, + -0.0703492984175682, + 0.08104013651609421, + 0.046891018748283386, + 0.006807046476751566, + -0.045621007680892944, + -0.006818131543695927, + 0.02123960107564926, + -0.0013421617913991213, + -0.0773322731256485, + -0.04062580689787865, + 0.029710989445447922, + -0.0446864478290081, + 0.06283649802207947, + -0.018997786566615105, + -0.06229362264275551, + 0.009144020266830921, + 0.0548015832901001, + -0.006578042637556791, + -0.08921895921230316, + 0.014546053484082222, + 0.013808648101985455, + -5.555935110911171e-33, + -0.042405351996421814, + -0.11587273329496384, + -0.03182349354028702, + 0.0823601633310318, + 0.044189706444740295, + -0.03178885951638222, + -0.04619290679693222, + -0.05862310528755188, + -0.05752231925725937, + 0.0033509342465549707, + 0.08465032279491425, + -0.03933776170015335, + -0.02041737549006939, + 0.0645366683602333, + 0.09196443110704422, + -0.0064308601431548595, + 0.013703221455216408, + -0.025319145992398262, + -0.058281153440475464, + -0.06420032680034637, + -0.07120420783758163, + -0.006183667574077845, + -0.018173862248659134, + 0.035700682550668716, + -0.055630967020988464, + -0.02287829853594303, + 0.07427261024713516, + -0.008444629609584808, + 0.00794944167137146, + 0.019814403727650642, + -0.0047866785898804665, + 0.07657512277364731, + 0.020459696650505066, + 0.0003909388033207506, + -0.0019313928205519915, + -0.0018555955030024052, + -0.04084048792719841, + -0.046544067561626434, + -0.008734720759093761, + -0.029398689046502113, + -0.005394528154283762, + 0.05619387701153755, + -0.005018594674766064, + 0.060526106506586075, + 0.010082758963108063, + 0.1648256927728653, + -0.04581562057137489, + -0.0924626961350441, + 0.025177882984280586, + 0.030383005738258362, + -0.08630717545747757, + -0.018324056640267372, + -0.02837117202579975, + 0.04272483289241791, + -0.04564875736832619, + -0.013007529079914093, + -0.03484882786870003, + 0.041300833225250244, + 0.026347003877162933, + -0.10558462888002396, + -0.044670432806015015, + 0.09307633340358734, + 0.008816439658403397, + -0.08568409830331802, + -0.0028660574462264776, + 0.044915203005075455, + -0.04132149741053581, + -0.007785139139741659, + 0.06406615674495697, + -0.02878522500395775, + -0.009601900354027748, + 0.09752999246120453, + 0.036919474601745605, + 0.007526929024606943, + 0.04606501758098602, + 0.047912877053022385, + 0.018349384889006615, + 0.005234787706285715, + 0.005927049554884434, + -0.004019994288682938, + -0.02573002688586712, + -0.017663661390542984, + 0.02925211377441883, + 0.1415099799633026, + -0.012293633073568344, + -0.02367120049893856, + 0.018885154277086258, + -0.1304698884487152, + 0.016431601718068123, + -0.03917039558291435, + -0.11681532114744186, + -0.037667326629161835, + -3.5094904887955636e-05, + -0.03257817029953003, + -0.060912877321243286, + 1.2229269254104092e-33, + 0.10724920779466629, + -0.09554384648799896, + 0.07163922488689423, + -0.03581298142671585, + 0.051305901259183884, + -0.05043251812458038, + -0.06303045898675919, + -0.011475004255771637, + 0.04252803698182106, + -0.03291703015565872, + -0.06861373782157898, + 0.02335730753839016, + -0.013255776837468147, + 0.011394016444683075, + -0.006678090430796146, + 0.06661274284124374, + 0.06361588090658188, + 0.049249060451984406, + -0.036438822746276855, + 0.033221278339624405, + -0.026259111240506172, + -0.00856930110603571, + -0.03332889452576637, + 0.0020100076217204332, + -0.02833429165184498, + 0.049158066511154175, + 0.007602940779179335, + -0.06131201609969139, + -0.057946138083934784, + -0.04201119765639305, + -0.02049042470753193, + -0.004555495921522379, + 0.06098408252000809, + 0.027891073375940323, + -0.0705377608537674, + 0.07290167361497879, + 0.015172784216701984, + -0.07127915322780609, + -0.04258862882852554, + -0.012014412321150303, + 0.09386404603719711, + -0.010380991734564304, + 0.03155529871582985, + 0.019526682794094086, + 0.07037010788917542, + 0.0340261310338974, + -0.09949397295713425, + -0.09216021001338959, + -0.026570824906229973, + 0.029841139912605286, + 0.030531983822584152, + 0.02903989516198635, + -0.09266065806150436, + 0.06095139682292938, + 0.0008273781277239323, + -0.06731371581554413, + 0.010617140680551529, + -0.021252404898405075, + -0.03402544930577278, + -0.008888402953743935, + -0.030090313404798508, + 0.09574709087610245, + -0.02162523940205574, + 0.049837034195661545, + -0.020743083208799362, + -0.10188174992799759, + -0.029317865148186684, + 0.018930651247501373, + 0.007245544344186783, + -0.03776627406477928, + 0.01631098985671997, + 0.01072463858872652, + 0.007859407924115658, + 0.0772784948348999, + -0.016191275790333748, + -0.03693145513534546, + 0.01117907278239727, + -0.02094404399394989, + -0.025748876854777336, + 0.06783276796340942, + -0.033883001655340195, + -0.0018119262531399727, + -0.06250863522291183, + 0.11957786232233047, + 0.06088707968592644, + -0.03424721211194992, + 0.03687673434615135, + -0.01896636188030243, + -0.03611508756875992, + 0.021564558148384094, + 0.005635941866785288, + 0.0626315027475357, + -0.12990844249725342, + -0.013224138878285885, + 0.047611773014068604, + -2.3817927186087218e-08, + 0.03224945813417435, + 0.027766000479459763, + -0.05659539997577667, + 0.0818437933921814, + 0.01829255186021328, + -0.057658012956380844, + 0.03955695033073425, + -0.02678193710744381, + -0.016028620302677155, + -0.0005121575086377561, + 0.01141330599784851, + 0.05031002312898636, + -0.0366954579949379, + -0.046683307737112045, + -0.02443680725991726, + 0.01620292291045189, + -0.10195702314376831, + 0.015340539626777172, + 0.02905973233282566, + 0.015506292693316936, + -0.024960367009043694, + 0.009395161643624306, + 0.06528876721858978, + -0.03982626646757126, + -0.053811416029930115, + -0.013453343883156776, + -0.01974097639322281, + 0.03431403636932373, + 0.10152310878038406, + -0.03351721167564392, + -0.0015954197151586413, + 0.10914824903011322, + -0.03026307374238968, + 0.04731778800487518, + -0.04069800674915314, + -0.07085902988910675, + -0.05674620717763901, + -0.03654256835579872, + -0.06787114590406418, + 0.025359028950333595, + -0.022418973967432976, + -0.10705836862325668, + -0.06803429126739502, + -0.007712357211858034, + -0.011094671674072742, + 0.05079634115099907, + 0.04399586841464043, + 0.055916231125593185, + -0.028711944818496704, + -0.024767925962805748, + -0.012585225515067577, + 0.04605742543935776, + 0.06880154460668564, + -0.004789944738149643, + -0.014888262376189232, + 0.00793288554996252, + -0.0386066772043705, + -0.04678688570857048, + 0.008527138270437717, + -0.041808851063251495, + 0.1648077666759491, + -0.020775312557816505, + 0.0036513088271021843, + 0.000279266998404637 + ], + "beer-stein-bold||drinks,beverages,places,locations,bars,restaurants,food,dining": [ + 0.06026289239525795, + 0.0018195019802078605, + -0.0293204877525568, + 0.028773078694939613, + 0.02842188999056816, + 0.04766317829489708, + 0.0308674369007349, + -0.03969689458608627, + 0.023792456835508347, + -0.02849733643233776, + -0.00040288837044499815, + 0.0023812383878976107, + -0.09001117944717407, + 0.0006747005973011255, + 0.03310558572411537, + -0.06219060346484184, + 0.09468669444322586, + -0.02996331825852394, + 0.04809141904115677, + -0.001165356021374464, + 0.045252230018377304, + 0.03558662533760071, + 0.0802992507815361, + 0.01156880147755146, + 0.14749063551425934, + 0.05135410651564598, + 0.003471990115940571, + 0.08550110459327698, + -0.010247974656522274, + -0.07460348308086395, + 0.01313757337629795, + 0.03381006047129631, + 0.07830926030874252, + 0.00374399172142148, + 0.03086281567811966, + 0.010671335272490978, + 0.051449161022901535, + -0.08242247253656387, + 0.08281562477350235, + 0.05616852641105652, + -0.011107992380857468, + 0.007289912085980177, + -0.05352475494146347, + -0.007330326363444328, + -0.052282579243183136, + 0.05613910034298897, + -0.12464998662471771, + 0.04264691099524498, + 0.012684895657002926, + 0.0190918929874897, + -0.032777123153209686, + -0.05638790503144264, + 0.008803438395261765, + 0.0017880921950563788, + 0.08416581153869629, + -0.035893429070711136, + -0.047179654240608215, + -0.027646824717521667, + 0.07393445074558258, + 0.05524628236889839, + 0.0704403966665268, + -0.05406193062663078, + -0.03440640866756439, + 0.07366982847452164, + -0.04002152383327484, + -0.07573796063661575, + -0.06725790351629257, + 0.08223127573728561, + -0.09605935215950012, + -0.062461432069540024, + 0.04631063714623451, + 0.011426732875406742, + 0.03127944841980934, + -0.045786090195178986, + -0.0008870329475030303, + -0.1010480597615242, + 0.009374222718179226, + -0.028361719101667404, + -0.007469188887625933, + 0.01628647744655609, + -0.061047088354825974, + -0.04396430030465126, + 0.0036494701635092497, + 0.055185940116643906, + -0.05481160059571266, + 0.014106515794992447, + -0.010154889896512032, + -0.03321237862110138, + -0.014237592928111553, + 0.002056566998362541, + -0.13061237335205078, + -0.06711268424987793, + -0.00274130841717124, + -0.07179512828588486, + -0.03150331601500511, + 0.045342568308115005, + 0.03840314969420433, + -0.0453634113073349, + 0.04132341593503952, + 0.05962080508470535, + 0.0119613166898489, + 0.038802504539489746, + 0.10727107524871826, + -0.05554518103599548, + 0.04822755232453346, + -0.025265928357839584, + -0.03525391221046448, + 0.06283105164766312, + 0.024933258071541786, + -0.023582540452480316, + 0.015203711576759815, + -0.049186281859874725, + 0.034081075340509415, + 0.00557059608399868, + -0.016152286902070045, + -0.022233765572309494, + 0.03319718316197395, + -0.05039451643824577, + 0.07302961498498917, + 0.02738451398909092, + -0.04931362345814705, + 0.023813923820853233, + 0.024116208776831627, + 0.023047272115945816, + -0.1320953667163849, + 0.08487965166568756, + -0.011887021362781525, + -4.213001140705849e-33, + -0.03876318037509918, + -0.07320716232061386, + -0.10259494185447693, + 0.07449627667665482, + 0.09064732491970062, + -0.05651635676622391, + -0.05396317318081856, + -0.015811242163181305, + -0.028760366141796112, + -0.009479336440563202, + 0.03207062557339668, + -0.020314158871769905, + -0.031425341963768005, + 0.06711994856595993, + 0.06895729899406433, + -0.02753397822380066, + 0.05120314657688141, + -0.0016732134390622377, + -0.053093116730451584, + -0.0019594088662415743, + 0.017693733796477318, + -0.044769950211048126, + -0.0015055641997605562, + 0.055306900292634964, + -0.03141813352704048, + -0.07065454870462418, + 0.07656636089086533, + -0.03564834967255592, + 0.005259035155177116, + 0.005131974816322327, + 0.001036554342135787, + 0.09815242141485214, + 0.04422192648053169, + -0.031872205436229706, + 0.05731756612658501, + 0.03344617038965225, + -0.011055538430809975, + 0.02471919171512127, + -0.020434105768799782, + -0.01207525935024023, + -0.0005910037434659898, + 0.035455115139484406, + -0.04362323135137558, + 0.06623600423336029, + 0.0157026294618845, + 0.1305828094482422, + 0.032771266996860504, + -0.04182660952210426, + 0.08121616393327713, + 0.028534535318613052, + -0.09401341527700424, + -0.011135506443679333, + 0.008367347531020641, + 0.0067365942522883415, + -0.028544900938868523, + 0.011960746720433235, + -0.031108075752854347, + 0.05940130725502968, + 0.03352858126163483, + -0.1124962642788887, + -0.04712187126278877, + 0.10472122579813004, + 0.0411548838019371, + -0.035245947539806366, + -0.016232755035161972, + 0.032202281057834625, + 0.0011021624086424708, + -0.0420089028775692, + 0.08472034335136414, + -0.0128267090767622, + -0.01186260674148798, + 0.03457418829202652, + 0.041740212589502335, + -0.0015199320623651147, + 0.035121697932481766, + 0.04523392766714096, + -0.05366075038909912, + -0.018792670220136642, + 0.037985410541296005, + -0.04607709124684334, + -0.034309446811676025, + -0.05830724909901619, + -0.01774626411497593, + 0.11239483952522278, + -0.008338501676917076, + -0.028894370421767235, + 0.03511835262179375, + -0.1299242228269577, + -0.010327555239200592, + 0.00033539917785674334, + -0.12905769050121307, + -5.5672739108558744e-05, + 0.022579096257686615, + -0.06738196313381195, + -0.09097878634929657, + 1.1332252270056489e-33, + 0.08400983363389969, + -0.0586414597928524, + 0.019351210445165634, + -0.006074271164834499, + 0.015200152061879635, + 0.01689024455845356, + -0.026088915765285492, + -0.026984700933098793, + 0.05228069797158241, + -0.025636466220021248, + -0.03994394838809967, + 0.004823741037398577, + -0.002083780476823449, + 0.05729787424206734, + -0.008886350318789482, + 0.033235032111406326, + 0.028223739936947823, + 0.03894556313753128, + -0.03439972549676895, + 0.0048509687185287476, + -0.04539542645215988, + 0.0023422762751579285, + 0.001728929579257965, + 0.019594041630625725, + 0.012320966459810734, + 0.06189446151256561, + 0.0291310902684927, + -0.011822754517197609, + -0.11336284875869751, + -0.058225877583026886, + -0.02171185612678528, + -0.027728984132409096, + 0.047117020934820175, + 0.033348146826028824, + -0.04764915630221367, + 0.0777113288640976, + 0.03421105071902275, + -0.059509266167879105, + -0.04988729953765869, + -0.04270618036389351, + 0.12011594325304031, + -0.0451243557035923, + 0.011457628570497036, + 0.03875170275568962, + 0.028358032926917076, + 0.019249234348535538, + -0.04574272036552429, + -0.06276226788759232, + -0.008089929819107056, + 0.0005399060901254416, + -0.02461492083966732, + 0.017563004046678543, + -0.14051203429698944, + 0.05645567551255226, + -0.02893366664648056, + -0.03745603561401367, + -0.0012474596733227372, + -0.028318142518401146, + -0.09525985270738602, + -0.004396829754114151, + -0.07630249112844467, + 0.07166231423616409, + 0.061067938804626465, + 0.08104309439659119, + 0.026568690314888954, + -0.11740810424089432, + -0.053201328963041306, + -0.051017723977565765, + 0.043326884508132935, + 0.0015282519161701202, + -0.015570232644677162, + -0.01134298462420702, + 0.014708423987030983, + 0.03566395118832588, + -0.054298024624586105, + -0.04616275802254677, + 0.040378011763095856, + -0.002710255328565836, + -0.013216041959822178, + -0.002029793569818139, + -0.03227638825774193, + 0.008951028808951378, + -0.09421371668577194, + 0.07436232268810272, + 0.06383741647005081, + -0.0286722369492054, + 0.05585826560854912, + -0.051684021949768066, + -0.026875365525484085, + 0.07338695228099823, + 0.013368130661547184, + 0.06231940537691116, + -0.07313202321529388, + -0.04650674760341644, + 0.01751496084034443, + -2.1246535197860794e-08, + 0.04667458310723305, + 0.03103378787636757, + -0.0538950152695179, + 0.07109859585762024, + 0.043883904814720154, + -0.12351696938276291, + 0.033034548163414, + -0.04568632319569588, + -0.05596008896827698, + 0.05121828615665436, + -0.04447641968727112, + 0.06614681333303452, + -0.02598991058766842, + -0.06013220176100731, + 0.029861299321055412, + -0.0064939167350530624, + -0.049020107835531235, + 0.03244194760918617, + -0.022602681070566177, + 0.02427380532026291, + 0.012097232975065708, + 0.022154483944177628, + 0.03963841125369072, + -0.03356543555855751, + -2.150888121832395e-06, + -0.003686460666358471, + -0.04474177956581116, + -0.039285141974687576, + 0.06748167425394058, + -0.0496191643178463, + 0.02233879454433918, + 0.12935538589954376, + -0.03181147947907448, + 0.016667120158672333, + -0.02919211983680725, + -0.07671427726745605, + -0.033679552376270294, + -0.016296371817588806, + -0.07555381953716278, + 0.003450609976425767, + -0.01949773170053959, + -0.09030485153198242, + -0.0672295019030571, + -0.02631756290793419, + -0.05181147903203964, + 0.031708452850580215, + 0.06188562884926796, + 0.03343348205089569, + 0.01585027389228344, + 0.039157237857580185, + -0.03333548456430435, + 0.059773657470941544, + 0.05021333694458008, + 0.03633871674537659, + -0.025159627199172974, + -0.0029615997336804867, + -0.03416971489787102, + -0.007680477574467659, + -0.004430054221302271, + -0.05069327726960182, + 0.1497402936220169, + 0.0035069554578512907, + -0.03200080245733261, + -0.021381620317697525 + ], + "behance-logo-bold||logos,illustration,ui,interface": [ + 0.018685366958379745, + 0.06110610440373421, + -0.05227147415280342, + 0.0041854712180793285, + 0.08247792720794678, + -0.010012657381594181, + 0.07653741538524628, + -0.027082940563559532, + 0.007232582196593285, + 0.012669931165874004, + -0.016380030661821365, + -0.019701555371284485, + 0.05489617586135864, + -0.043854765594005585, + 0.01578451320528984, + -0.025371333584189415, + 0.018565546721220016, + -0.02420850098133087, + 0.04898517206311226, + -0.020566744729876518, + 0.059139493852853775, + 0.01028983760625124, + 0.015497468411922455, + 0.003468475304543972, + 0.008257306180894375, + 0.030327942222356796, + 0.06634198874235153, + 0.0031138546764850616, + 0.015785638242959976, + -0.07984699308872223, + -0.018285322934389114, + 0.010362041182816029, + 0.09300123900175095, + 0.045779697597026825, + -0.027375709265470505, + 0.017744412645697594, + 0.05204307660460472, + -0.013709601014852524, + 0.036645084619522095, + -0.0017992912326008081, + -0.034661825746297836, + 0.003975278232246637, + -0.012314857915043831, + 0.0066207838244736195, + -0.0038874754682183266, + 0.03194215148687363, + -0.07984679937362671, + 0.023420479148626328, + 0.017920615151524544, + -0.02295912243425846, + 0.02357780747115612, + -0.12735792994499207, + -0.10263363271951675, + -0.05236317217350006, + 0.06734903901815414, + -0.0014477124204859138, + -0.04480789601802826, + -0.023071423172950745, + 0.03021509200334549, + 0.032320424914360046, + 0.057738296687603, + 0.04733649641275406, + 0.03444480150938034, + 0.06827958673238754, + 0.0918436124920845, + -0.0025773318484425545, + -0.036949288100004196, + 0.05218043550848961, + -0.04941437020897865, + -0.055163607001304626, + 0.08396640419960022, + -0.031270869076251984, + 0.005927631165832281, + -0.08178359270095825, + -0.026520010083913803, + -0.019199341535568237, + 0.04646335542201996, + 0.04940597340464592, + -0.05517162010073662, + -0.12044692784547806, + -0.09617014974355698, + 0.0018777577206492424, + 0.014966165646910667, + 0.0011335497256368399, + 0.04416351392865181, + 0.07698849588632584, + -0.10359933227300644, + -0.018112272024154663, + 0.003749811789020896, + 0.01097684446722269, + -0.017710471525788307, + 0.007054422982037067, + -0.05926356837153435, + -0.004668165929615498, + -0.026102615520358086, + -0.007481940556317568, + -0.007180926389992237, + -0.07323236763477325, + -0.07862349599599838, + 0.09854723513126373, + -0.02350553683936596, + 0.0034684594720602036, + 0.08725081384181976, + -0.03990946337580681, + 0.013759366236627102, + 0.021562334150075912, + 0.06343359500169754, + -0.054980821907520294, + 0.04046200215816498, + 0.0801672637462616, + 0.031199531629681587, + -0.12339818477630615, + -0.07136255502700806, + -0.002474721521139145, + -0.027246050536632538, + -0.020050913095474243, + -0.02652326226234436, + -0.019365331158041954, + 0.11301560699939728, + -0.05791650339961052, + -0.009134500287473202, + 0.029199756681919098, + -0.013138141483068466, + -0.07692461460828781, + 0.007563485763967037, + 0.010293686762452126, + -0.010363214649260044, + -2.8030750127631956e-33, + 0.026113329455256462, + 0.08037680387496948, + -0.02743305265903473, + 0.10022091120481491, + -0.002708537271246314, + 1.416858879110805e-07, + 0.026242433115839958, + -0.06876413524150848, + -0.06884240359067917, + 0.02307208813726902, + 0.05174550414085388, + 0.07201500236988068, + -0.05547599121928215, + 0.09646298736333847, + 0.037520941346883774, + -0.04489396512508392, + -0.02907193824648857, + -0.015877729281783104, + -0.08493297547101974, + -0.06299968808889389, + -0.07886257022619247, + -0.0014787981053814292, + -0.10375116765499115, + -0.03533245995640755, + -0.0005812421441078186, + -0.00513111986219883, + 0.010255479253828526, + 0.00412216130644083, + -0.0012726131826639175, + -0.0030923793092370033, + 0.06507783383131027, + 0.07116705924272537, + 0.013566424138844013, + -0.0004889815463684499, + -0.0946134701371193, + -0.06578579545021057, + -0.056200653314590454, + -0.015895823016762733, + 0.013856207951903343, + 0.016855604946613312, + -0.06058374047279358, + -0.02354147844016552, + -0.06232326477766037, + -0.005512469448149204, + 0.015054491348564625, + 0.19076144695281982, + 0.0039735534228384495, + -0.051563654094934464, + 0.07701326161623001, + -0.0110715851187706, + -0.03912326321005821, + -0.004682202823460102, + 0.011468044482171535, + -0.04382004961371422, + -0.03755702078342438, + -0.06920379400253296, + -0.00793094839900732, + 0.12203969806432724, + 0.06853330135345459, + -0.007794300094246864, + 0.015264106914401054, + 0.02699650265276432, + 0.0061223627999424934, + 0.0237934160977602, + -0.029569385573267937, + 0.13644178211688995, + -0.027539433911442757, + 0.052151039242744446, + 0.036510176956653595, + -0.006536498665809631, + -0.05778875946998596, + 0.02918984927237034, + 0.12291868776082993, + -0.006937297526746988, + -0.05865147337317467, + 0.009418180212378502, + -0.0025761660654097795, + 0.04238182678818703, + -0.011393723078072071, + -0.0211136844009161, + -0.0336729995906353, + 0.001969153992831707, + -0.0411808155477047, + 0.04917503148317337, + 0.03822657838463783, + 0.03225301206111908, + 0.07674024999141693, + -0.05593400076031685, + -0.025996508076786995, + 0.025339005514979362, + -0.03634338080883026, + 0.044795919209718704, + 0.010671312920749187, + -0.005855835508555174, + -0.098289854824543, + 7.283890592620321e-34, + 0.04131750389933586, + 0.038016363978385925, + 0.0026436427142471075, + -0.022111592814326286, + -0.0279439315199852, + 0.018598828464746475, + 0.06716202944517136, + 0.06841163337230682, + -0.08838385343551636, + -0.027675939723849297, + 0.09286998957395554, + -0.019608497619628906, + -0.051051635295152664, + -0.031051229685544968, + -0.04772152379155159, + 0.00372389517724514, + 0.015418460592627525, + 0.05878361687064171, + -0.07862882316112518, + -0.043440330773591995, + -0.0024052520748227835, + 0.05445675551891327, + -0.06642262637615204, + -0.023027805611491203, + -0.07877308130264282, + 0.06672155857086182, + 0.006297454237937927, + -0.0004668825422413647, + -0.055501215159893036, + -0.011206544935703278, + -0.021294696256518364, + -0.06384535878896713, + 0.00217303610406816, + 0.03875483572483063, + 0.018403390422463417, + 0.0025523672811686993, + -0.006935993209481239, + -0.03695189952850342, + -0.05473083257675171, + 0.03272230923175812, + -0.05251891165971756, + 0.018431950360536575, + 0.0027573255356401205, + 0.056086450815200806, + -0.05091061443090439, + -0.01541041024029255, + -0.08120372146368027, + -0.06328170746564865, + -0.04398471862077713, + 0.05729978531599045, + -0.025860929861664772, + -0.030822070315480232, + 0.012297269888222218, + 0.006655794568359852, + -0.07732599228620529, + -0.05985026806592941, + 0.032556869089603424, + 0.0326610691845417, + -0.0233154334127903, + 0.05780450254678726, + 0.01202014647424221, + -0.028579378500580788, + -0.022118056192994118, + -0.025520583614706993, + 0.01776156760752201, + -0.03256622329354286, + 0.007124798838049173, + -0.03716612607240677, + 0.04746709391474724, + 0.04588070884346962, + 0.039446163922548294, + -0.06671102344989777, + 0.03366613760590553, + 0.05306699126958847, + -0.03905249014496803, + -0.038922786712646484, + 0.14212460815906525, + -0.015289554372429848, + -0.04341500625014305, + 0.001726021058857441, + -0.012913789600133896, + 0.020263297483325005, + -0.032638076692819595, + 0.1183854416012764, + 0.03883914276957512, + 0.04087745398283005, + -0.024517741054296494, + 0.01328335516154766, + 0.06591690331697464, + 0.005039171781390905, + -0.059068139642477036, + 0.11236123740673065, + 0.06077921763062477, + 0.03970200568437576, + 0.003505750559270382, + -2.1012194650893434e-08, + -0.04738260433077812, + -0.07060712575912476, + 0.06759912520647049, + -0.050130896270275116, + 0.034029945731163025, + 0.008835426531732082, + 0.03368144482374191, + -0.08686872571706772, + -0.05713553726673126, + -0.05228889361023903, + -0.01994984969496727, + -0.02289983443915844, + -0.12526647746562958, + 0.017473718151450157, + 0.010129080154001713, + -0.025016115978360176, + -0.09828191250562668, + 0.06609930098056793, + -0.006483016069978476, + -0.044713739305734634, + -0.06659846007823944, + 0.014937277883291245, + 0.05980238318443298, + -0.06973693519830704, + 0.017663337290287018, + 0.012184358201920986, + -0.06417200714349747, + -0.027836831286549568, + -0.00354139250703156, + 0.07628413289785385, + 0.00553858419880271, + 0.07422832399606705, + 0.08480311930179596, + 0.026295922696590424, + -0.022766005247831345, + 0.010197494179010391, + -0.0563177652657032, + 0.07057163119316101, + -0.0901433601975441, + 0.022603830322623253, + 0.016188442707061768, + -0.057648587971925735, + 0.011651377193629742, + -0.02449425496160984, + 0.0343426950275898, + -0.0017496072687208652, + 0.06477898359298706, + 0.04130246117711067, + -0.024946529418230057, + -0.03656371682882309, + -0.062042444944381714, + 0.002928100759163499, + 0.0076355598866939545, + 0.03602442517876625, + -0.041880011558532715, + -0.09799055010080338, + -0.03852599114179611, + 0.1262294352054596, + 0.06307774037122726, + 0.0644196942448616, + 0.15211184322834015, + -0.07224974781274796, + 0.010690451599657536, + -0.002371929120272398 + ], + "bell-bold||alarm,notifications,times,timer,clock,schedule,events,ringer,calls": [ + -0.001601962256245315, + -0.056532297283411026, + -0.05259294435381889, + 0.013149602338671684, + -0.027884047478437424, + 0.057311151176691055, + 0.12088131904602051, + -0.017645325511693954, + 0.03896221145987511, + -0.03561311215162277, + -0.01047589909285307, + 0.006279533728957176, + 0.020753731951117516, + -0.0281818974763155, + -0.03676564246416092, + 0.0018479785649105906, + 0.03576128929853439, + -0.03337074816226959, + -0.021362951025366783, + -0.03775379806756973, + 0.051972001791000366, + 0.04346334561705589, + 0.0655679702758789, + 0.05635460466146469, + -0.006516194436699152, + 0.0053100851364433765, + 0.021741122007369995, + 0.004530494567006826, + 0.003163057379424572, + -0.061754219233989716, + -0.019141919910907745, + 0.00111755623947829, + 0.12371790409088135, + 0.007622180040925741, + -0.029191672801971436, + 0.004193971864879131, + 0.041688818484544754, + 0.036679770797491074, + -0.014024786651134491, + 0.021695293486118317, + 0.004605645313858986, + -0.09073545038700104, + -0.044876717031002045, + 0.015437936410307884, + -0.02119082771241665, + -0.00012225925456732512, + -0.047941677272319794, + -0.036574121564626694, + -0.05516551807522774, + -0.01993132010102272, + 0.07227081060409546, + 0.0066907936707139015, + -0.04055701196193695, + 0.02559639886021614, + 0.06470808386802673, + 0.08126422762870789, + -0.0643250122666359, + 0.019356796517968178, + 0.06383014470338821, + 0.04690971225500107, + -0.009784354828298092, + 0.052616242319345474, + -0.03247511759400368, + 0.07688751071691513, + -0.023001456633210182, + 0.06120919808745384, + -0.056627608835697174, + 0.0206418726593256, + 0.04813975468277931, + -0.08434924483299255, + -0.018153108656406403, + 0.01948007196187973, + -0.004829259589314461, + 0.014324203133583069, + -0.05547250062227249, + 0.022859541699290276, + 0.08135337382555008, + -0.06428728997707367, + -0.046500761061906815, + -0.06439289450645447, + -0.14891895651817322, + -0.0921260342001915, + -0.012676305137574673, + 0.011260111816227436, + 0.12401393800973892, + 0.04688494652509689, + -0.05923733860254288, + 0.006479775067418814, + -0.06511581689119339, + -0.0013672846835106611, + -0.061773497611284256, + -0.08565502613782883, + -0.013141084462404251, + 0.008552356623113155, + -0.09984931349754333, + 0.015411589294672012, + 0.026569539681077003, + -0.07466666400432587, + -0.04903899133205414, + 0.07227065414190292, + -0.05240959674119949, + -0.036232903599739075, + -0.0013776322593912482, + 0.05743899196386337, + 0.02473563887178898, + -0.06026645377278328, + -0.07444503158330917, + -0.0422048345208168, + -0.012466391548514366, + 0.0218410212546587, + 0.005555439740419388, + -0.07811303436756134, + 0.03373495489358902, + -0.10401271283626556, + 0.03112470544874668, + -0.021016495302319527, + -0.07602876424789429, + 0.014747818931937218, + 0.16454143822193146, + 0.08413709700107574, + 0.08293896913528442, + -0.0462721511721611, + -0.08962603658437729, + -0.03865177556872368, + -0.04515046998858452, + 0.08502078801393509, + 0.016418838873505592, + -8.295592203447504e-34, + 0.0169637780636549, + 0.021566685289144516, + -0.04821335896849632, + 0.061520032584667206, + 0.03630514815449715, + 0.019571606069803238, + -0.050718192011117935, + -0.05373591184616089, + 0.0027408748865127563, + 0.04949130490422249, + 0.05422874167561531, + 0.07218655943870544, + 0.004744898062199354, + -0.004904966801404953, + 0.05966482684016228, + -0.008672315627336502, + 0.01636369898915291, + 0.032691240310668945, + 0.004537853877991438, + -0.051816631108522415, + -0.05366615206003189, + 0.05110807716846466, + -0.0513470359146595, + 0.05367297679185867, + 0.06343822926282883, + -0.016528397798538208, + 0.0497426763176918, + -0.0364520289003849, + -0.006054863799363375, + 0.01435082871466875, + 0.0700480118393898, + -0.009253008291125298, + 0.04421648010611534, + 0.038580648601055145, + 0.05785724148154259, + 0.002236537169665098, + -0.025225482881069183, + -0.029897015541791916, + -0.01069087628275156, + -0.02858971245586872, + -0.06025787070393562, + -0.0876130536198616, + -0.10883869975805283, + -0.03568306937813759, + 0.047369588166475296, + -0.006167820189148188, + -0.030578380450606346, + -0.006705685053020716, + 0.05666209012269974, + 0.03456002101302147, + 0.041578032076358795, + -0.00488705700263381, + 0.09558168053627014, + 0.016831079497933388, + 0.030678266659379005, + 0.03388823941349983, + 0.06122903153300285, + 0.016474932432174683, + 0.06508536636829376, + 0.080514095723629, + -0.009411774575710297, + 0.01577298529446125, + 0.054312124848365784, + -0.09585122764110565, + 0.024575194343924522, + 0.043175362050533295, + -0.08388598263263702, + -0.058762770146131516, + 0.056948382407426834, + 0.02872597426176071, + 0.01430206373333931, + 0.07071056962013245, + 0.062115639448165894, + 0.028756113722920418, + -0.006166810169816017, + 0.0746033564209938, + 0.004754822701215744, + -0.008238275535404682, + -0.03226538002490997, + -0.018354643136262894, + 0.014090931974351406, + 0.016959605738520622, + -0.05543287470936775, + 0.08064281195402145, + 0.07446721941232681, + 0.019522473216056824, + -0.017570674419403076, + -0.10326849669218063, + -0.0637843981385231, + 0.06632562726736069, + -0.06499033421278, + -0.0076533351093530655, + 0.03370377793908119, + -0.010382544249296188, + -0.14042480289936066, + -3.1633620568270593e-34, + 0.0022006207145750523, + -0.003881039097905159, + -0.04220164939761162, + 0.001101450645364821, + -0.0029525267891585827, + -0.013225912116467953, + -0.012485906481742859, + 0.04449215158820152, + -0.03153746575117111, + 0.007075238972902298, + 0.018481606617569923, + 0.03573814406991005, + -0.014997961930930614, + -0.03635072335600853, + -0.025983016937971115, + 0.02913273125886917, + 0.05561588332056999, + 0.04501901939511299, + -0.028928816318511963, + 0.05392484366893768, + -0.03983351215720177, + 0.005978095810860395, + -0.14577144384384155, + -0.007609107065945864, + -0.03921881690621376, + 0.010050144046545029, + -0.027392646297812462, + 0.04322321340441704, + 0.033903609961271286, + -0.0757046788930893, + -0.06755588948726654, + -0.03951192647218704, + 0.05481956526637077, + 0.042401380836963654, + -0.06737770140171051, + 8.420665835728869e-05, + 0.10675951838493347, + 0.011086405254900455, + -0.012639224529266357, + -0.03882266953587532, + 0.0651254653930664, + 0.005461489781737328, + 0.058963678777217865, + 0.022150378674268723, + -0.042523693293333054, + 0.029023820534348488, + -0.04545511305332184, + -0.01166258379817009, + -0.1250304877758026, + 0.04107680916786194, + 0.02498677931725979, + -0.08683084696531296, + -0.018715020269155502, + 0.09080947190523148, + -0.05694706365466118, + 0.004545023664832115, + 0.03825889527797699, + -0.05457523837685585, + 0.017626481130719185, + 0.019014408811926842, + 0.030263541266322136, + -0.023116309195756912, + 0.033559370785951614, + 0.04665788635611534, + 0.025256535038352013, + -0.015919579192996025, + 0.01777917891740799, + -0.04505371302366257, + -0.005191000644117594, + -0.05655067414045334, + 0.0490896999835968, + -0.0099472152069211, + -0.03876171633601189, + -0.05351601168513298, + 0.012902681715786457, + -0.0008181429002434015, + -0.07656478881835938, + -0.026701755821704865, + -0.10175366699695587, + 0.022957749664783478, + -0.059234485030174255, + -0.029068119823932648, + -0.0024219276383519173, + 0.002318106358870864, + -0.040916379541158676, + 0.027744371443986893, + 0.07394610345363617, + 0.030926356092095375, + 0.008508773520588875, + -0.0238832738250494, + -0.07926411926746368, + 0.092201828956604, + 0.0219730157405138, + 0.06884007155895233, + -0.019427122548222542, + -2.2503879648638758e-08, + 0.009339752607047558, + -0.04036858677864075, + -0.008205967955291271, + -0.10996360331773758, + 0.08065611869096756, + -0.04860708490014076, + 0.05762593075633049, + -0.07598323374986649, + -0.017216091975569725, + -0.03717796877026558, + 0.03385002166032791, + -0.021474719047546387, + -0.07004200667142868, + -0.0699864998459816, + 0.09942681342363358, + 0.003245753003284335, + -0.0058055296540260315, + 0.010007982142269611, + -0.02894056960940361, + -0.05136480554938316, + 0.06691598147153854, + 0.09189190715551376, + 0.04704579338431358, + -0.04297199845314026, + -2.1386380467447452e-05, + 0.01622861437499523, + -0.022372445091605186, + 0.0633925274014473, + 0.047009117901325226, + 0.06490184366703033, + 0.03182033821940422, + 0.06308909505605698, + 0.017641913145780563, + -0.06755499541759491, + -0.09784895926713943, + -0.05058617144823074, + -0.0572500117123127, + -0.02953529916703701, + 0.04887498542666435, + 0.09491333365440369, + 0.0639689639210701, + -0.09814916551113129, + -0.12523643672466278, + 0.0718991830945015, + 0.021901756525039673, + -0.03541281819343567, + 0.001017354428768158, + -0.11790619045495987, + -0.008419639430940151, + -0.06274652481079102, + -0.008740253746509552, + 0.03692791610956192, + 0.02106190100312233, + -0.012758975848555565, + -0.037330929189920425, + 0.03987507149577141, + 0.05435795709490776, + -0.036020297557115555, + 0.005474149249494076, + 0.054345306009054184, + 0.036027099937200546, + 0.028585169464349747, + -0.010975170880556107, + -0.01247984729707241 + ], + "bell-ringing-bold||alarm,notifications,times,timer,clock,schedule,events,ringer,calls": [ + 0.0027886894531548023, + -0.04563392326235771, + -0.052609603852033615, + -0.00026207801420241594, + -0.04397539049386978, + 0.03978898376226425, + 0.14556589722633362, + -0.013638881035149097, + 0.05662378668785095, + -0.05703505501151085, + -0.004186969716101885, + -0.0012798284878954291, + 0.02850017510354519, + -0.023769842460751534, + -0.036719731986522675, + 0.01072285883128643, + 0.030026432126760483, + -0.03508957475423813, + -0.027397168800234795, + -0.043579403311014175, + 0.03439558297395706, + 0.03717072308063507, + 0.04818510636687279, + 0.05973551794886589, + 0.01016918383538723, + 0.020205195993185043, + 0.03048429824411869, + 0.007323874160647392, + -0.026984557509422302, + -0.05236917361617088, + -0.03306002542376518, + 0.028843434527516365, + 0.09938994795084, + -0.016739849001169205, + -0.023980578407645226, + 0.003722572699189186, + 0.0050026304088532925, + 0.06227103993296623, + -0.01513010822236538, + 0.0027681973297148943, + 0.00594270508736372, + -0.07281961292028427, + -0.020163895562291145, + -0.00657120905816555, + -0.02202221378684044, + -0.005164300557225943, + -0.053853586316108704, + -0.030737414956092834, + -0.04471426084637642, + -0.025002367794513702, + 0.08859013020992279, + 0.01835665851831436, + -0.04975082725286484, + 0.03708744794130325, + 0.06032225862145424, + 0.08180712908506393, + -0.04359172657132149, + 0.02426019497215748, + 0.06440287828445435, + 0.04849786311388016, + -0.01910811848938465, + 0.042253099381923676, + -0.028442762792110443, + 0.07686421275138855, + -0.02284528687596321, + 0.0586426742374897, + -0.04752669110894203, + 0.014755389653146267, + 0.04215240851044655, + -0.05510412156581879, + -0.0013420378090813756, + 0.022663189098238945, + -0.005173068027943373, + 0.0170119721442461, + -0.04088657721877098, + 0.023838337510824203, + 0.053715139627456665, + -0.0603167824447155, + -0.033506687730550766, + -0.050065841525793076, + -0.13333699107170105, + -0.08297770470380783, + -0.012540916912257671, + -0.010410126298666, + 0.1167508214712143, + 0.040960680693387985, + -0.04501336067914963, + 0.019893845543265343, + -0.07184154540300369, + -0.001931913080625236, + -0.056569211184978485, + -0.06527014821767807, + -0.032456174492836, + 0.024367492645978928, + -0.11579033732414246, + 0.003094797721132636, + 0.03863281011581421, + -0.08211465179920197, + -0.07773051410913467, + 0.06677086651325226, + -0.04524194821715355, + -0.05561264976859093, + 0.003895754925906658, + 0.04293127730488777, + 0.034270305186510086, + -0.030551277101039886, + -0.07551096379756927, + -0.03736385330557823, + -0.01681198924779892, + 0.0006135167786851525, + 0.00497157359495759, + -0.08371607959270477, + 0.047609928995370865, + -0.07995942234992981, + 0.03152183070778847, + -0.01177067868411541, + -0.0655830055475235, + 0.01640947163105011, + 0.15576571226119995, + 0.08404786884784698, + 0.08142192661762238, + -0.04512622952461243, + -0.09798236191272736, + -0.055395450443029404, + -0.04771989583969116, + 0.0972520262002945, + -0.0008754293085075915, + -1.2795371721425759e-33, + 0.007004681508988142, + 0.019120272248983383, + -0.039382778108119965, + 0.05797341838479042, + 0.03434087708592415, + -0.009866446256637573, + -0.07290942966938019, + -0.05087780952453613, + 0.01261184923350811, + 0.05453474074602127, + 0.0486532524228096, + 0.045760564506053925, + 0.011866793036460876, + -0.020920492708683014, + 0.06990423053503036, + -0.02944020926952362, + 0.03328327462077141, + 0.023094266653060913, + 0.003997876774519682, + -0.038502395153045654, + -0.055940356105566025, + 0.05415709689259529, + -0.044175777584314346, + 0.06654153764247894, + 0.06772298365831375, + -0.04056578502058983, + 0.03913121297955513, + -0.05159278213977814, + 0.00839985627681017, + 0.01947125419974327, + 0.08337197452783585, + 0.009874201379716396, + 0.06220537796616554, + 0.027983739972114563, + 0.052017126232385635, + 0.005549475084990263, + 0.0018692560261115432, + -0.020064426586031914, + -0.03587963432073593, + -0.03228618577122688, + -0.06893102079629898, + -0.09863925725221634, + -0.10301730781793594, + -0.03232813999056816, + 0.07053659111261368, + -0.003739487612619996, + -0.03733508288860321, + -0.003995154052972794, + 0.03940332308411598, + 0.04614240303635597, + 0.017768219113349915, + -0.004456298425793648, + 0.09953895211219788, + 0.016958137974143028, + 0.03717292472720146, + 0.037665367126464844, + 0.05117923766374588, + -0.005464262329041958, + 0.04917801916599274, + 0.07070256024599075, + 0.010170037858188152, + 0.013751182705163956, + 0.03233370557427406, + -0.09148789942264557, + 0.015995193272829056, + 0.02825399860739708, + -0.07634466141462326, + -0.0805780440568924, + 0.04019654169678688, + 0.031038383021950722, + 0.007483678869903088, + 0.07498249411582947, + 0.06039414554834366, + 0.04413387179374695, + 0.003656965447589755, + 0.06718862801790237, + 0.0027085249312222004, + 0.0017207578057423234, + -0.02600068971514702, + -0.015937218442559242, + 0.019617659971117973, + 0.017620932310819626, + -0.047709960490465164, + 0.05687425285577774, + 0.08400169014930725, + 0.04053402692079544, + -0.02670673094689846, + -0.1229095458984375, + -0.08875196427106857, + 0.08131048828363419, + -0.0518767423927784, + 0.0012087280629202724, + 0.03792034462094307, + 0.012896215543150902, + -0.1313205510377884, + -3.0488803864939883e-34, + 0.0036250820849090815, + -0.010373024269938469, + -0.01944810152053833, + 0.016255278140306473, + 0.03099883534014225, + 0.0035716851707547903, + -0.029473580420017242, + 0.03790155053138733, + -0.0412953719496727, + -0.0067501855082809925, + 0.023320555686950684, + 0.03228893503546715, + -0.013918720185756683, + -0.027528081089258194, + -0.010747761465609074, + 0.005235028453171253, + 0.058853305876255035, + 0.05141472816467285, + -0.021816087886691093, + 0.0707022100687027, + -0.027640141546726227, + -0.0010004029609262943, + -0.14710785448551178, + -0.0018840547418221831, + -0.04798227548599243, + 0.006852590478956699, + -0.03684369847178459, + 0.026647191494703293, + 0.037200815975666046, + -0.07149390131235123, + -0.09966655820608139, + -0.026422232389450073, + 0.056705769151449203, + 0.05705117806792259, + -0.05727487802505493, + 0.021968042477965355, + 0.13801167905330658, + -0.01276738103479147, + -0.016658108681440353, + -0.0556546114385128, + 0.055657364428043365, + 0.00946331862360239, + 0.07328715920448303, + 0.02727651782333851, + -0.05081610754132271, + 0.015746308490633965, + -0.03325983136892319, + 0.002166600665077567, + -0.11714401841163635, + 0.030169889330863953, + 0.025653738528490067, + -0.08425877243280411, + -0.0053934622555971146, + 0.0995878130197525, + -0.05358283221721649, + 0.003538611577823758, + 0.02842564880847931, + -0.07646024227142334, + 0.024264387786388397, + 0.02024642936885357, + 0.015096135437488556, + -0.01962890289723873, + 0.03799489885568619, + 0.04395994544029236, + 0.028707081452012062, + -0.023727664723992348, + 0.015778018161654472, + -0.031089534983038902, + 0.009230525232851505, + -0.042308907955884933, + 0.050855476409196854, + -0.0061801946721971035, + -0.05112876743078232, + -0.054654303938150406, + 0.020726917311549187, + -0.011053262278437614, + -0.08777675032615662, + -0.039220720529556274, + -0.10493941605091095, + 0.0028524650260806084, + -0.032902318984270096, + -0.03102843090891838, + 0.0013921305071562529, + -0.0054886131547391415, + -0.041300348937511444, + 0.007009180728346109, + 0.07575196027755737, + 0.017419759184122086, + 0.000927620567381382, + -0.02361873723566532, + -0.06441228836774826, + 0.08555608242750168, + 0.008530780673027039, + 0.05576371029019356, + -0.018768606707453728, + -2.2983114078556355e-08, + 0.0407741405069828, + -0.02687528170645237, + -0.029216891154646873, + -0.13801394402980804, + 0.09236470609903336, + -0.058757394552230835, + 0.0873783752322197, + -0.07368820905685425, + -0.012350663542747498, + -0.045247338712215424, + 0.010681333020329475, + -0.019931329414248466, + -0.07358628511428833, + -0.06875820457935333, + 0.08271472901105881, + 0.011537933722138405, + -0.038280192762613297, + 0.026932919397950172, + -0.021793309599161148, + -0.06053106114268303, + 0.05847471207380295, + 0.08065350353717804, + 0.04955003038048744, + -0.050859853625297546, + -0.013584611937403679, + 0.025660529732704163, + -0.026478294283151627, + 0.06797456741333008, + 0.057176943868398666, + 0.051363300532102585, + 0.01879233866930008, + 0.06569607555866241, + 0.0063249520026147366, + -0.0732194036245346, + -0.10436693578958511, + -0.06195075064897537, + -0.056253813207149506, + -0.026844607666134834, + 0.046084851026535034, + 0.06962574273347855, + 0.05435440316796303, + -0.0923013985157013, + -0.11708499491214752, + 0.05968475341796875, + 0.03504215180873871, + -0.044056087732315063, + 0.025229234248399734, + -0.11231528222560883, + -0.013260606676340103, + -0.04475545138120651, + -0.005086209625005722, + 0.04463132098317146, + 0.029613401740789413, + -0.026142220944166183, + -0.027847975492477417, + 0.049506835639476776, + 0.06401464343070984, + -0.0279576163738966, + 0.003984542563557625, + 0.05924191698431969, + 0.029485240578651428, + 0.024031542241573334, + -0.008574265986680984, + -0.009505757130682468 + ], + "bell-simple-bold||alarm,notifications,times,timer,clock,schedule,events,ringer,calls": [ + 0.0007751928060315549, + -0.04344566538929939, + -0.04919729381799698, + 0.026265479624271393, + -0.03218672797083855, + 0.051894720643758774, + 0.12240514904260635, + -0.008833946660161018, + 0.01706717163324356, + -0.02870418131351471, + -0.008876483887434006, + -0.010006781667470932, + 0.023823346942663193, + -0.02711062878370285, + -0.03712265193462372, + 0.0012981797335669398, + 0.02997635304927826, + -0.05087420344352722, + -0.020982563495635986, + -0.035269882529973984, + 0.03482402116060257, + 0.0347871370613575, + 0.054525453597307205, + 0.058450181037187576, + -0.0152050219476223, + 0.009969078935682774, + 0.0143752321600914, + 0.01292323973029852, + 0.016243955120444298, + -0.06100091710686684, + -0.015259803272783756, + -0.003753174329176545, + 0.1191934123635292, + 0.006486802361905575, + -0.017446598038077354, + -0.002423709724098444, + 0.05313698574900627, + 0.04631470516324043, + -0.010488648898899555, + 0.011055140756070614, + -0.00668334262445569, + -0.08847814053297043, + -0.048150092363357544, + 0.020179172977805138, + -0.03581690043210983, + -0.008167924359440804, + -0.05667024478316307, + -0.03870316222310066, + -0.0443161316215992, + -0.037857674062252045, + 0.073833167552948, + 0.010937119834125042, + -0.04675756394863129, + 0.0005267815431579947, + 0.06649409979581833, + 0.08394751697778702, + -0.0757068321108818, + 0.025581423193216324, + 0.05864468216896057, + 0.03800015524029732, + -0.0016564932884648442, + 0.03910807520151138, + -0.027459312230348587, + 0.07394225150346756, + -0.02260209061205387, + 0.05346015468239784, + -0.060119614005088806, + 0.022309713065624237, + 0.03653953969478607, + -0.08107603341341019, + -0.023616744205355644, + 0.010779336094856262, + -0.023978542536497116, + 0.02742648683488369, + -0.053078725934028625, + 0.009058303199708462, + 0.07623699307441711, + -0.05335601791739464, + -0.0613291971385479, + -0.048576269298791885, + -0.1682339310646057, + -0.10359253734350204, + -0.030762972310185432, + 0.038056422024965286, + 0.12076066434383392, + 0.04773363098502159, + -0.0579533688724041, + 0.008109379559755325, + -0.048992227762937546, + -0.002421684330329299, + -0.0528838224709034, + -0.07441107928752899, + -0.006071995943784714, + 0.016570385545492172, + -0.09190832823514938, + 0.018658097833395004, + 0.03249669820070267, + -0.07474721223115921, + -0.07764443755149841, + 0.08416435867547989, + -0.054838091135025024, + -0.025629693642258644, + 0.018436579033732414, + 0.04031353071331978, + 0.02798650972545147, + -0.05644287168979645, + -0.06471986323595047, + -0.05015620216727257, + -0.010911558754742146, + 0.010852743871510029, + 0.00487903505563736, + -0.0791880190372467, + 0.042271047830581665, + -0.09074250608682632, + 0.03800613060593605, + -0.024196363985538483, + -0.08532054722309113, + 0.008596041239798069, + 0.1569269597530365, + 0.09839707612991333, + 0.09476333856582642, + -0.04609757661819458, + -0.11690974235534668, + -0.026447605341672897, + -0.04613425210118294, + 0.09304429590702057, + 0.022454887628555298, + -1.2572454829826659e-33, + 0.023732855916023254, + 0.03631763532757759, + -0.03568729758262634, + 0.06999054551124573, + 0.03960492089390755, + 0.02015495114028454, + -0.05414488539099693, + -0.048374347388744354, + -0.0035084164701402187, + 0.04951753467321396, + 0.07544951885938644, + 0.052492521703243256, + 0.0024658078327775, + -0.009306010790169239, + 0.04776770994067192, + -0.00910742487758398, + 0.02049088105559349, + 0.03390579670667648, + 0.012845564633607864, + -0.06235143542289734, + -0.05343161150813103, + 0.060964129865169525, + -0.053719907999038696, + 0.035385239869356155, + 0.06076465919613838, + -0.011403482407331467, + 0.05826979875564575, + -0.033653296530246735, + 0.0009053979883901775, + 0.012710143812000751, + 0.06916313618421555, + -0.005855021998286247, + 0.0455186627805233, + 0.04260015860199928, + 0.04800756275653839, + -0.005516916047781706, + -0.005255309399217367, + -0.023836443200707436, + -0.00608031777665019, + -0.03836812824010849, + -0.07393907755613327, + -0.07851406931877136, + -0.09231056272983551, + -0.04419451951980591, + 0.055752843618392944, + 0.0028693638741970062, + -0.028019892051815987, + -0.013011571951210499, + 0.054637882858514786, + 0.020081207156181335, + 0.03595513105392456, + -0.003105494659394026, + 0.09129079431295395, + 0.023747161030769348, + 0.033163607120513916, + 0.034834276884794235, + 0.06392025202512741, + 0.02434828132390976, + 0.06405584514141083, + 0.07297752797603607, + -0.016414767131209373, + 0.021074315533041954, + 0.041243307292461395, + -0.0815177634358406, + 0.024832891300320625, + 0.047429513186216354, + -0.0937415063381195, + -0.06654858589172363, + 0.051724787801504135, + 0.0308173056691885, + 0.014479751698672771, + 0.07332921028137207, + 0.05366576090455055, + 0.01761828549206257, + 0.007917855866253376, + 0.08459419757127762, + 0.018149051815271378, + -0.029850628226995468, + -0.03141586855053902, + -0.02457883395254612, + 0.025990359485149384, + 0.018835021182894707, + -0.07050742208957672, + 0.08612141013145447, + 0.059594687074422836, + 0.020041225478053093, + -0.016974277794361115, + -0.0879034698009491, + -0.06970459222793579, + 0.06974749267101288, + -0.06737346947193146, + -0.00929536297917366, + 0.04145943373441696, + -0.012887406162917614, + -0.13298308849334717, + 1.3902029857747862e-34, + 0.003658146131783724, + -0.001052123960107565, + -0.04404711350798607, + -0.0026041599921882153, + 0.006953843403607607, + -0.008617950603365898, + -0.00932387262582779, + 0.03834380954504013, + -0.024878205731511116, + 0.01674988865852356, + 0.014535319060087204, + 0.04048190265893936, + -0.03326428309082985, + -0.026243140920996666, + -0.013799503445625305, + 0.03905833512544632, + 0.055213287472724915, + 0.05565212666988373, + -0.02472039684653282, + 0.05023273453116417, + -0.03899817541241646, + 0.023460628464818, + -0.15806715190410614, + -0.01864468678832054, + -0.03189893066883087, + 0.01835867390036583, + -0.034242790192365646, + 0.057170476764440536, + 0.03541592136025429, + -0.07272255420684814, + -0.0716838389635086, + -0.039782147854566574, + 0.05487329140305519, + 0.034087710082530975, + -0.07153896987438202, + 0.0005400004447437823, + 0.08994709700345993, + 0.0015800141263753176, + -0.007540092803537846, + -0.04586416110396385, + 0.05451780930161476, + 0.002907985355705023, + 0.05699823796749115, + 0.012628666125237942, + -0.03529089316725731, + 0.02930612489581108, + -0.027567721903324127, + -0.026465268805623055, + -0.12573149800300598, + 0.03786041960120201, + 0.018803134560585022, + -0.10135246813297272, + -0.02185671404004097, + 0.092071034014225, + -0.048523008823394775, + 0.005955727305263281, + 0.045672427862882614, + -0.047200821340084076, + 0.017257612198591232, + 0.014631269499659538, + 0.020099369809031487, + -0.010347271338105202, + 0.024267524480819702, + 0.04445132985711098, + 0.022069841623306274, + -0.008097749203443527, + 0.011206497438251972, + -0.04127846658229828, + -0.010270608589053154, + -0.06060640141367912, + 0.04021952301263809, + -0.001216862234286964, + -0.030804993584752083, + -0.06488536298274994, + 0.023507043719291687, + 0.012687582522630692, + -0.07578369975090027, + -0.02819797396659851, + -0.09959376603364944, + 0.020455550402402878, + -0.04170522093772888, + -0.02648663893342018, + -0.012784149497747421, + -0.014933192171156406, + -0.034235380589962006, + 0.022312382236123085, + 0.07396618276834488, + 0.03646017238497734, + -0.00378102483227849, + -0.018534798175096512, + -0.09033689647912979, + 0.10380837321281433, + 0.045242294669151306, + 0.0736110657453537, + -0.023353254422545433, + -2.3241181423827584e-08, + 0.011758004315197468, + -0.06180207058787346, + -0.008589332923293114, + -0.1067008227109909, + 0.09170021116733551, + -0.0410744734108448, + 0.05616134777665138, + -0.08104517310857773, + -0.01593514159321785, + -0.017554357647895813, + 0.018721003085374832, + -0.034917011857032776, + -0.06072179973125458, + -0.04787490889430046, + 0.07620616257190704, + 0.009388762526214123, + -0.01899818889796734, + 0.002653505653142929, + -0.02578543871641159, + -0.04659390449523926, + 0.08012271672487259, + 0.08735811710357666, + 0.03849558159708977, + -0.03558008000254631, + -0.01547653041779995, + 0.01682932861149311, + -0.021708695217967033, + 0.06799868494272232, + 0.03558140620589256, + 0.06974512338638306, + 0.025615159422159195, + 0.06746508926153183, + 0.020423084497451782, + -0.04861151799559593, + -0.09885209053754807, + -0.052796877920627594, + -0.05668667331337929, + -0.018798500299453735, + 0.04041851684451103, + 0.07383930683135986, + 0.06755058467388153, + -0.08230693638324738, + -0.12321048229932785, + 0.06731212139129639, + 0.024790722876787186, + -0.0386945866048336, + 0.0067839594557881355, + -0.12296795099973679, + -0.004776564426720142, + -0.05971354991197586, + -0.002249622019007802, + 0.030917655676603317, + 0.0314103439450264, + -0.019014626741409302, + -0.044499099254608154, + 0.044568903744220734, + 0.056647758930921555, + -0.017595289275050163, + -0.014637663029134274, + 0.0743393823504448, + 0.038342155516147614, + 0.051029421389102936, + -0.02035415917634964, + -0.01755630038678646 + ], + "bell-simple-ringing-bold||alarm,notifications,times,timer,clock,schedule,events,ringer,calls": [ + 0.01241119485348463, + -0.0372680202126503, + -0.0554254949092865, + 0.0018550202948972583, + -0.0436130166053772, + 0.04486892372369766, + 0.1311592161655426, + -0.0042954906821250916, + 0.027455924078822136, + -0.03868956118822098, + 0.0018669379642233253, + -0.009235846810042858, + 0.036779630929231644, + -0.025131648406386375, + -0.03668370097875595, + 0.001959512708708644, + 0.02332787774503231, + -0.04278293624520302, + -0.027194583788514137, + -0.04378221929073334, + 0.025282537564635277, + 0.023010263219475746, + 0.03501826524734497, + 0.05021973326802254, + -0.00033855345100164413, + 0.02293875627219677, + 0.02002994902431965, + 0.021680494770407677, + -0.0004467505495995283, + -0.056559618562459946, + -0.03397778421640396, + 0.01805400662124157, + 0.10110858082771301, + -0.009404007345438004, + -0.02591869607567787, + -0.012339905835688114, + 0.02017434686422348, + 0.06606870889663696, + -0.019423775374889374, + -0.0018987616058439016, + -0.004869068041443825, + -0.07460004836320877, + -0.026147624477744102, + 0.007841878570616245, + -0.031184371560811996, + -0.004280988126993179, + -0.06287679076194763, + -0.03191160038113594, + -0.04784480109810829, + -0.040199313312768936, + 0.090262271463871, + 0.021052522584795952, + -0.05214735493063927, + 0.030691152438521385, + 0.07113534212112427, + 0.07676304876804352, + -0.06612269580364227, + 0.033811818808317184, + 0.057973675429821014, + 0.04175862669944763, + -0.012174286879599094, + 0.02630550228059292, + -0.027111902832984924, + 0.07915139198303223, + -0.027369214221835136, + 0.05384982377290726, + -0.05753229185938835, + 0.00939379446208477, + 0.044533248990774155, + -0.06317325681447983, + -0.015927979722619057, + 0.020240481942892075, + -0.022702006623148918, + 0.03121955133974552, + -0.04296058043837547, + 0.00712992250919342, + 0.05933813750743866, + -0.04936831817030907, + -0.04998144134879112, + -0.03680111840367317, + -0.16260018944740295, + -0.09150130301713943, + -0.01837240159511566, + 0.010354644618928432, + 0.11030419915914536, + 0.038217030465602875, + -0.05160399526357651, + 0.027789684012532234, + -0.058092810213565826, + -0.0014788336120545864, + -0.046970099210739136, + -0.05345585569739342, + -0.018039196729660034, + 0.01747199520468712, + -0.1064458116889, + 0.006781486328691244, + 0.042869504541158676, + -0.07583750039339066, + -0.0919400006532669, + 0.0672224760055542, + -0.047598399221897125, + -0.04946648329496384, + 0.022274253889918327, + 0.025282232090830803, + 0.030487073585391045, + -0.03723965212702751, + -0.06438067555427551, + -0.04417543113231659, + -0.01118941605091095, + 0.0013927338877692819, + -0.0009999811882153153, + -0.08135194331407547, + 0.05613464489579201, + -0.0834360346198082, + 0.04466020688414574, + -0.01767117530107498, + -0.08166754245758057, + 0.012823130935430527, + 0.15434758365154266, + 0.08896499127149582, + 0.08643922209739685, + -0.04458573833107948, + -0.10233119130134583, + -0.04529211297631264, + -0.054933756589889526, + 0.10151106119155884, + 0.0029641056898981333, + -1.3842823513374805e-33, + 0.015191644430160522, + 0.027866343036293983, + -0.04015090689063072, + 0.06954202800989151, + 0.0335635244846344, + -0.0009516456630080938, + -0.06799782812595367, + -0.044098857790231705, + 0.017096156254410744, + 0.05437019094824791, + 0.06885531544685364, + 0.04873805120587349, + 0.005032541695982218, + -0.01055996585637331, + 0.06913784891366959, + -0.014483354985713959, + 0.0322645865380764, + 0.023330528289079666, + 0.01203618012368679, + -0.05097523331642151, + -0.051279615610837936, + 0.07521230727434158, + -0.03943031281232834, + 0.05256228148937225, + 0.07397834956645966, + -0.03626629337668419, + 0.04575810581445694, + -0.05284259840846062, + -0.0001676358369877562, + 0.01508194301277399, + 0.07766804844141006, + -0.0031637202482670546, + 0.05679292976856232, + 0.036329567432403564, + 0.047584354877471924, + 0.0012563783675432205, + 0.011466721072793007, + -0.017273806035518646, + -0.028854157775640488, + -0.04958239570260048, + -0.07888127118349075, + -0.09673979878425598, + -0.09729468822479248, + -0.03776881843805313, + 0.07178030163049698, + 0.0004839051980525255, + -0.041045770049095154, + -0.011333499103784561, + 0.048045191913843155, + 0.035906948149204254, + 0.0217740461230278, + -0.005756387021392584, + 0.09592311829328537, + 0.01626783236861229, + 0.045656729489564896, + 0.04896743595600128, + 0.048958420753479004, + 0.005046271253377199, + 0.040620286017656326, + 0.08191854506731033, + 0.0017730960389599204, + 0.021867217496037483, + 0.02589602954685688, + -0.08966182917356491, + 0.017607107758522034, + 0.04074544087052345, + -0.07734042406082153, + -0.0884581059217453, + 0.039221569895744324, + 0.03813103586435318, + 0.0006490277592092752, + 0.07826230674982071, + 0.053748395293951035, + 0.02515917457640171, + 0.011716905981302261, + 0.075128473341465, + 0.019958537071943283, + -0.02319330722093582, + -0.033041536808013916, + -0.008977660909295082, + 0.02079656906425953, + 0.027457965537905693, + -0.060402728617191315, + 0.07430321723222733, + 0.04879822954535484, + 0.037585243582725525, + -0.02610570564866066, + -0.10772337764501572, + -0.08493747562170029, + 0.06822797656059265, + -0.05148179456591606, + 0.001915645319968462, + 0.03544631227850914, + 0.003991853911429644, + -0.12586413323879242, + -1.6779263503026574e-34, + -0.0012408216716721654, + -0.006097167264670134, + -0.02240307442843914, + 0.0185647364705801, + 0.02963019534945488, + 0.008268461562693119, + -0.019227130338549614, + 0.03240761533379555, + -0.03624393790960312, + -0.00028973614098504186, + 0.012751972302794456, + 0.03580645099282265, + -0.02673272229731083, + -0.024168560281395912, + -0.006709082517772913, + 0.021530887112021446, + 0.04247981682419777, + 0.06315862387418747, + -0.015187167562544346, + 0.0690050795674324, + -0.02586509846150875, + 0.013788782060146332, + -0.1610744744539261, + -0.015693387016654015, + -0.041293706744909286, + 0.011642965488135815, + -0.04527577757835388, + 0.03841111436486244, + 0.0392768569290638, + -0.06821978092193604, + -0.07596495002508163, + -0.035329677164554596, + 0.053982172161340714, + 0.03532954305410385, + -0.06398823857307434, + 0.011204320006072521, + 0.11320830881595612, + -0.011637449264526367, + -0.011657560244202614, + -0.05833345651626587, + 0.051034942269325256, + 0.005101726856082678, + 0.07460074871778488, + 0.0231349878013134, + -0.03633999079465866, + 0.01154994871467352, + -0.026324057951569557, + -0.023386115208268166, + -0.12719368934631348, + 0.02523820847272873, + 0.022311165928840637, + -0.09376822412014008, + -0.0146973617374897, + 0.10171228647232056, + -0.04112998768687248, + 0.00024156471772585064, + 0.044281668961048126, + -0.06934840977191925, + 0.021396411582827568, + 0.020556937903165817, + 0.01001038309186697, + -0.01956097222864628, + 0.021726517006754875, + 0.052127692848443985, + 0.01736092008650303, + -0.00904307421296835, + 0.010105571709573269, + -0.03984977677464485, + -0.012615625746548176, + -0.05267590656876564, + 0.045803431421518326, + -0.00030274162418209016, + -0.03649207577109337, + -0.06826843321323395, + 0.02774183265864849, + -0.0015099897282198071, + -0.09004048258066177, + -0.0441381074488163, + -0.10103432089090347, + -0.0023746336810290813, + -0.030844703316688538, + -0.024024780839681625, + -0.0034402247983962297, + -0.011863524094223976, + -0.0345604307949543, + 0.010812236927449703, + 0.07233686000108719, + 0.01910644769668579, + -0.0015974962152540684, + -0.014648053795099258, + -0.07033791393041611, + 0.09574424475431442, + 0.03375401720404625, + 0.07065894454717636, + -0.019849754869937897, + -2.3089908651741098e-08, + 0.0341549813747406, + -0.04881014674901962, + -0.013140780851244926, + -0.12541089951992035, + 0.09361990541219711, + -0.03684074431657791, + 0.08504843711853027, + -0.07154769450426102, + -0.014818166382610798, + -0.025830969214439392, + 0.014331434853374958, + -0.02656337060034275, + -0.07010361552238464, + -0.04979514703154564, + 0.0789039209485054, + 0.025061186403036118, + -0.033000025898218155, + 0.020017722621560097, + -0.016202161088585854, + -0.0456930473446846, + 0.06348814070224762, + 0.07879644632339478, + 0.03667589649558067, + -0.041265785694122314, + -0.022339366376399994, + 0.025353292003273964, + -0.015236292965710163, + 0.07593859732151031, + 0.04926197975873947, + 0.05976274982094765, + 0.012824923731386662, + 0.06295371800661087, + 0.010762786492705345, + -0.06319985538721085, + -0.1105620265007019, + -0.05409039556980133, + -0.061342496424913406, + -0.02208109013736248, + 0.03743799403309822, + 0.05693214386701584, + 0.057671722024679184, + -0.08768080174922943, + -0.11956886202096939, + 0.058023057878017426, + 0.03531482070684433, + -0.04507226496934891, + 0.0214140135794878, + -0.12629564106464386, + -0.01322257611900568, + -0.049018941819667816, + -0.00020839266653638333, + 0.04405832290649414, + 0.035329632461071014, + -0.029813077300786972, + -0.033056601881980896, + 0.06203736737370491, + 0.0686090812087059, + -0.023056786507368088, + -0.0014282215852290392, + 0.07204785943031311, + 0.03258376196026802, + 0.05417647212743759, + -0.012451411224901676, + -0.010443760082125664 + ], + "bell-simple-slash-bold||alarm,notifications,times,timer,clock,schedule,events,ringer,silent,silenced,disabled": [ + -0.0004755384288728237, + -0.051616426557302475, + -0.04713676497340202, + 0.04650821164250374, + -0.010501471348106861, + 0.04911145195364952, + 0.11111782491207123, + -0.018799681216478348, + 0.010375945828855038, + -0.018671425059437752, + 0.0285392664372921, + -0.0037899750750511885, + 0.021848667412996292, + -0.025560734793543816, + -0.07204326242208481, + 0.018168389797210693, + 0.044828176498413086, + -0.03846399858593941, + -0.01656268537044525, + -0.035836197435855865, + 0.010846116580069065, + 0.07117681205272675, + 0.05692028999328613, + 0.05938689783215523, + -0.009008783847093582, + 0.004358057864010334, + -0.0023201308213174343, + 0.020473623648285866, + -0.009314900264143944, + -0.06188451498746872, + -0.009066044352948666, + -0.02952498383820057, + 0.12919506430625916, + -0.0009678319911472499, + 0.007257265038788319, + -0.013685953803360462, + 0.08776780217885971, + 0.04582024738192558, + 0.019824815914034843, + -0.028430389240384102, + -0.03251814469695091, + -0.09860968589782715, + -0.06310495734214783, + -0.018432900309562683, + -0.0558197945356369, + -0.02148400992155075, + -0.058093395084142685, + -0.07021531462669373, + -0.06176811829209328, + -0.02837146259844303, + 0.06856703758239746, + -0.009741834364831448, + -0.04430435225367546, + 0.006269753910601139, + 0.0850641205906868, + 0.06718411296606064, + -0.08659560233354568, + 0.05087396502494812, + 0.06793998926877975, + 0.04276687279343605, + 0.005398847162723541, + 0.017795836552977562, + -0.02495322935283184, + 0.07096671313047409, + -0.02121209166944027, + 0.037431493401527405, + -0.04883122444152832, + -0.0027566063217818737, + 0.024647684767842293, + -0.07391836494207382, + -0.03512901812791824, + 0.005742243956774473, + -0.030455509200692177, + 0.030775688588619232, + -0.04469795152544975, + 0.0033466387540102005, + 0.06811948865652084, + -0.050984691828489304, + -0.037637703120708466, + -0.04508571699261665, + -0.1457483023405075, + -0.0964963510632515, + -0.033402085304260254, + 0.05443698167800903, + 0.1018272191286087, + 0.05465056374669075, + -0.04853234067559242, + -0.0023117659147828817, + -0.04393056780099869, + -0.00821770541369915, + -0.04648176580667496, + -0.08876463025808334, + 0.025235414505004883, + 0.023053890094161034, + -0.0770113468170166, + 0.008230161853134632, + 0.0186318252235651, + -0.053498152643442154, + -0.1109769269824028, + 0.08431217819452286, + -0.02457800880074501, + -0.033601272851228714, + -0.018053581938147545, + 0.025853009894490242, + 0.037689581513404846, + -0.039586786180734634, + -0.04438823089003563, + -0.035818904638290405, + -0.031786758452653885, + 0.004728484433144331, + -0.008150442503392696, + -0.06332913786172867, + 0.04261286184191704, + -0.10051937401294708, + 0.020556345582008362, + -0.023935291916131973, + -0.09975216537714005, + -0.001447860966436565, + 0.1658349186182022, + 0.11167426407337189, + 0.11009059101343155, + -0.08598895370960236, + -0.1166495680809021, + -0.04739018529653549, + -0.026600398123264313, + 0.09236349910497665, + 0.02285159006714821, + -1.7740039116991786e-33, + 0.043254632502794266, + 0.05133605748414993, + -0.044504255056381226, + 0.037475768476724625, + 0.06613478064537048, + 0.00813295692205429, + -0.04660722613334656, + -0.022511402145028114, + -0.027508791536092758, + 0.03494568169116974, + 0.08294003456830978, + 0.029110439121723175, + 0.00016595526540186256, + -0.028620531782507896, + 0.0408591702580452, + -0.015793582424521446, + 0.05894482508301735, + 0.019730091094970703, + 0.01586790941655636, + -0.09351646900177002, + -0.0239203292876482, + 0.08910227566957474, + -0.040789734572172165, + 0.05112925171852112, + 0.07672610133886337, + 0.008346336893737316, + 0.040117714554071426, + -0.032462384551763535, + 0.01984434202313423, + 0.03619573637843132, + 0.05116521567106247, + -0.0013059432385489345, + 0.05229279398918152, + 0.038005731999874115, + 0.026530753821134567, + 0.009473808109760284, + -0.007970926351845264, + -0.014130343683063984, + -0.022450052201747894, + -0.030859289690852165, + -0.07909757643938065, + -0.09514647722244263, + -0.1230410635471344, + -0.05424734950065613, + 0.055416546761989594, + -0.0009068179642781615, + -0.028026439249515533, + -0.031789880245923996, + 0.04966815561056137, + 0.02116926573216915, + 0.039007484912872314, + 0.007951807230710983, + 0.10524678975343704, + 0.02978278137743473, + 0.022249341011047363, + 0.01020749006420374, + 0.043065764009952545, + 0.014100393280386925, + 0.05108414962887764, + 0.05108428746461868, + -0.027660921216011047, + 0.023595072329044342, + 0.059901054948568344, + -0.09720122814178467, + 0.022426769137382507, + 0.03748356178402901, + -0.08638248592615128, + -0.06374973803758621, + 0.02782932110130787, + 0.01787702552974224, + -0.002234055893495679, + 0.029612157493829727, + 0.06130683794617653, + 0.017177939414978027, + -0.032130368053913116, + 0.056272976100444794, + -0.008670888841152191, + -0.011801157146692276, + -0.03093911148607731, + -0.029815468937158585, + -0.014806798659265041, + 0.00913198571652174, + -0.09022292494773865, + 0.08493253588676453, + 0.07956928014755249, + -0.009634430520236492, + -0.02583514153957367, + -0.04807949438691139, + -0.06393151730298996, + 0.04437703266739845, + -0.051838383078575134, + 0.004582058172672987, + 0.012386050075292587, + -0.00906120240688324, + -0.11487159878015518, + 8.550443052125622e-34, + 0.036814022809267044, + 0.0337052084505558, + -0.060315780341625214, + 0.006024446338415146, + -0.03299584239721298, + 0.0019299581181257963, + -0.018198521807789803, + 0.02775239385664463, + -0.03601888567209244, + 0.012835639528930187, + 0.03218803554773331, + 0.057533010840415955, + -0.021867910400032997, + -0.04254317283630371, + 0.003388660727068782, + 0.03722429275512695, + 0.035584136843681335, + 0.04668191447854042, + -0.034605205059051514, + 0.07316458970308304, + -0.0447077676653862, + 0.031002871692180634, + -0.14215190708637238, + 0.00971300434321165, + -0.0581461638212204, + 0.02434173971414566, + -0.01207131426781416, + 0.05716094374656677, + 0.04157311096787453, + -0.06459179520606995, + -0.04302458092570305, + 0.010782471857964993, + 0.024207765236496925, + 0.022043071687221527, + -0.06198548153042793, + 0.0065721250139176846, + 0.03024090826511383, + 0.01903645135462284, + -0.021881084889173508, + -0.0627228319644928, + 0.047528740018606186, + 0.04063146188855171, + 0.048320088535547256, + 0.038750022649765015, + -0.02586998976767063, + 0.052530013024806976, + -0.0015983001794666052, + -0.06028860807418823, + -0.09241214394569397, + 0.053975313901901245, + 0.038100339472293854, + -0.10725975036621094, + 0.005414008162915707, + 0.09754575788974762, + -0.03217620775103569, + 0.010418854653835297, + 0.01537092961370945, + -0.02307005412876606, + -0.023436494171619415, + 0.019275305792689323, + 0.04160161688923836, + -0.016050586476922035, + -0.003881418379023671, + 0.05016598477959633, + 0.031856097280979156, + 5.1167895435355604e-05, + 0.0020247329957783222, + 0.023791680112481117, + 0.014336679130792618, + -0.0679037868976593, + 0.053488876670598984, + 0.027500808238983154, + -0.010416923090815544, + -0.059276677668094635, + 0.030734311789274216, + 0.012656747363507748, + -0.08693771809339523, + -0.046019166707992554, + -0.10813801735639572, + 0.04742959141731262, + -0.018942223861813545, + -0.01567269116640091, + -0.027109358459711075, + -0.013568938709795475, + -0.03909216821193695, + 0.00011182453454239294, + 0.029895668849349022, + 0.0948626697063446, + -0.004925459157675505, + -0.023094721138477325, + -0.09217701852321625, + 0.09939710795879364, + 0.03714634105563164, + 0.08624181896448135, + -0.04256919026374817, + -2.547464994506754e-08, + -0.005728255957365036, + -0.07532218098640442, + -0.010972379706799984, + -0.11696968227624893, + 0.0984947681427002, + -0.02988956682384014, + 0.0377102755010128, + -0.08360255509614944, + -0.015280508436262608, + -0.00534693943336606, + 0.031576480716466904, + -0.040749333798885345, + -0.04960983619093895, + -0.03358089178800583, + 0.06794412434101105, + 0.01183394156396389, + -0.05423681437969208, + 0.04028908908367157, + -0.027811938896775246, + -0.057904426008462906, + 0.06957456469535828, + 0.09497657418251038, + 0.028291942551732063, + -0.02605767548084259, + 0.0011596219846978784, + -0.001287201652303338, + -0.004663790110498667, + 0.03730902075767517, + 0.029926318675279617, + 0.06288503855466843, + 0.015223238617181778, + 0.059750448912382126, + 0.030160972848534584, + -0.060151807963848114, + -0.09389881789684296, + -0.013121116906404495, + -0.050714168697595596, + -0.0007769109797663987, + 0.03927869722247124, + 0.04496406018733978, + 0.07372661679983139, + -0.09309591352939606, + -0.10010825097560883, + 0.05026580020785332, + -0.009460264816880226, + -0.024112965911626816, + 0.019252106547355652, + -0.0868251621723175, + -0.027583912014961243, + -0.04352089390158653, + 0.0056633129715919495, + 0.06695643812417984, + 0.029011573642492294, + -0.0008626843336969614, + -0.03156588599085808, + 0.07478078454732895, + 0.06136007606983185, + -0.0032025633845478296, + -0.03365485742688179, + 0.0656663179397583, + 0.060349006205797195, + 0.0510530099272728, + -0.011506433598697186, + -0.027242999523878098 + ], + "bell-simple-z-bold||alarm,notifications,times,timer,clock,schedule,events,ringer,snooze": [ + -0.004679167177528143, + -0.017623845487833023, + -0.04615621268749237, + 0.03881096467375755, + -0.0021885856986045837, + 0.06993987411260605, + 0.12680576741695404, + -0.006918911822140217, + -0.0018343650735914707, + -0.03063805215060711, + -0.007708141580224037, + -0.009509701281785965, + 0.047017116099596024, + -0.01813484914600849, + -0.047077566385269165, + -0.0041197724640369415, + 0.013657751493155956, + -0.0370984822511673, + -0.0051547265611588955, + -0.04620087146759033, + 0.03632176294922829, + 0.021046597510576248, + 0.06440039724111557, + 0.07120082527399063, + -0.004733179230242968, + 0.025661395862698555, + 0.002801774302497506, + 0.041181519627571106, + 0.012723051011562347, + -0.04458039626479149, + -0.018750358372926712, + 0.008691943250596523, + 0.14917002618312836, + -0.00034019298618659377, + -0.009923362173140049, + -0.028075138106942177, + 0.06930138170719147, + 0.04771999642252922, + -0.01679154299199581, + 0.018850725144147873, + 0.0005612847162410617, + -0.078689344227314, + -0.03253474086523056, + 0.011139153502881527, + -0.027767609804868698, + 0.03852850943803787, + -0.05325504392385483, + -0.037732284516096115, + -0.08801393955945969, + -0.00564266461879015, + 0.05235790088772774, + -0.038035523146390915, + -0.05135951563715935, + 0.02032432332634926, + 0.08289846777915955, + 0.10111584514379501, + -0.08178362250328064, + 0.0028521555941551924, + 0.04595654085278511, + 0.02364218235015869, + -0.0024360285606235266, + 0.025312142446637154, + -0.03819200396537781, + 0.08184921741485596, + 0.020035704597830772, + 0.040828362107276917, + -0.053937848657369614, + 0.019252071157097816, + 0.03185484558343887, + -0.07492439448833466, + -0.04326816648244858, + 0.000464524986455217, + -0.02335130050778389, + 0.025824610143899918, + -0.07541459798812866, + 0.0068022687919437885, + 0.08461159467697144, + -0.06845979392528534, + -0.039886221289634705, + -0.04774316027760506, + -0.16818617284297943, + -0.08542850613594055, + -0.016157561913132668, + 0.032441504299640656, + 0.11908897757530212, + 0.050252918154001236, + -0.05818229913711548, + 0.024890173226594925, + -0.053091175854206085, + 0.0020556035451591015, + -0.046123746782541275, + -0.0711442232131958, + -0.005221056751906872, + 0.024263868108391762, + -0.08325165510177612, + 0.02368997409939766, + 0.03215436637401581, + -0.04887251928448677, + -0.06355023384094238, + 0.06652747094631195, + -0.02199089340865612, + -0.025058845058083534, + 0.038271863013505936, + 0.020657507702708244, + 0.0317290797829628, + -0.04531566798686981, + -0.06516829878091812, + -0.05921979248523712, + -0.019906984642148018, + 0.027710292488336563, + -0.022977735847234726, + -0.0765773355960846, + 0.048689600080251694, + -0.10685249418020248, + 0.05710812658071518, + -0.019345607608556747, + -0.09104393422603607, + 0.035143330693244934, + 0.14416901767253876, + 0.09728533774614334, + 0.09102430194616318, + -0.047609616070985794, + -0.10691247880458832, + -0.04561300948262215, + -0.04964360594749451, + 0.09673608094453812, + -0.0013775930274277925, + -4.827522955021855e-34, + 0.0055380151607096195, + 0.04730651155114174, + -0.05719069391489029, + 0.05532267689704895, + 0.03391752392053604, + 0.019643573090434074, + -0.05977801978588104, + -0.022894306108355522, + 0.002115697367116809, + 0.07613589614629745, + 0.028310278430581093, + 0.06599193066358566, + -0.009969301521778107, + -0.023374952375888824, + 0.021166427060961723, + -0.010820518247783184, + 0.03221641853451729, + 0.013982312753796577, + 0.0019991465378552675, + -0.06923416256904602, + -0.040853675454854965, + 0.058879006654024124, + -0.0579649843275547, + 0.02636701427400112, + 0.08515352755784988, + -0.00835421308875084, + 0.05007948726415634, + -0.05271342769265175, + -0.012390309013426304, + 0.013156495057046413, + 0.07857517153024673, + -0.00813286006450653, + 0.026505857706069946, + 0.007744165603071451, + 0.06579014658927917, + -0.030431898310780525, + -0.007870643399655819, + -0.017221007496118546, + -0.01800239272415638, + -0.07249804586172104, + -0.05649048462510109, + -0.08375587314367294, + -0.10629427433013916, + -0.01702442206442356, + 0.057710129767656326, + 0.015187857672572136, + -0.02281963638961315, + -0.0038406909443438053, + 0.10126455128192902, + -0.010186581872403622, + 0.031118066981434822, + -0.030723197385668755, + 0.05394275113940239, + 0.009477565065026283, + 0.009215868078172207, + 0.049094125628471375, + 0.045415643602609634, + 0.04422421753406525, + 0.042610980570316315, + 0.06685174256563187, + -0.025760376825928688, + 0.03435397520661354, + 0.06770956516265869, + -0.10347256064414978, + 0.051606591790914536, + 0.04959931597113609, + -0.09838473051786423, + -0.07937513291835785, + 0.04176262393593788, + 0.04507739096879959, + 0.013805561698973179, + 0.056482963263988495, + 0.06529076397418976, + 0.029161527752876282, + 0.015388516709208488, + 0.04718867689371109, + 0.03671180084347725, + -0.01830369234085083, + -0.016803354024887085, + -0.0425739511847496, + 0.007146269083023071, + 0.0002955025411210954, + -0.05414877086877823, + 0.08143401890993118, + 0.06736539304256439, + -0.006962969899177551, + -0.0032287496142089367, + -0.07326481491327286, + -0.06994903087615967, + 0.045936331152915955, + -0.05572228506207466, + -0.03193921223282814, + 0.056181248277425766, + -0.026344817131757736, + -0.12906304001808167, + -2.3297239629204518e-34, + -0.003997479099780321, + 0.013409663923084736, + -0.05546647310256958, + -0.004757726099342108, + 0.01989033818244934, + -0.0009755765204317868, + -0.013392306864261627, + 0.039458729326725006, + -0.02453930303454399, + 0.01361643522977829, + 0.024752305820584297, + 0.03571305051445961, + -0.0007281952421180904, + -0.038761500269174576, + -0.013088122010231018, + 0.04442249611020088, + 0.050689324736595154, + 0.05136784166097641, + 0.0001289708452532068, + 0.05449621006846428, + -0.04726839438080788, + 0.003909723833203316, + -0.15384161472320557, + -0.0189052801579237, + -0.024236613884568214, + 0.023279935121536255, + 0.013737967237830162, + 0.04767579212784767, + 0.047961048781871796, + -0.03682948276400566, + -0.06881004571914673, + -0.05242118611931801, + 0.044927164912223816, + 0.022222040221095085, + -0.08388696610927582, + -0.01301920972764492, + 0.06404483318328857, + 0.006334287114441395, + -0.05721382051706314, + -0.06661619991064072, + 0.04755974933505058, + 0.010763119906187057, + 0.06365880370140076, + 0.02106846682727337, + -0.010162411257624626, + 0.04282531514763832, + -0.06428979337215424, + -0.010671215131878853, + -0.10694926977157593, + 0.03497075289487839, + 0.032929904758930206, + -0.1061181128025055, + -0.03572612628340721, + 0.06718212366104126, + -0.02640402875840664, + 0.010255039669573307, + 0.03760592266917229, + -0.04932982847094536, + -9.098734881263226e-05, + -0.01157291792333126, + 0.008056819438934326, + -0.027847766876220703, + 0.01974903605878353, + 0.046806447207927704, + 0.024860788136720657, + -0.013788482174277306, + 0.005380396265536547, + -0.018317759037017822, + -0.010778043419122696, + -0.07797310501337051, + 0.05043347552418709, + 0.011143716052174568, + -0.030778437852859497, + -0.06184961274266243, + -0.021107712760567665, + 0.014927787706255913, + -0.0773773193359375, + -0.03078009933233261, + -0.09480569511651993, + -0.008505422621965408, + -0.036423198878765106, + -0.012760334648191929, + 0.0010477901669219136, + 0.015735657885670662, + -0.03058958798646927, + 0.008566631004214287, + 0.08140245825052261, + 0.0651809498667717, + 0.015549473464488983, + -0.018631691113114357, + -0.07799635082483292, + 0.12051709741353989, + 0.02907527983188629, + 0.08418629318475723, + -0.02818751148879528, + -2.3520305703073063e-08, + 0.006189846433699131, + -0.0744757279753685, + 0.0023604186717420816, + -0.10086569935083389, + 0.10223560035228729, + -0.03191406652331352, + 0.05067473277449608, + -0.07538293302059174, + -0.012981703504920006, + -0.035405322909355164, + 0.04691077396273613, + -0.016393885016441345, + -0.046867113560438156, + -0.046065639704465866, + 0.07855338603258133, + 0.004299587104469538, + -0.025593191385269165, + 0.016804134473204613, + -0.024282116442918777, + -0.05261674523353577, + 0.07942547649145126, + 0.0931059941649437, + 0.040496859699487686, + -0.047494031488895416, + 0.00294285174459219, + 0.025959914550185204, + -0.02671944908797741, + 0.074048712849617, + 0.037016063928604126, + 0.036975085735321045, + 0.035988371819257736, + 0.052401211112737656, + 0.0508691743016243, + -0.06348510086536407, + -0.08323884755373001, + -0.03380584716796875, + -0.055398959666490555, + -0.04385339468717575, + 0.033918824046850204, + 0.049382030963897705, + 0.06961110234260559, + -0.09244173020124435, + -0.08089426159858704, + 0.0597509928047657, + -0.00808829814195633, + -0.06479982286691666, + 0.023167258128523827, + -0.12050484865903854, + -0.0004416395095176995, + -0.041745830327272415, + -0.009000164456665516, + 0.024961788207292557, + 0.01624210737645626, + -0.023504216223955154, + -0.012011762708425522, + 0.055593159049749374, + 0.06267376989126205, + -0.020653696730732918, + -0.013996663503348827, + 0.0554339624941349, + 0.01947348192334175, + 0.056795161217451096, + -0.02352774888277054, + -0.022530782967805862 + ], + "bell-slash-bold||alarm,notifications,times,timer,clock,schedule,events,silent,silenced,ringer,calls,disabled": [ + -0.019880367442965508, + -0.058693502098321915, + -0.05278817564249039, + 0.02672603726387024, + -0.020250661298632622, + 0.03495718911290169, + 0.11347687989473343, + -0.011054504662752151, + 0.03708948567509651, + -0.028567835688591003, + 0.028263268992304802, + 0.007092314772307873, + 0.011024607345461845, + -0.02038467302918434, + -0.07704091817140579, + 0.02761734649538994, + 0.0492190420627594, + -0.026925964280962944, + -0.01173553615808487, + -0.024348758161067963, + 0.01831190101802349, + 0.09663541615009308, + 0.06235357001423836, + 0.052231986075639725, + 0.004083721432834864, + -0.006549794692546129, + 0.004189384635537863, + 0.01088646799325943, + -0.024916989728808403, + -0.06602557003498077, + -0.0027854377403855324, + -0.012336976826190948, + 0.14115522801876068, + 0.0028928627725690603, + 0.002633586060255766, + 0.002906923182308674, + 0.07447458803653717, + 0.03109576553106308, + 0.015326169319450855, + -0.01961262710392475, + -0.02635585144162178, + -0.10072948038578033, + -0.06657372415065765, + -0.02124020643532276, + -0.05436258763074875, + -0.025808142498135567, + -0.05252424255013466, + -0.0647832378745079, + -0.05611518397927284, + -0.019746333360671997, + 0.0673065334558487, + -0.01377442479133606, + -0.05374917387962341, + 0.021655304357409477, + 0.07315715402364731, + 0.05774170532822609, + -0.07255055755376816, + 0.05232836306095123, + 0.07706318795681, + 0.05431710556149483, + -0.0018233630107715726, + 0.03810543566942215, + -0.019743315875530243, + 0.06905157119035721, + -0.02496655285358429, + 0.04831817373633385, + -0.037107232958078384, + -9.104257333092391e-05, + 0.020012391731142998, + -0.07172375917434692, + -0.03402121737599373, + 0.006632245145738125, + -0.023213744163513184, + 0.020203489810228348, + -0.05556396394968033, + 0.014974496327340603, + 0.06617587059736252, + -0.0647093653678894, + -0.025226343423128128, + -0.06994450092315674, + -0.11363339424133301, + -0.08600878715515137, + -0.026203323155641556, + 0.047112397849559784, + 0.10407673567533493, + 0.06347288936376572, + -0.04745536297559738, + -0.019062284380197525, + -0.04763104021549225, + -0.009444116614758968, + -0.0661260187625885, + -0.10150779038667679, + 0.020701495930552483, + 0.020851634442806244, + -0.09632448852062225, + 0.008906431496143341, + 0.01472777035087347, + -0.061915043741464615, + -0.09688501060009003, + 0.08325880765914917, + -0.021294808015227318, + -0.03219534456729889, + -0.03829675167798996, + 0.03352518379688263, + 0.03909733146429062, + -0.0397072434425354, + -0.046007197350263596, + -0.028354741632938385, + -0.029137583449482918, + 0.010197375901043415, + -0.005725989118218422, + -0.0694306343793869, + 0.025375736877322197, + -0.1126118078827858, + 0.014341588132083416, + -0.025208398699760437, + -0.08609329164028168, + -0.0073516457341611385, + 0.1727151870727539, + 0.10792478919029236, + 0.09963354468345642, + -0.08245553821325302, + -0.11522272974252701, + -0.051364969462156296, + -0.01612875610589981, + 0.08206740021705627, + 0.03173661231994629, + -1.854621702001471e-33, + 0.044999781996011734, + 0.047861699014902115, + -0.04650171846151352, + 0.040239278227090836, + 0.06458790600299835, + 0.004559310618788004, + -0.04478013888001442, + -0.027635660022497177, + -0.03890780359506607, + 0.03558621555566788, + 0.06062624976038933, + 0.029901893809437752, + 0.009375768713653088, + -0.0269265528768301, + 0.048018552362918854, + -0.018671467900276184, + 0.05723511055111885, + 0.01119648665189743, + 0.0021179846953600645, + -0.08410026133060455, + -0.024356648325920105, + 0.08736114948987961, + -0.03579259663820267, + 0.06345782428979874, + 0.07724153995513916, + 0.00034027863875962794, + 0.031911153346300125, + -0.03533254191279411, + 0.03443092852830887, + 0.03870311751961708, + 0.046332672238349915, + -0.0028743871953338385, + 0.04362453520298004, + 0.03735208138823509, + 0.029671018943190575, + 0.01390285138040781, + -0.028806624934077263, + -0.01867048442363739, + -0.03252176567912102, + -0.016564179211854935, + -0.071922168135643, + -0.09529433399438858, + -0.14545461535453796, + -0.04646711423993111, + 0.04715880751609802, + -0.014189892448484898, + -0.032220978289842606, + -0.0246078260242939, + 0.039485201239585876, + 0.038034602999687195, + 0.038213931024074554, + 0.010913243517279625, + 0.11149851232767105, + 0.03400583565235138, + 0.013478586450219154, + -0.00836891308426857, + 0.037851788103580475, + 0.0032588052563369274, + 0.052819885313510895, + 0.04658280685544014, + -0.01097205188125372, + 0.017492681741714478, + 0.057174548506736755, + -0.09206800162792206, + 0.009979892522096634, + 0.025312237441539764, + -0.08787503838539124, + -0.04621828719973564, + 0.029681004583835602, + 0.019495097920298576, + -0.008098628371953964, + 0.029875120148062706, + 0.07411199808120728, + 0.03479665145277977, + -0.042167820036411285, + 0.050456129014492035, + -0.02797919698059559, + 0.005177650135010481, + -0.026897957548499107, + -0.03264407068490982, + -0.025594128295779228, + 0.003004190046340227, + -0.08151042461395264, + 0.07827345281839371, + 0.09864005446434021, + -0.006518075242638588, + -0.030430767685174942, + -0.07111375033855438, + -0.06711483001708984, + 0.06447149813175201, + -0.05756056681275368, + 0.004918705206364393, + 0.0008693235577084124, + -0.006047890521585941, + -0.11900079995393753, + 6.80612101563318e-34, + 0.03524477034807205, + 0.03348276764154434, + -0.05910392850637436, + 0.01138191670179367, + -0.03891707584261894, + -0.0059905266389250755, + -0.013720407150685787, + 0.036032676696777344, + -0.042008183896541595, + 0.007746930234134197, + 0.035874467343091965, + 0.0588209331035614, + -8.749216794967651e-05, + -0.0555817112326622, + 0.01684536412358284, + 0.02739829383790493, + 0.032468948513269424, + 0.030658382922410965, + -0.04058019816875458, + 0.08530134707689285, + -0.04364337772130966, + 0.015245234593749046, + -0.12072932720184326, + 0.029883936047554016, + -0.06277775764465332, + 0.016762398183345795, + -0.0038406881503760815, + 0.05171557515859604, + 0.043502166867256165, + -0.06163903325796127, + -0.04603029415011406, + 0.018981358036398888, + 0.021161839365959167, + 0.026662111282348633, + -0.0577978752553463, + 0.010132364928722382, + 0.04664996266365051, + 0.032598670572042465, + -0.022605370730161667, + -0.061506178230047226, + 0.061234019696712494, + 0.03620307520031929, + 0.0573139414191246, + 0.05704613775014877, + -0.0334240086376667, + 0.03929249197244644, + -0.02673572301864624, + -0.04647618904709816, + -0.09293315559625626, + 0.05590300261974335, + 0.04293492063879967, + -0.08851271867752075, + 0.012704738415777683, + 0.09727117419242859, + -0.04542217031121254, + 0.010144809260964394, + 0.0028258860111236572, + -0.017118306830525398, + -0.026884911581873894, + 0.034050486981868744, + 0.06227755919098854, + -0.01839369349181652, + -0.0010078252526000142, + 0.04222303256392479, + 0.041608020663261414, + -0.013382211327552795, + 0.006700423080474138, + 0.012986471876502037, + 0.03276916965842247, + -0.050144050270318985, + 0.06978976726531982, + 0.02533995918929577, + -0.017548581585288048, + -0.047327086329460144, + 0.026485241949558258, + -0.011995323933660984, + -0.09398505091667175, + -0.05472734570503235, + -0.1021229550242424, + 0.06055430695414543, + -0.017753349617123604, + -0.01599777489900589, + -0.013061726465821266, + 0.002168378559872508, + -0.04387332499027252, + -0.0004328634822741151, + 0.02575664035975933, + 0.11067579686641693, + -0.0029153276700526476, + -0.04108549281954765, + -0.08468026667833328, + 0.08819891512393951, + 0.008383351378142834, + 0.07428831607103348, + -0.04988770931959152, + -2.6201121272606542e-08, + -0.005239137448370457, + -0.061225906014442444, + -0.007505275309085846, + -0.11397717148065567, + 0.0906682014465332, + -0.0416584350168705, + 0.029841043055057526, + -0.08891630172729492, + -0.007877137511968613, + -0.023349622264504433, + 0.044749271124601364, + -0.040817126631736755, + -0.054562412202358246, + -0.046049073338508606, + 0.07917476445436478, + 0.01279422827064991, + -0.042739711701869965, + 0.0414198562502861, + -0.03137017413973808, + -0.055860403925180435, + 0.05525786057114601, + 0.0940086767077446, + 0.028869181871414185, + -0.025141431018710136, + 0.009611203335225582, + -0.015518144704401493, + -0.013498499058187008, + 0.036358874291181564, + 0.03592700883746147, + 0.043851662427186966, + 0.02556016854941845, + 0.06748811900615692, + 0.024275250732898712, + -0.07341273128986359, + -0.09203463047742844, + -0.0033438268583267927, + -0.04424339532852173, + -0.007693482097238302, + 0.046306878328323364, + 0.05668052285909653, + 0.07156426459550858, + -0.09274528920650482, + -0.09058813005685806, + 0.049980636686086655, + -0.010370079427957535, + -0.021803295239806175, + 0.02652813121676445, + -0.08258766680955887, + -0.0278957337141037, + -0.051783397793769836, + 0.005000721197575331, + 0.06708762049674988, + 0.025520382449030876, + 0.014058636501431465, + -0.02080804482102394, + 0.062293920665979385, + 0.05267610773444176, + -0.005826955661177635, + -0.021736551076173782, + 0.05790971964597702, + 0.06716752052307129, + 0.025449609383940697, + -0.0072507355362176895, + -0.02153664082288742 + ], + "bell-z-bold||alarm,notifications,times,timer,clock,schedule,events,ringer,snooze": [ + -0.014171932823956013, + -0.01838672161102295, + -0.049676619470119476, + 0.037762146443128586, + 0.0029040344525128603, + 0.0727001205086708, + 0.12794122099876404, + -0.012616738677024841, + 0.014518968760967255, + -0.0395321398973465, + -0.010084632784128189, + 0.000538517371751368, + 0.04819114878773689, + -0.014976114965975285, + -0.04643769934773445, + 0.00173663767054677, + 0.01792779751121998, + -0.020568005740642548, + -0.00338712683878839, + -0.04840857908129692, + 0.04968663677573204, + 0.02786700427532196, + 0.07960568368434906, + 0.07377679646015167, + -0.0022763176821172237, + 0.022447042167186737, + 0.006697451695799828, + 0.03253374621272087, + 0.0012830211780965328, + -0.04576690495014191, + -0.021763747557997704, + 0.01772325299680233, + 0.1539360135793686, + 0.002515179803594947, + -0.014896862208843231, + -0.023432260379195213, + 0.06551036238670349, + 0.04093498736619949, + -0.016009032726287842, + 0.026442209258675575, + 0.012133563868701458, + -0.07849648594856262, + -0.0300565417855978, + 0.003907637670636177, + -0.015256263315677643, + 0.045416947454214096, + -0.046416591852903366, + -0.0345192588865757, + -0.09187342971563339, + 0.00929204560816288, + 0.044497668743133545, + -0.049761343747377396, + -0.051539987325668335, + 0.0380123145878315, + 0.08383446931838989, + 0.10531975328922272, + -0.07398425042629242, + -0.01058285217732191, + 0.04935874417424202, + 0.023555509746074677, + -0.0074455635622143745, + 0.03957124799489975, + -0.03839102014899254, + 0.07898052036762238, + 0.027586767449975014, + 0.04573453962802887, + -0.045695479959249496, + 0.020750856027007103, + 0.03515343368053436, + -0.0685657188296318, + -0.04061044007539749, + 0.006227461155503988, + -0.008341759443283081, + 0.016365520656108856, + -0.08680078387260437, + 0.018856247887015343, + 0.08622284233570099, + -0.07847987115383148, + -0.03418325260281563, + -0.06478399783372879, + -0.14757490158081055, + -0.07723080366849899, + -0.002623563166707754, + 0.02416381612420082, + 0.12441348284482956, + 0.05341695621609688, + -0.05428661033511162, + 0.01747865416109562, + -0.06205334514379501, + 5.097175016999245e-05, + -0.05124221742153168, + -0.07705602049827576, + -0.00742908613756299, + 0.02049805223941803, + -0.089619480073452, + 0.020463459193706512, + 0.031132468953728676, + -0.04464760422706604, + -0.044197022914886475, + 0.06285121291875839, + -0.014260020107030869, + -0.02520378865301609, + 0.026112467050552368, + 0.0281703919172287, + 0.027040842920541763, + -0.043760109692811966, + -0.06972332298755646, + -0.057877082377672195, + -0.02831529639661312, + 0.040048591792583466, + -0.019269991666078568, + -0.0810876414179802, + 0.036281656473875046, + -0.11666173487901688, + 0.04961839318275452, + -0.013858722522854805, + -0.08281964063644409, + 0.039299868047237396, + 0.14792686700820923, + 0.0894305557012558, + 0.08188483119010925, + -0.04938897490501404, + -0.08977387100458145, + -0.05298154428601265, + -0.04225403070449829, + 0.08900842815637589, + -0.0020921332761645317, + -8.406513985566381e-35, + -0.0016266090096905828, + 0.03747721388936043, + -0.07060070335865021, + 0.04688272625207901, + 0.03203778341412544, + 0.02166062220931053, + -0.061080846935510635, + -0.02440829388797283, + -0.0006993005517870188, + 0.07747439295053482, + 0.007843348197638988, + 0.07633278518915176, + -0.009531863033771515, + -0.02396978624165058, + 0.025913670659065247, + -0.019995519891381264, + 0.03271683305501938, + 0.01617678441107273, + -0.007699982728809118, + -0.060118068009614944, + -0.04075457155704498, + 0.049519333988428116, + -0.05891789123415947, + 0.03371158987283707, + 0.08973412215709686, + -0.006421699654310942, + 0.04492833837866783, + -0.05202063173055649, + -0.01907278597354889, + 0.013343877159059048, + 0.0788872092962265, + -0.006151359062641859, + 0.024364963173866272, + 0.0032178636174649, + 0.07201728969812393, + -0.025015398859977722, + -0.027716035023331642, + -0.021654661744832993, + -0.020502226427197456, + -0.05981096252799034, + -0.04707822948694229, + -0.08829784393310547, + -0.11713844537734985, + -0.012592439539730549, + 0.04631182923913002, + 0.013295778073370457, + -0.025165516883134842, + 0.0012279991060495377, + 0.10024397820234299, + -0.009587593376636505, + 0.03551621362566948, + -0.0348130464553833, + 0.04875757172703743, + 0.00939114112406969, + 0.0024570210371166468, + 0.03976091369986534, + 0.04400153458118439, + 0.042770180851221085, + 0.04963331297039986, + 0.0655250996351242, + -0.026552973315119743, + 0.030605193227529526, + 0.07303587347269058, + -0.10149025171995163, + 0.050263065844774246, + 0.045621033757925034, + -0.09716799110174179, + -0.06917635351419449, + 0.05089789628982544, + 0.039450012147426605, + 0.013451533392071724, + 0.050564054399728775, + 0.07149586826562881, + 0.039918530732393265, + 0.008269796147942543, + 0.0329543799161911, + 0.02385023795068264, + -0.007587243337184191, + -0.013401439413428307, + -0.04648882895708084, + -0.0052971490658819675, + -0.005380097310990095, + -0.04100925102829933, + 0.07985950261354446, + 0.08425238728523254, + -0.015310239046812057, + 0.00220432854257524, + -0.08240799605846405, + -0.06826840341091156, + 0.04311029240489006, + -0.05626143142580986, + -0.03400564193725586, + 0.060024335980415344, + -0.028600450605154037, + -0.13560710847377777, + -6.1317307230168175e-34, + 0.0013381603639572859, + 0.01814144104719162, + -0.05434953048825264, + -0.002599729225039482, + 0.016807494685053825, + -0.006790876388549805, + -0.017249397933483124, + 0.04661672189831734, + -0.026158859953284264, + 0.007879332639276981, + 0.03267486020922661, + 0.033289019018411636, + 0.0098017742857337, + -0.047512445598840714, + -0.020666537806391716, + 0.039384517818689346, + 0.0555826835334301, + 0.0384640246629715, + -0.0019321355503052473, + 0.04999171197414398, + -0.05146035924553871, + -0.010564352385699749, + -0.1389329731464386, + -0.008374642580747604, + -0.028588617220520973, + 0.023621520027518272, + 0.0329490602016449, + 0.0360797755420208, + 0.04479626566171646, + -0.03251509740948677, + -0.07534318417310715, + -0.05211913213133812, + 0.04672008007764816, + 0.030820442363619804, + -0.07720072567462921, + -0.010135753080248833, + 0.0736384466290474, + 0.011248608119785786, + -0.06625600159168243, + -0.06095052510499954, + 0.0540536493062973, + 0.016932114958763123, + 0.061207834631204605, + 0.026617826893925667, + -0.0193627942353487, + 0.04057317227125168, + -0.07602635771036148, + -0.0018185600638389587, + -0.09937398880720139, + 0.03732140734791756, + 0.03612212836742401, + -0.09700632095336914, + -0.03435103967785835, + 0.05823491886258125, + -0.035951267927885056, + 0.009991048835217953, + 0.030198469758033752, + -0.05220472812652588, + -0.0023163689766079187, + -0.0076621901243925095, + 0.012373597361147404, + -0.03271947801113129, + 0.030794262886047363, + 0.051647961139678955, + 0.0334969125688076, + -0.026284337043762207, + 0.011619205586612225, + -0.017285680398344994, + -0.0019406179198995233, + -0.07313910871744156, + 0.06398112326860428, + 0.0068338667042553425, + -0.03996606171131134, + -0.04677196219563484, + -0.03243618458509445, + 0.005428922828286886, + -0.0707869753241539, + -0.02655542455613613, + -0.09370527416467667, + -0.0059619746170938015, + -0.048964615911245346, + -0.014574803411960602, + 0.004399145487695932, + 0.02471190318465233, + -0.04238058626651764, + 0.014300893992185593, + 0.07914330065250397, + 0.06286319345235825, + 0.02548702247440815, + -0.021842369809746742, + -0.07294994592666626, + 0.1102277934551239, + 0.012405114248394966, + 0.07680094242095947, + -0.025812292471528053, + -2.2906229801833433e-08, + 0.0019680513069033623, + -0.06155997887253761, + 0.001095456536859274, + -0.0996561124920845, + 0.0911460891366005, + -0.04446134716272354, + 0.04180505871772766, + -0.07327891141176224, + -0.012259517796337605, + -0.04916110634803772, + 0.05974142998456955, + -0.0050120591185987, + -0.05194096639752388, + -0.062495872378349304, + 0.08988359570503235, + -0.0036634905263781548, + -0.018910015001893044, + 0.02151467092335224, + -0.033373329788446426, + -0.05847522243857384, + 0.07085281610488892, + 0.09754179418087006, + 0.04237786680459976, + -0.057063836604356766, + 0.013469244353473186, + 0.025079907849431038, + -0.035192981362342834, + 0.06852532178163528, + 0.046024568378925323, + 0.03119293414056301, + 0.04404154419898987, + 0.05304410308599472, + 0.05604652687907219, + -0.07348164916038513, + -0.07751476764678955, + -0.03506743907928467, + -0.04982874542474747, + -0.05220692604780197, + 0.04017559438943863, + 0.07105639576911926, + 0.06625842303037643, + -0.10499683767557144, + -0.07972288131713867, + 0.06127232685685158, + -0.014618832617998123, + -0.06757263094186783, + 0.02177993208169937, + -0.1147041991353035, + -0.003689754055812955, + -0.04647139832377434, + -0.017858678475022316, + 0.027147037908434868, + 0.008648748509585857, + -0.018326571211218834, + -0.005308565218001604, + 0.05241747573018074, + 0.05899112671613693, + -0.026689784601330757, + 0.000775075750425458, + 0.040008869022130966, + 0.017886878922581673, + 0.034361518919467926, + -0.016647348180413246, + -0.01940598152577877 + ], + "belt-bold||*new*,clothes,clothing": [ + -0.03275782987475395, + 0.03524191677570343, + -0.020495086908340454, + 0.022746426984667778, + 0.054799821227788925, + -0.02707977592945099, + 0.07378895580768585, + -0.07075989246368408, + -0.04167770594358444, + -0.019026905298233032, + 0.06135161593556404, + -0.025577621534466743, + 0.05756841227412224, + -0.07098793983459473, + 0.0461370088160038, + 0.04186193645000458, + 0.09349744766950607, + 0.08543890714645386, + -0.045756708830595016, + -0.06849642097949982, + -0.013075742870569229, + 0.07640792429447174, + 0.024673765525221825, + 0.07322466373443604, + -0.07764959335327148, + -0.01111551746726036, + 0.027547944337129593, + -0.03800616413354874, + -0.04934249445796013, + -0.08500966429710388, + -0.005834714975208044, + -0.03526937589049339, + 0.08571235835552216, + 0.08819684386253357, + 0.02072804979979992, + 0.006512722000479698, + 0.06230775639414787, + -0.016114020720124245, + -0.036274056881666183, + 0.07295732945203781, + 0.011913514696061611, + -0.0856483206152916, + -0.07859677821397781, + 0.043291278183460236, + 0.004223182797431946, + 0.037517249584198, + 0.025559427216649055, + 0.04877308011054993, + -0.001254259841516614, + 0.05318037047982216, + -0.012376139871776104, + -0.07310756295919418, + -0.07737462967634201, + 0.036008480936288834, + -0.0004645698645617813, + 0.047488439828157425, + -0.04247644171118736, + -0.011135954409837723, + 0.014329616911709309, + -0.0387805700302124, + 0.034331388771533966, + 0.020521169528365135, + -0.006352449767291546, + 0.07630611211061478, + 0.02078276313841343, + -0.024432426318526268, + 0.031216511502861977, + 0.08660629391670227, + -0.05586054176092148, + 0.08630575239658356, + 0.0042393989861011505, + -1.4829630345047917e-05, + -0.04088674858212471, + 0.04505353420972824, + -0.03421276807785034, + -0.011546744033694267, + 0.02978106029331684, + 0.020305488258600235, + -0.040033429861068726, + -0.05914919450879097, + -0.06947096437215805, + -0.07213844358921051, + -0.02652638778090477, + -0.011154980398714542, + 0.022542687132954597, + 0.03899334371089935, + -0.07733961194753647, + -0.06826238334178925, + -0.04304228723049164, + -0.04486338421702385, + -0.04528837651014328, + -0.04794428497552872, + -0.05436791107058525, + -0.0030394787900149822, + -0.07189542800188065, + 0.0471193790435791, + 0.01761399395763874, + -0.008507574908435345, + -0.012605450116097927, + 0.05715721473097801, + -0.013448799960315228, + 0.007527441717684269, + 0.04482930526137352, + 0.042532727122306824, + -0.03957802429795265, + -0.023845795542001724, + -0.009130716323852539, + 0.027758270502090454, + -0.0031580340582877398, + 0.06554004549980164, + -0.010667196474969387, + -0.041986364871263504, + -0.032735761255025864, + -0.06939073652029037, + 0.039563775062561035, + -0.0036368337459862232, + -0.01712062954902649, + 0.0512094646692276, + 0.008147135376930237, + 0.09050121903419495, + 0.011195511557161808, + -0.06348178535699844, + -0.04422407224774361, + -0.06425603479146957, + -0.08742475509643555, + 0.008796961978077888, + 0.01744716241955757, + -2.0058409687110965e-33, + -0.002625485649332404, + 0.05033288523554802, + -0.00829778891056776, + 0.10631490498781204, + -0.040866389870643616, + 0.009737658314406872, + -0.01869906112551689, + -0.09719569236040115, + -0.028277520090341568, + 0.09802906215190887, + 0.05841346085071564, + -0.006498338654637337, + -0.07819777727127075, + 0.062260035425424576, + 0.0995996817946434, + -0.04288601875305176, + -0.007298054173588753, + -0.09834218770265579, + -0.009786950424313545, + -0.002670309506356716, + -0.094575896859169, + 0.1337035447359085, + -0.03151203691959381, + -0.032019227743148804, + -0.00544065423309803, + -0.02713892236351967, + 0.11990945786237717, + -0.022616127505898476, + -0.03544340655207634, + 0.013111180625855923, + 0.06185697764158249, + -0.01117386482656002, + 0.07049610465765, + 0.04606335237622261, + -0.05939074233174324, + 0.0825272649526596, + -0.08371838927268982, + -0.014250898733735085, + 0.04581550881266594, + 0.016812710091471672, + -0.03879532217979431, + -0.018053129315376282, + -0.0044500501826405525, + -0.0037031639367341995, + -0.04857783764600754, + 0.07940838485956192, + 0.030932672321796417, + -0.0017981156706809998, + 0.029938656836748123, + 0.03821934387087822, + 0.015169208869338036, + 0.002471738029271364, + 0.04144870117306709, + -0.03265225887298584, + -0.05305417627096176, + -0.06397424638271332, + -0.02263374626636505, + 0.041085246950387955, + 0.01657962054014206, + -0.04177040979266167, + 0.0518840029835701, + 0.006721095647662878, + 0.06567998230457306, + 0.0174697395414114, + 0.0055299908854067326, + 0.014071374200284481, + 0.02717716619372368, + 0.008982454426586628, + 0.05488505959510803, + 0.007632298395037651, + -0.10010634362697601, + 0.07904967665672302, + -0.0050631011836230755, + 0.034188780933618546, + 0.02616836130619049, + 0.0015270395670086145, + -0.015867501497268677, + -0.017441999167203903, + 0.011223806999623775, + -0.09718544781208038, + -0.0793410986661911, + 0.026110466569662094, + -0.01443339791148901, + 0.1875595897436142, + 0.043391767889261246, + 0.0019171355525031686, + -0.009567848406732082, + -0.028959110379219055, + 0.02171398140490055, + 0.010010194964706898, + -0.02806958183646202, + -0.00448241364210844, + -0.05544985830783844, + -0.0028003340121358633, + -0.017099542543292046, + -2.9946062970308367e-34, + 0.11790362745523453, + 0.06266984343528748, + 0.059629086405038834, + 0.08353891968727112, + 0.005362679250538349, + -0.013673372566699982, + -0.06273288279771805, + 0.09560379385948181, + -0.0560779944062233, + 0.03888958320021629, + 0.06486717611551285, + -0.03390515223145485, + -0.07451759278774261, + -0.0545228086411953, + 0.12260258197784424, + 0.045456718653440475, + -0.05580383911728859, + 0.05433029308915138, + -0.010175731033086777, + 0.0018248282140120864, + -0.019346915185451508, + -0.04144086316227913, + -0.050626836717128754, + 0.0009692813619039953, + -0.09490275382995605, + 0.022641127929091454, + 0.008166403509676456, + 0.05469575524330139, + -0.03863034397363663, + -0.07328429818153381, + -0.034860264509916306, + -0.0063834465108811855, + 0.00017898398800753057, + 0.11393927782773972, + -0.051812708377838135, + -0.009384753182530403, + 0.020180262625217438, + -0.03365878015756607, + 0.02649887651205063, + 0.018335888162255287, + -0.00701899966225028, + -0.010538316331803799, + 0.025042690336704254, + 0.060373492538928986, + -0.07665778696537018, + -0.06417600810527802, + -0.0021061976440250874, + -0.01857011578977108, + -0.057078104466199875, + 0.05350792780518532, + 0.0031148584093898535, + 0.0050481222569942474, + -0.04223083704710007, + -0.017912110313773155, + -0.02662523463368416, + 0.07147935032844543, + -0.06317314505577087, + -0.009679647162556648, + -0.03759322687983513, + 0.04175727814435959, + -0.04565570503473282, + 0.1042751595377922, + -0.050916366279125214, + 0.007933884859085083, + 0.025473451241850853, + -0.043975308537483215, + 0.03978083282709122, + -0.015044706873595715, + -0.052893977612257004, + 0.042833112180233, + 0.03479835391044617, + -0.01851055957376957, + -0.02647002413868904, + -0.0008349536801688373, + 0.002516122767701745, + -0.07324038445949554, + 0.006513435393571854, + 0.012626123614609241, + -0.017680738121271133, + 0.06057273969054222, + -0.01160387322306633, + -0.04169374704360962, + -0.05293896794319153, + 0.03407979756593704, + 0.050817981362342834, + 0.13322791457176208, + -0.04915909096598625, + 0.06582294404506683, + 0.021369755268096924, + -0.03344814479351044, + -0.0032559253741055727, + 0.03622931241989136, + -0.05352247506380081, + 0.05075893923640251, + -0.08200252801179886, + -1.7861129464336045e-08, + -0.028762418776750565, + 0.026412852108478546, + -0.0329868420958519, + -0.003522581420838833, + -0.003610030049458146, + 0.013450132682919502, + -0.06214023008942604, + -0.0634186714887619, + -0.05131706967949867, + 0.03046741522848606, + 0.04987357556819916, + 0.044832516461610794, + -0.06964224576950073, + 0.015895040705800056, + -0.08272474259138107, + 0.0002870619937311858, + -0.07552196830511093, + 0.025267424061894417, + -0.058776214718818665, + -0.05608265846967697, + -0.0010751786176115274, + 0.03800780698657036, + 0.05331262946128845, + 0.008668240159749985, + 0.037753451615571976, + -0.003239144803956151, + -0.05054895952343941, + 0.04638228192925453, + 0.04343130439519882, + 0.09064006060361862, + 0.07522950321435928, + 0.032684892416000366, + -0.022917425259947777, + -0.031472623348236084, + -0.15755194425582886, + -0.06418780982494354, + -0.04359910264611244, + -0.015757117420434952, + 0.041296351701021194, + 0.0754326805472374, + 0.0037028754595667124, + -0.022841723635792732, + 0.06316573172807693, + 0.03100741282105446, + -0.028944825753569603, + -0.055775877088308334, + 0.0450044721364975, + -0.03262292966246605, + -0.07963282614946365, + -0.06697932630777359, + -0.04009326174855232, + -0.09553845971822739, + 0.03799573704600334, + 0.026233749464154243, + -0.060824230313301086, + -0.025576643645763397, + -0.01696746051311493, + 0.1214747428894043, + 0.01317855529487133, + 0.04449449107050896, + 0.05379559472203255, + -0.1382405161857605, + -0.0325482077896595, + -0.04297367483377457 + ], + "bezier-curve-bold||shapes,drawing,path,pen,vector": [ + 0.042716797441244125, + -0.05874744430184364, + -0.0479934997856617, + 0.061420101672410965, + -0.008958381600677967, + -0.03760485723614693, + 0.03551555052399635, + -0.010551843792200089, + -0.014656108804047108, + -0.0005973633378744125, + -0.02720455452799797, + 0.0624237097799778, + 0.027687661349773407, + 0.0007725214818492532, + -0.05115440487861633, + 0.020656008273363113, + -0.06333515793085098, + -0.008318937383592129, + 0.04421563446521759, + 0.027960820123553276, + 0.04409966245293617, + -0.03996821492910385, + 0.04520172253251076, + 0.013899431563913822, + -0.0008050300530157983, + -0.006682353559881449, + 0.11847563832998276, + -0.018029160797595978, + 0.017867499962449074, + -0.05247941240668297, + -0.024538816884160042, + -0.10747023671865463, + 0.0016526629915460944, + -0.013803118839859962, + 0.0364229716360569, + -0.016658522188663483, + -0.009017067961394787, + 0.018119188025593758, + 0.0020296797156333923, + 0.027100708335638046, + 0.0553363673388958, + -0.025856442749500275, + 0.02398819662630558, + 0.04454565793275833, + 0.08909620344638824, + 0.00538301095366478, + -0.08785276859998703, + -0.008530572056770325, + -0.021022818982601166, + 0.034173429012298584, + 0.02761920727789402, + -0.15163466334342957, + -0.1042390912771225, + -0.013723023235797882, + 0.00804085098206997, + -0.018823616206645966, + -0.08607962727546692, + 0.038914814591407776, + 0.025226693600416183, + -0.07692532241344452, + 0.0063921441324055195, + -0.019671564921736717, + 0.04775691404938698, + 0.06235780194401741, + -0.06883098185062408, + 0.026213513687253, + 0.02311987802386284, + 0.0284431092441082, + 0.004122887272387743, + 0.01171668991446495, + 0.01332117896527052, + 0.02181459777057171, + -0.00552754383534193, + -0.11250641942024231, + 0.019576312974095345, + -0.0014658028958365321, + 0.025602087378501892, + 0.12204314768314362, + -0.08791644871234894, + -0.05671122670173645, + -0.06055854633450508, + -0.047686994075775146, + -0.024084055796265602, + 0.05460970476269722, + 0.09456606209278107, + 0.07555970549583435, + -0.05121038854122162, + -0.1051497831940651, + 0.03538370877504349, + 0.05380772799253464, + 0.00039308605482801795, + 0.1274062544107437, + -0.1289396435022354, + 0.033789101988077164, + -0.08651018142700195, + 0.001107510062865913, + 0.07496084272861481, + 0.06975939124822617, + -0.06313701719045639, + 0.046219222247600555, + 0.07464711368083954, + -0.013799765147268772, + 0.03753681853413582, + 0.043824270367622375, + 0.03127099946141243, + 0.025674542412161827, + -0.01309747900813818, + -0.0465170256793499, + 0.0040981764905154705, + 0.0007742031011730433, + -0.031227195635437965, + -0.10002768039703369, + 0.028533820062875748, + -0.0061439587734639645, + 0.04496442526578903, + -0.0690896138548851, + -0.04963090643286705, + 0.06295137852430344, + 0.07095454633235931, + 0.026732584461569786, + -0.001093385391868651, + 0.008189341053366661, + -0.03309576213359833, + -0.014909385703504086, + -0.015184667892754078, + 0.009736215695738792, + -0.008032271638512611, + -2.687055006033982e-33, + -0.0037583294324576855, + 0.06995411962270737, + 0.0042813727632164955, + 0.06963986158370972, + -0.033878084272146225, + 0.025344518944621086, + -0.015952199697494507, + -0.005593887530267239, + -0.06762722879648209, + -0.014811030589044094, + -0.005386526230722666, + -0.045869022607803345, + -0.02797549031674862, + 0.06237557902932167, + 0.10879211127758026, + -0.07549627125263214, + 0.08377544581890106, + 0.009809819050133228, + -0.04490233212709427, + 0.03532366082072258, + -0.03391486406326294, + -0.014380662702023983, + -0.04594847187399864, + -0.06705982983112335, + -0.02532157674431801, + 0.008223194628953934, + -0.024323545396327972, + 0.03770646080374718, + -0.061603959649801254, + 0.016982460394501686, + -0.008334373123943806, + -0.015192802995443344, + 0.013404639437794685, + -0.015073112212121487, + -0.09334057569503784, + 0.004999188240617514, + 0.04294735565781593, + -0.032701555639505386, + -0.02362964302301407, + 0.020542319864034653, + 0.0015384654980152845, + -0.012551948428153992, + 0.055196646600961685, + -0.0228976272046566, + -0.012427941896021366, + 0.13798139989376068, + 0.01019231230020523, + 0.031046267598867416, + -0.04445115104317665, + 0.01033301092684269, + -0.09220676124095917, + -0.030344920232892036, + 0.07585147023200989, + -0.018614768981933594, + 0.046202149242162704, + -0.03336520865559578, + -0.05250486731529236, + 0.08258707821369171, + -0.0269892867654562, + -0.001905691809952259, + 0.04931173101067543, + 0.08354199677705765, + -0.01761818863451481, + -0.02770785056054592, + -0.08158723264932632, + -0.01951754465699196, + 0.01809694804251194, + 0.04003685712814331, + 0.05986345186829567, + 0.01247804518789053, + -0.034436315298080444, + 0.11082854121923447, + -0.014324959367513657, + -0.06743954867124557, + 0.004924184642732143, + 0.03937559202313423, + 0.005808400921523571, + -0.01169948372989893, + 0.08885888755321503, + -0.10069631785154343, + -0.11117472499608994, + -0.021234512329101562, + -0.054152555763721466, + -0.05701132491230965, + 0.026381652802228928, + 0.0336301326751709, + 0.05993346869945526, + -0.0744071826338768, + -0.020359372720122337, + 0.04012926295399666, + -0.04460666701197624, + 0.03780021890997887, + -0.014916613698005676, + -0.01643229089677334, + -0.12266130745410919, + 1.411819133024958e-33, + -0.019660204648971558, + 0.06374955922365189, + 0.012719509191811085, + 0.028788376599550247, + -0.024044103920459747, + 0.0596054308116436, + -0.0005230165552347898, + -0.06090676411986351, + 0.007105374708771706, + 0.005647971294820309, + -0.005365878809243441, + -0.037597205489873886, + -0.016454003751277924, + -0.026615045964717865, + 0.03855990245938301, + -0.003737362800166011, + -0.06905670464038849, + 0.0008216190617531538, + -0.05121000111103058, + -0.07278133183717728, + -0.0745440274477005, + 0.030228091403841972, + -0.0437336228787899, + 0.01791306771337986, + -0.0458841472864151, + 0.06857075542211533, + -0.02359362319111824, + -0.015693292021751404, + -0.06257893145084381, + 0.002223646966740489, + -0.03168492764234543, + -0.05373799055814743, + 0.020848678424954414, + 0.041131552308797836, + -0.06725472956895828, + 0.06545304507017136, + 0.02649717964231968, + -0.06194489449262619, + 0.06398868560791016, + 0.002253860468044877, + 0.03369072452187538, + -1.4937095329514705e-05, + 0.03745672479271889, + -0.02881525829434395, + -0.11119179427623749, + 0.06345001608133316, + 0.01692541502416134, + 0.08282529562711716, + -0.01704421639442444, + 0.07906676828861237, + 0.009345774538815022, + -0.006629521492868662, + -0.022403312847018242, + 0.048813529312610626, + -0.07880192995071411, + -0.0259736068546772, + -0.04222829267382622, + -0.08176244795322418, + -0.01872999034821987, + -0.00545772910118103, + -0.035728491842746735, + 0.04916246607899666, + -0.05436503514647484, + 0.026210511103272438, + 0.05573980137705803, + -0.044300924986600876, + 0.08249770104885101, + -0.05570414289832115, + 0.051713064312934875, + -0.0008055806974880397, + 0.04038141667842865, + 0.07532624900341034, + 0.014795434661209583, + 0.01410940382629633, + 0.06461119651794434, + -0.04751656949520111, + 0.06973691284656525, + -0.00544058857485652, + 0.002435530535876751, + 0.005813400726765394, + 0.014433154836297035, + 0.027970103546977043, + 0.043231699615716934, + 0.08074364811182022, + -0.06337038427591324, + 0.01634039357304573, + -0.010985299944877625, + -0.017651021480560303, + 0.0007713460945524275, + 0.05494881048798561, + -0.0003668388235382736, + 0.0870785042643547, + -0.0036360130179673433, + 0.08816437423229218, + -0.02439296245574951, + -1.8699839898772552e-08, + -0.02424003556370735, + -0.005865063518285751, + -0.06379646807909012, + -0.05196290463209152, + 0.04667016491293907, + -0.06356043368577957, + 0.042548585683107376, + -0.039490215480327606, + -0.08673503994941711, + 0.03070283681154251, + 0.03660968691110611, + -0.022029655054211617, + -0.05600443854928017, + -0.02452097274363041, + 0.02217419072985649, + 0.007217619102448225, + -0.036768026649951935, + 0.08286344259977341, + -0.031220879405736923, + -0.06056880205869675, + -0.022227386012673378, + -0.0015286937123164535, + -0.04773179441690445, + -0.0019261324778199196, + 0.053090061992406845, + -0.06369981169700623, + -0.06538423150777817, + 0.05412100628018379, + 0.08602160960435867, + 0.05339411646127701, + 0.008966713212430477, + 0.002506041433662176, + 0.062623031437397, + 0.072041817009449, + -0.07094097137451172, + -0.0671052634716034, + -0.06868435442447662, + 0.04994355887174606, + -0.011636587791144848, + 0.23257394134998322, + -0.0064596678130328655, + 0.0329531729221344, + 0.036327969282865524, + -0.014781974256038666, + -0.04034779220819473, + -0.026593467220664024, + 0.0554361455142498, + -0.04333595559000969, + -0.08809369802474976, + -0.002306444337591529, + -0.09963878989219666, + 0.02178245782852173, + 0.024515623226761818, + 0.0716262087225914, + -0.014748058281838894, + -0.052974212914705276, + -0.017319370061159134, + 0.10701269656419754, + -0.05988180264830589, + 0.00904617179185152, + 0.030126838013529778, + 0.0069824159145355225, + 0.05722573399543762, + -0.00971916038542986 + ], + "bicycle-bold||bikers,bicycling,cyclists,transit,transportation,commuter,exercises,fitness": [ + 0.04264937713742256, + 0.0023028820287436247, + -0.001581166055984795, + 0.04505307599902153, + -0.0206679105758667, + -0.01651448756456375, + 0.10007481276988983, + -0.05174286663532257, + -0.020112231373786926, + -0.015683719888329506, + 0.03460457921028137, + -0.00875554047524929, + 0.0988631471991539, + -0.021132048219442368, + 0.03263591229915619, + 0.040712375193834305, + 0.07623384147882462, + 0.04273318871855736, + 0.006749489810317755, + 0.05949138477444649, + -0.023019352927803993, + 0.05794421583414078, + 0.011645521968603134, + 0.11776421964168549, + 0.048790913075208664, + -0.003248058957979083, + 0.016779083758592606, + -0.021419450640678406, + -0.05323650315403938, + 0.0014211626257747412, + -0.06264632940292358, + 0.13203346729278564, + 0.06420707702636719, + 0.012970561161637306, + -0.031442850828170776, + 0.008532795123755932, + 0.01917647384107113, + 0.03570428118109703, + 0.0207813810557127, + 0.009978988207876682, + -0.00845683179795742, + -0.061817996203899384, + -0.0052362000569701195, + -0.0250784233212471, + 0.011938052251935005, + 0.00872773490846157, + 0.044750481843948364, + -0.042843010276556015, + -0.01859135553240776, + 0.022388283163309097, + 0.0367305614054203, + -0.08308032900094986, + -0.026690009981393814, + 0.04142285883426666, + -0.017867576330900192, + -0.060301925987005234, + -0.14004670083522797, + 0.01409053709357977, + -0.006143839098513126, + -0.03143986687064171, + 0.07023358345031738, + 0.017409853637218475, + -0.00042732225847430527, + 0.11555352807044983, + 0.018491139635443687, + 0.0034555341117084026, + 0.006773659028112888, + 0.013060181401669979, + -0.010097352787852287, + -0.03015211783349514, + 0.037387918680906296, + 0.010879985056817532, + -0.03998016566038132, + -0.04381610080599785, + -0.006862320471554995, + -0.02542918361723423, + 0.0621093213558197, + 0.012463347055017948, + -0.07017238438129425, + -0.09651676565408707, + -0.08817718178033829, + -0.09000996500253677, + 0.0073362309485673904, + 0.024850238114595413, + 0.06148119270801544, + 0.036374546587467194, + -0.03886834532022476, + -0.03758079931139946, + -0.0927625223994255, + -0.036792170256376266, + -0.10480450093746185, + -0.01806694082915783, + 0.03807668015360832, + 0.018206149339675903, + -0.13718435168266296, + 0.03145428001880646, + 0.013935609720647335, + -0.0032880615908652544, + 0.003076497232541442, + 0.10378570854663849, + 0.05670086294412613, + 0.034468039870262146, + 0.14018461108207703, + 0.08677906543016434, + -0.10373323410749435, + -0.0261058546602726, + 0.022426003590226173, + -0.030660638585686684, + 0.04188258945941925, + 0.05793584883213043, + 0.00014397451013792306, + -0.06826948374509811, + 0.01829381287097931, + -0.045549798756837845, + -0.06382378190755844, + 0.044276464730501175, + -0.04815041273832321, + 0.024726251140236855, + 0.11406733840703964, + 0.16529257595539093, + -0.09376723319292068, + 0.021110551431775093, + 0.01364812720566988, + -0.038296736776828766, + -0.007283485494554043, + -0.007783942855894566, + 0.042825035750865936, + -2.635920083418251e-33, + -0.061236850917339325, + -0.015704486519098282, + 0.07336544245481491, + 0.08635891228914261, + 0.005247638560831547, + -0.06878919899463654, + -0.06584801524877548, + -0.09876885265111923, + -0.03140898048877716, + -0.03981374576687813, + 0.08630654215812683, + 0.11020755022764206, + 0.07759089767932892, + 0.0891714096069336, + 0.09973087906837463, + -0.04626581445336342, + -0.038398627191782, + -0.043314944952726364, + -0.019033724442124367, + 0.05572711303830147, + -0.006877689156681299, + -0.014747259207069874, + -0.025774821639060974, + 0.04062950611114502, + -0.05953216925263405, + -0.05190499126911163, + 0.056477878242731094, + -0.031337615102529526, + -0.010525175370275974, + 0.05175531655550003, + -0.0227813683450222, + 0.07001285254955292, + 0.00030199921457096934, + 0.0001936095504788682, + -0.01741061732172966, + 0.007320576347410679, + -0.03795408457517624, + -0.028948036953806877, + -0.028964325785636902, + -0.023339230567216873, + -0.018359024077653885, + -0.08274739235639572, + -0.05980987474322319, + -0.036883652210235596, + 0.06620956212282181, + 0.12546223402023315, + 0.012042833492159843, + -0.00890686921775341, + -0.03342354670166969, + 0.07361292839050293, + -0.0382915660738945, + -0.013924612663686275, + 0.007224319502711296, + -0.03258383646607399, + -0.02474936842918396, + -0.037384726107120514, + -0.014065917581319809, + 0.03705861419439316, + -0.08071665465831757, + 0.026889817789196968, + 0.025481825694441795, + 0.07224117964506149, + 0.023516647517681122, + -0.026166394352912903, + -0.07298853248357773, + 0.022825174033641815, + -0.024671876803040504, + -0.024614304304122925, + 0.04578592628240585, + -0.005468504503369331, + -0.008462375029921532, + 0.09137178957462311, + 0.06477826833724976, + 0.08031895756721497, + 0.0595674142241478, + 0.023774409666657448, + -0.08977513760328293, + -0.06338506937026978, + -0.03599999472498894, + -0.002235422609373927, + -0.04389473423361778, + -0.012967255897819996, + -0.09185318648815155, + 0.068936288356781, + 0.07326217740774155, + 0.02942056767642498, + -0.007543501909822226, + -0.11260257661342621, + -0.010865842923521996, + 0.03662630543112755, + -0.06827903538942337, + -0.01391932088881731, + 0.012200921773910522, + 0.024470817297697067, + -0.07649512588977814, + -1.2448786395635423e-33, + 0.04270940646529198, + 0.060618989169597626, + 0.022961439564824104, + -0.035301271826028824, + 0.0533524714410305, + -0.0060561890713870525, + 0.046858564019203186, + -0.03887757286429405, + -0.0025284942239522934, + 0.035500623285770416, + -0.05206980183720589, + -0.08174543082714081, + -0.054897431284189224, + -0.0037314805667847395, + 0.011883335188031197, + -0.01928168162703514, + 0.044678688049316406, + 0.032034292817115784, + -0.03224167600274086, + 0.05053058639168739, + -0.009238649159669876, + -0.04726426675915718, + -0.044021137058734894, + 0.015590870752930641, + -0.022804031148552895, + 0.03609868139028549, + -0.027697443962097168, + 0.039683688431978226, + -0.01218163687735796, + 0.030636463314294815, + -0.10280515998601913, + 0.052847035229206085, + 0.09685128927230835, + 0.02146616205573082, + -0.07475431263446808, + 0.12415765225887299, + -0.05028820410370827, + -0.023633480072021484, + 0.014830506406724453, + -0.02503628470003605, + -0.01813269406557083, + -0.0491105355322361, + 0.01770707219839096, + 0.04346652328968048, + 0.03005914017558098, + -0.03433717414736748, + -0.055292822420597076, + -0.03887612372636795, + -0.07722577452659607, + -0.03330971673130989, + 0.09112615883350372, + 0.01086402963846922, + 0.003839452750980854, + 0.0018493665847927332, + 0.04413161054253578, + -0.003988860175013542, + -0.013057928532361984, + -0.045024268329143524, + -0.05039903521537781, + -0.04716366529464722, + -0.0345417819917202, + 0.06659433245658875, + -0.03551981970667839, + 0.07721958309412003, + -0.030262131243944168, + -0.1229671761393547, + -0.041044801473617554, + -0.03231099992990494, + -0.06732778996229172, + -0.0021975201088935137, + 0.004061104729771614, + -0.013284146785736084, + -0.023130731657147408, + -0.02471890300512314, + -0.011400875635445118, + -0.04269005358219147, + 0.08384861797094345, + 0.010244355536997318, + -0.0360700860619545, + 0.029077956452965736, + -0.06323517113924026, + -0.044661615043878555, + 0.018748341128230095, + 0.07435690611600876, + -0.06282734870910645, + -0.018486540764570236, + -0.043183814734220505, + -0.06428775936365128, + -0.01411077007651329, + -0.005079200025647879, + -0.0004130572488065809, + 0.07509157061576843, + -0.0798218622803688, + -0.0014721808256581426, + -0.014485688880085945, + -2.469228377321997e-08, + 0.03637108579277992, + -0.019229937344789505, + -0.08842980861663818, + -0.03490842878818512, + 0.032575804740190506, + -0.012571543455123901, + -0.003692532889544964, + -0.01225138921290636, + -0.0876263678073883, + 0.04137461259961128, + 0.04653545096516609, + 0.05897591635584831, + 0.019422439858317375, + 0.022328143939375877, + 0.05625733360648155, + -0.009088096208870411, + 0.005761742126196623, + 0.04165419563651085, + -0.05887388810515404, + -0.047005631029605865, + -0.006554841995239258, + -0.0292848888784647, + 0.01501360535621643, + -0.01489273551851511, + -0.0025155094917863607, + -0.05584656447172165, + -0.0563320554792881, + -0.05839306116104126, + 0.056592024862766266, + -0.008897810243070126, + 0.007736958563327789, + 0.07165306806564331, + -0.027666078880429268, + -0.04140065237879753, + -0.07522238790988922, + -0.07573197036981583, + 0.011599667370319366, + 0.01382531225681305, + -0.01967540569603443, + 0.10894852131605148, + -0.05518019571900368, + -0.030750175938010216, + -0.008551080711185932, + 0.007103777024894953, + 0.0381329208612442, + -0.04416618123650551, + -0.01295454241335392, + -0.03803252428770065, + -0.02846939116716385, + -0.11900061368942261, + -0.024473363533616066, + -0.0617651492357254, + 0.04769377410411835, + 0.04075184836983681, + -0.021018099039793015, + 0.043012283742427826, + -0.03957635536789894, + 0.03564368560910225, + -0.05861815810203552, + 0.01977919228374958, + 0.0822708010673523, + 0.053308162838220596, + -0.00360365048982203, + -0.03720864653587341 + ], + "binary-bold||*new*,digital,0,1,programming,coding,executable": [ + 0.020432142540812492, + -0.012611711397767067, + -0.11277087032794952, + -0.044671520590782166, + -0.007262010592967272, + -0.08298046886920929, + 0.048941828310489655, + 0.0013466950040310621, + -0.06103615090250969, + 0.02113245613873005, + -0.024378014728426933, + -0.026830242946743965, + 0.07089215517044067, + -0.04758168011903763, + -0.0061393314972519875, + 0.03271019458770752, + -0.013467789627611637, + -0.050175417214632034, + 0.054195817559957504, + 0.02493235282599926, + 0.05076856166124344, + 0.010632865130901337, + -0.037380386143922806, + 0.0187908336520195, + 0.04749571159482002, + 0.012293457984924316, + 0.016728796064853668, + -0.007850328460335732, + 0.06854632496833801, + -0.1047484427690506, + -0.007889165543019772, + 0.041962631046772, + 0.21042723953723907, + 0.018474390730261803, + 0.12158073484897614, + 0.043284136801958084, + 0.09967745095491409, + -0.07357770949602127, + -0.08858320862054825, + 0.031364500522613525, + -0.038105301558971405, + -0.011688483878970146, + -0.0014243419282138348, + 0.06213517487049103, + -0.01984546147286892, + 0.005503218155354261, + -0.04142492264509201, + 0.03743313252925873, + -0.0376465804874897, + -0.0573028028011322, + 0.018782667815685272, + -0.034688107669353485, + -0.0788111463189125, + -0.00015038592391647398, + 0.024049626663327217, + -0.045605260878801346, + -0.019329596310853958, + -0.0022849254310131073, + 0.019235683605074883, + -0.020112715661525726, + -0.013164653442800045, + 0.049456968903541565, + 0.008411492221057415, + 0.03938727453351021, + 0.0500958226621151, + 0.0463152639567852, + -0.04505916312336922, + -0.07267992198467255, + 0.03339654952287674, + -0.03466202691197395, + -0.024528345093131065, + -0.07247372716665268, + -0.03256620094180107, + 0.08111044764518738, + -0.035052672028541565, + -0.0403120331466198, + 0.09523750096559525, + 0.025192221626639366, + -0.052986837923526764, + -0.06584121286869049, + -0.0884353294968605, + -0.06429881602525711, + -0.019162675365805626, + 0.037446752190589905, + 0.036698002368211746, + 0.0728590190410614, + -0.0273941271007061, + -0.017666535452008247, + 0.023916995152831078, + 0.045615293085575104, + -0.0777013897895813, + 0.000263771740719676, + 0.009181499481201172, + 0.04782119020819664, + -0.006710496731102467, + 0.0012247541453689337, + 0.09849750250577927, + -0.00806912500411272, + 0.007000223733484745, + 0.1073097437620163, + -0.046095818281173706, + -0.007929909974336624, + 0.03246138244867325, + 0.020985515788197517, + -0.013828381896018982, + -0.05978792533278465, + 0.08660859614610672, + 0.011144175194203854, + -0.03714301437139511, + -0.03744827210903168, + 0.002745335455983877, + -0.06728551536798477, + -0.04493346065282822, + -0.09698428958654404, + -0.0060568274930119514, + -0.01285100169479847, + -0.08543217927217484, + 0.03797939419746399, + 0.02666955068707466, + 0.02444051392376423, + 0.03603745996952057, + -0.03866969794034958, + -0.03636394813656807, + 0.00369829754345119, + -0.041131243109703064, + -0.06625508517026901, + 0.0003930005186703056, + -2.670540596101875e-33, + 0.03594810515642166, + 0.013611332513391972, + -0.057123176753520966, + 0.02793007902801037, + 0.029881829395890236, + 0.0202659722417593, + -0.014069752767682076, + 0.017849784344434738, + -0.09407731145620346, + 0.05878438428044319, + 0.06059553846716881, + 0.07448706775903702, + 0.0070973411202430725, + 0.15224890410900116, + 0.07995641231536865, + -0.06064850091934204, + 0.01809103600680828, + -0.009219054132699966, + -0.019058741629123688, + -0.029860155656933784, + -0.04636828228831291, + 0.1019611731171608, + -0.06543299555778503, + 0.017493342980742455, + 0.008869432844221592, + 0.0038072154857218266, + 0.02277912199497223, + -0.07065380364656448, + 0.0009828935144469142, + 0.04123598709702492, + -0.044870857149362564, + -0.029194623231887817, + 0.01500654686242342, + 0.002520991489291191, + -0.014137448742985725, + 0.018494928255677223, + -0.07630480825901031, + -0.008677714504301548, + -0.0066617983393371105, + 0.0393158383667469, + -0.009882446378469467, + -0.010981866158545017, + -0.0030389076564460993, + -0.06735982745885849, + 0.08752886205911636, + 0.05225493013858795, + -0.043765150010585785, + -0.03228476271033287, + -0.05918280407786369, + 0.022674212232232094, + 0.025957385078072548, + 0.06706449389457703, + 0.03550538420677185, + 0.049835190176963806, + -0.039233822375535965, + -0.021081900224089622, + -0.0007571369642391801, + 0.01635601744055748, + 0.013985201716423035, + 0.0702843964099884, + 0.024002807214856148, + 0.10405734181404114, + 0.07795149832963943, + -0.03944959118962288, + -0.023977437987923622, + 0.06063004955649376, + -0.011082489974796772, + -0.016380736604332924, + 0.048201657831668854, + 0.04339682310819626, + -0.11975191533565521, + 0.0889478325843811, + 0.03642910346388817, + 0.01811850257217884, + -0.024424346163868904, + 0.02953432872891426, + 0.029674997553229332, + -0.09395837038755417, + -0.0002593334938865155, + -0.048265695571899414, + -0.052816033363342285, + 0.018034424632787704, + -0.057650722563266754, + -0.00567815825343132, + -0.052242204546928406, + 0.05540451407432556, + -0.045085832476615906, + -0.04355784133076668, + -0.09296609461307526, + 0.01354158204048872, + 0.00644000293686986, + -0.05202169343829155, + -0.05157993361353874, + -0.005053847096860409, + -0.05026956647634506, + -7.239855472212564e-34, + -0.01633331924676895, + 0.02408500947058201, + -0.04638021066784859, + 0.008544881828129292, + -0.14900138974189758, + 0.008313504047691822, + -0.0009114855201914907, + -0.01930377446115017, + 0.018398063257336617, + 0.05132918059825897, + 0.06588441878557205, + 0.011660151183605194, + -0.006592467427253723, + -0.01676180399954319, + 0.04167415574193001, + 0.006373580079525709, + -0.09208057820796967, + 0.037572991102933884, + 0.02045384794473648, + 0.06988988816738129, + 0.01681387983262539, + 0.0711153969168663, + -0.07058951258659363, + -0.006679765414446592, + 0.047145355492830276, + 0.03695635497570038, + -0.052186787128448486, + 0.09291063994169235, + 0.03783803433179855, + -0.012059429660439491, + 0.004849431570619345, + 0.012188490480184555, + 0.010289388708770275, + -0.002137064468115568, + -0.002177839633077383, + -0.023717226460576057, + 0.07721535861492157, + -0.05020105838775635, + 0.05531143769621849, + -0.01364408154040575, + 0.047762028872966766, + -0.002989474916830659, + 0.004213798325508833, + 0.052593935281038284, + 0.011720276437699795, + 0.038637734949588776, + -0.04826398938894272, + 0.006774073466658592, + 0.04030419513583183, + -0.012638808228075504, + 0.07398897409439087, + 0.01099993847310543, + 0.029748128727078438, + 0.0032285465858876705, + -0.015462356619536877, + -0.032663457095623016, + -0.0714467391371727, + 0.0804380401968956, + 0.020635874941945076, + 0.04241470992565155, + -0.014095572754740715, + -0.0275439340621233, + 0.00837316270917654, + 0.004656071774661541, + -0.03030221536755562, + -0.08422908931970596, + -0.027693500742316246, + -0.005462057888507843, + -0.07073614001274109, + 0.0029461674857884645, + 0.0523148737847805, + 0.011247379705309868, + -0.038866788148880005, + -0.01525813713669777, + -0.061674512922763824, + -0.04133427515625954, + -0.012665901333093643, + -0.04404916986823082, + -0.06516563892364502, + 0.11663895100355148, + 0.001453639124520123, + 0.08498411625623703, + -0.0022858281154185534, + 0.07451248168945312, + -0.03978661820292473, + 0.040238067507743835, + 0.020078020170331, + -0.008680724538862705, + -0.02759353071451187, + -0.03284827992320061, + -0.036514729261398315, + 0.1096004843711853, + -0.02218719944357872, + 0.00847430806607008, + -0.06543846428394318, + -2.4590942615532185e-08, + 0.03823798522353172, + -0.10112600773572922, + -0.034347161650657654, + -0.0474863238632679, + 0.10896990448236465, + 0.004847791977226734, + -0.07872100919485092, + -0.1272512674331665, + -0.04606875032186508, + -0.07882574945688248, + 0.07010819762945175, + 0.010378701612353325, + -0.1183338612318039, + -0.0631776824593544, + 0.07386774569749832, + 0.010517887771129608, + -0.03712495416402817, + -0.07470791041851044, + -0.007824059575796127, + 0.0039120446890592575, + 0.025643805041909218, + 0.03906337171792984, + 0.02240937389433384, + -0.037252116948366165, + -0.057108402252197266, + -0.020884336903691292, + 0.021975215524435043, + 0.0034102951176464558, + 0.025920050218701363, + 0.0607270747423172, + 0.08139172196388245, + 0.09635743498802185, + 0.012638844549655914, + 0.008444849401712418, + -0.06821224093437195, + 0.006119565572589636, + -0.03054838627576828, + 0.05440821126103401, + -0.014533938840031624, + 0.021199915558099747, + -0.03373369202017784, + -0.009558669291436672, + -0.07106852531433105, + -0.020351706072688103, + -0.0504070520401001, + -0.05639692023396492, + 0.016364656388759613, + -0.04531613737344742, + -0.08848173916339874, + -0.11620602756738663, + -0.02636454440653324, + 0.07662589848041534, + -0.03566872328519821, + 0.08688967674970627, + -0.04005885496735573, + 0.006636644247919321, + -0.11922654509544373, + 0.005854906979948282, + -0.024187181144952774, + 0.1107354536652565, + 0.022810691967606544, + -0.02775420993566513, + 0.08270971477031708, + -0.016808560118079185 + ], + "binoculars-bold||telescope,glasses,search,find,explore": [ + 0.03894836828112602, + -0.06413594633340836, + -0.024540847167372704, + 0.022177688777446747, + 0.002088268054649234, + -0.08284103125333786, + 0.06041231378912926, + -0.04518931359052658, + -0.019895968958735466, + 0.032771144062280655, + -0.011329736560583115, + -0.045170776546001434, + 0.01685081608593464, + 0.0009430635836906731, + -0.017924748361110687, + 0.035839516669511795, + 0.003334989305585623, + -0.043516188859939575, + 0.016120415180921555, + 0.03613710775971413, + -0.02593134343624115, + 0.07549168169498444, + 0.03430647775530815, + 0.07396607100963593, + 0.06565535813570023, + 0.04001631587743759, + 0.007317087613046169, + -0.06897681206464767, + -0.005054434295743704, + -0.036354001611471176, + -0.0156694483011961, + 0.03678475692868233, + 0.051332373172044754, + -0.0025655829813331366, + 0.053817011415958405, + 0.03496144711971283, + -0.05939999967813492, + -0.08327169716358185, + -0.0003957696899306029, + -0.021471183747053146, + -0.02979743853211403, + -0.0022906840313225985, + 0.0035866189282387495, + -0.015616516582667828, + -0.009461095556616783, + -0.0076706064864993095, + 0.015997137874364853, + 0.009297347627580166, + 0.07937091588973999, + -0.008919001556932926, + -0.08451787382364273, + -0.11476071178913116, + -0.1571483016014099, + -0.08648477494716644, + 0.04343363270163536, + 0.06556586921215057, + -0.10657995939254761, + -0.06288990378379822, + 0.0525205135345459, + -0.0010373623808845878, + 0.0875362828373909, + -0.009642724879086018, + 0.009234457276761532, + 0.04594791308045387, + -0.012933667749166489, + 0.0515311099588871, + -0.05968104302883148, + -0.06918574869632721, + 0.06485351175069809, + -0.01784094236791134, + -0.015874285250902176, + 0.018956506624817848, + -0.021419504657387733, + -0.054842766374349594, + 0.009143871255218983, + -0.01826157607138157, + 0.0956706553697586, + -0.09234923869371414, + 0.011687558144330978, + -0.059087082743644714, + -0.07700689882040024, + -0.045100267976522446, + -0.02579091116786003, + 0.01324788574129343, + -0.0004963810206390917, + 0.0043651950545609, + -0.09873809665441513, + -0.043278686702251434, + 0.020514780655503273, + -0.12071043252944946, + -0.01847798563539982, + -0.06835214048624039, + -0.11824125051498413, + -0.025064965710043907, + -0.05980266258120537, + -0.03390070050954819, + 0.06477103382349014, + 0.019872276112437248, + -0.013722636736929417, + 0.07075298577547073, + 0.13343341648578644, + 0.05361403897404671, + 0.06364575028419495, + 0.0343809574842453, + -0.07212280482053757, + 0.015080254524946213, + 0.009802761487662792, + -0.027346055954694748, + 0.030196301639080048, + 0.015352655202150345, + -0.036809392273426056, + -0.03731194883584976, + -0.012784533202648163, + -0.02714136242866516, + -0.09127744287252426, + 0.008463956415653229, + -0.06392768025398254, + 0.029565710574388504, + 0.0803125873208046, + 0.0351022444665432, + -0.009052098728716373, + -0.0074586570262908936, + 0.040391094982624054, + 0.04498817026615143, + 0.026808148249983788, + 0.05001762509346008, + -0.05543079599738121, + -3.598298043120427e-33, + 0.056271474808454514, + 0.03189479187130928, + 0.04448341950774193, + 0.09381836652755737, + 0.00934202317148447, + 0.028157200664281845, + -0.031269270926713943, + 0.06384887546300888, + -0.026011284440755844, + 0.0274127759039402, + -0.006048830226063728, + 0.06735457479953766, + -0.008094468154013157, + 0.017584918066859245, + 0.10883268713951111, + -0.0551704540848732, + 0.04491565749049187, + 0.009223931469023228, + -0.12607306241989136, + -0.016690092161297798, + -0.11462009698152542, + 0.0022624318953603506, + -0.04932112991809845, + -0.01055712066590786, + 0.04546060785651207, + 0.0012354430509731174, + 0.013199853710830212, + -0.04265723004937172, + -0.04126601293683052, + 0.04107525944709778, + 0.05871305987238884, + 0.03885551542043686, + -0.03270205855369568, + 0.00855499878525734, + -0.05859918147325516, + 0.021798959001898766, + -0.06592945754528046, + 0.0376526340842247, + 0.0059146033599972725, + 0.02906479686498642, + -0.047615475952625275, + 0.0631624162197113, + -0.0247520562261343, + -0.01427107397466898, + -0.0015655686147511005, + 0.0911954715847969, + -0.03190287575125694, + 0.025214379653334618, + -0.033535659313201904, + 0.03361997753381729, + 0.024164719507098198, + -0.043070923537015915, + -0.0779392346739769, + -0.07385740429162979, + 0.034793026745319366, + 0.036796025931835175, + -0.030029233545064926, + 0.04619763791561127, + -0.020811835303902626, + -0.06075237691402435, + 0.059517599642276764, + -0.05212048441171646, + 0.024302082136273384, + 0.009509298950433731, + -0.033115360885858536, + 0.0775403082370758, + 0.016559047624468803, + 0.04126393795013428, + 0.038247279822826385, + 0.037383805960416794, + -0.032878778874874115, + 0.037165168672800064, + 0.0630883127450943, + 0.011470966972410679, + 0.06636058539152145, + 0.005548729095607996, + 0.008985195308923721, + -0.011051351204514503, + 0.045948855578899384, + -0.04811631143093109, + -0.06673802435398102, + 0.0011710228864103556, + -0.020894642919301987, + 0.019633492454886436, + 0.0007029574480839074, + -0.032534513622522354, + -0.002802235074341297, + -0.14076705276966095, + 0.029699109494686127, + 0.012909372337162495, + -0.02615443617105484, + 0.02872174233198166, + -0.09809735417366028, + -0.05853421986103058, + -0.1252308189868927, + 8.617254293935523e-34, + 0.06538940966129303, + -0.05165679752826691, + 0.01710078865289688, + -0.10006585717201233, + -0.006031182128936052, + -0.0024175290018320084, + 0.030452637001872063, + -0.030499108135700226, + 0.008381729014217854, + -0.010927790775895119, + -0.030542301014065742, + -0.01268245093524456, + -0.03345971927046776, + -0.09685225039720535, + -0.03772411867976189, + 0.022115672007203102, + 0.049716491252183914, + 0.014682929031550884, + -0.024720272049307823, + 0.04373786225914955, + 0.031319472938776016, + 0.013169778510928154, + -0.01810443215072155, + -0.07063263654708862, + -0.040993694216012955, + 0.05920033901929855, + 0.01897195167839527, + -0.04370657727122307, + -0.06268829852342606, + 0.003746484871953726, + -0.06998016685247421, + -0.05637822300195694, + 0.030741453170776367, + 0.0365409180521965, + -0.035609886050224304, + 0.06757944077253342, + 0.02343662455677986, + -0.10275958478450775, + -0.023252233862876892, + -0.01976592279970646, + -0.06750765442848206, + 0.08066050708293915, + 0.06386444717645645, + 0.018885744735598564, + 0.02663726918399334, + -0.049493640661239624, + -0.004951761569827795, + 0.06554354727268219, + -0.06399175524711609, + 0.023214498534798622, + 0.03617657721042633, + -0.022553501650691032, + 0.008560472168028355, + -0.02494407631456852, + -0.05421958863735199, + -0.00310500361956656, + -0.06598410755395889, + 0.009391410276293755, + 0.060616835951805115, + -0.002669016132131219, + -0.006155039183795452, + -0.00945380050688982, + -0.09557481855154037, + 0.10894948989152908, + -0.020311376079916954, + 0.0041430555284023285, + -0.010844308882951736, + 0.03610016033053398, + 0.033266838639974594, + 0.039791885763406754, + 0.014478106051683426, + -0.08079571276903152, + 0.0149072902277112, + 0.021243205294013023, + 0.04739506542682648, + 0.030832964926958084, + 0.028499534353613853, + 0.011603672988712788, + 0.08768951892852783, + 0.05582333728671074, + -0.0029107434675097466, + 0.017117230221629143, + 0.05580965802073479, + 0.14966578781604767, + 0.020015645772218704, + 0.011645418591797352, + 0.000536770501639694, + 0.004225677344948053, + -0.005901228170841932, + -0.014757851138710976, + -0.017573406919836998, + 0.0021958467550575733, + 0.011067353188991547, + 0.05202159285545349, + 0.04776569828391075, + -1.6954816217662483e-08, + -0.021075839176774025, + 0.05799885839223862, + -0.058689530938863754, + 0.010480498895049095, + 0.07641144841909409, + -0.03482651337981224, + -0.06942788511514664, + 0.04780084639787674, + -0.08661821484565735, + -0.06331730633974075, + -0.00855309795588255, + 0.004206506069749594, + -0.04949796572327614, + 0.014191441237926483, + 0.05427362769842148, + -0.016420980915427208, + -0.02441297098994255, + 0.012562927789986134, + -0.03320307284593582, + 0.004012825433164835, + -0.0010420770850032568, + 0.06033097952604294, + 0.12820544838905334, + 0.007486279588192701, + -0.0028940942138433456, + 0.08467408269643784, + -0.07849445194005966, + 0.03551117703318596, + 0.07648514211177826, + 0.08203188329935074, + 0.02295217476785183, + 0.048087719827890396, + -0.01453043520450592, + 0.032756343483924866, + -0.06755387037992477, + -0.07786988466978073, + -0.09033522754907608, + 0.033294081687927246, + 0.011874385178089142, + 0.11674094200134277, + -0.005055259447544813, + -0.08319175988435745, + 0.05233195424079895, + 0.04031480476260185, + -0.034783534705638885, + 0.07954831421375275, + 0.09624169766902924, + -0.05897398293018341, + -0.05677225440740585, + -0.07281617820262909, + -0.009053253568708897, + 0.027918756008148193, + 0.057853326201438904, + 0.02595178782939911, + -0.09507311880588531, + -0.03483409062027931, + 0.07155582308769226, + 0.017815152183175087, + -0.11143682897090912, + 0.035634078085422516, + 0.07238162308931351, + 0.008471216075122356, + -0.08445705473423004, + 0.005297482945024967 + ], + "biohazard-bold||*new*,contamination,quarantine,toxic,poison,danger,caution": [ + -0.024304984137415886, + 0.0183535385876894, + -0.016651904210448265, + -0.023898938670754433, + 0.08603397756814957, + -0.022137336432933807, + 0.0741899386048317, + 0.05481680482625961, + -0.05614331737160683, + 0.022792687639594078, + 0.08784309774637222, + -0.018753530457615852, + 0.05202626436948776, + 0.04695736616849899, + -0.14394988119602203, + 0.008773775771260262, + 0.010222164914011955, + -0.05784134939312935, + -0.05169287323951721, + 0.10388388484716415, + -0.020921407267451286, + 0.10297989845275879, + -0.00033613896812312305, + 0.01621517352759838, + -0.027468491345643997, + 0.017295096069574356, + -0.012691713869571686, + 0.021188467741012573, + 0.013531683944165707, + -0.06564082950353622, + -0.0057053035125136375, + 0.03345564380288124, + 0.061706557869911194, + -0.08303838223218918, + 0.1189965009689331, + 0.005212514195591211, + 0.017702331766486168, + -0.011548938229680061, + 0.02495475485920906, + 0.06626006215810776, + -0.021399445831775665, + -0.05437707155942917, + -0.02234129048883915, + 0.08323870599269867, + -0.06317362934350967, + -0.026468340307474136, + -0.08064800500869751, + -0.05328791216015816, + 0.06701146066188812, + -0.013389102183282375, + -0.014346950687468052, + -0.09283743053674698, + -0.10354745388031006, + 0.024581801146268845, + 0.07278092205524445, + -0.10919050872325897, + -0.041009414941072464, + -0.06273163855075836, + -0.0800345242023468, + -0.0594571977853775, + 0.02053161896765232, + 0.008191630244255066, + 0.041649315506219864, + 0.035481810569763184, + 0.039934419095516205, + -0.07598842680454254, + -0.0375947505235672, + 0.016519103199243546, + 0.11016455292701721, + 0.03542625531554222, + -0.03330286219716072, + -0.04279901832342148, + 0.01994338259100914, + 0.0009379179100506008, + -0.05301789566874504, + 0.03342479467391968, + 0.0614103302359581, + -0.005056608933955431, + -0.020426522940397263, + -0.04199155420064926, + -0.04396507889032364, + -0.04121476784348488, + 0.06798464804887772, + -0.02238444797694683, + -0.019489992409944534, + 0.041595276445150375, + -0.08705287426710129, + -0.040777914226055145, + -0.020983967930078506, + 0.014901592396199703, + 0.008465196937322617, + 0.018885107710957527, + 0.13404157757759094, + -0.009208816103637218, + -0.018514735624194145, + 0.07972511649131775, + 0.0024796619545668364, + -0.037587057799100876, + 0.040342509746551514, + 0.03993697091937065, + -0.01805448904633522, + -0.02807009592652321, + -0.05808403715491295, + 0.02771739289164543, + -0.0026626705657690763, + -0.06393817812204361, + -0.06635202467441559, + -0.04681722819805145, + 0.02079024538397789, + 0.028657622635364532, + -0.009769686497747898, + 0.0280674509704113, + 0.04897181689739227, + -0.01611657813191414, + 0.016742032021284103, + 0.08785957098007202, + -0.02213050238788128, + -0.053075674921274185, + 0.015372427180409431, + 0.03159894421696663, + 0.04369247704744339, + -0.05975464731454849, + -0.006642764434218407, + -0.06195598840713501, + 0.01265002228319645, + 0.011605435982346535, + 0.043206069618463516, + -3.0596896539805243e-33, + 0.11060218513011932, + 0.042456358671188354, + -0.03629786893725395, + 0.07834979891777039, + 0.06956619024276733, + -0.03111407347023487, + -0.05833837017416954, + -0.06746343523263931, + -0.00608137296512723, + 0.05913907289505005, + 0.026273906230926514, + -0.0006091970135457814, + -0.029487263411283493, + 0.02487226203083992, + -0.03848070278763771, + 0.02647405117750168, + -0.06020249053835869, + -0.00650818133726716, + -0.048753101378679276, + -0.021302778273820877, + -0.033784884959459305, + -0.012303825467824936, + -0.056947942823171616, + 0.02398543991148472, + 0.0023040634114295244, + 0.02837175875902176, + -0.05006948113441467, + 0.010523355565965176, + 0.013047821819782257, + 0.03673272952437401, + -0.0015596493612974882, + 0.02426729165017605, + 0.0032786750234663486, + -0.03196783363819122, + -0.038965363055467606, + 0.03536253422498703, + -0.0890069305896759, + -0.019550928846001625, + -0.05221012607216835, + -0.03113715723156929, + -0.01087574940174818, + -0.028331806883215904, + 0.05674416944384575, + 0.040311526507139206, + 0.11196358501911163, + -0.008807954378426075, + -0.08775554597377777, + 0.010175074450671673, + 0.006920129992067814, + -0.026842281222343445, + -0.027705436572432518, + -0.02746466174721718, + 0.057774368673563004, + -0.005074149463325739, + -0.06836888939142227, + 0.02275758981704712, + -0.01311357319355011, + 0.04681055247783661, + 0.0050409939140081406, + 0.032517388463020325, + 0.08884111046791077, + 0.12562300264835358, + -0.019855177029967308, + 0.032049261033535004, + 0.043204523622989655, + -0.06378062069416046, + 0.028475632891058922, + 0.02224435657262802, + 0.08297692984342575, + -0.0070114280097186565, + -0.057370707392692566, + 0.03666835278272629, + 0.004305295646190643, + 0.036461472511291504, + -0.03226389363408089, + -0.00610725162550807, + 0.006211209576576948, + -0.017891114577651024, + -0.004176359623670578, + -0.0705186203122139, + -0.07800569385290146, + -0.046971406787633896, + -0.017043037340044975, + 0.08107107877731323, + -0.04052496701478958, + 0.030643077567219734, + 0.004691621754318476, + -0.03397955372929573, + -0.061066485941410065, + 0.07002709805965424, + -0.028266631066799164, + -0.034332990646362305, + -0.04378805682063103, + -0.0408819206058979, + -0.07890886068344116, + -1.0083483295204702e-33, + 0.0835716500878334, + -0.00806332752108574, + -0.032711211591959, + -0.030592767521739006, + -0.04169805720448494, + -0.017164554446935654, + -0.03103984333574772, + 0.07422243803739548, + 0.08615151792764664, + -0.020476333796977997, + -0.07327196002006531, + 0.06866952031850815, + 0.040366560220718384, + -0.028456347063183784, + 0.020339960232377052, + 0.027582377195358276, + -0.03974839672446251, + -0.002443574834614992, + -0.07365037500858307, + 0.012474502436816692, + -0.03423481434583664, + -0.043786607682704926, + -0.08971092104911804, + 0.03164268285036087, + -0.019128944724798203, + 0.06989788264036179, + 0.019689733162522316, + -0.01959020271897316, + -0.03840009495615959, + -0.03716595843434334, + -0.01882360875606537, + 0.03853238746523857, + 0.031233493238687515, + 0.06656134128570557, + -0.04451709985733032, + -0.009495988488197327, + 0.08155779540538788, + -0.16823431849479675, + -0.01608634553849697, + -0.09044872224330902, + 0.059863533824682236, + 0.03073660470545292, + 0.02414889633655548, + 0.07061797380447388, + -0.010220300406217575, + 0.02568184584379196, + -0.028581051155924797, + -0.00038590168696828187, + 0.03348720446228981, + 0.025264469906687737, + 0.03834078833460808, + 0.011787786148488522, + -0.048568110913038254, + 0.026784934103488922, + -0.02117001824080944, + 0.03794819489121437, + 0.030493460595607758, + -0.0553024597465992, + -0.020639270544052124, + 0.07434754073619843, + 0.0170576274394989, + 0.07833484560251236, + -0.14225709438323975, + 0.07844923436641693, + -0.006158475298434496, + -0.02198437787592411, + -0.02056148275732994, + 0.0016967373667284846, + -0.018443694338202477, + -0.03865259140729904, + 0.01168817188590765, + 0.06856600940227509, + -0.09847793728113174, + -0.12652108073234558, + -0.01401275210082531, + -0.05565280094742775, + -0.01744993031024933, + -0.006408579647541046, + -0.03234705328941345, + 0.06922042369842529, + 0.03665642440319061, + -0.03250527009367943, + -0.004994975868612528, + 0.06546760350465775, + 0.05228802561759949, + -0.04969382658600807, + -0.0025077674072235823, + 0.014969642274081707, + -0.036673907190561295, + -0.05642792955040932, + -0.07776080816984177, + 0.0002744412049651146, + -0.029888160526752472, + -0.007496676407754421, + -0.04118428751826286, + -2.4186865843489613e-08, + 0.048442959785461426, + 0.05845815688371658, + -0.05183744803071022, + -0.038190070539712906, + 0.07912100851535797, + -0.08261007070541382, + -0.11449415236711502, + 0.02351262979209423, + -0.03381916135549545, + 0.03050302341580391, + -0.03764519467949867, + 0.05972959101200104, + -0.055164825171232224, + -0.014528770931065083, + 0.04608777165412903, + -0.026603948324918747, + -0.08606202155351639, + 0.00587444007396698, + -0.06436138600111008, + -0.05251390486955643, + -0.07752854377031326, + 0.01481261570006609, + 0.011079437099397182, + 0.006255636923015118, + 0.016369488090276718, + 0.07617826014757156, + 0.0375213697552681, + 0.012316246517002583, + 0.05755586549639702, + 0.05052302032709122, + 0.021589236333966255, + 0.0646963119506836, + -0.03356429934501648, + 0.051343586295843124, + -0.12862670421600342, + -0.0252035204321146, + 0.07910403609275818, + -0.04554825276136398, + 0.047089774161577225, + 0.04530709981918335, + 0.026976553723216057, + -0.03922106698155403, + -0.05043197050690651, + 0.016086557880043983, + -0.03990798443555832, + -0.054159827530384064, + -0.031048620119690895, + 0.021553421393036842, + 0.0011983156437054276, + -0.1442939043045044, + 0.04474027827382088, + -0.04003159701824188, + 0.002261584624648094, + 0.10631612688302994, + 0.013990833424031734, + 0.045509982854127884, + 0.08299583196640015, + 0.034596193581819534, + 0.030340366065502167, + 0.00984322652220726, + 0.10758893191814423, + -0.00244522443972528, + 0.10481823235750198, + -0.0012455296237021685 + ], + "bird-bold||*updated*,animals,pets": [ + -0.00335669401101768, + 0.0016739378916099668, + 0.0390448272228241, + 0.028655463829636574, + 0.02643817849457264, + -0.02991262637078762, + 0.04559871926903725, + -0.12902019917964935, + 0.04213856905698776, + 0.02075161412358284, + -0.002778475172817707, + -0.01938416063785553, + -0.028022922575473785, + -0.006471259519457817, + -0.02044486068189144, + 0.07484781742095947, + 0.01522119902074337, + 0.02043321542441845, + 0.007544533349573612, + -0.013497253879904747, + -0.08898414671421051, + 0.09928721189498901, + 0.0679607167840004, + 0.08776543289422989, + -0.017473004758358, + 0.04855450987815857, + -0.049463704228401184, + -0.02846566215157509, + -0.03903474286198616, + -0.06401969492435455, + -0.027053555473685265, + 0.03613201901316643, + 0.08162598311901093, + 0.04694173485040665, + 0.011956059373915195, + 0.006875729653984308, + -0.017762649804353714, + -0.034986529499292374, + 0.05607965216040611, + 0.05654510483145714, + 0.05640995502471924, + -0.07458774745464325, + -0.011894525960087776, + -0.007583552040159702, + -0.08888348937034607, + -0.018035579472780228, + -0.12558366358280182, + -0.036939676851034164, + 0.04901989921927452, + 0.0018391183111816645, + -0.08037461340427399, + -0.10400094836950302, + -0.14003096520900726, + 0.01770823448896408, + 0.020017484202980995, + 0.04636399447917938, + -0.04366224259138107, + -0.059413839131593704, + 0.007864333689212799, + -0.07655563205480576, + 0.03421427309513092, + 0.058110084384679794, + 0.08236220479011536, + 0.07021871209144592, + 0.02279290370643139, + -0.028137804940342903, + -0.041410621255636215, + -0.026344291865825653, + 0.03093567304313183, + 0.022661885246634483, + 0.058067020028829575, + 0.0236195158213377, + 0.005800399463623762, + -0.07378742098808289, + -0.12096446007490158, + 0.015194681473076344, + 0.05455322191119194, + -0.0005558088305406272, + 0.07721403986215591, + -0.09690950065851212, + -0.028866000473499298, + -0.10779397934675217, + -0.02954513020813465, + -0.061648815870285034, + 0.11173098534345627, + 0.022067854180932045, + -0.07919593155384064, + -0.07915446907281876, + -0.13772591948509216, + -0.049806319177150726, + -0.039113517850637436, + -0.05155036225914955, + 0.05167713388800621, + 0.008870631456375122, + -0.027444619685411453, + 0.03411317244172096, + 0.04575464874505997, + -0.06891033798456192, + -0.04872416704893112, + 0.09352757036685944, + 0.0027010710909962654, + 0.029693422839045525, + -0.009188665077090263, + -0.02704693004488945, + 0.01495977584272623, + -0.024135056883096695, + -0.031443241983652115, + 0.007673432119190693, + -0.0012820143019780517, + 0.007359405513852835, + -0.031135940924286842, + -0.050993215292692184, + -0.03948730230331421, + 0.0011459904490038753, + -0.0335967056453228, + -0.02555898018181324, + -0.047967735677957535, + -0.06607537716627121, + 0.051405299454927444, + 0.04960530251264572, + 0.05505917966365814, + -0.04459014907479286, + -0.05751803517341614, + -0.04237077012658119, + 0.004402879625558853, + 0.01834132894873619, + -0.020334938541054726, + -3.210505762862016e-33, + 0.07355938106775284, + -0.007477877661585808, + 0.006491200067102909, + 0.06979689747095108, + 0.07738037407398224, + -7.518560596508905e-05, + -0.07452007383108139, + -0.041531048715114594, + -0.11561929434537888, + -0.0008177370764315128, + -0.031028958037495613, + 0.07152222841978073, + -0.04243575781583786, + 0.04710900038480759, + 0.055479660630226135, + -0.06840505450963974, + 0.04906461760401726, + -0.021550113335251808, + 0.03524445742368698, + 0.010810162872076035, + -0.06573530286550522, + 0.060960590839385986, + -0.03828189894556999, + -0.013680556789040565, + -0.0017522170674055815, + -0.04369854927062988, + -0.043281350284814835, + -0.0848078578710556, + -0.024535436183214188, + 0.04957854375243187, + 0.06444142758846283, + -0.02602590061724186, + 0.05433239787817001, + 0.025323789566755295, + -0.10722719877958298, + -0.038029614835977554, + -0.08421878516674042, + -0.12854763865470886, + -0.03500213101506233, + 0.04738976061344147, + 0.04180465266108513, + -0.026935288682579994, + 0.016476185992360115, + 0.005984863732010126, + 0.010955902747809887, + 0.08654079586267471, + -0.05804850161075592, + -0.012464269995689392, + -0.006222609430551529, + 0.056165844202041626, + 0.017862509936094284, + 0.0022073204163461924, + -0.03181171044707298, + -0.04707624018192291, + -0.054414406418800354, + 0.002312834607437253, + 0.013279380276799202, + 0.028780821710824966, + -0.02865985594689846, + 0.0003069114754907787, + 0.004082126542925835, + -0.010512310080230236, + 0.08916885405778885, + -0.0868852287530899, + 0.1184399276971817, + -0.02207857370376587, + -0.02748170867562294, + 0.05657750740647316, + 0.007359600625932217, + 0.042182859033346176, + -0.0022663655690848827, + 0.05493081361055374, + 0.03553042933344841, + -0.054688990116119385, + -0.04273181036114693, + 0.02098529040813446, + -0.015643304213881493, + -0.012228595092892647, + 0.007699847687035799, + -0.06733296811580658, + -0.045913215726614, + 0.06756796687841415, + -0.043382033705711365, + 0.12737910449504852, + 0.009217881597578526, + 0.04131697118282318, + 0.022516245022416115, + -0.04965734854340553, + -0.007832753472030163, + 0.04896830394864082, + -0.004967657383531332, + 0.03133944422006607, + -0.028743237257003784, + -0.09764241427183151, + -0.06598395109176636, + -3.5250584543327117e-34, + 0.039470650255680084, + 0.007888250052928925, + -0.06524409353733063, + -0.013632317073643208, + -0.045050181448459625, + -0.0027357584331184626, + -0.019617481157183647, + 0.0775703564286232, + 0.044096074998378754, + -0.007035490591078997, + -0.05190982297062874, + 0.018287915736436844, + -0.008014953695237637, + -0.08527754247188568, + 0.00674930214881897, + 0.0482536181807518, + -0.027123119682073593, + -0.009455091319978237, + 0.0293453186750412, + -0.014546222984790802, + -0.08750441670417786, + -0.027245447039604187, + -0.02078963629901409, + 0.0925411581993103, + 0.019966062158346176, + 0.023526877164840698, + 0.04996708407998085, + -0.011858067475259304, + -0.017316197976469994, + -0.10978347808122635, + -0.0535987950861454, + -0.039891231805086136, + -0.017446784302592278, + 0.046698279678821564, + -0.007295798975974321, + 0.0650179386138916, + 0.04724881052970886, + -0.1156320720911026, + -0.0009348375024273992, + 0.03940731659531593, + 0.029899870976805687, + 0.05460039898753166, + -0.04671741649508476, + 0.011900549754500389, + 0.0176389180123806, + 0.013521500863134861, + -0.0228747371584177, + 0.02127787284553051, + -0.04211248457431793, + 0.0629616379737854, + 0.047369275242090225, + -0.0696701928973198, + 0.0014465628191828728, + 0.0009998215828090906, + 0.007099485490471125, + 0.011875745840370655, + -0.008441770449280739, + -0.008699636906385422, + 0.017762282863259315, + 0.03802662342786789, + -0.0400717668235302, + 0.08062605559825897, + -0.025964366272091866, + 0.04952710121870041, + -0.03531208261847496, + -0.04423602297902107, + -0.02839234657585621, + -0.05585339292883873, + 0.08129744976758957, + -0.07373598963022232, + 0.07405273616313934, + 0.038287948817014694, + -0.0916433334350586, + 0.027910413220524788, + 0.03949006646871567, + 0.023970402777194977, + 0.059087496250867844, + -0.010954546742141247, + 0.0344957634806633, + 0.05017818138003349, + -0.028487399220466614, + -0.032095231115818024, + -0.011823181994259357, + 0.07431421428918839, + -0.0009157277527265251, + 0.03753678873181343, + -0.005740020424127579, + 0.08606582134962082, + 0.015536310151219368, + -0.025788813829421997, + -0.030157094821333885, + 0.06493355333805084, + -4.727897612610832e-05, + -0.0034782197326421738, + -0.05463758856058121, + -2.015703870483776e-08, + -0.013402683660387993, + 0.01245851069688797, + -0.08364318311214447, + -0.010978326201438904, + 0.10705577582120895, + -0.016235066577792168, + -0.031988732516765594, + -0.11212089657783508, + -0.0437358133494854, + -0.004475639201700687, + 0.04968700930476189, + -0.04749616980552673, + 0.0036885212175548077, + -0.019264178350567818, + 0.09232044219970703, + 0.03188427537679672, + -0.022765453904867172, + 0.044080428779125214, + -0.012148654088377953, + -0.0008702752529643476, + -0.09980066120624542, + 0.09098241478204727, + 0.008296824060380459, + -0.05884980037808418, + 0.023027442395687103, + -0.023477647453546524, + -0.048569951206445694, + -0.0029206841718405485, + 0.02291129343211651, + 0.05742628499865532, + 0.008171860128641129, + 0.0803128331899643, + 0.0073555465787649155, + 0.04738001152873039, + -0.013517558574676514, + -0.05995398014783859, + 0.027552301064133644, + 0.004704159218817949, + 0.0546644926071167, + 0.11543012410402298, + 0.047315195202827454, + 0.05906372517347336, + 0.010847151279449463, + -0.045882899314165115, + -0.014226733706891537, + 0.00045731518184766173, + 0.10468804091215134, + -0.06454378366470337, + -0.050972212105989456, + -0.09818930923938751, + -0.04090415686368942, + 0.009146342985332012, + 0.03909793496131897, + 0.04077203571796417, + -0.05604162439703941, + -0.02891187183558941, + 0.008105813525617123, + 0.02630440704524517, + 0.044498261064291, + 0.021746061742305756, + 0.12664926052093506, + 0.0033764028921723366, + 0.016225798055529594, + 0.06320615112781525 + ], + "blueprint-bold||*new*,architecture,layout,floorplan,building,construction": [ + -0.04531986638903618, + 0.011761241592466831, + -0.03183718025684357, + 0.02104244939982891, + 0.03371598944067955, + -0.010890445671975613, + -0.036461394280195236, + -0.039572764188051224, + -0.0534660629928112, + -0.022216863930225372, + 0.029107214882969856, + 0.004893326200544834, + 0.0538741871714592, + -0.036313921213150024, + 0.011215336620807648, + 0.0408199205994606, + 0.02767256833612919, + 0.00633633229881525, + -0.01052007358521223, + 0.02020224556326866, + 0.016680622473359108, + 0.027849458158016205, + 0.0015022896695882082, + 0.027257535606622696, + 0.03231978788971901, + 0.049363624304533005, + 0.0599505789577961, + 0.05023884400725365, + 0.08508974313735962, + -0.06898562610149384, + 0.012133697047829628, + 0.08976622670888901, + 0.19171331822872162, + 0.021103600040078163, + 0.1562938541173935, + 0.04714745655655861, + 0.026882806792855263, + 0.030132649466395378, + 0.021153325214982033, + -0.0043015568517148495, + -0.04774469509720802, + -0.033219125121831894, + 0.003779139369726181, + 0.0348348468542099, + -0.010026752017438412, + 0.0035595472436398268, + -0.13366247713565826, + -0.04986671358346939, + 0.025710375979542732, + -0.0053330352529883385, + -0.0182926207780838, + -0.03439237177371979, + -0.0711129903793335, + -0.0302730780094862, + 0.017350204288959503, + 0.04255878925323486, + -0.045356933027505875, + -0.03730298951268196, + 0.029782893136143684, + -0.04580949246883392, + 0.04856826737523079, + 0.07139811664819717, + -0.035713277757167816, + 0.0260940995067358, + 0.0814228504896164, + 0.06167171522974968, + -0.11801356077194214, + 0.00902341865003109, + -0.05685902386903763, + -0.010390913113951683, + 0.0634869709610939, + -0.06858689337968826, + 0.07305802404880524, + -0.029700210317969322, + 0.031217852607369423, + -0.03366241231560707, + 0.030495548620820045, + -0.010891290381550789, + -0.053295981138944626, + -0.11954651027917862, + -0.061343465000391006, + -0.032533761113882065, + -0.049444109201431274, + 0.07372511923313141, + -0.02736872062087059, + 0.048700135201215744, + -0.03387198969721794, + 0.008213410153985023, + -0.022591236978769302, + -0.023360563442111015, + 0.01629449985921383, + -0.033007580786943436, + -0.07873737066984177, + 0.0029645352624356747, + -0.026845820248126984, + 0.05723423883318901, + -0.035513367503881454, + -0.08326491713523865, + -0.00880938209593296, + 0.05483502522110939, + -0.06386605650186539, + 0.03126811608672142, + 0.06305226683616638, + -0.03043844923377037, + -0.05655185878276825, + -0.06304728984832764, + -0.017057957127690315, + -0.028688274323940277, + -0.011965598911046982, + -0.0021559391170740128, + 0.04141338914632797, + -0.10405939072370529, + -0.04827064275741577, + -0.03744576871395111, + -0.010944376699626446, + -0.046185269951820374, + -0.020486420020461082, + -0.053566377609968185, + 0.08057212829589844, + 0.014747101813554764, + 0.0880439430475235, + -0.04041995108127594, + -0.034302424639463425, + -0.05615787208080292, + -0.08593092858791351, + -0.04695207625627518, + -0.0359848253428936, + -1.783481702244668e-33, + 0.07475300878286362, + 0.08200546354055405, + -0.07511067390441895, + 0.1347774863243103, + 0.07542802393436432, + -0.005129879340529442, + -0.002849493408575654, + -0.016787312924861908, + -0.06076547130942345, + 0.06477804481983185, + 0.07111825048923492, + 0.023979274556040764, + -0.030211202800273895, + 0.10174944996833801, + 0.06900296360254288, + -0.05378013476729393, + -0.011058101430535316, + 0.05110395699739456, + -0.10912539809942245, + 0.055273812264204025, + -0.048240210860967636, + 0.042462289333343506, + 0.00398600660264492, + -0.03126000985503197, + 0.08503101766109467, + -0.0158225130289793, + 0.043953537940979004, + 0.009106971323490143, + -0.1464039832353592, + 0.018703395500779152, + 0.03190422058105469, + 0.08407746255397797, + 0.02522747963666916, + 0.0593450553715229, + -0.07296919077634811, + 0.04206910729408264, + -0.03700289875268936, + -0.05820878967642784, + -0.026983754709362984, + 0.013061362318694592, + -0.07931080460548401, + 0.009278764016926289, + -0.030550219118595123, + -0.0018091402016580105, + 0.1248767226934433, + 0.08651982247829437, + -0.0324704609811306, + -0.06305144727230072, + 0.0838879868388176, + 0.006496380548924208, + -0.015196405351161957, + 0.05065586417913437, + -0.016369441524147987, + 0.00733748497441411, + 0.022415732964873314, + -0.08377386629581451, + -0.006842964328825474, + -0.003907100763171911, + 0.0655408650636673, + 0.05088220536708832, + 0.0005946272285655141, + 0.07449660450220108, + -0.016778023913502693, + 0.08953482657670975, + -0.013169972226023674, + 0.0009731532773002982, + -0.037025172263383865, + 0.010580219328403473, + 0.09964098036289215, + -0.045405153185129166, + -0.005060300696641207, + 0.012070935219526291, + 0.03312908485531807, + 0.05163025110960007, + -0.009209273383021355, + -0.01680523157119751, + -0.04571540653705597, + 0.03621150180697441, + -0.03444891795516014, + -0.03995624929666519, + -0.09211976826190948, + 0.07084931433200836, + -0.03096306324005127, + 0.026200158521533012, + 0.06822207570075989, + 0.017523376271128654, + 0.03574718162417412, + -0.008707971312105656, + -0.026170235127210617, + 0.017086518928408623, + -0.08315914124250412, + -0.04264475032687187, + -0.021554088220000267, + -0.05526493117213249, + -0.07147078961133957, + -7.746324100926559e-34, + -0.033946845680475235, + 0.0046035670675337315, + -0.06608371436595917, + -0.04845642298460007, + -0.08517049252986908, + -0.0021203577052801847, + -0.0003035970439668745, + -0.022529102861881256, + 0.026345089077949524, + 0.08698487281799316, + 0.06050591170787811, + 0.043320465832948685, + 0.01510748639702797, + -0.031142622232437134, + -0.0465325266122818, + 0.029674818739295006, + 0.02821306884288788, + -0.01623990759253502, + -0.05799043923616409, + 0.02052200585603714, + 0.0013535743346437812, + 0.00725167291238904, + -0.11869943886995316, + 0.09276091307401657, + 0.03471580520272255, + 0.02978583611547947, + -0.02284763567149639, + 0.009967394173145294, + 0.008301807567477226, + -0.018887607380747795, + -0.10167556256055832, + -0.016496416181325912, + 0.0107597466558218, + 0.09101884067058563, + 0.03152953088283539, + -0.009554541669785976, + -0.01201092079281807, + -0.035385314375162125, + -0.007965855300426483, + 0.014309092424809933, + 0.01511820312589407, + -0.011753140017390251, + -0.0022722522262483835, + 0.0373087078332901, + -0.0569470152258873, + -0.07296726107597351, + -0.008033986203372478, + -0.05687493830919266, + -0.06829201430082321, + -0.03312204033136368, + 0.074434295296669, + 0.02177487313747406, + 0.019260896369814873, + -0.06809942424297333, + -0.0037971690762788057, + -3.06549554807134e-05, + -0.012984734028577805, + 0.050497181713581085, + -0.040395934134721756, + 0.10587306320667267, + 0.06936196982860565, + 0.04713227599859238, + 0.010743250139057636, + 0.0644797533750534, + -0.005113102030009031, + -0.05607439950108528, + -0.005271965637803078, + -0.10254235565662384, + -0.07659419625997543, + 0.028187695890665054, + -0.04923219233751297, + 0.019457314163446426, + -0.04501818120479584, + 0.047181569039821625, + -0.034984178841114044, + -0.08940193802118301, + 0.05054721236228943, + 0.03992725536227226, + -0.03406577557325363, + 0.04208516702055931, + -0.012655675411224365, + 0.017974840477108955, + -0.05014515295624733, + 0.04500731825828552, + 0.018400512635707855, + -0.01304350420832634, + -0.029981007799506187, + 0.0013745201285928488, + 0.0015499056316912174, + -0.028994211927056313, + -0.03074183501303196, + 0.07643020898103714, + 0.005632486194372177, + 0.01461933646351099, + -0.07251764088869095, + -2.4164004130966532e-08, + -0.04031265899538994, + -0.003585855010896921, + -0.01567912846803665, + -0.07953964918851852, + 0.017230166122317314, + -0.07674100250005722, + 0.08527812361717224, + -0.03629729896783829, + -0.06160247325897217, + -0.04330630600452423, + 0.025311844423413277, + -0.01331466156989336, + -0.089078888297081, + 0.02201598510146141, + 0.034854352474212646, + 0.0031562121585011482, + -0.04228054732084274, + -0.01769109070301056, + -0.036720599979162216, + -0.08928114175796509, + 0.0054635857231915, + 0.04877931997179985, + 0.010431494563817978, + -0.007421267684549093, + -0.020650429651141167, + 0.0034715370275080204, + -0.03361615911126137, + -0.033466823399066925, + 0.11665951460599899, + 0.054919932037591934, + 0.08028614521026611, + 0.06363038718700409, + 0.06846542656421661, + 0.018449345603585243, + -0.043747350573539734, + -0.01408153772354126, + 0.03656589984893799, + 0.02238616906106472, + 0.027670005336403847, + 0.03217235207557678, + -0.04832844063639641, + -0.06237407401204109, + -0.06730856001377106, + -0.03270626440644264, + -0.008614368736743927, + -0.014841440133750439, + -0.01016837079077959, + -0.01644023135304451, + -0.06288181990385056, + -0.11809996515512466, + -0.03541669249534607, + -0.02202755957841873, + 0.043022651225328445, + 0.049648698419332504, + 0.045428913086652756, + -0.026470083743333817, + -0.004370764829218388, + 0.001162644592113793, + 0.11754744499921799, + -0.014838779345154762, + 0.056346748024225235, + 0.03373321145772934, + 0.03574115037918091, + 0.07430315762758255 + ], + "bluetooth-bold||wireless,connection,connected,connectivity": [ + -0.04179292172193527, + 0.022954504936933517, + -0.034660857170820236, + 0.020205536857247353, + -0.0011946182930842042, + -0.015483669936656952, + 0.06559228897094727, + -0.05022436007857323, + -0.048179615288972855, + -0.0323435440659523, + 0.03313729539513588, + 0.07182462513446808, + 0.05476725846529007, + -0.0503237210214138, + -0.026172438636422157, + 0.0734063908457756, + 0.016825800761580467, + -0.08445899188518524, + -0.030672965571284294, + -0.010108338668942451, + -0.03229876235127449, + 0.007004098035395145, + 0.009193340316414833, + 0.06546804308891296, + 0.1330931931734085, + -0.02992449700832367, + 0.12238331139087677, + -0.014857787638902664, + -0.02284352295100689, + 0.020161878317594528, + -0.044633761048316956, + -0.0017230692319571972, + 0.09065458178520203, + -0.06299730390310287, + 0.006525546312332153, + -0.10689584910869598, + 0.029205894097685814, + 0.03151014447212219, + -0.03933196887373924, + -0.04322999715805054, + -0.07683143019676208, + -0.0702807828783989, + -0.0181515421718359, + 0.06947118043899536, + -0.02081925794482231, + 0.01669836975634098, + -0.07866384088993073, + 0.030279258266091347, + 0.008003449067473412, + -0.039885375648736954, + 0.03299301117658615, + -0.04157289117574692, + -0.10088643431663513, + 0.035603102296590805, + -0.010089213959872723, + 0.06711878627538681, + -0.06710107624530792, + 0.026210064068436623, + 0.061483234167099, + -0.05029892921447754, + 0.055648885667324066, + 0.02810722589492798, + 0.014135261997580528, + 8.617326966486871e-05, + 0.05266093090176582, + -0.01052123587578535, + -0.011993120424449444, + 0.06886491179466248, + -0.09646070748567581, + 0.04817928746342659, + 0.07174450904130936, + 0.015268863178789616, + 0.02771127223968506, + -0.08479221165180206, + 0.03190503269433975, + 0.05085932835936546, + 0.030035333707928658, + 0.04009972885251045, + -0.016506792977452278, + -0.04873724654316902, + -0.03573765978217125, + 0.007310925517231226, + -0.004210090264678001, + -0.016122400760650635, + 0.060132935643196106, + 0.008299794979393482, + -0.056036267429590225, + -0.05933292210102081, + -0.06614144891500473, + -0.009835965931415558, + -0.08704233169555664, + 0.034623660147190094, + -0.10978177934885025, + 0.010861387476325035, + -0.06215790659189224, + 0.04305762052536011, + 0.06270528584718704, + -0.04009157046675682, + -0.031377773731946945, + 0.08540195226669312, + 0.03368861973285675, + 0.04119870066642761, + 0.02210187166929245, + -0.014445091597735882, + 0.022596677765250206, + -0.031870804727077484, + 0.026844099164009094, + 0.03111085668206215, + 0.10653899610042572, + -0.03239518404006958, + 0.02803828753530979, + -0.11912362277507782, + -0.0402078777551651, + 0.01567760482430458, + -0.04727400839328766, + 0.03233570605516434, + -0.04849158972501755, + 0.06294569373130798, + 0.12043225020170212, + 0.03339700773358345, + -0.04085272178053856, + -0.02265046164393425, + -0.013500404544174671, + -0.10800077021121979, + 0.004132361151278019, + 0.010902131907641888, + 0.03549032658338547, + -1.0838599744008823e-33, + 0.08768082410097122, + 0.04354283586144447, + -0.04269341379404068, + 0.08053350448608398, + -0.02261459454894066, + 0.006056470330804586, + -0.02837504632771015, + -0.011284873820841312, + -0.042598657310009, + 0.04538867622613907, + -0.03389560803771019, + 0.027574928477406502, + -0.02925647422671318, + -0.020581787452101707, + 0.004689100198447704, + -0.08846371620893478, + 0.035342369228601456, + -0.012505137361586094, + -0.05250343307852745, + 0.09188411384820938, + 0.005729088094085455, + -0.039361752569675446, + -0.05964428931474686, + -0.03774425759911537, + 0.03611123934388161, + -0.015489302575588226, + 0.029999203979969025, + 0.014796077273786068, + 0.01875142753124237, + 0.03292863443493843, + 0.03117409534752369, + 0.07607465982437134, + -0.004425412509590387, + -0.03614320978522301, + 0.010468214750289917, + -0.017090678215026855, + -0.06498469412326813, + -0.012718663550913334, + -0.014580953866243362, + -0.01667669788002968, + -0.02617773786187172, + -0.04696495085954666, + -0.0907711312174797, + -0.04146634042263031, + 0.046694256365299225, + 0.07332581281661987, + 0.002086856635287404, + -0.03659108281135559, + -0.017035173252224922, + 0.0416235476732254, + -0.09627871960401535, + -0.021743975579738617, + 0.034355487674474716, + -0.007465544622391462, + 0.06296402961015701, + -0.029428347945213318, + -0.003297066781669855, + 0.1364845633506775, + 0.01726701483130455, + -0.021432844921946526, + 0.05828927084803581, + 0.07052960991859436, + 0.0051605599001049995, + -0.06755464524030685, + 0.02766513265669346, + 0.044235460460186005, + 0.0013204573187977076, + 0.0593089833855629, + 0.01437697559595108, + -0.07585100829601288, + -0.02291199192404747, + 0.09830363839864731, + 0.01734444685280323, + -0.03056999109685421, + -0.01488781999796629, + 0.005702604074031115, + 0.006834529340267181, + 0.05201484262943268, + -0.05606694519519806, + -0.04121595621109009, + -0.007517335005104542, + -0.029163561761379242, + -0.020438186824321747, + 0.12482339888811111, + -0.010519283823668957, + -0.018425965681672096, + -0.08653290569782257, + -0.1525418907403946, + -0.07517944276332855, + 0.14347758889198303, + 0.02075725980103016, + 0.0584009550511837, + -0.08554784208536148, + -0.011085545644164085, + -0.0976727306842804, + 1.0751924111298246e-35, + -0.020261652767658234, + 0.046086814254522324, + 0.002635607961565256, + -0.061492376029491425, + -0.022636903449892998, + -0.0469750352203846, + 0.057557251304388046, + 0.011231571435928345, + -0.04256104677915573, + 0.03131716325879097, + 0.12946274876594543, + 0.015858745202422142, + -0.024639872834086418, + -0.01512335054576397, + -0.021697156131267548, + 0.03048304282128811, + 0.044092029333114624, + 0.01159296277910471, + 0.0021633983124047518, + 0.04323604330420494, + -0.004644178785383701, + -0.020580431446433067, + 0.011513229459524155, + -0.02031826786696911, + 0.0012850939529016614, + 0.03937835618853569, + -0.0014413888566195965, + 0.011135736480355263, + -0.046987127512693405, + 0.023398414254188538, + 0.008101321756839752, + 0.06390568614006042, + 0.01377169881016016, + -0.00915451068431139, + 0.032807447016239166, + 0.08164937049150467, + 0.022066954523324966, + -0.07747779786586761, + 0.03326093405485153, + -0.04860415682196617, + 0.042502786964178085, + 0.040250103920698166, + -0.04684961959719658, + -0.008617475628852844, + 0.050221703946590424, + -0.09647858142852783, + -0.04875713214278221, + -0.03683862090110779, + -0.09082625061273575, + 0.03312794864177704, + 0.08646083623170853, + 0.0003835187235381454, + -0.0434318408370018, + -0.016840243712067604, + -0.010044792667031288, + -0.009280090220272541, + -0.026734057813882828, + 0.005578448995947838, + -0.0007044910453259945, + 0.06556332111358643, + 0.095442034304142, + -0.02116227336227894, + 0.009835866279900074, + 0.0992884561419487, + 0.013303044252097607, + -0.01838700659573078, + 0.04293832927942276, + -0.017147362232208252, + 0.11179370433092117, + 0.08288499712944031, + -0.06294185668230057, + -0.023208221420645714, + 0.07535087317228317, + 0.045668791979551315, + 0.05399094521999359, + -0.0355193167924881, + 0.011378046125173569, + -0.03513166680932045, + -0.03826063871383667, + 0.061954595148563385, + -0.028688549995422363, + 0.07058428227901459, + 0.0182594433426857, + -0.030970241874456406, + -0.029300054535269737, + 0.02482793480157852, + -0.01404477283358574, + 0.03852130100131035, + -0.01902317814528942, + -0.029786771163344383, + -0.058384787291288376, + 0.004408958833664656, + -0.01659879833459854, + 0.021901333704590797, + -0.07202635705471039, + -1.7579020905600373e-08, + -0.02564092166721821, + -0.032601967453956604, + -0.020573630928993225, + -0.058153748512268066, + 0.07111772894859314, + -0.028691116720438004, + -0.011334079317748547, + -0.13250063359737396, + -0.020986147224903107, + -0.0013730463106185198, + -0.03871503099799156, + 0.004896314349025488, + -0.12057548016309738, + 0.04139745607972145, + 0.0770237147808075, + 0.034010566771030426, + -0.08311406522989273, + -0.044598110020160675, + -0.042768653482198715, + -0.03163909167051315, + 0.023510223254561424, + 0.015412543900310993, + 0.009398476220667362, + 0.041636910289525986, + 0.09383712708950043, + -0.009367581456899643, + -0.009198914282023907, + 0.04386472702026367, + 0.06880885362625122, + -0.010708431713283062, + 0.007688904646784067, + 0.030244803056120872, + -0.014491177164018154, + 0.04042236506938934, + -0.17894001305103302, + -0.017543597146868706, + -0.07956993579864502, + 0.05987066030502319, + -0.0682334378361702, + 0.023602835834026337, + -0.015297513455152512, + -0.026325972750782967, + -0.03268565237522125, + 0.004950705915689468, + 0.02582564763724804, + 0.030140342190861702, + 0.07981351017951965, + 0.10004261881113052, + -0.04320383816957474, + -0.09279648214578629, + -0.0667438954114914, + -0.05159423127770424, + -0.00262691848911345, + -0.043745335191488266, + 0.0006547212833538651, + -0.061350926756858826, + 0.06305418908596039, + 0.03227759525179863, + -0.025002896785736084, + -0.03984208032488823, + 0.005980765447020531, + -0.019270775839686394, + 0.03322587534785271, + -0.004756113979965448 + ], + "bluetooth-connected-bold||wireless,connection,connected,connectivity": [ + -0.02834170311689377, + 0.023951096460223198, + -0.03912332281470299, + 0.03608182445168495, + -0.007533463649451733, + -0.00853099673986435, + 0.0733211562037468, + -0.06012703478336334, + -0.039719391614198685, + -0.027175767347216606, + 0.0261659137904644, + 0.07740344107151031, + 0.0716950073838234, + -0.04234575480222702, + -0.04528346285223961, + 0.07504186034202576, + 0.013230646029114723, + -0.08653019368648529, + -0.026652438566088676, + -0.013192489743232727, + -0.021716639399528503, + 0.0027364608831703663, + 0.01584843546152115, + 0.05555175244808197, + 0.1338592767715454, + -0.03260859102010727, + 0.10855885595083237, + -0.025692304596304893, + -0.022612644359469414, + 0.01596681773662567, + -0.050422992557287216, + -0.005122242961078882, + 0.0730423778295517, + -0.08082844316959381, + 0.00857638567686081, + -0.11108610033988953, + 0.03234103322029114, + 0.03399407118558884, + -0.03571931645274162, + -0.043778613209724426, + -0.06757728010416031, + -0.08262007683515549, + -0.0111461216583848, + 0.06238863617181778, + -0.03371208906173706, + 0.025889627635478973, + -0.09675168991088867, + 0.026680590584874153, + -0.011155004613101482, + -0.03992912173271179, + 0.02756574936211109, + -0.04608970135450363, + -0.09650380909442902, + 0.032380688935518265, + 0.013227095827460289, + 0.08299021422863007, + -0.059363994747400284, + 0.016078609973192215, + 0.04862700775265694, + -0.046355217695236206, + 0.053701017051935196, + 0.032881252467632294, + 0.0028920150361955166, + -0.010652061551809311, + 0.04659000039100647, + -0.00787630956619978, + -0.009351024404168129, + 0.06076508015394211, + -0.10431642085313797, + 0.047434285283088684, + 0.07109039276838303, + 0.022239401936531067, + 0.0377274788916111, + -0.10552698373794556, + 0.020531781017780304, + 0.05727938935160637, + 0.01600305363535881, + 0.05093662068247795, + -0.02236645482480526, + -0.0731949731707573, + -0.02058015950024128, + 0.0229947492480278, + -0.008185681886970997, + -0.024138180539011955, + 0.060612570494413376, + 0.004542795475572348, + -0.061178721487522125, + -0.06634998321533203, + -0.06827324628829956, + 0.0026484609115868807, + -0.09477442502975464, + 0.025230875238776207, + -0.0981961116194725, + 0.00960182212293148, + -0.06443913280963898, + 0.05184096470475197, + 0.045203324407339096, + -0.022830652073025703, + -0.02562694624066353, + 0.07947654277086258, + 0.022932665422558784, + 0.04358421266078949, + 0.012357417494058609, + -0.020876536145806313, + 0.0236058346927166, + -0.02096324972808361, + 0.029446184635162354, + 0.031675249338150024, + 0.11476044356822968, + -0.0447479709982872, + 0.04366949945688248, + -0.11731871962547302, + -0.0328548364341259, + 0.019438257440924644, + -0.04649510979652405, + 0.04338574409484863, + -0.03575365990400314, + 0.06539396941661835, + 0.12589943408966064, + 0.04467301815748215, + -0.04305102676153183, + -0.023615743964910507, + -0.0052553522400557995, + -0.11488818377256393, + 0.006455849856138229, + 0.0008587600314058363, + 0.043992165476083755, + -1.441659148956078e-33, + 0.09239956736564636, + 0.02488390915095806, + -0.03501657024025917, + 0.05689288303256035, + -0.0036536110565066338, + -0.0053853546269237995, + -0.03834768012166023, + -0.00014456809731200337, + -0.04694400355219841, + 0.029836634173989296, + -0.0348467156291008, + 0.02261396497488022, + -0.027375152334570885, + -0.008436434902250767, + 0.00020800353377126157, + -0.08171266317367554, + 0.04458283260464668, + -0.007291529793292284, + -0.05761217698454857, + 0.08018258213996887, + 0.00802659709006548, + -0.025257330387830734, + -0.048739638179540634, + -0.048454638570547104, + 0.03310959041118622, + -0.013454943895339966, + 0.02655772678554058, + 0.009706935845315456, + 0.027978282421827316, + 0.03487225994467735, + 0.02327723614871502, + 0.08173677325248718, + 0.004681964870542288, + -0.025730974972248077, + 0.012796045280992985, + -0.01640302687883377, + -0.06485460698604584, + -0.015200458467006683, + -0.024060213938355446, + -0.023261388763785362, + -0.021244732663035393, + -0.049118705093860626, + -0.07761821895837784, + -0.042903922498226166, + 0.042633961886167526, + 0.06890468299388885, + -0.009310991503298283, + -0.038662225008010864, + -0.00636389059945941, + 0.032257307320833206, + -0.08064770698547363, + -0.01316824834793806, + 0.019022850319743156, + -0.012381031177937984, + 0.053530771285295486, + -0.038761407136917114, + -0.012131191790103912, + 0.14235921204090118, + 0.01033961120992899, + -0.01374211348593235, + 0.05932769924402237, + 0.06494562327861786, + -0.0015807526651769876, + -0.0649167001247406, + 0.02686302736401558, + 0.06397371739149094, + -0.008995389565825462, + 0.05190282687544823, + 0.017637578770518303, + -0.08976565301418304, + -0.02300223335623741, + 0.10006295144557953, + -0.004816939122974873, + -0.04325026646256447, + -0.019427021965384483, + 0.0014118734980002046, + -0.012507380917668343, + 0.060410868376493454, + -0.04465065151453018, + -0.027826564386487007, + 0.004448054824024439, + -0.04185844585299492, + -0.03773707523941994, + 0.10916657745838165, + -0.01806807704269886, + -0.011940652504563332, + -0.08158443868160248, + -0.1369553655385971, + -0.06759684532880783, + 0.14421047270298004, + 0.014613820239901543, + 0.06622424721717834, + -0.06226451322436333, + -0.006876529660075903, + -0.08517581224441528, + 2.052386504241828e-34, + -0.015868879854679108, + 0.04844861477613449, + 0.013573896139860153, + -0.04788349196314812, + -0.007431694306433201, + -0.05775761976838112, + 0.0653488039970398, + -0.009309750981628895, + -0.03627863898873329, + 0.039869606494903564, + 0.13916385173797607, + 0.01880796067416668, + -0.025453345850110054, + -0.012335604056715965, + -0.014304395765066147, + 0.02285545878112316, + 0.03631516173481941, + 0.00358968460932374, + 0.003373128129169345, + 0.057630505412817, + 0.007580841425806284, + -0.020700111985206604, + 0.02096782810986042, + -0.017380358651280403, + 0.004199018701910973, + 0.03066551685333252, + 0.013802981935441494, + 0.018038352951407433, + -0.04414786025881767, + 0.023966901004314423, + 0.008853591978549957, + 0.06116529926657677, + -0.012060576118528843, + -0.015316600911319256, + 0.015155602246522903, + 0.09565822035074234, + 0.031809888780117035, + -0.08191797882318497, + 0.02450372278690338, + -0.06328406184911728, + 0.04934815317392349, + 0.027922669425606728, + -0.07100760191679001, + -0.004486641846597195, + 0.05073937773704529, + -0.09936051815748215, + -0.06735663115978241, + -0.02228209376335144, + -0.11185265332460403, + 0.030639708042144775, + 0.07212308794260025, + -0.008996945805847645, + -0.0451774075627327, + -0.017758116126060486, + 0.0016760650323703885, + 0.006310794036835432, + -0.027622049674391747, + 0.0013080743374302983, + -0.0177827887237072, + 0.06189827620983124, + 0.0904928520321846, + -0.028078513219952583, + 0.01722020097076893, + 0.1079995334148407, + 0.006565682590007782, + -0.028490649536252022, + 0.03214608505368233, + -0.007547927089035511, + 0.11579591780900955, + 0.07766052335500717, + -0.05803708732128143, + -0.012993905693292618, + 0.0789933055639267, + 0.04080812260508537, + 0.03774532303214073, + -0.027625543996691704, + 0.017219379544258118, + -0.05170275643467903, + -0.027034331113100052, + 0.05364742502570152, + -0.03791533783078194, + 0.0813913494348526, + 0.01368036214262247, + -0.04269067943096161, + -0.017450274899601936, + 0.03194953873753548, + -0.010193582624197006, + 0.04269629716873169, + -0.01401418074965477, + -0.012355477549135685, + -0.07444345206022263, + 0.00587299931794405, + 0.007627234328538179, + 0.008456723764538765, + -0.08140123635530472, + -1.805825711187481e-08, + -0.025066768750548363, + -0.03476782888174057, + -0.030031414702534676, + -0.0603177435696125, + 0.0684921145439148, + -0.02892129123210907, + -0.02006605640053749, + -0.11546049267053604, + -0.012757109478116035, + 0.01751190610229969, + -0.025683319196105003, + 0.0068312352523207664, + -0.10464738309383392, + 0.053589511662721634, + 0.06043706461787224, + 0.04746172949671745, + -0.05523982271552086, + -0.05381127446889877, + -0.04885369539260864, + -0.029385054484009743, + 0.02174953930079937, + 0.02003421261906624, + -0.0021346292924135923, + 0.05875717103481293, + 0.08529439568519592, + -0.010552243329584599, + -0.0124146593734622, + 0.04192008078098297, + 0.048707958310842514, + -0.011387105099856853, + 0.004847038071602583, + 0.022828849032521248, + -0.02595028467476368, + 0.054875873029232025, + -0.1615583598613739, + -0.0024482940789312124, + -0.07831724733114243, + 0.055748723447322845, + -0.08476142585277557, + -0.00042997440323233604, + -0.002436232753098011, + -0.01830768585205078, + -0.017626522108912468, + 0.010931317694485188, + 0.03154288977384567, + 0.043298255652189255, + 0.08415497839450836, + 0.12954570353031158, + -0.05093199014663696, + -0.07724770158529282, + -0.07918980717658997, + -0.050145503133535385, + -0.016229281201958656, + -0.05335298925638199, + 0.010794335044920444, + -0.057608574628829956, + 0.06695935130119324, + 0.04414043202996254, + -0.024666080251336098, + -0.03733915835618973, + -0.002157238544896245, + -0.016108127310872078, + 0.04055940359830856, + -0.0049110231921076775 + ], + "bluetooth-slash-bold||wireless,connection,connectivity,disconnected,disabled": [ + -0.04287629574537277, + 0.006261270958930254, + -0.010695718228816986, + 0.03184790164232254, + -0.007186598610132933, + -0.009290135465562344, + -0.007638223469257355, + -0.039851248264312744, + -0.05584372952580452, + -0.02764013782143593, + 0.07424277812242508, + 0.07534155249595642, + 0.03038298711180687, + 0.014309112913906574, + -0.054644566029310226, + 0.0969596579670906, + 0.04654604569077492, + -0.08344649523496628, + -0.03528909012675285, + 0.013769181445240974, + -0.05060019716620445, + 0.06768081337213516, + 0.001962099689990282, + 0.06027337163686752, + 0.13315537571907043, + -0.0670761689543724, + 0.10101360082626343, + -0.002089650137349963, + -0.034071050584316254, + 0.03268959000706673, + -0.03648622706532478, + 0.004534533247351646, + 0.1159278079867363, + -0.05246588587760925, + 0.03248145058751106, + -0.06788578629493713, + 0.02459198608994484, + 0.028048580512404442, + 0.009843108244240284, + -0.06792222708463669, + -0.09270778298377991, + -0.06424333155155182, + -0.03345300629734993, + -0.00672373129054904, + 0.006628795526921749, + -0.005671384744346142, + -0.04830368608236313, + -0.014522962272167206, + -0.006025946233421564, + -0.02292989194393158, + 0.04986459016799927, + 0.01384597085416317, + -0.09265728294849396, + 0.020062092691659927, + 0.01781015284359455, + 0.03329046070575714, + -0.06929853558540344, + 0.06602218747138977, + 0.09573641419410706, + -0.05131426081061363, + 0.03177608922123909, + 0.017917683348059654, + 0.010254554450511932, + -0.028553707525134087, + 0.02684600278735161, + 0.01749231107532978, + -0.03455569967627525, + 0.03385072574019432, + -0.08903884887695312, + 0.0599328875541687, + 0.05986327305436134, + 0.03346830978989601, + 0.0006471219239756465, + -0.0680682584643364, + 0.04804973676800728, + 0.04780055209994316, + 0.032961148768663406, + 0.005896155256778002, + -0.014759000390768051, + -0.04580489546060562, + -0.046720340847969055, + -0.013738425448536873, + 0.009476326406002045, + 0.049259837716817856, + 0.056139688938856125, + 0.0371701754629612, + -0.042695533484220505, + -0.029543818905949593, + -0.056670621037483215, + -0.05382616072893143, + -0.06664333492517471, + 0.01552188117057085, + -0.030038218945264816, + -0.020124392583966255, + -0.058537788689136505, + 0.011005345731973648, + 0.05194837972521782, + -0.007403188850730658, + -0.04474969953298569, + 0.06890104711055756, + 0.061271071434020996, + 0.03211204707622528, + -0.028330722823739052, + -0.008178602904081345, + 0.024826455861330032, + -0.03345297649502754, + 0.05118662118911743, + 0.007815402001142502, + 0.061659689992666245, + -0.05012279003858566, + 0.04065403714776039, + -0.0848608911037445, + -0.0273447148501873, + 0.015959274023771286, + -0.041443776339292526, + 0.014718791469931602, + -0.07631292939186096, + 0.030691569671034813, + 0.127607524394989, + 0.06243309751152992, + -0.0259013120085001, + -0.05579763278365135, + -0.017818128690123558, + -0.12089306116104126, + -0.020516138523817062, + 0.02564721554517746, + 0.03322041407227516, + -2.6414632739663473e-33, + 0.12683014571666718, + 0.04458163306117058, + -0.04424132779240608, + 0.06273044645786285, + 0.005906760226935148, + -0.014780718833208084, + -0.007879408076405525, + 0.017050210386514664, + -0.045168157666921616, + 0.031145501881837845, + 0.015079633332788944, + 0.014119558036327362, + -0.004395613446831703, + -0.06616642326116562, + 0.004158360417932272, + -0.07679931819438934, + 0.067247174680233, + -0.021244116127490997, + -0.060086123645305634, + 0.0904739573597908, + 0.037611447274684906, + 0.023495085537433624, + -0.033042024821043015, + 0.0043168929405510426, + 0.032865989953279495, + -0.00746431527659297, + 0.005608049686998129, + 0.037072837352752686, + 0.05169379338622093, + 0.039532896131277084, + 0.0222344771027565, + 0.08609016239643097, + -0.0018046420300379395, + -0.03802565112709999, + -0.013820839114487171, + 0.01738523691892624, + -0.047693777829408646, + 0.01342447753995657, + -0.044720228761434555, + -0.019982023164629936, + -0.052770502865314484, + -0.05263671278953552, + -0.10636536777019501, + -0.020732995122671127, + 0.042461883276700974, + 0.009886480867862701, + 0.017966214567422867, + -0.08471223711967468, + -0.023641640320420265, + 0.03493708372116089, + -0.10897921770811081, + -0.0027188591193407774, + 0.07796843349933624, + -0.01744178496301174, + 0.06875729560852051, + -0.04527827724814415, + -0.03957739844918251, + 0.09439163655042648, + -0.010727165266871452, + -0.03165857121348381, + 0.07341960072517395, + 0.07582742720842361, + 0.019600875675678253, + -0.05672160163521767, + 0.018230196088552475, + 0.026745740324258804, + -0.0014286343939602375, + 0.05844413861632347, + -0.03726203367114067, + -0.08704692870378494, + -0.044841885566711426, + 0.06673896312713623, + 0.03327188640832901, + -0.0435342937707901, + -0.05140288174152374, + 0.0038551348261535168, + -0.011521180160343647, + 0.019431794062256813, + -0.06289058178663254, + -0.06186734139919281, + -0.015648117288947105, + -0.026775715872645378, + -0.00037294242065399885, + 0.10334513336420059, + 0.043360255658626556, + -0.03684495389461517, + -0.06862803548574448, + -0.11285926401615143, + -0.06842265278100967, + 0.09065872430801392, + 0.04764384403824806, + 0.056920189410448074, + -0.12763741612434387, + -0.03205852210521698, + -0.08451482653617859, + 1.2987880043537025e-33, + -0.0001683058071648702, + 0.05966922640800476, + -0.005551490932703018, + -0.04456918314099312, + -0.04874886944890022, + -0.06263093650341034, + 0.020259512588381767, + 0.02858482301235199, + -0.05081552639603615, + -0.005303437355905771, + 0.11668942868709564, + 0.034978121519088745, + -0.003375827334821224, + -0.0553998239338398, + -0.009006327949464321, + 0.006831645499914885, + -0.00650377431884408, + -0.009692779742181301, + -0.014939360320568085, + 0.04971815645694733, + 0.001436662278138101, + 0.0034235992934554815, + 0.011775678023695946, + 0.007478450424969196, + -0.06989305466413498, + 0.05551707744598389, + -0.019397327676415443, + 0.005817045457661152, + -0.001939624547958374, + 0.014545849524438381, + 0.022578038275241852, + 0.06828562170267105, + 0.006452287081629038, + -0.029696164652705193, + 0.04322301596403122, + 0.08157133311033249, + -0.060518812388181686, + -0.03542337194085121, + 0.008550581522285938, + -0.06904110312461853, + 0.033374425023794174, + 0.06580871343612671, + -0.010878046974539757, + 0.019948389381170273, + 0.05147232860326767, + -0.08074048161506653, + -0.03988315165042877, + -0.07288669049739838, + -0.046356551349163055, + 0.04038470238447189, + 0.09916519373655319, + -0.00028319700504653156, + -0.023965170606970787, + -0.008352871052920818, + -0.014640738256275654, + -0.042439982295036316, + -0.02103799395263195, + 0.015165982767939568, + -0.03155361860990524, + 0.08432532101869583, + 0.09622949361801147, + -0.02530801109969616, + -0.006720841396600008, + 0.10384559631347656, + 0.015875427052378654, + -0.00880374200642109, + 0.019045380875468254, + 0.03033779002726078, + 0.10505214333534241, + 0.06787581741809845, + -0.0395582839846611, + 0.004186577629297972, + 0.08617620915174484, + 0.027325758710503578, + 0.06094423308968544, + -0.04542819783091545, + -0.04448114335536957, + -0.027414048090577126, + -0.04490184411406517, + 0.0900258719921112, + -0.00020630886137951165, + 0.055738359689712524, + -0.007864782586693764, + -0.032550398260354996, + -0.006229827180504799, + -0.0006150015396997333, + -0.051870424300432205, + 0.09050058573484421, + -0.016012301668524742, + -0.04861670732498169, + -0.06900892406702042, + -0.02217845246195793, + -0.023677775636315346, + 0.07433288544416428, + -0.1079721674323082, + -1.9999308875640054e-08, + -0.02686494216322899, + -0.03033204935491085, + -0.005259585566818714, + -0.03576071560382843, + 0.09117285907268524, + -0.030714157968759537, + 0.01707172952592373, + -0.1464715451002121, + -0.019857928156852722, + -0.005904146935790777, + -0.04920169711112976, + 0.00040243484545499086, + -0.0951046571135521, + 0.04110313206911087, + 0.07512772083282471, + 0.036047667264938354, + -0.08542085438966751, + -0.0010045664384961128, + -0.03316943719983101, + -0.0033945911563932896, + 0.010582612827420235, + -0.0012394777731969953, + 0.0022956563625484705, + 0.028212275356054306, + 0.12390359491109848, + -0.026081694290041924, + 0.00670414324849844, + 0.014719504863023758, + 0.07214438915252686, + -0.027977287769317627, + -6.195270543685183e-05, + 0.038809891790151596, + 0.004540277179330587, + 0.02593533881008625, + -0.1638149917125702, + -0.005540235433727503, + -0.07548865675926208, + 0.0893196389079094, + -0.04640118032693863, + -0.0230646263808012, + 0.0018257956253364682, + -0.04991765692830086, + -0.005739232059568167, + 0.009022259153425694, + 0.03302333503961563, + 0.02393456920981407, + 0.07090461999177933, + 0.12675128877162933, + -0.04495178908109665, + -0.0655551478266716, + -0.06968396157026291, + -0.02372814156115055, + -0.001796451979316771, + -0.013098249211907387, + 0.011189318262040615, + -0.05562936142086983, + 0.07138421386480331, + 0.02218679152429104, + -0.029866265133023262, + -0.07943184673786163, + 0.047201041132211685, + -0.04668712615966797, + -0.009415408596396446, + -0.02347536012530327 + ], + "bluetooth-x-bold||wireless,connection,connectivity,disconnected,errors": [ + -0.01769057661294937, + -0.0008997034165076911, + 0.013883201405405998, + -0.0008954281220212579, + 0.021573537960648537, + -0.04552241042256355, + 0.0696369931101799, + -0.023516392335295677, + -0.08840231597423553, + -0.03257842734456062, + 0.07952933013439178, + 0.03837282210588455, + 0.08319094032049179, + -0.008417600765824318, + -0.018454262986779213, + 0.12249115109443665, + 0.01385309174656868, + -0.0932035893201828, + -0.035986583679914474, + 0.045312412083148956, + -0.03794601187109947, + 0.029196148738265038, + -0.01117624994367361, + 0.08192194998264313, + 0.10944382101297379, + -0.029768334701657295, + 0.08705361187458038, + -0.04733855649828911, + -0.03615875542163849, + 0.03419448435306549, + -0.04773356765508652, + 0.010692770592868328, + 0.08264172822237015, + -0.08763273805379868, + 0.06626210361719131, + -0.01984165608882904, + 0.02773568592965603, + 0.010465025901794434, + -0.05266210064291954, + -0.047897569835186005, + -0.046733491122722626, + -0.06377901881933212, + -0.020574741065502167, + 0.0472063347697258, + -0.006502007599920034, + -0.02663041651248932, + -0.04999687150120735, + 0.02005021460354328, + 0.016954833641648293, + -0.02389046736061573, + 0.03979907184839249, + 0.0030407190788537264, + -0.07301201671361923, + 0.016474466770887375, + 0.005939994473010302, + 0.061261408030986786, + -0.09755741059780121, + 0.046352140605449677, + 0.07416544109582901, + -0.06252700835466385, + 0.06999627500772476, + 0.06694960594177246, + 0.029110362753272057, + -0.008122354745864868, + 0.04692723974585533, + 0.003940448630601168, + -0.031080212444067, + 0.03703631833195686, + -0.09440258890390396, + 0.09029486775398254, + 0.07031136006116867, + 0.046094126999378204, + -0.02020149491727352, + -0.04034553840756416, + 0.009500189684331417, + 0.046097029000520706, + 0.06739096343517303, + 0.016845501959323883, + -0.03907759115099907, + -0.05866658315062523, + -0.06311697512865067, + 0.008884224109351635, + -0.003310454310849309, + 0.03446253016591072, + 0.07352244853973389, + 0.005154046695679426, + -0.044925250113010406, + -0.022369245067238808, + -0.09489985555410385, + 0.005601075943559408, + -0.04305748641490936, + 0.06738262623548508, + -0.0621945858001709, + 0.010066742077469826, + -0.01205174345523119, + 0.006779531016945839, + 0.11232481151819229, + -0.021947596222162247, + -0.011458160355687141, + 0.08451258391141891, + 0.013623913750052452, + 0.03213592618703842, + 0.01699666678905487, + 0.01125545334070921, + -0.018871109932661057, + -0.04165099188685417, + 0.009221878834068775, + 0.01891893893480301, + 0.05126770958304405, + -0.03979530185461044, + 0.01975802145898342, + -0.15504403412342072, + -0.017675025388598442, + 0.006603647954761982, + -0.007591385394334793, + 0.023405132815241814, + -0.047293346375226974, + 0.06584496051073074, + 0.08252795785665512, + 0.026630878448486328, + -0.040704723447561264, + -0.08241565525531769, + -0.021490130573511124, + -0.07527443021535873, + 0.019694365561008453, + 0.012039896100759506, + 0.027951376512646675, + -3.411964418346588e-34, + 0.07506690174341202, + 0.06154489517211914, + -0.06333772093057632, + 0.09921491146087646, + -0.015564888715744019, + -0.0104160001501441, + 0.011529342271387577, + -0.0018065432086586952, + -0.03289097920060158, + 0.07420042902231216, + -0.004467659629881382, + 0.01818022131919861, + -0.04479032754898071, + -0.0737689957022667, + 0.016620345413684845, + -0.08004307746887207, + 0.0373150072991848, + -0.0019274336518719792, + -0.08724875748157501, + 0.1279793679714203, + 0.04278073459863663, + -0.05334547162055969, + -0.07392850518226624, + -0.025247780606150627, + 0.019593115895986557, + 0.029474910348653793, + 0.022096695378422737, + 0.0492282509803772, + 0.033470042049884796, + 0.00972257275134325, + 0.03293198347091675, + 0.07851118594408035, + 0.02084057591855526, + -0.04248042032122612, + -0.019329622387886047, + 0.006971098016947508, + -0.027494803071022034, + 0.003602811833843589, + -0.062005411833524704, + -0.04039568454027176, + -0.06304939091205597, + -0.016006946563720703, + -0.06392042338848114, + -0.04124576970934868, + 0.07676006108522415, + 0.02572317235171795, + -0.012923449277877808, + -0.0712767019867897, + 0.0016711462521925569, + 0.007078956346958876, + -0.11613704264163971, + -0.00524525810033083, + 0.008195767179131508, + -0.012598785571753979, + 0.0806846022605896, + -0.0204122643917799, + -0.021617425605654716, + 0.16211625933647156, + -0.02449117600917816, + 0.0009269674774259329, + 0.11398077756166458, + 0.03376007825136185, + -0.009421651251614094, + -0.08853118866682053, + 0.052188608795404434, + 0.03355461359024048, + -0.014859210699796677, + -0.00044931197771802545, + -0.05161536857485771, + -0.058156441897153854, + -0.05975446105003357, + 0.042151641100645065, + 0.06758975982666016, + -0.031662676483392715, + 0.03009289689362049, + -0.026751086115837097, + -0.01663331314921379, + 0.0375262014567852, + -0.04706035554409027, + -0.08046341687440872, + 0.024019725620746613, + -0.041842021048069, + -0.002636807505041361, + 0.11736199259757996, + -0.032331861555576324, + -0.0059883990325033665, + -0.03650004416704178, + -0.051773909479379654, + -0.09192609786987305, + 0.16471555829048157, + 0.012772764079272747, + 0.053033020347356796, + -0.09093126654624939, + -0.05385575070977211, + -0.13341116905212402, + -7.359725131105225e-34, + -0.05726008489727974, + 0.050541650503873825, + 0.026987778022885323, + -0.03326923027634621, + -0.023192670196294785, + -0.03239781782031059, + 0.04458991810679436, + 0.0399140790104866, + -0.02763659693300724, + -0.0113968625664711, + 0.1027139350771904, + 0.022829312831163406, + -0.0386846661567688, + -0.013948982581496239, + -0.05770181864500046, + 0.029630472883582115, + 0.05976657569408417, + -0.0327470563352108, + -0.016177836805582047, + 0.012491622939705849, + 0.013818420469760895, + 0.028232989832758904, + 0.0004882029606960714, + -0.02550140768289566, + -0.042454637587070465, + 0.038612253963947296, + 0.014928665943443775, + 0.011608184315264225, + -0.03161465749144554, + -0.019146010279655457, + -0.007401993032544851, + 0.08155550807714462, + 0.032736051827669144, + 0.04270019754767418, + 0.06868895888328552, + 0.03421811759471893, + 0.004279113374650478, + -0.03314710780978203, + 0.00189574109390378, + -0.055697500705718994, + 0.05527964234352112, + 0.03325823321938515, + -0.020592620596289635, + -0.03440678492188454, + 0.04313115030527115, + -0.08152616769075394, + -0.05990653485059738, + -0.03919826075434685, + -0.0629488006234169, + 0.0655171349644661, + 0.09142794460058212, + -0.038402002304792404, + -0.051776815205812454, + -0.0050819371826946735, + -0.027272053062915802, + -0.006285140290856361, + -0.022625736892223358, + 0.026253510266542435, + 0.010273067280650139, + 0.06822404265403748, + 0.03677406162023544, + -0.0341632142663002, + 0.014031344093382359, + 0.07690196484327316, + -0.004160480108112097, + -0.05246483534574509, + 0.012169993482530117, + -0.003123966045677662, + 0.10370080173015594, + 0.052965156733989716, + -0.058914441615343094, + -0.04031560197472572, + 0.06113356724381447, + 0.023355387151241302, + 0.017731161788105965, + -0.023162681609392166, + -0.03487580269575119, + -0.037339985370635986, + -0.0370786190032959, + 0.06377434730529785, + 0.015302260406315327, + 0.06992752850055695, + 0.05016832426190376, + 0.010756866075098515, + -0.00012649725249502808, + 0.05866221711039543, + 0.016161033883690834, + 0.06944580376148224, + -0.024039413779973984, + -0.052949078381061554, + -0.053374696522951126, + -0.02096288464963436, + 0.015476022846996784, + 0.04024394229054451, + -0.06512942165136337, + -1.9820562968675404e-08, + -0.0348777249455452, + -0.013546226546168327, + -0.027306027710437775, + -0.05718591436743736, + 0.07685854285955429, + -0.02512635476887226, + -0.010436653159558773, + -0.16025324165821075, + -0.0056388406082987785, + 0.0008768288535065949, + -0.06230607256293297, + -0.0062827072106301785, + -0.10786683857440948, + 0.02714848704636097, + 0.035098254680633545, + -0.030630353838205338, + -0.06953632086515427, + -0.00249715824611485, + -0.03093385323882103, + -0.05025922507047653, + 0.021389873698353767, + 0.0016269591869786382, + -0.006413366179913282, + -0.028107034042477608, + 0.07521536946296692, + -0.055477242916822433, + 0.02318972907960415, + 0.05309521034359932, + 0.08959230035543442, + -0.035388994961977005, + -0.025594839826226234, + 0.03445889800786972, + 0.03404923155903816, + 0.022801099345088005, + -0.13794314861297607, + -0.004933248274028301, + -0.06146959960460663, + 0.0525389164686203, + -0.029116129502654076, + -0.012060767970979214, + -0.026543360203504562, + -0.0070462157018482685, + 0.00426745880395174, + -0.013402765616774559, + 0.0488850362598896, + 0.02941060997545719, + 0.04883113503456116, + 0.09201785176992416, + -0.02481507696211338, + -0.08089112490415573, + -0.0575847253203392, + -0.03711054101586342, + -0.024105355143547058, + -0.07850535213947296, + -0.001702202600426972, + -0.05984611436724663, + 0.05708437040448189, + 0.02891853265464306, + -0.02153235673904419, + -0.0649842917919159, + -0.0019129859283566475, + -0.023292822763323784, + 0.0009819326223805547, + -0.035947103053331375 + ], + "boat-bold||ferry,ship,cruise,vehicles,public transit,transportation,commuter,traveling,sailing,places,locations": [ + 0.05474246293306351, + -0.037761107087135315, + -0.0040865810588002205, + 0.07440582662820816, + -0.005789575632661581, + -0.023421121761202812, + 0.035212915390729904, + 0.0007362050819210708, + -0.13324692845344543, + -0.02171618863940239, + 0.027764013037085533, + 0.03370221331715584, + -0.0021361045073717833, + 0.014112367294728756, + -0.016535017639398575, + 0.032794348895549774, + 0.07570988684892654, + 0.008112197741866112, + 0.02333836257457733, + 0.05545550212264061, + -0.014412887394428253, + 0.05011649429798126, + -0.029415544122457504, + -0.009084033779799938, + 0.03254090994596481, + 0.023407291620969772, + 0.06596990674734116, + -0.0012232750887051225, + -0.038762275129556656, + -0.027024902403354645, + -0.09566926211118698, + 0.05260075628757477, + -0.0023549720644950867, + 0.028760261833667755, + 0.03459635004401207, + 0.0435042642056942, + -0.0015174475265666842, + -0.050832439213991165, + 0.028349589556455612, + -0.027924155816435814, + -0.005695323925465345, + -0.05295839160680771, + -0.007394084241241217, + 0.09260911494493484, + -0.0019282636931166053, + -0.08582976460456848, + -0.004010647069662809, + -0.008962677791714668, + -4.2146559280809015e-05, + 0.04846091568470001, + -0.0026045728009194136, + -0.08190423250198364, + -0.07431159168481827, + 0.020502697676420212, + -0.03947623446583748, + -0.0564768947660923, + -0.1035308837890625, + 0.047589048743247986, + 0.039640069007873535, + 0.042290057986974716, + 0.030999107286334038, + 0.04664946720004082, + -0.020187925547361374, + 0.06490648537874222, + 0.044819723814725876, + -0.018280761316418648, + -0.038722313940525055, + 0.028840528801083565, + -0.06278331577777863, + -0.036821819841861725, + 0.04088969528675079, + 0.037272870540618896, + 0.028640201315283775, + -0.012981920503079891, + 0.008057807572185993, + -0.10391326248645782, + 0.05067582055926323, + 0.03364058956503868, + -0.0049141147173941135, + -0.006854081526398659, + -0.10317333787679672, + -0.015712758526206017, + -0.02615387737751007, + -0.009280728176236153, + -0.019948098808526993, + 0.03757137060165405, + -0.04126001521945, + -0.005801869556307793, + -0.046043019741773605, + 0.029768340289592743, + -0.03467341884970665, + -0.07379897683858871, + -0.016305604949593544, + -0.008914650417864323, + -0.10140007734298706, + 0.027493372559547424, + -0.020834971219301224, + 0.03529447689652443, + 0.0290535781532526, + 0.023119719699025154, + 0.054962001740932465, + 0.07019080966711044, + 0.07428063452243805, + 0.03695669397711754, + -0.07165546715259552, + 0.020944762974977493, + -0.027984952554106712, + -0.014331711456179619, + 0.01915326528251171, + -0.044267162680625916, + -0.042172741144895554, + -0.04351140931248665, + -0.010582403279840946, + -0.04566828906536102, + -0.11152682453393936, + -0.019629204645752907, + -0.09480646252632141, + -0.04048027843236923, + 0.10328159481287003, + 0.004924593027681112, + 0.011493562720716, + -0.04778040573000908, + 0.09732024371623993, + -0.009050564840435982, + -0.07072193920612335, + 0.020989028736948967, + 0.07756242901086807, + -4.1454282152908144e-33, + -0.057667262852191925, + 0.005586778745055199, + 0.007084288634359837, + 0.08281921595335007, + 0.06392967700958252, + 0.004021863453090191, + -0.04866490140557289, + -0.03800104558467865, + -0.03921924903988838, + 0.03129968419671059, + 0.023547910153865814, + 0.08511388301849365, + -0.0038325011264532804, + 0.053011924028396606, + 0.0712057575583458, + -0.03724735975265503, + 0.020319897681474686, + -0.06296788901090622, + -0.08344069123268127, + -0.0712968111038208, + 0.024560073390603065, + 0.03210549056529999, + -0.02766517549753189, + -0.08647177368402481, + -0.058452192693948746, + -0.06630996614694595, + 0.008979861624538898, + -0.05102710425853729, + 0.003133990103378892, + 0.08409007638692856, + -0.004571080207824707, + 0.04547275975346565, + 0.051625072956085205, + 0.0036274015437811613, + 0.0028336576651781797, + -0.0035218331031501293, + -0.012988511472940445, + -0.055960558354854584, + -0.06462611258029938, + -0.024567214772105217, + -0.10030107200145721, + -0.056392982602119446, + -0.07908158749341965, + 0.10767918825149536, + 0.016685353592038155, + 0.025175508111715317, + 0.020380504429340363, + -0.026559408754110336, + 0.05139994993805885, + 0.05455373600125313, + -0.030218159779906273, + -0.06378312408924103, + -0.07920321822166443, + -0.031244682148098946, + -0.026578761637210846, + 0.023589232936501503, + 0.0014229693915694952, + 0.05584422126412392, + 0.00364728388376534, + -0.03226839005947113, + -0.05344882607460022, + 0.03472594916820526, + 0.10694893449544907, + -0.05978007987141609, + 0.039476178586483, + 0.10558649897575378, + 0.02534046769142151, + -0.03159547969698906, + 0.0637003630399704, + 0.01878862828016281, + -0.009412908926606178, + 0.03146166354417801, + 0.03437702730298042, + 0.06842437386512756, + 0.07377239316701889, + 0.050513315945863724, + -0.0032443092204630375, + -0.04543150216341019, + -0.004565346520394087, + -0.006736705545336008, + -0.18465909361839294, + 0.0318593755364418, + -0.10431762039661407, + 0.1437624841928482, + 0.08709705621004105, + -0.024476170539855957, + -0.03103657066822052, + -0.05620330572128296, + 0.002001169603317976, + -0.0026359213516116142, + -0.0886441022157669, + 0.04748435690999031, + -0.0003053068066947162, + -0.05914338305592537, + -0.0567341186106205, + 4.298307592264488e-34, + 0.02945738472044468, + 0.02403208799660206, + -0.050609637051820755, + -0.07247352600097656, + -0.026929602026939392, + -0.023951981216669083, + 0.057465869933366776, + -0.03753373399376869, + 0.036712612956762314, + 0.028215749189257622, + -0.1788737028837204, + -0.057913798838853836, + 0.006793575827032328, + 0.030584469437599182, + -0.03138870373368263, + 0.0019077974138781428, + 0.07071053981781006, + 0.07096688449382782, + -0.04020152986049652, + 0.03826189413666725, + 0.0044722361490130424, + -0.04501548036932945, + -0.010854571126401424, + 0.11236684024333954, + 0.02562689036130905, + 0.02778172492980957, + 0.006065156310796738, + -0.06934524327516556, + -0.037841636687517166, + -0.02542959526181221, + -0.04608925059437752, + 0.013111816719174385, + 0.12901949882507324, + 0.002005747053772211, + -0.13802304863929749, + 0.08959609270095825, + 0.07572159916162491, + 0.05145873874425888, + 0.009625951759517193, + -0.007909168489277363, + 0.03477718308568001, + -0.09765944629907608, + 0.05519547313451767, + 0.050883397459983826, + -0.03312165290117264, + 0.027198975905776024, + -0.10624828934669495, + -0.0007383666234090924, + -0.026995273306965828, + 0.06556476652622223, + 0.004122094716876745, + 0.005913299508392811, + -0.006280100904405117, + 0.03152596205472946, + 0.018789328634738922, + -0.017505746334791183, + -0.0017733003478497267, + -0.05072113499045372, + -0.022982195019721985, + 0.04659666493535042, + 0.03750719130039215, + 0.023304030299186707, + -0.04818663001060486, + 0.09522034972906113, + 0.03436239808797836, + -0.05994795635342598, + 0.003850821638479829, + -0.06610757857561111, + -0.05455280840396881, + -0.0562172494828701, + -0.0353832021355629, + -0.031489454209804535, + -0.05183493718504906, + 0.04550214111804962, + -0.01781674101948738, + -0.068791963160038, + 0.0267914030700922, + 0.07739310711622238, + 0.029899582266807556, + 0.06382347643375397, + 0.00020639401918742806, + -0.027291562408208847, + -0.019822919741272926, + 0.04121118411421776, + -0.0404602512717247, + -0.04380789399147034, + 0.02518635429441929, + -0.059430744498968124, + 0.029538115486502647, + -0.04255227744579315, + -0.0008416259661316872, + 0.05970720574259758, + -0.08288248628377914, + -0.04533302038908005, + -0.06599119305610657, + -2.4341563431562463e-08, + 0.04430948570370674, + 0.010701457969844341, + -0.0013212347403168678, + 0.0051478175446391106, + -0.0048209382221102715, + -0.040956515818834305, + 0.006258008070290089, + 0.08166428655385971, + -0.07048596441745758, + -0.015384561382234097, + 0.02754158154129982, + 0.0035021340008825064, + -0.04410555213689804, + -0.02019972912967205, + 0.04588615894317627, + 0.021482612937688828, + 0.021717101335525513, + 0.006143475417047739, + -0.062223803251981735, + -0.08846081793308258, + -0.017697205767035484, + 0.016245024278759956, + -0.014583677053451538, + 0.0335921011865139, + -0.0358978696167469, + 0.0017579577397555113, + -0.030653608962893486, + -0.008313867263495922, + 0.12861742079257965, + -0.0625622496008873, + 0.0352596715092659, + 0.07210344821214676, + -0.02725175954401493, + 0.0330926887691021, + -0.07335877418518066, + 0.002854285528883338, + -0.016235770657658577, + 0.003084533615037799, + -0.04980764538049698, + 0.07521623373031616, + -0.03848963975906372, + 0.04268544912338257, + -0.009259707294404507, + -0.004615729674696922, + 0.05702667310833931, + 0.06326869130134583, + 0.05754556506872177, + -0.015982039272785187, + -0.040714867413043976, + -0.09376727789640427, + -0.030938800424337387, + -0.022563999518752098, + 0.04605354368686676, + 0.0685514509677887, + 0.029859527945518494, + 0.05415422096848488, + 0.004189935978502035, + 0.029727475717663765, + -0.013739590533077717, + 0.028589323163032532, + 0.08633503317832947, + 0.05292414501309395, + 0.038869503885507584, + 0.07257205247879028 + ], + "bomb-bold||*new*,gaming,grenade,explosive,war,weapon,fuse": [ + -0.03580455854535103, + 0.010944400914013386, + -0.05607205629348755, + -0.024889467284083366, + 0.003761873347684741, + 0.01673875004053116, + 0.10530398786067963, + -0.04614078253507614, + -0.04840947315096855, + 0.028176261112093925, + 0.05683160200715065, + 0.006550667341798544, + 0.0499773807823658, + 0.01991932839155197, + 0.061909306794404984, + 0.059653833508491516, + 0.047879658639431, + -0.026667749509215355, + -0.030440445989370346, + -0.033370111137628555, + 0.03286760672926903, + 0.05104715749621391, + 0.0541597418487072, + 0.003392872167751193, + 0.08627248555421829, + 0.07241049408912659, + 0.020467733964323997, + 0.05532053858041763, + -0.02365037612617016, + -0.0869891420006752, + 0.031893469393253326, + 0.0561390146613121, + 0.0062446556985378265, + 0.022950461134314537, + 0.07556141912937164, + -0.025388561189174652, + -0.04638764262199402, + 0.006678400561213493, + 0.012034022249281406, + 0.006997243966907263, + -0.08220349997282028, + -0.0200003981590271, + -0.04806271940469742, + 0.08637118339538574, + -0.048000603914260864, + 0.0031624408438801765, + -0.0847051814198494, + -0.0514184795320034, + 0.05800682306289673, + -0.0033180287573486567, + 0.0021982372272759676, + -0.10024517774581909, + -0.08376358449459076, + 0.030574796721339226, + 0.10192348062992096, + -0.09157970547676086, + -0.010930150747299194, + 0.03885584697127342, + 0.03323829919099808, + -0.002289287745952606, + -0.04270010441541672, + 0.029398376122117043, + 0.05740894377231598, + 0.0186256505548954, + 0.05946112051606178, + -0.023049093782901764, + 0.07736754417419434, + 0.05720539763569832, + -0.04292650893330574, + 0.029851017519831657, + 0.010843565687537193, + 0.05134104564785957, + 0.028835123404860497, + -0.03420798107981682, + -0.08176109194755554, + -0.03627723827958107, + 0.004165743477642536, + 0.0008684478816576302, + -0.0634939968585968, + -0.023538174107670784, + -0.05045957863330841, + -0.04183584451675415, + -0.05955790355801582, + -0.05549256131052971, + 0.016795115545392036, + 0.056805726140737534, + -0.10496712476015091, + -0.006408739369362593, + -0.019478941336274147, + 0.027338126674294472, + -0.09372439980506897, + 0.007266945205628872, + 0.08347069472074509, + 0.07781834155321121, + -0.005917857866734266, + -0.0008455928764306009, + 0.013041249476373196, + -0.07557013630867004, + -0.0447174571454525, + 0.11204995214939117, + 0.008206316269934177, + 0.02300497144460678, + -0.009746751748025417, + -0.022684181109070778, + -0.01591922901570797, + -0.038865793496370316, + -0.03873645141720772, + 0.026799950748682022, + -0.0569709837436676, + 0.027842368930578232, + 0.011732151731848717, + -0.05744342505931854, + -0.006577903404831886, + -0.13775376975536346, + 0.0020675642881542444, + -0.011491184122860432, + -0.0905110165476799, + -0.015089012682437897, + 0.02660958282649517, + 0.09743750840425491, + 0.09838203340768814, + -0.030905740335583687, + -0.05177977308630943, + -0.007119765039533377, + -0.031131472438573837, + 0.03545195236802101, + -0.03669746592640877, + -3.117380528995982e-33, + 0.06744612753391266, + 0.07770185172557831, + -0.03351038694381714, + 0.12517519295215607, + -0.045978643000125885, + -0.018252799287438393, + 0.00368190067820251, + -0.030608568340539932, + -0.06921546906232834, + 0.09639126807451248, + -0.058362387120723724, + 0.08203263580799103, + -0.04581277444958687, + 0.052560996264219284, + 0.055278800427913666, + -0.07241455465555191, + 0.030809450894594193, + 0.06286045908927917, + -0.054392702877521515, + 0.017245635390281677, + -0.040486566722393036, + 0.06639418005943298, + -0.010771206580102444, + -0.07978802174329758, + -0.018216455355286598, + 0.05035973712801933, + -0.037566814571619034, + -0.027798356488347054, + -0.03148027881979942, + 0.04037797823548317, + -0.01177152618765831, + 0.0397816002368927, + -0.024182699620723724, + 0.02438553422689438, + 0.02470432221889496, + 0.01264892052859068, + -0.1235131248831749, + -0.05273660272359848, + -0.08655150979757309, + -0.0562826544046402, + -0.07722510397434235, + -0.013729401864111423, + -0.12416110187768936, + 0.016615353524684906, + 0.08234935253858566, + -0.009576867334544659, + -0.058043140918016434, + -0.03534071892499924, + -0.00911170244216919, + -0.027296315878629684, + -0.024368468672037125, + -0.003480591345578432, + 0.0010863796342164278, + 0.00019937158504035324, + -0.016874024644494057, + -0.0121670663356781, + 0.022819118574261665, + -0.01960453949868679, + 0.02065103128552437, + 0.039205845445394516, + 0.04112181439995766, + 0.03058510646224022, + -0.011033127084374428, + 0.017982983961701393, + 0.015629982575774193, + 0.03598799183964729, + -0.04125376418232918, + 0.02027398906648159, + 0.021142220124602318, + 0.028668098151683807, + -0.02159029059112072, + 0.05397958308458328, + 0.04801494628190994, + 0.03188766911625862, + 0.035893991589546204, + -0.016101934015750885, + 0.026807013899087906, + -0.019835706800222397, + -0.02552109770476818, + -0.14460495114326477, + -0.08286380767822266, + -0.01804547943174839, + -0.07380522042512894, + 0.037709906697273254, + -0.058514948934316635, + 0.024002060294151306, + 0.0076432605274021626, + -0.08771465718746185, + -0.0459417998790741, + -0.02391638047993183, + -0.07958053797483444, + -0.07483647763729095, + 0.022132962942123413, + -0.11846639215946198, + -0.057873860001564026, + -2.1519138832706798e-35, + 0.02612374722957611, + 0.03758211433887482, + -0.0820183977484703, + -0.037861570715904236, + -0.02333660237491131, + 0.033817701041698456, + -0.00878350343555212, + 0.005994486156851053, + -0.08211305737495422, + 0.030098488554358482, + -0.0009200682980008423, + 0.016875751316547394, + -0.043857891112565994, + -0.06545104831457138, + 0.0429929681122303, + 0.027040263637900352, + 0.027612846344709396, + 0.013955521397292614, + 0.07591720670461655, + 0.05208277702331543, + 0.04186196252703667, + -0.02506762370467186, + -0.06115209311246872, + 0.012038160115480423, + 0.03330634534358978, + -0.017108064144849777, + 0.011671492829918861, + -0.0548616386950016, + 0.07474000006914139, + 0.015366479754447937, + 0.04904184490442276, + 0.012598447501659393, + -0.003912027925252914, + 0.07127104699611664, + 0.0035279709845781326, + -0.01026851311326027, + 0.0693458616733551, + -0.06451057642698288, + -0.004928486421704292, + -0.057393286377191544, + -0.04021954908967018, + 0.025855865329504013, + -0.009194232523441315, + 0.13703715801239014, + -0.08532355725765228, + 0.025915872305631638, + -0.02965741604566574, + -0.02771230973303318, + -0.010350794531404972, + 0.002215879736468196, + 0.053263451904058456, + -0.021478045731782913, + -0.041743211448192596, + -0.09614940732717514, + -0.021746601909399033, + 0.00830786395817995, + -0.06115821376442909, + -0.06701910495758057, + -0.04182662442326546, + 0.04642561078071594, + 0.059008799493312836, + -0.011955756694078445, + 0.03298155218362808, + 0.047603994607925415, + -0.04002588614821434, + -0.08008503913879395, + -0.02656114660203457, + 0.04147784411907196, + -0.0006917502614669502, + 0.004222995601594448, + -0.004590200260281563, + 0.03480108082294464, + -0.020716592669487, + -0.021562650799751282, + -0.05006729066371918, + -0.0877256840467453, + -0.04212974011898041, + -0.02923133596777916, + -0.04002050310373306, + 0.045261137187480927, + -0.015216391533613205, + 0.010171929374337196, + -0.1066630408167839, + 0.025482729077339172, + 0.02441452257335186, + 0.016921408474445343, + 0.04331747815012932, + 0.06526429951190948, + 0.0008945720619522035, + -0.03439265489578247, + -0.039951782673597336, + 0.04658890888094902, + 0.051293183118104935, + 0.07347603887319565, + -0.041689008474349976, + -2.182789948790287e-08, + -0.03643954545259476, + 0.05126892030239105, + -0.037160106003284454, + -0.023510443046689034, + 0.040788229554891586, + 0.015429818071424961, + -0.04302940517663956, + -0.03840046748518944, + -0.04633080214262009, + -0.04279493913054466, + 0.059868067502975464, + -0.002600090578198433, + -0.01764262095093727, + 0.0035561774857342243, + 0.039464373141527176, + 0.0693449154496193, + 0.007494061253964901, + 0.049838341772556305, + -0.031109536066651344, + -0.02711784839630127, + 0.008226006291806698, + 0.06192045658826828, + 0.004673320334404707, + -0.07630910724401474, + -0.00210118037648499, + 0.09015436470508575, + -0.05373865365982056, + -0.0032266404014080763, + 0.049581289291381836, + 0.1023237407207489, + 0.09842086583375931, + 0.026729630306363106, + -0.02379230037331581, + -0.048912663012742996, + -0.09138919413089752, + 0.07036884129047394, + 0.04764730483293533, + -0.002913849428296089, + 0.005220158025622368, + 0.0955980196595192, + -0.03864579275250435, + 0.018832141533493996, + -0.009572351351380348, + 0.03874467313289642, + -0.054382920265197754, + 0.012142298743128777, + 0.015158460475504398, + -0.10854233056306839, + -0.11593589931726456, + -0.10259643197059631, + 0.06554009765386581, + 0.030955204740166664, + -0.045615535229444504, + 0.05247899144887924, + 0.05904518812894821, + 0.14698711037635803, + 0.05823132395744324, + 0.04477613791823387, + 0.039495255798101425, + 0.014257599599659443, + 0.10086224228143692, + -0.006794310640543699, + 0.046459443867206573, + 0.037861716002225876 + ], + "bone-bold||dogbone": [ + -0.03882644325494766, + -0.01146661676466465, + 0.015921296551823616, + 0.003624732606112957, + -0.04330487549304962, + -0.04063861444592476, + 0.05025852099061012, + -0.013848019763827324, + 0.04722301661968231, + 0.021970247849822044, + 0.0206897109746933, + 0.018255257979035378, + 0.043016478419303894, + 0.006978446617722511, + -0.07454930990934372, + 0.007279242388904095, + 0.00415016757324338, + 0.03349481150507927, + 0.01940210536122322, + 0.025991346687078476, + -0.05903218314051628, + 0.04170862212777138, + 0.08120624721050262, + 0.04370652884244919, + -0.00264938292093575, + -0.01572467014193535, + 0.04708174616098404, + -0.001208914560265839, + 0.0045006354339420795, + -0.01282456424087286, + -0.01062921341508627, + 0.012370671145617962, + 0.08489378541707993, + -0.0329662524163723, + 0.031260743737220764, + 0.011561607010662556, + -0.013563339598476887, + -0.035149551928043365, + -0.04298403859138489, + 0.06422681361436844, + 0.031370822340250015, + -0.057999901473522186, + 0.024618595838546753, + 0.024467211216688156, + -0.047354988753795624, + 0.01587505452334881, + -0.10513416677713394, + -0.051616035401821136, + -0.011083696037530899, + 0.08477040380239487, + -0.056359805166721344, + -0.09044893085956573, + -0.019323576241731644, + 0.012070261873304844, + -0.04551194608211517, + -0.011029966175556183, + -0.06987472623586655, + -0.01766287535429001, + 0.004974074196070433, + -0.002776067703962326, + 0.01762094534933567, + 0.03441840410232544, + 0.009834612719714642, + 0.036535874009132385, + 0.08373558521270752, + 0.05073659121990204, + 0.0441734753549099, + 0.019634267315268517, + -0.10559000819921494, + 0.02947409823536873, + 0.07493090629577637, + -0.019396768882870674, + 0.015057144686579704, + -0.04819968715310097, + -0.08939582109451294, + 0.03746064379811287, + 0.009402008727192879, + -0.01924811117351055, + 0.07760654389858246, + -0.018525799736380577, + -0.11717568337917328, + -0.022147303447127342, + -0.05039139837026596, + 0.010212378576397896, + 0.022954270243644714, + 0.09479568898677826, + -0.07052861899137497, + -0.009060240350663662, + -0.12410878390073776, + -0.0005300429183989763, + -0.03270086273550987, + -0.023872775956988335, + -0.012486913241446018, + 0.03123152256011963, + -0.023395569995045662, + 0.02675808221101761, + -0.00564865255728364, + 0.027666427195072174, + -0.06346842646598816, + 0.06970233470201492, + -0.007757114712148905, + 0.07994326204061508, + 0.054443810135126114, + -0.03935498744249344, + 0.03197760507464409, + -0.09641799330711365, + -0.034367725253105164, + 0.022368183359503746, + -0.012617246247828007, + -0.040041398257017136, + -0.014862898737192154, + -0.07136112451553345, + -0.001445072703063488, + 0.04916442558169365, + 0.02760452963411808, + -0.012632946483790874, + -0.025530019775032997, + 0.00701659731566906, + 0.05745859816670418, + 0.0007259737467393279, + 0.007256264798343182, + -0.034522343426942825, + -0.08226604759693146, + -0.0341801755130291, + -0.0038157296366989613, + -0.0733206570148468, + -0.0520128570497036, + -1.6110262117324763e-33, + 0.09690149873495102, + 0.02817380614578724, + -0.035146716982126236, + -0.01559574343264103, + -0.009647194296121597, + 0.014087152667343616, + -0.08281311392784119, + -0.04575159028172493, + -0.12339998781681061, + 0.09452931582927704, + 0.036426857113838196, + 0.07759400457143784, + 0.05594303086400032, + -0.0520218163728714, + 0.06659416854381561, + -0.010950000956654549, + 0.014512090012431145, + -0.050020065158605576, + -0.018106600269675255, + 0.04300820082426071, + -0.022356541827321053, + 0.11800608038902283, + -0.004852281883358955, + -0.0014865417033433914, + -0.018334796652197838, + -0.08865686506032944, + -0.053321413695812225, + -0.10347411036491394, + -0.04171878844499588, + 0.03963262960314751, + 0.0007363518816418946, + -0.01139921322464943, + 0.05533697083592415, + -0.022835293784737587, + -0.05893001705408096, + -0.04726994410157204, + -0.029866566881537437, + -0.07633816450834274, + -0.07913151383399963, + 0.10368454456329346, + 0.1267039030790329, + -0.03820405900478363, + 0.00528508797287941, + 0.039676208049058914, + 0.03372042253613472, + 0.07491019368171692, + 0.01332447212189436, + 0.0040029422380030155, + -0.015736280009150505, + -0.026316668838262558, + 0.08261115103960037, + 0.038538359105587006, + 0.043862320482730865, + -0.04445881396532059, + -0.045685719698667526, + 0.02013375237584114, + 0.017720405012369156, + 0.004734351299703121, + 0.006383873987942934, + 0.08095510303974152, + 0.010787593200802803, + -0.06419143080711365, + 0.14017203450202942, + -0.049580562859773636, + -0.02393445558845997, + -0.0667174905538559, + -0.07194573432207108, + -0.038071997463703156, + -0.043981391936540604, + 0.04076715558767319, + 0.021172484382987022, + -0.00829391647130251, + 0.03195929527282715, + 0.06889982521533966, + -0.04693596065044403, + 0.0013833047123625875, + 0.05173046514391899, + 0.062333229929208755, + -0.027323942631483078, + -0.12484142929315567, + -0.05886894837021828, + 0.02278454788029194, + -0.10014417767524719, + 0.10358758270740509, + 0.04488169774413109, + 0.0414569191634655, + -0.01890181005001068, + -0.08249613642692566, + -0.02011943608522415, + 0.013012135401368141, + -0.05105524882674217, + -0.0700826570391655, + -0.04513540118932724, + -0.12196655571460724, + -0.052854519337415695, + 2.797876297161188e-34, + 0.09236177057027817, + 0.01622215285897255, + -0.009623202495276928, + -0.026130782440304756, + 0.0019313627853989601, + 0.01857207901775837, + 0.0034750904887914658, + 0.07185135781764984, + -0.026584792882204056, + 0.035690970718860626, + 0.07041159272193909, + 0.007955675944685936, + -0.05436384305357933, + -0.05921749025583267, + 0.04408253729343414, + 0.1098964661359787, + 0.038104936480522156, + 0.039808742702007294, + -0.015985770151019096, + -0.025254227221012115, + -0.049815308302640915, + -0.02058061957359314, + 0.05030350759625435, + 0.09242963790893555, + -0.0037322817370295525, + 0.08582975715398788, + 0.076997309923172, + -0.0059954156167805195, + -0.08078479766845703, + -0.05599529296159744, + -0.052150703966617584, + -0.0045230574905872345, + -0.02438424900174141, + -0.012593179009854794, + -0.07125261425971985, + 0.13794220983982086, + 0.017054157331585884, + -0.08317700028419495, + 0.0017202694434672594, + 0.015492157079279423, + 0.026988502591848373, + -0.025172926485538483, + -0.01775536499917507, + 0.06380654871463776, + -0.0409872904419899, + 0.012728283181786537, + -0.01031656377017498, + -0.0029503097757697105, + -3.5676610423251987e-05, + 0.06761724501848221, + 0.014269513078033924, + 0.02589348703622818, + 0.09191327542066574, + 0.00017697765724733472, + -0.049975939095020294, + -0.023744327947497368, + -0.03487105667591095, + -0.06935404986143112, + -0.06298419833183289, + 0.047020841389894485, + 0.03692113235592842, + 0.07552408427000046, + -0.025668734684586525, + 0.04630409553647041, + 0.015110270120203495, + -0.04178907722234726, + -0.016972027719020844, + -0.06547117978334427, + -0.06534736603498459, + 0.027260148897767067, + -0.013940629549324512, + 0.008423713967204094, + 0.005993697326630354, + 0.09376972913742065, + 0.003389652818441391, + 0.006790537387132645, + 0.021484725177288055, + -0.03485310450196266, + -0.003705554408952594, + 0.055179014801979065, + -0.08230467140674591, + -0.058085259050130844, + -0.04013786092400551, + 0.07969550788402557, + 0.028331942856311798, + 0.010245973244309425, + -0.0037530912086367607, + 0.1250040978193283, + -0.004624465014785528, + -0.03243748098611832, + -0.017964042723178864, + 0.0670471042394638, + 0.0032388102263212204, + -0.008561503142118454, + 0.031016193330287933, + -1.2648044389607094e-08, + -0.02436985820531845, + 0.022031791508197784, + -0.029930761083960533, + -0.008686807006597519, + 0.07996509969234467, + 0.014236354269087315, + -0.0687563493847847, + -0.12416882067918777, + -0.06174063682556152, + 0.028039179742336273, + 0.012936465442180634, + -0.017109593376517296, + -0.061560723930597305, + -0.02546326257288456, + 0.0026006714906543493, + 0.10611716657876968, + -0.032000672072172165, + 0.03385350480675697, + -0.04115729779005051, + -0.045213744044303894, + -0.05200723931193352, + 0.025891928002238274, + 0.08930735290050507, + -0.06047240272164345, + -0.016218598932027817, + 0.02163671888411045, + -0.01209237053990364, + 0.010482561774551868, + -0.04292939230799675, + 0.10494795441627502, + 0.09644301980733871, + 0.06167907267808914, + -0.0032969266176223755, + -0.03222253546118736, + -0.05317617952823639, + -0.013594602234661579, + 0.05243906006217003, + -0.048586100339889526, + -0.017829429358243942, + 0.07988088577985764, + -0.027618372812867165, + 0.04601996764540672, + -0.033218707889318466, + 0.012147649191319942, + -0.05653933435678482, + -0.004773864522576332, + 0.1067843809723854, + 0.006082778796553612, + -0.011454424820840359, + -0.05565450340509415, + -0.019091619178652763, + 0.021677706390619278, + -0.01518822181969881, + 0.05736355856060982, + -0.04859504476189613, + -0.005039958283305168, + 0.054761458188295364, + 0.07494305074214935, + 0.04234366491436958, + 0.09358356148004532, + 0.07548870146274567, + -0.06306099891662598, + 0.03727833926677704, + -0.0002673949929885566 + ], + "book-bold||reading,reader,novel,story,library": [ + 0.05052465945482254, + -0.08438887447118759, + -0.03819578140974045, + 0.07005477696657181, + -0.018877239897847176, + 0.02611437253654003, + 0.03624437749385834, + -0.014994456432759762, + 0.051018815487623215, + 0.03609775751829147, + -0.006112237460911274, + 0.11493365466594696, + 0.05894109234213829, + -0.02491617389023304, + -0.001039603492245078, + 0.03276974707841873, + -0.01072931382805109, + 0.03569256514310837, + 0.03817795589566231, + -0.049839623272418976, + 0.06567124277353287, + 0.08070205897092819, + 0.020108582451939583, + 0.0342097207903862, + 0.011751987040042877, + -0.04240043833851814, + 0.02939576841890812, + -0.039720114320516586, + -0.042174048721790314, + -0.0773550420999527, + -0.03478282317519188, + -0.011536745354533195, + 0.05070937052369118, + -0.030854517593979836, + 0.016058385372161865, + 0.01808519847691059, + 0.0121769979596138, + -0.009881694801151752, + 0.05004074051976204, + 0.04955047741532326, + 0.013173998333513737, + -0.024357870221138, + 0.004537865519523621, + 0.08898124098777771, + 0.002531718462705612, + -0.05145899951457977, + -0.061746057122945786, + -0.013781215995550156, + 0.016160767525434494, + 0.009191378019750118, + -0.05656321346759796, + -0.022188391536474228, + -0.13561291992664337, + -0.008001447655260563, + 0.009818583726882935, + 0.0511365570127964, + -0.10980265587568283, + -0.023761697113513947, + 0.032832127064466476, + -0.07017704844474792, + -0.008875459432601929, + -0.023032980039715767, + 0.02258661761879921, + 0.06790996342897415, + 0.04408621788024902, + 0.009166565723717213, + -0.010257529094815254, + 0.04412014037370682, + -0.041338782757520676, + 0.01712307147681713, + -0.017354095354676247, + 0.042738933116197586, + 0.07004262506961823, + -0.02743278630077839, + -0.03306761384010315, + -0.02359200268983841, + -0.022331751883029938, + -0.045824289321899414, + 0.0011422655079513788, + -0.09342557191848755, + -0.12512890994548798, + -0.05010003224015236, + -0.014917494729161263, + -0.02223101072013378, + -0.026791105046868324, + 0.053779784590005875, + -0.04214290529489517, + -0.09887921810150146, + -0.021536773070693016, + 0.009562290273606777, + 0.006088440306484699, + -0.0901549905538559, + 0.020383890718221664, + 0.09497132897377014, + -0.07787617295980453, + 0.04918099567294121, + 0.05610497668385506, + -0.04469985514879227, + -0.02694908156991005, + 0.07336251437664032, + 0.029084015637636185, + 0.10343776643276215, + 0.0521450899541378, + 0.0016764015890657902, + -0.009387608617544174, + -0.12299278378486633, + -0.05967119708657265, + -0.06062900274991989, + -0.09162124991416931, + -0.02474157325923443, + 0.0035006136167794466, + -0.0639951229095459, + -0.006641399580985308, + -0.0041115907952189445, + 0.033284541219472885, + -0.023123381659388542, + 0.03975725173950195, + -0.005307464394718409, + 0.11729129403829575, + 0.10639648884534836, + -0.007471042685210705, + 0.06331464648246765, + -0.027205273509025574, + 0.017431309446692467, + -0.029887421056628227, + -0.02703132852911949, + 0.08877696096897125, + -1.4329204504836681e-33, + 0.01847495324909687, + 0.045468758791685104, + -0.052040670067071915, + 0.10489941388368607, + -0.00651630200445652, + -0.03332831338047981, + 0.03251282498240471, + -0.022729121148586273, + -0.0971856340765953, + -0.004341284744441509, + 0.024594085291028023, + 0.07724588364362717, + -0.05125146731734276, + 0.07086428999900818, + -0.023354463279247284, + 0.03253784403204918, + -0.07426697760820389, + -0.010446479544043541, + -0.057656873017549515, + 0.02311667613685131, + -0.021916715428233147, + 0.02444159984588623, + -0.03302399069070816, + -0.014108280651271343, + -0.039051953703165054, + -0.03867589309811592, + 0.021104959771037102, + -0.040678296238183975, + -0.0668603777885437, + 0.041198477149009705, + 0.015764499083161354, + 0.004028715658932924, + 0.02861122228205204, + -0.07968921959400177, + -0.016062336042523384, + -0.02899576909840107, + -0.04746924713253975, + -0.03360406309366226, + 0.060917943716049194, + 0.06583379209041595, + -0.11803202331066132, + -0.030866539105772972, + -0.006270006764680147, + -0.03777812793850899, + 0.036810148507356644, + 0.15869870781898499, + 0.0019073985749855638, + -0.021657828241586685, + -0.015284283086657524, + 0.025561338290572166, + -0.023199686780571938, + -0.0581483319401741, + -0.03129184991121292, + -0.012728163972496986, + 0.04446517303586006, + 0.0013374886475503445, + -0.02688860148191452, + 0.06874535977840424, + 0.07116870582103729, + -0.0026548730675131083, + 0.10071822255849838, + 0.058120470494031906, + 0.0651567131280899, + -0.00979013741016388, + 0.05374208837747574, + 0.10622822493314743, + -0.07884201407432556, + -0.009496298618614674, + 0.03570982441306114, + -0.023323191329836845, + -0.04477960243821144, + 0.053548891097307205, + 0.054677460342645645, + 0.02610916458070278, + -0.06447640806436539, + 0.03575854375958443, + -0.030642228201031685, + -0.029058557003736496, + -0.01824233867228031, + -0.08322762697935104, + -0.08275774866342545, + 0.015076187439262867, + -0.004896189086139202, + 0.07390737533569336, + -0.08680746704339981, + 0.006268580909818411, + 0.032432764768600464, + -0.1056450754404068, + -0.04402082413434982, + 0.005972112063318491, + 0.008821150287985802, + 0.014971074648201466, + -0.01641223207116127, + -0.10276231169700623, + -0.04638345539569855, + -5.935434645866515e-34, + 0.049411214888095856, + -0.049618687480688095, + -0.037617865949869156, + -0.03507791459560394, + -0.0064679281786084175, + 0.010244340635836124, + -0.14570893347263336, + -0.005098170600831509, + 0.04910588636994362, + 0.011327960528433323, + -0.11821869015693665, + -0.032908085733652115, + -0.0005413658218458295, + -0.005000719800591469, + 0.03344592824578285, + -0.029297539964318275, + 0.07725752145051956, + -0.04187912493944168, + -0.02912801504135132, + 0.06889733672142029, + -0.06112932786345482, + 0.019045956432819366, + -0.06749545782804489, + 0.0157218836247921, + 0.08318156749010086, + 0.021936744451522827, + -0.029416562989354134, + -0.025929631665349007, + -0.11437618732452393, + -0.0357944592833519, + -0.0005493828211911023, + -0.019518572837114334, + 0.10156793892383575, + -0.010178345255553722, + -0.10381580144166946, + 0.03075534477829933, + 0.07697091996669769, + -0.07582592964172363, + 0.016410676762461662, + -0.0090847322717309, + 0.04399947077035904, + 0.013839228078722954, + 0.010525565594434738, + -0.06402423232793808, + -0.02791273035109043, + -0.0007510335999540985, + 0.008187580853700638, + -0.031095124781131744, + 0.01971818506717682, + 0.0402597114443779, + -0.026506202295422554, + -0.011399619281291962, + 0.010901139117777348, + -0.009505442343652248, + -0.030356919392943382, + -0.001144360052421689, + 0.04660298302769661, + -0.050835203379392624, + 0.053990479558706284, + 0.0249614380300045, + -0.052919913083314896, + 0.04646699130535126, + -0.06042173504829407, + 0.05666739121079445, + 0.00022977856860961765, + -0.12062286585569382, + -0.01651483215391636, + -0.0705711841583252, + 0.07091265916824341, + -0.020146343857049942, + -0.08667904138565063, + -0.004498899914324284, + 0.02260279841721058, + -0.0004979130462743342, + 0.04004421830177307, + 0.05067157745361328, + 0.023182900622487068, + 0.011379552073776722, + -0.05283421277999878, + 0.02363855019211769, + -0.03145172446966171, + -0.006272302474826574, + -0.019775710999965668, + 0.08679911494255066, + 0.01329821813851595, + 0.07603555172681808, + 0.026591384783387184, + -0.037010639905929565, + 0.011128388345241547, + -0.027296699583530426, + -0.027471015229821205, + 0.005750488955527544, + 0.005566867534071207, + 0.020057275891304016, + 0.038987476378679276, + -1.895841350574301e-08, + -0.017387691885232925, + -0.02681361325085163, + -0.06902308017015457, + 0.007144881412386894, + 0.0074171703308820724, + 0.024991096928715706, + -0.02347167208790779, + 0.017651010304689407, + -0.09456204622983932, + 0.04574330523610115, + 0.02567950449883938, + 0.00025439471937716007, + -0.01926260255277157, + -0.024399438872933388, + 0.01651349663734436, + 0.025836344808340073, + 0.11441624164581299, + -0.03308174014091492, + -0.026323633268475533, + -0.003001363715156913, + 0.10129298269748688, + 0.036213114857673645, + 0.06534072011709213, + -0.05367778241634369, + 0.02519172430038452, + 0.08631101995706558, + -0.04437815025448799, + -0.0822482779622078, + 0.047828324139118195, + 0.057548653334379196, + 0.023874642327427864, + 0.10507814586162567, + -0.010981470346450806, + 0.031147470697760582, + -0.043247923254966736, + 0.00343718403019011, + 0.026679258793592453, + 0.0594739206135273, + -0.04643494263291359, + 0.13041368126869202, + 0.02608727104961872, + -0.03195695951581001, + -0.0033215417061001062, + 0.005241360515356064, + 0.012002073228359222, + -0.027190282940864563, + 0.051770564168691635, + -0.05482923984527588, + 0.02092178910970688, + -0.06561468541622162, + -0.0009033995447680354, + -0.03068295679986477, + 0.10674981027841568, + 0.03567657247185707, + -0.03837542235851288, + -0.011231019161641598, + 0.009997147135436535, + 0.0774834007024765, + -0.09932402521371841, + -0.003575390437617898, + 0.1343661993741989, + 0.0009221951477229595, + -0.004285823553800583, + 0.04350980371236801 + ], + "book-bookmark-bold||reading,reader,novel,story,library,favorites,favorited": [ + 0.016758928075432777, + -0.087949737906456, + -0.0554911233484745, + 0.0387636162340641, + 0.04343840107321739, + 0.038850996643304825, + 0.06027110293507576, + 0.018666017800569534, + 0.013114983215928078, + 0.03617807477712631, + -0.0016059918561950326, + 0.10701549053192139, + 0.08611705899238586, + -0.020541222766041756, + -0.012653947807848454, + 0.04459860920906067, + -0.027539318427443504, + 0.010417116805911064, + 0.031791843473911285, + -0.06873880326747894, + 0.03250337764620781, + 0.04972071573138237, + 0.008807159028947353, + 0.03534843400120735, + 0.023944616317749023, + -0.02146696113049984, + 0.021850667893886566, + -0.028812121599912643, + -0.05501043424010277, + -0.045783739537000656, + 0.0028552403673529625, + -0.03967197984457016, + 0.044083353132009506, + -0.022838901728391647, + -0.01003776304423809, + -0.02238982357084751, + -0.012872039340436459, + -0.03157414495944977, + 0.045555006712675095, + 0.026256756857037544, + -0.00639243284240365, + -0.04834378883242607, + -0.02131260558962822, + 0.08843899518251419, + 0.006362569518387318, + -0.015139084309339523, + -0.04168229550123215, + 0.014346825890243053, + -0.010538861155509949, + 0.06884665042161942, + -0.02024652622640133, + -0.03764108940958977, + -0.1612403690814972, + -0.0128100560978055, + 0.05226493999361992, + 0.034967996180057526, + -0.12893551588058472, + -0.04147102311253548, + 0.002360458252951503, + -0.030636977404356003, + 0.0105518139898777, + -0.0456986278295517, + 0.029399022459983826, + 0.05621719732880592, + 0.05687678977847099, + -0.06915698200464249, + -0.02341565117239952, + 0.015187838114798069, + -0.025325732305645943, + 0.022848395630717278, + -0.040067583322525024, + 0.062472470104694366, + 0.07664979994297028, + 0.012881685979664326, + 0.012984758242964745, + -0.022250091657042503, + -0.02875017747282982, + -0.05876418948173523, + -0.010779323056340218, + -0.06361174583435059, + -0.10786809772253036, + -0.051153481006622314, + -0.006880910601466894, + -0.022552886977791786, + 0.04367418214678764, + 0.05222645401954651, + -0.026881858706474304, + -0.09001321345567703, + -0.04211241751909256, + 0.00775590306147933, + -0.001347189536318183, + -0.10147499293088913, + 0.06655187159776688, + 0.043570999056100845, + -0.08753395080566406, + 0.03390190750360489, + 0.06334076821804047, + -0.03762669861316681, + -0.04403091222047806, + 0.03673447296023369, + 0.013752010650932789, + 0.09759949147701263, + 0.03761705383658409, + 0.015208343975245953, + -0.004062974825501442, + -0.06691201776266098, + -0.07159271836280823, + -0.018988078460097313, + -0.06343092024326324, + -0.040124472230672836, + -0.03795847296714783, + -0.03484537824988365, + -0.003856241935864091, + -0.0741131454706192, + -0.0642397329211235, + -0.04993808642029762, + 0.007160680368542671, + -0.006438568700104952, + 0.1734631359577179, + 0.0879594087600708, + 0.006117659155279398, + 0.047659747302532196, + 0.003386804601177573, + -0.020639890804886818, + -0.11304109543561935, + 0.008289223536849022, + 0.07880712300539017, + -2.9276811792057006e-34, + 0.033615827560424805, + 0.025184083729982376, + -0.10512617230415344, + 0.008648059330880642, + -0.01251991931349039, + -0.031738508492708206, + -0.01074208877980709, + -0.03427071496844292, + -0.10615690052509308, + -0.06844280660152435, + 0.06206020712852478, + 0.07279156148433685, + -0.05509963259100914, + 0.14758673310279846, + 0.018389146775007248, + 0.028136800974607468, + -0.024338794872164726, + -0.0006085322238504887, + -0.071658194065094, + -0.04053470492362976, + -0.018787000328302383, + 0.09369724243879318, + -0.04083722084760666, + -0.018606465309858322, + -0.009029383771121502, + -0.03179095312952995, + 0.028325576335191727, + -0.018156813457608223, + -0.05491843819618225, + 0.039765600115060806, + 0.026395689696073532, + -0.038623008877038956, + 0.015646403655409813, + -0.0964294895529747, + -0.017880653962492943, + 0.0412987656891346, + -0.043754905462265015, + -0.04637022316455841, + 0.07482736557722092, + 0.00331905041821301, + -0.09331179410219193, + -0.060907475650310516, + -0.025625567883253098, + -0.032614294439554214, + -0.021532313898205757, + 0.13309185206890106, + -0.0305346492677927, + 0.012395955622196198, + -0.004877817817032337, + -0.021420534700155258, + -0.008076689206063747, + -0.07011082768440247, + -0.021525783464312553, + -0.0022134212777018547, + 0.013240099884569645, + -0.0017087530577555299, + -0.041212160140275955, + 0.04754596948623657, + 0.0925927385687828, + -0.0025874697603285313, + 0.04852737486362457, + 0.05979562923312187, + 0.11720133572816849, + -0.04103893041610718, + -0.006547326687723398, + 0.11734025925397873, + -0.005467611365020275, + 0.03398735821247101, + 0.02767501398921013, + 0.033230382949113846, + -0.020340032875537872, + 0.07043327391147614, + 0.07565030455589294, + -0.02116732858121395, + -0.07548383623361588, + 0.007301675155758858, + -0.033299703150987625, + -0.02067233994603157, + -0.04975048080086708, + -0.1086525022983551, + -0.06016167625784874, + -0.03471304103732109, + -0.011032245121896267, + 0.05739261209964752, + -0.06554068624973297, + -0.010640900582075119, + 0.001214406336657703, + -0.11061432212591171, + -0.06810843199491501, + -0.06512461602687836, + 0.017960665747523308, + 0.03152095153927803, + 0.012033127248287201, + -0.06393355876207352, + -0.08255914598703384, + -1.138260199918007e-33, + 0.0472552515566349, + -0.06523948907852173, + -0.019509579986333847, + 0.02802455425262451, + -0.028597554191946983, + -0.009835650213062763, + -0.10753099620342255, + -0.022492188960313797, + 0.00946166180074215, + 0.00888547208160162, + -0.08605192601680756, + -0.036216799169778824, + -0.04761146381497383, + -0.01409199833869934, + 0.006251197308301926, + 0.025902634486556053, + 0.03663906455039978, + -0.010929308831691742, + -0.06077276170253754, + 0.019145606085658073, + -0.07403946667909622, + -0.016049951314926147, + -0.0686444342136383, + 0.04933137074112892, + 0.09164189547300339, + -0.012410919182002544, + -0.015148799866437912, + -0.06244093179702759, + -0.07795046269893646, + -0.05994880944490433, + 0.05093872547149658, + -0.0034395179245620966, + 0.06735298782587051, + -0.01518661342561245, + -0.06855209171772003, + 0.05404604226350784, + 0.03383232653141022, + -0.05135941505432129, + -0.0049791159108281136, + 0.04797529801726341, + 0.07644730806350708, + 0.010524434968829155, + 0.06671199947595596, + -0.015509680844843388, + 0.0008830229635350406, + 0.018367931246757507, + -0.02179866097867489, + 0.010800966992974281, + 0.018216343596577644, + 0.03764066845178604, + 0.01525869220495224, + -0.02086472138762474, + 0.021154670044779778, + -0.02852271869778633, + -0.016335761174559593, + 0.06325756758451462, + 0.053835682570934296, + 0.016690997406840324, + 0.06097686290740967, + 0.0007961649098433554, + -0.03077838011085987, + 0.006414899602532387, + -0.03675223886966705, + 0.09020229429006577, + -0.0024734903126955032, + -0.12706156075000763, + -0.021333571523427963, + -0.04245736449956894, + 0.003778687445446849, + -0.018754106014966965, + -0.07508570700883865, + 0.04456830769777298, + 0.025687916204333305, + -0.03869490697979927, + 0.013136371038854122, + 0.007491281256079674, + 0.04906681180000305, + 0.026160534471273422, + -0.04899982735514641, + 0.02380036748945713, + -0.00459615234285593, + 0.012559468857944012, + 0.0005101037677377462, + 0.041823968291282654, + 0.02469469979405403, + 0.03831478953361511, + 0.001585656893439591, + 0.014206694439053535, + -0.0416831336915493, + -0.03327613323926926, + 0.017085308209061623, + 0.042942147701978683, + 0.00113303039688617, + 0.028685016557574272, + 0.01807057112455368, + -2.088651207543535e-08, + -0.051843829452991486, + -0.046697940677404404, + -0.05426248162984848, + 0.0067386445589363575, + 0.02473074197769165, + 0.03452155366539955, + -0.01918342337012291, + 0.058119192719459534, + -0.037579845637083054, + -0.01383924763649702, + 0.06588142365217209, + -0.00218334817327559, + -0.10650676488876343, + -0.0453018993139267, + 0.038700543344020844, + 0.017014773562550545, + 0.09706901013851166, + 0.004718021024018526, + -0.015381905250251293, + 0.008246678858995438, + 0.0480816625058651, + 0.05774756148457527, + 0.05821303278207779, + -0.0426739938557148, + 0.022186165675520897, + 0.11958624422550201, + -0.010123702697455883, + 0.010853724554181099, + 0.09102284908294678, + 0.08456586301326752, + 0.027870235964655876, + 0.09135015308856964, + -0.024742651730775833, + -0.02559196949005127, + -0.019957179203629494, + 0.05385865271091461, + 0.02030024863779545, + 0.02111555077135563, + -0.037163957953453064, + 0.12089469283819199, + 0.062349796295166016, + -0.04395485296845436, + 0.033404842019081116, + 0.01316947303712368, + -0.02896266244351864, + -0.015287857502698898, + 0.05752500519156456, + -0.042621709406375885, + 0.032746538519859314, + -0.08473881334066391, + -0.03025558777153492, + -0.06505005806684494, + 0.10453581064939499, + 0.01342596672475338, + -0.006521363742649555, + 0.007968501187860966, + -0.003786924295127392, + 0.047630492597818375, + -0.0056946719996631145, + -0.015080543234944344, + 0.16336195170879364, + 0.04579903557896614, + -0.0025367853231728077, + 0.10662254691123962 + ], + "book-open-bold||*updated*,reading,reader,novel,story,library": [ + 0.044462837278842926, + -0.06899791955947876, + -0.05288508161902428, + 0.0844854861497879, + 0.016230978071689606, + 0.010568076744675636, + -0.013048859313130379, + -0.0278937965631485, + 0.058455709367990494, + 0.052707936614751816, + -0.007665188517421484, + 0.12462100386619568, + 0.022696418687701225, + -0.04500859975814819, + 0.003443766850978136, + 0.05279837176203728, + -0.030124424025416374, + 0.0203262846916914, + 0.032263923436403275, + -0.031451884657144547, + 0.019229821860790253, + 0.11436238139867783, + 0.03059677965939045, + 0.008341536857187748, + 0.0018746134592220187, + -0.04819175601005554, + 0.004484998993575573, + -0.05506107956171036, + -0.03840825334191322, + -0.09348921477794647, + -0.020529363304376602, + -0.0041050841100513935, + 0.07651280611753464, + -0.0441141352057457, + 0.05649714171886444, + 0.01682167686522007, + 0.011927679181098938, + 0.0062386165373027325, + 0.026052454486489296, + 0.027741121128201485, + 0.03208184987306595, + -0.04601183161139488, + -0.020934760570526123, + 0.09733648598194122, + -0.02057202160358429, + -0.05183737352490425, + -0.06259575486183167, + -0.05185595527291298, + 0.02160782366991043, + 0.02388821914792061, + -0.06497987359762192, + -0.057390373200178146, + -0.16624173521995544, + -0.03391636908054352, + 0.029426658526062965, + 0.04970864579081535, + -0.0721060037612915, + -0.044822726398706436, + 0.009454389102756977, + -0.08530600368976593, + 0.0211538877338171, + 0.00995563343167305, + -0.011758235283195972, + 0.06969775259494781, + 0.01724965125322342, + 0.00031863086041994393, + -0.023860443383455276, + 0.03288912773132324, + -0.019138870760798454, + -0.03589259460568428, + -0.010760403238236904, + 0.070662721991539, + 0.07477963715791702, + -0.015663577243685722, + -0.06236809864640236, + -0.027112582698464394, + -0.021073535084724426, + -0.03965435549616814, + 0.020813563838601112, + -0.09654965996742249, + -0.07435780018568039, + -0.0741741806268692, + -0.01836453564465046, + -0.020792273804545403, + 0.007346511818468571, + 0.0700017586350441, + -0.030493464320898056, + -0.08682618290185928, + -0.026024961844086647, + 0.02636876329779625, + 0.007042582146823406, + -0.10094432532787323, + 0.0217598807066679, + 0.06840486824512482, + -0.11901304125785828, + 0.01664060913026333, + 0.051874883472919464, + -0.03823030740022659, + -0.0026317883748561144, + 0.10918624699115753, + 0.023911861702799797, + 0.10254111140966415, + 0.047301795333623886, + 0.019177906215190887, + -0.03498809412121773, + -0.09508314728736877, + -0.02056942880153656, + -0.012271633371710777, + -0.08900171518325806, + -0.03390112519264221, + 0.024520011618733406, + -0.11100419610738754, + 0.012698003090918064, + -0.059153370559215546, + 0.000525323674082756, + -0.022044172510504723, + 0.029461873695254326, + 0.0029927166178822517, + 0.10972651094198227, + 0.12239891290664673, + 0.0017212382517755032, + 0.056745223701000214, + -0.036186836659908295, + -0.00923959817737341, + -0.053964003920555115, + -0.01593240536749363, + 0.07912690937519073, + -1.476150540932104e-33, + 0.020415814593434334, + 0.03880171477794647, + -0.043187882751226425, + 0.0924067273736, + 0.016007808968424797, + -0.025380531325936317, + -0.013135782442986965, + -0.038865070790052414, + -0.11246778070926666, + -0.010267657227814198, + 0.06945478171110153, + 0.08868006616830826, + -0.0810457393527031, + 0.09423409402370453, + -0.01572926715016365, + 0.0025194725021719933, + -0.04390326514840126, + 0.031163332983851433, + -0.05014367029070854, + 0.008149574510753155, + -0.030608240514993668, + 0.024507857859134674, + -0.03147914260625839, + -0.011086396872997284, + -0.041382741183042526, + -0.04423064365983009, + 0.022514546290040016, + -0.035312797874212265, + -0.06302852928638458, + 0.030926959589123726, + 0.03327915444970131, + -0.006948566995561123, + 0.025214411318302155, + -0.04989892989397049, + -0.03506116569042206, + -0.01477222703397274, + -0.07010174542665482, + -0.06722932308912277, + 0.0720929503440857, + 0.011860922910273075, + -0.13952790200710297, + -0.02135329693555832, + -0.015917200595140457, + -0.03251933678984642, + 0.04156625643372536, + 0.13751113414764404, + -0.03125932812690735, + -0.0004892286378890276, + -0.0033251421991735697, + 0.005332591012120247, + -0.01624358631670475, + -0.026352114975452423, + -0.06701657176017761, + -0.004614095203578472, + 0.01558325532823801, + 0.0010200488613918424, + -0.026876799762248993, + 0.06099738925695419, + 0.08088730275630951, + 0.016429346054792404, + 0.10722610354423523, + 0.06958293914794922, + 0.04431231692433357, + -0.030694900080561638, + 0.03089050017297268, + 0.09398861974477768, + -0.020516425371170044, + -0.005717386491596699, + 0.029430026188492775, + -0.008406590670347214, + -0.06941614300012589, + 0.030813364312052727, + 0.04704456031322479, + 0.03664949908852577, + -0.0628783255815506, + 0.03944988548755646, + -0.04157020151615143, + -0.0172895435243845, + 0.015956828370690346, + -0.09306930005550385, + -0.01838327944278717, + -0.026527073234319687, + -0.01722707226872444, + 0.07927197962999344, + -0.10013317316770554, + 0.004226843360811472, + -0.0021631696727126837, + -0.05615377798676491, + -0.03792199864983559, + 0.0031867336947470903, + -0.019083356484770775, + 0.022737283259630203, + -0.048941753804683685, + -0.07743555307388306, + -0.04894834756851196, + -8.921520904741294e-34, + 0.06272166222333908, + -0.060591161251068115, + -0.0557367280125618, + -0.025851722806692123, + -0.010716915130615234, + 0.010097699239850044, + -0.1309223622083664, + 0.008133197203278542, + 0.0697571337223053, + 0.008074751123785973, + -0.057081278413534164, + -0.003353090025484562, + 0.034529607743024826, + 0.0016263689612969756, + 0.017498992383480072, + -0.04097292944788933, + 0.057742152363061905, + -0.00663931155577302, + -0.0739760547876358, + 0.09586562216281891, + -0.08007658272981644, + 0.006940990686416626, + -0.06584139168262482, + 0.0028030788525938988, + 0.144056499004364, + 0.018655046820640564, + -0.028183704242110252, + -0.011753350496292114, + -0.0899665579199791, + -0.04672398790717125, + -0.01903069205582142, + -0.028607726097106934, + 0.05691136047244072, + 0.0009998747846111655, + -0.0777953639626503, + 0.03517303243279457, + 0.10422947257757187, + -0.06506078690290451, + 0.009964754804968834, + 0.03279867395758629, + 0.06372079253196716, + 0.02690628170967102, + 0.009756481274962425, + -0.05296051874756813, + -0.04077428951859474, + 0.01661526784300804, + -0.05285954102873802, + -0.017792442813515663, + -0.02302267588675022, + 0.014348630793392658, + -0.0216054804623127, + -0.01016836054623127, + 0.011853447183966637, + -0.06148914620280266, + -0.00260551949031651, + 0.03194383904337883, + 0.0383027121424675, + -0.040400948375463486, + 0.01630866341292858, + 0.008617541752755642, + -0.03817211836576462, + 0.0493207685649395, + -0.06964989751577377, + 0.0453445240855217, + -0.002805220428854227, + -0.12812712788581848, + -0.00813541654497385, + -0.05974941328167915, + 0.03122849389910698, + -0.040030933916568756, + -0.05114144831895828, + -0.017545586451888084, + 0.003789945738390088, + -0.028595946729183197, + 0.03633050248026848, + 0.03798970952630043, + 0.052466414868831635, + -0.036982472985982895, + -0.03314675763249397, + 0.026714196428656578, + -0.037435248494148254, + -0.009256742894649506, + 0.015044210478663445, + 0.06787470728158951, + 0.0167065616697073, + 0.06699592620134354, + 0.03140825033187866, + -0.00946495309472084, + 0.00991315208375454, + -0.005313473287969828, + -0.0566537082195282, + 0.014189336448907852, + 0.03109363093972206, + 0.038484711199998856, + -0.00268518622033298, + -2.1769553271155928e-08, + -0.05653655156493187, + -0.062709279358387, + -0.038230691105127335, + 0.024638498201966286, + 0.028065375983715057, + 0.012915180064737797, + -0.02037041448056698, + 0.01455856952816248, + -0.06159934028983116, + 0.004253406543284655, + 0.03917413577437401, + 0.01374713983386755, + -0.02415112592279911, + -0.029029112309217453, + 0.0011234513949602842, + 0.0530879832804203, + 0.0953621044754982, + -0.012505695223808289, + -0.022087333723902702, + -0.023371657356619835, + 0.08953689783811569, + 0.06910184025764465, + 0.09543618559837341, + -0.029481682926416397, + 0.029170038178563118, + 0.055896956473588943, + -0.061443991959095, + -0.05004130303859711, + 0.05049288645386696, + 0.05739433318376541, + 0.025847136974334717, + 0.08260001242160797, + -0.0007039144402369857, + 0.020729638636112213, + -0.04140244796872139, + 0.04469745606184006, + 0.029226606711745262, + 0.10376787185668945, + -0.04146247357130051, + 0.13846170902252197, + 0.013791831210255623, + -0.030855627730488777, + 0.011341956444084644, + 0.01139216497540474, + -0.012460658326745033, + -0.026157565414905548, + 0.048753730952739716, + -0.02527781017124653, + -0.01755581796169281, + -0.07682185620069504, + -0.01792863942682743, + -0.01839883252978325, + 0.09823338687419891, + 0.01831461861729622, + -0.03134395554661751, + 0.020697155967354774, + 0.01828896440565586, + 0.08791046589612961, + -0.07664643973112106, + 0.0021607636008411646, + 0.10101006925106049, + -0.03858315572142601, + -0.00251778750680387, + 0.06814934313297272 + ], + "book-open-text-bold||*updated*,reading,reader,novel,story,library": [ + 0.04490992799401283, + -0.04714376479387283, + -0.0598316453397274, + 0.08261852711439133, + 0.024296332150697708, + 0.008541879244148731, + -0.0001750686642481014, + -0.026035387068986893, + 0.061410676687955856, + 0.053152602165937424, + -0.0018376146908849478, + 0.12723535299301147, + 0.028199322521686554, + -0.047792259603738785, + 0.00442624744027853, + 0.04765257611870766, + -0.021916480734944344, + 0.024337954819202423, + 0.027286896482110023, + -0.044188763946294785, + 0.017149873077869415, + 0.11726664751768112, + 0.03542128950357437, + 0.021880805492401123, + 0.006784044671803713, + -0.028207242488861084, + -0.008424874395132065, + -0.05028154328465462, + -0.03702462464570999, + -0.08118920773267746, + -0.031900323927402496, + -0.002653904724866152, + 0.08477946370840073, + -0.03316545486450195, + 0.033602241426706314, + 0.00899225752800703, + 0.011330767534673214, + 0.012108583003282547, + 0.021698512136936188, + 0.03019656613469124, + 0.01761927455663681, + -0.05741335079073906, + -0.018763907253742218, + 0.09718197584152222, + -0.012475422583520412, + -0.04585392400622368, + -0.07447195053100586, + -0.03768356516957283, + 0.018486324697732925, + 0.028610728681087494, + -0.07031435519456863, + -0.060995977371931076, + -0.163381889462471, + -0.02297041192650795, + 0.028302570804953575, + 0.050994228571653366, + -0.06840969622135162, + -0.04046989977359772, + 0.014537994749844074, + -0.08183345198631287, + 0.024336019530892372, + 0.017502745613455772, + -0.006696388591080904, + 0.07810768485069275, + 0.01223307941108942, + 0.00931564625352621, + -0.007356420159339905, + 0.03490419313311577, + -0.023137126117944717, + -0.029803410172462463, + -0.010921274311840534, + 0.06685664504766464, + 0.06798510998487473, + -0.003972937818616629, + -0.06194553151726723, + -0.027377597987651825, + -0.0213194340467453, + -0.037756480276584625, + 0.01126326248049736, + -0.08796248584985733, + -0.07571373134851456, + -0.061222270131111145, + -0.003952859900891781, + 0.003450329415500164, + 0.008222213014960289, + 0.07422680407762527, + -0.020747847855091095, + -0.08514386415481567, + -0.02749730460345745, + 0.032840874046087265, + 0.011414921842515469, + -0.107658252120018, + 0.035912707448005676, + 0.06451982259750366, + -0.1476513147354126, + 0.023679062724113464, + 0.04448435455560684, + -0.05194003880023956, + -0.002745790174230933, + 0.10667929798364639, + 0.015880906954407692, + 0.09930424392223358, + 0.055869244039058685, + 0.015488235279917717, + -0.04634391516447067, + -0.09997513145208359, + -0.013159127905964851, + -0.017685528844594955, + -0.08039689064025879, + -0.030310653150081635, + 0.03176187351346016, + -0.1076020672917366, + -0.01090222131460905, + -0.06572172790765762, + 0.0012695803306996822, + -0.022374393418431282, + 0.035845622420310974, + 0.0070382230915129185, + 0.11216546595096588, + 0.12674206495285034, + -0.007356145419180393, + 0.044935181736946106, + -0.04496081918478012, + -0.014156004413962364, + -0.05073857679963112, + -0.015161313116550446, + 0.07722237706184387, + -1.3094777479419888e-33, + 0.031107520684599876, + 0.03926309943199158, + -0.03290542587637901, + 0.09934134036302567, + 0.008222859352827072, + -0.020538747310638428, + -0.022673917934298515, + -0.04763185232877731, + -0.10908433794975281, + -0.015858367085456848, + 0.07639344036579132, + 0.08861281722784042, + -0.0778311938047409, + 0.09247337281703949, + -0.012322370894253254, + -0.011491000652313232, + -0.05102138966321945, + 0.031435053795576096, + -0.0401427261531353, + 0.013545828871428967, + -0.03878267481923103, + 0.029218273237347603, + -0.013931048102676868, + -0.0025155909825116396, + -0.02802763320505619, + -0.031960468739271164, + 0.030216790735721588, + -0.037383370101451874, + -0.07276413589715958, + 0.025590455159544945, + 0.025424057617783546, + -0.008196341805160046, + 0.04087633639574051, + -0.054251279681921005, + -0.0396435484290123, + -0.011489949189126492, + -0.07639679312705994, + -0.06797997653484344, + 0.07940956205129623, + 0.013072655536234379, + -0.15149711072444916, + -0.03394971787929535, + -0.02115362323820591, + -0.04369954392313957, + 0.05169086158275604, + 0.14019449055194855, + -0.0352819487452507, + -0.002336462726816535, + -0.004382354207336903, + -0.0017139631090685725, + -0.013226980343461037, + -0.0186943206936121, + -0.05792658030986786, + -0.0047936937771737576, + 0.023975152522325516, + 0.00443531246855855, + -0.02031390182673931, + 0.06489183753728867, + 0.07997715473175049, + 0.02244248241186142, + 0.10436468571424484, + 0.06047320365905762, + 0.04869285225868225, + -0.03799045830965042, + 0.03875545784831047, + 0.09146911650896072, + -0.028683478012681007, + -0.01683483086526394, + 0.03288012370467186, + -0.016553930938243866, + -0.0703749805688858, + 0.028267018496990204, + 0.03931327536702156, + 0.05368832126259804, + -0.07875218242406845, + 0.03970292955636978, + -0.052007175981998444, + -0.01873696781694889, + 0.009366386570036411, + -0.09017597138881683, + -0.02412540838122368, + -0.039490800350904465, + -0.010781307704746723, + 0.06139369308948517, + -0.09841862320899963, + 0.012542441487312317, + -0.004890471696853638, + -0.06570420414209366, + -0.03522808849811554, + -0.009921248070895672, + -0.01870834454894066, + 0.02935776486992836, + -0.05451009050011635, + -0.08560007810592651, + -0.043042901903390884, + -9.041492960212171e-34, + 0.05269501358270645, + -0.06713972985744476, + -0.06510105729103088, + -0.01598319225013256, + -0.013429723680019379, + 0.019809450954198837, + -0.11698933690786362, + 0.022592127323150635, + 0.07965652644634247, + 0.0012517757713794708, + -0.0463641919195652, + 0.0013183659175410867, + 0.019522033631801605, + -0.0056394790299236774, + 0.01265585795044899, + -0.026056384667754173, + 0.06275317072868347, + -0.003583210287615657, + -0.06621748208999634, + 0.09573709964752197, + -0.07817402482032776, + 0.0018878302071243525, + -0.06905791908502579, + 0.016479089856147766, + 0.1324314922094345, + 0.005506439134478569, + -0.034303415566682816, + -0.007236850913614035, + -0.07861761003732681, + -0.05573933199048042, + -0.006358596030622721, + -0.022378310561180115, + 0.05590368062257767, + -0.004661750514060259, + -0.08643840998411179, + 0.02852560579776764, + 0.10028855502605438, + -0.061843302100896835, + 0.0044928970746695995, + 0.0440298467874527, + 0.07532297074794769, + 0.030759550631046295, + 0.011286923661828041, + -0.05874050036072731, + -0.04859086498618126, + 0.015981854870915413, + -0.06756839901208878, + -0.025491733103990555, + -0.0164596289396286, + 0.015370642766356468, + -0.018768662586808205, + -0.02347463369369507, + 0.003822761122137308, + -0.06976691633462906, + -0.011310129426419735, + 0.024700598791241646, + 0.037173643708229065, + -0.024777399376034737, + 0.01483067125082016, + 0.0012160309124737978, + -0.04314703121781349, + 0.049834948033094406, + -0.06276043504476547, + 0.05452646315097809, + -0.0010856912704184651, + -0.12607569992542267, + -0.003969576209783554, + -0.05339742451906204, + 0.022394059225916862, + -0.03368442505598068, + -0.024514546617865562, + -0.022295357659459114, + 0.0011938579846173525, + -0.023781679570674896, + 0.020021386444568634, + 0.022767383605241776, + 0.04830149561166763, + -0.033259060233831406, + -0.05343768373131752, + 0.012914799153804779, + -0.019960759207606316, + 0.0009369474137201905, + 0.020550141111016273, + 0.07532913982868195, + 0.006120649632066488, + 0.06730656325817108, + 0.01985383965075016, + -0.012165206484496593, + 0.010363937355577946, + -0.007117697037756443, + -0.06474917382001877, + 0.015852946788072586, + 0.029594728723168373, + 0.04678167775273323, + -0.0059183151461184025, + -2.1772637026629127e-08, + -0.0527416430413723, + -0.0791838988661766, + -0.05771109461784363, + 0.027711626142263412, + 0.023187506943941116, + 0.009736557491123676, + -0.011951740831136703, + 0.007291615474969149, + -0.057624250650405884, + -0.017134366557002068, + 0.04660087078809738, + 0.014951490797102451, + -0.028449563309550285, + -0.036917734891176224, + 0.00493821082636714, + 0.056485120207071304, + 0.07868442684412003, + -0.014808456413447857, + -0.013539375737309456, + -0.021499456837773323, + 0.09692097455263138, + 0.06669574230909348, + 0.07727719098329544, + -0.02376236952841282, + 0.033029213547706604, + 0.06006094440817833, + -0.05740949138998985, + -0.03521421551704407, + 0.05449716001749039, + 0.05291373282670975, + 0.02768540382385254, + 0.0722137838602066, + -0.011293575167655945, + 0.008239724673330784, + -0.0354287251830101, + 0.04340667277574539, + 0.03156725689768791, + 0.09152191877365112, + -0.03340866416692734, + 0.1362612098455429, + 0.004748828709125519, + -0.01820206828415394, + -0.007920913398265839, + 0.010340960696339607, + -0.007229003589600325, + -0.03062315657734871, + 0.045245230197906494, + -0.028092360123991966, + -0.008879214525222778, + -0.0880681499838829, + -0.009968121536076069, + -0.013277476653456688, + 0.10256998986005783, + 0.019481537863612175, + -0.040881287306547165, + 0.02307315357029438, + 0.03054298274219036, + 0.09143544733524323, + -0.06398223340511322, + -0.002232623053714633, + 0.10420727729797363, + -0.021942222490906715, + 0.017022421583533287, + 0.05793092027306557 + ], + "book-open-user-bold||*new*,reading,reader,easy read,library,places,locations": [ + 0.05998976528644562, + -0.07801910489797592, + -0.06401730328798294, + 0.06419211626052856, + -0.0045204865746200085, + 0.012437465600669384, + 0.03657359257340431, + -0.020947322249412537, + 0.00978559348732233, + 0.03524976968765259, + 0.024924976751208305, + 0.10222688317298889, + 0.05314723774790764, + -0.03371155261993408, + 0.005869942717254162, + 0.019216759130358696, + -0.012823355384171009, + 0.030933286994695663, + 0.05442321300506592, + -0.04300299659371376, + 0.020456740632653236, + 0.07308271527290344, + 0.029085397720336914, + -0.011522099375724792, + 0.009338817559182644, + -0.03577674552798271, + -0.003009999170899391, + -0.060701075941324234, + 0.0022813272662460804, + -0.07435660064220428, + 0.0035789646208286285, + -0.021046021953225136, + 0.0837114006280899, + -0.02474888786673546, + 0.04370063915848732, + 0.01487257145345211, + 0.02249239943921566, + 0.0006000522989779711, + 4.977501157554798e-05, + -0.012538403272628784, + -0.0008414291078224778, + -0.028811216354370117, + -0.02934308722615242, + 0.10105900466442108, + -0.03488754481077194, + -0.029386017471551895, + -0.014820009469985962, + -0.040940068662166595, + 0.07157903909683228, + 0.038195133209228516, + -0.021562857553362846, + -0.04865356534719467, + -0.15418437123298645, + -0.04283153638243675, + 0.032951708883047104, + 0.058132074773311615, + -0.057563405483961105, + -0.06298397481441498, + -0.02748676761984825, + -0.03890380635857582, + 0.010642513632774353, + -0.010310258716344833, + -0.012445757165551186, + 0.06738955527544022, + 0.02297244220972061, + 0.011350599117577076, + -0.05810083448886871, + 0.03489813208580017, + -0.021847892552614212, + -0.06228628382086754, + -0.043627120554447174, + 0.0573301687836647, + 0.04172806069254875, + 0.024624960497021675, + -0.02419676072895527, + -0.061065737158060074, + -0.05251660197973251, + -0.027980908751487732, + 0.002749528968706727, + -0.06629865616559982, + -0.06506609916687012, + -0.03805418312549591, + 0.0032076651696115732, + 0.0030006980523467064, + 0.011369634419679642, + 0.08976389467716217, + -0.03385705128312111, + -0.09320449829101562, + -0.01191123016178608, + -0.01767517626285553, + 0.04560026526451111, + -0.057756975293159485, + 0.04349265247583389, + 0.041695449501276016, + -0.11453748494386673, + -0.020495770499110222, + 0.061567746102809906, + -0.021783746778964996, + 0.0057397326454520226, + 0.0917171984910965, + -0.029820766299962997, + 0.10483219474554062, + 0.1041032075881958, + 0.0031972986180335283, + -0.04813582822680473, + -0.06511058658361435, + -0.02080291137099266, + -0.02721628174185753, + -0.08274077624082565, + -0.006930265109986067, + 0.007130248472094536, + -0.09701278805732727, + 0.0015142479678615928, + -0.07421837002038956, + -0.02371055819094181, + -0.042708009481430054, + 0.012444309890270233, + 0.02070416510105133, + 0.13093246519565582, + 0.1265368014574051, + -0.010417078621685505, + 0.02582317404448986, + -0.00518948957324028, + -0.020253686234354973, + -0.05231717601418495, + -0.019877955317497253, + 0.018690122291445732, + -5.660440599461103e-34, + 0.05071352422237396, + 0.055326998233795166, + -0.03792504593729973, + 0.09785527735948563, + 0.0002592552627902478, + -0.006217026151716709, + -0.02363034337759018, + -0.018322564661502838, + -0.12506510317325592, + -0.022132547572255135, + 0.127181276679039, + 0.07725030183792114, + -0.06187879294157028, + 0.102023184299469, + 0.04421364516019821, + 0.011401253752410412, + -0.015112705528736115, + 0.02590072900056839, + -0.0822591483592987, + -0.019511662423610687, + -0.04574750363826752, + 0.03508492186665535, + 0.0009042843012139201, + 0.012137903831899166, + -0.0012312650214880705, + -0.04629454389214516, + 0.026472879573702812, + -0.02474605292081833, + -0.03674481809139252, + 0.020853159949183464, + -0.0018468238413333893, + -0.057127635926008224, + 0.001064340234734118, + -0.05276108533143997, + -0.03847791999578476, + 0.016037728637456894, + -0.043776627629995346, + -0.04465535283088684, + 0.08122381567955017, + -0.008172426372766495, + -0.13817253708839417, + -0.03083515539765358, + 0.01952948421239853, + -0.0005366685800254345, + 0.008086004294455051, + 0.12878340482711792, + -0.006602731067687273, + -0.002524923300370574, + 0.025940077379345894, + 0.02115325815975666, + -0.03367812559008598, + -0.0366055928170681, + -0.10466300696134567, + 0.004316752776503563, + 0.0007296813419088721, + -0.0148564288392663, + -0.04524499550461769, + 0.07635921239852905, + 0.09154082834720612, + 0.01599591039121151, + 0.06911275535821915, + 0.12528543174266815, + 0.07357173413038254, + -0.008234215900301933, + 0.0022936081513762474, + 0.0014607318444177508, + -0.004450647626072168, + -0.0028983757365494967, + 0.04619280993938446, + -0.024231523275375366, + -0.06869383901357651, + 0.012806723825633526, + 0.0545133613049984, + 0.02785583958029747, + -0.058672189712524414, + 0.027542106807231903, + -0.04168926924467087, + -0.026462987065315247, + 0.009664108976721764, + -0.11486263573169708, + -0.017138628289103508, + -0.06430467218160629, + -0.022713063284754753, + 0.09861636161804199, + -0.09777631610631943, + -0.0013743579620495439, + 0.007012844085693359, + -0.08765967190265656, + -0.05555984005331993, + -0.048092544078826904, + -0.02348671294748783, + 0.04041080176830292, + -0.05354258045554161, + -0.066375732421875, + -0.07944831997156143, + -1.7912983723356515e-33, + 0.04636010900139809, + -0.11348315328359604, + -0.013519743457436562, + -0.02503392845392227, + -0.0323035903275013, + 0.020564770326018333, + -0.04933410510420799, + -0.0005414819461293519, + 0.047459639608860016, + 0.010786262340843678, + -0.0781015157699585, + 0.03981601446866989, + 0.05672474205493927, + 0.0319826677441597, + 0.013943539001047611, + -0.02462470531463623, + 0.027917800471186638, + 0.013721759431064129, + -0.05799761041998863, + 0.0725039541721344, + -0.08310982584953308, + 0.017941752448678017, + -0.06852342188358307, + -0.007333194371312857, + 0.11844514310359955, + -0.013250092975795269, + -0.024645136669278145, + -0.03441871330142021, + -0.06331581622362137, + -0.0237415824085474, + -0.040410444140434265, + -0.038548991084098816, + 0.03573745861649513, + -0.0056378962472081184, + -0.10600899159908295, + 0.013153523206710815, + 0.013856864534318447, + 0.01647871918976307, + -0.013681004755198956, + 0.07520969957113266, + 0.0563625693321228, + 0.015209797769784927, + 0.03126907721161842, + -0.06841225922107697, + -0.06202958896756172, + 0.015970047563314438, + -0.05803757905960083, + -0.05524998903274536, + -0.0296340174973011, + 0.0032535926438868046, + 0.02433857135474682, + -0.019671157002449036, + 0.013625145889818668, + -0.0948953777551651, + -0.0007422589114867151, + 0.06868334114551544, + 0.06078426167368889, + -0.04028547182679176, + 0.05440694838762283, + -0.011245046742260456, + -0.06736817955970764, + 0.017292574048042297, + -0.07630570232868195, + 0.10009478777647018, + -0.022335166111588478, + -0.12064532190561295, + -0.02631913498044014, + -0.010631897486746311, + -0.015059616416692734, + -0.032617390155792236, + -0.025830287486314774, + -0.02503841184079647, + 0.0040822699666023254, + -0.06393907964229584, + 0.010517981834709644, + 0.04897138848900795, + 0.08220162987709045, + -0.009124500676989555, + -0.050328873097896576, + 0.009281560778617859, + -0.0043579572811722755, + 0.007995985448360443, + -0.03456425666809082, + 0.0389104038476944, + 0.030581213533878326, + 0.013480146415531635, + 0.010653813369572163, + -0.030923424288630486, + -0.012452861294150352, + 0.010807156562805176, + -0.053826045244932175, + 0.07177072018384933, + 0.007148226723074913, + 0.03630737215280533, + -0.04242521896958351, + -2.2989683046148457e-08, + -0.09347543120384216, + -0.07147838920354843, + 0.0007243102882057428, + 0.06103237345814705, + 0.02967207320034504, + -0.00776118878275156, + -0.005269888788461685, + 0.05958801880478859, + -0.0500517375767231, + 0.047797322273254395, + 0.050627049058675766, + 0.016352085396647453, + -0.03462880104780197, + -0.020780786871910095, + 0.012074925936758518, + 0.09998974949121475, + 0.0897584930062294, + 0.010153181850910187, + -0.03724464774131775, + 0.0028075221925973892, + 0.07075712829828262, + 0.08809679001569748, + 0.07193724066019058, + 0.016117088496685028, + 0.02344570681452751, + 0.06418629735708237, + -0.06769417226314545, + -0.028917595744132996, + 0.06558926403522491, + 0.05776698514819145, + 0.0433601438999176, + 0.07126262784004211, + 0.0027593597769737244, + 0.00142268359195441, + -0.040813345462083817, + 0.03860198333859444, + -0.06217099353671074, + 0.09464482218027115, + -0.04592446610331535, + 0.10595576465129852, + -0.008699091151356697, + -0.04002290964126587, + 0.009191187098622322, + 0.025149302557110786, + -0.038764555007219315, + -0.028219163417816162, + 0.058366045355796814, + -0.02400214970111847, + 0.014620096422731876, + -0.08112027496099472, + -0.07023118436336517, + -0.020103594288229942, + 0.09594403952360153, + 0.001195275573991239, + -0.02354501374065876, + 0.03912445530295372, + 0.04240141436457634, + 0.08445265144109726, + -0.01761021837592125, + 0.023525139316916466, + 0.06299880146980286, + 0.012327862903475761, + -0.030073625966906548, + 0.08082561939954758 + ], + "bookmark-bold||reading,reader,novel,story,placeholder,favorites,favorited,library": [ + 0.021390458568930626, + -0.0896039754152298, + -0.038248684257268906, + 0.05545426532626152, + 0.06106160208582878, + 0.038729216903448105, + 0.06741567701101303, + 0.021267641335725784, + 0.01787555031478405, + 0.010216204449534416, + -0.02337200939655304, + 0.1123010665178299, + 0.08040567487478256, + -0.01750660501420498, + 0.0020932541228830814, + 0.036206938326358795, + -0.01529921405017376, + 0.020004909485578537, + 0.033862464129924774, + -0.045520029962062836, + 0.04249967634677887, + 0.042821984738111496, + 0.02218298427760601, + 0.03167499601840973, + 0.01873713545501232, + -0.006784887984395027, + -0.0038559234235435724, + -0.03443869575858116, + -0.03358543664216995, + -0.05427820235490799, + 0.014784489758312702, + -0.052163008600473404, + 0.06382084637880325, + -0.02926272340118885, + 0.007444394286721945, + -0.007608357351273298, + -0.03994299843907356, + -0.03583117946982384, + 0.05877857282757759, + 0.020244097337126732, + -0.010543521493673325, + -0.046091336756944656, + -0.01672295294702053, + 0.08589819073677063, + -0.002334468998014927, + -0.04561635106801987, + -0.03354077786207199, + 0.009539286606013775, + -0.003396948566660285, + 0.08355769515037537, + -0.012239892967045307, + -0.05341341719031334, + -0.14998871088027954, + -0.03517409786581993, + 0.04193286597728729, + 0.030661284923553467, + -0.11329561471939087, + -0.051513150334358215, + -0.0038018180057406425, + -0.034851185977458954, + 0.02174854278564453, + -0.03363250941038132, + 0.04392213746905327, + 0.05054464191198349, + 0.06685671955347061, + -0.07154622673988342, + -0.01609724760055542, + 0.034603193402290344, + -0.027103491127490997, + 0.004295974969863892, + -0.03966895490884781, + 0.05771247297525406, + 0.06598760187625885, + 0.004971666261553764, + 0.02014666609466076, + -0.004805365111678839, + -0.02561754733324051, + -0.045241579413414, + -0.008796649985015392, + -0.04979850724339485, + -0.0837702825665474, + -0.060752347111701965, + -0.010686682537198067, + -0.005628070328384638, + 0.05770624801516533, + 0.04210043326020241, + -0.031762879341840744, + -0.08976055681705475, + -0.029052771627902985, + 0.0010473598958924413, + -0.005780924577265978, + -0.10485263168811798, + 0.07556568831205368, + 0.029696471989154816, + -0.09115803241729736, + 0.027151955291628838, + 0.07183738052845001, + -0.022302117198705673, + -0.04709944501519203, + 0.03551790490746498, + 0.01413829904049635, + 0.1034611389040947, + 0.03562942519783974, + 0.018225986510515213, + 0.010210085660219193, + -0.04531969130039215, + -0.06990350782871246, + -0.04438762739300728, + -0.06848665326833725, + -0.03296945244073868, + -0.031021229922771454, + -0.02195623889565468, + -0.0294754970818758, + -0.07202465087175369, + -0.07846652716398239, + -0.04939885810017586, + 0.0029180299025028944, + -0.02418423630297184, + 0.15423384308815002, + 0.09040484577417374, + 0.007632938213646412, + 0.04826245829463005, + -0.03552217036485672, + -0.029216432943940163, + -0.10414724797010422, + 0.013574664480984211, + 0.0834193304181099, + -1.2866726983585556e-34, + 0.03157445415854454, + 0.03345701843500137, + -0.11292319744825363, + 0.006465726997703314, + -0.0008698242600075901, + -0.03901427239179611, + -0.01994515024125576, + -0.018968138843774796, + -0.12987825274467468, + -0.08264331519603729, + 0.08255578577518463, + 0.039617400616407394, + -0.03677802532911301, + 0.1484064757823944, + 0.006104833446443081, + 0.004775109700858593, + -0.04201940819621086, + 0.020070087164640427, + -0.04691999405622482, + -0.03203637897968292, + -0.023406237363815308, + 0.0805286169052124, + -0.054449863731861115, + -0.030277583748102188, + -0.018456462770700455, + -0.006915118545293808, + 0.03124733828008175, + -0.0022187409922480583, + -0.06782272458076477, + 0.02923659048974514, + 0.019999729469418526, + -0.04136605188250542, + 0.010875889100134373, + -0.07804843038320541, + -0.01149709988385439, + 0.035296838730573654, + -0.034779567271471024, + -0.05155876278877258, + 0.09328410774469376, + 0.0008911581826396286, + -0.0750172957777977, + -0.04908675327897072, + -0.03860354423522949, + -0.041886571794748306, + -0.026059074327349663, + 0.126524418592453, + -0.025952287018299103, + 0.020366866141557693, + -0.002173792803660035, + -0.04212161526083946, + -0.02834429033100605, + -0.048475611954927444, + -0.03940681740641594, + 0.006354648154228926, + 0.011494027450680733, + -0.0158273633569479, + -0.05593518540263176, + 0.033935654908418655, + 0.09522536396980286, + -0.01747659407556057, + 0.05489327758550644, + 0.05698134005069733, + 0.10459073632955551, + -0.03231639787554741, + -0.005359269212931395, + 0.11509890109300613, + 0.012203250080347061, + 0.03411845862865448, + 0.04292506352066994, + 0.014157070778310299, + 0.008240660652518272, + 0.05307161435484886, + 0.058854151517152786, + -0.011339178308844566, + -0.08782069385051727, + 0.0033142338506877422, + -0.036342646926641464, + -0.026784591376781464, + -0.04651666060090065, + -0.10108320415019989, + -0.05131085589528084, + -0.06425583362579346, + -0.012857137247920036, + 0.0672110766172409, + -0.05205583944916725, + -0.024932628497481346, + 0.010429386980831623, + -0.10932363569736481, + -0.06700398027896881, + -0.07162965834140778, + 0.01789519377052784, + -0.00023768734536133707, + 0.014067710377275944, + -0.06908386200666428, + -0.07377282530069351, + -8.660525343015245e-34, + 0.05505182966589928, + -0.06343614310026169, + -0.020345447584986687, + 0.03147263452410698, + -0.024098850786685944, + -0.004721675533801317, + -0.10298530012369156, + -0.014768769033253193, + 0.02717832662165165, + 0.020627588033676147, + -0.09385164082050323, + -0.018227558583021164, + -0.042593423277139664, + -0.017164042219519615, + -0.010221720673143864, + 0.03787248581647873, + 0.022361071780323982, + 0.017856599763035774, + -0.06757257878780365, + -0.0006916551501490176, + -0.05439117178320885, + -0.02458295226097107, + -0.062165871262550354, + 0.06950771063566208, + 0.07629363983869553, + 0.002951697213575244, + -0.013119226321578026, + -0.08306701481342316, + -0.08446468412876129, + -0.06200016289949417, + 0.0358896479010582, + 0.004827078897505999, + 0.05186235532164574, + -0.016201170161366463, + -0.037733446806669235, + 0.04913381487131119, + 0.02570890262722969, + -0.04210610315203667, + -0.0036796643398702145, + 0.04204785078763962, + 0.09360137581825256, + 0.01068459078669548, + 0.054571207612752914, + -0.013231714256107807, + 0.012662813998758793, + 0.017269300296902657, + -0.021303119137883186, + 0.02412925846874714, + 0.056205131113529205, + 0.03989015519618988, + 0.010953723452985287, + -0.049124158918857574, + 0.009478062391281128, + -0.027458056807518005, + -0.034672413021326065, + 0.0764160230755806, + 0.0649489313364029, + 0.019480394199490547, + 0.0636272132396698, + -0.009197317063808441, + -0.032051216810941696, + 0.016116077080368996, + -0.0497884601354599, + 0.06490723788738251, + 0.007892973721027374, + -0.12153495848178864, + -0.011650139465928078, + -0.0343320369720459, + -0.02126961760222912, + -0.009290102869272232, + -0.06650882959365845, + 0.04016449674963951, + 0.02532661333680153, + -0.04522155597805977, + 0.04572815075516701, + 0.014506686478853226, + 0.05863835662603378, + 0.040201470255851746, + -0.04122362658381462, + 0.01690397597849369, + 0.00864089373499155, + 0.026230914518237114, + 0.006094340700656176, + 0.03504244610667229, + 0.04185644909739494, + 0.04426678270101547, + -0.006029875483363867, + 0.015826299786567688, + -0.07515150308609009, + -0.03689180314540863, + -0.0028138491325080395, + 0.05337781459093094, + 0.01808408461511135, + 0.0397074930369854, + 0.010760070756077766, + -2.1846757292109942e-08, + -0.05218695476651192, + -0.03959502652287483, + -0.045410849153995514, + 0.0169993806630373, + 0.014151799492537975, + 0.021528927609324455, + -0.020563682541251183, + 0.03446017950773239, + -0.03743606433272362, + -0.01118051540106535, + 0.04917184263467789, + -0.0030466874595731497, + -0.11714031547307968, + -0.06771938502788544, + 0.03387172147631645, + 0.022873282432556152, + 0.07654639333486557, + 0.008679373189806938, + -0.03332523629069328, + 0.002512893173843622, + 0.046383436769247055, + 0.0702371895313263, + 0.06640028953552246, + -0.05659981817007065, + 0.017432386055588722, + 0.12434268742799759, + -0.006013432051986456, + 0.010699570178985596, + 0.1015753448009491, + 0.08076660335063934, + 0.026505745947360992, + 0.09057878702878952, + -0.014636759646236897, + -0.03693178668618202, + -0.016069408506155014, + 0.04337837174534798, + 0.036586612462997437, + 0.01996554248034954, + -0.026274705305695534, + 0.13126088678836823, + 0.05123923346400261, + -0.06049482896924019, + 0.027541061863303185, + -0.004618360660970211, + -0.04034131392836571, + -0.0028923109639436007, + 0.036768823862075806, + -0.03971971198916435, + 0.05063968896865845, + -0.08122271299362183, + -0.046899132430553436, + -0.0641445741057396, + 0.09861402213573456, + 0.03519967198371887, + -0.009057440795004368, + -0.008446350693702698, + 0.004496059380471706, + 0.05583483725786209, + 0.007108277175575495, + -0.016193917021155357, + 0.1610998660326004, + 0.05411909893155098, + 0.01755380816757679, + 0.10822957009077072 + ], + "bookmark-simple-bold||reading,reader,novel,story,placeholder,favorites,favorited,library": [ + 0.02299385517835617, + -0.0768817812204361, + -0.03083481825888157, + 0.055586788803339005, + 0.062291085720062256, + 0.036584287881851196, + 0.052365340292453766, + 0.024641597643494606, + 0.0012538000009953976, + 0.016726810485124588, + -0.020987404510378838, + 0.09846872091293335, + 0.08383975178003311, + -0.021678686141967773, + 0.0020196184050291777, + 0.024582253769040108, + -0.021574586629867554, + 0.01814456284046173, + 0.03821006044745445, + -0.03865015134215355, + 0.0231456495821476, + 0.03104325383901596, + 0.006107433699071407, + 0.03501325473189354, + 0.012889132834970951, + -0.006940117571502924, + -0.009793338365852833, + -0.02448112703859806, + -0.020815223455429077, + -0.053312961012125015, + 0.023215940222144127, + -0.05703938752412796, + 0.06380831450223923, + -0.034221842885017395, + 0.006984876003116369, + -0.013298439793288708, + -0.026203129440546036, + -0.028937820345163345, + 0.044962361454963684, + 0.011969231069087982, + -0.012450505048036575, + -0.04708806052803993, + -0.02409103326499462, + 0.0898599773645401, + -0.01770126447081566, + -0.04359756410121918, + -0.03834490105509758, + 0.01297351997345686, + -0.005841412115842104, + 0.06892901659011841, + -0.002895977348089218, + -0.04938557744026184, + -0.15957368910312653, + -0.041503895074129105, + 0.04672364145517349, + 0.03748903423547745, + -0.1191626638174057, + -0.0429462268948555, + -0.0015066186897456646, + -0.03780382499098778, + 0.028767399489879608, + -0.041488923132419586, + 0.04296444356441498, + 0.043347425758838654, + 0.05798888951539993, + -0.0679219588637352, + -0.022682806476950645, + 0.030812479555606842, + -0.029679911211133003, + -0.0050147054716944695, + -0.037291720509529114, + 0.04543960094451904, + 0.05067873373627663, + 0.015135692432522774, + 0.013280374929308891, + -0.019492806866765022, + -0.030361561104655266, + -0.03311551734805107, + -0.018931124359369278, + -0.0332813635468483, + -0.09856297075748444, + -0.06728817522525787, + -0.013914617709815502, + 0.012583327479660511, + 0.0645887479186058, + 0.03558977320790291, + -0.031055590137839317, + -0.08431984484195709, + -0.02035818248987198, + 0.0037479158490896225, + 0.002381677506491542, + -0.08830395340919495, + 0.0925145074725151, + 0.029802078381180763, + -0.08369828760623932, + 0.02806331217288971, + 0.08453541249036789, + -0.021257754415273666, + -0.06937835365533829, + 0.03611157462000847, + 0.011403782293200493, + 0.10551236569881439, + 0.0522531121969223, + -0.00028869282687082887, + 0.009350079111754894, + -0.0411980040371418, + -0.061380382627248764, + -0.05432605370879173, + -0.06616579741239548, + -0.044648539274930954, + -0.032689303159713745, + -0.02564864605665207, + -0.026250088587403297, + -0.0722363218665123, + -0.07803183048963547, + -0.04417276382446289, + -0.007147842086851597, + -0.02546606957912445, + 0.1523415893316269, + 0.09866480529308319, + 0.005436741281300783, + 0.0431428998708725, + -0.050488028675317764, + -0.034393567591905594, + -0.10095182806253433, + 0.02578122355043888, + 0.08868009597063065, + -4.7480572410188645e-34, + 0.044024787843227386, + 0.04637134447693825, + -0.11411380022764206, + 0.01461829338222742, + 0.001443217508494854, + -0.04278998076915741, + -0.024222705513238907, + -0.01871233806014061, + -0.13255424797534943, + -0.07396701723337173, + 0.10642971098423004, + 0.030048755928874016, + -0.04494059085845947, + 0.15000693500041962, + 0.0061746141873300076, + 0.004985921550542116, + -0.029783641919493675, + 0.007142428308725357, + -0.04820619523525238, + -0.04386695474386215, + -0.029817482456564903, + 0.09758736938238144, + -0.049738530069589615, + -0.03115735575556755, + -0.009904704056680202, + -0.0011549181072041392, + 0.03651674464344978, + -0.004403742030262947, + -0.06383810192346573, + 0.0255591981112957, + 0.023906774818897247, + -0.04901259019970894, + 0.01803225837647915, + -0.07294801622629166, + -0.01988345943391323, + 0.027750812470912933, + -0.021244406700134277, + -0.047121331095695496, + 0.09110094606876373, + -0.01409591268748045, + -0.08462677150964737, + -0.046395231038331985, + -0.03206532076001167, + -0.04550357908010483, + -0.018544532358646393, + 0.1285105049610138, + -0.029275670647621155, + 0.01907782256603241, + 0.0018650454003363848, + -0.04702651500701904, + -0.034485653042793274, + -0.0415642112493515, + -0.04712561145424843, + 0.011075768619775772, + 0.015639768913388252, + -0.007045184727758169, + -0.05606858804821968, + 0.04306276887655258, + 0.0906824916601181, + -0.01825358159840107, + 0.055420901626348495, + 0.06535622477531433, + 0.09097422659397125, + -0.026631303131580353, + -0.014445273205637932, + 0.11463508009910583, + 0.01544820237904787, + 0.025077836588025093, + 0.04270341992378235, + 0.012718575075268745, + 0.0013846260262653232, + 0.05664493888616562, + 0.06181477755308151, + -0.019792426377534866, + -0.07294174283742905, + 0.00871239323168993, + -0.018463732674717903, + -0.049001023173332214, + -0.048556841909885406, + -0.09720158576965332, + -0.047284141182899475, + -0.05621478706598282, + -0.01641000807285309, + 0.07969193905591965, + -0.0674859955906868, + -0.030605709180235863, + 0.007584750652313232, + -0.09449944645166397, + -0.07762546092271805, + -0.08096349239349365, + 0.013739226385951042, + 0.004205815959721804, + 0.005018576513975859, + -0.07160385698080063, + -0.06962281465530396, + -6.637910988272876e-34, + 0.06241445615887642, + -0.06394223868846893, + -0.02484271116554737, + 0.0350363627076149, + -0.022312134504318237, + 0.007400111760944128, + -0.08510468900203705, + -0.018387196585536003, + 0.02946573682129383, + 0.02039298601448536, + -0.09621953219175339, + -0.017572477459907532, + -0.05306369066238403, + -0.014852567575871944, + -0.008855014108121395, + 0.042648058384656906, + 0.013731632381677628, + 0.02716589719057083, + -0.05451037362217903, + -0.004498784430325031, + -0.053759776055812836, + -0.02028687857091427, + -0.06612663716077805, + 0.057325202971696854, + 0.08235197514295578, + 0.0009548717061989009, + -0.02056809701025486, + -0.07269914448261261, + -0.0793374553322792, + -0.06155402958393097, + 0.037931881844997406, + -0.001805631909519434, + 0.059207651764154434, + -0.02383684366941452, + -0.042012669146060944, + 0.04869784787297249, + 0.01239762082695961, + -0.03413894772529602, + -0.004840814508497715, + 0.040783487260341644, + 0.0829567015171051, + 0.01202515047043562, + 0.06596319377422333, + -0.021888334304094315, + 0.012439625337719917, + 0.00872146524488926, + -0.011325521394610405, + 0.009816638194024563, + 0.0446341335773468, + 0.026697883382439613, + 0.01775497943162918, + -0.05974528566002846, + 0.004106569569557905, + -0.02696000598371029, + -0.033074937760829926, + 0.07788511365652084, + 0.07010959088802338, + 0.029646653681993484, + 0.06292930990457535, + 0.002327847294509411, + -0.032799601554870605, + 0.019975360482931137, + -0.059054624289274216, + 0.06590669602155685, + -0.00043365085730329156, + -0.10871215909719467, + -0.013064704835414886, + -0.039500825107097626, + -0.02454550564289093, + -0.004887483548372984, + -0.06276719272136688, + 0.04555520415306091, + 0.03738268464803696, + -0.052389275282621384, + 0.04657938331365585, + 0.020279664546251297, + 0.050113774836063385, + 0.040645748376846313, + -0.04256296157836914, + 0.009422128088772297, + 0.01903865486383438, + 0.021556664258241653, + 0.0005757958861067891, + 0.022474316880106926, + 0.0460561141371727, + 0.03803836181759834, + -0.0017641144804656506, + 0.009097706526517868, + -0.06997334212064743, + -0.0341881588101387, + -0.00898206140846014, + 0.0718027874827385, + 0.0375763401389122, + 0.04810784012079239, + 0.0054083457216620445, + -2.2283389355948202e-08, + -0.05104657635092735, + -0.06358083337545395, + -0.04258415102958679, + 0.014502380974590778, + 0.010775033384561539, + 0.0213943999260664, + -0.015423675999045372, + 0.027433577924966812, + -0.02943493239581585, + -0.004572254605591297, + 0.048518307507038116, + -0.010791154578328133, + -0.12065639346837997, + -0.056202735751867294, + 0.019769197329878807, + 0.04006223753094673, + 0.06590361148118973, + 0.01358738075941801, + -0.02803855948150158, + 0.010458099655807018, + 0.04294741526246071, + 0.0709066390991211, + 0.05863059684634209, + -0.05767763778567314, + 0.016788771376013756, + 0.1244945377111435, + -0.005909185856580734, + 0.026458371430635452, + 0.10332267731428146, + 0.08292068541049957, + 0.028873328119516373, + 0.09056565910577774, + -0.005896435584872961, + -0.029271963983774185, + -0.02259950153529644, + 0.04443717002868652, + 0.02751217968761921, + 0.024995746091008186, + -0.03050057590007782, + 0.11999721080064774, + 0.05603763461112976, + -0.052417539060115814, + 0.024707654491066933, + -0.009488597512245178, + -0.03612114489078522, + -0.008863001130521297, + 0.04542660340666771, + -0.047121867537498474, + 0.04729507490992546, + -0.08494625985622406, + -0.045510243624448776, + -0.06331358850002289, + 0.09672003984451294, + 0.025369152426719666, + -0.01695019006729126, + -0.0033253428991883993, + 0.019640833139419556, + 0.0626896470785141, + 0.0028647303115576506, + -0.012354680337011814, + 0.1607193797826767, + 0.07587976008653641, + 0.00670203659683466, + 0.1097739040851593 + ], + "bookmarks-bold||reading,reader,novel,story,placeholder,favorites,favorited,library": [ + 0.013191701844334602, + -0.09398005902767181, + -0.04921162500977516, + 0.05930446460843086, + 0.06619170308113098, + 0.028871992602944374, + 0.054274797439575195, + 0.014310086145997047, + 0.007044673431664705, + 0.003622937947511673, + -0.01471773348748684, + 0.11697204411029816, + 0.06875291466712952, + -0.0063095698133111, + -0.0024307495914399624, + 0.03462868556380272, + -0.012927035801112652, + 0.02185709774494171, + 0.020905302837491035, + -0.043507736176252365, + 0.034389693289995193, + 0.03203413262963295, + 0.010131671093404293, + 0.02829516865313053, + 0.020015770569443703, + -0.008106027729809284, + -0.014552748762071133, + -0.04645318165421486, + -0.0438925102353096, + -0.04421297088265419, + 0.02574574388563633, + -0.05512668192386627, + 0.06424625217914581, + -0.021691976115107536, + 0.006908745970577002, + -0.01907333731651306, + -0.026022521778941154, + -0.03645937517285347, + 0.04402230307459831, + 0.015843752771615982, + -0.0026694415137171745, + -0.048181790858507156, + -0.022813141345977783, + 0.09049185365438461, + -0.00571376783773303, + -0.04538167640566826, + -0.027562113478779793, + 0.011237631551921368, + -0.009309104643762112, + 0.08473904430866241, + -0.015016570687294006, + -0.038052137941122055, + -0.1443829983472824, + -0.03950978443026543, + 0.043143995106220245, + 0.039112091064453125, + -0.11681370437145233, + -0.031253308057785034, + -0.015379050746560097, + -0.03466184809803963, + 0.04378223791718483, + -0.037669260054826736, + 0.040661681443452835, + 0.04545878991484642, + 0.053888048976659775, + -0.08085547387599945, + -0.01246991939842701, + 0.030708398669958115, + -0.01050484273582697, + 0.0069966851733624935, + -0.03845762088894844, + 0.06880819797515869, + 0.05555151030421257, + 0.011907266452908516, + 0.03350882977247238, + -0.0006282143876887858, + -0.029873833060264587, + -0.05303680896759033, + -0.03146510571241379, + -0.04839916154742241, + -0.07322319597005844, + -0.060447175055742264, + -0.003190628718584776, + -0.012114543467760086, + 0.05774999409914017, + 0.028381522744894028, + -0.028012948110699654, + -0.09350983053445816, + -0.028760690242052078, + -0.0036634074058383703, + 0.016485584899783134, + -0.10768142342567444, + 0.08113507926464081, + 0.01801919750869274, + -0.09336454421281815, + 0.024852046743035316, + 0.07541915029287338, + -0.021258296445012093, + -0.05401748791337013, + 0.022839125245809555, + 0.00976204127073288, + 0.09189440310001373, + 0.026497216895222664, + 0.03323328495025635, + 0.0035944206174463034, + -0.032560110092163086, + -0.06626048684120178, + -0.01905263587832451, + -0.07091837376356125, + -0.021335599943995476, + -0.031340986490249634, + -0.008938714861869812, + -0.03667936474084854, + -0.07638078182935715, + -0.07777070999145508, + -0.051025815308094025, + 0.00942195300012827, + -0.02162020467221737, + 0.15743960440158844, + 0.09987267851829529, + 0.008222021162509918, + 0.047453366219997406, + -0.017684269696474075, + -0.03233492001891136, + -0.10218612849712372, + 0.006684486288577318, + 0.07232008129358292, + -3.0811242309753547e-35, + 0.04412141442298889, + 0.03554115071892738, + -0.11162374168634415, + -0.00598531449213624, + -0.008575026877224445, + -0.03533492982387543, + -0.019355611875653267, + -0.037467245012521744, + -0.101190946996212, + -0.08644519001245499, + 0.08516522496938705, + 0.06330539286136627, + -0.03562014922499657, + 0.14431330561637878, + 0.03110375814139843, + -0.007177184335887432, + -0.03524485602974892, + 0.029178272932767868, + -0.02944340743124485, + -0.04214151203632355, + -0.02861494943499565, + 0.08259698748588562, + -0.048777688294649124, + -0.0390184223651886, + -0.013634956441819668, + -0.021650006994605064, + 0.03519243746995926, + 0.004528996534645557, + -0.07306873053312302, + 0.028512373566627502, + 0.023425769060850143, + -0.05117640644311905, + 0.0074204630218446255, + -0.07542625069618225, + -0.015467106364667416, + 0.05793076008558273, + -0.02951514534652233, + -0.05585344135761261, + 0.09329988807439804, + -0.005322483833879232, + -0.07705127447843552, + -0.05273120477795601, + -0.04973790794610977, + -0.04036864638328552, + -0.033751219511032104, + 0.12703104317188263, + -0.017655156552791595, + 0.01005066279321909, + 0.0004928065463900566, + -0.053221721202135086, + -0.02538554184138775, + -0.05885959789156914, + -0.043261248618364334, + -0.009089360013604164, + 0.00551342498511076, + -0.011030017398297787, + -0.052692756056785583, + 0.01861422508955002, + 0.09340301156044006, + -0.0199396014213562, + 0.05802592635154724, + 0.04327980801463127, + 0.08846420794725418, + -0.05167050287127495, + -0.03128486126661301, + 0.10171885043382645, + 0.019216343760490417, + 0.03629905730485916, + 0.03314099833369255, + 0.020786309614777565, + -0.003831464797258377, + 0.06358782202005386, + 0.05956025421619415, + -0.009702282026410103, + -0.09019105136394501, + 0.010789299383759499, + -0.03634868189692497, + -0.02387799508869648, + -0.05144055560231209, + -0.10628421604633331, + -0.02986196242272854, + -0.07095780968666077, + -0.010386660695075989, + 0.06121646612882614, + -0.047548770904541016, + -0.01765492931008339, + 0.006682952865958214, + -0.08954959362745285, + -0.06348538398742676, + -0.07617105543613434, + 0.015311051160097122, + 0.008090397343039513, + 0.028956657275557518, + -0.07936409115791321, + -0.07894148677587509, + -1.0764459111250554e-33, + 0.04047438129782677, + -0.07977516204118729, + -0.023052748292684555, + 0.03614918515086174, + -0.02169410139322281, + 0.004939892794936895, + -0.10049159824848175, + -0.003684517927467823, + 0.01695668138563633, + -0.0012756476644426584, + -0.0970231145620346, + -0.011453571729362011, + -0.03208117559552193, + -0.013407908380031586, + -0.020191287621855736, + 0.044855207204818726, + 0.00753209600225091, + 0.018343525007367134, + -0.06235339492559433, + -0.013254459016025066, + -0.0602005198597908, + -0.03207022324204445, + -0.05544250085949898, + 0.07329005002975464, + 0.07586709409952164, + -0.0037955434527248144, + -0.022707447409629822, + -0.08877883106470108, + -0.07552841305732727, + -0.06349962204694748, + 0.049010805785655975, + -0.0011152048828080297, + 0.048464979976415634, + -0.02275511808693409, + -0.030881367623806, + 0.05811638757586479, + 0.0039616236463189125, + -0.032358236610889435, + 0.004091534297913313, + 0.03982856497168541, + 0.09636595845222473, + 0.013125153258442879, + 0.06220312416553497, + -0.009401006624102592, + 0.009282136335968971, + 0.019496159628033638, + -0.016640793532133102, + 0.033621713519096375, + 0.03989972174167633, + 0.037218548357486725, + 0.012613138183951378, + -0.05236008018255234, + 0.0164105873554945, + -0.020090896636247635, + -0.025561287999153137, + 0.07808448374271393, + 0.06201518699526787, + 0.02413114532828331, + 0.0786605104804039, + -0.008834157139062881, + -0.03615231439471245, + 0.01505820918828249, + -0.05534282699227333, + 0.0689956545829773, + 0.012815368361771107, + -0.11698029935359955, + -0.0033438345417380333, + -0.038259394466876984, + -0.033819910138845444, + -0.007662168703973293, + -0.060831934213638306, + 0.029355568811297417, + 0.014946232549846172, + -0.05323123186826706, + 0.04300937429070473, + -0.0033677436877042055, + 0.05984857305884361, + 0.04242467135190964, + -0.04315639287233353, + 0.0230096448212862, + 0.017326537519693375, + 0.044288020581007004, + 0.0051580760627985, + 0.02601265348494053, + 0.04520493745803833, + 0.0338609516620636, + -0.0027859313413500786, + 0.03062431886792183, + -0.07192356139421463, + -0.03491450101137161, + 0.004631284158676863, + 0.040611837059259415, + 0.015727002173662186, + 0.043825216591358185, + 0.009992510080337524, + -2.1425867302582446e-08, + -0.04944664612412453, + -0.0315093956887722, + -0.04177486151456833, + 0.03759460523724556, + 0.015406157821416855, + 0.025783754885196686, + -0.01792461983859539, + 0.04715843126177788, + -0.021939514204859734, + -0.010854780673980713, + 0.04168504849076271, + -0.0013627344742417336, + -0.13057471811771393, + -0.06084256246685982, + 0.046538159251213074, + 0.015931179746985435, + 0.07431545108556747, + 0.012497236020863056, + -0.025101736187934875, + 0.003455700119957328, + 0.04285494238138199, + 0.07406244426965714, + 0.0631909891963005, + -0.0336451530456543, + 0.02875339984893799, + 0.1318041980266571, + 0.0008998108096420765, + 0.014745770022273064, + 0.11425513029098511, + 0.0905352458357811, + 0.018655065447092056, + 0.07816300541162491, + -0.012841702438890934, + -0.041036125272512436, + -0.021635981276631355, + 0.04900837317109108, + 0.01748719811439514, + 0.01728438027203083, + -0.023237168788909912, + 0.1327422708272934, + 0.051697880029678345, + -0.0640784427523613, + 0.047968409955501556, + 0.0017732905689626932, + -0.040752019733190536, + -0.012117634527385235, + 0.02209566906094551, + -0.03997243568301201, + 0.047332484275102615, + -0.08587358891963959, + -0.0573573112487793, + -0.05755096673965454, + 0.10152654349803925, + 0.03983122855424881, + -0.019890427589416504, + -0.0006793502834625542, + 0.004423437640070915, + 0.055132925510406494, + 0.019719621166586876, + -0.014331472106277943, + 0.15562660992145538, + 0.056896667927503586, + 0.011153379455208778, + 0.11766254156827927 + ], + "bookmarks-simple-bold||reading,reader,novel,story,placeholder,favorites,favorited,library": [ + 0.01607232540845871, + -0.08180355280637741, + -0.04141516983509064, + 0.060822974890470505, + 0.06735491007566452, + 0.026681777089834213, + 0.04113597422838211, + 0.016346411779522896, + -0.008945204317569733, + 0.007756456267088652, + -0.01395387202501297, + 0.10324176400899887, + 0.07004549354314804, + -0.012308183126151562, + 3.856874900520779e-05, + 0.024281082674860954, + -0.01706702448427677, + 0.019205618649721146, + 0.025412876158952713, + -0.03588379919528961, + 0.017577961087226868, + 0.02092229761183262, + -0.00442167604342103, + 0.032933637499809265, + 0.01555355079472065, + -0.006423469632863998, + -0.022707898169755936, + -0.037408363074064255, + -0.030875517055392265, + -0.04066164046525955, + 0.0363348051905632, + -0.06160179153084755, + 0.0640617311000824, + -0.02717137336730957, + 0.010025260038673878, + -0.022610096260905266, + -0.01626814901828766, + -0.031090183183550835, + 0.030525758862495422, + 0.007417882792651653, + -0.0052548847161233425, + -0.04839548468589783, + -0.030704885721206665, + 0.09391587972640991, + -0.021588239818811417, + -0.045025769621133804, + -0.032152533531188965, + 0.01297907903790474, + -0.012533103115856647, + 0.07112748175859451, + -0.006280877627432346, + -0.03710813447833061, + -0.15385963022708893, + -0.04609514772891998, + 0.04608825594186783, + 0.04843999817967415, + -0.12376273423433304, + -0.023243498057127, + -0.01338260155171156, + -0.0359058603644371, + 0.04975615441799164, + -0.04424527660012245, + 0.04112926498055458, + 0.03837104141712189, + 0.04579509049654007, + -0.07596626877784729, + -0.01795012503862381, + 0.028421103954315186, + -0.015048081055283546, + -0.0005224294727668166, + -0.034425605088472366, + 0.05565387383103371, + 0.04176497459411621, + 0.020352276042103767, + 0.028298914432525635, + -0.013044825755059719, + -0.034359000623226166, + -0.038818296045064926, + -0.04089009389281273, + -0.03357136622071266, + -0.08494901657104492, + -0.06654386967420578, + -0.005721119232475758, + 0.0065421960316598415, + 0.06629204005002975, + 0.025375671684741974, + -0.028688466176390648, + -0.09041699022054672, + -0.021777236834168434, + 0.00014389077841769904, + 0.022011686116456985, + -0.0931556299328804, + 0.09535643458366394, + 0.020128421485424042, + -0.08622084558010101, + 0.02568880096077919, + 0.08519776165485382, + -0.01851426251232624, + -0.07498805969953537, + 0.023139672353863716, + 0.0074285464361310005, + 0.09345650672912598, + 0.04235862195491791, + 0.018600884824991226, + 0.0007830132963135839, + -0.028615880757570267, + -0.0579264871776104, + -0.027973048388957977, + -0.07056909799575806, + -0.031156105920672417, + -0.03228455409407616, + -0.013593160547316074, + -0.03621792048215866, + -0.07682429999113083, + -0.08022978156805038, + -0.045761238783597946, + -0.0013744740281254053, + -0.022961359471082687, + 0.15686410665512085, + 0.10751526802778244, + 0.007719379384070635, + 0.04159850999712944, + -0.03483990952372551, + -0.037493351846933365, + -0.10005516558885574, + 0.02001597359776497, + 0.0784313976764679, + -3.4504871130974612e-34, + 0.05644788220524788, + 0.047888271510601044, + -0.11187347024679184, + 0.00014994002413004637, + -0.006062546744942665, + -0.04055314138531685, + -0.024735664948821068, + -0.037147101014852524, + -0.1042327731847763, + -0.0782940685749054, + 0.10808848589658737, + 0.050890080630779266, + -0.04140126705169678, + 0.14367175102233887, + 0.03109111823141575, + -0.00786330085247755, + -0.02149076946079731, + 0.018602581694722176, + -0.030991502106189728, + -0.053589340299367905, + -0.03759090229868889, + 0.099054254591465, + -0.04585271328687668, + -0.04135352373123169, + -0.0048919920809566975, + -0.012830119580030441, + 0.04125314578413963, + 0.004650640767067671, + -0.06871029734611511, + 0.025481533259153366, + 0.03144803270697594, + -0.05916716903448105, + 0.01434246450662613, + -0.06867942959070206, + -0.023081360384821892, + 0.05193408578634262, + -0.018504707142710686, + -0.04946174845099449, + 0.08937643468379974, + -0.020819805562496185, + -0.08465694636106491, + -0.05183178931474686, + -0.04374713823199272, + -0.04525797814130783, + -0.02693837136030197, + 0.12821754813194275, + -0.020184844732284546, + 0.009856150485575199, + 0.0023617104161530733, + -0.057829633355140686, + -0.03139280155301094, + -0.0513567291200161, + -0.051216721534729004, + -0.004608419258147478, + 0.00954278651624918, + -0.004577533807605505, + -0.056027330458164215, + 0.02993513084948063, + 0.08926153928041458, + -0.021541617810726166, + 0.056864313781261444, + 0.048428021371364594, + 0.07600747793912888, + -0.046313222497701645, + -0.03844115138053894, + 0.10005339235067368, + 0.023333603516221046, + 0.02628871612250805, + 0.0347796231508255, + 0.018750499933958054, + -0.010621624067425728, + 0.06747845560312271, + 0.06328239291906357, + -0.015132805332541466, + -0.07541362196207047, + 0.015700535848736763, + -0.02163340151309967, + -0.04572976380586624, + -0.05323585495352745, + -0.1008785292506218, + -0.02655903249979019, + -0.06612944602966309, + -0.011951488442718983, + 0.07496391981840134, + -0.06039424240589142, + -0.023809930309653282, + 0.003594243200495839, + -0.07423700392246246, + -0.07242350280284882, + -0.08269565552473068, + 0.013216201215982437, + 0.013484845869243145, + 0.018480947241187096, + -0.08027248829603195, + -0.07829956710338593, + -9.004708252226087e-34, + 0.050173889845609665, + -0.0769738033413887, + -0.0282099898904562, + 0.03900039568543434, + -0.020831087604165077, + 0.01718607172369957, + -0.08210982382297516, + -0.006513914093375206, + 0.01981479860842228, + -0.0009633946465328336, + -0.09611358493566513, + -0.010879406705498695, + -0.04224773868918419, + -0.01253150962293148, + -0.017947478219866753, + 0.04991045221686363, + -0.002983247861266136, + 0.025261230766773224, + -0.04924188554286957, + -0.018212661147117615, + -0.060024015605449677, + -0.028763605281710625, + -0.05941169708967209, + 0.06319984793663025, + 0.07968875765800476, + -0.00662961695343256, + -0.025768611580133438, + -0.08006124943494797, + -0.07002467662096024, + -0.06210126727819443, + 0.05249405279755592, + -0.006807548925280571, + 0.053838156163692474, + -0.02891322411596775, + -0.033475328236818314, + 0.0580841563642025, + -0.010527385398745537, + -0.024601340293884277, + 0.0024995298590511084, + 0.03790701553225517, + 0.08528383076190948, + 0.012411978095769882, + 0.07303120195865631, + -0.017145665362477303, + 0.01022519450634718, + 0.010413441807031631, + -0.006589791737496853, + 0.021313851699233055, + 0.030131720006465912, + 0.024868804961442947, + 0.02134355902671814, + -0.06320980191230774, + 0.011915006674826145, + -0.02194557897746563, + -0.026144806295633316, + 0.07992396503686905, + 0.06831050664186478, + 0.032139722257852554, + 0.07479888945817947, + 0.0008108692127279937, + -0.03468391299247742, + 0.017195744439959526, + -0.0625484511256218, + 0.07053881138563156, + 0.007080183830112219, + -0.10398007929325104, + -0.0056807310320436954, + -0.04178553819656372, + -0.03614182397723198, + -0.0036294455640017986, + -0.058547936379909515, + 0.03526841104030609, + 0.0260890144854784, + -0.06049419939517975, + 0.04438210278749466, + -0.0003310506872367114, + 0.05380154401063919, + 0.04236356168985367, + -0.04282707720994949, + 0.01670582965016365, + 0.02880840003490448, + 0.04055412858724594, + 0.0002492426137905568, + 0.012785812839865685, + 0.048458267003297806, + 0.027593277394771576, + -0.002246157731860876, + 0.02560247853398323, + -0.06950323283672333, + -0.033315509557724, + -0.0009704965050332248, + 0.059153396636247635, + 0.033274583518505096, + 0.052338000386953354, + 0.0022131293080747128, + -2.19285709590622e-08, + -0.04941939935088158, + -0.055267252027988434, + -0.03904785215854645, + 0.03587915003299713, + 0.010257992893457413, + 0.025524761527776718, + -0.015123659744858742, + 0.040218815207481384, + -0.013222815468907356, + -0.005363150965422392, + 0.03828483819961548, + -0.009363588877022266, + -0.13281624019145966, + -0.051189884543418884, + 0.03351443260908127, + 0.02951016277074814, + 0.06111814081668854, + 0.019946608692407608, + -0.021376125514507294, + 0.010736901313066483, + 0.03796779736876488, + 0.07303820550441742, + 0.05484155938029289, + -0.03658457100391388, + 0.03132818639278412, + 0.13124410808086395, + 0.00019564313697628677, + 0.029604237526655197, + 0.11625797301530838, + 0.09350340068340302, + 0.020978620275855064, + 0.07762875407934189, + -0.0025566716212779284, + -0.036630868911743164, + -0.028073899447917938, + 0.04980459064245224, + 0.008043003268539906, + 0.02108822390437126, + -0.02421400509774685, + 0.12302452325820923, + 0.05758503079414368, + -0.05653287470340729, + 0.04662716016173363, + -0.001835895236581564, + -0.0371287502348423, + -0.020848501473665237, + 0.03070080280303955, + -0.04599136486649513, + 0.043843045830726624, + -0.08902867883443832, + -0.05575067177414894, + -0.055948879569768906, + 0.10066772997379303, + 0.031082015484571457, + -0.02748682349920273, + 0.003490252187475562, + 0.019229475408792496, + 0.05836981534957886, + 0.01559558417648077, + -0.011800779029726982, + 0.15509575605392456, + 0.07759307324886322, + 0.0016497765900567174, + 0.12056446820497513 + ], + "books-bold||reading,reader,bookshelf,library,places,locations": [ + 0.09389514476060867, + -0.09377823024988174, + -0.049619730561971664, + 0.060890164226293564, + -0.0091293565928936, + 0.022928547114133835, + 0.022812142968177795, + -0.03380308300256729, + 0.03555242717266083, + 0.054926738142967224, + 0.034360505640506744, + 0.08633318543434143, + 0.07722169160842896, + -0.03659825772047043, + -0.0213056318461895, + 0.000553143210709095, + 0.008920157328248024, + 0.028515417128801346, + 0.062077056616544724, + -0.036655034869909286, + 0.027354056015610695, + 0.10375504195690155, + 0.03282628580927849, + 0.04809454083442688, + 0.029266055673360825, + -0.032280221581459045, + -0.00483607267960906, + -0.06019667908549309, + -0.042472969740629196, + -0.06614022701978683, + -0.021657539531588554, + -0.02867327816784382, + 0.0465393029153347, + -0.020224574953317642, + 0.03997434675693512, + 0.05048370733857155, + 0.03400377556681633, + -0.04540570452809334, + 0.03955790773034096, + 0.02780521847307682, + -0.002659938298165798, + 0.0066545153968036175, + -0.014663671143352985, + 0.07094769924879074, + -0.043758973479270935, + -0.04110105335712433, + -0.020571397617459297, + -0.030836792662739754, + 0.044162046164274216, + 0.016740163788199425, + -0.02469586208462715, + -0.0354892760515213, + -0.15530487895011902, + 0.009262105450034142, + -0.001606058212928474, + 0.0746326670050621, + -0.09205982834100723, + -0.022630522027611732, + 0.015402259305119514, + -0.021273089572787285, + 0.02070852369070053, + -0.0314195416867733, + 0.0007470314158126712, + 0.04236451908946037, + 0.01796698570251465, + 0.04730817303061485, + -0.029196709394454956, + 0.06585676968097687, + -0.030997198075056076, + -0.03891301900148392, + -0.025776507332921028, + 0.03637039661407471, + 0.08017125725746155, + -0.011203914880752563, + 0.004281607456505299, + -0.01821189559996128, + -0.021036628633737564, + -0.06350106745958328, + 0.013207575306296349, + -0.09549383074045181, + -0.13188883662223816, + -0.047680649906396866, + 0.00578832533210516, + -0.005458363797515631, + -0.020833749324083328, + 0.03632543608546257, + -0.039722900837659836, + -0.0851404219865799, + 0.013807922601699829, + -0.05585727468132973, + 0.04134121164679527, + -0.08557682484388351, + -0.026089325547218323, + 0.06947498768568039, + -0.0998719185590744, + 0.006727261934429407, + 0.05531357601284981, + 0.009693277068436146, + 0.010749953798949718, + 0.06521937996149063, + 0.014228268526494503, + 0.10662583261728287, + 0.11784058809280396, + 0.014302290044724941, + -0.06665864586830139, + -0.0809413343667984, + -0.09118548035621643, + -0.05529695376753807, + -0.07953313738107681, + -0.03822554647922516, + -0.03520476445555687, + -0.07350040227174759, + -0.003453994868323207, + -0.02029598318040371, + -0.020047424361109734, + -0.0496133528649807, + 0.08512420207262039, + -0.0010300279827788472, + 0.11374297738075256, + 0.08827179670333862, + -0.02529183216392994, + 0.03299153968691826, + 0.022431636229157448, + -0.013071364723145962, + -0.06181650608778, + -0.021992526948451996, + 0.043541017919778824, + -8.95705756833459e-34, + 0.01503544207662344, + 0.018909642472863197, + -0.03147063031792641, + 0.0858980342745781, + 0.0044250828213989735, + -0.049385782331228256, + 0.0229707732796669, + -0.02443687804043293, + -0.06130824238061905, + 0.004282979294657707, + 0.09238607436418533, + 0.05441467463970184, + -0.03236904367804527, + 0.060549747198820114, + 0.014888841658830643, + 0.023721842095255852, + -0.016696488484740257, + -0.0009420439600944519, + -0.101768359541893, + 0.023597292602062225, + -0.04367737099528313, + 0.007922302931547165, + -0.002692834474146366, + -0.024656927213072777, + -0.014507288113236427, + -0.05874558910727501, + 0.008241808973252773, + -0.019190654158592224, + -0.02278212644159794, + 0.04454436153173447, + 0.028539607301354408, + -0.020463667809963226, + 0.00572735583409667, + -0.0855531170964241, + -0.010317516513168812, + -0.0041037690825760365, + -0.05132227763533592, + -0.04156768321990967, + 0.08027090132236481, + 0.024205485358834267, + -0.09564372897148132, + -0.0023395661264657974, + 0.018397077918052673, + 0.029797231778502464, + 0.020760534331202507, + 0.15480682253837585, + 0.020172975957393646, + -0.014575007371604443, + 0.049349211156368256, + 0.02961009554564953, + -0.05398758873343468, + -0.0652581974864006, + -0.07645219564437866, + -0.014343589544296265, + 0.03392787277698517, + 0.02081969380378723, + -0.03910871967673302, + 0.066185861825943, + 0.07917315512895584, + 0.011285463348031044, + 0.07352544367313385, + 0.09064789861440659, + 0.09132809191942215, + -0.03584917634725571, + 0.039560556411743164, + 0.017732612788677216, + -0.06768184900283813, + -0.0005788869457319379, + 0.051786378026008606, + -0.03297971561551094, + -0.04164198413491249, + 0.050705261528491974, + 0.08590540289878845, + 0.052710361778736115, + -0.033876437693834305, + 0.02549419179558754, + -0.06501859426498413, + -0.010843735188245773, + -0.004979938734322786, + -0.12317018955945969, + -0.0813470408320427, + -0.009169874712824821, + -0.033124763518571854, + 0.1224040687084198, + -0.06341619789600372, + -0.0009633282315917313, + 0.027889037504792213, + -0.11187473684549332, + -0.07228632271289825, + -0.029985137283802032, + -0.013602382503449917, + 0.032450009137392044, + -0.0468786358833313, + -0.1169326901435852, + -0.08739729225635529, + -1.84034734349165e-33, + 0.06370780616998672, + -0.10025231540203094, + -0.049199867993593216, + -0.01679784059524536, + -0.018690919503569603, + 0.011398051865398884, + -0.08990687131881714, + -0.01687180995941162, + 0.07192017138004303, + 0.021596884354948997, + -0.1251777708530426, + 0.0005506104207597673, + 0.007679305039346218, + 0.004771288484334946, + -0.013376464135944843, + -0.02593609131872654, + 0.08981361985206604, + -0.016671452671289444, + -0.011662181466817856, + 0.033981747925281525, + -0.07343477755784988, + -0.01113823801279068, + -0.046623047441244125, + 0.008449062705039978, + 0.07988569140434265, + -0.011513708159327507, + -0.0570211336016655, + -0.04953562468290329, + -0.1166893020272255, + -0.021727629005908966, + -0.03543783351778984, + -0.02619822509586811, + 0.09713958203792572, + 0.023023562505841255, + -0.1282210350036621, + 0.00015878092381171882, + 0.030076298862695694, + -0.058104075491428375, + 0.0006821974529884756, + -0.0006558462628163397, + 0.07773789763450623, + 0.023365600034594536, + 0.035504989326000214, + -0.032889317721128464, + -0.020098693668842316, + -0.017752576619386673, + -0.04339040443301201, + -0.025030678138136864, + 0.04747222736477852, + 0.035605330020189285, + -0.0012724429834634066, + -0.008836651220917702, + 0.007156216539442539, + -0.028337005525827408, + -0.0068272920325398445, + 0.05975353717803955, + 0.02226157672703266, + -0.02124042809009552, + 0.046494267880916595, + 0.021655449643731117, + -0.059754107147455215, + 0.03265959024429321, + -0.06423582881689072, + 0.07526475936174393, + 0.00512869143858552, + -0.10772446542978287, + -0.039113786071538925, + -0.04665065184235573, + 0.06136438995599747, + -0.022672146558761597, + -0.04692476987838745, + 0.016865136101841927, + 0.032259900122880936, + -0.03259928897023201, + -0.0027193559799343348, + 0.06930968910455704, + 0.0759415477514267, + 0.016772080212831497, + -0.045148901641368866, + 0.011499219574034214, + -0.037440624088048935, + -0.009931858628988266, + -0.06276953220367432, + 0.08784057199954987, + 0.01798867993056774, + 0.0342257060110569, + 0.03491062670946121, + -0.030162982642650604, + 0.003843576181679964, + -0.06308191269636154, + -0.0036635049618780613, + 0.013627655804157257, + -0.015085936523973942, + -0.006200090050697327, + 0.006469689309597015, + -2.2624673690074815e-08, + -0.017972735688090324, + 0.005204453598707914, + -0.06360413134098053, + 0.011123456060886383, + 0.009103508666157722, + -0.019921157509088516, + 0.05659251660108566, + 0.06388197839260101, + -0.07613807916641235, + 0.05837307125329971, + 0.03926852345466614, + -0.013829919509589672, + -0.013397135771811008, + -0.0492720752954483, + 0.030535226687788963, + 0.0592067576944828, + 0.08674313127994537, + -0.028833121061325073, + -0.053547877818346024, + -0.0021735939662903547, + 0.06062320992350578, + 0.04468720033764839, + 0.06368162482976913, + -0.001906737918034196, + 0.010327736847102642, + 0.08758681267499924, + -0.020946474745869637, + -0.04955367371439934, + 0.058029696345329285, + 0.0390770360827446, + 0.04544566944241524, + 0.06057611480355263, + 0.007068122737109661, + -0.003268218133598566, + -0.01686498522758484, + 0.0005121781141497195, + -0.0422024130821228, + 0.05440036207437515, + -0.04559483751654625, + 0.1313955932855606, + -0.026191094890236855, + -0.09963628649711609, + -0.0020735396537929773, + 0.008660011924803257, + 0.008888897486031055, + 0.005674232728779316, + 0.046701107174158096, + 0.005589315202087164, + 0.013867788948118687, + -0.04379675164818764, + -0.05718611553311348, + -0.00915165152400732, + 0.09116413444280624, + 0.008135102689266205, + -0.02395002730190754, + -0.006278295069932938, + 0.014491699635982513, + 0.03269109129905701, + -0.07222148030996323, + 0.0170542374253273, + 0.10768324881792068, + -0.025742182508111, + -0.03987077623605728, + 0.055857833474874496 + ], + "boot-bold||hiking,shoes,sports,exercise": [ + -0.05756865814328194, + -0.019364964216947556, + 0.038506608456373215, + 0.05157313123345375, + 0.10690684616565704, + -0.035456400364637375, + 0.026290297508239746, + -0.034659795463085175, + -0.05813178792595863, + 0.03380172699689865, + -0.03333140164613724, + 0.07114250212907791, + 0.022996127605438232, + -0.03070862591266632, + 0.04629584401845932, + 0.010262548923492432, + 0.004290752112865448, + 0.039913639426231384, + 0.022974014282226562, + -0.025260217487812042, + -0.007717817556113005, + 0.0015594406286254525, + 0.049370381981134415, + 0.12353610247373581, + -0.04812080040574074, + -0.029077472165226936, + 0.059432946145534515, + 0.038015030324459076, + -0.05429384112358093, + -0.03708544746041298, + -0.04470963031053543, + 0.036152929067611694, + 0.037411075085401535, + 0.0177776999771595, + -0.020607970654964447, + -0.027744224295020103, + 0.07291915267705917, + -0.06470058113336563, + -0.08496146649122238, + 0.1072961613535881, + 0.0334211029112339, + -0.09719977527856827, + 0.014992276206612587, + 0.024025676771998405, + 0.030000600963830948, + -0.014478543773293495, + -0.0011254643322899938, + 0.03888663277029991, + 0.0332428514957428, + 0.07632257044315338, + -0.01106084231287241, + -0.07639580219984055, + -0.07040461152791977, + 0.030589977279305458, + 0.03525666147470474, + -0.018294278532266617, + -0.06804928183555603, + -0.0733557716012001, + -0.009685900993645191, + -0.05913994833827019, + 0.07832035422325134, + 0.008923117071390152, + -0.024633778259158134, + 0.05336727201938629, + 0.042831309139728546, + 0.0008841116214171052, + 0.01378365233540535, + -0.05475398898124695, + -0.03471394628286362, + 0.046209175139665604, + 0.001989693846553564, + -0.01918725110590458, + 0.01573104038834572, + 0.004292041528970003, + -0.1156671941280365, + 0.10185449570417404, + 0.010301138274371624, + 0.032039668411016464, + -0.03998638689517975, + -0.07841874659061432, + -0.0835280492901802, + -0.017129158601164818, + 0.010411741212010384, + 0.03403235599398613, + -0.003297477960586548, + -0.00526374951004982, + -0.01850534789264202, + -0.07090415060520172, + -0.06272052973508835, + 0.010722269304096699, + -0.08573843538761139, + -0.016521599143743515, + -0.019712580367922783, + 0.040604595094919205, + -0.05988504737615585, + 0.007947529666125774, + 0.020926229655742645, + -0.06281110644340515, + -0.06272253394126892, + 0.05424917861819267, + 0.024867132306098938, + 0.02736060507595539, + 0.034463800489902496, + 0.034002549946308136, + -0.005277607589960098, + -0.07573337107896805, + 0.007204317022114992, + 0.019979167729616165, + 0.01417197473347187, + 0.07751371711492538, + 0.009172876365482807, + -0.06595401465892792, + -0.008198208175599575, + 0.03630010038614273, + -0.004795965738594532, + -0.03468267247080803, + -0.003656824119389057, + 0.11887465417385101, + 0.06830605119466782, + 0.08775537461042404, + -0.09012363106012344, + -0.04052884876728058, + 0.026364773511886597, + -0.08805949985980988, + -0.024096736684441566, + -0.019083820283412933, + 0.04915650188922882, + -9.347846991845614e-34, + 0.02389189973473549, + 0.012827446684241295, + -0.031376540660858154, + 0.10694919526576996, + -0.021433070302009583, + 0.026102334260940552, + -0.020175324752926826, + -0.09840640425682068, + -0.04709794372320175, + 0.05002978816628456, + 0.008024134673178196, + 0.14544306695461273, + 0.004305563867092133, + 0.052553143352270126, + 0.054008420556783676, + -0.0008145605679601431, + -0.04681910574436188, + -0.029198195785284042, + -0.056244056671857834, + 0.026620419695973396, + 0.07874651998281479, + 0.009628194384276867, + -0.03120199590921402, + 0.03485347703099251, + 0.03908851742744446, + -0.06586594879627228, + 0.02214108593761921, + -0.037005726248025894, + -0.05316254496574402, + 0.010314398445189, + 0.015267587266862392, + 0.0263065192848444, + 0.046098824590444565, + -0.056270334869623184, + 0.008656014688313007, + -0.03460925072431564, + 0.023372085765004158, + -0.042231373488903046, + 0.0075265043415129185, + 0.0025189865846186876, + 0.007630954030901194, + -0.02044045552611351, + 0.08184443414211273, + -0.06945911794900894, + 0.03442266210913658, + 0.15228970348834991, + 0.08828730136156082, + -0.01924665831029415, + -0.030985265970230103, + -0.06515992432832718, + -0.036952681839466095, + 0.001446119393222034, + 0.06524974852800369, + -0.08706195652484894, + -0.009190080687403679, + -0.04683999344706535, + -0.006040767766535282, + 0.0002577190170995891, + 0.015833966434001923, + -0.0006194497109390795, + 0.008388585411012173, + 0.00875907577574253, + 0.05163803696632385, + -0.03789755702018738, + -0.05304979905486107, + -0.06338660418987274, + -0.06205875799059868, + -0.013347734697163105, + 0.025363419204950333, + 0.05587853863835335, + 0.06640591472387314, + 0.06246858835220337, + 0.11374849826097488, + 0.04776366427540779, + 0.00316422781907022, + 0.007284959778189659, + 0.0358700156211853, + -0.02190249413251877, + -0.042918235063552856, + -0.10097125172615051, + -0.08051510155200958, + -0.036199215799570084, + -0.07390212267637253, + 0.09576567262411118, + 0.08029046654701233, + 0.07131657004356384, + -0.06744038313627243, + -0.044606029987335205, + 0.023281604051589966, + 0.002871453296393156, + -0.1048491820693016, + -0.01852683536708355, + -0.012417811900377274, + -0.03539299964904785, + -0.09079911559820175, + -6.1021289283627314e-34, + 0.10878388583660126, + 0.06957469880580902, + 0.0792291909456253, + -0.05336068570613861, + -0.007812160532921553, + -0.00016464520012959838, + 0.044424980878829956, + 0.05889365077018738, + 0.03585894778370857, + 0.019246486946940422, + 0.020961027592420578, + -0.05076299607753754, + -0.0168622899800539, + -0.029015984386205673, + 0.02055233158171177, + 0.03901909664273262, + 0.025779645889997482, + 0.04130282998085022, + -0.007727278396487236, + 0.03835674747824669, + -0.019537638872861862, + 0.010270192287862301, + -0.021916689351201057, + 0.0012098860461264849, + -0.0013287219917401671, + -0.0011135144159197807, + 0.035866085439920425, + 0.07370118796825409, + -0.15794093906879425, + -0.03169051557779312, + 0.05947667732834816, + 0.04257988557219505, + 0.03576257452368736, + -0.007826651446521282, + -0.07800332456827164, + 0.09705980122089386, + -0.04682029411196709, + -0.028484055772423744, + 0.022657891735434532, + 0.014055708423256874, + 0.05303017422556877, + -0.06821510940790176, + 0.023379571735858917, + 0.011252869851887226, + -0.013235068880021572, + -0.0869130790233612, + -0.04302772507071495, + -0.00629760604351759, + -0.0857047587633133, + 0.010634609498083591, + 0.02049233205616474, + -0.016324102878570557, + -0.0023532940540462732, + 0.06277529895305634, + 0.015714053064584732, + -0.06067778542637825, + -0.0788489580154419, + -0.023670725524425507, + -0.034678321331739426, + 0.037311285734176636, + -0.025158334523439407, + 0.10743415355682373, + -0.005657412577420473, + -0.03090125322341919, + 0.02196291834115982, + -0.0021156384609639645, + -0.01883484236896038, + 0.006443141959607601, + -0.05171094462275505, + 0.03718583285808563, + -0.022162728011608124, + -0.06322697550058365, + 0.040740638971328735, + 0.08219283819198608, + 0.008087527938187122, + -0.043037980794906616, + 0.04067615419626236, + -0.036291465163230896, + -0.04345924034714699, + 0.02524842508137226, + -0.036176953464746475, + -0.11152049154043198, + -0.07130439579486847, + 0.04817294329404831, + -0.014026959426701069, + 0.13614514470100403, + 0.030796511098742485, + 0.03563312441110611, + 0.031825847923755646, + 0.011496652849018574, + 0.0036669590044766665, + 0.08025459945201874, + -0.02283025160431862, + 0.01780674420297146, + -0.022483041509985924, + -1.6662120572163985e-08, + 0.015151791274547577, + 0.034113042056560516, + -0.005378006026148796, + 0.028050879016518593, + 0.0026023047976195812, + -0.05171903222799301, + -0.04456587880849838, + -0.0350002646446228, + 0.012319633737206459, + -0.03144105151295662, + -0.015832487493753433, + 0.009180523455142975, + 0.01404968835413456, + 0.03838377073407173, + -0.00910520926117897, + 0.06622730195522308, + -0.03856237605214119, + 0.08553051203489304, + -0.061589084565639496, + -0.05365430563688278, + -0.026976758614182472, + -0.05034807324409485, + 0.04598432779312134, + 0.059446509927511215, + 0.012122522108256817, + -0.006402819883078337, + 0.04799291864037514, + -0.09367649257183075, + 0.001805285457521677, + 0.09178802371025085, + 0.026128288358449936, + 0.011156035587191582, + 0.007992316037416458, + 0.0210756566375494, + -0.09650735557079315, + 0.04792983457446098, + 0.07602925598621368, + -0.03532211109995842, + -0.018478862941265106, + 0.1000479981303215, + -0.07257550954818726, + -0.0634327381849289, + 0.024065062403678894, + -0.018788060173392296, + -0.11398159712553024, + -0.01470594946295023, + -0.020141005516052246, + 0.038392774760723114, + -0.0810471922159195, + -0.03543218970298767, + -0.007993876934051514, + -0.024717362597584724, + 0.003222373314201832, + 0.07281133532524109, + -0.03951364383101463, + -0.044217802584171295, + -0.030487364158034325, + 0.09583764523267746, + -0.006999169010668993, + 0.07316192239522934, + 0.07195526361465454, + -0.1314397007226944, + -0.024125561118125916, + -0.02086942456662655 + ], + "boules-bold||*new*,balls,sports,p\u00e9tanque,raffa,bocce,boule lyonnaise,lawn bowls": [ + 0.03482962027192116, + -0.04587457329034805, + -0.0818217471241951, + -0.025691743940114975, + -0.0035471885930746794, + -0.0029062044341117144, + 0.12794873118400574, + -0.014601323753595352, + 0.039947908371686935, + -0.012111225165426731, + -0.0479385070502758, + -0.06854970008134842, + 0.009634135290980339, + -0.02574680931866169, + 0.012094386853277683, + -0.007039617281407118, + 0.05899380147457123, + -0.028873637318611145, + 0.005821799859404564, + -0.02115998975932598, + 0.0005881563993170857, + 0.0338205061852932, + 0.07816827297210693, + 0.09148511290550232, + -0.023044468834996223, + 0.030156688764691353, + 0.011959009803831577, + 0.038589928299188614, + -0.03201896697282791, + -0.07790923118591309, + -0.02163582667708397, + 0.10439034551382065, + 0.10540417581796646, + -0.066641665995121, + 0.08861435204744339, + -0.02159654162824154, + 0.00024425130686722696, + -0.0409674309194088, + 0.002868900541216135, + 0.06540384888648987, + -0.007408940698951483, + -0.059686869382858276, + -0.013032783754169941, + 0.016875069588422775, + -0.030776210129261017, + 0.05141505226492882, + 0.0270058773458004, + -0.011635560542345047, + 0.0276672150939703, + 0.015657663345336914, + 0.023808015510439873, + -0.025966841727495193, + -0.07009643316268921, + 0.019070327281951904, + 0.09141268581151962, + -0.02678600326180458, + -0.07561473548412323, + 0.009249472990632057, + 0.02183474227786064, + 0.0018762624822556973, + 0.01632191799581051, + 0.05398879200220108, + -0.03366965055465698, + 0.015348740853369236, + -0.0366249680519104, + -0.08130557835102081, + -0.08124051988124847, + 0.024892525747418404, + -0.038012295961380005, + 0.04411079362034798, + 0.02316083014011383, + -0.0070640998892486095, + -0.038936421275138855, + 0.026016078889369965, + -0.03600672259926796, + 0.05323517322540283, + -0.0010969997383654118, + -0.054930757731199265, + 0.00033402026747353375, + -0.09673649072647095, + -0.06418335437774658, + -0.17464278638362885, + -0.03792719170451164, + 0.012853081338107586, + -0.004714724142104387, + 0.0273854099214077, + 0.01941274292767048, + -0.02827761322259903, + 0.016513802111148834, + -0.06620723009109497, + -0.05493475869297981, + -0.04611992835998535, + -0.04564954712986946, + 0.0237339548766613, + -0.048557039350271225, + 0.040296558290719986, + 0.04212089627981186, + -0.05110335350036621, + 0.05129130184650421, + 0.12258521467447281, + -0.05258668586611748, + -0.017401840537786484, + 0.08854548633098602, + 0.07392660528421402, + -0.0965036004781723, + -0.06519345939159393, + -0.028692420572042465, + 0.053870294243097305, + 0.07045204937458038, + 0.0682120993733406, + 0.027768252417445183, + -0.08564557135105133, + 0.04659922048449516, + -0.04551640525460243, + -0.11691534519195557, + 0.040696002542972565, + -0.029450692236423492, + -0.06895335018634796, + -0.008312090300023556, + -0.02158971317112446, + 0.04440701752901077, + 0.01771719940006733, + -0.0165544506162405, + 0.005679100286215544, + -0.01565931737422943, + 0.040400102734565735, + -0.050231143832206726, + 1.2645187624428826e-33, + 0.056093454360961914, + 0.01844125986099243, + 0.0543937161564827, + 0.050871528685092926, + -0.06615091860294342, + -0.027398183941841125, + -0.04257296025753021, + -0.09175918251276016, + 0.004883100278675556, + 0.03634160757064819, + 0.019804559648036957, + 0.07739175111055374, + 0.041688770055770874, + -0.004694809205830097, + 0.07717706263065338, + -0.06740165501832962, + 0.015439698472619057, + -0.03254768252372742, + -0.0025458885356783867, + 0.027372756972908974, + -0.07946760952472687, + 0.12334045022726059, + 0.016567615792155266, + 0.05398096516728401, + 0.0035784102510660887, + -0.024723008275032043, + 0.016888584941625595, + -0.07618824392557144, + -0.02922731079161167, + 0.03904782980680466, + 0.11080807447433472, + 0.03541044518351555, + -0.015519743785262108, + 0.02816859260201454, + -0.06920883804559708, + 0.004908969160169363, + -0.07050706446170807, + -0.08342452347278595, + -0.05966902896761894, + -0.024395765736699104, + 0.04237953945994377, + -0.07235904037952423, + -0.026219302788376808, + 0.032900772988796234, + -0.033524058759212494, + -0.02125547267496586, + -0.02561139315366745, + -0.034596528857946396, + 0.05041028931736946, + -0.009591538459062576, + 0.05231764167547226, + 0.005335195455700159, + -0.0023653532844036818, + -0.002142258221283555, + 0.0095595084130764, + -0.019232861697673798, + 0.0018989876843988895, + 0.044000428169965744, + 0.04376889020204544, + -0.01345484983175993, + 0.07497771084308624, + -0.0058035398833453655, + 0.010261583141982555, + 0.024604590609669685, + -0.03733856603503227, + -0.01643729768693447, + -0.008000136353075504, + 0.04796036705374718, + 0.043839775025844574, + -0.044222645461559296, + 0.031450238078832626, + 0.041489675641059875, + 0.047356415539979935, + -0.0028523788787424564, + 0.04478619620203972, + 0.0621790811419487, + 0.0012447185581550002, + 0.024956705048680305, + 0.03383715823292732, + -0.04421277716755867, + -0.04555715247988701, + -0.012230565771460533, + -0.014685488305985928, + 0.031094500795006752, + -0.03667488694190979, + 0.07290257513523102, + 0.011523614637553692, + -0.007027731742709875, + -0.0023131119087338448, + 0.020444339141249657, + -0.14209610223770142, + -0.050676386803388596, + 0.028604399412870407, + -0.05221027880907059, + -0.13954699039459229, + -2.462947008049713e-33, + -0.028151271864771843, + 0.01869818940758705, + -0.0756191536784172, + 0.05894169211387634, + 0.017372693866491318, + 0.05650952458381653, + 0.008554227650165558, + 0.059144649654626846, + 0.03849080577492714, + -0.035072170197963715, + 0.050529804080724716, + 0.009499642997980118, + -0.031206635758280754, + -0.07019861787557602, + -0.0373055636882782, + -0.01885330304503441, + -0.011463301256299019, + 0.006246716715395451, + -0.04007158428430557, + 0.0067599774338305, + -0.01656101457774639, + -0.01436771173030138, + -0.010589891113340855, + -0.03602052107453346, + -0.10855931788682938, + 0.024484975263476372, + 0.008265211246907711, + -0.07647135108709335, + -0.07176545262336731, + 0.024216899648308754, + -0.06000475957989693, + -0.05733995884656906, + 0.0600193627178669, + 0.10526874661445618, + -0.011823433451354504, + 0.055837225168943405, + 0.12916402518749237, + -0.0412030890583992, + -0.062161773443222046, + 0.015954704955220222, + -0.10364366322755814, + 0.021377848461270332, + 0.030490074306726456, + 0.053224362432956696, + -0.02379964292049408, + -0.055978916585445404, + -0.05901163071393967, + -0.06275782734155655, + 0.011463271453976631, + 0.08387916535139084, + -0.0026227468624711037, + 0.003648726735264063, + -0.045995600521564484, + -0.03475683927536011, + -0.03883444517850876, + 0.01991497166454792, + -0.03783629462122917, + -0.00812608003616333, + -0.06176666170358658, + 0.047911789268255234, + -0.014868400990962982, + 0.07837291061878204, + -0.019807441160082817, + 0.10474846512079239, + 0.06053296476602554, + 0.04032158479094505, + -0.14192019402980804, + -0.05008820444345474, + 0.005833072122186422, + -0.018461640924215317, + -0.06780900806188583, + 0.010516992770135403, + 0.0003357352106831968, + 0.08325719088315964, + 0.051450684666633606, + -0.034414324909448624, + 0.06778014451265335, + 0.06316683441400528, + 0.0522843636572361, + 0.0872775986790657, + -0.05584664270281792, + 0.007433181628584862, + -0.095374196767807, + 0.08881779760122299, + 0.06667426973581314, + 0.004756196867674589, + -0.051138557493686676, + 0.012776238843798637, + 0.02094777673482895, + -0.009860200807452202, + 0.040481388568878174, + 0.009745764546096325, + 0.11858309060335159, + -0.006395607255399227, + 0.06386692821979523, + -2.6885748738436632e-08, + -0.01510542631149292, + -0.0003187781840097159, + -0.08189237862825394, + 0.03439994901418686, + 0.09554249793291092, + -0.04323838651180267, + -0.04986364766955376, + -0.09214025735855103, + -0.01881887950003147, + -0.06379280239343643, + 0.01611541211605072, + 0.051239755004644394, + -0.024064544588327408, + -0.0506446473300457, + 0.01799355074763298, + 0.08469390124082565, + -0.02110286056995392, + 0.007539235055446625, + -0.04853399842977524, + -0.05324516072869301, + 0.00686903391033411, + 0.05715905874967575, + -0.01584666408598423, + -0.0015563414199277759, + -0.016467439010739326, + -0.04909012094140053, + -0.09959439188241959, + -0.043474964797496796, + -0.022243956103920937, + 0.022409755736589432, + 0.05556521192193031, + 0.029556047171354294, + 0.03627379238605499, + -0.030795438215136528, + -0.020341843366622925, + 0.006650338880717754, + 0.005443282891064882, + 0.022392118349671364, + -0.05694178119301796, + 0.11608008295297623, + 0.014828812330961227, + -0.08252370357513428, + -0.030937401577830315, + -0.03646453097462654, + 0.016516342759132385, + 0.0005324805388227105, + -0.07903047651052475, + 0.010160538367927074, + -0.07498382031917572, + -0.06681190431118011, + -0.014682087115943432, + 0.07584356516599655, + 0.0899038165807724, + 0.002338533056899905, + -0.0019376056734472513, + 0.04220128431916237, + 0.0143326036632061, + 0.01793110929429531, + 0.04920803755521774, + 0.01436095591634512, + 0.0681208148598671, + 0.007350734900683165, + 0.08389759063720703, + 0.01366613432765007 + ], + "bounding-box-bold||polygon,shapes,outline,corners,rectangle": [ + 0.12669628858566284, + 0.06411287933588028, + -0.01494869589805603, + 0.040111273527145386, + 0.029267027974128723, + -0.025559071451425552, + 0.009420899674296379, + -0.05455009266734123, + -0.020776042714715004, + -0.05625736340880394, + -0.11469040811061859, + 0.06564763933420181, + 0.005162312649190426, + -0.02390868216753006, + -0.03187176585197449, + -0.047264695167541504, + 0.04644347354769707, + 0.0006694940384477377, + -0.02806732803583145, + 0.028050724416971207, + -0.00792657770216465, + -0.03654085472226143, + 0.0068216524086892605, + -0.029924435541033745, + -0.021650167182087898, + 0.008106197230517864, + 0.07405073940753937, + -7.875392475398257e-05, + 0.06480026990175247, + -0.09172163158655167, + -0.058749400079250336, + 0.006346074864268303, + 0.10784684866666794, + 0.05085492879152298, + -0.00520201213657856, + 0.04212033748626709, + -0.052109453827142715, + 0.006589607335627079, + 0.05634123459458351, + 0.039024751633405685, + -0.02976946532726288, + 0.035053860396146774, + 0.07943180203437805, + 0.07223064452409744, + 0.005580123979598284, + -0.02079630270600319, + -0.06778579205274582, + 0.03661103546619415, + -0.010530048981308937, + -0.08916342258453369, + 0.061507049947977066, + -0.1196637824177742, + -0.07011888921260834, + 0.023931292816996574, + -0.06783326715230942, + 0.003258984535932541, + -0.008487689308822155, + -0.032090380787849426, + 0.015991754829883575, + -0.05038675293326378, + 0.012528694234788418, + 0.036768119782209396, + 0.04730123281478882, + 0.020176898688077927, + -0.017553238198161125, + 0.05052503943443298, + -0.004339619539678097, + 0.009768061339855194, + -0.11107534915208817, + 0.028376895934343338, + 0.042006637901067734, + 0.08564238250255585, + -0.016502078622579575, + -0.06400743871927261, + 0.05500832945108414, + -0.06599489599466324, + -0.028592078015208244, + -0.004063494969159365, + -0.019191324710845947, + -0.0977143719792366, + -0.1021953597664833, + 0.027525300160050392, + -0.013957515358924866, + 0.0548243410885334, + 0.023331452161073685, + 0.06706137210130692, + -0.049020957201719284, + -0.04170246794819832, + 0.009869207628071308, + 0.023404132574796677, + -0.006461473647505045, + -0.02385742962360382, + -0.014019335620105267, + 0.09452150017023087, + -0.14170801639556885, + -0.03526254743337631, + -0.0038832032587379217, + 0.015865404158830643, + -0.1001320332288742, + 0.02692580409348011, + 0.05427153408527374, + -0.019121360033750534, + 0.05095631256699562, + -0.029879014939069748, + 0.047032680362463, + 0.02258961647748947, + 0.04452785477042198, + -0.04809308052062988, + 0.05033831298351288, + 0.04958968982100487, + -0.0016915781889110804, + -0.07713121920824051, + -0.011641597375273705, + -0.02727079950273037, + -0.04454676806926727, + -0.02080719545483589, + -0.07913996279239655, + -0.02043742872774601, + 0.05217117443680763, + -0.03359425067901611, + 0.03834287077188492, + -0.04633106291294098, + -0.04032681882381439, + -0.02627411112189293, + 0.008501047268509865, + 0.01258360967040062, + -0.03358679264783859, + -1.1341025315004462e-33, + 0.009030645713210106, + -0.011023178696632385, + -0.036992765963077545, + 0.15505191683769226, + 0.08703434467315674, + 0.016321394592523575, + -0.009305093437433243, + -0.06522495299577713, + -0.06814935058355331, + 0.1027911975979805, + -0.007675839122384787, + 0.0049091218970716, + 0.004560526460409164, + -0.018310654908418655, + 0.12406648695468903, + -0.03861074894666672, + -0.02740030735731125, + 0.02970992960035801, + -0.10593634098768234, + 0.04466113820672035, + -0.045187290757894516, + -0.024784909561276436, + -0.08939418196678162, + 0.028144648298621178, + -0.07168971747159958, + -0.00396836968138814, + 0.0017384635284543037, + 0.012537469156086445, + -0.03565441444516182, + 0.02271316945552826, + -0.03355783969163895, + 0.015665624290704727, + 0.024054601788520813, + 0.06770067662000656, + -0.06317678093910217, + -0.03042071871459484, + 0.03647007793188095, + -0.036727987229824066, + 0.04350588843226433, + 0.025381634011864662, + -0.019439755007624626, + -0.09081169962882996, + 0.041878633201122284, + -0.08825249969959259, + 0.06660769134759903, + 0.025956423953175545, + 0.007264984305948019, + 0.016477808356285095, + -0.05662970617413521, + -0.012567762285470963, + -0.005530013237148523, + 0.08663826435804367, + 0.030323920771479607, + -0.03008226491510868, + 0.0064484719187021255, + -0.10552320629358292, + -0.1033192127943039, + 0.11972244083881378, + 0.060335978865623474, + 0.09685498476028442, + 0.04777396842837334, + 0.0060446420684456825, + -0.009000812657177448, + 0.0068695275112986565, + -0.08147048950195312, + 0.013494087383151054, + -0.0658813938498497, + -0.011969533748924732, + 0.01876266673207283, + -0.010640806518495083, + 0.02533651329576969, + 0.019544286653399467, + 0.020614556968212128, + 0.04470745474100113, + -0.012334773316979408, + 0.021533798426389694, + 0.029124082997441292, + 0.035160694271326065, + 0.07913349568843842, + -0.07374925166368484, + -0.055546242743730545, + -0.010157288983464241, + -0.017638878896832466, + -0.0200167465955019, + -0.05157608538866043, + -0.052668385207653046, + 0.05876949802041054, + 0.033869173377752304, + 0.0021601126063615084, + 0.001692066085524857, + -0.11961373686790466, + -0.026477450504899025, + 0.027946507558226585, + -0.03393945470452309, + -0.04805305227637291, + -4.4881837942614955e-35, + -0.0043980577029287815, + 0.040534090250730515, + -0.025661911815404892, + -0.038959719240665436, + -0.0036848329473286867, + 0.04605971276760101, + -0.0047073327004909515, + -0.001849306165240705, + -0.01638980209827423, + -0.03452180325984955, + -0.03137776628136635, + -0.004752378910779953, + -0.055881816893815994, + -0.007752025034278631, + -0.021971892565488815, + 0.023921998217701912, + -0.011400454677641392, + 0.01929720677435398, + -0.10883299261331558, + -0.0533178485929966, + -0.08537118881940842, + -0.04741709306836128, + -0.10954201221466064, + 0.06562187522649765, + -0.10004744678735733, + 0.05373779684305191, + -0.020352864637970924, + 0.024479715153574944, + -0.08264917135238647, + 0.04231465235352516, + -0.052956148982048035, + -0.06723986566066742, + -0.025988744571805, + 0.058868762105703354, + -0.09610088914632797, + -0.08992750197649002, + 0.0326567180454731, + -0.09999142587184906, + 0.06034025922417641, + 0.02726154588162899, + -0.013535666279494762, + 0.005845384672284126, + -0.016037503257393837, + 0.044156771153211594, + -0.054038308560848236, + 0.011192522011697292, + -0.018947523087263107, + 0.025082413107156754, + -0.004044979810714722, + 0.048951540142297745, + -0.03939112275838852, + 0.006894850637763739, + 0.0933154746890068, + 0.008769415318965912, + -0.05342680960893631, + 0.028927849605679512, + -0.08094190806150436, + 0.018684016540646553, + 0.11706070601940155, + 0.05403276905417442, + -0.04658481478691101, + 0.03961325064301491, + -0.0165659599006176, + 0.05815322324633598, + 0.0645810142159462, + -0.01690949872136116, + 0.09183428436517715, + 0.0027416120283305645, + 0.027613520622253418, + 0.025984326377511024, + 0.06558290123939514, + 0.04934076964855194, + -0.011287274770438671, + 0.036594197154045105, + 0.011655418202280998, + 0.006773784756660461, + 0.09865345060825348, + -0.029850630089640617, + 0.0021920909639447927, + 0.07574181258678436, + 0.0023019672371447086, + -0.029933691024780273, + -0.012415565550327301, + 0.040004294365644455, + 0.047136761248111725, + -0.006230160593986511, + -0.0016459306934848428, + 0.01214496698230505, + 0.014473573304712772, + -0.04143471270799637, + -0.034610554575920105, + 0.033658090978860855, + 0.028919894248247147, + 0.005924119148403406, + 0.030168451368808746, + -2.086236428056054e-08, + -0.014844533987343311, + -0.034383624792099, + -0.06442302465438843, + -0.02554943971335888, + 0.039018671959638596, + -0.01982280984520912, + 0.012883334420621395, + 0.0025263428688049316, + -0.05961177125573158, + -0.025175299495458603, + 0.022831959649920464, + -0.04511481896042824, + -0.14690570533275604, + 0.0029994009528309107, + 0.027027230709791183, + 0.018983813002705574, + -0.034296948462724686, + 0.06212717667222023, + -0.026531096547842026, + -0.0458848811686039, + 0.007246394641697407, + 0.018357710912823677, + 0.09183281660079956, + 0.016497910022735596, + -0.03870616480708122, + -0.019147906452417374, + -0.06760811060667038, + 0.013387341052293777, + 0.09299415349960327, + 0.09778081625699997, + -0.025230836123228073, + 0.068866066634655, + 0.0969424620270729, + 0.01620618999004364, + 0.012876025401055813, + -0.011188244447112083, + -0.07867780327796936, + 0.030498811975121498, + -0.03317985683679581, + 0.12167389690876007, + 0.05541156232357025, + -0.038595784455537796, + 0.10923866182565689, + -0.05178086459636688, + 0.02099601924419403, + 0.029988396912813187, + 0.06239572539925575, + -0.004714800510555506, + 0.0064682066440582275, + -0.055705565959215164, + 0.0005771241849288344, + 0.04286854341626167, + 0.044342853128910065, + 0.1141289696097374, + -0.03453192114830017, + -0.023316403850913048, + -0.00607121828943491, + 0.051407478749752045, + 0.0381910465657711, + 0.047535575926303864, + 0.007357865106314421, + 0.0760708823800087, + -0.02497026138007641, + 7.906006067059934e-05 + ], + "bowl-food-bold||ramen,food,meal,eating,restaurants,dining,locations": [ + 0.09387634694576263, + -0.04572409391403198, + 0.03900790959596634, + 0.019141785800457, + -0.07336603105068207, + 0.014974844641983509, + 0.00871539767831564, + -0.10295549035072327, + 0.009368211030960083, + -0.03368507698178291, + 0.02080998197197914, + -0.039512597024440765, + 0.05190259590744972, + -0.05396413058042526, + -0.0012532168766483665, + -0.08944092690944672, + 0.17195801436901093, + 0.004636178724467754, + 0.06851683557033539, + -0.07250618189573288, + -0.019170265644788742, + 0.05320138484239578, + 0.10595729947090149, + 0.009052764624357224, + 0.061805032193660736, + 0.014809582382440567, + 0.06319857388734818, + 0.04375314339995384, + 0.0019030963303521276, + -0.03368198499083519, + 0.05673515796661377, + 0.05747383460402489, + 0.04927800968289375, + 0.009241488762199879, + -0.031333934515714645, + -0.03882263973355293, + 0.04051109775900841, + -0.09035448729991913, + 0.010216000489890575, + 0.024829082190990448, + 0.02180054411292076, + -0.030059704557061195, + 0.04641243442893028, + -0.049318768084049225, + 0.03841451182961464, + 0.008975185453891754, + -0.07482974231243134, + -0.014029933139681816, + 0.061873625963926315, + -0.06040364131331444, + 0.02443947270512581, + -0.033425018191337585, + 0.024299852550029755, + 0.09987063705921173, + 0.0887720137834549, + 0.01631256192922592, + -0.11675482243299484, + -0.06912495195865631, + 0.02359537035226822, + 0.07785049080848694, + 0.02334788627922535, + 0.07621058076620102, + -0.0016653675120323896, + 0.027449915185570717, + -0.06209000572562218, + -0.03362559899687767, + -0.08836183696985245, + 0.09663166105747223, + -0.03889129310846329, + -0.017628110945224762, + -0.012391106225550175, + -0.0029136156663298607, + 0.045545145869255066, + 0.004692365415394306, + -0.023251358419656754, + -0.07459205389022827, + 0.05210224911570549, + -0.09118138998746872, + -0.10246439278125763, + -0.04612720012664795, + -0.12958846986293793, + -0.05831955745816231, + 0.02910635992884636, + -0.01286925096064806, + -0.04881475865840912, + -0.017383480444550514, + -0.017230819910764694, + 0.020673684775829315, + 0.015928808599710464, + -0.055051811039447784, + -0.049913812428712845, + -0.0396832711994648, + -0.014227258041501045, + -0.03416256606578827, + 0.05964472517371178, + 0.0032050174195319414, + 0.025479823350906372, + -0.06577690690755844, + 0.008632434532046318, + 0.034913741052150726, + -0.04941102862358093, + 0.07033592462539673, + 0.0893472358584404, + -0.03372075408697128, + -0.045848749577999115, + -0.008702386170625687, + -0.06339505314826965, + 0.04435266926884651, + 0.02655021846294403, + -0.004550295881927013, + -0.002044235821813345, + -0.006208385340869427, + 0.00703244237229228, + -0.01684861071407795, + -0.06981852650642395, + -0.040732987225055695, + 0.0053983693942427635, + -0.10711687058210373, + 0.0013006862718611956, + 0.01538035273551941, + -0.09135495871305466, + 0.04552619159221649, + -0.0687599927186966, + 0.01950635388493538, + -0.030488764867186546, + 0.025079818442463875, + -0.012107670307159424, + -2.8783766298638944e-33, + -0.019539371132850647, + -0.08869798481464386, + 0.013239936903119087, + 0.023544669151306152, + 0.07503074407577515, + -0.06076892465353012, + -0.0338338240981102, + -0.09189428389072418, + 0.03501556068658829, + 0.02720639854669571, + 0.054337382316589355, + -0.04962107911705971, + -0.049785006791353226, + 0.05274089798331261, + 0.12947885692119598, + 0.0012639326741918921, + -0.02658388949930668, + 0.02584303542971611, + 0.026446882635354996, + -0.008973374031484127, + -0.0959436371922493, + 0.003237288910895586, + -0.011929210275411606, + -0.006251742132008076, + -0.02039112150669098, + -0.0590054914355278, + 0.06682416051626205, + -0.029997164383530617, + 0.010767058469355106, + 0.03571310266852379, + 0.0011289695976302028, + -0.005679375026375055, + -0.016565684229135513, + -0.013746979646384716, + -0.0412025973200798, + 0.026518912985920906, + -0.036417920142412186, + -0.03891156613826752, + -0.07582433521747589, + 0.04540316015481949, + 0.03047586791217327, + -0.010969952680170536, + -0.024814944714307785, + 0.09083661437034607, + -0.034329939633607864, + 0.0654216781258583, + 0.030017022043466568, + -0.012401862069964409, + 0.11497744172811508, + 0.036434371024370193, + 0.02179260179400444, + 0.0005261202459223568, + -0.010837852023541927, + -0.033018045127391815, + -0.013638456352055073, + -0.015599861741065979, + 0.0029129821341484785, + 0.06194625794887543, + 0.017865044996142387, + -0.0323764830827713, + -0.018757769837975502, + 0.025713441893458366, + -0.03511245176196098, + -0.03775186464190483, + 0.03148683160543442, + 0.07096251845359802, + -0.01672612503170967, + 0.020189758390188217, + 0.016158316284418106, + -0.017257723957300186, + -0.022218691185116768, + 0.01349839847534895, + 0.05114539712667465, + 0.029638437554240227, + 0.04244890436530113, + 0.07394323498010635, + -0.05517212674021721, + -0.023241626098752022, + 0.050069909542798996, + -0.023777037858963013, + -0.00023636093828827143, + -0.007652797736227512, + -0.08769142627716064, + 0.135453462600708, + -0.04358433559536934, + 0.11665520071983337, + -0.03409387916326523, + -0.046787016093730927, + 0.062386881560087204, + -0.012514688074588776, + -0.09606052190065384, + -0.007023037876933813, + 0.04908488318324089, + -0.01623043417930603, + -0.13415314257144928, + 9.36430023933728e-34, + -0.04340023919939995, + 0.005781743675470352, + -0.08187565207481384, + 0.05810960754752159, + 0.04082454368472099, + -0.02908356674015522, + -0.036723725497722626, + 0.006875728722661734, + 0.032304797321558, + -0.07921542972326279, + -0.0788545161485672, + -0.010258177295327187, + 0.010225036181509495, + -0.07292945683002472, + -0.05724189430475235, + 0.09821581095457077, + 0.0874210000038147, + 0.056462790817022324, + -0.014076926745474339, + 0.02372078038752079, + -0.0026194569654762745, + 0.0035779925528913736, + 0.007060004398226738, + -0.011750218458473682, + -0.04940064251422882, + 0.10898787528276443, + 0.0521763376891613, + 0.04960580915212631, + -0.08378183096647263, + -0.027913756668567657, + 0.006331995129585266, + -0.07424750179052353, + 0.05948370322585106, + -0.006028123665601015, + -0.03210197761654854, + 0.10473133623600006, + 0.011338124051690102, + -0.07766714692115784, + -0.01689269207417965, + 0.02656633034348488, + 0.02953510731458664, + 0.01072431355714798, + 0.028166161850094795, + 0.09228288382291794, + -0.015738701447844505, + 0.053041450679302216, + -0.05204419791698456, + -0.054588329046964645, + 0.03870261460542679, + -0.023409567773342133, + -0.025595568120479584, + 0.008204842917621136, + -0.002187376841902733, + -0.06650219112634659, + 0.023174144327640533, + 0.010559211485087872, + -0.00856429897248745, + 0.02583993785083294, + -0.017563890665769577, + -0.06847414374351501, + -0.03268282115459442, + 0.10214704275131226, + 0.044075656682252884, + 0.0870390310883522, + 0.031052840873599052, + -0.004065441899001598, + -0.036346837878227234, + -0.04302523657679558, + -0.02878583036363125, + -0.017571035772562027, + -0.06950760632753372, + -0.026871172711253166, + 0.05379359424114227, + 0.03275136277079582, + -0.01564134657382965, + 0.012019282206892967, + 0.051737744361162186, + -0.007710075471550226, + -0.015904918313026428, + 0.0737140104174614, + -0.04651282727718353, + 0.0015953126130625606, + -0.05820223689079285, + 0.029846910387277603, + 0.021489901468157768, + 0.0501103438436985, + -0.08121828734874725, + -0.0006051678792573512, + 0.0547654889523983, + 0.03275590017437935, + -0.017985651269555092, + 0.07535313069820404, + -0.05587492883205414, + -0.04575957730412483, + 0.04287772998213768, + -1.9996335254290898e-08, + 0.08454848825931549, + -0.07890773564577103, + -0.10591106116771698, + 0.05160561576485634, + 0.0194754246622324, + -0.07319033145904541, + -0.0006201507057994604, + 0.006461983546614647, + -0.0124906525015831, + 0.04065250977873802, + 0.021169278770685196, + 0.06563955545425415, + -0.09118365496397018, + 0.006825930438935757, + 0.004744859877973795, + 0.019980186596512794, + 0.009495477192103863, + -0.006812801118940115, + -0.03833457827568054, + -0.09971478581428528, + -0.034867171198129654, + 0.024010444059967995, + 0.06769727915525436, + -0.07247138023376465, + 0.014180870726704597, + 0.006960553582757711, + -0.05551000311970711, + 0.060734279453754425, + 0.06124342978000641, + 0.01138596422970295, + 0.03444056585431099, + 0.06837397068738937, + -0.11153644323348999, + 0.03489014878869057, + 0.018246017396450043, + -0.06750352680683136, + -0.10570940375328064, + 0.024957844987511635, + -0.006381981540471315, + 0.04588162899017334, + -0.04455497860908508, + -0.05930670350790024, + -0.00941383745521307, + 0.02454654686152935, + -0.020062876865267754, + 0.09372477233409882, + 0.014486746862530708, + 0.0530797503888607, + -0.0012345117283985019, + -0.030945342034101486, + -0.03160197287797928, + 0.006022448651492596, + 0.07708998769521713, + 0.026896769180893898, + 0.0016204792773351073, + 0.03278316184878349, + -0.004999609664082527, + -0.07060625404119492, + 0.08624164760112762, + 0.005511886905878782, + 0.027798613533377647, + 0.0402214378118515, + -0.046045880764722824, + 0.046409569680690765 + ], + "bowl-steam-bold||*new*,food,meal,eating,restaurants,dining,locations": [ + 0.052394673228263855, + -0.048813410103321075, + 0.029186924919486046, + 0.08222512155771255, + -0.044166553765535355, + 0.036338720470666885, + 0.03287634626030922, + -0.11928760260343552, + -0.02010560780763626, + -0.07310950011014938, + 0.024222588166594505, + -0.08124064654111862, + -0.055189792066812515, + -0.037373002618551254, + 0.010019386187195778, + -0.10383669286966324, + 0.1681283414363861, + -0.007305282633751631, + 0.024767275899648666, + -0.09094972163438797, + -0.042802564799785614, + 0.012966400943696499, + 0.03038138523697853, + 0.04433067515492439, + 0.06303613632917404, + 0.048322562128305435, + 0.021026670932769775, + 0.05907871574163437, + -0.0002488842001184821, + -0.010469049215316772, + 0.012624971568584442, + 0.03966626897454262, + 0.07230906933546066, + 0.032126571983098984, + 0.05654912814497948, + -0.04844684526324272, + 0.03553948178887367, + -0.10162506252527237, + 0.02231019176542759, + 0.014624660834670067, + 0.024825789034366608, + -0.07176464051008224, + 0.010995903983712196, + 0.032734643667936325, + -0.0010816724970936775, + 0.05629491060972214, + -0.06804415583610535, + -0.0270155668258667, + 0.03564665839076042, + 0.04881216958165169, + -0.059974778443574905, + -0.06493112444877625, + -0.038597121834754944, + 0.07399769872426987, + 0.055015500634908676, + -0.012357245199382305, + -0.04869423434138298, + -0.02003559283912182, + 0.009793384931981564, + 0.08628955483436584, + 0.026520149782299995, + 0.002782486379146576, + -0.00266400002874434, + 0.07314632833003998, + 0.006696703843772411, + -0.017963478341698647, + -0.11527751386165619, + 0.0670875534415245, + -0.05853395536541939, + -0.035676341503858566, + -0.031094077974557877, + -0.004746681544929743, + 0.017671015113592148, + 0.0028218571096658707, + -0.01080378983169794, + -0.1302749365568161, + 0.013399736024439335, + -0.0604507140815258, + -0.07818064838647842, + 0.024668436497449875, + -0.035485412925481796, + -0.00842016376554966, + 0.024684995412826538, + 0.025472722947597504, + -0.07734701782464981, + 0.011858179233968258, + -0.036835115402936935, + -0.01850746013224125, + 0.03777293860912323, + -0.040628109127283096, + -0.10908084362745285, + -0.032644882798194885, + -0.03242982551455498, + -0.030309058725833893, + 0.031256746500730515, + 0.07229834794998169, + 0.017493873834609985, + -0.06087847426533699, + 0.04438641294836998, + 0.04523682966828346, + -0.07276099175214767, + 0.05429236218333244, + 0.011047040112316608, + 0.010303135961294174, + -0.03674105182290077, + -0.021930180490016937, + -0.08774244785308838, + 0.0648682489991188, + 0.011060940101742744, + 0.021156255155801773, + -0.008733273483812809, + 0.013596927747130394, + -0.01774122379720211, + -0.06970369815826416, + -0.0455634631216526, + -0.04568169638514519, + 0.02108265832066536, + -0.10996230691671371, + 0.00012593212886713445, + 0.0481979176402092, + -0.027474327012896538, + -0.018220452591776848, + -0.06844668090343475, + 0.017575621604919434, + -0.09265726059675217, + 0.0015644205268472433, + 0.004910713527351618, + -4.317569812077138e-33, + -0.04259205982089043, + -0.04766564071178436, + 0.03199494257569313, + 0.07734853774309158, + 0.08862036466598511, + -0.06642324477434158, + -0.0002620040322653949, + -0.09815221279859543, + -0.02637617103755474, + 0.04766163229942322, + 0.08981668949127197, + 0.010260116308927536, + -0.06316077709197998, + 0.0655510202050209, + 0.0813702642917633, + -0.06356080621480942, + 0.006317355204373598, + 0.05814008787274361, + -0.010290192440152168, + -0.014533862471580505, + -0.0775877982378006, + 0.044745128601789474, + 0.0336528979241848, + -0.01496986486017704, + -0.05810519680380821, + -0.016730183735489845, + 8.530016930308193e-05, + -0.05338956415653229, + 0.004051920957863331, + 0.022460034117102623, + 0.03896164149045944, + 0.023424234241247177, + -0.0033936286345124245, + -0.020291907712817192, + -0.05548688769340515, + 0.014983445405960083, + -0.048256877809762955, + -0.03357616811990738, + -0.013677298091351986, + 0.03895573690533638, + -0.04396051540970802, + 0.054557107388973236, + -0.038824647665023804, + 0.0668824166059494, + -0.030146300792694092, + 0.027644002810120583, + -0.0885869488120079, + -0.06382503360509872, + 0.09744848310947418, + 0.020253952592611313, + 0.006971036549657583, + 0.012051817961037159, + -0.03694678097963333, + -0.0038645307067781687, + -0.019557368010282516, + -0.07022268325090408, + 0.019559793174266815, + 0.03138648346066475, + 0.03248612582683563, + -0.03061053156852722, + -0.02669321745634079, + 0.017447680234909058, + 0.004509890917688608, + -0.04757940396666527, + 0.008447116240859032, + 0.012605189345777035, + -0.027072489261627197, + 0.059855591505765915, + 0.0705721378326416, + 0.007376035209745169, + -0.04574117437005043, + 0.06428028643131256, + 0.08368700742721558, + 0.017900368198752403, + 0.03827614337205887, + 0.025759927928447723, + -0.04546865448355675, + 0.014641210436820984, + 0.04202180728316307, + -0.048644691705703735, + 0.01985449716448784, + -0.020388314500451088, + -0.0516686886548996, + 0.12881974875926971, + -0.06379487365484238, + 0.05818744748830795, + -0.0659940242767334, + -0.015104642137885094, + 0.04753238335251808, + 0.01201762817800045, + -0.13953520357608795, + 0.0098005011677742, + 0.03371359407901764, + 0.011328424327075481, + -0.12275536358356476, + 1.0043370468837853e-33, + 0.009227053262293339, + 0.0018841740675270557, + -0.11670894175767899, + 0.021159356459975243, + -0.038769256323575974, + -0.017108380794525146, + -0.03132336214184761, + 0.007555476389825344, + 0.05667487531900406, + 0.007871298119425774, + -0.044391192495822906, + 0.011219446547329426, + 0.010382487438619137, + -0.011372494511306286, + -0.04658176004886627, + 0.10558848828077316, + 0.04114598035812378, + 0.030555088073015213, + 0.012242542579770088, + 0.030122818425297737, + -0.03026714362204075, + -0.01566673256456852, + -0.0629495307803154, + -0.009080084040760994, + -0.05031619966030121, + 0.11139126121997833, + 0.04411686211824417, + 0.0169106125831604, + -0.07560940831899643, + -0.06425300985574722, + -0.05295170098543167, + -0.05573035031557083, + 0.08104844391345978, + 0.019216373562812805, + 0.0024146288633346558, + 0.11060125380754471, + 0.047794047743082047, + -0.05146342143416405, + -0.05797213315963745, + 0.003695803927257657, + 0.07277173548936844, + -0.06488610804080963, + 0.03582443296909332, + 0.08610410243272781, + -0.0067528956569731236, + 0.09104086458683014, + -0.05534069240093231, + -0.05129867419600487, + 0.0076229083351790905, + 0.0672103688120842, + 0.05552910640835762, + -0.03286220505833626, + -0.07705124467611313, + -0.019666021689772606, + 0.0009648698032833636, + 0.05929579585790634, + -0.006630330346524715, + -0.022048387676477432, + -0.060551967471838, + -0.03425733372569084, + -0.01820012554526329, + 0.11332054436206818, + 0.04413280263543129, + 0.06622063368558884, + 0.02795143984258175, + 0.028252970427274704, + -0.06645981222391129, + -0.05153951793909073, + -0.01711520366370678, + 0.03439313545823097, + -0.05365065485239029, + 0.02222589962184429, + 0.03139841929078102, + -0.0419163703918457, + -0.04768994450569153, + -0.018139837309718132, + 0.07303132861852646, + 0.00837642326951027, + -0.049482233822345734, + 0.10673462599515915, + -0.09587111324071884, + 0.011412330903112888, + -0.05231429636478424, + 0.022040503099560738, + 0.07119091600179672, + -0.002581666922196746, + -0.037492938339710236, + -0.006726187653839588, + 0.007124848663806915, + 0.05088724568486214, + -0.06791197508573532, + 0.02851003408432007, + -0.044985581189394, + -0.03582146018743515, + 0.048505749553442, + -2.4548061361429063e-08, + 0.02990933321416378, + -0.03836227208375931, + -0.10175732523202896, + 0.07917235791683197, + 0.02962728589773178, + -0.09852984547615051, + 0.005712267942726612, + 0.0022360989823937416, + -0.01899217627942562, + 0.026138445362448692, + 0.010424872860312462, + 0.03424018621444702, + -0.00593042466789484, + 0.01326343510299921, + 0.04038453474640846, + 0.04568041115999222, + 0.01939871348440647, + -0.03272102773189545, + -0.03390450030565262, + -0.07055434584617615, + -0.04423895478248596, + 0.05012308806180954, + 0.10031653940677643, + -0.0708698257803917, + -0.025838444009423256, + 0.01825094036757946, + -0.040232107043266296, + 0.0688951313495636, + 0.014183144085109234, + 0.010509035550057888, + 0.003337617265060544, + 0.04457229748368263, + -0.057724304497241974, + 0.04202355444431305, + 0.0061189597472548485, + -0.07233085483312607, + -0.09732216596603394, + -0.03381521999835968, + -0.04849188029766083, + -0.00947243720293045, + -0.0779234766960144, + -0.04244614019989967, + -0.054148945957422256, + 0.023351339623332024, + 0.004361617844551802, + 0.1055576503276825, + -0.010200103744864464, + 0.029003243893384933, + -0.010636258870363235, + 0.012122104875743389, + -0.017360642552375793, + 0.008144443854689598, + 0.09605555981397629, + 0.03479893133044243, + 0.0034572184085845947, + 0.11188607662916183, + 0.034678637981414795, + -0.02712126635015011, + 0.06581459194421768, + -0.008606432005763054, + 0.0430719256401062, + 0.050041571259498596, + -0.03022770769894123, + 0.038676388561725616 + ], + "bowling-ball-bold||*new*,sports,alley": [ + 0.05012769252061844, + -0.011527852155268192, + -0.04602546617388725, + -0.036133889108896255, + 0.019592227414250374, + -0.007836133241653442, + 0.04223494231700897, + -0.07753978669643402, + 0.07436874508857727, + 0.04064125567674637, + -0.0318571999669075, + 0.013799376785755157, + -0.010465528815984726, + -0.0013589574955403805, + 0.05344773456454277, + 0.015933072194457054, + 0.09289029240608215, + -0.004778596106916666, + -0.0030291671864688396, + -0.06846871227025986, + -0.00626635504886508, + 0.0683862715959549, + 0.03290219604969025, + 0.00385614694096148, + 0.01723506487905979, + 0.04007786512374878, + 0.07560118287801743, + 0.10262531042098999, + -0.08405809104442596, + -0.03553856536746025, + -0.03861474618315697, + 0.039275530725717545, + 0.05455682426691055, + 0.05587131157517433, + 0.028641778975725174, + -0.07702458649873734, + -0.08470562100410461, + -0.019784456118941307, + 0.008750131353735924, + 0.02250075154006481, + 0.032155491411685944, + -0.11515634506940842, + 0.016882609575986862, + 0.06512222439050674, + -0.0446610189974308, + 0.0579957515001297, + -0.046595506370067596, + 0.013704773038625717, + 0.0629340335726738, + 0.0032017803750932217, + 0.020768452435731888, + -0.046461328864097595, + -0.012981037609279156, + 0.03772039711475372, + 0.13826794922351837, + 0.028319189324975014, + -0.0487603135406971, + -0.0012053987011313438, + 0.018207678571343422, + -0.06082626059651375, + 0.09629533439874649, + -0.013513542711734772, + -0.012025433592498302, + 0.07689225673675537, + -0.03698321059346199, + -0.06847062706947327, + -0.015690185129642487, + 0.041449613869190216, + -0.019368262961506844, + 0.02191946655511856, + -0.005243161227554083, + 0.02943994663655758, + -0.03677721321582794, + -0.0009518747101537883, + 0.025865530595183372, + -0.02327672205865383, + 0.012110027484595776, + -0.004101174883544445, + -0.08352310955524445, + -0.024079371243715286, + -0.018182579427957535, + -0.12042338401079178, + -0.04317237809300423, + 0.011819282546639442, + -0.047115229070186615, + 0.0024486167822033167, + -0.04612228646874428, + -0.0058880094438791275, + -0.007305610924959183, + -0.028492338955402374, + -0.12747806310653687, + -0.009676800109446049, + -0.019450942054390907, + -0.029376238584518433, + -0.029319068416953087, + 0.05103866755962372, + -0.03592710942029953, + -0.11051801592111588, + -0.051135528832674026, + 0.11045292764902115, + -0.02289324253797531, + 0.04390620440244675, + 0.05361827462911606, + 0.05639096722006798, + 0.016761373728513718, + 0.009720186702907085, + -0.06524044275283813, + 0.04412922263145447, + 0.04421145096421242, + 0.08726692199707031, + 0.02284921519458294, + -0.06260973960161209, + 0.021802937611937523, + 0.026810210198163986, + -0.05314245820045471, + 0.018061446025967598, + -0.03496616706252098, + -0.0035270003136247396, + 0.04307329282164574, + 0.10925918817520142, + 0.0045995251275599, + 0.01250048354268074, + -0.10833191126585007, + 0.009071974083781242, + -0.046664875000715256, + 0.020983397960662842, + -0.004099900368601084, + -4.447431081116292e-33, + 0.006945713888853788, + 0.026484414935112, + 0.01978720724582672, + 0.07712849974632263, + 0.014041310176253319, + -0.04445137456059456, + -0.015837829560041428, + -0.08812801539897919, + -0.00752974022179842, + 0.040549732744693756, + 0.04516184702515602, + -0.004659848287701607, + -0.01943649910390377, + -0.026006227359175682, + 0.1343286633491516, + -0.042684346437454224, + -0.06355196982622147, + -0.031255949288606644, + -0.011902742087841034, + 0.10997055470943451, + -0.11739130318164825, + -0.007532928604632616, + -0.016853779554367065, + -0.03655824810266495, + -0.08556577563285828, + -0.024449355900287628, + 0.0682826042175293, + -0.07341326773166656, + 0.030855007469654083, + 0.01964581198990345, + 0.02744683250784874, + 0.020654277876019478, + 0.020630698651075363, + 0.029835134744644165, + -0.0022342198062688112, + -0.01824316941201687, + -0.032402440905570984, + -0.03435656428337097, + -0.03042549267411232, + -0.021771401166915894, + -0.018998319283127785, + -0.037289056926965714, + -0.06818504631519318, + 0.00851963460445404, + 0.012328393757343292, + 0.07541843503713608, + -0.08987471461296082, + 0.00415649963542819, + 0.016845306381583214, + 0.03802676871418953, + 0.09573149681091309, + -0.0008608578937128186, + 0.00023110250185709447, + -0.037141744047403336, + -0.005009294953197241, + -0.10305914282798767, + -0.03391827642917633, + 0.021062025800347328, + 0.013217166997492313, + -0.07613850384950638, + 0.07651285082101822, + -0.0034510057885199785, + -0.0008549726335331798, + -0.0032116915099322796, + 0.0183620173484087, + 0.0741904005408287, + 0.014387793838977814, + 0.022998269647359848, + 0.014421389438211918, + -0.007691225036978722, + -0.019433055073022842, + 0.0100797638297081, + -0.008431345224380493, + 0.07097795605659485, + -0.007885707542300224, + 0.09715744107961655, + -0.004597038961946964, + 0.054390665143728256, + 0.07007517665624619, + -0.10166370868682861, + -0.029120298102498055, + 0.018199129030108452, + -0.043562665581703186, + 0.03249793127179146, + 0.019692055881023407, + 0.01659969799220562, + -0.03627435490489006, + -0.10283789783716202, + -0.00459858775138855, + 0.01917245239019394, + -0.11856698989868164, + 0.007579063065350056, + -0.07893897593021393, + 0.06475918740034103, + -0.09176965057849884, + 6.241408478545864e-34, + -0.01743745245039463, + 0.0005816002376377583, + -0.07788629084825516, + 0.02632967382669449, + 0.013851523399353027, + 0.023453988134860992, + -0.004679044242948294, + 0.008108235895633698, + 0.062017519026994705, + 0.03714034706354141, + -6.180677883094177e-05, + -0.03368011862039566, + -0.0522441603243351, + -0.03661090508103371, + 0.10800308734178543, + -0.007549172267317772, + 0.006388891488313675, + 0.039265502244234085, + -0.029339831322431564, + 0.06909260898828506, + 0.012798910960555077, + -0.03331948444247246, + -0.006453538313508034, + -0.025351066142320633, + -0.0804009810090065, + 0.014705576002597809, + 0.03349253907799721, + 0.029508013278245926, + -0.11984889209270477, + 0.00044528566650114954, + -0.032375358045101166, + -0.0017181738512590528, + 0.053090181201696396, + 0.09548656642436981, + -0.09366624802350998, + 0.1267993301153183, + 0.0582260824739933, + -0.09129173308610916, + 0.023903945460915565, + -0.00474388524889946, + 0.01845189556479454, + 0.017982374876737595, + -0.025805892422795296, + 0.04089915752410889, + -0.027785010635852814, + -0.01643451862037182, + -0.05854470282793045, + -0.0033172268886119127, + -0.05451514571905136, + 0.021980760619044304, + 0.0015032374067232013, + 0.058966927230358124, + 0.0055764238350093365, + -0.02896568924188614, + -0.007603236008435488, + 0.06057347357273102, + -0.009318149648606777, + -0.002711243461817503, + -0.031729791313409805, + -0.04504203423857689, + -0.09271423518657684, + 0.1453412026166916, + -0.06738272309303284, + 0.11980009078979492, + 0.037204187363386154, + 0.0366302989423275, + -0.052646707743406296, + -0.03923145309090614, + -0.08823780715465546, + 0.02077585458755493, + -0.11032469570636749, + 0.027227049693465233, + -0.04332961142063141, + -0.0007575277704745531, + -0.0008689787937328219, + -0.0027774206828325987, + 0.05891178175806999, + 0.06445478647947311, + -0.028673168271780014, + 0.09731364995241165, + -0.08994520455598831, + 0.06347288191318512, + -0.05109526962041855, + 0.03047645278275013, + 0.060517217963933945, + 0.023830082267522812, + -0.023182103410363197, + 0.03580084070563316, + -0.024110430851578712, + 0.0515335276722908, + 0.04869179427623749, + 0.07965344935655594, + -0.05472860857844353, + -0.049565721303224564, + -0.012770645320415497, + -1.940268568034753e-08, + -0.017185028642416, + 0.08776078373193741, + -0.11932900547981262, + 0.0005604932666756213, + 0.06869299709796906, + -0.018843168392777443, + -0.034345485270023346, + -0.05825841426849365, + 0.035229675471782684, + -0.06055118888616562, + -0.004195018205791712, + -0.01976672001183033, + -0.011633153073489666, + 0.021984819322824478, + 0.02522372454404831, + 0.07851417362689972, + -0.07752685993909836, + -0.028228014707565308, + -0.06792575120925903, + -0.03884967789053917, + 0.002846197225153446, + 0.005211479030549526, + 0.04235474765300751, + -0.03030877560377121, + -0.03205090016126633, + -0.03516910597681999, + -0.0680646076798439, + -0.07908149808645248, + -0.0084856441244483, + 0.04007686674594879, + 0.03541573882102966, + 0.0737357884645462, + -0.010440089739859104, + -0.03810255229473114, + -0.0852593183517456, + -0.06228892132639885, + 0.053743284195661545, + -0.0232008658349514, + 0.024582598358392715, + 0.07664025574922562, + -0.09232885390520096, + -0.0035337754525244236, + -0.024050168693065643, + -0.03607290983200073, + -0.011088195256888866, + 0.013108273968100548, + 0.06899190694093704, + -0.019537195563316345, + -0.11789702624082565, + -0.040594059973955154, + -0.038814201951026917, + 0.0139588862657547, + 0.028595615178346634, + -0.044068265706300735, + 0.0005477249505929649, + 0.037290606647729874, + -0.02938077226281166, + 0.053971122950315475, + -0.0010200212709605694, + 0.03991755470633507, + 0.08300479501485825, + 0.00514898682013154, + 0.017371386289596558, + 0.03391585871577263 + ], + "box-arrow-down-bold||saved,saving,archived,archiving,archival,downloaded,downloading": [ + 0.03476675972342491, + 0.0084032928571105, + -0.0657704770565033, + 0.05309971049427986, + 0.09198471903800964, + 0.019186783581972122, + 0.015494474209845066, + -0.047529738396406174, + 0.057742707431316376, + 0.04171009361743927, + -0.028171490877866745, + 0.13921064138412476, + 0.018794415518641472, + -0.04739939421415329, + -0.10537204891443253, + 0.024572337046265602, + -0.06816373020410538, + 0.053218234330415726, + -0.008921344764530659, + -0.02585589699447155, + -0.041723672300577164, + 0.008937206119298935, + 0.03290346637368202, + 0.018137015402317047, + 0.03525209426879883, + -0.0019972999580204487, + -0.047505054622888565, + 0.04379001259803772, + 0.024668389931321144, + -0.07549574226140976, + -0.02834886871278286, + -0.018784556537866592, + 0.11679140478372574, + 0.06068074703216553, + -0.026352014392614365, + 0.03660673648118973, + -0.03155375272035599, + 0.018946660682559013, + 0.02327697165310383, + 0.024865558370947838, + -0.0020310087129473686, + -0.029426703229546547, + -0.009804089553654194, + 0.030204886570572853, + -0.07707522809505463, + -0.04208921268582344, + -0.036167241632938385, + -0.08650927245616913, + 0.0058394260704517365, + 0.06275425106287003, + 0.02950870431959629, + -0.025586595758795738, + -0.13179424405097961, + 0.028462180867791176, + 0.023158447816967964, + -0.0028685557190328836, + -0.017427857965230942, + -0.03437371179461479, + 0.00877260323613882, + 0.02909095585346222, + 0.030582211911678314, + 0.034532058984041214, + -0.01508163008838892, + 0.05407784506678581, + 0.02429562248289585, + 0.09877630323171616, + -0.03735481947660446, + 0.04630327969789505, + -0.027145542204380035, + -0.03586374223232269, + -0.015498130582273006, + -0.013605555519461632, + -0.06633592396974564, + -0.015683861449360847, + -0.03038107231259346, + -0.04586372524499893, + 0.07009625434875488, + 0.05661991238594055, + -0.04607206583023071, + -0.011901669204235077, + -0.006988348439335823, + -0.027669858187437057, + -0.023863159120082855, + 0.07077330350875854, + 0.00014441146049648523, + 0.08484137058258057, + -0.030193040147423744, + -0.061617858707904816, + -0.020401474088430405, + -0.06472329050302505, + -0.05351275950670242, + -0.0293355043977499, + 0.1311796009540558, + 0.03742958605289459, + -0.11429097503423691, + -0.010453138500452042, + 0.0803733766078949, + -0.020089032128453255, + -0.06208524480462074, + 0.054343655705451965, + 0.07069185376167297, + -0.0003066996578127146, + 0.05662310868501663, + -0.08213794231414795, + -0.00046094850404188037, + -0.03794616833329201, + 0.07711479067802429, + -0.01333190593868494, + 0.009822905994951725, + 0.05291597172617912, + -0.06633524596691132, + -0.07116752862930298, + -0.05552353337407112, + -0.06100725382566452, + -0.02925996482372284, + -0.00013096208567731082, + -0.15382367372512817, + 0.0004902149084955454, + 0.08659105002880096, + 0.018655477091670036, + 0.10384725034236908, + -0.06675871461629868, + -0.03753313422203064, + -0.08571403473615646, + -0.02316434308886528, + -0.0278426855802536, + 0.05362579599022865, + -2.425004621799062e-33, + 0.09303417056798935, + 0.0022724394220858812, + -0.017201002687215805, + 0.045527707785367966, + 0.07897614687681198, + 0.006695134099572897, + -0.06209426745772362, + -0.056473564356565475, + -0.1365470290184021, + 0.017856605350971222, + 0.08653255552053452, + 0.04533693566918373, + -0.10855568945407867, + 0.08391490578651428, + 0.01758006028831005, + -0.03198833391070366, + -0.05841703340411186, + 0.02167339436709881, + -0.008453977294266224, + -0.030193069949746132, + -0.06062094867229462, + 0.029629679396748543, + -0.06445083022117615, + 0.039860256016254425, + 0.03809169679880142, + -0.022233759984374046, + 0.041912615299224854, + -0.023043179884552956, + -0.07485373318195343, + 0.022263038903474808, + -0.005032222718000412, + -0.03434299677610397, + 0.06543581932783127, + -0.04375471547245979, + -0.031833749264478683, + 0.0020482479594647884, + -0.10099989920854568, + -0.006366616580635309, + 0.021141396835446358, + 0.02643456682562828, + -0.008534381166100502, + -0.0995236337184906, + -0.01231775525957346, + -0.02143445611000061, + 0.04469328746199608, + 0.0420207679271698, + -0.025676215067505836, + -0.038100678473711014, + -0.020564446225762367, + 0.010045718401670456, + -0.006071951240301132, + 0.01286324579268694, + 0.010467703454196453, + 0.0008576716645620763, + -0.006563254632055759, + -0.0530007965862751, + -0.06031356006860733, + 0.09672480076551437, + 0.054113760590553284, + 0.0042863329872488976, + 0.0652262270450592, + -0.016595201566815376, + 0.0288138035684824, + -0.01041287649422884, + -0.001028611557558179, + 0.05846184492111206, + -0.04699934646487236, + 0.007654085289686918, + 0.028915628790855408, + 0.03717486932873726, + -0.04567943513393402, + -0.021197566762566566, + 0.027288362383842468, + 0.01814308762550354, + -0.0021507986821234226, + -0.01442789938300848, + -0.042941007763147354, + -0.014628023840487003, + 0.06630716472864151, + -0.08222397416830063, + -0.1493915617465973, + -0.05906231328845024, + -0.0860385075211525, + 0.007875800132751465, + 0.05421289801597595, + -0.01937146484851837, + 0.023831507191061974, + -0.03200120851397514, + -0.0391843318939209, + 0.009553887881338596, + -0.04427891969680786, + 0.026911135762929916, + -0.031200839206576347, + -0.049878645688295364, + -0.05028895288705826, + 3.6899888065364732e-34, + 0.03977648541331291, + -0.005868079140782356, + -0.07836420834064484, + 0.027530258521437645, + -0.05789110064506531, + 0.059546295553445816, + 0.039447806775569916, + 0.02473483607172966, + 0.025789465755224228, + 0.030654512345790863, + -0.010202456265687943, + 0.04253359138965607, + -0.05149996280670166, + -0.03728802129626274, + -0.0009549447568133473, + 0.023037636652588844, + 0.07313232868909836, + -0.003623879747465253, + -0.042386822402477264, + -0.012237551622092724, + -0.03320777788758278, + -0.06205611303448677, + -0.053663041442632675, + 0.07741679251194, + -0.011625085026025772, + -0.013306043110787868, + 0.07271938771009445, + 0.039999790489673615, + -0.008320746012032032, + -0.0516553670167923, + 0.03317074105143547, + 0.008599339984357357, + -0.03198949247598648, + -0.008124630898237228, + -0.06281287968158722, + 0.005795410368591547, + 0.06927911937236786, + -0.008450529538094997, + -0.04120141640305519, + 0.06349265575408936, + -0.03590139001607895, + 0.02715117670595646, + -0.011549803428351879, + -0.007144325878471136, + 0.04518114775419235, + -0.03708774596452713, + -0.09103520959615707, + 0.00601529935374856, + 0.052735619246959686, + 0.04314003884792328, + 0.06243189051747322, + -0.04664672911167145, + -0.01010618545114994, + -0.021812913939356804, + -0.05053151771426201, + 0.025990862399339676, + 0.0034794604871422052, + 0.11104103177785873, + 0.036644335836172104, + -0.007947085425257683, + -0.03242763504385948, + -0.023594701662659645, + -0.026375360786914825, + -0.012131712399423122, + -0.03756990656256676, + -0.042957622557878494, + 0.0712641105055809, + 0.00027266849065199494, + -0.105493925511837, + 0.0013234565267339349, + 0.037034228444099426, + 0.011492561548948288, + 0.0025000101886689663, + -0.007775153033435345, + 0.056172508746385574, + -0.07483023405075073, + 0.06916818767786026, + 0.02261439710855484, + -0.0029434580355882645, + -0.05074455589056015, + -0.019657006487250328, + 0.05911833792924881, + 0.02229633927345276, + 0.015991512686014175, + -0.02344236709177494, + -0.04204173386096954, + -0.06206120178103447, + 0.042487822473049164, + -0.0021785495337098837, + -0.06740496307611465, + -0.049915894865989685, + 0.03049236349761486, + -0.00746048241853714, + -0.017336489632725716, + -0.020236309617757797, + -2.207005245224991e-08, + -0.06405474245548248, + 0.007331675384193659, + -0.02109711244702339, + -0.020731616765260696, + 0.045265018939971924, + 0.0036761071532964706, + 0.007504175882786512, + 0.0611160546541214, + -0.005400024354457855, + -0.12227008491754532, + 0.12190481275320053, + 0.017452498897910118, + -0.15515203773975372, + -0.021498428657650948, + 0.04790472239255905, + 0.07494591176509857, + -0.0628933310508728, + 0.04628053680062294, + 0.01712832599878311, + -0.03614261373877525, + 0.04000242054462433, + 0.03180621936917305, + 0.08049602806568146, + 0.05405512452125549, + -0.014302642084658146, + -0.010840406641364098, + 0.019302964210510254, + 0.10077334940433502, + 0.06988846510648727, + 0.03817955404520035, + 0.03850351274013519, + 0.07470077276229858, + 0.03965993598103523, + -0.059889763593673706, + -0.01773020625114441, + -0.01334473304450512, + -0.057143520563840866, + 0.025506047531962395, + 0.021677356213331223, + 0.09947248548269272, + 0.07447633892297745, + -0.09611088037490845, + -0.013882511295378208, + -0.040016114711761475, + -0.05383194983005524, + 0.015078592114150524, + 0.059250541031360626, + 0.00945812463760376, + -0.03351862356066704, + -0.12134397774934769, + 0.008909222669899464, + -0.039762482047080994, + 0.0710429921746254, + 0.11645727604627609, + 0.012896568514406681, + -0.05309446156024933, + 0.05840085819363594, + 0.04787084087729454, + 0.056235335767269135, + 0.011591334827244282, + 0.09938398748636246, + 0.06367364525794983, + 0.03978540003299713, + 0.02472095377743244 + ], + "box-arrow-up-bold||*new*,unarchive,archival,upload": [ + -0.008889204822480679, + -0.018451089039444923, + -0.04166637733578682, + 0.054355282336473465, + 0.10679228603839874, + 0.0005460404790937901, + -0.0569160059094429, + -0.10034185647964478, + 0.042435936629772186, + 0.06451486051082611, + -0.03696208819746971, + 0.14504168927669525, + 0.0005361961084417999, + -0.044608015567064285, + -0.059626564383506775, + 0.00062389369122684, + -0.03955363482236862, + 0.014019961468875408, + 0.0007456913008354604, + -0.01376622635871172, + -0.0704117938876152, + -0.012163679115474224, + 0.032526735216379166, + -0.010154979303479195, + 0.033452969044446945, + -0.03890516608953476, + -0.023363865911960602, + 0.0001352871477138251, + 0.007553367409855127, + -0.06870482861995697, + -0.008532842621207237, + -0.007508622948080301, + 0.06067390367388725, + 0.029560932889580727, + 0.018989212810993195, + 0.03912851959466934, + 0.006822988856583834, + 0.023330137133598328, + -0.01271227840334177, + 0.036173537373542786, + -0.005458960775285959, + -0.023902468383312225, + -0.029178516939282417, + -0.007662108633667231, + -0.08384375274181366, + -0.051896288990974426, + -0.010588306002318859, + -0.06195563077926636, + 0.017757074907422066, + 0.04449732229113579, + 0.009010662324726582, + -0.0829697921872139, + -0.07629690319299698, + 0.038703206926584244, + -0.012501513585448265, + -0.01245158351957798, + -0.04274009168148041, + -0.06216905638575554, + 0.02293367125093937, + -0.0399879589676857, + 0.006443822756409645, + 0.04009982943534851, + 0.0352528840303421, + 0.03545569255948067, + 0.0881088525056839, + 0.05730567127466202, + -0.025561312213540077, + 0.05683242902159691, + -0.047297921031713486, + 0.0227628406137228, + 0.017642967402935028, + 0.02584768831729889, + -0.052003614604473114, + 0.0009424862219020724, + -0.010899973101913929, + -0.10337431728839874, + 0.048081547021865845, + 0.05787869915366173, + 0.026092983782291412, + -0.0009436874534003437, + 0.035311248153448105, + -0.06798450648784637, + -0.06359825283288956, + 0.027790013700723648, + -0.012166566215455532, + 0.08275157958269119, + -0.10421621799468994, + -0.0394732803106308, + -0.08962758630514145, + -0.05876851826906204, + -0.04213171824812889, + 0.002193206688389182, + 0.0913047268986702, + 0.05221927911043167, + -0.07150497287511826, + -0.00822147075086832, + 0.045691389590501785, + 0.023331090807914734, + -0.05339565500617027, + 0.06359720230102539, + 0.023363275453448296, + -0.008337355218827724, + 0.05342930182814598, + -0.06405792385339737, + 0.007400739938020706, + 0.007446650415658951, + 0.05449727550148964, + 0.002319794613867998, + -0.01991628110408783, + 0.044835228472948074, + -0.04420244321227074, + -0.11319374293088913, + -0.053308043628931046, + -0.06554849445819855, + -0.026668988168239594, + 0.03179900720715523, + -0.11941754072904587, + -0.012029038742184639, + 0.005008098669350147, + 0.003515140851959586, + 0.15379446744918823, + -0.0906418114900589, + -0.07451457530260086, + -0.04263802990317345, + -0.040936775505542755, + -0.0341116301715374, + 0.043230846524238586, + -1.643128411440456e-33, + 0.0867350772023201, + 0.021022053435444832, + -0.02759726531803608, + 0.04386161267757416, + 0.08238304406404495, + 0.01249582041054964, + -0.04056241735816002, + -0.03269260376691818, + -0.11928737163543701, + 0.029864320531487465, + 0.0632886216044426, + 0.0653950646519661, + -0.09802123159170151, + 0.05439778044819832, + -0.022841740399599075, + -0.08068308979272842, + -0.058377038687467575, + 0.06070016324520111, + 0.014898467808961868, + -0.030067184939980507, + -0.10343288630247116, + 0.03323410078883171, + -0.07805793732404709, + 0.04098804295063019, + -0.0073799192905426025, + -0.029496822506189346, + 0.05221517011523247, + -0.03704231604933739, + -0.08654556423425674, + 0.011585008352994919, + 0.01682054065167904, + -0.006641853600740433, + 0.05385033041238785, + 0.011652464978396893, + -0.05704645439982414, + -0.019003402441740036, + -0.11630011349916458, + -0.023871151730418205, + 0.016154835000634193, + 0.068944051861763, + 0.03718183562159538, + -0.08624090254306793, + -0.05143541470170021, + -0.002524377778172493, + 0.017860770225524902, + 0.08289514482021332, + -0.031260017305612564, + -0.06709593534469604, + -0.01602577604353428, + -0.005192802287638187, + 0.03747652843594551, + 0.0466478168964386, + -0.047775425016880035, + -0.011597982607781887, + 0.003200225066393614, + -0.013722366653382778, + -0.07920993119478226, + 0.10151304304599762, + 0.09469641745090485, + -0.04310034215450287, + 0.07356318086385727, + -0.033690329641103745, + 0.03261401876807213, + 0.06471667438745499, + -0.02578253298997879, + 0.07410861551761627, + -0.07161174714565277, + 0.044279515743255615, + 0.039994191378355026, + 0.050402361899614334, + -0.007617145776748657, + 0.0159269068390131, + -0.038114141672849655, + 0.03465871885418892, + 0.019241686910390854, + -0.009550521150231361, + -0.020407216623425484, + -0.025181900709867477, + 0.08031069487333298, + -0.04070073366165161, + -0.15544909238815308, + -0.03405984491109848, + -0.05658987909555435, + 0.05285196378827095, + 0.07236466556787491, + -0.010888388380408287, + 0.019521841779351234, + 0.016315357759594917, + -0.031571563333272934, + -0.011161908507347107, + -0.017947327345609665, + 0.02985999546945095, + -0.04597647860646248, + -0.0672922283411026, + 0.01728915423154831, + -7.818973325227222e-34, + 0.07119698822498322, + 0.04137000814080238, + -0.061390552669763565, + 0.007367589045315981, + -0.02944406308233738, + 0.06544272601604462, + 0.03861170634627342, + 0.04008268937468529, + 0.10081818699836731, + 0.03135651722550392, + -0.014312362298369408, + 0.019525736570358276, + -0.07974768429994583, + -0.05156740918755531, + 0.003205500775948167, + 0.010348289273679256, + 0.0019834984559565783, + 0.007394708693027496, + -0.06501340866088867, + 0.02232806570827961, + 0.01311550848186016, + -0.04553112015128136, + -0.032270580530166626, + 0.0795220360159874, + -0.0352051667869091, + -0.00034634454641491175, + 0.061190810054540634, + 0.06009693071246147, + -0.009480324573814869, + -0.02380547858774662, + 0.03519373759627342, + -0.012180632911622524, + -0.010666920803487301, + 0.04536079615354538, + -0.050910674035549164, + 0.0346066914498806, + 0.07325104624032974, + -0.01097843237221241, + -0.01014519389718771, + 0.06850780546665192, + -0.03473513945937157, + 0.019313929602503777, + -0.04878193140029907, + -0.005479814019054174, + 0.008841445669531822, + -0.062159858644008636, + -0.06442604213953018, + 0.013209573924541473, + 0.039703674614429474, + 0.028204189613461494, + 0.004148100968450308, + -0.046847064048051834, + 0.014563639648258686, + 0.0012846682220697403, + -0.03247775509953499, + 0.05693899467587471, + -0.005971545819193125, + 0.10523675382137299, + 0.06547389179468155, + 0.02955857291817665, + -0.01244727335870266, + 0.013124056160449982, + -0.0619988888502121, + -0.039327479898929596, + -0.02460308186709881, + -0.06058390811085701, + 0.06515341252088547, + -0.023163767531514168, + -0.08607199788093567, + 0.017541341483592987, + 0.06827361136674881, + 0.024130752310156822, + -0.0193291325122118, + 0.014257659204304218, + 0.04110218212008476, + -0.0646323412656784, + 0.058414969593286514, + -0.026549728587269783, + 0.03855157643556595, + -0.06730285286903381, + -0.07485972344875336, + 0.04659278690814972, + -0.009111572057008743, + 0.04101959243416786, + 0.009579380974173546, + 0.023384518921375275, + -0.017491308972239494, + 0.023614387959241867, + -0.004317307844758034, + -0.06668777018785477, + -0.04377082362771034, + -0.016400592401623726, + 0.005471445620059967, + -0.030963873490691185, + -0.01910170167684555, + -2.3800334147949798e-08, + -0.05237780138850212, + 0.032844480127096176, + -0.0440361350774765, + -0.023173974826931953, + 0.05623677372932434, + -0.03468191623687744, + -0.008179470896720886, + 0.029972372576594353, + 0.01647631824016571, + -0.17073999345302582, + 0.10050638020038605, + 0.02787194959819317, + -0.062007270753383636, + -0.010380905121564865, + 0.048803284764289856, + 0.05075077712535858, + -0.05907756835222244, + 0.05794263258576393, + -0.037657443434000015, + -0.044041506946086884, + 0.025842567905783653, + 0.055732689797878265, + 0.058094557374715805, + 0.0572957806289196, + -0.04040173813700676, + 0.010783628560602665, + -0.01328817568719387, + 0.03550402447581291, + 0.08360622078180313, + 0.053023915737867355, + 0.010250747203826904, + 0.04114816337823868, + 0.01701262965798378, + -0.04412345588207245, + -0.02269882708787918, + -0.012071474455296993, + -0.05935803800821304, + -0.0001863080688053742, + -0.05716250091791153, + 0.0494360513985157, + 0.05663015693426132, + -0.04154355451464653, + -0.0010442787315696478, + -0.06614621728658676, + -0.07267487794160843, + 0.0015327059663832188, + 0.024450410157442093, + -0.022324101999402046, + -0.09866257756948471, + -0.12006866931915283, + 0.02818983606994152, + -0.03429359570145607, + 0.04069775715470314, + 0.1192326545715332, + 0.04880962520837784, + -0.037693653255701065, + 0.05988477170467377, + 0.10037943720817566, + 0.03812003508210182, + 0.03594500944018364, + 0.12992453575134277, + 0.02375241182744503, + 0.04729374870657921, + 0.022135751321911812 + ], + "boxing-glove-bold||*new*,sports,combat,martial arts,fight,gym": [ + 0.009313873015344143, + 0.030060769990086555, + -0.030959080904722214, + 0.006050205789506435, + 0.04527397081255913, + 0.03615891560912132, + 0.08432774990797043, + -0.041049838066101074, + 0.014895574189722538, + 0.056199245154857635, + 0.0266584325581789, + -0.014202126301825047, + 0.031747005879879, + 0.016009531915187836, + 0.03932006657123566, + 0.04756409674882889, + 0.04556938633322716, + 0.027051256969571114, + -0.01334979385137558, + 0.03468284383416176, + 0.008119766600430012, + 0.07746138423681259, + 0.046560730785131454, + 0.04181252792477608, + 0.002113237278535962, + 0.03330202028155327, + -0.008332759141921997, + -0.037031929939985275, + -0.05214044824242592, + -0.031134502962231636, + -0.05795736610889435, + 0.0244599636644125, + 0.11193875968456268, + 0.06486770510673523, + -0.07602496445178986, + -0.02293938584625721, + 0.017486300319433212, + 0.04504160210490227, + -0.06363172829151154, + 0.09354166686534882, + -0.06849750131368637, + -0.04954015463590622, + 0.016315190121531487, + 0.026689384132623672, + 0.06926152110099792, + 0.06097938120365143, + 0.027497055009007454, + 0.006917305290699005, + 0.04436356574296951, + -0.00557878240942955, + 0.026454051956534386, + -0.04565572366118431, + 0.018115228042006493, + 0.04583515226840973, + 0.12195505201816559, + -0.034441988915205, + -0.0653436928987503, + 0.0038964138366281986, + -0.007255907170474529, + 0.06986962258815765, + 0.039481014013290405, + 0.05829429253935814, + 0.0004809346282854676, + 0.08853079378604889, + -0.004960803780704737, + -0.02819695696234703, + 0.04357877001166344, + 0.08286615461111069, + -0.01805637963116169, + 0.027644893154501915, + -0.015804311260581017, + -0.00500364089384675, + -0.008704669773578644, + 0.005961695220321417, + 0.00803394801914692, + 0.008104934357106686, + -0.01897595450282097, + 0.016734031960368156, + 0.04043029248714447, + -0.03556312620639801, + -0.06849850714206696, + -0.08375575393438339, + -0.09202131628990173, + -0.04711220785975456, + -0.0017439881339669228, + 0.05026819929480553, + -0.07106275856494904, + -0.05690881982445717, + -0.04034336656332016, + -0.02049865573644638, + -0.11634380370378494, + -0.01546439528465271, + -0.03411469608545303, + 0.07447517663240433, + -0.0668717697262764, + 0.006859383545815945, + -0.023149866610765457, + -0.02139521762728691, + -0.08195902407169342, + 0.07012331485748291, + 0.06697241216897964, + -0.017818648368120193, + 0.02830776385962963, + -0.024577343836426735, + 0.045917198061943054, + -0.004445255268365145, + -0.0462905615568161, + -0.05965385586023331, + -0.012127086520195007, + 0.08590148389339447, + 0.021078960970044136, + -0.0474749431014061, + -0.08698350936174393, + -0.057224124670028687, + 0.011728139594197273, + 0.08770713955163956, + -0.03605160117149353, + -0.003282971680164337, + 0.007530908565968275, + 0.07656892389059067, + 0.010477778501808643, + -0.050021424889564514, + -0.0838773101568222, + -0.07559170573949814, + -0.04499594122171402, + -0.03427017480134964, + -0.033830296248197556, + -3.984347285661759e-33, + 0.04887322708964348, + -0.025016970932483673, + -0.001925841672345996, + 0.12417764216661453, + -0.07067681849002838, + -0.028502177447080612, + -0.004064330831170082, + -0.1125967875123024, + 0.021183541044592857, + 0.07227586209774017, + -0.010872356593608856, + 0.1106126606464386, + -0.007277034688740969, + 0.03827909007668495, + 0.10223758220672607, + 0.026922957971692085, + -0.09171473234891891, + -0.03296554461121559, + -0.03883421793580055, + 0.06179903447628021, + -0.048717793077230453, + 0.07920557260513306, + -0.07199177891016006, + 0.032507579773664474, + -0.027113180607557297, + 0.042104315012693405, + 0.08553291857242584, + -0.08719794452190399, + 0.010214644484221935, + -0.0005753031582571566, + 0.02500827983021736, + 0.013231498189270496, + 0.0032335983123630285, + -0.01591396890580654, + -0.006875787861645222, + 0.0002515449596103281, + 0.029437636956572533, + -0.05138105899095535, + -0.04125441983342171, + -0.013871910981833935, + -0.042754095047712326, + -0.022751862183213234, + -0.0766168013215065, + -0.07361046969890594, + 0.07726778090000153, + 0.03027915023267269, + -0.012078491970896721, + -0.027210086584091187, + -0.03857002407312393, + -0.008345241658389568, + 0.02625911682844162, + 0.023727331310510635, + 0.07171770930290222, + 0.013835846446454525, + 0.01673026569187641, + -0.05770393833518028, + -0.03167010098695755, + 0.07379836589097977, + -0.03141511231660843, + -0.006876643747091293, + 0.016078701242804527, + -0.03423834592103958, + 0.005460440646857023, + 0.05435238033533096, + -0.07752403616905212, + 0.050720322877168655, + -0.05112029239535332, + 0.03226704150438309, + -0.010425376705825329, + 0.008554024621844292, + -0.0032621067948639393, + 0.04948429390788078, + -0.03123364970088005, + 0.01936154253780842, + 0.027180831879377365, + -0.009001330472528934, + 0.02920113503932953, + 0.03168565779924393, + -0.03809894993901253, + -0.015746071934700012, + -0.032311659306287766, + 0.06199668347835541, + -0.054742347449064255, + 0.13697773218154907, + -0.03413693979382515, + -0.0009291631286032498, + 0.0057954634539783, + -0.070884108543396, + -0.01460971962660551, + 0.0351642370223999, + -0.1249479353427887, + -0.0007761630695313215, + -0.0020991105120629072, + -0.0074557350017130375, + -0.03468313068151474, + -6.709724624352872e-35, + 0.04730026423931122, + 0.0013661966659128666, + -0.021992256864905357, + 0.011052441783249378, + 0.05721248313784599, + 0.00773220369592309, + -0.031527888029813766, + 0.09518509358167648, + 0.012065396644175053, + -0.029458431527018547, + 0.03700339049100876, + -0.10505427420139313, + -0.07406368851661682, + -0.026858927682042122, + 0.05120858922600746, + -0.06227848306298256, + -0.06316184252500534, + 0.07586906850337982, + -0.053904250264167786, + 0.07245118916034698, + 0.12486729025840759, + 0.009852265007793903, + 0.016345392912626266, + -0.05646907910704613, + -0.07721934467554092, + -0.018237678334116936, + -0.05998631566762924, + 0.03983227163553238, + -0.06461041420698166, + 0.006821939256042242, + -0.005337229929864407, + -0.050633713603019714, + 0.0714724212884903, + 0.11557286232709885, + -0.0617307610809803, + 0.06330297887325287, + 0.08559742569923401, + -0.05287569761276245, + 0.04010629653930664, + -0.011386319063603878, + 0.013574319891631603, + -0.06958428770303726, + 0.007437561638653278, + 0.04541788995265961, + -0.0007503816159442067, + -0.025047091767191887, + -0.12606297433376312, + -0.06415702402591705, + -0.021998608484864235, + 0.031042037531733513, + 0.010774071328341961, + -0.00706125982105732, + -0.07026946544647217, + -0.06828389316797256, + -0.06856001168489456, + -0.015747440978884697, + -0.03458607196807861, + -0.07554354518651962, + -0.008182522840797901, + 0.07137064635753632, + -0.07605151832103729, + 0.04592827707529068, + -0.07972822338342667, + 0.0714452862739563, + -0.029302820563316345, + 0.0007194362697191536, + -0.025363657623529434, + 0.030357714742422104, + -0.05080986022949219, + -0.02577466145157814, + -0.010224870406091213, + 0.009330703876912594, + 0.02349676750600338, + 0.076087087392807, + -0.02120628021657467, + -0.0011240807361900806, + 0.056995660066604614, + 0.027156757190823555, + 0.028762247413396835, + 0.0680546686053276, + -0.03039763681590557, + -0.051598913967609406, + -0.02665848284959793, + 0.07301314175128937, + 0.031109601259231567, + 0.1426718384027481, + -0.00566498888656497, + -0.0077371420338749886, + -0.04512690752744675, + -0.0004441376368049532, + 0.02233077585697174, + 0.05972331017255783, + 0.0009112867410294712, + -0.0013249028706923127, + -0.020625969395041466, + -2.3430017037640027e-08, + -0.018006589263677597, + 0.10642289370298386, + -0.027723422273993492, + -0.01508536096662283, + -0.041609544306993484, + 0.11587025225162506, + -0.027332428842782974, + -0.06384440511465073, + 0.005962743423879147, + -0.034361258149147034, + 0.025113379582762718, + 0.05755433067679405, + -0.04319966956973076, + -0.04801066964864731, + -0.015157351270318031, + -0.004411764442920685, + -0.11492393910884857, + 0.001926899654790759, + -0.04316214099526405, + -0.029910732060670853, + 0.04737933352589607, + -0.04945749044418335, + 0.06034030392765999, + -0.01573754847049713, + -0.03456685692071915, + -0.062011320143938065, + -0.11149974167346954, + -0.01443680189549923, + -0.006802255753427744, + 0.09481342881917953, + 0.008113635703921318, + 0.04513511434197426, + -0.041210588067770004, + -0.04054315760731697, + -0.09155984967947006, + 0.005898280534893274, + 0.01205946784466505, + -0.05362239107489586, + -0.04073822870850563, + 0.04166030138731003, + -0.07648339867591858, + -0.08632630109786987, + 0.007638348266482353, + -0.047155290842056274, + 0.007661338895559311, + -0.03794654458761215, + 0.059117160737514496, + -0.06606526672840118, + -0.03776043280959129, + -0.0653601586818695, + 0.0519351065158844, + -0.02342383749783039, + 0.07025351375341415, + -0.0317210890352726, + -0.03965679928660393, + 0.08696512877941132, + -0.019726630300283432, + 0.015364439226686954, + 0.03506414219737053, + -0.005801858380436897, + 0.01923368126153946, + -0.07355861365795135, + -0.03919987380504608, + 0.11246780306100845 + ], + "brackets-angle-bold||code,angle brackets,angle braces": [ + -0.08967135846614838, + 0.05456460639834404, + -0.0892442911863327, + -0.013672299683094025, + -0.011159736663103104, + -0.036140479147434235, + 0.002812463091686368, + -0.009373730979859829, + 0.00621042400598526, + -0.018245773389935493, + -0.0030107591301202774, + 0.01217060349881649, + 0.016788871958851814, + -0.01575803942978382, + 0.0952550396323204, + 0.07251682132482529, + -0.06340385973453522, + 0.0029086873400956392, + 0.000276521488558501, + 0.05943148583173752, + -0.0058792466297745705, + 0.013781043700873852, + -0.06879552453756332, + 0.020483948290348053, + 0.01709454134106636, + 0.07903517037630081, + 0.0893479511141777, + -0.033604200929403305, + 0.055281829088926315, + -0.024233704432845116, + -0.026963695883750916, + -0.04718548059463501, + 0.0856815055012703, + 0.02596733346581459, + 0.021764451637864113, + 0.028174933046102524, + -0.04683815687894821, + -0.05730397254228592, + -0.03034098632633686, + 0.013048593886196613, + 0.008328071795403957, + -0.029677707701921463, + 0.01524974126368761, + 0.023292988538742065, + -0.020400401204824448, + -0.0027308333665132523, + -0.06029994413256645, + 0.0183919295668602, + -0.014112762175500393, + -0.03314642235636711, + -0.04161953553557396, + -0.02657374180853367, + -0.10736877471208572, + -0.08267251402139664, + 0.012827697210013866, + -0.011417994275689125, + -0.0655287653207779, + -0.044593002647161484, + 0.11099093407392502, + -0.05137704312801361, + 0.13384392857551575, + 0.011233019642531872, + -0.014362193644046783, + 0.08368150889873505, + -0.07009803503751755, + -0.015509524382650852, + 0.022165372967720032, + 0.048553355038166046, + -0.0037596537731587887, + -0.015813954174518585, + -0.05516483634710312, + -0.009882303886115551, + -0.06387089937925339, + 0.007983704097568989, + 0.026797519996762276, + 0.015421336516737938, + 0.04857004061341286, + 0.016451319679617882, + 0.0027105771005153656, + -0.08279598504304886, + -0.08451145887374878, + -0.09984420239925385, + -0.033103276044130325, + 0.03806599602103233, + 0.09521147608757019, + 0.08130443096160889, + -0.08321673423051834, + -0.019905969500541687, + 0.03622080385684967, + 0.04987959563732147, + 0.03715440630912781, + -0.018403641879558563, + 0.010760128498077393, + 0.05577177181839943, + -0.03417046740651131, + 0.010888786986470222, + 0.006565677467733622, + -0.006587102543562651, + -0.08964633196592331, + 0.09378071874380112, + 0.012208809144794941, + 0.1004258468747139, + 0.01248580776154995, + 0.015726730227470398, + -0.06163911893963814, + 0.0031794854439795017, + 0.0694345161318779, + 0.0580633282661438, + -0.017481794580817223, + -0.008261330425739288, + -0.04905681684613228, + -0.03577996417880058, + 0.05628795176744461, + -0.09387151151895523, + -0.08843088895082474, + -0.011324512772262096, + -0.027618365362286568, + 0.01814008131623268, + 0.144021674990654, + 0.08173254877328873, + 0.08188135921955109, + -0.018328584730625153, + -0.05395849794149399, + -0.01820465363562107, + 0.0058790575712919235, + -0.005524080246686935, + -0.045941997319459915, + -1.783140625211937e-33, + 0.08092579245567322, + 0.04759800434112549, + -0.039723772555589676, + 0.05647897347807884, + -0.009679330512881279, + -0.04015307128429413, + -0.06658049672842026, + -0.005492266267538071, + -0.1139536052942276, + 0.01609904319047928, + 0.13154259324073792, + -0.026523388922214508, + 0.026333926245570183, + 0.020693104714155197, + -0.007493926677852869, + 0.02799815498292446, + 0.0365530289709568, + 0.004281941335648298, + -0.04970725253224373, + -0.00041326077189296484, + -0.06207098066806793, + 0.04476466029882431, + -0.07485505193471909, + 0.05129573866724968, + -0.0532798133790493, + 0.04735008627176285, + 0.06779853254556656, + 0.04343453049659729, + -0.12751761078834534, + 0.04514218121767044, + 0.037370193749666214, + -0.07444450259208679, + 0.03864409029483795, + -0.04587524011731148, + 0.05790996178984642, + 0.0660105049610138, + -0.030923062935471535, + -0.024807605892419815, + 0.013335278257727623, + 0.029383117333054543, + -0.03825913742184639, + 0.0064142863266170025, + -0.003919227514415979, + -0.03270688280463219, + 0.015279676765203476, + 0.04948531836271286, + -0.03440884128212929, + -0.007505337242037058, + 0.004440288059413433, + 0.035005491226911545, + -0.017022566869854927, + 0.023507894948124886, + 0.04643333703279495, + 0.03746429830789566, + -0.009189416654407978, + -0.015313797630369663, + -0.0013572124298661947, + 0.08864010870456696, + -0.0548417903482914, + -0.007241439539939165, + -0.07137051969766617, + 0.06256656348705292, + 0.033750277012586594, + -0.08122511208057404, + -0.09518205374479294, + 0.0027610703837126493, + -0.07236768305301666, + 0.0446665994822979, + 0.061011459678411484, + -0.025440456345677376, + 0.006554509047418833, + 0.058344971388578415, + -0.0064984834752976894, + 0.04217130318284035, + -0.023321028798818588, + 0.011644256301224232, + 0.03928159177303314, + -0.0032946786377578974, + 0.01001178752630949, + -0.07896152138710022, + -0.07883667200803757, + 0.042670708149671555, + -0.002388217020779848, + 0.017969312146306038, + -0.05605016648769379, + 0.029606305062770844, + 0.011924643069505692, + -0.0874699056148529, + -0.04485209658741951, + 0.12105350196361542, + -0.08866631239652634, + -0.034174345433712006, + -0.051305629312992096, + -0.0796612799167633, + -0.018310528248548508, + -1.2293762567990964e-33, + -0.0119769386947155, + 0.031051235273480415, + -0.0879400447010994, + -0.08604767918586731, + -0.08542134612798691, + 0.010914236307144165, + 0.03313804417848587, + 0.021060891449451447, + -0.00971810519695282, + -0.00893891230225563, + 0.045287299901247025, + -0.013611321337521076, + -0.05363895371556282, + -0.04555073007941246, + 0.04078614339232445, + 0.03560897335410118, + -0.005443280097097158, + -0.0039512645453214645, + -0.005779982078820467, + 0.018480708822607994, + 0.03017815388739109, + 0.04216727614402771, + -0.00899228174239397, + 0.12036197632551193, + -0.029441993683576584, + 0.062315743416547775, + -0.002592793432995677, + 0.006961022969335318, + 0.022085336968302727, + -0.02330358326435089, + 0.029250355437397957, + -0.04639139026403427, + -0.015684764832258224, + 0.05119579657912254, + -0.07126792520284653, + 0.035920385271310806, + 0.003652267623692751, + 0.016820374876260757, + 0.0518120639026165, + -0.0920286625623703, + 0.04687612131237984, + -0.01085650734603405, + 0.06093885377049446, + 0.011402314528822899, + -0.039861053228378296, + -0.0010175829520449042, + 0.10662899911403656, + -0.015781013295054436, + 0.0007996271015144885, + 0.0027040669228881598, + -0.06386387348175049, + -0.04722043126821518, + 0.013569466769695282, + 0.06992338597774506, + -0.09184414893388748, + -0.06366447359323502, + 0.07393813878297806, + 0.02917003445327282, + 0.006534741260111332, + 0.021168934181332588, + -0.017877647653222084, + 0.0021506270859390497, + 0.04463570937514305, + -0.006688674911856651, + 0.011911486275494099, + -0.0650758221745491, + 0.08860474824905396, + -0.026395872235298157, + -0.004134527873247862, + -0.03803157061338425, + 0.025214269757270813, + 0.028258241713047028, + -0.029933512210845947, + -0.011447414755821228, + -0.032198306173086166, + -0.04126350209116936, + 0.07745017856359482, + 0.026821929961442947, + -0.025875436142086983, + 0.05771581456065178, + -0.01194650400429964, + 0.011400414630770683, + -0.0175569299608469, + 0.0677349865436554, + -0.05725057050585747, + 0.0003719979722518474, + 0.0035943069960922003, + 0.02225462719798088, + -0.015336485579609871, + -0.025260111317038536, + -0.09755474328994751, + 0.07863347977399826, + 0.02565470151603222, + -0.06376428157091141, + 0.0016707900213077664, + -1.765985757629096e-08, + -0.03529537469148636, + -0.04678064584732056, + -0.07317802309989929, + -0.039520129561424255, + -0.07204698771238327, + -0.02878878265619278, + -0.10843727737665176, + -0.09291282296180725, + -0.08060271292924881, + -0.015023862943053246, + 0.10618679225444794, + 0.07661250978708267, + -0.028002530336380005, + -0.09834130853414536, + 0.020139317959547043, + -0.0020487289875745773, + -0.0743839368224144, + 0.026446662843227386, + -0.008956273086369038, + -0.03268257528543472, + -0.018816592171788216, + 0.0169492457062006, + 0.08258601278066635, + -0.022607233375310898, + 0.024691224098205566, + 0.020930767059326172, + -0.012100541032850742, + -0.020626453682780266, + 0.07593758404254913, + 0.10407865792512894, + 0.04254862666130066, + 0.05862010642886162, + 0.058043643832206726, + -0.04423356428742409, + -0.013573121279478073, + -0.0671238899230957, + -0.025121094658970833, + -0.0226274486631155, + 0.04985205829143524, + 0.07653404772281647, + -0.017787132412195206, + -0.003799109486863017, + -0.03243492171168327, + 0.023089030757546425, + -0.00699755409732461, + -0.0010335150873288512, + 0.08653595298528671, + 0.0701153427362442, + -0.05955478176474571, + -0.14261330664157867, + -0.03931812569499016, + -0.009096387773752213, + -0.03664610907435417, + 0.055966220796108246, + -0.06953123956918716, + -0.060615722090005875, + 0.06217702478170395, + 0.049572624266147614, + 0.04777832329273224, + 0.024736059829592705, + 0.08770846575498581, + 0.07545565813779831, + -0.02067302167415619, + -0.04278501495718956 + ], + "brackets-curly-bold||code,curly brackets,curly braces": [ + -0.09128054976463318, + 0.009529422037303448, + -0.04174189269542694, + 0.012871033512055874, + -0.04271410405635834, + -0.033251259475946426, + 0.00217139208689332, + 0.007863982580602169, + -0.0025986172258853912, + -0.010285301133990288, + -0.02040642686188221, + 0.03869073837995529, + 0.03171870484948158, + -0.061817146837711334, + 0.07518205791711807, + 0.12945564091205597, + -0.09347036480903625, + -0.030289262533187866, + 0.0016066486714407802, + 0.04531627148389816, + 0.032279420644044876, + -0.015214771032333374, + -0.07938878983259201, + 0.02062968537211418, + 0.05026130750775337, + 0.07883935421705246, + 0.042597293853759766, + -0.03212612494826317, + 0.06122567132115364, + 0.020073605701327324, + -0.011332129128277302, + -0.06595956534147263, + 0.03674165531992912, + 0.020005619153380394, + 0.06119060143828392, + 0.07809808850288391, + -0.029570091515779495, + -0.08105810731649399, + -0.035105183720588684, + 0.014400548301637173, + 0.02523200586438179, + -0.025921300053596497, + 0.010412871837615967, + 0.03595438227057457, + -0.011509408243000507, + 0.0032371412962675095, + -0.03023524582386017, + -0.0059791142120957375, + -0.08131919801235199, + -0.03904063254594803, + -0.004656852688640356, + -0.0070979599840939045, + -0.056085530668497086, + -0.06524375826120377, + 0.0317833311855793, + -0.05089380592107773, + -0.08286276459693909, + -0.03073108196258545, + 0.08945875614881516, + -0.025935696437954903, + 0.07363560050725937, + 0.01547863706946373, + -0.00926215946674347, + 0.07819495350122452, + -0.030319146811962128, + -0.011053419671952724, + -0.010262228548526764, + 0.08086904883384705, + 0.012293566018342972, + -0.0011948311002925038, + -0.05246180668473244, + -0.012521851807832718, + -0.035097938030958176, + 0.027192991226911545, + 0.03167777135968208, + 0.012816740199923515, + 0.0668664202094078, + 0.015077363699674606, + -0.0013321193400770426, + -0.07155490666627884, + -0.04872141778469086, + -0.08388134092092514, + -0.013621015474200249, + 0.0028525511734187603, + 0.08608858287334442, + 0.08285364508628845, + -0.03575965017080307, + -0.04037224128842354, + 0.036736663430929184, + 0.06871312111616135, + 0.04627196490764618, + -0.04254261404275894, + 0.024238141253590584, + 0.07805956155061722, + -0.041968222707509995, + -0.022120174020528793, + 0.023837342858314514, + 0.022432154044508934, + -0.09008987993001938, + 0.08910965919494629, + 0.014541356824338436, + 0.1198771744966507, + 0.07703761011362076, + -0.001986118033528328, + -0.04780692607164383, + 0.0036629035603255033, + 0.05377364903688431, + 0.05562515929341316, + -0.011008474975824356, + -0.014868931844830513, + -0.027980895712971687, + -0.06410569697618484, + 0.0671340823173523, + -0.06406428664922714, + -0.084366075694561, + -0.05399266630411148, + 0.008887972682714462, + 0.031316012144088745, + 0.12145998328924179, + 0.08353643119335175, + 0.09028047323226929, + -0.042194027453660965, + -0.08652349561452866, + -0.06411641091108322, + 0.001886111916974187, + 0.02155924402177334, + -0.06323044747114182, + -1.5037910048947439e-33, + 0.08591783791780472, + -0.018512628972530365, + -0.06755097210407257, + 0.05434759706258774, + -0.004453531466424465, + -0.009383568540215492, + -0.06050026789307594, + -0.05138201266527176, + -0.13741905987262726, + 0.021044183522462845, + 0.13928554952144623, + -0.05875849351286888, + 0.023457614704966545, + 0.052340321242809296, + -0.08615749329328537, + 0.014463216066360474, + 0.05222918838262558, + 0.015588920563459396, + 0.012557975947856903, + 0.006373783107846975, + -0.0705733522772789, + 0.04905446246266365, + -0.07657395303249359, + 0.023590615019202232, + -0.04918498918414116, + 0.010734227485954762, + 0.05999135971069336, + 0.011829678900539875, + -0.07552750408649445, + 0.02456601895391941, + 0.03945361077785492, + -0.057605352252721786, + 0.04386819154024124, + -0.05876787006855011, + 0.061001960188150406, + 0.04224005714058876, + 0.013184666633605957, + -0.0418170690536499, + -0.007835185155272484, + 0.049792755395174026, + -0.010135435499250889, + -0.010887411423027515, + 0.002832594560459256, + -0.013316316530108452, + 0.05424338951706886, + 0.028261471539735794, + -0.05390440300107002, + 0.03076392412185669, + 0.022433776408433914, + 0.004594878293573856, + -0.0020730989053845406, + 0.034819234162569046, + 0.05621820315718651, + 0.04663340374827385, + 0.012028196826577187, + -0.0019507752731442451, + -0.0007296036346815526, + 0.07186415791511536, + 0.0012157458113506436, + 0.004583918955177069, + -0.10613942891359329, + 0.08389142155647278, + 0.04589683189988136, + -0.1080433651804924, + -0.04994254931807518, + 0.018159788101911545, + -0.028980564326047897, + 0.04350684955716133, + 0.038333650678396225, + -0.004674586933106184, + 6.158424366731197e-05, + 0.04194733500480652, + -0.02581450715661049, + 0.013617954216897488, + 0.0014568334445357323, + 0.006334620527923107, + 0.028175940737128258, + -0.025940965861082077, + 0.008624524809420109, + -0.1132749617099762, + -0.0714181438088417, + -0.007299695163965225, + -0.028274165466427803, + 0.07324083149433136, + -0.06427070498466492, + 0.0434865765273571, + -0.03286841884255409, + -0.10467783361673355, + -0.04214583709836006, + 0.1094803735613823, + -0.06346378475427628, + -0.06804249435663223, + -0.0500858798623085, + -0.11424490064382553, + -0.0660475492477417, + -1.2447888244482998e-33, + 0.04016488417983055, + 0.022760489955544472, + -0.07762439548969269, + -0.045790694653987885, + -0.05787401273846626, + -0.016193490475416183, + 0.009399065747857094, + 0.0018114377744495869, + -0.004916282836347818, + -0.013990512117743492, + 0.06855044513940811, + 0.010706356726586819, + -0.07555340230464935, + -0.03041115030646324, + 0.04677202180027962, + 0.03960119187831879, + -0.008049670606851578, + 0.015984417870640755, + 0.024188049137592316, + -0.019709832966327667, + -0.00048722713836468756, + 0.020089711993932724, + -0.0148969991132617, + 0.12806342542171478, + -0.08236753940582275, + 0.05319568142294884, + -0.019313862547278404, + 0.01359068974852562, + -0.001610364648513496, + -0.04030530899763107, + 0.03411129117012024, + -0.05448882654309273, + -0.04017523676156998, + 0.04673580452799797, + -0.07640659809112549, + 0.03276054933667183, + 0.028232278302311897, + 0.024689821526408195, + 0.043151866644620895, + -0.057974815368652344, + 0.030537836253643036, + 0.005601950921118259, + 0.05820662900805473, + -0.002536130603402853, + -0.01937323622405529, + 0.019692761823534966, + 0.09363603591918945, + -0.025780679658055305, + -0.002690747380256653, + 0.01698470488190651, + -0.009080270305275917, + -0.058842647820711136, + -0.019820721819996834, + 0.03476632013916969, + -0.09234792739152908, + -0.083692267537117, + 0.039798662066459656, + -0.03029635362327099, + -0.05115304887294769, + 0.04218830540776253, + -0.03250942379236221, + -0.022490933537483215, + 0.06398522853851318, + -0.018948793411254883, + 0.01062371488660574, + -0.10151751339435577, + 0.04374346137046814, + -0.0021455995738506317, + 0.03306986019015312, + -0.06121424585580826, + 0.046875208616256714, + 0.03816844895482063, + -0.015744363889098167, + 0.006410508882254362, + 0.0030047763139009476, + -0.02977895550429821, + 0.06687680631875992, + 0.006865271367132664, + 0.01631520502269268, + 0.07681109756231308, + -0.01966433972120285, + -0.001170674106106162, + 0.02254137024283409, + 0.05833124741911888, + -0.07322058081626892, + 0.03559061884880066, + 0.07268425077199936, + 0.040094345808029175, + -0.029633233323693275, + -0.0346052311360836, + -0.06526333838701248, + 0.06789438426494598, + 0.053057026118040085, + -0.05328614264726639, + 0.0007075429894030094, + -1.7587197476132133e-08, + -0.03100898489356041, + -0.020932946354150772, + -0.06750614196062088, + -0.060299236327409744, + -0.04894647374749184, + -0.017830630764365196, + -0.07930713146924973, + -0.07326646149158478, + -0.0562247671186924, + 0.020706510171294212, + 0.0836409479379654, + 0.03577803075313568, + -0.03822777792811394, + -0.0961817279458046, + 0.01692832261323929, + 0.0074656144715845585, + -0.09813813865184784, + 0.01973407156765461, + -0.03872581571340561, + -0.01623576506972313, + -0.034612562507390976, + 0.05499529838562012, + 0.0532795749604702, + -0.0019015417201444507, + 0.051643531769514084, + -0.018113816156983376, + 0.000998124829493463, + -0.021056484431028366, + 0.04503763094544411, + 0.10156264901161194, + 0.017650695517659187, + 0.08245386183261871, + 0.03408190608024597, + -0.057933222502470016, + -0.018208978697657585, + -0.08021974563598633, + -0.02097960375249386, + -0.030466871336102486, + 0.00662184925749898, + 0.09045165777206421, + 0.008414882235229015, + -0.022392703220248222, + -0.02239011600613594, + -0.0019435194553807378, + -0.04182343930006027, + -0.007553298957645893, + 0.07742062211036682, + 0.09357140958309174, + -0.08197134733200073, + -0.12018363177776337, + -0.022665688768029213, + 0.013465089723467827, + -0.06017480418086052, + 0.07958363741636276, + -0.0686160996556282, + -0.09418801218271255, + 0.005054617766290903, + 0.08074978739023209, + 0.033346377313137054, + 0.02918332628905773, + 0.07521556317806244, + 0.03212086111307144, + 0.013214334845542908, + -0.018269073218107224 + ], + "brackets-round-bold||code,parentheses,round brackets,round braces": [ + -0.07415080070495605, + 0.06866059452295303, + -0.064333975315094, + 0.016344837844371796, + -0.026107633486390114, + -0.05285840108990669, + 0.002795427804812789, + 0.04266104847192764, + 0.015142777003347874, + -0.004964522086083889, + -0.04350307956337929, + -0.020267853513360023, + -0.007924533449113369, + -0.05594257637858391, + 0.0712127834558487, + 0.06784693151712418, + -0.10664326697587967, + -0.031200770288705826, + 0.01927245408296585, + 0.04389951750636101, + 0.030962839722633362, + -0.01696457527577877, + -0.07236584275960922, + 0.03377877175807953, + 0.06411360204219818, + 0.07525317370891571, + 0.05822359025478363, + -0.018270064145326614, + 0.06917362660169601, + -0.01977808214724064, + -0.03765290975570679, + -0.003306227969005704, + 0.09545222669839859, + -0.0026874137111008167, + 0.05797067657113075, + 0.05764477327466011, + 0.004851412959396839, + -0.03404317796230316, + 0.020697608590126038, + 0.015500401146709919, + 0.009539453312754631, + -0.02583722211420536, + 0.056920286267995834, + 0.04205682501196861, + -0.013015308417379856, + -0.015234239399433136, + -0.09705148637294769, + 0.02184913493692875, + -0.06656087934970856, + -0.05114142969250679, + 0.019015345722436905, + -0.029418587684631348, + -0.10204925388097763, + -0.04855538532137871, + 0.0036031315103173256, + -0.07635743916034698, + -0.06653532385826111, + -0.062036123126745224, + 0.0986105352640152, + -0.032399002462625504, + 0.04386723041534424, + -0.028037698939442635, + -0.02939131297171116, + 0.08356530964374542, + -0.05619819462299347, + -0.007215338293462992, + -0.010924738831818104, + -0.00010373465192969888, + 0.004112371243536472, + -0.02060771733522415, + -0.05164770036935806, + -0.010202671401202679, + -0.06987504661083221, + 0.029436029493808746, + 0.0348576195538044, + -0.011594356968998909, + 0.017911409959197044, + -0.012393375858664513, + 0.01633109338581562, + -0.01508335117250681, + -0.06858104467391968, + -0.05842868611216545, + 0.009104399010539055, + 0.028548894450068474, + 0.06852293014526367, + 0.032447949051856995, + -0.011692940257489681, + -0.04186787083745003, + 0.04141334444284439, + 0.09110723435878754, + 0.017193937674164772, + -0.004233809653669596, + 0.028595659881830215, + 0.06666556000709534, + -0.08259458839893341, + 0.012720346450805664, + 0.028647514060139656, + -0.013189652003347874, + -0.045440562069416046, + 0.09869790077209473, + 0.05017882585525513, + 0.10323509573936462, + 0.046115197241306305, + -0.06138612702488899, + -0.05864020809531212, + 0.038538962602615356, + 0.07647709548473358, + 0.037910908460617065, + 0.013592156581580639, + -0.020503059029579163, + -0.06118973344564438, + -0.05031426623463631, + 0.092347651720047, + -0.06037159636616707, + -0.07430001348257065, + -0.02323247119784355, + -0.010846025310456753, + 0.011046793311834335, + 0.1323847621679306, + 0.07313555479049683, + 0.07927550375461578, + 0.009761686436831951, + -0.06921164691448212, + -0.06884301453828812, + 0.012930572032928467, + 0.02835324965417385, + -0.02611631341278553, + -1.4933165237094519e-33, + 0.0618918277323246, + -0.0025192361790686846, + -0.045916348695755005, + 0.047331664711236954, + -0.0029692952521145344, + -0.02373010665178299, + -0.04861162230372429, + -0.06828219443559647, + -0.13676989078521729, + -0.01304575428366661, + 0.11737217009067535, + -0.03210068121552467, + 0.0141360554844141, + 0.031359557062387466, + -0.0295675378292799, + 0.0086265429854393, + 0.055969879031181335, + 0.02890009619295597, + -0.0312570296227932, + -0.013721217401325703, + -0.09764526039361954, + 0.0294844601303339, + -0.048120904713869095, + 0.07704334706068039, + 0.01878412440419197, + 0.031015899032354355, + 0.05382874608039856, + 0.011112640611827374, + -0.08065980672836304, + 0.04462488368153572, + 0.04605194926261902, + -0.034805845469236374, + 0.0426410511136055, + -0.027557190507650375, + 0.058787040412425995, + 0.06462541967630386, + 0.021309744566679, + -0.02302473783493042, + 0.02984992042183876, + 0.07306817173957825, + -0.03270881250500679, + -0.01569075509905815, + -0.028804251924157143, + -0.028302446007728577, + 0.013502532616257668, + 0.057605914771556854, + -0.02541397698223591, + 0.05227111652493477, + 0.0028345445170998573, + 0.013768335804343224, + -0.013688912615180016, + 0.03580215573310852, + 0.04441621154546738, + 0.03951714560389519, + -0.006682025268673897, + 0.024203408509492874, + 0.016444409266114235, + 0.05943689122796059, + 0.015276099555194378, + -0.018316270783543587, + -0.04478105902671814, + 0.0992666706442833, + 0.03157978504896164, + -0.07740935683250427, + -0.08934962749481201, + -0.005714594852179289, + -0.0514974482357502, + -0.012148608453571796, + 0.013961548916995525, + 0.016330134123563766, + -0.0032060504890978336, + 0.08071138709783554, + -0.017183799296617508, + 0.04258754476904869, + -0.014148215763270855, + -0.028524067252874374, + 0.07455779612064362, + -0.041326358914375305, + -0.012784665450453758, + -0.11845041811466217, + -0.04452500119805336, + 0.032241880893707275, + -0.03014100156724453, + 0.049656663089990616, + -0.06083105504512787, + 0.01673886924982071, + -0.009459377266466618, + -0.08973795920610428, + -0.05671381205320358, + 0.070045106112957, + -0.10260236263275146, + -0.08820217102766037, + -0.020845824852585793, + -0.09113801270723343, + -0.06578825414180756, + -2.0518933476274598e-34, + 0.014633663929998875, + 0.039787936955690384, + -0.071224145591259, + -0.02517215721309185, + -0.043000880628824234, + 0.0014494634233415127, + -0.014748985879123211, + -0.016379954293370247, + 0.04555192589759827, + 0.021830685436725616, + 0.06151586398482323, + 0.0045408885926008224, + -0.0836920440196991, + -0.05881354957818985, + 0.056621305644512177, + 0.019848227500915527, + 0.02680971659719944, + 0.02103361301124096, + -0.011730015277862549, + -0.003910617437213659, + 0.04230251535773277, + 0.003534819930791855, + -0.04341091588139534, + 0.09235324710607529, + -0.07666347175836563, + 0.06340820342302322, + -0.04386197775602341, + -0.03541330248117447, + 0.017565138638019562, + 0.005186248570680618, + -0.0009228026028722525, + -0.05445653200149536, + 0.006954640615731478, + 0.03134194388985634, + -0.052599772810935974, + 0.00014274295244831592, + 0.06798680871725082, + -0.006250285543501377, + 0.05458247289061546, + -0.05431971698999405, + 0.03807619586586952, + -0.03066600300371647, + 0.04664874076843262, + 0.01727338694036007, + -0.004013751167804003, + -0.037538379430770874, + 0.10269773006439209, + 0.00478789396584034, + -0.02072826400399208, + -0.006476542446762323, + -0.07559609413146973, + -0.013139888644218445, + -0.019010178744792938, + 0.08777802437543869, + -0.09820687770843506, + -0.06532510370016098, + 0.039194367825984955, + -0.03361252322793007, + -0.012784820981323719, + 0.019969815388321877, + -0.07142727077007294, + -0.03141457214951515, + 0.06799693405628204, + -0.029650215059518814, + 0.021426213905215263, + -0.0674438402056694, + 0.006243990734219551, + 0.02306169830262661, + -0.004509142134338617, + -0.04912257567048073, + 0.06328267604112625, + 0.0400538295507431, + -0.017218323424458504, + 0.017013320699334145, + -0.017182499170303345, + -0.05393724888563156, + 0.05642903968691826, + 0.044510602951049805, + 0.011563355103135109, + 0.10698611289262772, + 0.02579263411462307, + 0.0318213626742363, + 0.026242632418870926, + 0.03832998126745224, + -0.07234261184930801, + 0.01590796932578087, + 0.08085279911756516, + 0.07780883461236954, + -0.04810108244419098, + -0.012945642694830894, + -0.08081549406051636, + 0.06564284861087799, + 0.07914634793996811, + -0.015007829293608665, + -0.012558644637465477, + -1.9616168245306653e-08, + -0.027427371591329575, + -0.08542825281620026, + -0.06636367738246918, + -0.02006836235523224, + -0.04350752755999565, + 0.00331605551764369, + -0.06520915031433105, + -0.09491532295942307, + -0.07362288981676102, + -0.0007450729026459157, + 0.10998883843421936, + 0.039184145629405975, + -0.03508630767464638, + -0.125308096408844, + 0.014760426245629787, + 0.042325180023908615, + -0.08614186942577362, + 0.029968062415719032, + -0.047292985022068024, + -0.01938038133084774, + -0.04051259532570839, + 0.043450307101011276, + 0.0428122915327549, + -0.03531917557120323, + 0.009370015002787113, + 0.020864110440015793, + -0.034093160182237625, + 0.009693319909274578, + 0.016062570735812187, + 0.09820861369371414, + 0.0001527398417238146, + 0.1428295075893402, + 0.015253931283950806, + -0.04126149043440819, + -0.05275653302669525, + -0.08842595666646957, + -0.00032250169897451997, + -0.004869323689490557, + 0.028958478942513466, + 0.09712036699056625, + 0.017262546345591545, + -0.05128103494644165, + -0.03865746781229973, + -0.0008012374164536595, + -0.026056786999106407, + -0.014730318449437618, + 0.0785207599401474, + 0.07265745103359222, + -0.05711134150624275, + -0.13669784367084503, + -0.01582331396639347, + 0.0014722440391778946, + -0.05960850045084953, + 0.10022037476301193, + -0.05656631663441658, + -0.05205699801445007, + 0.005419623572379351, + 0.052051082253456116, + 0.0209310594946146, + 0.029717616736888885, + 0.06584487110376358, + 0.05526183173060417, + 0.032392021268606186, + -0.006958116311579943 + ], + "brackets-square-bold||code,square brackets,square braces,array": [ + -0.008038867264986038, + 0.05500011146068573, + -0.06537802517414093, + 0.043560657650232315, + -0.06741845607757568, + -0.029110828414559364, + 0.005002615507692099, + -0.009199253283441067, + -0.0033331450540572405, + -0.04087430238723755, + -0.05604534596204758, + 0.026394272223114967, + 0.0315311998128891, + -0.051644206047058105, + 0.0365326963365078, + 0.11480551958084106, + -0.08588872849941254, + -0.027506999671459198, + 0.011445420794188976, + 0.051441457122564316, + 0.05069001391530037, + -0.013446924276649952, + -0.0827556848526001, + 0.01743496023118496, + 0.027895629405975342, + 0.09137788414955139, + 0.060524649918079376, + 0.0071421838365495205, + 0.054682549089193344, + 0.01328276190906763, + 0.0061752889305353165, + -0.06471683084964752, + 0.10209417343139648, + 0.018696757033467293, + 0.012347751297056675, + 0.07348302751779556, + -0.03728240728378296, + -0.05886029824614525, + 0.032509904354810715, + 0.008392898365855217, + 0.021096661686897278, + -0.04968000948429108, + -0.009161313064396381, + 0.026326315477490425, + 0.008425130508840084, + -0.04380067437887192, + -0.02937988191843033, + -0.01902911812067032, + -0.031602829694747925, + -0.04448462650179863, + -0.02532682754099369, + -0.01827794685959816, + -0.046271536499261856, + -0.0802203044295311, + 0.03223161771893501, + -0.061367783695459366, + -0.08483138680458069, + -0.030553573742508888, + 0.12755931913852692, + -0.021740421652793884, + 0.08745615184307098, + -0.009551124647259712, + -0.0002582967863418162, + 0.07761324942111969, + -0.06679051369428635, + -0.01641034707427025, + 0.011560190469026566, + 0.05785508453845978, + 0.02682747319340706, + -0.01126947533339262, + -0.02405189536511898, + 0.02294975146651268, + -0.005262970924377441, + 0.02160440944135189, + 0.02098207175731659, + -0.026961173862218857, + 0.05145687237381935, + -0.04645742103457451, + 0.01657908782362938, + -0.014450755901634693, + -0.07272761315107346, + -0.05514627695083618, + -0.01444845087826252, + 0.015821345150470734, + 0.032351892441511154, + 0.07718811929225922, + -0.07173462957143784, + -0.035970062017440796, + 0.010605284944176674, + 0.016291704028844833, + 0.0387386716902256, + -0.017396312206983566, + 0.007429475896060467, + 0.09607943892478943, + -0.050497867166996, + -0.02204984612762928, + 0.06039506942033768, + -0.016673576086759567, + -0.09898170828819275, + 0.0943199098110199, + 0.036526817828416824, + 0.09463013708591461, + 0.028625430539250374, + -0.02001388929784298, + -0.036896079778671265, + -0.004496738314628601, + 0.09727030992507935, + 0.030978577211499214, + -0.05658885836601257, + 0.005985433701425791, + -0.05137372761964798, + -0.026654016226530075, + 0.057124484330415726, + -0.01460507232695818, + -0.0844707041978836, + -0.018624301999807358, + -0.03288819268345833, + 0.0033524257596582174, + 0.13687501847743988, + 0.07889807224273682, + 0.10686768591403961, + -0.022892240434885025, + -0.041533034294843674, + -0.037573471665382385, + 0.014439388178288937, + 0.015378306619822979, + -0.06484627723693848, + -1.445331099434459e-33, + 0.09005454927682877, + 0.023739103227853775, + 0.001197882927954197, + 0.06154654920101166, + 0.019604478031396866, + -0.05749853327870369, + -0.06151704490184784, + -0.06453265994787216, + -0.07434780895709991, + 0.026196736842393875, + 0.12120332568883896, + -0.05113958567380905, + -0.0035059319343417883, + 0.06998765468597412, + -0.030526068061590195, + 0.017891831696033478, + 0.05513574928045273, + 0.038474224507808685, + 0.002663809573277831, + -0.01359245739877224, + -0.09695363789796829, + 0.04681657627224922, + -0.06450146436691284, + 0.06881310045719147, + -0.03037206642329693, + 0.0005280440673232079, + 0.05082976073026657, + 0.013611465692520142, + -0.03339717909693718, + 0.049805883318185806, + 0.07006209343671799, + -0.00933872815221548, + 0.024260729551315308, + -0.06627733260393143, + 0.09216169267892838, + 0.04230472818017006, + 0.014055916108191013, + -0.004771613981574774, + 0.008094655349850655, + 0.03385194391012192, + -0.009306052699685097, + 0.0007564935367554426, + 0.020898791030049324, + -0.026754215359687805, + 0.043179068714380264, + -0.004308432340621948, + -0.0002443724952172488, + 0.009599010460078716, + 0.01464810036122799, + 0.004786319099366665, + -0.03313086926937103, + 0.03115665167570114, + 0.025578573346138, + 0.06521829962730408, + 0.01442499365657568, + -0.02893056534230709, + -0.010066356509923935, + 0.07045134156942368, + 0.027924049645662308, + 0.007306835614144802, + -0.0889020711183548, + 0.028658701106905937, + 0.03163740411400795, + -0.07190605252981186, + -0.06775912642478943, + 0.014551635831594467, + -0.05204915627837181, + 0.006593428086489439, + 0.0039058702532202005, + 0.006071093957871199, + 0.005687268450856209, + 0.052243687212467194, + -0.01714225485920906, + 0.02390657737851143, + -0.047086428850889206, + 0.006106483284384012, + 0.04212357848882675, + -0.02660585753619671, + 0.01522973831743002, + -0.15976035594940186, + -0.05642402172088623, + 0.0016831500688567758, + -0.0516204908490181, + 0.009439182467758656, + -0.03991583362221718, + 0.01529449038207531, + -0.03668544068932533, + -0.12210435420274734, + -0.039997756481170654, + 0.07507102191448212, + -0.08990231901407242, + -0.063323475420475, + -0.07453689724206924, + -0.134466290473938, + -0.05591317638754845, + -1.0550509955851281e-33, + 0.04237791895866394, + 0.0529656745493412, + -0.05009417235851288, + -0.05596992373466492, + -0.036945831030607224, + -0.03519528731703758, + 0.015269049443304539, + -0.007332645822316408, + 0.007739262655377388, + 0.0223140399903059, + 0.03728868439793587, + -0.009494542144238949, + -0.06846366077661514, + -0.06550067663192749, + 0.056550681591033936, + 0.04191702976822853, + 0.03580160066485405, + 0.01762096956372261, + -0.009309668093919754, + -0.05416516959667206, + -0.014453587122261524, + 0.02442825771868229, + 0.01881660893559456, + 0.0812099426984787, + -0.0972319096326828, + 0.04086405783891678, + -0.02911386825144291, + -0.016178255900740623, + 0.02497178502380848, + -0.0006986962980590761, + 0.017756842076778412, + -0.03968522697687149, + -0.03904562070965767, + 0.07035640627145767, + -0.05426330864429474, + 0.01617320440709591, + 0.028771357610821724, + -0.011536885052919388, + 0.04298516362905502, + -0.08062898367643356, + 0.049827177077531815, + -0.00950497854501009, + 0.053270645439624786, + 0.012035178951919079, + 0.007290740963071585, + 0.0007371522951871157, + 0.10565202683210373, + -0.01189983356744051, + 0.01254046056419611, + -0.05163875222206116, + -0.041319724172353745, + -0.05581950023770332, + -0.033265333622694016, + 0.0545458160340786, + -0.07171627134084702, + -0.07759977132081985, + 0.039678871631622314, + 0.014195394702255726, + -0.010853263549506664, + 0.03894765302538872, + -0.048800669610500336, + -0.01746302656829357, + 0.058034006506204605, + -0.04343344643712044, + -0.007088170386850834, + -0.10527580231428146, + 0.02621019259095192, + 0.027272488921880722, + 0.023228719830513, + -0.0017864470137283206, + 0.04077371582388878, + 0.01441114954650402, + -0.03878825530409813, + 0.02583564631640911, + -0.04381018877029419, + -0.05180401727557182, + 0.03275223448872566, + 0.013162022456526756, + -0.013920909725129604, + 0.10346173495054245, + 0.024314749985933304, + 0.03528561815619469, + 0.026158194988965988, + 0.04320625588297844, + -0.05867494270205498, + 0.014554167166352272, + 0.08682640641927719, + 0.03448266535997391, + -0.06833335757255554, + -0.04964297637343407, + -0.050914663821458817, + 0.0477285236120224, + 0.034576915204524994, + -0.02689104713499546, + -0.007984722964465618, + -1.841325669715843e-08, + -0.042665209621191025, + -0.03464113175868988, + -0.06479216367006302, + -0.04772265627980232, + -0.050503265112638474, + -0.05177972838282585, + -0.08630738407373428, + -0.0962228998541832, + -0.051073770970106125, + -0.009278696961700916, + 0.08923657238483429, + 0.03239021450281143, + -0.03601638600230217, + -0.095114566385746, + -0.007291581481695175, + 0.00906332116574049, + -0.07880981266498566, + -0.003672414692118764, + -0.031096898019313812, + -0.01389706414192915, + -0.03446471691131592, + 0.03260502219200134, + 0.04661306366324425, + -0.012591083534061909, + 0.03712684288620949, + -0.0052971807308495045, + -0.0392133891582489, + -0.02078297547996044, + 0.0803048238158226, + 0.15919329226016998, + 0.05892552435398102, + 0.1050073653459549, + 0.049993377178907394, + -0.054258041083812714, + -0.015312839299440384, + -0.11522180587053299, + -0.002584840403869748, + -0.014881126582622528, + 0.004572641104459763, + 0.0649019256234169, + 0.04296650364995003, + -0.03273215889930725, + 0.006790744140744209, + 0.004933114629238844, + 0.0028138814959675074, + 0.0016187960281968117, + 0.050586335361003876, + 0.07821396738290787, + -0.026806669309735298, + -0.13890708982944489, + 0.0005848279688507318, + 0.00867829006165266, + -0.06979241967201233, + 0.09278271347284317, + -0.07707090675830841, + -0.11119244992733002, + -0.02370552346110344, + 0.08998943865299225, + 0.09114211797714233, + 0.01497557945549488, + 0.08190752565860748, + 0.05089729279279709, + -0.009573922492563725, + -0.017352793365716934 + ], + "brain-bold||mind,mental": [ + 0.033977948129177094, + -0.04702574014663696, + 0.00784666184335947, + 0.0007883710786700249, + 0.022643333300948143, + -0.012802083976566792, + 0.13226337730884552, + -0.06659090518951416, + 0.02850324846804142, + 0.0299477968364954, + 0.037224430590867996, + -0.014940166845917702, + -0.03415248915553093, + -0.05774718150496483, + 0.04198949784040451, + 0.05047338083386421, + -0.008031707257032394, + -0.024661947041749954, + -0.002953789895400405, + 0.046688590198755264, + -0.0009950901148840785, + 0.06292378902435303, + 0.03758735582232475, + 0.0028934103902429342, + 0.024684926494956017, + 0.09987727552652359, + 0.006062441039830446, + -0.044848617166280746, + 0.035964056849479675, + -0.011217515915632248, + 0.06382148712873459, + 0.059560392051935196, + -0.012394758872687817, + 0.03504958376288414, + 0.057093724608421326, + 0.05384606495499611, + -0.09306825697422028, + -0.019443165510892868, + 0.042737629264593124, + -0.023659436032176018, + -0.029505375772714615, + -0.0590738020837307, + -0.03228108212351799, + 0.021697411313652992, + -0.05927152931690216, + 0.03044263646006584, + -0.06867212802171707, + -0.06548173725605011, + -0.0359988771378994, + -0.08728257566690445, + -0.1238183081150055, + -0.047890979796648026, + -0.0833633542060852, + 0.007613150402903557, + 0.04014130309224129, + 0.04390716180205345, + -0.007633882109075785, + 0.01928119733929634, + -0.05511491373181343, + 0.059664539992809296, + -0.0422368161380291, + -0.024115385487675667, + 0.059838563203811646, + -0.0014809336280450225, + 0.08816836029291153, + 0.0527421198785305, + -0.04996011033654213, + 0.01632736437022686, + -0.09738482534885406, + 0.054432447999715805, + 0.07975617796182632, + -0.02733195386826992, + -0.0472763366997242, + -0.07874137163162231, + 0.007648661267012358, + 0.021908773109316826, + -0.0161802489310503, + -0.05667882040143013, + 0.05420103296637535, + -0.09465769678354263, + -0.05029831454157829, + -0.0009321562829427421, + -0.052618540823459625, + 0.0007059206254780293, + 0.058420710265636444, + -0.001829697983339429, + -0.045711565762758255, + 0.02909477800130844, + -0.051432907581329346, + 0.1016383096575737, + -0.05506017804145813, + -0.11432398110628128, + -0.045618511736392975, + 0.03092014230787754, + 0.03776669502258301, + 0.0628271996974945, + -0.05303098261356354, + -0.022420821711421013, + -0.03434294834733009, + 0.06601371616125107, + 0.096623495221138, + 0.0861034169793129, + 0.02617626264691353, + -0.0056536560878157616, + -0.03975343704223633, + 0.006325602997094393, + 0.07234246283769608, + -0.016440868377685547, + -0.008403809741139412, + -0.029874542728066444, + -0.07460785657167435, + -0.04340047761797905, + 0.00025366831687279046, + 0.02522108145058155, + -0.03988279029726982, + -0.029236475005745888, + -0.005342694465070963, + 0.015091816894710064, + 0.12425108253955841, + -0.005557853728532791, + 0.032974723726511, + -0.00575181283056736, + -0.036006614565849304, + 0.04202339053153992, + 0.030453665181994438, + -0.08045628666877747, + -0.04220779240131378, + -2.83662490723261e-33, + 0.06590283662080765, + 0.0038012382574379444, + -0.025757119059562683, + 0.047390975058078766, + 0.05667762830853462, + 0.017006222158670425, + -0.03134298324584961, + -0.08757084608078003, + -0.06491904705762863, + 0.10630621016025543, + -0.0775299072265625, + 0.00775961484760046, + -0.008720560930669308, + 0.10863025486469269, + -0.059951215982437134, + -0.018733317032456398, + -0.09449904412031174, + -0.031634263694286346, + -0.05195082351565361, + -0.029099198058247566, + 0.005154469050467014, + 0.12892958521842957, + -0.06301985681056976, + -0.03477407619357109, + -0.018990516662597656, + -0.06056088209152222, + -0.026747040450572968, + -0.043735384941101074, + -0.011517825536429882, + 0.047825250774621964, + -0.03814736753702164, + 0.054387081414461136, + 0.007021715864539146, + 0.013709867373108864, + -0.050138551741838455, + 0.04901951178908348, + 0.007747782859951258, + 0.01406338345259428, + -0.00405183807015419, + 0.06898444890975952, + 0.06398595124483109, + 0.07431554794311523, + -0.006619712337851524, + 0.018447600305080414, + -0.009502018801867962, + 0.13994939625263214, + -0.009172842837870121, + 0.009072401560842991, + 0.0017393846064805984, + 0.026694579049944878, + -0.0334269180893898, + -0.016200263053178787, + 0.03618888184428215, + 0.025375889614224434, + 0.022411122918128967, + -0.01682557351887226, + 0.012530244886875153, + 0.11304131150245667, + 0.031871866434812546, + -0.045596878975629807, + 0.026667678728699684, + -0.000695439288392663, + 0.028964778408408165, + -0.05267168581485748, + 0.042772550135850906, + 0.05714280903339386, + -0.10074606537818909, + 0.002509844722226262, + 0.06348849833011627, + -0.004776233807206154, + -0.00194759841542691, + 0.041186921298503876, + -0.0033241056371480227, + -0.013638831675052643, + -0.04782968387007713, + -0.02809804677963257, + 0.008845428004860878, + -0.019595544785261154, + -0.05196969956159592, + -0.06992094218730927, + -0.015821577981114388, + 0.044227201491594315, + -0.07682281732559204, + 0.0610741525888443, + 0.04630322754383087, + 0.052834078669548035, + 0.020808132365345955, + -0.09792327135801315, + -0.058994267135858536, + -0.007091386243700981, + -0.027496332302689552, + -0.011236922815442085, + 0.06304573267698288, + -0.10922469198703766, + -0.20170989632606506, + 1.1315952387843407e-33, + -0.04321238398551941, + 0.01307301502674818, + 0.02738809771835804, + 1.3068432053842116e-05, + -0.03224671632051468, + -0.009835717268288136, + 0.022469453513622284, + 0.0013423262862488627, + -0.007261280901730061, + 0.07017730176448822, + -0.04991524666547775, + -0.0997110977768898, + 0.0059842984192073345, + -0.01578637585043907, + 0.0639849379658699, + -0.06340660154819489, + -0.04158993810415268, + -0.016465555876493454, + 0.001682377653196454, + 0.04142649099230766, + -0.036966584622859955, + 0.01879950612783432, + -0.029815036803483963, + 0.050348829478025436, + -0.019500205293297768, + 0.07590261846780777, + 0.006324506364762783, + 0.06270468980073929, + -0.06196324899792671, + -0.052853405475616455, + -0.044942885637283325, + -0.017248859629034996, + -0.055592168122529984, + 0.020008355379104614, + -0.014210669323801994, + 0.07384730875492096, + -0.0041969530284404755, + -0.07203669100999832, + -0.0559382326900959, + 0.027080629020929337, + -0.041484344750642776, + 0.02601749077439308, + -0.0005325728561729193, + 0.036550845950841904, + -0.033748023211956024, + 0.010860194452106953, + -0.06658212840557098, + 0.007007356267422438, + -0.060107599943876266, + 0.0978507474064827, + -0.003324928693473339, + 0.019024765118956566, + -0.04583152383565903, + -0.0555182620882988, + -0.04177185148000717, + -0.040588680654764175, + -0.016287989914417267, + -0.03514784201979637, + -0.04184376820921898, + 0.031104598194360733, + -0.004556505475193262, + -0.011337604373693466, + -0.023368816822767258, + 0.007486084476113319, + 0.019521662965416908, + 0.02871701680123806, + -0.011054196394979954, + 0.06964120268821716, + 0.08563904464244843, + -0.013519738800823689, + 0.018291279673576355, + 0.078871950507164, + -0.044999007135629654, + 0.013668523170053959, + 0.06394533067941666, + 0.045597102493047714, + -0.0405048169195652, + 0.014165864326059818, + 0.019104938954114914, + 0.025124378502368927, + -0.028654687106609344, + -0.04992986097931862, + -0.04785549268126488, + 0.02987421676516533, + 0.004731849767267704, + 0.06275108456611633, + -0.034143369644880295, + 0.05966077372431755, + -0.03968625143170357, + -0.06491078436374664, + -0.06982052326202393, + 0.03917861729860306, + -0.03324844315648079, + 0.03328767418861389, + -0.08212947845458984, + -1.5967568600672166e-08, + -0.0675630122423172, + -0.061769064515829086, + -0.05403550714254379, + 0.05476023256778717, + 0.09571654349565506, + -0.017870083451271057, + 0.013933214358985424, + -0.04458734393119812, + -0.0892706885933876, + 0.03235577419400215, + 0.02464894950389862, + -0.018627146258950233, + -0.07397149503231049, + 0.035684019327163696, + 0.02737719565629959, + 0.027549024671316147, + -0.06838168203830719, + 0.052218031138181686, + 0.0008692590054124594, + -0.056397974491119385, + 0.08633416891098022, + 0.05779491364955902, + 0.028269222006201744, + -0.0126715749502182, + -0.007339639123529196, + 0.046535391360521317, + -0.03295588120818138, + 0.0032205849420279264, + -0.06988369673490524, + 0.03941107168793678, + 0.05882805958390236, + 0.11524219065904617, + -0.0040781437419354916, + -0.00936455000191927, + -0.022468360140919685, + -0.05694051459431648, + 0.016897844150662422, + 0.04738468676805496, + -0.03973086550831795, + 0.08597467094659805, + 0.01823274791240692, + 0.01542116142809391, + 0.033168643712997437, + 0.00570004153996706, + 0.022452199831604958, + -0.0408252514898777, + 0.0393233597278595, + -0.0002615857229102403, + -0.02346756123006344, + -0.0750553086400032, + 0.06232994794845581, + 0.06887301057577133, + 0.003183741820976138, + 0.0924675315618515, + 0.02047969214618206, + -0.037920523434877396, + -0.01940353773534298, + 0.10890862345695496, + -0.09837491810321808, + 0.03931962326169014, + 0.1332380324602127, + 0.09459489583969116, + -0.010263748466968536, + -0.04641153663396835 + ], + "brandy-bold||drinks,beverages,whiskey,cocktail,places,locations,bars,restaurants,food,dining": [ + 0.059773217886686325, + -0.02775069698691368, + -0.028411611914634705, + 0.04380592703819275, + -0.016806457191705704, + 0.02697577513754368, + 0.11910083889961243, + -0.08999112993478775, + -0.07179747521877289, + -0.08255777508020401, + -0.033354632556438446, + -0.014247694052755833, + -0.013556960970163345, + -0.004388988949358463, + -0.00405776035040617, + -0.023436710238456726, + 0.049478109925985336, + -0.025248533114790916, + 0.06375973671674728, + 0.021173464134335518, + 0.014132826589047909, + 0.028685450553894043, + 0.07992389798164368, + 0.0574626587331295, + 0.0398615226149559, + 0.06568385660648346, + -0.00647059828042984, + 0.08906804770231247, + 0.0026836595498025417, + -0.05217605456709862, + -0.016723427921533585, + 0.03610646352171898, + 0.02947635017335415, + 0.006379924714565277, + -0.028402624651789665, + -0.005209168419241905, + -0.022938238456845284, + 0.012093723751604557, + 0.002722581382840872, + 0.07034564763307571, + 0.032997291535139084, + 0.04410003125667572, + -0.04448356106877327, + 0.061653923243284225, + -0.06744106858968735, + -0.02625712938606739, + -0.06250465661287308, + -0.00412077596411109, + 0.009701582603156567, + 0.026483455672860146, + -0.03549841418862343, + -0.014906340278685093, + -0.0524275079369545, + 0.05571261793375015, + 0.05411095917224884, + -0.05266789346933365, + -0.07657961547374725, + 0.009276488795876503, + -0.002076683333143592, + 0.05571892485022545, + -0.00839949119836092, + 0.062148384749889374, + -0.008849376812577248, + 0.04384444281458855, + 0.03566991537809372, + 0.0024400348775088787, + -0.03630480915307999, + 0.0849323719739914, + -0.006961675360798836, + -0.10396862030029297, + -0.0029468426946550608, + -0.0351443737745285, + 0.09099394083023071, + -0.006552574224770069, + -0.1069304570555687, + -0.08581400662660599, + 0.0926026999950409, + 0.0021698991768062115, + -0.040801286697387695, + 0.04212115705013275, + -0.09949377924203873, + -0.054385874420404434, + -0.05230827257037163, + -0.017127428203821182, + -0.05578291043639183, + 0.02471359632909298, + -0.06383969634771347, + -0.07276935130357742, + 0.0031276249792426825, + 0.01071522943675518, + -0.0871461033821106, + -0.02422379143536091, + -0.04798240587115288, + -0.07863517850637436, + 0.023336395621299744, + 0.053626738488674164, + 0.021148787811398506, + -0.018748683854937553, + 0.005423358641564846, + 0.04154874011874199, + 0.03542889654636383, + 0.09384568780660629, + -0.02947971597313881, + -0.054003167897462845, + -0.011827073059976101, + -0.02726830542087555, + -0.06406351923942566, + 0.027591466903686523, + 0.029719142243266106, + 0.02041562832891941, + -0.016431909054517746, + 0.028327148407697678, + 0.042941220104694366, + -0.045692749321460724, + -0.029535891488194466, + 0.038588739931583405, + -0.007292690221220255, + -0.0659090057015419, + 0.07191634923219681, + -0.03471238911151886, + -0.051154717803001404, + 0.0545971654355526, + 0.04762137308716774, + -0.0003549730754457414, + -0.08416491001844406, + 0.037728190422058105, + 0.004162720404565334, + -4.539858365211525e-33, + -0.0321570560336113, + -0.009518328122794628, + -0.017401307821273804, + 0.13222208619117737, + 0.04975859820842743, + -0.040436044335365295, + -0.009700015187263489, + -0.005424112547188997, + -0.04667038097977638, + -0.03175303339958191, + 0.017121823504567146, + -0.010545345954596996, + -0.04061291739344597, + 0.003896266222000122, + 0.0662127435207367, + 0.006379466038197279, + 0.028702763840556145, + -0.02654149942100048, + -0.029471730813384056, + -0.08446793258190155, + -0.05229143798351288, + 0.05719772353768349, + 0.006647185888141394, + 0.059452351182699203, + -0.10223844647407532, + -0.04312928020954132, + 0.05780614912509918, + 0.049922969192266464, + 0.019017860293388367, + 0.005643154494464397, + 0.030199384316802025, + 0.061156198382377625, + 0.024533651769161224, + 0.032612357288599014, + 0.002349030924960971, + 0.007815440185368061, + -0.04732218384742737, + -0.024548901244997978, + 0.031260211020708084, + -0.009034554474055767, + -0.01925721764564514, + 0.024869726970791817, + 0.05840793997049332, + 0.08681988716125488, + -0.022545715793967247, + 0.04416053369641304, + -0.07027976214885712, + -0.022025763988494873, + 0.0012292185565456748, + 0.022333163768053055, + -0.04909157380461693, + -0.05385158956050873, + 0.014947819523513317, + 0.04745945706963539, + -0.11893941462039948, + 0.0029013282619416714, + -0.038678109645843506, + 0.003969538025557995, + 0.04060949757695198, + -0.04306669160723686, + 0.033802688121795654, + 0.021952800452709198, + 0.036467231810092926, + -0.08987104892730713, + -0.007812489289790392, + 0.024159561842679977, + -0.040972091257572174, + -0.01625770330429077, + 0.09995870292186737, + -0.0052635446190834045, + -0.007498470600694418, + 0.08446431159973145, + 0.06790758669376373, + 0.010873849503695965, + 0.0638531967997551, + 0.04751338064670563, + 0.01647951267659664, + -0.010476277209818363, + 0.06687578558921814, + -0.01994030922651291, + -0.07910808175802231, + -0.033166587352752686, + 0.007955688051879406, + 0.213900625705719, + 0.05522049963474274, + -0.07675833255052567, + 0.02901783026754856, + -0.08591469377279282, + 0.0019112767186015844, + 0.060379140079021454, + -0.13090746104717255, + 0.003937053959816694, + 0.03549864515662193, + -0.08449897170066833, + -0.053539760410785675, + 9.731352942156347e-34, + 0.1139899343252182, + -0.0995580330491066, + 0.010890321806073189, + -0.019547799602150917, + -0.01613311469554901, + -0.0328964926302433, + -0.004984208848327398, + -0.018976962193846703, + 0.018585527315735817, + -0.04249313473701477, + -0.04423799738287926, + 0.017864681780338287, + 0.03281812742352486, + -0.023367563262581825, + -0.05291487276554108, + 0.07548488676548004, + 0.07648050785064697, + 0.12058787047863007, + 0.006655896548181772, + -0.01143939420580864, + -0.0733289122581482, + 0.016116928309202194, + -0.05761357769370079, + 0.03562726452946663, + -0.009325986728072166, + -0.01416059210896492, + 0.07369612157344818, + -0.07226455211639404, + -0.08137999475002289, + -0.04733620584011078, + 0.05587775632739067, + -0.051456812769174576, + 0.03093566745519638, + -0.00983421504497528, + -0.0803934782743454, + 0.07323051989078522, + 0.052711304277181625, + -0.14659613370895386, + -0.05020957067608833, + -0.016224266961216927, + 0.04619129002094269, + -0.036178115755319595, + 0.003206939436495304, + 0.04500822350382805, + 0.04081804305315018, + 0.014969661831855774, + -0.11526282876729965, + -0.035731688141822815, + -0.012004949152469635, + 0.08151941001415253, + 0.07704854011535645, + -0.03542417660355568, + -0.07009950280189514, + 0.054021988064050674, + -0.029960965737700462, + -0.06470901519060135, + 0.01857873424887657, + -0.04328493773937225, + -0.07134126871824265, + 0.038731735199689865, + -0.018223248422145844, + 0.12856179475784302, + -0.02353360876441002, + -0.0019099032506346703, + 0.02638247236609459, + -0.08755430579185486, + -0.0184126365929842, + 0.00662650354206562, + 0.009481579065322876, + -0.04328214377164841, + 0.056168705224990845, + -0.038146547973155975, + 0.011582587845623493, + 0.08121218532323837, + -0.027289772406220436, + -0.042537789791822433, + 0.03395391255617142, + 0.03118130750954151, + 0.03064982406795025, + 0.03427978977560997, + -0.0005450998432934284, + -0.0015447440091520548, + -0.048767510801553726, + 0.08977529406547546, + 0.011927559971809387, + -0.004173003137111664, + 0.09134316444396973, + 0.012816660106182098, + -0.03700312227010727, + -0.04066243767738342, + 0.032671377062797546, + -0.014004495926201344, + -0.06409754604101181, + -0.02717481553554535, + 0.0255099069327116, + -2.5072631970601833e-08, + 0.01630760170519352, + 0.005930113606154919, + -0.07269736379384995, + 0.08852855861186981, + -0.01439372543245554, + -0.034929294139146805, + 0.037213701754808426, + -0.033677179366350174, + -0.0776589959859848, + -0.013896755874156952, + 0.013028138317167759, + 0.024455588310956955, + 0.0036167718935757875, + -0.030627302825450897, + -0.007987547665834427, + -0.0007713037193752825, + -0.04426277056336403, + 0.07504153251647949, + -0.03675197809934616, + -0.03402438014745712, + -0.01964367739856243, + 0.026116928085684776, + -0.0012690394651144743, + 0.0143445935100317, + -0.01528369914740324, + -0.03921511396765709, + -0.025533784180879593, + -0.012671570293605328, + 0.10158351808786392, + -0.05961338058114052, + 0.0051287636160850525, + 0.05459162965416908, + -0.020199744030833244, + -0.0030490767676383257, + -0.09603606164455414, + 0.002834434388205409, + 0.016246212646365166, + -0.0404437780380249, + -0.049691230058670044, + 0.05227970704436302, + -0.01856669969856739, + -0.11194770783185959, + -0.0514107272028923, + -0.04426831379532814, + -0.025199078023433685, + 0.0030374035704880953, + 0.049766767770051956, + 0.054004769772291183, + -0.011610973626375198, + 0.003365793265402317, + 0.02156190201640129, + 0.11090623587369919, + 0.08631178736686707, + -0.02053728885948658, + -0.011358563788235188, + -0.04445050656795502, + -0.05594170093536377, + -0.00922404881566763, + 0.03351413831114769, + -0.03775162249803543, + 0.15607844293117523, + 0.010969184339046478, + 0.015649424865841866, + 0.021424101665616035 + ], + "bread-bold||*new*,food,meal,bakery,sandwich,gluten,loaf,toast,slice": [ + 0.008008254691958427, + -0.025610487908124924, + -0.030142419040203094, + 0.03177831694483757, + -0.0551600381731987, + 0.016520975157618523, + 0.04461963102221489, + -0.03583364561200142, + -0.017019547522068024, + 0.01820921152830124, + 0.07878296822309494, + -0.05292896181344986, + -0.013618536293506622, + -0.0764484852552414, + -0.02959493361413479, + -0.040405139327049255, + 0.10313490778207779, + 0.010743184015154839, + -0.021769315004348755, + -0.022988418117165565, + 0.07885078340768814, + 0.09182815253734589, + 0.0371285155415535, + 0.04210687056183815, + 0.06893431395292282, + 0.025295095518231392, + 0.04189223423600197, + -0.06478608399629593, + -0.02095353789627552, + -0.09114468097686768, + -0.030701735988259315, + 0.024189962074160576, + 0.14752498269081116, + 0.0036007543094456196, + 0.08745580166578293, + -0.020761603489518166, + 0.06737300008535385, + -0.04051206633448601, + 0.08214220404624939, + 0.022366687655448914, + 0.0034125682432204485, + -0.09255697578191757, + -0.011483821086585522, + 0.0011377620976418257, + -0.007489247713238001, + 0.007257807068526745, + -0.018838267773389816, + -0.0008893110789358616, + 0.0021602348424494267, + 0.014224350452423096, + -0.030651550740003586, + -0.07892539352178574, + -0.11685009300708771, + -0.028214776888489723, + 0.060801006853580475, + 0.018435334786772728, + -0.09337412565946579, + -0.04473317041993141, + 0.00021320585801731795, + 0.051517680287361145, + -0.045774057507514954, + 0.009397909976541996, + 0.009471166878938675, + 0.044147104024887085, + 0.024054205045104027, + -0.055894382297992706, + -0.0048491391353309155, + 0.01911407895386219, + -0.0394391193985939, + 0.052934952080249786, + -0.028208201751112938, + 0.05612127482891083, + 0.049797285348176956, + -0.021404428407549858, + -0.06713481992483139, + -0.019699569791555405, + 0.07046817243099213, + -0.06587566435337067, + -0.007629512343555689, + -0.06207699328660965, + -0.07987456768751144, + -0.0111113665625453, + -0.01785358041524887, + 0.036519184708595276, + -0.001250870293006301, + -0.014057463966310024, + -0.07222220301628113, + 0.0009801032720133662, + -0.03331669420003891, + -0.061444710940122604, + -0.06795854866504669, + -0.09684482961893082, + 0.001497157965786755, + 0.07896007597446442, + -0.10244452953338623, + -0.02691643312573433, + 0.001128113130107522, + -0.0931687280535698, + -0.015761764720082283, + 0.042192570865154266, + -0.0027662538923323154, + 0.031593356281518936, + 0.12387953698635101, + 4.192932465230115e-05, + -0.04341515526175499, + -0.02357586659491062, + -0.045608315616846085, + -0.026275042444467545, + 0.024690117686986923, + 0.0419294536113739, + 0.0005684144562110305, + -0.02367408573627472, + -0.09154042601585388, + -0.0926724523305893, + -0.08810056746006012, + -0.04444438964128494, + -0.014165124855935574, + -0.12142043560743332, + 0.048194289207458496, + 0.07664356380701065, + -0.01719856634736061, + 0.005561883561313152, + 0.012226573191583157, + 0.004804970696568489, + -0.09508667141199112, + -0.009559154510498047, + 0.06748561561107635, + -2.243952043149536e-33, + -0.02905070036649704, + 0.060730841010808945, + 0.003338003531098366, + 0.07729876041412354, + -0.006589217577129602, + -0.0009487889474257827, + -0.03984075039625168, + -0.03662412613630295, + -0.048226650804281235, + 0.00852226186543703, + 0.0027949102222919464, + 0.040995288640260696, + 0.007573185488581657, + 0.14756523072719574, + 0.010672014206647873, + 0.019811877980828285, + -0.01532620470970869, + -0.03796634078025818, + -0.03809491544961929, + -0.0026556160300970078, + -0.0988142192363739, + 0.14303933084011078, + 0.01427075732499361, + -0.037625353783369064, + -0.028033437207341194, + -0.06807722896337509, + 0.0354936458170414, + -0.08284015953540802, + -0.08602473139762878, + 0.01849617250263691, + 0.14230163395404816, + -0.00658783782273531, + 0.028205957263708115, + 0.004857415333390236, + -0.015040053054690361, + 0.05207540839910507, + -0.03211112692952156, + -0.010500555858016014, + 0.009249999187886715, + 0.031959354877471924, + -0.0862111821770668, + -0.03569555655121803, + 0.006723430473357439, + 0.011265152134001255, + 0.05000673606991768, + 0.06880083680152893, + 0.0025240126997232437, + -0.008810040540993214, + -0.0024589940439909697, + 0.04648182913661003, + 0.062391676008701324, + -0.05342577397823334, + 0.018870672211050987, + 0.04239042103290558, + -0.010813873261213303, + -0.013390510343015194, + -0.0003311144537292421, + 0.10149195790290833, + 0.038467854261398315, + 0.036251362413167953, + 0.04099833592772484, + 0.061327818781137466, + 0.020119477063417435, + 0.009810181334614754, + -0.04723519831895828, + 0.05497501790523529, + -0.05272804573178291, + -0.011644797399640083, + 0.027459681034088135, + 0.07331541925668716, + 0.006508595775812864, + -0.014147012494504452, + 0.06725110113620758, + 0.07414596527814865, + -0.005120059009641409, + 0.01462645921856165, + 0.004359534475952387, + 0.040030937641859055, + -0.01549050584435463, + -0.05509704351425171, + 0.04221609607338905, + -0.03887229040265083, + -0.06420524418354034, + 0.027977220714092255, + -0.13478884100914001, + 0.12688566744327545, + 0.0028775567188858986, + -0.0689554288983345, + 0.046463217586278915, + 0.05988451838493347, + -0.12441141903400421, + 0.01655478961765766, + 0.011946271173655987, + -0.04344537481665611, + -0.04643804207444191, + -1.586842803187208e-33, + 0.0744185745716095, + 0.017314067110419273, + -0.05631156265735626, + 0.003479785518720746, + -0.04658601060509682, + -0.017327584326267242, + 0.04276072978973389, + -0.03312911093235016, + -0.026623928919434547, + -0.0020715571008622646, + 0.007530463859438896, + -0.0023754488211125135, + -0.019623488187789917, + -0.06504017114639282, + -0.0030486355535686016, + 0.043261826038360596, + -0.01751381903886795, + 0.07960207015275955, + 0.0004407941596582532, + 0.012935834936797619, + -0.08209914714097977, + -0.003097350476309657, + -0.056091051548719406, + 0.061939533799886703, + 0.03958050161600113, + 0.014691222459077835, + 0.06337001919746399, + 0.05078398436307907, + -0.0456412136554718, + -0.08723318576812744, + -0.03594929352402687, + -0.09183705598115921, + 0.06927604228258133, + 0.04416267201304436, + -0.05826324597001076, + 0.09417351335287094, + -0.015120494179427624, + -0.015496966429054737, + -0.014718337915837765, + -0.01907348819077015, + -0.054967064410448074, + 0.012822364456951618, + 0.09957726299762726, + 0.07007297873497009, + -0.04022427648305893, + 0.0024673643056303263, + -0.023690933361649513, + -0.07267000526189804, + -0.07098264992237091, + 0.08675375580787659, + 0.0233822762966156, + -0.008880826644599438, + -0.03019876778125763, + -0.018329262733459473, + -0.03228302672505379, + 0.05163262411952019, + -0.09729970991611481, + -0.027611467987298965, + -0.03954031318426132, + -0.0026184695307165384, + -0.023563247174024582, + 0.04691630229353905, + 0.05652102828025818, + 0.03447934240102768, + 0.11307531595230103, + -0.10984285920858383, + -0.030023127794265747, + -0.07510360330343246, + 0.02931070700287819, + 0.029221804812550545, + -0.012159128673374653, + 0.012440947815775871, + -0.00654221884906292, + -0.003021735232323408, + -0.010013088583946228, + -0.0243630763143301, + -0.032508913427591324, + -0.06669318675994873, + -0.08291145414113998, + -0.025922246277332306, + -0.01425872277468443, + -0.09255196154117584, + -0.0157102569937706, + 0.0800447091460228, + -0.020433058962225914, + 0.044833794236183167, + 0.01946486160159111, + 0.034001726657152176, + 0.036013007164001465, + 0.0058558350428938866, + -0.01584465615451336, + 0.043511468917131424, + 0.008050637319684029, + 0.0005714683211408556, + -0.01370834931731224, + -2.3101341284359478e-08, + 0.0760861188173294, + -0.068941630423069, + -0.06384941190481186, + 0.04262709990143776, + 0.036305125802755356, + -0.0706505998969078, + -0.02093443274497986, + -0.11186572164297104, + -0.03667259216308594, + 0.04092435911297798, + -0.02669023908674717, + 0.10141219198703766, + -0.06176549196243286, + 0.004472171887755394, + -0.02535891719162464, + 0.002733297646045685, + -0.025247488170862198, + 0.027070127427577972, + -0.014460873790085316, + 0.02455134503543377, + -0.056105565279722214, + 0.07300250232219696, + -0.004954560659825802, + -0.021130701526999474, + 0.02892165072262287, + 0.051904428750276566, + -0.025149809196591377, + -0.006473133806139231, + 0.10659913718700409, + 0.030184978619217873, + 0.09393409639596939, + 0.08513903617858887, + 0.006183027755469084, + 0.001120066037401557, + -0.07913365215063095, + 0.0023822516668587923, + -0.06463722884654999, + 0.022387240082025528, + -0.043834760785102844, + 0.039638448506593704, + 0.024247480556368828, + 0.0024773860350251198, + 0.009451665915548801, + -0.013926524668931961, + -0.06140609458088875, + -0.038847941905260086, + -0.01820443943142891, + 0.010585823096334934, + -0.0049856072291731834, + -0.04241575300693512, + -0.02064543217420578, + 0.05919383093714714, + 0.017403513193130493, + 0.04918790981173515, + -0.05560149997472763, + -0.010627188719809055, + 0.005170072428882122, + -0.008289958350360394, + 0.067221999168396, + 0.012989971786737442, + 0.09938113391399384, + -0.0537056066095829, + 0.0012367808958515525, + -0.008302093483507633 + ], + "bridge-bold||travel,transportation,infrastucture": [ + -0.007346381898969412, + 0.024187346920371056, + 0.0039623635821044445, + 0.030140547081828117, + 0.0028689848259091377, + -0.04126451537013054, + 0.05984095484018326, + 0.05260879918932915, + -0.04949579015374184, + -0.01633666828274727, + -0.0357511080801487, + -0.004315807484090328, + 0.029270663857460022, + 0.03599482402205467, + -0.09164517372846603, + 0.08779516071081161, + 0.0249833595007658, + 0.028264665976166725, + -0.016822172328829765, + 0.0804920494556427, + -0.023558013141155243, + 0.006317544262856245, + -0.015042795799672604, + 0.012959503568708897, + 0.023723963648080826, + 0.014952999539673328, + 0.06627942621707916, + 0.015238494612276554, + 0.009459749795496464, + -0.08524804562330246, + -0.0675702691078186, + 0.03779445216059685, + -0.04248874634504318, + 0.013509562239050865, + -0.0047799376770854, + 0.0694761872291565, + 0.0031691123731434345, + 0.0009406421449966729, + 0.05548004433512688, + -0.050460487604141235, + -0.029651038348674774, + -0.0066282181069254875, + 0.07019764930009842, + 0.03501642867922783, + 0.00379843357950449, + 0.023109761998057365, + -0.019515808671712875, + -0.008302928879857063, + -0.004412110894918442, + 0.027722060680389404, + -0.012198332697153091, + -0.03443341329693794, + -0.012920462526381016, + 0.02985725738108158, + -0.026995180174708366, + 0.04036829620599747, + -0.09816882014274597, + -0.026657985523343086, + 0.05102221667766571, + 0.031174374744296074, + 0.05563002824783325, + 0.0016807998763397336, + -0.0006813523941673338, + 0.06268257647752762, + -0.014401989057660103, + -0.00635526655241847, + -0.0005501696141436696, + 0.05827876180410385, + -0.11680524051189423, + 0.010753674432635307, + 0.06774087995290756, + 0.0173342302441597, + -0.011553785763680935, + -0.0003395759267732501, + 0.10120704770088196, + -0.0795232355594635, + 0.028068795800209045, + 0.052891019731760025, + -0.024405622854828835, + -0.0041230288334190845, + -0.06376276165246964, + -0.09492328763008118, + -0.12412840127944946, + 0.008308647200465202, + 0.014359069056808949, + -0.018088718876242638, + -0.06731956452131271, + -0.0229483712464571, + 0.0011614470276981592, + 0.03197833150625229, + -0.012371922843158245, + -0.00971441064029932, + -0.04401495307683945, + 0.002563602989539504, + -0.031127598136663437, + -0.005460131913423538, + -0.059505242854356766, + 0.029088739305734634, + 0.02317943051457405, + 0.08951988816261292, + 0.062571682035923, + 0.08166781812906265, + 0.04399261996150017, + 0.04568982124328613, + -0.009883132763206959, + -0.01798701100051403, + 0.027168717235326767, + 0.05407695099711418, + 0.040774326771497726, + 0.03242165967822075, + 0.024813372641801834, + -0.10563582926988602, + 0.03039109893143177, + -0.041280314326286316, + -0.07237944006919861, + -0.030605293810367584, + -0.03255714848637581, + -0.035585757344961166, + 0.08628331869840622, + 0.011649415828287601, + 0.03210559859871864, + 0.00335706677287817, + 0.021409012377262115, + 0.005110803060233593, + -0.10431429743766785, + -0.0005992268561385572, + 0.07283987104892731, + -1.3648581337096076e-33, + -0.08043074607849121, + 0.032624658197164536, + -0.019052594900131226, + 0.10147693753242493, + 0.033184442669153214, + 0.0052336473017930984, + -0.11137690395116806, + -0.020741170272231102, + -0.02278720587491989, + -0.001609180704690516, + -0.002425476675853133, + 0.10679719597101212, + 0.01634182780981064, + -0.020099284127354622, + 0.04490211233496666, + -0.06137394532561302, + -0.012907899916172028, + -0.05119987204670906, + -0.08221752196550369, + -0.01179557479918003, + -0.01362826768308878, + 0.016928622499108315, + -0.003180515253916383, + -0.03013112023472786, + -0.02620878256857395, + -0.07068898528814316, + 0.06037328764796257, + -0.050585199147462845, + -0.008712338283658028, + 0.04591396078467369, + -0.05482948571443558, + 0.0884718969464302, + -0.00047382127377204597, + 0.01769261620938778, + -0.05213497579097748, + 0.0366445854306221, + -0.02423369139432907, + -0.054232705384492874, + -0.06792137026786804, + 0.02075854316353798, + -0.06992483884096146, + -0.08620034903287888, + -0.037223756313323975, + 0.023176411166787148, + 0.020037682726979256, + 0.05697368085384369, + 0.03218640759587288, + -0.01652355119585991, + -0.012736363336443901, + 0.12101655453443527, + -0.07038678228855133, + -0.00877633597701788, + -0.07487089931964874, + -0.023438580334186554, + -0.012507679872214794, + 0.023391814902424812, + -0.037225570529699326, + 0.044059932231903076, + 0.016941942274570465, + -0.018488438799977303, + -0.08491470664739609, + 0.01317635364830494, + 0.081850565969944, + -0.005506242159754038, + 0.02295602113008499, + 0.028297485783696175, + -0.06591155380010605, + -0.0013630235334858298, + 0.0068901232443749905, + -0.040094029158353806, + -0.016665445640683174, + 0.0018092910759150982, + -0.024801364168524742, + 0.13529951870441437, + -0.005636436864733696, + 0.057036686688661575, + -0.06472999602556229, + 0.046641331166028976, + 0.07806403189897537, + -0.016645492985844612, + -0.20080062747001648, + 0.08271097391843796, + -0.03133608028292656, + 0.11204294115304947, + 0.11713273078203201, + -0.028258487582206726, + 0.03907765448093414, + -0.11867133527994156, + -0.038918133825063705, + 0.07414219528436661, + -0.11357323825359344, + -0.0036303417291492224, + -0.022740881890058517, + -0.011114979162812233, + 0.014518518932163715, + -6.948932558998549e-34, + 0.05663742497563362, + 0.07388968020677567, + -0.015465269796550274, + -0.051896825432777405, + 0.02225954644382, + 0.019343309104442596, + 0.05729342997074127, + 0.0004902262007817626, + 0.010077152401208878, + 0.06760767847299576, + -0.030223673209547997, + 0.0274270698428154, + -0.023456836119294167, + -0.03387974575161934, + 0.027248337864875793, + -0.08402568846940994, + 0.17672422528266907, + -0.013942855410277843, + -0.08646094053983688, + 0.07348483800888062, + 0.024997951462864876, + 0.04142661392688751, + -0.13371099531650543, + 0.006506679113954306, + -0.02404775097966194, + 0.08424040675163269, + 0.013932127505540848, + -0.060163844376802444, + -0.045508746057748795, + -0.021249543875455856, + -0.07250848412513733, + -0.002569567644968629, + 0.05344409495592117, + 0.01985805109143257, + -0.05434703826904297, + 0.11020302772521973, + 0.06715241819620132, + 0.018698537722229958, + -0.016703829169273376, + -0.04872428998351097, + 0.04630502313375473, + 0.01889222115278244, + 0.023947961628437042, + 0.003598542418330908, + -0.026154672726988792, + -0.03193875402212143, + -0.08519644290208817, + -0.0644676610827446, + -0.038289736956357956, + 0.049160148948431015, + 0.002693129237741232, + 0.048705730587244034, + 0.03191079944372177, + -0.02544882334768772, + 0.000643670093268156, + -0.042178675532341, + -0.003900755662471056, + 0.0013920298079028726, + -0.05744297057390213, + 0.048605963587760925, + 0.01532770600169897, + 0.054410357028245926, + -0.030465811491012573, + 0.008312429301440716, + 0.019444994628429413, + -0.06851785629987717, + -0.03797367215156555, + -0.11485479027032852, + -0.03377114608883858, + 0.016952166333794594, + -0.014891943894326687, + 0.018927304074168205, + -0.009382503107190132, + 0.030070317909121513, + 0.06175718083977699, + -0.10608886927366257, + 0.10139768570661545, + 0.07899491488933563, + 0.042812250554561615, + -0.012477883137762547, + -0.03623851016163826, + -0.036416422575712204, + 0.033352773636579514, + 0.042495884001255035, + -0.021568281576037407, + -0.06470517814159393, + -0.037956662476062775, + -0.046669550240039825, + 0.06329840421676636, + 0.01996329054236412, + -0.013540426269173622, + 0.03788694366812706, + -0.0950649157166481, + -0.06380415707826614, + -0.03192007169127464, + -2.1399634064778184e-08, + -0.019612014293670654, + -0.003242921084165573, + -0.08620134741067886, + -0.0785750150680542, + -0.06783390045166016, + -0.0075623830780386925, + -0.005281469319015741, + -0.004132421221584082, + -0.10614103078842163, + -0.01873677223920822, + 0.05835697427392006, + 0.08240896463394165, + -0.027874702587723732, + 0.03433004394173622, + -0.03957992047071457, + 0.009311756119132042, + -0.02964254841208458, + -0.018374722450971603, + -0.0877520740032196, + -0.0626068189740181, + -0.018863463774323463, + 0.0005973987863399088, + -0.003348772879689932, + 0.034232061356306076, + 0.008960721082985401, + -0.021679555997252464, + -0.079639732837677, + -0.058620281517505646, + 0.06831110268831253, + 0.008179990574717522, + 0.000990251312032342, + 0.09011916816234589, + -0.002240873873233795, + -0.00637183990329504, + -0.023459093645215034, + -0.025614997372031212, + 0.026234615594148636, + 0.01001285482198, + 0.008339950814843178, + 0.10052502155303955, + -0.059068385511636734, + 0.05500129982829094, + 0.005936612840741873, + -0.0050547923892736435, + 0.062105823308229446, + 0.054955385625362396, + -0.016833150759339333, + 0.03790063410997391, + -0.07584487646818161, + -0.01769048161804676, + -0.059797268360853195, + 0.01586785353720188, + 0.03657064959406853, + 0.07474637776613235, + -0.0066449022851884365, + 0.009906417690217495, + 0.06566169857978821, + 0.0014346466632559896, + -0.07294856756925583, + 0.002116651041433215, + 0.05279328674077988, + 0.0562017485499382, + 0.043870098888874054, + 0.023636432364583015 + ], + "briefcase-bold||suitcase,valise,baggage,folders,portfolio": [ + 0.02465183287858963, + 0.03067217953503132, + -0.08160840719938278, + 0.06292209029197693, + 0.06860639154911041, + 0.00724423211067915, + 0.09364251792430878, + 0.0041021183133125305, + 0.04194209724664688, + -0.03333482891321182, + 0.018225962296128273, + 0.07245402783155441, + 0.03920905292034149, + 0.008530262857675552, + -0.03570713475346565, + 0.03044227696955204, + 0.03812110424041748, + 0.026576241478323936, + -0.10376576334238052, + 0.07001431286334991, + -0.053442176431417465, + 0.014972791075706482, + 0.03645237535238266, + -0.02288842387497425, + 0.03837515413761139, + 0.028031617403030396, + 0.03786144405603409, + -0.05442706495523453, + 0.009000380523502827, + -0.037370361387729645, + 0.03486363962292671, + -0.023262009024620056, + 0.03149745613336563, + 0.08394281566143036, + 0.08720657974481583, + 0.053511377424001694, + -0.030643677338957787, + -0.002413294743746519, + -0.001032946864143014, + 0.038899119943380356, + -0.03538079559803009, + -0.010343128815293312, + -0.02385259047150612, + 0.056971803307533264, + -0.02644485980272293, + -0.10909539461135864, + -0.01967919059097767, + 0.0043916539289057255, + 0.0017817456973716617, + 0.03584259748458862, + -0.0441998653113842, + -0.10148017853498459, + -0.1419677436351776, + 0.04263586923480034, + -0.08919135481119156, + 0.03787850961089134, + -0.06621753424406052, + -0.007908188737928867, + -0.011305446736514568, + -0.0674392580986023, + 0.026079576462507248, + 0.021240413188934326, + 0.05320899188518524, + 0.01738058216869831, + 0.07315043359994888, + 0.007693631108850241, + 0.011831621639430523, + 0.05553743988275528, + -0.0819886177778244, + 0.03404086083173752, + 0.0859249010682106, + -0.013743082992732525, + -0.09774159640073776, + 0.01647982932627201, + 0.01423749327659607, + -0.007403119467198849, + 0.008164935745298862, + 0.003959063906222582, + -0.0010519592324271798, + -0.044375643134117126, + -0.03630684316158295, + 0.0070160445757210255, + -0.05436191335320473, + 0.003368726233020425, + 0.010191035456955433, + -0.027677474543452263, + -0.045929525047540665, + -0.052097734063863754, + -0.04912668839097023, + -0.0298448596149683, + -0.00028426709468476474, + -0.08375022560358047, + 0.039441607892513275, + 0.06178153678774834, + -0.1271844506263733, + 0.020455608144402504, + 0.03226562589406967, + 0.1118529736995697, + 0.001127295894548297, + 0.017844408750534058, + 0.013536076061427593, + 0.02537667565047741, + 0.06718510389328003, + 0.04668600857257843, + -0.04795214906334877, + -0.010751756839454174, + 0.035783566534519196, + -0.07814327627420425, + -0.039316076785326004, + -0.013391280546784401, + -0.04717683419585228, + -0.009708831086754799, + -0.019896702840924263, + -0.10071917623281479, + -0.04799296706914902, + 0.010813896544277668, + -0.05094807967543602, + 0.0948830246925354, + 0.03431955724954605, + 0.07812798768281937, + 0.03916938602924347, + -0.010879925452172756, + 0.041499871760606766, + -0.033826276659965515, + -0.08199805021286011, + -0.0240633524954319, + 0.018288837745785713, + -1.7303517453104006e-33, + -0.03498262166976929, + 0.029114479199051857, + -0.023360464721918106, + 0.17971301078796387, + -0.004372414667159319, + -0.04915545508265495, + -0.021389391273260117, + -0.014852667227387428, + -0.07580894976854324, + 0.07128465920686722, + 0.017484191805124283, + 0.09441540390253067, + -0.0362558513879776, + 0.04232662543654442, + 0.019296692684292793, + -0.025026537477970123, + -0.0035911849699914455, + 0.026449160650372505, + 0.021767765283584595, + -0.06353094428777695, + -0.059518441557884216, + -0.03428567945957184, + -0.011873234994709492, + -0.07814103364944458, + 0.01883336342871189, + 0.018966026604175568, + 0.06730794161558151, + -0.03717412054538727, + -0.030006570741534233, + 0.05050553381443024, + -0.027049489319324493, + 0.04552847519516945, + 0.017157696187496185, + 0.023239603266119957, + -0.06809231638908386, + 0.055284518748521805, + -0.07363635301589966, + -0.004844665993005037, + 0.04598964750766754, + 0.06446046382188797, + -0.07770857214927673, + -0.055349137634038925, + -0.023210100829601288, + -0.004778495989739895, + -0.01067410409450531, + 0.06865881383419037, + 0.05869734659790993, + -0.0058503178879618645, + 0.01518313866108656, + -0.006928668823093176, + -0.026014596223831177, + -0.05002677068114281, + 0.01292400248348713, + 0.01765490509569645, + 0.003098178654909134, + -0.024264013394713402, + -0.008743491023778915, + 0.039630815386772156, + 0.020318152382969856, + -0.020575135946273804, + 0.09183944761753082, + 0.06149196997284889, + 0.023682625964283943, + 0.02679302729666233, + 0.007330466527491808, + 0.04735606163740158, + -0.010997666046023369, + -0.025653138756752014, + 0.10617158561944962, + 0.005388663616031408, + -0.07577621936798096, + 0.10371029376983643, + 0.10299044847488403, + 0.034774478524923325, + 0.024199655279517174, + 0.007690433878451586, + 0.020417794585227966, + 0.00045305464300327003, + -0.020495397970080376, + -0.11421423405408859, + -0.15191638469696045, + -0.026008155196905136, + 0.016089394688606262, + 0.13230209052562714, + -0.020153842866420746, + 0.02210608310997486, + -0.009152580052614212, + -0.021568821743130684, + -0.04448613524436951, + -0.016986235976219177, + -0.08558659255504608, + -0.01040762197226286, + -0.019405530765652657, + -0.08030381798744202, + -0.011057562194764614, + 8.321691851455605e-34, + 0.13550713658332825, + -0.010844830423593521, + -0.03732398897409439, + -0.033086977899074554, + 0.037924874573946, + -0.0306252334266901, + -0.04886207729578018, + 3.9107409975258633e-05, + -0.06843175739049911, + 0.04880822077393532, + -0.025195924565196037, + -0.12065053731203079, + -0.019977841526269913, + -0.01534611638635397, + 0.0361395925283432, + 0.015984147787094116, + 0.016095660626888275, + -0.03396818786859512, + -0.03744746744632721, + -0.025807853788137436, + -0.03474976867437363, + -0.04357002303004265, + -0.026473678648471832, + 0.07294382154941559, + -0.04544064402580261, + 0.017109770327806473, + -0.02152850106358528, + -0.08234768360853195, + 0.0013698789989575744, + 0.058221083134412766, + -0.032139118760824203, + -0.024990223348140717, + 0.028326386585831642, + 0.057345788925886154, + -0.07860330492258072, + -0.003911299165338278, + -0.02268816903233528, + -0.03344673663377762, + 0.06909474730491638, + -0.009055664762854576, + -0.014152435585856438, + 0.01042275968939066, + -0.03823006898164749, + 0.05645601823925972, + 0.005310651380568743, + -0.08744063228368759, + 0.00028117760666646063, + -0.02761232852935791, + 0.09623982012271881, + -0.0552380308508873, + 0.08833436667919159, + 0.02977437525987625, + -0.09284844994544983, + 0.026974020525813103, + -0.03758149594068527, + 0.0840105339884758, + -0.06019790470600128, + -0.076077401638031, + 0.060675546526908875, + 0.01701788790524006, + 0.014225088991224766, + 0.1089429259300232, + -0.021155524998903275, + -0.02259860560297966, + -0.019801758229732513, + -0.05807126313447952, + -0.05655141547322273, + 0.004097495228052139, + -0.06512758135795593, + 0.02858823724091053, + 0.03134879469871521, + -0.042322006076574326, + 0.04446781426668167, + 0.03317553550004959, + 0.12042376399040222, + -0.01253667101264, + 0.09839443117380142, + 0.008160685189068317, + 0.08998646587133408, + 0.019633179530501366, + 0.000773620035033673, + -0.014464215375483036, + -0.045135486871004105, + 0.07326952368021011, + 0.01988053135573864, + 0.039369676262140274, + -0.04196994751691818, + -0.011918545700609684, + -0.033359989523887634, + -0.052842382341623306, + 0.031230658292770386, + 0.013538915663957596, + 0.02021890878677368, + 0.0372258760035038, + -0.0327477902173996, + -1.838272289944598e-08, + -0.03639037162065506, + 0.019290758296847343, + -0.019665252417325974, + -0.0014767232351005077, + -0.06909970939159393, + -0.046883370727300644, + -5.6117009080480784e-05, + 0.043839458376169205, + -0.030325593426823616, + 0.04642303287982941, + 0.03599770367145538, + -0.05030997470021248, + -0.17028427124023438, + -0.002945376792922616, + -0.07905050367116928, + 0.04404904693365097, + -0.060007527470588684, + 0.0725506916642189, + -0.03236867114901543, + -0.05373522639274597, + 0.06360656768083572, + 0.06088025122880936, + 0.05174965783953667, + -0.0018091854872182012, + 0.023171700537204742, + 0.040008917450904846, + -0.08849373459815979, + -0.026057574898004532, + 0.08100026845932007, + 0.05899348482489586, + 0.02383057400584221, + 0.037533145397901535, + -0.023681962862610817, + -0.009943855926394463, + -0.08227993547916412, + -0.007409736514091492, + 0.026418611407279968, + -0.006960461847484112, + -0.000876531470566988, + 0.13631953299045563, + -0.02515011839568615, + -0.09482919424772263, + -0.019623691216111183, + -0.012444819323718548, + 0.01711774803698063, + 0.006648859474807978, + 0.01104110386222601, + -0.0031808498315513134, + -0.07617092877626419, + -0.0077866665087640285, + -0.009910793974995613, + -0.08393864333629608, + 0.02936289645731449, + 0.044089917093515396, + 0.031630393117666245, + 0.0012478791177272797, + 0.03038005717098713, + 0.06406763941049576, + -0.024135509505867958, + 0.04005085676908493, + 0.04108615592122078, + -0.011629937216639519, + 0.006025508511811495, + 0.004956637974828482 + ], + "briefcase-metal-bold||suitcase,valise,baggage,folders,portfolio": [ + -7.775030098855495e-05, + 0.05350784584879875, + -0.07014382630586624, + 0.08078943192958832, + 0.060926347970962524, + -0.0139347268268466, + 0.1265326589345932, + 0.0002204224729212001, + 0.015406575985252857, + -0.05342590808868408, + 0.01420508325099945, + 0.05052817985415459, + 0.051221393048763275, + -0.006453080102801323, + -0.04048028215765953, + 0.02134861797094345, + 0.057521648705005646, + 0.02279309742152691, + -0.10470813512802124, + 0.086969293653965, + -0.049076490104198456, + 0.014427517540752888, + 0.03485718369483948, + -0.027903595939278603, + 0.015506017953157425, + 0.07943373918533325, + 0.032933495938777924, + -0.03576133772730827, + -0.0002435861388221383, + -0.02440464496612549, + 0.026153847575187683, + -0.009067922830581665, + 0.018547294661402702, + 0.08565139770507812, + 0.09068835526704788, + 0.04453669488430023, + -0.04415365308523178, + 0.01815962791442871, + -0.03430845960974693, + 0.021334832534193993, + -0.04959618300199509, + -0.002107546664774418, + -0.004598026629537344, + 0.04897588863968849, + -0.03163999319076538, + -0.11770906299352646, + -0.0020035032648593187, + -0.02178485319018364, + -0.012733839452266693, + 0.054929427802562714, + -0.035891953855752945, + -0.10743065923452377, + -0.09653627872467041, + 0.054807402193546295, + -0.07072804868221283, + 0.02649499848484993, + -0.062179964035749435, + -0.013374088332057, + 0.003014808287844062, + -0.08547341823577881, + 0.04308497533202171, + 0.024804746732115746, + 0.03693137317895889, + 0.018548525869846344, + 0.08603936433792114, + 0.018704453483223915, + 0.01881813444197178, + 0.03929022327065468, + -0.09421686083078384, + 0.023790301755070686, + 0.1087164580821991, + -0.013643649406731129, + -0.11129488050937653, + 0.011130144819617271, + 0.021565089002251625, + 0.012572557665407658, + 0.05212739109992981, + -0.028351858258247375, + 0.01509956642985344, + -0.05346493422985077, + -0.042981356382369995, + 0.028367048129439354, + -0.05094916746020317, + -0.029346225783228874, + 0.003472428536042571, + 0.005630845203995705, + -0.04001351073384285, + -0.03727224841713905, + -0.06855500489473343, + -0.007794537115842104, + 0.010967044159770012, + -0.06449930369853973, + 0.003854240057989955, + 0.04520741477608681, + -0.1348402202129364, + 0.027018899098038673, + 0.025539908558130264, + 0.12074876576662064, + -0.0034008168149739504, + 0.04102744907140732, + 0.04247993230819702, + 0.02511962130665779, + 0.05241428688168526, + 0.0456232912838459, + -0.036875318735837936, + -0.034923821687698364, + 0.03623310849070549, + -0.05414937064051628, + -0.05654294043779373, + -0.008225641213357449, + -0.027959395200014114, + -0.01168943103402853, + -0.04365471750497818, + -0.08959122747182846, + -0.04986219108104706, + 0.009641846641898155, + -0.059267036616802216, + 0.08939554542303085, + 0.0300077386200428, + 0.07928633689880371, + 0.03707282617688179, + -0.01369690615683794, + 0.007458430714905262, + -0.03973165899515152, + -0.0634625181555748, + -0.020025821402668953, + 0.009873022325336933, + -2.5672115202577267e-33, + -0.04411591589450836, + 0.014198750257492065, + -0.0019907462410628796, + 0.15142449736595154, + 0.021354231983423233, + -0.06550435721874237, + -0.01442647073417902, + -0.005235646851360798, + -0.06965608894824982, + 0.07982224225997925, + 0.00807162094861269, + 0.09735093265771866, + -0.03529775142669678, + 0.010395427234470844, + 0.014235947281122208, + -0.0605374239385128, + 0.0038814942818135023, + -0.00421349611133337, + 0.043097637593746185, + -0.07856304198503494, + -0.06959128379821777, + -0.006443180609494448, + -0.0014569694176316261, + -0.0861225351691246, + 0.016955208033323288, + 0.02705279551446438, + 0.050936393439769745, + -0.03690046817064285, + -0.021568099036812782, + 0.05221548303961754, + -0.03176531940698624, + 0.056741781532764435, + 0.026521163061261177, + 0.031856976449489594, + -0.05107015371322632, + 0.037742044776678085, + -0.06758914142847061, + -0.020633812993764877, + 0.03837137296795845, + 0.02822224795818329, + -0.09599219262599945, + -0.053067442029714584, + -0.035613201558589935, + 0.024756290018558502, + -0.0008682687184773386, + 0.04722140356898308, + 0.040934350341558456, + 0.001092390390112996, + 0.0035479781217873096, + 0.0025396605487912893, + -0.029007066041231155, + -0.02711775153875351, + 0.025290559977293015, + 0.012571732513606548, + -0.015185357071459293, + -0.024914927780628204, + -0.01373959332704544, + 0.03713734447956085, + 0.036651939153671265, + -0.0074150157161056995, + 0.08773653954267502, + 0.06927844882011414, + 0.039798274636268616, + 0.038874249905347824, + 0.03547808527946472, + 0.04491005465388298, + -0.016652124002575874, + -0.026975061744451523, + 0.08528413623571396, + 0.0055413017980754375, + -0.07337816059589386, + 0.09887273609638214, + 0.1272897720336914, + 0.047434691339731216, + 0.029973061755299568, + 0.023995276540517807, + 0.021841390058398247, + -0.026805000379681587, + 0.011831602081656456, + -0.11361567676067352, + -0.15126940608024597, + -0.017584579065442085, + 0.016128020361065865, + 0.11017642170190811, + -0.020804530009627342, + 0.015138651244342327, + -0.021294405683875084, + -0.04072880744934082, + -0.02356511354446411, + -0.02112583816051483, + -0.0842609703540802, + -0.020207758992910385, + -0.03265688568353653, + -0.07762213051319122, + -0.029108604416251183, + 1.2513163996797136e-33, + 0.1322125941514969, + -0.019290294498205185, + -0.025983981788158417, + -0.035214006900787354, + 0.02010386623442173, + -0.02868211455643177, + -0.069471575319767, + -0.0016216221265494823, + -0.05472218245267868, + 0.059126872569322586, + 0.012046050280332565, + -0.11162526905536652, + -0.007421737536787987, + -0.03250528499484062, + 0.042577967047691345, + 0.016875039786100388, + 0.004863719455897808, + -0.019903961569070816, + -0.026552435010671616, + -0.01850423403084278, + -0.024533390998840332, + -0.039535898715257645, + -0.043358150869607925, + 0.06645248085260391, + -0.049609143286943436, + 0.005349068436771631, + -0.02524244599044323, + -0.08749163895845413, + 0.014621146023273468, + 0.06314318627119064, + -0.02759627252817154, + -0.007751050405204296, + 0.04863264039158821, + 0.04593770578503609, + -0.057378437370061874, + -0.02360306866466999, + 0.003972416277974844, + -0.03513116389513016, + 0.0630827322602272, + -0.008098872378468513, + -0.035131990909576416, + 0.018299562856554985, + -0.041252776980400085, + 0.08314543217420578, + 0.002650763839483261, + -0.0930740088224411, + -0.02474077045917511, + -0.010910550132393837, + 0.10341884195804596, + -0.040661878883838654, + 0.08549478650093079, + 0.00813478883355856, + -0.07095159590244293, + 0.011884136125445366, + -0.040397193282842636, + 0.08799342811107635, + -0.05899672582745552, + -0.08368754386901855, + 0.04111013561487198, + 0.04388684779405594, + 0.015028062276542187, + 0.11980496346950531, + -0.0113265011459589, + -0.02215132862329483, + -0.016594616696238518, + -0.06226770952343941, + -0.04129929468035698, + 0.008318484760820866, + -0.07018742710351944, + 0.022115107625722885, + 0.03726589307188988, + -0.02818053588271141, + 0.034185368567705154, + 0.005948997568339109, + 0.1275084912776947, + -0.03164396435022354, + 0.1145135834813118, + 0.011745167896151543, + 0.07979482412338257, + 0.03853536397218704, + 0.031245335936546326, + 0.0053936876356601715, + -0.03874589130282402, + 0.08021894097328186, + 0.017312685027718544, + 0.036707911640405655, + -0.024313220754265785, + 0.0300432238727808, + -0.0449194461107254, + -0.06717434525489807, + 0.02161804772913456, + -0.013261695392429829, + 0.02216063253581524, + 0.03836190700531006, + -0.03630249574780464, + -1.9526902761413112e-08, + -0.05248787999153137, + 0.0093928137794137, + -0.02653557062149048, + -0.023131994530558586, + -0.07046914100646973, + -0.021656451746821404, + 0.012040418572723866, + 0.00723341153934598, + -0.03674615919589996, + 0.0194005835801363, + 0.039120499044656754, + -0.06357872486114502, + -0.17184196412563324, + -0.02267887070775032, + -0.09196674823760986, + 0.03602156415581703, + -0.07173062115907669, + 0.05735453590750694, + -0.026838138699531555, + -0.05426759645342827, + 0.06645666807889938, + 0.044158000499010086, + 0.08075548708438873, + -0.020661011338233948, + 0.016238555312156677, + 0.04757563769817352, + -0.07866696268320084, + -0.013255232013761997, + 0.05223869904875755, + 0.07118785381317139, + 0.000865483598317951, + 0.025131352245807648, + -0.02715347893536091, + 0.008756858296692371, + -0.06886151432991028, + -0.019044527783989906, + 0.024174565449357033, + -0.0027857425156980753, + 0.0013727765763178468, + 0.1040215715765953, + -0.05165594816207886, + -0.09520351886749268, + -0.017552170902490616, + -0.005306791979819536, + 0.010214956477284431, + 0.01293416041880846, + -0.0006442158482968807, + 0.02195391245186329, + -0.06851492077112198, + -0.035506121814250946, + -0.002327199559658766, + -0.08245400339365005, + 0.02312946692109108, + 0.034726593643426895, + 0.03607799485325813, + 0.026162512600421906, + 0.03742782026529312, + 0.06720779836177826, + -0.042737655341625214, + 0.0327388197183609, + 0.05368372052907944, + -0.020691800862550735, + -0.0012122583575546741, + 0.021161867305636406 + ], + "broadcast-bold||radio,hotspot,wifi,emit": [ + 0.06451834738254547, + -0.050705138593912125, + -0.0723252221941948, + 0.012104541063308716, + 0.06606760621070862, + -0.015690499916672707, + 0.07913776487112045, + -0.05635550990700722, + -0.017610451206564903, + 0.008674919605255127, + 0.015608904883265495, + 0.008285966701805592, + 0.06201258674263954, + -0.015892310068011284, + 0.05554206669330597, + -0.03816482797265053, + 0.05211162567138672, + -0.07528168708086014, + 0.001453475677408278, + -0.08186215907335281, + 0.014019697904586792, + 0.06066107377409935, + -0.028292223811149597, + 0.03469979017972946, + 0.13827908039093018, + -0.0584913045167923, + 0.10090959072113037, + 0.06128277629613876, + -0.019008969888091087, + -0.03714151307940483, + 0.007280596531927586, + -0.02369624748826027, + 0.08519870787858963, + 0.021542048081755638, + 0.036469966173172, + -0.0615045540034771, + -0.05404095724225044, + -0.00160122849047184, + -0.06125727295875549, + 0.05315084382891655, + 0.016801908612251282, + -0.09877008199691772, + 0.0120528070256114, + 0.00014888693112879992, + -0.08345335721969604, + -0.04275951534509659, + -0.06422928720712662, + 0.028800565749406815, + 0.04384100064635277, + -0.05144042894244194, + 0.05882687866687775, + -0.057634543627500534, + -0.08564368635416031, + 0.12824949622154236, + 0.041050780564546585, + -0.054292406886816025, + -0.08819380402565002, + 0.04411143437027931, + 0.07051267474889755, + 0.013684231787919998, + -0.008289409801363945, + -0.008696054108440876, + -0.009526398032903671, + 0.013133620843291283, + 0.031110920011997223, + -0.03067794442176819, + -0.015148041769862175, + 0.0514950193464756, + -0.010460298508405685, + 0.02960078977048397, + -0.0021184745710343122, + 0.06312457472085953, + -0.01319870539009571, + -0.055904217064380646, + -0.005272193346172571, + 0.014824870973825455, + 0.03416406363248825, + 0.0053409249521791935, + -0.03870173916220665, + -0.0040199244394898415, + -0.03832812234759331, + -0.05372562259435654, + -0.06203360855579376, + -0.028643425554037094, + 0.07159963995218277, + 0.002056521363556385, + -0.045973215252161026, + -0.04875364527106285, + -0.023214267566800117, + 0.02490406110882759, + -0.16219644248485565, + 0.028421718627214432, + -0.015404406003654003, + 0.041823405772447586, + -0.0813572108745575, + 0.0524342805147171, + 0.03820585459470749, + -0.06270864605903625, + -0.04303857684135437, + 0.0871460810303688, + 0.05065640062093735, + 0.004454477224498987, + -0.028335340321063995, + -0.013186844065785408, + -0.027692776173353195, + -0.11925926804542542, + 0.000751166429836303, + 0.0532250851392746, + 0.03596000373363495, + 0.03395811468362808, + 0.0030446115415543318, + -0.028745492920279503, + 0.009406529366970062, + -0.04538341984152794, + -0.04613383114337921, + 0.051661305129528046, + 0.026485402137041092, + 0.08715957403182983, + 0.039770860224962234, + 0.00044247679761610925, + -0.05585167557001114, + -0.02000471018254757, + 0.01998782902956009, + 0.02278902195394039, + 0.05203944072127342, + -0.025244802236557007, + 0.07297319173812866, + 9.589171390294621e-34, + 0.03906083106994629, + 0.08271007239818573, + -0.08538120239973068, + 0.1095261350274086, + 0.041302360594272614, + 0.05237685516476631, + -0.05736283212900162, + -0.022653773427009583, + -0.01214266661554575, + 0.026668742299079895, + 0.06374432146549225, + 0.09520675241947174, + -0.017265349626541138, + 0.022841501981019974, + 0.08531980961561203, + -0.06230688467621803, + 0.003368976293131709, + 0.029167573899030685, + -0.0800100788474083, + 0.0404038205742836, + -0.035094402730464935, + -0.038099970668554306, + -0.07154141366481781, + -0.058861467987298965, + 0.07581275701522827, + 0.0025462969206273556, + 0.00804125051945448, + -0.009411897510290146, + -0.028354790061712265, + 0.04763618856668472, + 0.00536760687828064, + 0.006272647529840469, + 0.03882727026939392, + 0.03125566616654396, + -0.009397223591804504, + -0.02150067873299122, + -0.10007474571466446, + -0.031081300228834152, + -0.006586607079952955, + 0.020352907478809357, + -1.5447521946043707e-05, + -0.045006755739450455, + -0.07597100734710693, + -0.05663766711950302, + 0.0863482803106308, + 0.09166467189788818, + -0.024936337023973465, + 0.0025066048838198185, + 0.028141921386122704, + 0.06917408853769302, + -0.027679169550538063, + -0.02632628008723259, + 0.03241599723696709, + -0.03424438089132309, + 0.07861191779375076, + 0.04823074862360954, + -0.019117146730422974, + 0.0641862228512764, + 0.04149594157934189, + -0.010923678986728191, + -0.026603421196341515, + 0.03561945632100105, + 0.01482265256345272, + -0.08175522834062576, + -0.026041215285658836, + 0.00029109447496011853, + -0.032583341002464294, + -0.0026747682131826878, + 0.05201638489961624, + 0.015538634732365608, + -0.01416059024631977, + 0.04928445816040039, + 0.002640790306031704, + 0.036103956401348114, + -0.005921510048210621, + 0.03534374013543129, + -0.01853303425014019, + 0.010559029877185822, + -0.044060979038476944, + 0.015371808782219887, + -0.07175764441490173, + -0.011880802921950817, + -0.059968799352645874, + 0.0377049557864666, + 0.020089277997612953, + -0.00421197060495615, + -0.05542804300785065, + -0.039771124720573425, + -0.07179257273674011, + 0.08211880922317505, + -0.05327188968658447, + 0.10341536998748779, + -0.0867086723446846, + 0.01381727121770382, + -0.08428526669740677, + -1.975697252794182e-33, + -0.031058941036462784, + 0.08334344625473022, + -0.05024285987019539, + -0.08357714861631393, + -0.07960113883018494, + -0.04989872872829437, + -0.007186529226601124, + 0.008604929782450199, + -0.02336644008755684, + 0.031635794788599014, + 0.04398736357688904, + -0.09782734513282776, + -0.09426696598529816, + -0.02865198813378811, + -0.03739820793271065, + -0.01680096983909607, + 0.04327135160565376, + 0.028528910130262375, + 0.015000080689787865, + 0.05702878162264824, + -0.09083995968103409, + 0.028755398467183113, + -0.007324916310608387, + 0.0019487442914396524, + 0.014682142995297909, + 0.009317316114902496, + 0.04363948479294777, + 0.05651351436972618, + -0.06916619837284088, + 0.01994849368929863, + -0.06254418939352036, + -0.0032336555887013674, + 0.018255013972520828, + 0.02811085619032383, + 0.03153502941131592, + 0.13363797962665558, + 0.07281666249036789, + 0.014612999744713306, + 0.0417850986123085, + -0.04236627370119095, + 0.0264894999563694, + 0.03830382972955704, + 0.022851070389151573, + 0.0464637465775013, + -0.059268005192279816, + -0.06559662520885468, + -0.007309929002076387, + 0.01626395620405674, + -0.06662090122699738, + 0.02158425562083721, + 0.06295689195394516, + -0.1254865974187851, + -0.0404004268348217, + 0.07147420197725296, + -0.04794459044933319, + -0.040121305733919144, + 0.02493383176624775, + 0.010557943023741245, + -0.05100448429584503, + 0.003161834320053458, + 0.04795881360769272, + -0.010555809363722801, + -0.006437735632061958, + 0.049451522529125214, + 0.02908828854560852, + -0.06851387768983841, + 0.044116538017988205, + -0.0030033814255148172, + 0.036287445574998856, + 0.04754151403903961, + 0.043612029403448105, + -0.07296730577945709, + 0.0069960602559149265, + 0.02302577719092369, + 0.00771830789744854, + 0.013103977777063847, + 0.04760422930121422, + 0.09482650458812714, + -0.057139068841934204, + 0.003595322370529175, + -0.053898394107818604, + 0.08544617146253586, + -0.0713692232966423, + -0.0286727212369442, + 0.02406403422355652, + 0.057303570210933685, + 0.0325266495347023, + 0.00128709536511451, + -0.0030260258354246616, + 0.010073752142488956, + -0.02188999392092228, + 0.10031231492757797, + -0.02272481843829155, + 0.008483704179525375, + -0.05035259574651718, + -1.9293254993613118e-08, + -0.059493690729141235, + -0.02344123274087906, + -0.04563847929239273, + -0.026350587606430054, + -0.003887725528329611, + -0.059261955320835114, + 0.045582227408885956, + -0.164345383644104, + 0.026725536212325096, + -0.02951318956911564, + -0.07006019353866577, + 0.03611018508672714, + -0.0415508970618248, + 0.0328817293047905, + 0.07860708981752396, + -0.003477242309600115, + -0.10140461474657059, + -0.010082127526402473, + -0.03654736280441284, + -0.009876208379864693, + -0.018956558778882027, + 0.018636208027601242, + 0.023963794112205505, + 0.046649642288684845, + 0.10459752380847931, + 0.05487009137868881, + 0.030166156589984894, + -0.037866633385419846, + 0.09182514995336533, + 0.06333605945110321, + -0.013155322521924973, + 0.021229153499007225, + -0.05926414579153061, + 0.005987214390188456, + -0.12757521867752075, + 0.0255565345287323, + -0.046138644218444824, + -0.0026359143666923046, + -0.007905334234237671, + 0.12789468467235565, + -0.051594506949186325, + -0.06539912521839142, + -0.025887148454785347, + -0.02420991286635399, + -0.04353999346494675, + 0.0320868156850338, + -0.006344579625874758, + 0.02577647753059864, + 0.0017415907932445407, + -0.09240971505641937, + -0.030073923990130424, + -0.028117278590798378, + 0.020266201347112656, + -0.07521529495716095, + -0.04836001992225647, + -0.050881996750831604, + 0.06526967138051987, + -0.028925566002726555, + 0.03944610804319382, + 0.015652503818273544, + 0.06014222279191017, + 0.056703753769397736, + -0.05627622455358505, + 0.030472323298454285 + ], + "broom-bold||sweeping,cleaning": [ + -0.04635288193821907, + 0.027864836156368256, + 0.029141070321202278, + -0.01376417651772499, + -0.018666623160243034, + -0.06552300602197647, + 0.054477524012327194, + -0.07423889636993408, + -0.029244231060147285, + 0.045370928943157196, + -0.011577794328331947, + 0.028974240645766258, + 0.017577078193426132, + -0.0145141975954175, + -0.07993908226490021, + 0.038536153733730316, + -0.07171688228845596, + 0.08985830098390579, + -0.060761645436286926, + 0.01690424047410488, + 0.024595269933342934, + 0.08961531519889832, + 0.025138910859823227, + 0.011404698714613914, + 0.01588522270321846, + 0.053450170904397964, + 0.013436293229460716, + -0.041323546320199966, + 0.019623689353466034, + -0.06681028753519058, + 0.05919239670038223, + 0.015575897879898548, + 0.04824276641011238, + -0.016362877562642097, + 0.030337492004036903, + 0.034156206995248795, + -0.05767820030450821, + -0.018862292170524597, + 0.05299287289381027, + 0.033397939056158066, + 0.049774426966905594, + -0.04468406364321709, + -0.06516958028078079, + -0.028199685737490654, + -0.028361737728118896, + -0.025314936414361, + -0.020165160298347473, + -0.0480966754257679, + 0.004619321320205927, + -0.011071846820414066, + -0.030776865780353546, + -0.07254645228385925, + -0.08279414474964142, + 0.06322706490755081, + -0.036968689411878586, + 0.0481158010661602, + 0.013270866125822067, + -0.06708533316850662, + 0.06619982421398163, + 0.0055417586117982864, + -0.02264837548136711, + 0.003274677786976099, + 0.0001818345335777849, + 0.08944486081600189, + -0.02103142999112606, + 0.01221421267837286, + 0.006657185032963753, + 0.009084394201636314, + -0.10046465694904327, + 0.05382063612341881, + -0.008793237619102001, + 0.022436968982219696, + -0.045677632093429565, + 0.01627700962126255, + 0.004942995961755514, + -0.009122945368289948, + 0.042189810425043106, + -0.01997217908501625, + -0.07550306618213654, + -0.05901387706398964, + -0.07430025935173035, + -0.11616235226392746, + -0.04588343948125839, + 0.024402564391493797, + 0.07415542006492615, + 0.06707438081502914, + -0.06585261970758438, + -0.09050679206848145, + 0.0416690967977047, + -0.019048815593123436, + -0.07995946705341339, + 0.014592844992876053, + 0.005030702333897352, + 0.007107951212674379, + -0.10810050368309021, + 0.012307889759540558, + 0.08430634438991547, + 0.024618007242679596, + -0.04856327921152115, + 0.11980348825454712, + -0.04251621663570404, + 0.03959851339459419, + 0.025276346132159233, + -0.035562627017498016, + -0.0053370073437690735, + 0.02239452861249447, + -0.00286447093822062, + -0.09035071730613708, + -0.029458962380886078, + -0.0012332050828263164, + 0.021166948601603508, + -0.104328952729702, + -0.01675136387348175, + -0.030810991302132607, + 0.01998424157500267, + -0.06450753659009933, + 0.05130801349878311, + -0.05548910051584244, + 0.01189345307648182, + 0.059401530772447586, + 0.05971938371658325, + -0.05121823027729988, + -0.08299113065004349, + -0.02010999247431755, + -0.0364677868783474, + 0.029105601832270622, + 0.08590870350599289, + -3.410453311175056e-33, + 0.052474088966846466, + 0.08375198394060135, + -0.025636158883571625, + 0.09201262891292572, + 0.02656221017241478, + 0.05691845342516899, + 0.04030058532953262, + -0.01658501848578453, + -0.018265243619680405, + 0.12208069860935211, + 0.05369628593325615, + 0.026730291545391083, + -0.0630703866481781, + -0.03073919750750065, + 0.02432616800069809, + 0.022693993523716927, + -0.024046093225479126, + -0.09779009222984314, + -0.045638471841812134, + 0.029718777164816856, + -0.006273117382079363, + 0.09922067075967789, + -0.07753803580999374, + -0.038927726447582245, + -0.053728897124528885, + -0.0907941609621048, + 0.05004334822297096, + -0.05852385610342026, + 0.0021928970236331224, + 0.07109431177377701, + 0.07441695779561996, + 0.029738616198301315, + -0.017533468082547188, + 0.023879537358880043, + -0.08697371929883957, + 0.03541790693998337, + -0.07016663998365402, + -0.06306933611631393, + 0.028295084834098816, + 0.06357340514659882, + -0.13147248327732086, + -0.01807020604610443, + 0.003808925161138177, + -0.04658687487244606, + 0.0038488460704684258, + 0.027181444689631462, + -0.01264346856623888, + 0.04201516881585121, + -0.0008193972171284258, + 0.10121878236532211, + 0.07043720781803131, + 0.021375685930252075, + 0.08017469942569733, + 0.03246322646737099, + 0.012438305653631687, + -0.009734093211591244, + 0.044209063053131104, + 0.0676274448633194, + 0.008680402301251888, + 0.06527508050203323, + 0.03968526050448418, + 0.05699732527136803, + -0.021963724866509438, + 0.02012459747493267, + 0.0063734701834619045, + -0.01794671267271042, + 0.0555771067738533, + 0.13158981502056122, + 0.13247929513454437, + -0.0721723884344101, + -0.02675575204193592, + 0.05851361155509949, + -0.06278429925441742, + 0.035121213644742966, + -0.038038548082113266, + -0.016690026968717575, + 0.031158307567238808, + -0.020829258486628532, + 0.09303601086139679, + -0.05061231181025505, + -0.020747464150190353, + 0.012850053608417511, + -0.10374175012111664, + 0.04642701894044876, + -0.024950316175818443, + 0.028683554381132126, + 0.016240954399108887, + -0.02204420603811741, + -0.024054881185293198, + 0.07040531188249588, + 0.016047198325395584, + 0.01838710717856884, + -0.007848016917705536, + -0.007202691864222288, + -0.1059260219335556, + 9.861744653021309e-34, + 0.1078631579875946, + -0.0029759404715150595, + -0.034314583986997604, + 0.08025192469358444, + -0.008791333064436913, + 0.03248034790158272, + 0.018867256119847298, + 0.026863805949687958, + -0.04311707615852356, + -0.007436362095177174, + -0.03644217923283577, + 0.008154605515301228, + -0.030848057940602303, + -0.014558580704033375, + 0.14752250909805298, + 0.011716328561306, + 0.03872382268309593, + -0.05111478269100189, + -0.039442598819732666, + 0.03325977548956871, + -0.012428110465407372, + -0.0032625291496515274, + -0.06405091285705566, + 0.10149446129798889, + -0.09216134250164032, + 0.0016762354644015431, + 0.015145220793783665, + 0.03941338509321213, + 0.0032484938856214285, + -0.00962289609014988, + -0.05365350842475891, + -0.04286082461476326, + 0.0242640171200037, + 0.059272412210702896, + -0.055781543254852295, + 0.0033013212960213423, + 0.044938307255506516, + -0.06206168606877327, + 0.0018808087334036827, + -0.009392919018864632, + 0.013180958107113838, + -0.00502102030441165, + 0.06239103525876999, + 0.0749366357922554, + -0.07673431187868118, + 0.011590511538088322, + -0.045298900455236435, + 0.023190580308437347, + -0.09474559873342514, + 0.07086008042097092, + -0.018858803436160088, + 0.01515247207134962, + -0.09302901476621628, + 0.025405170395970345, + -0.0015963310142979026, + -0.01829872839152813, + -0.02800796926021576, + -0.10010726004838943, + -0.09045189619064331, + 0.038470540195703506, + -0.004267163574695587, + 0.10795938223600388, + -0.08821330964565277, + 0.06834335625171661, + -0.007386930752545595, + -0.09915190190076828, + 0.03174101561307907, + -0.06877618283033371, + 0.005022927187383175, + -0.007007958367466927, + -0.012491858564317226, + 0.027855493128299713, + 0.03544123098254204, + -0.10856948792934418, + 0.05311642214655876, + -0.00926658883690834, + 0.06811225414276123, + -0.044832102954387665, + 0.021249262616038322, + -0.029164576902985573, + -0.06080852076411247, + 0.015630139037966728, + 0.010586030781269073, + -0.01924886740744114, + -0.07601483911275864, + -0.019999273121356964, + -0.06074541434645653, + 0.01670718379318714, + 0.0443255789577961, + -0.07229775935411453, + -0.006500104442238808, + 0.04611760750412941, + -0.03306221216917038, + -0.02212846837937832, + 0.00218085665255785, + -1.590849585397791e-08, + -0.000673340167850256, + 0.044054508209228516, + 0.019636303186416626, + -0.0056337881833314896, + 0.08390358835458755, + -0.04695634916424751, + -0.03762238100171089, + 0.03689052537083626, + -0.0572943314909935, + -0.016761086881160736, + 0.10276802629232407, + 0.07399017363786697, + -0.04740959033370018, + 0.01632176898419857, + 0.008320732042193413, + 0.02343425340950489, + -0.04988114535808563, + 0.02194812335073948, + -0.06721685826778412, + -0.031907886266708374, + -0.04193129763007164, + 0.03760037198662758, + 4.355694181867875e-05, + 0.022270604968070984, + -0.015818733721971512, + -0.0005476141814142466, + -0.16059409081935883, + 0.0009062615572474897, + 0.002667495980858803, + 0.034158267080783844, + 0.035922061651945114, + 0.05009246990084648, + -0.03596840053796768, + 0.00516904192045331, + -0.06860815733671188, + -0.013314111158251762, + 0.008923394605517387, + -0.03981563821434975, + 0.021547429263591766, + 0.03597652167081833, + 0.00455158855766058, + 0.01767110824584961, + -0.006275877356529236, + -0.011274863965809345, + -0.07029177993535995, + 0.031144188717007637, + 0.03736012801527977, + -0.032508496195077896, + -0.04559260606765747, + -0.048550792038440704, + -0.03336022421717644, + -0.05205574259161949, + 0.01366991177201271, + 0.0783686637878418, + -0.07771364599466324, + 5.77049795538187e-05, + 0.05387704446911812, + 0.035390645265579224, + -0.03780849650502205, + 0.044041022658348083, + 0.10047391802072525, + -0.003920606337487698, + 0.01166464015841484, + 0.03782820701599121 + ], + "browser-bold||web browsers,windows,internet,website,webpage,chrome,edge,firefox": [ + -0.004892795812338591, + -0.0466427281498909, + -0.03127467259764671, + 0.022304734215140343, + 0.0412190817296505, + -0.0877232775092125, + 0.024384677410125732, + -0.07139286398887634, + -0.016554076224565506, + -0.06176289916038513, + 0.026714175939559937, + 0.04904104396700859, + 0.014796469360589981, + -0.005896096117794514, + 0.07541841268539429, + 0.015361815690994263, + 0.002828886266797781, + 0.035793062299489975, + 0.026124300435185432, + 0.006751816254109144, + 0.016159560531377792, + -0.0011063521960750222, + 0.024565355852246284, + -0.008036131970584393, + 0.0023115254007279873, + 0.02575579844415188, + -0.0027119729202240705, + -0.001933461520820856, + 0.05049095302820206, + -0.11412873864173889, + -0.013178606517612934, + -0.029732951894402504, + 0.09650985151529312, + 0.04043179005384445, + 0.006465940270572901, + -0.014567112550139427, + -0.02692454867064953, + 0.019927676767110825, + -0.05922757089138031, + 0.06825356930494308, + 0.020907217636704445, + -0.04239828884601593, + 0.016237802803516388, + 0.024241484701633453, + -0.026100827381014824, + -0.07338699698448181, + -0.09952649474143982, + -0.004522089846432209, + -0.014193849638104439, + -0.04169990122318268, + -0.011327930726110935, + -0.059806738048791885, + -0.13099528849124908, + 0.024946104735136032, + -0.023906266316771507, + -0.022425685077905655, + -0.03702084720134735, + -0.010023883543908596, + 0.06774760037660599, + 0.06202271580696106, + -0.007461119443178177, + 0.02553774230182171, + 0.05660529062151909, + 0.06593923270702362, + 0.017800871282815933, + 0.12090785801410675, + 0.03126383572816849, + 0.0020794637966901064, + -0.06011148542165756, + -0.0049044168554246426, + 0.01805693842470646, + -0.0006231946172192693, + -0.02707562781870365, + -0.0008015813655219972, + -0.01098633836954832, + -0.012044322676956654, + 0.04001214727759361, + 0.047374799847602844, + -0.06370806694030762, + -0.022924600169062614, + -0.07317771762609482, + -0.12297064065933228, + -0.007197539787739515, + 0.06361149996519089, + 0.13770534098148346, + 0.08312928676605225, + -0.09624884277582169, + -0.08232202380895615, + -0.03983055055141449, + -0.005096107721328735, + -0.09315832704305649, + -0.09789646416902542, + 0.04999235272407532, + 0.07522261887788773, + -0.06484000384807587, + 0.027626771479845047, + 0.10119250416755676, + -0.03155431151390076, + -0.051559846848249435, + 0.03496208041906357, + 0.007747071795165539, + -0.03106832504272461, + 0.04447418078780174, + 0.009538065642118454, + -0.0401909314095974, + -0.0026257727295160294, + 0.005910191684961319, + 0.03906554728746414, + 0.03756842017173767, + -0.03346194699406624, + -0.019203931093215942, + -0.07203303277492523, + -0.02418716438114643, + -0.10481224954128265, + -0.07487577199935913, + -0.08800902962684631, + -0.053620245307683945, + -0.010959825478494167, + 0.20453570783138275, + 0.07613148540258408, + -0.014547348953783512, + 0.03841409087181091, + -0.008838456124067307, + -0.07676222175359726, + 0.054559215903282166, + -0.036049626767635345, + 0.02138017676770687, + 4.0966294958618465e-34, + 0.07793086022138596, + 0.02200026623904705, + -0.04854201152920723, + 0.03427831456065178, + 0.03451076149940491, + 0.016839386895298958, + -0.05658451467752457, + -0.09002885967493057, + -0.0906379371881485, + -0.017965884879231453, + 0.12130990624427795, + 0.10059742629528046, + -0.026234721764922142, + 0.032496023923158646, + 0.10402702540159225, + 0.00300927204079926, + 0.05191827937960625, + -0.009557281620800495, + -0.029832936823368073, + -0.024360502138733864, + -0.049420200288295746, + 0.07109834998846054, + -0.015076813288033009, + -0.011326583102345467, + -0.08860647678375244, + -0.020939132198691368, + -0.03984789550304413, + 0.04353836178779602, + -0.10486594587564468, + 0.03379574790596962, + 0.041026413440704346, + -0.00730840815231204, + 0.013554278761148453, + 0.010832739062607288, + -0.03767948970198631, + 0.05416246876120567, + -0.019739337265491486, + -0.00012864693417213857, + 0.0058480664156377316, + 0.012617695145308971, + -0.15338853001594543, + -0.015234035439789295, + 0.00322359730489552, + -0.04884279891848564, + 0.018223464488983154, + 0.0585792101919651, + -0.06808784604072571, + -0.06963718682527542, + 0.02046087384223938, + 0.03785848245024681, + -0.05551309138536453, + 0.0022185235284268856, + 0.04852669686079025, + 0.02257056161761284, + -0.019825223833322525, + 0.02357671409845352, + -0.00734617980197072, + 0.0846969485282898, + 0.009705407544970512, + 0.026418127119541168, + 0.03972719609737396, + -0.005750471260398626, + -0.006053777877241373, + -0.05623095482587814, + -0.03814258426427841, + 0.035731732845306396, + 0.005997893866151571, + 0.08690152317285538, + -0.04095885530114174, + -0.026600871235132217, + 0.0044548120349645615, + 0.06522562354803085, + 0.053132545202970505, + 0.050397682934999466, + -0.05265212804079056, + -0.0067689670249819756, + -0.015299304388463497, + -0.0008103285217657685, + -0.00022997500491328537, + -0.031463462859392166, + -0.025095628574490547, + 0.018968479707837105, + -0.029061011970043182, + 0.03690968453884125, + -0.014451165683567524, + -0.03464391827583313, + -0.019498832523822784, + -0.07309211790561676, + 0.006049516145139933, + 0.039942942559719086, + -0.06269806623458862, + 0.023475782945752144, + -0.002382798120379448, + -0.007168191950768232, + -0.12848956882953644, + -3.2084210970992297e-33, + -0.03706853836774826, + 0.04276914894580841, + -0.05190062150359154, + 0.0388614721596241, + -0.11576303839683533, + 0.07859709113836288, + 0.09915768355131149, + 0.005473070312291384, + 0.002921763341873884, + 0.004623290617018938, + 0.1121472492814064, + 0.060093920677900314, + -0.049236901104450226, + -0.05658456310629845, + -0.07002099603414536, + 0.04924013838171959, + 0.0012005810858681798, + -0.01261550560593605, + 0.00903288647532463, + -0.03130548074841499, + -0.04121815413236618, + -0.048320379108190536, + -0.09963811933994293, + 0.08747568726539612, + 0.06193803623318672, + 0.002722096862271428, + -0.006561991758644581, + -0.021139517426490784, + -0.04123266041278839, + -0.029461532831192017, + 0.048318956047296524, + 0.013411086983978748, + 0.0025195274502038956, + 0.0380244255065918, + -0.003812339622527361, + 0.03182683512568474, + -0.02363293431699276, + -0.02473912201821804, + 0.03603467717766762, + -0.005578167270869017, + 0.01804361864924431, + 0.029289351776242256, + 0.06816951930522919, + 0.04701976850628853, + -0.01844656467437744, + 0.06048784777522087, + -0.06088738143444061, + -0.05436015501618385, + -0.008401758968830109, + 0.07559199631214142, + 0.07269681990146637, + 0.02137918770313263, + 0.008814753964543343, + -0.029561560600996017, + -0.07385727018117905, + -0.07473461329936981, + -0.0053148879669606686, + 0.037323158234357834, + -0.04989646375179291, + 0.03461373597383499, + -0.0003324626595713198, + -0.013669952750205994, + -0.08508390933275223, + 0.05051099881529808, + -0.03627053648233414, + 0.002827680902555585, + -0.023237213492393494, + 0.014986743219196796, + 0.010625581257045269, + -0.037491362541913986, + 0.023225832730531693, + -0.006477714981883764, + 0.0025685736909508705, + -0.011089405976235867, + -0.010968449525535107, + -0.0675845816731453, + 0.09905344247817993, + 0.04745719954371452, + -0.0588056743144989, + 0.01778360642492771, + 0.052357982844114304, + 0.06666962802410126, + -0.06795765459537506, + -0.01566462218761444, + -0.0632876306772232, + 0.004094664938747883, + -0.03930320963263512, + 0.016949666664004326, + -0.012137923389673233, + -0.08138217031955719, + -0.042404286563396454, + 0.07585898786783218, + -0.02224191650748253, + -0.0167646873742342, + -0.07846532016992569, + -2.1926030768781857e-08, + -0.040154170244932175, + -0.021611956879496574, + -0.036438558250665665, + -0.0060202074237167835, + 0.05172625929117203, + -0.0629129484295845, + 0.003485550871118903, + -0.049044035375118256, + -0.042661458253860474, + -0.04833095520734787, + 0.03669218719005585, + 0.04350169375538826, + -0.08804857730865479, + -0.023240072652697563, + 0.05154202878475189, + 0.009556891396641731, + -0.04124205932021141, + 0.051913872361183167, + 0.0466671846807003, + -0.04372841492295265, + -0.02511938475072384, + 0.024818144738674164, + 0.04394987225532532, + 0.035899266600608826, + 0.07193617522716522, + 0.021900340914726257, + -0.05318952351808548, + -0.004313291050493717, + 0.10232486575841904, + 0.11295993626117706, + -0.04498988017439842, + 0.009083797223865986, + -0.060722753405570984, + -0.04147352650761604, + -0.03989473730325699, + -0.008863787166774273, + -0.0579189732670784, + -0.03797053545713425, + 0.01961161196231842, + 0.1068977564573288, + 0.026940422132611275, + -0.06046375259757042, + -0.009608564898371696, + -0.02069493755698204, + -0.004728626925498247, + 0.026722094044089317, + 0.01696738786995411, + 0.03139819577336311, + 0.0151783162727952, + -0.12352931499481201, + -0.023895742371678352, + -0.008235936053097248, + 0.04566680267453194, + 0.06669154018163681, + -0.04547189548611641, + -0.04002872854471207, + 0.0662933811545372, + 0.027212949469685555, + 0.013184052892029285, + 0.00645211897790432, + 0.13258184492588043, + 0.02876649610698223, + 0.04269442707300186, + 0.04615989327430725 + ], + "browsers-bold||web browsers,windows,internet,website,webpage,chrome,edge,firefox": [ + -0.003993305843323469, + -0.04513601213693619, + -0.03278809413313866, + 0.02753492444753647, + 0.03522973135113716, + -0.0906803160905838, + 0.026629507541656494, + -0.07373186945915222, + -0.015183654613792896, + -0.05568530783057213, + 0.028467850759625435, + 0.048152364790439606, + 0.011862736195325851, + -0.008403485640883446, + 0.07544448971748352, + 0.017907310277223587, + 0.00010685782035579905, + 0.032586973160505295, + 0.023629864677786827, + 0.015226460993289948, + 0.016353517770767212, + -0.002453444292768836, + 0.017489444464445114, + -0.002944119041785598, + 0.0066663832403719425, + 0.027043845504522324, + -0.0044967299327254295, + -0.0013831774704158306, + 0.047373492270708084, + -0.10943897068500519, + -0.015677491202950478, + -0.03193318471312523, + 0.09535008668899536, + 0.040184952318668365, + 0.006740474607795477, + -0.012507356703281403, + -0.020605584606528282, + 0.01758257858455181, + -0.05937881022691727, + 0.06665784120559692, + 0.017539335414767265, + -0.0420999750494957, + 0.01582193747162819, + 0.023596929386258125, + -0.03468499332666397, + -0.06855803728103638, + -0.10151249170303345, + -0.001512440387159586, + -0.016531195491552353, + -0.046573854982852936, + -0.014344686642289162, + -0.0598115473985672, + -0.12737494707107544, + 0.021699877455830574, + -0.0231176745146513, + -0.017863456159830093, + -0.036464717239141464, + -0.007088446523994207, + 0.06482617557048798, + 0.05514951050281525, + -0.006127576809376478, + 0.022812383249402046, + 0.0627211406826973, + 0.06685126572847366, + 0.017519205808639526, + 0.1257496327161789, + 0.03309915214776993, + 0.00367536093108356, + -0.05871126428246498, + -0.009144497103989124, + 0.021987497806549072, + 0.0007021084311418235, + -0.030603785067796707, + 0.006899732165038586, + -0.007165354210883379, + -0.006516832858324051, + 0.04126610979437828, + 0.04592818394303322, + -0.06734829396009445, + -0.02375801093876362, + -0.08283309638500214, + -0.12491269409656525, + -0.012245415709912777, + 0.06387561559677124, + 0.13616757094860077, + 0.07720208913087845, + -0.09805713593959808, + -0.07934310287237167, + -0.04207494109869003, + -0.006754390429705381, + -0.09173505008220673, + -0.10603805631399155, + 0.05102190375328064, + 0.08007452636957169, + -0.061086833477020264, + 0.01974303461611271, + 0.10500741004943848, + -0.027220163494348526, + -0.05046920105814934, + 0.03301873058080673, + 0.007358579896390438, + -0.027896981686353683, + 0.05098000541329384, + 0.01830822415649891, + -0.04255174472928047, + 0.0006797122769057751, + 0.0015786882722750306, + 0.03452054038643837, + 0.028959834948182106, + -0.03547629341483116, + -0.017164453864097595, + -0.07286906987428665, + -0.023431384935975075, + -0.1027446910738945, + -0.07320394366979599, + -0.09147563576698303, + -0.05738265439867973, + -0.013727884739637375, + 0.20051948726177216, + 0.0744766965508461, + -0.014426114037632942, + 0.04225248470902443, + -0.001161572989076376, + -0.07654484361410141, + 0.05491655319929123, + -0.03632395714521408, + 0.021807733923196793, + 1.5656914353830916e-34, + 0.07562486082315445, + 0.018298497423529625, + -0.04441789910197258, + 0.037187837064266205, + 0.035898469388484955, + 0.018419841304421425, + -0.056487925350666046, + -0.0915791466832161, + -0.07976432144641876, + -0.014573943801224232, + 0.11373166739940643, + 0.09721165895462036, + -0.026905104517936707, + 0.029110480099916458, + 0.10279665887355804, + 0.0022585734259337187, + 0.06323617696762085, + -0.008629915304481983, + -0.03233931586146355, + -0.022222518920898438, + -0.0486050583422184, + 0.07008898258209229, + -0.013728735968470573, + -0.015951303765177727, + -0.08617943525314331, + -0.0186292864382267, + -0.04057589918375015, + 0.0451689176261425, + -0.10277033597230911, + 0.030655475333333015, + 0.0418727807700634, + 0.0008219962473958731, + 0.019416548311710358, + 0.005613484885543585, + -0.03709850832819939, + 0.05919633060693741, + -0.01310693845152855, + 0.002272949321195483, + 0.006910274270921946, + 0.0069671617820858955, + -0.15418772399425507, + -0.012393458746373653, + 0.001460486906580627, + -0.05238204449415207, + 0.0185087863355875, + 0.06520237028598785, + -0.07017113268375397, + -0.07032616436481476, + 0.01819981075823307, + 0.043759144842624664, + -0.057252269238233566, + 0.0023723274935036898, + 0.0509786456823349, + 0.02999931387603283, + -0.015628164634108543, + 0.019980132579803467, + -0.0032792161218822002, + 0.07978563755750656, + 0.008476239629089832, + 0.022955378517508507, + 0.04054420441389084, + -0.006071292329579592, + -0.004858128726482391, + -0.05901418998837471, + -0.036961037665605545, + 0.0344977080821991, + 0.007768597919493914, + 0.0958983302116394, + -0.04018772393465042, + -0.02341015636920929, + 0.006178385112434626, + 0.06669172644615173, + 0.05376929044723511, + 0.05798352509737015, + -0.04809549078345299, + -0.002490726765245199, + -0.008408631198108196, + -0.0027414076030254364, + 0.0012175121810287237, + -0.02750629372894764, + -0.027674676850438118, + 0.02376648597419262, + -0.03578526899218559, + 0.03443143516778946, + -0.018659140914678574, + -0.03282764181494713, + -0.025095034390687943, + -0.06537012755870819, + 0.005873060319572687, + 0.04429459944367409, + -0.062023960053920746, + 0.02487942948937416, + 0.000429856387199834, + -0.007657167501747608, + -0.13255900144577026, + -3.1569664032858764e-33, + -0.04157189652323723, + 0.04640252888202667, + -0.05851367861032486, + 0.03609814494848251, + -0.11559930443763733, + 0.07761219143867493, + 0.09665575623512268, + 0.005605047568678856, + 0.0013842590851709247, + 0.00493396632373333, + 0.1124834418296814, + 0.06166989728808403, + -0.05726790055632591, + -0.05822519212961197, + -0.07003024965524673, + 0.04180219769477844, + 0.004723798483610153, + -0.008945440873503685, + 0.01707017607986927, + -0.03801722079515457, + -0.04311203211545944, + -0.04262092337012291, + -0.09928780049085617, + 0.08520135283470154, + 0.06359658390283585, + 0.0053292373195290565, + -0.009379278868436813, + -0.023144172504544258, + -0.042774032801389694, + -0.02451380528509617, + 0.049384165555238724, + 0.013034999370574951, + 0.003387685865163803, + 0.04521971568465233, + -0.0022740077693015337, + 0.026691779494285583, + -0.02927267737686634, + -0.027952056378126144, + 0.031116940081119537, + -0.013524198904633522, + 0.017008915543556213, + 0.03146694228053093, + 0.07322711497545242, + 0.04524978995323181, + -0.021333783864974976, + 0.059437867254018784, + -0.05655653774738312, + -0.05902930349111557, + -0.00895737111568451, + 0.06854099780321121, + 0.07369948923587799, + 0.02121659554541111, + 0.007808607537299395, + -0.026180613785982132, + -0.07690751552581787, + -0.07821070402860641, + -0.012659995816648006, + 0.039688482880592346, + -0.04649345204234123, + 0.03268184885382652, + -0.0026260213926434517, + -0.010965459980070591, + -0.08785630762577057, + 0.04630778729915619, + -0.04118073359131813, + 0.0009201703360304236, + -0.02144254744052887, + 0.01200271025300026, + 0.020962737500667572, + -0.034926120191812515, + 0.02878880314528942, + -0.006989153102040291, + -0.0007894177106209099, + -0.012872356921434402, + -0.005165904760360718, + -0.07107900828123093, + 0.08782347291707993, + 0.044951170682907104, + -0.06287132948637009, + 0.011949829757213593, + 0.054203830659389496, + 0.061707090586423874, + -0.061137065291404724, + -0.0055288407020270824, + -0.07011160999536514, + -0.0017607277259230614, + -0.033264338970184326, + 0.013214771635830402, + -0.013019836507737637, + -0.08332201838493347, + -0.040594279766082764, + 0.07315092533826828, + -0.01725712977349758, + -0.011430670507252216, + -0.08488673716783524, + -2.239170981965799e-08, + -0.03705466911196709, + -0.01839190535247326, + -0.04025474563241005, + 0.0005740257329307497, + 0.04786907881498337, + -0.0679829940199852, + -0.005422899499535561, + -0.04695344343781471, + -0.04561174288392067, + -0.045063383877277374, + 0.03686533123254776, + 0.038421694189310074, + -0.08420302718877792, + -0.024559352546930313, + 0.060843341052532196, + 0.0024829416070133448, + -0.0450841523706913, + 0.04910845309495926, + 0.04560665786266327, + -0.04737740755081177, + -0.02348063513636589, + 0.02161594294011593, + 0.045366499572992325, + 0.04000517725944519, + 0.07143489271402359, + 0.02491825632750988, + -0.054824646562337875, + -0.006001172587275505, + 0.1006312221288681, + 0.11737276613712311, + -0.03973362222313881, + 0.006634136661887169, + -0.052804283797740936, + -0.0387367382645607, + -0.030947040766477585, + -0.01740211993455887, + -0.057432934641838074, + -0.03987639769911766, + 0.02244011126458645, + 0.10148423910140991, + 0.010580630972981453, + -0.06370486319065094, + -0.006554812658578157, + -0.017054030671715736, + -0.006663558539003134, + 0.024668963626027107, + 0.012998305261135101, + 0.03990885987877846, + 0.00844541285187006, + -0.1230430081486702, + -0.02405230514705181, + -0.004922079853713512, + 0.0428338348865509, + 0.0722733810544014, + -0.04421643167734146, + -0.04710035398602486, + 0.06829500198364258, + 0.03388073295354843, + 0.008555919863283634, + -0.0005880524404346943, + 0.13226859271526337, + 0.03134360909461975, + 0.04247229918837547, + 0.043703820556402206 + ], + "bug-bold||debug,errors,insect,ladybug": [ + -0.01058560237288475, + -0.041324932128190994, + 0.021438194438815117, + 0.07323432713747025, + 0.027623586356639862, + -0.03712226077914238, + 0.021153246983885765, + 0.002882915548980236, + -0.12486857920885086, + 0.026477055624127388, + 0.05166573449969292, + -0.05236764997243881, + 0.02895841747522354, + -0.05037304386496544, + -0.06510418653488159, + 0.10505038499832153, + 0.009891271591186523, + -0.02437640354037285, + 0.025329407304525375, + 0.013770309276878834, + -0.044583018869161606, + 0.08615347743034363, + -0.045835528522729874, + 0.04689418524503708, + -0.0024848543107509613, + 0.028979888185858727, + -0.06702359020709991, + -0.001677858643233776, + 0.008899116888642311, + -0.11308906972408295, + -0.01432718988507986, + 0.07023335248231888, + 0.04641855135560036, + -0.006264834199100733, + 0.10343493521213531, + 0.08614178001880646, + -0.044763628393411636, + -0.05837492644786835, + 0.03157542273402214, + 0.06380891054868698, + 0.016514185816049576, + 0.026212215423583984, + -0.012850121594965458, + -0.030853677541017532, + -0.12188318371772766, + -0.04138308763504028, + -0.07354717701673508, + 0.02821766771376133, + 0.05677757412195206, + -0.07732810825109482, + 0.02107449434697628, + -0.022048143669962883, + -0.04300684854388237, + 0.00866397563368082, + 0.019873062148690224, + -0.06550266593694687, + -0.002870673080906272, + -0.04698720946907997, + 0.01143028773367405, + -0.0018814423820003867, + 0.030306551605463028, + 0.07444529980421066, + 0.034428104758262634, + 0.03810723498463631, + 0.03098132461309433, + -0.01206776313483715, + -0.03296591714024544, + 0.021141212433576584, + 0.01071864739060402, + 0.03295379504561424, + -0.03471095487475395, + 0.015768416225910187, + -0.13348014652729034, + 0.08251059055328369, + -0.022327283397316933, + 0.08260014653205872, + -0.00012226318358443677, + -0.007355640176683664, + 0.02854369953274727, + -0.06865785270929337, + -0.13969680666923523, + -0.07445019483566284, + 0.04314913973212242, + 0.038620516657829285, + 0.13275720179080963, + 0.07983877509832382, + -0.06046907231211662, + 0.016177156940102577, + -0.036290768533945084, + 0.013053864240646362, + 0.004868384916335344, + -0.0674285814166069, + 0.04819292575120926, + 0.0761122852563858, + -0.041412353515625, + 0.030565613880753517, + 0.06332692503929138, + -0.036930378526449203, + -0.053433578461408615, + 0.10779796540737152, + -0.050008274614810944, + -0.003476788057014346, + 0.03142670914530754, + 0.04238685593008995, + -0.033589594066143036, + -0.032271966338157654, + 0.07246571034193039, + -0.03059113770723343, + 0.02810099720954895, + -0.07394091039896011, + -0.0063753132708370686, + -0.02710641734302044, + 0.004740533418953419, + -0.043672215193510056, + -0.013949302025139332, + -0.11104738712310791, + -0.041827186942100525, + -0.04052526131272316, + 0.0808996707201004, + -0.027556324377655983, + 0.11793629825115204, + -0.04341072216629982, + -0.0534587986767292, + -0.0818571224808693, + 0.11928264051675797, + 8.594884275225922e-05, + 0.016543932259082794, + 1.72604539522456e-34, + 0.06832735240459442, + 0.037729550153017044, + -0.011751129291951656, + 0.05656587332487106, + 0.05805892124772072, + 0.008167415857315063, + -0.07134364545345306, + -0.012471906840801239, + 0.03013727255165577, + 0.030018363147974014, + 0.06198692321777344, + -0.034256238490343094, + 0.008505098521709442, + -0.007838246412575245, + -0.002566057723015547, + 0.056553296744823456, + 0.04277516528964043, + -0.025368686765432358, + -0.07111257314682007, + 0.0795067548751831, + 0.006673029623925686, + -0.02170606702566147, + -0.027057785540819168, + -0.0744866281747818, + 0.014190656132996082, + 0.09698107093572617, + 0.009094931185245514, + 0.02839042991399765, + -0.0320267528295517, + 0.02938288263976574, + 0.044118523597717285, + -0.02082439512014389, + 0.05261560529470444, + 0.058366984128952026, + 0.00029274632106535137, + -0.02852785773575306, + -0.02140786312520504, + -0.06382506340742111, + -0.05705194175243378, + 0.020631123334169388, + -0.039128344506025314, + -0.03390612453222275, + -0.02943282574415207, + -0.010719453915953636, + 0.10549529641866684, + 0.0567808635532856, + -0.0644804984331131, + -0.02444533072412014, + 0.0033015431836247444, + 0.011562181636691093, + -0.015041273087263107, + 0.08048338443040848, + 0.0910985916852951, + 0.034140653908252716, + 0.014131704345345497, + -0.0033002726268023252, + 0.03999793529510498, + -0.05358019098639488, + -0.012927183881402016, + 0.019460579380393028, + 0.03373872861266136, + 0.011041246354579926, + 0.01101699285209179, + -0.09818632155656815, + 0.07660757005214691, + -0.028401555493474007, + -0.008672067895531654, + 0.033287644386291504, + 0.03465544432401657, + -0.07815250754356384, + 0.021037299185991287, + 0.03284824639558792, + 0.07319000363349915, + 0.10219647735357285, + -0.05029693990945816, + 0.03413722664117813, + 0.028265725821256638, + -0.008725966326892376, + 0.00858240481466055, + -0.1062217652797699, + -0.0540887713432312, + -0.026232613250613213, + -0.016750507056713104, + 0.02692251279950142, + -0.007808488793671131, + 0.038842570036649704, + -0.005156170576810837, + -0.006378503981977701, + -0.028146926313638687, + 0.12141656875610352, + 0.05087690427899361, + 0.05177908390760422, + 0.0008447406580671668, + -0.012748463079333305, + -0.050711918622255325, + -1.1040028047861915e-33, + -0.08151136338710785, + 0.0489555224776268, + -0.07478076219558716, + -0.025218266993761063, + -0.040141936391592026, + 0.02234419621527195, + 0.007537455763667822, + 0.08029210567474365, + 0.02458483725786209, + 0.00889954436570406, + -0.05196814239025116, + -0.001540008932352066, + -0.10169152170419693, + -0.0434245839715004, + 0.001771200099028647, + 0.015983233228325844, + 0.033498767763376236, + -0.026762913912534714, + 0.011001093313097954, + -0.00939339492470026, + -0.07949113845825195, + 0.028660042211413383, + 0.03253011777997017, + -0.02996346913278103, + -0.019292093813419342, + 0.0654865950345993, + 0.07150165736675262, + -0.03229020535945892, + -0.02184895984828472, + -0.045925576239824295, + 0.03932299464941025, + 0.06927599012851715, + -0.010816303081810474, + 0.06766920536756516, + 0.025937946513295174, + -0.007075449917465448, + -0.02359698712825775, + -0.10605473816394806, + 0.05408425256609917, + -0.0031925146467983723, + 0.04924643039703369, + 0.05227373540401459, + 0.026985561475157738, + -0.02544841170310974, + 0.05611959472298622, + 0.04700212553143501, + -0.07625337690114975, + -0.059388238936662674, + 0.030889267101883888, + 0.03445423021912575, + 0.045047540217638016, + -0.03321387991309166, + -0.030430128797888756, + 0.021868500858545303, + -0.06357143819332123, + -0.029931580647826195, + 0.05516904592514038, + -0.014557911083102226, + 0.026708392426371574, + 0.03129089996218681, + -0.07305024564266205, + 0.024080609902739525, + -0.07534175366163254, + 0.007894622161984444, + -0.051089830696582794, + 0.007607860025018454, + 0.009226861409842968, + 0.07598532736301422, + 0.0415656752884388, + -0.05227667838335037, + -0.005826672539114952, + -0.05348709225654602, + -0.02278793416917324, + -0.02778569608926773, + 0.04255949705839157, + 0.009023147635161877, + -0.01811612956225872, + -0.0265225600451231, + 0.035435356199741364, + 0.05642469599843025, + -0.024311238899827003, + -0.0401247963309288, + -0.04970547556877136, + 0.04299008101224899, + -0.03803889453411102, + 0.009127710945904255, + -0.08711007982492447, + 0.07494528591632843, + -0.04391564801335335, + -0.0807204619050026, + -0.03609667718410492, + 0.06326773762702942, + 0.023689258843660355, + 0.021199580281972885, + -0.015897702425718307, + -1.9814759610881083e-08, + 0.012948855757713318, + -0.034547075629234314, + -0.059022318571805954, + -0.0796927735209465, + 0.097537100315094, + -0.0908542275428772, + -0.07092312723398209, + -0.02570655196905136, + -0.04056646674871445, + 0.019016645848751068, + -0.03257784992456436, + 0.032278575003147125, + -0.03194497898221016, + -0.048941366374492645, + 0.08093556016683578, + -0.04417734593153, + -0.09597259014844894, + 0.05979863554239273, + -0.07133092731237411, + -0.1346137523651123, + 0.002675274619832635, + 0.08080251514911652, + -0.026868334040045738, + -0.04512903094291687, + -0.016799982637166977, + -0.04470748454332352, + 0.023947469890117645, + 0.043692491948604584, + 0.03700938820838928, + 0.011274570599198341, + 0.021200716495513916, + 0.14058101177215576, + 0.02483801543712616, + -0.043782904744148254, + -0.07743728905916214, + -0.0007214312790893018, + 0.02937651425600052, + -0.0021692058071494102, + 0.07750124484300613, + 0.05532339587807655, + -0.02855631336569786, + -0.010346426628530025, + 0.009256795980036259, + -0.045622192323207855, + -0.07581999152898788, + -0.02947993203997612, + 0.059089891612529755, + 0.02153513766825199, + 0.030894633382558823, + -0.10074593126773834, + -0.012065291404724121, + -0.006401798687875271, + 0.02270578406751156, + 0.05265083163976669, + -0.07587505877017975, + -0.047045107930898666, + 0.030554065480828285, + -0.02948577329516411, + 0.011757018975913525, + 0.006335243582725525, + 0.03179612010717392, + -0.08777990192174911, + 0.015649598091840744, + 0.0625268816947937 + ], + "bug-beetle-bold||debug,errors,insect,ladybug": [ + 0.0058555989526212215, + -0.03628308326005936, + 0.0013881796039640903, + 0.04981641471385956, + 0.017242196947336197, + -0.01391590852290392, + 0.00288164964877069, + 0.007491548079997301, + -0.1245240792632103, + 0.026028428226709366, + 0.05561263859272003, + -0.05149528384208679, + 0.0360836423933506, + -0.030891498550772667, + -0.07420817017555237, + 0.10975857079029083, + 0.028919003903865814, + -0.04278416931629181, + 0.032288361340761185, + 0.007530118338763714, + -0.03269622474908829, + 0.07789136469364166, + -0.03997373208403587, + 0.01770244911313057, + -0.009358888491988182, + 0.007969132624566555, + -0.056495241820812225, + -0.023441720753908157, + -0.01210746355354786, + -0.130447655916214, + 0.0030014761723577976, + 0.0755888968706131, + 0.052660007029771805, + -0.006859130226075649, + 0.09524301439523697, + 0.044849541038274765, + -0.06787563115358353, + -0.03904251009225845, + 0.04362476244568825, + 0.05256617069244385, + 0.0030202853959053755, + 0.033612534403800964, + -0.024420538917183876, + -0.04436742886900902, + -0.14237742125988007, + -0.02411821112036705, + -0.041659120470285416, + 0.04487530514597893, + 0.055045101791620255, + -0.06443735957145691, + 0.020460162311792374, + -0.01810261607170105, + -0.04204770177602768, + 0.011885035783052444, + 0.010128955356776714, + -0.05474817007780075, + 0.0045785559341311455, + -0.07312960177659988, + -0.0007921559736132622, + -0.017769090831279755, + 0.03905075043439865, + 0.08224815875291824, + 0.01584060862660408, + 0.05237596109509468, + 0.0013093528104946017, + -0.01571260765194893, + -0.025935951620340347, + 0.02552427537739277, + 0.009375011548399925, + 0.01279993075877428, + -0.03932586684823036, + 0.014537405222654343, + -0.11577752232551575, + 0.06868594139814377, + -0.011501890607178211, + 0.020486215129494667, + 0.019446250051259995, + 0.010695583187043667, + 0.04618225246667862, + -0.06920217722654343, + -0.17827178537845612, + -0.06052491441369057, + 0.040919430553913116, + 0.041971392929553986, + 0.11383013427257538, + 0.0882236659526825, + -0.06187665835022926, + 0.04533006250858307, + -0.04006931930780411, + 0.00825861468911171, + 0.016165008768439293, + -0.08361746370792389, + 0.06254740804433823, + 0.0681491419672966, + -0.029910176992416382, + 0.0383806973695755, + 0.06264086812734604, + -0.037987541407346725, + -0.04188481718301773, + 0.10009457170963287, + -0.057710710912942886, + 0.0007581434911116958, + 0.01537379715591669, + 0.032592661678791046, + -0.03433087095618248, + -0.029785489663481712, + 0.07278924435377121, + 0.021943502128124237, + 0.04015665128827095, + -0.07730764150619507, + 0.046828851103782654, + -0.05219095200300217, + 0.02720005251467228, + -0.02048947662115097, + 0.01067847665399313, + -0.1381836086511612, + -0.0185843538492918, + -0.03204137831926346, + 0.09360569715499878, + -0.03498448431491852, + 0.12175577133893967, + -0.03884119912981987, + -0.04695327207446098, + -0.08470481634140015, + 0.1015399619936943, + 0.004348760470747948, + 0.006556366104632616, + -7.033721058358856e-34, + 0.07733406126499176, + 0.02872243896126747, + -0.02476031333208084, + 0.07320812344551086, + 0.039281606674194336, + 0.022062789648771286, + -0.07208249717950821, + -0.0038051940500736237, + 0.04830501228570938, + 0.03187374025583267, + 0.06669267266988754, + -0.04472898691892624, + -0.0025001901667565107, + -0.028339987620711327, + -0.01600191555917263, + 0.09518987685441971, + 0.014326045289635658, + -0.009735574014484882, + -0.0441700778901577, + 0.0986984595656395, + 0.01861759088933468, + -0.02020147070288658, + -0.0326237715780735, + -0.09726966917514801, + 0.001964186318218708, + 0.08073364198207855, + 0.0094196991994977, + 0.009071814827620983, + -0.02559097297489643, + 0.02347492426633835, + 0.07508622854948044, + 0.02051849290728569, + 0.049640290439128876, + 0.07387053221464157, + 0.004588217008858919, + -0.028224429115653038, + -0.027032548561692238, + -0.0740974172949791, + -0.045613933354616165, + 0.009050626307725906, + -0.02022332325577736, + -0.027236366644501686, + -0.04398909583687782, + -0.016156692057847977, + 0.10375736653804779, + 0.06421206146478653, + -0.06028670072555542, + 0.002844695933163166, + 0.01934102177619934, + 0.030610861256718636, + -0.0038765170611441135, + 0.08123965561389923, + 0.11384567618370056, + 0.031891029328107834, + 0.00513303279876709, + 0.03419168293476105, + 0.026287786662578583, + -0.05068536475300789, + -0.0032802619971334934, + 0.0014265119098126888, + 0.012393561191856861, + 0.021678166463971138, + 0.004060596693307161, + -0.08703041076660156, + 0.05573277547955513, + -0.0538911409676075, + -0.004401769023388624, + 0.036522600799798965, + 0.0002505833690520376, + -0.0681450143456459, + 0.018378974869847298, + 0.01147958543151617, + 0.057803988456726074, + 0.07347528636455536, + -0.03965802863240242, + 0.017069127410650253, + 0.02760276198387146, + -0.00598225137218833, + 0.00018643111980054528, + -0.07916758209466934, + -0.0469118095934391, + -0.02239617332816124, + -0.04567808285355568, + -0.0009204929228872061, + 0.008742635138332844, + 0.03933485969901085, + -0.005674922373145819, + -0.041942041367292404, + -0.016621068120002747, + 0.1076088473200798, + 0.03267008811235428, + 0.0327928327023983, + -0.03116162121295929, + -0.006961178034543991, + -0.034350160509347916, + -7.0165074129590025e-34, + -0.07151836901903152, + 0.025249823927879333, + -0.05286753550171852, + -0.03388838842511177, + 0.004199482034891844, + 0.04783780500292778, + -0.0018654207233339548, + 0.08154720067977905, + 0.005604175850749016, + -0.013185514137148857, + -0.04296451434493065, + 0.028183424845337868, + -0.13227379322052002, + -0.05467648431658745, + 0.023316822946071625, + 0.0005107606411911547, + 0.0657641664147377, + -0.04475894197821617, + 0.01923627220094204, + -0.016689356416463852, + -0.07086088508367538, + 0.03448668122291565, + 0.028050515800714493, + -0.026696819812059402, + -0.0019619495142251253, + 0.057847604155540466, + 0.05527791753411293, + 0.0010840361937880516, + 0.020720668137073517, + -0.06402666121721268, + 0.06353999674320221, + 0.062096890062093735, + 0.020254038274288177, + 0.05680151283740997, + 0.01148180291056633, + 0.0031986895482987165, + -0.0307625662535429, + -0.08844554424285889, + 0.05651989206671715, + 0.00770145608112216, + 0.04556016996502876, + 0.03285152465105057, + 0.021235978230834007, + -0.031670521944761276, + 0.06476787477731705, + 0.05013883858919144, + -0.08349964022636414, + -0.0683785229921341, + 0.04194149374961853, + 0.05368789657950401, + 0.053369034081697464, + -0.055536143481731415, + -0.03896164149045944, + 0.010789635591208935, + -0.07441540062427521, + -0.015692995861172676, + 0.0500686950981617, + -0.00787249207496643, + 0.045082200318574905, + -0.00042201706673949957, + -0.08436271548271179, + 0.03645412623882294, + -0.059122636914253235, + 0.035891152918338776, + -0.08667268604040146, + -0.005754024721682072, + 0.020400702953338623, + 0.06043250113725662, + 0.031181249767541885, + -0.063478022813797, + -0.02222784236073494, + -0.04610675573348999, + 0.009814240969717503, + -0.03870265185832977, + 0.054775338619947433, + -0.012158873490989208, + -0.010496571660041809, + -0.03603444993495941, + 0.0463140606880188, + 0.030492765828967094, + -0.03702549263834953, + -0.004036527127027512, + -0.03260958567261696, + 0.03958761319518089, + -0.022422799840569496, + 0.012202837504446507, + -0.09888782352209091, + 0.08657777309417725, + -0.028586281463503838, + -0.08808022737503052, + -0.02519037202000618, + 0.08129322528839111, + 0.036728475242853165, + 0.0024853134527802467, + -0.032120026648044586, + -1.964150087019334e-08, + 0.030704712495207787, + -0.011283492669463158, + -0.055150292813777924, + -0.10156388580799103, + 0.06293708831071854, + -0.08336904644966125, + -0.06113756448030472, + -0.041589535772800446, + -0.05081414803862572, + 0.007389802020043135, + 0.0017662717727944255, + 0.04702545329928398, + -0.03341972827911377, + -0.0324481800198555, + 0.08268938958644867, + -0.0344230979681015, + -0.09342791885137558, + 0.023119809105992317, + -0.07067125290632248, + -0.12897804379463196, + -0.014730585739016533, + 0.05792326107621193, + -0.016956008970737457, + -0.009942615404725075, + -0.023238234221935272, + -0.019395241513848305, + 0.009798870421946049, + -0.0017272933619096875, + 0.0427015945315361, + -0.0024062644224613905, + 0.002101434161886573, + 0.15673446655273438, + 0.030699491500854492, + -0.047474205493927, + -0.06633572280406952, + -0.00041117618093267083, + 0.018567407503724098, + -0.016718072816729546, + 0.08059213310480118, + 0.04436808452010155, + -0.011970218271017075, + -0.0012900530127808452, + 0.018407044932246208, + -0.05015208199620247, + -0.055942002683877945, + -0.05160742625594139, + 0.05917743593454361, + 0.03387629985809326, + 0.012216693721711636, + -0.09200657904148102, + -0.022261716425418854, + 0.025796640664339066, + -0.008701596409082413, + 0.04267570376396179, + -0.09907793253660202, + -0.056932032108306885, + 0.027621014043688774, + -0.04913581907749176, + 0.008085704408586025, + 0.011287032626569271, + 0.0457628071308136, + -0.0954119861125946, + 0.006929758470505476, + 0.06529714167118073 + ], + "bug-droid-bold||debug,errors,insect,android,google": [ + -0.03312992677092552, + -0.027779102325439453, + 0.08313166350126266, + -0.011428198777139187, + 0.03316072002053261, + -0.09130733460187912, + 0.016417156904935837, + 0.028647087514400482, + -0.12324841320514679, + 0.011592268943786621, + 0.03864435479044914, + -0.029041005298495293, + 0.031142571941018105, + -0.036343883723020554, + -0.014341279864311218, + 0.05551018565893173, + 0.03762636333703995, + 0.024185549467802048, + -0.011816666461527348, + 0.03299463167786598, + -0.026903226971626282, + 0.09457524865865707, + 0.020470190793275833, + 0.027422035112977028, + 0.05924827605485916, + 0.04679663106799126, + -0.016637329012155533, + -0.04197874292731285, + 0.018523884937167168, + -0.1119275614619255, + 0.00024614448193460703, + 0.040131643414497375, + 0.0861063078045845, + 0.05792417749762535, + 0.0692787691950798, + -0.005080814938992262, + -0.06658922880887985, + -0.05031635984778404, + -0.008091027848422527, + 0.07051952183246613, + 0.03250664472579956, + 0.020977763459086418, + 0.008891488425433636, + 0.03809460252523422, + -0.09833728522062302, + -0.0686456710100174, + -0.04372305050492287, + 0.02908959425985813, + 0.09484664350748062, + -0.04297773167490959, + 0.016998043283820152, + 0.019603516906499863, + -0.011690343730151653, + 0.005577125120908022, + -0.03671543300151825, + 0.014655948616564274, + -0.03363850340247154, + 0.01630726084113121, + 0.03788595646619797, + 0.007114461623132229, + 0.040296927094459534, + 0.04028570279479027, + 0.028303150087594986, + 0.03712867945432663, + 0.0034124867524951696, + 0.048492394387722015, + 0.005905936937779188, + -0.047090522944927216, + 0.005972846876829863, + 0.0013812555698677897, + 0.013479168526828289, + 0.04755445569753647, + -0.0595795102417469, + 0.0248769111931324, + -0.05066687613725662, + 0.04854716360569, + 0.0026215859688818455, + 0.012565387412905693, + -0.048122603446245193, + -0.07704586535692215, + -0.06610331684350967, + -0.0655144676566124, + 0.03454984351992607, + 0.06509892642498016, + 0.15749548375606537, + 0.03806697949767113, + 0.005070469807833433, + 0.00665814895182848, + -0.03364499285817146, + 0.04067268595099449, + -0.01206442154943943, + -0.027309291064739227, + 0.008272613398730755, + 0.06793354451656342, + -0.07454301416873932, + 0.01659400388598442, + 0.04304921254515648, + -0.04880765080451965, + -0.07006946206092834, + 0.11090393364429474, + -0.007011997979134321, + -0.014345738105475903, + 0.04921578988432884, + 0.03325028717517853, + -0.04047491028904915, + 0.00022630096646025777, + 0.02512538805603981, + -0.06501299142837524, + 0.012879528105258942, + -0.021610189229249954, + 0.011321249417960644, + -0.06472105532884598, + 0.012291456572711468, + -0.0244754571467638, + -0.0030580703169107437, + -0.13441850244998932, + -0.058100659400224686, + -0.02872532047331333, + 0.09160254150629044, + 0.023549821227788925, + 0.028598720207810402, + -0.057078681886196136, + -0.08026312291622162, + -0.10413984209299088, + 0.08226696401834488, + -0.03707291930913925, + -0.018517477437853813, + -1.6837180477033573e-33, + 0.06012339144945145, + 0.0332893431186676, + -0.030080659314990044, + 0.027908727526664734, + -0.018603170290589333, + -0.004441752564162016, + -0.09635832905769348, + 0.026559120044112206, + -0.025308091193437576, + -0.024217721074819565, + 0.050739213824272156, + 0.018498213961720467, + -0.003456903388723731, + -0.0038166558369994164, + -0.010809381492435932, + 0.010879059322178364, + 0.05715843662619591, + 0.024720048531889915, + -0.016399739310145378, + 0.03815659508109093, + -0.036280419677495956, + -0.07013135403394699, + -0.040870342403650284, + -0.12019968032836914, + -0.02141576074063778, + 0.10335855931043625, + 0.04980262741446495, + 0.03650319576263428, + 0.009630301035940647, + 0.014617443084716797, + -0.003134357277303934, + -0.03670932352542877, + 0.07057054340839386, + 0.10115008801221848, + -0.0610617958009243, + -0.024923883378505707, + -0.07627943903207779, + -0.04002567380666733, + -0.04300848767161369, + -0.015885479748249054, + -0.09720751643180847, + -0.02076910063624382, + -0.07146717607975006, + -0.01647251658141613, + 0.11646021902561188, + 0.06897357851266861, + -0.06679537892341614, + -0.07757176458835602, + -0.018199879676103592, + 0.029792405664920807, + -0.004260194953531027, + 0.05673852562904358, + 0.058887410908937454, + -0.049277164041996, + -0.022354889661073685, + -0.012378387153148651, + 0.04399896413087845, + -0.05778289958834648, + -0.06380645185709, + 0.004850368946790695, + 0.018040239810943604, + 0.013578243553638458, + -0.039814434945583344, + -0.0644928589463234, + 0.05582718178629875, + 0.05688336864113808, + -0.026268988847732544, + -0.0010810598032549024, + 0.01766076125204563, + -0.059165891259908676, + 0.036532893776893616, + -0.050632044672966, + 0.0883636400103569, + 0.10606914013624191, + -0.08932212740182877, + 0.019377008080482483, + 0.021079201251268387, + -0.07120074331760406, + -0.02242487296462059, + -0.0764453262090683, + -0.048159558326005936, + -0.016640018671751022, + 0.01636088453233242, + 0.02063467912375927, + -0.04240972176194191, + 0.04862770438194275, + -0.008677312172949314, + -0.0023453524336218834, + -0.031553078442811966, + 0.14802192151546478, + -0.0076389070600271225, + 0.002368099521845579, + -0.04128410294651985, + 0.005573709961026907, + -0.042750343680381775, + -5.67110499645245e-34, + -0.13264824450016022, + 0.032625988125801086, + -0.06898017227649689, + -0.05070865526795387, + -0.04915992543101311, + 0.016331514343619347, + 0.004625200759619474, + 0.12221263349056244, + 0.026678849011659622, + 0.03257007524371147, + -0.022299334406852722, + 0.008979189209640026, + -0.0851530060172081, + -0.06531068682670593, + -0.020865576341748238, + 0.028352241963148117, + 0.05787602812051773, + -0.01678912341594696, + -0.010790735483169556, + 0.022137008607387543, + -0.03185654059052467, + 0.07141038030385971, + 0.01097538135945797, + 0.0327928252518177, + -0.03615320101380348, + 0.032967545092105865, + 0.06473980098962784, + -0.012832697480916977, + 0.002246486721560359, + -0.06833221018314362, + 0.08345212787389755, + 0.07831922918558121, + -0.0011312165297567844, + 0.06212547793984413, + 0.10615843534469604, + -0.0025058479513972998, + -0.05811138078570366, + -0.1065981462597847, + 0.04999162629246712, + -0.03710440546274185, + 0.04969482123851776, + 0.050030775368213654, + 0.08104220777750015, + -0.05884362384676933, + 0.09316106885671616, + -0.023706601932644844, + -0.08308285474777222, + -0.023011427372694016, + 0.013786083087325096, + 0.021339844912290573, + 0.08425101637840271, + -0.00701184244826436, + -0.012103777378797531, + -0.009110926650464535, + -0.05356280878186226, + 0.019269410520792007, + 0.035967644304037094, + -0.016180293634533882, + 0.024088013917207718, + -0.0014880081871524453, + -0.032487187534570694, + -0.019982559606432915, + -0.08020991832017899, + 0.01777534745633602, + -0.07315972447395325, + -0.012243249453604221, + 0.046149373054504395, + 0.06549768894910812, + 0.04641975834965706, + 0.0475439578294754, + -0.02001539245247841, + -0.06807371228933334, + -0.005930629558861256, + 0.005101315677165985, + 0.04070785641670227, + 0.005786329507827759, + -0.009190527722239494, + 0.013299009762704372, + -0.012639119289815426, + 0.03321079537272453, + 0.03168472647666931, + 0.016750728711485863, + -0.02995661087334156, + 0.02603168785572052, + -0.018568169325590134, + -0.019353780895471573, + -0.06782573461532593, + 0.03071625530719757, + -0.03948003426194191, + -0.03784851357340813, + -0.03848838433623314, + 0.05420798808336258, + -0.04820527508854866, + 0.08322542905807495, + -0.060679517686367035, + -2.1143403472478894e-08, + 0.09704846888780594, + -0.022854676470160484, + -0.0001873928413260728, + -0.042749084532260895, + 0.10876339673995972, + -0.11569978296756744, + -0.06913959980010986, + -0.05553695932030678, + 0.014904133975505829, + -0.021248655393719673, + -0.0709642544388771, + -0.017454201355576515, + -0.06460240483283997, + 0.024014709517359734, + 0.06851695477962494, + 0.006490507163107395, + -0.07297924160957336, + 0.057410094887018204, + -0.03176609426736832, + -0.08995716273784637, + -0.0017211326630786061, + 0.06927897036075592, + 0.01487688347697258, + -0.03307304531335831, + 0.03122115135192871, + -0.03600434958934784, + 0.02777538262307644, + 0.026784276589751244, + 0.03494703397154808, + 0.04252208396792412, + 0.012889419682323933, + 0.11387288570404053, + 0.012909000739455223, + -0.09300320595502853, + -0.05025368183851242, + 0.021154358983039856, + 0.07188302278518677, + -0.04941197484731674, + 0.07599519938230515, + 0.030112966895103455, + 0.0006437883712351322, + 0.022051602602005005, + 0.0653243362903595, + -0.02195890061557293, + -0.08413433283567429, + -0.04270032420754433, + 0.07421522587537766, + 0.009302631951868534, + 0.04270477220416069, + -0.05257195234298706, + -0.05475933477282524, + -0.016083678230643272, + -0.03270195052027702, + -0.03613049536943436, + -0.0604059174656868, + -0.06460662931203842, + -0.010400689207017422, + -0.05678989738225937, + -0.0514194592833519, + -0.02665146440267563, + 0.06778477132320404, + -0.02824614755809307, + -0.002175183268263936, + 0.06619857251644135 + ], + "building-bold||*new*,places,locations,company,business,buildings": [ + 0.04822823032736778, + -0.03698165342211723, + 0.007590416818857193, + 0.044996459037065506, + -0.0007865836378186941, + -0.01596040092408657, + -0.017720188945531845, + -0.07611827552318573, + -0.03236592933535576, + -0.018935538828372955, + 0.015080698765814304, + 0.004520403686910868, + 0.02841641753911972, + -0.01647585816681385, + 0.01376455556601286, + 0.03185785189270973, + 0.059397075325250626, + 0.05238133296370506, + 0.03049076907336712, + -0.009703324176371098, + 0.036070965230464935, + 0.011915283277630806, + 0.006315494421869516, + 0.020005332306027412, + 0.0928739458322525, + 0.04100031778216362, + 0.03787018358707428, + 0.05527951195836067, + 0.05521208047866821, + -0.0742570236325264, + -0.024243189021945, + 0.015120784752070904, + 0.14169277250766754, + 0.01942814514040947, + 0.12947769463062286, + 0.06885015219449997, + 0.01752464659512043, + 0.0062027256935834885, + 0.019801365211606026, + 0.02408592589199543, + -0.022238891571760178, + -0.05341310799121857, + 0.018852591514587402, + -0.0071494667790830135, + -0.009432807564735413, + -0.000538027728907764, + -0.03601742908358574, + -0.05146987736225128, + 0.05755038559436798, + -0.01829536259174347, + -0.020201757550239563, + -0.06237901747226715, + -0.1084957867860794, + -0.017125263810157776, + -0.006424118764698505, + 0.05114766210317612, + -0.08126024156808853, + -0.03405090793967247, + 0.011317609809339046, + -0.05096210539340973, + 0.10785691440105438, + 0.004362345673143864, + 0.009538288228213787, + 0.04258893430233002, + 0.05298807471990585, + 0.017716797068715096, + -0.05801672115921974, + 0.07600397616624832, + -0.04748845472931862, + -0.02772424928843975, + 0.08169452100992203, + -0.038014210760593414, + 0.005874257534742355, + 0.009722098708152771, + -0.02770848572254181, + -0.027393147349357605, + -0.004874493461102247, + 0.0070642344653606415, + -0.033874448388814926, + -0.07219891995191574, + -0.011832606978714466, + -0.03640773147344589, + -0.06313072890043259, + 0.02341821976006031, + -0.006541788578033447, + 0.05638770014047623, + -0.020813247188925743, + 0.02330354042351246, + 0.009016144089400768, + -0.028322983533143997, + -0.031560659408569336, + -0.0637773871421814, + -0.06560660898685455, + 0.04966956749558449, + -0.07698879390954971, + 0.023392584174871445, + -0.020173324272036552, + -0.02929450199007988, + 0.02018081583082676, + 0.05468796566128731, + -0.008016073144972324, + 0.025008155032992363, + 0.07673082500696182, + 0.022420136258006096, + -0.0834139958024025, + -0.04336612671613693, + -0.05918242037296295, + 0.040123142302036285, + -0.04415551945567131, + 0.02211388573050499, + -0.026913272216916084, + -0.05132545158267021, + -0.03564170375466347, + -0.06812465935945511, + -0.03571704030036926, + -0.03626594692468643, + -0.018153129145503044, + -0.05202789232134819, + 0.09550634771585464, + 0.05431312695145607, + 0.055653318762779236, + -0.029839646071195602, + -0.014756144024431705, + -0.044699251651763916, + -0.10127913951873779, + -0.022073958069086075, + -0.040013376623392105, + -3.579900821846089e-33, + 0.03730683773756027, + 0.05611143261194229, + -0.03581256419420242, + 0.165806382894516, + 0.0343342050909996, + -0.008651827462017536, + -0.030499344691634178, + 0.031214097514748573, + -0.07374471426010132, + 0.08106302469968796, + 0.11343864351511002, + 0.01138855330646038, + -0.005005662329494953, + 0.06551346927881241, + 0.07369823008775711, + -0.05649244785308838, + 0.015408098697662354, + -0.0038135298527777195, + -0.072934091091156, + -0.008028294891119003, + -0.05762318894267082, + 0.044432613998651505, + -0.02396346442401409, + -0.002699717413634062, + 0.03849802538752556, + -0.06767488270998001, + 0.056071631610393524, + 0.023509493097662926, + -0.14398951828479767, + 0.027905011549592018, + 0.05408904701471329, + 0.01396545022726059, + 0.036995574831962585, + -0.00642920657992363, + 0.004983710590749979, + 0.04676368832588196, + -0.042540423572063446, + -0.05202094465494156, + -0.003591957502067089, + -0.004041626118123531, + -0.08581581711769104, + -0.01906781643629074, + -0.042040515691041946, + 0.04543399438261986, + 0.09492495656013489, + 0.10959093272686005, + -0.05381990969181061, + -0.07976187765598297, + 0.05578514561057091, + -0.0051443446427583694, + 0.005622704513370991, + 0.012188459746539593, + -0.11923801153898239, + 0.0441322959959507, + 0.049699440598487854, + -0.0154579421505332, + -0.01943228207528591, + 0.008194245398044586, + 0.06617115437984467, + -0.02175530605018139, + -0.007723309099674225, + 0.06739622354507446, + -0.0239393413066864, + 0.051952045410871506, + -0.035497330129146576, + 0.019307546317577362, + -0.026449663564562798, + 0.05176004767417908, + 0.08615993708372116, + 0.014570153318345547, + 0.0465845987200737, + 0.013889515772461891, + 0.03087032400071621, + 0.05239132419228554, + -0.025166155770421028, + 0.037200674414634705, + -0.1059643104672432, + 0.0442049615085125, + 0.003196285804733634, + -0.004001137334853411, + -0.07578922063112259, + 0.020903781056404114, + -0.024040985852479935, + 0.1423216015100479, + 0.04630565270781517, + 0.004438447766005993, + 0.08469406515359879, + -0.07597704231739044, + -0.05904482305049896, + 0.03844112157821655, + -0.11212067306041718, + 0.012633882462978363, + -0.05296235531568527, + -0.07415749132633209, + -0.09400181472301483, + -5.473773933260447e-34, + 0.01627151481807232, + -0.039142198860645294, + -0.02523903362452984, + -0.0853072926402092, + -0.07647889852523804, + 0.038163699209690094, + -0.051868680864572525, + -0.04999268800020218, + 0.06859470903873444, + 0.04743463918566704, + -0.03141205385327339, + 0.0007865253719501197, + 0.01756526157259941, + -0.023974139243364334, + -0.05742863565683365, + 0.03690995275974274, + 0.045594148337841034, + -0.027334796264767647, + -0.0661623552441597, + 0.08023153245449066, + -0.02433205023407936, + 0.004394747316837311, + -0.1366812288761139, + 0.07127008587121964, + 0.0025983061641454697, + 0.014653073623776436, + -0.07064251601696014, + -0.05190876126289368, + -0.023318074643611908, + -0.03969666361808777, + -0.12027686834335327, + -0.043353259563446045, + -0.0037317010574042797, + 0.13038648664951324, + -0.08692759275436401, + 0.06049187853932381, + 0.05612510070204735, + -0.07404154539108276, + 0.02606027014553547, + 0.004382900893688202, + 0.05726547911763191, + 0.012629547156393528, + 0.05296289548277855, + 0.07076013833284378, + -0.03921005129814148, + -0.055952735245227814, + -0.05207768827676773, + -0.1047821119427681, + -0.04253806546330452, + 0.005447393283247948, + 0.03814428299665451, + 0.026743505150079727, + -0.05838799476623535, + -0.03223036974668503, + -0.0002852917823474854, + 0.020692765712738037, + -0.012441816739737988, + -0.012247658334672451, + -0.05116334185004234, + 0.07029639184474945, + 0.008478345349431038, + 0.056792981922626495, + -0.03988497331738472, + 0.08230111747980118, + -0.02206164039671421, + -0.07136457413434982, + -0.024470293894410133, + -0.03438667580485344, + -0.012084396556019783, + -0.03809695318341255, + -0.025683356449007988, + 0.013291718438267708, + -0.08861793577671051, + 0.01030085701495409, + -0.0795586109161377, + -0.05809031054377556, + 0.07840677350759506, + 0.06679897010326385, + -0.031842321157455444, + -0.006330725736916065, + 0.013590437360107899, + -0.017491163685917854, + -0.06792596727609634, + 0.06976260244846344, + 0.02172057330608368, + 0.020197350531816483, + -0.003695906139910221, + -0.02333861216902733, + 0.039492107927799225, + 0.018631586804986, + -0.06545581668615341, + 0.03209568187594414, + -0.0892140343785286, + -0.013510830700397491, + -0.07134560495615005, + -2.4145792920649e-08, + -0.04908047243952751, + 0.023800376802682877, + -0.05940058082342148, + -0.026393989101052284, + 0.0025947352405637503, + -0.12369240075349808, + 0.05389220640063286, + 0.017114689573645592, + -0.03668220713734627, + 0.010399081744253635, + -0.0023626848123967648, + 0.019238514825701714, + -0.08499637991189957, + 0.06673039495944977, + 0.0028309705667197704, + -0.008831365033984184, + -0.024065637961030006, + 0.023798314854502678, + -0.024599922820925713, + -0.030124599114060402, + 0.01370424684137106, + 0.09393391758203506, + 0.010790872387588024, + 0.0020383717492222786, + -0.0007766925846226513, + -0.0032118058297783136, + -0.04657338187098503, + -0.059467464685440063, + 0.08250787854194641, + 0.03958950936794281, + 0.038459766656160355, + 0.10968133062124252, + -0.028397709131240845, + 0.014907862059772015, + -0.053557030856609344, + -0.016612280160188675, + 0.038205716758966446, + 0.02247711643576622, + -0.019645914435386658, + 0.02242354489862919, + -0.007584214676171541, + -0.03907123953104019, + -0.04299914091825485, + 0.005351873114705086, + 0.01116612646728754, + 0.026837816461920738, + -0.01773829013109207, + -0.032879818230867386, + -0.039451275020837784, + -0.12976548075675964, + -0.043832045048475266, + -0.004186345264315605, + 0.02698168344795704, + 0.013810642063617706, + 0.014088031835854053, + 0.0016682266723364592, + 0.0033646791707724333, + 0.016132645308971405, + 0.049698151648044586, + -0.054681580513715744, + 0.10675504058599472, + -0.0170299019664526, + 0.010139355435967445, + 0.06809895485639572 + ], + "building-apartment-bold||*new*,places,locations,buildings": [ + 0.055953964591026306, + -0.046389319002628326, + 0.017691057175397873, + 0.04815521463751793, + -0.005078325513750315, + 0.015420293435454369, + -0.009839050471782684, + -0.06910353153944016, + -0.01976194605231285, + 0.004721891134977341, + 0.07178652286529541, + -0.007577921729534864, + 0.020519033074378967, + -0.013744487427175045, + 0.027459751814603806, + 0.040949296206235886, + 0.07352562248706818, + 0.07666383683681488, + 0.033114150166511536, + -0.00743634020909667, + 0.02990874834358692, + 0.009096330963075161, + 0.018387965857982635, + 0.0032321354374289513, + 0.09916605055332184, + 0.05470316484570503, + 0.030543284490704536, + 0.061042629182338715, + 0.05342941731214523, + -0.024861332029104233, + 0.03588725998997688, + 0.0241068284958601, + 0.15295884013175964, + 0.0008905926952138543, + 0.14031217992305756, + 0.06431987881660461, + 0.026226406916975975, + 0.013689650222659111, + 0.016275595873594284, + 0.03390936926007271, + 0.003314956557005644, + -0.009021061472594738, + 0.03806135430932045, + -0.007145314943045378, + -0.046058107167482376, + -0.0041028354316949844, + -0.02456265315413475, + -0.034811779856681824, + 0.0438397191464901, + -0.0340920053422451, + -0.019470999017357826, + -0.011771840043365955, + -0.09942135214805603, + 0.03483782336115837, + -0.02375190705060959, + 0.04906359687447548, + -0.05371591076254845, + -0.013023764826357365, + 0.03930092975497246, + -0.05260651558637619, + 0.11047559231519699, + -0.0074657266959548, + 0.04169893637299538, + 0.05450320243835449, + 0.010846284218132496, + 0.016880299896001816, + -0.07673367112874985, + 0.06475314497947693, + -0.00794105976819992, + -0.0424659289419651, + 0.030391719192266464, + 2.4695102183613926e-05, + 0.0036137003917247057, + 0.008811146952211857, + -0.016481932252645493, + -0.010053749196231365, + -0.021195819601416588, + -0.00976468063890934, + -0.05148482322692871, + -0.06835420429706573, + 0.000853729376103729, + -0.07864674925804138, + -0.06112273409962654, + 0.0018627283861860633, + -0.013032980263233185, + 0.027331333607435226, + -0.03816276788711548, + 0.026377487927675247, + -0.026499109342694283, + -0.05686895549297333, + -0.003514564363285899, + 0.007493469398468733, + -0.045874256640672684, + 0.030250219628214836, + -0.040415093302726746, + 0.0003254217153880745, + -0.04962509125471115, + -0.050174351781606674, + -0.032040201127529144, + 0.06512348353862762, + -0.02684391848742962, + 0.0033231601119041443, + 0.06299032270908356, + 0.04639250412583351, + -0.04122743755578995, + -0.05033087730407715, + -0.04461902007460594, + 0.008799121715128422, + -0.0707627683877945, + 0.021816520020365715, + -0.01713603362441063, + -0.07766612619161606, + -0.029440317302942276, + -0.053246963769197464, + 0.008805661462247372, + -0.03142527490854263, + 0.0073130070231854916, + -0.05543065816164017, + 0.08557479828596115, + 0.05108672007918358, + 0.06122399866580963, + -0.06462450325489044, + -0.04094330593943596, + -0.042828429490327835, + -0.05820053815841675, + -0.0026930728927254677, + -0.016774587333202362, + -3.261672093217433e-33, + 0.03713851422071457, + 0.07376345247030258, + -0.07037623226642609, + 0.15708225965499878, + 0.05671488121151924, + -0.030826998874545097, + -0.05440305173397064, + 0.06041327491402626, + -0.029231013730168343, + 0.10029544681310654, + 0.1349264532327652, + -0.01370210200548172, + -0.019454874098300934, + 0.07310112565755844, + 0.06412724405527115, + -0.017748121172189713, + 0.010399505496025085, + 0.015129165723919868, + -0.04710463061928749, + 0.032439496368169785, + -0.04579656571149826, + 0.059577371925115585, + -0.0004768731305375695, + -0.015811368823051453, + 0.008482909761369228, + -0.0712125301361084, + 0.06573408097028732, + -0.018486926332116127, + -0.122776560485363, + 0.005170478951185942, + 0.008120132610201836, + 0.04894416034221649, + 0.03871335834264755, + -0.016716882586479187, + -0.026846349239349365, + 0.032004814594984055, + -0.03999243304133415, + -0.03673720732331276, + -0.04436374828219414, + 0.008120952174067497, + -0.07261617481708527, + -0.0025132682640105486, + -0.029752092435956, + 0.0353175587952137, + 0.1291724443435669, + 0.1203332170844078, + -0.04373246803879738, + -0.07530120760202408, + 0.06534820050001144, + 0.009599288925528526, + 0.012007512152194977, + 0.0019888512324541807, + -0.1919727623462677, + 0.05900992453098297, + 0.022246642038226128, + -0.021599508821964264, + -0.024228259921073914, + 0.013867036439478397, + 0.08541881293058395, + -0.029834723100066185, + 0.008843667805194855, + 0.03711738809943199, + -0.012001454830169678, + 0.026288829743862152, + -0.012044266797602177, + -0.010821224190294743, + -0.013874992728233337, + 0.049920883029699326, + 0.09003005176782608, + 0.006018857471644878, + 0.022280743345618248, + -0.012789796106517315, + 0.026203632354736328, + 0.047148797661066055, + 0.010151351802051067, + 0.013733884319663048, + -0.12677572667598724, + 0.0466751791536808, + -0.026731643825769424, + -0.021530425176024437, + -0.03078090399503708, + 0.013923791237175465, + -0.019084792584180832, + 0.1607208549976349, + 0.04630060866475105, + 0.005003525409847498, + 0.05712201073765755, + -0.05983636528253555, + -0.06004195287823677, + 0.0389830619096756, + -0.04533267766237259, + 0.007968714460730553, + -0.07786547392606735, + -0.08185742795467377, + -0.06173080950975418, + -2.3929722170681623e-34, + 0.0009690859005786479, + -0.05501382052898407, + -0.05660552904009819, + -0.10476735234260559, + -0.060143496841192245, + 0.046812474727630615, + -0.11190412938594818, + -0.04274464771151543, + 0.08097974210977554, + 0.044051144272089005, + -0.05856584385037422, + -0.03849009424448013, + 0.05550060421228409, + -0.04345013201236725, + -0.04376377910375595, + 0.04539638012647629, + 0.04070906341075897, + -0.05384422093629837, + -0.042893845587968826, + 0.08969468623399734, + -0.0160187017172575, + -0.0009475733386352658, + -0.1226401999592781, + 0.05819418653845787, + 0.0072251418605446815, + 0.031390249729156494, + -0.053391654044389725, + -0.00725173344835639, + -0.033529650419950485, + -0.0372004471719265, + -0.14976339042186737, + -0.0441758818924427, + -0.018317952752113342, + 0.10908365249633789, + -0.045407071709632874, + 0.07952611893415451, + 0.038193270564079285, + -0.08562207967042923, + -0.018757199868559837, + 0.03174513950943947, + 0.038689203560352325, + -0.02206670492887497, + 0.03509367257356644, + 0.037418778985738754, + -0.004930029157549143, + -0.058258768171072006, + -0.0664357915520668, + -0.0614701509475708, + -0.05301622301340103, + 0.011288280598819256, + 0.048059746623039246, + 0.033998578786849976, + -0.08443506062030792, + -0.03713206574320793, + 0.01684698276221752, + 0.0170519407838583, + -0.014173918403685093, + -0.005879923701286316, + -0.020664235576987267, + 0.0679965391755104, + 0.0011797781335189939, + 0.046995438635349274, + -0.06687390804290771, + 0.07951630651950836, + -0.06237801909446716, + -0.06648252159357071, + -0.036456190049648285, + -0.0708894431591034, + 0.006946483626961708, + 0.001608740072697401, + -0.016172334551811218, + 0.0034940941259264946, + -0.07929473370313644, + -0.012049097567796707, + -0.04440675303339958, + -0.027771424502134323, + 0.0928921103477478, + 0.04151495173573494, + -0.03314127027988434, + -0.024343714118003845, + -0.031104307621717453, + -0.00013334104733075947, + -0.07679153978824615, + 0.043109338730573654, + 0.03771434351801872, + 0.0015060235746204853, + -0.02501394785940647, + 0.0014286546502262354, + 0.031126247718930244, + 0.022664876654744148, + -0.048706065863370895, + 0.09003783762454987, + -0.11745347827672958, + -0.041257839649915695, + -0.0666901022195816, + -2.1516079584671388e-08, + -0.03346642851829529, + 0.04043661803007126, + -0.07791420817375183, + -0.03333412855863571, + 0.01746881939470768, + -0.11437465250492096, + 0.03357069194316864, + 0.034861598163843155, + -0.0336998775601387, + 0.020559178665280342, + 0.018252013251185417, + 0.01586691290140152, + -0.029406163841485977, + 0.04811319336295128, + -0.025114938616752625, + -0.006002298090606928, + -0.008608074858784676, + -0.01985342800617218, + -0.030591357499361038, + -0.012312987819314003, + 0.018150875344872475, + 0.06944816559553146, + 0.009256112389266491, + -0.017125336453318596, + -0.022568661719560623, + -0.015452907420694828, + -0.06214965879917145, + -0.06264273822307587, + 0.07380829006433487, + 0.06030915677547455, + 0.035410378128290176, + 0.09220921248197556, + -0.017663057893514633, + -0.0015796994557604194, + -0.022382069379091263, + 0.008570837788283825, + 0.058326151221990585, + 0.002474527107551694, + -0.016660770401358604, + -0.019632648676633835, + -0.009318926371634007, + -0.08960742503404617, + -0.06507830321788788, + -0.009430449455976486, + 0.002399381482973695, + 0.008565934374928474, + 0.046308908611536026, + -0.06879333406686783, + -0.011393635533750057, + -0.08468668907880783, + -0.05828193947672844, + -0.013689222745597363, + -0.016483863815665245, + 0.01593216508626938, + 0.03205288574099541, + -0.014446617104113102, + -0.028719620779156685, + 0.023875819519162178, + 0.0691322535276413, + -0.03475840017199516, + 0.07780136168003082, + 0.015059206634759903, + -0.034864939749240875, + 0.04533568397164345 + ], + "building-office-bold||*new*,places,locations,company,business,buildings": [ + 0.034391969442367554, + -0.03984978795051575, + 0.016858089715242386, + 0.03820117935538292, + -0.014354992657899857, + 0.0062256366945803165, + -0.021221935749053955, + -0.07098258286714554, + -0.007759804371744394, + -0.013051608577370644, + 0.009093012660741806, + 0.0402875654399395, + 0.013059898279607296, + -0.01679832488298416, + 0.022408397868275642, + 0.03392060473561287, + 0.06096817925572395, + 0.05760277435183525, + 0.0507383793592453, + 0.03537444770336151, + 0.04783464968204498, + 0.02779988944530487, + -0.0034116380847990513, + 0.008098015561699867, + 0.0937795341014862, + 0.05652220919728279, + 0.005324710160493851, + 0.0603950098156929, + 0.03740265220403671, + -0.07065572589635849, + -0.012897025793790817, + 0.003221076214686036, + 0.14791126549243927, + 0.032682232558727264, + 0.1399146467447281, + 0.05089787766337395, + 0.029698774218559265, + 0.020151963457465172, + 0.05970658361911774, + 0.02310038171708584, + -0.036937352269887924, + -0.05347486212849617, + 0.0040176487527787685, + 0.0033764305990189314, + 0.0023744821082800627, + -0.03295867145061493, + -0.046101558953523636, + -0.026690181344747543, + 0.06967370212078094, + -0.0037569128908216953, + -0.04133418947458267, + -0.08363833278417587, + -0.1022675484418869, + 0.01684577390551567, + -0.00026538074598647654, + 0.04035012051463127, + -0.05427153781056404, + -0.0150816161185503, + 0.00038384669460356236, + -0.06432010978460312, + 0.08235903829336166, + -0.014124762266874313, + 0.0075997719541192055, + 0.07163063436746597, + 0.015153213404119015, + 0.024255042895674706, + -0.07853139191865921, + 0.0602257065474987, + -0.0680064857006073, + -0.053289856761693954, + 0.029208457097411156, + -0.02349456399679184, + 0.021022362634539604, + 0.009868975728750229, + -0.020079515874385834, + -0.016851995140314102, + -0.028810914605855942, + -0.009274790063500404, + -0.02493060939013958, + -0.05308777466416359, + 0.012188727036118507, + -0.022789468988776207, + -0.07507464289665222, + 0.07096000015735626, + -0.023170866072177887, + 0.03625879064202309, + -0.012960935942828655, + 0.00875547993928194, + -0.002157912589609623, + -0.02262783795595169, + -0.05496208369731903, + -0.0524122528731823, + -0.048332877457141876, + 0.04604743793606758, + -0.09156477451324463, + -0.011819582432508469, + -0.027236085385084152, + -0.02953413687646389, + 0.02917771227657795, + 0.038675736635923386, + -0.039719536900520325, + 0.00616332096979022, + 0.09506894648075104, + 0.008390017785131931, + -0.06748117506504059, + -0.04803578928112984, + -0.05191564932465553, + 0.013270729221403599, + -0.04017726704478264, + 0.013135937042534351, + -0.03576638922095299, + -0.059603046625852585, + -0.06962816417217255, + -0.08692900091409683, + -0.03390972316265106, + -0.040464915335178375, + -0.05288367345929146, + -0.06522195786237717, + 0.09481792151927948, + 0.049887605011463165, + 0.040112435817718506, + -0.03431958332657814, + -0.019430674612522125, + -0.06873901188373566, + -0.11015822738409042, + -0.014926024712622166, + -0.01048898696899414, + -3.978729892032767e-33, + 0.02767982892692089, + 0.05127264931797981, + -0.03280062973499298, + 0.1588270664215088, + 0.07600387930870056, + -0.0008861422538757324, + -0.0491790808737278, + 0.04405449703335762, + -0.04110097512602806, + 0.0881931483745575, + 0.08173251897096634, + 0.013715958222746849, + -0.01695696823298931, + 0.04941499978303909, + 0.0633007138967514, + -0.04238932579755783, + 0.03472939133644104, + 0.021975049749016762, + -0.09060482680797577, + -0.003948268946260214, + -0.03908492624759674, + 0.03180285543203354, + -0.02357611432671547, + -0.001949033234268427, + 0.01910438761115074, + -0.038448452949523926, + 0.06035918369889259, + 0.013217116706073284, + -0.08882010728120804, + 0.020986663177609444, + 0.04892398416996002, + -0.007333938032388687, + 0.04211156442761421, + -0.01390039548277855, + -0.009468432515859604, + 0.0223593357950449, + -0.049877289682626724, + -0.05587982386350632, + 0.029514670372009277, + 0.011888643726706505, + -0.11756300181150436, + -0.006385951768606901, + -0.010194076225161552, + 0.04215561971068382, + 0.10487790405750275, + 0.11607814580202103, + -0.02745133452117443, + -0.05705063417553902, + 0.09136737138032913, + 0.021327059715986252, + 0.015459004789590836, + -0.005585305392742157, + -0.1142912283539772, + 0.08018991351127625, + 0.042513035237789154, + -0.03452170267701149, + -0.025031041353940964, + 0.016468307003378868, + 0.08955633640289307, + -0.02985677868127823, + -0.002634030068293214, + 0.08086946606636047, + 1.1084243851655629e-05, + 0.040616102516651154, + -0.037064675241708755, + 0.0065062204375863075, + -0.012100164778530598, + 0.024295885115861893, + 0.09813398122787476, + 0.01393396221101284, + 0.057224441319704056, + -0.01792297512292862, + 0.03598516434431076, + 0.049648139625787735, + -0.00394641887396574, + 0.036962371319532394, + -0.0910714715719223, + 0.03866078704595566, + -0.01592887192964554, + -0.040982019156217575, + -0.0774744302034378, + 0.011578010395169258, + -0.0072718290612101555, + 0.12141592800617218, + 0.019431039690971375, + 0.03544760122895241, + 0.10112171620130539, + -0.07804388552904129, + -0.06914418190717697, + 0.056941986083984375, + -0.09335610270500183, + 0.008927949704229832, + -0.07661578804254532, + -0.042387954890728, + -0.08388209342956543, + 1.1393108209529284e-34, + 0.04387444257736206, + -0.07697092741727829, + -0.03750211372971535, + -0.09384366124868393, + -0.0593704916536808, + 0.06862100958824158, + -0.03495578095316887, + -0.038106195628643036, + 0.05955906957387924, + 0.05320897698402405, + -0.018361175432801247, + -0.011383084580302238, + 0.02032490074634552, + 0.008639070205390453, + -0.051281437277793884, + 0.03175119683146477, + 0.0495290532708168, + -0.020694077014923096, + -0.07858432084321976, + 0.09155561029911041, + -0.011349384672939777, + -0.015895986929535866, + -0.12491011619567871, + 0.08169221132993698, + 0.02871217206120491, + 0.01186382956802845, + -0.07309240102767944, + -0.06578121334314346, + -0.0030852898489683867, + -0.013709006831049919, + -0.1430480033159256, + -0.022876758128404617, + -0.023775147274136543, + 0.1447715014219284, + -0.060299668461084366, + 0.053097281605005264, + 0.022417142987251282, + -0.08442118018865585, + 0.03336165472865105, + 0.03227023780345917, + 0.05937742441892624, + -0.0011616047704592347, + 0.04539600759744644, + 0.08008716255426407, + -0.023323770612478256, + -0.05591408163309097, + -0.08962146937847137, + -0.09450609982013702, + -0.05062981694936752, + -0.010463069193065166, + 0.01175465527921915, + 0.03672183305025101, + -0.09388077259063721, + -0.04348296299576759, + -0.011668376624584198, + 0.03934512287378311, + -0.018100513145327568, + -0.044013861566782, + -0.04287203028798103, + 0.05446261912584305, + -0.011657541617751122, + 0.035686660557985306, + -0.03915853798389435, + 0.07341738790273666, + -0.022849081084132195, + -0.03178625926375389, + -0.00971002783626318, + -0.05541982874274254, + -0.007563172839581966, + -0.020340101793408394, + -0.020805086940526962, + 0.008297361433506012, + -0.10139724612236023, + -0.020448526367545128, + -0.06910151243209839, + -0.03548422083258629, + 0.0648888498544693, + 0.026247331872582436, + -0.055852774530649185, + -0.015856726095080376, + 0.016775792464613914, + 0.005948503501713276, + -0.060469042509794235, + 0.048464927822351456, + -0.004602312110364437, + 0.029079101979732513, + -0.009469610638916492, + -0.020126216113567352, + -0.01641545444726944, + 0.022497253492474556, + -0.06877028942108154, + 0.0335981547832489, + -0.07493282109498978, + -0.0020501071121543646, + -0.07243742793798447, + -2.341970528618731e-08, + -0.06671078503131866, + 0.03055998496711254, + -0.02099739760160446, + -0.02368088625371456, + 0.005133011844009161, + -0.12056287378072739, + 0.04998869076371193, + 0.03318650647997856, + -0.010195264592766762, + 0.01708894781768322, + 0.027591656893491745, + -0.021369684487581253, + -0.08224061131477356, + 0.07498902827501297, + 0.006594582926481962, + 0.022575777024030685, + -0.03296808525919914, + 0.018292071297764778, + -0.01758243702352047, + -0.012014057487249374, + 0.021261686459183693, + 0.07742982357740402, + 0.01727464236319065, + 0.002310193842276931, + 0.0213973019272089, + 0.009411098435521126, + -0.04985380545258522, + -0.039983801543712616, + 0.07499096542596817, + 0.058065444231033325, + 0.06267335265874863, + 0.11298561096191406, + -0.041728679090738297, + 0.006655083503574133, + -0.049849577248096466, + -0.017449432983994484, + 0.04061013460159302, + 0.04939671978354454, + -0.03348430618643761, + 0.027791820466518402, + -0.020357221364974976, + -0.05771796405315399, + -0.06129280850291252, + -0.00034758736728690565, + 0.014014831744134426, + 0.01005434338003397, + 0.01547700259834528, + -0.02377786859869957, + -0.029219066724181175, + -0.13161061704158783, + -0.03373163193464279, + -0.0010731405345723033, + 0.03233293443918228, + -0.008358791470527649, + -0.009761585853993893, + 0.002500166418030858, + 0.025285013020038605, + 0.01395475585013628, + 0.0455964058637619, + -0.04592166841030121, + 0.07269793748855591, + -0.005102300550788641, + 0.0065541802905499935, + 0.06591205298900604 + ], + "buildings-bold||places,locations,company,business": [ + 0.07482673227787018, + -0.005728552117943764, + -0.00775974290445447, + 0.0580800399184227, + -0.0004115995252504945, + -0.016892077401280403, + -0.008572359569370747, + -0.0769563764333725, + -0.01348735112696886, + -0.03587540239095688, + 0.029154887422919273, + 0.0011620521545410156, + 0.036188505589962006, + -0.02657453715801239, + 0.027154698967933655, + 0.02273830585181713, + 0.07485605776309967, + 0.09213632345199585, + 0.04228435084223747, + -0.004264201503247023, + 0.011918445117771626, + 0.014352276921272278, + 0.015510096214711666, + 0.021005652844905853, + 0.06176312640309334, + 0.050776273012161255, + 0.0023985716979950666, + 0.08011431992053986, + 0.033482763916254044, + -0.07772034406661987, + 0.01261462178081274, + -0.025828910991549492, + 0.1320085972547531, + 0.025327088311314583, + 0.10788077861070633, + 0.0790766254067421, + -0.0003577032475732267, + -0.018921373412013054, + 0.04957660287618637, + 0.01703009009361267, + -0.020058810710906982, + -0.032115332782268524, + 0.021478760987520218, + -0.03411189466714859, + 0.003047879319638014, + -0.019493039697408676, + -0.05390840023756027, + -0.04225573316216469, + 0.05115770921111107, + -0.03505416586995125, + -0.018210360780358315, + -0.03058580681681633, + -0.08809901773929596, + 0.006414956413209438, + -0.017917148768901825, + 0.057201165705919266, + -0.08760642260313034, + -0.008015455678105354, + 0.03306550905108452, + -0.07192138582468033, + 0.1144706979393959, + -0.006708047818392515, + 0.0002588827337604016, + 0.043995197862386703, + 0.05043170228600502, + 0.04386228695511818, + -0.049831949174404144, + 0.08353812992572784, + -0.058981508016586304, + -0.06893787533044815, + 0.11227896809577942, + -0.06700358539819717, + 0.018892256543040276, + -0.018711749464273453, + -0.02589050680398941, + -0.014235238544642925, + -0.007142036221921444, + -0.02965369261801243, + -0.05694189295172691, + -0.0757485181093216, + 0.003712219186127186, + -0.04186157509684563, + -0.05405602976679802, + 0.05696235969662666, + -0.03534027934074402, + 0.04337841644883156, + -0.029405174776911736, + 0.014725503511726856, + 0.01981797069311142, + -0.026024112477898598, + -0.012815798632800579, + -0.05094015598297119, + -0.054825231432914734, + 0.023100709542632103, + -0.0427870899438858, + -0.004345436580479145, + -0.04315652698278427, + -0.034824833273887634, + 0.014586292207241058, + 0.04467155411839485, + 0.0011004986008629203, + 0.014872636646032333, + 0.0839753970503807, + 0.02525874227285385, + -0.06431762874126434, + -0.028446322306990623, + -0.046137645840644836, + 0.041142936795949936, + -0.03827936574816704, + 0.006530069280415773, + -0.04127819836139679, + -0.03419455140829086, + -0.04483502358198166, + -0.05270356684923172, + -0.024521857500076294, + -0.07314218580722809, + -0.006723348051309586, + -0.07177618891000748, + 0.09786359965801239, + 0.003895063418895006, + 0.043105825781822205, + -0.024281837046146393, + -0.0015397388488054276, + -0.05850594490766525, + -0.07802195847034454, + -0.01591150276362896, + -0.016772739589214325, + -4.414811480222958e-33, + 0.006847382057458162, + 0.04169290512800217, + -0.038733746856451035, + 0.15290626883506775, + 0.06403134018182755, + -0.021541863679885864, + -0.02575843781232834, + 0.009342893958091736, + -0.055086757987737656, + 0.09530549496412277, + 0.09840302169322968, + 0.01077550183981657, + -0.003518796293064952, + 0.055001385509967804, + 0.08309417217969894, + -0.028316689655184746, + 0.033047012984752655, + -0.013208356685936451, + -0.0696396753191948, + -0.015759598463773727, + -0.03670908138155937, + 0.020160051062703133, + -0.033316582441329956, + -0.01134935300797224, + 0.04541430622339249, + -0.057013750076293945, + 0.0347440168261528, + 0.057348962873220444, + -0.11483247578144073, + 0.03050384484231472, + 0.0760377049446106, + 0.02813589572906494, + 0.02476518787443638, + -0.013101678341627121, + -0.0009881944861263037, + 0.03994598239660263, + -0.07147642970085144, + -0.05201224982738495, + 0.006919594947248697, + -0.002963587176054716, + -0.07944923639297485, + -0.007416290696710348, + -0.04040827229619026, + 0.07065046578645706, + 0.07844191044569016, + 0.13582687079906464, + -0.032032839953899384, + -0.06015529856085777, + 0.0766870453953743, + -0.011474919505417347, + 0.016929296776652336, + 0.021897347643971443, + -0.14664821326732635, + 0.045558441430330276, + 0.061016783118247986, + -0.03221523389220238, + -0.012629445642232895, + 0.02730496972799301, + 0.04280809313058853, + 0.009146765805780888, + -0.007109755650162697, + 0.06278388947248459, + -0.043092358857393265, + -0.002050886396318674, + -0.01356470212340355, + 0.004766596015542746, + -0.03901650011539459, + 0.08025359362363815, + 0.07553955167531967, + 0.01441626250743866, + 0.0522114560008049, + 0.008233017288148403, + 0.08165226131677628, + 0.050339676439762115, + -0.022851519286632538, + 0.05276170000433922, + -0.1105131208896637, + 0.05064477398991585, + -0.015508600510656834, + 0.02995334193110466, + -0.06390838325023651, + 0.03725747391581535, + 0.006923170760273933, + 0.13226017355918884, + 0.046688586473464966, + 0.0161210335791111, + 0.08606059849262238, + -0.08222851157188416, + -0.049572400748729706, + 0.04890087619423866, + -0.09937340766191483, + 0.03117826022207737, + -0.0251654963940382, + -0.06571216881275177, + -0.1257442831993103, + 1.2355123373103888e-33, + 0.022968895733356476, + -0.04069490730762482, + -0.015984123572707176, + -0.08210348337888718, + -0.0490955114364624, + 0.06806223839521408, + -0.07713613659143448, + -0.040971823036670685, + 0.03171556815505028, + 0.042601555585861206, + -0.06781037151813507, + 0.004416030831634998, + 0.019671568647027016, + -0.03833264857530594, + -0.05131407454609871, + 0.042243506759405136, + 0.08292628824710846, + -0.06098790094256401, + -0.08223371207714081, + 0.06008707359433174, + -0.0068485620431602, + 0.0045647514052689075, + -0.11745651811361313, + 0.07675360143184662, + -0.020438581705093384, + 0.04460693523287773, + -0.10377627611160278, + -0.06170189008116722, + -1.1163028830196708e-05, + -0.022105352953076363, + -0.1350606083869934, + -0.039722803980112076, + -0.004695243667811155, + 0.1237712949514389, + -0.05179527774453163, + 0.06474839895963669, + 0.029174575582146645, + -0.06323352456092834, + 0.027226150035858154, + -0.0011631359811872244, + 0.04810858890414238, + 0.004653123207390308, + 0.04384439438581467, + 0.0667421743273735, + -0.002803565701469779, + -0.03340906649827957, + -0.07414629310369492, + -0.09594452381134033, + -0.03497053682804108, + -0.010383261367678642, + 0.02158118225634098, + 0.032608963549137115, + -0.07783608138561249, + -0.007538740523159504, + 0.009327512234449387, + -0.004586036317050457, + -0.012369097210466862, + -0.007508714217692614, + -0.028902998194098473, + 0.07741045951843262, + 0.017155038192868233, + 0.05209142342209816, + -0.03970170021057129, + 0.09464012086391449, + -0.03091682307422161, + -0.029744800180196762, + -0.006035147234797478, + -0.055105920881032944, + 0.004152713343501091, + -0.04944099485874176, + -0.014504671096801758, + -0.008843380026519299, + -0.04061853513121605, + 0.017105091363191605, + -0.06329440325498581, + -0.04018447548151016, + 0.08185788244009018, + 0.07318845391273499, + -0.011608275584876537, + 0.007409357000142336, + 0.02150125801563263, + -0.022299835458397865, + -0.07014510035514832, + 0.08004587888717651, + 0.014928829856216908, + 0.022596346214413643, + -0.02288283407688141, + -0.038724444806575775, + 0.053849540650844574, + -0.0019002583576366305, + -0.06500733643770218, + 0.02902856655418873, + -0.05944789946079254, + -0.019908761605620384, + -0.04686012491583824, + -1.9808151563438514e-08, + -0.0440891794860363, + 0.008515158668160439, + -0.041310109198093414, + -0.032592203468084335, + -0.03102254308760166, + -0.11449572443962097, + 0.08184555172920227, + 0.04053352400660515, + -0.029114848002791405, + 0.032257549464702606, + -0.013256593607366085, + 0.008969702757894993, + -0.09296797960996628, + 0.0561019591987133, + -0.015542294830083847, + -0.011569246649742126, + -0.06840117275714874, + 0.007949919439852238, + -0.00804304052144289, + -0.01412417646497488, + 0.026964465156197548, + 0.07496973127126694, + 0.015080075711011887, + -0.016456881538033485, + -0.0028883679769933224, + -0.0008763759979046881, + -0.04869737848639488, + -0.05202784389257431, + 0.08335168659687042, + 0.058368220925331116, + 0.03157385438680649, + 0.09620672464370728, + -0.021471889689564705, + 0.005520567297935486, + -0.04102184996008873, + -0.011788935400545597, + 0.0578303299844265, + 0.015000227838754654, + -0.038615886121988297, + 0.037939734756946564, + -0.02292001061141491, + -0.08481212705373764, + -0.04292304813861847, + 0.008904374204576015, + 0.03490081802010536, + 0.04037389159202576, + 0.030268998816609383, + 5.2349369070725515e-05, + -0.025277141481637955, + -0.1084790751338005, + -0.055316999554634094, + -0.0135232238098979, + 0.020192893221974373, + -0.0017967710737138987, + -0.030127499252557755, + -0.04777923971414566, + 0.015741074457764626, + -0.028622029349207878, + 0.04396509751677513, + -0.035898078233003616, + 0.08612257242202759, + -0.02484619803726673, + -0.01979527622461319, + 0.04938359931111336 + ], + "bulldozer-bold||*new*,vehicles,construction,earth mover,dig,digger": [ + -0.05930449068546295, + -0.05333096161484718, + 0.04205719009041786, + 0.02201862633228302, + -0.0019172702450305223, + -0.061754751950502396, + -0.008308107033371925, + -0.025402218103408813, + -0.0699906200170517, + 0.042803388088941574, + 0.012359769083559513, + -0.03329606354236603, + 0.015419970266520977, + -0.00848454236984253, + -0.045733679085969925, + 0.12063012272119522, + 0.02670087106525898, + -0.0020669882651418447, + 0.044802967458963394, + -0.02192057855427265, + -0.0007466403767466545, + 0.05885852128267288, + 0.014696321450173855, + 0.056927599012851715, + 0.016228942200541496, + 0.04374712333083153, + -0.07660945504903793, + 0.054296355694532394, + -0.039941415190696716, + -0.1022663339972496, + -0.004563798662275076, + 0.01661788858473301, + 0.06512738764286041, + 0.01711812987923622, + 0.04911775141954422, + 0.05863380804657936, + -0.03944811224937439, + -0.00635673850774765, + -0.0013194407802075148, + 0.06602954119443893, + 0.007969805970788002, + -0.06662863492965698, + 0.03607853502035141, + -0.050826191902160645, + -0.018871750682592392, + -0.0002697579038795084, + -0.033001482486724854, + -0.06505541503429413, + 0.07195203006267548, + 0.01115424744784832, + -0.0011520355474203825, + -0.13180072605609894, + -0.07408652454614639, + 0.027858158573508263, + 0.038590628653764725, + 0.05996173247694969, + -0.008756471797823906, + -0.0784134790301323, + 0.05645216628909111, + -0.0054654572159051895, + 0.07370813935995102, + 0.07828545570373535, + 0.01296674832701683, + 0.0024069410283118486, + 0.030436476692557335, + -0.06112637743353844, + -0.004897170700132847, + 0.020467357710003853, + -0.02925216592848301, + 0.08709302544593811, + 0.06283418834209442, + -0.03152654320001602, + -0.018239248543977737, + -0.0574505552649498, + -0.047986410558223724, + 0.004246769938617945, + 0.03313449025154114, + 0.06474070996046066, + 0.03250335901975632, + -0.1169358342885971, + -0.07197298109531403, + -0.03580460324883461, + -0.05537271127104759, + -0.07937406748533249, + -0.05269373580813408, + 0.07750581204891205, + -0.008639911189675331, + 0.003529791021719575, + 0.042257651686668396, + -0.002106393687427044, + -0.05087576434016228, + -0.0764731913805008, + -0.030708057805895805, + 0.06173224002122879, + -0.025477519258856773, + -0.01454884558916092, + 0.02666022628545761, + -0.014439430087804794, + -0.041990868747234344, + 0.06455056369304657, + 0.0376952700316906, + -0.007494194898754358, + 0.02366553619503975, + -0.07742206007242203, + -0.030442100018262863, + 0.013867613859474659, + -0.09332623332738876, + 0.05546537786722183, + 0.01744522899389267, + 0.028872216120362282, + 0.04766841605305672, + -0.0645211711525917, + 0.01959242671728134, + -0.007497372571378946, + -0.023770811036229134, + -0.038506414741277695, + -0.08397223800420761, + -0.053889308124780655, + -0.013734589330852032, + 0.10947708785533905, + 0.10892908275127411, + -0.040633395314216614, + -0.02362256497144699, + -0.069059818983078, + -0.0027139338199049234, + -0.04466468095779419, + 0.0336248055100441, + -1.2947069267399375e-33, + 0.059806082397699356, + 0.04500048607587814, + -0.043829262256622314, + 0.07108324021100998, + 0.008645251393318176, + 0.05196498706936836, + -0.03890387713909149, + 0.0605199858546257, + -0.045272886753082275, + 0.07024339586496353, + -0.00662902370095253, + 0.09642588347196579, + -0.04127119109034538, + 0.11038707196712494, + -0.03353622183203697, + -0.11955112963914871, + 0.021823670715093613, + -0.010463666170835495, + -0.02253790572285652, + -0.030667364597320557, + -0.07424397021532059, + 0.1038292869925499, + -0.060917310416698456, + -0.026406653225421906, + 0.05879592150449753, + -0.049276869744062424, + 0.02412424609065056, + -0.10510112345218658, + -0.05659761652350426, + 0.03359581530094147, + -0.024757608771324158, + 0.05651244521141052, + 0.042572058737277985, + 0.061374131590127945, + -0.008813275024294853, + 0.03607414290308952, + -0.07323536276817322, + -0.100602887570858, + -0.08610536903142929, + -0.03714681789278984, + -0.028384003788232803, + -0.04836294427514076, + -0.07657023519277573, + -0.026692189276218414, + 0.014051887206733227, + 0.0697450190782547, + 0.021154241636395454, + -0.05209114030003548, + -0.04702288657426834, + 0.016461439430713654, + -0.02646179497241974, + 0.035687655210494995, + 0.029951991513371468, + 0.044835980981588364, + 0.0056452276185154915, + -0.005061745177954435, + 0.04459616169333458, + 0.015513986349105835, + -0.017241643741726875, + -0.03725723922252655, + 0.04604233428835869, + 0.05637625232338905, + 0.04691411927342415, + -0.0045676459558308125, + 0.05714358016848564, + -0.012296633794903755, + 0.03642311692237854, + 0.05642515793442726, + 0.08008658140897751, + 0.06040744110941887, + -0.003118994878605008, + 0.05319415032863617, + 0.019865935668349266, + 0.06902234256267548, + 0.029397575184702873, + -0.006313737481832504, + -0.03043331205844879, + 0.021336641162633896, + -0.014446611516177654, + -0.08395633846521378, + -0.13985756039619446, + 0.02954987995326519, + -0.06693592667579651, + 0.07505800575017929, + 0.0706276223063469, + 0.08496662974357605, + 0.030614623799920082, + -0.031098268926143646, + 0.02026774175465107, + 0.04650387912988663, + -0.13286042213439941, + -0.06178461015224457, + -0.05850878357887268, + -0.036576882004737854, + -0.04636349156498909, + -4.6364720622346165e-34, + 0.019415218383073807, + -0.015295804478228092, + -0.028308920562267303, + 0.057565588504076004, + 0.01419905200600624, + -0.008907738141715527, + 0.0014289043610915542, + -0.010379251092672348, + 0.02910509891808033, + -0.003202861873432994, + -0.0023249206133186817, + 0.028257282450795174, + 0.030445778742432594, + -0.07132378220558167, + 0.12489531934261322, + -0.026830777525901794, + -0.04710790887475014, + -0.03310064226388931, + -0.025536049157381058, + 0.052124571055173874, + 0.028102008625864983, + 0.0023315276484936476, + -0.1307632476091385, + 0.08066833764314651, + 0.04006851837038994, + 0.01312272623181343, + -0.06748791038990021, + -0.04542740806937218, + 0.008385062217712402, + -0.00450083939358592, + -0.04957392439246178, + -0.040764354169368744, + 0.000748612335883081, + -0.001557013252750039, + -0.08301753550767899, + 0.03610726445913315, + 0.03732064738869667, + 0.01735585927963257, + 0.03570600599050522, + 0.030192064121365547, + 0.018776439130306244, + 0.012969868257641792, + 0.04244469106197357, + 0.039828523993492126, + -0.07647895812988281, + -0.05656294897198677, + -0.03364846482872963, + -0.020568285137414932, + -0.037691786885261536, + 0.07920708507299423, + 0.07710429280996323, + 0.002729545347392559, + -0.045743897557258606, + -0.03488391637802124, + -0.052240245044231415, + 0.005186552181839943, + -0.007654622197151184, + -0.0754922553896904, + -0.07945721596479416, + 0.07796274125576019, + 0.007786216214299202, + 0.048426516354084015, + -0.00872910488396883, + 0.05208021029829979, + -0.06521636247634888, + -0.07995399832725525, + -0.019237095490098, + -0.03229337930679321, + -0.04514414072036743, + -0.03187865763902664, + 0.05958721041679382, + 0.026292353868484497, + 0.023479582741856575, + 0.03958796337246895, + 0.0603831447660923, + -0.054652586579322815, + 0.02454569563269615, + 0.0009726561838760972, + 0.028565315529704094, + -0.019489476457238197, + 0.023289546370506287, + -0.020448392257094383, + 0.06187119334936142, + 0.14785519242286682, + -0.0009848409099504352, + 0.03824380040168762, + -0.025067228823900223, + 0.0394086055457592, + 0.02341567724943161, + -0.06190408393740654, + 0.03574705868959427, + 0.031429655849933624, + 0.015990812331438065, + -0.002838659565895796, + -0.0832422524690628, + -2.3667068305144312e-08, + -0.0032673655077815056, + 0.07349496334791183, + -0.07375475764274597, + -0.04628874361515045, + 0.05180062726140022, + 0.0009439608547836542, + 0.004300834611058235, + 0.03813502937555313, + -0.08851450681686401, + -0.03549777343869209, + 0.09768348187208176, + 0.007147977128624916, + -0.044021572917699814, + 0.030258363112807274, + 0.005432882811874151, + -0.02703746035695076, + 0.029602453112602234, + 0.045035671442747116, + -0.059355977922677994, + -0.10662087798118591, + -0.0032233581878244877, + 0.028185542672872543, + 0.037211962044239044, + 0.007853556424379349, + -0.026199307292699814, + -0.009087185375392437, + -0.07351990044116974, + -0.05690751597285271, + 0.04504144564270973, + 0.08014559000730515, + 0.026801763102412224, + 0.08742716908454895, + -0.04385482147336006, + -0.01472424529492855, + 0.030439749360084534, + 0.08345597982406616, + 0.023470096290111542, + 0.00964400265365839, + -0.0018356594955548644, + 0.06048255041241646, + 0.008952237665653229, + 0.05836053937673569, + -0.022496994584798813, + -0.03375549986958504, + -0.06325172632932663, + -0.029029766097664833, + -0.030213426798582077, + -0.10631757229566574, + -0.04132422059774399, + -0.1349380612373352, + -0.01672460325062275, + -0.009823285974562168, + 0.010237723588943481, + 0.08493565022945404, + 0.06072067469358444, + 0.031354885548353195, + -0.003941748756915331, + -0.012859263457357883, + -0.02187676727771759, + -0.001015727175399661, + 0.057495955377817154, + -0.054613616317510605, + 0.06276319175958633, + 0.01525850873440504 + ], + "bus-bold||vehicles,automobile,public transit,transportation,commuter,traveling,places,locations": [ + 0.08324462920427322, + -0.08353270590305328, + 0.020293375477194786, + 0.032775502651929855, + -0.004771614912897348, + 0.054524630308151245, + 0.06287828087806702, + -0.009387214668095112, + -0.04011442884802818, + -0.03803284838795662, + 0.04182714223861694, + 0.05108269676566124, + 0.0726381167769432, + -0.028879743069410324, + -0.018031328916549683, + 0.005290430039167404, + 0.13448022305965424, + 0.0007180665270425379, + 0.01630946807563305, + -0.01812678389251232, + 0.03152504190802574, + 0.030461320653557777, + -0.04525848105549812, + 0.025797637179493904, + 0.010772157460451126, + 0.025067107751965523, + 0.061531659215688705, + -0.02782238833606243, + -0.044923435896635056, + -0.014977923594415188, + -0.06018560007214546, + 0.021589376032352448, + 0.03146090731024742, + 0.05685786157846451, + 0.015563981607556343, + -0.047580063343048096, + 0.009433426894247532, + -0.06911971420049667, + 0.05329363793134689, + -0.004412530921399593, + 0.031147567555308342, + -0.052251387387514114, + -0.040795426815748215, + 0.02423442341387272, + 0.022522393614053726, + -0.018805069848895073, + 0.016102928668260574, + -0.05115576460957527, + 0.024468926712870598, + -0.016938315704464912, + 0.021389929577708244, + -0.051551107317209244, + -0.05119026452302933, + 0.06762562692165375, + -0.060980040580034256, + -0.04350878298282623, + -0.13939765095710754, + 0.05738362669944763, + 0.019404320046305656, + 0.0376046858727932, + 0.011728904210031033, + 0.001173308934085071, + 0.01967708393931389, + 0.08102205395698547, + 0.0064481450244784355, + 0.04003146290779114, + -0.03781602531671524, + 0.01052785012871027, + 0.006540751550346613, + -0.027164539322257042, + 0.06541629880666733, + 0.032123930752277374, + -0.01991727016866207, + -0.03866785764694214, + -0.0022362559102475643, + -0.05193852633237839, + 0.04635459929704666, + 0.009763904847204685, + -0.013885552063584328, + -0.09187484532594681, + -0.07994254678487778, + -0.03596746549010277, + -0.03332854062318802, + 0.033436741679906845, + -0.014016439206898212, + 0.019499633461236954, + -0.07254411280155182, + -0.0420805886387825, + -0.03062293864786625, + -0.0023458676878362894, + -0.020402343943715096, + -0.01921427808701992, + -0.0010128711583092809, + 0.003996658138930798, + -0.08511202037334442, + 0.05321577191352844, + -0.029488176107406616, + -0.03954508155584335, + 0.03569803759455681, + 0.059303294867277145, + -0.0065114437602460384, + 0.08258400857448578, + 0.10553625226020813, + 0.059955209493637085, + -0.10259301960468292, + 0.011252332478761673, + -0.046968791633844376, + -0.030429698526859283, + -0.03816306218504906, + 0.0374872200191021, + 0.05677826330065727, + -0.07366128265857697, + 0.0007552450988441706, + -0.02555849961936474, + -0.08303792029619217, + -0.049262478947639465, + -0.04374946653842926, + -0.003316143760457635, + 0.09086884558200836, + 0.0598720945417881, + -0.07287202030420303, + -0.07046841830015182, + 0.023975512012839317, + -0.008617824874818325, + -0.05824415385723114, + -0.017180945724248886, + -0.008135359734296799, + -3.5901610508188444e-33, + -0.09328173846006393, + 0.008930840529501438, + 0.05774581432342529, + 0.13028369843959808, + 0.009618895128369331, + -0.02814452163875103, + -0.07460340857505798, + -0.08848230540752411, + 0.006991252768784761, + 0.020632760599255562, + 0.04482486471533775, + 0.060741931200027466, + 0.029083628207445145, + 0.021545838564634323, + 0.07417932152748108, + 0.011591489426791668, + -0.029225699603557587, + 0.0002898485108744353, + -0.043645672500133514, + 0.03995659202337265, + 0.0005931457853876054, + 0.030989868566393852, + 0.0014489276800304651, + -0.06439431756734848, + -0.0024987771175801754, + -0.024900417774915695, + 0.014226501807570457, + -0.01192992739379406, + 0.09600680321455002, + 0.054430197924375534, + -0.020650645717978477, + 0.06812132149934769, + 0.03501449152827263, + 0.04762450233101845, + -0.03311784192919731, + 0.005842180456966162, + -0.08240348845720291, + -0.054330289363861084, + -0.04394185543060303, + -0.03001438081264496, + -0.037257369607686996, + -0.053301773965358734, + -0.1165613979101181, + 0.05441068857908249, + 0.013873659074306488, + 0.09777634590864182, + 0.004077956546097994, + -0.030269436538219452, + 0.06405649334192276, + 0.010888825170695782, + -0.05327006056904793, + -0.013337994925677776, + -0.055512797087430954, + -0.060704708099365234, + -0.006292873527854681, + 0.008461597375571728, + -0.015886817127466202, + 0.09706730395555496, + 0.056644923985004425, + 0.008674370124936104, + -0.00219939392991364, + 0.029667243361473083, + 0.07909666001796722, + -0.059567343443632126, + 0.06636427342891693, + 0.03177083283662796, + -0.011629635468125343, + 0.036006517708301544, + 0.09180328994989395, + 0.009075692854821682, + 0.042510099709033966, + 0.01162333507090807, + 0.029744358733296394, + 0.10573616623878479, + 0.07951487600803375, + 0.010090881958603859, + -0.08784863352775574, + -0.025527581572532654, + -0.0508720725774765, + -0.006581844296306372, + -0.1480305939912796, + -0.002626575995236635, + -0.08553078025579453, + 0.10863621532917023, + 0.1441631019115448, + 0.03997667133808136, + -0.011281008832156658, + -0.06468033790588379, + -0.017922498285770416, + 0.004870689008384943, + -0.08595910668373108, + 0.05888970568776131, + -0.02885502576828003, + 0.02973419986665249, + -0.10134925693273544, + -3.69700274255554e-34, + 0.00950684305280447, + -0.00023262416652869433, + -0.020020555704832077, + -0.0574667751789093, + -0.021966762840747833, + 0.007133696228265762, + -0.003233794355764985, + -0.022676916792988777, + 0.0858704149723053, + 0.08572190254926682, + -0.09246817231178284, + -0.05296584591269493, + -0.014746389351785183, + -0.031994760036468506, + -0.00888038333505392, + -0.00772939482703805, + 0.09218106418848038, + -0.0053252712823450565, + -0.10782868415117264, + 0.04410395398736, + -0.09990294277667999, + -0.035409893840551376, + -0.050370953977108, + 0.05657731741666794, + -0.008833472616970539, + 0.04682148993015289, + -0.07930660247802734, + -0.006631716154515743, + -0.062178969383239746, + -0.017888512462377548, + -0.08605153113603592, + -0.0600719153881073, + 0.08495629578828812, + 0.020709669217467308, + -0.10479871183633804, + 0.06417105346918106, + 0.03557649627327919, + -0.028552668169140816, + 0.05194142460823059, + -0.008185489103198051, + 0.009296891279518604, + -0.07247421890497208, + 0.06276042014360428, + 0.048817772418260574, + 0.01933949626982212, + -0.005559183191508055, + -0.06280792504549026, + -0.06812907755374908, + -0.041496384888887405, + -0.0015376785304397345, + 0.07353139668703079, + 0.000825336726848036, + -0.059560250490903854, + 0.05294959247112274, + 0.03470996394753456, + 0.02459602616727352, + 0.07537557184696198, + -0.005807169713079929, + -0.004424227401614189, + -0.025710642337799072, + 0.028668850660324097, + -0.0028266652952879667, + -0.016031414270401, + 0.10360794514417648, + 0.010133771225810051, + -0.11514966934919357, + 0.02130533941090107, + -0.08325991034507751, + 0.019729724153876305, + -0.08873192220926285, + 0.014773509465157986, + 0.01011157501488924, + -0.032397326081991196, + 0.029189061373472214, + -0.043127045035362244, + 0.007735089398920536, + 0.10825495421886444, + 0.09124094247817993, + 0.035646628588438034, + 0.014439665712416172, + -0.08047262579202652, + -0.025649292394518852, + -0.07680098712444305, + 0.08092419058084488, + -0.038588229566812515, + -0.014816297218203545, + -0.012364438734948635, + -0.06872968375682831, + 0.029106806963682175, + 0.01393013633787632, + -0.053610172122716904, + 0.04008227959275246, + -0.03807550668716431, + -0.001807219348847866, + -0.08833515644073486, + -2.2644274011440757e-08, + 0.027239374816417694, + 0.028207380324602127, + -0.05780961364507675, + -0.011545677669346333, + 0.009800976142287254, + -0.023172222077846527, + -0.02637321501970291, + 0.05648486316204071, + -0.13333769142627716, + 0.047395262867212296, + 0.03817364200949669, + 0.02175777591764927, + -0.0682465061545372, + 0.011921672150492668, + 0.031309228390455246, + 0.025378843769431114, + -0.018475789576768875, + 0.019875844940543175, + -0.05399249866604805, + -0.09390564262866974, + -0.011901435442268848, + 0.04450235143303871, + -0.0028730598278343678, + 0.04430748522281647, + 0.0430665947496891, + -0.006365913897752762, + -0.032419685274362564, + -0.028232447803020477, + 0.049538206309080124, + -0.07083718478679657, + -0.0009443879825994372, + 0.050103578716516495, + 0.005555307492613792, + -0.046190839260816574, + -0.06168533116579056, + -0.017300205305218697, + -0.011706356890499592, + 0.045823972672224045, + 0.016808168962597847, + 0.07603257149457932, + 0.0042595891281962395, + -0.05541147291660309, + -0.009682921692728996, + 0.0036400877870619297, + 0.05751848593354225, + 0.056003592908382416, + 0.01531030610203743, + 0.0018316610949113965, + -0.0643836259841919, + -0.05185433477163315, + -0.08971764147281647, + -0.028866589069366455, + 0.01900848001241684, + 0.031499024480581284, + -0.03375059366226196, + -0.0370233990252018, + 0.0076840841211378574, + 0.0036024441942572594, + -0.03180588409304619, + 0.014806265011429787, + 0.08683721721172333, + 0.07759570330381393, + 0.0028610117733478546, + 0.03985820338129997 + ], + "butterfly-bold||animals,insects,moth": [ + 0.005983130540698767, + 0.023804660886526108, + -0.014820913784205914, + 0.0569223016500473, + -0.013142317533493042, + 0.026603838428854942, + 0.018873505294322968, + -0.13345840573310852, + -0.03600073233246803, + -0.0058617908507585526, + 0.06399714946746826, + -0.08341054618358612, + -0.03419993445277214, + -0.028335686773061752, + -0.020502615720033646, + 0.10940370708703995, + 0.02929418347775936, + 0.00018090663070324808, + -0.009217876940965652, + 0.010836495086550713, + -0.027012662962079048, + 0.038902461528778076, + 0.03608401119709015, + 0.05304686725139618, + -0.007697536610066891, + 0.008804941549897194, + -0.050008632242679596, + -0.006333756726235151, + 0.03183663636445999, + -0.08633437752723694, + -0.02247745916247368, + 0.011973380111157894, + 0.07367560267448425, + 0.03461633622646332, + 0.08895574510097504, + -0.030219677835702896, + -0.04326281696557999, + -0.04649772122502327, + 0.05414240062236786, + 0.042125895619392395, + 0.05355142056941986, + 0.028499215841293335, + -0.04760466143488884, + 0.02398843504488468, + -0.060716401785612106, + -0.02108081802725792, + -0.054957516491413116, + 0.004302688874304295, + 0.029605833813548088, + 0.0023242300376296043, + -0.0880938470363617, + -0.10710889846086502, + -0.13432960212230682, + 0.06729251146316528, + 0.044944386929273605, + 0.0068413796834647655, + -0.02388082817196846, + -0.014154997654259205, + -0.011860108003020287, + -0.04576577991247177, + 0.0492829792201519, + 0.053417474031448364, + 0.05641264095902443, + 0.10248114913702011, + 0.003311280393972993, + -0.038367632776498795, + -0.03513587266206741, + -0.009335973300039768, + 0.0032345473300665617, + -0.041419729590415955, + 0.047164592891931534, + -0.03481004014611244, + 0.007911808788776398, + -0.02923799864947796, + -0.09743447601795197, + 0.057153698056936264, + 0.05155261978507042, + -0.006809148006141186, + 0.004833548329770565, + -0.025107452645897865, + -0.07148069143295288, + -0.12102828919887543, + -0.034675225615501404, + -0.028402281925082207, + 0.08335433900356293, + 0.007191925309598446, + -0.061441417783498764, + -0.06070346757769585, + -0.11482492089271545, + -0.009105969220399857, + -0.020240264013409615, + -0.05504465103149414, + 0.04184231162071228, + 0.02060130052268505, + -0.08035192638635635, + 0.06759831309318542, + 0.04428129643201828, + -0.02883942797780037, + -0.03707731515169144, + 0.044628601521253586, + -0.020715603604912758, + -0.03371443226933479, + -0.021643802523612976, + -0.00029755430296063423, + -0.06018979847431183, + -0.048697855323553085, + -0.016446996480226517, + -0.022449029609560966, + 0.06024564057588577, + -0.036331627517938614, + -0.057090744376182556, + -0.03283624351024628, + 0.04259306937456131, + 0.057469505816698074, + -0.02789546176791191, + -0.13343548774719238, + -0.06659858673810959, + -0.076540008187294, + 0.16591718792915344, + 0.03541641682386398, + 0.03187987953424454, + -0.005665739066898823, + 0.011823843233287334, + -0.06805785745382309, + 0.0606485940515995, + 0.0034973241854459047, + -0.07798008620738983, + -3.0795488963536975e-33, + 0.11426954716444016, + 0.00567824998870492, + 0.009637326002120972, + 0.05678940564393997, + -0.003875006688758731, + -0.056031230837106705, + -0.06605938822031021, + -0.01893005147576332, + -0.10032334178686142, + 0.026433110237121582, + 0.01588035188615322, + 0.004723580088466406, + -0.02028314769268036, + 0.06548162549734116, + 0.037123195827007294, + 0.04760665073990822, + 0.044982098042964935, + -0.10094750672578812, + 0.07695425301790237, + 0.025447452440857887, + -0.05868504196405411, + 0.04781702160835266, + -0.047905512154102325, + -0.06363269686698914, + 0.014159364625811577, + 0.018449796363711357, + -0.014958860352635384, + -0.059127092361450195, + -0.05651310831308365, + 0.06030473858118057, + 0.10638634115457535, + -0.03877520561218262, + 0.02796950750052929, + 0.09143106639385223, + -0.03124191425740719, + 0.05406031385064125, + -0.00709537323564291, + -0.04735922813415527, + -0.06656908988952637, + 0.04553677886724472, + -0.05279706418514252, + -0.04433957859873772, + 0.009752831421792507, + -0.00506018428131938, + 0.06276136636734009, + 0.05468958243727684, + -0.09062574803829193, + -0.023854753002524376, + 0.04338530823588371, + 0.03848651051521301, + -0.030655840411782265, + -0.005889086984097958, + 0.11118965595960617, + 0.015485410578548908, + 0.010338232852518559, + 0.03246738389134407, + 0.014590955339372158, + 0.044289834797382355, + -0.04916514828801155, + 0.011688358150422573, + -0.03207218274474144, + 0.002550902310758829, + 0.04412849247455597, + -0.08157074451446533, + 0.14930979907512665, + 0.020543279126286507, + -0.06469600647687912, + 0.010197054594755173, + 0.030812393873929977, + -0.011414168402552605, + 0.02246195636689663, + 0.009866339154541492, + 0.04402582719922066, + -0.027945786714553833, + -0.002014666562899947, + 0.0657406896352768, + 0.0168316513299942, + -0.030546216294169426, + -0.02252172864973545, + -0.042011577636003494, + -0.054967548698186874, + 0.014820682816207409, + 0.017312664538621902, + 0.061898477375507355, + 0.01935073919594288, + 0.0062889051623642445, + 0.005761570762842894, + -0.05769951269030571, + 0.04473641514778137, + 0.08048436045646667, + -0.047459978610277176, + 0.01595594733953476, + 0.02687881328165531, + -0.04153952747583389, + -0.042804814875125885, + 7.246315984572909e-35, + 0.01052144356071949, + 0.041072018444538116, + -0.04167615622282028, + -0.08926769345998764, + -0.005075736436992884, + 0.061001040041446686, + -0.03007563017308712, + 0.10151395946741104, + -0.006451823748648167, + 0.04466908425092697, + -0.03442991524934769, + -0.020835116505622864, + -0.05480894818902016, + -0.06406954675912857, + 0.0053543709218502045, + 0.0069353519938886166, + 0.037035904824733734, + -0.011436501517891884, + 0.05521519109606743, + -0.031905192881822586, + -0.10711783915758133, + 0.029354382306337357, + -0.04186791926622391, + 0.07272730022668839, + -0.006870864890515804, + 0.05070703849196434, + 0.047937847673892975, + -0.000297539314487949, + -0.018331801518797874, + -0.06817759573459625, + -0.0211038701236248, + -0.028651081025600433, + 0.06849794089794159, + 0.028696272522211075, + -0.023792339488863945, + 0.07027749717235565, + -0.035788871347904205, + -0.08230003714561462, + 0.08533533662557602, + -0.0074843126349151134, + -0.01488029956817627, + 0.030880345031619072, + 0.029534684494137764, + -0.037543199956417084, + 0.03500933572649956, + -0.03514011949300766, + -0.04003652557730675, + -0.0011419951915740967, + -0.030868493020534515, + 0.060170769691467285, + -0.003381740767508745, + -0.013855979777872562, + -0.01747756265103817, + 0.02842678874731064, + -0.015653831884264946, + -0.021841922774910927, + 0.033743925392627716, + 0.0021944772452116013, + 0.05269942060112953, + 0.0077822571620345116, + -0.028434570878744125, + 0.0684918761253357, + -0.028185071423649788, + 0.07519060373306274, + -0.02566593699157238, + -0.007734906859695911, + -0.05373864248394966, + -0.00808496493846178, + 0.010472026653587818, + -0.03528476879000664, + -0.0019242498092353344, + 0.03007226064801216, + -0.03614087775349617, + 0.061307914555072784, + 0.011763202957808971, + -0.007296967785805464, + 0.03128194063901901, + 0.011619586497545242, + 0.05173014849424362, + 0.059980183839797974, + -0.009353010915219784, + -0.010956916958093643, + -0.06078839674592018, + 0.052645716816186905, + 0.003837861819192767, + 0.03328679874539375, + -0.08737411350011826, + 0.0016322650481015444, + -0.016320500522851944, + -0.061587803065776825, + -0.057166095823049545, + 0.04103435203433037, + 0.008509996347129345, + -0.021451380103826523, + -0.00659094238653779, + -1.703914698225617e-08, + 0.04563262686133385, + -0.02618587762117386, + -0.05426627770066261, + -0.029923975467681885, + 0.0489543192088604, + -0.04878060892224312, + -0.048692476004362106, + -0.11677195876836777, + -0.08652061223983765, + 0.04619073122739792, + 0.06756781786680222, + 0.03199370577931404, + 0.012031927704811096, + 0.0188433937728405, + 0.033372290432453156, + -0.05371144041419029, + -0.0015334952622652054, + 0.028141438961029053, + -0.02305704541504383, + -0.041498515754938126, + -0.06161699816584587, + 0.05344533547759056, + -0.05145755410194397, + -0.04582219943404198, + 0.034502044320106506, + -0.03152520954608917, + -0.08109648525714874, + -0.06245416775345802, + 0.035877376794815063, + 0.09015358984470367, + -0.0029552914202213287, + 0.12373781949281693, + 0.036205094307661057, + 0.013935386203229427, + -0.09102261811494827, + -0.05887339636683464, + 0.029584486037492752, + -0.08334249258041382, + 0.013501421548426151, + 0.04236537218093872, + 0.06710228323936462, + 0.016552070155739784, + 0.04103633388876915, + -0.06234803423285484, + 0.05435245856642723, + -0.03916870057582855, + 0.15584996342658997, + -0.058025456964969635, + -0.033322907984256744, + -0.053779296576976776, + -0.026188528165221214, + -0.026282604783773422, + -0.005494222976267338, + 0.03548145666718483, + -0.07816342264413834, + -0.07230573892593384, + 0.038660310208797455, + 0.06515440344810486, + -0.02893465757369995, + 0.03952023759484291, + 0.16598379611968994, + -1.5836558304727077e-05, + 0.03923069313168526, + 0.019688604399561882 + ], + "cable-car-bold||*new*,vehicles,gondola,skiing,mountains,public transit,transportation,commuter,traveling,places,locations": [ + -0.014608652330935001, + -0.044898658990859985, + 0.028714511543512344, + 0.040875229984521866, + -0.015278582461178303, + 0.02164052426815033, + -0.013129225932061672, + -0.01636781543493271, + -0.11295383423566818, + -0.014108477160334587, + 0.06949090957641602, + 0.021358495578169823, + -0.006430711597204208, + 0.043103624135255814, + -0.00925296451896429, + 0.003452584845945239, + 0.07230424135923386, + -0.014366775751113892, + 0.021549347788095474, + 0.005353821907192469, + 0.02193920686841011, + 0.01387099176645279, + 0.04244031012058258, + 0.059949036687612534, + 0.024917427450418472, + 0.04268061742186546, + 0.031124545261263847, + 0.007490312214940786, + -0.02914993278682232, + -0.03841562196612358, + -0.08514713495969772, + 0.004443050362169743, + 0.05064356327056885, + 0.018255144357681274, + 0.0063971104100346565, + -0.0123692462220788, + 0.038288213312625885, + -0.04449304938316345, + -0.01758342795073986, + 0.039243701845407486, + 0.0038826121017336845, + -0.059530775994062424, + -0.03653553128242493, + 0.002113340189680457, + -0.011768271215260029, + -0.0612187497317791, + 0.05281294882297516, + 0.009626714512705803, + 0.03169693425297737, + -0.005606085993349552, + 0.0008188298670575023, + -0.027780162170529366, + -0.12256322801113129, + 0.02107929065823555, + -0.026434224098920822, + -0.014299307949841022, + -0.07601267099380493, + 0.03242350369691849, + 0.017138466238975525, + 0.08122414350509644, + 0.05613493174314499, + -0.003588559804484248, + -0.04854648560285568, + 0.08140654861927032, + -0.019081061705946922, + 0.02522352896630764, + -0.017114434391260147, + 0.012402410618960857, + -0.06812278181314468, + -0.030011480674147606, + 0.004995115101337433, + 0.02706453762948513, + 0.015249218791723251, + 0.010316074825823307, + -0.0012055512052029371, + -0.06129897013306618, + 0.05987723916769028, + 0.055494524538517, + -0.04242325574159622, + -0.0378272719681263, + -0.04597163572907448, + -0.036115385591983795, + -0.02628372423350811, + 0.010854070074856281, + -0.0015519706066697836, + 0.038263678550720215, + -0.08012589812278748, + -0.05017608031630516, + -0.048412173986434937, + -0.05830724537372589, + -0.04139193892478943, + -0.06382337957620621, + 0.003884116653352976, + 0.03503913804888725, + -0.12552696466445923, + 0.0732148066163063, + -0.048422180116176605, + -0.04756420850753784, + 0.014393322169780731, + 0.059642594307661057, + 0.0727304220199585, + -0.010552968829870224, + 0.02842247486114502, + 0.05897536501288414, + -0.034709446132183075, + 0.030165214091539383, + 0.014650058932602406, + 0.02257881499826908, + -0.01684698648750782, + 0.07811439782381058, + 0.024513807147741318, + -0.005418280605226755, + -0.02837548963725567, + -0.09562084078788757, + -0.08356371521949768, + 0.01917392574250698, + -0.04195684194564819, + 0.03186585009098053, + 0.10110404342412949, + 0.09273476898670197, + -0.06273293495178223, + -0.08619145303964615, + 0.06586259603500366, + 0.0013619483215734363, + 0.004233501385897398, + -0.020570285618305206, + 0.015548855997622013, + -3.104654700622377e-33, + -0.01446102000772953, + 0.01456871535629034, + 0.07022175192832947, + 0.14589090645313263, + -0.031133657321333885, + 0.033338602632284164, + -0.0570332370698452, + 0.02208356373012066, + -0.018209485337138176, + 0.04044131189584732, + -0.0012348039308562875, + 0.06649956107139587, + -0.05141707509756088, + 0.031706564128398895, + 0.10066625475883484, + 0.031448766589164734, + -0.035987500101327896, + -0.08955291658639908, + -0.06504727154970169, + -0.031376276165246964, + -0.02161664329469204, + 0.014621030539274216, + 0.06420083343982697, + -0.03377295285463333, + -4.923014057567343e-05, + -0.020760444924235344, + 0.008236377499997616, + -0.06526162475347519, + 0.006191808730363846, + 0.05074579268693924, + 0.004039923660457134, + 0.06003493815660477, + 0.06080883741378784, + 0.022823268547654152, + -0.03775593638420105, + 0.028137560933828354, + -0.0459444485604763, + -0.057535283267498016, + -0.039799872785806656, + 0.05657031387090683, + -0.008268403820693493, + -0.0643732026219368, + -0.12343107908964157, + 0.05221211910247803, + 0.04944125935435295, + 0.0723470002412796, + 0.09232400357723236, + -0.05994417145848274, + -0.03587395325303078, + 0.07359857112169266, + -0.06371482461690903, + 0.007353418972343206, + -0.08923906087875366, + -0.07897786796092987, + -0.07144471257925034, + 0.05836757272481918, + 0.0015485123731195927, + 0.05899154394865036, + 0.059753626585006714, + -0.05265861004590988, + -0.022692367434501648, + 0.05916557088494301, + 0.08980748057365417, + -0.049141496419906616, + -0.014885536395013332, + 0.041020654141902924, + 0.04677904024720192, + -0.010635697282850742, + 0.0006904174806550145, + 0.03385355696082115, + -0.0023359917104244232, + 0.018089590594172478, + 0.005986799020320177, + 0.07561144232749939, + 0.03694774955511093, + 0.04886249452829361, + -0.08886711299419403, + -0.010620113462209702, + 0.03697521239519119, + -0.02476147562265396, + -0.12467137724161148, + -0.02177925780415535, + -0.030399443581700325, + 0.1637600213289261, + 0.09639514237642288, + 0.04547703266143799, + 0.0466311015188694, + -0.10488709807395935, + 0.035935178399086, + 0.019506771117448807, + -0.11653885245323181, + 0.055581651628017426, + -0.013066243380308151, + -0.06172937899827957, + 0.0011319410987198353, + -1.6698501071817833e-34, + 0.05867251381278038, + -0.01959320902824402, + -0.026190942153334618, + -0.07507932186126709, + -0.05438460037112236, + -0.06455852091312408, + -0.009935359470546246, + -0.008795236237347126, + 0.0430053249001503, + 0.0674617812037468, + -0.06736581027507782, + -0.032100919634103775, + 0.04519527032971382, + -0.009913703426718712, + 0.011973819695413113, + 0.004571875557303429, + 0.050314243882894516, + -0.01007583737373352, + -0.041489437222480774, + 0.01940060220658779, + -0.02825857698917389, + -0.008472949266433716, + -0.0789913758635521, + 0.0006991251138970256, + 0.040880490094423294, + 0.013523214496672153, + -0.0473012775182724, + -0.012849113903939724, + -0.013194913044571877, + -0.018901480361819267, + -0.04453088715672493, + -0.0061475904658436775, + 0.0695376992225647, + 0.02953360415995121, + -0.11446171253919601, + 0.11415915191173553, + 0.033098574727773666, + 0.03258829191327095, + 0.024644536897540092, + -0.0697709247469902, + 0.024692941457033157, + -0.08614213019609451, + 0.14365969598293304, + 0.01706395298242569, + 0.01232099998742342, + -0.053423427045345306, + -0.15238186717033386, + -0.04206211492419243, + -0.10579192638397217, + 0.05560201779007912, + 0.0425603911280632, + 0.038203705102205276, + -0.08261970430612564, + 0.06463737785816193, + -0.0032483257818967104, + 0.034026529639959335, + -0.027118586003780365, + -0.018998725339770317, + -0.08182953298091888, + -0.0023359644692391157, + 0.019527511671185493, + -0.012891468591988087, + -0.12430843710899353, + 0.04333043470978737, + 0.05387180298566818, + -0.11289525777101517, + 0.030750500038266182, + -0.10600642114877701, + 0.031708914786577225, + -0.032533615827560425, + 0.04003584757447243, + -0.01704133301973343, + -0.05953000858426094, + -0.036030326038599014, + -0.09149006009101868, + 0.011654299683868885, + 0.07860574871301651, + 0.08192284405231476, + 0.043389879167079926, + 0.027400409802794456, + 0.013592780567705631, + -0.024004017934203148, + -0.03476012498140335, + 0.06374471634626389, + -0.02181083895266056, + 0.008164423517882824, + 0.06856824457645416, + -0.02672320045530796, + 0.023773111402988434, + -0.012122906744480133, + -0.018168915063142776, + 0.05337591469287872, + -0.0871562585234642, + 0.010135727934539318, + -0.11132588237524033, + -2.8112385308531884e-08, + 0.035840846598148346, + 0.03644159436225891, + -0.10191170871257782, + -0.004974297247827053, + 0.04827440530061722, + -0.011729809455573559, + -0.07026546448469162, + 0.020971424877643585, + -0.08113326877355576, + -0.0020927824079990387, + 0.03358643129467964, + 0.03176940977573395, + -0.01944630593061447, + 0.08252595365047455, + 0.012997793965041637, + 0.02609948441386223, + -0.024204950779676437, + 0.05645139142870903, + -0.053381238132715225, + -0.017460906878113747, + -0.029711421579122543, + 0.04126078635454178, + -0.004775990732014179, + 0.08304335922002792, + 0.03761734440922737, + -0.031016862019896507, + 0.005624691024422646, + -0.01532997377216816, + 0.12751498818397522, + -0.04776895046234131, + -0.06137138232588768, + 0.02505689486861229, + -0.005982511211186647, + -0.013846496120095253, + -0.04496591538190842, + -0.0097505496814847, + -0.008831079117953777, + 0.018884658813476562, + -0.009944788180291653, + -0.010531418025493622, + 0.0636855885386467, + -0.04238416999578476, + 0.010740550234913826, + 0.00668195029720664, + 0.03801353648304939, + 0.006526517681777477, + -0.012526096776127815, + -0.03048381209373474, + -0.02950221672654152, + -0.0449402816593647, + -0.0786275789141655, + 0.02299044467508793, + -0.01950988359749317, + 0.04795493185520172, + 0.02206461876630783, + -0.019886337220668793, + 0.030124038457870483, + 0.021951179951429367, + -0.0602121539413929, + -0.001022238633595407, + 0.05800185725092888, + 0.003447979688644409, + -0.032524462789297104, + 0.035468872636556625 + ], + "cactus-bold||*updated*,plants,cacti,desert,western": [ + 0.05451185256242752, + 0.04543266445398331, + -0.017533915117383003, + 0.055384423583745956, + 0.02267402969300747, + -0.031113767996430397, + 0.016844457015395164, + -0.115639328956604, + 0.01053844578564167, + 0.04890143871307373, + 0.07439007610082626, + -0.10589952021837234, + 0.07208839803934097, + 0.011572896502912045, + -0.02388550154864788, + 0.0060547576285898685, + -0.01817859522998333, + 0.0028802799060940742, + 0.0030910305213183165, + -0.006736809387803078, + -0.014519126154482365, + 0.07339552044868469, + 0.04503646492958069, + 0.1047043651342392, + 0.02210625633597374, + -0.014231864362955093, + -0.09292241185903549, + 0.01608755812048912, + -0.05948202311992645, + -0.1139722466468811, + -0.09959789365530014, + 0.1440284550189972, + 0.11076318472623825, + -0.04841921851038933, + 0.06802663207054138, + 0.03172629326581955, + -0.050998978316783905, + 0.018121689558029175, + 0.023717883974313736, + 0.038333989679813385, + 0.02088984102010727, + -0.030622420832514763, + 0.04294117912650108, + 0.07522935420274734, + -0.0873122587800026, + 0.006454022601246834, + -0.03549710288643837, + 0.03215300664305687, + 0.047503408044576645, + 0.039994142949581146, + -0.04925369843840599, + -0.04856293648481369, + -0.1270798295736313, + 0.003136384068056941, + 0.04276876151561737, + -0.011508561670780182, + -0.01913914643228054, + -0.027991607785224915, + 0.04184611141681671, + 0.002926919609308243, + 0.07942713797092438, + 0.028318529948592186, + 0.0234474278986454, + 0.02558506466448307, + -0.01582934521138668, + 0.016088923439383507, + -0.054686736315488815, + -0.049284499138593674, + -0.014979144558310509, + -0.02217392437160015, + -0.010674837045371532, + 0.03139367327094078, + -0.023491131141781807, + -0.03185778111219406, + -0.07068948447704315, + 0.02133769541978836, + 0.02580690011382103, + -0.03289755806326866, + -0.07854892313480377, + -0.060765475034713745, + 0.005013937596231699, + 0.00882007461041212, + 0.01595570519566536, + -0.07300928235054016, + 0.027087369933724403, + 0.03283267840743065, + 0.028492745012044907, + -0.06085566058754921, + -0.04130670428276062, + -0.08811061829328537, + 0.02277868613600731, + -0.00688067777082324, + 0.035385504364967346, + -0.0034196407068520784, + -0.09165150672197342, + 0.03893467038869858, + 0.07535634189844131, + -0.05472546070814133, + -0.011940793134272099, + 0.03152140974998474, + 0.09940940141677856, + -0.08124560862779617, + 0.056882619857788086, + 0.015530274249613285, + -0.022946374490857124, + -0.02119477093219757, + -0.10308054089546204, + -0.02688378095626831, + -0.020123686641454697, + -0.01476595550775528, + -0.028986886143684387, + -0.05362241342663765, + -0.0840819850564003, + -0.02391914464533329, + -0.011905238963663578, + 0.05536941438913345, + 0.012972843833267689, + -0.011593987233936787, + 0.04412834346294403, + 0.011058157309889793, + -0.023891400545835495, + -0.06851635873317719, + -0.0019342928426340222, + -0.015577579848468304, + 0.006617729086428881, + -0.04543640837073326, + -0.050362054258584976, + -1.0849448271169966e-33, + 0.061232030391693115, + 0.02195584960281849, + 0.015941046178340912, + 0.04837077111005783, + 0.0566675141453743, + -0.07811058312654495, + 0.008387408219277859, + -0.08876773715019226, + -0.059497103095054626, + -0.06070966646075249, + 0.0012003958690911531, + 0.08947350829839706, + -0.017076123505830765, + 0.1454821676015854, + 0.010445072315633297, + -0.018020715564489365, + -0.0015055492985993624, + -0.060779374092817307, + -0.026235999539494514, + 0.03524736687541008, + -0.01032798271626234, + 0.07178059965372086, + -0.0777219757437706, + -0.019383007660508156, + -0.025816749781370163, + -0.04470611736178398, + 0.042782798409461975, + -0.0455804318189621, + -0.043500788509845734, + -0.012017132714390755, + 0.06109661981463432, + -0.03384672850370407, + 0.044810276478528976, + 0.042061880230903625, + -0.03679339215159416, + 0.008642351254820824, + 0.00029898560023866594, + -0.05029989406466484, + -0.04741572588682175, + 0.017435185611248016, + 0.007268926128745079, + 0.05620882287621498, + 0.06608506292104721, + 0.03400925546884537, + 0.047328878194093704, + 0.040394898504018784, + -0.00857706367969513, + -0.009572301991283894, + 0.004942798055708408, + 0.0571029968559742, + -0.0736793801188469, + 0.06595154851675034, + -0.004071252886205912, + -0.036118846386671066, + -0.09990544617176056, + -0.020523644983768463, + 0.020040707662701607, + 0.06318768858909607, + -0.04742619767785072, + -0.006519325543195009, + 0.057859648019075394, + -0.039480507373809814, + -0.018139276653528214, + -0.058235667645931244, + -0.01849895529448986, + 0.08720046281814575, + -0.06287036836147308, + 0.04944620653986931, + 0.0978560522198677, + 0.03772619739174843, + -0.04440278187394142, + 0.06832324713468552, + 0.06351087987422943, + 0.07438833266496658, + 0.026549682021141052, + 0.06597428023815155, + 0.0003780132974497974, + 0.008310524746775627, + -0.0011352163273841143, + 0.0006207595579326153, + -0.07995505630970001, + 0.0661923959851265, + -0.043013472110033035, + 0.0827024057507515, + -0.04964307323098183, + 0.03457694873213768, + -0.028348200023174286, + 0.018151618540287018, + 0.009430755861103535, + 0.04913003742694855, + -0.08138265460729599, + 0.06231101229786873, + 0.02824508212506771, + -0.0292963907122612, + -0.06627795845270157, + -1.9898171439994656e-33, + 0.1198749914765358, + 0.008978735655546188, + 0.019688332453370094, + 0.017848169431090355, + -0.030176665633916855, + -0.00924672745168209, + -0.06511178612709045, + 0.05428212508559227, + 0.014972723089158535, + -0.05473300442099571, + 0.012378326617181301, + 0.04261303320527077, + 0.006637267302721739, + -0.05997065082192421, + 0.016565334051847458, + 0.033876605331897736, + 0.03159166872501373, + 0.06397296488285065, + -0.05672862380743027, + 0.046582624316215515, + -0.12716692686080933, + 0.052624065428972244, + -0.07986919581890106, + -0.04643189534544945, + 0.02412673644721508, + -0.01355539821088314, + 0.059180960059165955, + -0.07135811448097229, + -0.0625230073928833, + -0.061976317316293716, + -0.11290660500526428, + -0.08667545765638351, + -0.055537641048431396, + 0.09823177009820938, + -0.06615578383207321, + -0.0022847966756671667, + -0.040496643632650375, + -0.133704274892807, + -0.0370485857129097, + 0.10157956182956696, + 0.01757003180682659, + 0.026345957070589066, + 0.05910372734069824, + 0.0833575502038002, + 0.01639779843389988, + -0.04784783720970154, + -0.01761298067867756, + 0.02761257439851761, + -0.01973697729408741, + 0.07886942476034164, + 0.0701480507850647, + -0.039450060576200485, + -0.019369076937437057, + 0.003235350362956524, + 0.04124158248305321, + -0.045465607196092606, + 0.057118020951747894, + 0.09402501583099365, + -0.0811932310461998, + 0.02970709651708603, + -0.04383073374629021, + 0.07467204332351685, + 0.011631550267338753, + -0.08025684207677841, + 0.015409999527037144, + 8.978092955658212e-05, + -0.06885666400194168, + -0.0680018961429596, + 0.027674557641148567, + 0.011261485517024994, + 0.07794825732707977, + -0.015647955238819122, + -0.07946305721998215, + -0.0016004767967388034, + 0.07377214729785919, + 0.009256742894649506, + -0.007902081124484539, + -0.010517648421227932, + -0.017611581832170486, + 0.06916365027427673, + -0.0025465700309723616, + -0.009313186630606651, + -0.022591397166252136, + 0.06103897839784622, + 0.013210784643888474, + 0.10359809547662735, + -0.05230326950550079, + -0.05294720083475113, + 0.05617189034819603, + 0.00855591706931591, + -0.0020573027431964874, + -0.01893547549843788, + -0.027530742809176445, + -0.00881787110120058, + -0.00015680004435125738, + -2.058375159208481e-08, + 0.04799230396747589, + 0.028015175834298134, + -0.12735344469547272, + -0.014497854746878147, + -0.003781912848353386, + -0.04326900094747543, + 0.039338141679763794, + -0.06452272087335587, + -0.03438438102602959, + -0.005206207279115915, + 0.041692934930324554, + 0.020721452310681343, + -0.007322986610233784, + 0.00688561936840415, + 0.014865743927657604, + -0.01154304575175047, + -0.018933499231934547, + 0.09357253462076187, + -0.021410193294286728, + -0.022908814251422882, + -0.0843113586306572, + 0.002041342668235302, + -0.015329930931329727, + 0.015328308567404747, + 0.0016388229560106993, + -0.011524549685418606, + -0.006511851213872433, + -0.015675915405154228, + 0.04202674701809883, + 0.008754170499742031, + 0.04373854398727417, + 0.0013836490688845515, + -0.05674907565116882, + -0.05259954556822777, + -0.009921292774379253, + -0.022308241575956345, + -0.03915004804730415, + -0.001997740240767598, + -0.02140534296631813, + 0.13688044250011444, + 0.09480025619268417, + -0.05026337504386902, + -0.018688661977648735, + -0.006878813728690147, + -0.03499879688024521, + -0.05173763632774353, + -0.00432194210588932, + -0.06412455439567566, + -0.06616878509521484, + -0.06826990097761154, + 0.014512619934976101, + 0.012909146957099438, + 0.019604656845331192, + 0.04042921960353851, + -0.04817360267043114, + -0.02945302054286003, + 0.08682701736688614, + 0.01334274560213089, + 0.018959658220410347, + 0.0558672733604908, + 0.07161974906921387, + -0.02461368404328823, + 0.0644737184047699, + -0.02804418094456196 + ], + "cake-bold||dessert,birthday,celebration,event": [ + 0.03989538177847862, + 0.06941931694746017, + -0.0019345927285030484, + 0.02271312102675438, + 0.01662319153547287, + 0.07567567378282547, + 0.06515002995729446, + -0.09986153244972229, + 0.005814630538225174, + -0.036616209894418716, + 0.001418686704710126, + -0.07893194258213043, + -0.07324278354644775, + -0.07384690642356873, + 0.002263834699988365, + 0.03411973640322685, + 0.0653790831565857, + -0.025038056075572968, + -0.02930259145796299, + -0.02984023652970791, + 0.02004264108836651, + 0.016474520787596703, + 0.003059562761336565, + 0.09132523834705353, + -0.03727305680513382, + 0.04608917608857155, + 0.05187206342816353, + -0.03864069655537605, + -0.018526287749409676, + -0.05991511419415474, + -0.008546129800379276, + 0.040489282459020615, + 0.048272695392370224, + -0.004915797151625156, + 0.0220359954982996, + -0.022533800452947617, + -0.035904135555028915, + -0.02297266572713852, + 0.030430151149630547, + -0.006992049049586058, + -0.026030197739601135, + -0.06295692175626755, + -0.03526913747191429, + 0.011047876439988613, + 0.028947174549102783, + -0.021160395815968513, + -0.01700182631611824, + -0.0006632729200646281, + -0.009483229368925095, + 0.07266025245189667, + 0.0037878567818552256, + -0.023495273664593697, + -0.035858798772096634, + -0.007629714906215668, + 0.017642848193645477, + -0.02277538925409317, + -0.09949326515197754, + -0.023769348859786987, + 0.012192917987704277, + -0.023771341890096664, + -0.06731659173965454, + 0.01147344708442688, + 0.08067601919174194, + -0.01227482408285141, + -0.011348800733685493, + -0.10270228236913681, + 0.007061115466058254, + -0.009398289956152439, + 0.004648779518902302, + 0.03628639876842499, + 0.013320495374500751, + 0.07215597480535507, + 0.03594683110713959, + -0.02339559607207775, + -0.035111770033836365, + -0.008076510392129421, + -0.014060597866773605, + 0.012920892797410488, + -0.08419810235500336, + -0.036388564854860306, + -0.058876484632492065, + -0.017574576660990715, + 0.035531800240278244, + -0.02160690352320671, + 0.011767009273171425, + 0.004035222809761763, + -0.1131858304142952, + 0.012482444755733013, + -0.01022297888994217, + -0.09348868578672409, + -0.07207194715738297, + -0.02075241319835186, + 0.05306537076830864, + 0.054183412343263626, + -0.0910773053765297, + -0.023196782916784286, + 0.007607112638652325, + -0.07696671783924103, + -0.02120111882686615, + 0.10580175369977951, + 0.0031277493108063936, + 0.121446892619133, + -0.030461717396974564, + 0.032011017203330994, + 0.03537198156118393, + 0.04444354400038719, + -0.02120528742671013, + -0.01585521176457405, + 0.03874277323484421, + 0.016405178233981133, + -0.0007416906300932169, + -0.08907495439052582, + 0.048882462084293365, + -0.061754822731018066, + -0.05223957076668739, + -0.06951679289340973, + -0.07459791749715805, + -0.039410654455423355, + 0.04191870614886284, + -0.01668810099363327, + 0.019737483933568, + -0.014869403094053268, + 0.01625720039010048, + 0.0313352532684803, + -0.09215153008699417, + -0.02945530042052269, + 0.05483377352356911, + -2.9644597342135414e-33, + 0.025634542107582092, + 0.026970282196998596, + 0.003401572583243251, + 0.13476669788360596, + 0.07317440956830978, + 0.00975128449499607, + -0.007419683039188385, + -0.05783078819513321, + -0.07672782242298126, + 0.01283642090857029, + 0.016623087227344513, + 0.0205323975533247, + -0.003742996836081147, + 0.052251022309064865, + 0.03455580025911331, + 0.02944563701748848, + -0.04712793976068497, + -0.04373284429311752, + 0.03939250111579895, + 0.016646157950162888, + -0.07565855979919434, + 0.06113862246274948, + -0.08113715052604675, + -0.03162005543708801, + -0.06442342698574066, + 0.030572054907679558, + 0.04115935042500496, + -0.028443556278944016, + -0.036870598793029785, + -0.014792025089263916, + 0.12874625623226166, + -0.000914889620617032, + 0.088601253926754, + -0.05111826956272125, + 0.010668599978089333, + 0.0020890175364911556, + -0.011644871905446053, + -0.03111814334988594, + -0.031117819249629974, + 0.0862663984298706, + -0.09413745999336243, + -0.05834486708045006, + -0.031905677169561386, + 0.010511038824915886, + -0.05158816650509834, + 0.04086136817932129, + 0.02025449275970459, + 0.035171039402484894, + 0.0598737969994545, + -0.045419842004776, + -0.05695301666855812, + -0.00982689019292593, + 0.08313511312007904, + 0.022868916392326355, + -0.01177753321826458, + -0.04900379106402397, + -0.027366027235984802, + 0.0020418758504092693, + 0.0767885372042656, + -0.051320239901542664, + 0.055664874613285065, + -0.08009260147809982, + -0.0698494091629982, + -0.00642932066693902, + -0.15370015799999237, + 0.039927806705236435, + -0.0844717025756836, + 0.03643950819969177, + 0.12618538737297058, + 0.05272188410162926, + 0.029065944254398346, + 0.07406916469335556, + 0.09613880515098572, + -0.09067633002996445, + -0.011914537288248539, + 0.07088374346494675, + 0.07208748161792755, + -0.010966736823320389, + 0.05025425925850868, + 0.0173568706959486, + -0.029639342799782753, + -0.01410513836890459, + -0.04998357594013214, + 0.028095386922359467, + -0.028607632964849472, + 0.017203940078616142, + -0.03694003075361252, + -0.048573046922683716, + -0.046764083206653595, + 0.09196342527866364, + -0.10892006754875183, + -0.0035831250716000795, + 0.09704817831516266, + 0.006384547334164381, + -0.07126907259225845, + 4.350438930013533e-34, + 0.047190479934215546, + 0.05869971960783005, + -0.0658872127532959, + -0.025975897908210754, + 0.0784526914358139, + -0.007157563231885433, + -0.03742970526218414, + 0.012113521806895733, + -0.054398421198129654, + -0.043958742171525955, + -0.05665174871683121, + 0.0015419375849887729, + -0.0064228605479002, + -0.04868953302502632, + 0.009807417169213295, + 0.0599714033305645, + 0.042105309665203094, + 0.0754343643784523, + 0.007150761783123016, + 0.050238970667123795, + -0.06045788526535034, + 0.10538186132907867, + -0.08973374962806702, + -0.018594762310385704, + -0.078547902405262, + 0.0673728734254837, + 0.06350313872098923, + -0.03450654819607735, + -0.038397207856178284, + -0.013336189091205597, + -0.06430356949567795, + -0.0815778449177742, + 0.02493363246321678, + 0.016831493005156517, + -0.04268090799450874, + 0.13485977053642273, + -0.03198013827204704, + -0.05600432679057121, + -0.018299080431461334, + 0.04641309008002281, + -0.03889595717191696, + 0.02492077462375164, + -0.02142031118273735, + 0.07976070046424866, + 0.0611710250377655, + 0.01836635172367096, + -0.07984389364719391, + -0.0058911703526973724, + 0.06061115115880966, + 0.023930002003908157, + 0.01186938863247633, + -0.05602734535932541, + -0.0124256806448102, + 0.021933091804385185, + 0.058741066604852676, + 0.030453870072960854, + -0.06310086697340012, + -0.008306995965540409, + -0.031182926148176193, + 0.05636914446949959, + -0.04261841997504234, + 0.050811681896448135, + 0.06716842204332352, + 0.054311998188495636, + -0.012076830491423607, + 0.03194059059023857, + 0.044072993099689484, + 0.02341960184276104, + 0.03891861066222191, + 0.0847754254937172, + -0.03078022599220276, + -0.015812233090400696, + -0.007580550387501717, + 0.060567498207092285, + 0.05751921609044075, + -0.06673949956893921, + 0.06003960967063904, + 0.05668754503130913, + 0.030346525833010674, + 0.0458119735121727, + -0.0956413596868515, + 0.0048452103510499, + -0.02360527217388153, + -0.011690761893987656, + 0.012210298329591751, + -0.024878960102796555, + 0.010118664242327213, + -0.0782761350274086, + -0.03258465975522995, + 0.0009679735521785915, + -0.05401042103767395, + 0.04237065836787224, + 0.034412167966365814, + -0.04472041502594948, + -0.0021824794821441174, + -1.8758155917453223e-08, + 0.13130681216716766, + -0.05760722607374191, + -0.08830441534519196, + -0.03929901495575905, + 0.05188744142651558, + -0.10527213662862778, + -0.034700360149145126, + -0.07282032072544098, + -0.09328994899988174, + 0.03934989124536514, + 0.042592603713274, + 0.023641187697649002, + -0.04039616137742996, + -0.01184782199561596, + -0.0006383226718753576, + 0.0002197987341787666, + 0.017283670604228973, + 0.0876721665263176, + -0.03974110260605812, + -0.10701164603233337, + -0.015329436399042606, + 0.0679677426815033, + 0.0697522684931755, + -0.07519856840372086, + -0.013850610703229904, + -0.00196259212680161, + -0.050436101853847504, + -0.018207011744379997, + -0.005544349085539579, + 0.0389101505279541, + -0.04766996577382088, + 0.03767305985093117, + 0.01544998586177826, + 0.028516268357634544, + 0.01431353110820055, + -0.016451532021164894, + -0.08259687572717667, + -0.036111459136009216, + -0.016922490671277046, + -0.013464688323438168, + 0.009414438158273697, + -0.0263920109719038, + 0.0371350459754467, + -0.026841256767511368, + 0.06137266382575035, + 0.006392334122210741, + 0.025112899020314217, + -0.06734979152679443, + -0.061331454664468765, + 0.04917106404900551, + -0.0112201739102602, + 0.002536193234845996, + 0.005624288227409124, + 0.07924717664718628, + 0.012581695802509785, + 0.008850952610373497, + 0.0177516657859087, + 0.04279037564992905, + 0.05128445848822594, + 0.031122179701924324, + 0.14291971921920776, + 0.04734367877244949, + 0.0009495941339991987, + -0.06311202794313431 + ], + "calculator-bold||addition,sum,subtraction,difference,multiply,multiplication,product,divide,division,divisor,dividend,quotient,equals,equality,mathematics,arithmetic,+,-,\u00b1,\u00d7,\u00f7,=": [ + -0.03298807144165039, + -0.024156896397471428, + -0.03186947852373123, + 0.024574868381023407, + -0.03283786028623581, + -0.0942898541688919, + 0.042091839015483856, + -0.019316870719194412, + -0.007948262616991997, + -0.0017120679840445518, + 0.005039869341999292, + -0.03731907904148102, + 0.0662059560418129, + -0.021821247413754463, + -0.010634020902216434, + 0.012497713789343834, + -0.03505021706223488, + 0.0399734303355217, + -0.0285617895424366, + -0.014517826959490776, + 0.04538501054048538, + -0.007214328274130821, + 0.01599787175655365, + 0.11525774002075195, + 0.10414062440395355, + 0.026589134708046913, + 0.017716504633426666, + -0.02156967483460903, + 0.08049796521663666, + -0.034152038395404816, + -0.04676185920834541, + -0.033185988664627075, + 0.2015332281589508, + -0.025449061766266823, + -0.021859783679246902, + 0.004834752529859543, + -0.02397051267325878, + -0.01805301196873188, + -0.0036768983118236065, + 0.09060675650835037, + -0.056929633021354675, + -0.1012072041630745, + -0.0159459225833416, + 0.040171071887016296, + -0.06711489707231522, + -0.043687913566827774, + -0.061692941933870316, + -0.04774985462427139, + 0.08238538354635239, + 0.002303959568962455, + 0.011601405218243599, + 0.004564500413835049, + -0.1688041090965271, + 0.017264768481254578, + 0.039045434445142746, + -0.005826589185744524, + -0.036741387099027634, + 0.050210077315568924, + 0.027992067858576775, + -0.05120379850268364, + -0.0332425981760025, + 0.004755556583404541, + 0.0703899934887886, + -0.017020409926772118, + 0.06114068254828453, + 0.04313525930047035, + 0.015349853783845901, + -0.013882946223020554, + -0.004319873638451099, + 0.04791642352938652, + 0.019578007981181145, + 0.015473084524273872, + -0.003552624024450779, + -0.0528598316013813, + -0.04647580906748772, + 0.014758504927158356, + 0.024791015312075615, + 0.04392486438155174, + -0.025579851120710373, + 0.023355232551693916, + -0.10744307935237885, + -0.06675958633422852, + -0.03437633812427521, + 0.017206622287631035, + 0.049385469406843185, + 0.033959560096263885, + -0.0218594279140234, + -0.05090436711907387, + 0.04584290459752083, + -0.06470713764429092, + -0.05894559994339943, + 0.007958750240504742, + -0.013992494903504848, + 0.009954015724360943, + -0.0658891424536705, + 0.005371990613639355, + 0.02619820460677147, + 0.01937074027955532, + -0.04512123018503189, + 0.05347110703587532, + -0.0018439145060256124, + 0.056255191564559937, + -0.05635363981127739, + -0.015060391277074814, + 0.018070843070745468, + -0.020361702889204025, + 0.034764017909765244, + -0.02491696923971176, + 0.010608186945319176, + 0.012468470260500908, + 0.005778938997536898, + -0.08193068951368332, + 0.010709481313824654, + 0.019176391884684563, + -0.021174078807234764, + 0.00676498468965292, + -0.019810201600193977, + -0.011994029395282269, + 0.0804067850112915, + 0.018390638753771782, + 0.060571786016225815, + 0.002992253750562668, + 0.02380664087831974, + -0.015320712700486183, + 0.02422519400715828, + -0.011901997029781342, + 0.008058655075728893, + -1.2092933949927784e-33, + 0.033029958605766296, + 0.021423643454909325, + -0.012028190307319164, + 0.11844208836555481, + -0.04597584158182144, + -0.009351949207484722, + -0.04922526702284813, + -0.01531034242361784, + -0.07064062356948853, + 0.07000122219324112, + 0.07722346484661102, + 0.13769613206386566, + 0.051442861557006836, + 0.01848054677248001, + 0.12584194540977478, + 0.000352676201146096, + 0.045471593737602234, + -0.0539742112159729, + -0.01930358074605465, + 0.01585455611348152, + 0.017534108832478523, + 0.009196865372359753, + -0.0744088664650917, + 0.037601400166749954, + 0.016887828707695007, + 0.02095148339867592, + 0.06059841066598892, + 0.04166814684867859, + -0.04157673940062523, + 0.01126174908131361, + 0.02694741263985634, + 0.003259503049775958, + -0.008704127743840218, + -0.007877240888774395, + 0.04834428057074547, + 0.0232513677328825, + -0.008509098552167416, + 0.007618786301463842, + 0.07029721140861511, + -0.0076712677255272865, + -0.1585492491722107, + -0.04340043663978577, + 0.02262161113321781, + -0.06667063385248184, + 0.029809119179844856, + 0.0997665748000145, + -0.04363610967993736, + -0.015098225325345993, + 0.10218854993581772, + 0.029188714921474457, + -0.10727658122777939, + -0.03218488022685051, + 0.06921911239624023, + 0.010089023038744926, + -0.06713440269231796, + 0.00478600338101387, + 0.008088544942438602, + 0.07619105279445648, + -0.0037348114419728518, + 0.03820998966693878, + -0.03570016101002693, + 0.024120323359966278, + 0.03871113806962967, + -0.030667653307318687, + -0.16003504395484924, + 0.03660258278250694, + -0.15154673159122467, + 0.02833482064306736, + 0.06562145054340363, + 0.025619233027100563, + -0.04562225937843323, + 0.07836097478866577, + -0.00033621827606111765, + 0.034884221851825714, + 0.06745052337646484, + -0.003732274053618312, + 0.007479345425963402, + -0.08831152319908142, + 0.012863673269748688, + -0.04239450395107269, + -0.05085035040974617, + 0.017684858292341232, + 0.012539472430944443, + 0.04464026167988777, + 0.012851993553340435, + 0.006270038895308971, + -0.03812604397535324, + -0.0012386918533593416, + 0.0009641475626267493, + 0.0469907782971859, + -0.07708802074193954, + -0.042209427803754807, + 0.04001832380890846, + -0.062306471168994904, + -0.08856715261936188, + -1.7743828249563264e-33, + -0.03435313701629639, + 0.03413275256752968, + -0.06047489494085312, + 0.0028222452383488417, + -0.0646422952413559, + 0.05960619077086449, + 0.05669410899281502, + -0.03325727954506874, + 0.019757864996790886, + -0.009874405339360237, + 0.059715479612350464, + 0.029044317081570625, + -0.07692736387252808, + -0.05687728896737099, + -0.08066163957118988, + 0.016552994027733803, + -0.0501386895775795, + 0.031695567071437836, + -0.027588600292801857, + -0.019279789179563522, + -0.06146413832902908, + 0.03307719528675079, + -0.04895467311143875, + 0.006263257469981909, + 0.013990870676934719, + 0.013625910505652428, + 0.00494722044095397, + -0.017635025084018707, + 0.02357514575123787, + -0.034941159188747406, + -0.005505531094968319, + -0.04806327074766159, + 0.07014704495668411, + -0.0028700975235551596, + -0.08115923404693604, + 0.0003357933019287884, + 0.10578519850969315, + -0.03389236703515053, + 0.025504237040877342, + -0.055402688682079315, + -0.027254244312644005, + -0.09247847646474838, + 0.10757748782634735, + 0.03617139160633087, + 0.026954859495162964, + -0.027411431074142456, + -0.0026569932233542204, + -0.04362567886710167, + -0.012554940767586231, + 0.09269705414772034, + 0.015817875042557716, + -0.03721657022833824, + -0.048903536051511765, + 0.06080997735261917, + -0.06210104376077652, + -0.006167089566588402, + 0.003735779318958521, + 0.054640449583530426, + -0.03533507138490677, + 0.08638064563274384, + -0.046397868543863297, + 0.07310786843299866, + 0.03547753766179085, + 0.0349154993891716, + -0.07371543347835541, + -0.04406941309571266, + 0.01780485175549984, + 0.01279547531157732, + 0.05102352797985077, + -0.03916668891906738, + 0.058342721313238144, + 0.029219146817922592, + 0.03521820902824402, + 0.023147225379943848, + -0.01283793430775404, + -0.05329721421003342, + 0.047632940113544464, + 0.07034896314144135, + 0.008370270021259785, + 0.044855233281850815, + 0.058905135840177536, + 0.016620051115751266, + -0.008357439190149307, + -0.044152263551950455, + -0.12870270013809204, + 0.05636122077703476, + 0.07234712690114975, + 0.02803284116089344, + -0.04425477609038353, + -0.06732355058193207, + -0.10839962959289551, + 0.06133044883608818, + -0.069054514169693, + -0.04501957446336746, + -0.0279032401740551, + -3.493779132668351e-08, + -0.017792748287320137, + 0.004645929206162691, + -0.07743766903877258, + -0.04189092665910721, + 0.04118393734097481, + -0.03281369432806969, + 0.017899487167596817, + -0.07950782775878906, + -0.058007050305604935, + -0.010737414471805096, + 0.020265650004148483, + 0.06544408947229385, + -0.09278053790330887, + -0.08223279565572739, + -0.011470229364931583, + 0.045576196163892746, + 0.04144987463951111, + 0.0024941798765212297, + -0.021550791338086128, + -0.07458791881799698, + 0.0020157259423285723, + 0.014536184258759022, + 0.07574307918548584, + 0.008950350806117058, + 0.00976658146828413, + 0.03251449018716812, + -0.09872360527515411, + 0.04249479994177818, + 0.05088480934500694, + -0.0025497397873550653, + 0.08714234083890915, + 0.046494897454977036, + -0.023394446820020676, + -0.012241777963936329, + -0.03504539281129837, + 0.006732787936925888, + 0.020432284101843834, + 0.04661727696657181, + 0.049822937697172165, + 0.10254225134849548, + -0.08992741256952286, + -0.049312397837638855, + -0.022520724684000015, + -0.02563268318772316, + 0.024189120158553123, + -0.00022391242964658886, + -0.008804918266832829, + -0.054943278431892395, + -0.08510445803403854, + -0.1299368441104889, + 0.009625080041587353, + 0.03643597289919853, + -0.006427091546356678, + 0.05604281648993492, + -0.027458783239126205, + -0.06595364212989807, + -0.029242832213640213, + 0.012833752669394016, + -0.006384837441146374, + 0.03788245469331741, + 0.10633310675621033, + -0.05118679255247116, + 0.025175856426358223, + -0.041334837675094604 + ], + "calendar-bold||dates,times,events,schedule,12": [ + 0.021446404978632927, + 0.019934700801968575, + -0.005535328295081854, + 0.09207896888256073, + -0.01576806604862213, + 0.04136370122432709, + -0.048595771193504333, + -0.05962769687175751, + 0.030857570469379425, + -0.005120726302266121, + -0.08269322663545609, + 0.013429424725472927, + -0.06477315723896027, + -0.013710632920265198, + -0.01298091933131218, + -0.033366985619068146, + -0.03150598704814911, + 0.028751268982887268, + -0.02113904245197773, + 0.0010583678958937526, + 0.04487864673137665, + -0.04878797009587288, + 0.021238699555397034, + 0.0365256741642952, + 0.0528862327337265, + 0.01777786575257778, + 0.052404969930648804, + -0.014903940260410309, + 0.029976336285471916, + 0.008433538489043713, + -0.026223644614219666, + -0.06361003965139389, + 0.051174748688936234, + -0.01612885110080242, + 0.09911170601844788, + 0.01818324252963066, + -0.02890230529010296, + -0.028101647272706032, + 0.01706213690340519, + 0.03320692479610443, + 0.023296793922781944, + -0.05881928279995918, + 0.05535360425710678, + -0.005283471196889877, + -0.06088196113705635, + -0.046955183148384094, + -0.05934372544288635, + -0.035736083984375, + -0.0193866565823555, + 0.09603453427553177, + 0.02624749019742012, + -0.04987168684601784, + -0.06808070838451385, + -0.012935618869960308, + 0.08973109722137451, + 0.08576222509145737, + -0.12842538952827454, + -0.0666266456246376, + 0.05309849977493286, + -0.017538582906126976, + -0.002976260846480727, + 0.05828147754073143, + -0.0025934234727174044, + 0.06708131730556488, + -0.030347192659974098, + 0.04101448878645897, + -0.03333374112844467, + 0.08020581305027008, + 0.031977321952581406, + -0.0036193758714944124, + 0.023567544296383858, + 0.019786551594734192, + 0.0037157901097089052, + -0.01956849731504917, + -0.019142623990774155, + 0.026531727984547615, + 0.038233883678913116, + 0.02687222696840763, + -0.02090374566614628, + -0.03729536384344101, + -0.11979040503501892, + -0.07825462520122528, + 0.0011141152353957295, + 0.03570803999900818, + 0.13443855941295624, + -0.01531616784632206, + -0.08038382232189178, + -0.01149776577949524, + -0.05951645225286484, + -0.03818076103925705, + 0.01242745015770197, + 0.025904111564159393, + 0.056737616658210754, + 0.030390551313757896, + -0.11471976339817047, + 0.03919205814599991, + 0.057345520704984665, + 0.032340530306100845, + 0.0110815754160285, + 0.08187297731637955, + 0.02136392332613468, + 0.058503568172454834, + -0.046077024191617966, + 0.05585823580622673, + -0.03047284297645092, + -0.014341257512569427, + -0.06438911706209183, + -0.07862814515829086, + -0.12567812204360962, + 0.0023857825435698032, + -0.01130580622702837, + -0.05130588635802269, + 0.021976878866553307, + -0.09144265949726105, + 0.010844064876437187, + 0.009058055467903614, + -0.015787344425916672, + -0.01429531630128622, + 0.11065571010112762, + 0.04081668704748154, + 0.0024363945703953505, + 0.026256168261170387, + -0.05891787260770798, + -0.012075775302946568, + -0.013459984213113785, + 0.014904402196407318, + 0.08476097136735916, + -2.0379760455267008e-33, + 0.05899084359407425, + -0.010402871295809746, + -0.02621266059577465, + 0.046977344900369644, + 0.07106951624155045, + 0.04282458871603012, + -0.05176069959998131, + -0.06465005874633789, + 0.0003293938934803009, + 0.028455669060349464, + 0.09907060861587524, + 0.05434185639023781, + -0.009879601188004017, + -0.03914438933134079, + -5.301690544001758e-05, + -0.010828154161572456, + 0.06296727061271667, + 0.04229240491986275, + 0.005985586903989315, + -0.009221338666975498, + -0.11328741908073425, + -0.04277155175805092, + -0.02408597059547901, + -0.008564495481550694, + -0.01166445016860962, + 0.06257220357656479, + 0.06675619632005692, + 0.019754542037844658, + -0.0787401869893074, + 0.021538667380809784, + 0.07936987280845642, + -0.027112174779176712, + 0.007255025207996368, + 0.037541765719652176, + 0.04742269590497017, + 0.04381584748625755, + -0.02163451910018921, + 0.033870987594127655, + 0.049528032541275024, + 0.04836011305451393, + -0.07059290260076523, + -0.07637827843427658, + -0.06098339706659317, + -0.05581847205758095, + 0.04183303564786911, + 0.12553580105304718, + 0.02186230756342411, + -0.09119641780853271, + 0.1003841981291771, + 0.0036675932351499796, + -0.02902441844344139, + -0.0141622144728899, + 0.052572861313819885, + -0.07774745672941208, + 0.02583061344921589, + 0.01877322793006897, + 0.0567755363881588, + 0.024609483778476715, + 0.04356590658426285, + 0.04317175969481468, + 0.04189401492476463, + 0.010578001849353313, + 0.03998105973005295, + -0.03142930939793587, + -0.09775762259960175, + 0.062030114233493805, + -0.02279777079820633, + 0.043527938425540924, + 0.0673055574297905, + 0.0012393946526572108, + 0.021080687642097473, + 0.09314627200365067, + 0.08519168198108673, + 0.003365041222423315, + 0.03318705037236214, + 0.07400104403495789, + 0.10495667904615402, + -0.0382632315158844, + -0.0030328421853482723, + 0.021129561588168144, + -0.04763459414243698, + -0.007829191163182259, + 0.051309436559677124, + 0.08011802285909653, + 0.02569916658103466, + -0.01983233541250229, + -0.021416112780570984, + 0.03309105336666107, + 0.03451905399560928, + 0.010620217770338058, + -0.042946893721818924, + -0.04781462624669075, + -0.006930454168468714, + -0.03375544771552086, + -0.1014837995171547, + -3.859522183396414e-34, + 0.08316440135240555, + 0.034710273146629333, + -0.05341435968875885, + -0.04620445892214775, + 0.008889936842024326, + -0.0060345144011080265, + -0.01818425953388214, + 0.04137320816516876, + 0.054169733077287674, + 0.041656047105789185, + 0.0496712289750576, + 0.033841703087091446, + -0.049165092408657074, + -0.09678202122449875, + -0.032640933990478516, + 0.016176912933588028, + 0.056098803877830505, + 0.038885414600372314, + -0.0403372161090374, + -0.05385342240333557, + -0.08295679837465286, + 0.03982837125658989, + -0.1516152024269104, + 0.001076738117262721, + 0.008386915549635887, + 0.021079042926430702, + 0.02609054185450077, + -0.03593193367123604, + -0.0345853790640831, + 0.020388562232255936, + -0.043207038193941116, + -0.12632869184017181, + 0.02035568468272686, + 0.009959925897419453, + -0.07195893675088882, + 0.08527243882417679, + 0.03284267708659172, + -0.016816982999444008, + 0.0025536201428622007, + -0.016687212511897087, + -0.0025393019896000624, + -0.03154624253511429, + -0.008245640434324741, + -0.006828408222645521, + -0.06144089996814728, + 0.044196825474500656, + -0.012686902657151222, + 0.015455075539648533, + 0.04145973548293114, + 0.10549262911081314, + -0.01867440715432167, + -0.05238473415374756, + -0.04507368057966232, + 0.03634214401245117, + 0.005396545398980379, + -0.04031609743833542, + 0.012284837663173676, + -0.031140070408582687, + -0.017358889803290367, + 0.056276798248291016, + -0.08707012981176376, + 0.03846503049135208, + -0.04582272469997406, + 0.011225925758481026, + 0.015697481110692024, + -0.05867061764001846, + 0.0038600454572588205, + -0.08509472012519836, + 0.014827792532742023, + -0.046935927122831345, + 0.04052700102329254, + -0.030949879437685013, + -0.07553119957447052, + 0.015295774675905704, + -0.032218776643276215, + 0.03689160570502281, + 0.06715620309114456, + 0.08250357210636139, + -0.05603089556097984, + -0.008968452922999859, + -0.06300963461399078, + -0.04520735889673233, + -0.022053658962249756, + 0.048176977783441544, + -0.09198375046253204, + 0.08683431893587112, + 0.029708612710237503, + -0.03237495198845863, + -0.007416335865855217, + 0.013142152689397335, + -0.09597625583410263, + -0.016815176233649254, + 0.0017101437551900744, + 0.06729954481124878, + -0.011815527454018593, + -1.875357469316441e-08, + 0.019948337227106094, + -0.020306184887886047, + -0.03550337627530098, + -0.05244288593530655, + 0.03867701441049576, + -0.09194386005401611, + -0.023532738909125328, + -0.061945393681526184, + -0.02934793010354042, + 0.025903496891260147, + 0.05230233073234558, + -0.0009272315073758364, + -0.07549719512462616, + -0.07486198097467422, + -0.017560547217726707, + 0.01823645830154419, + -0.04876209422945976, + 0.052671849727630615, + -0.048502057790756226, + -0.09268695116043091, + 0.0030604228377342224, + 0.021458545699715614, + 0.04922841861844063, + -0.03555772453546524, + 0.04944228753447533, + -0.005973473656922579, + -0.14151233434677124, + 0.07854774594306946, + 0.061666421592235565, + 0.04874446615576744, + 0.023498613387346268, + 0.03191598877310753, + 0.03723382577300072, + -0.040559008717536926, + -0.10994220525026321, + -0.07804565876722336, + -0.09978905320167542, + -0.01656179688870907, + 0.010850043036043644, + 0.09604096412658691, + 0.021516650915145874, + -0.06459449976682663, + -0.05095100402832031, + 0.04009932652115822, + -0.0410727821290493, + 0.004429693799465895, + 0.0029878132045269012, + -0.0902610644698143, + -0.04805728793144226, + -0.07499157637357712, + -0.06939374655485153, + -0.01400414202362299, + 0.046246759593486786, + 0.01151870097965002, + -0.011284694075584412, + 0.03747839108109474, + 0.07254351675510406, + 0.01302734762430191, + 0.04968705028295517, + -0.0037734126672148705, + 0.07036696374416351, + -0.019733352586627007, + -0.022636232897639275, + 0.007729412522166967 + ], + "calendar-blank-bold||dates,times,events,schedule,none": [ + 0.035205185413360596, + 0.019779818132519722, + 0.01848486438393593, + 0.14149178564548492, + 0.009841633029282093, + 0.03442947939038277, + -0.0918809026479721, + -0.04950854927301407, + 0.062144625931978226, + -0.030159175395965576, + -0.07005564123392105, + -0.026987282559275627, + -0.06887739896774292, + -0.029489075765013695, + -0.011817893013358116, + 0.00411142548546195, + -0.06447385251522064, + -0.0632413774728775, + -0.0031226729042828083, + -0.007394794840365648, + -0.004014508333057165, + -0.024747192859649658, + 0.018606046214699745, + 0.023484477773308754, + 0.051492735743522644, + 0.0445907786488533, + 0.01835448108613491, + -0.011766577139496803, + 0.014538181014358997, + 0.02437421679496765, + -0.02385195530951023, + -0.07139500230550766, + 0.040563613176345825, + -0.04611301049590111, + 0.15919992327690125, + 0.03708069771528244, + 0.025910163298249245, + 0.009743890725076199, + 0.007399865426123142, + 0.023907607421278954, + 0.05545983463525772, + -0.042367834597826004, + 0.03442029282450676, + 0.027585657313466072, + -0.06409892439842224, + -0.03410109877586365, + -0.013381418772041798, + -0.08417733013629913, + -0.000700620177667588, + 0.05936209857463837, + 0.016909347847104073, + -0.05233186483383179, + -0.0570494644343853, + -0.03837432712316513, + 0.07316537201404572, + 0.0825129896402359, + -0.07153410464525223, + -0.0331541933119297, + 0.05199248716235161, + -0.031086008995771408, + 0.012003784067928791, + 0.0865907073020935, + -0.030872665345668793, + 0.0716724693775177, + -0.01393220666795969, + 0.05464419722557068, + -0.0436677485704422, + 0.03934668004512787, + 0.014109522104263306, + 0.004670538939535618, + 0.030343882739543915, + 0.03394021838903427, + -0.04069926589727402, + 0.02346927486360073, + -0.015273090451955795, + 0.010231899097561836, + 0.01833275891840458, + 0.028870947659015656, + 0.010785617865622044, + -0.0006922536995261908, + -0.10437574982643127, + -0.08644261956214905, + -0.0388212651014328, + 0.025669438764452934, + 0.10562428832054138, + 0.03907754272222519, + -0.06412731111049652, + -0.028022773563861847, + -0.025188954547047615, + -0.022737570106983185, + -0.023079564794898033, + 0.05861147493124008, + 0.030295098200440407, + 0.029264306649565697, + -0.10004030913114548, + 0.026017922908067703, + 0.04468654468655586, + 0.0716182217001915, + -0.014794472604990005, + 0.11459388583898544, + -0.00018196053861174732, + 0.013003894127905369, + -0.013159516267478466, + 0.11343120783567429, + -0.025038328021764755, + -0.0091859744861722, + -0.0501985140144825, + -0.06288069486618042, + -0.16014711558818817, + 0.027831634506583214, + 0.0458778478205204, + -0.06123054400086403, + 0.04535915330052376, + -0.0667620524764061, + -0.07009890675544739, + 0.023995237424969673, + -0.043518394231796265, + -0.015047223307192326, + 0.06365456432104111, + 0.0690055638551712, + 0.029143376275897026, + 0.02109435573220253, + -0.05118392035365105, + -0.006989015266299248, + -0.0037942654453217983, + 0.022745072841644287, + 0.09971440583467484, + -2.228166990727916e-33, + 0.0537877157330513, + -0.010789856314659119, + 0.004420244134962559, + 0.03725191578269005, + 0.09123484790325165, + 0.03299235925078392, + -0.06375579535961151, + -0.07221352308988571, + 0.04046472907066345, + 0.04996063932776451, + 0.09597130864858627, + 0.03598087280988693, + -0.008806505240499973, + -0.02495736815035343, + 0.007069315295666456, + 0.01443567220121622, + 0.07644613832235336, + 0.034777551889419556, + 0.01289051491767168, + -0.005763081833720207, + -0.07797004282474518, + -0.022640850394964218, + -0.035419367253780365, + -0.005694778170436621, + -0.03205449879169464, + 0.049686457961797714, + 0.0845889300107956, + -0.029648881405591965, + -0.09455549716949463, + 0.003104181494563818, + 0.03079439327120781, + -0.014470113441348076, + 0.07758879661560059, + 0.0002330535207875073, + 0.02241925336420536, + 0.0689074769616127, + -0.03733556345105171, + 0.005453973542898893, + -0.011206399649381638, + 0.08727730065584183, + -0.11225388199090958, + -0.09499646723270416, + -0.05155634507536888, + -0.08802428841590881, + 0.05805843695998192, + 0.0555477999150753, + 0.044381946325302124, + -0.07386255264282227, + 0.04223749414086342, + 0.0294084120541811, + -0.03762626647949219, + 0.0012301297392696142, + 0.03746211901307106, + -0.031090812757611275, + -0.02591116726398468, + 0.0043651387095451355, + 0.0335836187005043, + -0.010578597895801067, + 0.003894575173035264, + -0.029536457732319832, + 0.0715143084526062, + 0.013807910494506359, + 0.012229003943502903, + -0.04425783455371857, + -0.08004540205001831, + 0.048965390771627426, + -0.01220198255032301, + 0.008010451681911945, + 0.0821533054113388, + -0.042220622301101685, + 0.037820518016815186, + 0.010740658268332481, + 0.08683116734027863, + 0.010489199310541153, + 0.0497836209833622, + 0.07604900002479553, + 0.0863882452249527, + -0.06049496680498123, + 0.030876271426677704, + 0.018078375607728958, + 0.03646290302276611, + -0.039023905992507935, + 0.05562746524810791, + 0.04627649113535881, + 0.011635303497314453, + -0.024613475427031517, + -0.02925541251897812, + 0.09190519154071808, + 0.03229331225156784, + 0.008883300237357616, + -0.03661704063415527, + -0.061140768229961395, + -0.04228280484676361, + -0.034252751618623734, + -0.06457024067640305, + 5.92587537427706e-35, + 0.06417100876569748, + 0.03843873366713524, + -0.04210812970995903, + -0.03232269734144211, + -0.03917680308222771, + 0.011414546519517899, + 0.01989673264324665, + 0.017811423167586327, + 0.08212687075138092, + 0.050810959190130234, + 0.09732743352651596, + 0.02130197174847126, + -0.04075069725513458, + -0.06408669799566269, + -0.012622776441276073, + 0.03141731768846512, + 0.031143607571721077, + 0.03367282450199127, + -0.028497502207756042, + 0.0030732247978448868, + -0.059380386024713516, + 0.07194385677576065, + -0.14519286155700684, + 0.004239324945956469, + 0.02808615379035473, + -0.004129420500248671, + 0.038002271205186844, + -0.012585291638970375, + -0.03611278161406517, + -0.00322952913120389, + -0.017799967899918556, + -0.07586323469877243, + 0.005165558308362961, + -0.0002408745640423149, + -0.02106253057718277, + 0.0782184824347496, + 0.0177289005368948, + 0.00921513233333826, + -0.00553681468591094, + -0.027121776714920998, + -0.03917630389332771, + 0.0025439385790377855, + -0.022607820108532906, + 0.019157476723194122, + -0.060070060193538666, + 0.08969329297542572, + -0.05009307339787483, + 0.0027811466716229916, + 0.04664456471800804, + 0.042281005531549454, + -0.03779873996973038, + -0.05868605151772499, + -0.05060501769185066, + -0.03552451357245445, + 0.0011554708471521735, + -0.02137666754424572, + 0.024231813848018646, + -0.026702962815761566, + -0.011308624409139156, + 0.023014483973383904, + -0.07426989823579788, + 0.02187270112335682, + -0.056189414113759995, + -8.740855264477432e-05, + 0.019664186984300613, + -0.060405462980270386, + 0.02331307902932167, + 0.007519030477851629, + 0.04155180603265762, + -0.10313145071268082, + 0.025203632190823555, + -0.04191403463482857, + -0.04369642585515976, + -0.043267715722322464, + -0.003599124727770686, + 0.10116487741470337, + 0.051837947219610214, + 0.06844154745340347, + -0.06620606034994125, + 0.018488343805074692, + -0.03480282053351402, + -0.00916904304176569, + -0.03968341648578644, + 0.0013659188989549875, + -0.05448288843035698, + 0.07852718979120255, + 0.002066044369712472, + -0.042564526200294495, + -0.050804074853658676, + 0.007315267808735371, + -0.10029689222574234, + -0.0036375054623931646, + 0.014008745551109314, + 0.10501547902822495, + -0.020896784961223602, + -2.036012958228639e-08, + 0.04864833131432533, + -0.017697246745228767, + -0.009200651198625565, + -0.05923677980899811, + 0.004840458743274212, + -0.13798363506793976, + 0.0021343505941331387, + -0.0854182094335556, + -0.005993428640067577, + 0.03213911131024361, + -0.0009865076281130314, + -0.020496293902397156, + -0.08734104037284851, + -0.06580940634012222, + -0.012159258127212524, + 0.03928229957818985, + -0.08818985521793365, + 0.06781961023807526, + -0.0484408400952816, + -0.1113375574350357, + -0.0043464722111821175, + -0.01048362534493208, + 0.023448152467608452, + -0.04897794499993324, + 0.05923895537853241, + -0.011296696029603481, + -0.12787798047065735, + 0.06067278981208801, + 0.07745072990655899, + 0.04827457666397095, + 0.025613103061914444, + 0.04260316118597984, + 0.09428860992193222, + -0.06633464992046356, + -0.11580793559551239, + -0.09019267559051514, + -0.0522640086710453, + 0.03218946233391762, + -0.012684563174843788, + 0.04389135539531708, + 0.030564084649086, + -0.05755558982491493, + -0.001157372142188251, + 0.0056635234504938126, + -0.06823816895484924, + 0.013860480859875679, + 0.027985019609332085, + -0.01806398294866085, + -0.02071917988359928, + -0.06691604107618332, + -0.07826272398233414, + -0.007606483064591885, + 0.020793313160538673, + -0.006862680893391371, + -0.02566288225352764, + 0.001932227867655456, + 0.10418011993169785, + 0.04503254219889641, + 0.03258537873625755, + -0.04565252736210823, + 0.08112422376871109, + -0.020671071484684944, + -0.05681037902832031, + 0.007600580807775259 + ], + "calendar-check-bold||dates,times,events,schedule,todo,checklist": [ + 0.028140559792518616, + 0.020115090534090996, + -0.03429450839757919, + 0.0977654755115509, + 0.05146745964884758, + 0.008370982483029366, + 0.07155498117208481, + -0.052121005952358246, + -0.0027587239164859056, + 0.00881382916122675, + -0.08484987914562225, + -0.03463615104556084, + -0.048935066908597946, + -0.006749770604074001, + -0.014791451394557953, + -0.05638125166296959, + -0.007576923817396164, + 0.008677895180881023, + -0.029872434213757515, + -0.02212967723608017, + 0.03062162920832634, + -0.04374167323112488, + 0.039509695023298264, + 0.04739723354578018, + 0.022727156057953835, + 0.010397887788712978, + 0.04955640807747841, + -0.00430795643478632, + -0.033564768731594086, + -0.019571509212255478, + -0.029821384698152542, + -0.04091629013419151, + 0.08734643459320068, + -0.005891002248972654, + 0.09089978039264679, + 0.05112960562109947, + -0.013552198186516762, + -0.027355501428246498, + 0.008722757920622826, + -0.008081936277449131, + 0.006610754411667585, + -0.06424425542354584, + 0.01857108250260353, + -0.02144760452210903, + -0.03909185901284218, + -0.03071386180818081, + -0.04457896575331688, + -0.047231823205947876, + 0.011555993929505348, + 0.05972617492079735, + 0.03505996987223625, + -0.0692136362195015, + -0.05601120367646217, + -0.05449206754565239, + 0.041828155517578125, + 0.09393606334924698, + -0.07224542647600174, + -0.050342705100774765, + 0.031871248036623, + -0.04316321387887001, + -9.425669122720137e-05, + 0.06727191805839539, + -0.014627160504460335, + 0.05765965208411217, + -0.004522623028606176, + 0.05465526506304741, + -0.05475904420018196, + 0.04562808573246002, + 0.018398113548755646, + 0.007005541119724512, + -0.017106788232922554, + -0.0017628821078687906, + 0.0672089084982872, + 0.007843177765607834, + -0.029217613860964775, + 0.005903903394937515, + 0.055954113602638245, + -0.015352017246186733, + -0.04389239102602005, + -0.0680433139204979, + -0.15234994888305664, + -0.04616304859519005, + -0.022685464471578598, + 0.01191750168800354, + 0.09669406712055206, + 0.038402605801820755, + -0.06040116026997566, + -0.0082329036667943, + -0.034173209220170975, + -0.0671701729297638, + 0.03160332143306732, + 0.015833808109164238, + 0.03837083652615547, + -0.004729330539703369, + -0.07802216708660126, + 0.05844081938266754, + 0.019003819674253464, + 0.05096273124217987, + 0.022677483037114143, + 0.09156405180692673, + 0.00761706056073308, + 0.05471782758831978, + -0.05471402034163475, + 0.04595714062452316, + 0.03517556190490723, + -0.0072661954909563065, + -0.053614292293787, + -0.03579714521765709, + -0.0925678089261055, + 0.02372576668858528, + -0.018529728055000305, + -0.058126047253608704, + 0.08150625228881836, + -0.07325991243124008, + -0.010674705728888512, + -0.01326682884246111, + -0.003697916865348816, + 0.007769282907247543, + 0.06354515254497528, + 0.07936151325702667, + 0.06051747873425484, + -0.009244035929441452, + -0.07200468331575394, + -0.05333206057548523, + 0.013725181110203266, + -0.003365112002938986, + 0.09725015610456467, + -1.1664728908572072e-33, + 0.07855105400085449, + 0.017825713381171227, + 0.021647604182362556, + 0.024762343615293503, + 0.04142178222537041, + 0.02077910490334034, + -0.07426803559064865, + -0.06392323970794678, + -0.013243621215224266, + 0.040316224098205566, + 0.1172042265534401, + 0.03836332634091377, + -0.04981689527630806, + -0.013550888746976852, + 0.05155264213681221, + 0.010838281363248825, + 0.023265372961759567, + 0.055313047021627426, + -0.015611083246767521, + 0.001003270037472248, + -0.08619606494903564, + -0.08114557713270187, + -0.014388153329491615, + -0.017495563253760338, + -0.03202689811587334, + 0.031622081995010376, + 0.06893223524093628, + 0.041553523391485214, + -0.09651391208171844, + -0.013845735229551792, + 0.020316625013947487, + -0.026923900470137596, + 0.04791399836540222, + 0.05296105518937111, + 0.027933437377214432, + 0.05187050253152847, + -0.07908201217651367, + 0.02687069959938526, + -0.017260653898119926, + 0.03225015103816986, + -0.06895440071821213, + -0.061179209500551224, + -0.0472346767783165, + -0.058957651257514954, + 0.06735889613628387, + 0.09005673229694366, + -0.010521511547267437, + -0.04571233317255974, + 0.1197856068611145, + -0.0005897169467061758, + 0.016701798886060715, + -0.0024172335397452116, + 0.020510587841272354, + -0.035491812974214554, + -0.009561244398355484, + -0.017397992312908173, + 0.06988383829593658, + 0.01707763969898224, + 0.052566397935152054, + 0.03501572832465172, + 0.05245456099510193, + 0.011520066298544407, + -0.0022858844604343176, + -0.06819094717502594, + -0.11104609072208405, + 0.07382196933031082, + -0.05586414784193039, + 0.0692482739686966, + 0.09726567566394806, + 0.00857267901301384, + -0.007369242142885923, + 0.05700569227337837, + 0.11509126424789429, + 0.045624736696481705, + 0.04653514176607132, + 0.08377901464700699, + 0.09443354606628418, + -0.06806674599647522, + 0.019062813371419907, + -0.024005204439163208, + -0.012786710634827614, + -0.0386672280728817, + -0.004194571170955896, + 0.10907191038131714, + 0.009859144687652588, + -0.0169273279607296, + -0.025477122515439987, + -0.0004963925457559526, + 0.014918223954737186, + 0.012062370777130127, + -0.08039846271276474, + 0.0002482447889633477, + -0.007875921204686165, + -0.08107173442840576, + -0.09600795060396194, + -2.1354169966991835e-33, + 0.10682385414838791, + 0.008359115570783615, + -0.04289783909916878, + -0.045041508972644806, + -0.013039055280387402, + -0.003999881446361542, + -0.06855142116546631, + 0.03260157257318497, + 0.06911516934633255, + 0.03446510061621666, + 0.06448499858379364, + -0.03778751939535141, + -0.0034581846557557583, + -0.09751809388399124, + -0.030660517513751984, + 0.019203554838895798, + 0.05543053150177002, + 0.01915866881608963, + -0.04977875575423241, + -0.0223174337297678, + -0.041839998215436935, + 0.09431944042444229, + -0.09792051464319229, + 0.005529474932700396, + 0.01202770508825779, + -0.012061310932040215, + -0.003198721446096897, + -0.0514802411198616, + -0.005646680016070604, + 0.023976199328899384, + -0.02250097133219242, + -0.05608894303441048, + 0.0314478762447834, + 0.04728369414806366, + -0.0165188517421484, + 0.012775984592735767, + 0.03910977393388748, + 0.02158825285732746, + 0.014763028360903263, + 0.03453903645277023, + -0.028542162850499153, + -0.021155595779418945, + 0.0405510775744915, + 0.017961524426937103, + -0.07895398885011673, + 0.03761987015604973, + -0.05154154822230339, + 0.04843719303607941, + -0.021148478612303734, + 0.09250565618276596, + 0.014432827942073345, + -0.08732137829065323, + -0.0628775805234909, + 0.007261532824486494, + 0.01839543506503105, + 0.012476712465286255, + 0.006064988672733307, + -0.08113673329353333, + -0.005638334434479475, + 0.04624076560139656, + -0.11335299909114838, + -0.01174445915967226, + -0.013947340659797192, + 0.010752272792160511, + 0.0024602229241281748, + -0.05913282185792923, + 1.4692980585095938e-05, + -0.06421537697315216, + 0.0742906704545021, + -0.022814389318227768, + 0.05025772377848625, + -0.07263977080583572, + -0.06036057695746422, + -0.005462083034217358, + -0.015910731628537178, + -0.005415636580437422, + 0.06735953688621521, + 0.06808578222990036, + -0.0709950178861618, + 0.005220741033554077, + -0.02825365588068962, + -0.05076735094189644, + -0.010998671874403954, + 0.01491609588265419, + -0.09071893990039825, + 0.020083198323845863, + -0.018569905310869217, + -0.04328638315200806, + -0.02552640624344349, + -0.026738246902823448, + -0.08834125101566315, + -0.03499705716967583, + 0.03710806742310524, + 0.02323962189257145, + -0.05851919949054718, + -2.2893873463658565e-08, + 0.001471404335461557, + -0.042242225259542465, + -0.03913278505206108, + -0.01187464315444231, + 0.04585397616028786, + -0.105179563164711, + -0.029712483286857605, + -0.08478067815303802, + -0.003155946498736739, + 0.01965557411313057, + 0.050202641636133194, + 9.208727715304121e-05, + -0.09468059241771698, + -0.08115117251873016, + 0.016300121322274208, + 0.020497562363743782, + -0.06466319411993027, + 0.08779049664735794, + -0.05223286524415016, + -0.045587752014398575, + -0.01817384734749794, + 0.006270268000662327, + -0.038271933794021606, + -0.018932264298200607, + 0.0483563095331192, + 0.01030138973146677, + -0.1543523222208023, + 0.07409800589084625, + 0.045997533947229385, + 0.09310534596443176, + 0.054492853581905365, + 0.030971486121416092, + 0.04412437975406647, + -0.04934407398104668, + -0.05202382057905197, + -0.06964170187711716, + -0.055265359580516815, + -0.000573055527638644, + 0.024959014728665352, + 0.1348971575498581, + 0.04657209292054176, + -0.0017361576901748776, + -0.07652828842401505, + 0.04796808212995529, + -0.057239700108766556, + -0.008073979988694191, + 0.007876315154135227, + -0.054355841130018234, + -0.06630553305149078, + -0.13569176197052002, + -0.053775276988744736, + -0.0023758045863360167, + 0.057900477200746536, + -0.03468349575996399, + -0.0544557124376297, + 0.04408665746450424, + 0.09001510590314865, + 0.03702990710735321, + 0.0737258568406105, + -0.008032875135540962, + 0.08964335173368454, + -0.006143051665276289, + 0.03263505548238754, + 0.0024123310577124357 + ], + "calendar-dot-bold||*new*,dates,times,events,schedule,today": [ + -0.01907174289226532, + 0.016446582973003387, + 0.005857543554157019, + 0.10041602700948715, + 0.01895739510655403, + -0.006681788247078657, + -0.017895963042974472, + -0.06567534804344177, + 0.024556899443268776, + 0.01940441131591797, + -0.08230695128440857, + -0.024067141115665436, + -0.06268934160470963, + 0.0025078896433115005, + 0.010417500510811806, + -0.007159833796322346, + -0.051606014370918274, + 0.017695026472210884, + 0.0245878417044878, + -0.0186878964304924, + 0.03816724941134453, + -0.018891172483563423, + -0.029276710003614426, + 0.04755338653922081, + 0.07115420699119568, + 0.08355225622653961, + 0.04953118413686752, + -0.03592678904533386, + 0.026469135656952858, + -0.009471683762967587, + -0.03044999949634075, + -0.07030820846557617, + 0.020457275211811066, + -0.018985949456691742, + 0.08403083682060242, + 0.012391170486807823, + 0.002982923062518239, + -0.0024071705993264914, + 0.021591998636722565, + 0.030242066830396652, + 0.051049862056970596, + -0.08936616033315659, + 0.029782656580209732, + -0.004499628208577633, + -0.04000714793801308, + -0.032140567898750305, + -0.037018224596977234, + -0.0004592390323523432, + 0.00760645279660821, + 0.11138931661844254, + -0.020390832796692848, + -0.09106627851724625, + -0.04824453964829445, + -0.056348592042922974, + 0.06661316752433777, + 0.10728954523801804, + -0.04967997223138809, + -0.0510915108025074, + 0.05522370710968971, + -0.039025843143463135, + 0.018061112612485886, + 0.07292501628398895, + 0.03069438226521015, + 0.07604851573705673, + -0.02501840889453888, + -0.008185239508748055, + -0.06847899407148361, + 0.048043880611658096, + 0.061546966433525085, + 0.012281193397939205, + -0.025540364906191826, + 0.006152182351797819, + -0.001462679821997881, + -0.007183585781604052, + -0.01470808032900095, + 0.006344273686408997, + 0.03227074816823006, + 0.027807414531707764, + 0.0004697302356362343, + -0.02579975314438343, + -0.058032792061567307, + -0.031394727528095245, + 0.020400958135724068, + 0.031215600669384003, + 0.1295766532421112, + 0.039851363748311996, + -0.10908903926610947, + -0.009739571250975132, + -0.021080192178487778, + -0.03359608352184296, + -0.025397056713700294, + 0.025115985423326492, + 0.017308589071035385, + 0.04178312048316002, + -0.09697037190198898, + 0.04101885110139847, + 0.0362015999853611, + 0.06641475111246109, + 0.003880841191858053, + 0.1158842220902443, + 0.013348632492125034, + 0.07211475074291229, + -0.07537184655666351, + 0.08426063507795334, + 0.010112938471138477, + -0.0125669464468956, + -0.09293308109045029, + -0.06911716610193253, + -0.1275530755519867, + 0.042018551379442215, + -0.01704493723809719, + -0.040187761187553406, + 0.017332706600427628, + -0.08371270447969437, + -0.011658198200166225, + 0.03141750022768974, + -0.043573811650276184, + 0.0072978800162673, + 0.12399490922689438, + 0.08352264016866684, + 0.06192785128951073, + -0.011889883317053318, + -0.07418269664049149, + -0.01679806597530842, + -0.027743160724639893, + 0.03134096413850784, + 0.08204320818185806, + -2.087092240265887e-33, + 0.03444509208202362, + 0.018067892640829086, + 0.0016998692881315947, + 0.01767309568822384, + -0.0028250212781131268, + 0.030682407319545746, + -0.06320273876190186, + -0.05575193837285042, + 0.008121496997773647, + -0.030510880053043365, + 0.09988589584827423, + 0.041634123772382736, + -0.03744783252477646, + -0.011317502707242966, + -0.0010428979294374585, + -0.05226793512701988, + 0.06007257103919983, + 0.06336671113967896, + -0.013171210885047913, + 0.007593166083097458, + -0.12367455661296844, + -0.005014648661017418, + -0.04084395989775658, + 0.007354601752012968, + -0.0016090205172076821, + 0.029349766671657562, + 0.07749722898006439, + -0.013652834109961987, + -0.09743496775627136, + 0.00768411997705698, + 0.06262891739606857, + -0.043332889676094055, + 0.057888008654117584, + 0.05447674170136452, + 0.032528456300497055, + 0.07543862611055374, + -0.056542832404375076, + -0.00952897034585476, + -0.026202654466032982, + 0.05575292557477951, + -0.09390760958194733, + -0.06075497716665268, + -0.059851840138435364, + -0.08497055619955063, + -0.00272849528118968, + 0.09071718156337738, + -0.025841115042567253, + -0.058639999479055405, + 0.04182112216949463, + -0.0053842198103666306, + -0.013746350072324276, + -0.013526977971196175, + -0.0028903894126415253, + -0.04332812875509262, + 0.008317219093441963, + 0.006899265106767416, + 0.017688438296318054, + 0.016626955941319466, + 0.06294214725494385, + -0.052113842219114304, + 0.06486174464225769, + 0.005093144252896309, + 0.044463369995355606, + -0.013848562724888325, + -0.10799416899681091, + 0.025635184720158577, + -0.00412070332095027, + 0.036759696900844574, + 0.06980576366186142, + 0.0465850904583931, + 0.025661999359726906, + 0.06471136957406998, + 0.03438698872923851, + -5.525205415324308e-05, + 0.03456086292862892, + 0.0725371390581131, + 0.09836767613887787, + -0.02150389738380909, + 0.009182707406580448, + -0.008665979839861393, + -0.027385881170630455, + -0.028868352994322777, + 0.0225977785885334, + 0.06149577721953392, + 0.07398316264152527, + -0.0029959960374981165, + -0.027147201821208, + 0.02453494444489479, + 0.02287842333316803, + -0.05125930905342102, + -0.06482083350419998, + -0.06344674527645111, + -0.02945948950946331, + -0.039968088269233704, + -0.10994087159633636, + -9.358797456407493e-34, + 0.08173764497041702, + 0.037388358265161514, + -0.0576791912317276, + -0.025818346068263054, + -0.06302912533283234, + -0.033715855330228806, + -0.04105467349290848, + 0.03868991509079933, + 0.04686669632792473, + 0.050935279577970505, + 0.06027291715145111, + 0.028320254758000374, + -0.04389319568872452, + -0.08060486614704132, + 0.018063774332404137, + 0.017766138538718224, + 0.022253505885601044, + 0.02892429195344448, + -0.03100239485502243, + -0.0035392632707953453, + -0.06894814968109131, + 0.018117517232894897, + -0.1213119775056839, + -0.017577093094587326, + 0.05797581374645233, + -0.03101825900375843, + 0.0471586212515831, + -0.014313850551843643, + -0.05473179370164871, + -0.024590378627181053, + -0.07555422186851501, + -0.08408056944608688, + 0.021881965920329094, + 0.05403745174407959, + -0.034398939460515976, + 0.07397586107254028, + 0.03590383008122444, + -0.05305824801325798, + 0.0516141876578331, + -0.026113994419574738, + -0.028426693752408028, + -0.011585593223571777, + 0.011099494993686676, + 0.031438592821359634, + -0.033366844058036804, + 0.06257019937038422, + -0.04266710206866264, + 0.0458710677921772, + 0.04521680250763893, + 0.07875474542379379, + -0.0006241390947252512, + -0.061500824987888336, + -0.028738288208842278, + -0.0007072524167597294, + -0.029179124161601067, + -0.0030411039479076862, + -0.01889355666935444, + -0.024231798946857452, + -0.053265269845724106, + 0.016925111413002014, + -0.12037103623151779, + 0.0035369079560041428, + -0.0746859684586525, + 0.03560256212949753, + 0.00026081924443133175, + -0.09550179541110992, + -0.01406966894865036, + -0.038664560765028, + 0.02231874130666256, + -0.06527223438024521, + 0.10850536078214645, + -0.005159279331564903, + -0.10525526106357574, + -0.005204732529819012, + -0.04665382206439972, + -0.010649551637470722, + 0.08152168244123459, + 0.04499153420329094, + -0.06350443512201309, + 0.007525278255343437, + -0.0749836415052414, + 0.013647081330418587, + 0.019192632287740707, + 0.013809215277433395, + -0.09465763717889786, + 0.07112005352973938, + 0.010595334693789482, + -0.018626650795340538, + -0.03043418750166893, + 0.01813467964529991, + -0.10429172217845917, + 0.00019313670054543763, + -0.03313255310058594, + 0.0744575783610344, + -0.03789684176445007, + -2.283240441158796e-08, + 0.018863072618842125, + 0.0025771253276616335, + -0.049849312752485275, + -0.02251577191054821, + 0.03141847997903824, + -0.08736398071050644, + -0.039746351540088654, + -0.08000440895557404, + -0.012349560856819153, + 0.02132733352482319, + 0.07361829280853271, + -0.014178604818880558, + -0.05982768535614014, + -0.05756630375981331, + 0.011042208410799503, + 0.05689404904842377, + -0.030006863176822662, + 0.06261026859283447, + -0.043230801820755005, + -0.07815082371234894, + 0.02902420051395893, + 0.05436089262366295, + 0.04189478978514671, + -0.01531615387648344, + 0.024029025807976723, + 0.0038806425873190165, + -0.12879958748817444, + 0.041955288499593735, + 0.07042434811592102, + 0.047995541244745255, + 0.014398613013327122, + 0.06781528890132904, + 0.05608353018760681, + -0.05699487775564194, + -0.09876212477684021, + -0.09755614399909973, + -0.11271319538354874, + 0.023847589269280434, + 0.008288698270916939, + 0.10824856162071228, + 0.02337912656366825, + -0.021124791353940964, + -0.010120618157088757, + 0.033181264996528625, + -0.08590029925107956, + -0.00853447150439024, + -0.0023967542219907045, + -0.09013111889362335, + -0.05010722577571869, + -0.11032884567975998, + -0.05059055611491203, + 0.011867674998939037, + 0.02545728161931038, + 0.00947590358555317, + -0.007777413818985224, + 0.07165791094303131, + 0.05749693140387535, + 0.030840227380394936, + 0.022778404876589775, + -0.025657683610916138, + 0.03551753982901573, + -0.003686913987621665, + 0.00831590499728918, + 0.02873009815812111 + ], + "calendar-dots-bold||*new*,dates,times,events,schedule": [ + -0.030032461509108543, + 0.0036262834910303354, + 0.02939629554748535, + 0.11164072155952454, + 0.020259413868188858, + 0.004924065433442593, + 0.00517218466848135, + -0.07109265774488449, + 0.04014507681131363, + 0.007355835288763046, + -0.06782261282205582, + -0.023604169487953186, + -0.03736983984708786, + -0.03420085459947586, + 0.014668208546936512, + -0.004114126320928335, + -0.0455983504652977, + -0.014746984466910362, + 0.024130072444677353, + -0.04984017834067345, + 0.024572694674134254, + -0.06577377021312714, + -0.01330592855811119, + 0.062367286533117294, + 0.05965905636548996, + 0.08404635637998581, + 0.03313327208161354, + 0.007803285960108042, + 0.013897172175347805, + 0.012820526957511902, + -0.028723882511258125, + -0.0631009191274643, + 0.05000711604952812, + -0.031077872961759567, + 0.09192228317260742, + 0.04227539524435997, + 0.0106901153922081, + 0.04000697657465935, + 0.015802111476659775, + 0.018653124570846558, + 0.06683168560266495, + -0.09741903841495514, + 0.05192093178629875, + 0.01648140512406826, + -0.05455221235752106, + -0.029417304322123528, + -0.033310264348983765, + -0.021847371011972427, + -0.02818366512656212, + 0.11042848229408264, + 0.011194090358912945, + -0.09095370024442673, + -0.06302304565906525, + -0.049726638942956924, + 0.07671333104372025, + 0.08800139278173447, + -0.04640078917145729, + -0.0333193838596344, + 0.07373015582561493, + -0.040694709867239, + 0.029198743402957916, + 0.0587797649204731, + 0.006690447684377432, + 0.06010857969522476, + -0.02610497921705246, + -0.010901598259806633, + -0.05575960502028465, + 0.029866917058825493, + 0.022265519946813583, + 0.04324393346905708, + -0.013999637216329575, + 0.058848775923252106, + -0.00816204771399498, + 0.018595026805996895, + -0.018314260989427567, + 0.03583222255110741, + 0.00873753521591425, + 0.0185221116989851, + -0.027904119342565536, + -0.011783139780163765, + -0.07641632854938507, + -0.03861090913414955, + 0.0375966802239418, + 0.03713786229491234, + 0.11707146465778351, + 0.05008755251765251, + -0.09331998229026794, + -0.0348857156932354, + -0.05337714031338692, + -0.03268390893936157, + -0.019358215853571892, + 0.027676517143845558, + 0.02224087342619896, + 0.05660576373338699, + -0.10255839675664902, + 0.04961378499865532, + 0.06784670799970627, + 0.05837607383728027, + 0.013660332188010216, + 0.11631351709365845, + 0.003245192812755704, + 0.033026330173015594, + -0.06588215380907059, + 0.07313220202922821, + -0.001055027125403285, + 0.0008638560539111495, + -0.1074213758111, + -0.08935005962848663, + -0.12001746147871017, + 0.07507789134979248, + 0.0081042954698205, + -0.06974709779024124, + 0.012659382075071335, + -0.06693762540817261, + -0.030389366671442986, + 0.029351402074098587, + -0.06652985513210297, + -0.0030474024824798107, + 0.11398933082818985, + 0.05826487019658089, + 0.08016075193881989, + -0.022519772872328758, + -0.05932348594069481, + -0.020939569920301437, + -0.023402586579322815, + 0.02783394418656826, + 0.05761728063225746, + -2.2463994591221466e-33, + 0.03242968022823334, + 0.023188605904579163, + 0.022514302283525467, + 0.006153232418000698, + -0.00134034245274961, + 0.050994642078876495, + -0.08165168762207031, + -0.04961421713232994, + 0.021330466493964195, + -0.022058160975575447, + 0.09664832800626755, + 0.046081338077783585, + -0.016807135194540024, + -0.01882316544651985, + 0.0208585225045681, + -0.032552242279052734, + 0.09053965657949448, + 0.060031600296497345, + -0.024035505950450897, + -0.04353126510977745, + -0.1303400844335556, + -0.013117065653204918, + -0.04335683956742287, + 0.012367897666990757, + -0.003933931700885296, + 0.04929421842098236, + 0.06696107983589172, + -0.031168466433882713, + -0.06551265716552734, + 0.01442092377692461, + 0.052539948374032974, + -0.008550981990993023, + 0.05934854596853256, + 0.03517339006066322, + 0.025556746870279312, + 0.08821477741003036, + -0.03831900283694267, + -0.0030093106906861067, + -0.005077984184026718, + 0.05293295904994011, + -0.08219999074935913, + -0.06854843348264694, + -0.053835488855838776, + -0.0485525019466877, + 0.001197783974930644, + 0.10377208143472672, + -0.003017288399860263, + -0.0701611265540123, + 0.027946067973971367, + -0.02221035026013851, + -0.02956581301987171, + -0.025080716237425804, + 0.03640201687812805, + -0.06651527434587479, + 0.02815163880586624, + 0.0041046286933124065, + 0.015098384581506252, + 0.007008073385804892, + 0.05132807418704033, + -0.021935874596238136, + 0.06846785545349121, + 0.02880939468741417, + 0.03363052383065224, + -0.005424802657216787, + -0.1168094351887703, + 0.038744039833545685, + -0.0220186747610569, + 0.048003096133470535, + 0.07772018015384674, + 0.040076036006212234, + 0.029702603816986084, + 0.07926886528730392, + 0.06173604354262352, + -0.001811671070754528, + 0.015833532437682152, + 0.06524009257555008, + 0.10222575068473816, + -0.01248371135443449, + 0.006585111375898123, + -0.019541509449481964, + -0.023306528106331825, + -0.04214686155319214, + 0.032300952821969986, + 0.03296831622719765, + 0.054288629442453384, + -0.036784738302230835, + -0.035905271768569946, + 0.049519509077072144, + 0.005623214412480593, + -0.04794720560312271, + -0.020918330177664757, + -0.06853481382131577, + -0.029668498784303665, + -0.03090095892548561, + -0.1385541558265686, + -8.94651301666573e-34, + 0.0797240287065506, + 0.067414790391922, + -0.023780839517712593, + -0.019183628261089325, + -0.05052787438035011, + -0.013316984288394451, + -0.034973762929439545, + 0.018772346898913383, + 0.048665668815374374, + 0.0450022853910923, + 0.03445463627576828, + 0.030105073004961014, + -0.04321474954485893, + -0.08564677089452744, + 0.007890181615948677, + 0.014381792396306992, + 0.033920127898454666, + 0.03932219371199608, + -0.04201636463403702, + -0.036106910556554794, + -0.056846678256988525, + 0.03009740449488163, + -0.13376818597316742, + -0.011745274998247623, + 0.039613693952560425, + -0.05929338186979294, + 0.04654248058795929, + -0.035543736070394516, + -0.05989186093211174, + 0.004036167170852423, + -0.09644515812397003, + -0.11226604878902435, + 0.03786742314696312, + 0.028276627883315086, + -0.03180744871497154, + 0.053312938660383224, + 0.006182458717375994, + -0.0548657551407814, + 0.019732708111405373, + -0.01973448321223259, + -0.021121643483638763, + -0.04192018508911133, + 0.012758866883814335, + 0.022216251119971275, + -0.03278280794620514, + 0.04396549612283707, + -0.04077404737472534, + 0.06681904196739197, + 0.034299518913030624, + 0.06728154420852661, + -0.03006749413907528, + -0.06375467032194138, + -0.03629447892308235, + -0.02058550901710987, + -0.03069719299674034, + -0.002346084453165531, + -0.022620605304837227, + 0.01631079986691475, + -0.022313931956887245, + 0.011334197595715523, + -0.12090163677930832, + -0.013491377234458923, + -0.05019206926226616, + 0.0554550476372242, + 0.02109052613377571, + -0.07941104471683502, + -0.019889410585165024, + -0.04863857105374336, + 0.016294121742248535, + -0.06684515625238419, + 0.08420047163963318, + -0.009867153130471706, + -0.08479878306388855, + -0.0009061401360668242, + -0.022942034527659416, + -0.023958131670951843, + 0.06254585832357407, + 0.043055739253759384, + -0.08421127498149872, + 0.02373131923377514, + -0.059847693890333176, + 0.009345428086817265, + 0.02254752442240715, + 0.0414738766849041, + -0.08413267880678177, + 0.08619949966669083, + 0.02205858938395977, + -0.010024831630289555, + -0.03188483417034149, + 0.014564662240445614, + -0.08965255320072174, + 0.02067551203072071, + -0.006907235831022263, + 0.1057543009519577, + -0.02115478552877903, + -2.1465798027975325e-08, + 0.009811144322156906, + 0.005297750234603882, + -0.023986749351024628, + -0.03201061487197876, + 0.0567840151488781, + -0.10373754799365997, + -0.02989061363041401, + -0.04056576266884804, + -0.0033186175860464573, + 0.0140002416446805, + 0.06395851075649261, + -0.014278406277298927, + -0.035930316895246506, + -0.044618479907512665, + 0.0046431454829871655, + 0.05513255298137665, + -0.021983612328767776, + 0.06472420692443848, + -0.05791778117418289, + -0.08163502812385559, + -0.022548960521817207, + 0.05145638436079025, + 0.04317152500152588, + -0.007500460371375084, + -0.0019160023657605052, + -0.00969343725591898, + -0.11315136402845383, + 0.03807241842150688, + 0.05779234692454338, + 0.04988807067275047, + 0.001972526777535677, + 0.04350999370217323, + 0.06702189147472382, + -0.04668779298663139, + -0.12292487174272537, + -0.08868923783302307, + -0.11579005420207977, + 0.029269760474562645, + 0.021285569295287132, + 0.10364415496587753, + -0.00425456278026104, + -0.044338811188936234, + -0.004050658084452152, + 0.02020258456468582, + -0.08383453637361526, + -0.008194820955395699, + 0.009644025936722755, + -0.056875668466091156, + -0.07327006757259369, + -0.10814327001571655, + -0.06001827493309975, + -0.00034850151860155165, + 0.009527185000479221, + -0.010247240774333477, + 0.023344289511442184, + 0.04474299028515816, + 0.052496206015348434, + 0.059902917593717575, + 0.03692065551877022, + -0.011521510779857635, + 0.04494740813970566, + -0.007684461772441864, + 0.021072618663311005, + 0.019403675571084023 + ], + "calendar-heart-bold||*new*,dates,times,events,schedule,favorite,star": [ + -0.014604359865188599, + 0.007998039945960045, + 0.02404009737074375, + 0.09592719376087189, + -0.0017909661401063204, + 0.03659268096089363, + -0.02803735062479973, + -0.09070417284965515, + 0.035354357212781906, + -0.023591969162225723, + -0.08008923381567001, + -0.014863458462059498, + -0.04889528825879097, + -0.02765144407749176, + 0.016069401055574417, + -0.025100650265812874, + -0.03849785774946213, + -0.020749153569340706, + 0.018140051513910294, + 0.018188774585723877, + 0.0058715022169053555, + -0.026757195591926575, + -0.023626821115612984, + 0.0634225457906723, + 0.06588741391897202, + 0.05226270481944084, + 0.024731582030653954, + -0.017335742712020874, + -0.0008203927427530289, + -0.017317840829491615, + 0.013268016278743744, + -0.02496536634862423, + 0.1044749915599823, + 0.03605928272008896, + 0.02985341288149357, + 0.027296412736177444, + -0.030574947595596313, + -0.0004484530654735863, + -0.027098234742879868, + 0.04537107050418854, + 0.03352421522140503, + -0.09881314635276794, + 0.032849688082933426, + 0.03859603404998779, + -0.023218858987092972, + -0.021358633413910866, + -0.05431907996535301, + -0.03532618284225464, + -0.026119377464056015, + 0.13470163941383362, + -0.055707965046167374, + -0.09594966471195221, + -0.11824619024991989, + -0.0035309279337525368, + 0.08081625401973724, + 0.08012042194604874, + -0.07244234532117844, + -0.10463728755712509, + 0.026918193325400352, + -0.02036849781870842, + 0.031020600348711014, + 0.08528195321559906, + -0.001529875211417675, + 0.07290273159742355, + -0.060684021562337875, + -0.04038284718990326, + -0.04347003251314163, + 0.06614261865615845, + 0.03343963250517845, + -0.006058584898710251, + 0.0047103529796004295, + 0.012268595397472382, + 0.012918093241751194, + 0.01888166554272175, + -0.015427562408149242, + 0.014448210597038269, + 0.02119237184524536, + -0.0433293916285038, + -0.019387219101190567, + -0.027950365096330643, + -0.09272978454828262, + -0.053728047758340836, + -0.0322771780192852, + 0.02766115590929985, + 0.08516915142536163, + 0.020441770553588867, + -0.08402884006500244, + -0.04229060560464859, + -0.06807058304548264, + -0.027684427797794342, + -0.009027846157550812, + -0.009993140585720539, + 0.05296434834599495, + 0.026945685967803, + -0.1020560935139656, + 0.07242746651172638, + 0.03582901135087013, + -0.04096531122922897, + 0.018952764570713043, + 0.08974319696426392, + 0.007190667558461428, + 0.04217633232474327, + -0.041143998503685, + 0.09693706780672073, + 0.021576393395662308, + -0.059088461101055145, + -0.08153539896011353, + -0.07613694667816162, + -0.09627676010131836, + 0.030292730778455734, + -0.03116358444094658, + -0.04748796299099922, + 0.029664983972907066, + -0.1018766388297081, + -0.024475980550050735, + 0.06408973038196564, + -0.05944346636533737, + 0.00988641194999218, + 0.13040687143802643, + 0.1248563751578331, + 0.03841318562626839, + 0.019859835505485535, + -0.016535060480237007, + -0.02196461707353592, + -0.12820550799369812, + 0.02108781598508358, + 0.03921131417155266, + -1.6550965969707578e-33, + 0.050680939108133316, + 0.02542119100689888, + 0.022188039496541023, + 0.05202728509902954, + 0.009710419923067093, + 0.01553672831505537, + -0.08353906869888306, + -0.06373724341392517, + 0.0017751578707247972, + -0.012777866795659065, + 0.05675524100661278, + 0.07593552023172379, + -0.046193383634090424, + 0.038686759769916534, + -0.0048900507390499115, + -0.04845123365521431, + -0.014365815557539463, + 0.04141952469944954, + -0.025837311521172523, + -0.019578229635953903, + -0.12446422129869461, + 0.009388744831085205, + -0.018687253817915916, + -0.0046526179648935795, + -0.013993356376886368, + 0.021397512406110764, + 0.0907297134399414, + -0.012162246741354465, + -0.06429321318864822, + 0.005436559207737446, + 0.07308389991521835, + -0.050616905093193054, + 0.0753001794219017, + -0.0002512409701012075, + 0.025186046957969666, + 0.050176963210105896, + -0.05155255272984505, + 0.003469316754490137, + -0.008662811480462551, + 0.04702421650290489, + -0.0654020830988884, + -0.07340841740369797, + -0.08471821248531342, + -0.04957406967878342, + 0.01729431375861168, + 0.08533365279436111, + -0.019842110574245453, + -0.027666550129652023, + 0.07955434918403625, + 0.00023726277868263423, + 0.0041104150004684925, + -0.040726885199546814, + 0.0039808680303394794, + -0.03568275272846222, + -0.01733797788619995, + 0.026469089090824127, + 0.051330581307411194, + 0.004877584055066109, + 0.02723694033920765, + -0.03709682449698448, + 0.05095632001757622, + 0.009113392792642117, + 0.08829368650913239, + -0.06511323899030685, + -0.10129677504301071, + 0.062056634575128555, + 0.004743949510157108, + -0.018418267369270325, + 0.027522273361682892, + 0.06389196217060089, + 0.0012430406641215086, + 0.08154675364494324, + 0.036608174443244934, + -0.04113216698169708, + 0.031130937859416008, + 0.07851853966712952, + 0.0834728330373764, + 0.012969544157385826, + -0.03509633243083954, + -0.04504215344786644, + -0.07581200450658798, + 0.004547638352960348, + 0.06933941692113876, + 0.09872781485319138, + 0.032646309584379196, + -0.020164672285318375, + -0.008611051365733147, + -0.015108799561858177, + -0.00041507434798404574, + -0.022922875359654427, + -0.046525146812200546, + -0.0047954837791621685, + 0.014311989769339561, + -0.05194012075662613, + -0.10545627772808075, + -9.533206838935942e-34, + 0.04770616069436073, + -0.005187334958463907, + -0.013326589949429035, + -0.03589249029755592, + 0.019939715042710304, + -0.0344461128115654, + -0.05911451205611229, + 0.05955323949456215, + 0.11355322599411011, + 0.0714239627122879, + 0.03035072609782219, + -0.025915920734405518, + 0.006813541986048222, + -0.07494760304689407, + 0.032026611268520355, + 0.02256752736866474, + 0.034164343029260635, + 0.01278404239565134, + -0.06655541807413101, + 0.02345208451151848, + -0.07199247181415558, + 0.035978540778160095, + -0.16762708127498627, + -0.014183648861944675, + 0.025149082764983177, + -0.023250766098499298, + 0.05319000780582428, + -0.04217534139752388, + -0.032025691121816635, + -0.06654342263936996, + -0.03090568631887436, + -0.10881506651639938, + -0.01160423643887043, + 0.03425035998225212, + -0.047105539590120316, + 0.09015892446041107, + -0.000249439210165292, + -0.0025482322089374065, + -0.043930649757385254, + 0.004692093934863806, + -0.013001770712435246, + -0.006715379189699888, + 0.03562759980559349, + 0.05261923000216484, + -0.02247360162436962, + 0.03603239730000496, + -0.07304014265537262, + 0.022738011553883553, + 0.006161949597299099, + 0.09583470970392227, + -0.009028242900967598, + -0.05389535054564476, + -0.04574033245444298, + 0.008175852708518505, + -0.0002783006930258125, + 0.06778384745121002, + 0.01610739901661873, + 0.026016507297754288, + -0.0028289256151765585, + -0.013605655170977116, + -0.08328500390052795, + -0.015001545660197735, + -0.03907982259988785, + -0.013354375958442688, + -0.01564948633313179, + -0.07357975840568542, + 0.022912131622433662, + -0.0721435546875, + -0.03096507117152214, + -0.02408837527036667, + 0.019894812256097794, + 0.03485901653766632, + -0.12571068108081818, + -0.02004481479525566, + -0.004051173105835915, + 0.008190490305423737, + 0.05457665026187897, + 0.030850302428007126, + -0.04835531488060951, + -0.012894119136035442, + -0.03979272395372391, + 0.0422794483602047, + 0.002961055375635624, + 0.01611427590250969, + -0.039874158799648285, + 0.07636161893606186, + 0.028623424470424652, + -0.0084907915443182, + -0.02782353386282921, + -0.009129450656473637, + -0.06372275203466415, + 0.026126572862267494, + -0.048305027186870575, + 0.05591950565576553, + -0.006509413477033377, + -2.3000906068659788e-08, + 0.012214495800435543, + -0.010439926758408546, + -0.05871091037988663, + -0.014530577696859837, + 0.018556106835603714, + -0.06822450459003448, + 2.533562837925274e-05, + -0.06739374995231628, + -0.003705320181325078, + 0.015990927815437317, + 0.06543207168579102, + 0.023308880627155304, + -0.07705951482057571, + -0.07541999965906143, + 0.021165193989872932, + 0.0035129969473928213, + -0.02075762301683426, + 0.06406115740537643, + -0.024220334365963936, + -0.06968158483505249, + 0.038915589451789856, + 0.06291398406028748, + 0.0410148985683918, + -0.04008420556783676, + 0.04796899855136871, + -0.013567464426159859, + -0.0786629468202591, + 0.06616512686014175, + 0.030681075528264046, + 0.03372188284993172, + 0.05786005035042763, + 0.06071901321411133, + 0.048508163541555405, + -0.08311457186937332, + -0.06425221264362335, + -0.035258758813142776, + -0.057436875998973846, + -0.0064965165220201015, + 0.028944406658411026, + 0.11270510405302048, + 0.10914439707994461, + -0.018051275983452797, + -0.02258407324552536, + 0.019793568179011345, + -0.08458181470632553, + 0.010296016931533813, + 0.0447491891682148, + -0.08520577847957611, + 0.016432181000709534, + -0.06965865194797516, + -0.051308609545230865, + -0.013848084956407547, + 0.032108124345541, + -0.04474744573235512, + -0.025582510977983475, + 0.07739588618278503, + 0.03876214846968651, + 0.05673397704958916, + 0.052974194288253784, + -0.01031314767897129, + 0.10554695874452591, + 0.043283142149448395, + -0.014762251637876034, + 0.07333963364362717 + ], + "calendar-minus-bold||*new*,dates,times,events,schedule,remove,delete": [ + -0.003989912569522858, + 0.05103842169046402, + 0.00897385273128748, + 0.12021855264902115, + 0.017600854858756065, + -0.0024552883114665747, + 0.0028031973633915186, + -0.07979042828083038, + 0.045207470655441284, + 0.01314555760473013, + -0.05736888200044632, + -0.007752974517643452, + -0.009408919140696526, + -0.004927897825837135, + -0.023831259459257126, + -0.034958548843860626, + -0.04330534487962723, + 0.020720137283205986, + -0.026744602248072624, + -0.01262434758245945, + 0.009458961896598339, + -0.0418987013399601, + -0.0450175441801548, + 0.048975661396980286, + 0.11443493515253067, + 0.03066851571202278, + 0.039769694209098816, + -0.009097442030906677, + 0.025462239980697632, + 0.0029216199181973934, + -0.013938972726464272, + -0.07077271491289139, + 0.10642467439174652, + -0.02038300409913063, + 0.08167386800050735, + 0.03563734516501427, + -0.026314837858080864, + -0.01296299323439598, + 0.029887698590755463, + 0.003969775512814522, + 0.05259443446993828, + -0.05447332561016083, + 0.00316095189191401, + -0.0001378255692543462, + -0.07116003334522247, + -0.028141019865870476, + -0.08660339564085007, + -0.05734000727534294, + -0.004326306749135256, + 0.07866746187210083, + 0.048141829669475555, + -0.04494441673159599, + -0.11239571869373322, + -0.024387991055846214, + 0.07545343786478043, + 0.07868669182062149, + -0.05014660954475403, + -0.07272881269454956, + 0.0019294403027743101, + -0.059826865792274475, + 0.03107357583940029, + 0.06697947531938553, + -0.018158962950110435, + 0.02227785624563694, + -0.011231372132897377, + 0.02962598018348217, + -0.04576634243130684, + 0.03558678925037384, + 0.0657663345336914, + 0.04397111386060715, + -0.024677442386746407, + 0.0023795058950781822, + -0.00030291275470517576, + 0.006671644747257233, + -0.026356633752584457, + 0.025677664205431938, + 0.00530373677611351, + 0.047486644238233566, + -0.04647112637758255, + -0.013175029307603836, + -0.03214406594634056, + -0.04989876598119736, + 0.01670766994357109, + 0.028577281162142754, + 0.0982876792550087, + 0.024282334372401237, + -0.08199441432952881, + -0.038906268775463104, + -0.027011284604668617, + -0.03352040797472, + -0.027391741052269936, + 0.013986093923449516, + 0.0547308623790741, + 0.01744503155350685, + -0.11434555798768997, + 0.045718975365161896, + 0.01863153837621212, + 0.06601264327764511, + -0.010205108672380447, + 0.12693563103675842, + -0.010370159521698952, + 0.06277012825012207, + -0.05961737781763077, + 0.07562801986932755, + -0.03107471764087677, + -0.020145434886217117, + -0.1022079661488533, + -0.0907633975148201, + -0.13962280750274658, + 0.03316734358668327, + -0.01662861369550228, + -0.05788372457027435, + 0.02550526149570942, + -0.07579769939184189, + -0.008474240079522133, + 0.0676155760884285, + 0.008225210942327976, + 0.05306330323219299, + 0.08506736159324646, + 0.06886488199234009, + 0.05379454046487808, + -0.005964518990367651, + -0.043045349419116974, + 0.01784062571823597, + -0.01906983181834221, + 0.0275128111243248, + 0.09169352799654007, + -4.84040104664809e-34, + 0.053463809192180634, + 0.015654589980840683, + -0.01508078258484602, + 0.0240431260317564, + 0.06612909585237503, + 0.06606099754571915, + -0.1038949266076088, + -0.051523901522159576, + 0.010188435204327106, + 0.04583451896905899, + 0.12350806593894958, + 0.054548509418964386, + -0.02219427190721035, + -0.018081173300743103, + 0.032399777323007584, + 0.027309149503707886, + 0.0606660358607769, + 0.0010868982644751668, + -0.026333067566156387, + -0.01765386387705803, + -0.0891391783952713, + 0.004098627716302872, + -0.02995992638170719, + -0.004683002829551697, + 0.014972743578255177, + -0.002816179534420371, + 0.08751990646123886, + -0.020490244030952454, + -0.11280068010091782, + -0.008758014999330044, + 0.033462896943092346, + -0.035669129341840744, + 0.019552694633603096, + 0.04916975274682045, + 0.04647277295589447, + 0.07706298679113388, + -0.06065446138381958, + -0.0034838367719203234, + -0.003858520882204175, + 0.06927700340747833, + -0.124634750187397, + -0.043423812836408615, + -0.09533155709505081, + -0.0759398341178894, + 0.04056214913725853, + 0.09160369634628296, + 0.03150566294789314, + -0.08059506863355637, + 0.05785362794995308, + -0.017706265673041344, + 0.010007509030401707, + 0.00972108356654644, + 0.03705347701907158, + -0.061717309057712555, + -0.030717896297574043, + -0.025650179013609886, + 0.0553150400519371, + 0.04758896306157112, + 0.08124519884586334, + -0.03570767492055893, + 0.09298714250326157, + 0.0005008013686165214, + 0.016839176416397095, + -0.014533469453454018, + -0.09582875669002533, + 0.03959986940026283, + -0.04846286028623581, + 0.039069488644599915, + 0.059407927095890045, + -0.019637949764728546, + -0.0016380595043301582, + 0.04270486161112785, + 0.07385861873626709, + -0.011234646663069725, + 0.03196152672171593, + 0.0533912293612957, + 0.10116621851921082, + -0.01372486725449562, + 0.05555947124958038, + -0.033100441098213196, + -0.014507362619042397, + -0.009787456132471561, + 0.029652541503310204, + 0.055593036115169525, + 0.044281043112277985, + -0.03472244739532471, + -0.020476005971431732, + 0.01715882122516632, + 0.05511251837015152, + -0.028919590637087822, + -0.07312459498643875, + -0.01982847787439823, + -0.05384759232401848, + -0.042676862329244614, + -0.08417866379022598, + -2.2637811634799696e-33, + 0.06749545782804489, + 0.028626713901758194, + -0.06623142957687378, + -0.04957987740635872, + -0.05876089259982109, + 0.0010365850757807493, + -0.020392877981066704, + 0.04620322212576866, + 0.05782129615545273, + 0.035428594797849655, + 0.09386243671178818, + 0.016970602795481682, + -0.06530914455652237, + -0.07429860532283783, + 0.02313079684972763, + 0.021294180303812027, + -0.012820888310670853, + -0.0008740058401599526, + -0.08143681287765503, + -0.01895039901137352, + -0.06715893745422363, + 0.0751192644238472, + -0.12735949456691742, + 0.012531932443380356, + 0.022309664636850357, + -0.05607938393950462, + 0.03509543463587761, + 0.01735875755548477, + -0.029224028810858727, + -0.03405415266752243, + -0.062082309275865555, + -0.052091993391513824, + 0.044439058750867844, + 0.003059887560084462, + -0.04974870756268501, + 0.031979888677597046, + 0.00584007753059268, + 0.03055957704782486, + 0.006226775702089071, + -0.0036943156737834215, + -0.045087192207574844, + -0.02673528715968132, + 0.01665678434073925, + 0.05343048647046089, + -0.040729161351919174, + 0.06571627408266068, + -0.08414598554372787, + 0.006991726346313953, + 0.05430585891008377, + 0.06343816965818405, + -0.011912165209650993, + -0.07912696152925491, + -0.09081538021564484, + -0.014781869947910309, + 0.0022359516005963087, + -0.0033585645724087954, + 0.02874431572854519, + -0.033090412616729736, + -0.027823802083730698, + 0.03466448560357094, + -0.10802885890007019, + 0.015230388380587101, + -0.022877154871821404, + 0.016022469848394394, + -0.006772263906896114, + -0.06123039871454239, + -0.004704513121396303, + -0.028372304514050484, + 0.01348040346056223, + -0.0707433894276619, + 0.07498744130134583, + 0.013115134090185165, + -0.0865626111626625, + -0.011118649505078793, + -0.04652867466211319, + -0.017997335642576218, + 0.057690709829330444, + 0.05882338434457779, + -0.03817693889141083, + 0.0002672815171536058, + -0.051698941737413406, + -0.005879079457372427, + -0.032284028828144073, + -0.008952250704169273, + -0.11448011547327042, + 0.052775345742702484, + -0.040452226996421814, + -0.0010753085371106863, + -0.05999017879366875, + 0.0028543779626488686, + -0.06884828954935074, + -0.0006502053583972156, + 0.01880001276731491, + 0.05145268514752388, + -0.033864181488752365, + -2.5216637666858333e-08, + 0.014522861689329147, + -0.027760567143559456, + -0.02761080302298069, + -0.02858087420463562, + 0.032384537160396576, + -0.09716170281171799, + -0.010994188487529755, + -0.017253166064620018, + 0.023862788453698158, + -0.004945957101881504, + 0.06866021454334259, + 0.019395669922232628, + -0.0915117934346199, + -0.05856558308005333, + -0.023779790848493576, + 0.0581800639629364, + -0.0030413391068577766, + 0.0815848857164383, + -0.04221668094396591, + -0.07685606926679611, + 0.012896106578409672, + 0.04483320564031601, + 0.03456650301814079, + -0.03416699916124344, + 0.054609302431344986, + -0.035170212388038635, + -0.10452445596456528, + 0.0909959003329277, + 0.05292779207229614, + 0.05469953641295433, + 0.05277762934565544, + 0.0250898115336895, + 0.0812498927116394, + -0.028034286573529243, + -0.08545295894145966, + -0.09359041601419449, + -0.10838086158037186, + 0.030311867594718933, + -0.0020049226004630327, + 0.09392168372869492, + 0.010077406652271748, + -0.00858828704804182, + -0.018645789474248886, + 0.03713199123740196, + -0.07789492607116699, + -0.03215901181101799, + 0.02127222716808319, + -0.08159348368644714, + -0.027682382613420486, + -0.06600039452314377, + -0.021346652880311012, + 0.015057574957609177, + 0.022009065374732018, + 0.018426772207021713, + -0.04027196019887924, + 0.05720510333776474, + 0.07087993621826172, + 0.02729831077158451, + 0.03258785605430603, + -0.034442707896232605, + 0.08516357094049454, + -0.033173248171806335, + 0.013151711784303188, + 0.0026661809533834457 + ], + "calendar-plus-bold||dates,times,events,schedule,add": [ + -0.0014604865573346615, + -0.002399520017206669, + -0.004350629169493914, + 0.13168655335903168, + 0.01688896305859089, + 0.08385404944419861, + -0.028001513332128525, + -0.05895523726940155, + 0.03148866444826126, + 0.01983080431818962, + -0.07793840765953064, + -0.028979862108826637, + -0.0579809844493866, + -0.020739875733852386, + 0.01842212677001953, + -0.042093031108379364, + -0.058131370693445206, + 0.021434351801872253, + -0.014718618243932724, + -0.053732406347990036, + 0.041714783757925034, + -0.04878625273704529, + 0.020651433616876602, + 0.05334744602441788, + 0.06331133842468262, + 0.03446968272328377, + 0.010531128384172916, + 0.01204264722764492, + 0.04184665158390999, + 0.0272345133125782, + -0.00633190618827939, + -0.05982808768749237, + 0.06706029176712036, + -0.02316068857908249, + 0.06179247424006462, + 0.02184654027223587, + -0.01918378658592701, + 0.007487207185477018, + 0.008394801989197731, + 0.011219232343137264, + 0.053375232964754105, + -0.07061230391263962, + 0.06306354701519012, + -0.005878973286598921, + -0.08952794224023819, + -0.07764578610658646, + -0.04807471111416817, + -0.0844145268201828, + 0.024653052911162376, + 0.10356912761926651, + 0.04913196712732315, + -0.06650400906801224, + -0.06750933825969696, + -0.02963980846107006, + 0.0845428854227066, + 0.10105010867118835, + -0.094377800822258, + -0.03271077573299408, + 0.03477504476904869, + -0.0682167261838913, + 0.029709897935390472, + 0.06569232791662216, + 0.008858422748744488, + 0.06041819974780083, + -0.03159178048372269, + 0.027530428022146225, + -0.0644707977771759, + 0.09026189893484116, + 0.028385978192090988, + 0.01565881446003914, + 0.015328572131693363, + 0.013109513558447361, + 0.004154464695602655, + -0.006713138427585363, + 0.0005645949859172106, + 0.021894004195928574, + 0.004432533867657185, + 0.018953794613480568, + -0.0359552726149559, + -0.034009046852588654, + -0.09112955629825592, + -0.06790249049663544, + 0.011673392727971077, + 0.03864429146051407, + 0.13150668144226074, + 0.026442410424351692, + -0.07067187875509262, + -0.03874025121331215, + -0.04507007449865341, + -0.042268019169569016, + 0.003906598314642906, + 0.010705491527915001, + 0.017700403928756714, + 0.025915242731571198, + -0.09780355542898178, + 0.036186084151268005, + 0.0209305789321661, + 0.04729429632425308, + -0.03532106801867485, + 0.0661560446023941, + -0.004223920404911041, + 0.0552176758646965, + -0.07523298263549805, + 0.09227094799280167, + 0.027515310794115067, + -0.033094488084316254, + -0.07352909445762634, + -0.08024168759584427, + -0.15162540972232819, + 0.03100929968059063, + 0.027621790766716003, + -0.03068053536117077, + 0.03653779998421669, + -0.09443206340074539, + -0.007014638744294643, + 0.04002686217427254, + -0.012043352238833904, + -0.0048368945717811584, + 0.10516329109668732, + 0.017460301518440247, + 0.061272114515304565, + 0.0192116629332304, + -0.04927731677889824, + -0.012384849600493908, + -0.010286972858011723, + -0.008497136645019054, + 0.08822432905435562, + -2.0032025349064775e-33, + 0.04248981922864914, + 0.018050232902169228, + -0.013356762006878853, + 0.03925478085875511, + 0.054300520569086075, + 0.06634870916604996, + -0.10623562335968018, + -0.05431192368268967, + -0.01302621141076088, + 0.026367027312517166, + 0.09705366939306259, + 0.05431162938475609, + -0.041755929589271545, + -0.009422491304576397, + 0.011637727729976177, + -0.003667555283755064, + 0.0457441583275795, + 0.04799360781908035, + 0.011511579155921936, + 0.01897868886590004, + -0.11165311187505722, + -0.02577785588800907, + -0.030962849035859108, + 0.021036624908447266, + 0.02836981602013111, + 0.054174307733774185, + 0.09105789661407471, + -0.0036955433897674084, + -0.08780118077993393, + -0.0031912585254758596, + 0.05942000448703766, + -0.03332328423857689, + -0.004146229941397905, + 0.04507894068956375, + 0.05122426897287369, + 0.06517902761697769, + -0.036135148257017136, + 0.021277179941534996, + 0.016905097290873528, + 0.09317838400602341, + -0.10244446247816086, + -0.0629839152097702, + -0.08532709628343582, + -0.10753785818815231, + 0.025235839188098907, + 0.10271181911230087, + -0.010596824809908867, + -0.1119784489274025, + 0.07215704023838043, + -0.020325753837823868, + -0.034432750195264816, + -0.011689530685544014, + 0.03363483026623726, + -0.033940639346838, + -0.02043038047850132, + 0.024142442271113396, + 0.02590619958937168, + 0.039502017199993134, + 0.060820676386356354, + 0.009271993301808834, + 0.05921855568885803, + 0.004733785055577755, + 0.03241845965385437, + -0.03093692474067211, + -0.0916653722524643, + 0.057609789073467255, + -0.022780900821089745, + 0.04361407831311226, + 0.1074984222650528, + 0.0033317054621875286, + 0.012785195372998714, + 0.050811998546123505, + 0.0695992261171341, + 0.02688843011856079, + 0.05052405968308449, + 0.06496118009090424, + 0.07606136053800583, + -0.0401252843439579, + 0.010123413987457752, + -0.002019732492044568, + -0.03386075049638748, + -0.030774034559726715, + 0.059327639639377594, + 0.08159366250038147, + 0.04252033308148384, + 0.008857518434524536, + -0.05876710265874863, + 0.044921550899744034, + 0.062007736414670944, + -0.023048676550388336, + -0.058777034282684326, + -0.04894134774804115, + -0.015557762235403061, + -0.04174460098147392, + -0.11662138253450394, + -4.18603089219417e-34, + 0.06401342153549194, + 0.009974047541618347, + -0.0574941486120224, + -0.03901483118534088, + -0.01639876328408718, + 0.003446807386353612, + -0.03178279101848602, + 0.022129235789179802, + 0.04983953759074211, + 0.02593371830880642, + 0.06962477415800095, + 0.01155244093388319, + -0.0703875720500946, + -0.07637091726064682, + -0.017150677740573883, + 0.013230018317699432, + -0.0045898063108325005, + 0.041054293513298035, + -0.020453644916415215, + -0.06186918169260025, + -0.07161621004343033, + 0.038563624024391174, + -0.10523226857185364, + -0.010831998661160469, + 0.03675919398665428, + -0.001096666674129665, + 0.00278382352553308, + -0.0015600413316860795, + -0.024450192227959633, + -0.03452311083674431, + -0.03408396989107132, + -0.06325895339250565, + 0.007351682987064123, + 0.015559063293039799, + -0.04239688441157341, + 0.07086502760648727, + 0.026000723242759705, + 0.00967432837933302, + 0.011878050863742828, + -0.01030409149825573, + -0.013924862258136272, + -0.04119414463639259, + -0.002020432846620679, + 0.033522553741931915, + -0.03956173360347748, + 0.061715807765722275, + -0.018351644277572632, + -0.0034319269470870495, + 0.018629908561706543, + 0.06256552040576935, + -0.0021832447964698076, + -0.07187394797801971, + -0.07377400994300842, + 0.016796350479125977, + 0.013627361506223679, + -0.051350925117731094, + 0.036567188799381256, + -0.04755239933729172, + -0.0009178701438941061, + 0.017478132620453835, + -0.10666198283433914, + 0.023611407727003098, + -0.02292807772755623, + -0.012503677979111671, + 0.00542816799134016, + -0.05979239568114281, + 0.008986474946141243, + -0.08384700864553452, + 0.019059184938669205, + -0.07816500216722488, + 0.07283981889486313, + -0.04258745536208153, + -0.05838443711400032, + 0.0192791186273098, + -0.04029814153909683, + 0.028271345421671867, + 0.06956227868795395, + 0.08569179475307465, + -0.026460792869329453, + -0.012391338124871254, + -0.06719030439853668, + -0.03752739727497101, + -0.0013420190662145615, + 0.013669264502823353, + -0.0887942835688591, + 0.06700479984283447, + -0.00236930581741035, + 0.022698471322655678, + -0.03134966269135475, + -0.016345972195267677, + -0.09772840142250061, + 0.031554728746414185, + -0.019834410399198532, + 0.05518469214439392, + -0.04124096781015396, + -2.0466510264327553e-08, + 0.036077260971069336, + -0.04616834223270416, + -0.05090880021452904, + -0.07503827661275864, + 0.030825680121779442, + -0.11129899322986603, + -0.025298330932855606, + -0.05529879033565521, + -0.022742172703146935, + -0.0045693013817071915, + 0.04201934486627579, + 0.0020241739694029093, + -0.03987761586904526, + -0.05145195126533508, + -0.026733435690402985, + 0.06514877825975418, + -0.025549139827489853, + 0.07325524836778641, + -0.05086105316877365, + -0.055243879556655884, + 0.01941332221031189, + 0.05822193995118141, + 0.007984359748661518, + -0.03841689974069595, + 0.03529055789113045, + 0.0154414689168334, + -0.1424179971218109, + 0.06394515186548233, + 0.05926783010363579, + 0.06861259788274765, + 0.05557616427540779, + 0.02597551792860031, + 0.040069010108709335, + 0.005671283230185509, + -0.07140190154314041, + -0.09865351021289825, + -0.08624859154224396, + 0.0025546327233314514, + 0.005564276594668627, + 0.0824890062212944, + 0.01311175525188446, + -0.04814639687538147, + 0.004408084787428379, + 0.044487256556749344, + -0.007856848649680614, + 0.004412387497723103, + 0.008911557495594025, + -0.06403465569019318, + -0.05254005640745163, + -0.07219064235687256, + -0.05643266439437866, + -0.01018669456243515, + 0.07184372842311859, + -0.007318084128201008, + -0.05544176325201988, + 0.047795556485652924, + 0.08191263675689697, + 0.039349816739559174, + 0.04750984534621239, + -0.00597580848261714, + 0.043224308639764786, + -0.06730710715055466, + -0.0017603392479941249, + -0.0026774811558425426 + ], + "calendar-slash-bold||*new*,dates,times,events,schedule,remove,delete,cancel. unavailable": [ + -0.022243602201342583, + 0.009450782090425491, + 0.0052370731718838215, + 0.12675930559635162, + 0.00975795742124319, + 0.0024367892183363438, + -0.02814272791147232, + -0.08975781500339508, + 0.0767107903957367, + 0.019343124702572823, + -0.04913612827658653, + 0.005204295739531517, + -0.04879727214574814, + 0.013433149084448814, + -0.027870306745171547, + -0.023777306079864502, + -0.04462042078375816, + 0.029403362423181534, + 0.00812898576259613, + 0.010762924328446388, + 0.03272474929690361, + 0.047379571944475174, + -0.027572767809033394, + 0.06573460251092911, + 0.09490155428647995, + -0.010861611925065517, + 0.011860900558531284, + -0.011349058710038662, + -0.005250829271972179, + 0.006642530206590891, + 0.018063729628920555, + -0.0631030946969986, + 0.08253633230924606, + -0.039866261184215546, + 0.14702826738357544, + 0.04927520826458931, + -0.005802556872367859, + -0.026101239025592804, + 0.04281528294086456, + -0.024838507175445557, + 0.040344879031181335, + -0.05155281722545624, + -0.0018307339632883668, + -0.028386825695633888, + -0.08456870913505554, + -0.05560155585408211, + -0.05657460540533066, + -0.08975186944007874, + -0.02905104123055935, + 0.10076908767223358, + 0.013218545354902744, + -0.08185335248708725, + -0.10959852486848831, + -0.03576839342713356, + 0.10547367483377457, + 0.06959954649209976, + -0.049008797854185104, + -0.03376352787017822, + 0.023500781506299973, + -0.013155566528439522, + 0.032156579196453094, + 0.05294148623943329, + -0.02459951676428318, + 0.04434153437614441, + -0.05525146797299385, + 0.025195706635713577, + -0.0608157254755497, + 0.022618243470788002, + 0.018544699996709824, + -0.0006389659247361124, + -0.021693607792258263, + 0.02466721087694168, + -0.04695539548993111, + 0.026346178725361824, + -0.0009691871237009764, + 0.0003662574745249003, + 0.0282367542386055, + 0.036835893988609314, + -0.01767880469560623, + -0.034557584673166275, + -0.04207692667841911, + -0.0773526206612587, + 0.01573980040848255, + 0.030264103785157204, + 0.11481736600399017, + 0.0360596664249897, + -0.08483342826366425, + -0.035649556666612625, + 0.004234167281538248, + -0.04905850067734718, + -0.010874937288463116, + -0.014873916283249855, + 0.0692649632692337, + 0.026891522109508514, + -0.11724281311035156, + 0.021048201248049736, + 0.002411558525636792, + 0.04711364209651947, + -0.03286373242735863, + 0.09348404407501221, + 0.005334256682544947, + 0.067153200507164, + -0.08550795167684555, + 0.09298892319202423, + 0.013963954523205757, + 0.011715974658727646, + -0.057262204587459564, + -0.07282382249832153, + -0.12134072184562683, + 0.02595539018511772, + -0.0243133045732975, + -0.06615438312292099, + 0.0241558738052845, + -0.09937376528978348, + -0.03802921622991562, + 0.05307963490486145, + -0.026876701042056084, + -0.0008620582520961761, + 0.11524903029203415, + 0.1244133710861206, + 0.05581436678767204, + -0.014580407179892063, + -0.041029345244169235, + -0.01091079693287611, + -0.005927264224737883, + -0.012599043548107147, + 0.13192686438560486, + -2.251492839410061e-33, + 0.05007139965891838, + 0.030245499685406685, + -0.02125328592956066, + -0.0006254612235352397, + 0.09789509326219559, + 0.04939483851194382, + -0.09008421003818512, + -0.04356836527585983, + 0.010900210589170456, + -0.0028341819997876883, + 0.10543454438447952, + 0.018536631017923355, + -0.005502685904502869, + -0.03769703954458237, + 0.014003290794789791, + 0.004018712323158979, + 0.09026062488555908, + 0.04533444344997406, + -0.0032498305663466454, + -0.017576171085238457, + -0.08611517399549484, + 0.03914892300963402, + -0.03664242476224899, + 0.012722212821245193, + -0.020431451499462128, + 0.027720067650079727, + 0.10115031898021698, + -0.011041059158742428, + -0.03066365420818329, + 0.016898782923817635, + 0.026211120188236237, + -0.02712678536772728, + 0.03016497753560543, + 0.06807512044906616, + 0.004783338401466608, + 0.11084039509296417, + -0.05690394714474678, + -0.014057774096727371, + -0.03683311492204666, + 0.07432987540960312, + -0.11811444908380508, + -0.07034369558095932, + -0.1219492107629776, + -0.05410065874457359, + 0.02817821130156517, + 0.05535171180963516, + 0.026621384546160698, + -0.08684568852186203, + 0.05902707576751709, + -0.007970459759235382, + -0.011867203749716282, + 0.03806937485933304, + 0.06392963230609894, + -0.05089448392391205, + -0.0024119229055941105, + -0.03620333597064018, + 0.0035333153791725636, + 0.013597398065030575, + 0.06251867115497589, + -0.043510694056749344, + 0.06923799961805344, + 0.021766936406493187, + 0.036915771663188934, + -0.02049843780696392, + -0.14168119430541992, + 0.03282180801033974, + -0.029187286272644997, + 0.02439926564693451, + 0.057106517255306244, + -0.0033742107916623354, + -0.015125889331102371, + 0.024668924510478973, + 0.06823673844337463, + 0.004490814637392759, + -0.000839316111523658, + 0.019975533708930016, + 0.04332505911588669, + -0.013349763117730618, + 0.058309853076934814, + -0.035346247255802155, + -0.05268251895904541, + -0.06715220957994461, + 0.026424696668982506, + 0.08516323566436768, + 0.07323886454105377, + -0.04553205519914627, + -0.039007991552352905, + 0.055335067212581635, + 0.04235144704580307, + -0.00803802628070116, + -0.03775623068213463, + -0.035407502204179764, + -0.05579587444663048, + -0.022624855861067772, + -0.06110117956995964, + -8.750633413490504e-34, + 0.1013229489326477, + 0.03359674662351608, + -0.07547195255756378, + -0.039513006806373596, + -0.06249029189348221, + -0.02830422669649124, + -0.03723600506782532, + 0.05187951400876045, + 0.05332712084054947, + 0.004905405454337597, + 0.060330215841531754, + 0.05668273940682411, + -0.012110169045627117, + -0.08518696576356888, + 0.022661417722702026, + 0.023943787440657616, + -0.008727287873625755, + 0.01155044324696064, + -0.07293758541345596, + 0.0007005807128734887, + -0.07131008803844452, + 0.04396273195743561, + -0.10695596039295197, + 0.020092401653528214, + -0.002650953596457839, + -0.01956937275826931, + 0.037129420787096024, + -0.002183610573410988, + -0.002211621031165123, + -0.016554541885852814, + -0.04109081253409386, + -0.04902815446257591, + -0.0176327396184206, + -0.0008422905229963362, + 0.022166172042489052, + 0.08192352950572968, + -0.03361160680651665, + 0.03384951874613762, + -0.009639831259846687, + -0.04500347003340721, + 0.0067325676791369915, + -0.025584110990166664, + 0.018797799944877625, + 0.06348257511854172, + -0.016922976821660995, + 0.07935788482427597, + -0.04438339173793793, + -0.008409062400460243, + 0.044626474380493164, + 0.09260345995426178, + 0.014415208250284195, + -0.08699747920036316, + -0.04503665119409561, + -0.01652478240430355, + -0.0012547734659165144, + 0.031552210450172424, + -0.004858250729739666, + -0.016945935785770416, + -0.05087939277291298, + 0.043310608714818954, + -0.07273997366428375, + 0.003372743958607316, + -0.041644178330898285, + 0.019181832671165466, + 0.018692336976528168, + -0.08980019390583038, + -0.022119585424661636, + 0.02577611431479454, + 0.03480915725231171, + -0.06654918193817139, + 0.05895711109042168, + 0.010790465399622917, + -0.07968544214963913, + -0.019461048766970634, + 0.0011748377000913024, + 0.018187498673796654, + 0.04198256507515907, + 0.03503232076764107, + -0.04914848506450653, + 0.03037203475832939, + -0.033979352563619614, + 0.02103090099990368, + -0.01706896722316742, + -0.021061310544610023, + -0.09360060840845108, + 0.010172128677368164, + -0.04312257841229439, + 0.033119987696409225, + -0.0722917690873146, + -0.04559660330414772, + -0.07105134427547455, + -0.008571063168346882, + -0.010796456597745419, + 0.04988556727766991, + -0.042567651718854904, + -2.743769655921824e-08, + 0.005475551355630159, + -0.01588689349591732, + -0.0020800838246941566, + -0.05921028181910515, + 0.053946252912282944, + -0.09480186551809311, + -0.024087926372885704, + -0.04580576717853546, + 0.016280878335237503, + 0.023573072627186775, + 0.053299680352211, + 0.0016572142485529184, + -0.04868229478597641, + -0.03397083654999733, + -0.05054222792387009, + 0.025247447192668915, + -0.020291768014431, + 0.08697079122066498, + -0.043148480355739594, + -0.04483574628829956, + -0.011455236934125423, + 0.026614470407366753, + 0.056427594274282455, + -0.06646132469177246, + 0.021714212372899055, + -0.044394731521606445, + -0.12647713720798492, + 0.05514839291572571, + 0.04571768641471863, + 0.03482802212238312, + 0.030163433402776718, + 0.03484296798706055, + 0.050540562719106674, + -0.02225291170179844, + -0.09721560031175613, + -0.05612080171704292, + -0.08496076613664627, + 0.034547481685876846, + 0.017701517790555954, + 0.07946167141199112, + 0.05997045338153839, + -0.04963303729891777, + 0.002060124184936285, + 0.030067069455981255, + -0.08296792954206467, + -0.018813876435160637, + 0.014565940946340561, + -0.04961457476019859, + -0.039919883012771606, + -0.07136932760477066, + -0.06714286655187607, + 0.02195296809077263, + 0.019603893160820007, + 0.007365844678133726, + -0.01135034766048193, + 0.07192362844944, + 0.07521878927946091, + 0.02480335533618927, + 0.013440009206533432, + -0.032875627279281616, + 0.12011122703552246, + -0.018423404544591904, + -0.010091278702020645, + 0.01736557111144066 + ], + "calendar-star-bold||*new*,dates,times,events,schedule,favorite,star": [ + -0.016634969040751457, + -0.013808859512209892, + 0.004578029736876488, + 0.10870048403739929, + -0.013256536796689034, + 0.03037148155272007, + -0.007355441804975271, + -0.06755384057760239, + 0.015002625063061714, + 0.0045278421603143215, + -0.1012999415397644, + 0.001918572699651122, + -0.024380359798669815, + -0.04054782912135124, + -0.018567277118563652, + -0.01898392103612423, + -0.04092434421181679, + -0.010404231958091259, + 0.03691697120666504, + -0.0166179109364748, + 0.028659366071224213, + -0.027566511183977127, + -0.026142193004488945, + 0.053992368280887604, + 0.09291363507509232, + 0.056282006204128265, + 0.018234586343169212, + 0.006657726131379604, + 0.012449853122234344, + -0.03208017349243164, + -0.022762296721339226, + -0.00938525702804327, + 0.06979423016309738, + 0.0522296167910099, + 0.041765715926885605, + 0.0020519704557955265, + -0.03515975549817085, + -0.016279451549053192, + 0.0003481877502053976, + 0.028178829699754715, + 0.05086643248796463, + -0.0955832451581955, + 0.029217887669801712, + 0.01869153045117855, + -0.0428008958697319, + -0.022337934002280235, + -0.06355461478233337, + -0.05073278397321701, + -0.018375704064965248, + 0.14104269444942474, + -0.026281386613845825, + -0.09075412154197693, + -0.08633094280958176, + -0.018324250355362892, + 0.10570114105939865, + 0.09594011306762695, + -0.04898707941174507, + -0.10236184298992157, + 0.01625993102788925, + -0.016352541744709015, + 0.028585219755768776, + 0.0766628161072731, + -0.007660801522433758, + 0.06471005082130432, + -0.015530026517808437, + -0.03760962933301926, + -0.07369035482406616, + 0.04830874130129814, + 0.026807093992829323, + -0.007116740103811026, + -0.0388142466545105, + 0.04760301485657692, + -0.011642045341432095, + 0.027392089366912842, + -0.0049730027094483376, + -0.009403089992702007, + 0.039831023663282394, + -0.025013307109475136, + -0.0007005392108112574, + -0.023938221856951714, + -0.07887391000986099, + -0.047890063375234604, + -0.006368790753185749, + 0.038946039974689484, + 0.10169892758131027, + 0.0010722290026023984, + -0.06459527462720871, + -0.029101211577653885, + -0.05246526002883911, + -0.01511429063975811, + -0.02890235371887684, + -7.370173989329487e-05, + 0.027644053101539612, + 0.0006257191998884082, + -0.12746520340442657, + 0.06539978832006454, + 0.04420772194862366, + -0.06326336413621902, + 0.06130986660718918, + 0.10729841142892838, + -0.005390929989516735, + 0.04103512689471245, + -0.025433095172047615, + 0.08969100564718246, + 0.004488598555326462, + -0.03615449741482735, + -0.07317611575126648, + -0.1067158654332161, + -0.11792393028736115, + 0.040143758058547974, + -0.015485810115933418, + -0.04225876182317734, + 0.009622592478990555, + -0.1115906685590744, + -0.05392158776521683, + 0.04465065523982048, + -0.06283089518547058, + -0.000417583913076669, + 0.13804808259010315, + 0.056837789714336395, + 0.03489924222230911, + 0.007542543113231659, + -0.01316419243812561, + 0.002757817506790161, + -0.11195213347673416, + 0.026232054457068443, + 0.04884066432714462, + -1.512246850038987e-33, + 0.043850127607584, + 0.012342103756964207, + 0.013405680656433105, + 0.0338110588490963, + -0.0053142462857067585, + 0.03617021441459656, + -0.0864928737282753, + -0.05515841767191887, + 0.013023626059293747, + -0.03570737689733505, + 0.07789766788482666, + 0.055176589637994766, + -0.02085958980023861, + 0.036035191267728806, + 0.03971259295940399, + -0.02388721890747547, + 0.0461290068924427, + 0.027143947780132294, + -0.06956572830677032, + -0.025457561016082764, + -0.10834157466888428, + 0.032278142869472504, + -0.020605487748980522, + -0.019744958728551865, + 0.010192801244556904, + 0.001212384202517569, + 0.10271698981523514, + -0.01320180669426918, + -0.07463957369327545, + 0.00764439208433032, + 0.08403805643320084, + -0.05518109351396561, + 0.07309239357709885, + 0.04530457779765129, + 0.02807389199733734, + 0.05646107345819473, + -0.04143551364541054, + -0.004356067627668381, + 0.005907944869250059, + 0.019987182691693306, + -0.06977934390306473, + -0.08081626892089844, + -0.08176526427268982, + -0.040214888751506805, + 0.00037387333577498794, + 0.105690598487854, + -0.04282447323203087, + -0.04889291152358055, + 0.08086283504962921, + 0.008059769868850708, + 0.0003680213703773916, + -0.023922665044665337, + -0.008256223984062672, + -0.039798151701688766, + -0.0036079920828342438, + 0.03554990515112877, + 0.041588377207517624, + -0.001602747361175716, + 0.055248524993658066, + -0.024812722578644753, + 0.04330216720700264, + 0.03084670938551426, + 0.07469874620437622, + -0.03498700633645058, + -0.08906316012144089, + 0.09935691952705383, + 0.03243471309542656, + 0.034502629190683365, + 0.04859142750501633, + 0.06043302267789841, + -0.03596675395965576, + 0.07129190117120743, + 0.04731190949678421, + -0.036220088601112366, + 0.0072738854214549065, + 0.0724952295422554, + 0.0982687771320343, + 0.0005749071133323014, + -0.012745728716254234, + -0.02995852194726467, + -0.05204806104302406, + -0.025816649198532104, + 0.07685144245624542, + 0.0708341896533966, + 0.007587762549519539, + -0.04890797287225723, + -0.006505243014544249, + 0.009256762452423573, + 0.032707925885915756, + -0.048893798142671585, + -0.03264879435300827, + -0.027111753821372986, + 0.00685715489089489, + -0.04548589885234833, + -0.12313063442707062, + -1.5590138927864518e-33, + 0.06689678132534027, + 0.009373772889375687, + -0.0029362819623202085, + -0.02313781902194023, + 0.01586826518177986, + -0.044366300106048584, + -0.06739597022533417, + 0.0349954329431057, + 0.06729629635810852, + 0.060086123645305634, + 0.015213299542665482, + -0.016591917723417282, + -0.02206716686487198, + -0.11112149804830551, + 0.055555570870637894, + 0.022064153105020523, + -0.005512693431228399, + 0.028026456013321877, + -0.09288818389177322, + 0.03298557177186012, + -0.05817382037639618, + 0.04909509792923927, + -0.14822834730148315, + -0.0180745217949152, + 0.015665192157030106, + -0.05853090062737465, + 0.03585298731923103, + -0.03359745815396309, + -0.05977708101272583, + -0.041228655725717545, + -0.04587284475564957, + -0.10865800082683563, + 0.011807288974523544, + 0.03982602432370186, + -0.03622781112790108, + 0.0774482861161232, + 0.02159961313009262, + -0.03187697008252144, + -0.01620280183851719, + 0.020646819844841957, + -0.009089008904993534, + -0.009671684354543686, + 0.018169008195400238, + 0.04782753810286522, + -0.007827337831258774, + 0.05164506658911705, + -0.07830344885587692, + 0.02589094638824463, + 0.002918110927566886, + 0.08136621117591858, + -0.0076223099604249, + -0.04277962073683739, + -0.03244582563638687, + 0.006973404437303543, + 0.010920364409685135, + 0.04226946830749512, + 0.027578597888350487, + 0.002706448081880808, + 0.007426765747368336, + 0.005136825144290924, + -0.08434785902500153, + -0.013925250619649887, + -0.03859871253371239, + 0.012736701406538486, + -0.0034376138355582952, + -0.10839461535215378, + 0.015022232197225094, + -0.06671149283647537, + -0.013608566485345364, + -0.034024160355329514, + 0.03139331191778183, + 0.025122791528701782, + -0.10494597256183624, + -0.010348445735871792, + 0.015641896054148674, + 0.031138677150011063, + 0.04636654257774353, + 0.057522136718034744, + -0.05099278315901756, + -0.014180698432028294, + -0.0442165732383728, + 0.0512026883661747, + 0.009597077034413815, + 0.03578793257474899, + -0.017431683838367462, + 0.0789036676287651, + 0.02008228562772274, + -0.014652838930487633, + -0.012558271177113056, + -0.017886685207486153, + -0.06503091007471085, + 0.015350356698036194, + -0.02221638895571232, + 0.0411088652908802, + -0.004846785217523575, + -2.2307956371037108e-08, + -0.013722313567996025, + -0.0023585562594234943, + -0.05715768039226532, + 0.01821804977953434, + 0.04981842264533043, + -0.06721199303865433, + -0.019809985533356667, + -0.05447413772344589, + -0.005006446968764067, + 0.00018254239694215357, + 0.06107844412326813, + 0.007213524077087641, + -0.0850997120141983, + -0.0812409520149231, + 0.01697169430553913, + -2.462986776663456e-05, + -0.025373974815011024, + 0.05297166481614113, + -0.039664022624492645, + -0.012823167257010937, + -0.0016410844400525093, + 0.07429566234350204, + 0.04177074879407883, + -0.04531736299395561, + 0.0286712646484375, + -0.011453492566943169, + -0.10629403591156006, + 0.07608926296234131, + 0.030678557232022285, + 0.010240077041089535, + 0.04541877657175064, + 0.07295958697795868, + 0.005315674468874931, + -0.06510831415653229, + -0.07291273027658463, + -0.012255093082785606, + -0.05577477067708969, + 0.021588604897260666, + 0.03171790763735771, + 0.11885671317577362, + 0.08764000236988068, + -0.017656464129686356, + -0.010328320786356926, + 0.02619379200041294, + -0.08751587569713593, + 0.04458828642964363, + 0.014648133888840675, + -0.11748191714286804, + 0.004802001640200615, + -0.10277018696069717, + -0.08288730680942535, + -0.016444286331534386, + 0.008844352327287197, + -0.04100149869918823, + -0.04669387638568878, + 0.08212334662675858, + 0.018317485228180885, + 0.048584554344415665, + 0.061355214565992355, + -0.026986684650182724, + 0.09243682026863098, + 0.007671785075217485, + -0.004813173320144415, + 0.07577568292617798 + ], + "calendar-x-bold||dates,times,events,schedule,closed,cancelled": [ + 0.031181449070572853, + 0.006430677603930235, + 0.027164587751030922, + 0.12259525060653687, + 0.02162749506533146, + 0.038711562752723694, + -0.005197783000767231, + -0.07274443656206131, + 0.034027520567178726, + -0.005417871288955212, + -0.07376959174871445, + 0.006725195795297623, + -0.03147595748305321, + -0.013712279498577118, + -0.02745295688509941, + -0.01578805036842823, + -0.06016930192708969, + -0.01615450158715248, + -0.018258074298501015, + 0.001847561914473772, + 0.06202210485935211, + 0.01937173120677471, + -0.012544074095785618, + 0.06652861833572388, + 0.05538904666900635, + 0.04590464010834694, + 0.02574973925948143, + -0.011019369587302208, + 0.009479252621531487, + 0.01563984714448452, + -0.04516980051994324, + -0.03401463106274605, + 0.052966732531785965, + -0.05629987642168999, + 0.1134895607829094, + 0.03933047503232956, + -0.03118162415921688, + -0.027898672968149185, + 0.027581995353102684, + 0.0005902397679165006, + 0.045906711369752884, + -0.07335556298494339, + 0.03679336607456207, + 0.009118263609707355, + -0.07784105837345123, + -0.05355510860681534, + -0.06345793604850769, + -0.06275568902492523, + -0.026186002418398857, + 0.10410422086715698, + 0.02785373665392399, + -0.08429741114377975, + -0.07901005446910858, + -0.013228105381131172, + 0.09531518816947937, + 0.07538281381130219, + -0.07441704720258713, + -0.07494951784610748, + 0.018879011273384094, + -0.033083852380514145, + 0.009677229449152946, + 0.09331901371479034, + -0.04792357608675957, + 0.0716031938791275, + -0.014273926615715027, + 0.05464331433176994, + -0.046585965901613235, + 0.03287811949849129, + 0.05402247607707977, + -0.0005953431245870888, + 0.010200425051152706, + 0.009690993465483189, + -0.01622677780687809, + -0.0025300574488937855, + -0.04299558326601982, + 0.05154995620250702, + 0.056826986372470856, + 0.006675021257251501, + -0.025647634640336037, + -0.04564892128109932, + -0.1027522012591362, + -0.08405451476573944, + -0.007702713832259178, + 0.018234889954328537, + 0.09483586996793747, + 0.03722751885652542, + -0.04907894507050514, + -0.029796140268445015, + -0.011680645868182182, + 0.015320352278649807, + -0.014567357487976551, + 0.037087585777044296, + 0.07867810875177383, + 0.05070165544748306, + -0.10212941467761993, + 0.012582903727889061, + 0.06817217916250229, + 0.05614333599805832, + 0.030558351427316666, + 0.10506562888622284, + 0.0088492501527071, + 0.0682573989033699, + -0.042134057730436325, + 0.06021171063184738, + -0.01207392755895853, + -0.031671278178691864, + -0.07997740805149078, + -0.07416747510433197, + -0.1464931070804596, + -0.003905295627191663, + -0.02400984987616539, + -0.10366961359977722, + 0.059842489659786224, + -0.08118351548910141, + -0.01979461871087551, + 0.06932692974805832, + 0.008092258125543594, + 0.016987105831503868, + 0.08699524402618408, + 0.009923281148076057, + 0.02263632044196129, + 0.035698868334293365, + -0.046228040009737015, + 0.0054749432019889355, + 0.0035792612470686436, + -0.0027718532364815474, + 0.09808185696601868, + -1.3784330730806896e-33, + 0.004753932356834412, + -0.020695414394140244, + -0.020648449659347534, + 0.021595556288957596, + 0.07805319875478745, + 0.0200350359082222, + -0.0710093230009079, + -0.05607398599386215, + -0.006927052047103643, + 0.0578567273914814, + 0.10718318819999695, + 0.06876331567764282, + -0.045342519879341125, + -0.033710695803165436, + 0.0035775734577327967, + -0.011804387904703617, + 0.09549570083618164, + 0.0719861090183258, + -0.04514433071017265, + 0.02340473234653473, + -0.05469939485192299, + -0.029860667884349823, + -0.034056540578603745, + 0.0006356793455779552, + -0.0019877119921147823, + 0.04052659496665001, + 0.07737308740615845, + -0.01948634721338749, + -0.06481330096721649, + -0.0037730305921286345, + 0.025326598435640335, + -0.010397085919976234, + 0.07373180240392685, + 0.04864015057682991, + 0.025393616408109665, + 0.058600444346666336, + -0.04598642513155937, + 0.004792173393070698, + 0.016329722478985786, + 0.06697393953800201, + -0.11430444568395615, + -0.05038449540734291, + -0.08868612349033356, + -0.09840796142816544, + 0.05681538209319115, + 0.06056369096040726, + 0.004340681247413158, + -0.10879326611757278, + 0.07183974981307983, + -0.015909116715192795, + 0.004926116205751896, + -0.008487238548696041, + 0.018423719331622124, + -0.044068343937397, + 0.014075452461838722, + 0.011956250295042992, + 0.039331451058387756, + 0.0442323200404644, + 0.01612723246216774, + 0.00494761485606432, + 0.09091766923666, + -0.018572812899947166, + 0.040397342294454575, + -0.07569022476673126, + -0.12986980378627777, + 0.04142299294471741, + -0.00511849345639348, + -0.0026103926356881857, + 0.04937439039349556, + -0.010872401297092438, + -0.003337492700666189, + 0.011779790744185448, + 0.09959036111831665, + -0.017689630389213562, + 0.0843157172203064, + 0.07668470591306686, + 0.03218651935458183, + -0.018557922914624214, + 0.05218205228447914, + -0.00854458101093769, + 0.020987197756767273, + -0.040592044591903687, + 0.027096949517726898, + 0.06489445269107819, + 0.03276452049612999, + -0.02227184921503067, + -0.010676012374460697, + 0.0817142128944397, + 0.0020879541989415884, + -0.007761603686958551, + -0.11159130930900574, + -0.02720370702445507, + -0.020848581567406654, + -0.020571613684296608, + -0.07956311851739883, + -9.091353206141229e-34, + 0.05246024578809738, + 0.03025670163333416, + -0.0649276152253151, + -0.03721097111701965, + -0.027315761893987656, + -0.018900729715824127, + -0.0394771508872509, + 0.03295785188674927, + 0.04694593697786331, + 0.01618492789566517, + 0.09737571328878403, + 0.006754675880074501, + -0.03530380129814148, + -0.04475977644324303, + -0.04424227774143219, + 0.021950239315629005, + 0.08028610050678253, + 0.011884084902703762, + -0.09023921191692352, + -0.005163536407053471, + -0.08200656622648239, + 0.04011080786585808, + -0.12749363481998444, + -0.02271103486418724, + 0.02386702597141266, + -0.011419394984841347, + 0.025643188506364822, + -0.010247625410556793, + -0.008815417066216469, + -0.04169394075870514, + -0.08049463480710983, + -0.12236761301755905, + 0.022126037627458572, + 0.0248483307659626, + -0.008885791525244713, + 0.058248646557331085, + 0.02444523386657238, + 0.003909924998879433, + -0.011153912171721458, + -0.017281891778111458, + -0.0013864090433344245, + -0.017945384606719017, + -0.008056131191551685, + 0.05038361996412277, + -0.036125779151916504, + 0.061570800840854645, + -0.05452851578593254, + 0.0058300006203353405, + 0.0758606418967247, + 0.07412533462047577, + -0.035036686807870865, + -0.06271704286336899, + -0.02588977850973606, + 0.020416537299752235, + -0.0185223575681448, + -0.0060386876575648785, + 0.02871093526482582, + -0.04146318510174751, + -0.02156001143157482, + 0.031257010996341705, + -0.08937512338161469, + 0.005274010356515646, + -0.0009263585088774562, + -0.009701376780867577, + 0.017280150204896927, + -0.07598923146724701, + 0.007962406612932682, + -0.038472551852464676, + 0.00913707260042429, + -0.044323910027742386, + 0.0943017229437828, + -0.009597032330930233, + -0.09238913655281067, + 0.01763823628425598, + -0.017467547208070755, + 0.03450782597064972, + 0.06929031014442444, + 0.045381586998701096, + -0.020743675529956818, + 0.002264660317450762, + -0.007548145484179258, + 0.008445905521512032, + 0.008087518624961376, + 0.03572646155953407, + -0.07047083973884583, + 0.10034875571727753, + 0.006574725732207298, + 0.00033706615795381367, + -0.028955424204468727, + -0.013512739911675453, + -0.08592230826616287, + -0.028654474765062332, + -0.008374948985874653, + 0.028635459020733833, + -0.015857607126235962, + -2.1555518259219753e-08, + 0.012155663222074509, + -0.026442328467965126, + -0.02291252091526985, + -0.05112076550722122, + 0.04569806903600693, + -0.10432061553001404, + -0.0030914677772670984, + -0.05618089437484741, + 0.002730708569288254, + 0.03115583397448063, + 0.03528246283531189, + -0.02067236788570881, + -0.08325092494487762, + -0.0428413562476635, + -0.06154567003250122, + 0.021328531205654144, + -0.018868807703256607, + 0.08852209150791168, + -0.028746018186211586, + -0.09580277651548386, + -0.01947006583213806, + 0.011461494490504265, + 0.017360113561153412, + -0.06949958950281143, + 0.04596582055091858, + -0.024653244763612747, + -0.11376432329416275, + 0.08252429217100143, + 0.06312145292758942, + 0.03606517240405083, + 0.03503086790442467, + 0.021844111382961273, + 0.0905509665608406, + -0.03650582581758499, + -0.08944966644048691, + -0.07497933506965637, + -0.09913536161184311, + 0.009082421660423279, + 0.012034609913825989, + 0.08376499265432358, + 0.042134545743465424, + -0.05453544110059738, + 0.007604234851896763, + 0.04054241254925728, + 0.003674203297123313, + 0.0036377101205289364, + 0.03558564931154251, + -0.07867580652236938, + -0.04557065665721893, + -0.07816403359174728, + -0.08110952377319336, + -0.03470403328537941, + 0.04933878034353256, + -0.022931814193725586, + -0.026378577575087547, + 0.0330359973013401, + 0.06097833812236786, + 0.04659672826528549, + 0.022900119423866272, + -0.021977443248033524, + 0.06384354084730148, + -0.03717631474137306, + -0.04324885830283165, + -0.0020535301882773638 + ], + "call-bell-bold||service bell,reception,attendant,concierge bell": [ + -0.04290258139371872, + -0.07289854437112808, + -0.0021136943250894547, + 0.024750707671046257, + -0.10226324945688248, + 0.00505905132740736, + 0.16145431995391846, + -0.06084877997636795, + 0.009437400847673416, + -0.04679877683520317, + 0.024552710354328156, + 0.045095957815647125, + 0.025154486298561096, + -0.03646345064043999, + -0.019990218803286552, + -0.012372867204248905, + 0.08555285632610321, + -0.04617173597216606, + -0.012023678049445152, + 0.01847241260111332, + -0.034644417464733124, + 0.07639092952013016, + -0.00531646516174078, + 0.043563827872276306, + -0.036692097783088684, + -0.04250909760594368, + -0.038578376173973083, + 0.029980728402733803, + 0.010473464615643024, + -0.06582657247781754, + -0.013247922994196415, + 0.07022230327129364, + 0.06571155786514282, + 0.016149967908859253, + 0.000303231761790812, + 0.05800577998161316, + 0.0037329390179365873, + 0.004495804198086262, + 0.043835196644067764, + 0.0831223577260971, + -0.03223637118935585, + -0.07320351153612137, + -0.06229152902960777, + 0.035168930888175964, + -0.049453094601631165, + -0.019387850537896156, + -0.05735829100012779, + 0.0023387016262859106, + 0.012608902528882027, + -0.03598222881555557, + 0.06911084055900574, + 0.01779167540371418, + -0.03506196662783623, + 0.06344641745090485, + -0.02650487795472145, + 0.05183008313179016, + -0.06800258159637451, + 0.015133730135858059, + 0.01675312966108322, + 0.08970532566308975, + -0.021414397284388542, + 0.02666294015944004, + 0.005510659888386726, + 0.04293196648359299, + -0.05978047847747803, + 0.018818117678165436, + -0.09655658900737762, + 0.008761579170823097, + -0.014477482065558434, + -0.060273177921772, + 0.04172727093100548, + 0.011211524717509747, + -0.025366390123963356, + -0.01937255822122097, + -0.0495540127158165, + 0.03318653628230095, + 0.05678315460681915, + -0.08645941317081451, + -0.044197358191013336, + -0.04011916369199753, + -0.1044308990240097, + -0.13157591223716736, + -0.04164683446288109, + 0.010696575045585632, + 0.033641766756772995, + 0.04185222461819649, + -0.09496931731700897, + -0.06112799793481827, + -0.08486698567867279, + 0.005863081198185682, + -0.06297717243432999, + -0.025741999968886375, + -0.06442534923553467, + -0.013446791097521782, + -0.08174549043178558, + 0.016459548845887184, + -0.011057374998927116, + -0.0965140089392662, + -0.02631196193397045, + 0.08829086273908615, + -0.034863632172346115, + 0.04134446382522583, + 0.03801580145955086, + 0.07610227912664413, + -0.004164550453424454, + -0.07870443165302277, + -0.044048428535461426, + 0.010811960324645042, + 0.0035718099679797888, + -0.02864811010658741, + 0.05249352380633354, + -0.041714467108249664, + 0.06288892030715942, + -0.033268723636865616, + -0.023374879732728004, + -0.031361229717731476, + -0.020632490515708923, + -0.06044474616646767, + 0.14057594537734985, + 0.029186688363552094, + 0.08201375603675842, + -0.03278781473636627, + -0.09969765692949295, + 0.002486033132299781, + -0.09971126914024353, + 0.05211975798010826, + 0.1112082302570343, + -6.263990827051114e-34, + -0.027584871277213097, + 0.0639004334807396, + 0.018143916502594948, + 0.11649077385663986, + 0.06181468814611435, + 0.03351689502596855, + -0.08453807979822159, + -0.010479050688445568, + -0.02430000901222229, + 0.08525421470403671, + 0.01968265324831009, + 0.05537791922688484, + 0.04293399304151535, + -0.013655945658683777, + 0.02482682093977928, + 0.017938662320375443, + -0.03742948919534683, + -0.02001490816473961, + -0.015452319756150246, + -0.02124514803290367, + -0.046348873525857925, + 0.06500594317913055, + -0.018090028315782547, + 0.055151913315057755, + 0.029828837141394615, + -0.04838765785098076, + 0.025155946612358093, + 0.000824867922347039, + 0.033862993121147156, + 0.009409913793206215, + 0.030339419841766357, + 0.012655015103518963, + 0.07989051938056946, + 0.06694345921278, + 0.0027980576269328594, + -0.0033904246520251036, + -0.02864374779164791, + -0.04892843961715698, + -0.05265286564826965, + -0.028077472001314163, + -0.037152230739593506, + 0.010854349471628666, + -0.07181769609451294, + 0.03898918628692627, + 0.0020798316691070795, + 0.06995908170938492, + 0.008020497858524323, + -0.03664543479681015, + 0.07209496200084686, + 0.02962784841656685, + -0.012240411713719368, + 0.004924138076603413, + 0.029984014108777046, + 0.06271132826805115, + 0.003169419476762414, + -0.037224166095256805, + 0.07539238035678864, + 0.06110444664955139, + 0.0650210827589035, + -0.015115952119231224, + 0.014159293845295906, + -0.034355662763118744, + 0.018743660300970078, + -0.027877191081643105, + 0.07961869984865189, + -0.013712741434574127, + -0.08279310166835785, + -0.05255229398608208, + 0.08215975016355515, + 0.007663054391741753, + 0.04092581197619438, + 0.07331686466932297, + 0.055965837091207504, + 0.03967192396521568, + -0.009844782762229443, + 0.07901306450366974, + -0.05897544324398041, + 0.0334283672273159, + 0.07281048595905304, + -0.052299123257398605, + 0.02568427287042141, + 0.07394317537546158, + -0.0579209141433239, + 0.10219225287437439, + 0.09690988808870316, + 0.03640521690249443, + 0.004656557459384203, + -0.123232901096344, + 0.008098511025309563, + 0.0869697853922844, + -0.10502070933580399, + 0.060023121535778046, + -0.007191607262939215, + -0.02337457798421383, + -0.07919567078351974, + -6.0113050001949205e-34, + -0.0009520317544229329, + 0.02252468839287758, + -0.030857602134346962, + -0.043742090463638306, + 0.008801322430372238, + 0.02531978115439415, + -0.005150148645043373, + 0.008520910516381264, + -0.033230096101760864, + 0.034328363835811615, + -0.01072511076927185, + 0.02547086589038372, + 0.013250057585537434, + -0.0321531817317009, + -0.002978803124278784, + 0.03763476759195328, + 0.013077864423394203, + 0.02445990778505802, + -0.06039644405245781, + 0.07540237158536911, + -0.0012239501811563969, + 0.005159663036465645, + -0.061840370297431946, + 0.02834359183907509, + -0.07643646746873856, + 0.013176845386624336, + -0.01754600740969181, + 0.04573637247085571, + -0.012169597670435905, + -0.08005602657794952, + -0.06513416022062302, + -0.055533766746520996, + 0.06381772458553314, + 0.0631985068321228, + -0.08378490060567856, + 0.06491735577583313, + 0.09482453763484955, + 0.0590083971619606, + 0.01702551171183586, + -0.03857899457216263, + 0.04897789657115936, + -0.012285434640944004, + 0.0678962916135788, + -0.0024382355622947216, + -0.008391037583351135, + -0.04785677418112755, + -0.07820174843072891, + -0.09582158178091049, + -0.11059901863336563, + -0.002986117033287883, + -0.05963227525353432, + -0.08334305137395859, + -0.061836883425712585, + 0.08708464354276657, + -0.055301763117313385, + 0.0020496584475040436, + 0.04781317338347435, + -0.044309794902801514, + -0.0017842738889157772, + 0.0031783708836883307, + 0.10391995310783386, + 0.018129058182239532, + 0.07267124950885773, + 0.03286312520503998, + 0.05203326791524887, + -0.04094259440898895, + 0.031135130673646927, + -0.03753064572811127, + 0.031843703240156174, + -0.018841994926333427, + -0.009964963421225548, + -0.005603729747235775, + 0.008557084947824478, + -0.008462661877274513, + 0.030692700296640396, + -0.01893760822713375, + -0.05945074185729027, + -0.03159618750214577, + -0.04055417701601982, + 0.025607354938983917, + -0.05654808506369591, + -0.045204970985651016, + -0.030173610895872116, + 0.033829301595687866, + -0.03260040655732155, + -0.007647750433534384, + 0.0867699533700943, + 0.027969814836978912, + -0.04257825389504433, + -0.04268920421600342, + -0.04787565767765045, + 0.0364384688436985, + 0.022543804720044136, + -0.064296655356884, + -0.030691159889101982, + -2.0828998970046086e-08, + -0.023030836135149002, + -0.03562995418906212, + -0.050408318638801575, + -0.05873515084385872, + 0.05792064219713211, + -0.09743710607290268, + 0.018739761784672737, + -0.06561935693025589, + -0.029111355543136597, + 0.014683189801871777, + 0.0026614570524543524, + -0.03423657640814781, + 0.004271168727427721, + -0.0122766625136137, + 0.048385899513959885, + 0.03357505798339844, + -0.07460793107748032, + -0.06602028012275696, + -0.03697711229324341, + 0.001965021248906851, + 0.05423178896307945, + 0.0776967778801918, + 0.04354085400700569, + -0.03293003886938095, + -0.020427193492650986, + 0.010108941234648228, + -0.04871201515197754, + 0.03527947515249252, + 0.058741871267557144, + 0.049035053700208664, + -0.010763382539153099, + 0.06251484900712967, + 0.01887541636824608, + -0.06806151568889618, + -0.06462971121072769, + -0.04550451040267944, + -0.051589030772447586, + -0.03330494835972786, + 0.009630472399294376, + 0.08299426734447479, + 0.03334275260567665, + -0.034411683678627014, + -0.113460972905159, + 0.058085955679416656, + 0.12377378344535828, + 0.0038964541163295507, + 0.026317568495869637, + -0.030278123915195465, + 0.0024099203292280436, + 0.005833311937749386, + 0.032531820237636566, + -0.009510057978332043, + 0.041486162692308426, + -0.04623699560761452, + -0.08555831015110016, + -0.07283398509025574, + 0.03753592446446419, + 0.05587329715490341, + 0.03602127730846405, + 0.07309331744909286, + 0.002060865517705679, + 0.0400828942656517, + -0.020373033359646797, + -0.04185236245393753 + ], + "camera-bold||photography,pictures,lens": [ + -0.02044348604977131, + -0.0016055088490247726, + -0.061005182564258575, + -0.009279065765440464, + 0.039537910372018814, + -0.08351178467273712, + 0.13305321335792542, + 0.015830159187316895, + 0.0093813082203269, + 0.009457592852413654, + 0.05969521030783653, + -0.034950513392686844, + 0.04291388392448425, + 0.0005664798081852496, + 0.02272646129131317, + -0.008067508228123188, + 0.04349281266331673, + 0.00880563072860241, + -0.04073333740234375, + 0.05034303292632103, + -0.0292690247297287, + 0.006205177865922451, + 0.1132296547293663, + 0.02335788495838642, + 0.043198272585868835, + 0.0010131153976544738, + 0.07776915282011032, + -0.005201247986406088, + 0.004550549201667309, + -0.07094356417655945, + -0.026614036411046982, + 0.021224018186330795, + 0.07716093212366104, + 0.02687820792198181, + 0.05918995290994644, + 0.012133284471929073, + -0.019121194258332253, + -0.01542244665324688, + -0.024900561198592186, + 0.0451388843357563, + 0.0009221112704835832, + -0.024224290624260902, + 0.017798861488699913, + 0.01839369721710682, + 0.0010738144628703594, + -0.009674286469817162, + 0.013952740468084812, + 0.0036133388057351112, + 0.021905267611145973, + -0.025704074651002884, + -0.08683538436889648, + -0.0557628832757473, + -0.12270474433898926, + 0.007063050754368305, + 0.02046252228319645, + 0.02337021380662918, + -0.11354672163724899, + -0.03692952170968056, + 0.04329802840948105, + -0.03548669442534447, + 0.020141370594501495, + 0.014332997612655163, + 0.042474593967199326, + 0.06937374174594879, + 0.06096411496400833, + 0.04372714087367058, + 0.019627291709184647, + -0.04269353672862053, + 0.001977551029995084, + -0.022734351456165314, + 0.01426768209785223, + 0.04857407137751579, + -0.03414444252848625, + -0.040811482816934586, + -0.07527144998311996, + -0.0018462430452927947, + 0.019228210672736168, + -0.021245941519737244, + -0.0155081357806921, + -0.05191544443368912, + 0.031766969710588455, + -0.10492287576198578, + -0.038669832050800323, + 0.009458757936954498, + 0.03971978649497032, + 0.03586360812187195, + -0.07417171448469162, + -0.05486653372645378, + -0.05889873951673508, + -0.07819034904241562, + -0.1079494059085846, + -0.05858232080936432, + -0.0700823962688446, + -0.0019550209399312735, + -0.09259912371635437, + -0.030427996069192886, + 0.03873971477150917, + -0.026528578251600266, + -0.022985560819506645, + 0.08384419977664948, + 0.062007881700992584, + 0.006389100570231676, + 0.03899658843874931, + 0.03552984446287155, + -0.020307794213294983, + -0.017324959859251976, + -0.0010007763048633933, + 0.006751243956387043, + 0.01827002316713333, + 0.004472424276173115, + -0.03685874491930008, + -0.04096022993326187, + -0.05468079075217247, + -0.0527484267950058, + -0.0042022098787128925, + -0.03500821813941002, + -0.047677792608737946, + 0.011553294025361538, + 0.08769015967845917, + -0.013151551596820354, + -0.01074664294719696, + -0.045030176639556885, + -0.058046482503414154, + -0.025345012545585632, + -0.0024825376458466053, + -0.01454373449087143, + 0.051121439784765244, + -1.8535013089483437e-33, + 0.06411409378051758, + 0.05254092812538147, + 0.04501533880829811, + 0.09792069345712662, + 0.0031903847120702267, + 0.022822624072432518, + -0.036124639213085175, + 0.020053135231137276, + -0.09038032591342926, + -0.017633048817515373, + 0.05756828188896179, + 0.027196059003472328, + -0.027821483090519905, + 0.0825127363204956, + 0.0994408056139946, + 0.02600644901394844, + 0.027098054066300392, + -0.04793427139520645, + -0.05010510981082916, + 0.046214547008275986, + -0.026428373530507088, + 0.02958916313946247, + -0.04154350608587265, + 0.03726014494895935, + -0.008600356057286263, + -0.03057340532541275, + 0.06463579088449478, + 0.0067150588147342205, + -0.04834705963730812, + 0.025584984570741653, + -0.004891665186733007, + 0.05618651211261749, + 0.02018210105597973, + -0.033217333257198334, + 0.018655089661478996, + 0.023095523938536644, + -0.08516006916761398, + -0.0015483858296647668, + 0.027020946145057678, + -0.0030430061742663383, + -0.06771915405988693, + 0.053169071674346924, + -0.06353772431612015, + -0.04109484702348709, + 0.044493965804576874, + 0.16173335909843445, + -0.05976192653179169, + 0.033009789884090424, + -0.055989719927310944, + 0.08296063542366028, + 0.023372266441583633, + -0.06443294882774353, + -0.023015769198536873, + -0.01283786166459322, + -0.01784609816968441, + 0.010636798106133938, + -0.06466811895370483, + 0.042367707937955856, + -0.009979349561035633, + -0.03113372251391411, + 0.03273581340909004, + -0.008002569898962975, + -0.04322563856840134, + -0.024454452097415924, + -0.057034675031900406, + 0.09326735883951187, + -0.02771957591176033, + 0.04638296365737915, + 0.013164680451154709, + 0.05168424919247627, + -0.025406809523701668, + 0.07038139551877975, + 0.0038642340805381536, + 0.036011870950460434, + 0.05916442722082138, + 0.05879136919975281, + -0.042052749544382095, + -0.05745453014969826, + 0.00247379788197577, + 0.029832890257239342, + -0.1511862725019455, + 0.06558031588792801, + -0.006881300359964371, + 0.10622275620698929, + -0.07459384202957153, + -0.0021501490846276283, + -0.012748967856168747, + -0.05507959797978401, + -0.006843593902885914, + 0.052852798253297806, + -0.03495919704437256, + 0.027732061222195625, + -0.03892788290977478, + -0.05804701894521713, + -0.12628139555454254, + 4.210767242261806e-34, + 0.06226262450218201, + 0.051356345415115356, + -0.0825561136007309, + -0.05066775903105736, + -0.026910196989774704, + 0.0077914525754749775, + 0.067523293197155, + 0.06656593829393387, + 0.056277234107255936, + 0.024065326899290085, + 0.06602025032043457, + -0.07232454419136047, + -0.08717097342014313, + -0.06162393465638161, + -0.04815744236111641, + -0.005702255759388208, + 0.012613519094884396, + -0.00020428271091077477, + -0.055176325142383575, + 0.013744327239692211, + 0.008279766887426376, + 0.004719408694654703, + 0.04561348259449005, + 0.03541421517729759, + -0.027654172852635384, + 0.09485817700624466, + 0.01982404664158821, + 0.0081715639680624, + -0.050413623452186584, + -0.07271463423967361, + 0.010330306366086006, + -0.037601325660943985, + 0.09746453166007996, + 0.055660247802734375, + -0.06452526152133942, + 0.08577518910169601, + 0.03912488371133804, + -0.10095329582691193, + 0.036368295550346375, + 0.01302504912018776, + -0.01736111380159855, + 0.009936152957379818, + 0.03706466034054756, + 0.024481406435370445, + -0.05771976336836815, + -0.06571853160858154, + 0.018488382920622826, + -0.031246034428477287, + 0.013458133675158024, + 0.04633215069770813, + -0.04479993134737015, + -0.014407658949494362, + 0.014059707522392273, + 0.03750921040773392, + -0.08028136938810349, + -0.05724221467971802, + -0.0398455485701561, + -0.044379476457834244, + 0.05150354281067848, + 0.08990805596113205, + 0.03836531192064285, + 0.03581567481160164, + -0.08487441390752792, + 0.008278271183371544, + -0.026122568175196648, + -0.07520889490842819, + 0.006490204483270645, + -0.015483999624848366, + 0.0282539464533329, + 0.030047327280044556, + 0.029522458091378212, + -0.009270567446947098, + 0.09710347652435303, + 0.07431875169277191, + 0.03772130236029625, + -0.04822978749871254, + -0.012332018464803696, + 0.06431237608194351, + 0.09310434013605118, + 0.03369689732789993, + -0.0013246993767097592, + -0.0773267149925232, + -0.03751484304666519, + 0.15075775980949402, + 0.008833281695842743, + 0.048453282564878464, + -0.003749967087060213, + -0.0898740291595459, + -0.0010096977930516005, + -0.038117341697216034, + -0.014743237756192684, + 0.042075276374816895, + -0.016018832102417946, + 0.01792280375957489, + -0.012335779145359993, + -1.5453284873956363e-08, + 0.011337248608469963, + -0.01642811857163906, + -0.025353822857141495, + 0.0023247492499649525, + 0.03201676160097122, + -0.08232861012220383, + -0.02839069440960884, + -0.024196555837988853, + -0.009233265183866024, + -0.057537730783224106, + 0.02062860317528248, + 0.02042185328900814, + -0.06375506520271301, + -0.032559894025325775, + 0.02450585924088955, + 0.020802559331059456, + -0.042374514043331146, + 0.04486764594912529, + -0.0095478231087327, + -0.037709981203079224, + -0.00790536031126976, + -0.004952603485435247, + 0.028588883578777313, + -0.021895375102758408, + 0.024692486971616745, + -0.002995413262397051, + -0.05735611543059349, + -0.03293808922171593, + 0.1203976571559906, + 0.0816899761557579, + 0.03573714196681976, + 0.020152011886239052, + 0.03405080363154411, + 0.05625008046627045, + -0.10423283278942108, + -0.06938531994819641, + -0.048864513635635376, + -0.03712313249707222, + -0.015134363435208797, + 0.09593462198972702, + -0.02485441416501999, + -0.006660599261522293, + 0.022964609786868095, + -0.0017660361481830478, + 0.03385137394070625, + 0.05813438817858696, + 0.14043372869491577, + -0.05579333379864693, + -0.10193467885255814, + -0.06547342985868454, + -0.088768869638443, + -0.017459459602832794, + 0.015207174234092236, + 0.12047763913869858, + -0.09909817576408386, + -0.07478465139865875, + 0.09690134227275848, + 0.030369680374860764, + -0.04427386820316315, + 0.02236514911055565, + 0.09507936984300613, + -0.02961200848221779, + -0.08405002951622009, + 0.05049893260002136 + ], + "camera-plus-bold||photography,pictures,album,add": [ + -0.025609685108065605, + -0.016286099329590797, + -0.05285179987549782, + 0.03411569446325302, + 0.07591363042593002, + -0.00830614473670721, + 0.07902497798204422, + 0.0008598240674473345, + 0.03993966430425644, + 0.01389097236096859, + 0.0710805207490921, + 0.0005747217801399529, + 0.03118264302611351, + -0.00872685108333826, + 0.04852673038840294, + -0.0008302618516609073, + -0.010260706767439842, + 0.015571022406220436, + -0.041462492197752, + -0.006496006157249212, + -0.0521143302321434, + -0.04030853509902954, + 0.11822650581598282, + 0.0016278241528198123, + 0.04802168905735016, + -0.013614602386951447, + -0.01902296207845211, + -0.0002791886799968779, + 0.0485408678650856, + -0.04749343544244766, + 0.0163325946778059, + 0.030032774433493614, + 0.09971735626459122, + 0.056451719254255295, + 0.041353657841682434, + -0.018062666058540344, + -0.029682239517569542, + -0.0036126025952398777, + -0.05291645601391792, + 0.014758693054318428, + 0.006010907702147961, + -0.014432502910494804, + 0.01692882739007473, + 0.025934310629963875, + -0.05070418864488602, + -0.0389740951359272, + -0.019374322146177292, + -0.056861016899347305, + 0.04424459487199783, + 0.005825189873576164, + -0.011560332961380482, + -0.06109419837594032, + -0.15037775039672852, + 0.03337327763438225, + 0.016659611836075783, + -0.0019287292379885912, + -0.10954086482524872, + -0.004056913312524557, + 0.03153330087661743, + -0.03854777291417122, + 0.035087209194898605, + -0.026821570470929146, + 0.05002695322036743, + 0.04255291447043419, + 0.06635233759880066, + 0.06246034428477287, + -0.012854872271418571, + 0.02656295709311962, + -0.017823632806539536, + 0.011195053346455097, + 0.048781782388687134, + 0.04601375013589859, + -0.011435901746153831, + 0.0011024688137695193, + -0.03914560005068779, + -0.005364865995943546, + -0.003766601672396064, + -6.858471897430718e-05, + -0.033444736152887344, + -0.08248971402645111, + 0.028246495872735977, + -0.04942792281508446, + -0.02389059029519558, + -0.010228416882455349, + 0.09670130163431168, + 0.026463089510798454, + -0.05353322625160217, + -0.08433222025632858, + -0.08458805084228516, + -0.11047983914613724, + -0.12198856472969055, + -0.05699234828352928, + -0.05153290182352066, + -0.022074399515986443, + -0.10919495671987534, + -0.027504969388246536, + 0.04402533173561096, + -0.04226544126868248, + -0.07304640859365463, + 0.041290029883384705, + 0.029454318806529045, + 0.014875288121402264, + 0.025011369958519936, + 0.014576493762433529, + 0.03741787001490593, + -0.06190694496035576, + -0.0063888742588460445, + 0.004749603103846312, + -0.017916912212967873, + 6.251856393646449e-05, + 0.013342226855456829, + -0.02502966672182083, + -0.03829960525035858, + -0.09508451819419861, + -0.001518849516287446, + -0.004188526887446642, + -0.02229294925928116, + 0.008731827139854431, + 0.1130017340183258, + -0.06274456530809402, + 0.04593672230839729, + -0.06580007821321487, + -0.04602785035967827, + -0.05659639462828636, + -0.051844894886016846, + -0.04620104655623436, + 0.03239215910434723, + -2.3975830936592627e-33, + 0.08001648634672165, + 0.02741681970655918, + 0.00470219599083066, + 0.094826340675354, + 0.06676629930734634, + 0.013762694783508778, + -0.08400768786668777, + 0.029499411582946777, + -0.14254499971866608, + 0.0027815643697977066, + 0.07462988793849945, + 0.0048914081417024136, + -0.04927040636539459, + 0.11369115114212036, + 0.06774678081274033, + 0.031202970072627068, + 0.014005417004227638, + -0.028697721660137177, + 0.01804126799106598, + 0.0254963431507349, + -0.0629863291978836, + 0.0015926448395475745, + -0.02324114739894867, + 0.08680032193660736, + 0.04704253748059273, + 0.00821704138070345, + 0.09985489398241043, + -0.011138280853629112, + -0.015353651717305183, + 0.006165269296616316, + -0.021828169003129005, + 0.025650879368185997, + 0.015267151407897472, + -0.009934540838003159, + 0.042827170342206955, + 0.03144340217113495, + -0.07535874098539352, + 0.01685974933207035, + 0.06494764238595963, + -0.0139383003115654, + -0.06302385032176971, + 0.005030038300901651, + -0.12432656437158585, + -0.06112222746014595, + 0.014421533793210983, + 0.1539614200592041, + -0.06212398409843445, + -0.005813418421894312, + -0.018833717331290245, + 0.03454660251736641, + -0.010581817477941513, + -0.04070238396525383, + -0.030585363507270813, + 0.024064049124717712, + -0.0690850093960762, + -0.013579594902694225, + -0.06356555968523026, + 0.056778352707624435, + 0.009740343317389488, + -0.023053672164678574, + 0.06472987681627274, + 0.026123294606804848, + 0.000815565581433475, + -0.023102859035134315, + -0.05087167024612427, + 0.09345703572034836, + 0.028024274855852127, + 0.05564500391483307, + 0.0530194453895092, + 0.015219949185848236, + -0.04240339621901512, + 0.05205323174595833, + 0.006082771345973015, + 0.031980983912944794, + 0.07718164473772049, + 0.027827750891447067, + -0.03768297657370567, + -0.07301746308803558, + 0.011036033742129803, + 0.039707720279693604, + -0.1555347591638565, + 0.04853193461894989, + 0.008478283882141113, + 0.12712550163269043, + -0.04505249857902527, + 0.007623229641467333, + -0.015402106568217278, + -0.02993001975119114, + -0.03331246227025986, + 0.01391029916703701, + -0.05018139258027077, + 0.06367942690849304, + -0.004833151586353779, + -0.004428247455507517, + -0.11528711766004562, + 1.2739044419857255e-33, + 0.05957046151161194, + 0.023731475695967674, + -0.11015249788761139, + -0.06339054554700851, + -0.04898158460855484, + -0.021100468933582306, + 0.08293800801038742, + 0.05202232673764229, + 0.05168065428733826, + -0.00571197085082531, + 0.06739025563001633, + -0.061211053282022476, + -0.11388547718524933, + -0.0442054346203804, + -0.05039558559656143, + -0.011595840565860271, + -0.03432191535830498, + 0.010812065564095974, + -0.037173133343458176, + 0.011852473951876163, + -0.005220037419348955, + -0.019318612292408943, + 0.06076207011938095, + 0.062419626861810684, + -0.004761733114719391, + 0.0930260643362999, + 0.036869049072265625, + 0.04948323965072632, + -0.0033003368880599737, + -0.09048838913440704, + 0.06274762749671936, + -0.011044871062040329, + 0.047081295400857925, + 0.010091613046824932, + -0.057134296745061874, + 0.0342264287173748, + 0.05765000730752945, + -0.011395182460546494, + 0.00720781646668911, + 0.05084077641367912, + -0.024827338755130768, + -0.010527078062295914, + 0.009265507571399212, + 0.048961345106363297, + -0.019577166065573692, + -0.08861438930034637, + 0.018301373347640038, + -0.029623238369822502, + -0.02326805330812931, + 0.05894864723086357, + 0.01761511340737343, + -0.05283579230308533, + -0.03513563796877861, + 0.04136402904987335, + -0.056439418345689774, + -0.020384563133120537, + -0.015625739470124245, + -0.019883401691913605, + 0.05370891094207764, + 0.05493434891104698, + 0.022392917424440384, + 0.016312487423419952, + -0.07333885133266449, + -0.03928612917661667, + -0.04942821338772774, + -0.03345209360122681, + 0.010270019993185997, + -0.055371660739183426, + -0.020164944231510162, + 0.05359779670834541, + 0.04044020175933838, + 0.016663383692502975, + 0.057445865124464035, + 0.0814124047756195, + 0.021795397624373436, + -0.030350685119628906, + 0.02282843552529812, + 0.03389507904648781, + 0.08248477429151535, + -0.014681720174849033, + -0.044220976531505585, + -0.052376262843608856, + -0.02078263647854328, + 0.09873636811971664, + 0.024682436138391495, + 0.04219627380371094, + 0.0003468007780611515, + -0.01056720595806837, + 0.013279777020215988, + -0.04314522072672844, + -0.020318791270256042, + 0.05959353223443031, + -0.04555405676364899, + 0.02546442113816738, + -0.06536819785833359, + -1.633816992807624e-08, + -0.015520740300416946, + -0.057664111256599426, + -0.03873642161488533, + -0.047243379056453705, + 0.0470869317650795, + -0.09907931089401245, + -0.030621321871876717, + -0.0004093012830708176, + 0.01606615073978901, + -0.08582990616559982, + 0.06890539079904556, + 0.009344423189759254, + -0.06106598302721977, + -0.02354408986866474, + -0.019764939323067665, + 0.029955459758639336, + -0.012979036197066307, + 0.05560793727636337, + -0.018292048946022987, + -0.038133654743433, + -0.020397266373038292, + 0.017610453069210052, + 0.013824047520756721, + -0.03620201349258423, + 0.027877720072865486, + -0.0043633924797177315, + -0.030569981783628464, + -0.0463273748755455, + 0.06080275774002075, + 0.03939399495720863, + 0.041109465062618256, + 0.04564276710152626, + 0.061791498214006424, + 0.1023240014910698, + -0.02898739092051983, + -0.03452131152153015, + -0.026204075664281845, + -0.012055656872689724, + -0.05349155515432358, + 0.06201447546482086, + -0.028686726465821266, + -0.034510575234889984, + 0.02811507135629654, + 0.013519645668566227, + 0.04941871017217636, + 0.008563701063394547, + 0.14554888010025024, + -0.00442950613796711, + -0.09733732789754868, + -0.06208519637584686, + -0.052311282604932785, + -0.03437293693423271, + 0.06588853150606155, + 0.09568946808576584, + -0.08932644128799438, + -0.0866096243262291, + 0.10309813171625137, + 0.0624169297516346, + -0.0012016302207484841, + 0.06607789546251297, + 0.08039385825395584, + -0.08005377650260925, + -0.03416086733341217, + 0.03996959328651428 + ], + "camera-rotate-bold||photography,pictures,orientation,portrait,landscape,selfie,flip": [ + -0.024355551227927208, + -0.02063792385160923, + -0.03592712804675102, + -0.05599736422300339, + 0.015850476920604706, + -0.05287059396505356, + 0.05239080265164375, + 0.003296181559562683, + 0.03518674150109291, + 0.009672167710959911, + 0.08782967925071716, + 0.03758592903614044, + 0.02812809869647026, + -0.01876133680343628, + 0.044487837702035904, + -0.005848140921443701, + -0.01289514172822237, + 0.05465588718652725, + -0.016833366826176643, + 0.06875240057706833, + -0.034025538712739944, + -0.02434687502682209, + 0.03757141903042793, + 0.04963027685880661, + 0.0025023315101861954, + 0.039211489260196686, + 0.06939473748207092, + 0.011273122392594814, + -0.0050538089126348495, + -0.08997068554162979, + 0.010083584114909172, + 0.08566044270992279, + 0.07801562547683716, + 0.03852025792002678, + -0.04274510219693184, + -0.03545835241675377, + -0.030780190601944923, + -0.011219742707908154, + -0.07659000903367996, + 0.031782425940036774, + -0.013117851689457893, + -0.030439019203186035, + 0.04748209938406944, + 0.0019300138810649514, + 0.0633135512471199, + 0.03365105390548706, + -0.0317184180021286, + -0.005412634927779436, + 0.031161578372120857, + -0.0007798468577675521, + -0.0963391661643982, + -0.09304274618625641, + -0.11622629314661026, + 0.024592271074652672, + 0.027835650369524956, + 0.04193223640322685, + -0.010696063749492168, + -0.0340750515460968, + 0.06751006096601486, + -0.011527402326464653, + 0.09908199310302734, + 0.011145900003612041, + 0.00747732724994421, + 0.09499797224998474, + 0.0310069490224123, + 0.020331406965851784, + -0.006698880810290575, + -0.08416613191366196, + 0.014984329231083393, + -0.02816780097782612, + -0.03287506848573685, + 0.00034326280001550913, + -0.023810502141714096, + -0.05810019001364708, + 0.0035218284465372562, + -0.05259133502840996, + 0.034718357026576996, + -0.0655878558754921, + -0.04302605614066124, + -0.10507047176361084, + 0.008077201433479786, + -0.036257054656744, + -0.002201999304816127, + 0.03089875914156437, + 0.0665622279047966, + 0.008684596046805382, + -0.0886802077293396, + 0.014685085974633694, + -0.04992439225316048, + -0.027720827609300613, + -0.11675067245960236, + -0.03885825350880623, + -0.08135940879583359, + -0.07324706763029099, + -0.08864758163690567, + -0.009311599656939507, + 0.05240083485841751, + -0.11733665317296982, + -0.0622849240899086, + 0.04542958736419678, + 0.04028991237282753, + -0.05259383097290993, + 0.07131719589233398, + 0.057422664016485214, + 0.0031772353686392307, + -0.04989588260650635, + -0.011981219053268433, + -0.032005101442337036, + 0.0224392618983984, + 0.01633279025554657, + -0.011665319092571735, + -0.061535805463790894, + -0.0442301444709301, + -0.07980428636074066, + 0.010895730927586555, + -0.012809142470359802, + -0.08231435716152191, + 0.022056229412555695, + 0.07698731869459152, + 0.02623055689036846, + 0.0033924977760761976, + -0.03400828689336777, + -0.04447115957736969, + -0.05784446746110916, + -0.02133879065513611, + -0.02233322709798813, + 0.03472810611128807, + -2.0245840424639656e-33, + 0.0735795646905899, + 0.06665343046188354, + 0.037904053926467896, + 0.10921164602041245, + 0.010840805247426033, + -0.007540000136941671, + -0.0039846631698310375, + -0.015759604051709175, + -0.048606205731630325, + 0.008656064979732037, + 0.08089748024940491, + 0.07518458366394043, + -0.030663738027215004, + 0.10208943486213684, + 0.05926182493567467, + 0.004598362371325493, + -0.009216990321874619, + -0.010706176050007343, + -0.02960621379315853, + -0.01120673306286335, + 0.018866460770368576, + 0.049275316298007965, + -0.013886144384741783, + 0.01012234203517437, + -0.02681090496480465, + -0.023329608142375946, + 0.094139464199543, + -0.006009723525494337, + -0.06842160224914551, + 0.02652953565120697, + 0.00787980668246746, + 0.017827674746513367, + -0.010858300141990185, + -0.050276726484298706, + 0.055672794580459595, + 0.02391788363456726, + -0.05355741083621979, + -0.05564791336655617, + 0.0010857530869543552, + 0.03301767632365227, + -0.10718102008104324, + 0.01724233850836754, + -0.09591875970363617, + -0.05993548780679703, + 0.04780131205916405, + 0.15862303972244263, + -0.02909422293305397, + 0.05063166469335556, + 0.013869579881429672, + 0.08768513798713684, + 0.016599232330918312, + -0.01362359058111906, + -0.03643704578280449, + -0.009841734543442726, + -0.016968347132205963, + 0.002831612713634968, + -0.010528295300900936, + 0.05471258610486984, + -0.03372177854180336, + 0.017323367297649384, + 0.037439413368701935, + 0.0295530054718256, + -0.031742628663778305, + -0.09231545031070709, + -0.06540119647979736, + 0.025338565930724144, + 0.04546201601624489, + 0.008969666436314583, + 0.009289417415857315, + 0.046518851071596146, + -0.01466753613203764, + 0.05363715812563896, + -0.009362041018903255, + 0.003370237071067095, + 0.043748971074819565, + 0.0638199970126152, + -0.00446350546553731, + -0.034205496311187744, + -0.04193552955985069, + 0.03298156335949898, + -0.1197756677865982, + 0.07344745099544525, + -0.053553156554698944, + 0.07216343283653259, + -0.08326590806245804, + -0.015682367607951164, + 0.017137082293629646, + -0.05917522311210632, + -0.03160900995135307, + 0.05135532096028328, + -0.09251122176647186, + 0.048080749809741974, + 0.03178044781088829, + -0.0006913141696713865, + -0.1218528226017952, + 7.171124868532962e-34, + -0.02861209772527218, + 0.017496703192591667, + -0.08781769871711731, + 0.016470734030008316, + -0.02570079267024994, + -0.030944736674427986, + 0.12138038128614426, + 0.09049364179372787, + 0.03418780118227005, + -0.025763122364878654, + 0.038070544600486755, + -0.053551483899354935, + -0.05685523524880409, + -0.02756424993276596, + 0.003524451283738017, + -0.008232024498283863, + -0.020087752491235733, + -0.0004431071865838021, + -0.07874001562595367, + 0.08288688957691193, + 0.025058936327695847, + 0.0458015538752079, + 0.007077471353113651, + 0.09858771413564682, + -0.03478775545954704, + 0.08637243509292603, + 0.07536228746175766, + 0.03391661494970322, + 0.0428028330206871, + -0.001269520609639585, + 0.018302783370018005, + -0.05902397260069847, + 0.1062910407781601, + 0.05389076843857765, + -0.0965099185705185, + 0.07223708182573318, + -0.029058227315545082, + -0.05152095481753349, + -0.035104524344205856, + 0.04153549298644066, + -0.01782279834151268, + -0.004848186857998371, + 0.045881059020757675, + 0.02275087870657444, + -0.06485123187303543, + -0.0878790095448494, + -0.03942021355032921, + 0.03357970342040062, + 0.00525513244792819, + 0.06265497207641602, + -0.05299391597509384, + 0.010870476253330708, + -0.031003843992948532, + 0.03161357343196869, + -0.04484996199607849, + -0.04540412873029709, + 0.03736083582043648, + -0.03941119834780693, + 0.046560268849134445, + 0.06782236695289612, + -0.007151604630053043, + 0.006190061569213867, + -0.0480639673769474, + -0.01325832400470972, + -0.0532040074467659, + -0.035796698182821274, + 0.04211469739675522, + -0.07737305015325546, + -0.021204330027103424, + 0.06497734040021896, + -0.006173478439450264, + 0.053467415273189545, + 0.08731523156166077, + -0.014829223975539207, + 0.01237511821091175, + -0.03432018682360649, + 0.06123943626880646, + 0.030890505760908127, + 0.04312364384531975, + -0.050391796976327896, + -0.04214436933398247, + -0.0781245306134224, + 0.002477006521075964, + 0.10707930475473404, + -0.007563938852399588, + 0.05869622901082039, + -0.05373581126332283, + -0.0692751556634903, + 0.06647560745477676, + 0.02039271779358387, + -0.007774543482810259, + 0.08238482475280762, + -0.010386360809206963, + 0.0373007133603096, + -0.008488891646265984, + -1.9745121093706075e-08, + -0.05345568433403969, + -0.0364755317568779, + 0.08382155746221542, + 0.027715051546692848, + -0.021931985393166542, + -0.05291582643985748, + 0.08699791133403778, + -0.04356706887483597, + 0.00028249641763977706, + -0.06483590602874756, + 0.05543152242898941, + 0.00632680207490921, + -0.06638438254594803, + -0.023142274469137192, + 0.02853100560605526, + 0.0276984591037035, + -0.04404165595769882, + 0.07256186008453369, + -0.005038060713559389, + -0.06775601953268051, + -0.013537519611418247, + -0.03304653242230415, + 0.023120570927858353, + -0.08324897289276123, + 0.03219230845570564, + 0.013287359848618507, + -0.0705656185746193, + -0.035619549453258514, + 0.04096473753452301, + 0.007015117909759283, + 0.018907150253653526, + 0.009207524359226227, + 0.05685349926352501, + -0.007595290429890156, + -0.10196062177419662, + -0.039197880774736404, + -0.048534806817770004, + -0.031780827790498734, + -0.017426645383238792, + 0.03396305441856384, + -0.03665729612112045, + 0.048989687114953995, + -0.02809060364961624, + 0.00546409422531724, + -0.005126431584358215, + 0.05229626223444939, + 0.14685089886188507, + -0.023877371102571487, + -0.04066535457968712, + -0.07635574787855148, + -0.08537327498197556, + -0.0735921785235405, + 0.04005644842982292, + 0.1223098561167717, + 0.002079072641208768, + 0.03842439502477646, + 0.0860331654548645, + -0.004369849339127541, + 0.012976210564374924, + 0.050163958221673965, + 0.0765911415219307, + -0.01241909246891737, + -0.058357998728752136, + 0.01029081642627716 + ], + "camera-slash-bold||photography,pictures,lens,disabled": [ + -0.03478454053401947, + -0.036199599504470825, + -0.04609926789999008, + 0.005401784088462591, + 0.03634122386574745, + -0.07000022381544113, + 0.04605158418416977, + 0.026081617921590805, + 0.015893951058387756, + 0.0010359324514865875, + 0.11093446612358093, + 0.012108788825571537, + -0.0034691826440393925, + 0.08292579650878906, + -0.004933652002364397, + -0.00441114092245698, + 0.03413967415690422, + -0.012582122348248959, + -0.03796035796403885, + 0.07101397961378098, + -0.08155257999897003, + 0.0337040051817894, + 0.0627160370349884, + 0.002937327604740858, + 0.07822482287883759, + -0.0288610327988863, + 0.02334528975188732, + 0.014495383948087692, + -0.030047373846173286, + -0.057109005749225616, + -0.022055281326174736, + -0.0018590473337098956, + 0.09095128625631332, + 0.014492501504719257, + 0.08889225870370865, + 0.0036491528153419495, + -0.006038609892129898, + -0.05882817134261131, + 0.001603504060767591, + -0.014119668863713741, + -0.01917322352528572, + -0.05253516510128975, + -0.0005161921144463122, + -0.04014502838253975, + -0.022028975188732147, + -0.010286116041243076, + 0.025537043809890747, + -0.04424213618040085, + 0.00960570853203535, + -0.009481612592935562, + -0.04516260698437691, + -0.0042381552048027515, + -0.07174177467823029, + 0.0017951512709259987, + 0.04883912205696106, + 0.003426516195759177, + -0.09987067431211472, + 0.042249273508787155, + 0.06383413076400757, + 0.0024555507116019726, + -0.009596949443221092, + -0.01591179333627224, + 0.03994103521108627, + 0.02940208464860916, + 0.031156029552221298, + 0.059600409120321274, + 0.035942867398262024, + -0.05923094600439072, + -0.014364163391292095, + -0.02021106705069542, + 0.003790675662457943, + 0.021617531776428223, + -0.053158603608608246, + -0.01348709687590599, + -0.06484337896108627, + -0.0004912930307909846, + 0.002692965790629387, + -0.011352560482919216, + 0.02745174430310726, + -0.07032965868711472, + 0.027477269992232323, + -0.054020222276449203, + -0.004487217403948307, + 0.06755930185317993, + 0.07458028197288513, + 0.043232668191194534, + -0.05750005319714546, + -0.06785839051008224, + -0.014593999832868576, + -0.10508415102958679, + -0.10358661413192749, + -0.09112207591533661, + 0.02519972249865532, + 0.0060357870534062386, + -0.09128126502037048, + -0.06362376362085342, + 0.017458980903029442, + -0.004569404758512974, + -0.07711109519004822, + 0.07355014979839325, + 0.06303180754184723, + -0.004332016687840223, + -0.006231243256479502, + 0.03035711869597435, + 0.018539609387516975, + 0.009007846005260944, + 0.03705308213829994, + 0.02744561992585659, + -0.04175534099340439, + -0.028786802664399147, + -0.011788585223257542, + -0.008405511267483234, + -0.047881826758384705, + -0.05812757462263107, + -0.01870916225016117, + -0.01738865114748478, + -0.0799408107995987, + -0.048162441700696945, + 0.07547227293252945, + 0.053012676537036896, + -0.03426351398229599, + -0.07548218220472336, + -0.06888534128665924, + -0.06002466380596161, + 0.02138505131006241, + -0.0018251835135743022, + 0.06644157320261002, + -3.220584524894363e-33, + 0.09659156948328018, + 0.028446266427636147, + 0.05442092567682266, + 0.03206108510494232, + 0.05975310504436493, + -0.0023781536146998405, + -0.03921588510274887, + 0.022123824805021286, + -0.11945930123329163, + -0.050123557448387146, + 0.09236280620098114, + -0.009999522939324379, + -0.01951555907726288, + 0.038483213633298874, + 0.061128050088882446, + 0.02026895433664322, + 0.08509707450866699, + -0.0751381367444992, + -0.029944133013486862, + 0.03278685361146927, + 0.02405807562172413, + 0.06428194046020508, + -0.04528411850333214, + 0.04850862920284271, + -0.007615398615598679, + 0.010439598001539707, + 0.04768675938248634, + 0.021201204508543015, + 0.02913513034582138, + 0.046482153236866, + -0.029451828449964523, + 0.060485489666461945, + 0.04551335796713829, + -0.022719206288456917, + -0.004523046314716339, + 0.05815012380480766, + -0.030851265415549278, + 0.03173272684216499, + -0.03143926337361336, + 0.021499721333384514, + -0.06115370988845825, + -0.005273522809147835, + -0.10957670211791992, + -0.045922670513391495, + 0.01574397273361683, + 0.10718253999948502, + -0.016956733539700508, + -0.029686708003282547, + -0.08291317522525787, + 0.09476398676633835, + -0.03135699778795242, + -0.014224187470972538, + 0.0463157556951046, + -0.0023692057002335787, + -0.04751673713326454, + -0.030205244198441505, + -0.08691013604402542, + 0.013838095590472221, + -0.010733271017670631, + -0.0589950755238533, + 0.0649178996682167, + 0.014110930263996124, + -0.039915286004543304, + -0.013201524503529072, + -0.08316504955291748, + 0.049024347215890884, + -0.007314360700547695, + 0.08771880716085434, + -0.038868408650159836, + 0.021997783333063126, + -0.047135233879089355, + 0.010643472895026207, + 0.022667761892080307, + 0.017861099913716316, + 0.010358428582549095, + 0.052801620215177536, + -0.07916479557752609, + -0.06624669581651688, + -0.017216496169567108, + 0.017540274187922478, + -0.1751682013273239, + 0.028378186747431755, + 0.03017520345747471, + 0.0993720293045044, + -0.004448614548891783, + -0.04522702097892761, + -0.003096135100349784, + -0.01752779260277748, + -0.03569110482931137, + 0.03937570005655289, + 0.033987339586019516, + 0.045287035405635834, + -0.05253024399280548, + -0.0393243171274662, + -0.08057573437690735, + 1.8299010558036784e-33, + 0.07140474766492844, + 0.07455214112997055, + -0.10694576799869537, + -0.04874802008271217, + -0.07432826608419418, + -0.032147765159606934, + 0.046307019889354706, + 0.06552901118993759, + 0.05407300591468811, + -0.029856061562895775, + 0.07984279096126556, + -0.037298865616321564, + -0.05024469643831253, + -0.0770171582698822, + -0.012875248678028584, + -0.020079029724001884, + -0.05275567248463631, + -0.005002268124371767, + -0.05134730413556099, + 0.03874409943819046, + 0.0012106148060411215, + 0.012133965268731117, + 0.05955371633172035, + 0.0545576773583889, + -0.03217580169439316, + 0.11009432375431061, + 0.031590282917022705, + 0.03705974295735359, + -0.0036801344249397516, + -0.036139167845249176, + 0.04682626947760582, + 0.01072802022099495, + 0.026943830773234367, + -0.008900502696633339, + -0.022715391591191292, + 0.09407567977905273, + -0.0540546178817749, + -0.023936821147799492, + -0.00038816736196167767, + -0.04863281175494194, + -0.02624398097395897, + 0.007598706986755133, + 0.05653425306081772, + 0.07084811478853226, + -0.015175859443843365, + -0.043948929756879807, + -0.0027640191838145256, + -0.08441703021526337, + 0.030881287530064583, + 0.04090961813926697, + 0.008364365436136723, + -0.0019387452630326152, + 0.03366105258464813, + 0.03251039609313011, + -0.06182026490569115, + -0.042223624885082245, + -0.057348232716321945, + 0.008546294644474983, + -0.03140822798013687, + 0.12667563557624817, + 0.08446317166090012, + 0.042133722454309464, + -0.11197352409362793, + -0.018164096400141716, + 0.011250344105064869, + -0.05228542909026146, + 0.0021436605602502823, + 0.03312063589692116, + 0.05625889077782631, + 0.02244802750647068, + 0.022434350103139877, + 0.052912015467882156, + 0.1111331358551979, + 0.02962704934179783, + 0.09334978461265564, + -0.05453277751803398, + -0.08219576627016068, + 0.07686060667037964, + 0.0730087012052536, + 0.05552465468645096, + 0.04337356239557266, + -0.062297649681568146, + -0.03577082231640816, + 0.10703986138105392, + -0.0069130174815654755, + 0.005995833780616522, + -0.033375393599271774, + 0.013846258632838726, + 0.004723892081528902, + -0.10420176386833191, + -0.04811416566371918, + -0.0032417899928987026, + -0.03499295562505722, + 0.07793214172124863, + -0.06597449630498886, + -1.6835768334999557e-08, + -0.006376152858138084, + -0.05490453541278839, + -0.04252193123102188, + 0.02202330157160759, + 0.06749958544969559, + -0.07810309529304504, + -0.04150554537773132, + 0.00668212678283453, + 0.023478683084249496, + -0.05233254283666611, + 0.009220895357429981, + 0.004862377420067787, + -0.03239499405026436, + -0.042661868035793304, + 0.030891938135027885, + 0.026861943304538727, + -0.025982702150940895, + 0.07026346027851105, + -0.020430902019143105, + -0.023990273475646973, + -0.05429954081773758, + -0.03252233564853668, + 0.021893348544836044, + -0.008490966632962227, + 0.054225604981184006, + -0.037373896688222885, + -0.03157525509595871, + -0.03881951794028282, + 0.08492278307676315, + 0.030289025977253914, + 0.004901769571006298, + 0.023266516625881195, + 0.033945392817258835, + 0.06312830001115799, + -0.08880022913217545, + -0.013349516317248344, + -0.045952484011650085, + 0.0024534298572689295, + 0.018599266186356544, + 0.028063960373401642, + -0.0021709513384848833, + -0.05092111974954605, + 0.03564394265413284, + 0.0013513043522834778, + -0.004071639850735664, + 0.044588442891836166, + 0.1507432907819748, + 0.017577048391103745, + -0.09465894103050232, + -0.05845339596271515, + -0.07178909331560135, + 0.031950436532497406, + 0.016131635755300522, + 0.11586980521678925, + -0.04476736858487129, + -0.06216937303543091, + 0.12889209389686584, + 0.0307784304022789, + -0.05636586621403694, + 0.03079001046717167, + 0.11752115190029144, + -0.05065047740936279, + -0.06601911783218384, + 0.031858477741479874 + ], + "campfire-bold||camping,flame,bonfire,outdoors": [ + 0.03268415853381157, + 0.039228782057762146, + -0.014692514203488827, + 0.05432688072323799, + 0.0884859561920166, + -0.007042356301099062, + 0.12017294019460678, + -0.1027851328253746, + 0.00219837948679924, + 0.0053696888498961926, + -0.018843790516257286, + -0.020309818908572197, + 0.010531921871006489, + 0.0258506890386343, + 0.08218536525964737, + 0.06722428649663925, + -0.03325180336833, + 0.009652887471020222, + 0.01627001166343689, + -0.017811182886362076, + -0.0014285118086263537, + 0.06027744710445404, + 0.026621950790286064, + 0.06633197516202927, + 0.029769066721200943, + -0.0015969064552336931, + -0.03679778054356575, + 0.08681558072566986, + -0.015378746204078197, + -0.030256809666752815, + 0.008922644890844822, + 0.04767518490552902, + -0.0380018875002861, + 0.014402762055397034, + 0.08645226061344147, + -0.010281350463628769, + -0.04780510067939758, + 0.0017748543759807944, + -0.02471286803483963, + 0.07228363305330276, + 0.009793058037757874, + -0.012915818020701408, + -0.002644486492499709, + -0.005308192223310471, + -0.0843973234295845, + -0.03136441856622696, + -0.06036347895860672, + -0.07358196377754211, + -0.0015998441958799958, + -0.028541559353470802, + 0.04262075573205948, + -0.029185399413108826, + -0.1346454620361328, + 0.08547699451446533, + 0.012114323675632477, + -0.056053970009088516, + -0.060291826725006104, + -0.017606375738978386, + 0.04026768356561661, + -0.02675197273492813, + 0.044342633336782455, + 0.03706089034676552, + -0.03136653080582619, + 0.04387357458472252, + 0.002400024328380823, + -0.07256513088941574, + -0.0034619816578924656, + 0.006932845339179039, + 0.04216300696134567, + 0.016486933454871178, + 0.007619967684149742, + 0.05635327845811844, + 0.034262772649526596, + -0.10646773129701614, + -0.10173844546079636, + 0.023081596940755844, + 0.014739655889570713, + 0.03642464056611061, + -0.017646420747041702, + -0.10219086706638336, + -0.011752077378332615, + -0.024082766845822334, + 0.016223128885030746, + -0.02850445918738842, + -0.013472863472998142, + 0.08161690086126328, + -0.05942167341709137, + -0.012996722012758255, + 0.048767562955617905, + 0.03398573026061058, + -0.09360186755657196, + -0.02274940349161625, + -0.02051183395087719, + 0.08531279116868973, + -0.10508807003498077, + -0.01959213614463806, + 0.13473676145076752, + 0.03404448181390762, + -0.031732358038425446, + 0.04456298425793648, + 0.04016299545764923, + 0.04198902100324631, + -0.04400859773159027, + -0.011200427077710629, + -0.0050739990547299385, + -0.0686570405960083, + -0.050503648817539215, + 0.020120693370699883, + -0.02572537027299404, + -0.061286427080631256, + -0.009036489762365818, + -0.06285279244184494, + 0.021728897467255592, + -0.02211855538189411, + -0.03738006576895714, + -0.01778106391429901, + -0.029301464557647705, + -0.1000998467206955, + 0.030145414173603058, + 0.13821548223495483, + 0.007472907193005085, + -0.006791300140321255, + 0.06328320503234863, + 0.06671459227800369, + -0.00190034753177315, + 0.025658994913101196, + 0.007814436219632626, + -1.5822168655747375e-33, + 0.037732142955064774, + 0.08387617021799088, + -0.04825567454099655, + 0.09003050625324249, + 0.08504234254360199, + -0.022587398067116737, + -0.07889147847890854, + -0.06668738275766373, + -0.1283283829689026, + 0.10824048519134521, + -0.01228335127234459, + 0.10134255886077881, + -0.03282987326383591, + 0.04545091837644577, + 0.061644382774829865, + -0.0321202389895916, + -0.019414138048887253, + -0.052324116230010986, + -0.025363191962242126, + -0.06168479472398758, + -0.08664143085479736, + 0.04795631393790245, + -0.02611706592142582, + -0.05843077227473259, + -0.05402989313006401, + -0.01331737358123064, + -0.0019053424475714564, + 0.013398878276348114, + -0.03528660908341408, + 0.039358630776405334, + 0.08521998673677444, + -0.07308446615934372, + 0.04541773349046707, + -0.02118651382625103, + 0.05308397114276886, + 0.002984657883644104, + 0.010986476205289364, + -0.02949286624789238, + -0.06434496492147446, + -0.01532109547406435, + -0.10759574174880981, + -0.0059446352533996105, + -0.022774778306484222, + -0.009996606037020683, + 0.037554848939180374, + 0.06006627902388573, + -0.01083242055028677, + 0.05530499666929245, + -0.011723863892257214, + -0.012693507596850395, + -0.0527791902422905, + -9.141347254626453e-05, + 0.07608631998300552, + 0.013799075037240982, + -0.005206733010709286, + 0.04300597310066223, + -0.0009037340059876442, + 0.014547442086040974, + 0.00867930892854929, + 0.02870970405638218, + 0.03357681259512901, + 0.025112340226769447, + 0.007063011638820171, + -0.06809315830469131, + -0.007018167991191149, + -0.030504493042826653, + 0.006447948049753904, + 0.03574277088046074, + 0.0974285900592804, + -0.05402328446507454, + -0.010660821571946144, + 0.0355314202606678, + 0.10023220628499985, + 0.02735206112265587, + 0.013004817999899387, + 0.0019889292307198048, + 0.06351282447576523, + -0.00014258443843573332, + -0.05060829967260361, + -0.004004055634140968, + -0.11474182456731796, + -0.06940363347530365, + -0.08457174897193909, + 0.08938059955835342, + -0.021010911092162132, + -0.08889006078243256, + 0.01672157272696495, + -0.1044192835688591, + -0.035064395517110825, + 0.10692179203033447, + -0.09937459230422974, + 0.013432610780000687, + 0.057283226400613785, + -0.06648871302604675, + -0.033188916742801666, + 3.828044878322041e-34, + 0.025333723053336143, + 0.016067462041974068, + -0.015156173147261143, + -0.09625887125730515, + -0.017265409231185913, + 0.007592202629894018, + -0.025587189942598343, + -0.10220085084438324, + 0.015494373627007008, + 0.043937791138887405, + -0.07728438079357147, + 0.03691774234175682, + 0.018860619515180588, + -0.019393712282180786, + -0.011086574755609035, + -0.04470556601881981, + 0.009105432778596878, + 0.06451170891523361, + 0.03633103892207146, + 0.0464477613568306, + -0.02567802555859089, + 0.0033711218275129795, + -0.13752292096614838, + 0.03492135554552078, + -0.042658112943172455, + 0.08664385974407196, + 0.039141155779361725, + 0.019722677767276764, + -0.05569331720471382, + -0.055686499923467636, + 0.011136598885059357, + 0.0013659290270879865, + 0.02926703542470932, + 0.03415269777178764, + -0.04551190510392189, + 0.018508514389395714, + 0.08089200407266617, + -0.067776158452034, + 0.004458152689039707, + -0.0708579421043396, + 0.06715662777423859, + 0.05181249603629112, + -0.0029789407271891832, + 0.017012478783726692, + -0.05159778520464897, + 0.007208910770714283, + -0.0310988649725914, + -0.02014191634953022, + 0.02298791892826557, + 0.10268574953079224, + -0.02096388302743435, + -0.08462382107973099, + -0.12257351726293564, + 0.010524408891797066, + -0.012034125626087189, + -0.07804138213396072, + -0.05069340020418167, + -0.013840732164680958, + -0.06495288014411926, + 0.10364484786987305, + 0.0868731215596199, + -0.00993063673377037, + 0.0008866047719493508, + 0.09323785454034805, + 0.017514560371637344, + -0.049501631408929825, + -0.02003658190369606, + -0.008479095064103603, + 0.04715995863080025, + 0.04020298272371292, + -0.03935570642352104, + 0.00046262715477496386, + -0.0654749870300293, + 0.05216598138213158, + 0.02643810212612152, + -0.025079984217882156, + 0.053685180842876434, + -0.009788922034204006, + -0.007809008471667767, + -0.010879910551011562, + -0.03938167169690132, + 0.006983650382608175, + -0.1094227209687233, + 0.04242071136832237, + 0.02254704385995865, + -0.014016436412930489, + 0.009532853029668331, + 0.0896817073225975, + -0.010408339090645313, + -0.06189337745308876, + 0.03737373277544975, + 0.04140922427177429, + 0.041527897119522095, + -0.03300687298178673, + -0.06540339440107346, + -1.6082433162978305e-08, + -0.03676093742251396, + 0.010942849330604076, + -0.02900085225701332, + 0.02212582714855671, + 0.03390206769108772, + -0.01411806046962738, + 0.05505527928471565, + -0.07950760424137115, + -0.060982655733823776, + -0.04553433507680893, + 0.03728329762816429, + 0.02400609664618969, + 0.049734313040971756, + 0.0007299169665202498, + 0.020529868081212044, + 0.01141152624040842, + -0.018250996246933937, + -0.006129168905317783, + -0.023709667846560478, + -0.03334338963031769, + -0.02368505671620369, + 0.04605810344219208, + 0.03572343662381172, + 0.006203946657478809, + 0.02127161994576454, + 0.012459113262593746, + -0.03357801213860512, + 0.008901269175112247, + 0.10667623579502106, + 0.11812359094619751, + 0.08729643374681473, + 0.04160129651427269, + -0.007949643768370152, + 0.02166648395359516, + -0.06543094664812088, + -0.011146070435643196, + -0.012124252505600452, + 0.0415487103164196, + -0.07617347687482834, + 0.06939774751663208, + -0.004777370952069759, + -0.04014584794640541, + 0.0445038340985775, + -0.04753858596086502, + -0.056118689477443695, + -0.013668222352862358, + 0.025158977136015892, + -0.029940813779830933, + -0.059432756155729294, + -0.048375047743320465, + 0.022453976795077324, + -0.04774656519293785, + 0.03042929619550705, + 0.03930637240409851, + 0.01804526522755623, + -0.03431648761034012, + 0.04693364351987839, + 0.10977602750062943, + 0.055627014487981796, + -0.02242637425661087, + 0.0680772066116333, + -0.015489489771425724, + -0.027974406257271767, + -0.009665804915130138 + ], + "car-bold||*updated*,cars,vehicles,automobile,transit,transportation,traveling": [ + 0.03643763065338135, + -0.06682566553354263, + 0.039681658148765564, + 0.056078918278217316, + 0.00391358369961381, + 0.005003388971090317, + 0.03442030027508736, + -0.03249631077051163, + -0.06839277595281601, + -0.015077855437994003, + 0.04597235098481178, + 0.03312322124838829, + 0.026207881048321724, + -0.018072698265314102, + -0.05153166502714157, + 0.0057967426255345345, + 0.07677067071199417, + 0.0016235864022746682, + -0.009405187331140041, + 0.024616871029138565, + -0.02364414371550083, + 0.05025763064622879, + 0.01823960617184639, + 0.08681922405958176, + 0.06135997921228409, + 0.024355532601475716, + 0.02173488959670067, + -0.002422885736450553, + -0.03240299969911575, + -0.03506629914045334, + -0.09541643410921097, + 0.05652959272265434, + 0.045931123197078705, + 0.014744749292731285, + 0.0188938919454813, + -0.0694495365023613, + 0.01134397741407156, + -0.01619098335504532, + 0.02366102673113346, + 0.005005257204174995, + 0.008800511248409748, + -0.10187771916389465, + -0.02489953301846981, + 0.03920859470963478, + -0.0033634572755545378, + -0.04526405408978462, + 0.011628285050392151, + -0.003792966715991497, + -0.00563078885897994, + -0.03464879095554352, + -0.017033051699399948, + -0.07234872877597809, + -0.09474257379770279, + 0.01840684749186039, + -0.057961683720350266, + -0.015010958537459373, + -0.056947626173496246, + 0.02765868976712227, + 0.015601078979671001, + 0.03650188818573952, + 0.028692154213786125, + -0.0016511264257133007, + 0.02223784662783146, + 0.08805613219738007, + 0.013220728375017643, + -0.013290437869727612, + -0.00022090564016252756, + -0.00877037737518549, + -0.03917653113603592, + 0.05453180521726608, + 0.06794588267803192, + 0.031137745827436447, + -0.01054284255951643, + 0.009481850080192089, + -0.03914094716310501, + -0.05868492275476456, + 0.07878165692090988, + 0.0326339527964592, + 0.02075105905532837, + -0.10049460828304291, + -0.014515065588057041, + -0.04674258455634117, + -0.03377595543861389, + -0.06304102391004562, + 0.037792764604091644, + 0.005004022736102343, + -0.07542600482702255, + -0.05356424301862717, + -0.09858887642621994, + -0.012409298680722713, + -0.04719925299286842, + -0.08006175607442856, + 0.04231544956564903, + -0.0014681331813335419, + -0.1216210201382637, + 0.047872405499219894, + 0.030085405334830284, + -0.022904949262738228, + 0.02633538655936718, + 0.07626761496067047, + 0.04356473684310913, + 0.07114577293395996, + 0.05006861314177513, + 0.061938509345054626, + -0.11998347193002701, + 0.03409237042069435, + -0.030147535726428032, + 0.023716332390904427, + -0.018987057730555534, + 0.0162364412099123, + 0.011799180880188942, + -0.052554283291101456, + -0.04999448359012604, + -0.06657920032739639, + -0.13567237555980682, + -0.01955997757613659, + -0.050770822912454605, + -0.0009256709017790854, + 0.11201567202806473, + 0.08631065487861633, + -0.05290105938911438, + -0.07180008292198181, + 0.025726990774273872, + -0.02505153976380825, + -0.024662332609295845, + -0.025500375777482986, + 0.02700694091618061, + -4.860076250686963e-33, + -0.04547985643148422, + 0.010554195381700993, + 0.021646594628691673, + 0.1301030069589615, + -0.011962088756263256, + -0.01913670264184475, + -0.10736561566591263, + -0.027722632512450218, + -0.06032700464129448, + -0.003137334482744336, + 0.06804239004850388, + 0.08047791570425034, + -0.025536945089697838, + 0.03269844502210617, + 0.058860696852207184, + 0.012631912715733051, + -0.060398731380701065, + -0.014351893216371536, + -0.05183958634734154, + -0.000997342518530786, + -0.02883814089000225, + 0.05181756988167763, + 0.011701753363013268, + -0.040958575904369354, + 0.00907098688185215, + -0.024362817406654358, + -0.008790789172053337, + -0.0425664521753788, + 0.001841244986280799, + 0.04902106523513794, + 0.003809145651757717, + 0.1156194657087326, + 0.03613903373479843, + 0.023528626188635826, + -0.05343843623995781, + 0.0050699771381914616, + -0.08629500865936279, + -0.0884096696972847, + -0.03803100064396858, + -0.013484823517501354, + -0.04487919062376022, + -0.05581529065966606, + -0.09208803623914719, + 0.012310798279941082, + 0.05607631057500839, + 0.1246834397315979, + 0.009097405709326267, + -0.06366515159606934, + 0.020000021904706955, + 0.06515692174434662, + -0.05169019475579262, + -0.03191385790705681, + -0.055668871849775314, + -0.07286235690116882, + -0.013648726046085358, + 0.042862724512815475, + 0.0021381822880357504, + 0.06267114728689194, + 0.008567215874791145, + -0.045597705990076065, + -0.018039729446172714, + 0.03489740192890167, + 0.0694996565580368, + -0.050392936915159225, + 0.01390621904283762, + 0.07027839869260788, + -0.047735899686813354, + 0.032388605177402496, + 0.06595003604888916, + 0.04763510078191757, + 0.011181899346411228, + 0.037822697311639786, + -0.005927991587668657, + 0.09304169565439224, + 0.056631047278642654, + 0.02733897604048252, + -0.07967492192983627, + -0.021774716675281525, + -0.01782125048339367, + -0.03649285063147545, + -0.12813760340213776, + 0.006342332344502211, + -0.06905651837587357, + 0.11912979185581207, + 0.10966251790523529, + 0.03933604061603546, + -0.010805761441588402, + -0.08536228537559509, + 0.023729171603918076, + 0.03488106280565262, + -0.08982652425765991, + 0.019630776718258858, + -0.05599971115589142, + -0.014246786944568157, + -0.07061950862407684, + -6.8177120327807605e-34, + 0.04424743354320526, + 0.012651883997023106, + -0.038419194519519806, + -0.00480213388800621, + -0.029439648613333702, + -0.006525031756609678, + -0.03403322398662567, + 0.02473594807088375, + 0.08792989701032639, + 0.0642128735780716, + -0.021227078512310982, + -0.019879605621099472, + -0.02628581039607525, + -0.044116754084825516, + 0.0212536808103323, + -0.02053826116025448, + 0.08108403533697128, + 0.002307170769199729, + -0.08779856562614441, + 0.0541200116276741, + -0.06761447340250015, + -0.04783359915018082, + -0.05698636174201965, + 0.055619362741708755, + 0.014582926407456398, + 0.015158998779952526, + -0.03111341968178749, + -0.019727956503629684, + -0.025661712512373924, + -0.04834115505218506, + -0.05384894087910652, + -0.03519047424197197, + 0.05518029257655144, + 0.029880307614803314, + -0.06735946238040924, + 0.0677189975976944, + 0.03673134744167328, + -0.05688918009400368, + -0.01658327504992485, + 0.029435237869620323, + 0.0033487780019640923, + -0.016552720218896866, + 0.08194558322429657, + 0.08129347115755081, + 0.013277321122586727, + -0.04494152590632439, + -0.09289029985666275, + -0.02761007472872734, + -0.037256453186273575, + 0.04520564526319504, + 0.10122242569923401, + -0.002978699980303645, + -0.02885010465979576, + 0.04861689731478691, + 0.0009933406254276633, + 0.02999250777065754, + 0.0469333715736866, + -0.01821868307888508, + -0.052345212548971176, + 0.04692737013101578, + 0.011990539729595184, + 0.06894142925739288, + -0.04261142387986183, + 0.032952744513750076, + -0.005676932632923126, + -0.15782029926776886, + -0.025253722444176674, + -0.0762324184179306, + 0.05388655513525009, + -0.0703386589884758, + 0.08243001997470856, + -0.0271617341786623, + -0.0959840938448906, + 0.032126232981681824, + -0.020419776439666748, + -0.06183554232120514, + 0.11923433840274811, + 0.07065249979496002, + 0.017727170139551163, + -0.0037668568547815084, + -0.018929582089185715, + -0.015652701258659363, + -0.007619789801537991, + 0.09248781949281693, + -0.0577242374420166, + 0.029589688405394554, + -0.038295257836580276, + -0.06069071590900421, + 0.04517301544547081, + 0.012173596769571304, + -0.034641195088624954, + 0.055437542498111725, + -0.05931484326720238, + -0.01802564226090908, + -0.15156163275241852, + -2.4801233067250905e-08, + 0.025196252390742302, + 0.02915152534842491, + -0.07229789346456528, + -0.012988862581551075, + 0.03616179898381233, + -0.025556491687893867, + -0.02461080066859722, + -0.006997360847890377, + -0.10822229832410812, + 0.013283902779221535, + 0.02318618819117546, + 0.03508530557155609, + -0.014106253162026405, + 0.02423693984746933, + 0.02899806573987007, + 0.009261910803616047, + -0.036294594407081604, + 0.04533180221915245, + -0.06296024471521378, + -0.047098323702812195, + -0.038652874529361725, + 0.045585259795188904, + 0.0057649752125144005, + 0.06034555286169052, + 0.046286556869745255, + -0.016237681731581688, + -0.05310463160276413, + -0.01439366489648819, + 0.104123055934906, + -0.01629551686346531, + 0.005280362442135811, + 0.07087163627147675, + 0.012286925688385963, + -0.011293318122625351, + -0.0791645422577858, + -0.03127951920032501, + 0.025782296434044838, + 0.0260189026594162, + -0.007429465651512146, + 0.05023205280303955, + 0.052111104130744934, + -0.01525734644383192, + -0.00035390694392845035, + -0.004931280855089426, + 0.03931373357772827, + 0.00914981309324503, + -0.02024492248892784, + -0.02266232669353485, + -0.08297328650951385, + -0.0757974162697792, + -0.06585607677698135, + -0.018896054476499557, + -0.019119743257761, + 0.10286568850278854, + -0.012163273058831692, + -0.05484013259410858, + 0.006794846151024103, + 0.014890816062688828, + -0.0026848355773836374, + -0.02227994054555893, + 0.1252261847257614, + 0.013614838942885399, + 0.03477488458156586, + 0.05115259066224098 + ], + "car-battery-bold||*new*,charged,charger,charging,power,voltage,electricity": [ + -0.06751508265733719, + 0.08845770359039307, + -0.05884827673435211, + 0.010968869552016258, + 0.008395571261644363, + -0.0013052427675575018, + 0.0426042303442955, + -0.025106145069003105, + -0.01264328695833683, + 0.0027234824374318123, + 0.10180513560771942, + -0.04926610365509987, + 0.06056837737560272, + 0.03439712896943092, + -0.015596834011375904, + 0.009446262381970882, + -0.0016462728381156921, + 0.004466802813112736, + -0.014572094194591045, + 0.054863445460796356, + 0.010860941372811794, + 0.032393839210271835, + 0.05395883694291115, + 0.0170685313642025, + 0.0989866554737091, + 0.06951066106557846, + 0.02630024217069149, + 0.018172767013311386, + -0.02803761512041092, + -0.10742536187171936, + -0.041219618171453476, + -0.002289442578330636, + 0.10672885924577713, + -0.013197237625718117, + 0.051821354776620865, + -0.021674057468771935, + -0.01274183765053749, + 0.03069022111594677, + 0.0014501651749014854, + 0.018178768455982208, + -0.0011593860108405352, + -0.07523064315319061, + 0.010595711879432201, + 0.0561676099896431, + -0.014844108372926712, + 0.030489368364214897, + 0.03903136029839516, + 0.024855123832821846, + 0.03163287788629532, + -0.04937955364584923, + 0.01889766938984394, + -0.08056406676769257, + -0.10385529696941376, + -0.016817612573504448, + -0.04869689419865608, + 0.006925744935870171, + -0.03784768655896187, + 0.027390435338020325, + 0.034864507615566254, + -0.031857412308454514, + 0.0007757646380923688, + 0.022394634783267975, + 0.06148523464798927, + 0.05873182788491249, + -0.029923144727945328, + -0.03469904512166977, + 0.012336130253970623, + 0.028475286439061165, + -0.04848949983716011, + 0.0586874894797802, + 0.02016323432326317, + 0.008295617066323757, + -0.03567137569189072, + -0.06670168787240982, + -0.0816209688782692, + -0.04005966708064079, + 0.020916445180773735, + 0.07658267021179199, + -0.009657444432377815, + -0.027373727411031723, + -0.015179496258497238, + -0.07905445992946625, + -0.07150451838970184, + -0.00388603494502604, + 0.060422759503126144, + 0.04495931416749954, + 0.014140956103801727, + -0.0995851382613182, + -0.048858437687158585, + -0.01972181163728237, + -0.08731795847415924, + 0.017608512192964554, + 0.018693063408136368, + -0.010977317579090595, + -0.12121649086475372, + 0.08981877565383911, + 0.05725359544157982, + -0.038673035800457, + -0.009535028599202633, + 0.07007046043872833, + 0.10203155130147934, + 0.04975539445877075, + 0.04988060146570206, + -0.02240092307329178, + -0.05492449551820755, + -0.01730523630976677, + -0.042118821293115616, + 0.03892407938838005, + 0.0293791051954031, + 0.016167333349585533, + 0.03803005814552307, + -0.06019864231348038, + -0.02166718617081642, + -0.048991892486810684, + -0.044751230627298355, + 0.025780655443668365, + -0.10127770900726318, + -0.011096515692770481, + 0.12148971855640411, + 0.07688462734222412, + 0.04064411297440529, + -0.0659058690071106, + -0.024151744320988655, + -0.03913240507245064, + -0.0291035994887352, + 0.01284864079207182, + 0.07502283155918121, + -4.2271089096256396e-33, + 0.005326971877366304, + -0.0027813417837023735, + 0.03030279651284218, + 0.08592536300420761, + -0.009198252111673355, + 0.057166021317243576, + -0.04472130164504051, + 0.05413256585597992, + -0.0161819439381361, + 0.026645004749298096, + 0.03786022216081619, + 0.05761437118053436, + 0.061212360858917236, + 0.06942860037088394, + 0.047369807958602905, + 0.013951458036899567, + -0.04008837044239044, + -0.0679299458861351, + -0.0036270872224122286, + -0.03185270354151726, + -0.062359996140003204, + 0.11041965335607529, + 0.025263026356697083, + 0.025568773970007896, + 0.03917776793241501, + -0.012925427407026291, + 0.08014228194952011, + -0.07458000630140305, + -0.050428356975317, + 0.007761825807392597, + 0.05511253699660301, + 0.10854408144950867, + -0.00343566806986928, + 0.05124448612332344, + -0.06620581448078156, + 0.07954620569944382, + 0.030479716137051582, + -0.03168530762195587, + 0.027675125747919083, + -0.09582499414682388, + -0.04641611874103546, + -0.013631541281938553, + -0.06226900592446327, + -0.02700052224099636, + 0.015761544927954674, + 0.011696277186274529, + -0.025690434500575066, + -0.0486578494310379, + -0.015960173681378365, + 0.054742082953453064, + -0.11305166780948639, + -0.06086312234401703, + 0.03927520290017128, + -0.0016462871572002769, + 0.004161929711699486, + 0.07209412008523941, + -0.0664977952837944, + 0.07871531695127487, + 0.015136050060391426, + -0.021452641114592552, + -0.0036766123957931995, + 0.0572056882083416, + -0.013832217082381248, + -0.05482104420661926, + -0.059399425983428955, + 0.028558744117617607, + -0.08634702861309052, + -0.043640539050102234, + 0.01394203957170248, + 0.061077360063791275, + -0.0019116003531962633, + 0.007814865559339523, + 0.003992166835814714, + 0.028690187260508537, + 0.025668766349554062, + 0.07660777866840363, + 0.011684264987707138, + -0.008806828409433365, + -0.007211726158857346, + -0.08700107783079147, + -0.08818041533231735, + 0.0012671741424128413, + -0.031498976051807404, + 0.06072750687599182, + 0.0005277269519865513, + -0.004757584538310766, + -0.04232233762741089, + -0.0588536374270916, + 0.035918980836868286, + 0.06131087988615036, + -0.029337072744965553, + -0.027534009888768196, + -0.04474338889122009, + -0.07090510427951813, + -0.03252357244491577, + -1.3296607793157411e-34, + 0.05199592560529709, + 0.036663901060819626, + 0.0016553326277062297, + -0.010948630049824715, + -0.013284112326800823, + 0.029662922024726868, + -0.07179825752973557, + -0.022801324725151062, + -0.01412235852330923, + 0.008724698796868324, + -0.022454004734754562, + 0.0026230590883642435, + -0.04553726688027382, + -0.05752721428871155, + 0.05715218558907509, + 0.040606651455163956, + -0.0074649378657341, + -0.018286285921931267, + -0.015370397828519344, + 0.050954706966876984, + -0.026394063606858253, + 0.04684103652834892, + -0.048986803740262985, + 0.06108583137392998, + 0.06433328986167908, + 0.006982195191085339, + 0.02616863138973713, + -0.06218213960528374, + 0.04650143161416054, + -0.0262947678565979, + 0.0028012958355247974, + -0.07012088596820831, + 0.06395108997821808, + 0.08475887775421143, + -0.06837555021047592, + -0.02663366124033928, + 0.08865418285131454, + -0.05236996337771416, + -0.02282940223813057, + 0.029256552457809448, + -0.012122641317546368, + -0.06431270390748978, + 0.03654703125357628, + 0.04882574453949928, + -0.03826778382062912, + -0.08440632373094559, + -0.09666028618812561, + -0.022979987785220146, + -0.03303168714046478, + 0.07058040797710419, + 0.014870843850076199, + -0.11468581855297089, + -0.06532388925552368, + 0.023808473721146584, + -0.07054216414690018, + -0.026085956022143364, + 0.04120289534330368, + -0.0007808095542714, + -0.038786984980106354, + 0.017966559156775475, + 0.04505220800638199, + -0.011714424937963486, + -0.03958924114704132, + -0.010569418780505657, + -0.11043381690979004, + -0.1349150538444519, + 0.004394516348838806, + -0.0005600516451522708, + 0.03770974278450012, + -0.07744938135147095, + 0.04271415248513222, + 0.014728616923093796, + -0.02100217342376709, + -0.053014423698186874, + -0.07254604250192642, + -0.10951315611600876, + 0.015170239843428135, + -0.05485286936163902, + -0.018380075693130493, + -0.07537046074867249, + 0.06075141951441765, + -0.012516793794929981, + 0.0317840613424778, + -0.02260936051607132, + -0.04146059602499008, + -0.008397577330470085, + 0.010166110470890999, + 0.03143680840730667, + 0.038230616599321365, + -0.01408741157501936, + -0.017424367368221283, + 0.08814655989408493, + -0.06935741752386093, + 0.11208118498325348, + -0.13166412711143494, + -2.3812127381006576e-08, + 0.009225815534591675, + 0.050270479172468185, + -0.07037785649299622, + -0.03622599318623543, + 0.04567103087902069, + -0.04152451455593109, + -0.027624960988759995, + -0.015923360362648964, + -0.07435304671525955, + -0.0407722070813179, + 0.10352946817874908, + 0.00315601984038949, + 0.02794572338461876, + -0.019181231036782265, + 0.029073864221572876, + 0.07594416290521622, + -0.011542868800461292, + 0.08906988054513931, + -0.039666127413511276, + 0.012201858684420586, + -0.05571701377630234, + 0.08592177927494049, + -0.028754588216543198, + 0.029702605679631233, + 0.09392368793487549, + 0.013606827706098557, + -0.02859700657427311, + -0.03138485178351402, + 0.08154480904340744, + -0.015191652812063694, + 0.01226193830370903, + 0.09839370101690292, + 0.05011634901165962, + -0.020346220582723618, + -0.10137464106082916, + -0.06820424646139145, + -0.016754891723394394, + -0.06661282479763031, + -0.003998503554612398, + 0.009432588703930378, + 0.03394309803843498, + -0.06440076231956482, + -0.056587062776088715, + -0.015453094616532326, + -0.0436280332505703, + -0.03117339313030243, + 0.05380586162209511, + -0.07610204070806503, + -0.06742406636476517, + -0.025185460224747658, + -0.05406227335333824, + 0.029170336201786995, + -0.01921653561294079, + 0.08510090410709381, + -0.022142957895994186, + 0.04440061375498772, + -0.03523234277963638, + 0.051101669669151306, + -0.01581297628581524, + -0.04133979603648186, + 0.1355026811361313, + 0.010181962512433529, + 0.0683559775352478, + 0.022308772429823875 + ], + "car-profile-bold||cars,vehicles,automobile,transit,transportation,traveling": [ + 0.07208054512739182, + -0.06134052574634552, + 0.03043711557984352, + 0.05869825556874275, + 0.01885795406997204, + 0.04167263209819794, + 0.047233160585165024, + 0.03660529479384422, + -0.11632596701383591, + -0.07220295071601868, + 0.043777551501989365, + -0.021520446985960007, + 0.046989548951387405, + 0.026899537071585655, + -0.04246533662080765, + -0.018779464066028595, + 0.058377545326948166, + 0.020126108080148697, + 0.018498850986361504, + 0.015318571589887142, + -0.02912096679210663, + -0.002833738923072815, + 0.0245991088449955, + 0.04977089539170265, + 0.03688677400350571, + 0.01008368469774723, + 0.03729880601167679, + 0.012890306301414967, + -0.04903874918818474, + -0.02317647822201252, + -0.052062105387449265, + 0.08448902517557144, + 0.014957425184547901, + 0.012922078371047974, + -0.007687197998166084, + -0.0885510966181755, + 0.010724459774792194, + -0.00492562260478735, + 0.006201097741723061, + -0.0034245112910866737, + -0.002652927301824093, + -0.10410920530557632, + -0.05003742128610611, + 0.04925468564033508, + 0.011459937319159508, + -0.05804287642240524, + 0.04122989624738693, + 0.008652612566947937, + -0.050540659576654434, + -0.04085967689752579, + -0.027978960424661636, + -0.0569615475833416, + -0.08748878538608551, + 0.05356878042221069, + -0.013646980747580528, + 0.0029304414056241512, + -0.051813919097185135, + 0.023234382271766663, + 0.016059771180152893, + 0.03734154626727104, + -0.012831947766244411, + -0.03244484215974808, + -0.02822723612189293, + 0.08388501405715942, + 0.03838309645652771, + 0.009229839779436588, + -0.02523333951830864, + 0.029924383386969566, + -0.044834382832050323, + 0.07799430191516876, + 0.04074094071984291, + -0.004096470773220062, + -0.027819296345114708, + 0.005532710812985897, + 0.02156784199178219, + -0.05757197365164757, + 0.034110747277736664, + 0.040179844945669174, + -0.0037215673364698887, + -0.1029292419552803, + -0.027816936373710632, + -0.03543714061379433, + -0.03163183853030205, + -0.031350329518318176, + 0.015360317192971706, + -0.00205195602029562, + -0.051526300609111786, + -0.10492187738418579, + -0.10185598582029343, + 0.016458025202155113, + -0.05715079605579376, + -0.04862257465720177, + 0.051280245184898376, + -0.014088312163949013, + -0.10695672780275345, + 0.032756317406892776, + 0.031754568219184875, + -0.0789317786693573, + 0.08400242775678635, + 0.05208182334899902, + 0.0021059117279946804, + 0.021880220621824265, + 0.08726126700639725, + 0.1208120658993721, + -0.11264157295227051, + 0.003625371027737856, + -0.026345452293753624, + 0.016919579356908798, + -0.003569885855540633, + 0.023927312344312668, + 0.021613016724586487, + -0.03828970715403557, + -0.031296733766794205, + -0.0422377735376358, + -0.05937798321247101, + -0.025608303025364876, + -0.02620474062860012, + 0.010620053857564926, + 0.12074915319681168, + 0.08535068482160568, + -0.04255085811018944, + -0.06177555397152901, + 0.051565978676080704, + -0.040801871567964554, + -0.038928546011447906, + -0.01963188499212265, + 0.03631610423326492, + -4.702090911962401e-33, + -0.0039491066709160805, + 0.0014082553097978234, + 0.014687146991491318, + 0.13676132261753082, + -0.016660470515489578, + -0.025083281099796295, + -0.11241414397954941, + -0.007759891450405121, + -0.021615535020828247, + 0.025490159168839455, + 0.05371769145131111, + 0.07890166342258453, + -0.035366952419281006, + 0.10291394591331482, + 0.07786890119314194, + 0.04719190672039986, + -0.0480116531252861, + 0.014546841382980347, + -0.07517819851636887, + -0.008895904757082462, + -0.02494344301521778, + 0.07532510161399841, + -0.0008156144176609814, + -0.04860292747616768, + 0.042769260704517365, + -0.0252468790858984, + 0.019333627074956894, + -0.05781456455588341, + -0.01672191172838211, + 0.053788360208272934, + 0.01246791984885931, + 0.11496815830469131, + 0.02979590930044651, + 0.0438632071018219, + -0.013201742433011532, + 0.03159584105014801, + -0.08159862458705902, + -0.06893124431371689, + -0.01644081622362137, + -0.002870148280635476, + -0.028527168557047844, + -0.06084771826863289, + -0.058490581810474396, + 0.010443262755870819, + -0.028072290122509003, + 0.11333329230546951, + 0.04871407151222229, + -0.05073923617601395, + -0.005437674466520548, + 0.07581081241369247, + -0.041646409779787064, + -0.06940756738185883, + -0.04231203719973564, + -0.05415677651762962, + -0.02170388773083687, + 0.04887043312191963, + -0.03770076483488083, + 0.047706715762615204, + -0.024543125182390213, + -0.0063553075306117535, + -0.01764325238764286, + 0.043676119297742844, + 0.060483116656541824, + -0.0872587040066719, + 0.015489852987229824, + 0.0469115674495697, + -0.08824023604393005, + 0.011972962878644466, + 0.0664275512099266, + 0.0705510824918747, + -0.000980579643510282, + 0.06523782759904861, + 0.009802703745663166, + 0.03716699033975601, + 0.06016615033149719, + 0.034628573805093765, + -0.04383404180407524, + 0.015603814274072647, + -0.07757402956485748, + 0.018213052302598953, + -0.14394739270210266, + 0.0760812908411026, + -0.0736900046467781, + 0.0460926815867424, + 0.08378497511148453, + 0.028368791565299034, + 0.011797006241977215, + -0.11021178960800171, + 0.013700993731617928, + 0.02013993076980114, + -0.07248801738023758, + 0.016119034960865974, + -0.015970991924405098, + 0.008831270970404148, + -0.09804980456829071, + -2.283435888203199e-34, + 0.010651654563844204, + -0.010181422345340252, + 0.011809165589511395, + -0.014475971460342407, + 0.01875755377113819, + -0.005235325079411268, + -0.014483417384326458, + 0.04660632088780403, + 0.05376901105046272, + 0.08731383085250854, + -0.06548920273780823, + -0.018739700317382812, + 0.009758836589753628, + -0.06862480938434601, + 0.06254435330629349, + -0.030358392745256424, + 0.04778009653091431, + -0.022810475900769234, + -0.07272318005561829, + 0.04724019020795822, + -0.034186262637376785, + -0.06425106525421143, + -0.06872223317623138, + 0.022716494277119637, + -0.01817231811583042, + 0.01864621974527836, + -0.0636572390794754, + -0.043307092040777206, + -0.03338609263300896, + -0.03119005635380745, + -0.027960876002907753, + -0.03900386765599251, + 0.026392100378870964, + 0.00023065856657922268, + -0.08937432616949081, + 0.08142964541912079, + -0.022711411118507385, + -0.04358915239572525, + -0.04119272902607918, + 0.008707049302756786, + -0.010557672008872032, + -0.02266811393201351, + 0.048067331314086914, + 0.061865467578172684, + 0.0309362281113863, + -0.0591462142765522, + -0.03721059858798981, + -0.04079771041870117, + -0.0135345458984375, + 0.03141585737466812, + 0.11290724575519562, + 0.03766682744026184, + -0.01955721341073513, + 0.08642123639583588, + -0.013586720451712608, + 0.01580023393034935, + 0.08357350528240204, + -0.01577756740152836, + -0.01743059605360031, + 0.03437910974025726, + 0.052289269864559174, + 0.04744108393788338, + -0.03149587661027908, + 0.048750486224889755, + -0.035125862807035446, + -0.17627903819084167, + -0.008940075524151325, + -0.07424645870923996, + 0.014897129498422146, + -0.07378986477851868, + 0.01893673837184906, + -0.016284076496958733, + -0.0536612905561924, + 0.01137823611497879, + -0.03541089966893196, + -0.0796443372964859, + 0.08345314860343933, + 0.05772317200899124, + -0.005851404741406441, + 0.016749389469623566, + 0.0016597835347056389, + -0.011849788017570972, + -0.031673189252614975, + 0.08801596611738205, + -0.02259882539510727, + 0.0287015400826931, + -0.08589659631252289, + -0.05275335535407066, + 0.06376662105321884, + 0.014455193653702736, + 0.0023679558653384447, + 0.05007285997271538, + -0.12192002683877945, + 0.0027996639255434275, + -0.14987486600875854, + -2.206747851118962e-08, + 0.026067638769745827, + -0.0003196180041413754, + -0.05942947044968605, + -0.005646613892167807, + -0.016089018434286118, + 0.018611805513501167, + -0.027005482465028763, + -0.006243011448532343, + -0.09728570282459259, + 0.06097935512661934, + 0.05031043291091919, + 0.046826012432575226, + -0.0399438738822937, + 0.04795624315738678, + 0.009013956412672997, + -0.030066998675465584, + -0.022677186876535416, + 0.0394132062792778, + -0.053751926869153976, + 0.0008268075762316585, + -0.032444294542074203, + 0.04165990278124809, + -0.02848900482058525, + 0.060882553458213806, + 0.05649970471858978, + -0.046422794461250305, + -0.0393388606607914, + -0.008483514189720154, + 0.07582450658082962, + -0.007055307272821665, + -0.0016115886392071843, + 0.10200592130422592, + 0.01903209462761879, + -0.06397396326065063, + -0.048177752643823624, + -0.02423888072371483, + -0.001591028063558042, + 0.03549204766750336, + -0.047808654606342316, + 0.043759509921073914, + 0.10011845082044601, + -0.02930082380771637, + 0.014072401449084282, + 0.026325775310397148, + 0.049157194793224335, + 0.020263314247131348, + 0.023373214527964592, + -0.01242862269282341, + -0.033996932208538055, + -0.05075744912028313, + -0.08684920519590378, + -0.03329327329993248, + -0.01842363551259041, + 0.08995368331670761, + -0.025664381682872772, + -0.06295772641897202, + -0.01040995866060257, + 0.02054554596543312, + -0.008129279129207134, + -0.02551325038075447, + 0.09906655550003052, + 0.048666857182979584, + 0.04504258930683136, + 0.017846131697297096 + ], + "car-simple-bold||cars,vehicles,automobile,transit,transportation,traveling": [ + 0.05406874045729637, + -0.06089082732796669, + 0.03018076717853546, + 0.06771755963563919, + 0.01759682036936283, + 0.013503295369446278, + 0.043527137488126755, + 0.007398257032036781, + -0.08622001856565475, + -0.024673065170645714, + 0.0484076589345932, + 0.004207197576761246, + 0.03360574319958687, + 0.015191418118774891, + -0.05039744824171066, + -0.006001779343932867, + 0.04706234857439995, + -0.006270567886531353, + 0.005096391774713993, + 0.028204914182424545, + -0.030584892258048058, + 0.023324036970734596, + -0.021532634273171425, + 0.0548703707754612, + 0.03296869248151779, + 0.03397730737924576, + 0.031050492078065872, + 0.03556927666068077, + 0.009605125524103642, + -0.04845333844423294, + -0.09479004144668579, + 0.0518394336104393, + 0.02243635058403015, + 0.03377978503704071, + 0.01964637078344822, + -0.07227695733308792, + 0.0348803848028183, + -0.015541963279247284, + 0.020064400508999825, + -0.011621782556176186, + -0.012976701371371746, + -0.09968024492263794, + -0.01671014539897442, + 0.04753518104553223, + 0.003148984396830201, + -0.05105329677462578, + 0.03309723734855652, + -0.005724596790969372, + 0.004485633689910173, + -0.050166551023721695, + 0.001797324512153864, + -0.052714310586452484, + -0.09399433434009552, + 0.031229007989168167, + -0.04269655421376228, + 0.0023565320298075676, + -0.09146015346050262, + 0.040192004293203354, + 0.019097082316875458, + 0.03383603319525719, + 0.03323197364807129, + -0.05544606223702431, + 0.011418270878493786, + 0.0718042328953743, + 0.020385218784213066, + -0.02011793665587902, + -0.004631047137081623, + 0.04035523161292076, + -0.046745847910642624, + 0.06260262429714203, + 0.060294535011053085, + 0.005470327567309141, + -0.04482993856072426, + 0.03640158101916313, + -0.020703613758087158, + -0.07639087736606598, + 0.04244277998805046, + 0.03058001957833767, + -0.044390399008989334, + -0.07307132333517075, + -0.06716582924127579, + -0.05049269646406174, + -0.05621280521154404, + -0.021112501621246338, + -0.006171378307044506, + 0.02101619727909565, + -0.06428632885217667, + -0.05395089462399483, + -0.057949669659137726, + -0.009187242016196251, + -0.06382928043603897, + -0.042951550334692, + 0.07140249758958817, + 0.003230595262721181, + -0.08652769774198532, + 0.037306349724531174, + 0.07317608594894409, + -0.022833285853266716, + -0.004209158942103386, + 0.06203746050596237, + 0.034771401435136795, + 0.07655204832553864, + 0.11224830150604248, + 0.021044187247753143, + -0.10057856887578964, + 0.026433037593960762, + -0.03308043256402016, + -0.015575620345771313, + 0.006750909611582756, + -0.004614714998751879, + -0.017845887690782547, + -0.04343476518988609, + -0.010825730860233307, + -0.06757532805204391, + -0.110887311398983, + -0.029839888215065002, + -0.053926825523376465, + -0.028982052579522133, + 0.13864119350910187, + 0.09926078468561172, + -0.08407377451658249, + -0.0689510703086853, + 0.024108678102493286, + -0.006071699317544699, + -0.01830083131790161, + -0.022256413474678993, + 0.050111621618270874, + -5.092609604430751e-33, + -0.01250519510358572, + 0.030024152249097824, + 0.02426769956946373, + 0.12376390397548676, + -0.0056484900414943695, + -0.0233596321195364, + -0.1003795638680458, + -0.0017128447070717812, + -0.056046392768621445, + 0.0023539704270660877, + 0.08883132040500641, + 0.04660720005631447, + -0.021221209317445755, + 0.045726168900728226, + 0.09473654627799988, + 0.04275314509868622, + -0.034190867096185684, + -0.04766329750418663, + -0.04028928652405739, + -0.04157470539212227, + -0.04586946964263916, + 0.12083287537097931, + 0.02107633836567402, + -0.042113181203603745, + 0.00932210125029087, + -0.02716767229139805, + 0.00950129795819521, + -0.05203280225396156, + 0.005707672797143459, + 0.050236884504556656, + 0.009681878611445427, + 0.126250222325325, + 0.014633771032094955, + 0.05752786621451378, + -0.037820808589458466, + 0.013393755070865154, + -0.059463970363140106, + -0.05485709011554718, + -0.03585188835859299, + -0.01821768283843994, + -0.06068224832415581, + -0.058297108858823776, + -0.06487540900707245, + 0.007390832062810659, + 0.05118855834007263, + 0.14346744120121002, + 0.014656618237495422, + -0.06565432995557785, + 0.015714358538389206, + 0.047363657504320145, + -0.057209376245737076, + -0.05574365705251694, + -0.030376125127077103, + -0.059036433696746826, + 0.005962500814348459, + 0.06442883610725403, + -0.028205761685967445, + 0.07159053534269333, + -0.022193439304828644, + -0.026915911585092545, + -0.04379074648022652, + 0.05321752279996872, + 0.06767694652080536, + -0.037453677505254745, + 0.014850178733468056, + 0.08006999641656876, + -0.07912725955247879, + 0.03189413622021675, + 0.06267426162958145, + 0.06394264101982117, + -0.000564553018193692, + 0.040763359516859055, + -0.013788311742246151, + 0.027028055861592293, + 0.10492238402366638, + 0.05744563788175583, + -0.016046784818172455, + -0.06383059173822403, + -0.04083840176463127, + -0.01368375401943922, + -0.1329537332057953, + 0.03453897312283516, + -0.05752139165997505, + 0.12951086461544037, + 0.06946759670972824, + 0.041626136749982834, + -0.022111697122454643, + -0.09001541882753372, + 0.010459229350090027, + 0.038239624351263046, + -0.10774613916873932, + 0.033693958073854446, + -0.031167740002274513, + -0.02243177406489849, + -0.06762015074491501, + 4.842560558340245e-34, + 0.021659037098288536, + -0.002809426048770547, + -0.03705636039376259, + 0.012676391750574112, + -0.003579748561605811, + 0.005130793433636427, + -0.005325217265635729, + 0.0013714844826608896, + 0.06657097488641739, + 0.0958128273487091, + -0.04949403926730156, + -0.03039204329252243, + -0.026240749284625053, + -0.039699628949165344, + 0.026281040161848068, + -0.023092661052942276, + 0.09126044064760208, + 0.021307731047272682, + -0.055025018751621246, + 0.042315613478422165, + -0.0556003712117672, + -0.031963784247636795, + -0.06859263777732849, + 0.014419223181903362, + 0.01951998472213745, + 0.03851120546460152, + -0.06279675662517548, + -0.007208769675344229, + -0.04277634248137474, + -0.029005661606788635, + -0.01640239544212818, + -0.03642768785357475, + 0.06686653196811676, + 0.0037603185046464205, + -0.08139322698116302, + 0.061757247895002365, + -0.023344557732343674, + -0.027232768014073372, + -0.01813989132642746, + -0.009451503865420818, + -0.04036238044500351, + -0.026118192821741104, + 0.08206189423799515, + 0.06012991443276405, + 0.012353416532278061, + -0.0632016509771347, + -0.06078007072210312, + -0.07834190130233765, + -0.04940927401185036, + 0.03583534061908722, + 0.08532116562128067, + -0.007303653284907341, + -0.020035764202475548, + 0.0382910817861557, + 0.0035803080536425114, + 0.011811665259301662, + 0.08480236679315567, + 0.004251938778907061, + -0.025494759902358055, + 0.05229818448424339, + 0.017574675381183624, + 0.0657641813158989, + -0.08396092057228088, + 0.03040030039846897, + -0.0068725417368113995, + -0.14256924390792847, + -0.031364958733320236, + -0.06781476736068726, + 0.009956981055438519, + -0.07293999940156937, + 0.06954347342252731, + 0.013884246349334717, + -0.05242198705673218, + 0.02039148285984993, + -0.015173002146184444, + -0.034125372767448425, + 0.09629610180854797, + 0.0630723387002945, + 0.0006765251746401191, + -0.02257768251001835, + 0.021400844678282738, + -0.028855901211500168, + -0.022897418588399887, + 0.05190231278538704, + -0.033137042075395584, + 0.018658673390746117, + -0.05430232360959053, + -0.06159272789955139, + 0.055392783135175705, + 0.04633232206106186, + -0.017496557906270027, + 0.08379863947629929, + -0.015403347089886665, + -0.001810526242479682, + -0.13765783607959747, + -2.1262756888518197e-08, + 0.017338281497359276, + -0.028762949630618095, + -0.05357170104980469, + -0.03927692398428917, + 0.026110809296369553, + -0.007265886291861534, + -0.020640060305595398, + -0.00332433870062232, + -0.11560976505279541, + 0.07381078600883484, + 0.0036307720001786947, + 0.034306835383176804, + -0.036411531269550323, + 0.07106047123670578, + -0.012946154922246933, + 0.030920762568712234, + -0.013475419022142887, + 0.015071536414325237, + -0.0582311674952507, + -0.029958687722682953, + -0.031174156814813614, + 0.025800537317991257, + -0.018271055072546005, + 0.06747075915336609, + 0.019818665459752083, + -0.020199865102767944, + -0.025782303884625435, + -0.004614309407770634, + 0.12587881088256836, + -0.019869010895490646, + 0.01086993608623743, + 0.0771806463599205, + 0.01106905285269022, + 0.002917395904660225, + -0.10937885195016861, + -0.03095031902194023, + 0.012259012088179588, + 0.0008606016635894775, + -0.0431252047419548, + 0.004308558069169521, + 0.06713588535785675, + -0.00017947654123418033, + -0.01855885423719883, + -0.02590256743133068, + 0.03674275055527687, + 0.010096287354826927, + 0.0096811568364501, + -0.031045248731970787, + -0.0613594725728035, + -0.08238105475902557, + -0.08198331296443939, + -0.017596770077943802, + -0.021748995408415794, + 0.0880063846707344, + -0.01909514144062996, + -0.04924653470516205, + 0.02734401822090149, + 0.01412145048379898, + -0.03352190554141998, + -0.023288467898964882, + 0.1320602148771286, + 0.10073072463274002, + 0.03702380880713463, + 0.030836673453450203 + ], + "cardholder-bold||wallet,money,payment,paying,purchase": [ + 0.017945323139429092, + 0.02599344402551651, + -0.05188445746898651, + 0.04536191746592522, + 0.010530623607337475, + -0.023184258490800858, + 0.15745757520198822, + -0.025748295709490776, + 0.056397464126348495, + -0.08531374484300613, + 0.0150305749848485, + -0.04030259698629379, + 0.013644249178469181, + -0.06016611307859421, + 0.012114038690924644, + -0.019515041261911392, + 0.004539957270026207, + 0.021726535633206367, + 0.059440046548843384, + 0.08844255656003952, + -0.016459334641695023, + 0.010732588358223438, + -0.032435931265354156, + 0.031648848205804825, + 0.012655328959226608, + 0.03892963007092476, + 0.0045064338482916355, + -0.02635771408677101, + 0.014874844811856747, + -0.05298856645822525, + 0.033647678792476654, + 0.07496203482151031, + 0.18259058892726898, + -0.012656866572797298, + 0.04066170006990433, + 0.01578647457063198, + -0.03237584978342056, + 0.025412343442440033, + -0.04549694433808327, + 0.01345388125628233, + 0.015980849042534828, + -0.09870254993438721, + -0.015675250440835953, + 0.02714396081864834, + -0.003767170011997223, + -0.008614694699645042, + 0.009636197239160538, + 0.05141117423772812, + -0.009515444748103619, + 0.04245435446500778, + -0.0010263404110446572, + -0.09759453684091568, + -0.10471431165933609, + -0.024083836004137993, + -0.037041038274765015, + -0.011681576259434223, + 0.006976003758609295, + -0.05619657039642334, + 0.03786695376038551, + -0.04865090921521187, + 0.032567135989665985, + 0.01165069080889225, + 0.00476526003330946, + 0.08156830072402954, + 0.012447260320186615, + 0.01542696449905634, + 0.012936399318277836, + 0.017316481098532677, + -0.06162521243095398, + 0.012212060391902924, + 0.05951966345310211, + 0.03199619799852371, + -0.020478567108511925, + -0.08527123183012009, + -0.029462307691574097, + 0.07296643406152725, + 0.08467084169387817, + -0.019800473004579544, + -0.010310753248631954, + -0.01879505068063736, + -0.04929684102535248, + -0.06216145306825638, + -0.021483128890395164, + -0.032959189265966415, + 0.04517694562673569, + 0.0765872448682785, + -0.0724690705537796, + -0.06386944651603699, + 0.009611677378416061, + -0.09286197274923325, + -0.012370285578072071, + 0.03598782420158386, + 0.046524111181497574, + -0.024838250130414963, + -0.06162378564476967, + -0.005800838582217693, + 0.08224561810493469, + -0.031116893514990807, + -0.06933845579624176, + 0.04916536808013916, + 0.0667586475610733, + 0.09273429960012436, + 0.048747435212135315, + 0.005743920337408781, + 0.07699620723724365, + -0.005209015682339668, + 0.025343861430883408, + -0.012701261788606644, + 0.035480380058288574, + -0.001063101808540523, + -0.04930748790502548, + -0.07417630404233932, + -0.011021187528967857, + -0.06335198134183884, + -0.039682433009147644, + 0.07170071452856064, + -0.06128700077533722, + -0.031862903386354446, + 0.10150536894798279, + 0.10050704330205917, + -0.0044684866443276405, + 0.004114452749490738, + -0.08337140083312988, + -0.12332747876644135, + -0.07380776107311249, + -0.010454718954861164, + 0.04339855909347534, + -2.6733908025606345e-33, + 0.04640189930796623, + 0.030637120828032494, + -0.06495288014411926, + 0.08019419759511948, + 0.02013137750327587, + 0.014264622703194618, + -0.006338060367852449, + -0.049253761768341064, + -0.12378892302513123, + 0.05305974557995796, + 0.11128449440002441, + -0.012155354022979736, + -0.006807069294154644, + 0.1311262547969818, + -0.03011937625706196, + -0.018456682562828064, + -0.08808351308107376, + 0.04192647710442543, + 0.04607616737484932, + 0.04259464144706726, + -0.05689578875899315, + 0.02742171846330166, + -0.01548602245748043, + -0.007488026283681393, + 0.028194742277264595, + 0.011139574460685253, + -0.010979749262332916, + -0.012603061273694038, + 0.07465595752000809, + 0.013170444406569004, + 0.07240938395261765, + -0.01636640541255474, + 0.03204658627510071, + 0.029415089637041092, + -0.038328997790813446, + 0.036092378199100494, + -0.00930698961019516, + -0.007559033110737801, + 0.030356403440237045, + -0.023249218240380287, + -0.07821434736251831, + -0.03058744966983795, + -0.03138786181807518, + -0.07644931972026825, + -0.011784952133893967, + 0.06575106084346771, + 0.00976750161498785, + -0.011305938474833965, + 0.0036504084710031748, + 0.05562373250722885, + -0.06502281874418259, + -0.011405345983803272, + -0.006267360877245665, + -0.0188588909804821, + -0.038674984127283096, + -0.10517051070928574, + -0.017705583944916725, + 0.06533434242010117, + -0.027880651876330376, + -0.1010718047618866, + -0.03862761706113815, + -0.03420925512909889, + 0.002988474676385522, + -0.03513204678893089, + -0.056461457163095474, + 0.08820509165525436, + -0.03434412553906441, + -0.028348879888653755, + 0.012257015332579613, + 0.05138987675309181, + -9.700350346975029e-06, + 0.0864451676607132, + 0.032338887453079224, + 0.0998404249548912, + -0.029417160898447037, + 1.8634185835253447e-05, + 0.00710379658266902, + 0.01618570275604725, + -0.022099273279309273, + 0.019268089905381203, + -0.11031349748373032, + 0.03724940866231918, + -0.021310044452548027, + 0.14668984711170197, + -0.003965817857533693, + 0.07038098573684692, + 0.04308587312698364, + -0.09994823485612869, + -0.01475130207836628, + 0.006284447852522135, + -0.01010434702038765, + 0.006423680577427149, + 0.028739390894770622, + -0.09614929556846619, + -0.02451472356915474, + 6.807500384785473e-34, + -0.006607046816498041, + -0.018691202625632286, + -0.01201166957616806, + -0.0010006283409893513, + -0.05210030451416969, + 0.003141825320199132, + 0.012259218841791153, + 0.045494988560676575, + 0.06546176224946976, + -0.026633670553565025, + -0.03703974559903145, + 0.04403853043913841, + -0.04080473259091377, + -0.038437724113464355, + -0.011276153847575188, + -0.02143605425953865, + 0.027982644736766815, + 0.019989972934126854, + 0.03528211638331413, + -0.013749442994594574, + -0.030783891677856445, + -0.03482503816485405, + -0.0262711551040411, + 0.10370959341526031, + -0.025744669139385223, + 0.04222842678427696, + 0.02476082742214203, + -0.0647130161523819, + -0.05498282238841057, + -0.009732614271342754, + -0.008152494207024574, + -0.024432944133877754, + 0.008362333290278912, + 0.06667054444551468, + -0.06817276030778885, + 0.012563883326947689, + -0.043109554797410965, + 0.0633908286690712, + 0.037503067404031754, + 0.008347786962985992, + -0.01986244134604931, + -0.018643975257873535, + 0.01432617288082838, + 0.03641501069068909, + -0.01482469029724598, + -0.11172925680875778, + 0.02296929620206356, + -0.09599103033542633, + 0.06470604240894318, + 0.016267715021967888, + -0.045119911432266235, + -0.0909343808889389, + -0.03717360645532608, + 0.051737185567617416, + -0.11917617917060852, + 0.08806394785642624, + 0.11762351542711258, + 0.029606880620121956, + 0.028185436502099037, + -0.012194373644888401, + -0.01089260634034872, + 0.06445066630840302, + 0.001289514359086752, + -0.01930418610572815, + -0.016648782417178154, + -0.009860878810286522, + 0.02456820011138916, + -0.046107515692710876, + 0.02013280987739563, + -0.025048790499567986, + -0.004852089565247297, + 0.005426168907433748, + -0.04588623717427254, + 0.04056684672832489, + 0.02516116201877594, + 0.017479948699474335, + 0.03136923164129257, + -0.025181671604514122, + -0.0023095542564988136, + -0.03386909142136574, + 0.033887580037117004, + -0.032246895134449005, + 0.020236102864146233, + 0.05133679509162903, + -0.027692867442965508, + -0.01753530278801918, + -0.007600029464811087, + -0.050493884831666946, + -0.056281283497810364, + -0.06253587454557419, + -0.03797682002186775, + 0.061435941606760025, + -0.009271886199712753, + 0.019871413707733154, + -0.06047099828720093, + -1.9197299749862395e-08, + -0.025270696729421616, + -0.0051245372742414474, + 0.00839386135339737, + -0.007313523441553116, + 0.005936357658356428, + -0.05065294727683067, + 0.0006329066236503422, + -0.09393169730901718, + -0.05089320242404938, + 0.01246731635183096, + 0.022297460585832596, + 0.0186131801456213, + -0.07400786131620407, + -0.12017833441495895, + 0.07858667522668839, + 0.018725162371993065, + -0.029573513194918633, + -0.04170567914843559, + -0.09080356359481812, + -0.02436595782637596, + 0.007804648019373417, + 0.05605626478791237, + 0.053681451827287674, + -0.021700700744986534, + -0.007537948898971081, + 0.009814206510782242, + 0.062194906175136566, + 0.05720836669206619, + 0.07375208288431168, + 0.041145727038383484, + 0.03856508433818817, + 0.0827721580862999, + 0.053165122866630554, + -0.03299284726381302, + -0.011049553751945496, + -0.05496663600206375, + -0.02587907202541828, + -0.00015051309310365468, + -0.004857705440372229, + 0.15155763924121857, + -0.02007957361638546, + -0.0952097475528717, + -0.09407438337802887, + -0.07439601421356201, + -0.043956607580184937, + 0.019281186163425446, + -0.026767006143927574, + -0.015986690297722816, + 0.005725837778300047, + -0.07334677129983902, + -0.002103683538734913, + -0.01229108776897192, + 0.07898164540529251, + 0.08318794518709183, + -0.04486852511763573, + -0.06727156788110733, + 0.055050235241651535, + 0.09038396179676056, + 0.07215548306703568, + -0.0204208642244339, + 0.1171174868941307, + 0.017519084736704826, + 0.07000721991062164, + -0.02571975067257881 + ], + "cards-bold||card,slides,slideshow,windows,website,webpage,layers": [ + -0.033335305750370026, + -0.014343495480716228, + -0.05013803392648697, + 0.06282943487167358, + 0.06211181357502937, + 0.012981146574020386, + 0.04520215839147568, + -0.02264976128935814, + 0.03647545725107193, + -0.07359360158443451, + -0.008202789351344109, + 0.05181661620736122, + -0.026848945766687393, + -0.005430241115391254, + 0.00023791813873685896, + -0.0064552160911262035, + 0.029439188539981842, + 0.04716275632381439, + 0.020472452044487, + 0.038164205849170685, + 0.019699035212397575, + 0.008664877153933048, + -0.003974628634750843, + 0.008532182313501835, + -0.01965438760817051, + 0.04693303257226944, + -0.03012150526046753, + -0.027731552720069885, + 0.02569613792002201, + -0.076524518430233, + -0.01488485187292099, + 0.0072189257480204105, + 0.15441469848155975, + 0.07257133722305298, + 0.03369678929448128, + -0.013494894839823246, + -0.06157476454973221, + -0.030362501740455627, + -0.04351130500435829, + 0.02981860190629959, + 0.01762215420603752, + -0.052860159426927567, + -0.016997450962662697, + 0.045621175318956375, + -0.0032109180465340614, + -0.07810831069946289, + -0.043626997619867325, + 0.002184913959354162, + -0.023177925497293472, + 0.010207881219685078, + -0.03372642397880554, + -0.05573014169931412, + -0.13096670806407928, + -0.0032683589961379766, + -0.010067185387015343, + -0.045725017786026, + -0.06318193674087524, + -0.056495897471904755, + 0.017278287559747696, + -0.0016691996715962887, + 0.01545143686234951, + 0.03860480338335037, + 0.04543093591928482, + 0.08689438551664352, + -0.005293725989758968, + 0.04851556196808815, + 0.031221941113471985, + 0.059118032455444336, + 0.016492940485477448, + -0.029418986290693283, + 0.041489917784929276, + 0.056630972772836685, + 0.021718507632613182, + -0.02249739319086075, + 0.008249087259173393, + -0.025186019018292427, + 0.05845935270190239, + -0.05530880391597748, + -0.052446238696575165, + -0.07109034061431885, + -0.07152208685874939, + -0.07291912287473679, + 0.01231693010777235, + 0.007496882230043411, + 0.09217158704996109, + 0.05651383474469185, + -0.05710456520318985, + -0.01590919680893421, + -0.07275574654340744, + -0.06915297359228134, + -0.08022119849920273, + -0.06170607730746269, + 0.01407703012228012, + 0.04217094928026199, + -0.049743372946977615, + -0.0004742114106193185, + 0.051093120127916336, + -0.1019010990858078, + -0.07050833851099014, + 0.06358908861875534, + 0.0215115025639534, + 0.02366679720580578, + 0.09666100144386292, + 0.0182204432785511, + -0.03688424453139305, + -0.0016216668300330639, + 0.0037028370425105095, + 0.026377972215414047, + -0.0073402696289122105, + -0.017888188362121582, + -0.020092085003852844, + -0.07238755375146866, + -0.06914982944726944, + -0.1212184801697731, + -0.04928969964385033, + -0.06340567767620087, + -0.05390673875808716, + -0.0003033465181943029, + 0.12377609312534332, + 0.054725658148527145, + 0.019097277894616127, + -0.04781337082386017, + -0.009432983584702015, + -0.09700043499469757, + -0.05771852657198906, + -0.016644062474370003, + 0.02718939818441868, + -1.1712750607868048e-33, + 0.08819273114204407, + 0.021022602915763855, + -0.04676990956068039, + 0.073518306016922, + 0.03349233791232109, + -0.003205403685569763, + 0.003985589370131493, + -0.09195491671562195, + -0.08491892367601395, + 0.04157259687781334, + 0.12108772993087769, + 0.10033863037824631, + -0.00812947005033493, + 0.1491660475730896, + 0.06554917991161346, + -0.017779916524887085, + -0.01665266789495945, + 0.016091926023364067, + 0.014694138430058956, + -0.04585225507616997, + -0.08080195635557175, + 0.05672666057944298, + 0.023934906348586082, + -0.015078469179570675, + -0.022381864488124847, + 0.03839237987995148, + -0.015861811116337776, + 0.003814607160165906, + -0.04029074311256409, + 0.018837014213204384, + 0.06481347233057022, + -0.055000197142362595, + 0.05454155430197716, + 0.0006149592227302492, + -0.016922559589147568, + 0.04332847148180008, + -0.08542249351739883, + -0.03848119452595711, + 0.06057943403720856, + 0.017104534432291985, + -0.14176374673843384, + -0.022994497790932655, + -0.030183663591742516, + -0.053982511162757874, + -0.003307241015136242, + 0.07295142114162445, + 0.015889814123511314, + -0.028394408524036407, + 0.01949412189424038, + 0.05486097186803818, + -0.031346868723630905, + -0.015575223602354527, + -0.0010506639955565333, + -0.030133206397294998, + -0.009581951424479485, + -0.09859683364629745, + -0.0002134529349859804, + 0.11136677861213684, + 0.04054829478263855, + -0.044210076332092285, + 0.019950099289417267, + -0.006507304031401873, + -0.0012039979919791222, + -0.06524932384490967, + -0.04034923389554024, + 0.07071547210216522, + -0.021151887252926826, + 0.008014191873371601, + -0.022382136434316635, + -0.008926678448915482, + -0.013347730971872807, + 0.06240122765302658, + 0.05518312007188797, + 0.025296160951256752, + -0.027852611616253853, + 0.017625682055950165, + 0.004138176329433918, + -0.022537650540471077, + -0.035656169056892395, + -0.004158862866461277, + -0.138289213180542, + -0.018691115081310272, + -0.05057767406105995, + 0.06126212701201439, + -0.062337130308151245, + 0.037566445767879486, + 0.01742577739059925, + -0.05422263592481613, + 0.004218480084091425, + 0.03271297365427017, + -0.05518994480371475, + 0.08061634749174118, + 0.01823307015001774, + -0.037784039974212646, + -0.06160324439406395, + -7.527623836133553e-34, + -0.0018441651482135057, + 0.031338538974523544, + -0.08337921649217606, + -0.002314142882823944, + -0.035263124853372574, + 0.00401725759729743, + 0.03487569838762283, + 0.09198381006717682, + 0.047203127294778824, + -0.023649832233786583, + 0.07951726019382477, + 0.06533282995223999, + -0.11713411659002304, + -0.07631789892911911, + -0.05005393922328949, + 0.004168965388089418, + 0.03452516347169876, + 0.05917106941342354, + 0.01211498025804758, + -0.019958386197686195, + -0.032926835119724274, + 0.031690120697021484, + -0.08428522944450378, + 0.07376552373170853, + 0.025287261232733727, + 0.04214760661125183, + 0.024650370702147484, + -0.07054366916418076, + -0.007353817578405142, + -0.048406459391117096, + 0.035530250519514084, + -0.037157319486141205, + 0.00899337138980627, + 0.12427015602588654, + -0.046499405056238174, + 0.03059191070497036, + 0.007329388987272978, + -0.005301251076161861, + 0.018305839970707893, + 0.019427340477705002, + -0.037799131125211716, + 0.033873509615659714, + 0.062224745750427246, + 0.08234339952468872, + -0.029361683875322342, + -0.02475709095597267, + -0.028881723061203957, + -0.027772540226578712, + 0.04775846004486084, + 0.048934172838926315, + -0.013366430066525936, + -0.07087322324514389, + -0.006559313274919987, + -0.05604887753725052, + -0.06740105152130127, + -0.015276538208127022, + -0.011493843048810959, + 0.02992192842066288, + 0.026417097076773643, + -0.005466808099299669, + -0.0005748344701714814, + 0.03132788836956024, + -0.050738126039505005, + -0.01905796118080616, + -0.025477293878793716, + 0.0012751128524541855, + -0.017435839399695396, + -0.015102657489478588, + -0.031042976304888725, + -0.005438402760773897, + 0.00013421481708064675, + 0.048929363489151, + 0.006882617715746164, + 0.010798793286085129, + -0.02088657021522522, + -0.05274837464094162, + 0.08136838674545288, + 0.05994941666722298, + 0.020083436742424965, + -0.04717007279396057, + 0.012405171059072018, + 0.03230341151356697, + -0.032796282321214676, + 0.0009718136861920357, + -0.011415190994739532, + 0.06213958561420441, + -0.025334954261779785, + -0.014595985412597656, + -0.006205643992871046, + -0.10500861704349518, + -0.041934266686439514, + 0.10045260936021805, + 0.10785889625549316, + 0.034607358276844025, + -0.06824817508459091, + -2.2606021943261112e-08, + -0.027639271691441536, + -0.01614060252904892, + -0.023728394880890846, + -0.0713145062327385, + -0.055790454149246216, + -0.038254182785749435, + 0.0371006578207016, + -0.033605605363845825, + -0.05176510289311409, + -0.05879218876361847, + 0.1404842585325241, + 0.02011324279010296, + -0.06267927587032318, + -0.06612066924571991, + 0.0696987509727478, + 0.005521172191947699, + -0.054023828357458115, + 0.06792942434549332, + 0.002957194112241268, + -0.07847260683774948, + 0.05878458917140961, + 0.04425426572561264, + 0.09424471855163574, + 0.037815120071172714, + 0.01955130696296692, + 0.06350674480199814, + 0.0069976611994206905, + -0.012469717301428318, + 0.03682662919163704, + 0.09283499419689178, + 0.0614938884973526, + 0.03114909678697586, + 0.055954545736312866, + 0.011985227465629578, + 0.05684828385710716, + 0.033270277082920074, + -0.0487288236618042, + -0.03859298303723335, + -0.0023012773599475622, + 0.12266597896814346, + -0.00507566099986434, + -0.09308021515607834, + -0.03759891912341118, + -0.023461230099201202, + 0.009878733195364475, + -0.010516832582652569, + 0.01516689918935299, + -0.023953042924404144, + -0.04419010505080223, + -0.11596040427684784, + -0.052454348653554916, + -0.04632827267050743, + -0.034718383103609085, + 0.08500794321298599, + -0.013495153747498989, + -0.06076313555240631, + 0.08050571382045746, + 0.08130721002817154, + 0.035061731934547424, + 0.025635946542024612, + 0.08101789653301239, + 0.0651051476597786, + -0.01674598827958107, + 0.046828802675008774 + ], + "cards-three-bold||*new*,card,slides,slideshow,windows,website,webpage,layers,stack": [ + -0.04056268557906151, + -0.03646251931786537, + -0.07120836526155472, + 0.04820374399423599, + 0.03992776200175285, + 0.002813885686919093, + 0.02775324508547783, + -0.04042261093854904, + 0.03799503296613693, + -0.060715142637491226, + -0.007742609363049269, + -0.005317263770848513, + -0.02293229289352894, + -0.03038903884589672, + -0.0033599380403757095, + 0.024159228429198265, + -0.016691813245415688, + 0.04445350170135498, + 0.012042935006320477, + 0.027718309313058853, + 0.03102724254131317, + -0.0022720028646290302, + 0.011772424913942814, + 0.03089793771505356, + -0.0029702859465032816, + 0.061993807554244995, + -0.028698988258838654, + -0.051408059895038605, + 0.015866655856370926, + -0.06729303300380707, + -0.006516182329505682, + -0.003189177718013525, + 0.15404950082302094, + 0.04773018881678581, + 0.06464338302612305, + -0.015633052214980125, + -0.06484264135360718, + -0.011652631685137749, + -0.03830018267035484, + 0.055431466549634933, + 0.024302855134010315, + -0.06512165814638138, + -0.015583128668367863, + 0.027214759960770607, + -0.01588326320052147, + -0.06909624487161636, + -0.0790800228714943, + -0.003870408982038498, + 0.03041733428835869, + 0.014607071876525879, + -0.027850983664393425, + -0.08878080546855927, + -0.15397125482559204, + -0.013188107870519161, + 0.009913825429975986, + -0.016944335773587227, + -0.05121332034468651, + -0.06778879463672638, + -0.0035664306487888098, + 0.004312893375754356, + 0.04015231132507324, + 0.04105761647224426, + 0.05448196455836296, + 0.06975936889648438, + 0.035230278968811035, + 0.027415871620178223, + -0.003303942270576954, + 0.016327643766999245, + -0.007597710005939007, + 0.017789358273148537, + 0.004787778947502375, + 0.058674346655607224, + 0.0036928777117282152, + -0.0462060309946537, + 0.007632681168615818, + -0.034327149391174316, + 0.05782913789153099, + -0.04636235535144806, + -0.06464358419179916, + -0.06853340566158295, + -0.045690249651670456, + -0.06175132468342781, + 0.0008669637027196586, + 0.03341584652662277, + 0.05628322437405586, + 0.03603796288371086, + -0.07475640624761581, + -0.006352233234792948, + -0.07681544125080109, + -0.07101558893918991, + -0.08975642919540405, + -0.04993799328804016, + 0.00693327933549881, + 0.07219985127449036, + -0.06701720505952835, + 0.03685501217842102, + 0.052547041326761246, + -0.1155855730175972, + -0.06202203035354614, + 0.08290579169988632, + 0.01927592046558857, + 0.03514131158590317, + 0.10006633400917053, + 0.011250972747802734, + -0.03318842500448227, + 0.00798652321100235, + -0.035846367478370667, + 0.017970018088817596, + -0.04522772878408432, + 0.011143787764012814, + -0.006659345701336861, + -0.09304753690958023, + -0.05853330343961716, + -0.09779606014490128, + -0.04629987105727196, + -0.017554575577378273, + -0.033527668565511703, + -0.011690961197018623, + 0.1202826201915741, + 0.07767946273088455, + 0.05353160947561264, + -0.05705533176660538, + -0.013260029256343842, + -0.11663077771663666, + -0.09501412510871887, + -0.014856584370136261, + 0.022998008877038956, + -7.903265453730796e-34, + 0.07389925420284271, + 0.032467689365148544, + -0.040574438869953156, + 0.09682977944612503, + 0.03823760896921158, + -0.0046842810697853565, + -0.020455414429306984, + -0.09215068072080612, + -0.10334940254688263, + 0.05870713293552399, + 0.09636656194925308, + 0.06239201873540878, + 0.014030307531356812, + 0.13438647985458374, + 0.05214677006006241, + -0.05217481404542923, + 0.008730588480830193, + 0.006556576117873192, + 0.012263298034667969, + -0.05943667143583298, + -0.07355187833309174, + 0.07071708887815475, + 0.013919630087912083, + -0.012430147267878056, + -0.0022057273890823126, + 0.02066229283809662, + -0.01527146901935339, + -0.01267656497657299, + -0.028604701161384583, + 0.018404852598905563, + 0.0708855539560318, + -0.03688556328415871, + 0.030380889773368835, + -0.011264979839324951, + -0.008661126717925072, + 0.0469149686396122, + -0.06818947941064835, + -0.04886975139379501, + 0.05544693395495415, + 0.027896417304873466, + -0.1420062631368637, + -0.019653793424367905, + -0.00916898250579834, + -0.0480758436024189, + 0.019463617354631424, + 0.07044222205877304, + 0.020243605598807335, + -0.02550455369055271, + 0.026685748249292374, + 0.03578689321875572, + -0.024753252044320107, + -0.003253611270338297, + -0.014621127396821976, + -0.01732606068253517, + -0.02217283472418785, + -0.1107100248336792, + -0.013384918682277203, + 0.1384020894765854, + 0.05701763555407524, + -0.04859659820795059, + 0.011965958401560783, + 0.0011334138689562678, + -0.014011679217219353, + -0.02470983937382698, + -0.03775067999958992, + 0.08089566975831985, + -0.03373080864548683, + 0.019388500601053238, + 0.00033320949296467006, + 0.026102881878614426, + -0.02161104418337345, + 0.06565146148204803, + 0.031302038580179214, + 0.032858606427907944, + -0.031035272404551506, + 0.010298299603164196, + -0.005697519984096289, + -0.03215589374303818, + -0.04034129157662392, + -0.03230533003807068, + -0.12512314319610596, + -0.0019475385779514909, + -0.044861141592264175, + 0.06461618095636368, + -0.04154627397656441, + 0.042170826345682144, + 0.02201884053647518, + -0.045240480452775955, + 0.014540896750986576, + 0.014979624189436436, + -0.09600719809532166, + 0.07493937015533447, + 0.035356320440769196, + -0.04779021441936493, + -0.06383722275495529, + -1.4160572493371532e-33, + 0.010484659112989902, + 0.04585687071084976, + -0.07803371548652649, + -0.021734407171607018, + -0.030812665820121765, + -0.0058558788150548935, + 0.030267877504229546, + 0.09618675708770752, + 0.03465462476015091, + 0.004195075947791338, + 0.06975860893726349, + 0.07801232486963272, + -0.08873935043811798, + -0.08733002096414566, + 0.00011829176946775988, + 0.02034725621342659, + 0.0210484117269516, + 0.028595592826604843, + 0.004752528853714466, + -0.004450053907930851, + 0.01829778403043747, + 0.011057599447667599, + -0.09571333974599838, + 0.07524771988391876, + 0.0075815836898982525, + 0.026336848735809326, + 0.05177730694413185, + -0.08518252521753311, + 0.018934298306703568, + -0.038798972964286804, + 0.014773542061448097, + -0.07189477235078812, + 0.035416651517152786, + 0.1469888687133789, + -0.05324159562587738, + 0.03191237524151802, + 0.029539668932557106, + -0.019836971536278725, + 0.022041060030460358, + 0.012233675457537174, + -0.05477627366781235, + 0.021489379927515984, + 0.07480151951313019, + 0.08882533758878708, + -0.028638659045100212, + -0.01757507212460041, + -0.022606007754802704, + -0.004404409322887659, + 0.017935924232006073, + 0.033290520310401917, + -0.03788160905241966, + -0.09736797958612442, + -0.011489015072584152, + -0.037546489387750626, + -0.061905637383461, + 0.010920283384621143, + -0.0008372607990168035, + 0.015427290461957455, + 0.02220134250819683, + -0.007893736474215984, + -0.015550742857158184, + 0.02428443357348442, + -0.01831287518143654, + -0.013253901153802872, + -0.01204450149089098, + 0.013180777430534363, + -0.04070250689983368, + -0.028843678534030914, + -0.04948466271162033, + 0.004879903048276901, + -0.009356316179037094, + 0.06834997236728668, + -0.02333611622452736, + -0.009511956945061684, + -0.050969962030649185, + -0.05814412608742714, + 0.05222555622458458, + 0.06716767698526382, + 0.02033199742436409, + -0.03046521544456482, + 0.0038158870302140713, + 0.027816245332360268, + -0.015673143789172173, + -0.0062630693428218365, + -0.017441339790821075, + 0.038296688348054886, + 0.006990704219788313, + 0.024449540302157402, + -0.0007651963969692588, + -0.10044201463460922, + -0.02969524636864662, + 0.10752515494823456, + 0.1238563284277916, + 0.02572731114923954, + -0.06431997567415237, + -2.5738978948197655e-08, + -0.008340721018612385, + -0.019452154636383057, + -0.022852350026369095, + -0.048584919422864914, + -0.03377298265695572, + -0.02536684088408947, + 0.0161301102489233, + -0.04865575209259987, + -0.04277488961815834, + -0.04503975063562393, + 0.1381310373544693, + 0.028856385499238968, + -0.058778315782547, + -0.06345117837190628, + 0.05434700846672058, + -0.00037345042801462114, + -0.0431184396147728, + 0.06676653027534485, + 0.0026541335973888636, + -0.10824786126613617, + 0.053243618458509445, + 0.047055184841156006, + 0.10195121169090271, + 0.038507603108882904, + 0.006063045468181372, + 0.07367171347141266, + -0.012252448126673698, + -0.01938757486641407, + 0.028752299025654793, + 0.06676715612411499, + 0.07739008218050003, + 0.04141340032219887, + 0.05284470319747925, + 0.016459893435239792, + 0.037948254495859146, + 0.003013558918610215, + -0.07007066160440445, + -0.021029086783528328, + -0.00035176496021449566, + 0.09219438582658768, + 0.012579294852912426, + -0.054091013967990875, + -0.02209424413740635, + -0.01796182245016098, + -0.006188228260725737, + -0.03883223980665207, + -0.011232013814151287, + -0.02094532549381256, + -0.04211483523249626, + -0.13061727583408356, + -0.05739637464284897, + -0.05387483909726143, + -0.022078050300478935, + 0.09385981410741806, + -0.0017121471464633942, + -0.03599212318658829, + 0.058640241622924805, + 0.08348578959703445, + 0.01710035279393196, + 0.012538856826722622, + 0.08456746488809586, + 0.059399332851171494, + -0.005545033607631922, + 0.032415952533483505 + ], + "caret-circle-double-down-bold||chevron,directional,pointer,pointing,arrowhead,triangle": [ + -0.007221266161650419, + 0.009078913368284702, + -0.04715351015329361, + -0.010737857781350613, + -0.010109124705195427, + -0.04091101884841919, + 0.04776688292622566, + 0.06472788006067276, + 0.045582860708236694, + -0.05583084374666214, + 0.039351724088191986, + 0.032684169709682465, + 0.013600303791463375, + -0.057133644819259644, + 0.01632213033735752, + 0.04224327206611633, + -0.11189539730548859, + 0.0017521524569019675, + 0.047061383724212646, + -0.003209326881915331, + -0.00884780753403902, + -0.026112468913197517, + -0.01756913587450981, + 0.047917239367961884, + -0.04219727963209152, + 0.051720090210437775, + 0.014371219091117382, + -0.01634782738983631, + -0.021173525601625443, + -0.05740649625658989, + -0.07241956144571304, + -0.00801787804812193, + -0.014981289394199848, + 0.03941444680094719, + -0.10908664017915726, + -0.01083344779908657, + 0.020585186779499054, + 0.031407345086336136, + 0.015291520394384861, + 0.0072375633753836155, + 0.01977895200252533, + -0.03741605207324028, + 0.02404416911303997, + 0.017041072249412537, + 0.0140359066426754, + 0.06542499363422394, + -0.08120580017566681, + -0.029606683179736137, + -0.01859469711780548, + 0.060765527188777924, + -0.06847076863050461, + -0.07746076583862305, + -0.12709034979343414, + 0.0032194408122450113, + 0.08455733209848404, + 0.0627448782324791, + -0.04906858876347542, + -0.026059621945023537, + 0.08097869902849197, + -0.04378606006503105, + 0.07997657358646393, + 0.009315643459558487, + -0.026047440245747566, + 0.018758168444037437, + 0.009472943842411041, + -0.010386619716882706, + -0.05148989334702492, + -0.012566544115543365, + 0.01686108484864235, + -0.0029457600321620703, + -0.017673641443252563, + -0.031113138422369957, + -0.03528429940342903, + -0.07052160799503326, + -0.013680950738489628, + 0.00984067004173994, + 0.03255239129066467, + 0.012391272000968456, + -0.01953405700623989, + -0.0619596391916275, + -0.027109382674098015, + 0.08497278392314911, + 0.0015817609382793307, + 0.08619099855422974, + 0.014425990171730518, + 0.06898822635412216, + -0.010337559506297112, + -0.0937451720237732, + 0.020549507811665535, + -0.0016645630821585655, + 0.03126688301563263, + -0.0041809529066085815, + -0.055473364889621735, + -0.03244057297706604, + -0.06727046519517899, + -0.024213172495365143, + 0.03416018560528755, + -0.08087465912103653, + -0.10935692489147186, + 0.12313047051429749, + 0.053211748600006104, + -0.034008633345365524, + 0.049674708396196365, + -0.03444978594779968, + -0.05889471620321274, + -0.02832041122019291, + -0.05079525336623192, + -0.03917160630226135, + -0.011555369012057781, + 0.034907981753349304, + -0.02861682139337063, + -0.08061155676841736, + -0.018148114904761314, + -0.05560870096087456, + -0.07788089662790298, + 0.024465661495923996, + -0.10642087459564209, + -0.03887080028653145, + 0.1413731873035431, + 0.03087947703897953, + 0.005089631304144859, + -0.02302299626171589, + -0.05647321417927742, + -0.042940765619277954, + -0.03209858760237694, + -0.015428523533046246, + -0.06064705550670624, + -3.382313813126294e-33, + 0.0502447672188282, + 0.04061492905020714, + 0.021323319524526596, + -0.008713524788618088, + -0.0013341950252652168, + -0.02251441590487957, + -0.05922948569059372, + -0.06641439348459244, + -0.01753527671098709, + 0.03712485730648041, + 0.11232834309339523, + -0.057358354330062866, + -0.06289863586425781, + 0.0658804401755333, + -0.03990824148058891, + -0.11206363886594772, + 0.02351311407983303, + -0.013507943600416183, + -0.14566238224506378, + -0.053873684257268906, + -0.025624021887779236, + 0.09392452985048294, + -0.11051452159881592, + -0.007272318936884403, + -0.007589404005557299, + 0.033367834985256195, + 0.007264234591275454, + 0.04616720229387283, + -0.05352843180298805, + 0.037848930805921555, + -0.007492718752473593, + -0.015216086059808731, + 0.02918693795800209, + -0.04646005108952522, + -0.007198547478765249, + 0.0577256977558136, + -0.06819048523902893, + -0.047763243317604065, + -0.00859819632023573, + -0.026092959567904472, + 0.01860102452337742, + -0.05888739228248596, + -0.000585087516810745, + -0.012922137044370174, + 0.010660607367753983, + 0.11587724834680557, + 0.0004467352118808776, + -0.014290227554738522, + 0.04964657872915268, + -0.05621155723929405, + -0.03881518542766571, + 0.015672368928790092, + -0.05588490888476372, + 0.020999910309910774, + -0.011482425034046173, + 0.006496497895568609, + -0.04770829528570175, + 0.10813286155462265, + -0.04762059822678566, + 0.03227764368057251, + 0.02318396419286728, + 0.011165023781359196, + 0.01754080317914486, + -0.04298084229230881, + -0.08510430157184601, + 0.013384438119828701, + -0.102246955037117, + 0.00826013833284378, + 0.1343584805727005, + 0.04393523931503296, + -0.006173932459205389, + 0.020330026745796204, + 0.11633750796318054, + 0.03847167640924454, + -0.023800257593393326, + 0.051804088056087494, + 0.026550201699137688, + -0.035350363701581955, + 0.05232395976781845, + -0.048381704837083817, + -0.12537331879138947, + 0.0037180522922426462, + -0.026524003595113754, + -0.035967398434877396, + 0.05521880090236664, + -0.12116404622793198, + 0.01929810456931591, + -0.024022744968533516, + -0.06776683032512665, + 0.024872569367289543, + -0.1016845628619194, + 0.03105219267308712, + 0.01921716332435608, + 0.000520327128469944, + -0.06256529688835144, + -3.5944635897315943e-34, + -0.045458145439624786, + 0.05921467766165733, + 0.027069034054875374, + -0.009449710138142109, + -0.09185687452554703, + 0.02994198352098465, + 0.01656411774456501, + -0.033574000000953674, + 0.011009803973138332, + 0.07208076864480972, + 0.0037468108348548412, + 0.0465560182929039, + 0.02083585411310196, + -0.04447849094867706, + 0.05388088896870613, + 0.025115102529525757, + 0.025691866874694824, + 0.01353282667696476, + -0.04257659986615181, + 0.03376513347029686, + -0.002506465883925557, + 0.0005585993058048189, + -0.05062706768512726, + 0.08667478710412979, + 0.00417898315936327, + 0.0481775663793087, + 0.07312648743391037, + -0.012847967445850372, + 0.013041025027632713, + -0.00991703849285841, + -0.022624997422099113, + -0.03877962380647659, + 0.07597295194864273, + 0.0862206220626831, + -0.039521295577287674, + -0.08104117214679718, + -0.006921316497027874, + -0.022771362215280533, + -0.004589182324707508, + 0.004158704541623592, + 0.021958457306027412, + -0.012676646001636982, + 0.0914997011423111, + 0.09299252182245255, + 0.0013100062496960163, + 0.019805382937192917, + 0.01781374029815197, + 0.0010283102747052908, + -0.028429919853806496, + -0.010482816956937313, + -0.01121169701218605, + 0.0016200548270717263, + 0.02029399946331978, + 0.038929522037506104, + -0.05460767075419426, + 0.05322582647204399, + 0.04849303886294365, + 0.0467243567109108, + 0.03747154399752617, + 0.05510938912630081, + -0.013072840869426727, + -0.081790030002594, + -0.016701500862836838, + 0.015886664390563965, + 0.04384765028953552, + -0.020517921075224876, + 0.010827402584254742, + -0.0844370424747467, + -0.03447946533560753, + 0.053703609853982925, + 0.004574712365865707, + 0.13486595451831818, + -0.0374046228826046, + -0.10178136080503464, + 0.011518767103552818, + -0.04795221984386444, + 0.05782134830951691, + 0.016874834895133972, + -0.061824996024370193, + 0.03454246744513512, + -0.020807616412639618, + -0.0075636873953044415, + 0.032745737582445145, + 0.013571356423199177, + -0.013129724189639091, + 0.01420127134770155, + -0.024985814467072487, + 0.0729990229010582, + 0.0017326627857983112, + -0.0020186195615679026, + -0.06228354200720787, + 0.06642443686723709, + 0.005829483736306429, + 0.014372963458299637, + -0.04340485483407974, + -2.480625305167905e-08, + -0.04997620731592178, + -0.06097510829567909, + -0.026203054934740067, + 0.008456019684672356, + -0.005194527097046375, + -0.03771936893463135, + -0.03481915593147278, + -0.013768626376986504, + -0.05389145389199257, + -0.051935549825429916, + 0.01876140385866165, + 0.039361435920000076, + -0.11201193928718567, + -0.04840640351176262, + 0.13985030353069305, + 0.004609416704624891, + -0.08941195905208588, + 0.08077038824558258, + -0.04984048753976822, + -0.024617308750748634, + -0.004305887036025524, + -0.006512276362627745, + 0.045714348554611206, + 0.026648947969079018, + -0.036130815744400024, + 0.02248632162809372, + 0.014907468110322952, + 0.13121983408927917, + 0.042241089046001434, + 0.04212284833192825, + 0.062933549284935, + 0.07164619863033295, + 0.01604139246046543, + -0.026931656524538994, + -0.0017936468357220292, + -0.03908979520201683, + 0.027509799227118492, + -0.0190946776419878, + 0.0654006227850914, + 0.12808868288993835, + 0.04300161451101303, + -0.009715964086353779, + -0.007536628749221563, + 0.04069552943110466, + 0.0009577868622727692, + 0.08105218410491943, + 0.045635346323251724, + 0.04169253259897232, + -0.07042565196752548, + -0.10990136116743088, + -0.01387229934334755, + 0.07048496603965759, + 0.019931046292185783, + 0.03531787171959877, + -0.052226338535547256, + 0.03048550896346569, + 0.014453745447099209, + 0.07598433643579483, + -0.08830859512090683, + 0.06042560562491417, + 0.08079616725444794, + 0.03464382886886597, + 0.04561128467321396, + 0.014591549523174763 + ], + "caret-circle-double-left-bold||chevron,directional,pointer,pointing,arrowhead,triangle": [ + -0.004092980641871691, + 0.0023638843558728695, + -0.05228060111403465, + -0.0015910950023680925, + 0.012962153181433678, + -0.04006339609622955, + 0.04143041744828224, + 0.056823235005140305, + 0.038429394364356995, + -0.06699974834918976, + 0.053116753697395325, + 0.018711427226662636, + 0.0041645122691988945, + -0.05991891771554947, + 0.0073096370324492455, + 0.03649124503135681, + -0.12864172458648682, + -0.027554530650377274, + 0.052674587815999985, + 0.010938536375761032, + -0.01751437783241272, + -0.017646105960011482, + -0.014613467268645763, + 0.03762511909008026, + -0.039157990366220474, + 0.061024971306324005, + 0.018295882269740105, + -0.028591681271791458, + -0.020162276923656464, + -0.06504984200000763, + -0.05451691150665283, + -0.0065247719176113605, + -0.03633558005094528, + 0.03261309489607811, + -0.09427583962678909, + -0.012813103385269642, + 0.01885504461824894, + 0.027669237926602364, + 0.009569820016622543, + -0.011867712251842022, + 0.028102830052375793, + -0.03873124346137047, + 0.04041137918829918, + 0.02272060327231884, + 0.02399587444961071, + 0.06818794459104538, + -0.08697660267353058, + -0.01780938170850277, + -0.010230090469121933, + 0.05965111777186394, + -0.09222843497991562, + -0.09856776148080826, + -0.1308477371931076, + 0.006179586984217167, + 0.07200773060321808, + 0.055077601224184036, + -0.04743797704577446, + -0.02793176844716072, + 0.08360590785741806, + -0.05502132698893547, + 0.07299304753541946, + 0.010493571870028973, + -0.010742970742285252, + 0.02061300352215767, + -0.0036720363423228264, + -0.025305017828941345, + -0.04084028676152229, + -0.004788204561918974, + 0.028071414679288864, + -0.016939211636781693, + -0.02517120912671089, + -0.015578237362205982, + -0.05455372855067253, + -0.06848682463169098, + 0.007941273041069508, + 0.004469024948775768, + 0.03229362145066261, + 0.008183998055756092, + -0.019835786893963814, + -0.05947834253311157, + -0.042343780398368835, + 0.07750700414180756, + 0.014696878381073475, + 0.07243934273719788, + 0.03182772919535637, + 0.07826212793588638, + -0.017746416851878166, + -0.09655045717954636, + 0.03273071348667145, + 0.009137466549873352, + 0.03059089183807373, + 0.008956885896623135, + -0.06136408448219299, + -0.05281580239534378, + -0.04936496913433075, + -0.02181139774620533, + 0.02378944866359234, + -0.06856679916381836, + -0.10604958236217499, + 0.12103493511676788, + 0.06820317357778549, + -0.030325962230563164, + 0.036662545055150986, + -0.03277256712317467, + -0.043851807713508606, + -0.0065070767886936665, + -0.062349993735551834, + -0.025491906329989433, + -0.030128460377454758, + 0.03342336788773537, + -0.025226105004549026, + -0.09107287973165512, + -0.02608862891793251, + -0.07788051664829254, + -0.06933484226465225, + 0.019380884245038033, + -0.1309117078781128, + -0.03053445927798748, + 0.16045062243938446, + 0.0364433191716671, + -0.0062799337320029736, + -0.03520401567220688, + -0.05215533450245857, + -0.04353209212422371, + -0.030780918896198273, + -0.007562453858554363, + -0.0640268325805664, + -3.446715842529985e-33, + 0.032255955040454865, + 0.04374049976468086, + 0.020017577335238457, + -0.015608214773237705, + -0.009253527037799358, + -0.01764652319252491, + -0.0276702381670475, + -0.047649070620536804, + -0.0072098225355148315, + 0.015827594324946404, + 0.106665700674057, + -0.05173094570636749, + -0.05673158913850784, + 0.05095651373267174, + -0.03368763625621796, + -0.11030887067317963, + 0.0080112898722291, + -0.011698423884809017, + -0.14940479397773743, + -0.050347622483968735, + -0.019791195169091225, + 0.09894584864377975, + -0.11317958682775497, + -0.008945255540311337, + -0.020150817930698395, + 0.01956910826265812, + 0.013868505135178566, + 0.054417915642261505, + -0.048311833292245865, + 0.036644697189331055, + 0.005443332716822624, + -0.0024106923956424, + 0.02981526032090187, + -0.04755188524723053, + -0.0010123170213773847, + 0.04587046429514885, + -0.052475012838840485, + -0.068320631980896, + 0.0028690043836832047, + -0.014263982884585857, + 0.0334673710167408, + -0.04581894353032112, + 0.02002961002290249, + -0.01918191649019718, + -0.0034502961207181215, + 0.1305239498615265, + 0.002967032603919506, + 0.008786224760115147, + 0.07043001800775528, + -0.05864771082997322, + -0.04017999768257141, + 0.02393469586968422, + -0.04384998232126236, + 0.017181437462568283, + -0.010081402957439423, + 0.004933464340865612, + -0.04224582761526108, + 0.09784112125635147, + -0.047642722725868225, + 0.01953013986349106, + 0.015650173649191856, + 0.02655082568526268, + 0.023946557193994522, + -0.03841732442378998, + -0.09168054908514023, + 0.005822868086397648, + -0.10516515374183655, + 0.0008169386419467628, + 0.1363152712583542, + 0.030058665201067924, + 0.002205903409048915, + 0.012651375494897366, + 0.12694695591926575, + 0.040916163474321365, + -0.024988269433379173, + 0.04121271148324013, + 0.004840001463890076, + -0.012236191891133785, + 0.028486724942922592, + -0.04092176631093025, + -0.11466635018587112, + 0.00953640416264534, + -0.03159260004758835, + -0.02164950594305992, + 0.04509055241942406, + -0.13137242197990417, + 0.014812762849032879, + -0.018403228372335434, + -0.06281678378582001, + 0.03421992436051369, + -0.08852165192365646, + 0.027116598561406136, + 0.002724864985793829, + 0.021564578637480736, + -0.0780574232339859, + -6.9985397981356916e-34, + -0.04831035062670708, + 0.0539059191942215, + 0.03196720778942108, + -0.014953740872442722, + -0.0853659063577652, + 0.018658433109521866, + 0.013920733705163002, + -0.03203536570072174, + 0.009985106997191906, + 0.07066702842712402, + 0.0034006363712251186, + 0.04303642734885216, + 0.017732881009578705, + -0.04504063352942467, + 0.0494873970746994, + 0.012921621091663837, + 0.025571215897798538, + 4.268799602868967e-05, + -0.05702817440032959, + 0.02646740712225437, + -0.004887224640697241, + 0.0033424855209887028, + -0.03457045555114746, + 0.09785957634449005, + 0.00707022100687027, + 0.04596855118870735, + 0.07132125645875931, + -0.03371020033955574, + -0.0019701551645994186, + -0.0024700979702174664, + -0.02037731744349003, + -0.04162677377462387, + 0.08828186243772507, + 0.08298949897289276, + -0.023519599810242653, + -0.08906114846467972, + 0.0046907635405659676, + -0.03724076971411705, + 0.01803850755095482, + 0.011793422512710094, + 0.03703010082244873, + -0.026942063122987747, + 0.08110565692186356, + 0.10256392508745193, + 0.006506198551505804, + 0.021952364593744278, + 0.03372644633054733, + -0.000727879349142313, + -0.04092330485582352, + -0.0030573930125683546, + -0.007930866442620754, + 0.023721419274806976, + 0.03425313159823418, + 0.013199620880186558, + -0.04377218335866928, + 0.048311106860637665, + 0.023195438086986542, + 0.03261198475956917, + 0.054901234805583954, + 0.04162232577800751, + -0.005766235291957855, + -0.07783007621765137, + -0.012463909573853016, + -0.0007358284783549607, + 0.04271448031067848, + -0.04125303775072098, + 0.019249966368079185, + -0.09648152440786362, + -0.013754233717918396, + 0.05257904529571533, + 0.019053345546126366, + 0.13364562392234802, + -0.04362590238451958, + -0.09683741629123688, + 0.0013767824275419116, + -0.022930379956960678, + 0.06946438550949097, + 0.0022469074465334415, + -0.0609021931886673, + 0.048735253512859344, + -0.024147959426045418, + -0.01532011292874813, + 0.0504579097032547, + -0.0007269950001500547, + -0.01043478213250637, + 0.0068367584608495235, + 0.006461317650973797, + 0.042587265372276306, + 0.00023102917475625873, + -0.0049240500666201115, + -0.058807309716939926, + 0.06314343959093094, + -0.0011416140478104353, + 0.010526401922106743, + -0.03853775933384895, + -2.5455893393200313e-08, + -0.04260438308119774, + -0.0724034383893013, + -0.02471681497991085, + 0.012139548547565937, + -0.01852435991168022, + -0.05315501242876053, + -0.022008508443832397, + -0.01690879836678505, + -0.07265166193246841, + -0.018142197281122208, + 0.02479349449276924, + 0.03788101673126221, + -0.11018027365207672, + -0.056427814066410065, + 0.1375075727701187, + 0.0015862347790971398, + -0.08817481994628906, + 0.07769028842449188, + -0.056090619415044785, + -0.017390506342053413, + -0.0013017146848142147, + -0.007660592440515757, + 0.05031021311879158, + 0.0033289550337940454, + -0.039110612124204636, + 0.025511078536510468, + 0.030605345964431763, + 0.10836827754974365, + 0.046292055398225784, + 0.03270970284938812, + 0.052964288741350174, + 0.0524967759847641, + 0.006991686299443245, + -0.027037812396883965, + -0.015458157286047935, + -0.04185735806822777, + 0.022275319322943687, + -0.018091201782226562, + 0.05366816371679306, + 0.12667076289653778, + 0.04966838285326958, + 0.006615538615733385, + -0.0017768460093066096, + 0.03987680748105049, + 0.0021274732425808907, + 0.07669184356927872, + 0.04264488443732262, + 0.05189979076385498, + -0.07191626727581024, + -0.1028309091925621, + -0.026836104691028595, + 0.06646572798490524, + -0.00036871054908260703, + 0.02717418409883976, + -0.0504489466547966, + 0.0239754356443882, + 0.019075552001595497, + 0.08249824494123459, + -0.08265332132577896, + 0.062472399324178696, + 0.0959332287311554, + 0.04782553017139435, + 0.05182267352938652, + 0.02628490701317787 + ], + "caret-circle-double-right-bold||chevron,directional,pointer,pointing,arrowhead,triangle": [ + -0.0015215803869068623, + 0.0023700911551713943, + -0.06025541201233864, + -0.0017781219212338328, + 0.01024184562265873, + -0.032712049782276154, + 0.04252166673541069, + 0.056004513055086136, + 0.03835245221853256, + -0.06480950862169266, + 0.058820776641368866, + 0.021035054698586464, + 0.006445013917982578, + -0.06203564628958702, + 0.008096016943454742, + 0.03452235832810402, + -0.13267242908477783, + -0.02866956777870655, + 0.051914725452661514, + 0.0068150972947478294, + -0.00768081983551383, + -0.018305664882063866, + -0.013302412815392017, + 0.03968312218785286, + -0.03728437051177025, + 0.06377867609262466, + 0.01779833436012268, + -0.026808304712176323, + -0.020809710025787354, + -0.06375660747289658, + -0.055801957845687866, + -0.007719479035586119, + -0.033836204558610916, + 0.03225962817668915, + -0.08884964138269424, + -0.007888495922088623, + 0.014580422081053257, + 0.02312730811536312, + 0.01135225873440504, + -0.015591694042086601, + 0.023211821913719177, + -0.04313896223902702, + 0.040049709379673004, + 0.02053871378302574, + 0.02173004113137722, + 0.07025501877069473, + -0.0846695601940155, + -0.015127858147025108, + -0.011743004433810711, + 0.057823240756988525, + -0.09057527035474777, + -0.09532947093248367, + -0.13240034878253937, + 0.006003879941999912, + 0.07583896815776825, + 0.06243833526968956, + -0.051300376653671265, + -0.02574343979358673, + 0.0858871340751648, + -0.05296732857823372, + 0.06876157224178314, + 0.007666757795959711, + -0.0108149703592062, + 0.02260388247668743, + -0.0033814599737524986, + -0.023141857236623764, + -0.04058729484677315, + -0.006423112936317921, + 0.024726897478103638, + -0.013838707469403744, + -0.024880249053239822, + -0.013769569806754589, + -0.05257619917392731, + -0.06719782948493958, + 0.00623041857033968, + 0.00590936467051506, + 0.03147135674953461, + 0.011275606229901314, + -0.02648155950009823, + -0.05908942595124245, + -0.04271930828690529, + 0.07604965567588806, + 0.017971649765968323, + 0.07945123314857483, + 0.032008446753025055, + 0.0790669396519661, + -0.018882660195231438, + -0.09294392168521881, + 0.03761701658368111, + 0.010133420117199421, + 0.030364537611603737, + 0.00068495242157951, + -0.06201319769024849, + -0.04841708391904831, + -0.052300143986940384, + -0.01959860883653164, + 0.024512333795428276, + -0.07053294777870178, + -0.10608307272195816, + 0.11658380180597305, + 0.06856636703014374, + -0.03494679927825928, + 0.03918812423944473, + -0.03130216896533966, + -0.04199608042836189, + -0.008787429891526699, + -0.05998055636882782, + -0.023609602823853493, + -0.02982170507311821, + 0.037344928830862045, + -0.026848746463656425, + -0.09320203214883804, + -0.027320245280861855, + -0.07660333067178726, + -0.06846307218074799, + 0.016837982460856438, + -0.1295333206653595, + -0.03349617123603821, + 0.15609702467918396, + 0.0353679433465004, + -0.0062835379503667355, + -0.02789771929383278, + -0.053292758762836456, + -0.043960992246866226, + -0.034876640886068344, + -0.007896053604781628, + -0.06460738182067871, + -3.265583918011779e-33, + 0.029169950634241104, + 0.042174313217401505, + 0.021028025075793266, + -0.01417500525712967, + -0.01120592001825571, + -0.020154239609837532, + -0.03010660782456398, + -0.047280676662921906, + -0.007661378476768732, + 0.023680077865719795, + 0.10748898983001709, + -0.053418319672346115, + -0.05471406877040863, + 0.05113516002893448, + -0.02972862310707569, + -0.10864275693893433, + 0.008414695039391518, + -0.010856471955776215, + -0.1518588364124298, + -0.052058715373277664, + -0.023687252774834633, + 0.09690667688846588, + -0.11093280464410782, + -0.01068972609937191, + -0.019848188385367393, + 0.019399473443627357, + 0.014812440611422062, + 0.05248695984482765, + -0.04584774747490883, + 0.03546328470110893, + 0.0037890668027102947, + -0.006353170610964298, + 0.03181098401546478, + -0.04396945610642433, + 0.002034854842349887, + 0.044139813631772995, + -0.049627285450696945, + -0.06613285839557648, + -0.0007619810057803988, + -0.016691643744707108, + 0.034437309950590134, + -0.043230727314949036, + 0.017290687188506126, + -0.01894928701221943, + 0.003515268210321665, + 0.12901867926120758, + 0.0026566428132355213, + 0.009055519476532936, + 0.07357142865657806, + -0.055845897644758224, + -0.036545127630233765, + 0.02829751744866371, + -0.04146520793437958, + 0.022417079657316208, + -0.008972764946520329, + 0.005058906972408295, + -0.04215550422668457, + 0.106609046459198, + -0.04928690567612648, + 0.018911397084593773, + 0.014983918517827988, + 0.02635127305984497, + 0.02553190477192402, + -0.03953424468636513, + -0.09101704508066177, + 0.008342227898538113, + -0.1038035973906517, + -0.0010442316997796297, + 0.13836634159088135, + 0.02971450611948967, + -0.001335599459707737, + 0.015601340681314468, + 0.1220773458480835, + 0.04493696242570877, + -0.028391046449542046, + 0.042630281299352646, + -0.002575318096205592, + -0.010115209966897964, + 0.028643334284424782, + -0.04084286838769913, + -0.11665911972522736, + 0.009484827518463135, + -0.035822588950395584, + -0.02154536359012127, + 0.04081127420067787, + -0.13535183668136597, + 0.014887337572872639, + -0.021286357194185257, + -0.05685316026210785, + 0.028932107612490654, + -0.08912881463766098, + 0.02811141312122345, + 0.005001011770218611, + 0.01990373060107231, + -0.0826466977596283, + -7.858267897323304e-34, + -0.04560750350356102, + 0.05356666073203087, + 0.03802184760570526, + -0.012546594254672527, + -0.089592844247818, + 0.022449688985943794, + 0.018059395253658295, + -0.037429239600896835, + 0.012669246643781662, + 0.074228435754776, + 0.006421123165637255, + 0.04095683619379997, + 0.015412991866469383, + -0.04685046523809433, + 0.05104325711727142, + 0.013615072704851627, + 0.023517072200775146, + 0.0019911215640604496, + -0.05204923450946808, + 0.026440756395459175, + -0.00830906629562378, + -0.000835419399663806, + -0.03732253238558769, + 0.09978894144296646, + 0.006442171987146139, + 0.045800358057022095, + 0.07417892664670944, + -0.03496604412794113, + 0.004046309273689985, + -0.002106641884893179, + -0.01989838480949402, + -0.04262418672442436, + 0.07902318239212036, + 0.08774694055318832, + -0.025947608053684235, + -0.0920589491724968, + 0.0019048684043809772, + -0.032845038920640945, + 0.01604698784649372, + 0.011684010736644268, + 0.041234202682971954, + -0.02382505126297474, + 0.08278653770685196, + 0.10421021282672882, + 0.002372276969254017, + 0.023038510233163834, + 0.03327328339219093, + -0.00141069944947958, + -0.043753817677497864, + -0.005621521733701229, + -0.009210211224853992, + 0.020504791289567947, + 0.036619510501623154, + 0.010615159757435322, + -0.04211664944887161, + 0.04823800548911095, + 0.027486467733979225, + 0.028866173699498177, + 0.049851469695568085, + 0.04096605256199837, + -0.0004899200866930187, + -0.07975839078426361, + -0.011748884804546833, + 0.0018881760770455003, + 0.04248763993382454, + -0.041490793228149414, + 0.015813764184713364, + -0.09699112176895142, + -0.017936311662197113, + 0.05054788663983345, + 0.01911691017448902, + 0.12822018563747406, + -0.0457937978208065, + -0.09760259836912155, + -0.0012898874701932073, + -0.02834499254822731, + 0.06597238779067993, + 0.0015623853541910648, + -0.0613616406917572, + 0.04397263750433922, + -0.0189091544598341, + -0.009656834416091442, + 0.04606717824935913, + 0.0020171143114566803, + -0.013097644783556461, + 0.006782820913940668, + 0.007103352807462215, + 0.041800156235694885, + 0.0008929326431825757, + -0.006719519849866629, + -0.05718672648072243, + 0.06727635115385056, + -0.001269037020392716, + 0.014729995280504227, + -0.0383896641433239, + -2.5116159818594497e-08, + -0.04652265086770058, + -0.06999702006578445, + -0.02200898714363575, + 0.008466951549053192, + -0.01637040078639984, + -0.05278879776597023, + -0.022562498226761818, + -0.01415075734257698, + -0.07100874930620193, + -0.01905694045126438, + 0.023679673671722412, + 0.03546183556318283, + -0.1120084598660469, + -0.05498230829834938, + 0.14159052073955536, + 0.0006477584247477353, + -0.08803363889455795, + 0.07400613278150558, + -0.05295247957110405, + -0.01801982708275318, + -0.004501750692725182, + -0.007544626481831074, + 0.04927464947104454, + 0.0009846615139394999, + -0.03635264188051224, + 0.027010099962353706, + 0.026708602905273438, + 0.10870254784822464, + 0.042730435729026794, + 0.03625698760151863, + 0.053423330187797546, + 0.0495343953371048, + 0.011157872155308723, + -0.02788700722157955, + -0.013083289377391338, + -0.0393749475479126, + 0.022995397448539734, + -0.0177612267434597, + 0.05684652924537659, + 0.125658318400383, + 0.04970511794090271, + 0.005826751235872507, + -0.004022505134344101, + 0.03826427087187767, + 0.0013219144893810153, + 0.07586450129747391, + 0.04569302499294281, + 0.05101720988750458, + -0.07365792244672775, + -0.10850151628255844, + -0.03122085891664028, + 0.06913849711418152, + 0.0023662911262363195, + 0.025065351277589798, + -0.053240131586790085, + 0.027634918689727783, + 0.02048652246594429, + 0.07808774709701538, + -0.07724752277135849, + 0.057874586433172226, + 0.09677513688802719, + 0.052535053342580795, + 0.05013567954301834, + 0.025765789672732353 + ], + "caret-circle-double-up-bold||chevron,directional,pointer,pointing,arrowhead,triangle": [ + -0.01650688797235489, + 0.006833493709564209, + -0.05847824737429619, + -0.008243059739470482, + 0.003574935020878911, + -0.034611981362104416, + 0.0394844152033329, + 0.060556624084711075, + 0.045070528984069824, + -0.05586062744259834, + 0.04583526775240898, + 0.035391632467508316, + 0.006490305997431278, + -0.06753604114055634, + 0.023105695843696594, + 0.04613226279616356, + -0.12296511232852936, + -0.006255295127630234, + 0.050451502203941345, + -0.0021762526594102383, + -0.006845060735940933, + -0.029312023892998695, + 0.00085493887308985, + 0.049763694405555725, + -0.036648694425821304, + 0.04687875881791115, + 0.015447222627699375, + -0.01673205755650997, + -0.023464413359761238, + -0.04915359988808632, + -0.06677872687578201, + -0.004487111698836088, + -0.03221507370471954, + 0.025262676179409027, + -0.08725438266992569, + -0.008833580650389194, + 0.026539474725723267, + 0.038792684674263, + 0.00448959693312645, + -0.003915372770279646, + 0.0259543564170599, + -0.0478973351418972, + 0.031000664457678795, + 0.0010877776658162475, + 0.024025864899158478, + 0.06524624675512314, + -0.08142507821321487, + -0.007338212337344885, + -0.008267016150057316, + 0.05146026238799095, + -0.07919029146432877, + -0.10287657380104065, + -0.1308867484331131, + -0.0016998795326799154, + 0.07859571278095245, + 0.06982938945293427, + -0.05872451141476631, + -0.03181153163313866, + 0.09361084550619125, + -0.05542408302426338, + 0.0655771940946579, + 0.01503498014062643, + -0.0030080294236540794, + 0.03535284101963043, + 0.015027536079287529, + -0.023410135880112648, + -0.04364335909485817, + 0.00026602850994095206, + 0.01768481731414795, + 0.0014881148235872388, + -0.018979717046022415, + -0.016948910430073738, + -0.04489690810441971, + -0.07311145216226578, + 0.0047188326716423035, + 0.005662526935338974, + 0.025332393124699593, + 0.007689415942877531, + 0.0009277602075599134, + -0.05494796484708786, + -0.042524173855781555, + 0.07350335270166397, + 0.003548366017639637, + 0.07534875720739365, + 0.028997117653489113, + 0.06862740218639374, + -0.021080639213323593, + -0.10232684016227722, + 0.020859675481915474, + 0.012086370028555393, + 0.03199727460741997, + 0.003937119152396917, + -0.05970575287938118, + -0.041729625314474106, + -0.0523807629942894, + -0.023899804800748825, + 0.032067809253931046, + -0.07541782408952713, + -0.10842231661081314, + 0.1160876527428627, + 0.05818340927362442, + -0.030124377459287643, + 0.0386488176882267, + -0.02997649274766445, + -0.049452416598796844, + -0.013108665123581886, + -0.05252690240740776, + -0.02471272274851799, + -0.018809227272868156, + 0.030077729374170303, + -0.024853715673089027, + -0.09500853717327118, + -0.01703614369034767, + -0.06293650716543198, + -0.0836322009563446, + 0.029473092406988144, + -0.11586292088031769, + -0.039785049855709076, + 0.1464339643716812, + 0.02851264365017414, + 0.0038896675687283278, + -0.03774726390838623, + -0.0552871897816658, + -0.03442080318927765, + -0.04544718936085701, + -0.01440077368170023, + -0.04959441348910332, + -3.395177394744136e-33, + 0.0442487969994545, + 0.05909191817045212, + 0.01662270911037922, + -0.016999369487166405, + -0.012892167083919048, + -0.02490714192390442, + -0.04626937210559845, + -0.05848612263798714, + -0.01310289278626442, + 0.02947908639907837, + 0.10310632735490799, + -0.035147011280059814, + -0.0624043270945549, + 0.06154175102710724, + -0.041363731026649475, + -0.11616765707731247, + 0.024655478075146675, + 0.005421323701739311, + -0.14349600672721863, + -0.04770501330494881, + -0.020803973078727722, + 0.08897073566913605, + -0.11283010989427567, + -0.012968627735972404, + -0.02333895117044449, + 0.025942957028746605, + 0.004652728326618671, + 0.05742032453417778, + -0.05845387279987335, + 0.03808240219950676, + 0.015478900633752346, + -0.017519917339086533, + 0.022769546136260033, + -0.04336495324969292, + -0.005390949547290802, + 0.05306456610560417, + -0.050774894654750824, + -0.05995287001132965, + -0.010860241949558258, + -0.016447387635707855, + 0.02694564498960972, + -0.044750481843948364, + 0.015506397932767868, + -0.01246728841215372, + -0.0018111331155523658, + 0.1286870688199997, + -0.02151503786444664, + -0.01441364735364914, + 0.06247711181640625, + -0.055485304445028305, + -0.037471573799848557, + 0.020678268745541573, + -0.0516902357339859, + 0.01794685609638691, + -0.02197314240038395, + 0.009633605368435383, + -0.03761431574821472, + 0.10117030888795853, + -0.04080550745129585, + 0.027891401201486588, + 0.008566021919250488, + 0.01609213836491108, + 0.02434495836496353, + -0.027515145018696785, + -0.09134454280138016, + 0.010921402834355831, + -0.10063973069190979, + 0.006364608183503151, + 0.13014692068099976, + 0.03985282778739929, + -0.008755749091506004, + 0.025175854563713074, + 0.10809578746557236, + 0.05452200770378113, + -0.022408124059438705, + 0.03813224285840988, + 0.01249339897185564, + -0.03770193085074425, + 0.038049545139074326, + -0.033594273030757904, + -0.11836926639080048, + 0.0037294139619916677, + -0.02000528760254383, + -0.040815211832523346, + 0.05147074535489082, + -0.13208132982254028, + 0.002892083488404751, + -0.018113069236278534, + -0.06462039053440094, + 0.03097684681415558, + -0.08090595155954361, + 0.03930520638823509, + 0.027442004531621933, + 0.010585092008113861, + -0.06514869630336761, + -4.843316823651106e-34, + -0.04100760444998741, + 0.06250660866498947, + 0.03765759989619255, + -0.022724974900484085, + -0.0874735414981842, + 0.031820714473724365, + 0.017562827095389366, + -0.0401211753487587, + 0.013614601455628872, + 0.04901224374771118, + -0.013191696256399155, + 0.04897133260965347, + 0.0325673408806324, + -0.047595344483852386, + 0.056118790060281754, + 0.01880365051329136, + 0.022247623652219772, + 0.019768817350268364, + -0.053210388869047165, + 0.030167995020747185, + -0.0007568116998299956, + -0.012472759932279587, + -0.04212118312716484, + 0.08591227978467941, + 0.002636705758050084, + 0.049827735871076584, + 0.06265241652727127, + -0.01857566088438034, + 0.006995209958404303, + -0.011260665953159332, + -0.01516763586550951, + -0.04470134526491165, + 0.0744890347123146, + 0.0906781554222107, + -0.0259042177349329, + -0.07955995202064514, + -0.0055044484324753284, + -0.046768754720687866, + 0.013805745169520378, + 0.01235366053879261, + 0.0389380156993866, + -0.02127995155751705, + 0.0686369314789772, + 0.10270165652036667, + 0.00992567092180252, + 0.016204023733735085, + 0.031431008130311966, + 0.0016559935174882412, + -0.04586346447467804, + -0.0025995918549597263, + -0.013508734293282032, + 0.01303113717585802, + 0.025401756167411804, + 0.029993565753102303, + -0.047711778432130814, + 0.05608854442834854, + 0.04107850790023804, + 0.047116510570049286, + 0.04747093468904495, + 0.042338840663433075, + -0.0013995991321280599, + -0.07147061824798584, + -0.02129487134516239, + 0.007416510488837957, + 0.04009731486439705, + -0.028194649145007133, + 0.027291124686598778, + -0.09820318222045898, + -0.031268030405044556, + 0.0590173676609993, + 0.01720491051673889, + 0.1348704695701599, + -0.04629536345601082, + -0.09993086755275726, + 0.004354241769760847, + -0.03205172345042229, + 0.07172772288322449, + 0.0016988011775538325, + -0.05764909088611603, + 0.027351295575499535, + -0.036883968859910965, + -0.00724209425970912, + 0.04298783838748932, + 0.01836301200091839, + -0.022170457988977432, + 0.01407154742628336, + 0.0010591803584247828, + 0.06364564597606659, + -0.0037317548412829638, + -0.007435851264744997, + -0.05155380815267563, + 0.05644837021827698, + -0.01040307804942131, + 0.011563846841454506, + -0.040025655180215836, + -2.4480613092237036e-08, + -0.050046902149915695, + -0.06641550362110138, + -0.03167567402124405, + 0.0067520239390432835, + 0.00047520079533569515, + -0.05573447421193123, + -0.026768261566758156, + -0.013266031630337238, + -0.06643754988908768, + -0.06413768231868744, + 0.010175805538892746, + 0.04455924406647682, + -0.10266126692295074, + -0.061238016933202744, + 0.1453307867050171, + 0.0009319011005572975, + -0.085286945104599, + 0.08867127448320389, + -0.06431248039007187, + -0.01871608942747116, + -0.014563722535967827, + 0.010876091197133064, + 0.05682479962706566, + 0.011666040867567062, + -0.04633575677871704, + 0.023965565487742424, + 0.014562331140041351, + 0.11872072517871857, + 0.045682769268751144, + 0.03605581074953079, + 0.059632524847984314, + 0.05409320443868637, + 0.0035090562887489796, + -0.021920468658208847, + -0.0037423744797706604, + -0.03103453665971756, + 0.026600342243909836, + -0.01762215420603752, + 0.054524753242731094, + 0.12866635620594025, + 0.046225182712078094, + -0.002615070203319192, + 0.001091148005798459, + 0.03674447163939476, + -0.0010626256698742509, + 0.0819879099726677, + 0.0402882918715477, + 0.04222749173641205, + -0.09332084655761719, + -0.10658646374940872, + -0.026901863515377045, + 0.06742135435342789, + 0.008594919927418232, + 0.027864843606948853, + -0.056365665048360825, + 0.02375316433608532, + 0.013585423119366169, + 0.08165515959262848, + -0.08998660743236542, + 0.06566757708787918, + 0.09309536218643188, + 0.03276676684617996, + 0.04993155971169472, + 0.022301454097032547 + ], + "caret-circle-down-bold||chevron,directional,pointer,pointing,arrowhead,triangle": [ + -0.0022651716135442257, + 0.011723264120519161, + -0.05967848747968674, + -0.007951278239488602, + 0.012171464040875435, + -0.03520549461245537, + 0.057424962520599365, + 0.055294908583164215, + 0.04913764446973801, + -0.058335475623607635, + 0.03429275006055832, + 0.03673678636550903, + 0.01980300433933735, + -0.05645246431231499, + 0.01065458171069622, + 0.035209182649850845, + -0.11046041548252106, + -0.005824138876050711, + 0.046958666294813156, + 0.013778955675661564, + -0.020778892561793327, + -0.012798713520169258, + -0.011193706654012203, + 0.04651189595460892, + -0.05353450030088425, + 0.05563177540898323, + 0.0296560637652874, + -0.03265053778886795, + -0.018619028851389885, + -0.05748185142874718, + -0.07542737573385239, + -0.014054820872843266, + -0.018946832045912743, + 0.030156884342432022, + -0.09127858281135559, + -0.004221661482006311, + 0.009081313386559486, + 0.026964478194713593, + 0.017859719693660736, + 0.008280978538095951, + 0.029619939625263214, + -0.028750000521540642, + 0.030811643227934837, + 0.02484658919274807, + 0.016699369996786118, + 0.07245717197656631, + -0.08063510805368423, + -0.029558680951595306, + -0.020960509777069092, + 0.06260750442743301, + -0.08445226401090622, + -0.08949613571166992, + -0.131287083029747, + 0.002862024586647749, + 0.05998563766479492, + 0.05793236941099167, + -0.03750007972121239, + -0.03319023922085762, + 0.08569230884313583, + -0.03946349024772644, + 0.0783241018652916, + -0.000928818597458303, + -0.013426682911813259, + 0.013433984480798244, + -0.0005220312741585076, + -0.012271220795810223, + -0.03662804141640663, + -0.010612254962325096, + 0.02213532291352749, + -0.012305946089327335, + -0.026095137000083923, + -0.02291286364197731, + -0.044017449021339417, + -0.07083630561828613, + -0.014087685383856297, + 0.014068473130464554, + 0.04159163311123848, + 0.017879413440823555, + -0.0252571739256382, + -0.07310187071561813, + -0.033832140266895294, + 0.08889070898294449, + 0.008306522853672504, + 0.08754589408636093, + 0.006488639395684004, + 0.08124030381441116, + -0.020260177552700043, + -0.09338966012001038, + 0.016728032380342484, + 0.0013677396345883608, + 0.025929410010576248, + 0.005537744611501694, + -0.06695999205112457, + -0.043276652693748474, + -0.057374391704797745, + -0.029579097405076027, + 0.03310679644346237, + -0.0827120989561081, + -0.10331513732671738, + 0.11552561074495316, + 0.05292467772960663, + -0.021149592474102974, + 0.03446698933839798, + -0.03083641082048416, + -0.05215580761432648, + -0.0038923718966543674, + -0.05590440705418587, + -0.034847650676965714, + -0.023760857060551643, + 0.04385082796216011, + -0.035463664680719376, + -0.09736070781946182, + -0.01562829688191414, + -0.07072506099939346, + -0.07878319174051285, + 0.019247226417064667, + -0.11310163140296936, + -0.04312107712030411, + 0.14668866991996765, + 0.03912697732448578, + 0.022805100306868553, + -0.018415380269289017, + -0.06712020188570023, + -0.04395853355526924, + -0.028595611453056335, + 0.006238390691578388, + -0.04389182850718498, + -3.153595305892909e-33, + 0.055767714977264404, + 0.03468281030654907, + 0.01609814539551735, + -0.005724719259887934, + 0.002329374896362424, + -0.024606961756944656, + -0.048247452825307846, + -0.05688986927270889, + -0.01764688454568386, + 0.03083377331495285, + 0.1144159734249115, + -0.053664855659008026, + -0.06721800565719604, + 0.044333361089229584, + -0.029644297435879707, + -0.1095728725194931, + 0.009368372149765491, + -0.022297440096735954, + -0.16772352159023285, + -0.054473865777254105, + -0.01781349442899227, + 0.0846458449959755, + -0.1227630153298378, + -0.021223772317171097, + -0.0203406922519207, + 0.030673174187541008, + 0.00020262606267351657, + 0.0576508603990078, + -0.06413369625806808, + 0.028843887150287628, + -0.0037501833867281675, + -0.013172896578907967, + 0.03108104132115841, + -0.05585894361138344, + -0.013467078097164631, + 0.05109137296676636, + -0.06913727521896362, + -0.05515218898653984, + -0.006496639922261238, + -0.028169184923171997, + 0.035120464861392975, + -0.052240803837776184, + -0.007676111534237862, + 0.002282068831846118, + -0.0020254463888704777, + 0.14405429363250732, + 0.01684368960559368, + -0.019031044095754623, + 0.04590059816837311, + -0.04086367413401604, + -0.031356312334537506, + 0.009059230796992779, + -0.05728631839156151, + 0.018075862899422646, + -0.012479525990784168, + 0.006702800281345844, + -0.05331628769636154, + 0.11395236849784851, + -0.04983500391244888, + 0.013437720946967602, + 0.02132725529372692, + -0.0021762559190392494, + 0.023036234080791473, + -0.03809633105993271, + -0.08119604736566544, + 0.013614684343338013, + -0.11262814700603485, + 0.020572548732161522, + 0.12758192420005798, + 0.03459418937563896, + -0.0029551296029239893, + 0.02650025300681591, + 0.10806384682655334, + 0.0405508428812027, + -0.02410830929875374, + 0.05099864676594734, + 0.0025410009548068047, + -0.021476902067661285, + 0.0474592000246048, + -0.057186949998140335, + -0.10253042727708817, + 0.01214582659304142, + -0.035069555044174194, + -0.021689698100090027, + 0.0680675059556961, + -0.1158013790845871, + 0.022346168756484985, + -0.016275987029075623, + -0.06566162407398224, + 0.019357221201062202, + -0.10407422482967377, + 0.021175747737288475, + 0.02105119079351425, + 0.007735098712146282, + -0.07386643439531326, + -7.124472895662183e-34, + -0.048359133303165436, + 0.04944772645831108, + 0.0330660417675972, + -0.020261740311980247, + -0.09956324845552444, + 0.032518357038497925, + 0.022071702405810356, + -0.02798864245414734, + 0.001208371832035482, + 0.08292477577924728, + -0.0033259522169828415, + 0.038713183254003525, + 0.01989671401679516, + -0.04999203234910965, + 0.04045097902417183, + 0.02366412617266178, + 0.028622321784496307, + 0.004811957012861967, + -0.040061935782432556, + 0.03715896978974342, + -0.008903895504772663, + -0.003858365584164858, + -0.057736776769161224, + 0.08658343553543091, + -0.0026376857422292233, + 0.04791874811053276, + 0.08235060423612595, + -0.012744042091071606, + 0.010630219243466854, + -0.024139512330293655, + -0.0247172974050045, + -0.0357319600880146, + 0.07341256737709045, + 0.0862727016210556, + -0.05469765514135361, + -0.07739613205194473, + -0.020482422783970833, + -0.028319478034973145, + 0.0037964442744851112, + 0.007522743195295334, + 0.024433868005871773, + -0.022869613021612167, + 0.11181640625, + 0.08409234881401062, + -0.0022119448985904455, + 0.02756163477897644, + 0.010108910501003265, + 0.0009107373189181089, + -0.034801751375198364, + 0.00738874776288867, + -0.007682717405259609, + 0.0030036631505936384, + 0.03291451558470726, + 0.029951490461826324, + -0.05856896564364433, + 0.06298059225082397, + 0.04801484942436218, + 0.04026274010539055, + 0.031062809750437737, + 0.051049500703811646, + -0.005154228303581476, + -0.0703921988606453, + -0.014635798521339893, + 0.014683067798614502, + 0.037100255489349365, + -0.017522191628813744, + 0.01776611991226673, + -0.08341000229120255, + -0.01850110851228237, + 0.05497200787067413, + 0.017796797677874565, + 0.12271500378847122, + -0.025189390406012535, + -0.09177421778440475, + 0.014934622682631016, + -0.05135870352387428, + 0.07080759108066559, + 0.010787392035126686, + -0.06255520135164261, + 0.030482996255159378, + -0.022570718079805374, + -0.0035859502386301756, + 0.03010755404829979, + 0.006561586633324623, + -0.000521896465215832, + 0.01084330677986145, + -0.02417748048901558, + 0.055927906185388565, + 0.0003608345577958971, + 0.004292261321097612, + -0.06193554401397705, + 0.05600802227854729, + 0.01393171027302742, + -0.0003424807218834758, + -0.041952114552259445, + -2.3462506604232658e-08, + -0.04051188379526138, + -0.05878513678908348, + -0.02614639885723591, + -0.003594879060983658, + -0.004169394262135029, + -0.02848687209188938, + -0.02341639995574951, + -0.016093958169221878, + -0.058363452553749084, + -0.034048162400722504, + 0.03699377924203873, + 0.029017338529229164, + -0.10496164113283157, + -0.03048679232597351, + 0.13516642153263092, + 0.01381874829530716, + -0.08710268139839172, + 0.06870085000991821, + -0.03891732916235924, + -0.025264300405979156, + -0.01939776912331581, + -0.0025626658461987972, + 0.04646966606378555, + 0.016793832182884216, + -0.0295774657279253, + 0.031510572880506516, + 0.022971313446760178, + 0.12963862717151642, + 0.046228982508182526, + 0.04266053065657616, + 0.060238271951675415, + 0.08056400716304779, + 0.012511969543993473, + -0.02266603149473667, + -0.0028098290786147118, + -0.027284059673547745, + 0.01753782480955124, + -0.02316957153379917, + 0.06586043536663055, + 0.13201487064361572, + 0.0396740697324276, + -0.001187009853310883, + -0.019332971423864365, + 0.02986796572804451, + -0.014907406643033028, + 0.07792399823665619, + 0.04715101793408394, + 0.04046972095966339, + -0.0755876675248146, + -0.10274907946586609, + -0.012568981386721134, + 0.054781511425971985, + 0.011288976296782494, + 0.03776361793279648, + -0.051278263330459595, + 0.020471148192882538, + 0.021905921399593353, + 0.07454894483089447, + -0.09054866433143616, + 0.054950762540102005, + 0.08321482688188553, + 0.032176170498132706, + 0.0499531626701355, + 0.027723653241991997 + ], + "caret-circle-left-bold||chevron,directional,pointer,pointing,arrowhead,triangle": [ + -0.003317177528515458, + 0.0030352005269378424, + -0.059813763946294785, + 0.0016917658504098654, + 0.024836134165525436, + -0.033620238304138184, + 0.05204322934150696, + 0.044832225888967514, + 0.04265521839261055, + -0.06289946287870407, + 0.049278225749731064, + 0.024241019040346146, + 0.008435508236289024, + -0.05572618916630745, + -0.0005919265677221119, + 0.03269062936306, + -0.12351091206073761, + -0.029979659244418144, + 0.04922959953546524, + 0.0232789795845747, + -0.029486143961548805, + -0.005461620166897774, + -0.014756441116333008, + 0.035218145698308945, + -0.04355982318520546, + 0.06274464726448059, + 0.02676236256957054, + -0.03852503374218941, + -0.01664852909743786, + -0.06429778784513474, + -0.05964627489447594, + -0.009867453947663307, + -0.02888932265341282, + 0.026668155565857887, + -0.08820289373397827, + -0.00807417742908001, + 0.00790872797369957, + 0.019724763929843903, + 0.012119191698729992, + -0.0060650501400232315, + 0.02698720432817936, + -0.03613514080643654, + 0.040302157402038574, + 0.027992751449346542, + 0.02390669472515583, + 0.07006733864545822, + -0.08724766224622726, + -0.020264292135834694, + -0.011951317079365253, + 0.060866691172122955, + -0.09942400455474854, + -0.10130956023931503, + -0.13541878759860992, + 0.004896854050457478, + 0.05254153162240982, + 0.050800926983356476, + -0.04091687127947807, + -0.03533482924103737, + 0.08662648499011993, + -0.049325600266456604, + 0.07015318423509598, + 0.00870087556540966, + -0.005340570583939552, + 0.016694840043783188, + -0.006616151425987482, + -0.02154184877872467, + -0.029799357056617737, + -0.006160083692520857, + 0.030136194080114365, + -0.018850896507501602, + -0.02681373432278633, + -0.014012914150953293, + -0.05791652575135231, + -0.06650587171316147, + 0.005858803633600473, + 0.005007466301321983, + 0.0411958321928978, + 0.01116026472300291, + -0.021692441776394844, + -0.0677831619977951, + -0.04632572457194328, + 0.0838204100728035, + 0.015421222895383835, + 0.07808388769626617, + 0.026380188763141632, + 0.08464379608631134, + -0.0213962160050869, + -0.09294244647026062, + 0.03180922195315361, + 0.0069348993711173534, + 0.024133464321494102, + 0.013521873392164707, + -0.06551901996135712, + -0.057511091232299805, + -0.040833424776792526, + -0.02302611991763115, + 0.022557025775313377, + -0.0713084489107132, + -0.10598768293857574, + 0.1165885180234909, + 0.07035213708877563, + -0.020240727812051773, + 0.03050316497683525, + -0.029289979487657547, + -0.04381528124213219, + 0.0065472787246108055, + -0.06637424230575562, + -0.022470956668257713, + -0.04054226726293564, + 0.04070286080241203, + -0.031218834221363068, + -0.09882643818855286, + -0.027079790830612183, + -0.08496689796447754, + -0.06844979524612427, + 0.013613558374345303, + -0.133070707321167, + -0.031531449407339096, + 0.16143257915973663, + 0.040446192026138306, + 0.007222211919724941, + -0.029193811118602753, + -0.06297708302736282, + -0.04169733077287674, + -0.025453878566622734, + 0.0032630986534059048, + -0.05512426421046257, + -3.290210157319521e-33, + 0.03672625496983528, + 0.032060544937849045, + 0.015958810225129128, + -0.010896952822804451, + -0.006675443146377802, + -0.016089744865894318, + -0.02509755827486515, + -0.04123970493674278, + -0.013321125879883766, + 0.011124045588076115, + 0.11005962640047073, + -0.0487247034907341, + -0.060381632298231125, + 0.03629705682396889, + -0.027243467047810555, + -0.10772574692964554, + -0.0032134107314050198, + -0.018387235701084137, + -0.16634877026081085, + -0.05242349952459335, + -0.0141175277531147, + 0.09355168789625168, + -0.1193665936589241, + -0.020202329382300377, + -0.024762017652392387, + 0.023295996710658073, + 0.009554398246109486, + 0.060015466064214706, + -0.060547441244125366, + 0.030471336096525192, + 0.00853816419839859, + -0.00011823390377685428, + 0.0283002108335495, + -0.055870916694402695, + -0.008960513398051262, + 0.04404464736580849, + -0.05238364264369011, + -0.0686449259519577, + 0.004094537813216448, + -0.018520552664995193, + 0.041245535016059875, + -0.04155454784631729, + 0.008509921841323376, + -0.010906049981713295, + -0.008992535062134266, + 0.14840325713157654, + 0.016895491629838943, + 0.004165130667388439, + 0.06709050387144089, + -0.04906550794839859, + -0.03400465101003647, + 0.016992846503853798, + -0.042003195732831955, + 0.015400485135614872, + -0.009600838646292686, + 0.004980180878192186, + -0.04687003791332245, + 0.10949023067951202, + -0.04834645241498947, + 0.007746561896055937, + 0.018138963729143143, + 0.016063407063484192, + 0.02446894533932209, + -0.03305079787969589, + -0.09073355793952942, + 0.00984860211610794, + -0.11293572187423706, + 0.0109334671869874, + 0.13228611648082733, + 0.021616019308567047, + -0.0010110653238371015, + 0.019278448075056076, + 0.11769237369298935, + 0.041868120431900024, + -0.026786521077156067, + 0.040383804589509964, + -0.010429596528410912, + -0.007237234152853489, + 0.024503307417035103, + -0.04688630253076553, + -0.10003980249166489, + 0.012866702862083912, + -0.04067038372159004, + -0.011144437827169895, + 0.05450335890054703, + -0.12810498476028442, + 0.01732882484793663, + -0.019939174875617027, + -0.062153615057468414, + 0.030232742428779602, + -0.09120076149702072, + 0.020334700122475624, + 0.005827646702528, + 0.02584497071802616, + -0.08262262493371964, + -1.0025550709163356e-33, + -0.0479140430688858, + 0.045076824724674225, + 0.03244451805949211, + -0.020740054547786713, + -0.0916445329785347, + 0.026604974642395973, + 0.019529277458786964, + -0.02641306072473526, + 0.005883766803890467, + 0.07926463335752487, + 0.0001421301712980494, + 0.04030023142695427, + 0.010102997533977032, + -0.05147971212863922, + 0.03962717205286026, + 0.016144752502441406, + 0.027805909514427185, + -0.0046995882876217365, + -0.055946823209524155, + 0.030231624841690063, + -0.010471322573721409, + 0.0015415287343785167, + -0.042518068104982376, + 0.10067886859178543, + 0.0013655343791469932, + 0.04642591252923012, + 0.07588440179824829, + -0.03007892705500126, + -0.0008674807613715529, + -0.012832525186240673, + -0.02276792749762535, + -0.03628208115696907, + 0.08267544209957123, + 0.0839451253414154, + -0.03562678396701813, + -0.08429598808288574, + -0.007142443675547838, + -0.038559991866350174, + 0.021074417978525162, + 0.019577203318476677, + 0.04042836278676987, + -0.03351926803588867, + 0.09755648672580719, + 0.09228392690420151, + 0.004396872594952583, + 0.027306286618113518, + 0.023681867867708206, + -0.004659218247979879, + -0.039454273879528046, + 0.006932067684829235, + -0.005234207957983017, + 0.022208791226148605, + 0.039610475301742554, + 0.00819118320941925, + -0.04728361591696739, + 0.05566057562828064, + 0.026316499337553978, + 0.029736196622252464, + 0.05558393895626068, + 0.03991324454545975, + -0.0024526570923626423, + -0.06907109171152115, + -0.011344097554683685, + 3.70340922017931e-06, + 0.03879748284816742, + -0.039443742483854294, + 0.021815717220306396, + -0.09451243281364441, + -0.0031035039573907852, + 0.05234241113066673, + 0.027478082105517387, + 0.12430810928344727, + -0.038138844072818756, + -0.09130650013685226, + 0.008111581206321716, + -0.03125201165676117, + 0.07176375389099121, + -0.001428681192919612, + -0.06232151389122009, + 0.043437931686639786, + -0.021575763821601868, + -0.009875799529254436, + 0.04845815896987915, + -0.001726076821796596, + -0.004878817591816187, + 0.005061221309006214, + 0.003595577320083976, + 0.03164668008685112, + 0.0033057089895009995, + 7.859577453928068e-05, + -0.057318028062582016, + 0.05654303357005119, + 0.009133877232670784, + 0.0018115089042112231, + -0.04036901518702507, + -2.4157092326504426e-08, + -0.03983401134610176, + -0.0710267648100853, + -0.023913942277431488, + 0.004232628736644983, + -0.01916869543492794, + -0.0438082255423069, + -0.017258474603295326, + -0.014425365254282951, + -0.07293350249528885, + -0.009969229809939861, + 0.039690546691417694, + 0.033525705337524414, + -0.10742882639169693, + -0.041721757501363754, + 0.13157258927822113, + 0.007527597714215517, + -0.0909704938530922, + 0.06711678206920624, + -0.046432528644800186, + -0.019637003540992737, + -0.01022503711283207, + -0.0045064715668559074, + 0.047292836010456085, + -0.0002098472905345261, + -0.03427542746067047, + 0.029941003769636154, + 0.03641790151596069, + 0.11265917122364044, + 0.04627504199743271, + 0.03710634261369705, + 0.05033372342586517, + 0.060801342129707336, + 0.00884964782744646, + -0.021526599302887917, + -0.017761733382940292, + -0.03289130702614784, + 0.011804768815636635, + -0.021498922258615494, + 0.05527596175670624, + 0.12743021547794342, + 0.046973299235105515, + 0.008850578218698502, + -0.015282892622053623, + 0.02986258827149868, + -0.010365217924118042, + 0.07566846162080765, + 0.0426800362765789, + 0.04750407487154007, + -0.07496528327465057, + -0.10436072945594788, + -0.019950544461607933, + 0.057999178767204285, + -0.005398877430707216, + 0.028896789997816086, + -0.046838801354169846, + 0.019970381632447243, + 0.02538972534239292, + 0.07512527704238892, + -0.08027229458093643, + 0.058999963104724884, + 0.09365003556013107, + 0.04945824295282364, + 0.05250394344329834, + 0.03205963224172592 + ], + "caret-circle-right-bold||chevron,directional,pointer,pointing,arrowhead,triangle": [ + -0.0006162400241009891, + 0.005432193633168936, + -0.06912336498498917, + 0.005114934407174587, + 0.024870116263628006, + -0.03025006502866745, + 0.05446639657020569, + 0.04605300351977348, + 0.04581383615732193, + -0.06481955945491791, + 0.052889008074998856, + 0.026226267218589783, + 0.009483687579631805, + -0.059782836586236954, + 0.0025146224070340395, + 0.028731655329465866, + -0.1279769390821457, + -0.030018439516425133, + 0.0513879768550396, + 0.016751935705542564, + -0.019582662731409073, + -0.005355512723326683, + -0.009403638541698456, + 0.04015062376856804, + -0.04289398714900017, + 0.06489411741495132, + 0.025845592841506004, + -0.036718592047691345, + -0.017940983176231384, + -0.06210990995168686, + -0.05906439945101738, + -0.010749268345534801, + -0.03032974898815155, + 0.02473132684826851, + -0.08210665732622147, + -0.0014566009631380439, + 0.0009624523227103055, + 0.016592880710959435, + 0.012989865615963936, + -0.013548456132411957, + 0.025359177961945534, + -0.03934486582875252, + 0.039873167872428894, + 0.02242114208638668, + 0.018300144001841545, + 0.07340741902589798, + -0.08630657196044922, + -0.0172308050096035, + -0.013346300460398197, + 0.061006415635347366, + -0.0977601632475853, + -0.09934381395578384, + -0.13708987832069397, + 0.001014300505630672, + 0.0565631203353405, + 0.06114925444126129, + -0.04570222273468971, + -0.03178832307457924, + 0.08692784607410431, + -0.04592495039105415, + 0.06445824354887009, + 0.0036593328695744276, + -0.004228660371154547, + 0.019790124148130417, + -0.006129811517894268, + -0.01808784529566765, + -0.030967099592089653, + -0.007659988012164831, + 0.02597552351653576, + -0.017438702285289764, + -0.025174424052238464, + -0.013291711919009686, + -0.05398736521601677, + -0.0666208267211914, + 0.005338757764548063, + 0.010223278775811195, + 0.036168474704027176, + 0.014173065312206745, + -0.030261794105172157, + -0.06495481729507446, + -0.04286849498748779, + 0.08009235560894012, + 0.017448019236326218, + 0.0839041918516159, + 0.026800258085131645, + 0.0854775533080101, + -0.020488329231739044, + -0.09219849109649658, + 0.03720584511756897, + 0.009342378936707973, + 0.02756156027317047, + 0.007477473933249712, + -0.06920342147350311, + -0.05025266855955124, + -0.047838032245635986, + -0.022644860669970512, + 0.02012135460972786, + -0.07249285280704498, + -0.10927437245845795, + 0.1125895231962204, + 0.07034841924905777, + -0.025198670104146004, + 0.032994721084833145, + -0.02747587114572525, + -0.04103640094399452, + 0.0022769030183553696, + -0.06347857415676117, + -0.02044559083878994, + -0.03810514509677887, + 0.044143710285425186, + -0.030780848115682602, + -0.10080660879611969, + -0.026958633214235306, + -0.07978473603725433, + -0.06872378289699554, + 0.014765697531402111, + -0.12920232117176056, + -0.03332480415701866, + 0.15432728826999664, + 0.04311281070113182, + 0.005694253370165825, + -0.02106797881424427, + -0.06657601147890091, + -0.042647574096918106, + -0.030371615663170815, + 0.002832637168467045, + -0.05477944016456604, + -3.108905582068538e-33, + 0.032286636531353, + 0.034657638520002365, + 0.019022127613425255, + -0.012588520534336567, + -0.010907904244959354, + -0.021295662969350815, + -0.026321927085518837, + -0.040434181690216064, + -0.009540210478007793, + 0.01680484414100647, + 0.11057455092668533, + -0.054123468697071075, + -0.05834566429257393, + 0.03449106588959694, + -0.026794932782649994, + -0.10665374994277954, + -0.0012723174877464771, + -0.017308536916971207, + -0.1677054762840271, + -0.05236273258924484, + -0.01979142427444458, + 0.09003371000289917, + -0.12073932588100433, + -0.024501388892531395, + -0.0276876799762249, + 0.020001593977212906, + 0.009917482733726501, + 0.058884959667921066, + -0.05399767681956291, + 0.030081044882535934, + 0.004390528425574303, + -0.0033803482074290514, + 0.0325157530605793, + -0.048050347715616226, + -0.005525872576981783, + 0.04375153034925461, + -0.049219582229852676, + -0.06359817832708359, + -0.0028039293829351664, + -0.019002582877874374, + 0.04362519085407257, + -0.03718878701329231, + 0.00911114551126957, + -0.010137219913303852, + -0.0009508522925898433, + 0.14716428518295288, + 0.015347356908023357, + 0.005949105601757765, + 0.06915498524904251, + -0.04580233246088028, + -0.0320160835981369, + 0.023650065064430237, + -0.04416406899690628, + 0.02216595597565174, + -0.00885420199483633, + 0.004130915272980928, + -0.04477255046367645, + 0.11567875742912292, + -0.04939954727888107, + 0.004761853255331516, + 0.017160985618829727, + 0.013104943558573723, + 0.027200428768992424, + -0.035199861973524094, + -0.08969983458518982, + 0.013484660536050797, + -0.11160196363925934, + 0.006737690418958664, + 0.13183879852294922, + 0.021148499101400375, + -0.0029382717330008745, + 0.024380359798669815, + 0.11498605459928513, + 0.04483962431550026, + -0.029712708666920662, + 0.0436432883143425, + -0.01636463776230812, + -0.002439439995214343, + 0.028726652264595032, + -0.047270577400922775, + -0.10081910341978073, + 0.013497397303581238, + -0.044894348829984665, + -0.01074319239705801, + 0.04959200695157051, + -0.13223303854465485, + 0.015886111184954643, + -0.019245896488428116, + -0.057357627898454666, + 0.027883274480700493, + -0.0889492928981781, + 0.023777185007929802, + 0.008533521555364132, + 0.023585477843880653, + -0.0875735878944397, + -1.0891975452730809e-33, + -0.044985778629779816, + 0.044024623930454254, + 0.04192625731229782, + -0.01756354793906212, + -0.0930042415857315, + 0.029121601954102516, + 0.01902109757065773, + -0.030637158080935478, + 0.008511807769536972, + 0.08257946372032166, + 0.001940790913067758, + 0.03490094095468521, + 0.007095417473465204, + -0.049252934753894806, + 0.04415871948003769, + 0.017475228756666183, + 0.0271734818816185, + -0.0008498267852701247, + -0.05041782930493355, + 0.03241124749183655, + -0.0148453488945961, + -0.0010131221497431397, + -0.043982431292533875, + 0.10074151307344437, + 0.0010144346160814166, + 0.04578430950641632, + 0.0781186893582344, + -0.030895186588168144, + 0.005206771660596132, + -0.011001688428223133, + -0.027065686881542206, + -0.03778742626309395, + 0.07300320267677307, + 0.09045185148715973, + -0.03617405518889427, + -0.08665037155151367, + -0.0084560327231884, + -0.03642157465219498, + 0.018510136753320694, + 0.01840582676231861, + 0.042342931032180786, + -0.03389401361346245, + 0.09435037523508072, + 0.09430919587612152, + 0.00050766282947734, + 0.023052174597978592, + 0.02720348909497261, + -0.004034383688122034, + -0.041856758296489716, + 0.004427049774676561, + -0.006716136354953051, + 0.018227187916636467, + 0.04381347820162773, + 0.006083712913095951, + -0.04481888562440872, + 0.05728427320718765, + 0.029615959152579308, + 0.025829263031482697, + 0.04628470167517662, + 0.03803470358252525, + 0.0023926475550979376, + -0.07232049107551575, + -0.013445491902530193, + 0.0019997803028672934, + 0.04003600403666496, + -0.03894598037004471, + 0.020849110558629036, + -0.09501662850379944, + -0.0059894053265452385, + 0.05236406251788139, + 0.02519497275352478, + 0.12015384435653687, + -0.03833586722612381, + -0.09112463891506195, + 0.005090845283120871, + -0.03606247901916504, + 0.07222502678632736, + -0.0012975722784176469, + -0.06027039512991905, + 0.03899339959025383, + -0.017478732392191887, + -0.004454975016415119, + 0.043016187846660614, + -0.0016447133384644985, + -0.007562778890132904, + 0.0037879622541368008, + 0.005087470635771751, + 0.030248602852225304, + -0.0003147852257825434, + -0.0005482874112203717, + -0.05770993232727051, + 0.06029478460550308, + 0.008625498972833157, + 0.003553559770807624, + -0.03927339240908623, + -2.3859348274868353e-08, + -0.043417058885097504, + -0.06922214478254318, + -0.024310268461704254, + 0.006532975006848574, + -0.0143099594861269, + -0.047384582459926605, + -0.019759876653552055, + -0.014910613186657429, + -0.07415734976530075, + -0.009888759814202785, + 0.034068573266267776, + 0.03120255656540394, + -0.10675901174545288, + -0.04212353378534317, + 0.13276639580726624, + 0.005400484427809715, + -0.0918021947145462, + 0.0625615268945694, + -0.0437573604285717, + -0.01735118217766285, + -0.015366052277386189, + -0.006392169278115034, + 0.04876754432916641, + -0.006254261825233698, + -0.033283479511737823, + 0.03198675066232681, + 0.03092723898589611, + 0.11313416063785553, + 0.041976217180490494, + 0.04045362398028374, + 0.04877007007598877, + 0.057105109095573425, + 0.008590444922447205, + -0.020448755472898483, + -0.015157071873545647, + -0.03697609901428223, + 0.013778298161923885, + -0.0208569522947073, + 0.06178097799420357, + 0.1294075846672058, + 0.04663814231753349, + 0.01182419341057539, + -0.013961742632091045, + 0.029281096532940865, + -0.009977665729820728, + 0.07544634491205215, + 0.0478849820792675, + 0.04374387487769127, + -0.07662341743707657, + -0.10740543901920319, + -0.02674352191388607, + 0.060500964522361755, + -0.0005512333009392023, + 0.02807575836777687, + -0.04840082675218582, + 0.020659683272242546, + 0.02757861278951168, + 0.07517284154891968, + -0.07872270047664642, + 0.05713116005063057, + 0.09216073155403137, + 0.051286738365888596, + 0.05267459154129028, + 0.03177749365568161 + ], + "caret-circle-up-bold||chevron,directional,pointer,pointing,arrowhead,triangle": [ + -0.013384919613599777, + 0.011131872422993183, + -0.06996627897024155, + -0.008736402727663517, + 0.020962007343769073, + -0.026833558455109596, + 0.051467083394527435, + 0.04785699024796486, + 0.047410812228918076, + -0.053950536996126175, + 0.03662032261490822, + 0.041342124342918396, + 0.0135267935693264, + -0.06191900372505188, + 0.014071758836507797, + 0.038269639015197754, + -0.11472660303115845, + -0.010845538228750229, + 0.049344610422849655, + 0.012586163356900215, + -0.020588235929608345, + -0.0172266848385334, + 0.006199399475008249, + 0.047866739332675934, + -0.04640265554189682, + 0.050054628401994705, + 0.03030884638428688, + -0.03201114758849144, + -0.020969631150364876, + -0.04714984446763992, + -0.07330065220594406, + -0.010847984813153744, + -0.020984161645174026, + 0.01674453727900982, + -0.07668336480855942, + -0.0014786493266001344, + 0.016785817220807076, + 0.030099110677838326, + 0.0022156161721795797, + -0.001174791483208537, + 0.02595691569149494, + -0.043162357062101364, + 0.03459678962826729, + 0.007409939542412758, + 0.02510765939950943, + 0.06865859776735306, + -0.08211065083742142, + -0.015162771567702293, + -0.013699784874916077, + 0.05336863920092583, + -0.08841053396463394, + -0.10776346921920776, + -0.13450869917869568, + -0.0010682115098461509, + 0.056883201003074646, + 0.06336721032857895, + -0.0455738790333271, + -0.041171640157699585, + 0.09801104664802551, + -0.04845704510807991, + 0.058132994920015335, + 0.0064757876098155975, + 0.0051537686958909035, + 0.029479537159204483, + 0.008212405256927013, + -0.01869269087910652, + -0.03159737586975098, + -0.0010068223346024752, + 0.021752025932073593, + -0.009994753636419773, + -0.024938859045505524, + -0.01290111057460308, + -0.050582487136125565, + -0.06803759932518005, + 0.0013642730191349983, + 0.01257833931595087, + 0.03718696907162666, + 0.01049733255058527, + -0.0032740668393671513, + -0.06730705499649048, + -0.04922975227236748, + 0.08210724592208862, + 0.007804560009390116, + 0.08624624460935593, + 0.01829797774553299, + 0.0816507562994957, + -0.02378084510564804, + -0.09253261238336563, + 0.018568897619843483, + 0.010910737328231335, + 0.019385019317269325, + 0.010184903629124165, + -0.06830063462257385, + -0.050164345651865005, + -0.0477973110973835, + -0.0258832685649395, + 0.02945728972554207, + -0.0866134911775589, + -0.10782132297754288, + 0.10870613157749176, + 0.060486674308776855, + -0.02119675651192665, + 0.03275344893336296, + -0.0286275465041399, + -0.05121789872646332, + 0.006122215185314417, + -0.05657283589243889, + -0.02363690547645092, + -0.027394160628318787, + 0.03756101801991463, + -0.033982355147600174, + -0.109366275370121, + -0.01636444218456745, + -0.0739942118525505, + -0.08148488402366638, + 0.02160019986331463, + -0.11885201930999756, + -0.04579026252031326, + 0.148874431848526, + 0.0361531600356102, + 0.027148962020874023, + -0.028929589316248894, + -0.07026532292366028, + -0.035405971109867096, + -0.037942226976156235, + 0.004500352777540684, + -0.0343058817088604, + -3.24092939337122e-33, + 0.05163990333676338, + 0.045781753957271576, + 0.011818047612905502, + -0.010137504898011684, + -0.004534004721790552, + -0.02875019982457161, + -0.03917274996638298, + -0.052310872822999954, + -0.01502239890396595, + 0.026848366484045982, + 0.10475937277078629, + -0.030266858637332916, + -0.0661374107003212, + 0.04427122324705124, + -0.027925482019782066, + -0.11332808434963226, + 0.01224543061107397, + -0.0028823765460401773, + -0.16477346420288086, + -0.05157152935862541, + -0.015479999594390392, + 0.07778294384479523, + -0.11973238736391068, + -0.02650359831750393, + -0.030290547758340836, + 0.028096847236156464, + -0.0031004028860479593, + 0.06648623943328857, + -0.06899873912334442, + 0.029152287170290947, + 0.017438767477869987, + -0.01595173217356205, + 0.022887619212269783, + -0.051415130496025085, + -0.011950655840337276, + 0.05165642127394676, + -0.0585295632481575, + -0.06380444020032883, + -0.00876732636243105, + -0.022590510547161102, + 0.0378701388835907, + -0.043539565056562424, + 0.0010027779499068856, + 0.0007386090001091361, + -0.009302651509642601, + 0.15370890498161316, + -0.0033761020749807358, + -0.02073877677321434, + 0.05756421014666557, + -0.04064096510410309, + -0.02708924375474453, + 0.012404103763401508, + -0.05245836079120636, + 0.01406923122704029, + -0.024376489222049713, + 0.008474275469779968, + -0.04278649017214775, + 0.11404800415039062, + -0.04357629641890526, + 0.009533379226922989, + 0.010125254280865192, + 0.002577967941761017, + 0.028898505493998528, + -0.023410094901919365, + -0.08902799338102341, + 0.016609251499176025, + -0.11267480254173279, + 0.017012977972626686, + 0.12408710271120071, + 0.030677730217576027, + -0.008974975906312466, + 0.033264778554439545, + 0.09934697300195694, + 0.05743855610489845, + -0.023411553353071213, + 0.040933191776275635, + -0.00747224735096097, + -0.029303399845957756, + 0.030231617391109467, + -0.041819505393505096, + -0.09753012657165527, + 0.00689159007743001, + -0.03042720817029476, + -0.028232835233211517, + 0.06835337728261948, + -0.1264837086200714, + 0.008276563137769699, + -0.014091799035668373, + -0.0647633969783783, + 0.02096668817102909, + -0.08573678880929947, + 0.03197037801146507, + 0.03272115811705589, + 0.01420660875737667, + -0.0763673335313797, + -7.295825992878494e-34, + -0.04019398242235184, + 0.05321503058075905, + 0.0390055775642395, + -0.03040425293147564, + -0.09292549639940262, + 0.038328856229782104, + 0.024244951084256172, + -0.030185535550117493, + 0.010008016601204872, + 0.059718817472457886, + -0.020285451784729958, + 0.04371500760316849, + 0.029579155147075653, + -0.0557255782186985, + 0.045214466750621796, + 0.02546403370797634, + 0.023066366091370583, + 0.015519464388489723, + -0.04861489310860634, + 0.037493061274290085, + -0.012349857948720455, + -0.016331106424331665, + -0.05496274679899216, + 0.08992625027894974, + -0.009556544944643974, + 0.050871893763542175, + 0.06978093087673187, + -0.015969522297382355, + 0.010937751270830631, + -0.02154163084924221, + -0.019347520545125008, + -0.03712715953588486, + 0.06845521926879883, + 0.09472158551216125, + -0.042060863226652145, + -0.07683693617582321, + -0.012551074847579002, + -0.04592019319534302, + 0.014970475807785988, + 0.01824318617582321, + 0.041470788419246674, + -0.030040953308343887, + 0.08992265909910202, + 0.09207082539796829, + 0.005983284208923578, + 0.01961127668619156, + 0.019504548981785774, + 0.0026496821083128452, + -0.04953405261039734, + 0.014503676444292068, + -0.011347649618983269, + 0.012372523546218872, + 0.033983584493398666, + 0.023332417011260986, + -0.05087064206600189, + 0.06614357978105545, + 0.04426656290888786, + 0.04165947809815407, + 0.048103053122758865, + 0.041592251509428024, + -0.00011331488349242136, + -0.06033360958099365, + -0.019830161705613136, + 0.010655672289431095, + 0.03374848514795303, + -0.022228652611374855, + 0.0289908517152071, + -0.09452147036790848, + -0.023342568427324295, + 0.05702146142721176, + 0.02705901488661766, + 0.11927963048219681, + -0.03652407228946686, + -0.09036558121442795, + 0.00997901987284422, + -0.03959617391228676, + 0.07845178246498108, + -0.0019434683490544558, + -0.059568729251623154, + 0.021690554916858673, + -0.031946901232004166, + 0.0002223454212071374, + 0.03802892938256264, + 0.017508981749415398, + -0.00946882739663124, + 0.015243235975503922, + -0.004935452248901129, + 0.053264863789081573, + -0.0017221898306161165, + -0.0033251119311898947, + -0.05032462999224663, + 0.053159091621637344, + 0.006513738073408604, + 0.0037349024787545204, + -0.037829574197530746, + -2.3243169167130873e-08, + -0.043430060148239136, + -0.06438460946083069, + -0.03356495872139931, + -0.004754924681037664, + -0.002687536645680666, + -0.04406290501356125, + -0.018890952691435814, + -0.015206616371870041, + -0.06478555500507355, + -0.05248665064573288, + 0.03280757740139961, + 0.035762540996074677, + -0.09823276847600937, + -0.03922596573829651, + 0.13911522924900055, + 0.008733575232326984, + -0.08540009707212448, + 0.07854058593511581, + -0.051908478140830994, + -0.022040955722332, + -0.02744143456220627, + 0.011265375651419163, + 0.05139971897006035, + 0.004628559108823538, + -0.03664550557732582, + 0.030731378123164177, + 0.016457125544548035, + 0.12135064601898193, + 0.047429971396923065, + 0.043118059635162354, + 0.05600908398628235, + 0.0655844435095787, + 0.0035827308893203735, + -0.018047872930765152, + -0.0021206047385931015, + -0.016977688297629356, + 0.01571579836308956, + -0.02336687408387661, + 0.05700032040476799, + 0.131283700466156, + 0.04857518523931503, + 0.003557694610208273, + -0.016176119446754456, + 0.022227639332413673, + -0.019844932481646538, + 0.07976886630058289, + 0.039821311831474304, + 0.0357573926448822, + -0.09964241087436676, + -0.10416936874389648, + -0.022626029327511787, + 0.05530327931046486, + 0.003873624838888645, + 0.029707452282309532, + -0.04981021210551262, + 0.017645590007305145, + 0.02343290112912655, + 0.07520337402820587, + -0.0861823633313179, + 0.0603986531496048, + 0.09058824926614761, + 0.03322501480579376, + 0.05239463970065117, + 0.030324619263410568 + ], + "caret-circle-up-down-bold||chevron,directional,pointer,pointing,arrowhead,triangle": [ + -0.004739530384540558, + 0.016036422923207283, + -0.066999152302742, + -0.01979989744722843, + 0.0030644459184259176, + -0.022723136469721794, + 0.05300476402044296, + 0.056058965623378754, + 0.047665100544691086, + -0.04879966750741005, + 0.039238374680280685, + 0.04377799108624458, + 0.01676531508564949, + -0.05495947226881981, + 0.006809827871620655, + 0.043519292026758194, + -0.11081322282552719, + 0.002942053135484457, + 0.04380190744996071, + 0.010885520838201046, + -0.013870783150196075, + -0.021595101803541183, + -0.010242256335914135, + 0.046466026455163956, + -0.04860231652855873, + 0.05101229250431061, + 0.028186313807964325, + -0.03150659799575806, + -0.019262945279479027, + -0.045478273183107376, + -0.08443306386470795, + -0.011918280273675919, + -0.01559637300670147, + 0.022833729162812233, + -0.09045757353305817, + -0.0047720493748784065, + 0.021067006513476372, + 0.028863437473773956, + 0.0074685304425656796, + 0.008093141950666904, + 0.020517190918326378, + -0.04384063184261322, + 0.024989277124404907, + 0.015704086050391197, + 0.022337671369314194, + 0.0715818926692009, + -0.0846012681722641, + -0.019934874027967453, + -0.016902968287467957, + 0.05231355503201485, + -0.07981734722852707, + -0.08775466680526733, + -0.1346166729927063, + 0.013753216713666916, + 0.06637708842754364, + 0.06131168082356453, + -0.03691540285944939, + -0.040275610983371735, + 0.09873881936073303, + -0.03642834722995758, + 0.07070204615592957, + -0.001204655272886157, + -0.008583908900618553, + 0.02428964525461197, + 0.011785229668021202, + -0.017444182187318802, + -0.035704709589481354, + -0.005350683815777302, + 0.021220389753580093, + -0.009408672340214252, + -0.02982887253165245, + -0.020968886092305183, + -0.04552635923027992, + -0.06319190561771393, + -0.010614528320729733, + 0.013256554491817951, + 0.04479772597551346, + 0.011393089778721333, + -0.0069272276014089584, + -0.07184214144945145, + -0.04582831636071205, + 0.0953386202454567, + 0.0070741926319897175, + 0.08606722205877304, + 0.009554765187203884, + 0.0800895243883133, + -0.022327173501253128, + -0.08267885446548462, + 0.018203498795628548, + 0.005373910069465637, + 0.017398741096258163, + 0.004890115931630135, + -0.05206148698925972, + -0.0449238084256649, + -0.054833583533763885, + -0.02751765213906765, + 0.038630396127700806, + -0.08881746232509613, + -0.09786252677440643, + 0.10608737170696259, + 0.05333951860666275, + -0.028867531567811966, + 0.0369889922440052, + -0.03517407551407814, + -0.05906352773308754, + -0.008558740839362144, + -0.05433887243270874, + -0.028255948796868324, + -0.01624738983809948, + 0.037960536777973175, + -0.04328440502285957, + -0.1023486778140068, + -0.018349191173911095, + -0.06931795924901962, + -0.08399414271116257, + 0.02417908050119877, + -0.11757174879312515, + -0.0481199249625206, + 0.14426656067371368, + 0.03506671264767647, + 0.026107104495167732, + -0.02782236784696579, + -0.06962021440267563, + -0.0387912280857563, + -0.03745340555906296, + 0.0028486354276537895, + -0.04169348627328873, + -3.281235625292978e-33, + 0.06323724240064621, + 0.03095433861017227, + 0.010267970152199268, + -0.0101896608248353, + 0.003427495714277029, + -0.027962103486061096, + -0.05551938712596893, + -0.06250637024641037, + -0.02125645987689495, + 0.04152204841375351, + 0.11015909910202026, + -0.03885660320520401, + -0.06845585256814957, + 0.04992174729704857, + -0.018361570313572884, + -0.11774524301290512, + 0.012022359296679497, + -0.00695386715233326, + -0.15745475888252258, + -0.05884234234690666, + -0.01786772906780243, + 0.08291441202163696, + -0.10606107860803604, + -0.01543573010712862, + -0.018582375720143318, + 0.03336239233613014, + -0.008854844607412815, + 0.054312024265527725, + -0.06807736307382584, + 0.028608107939362526, + 0.009458836168050766, + -0.0254602562636137, + 0.017158256843686104, + -0.06544750183820724, + -0.006500062067061663, + 0.05317731946706772, + -0.07027610391378403, + -0.057126615196466446, + -0.013218238018453121, + -0.03485771641135216, + 0.02558721974492073, + -0.052726320922374725, + -0.016405586153268814, + 0.007949307560920715, + -0.00094525859458372, + 0.1377662718296051, + 0.0020684918854385614, + -0.02991856075823307, + 0.048155494034290314, + -0.0438612662255764, + -0.02242523431777954, + 0.002088405890390277, + -0.04923159256577492, + 0.01596892438828945, + -0.016503745689988136, + 0.013951079919934273, + -0.04268903657793999, + 0.11715560406446457, + -0.049256399273872375, + 0.019055332988500595, + 0.015914715826511383, + 0.002837509149685502, + 0.02647729590535164, + -0.027518615126609802, + -0.08463462442159653, + 0.010920996777713299, + -0.10937001556158066, + 0.01593109779059887, + 0.12390795350074768, + 0.04112141951918602, + -0.01539981085807085, + 0.02993772365152836, + 0.10269247740507126, + 0.055545125156641006, + -0.02977258898317814, + 0.041915301233530045, + -0.0013499977067112923, + -0.03537273779511452, + 0.027101369574666023, + -0.044417135417461395, + -0.10982410609722137, + 0.012041972018778324, + -0.030236296355724335, + -0.035515859723091125, + 0.06584993749856949, + -0.12030849605798721, + 0.01658928580582142, + -0.015802405774593353, + -0.05957677960395813, + 0.00624615466222167, + -0.10026856511831284, + 0.029302671551704407, + 0.033812426030635834, + 0.009356820955872536, + -0.07042813301086426, + -4.379356550221242e-34, + -0.04543513059616089, + 0.0475933663547039, + 0.029223717749118805, + -0.024637524038553238, + -0.09767750650644302, + 0.04083310812711716, + 0.039605703204870224, + -0.03418635204434395, + 0.00784797128289938, + 0.0653836578130722, + -0.013680691830813885, + 0.04639633372426033, + 0.030705751851201057, + -0.05998677387833595, + 0.04248465597629547, + 0.029961759224534035, + 0.026360860094428062, + 0.015587258152663708, + -0.03505551442503929, + 0.03542487323284149, + -0.01916956901550293, + -0.022566311061382294, + -0.05932202562689781, + 0.08400040119886398, + -0.005607014987617731, + 0.049928389489650726, + 0.07762541621923447, + -0.011732889339327812, + 0.014643318019807339, + -0.02459878847002983, + -0.010993440635502338, + -0.03146985173225403, + 0.0668005719780922, + 0.09265895187854767, + -0.055045586079359055, + -0.0772651731967926, + -0.01966036669909954, + -0.032637473195791245, + 0.010890559293329716, + 0.01292804628610611, + 0.03618801757693291, + -0.016503900289535522, + 0.10697142779827118, + 0.09016592055559158, + 0.0002547430631238967, + 0.03212088346481323, + 0.007772374898195267, + 0.005059484858065844, + -0.04793613776564598, + 0.006938794627785683, + -0.0077931866981089115, + 0.007323264144361019, + 0.023388585075736046, + 0.030866926535964012, + -0.05306372418999672, + 0.06307417899370193, + 0.045746058225631714, + 0.04789847880601883, + 0.04169513285160065, + 0.04992939159274101, + -0.004689382389187813, + -0.06771595776081085, + -0.011152546852827072, + 0.018724389374256134, + 0.02753022499382496, + -0.01223081722855568, + 0.02356967329978943, + -0.08199434727430344, + -0.03490623086690903, + 0.05318330228328705, + 0.027888348326086998, + 0.12342245131731033, + -0.03405247628688812, + -0.0926399752497673, + 0.007178713101893663, + -0.05326061323285103, + 0.06362903863191605, + 0.009450765326619148, + -0.064763642847538, + 0.016486303880810738, + -0.028534291312098503, + 0.0029326400253921747, + 0.03184492513537407, + 0.023857731372117996, + -0.009413708932697773, + 0.018729813396930695, + -0.02051755227148533, + 0.06301923096179962, + 0.006059268489480019, + -0.0007619360694661736, + -0.04800976812839508, + 0.05225890502333641, + 0.015602083876729012, + 0.0018596287118270993, + -0.03687068819999695, + -2.3983560026863415e-08, + -0.0419655442237854, + -0.0630570650100708, + -0.02511681616306305, + -0.015814950689673424, + 0.001227279077284038, + -0.026979297399520874, + -0.018416207283735275, + -0.00826654490083456, + -0.049205880612134933, + -0.05620501562952995, + 0.038546472787857056, + 0.0336059145629406, + -0.09850025177001953, + -0.031814996153116226, + 0.14461737871170044, + 0.013752123340964317, + -0.08293041586875916, + 0.07987489551305771, + -0.04070780426263809, + -0.018455898389220238, + -0.01975012570619583, + 0.006216422189027071, + 0.04298940673470497, + 0.016436327248811722, + -0.034280482679605484, + 0.027455003932118416, + 0.012534447945654392, + 0.12942790985107422, + 0.048496849834918976, + 0.03789296746253967, + 0.06103666499257088, + 0.08022400736808777, + 0.010730080306529999, + -0.027316024526953697, + 0.010115290991961956, + -0.007793955039232969, + 0.021165000274777412, + -0.021767521277070045, + 0.05355975776910782, + 0.13261626660823822, + 0.04976709187030792, + -0.006063869688659906, + -0.023684971034526825, + 0.0243582371622324, + -0.019814152270555496, + 0.07875087857246399, + 0.041416678577661514, + 0.04139038920402527, + -0.09199893474578857, + -0.1072583943605423, + -0.010446690954267979, + 0.06063583865761757, + 0.007902005687355995, + 0.029563600197434425, + -0.050187014043331146, + 0.023145437240600586, + 0.019667165353894234, + 0.06068682298064232, + -0.09004158526659012, + 0.051350682973861694, + 0.09124402701854706, + 0.03959085792303085, + 0.054967477917671204, + 0.024239592254161835 + ], + "caret-double-down-bold||chevron,directional,pointer,pointing,arrowhead,triangle": [ + -0.018329067155718803, + -0.0015234416350722313, + -0.008809243328869343, + -0.020289689302444458, + -0.028347073122859, + -0.023021632805466652, + 0.04760486260056496, + 0.06373106688261032, + 0.027073465287685394, + -0.03218270465731621, + 0.03346376493573189, + 0.0357387401163578, + 0.011400027200579643, + -0.04877513647079468, + 0.003063203999772668, + 0.05862124264240265, + -0.10313982516527176, + 0.008526739664375782, + 0.041842568665742874, + 0.022921638563275337, + -0.009565339423716068, + -0.005531779024749994, + -0.02345060370862484, + 0.01930246315896511, + -0.03659994527697563, + 0.02924657240509987, + 0.016849983483552933, + -0.011084084399044514, + -0.019208179786801338, + -0.04844057932496071, + -0.043394267559051514, + -0.022928619757294655, + -0.016743158921599388, + 0.050062812864780426, + -0.10961687564849854, + -0.005782593972980976, + 0.024889560416340828, + 0.01659325696527958, + 0.011509749107062817, + 0.03664149343967438, + 0.007366683799773455, + -0.03049149550497532, + 0.0003037590067833662, + 0.03064381331205368, + 0.02244311384856701, + 0.06115957722067833, + -0.05734970048069954, + -0.03200254589319229, + -0.008920324966311455, + 0.050279244780540466, + -0.068157859146595, + -0.07373246550559998, + -0.11669008433818817, + 0.008753456175327301, + 0.07852951437234879, + 0.07732322067022324, + -0.05563277006149292, + -0.02402135729789734, + 0.06066301092505455, + -0.040534209460020065, + 0.06704159080982208, + 0.028836634010076523, + -0.038753949105739594, + 0.0075272140093147755, + 0.022206751629710197, + 0.002304917434230447, + -0.05173515900969505, + 0.006684883963316679, + 0.001288843690417707, + 0.031950633972883224, + -0.012645089067518711, + -0.03521334007382393, + -0.0333004966378212, + -0.06146964058279991, + -0.02296564169228077, + -0.011705617420375347, + 0.05267966166138649, + -0.0006400381680577993, + 0.005189191550016403, + -0.05877622589468956, + -0.03505789861083031, + 0.08243211358785629, + -0.018890967592597008, + 0.06497989594936371, + 0.010532633401453495, + 0.0422050841152668, + -0.032687414437532425, + -0.077585369348526, + 0.02830241620540619, + -0.002833192702382803, + 0.04164695367217064, + -0.020656399428844452, + -0.05314802750945091, + -0.017778025940060616, + -0.04510771483182907, + -0.017742224037647247, + 0.04320449382066727, + -0.05475000664591789, + -0.10107369720935822, + 0.1218443289399147, + 0.05154496431350708, + -0.023509928956627846, + 0.039099570363759995, + -0.020418740808963776, + -0.050199754536151886, + -0.02772294543683529, + -0.055897071957588196, + -0.0346008725464344, + -0.01873902417719364, + 0.019455190747976303, + -0.02089884877204895, + -0.06956605613231659, + -0.017245588824152946, + -0.053508054465055466, + -0.08636749535799026, + 0.014226377010345459, + -0.09715341776609421, + -0.03692243993282318, + 0.1455700844526291, + 0.016756003722548485, + 0.0005795147735625505, + -0.029945898801088333, + -0.040871284902095795, + -0.036336589604616165, + -0.0058901673182845116, + -0.02111693285405636, + -0.03809959813952446, + -3.4201588537510174e-33, + 0.07060592621564865, + 0.01922544836997986, + 0.028268974274396896, + 0.010335342958569527, + 0.01681908406317234, + 0.00854407250881195, + -0.07599323987960815, + -0.06894633173942566, + -0.0711221694946289, + 0.03876286745071411, + 0.12868157029151917, + -0.06589951366186142, + -0.07911571115255356, + 0.0736689493060112, + -0.06880532205104828, + -0.10492108017206192, + -0.002072276547551155, + -0.004034561105072498, + -0.14033177495002747, + -0.03576871380209923, + -0.017006386071443558, + 0.1026107519865036, + -0.10398559272289276, + -0.014028917998075485, + -0.0077966428361833096, + 0.014607523567974567, + 0.006419826298952103, + 0.043198660016059875, + -0.06410089135169983, + 0.03594092279672623, + -0.0186909269541502, + -0.011874310672283173, + 0.022202691063284874, + -0.0659567192196846, + -0.030440792441368103, + 0.05170487239956856, + -0.07625927776098251, + -0.05255066975951195, + -0.004616579972207546, + -0.02321857400238514, + 0.02736010029911995, + -0.03292001038789749, + 0.023371359333395958, + -0.03866289556026459, + 0.0013289869530126452, + 0.1133870780467987, + -0.009895704686641693, + -0.014983881264925003, + 0.06104600802063942, + -0.05900730937719345, + -0.019123543053865433, + 0.005901032593101263, + -0.05482295900583267, + 0.04516789689660072, + -0.009906426072120667, + 0.012812416069209576, + -0.06476744264364243, + 0.1339871734380722, + -0.02231629751622677, + 0.036721061915159225, + 0.024617908522486687, + 0.002631613751873374, + 0.030701439827680588, + -0.023614490404725075, + -0.08119209855794907, + 0.0004534796462394297, + -0.0787905901670456, + 0.03117460198700428, + 0.1345902383327484, + 0.06267684698104858, + -0.008816680870950222, + 0.01096974965184927, + 0.09985388070344925, + 0.01898815855383873, + -0.024803461506962776, + 0.03855821117758751, + 0.03149337321519852, + -0.04635302349925041, + 0.06242860481142998, + -0.06309167295694351, + -0.12958817183971405, + -0.007007434498518705, + -0.03180426359176636, + -0.014769523404538631, + 0.04573557898402214, + -0.11465992033481598, + 0.003275784896686673, + -0.03496132791042328, + -0.08907182514667511, + 0.038001611828804016, + -0.1059759110212326, + 0.026486359536647797, + -0.011063046753406525, + -0.03212088719010353, + -0.0507979653775692, + -7.321496309942057e-34, + -0.0475589856505394, + 0.0638142079114914, + 0.02047044411301613, + -0.008394020609557629, + -0.10507098585367203, + 0.02213459648191929, + 0.016621030867099762, + -0.02619035169482231, + 0.02030741423368454, + 0.06586649268865585, + 0.03076944872736931, + 0.04721973091363907, + 0.01046033389866352, + -0.0645596906542778, + 0.04625147953629494, + 0.02346683479845524, + 0.02415269799530506, + 0.0015947858337312937, + -0.05062294751405716, + 0.02783082239329815, + 0.014951448887586594, + -0.010710691101849079, + -0.054331570863723755, + 0.10487199574708939, + 0.014666085131466389, + 0.022773630917072296, + 0.07284731417894363, + 0.03034113720059395, + 0.012140646576881409, + -0.026996437460184097, + -0.00024138721346389502, + -0.016303326934576035, + 0.05275651440024376, + 0.07874340564012527, + -0.0658622607588768, + -0.06477464735507965, + -0.022878199815750122, + -0.003952851518988609, + 0.00895663071423769, + 0.03722253069281578, + 0.04347522184252739, + -0.001987445168197155, + 0.0782688707113266, + 0.09404964745044708, + -0.0174837876111269, + 0.0457012765109539, + -0.013476082123816013, + -0.024869432672858238, + -0.007301087491214275, + -0.021794764325022697, + -0.02110235020518303, + -0.0072782994247972965, + 0.005309705622494221, + 0.05065982788801193, + -0.06003257632255554, + 0.04149700701236725, + 0.06277326494455338, + 0.03182834014296532, + 0.01808694377541542, + 0.06514847278594971, + 0.00015468760102521628, + -0.06586913019418716, + -0.02462909184396267, + -0.02210642583668232, + 0.04522690549492836, + -0.02937985211610794, + -0.011401563882827759, + -0.09644050151109695, + -0.007824491709470749, + 0.037354566156864166, + 0.025016644969582558, + 0.11520718783140182, + -0.04284873977303505, + -0.09332834184169769, + 0.0004047910333611071, + -0.05679747834801674, + 0.05060513690114021, + 0.022119244560599327, + -0.052563104778528214, + 0.038302283734083176, + -0.002960813697427511, + -0.020046615973114967, + 0.04058672487735748, + 0.017177559435367584, + -0.024492720142006874, + 0.0231071338057518, + -0.028436118736863136, + 0.08288811147212982, + -0.0024089650250971317, + -0.009990938939154148, + -0.07234017550945282, + 0.05346017703413963, + 0.005804124288260937, + -0.014619182795286179, + -0.08406739681959152, + -2.472521565266561e-08, + -0.06297600269317627, + -0.07568857818841934, + -0.03308054059743881, + -0.003162139095366001, + -0.04596177861094475, + -0.02574874274432659, + -0.041153792291879654, + -0.004859961103647947, + -0.045648906379938126, + -0.053021106868982315, + 0.021202392876148224, + 0.022760849446058273, + -0.10165858268737793, + -0.05354722589254379, + 0.1571996808052063, + 0.0011239781742915511, + -0.10852315276861191, + 0.06584689766168594, + -0.06742437183856964, + -0.02170589566230774, + -0.021715549752116203, + 0.021554408594965935, + 0.023107020184397697, + 0.05789949372410774, + -0.03751499950885773, + 0.03433985263109207, + 0.013370778411626816, + 0.1379024237394333, + 0.06141836568713188, + 0.06136104837059975, + 0.06596638262271881, + 0.08445137739181519, + 0.026046259328722954, + -0.03082580678164959, + -0.011384143494069576, + -0.0036657974123954773, + 0.03598393499851227, + -0.030996544286608696, + 0.07675999402999878, + 0.12172147631645203, + 0.02685089036822319, + -0.033868610858917236, + -0.013124216347932816, + 0.043480027467012405, + -0.011321770958602428, + 0.06785708665847778, + 0.04959345608949661, + 0.05426329746842384, + -0.05236076936125755, + -0.11841059476137161, + 0.015299346297979355, + 0.07259311527013779, + 0.009093593806028366, + 0.05084771662950516, + -0.05852215364575386, + 0.04380694776773453, + -0.02402477152645588, + 0.07047285884618759, + -0.06778686493635178, + 0.05188858509063721, + 0.08823207765817642, + 0.014789202250540257, + 0.029764896258711815, + 0.026885556057095528 + ], + "caret-double-left-bold||chevron,directional,pointer,pointing,arrowhead,triangle": [ + -0.018259568139910698, + -0.01349696796387434, + -0.010692387819290161, + -0.011957159265875816, + -0.005347682628780603, + -0.020704451948404312, + 0.03261297568678856, + 0.05381142348051071, + 0.018540188670158386, + -0.042029380798339844, + 0.05073077231645584, + 0.02549430914223194, + -0.0013696866808459163, + -0.04747898504137993, + -0.002834254177287221, + 0.05533258989453316, + -0.12211921811103821, + -0.018597275018692017, + 0.050257328897714615, + 0.03912415727972984, + -0.020380647853016853, + -0.0017312354175373912, + -0.022774552926421165, + 0.010136714205145836, + -0.03291837498545647, + 0.04016225039958954, + 0.018609844148159027, + -0.029108794406056404, + -0.019326722249388695, + -0.05886170640587807, + -0.023338863626122475, + -0.020950667560100555, + -0.040052127093076706, + 0.04342840611934662, + -0.09471023082733154, + -0.010180416516959667, + 0.022423502057790756, + 0.013510143384337425, + 0.006857072934508324, + 0.017803916707634926, + 0.013092146255075932, + -0.033342938870191574, + 0.016548598185181618, + 0.04050543159246445, + 0.036374762654304504, + 0.06054703891277313, + -0.06589538604021072, + -0.018162399530410767, + 0.0013524474343284965, + 0.05089651420712471, + -0.09425106644630432, + -0.09380609542131424, + -0.12509672343730927, + 0.01870061829686165, + 0.06641791760921478, + 0.06515692919492722, + -0.053577277809381485, + -0.0261452104896307, + 0.0683043822646141, + -0.05213411897420883, + 0.061273977160453796, + 0.03483377769589424, + -0.025428157299757004, + 0.008458894677460194, + 0.006108647212386131, + -0.015217754058539867, + -0.040706075727939606, + 0.015483403578400612, + 0.014614497311413288, + 0.020538518205285072, + -0.02030453458428383, + -0.015988145023584366, + -0.05684714764356613, + -0.060250937938690186, + -0.0008146270993165672, + -0.013667155057191849, + 0.05418292433023453, + -0.0013866635272279382, + 0.000515753694344312, + -0.0521695576608181, + -0.05655110627412796, + 0.07424244284629822, + -0.0022637301590293646, + 0.04504130408167839, + 0.03331146016716957, + 0.05125889554619789, + -0.041427336633205414, + -0.07508056610822678, + 0.04067691043019295, + 0.011998630128800869, + 0.040079765021800995, + -0.004174011759459972, + -0.05833180248737335, + -0.04162463918328285, + -0.02657347545027733, + -0.02059931494295597, + 0.03272849693894386, + -0.039722904562950134, + -0.09631706029176712, + 0.11614542454481125, + 0.071559838950634, + -0.02040778659284115, + 0.026705073192715645, + -0.01994076371192932, + -0.030172254890203476, + -0.002600565552711487, + -0.06902152299880981, + -0.024152429774403572, + -0.036833446472883224, + 0.017493562772870064, + -0.013593968003988266, + -0.0837477445602417, + -0.022968005388975143, + -0.07885736227035522, + -0.07799951732158661, + 0.005992910824716091, + -0.12815886735916138, + -0.02705019898712635, + 0.1719481199979782, + 0.0201990008354187, + -0.014620031230151653, + -0.043844498693943024, + -0.03058669902384281, + -0.04165453091263771, + -0.0027970564551651478, + -0.011481039226055145, + -0.04371880739927292, + -3.5365100192793766e-33, + 0.04747672751545906, + 0.0222546998411417, + 0.031195955350995064, + 0.0034171321894973516, + 0.01284587662667036, + 0.012110453099012375, + -0.046644724905490875, + -0.046821676194667816, + -0.06384924799203873, + 0.01896551437675953, + 0.12639875710010529, + -0.056439418345689774, + -0.07217802852392197, + 0.056516919285058975, + -0.05789561942219734, + -0.10351935774087906, + -0.021010974422097206, + -0.0032787765376269817, + -0.1442064642906189, + -0.03259771317243576, + -0.012768984772264957, + 0.1075095534324646, + -0.10233881324529648, + -0.010837934911251068, + -0.021158520132303238, + -0.0019835256971418858, + 0.01614387333393097, + 0.05162344127893448, + -0.05917908623814583, + 0.03561493754386902, + -0.007979750633239746, + 0.0047596050426363945, + 0.022565064951777458, + -0.0669545829296112, + -0.02360955812036991, + 0.03819865360856056, + -0.06212950125336647, + -0.0774148628115654, + 0.006854311563074589, + -0.006083899177610874, + 0.03842100873589516, + -0.018427718430757523, + 0.044632621109485626, + -0.04796307161450386, + -0.011801760643720627, + 0.12937289476394653, + -0.007674850057810545, + 0.01208086870610714, + 0.08731918036937714, + -0.06354755908250809, + -0.022359944880008698, + 0.013258254155516624, + -0.042341794818639755, + 0.040225107222795486, + -0.004807458259165287, + 0.011669677682220936, + -0.05299776792526245, + 0.12221929430961609, + -0.022693494334816933, + 0.02499549090862274, + 0.01380571722984314, + 0.022145895287394524, + 0.0375741645693779, + -0.020825833082199097, + -0.09248519688844681, + -0.010435810312628746, + -0.08238659799098969, + 0.022648092359304428, + 0.14080117642879486, + 0.04900464788079262, + 0.0013608277076855302, + 0.0048604486510157585, + 0.10915184020996094, + 0.019867390394210815, + -0.029808679595589638, + 0.02332594431936741, + 0.008120233193039894, + -0.025112750008702278, + 0.03572585806250572, + -0.0526944138109684, + -0.11935997009277344, + -0.0013117854250594974, + -0.03536459803581238, + -0.0009497575229033828, + 0.03187907859683037, + -0.1282733529806137, + 0.0002858667867258191, + -0.0280168317258358, + -0.08748365938663483, + 0.046486254781484604, + -0.09216441959142685, + 0.023074505850672722, + -0.029436524957418442, + -0.00983596220612526, + -0.06944070011377335, + -9.952006088775152e-34, + -0.052532825618982315, + 0.05557909980416298, + 0.0228703785687685, + -0.012528549879789352, + -0.09551819413900375, + 0.012996487319469452, + 0.016749532893300056, + -0.023004136979579926, + 0.020358165726065636, + 0.062692791223526, + 0.03188636898994446, + 0.04684731736779213, + 0.0027973144315183163, + -0.06335287541151047, + 0.04219972714781761, + 0.00951305404305458, + 0.028301099315285683, + -0.011931849643588066, + -0.0613396093249321, + 0.021465687081217766, + 0.013494846411049366, + -0.011535623110830784, + -0.037240415811538696, + 0.12185432761907578, + 0.02153136022388935, + 0.021094229072332382, + 0.07014894485473633, + 0.009232165291905403, + -0.004582309629768133, + -0.016124537214636803, + 0.003915807697921991, + -0.019320599734783173, + 0.0698430985212326, + 0.07306312769651413, + -0.04873649775981903, + -0.07654909789562225, + -0.011744116432964802, + -0.01882069557905197, + 0.03958018496632576, + 0.04596356675028801, + 0.05898096412420273, + -0.016268925741314888, + 0.07145616412162781, + 0.10753433406352997, + -0.011913151480257511, + 0.05103857442736626, + -0.003194480901584029, + -0.02565251663327217, + -0.02279462106525898, + -0.01651398092508316, + -0.017778513953089714, + 0.020528964698314667, + 0.016577577218413353, + 0.021868156269192696, + -0.04750265181064606, + 0.03183918818831444, + 0.033933717757463455, + 0.01540139876306057, + 0.039470430463552475, + 0.05032215267419815, + 0.006354041397571564, + -0.060387495905160904, + -0.016892075538635254, + -0.03975920379161835, + 0.043806567788124084, + -0.050786156207323074, + -0.001872259541414678, + -0.10796047747135162, + 0.009404560551047325, + 0.03490382805466652, + 0.04150102287530899, + 0.11605869978666306, + -0.05353471636772156, + -0.08691584318876266, + -0.011941816657781601, + -0.024496033787727356, + 0.06315574049949646, + 0.008082897402346134, + -0.052085764706134796, + 0.05258157104253769, + -0.010089837945997715, + -0.03187507390975952, + 0.06248074769973755, + 0.003928773570805788, + -0.024890674278140068, + 0.013750016689300537, + 0.0069384886883199215, + 0.05099913105368614, + -0.0016238070093095303, + -0.011728353798389435, + -0.0667593702673912, + 0.05184849724173546, + -0.0006786843296140432, + -0.0178191140294075, + -0.07512878626585007, + -2.540729404643116e-08, + -0.05699525773525238, + -0.08995597809553146, + -0.030556954443454742, + 0.0006161091150715947, + -0.06374537944793701, + -0.04069845750927925, + -0.028507450595498085, + -0.008129403926432133, + -0.06728216260671616, + -0.016046667471528053, + 0.02504640445113182, + 0.024802763015031815, + -0.09947070479393005, + -0.06142627075314522, + 0.15168458223342896, + -0.002524811774492264, + -0.1083088144659996, + 0.0618569515645504, + -0.07588392496109009, + -0.013523552566766739, + -0.019086038693785667, + 0.020008103922009468, + 0.02998211234807968, + 0.0336037278175354, + -0.04477497935295105, + 0.03937993943691254, + 0.029673254117369652, + 0.10951193422079086, + 0.06884443759918213, + 0.04962487146258354, + 0.05302271246910095, + 0.05887492373585701, + 0.017507994547486305, + -0.033148143440485, + -0.02776506543159485, + -0.007998247630894184, + 0.026084519922733307, + -0.031098688021302223, + 0.06474833190441132, + 0.12328534573316574, + 0.03676211088895798, + -0.017298121005296707, + -0.004899526014924049, + 0.04265788197517395, + -0.010052918456494808, + 0.06272724270820618, + 0.04631473124027252, + 0.0667777806520462, + -0.05974452197551727, + -0.11192896962165833, + 0.002826283685863018, + 0.07039003819227219, + -0.0183216854929924, + 0.039100807160139084, + -0.055631089955568314, + 0.04114896431565285, + -0.019289067015051842, + 0.07569245994091034, + -0.0593627505004406, + 0.053713370114564896, + 0.10733743757009506, + 0.033075496554374695, + 0.0350053533911705, + 0.040708161890506744 + ], + "caret-double-right-bold||chevron,directional,pointer,pointing,arrowhead,triangle": [ + -0.016779450699687004, + -0.011363272555172443, + -0.020312340930104256, + -0.015038914047181606, + -0.011382854543626308, + -0.01105506531894207, + 0.034830451011657715, + 0.05513135343790054, + 0.017689870670437813, + -0.039951205253601074, + 0.06017846614122391, + 0.025566233322024345, + 0.001991966273635626, + -0.04979633539915085, + -0.001818103832192719, + 0.052286434918642044, + -0.12780381739139557, + -0.020847894251346588, + 0.048197682946920395, + 0.03114885464310646, + -0.009323230013251305, + -0.0011449437588453293, + -0.023431852459907532, + 0.011596277356147766, + -0.029808348044753075, + 0.04292628541588783, + 0.015411433763802052, + -0.025882277637720108, + -0.01890232041478157, + -0.055558204650878906, + -0.024924088269472122, + -0.021826623007655144, + -0.04067571833729744, + 0.04347631335258484, + -0.08928278088569641, + -0.001214057207107544, + 0.018738245591521263, + 0.008013738319277763, + 0.007189029362052679, + 0.010783923789858818, + 0.00623113801702857, + -0.038976382464170456, + 0.014640150591731071, + 0.03590332344174385, + 0.03290722891688347, + 0.06492622941732407, + -0.061776500195264816, + -0.015469718724489212, + -0.0013186702271923423, + 0.04734769091010094, + -0.09334222227334976, + -0.0879991203546524, + -0.12673774361610413, + 0.015489797107875347, + 0.07373372465372086, + 0.07594781368970871, + -0.05823298171162605, + -0.023460863158106804, + 0.0698947161436081, + -0.0515332892537117, + 0.05587339401245117, + 0.03072446398437023, + -0.027694934979081154, + 0.012910938821732998, + 0.0072633964009583, + -0.015132072381675243, + -0.04390863701701164, + 0.013605584390461445, + 0.010746898129582405, + 0.026575842872262, + -0.02007649652659893, + -0.015829823911190033, + -0.05472945421934128, + -0.05663464963436127, + -0.0034002040047198534, + -0.015895633026957512, + 0.049912720918655396, + 0.002638668054714799, + -0.005554717965424061, + -0.053192801773548126, + -0.05408407002687454, + 0.07025107741355896, + -0.0017385260434821248, + 0.05402280390262604, + 0.03370140492916107, + 0.053856369107961655, + -0.0423184372484684, + -0.07249075919389725, + 0.047373365610837936, + 0.014615296386182308, + 0.040625233203172684, + -0.015633655712008476, + -0.05763010308146477, + -0.035514313727617264, + -0.02776450663805008, + -0.01799067109823227, + 0.032691121101379395, + -0.04242415353655815, + -0.0958341434597969, + 0.11265210062265396, + 0.07159078866243362, + -0.024037646129727364, + 0.028718896210193634, + -0.021202851086854935, + -0.0291310902684927, + -0.008079406805336475, + -0.06645043939352036, + -0.02121789939701557, + -0.03631816804409027, + 0.022347791120409966, + -0.014450451359152794, + -0.08535245805978775, + -0.0240476094186306, + -0.07527262717485428, + -0.07573246210813522, + 0.007617041002959013, + -0.12666358053684235, + -0.03011247143149376, + 0.16398993134498596, + 0.01674441434442997, + -0.015694033354520798, + -0.03518770635128021, + -0.0331789068877697, + -0.03863506764173508, + -0.005447142757475376, + -0.014031107537448406, + -0.046784546226263046, + -3.388946172658824e-33, + 0.04390953481197357, + 0.01927715726196766, + 0.03325829654932022, + 0.004009489435702562, + 0.010629894211888313, + 0.009488283656537533, + -0.049670614302158356, + -0.047052640467882156, + -0.06326688081026077, + 0.029215268790721893, + 0.12664932012557983, + -0.061343707144260406, + -0.06961403042078018, + 0.05853216350078583, + -0.05521010607481003, + -0.10128746926784515, + -0.020404476672410965, + -0.0004189146857243031, + -0.14675778150558472, + -0.032961711287498474, + -0.015722891315817833, + 0.10644973814487457, + -0.10001461952924728, + -0.013260806910693645, + -0.019984407350420952, + -0.0027588787488639355, + 0.01569943130016327, + 0.047908175736665726, + -0.05240224301815033, + 0.03423212841153145, + -0.010244524106383324, + -0.0003522267215885222, + 0.024621887132525444, + -0.06320587545633316, + -0.01853644847869873, + 0.034967176616191864, + -0.056216977536678314, + -0.07550042122602463, + 0.0016396165592595935, + -0.009946353733539581, + 0.040057141333818436, + -0.016834700480103493, + 0.04094551503658295, + -0.04955451190471649, + -0.0023976245429366827, + 0.12322559952735901, + -0.010809367522597313, + 0.014537098817527294, + 0.09200388193130493, + -0.06061912328004837, + -0.017354385927319527, + 0.019703233614563942, + -0.03942281752824783, + 0.04669506102800369, + -0.002757359528914094, + 0.011895375326275826, + -0.053874168545007706, + 0.13202936947345734, + -0.025537146255373955, + 0.02574324607849121, + 0.012897037900984287, + 0.021055715158581734, + 0.04045725241303444, + -0.023517342284321785, + -0.09223927557468414, + -0.005718868691474199, + -0.08143895864486694, + 0.019170382991433144, + 0.14404214918613434, + 0.0499005988240242, + -0.0046123964712023735, + 0.007092632353305817, + 0.1049685925245285, + 0.02347949706017971, + -0.03271748870611191, + 0.025062240660190582, + -0.0013704084558412433, + -0.02133970335125923, + 0.0384969525039196, + -0.051847271621227264, + -0.12352973222732544, + -0.0022694214712828398, + -0.040249623358249664, + -0.0009379124385304749, + 0.024973148480057716, + -0.13530248403549194, + -0.002772454172372818, + -0.0316549576818943, + -0.08073340356349945, + 0.04119904339313507, + -0.09118017554283142, + 0.02578832022845745, + -0.028866905719041824, + -0.00983588770031929, + -0.07245396822690964, + -1.1697440712303549e-33, + -0.04852798953652382, + 0.055945783853530884, + 0.031082559376955032, + -0.010048788040876389, + -0.1012415736913681, + 0.015328377485275269, + 0.017079874873161316, + -0.033497974276542664, + 0.023507947102189064, + 0.06630003452301025, + 0.031709302216768265, + 0.04362056404352188, + 0.0023685309570282698, + -0.0641489252448082, + 0.04477855563163757, + 0.008126610890030861, + 0.027635294944047928, + -0.012059939093887806, + -0.0567212775349617, + 0.022728048264980316, + 0.010289165191352367, + -0.014231977984309196, + -0.03839465230703354, + 0.1246131882071495, + 0.02222905308008194, + 0.02171291969716549, + 0.07118328660726547, + 0.009694513864815235, + 0.0011253423290327191, + -0.013926633633673191, + 0.005356727167963982, + -0.021050335839390755, + 0.05775340273976326, + 0.07753284275531769, + -0.0499701052904129, + -0.0821957215666771, + -0.013231082819402218, + -0.012697950005531311, + 0.035790517926216125, + 0.04486948996782303, + 0.06642090529203415, + -0.012422719970345497, + 0.06989071518182755, + 0.11114359647035599, + -0.015560170635581017, + 0.05376392975449562, + -0.0013617941876873374, + -0.024774430319666862, + -0.025842489674687386, + -0.02264024131000042, + -0.01922808773815632, + 0.016368160024285316, + 0.019449608400464058, + 0.018161609768867493, + -0.04281584918498993, + 0.03474964573979378, + 0.03865975886583328, + 0.010842535644769669, + 0.032353416085243225, + 0.048775069415569305, + 0.012682685628533363, + -0.0646660327911377, + -0.017152221873402596, + -0.03626915439963341, + 0.043834395706653595, + -0.052024342119693756, + -0.008473869413137436, + -0.10934879630804062, + 0.005836886819452047, + 0.03236318379640579, + 0.03931687772274017, + 0.11045689880847931, + -0.053961604833602905, + -0.08913520723581314, + -0.016556939110159874, + -0.031246565282344818, + 0.05987860634922981, + 0.007430523633956909, + -0.04962465167045593, + 0.04756557568907738, + -0.0034393270034343004, + -0.025418872013688087, + 0.056835826486349106, + 0.008449908345937729, + -0.03062589094042778, + 0.014654664322733879, + 0.007872856222093105, + 0.0475805439054966, + -0.00015543203335255384, + -0.014786547981202602, + -0.06573761254549026, + 0.05882260948419571, + -0.0029454866889864206, + -0.0123986741527915, + -0.0739908441901207, + -2.5204910159004612e-08, + -0.0632796436548233, + -0.08690568804740906, + -0.0299601498991251, + -0.001908621983602643, + -0.06167116388678551, + -0.04063604399561882, + -0.029109971597790718, + -0.004678027238696814, + -0.06464577466249466, + -0.018559416756033897, + 0.021140670403838158, + 0.022555388510227203, + -0.1021762490272522, + -0.061550579965114594, + 0.15861093997955322, + -0.0042655556462705135, + -0.107732392847538, + 0.05635855346918106, + -0.07414699345827103, + -0.01247346680611372, + -0.021845610812306404, + 0.01890484429895878, + 0.02929646708071232, + 0.031361497938632965, + -0.0428585447371006, + 0.040064021944999695, + 0.026424476876854897, + 0.11048918962478638, + 0.06401097029447556, + 0.053064290434122086, + 0.05297311395406723, + 0.05595128983259201, + 0.020081348717212677, + -0.03095068223774433, + -0.02205526828765869, + -0.005636459216475487, + 0.028076069429516792, + -0.028839856386184692, + 0.0719967633485794, + 0.11845754086971283, + 0.0351378433406353, + -0.015563574619591236, + -0.005304817110300064, + 0.04214285686612129, + -0.009762133471667767, + 0.062392473220825195, + 0.05033854767680168, + 0.06584053486585617, + -0.05904385447502136, + -0.1185416430234909, + -0.004171715583652258, + 0.07588453590869904, + -0.013420050963759422, + 0.03650188446044922, + -0.0579075813293457, + 0.04816921055316925, + -0.01996634155511856, + 0.070028156042099, + -0.05534695088863373, + 0.05004580318927765, + 0.10846830159425735, + 0.03754524514079094, + 0.03255458548665047, + 0.04026778042316437 + ], + "caret-double-up-bold||chevron,directional,pointer,pointing,arrowhead,triangle": [ + -0.030692655593156815, + -0.0053999219089746475, + -0.018793832510709763, + -0.020925138145685196, + -0.015502954833209515, + -0.014737640507519245, + 0.035859234631061554, + 0.058944638818502426, + 0.025091128423810005, + -0.030199280008673668, + 0.044389039278030396, + 0.03976589813828468, + 0.0023504323326051235, + -0.059017229825258255, + 0.010327763855457306, + 0.06522324681282043, + -0.11649617552757263, + 0.003041145158931613, + 0.04640243202447891, + 0.022514116019010544, + -0.006553088780492544, + -0.012610205449163914, + -0.006423782091587782, + 0.02193083055317402, + -0.02878907322883606, + 0.025159211829304695, + 0.01298964861780405, + -0.011651379987597466, + -0.021407384425401688, + -0.040304552763700485, + -0.036107249557971954, + -0.01584070548415184, + -0.035300225019454956, + 0.03480372577905655, + -0.08550532907247543, + -0.0027935185935348272, + 0.03324897214770317, + 0.025804368779063225, + -0.0014615448890253901, + 0.02695787325501442, + 0.00977600459009409, + -0.04240955039858818, + 0.00517925014719367, + 0.01348544005304575, + 0.035498589277267456, + 0.0598154291510582, + -0.056330181658267975, + -0.009254462085664272, + 0.001659901812672615, + 0.04098236560821533, + -0.08200334757566452, + -0.10267844051122665, + -0.1244935467839241, + 0.003919635433703661, + 0.07184398174285889, + 0.08362101763486862, + -0.06623905897140503, + -0.03107917681336403, + 0.07634848356246948, + -0.052956901490688324, + 0.05096155032515526, + 0.03964431211352348, + -0.013167273253202438, + 0.025692792609333992, + 0.028523076325654984, + -0.01450447179377079, + -0.04504517465829849, + 0.021138962358236313, + 0.0025104498490691185, + 0.03990477696061134, + -0.013700705952942371, + -0.01718338206410408, + -0.04364592209458351, + -0.06404265761375427, + -0.0029029163997620344, + -0.016582127660512924, + 0.042722318321466446, + -0.00601056357845664, + 0.026211438700556755, + -0.05223942920565605, + -0.053772568702697754, + 0.06734216213226318, + -0.017245156690478325, + 0.05158768221735954, + 0.02757151797413826, + 0.039764586836099625, + -0.04396491125226021, + -0.08595294505357742, + 0.02968544326722622, + 0.013729934580624104, + 0.0429358072578907, + -0.014383170753717422, + -0.05542781949043274, + -0.027993280440568924, + -0.029336532577872276, + -0.016947807744145393, + 0.0408766083419323, + -0.05100909247994423, + -0.09876447916030884, + 0.11332782357931137, + 0.05707930773496628, + -0.0221111923456192, + 0.02827979251742363, + -0.013897364027798176, + -0.03890230879187584, + -0.009652134962379932, + -0.05936911329627037, + -0.02033943124115467, + -0.024911755695939064, + 0.01346233393996954, + -0.01512936968356371, + -0.08430875092744827, + -0.016590287908911705, + -0.06298477202653885, + -0.0923810601234436, + 0.02041235752403736, + -0.11092299968004227, + -0.038978200405836105, + 0.1526050716638565, + 0.012239521369338036, + -0.00034400916774757206, + -0.045812465250492096, + -0.03638489171862602, + -0.028102070093154907, + -0.018965598195791245, + -0.019045677036046982, + -0.0267783273011446, + -3.401554451597347e-33, + 0.06347554922103882, + 0.03861287981271744, + 0.02240191400051117, + 0.002953640418127179, + 0.007131257560104132, + 0.0048889536410570145, + -0.06232675164937973, + -0.06251776963472366, + -0.06732846051454544, + 0.03192353621125221, + 0.11915931850671768, + -0.03953826427459717, + -0.07781317085027695, + 0.06967219710350037, + -0.06495078653097153, + -0.10951774567365646, + -0.0006521607283502817, + 0.02028079330921173, + -0.13795407116413116, + -0.030992887914180756, + -0.00970899872481823, + 0.09736325591802597, + -0.10120652616024017, + -0.018628599122166634, + -0.021820485591888428, + 0.010535079054534435, + 0.003408220363780856, + 0.05618593469262123, + -0.06983105093240738, + 0.03642662614583969, + 0.005975767504423857, + -0.012101786211133003, + 0.01471919845789671, + -0.06127979978919029, + -0.029301779344677925, + 0.044210538268089294, + -0.05505714565515518, + -0.06920144706964493, + -0.006121841724961996, + -0.011935604736208916, + 0.03116869553923607, + -0.020024534314870834, + 0.03693447634577751, + -0.040405791252851486, + -0.010111850686371326, + 0.12409520149230957, + -0.03583090752363205, + -0.0121659766882658, + 0.07537569850683212, + -0.06104635074734688, + -0.017373956739902496, + 0.01290152594447136, + -0.05066249147057533, + 0.041925471276044846, + -0.02079913206398487, + 0.01734410598874092, + -0.053675003349781036, + 0.1258939653635025, + -0.014206268824636936, + 0.03457201272249222, + 0.009672850370407104, + 0.010501663200557232, + 0.03798095881938934, + -0.006797057576477528, + -0.08962063491344452, + -0.0017000030493363738, + -0.07596123218536377, + 0.029017947614192963, + 0.13353002071380615, + 0.06166403368115425, + -0.013180308043956757, + 0.016223009675741196, + 0.08931147307157516, + 0.03799787908792496, + -0.02322026900947094, + 0.022372141480445862, + 0.01766412891447544, + -0.05065355449914932, + 0.043609827756881714, + -0.04617036506533623, + -0.12262582033872604, + -0.007683734875172377, + -0.0236296858638525, + -0.021214373409748077, + 0.04134347289800644, + -0.13002917170524597, + -0.010714407078921795, + -0.03131735324859619, + -0.08761654049158096, + 0.04263203218579292, + -0.08502648025751114, + 0.03532647341489792, + -0.0023799207992851734, + -0.023936090990900993, + -0.05296307057142258, + -8.815147849541493e-34, + -0.04294140264391899, + 0.06919325143098831, + 0.03222997486591339, + -0.02363661490380764, + -0.10054317861795425, + 0.02665858529508114, + 0.01829138584434986, + -0.03325639292597771, + 0.025665968656539917, + 0.038663286715745926, + 0.011146188713610172, + 0.05282697081565857, + 0.021587077528238297, + -0.0683354064822197, + 0.04957829415798187, + 0.016934650018811226, + 0.022230781614780426, + 0.008237631991505623, + -0.06410694867372513, + 0.025445712730288506, + 0.017838474363088608, + -0.02375776879489422, + -0.04635881260037422, + 0.1053333580493927, + 0.01491940300911665, + 0.025659484788775444, + 0.058927491307258606, + 0.02407774142920971, + 0.006076104938983917, + -0.02789417840540409, + 0.010590730234980583, + -0.02312648855149746, + 0.051858775317668915, + 0.08272536844015121, + -0.04878419265151024, + -0.06422892212867737, + -0.0199392382055521, + -0.029729606583714485, + 0.029193956404924393, + 0.04705994948744774, + 0.0662081241607666, + -0.010504471138119698, + 0.056028686463832855, + 0.1075696274638176, + -0.009801744483411312, + 0.04210095852613449, + -0.003153227735310793, + -0.023737698793411255, + -0.02635788731276989, + -0.01616375520825386, + -0.024882644414901733, + 0.003452626522630453, + 0.007495359983295202, + 0.0407630018889904, + -0.051842544227838516, + 0.04733533412218094, + 0.0562574677169323, + 0.033965155482292175, + 0.030328024178743362, + 0.05039408057928085, + 0.012493829242885113, + -0.0551450252532959, + -0.02747960016131401, + -0.034333422780036926, + 0.042659927159547806, + -0.03830099105834961, + 0.0028172717429697514, + -0.1105283796787262, + -0.007196622900664806, + 0.04172845929861069, + 0.03691524639725685, + 0.11843906342983246, + -0.054225582629442215, + -0.09376221150159836, + -0.007968712598085403, + -0.035842835903167725, + 0.06422057002782822, + 0.007229211740195751, + -0.048071544617414474, + 0.02724502980709076, + -0.019856762140989304, + -0.019057149067521095, + 0.05387217178940773, + 0.023724118247628212, + -0.03572949394583702, + 0.02382342517375946, + 0.0009606495150364935, + 0.07431519776582718, + -0.005772861652076244, + -0.016405384987592697, + -0.058347154408693314, + 0.044606633484363556, + -0.013804894872009754, + -0.011297040618956089, + -0.07840204238891602, + -2.4413550292479158e-08, + -0.06709159910678864, + -0.0818595215678215, + -0.03873567655682564, + -0.00507749430835247, + -0.03964608162641525, + -0.047358062118291855, + -0.0322510190308094, + -0.0012110142270103097, + -0.05961820110678673, + -0.0676753968000412, + 0.013558540493249893, + 0.03104441612958908, + -0.09110543131828308, + -0.06706006824970245, + 0.1622253805398941, + -0.00402213167399168, + -0.10575371980667114, + 0.07262973487377167, + -0.08558358997106552, + -0.0190564151853323, + -0.034290753304958344, + 0.038915492594242096, + 0.03716408461332321, + 0.043731797486543655, + -0.052263304591178894, + 0.03585468977689743, + 0.014437321573495865, + 0.12208904325962067, + 0.06619144231081009, + 0.054524656385183334, + 0.06320703029632568, + 0.0642409473657608, + 0.015369283966720104, + -0.02625187300145626, + -0.012711609713733196, + 0.008093802258372307, + 0.0350375734269619, + -0.028132425621151924, + 0.06438151001930237, + 0.12023141980171204, + 0.030591875314712524, + -0.029120834544301033, + -0.002947073895484209, + 0.04088136553764343, + -0.013101493008434772, + 0.06678880006074905, + 0.04133687913417816, + 0.054245878010988235, + -0.07985925674438477, + -0.11571072041988373, + 0.000688475149217993, + 0.0707421600818634, + -0.006920352578163147, + 0.04080183431506157, + -0.06303253024816513, + 0.03892964869737625, + -0.02638096734881401, + 0.07604159414768219, + -0.06830283254384995, + 0.05803828313946724, + 0.10045091062784195, + 0.012793867848813534, + 0.03503463417291641, + 0.03643456846475601 + ], + "caret-down-bold||chevron,directional,pointer,pointing,arrowhead,triangle": [ + -0.010533742606639862, + -0.0018316404893994331, + -0.024141371250152588, + -0.02224758267402649, + -0.007628244813531637, + -0.014493787661194801, + 0.055756427347660065, + 0.046287890523672104, + 0.028030993416905403, + -0.032691121101379395, + 0.02341577038168907, + 0.04525206610560417, + 0.019952043890953064, + -0.04429937154054642, + -0.005743095651268959, + 0.05398969724774361, + -0.0911080613732338, + 0.0035162451677024364, + 0.0452583022415638, + 0.04166160151362419, + -0.02515679970383644, + 0.005397929344326258, + -0.02254226990044117, + 0.02348816953599453, + -0.05388408899307251, + 0.03981614485383034, + 0.039731718599796295, + -0.029141757637262344, + -0.01566910184919834, + -0.05597592890262604, + -0.0613703727722168, + -0.02721778303384781, + -0.012210365384817123, + 0.03592803701758385, + -0.09306035935878754, + -0.005784530192613602, + 0.020458413287997246, + 0.010813713073730469, + 0.01668878272175789, + 0.04553309455513954, + 0.016159052029252052, + -0.019636748358607292, + 0.009005637839436531, + 0.04367543384432793, + 0.02391168475151062, + 0.06510621309280396, + -0.05793751776218414, + -0.03083515726029873, + -0.012063004076480865, + 0.05115506425499916, + -0.08152414113283157, + -0.08215606957674026, + -0.12084338814020157, + 0.01079057902097702, + 0.05236426740884781, + 0.06769786030054092, + -0.0439666323363781, + -0.029264068230986595, + 0.07183700054883957, + -0.034352950751781464, + 0.0725053995847702, + 0.013785441406071186, + -0.027476172894239426, + -0.0021329743321985006, + 0.015565607696771622, + 0.002945703687146306, + -0.03124336153268814, + 0.007466337643563747, + 0.010226767510175705, + 0.021826276555657387, + -0.021458754315972328, + -0.025393076241016388, + -0.04321318492293358, + -0.06086060777306557, + -0.03412572667002678, + 0.0008757817558944225, + 0.06274294853210449, + 0.0036961217410862446, + -0.006977225188165903, + -0.07570178061723709, + -0.04292934387922287, + 0.085117407143116, + -0.0115888686850667, + 0.06127147004008293, + -0.0004190139297861606, + 0.05835021659731865, + -0.04647685959935188, + -0.07654399424791336, + 0.01898365654051304, + -0.00480955746024847, + 0.033394910395145416, + -0.007502594497054815, + -0.05886438488960266, + -0.0304772537201643, + -0.034563541412353516, + -0.018762318417429924, + 0.05315621942281723, + -0.06279648095369339, + -0.09357532858848572, + 0.11646217107772827, + 0.04945662245154381, + -0.008816682733595371, + 0.030997171998023987, + -0.021980931982398033, + -0.044773295521736145, + 0.0014578868867829442, + -0.0547989197075367, + -0.03173741698265076, + -0.031243763864040375, + 0.02776535227894783, + -0.03204992040991783, + -0.0897047221660614, + -0.018700484186410904, + -0.06411921977996826, + -0.0878303200006485, + 0.0016181237297132611, + -0.10325748473405838, + -0.045968711376190186, + 0.15385183691978455, + 0.028175143525004387, + 0.02448163367807865, + -0.020142292603850365, + -0.05316624417901039, + -0.03560663014650345, + -0.00823439285159111, + 0.0037135861348360777, + -0.02428671531379223, + -3.0295464890765868e-33, + 0.08169833570718765, + 0.01055928785353899, + 0.011105380952358246, + 0.019279299303889275, + 0.023223910480737686, + 0.007037125062197447, + -0.06620460748672485, + -0.05810252204537392, + -0.06910490989685059, + 0.031865011900663376, + 0.12961611151695251, + -0.056444354355335236, + -0.08272011578083038, + 0.05522659048438072, + -0.038860611617565155, + -0.10349448025226593, + -0.011849798262119293, + -0.01317229587584734, + -0.16301164031028748, + -0.041037943214178085, + -0.013042080216109753, + 0.09423434734344482, + -0.11264821141958237, + -0.024592557922005653, + -0.020681975409388542, + 0.01665511354804039, + -0.007895278744399548, + 0.05015648528933525, + -0.08638931065797806, + 0.024556389078497887, + -0.00566176837310195, + -0.010150955989956856, + 0.02422151528298855, + -0.07637139409780502, + -0.033852122724056244, + 0.041113805025815964, + -0.08350715041160583, + -0.05694896727800369, + -0.000835911079775542, + -0.03436213731765747, + 0.03429325297474861, + -0.030231820419430733, + 0.0010994073236361146, + -0.01700318418443203, + -0.007727400865405798, + 0.14219309389591217, + 0.01193824503570795, + -0.032579850405454636, + 0.0518321692943573, + -0.04653334990143776, + -0.0076371608301997185, + -0.005110475234687328, + -0.05395759269595146, + 0.03756963089108467, + -0.010808766819536686, + 0.010272717103362083, + -0.06775301694869995, + 0.14409257471561432, + -0.025297649204730988, + 0.018293945118784904, + 0.026066765189170837, + -0.012225070968270302, + 0.03527166321873665, + -0.02634543366730213, + -0.08275889605283737, + 0.005899098701775074, + -0.09296897053718567, + 0.04648970812559128, + 0.12572278082370758, + 0.04821067303419113, + -0.0014312240527942777, + 0.02498798817396164, + 0.08923611789941788, + 0.027475304901599884, + -0.02551264502108097, + 0.04019242525100708, + 0.0017382093938067555, + -0.039350394159555435, + 0.051787368953228, + -0.07429932802915573, + -0.10608699172735214, + 0.0013342994498088956, + -0.03676621615886688, + -0.007624338380992413, + 0.06147315725684166, + -0.10399432480335236, + 0.014751213602721691, + -0.028132013976573944, + -0.07837951183319092, + 0.02708214335143566, + -0.11231247335672379, + 0.016437431797385216, + -0.004397536162286997, + -0.022971240803599358, + -0.06370807439088821, + -1.0327274395080513e-33, + -0.05023844912648201, + 0.052513860166072845, + 0.01897434890270233, + -0.017541049048304558, + -0.1168198361992836, + 0.03299573436379433, + 0.028475189581513405, + -0.01940607838332653, + 0.0048919240944087505, + 0.0771869570016861, + 0.02336633764207363, + 0.04630279168486595, + 0.008248851634562016, + -0.07114845514297485, + 0.0331818051636219, + 0.025671062991023064, + 0.02968953177332878, + -0.004763682838529348, + -0.0474337600171566, + 0.027089791372418404, + 0.004241737071424723, + -0.013115480542182922, + -0.06144032999873161, + 0.09812459349632263, + 0.0017483923584222794, + 0.02822248451411724, + 0.08266224712133408, + 0.024535633623600006, + 0.00240401946939528, + -0.04024627059698105, + -0.0013907536631450057, + -0.009732473641633987, + 0.05523711442947388, + 0.07667697221040726, + -0.08831515908241272, + -0.055633775889873505, + -0.03796364739537239, + -0.005161624401807785, + 0.02010199800133705, + 0.035080861300230026, + 0.0455147922039032, + -0.00967869721353054, + 0.1050027534365654, + 0.08142317086458206, + -0.01948838122189045, + 0.057680364698171616, + -0.02415328659117222, + -0.02409767173230648, + -0.013735145330429077, + 0.0014206551713868976, + -0.01776604913175106, + -0.0065330988727509975, + 0.017915138974785805, + 0.04315531998872757, + -0.07064811885356903, + 0.04853047430515289, + 0.06195107474923134, + 0.02861829288303852, + 0.011651515029370785, + 0.06716876477003098, + 0.003459514118731022, + -0.04861747846007347, + -0.01736796647310257, + -0.017138423398137093, + 0.037754159420728683, + -0.02570902369916439, + -0.0016296117100864649, + -0.09430832415819168, + 0.00874828826636076, + 0.038743287324905396, + 0.036625925451517105, + 0.10698729008436203, + -0.028290066868066788, + -0.0802515372633934, + 0.00877014547586441, + -0.06160680577158928, + 0.06531058996915817, + 0.01934220641851425, + -0.053125254809856415, + 0.030290525406599045, + -0.005136953666806221, + -0.007257838733494282, + 0.029854731634259224, + 0.014847581274807453, + -0.007206035777926445, + 0.02620045095682144, + -0.030433887615799904, + 0.06259424984455109, + -0.0006022718152962625, + -0.001106805051676929, + -0.06482550501823425, + 0.04089256003499031, + 0.02064729854464531, + -0.028056953102350235, + -0.07686137408018112, + -2.3358369460879658e-08, + -0.049826543778181076, + -0.06580556184053421, + -0.026197759434580803, + -0.017812829464673996, + -0.04087694361805916, + -0.01043590810149908, + -0.03058711625635624, + -0.00647111888974905, + -0.04392645135521889, + -0.04077010974287987, + 0.040863338857889175, + 0.005659155081957579, + -0.1018517017364502, + -0.02111385017633438, + 0.1505853682756424, + 0.010072755627334118, + -0.10371802002191544, + 0.05761367082595825, + -0.053339455276727676, + -0.024582000449299812, + -0.03425101935863495, + 0.024398140609264374, + 0.021917294710874557, + 0.05403882637619972, + -0.023536425083875656, + 0.03434949740767479, + 0.017544280737638474, + 0.1376546025276184, + 0.0681522786617279, + 0.062426064163446426, + 0.06919148564338684, + 0.09701071679592133, + 0.025038093328475952, + -0.0229496993124485, + -0.010335532017052174, + 0.011654280126094818, + 0.020410191267728806, + -0.03233930096030235, + 0.07001101970672607, + 0.13070517778396606, + 0.021021608263254166, + -0.025806758552789688, + -0.03349637612700462, + 0.02254115790128708, + -0.026352815330028534, + 0.06310364603996277, + 0.046825990080833435, + 0.04783337563276291, + -0.05974850058555603, + -0.1109112799167633, + 0.012711336836218834, + 0.05667051672935486, + 0.0014272809494286776, + 0.052243299782276154, + -0.055867087095975876, + 0.03116626851260662, + -0.017613956704735756, + 0.06836728751659393, + -0.06918305903673172, + 0.04499576613306999, + 0.09260845929384232, + 0.00936035718768835, + 0.033636756241321564, + 0.0400264672935009 + ], + "caret-left-bold||chevron,directional,pointer,pointing,arrowhead,triangle": [ + -0.011136616580188274, + -0.016269348561763763, + -0.022585269063711166, + -0.008642753586173058, + 0.011278754100203514, + -0.012319481000304222, + 0.04367045313119888, + 0.033249109983444214, + 0.02275732159614563, + -0.038985610008239746, + 0.04067401587963104, + 0.03303709626197815, + 0.0054387617856264114, + -0.04624955356121063, + -0.010269480757415295, + 0.054816413670778275, + -0.10868395864963531, + -0.022855157032608986, + 0.04785320162773132, + 0.05494971573352814, + -0.036606624722480774, + 0.009241742081940174, + -0.027914822101593018, + 0.015104888938367367, + -0.04530078172683716, + 0.049565911293029785, + 0.039455004036426544, + -0.04135503992438316, + -0.017502373084425926, + -0.06581082940101624, + -0.038766734302043915, + -0.026327747851610184, + -0.024051832035183907, + 0.02759501151740551, + -0.08465665578842163, + -0.01152607798576355, + 0.015600043348968029, + 0.001338752219453454, + 0.010644911788403988, + 0.028416357934474945, + 0.011642956174910069, + -0.033847957849502563, + 0.01885194517672062, + 0.0496499128639698, + 0.034862011671066284, + 0.06121550127863884, + -0.07184338569641113, + -0.0180368572473526, + 0.0016633810009807348, + 0.05017919838428497, + -0.10145827382802963, + -0.09657616913318634, + -0.1297316998243332, + 0.01813252456486225, + 0.04237445443868637, + 0.05641588568687439, + -0.04676419124007225, + -0.03326594457030296, + 0.07793807983398438, + -0.04741695895791054, + 0.06406264752149582, + 0.026936858892440796, + -0.01736864075064659, + 0.0017953291535377502, + 0.008261491544544697, + -0.01500057801604271, + -0.025181753560900688, + 0.008290698751807213, + 0.021860064938664436, + 0.012690206989645958, + -0.023307740688323975, + -0.012043881230056286, + -0.06415536999702454, + -0.061307769268751144, + -0.008784430101513863, + -0.006470495369285345, + 0.06609158962965012, + 0.0033891780767589808, + -0.007283548824489117, + -0.06669126451015472, + -0.06327671557664871, + 0.07545884698629379, + -0.0003053825639653951, + 0.04516297206282616, + 0.027676790952682495, + 0.06415523588657379, + -0.04824671521782875, + -0.0708179920911789, + 0.03812231123447418, + 0.009401130490005016, + 0.02724856697022915, + 0.007291293237358332, + -0.06306032091379166, + -0.050971619784832, + -0.011902502737939358, + -0.013299320824444294, + 0.03731996566057205, + -0.04995419457554817, + -0.09341839700937271, + 0.11342732608318329, + 0.07324221730232239, + -0.006582299713045359, + 0.02186470851302147, + -0.017399223521351814, + -0.02971394918859005, + 0.01624543033540249, + -0.06990048289299011, + -0.01789328083395958, + -0.04928767681121826, + 0.027689792215824127, + -0.02300865575671196, + -0.09854727983474731, + -0.030418571084737778, + -0.08306340873241425, + -0.07684667408466339, + -0.006020709406584501, + -0.13042370975017548, + -0.030157800763845444, + 0.17562516033649445, + 0.028842080384492874, + 0.00085197773296386, + -0.03380635008215904, + -0.04465484991669655, + -0.03921680152416229, + -0.006039436906576157, + 0.0033829016610980034, + -0.03536611422896385, + -3.2219668327825334e-33, + 0.04976874962449074, + 0.006070686969906092, + 0.017302870750427246, + 0.013445425778627396, + 0.015425450168550014, + 0.014872203581035137, + -0.04136841744184494, + -0.0344819612801075, + -0.06625611335039139, + 0.013675575144588947, + 0.12715207040309906, + -0.04817333072423935, + -0.07285360991954803, + 0.039585962891578674, + -0.03226576745510101, + -0.10127376765012741, + -0.03016219660639763, + -0.014252732507884502, + -0.16750602424144745, + -0.03740435838699341, + -0.008097957819700241, + 0.10318201780319214, + -0.10718817263841629, + -0.019830897450447083, + -0.02939644828438759, + 0.0031465510837733746, + 0.007546351756900549, + 0.05468413978815079, + -0.08200477808713913, + 0.02670564316213131, + 0.006166424602270126, + 0.007978013716638088, + 0.020487060770392418, + -0.07768471539020538, + -0.028011580929160118, + 0.03420000150799751, + -0.06000501662492752, + -0.0743708536028862, + 0.01163158193230629, + -0.0174475759267807, + 0.03927910700440407, + -0.01539047434926033, + 0.023138076066970825, + -0.034148361533880234, + -0.0162417721003294, + 0.1526344120502472, + 0.012228249572217464, + -0.0033457567915320396, + 0.08349432796239853, + -0.05154772475361824, + -0.01719827950000763, + 0.002973058959469199, + -0.03461604192852974, + 0.030349060893058777, + -0.004615240730345249, + 0.008147996850311756, + -0.052454229444265366, + 0.135972261428833, + -0.025700615718960762, + 0.009702608920633793, + 0.0203422661870718, + 0.010716840624809265, + 0.036470308899879456, + -0.02070322260260582, + -0.09555523097515106, + -0.0021894776728004217, + -0.09681931138038635, + 0.03476649895310402, + 0.13807567954063416, + 0.031214667484164238, + 0.006146938074380159, + 0.019922150298953056, + 0.10425123572349548, + 0.029155833646655083, + -0.03334876149892807, + 0.026527825742959976, + -0.015404285863041878, + -0.019903594627976418, + 0.026761040091514587, + -0.060199737548828125, + -0.10137329250574112, + 0.004066346678882837, + -0.04343843087553978, + 0.01086996216326952, + 0.04477766156196594, + -0.11855477094650269, + 0.008344069123268127, + -0.030412422493100166, + -0.07734838873147964, + 0.045203205198049545, + -0.09582256525754929, + 0.01615392044186592, + -0.02251003496348858, + -0.00024281363585032523, + -0.07864178717136383, + -1.258737717959737e-33, + -0.050357475876808167, + 0.04492394998669624, + 0.018626442179083824, + -0.02109711803495884, + -0.10177934914827347, + 0.026766419410705566, + 0.02799052558839321, + -0.017710799351334572, + 0.010625166818499565, + 0.07401376962661743, + 0.028104403987526894, + 0.05038515850901604, + -0.009273300878703594, + -0.06885116547346115, + 0.03035881370306015, + 0.013745180331170559, + 0.033662836998701096, + -0.01616046018898487, + -0.058187831193208694, + 0.019533304497599602, + 0.002733310917392373, + -0.01145365834236145, + -0.042245086282491684, + 0.11905133724212646, + 0.008090759627521038, + 0.02478535659611225, + 0.07423648983240128, + 0.0033283184748142958, + -0.014113392680883408, + -0.02612963505089283, + 0.0011354491580277681, + -0.01095305010676384, + 0.0725768506526947, + 0.07399030774831772, + -0.06545048952102661, + -0.07023350149393082, + -0.026081405580043793, + -0.020778900012373924, + 0.0492173470556736, + 0.047986146062612534, + 0.06213873624801636, + -0.02421482466161251, + 0.09388236701488495, + 0.09079010784626007, + -0.01139425951987505, + 0.057827308773994446, + -0.012243572622537613, + -0.028501801192760468, + -0.02273685298860073, + 0.0007976177148520947, + -0.014583777636289597, + 0.022519506514072418, + 0.0222039632499218, + 0.01678069494664669, + -0.054821450263261795, + 0.03517811745405197, + 0.03315267339348793, + 0.016920054331421852, + 0.04026855528354645, + 0.04972407966852188, + 0.007797209080308676, + -0.04013267904520035, + -0.009526276029646397, + -0.02966522052884102, + 0.03970838338136673, + -0.04678567871451378, + 0.007331622764468193, + -0.10550212115049362, + 0.0226892177015543, + 0.03644352778792381, + 0.04693109169602394, + 0.10761881619691849, + -0.04257059469819069, + -0.07713481783866882, + -0.0012409895425662398, + -0.030881907790899277, + 0.06531573832035065, + 0.00577023858204484, + -0.05422564223408699, + 0.045874956995248795, + -0.010022959671914577, + -0.02024158649146557, + 0.05283360183238983, + 0.005588079337030649, + -0.016555480659008026, + 0.017493607476353645, + 0.007341326214373112, + 0.03141213580965996, + 0.0046462626196444035, + -0.0069782123900949955, + -0.059379175305366516, + 0.04337752237915993, + 0.009864738211035728, + -0.02725338563323021, + -0.07158435136079788, + -2.4141895593743357e-08, + -0.04985058680176735, + -0.08043459057807922, + -0.02413759008049965, + -0.009884932078421116, + -0.05917462706565857, + -0.02482478879392147, + -0.02149481512606144, + -0.00893547385931015, + -0.06410275399684906, + -0.0057166400365531445, + 0.043206941336393356, + 0.014807398431003094, + -0.09981021285057068, + -0.0383877195417881, + 0.14181162416934967, + 0.0039830803871154785, + -0.10889822989702225, + 0.05253728851675987, + -0.0610647052526474, + -0.017722388729453087, + -0.022826246917247772, + 0.02200050838291645, + 0.030296090990304947, + 0.026738040149211884, + -0.03198106959462166, + 0.036510225385427475, + 0.032767053693532944, + 0.11164480447769165, + 0.06891052424907684, + 0.05427307263016701, + 0.05630016326904297, + 0.0667409598827362, + 0.019172435626387596, + -0.024998079985380173, + -0.02920701913535595, + 0.0005711131962016225, + 0.012149933725595474, + -0.03292437642812729, + 0.05502329394221306, + 0.1282871812582016, + 0.032293159514665604, + -0.012994523160159588, + -0.024207452312111855, + 0.02202467806637287, + -0.0238934475928545, + 0.06162620335817337, + 0.04185691475868225, + 0.0583266019821167, + -0.06581007689237595, + -0.11710599809885025, + 0.0063818288035690784, + 0.06099524348974228, + -0.024732166901230812, + 0.04182480648159981, + -0.0473838672041893, + 0.030682014301419258, + -0.01040787436068058, + 0.07042282074689865, + -0.0583919920027256, + 0.04776648432016373, + 0.11184436082839966, + 0.03711008280515671, + 0.0357251837849617, + 0.04638780653476715 + ], + "caret-line-down-bold||*new*,chevron,directional,pointer,pointing,arrowhead,triangle": [ + -0.03301924839615822, + -0.009635359048843384, + -0.03312518447637558, + -0.012793490663170815, + -0.011756441555917263, + -0.01540137268602848, + 0.03173619508743286, + 0.03559152036905289, + 0.00781626533716917, + -0.011908067390322685, + 0.010143761523067951, + 0.029378950595855713, + 0.007506633177399635, + -0.059599798172712326, + 0.0014041897375136614, + 0.059806209057569504, + -0.09423394501209259, + -0.012459485791623592, + 0.03284205123782158, + 0.03585667163133621, + -0.03002374991774559, + -0.006282893940806389, + -0.04489028826355934, + 0.022858696058392525, + -0.04187821224331856, + 0.046903982758522034, + 0.05706912279129028, + -0.01687885820865631, + -0.016427241265773773, + -0.06680016219615936, + -0.0729704201221466, + -0.02462228573858738, + 0.019865181297063828, + 0.048958152532577515, + -0.05511535704135895, + 0.011829681694507599, + 0.043037738651037216, + 0.0298581812530756, + -0.010880242101848125, + 0.022518418729305267, + 0.006534467916935682, + -0.02152932621538639, + -0.0076741185039281845, + 0.049086153507232666, + 0.031526219099760056, + 0.04708128049969673, + -0.05133001506328583, + -0.050821688026189804, + 0.02063068561255932, + 0.057214345782995224, + -0.09422820806503296, + -0.08310631662607193, + -0.130092591047287, + 0.00929294340312481, + 0.06357492506504059, + 0.06837668269872665, + -0.019126303493976593, + -0.04733121395111084, + 0.049774397164583206, + -0.04736221209168434, + 0.06456486135721207, + 0.028889598324894905, + -0.012185199186205864, + -0.008540928363800049, + 0.004461160860955715, + -0.006238685455173254, + -0.05242060497403145, + 0.03011923097074032, + 0.030580611899495125, + 0.019983885809779167, + -0.05596845597028732, + -0.021641721948981285, + -0.043791867792606354, + -0.0432913564145565, + -0.03817605599761009, + -0.0017811129800975323, + 0.04528430104255676, + 0.019660625606775284, + 0.004927730653434992, + -0.059229739010334015, + -0.045804642140865326, + 0.07881367206573486, + -0.015015563927590847, + 0.06524859368801117, + -0.009174785576760769, + 0.06925549358129501, + -0.04709319397807121, + -0.09530113637447357, + 0.020621810108423233, + -0.0026859547942876816, + 0.036267075687646866, + 0.008353915996849537, + -0.0737304836511612, + -0.024687545374035835, + -0.06071111559867859, + -0.005310461390763521, + 0.052180152386426926, + -0.08619190752506256, + -0.07781780511140823, + 0.12282582372426987, + 0.03458211570978165, + -0.009762424975633621, + 0.038084421306848526, + 0.005097188521176577, + -0.050543032586574554, + 0.011040892452001572, + -0.04968421161174774, + -0.03157453238964081, + -0.04507607966661453, + 0.03956528753042221, + -0.01373210921883583, + -0.1056232899427414, + -0.02772669680416584, + -0.07858259975910187, + -0.06984439492225647, + 0.006153825670480728, + -0.11127693206071854, + -0.043330319225788116, + 0.13923613727092743, + 0.05872233584523201, + 0.039801739156246185, + -0.02287795953452587, + -0.04858626797795296, + -0.029308337718248367, + -0.013326049782335758, + 0.023535000160336494, + -0.008176255971193314, + -2.5880598309245215e-33, + 0.07373113930225372, + 0.02270178310573101, + 0.022411754354834557, + 0.03630823269486427, + 0.022026943042874336, + 0.009603177197277546, + -0.08822374045848846, + -0.03872556611895561, + -0.05839679762721062, + 0.04351455345749855, + 0.12028539180755615, + -0.10264002531766891, + -0.06594547629356384, + 0.06211654841899872, + -0.035549573600292206, + -0.12015581130981445, + -0.014881898649036884, + -0.040544040501117706, + -0.14187495410442352, + -0.019052760675549507, + -0.06692258268594742, + 0.08932355791330338, + -0.07746008038520813, + -0.028025351464748383, + -0.011850093491375446, + 0.00010771636152639985, + 0.012389568611979485, + 0.026284541934728622, + -0.08246070891618729, + 0.02041643112897873, + -0.011448502540588379, + -0.018333859741687775, + 0.04204234853386879, + -0.06365828216075897, + -0.07545792311429977, + 0.06701034307479858, + -0.08555185794830322, + -0.06733845174312592, + 0.006789149716496468, + -0.023311033844947815, + 0.03557925298810005, + -0.0303544569760561, + 0.015842027962207794, + -0.001289867446757853, + 0.015246090479195118, + 0.14084233343601227, + -0.005339725874364376, + -0.023868752643465996, + 0.03617475554347038, + -0.033958904445171356, + -0.02519892528653145, + 0.0021659552585333586, + -0.04892955347895622, + 0.03517650440335274, + -0.014378605410456657, + 0.002468791091814637, + -0.07589015364646912, + 0.1540369987487793, + -0.006359959952533245, + 0.013969644904136658, + 0.029201261699199677, + -0.0030931171495467424, + 0.02330303005874157, + 0.014913524501025677, + -0.05032271146774292, + 0.004022409673780203, + -0.0831749215722084, + 0.044632334262132645, + 0.11630122363567352, + 0.050739917904138565, + -0.01689436100423336, + 0.0006247630226425827, + 0.07097113877534866, + 0.04414360225200653, + -0.02752493880689144, + 0.030230745673179626, + 0.008716206066310406, + -0.036231629550457, + 0.07356283068656921, + -0.09613747894763947, + -0.09557916969060898, + 0.00721014803275466, + -0.02205425128340721, + 0.00035128480521962047, + 0.06551461666822433, + -0.09980563074350357, + 0.043504051864147186, + -0.027804603800177574, + -0.06716281920671463, + 0.025421440601348877, + -0.11917566508054733, + 0.009985513053834438, + -0.00787466298788786, + -0.02735552377998829, + -0.05089988932013512, + -1.5137504726175819e-33, + -0.03424970060586929, + 0.04970937222242355, + 0.011040781624615192, + -0.010073132812976837, + -0.11473074555397034, + 0.04313746467232704, + 0.006250767502933741, + -0.015729892998933792, + 0.034864768385887146, + 0.11049839854240417, + 0.02788875624537468, + 0.05997069180011749, + 0.016016462817788124, + -0.06541923433542252, + 0.04881088808178902, + 0.03155394271016121, + -0.004129408858716488, + -0.010347376577556133, + -0.029307981953024864, + 0.030292561277747154, + 0.010901511646807194, + -0.024513600394129753, + -0.06115671247243881, + 0.06626061350107193, + 0.0017677880823612213, + -0.010566401295363903, + 0.07292862236499786, + 0.0382215715944767, + 0.01123498473316431, + -0.049781449139118195, + -0.007089212071150541, + -0.019646599888801575, + 0.05200052261352539, + 0.08009839057922363, + -0.07766786962747574, + -0.04451562091708183, + -0.011341233737766743, + -0.0015352490590885282, + 0.023915395140647888, + 0.03546808287501335, + 0.028911413624882698, + -0.0008684661006554961, + 0.1128653734922409, + 0.04020056501030922, + -0.045837629586458206, + 0.055787090212106705, + -0.03605711832642555, + -0.021440109238028526, + -0.026174547150731087, + 0.010588203556835651, + -0.02980329468846321, + 0.0032029140274971724, + 0.01438471395522356, + 0.04232477769255638, + -0.06718432903289795, + 0.05712028965353966, + 0.05847844481468201, + 0.03757805749773979, + 0.00808105431497097, + 0.056439679116010666, + -0.005153425503522158, + -0.04909638315439224, + -0.050263434648513794, + -0.006038828752934933, + 0.06544168293476105, + -0.028325846418738365, + -0.004377081990242004, + -0.08963187038898468, + -0.004578156862407923, + 0.03967937454581261, + 0.028776636347174644, + 0.10972367227077484, + -0.06347160786390305, + -0.06960926204919815, + -0.0021513886749744415, + -0.07099223136901855, + 0.04544631764292717, + 0.02496969886124134, + -0.05427991971373558, + 0.02399997040629387, + 0.013850287534296513, + -0.00610628305003047, + 0.02542557381093502, + 0.012650513090193272, + -0.0046721999533474445, + 0.03536832705140114, + -0.015590946190059185, + 0.07976186275482178, + 0.0017806360265240073, + -0.01558368094265461, + -0.0845126286149025, + 0.04403947293758392, + -0.012423286214470863, + -0.014918775297701359, + -0.07915572077035904, + -2.720121905497308e-08, + -0.059513598680496216, + -0.07805797457695007, + -0.012219484895467758, + -0.001090288977138698, + -0.016634952276945114, + -0.01601926051080227, + -0.03295077756047249, + -0.010008524172008038, + -0.046696990728378296, + -0.046966973692178726, + 0.043675560504198074, + 0.030348503962159157, + -0.1048293188214302, + -0.009748613461852074, + 0.14164629578590393, + 0.001451802090741694, + -0.0850096344947815, + 0.04544759914278984, + -0.046613309532403946, + -0.0458403080701828, + -0.035131752490997314, + 0.03733053058385849, + 0.027294600382447243, + 0.05017443373799324, + -0.02230232022702694, + 0.030746635049581528, + 0.011857765726745129, + 0.12307881563901901, + 0.05881992354989052, + 0.06554515659809113, + 0.07409179210662842, + 0.0943731814622879, + 0.03769858554005623, + -0.02454533241689205, + 0.00192165223415941, + -0.009322484023869038, + 0.009960640221834183, + -0.021986864507198334, + 0.05767453461885452, + 0.11212530732154846, + 0.030505595728754997, + 0.00876548420637846, + -0.032013799995183945, + 0.0018469510832801461, + -0.02794460393488407, + 0.03170294687151909, + 0.036631714552640915, + 0.023161569610238075, + -0.07579962909221649, + -0.12070798873901367, + 0.003291587345302105, + 0.072262704372406, + 0.01579951122403145, + 0.022591043263673782, + -0.06547445058822632, + 0.04116037115454674, + -0.005628378130495548, + 0.07767102867364883, + -0.05485926941037178, + 0.039653073996305466, + 0.08872737735509872, + 0.012556572444736958, + 0.04375283047556877, + 0.03170894458889961 + ], + "caret-line-left-bold||*new*,chevron,directional,pointer,pointing,arrowhead,triangle": [ + -0.03355603292584419, + -0.011038297787308693, + -0.032717496156692505, + -0.007252559531480074, + -0.0022892553824931383, + -0.01754465326666832, + 0.028493445366621017, + 0.026610152795910835, + -0.0029247922357171774, + -0.017903555184602737, + 0.03137107193470001, + 0.01979987509548664, + -0.003224941436201334, + -0.059878043830394745, + -0.007326249033212662, + 0.0620790533721447, + -0.11736097931861877, + -0.04193102940917015, + 0.03800969198346138, + 0.04665272682905197, + -0.04135219007730484, + -0.00026675444678403437, + -0.05400284752249718, + 0.012650670483708382, + -0.036322880536317825, + 0.05617116019129753, + 0.05360807105898857, + -0.028479771688580513, + -0.01728787273168564, + -0.07385021448135376, + -0.052152082324028015, + -0.01980270817875862, + 0.003255539108067751, + 0.04201968386769295, + -0.04766548424959183, + 0.006515888962894678, + 0.03686149790883064, + 0.022666562348604202, + -0.01573544181883335, + 0.007258739322423935, + 0.0023420355282723904, + -0.030133886262774467, + 0.005294599570333958, + 0.05521996319293976, + 0.04453347250819206, + 0.05005238205194473, + -0.05992040038108826, + -0.03359756991267204, + 0.03303176164627075, + 0.05298865959048271, + -0.11489006131887436, + -0.09624683111906052, + -0.1358443945646286, + 0.008307467214763165, + 0.05113167315721512, + 0.058883484452962875, + -0.018842248246073723, + -0.05545034632086754, + 0.05284219607710838, + -0.058046333491802216, + 0.059878431260585785, + 0.0385407879948616, + -0.0023905711714178324, + -7.843149069231004e-05, + 0.00038776997826062143, + -0.02253919653594494, + -0.0478208102285862, + 0.03406599536538124, + 0.03594077005982399, + 0.010667957365512848, + -0.05735645815730095, + -0.009580479003489017, + -0.06509191542863846, + -0.03815621882677078, + -0.014760917983949184, + -0.015559914521872997, + 0.043700940907001495, + 0.02411402389407158, + 0.008253286592662334, + -0.053028497844934464, + -0.0571000762283802, + 0.07251498848199844, + -0.0056426990777254105, + 0.045372046530246735, + 0.011037450283765793, + 0.07432451099157333, + -0.053136274218559265, + -0.09473615884780884, + 0.038805924355983734, + 0.01044523250311613, + 0.03637949749827385, + 0.021345268934965134, + -0.07983087003231049, + -0.04201887547969818, + -0.03916710615158081, + -0.0027758250944316387, + 0.03370653837919235, + -0.07231311500072479, + -0.0786791667342186, + 0.1252441257238388, + 0.05188265070319176, + -0.009609952569007874, + 0.03179645910859108, + 0.01001148670911789, + -0.038616687059402466, + 0.01802840456366539, + -0.067256860435009, + -0.014411112293601036, + -0.06344490498304367, + 0.04065749794244766, + -0.007249085232615471, + -0.11362140625715256, + -0.038306403905153275, + -0.09772377461194992, + -0.05950962007045746, + 0.0031125086825340986, + -0.13771413266658783, + -0.027556907385587692, + 0.1528605967760086, + 0.06154093146324158, + 0.024065371602773666, + -0.03228521719574928, + -0.04478662833571434, + -0.027981648221611977, + -0.013192645274102688, + 0.020591359585523605, + -0.02422238513827324, + -2.733494379731155e-33, + 0.043972305953502655, + 0.02218753658235073, + 0.02244115248322487, + 0.029535921290516853, + 0.01167142204940319, + 0.017755599692463875, + -0.05948406830430031, + -0.014535565860569477, + -0.054523829370737076, + 0.025022102519869804, + 0.11704698950052261, + -0.10129880905151367, + -0.06003948301076889, + 0.0540970154106617, + -0.030844874680042267, + -0.11759433150291443, + -0.029566695913672447, + -0.03712024912238121, + -0.1442607194185257, + -0.021531125530600548, + -0.060671523213386536, + 0.09913729131221771, + -0.0728415846824646, + -0.027239520102739334, + -0.02400781400501728, + -0.012171832844614983, + 0.023474738001823425, + 0.028753630816936493, + -0.07434674352407455, + 0.02218395471572876, + -0.002121984725818038, + -0.005406269337981939, + 0.0420270599424839, + -0.06378738582134247, + -0.06758158653974533, + 0.06018344685435295, + -0.06251614540815353, + -0.08558963984251022, + 0.016535485163331032, + -0.011317988857626915, + 0.04146287217736244, + -0.016669467091560364, + 0.031556740403175354, + -0.016156652942299843, + 0.00299442489631474, + 0.14468327164649963, + -0.006872677709907293, + 0.004470640327781439, + 0.05994945019483566, + -0.03954620286822319, + -0.033345844596624374, + 0.010875143110752106, + -0.037676647305488586, + 0.032482538372278214, + -0.0088801933452487, + 0.0006467063794843853, + -0.06975715607404709, + 0.14668364822864532, + -0.007287562359124422, + 0.0012239019852131605, + 0.026240330189466476, + 0.01774957962334156, + 0.027150655165314674, + 0.018080130219459534, + -0.06338680535554886, + -0.006769227329641581, + -0.08192463219165802, + 0.03475593775510788, + 0.12450060993432999, + 0.039818670600652695, + -0.016450736671686172, + -0.004969307221472263, + 0.07972840219736099, + 0.04527350515127182, + -0.03154083341360092, + 0.019436519593000412, + -0.00589835224673152, + -0.013739279471337795, + 0.04687773063778877, + -0.08810970187187195, + -0.08972527086734772, + 0.010289369150996208, + -0.024964937940239906, + 0.011430253274738789, + 0.0509142205119133, + -0.11651832610368729, + 0.03841778263449669, + -0.029948003590106964, + -0.06755593419075012, + 0.03738708794116974, + -0.10188975185155869, + 0.01049811765551567, + -0.0294864010065794, + -0.0018481032457202673, + -0.05833354964852333, + -1.9307757361775084e-33, + -0.03966868296265602, + 0.040904223918914795, + 0.016275621950626373, + -0.01252322643995285, + -0.10192494094371796, + 0.03981404006481171, + 0.0074232895858585835, + -0.01558609027415514, + 0.04060935974121094, + 0.10897105187177658, + 0.029966143891215324, + 0.06439383327960968, + 0.006732430774718523, + -0.061237793415784836, + 0.055410608649253845, + 0.01937510259449482, + -0.004272138234227896, + -0.01956106722354889, + -0.05055764317512512, + 0.03053397126495838, + 0.009167327545583248, + -0.01951618120074272, + -0.04393620789051056, + 0.08255366235971451, + 0.010271218605339527, + -0.011279665865004063, + 0.06726134568452835, + 0.018695993348956108, + 3.742918488569558e-05, + -0.03420547395944595, + -0.007934643886983395, + -0.020356671884655952, + 0.06392877548933029, + 0.08136869221925735, + -0.05526988208293915, + -0.05926193669438362, + 0.001101168803870678, + -0.018374834209680557, + 0.04660791903734207, + 0.04501478001475334, + 0.047287069261074066, + -0.01417405903339386, + 0.09575767815113068, + 0.05216434970498085, + -0.03812224045395851, + 0.05171744152903557, + -0.0225989893078804, + -0.02593819610774517, + -0.034445203840732574, + 0.006800485774874687, + -0.028462214395403862, + 0.02519700489938259, + 0.026361720636487007, + 0.016381075605750084, + -0.05269913747906685, + 0.05552861839532852, + 0.031104937195777893, + 0.02343081310391426, + 0.035163071006536484, + 0.04289821907877922, + -0.0031062348280102015, + -0.049482475966215134, + -0.045689597725868225, + -0.027127137407660484, + 0.0683072879910469, + -0.0547555536031723, + 0.003713824786245823, + -0.10038216412067413, + 0.005770708899945021, + 0.04230650141835213, + 0.04092049598693848, + 0.11641887575387955, + -0.08077269047498703, + -0.07369858026504517, + -0.019457580521702766, + -0.04245799034833908, + 0.04892534390091896, + 0.004775254987180233, + -0.05869311839342117, + 0.04085508733987808, + 0.008773569948971272, + -0.01737360842525959, + 0.04725103825330734, + 0.0038684895262122154, + -0.004241244867444038, + 0.020896432921290398, + 0.013433441519737244, + 0.049944840371608734, + -0.0009342256817035377, + -0.017667030915617943, + -0.07751252502202988, + 0.04873336851596832, + -0.021147867664694786, + -0.013270721770823002, + -0.0755070224404335, + -2.815143673728926e-08, + -0.060690511018037796, + -0.09417472779750824, + -0.013659224845468998, + 0.009887408465147018, + -0.02755727246403694, + -0.033500928431749344, + -0.026080630719661713, + -0.01301952451467514, + -0.06796819716691971, + -0.022967401891946793, + 0.04969793185591698, + 0.034312110394239426, + -0.10173578560352325, + -0.01804104819893837, + 0.1361682116985321, + -0.0034010817762464285, + -0.08666014671325684, + 0.04035564512014389, + -0.0568486824631691, + -0.03771761804819107, + -0.023136340081691742, + 0.03162553906440735, + 0.03295370563864708, + 0.025760238990187645, + -0.03475520387291908, + 0.03214691951870918, + 0.034529995173215866, + 0.10580219328403473, + 0.058675169944763184, + 0.05405088886618614, + 0.06404214352369308, + 0.07165796309709549, + 0.03220193088054657, + -0.02393319271504879, + -0.013821141794323921, + -0.016979295760393143, + 0.004652554634958506, + -0.020360242575407028, + 0.04519572854042053, + 0.10669195652008057, + 0.03916351497173309, + 0.02678709477186203, + -0.022708088159561157, + 0.0065565952099859715, + -0.02808556519448757, + 0.030774014070630074, + 0.031356800347566605, + 0.03160472214221954, + -0.07758954167366028, + -0.11970000714063644, + -0.0033115081023424864, + 0.07726987451314926, + -0.005764938425272703, + 0.011809290386736393, + -0.060767896473407745, + 0.049785420298576355, + 0.0034139554481953382, + 0.0790703147649765, + -0.04418008029460907, + 0.04647718369960785, + 0.09987320750951767, + 0.03593546897172928, + 0.05146601423621178, + 0.04185075685381889 + ], + "caret-line-right-bold||*new*,chevron,directional,pointer,pointing,arrowhead,triangle": [ + -0.03312341496348381, + -0.007445096038281918, + -0.04148867726325989, + -0.002102604601532221, + -0.0033276842441409826, + -0.007776716724038124, + 0.03247968107461929, + 0.026656078174710274, + -0.0015852883225306869, + -0.018511351197957993, + 0.03411756083369255, + 0.019165202975273132, + -0.003074791980907321, + -0.06630410999059677, + -0.007981877774000168, + 0.057496316730976105, + -0.12225693464279175, + -0.04709840938448906, + 0.039950668811798096, + 0.03961479291319847, + -0.030880676582455635, + 0.0028878117445856333, + -0.04810241237282753, + 0.015365771017968655, + -0.03645212948322296, + 0.05814242735505104, + 0.052042122930288315, + -0.0238900575786829, + -0.019960222765803337, + -0.06704822182655334, + -0.05275589972734451, + -0.021252838894724846, + 0.0005464348942041397, + 0.04278246685862541, + -0.04022907093167305, + 0.016144299879670143, + 0.02958529442548752, + 0.016091197729110718, + -0.01490108110010624, + 0.0010575666092336178, + 0.0018958619330078363, + -0.03705020621418953, + 0.0013574932236224413, + 0.0483432337641716, + 0.03967703878879547, + 0.05151951685547829, + -0.05590927600860596, + -0.03467646986246109, + 0.030845526605844498, + 0.05507485568523407, + -0.11461959034204483, + -0.09101362526416779, + -0.13615280389785767, + 0.0070196352899074554, + 0.055507052689790726, + 0.07274298369884491, + -0.023790623992681503, + -0.051243141293525696, + 0.05303002521395683, + -0.05585959553718567, + 0.05176052823662758, + 0.03512025251984596, + -0.0035011775325983763, + 0.001703028567135334, + 0.001427481067366898, + -0.01860707439482212, + -0.04940826818346977, + 0.03505229204893112, + 0.0315341055393219, + 0.01774287410080433, + -0.05539921671152115, + -0.011034725233912468, + -0.060553353279829025, + -0.03798482567071915, + -0.016453860327601433, + -0.010879462584853172, + 0.04132324829697609, + 0.027046317234635353, + 0.001772758667357266, + -0.04940051957964897, + -0.055217936635017395, + 0.06914237141609192, + -0.0059622228145599365, + 0.050996243953704834, + 0.01161020714789629, + 0.07313355803489685, + -0.0500691719353199, + -0.09587112814188004, + 0.0490875206887722, + 0.014695560559630394, + 0.042990975081920624, + 0.013947573490440845, + -0.08036115765571594, + -0.0330948568880558, + -0.04181237518787384, + -0.0003235778131056577, + 0.03190551698207855, + -0.07090476155281067, + -0.08338642120361328, + 0.11680727452039719, + 0.053047407418489456, + -0.011335999704897404, + 0.03151495382189751, + 0.012925492599606514, + -0.034982189536094666, + 0.01479568425565958, + -0.06325390189886093, + -0.01097196340560913, + -0.06088349595665932, + 0.043581388890743256, + -0.006996908690780401, + -0.11650419235229492, + -0.03882649540901184, + -0.09032683074474335, + -0.0587066188454628, + 0.004732443019747734, + -0.13192206621170044, + -0.02999347262084484, + 0.14380115270614624, + 0.06145164370536804, + 0.020098991692066193, + -0.023572593927383423, + -0.048626966774463654, + -0.028378991410136223, + -0.012360661290585995, + 0.020426921546459198, + -0.018290258944034576, + -2.701017123856866e-33, + 0.04118417948484421, + 0.018866680562496185, + 0.03058098442852497, + 0.026930896565318108, + 0.01086426805704832, + 0.012535460293293, + -0.06451282650232315, + -0.013797792606055737, + -0.05514631047844887, + 0.03585002198815346, + 0.120326928794384, + -0.11300430446863174, + -0.06066550686955452, + 0.05358974635601044, + -0.03637782856822014, + -0.11495674401521683, + -0.031089043244719505, + -0.0398714542388916, + -0.1469901204109192, + -0.015403094701468945, + -0.06790217757225037, + 0.09313740581274033, + -0.07417809963226318, + -0.03458615764975548, + -0.025944871827960014, + -0.017846044152975082, + 0.021792566403746605, + 0.02862633392214775, + -0.06509773433208466, + 0.02118542231619358, + -0.0055237156338989735, + -0.010991078801453114, + 0.04790317639708519, + -0.0601385124027729, + -0.06853001564741135, + 0.05919154733419418, + -0.05920768156647682, + -0.08000312000513077, + 0.010678699240088463, + -0.011845169588923454, + 0.04629022628068924, + -0.007963163778185844, + 0.034566786140203476, + -0.015972651541233063, + 0.01171782985329628, + 0.14303550124168396, + -0.008373619057238102, + 0.00811954215168953, + 0.06356260925531387, + -0.035115763545036316, + -0.028893938288092613, + 0.01780862733721733, + -0.036164749413728714, + 0.04078757390379906, + -0.005529100075364113, + 0.0018632920691743493, + -0.06743954867124557, + 0.15841244161128998, + -0.010375676676630974, + -0.004618496168404818, + 0.023967977613210678, + 0.009181270375847816, + 0.031527329236269, + 0.016050994396209717, + -0.060239434242248535, + -0.0014474226627498865, + -0.07974432408809662, + 0.03152597323060036, + 0.1243545264005661, + 0.04178854450583458, + -0.020191585645079613, + 0.001240063225850463, + 0.07485033571720123, + 0.0440559908747673, + -0.03696972876787186, + 0.02265668474137783, + -0.013941828161478043, + -0.007639703340828419, + 0.05515105277299881, + -0.08585061132907867, + -0.09132928401231766, + 0.008098071441054344, + -0.032017797231674194, + 0.013235706835985184, + 0.04426324740052223, + -0.12190263718366623, + 0.03752133995294571, + -0.029985668137669563, + -0.0627613216638565, + 0.037478528916835785, + -0.0974789708852768, + 0.015023371204733849, + -0.027645612135529518, + -0.006404010578989983, + -0.061317328363657, + -2.0118477448437984e-33, + -0.03156270459294319, + 0.04179241508245468, + 0.026315249502658844, + -0.01010836660861969, + -0.10441398620605469, + 0.040051594376564026, + 0.0027670785784721375, + -0.019751083105802536, + 0.04483485594391823, + 0.1167287677526474, + 0.03351409733295441, + 0.05984654650092125, + 0.0009041819721460342, + -0.060373056679964066, + 0.056910499930381775, + 0.01952628418803215, + -0.005417612846940756, + -0.017969224601984024, + -0.04244931414723396, + 0.030547335743904114, + 0.002671213820576668, + -0.026493893936276436, + -0.04071098566055298, + 0.08630136400461197, + 0.008748709224164486, + -0.014450013637542725, + 0.06924211233854294, + 0.022879276424646378, + 0.0030659325420856476, + -0.03357366472482681, + -0.008505529724061489, + -0.019977398216724396, + 0.04838695749640465, + 0.0859488695859909, + -0.056385401636362076, + -0.0614016056060791, + -0.0034597283229231834, + -0.012071359902620316, + 0.04825206100940704, + 0.04632869362831116, + 0.05214108154177666, + -0.012141651473939419, + 0.08942235261201859, + 0.05000218003988266, + -0.0444093681871891, + 0.05284995958209038, + -0.017910633236169815, + -0.02708548679947853, + -0.036981452256441116, + 0.00437214644625783, + -0.03165119141340256, + 0.024776387959718704, + 0.029565956443548203, + 0.018408779054880142, + -0.050304848700761795, + 0.05736907199025154, + 0.03410212695598602, + 0.019338715821504593, + 0.019331008195877075, + 0.03980600833892822, + 0.003220886457711458, + -0.05013181269168854, + -0.04866800084710121, + -0.030196143314242363, + 0.0684681087732315, + -0.054319895803928375, + 0.0031968066468834877, + -0.10291033983230591, + 0.008999461308121681, + 0.040036119520664215, + 0.03876602649688721, + 0.10899427533149719, + -0.08045119047164917, + -0.06920649111270905, + -0.021482709795236588, + -0.04892115294933319, + 0.049418915063142776, + 0.0061156973242759705, + -0.05098702758550644, + 0.03703808784484863, + 0.017448991537094116, + -0.01244660746306181, + 0.041766565293073654, + 0.005389258731156588, + -0.01068051252514124, + 0.02100333571434021, + 0.017638450488448143, + 0.04600044712424278, + -0.002121452009305358, + -0.022166980430483818, + -0.07804720848798752, + 0.049596067517995834, + -0.025336895138025284, + -0.017473474144935608, + -0.07885298877954483, + -2.7821940307148907e-08, + -0.06433935463428497, + -0.09681051969528198, + -0.013868054375052452, + 0.00981900654733181, + -0.026705630123615265, + -0.034701887518167496, + -0.029119767248630524, + -0.013316450640559196, + -0.06832953542470932, + -0.02283996157348156, + 0.041972532868385315, + 0.031693071126937866, + -0.10412148386240005, + -0.0207770187407732, + 0.13954143226146698, + -0.007033840753138065, + -0.09101758152246475, + 0.033576928079128265, + -0.05548105388879776, + -0.03492273762822151, + -0.032112523913383484, + 0.029036225751042366, + 0.030427994206547737, + 0.02119268849492073, + -0.033024124801158905, + 0.03513408452272415, + 0.030395427718758583, + 0.10826988518238068, + 0.052419353276491165, + 0.05862995609641075, + 0.06283070892095566, + 0.06793291121721268, + 0.03160252049565315, + -0.021790020167827606, + -0.007794286590069532, + -0.021389713510870934, + 0.010327432304620743, + -0.02105819061398506, + 0.05660957470536232, + 0.10535934567451477, + 0.03810373321175575, + 0.02851872891187668, + -0.02016413025557995, + 0.0032286238856613636, + -0.029351742938160896, + 0.02914498746395111, + 0.03938184678554535, + 0.0320136733353138, + -0.08026394993066788, + -0.123123899102211, + -0.00861991848796606, + 0.08038288354873657, + -0.001686590607278049, + 0.009443025104701519, + -0.06719868630170822, + 0.04832718148827553, + 0.0017677744617685676, + 0.08116549253463745, + -0.04498831555247307, + 0.04321723431348801, + 0.10152143985033035, + 0.036954376846551895, + 0.050045691430568695, + 0.03959519416093826 + ], + "caret-line-up-bold||*new*,chevron,directional,pointer,pointing,arrowhead,triangle": [ + -0.048945143818855286, + -0.012218823656439781, + -0.04591650888323784, + -0.01895078457891941, + -0.0012770796893164515, + -0.009615741670131683, + 0.020563969388604164, + 0.03115462325513363, + 0.003481188090518117, + -0.009903018362820148, + 0.010349477641284466, + 0.025999218225479126, + -0.005743436049669981, + -0.06919465214014053, + 0.0031628310680389404, + 0.06590618938207626, + -0.10450524091720581, + -0.019970223307609558, + 0.035431087017059326, + 0.036716245114803314, + -0.030629679560661316, + -0.012770509347319603, + -0.028781112283468246, + 0.02539440430700779, + -0.03431064262986183, + 0.04784157872200012, + 0.06057226285338402, + -0.013257521204650402, + -0.021183785051107407, + -0.05551345273852348, + -0.05888152867555618, + -0.0159906018525362, + 0.014204612001776695, + 0.03390074893832207, + -0.033105749636888504, + 0.01457652822136879, + 0.05079731345176697, + 0.024063343182206154, + -0.025107067078351974, + 0.01539647951722145, + -0.0004460562486201525, + -0.03453030437231064, + -0.003211973002180457, + 0.03384547308087349, + 0.04758144170045853, + 0.040905095636844635, + -0.05489374324679375, + -0.03316988795995712, + 0.02443726174533367, + 0.047097910195589066, + -0.10270584374666214, + -0.10604724287986755, + -0.13857562839984894, + 0.004703836049884558, + 0.055864714086055756, + 0.07163329422473907, + -0.03162691369652748, + -0.0635203868150711, + 0.05915484204888344, + -0.057973552495241165, + 0.04557608440518379, + 0.04290107265114784, + 0.010818214155733585, + 0.005523591302335262, + 0.014221668243408203, + -0.013365657068789005, + -0.046168506145477295, + 0.04956773295998573, + 0.0271602813154459, + 0.024948514997959137, + -0.05340210348367691, + -0.008298368193209171, + -0.05466702952980995, + -0.03865091875195503, + -0.021438153460621834, + 0.0047737834975123405, + 0.03858398273587227, + 0.010424084030091763, + 0.026468317955732346, + -0.0486094169318676, + -0.06492280215024948, + 0.0730828121304512, + -0.014872318133711815, + 0.06366679817438126, + 0.007409818470478058, + 0.06202493980526924, + -0.0493747778236866, + -0.09953249990940094, + 0.02222232148051262, + 0.01034331601113081, + 0.03892306238412857, + 0.01539031881839037, + -0.07598628848791122, + -0.031552813947200775, + -0.046455517411231995, + 0.0027824267745018005, + 0.0446724034845829, + -0.09280014038085938, + -0.08401069790124893, + 0.11514832824468613, + 0.038473669439554214, + -0.008811017498373985, + 0.0338638573884964, + 0.008826559409499168, + -0.04962984472513199, + 0.021313687786459923, + -0.05631774663925171, + -0.019161604344844818, + -0.051563531160354614, + 0.02842014469206333, + -0.01611451245844364, + -0.11585632711648941, + -0.028462003916502, + -0.08306102454662323, + -0.06770056486129761, + 0.004299086052924395, + -0.12053678929805756, + -0.04442710801959038, + 0.15080852806568146, + 0.052725281566381454, + 0.038944970816373825, + -0.03567662462592125, + -0.04904576763510704, + -0.015244971960783005, + -0.02086636982858181, + 0.021896967664361, + -0.0007943807286210358, + -2.6657669870115827e-33, + 0.06585615873336792, + 0.038431014865636826, + 0.022862881422042847, + 0.034807536751031876, + 0.011354604735970497, + 0.009550616145133972, + -0.07536473125219345, + -0.03286520391702652, + -0.05736030265688896, + 0.03643709793686867, + 0.10731391608715057, + -0.08513004332780838, + -0.06327255070209503, + 0.05932686850428581, + -0.03451147675514221, + -0.11927543580532074, + -0.01794419065117836, + -0.020236894488334656, + -0.1446566879749298, + -0.014061176218092442, + -0.06334003061056137, + 0.08158283680677414, + -0.07529382407665253, + -0.03565867990255356, + -0.019706424325704575, + -0.0023485450074076653, + 0.008272144943475723, + 0.03311210870742798, + -0.08768454194068909, + 0.020517626777291298, + 0.010121464729309082, + -0.01666322536766529, + 0.03349871188402176, + -0.05875462293624878, + -0.07433044910430908, + 0.066623255610466, + -0.06372694671154022, + -0.0798521339893341, + 0.010154971852898598, + -0.009658888913691044, + 0.037347614765167236, + -0.01564285345375538, + 0.031166933476924896, + -0.00836885254830122, + 0.0067093875259160995, + 0.1554528921842575, + -0.02344640903174877, + -0.021197812631726265, + 0.05596373975276947, + -0.035640716552734375, + -0.02159976400434971, + 0.006855151150375605, + -0.0414561964571476, + 0.031633246690034866, + -0.025458643212914467, + 0.0077420976012945175, + -0.06615746021270752, + 0.14418068528175354, + 0.0003597966569941491, + 0.00866811815649271, + 0.01668073795735836, + 0.0033619438763707876, + 0.025206439197063446, + 0.03138459101319313, + -0.060231391340494156, + 0.004657740239053965, + -0.08104639500379562, + 0.03942595049738884, + 0.1167997345328331, + 0.04596739262342453, + -0.022807370871305466, + 0.007354455534368753, + 0.05770903825759888, + 0.05957511067390442, + -0.029751118272542953, + 0.02288803458213806, + 0.0024476121179759502, + -0.036411136388778687, + 0.052752263844013214, + -0.08075056970119476, + -0.08618219196796417, + 0.004858741071075201, + -0.019195549190044403, + -0.007087626028805971, + 0.055508535355329514, + -0.11045713722705841, + 0.032260630279779434, + -0.03134790062904358, + -0.06974677741527557, + 0.03788326308131218, + -0.09628591686487198, + 0.019723016768693924, + 0.0031341444700956345, + -0.018429690971970558, + -0.048339277505874634, + -1.6260060505237832e-33, + -0.02601454220712185, + 0.05660620331764221, + 0.02133103646337986, + -0.025742987170815468, + -0.10563792288303375, + 0.04631872475147247, + 0.005284239072352648, + -0.019525796175003052, + 0.051655203104019165, + 0.09094799309968948, + 0.014806205406785011, + 0.06907917559146881, + 0.020431580021977425, + -0.07530833780765533, + 0.05894039198756218, + 0.029247120022773743, + -0.00425407150760293, + -0.001419802661985159, + -0.038847506046295166, + 0.02746666595339775, + 0.0191647969186306, + -0.030210070312023163, + -0.06273509562015533, + 0.06393986195325851, + -0.002783785341307521, + -0.007459748536348343, + 0.0608721487224102, + 0.030366847291588783, + 0.009743912145495415, + -0.043667346239089966, + 5.5624241213081405e-05, + -0.02265876531600952, + 0.05103672668337822, + 0.08142486959695816, + -0.06281296908855438, + -0.04379578307271004, + -0.004587339702993631, + -0.02596690133213997, + 0.043413203209638596, + 0.04744362831115723, + 0.057703837752342224, + -0.011237907223403454, + 0.08436822146177292, + 0.04985811561346054, + -0.036119528114795685, + 0.04297361150383949, + -0.027964439243078232, + -0.018028419464826584, + -0.03824927285313606, + 0.0180191807448864, + -0.0434342585504055, + 0.014937225729227066, + 0.013648069463670254, + 0.03698863089084625, + -0.05843318626284599, + 0.059483155608177185, + 0.05599299073219299, + 0.034526124596595764, + 0.022826731204986572, + 0.04335787892341614, + 0.00041328708175569773, + -0.03900792449712753, + -0.04975345730781555, + -0.02138907089829445, + 0.06062060594558716, + -0.0390833280980587, + 0.008154505863785744, + -0.10785147547721863, + -0.0044069369323551655, + 0.04421530291438103, + 0.03562891110777855, + 0.11132381856441498, + -0.07191869616508484, + -0.06864345073699951, + -0.009477461688220501, + -0.0582013837993145, + 0.05130724981427193, + 0.01638495735824108, + -0.04648950323462486, + 0.016707707196474075, + 0.0033320572692900896, + -0.0009139334433712065, + 0.0336947925388813, + 0.024106040596961975, + -0.01450623944401741, + 0.03722104802727699, + 0.012492389418184757, + 0.0716998428106308, + -0.00013784832844976336, + -0.02659653127193451, + -0.07185343652963638, + 0.03677525371313095, + -0.025737782940268517, + -0.014641474932432175, + -0.07517746835947037, + -2.7025071958064473e-08, + -0.06614233553409576, + -0.08926881104707718, + -0.02459106780588627, + 0.007356816437095404, + -0.01799669861793518, + -0.03841572627425194, + -0.027129093185067177, + -0.01115669310092926, + -0.055063311010599136, + -0.056110091507434845, + 0.04638807475566864, + 0.037989187985658646, + -0.10549984872341156, + -0.029497621580958366, + 0.14050237834453583, + -0.0011310867266729474, + -0.0896531268954277, + 0.05079426243901253, + -0.06583046913146973, + -0.039525266736745834, + -0.04610707238316536, + 0.05776352807879448, + 0.03418427333235741, + 0.03997330740094185, + -0.031256020069122314, + 0.0313798226416111, + 0.01434244029223919, + 0.10899645835161209, + 0.06235550343990326, + 0.06853485852479935, + 0.0705876275897026, + 0.0800553411245346, + 0.031306177377700806, + -0.025709940120577812, + -0.001988104311749339, + -0.00031630092416889966, + 0.010691449977457523, + -0.018040666356682777, + 0.0502859428524971, + 0.10749782621860504, + 0.035974204540252686, + 0.013047605752944946, + -0.027138173580169678, + -0.004773302469402552, + -0.022032633423805237, + 0.033517222851514816, + 0.028267357498407364, + 0.01947212964296341, + -0.10277500748634338, + -0.12528538703918457, + -0.00670681381598115, + 0.07221168279647827, + 0.005073791369795799, + 0.012313633225858212, + -0.06904906034469604, + 0.03641840070486069, + -0.006505046971142292, + 0.08869800716638565, + -0.04832984134554863, + 0.04819301515817642, + 0.09493554383516312, + 0.014140954241156578, + 0.05358564481139183, + 0.03696518763899803 + ], + "caret-right-bold||chevron,directional,pointer,pointing,arrowhead,triangle": [ + -0.012282177805900574, + -0.009464365430176258, + -0.03162147477269173, + -0.006515240762382746, + 0.007910258136689663, + -0.004845395218580961, + 0.04905703663825989, + 0.03901292011141777, + 0.02274196781218052, + -0.03905869647860527, + 0.046436525881290436, + 0.03482002764940262, + 0.00685569504275918, + -0.04839242622256279, + -0.008407959714531898, + 0.050173547118902206, + -0.11474322527647018, + -0.025662697851657867, + 0.05124480649828911, + 0.04794275760650635, + -0.026718612760305405, + 0.014354917220771313, + -0.021925032138824463, + 0.018013644963502884, + -0.04434998705983162, + 0.04736855998635292, + 0.03580866754055023, + -0.03996410593390465, + -0.01475996058434248, + -0.05831582844257355, + -0.03567955270409584, + -0.02713041380047798, + -0.0279818344861269, + 0.028122084215283394, + -0.07834819704294205, + 0.0023601967841386795, + 0.008481832221150398, + -0.00593463983386755, + 0.009905260987579823, + 0.022017309442162514, + 0.006615729071199894, + -0.037051621824502945, + 0.016650665551424026, + 0.042938217520713806, + 0.02823752537369728, + 0.06664234399795532, + -0.06542722880840302, + -0.017620215192437172, + -0.00020087046141270548, + 0.0499681793153286, + -0.10176030546426773, + -0.09266229718923569, + -0.12984448671340942, + 0.006112431176006794, + 0.04964606836438179, + 0.07286256551742554, + -0.053282104432582855, + -0.032237809151411057, + 0.0777386948466301, + -0.04268433153629303, + 0.05650680884718895, + 0.02330569364130497, + -0.019674688577651978, + 0.002376148011535406, + 0.009207580238580704, + -0.011600716039538383, + -0.030095217749476433, + 0.0117042176425457, + 0.014899837784469128, + 0.020312055945396423, + -0.0217425674200058, + -0.014557200483977795, + -0.05815157666802406, + -0.05621445178985596, + -0.010691111907362938, + -0.004640378523617983, + 0.058324966579675674, + 0.005894107278436422, + -0.013892616145312786, + -0.06243062764406204, + -0.05766534432768822, + 0.07094312459230423, + -0.00138485012575984, + 0.05259353294968605, + 0.02913050912320614, + 0.06284400075674057, + -0.04502624645829201, + -0.07229569554328918, + 0.04664763808250427, + 0.01262616366147995, + 0.03572695329785347, + -0.0046112132258713245, + -0.06404699385166168, + -0.039109230041503906, + -0.016513362526893616, + -0.013034348376095295, + 0.03322639688849449, + -0.052413858473300934, + -0.09962932765483856, + 0.10912018269300461, + 0.07239127904176712, + -0.011474991217255592, + 0.022475050762295723, + -0.01854395680129528, + -0.026375550776720047, + 0.010253188200294971, + -0.0668349489569664, + -0.014784086495637894, + -0.04857068136334419, + 0.031701818108558655, + -0.02227194979786873, + -0.10140514373779297, + -0.03304726630449295, + -0.07391099631786346, + -0.07575389742851257, + -0.0008697403827682137, + -0.12842011451721191, + -0.034011274576187134, + 0.16229824721813202, + 0.027851048856973648, + 0.0005761784850619733, + -0.02446332760155201, + -0.0517912395298481, + -0.03620930388569832, + -0.004994038492441177, + -0.0009547232766635716, + -0.03480863198637962, + -3.11650405102065e-33, + 0.04649189114570618, + 0.004746132995933294, + 0.022809423506259918, + 0.012481831014156342, + 0.014901933260262012, + 0.010543444193899632, + -0.0443350225687027, + -0.03573524206876755, + -0.06473643332719803, + 0.02006393112242222, + 0.1300950050354004, + -0.061748918145895004, + -0.07407979667186737, + 0.0386815071105957, + -0.03726338967680931, + -0.100090391933918, + -0.030404014512896538, + -0.009250895120203495, + -0.16982272267341614, + -0.036332063376903534, + -0.013740669935941696, + 0.09848758578300476, + -0.11024073511362076, + -0.03147292509675026, + -0.0360560268163681, + 0.0005155123071745038, + 0.004557281266897917, + 0.05409986898303032, + -0.06957472115755081, + 0.024941397830843925, + -0.0014932154444977641, + 0.0023248563520610332, + 0.025980236008763313, + -0.07073265314102173, + -0.02668849192559719, + 0.031511470675468445, + -0.05595940724015236, + -0.07094617187976837, + 0.003661260474473238, + -0.01998998410999775, + 0.04520465433597565, + -0.008265082724392414, + 0.026326365768909454, + -0.03645218163728714, + -0.004708485212177038, + 0.14888356626033783, + 0.008273777551949024, + 0.004045796114951372, + 0.08845000714063644, + -0.046954017132520676, + -0.011547287926077843, + 0.012903374619781971, + -0.03858935832977295, + 0.04210539534687996, + -0.0033845948055386543, + 0.006658937316387892, + -0.053820859640836716, + 0.1489056646823883, + -0.024003244936466217, + 0.0026482967659831047, + 0.017117518931627274, + 0.003357079578563571, + 0.04246233031153679, + -0.021414073184132576, + -0.0940827950835228, + 0.005591629073023796, + -0.09299569576978683, + 0.02942350134253502, + 0.1369268298149109, + 0.03419182449579239, + 0.0025728074833750725, + 0.025966614484786987, + 0.09816458076238632, + 0.026958948001265526, + -0.03764832019805908, + 0.03004111722111702, + -0.023419557139277458, + -0.013194002211093903, + 0.033755071461200714, + -0.06193952262401581, + -0.10256420075893402, + 0.00011349662236170843, + -0.04916367679834366, + 0.01242317259311676, + 0.03684910014271736, + -0.13001278042793274, + 0.005553176160901785, + -0.029998449608683586, + -0.07306519895792007, + 0.04436514899134636, + -0.0922667533159256, + 0.018791204318404198, + -0.023181306198239326, + -0.0015795344952493906, + -0.082558773458004, + -1.401907878937603e-33, + -0.044562242925167084, + 0.0436740480363369, + 0.033007025718688965, + -0.016791164875030518, + -0.1046752780675888, + 0.02968575432896614, + 0.022378351539373398, + -0.024855101481080055, + 0.013621914200484753, + 0.07715152949094772, + 0.030525222420692444, + 0.04359279200434685, + -0.012322050519287586, + -0.06887918710708618, + 0.0350944884121418, + 0.012773090973496437, + 0.03483602777123451, + -0.016402442008256912, + -0.05509728565812111, + 0.02389143593609333, + -0.000948167173191905, + -0.012767206877470016, + -0.046456631273031235, + 0.12377246469259262, + 0.010874147526919842, + 0.025378039106726646, + 0.07171616703271866, + 0.008595769293606281, + -0.008276146836578846, + -0.022658122703433037, + -0.0016299366252496839, + -0.012498775497078896, + 0.05723273754119873, + 0.07970034331083298, + -0.0647977963089943, + -0.07599321007728577, + -0.022712964564561844, + -0.01316769327968359, + 0.04533486068248749, + 0.05062004551291466, + 0.0728825256228447, + -0.02547057904303074, + 0.08608637750148773, + 0.09495094418525696, + -0.01687413640320301, + 0.05830889940261841, + -0.005287230480462313, + -0.027465051040053368, + -0.021566664800047874, + -0.004829158075153828, + -0.016672592610120773, + 0.015758218243718147, + 0.029713934287428856, + 0.013828104361891747, + -0.05056186020374298, + 0.04286903515458107, + 0.03552273288369179, + 0.010923218913376331, + 0.027705548331141472, + 0.0476577952504158, + 0.013642569072544575, + -0.043719831854104996, + -0.015470973215997219, + -0.03327953815460205, + 0.04210859537124634, + -0.05079302936792374, + -0.0008506888407282531, + -0.10726051032543182, + 0.02333771251142025, + 0.035688914358615875, + 0.04214832931756973, + 0.102423757314682, + -0.04314347356557846, + -0.08029306679964066, + -0.004204962868243456, + -0.03775722160935402, + 0.06935849040746689, + 0.008625458925962448, + -0.04758619889616966, + 0.03945894166827202, + -0.0005297012976370752, + -0.013605130836367607, + 0.04606855660676956, + 0.004981986712664366, + -0.019995227456092834, + 0.017251770943403244, + 0.010450156405568123, + 0.025280704721808434, + 0.0005115314852446318, + -0.006818972062319517, + -0.06109821796417236, + 0.047018036246299744, + 0.010981833562254906, + -0.028077779337763786, + -0.07176072150468826, + -2.4051711733363845e-08, + -0.05833069980144501, + -0.07896863669157028, + -0.02939317375421524, + -0.00680525554344058, + -0.05968562513589859, + -0.029640281572937965, + -0.0242887195199728, + -0.00918420497328043, + -0.06497593969106674, + -0.005341807380318642, + 0.03241357207298279, + 0.0075010922737419605, + -0.10030906647443771, + -0.03742247074842453, + 0.14713796973228455, + -0.0014114623190835118, + -0.11454525589942932, + 0.04308914765715599, + -0.06221703067421913, + -0.011060534045100212, + -0.03208760544657707, + 0.020143428817391396, + 0.031099077314138412, + 0.024146031588315964, + -0.03457486256957054, + 0.03931679204106331, + 0.02551743946969509, + 0.11157691478729248, + 0.06580254435539246, + 0.06110158935189247, + 0.05304868891835213, + 0.06706123054027557, + 0.020044337958097458, + -0.018562719225883484, + -0.022106172516942024, + -0.0006510687526315451, + 0.015404105186462402, + -0.0326339453458786, + 0.06943461298942566, + 0.12497825175523758, + 0.030064137652516365, + -0.006333230994641781, + -0.024941280484199524, + 0.022480765357613564, + -0.024056242778897285, + 0.05899949371814728, + 0.04983532056212425, + 0.05554189532995224, + -0.06504829972982407, + -0.12016663700342178, + -0.0022797926794737577, + 0.06544198840856552, + -0.017862778156995773, + 0.039459068328142166, + -0.04724780470132828, + 0.03560686111450195, + -0.013588715344667435, + 0.07090388983488083, + -0.05625883862376213, + 0.04606855660676956, + 0.11114367097616196, + 0.03820989280939102, + 0.036232925951480865, + 0.05051618814468384 + ], + "caret-up-bold||chevron,directional,pointer,pointing,arrowhead,triangle": [ + -0.025187810882925987, + -0.0042705112136900425, + -0.03664756938815117, + -0.018631037324666977, + 0.007825839333236217, + -0.006251220125705004, + 0.0476590096950531, + 0.032878223806619644, + 0.026985283941030502, + -0.024471677839756012, + 0.029212389141321182, + 0.053016867488622665, + 0.013732128776609898, + -0.05356409773230553, + 8.090790652204305e-05, + 0.061442889273166656, + -0.09908130019903183, + -0.004061201121658087, + 0.047653283923864365, + 0.039475392550230026, + -0.02432512864470482, + -0.0025824892800301313, + -0.004740180913358927, + 0.025839317589998245, + -0.04254321753978729, + 0.03348342329263687, + 0.037710148841142654, + -0.02744939737021923, + -0.0217256098985672, + -0.04286816343665123, + -0.05755537003278732, + -0.025343110784888268, + -0.017303448170423508, + 0.017050495371222496, + -0.06803582608699799, + -0.0035164242144674063, + 0.03022393397986889, + 0.016502566635608673, + -0.0033651920966804028, + 0.036230769008398056, + 0.009425055235624313, + -0.03939541056752205, + 0.008713849820196629, + 0.0217320304363966, + 0.03535570204257965, + 0.06145048886537552, + -0.05805027857422829, + -0.016344089061021805, + 0.0010679768165573478, + 0.04155459254980087, + -0.08941902965307236, + -0.10920345783233643, + -0.1275051385164261, + 0.0025230413302779198, + 0.042948707938194275, + 0.0742759257555008, + -0.05395654961466789, + -0.04091132804751396, + 0.08545174449682236, + -0.0442931205034256, + 0.048612918704748154, + 0.026942269876599312, + 0.0012463964521884918, + 0.01722252368927002, + 0.02600845880806446, + -0.01275117788463831, + -0.028221135959029198, + 0.019778171554207802, + 0.012280313298106194, + 0.02411664091050625, + -0.019870242103934288, + -0.01000406127423048, + -0.04834207147359848, + -0.06046544387936592, + -0.013970283791422844, + -0.0009651663131080568, + 0.05626070126891136, + -0.0023313737474381924, + 0.019228342920541763, + -0.06726551055908203, + -0.0628381222486496, + 0.07232269644737244, + -0.013777630403637886, + 0.058261092752218246, + 0.014954487793147564, + 0.059169523417949677, + -0.050425879657268524, + -0.07809357345104218, + 0.020120039582252502, + 0.00936207640916109, + 0.024858815595507622, + -0.0006633037119172513, + -0.06439309567213058, + -0.038662124425172806, + -0.020318638533353806, + -0.013228165917098522, + 0.04669833928346634, + -0.06559344381093979, + -0.09784671664237976, + 0.10815950483083725, + 0.05483170226216316, + -0.008785407990217209, + 0.0244170930236578, + -0.014745313674211502, + -0.04175649955868721, + 0.018046703189611435, + -0.0592363141477108, + -0.01750984787940979, + -0.0330016203224659, + 0.02231430634856224, + -0.02811509743332863, + -0.10646402090787888, + -0.019741123542189598, + -0.06864257901906967, + -0.0911315530538559, + 0.009273412637412548, + -0.11317767202854156, + -0.050651390105485916, + 0.1556752473115921, + 0.028666861355304718, + 0.028587521985173225, + -0.03461148217320442, + -0.056672122329473495, + -0.026127861812710762, + -0.019389240071177483, + 0.0029737360309809446, + -0.008750218898057938, + -3.175639865732658e-33, + 0.07291296124458313, + 0.024784859269857407, + 0.0061239684000611305, + 0.013405675999820232, + 0.018159441649913788, + 0.003121290123090148, + -0.05751020833849907, + -0.0527990460395813, + -0.06775850057601929, + 0.02721073105931282, + 0.12014754116535187, + -0.0274038128554821, + -0.08019278943538666, + 0.05221617594361305, + -0.03513389825820923, + -0.10956317186355591, + -0.011613486334681511, + 0.01048254407942295, + -0.16206015646457672, + -0.037860188633203506, + -0.00687857111915946, + 0.08510260283946991, + -0.10931318253278732, + -0.03214147314429283, + -0.03407648950815201, + 0.013202900998294353, + -0.013236504048109055, + 0.06858601421117783, + -0.09416346251964569, + 0.025157520547509193, + 0.021211137995123863, + -0.009070955216884613, + 0.015013727359473705, + -0.07128100097179413, + -0.03932426497340202, + 0.0387255884706974, + -0.06410300731658936, + -0.06837214529514313, + -0.0006463108002208173, + -0.024726800620555878, + 0.03849409520626068, + -0.02008536085486412, + 0.014873468317091465, + -0.01982409693300724, + -0.016007348895072937, + 0.155330091714859, + -0.010764298029243946, + -0.03295598551630974, + 0.07076083868741989, + -0.048513609915971756, + -0.005544802639633417, + 0.003323356155306101, + -0.04904048517346382, + 0.02787318266928196, + -0.027495525777339935, + 0.012833927758038044, + -0.05654946714639664, + 0.14327698945999146, + -0.01771504245698452, + 0.007883058860898018, + 0.012493143789470196, + -0.005672347731888294, + 0.04464202746748924, + -0.005951247178018093, + -0.08718352764844894, + 0.011660577729344368, + -0.08928098529577255, + 0.04509517922997475, + 0.1238335445523262, + 0.04319784790277481, + -0.00925486534833908, + 0.03349405154585838, + 0.08055990934371948, + 0.04823729768395424, + -0.02588348090648651, + 0.028735395520925522, + -0.01207282766699791, + -0.04690330848097801, + 0.031090661883354187, + -0.054774798452854156, + -0.0961550623178482, + -0.007961943745613098, + -0.03354313224554062, + -0.011304368264973164, + 0.06779052317142487, + -0.11966947466135025, + -0.002174645895138383, + -0.028390908613801003, + -0.0776318684220314, + 0.03411102294921875, + -0.092902772128582, + 0.02659042365849018, + 0.006971409078687429, + -0.016601605340838432, + -0.06492805480957031, + -1.1680358391663201e-33, + -0.03666077181696892, + 0.05991649627685547, + 0.02597173862159252, + -0.03618096932768822, + -0.1099504604935646, + 0.042928241193294525, + 0.027703551575541496, + -0.023459242656826973, + 0.015454831533133984, + 0.04856964945793152, + 0.0019650643225759268, + 0.05628198757767677, + 0.01766224019229412, + -0.0786125510931015, + 0.033322758972644806, + 0.024214869365096092, + 0.0225470382720232, + 0.010482041165232658, + -0.06467261165380478, + 0.026156321167945862, + -0.0019871375989168882, + -0.0281024519354105, + -0.05953918769955635, + 0.10293310880661011, + -0.005349324084818363, + 0.03237447142601013, + 0.0646040067076683, + 0.022349342703819275, + 0.0013500036438927054, + -0.036293305456638336, + 0.0034124176017940044, + -0.012234660796821117, + 0.04903336241841316, + 0.08661488443613052, + -0.07036574929952621, + -0.05562214553356171, + -0.028983792290091515, + -0.03263742849230766, + 0.03676662594079971, + 0.046288441866636276, + 0.06992226094007492, + -0.019559217616915703, + 0.0764203816652298, + 0.09232249855995178, + -0.014169296249747276, + 0.04677703604102135, + -0.013008716516196728, + -0.023207953199744225, + -0.0288107767701149, + 0.007634023204445839, + -0.02281593717634678, + 0.004343543667346239, + 0.01586766727268696, + 0.03299831971526146, + -0.05913109332323074, + 0.05728941038250923, + 0.05576701462268829, + 0.0351080521941185, + 0.02763078734278679, + 0.05452322959899902, + 0.007287580519914627, + -0.030881252139806747, + -0.021577974781394005, + -0.027768701314926147, + 0.03317500278353691, + -0.032065507024526596, + 0.015059326775372028, + -0.10639255493879318, + 0.006405236199498177, + 0.04325383901596069, + 0.04777241870760918, + 0.10543978959321976, + -0.04079948365688324, + -0.08025334775447845, + 0.003962027840316296, + -0.04409768432378769, + 0.07500717043876648, + 0.004815411288291216, + -0.0515071339905262, + 0.016774965450167656, + -0.0149194011464715, + -0.003939745016396046, + 0.0402747243642807, + 0.027422813698649406, + -0.018739353865385056, + 0.030007433146238327, + -0.00556187191978097, + 0.05983947589993477, + -0.0007457767496816814, + -0.012753963470458984, + -0.04756026715040207, + 0.03867803141474724, + 0.0035558051895350218, + -0.02294900454580784, + -0.07601404190063477, + -2.3229892676113195e-08, + -0.05404270067811012, + -0.07021597027778625, + -0.036554012447595596, + -0.02015642262995243, + -0.036741677671670914, + -0.0350603312253952, + -0.022809909656643867, + -0.004587242379784584, + -0.05585075914859772, + -0.06144840642809868, + 0.03977178782224655, + 0.015380154363811016, + -0.09339001774787903, + -0.03271898254752159, + 0.15484535694122314, + 0.002269590739160776, + -0.10534249246120453, + 0.06668012589216232, + -0.06989309191703796, + -0.026088284328579903, + -0.04746532440185547, + 0.03956402838230133, + 0.03681974858045578, + 0.03931369632482529, + -0.03261815011501312, + 0.033780183643102646, + 0.009838963858783245, + 0.12193097919225693, + 0.07124660909175873, + 0.06663969159126282, + 0.06729869544506073, + 0.07628170400857925, + 0.015136762522161007, + -0.016231289133429527, + -0.007797346916049719, + 0.024136224761605263, + 0.020002679899334908, + -0.031918514519929886, + 0.05806813761591911, + 0.12542343139648438, + 0.03225019574165344, + -0.021784452721476555, + -0.026739532127976418, + 0.015299379825592041, + -0.03393886610865593, + 0.06301233172416687, + 0.03542471304535866, + 0.04539788141846657, + -0.09345266968011856, + -0.11573595553636551, + -0.0017711201217025518, + 0.05734487622976303, + -0.011516011320054531, + 0.04526258260011673, + -0.054249830543994904, + 0.02661416307091713, + -0.016597962006926537, + 0.07260046899318695, + -0.06556469947099686, + 0.05095338821411133, + 0.10417976975440979, + 0.00950634852051735, + 0.03928897902369499, + 0.0424681156873703 + ], + "caret-up-down-bold||chevron,directional,pointer,pointing,arrowhead,triangle": [ + -0.016100866720080376, + 0.004421273712068796, + -0.03645170480012894, + -0.028219690546393394, + -0.011693263426423073, + -0.003972992766648531, + 0.05084400251507759, + 0.043100811541080475, + 0.03008727915585041, + -0.018093334510922432, + 0.03070846199989319, + 0.0564262680709362, + 0.021508079022169113, + -0.04325525090098381, + -0.0067728073336184025, + 0.059141457080841064, + -0.09315606206655502, + 0.01591283641755581, + 0.04191819578409195, + 0.03459775075316429, + -0.01838800124824047, + -0.008162134326994419, + -0.01634121872484684, + 0.024716872721910477, + -0.0463808998465538, + 0.03195488825440407, + 0.03967825695872307, + -0.028337387368083, + -0.023379050195217133, + -0.04342736303806305, + -0.07094773650169373, + -0.029836589470505714, + -0.010881267488002777, + 0.024836819618940353, + -0.08267415314912796, + -0.009397614747285843, + 0.026356244459748268, + 0.02184234745800495, + 0.004432282876223326, + 0.03914349898695946, + 0.0036127958446741104, + -0.03919059410691261, + 0.003081922186538577, + 0.023922238498926163, + 0.026225131005048752, + 0.0633976012468338, + -0.060705214738845825, + -0.018085921183228493, + -0.004590846598148346, + 0.04586018994450569, + -0.07649136334657669, + -0.0852302685379982, + -0.12479820102453232, + 0.01952078379690647, + 0.05365242436528206, + 0.07257136702537537, + -0.04355505481362343, + -0.03563603013753891, + 0.08577952533960342, + -0.028987940400838852, + 0.06292713433504105, + 0.013894462026655674, + -0.014807451516389847, + 0.01596732623875141, + 0.025266019627451897, + -0.0010545747354626656, + -0.032669685781002045, + 0.011385811492800713, + 0.008609641343355179, + 0.02397909015417099, + -0.025192072615027428, + -0.022771524265408516, + -0.04412119835615158, + -0.05942663550376892, + -0.0240321084856987, + -0.008384122513234615, + 0.0653281956911087, + 0.002460714429616928, + 0.015675179660320282, + -0.07435517758131027, + -0.057459745556116104, + 0.09056850522756577, + -0.013049540109932423, + 0.06717207282781601, + 0.00212538568302989, + 0.06419358402490616, + -0.04844072088599205, + -0.0630144327878952, + 0.01737380586564541, + 0.00442547956481576, + 0.020330047234892845, + -0.0060805827379226685, + -0.043351102620363235, + -0.03463484346866608, + -0.03143832087516785, + -0.01987234689295292, + 0.05592876300215721, + -0.06913730502128601, + -0.0844903215765953, + 0.10328904539346695, + 0.04831798002123833, + -0.01849677599966526, + 0.027038728818297386, + -0.027245037257671356, + -0.0546424575150013, + 0.0031442088074982166, + -0.05577918887138367, + -0.02321046218276024, + -0.022448383271694183, + 0.027868028730154037, + -0.03664389252662659, + -0.0993884801864624, + -0.01964479871094227, + -0.06760884821414948, + -0.09114683419466019, + 0.012833423912525177, + -0.10738382488489151, + -0.04954592138528824, + 0.1460980921983719, + 0.023665379732847214, + 0.029633162543177605, + -0.03055778332054615, + -0.05904499068856239, + -0.02805161289870739, + -0.02205488458275795, + 0.0054995836690068245, + -0.021076178178191185, + -3.3570888063836014e-33, + 0.08494453132152557, + 0.011635511182248592, + 0.007911749184131622, + 0.010488462634384632, + 0.02271988056600094, + -0.0001722673187032342, + -0.07509447634220123, + -0.06291697174310684, + -0.07556083798408508, + 0.04729215428233147, + 0.1258150190114975, + -0.03721202537417412, + -0.0835176482796669, + 0.057833973318338394, + -0.033887166529893875, + -0.11110063642263412, + -0.006510924082249403, + 0.004760541953146458, + -0.15629209578037262, + -0.043987538665533066, + -0.010764311999082565, + 0.08144327998161316, + -0.09712475538253784, + -0.022622890770435333, + -0.016168884932994843, + 0.01767858676612377, + -0.017832543700933456, + 0.05391529202461243, + -0.08769594132900238, + 0.023341603577136993, + 0.009948563762009144, + -0.022488541901111603, + 0.010340315289795399, + -0.08739560842514038, + -0.029160507023334503, + 0.03880807384848595, + -0.08199809491634369, + -0.05951451510190964, + -0.00804913230240345, + -0.03602652996778488, + 0.02745712921023369, + -0.029227040708065033, + -0.0072700330056250095, + -0.0075224037282168865, + -0.007097437046468258, + 0.1415107399225235, + -0.009773108176887035, + -0.042264606803655624, + 0.05472053959965706, + -0.04546578601002693, + -0.004019034560769796, + -0.008164829574525356, + -0.04742201045155525, + 0.03132554888725281, + -0.020669471472501755, + 0.016688033938407898, + -0.05988854169845581, + 0.14421051740646362, + -0.02915879152715206, + 0.024921441450715065, + 0.01905570551753044, + -0.0048552751541137695, + 0.03887331113219261, + -0.012851416133344173, + -0.08271101117134094, + 0.004451851360499859, + -0.09305327385663986, + 0.04349977523088455, + 0.12141364067792892, + 0.05117838829755783, + -0.01932532899081707, + 0.027472397312521935, + 0.08725026249885559, + 0.048743654042482376, + -0.03162701055407524, + 0.029721710830926895, + -0.004483463242650032, + -0.05429108068346977, + 0.03017275594174862, + -0.05353343114256859, + -0.10956070572137833, + 0.001066456432454288, + -0.03472817316651344, + -0.022372709587216377, + 0.06468633562326431, + -0.1113092377781868, + 0.002795976819470525, + -0.024414699524641037, + -0.07137370854616165, + 0.015510333701968193, + -0.10780323296785355, + 0.021301722154021263, + 0.011763832531869411, + -0.018810588866472244, + -0.05803752690553665, + -7.845191441025367e-34, + -0.04363605007529259, + 0.052998486906290054, + 0.01729658991098404, + -0.033218640834093094, + -0.11523260921239853, + 0.04403006657958031, + 0.04597010463476181, + -0.029653284698724747, + 0.014395075850188732, + 0.059121161699295044, + 0.008456986397504807, + 0.05113501101732254, + 0.022863904014229774, + -0.08146662265062332, + 0.029025685042142868, + 0.027786625549197197, + 0.02677020989358425, + 0.01388152502477169, + -0.04256293550133705, + 0.024136921390891075, + -0.010345065966248512, + -0.0363251268863678, + -0.06467030942440033, + 0.09317223727703094, + -0.001116574858315289, + 0.030833067372441292, + 0.07513487339019775, + 0.02865600772202015, + 0.010431441478431225, + -0.037774719297885895, + 0.007832850329577923, + -0.004735643044114113, + 0.046296924352645874, + 0.08653044700622559, + -0.08753347396850586, + -0.057440321892499924, + -0.03944535553455353, + -0.018156813457608223, + 0.029701588675379753, + 0.039282239973545074, + 0.05267748236656189, + -0.004406331107020378, + 0.10060780495405197, + 0.08613433688879013, + -0.017058981582522392, + 0.05765996500849724, + -0.0279636662453413, + -0.016046088188886642, + -0.030475931242108345, + 0.0014997288817539811, + -0.019527578726410866, + -0.0031398446299135685, + 0.008058077655732632, + 0.04108373820781708, + -0.06197552755475044, + 0.05362202599644661, + 0.0597807839512825, + 0.04242601618170738, + 0.02488701418042183, + 0.06214427202939987, + 0.003053167602047324, + -0.04452749341726303, + -0.014503306709229946, + -0.009451286867260933, + 0.0216700229793787, + -0.015702294185757637, + 0.010632281191647053, + -0.0936647579073906, + -0.010637744329869747, + 0.03446006029844284, + 0.04785748943686485, + 0.10395673662424088, + -0.034483544528484344, + -0.08094759285449982, + 0.004615494515746832, + -0.06532031297683716, + 0.05913785099983215, + 0.016299597918987274, + -0.05506804957985878, + 0.010307328775525093, + -0.013336222618818283, + -0.0002781963557936251, + 0.032316166907548904, + 0.036192841827869415, + -0.016951117664575577, + 0.030798912048339844, + -0.029460670426487923, + 0.07174666225910187, + 0.009142092429101467, + -0.009482244960963726, + -0.05276598036289215, + 0.03884807601571083, + 0.018117452040314674, + -0.02517392300069332, + -0.07376152276992798, + -2.3751196565058308e-08, + -0.05130051076412201, + -0.07236601412296295, + -0.02740425616502762, + -0.03296978399157524, + -0.027054404839873314, + -0.00733209028840065, + -0.02341311424970627, + 0.0011903182603418827, + -0.0371597483754158, + -0.07243949174880981, + 0.04350590333342552, + 0.018381450325250626, + -0.08781596273183823, + -0.025645049288868904, + 0.1590007245540619, + 0.01126493513584137, + -0.09964878112077713, + 0.06878956407308578, + -0.05113456770777702, + -0.02600877918303013, + -0.03602628782391548, + 0.03147575259208679, + 0.02430984564125538, + 0.05054612085223198, + -0.03154517337679863, + 0.03513512387871742, + 0.007031680084764957, + 0.1376761943101883, + 0.06463339179754257, + 0.05894364416599274, + 0.06784499436616898, + 0.09002435207366943, + 0.019485164433717728, + -0.028813837096095085, + 0.009059480391442776, + 0.03044736385345459, + 0.01733049377799034, + -0.029292557388544083, + 0.058598656207323074, + 0.12559616565704346, + 0.030501168221235275, + -0.030711580067873, + -0.0303259938955307, + 0.019567668437957764, + -0.03405456617474556, + 0.06555774062871933, + 0.04153438284993172, + 0.049868661910295486, + -0.08485130965709686, + -0.11632915586233139, + 0.013539111241698265, + 0.05881347879767418, + -0.0008796791080385447, + 0.04639841616153717, + -0.05493110045790672, + 0.034223522990942, + -0.014760679565370083, + 0.05160878971219063, + -0.07372930645942688, + 0.040327806025743484, + 0.10360061377286911, + 0.02041127346456051, + 0.03352932259440422, + 0.032574716955423355 + ], + "carrot-bold||food,vegetable,veggie,groceries,market": [ + -0.016749439761042595, + -0.012503250502049923, + -0.06287621706724167, + 0.08664605766534805, + 0.058538686484098434, + 0.019473325461149216, + 0.02291009947657585, + -0.03340466693043709, + 0.019392749294638634, + -0.04526892304420471, + 0.11309943348169327, + -0.07367011159658432, + -0.021888932213187218, + -0.09449724107980728, + 0.026440680027008057, + 0.00958102848380804, + 0.11625243723392487, + 0.07531409710645676, + -0.045387234538793564, + -0.05591259151697159, + -0.01053109485656023, + 0.035095371305942535, + 0.056147877126932144, + 0.040702804923057556, + 0.03076343610882759, + -0.052702970802783966, + -0.0013107431586831808, + 0.008614536374807358, + -0.03610795736312866, + -0.06405047327280045, + -0.0058540417812764645, + -0.005973192863166332, + 0.08926791697740555, + 0.07021953910589218, + 0.05313442274928093, + 0.035480983555316925, + -0.007684776559472084, + -0.06899594515562057, + 0.04472906142473221, + -0.010882355272769928, + 0.0715237632393837, + -0.08686847239732742, + -0.03281737118959427, + -0.02895313687622547, + 0.014038744382560253, + -0.005521394778043032, + -0.0893118754029274, + 0.021440036594867706, + 0.00019236707885283977, + -0.01964765042066574, + -0.027062229812145233, + -0.07326468825340271, + -0.1423235684633255, + -0.01548242662101984, + 0.01798882521688938, + 0.04813077300786972, + -0.05857916176319122, + -0.012451708316802979, + 0.10234381258487701, + 0.07691224664449692, + 0.04331760108470917, + -0.010927245020866394, + 0.06622366607189178, + 0.05988093093037605, + -0.029863031581044197, + -0.03568107634782791, + -0.05513929948210716, + 0.021307218819856644, + -0.0537487268447876, + -0.0008889531600289047, + 0.04714987054467201, + 0.0013972539454698563, + 0.013751138933002949, + -0.0014971924247220159, + -0.06510289013385773, + -0.037750691175460815, + 0.0011805426329374313, + -0.0096143689006567, + -0.024256259202957153, + -0.0356891043484211, + -0.06881773471832275, + 0.012937154620885849, + -0.04413406923413277, + 0.01679622009396553, + -0.016789240762591362, + 0.04029427096247673, + -0.08470974862575531, + -0.07084405422210693, + -0.0640721470117569, + -0.02658713236451149, + -0.037089549005031586, + -0.055369745939970016, + 0.024388154968619347, + 0.0767868161201477, + -0.025275424122810364, + -0.019443146884441376, + 0.11157038062810898, + -0.11174748837947845, + -0.027825038880109787, + 0.028795812278985977, + -0.002445516875013709, + 0.029525645077228546, + 0.06520430743694305, + -0.00020620771101675928, + -0.044315680861473083, + -0.02448771335184574, + -0.06505049765110016, + -0.05870077386498451, + -0.010966622270643711, + 0.04300857335329056, + -0.05932161211967468, + -0.015224660746753216, + -0.024804281070828438, + -0.09818995743989944, + -0.026508327573537827, + -0.07033177465200424, + -0.03932885080575943, + -0.0610673762857914, + 0.10555251687765121, + 0.10461383312940598, + -0.022279005497694016, + 0.007180274464190006, + -0.023818280547857285, + -0.055434975773096085, + -0.0038797161541879177, + -0.007546204142272472, + 0.06063278764486313, + -1.5323535890743061e-33, + 0.03120267018675804, + -0.0035989664029330015, + 0.03149903193116188, + 0.028949979692697525, + 0.0018587360391393304, + -0.012854467146098614, + -0.01706382818520069, + -0.008477702736854553, + -0.005503334105014801, + 0.08188525587320328, + 0.003737270599231124, + -0.018333517014980316, + -0.08116420358419418, + 0.07235489785671234, + 0.03845848888158798, + 0.03932306542992592, + -0.07346493005752563, + 0.007051414810121059, + -0.0018142174230888486, + 0.003923813812434673, + -0.07719439268112183, + 0.0021154433488845825, + -0.05737141892313957, + -0.042455725371837616, + -0.06660146266222, + -0.06906045228242874, + 0.0023334564175456762, + -0.09549546241760254, + 0.04237935692071915, + 0.028625670820474625, + 0.052154842764139175, + 0.0581829771399498, + -0.001830732449889183, + -0.012258097529411316, + -0.09584246575832367, + -0.011398033238947392, + -0.049944210797548294, + -0.07072015106678009, + 0.0484267883002758, + 0.06250832229852676, + 0.00019481685012578964, + 0.0059367031790316105, + 0.0198820810765028, + -0.01174178346991539, + 0.052823398262262344, + 0.13296546041965485, + 0.04205010086297989, + 0.004114216193556786, + 0.00859847478568554, + 0.006809836719185114, + 0.005820442922413349, + -0.05732716619968414, + -0.010665341280400753, + 0.03292708843946457, + -0.0008587365737184882, + -0.027989428490400314, + -0.018281646072864532, + 0.03060580976307392, + -0.08039064705371857, + 0.016807744279503822, + 0.011126354336738586, + 0.023808667436242104, + 0.0071240076795220375, + -0.05956537276506424, + -0.04560760036110878, + 0.018790263682603836, + -0.1511067897081375, + 0.007230330724269152, + 0.07497285306453705, + 0.00845746323466301, + 0.04117143899202347, + 0.04862067103385925, + 0.05029575526714325, + 0.007839641533792019, + 0.013588109984993935, + 0.014444107189774513, + -0.012346825562417507, + 0.07403301447629929, + -0.019648319110274315, + -0.023228555917739868, + 0.003279837081208825, + 0.026981379836797714, + -0.0518900491297245, + 0.06312384456396103, + -0.008217904716730118, + 0.08456685394048691, + -0.07747312635183334, + -0.16557036340236664, + 0.08233143389225006, + 0.03994644433259964, + -0.06150451675057411, + 0.006256690248847008, + -0.054545897990465164, + -0.058637723326683044, + -0.07790081948041916, + -9.200182860863257e-34, + -0.0031349200289696455, + 0.04138464108109474, + -0.04954034090042114, + 0.05980414152145386, + 0.053427062928676605, + -0.038632284849882126, + -0.06562445312738419, + -0.027551425620913506, + 0.032606542110443115, + -0.004889806732535362, + -0.06301970034837723, + -0.02578132227063179, + -0.023248814046382904, + -0.08066549897193909, + -0.007423035334795713, + 0.13901366293430328, + 0.005177869461476803, + 0.07624489068984985, + 0.022239411249756813, + -0.014911903068423271, + -0.11658263206481934, + -0.07919489592313766, + 0.002740289084613323, + 0.06087374687194824, + 0.034225188195705414, + 0.07964252680540085, + -0.006840873509645462, + 0.0018177666934207082, + 0.027802294120192528, + 0.012648006901144981, + 0.002731317887082696, + -0.06623530387878418, + 0.044063784182071686, + 0.09758085012435913, + -0.03505836799740791, + 0.014278042130172253, + -0.07269614934921265, + -0.10854284465312958, + 0.0815931186079979, + 0.023691128939390182, + 0.027675066143274307, + -0.002567835384979844, + 0.037220779806375504, + 0.04070828855037689, + 0.014040877111256123, + -0.014985817484557629, + 0.053228773176670074, + -0.03504496440291405, + 0.02663823589682579, + -0.007385995239019394, + 0.025014309212565422, + 0.011289531365036964, + -0.07608076184988022, + -0.002901574596762657, + -0.04944637790322304, + 0.06920129805803299, + 0.025434181094169617, + 0.03866489231586456, + -0.057816047221422195, + -0.03271757811307907, + -0.019860101863741875, + 0.1000208631157875, + 0.017609354108572006, + 0.0681927353143692, + 0.03506191447377205, + 0.009611153043806553, + 0.050885699689388275, + -0.0151405343785882, + 0.021306363865733147, + -0.05918921157717705, + 0.04254678264260292, + 0.0053727696649730206, + 0.019714809954166412, + -0.0549737848341465, + -0.022598566487431526, + 0.003099334891885519, + 0.057937175035476685, + 0.00019831991812679917, + -0.03971197456121445, + 0.0475589781999588, + -0.030446046963334084, + -0.0043838792480528355, + -0.0018523576436564326, + 0.008659805171191692, + -0.055523309856653214, + 0.05090676248073578, + -0.04308824986219406, + 0.04358604922890663, + -0.011909726075828075, + 0.053382210433483124, + -0.03880397230386734, + 0.0766957700252533, + -0.0001265616447199136, + 0.0354614295065403, + 0.06404217332601547, + -1.8993445038972823e-08, + 0.07164739817380905, + -0.03869376331567764, + -0.06955546140670776, + 0.046695735305547714, + 0.05472764000296593, + -0.06840651482343674, + -0.03654143586754799, + -0.02250596508383751, + -0.04662327095866203, + 0.06649722903966904, + -0.04453209787607193, + 0.06953270733356476, + -0.1476251184940338, + 0.02127787098288536, + 0.06160397082567215, + 0.006227822043001652, + 0.022985931485891342, + -0.012107343412935734, + -0.004330013878643513, + -0.008745187893509865, + -0.05382407829165459, + 0.05567502602934837, + 0.010545908473432064, + -0.06925059109926224, + -0.028743036091327667, + 0.05722591653466225, + -0.022556733340024948, + 0.0078062573447823524, + 0.15414941310882568, + 0.1159406378865242, + 0.10908880829811096, + 0.054985374212265015, + -0.0337739959359169, + -0.012465436942875385, + -0.023995045572519302, + -0.003720275592058897, + -0.09390333294868469, + -0.02087010070681572, + -0.017882928252220154, + 0.05757380276918411, + -0.019311916083097458, + -0.030200740322470665, + -0.0073333377949893475, + -0.010246713645756245, + -0.06295868009328842, + 0.017119867727160454, + -0.0030941602308303118, + 0.006186650134623051, + -0.056446921080350876, + -0.04548785090446472, + -0.08771124482154846, + -0.04269491508603096, + 0.04447179287672043, + 0.024861352518200874, + -0.023541416972875595, + -0.01565566286444664, + 0.02452120929956436, + -0.0010938008781522512, + 0.014910770580172539, + 0.021570339798927307, + 0.031248345971107483, + 0.0028545053210109472, + 0.03806192800402641, + 0.06941623240709305 + ], + "cash-register-bold||*new*,retail,point-of-sale,pos,transaction,sales,till": [ + -0.037998028099536896, + -0.05799178034067154, + -0.08441164344549179, + 0.0018364620627835393, + -0.03373059630393982, + 0.02504192292690277, + 0.08007922768592834, + 0.015327042900025845, + 0.0022971013095229864, + -0.054788388311862946, + 0.09561929851770401, + 0.020574726164340973, + -0.012286411598324776, + -0.03788086026906967, + 0.05545293167233467, + 0.019828593358397484, + -0.0006364445434883237, + -0.003978434018790722, + 0.08395557850599289, + 0.05289440229535103, + 0.056476105004549026, + 0.030322035774588585, + -0.03135114908218384, + 0.04714231193065643, + 0.08016782999038696, + 0.012232127599418163, + 0.041288334876298904, + 0.029666820541024208, + 0.03991248086094856, + -0.11048639565706253, + 0.006945239845663309, + 0.0410592295229435, + 0.16644474864006042, + 0.016428541392087936, + 0.09503218531608582, + -0.043279532343149185, + 0.048955049365758896, + 0.0040864646434783936, + 0.013539994135499, + 0.021923214197158813, + -0.03813174366950989, + -0.14443066716194153, + -0.0849614217877388, + 0.03412273898720741, + 0.016732610762119293, + 0.01735955849289894, + 0.028054164722561836, + 0.08422426879405975, + -0.005605736747384071, + 0.0687188059091568, + 0.020139435306191444, + -0.051509276032447815, + -0.11528288573026657, + 0.045696478337049484, + -0.014700846746563911, + 0.04254845902323723, + -0.02905198186635971, + -0.10056711733341217, + -0.006844561547040939, + -0.04346254840493202, + 0.002078197430819273, + 0.039422862231731415, + 0.014512721449136734, + 0.028450634330511093, + 0.020523512735962868, + 0.011161556467413902, + -0.0447767935693264, + -0.016802631318569183, + -0.053011056035757065, + -0.02563072182238102, + -0.05948556959629059, + -0.023295244202017784, + -0.03394991159439087, + 0.014068379066884518, + -0.07795018702745438, + -0.01979176700115204, + 0.04718463122844696, + -0.031136466190218925, + -0.03258041664958, + -0.11773089319467545, + -0.026952113956212997, + 0.018620846793055534, + -0.04544815793633461, + 0.0018406965536996722, + 0.014646769501268864, + 0.04092809185385704, + -0.037498947232961655, + -0.06237444281578064, + -0.02475091628730297, + -0.05082276836037636, + -0.026057301089167595, + -0.032027460634708405, + -0.0288421418517828, + -0.0005199856241233647, + -0.10323946177959442, + 0.014029826037585735, + 0.025632213801145554, + 0.038773395121097565, + 0.12880882620811462, + 0.046910610049963, + 0.07038651406764984, + 0.06212304159998894, + -0.001842109253630042, + 0.014095443300902843, + -0.02320367842912674, + -0.06527148932218552, + -0.08712311834096909, + -0.007168159354478121, + -0.02070586197078228, + 0.0039171152748167515, + -0.060111090540885925, + 0.013194461353123188, + 0.004849588964134455, + -0.07300540804862976, + -0.03173927217721939, + 0.04553573206067085, + -0.11776712536811829, + -0.008080353029072285, + 0.125710129737854, + 0.041108109056949615, + 0.0360996350646019, + 0.05546708405017853, + -0.06695903092622757, + -0.041161615401506424, + -0.07596845924854279, + -0.012536858208477497, + 0.040536824613809586, + -3.767218050701528e-33, + -0.03907079994678497, + 0.0032381212804466486, + 0.0004733515961561352, + 0.02810860238969326, + -0.011210400611162186, + -0.010943781584501266, + -0.04050783812999725, + -0.07191596180200577, + -0.04263196885585785, + 0.14666041731834412, + 0.07464931160211563, + -0.023493576794862747, + -0.028377974405884743, + 0.06402543932199478, + 0.04734579101204872, + -0.0012400707928463817, + -0.012693253345787525, + 0.03235958144068718, + 0.037592265754938126, + 0.0346110574901104, + -0.0915534719824791, + 0.05734705552458763, + -0.009601699188351631, + 0.025782626122236252, + 0.04161795228719711, + 0.09908996522426605, + -0.010051981545984745, + -0.006338411942124367, + -0.01828393153846264, + 0.02525225840508938, + 0.10746773332357407, + -0.007835589349269867, + 0.07876298576593399, + -0.0142685417085886, + 0.007197901606559753, + 0.018344800919294357, + -0.03175736963748932, + -0.03356100991368294, + 0.02635679952800274, + -0.025261588394641876, + -0.09779681265354156, + -0.051686037331819534, + -0.04187744855880737, + -0.00827430747449398, + -0.0001872658176580444, + 0.10940399020910263, + -0.04526059702038765, + 0.02235363982617855, + 0.07646699994802475, + 0.05192429944872856, + 0.004337714985013008, + -0.04809195175766945, + -0.010918022133409977, + 0.024863887578248978, + -0.03887367248535156, + -0.08571333438158035, + -0.07067233324050903, + -0.013755980879068375, + -0.03814505785703659, + -0.017351331189274788, + 0.019799793139100075, + 0.03268345072865486, + -0.030641771852970123, + -0.021534277126193047, + -0.13754604756832123, + -0.029374154284596443, + -0.025275390595197678, + -0.009941324591636658, + 0.05989639088511467, + 0.015180687420070171, + 0.019619746133685112, + 0.055688850581645966, + 0.02261197194457054, + 0.07193021476268768, + 0.010799522511661053, + -0.024815091863274574, + 0.019912436604499817, + 0.022358998656272888, + -6.950186798349023e-05, + -0.029316993430256844, + -0.07887165248394012, + 0.026168661192059517, + -0.028752228245139122, + 0.06779884546995163, + 0.014830219559371471, + 0.014829285442829132, + 0.042953647673130035, + -0.042171038687229156, + -0.027518602088093758, + 0.007885956205427647, + -0.10800738632678986, + 0.0406084768474102, + -0.0351271890103817, + -0.013144814409315586, + -0.03430016338825226, + -2.9648619277689653e-35, + 0.047412093728780746, + -0.014518655836582184, + -0.09481830149888992, + 0.05900606885552406, + -0.11329279094934464, + 0.045629531145095825, + 0.02761106565594673, + 0.027865095064044, + 0.011390291154384613, + 0.010756959207355976, + -0.05144655704498291, + -0.007845454849302769, + -0.014949490316212177, + -0.039651207625865936, + 0.047851838171482086, + -0.011623311787843704, + -0.024159036576747894, + 0.05642705038189888, + -0.014028369449079037, + 0.07205501198768616, + -0.03558481112122536, + -0.012389540672302246, + -0.06983638554811478, + 0.05055148899555206, + 0.009483766742050648, + 0.019109470769762993, + -0.06378766894340515, + 0.03205869719386101, + -0.045133326202631, + -0.024274883791804314, + -0.01788371615111828, + -0.05827738344669342, + 0.043427761644124985, + 0.0715688169002533, + -0.084793321788311, + -0.09803029149770737, + 0.09471602737903595, + -0.019977062940597534, + 0.04479556903243065, + 0.04068302363157272, + -0.003023869823664427, + -0.028168700635433197, + 0.06465312838554382, + 0.07078336924314499, + -0.024612445384263992, + -0.04940732568502426, + -0.01772986724972725, + -0.004999157972633839, + 0.04026317596435547, + 0.0038668259512633085, + -0.004770931787788868, + 0.014989402145147324, + -0.021001512184739113, + -0.01163067203015089, + -0.07689426839351654, + 0.10766536742448807, + -0.01578076183795929, + -0.05517759919166565, + 0.016119102016091347, + 0.030121060088276863, + -0.01368305366486311, + 0.05215888097882271, + 0.004384786821901798, + 0.025472858920693398, + 0.046915773302316666, + -0.10106807202100754, + 0.045899584889411926, + -0.02159828506410122, + -0.024734243750572205, + -0.05743299424648285, + 0.0461958609521389, + -0.016519490629434586, + -0.03754155710339546, + -0.05049692466855049, + -0.05863012745976448, + -0.022483134642243385, + -0.01203839760273695, + -0.03637222573161125, + -0.018675491213798523, + -0.017985593527555466, + -0.08677124977111816, + -0.028249520808458328, + -0.011807781644165516, + 0.06017761304974556, + -0.05671050027012825, + 0.05268619582056999, + -0.0025837861467152834, + -0.013561665080487728, + 0.010470648296177387, + -0.08555308729410172, + -0.04298200458288193, + 0.03058961220085621, + -0.02293435111641884, + -0.03545136749744415, + -0.11993661522865295, + -2.6083975868118614e-08, + -0.018520481884479523, + -0.08104207366704941, + 0.006766736041754484, + -0.019949546083807945, + 0.09900731593370438, + -0.02256261557340622, + 0.021693142130970955, + 0.039552584290504456, + 0.005074263550341129, + 0.003173070028424263, + 0.06600623577833176, + 0.019107146188616753, + -0.11447838693857193, + -0.08541129529476166, + 0.055517010390758514, + 0.0009580712649039924, + 0.020390812307596207, + 0.028003381565213203, + -0.03785577788949013, + -0.05993301793932915, + -0.04832500219345093, + 0.09529513120651245, + 0.02148127183318138, + -0.004499770700931549, + 0.016256315633654594, + 0.0023388599511235952, + 0.03662743419408798, + 0.14276842772960663, + 0.0979783907532692, + 0.04457676038146019, + 0.09675776213407516, + 0.06903238594532013, + 0.008907424286007881, + -0.049890581518411636, + -0.0022213433403521776, + -0.04918639361858368, + 0.0034485345240682364, + 0.03225948289036751, + -0.005869689863175154, + 0.10277479887008667, + -0.04936230182647705, + -0.06560133397579193, + -0.05033844709396362, + 0.0015846306923776865, + -0.010936880484223366, + 0.006919672712683678, + -0.08763524889945984, + -0.060964230448007584, + -0.012576430104672909, + -0.13358983397483826, + -0.02725144661962986, + -0.013854501768946648, + 0.052951306104660034, + 0.020604301244020462, + -0.011288182809948921, + 0.013431415893137455, + 0.037305545061826706, + 0.033185552805662155, + 0.03972185403108597, + 0.008611185476183891, + 0.06346362084150314, + 0.013525414280593395, + 0.029192715883255005, + 0.011618437245488167 + ], + "cassette-tape-bold||recording,audio,album,music": [ + 0.003144830232486129, + 0.013709645718336105, + -0.0981273502111435, + -0.04632933810353279, + -0.009278915822505951, + 0.04569485783576965, + 0.07714131474494934, + 0.008061643689870834, + -0.06228889897465706, + -0.08740504831075668, + 0.014848686754703522, + -0.045084815472364426, + 0.011435017921030521, + -0.04021061211824417, + -0.055047694593667984, + 0.015595715492963791, + 0.034476954489946365, + 0.07063855975866318, + 0.08909598737955093, + -0.03316719830036163, + -0.026044731959700584, + 0.062168728560209274, + 0.05788940191268921, + 0.03837110102176666, + 0.013869134709239006, + 0.03990565985441208, + -0.021714502945542336, + -0.001996532781049609, + 0.015769684687256813, + -0.0938582792878151, + -0.05075027421116829, + 0.021905262023210526, + 0.11818170547485352, + -0.0441686287522316, + 0.06895177066326141, + -0.02543637715280056, + -0.02057667449116707, + -0.008842536248266697, + 0.04405979439616203, + -0.005528747104108334, + 0.06853780150413513, + -0.016802210360765457, + 0.0011157040717080235, + -0.03576778993010521, + -0.12294812500476837, + -0.04938720539212227, + -0.05398312956094742, + -0.018508046865463257, + -0.03617976978421211, + 0.048052556812763214, + -0.011189750395715237, + -0.04247794300317764, + -0.08824397623538971, + 0.004434225149452686, + -0.03912341967225075, + -0.02542608603835106, + 0.0445052795112133, + 0.055471234023571014, + 0.026585359126329422, + 0.01749151200056076, + -0.01216262485831976, + -0.0019136982737109065, + 0.025333452969789505, + 0.014316823333501816, + 0.06490018218755722, + 0.03746705502271652, + -0.028896380215883255, + 0.08466218411922455, + -0.0283341221511364, + 0.07171835005283356, + -0.008025909774005413, + 0.03796099126338959, + -0.04403957724571228, + -0.05714329332113266, + 0.017063910141587257, + -0.04391295090317726, + -0.029564445838332176, + 0.02047581411898136, + -0.09732033312320709, + -0.03246886283159256, + -0.09033016115427017, + -0.07324281334877014, + -0.01727340742945671, + -0.0642242282629013, + -0.0047789947129786015, + 0.04331377521157265, + -0.015021583996713161, + -0.06360673904418945, + -0.059748370200395584, + -0.03037627600133419, + -0.0850893184542656, + 0.028339922428131104, + -0.029563233256340027, + -0.048504531383514404, + -0.022802384570240974, + 0.009365755133330822, + 0.026382701471447945, + 0.008240005001425743, + 0.00015718697977717966, + 0.051037516444921494, + 0.09236321598291397, + 0.011041478253901005, + -0.031777847558259964, + -0.0006758954841643572, + -0.047696392983198166, + -0.10926735401153564, + -0.03277236223220825, + -0.025112034752964973, + 0.002234721090644598, + -0.03883421793580055, + 0.014051043428480625, + -0.017384544014930725, + -0.018607497215270996, + -0.04231182858347893, + 0.056473616510629654, + -0.028001751750707626, + -0.030816329643130302, + 0.0013200839748606086, + 0.01821775548160076, + 0.03993311524391174, + 0.032919760793447495, + -0.04616038501262665, + -0.026869647204875946, + -0.00214882823638618, + -0.03542429581284523, + -0.006921212654560804, + 0.08524544537067413, + -3.696215253175985e-33, + 0.05742751434445381, + 0.01633615233004093, + -0.012721763923764229, + 0.05449725687503815, + 0.06800437718629837, + -0.0008205390768125653, + -0.043005578219890594, + 0.014047848992049694, + -0.0470234751701355, + 0.1026887372136116, + 0.07894354313611984, + 0.039611414074897766, + -0.02483731135725975, + 0.05760691687464714, + -0.010317874141037464, + 0.06107742711901665, + -0.06477625668048859, + 0.03279871493577957, + -0.09444184601306915, + -0.025543050840497017, + -0.03651466220617294, + 0.07633867114782333, + 0.04685370251536369, + -0.01579194702208042, + 0.052130576223134995, + -0.07993496209383011, + -0.0031162716913968325, + -0.03046812117099762, + 0.0018877334659919143, + 0.015321041457355022, + -0.006732974201440811, + -0.05746553838253021, + 0.0846230611205101, + -0.03700824826955795, + 0.03545946627855301, + 0.05985120311379433, + -0.12531781196594238, + 0.025774585083127022, + 0.02167971432209015, + -0.005570045672357082, + -0.018045539036393166, + -0.031992241740226746, + -0.04258433356881142, + -0.05309220403432846, + 0.029384402558207512, + 0.09669763594865799, + 0.023058738559484482, + 0.0038302454631775618, + 0.02086603082716465, + 0.04162784293293953, + 0.03314397856593132, + -0.056243896484375, + -0.04370228201150894, + -0.011174357496201992, + 0.019498273730278015, + -0.031990982592105865, + 0.03571368008852005, + 0.08330648392438889, + 0.0010893557919189334, + 0.027081046253442764, + 0.08560090512037277, + 0.06951625645160675, + 0.05172499641776085, + -0.03524182364344597, + -0.03840513154864311, + 0.139131560921669, + -0.002835632534697652, + -0.03446919843554497, + 0.11970644444227219, + -0.016234487295150757, + -0.05292382836341858, + 0.035163044929504395, + 0.0042284466326236725, + 0.006123651284724474, + 0.044861938804388046, + 0.06060875207185745, + -0.03965562582015991, + -0.07358380407094955, + 0.023085156455636024, + -0.06830489635467529, + -0.110555000603199, + 0.07715833187103271, + -0.08781784027814865, + 0.019524643197655678, + 0.030338864773511887, + 0.05374478921294212, + -0.02693123184144497, + -0.07740068435668945, + 0.0065575214102864265, + 0.06221470981836319, + -0.06494421511888504, + 0.06561258435249329, + -0.07064427435398102, + -0.033122509717941284, + -0.0473388247191906, + 4.197756620535178e-35, + 0.07506387680768967, + 0.05861982703208923, + 0.061873700469732285, + -0.05873442813754082, + -0.04527289420366287, + -0.006971513386815786, + 0.05017821863293648, + 0.0610991008579731, + 0.009986687451601028, + 0.05514031648635864, + 0.000785494688898325, + -0.05845288187265396, + -0.0500025749206543, + 0.049147721379995346, + -0.03124176897108555, + -0.0720180794596672, + 0.011814259923994541, + 0.06349774450063705, + 0.0436658151447773, + -0.0032053047325462103, + -0.04245312139391899, + -0.013333434239029884, + 0.048058271408081055, + 0.1560056060552597, + -0.07510245591402054, + -0.008458640426397324, + 0.01267997920513153, + -0.0144191300496459, + 0.07582695782184601, + -0.050028592348098755, + 0.00018604425713419914, + -0.028903674334287643, + 0.016838639974594116, + -0.031245239078998566, + 0.009495199657976627, + 0.01984821818768978, + 0.12584957480430603, + 0.04992065578699112, + -0.011318446137011051, + -0.08830919861793518, + -0.10375627130270004, + 0.05811581760644913, + -0.020150043070316315, + -0.013235989958047867, + -0.029503963887691498, + -0.0574200414121151, + -0.05288571119308472, + 0.08485498279333115, + -0.04852389916777611, + 0.0694536343216896, + 0.021579960361123085, + -0.04958907887339592, + 0.020010149106383324, + -0.035063713788986206, + -0.05889766663312912, + -0.0037860777229070663, + -0.10298823565244675, + -0.049272969365119934, + 0.039852891117334366, + 0.07396694272756577, + -0.00725377956405282, + 0.03829805552959442, + -0.07616449892520905, + -0.06760046631097794, + 0.04667368531227112, + -0.01891990937292576, + 0.0900733545422554, + -0.044059570878744125, + -0.027744852006435394, + 0.052326567471027374, + 0.06958554685115814, + 0.04657728597521782, + 0.022993111982941628, + 0.04467806965112686, + -0.03439962863922119, + 0.005470529198646545, + -0.09391112625598907, + -0.035342928022146225, + -0.04979684576392174, + -0.012142378836870193, + -0.09045431017875671, + -0.009971258230507374, + -0.009603267535567284, + 0.05109027028083801, + -0.030209029093384743, + 0.04333876445889473, + 0.0822279080748558, + -0.03360440954566002, + 0.023424675688147545, + 0.01123583223670721, + 0.0421157144010067, + 0.006562369875609875, + -0.037014905363321304, + 0.03233357146382332, + -0.04229303449392319, + -1.676893823798764e-08, + -0.00681335711851716, + 0.04001648351550102, + -0.009850450791418552, + -0.04527707025408745, + -0.007791362702846527, + -0.05087593197822571, + 0.05159547179937363, + -0.0844535306096077, + -0.010000067763030529, + -0.0487147718667984, + 0.04011974111199379, + -0.010097330436110497, + -0.04225757345557213, + -0.0007809047237969935, + 0.00639272341504693, + 0.04289696738123894, + -0.08505595475435257, + 0.015305351465940475, + -0.021608080714941025, + -0.06029001995921135, + -0.021025018766522408, + -0.01459705363959074, + 0.1001543253660202, + -0.049082569777965546, + -0.012668785639107227, + -0.006882667075842619, + 0.029475951567292213, + 0.0840533897280693, + 0.09233273565769196, + -0.00688409898430109, + 0.06435057520866394, + 0.0298561193048954, + 0.02432936057448387, + 0.029012758284807205, + -0.036704860627651215, + -0.12524130940437317, + -0.0127052441239357, + 0.029258113354444504, + -0.009264367632567883, + 0.10233476012945175, + -0.04569067060947418, + -0.01937071792781353, + -0.03124595806002617, + -0.017014218494296074, + -0.029886789619922638, + -0.02647075243294239, + 0.0765022337436676, + -0.012283718213438988, + -0.08253651857376099, + -0.1002996489405632, + -0.052824996411800385, + -0.015998059883713722, + 0.02358176000416279, + 0.0772874653339386, + 0.0025170990265905857, + -0.008701297454535961, + 0.014641890302300453, + 0.10894504189491272, + -0.07688717544078827, + 0.027714615687727928, + 0.07182005792856216, + -0.0029344887007027864, + 0.09081876277923584, + 0.05256064981222153 + ], + "castle-turret-bold||*updated*,chess,rook": [ + 0.03989102691411972, + 0.06298131495714188, + -0.07333546876907349, + -0.05432860553264618, + 0.014730828814208508, + 0.013986879028379917, + -0.013875827193260193, + -0.05919533967971802, + -0.06488548219203949, + -0.05268341675400734, + -0.04218610003590584, + -0.0527799166738987, + 0.045369427651166916, + -0.0785461813211441, + -0.04791655391454697, + 0.033949922770261765, + 0.06402305513620377, + 0.049915559589862823, + -0.007163701578974724, + -0.03269805759191513, + -0.09117045998573303, + -0.039153434336185455, + 0.03320155665278435, + 0.023133782669901848, + 0.017479589208960533, + 0.04682270064949989, + -0.0033798031508922577, + 0.030854422599077225, + -0.037072714418172836, + -0.13822345435619354, + -0.042245011776685715, + 0.002035265089944005, + -0.0020260573364794254, + -0.001206947141326964, + -0.02886064536869526, + 0.014305739663541317, + -0.05351274088025093, + 0.024447504431009293, + -0.016535336151719093, + 0.04262154549360275, + 0.012462127953767776, + -0.03962218388915062, + -0.014128591865301132, + 0.09949812293052673, + -0.036169301718473434, + 0.0788579136133194, + -0.10682859271764755, + -0.049658432602882385, + -0.016223402693867683, + -0.003801178652793169, + -0.09762997180223465, + -0.09830917418003082, + -0.07980430126190186, + 0.021801183000206947, + 0.06556709855794907, + 0.0463203601539135, + -0.0017976131057366729, + -0.017081070691347122, + 0.0817485898733139, + -0.0645185187458992, + 0.009133324958384037, + 0.08931445330381393, + 0.016583152115345, + 0.04018194228410721, + -0.012502345256507397, + 0.0036947440821677446, + 0.00442118477076292, + -0.025524521246552467, + -0.06875097006559372, + 0.07070228457450867, + 0.057933956384658813, + 0.0008781134965829551, + 0.015053531154990196, + -0.08254223316907883, + -0.08463849127292633, + 0.0038372965063899755, + -0.011188860982656479, + -0.008716460317373276, + 0.053157079964876175, + -0.02483813278377056, + -0.08720298111438751, + -0.09305491298437119, + -0.10222241282463074, + -0.05952363833785057, + 0.0190803874284029, + 0.01339944452047348, + -0.058063335716724396, + -0.05351651832461357, + -0.033328816294670105, + 0.0033456215169280767, + 0.055515438318252563, + -0.030784141272306442, + 0.0029975594952702522, + 0.0639803484082222, + -0.04304740950465202, + 0.07017665356397629, + 0.058068156242370605, + 0.02415522374212742, + -0.04754764214158058, + 0.08429886400699615, + 0.009719434194266796, + 0.05948227643966675, + -0.03743797540664673, + 0.002146219601854682, + -0.08087875694036484, + -0.016046060249209404, + 0.03474673256278038, + 0.059775061905384064, + -0.05533706396818161, + -0.007725107949227095, + -0.031334999948740005, + -0.10635153204202652, + -0.013408781029284, + -0.0815640389919281, + -0.06457167118787766, + -0.011718325316905975, + -0.036977849900722504, + -0.054627928882837296, + 0.02445203997194767, + 0.062039121985435486, + 0.1522940993309021, + -0.041757043451070786, + -0.04120272025465965, + -0.01950239948928356, + 0.0016022429335862398, + 0.007340354844927788, + -0.006345199421048164, + -3.975860583790807e-33, + 0.07273204624652863, + -0.00973376166075468, + -0.022295670583844185, + 0.12322881072759628, + 0.05945877358317375, + -0.008858682587742805, + -0.029105830937623978, + -0.05939843878149986, + -0.037254370748996735, + 0.05006635561585426, + 0.05697263032197952, + 0.041310474276542664, + -0.13841362297534943, + 0.013324047438800335, + 0.0017516680527478456, + -0.04329651594161987, + 0.06325427442789078, + -0.004788074642419815, + -0.129677876830101, + 0.06284987181425095, + -0.009131625294685364, + 0.09782435745000839, + -0.026302756741642952, + -0.0004735496477223933, + 0.012872655875980854, + 0.004579165484756231, + -0.007084434852004051, + -0.005169244017452002, + -0.03426816686987877, + 0.0586497001349926, + 0.025061894208192825, + -0.009713001549243927, + -0.06400007754564285, + 0.014051652513444424, + -0.047592438757419586, + -0.0077430023811757565, + -0.0609821081161499, + -0.02651292458176613, + -0.04242947697639465, + 0.0013447089586406946, + -0.018033483996987343, + -0.06326311081647873, + -0.07558023184537888, + -0.025411197915673256, + 0.05298114940524101, + 0.010703697800636292, + -0.035346075892448425, + -0.04560159891843796, + -0.009942470118403435, + -0.08428764343261719, + 0.07036572694778442, + 0.008726992644369602, + -0.04800090938806534, + 0.02070966735482216, + 0.03920688107609749, + -0.02829168736934662, + 0.0033434724900871515, + 0.08680925518274307, + 0.005166138522326946, + 0.02503136359155178, + 0.03793851658701897, + -0.0015024166787043214, + 0.07396813482046127, + 0.04532254487276077, + 0.05076641961932182, + -0.00043632983579300344, + -0.0758078470826149, + 0.05033770203590393, + 0.05409965291619301, + -0.042237985879182816, + 0.02330237627029419, + 0.02303578518331051, + 0.08559998869895935, + 0.058028463274240494, + -0.0389680340886116, + 0.00552913174033165, + -0.036264099180698395, + -0.03921172395348549, + 0.010218414478003979, + -0.1348239779472351, + -0.03654051199555397, + 0.06826727092266083, + -0.11025595664978027, + 0.06416669487953186, + 0.005326014012098312, + -0.001198922866024077, + -0.013956382870674133, + -0.05426906794309616, + -0.056422051042318344, + 0.07094217836856842, + -0.06853502243757248, + -0.0023913502227514982, + -0.042441677302122116, + -0.05594705790281296, + -0.071259506046772, + 2.666261107898661e-34, + 0.04378749802708626, + 0.0009437054395675659, + -0.005018531810492277, + -0.021016720682382584, + 0.002152244560420513, + 0.04981093481183052, + 0.005167127586901188, + 0.016496658325195312, + 0.04694085568189621, + 0.05475577339529991, + -0.040311168879270554, + 0.014385737478733063, + -0.08013629168272018, + -0.02335364744067192, + 0.06366627663373947, + 0.0037260237149894238, + 0.09829562157392502, + 0.003322862321510911, + -0.04942000284790993, + 0.05282921716570854, + 0.028712032362818718, + -0.010405265726149082, + -0.02326367236673832, + 0.12894660234451294, + 0.0294912401586771, + 0.03796930983662605, + -0.023144008591771126, + 0.028599563986063004, + 0.008849103935062885, + -0.0022250977344810963, + -0.0446942038834095, + -0.052228424698114395, + 0.013441527262330055, + 0.05293833091855049, + -0.01762745901942253, + 0.04613884910941124, + 0.10075817257165909, + -0.061429936438798904, + 0.012370655313134193, + 0.047596413642168045, + 0.0056752534583210945, + -0.033954229205846786, + -0.059393517673015594, + 0.05128810182213783, + 0.015292452648282051, + 0.03532181307673454, + 0.01809406839311123, + 0.0028509676922112703, + 0.008798361755907536, + 0.005501095671206713, + 0.049380190670490265, + -0.06380584090948105, + -0.046664539724588394, + -0.02351522259414196, + -0.038336530327796936, + 0.00420463178306818, + -0.03731955587863922, + 0.0023860835935920477, + 0.10272584110498428, + 0.0763058289885521, + 0.01658615656197071, + 0.08736314624547958, + -0.03936959058046341, + -0.011963789351284504, + 0.00787880178540945, + 0.016473686322569847, + -0.013089273124933243, + -0.06036120280623436, + 0.0667506754398346, + 0.006657748483121395, + 0.036565009504556656, + 0.06200028583407402, + -0.08557060360908508, + 0.06933549046516418, + 0.04276067391037941, + -0.017108608037233353, + 0.0225728377699852, + 0.009803792461752892, + 0.02661253698170185, + 0.01122500654309988, + -0.06635063141584396, + -0.010139637626707554, + -0.0297645702958107, + -0.01530417986214161, + 0.01631809026002884, + 0.00898684747517109, + 0.0391249880194664, + 0.08505304157733917, + -0.010711567476391792, + -0.08678265661001205, + 0.02463071420788765, + 0.018063688650727272, + -0.015429281629621983, + -0.014867940917611122, + -0.012471708469092846, + -1.8427407155741093e-08, + 0.013886669650673866, + 0.013167990371584892, + -0.07525531202554703, + -0.019792871549725533, + 0.029338888823986053, + -0.10538674145936966, + 0.009797444567084312, + -0.06323828548192978, + -0.0007360699237324297, + -0.08985939621925354, + 0.066401407122612, + 0.015096647664904594, + 0.054555345326662064, + -0.03420041501522064, + 0.10345688462257385, + 0.02996365912258625, + -0.06755895912647247, + -0.01586838811635971, + -0.04776035249233246, + -0.010918485932052135, + 0.04003617540001869, + 0.04203801229596138, + -0.00841530505567789, + 0.0017766884993761778, + -0.03493531048297882, + -0.02418895810842514, + -0.07843954116106033, + 0.011763268150389194, + 0.031582724303007126, + 0.10406060516834259, + 0.12906628847122192, + 0.023207740858197212, + 0.08671819418668747, + -0.0038451256696134806, + -0.03555769845843315, + 0.023853909224271774, + 0.06821597367525101, + 0.0011225307825952768, + 0.055071499198675156, + 0.05802518501877785, + -0.040127381682395935, + -0.06971298158168793, + -0.036613062024116516, + -0.02583126537501812, + -0.08720861375331879, + -0.0041602542623877525, + -0.000998321338556707, + -0.04856623336672783, + -0.09770545363426208, + -0.11615056544542313, + 0.016200024634599686, + 0.015337026678025723, + 0.03285232558846474, + 0.0543493777513504, + 0.009540815837681293, + -0.0010342730674892664, + 0.0767185315489769, + 0.05331612378358841, + 0.040858637541532516, + -0.010536620393395424, + 0.1267416626214981, + -0.023425603285431862, + 0.021737810224294662, + 0.01625620573759079 + ], + "cat-bold||pets,animals,kitty,kitten": [ + 0.0030226539820432663, + -0.011772172525525093, + 0.021043196320533752, + 0.04189308360219002, + -0.03452927991747856, + -0.013424335047602654, + 0.05080529674887657, + -0.09244922548532486, + 0.012143786996603012, + -0.0006987820961512625, + 0.015509793534874916, + -0.034174595028162, + 0.021464146673679352, + 0.021794606000185013, + -0.015343998558819294, + 0.0670412927865982, + -0.021366707980632782, + 0.03478693962097168, + 0.01312112808227539, + 0.005143916234374046, + -0.008830136619508266, + 0.07775816321372986, + 0.03983113542199135, + 0.012618987821042538, + -0.024225803092122078, + 0.05286581814289093, + -0.044941142201423645, + -0.03702525421977043, + -0.010139266960322857, + -0.029652869328856468, + -0.04584198445081711, + 0.00811612419784069, + 0.09559717029333115, + 0.055501002818346024, + 0.033642906695604324, + 0.0022853331174701452, + -0.03474549204111099, + -0.02217019349336624, + 0.07202494144439697, + 0.11242415010929108, + -0.0005811469163745642, + -0.05340328812599182, + -0.030574174597859383, + 0.019961394369602203, + -0.057696644216775894, + -0.02886781096458435, + -0.06097795441746712, + -0.08274941891431808, + 0.047543447464704514, + -0.013449721969664097, + -0.06289758533239365, + -0.06527635455131531, + -0.12959131598472595, + 0.0614435151219368, + -0.009432770311832428, + -0.023966744542121887, + -0.03468615561723709, + -0.03800112009048462, + 0.0033020004630088806, + -0.004941334016621113, + -0.005450844764709473, + 0.05282270908355713, + 0.09187018871307373, + 0.07385852932929993, + 0.06074674427509308, + -0.016815846785902977, + -0.015226843766868114, + 0.04766204208135605, + -0.022843871265649796, + 0.04069861024618149, + 0.047012731432914734, + 0.02841794118285179, + -0.01396891288459301, + -0.009290560148656368, + -0.12248606234788895, + 0.04717528074979782, + 0.07880599796772003, + 0.0271622221916914, + 0.041938528418540955, + -0.06886068731546402, + -0.06970871984958649, + -0.054365262389183044, + -0.02422860823571682, + -0.002280671149492264, + 0.060947004705667496, + 0.06857876479625702, + -0.09175608307123184, + -0.08596944808959961, + -0.12338340282440186, + 0.006541469134390354, + -0.04255056008696556, + -0.0352945514023304, + 0.049827538430690765, + 0.038873568177223206, + -0.03526591509580612, + 0.006810070481151342, + 0.11324334889650345, + -0.049432940781116486, + -0.041912343353033066, + 0.07817425578832626, + -0.0011531831696629524, + 0.04965586960315704, + 0.002381767611950636, + -0.011004175059497356, + -0.030505424365401268, + -0.05736840143799782, + -0.043985962867736816, + -0.03731061518192291, + -0.0054447706788778305, + 0.020614806562662125, + -0.012565125711262226, + -0.09355749934911728, + -0.006540751084685326, + -0.012488878332078457, + -0.013231256045401096, + -0.046438079327344894, + -0.06166927143931389, + -0.07796648889780045, + 0.15906023979187012, + 0.02794431895017624, + 0.020154310390353203, + -0.03794600069522858, + -0.016071466729044914, + -0.01873907633125782, + 0.0011729944963008165, + -0.014990719966590405, + -0.02831871062517166, + -5.948779261813233e-34, + 0.06197914108633995, + 0.004346356727182865, + -0.022641511633992195, + 0.07066649943590164, + 0.035606008023023605, + -4.267162876203656e-05, + -0.07712609320878983, + -0.008426171727478504, + -0.13724374771118164, + 0.018457647413015366, + -0.010677787475287914, + 0.07442502677440643, + -0.04715270549058914, + 0.018868472427129745, + -0.018404610455036163, + -0.022881710901856422, + 0.015490436926484108, + -0.09091833233833313, + -0.008991318754851818, + 0.023860963061451912, + -0.049305811524391174, + 0.09532865136861801, + -0.003552944166585803, + 0.0032253735698759556, + -0.057139888405799866, + -0.08621875196695328, + -0.045849695801734924, + -0.09722710400819778, + -0.02456159144639969, + 0.040000345557928085, + 0.0448387935757637, + -0.0037178965285420418, + 0.04811107739806175, + 0.04021679237484932, + -0.1107049211859703, + -0.0334300771355629, + -0.05908791348338127, + -0.07422517985105515, + -0.024569418281316757, + 0.07887138426303864, + 0.01801319792866707, + 0.0058452473022043705, + 0.04327651485800743, + 0.007599665317684412, + 0.03249184414744377, + 0.11478313058614731, + -0.04879806935787201, + -0.014074282720685005, + -0.027161121368408203, + 0.04045276716351509, + 0.05693874880671501, + -2.683480124687776e-05, + -0.027707207947969437, + -0.008538737893104553, + -0.030503885820508003, + -0.005647528916597366, + -0.03297301381826401, + 0.014752344228327274, + -0.05097416788339615, + 0.10266352444887161, + 0.026395898312330246, + 0.02091735601425171, + 0.11274176836013794, + -0.045363690704107285, + 0.03229793533682823, + -0.023695548996329308, + -0.0299005638808012, + 0.060226816684007645, + 0.0710514709353447, + 0.05739620700478554, + -0.007736631669104099, + 0.056298352777957916, + 0.04240352287888527, + -0.07273684442043304, + 0.000547753123100847, + -0.02316252514719963, + -0.0036715236492455006, + -0.015887729823589325, + -0.03189178556203842, + -0.073393814265728, + -0.06263379752635956, + 0.03565651923418045, + -0.0032607708126306534, + 0.12217611819505692, + -0.011875439435243607, + 0.06424307078123093, + 0.01735728047788143, + -0.099863201379776, + -0.049374356865882874, + 0.07564520090818405, + -0.04571763053536415, + 0.039500121027231216, + -0.003782007610425353, + -0.129747673869133, + -0.042917270213365555, + -2.3843264561178644e-33, + 0.03092545084655285, + -0.031035875901579857, + -0.03478175401687622, + -0.049256715923547745, + -0.0767410472035408, + 0.047713227570056915, + 0.019572867080569267, + 0.0171660203486681, + 0.018634703010320663, + 0.08468906581401825, + -0.01604435034096241, + 0.009181621484458447, + 0.001033662585541606, + -0.09974930435419083, + 0.03447498381137848, + 0.00583093985915184, + -0.0074022551998496056, + 0.003389860037714243, + 0.03176655247807503, + -0.01230772864073515, + -0.053228192031383514, + -0.04640096798539162, + -0.08198721706867218, + 0.10884734243154526, + 0.056204903870821, + 0.02156323753297329, + 0.02799341082572937, + 0.008551659993827343, + 0.003957352600991726, + -0.11784756183624268, + -0.010266928933560848, + -0.06474367529153824, + -0.011722618713974953, + 0.047569580376148224, + -0.02576550655066967, + 0.04147791117429733, + -0.034477487206459045, + -0.07401812821626663, + -0.002994884504005313, + 0.0052798232063651085, + -0.012359741143882275, + 0.024237636476755142, + -0.05660584568977356, + 0.030536221340298653, + -0.029891720041632652, + -0.0018166281515732408, + -0.038787275552749634, + -0.017713526263833046, + 0.00901755876839161, + 0.08136451989412308, + 0.006214549764990807, + -0.07706720381975174, + -0.04098587483167648, + -0.009287596680223942, + -0.05327547341585159, + -0.013693257234990597, + 0.04067874699831009, + -0.02300059236586094, + -0.012171240523457527, + 0.056968286633491516, + 0.01771516539156437, + 0.055288415402173996, + -0.044624507427215576, + 0.036458492279052734, + -0.04251944646239281, + -0.09398764371871948, + -0.010216163471341133, + -0.060959894210100174, + 0.06823404878377914, + -0.03225742280483246, + 0.09591062366962433, + 0.05657303333282471, + -0.06747306883335114, + 0.00648161955177784, + 0.006018406245857477, + 0.03664373606443405, + 0.06874219328165054, + -0.0016729194903746247, + -0.02023194171488285, + 0.019073830917477608, + -0.025237439200282097, + -0.024103958159685135, + -0.01609245128929615, + 0.08485687524080276, + -0.014972995966672897, + -0.010689465329051018, + 0.0037209144793450832, + 0.09809844195842743, + -0.0002612431126181036, + 0.009445106610655785, + 0.025853920727968216, + 0.045143283903598785, + 0.04430355876684189, + -0.06315680593252182, + -0.031412478536367416, + -1.9474656554052672e-08, + -0.0800204798579216, + -0.055734459310770035, + -0.10479732602834702, + -0.005614257883280516, + 0.06476680934429169, + 0.0004004918737336993, + -0.05209372565150261, + -0.11083965003490448, + -0.07038988173007965, + 0.0155227305367589, + 0.0938836857676506, + -0.01749519072473049, + -0.04190456122159958, + -0.01962798833847046, + 0.09001708775758743, + 0.04117051139473915, + 0.007721298839896917, + 0.052959661930799484, + 0.003362159477546811, + 0.044290490448474884, + -0.11946164071559906, + 0.0745663195848465, + -0.07005471736192703, + -0.0497400127351284, + -0.006995341274887323, + -0.004558456130325794, + -0.08101692795753479, + -0.009135672822594643, + 0.05761289969086647, + 0.055326204746961594, + 0.023623844608664513, + 0.030339417979121208, + 0.007696487940847874, + -0.01211120467633009, + -0.026481401175260544, + -0.02097494713962078, + 0.0159140694886446, + -0.08300121128559113, + 0.05737728253006935, + 0.07412892580032349, + 0.05924567952752113, + 0.014999492093920708, + 0.012728150933980942, + -0.04148450493812561, + -0.02368684858083725, + -0.024054065346717834, + 0.08640068769454956, + -0.04451839253306389, + -0.020331108942627907, + -0.06609402596950531, + -0.02093961089849472, + 0.04456209018826485, + 0.015588046051561832, + 0.03767801448702812, + -0.05276695266366005, + -0.026493849232792854, + -0.005514397751539946, + 0.05337909609079361, + 0.0034370499197393656, + 0.058958664536476135, + 0.13859054446220398, + 0.03085673414170742, + 0.06169769912958145, + 0.039019469171762466 + ], + "cell-signal-full-bold||wireless,cellular,phone,mobile,network,connection,connectivity,reception,service": [ + -0.014012333936989307, + 0.01699102856218815, + 0.00044315995182842016, + -0.05943490192294121, + -0.039867449551820755, + -0.03120141476392746, + 0.01582261547446251, + -0.007348895538598299, + 0.02016867883503437, + -0.018793828785419464, + 0.07322948426008224, + 0.01821625977754593, + 0.06242471933364868, + -0.028595825657248497, + 0.060947176069021225, + -0.022569414228200912, + 0.08254998177289963, + -0.05922943353652954, + -0.02686099335551262, + 0.012725046835839748, + 0.023885976523160934, + 0.018060101196169853, + -0.03430172801017761, + 0.002408010885119438, + 0.11206012219190598, + -0.037770260125398636, + 0.03878774493932724, + 0.061305753886699677, + 4.154254565946758e-05, + -0.06696276366710663, + -0.05032676085829735, + 0.06273012608289719, + 0.10320732742547989, + 0.06634225696325302, + -0.01079329289495945, + -0.061797838658094406, + -0.01680593378841877, + 0.025769028812646866, + 0.01743197999894619, + 0.036854907870292664, + -0.005533261690288782, + -0.0959685817360878, + -0.008035500533878803, + 0.11127728968858719, + -0.009664610959589481, + -0.025530513375997543, + -0.03244703263044357, + -0.016429606825113297, + -0.021590078249573708, + -0.0792318806052208, + 0.028526106849312782, + -0.02823631837964058, + -0.11998358368873596, + 0.11517877131700516, + 0.01835555024445057, + -0.0008297645836137235, + -0.08357075601816177, + 0.09944192320108414, + 0.09627056866884232, + 0.045933470129966736, + 0.033234432339668274, + 0.0353863388299942, + -0.026703620329499245, + 0.05883440002799034, + 0.012485679239034653, + -0.01214880682528019, + -0.06733238697052002, + 0.02114034816622734, + -0.029430557042360306, + 0.028547953814268112, + 0.036395084112882614, + -0.006973248440772295, + 0.0034605187829583883, + 0.024879613891243935, + 0.0017512381309643388, + 0.05752558633685112, + -0.01217447780072689, + 0.02101299539208412, + 0.018873179331421852, + -0.027737842872738838, + -0.03686440736055374, + -0.022590644657611847, + 0.0047610606998205185, + -0.03561287373304367, + 0.046553321182727814, + 0.0038983982522040606, + -0.08042542636394501, + -0.0016370598459616303, + -0.05062049627304077, + -0.09585554897785187, + -0.10017019510269165, + 0.017830103635787964, + -0.057746123522520065, + 0.04139213636517525, + -0.14664900302886963, + 0.022204818204045296, + 0.03329215198755264, + -0.10837502032518387, + -0.031210850924253464, + 0.0611758790910244, + 0.05349280312657356, + -0.0024003491271287203, + 0.05062653124332428, + 0.04257775843143463, + -0.012438707053661346, + -0.07305553555488586, + -0.01664792373776436, + 0.05765584483742714, + 0.04255104809999466, + -0.002355078235268593, + -0.04006006568670273, + -0.0631420910358429, + -0.06759103387594223, + -0.02960505522787571, + -0.049982596188783646, + -0.004711966495960951, + -0.03820908069610596, + 0.0362580232322216, + 0.16045308113098145, + 0.05744908004999161, + -0.05315092206001282, + -0.08462125062942505, + -0.035477012395858765, + -0.03079398162662983, + -0.005937126465141773, + 0.023113107308745384, + 0.016283856704831123, + -2.7095697636140598e-33, + -0.02640378475189209, + 0.06702325493097305, + -0.016836414113640785, + 0.0577695369720459, + 0.008494957350194454, + 0.03640640154480934, + -0.08702922612428665, + -0.04219089820981026, + -0.013142612762749195, + 0.11808864027261734, + 0.0014302801573649049, + 0.11685545742511749, + -0.05197970196604729, + 0.06629776954650879, + 0.06735002994537354, + -0.05887145549058914, + -0.014988006092607975, + -0.05325651541352272, + -0.005516122095286846, + 0.002664045197889209, + -0.05499059334397316, + 0.0019714359659701586, + -0.037000562995672226, + -0.018484903499484062, + 0.06531757116317749, + -0.057050205767154694, + 0.034159496426582336, + -0.06070788577198982, + -0.010352864861488342, + 0.01782366633415222, + 0.0277146864682436, + 0.024684252217411995, + 0.04657115414738655, + -0.03842875733971596, + 0.0014639802975580096, + -0.0006050022202543914, + -0.034826379269361496, + -0.030287966132164, + -0.04564132168889046, + -0.02739417739212513, + -0.10481420159339905, + -0.031022319570183754, + -0.09469630569219589, + -0.028650829568505287, + 0.06823580712080002, + 0.03809988126158714, + -0.053480472415685654, + -0.0463847853243351, + 0.029461681842803955, + 0.05937774106860161, + -0.02558484487235546, + -0.05371860787272453, + -0.02391401119530201, + -0.047639742493629456, + 0.025397419929504395, + 0.09452042728662491, + -0.02478010579943657, + 0.09046555310487747, + 0.001996452221646905, + 0.04465395212173462, + -0.026167023926973343, + -0.02363942563533783, + -0.009494489058852196, + -0.03142249956727028, + 0.010515880770981312, + 0.018820611760020256, + -0.07639952003955841, + -0.04394366592168808, + 0.003758638398721814, + 0.049087364226579666, + 0.027173059061169624, + 0.03254862129688263, + 0.05495487153530121, + -0.009928831830620766, + 0.020040975883603096, + 0.057880669832229614, + -0.021139638498425484, + 0.02305160090327263, + -0.08270625025033951, + 0.011004259809851646, + -0.06822080910205841, + -0.029590196907520294, + -0.06257250159978867, + 0.03250481188297272, + 0.01597265526652336, + 0.02013120800256729, + -0.05314376577734947, + -0.17648780345916748, + -0.05515848845243454, + 0.10087122023105621, + -0.06878862529993057, + 0.08424743264913559, + -0.055554166436195374, + -0.006194673478603363, + -0.08334186673164368, + -4.40717489953994e-34, + -0.025559205561876297, + 0.07484260201454163, + -0.05834587290883064, + -0.05699486657977104, + 0.0011297132587060332, + -0.008741199970245361, + 0.037257201969623566, + 0.024610178545117378, + -0.006506690289825201, + 0.08177237957715988, + 0.09475617855787277, + -0.023716658353805542, + -0.01708103157579899, + -0.0006892867386341095, + -0.10029157996177673, + 0.005387231707572937, + 0.0010169347515329719, + -0.017274286597967148, + -0.00946804042905569, + 0.09269837290048599, + -0.08533988147974014, + -0.037344951182603836, + -0.04537521302700043, + 0.05573802813887596, + 0.02101956494152546, + 0.03008745238184929, + -0.047131944447755814, + 0.030889570713043213, + -0.04673965275287628, + 0.007989183068275452, + -0.05816052481532097, + -0.027765629813075066, + 0.0724836066365242, + 0.047709859907627106, + 0.011816872283816338, + 0.062491390854120255, + 0.08220726996660233, + 0.006694210693240166, + 0.005345664918422699, + -0.046297889202833176, + 0.06318579614162445, + 0.011049531400203705, + 0.03831896930932999, + 0.031038593500852585, + 0.01066931989043951, + -0.06011803075671196, + -0.04042163863778114, + -0.04429806396365166, + -0.1312730312347412, + 0.0333116240799427, + 0.07654815912246704, + -0.007393060252070427, + -0.03459147736430168, + 0.04302990809082985, + -0.023003777489066124, + 0.03267548233270645, + 0.04220680892467499, + -0.0028697974048554897, + -0.01274076383560896, + 0.002531561767682433, + 0.06885583698749542, + -0.05138006433844566, + -0.05588454753160477, + 0.04238419979810715, + 0.05129970237612724, + -0.052223604172468185, + 0.05111398547887802, + -0.030703779309988022, + 0.028350509703159332, + 0.03635946661233902, + 0.010525114834308624, + -0.006537583656609058, + -0.039758387953042984, + 0.0019921394996345043, + 0.003626822726801038, + -0.015203248709440231, + -0.03212621435523033, + 0.016494421288371086, + -0.076145239174366, + 0.03341905027627945, + 0.030967993661761284, + 0.037579312920570374, + -0.0399601086974144, + 0.0036758233327418566, + 0.00876398105174303, + 0.04023731127381325, + 0.0012111796531826258, + 0.011582143604755402, + -0.01856977678835392, + -0.0025650220923125744, + -0.024488691240549088, + 0.04697336629033089, + -0.07001685351133347, + -0.006342926993966103, + -0.07327612489461899, + -2.132390974907139e-08, + -0.025394804775714874, + -0.01990433782339096, + -0.05552596598863602, + -0.11689912527799606, + 0.03154904767870903, + -0.07637298852205276, + 0.03010164387524128, + -0.03360427916049957, + 0.06646420061588287, + -0.005745892412960529, + -0.00959812942892313, + 0.039090514183044434, + -0.1222551017999649, + 0.06285461038351059, + 0.0993935689330101, + 0.04592747986316681, + -0.07086523622274399, + -0.03434041887521744, + -0.003507687710225582, + 0.03364862874150276, + -0.004767707083374262, + 0.036698438227176666, + -0.01782149448990822, + 0.04277632012963295, + 0.10556995868682861, + 0.03706412762403488, + -0.04768357053399086, + 0.03680415824055672, + 0.08114032447338104, + 0.01225930918008089, + 0.027898825705051422, + 0.04090137034654617, + -0.016948288306593895, + -0.04599311947822571, + -0.10669414699077606, + 0.02690296620130539, + 0.0047669317573308945, + -0.06363184005022049, + -0.015366257168352604, + 0.1049073189496994, + 0.02138284593820572, + -0.04382945969700813, + -0.05364213138818741, + -0.002892448566854, + 0.0438535250723362, + 0.014003170654177666, + 0.08334705233573914, + 0.013874434866011143, + -0.0224516149610281, + -0.08460704982280731, + -0.0576539970934391, + 0.008518197573721409, + -0.0214168019592762, + -0.08900145441293716, + -0.03410181775689125, + -0.07297691702842712, + 0.05339081212878227, + 0.01849355734884739, + -0.013884310610592365, + 0.007455704268068075, + 0.09247969835996628, + 0.06848032027482986, + 0.03399169445037842, + -0.018895043060183525 + ], + "cell-signal-high-bold||wireless,cellular,phone,mobile,network,connection,connectivity,reception,service": [ + -0.024472903460264206, + 0.0011156618129462004, + -0.00010080834908876568, + -0.06095155328512192, + -0.05063388869166374, + -0.030276281759142876, + 0.02821437083184719, + 0.007743996102362871, + 0.028564943000674248, + -0.014246515929698944, + 0.061116114258766174, + 0.029827870428562164, + 0.05723003298044205, + -0.024521607905626297, + 0.06237243860960007, + -0.026956399902701378, + 0.10457118600606918, + -0.06147116795182228, + -0.03222472220659256, + 0.016060294583439827, + 0.024019669741392136, + 0.013550915755331516, + -0.016625570133328438, + 0.010415812022984028, + 0.1169903352856636, + -0.059890951961278915, + 0.04453221708536148, + 0.06495089083909988, + -0.018056267872452736, + -0.05239719897508621, + -0.05234626308083534, + 0.0657089576125145, + 0.0836220532655716, + 0.06199751794338226, + -0.026360156014561653, + -0.0423799529671669, + -0.012946311384439468, + 0.018568411469459534, + 0.009773551486432552, + 0.04349617660045624, + 0.002191593637689948, + -0.0943484678864479, + -0.0016804193146526814, + 0.07831605523824692, + -0.023018307983875275, + -0.03705848008394241, + -0.03430739790201187, + -0.011120340786874294, + -0.04615163430571556, + -0.08568388223648071, + 0.01819884218275547, + -0.03225132077932358, + -0.11927055567502975, + 0.10334701091051102, + 0.012190396897494793, + 0.00349488016217947, + -0.07357866317033768, + 0.08852218836545944, + 0.11626889556646347, + 0.045944299548864365, + 0.03206435218453407, + 0.03218110650777817, + -0.015538502484560013, + 0.0502898283302784, + 0.02682507410645485, + -0.005041859578341246, + -0.05199433118104935, + 0.013691280968487263, + -0.026229793205857277, + 0.02571914903819561, + 0.03373019024729729, + -0.01329077035188675, + -0.0038047730922698975, + 0.014445336535573006, + -0.00018768782319966704, + 0.0491768904030323, + 0.0002755498862825334, + 0.02045704983174801, + 0.01861545257270336, + -0.036520179361104965, + -0.02028641477227211, + -0.013485065661370754, + -0.010494392365217209, + -0.020308230072259903, + 0.06046512350440025, + 0.0014908044831827283, + -0.07781852781772614, + -0.006127781700342894, + -0.058483242988586426, + -0.09786324948072433, + -0.09196562319993973, + 0.029104024171829224, + -0.05404176935553551, + 0.05328380689024925, + -0.1490563303232193, + 0.01846594177186489, + 0.04354802146553993, + -0.11458699405193329, + -0.02587275579571724, + 0.06488820910453796, + 0.06760036200284958, + 0.004576036706566811, + 0.045319344848394394, + 0.05054992064833641, + -0.00676316674798727, + -0.07173416018486023, + -0.006784519180655479, + 0.055918097496032715, + 0.032347146421670914, + 0.006479986011981964, + -0.051853977143764496, + -0.05476740375161171, + -0.06808995455503464, + -0.028424277901649475, + -0.06305011361837387, + 0.0033157337456941605, + -0.023196425288915634, + 0.045096106827259064, + 0.14719454944133759, + 0.04718467593193054, + -0.04587223008275032, + -0.08829617500305176, + -0.034345000982284546, + -0.04305524379014969, + 0.0050300671719014645, + 0.0204352717846632, + 0.005061082076281309, + -2.8722925282434275e-33, + -0.01281767152249813, + 0.06995373219251633, + -0.025763316079974174, + 0.05544811487197876, + 0.007609729189425707, + 0.01758693903684616, + -0.09138251841068268, + -0.05249340459704399, + -0.010218588635325432, + 0.11691788583993912, + -0.0018603178905323148, + 0.1236933097243309, + -0.046898260712623596, + 0.07193024456501007, + 0.06714508682489395, + -0.06143229082226753, + -0.02571430243551731, + -0.0690881609916687, + -0.013879741542041302, + 0.008761271834373474, + -0.05274573341012001, + 0.001619995106011629, + -0.027133170515298843, + -0.0258348248898983, + 0.06258731335401535, + -0.058632973581552505, + 0.033908918499946594, + -0.0654502809047699, + -0.0032967133447527885, + 0.020103994756937027, + 0.03986773639917374, + 0.015799911692738533, + 0.04956165328621864, + -0.04297515004873276, + -0.01410048920661211, + 0.00902124959975481, + -0.037567902356386185, + -0.03762735798954964, + -0.03746306151151657, + -0.011513815261423588, + -0.0881686806678772, + -0.021923063322901726, + -0.08375377953052521, + -0.012144695967435837, + 0.08960903435945511, + 0.0620817169547081, + -0.04553469642996788, + -0.05370451509952545, + 0.014304784126579762, + 0.041147857904434204, + -0.03651314973831177, + -0.057268235832452774, + -0.022859444841742516, + -0.037600260227918625, + 0.02401557005941868, + 0.1040128692984581, + -0.011557024903595448, + 0.08444876968860626, + 0.007961491122841835, + 0.053298965096473694, + -0.025133591145277023, + -0.022086497396230698, + 0.0007139987428672612, + -0.021757138893008232, + 0.011250347830355167, + -0.0009529925300739706, + -0.07749739289283752, + -0.033446237444877625, + -0.007621202152222395, + 0.0645107850432396, + 0.04968973249197006, + 0.03752365708351135, + 0.055208720266819, + -0.021542171016335487, + 0.02342532016336918, + 0.06274986267089844, + -0.02311115898191929, + 0.03618735820055008, + -0.06449291110038757, + -0.003264827886596322, + -0.07244490832090378, + -0.04823461174964905, + -0.05736776813864708, + 0.029924802482128143, + 0.009976668283343315, + 0.0239536315202713, + -0.06499327719211578, + -0.15768910944461823, + -0.05830834060907364, + 0.09777337312698364, + -0.06723768264055252, + 0.08988004922866821, + -0.04143814370036125, + -0.01955701969563961, + -0.08609537780284882, + -1.5787001056054264e-35, + -0.028468599542975426, + 0.0901724174618721, + -0.03818151354789734, + -0.056217264384031296, + 0.00021649520203936845, + -2.322225782336318e-06, + 0.027590908110141754, + 0.029825566336512566, + -0.019946932792663574, + 0.07375749945640564, + 0.07575562596321106, + -0.030217748135328293, + -0.017664002254605293, + -0.008007564581930637, + -0.0727723091840744, + -0.010340357199311256, + 0.015755435451865196, + -0.019458569586277008, + -0.010774231515824795, + 0.07160421460866928, + -0.0718451738357544, + -0.03549197316169739, + -0.050878576934337616, + 0.06493159383535385, + -0.003409193130210042, + 0.025233127176761627, + -0.06857525557279587, + 0.020048066973686218, + -0.05062856525182724, + 0.0015439213020727038, + -0.07260872423648834, + -0.020177707076072693, + 0.09421839565038681, + 0.05891776084899902, + 0.009513523429632187, + 0.07103367149829865, + 0.07785472273826599, + -0.02027745731174946, + -0.006745733320713043, + -0.047928523272275925, + 0.05244952067732811, + 0.03488648310303688, + 0.05450674146413803, + 0.008049453608691692, + 0.00346192205324769, + -0.03695370629429817, + -0.06259147077798843, + -0.03859362751245499, + -0.11358831077814102, + 0.04238824546337128, + 0.069182850420475, + -0.012648959644138813, + -0.04040677472949028, + 0.05022094398736954, + -0.04349978268146515, + 0.03398417681455612, + 0.05242552235722542, + -0.012373151257634163, + -0.02257905714213848, + 0.01563025824725628, + 0.07595530152320862, + -0.04799558222293854, + -0.06043139845132828, + 0.048747237771749496, + 0.05553312227129936, + -0.04399440437555313, + 0.04431992769241333, + -0.044605448842048645, + 0.039434418082237244, + 0.050892993807792664, + 0.011157695204019547, + -0.01987040974199772, + -0.018270529806613922, + -0.0006030595395714045, + -0.008747300133109093, + -0.045077066868543625, + -0.039677031338214874, + 0.042080193758010864, + -0.06783322244882584, + 0.024756161496043205, + 0.041247785091400146, + 0.051230646669864655, + -0.04174761846661568, + 0.025007765740156174, + 0.004370801616460085, + 0.05761198699474335, + 0.00012253434397280216, + -0.0024222584906965494, + -0.006851788144558668, + -0.01793813519179821, + -0.02081874944269657, + 0.047599971294403076, + -0.10013773292303085, + -0.007891924120485783, + -0.06243130564689636, + -2.1236484570863468e-08, + -0.014311397448182106, + -0.023049458861351013, + -0.057682882994413376, + -0.10965962707996368, + 0.024903958663344383, + -0.07829251140356064, + 0.024560818448662758, + -0.018140582367777824, + 0.06939899176359177, + -0.024847760796546936, + -0.012711000628769398, + 0.033174801617860794, + -0.11241684854030609, + 0.04709674045443535, + 0.11092935502529144, + 0.019032061100006104, + -0.08040383458137512, + -0.018092190846800804, + -0.0037978910841047764, + 0.008216463960707188, + 0.001233789254911244, + 0.04925845190882683, + 0.01368323527276516, + 0.03780602291226387, + 0.11021042615175247, + 0.03769378736615181, + -0.04113207012414932, + 0.04656824842095375, + 0.06144021078944206, + 0.020498555153608322, + 0.019354406744241714, + 0.0375097393989563, + -0.017770538106560707, + -0.045339278876781464, + -0.10325317829847336, + 0.031176693737506866, + -0.013718455098569393, + -0.0694955438375473, + -0.0006186111131682992, + 0.09862320870161057, + 0.027172904461622238, + -0.04091215878725052, + -0.05732330307364464, + 0.0001942831149790436, + 0.04859742894768715, + -0.00606269296258688, + 0.07405905425548553, + 0.012292780913412571, + -0.014666102826595306, + -0.07321704179048538, + -0.07186029106378555, + 0.02268100716173649, + -0.010334585793316364, + -0.09477401524782181, + -0.03390821814537048, + -0.08269164711236954, + 0.048576682806015015, + 0.01588835008442402, + -0.012700467370450497, + 0.004420129582285881, + 0.12682726979255676, + 0.05010610446333885, + 0.021235406398773193, + -0.003509873989969492 + ], + "cell-signal-low-bold||wireless,cellular,phone,mobile,network,connection,connectivity,reception,service": [ + -0.008740730583667755, + 0.012807494029402733, + -0.00048073119251057506, + -0.05563247576355934, + -0.055553365498781204, + -0.027902409434318542, + 0.016079680994153023, + 0.011103860102593899, + 0.03254413604736328, + -0.021772194653749466, + 0.07523804157972336, + 0.013453093357384205, + 0.07371224462985992, + -0.01741049252450466, + 0.056154247373342514, + -0.022757302969694138, + 0.10048297792673111, + -0.050326138734817505, + -0.02773619070649147, + 0.02814023196697235, + 0.02544059231877327, + 0.01720534637570381, + -0.02086336724460125, + -0.0010391159448772669, + 0.11376716941595078, + -0.0686718225479126, + 0.043154988437891006, + 0.0632394403219223, + -0.009499789215624332, + -0.052796315401792526, + -0.048409029841423035, + 0.05902080982923508, + 0.0894094854593277, + 0.06082603335380554, + -0.016109982505440712, + -0.049598246812820435, + 0.011893508024513721, + 0.03398098796606064, + 0.00814897008240223, + 0.05453583598136902, + -0.0030735305044800043, + -0.07945329695940018, + -0.016047349199652672, + 0.08448547124862671, + -0.021367721259593964, + -0.040046095848083496, + -0.03896869346499443, + -0.02035479247570038, + -0.05678242817521095, + -0.09897392988204956, + 0.02092803455889225, + -0.023061171174049377, + -0.13535821437835693, + 0.10774421691894531, + 0.007601647637784481, + 0.0013112446758896112, + -0.08099617063999176, + 0.09154807031154633, + 0.11377458274364471, + 0.046248238533735275, + 0.05353692173957825, + 0.02043900080025196, + -0.022848576307296753, + 0.04849860444664955, + 0.018332917243242264, + -0.010151767171919346, + -0.05575545132160187, + 0.016230814158916473, + -0.0249639879912138, + 0.017127031460404396, + 0.026976168155670166, + -0.014461061917245388, + 0.0021922970190644264, + 0.026531003415584564, + -0.013716093264520168, + 0.0508854016661644, + 0.0007449276163242757, + 0.026126768440008163, + 0.015650786459445953, + -0.03958151489496231, + -0.026847179979085922, + -0.020505083724856377, + -0.02627570554614067, + -0.02146846428513527, + 0.03957231715321541, + -0.0011492861667647958, + -0.07674455642700195, + -0.009074567817151546, + -0.049842700362205505, + -0.09750010073184967, + -0.08783179521560669, + 0.03713230416178703, + -0.054460588842630386, + 0.047903500497341156, + -0.1421387940645218, + 0.014205590821802616, + 0.05841436982154846, + -0.10169464349746704, + -0.03838139772415161, + 0.0747210681438446, + 0.05743627995252609, + 0.004743992816656828, + 0.045163705945014954, + 0.04015572369098663, + -0.005675415974110365, + -0.06884822249412537, + -0.007081417832523584, + 0.04329075291752815, + 0.018767252564430237, + 0.004075395874679089, + -0.03915952146053314, + -0.06032650172710419, + -0.07194538414478302, + -0.03831978514790535, + -0.06910404562950134, + -0.004617470316588879, + -0.0192603450268507, + 0.038813404738903046, + 0.14741244912147522, + 0.05847665295004845, + -0.0583513118326664, + -0.08817705512046814, + -0.03277358412742615, + -0.03869466111063957, + -0.0014961269916966558, + 0.027834344655275345, + -0.0030281112994998693, + -2.541570131375454e-33, + 0.0023870731238275766, + 0.05591811612248421, + -0.0261791180819273, + 0.04096091166138649, + 0.02096152864396572, + 0.022532038390636444, + -0.09453089535236359, + -0.06166045367717743, + -0.006288450211286545, + 0.12423896044492722, + 0.004524950869381428, + 0.11402406543493271, + -0.046921323984861374, + 0.05718353018164635, + 0.07457990199327469, + -0.06094416230916977, + -0.01897471770644188, + -0.07812945544719696, + 0.0011077341623604298, + 0.007696399465203285, + -0.06085734814405441, + 0.00919870100915432, + -0.027823589742183685, + -0.02304321713745594, + 0.059972137212753296, + -0.051851071417331696, + 0.03783270716667175, + -0.07429423928260803, + -0.00823699776083231, + 0.020084498450160027, + 0.02475809119641781, + 0.022825896739959717, + 0.055881813168525696, + -0.0467575266957283, + 0.0005475443322211504, + 0.00670379213988781, + -0.040934544056653976, + -0.03229406476020813, + -0.044840119779109955, + -0.02565937489271164, + -0.08920110762119293, + -0.02126789651811123, + -0.08524883538484573, + -0.025845641270279884, + 0.0919041857123375, + 0.043550923466682434, + -0.0298940259963274, + -0.05625150352716446, + 0.021181462332606316, + 0.046389736235141754, + -0.030838754028081894, + -0.05323332920670509, + -0.033523499965667725, + -0.03279133886098862, + 0.03226866200566292, + 0.09713558852672577, + -0.02669544517993927, + 0.08015304058790207, + -0.004781044088304043, + 0.050461191684007645, + -0.020378975197672844, + -0.02021993137896061, + -0.0051679848693311214, + -0.03647174686193466, + 0.02396443858742714, + -0.001768884714692831, + -0.08524981141090393, + -0.049560368061065674, + -0.011465107090771198, + 0.04737885296344757, + 0.042352255433797836, + 0.038857776671648026, + 0.06278124451637268, + -0.012501046061515808, + 0.03984450176358223, + 0.07391704618930817, + -0.01574772596359253, + 0.022055646404623985, + -0.07245092839002609, + -0.0073248096741735935, + -0.05435660481452942, + -0.03658348321914673, + -0.07156474888324738, + 0.043512020260095596, + 0.01364164799451828, + 0.017051493749022484, + -0.050938062369823456, + -0.13285820186138153, + -0.0590621642768383, + 0.08775131404399872, + -0.08225882053375244, + 0.07613813877105713, + -0.06839699298143387, + -0.009888872504234314, + -0.07061842083930969, + -3.399424281346214e-34, + -0.03803428262472153, + 0.08932872116565704, + -0.03625195845961571, + -0.050303708761930466, + 0.00022283889120444655, + 0.001167316804639995, + 0.04891382157802582, + 0.012671077623963356, + -0.00019840210734400898, + 0.08659505844116211, + 0.07390899956226349, + -0.028043514117598534, + -0.010019770823419094, + -0.0019989146385341883, + -0.07703624665737152, + 0.0005909784813411534, + 0.0014767397660762072, + -0.028855742886662483, + 0.0018543472979217768, + 0.08331045508384705, + -0.0755164697766304, + -0.014607111923396587, + -0.058756209909915924, + 0.06500761210918427, + 0.0016080525238066912, + 0.030557861551642418, + -0.06213848292827606, + 0.030123107135295868, + -0.06304119527339935, + -0.011553985998034477, + -0.06478404998779297, + -0.0191999189555645, + 0.09995485842227936, + 0.05226156860589981, + 0.009434409439563751, + 0.07159439474344254, + 0.0714857205748558, + -0.01032252423465252, + -0.012155193835496902, + -0.05264521390199661, + 0.058707766234874725, + 0.04464668780565262, + 0.05106116831302643, + 0.00647180899977684, + 0.00151311163790524, + -0.04039984568953514, + -0.0588415190577507, + -0.041904985904693604, + -0.11550413072109222, + 0.02878166362643242, + 0.06833916157484055, + -0.02351081743836403, + -0.049477577209472656, + 0.05469168350100517, + -0.03235248103737831, + 0.03861059248447418, + 0.0576787032186985, + -0.0029407248366624117, + -0.013366781175136566, + 0.03204306215047836, + 0.06966350972652435, + -0.055400434881448746, + -0.05038037151098251, + 0.04639825597405434, + 0.04978525638580322, + -0.038352109491825104, + 0.04320111870765686, + -0.022506108507514, + 0.03395632281899452, + 0.04157721623778343, + 0.01347086951136589, + -0.011938928626477718, + -0.0036362248938530684, + -0.022435247898101807, + 0.004475415218621492, + -0.03741973638534546, + -0.046828705817461014, + 0.044582948088645935, + -0.0775759369134903, + 0.02306131273508072, + 0.043328337371349335, + 0.04826433211565018, + -0.04843427613377571, + 0.01639457978308201, + 0.012679492123425007, + 0.05381572246551514, + 0.002654189709573984, + -0.008015044033527374, + -0.010689949616789818, + -0.006436560302972794, + -0.032415058463811874, + 0.05420472472906113, + -0.06822928041219711, + 0.0010537710040807724, + -0.06661989539861679, + -2.117724484662631e-08, + -0.015675824135541916, + -0.027852658182382584, + -0.04850699007511139, + -0.11060980707406998, + 0.02586301974952221, + -0.07466091960668564, + 0.01719522476196289, + -0.03590291365981102, + 0.07360720634460449, + -0.00691606430336833, + -0.01076140534132719, + 0.03724393621087074, + -0.1221269816160202, + 0.05246862396597862, + 0.10795002430677414, + 0.03680889308452606, + -0.0807090476155281, + -0.02952669747173786, + -0.0022996270563453436, + 0.0039667850360274315, + 0.005592921748757362, + 0.04256579279899597, + 0.0013905547093600035, + 0.04478856176137924, + 0.11492232233285904, + 0.023632487282156944, + -0.0239687692373991, + 0.032476358115673065, + 0.06744410842657089, + 0.007974064908921719, + 0.02597767300903797, + 0.04976193234324455, + -0.012630014680325985, + -0.04880538955330849, + -0.11934815347194672, + 0.03675829991698265, + -0.010405855253338814, + -0.060711849480867386, + -0.013709047809243202, + 0.09878683090209961, + 0.020943105220794678, + -0.04721859470009804, + -0.06663011759519577, + -0.0062225377187132835, + 0.04581942409276962, + -0.002672240138053894, + 0.0741380974650383, + 0.009786165319383144, + -0.0066333794966340065, + -0.07285713404417038, + -0.061355236917734146, + 0.025568539276719093, + -0.015480542555451393, + -0.09364382177591324, + -0.03554611653089523, + -0.0813826471567154, + 0.055582739412784576, + 0.011462938971817493, + -0.018275484442710876, + 0.0002136661933036521, + 0.10266725718975067, + 0.05898680165410042, + 0.03036034293472767, + -0.016022171825170517 + ], + "cell-signal-medium-bold||wireless,cellular,phone,mobile,network,connection,connectivity,reception,service": [ + 0.0016188514418900013, + -0.0036028409376740456, + -0.004704316612333059, + -0.050376493483781815, + -0.02711270935833454, + -0.020892038941383362, + 0.030796168372035027, + 0.01614074967801571, + 0.009297159500420094, + -0.0035819478798657656, + 0.06369132548570633, + 0.00039715561433695257, + 0.06462892889976501, + -0.0019486158853396773, + 0.048065390437841415, + -0.03331475704908371, + 0.08119594305753708, + -0.05274096503853798, + -0.02665654569864273, + 0.021783940494060516, + 0.029432786628603935, + 0.02354935184121132, + -0.0019378962460905313, + -0.0051496597006917, + 0.11474405974149704, + -0.05969347059726715, + 0.022269045934081078, + 0.052232448011636734, + -0.007559515535831451, + -0.054938629269599915, + -0.057658445090055466, + 0.07542824000120163, + 0.09182645380496979, + 0.07192905247211456, + -0.022816598415374756, + -0.05261708050966263, + -0.025111382827162743, + 0.018829336389899254, + -0.004082501865923405, + 0.048580996692180634, + 0.010381210595369339, + -0.10768906027078629, + -0.012112626805901527, + 0.07909701764583588, + -0.02217533253133297, + -0.027241894975304604, + -0.0364864356815815, + 0.0038482968229800463, + -0.055241186171770096, + -0.06479953229427338, + 0.00846567191183567, + -0.03906562924385071, + -0.1295126974582672, + 0.11291070282459259, + 0.008488737046718597, + -0.005888774991035461, + -0.06064045801758766, + 0.10626709461212158, + 0.11082802712917328, + 0.0383518785238266, + 0.03467792645096779, + 0.026417233049869537, + -0.025002503767609596, + 0.054756104946136475, + 0.03343909606337547, + 0.004491656553000212, + -0.05974565073847771, + 0.02769998461008072, + -0.02823898382484913, + 0.01225282996892929, + 0.05110156536102295, + -0.001270875334739685, + 0.009671631269156933, + 0.035253167152404785, + 0.002740825293585658, + 0.027758698910474777, + 0.01485234685242176, + 0.029262110590934753, + 0.0014872347237542272, + -0.019505329430103302, + -0.033267565071582794, + -0.006151807028800249, + -0.015147673897445202, + -0.025130754336714745, + 0.05152566358447075, + 0.0009611118002794683, + -0.079194076359272, + -0.010848848149180412, + -0.05284695699810982, + -0.09391316026449203, + -0.09777846187353134, + 0.03274816274642944, + -0.06944026798009872, + 0.04181293398141861, + -0.12304653972387314, + 0.013363362289965153, + 0.020732661709189415, + -0.09944625943899155, + -0.00696825236082077, + 0.04539639130234718, + 0.047963809221982956, + 0.015841279178857803, + 0.05177345499396324, + 0.0407329760491848, + -0.022035732865333557, + -0.0932927206158638, + -0.02200719341635704, + 0.05207022279500961, + 0.054425884038209915, + 0.005326937884092331, + -0.03511320427060127, + -0.055421166121959686, + -0.07231307029724121, + -0.024245712906122208, + -0.03811531886458397, + 0.013248147442936897, + -0.026190323755145073, + 0.03903331607580185, + 0.1712280809879303, + 0.043623391538858414, + -0.03625069558620453, + -0.0674438625574112, + -0.031972791999578476, + -0.048342131078243256, + -0.0014042702969163656, + 0.015447644516825676, + 0.014606194570660591, + -3.061352427473961e-33, + -0.01837300695478916, + 0.04570050537586212, + -0.04103938117623329, + 0.0667089894413948, + 0.01219871360808611, + 0.013534215278923512, + -0.08753690123558044, + -0.0627596378326416, + -0.012569249607622623, + 0.090107262134552, + -0.0001177936646854505, + 0.13804402947425842, + -0.07332812994718552, + 0.05666087567806244, + 0.06842754781246185, + -0.03556021675467491, + 0.0008761042263358831, + -0.06130126863718033, + -0.003778044367209077, + -0.0036025801673531532, + -0.05566531792283058, + 0.013952499255537987, + -0.03684823587536812, + -0.008335773833096027, + 0.06328508257865906, + -0.07047826796770096, + 0.03392140194773674, + -0.06616699695587158, + -0.00782432034611702, + 0.0123610133305192, + 0.027818500995635986, + 0.015602970495820045, + 0.053976744413375854, + -0.04650117829442024, + 0.0009382578427903354, + 0.006218572147190571, + -0.031690534204244614, + -0.032301243394613266, + -0.031817056238651276, + -0.03329596295952797, + -0.07375266402959824, + -0.010028828866779804, + -0.08146002888679504, + -0.01376943476498127, + 0.0605238638818264, + 0.053175944834947586, + -0.040929827839136124, + -0.05743226408958435, + 0.03210008516907692, + 0.03473323583602905, + -0.005220091436058283, + -0.06205349043011665, + -0.003719860455021262, + -0.04625903069972992, + 0.05072731897234917, + 0.10798311978578568, + -0.016564197838306427, + 0.08431088179349899, + 0.0010623825946822762, + 0.045323535799980164, + -0.012801592238247395, + -0.03425845131278038, + 0.019595488905906677, + -0.03316977247595787, + 0.030979979783296585, + 0.009205807000398636, + -0.08848545700311661, + -0.034758370369672775, + 0.007362949196249247, + 0.04641767591238022, + 0.019739676266908646, + 0.03702978789806366, + 0.05026404559612274, + 0.0024825232103466988, + 0.026042144745588303, + 0.05913189798593521, + -0.02600795589387417, + 0.015243329107761383, + -0.07773589342832565, + 0.022205326706171036, + -0.0793728157877922, + -0.02151787094771862, + -0.08508161455392838, + 0.03998280689120293, + 0.0013964212266728282, + 0.03041517361998558, + -0.03868073225021362, + -0.15209580957889557, + -0.05887986347079277, + 0.08325600624084473, + -0.08850139379501343, + 0.09027039259672165, + -0.04092586040496826, + -0.005522907245904207, + -0.07517454773187637, + -7.550342560350598e-35, + -0.051769282668828964, + 0.07800695300102234, + -0.056006528437137604, + -0.032477956265211105, + 0.015967408195137978, + -0.01801590621471405, + 0.030669305473566055, + 0.017254868522286415, + -0.002317334059625864, + 0.06610557436943054, + 0.06774888187646866, + -0.04694105312228203, + -0.045309823006391525, + -0.015252782963216305, + -0.08779293298721313, + 0.006203286349773407, + -0.01138279028236866, + -0.023271974176168442, + 0.0021866143215447664, + 0.08531578630208969, + -0.10128451138734818, + -0.06334434449672699, + -0.03698698431253433, + 0.0726296454668045, + -0.01098062377423048, + 0.016412118449807167, + -0.03581709414720535, + 0.016228368505835533, + -0.08135312050580978, + -0.0037639709189534187, + -0.0508001446723938, + -0.03107411414384842, + 0.0923244059085846, + 0.06158612295985222, + 0.029473084956407547, + 0.06267053633928299, + 0.09527944028377533, + -0.028744077309966087, + -0.011178828775882721, + -0.05030236765742302, + 0.07590305060148239, + 0.029408827424049377, + 0.047626957297325134, + -0.00589860649779439, + 0.00366586958989501, + -0.0304818544536829, + -0.034630004316568375, + -0.06846075505018234, + -0.11819618195295334, + 0.025581106543540955, + 0.10985468327999115, + -0.018734659999608994, + -0.025322601199150085, + 0.015125677920877934, + -0.042744919657707214, + 0.04598985239863396, + 0.052840810269117355, + -0.008830047212541103, + -0.018941761925816536, + 0.008406291715800762, + 0.06828633695840836, + -0.059548716992139816, + -0.05335071310400963, + 0.03694164380431175, + 0.03634505718946457, + -0.045252636075019836, + 0.04013592749834061, + -0.0447799377143383, + 0.0029646609909832478, + 0.04507927596569061, + -0.0026695968117564917, + -0.00993991270661354, + -0.014802219346165657, + 0.006964582949876785, + -0.0005651752580888569, + -0.048913270235061646, + -0.05332181975245476, + 0.03738788515329361, + -0.08420338481664658, + 0.031011506915092468, + 0.039969928562641144, + 0.05597531050443649, + -0.04478919878602028, + 0.0024601437617093325, + 0.016911355778574944, + 0.05171780660748482, + 0.02150505781173706, + -0.006418385077267885, + -0.018657715991139412, + -0.0010261875577270985, + -0.017215635627508163, + 0.049292124807834625, + -0.0775982066988945, + -0.01477302797138691, + -0.07857820391654968, + -2.0829952873668844e-08, + -0.003504411084577441, + -0.03722873702645302, + -0.0652671828866005, + -0.10531145334243774, + 0.010079260915517807, + -0.07151667773723602, + 0.01912628673017025, + -0.04974258318543434, + 0.07787097990512848, + -0.008956996724009514, + -0.0077984025701880455, + 0.03195233270525932, + -0.10645517706871033, + 0.067753367125988, + 0.10660149902105331, + 0.016662003472447395, + -0.07743576169013977, + -0.044157277792692184, + -0.00617028446868062, + -0.0005685467040166259, + 0.00825304165482521, + 0.046998001635074615, + -0.00929613783955574, + 0.050620198249816895, + 0.11140762269496918, + 0.03871702402830124, + -0.03276671841740608, + 0.024065159261226654, + 0.07927338778972626, + 0.02793656848371029, + 0.015241690911352634, + 0.03702101111412048, + -0.022375471889972687, + -0.02726946957409382, + -0.122686967253685, + 0.03752104938030243, + 0.005568761378526688, + -0.07610464841127396, + -0.01217415276914835, + 0.11444269865751266, + 0.0354468896985054, + -0.03079184889793396, + -0.05954941362142563, + -0.008622058667242527, + 0.05016766116023064, + 0.005444795358926058, + 0.08433853834867477, + 0.036874882876873016, + -0.016111141070723534, + -0.05592157319188118, + -0.05808158591389656, + 0.0269148126244545, + -0.021731849759817123, + -0.08299728482961655, + -0.022936446592211723, + -0.0892752930521965, + 0.05807217210531235, + 0.028105085715651512, + -0.004671929404139519, + 0.0004409604880493134, + 0.08674516528844833, + 0.05818110331892967, + 0.04583325237035751, + 0.002370005240663886 + ], + "cell-signal-none-bold||wireless,cellular,phone,mobile,network,connection,connectivity,reception,service": [ + -0.03466770052909851, + 0.01873672381043434, + -0.029273327440023422, + -0.05738574266433716, + -0.04255678504705429, + -0.024614941328763962, + 0.021815946325659752, + -0.018424540758132935, + 0.0376039557158947, + -0.041392646729946136, + 0.0894978865981102, + -0.00041344479541294277, + 0.06784122437238693, + -0.020960256457328796, + 0.029503917321562767, + -0.02303742989897728, + 0.08031422644853592, + -0.08483370393514633, + -0.009564314968883991, + 0.019034018740057945, + 0.02951163798570633, + 0.03465847298502922, + -0.018634384498000145, + 0.005586754065006971, + 0.12487915903329849, + -0.040571361780166626, + 0.036479704082012177, + 0.060276098549366, + -0.00425177626311779, + -0.04589485004544258, + -0.052404433488845825, + 0.06757420301437378, + 0.07304569333791733, + 0.06525877118110657, + 0.013246383517980576, + -0.05313143506646156, + 0.001865588827058673, + 0.044641271233558655, + 0.010456611402332783, + 0.03533652424812317, + -0.002344747306779027, + -0.10968698561191559, + -0.027637511491775513, + 0.06536363810300827, + 0.003461764194071293, + -0.01813179813325405, + -0.05803443491458893, + -0.033356402069330215, + -0.041954584419727325, + -0.08079180866479874, + 0.030114619061350822, + -0.02962053194642067, + -0.12544523179531097, + 0.10770917683839798, + 0.015454082749783993, + -0.0072783613577485085, + -0.07028030604124069, + 0.07945454865694046, + 0.0909314826130867, + 0.042849622666835785, + 0.0559706836938858, + 0.03316991403698921, + -0.011442860588431358, + 0.05054422840476036, + 0.017834872007369995, + 0.006302447523921728, + -0.05739900469779968, + 0.002590917283669114, + -0.018489520996809006, + 0.04229450598359108, + 0.03835958242416382, + -0.02168319933116436, + 0.002694594906643033, + 0.0150823425501585, + -0.012267566286027431, + 0.04420318454504013, + 0.004340726416558027, + 0.01747230254113674, + 0.02834201604127884, + -0.02243829518556595, + -0.044501133263111115, + -0.0048095062375068665, + -0.02324174903333187, + 0.003803180530667305, + 0.043117426335811615, + 0.008644144982099533, + -0.06666044145822525, + -0.004301975015550852, + -0.03580361604690552, + -0.10530063509941101, + -0.1264132261276245, + 0.037682175636291504, + -0.06509725004434586, + 0.04245049133896828, + -0.14506269991397858, + 0.02444329485297203, + 0.029400035738945007, + -0.08368226140737534, + -0.03687702491879463, + 0.05926329270005226, + 0.06160558760166168, + 0.012810087762773037, + 0.05393161624670029, + 0.04588433727622032, + -0.019396642223000526, + -0.05750473588705063, + -0.021902987733483315, + 0.03760986402630806, + 0.039245154708623886, + 0.006149654742330313, + -0.034189965575933456, + -0.07299668341875076, + -0.07687532901763916, + -0.021448509767651558, + -0.07592157274484634, + 0.0022741216234862804, + -0.03729569911956787, + 0.03991136699914932, + 0.15704326331615448, + 0.06548503786325455, + -0.03755095228552818, + -0.08284327387809753, + -0.03285929188132286, + -0.03401739522814751, + -0.017130227759480476, + 0.02583276480436325, + 0.015495081432163715, + -2.8629789395650687e-33, + -0.004586860071867704, + 0.05466420203447342, + -0.01920333504676819, + 0.0392996110022068, + 0.025761481374502182, + 0.024977438151836395, + -0.08179528266191483, + -0.06568284332752228, + -0.008563901297748089, + 0.12678022682666779, + 0.009177585132420063, + 0.10148055106401443, + -0.03025602549314499, + 0.04173770174384117, + 0.07903799414634705, + -0.03511228412389755, + -0.005554051138460636, + -0.09167477488517761, + 0.011975170113146305, + 0.004902150481939316, + -0.05003953352570534, + -0.005967838689684868, + -0.038977429270744324, + -0.029696837067604065, + 0.06635064631700516, + -0.041471853852272034, + 0.01960049197077751, + -0.07438724488019943, + -0.01830463856458664, + 0.01578293740749359, + 0.03719448298215866, + 0.03883159160614014, + 0.05173630639910698, + -0.05630644038319588, + 0.0205035712569952, + 0.00016270602645818144, + -0.043195247650146484, + -0.0426127165555954, + -0.04767322167754173, + -0.03056446649134159, + -0.08882039040327072, + -0.04013112187385559, + -0.07642310857772827, + -0.04747703671455383, + 0.08790029585361481, + 0.039219681173563004, + -0.03993381932377815, + -0.049239758402109146, + 0.01775169186294079, + 0.05128724128007889, + -0.010338662192225456, + -0.03754125535488129, + -0.0057244570925831795, + -0.048282284289598465, + 0.0212977584451437, + 0.08526761829853058, + -0.027225913479924202, + 0.09307386726140976, + -0.017740976065397263, + 0.022585958242416382, + -0.022809654474258423, + -0.031115518882870674, + -0.004455816466361284, + -0.036622755229473114, + 0.014642473310232162, + 0.02587193064391613, + -0.09499037265777588, + -0.05101172998547554, + 0.004633341450244188, + 0.03589367866516113, + 0.018647750839591026, + 0.04008249193429947, + 0.045710038393735886, + -0.010555676184594631, + 0.022865666076540947, + 0.04248695820569992, + -0.03388155996799469, + 0.026082739233970642, + -0.06779517978429794, + 0.006350438576191664, + -0.05036662146449089, + -0.04494636133313179, + -0.07064865529537201, + 0.03123418428003788, + 0.03283427283167839, + 0.01411532610654831, + -0.05116761103272438, + -0.14111654460430145, + -0.05449609085917473, + 0.08138765394687653, + -0.04610953852534294, + 0.09063006192445755, + -0.07906053960323334, + -0.01831635646522045, + -0.08431772887706757, + -7.149319448325209e-34, + -0.02541283890604973, + 0.0845106914639473, + -0.04522476717829704, + -0.052406951785087585, + -0.006676009856164455, + -0.005491691175848246, + 0.04551956057548523, + 0.012661176733672619, + 0.015277350321412086, + 0.06458186358213425, + 0.09458087384700775, + -0.018842928111553192, + -0.02962159737944603, + -0.01500373613089323, + -0.07435989379882812, + 0.03411281853914261, + -0.01590217836201191, + -0.031430233269929886, + -0.017889196053147316, + 0.10726932436227798, + -0.07654395699501038, + -0.03307824954390526, + -0.0541362464427948, + 0.07844442129135132, + -0.013578969053924084, + 0.03149319812655449, + -0.03183131664991379, + 0.014884681440889835, + -0.05205472931265831, + -0.011471346952021122, + -0.05601093918085098, + -0.014722921885550022, + 0.09282943606376648, + 0.05207556486129761, + 0.017723899334669113, + 0.07154529541730881, + 0.10185771435499191, + -0.012640831992030144, + -0.01402331329882145, + -0.056611984968185425, + 0.05997208133339882, + 0.06258102506399155, + 0.056341178715229034, + 0.02392655797302723, + -0.020210715010762215, + -0.03268127888441086, + -0.04599204286932945, + -0.03814743086695671, + -0.12274923175573349, + 0.040299467742443085, + 0.06856487691402435, + -0.003680828958749771, + -0.054387133568525314, + 0.03736955299973488, + -0.02536114864051342, + 0.048591602593660355, + 0.03912957012653351, + -0.006766797509044409, + 0.007314315997064114, + 0.01171138696372509, + 0.07255913317203522, + -0.06340978294610977, + -0.0578390397131443, + 0.0457296259701252, + 0.041690394282341, + -0.038666341453790665, + 0.035182006657123566, + -0.008284482173621655, + 0.0422225221991539, + 0.03226211667060852, + 0.03232445940375328, + -0.006570310797542334, + -0.023350529372692108, + -0.03606373816728592, + -0.015886379405856133, + -0.03063015267252922, + -0.04302557557821274, + 0.0255326759070158, + -0.09577774256467819, + 0.02126280963420868, + 0.05346883833408356, + 0.03627362847328186, + -0.05909045413136482, + 0.008586523123085499, + 0.015922218561172485, + 0.03671896830201149, + 0.01787020079791546, + 0.019581293687224388, + -0.0195027906447649, + -0.0002326119429199025, + -0.02466367371380329, + 0.06446874886751175, + -0.09206996858119965, + 0.026339612901210785, + -0.061700377613306046, + -2.158004619445819e-08, + -0.008474086411297321, + -0.023927606642246246, + -0.05241995304822922, + -0.13178963959217072, + 0.015035496093332767, + -0.07927655428647995, + 0.03355911746621132, + -0.059297140687704086, + 0.06703174114227295, + -0.022821707651019096, + 0.008466620929539204, + 0.02992195263504982, + -0.13702072203159332, + 0.05106030032038689, + 0.10057049989700317, + 0.05014670640230179, + -0.07986702024936676, + -0.03434651717543602, + -0.008616235107183456, + 0.025107568129897118, + -0.020338332280516624, + 0.04372921958565712, + -0.0296659953892231, + 0.044659215956926346, + 0.10248927026987076, + 0.03374890238046646, + -0.023482566699385643, + 0.036066822707653046, + 0.07589825987815857, + -0.0022688491735607386, + 0.028885001316666603, + 0.053178511559963226, + 0.013936632312834263, + -0.040569983422756195, + -0.11011908203363419, + 0.03863608464598656, + 0.014209813438355923, + -0.0579766146838665, + -0.003975821193307638, + 0.09140826761722565, + 0.015158913098275661, + -0.03651762008666992, + -0.0679810419678688, + -0.005878355819731951, + 0.032907985150814056, + 0.01594691164791584, + 0.07557955384254456, + -0.006387860514223576, + -0.022885268554091454, + -0.0624285563826561, + -0.05317610129714012, + 0.020706411451101303, + -0.04148610681295395, + -0.07453988492488861, + -0.026178747415542603, + -0.07209046930074692, + 0.054495036602020264, + 0.01181806530803442, + -0.004195449408143759, + 0.002921145409345627, + 0.08682124316692352, + 0.05012401565909386, + 0.0344863198697567, + -0.02313159964978695 + ], + "cell-signal-slash-bold||wireless,cellular,phone,mobile,network,connection,connectivity,disconnected,disabled,reception,service": [ + -0.05332503095269203, + 0.016625842079520226, + -0.0040306332521140575, + -0.04529257491230965, + -0.0442703552544117, + -0.027249155566096306, + 0.008865301497280598, + -0.011166750453412533, + 0.03298993781208992, + -0.029681123793125153, + 0.10309115797281265, + 0.027260934934020042, + 0.047739192843437195, + 0.004305419512093067, + -0.00047328678192570806, + 0.0024722095113247633, + 0.0812288224697113, + -0.05416075512766838, + -0.018525579944252968, + 0.017025265842676163, + 0.021303271874785423, + 0.0739324614405632, + -0.04436233267188072, + -0.016542963683605194, + 0.13457128405570984, + -0.05211152881383896, + 0.030209163203835487, + 0.07306841760873795, + -0.019476652145385742, + -0.041134122759103775, + -0.04750420153141022, + 0.04769904166460037, + 0.08448393642902374, + 0.053892698138952255, + 0.017303625121712685, + -0.04850303754210472, + 0.008899799548089504, + 0.025108782574534416, + 0.03280314803123474, + -0.0007199524552561343, + -0.01580875739455223, + -0.12975700199604034, + -0.02395256794989109, + 0.04138823226094246, + -0.021294206380844116, + -0.025686869397759438, + -0.05813455581665039, + -0.04722565412521362, + -0.0319206528365612, + -0.0551007054746151, + 0.036552175879478455, + -0.02245047688484192, + -0.11534378677606583, + 0.09249411523342133, + 0.039599861949682236, + 0.006034734658896923, + -0.06861519813537598, + 0.11720409244298935, + 0.11940392851829529, + 0.02758808620274067, + 0.048138685524463654, + 0.023560136556625366, + -0.01186786312609911, + 0.04772857204079628, + -0.0020007251296192408, + -0.008858145214617252, + -0.05474179610610008, + 0.013061176054179668, + -0.027884304523468018, + 0.02592487260699272, + 0.019336936995387077, + -0.01050025224685669, + -0.016055526211857796, + 0.002469534520059824, + 0.003890239167958498, + 0.05191376060247421, + -0.006320687010884285, + 0.014326841570436954, + 0.024959636852145195, + -0.050938770174980164, + -0.028847794979810715, + -0.01660323143005371, + 0.005129511933773756, + 0.01861998811364174, + 0.05889119580388069, + 0.03321341052651405, + -0.06313344836235046, + -0.013252451084554195, + -0.037365976721048355, + -0.10284870862960815, + -0.11124299466609955, + 0.016810886561870575, + -0.007228133734315634, + 0.050347551703453064, + -0.15682609379291534, + 0.000591806776355952, + 0.011297421529889107, + -0.07920746505260468, + -0.05731917917728424, + 0.07063529640436172, + 0.06679403781890869, + 0.011505368165671825, + 0.01179390400648117, + 0.03509433940052986, + 0.011753711849451065, + -0.07320626825094223, + 0.02032139152288437, + 0.031191809102892876, + 0.02661733515560627, + -0.01228621881455183, + -0.025958949699997902, + -0.04714090749621391, + -0.06236577406525612, + -0.03985645994544029, + -0.05305773392319679, + -0.0014461984392255545, + -0.04331060126423836, + 0.013512230478227139, + 0.18397335708141327, + 0.07735639810562134, + -0.04749846085906029, + -0.10671492666006088, + -0.04627238214015961, + -0.06870776414871216, + 0.0127155976369977, + 0.00716369366273284, + 0.042880717664957047, + -2.9726527461677804e-33, + 0.027658244594931602, + 0.0702042505145073, + -0.028077807277441025, + 0.035702358931303024, + 0.055556029081344604, + 0.005468511488288641, + -0.06919266283512115, + -0.03414088487625122, + -0.036916013807058334, + 0.0928724855184555, + 0.009841198101639748, + 0.0730464905500412, + -0.03312864154577255, + 0.023884344846010208, + 0.053830888122320175, + -0.06686799228191376, + 0.02495100349187851, + -0.0826101303100586, + -0.01791565679013729, + -0.008118422701954842, + -0.032495174556970596, + 0.022918954491615295, + -0.018556861206889153, + -0.01643807627260685, + 0.0612027645111084, + -0.017409605905413628, + 0.007896649651229382, + -0.05787581577897072, + 0.022302640601992607, + 0.0321759432554245, + 0.03469621762633324, + 0.02812197245657444, + 0.0353713184595108, + -0.04351240023970604, + -0.0003655243490356952, + 0.03635280206799507, + -0.0319942943751812, + -0.019822660833597183, + -0.0553710050880909, + -0.012633245438337326, + -0.11311580240726471, + -0.05658044293522835, + -0.11132809519767761, + -0.03507045656442642, + 0.07669273018836975, + 0.023180648684501648, + -0.036376483738422394, + -0.08761882781982422, + 0.008533641695976257, + 0.05806316062808037, + -0.02377639338374138, + -0.03947374224662781, + 0.02585415728390217, + -0.03617380931973457, + 0.008613551035523415, + 0.0466473251581192, + -0.04615652933716774, + 0.07966355234384537, + -0.00018093478865921497, + 0.024304542690515518, + 0.004826736636459827, + -0.013229348696768284, + -0.0037443581968545914, + -0.027786245569586754, + -0.010216028429567814, + 0.020235883072018623, + -0.0672893151640892, + -0.03530384600162506, + -0.02332788147032261, + 0.044484950602054596, + -0.006782336160540581, + 0.03304874151945114, + 0.06711892783641815, + -0.0026437498163431883, + -0.016496559605002403, + 0.04948682710528374, + -0.05692235380411148, + 0.022380778566002846, + -0.07778431475162506, + -0.025108495727181435, + -0.06555403023958206, + -0.056988634169101715, + -0.06674163788557053, + 0.03705918416380882, + 0.0490986593067646, + -0.0018897328991442919, + -0.05502632260322571, + -0.13450776040554047, + -0.06971247494220734, + 0.09492039680480957, + -0.04275079816579819, + 0.09372623264789581, + -0.07539454847574234, + -0.015539305284619331, + -0.061572711914777756, + 1.288438809744044e-34, + -0.01473594456911087, + 0.09594223648309708, + -0.05111655592918396, + -0.05930318310856819, + -0.019929656758904457, + -0.03732655942440033, + 0.03538023680448532, + 0.020885135978460312, + -0.015613610856235027, + 0.05490490421652794, + 0.09712167829275131, + -0.0034232675097882748, + -0.0021743967663496733, + -0.040893666446208954, + -0.054635293781757355, + -0.009655257686972618, + -0.030476875603199005, + -0.03504849597811699, + -0.022611107677221298, + 0.12970207631587982, + -0.07674963772296906, + -0.019898265600204468, + -0.025167427957057953, + 0.07645214349031448, + -0.028630979359149933, + 0.03759889677166939, + -0.015667734667658806, + 0.03307013213634491, + -0.041052863001823425, + -0.007492417469620705, + -0.04135020077228546, + -0.003273303620517254, + 0.045519787818193436, + 0.05609392374753952, + 0.009001243859529495, + 0.07316306978464127, + 0.02727651409804821, + 0.00866087805479765, + -0.015753792598843575, + -0.0782884731888771, + 0.0635959580540657, + 0.05262430012226105, + 0.0375138558447361, + 0.05993626266717911, + 0.005179041996598244, + -0.030254879966378212, + -0.032323207706213, + -0.05616329610347748, + -0.11228767782449722, + 0.0422653965651989, + 0.08357487618923187, + -0.013090741820633411, + -0.025771072134375572, + 0.06303007900714874, + -0.03613269701600075, + 0.03712663799524307, + 0.04073403403162956, + 0.016247140243649483, + -0.04765554517507553, + 0.03865056857466698, + 0.08633845299482346, + -0.05229303985834122, + -0.06925725936889648, + 0.04435334354639053, + 0.07343650609254837, + -0.04566928744316101, + 0.02843145653605461, + -0.007593669928610325, + 0.06165718659758568, + 0.0396244190633297, + 0.024542801082134247, + 0.014391363598406315, + -0.006858185864984989, + -0.02884085290133953, + 0.026146123185753822, + -0.054822809994220734, + -0.0686490461230278, + 0.025369159877300262, + -0.0834488645195961, + 0.04450574889779091, + 0.04565928131341934, + 0.029148582369089127, + -0.05544772744178772, + 0.008717823773622513, + 0.008794285356998444, + 0.025976775214076042, + -0.0067092422395944595, + 0.07021287828683853, + -0.023629266768693924, + -0.025098927319049835, + -0.048543162643909454, + 0.04513510316610336, + -0.08420293033123016, + 0.0497325100004673, + -0.09329520165920258, + -2.2151544598614237e-08, + -0.021939747035503387, + -0.026734882965683937, + -0.052681948989629745, + -0.1199634000658989, + 0.03371017798781395, + -0.06552711129188538, + 0.009577246382832527, + -0.062026336789131165, + 0.06330584734678268, + -0.019085779786109924, + 0.0008269221289083362, + 0.02925786003470421, + -0.11170848459005356, + 0.06645987182855606, + 0.07975796610116959, + 0.0521678626537323, + -0.07243693619966507, + -0.005257806740701199, + -0.0093917828053236, + 0.049002498388290405, + -0.006510731298476458, + 0.03934695944190025, + 0.0010770775843411684, + 0.06352128833532333, + 0.11052503436803818, + 0.014613809995353222, + -0.01880725659430027, + 0.0417713038623333, + 0.07063745707273483, + -0.0028519027400761843, + 0.026506200432777405, + 0.05078659951686859, + 0.004104918800294399, + -0.04095460847020149, + -0.11062509566545486, + 0.05179296433925629, + -0.001001362456008792, + -0.03872407227754593, + 0.010249403305351734, + 0.0631275400519371, + 0.02437041513621807, + -0.055627625435590744, + -0.03600889444351196, + 0.004693369846791029, + 0.03070586547255516, + 0.02595159411430359, + 0.08751294761896133, + 0.0313730388879776, + -0.021052854135632515, + -0.07496539503335953, + -0.053800906985998154, + 0.021772203966975212, + -0.03162621706724167, + -0.06583122909069061, + -0.020348355174064636, + -0.07377472519874573, + 0.04847452789545059, + 0.01670188643038273, + -0.027470547705888748, + -0.01083573792129755, + 0.0971907302737236, + 0.04845873638987541, + 0.03359872102737427, + -0.04565552994608879 + ], + "cell-signal-x-bold||wireless,cellular,phone,mobile,network,connection,connectivity,reception,disconnected,errors,service": [ + -0.027299994602799416, + 0.021019473671913147, + -0.007828723639249802, + -0.0734439417719841, + -0.015028166584670544, + -0.036945026367902756, + 0.05233784019947052, + -0.010904793627560139, + 0.01862052083015442, + -0.027192961424589157, + 0.10181120038032532, + 0.0026745114009827375, + 0.07560689747333527, + -0.012307224795222282, + 0.020969895645976067, + -0.00682572927325964, + 0.06262432783842087, + -0.059015218168497086, + -0.01905369944870472, + 0.017214899882674217, + 0.03566518798470497, + 0.04706075042486191, + -0.042250875383615494, + -0.004820139613002539, + 0.11115969717502594, + -0.030591310933232307, + 0.027088886126875877, + 0.050066765397787094, + -0.013445570133626461, + -0.05074841156601906, + -0.051344189792871475, + 0.061668407171964645, + 0.08344127982854843, + 0.04883608594536781, + 0.006302984897047281, + -0.03369976207613945, + -0.002369519555941224, + 0.01389547623693943, + 0.005787672940641642, + 0.025850173085927963, + 0.003045010846108198, + -0.11758798360824585, + -0.001582245691679418, + 0.07042020559310913, + -0.028740156441926956, + -0.0392562635242939, + -0.06190431863069534, + -0.019628265872597694, + -0.022919606417417526, + -0.04809718206524849, + 0.038106519728899, + -0.03160170465707779, + -0.11111768335103989, + 0.0948452427983284, + 0.03940002992749214, + 0.010905972681939602, + -0.08255181461572647, + 0.09798775613307953, + 0.09521542489528656, + 0.03253742679953575, + 0.06258154660463333, + 0.055099815130233765, + -0.004284758120775223, + 0.06349917501211166, + 0.016551071777939796, + -0.0011332592694088817, + -0.05331074818968773, + 0.00674331234768033, + -0.026415161788463593, + 0.04638862982392311, + 0.015293028205633163, + 0.0031947053503245115, + -0.024348443374037743, + 0.008334347978234291, + -0.01280415989458561, + 0.0629066750407219, + 0.016558952629566193, + 0.009428181685507298, + 0.00806956086307764, + -0.054069846868515015, + -0.039257731288671494, + -0.003021569224074483, + -0.0011606611078605056, + -0.0014593538362532854, + 0.06353450566530228, + 0.022263916209340096, + -0.0646185651421547, + 0.002012550598010421, + -0.03669685497879982, + -0.07081087678670883, + -0.09968291968107224, + 0.045784760266542435, + -0.033950868993997574, + 0.05185156688094139, + -0.13775821030139923, + 0.00932542234659195, + 0.05703812837600708, + -0.09182541072368622, + -0.017198573797941208, + 0.06723956763744354, + 0.04991272836923599, + 0.005379760637879372, + 0.046313975006341934, + 0.05054111406207085, + -0.007828681729733944, + -0.09113719314336777, + -0.013339965604245663, + 0.039922427386045456, + 0.020219452679157257, + -0.0011756529565900564, + -0.04537547379732132, + -0.08417137712240219, + -0.05202329158782959, + -0.037882935255765915, + -0.03392382711172104, + 0.00216499762609601, + -0.01924971677362919, + 0.0512736439704895, + 0.14610734581947327, + 0.03402569517493248, + -0.046623095870018005, + -0.10971033573150635, + -0.05165683105587959, + -0.03769810497760773, + 0.013799291104078293, + 0.006746797356754541, + 0.030110253021121025, + -2.0877376601328853e-33, + -0.012864703312516212, + 0.07557883113622665, + -0.041776105761528015, + 0.05404486507177353, + 0.02968810871243477, + 0.004194095265120268, + -0.0593193881213665, + -0.048565614968538284, + -0.02397078275680542, + 0.12413842976093292, + -0.0009928508661687374, + 0.09423137456178665, + -0.05360975116491318, + 0.016810808330774307, + 0.06129994988441467, + -0.053362611681222916, + -0.0009941630996763706, + -0.06109270825982094, + -0.03775523975491524, + 0.022627871483564377, + -0.02552112378180027, + -0.030859824270009995, + -0.033337999135255814, + -0.03431566059589386, + 0.07291919738054276, + -0.011554867960512638, + 0.0251987986266613, + -0.06171421334147453, + 0.005522817838937044, + 0.011656545102596283, + 0.047016460448503494, + 0.02300756797194481, + 0.0388602688908577, + -0.043812625110149384, + 0.005105172283947468, + 0.008086244575679302, + -0.033616095781326294, + -0.024310169741511345, + -0.05187499150633812, + -0.03080121986567974, + -0.11283484101295471, + -0.0354267843067646, + -0.08573399484157562, + -0.05690140277147293, + 0.0899580791592598, + 0.02779272012412548, + -0.05114719271659851, + -0.0757058784365654, + 0.03964261710643768, + 0.037845056504011154, + -0.03845024108886719, + -0.05331365391612053, + -0.008067508228123188, + -0.034521207213401794, + 0.028933407738804817, + 0.07449276000261307, + -0.026035308837890625, + 0.11426477879285812, + -0.025909194722771645, + 0.044670362025499344, + 0.013556095771491528, + -0.04004210606217384, + -0.007622980047017336, + -0.04313088580965996, + 0.025330526754260063, + 0.027193725109100342, + -0.07628773152828217, + -0.07040391117334366, + -0.018213702365756035, + 0.06434712558984756, + -0.01649159938097, + 0.004457674454897642, + 0.07950160652399063, + -0.004598212894052267, + 0.03213796764612198, + 0.0405111126601696, + -0.05287667736411095, + 0.040000710636377335, + -0.06824030727148056, + -0.023243600502610207, + -0.048003263771533966, + -0.06256837397813797, + -0.07278252393007278, + 0.04805592820048332, + 0.002274999860674143, + 0.011498849838972092, + -0.04831552878022194, + -0.10967768728733063, + -0.07513701915740967, + 0.12376660108566284, + -0.07413900643587112, + 0.09038973599672318, + -0.07087302953004837, + -0.02340550348162651, + -0.11004090309143066, + -5.7852271308180625e-34, + -0.05141919106245041, + 0.08916988223791122, + -0.02250952273607254, + -0.040626440197229385, + -0.013553550466895103, + -0.020051894709467888, + 0.053737156093120575, + 0.03642990067601204, + 0.01201509591192007, + 0.060827381908893585, + 0.08436903357505798, + -0.0059826187789440155, + -0.03181518614292145, + -0.008437386713922024, + -0.08165082335472107, + 0.017843658104538918, + 0.0041498225182294846, + -0.04605111479759216, + -0.031031552702188492, + 0.09887523949146271, + -0.07977158576250076, + -0.008785380981862545, + -0.033205606043338776, + 0.05055907368659973, + -0.007865936495363712, + 0.02650953270494938, + -0.005289972759783268, + 0.027445565909147263, + -0.05765489116311073, + -0.04712097719311714, + -0.06902573257684708, + -0.011093851178884506, + 0.07059910893440247, + 0.0791870653629303, + 0.021405063569545746, + 0.0399334654211998, + 0.07562283426523209, + 0.010625419206917286, + -0.01788589358329773, + -0.04366549104452133, + 0.07145462930202484, + 0.04869867116212845, + 0.035566769540309906, + 0.027548840269446373, + 0.00019886766676791012, + -0.023380398750305176, + -0.04506354033946991, + -0.030785847455263138, + -0.11276430636644363, + 0.06429308652877808, + 0.08937710523605347, + -0.020880892872810364, + -0.03893476724624634, + 0.05746186152100563, + -0.04691849648952484, + 0.05986114963889122, + 0.04798576980829239, + 0.011566530913114548, + -0.016779286786913872, + 0.03388166055083275, + 0.06165820360183716, + -0.07099992781877518, + -0.039590392261743546, + 0.03202095255255699, + 0.0608636811375618, + -0.05610838904976845, + 0.03162142634391785, + -0.035120345652103424, + 0.04486939683556557, + 0.03853072598576546, + 0.033507637679576874, + -0.019350914284586906, + -0.02786318026483059, + -0.021027088165283203, + -0.008137215860188007, + -0.04546858370304108, + -0.06142721697688103, + 0.016346564516425133, + -0.08033853769302368, + 0.02470044046640396, + 0.05311449617147446, + 0.03807679936289787, + -0.01854603923857212, + 0.026378614827990532, + 0.01595766469836235, + 0.07131168246269226, + 0.020657533779740334, + 0.05633729323744774, + -0.015538832172751427, + -0.031866252422332764, + -0.03972543776035309, + 0.06267008930444717, + -0.07236099243164062, + 0.009949554689228535, + -0.06062009185552597, + -2.2212887529349246e-08, + -0.03748038411140442, + -0.030008548870682716, + -0.05448951944708824, + -0.12357209622859955, + 0.02986636944115162, + -0.06327755004167557, + 0.013722410425543785, + -0.0742582231760025, + 0.07508312910795212, + -0.0387796089053154, + -0.003067675279453397, + 0.02427026443183422, + -0.12737342715263367, + 0.05085655674338341, + 0.07549218833446503, + 0.015727698802947998, + -0.07334604114294052, + -0.0049496907740831375, + -0.013984519988298416, + 0.012373799458146095, + -0.0020281202159821987, + 0.045873407274484634, + -0.012376086786389351, + 0.023906076326966286, + 0.10115806013345718, + 0.00595536595210433, + -0.02401229366660118, + 0.0638032928109169, + 0.07588871568441391, + 0.0025585766416043043, + 0.017418134957551956, + 0.04750392585992813, + 0.030934691429138184, + -0.04724502936005592, + -0.09404550492763519, + 0.049872662872076035, + -0.011587871238589287, + -0.057027097791433334, + 0.014028627425432205, + 0.07924438267946243, + 0.017327096313238144, + -0.02937796711921692, + -0.04194900020956993, + 0.005001229699701071, + 0.050922952592372894, + 0.022760994732379913, + 0.08757206797599792, + -0.0014443427789956331, + -0.012346100993454456, + -0.08948040008544922, + -0.04775024577975273, + 0.002436881884932518, + -0.037571992725133896, + -0.09817024320363998, + -0.031225161626935005, + -0.08282092958688736, + 0.05012265220284462, + 0.0013998581562191248, + -0.003962105140089989, + 0.005219742655754089, + 0.07130196690559387, + 0.060539763420820236, + 0.03733338415622711, + -0.04691953584551811 + ], + "cell-tower-bold||*new*,wireless,cellular,broadcast,phone,mobile,network,connection,connectivity": [ + -0.02975126914680004, + 0.02223116345703602, + 0.005579706281423569, + -0.040138401091098785, + -0.027646293863654137, + -0.021083896979689598, + 0.008536919951438904, + -0.02947128377854824, + 0.015295764431357384, + -0.002644290216267109, + 0.07863815128803253, + 0.054526980966329575, + 0.0716049000620842, + -0.05343867838382721, + 0.010265881195664406, + 0.012345213443040848, + 0.05368604511022568, + -0.03806503489613533, + -0.010328485630452633, + 0.006136549636721611, + 0.049568742513656616, + -0.017530247569084167, + -0.03360026702284813, + 0.00740380585193634, + 0.13739655911922455, + -0.03199218213558197, + 0.012475117109715939, + 0.06763003021478653, + 0.0050569637678563595, + -0.07178789377212524, + -0.06690649688243866, + 0.06242327764630318, + 0.08072055131196976, + 0.05977892875671387, + -0.0001135209749918431, + -0.057812102138996124, + 0.014058928936719894, + 0.010322683490812778, + 0.003611850319430232, + 0.028592702001333237, + 0.0245088879019022, + -0.10008633136749268, + 0.009075337089598179, + 0.07692442834377289, + -0.023774346336722374, + -0.032294176518917084, + -0.05627470836043358, + -0.010846211574971676, + -0.018873360008001328, + -0.06162339448928833, + 0.031527187675237656, + -0.0688033327460289, + -0.08781932294368744, + 0.04146246612071991, + 0.028395524248480797, + 0.036215923726558685, + -0.030860405415296555, + 0.061016619205474854, + 0.12009043991565704, + 0.05133144184947014, + 0.07967862486839294, + 0.026131242513656616, + -0.0508425235748291, + 0.06650056689977646, + 0.01217602752149105, + -0.025733746588230133, + -0.05510718375444412, + 0.04353126883506775, + -0.03878252953290939, + 0.0319257453083992, + 0.05687393620610237, + 0.01893896609544754, + 0.010313632898032665, + 0.021420324221253395, + -0.02170233614742756, + 0.055868979543447495, + 0.000969438930042088, + -0.0012161819031462073, + 0.0038687572814524174, + -0.008347325026988983, + -0.02250417321920395, + 0.010926276445388794, + -0.024566082283854485, + -0.015110203064978123, + 0.04654008150100708, + 0.008297924883663654, + -0.07884851843118668, + -0.0004136494535487145, + -0.08737342804670334, + -0.10895567387342453, + -0.09747708588838577, + 0.016686514019966125, + -0.07543454319238663, + 0.08720569312572479, + -0.14506953954696655, + 0.030309487134218216, + -0.013731451705098152, + -0.10768111050128937, + -0.05212276428937912, + 0.0689997673034668, + 0.04007868841290474, + 0.04628744721412659, + 0.07701180875301361, + 0.031345073133707047, + -0.013958240859210491, + -0.07064857333898544, + -0.02892589010298252, + 0.060277558863162994, + 0.016013966873288155, + 0.012210755608975887, + -0.05189475417137146, + -0.07462083548307419, + -0.07959619164466858, + -0.04022748023271561, + -0.07263994216918945, + 0.008181795477867126, + -0.041261546313762665, + 0.020349299535155296, + 0.14127801358699799, + 0.050110965967178345, + 0.0006731050089001656, + -0.06711778789758682, + -0.027971461415290833, + -0.07406085729598999, + -0.013888911344110966, + -0.02608797699213028, + -0.013090907596051693, + -3.581819816373806e-33, + 0.01666274666786194, + 0.07775701582431793, + -0.039142295718193054, + 0.10365131497383118, + 0.040460824966430664, + 0.020247995853424072, + -0.08044330030679703, + -0.0361231230199337, + -0.03492916375398636, + 0.08624815195798874, + 0.004839970264583826, + 0.08287940919399261, + -0.0338468998670578, + 0.027224566787481308, + 0.09200843423604965, + -0.10589412599802017, + 0.01703893020749092, + -0.059663981199264526, + 0.012119518592953682, + -0.004182071890681982, + -0.042008183896541595, + 0.02428601123392582, + -0.0028883374761790037, + -0.04739286005496979, + 0.06831178814172745, + -0.05855485424399376, + 0.02981489524245262, + -0.08669517934322357, + -0.027813231572508812, + 0.03604458272457123, + 0.04806932434439659, + 0.019450152292847633, + 0.03838210180401802, + -0.0037522793281823397, + -0.01530471257865429, + 0.002975743729621172, + -0.025144387036561966, + -0.08096618205308914, + -0.025240177288651466, + -0.029810074716806412, + -0.08965756744146347, + -0.03314598649740219, + -0.07716130465269089, + -0.00594087690114975, + 0.07561153918504715, + 0.08252106606960297, + -0.05182364210486412, + -0.07996728271245956, + 0.03442315012216568, + 0.02715485356748104, + -0.007476282771676779, + -0.013957417570054531, + -0.04437997192144394, + -0.06107715517282486, + 0.05333568528294563, + 0.03502174839377403, + -0.027246486395597458, + 0.08517800271511078, + 0.05379104241728783, + 0.034834638237953186, + -0.018976125866174698, + -0.004621520638465881, + -0.04244308918714523, + 0.019689127802848816, + -0.016408847644925117, + 0.009622819721698761, + -0.06901898980140686, + -0.02006659097969532, + 0.015483172610402107, + 0.027344902977347374, + 0.009793686680495739, + 0.023917967453598976, + 0.04733724147081375, + 0.01838611252605915, + -0.01133111771196127, + 0.04440802335739136, + -0.06203716620802879, + 0.03362942487001419, + -0.0821639746427536, + -0.02478223294019699, + -0.06357526779174805, + -0.02379596047103405, + -0.049571555107831955, + 0.06624459475278854, + 0.024523789063096046, + 0.013634624890983105, + -0.011311222799122334, + -0.12236616015434265, + -0.03537574037909508, + 0.1283661276102066, + -0.07407323271036148, + 0.0306349229067564, + -0.052377849817276, + -0.0037706366274505854, + -0.07783819735050201, + -1.7169183244388981e-34, + -0.038469016551971436, + 0.03891686350107193, + -0.031897012144327164, + -0.09658846259117126, + -0.02827242761850357, + -0.01365666650235653, + 0.040918104350566864, + 0.014121763408184052, + -0.02376505360007286, + 0.05035509169101715, + 0.06720905750989914, + 0.009683322161436081, + -0.03369094058871269, + -0.037735067307949066, + -0.009748834185302258, + 0.018237262964248657, + 0.005310407839715481, + -0.02986549399793148, + -0.026413138955831528, + 0.09629750996828079, + -0.030515402555465698, + -0.015000969171524048, + -0.07694581151008606, + 0.07549090683460236, + 0.02097502537071705, + 0.004140101373195648, + -0.03053061105310917, + -0.0031055170111358166, + -0.025508636608719826, + 0.01315553579479456, + -0.09051636606454849, + -0.06503135710954666, + 0.07781558483839035, + 0.131666362285614, + 0.01391721423715353, + 0.10582996904850006, + 0.07937067002058029, + -0.04160153865814209, + 0.028018731623888016, + -0.058005210012197495, + 0.04609246924519539, + 0.013532879762351513, + 0.030019670724868774, + 0.0009114944841712713, + 0.02745591476559639, + -0.06257133930921555, + -0.046414341777563095, + -0.03496742621064186, + -0.12573520839214325, + 0.018100077286362648, + 0.0458357147872448, + -0.03302512317895889, + -0.04462004825472832, + 0.025768810883164406, + -0.02028360217809677, + 0.022139860317111015, + 0.019907670095562935, + -0.024540914222598076, + -0.007660789415240288, + -0.007556267082691193, + 0.061554916203022, + -0.059638846665620804, + -0.053298477083444595, + 0.048507340252399445, + -0.008105634711682796, + -0.034380894154310226, + 0.050763607025146484, + -0.022234264761209488, + 0.02156093157827854, + 0.05533413216471672, + -0.018561650067567825, + 0.034773487597703934, + -0.050777751952409744, + -0.01935918629169464, + -0.04014193266630173, + -0.042535748332738876, + -0.033501382917165756, + 0.05783374235033989, + -0.09128444641828537, + 0.009339000098407269, + 0.010137592442333698, + 0.06904013454914093, + -0.05342520773410797, + -0.02252304181456566, + 0.05335109308362007, + 0.016093401238322258, + 0.07027221471071243, + 0.04881735518574715, + -0.002936786273494363, + -0.02300397865474224, + -0.012983481399714947, + 0.010905093513429165, + -0.07360775768756866, + 0.0055429586209356785, + -0.07739512622356415, + -2.3412756178231575e-08, + -0.02273654192686081, + 0.008959087543189526, + -0.052870575338602066, + -0.08456170558929443, + 0.05156995356082916, + -0.11732860654592514, + 0.03508976846933365, + -0.06508656591176987, + 0.04953509569168091, + -0.017605388537049294, + 0.023201636970043182, + 0.02242836356163025, + -0.087509885430336, + 0.07198718190193176, + 0.09249792248010635, + 0.04949997738003731, + -0.07375270128250122, + -0.024983759969472885, + -0.004696844145655632, + 0.04066954553127289, + -0.021154671907424927, + 0.056618303060531616, + 0.0002882762055378407, + 0.06353478133678436, + 0.06532284617424011, + 0.04476190358400345, + -0.04542093351483345, + -0.028210097923874855, + 0.08572959154844284, + 0.02933117188513279, + 0.03821063041687012, + 0.06181109696626663, + -0.05213545262813568, + -0.036419421434402466, + -0.10942370444536209, + 0.04653088375926018, + 0.02947310172021389, + -0.03840833902359009, + 0.021289465948939323, + 0.05445994436740875, + 0.03833368048071861, + -0.0862247496843338, + -0.03922129422426224, + 0.01639173924922943, + 0.03291510418057442, + 0.0017956813098862767, + 0.04220127686858177, + -0.019717996940016747, + -0.015263599343597889, + -0.10986244678497314, + -0.038429081439971924, + 0.019997498020529747, + -0.027409423142671585, + -0.06544675678014755, + 0.00986011978238821, + -0.05299806967377663, + 0.0407583974301815, + 0.012617602944374084, + 0.009553357027471066, + -0.002614735858514905, + 0.11130189895629883, + 0.03117065504193306, + 0.04337364435195923, + 0.013123699463903904 + ], + "certificate-bold||*updated*,awards,certification,degree,diploma": [ + -0.010651472955942154, + 0.04078628122806549, + -0.02230812981724739, + 0.040467146784067154, + -0.031136786565184593, + -0.022815898060798645, + -0.016243334859609604, + -0.047380585223436356, + -0.06264085322618484, + -0.025125941261649132, + -0.03923485800623894, + -0.08370687812566757, + 0.032369960099458694, + -0.008834829553961754, + -0.09849059581756592, + -0.01382578443735838, + 0.030053650960326195, + 0.011017468757927418, + 0.048046503216028214, + -0.06483151018619537, + -0.003868876490741968, + 0.0727691575884819, + 0.036978114396333694, + -0.0034107407554984093, + 0.025826064869761467, + 0.005115253385156393, + 0.008427933789789677, + 0.019055521115660667, + -0.013793589547276497, + -0.062306683510541916, + -0.015658754855394363, + -0.054172582924366, + 0.07239983230829239, + 0.001269131083972752, + 0.04346095025539398, + 0.034663569182157516, + 0.044432200491428375, + 0.035244107246398926, + 0.02561471424996853, + 0.029241392388939857, + 0.021280618384480476, + -0.1385214477777481, + -0.006874130107462406, + 0.04388367384672165, + 0.009183087386190891, + -0.005197988823056221, + -0.08080935478210449, + -0.0760381743311882, + -0.04796162620186806, + 0.007604831829667091, + -0.0380912646651268, + -0.10258965194225311, + -0.05491679906845093, + 0.018310729414224625, + -0.06095822900533676, + 0.0027353649493306875, + -0.06301025301218033, + 0.03642944619059563, + -0.05131842941045761, + -0.03371138125658035, + -0.020730478689074516, + 0.037564486265182495, + 0.0242745541036129, + 0.08842124044895172, + 0.06651134043931961, + -0.02441476471722126, + -0.04732528328895569, + 0.019845088943839073, + 0.006970683578401804, + -0.034297164529561996, + 0.07059609889984131, + 0.0022778294514864683, + -0.015592905692756176, + -0.021287208423018456, + 0.025173213332891464, + -0.0911581963300705, + -0.001750309020280838, + 0.011488198302686214, + 0.025673523545265198, + -0.027601251378655434, + -0.02260798029601574, + -0.01894347555935383, + -0.05407842621207237, + -0.03565732762217522, + 0.06102912127971649, + -0.05243039131164551, + -0.0271616168320179, + -0.02863403595983982, + -0.05187898874282837, + 0.005826881621032953, + 0.07370375841856003, + -0.08805651217699051, + -0.01226993277668953, + 0.034410394728183746, + -0.06014367192983627, + 0.0212311539798975, + -0.009861075319349766, + -0.013623058795928955, + 0.0475660040974617, + 0.03750070184469223, + -0.030223187059164047, + 0.020275209099054337, + -0.07538293302059174, + 0.02037881314754486, + -0.047486308962106705, + 0.049590904265642166, + 0.00694215577095747, + 0.0312824621796608, + 0.01847735233604908, + -0.007048555184155703, + -0.0010144624393433332, + 0.0006248457939364016, + -0.07545091211795807, + -0.07179994881153107, + -0.03463803604245186, + 0.12770816683769226, + -0.05980905890464783, + 0.03668403625488281, + 0.1361786127090454, + 0.020039649680256844, + -0.029990006238222122, + 0.022447744384407997, + -0.03485138341784477, + -0.09809917956590652, + -0.07866852730512619, + -0.08458931744098663, + 0.03175615146756172, + -2.713735789061771e-33, + 0.0589076466858387, + 0.08884719759225845, + -0.0165884830057621, + 0.11650566011667252, + -0.011861440725624561, + 0.01551087386906147, + -0.007775469217449427, + -0.024211175739765167, + -0.05340031906962395, + 0.05201117321848869, + 0.07302579283714294, + 0.13092949986457825, + -0.04620219022035599, + 0.0381440632045269, + 0.03929489105939865, + 0.04958237335085869, + -0.021397598087787628, + 0.029225938022136688, + -0.042505621910095215, + 0.04729950800538063, + -0.006019105203449726, + -0.011092429980635643, + -0.013978983275592327, + 0.0066313487477600574, + 0.029020072892308235, + 0.005413406528532505, + 0.02551320567727089, + 0.055813658982515335, + 0.019784824922680855, + 0.030940832570195198, + 0.07831966131925583, + 0.004628942348062992, + 0.001227999571710825, + -0.06002366542816162, + 0.06190333887934685, + 0.09191296249628067, + -0.009492700919508934, + -0.056228239089250565, + 0.0502573698759079, + -0.06014213338494301, + -0.061857111752033234, + -0.009540148079395294, + 0.005374167114496231, + 0.035996776074171066, + 0.003844570368528366, + 0.08999160677194595, + 0.02963954769074917, + -0.021209312602877617, + 0.12698163092136383, + 0.06681826710700989, + -0.0024013661313802004, + -0.05582693591713905, + -0.06304051727056503, + -0.049525462090969086, + 0.033552199602127075, + -0.004520424176007509, + -0.0014003855176270008, + 0.12907345592975616, + -0.056281909346580505, + -0.043918244540691376, + -0.00864627305418253, + -0.015683729201555252, + -0.07027269899845123, + -0.03470935672521591, + -0.04232064262032509, + 0.022759608924388885, + -0.03603275120258331, + -0.007142181973904371, + 0.15206356346607208, + -0.08183638751506805, + -0.07649565488100052, + 0.055772680789232254, + 0.038774460554122925, + 0.016344118863344193, + -0.016173450276255608, + 0.010661476291716099, + -0.03760109096765518, + -0.028537023812532425, + 0.044328052550554276, + -0.015899019315838814, + -0.07790472358465195, + 0.052455246448516846, + -0.031295765191316605, + 0.012685602530837059, + 0.10215702652931213, + 0.0695856362581253, + 0.0032785122748464346, + -0.010439817793667316, + 0.019184958189725876, + 0.0693044364452362, + -0.0439583957195282, + 0.010569105856120586, + 0.0006506849313154817, + 0.0473119355738163, + -0.058935388922691345, + -2.856171403823617e-34, + 0.0459522046148777, + 0.012034066952764988, + -0.05115947872400284, + 0.05752744898200035, + -0.01118099968880415, + 0.02070513181388378, + -0.0005097076646052301, + 0.09199758619070053, + 0.0068017286248505116, + 0.011432699859142303, + 0.04290356859564781, + -0.016648616641759872, + -0.029625102877616882, + -0.0006439686985686421, + -0.014516575261950493, + -0.018085826188325882, + -0.06888855993747711, + 0.054682616144418716, + -0.09061063081026077, + 0.06209699064493179, + 0.001595744863152504, + 0.05820474773645401, + -0.04585786536335945, + 0.06841909140348434, + 0.02935074083507061, + 0.01566426455974579, + -0.03707125410437584, + -0.03473348915576935, + -0.002104812767356634, + -0.04130873084068298, + 0.013855300843715668, + -0.02955329418182373, + -0.09528011828660965, + 0.07817389816045761, + -0.1019435003399849, + -0.035256776958703995, + 0.09929894655942917, + -0.10258474200963974, + 0.02037384919822216, + 0.09181162714958191, + 0.014435223303735256, + -0.030371367931365967, + -0.031233839690685272, + 0.07165290415287018, + 0.037666045129299164, + -0.06290370225906372, + -0.018347015604376793, + -0.025576723739504814, + 0.033785123378038406, + 0.03552497550845146, + -0.029990853741765022, + -0.0481698177754879, + -0.04170173779129982, + 0.013721447438001633, + 0.037311844527721405, + 0.0070883058942854404, + -0.060793086886405945, + 0.029295096173882484, + -0.017593147233128548, + 0.04188143461942673, + 0.09184484928846359, + 0.08142802864313126, + -0.02831580862402916, + 0.06846605241298676, + 0.01618875563144684, + -0.04344121739268303, + -0.0001595703070051968, + 0.013646647334098816, + -0.02988366037607193, + 0.02749011479318142, + 0.06947169452905655, + -0.0026995937805622816, + -0.03262887895107269, + -0.07364360243082047, + -0.04186040908098221, + -0.0750180333852768, + 0.09130625426769257, + 0.017402201890945435, + -0.024592241272330284, + 0.01255667582154274, + -0.056324366480112076, + 0.022917000576853752, + -0.002218974754214287, + 0.09107789397239685, + 0.012272374704480171, + 0.011853083968162537, + 0.05839669331908226, + -0.11991829425096512, + 0.019327454268932343, + -0.01297936961054802, + -0.028679603710770607, + 0.035156331956386566, + -0.019105035811662674, + -0.05277577042579651, + -0.06220456212759018, + -2.158120260276064e-08, + 0.0003175582969561219, + 0.055045101791620255, + -0.1767238974571228, + -0.014001243747770786, + 0.016904760152101517, + -0.001521704369224608, + -0.06486214697360992, + -0.08355527371168137, + -0.0317721925675869, + -0.03322356939315796, + -0.0010187302250415087, + -0.057815637439489365, + -0.09261675179004669, + -0.08117888122797012, + 0.0426020622253418, + -0.03321823105216026, + -0.02444969117641449, + 0.11533223092556, + -0.0004973384202457964, + -0.042413435876369476, + 0.023037349805235863, + -0.0012818888062611222, + 0.003018002025783062, + 0.028531070798635483, + -0.045031268149614334, + 0.020999932661652565, + 0.02057567797601223, + 0.038393840193748474, + 0.03226274624466896, + 0.08119170367717743, + -0.03504294157028198, + -0.015925822779536247, + 0.06255371123552322, + -0.021808069199323654, + 0.015940407291054726, + -0.00516101997345686, + 0.04041929543018341, + -0.05225018039345741, + 0.02936880849301815, + 0.11281101405620575, + -0.03237790986895561, + 0.0021388994064182043, + 0.03516746312379837, + 0.007974871434271336, + 0.014597080647945404, + 0.027042366564273834, + -0.05969206616282463, + 0.011168032884597778, + -0.039609238505363464, + 0.035039838403463364, + 0.015399240888655186, + -0.10300996154546738, + -0.023339102044701576, + -0.05245628207921982, + -0.0978376492857933, + 0.01619780994951725, + 0.07546316832304001, + 0.016188519075512886, + -0.08755629509687424, + -0.008165758103132248, + 0.11365382373332977, + -0.10186568647623062, + 0.07694955915212631, + 0.030415290966629982 + ], + "chair-bold||seat,furniture": [ + 0.0460493266582489, + -0.009959627874195576, + -0.023705124855041504, + 0.028631847351789474, + 0.0015526370843872428, + -0.014258302748203278, + 0.0811961367726326, + -0.09814415872097015, + 0.018228188157081604, + 0.042058393359184265, + 0.0077180322259664536, + -0.0225603636354208, + 0.11102783679962158, + -0.06244649365544319, + -0.04177556559443474, + -0.025863923132419586, + 0.06894029676914215, + 0.039198823273181915, + 0.029070837423205376, + 0.0936763659119606, + -0.050800926983356476, + 0.07871799170970917, + -0.014804552309215069, + 0.04596519470214844, + 0.011781149543821812, + -0.030404001474380493, + 0.07217497378587723, + -0.010789263062179089, + 0.007063467055559158, + -0.03994910046458244, + -0.009788318537175655, + -0.062058236449956894, + 0.07257834076881409, + -1.0795283742481843e-05, + 0.013005572371184826, + -0.013339053839445114, + -0.018275586888194084, + -0.059095945209264755, + 0.035468436777591705, + 0.036165446043014526, + -0.040539611130952835, + -0.05687415599822998, + -0.00739761907607317, + -0.006817963905632496, + -0.01498135831207037, + 0.012916306965053082, + -0.06781797856092453, + -0.06185298413038254, + 0.01952212117612362, + 0.03683480992913246, + -0.05337923765182495, + -0.09065130352973938, + -0.07300934940576553, + -0.008435319177806377, + -0.016602130606770515, + 0.028715580701828003, + -0.06811314076185226, + -0.005324685480445623, + 0.010944073088467121, + -0.015627935528755188, + 0.053480856120586395, + -0.01759078912436962, + 0.05787552520632744, + 0.05904841795563698, + 0.005499913357198238, + 0.02250225655734539, + -0.020803231745958328, + -0.04630320146679878, + -0.09038488566875458, + 0.044194452464580536, + -0.018894007429480553, + 0.022319860756397247, + 0.008594178594648838, + -0.06167830154299736, + -0.07105643302202225, + -0.012731324881315231, + 0.028437145054340363, + 0.006059581413865089, + 0.05321493744850159, + -0.010847442783415318, + -0.09717392176389694, + -0.03758097440004349, + -0.03770643100142479, + -0.027832867577672005, + 0.028528695926070213, + 0.06403711438179016, + -0.054498665034770966, + -0.02907429076731205, + -0.15051420032978058, + -0.06614186614751816, + 0.0064643630757927895, + 0.012722205370664597, + -0.0089843375608325, + 0.0444604866206646, + -0.11758650839328766, + 0.062282390892505646, + 0.04964269697666168, + 0.06110147759318352, + 0.03604017570614815, + 0.06656228750944138, + -0.005041717551648617, + 0.11543899774551392, + 0.029278013855218887, + -0.005339514464139938, + -0.14988777041435242, + -0.07840438187122345, + -0.016595616936683655, + -0.07084004580974579, + 0.020583832636475563, + -0.04621867090463638, + -0.05445143207907677, + -0.08078135550022125, + -0.016568563878536224, + -0.022686168551445007, + -0.10675876587629318, + 0.01993495225906372, + -0.04664662107825279, + -0.0868467316031456, + 0.12434367835521698, + -0.02144746296107769, + -0.0025057510938495398, + 0.0033189079258590937, + -0.02186897024512291, + 0.062277525663375854, + 0.008016661740839481, + -0.0048645674251019955, + 0.06668493896722794, + -4.150784428768733e-33, + 0.02374664507806301, + -0.0022412848193198442, + 0.01675674319267273, + 0.07908807694911957, + 0.05138293281197548, + 0.020479312166571617, + -0.014144564047455788, + 0.013426545076072216, + -0.030371710658073425, + 0.028193043544888496, + 0.0230646301060915, + -0.03793776407837868, + 0.01268711593002081, + -0.02284221723675728, + 0.044079285115003586, + -0.005415528081357479, + -0.002208036370575428, + -0.07200875878334045, + -0.11030945181846619, + 0.04938187077641487, + -0.014189677312970161, + 0.1405962109565735, + -0.02078312262892723, + 0.010543559677898884, + -0.016238518059253693, + -0.015685586258769035, + 0.0069143385626375675, + -0.02599572204053402, + -0.0477796345949173, + 0.04201536998152733, + 0.03977704793214798, + 0.022543657571077347, + -0.06080337241292, + 0.035087086260318756, + -0.05379318445920944, + -0.008964083157479763, + -0.059774816036224365, + 0.00633749645203352, + -0.016200046986341476, + 0.03594553470611572, + -0.07366552948951721, + 0.037994612008333206, + 0.018896501511335373, + 0.01940074935555458, + -0.005056793335825205, + 0.11709266901016235, + 0.01876758225262165, + -0.02809562161564827, + -0.026565346866846085, + -0.01516391709446907, + -0.06789083033800125, + 0.08543598651885986, + 0.025999141857028008, + 0.01982305385172367, + -0.022605106234550476, + -0.07527802139520645, + 0.018775558099150658, + 0.05770242214202881, + -0.02533630281686783, + -0.005798361264169216, + 0.026703203096985817, + 0.030186044052243233, + 0.10246022045612335, + -0.0404072031378746, + -0.06003013625741005, + 0.0046251812018454075, + -0.03455604240298271, + 0.007282473612576723, + 0.16385887563228607, + 0.027792809531092644, + 0.037518687546253204, + 0.05638282001018524, + 0.035163890570402145, + 0.048197224736213684, + -0.040911756455898285, + 0.012354366481304169, + 0.016454774886369705, + -0.04604184255003929, + 0.02227819338440895, + -0.1303124874830246, + -0.08020063489675522, + 0.047412700951099396, + -0.015248502604663372, + 0.08940742909908295, + 0.013784946873784065, + -0.04680540785193443, + -0.03776225075125694, + -0.05954810231924057, + -0.0271107479929924, + 0.060319382697343826, + -0.04872499778866768, + -0.014699894934892654, + -0.03224994242191315, + -0.05487746000289917, + -0.07817386835813522, + -2.299974772295032e-34, + 0.10712867975234985, + 0.01395240519195795, + -0.07220838218927383, + -0.0493418388068676, + -0.00016564373800065368, + -0.016820795834064484, + -0.05151737108826637, + -0.026083899661898613, + -0.08286610245704651, + 0.01752871833741665, + 0.0012168982066214085, + 0.002548057585954666, + 0.008142472244799137, + -0.04353023320436478, + 0.05881431698799133, + 0.028670454397797585, + 0.043001674115657806, + 0.03447358310222626, + -0.03358342871069908, + 0.026159871369600296, + 0.005453852936625481, + 0.008369396440684795, + -0.0020927132572978735, + 0.05416319891810417, + -0.014002542942762375, + -0.011293627321720123, + 0.06520935148000717, + -0.004213334992527962, + -0.07309075444936752, + -0.016038408502936363, + -0.0871862843632698, + -0.03603275492787361, + 0.005764160305261612, + 0.09019169211387634, + -0.05999438092112541, + 0.02390601672232151, + -0.043137796223163605, + -0.058134306222200394, + -0.0128248305991292, + 0.03256663680076599, + 0.054901644587516785, + -0.04386844113469124, + 0.030171658843755722, + 0.09408009797334671, + 0.005389619618654251, + -0.08035869896411896, + -0.09968461096286774, + -0.05593473091721535, + -0.02052946574985981, + 0.04403281956911087, + -0.0004507079138420522, + -0.0008819097420200706, + 0.027094338089227676, + -0.012584718875586987, + -0.008033129386603832, + -0.00298814894631505, + -0.056864429265260696, + -0.06111666560173035, + 0.014035835862159729, + 0.11506389081478119, + -0.023278146982192993, + 0.10423966497182846, + -0.043562356382608414, + 0.04735459014773369, + 0.03561774268746376, + 0.015685921534895897, + -0.054204799234867096, + -0.018704578280448914, + 0.03234225511550903, + 0.007669500540941954, + 0.05366983264684677, + -0.030344991013407707, + -0.0019552598241716623, + 0.12430068850517273, + 0.004164071753621101, + -0.051656004041433334, + 0.09976385533809662, + 0.05732811242341995, + 0.031092582270503044, + 0.04420744627714157, + -0.05448903888463974, + -0.04676882177591324, + 0.0631754919886589, + -0.009943314827978611, + -0.006910442374646664, + 0.0414251945912838, + -0.04189743101596832, + -0.007742618676275015, + -0.06054697930812836, + -0.016021229326725006, + -0.008904951624572277, + 0.0775844156742096, + -0.00990910455584526, + -0.010829313658177853, + -0.009772660210728645, + -1.592603737776699e-08, + -0.03788081556558609, + -0.028329571709036827, + -0.03725380450487137, + -0.03454655408859253, + -0.016490532085299492, + -0.09980177134275436, + 0.004594817291945219, + -0.06515558063983917, + -0.08845026791095734, + -0.007266324013471603, + 0.011552696116268635, + -0.009692165069282055, + 0.0022575524635612965, + 0.010974577628076077, + 0.056259799748659134, + 0.08078731596469879, + -0.08368270844221115, + 0.06358662247657776, + -0.06897175312042236, + 0.01198851503431797, + -0.029225651174783707, + -0.018461082130670547, + 0.03183316811919212, + -0.012657387182116508, + 0.055077385157346725, + -0.00611452478915453, + -0.06539694219827652, + 0.03202801197767258, + 0.061490289866924286, + 0.10951689630746841, + 0.04813643544912338, + 0.054088886827230453, + -0.017248056828975677, + 0.019287100061774254, + -0.07419557869434357, + 0.026594003662467003, + -0.04222680255770683, + -0.07005442678928375, + 0.025304041802883148, + 0.08817069232463837, + -0.07919590920209885, + -0.06459863483905792, + 0.0015303893014788628, + -0.019698843359947205, + 0.04395516589283943, + 0.013879635371267796, + 0.050563033670186996, + 0.0036557544954121113, + -0.013795454986393452, + -0.06314709782600403, + -0.025024252012372017, + -0.053588733077049255, + 0.015676023438572884, + 0.08265528827905655, + -0.05504748597741127, + -0.05923128128051758, + 0.06372581422328949, + 0.08607807010412216, + 0.0014299756148830056, + 0.06205666810274124, + 0.1303149312734604, + 0.05402316525578499, + 0.02337980642914772, + -0.00931759737432003 + ], + "chalkboard-bold||blackboard,whiteboard,classroom,teacher,education,school,college,university": [ + 0.04137643426656723, + -0.08033961802721024, + -0.03398189693689346, + -0.00654864776879549, + -0.00987351592630148, + -0.012851756997406483, + 0.008622878231108189, + 0.01015386451035738, + 0.04240923747420311, + -0.017953453585505486, + 0.002801251597702503, + -0.0013657899107784033, + -0.028130218386650085, + 0.040584929287433624, + -0.03941547870635986, + 0.05130094289779663, + 0.01929745450615883, + 0.002803420415148139, + 0.03548382222652435, + -0.01984521560370922, + 0.035489559173583984, + 0.06185899302363396, + 0.07405108213424683, + 0.026255864650011063, + 0.01721338927745819, + 0.09479273110628128, + 0.047993890941143036, + -0.04658614099025726, + 0.031606730073690414, + -0.04619091749191284, + -0.012151154689490795, + -0.018314169719815254, + 0.13767246901988983, + -0.022881075739860535, + 0.03608321771025658, + -0.0064527601934969425, + -0.0153126185759902, + 0.016969354823231697, + 0.0007188130985014141, + -0.019275937229394913, + -0.014006906189024448, + -0.03682742267847061, + 0.06349550187587738, + 0.07650818675756454, + -0.03140128776431084, + -0.0047266012988984585, + 0.016728263348340988, + -0.060424674302339554, + 0.011204559355974197, + -0.03451729193329811, + 0.055522363632917404, + -0.14716596901416779, + -0.1415102332830429, + -0.0026057353243231773, + -0.05716455355286598, + 0.023825304582715034, + -0.046177010983228683, + 0.01116886641830206, + 0.05355525016784668, + -0.029199833050370216, + -0.0538501963019371, + 0.04612166807055473, + 0.08038631081581116, + 0.08217645436525345, + 0.07984354346990585, + 0.056103870272636414, + -0.001822104793973267, + 0.027585158124566078, + -0.005124686751514673, + 0.0889926478266716, + 0.024161389097571373, + 0.01530282013118267, + 0.02628050372004509, + -0.03205558657646179, + 0.05890660732984543, + -0.0052481405436992645, + 0.051354389637708664, + 0.029670851305127144, + 0.026734963059425354, + -0.08858679980039597, + -0.09918473660945892, + -0.052922323346138, + -0.006052091717720032, + -0.006504535675048828, + 0.04035824537277222, + 0.020787762477993965, + -0.09119994938373566, + -0.019478388130664825, + -0.009307637810707092, + -0.06693525612354279, + -0.06504831463098526, + 0.028023188933730125, + 0.009332157671451569, + 0.05879369005560875, + -0.011852651834487915, + 0.01567489095032215, + -0.0007618794334121048, + -0.00218712049536407, + 0.006708147935569286, + 0.033700209110975266, + -0.02486061491072178, + 0.04357634857296944, + 0.06784210354089737, + 0.006033483427017927, + -0.05608397722244263, + -0.07618626952171326, + -0.015400326810777187, + -0.07374152541160583, + -0.03290947899222374, + -0.017075084149837494, + -0.015696845948696136, + -0.0763351321220398, + -0.0008962283027358353, + 0.03809170424938202, + -0.024187760427594185, + -0.06522973626852036, + 0.06667771935462952, + -0.001057325629517436, + 0.025052903220057487, + 0.07018931210041046, + 0.016012931242585182, + -0.013186358846724033, + -0.01784331724047661, + -0.04106384143233299, + -0.06898736208677292, + -0.03893827646970749, + -0.00870727002620697, + -2.719564220660934e-33, + 0.10316874831914902, + 0.050866857171058655, + -0.05747314170002937, + 0.028498822823166847, + 0.06564480811357498, + -0.01988760009407997, + -0.0073689864948391914, + -0.022860588505864143, + -0.062171243131160736, + 0.11541200429201126, + 0.08200066536664963, + -0.01411435566842556, + 0.021657107397913933, + 0.1641964316368103, + 0.05698097124695778, + 0.02811787649989128, + -0.030965792015194893, + -0.04559726640582085, + -0.10543495416641235, + 0.02244500257074833, + -0.04221895709633827, + 0.08599426597356796, + 0.029447240754961967, + 0.003806614549830556, + -0.028969712555408478, + -0.02562885917723179, + -0.025497619062662125, + 0.022775165736675262, + 0.016717178747057915, + -0.02499750815331936, + 0.050916917622089386, + -0.062245070934295654, + -0.06721939146518707, + -0.08758444339036942, + -0.0064916969276964664, + -0.02302771620452404, + 0.0071935635060071945, + -0.03785598650574684, + 0.024987664073705673, + 0.017260659486055374, + -0.033283814787864685, + -0.0662228912115097, + 0.01881035603582859, + 0.013438970781862736, + 0.1150016188621521, + 0.08297909796237946, + 0.025968536734580994, + 0.00713129248470068, + 0.01425866223871708, + -0.021728182211518288, + -0.05173565074801445, + -0.0697965919971466, + -0.008914596401154995, + -0.07499910891056061, + 0.03770569711923599, + -0.03533037379384041, + 0.046504516154527664, + 0.08743155747652054, + -0.08588486909866333, + 0.006192170549184084, + -0.03044266067445278, + 0.10958743095397949, + -0.017885461449623108, + 0.06822483986616135, + -0.002320460509508848, + 0.04017295315861702, + -0.10975731164216995, + 0.024460913613438606, + 0.10574318468570709, + -0.14348100125789642, + 0.031432513147592545, + 0.036073241382837296, + -0.013759784400463104, + 0.044779881834983826, + -0.06287337839603424, + -0.03129815682768822, + 0.008823297917842865, + -0.09749205410480499, + 0.03450225666165352, + -0.06917621940374374, + -0.02869805134832859, + -0.02955373376607895, + -0.06456024944782257, + -0.04855920374393463, + -0.022529281675815582, + 0.06430549174547195, + -0.008806418627500534, + -0.08155221492052078, + 0.017917126417160034, + 0.027310864999890327, + -0.10337068885564804, + -0.041274700313806534, + -0.011411666870117188, + 0.020924394950270653, + -0.061138562858104706, + -8.350131467905812e-34, + 0.01673188805580139, + 0.028692161664366722, + -0.036406416445970535, + 0.03913932293653488, + -0.0030059083364903927, + 0.015903957188129425, + 0.042541272938251495, + 0.022906189784407616, + 0.03449258208274841, + -0.01561087928712368, + 0.03681854158639908, + 0.006756015587598085, + -0.041956327855587006, + -0.042503729462623596, + 0.010577897541224957, + 0.0012661254731938243, + 0.027773858979344368, + 0.11982853710651398, + -0.02692401595413685, + -0.05526059493422508, + -0.025003040209412575, + 0.021785154938697815, + -0.062441397458314896, + 0.08063104003667831, + -0.035396263003349304, + 0.03464042395353317, + 0.0034075796138495207, + -0.03084578923881054, + -0.07075968384742737, + 0.0937613993883133, + -0.06327151507139206, + -0.028630806133151054, + 0.11647137254476547, + -0.015437615104019642, + -0.028680937364697456, + 0.02423606626689434, + 0.058458998799324036, + -0.07619481533765793, + -0.03476693108677864, + -0.051657285541296005, + 0.008626909926533699, + 0.017798593267798424, + 0.0633028894662857, + -0.028611144050955772, + -0.02600913681089878, + 0.11407876014709473, + -0.08131488412618637, + 0.05523816496133804, + -0.019234636798501015, + 0.06873680651187897, + -0.0282531026750803, + -0.06343574821949005, + 0.006145142018795013, + -0.07063423842191696, + 0.040282394737005234, + 0.02639850042760372, + 0.04506269097328186, + -0.07047479599714279, + 0.04136824980378151, + 0.08448702096939087, + -0.005810647737234831, + 0.0173927191644907, + -0.0689879059791565, + 0.014122718013823032, + 0.021231181919574738, + -0.029250692576169968, + -0.02468005008995533, + 0.023545484989881516, + 0.01266664918512106, + -0.030054084956645966, + 0.0529397614300251, + 0.062081076204776764, + -0.024461893364787102, + -0.00983757060021162, + -0.015063629485666752, + 0.025175416842103004, + 0.04355008155107498, + 0.024879707023501396, + -0.03756452724337578, + 0.04388410970568657, + -0.05939275771379471, + -0.0293543990701437, + 0.0040449053049087524, + 0.057117804884910583, + -0.0019604077097028494, + 0.026072075590491295, + -0.05092199519276619, + -0.00815325602889061, + 0.07676344364881516, + -0.03198247030377388, + 0.0014845511177554727, + 0.0517570786178112, + 0.02274498902261257, + -0.06398651003837585, + -0.004940861836075783, + -2.4289970923518922e-08, + 0.0318935289978981, + 0.013419478200376034, + 0.010534746572375298, + -0.09399203211069107, + 0.0185700673609972, + -0.03819974511861801, + 0.04427803307771683, + -0.12235493957996368, + -0.03164369985461235, + 0.0024929011706262827, + -0.01811719872057438, + 0.025663763284683228, + -0.09349066019058228, + -0.02144233137369156, + 0.016530295833945274, + 0.09024050831794739, + -0.03503076732158661, + 0.0397879034280777, + -0.014970905147492886, + -0.10330518335103989, + -0.0025847244542092085, + -0.0472286082804203, + 0.06350050866603851, + 0.027895735576748848, + -0.07195859402418137, + -0.019331151619553566, + 0.014519743621349335, + 0.10229171812534332, + -0.006263563875108957, + 0.06307344883680344, + 0.02990705706179142, + 0.0611550435423851, + 0.05796884372830391, + -0.06543762236833572, + -0.005438420921564102, + -0.01898675411939621, + 0.009367446415126324, + -0.04586894437670708, + -0.02064165472984314, + 0.13542336225509644, + -0.06043781340122223, + -0.10026893019676208, + 0.013804326765239239, + -0.03247701749205589, + 0.0465204231441021, + 0.009279822930693626, + -0.0313311405479908, + -0.0011658078292384744, + -0.0521615631878376, + -0.09089714288711548, + -0.028084883466362953, + -0.041041143238544464, + -0.021391576156020164, + 0.0328645184636116, + -0.000319314596708864, + -0.06115930154919624, + -0.02542037144303322, + 0.0373244471848011, + -0.07081250101327896, + -0.012166781350970268, + 0.14923875033855438, + 0.027717163786292076, + -0.022182131186127663, + -0.014562968164682388 + ], + "chalkboard-simple-bold||*updated*,blackboard,whiteboard,classroom,teacher,education,school,college,university": [ + 0.030195048078894615, + -0.054450325667858124, + -0.02044546976685524, + -0.013857154175639153, + -0.013955972157418728, + -0.015010864473879337, + 0.020305156707763672, + 0.019059831276535988, + 0.015880899503827095, + -0.005990262143313885, + 0.004131725523620844, + -0.016951384022831917, + -0.023631256073713303, + 0.03722994774580002, + -0.05894901975989342, + 0.04314998909831047, + 0.014987637288868427, + -0.007674366235733032, + 0.010303019545972347, + -0.008505405858159065, + 0.011010129004716873, + 0.05953803285956383, + 0.049524903297424316, + 0.03304735943675041, + 0.015487453900277615, + 0.11379275470972061, + 0.04723513498902321, + -0.038859982043504715, + 0.035822369158267975, + -0.050537943840026855, + -0.0028180787339806557, + -0.022788608446717262, + 0.14436639845371246, + -0.03406800702214241, + 0.026131050661206245, + -0.01102229580283165, + -0.022127024829387665, + 0.01116930227726698, + -0.014272738248109818, + -0.031495772302150726, + -0.028678566217422485, + -0.04287268966436386, + 0.06666245311498642, + 0.07789340615272522, + -0.03987949714064598, + -0.0039809574373066425, + 0.010702919214963913, + -0.05629727989435196, + 0.021134741604328156, + -0.03505167365074158, + 0.04203764349222183, + -0.15858615934848785, + -0.1419953554868698, + -0.03246411308646202, + -0.04941870644688606, + 0.027472134679555893, + -0.04681839048862457, + -0.0010688056936487556, + 0.052082519978284836, + -0.036645300686359406, + -0.03867334499955177, + 0.04093345254659653, + 0.07633853703737259, + 0.07660556584596634, + 0.0654681921005249, + 0.029242364689707756, + -0.009831887669861317, + -0.002513772575184703, + -0.009056034497916698, + 0.0867750495672226, + 0.020983614027500153, + 0.01830151677131653, + 0.007025296334177256, + -0.025972750037908554, + 0.048368144780397415, + -0.024357952177524567, + 0.034436941146850586, + 0.03959278389811516, + 0.039546091109514236, + -0.055641330778598785, + -0.09910552948713303, + -0.07089342176914215, + -0.026999616995453835, + 0.022558709606528282, + 0.040910087525844574, + 0.023237409070134163, + -0.06734171509742737, + -0.01527265552431345, + -0.004932004492729902, + -0.08365459740161896, + -0.043299950659275055, + 0.045406606048345566, + -0.003356688655912876, + 0.054063841700553894, + -0.02837001159787178, + 0.011858822777867317, + -0.017017310485243797, + -0.008691382594406605, + -0.023242676630616188, + 0.06370201706886292, + -0.011119691655039787, + 0.05374280735850334, + 0.06653577834367752, + -0.01217754278331995, + -0.05409441888332367, + -0.06689093261957169, + -0.031273528933525085, + -0.06414300948381424, + -0.03087652660906315, + -0.009153313934803009, + -0.01780075952410698, + -0.09354995936155319, + -0.002582305809482932, + 0.036932043731212616, + -0.01870708167552948, + -0.047160595655441284, + 0.05926453322172165, + -0.00046961239422671497, + 0.007319118361920118, + 0.07704894989728928, + 0.03493782505393028, + -0.010255059227347374, + -0.03173774480819702, + -0.031500447541475296, + -0.08262883126735687, + -0.04434935003519058, + 9.284841507906094e-05, + -2.8833638483182503e-33, + 0.09559432417154312, + 0.06975221633911133, + -0.049370381981134415, + 0.028152478858828545, + 0.05905769020318985, + -0.028947684913873672, + -0.020545342937111855, + -0.014459661208093166, + -0.05314672365784645, + 0.1195531040430069, + 0.08481068164110184, + -0.022471176460385323, + 0.01772216148674488, + 0.16029362380504608, + 0.03588756173849106, + 0.006466933526098728, + -0.0010923214722424746, + -0.040729228407144547, + -0.10510367155075073, + 0.019856972619891167, + -0.045097716152668, + 0.07637851685285568, + 0.03673500940203667, + -0.00420098751783371, + -0.02000292018055916, + -0.025684179738163948, + -0.024844013154506683, + 0.012779094278812408, + 0.005339196417480707, + -0.020030466839671135, + 0.0491759292781353, + -0.06281726807355881, + -0.05864845588803291, + -0.0759056955575943, + -0.01616489887237549, + -0.0319109782576561, + 0.03253145143389702, + -0.04529246687889099, + 0.023420024663209915, + -0.011605826206505299, + -0.042984217405319214, + -0.05448906496167183, + 0.030543744564056396, + 0.01429803017526865, + 0.12826816737651825, + 0.08498534560203552, + 0.01164881233125925, + 0.01734803058207035, + 0.014968035742640495, + -0.03032521717250347, + -0.052675653249025345, + -0.05997080355882645, + -0.012848875485360622, + -0.06562571227550507, + 0.03773758187890053, + -0.04158686101436615, + 0.048604246228933334, + 0.11013031005859375, + -0.08691152185201645, + -0.0015613173600286245, + -0.027140259742736816, + 0.11310401558876038, + -0.026971204206347466, + 0.08035902678966522, + -0.017335372045636177, + 0.03905174881219864, + -0.11056672781705856, + 0.014458462595939636, + 0.10271967947483063, + -0.13428695499897003, + 0.013005279004573822, + 0.036187972873449326, + -0.005357229150831699, + 0.0428055003285408, + -0.05981890857219696, + -0.03503144904971123, + 0.029047280550003052, + -0.11633183807134628, + 0.048807479441165924, + -0.08422157913446426, + -0.02278764359652996, + -0.02324089966714382, + -0.06608368456363678, + -0.046248022466897964, + -0.02928881160914898, + 0.06068383902311325, + -0.014585154131054878, + -0.06976941227912903, + 0.018054677173495293, + 0.029887039214372635, + -0.10266204178333282, + -0.04717634245753288, + -0.02811223268508911, + 0.022402390837669373, + -0.059094201773405075, + -1.1497603917598875e-33, + 0.014827280305325985, + 0.037556394934654236, + -0.04838477447628975, + 0.03525034338235855, + -0.011197327636182308, + 0.018209798261523247, + 0.05533940717577934, + 0.01186047401279211, + 0.03800421208143234, + -0.016730207949876785, + 0.047606438398361206, + 0.009422422386705875, + -0.033510539680719376, + -0.044312287122011185, + 0.032818231731653214, + 0.029498504474759102, + 0.021044248715043068, + 0.12970083951950073, + -0.024803895503282547, + -0.04383615404367447, + -0.01585276424884796, + 0.02484498731791973, + -0.06951702386140823, + 0.06969684362411499, + -0.03851564973592758, + 0.03685859963297844, + 0.0022768976632505655, + -0.044022005051374435, + -0.055220428854227066, + 0.08965235948562622, + -0.07929611206054688, + -0.06270112842321396, + 0.10442738234996796, + -0.02265479601919651, + -0.019134385511279106, + 0.022123705595731735, + 0.0626058503985405, + -0.08066895604133606, + -0.05466582253575325, + -0.04320044815540314, + 0.006819400005042553, + 0.0364639088511467, + 0.09286561608314514, + -0.0354713536798954, + -0.024037960916757584, + 0.10081213712692261, + -0.07483085989952087, + 0.04608062282204628, + -0.02937164343893528, + 0.06346268951892853, + -0.03155028074979782, + -0.08244278281927109, + 0.009049348533153534, + -0.05937846004962921, + 0.042407747358083725, + 0.05303492024540901, + 0.0457594208419323, + -0.061409711837768555, + 0.044584453105926514, + 0.08320572227239609, + -0.018625274300575256, + 0.014181699603796005, + -0.0824032723903656, + 0.008382816798985004, + 0.016512788832187653, + -0.01238240860402584, + -0.029428787529468536, + 0.0246578436344862, + 0.01614445075392723, + -0.023546135053038597, + 0.0607953779399395, + 0.07434064894914627, + -0.02678125910460949, + -0.03792387619614601, + -0.0050002881325781345, + 0.023820234462618828, + 0.04134277626872063, + 0.01627472974359989, + -0.036188311874866486, + 0.019995877519249916, + -0.03674973174929619, + -0.012903382070362568, + 0.0024996681604534388, + 0.02541724219918251, + 0.01518645603209734, + 0.005576901603490114, + -0.039258453994989395, + -0.018379271030426025, + 0.06915152817964554, + -0.015205600298941135, + -0.005374494008719921, + 0.06999379396438599, + 0.047635238617658615, + -0.04719294607639313, + 0.002160177333280444, + -2.9854181349264763e-08, + 0.03405240550637245, + -0.009199494495987892, + -0.012670653872191906, + -0.0934901311993599, + 0.029748039320111275, + -0.04217305779457092, + 0.055267684161663055, + -0.13224172592163086, + -0.027310708537697792, + -0.008709422312676907, + -0.01616058498620987, + 0.01793508790433407, + -0.07987520843744278, + 0.007595422677695751, + 0.006225754041224718, + 0.11344000697135925, + -0.05113046616315842, + 0.05662674084305763, + -0.015567321330308914, + -0.11137782037258148, + 0.006011654157191515, + -0.0514787882566452, + 0.04748781770467758, + 0.03608482703566551, + -0.0803547278046608, + -0.01702679507434368, + 0.004046127665787935, + 0.12418045848608017, + -0.0025705131702125072, + 0.06189046800136566, + 0.03286249190568924, + 0.06056956201791763, + 0.04529232531785965, + -0.05206900089979172, + -0.010316038504242897, + -0.018354689702391624, + 0.0005566381732933223, + -0.03008844703435898, + -0.029655035585165024, + 0.11753010749816895, + -0.06724632531404495, + -0.07879473268985748, + 0.014966675080358982, + -0.03221242502331734, + 0.049871403723955154, + 0.007338882889598608, + -0.02637295052409172, + -0.025995058938860893, + -0.06904193758964539, + -0.06504158675670624, + -0.019832927733659744, + -0.027993133291602135, + -0.00845210999250412, + 0.025701304897665977, + 0.006416782736778259, + -0.018063291907310486, + -0.018686635419726372, + 0.04837243631482124, + -0.07208777219057083, + -0.0064180027693510056, + 0.13345597684383392, + 0.04992985725402832, + -0.03133249282836914, + -0.01732812449336052 + ], + "chalkboard-teacher-bold||blackboard,whiteboard,classroom,education,school,college,university": [ + 0.030190296471118927, + -0.06885051727294922, + -0.013192965649068356, + 0.007573345210403204, + -0.028280384838581085, + -0.01360433641821146, + 0.010906077921390533, + 0.012855542823672295, + 0.039709385484457016, + 0.007891152054071426, + 0.01807490363717079, + 0.005348921753466129, + -0.028796430677175522, + 0.05020000785589218, + -0.038036148995161057, + 0.08033736795186996, + 0.015477102249860764, + 0.025978069752454758, + 0.027550633996725082, + -0.024063853546977043, + 0.021382303908467293, + 0.07539056241512299, + 0.06157292053103447, + 0.03159914165735245, + 0.013698741793632507, + 0.10909105092287064, + 0.04593178257346153, + -0.06393330544233322, + 0.024869797751307487, + -0.04648074880242348, + -0.026925912126898766, + -0.03839895501732826, + 0.12106477469205856, + -0.016275884583592415, + 0.025582723319530487, + 0.005132975522428751, + 0.0057639554142951965, + 0.032776668667793274, + -0.018485140055418015, + -0.025036992505192757, + -0.02683679573237896, + -0.033120423555374146, + 0.04412833973765373, + 0.07734281569719315, + -0.03768583759665489, + 0.002000056905671954, + 0.02661529742181301, + -0.08153026551008224, + 0.0040709832683205605, + -0.02991875633597374, + 0.05432138592004776, + -0.14717569947242737, + -0.15598738193511963, + -0.008734988048672676, + -0.043807025998830795, + 0.043380171060562134, + -0.020384367555379868, + 0.028449973091483116, + 0.04964275658130646, + -0.020600179210305214, + -0.06231767684221268, + 0.04633113369345665, + 0.05509388819336891, + 0.09501153975725174, + 0.06814776360988617, + 0.029398269951343536, + -0.020708201453089714, + 0.037464432418346405, + -0.008632499724626541, + 0.09895522892475128, + 0.015462838113307953, + 0.021267114207148552, + 0.04190988838672638, + -0.02666083350777626, + 0.07574041932821274, + -0.020574558526277542, + 0.040245503187179565, + 0.01795230247080326, + 0.02890048734843731, + -0.09114154428243637, + -0.07816309481859207, + -0.05284377932548523, + 0.008756681345403194, + -0.019268635660409927, + 0.03264126181602478, + 0.023671751841902733, + -0.07716462016105652, + -0.01727038249373436, + 0.009481296874582767, + -0.08734728395938873, + -0.0498594306409359, + 0.025157621130347252, + 0.008647573180496693, + 0.05304405093193054, + -0.003513898467645049, + 0.008947087451815605, + -0.034308645874261856, + -0.0037849671207368374, + 0.014266200363636017, + 0.025051366537809372, + -0.05254082754254341, + 0.03779563680291176, + 0.051250748336315155, + 0.01459282636642456, + -0.048461154103279114, + -0.10589636862277985, + -0.02424587681889534, + -0.07735997438430786, + -0.03539952263236046, + -0.020287591964006424, + -0.011464033275842667, + -0.0700717568397522, + -0.023285577073693275, + 0.05545404925942421, + -0.0018111522076651454, + -0.04209572449326515, + 0.07593577355146408, + -0.019269481301307678, + -0.005379365757107735, + 0.043273672461509705, + 0.027171118184924126, + -0.009902031160891056, + -0.02118241786956787, + -0.0359489768743515, + -0.08823262155056, + -0.05863182991743088, + -0.004740918520838022, + -3.0141379621892144e-33, + 0.10980711877346039, + 0.050898969173431396, + -0.04412683844566345, + 0.026807205751538277, + 0.06729313731193542, + -0.0049157473258674145, + 0.0163434911519289, + -0.012576518580317497, + -0.019512448459863663, + 0.10856802016496658, + 0.07268796861171722, + -0.027145320549607277, + 0.019286958500742912, + 0.15678128600120544, + 0.04137035086750984, + 0.05309270694851875, + -0.03042612411081791, + -0.04603009670972824, + -0.0929739773273468, + 0.02496342360973358, + -0.025690093636512756, + 0.08963510394096375, + 0.04093518853187561, + 0.0037030528765171766, + -0.017072955146431923, + -0.017397597432136536, + -0.012520662508904934, + 0.018130432814359665, + 0.0490080863237381, + -0.026812462136149406, + 0.033719148486852646, + -0.06531552225351334, + -0.05845581740140915, + -0.08726736158132553, + 0.012161278165876865, + -0.024383367970585823, + 0.01750010810792446, + -0.04034018516540527, + 0.009792150929570198, + 0.008596646599471569, + -0.017094001173973083, + -0.08514712750911713, + 0.034480463713407516, + 0.0019813186954706907, + 0.09684693813323975, + 0.05738268047571182, + 0.02791212499141693, + 0.039964646100997925, + 0.009379838593304157, + 0.005348467733711004, + -0.05727300047874451, + -0.06807179003953934, + -0.019517842680215836, + -0.0767713412642479, + 0.04481862112879753, + -0.03647599369287491, + 0.03949588164687157, + 0.10307852923870087, + -0.08161500096321106, + -0.0058642285875976086, + -0.038695141673088074, + 0.11221493035554886, + -0.025220338255167007, + 0.06582991033792496, + 0.023272594437003136, + 0.02882455103099346, + -0.11393358558416367, + 0.0003848049382213503, + 0.10192970186471939, + -0.13936208188533783, + 0.015723174437880516, + 0.021261461079120636, + -0.030005265027284622, + 0.05487930402159691, + -0.0581379234790802, + -0.059149887412786484, + -0.0009739411761984229, + -0.11400724947452545, + 0.028848983347415924, + -0.06211189553141594, + -0.013941370882093906, + -0.039100341498851776, + -0.04893545061349869, + -0.06144259497523308, + -0.03823399543762207, + 0.03946729749441147, + 0.0003296160139143467, + -0.08029818534851074, + 0.03052680753171444, + 0.03310021385550499, + -0.08802920579910278, + -0.03309216722846031, + -0.017342185601592064, + 0.05367403104901314, + -0.047318216413259506, + -4.907339480620169e-34, + 0.020730629563331604, + 0.034629061818122864, + -0.03339265286922455, + 0.05024560168385506, + 0.01930498145520687, + 0.01743461936712265, + 0.042545441538095474, + 0.01897081732749939, + 0.03942808508872986, + -0.03392186388373375, + 0.02842436358332634, + 0.003931473940610886, + -0.04849572107195854, + -0.02337411791086197, + 0.007236829027533531, + -0.006130316760390997, + 0.006113049108535051, + 0.09063693881034851, + -0.026462309062480927, + -0.05866478756070137, + -0.02750713936984539, + 0.035036757588386536, + -0.0639982670545578, + 0.06222210451960564, + -0.026034867390990257, + 0.020284706726670265, + 0.01115464698523283, + -0.02097295969724655, + -0.06265934556722641, + 0.11163967102766037, + -0.045349519699811935, + -0.04405079782009125, + 0.1176643818616867, + -0.009441564790904522, + -0.037740133702754974, + 0.03641495108604431, + 0.04340334236621857, + -0.06774848699569702, + -0.03979570046067238, + -0.027241818606853485, + -0.003611029125750065, + 0.0025513446889817715, + 0.07425002008676529, + -0.023912502452731133, + 0.0007650604238733649, + 0.11821042001247406, + -0.08663222193717957, + 0.06725015491247177, + -0.02039172500371933, + 0.04291767627000809, + -0.03789766877889633, + -0.07331401854753494, + 0.00024003622820600867, + -0.08151073008775711, + 0.07292324304580688, + 0.050853122025728226, + 0.06986883282661438, + -0.08292082697153091, + 0.040218714624643326, + 0.06665438413619995, + 0.0018624853109940886, + -0.008261704817414284, + -0.0553460419178009, + 0.01616469956934452, + 0.028976038098335266, + -0.027815448120236397, + -0.02757886052131653, + 0.0415923111140728, + 0.010417689569294453, + -0.050374772399663925, + 0.04912196472287178, + 0.07521936297416687, + -0.019079795107245445, + -0.029985575005412102, + -0.01971769705414772, + 0.02484869211912155, + 0.034604620188474655, + 0.018272368237376213, + -0.03552152216434479, + 0.04262928664684296, + -0.0673559159040451, + -0.034266382455825806, + 0.02632944844663143, + 0.04802620783448219, + 0.012439748272299767, + 0.03793570026755333, + -0.0449487678706646, + -0.009376109577715397, + 0.0818391963839531, + -0.03477104753255844, + 0.02124352939426899, + 0.06117289885878563, + 0.025332842022180557, + -0.050625987350940704, + 0.00021847375319339335, + -2.290984824071529e-08, + 0.012568624690175056, + 0.007917533628642559, + 0.017159484326839447, + -0.10457000136375427, + 0.04137890413403511, + -0.03292004019021988, + 0.048286888748407364, + -0.10330081731081009, + -0.019409749656915665, + 0.025934332981705666, + -0.04293724521994591, + 0.03425959497690201, + -0.0790911316871643, + -0.009203460067510605, + 0.037727516144514084, + 0.09329225867986679, + -0.034972868859767914, + 0.03534642979502678, + -0.016217924654483795, + -0.09432655572891235, + 0.024241970852017403, + -0.0654124766588211, + 0.053909819573163986, + 0.016747141256928444, + -0.08304842561483383, + -0.031629350036382675, + 0.029257718473672867, + 0.125155970454216, + -0.02177630364894867, + 0.06538872420787811, + 0.01267450861632824, + 0.06396427750587463, + 0.05526124686002731, + -0.07047770917415619, + 0.002648832043632865, + -0.01608465425670147, + 0.021020224317908287, + -0.039493221789598465, + -0.024991780519485474, + 0.13009823858737946, + -0.06008244305849075, + -0.09467611461877823, + 0.030792556703090668, + -0.027197495102882385, + 0.0635237768292427, + 0.009393315762281418, + -0.040429770946502686, + 0.0031428940128535032, + -0.045283231884241104, + -0.054452408105134964, + -0.034673161804676056, + -0.04734950512647629, + -0.02147931233048439, + 0.0006080052116885781, + -0.006353895179927349, + -0.04470496252179146, + -0.0243101567029953, + 0.003490256145596504, + -0.08967514336109161, + -0.02889450639486313, + 0.11990948021411896, + 0.030904054641723633, + -0.035843994468450546, + -0.005649413447827101 + ], + "champagne-bold||glass,drinks,beverages,wine,places,locations,bars,restaurants,food,dining": [ + 0.02631905861198902, + -0.02029956690967083, + -0.04553418606519699, + 0.031502243131399155, + -0.006527647841721773, + 0.028378404676914215, + 0.08093556016683578, + -0.06468914449214935, + -0.02828628569841385, + -0.0778563842177391, + -0.004487356636673212, + -0.025073353201150894, + -0.04339991882443428, + 0.02973570115864277, + 0.03665005788207054, + -0.057659272104501724, + 0.06923897564411163, + -0.10100967437028885, + 0.08835170418024063, + 0.018084464594721794, + 0.04933078587055206, + -0.005259948316961527, + 0.0630655512213707, + 0.07637348026037216, + 0.0750950276851654, + 0.043720703572034836, + -0.02621236816048622, + 0.04343399778008461, + 0.001449981820769608, + -0.04662744700908661, + 0.01837090030312538, + 0.023273706436157227, + 0.07949348539113998, + -0.07218572497367859, + 0.006244070362299681, + -0.02698160894215107, + -0.0032841332722455263, + -0.054905861616134644, + 0.05848873034119606, + 0.10266950726509094, + 0.018181212246418, + -0.02567352168262005, + -0.04788268730044365, + 0.07705004513263702, + 0.015047060325741768, + -0.012104539200663567, + -0.014380263164639473, + 0.0492936447262764, + 0.016287297010421753, + 0.02330508455634117, + -0.019710220396518707, + -0.018764281645417213, + -0.06455561518669128, + -0.003848119406029582, + 0.0783337950706482, + -0.005181518848985434, + -0.05288619175553322, + -0.009232780896127224, + 0.042699865996837616, + 0.09234561026096344, + 0.06240873411297798, + 0.03591937944293022, + -0.008883512578904629, + 0.0952015221118927, + -0.05620446428656578, + 0.01366666704416275, + -0.01708504557609558, + 0.08707048743963242, + -0.05632137134671211, + -0.05385909229516983, + -0.015530822798609734, + -0.02120375446975231, + 0.06708002090454102, + -0.011013509705662727, + -0.07043823599815369, + -0.04823219031095505, + 0.05068123713135719, + -0.03951357677578926, + -0.06718894094228745, + 0.02448265627026558, + -0.09349770843982697, + -0.05055929347872734, + -0.09009004384279251, + -0.017123576253652573, + 0.005655209068208933, + 0.01079867035150528, + -0.047997381538152695, + -0.0020518293604254723, + 0.018363112583756447, + 0.009000914171338081, + -0.11823847144842148, + -0.018191177397966385, + -0.07221543788909912, + -0.02973226271569729, + -0.04868784174323082, + 0.027499312534928322, + 0.04320880398154259, + 0.002742239274084568, + 0.013318357989192009, + 0.031541597098112106, + 0.07771029323339462, + 0.11514929682016373, + 0.06724391877651215, + -0.05334077402949333, + -0.0036280076019465923, + 0.007975270040333271, + -0.0683278739452362, + 0.07103967666625977, + 0.038273073732852936, + 0.0006499653682112694, + -0.0708172395825386, + 0.006366944871842861, + 0.05735248327255249, + -0.05769304931163788, + -0.046682845801115036, + 0.0153126809746027, + -0.0032140491530299187, + -0.06136469170451164, + 0.015885883942246437, + -0.05958957225084305, + -0.010137850418686867, + -0.01623607613146305, + 0.08399083465337753, + 0.003759624669328332, + -0.10813315212726593, + 0.0067545222118496895, + 0.003971638157963753, + -5.1182115040496755e-33, + 0.0004368278314359486, + -0.03291783481836319, + -0.04074656218290329, + 0.06737615168094635, + 0.028356283903121948, + -0.0024282108061015606, + -0.06660597026348114, + 0.0013495407765731215, + -0.08894661068916321, + 0.016157910227775574, + 0.10952551662921906, + -0.05267287790775299, + 0.00993346143513918, + 0.031683407723903656, + 0.0822279155254364, + 0.026048710569739342, + 0.0534789077937603, + 0.005811803974211216, + -0.09691637754440308, + -0.0458049476146698, + -0.06220996752381325, + 0.04179571568965912, + -0.019500941038131714, + 0.052204061299562454, + -0.08739842474460602, + 0.014805211685597897, + 0.06131410971283913, + 0.0440681166946888, + -0.016711870208382607, + 0.009649273008108139, + 0.005401237402111292, + 0.03576336428523064, + 0.047455914318561554, + -0.016166290268301964, + 0.03566811606287956, + 0.005479487124830484, + -0.07012178748846054, + -0.03739779442548752, + 0.013292394578456879, + 0.028670979663729668, + -0.07462207973003387, + 0.04575609415769577, + 0.03803623467683792, + 0.08783774077892303, + 0.01653590425848961, + 0.1197071224451065, + -0.014422976411879063, + -0.030883509665727615, + 0.044135067611932755, + -0.04253441095352173, + -0.07164360582828522, + -0.03470594063401222, + -0.040866170078516006, + 0.04563335329294205, + -0.0350119024515152, + 0.019081251695752144, + -0.024426810443401337, + 0.03574645519256592, + 0.010689249262213707, + -0.14247643947601318, + 0.037837278097867966, + 0.00534087885171175, + -0.04582769423723221, + -0.04638295993208885, + -0.10520963370800018, + 0.09011045843362808, + -0.10020463913679123, + -0.010833336040377617, + 0.0855560451745987, + -0.04845084622502327, + 0.029887773096561432, + 0.10278145968914032, + 0.020938366651535034, + 0.039809372276067734, + 0.0713544487953186, + 0.06026498228311539, + -0.009467619471251965, + -0.009295905940234661, + 0.009334560483694077, + 0.00161449471488595, + -0.08459624648094177, + -0.03430790454149246, + -0.028215156868100166, + 0.08847685903310776, + -0.004744170233607292, + 0.03148431330919266, + 0.0515412874519825, + -0.09404114633798599, + 0.014312341809272766, + -0.02004960924386978, + -0.12114052474498749, + -0.050196364521980286, + 0.039130471646785736, + -0.08323957771062851, + -0.04859362170100212, + 1.9385369376288126e-33, + 0.08853722363710403, + -0.07064538449048996, + 0.01839127205312252, + -0.08615820854902267, + 0.053803700953722, + 0.0004316997074056417, + -0.03718334063887596, + 0.011993419378995895, + 0.015890585258603096, + -0.07704111188650131, + -0.06899422407150269, + 0.016907472163438797, + -0.04021260887384415, + -0.044203877449035645, + -0.018545368686318398, + 0.06330972909927368, + 0.08950629830360413, + 0.055748652666807175, + -0.02446592226624489, + 0.03283039480447769, + 0.02665943093597889, + 0.02383282408118248, + -0.03295254707336426, + 0.027901355177164078, + -0.05426245927810669, + 0.061822310090065, + 0.012873896397650242, + -0.0904770940542221, + -0.028239956125617027, + 0.00034874104312621057, + -0.061506349593400955, + -0.03878762573003769, + 0.016962198540568352, + -0.008630864322185516, + -0.059455227106809616, + 0.0936465784907341, + 0.03935606777667999, + -0.09757943451404572, + -0.07297981530427933, + 0.025947459042072296, + 0.07725434005260468, + 0.005819047801196575, + -0.0028692481573671103, + 0.04720534011721611, + 0.053017985075712204, + 0.05042457580566406, + -0.1346094310283661, + -0.057361867278814316, + -0.005952684674412012, + 0.043045300990343094, + 0.05066072568297386, + -0.01794092170894146, + -0.0751836895942688, + 0.05941107124090195, + 0.008698548190295696, + -0.039600033313035965, + -0.010543694719672203, + -0.005072565283626318, + -0.03382593020796776, + -0.03884149342775345, + -0.030152516439557076, + 0.09378159046173096, + -0.009684604592621326, + 0.026810703799128532, + 0.0025412417016923428, + -0.05015261098742485, + -0.002107493346557021, + 0.05929477885365486, + -0.019667459651827812, + -0.008150460198521614, + 0.011506757698953152, + -0.012349824421107769, + -0.022204434499144554, + 0.11411279439926147, + -0.030096085742115974, + -0.029025493189692497, + -0.02872777171432972, + -0.012144790962338448, + -0.008504699915647507, + 0.0849924087524414, + -0.011857426725327969, + -0.004990061745047569, + -0.0371665321290493, + 0.06988124549388885, + -0.00398721219971776, + -0.057178519666194916, + 0.053895365446805954, + -0.07669354975223541, + -0.04805224388837814, + -0.029653307050466537, + -0.025477508082985878, + 0.04886110499501228, + -0.03139219060540199, + -0.02830992266535759, + 0.03886217251420021, + -2.5006704262864332e-08, + 0.03367441147565842, + 0.013786333613097668, + -0.06035665422677994, + 0.06828577816486359, + -0.026692649349570274, + -0.10612458735704422, + 0.0334099605679512, + -0.02720930054783821, + -0.013875581324100494, + -0.02620484121143818, + 0.007021547760814428, + 0.10273347049951553, + -0.010578213259577751, + -0.04480047523975372, + -0.06412755697965622, + 0.024775082245469093, + -0.028366774320602417, + -0.012053622864186764, + 0.012712891213595867, + -0.04425891116261482, + 0.05481087788939476, + 0.012738336808979511, + 0.03363841399550438, + -0.0017136202659457922, + -0.02278759703040123, + -0.027446486055850983, + -0.04048245772719383, + 0.018880367279052734, + 0.08068764954805374, + -0.026278231292963028, + -0.005638459697365761, + 0.027723973616957664, + 0.00212492304854095, + 0.015584180131554604, + -0.033544428646564484, + 0.05998014286160469, + -0.03907446190714836, + -0.05505407229065895, + -0.046732764691114426, + 0.06229694187641144, + -0.04144342616200447, + -0.17574261128902435, + -0.04623863473534584, + 0.015423478558659554, + 0.028471916913986206, + 0.009651058353483677, + 0.028162946924567223, + 0.0407920740544796, + -0.00581808015704155, + -0.02157045528292656, + 0.03523457422852516, + 0.03596297651529312, + 0.05997539311647415, + -0.026502376422286034, + 0.016353053972125053, + -0.021304450929164886, + -0.010181155987083912, + 0.02322598546743393, + 0.009694239124655724, + -0.009843175299465656, + 0.15025267004966736, + 0.019847344607114792, + 0.06357315927743912, + -0.003699753899127245 + ], + "charging-station-bold||ev,charge,fuel,pump": [ + -0.0317242294549942, + 0.0699508935213089, + -0.09831654280424118, + 0.029140539467334747, + 0.055971693247556686, + 0.02046762779355049, + 0.0843566283583641, + 0.014863012358546257, + -0.04569666087627411, + -0.07093758136034012, + 0.0878208801150322, + -0.024529308080673218, + 0.05726594850420952, + 0.01412062719464302, + -0.02834252081811428, + 0.010771573521196842, + 0.008733035065233707, + -0.013129575178027153, + 0.07888217270374298, + 0.07806075364351273, + 0.0017167344922199845, + -0.015285827219486237, + 0.04925025627017021, + -0.04156338423490524, + 0.043986812233924866, + 0.08836670964956284, + 0.021521979942917824, + 0.07541132718324661, + -0.028504684567451477, + -0.11335323005914688, + -0.011097216978669167, + -0.052598897367715836, + 0.09260880947113037, + -0.042471397668123245, + 0.061818160116672516, + 0.020878799259662628, + -0.04460330307483673, + -0.0035935912746936083, + 0.00907040387392044, + 0.007307074964046478, + 0.034001175314188004, + -0.11396823078393936, + -0.027887215837836266, + 0.03884175047278404, + -0.011844930239021778, + 0.0037568944972008467, + -0.0043307943269610405, + -0.031026583164930344, + 0.07216482609510422, + -0.04236607626080513, + 0.0035726355854421854, + -0.12329337000846863, + -0.03839339315891266, + 0.027366239577531815, + -0.02593819983303547, + 0.013591610826551914, + -0.049452073872089386, + 0.02490704320371151, + 0.07985590398311615, + -0.05510077625513077, + 0.024264251813292503, + 0.023225001990795135, + 0.021110745146870613, + 0.05872134119272232, + 0.0008485134458169341, + -0.03353458270430565, + -0.015351293608546257, + 0.09662894904613495, + -0.05141674727201462, + -0.015218052081763744, + 0.049742501229047775, + 0.021341802552342415, + -0.02010330744087696, + -0.12579579651355743, + -0.061723608523607254, + 0.03703898936510086, + 0.031146438792347908, + 0.00827578641474247, + -0.050662413239479065, + -0.026593094691634178, + -0.05399326607584953, + -0.10106175392866135, + -0.103082075715065, + -0.041321828961372375, + 0.004202196374535561, + 0.0445382334291935, + -0.003267938271164894, + -0.1267721801996231, + -0.016289258375763893, + 0.011167551390826702, + -0.008280583657324314, + 0.013998009264469147, + 0.0015985987847670913, + 0.0077041564509272575, + -0.006724157836288214, + 0.08280696719884872, + 0.021053658798336983, + -0.007753761485219002, + -0.032962359488010406, + 0.03243796527385712, + 0.1019403487443924, + 0.09867312759160995, + -0.026611046865582466, + -0.010568892583251, + -0.028376486152410507, + -0.06854632496833801, + -0.02023589424788952, + 0.040157049894332886, + 0.057195037603378296, + -0.05659979581832886, + 0.007627361919730902, + -0.09300822019577026, + -0.05975212901830673, + -0.025439688935875893, + -0.08081293851137161, + 0.06955001503229141, + -0.05013108626008034, + -0.04380597546696663, + 0.07221052050590515, + 0.04049815237522125, + -0.0005727636162191629, + -0.020939098671078682, + 0.0031353451777249575, + 0.001798324636183679, + -0.012333634309470654, + 0.03144730255007744, + 0.1149340271949768, + -3.501366778951621e-33, + -0.041944291442632675, + -0.005014938767999411, + -0.021146902814507484, + 0.05001704394817352, + 0.0021952600218355656, + 0.08331389725208282, + -0.05790708586573601, + 0.046297844499349594, + -0.023897046223282814, + 0.07207999378442764, + -0.0010391526157036424, + 0.05057499185204506, + 0.01101846992969513, + 0.012821282260119915, + -0.03036440536379814, + -0.08100476115942001, + -0.035290058702230453, + 0.007285861764103174, + -0.05195668339729309, + -0.04991990700364113, + 0.004000301472842693, + 0.061577603220939636, + -0.021400922909379005, + -0.06530268490314484, + 0.019655369222164154, + 0.013015872798860073, + 0.04665684327483177, + -0.006586695089936256, + -0.008414805866777897, + 0.03919024392962456, + 0.03486959636211395, + 0.06630700826644897, + 0.012311317957937717, + 0.08747933059930801, + -0.03739979863166809, + 0.04751056805253029, + -0.0037660785019397736, + -0.03605930879712105, + -0.04029515013098717, + -0.01943381130695343, + -0.04400434345006943, + -0.04442737251520157, + -0.05120449140667915, + -0.018886331468820572, + 0.005535486154258251, + 0.04541977122426033, + 0.04207753762602806, + -0.12105515599250793, + 0.026835236698389053, + 0.01613255776464939, + -0.08895069360733032, + -0.06454113125801086, + -0.004747312981635332, + -0.014878090471029282, + 0.057223107665777206, + 0.01735093630850315, + -0.060431621968746185, + 0.08748786151409149, + -0.004468145780265331, + -0.03826303035020828, + -0.013178014196455479, + 0.04489559680223465, + -0.03449619561433792, + -0.11448443681001663, + -0.0450417622923851, + 0.06473106890916824, + -0.07415731996297836, + -0.04559185728430748, + 0.037769269198179245, + 0.0649312436580658, + 0.011325620114803314, + -0.0016270120395347476, + 0.04078143462538719, + 0.04085502028465271, + 0.0345040038228035, + 0.08878417313098907, + -0.017882240936160088, + 0.017135722562670708, + -0.03603942692279816, + -0.06149804964661598, + -0.1322694569826126, + -0.05540577694773674, + -0.06535472720861435, + 0.1010318398475647, + 0.08489488065242767, + -0.010385205037891865, + -0.04774647206068039, + -0.004516005050390959, + 0.04511042311787605, + 0.027676504105329514, + 0.0050589097663760185, + 0.054988302290439606, + -0.05619210749864578, + -0.08852479606866837, + -0.02566126361489296, + 5.084581988205092e-34, + -0.024045560508966446, + 0.05195274204015732, + -0.044648677110672, + -0.05568777769804001, + -0.005721427034586668, + 0.05559106543660164, + 0.00839177891612053, + -0.04085253179073334, + 0.008975108154118061, + 0.07760158181190491, + -0.09474027901887894, + 0.011704400181770325, + -0.003957522101700306, + -0.055255040526390076, + -0.0037967378739267588, + 0.04134902358055115, + -0.0115677984431386, + 0.0007449451368302107, + -0.013297266326844692, + 0.05481552705168724, + -0.060584936290979385, + 0.06897109746932983, + 0.010970777831971645, + 0.10972227156162262, + 0.05247173458337784, + 0.03492792323231697, + 0.0731886476278305, + -0.05616053566336632, + 0.04178157448768616, + 0.023312237113714218, + -0.03434373810887337, + -0.01594468764960766, + 0.036663636565208435, + 0.10044946521520615, + -0.10290325433015823, + 0.039305638521909714, + 0.014412757940590382, + 0.0321735218167305, + 0.013963381759822369, + -0.02744986303150654, + -0.018671084195375443, + -0.08122169971466064, + -0.0026733034756034613, + -0.0012017313856631517, + -0.04202317073941231, + -0.055768661201000214, + -0.03789295256137848, + -0.03411746397614479, + 0.026998642832040787, + 0.08967532962560654, + -0.04505569860339165, + -0.06275636702775955, + -0.05299622565507889, + 0.06212499737739563, + -0.03856707364320755, + -0.09734645485877991, + 0.0551629401743412, + 0.02780337445437908, + -0.05644810572266579, + 0.02794596180319786, + 0.08170121163129807, + 0.012353780679404736, + 0.01980731450021267, + -0.01508136186748743, + -0.05548706650733948, + -0.07215829193592072, + 0.025355473160743713, + -0.03241705894470215, + 0.06128360331058502, + -0.053723856806755066, + 0.019477568566799164, + 0.015062983147799969, + -0.022715309634804726, + -0.0176946222782135, + -0.08121738582849503, + -0.018616944551467896, + 0.034771256148815155, + 0.005970890633761883, + 0.04633298143744469, + -0.06037098914384842, + 0.04694942757487297, + 0.03627682849764824, + -0.007473777513951063, + 0.004494964145123959, + -0.02406330220401287, + -0.019469542428851128, + 0.013795873150229454, + 0.03734306991100311, + 0.037365227937698364, + -0.018076812848448753, + -0.00497572822496295, + 0.07378417253494263, + -0.045155517756938934, + 0.10712431371212006, + -0.12004270404577255, + -1.8357825481984946e-08, + -0.023873494938015938, + 0.024538138881325722, + 0.020172229036688805, + -0.02357284538447857, + 0.03470288962125778, + -0.07609859853982925, + -0.05115167424082756, + -0.012864165008068085, + -0.06077621132135391, + -0.02753874659538269, + 0.061600461602211, + 0.033509448170661926, + 0.02815214917063713, + -0.03405255451798439, + 0.03687549754977226, + 0.051794830709695816, + -0.05897866562008858, + 0.06533273309469223, + -0.04087390378117561, + 0.02687680721282959, + -0.011419031769037247, + 0.028291305527091026, + -0.07183688879013062, + 0.03161856159567833, + 0.1101607158780098, + -0.007234353106468916, + 0.002176854060962796, + 0.05033035948872566, + 0.10384754836559296, + -0.08520905673503876, + 0.050625067204236984, + 0.062341053038835526, + 0.014691576361656189, + 0.008289281278848648, + -0.09908129274845123, + -0.01051089633256197, + -0.010671337135136127, + -0.01811489835381508, + -0.046441081911325455, + 0.10719133168458939, + -0.008686354383826256, + -0.06866956502199173, + 0.006140431854873896, + -0.0476098358631134, + -0.06652070581912994, + 0.06490472704172134, + 0.004339534789323807, + -0.054766930639743805, + -0.06429490447044373, + -0.001153353601694107, + -0.07509808242321014, + -0.0600324310362339, + 0.027112001553177834, + 0.0963241457939148, + 0.02876010350883007, + -0.009096636436879635, + -0.05467807874083519, + 0.04137541353702545, + 0.004863428417593241, + 0.0021947503555566072, + 0.07785113900899887, + 0.02794473059475422, + 0.05476319417357445, + 0.020426563918590546 + ], + "chart-bar-bold||graphs,graphing,charts,statistics,histogram,analyze,analysis": [ + 0.013967948965728283, + -0.03333108499646187, + -0.016838373616337776, + -0.030775779858231544, + -0.019429925829172134, + -0.02788824960589409, + -0.011266217567026615, + 0.03984501212835312, + -0.024078888818621635, + 0.05240458622574806, + 0.005464051850140095, + -0.027242999523878098, + 0.08388949930667877, + -0.0107136694714427, + 0.0027289576828479767, + 0.03283807635307312, + 0.026629844680428505, + -0.06025193631649017, + 0.028174128383398056, + -0.056385401636362076, + -0.026514530181884766, + -0.0002233679551864043, + -0.006852294318377972, + -0.03972918167710304, + 0.08587980270385742, + 0.004753371700644493, + -0.00923132337629795, + -0.00901247002184391, + 0.04293351247906685, + -0.04291137307882309, + -0.04065340384840965, + -0.025716761127114296, + 0.17115271091461182, + 0.018108846619725227, + -0.048710234463214874, + -0.04399862512946129, + 0.06381738185882568, + 0.007977630011737347, + 0.04091353714466095, + 0.11442241072654724, + -0.03229428827762604, + 0.0036772785242646933, + 0.008763288147747517, + 0.026282718405127525, + 0.02023088000714779, + -0.003163951216265559, + -0.12643055617809296, + -0.036704711616039276, + 0.009208382107317448, + 0.04563390091061592, + -0.08921872824430466, + -0.06626728177070618, + -0.1047942042350769, + -0.03469609096646309, + 0.04531127214431763, + -0.012335964478552341, + -0.06749237328767776, + -0.07430391013622284, + 0.11812514066696167, + -0.0030188108794391155, + 0.03621026873588562, + 0.01914389617741108, + -0.00560683012008667, + 0.08082500100135803, + 0.11026335507631302, + 0.057152822613716125, + 0.019436953589320183, + 0.10335110872983932, + 0.031181881204247475, + 0.08460838347673416, + 0.027102243155241013, + -0.020520471036434174, + -0.07019677758216858, + -0.007582528982311487, + -0.00957583263516426, + -0.02312924899160862, + -0.02908632531762123, + 0.022374732419848442, + -0.04148265719413757, + -0.1571381539106369, + -0.07638246566057205, + -0.04795782268047333, + -0.012900454923510551, + 0.0157915111631155, + -0.0020511955954134464, + 0.03550473973155022, + -0.06598316133022308, + -0.06794337183237076, + 0.004087013192474842, + 0.024786202237010002, + -0.04488695040345192, + -0.0008808191050775349, + -0.0778464823961258, + 0.04961313307285309, + -0.039174582809209824, + 0.06684967875480652, + 0.02047172747552395, + -0.03365291655063629, + 0.03629976138472557, + 0.07369038462638855, + 0.07473640143871307, + -0.025087464600801468, + 0.0310113113373518, + 0.01060566771775484, + -0.08028706163167953, + -0.053851764649152756, + 0.01841793768107891, + 0.0017787603428587317, + 0.007172936107963324, + 0.03237162157893181, + -0.00021023114095441997, + -0.0397493802011013, + -0.06336650997400284, + -0.017383119091391563, + -0.023196158930659294, + -0.042899832129478455, + -0.03249058499932289, + -0.018155526369810104, + 0.04989844188094139, + 0.06029967963695526, + -0.021210089325904846, + 0.09127793461084366, + 0.008095571771264076, + -0.019808826968073845, + -0.04430738836526871, + -0.009678113274276257, + -0.026746030896902084, + -1.4977108522006117e-33, + 0.0036413418129086494, + -0.05293343588709831, + -0.03987409546971321, + 0.07448409497737885, + 0.02192755602300167, + 0.008898353204131126, + -0.14653463661670685, + -0.06327920407056808, + -0.0369507372379303, + 0.05073153227567673, + 0.03639572486281395, + 0.133285790681839, + -0.009728152304887772, + 0.08353658020496368, + 0.0898682102560997, + 0.007786468602716923, + 0.06415815651416779, + -0.028189916163682938, + -0.10727023333311081, + -0.07254379242658615, + -0.04300006479024887, + 0.015694651752710342, + 0.07828361541032791, + 0.025546493008732796, + 0.04033045098185539, + 0.0379335954785347, + 0.042673900723457336, + 0.004421320278197527, + -0.08485176414251328, + 0.033898770809173584, + -0.011809968389570713, + 0.044041335582733154, + -0.0017785289091989398, + -0.009565782733261585, + 0.004026871640235186, + -0.03597310930490494, + -0.055782392621040344, + -0.010655784979462624, + 0.015532792545855045, + 0.030582617968320847, + -0.0888342633843422, + -0.02593936212360859, + -0.04168856516480446, + 0.001955573447048664, + -0.032888490706682205, + 0.12706229090690613, + -0.0075546796433627605, + -0.02170346863567829, + 0.07004706561565399, + 0.026906752958893776, + -0.09938863664865494, + 0.003329346189275384, + 0.03689995035529137, + -0.008225942961871624, + 0.01930146850645542, + 0.028409676626324654, + 0.029848840087652206, + 0.10734684765338898, + 0.011595351621508598, + 0.0027196197770535946, + 0.003984070848673582, + 0.05385669693350792, + 0.06664907932281494, + -0.04571212828159332, + -0.04510773718357086, + 0.062078483402729034, + -0.10422870516777039, + 0.020493008196353912, + 0.06619081646203995, + -0.006723559461534023, + -0.044944629073143005, + 0.06798472255468369, + 0.019369009882211685, + 0.021811209619045258, + 0.07272983342409134, + 0.03470376878976822, + -0.04843755066394806, + -0.012916062958538532, + -0.08756865561008453, + -0.024915780872106552, + -0.07833468914031982, + -0.11196950823068619, + -0.03443006053566933, + 0.0071494546718895435, + -0.008113592863082886, + -0.0575333908200264, + 0.0727507546544075, + -0.00010285606549587101, + -0.04591108486056328, + 0.012163877487182617, + -0.11121929436922073, + 0.013914991170167923, + -0.03685280680656433, + -0.022239388898015022, + -0.04242582991719246, + -1.7419876700156027e-33, + -0.05364049971103668, + 0.11155293881893158, + 0.038383930921554565, + 0.062257278710603714, + 0.008642333559691906, + 0.035047803074121475, + -0.0001277426490560174, + 0.022141359746456146, + 0.043832987546920776, + 0.07986186444759369, + 0.02771409973502159, + -0.07256603986024857, + -0.063766710460186, + -0.03475796431303024, + -0.03601941838860512, + 0.019202522933483124, + -0.04573208466172218, + -0.005837466102093458, + -0.14792896807193756, + -0.02756279706954956, + -0.06637357175350189, + 0.024992985650897026, + -0.08627703785896301, + 0.011976423673331738, + 0.02289348840713501, + 0.0600179061293602, + -0.04737906530499458, + -0.06207575276494026, + -0.05748201534152031, + -0.02323734760284424, + -0.06716877222061157, + -0.0194013100117445, + 0.023970309644937515, + -0.02771867625415325, + -0.04942396655678749, + 0.054259248077869415, + 0.13255701959133148, + -0.03142183646559715, + -0.022273315116763115, + -0.017573339864611626, + 0.04362056776881218, + 0.033993467688560486, + 0.02197050303220749, + -0.06603678315877914, + -0.0351431630551815, + 0.06466853618621826, + -0.03295610100030899, + -0.01601223088800907, + -0.04984040930867195, + 0.03526606783270836, + 0.026141665875911713, + 0.06788478791713715, + 0.07031913101673126, + 0.0016750098438933492, + -0.009503928944468498, + -0.10480577498674393, + 0.0641384944319725, + 0.04052377864718437, + -0.0929364264011383, + 0.03633694350719452, + -0.039982087910175323, + -0.009867356158792973, + -0.017799967899918556, + -0.0038820889312773943, + -0.01161161158233881, + -0.03770025819540024, + 0.021316999569535255, + -0.07847070693969727, + 0.003823402337729931, + 0.01139930821955204, + 0.007137939799576998, + -0.014777504839003086, + 0.011337710544466972, + -0.0320684053003788, + -0.012343778274953365, + 0.006336478050798178, + 0.021915212273597717, + 0.01496200729161501, + -0.028678670525550842, + 0.029021097347140312, + 0.052840858697891235, + -0.062490127980709076, + 0.06768994778394699, + 0.11007272452116013, + -0.010065789334475994, + 0.051830124109983444, + 0.007618391886353493, + -0.009567624889314175, + 0.03614749386906624, + 0.014191601425409317, + -0.03210587799549103, + 0.023880407214164734, + -0.08015827089548111, + 0.02908986061811447, + 0.011275441385805607, + -2.0923017984841863e-08, + -0.029860863462090492, + -0.04065137729048729, + 0.017483532428741455, + -0.03334077447652817, + 0.05937632918357849, + 0.04030713438987732, + -0.016264798119664192, + 0.02285047620534897, + -0.05478416755795479, + 0.03315252438187599, + 0.0923374816775322, + -0.014605402946472168, + -0.10891204327344894, + -0.043620720505714417, + -0.030242614448070526, + -0.0497061125934124, + 0.015327520668506622, + 0.054745763540267944, + 0.016315924003720284, + -0.0763493999838829, + -0.04548395052552223, + 0.004486936144530773, + 0.06588301062583923, + -0.002123266225680709, + 0.051047977060079575, + -0.039984188973903656, + -0.04487846419215202, + 0.0252388846129179, + 0.015637045726180077, + 0.008191613480448723, + 0.0033211223781108856, + 0.03186452388763428, + 0.0409347265958786, + -0.06489866226911545, + -0.04976334422826767, + -0.0382738932967186, + -0.032670654356479645, + 0.006041542626917362, + -0.021794477477669716, + 0.1051936149597168, + -0.06355473399162292, + 0.017854582518339157, + -0.04205835610628128, + 0.01911151595413685, + 0.044519681483507156, + 0.07411748170852661, + 0.04894513264298439, + 0.06572828441858292, + -0.008327284827828407, + -0.07510495185852051, + -0.05645526573061943, + -0.0623176135122776, + 0.051469311118125916, + -0.004050510469824076, + -0.02102506160736084, + 0.042790092527866364, + -0.015085368417203426, + 0.07697972655296326, + -0.0265714880079031, + 0.022823592647910118, + 0.08016963303089142, + -0.021836085245013237, + -0.03136681392788887, + -0.06984631717205048 + ], + "chart-bar-horizontal-bold||graphs,graphing,charts,statistics,histogram,analyze,analysis": [ + 0.02007933519780636, + -0.030819479376077652, + -0.017888233065605164, + -0.04902903735637665, + -0.03598109260201454, + -0.029665449634194374, + -0.03389384225010872, + 0.04105910658836365, + -0.019135113805532455, + 0.055545609444379807, + 0.018445787951350212, + -0.013172326609492302, + 0.08905266225337982, + 0.005198472645133734, + 0.0024431056808680296, + 0.02346341870725155, + 0.02666350267827511, + -0.05547885596752167, + 0.030459905043244362, + -0.056904878467321396, + -0.02258063293993473, + -0.019686564803123474, + -0.022334802895784378, + -0.045078545808792114, + 0.07868699729442596, + 0.010422039777040482, + -0.009368921630084515, + -0.011590261943638325, + 0.04713574796915054, + -0.059702131897211075, + -0.046595536172389984, + -0.01826687529683113, + 0.1524609476327896, + 0.015441040508449078, + -0.05224360153079033, + -0.05722799524664879, + 0.06580454111099243, + 0.0015193629078567028, + 0.044392406940460205, + 0.12154699116945267, + -0.04283248260617256, + -0.0059770080260932446, + 0.005084124859422445, + 0.03156416490674019, + 0.021404821425676346, + -0.007428111508488655, + -0.1222735196352005, + -0.04002736136317253, + 0.007484270725399256, + 0.05354400351643562, + -0.08813178539276123, + -0.062235165387392044, + -0.10196993499994278, + -0.006574391853064299, + 0.05337558686733246, + -0.016528522595763206, + -0.0598202720284462, + -0.06878931820392609, + 0.11966966092586517, + -0.010293700732290745, + 0.04239679127931595, + 0.016368864104151726, + 9.628390216676053e-06, + 0.07865197956562042, + 0.10121067613363266, + 0.04834190756082535, + 0.007074764464050531, + 0.09835285693407059, + 0.03081378899514675, + 0.08724343031644821, + 0.03236640617251396, + -0.03312866389751434, + -0.06950115412473679, + -0.015453326515853405, + -0.00927257165312767, + -0.02401399053633213, + -0.03237120434641838, + 0.02249940112233162, + -0.04880652576684952, + -0.1635829508304596, + -0.062202755361795425, + -0.024240193888545036, + -0.011764871887862682, + 0.022391948848962784, + -0.010937126353383064, + 0.03335646167397499, + -0.07138580083847046, + -0.048325903713703156, + 0.005693851038813591, + 0.021640662103891373, + -0.04372287541627884, + 0.011350524611771107, + -0.06505837291479111, + 0.043357860296964645, + -0.04852252081036568, + 0.05512667074799538, + 0.015078461728990078, + -0.0429958775639534, + 0.03628705069422722, + 0.06528043746948242, + 0.06820280104875565, + -0.03047713078558445, + 0.024360373616218567, + 0.0036071997601538897, + -0.06873344630002975, + -0.0577358715236187, + 0.010086995549499989, + -0.007496777456253767, + 0.02141723781824112, + 0.03920431807637215, + -0.02112807333469391, + -0.02179013378918171, + -0.07695940881967545, + -0.014448462054133415, + -0.015872275456786156, + -0.039765916764736176, + -0.03290689364075661, + -0.004475755617022514, + 0.048239462077617645, + 0.058905720710754395, + -0.0224034134298563, + 0.08637798577547073, + 0.010330979712307453, + -0.02470347471535206, + -0.04038326442241669, + 0.004668898414820433, + -0.033860091120004654, + -1.9297260564564226e-33, + 0.00042501717689447105, + -0.06809070706367493, + -0.034253135323524475, + 0.08565488457679749, + 0.020879067480564117, + -0.003806778695434332, + -0.14513976871967316, + -0.05454746261239052, + -0.03568181023001671, + 0.04930543527007103, + 0.04209865629673004, + 0.14974923431873322, + -0.016999613493680954, + 0.08354228734970093, + 0.0933908149600029, + -0.011680379509925842, + 0.058893248438835144, + -0.0203954316675663, + -0.11792809516191483, + -0.06128848344087601, + -0.04391426593065262, + 0.007543579209595919, + 0.09481526166200638, + 0.026488158851861954, + 0.053168803453445435, + 0.02675475738942623, + 0.030648067593574524, + -0.005056001245975494, + -0.08148014545440674, + 0.034154120832681656, + -0.014910995028913021, + 0.03314056247472763, + 0.0022711690980941057, + -0.014108330011367798, + 0.006074062082916498, + -0.03045022301375866, + -0.058223165571689606, + -0.010447313077747822, + 0.014115639962255955, + 0.03129472956061363, + -0.10242871940135956, + -0.03341340646147728, + -0.048398904502391815, + -0.009621716104447842, + -0.02026725374162197, + 0.1300615668296814, + -0.006104546133428812, + -0.021348556503653526, + 0.06858336180448532, + 0.01562686078250408, + -0.10111905634403229, + 0.011763975955545902, + 0.03400755673646927, + -0.01630544289946556, + 0.0330398790538311, + 0.030958116054534912, + 0.024204039946198463, + 0.11420942097902298, + 0.0030116657726466656, + 0.008930111303925514, + 0.0035658932756632566, + 0.05030502751469612, + 0.06212040036916733, + -0.04697132855653763, + -0.040269993245601654, + 0.04549136012792587, + -0.12221340090036392, + 0.018586864694952965, + 0.06994844228029251, + -0.004157272167503834, + -0.04081469401717186, + 0.05351993069052696, + 0.017325665801763535, + 0.03099396638572216, + 0.06751280277967453, + 0.03678150847554207, + -0.06535506248474121, + 0.0005070629995316267, + -0.07732132077217102, + -0.02034314163029194, + -0.07628531754016876, + -0.1045805811882019, + -0.030779637396335602, + -0.014464570209383965, + -0.013081543147563934, + -0.05355912074446678, + 0.06718811392784119, + 0.005034187342971563, + -0.0428684800863266, + 0.004636063240468502, + -0.1194302886724472, + 0.024230221286416054, + -0.01878107339143753, + -0.024231715127825737, + -0.03627360239624977, + -1.6810092679086812e-33, + -0.061449602246284485, + 0.10917546600103378, + 0.023799970746040344, + 0.05100500211119652, + 0.0032096197828650475, + 0.05314179137349129, + 0.01471766084432602, + 0.028159666806459427, + 0.033359818160533905, + 0.08997509628534317, + 0.02323976159095764, + -0.07071269303560257, + -0.08025083690881729, + -0.03246645629405975, + -0.043727003037929535, + 0.020825477316975594, + -0.04139174520969391, + -0.012923737056553364, + -0.14401639997959137, + -0.02421090565621853, + -0.060292743146419525, + 0.02636370062828064, + -0.09952758252620697, + 0.018472466617822647, + 0.022962870076298714, + 0.0662950947880745, + -0.041701316833496094, + -0.059094082564115524, + -0.05099882930517197, + -0.022007998079061508, + -0.06396053731441498, + -0.02491805888712406, + 0.03756575286388397, + -0.029962055385112762, + -0.0506763719022274, + 0.03630247339606285, + 0.11713851988315582, + -0.028711657971143723, + -0.013647951185703278, + -0.026259541511535645, + 0.03816898167133331, + 0.034340888261795044, + 0.048243895173072815, + -0.06189899519085884, + -0.032454244792461395, + 0.05806879699230194, + -0.05178806185722351, + -0.00435787346214056, + -0.0410970039665699, + 0.03286891430616379, + 0.0177011638879776, + 0.07453957945108414, + 0.06183452904224396, + -0.0012933025136590004, + 0.005110220983624458, + -0.10994501411914825, + 0.04409593716263771, + 0.03690563142299652, + -0.0947604849934578, + 0.039402615278959274, + -0.03847281262278557, + -0.009899478405714035, + -0.020375702530145645, + -0.0011855465127155185, + -0.018908891826868057, + -0.03586738556623459, + 0.020908048376441002, + -0.1015959158539772, + 0.008569407276809216, + 0.007844450883567333, + 0.012738216668367386, + 0.0035186416935175657, + 0.01450365036725998, + -0.041117191314697266, + -0.008235156536102295, + 0.004568412434309721, + 0.013717864640057087, + 0.01089561078697443, + -0.0300169438123703, + 0.011378781870007515, + 0.0332694910466671, + -0.07290232926607132, + 0.06482819467782974, + 0.11757010221481323, + -0.024241764098405838, + 0.04627766087651253, + -0.0036257472820580006, + -0.011252299882471561, + 0.049662817269563675, + 0.009143952280282974, + -0.029636578634381294, + 0.013649160042405128, + -0.08082154393196106, + 0.03568632900714874, + 0.024227578192949295, + -2.140091659441623e-08, + -0.020020287483930588, + -0.055888738483190536, + 0.028897512704133987, + -0.03249984607100487, + 0.048222482204437256, + 0.05038278177380562, + -0.008356612175703049, + 0.027330204844474792, + -0.03777679428458214, + 0.03112529218196869, + 0.09505683183670044, + -0.0099678635597229, + -0.10084959864616394, + -0.03247557953000069, + -0.02806936949491501, + -0.05602407827973366, + 0.021426763385534286, + 0.07168418914079666, + 0.029105523601174355, + -0.07248460501432419, + -0.03313448280096054, + -0.00018857367103919387, + 0.05566917359828949, + 0.01716955192387104, + 0.05525638163089752, + -0.02983507700264454, + -0.049351710826158524, + 0.03131631389260292, + 0.015253700315952301, + 0.010984445922076702, + -0.0018636926542967558, + 0.035646796226501465, + 0.032176218926906586, + -0.06767881661653519, + -0.03967665135860443, + -0.030821196734905243, + -0.029205620288848877, + 0.014802997931838036, + -0.013639386743307114, + 0.09498824924230576, + -0.05683989077806473, + 0.021804019808769226, + -0.0416584350168705, + 0.01560010202229023, + 0.06200678274035454, + 0.06623866409063339, + 0.039193205535411835, + 0.07388439029455185, + -0.0023116255179047585, + -0.07237473875284195, + -0.05985536798834801, + -0.05430025979876518, + 0.05753478407859802, + -0.001981007633730769, + -0.010987638495862484, + 0.05495248734951019, + -0.010255923494696617, + 0.05621315911412239, + -0.03032534196972847, + 0.01480068638920784, + 0.0978330746293068, + -0.01444080751389265, + -0.030828386545181274, + -0.06316937506198883 + ], + "chart-donut-bold||graphs,graphing,charts,statistics,analyze,analysis,circle": [ + 0.01692303456366062, + -0.013170255348086357, + -0.02117360197007656, + 0.00011308804096188396, + 0.030450349673628807, + -0.05714017152786255, + -0.008512647822499275, + 0.06457802653312683, + 0.04642016068100929, + 0.02547796443104744, + 0.013318093493580818, + -0.007029199972748756, + 0.06175762787461281, + 0.015461238101124763, + 0.011608442291617393, + 0.024327822029590607, + 0.02389264851808548, + -0.01331869326531887, + 0.043417949229478836, + -0.0457400307059288, + -0.015300092287361622, + 0.021863233298063278, + 0.03709722310304642, + 0.006036245729774237, + 0.09106463193893433, + -0.027304161339998245, + -0.007647766266018152, + 0.005485596135258675, + 0.06131171062588692, + -0.03808772563934326, + -0.08769495040178299, + 0.012316770851612091, + 0.10212091356515884, + 0.03317449986934662, + -0.04022817313671112, + -0.001086086849682033, + 0.04242122918367386, + 0.03215303644537926, + 0.022795971482992172, + 0.09920821338891983, + -0.018855515867471695, + -0.012069267220795155, + 0.013643179088830948, + 0.006409769877791405, + 0.0195617638528347, + -0.001307228347286582, + -0.16244174540042877, + -0.05082939565181732, + -0.03191318362951279, + 0.06523577123880386, + -0.10278412699699402, + -0.06367731094360352, + -0.10021045058965683, + -0.03782624751329422, + 0.08569110929965973, + -0.007532709278166294, + -0.06552425771951675, + -0.04786083474755287, + 0.10342702269554138, + 0.003576112212613225, + 0.03845228999853134, + -0.00858190469443798, + 0.00371625111438334, + 0.07608992606401443, + 0.07713694870471954, + 0.03267545625567436, + -0.009651030413806438, + 0.0753047913312912, + -0.005113379098474979, + 0.09160129725933075, + -0.0023729444947093725, + -0.012448414228856564, + -0.07081994414329529, + -0.03726372495293617, + -0.012528038583695889, + 0.04738932102918625, + -0.059237200766801834, + 0.02547590062022209, + -0.07321824133396149, + -0.13165996968746185, + -0.0506095252931118, + -0.029601003974676132, + -0.03932884335517883, + 0.04230882599949837, + -0.022078610956668854, + 0.03545418381690979, + -0.053650759160518646, + -0.06376383453607559, + -0.012689482420682907, + -0.05364711955189705, + -0.06777883321046829, + -0.012491647154092789, + -0.09042464941740036, + 0.05341799557209015, + -0.029827972874045372, + 0.05725264549255371, + 0.014086738228797913, + -0.052884891629219055, + -0.0015634010778740048, + 0.09280460327863693, + 0.041398998349905014, + -0.039672743529081345, + 0.04887347295880318, + 0.028009451925754547, + -0.1022099032998085, + -0.08086512982845306, + 0.005296496674418449, + -0.020547326654195786, + 0.014481859281659126, + 0.006165710743516684, + 0.009437738917768002, + -0.034200653433799744, + -0.03145280107855797, + 0.018080325797200203, + 0.012839175760746002, + -0.0674641951918602, + -0.025644388049840927, + -0.032769158482551575, + 0.08016111701726913, + 0.07336550951004028, + 0.011545843444764614, + 0.031019797548651695, + -0.004170228727161884, + -0.008729117922484875, + -0.022545594722032547, + -0.02344108559191227, + 0.007711973041296005, + -2.3694715136013323e-33, + 0.06954352557659149, + 0.01520850695669651, + -0.033525947481393814, + 0.08115684986114502, + -0.019172584637999535, + 0.0033639119938015938, + -0.11556482315063477, + -0.036626845598220825, + -0.02024303935468197, + 0.09404539316892624, + 0.04561121389269829, + 0.11909642070531845, + -0.009341424331068993, + 0.10922696441411972, + 0.08915559947490692, + -0.018398674204945564, + 0.12632566690444946, + -0.012013479135930538, + -0.07841157168149948, + -0.08378013968467712, + -0.036250337958335876, + 0.05682973563671112, + 0.03040206991136074, + 0.039688583463430405, + 0.03372589498758316, + 0.044471632689237595, + 0.02405889332294464, + -0.05151444301009178, + -0.07412094622850418, + 0.018194692209362984, + 0.02441212348639965, + 0.04889075458049774, + 0.009254701435565948, + 0.05589595064520836, + 0.022254450246691704, + -0.00048335062456317246, + -0.09194260090589523, + 0.01618449203670025, + -0.01125329826027155, + 0.002416708506643772, + -0.08826430141925812, + -0.02009367197751999, + -0.018836094066500664, + -0.021403247490525246, + 0.014445077627897263, + 0.1266624480485916, + -0.0017987997271120548, + -0.04270746931433678, + 0.06051286682486534, + 0.027595149353146553, + -0.0843014121055603, + 0.017695678398013115, + 0.024881374090909958, + 0.016844620928168297, + 0.02151464857161045, + -0.024736255407333374, + 0.023484105244278908, + 0.056714195758104324, + -0.028655866160988808, + 0.029685385525226593, + -0.031327396631240845, + 0.036235105246305466, + 0.0069337389431893826, + -0.07875041663646698, + -0.07579636573791504, + 0.07572801411151886, + -0.14594191312789917, + -0.010352399200201035, + 0.08942339569330215, + -0.002356947399675846, + -0.033152636140584946, + 0.12328769266605377, + 0.0018723402172327042, + 0.04423397034406662, + 0.026147568598389626, + 0.03487458825111389, + -0.04024605080485344, + -0.03479497879743576, + -0.024996943771839142, + -0.034420810639858246, + -0.07954885065555573, + -0.11668030917644501, + -0.0475144162774086, + -0.027448341250419617, + -0.032894499599933624, + -0.0761902928352356, + 0.044057127088308334, + 0.017547236755490303, + 0.0285834688693285, + 0.010527977719902992, + -0.11997939646244049, + 0.015036895871162415, + -0.030377252027392387, + 0.0061052958481013775, + -0.05917488783597946, + -3.091041374013901e-34, + -0.06328129023313522, + 0.08708604425191879, + 0.022410772740840912, + 0.07917453348636627, + 0.019307270646095276, + 0.041517339646816254, + -0.01125319954007864, + -0.005977062042802572, + 0.03479171544313431, + 0.04286707192659378, + 0.036571014672517776, + -0.09290794283151627, + -0.046210017055273056, + -0.024754488840699196, + 0.020277362316846848, + -0.014600949361920357, + -0.04013463482260704, + 0.011537931859493256, + -0.1045793890953064, + 0.028613906353712082, + -0.10532384365797043, + 0.03752142935991287, + -0.11201735585927963, + -0.016647344455122948, + 0.0579741969704628, + 0.12443018704652786, + -0.035423118621110916, + -0.0906236469745636, + -0.07366012036800385, + 0.027411257848143578, + -0.0796414464712143, + -0.03311902657151222, + 0.02853136509656906, + 0.003935357555747032, + -0.016992319375276566, + 0.06503868848085403, + 0.09893457591533661, + 0.0063795107416808605, + -0.04182599112391472, + -0.020644526928663254, + -0.002231096150353551, + -0.008344403468072414, + 0.041000332683324814, + -0.03292893245816231, + -0.030414383858442307, + 0.028854943811893463, + -0.022395646199584007, + -0.020334675908088684, + -0.0297293309122324, + 0.03750103339552879, + 0.027780583128333092, + 0.05776822939515114, + 0.09638288617134094, + -0.047328557819128036, + -0.032004304230213165, + -0.09091032296419144, + 0.045816753059625626, + 0.041579101234674454, + -0.08466017991304398, + 0.02931368350982666, + -0.029579078778624535, + -0.00398198002949357, + -0.0101207559928298, + 0.003853191388770938, + -0.052445415407419205, + -0.06981593370437622, + -4.446284219739027e-05, + -0.065179243683815, + -0.00911401491612196, + 0.0346454493701458, + -0.028495725244283676, + 0.014309510588645935, + 0.0004611515032593161, + -0.05944085493683815, + 0.017389772459864616, + -0.050313279032707214, + 0.013785358518362045, + 0.004708294291049242, + -0.022235022857785225, + 0.04933902993798256, + 0.011757230386137962, + 0.017062455415725708, + 0.00966443307697773, + 0.09302674978971481, + 0.014878034591674805, + 0.08312700688838959, + -0.008119209669530392, + -0.007057576440274715, + 0.04565892741084099, + -0.0014325585216283798, + -0.034691181033849716, + 0.06100235879421234, + -0.07723647356033325, + 0.03793714940547943, + 0.024441730231046677, + -2.0365765962537807e-08, + -0.01690971478819847, + -0.03879709169268608, + 0.0006389484624378383, + 0.002382664242759347, + 0.0745929628610611, + -0.0383535698056221, + 0.019197305664420128, + 0.01787286438047886, + -0.08320838958024979, + 0.061195846647024155, + 0.06437834352254868, + 0.026241935789585114, + -0.12568064033985138, + -0.08045720309019089, + -0.0008421383681707084, + -0.037705421447753906, + 0.02866208925843239, + 0.01619340106844902, + 0.014132929965853691, + -0.04361646994948387, + -0.013980972580611706, + -0.007534870412200689, + 0.04542623087763786, + -0.025663962587714195, + 0.04376669600605965, + -0.05970773473381996, + -0.03302629664540291, + 0.01583368144929409, + 0.00444129528477788, + 0.03493375703692436, + 0.03195476531982422, + 0.02871416136622429, + -0.0005986286560073495, + -0.01686321385204792, + -0.03849710524082184, + -0.045103929936885834, + -0.007826312445104122, + 0.03430650755763054, + -0.011880152858793736, + 0.11840737611055374, + -0.060865625739097595, + 0.051951467990875244, + -0.00903474073857069, + 0.015062572434544563, + 0.019914938136935234, + 0.04898799955844879, + 0.005982263945043087, + 0.010711942799389362, + -0.004593984689563513, + -0.06838544458150864, + -0.09996409714221954, + -0.04771771654486656, + 0.0375533364713192, + 0.03647630289196968, + 0.024673013016581535, + 0.0025825221091508865, + 0.020404666662216187, + 0.0655374750494957, + -0.06474418938159943, + 0.0036434128414839506, + 0.056016623973846436, + -0.017430860549211502, + 0.010415754280984402, + -0.0833183005452156 + ], + "chart-line-bold||graphs,graphing,charts,statistics,analyze,analysis,stocks": [ + -0.017464926466345787, + -0.05933225154876709, + -0.04287068918347359, + 0.031545091420412064, + 0.021133575588464737, + -0.00785173662006855, + -0.004976922646164894, + 0.021377788856625557, + -0.009383218362927437, + 0.03364526480436325, + -0.009130695834755898, + 0.03073079325258732, + 0.0060733468271791935, + 0.0015099563170224428, + -0.01954905316233635, + 0.05632685124874115, + -0.00032532517798244953, + -0.019342724233865738, + 0.025607598945498466, + -0.030679667368531227, + -0.04502561688423157, + -0.03291652351617813, + -0.004763666074723005, + 0.010337908752262592, + 0.08519183844327927, + -0.006851010490208864, + 0.027622541412711143, + 0.03870853781700134, + 0.024839356541633606, + -0.0875048115849495, + -0.071649931371212, + -0.011737640015780926, + 0.11924003809690475, + 0.05438501760363579, + -0.009671698324382305, + -0.004594856407493353, + 0.05341360718011856, + 0.010654548183083534, + 0.06069263070821762, + 0.09656528383493423, + -0.006206288933753967, + -0.04960942640900612, + -0.006029554642736912, + 0.001977871870622039, + 0.02838488481938839, + -0.02811555750668049, + -0.11523213237524033, + -0.0180685855448246, + 0.0460561066865921, + 0.047796837985515594, + -0.10557117313146591, + -0.04874700307846069, + -0.12221237272024155, + -0.02227453514933586, + 0.028778713196516037, + 0.0006805169396102428, + -0.0694543868303299, + -0.03924167901277542, + 0.08885716646909714, + -0.026335226371884346, + 0.0453370101749897, + 0.004937002435326576, + 0.01802067831158638, + 0.07318740338087082, + 0.08039882779121399, + 0.07173549383878708, + 0.0031521767377853394, + 0.12773020565509796, + -0.0012816948583349586, + 0.088785320520401, + 0.02255508117377758, + -0.03551764786243439, + -0.11915825307369232, + -0.029718004167079926, + -0.030025726184248924, + 0.01894899271428585, + 0.0026230073999613523, + 0.011106597259640694, + -0.047313228249549866, + -0.12561391294002533, + -0.05626776069402695, + -0.0524030476808548, + -0.038387175649404526, + 0.02820694074034691, + -0.05471842363476753, + 0.044383127242326736, + -0.0403374545276165, + -0.08399651199579239, + 0.04019278660416603, + -0.009497483260929585, + -0.05612482503056526, + 0.0029483966063708067, + -0.03041437268257141, + 0.048942387104034424, + -0.045885730534791946, + 0.07724938541650772, + 0.019219333305954933, + -0.06729093939065933, + 0.014725490473210812, + 0.06060074269771576, + 0.07148130983114243, + -0.02476182021200657, + 0.009015567600727081, + 0.047168560326099396, + -0.09063659608364105, + -0.0429520420730114, + 0.0222020260989666, + -0.009762773290276527, + 0.012524123303592205, + 0.010999204590916634, + -0.004984638653695583, + 0.02199810929596424, + -0.06799450516700745, + -0.013218858279287815, + -0.036175064742565155, + -0.0699448436498642, + -0.047646231949329376, + -0.027265580371022224, + 0.08960970491170883, + 0.10699999332427979, + -0.0017867980059236288, + 0.07216749340295792, + 0.005688697565346956, + -0.03144234046339989, + -0.031217794865369797, + 0.012417630292475224, + -0.010148290544748306, + -1.9549483081342302e-33, + 0.00714190723374486, + -0.008727611042559147, + 0.006151548586785793, + 0.08921824395656586, + 0.007873065769672394, + 0.03421444073319435, + -0.13234932720661163, + -0.046996958553791046, + -0.0714709460735321, + 0.08705636858940125, + 0.008939058519899845, + 0.11221429705619812, + -0.014529642648994923, + 0.055852144956588745, + 0.0886547714471817, + -0.021525364369153976, + 0.07012805342674255, + -0.02908390946686268, + -0.06304877251386642, + -0.05082233250141144, + -0.04360351338982582, + 0.003641596296802163, + 0.029128286987543106, + 0.018856417387723923, + 0.04357885196805, + -0.027446523308753967, + -0.006609226111322641, + 0.006516839377582073, + -0.07286878675222397, + 0.019465450197458267, + 0.024236062541604042, + 0.054812680929899216, + -0.012838035821914673, + -0.0035116656217724085, + -0.0407949835062027, + -0.006204620469361544, + -0.09579142928123474, + -0.012901236303150654, + 0.0280465055257082, + 0.018962588161230087, + -0.10608967393636703, + 0.004818008281290531, + -0.022229665890336037, + -0.027401108294725418, + -0.026986094191670418, + 0.1332177370786667, + -0.023099523037672043, + -0.026364384219050407, + 0.06895749270915985, + 0.01632525958120823, + -0.12274179607629776, + -0.016109982505440712, + 0.04376181960105896, + -0.02667069248855114, + 0.040170732885599136, + -0.0016595954075455666, + 0.026313291862607002, + 0.03170495107769966, + -0.03520500287413597, + -0.008218360133469105, + -0.010066211223602295, + 0.02255169488489628, + 0.016751572489738464, + -0.060109611600637436, + -0.07841580361127853, + 0.10625320672988892, + -0.08238216489553452, + 0.04606997221708298, + 0.042931776493787766, + 0.048247162252664566, + -0.03196026757359505, + 0.07260999083518982, + 0.04519737884402275, + 0.01269818190485239, + 0.07876806706190109, + 0.03247567266225815, + -0.061569780111312866, + -0.015376398339867592, + -0.017633875831961632, + -0.025579994544386864, + -0.05908496305346489, + -0.09437885135412216, + -0.0115407919511199, + 0.0515160970389843, + -0.0010837926529347897, + -0.03406933322548866, + 0.03110201470553875, + -0.014806818217039108, + 0.0296789463609457, + 0.02215704135596752, + -0.12537644803524017, + 0.0284865815192461, + -0.035399362444877625, + -0.022751377895474434, + -0.08049847930669785, + -1.1354648192504538e-33, + -0.04170480743050575, + 0.08774358779191971, + 0.028045866638422012, + 0.05541559308767319, + -0.0013696968089789152, + 0.05840001627802849, + -0.009206709451973438, + 0.011203647591173649, + 0.05279512330889702, + 0.1307266652584076, + 0.048464395105838776, + -0.056284427642822266, + -0.0708947628736496, + -0.009139263071119785, + -0.026510389521718025, + -0.0058348351158201694, + -0.03413378447294235, + -0.017111515626311302, + -0.08624610304832458, + -0.04128432273864746, + -0.07678152620792389, + -0.0012301605893298984, + -0.0701131671667099, + 0.016369342803955078, + 0.08116046339273453, + 0.05258864909410477, + -0.034951016306877136, + -0.045532915741205215, + -0.07904669642448425, + -0.00519283302128315, + -0.07105036824941635, + -0.020152010023593903, + 0.01871134340763092, + 0.0030274703167378902, + -0.04837855324149132, + 0.07714353501796722, + 0.12331293523311615, + -0.009632314555346966, + 0.0012346674920991063, + -0.02317202277481556, + -0.00493101729080081, + 0.026067784056067467, + 0.04619970917701721, + -0.03697595372796059, + -0.032473884522914886, + 0.02659115195274353, + -0.03535028174519539, + 0.004423088394105434, + -0.040913473814725876, + 0.06781160086393356, + -0.02436833456158638, + 0.07690570503473282, + 0.07775112241506577, + 0.017340296879410744, + -0.09456472098827362, + -0.08720480650663376, + 0.04605761915445328, + 0.04661165922880173, + -0.10164143890142441, + 0.043449778109788895, + -0.029552452266216278, + 0.022523315623402596, + -0.03866178169846535, + 0.02006654627621174, + -0.028842560946941376, + -0.06505639106035233, + 0.010333359241485596, + -0.10456022620201111, + 0.021489769220352173, + -0.00733970245346427, + 0.03666452690958977, + -0.01909244991838932, + -0.00026700994931161404, + -0.021400736644864082, + -0.000796716078184545, + 0.01659970171749592, + 0.0393405556678772, + 0.03837954252958298, + -0.007629081141203642, + 0.044523563235998154, + 0.05614618584513664, + 0.005938877817243338, + 0.013129874132573605, + 0.11960235238075256, + -0.021358070895075798, + 0.08849625289440155, + -0.004213943611830473, + 0.002952049020677805, + 0.056592702865600586, + -0.025624742731451988, + -0.05000986158847809, + -0.01721862331032753, + -0.08921081572771072, + 0.027895959094166756, + -0.026289096102118492, + -1.8857100769764656e-08, + -0.06169354170560837, + -0.05183171480894089, + 0.033979807049036026, + -0.017127884551882744, + 0.05906489118933678, + 0.005404832772910595, + 0.039239853620529175, + 0.011639241129159927, + -0.05017183721065521, + 0.051017876714468, + 0.06547193229198456, + 0.01765568181872368, + -0.1293669044971466, + -0.030266180634498596, + -0.026520658284425735, + -0.059103965759277344, + -0.016994794830679893, + 0.03063846193253994, + 0.014150824397802353, + -0.056400008499622345, + -0.012166027911007404, + 0.004101949278265238, + 0.05525056645274162, + 0.02843177132308483, + 0.08844022452831268, + -0.06219852715730667, + -0.009622219018638134, + 0.022345347329974174, + 0.005355398636311293, + 0.0683748796582222, + 0.007003605365753174, + 0.015302319079637527, + 0.06185111030936241, + -0.02498619444668293, + -0.0473056398332119, + -0.04536044970154762, + 0.007213564123958349, + 0.026709672063589096, + -0.05322875827550888, + 0.10095103830099106, + -0.06922971457242966, + 0.04380368813872337, + -0.015885338187217712, + 0.0008591519435867667, + 0.04804588481783867, + 0.03165252134203911, + -0.0005419899825938046, + 0.03939620032906532, + 0.02173653431236744, + -0.13297298550605774, + -0.043239206075668335, + -0.07853783667087555, + 0.0373036153614521, + 0.017768479883670807, + -0.022919414564967155, + 0.014985877089202404, + -0.0024458658881485462, + 0.06299107521772385, + -0.05815241113305092, + -0.023310236632823944, + 0.09227251261472702, + -0.06813092529773712, + -0.013452690094709396, + -0.05708149075508118 + ], + "chart-line-down-bold||*updated*,graphs,graphing,charts,statistics,analyze,analysis,stocks": [ + -0.022861452773213387, + -0.0465448834002018, + -0.03423980623483658, + 0.024998430162668228, + 0.011042631231248379, + -0.022066116333007812, + -0.017268570140004158, + 0.024611350148916245, + -0.026074517518281937, + 0.04306870698928833, + -0.010505316779017448, + 0.044084545224905014, + -0.00354743585921824, + -0.021302158012986183, + -0.03914705663919449, + 0.040087632834911346, + 0.011284982785582542, + 0.004784173797816038, + 0.01785246655344963, + -0.036708809435367584, + -0.07152707129716873, + -0.021394366398453712, + -0.012390396557748318, + 0.027128171175718307, + 0.07148237526416779, + 0.0003399997076485306, + 0.0086466483771801, + 0.03192318230867386, + 0.01175747811794281, + -0.08175335079431534, + -0.10822469741106033, + -0.006441717967391014, + 0.12945912778377533, + 0.04690052568912506, + -0.017682576552033424, + -0.009492146782577038, + 0.05932929739356041, + 0.02067224122583866, + 0.07143421471118927, + 0.10310481488704681, + -0.012351005338132381, + -0.06639804691076279, + -0.025474930182099342, + 0.0057120537385344505, + 0.013006558641791344, + -0.024946587160229683, + -0.11977430433034897, + -0.0320037342607975, + 0.021948065608739853, + 0.062353234738111496, + -0.09893546253442764, + -0.03194180503487587, + -0.1250694990158081, + -0.013646375387907028, + 0.04195190221071243, + 0.010313591919839382, + -0.04753391444683075, + -0.03488815203309059, + 0.08314213901758194, + -0.023134568706154823, + 0.05506167188286781, + 0.007637225091457367, + -0.0008779569761827588, + 0.07663983851671219, + 0.05808490887284279, + 0.06473959982395172, + 0.00019731470092665404, + 0.09090463817119598, + 0.005142186768352985, + 0.08291086554527283, + 0.024706751108169556, + -0.037966951727867126, + -0.1074419841170311, + -0.048151448369026184, + -0.051021985709667206, + 0.00996331125497818, + 0.008080202154815197, + 0.013710208237171173, + -0.031131941825151443, + -0.1257956176996231, + -0.04615113511681557, + -0.027339305728673935, + -0.041911594569683075, + 0.04031825438141823, + -0.05392343923449516, + 0.030179090797901154, + -0.026984719559550285, + -0.06876953691244125, + 0.02660781517624855, + -0.031172502785921097, + -0.029681410640478134, + -0.014341327361762524, + -0.024160169064998627, + 0.04349862039089203, + -0.08464336395263672, + 0.07899271696805954, + 0.020773855969309807, + -0.08777927607297897, + 0.010728550143539906, + 0.07242270559072495, + 0.0633113831281662, + -0.01229785941541195, + 0.01099422387778759, + 0.03503875434398651, + -0.10854179412126541, + -0.041343461722135544, + 0.01926809549331665, + 0.0024371130857616663, + 0.019957026466727257, + 0.0245658028870821, + -0.00649262173101306, + 0.0265521053224802, + -0.06514889001846313, + -0.02848629094660282, + -0.03601815551519394, + -0.05287999287247658, + -0.041632115840911865, + -0.029576120898127556, + 0.06830357760190964, + 0.10898923873901367, + 0.012575709261000156, + 0.06500623375177383, + 0.0030018589459359646, + -0.040808793157339096, + -0.0357993058860302, + 0.0019829305820167065, + -0.022846190258860588, + -1.771829614492142e-33, + 0.017548682168126106, + -0.018215114250779152, + 0.010663488879799843, + 0.09015417098999023, + -0.0013660065596923232, + 0.01813742145895958, + -0.14557744562625885, + -0.07161825895309448, + -0.07044067978858948, + 0.08291565626859665, + 0.032727960497140884, + 0.13807722926139832, + -0.03710772842168808, + 0.07609826326370239, + 0.05755903944373131, + -0.04170582816004753, + 0.06831865012645721, + -0.011048462241888046, + -0.041070375591516495, + -0.04508528858423233, + -0.03529057651758194, + 0.003398131113499403, + 0.01399211585521698, + 0.01346906740218401, + 0.07265777140855789, + -0.014631886035203934, + -0.017416207119822502, + -0.0019058599136769772, + -0.08321822434663773, + 0.01745198853313923, + 0.023333122953772545, + 0.03780965879559517, + -0.001151452073827386, + -0.021006068214774132, + -0.037863731384277344, + 0.0023749959655106068, + -0.12517458200454712, + -0.013576822355389595, + 0.011129958555102348, + -0.0016059150220826268, + -0.10441924631595612, + -0.012430514208972454, + -0.059472959488630295, + -0.025247428566217422, + -0.008891688659787178, + 0.106977678835392, + -0.028110625222325325, + -0.04410294070839882, + 0.06736406683921814, + 0.0021761409007012844, + -0.12348437309265137, + -0.021242476999759674, + 0.01472021359950304, + -0.029610401019454002, + 0.01296578161418438, + 0.006551436148583889, + 0.019427534192800522, + 0.03212176263332367, + -0.0232221819460392, + -0.009602426551282406, + 0.007189276162534952, + 0.0068735103122889996, + 0.0037465719506144524, + -0.05849858745932579, + -0.08584039658308029, + 0.09786451607942581, + -0.08045363426208496, + 0.0362713448703289, + 0.03620307520031929, + 0.07971035689115524, + -0.05851168930530548, + 0.05876593664288521, + 0.04789189621806145, + 0.043154649436473846, + 0.060641273856163025, + 0.02587256208062172, + -0.06452403962612152, + -0.02517988346517086, + -0.004415478091686964, + -0.026729069650173187, + -0.051251430064439774, + -0.08866872638463974, + -0.022005366161465645, + 0.03806227073073387, + 0.011624999344348907, + -0.03612266108393669, + 0.037537582218647, + -0.002613906981423497, + 0.020595408976078033, + -0.002019023522734642, + -0.14365512132644653, + 0.031046228483319283, + -0.03963029757142067, + -0.03499210625886917, + -0.07356587052345276, + -1.75071902164832e-33, + -0.03844607248902321, + 0.0635169968008995, + 0.0022643194533884525, + 0.053194787353277206, + -0.022138336673378944, + 0.06182442978024483, + 0.003215333679690957, + 0.037538863718509674, + 0.06927799433469772, + 0.12690220773220062, + 0.05376351252198219, + -0.04193967953324318, + -0.05898664519190788, + -0.021977078169584274, + -0.025870921090245247, + 0.025405289605259895, + -0.0260146576911211, + -0.00942735280841589, + -0.08314016461372375, + -0.02936186082661152, + -0.08209075033664703, + 0.00020847808627877384, + -0.08819665759801865, + 0.02294977381825447, + 0.07920371741056442, + 0.04677881672978401, + -0.026433104649186134, + -0.016593240201473236, + -0.05368886888027191, + -0.03044387325644493, + -0.07936939597129822, + -0.03746265545487404, + 0.012408019974827766, + 0.029036272317171097, + -0.06093120947480202, + 0.06974281370639801, + 0.1247892677783966, + -0.00904233381152153, + -0.018239332363009453, + 0.0036159357987344265, + 0.001449292292818427, + 0.04971256107091904, + 0.08117836713790894, + -0.02036052569746971, + -0.015599112026393414, + 0.03817661479115486, + -0.0786547139286995, + 0.022482948377728462, + -0.04555605351924896, + 0.05748612433671951, + -0.009999020025134087, + 0.05713336542248726, + 0.0712079405784607, + 0.029410995543003082, + -0.06800049543380737, + -0.053334157913923264, + 0.04935050755739212, + 0.05901305004954338, + -0.11317887902259827, + 0.0624217614531517, + -0.0364423543214798, + 0.025814203545451164, + -0.02343977801501751, + 0.025581853464245796, + -0.03043760545551777, + -0.05919930711388588, + -0.006825372576713562, + -0.10887567698955536, + 0.005259760655462742, + -0.0046278913505375385, + 0.03068256750702858, + -0.020263835787773132, + -0.019154349341988564, + -0.043325819075107574, + 0.008169431239366531, + -0.024312902241945267, + 0.02700372226536274, + 0.04031584411859512, + 0.006060733925551176, + 0.02683628723025322, + 0.046662453562021255, + 0.019959159195423126, + 0.007856304757297039, + 0.1309557408094406, + -0.01644940860569477, + 0.08265665918588638, + -0.02340812236070633, + 0.034687869250774384, + 0.06423285603523254, + -0.023828009143471718, + -0.06576768308877945, + -0.03233882039785385, + -0.08298104256391525, + 0.048169564455747604, + -0.04328664392232895, + -2.0799205913135665e-08, + -0.032815124839544296, + -0.0426296591758728, + 0.02844921313226223, + -0.008546658791601658, + 0.06534015387296677, + 0.018114669248461723, + 0.027165962383151054, + 0.021156957373023033, + -0.029790731146931648, + 0.01044020988047123, + 0.07795657962560654, + 0.01026636641472578, + -0.11589410156011581, + -0.007159089669585228, + 0.0002850145101547241, + -0.04937220737338066, + -0.03538677096366882, + 0.036221832036972046, + 0.020791493356227875, + -0.082890585064888, + -0.0035621460992842913, + 0.01815514639019966, + 0.04474511370062828, + 0.046890176832675934, + 0.09566965699195862, + -0.054219748824834824, + -0.011963204480707645, + 0.05558168143033981, + -0.008393450640141964, + 0.05091064050793648, + 0.011519627645611763, + 0.030046485364437103, + 0.057015903294086456, + -0.027890538796782494, + -0.034674860537052155, + -0.017933854833245277, + 0.004347521346062422, + 0.036648888140916824, + -0.023342858999967575, + 0.1177680566906929, + -0.06718641519546509, + 0.026507306843996048, + -0.016796767711639404, + 0.005407541058957577, + 0.04397732764482498, + 0.028317924588918686, + -0.015085319057106972, + 0.03649182617664337, + 0.014311452396214008, + -0.12988168001174927, + -0.021657347679138184, + -0.06053538993000984, + 0.061987996101379395, + 0.028009600937366486, + -0.012481065467000008, + 0.028468303382396698, + 0.004422950558364391, + 0.041839275509119034, + -0.0502009242773056, + -0.02830618806183338, + 0.08846981078386307, + -0.0730668231844902, + -0.015993250533938408, + -0.03246353194117546 + ], + "chart-line-up-bold||*updated*,graphs,graphing,charts,statistics,analyze,analysis,stocks": [ + -0.0347115695476532, + -0.04695845767855644, + -0.04441037401556969, + 0.02042878046631813, + 0.025573933497071266, + -0.019145339727401733, + -0.03070477955043316, + 0.02181560918688774, + -0.027035726234316826, + 0.050488173961639404, + -0.009983289986848831, + 0.046350982040166855, + -0.013460930436849594, + -0.03549400717020035, + -0.03143201023340225, + 0.05370854586362839, + 0.007236693054437637, + 0.005729299038648605, + 0.011069092899560928, + -0.03953040391206741, + -0.07171586155891418, + -0.03345756605267525, + 0.00452057272195816, + 0.03260989859700203, + 0.07956425100564957, + -0.0027239867486059666, + 0.020288242027163506, + 0.03832364082336426, + 0.003153869416564703, + -0.06768631935119629, + -0.09074696898460388, + -0.0035603356081992388, + 0.12809249758720398, + 0.026671655476093292, + 0.00631388183683157, + -0.004929934162646532, + 0.07396890968084335, + 0.01230757124722004, + 0.05674130097031593, + 0.0926022157073021, + -0.024552172049880028, + -0.08315295726060867, + -0.02400311268866062, + -0.01236878614872694, + 0.024229710921645164, + -0.03082968480885029, + -0.1205608993768692, + -0.01329220924526453, + 0.031269948929548264, + 0.04263491928577423, + -0.1071842610836029, + -0.05331753194332123, + -0.12549422681331635, + -0.015359209850430489, + 0.03431117907166481, + 0.009121785871684551, + -0.06598684191703796, + -0.051363494247198105, + 0.09255203604698181, + -0.02724495343863964, + 0.03902703896164894, + 0.02030310221016407, + 0.024000316858291626, + 0.09498715400695801, + 0.07444959133863449, + 0.05621461942791939, + 0.0023915341589599848, + 0.10687744617462158, + 0.0060195112600922585, + 0.07796835899353027, + 0.02288905531167984, + -0.025837745517492294, + -0.11541542410850525, + -0.044202107936143875, + -0.03443989157676697, + 0.009526299312710762, + 0.0048424312844872475, + 0.006587378680706024, + -0.009355963207781315, + -0.12401807308197021, + -0.0652889683842659, + -0.03288856893777847, + -0.05057829990983009, + 0.030118076130747795, + -0.04432233050465584, + 0.028558090329170227, + -0.02832396700978279, + -0.067116379737854, + 0.021512703970074654, + -0.015229091048240662, + -0.028759710490703583, + -0.006786834914237261, + -0.017529336735606194, + 0.03700094670057297, + -0.07457157224416733, + 0.09054486453533173, + 0.010835167951881886, + -0.09095771610736847, + 0.016592498868703842, + 0.057503193616867065, + 0.06744031608104706, + -0.015847591683268547, + 0.007382155396044254, + 0.042604632675647736, + -0.10923182219266891, + -0.030348751693964005, + 0.015264864079654217, + 0.014307701960206032, + 0.019953269511461258, + 0.02269798517227173, + -0.013154277577996254, + 0.013326535932719707, + -0.0708913654088974, + -0.025405913591384888, + -0.0338103249669075, + -0.043103642761707306, + -0.05034220591187477, + -0.03157574310898781, + 0.07501732558012009, + 0.10118703544139862, + 0.015764856711030006, + 0.050970014184713364, + 0.004060555715113878, + -0.03067137859761715, + -0.043186210095882416, + -0.0011661467142403126, + -0.016874246299266815, + -1.8563083527239088e-33, + 0.017597505822777748, + -0.001063330564647913, + 0.011006146669387817, + 0.08975302428007126, + -0.011127137579023838, + 0.011996195651590824, + -0.1322391778230667, + -0.06670380383729935, + -0.06614428758621216, + 0.07924164086580276, + 0.01814563199877739, + 0.15883156657218933, + -0.02974049374461174, + 0.07495798170566559, + 0.061789754778146744, + -0.04206758737564087, + 0.0710735023021698, + 0.00975986197590828, + -0.03667675703763962, + -0.045826442539691925, + -0.032687775790691376, + -0.008094463497400284, + 0.02526722475886345, + 0.017107496038079262, + 0.06470689922571182, + -0.014785445295274258, + -0.025393648073077202, + 0.005947036202996969, + -0.091437429189682, + 0.01660020463168621, + 0.04508967325091362, + 0.03576907515525818, + -0.02055204100906849, + -0.01288355141878128, + -0.037880316376686096, + 0.0027361284010112286, + -0.10110927373170853, + -0.02246973291039467, + 0.012665858492255211, + 0.007224948611110449, + -0.10795722156763077, + -0.001843536039814353, + -0.04866756126284599, + -0.026971187442541122, + -0.0175556018948555, + 0.11907531321048737, + -0.05104762688279152, + -0.05120860040187836, + 0.08770442008972168, + -0.00101076893042773, + -0.11865764111280441, + -0.023743702098727226, + 0.02364233508706093, + -0.033803246915340424, + 0.009075377136468887, + 0.01349644549190998, + 0.024419214576482773, + 0.020853610709309578, + -0.013463019393384457, + -0.008846362121403217, + -0.0027330818120390177, + 0.012874949723482132, + 0.005690883379429579, + -0.044514723122119904, + -0.09795323014259338, + 0.09531773626804352, + -0.07234424352645874, + 0.03303372487425804, + 0.03539204224944115, + 0.0711665078997612, + -0.06134217604994774, + 0.06686358153820038, + 0.031414542347192764, + 0.06101394444704056, + 0.06719264388084412, + 0.010792150162160397, + -0.07299626618623734, + -0.02991027757525444, + -0.02033079043030739, + -0.007862478494644165, + -0.04416310414671898, + -0.08770552277565002, + -0.02782105840742588, + 0.030205022543668747, + 0.0027492130175232887, + -0.039163995534181595, + 0.02423841878771782, + -0.01093831192702055, + 0.01632256619632244, + 0.005427712108939886, + -0.1278492957353592, + 0.041388656944036484, + -0.03217599540948868, + -0.02834565006196499, + -0.06873360276222229, + -1.8482361962826137e-33, + -0.030353812500834465, + 0.07546243816614151, + 0.01215139776468277, + 0.034818388521671295, + -0.01615677960216999, + 0.07103729248046875, + 0.006104747299104929, + 0.03147399052977562, + 0.08496348559856415, + 0.10572822391986847, + 0.035282790660858154, + -0.03170253708958626, + -0.054001159965991974, + -0.029736699536442757, + -0.0262885931879282, + 0.022325415164232254, + -0.023057974874973297, + -0.0007835499127395451, + -0.08520533889532089, + -0.0331374891102314, + -0.07633733749389648, + -0.009005474857985973, + -0.0929354876279831, + 0.013310085982084274, + 0.0770469456911087, + 0.045553989708423615, + -0.03763598948717117, + -0.028080837801098824, + -0.05180336534976959, + -0.025678616017103195, + -0.06803848594427109, + -0.03647987172007561, + 0.0037564074154943228, + 0.03645102679729462, + -0.05029000714421272, + 0.06717219948768616, + 0.12889882922172546, + -0.03293825685977936, + -0.00027785112615674734, + 0.014326436445116997, + 0.023480674251914024, + 0.03816207870841026, + 0.055337097495794296, + -0.010917305015027523, + -0.012383534573018551, + 0.02384839579463005, + -0.06634154170751572, + 0.029698841273784637, + -0.05912791192531586, + 0.06675582379102707, + -0.016137659549713135, + 0.061675336211919785, + 0.06779460608959198, + 0.02147146873176098, + -0.05612754449248314, + -0.04880760982632637, + 0.05066688731312752, + 0.06356740742921829, + -0.102860227227211, + 0.04696877673268318, + -0.027372632175683975, + 0.041348718106746674, + -0.023817794397473335, + 0.020702777430415154, + -0.039452195167541504, + -0.062133077532052994, + 0.0077797784470021725, + -0.12457440793514252, + -0.002883839188143611, + -0.0041986992582678795, + 0.04471399262547493, + -0.026674993336200714, + -0.0224124938249588, + -0.03762044385075569, + 0.003270943881943822, + -0.012569339014589787, + 0.028335219249129295, + 0.028530610725283623, + 0.008131850510835648, + 0.013666754588484764, + 0.03912956640124321, + 0.02798343077301979, + 0.01423648837953806, + 0.14323760569095612, + -0.025539452210068703, + 0.08397385478019714, + 0.00513872317969799, + 0.027187539264559746, + 0.06925588846206665, + -0.040989890694618225, + -0.051926713436841965, + -0.03986512869596481, + -0.09572573751211166, + 0.05620325356721878, + -0.04233364015817642, + -2.0670166023251113e-08, + -0.03652782738208771, + -0.0488046370446682, + 0.014126669615507126, + -0.009205061011016369, + 0.07018369436264038, + -0.0001586615981068462, + 0.031566910445690155, + 0.02283790521323681, + -0.03434133902192116, + 0.0023237562272697687, + 0.07879449427127838, + 0.020778793841600418, + -0.11330780386924744, + -0.022438185289502144, + -0.005703306756913662, + -0.05093565955758095, + -0.03301500901579857, + 0.03760076314210892, + 0.0042990418151021, + -0.0806683897972107, + -0.012485068291425705, + 0.04283436760306358, + 0.05146625638008118, + 0.03505859524011612, + 0.0893189087510109, + -0.06169230118393898, + -0.016525762155652046, + 0.03159418702125549, + -0.00860544852912426, + 0.05039050057530403, + 0.011305681429803371, + 0.019468504935503006, + 0.05331004410982132, + -0.02523580938577652, + -0.0317019484937191, + -0.007092822343111038, + -0.0003956981236115098, + 0.04062402993440628, + -0.03436315804719925, + 0.1131030023097992, + -0.0663231760263443, + 0.03243817389011383, + -0.010773862712085247, + -0.0034123375080525875, + 0.04514871537685394, + 0.03462217003107071, + -0.02857269160449505, + 0.029475847259163857, + -0.01682036556303501, + -0.12987545132637024, + -0.03383363410830498, + -0.06683547794818878, + 0.054551370441913605, + 0.023026753216981888, + -0.014705450274050236, + 0.02383042313158512, + 0.000931561749894172, + 0.04944422096014023, + -0.039230041205883026, + -0.026958804577589035, + 0.09514040499925613, + -0.07254920899868011, + -0.0072382977232337, + -0.02469608746469021 + ], + "chart-pie-bold||graphs,graphing,charts,statistics,circle,analyze,analysis": [ + 0.012460288591682911, + -0.00931280292570591, + -0.035032618790864944, + 0.0078714145347476, + -0.017003288492560387, + -0.043856892734766006, + 0.016633309423923492, + 0.03364375978708267, + 0.01956910453736782, + 0.03244536742568016, + 0.03350542113184929, + -0.04030274972319603, + 0.07482937723398209, + 0.019659191370010376, + 0.03858004882931709, + -0.009418086148798466, + 0.030338099226355553, + -0.03445415943861008, + 0.050274986773729324, + -0.05853627622127533, + -0.015958625823259354, + -0.011549943126738071, + 0.016542311757802963, + 0.009778001345694065, + 0.08361377567052841, + -0.014033619314432144, + 0.0068136234767735004, + -0.033353131264448166, + 0.04522252455353737, + -0.05718554928898811, + -0.08778345584869385, + 0.021166319027543068, + 0.1421104371547699, + 0.012766290456056595, + -0.03322768583893776, + 0.010931320488452911, + 0.03740041330456734, + 0.006091170012950897, + 0.025142984464764595, + 0.08115319162607193, + -0.03153427317738533, + -0.027781493961811066, + 0.04685470834374428, + -0.004287354182451963, + 0.022314749658107758, + -0.01178084034472704, + -0.15905657410621643, + -0.032373763620853424, + -0.016685470938682556, + 0.0610048845410347, + -0.10790462046861649, + -0.05536056309938431, + -0.11544826626777649, + -0.04042566195130348, + 0.061341218650341034, + -0.011661919765174389, + -0.03224734961986542, + -0.03031727857887745, + 0.11047840118408203, + -0.02589731477200985, + 0.028041567653417587, + -0.02285061404109001, + 0.015824658796191216, + 0.07137191295623779, + 0.08259197324514389, + 0.02436627261340618, + 0.019899915903806686, + 0.056193459779024124, + -0.014626486226916313, + 0.09230136126279831, + 0.019411535933613777, + 0.0015459787100553513, + -0.08293046057224274, + -0.031866446137428284, + -0.0007964031537994742, + 0.05889305844902992, + -0.043631911277770996, + 0.01607605628669262, + -0.09131187200546265, + -0.15363384783267975, + -0.02979065477848053, + -0.034928951412439346, + -0.02892759069800377, + 0.029608720913529396, + -0.04329969361424446, + 0.0654865950345993, + -0.06843675673007965, + -0.09372875839471817, + -0.0034622419625520706, + -0.03314599394798279, + -0.054969269782304764, + -0.019355015829205513, + -0.08500566333532333, + 0.02775103598833084, + -0.030464041978120804, + 0.03545545041561127, + -0.009014561772346497, + -0.04394279792904854, + 0.03297168388962746, + 0.09556940197944641, + 0.04958958178758621, + -0.03599296137690544, + 0.03375246375799179, + -0.012217340990900993, + -0.07445351779460907, + -0.05165468156337738, + -0.005124660674482584, + -0.0337865985929966, + 0.0220743827521801, + 0.03631517291069031, + -0.0032159241382032633, + -0.06085527688264847, + -0.05234462395310402, + 0.01135524082928896, + -0.0003095375432167202, + -0.0463273860514164, + -0.02845039963722229, + -0.03098498284816742, + 0.07824447005987167, + 0.097091905772686, + 0.014061499387025833, + 0.05768471211194992, + 0.0047072418965399265, + -0.014663833193480968, + -0.044617459177970886, + -0.0016748664202168584, + -0.03783123195171356, + -2.67388451018798e-33, + 0.021049560979008675, + 0.015717318281531334, + -0.013745314441621304, + 0.05051785707473755, + 0.009816001169383526, + 0.0006870402721688151, + -0.11737894266843796, + -0.06188788637518883, + -0.0050527481362223625, + 0.04092064127326012, + 0.03359190747141838, + 0.15202748775482178, + 0.01728961057960987, + 0.07692653685808182, + 0.11650965362787247, + -0.013828126713633537, + 0.10873296856880188, + -0.013549408875405788, + -0.09818171709775925, + -0.08238667994737625, + -0.0369550846517086, + 0.018189260736107826, + 0.03235744684934616, + -0.003765801200643182, + 0.0013788574142381549, + 0.05114300921559334, + 0.041133902966976166, + -0.026984669268131256, + -0.08918990194797516, + 0.02497863955795765, + 0.022957589477300644, + 0.019444702193140984, + 0.013677840121090412, + 0.017507506534457207, + 0.026786869391798973, + -0.021746166050434113, + -0.06497076153755188, + -0.0057843890972435474, + -0.003872354980558157, + -0.01155235804617405, + -0.10946372151374817, + -0.02334628999233246, + 0.005280431360006332, + 0.02399720624089241, + -0.013569312170147896, + 0.08998993784189224, + -0.01939178630709648, + -0.013100357726216316, + 0.07180342078208923, + 0.03017491288483143, + -0.08418066054582596, + -0.019461916759610176, + 0.047513850033283234, + -0.012465124018490314, + 0.022544771432876587, + 0.0005455029895529151, + 0.03177281841635704, + 0.029862230643630028, + -0.05395501106977463, + 0.011678128503262997, + 0.02093719318509102, + 0.042020704597234726, + 0.030276644974946976, + -0.084235280752182, + -0.06747530400753021, + 0.09727444499731064, + -0.1491381675004959, + 0.012284914962947369, + 0.08234956860542297, + 0.002853557001799345, + -0.03099709562957287, + 0.08099207282066345, + 0.03153694421052933, + 0.023163558915257454, + 0.042176827788352966, + 0.048936668783426285, + -0.045907966792583466, + -0.008829952217638493, + -0.059725452214479446, + -0.02828812226653099, + -0.11547635495662689, + -0.09506865590810776, + -0.031165912747383118, + -0.029959289357066154, + -0.02228400483727455, + -0.06547965854406357, + 0.047404419630765915, + 0.010897226631641388, + 0.028065092861652374, + 0.028183145448565483, + -0.1105983778834343, + 0.038272492587566376, + -0.0066342647187411785, + 0.017772449180483818, + -0.07861295342445374, + -3.6251784305991153e-34, + -0.0835791826248169, + 0.13609758019447327, + -0.0001393132406519726, + 0.0641288086771965, + 0.017150219529867172, + 0.034581828862428665, + 0.020202482119202614, + -0.005069427192211151, + 0.025952273979783058, + 0.05146148428320885, + -0.005088187288492918, + -0.0987718403339386, + -0.03736567124724388, + -0.026534387841820717, + -0.007970694452524185, + 0.008567520417273045, + -0.03437935933470726, + 0.007437794003635645, + -0.0834033265709877, + 0.03318743035197258, + -0.10250918567180634, + 0.03657231479883194, + -0.08087422698736191, + 0.018658535555005074, + 0.05125744640827179, + 0.0846455916762352, + -0.025230297818779945, + -0.08409102261066437, + -0.09042934328317642, + 0.018104860559105873, + -0.10554983466863632, + -0.07149498164653778, + 0.02220234088599682, + 0.0033339313231408596, + -0.02783248759806156, + 0.03769920766353607, + 0.13908863067626953, + -0.02152322046458721, + -0.026391789317131042, + -0.030039967969059944, + -0.014635249972343445, + -0.01955156773328781, + 0.03535393625497818, + -0.02405296266078949, + -0.026050643995404243, + 0.027465984225273132, + 0.009281202219426632, + 0.0029283317271620035, + -0.07707729935646057, + 0.05744699761271477, + 0.020097844302654266, + 0.0489533431828022, + 0.09857893735170364, + -0.018651766702532768, + -0.045236241072416306, + -0.07584846764802933, + 0.03561532869935036, + 0.07242150604724884, + -0.07768862694501877, + 0.03296765312552452, + -0.024093860760331154, + -0.0037418894935399294, + 0.015538632869720459, + 0.051902636885643005, + -0.01020360179245472, + -0.05187784507870674, + 0.026721160858869553, + -0.0976865142583847, + -0.012090149335563183, + 0.015213195234537125, + -0.010104810819029808, + 0.030258458107709885, + 0.004949317313730717, + -0.021413277834653854, + 0.0038488786667585373, + -0.021955670788884163, + 0.013188233599066734, + 0.010213672183454037, + -0.03759167715907097, + 0.03857211768627167, + 0.007664759177714586, + 0.0002946358872577548, + -0.0021844732109457254, + 0.0984610840678215, + 0.0016696209786459804, + 0.04141950607299805, + 0.013318820856511593, + -0.02569597400724888, + 0.03385070711374283, + 0.008432130329310894, + -0.046097852289676666, + 0.05475003644824028, + -0.0685349702835083, + 0.02737865038216114, + 0.03497100621461868, + -2.0421490276589793e-08, + -0.008896230719983578, + -0.02020798996090889, + -0.00850647035986185, + -0.00827265065163374, + 0.09401191025972366, + -0.02800709567964077, + 0.003820826066657901, + -0.012562123127281666, + -0.08000823855400085, + 0.046141207218170166, + 0.031672265380620956, + 0.015056285075843334, + -0.07548265904188156, + -0.06393212825059891, + -0.01104094460606575, + -0.027338633313775063, + 0.05100780725479126, + 0.05342457816004753, + 0.015695001929998398, + -0.03765344247221947, + -0.004283682908862829, + -0.0008539549307897687, + 0.047430217266082764, + -0.021491484716534615, + 0.03492040932178497, + -0.041758693754673004, + -0.02768658474087715, + 0.0009246740373782814, + -0.014691945165395737, + 0.03298480063676834, + 0.003568822517991066, + 0.009926454164087772, + -0.005831651855260134, + -0.014244204387068748, + -0.039892084896564484, + -0.028118809685111046, + -0.030844038352370262, + 0.020532362163066864, + -0.017459779977798462, + 0.1344902664422989, + -0.08317788690328598, + 0.08820201456546783, + -0.02559955231845379, + 0.003665314754471183, + 0.06522884219884872, + 0.06464019417762756, + 0.033587634563446045, + 0.022443819791078568, + 0.008657424710690975, + -0.04166525974869728, + -0.10486361384391785, + -0.04289497062563896, + 0.053922515362501144, + -0.004500032868236303, + 0.020222501829266548, + 0.012013711035251617, + 0.03736564889550209, + 0.07195893675088882, + -0.04748673737049103, + 0.05989847332239151, + 0.09652739018201828, + -0.012865341268479824, + 0.020540498197078705, + -0.0886884480714798 + ], + "chart-pie-slice-bold||*updated*,graphs,graphing,charts,statistics,circle,analyze,analysis": [ + 0.00512211536988616, + -0.016974344849586487, + -0.03207705169916153, + 0.0108052808791399, + -0.023424524813890457, + -0.06894445419311523, + -0.01335427351295948, + 0.03486746922135353, + -0.005429909564554691, + 0.04742102697491646, + 0.05180542916059494, + -0.04908670857548714, + 0.03779895231127739, + 0.027156971395015717, + 0.017376713454723358, + -0.0067842137068510056, + 0.027312234044075012, + -0.026656199246644974, + 0.04733898118138313, + -0.0693168118596077, + -0.035871848464012146, + -0.001719788066111505, + 0.007242176216095686, + 0.024452582001686096, + 0.11134237796068192, + -0.012054475955665112, + -0.02508803829550743, + -0.03730655089020729, + 0.0340801477432251, + -0.06186361238360405, + -0.06851357966661453, + 0.030454184859991074, + 0.15408958494663239, + 0.025947393849492073, + -0.02847403846681118, + 0.007320042233914137, + 0.04325844347476959, + 0.016923189163208008, + 0.027824491262435913, + 0.08167728781700134, + -0.03590768203139305, + -0.04040651395916939, + 0.030546486377716064, + -0.00684098806232214, + 0.026550395414233208, + -0.01598789542913437, + -0.16501016914844513, + -0.039542306214571, + -0.03251238167285919, + 0.07042255252599716, + -0.12551869451999664, + -0.07053620368242264, + -0.13239865005016327, + -0.02202780172228813, + 0.09516448527574539, + -0.009708467870950699, + -0.006414470262825489, + -0.029736200347542763, + 0.10793761909008026, + -0.02693004347383976, + 0.011428211815655231, + -0.022778190672397614, + 0.002458142815157771, + 0.06664237380027771, + 0.06050725653767586, + 0.025859927758574486, + 0.017410272732377052, + 0.042915891855955124, + -0.00812708679586649, + 0.08271748572587967, + 0.01595129445195198, + 0.009252781048417091, + -0.08144214749336243, + -0.03597010672092438, + -0.009686091914772987, + 0.035327427089214325, + -0.04051671922206879, + 0.019848985597491264, + -0.09035886079072952, + -0.14288116991519928, + -0.04196193441748619, + -0.021799856796860695, + -0.022891409695148468, + 0.03198304399847984, + -0.03052634187042713, + 0.052335333079099655, + -0.06456857919692993, + -0.06741268187761307, + -0.0269957035779953, + -0.034667007625103, + -0.027806850150227547, + -0.029219556599855423, + -0.06142289191484451, + 0.03032108023762703, + -0.06443039327859879, + 0.03915367275476456, + 0.00013153832696843892, + -0.07961469143629074, + 0.03989143669605255, + 0.09718351811170578, + 0.03656204789876938, + -0.03857731074094772, + 0.016748836264014244, + -0.017072387039661407, + -0.07078603655099869, + -0.05000432953238487, + 0.003372363978996873, + -0.01832946389913559, + 0.0027919935528188944, + 0.044221214950084686, + 0.006447064224630594, + -0.05388937145471573, + -0.0716257393360138, + -0.022539056837558746, + 0.005811655893921852, + -0.045072514563798904, + -0.027197737246751785, + -0.036039408296346664, + 0.09158121794462204, + 0.1049695685505867, + 0.014492555521428585, + 0.05648375302553177, + 0.010206570848822594, + -0.01474476046860218, + -0.04173046723008156, + 0.01002331543713808, + -0.019957171753048897, + -2.4563535867675538e-33, + 0.024204988032579422, + 0.01877429522573948, + -0.011801672168076038, + 0.04783192649483681, + 0.008543131873011589, + -0.015162543393671513, + -0.1163725033402443, + -0.0830475240945816, + -0.0019912999123334885, + 0.016330890357494354, + 0.038302212953567505, + 0.16621410846710205, + 0.011215385980904102, + 0.10983585566282272, + 0.10048451274633408, + -0.03871277719736099, + 0.1067638173699379, + 0.01917908526957035, + -0.08626466989517212, + -0.07739520072937012, + -0.036099791526794434, + 0.034455589950084686, + 0.04584413021802902, + 0.005929967854171991, + 0.02021072804927826, + 0.04861826449632645, + 0.010257215239107609, + -0.051877617835998535, + -0.08509886264801025, + 0.032162267714738846, + 0.016306113451719284, + 0.02787156030535698, + 0.002798652509227395, + 0.0063647376373410225, + 0.02916903607547283, + 0.0022651588078588247, + -0.07570792734622955, + -0.022594308480620384, + -0.005662354175001383, + -0.021169861778616905, + -0.11184905469417572, + -0.02498755231499672, + -0.005786288529634476, + 0.011344671249389648, + -0.005725966766476631, + 0.06900821626186371, + -0.03862693905830383, + -0.022489989176392555, + 0.07614681869745255, + 0.019221041351556778, + -0.066933274269104, + -0.015938078984618187, + 0.05467621982097626, + -0.01842890866100788, + 1.1556124263734091e-05, + 0.0022463160566985607, + 0.056564249098300934, + 0.026564566418528557, + -0.028341390192508698, + 0.0077319699339568615, + 0.03635963797569275, + 0.04551858454942703, + 0.009024841710925102, + -0.05921018496155739, + -0.07623528689146042, + 0.08972760289907455, + -0.12544967234134674, + -0.005143188871443272, + 0.07148320227861404, + 0.030339181423187256, + -0.06356638669967651, + 0.07550706714391708, + 0.033198654651641846, + 0.04451557993888855, + 0.017832230776548386, + 0.03559132292866707, + -0.05672995746135712, + -0.02692749723792076, + -0.05840132758021355, + -0.04642990604043007, + -0.10974632203578949, + -0.09143690764904022, + -0.03393298014998436, + -0.07538038492202759, + -0.028604907914996147, + -0.05687269568443298, + 0.05056304484605789, + 0.024628441780805588, + 0.005904489662498236, + 0.00026748442905955017, + -0.1253177374601364, + 0.050568658858537674, + -0.022061606869101524, + 0.0014165708562359214, + -0.06476342678070068, + -6.615218896349717e-34, + -0.062240518629550934, + 0.11184938997030258, + -0.0030409914907068014, + 0.06861242651939392, + -0.006872470490634441, + 0.01613948494195938, + 0.009197327308356762, + 0.025200217962265015, + 0.03501702472567558, + 0.03998774290084839, + -0.00862367358058691, + -0.07866589725017548, + -0.01893615536391735, + -0.02001977525651455, + -0.008050424046814442, + 0.01649538055062294, + -0.03165304660797119, + -0.0020271707326173782, + -0.09191185981035233, + 0.038811180740594864, + -0.10830958932638168, + 0.028117526322603226, + -0.08471602201461792, + 0.037318285554647446, + 0.06295143067836761, + 0.06860823929309845, + -0.01834684982895851, + -0.0813322514295578, + -0.042430948466062546, + -0.015079251490533352, + -0.10065127909183502, + -0.08481400460004807, + 0.014279360882937908, + -0.006838806439191103, + -0.02063831500709057, + 0.06315737962722778, + 0.1338118314743042, + -0.01697414368391037, + -0.038079362362623215, + -0.0071895066648721695, + -0.003927900921553373, + -0.00755642494186759, + 0.05155600607395172, + 0.0041374582797288895, + -0.012137188576161861, + 0.03791814669966698, + -0.017551273107528687, + 0.04712042212486267, + -0.10189761221408844, + 0.05147722736001015, + 0.023185281082987785, + 0.06312239915132523, + 0.09742388129234314, + -0.008804593235254288, + -0.01690729893743992, + -0.06537962704896927, + 0.011730986647307873, + 0.06487586349248886, + -0.10408107191324234, + 0.016012413427233696, + -0.025161143392324448, + -0.005844536237418652, + 0.024241073057055473, + 0.03864607587456703, + -0.0009109140373766422, + -0.058579087257385254, + 0.004676434211432934, + -0.12304040789604187, + -0.032541632652282715, + 0.014666170813143253, + 0.00587554182857275, + 0.026843229308724403, + -0.010692109353840351, + -0.05577867105603218, + 0.0037013129331171513, + -0.04165543615818024, + -0.004957465920597315, + 0.011861564591526985, + -0.033083707094192505, + 0.028966141864657402, + 0.008278205059468746, + 0.015798989683389664, + 0.026536576449871063, + 0.11474162340164185, + -0.0040487200021743774, + 0.03789468854665756, + 0.022296367213129997, + -0.007169672753661871, + 0.04221727326512337, + -0.01966729946434498, + -0.05687858536839485, + 0.009982187300920486, + -0.07444201409816742, + 0.074525386095047, + 0.018726885318756104, + -2.1546444628484096e-08, + 0.010018319822847843, + -0.02032049186527729, + -0.008351084776222706, + 0.013163079507648945, + 0.09200932085514069, + -0.018018178641796112, + 0.0020944313146173954, + 0.00042464362923055887, + -0.06750258058309555, + 0.03770885989069939, + 0.0501897931098938, + 0.019088037312030792, + -0.07100766152143478, + -0.04465286806225777, + 0.006059472449123859, + -0.02353181131184101, + 0.05216322839260101, + 0.0729684829711914, + 0.011894469149410725, + -0.04308272898197174, + -0.005374241154640913, + 0.008680909872055054, + 0.04682173579931259, + -0.008400456048548222, + 0.033877480775117874, + -0.0379926897585392, + -0.042646147310733795, + 0.012148174457252026, + 0.00158994912635535, + 0.008355721831321716, + 0.014628094621002674, + 0.011878094635903835, + 0.01548060029745102, + -0.0030376219656318426, + -0.029332144185900688, + 0.0026644370518624783, + -0.03689881041646004, + 0.04477245360612869, + 0.0007805539644323289, + 0.13617326319217682, + -0.06431729346513748, + 0.07151394337415695, + -0.019982730969786644, + 0.014647742733359337, + 0.038990702480077744, + 0.05570502206683159, + 0.008025766350328922, + 0.028930747881531715, + 0.007933812215924263, + -0.0453028604388237, + -0.08954925835132599, + -0.028302595019340515, + 0.028700772672891617, + 0.00045188667718321085, + 0.018182072788476944, + 0.0403025820851326, + 0.047645486891269684, + 0.04897185415029526, + -0.02144743502140045, + 0.04770129919052124, + 0.11313546448945999, + -0.024625243619084358, + 0.017785998061299324, + -0.04998600482940674 + ], + "chart-polar-bold||graphs,graphing,charts,statistics,analyze,analysis,circle": [ + -0.0025920001789927483, + -0.04266982525587082, + -0.06660822033882141, + 0.010843964293599129, + 0.005744431633502245, + -0.0453074686229229, + 0.000893539167009294, + 0.043459802865982056, + 0.019748402759432793, + 0.04809415340423584, + 0.026666488498449326, + 0.023993216454982758, + 0.07070133090019226, + 0.059260282665491104, + 0.053028833121061325, + 0.035280000418424606, + -0.013167109340429306, + -0.04825007915496826, + 0.033612653613090515, + -0.02417290210723877, + -0.017815161496400833, + 0.0034654124174267054, + -0.007373510394245386, + 0.004718290641903877, + 0.07819639146327972, + -0.0118290726095438, + 0.021071230992674828, + 0.00530962273478508, + 0.0537605807185173, + -0.04340316355228424, + -0.05208742246031761, + 0.026404311880469322, + 0.108119897544384, + 0.037573058158159256, + -0.04226107522845268, + 0.002560631837695837, + 0.05415603891015053, + 0.0049367742612957954, + 0.008308297954499722, + 0.08889910578727722, + -0.017284957692027092, + -0.007688931189477444, + 0.05104072764515877, + -0.015593433752655983, + -0.0030550542287528515, + -0.014818781986832619, + -0.13880442082881927, + -0.0121364276856184, + 0.0075574470683932304, + -0.004593142308294773, + -0.10435662418603897, + -0.08008981496095657, + -0.1324533075094223, + -0.01663508452475071, + 0.052444059401750565, + -0.008313174359500408, + -0.055168554186820984, + -0.07645638287067413, + 0.0894528329372406, + -0.03800177574157715, + 0.042619429528713226, + -0.012431755661964417, + 0.006056167650967836, + 0.062407236546278, + 0.08517508208751678, + 0.04942888766527176, + 0.00758342957124114, + 0.05939096957445145, + 0.013765724375844002, + 0.09039044380187988, + 0.006138681434094906, + -0.004074041731655598, + -0.08690903335809708, + -0.02952323481440544, + 0.0028917675372213125, + 0.0443761944770813, + -0.0258640106767416, + 0.039404790848493576, + -0.07479916512966156, + -0.16049444675445557, + -0.04218493029475212, + -0.055337924510240555, + -0.057729508727788925, + 0.06150586158037186, + -0.017893800511956215, + 0.061663299798965454, + -0.039610061794519424, + -0.09351122379302979, + -0.010196401737630367, + 0.0076249511912465096, + -0.05322516709566116, + -0.006789143662899733, + -0.08043276518583298, + 0.01978435181081295, + -0.04588395729660988, + 0.05226651951670647, + 0.025954632088541985, + -0.03768068924546242, + 0.01750166527926922, + 0.07867559045553207, + 0.06706661731004715, + -0.04726778343319893, + -0.008366077207028866, + -0.018093710765242577, + -0.09016711264848709, + -0.07699666917324066, + 0.025145433843135834, + -0.021066132932901382, + 0.03513704240322113, + 0.022619428113102913, + -0.021186716854572296, + -0.03825346753001213, + -0.07806004583835602, + 0.007643694058060646, + -0.030811987817287445, + -0.04658770561218262, + -0.03145008906722069, + -0.012765157967805862, + 0.06471403688192368, + 0.12470294535160065, + -0.020103543996810913, + 0.06882816553115845, + -0.019354190677404404, + 0.013924740254878998, + -0.02520270086824894, + 0.01935785636305809, + -0.02722777985036373, + -2.4824115414603992e-33, + 0.03441721200942993, + 0.040615107864141464, + -0.009381800889968872, + 0.04995113983750343, + -0.017564713954925537, + 0.011914406903088093, + -0.10094181448221207, + -0.0561605803668499, + -0.010766260325908661, + 0.04515150934457779, + 0.032771363854408264, + 0.17621126770973206, + 0.02055373787879944, + 0.07217657566070557, + 0.08816090226173401, + -0.03752155974507332, + 0.08629506081342697, + -0.02871580794453621, + -0.10452776402235031, + -0.0529741570353508, + -0.024610379710793495, + 0.031634338200092316, + 0.0185734611004591, + 0.01803473010659218, + 0.0010482927318662405, + -0.001877881120890379, + 0.016446784138679504, + 0.0032833819277584553, + -0.0783470943570137, + 0.03571680188179016, + 0.003987940959632397, + 0.05184943228960037, + -0.014926129020750523, + 0.06598997116088867, + 0.02114281803369522, + -0.014017878100275993, + -0.06482771784067154, + -0.018423262983560562, + 0.01174254808574915, + 0.012277952395379543, + -0.0673070028424263, + -0.004629587754607201, + -0.0216705109924078, + 0.007362129166722298, + -0.0012513938127085567, + 0.09262450039386749, + -0.013705589808523655, + -0.026983890682458878, + 0.06689957529306412, + 0.0479731522500515, + -0.09688851237297058, + 0.020194964483380318, + 0.03271041437983513, + -0.012864416465163231, + 0.023522736504673958, + 0.0028997028712183237, + 0.023691313341259956, + 0.056166019290685654, + -0.025973664596676826, + 0.015073861926794052, + -0.0203869491815567, + 0.03467251732945442, + 0.04204007610678673, + -0.10955581068992615, + -0.05245601758360863, + 0.07596628367900848, + -0.1413290947675705, + -0.009244431741535664, + 0.06501959264278412, + -0.024699784815311432, + -0.016781920567154884, + 0.08127137273550034, + 0.023029832169413567, + 0.02173951454460621, + 0.05135893449187279, + 0.05613148584961891, + -0.04048152640461922, + 0.0100197559222579, + -0.016853492707014084, + -0.03021610714495182, + -0.1389840841293335, + -0.0773235335946083, + -0.03310761973261833, + -0.01568850874900818, + -0.06656665354967117, + -0.07241033017635345, + 0.051865674555301666, + 0.0033567643258720636, + 0.013092536479234695, + 0.03464892506599426, + -0.1162036806344986, + 0.03356952220201492, + -0.00020095739455427974, + -0.006195203401148319, + -0.07122357934713364, + -9.02385136140022e-34, + -0.11337141692638397, + 0.09737008064985275, + -0.023638946935534477, + 0.06123529002070427, + -0.007369427941739559, + 0.028980882838368416, + 0.005546665284782648, + -0.00031072666752152145, + 0.04067913070321083, + 0.06776230782270432, + 0.04541874676942825, + -0.0700504407286644, + -0.04745635762810707, + -0.004586257040500641, + -0.0221056267619133, + 0.0026120601687580347, + -0.030333755537867546, + 0.006952935829758644, + -0.09235689789056778, + 0.027083072811365128, + -0.08155297487974167, + 0.053790345788002014, + -0.04587224870920181, + 0.02881711907684803, + 0.05339140072464943, + 0.09282799065113068, + 0.008870132267475128, + -0.0879916325211525, + -0.08035991340875626, + 0.007632759399712086, + -0.06369955837726593, + -0.011962507851421833, + 0.02095537632703781, + 0.02184869721531868, + -0.05452429875731468, + 0.054943062365055084, + 0.11847182363271713, + -0.033012595027685165, + -0.008186710998415947, + -0.024942684918642044, + -0.001108425436541438, + -0.007373069413006306, + 0.06301885843276978, + -0.006935927085578442, + -0.041536033153533936, + -0.02774709276854992, + 0.00833725742995739, + 0.01778947003185749, + -0.05725822225213051, + 0.07255641371011734, + -0.007099084556102753, + 0.04733842611312866, + 0.0961284190416336, + -0.0061773150227963924, + -0.06103833019733429, + -0.1158963069319725, + 0.029183685779571533, + 0.034434717148542404, + -0.05941600725054741, + 0.03998011723160744, + -0.040021635591983795, + 0.0029658921994268894, + -0.029787590727210045, + 0.028968581929802895, + -0.04468931257724762, + -0.09147220104932785, + 0.031956613063812256, + -0.11733175814151764, + 0.028601570054888725, + 0.025097711011767387, + 0.005013912450522184, + 0.04607861116528511, + -0.008489526808261871, + -0.04854004085063934, + 0.00517912395298481, + -0.01574048399925232, + 0.04248623177409172, + 0.008238186128437519, + -0.05242950841784477, + 0.024610981345176697, + 0.00886499509215355, + 0.021667802706360817, + -0.014194045215845108, + 0.08008430153131485, + 0.0005809998838230968, + 0.051957204937934875, + -0.01347898505628109, + -0.011363576166331768, + 0.03830898180603981, + -0.0175962895154953, + -0.012594902887940407, + 0.02904627099633217, + -0.09057312458753586, + 0.022639069706201553, + 0.034436773508787155, + -1.9402786932687377e-08, + -0.005343397613614798, + -0.04360825568437576, + 0.0019663008861243725, + 0.001188001362606883, + 0.07554226368665695, + -0.032600369304418564, + 0.014160704798996449, + -0.019653547555208206, + -0.06419208645820618, + 0.0583295002579689, + 0.07733809947967529, + 0.010181772522628307, + -0.08259046822786331, + -0.0755222886800766, + -0.0008787499973550439, + -0.036083247512578964, + 0.042263858020305634, + 0.04604712501168251, + 0.01496904343366623, + -0.03287259861826897, + -0.00474792392924428, + -0.03415120393037796, + 0.030107561498880386, + 0.0013981492957100272, + 0.09894520789384842, + -0.04724137485027313, + -0.018488334491848946, + -0.023085590451955795, + -0.027687205001711845, + 0.03650977090001106, + 0.02017778716981411, + 0.015834076330065727, + -0.010838140733540058, + 0.0023519527167081833, + -0.049707312136888504, + -0.04546493664383888, + -0.0054077934473752975, + 0.038718558847904205, + -0.04934675246477127, + 0.12522250413894653, + -0.07275412231683731, + 0.08649811148643494, + -0.057056721299886703, + 4.506345430854708e-05, + 0.05214369669556618, + 0.07776376605033875, + 0.02710709162056446, + 0.04068881645798683, + -0.010385999456048012, + -0.0779130831360817, + -0.09862993657588959, + -0.042502809315919876, + 0.03902065008878708, + 0.008123560808598995, + -0.005393001716583967, + 0.03151789307594299, + -0.008547271601855755, + 0.070050448179245, + -0.06344962865114212, + 0.019103650003671646, + 0.07645848393440247, + 0.005276610609143972, + -0.029744639992713928, + -0.08148977160453796 + ], + "chart-scatter-bold||graphs,graphing,charts,statistics,analyze,analysis": [ + 0.023436127230525017, + -0.06434432417154312, + -0.018734052777290344, + 0.00035596577799879014, + 0.04367059841752052, + -0.029576603323221207, + -0.007805529050529003, + 0.031189855188131332, + -0.018890773877501488, + 0.05735093355178833, + 0.019093522801995277, + -0.012656495906412601, + 0.05912724882364273, + 0.04734538495540619, + -0.0073112319223582745, + 0.03589940071105957, + 0.010707007721066475, + -0.051987577229738235, + 0.01921956054866314, + -0.013295482844114304, + 0.0008806175901554525, + 0.0008930778712965548, + -0.023530103266239166, + -0.0012306345161050558, + 0.12895160913467407, + -0.019145041704177856, + 0.015572695061564445, + 0.009124315343797207, + 0.02734457328915596, + -0.01220821961760521, + -0.021618841215968132, + 0.00021875440143048763, + 0.10193010419607162, + 0.04278869554400444, + -0.021226175129413605, + -0.032539498060941696, + 0.05116124823689461, + 0.027789633721113205, + 0.04526976868510246, + 0.10769502073526382, + -0.022180797532200813, + -0.023066699504852295, + 0.02700585126876831, + -0.0018901069415733218, + 0.008048420771956444, + -0.034150321036577225, + -0.11979842185974121, + -0.010554224252700806, + -0.007507158908993006, + 0.051286328583955765, + -0.07580272853374481, + -0.08673572540283203, + -0.12362417578697205, + -0.02566717565059662, + 0.062443140894174576, + 0.01817881129682064, + -0.049520090222358704, + -0.06302214413881302, + 0.09270267188549042, + -0.012621447443962097, + 0.03263209015130997, + -0.011194057762622833, + 0.020163197070360184, + 0.05545524135231972, + 0.1403370052576065, + 0.0566263422369957, + 0.022748995572328568, + 0.09984419494867325, + 0.007521481718868017, + 0.12493125349283218, + 0.013852223753929138, + -0.0030524996109306812, + -0.07972490042448044, + -0.021489877253770828, + -6.396430399036035e-05, + 0.050312019884586334, + -0.04475677013397217, + 0.012232038192451, + -0.05323254317045212, + -0.14650313556194305, + -0.03880619630217552, + -0.02792418748140335, + -0.05787365511059761, + 0.03607732802629471, + -0.017722055315971375, + 0.050111573189496994, + -0.08210589736700058, + -0.053619302809238434, + -0.005801753140985966, + -0.016289975494146347, + -0.05304325371980667, + 0.01797550544142723, + -0.09668319672346115, + 0.04062068834900856, + -0.07444015890359879, + 0.06282605230808258, + 0.0402449369430542, + -0.03130703046917915, + 0.056756097823381424, + 0.06411372870206833, + 0.038700006902217865, + -0.04607672616839409, + 0.030907291918992996, + 0.006184068508446217, + -0.07946330308914185, + -0.054033245891332626, + 0.0007245916640385985, + -0.00510585680603981, + -0.024676363915205002, + 0.03242499381303787, + -0.00024073665554169565, + -0.03677578270435333, + -0.08149026334285736, + 0.02798968181014061, + -0.011360278353095055, + -0.05190856382250786, + -0.03503742069005966, + -0.029071593657135963, + 0.03978408873081207, + 0.0509866364300251, + 0.0011249203234910965, + 0.04346039146184921, + -0.010371474549174309, + -0.007128176279366016, + -0.005769413895905018, + 0.0032697715796530247, + -0.0342702679336071, + -1.8082701230386252e-33, + 0.011556156910955906, + -0.016277272254228592, + -0.024297581985592842, + 0.05789459869265556, + 0.013280445709824562, + -0.013132956810295582, + -0.12452708184719086, + -0.05744435265660286, + -0.05759884789586067, + 0.09119738638401031, + 0.007909653708338737, + 0.15373101830482483, + 0.02403605356812477, + 0.06157652288675308, + 0.0915788784623146, + -0.009011891670525074, + 0.09313073009252548, + 0.005296777933835983, + -0.08975742757320404, + -0.04005724564194679, + -0.03771554306149483, + 0.02335992641746998, + 0.024080783128738403, + 0.016468515619635582, + 0.027964998036623, + -0.0057105375453829765, + -0.01597900316119194, + -0.001459550461731851, + -0.041906364262104034, + 0.017410987988114357, + 0.0039476798847317696, + 0.09466297924518585, + 0.009344810619950294, + 0.01745278760790825, + -0.006999942474067211, + -0.05914420261979103, + -0.06991031020879745, + -0.022689899429678917, + 0.014977702870965004, + 0.01795016974210739, + -0.06292188912630081, + 0.007167544681578875, + 0.01023987215012312, + -0.026067480444908142, + 0.011089995503425598, + 0.14353804290294647, + -0.02962467633187771, + -0.04196721687912941, + 0.0916920155286789, + 0.018811963498592377, + -0.08977361768484116, + -0.030187826603651047, + 0.043081797659397125, + 0.03329417482018471, + 0.03992993384599686, + 0.03978552669286728, + 0.04826711118221283, + 0.029119860380887985, + -0.023295368999242783, + 0.014033620245754719, + -0.01990635320544243, + 0.010527255944907665, + 0.03839520737528801, + -0.08754362165927887, + -0.061079829931259155, + 0.06210210919380188, + -0.11100354045629501, + 0.023073963820934296, + 0.05796189233660698, + 0.006925963796675205, + -0.032329656183719635, + 0.1230340525507927, + -0.0034339998383075, + 0.00345177692361176, + 0.06834806501865387, + 0.021021148189902306, + -0.044085923582315445, + 0.027940895408391953, + -0.06452473998069763, + -0.04529305920004845, + -0.12964126467704773, + -0.10922672599554062, + -0.055572375655174255, + -2.236188083770685e-05, + -0.05716480687260628, + -0.0603913851082325, + 0.0037347860634326935, + 0.01075891312211752, + -0.004910225979983807, + -0.01713414676487446, + -0.07159459590911865, + 0.02461308240890503, + -0.04304280877113342, + -0.03233201056718826, + -0.06188295781612396, + -7.625642616247862e-34, + -0.07249896973371506, + 0.14813357591629028, + 0.014302819967269897, + 0.07052794098854065, + 0.0042514256201684475, + 0.06039295718073845, + 0.013967324048280716, + 0.011790141463279724, + 0.034332577139139175, + 0.08736634999513626, + 0.013610058464109898, + -0.06835482269525528, + -0.08046697825193405, + -0.02773008681833744, + -0.01627742499113083, + 0.011804389767348766, + -0.02676953189074993, + -0.008912312798202038, + -0.08943907171487808, + -0.04378403350710869, + -0.07921139895915985, + 0.038840677589178085, + -0.03431053087115288, + -0.015429927036166191, + 0.07585316151380539, + 0.053259432315826416, + -0.023435046896338463, + -0.0707867443561554, + -0.0986042469739914, + -0.00939053576439619, + -0.07277383655309677, + -0.038548897951841354, + 0.01536326389759779, + -0.03045618161559105, + -0.029958341270685196, + 0.05699952691793442, + 0.12927564978599548, + -0.0430058017373085, + -0.0007124822004698217, + -0.040019869804382324, + 0.021126763895154, + 0.02040882036089897, + 0.029359538108110428, + -0.008522638119757175, + -0.038222864270210266, + 0.041790224611759186, + -0.02190924994647503, + 0.0318581759929657, + -0.010237013921141624, + 0.024076279252767563, + 0.018184654414653778, + 0.057231344282627106, + 0.09417921304702759, + -0.03493938595056534, + -0.047001905739307404, + -0.09317344427108765, + 0.05902666971087456, + -0.001094039878807962, + -0.08369714766740799, + 0.023133663460612297, + -0.035911623388528824, + -0.01915339007973671, + -0.0601244755089283, + 0.018417170271277428, + -0.02708486095070839, + -0.06235979124903679, + -0.0042026755400002, + -0.125137060880661, + 0.038845304399728775, + 0.046857159584760666, + 0.0236040186136961, + -0.017132416367530823, + 0.007632457185536623, + -0.0034360664431005716, + 0.01964235119521618, + -0.04238772392272949, + -0.025321394205093384, + 0.01730223558843136, + -0.033604130148887634, + 0.053630389273166656, + 0.03234844282269478, + -0.022998491302132607, + 0.03639298677444458, + 0.11919628828763962, + -0.0010066343238577247, + 0.05270281061530113, + -0.014527733437716961, + -0.0028316399548202753, + 0.04753671586513519, + -0.006181154400110245, + -0.032874513417482376, + 0.012729577720165253, + -0.06126010790467262, + 0.011259433813393116, + 0.017673702910542488, + -1.9404534867817347e-08, + -0.054403387010097504, + -0.05235033109784126, + 0.0030458755791187286, + -0.04588623717427254, + 0.06408663094043732, + 0.01779295690357685, + 0.008033796213567257, + 0.03452128916978836, + -0.022058621048927307, + 0.07877058535814285, + 0.06823262572288513, + -0.015591315925121307, + -0.1026509702205658, + -0.046390194445848465, + -0.014866637997329235, + -0.04787903279066086, + 0.007021917961537838, + 0.028250446543097496, + -0.0051214369013905525, + -0.04787622392177582, + -0.026228176429867744, + 0.0019823431503027678, + -0.008844851516187191, + 0.023960983380675316, + 0.09528053551912308, + -0.04618458077311516, + -0.04591217637062073, + 0.04496891796588898, + -0.007988839410245419, + 0.04348010569810867, + -0.0032408349215984344, + -0.022080471739172935, + 0.018198592588305473, + 0.02746424823999405, + -0.04636942595243454, + -0.0074804541654884815, + -0.023895451799035072, + 0.043510552495718, + -0.03914377838373184, + 0.11500189453363419, + -0.08106303215026855, + 0.07388664036989212, + -0.04643616825342178, + 0.005617388058453798, + 0.07752186805009842, + 0.08344042301177979, + 0.02257240004837513, + 0.03472654148936272, + 0.024059804156422615, + -0.0922691747546196, + -0.07586844265460968, + -0.06776272505521774, + 0.022246459499001503, + 0.026888033375144005, + -0.01036757044494152, + -0.0016528134001418948, + -0.023172954097390175, + 0.07794873416423798, + -0.01743030734360218, + -3.807790926657617e-05, + 0.07844750583171844, + 0.0011449510930106044, + -0.029721735045313835, + -0.05570545420050621 + ], + "chat-bold||send,sent,messages,messaging,sms,texting,comment,square,bubble": [ + 0.00019812762911897153, + -0.08500360697507858, + 0.012255174107849598, + 0.038676436990499496, + 0.01579226739704609, + -0.03859350085258484, + 0.1027083545923233, + -0.04262793809175491, + 0.03810732439160347, + -0.0027241127099841833, + 0.03141087666153908, + 0.02284427359700203, + 0.0340256504714489, + 0.03570450469851494, + 0.057225797325372696, + 0.039238281548023224, + 0.02440263144671917, + -0.07206378877162933, + -0.004524612333625555, + -0.020432068035006523, + 0.04180121049284935, + 0.036603543907403946, + 0.03733021393418312, + 0.033311668783426285, + 0.06058759614825249, + -0.01829427294433117, + -0.010277809575200081, + 0.034764520823955536, + 0.02595880627632141, + -0.07158922404050827, + -0.010174780152738094, + 0.038331203162670135, + 0.17156945168972015, + 0.10636167973279953, + -0.023610644042491913, + 0.036922771483659744, + -0.013461685739457607, + -0.0031024571508169174, + -0.021256832405924797, + 0.04036847874522209, + -0.08984309434890747, + -0.10329791158437729, + 0.0041533708572387695, + 0.039452798664569855, + 0.00881188828498125, + -0.04078861325979233, + -0.03940603882074356, + 0.003528982400894165, + -0.029685840010643005, + 0.017101842910051346, + -0.011516328901052475, + -0.07522765547037125, + -0.07977701723575592, + 0.0987151637673378, + 0.034281451255083084, + 0.010709567926824093, + -0.09222562611103058, + 0.019695889204740524, + 0.09319470077753067, + 0.017647767439484596, + -0.012919357046484947, + 0.021359916776418686, + 0.05393384397029877, + 0.016872407868504524, + -0.020830199122428894, + 0.02750960737466812, + -0.01675967127084732, + 0.034346096217632294, + -0.01585092395544052, + 0.0003266317071393132, + 0.009839879348874092, + -0.009683898650109768, + -0.04223271459341049, + 0.023853056132793427, + -0.030039161443710327, + 0.030426006764173508, + 0.04084044694900513, + -0.030621401965618134, + -0.06512287259101868, + 0.004449707455933094, + -0.10513531416654587, + -0.04667796939611435, + -0.012229559943079948, + 0.018901461735367775, + 0.02280363440513611, + 0.040604811161756516, + -0.0477474182844162, + -0.04310594126582146, + -0.07008494436740875, + -0.020511802285909653, + -0.06509657204151154, + -0.010890438221395016, + -0.0035015600733458996, + 0.08237781375646591, + -0.12129388004541397, + 0.02760201320052147, + 0.062346816062927246, + -0.018044965341687202, + -0.04216614365577698, + 0.07875575125217438, + 0.04904574900865555, + 0.004371544811874628, + 0.045162275433540344, + -0.053112372756004333, + 0.004045901820063591, + -0.04396651312708855, + 0.0438975989818573, + -0.05472496896982193, + 0.020002806559205055, + 0.012477749027311802, + -0.07285722345113754, + -0.08721143007278442, + -1.5343872291850857e-05, + -0.06259480863809586, + 0.03861232101917267, + -0.045189909636974335, + -0.04973800852894783, + -0.026169775053858757, + 0.12312760204076767, + 0.07338597625494003, + 0.06257498264312744, + -0.058863282203674316, + -0.041140422224998474, + -0.04756510257720947, + -0.015694940462708473, + 0.023915918543934822, + 0.024095937609672546, + -1.283035369862226e-33, + 0.09270896762609482, + 0.05896514654159546, + -0.021844113245606422, + 0.1341886818408966, + 0.01771954633295536, + 0.03568702191114426, + -0.09455746412277222, + -0.10414779931306839, + -0.07047303766012192, + -0.011557245627045631, + 0.01262205746024847, + 0.024898739531636238, + -0.0179367084056139, + 0.09799560904502869, + 0.04254702478647232, + -0.048277419060468674, + 0.024761399254202843, + 0.008623935282230377, + 0.017702452838420868, + -0.020289195701479912, + -0.10212014615535736, + 0.05588164180517197, + -0.029558980837464333, + 0.016692914068698883, + 0.04046299681067467, + 0.04112431779503822, + 0.06866990774869919, + -0.06465859711170197, + -0.00866162870079279, + 0.028642885386943817, + 0.04939417168498039, + -0.0029163763392716646, + 0.02265375480055809, + 0.05008477345108986, + 0.006217725574970245, + 0.010156964883208275, + -0.08853625506162643, + -0.025846105068922043, + 0.0073394556529819965, + 0.036882299929857254, + -0.1032753586769104, + -0.06077942997217178, + -0.06624745577573776, + -0.05246105045080185, + 0.028373826295137405, + 0.06495828926563263, + -0.06953851133584976, + -0.038523174822330475, + -0.01115491148084402, + -0.024118296802043915, + 0.011699396185576916, + -0.00914296880364418, + 0.013181407935917377, + 0.04422134906053543, + 0.03800863027572632, + -0.05352258309721947, + 0.00244367984123528, + 0.000694375776220113, + -0.01920417696237564, + 0.039024680852890015, + -0.02549896202981472, + -0.020124301314353943, + 0.03504524007439613, + -0.09886371344327927, + 0.0012350433971732855, + 0.014237158000469208, + -0.07255052775144577, + -0.02112356573343277, + 0.002961739432066679, + -0.023700393736362457, + -0.009126469492912292, + 0.09331429749727249, + 0.03825286775827408, + 0.0742446780204773, + -0.09940312057733536, + 0.01958417147397995, + 0.023804083466529846, + 0.02223343588411808, + 0.03396906703710556, + -0.027314819395542145, + -0.10076972097158432, + -0.015623101033270359, + -0.058793824166059494, + 0.018258756026625633, + -0.010366793721914291, + 0.0011858679354190826, + 0.009832512587308884, + -0.11811543256044388, + -0.03902842476963997, + 0.055579669773578644, + -0.12515093386173248, + 0.020566603168845177, + 0.04347915202379227, + -0.057851556688547134, + -0.10047838091850281, + -9.814997860000747e-35, + -0.029940910637378693, + 0.1015019342303276, + -0.1273655742406845, + 0.020465338602662086, + -0.020393695682287216, + 0.03407551720738411, + 0.10824930667877197, + 0.05945554003119469, + 0.041183412075042725, + 0.021172521635890007, + -0.004181897733360529, + -0.022692779079079628, + -0.05477096885442734, + -0.06986887007951736, + 0.011059023439884186, + 0.06997627764940262, + 0.03974902257323265, + 0.01767323911190033, + -0.03591454029083252, + 0.0013486080570146441, + -0.03627427667379379, + -0.019943902269005775, + -0.08350151777267456, + 0.07915610820055008, + 0.011849205940961838, + 0.011389213614165783, + 0.005156414117664099, + -0.022304950281977654, + -0.0008434668416157365, + -0.021991413086652756, + 0.03334818780422211, + 0.006850312929600477, + 0.022637126967310905, + 0.04698861017823219, + -0.017214177176356316, + -0.01868255063891411, + 0.07197367399930954, + -0.02054687775671482, + -0.009219038300216198, + 0.015139991417527199, + 0.09030698984861374, + 0.03793177008628845, + -0.016840735450387, + 0.04003240540623665, + -0.0296722911298275, + 0.018592577427625656, + -0.08734562993049622, + -0.07667745649814606, + -0.05354463681578636, + 0.04392498731613159, + 0.0850398913025856, + -0.08578158169984818, + 0.0340631902217865, + 0.009868265129625797, + -0.061289772391319275, + -0.04695030674338341, + 0.04318191111087799, + 0.05695653706789017, + -0.014085052534937859, + -6.18411140749231e-05, + -0.035029999911785126, + -0.038100577890872955, + 0.04405166953802109, + -0.0032046111300587654, + 0.007164464332163334, + -0.05229775980114937, + 0.03488488867878914, + -0.0042856307700276375, + -0.007814915850758553, + -0.0365026593208313, + 0.12071175873279572, + -0.05711770057678223, + -0.040206972509622574, + 0.04446321353316307, + 0.07750139385461807, + -0.03687116503715515, + -0.0070886146277189255, + 0.0030740140937268734, + -0.08265385031700134, + 0.03255105018615723, + 0.016824133694171906, + 0.04692385345697403, + -0.00571126863360405, + 0.05936188995838165, + 0.004580667242407799, + 0.03826247155666351, + 0.010415345430374146, + 0.050046417862176895, + -0.011108813807368279, + -0.04611155390739441, + -0.020352372899651527, + 0.046349167823791504, + -0.01575612649321556, + 0.018761396408081055, + -0.0032413408625870943, + -2.096310325327977e-08, + -0.07364750653505325, + -0.13865390419960022, + 0.009990882128477097, + -0.033383529633283615, + 0.037376318126916885, + -0.0013322310987859964, + -0.009538454934954643, + -0.02893313206732273, + 0.017466215416789055, + -0.04771186783909798, + 0.017354635521769524, + 0.02602759189903736, + -0.08636493980884552, + -0.09037638455629349, + 0.058255624026060104, + -0.012651634402573109, + -0.06930424273014069, + -0.0038662829902023077, + -0.0037030859384685755, + -0.07776788622140884, + 0.026953568682074547, + 0.07771719992160797, + -0.05780160799622536, + 0.055925846099853516, + 0.010003454983234406, + -0.0015815808437764645, + -0.03702716529369354, + 0.06079338118433952, + -0.02083830162882805, + 0.02014046534895897, + 0.016594218090176582, + 0.02074243500828743, + 0.021166769787669182, + -0.07852551341056824, + -0.08916047215461731, + -0.0032736321445554495, + 0.003079185960814357, + -0.047861747443675995, + -0.008014076389372349, + 0.1306304633617401, + 0.07211212068796158, + -0.052101340144872665, + -0.023624854162335396, + -0.06554707884788513, + -0.01295151561498642, + -0.005902831442654133, + 0.023559974506497383, + -0.09262343496084213, + -0.055623773485422134, + -0.08946206420660019, + -0.026243237778544426, + 0.025873936712741852, + 0.04895951971411705, + 0.0759393647313118, + -0.01963488943874836, + -0.04378339648246765, + 0.03234528750181198, + 0.07620088011026382, + 0.06368985772132874, + 0.014495756477117538, + 0.10961037129163742, + 0.11028028279542923, + -0.021316099911928177, + -0.004415513016283512 + ], + "chat-centered-bold||send,sent,messages,messaging,sms,texting,comment,square,bubble": [ + 0.004275628365576267, + -0.10211135447025299, + 0.002649204107001424, + 0.02592400461435318, + 0.022719604894518852, + -0.047585658729076385, + 0.09562405198812485, + -0.028912708163261414, + 0.03569571673870087, + 0.015231728553771973, + 0.029966002330183983, + 0.0446811281144619, + 0.016990920528769493, + 0.04607030749320984, + 0.05303370952606201, + 0.028488414362072945, + 0.013842226006090641, + -0.08741006255149841, + 0.018887195736169815, + 0.003665660973638296, + 0.01368578989058733, + 0.017872842028737068, + 0.04482335224747658, + 0.05423321574926376, + 0.03493597358465195, + 0.010822923853993416, + -0.009199429303407669, + 0.0487053208053112, + 0.017286701127886772, + -0.0742645263671875, + -0.01291622593998909, + 0.0388873852789402, + 0.18537458777427673, + 0.10411342233419418, + -0.05737224593758583, + 0.018492441624403, + -0.00917601678520441, + -0.006165570113807917, + -0.0034017309080809355, + 0.026892928406596184, + -0.07227887958288193, + -0.09180425107479095, + 0.03414856269955635, + 0.040485989302396774, + -0.00026938915834762156, + -0.026543352752923965, + -0.06660646945238113, + 0.014473795890808105, + -0.020267857238650322, + -0.004211422987282276, + -0.020133662968873978, + -0.10935844480991364, + -0.07107517868280411, + 0.0930991992354393, + 0.02963038720190525, + 0.031751979142427444, + -0.09556900709867477, + 0.016218489035964012, + 0.12493427842855453, + -0.023134930059313774, + 0.02393428608775139, + 0.007380375172942877, + 0.06198794022202492, + 0.05862218514084816, + 0.000159924675244838, + 0.016331816092133522, + -0.00013746369222644717, + 0.043870411813259125, + -0.030555177479982376, + -0.026961756870150566, + 0.030641740188002586, + -0.024590056389570236, + -0.02341601252555847, + -0.007899913936853409, + 0.010853156447410583, + 0.016355812549591064, + 0.01634081080555916, + -0.050447992980480194, + -0.06978773325681686, + 0.008457827381789684, + -0.09085146337747574, + -0.008651789277791977, + 0.003925688564777374, + 0.031902242451906204, + 0.001147460425272584, + 0.03715169057250023, + -0.038545116782188416, + -0.05023742467164993, + -0.09279901534318924, + -0.024289755150675774, + -0.06875928491353989, + -0.003951873164623976, + -0.044169437140226364, + 0.0678405910730362, + -0.130455881357193, + 0.014157072640955448, + 0.023541681468486786, + -0.03742271661758423, + -0.0608348473906517, + 0.08536657691001892, + 0.06887165457010269, + 0.01951499469578266, + 0.05147470161318779, + -0.07836392521858215, + 0.025610944256186485, + -0.054665904492139816, + 0.03377925232052803, + -0.03777435049414635, + 0.008204976096749306, + 0.0017591757932677865, + -0.07802145928144455, + -0.07791744917631149, + -0.03822694346308708, + -0.051966238766908646, + 0.024640964344143867, + -0.056044626981019974, + -0.03145001083612442, + -0.01098897960036993, + 0.14004217088222504, + 0.054225996136665344, + 0.0705738440155983, + -0.053839173167943954, + -0.04622318595647812, + -0.056591711938381195, + 0.0009663400705903769, + 0.05550818890333176, + 0.0009776089573279023, + -1.3460605096720207e-33, + 0.043681733310222626, + 0.061646539717912674, + -0.017454350367188454, + 0.14182430505752563, + 0.025420567020773888, + 0.02770579420030117, + -0.10206576436758041, + -0.06229018792510033, + -0.06745025515556335, + -0.029918789863586426, + 0.02937205880880356, + 0.039351094514131546, + -0.03484756872057915, + 0.06532774120569229, + 0.06203141435980797, + -0.05212341994047165, + 0.023946112021803856, + 0.010034802369773388, + -0.014238177798688412, + -0.039289407432079315, + -0.0924520194530487, + 0.08989626169204712, + -0.02146144025027752, + 0.0009704151889309287, + 0.02816728688776493, + 0.02850901521742344, + 0.053145524114370346, + -0.05531391128897667, + -0.04711168631911278, + 0.03308730572462082, + 0.03511544317007065, + 0.027530169114470482, + 0.02646305412054062, + 0.040313880890607834, + -0.0033748266287148, + 0.03304785490036011, + -0.08170127868652344, + -0.03828369081020355, + 0.020324407145380974, + 0.0562896765768528, + -0.11356500536203384, + -0.037958934903144836, + -0.06166263297200203, + -0.04477221891283989, + 0.028368087485432625, + 0.07859739661216736, + -0.06458742916584015, + -0.03336147964000702, + 0.011758699081838131, + -0.051141269505023956, + -0.01581636257469654, + 0.006249874364584684, + 0.008097263984382153, + 0.03154410421848297, + 0.02958103083074093, + -0.05361350253224373, + 0.02844211645424366, + 0.013478772714734077, + -0.016711264848709106, + 0.00405479408800602, + -0.028937337920069695, + -0.04572541266679764, + 0.017498470842838287, + -0.10743757337331772, + 0.017507972195744514, + -0.008882748894393444, + -0.08565143495798111, + -0.02588648721575737, + 0.024172674864530563, + -0.012553851120173931, + 0.001953038270585239, + 0.08362733572721481, + 0.04437430575489998, + 0.10849912464618683, + -0.09302233159542084, + 0.011426081880927086, + 0.041408997029066086, + 0.01972825452685356, + 0.020757241174578667, + -0.006881741341203451, + -0.07046347856521606, + 0.014456570148468018, + -0.044836513698101044, + 0.011160221882164478, + -0.028364242985844612, + -0.0315893329679966, + 0.02920033037662506, + -0.10118253529071808, + -0.04628370702266693, + 0.07158830016851425, + -0.1294815093278885, + 0.031054286286234856, + 0.05295955017209053, + -0.011222310364246368, + -0.1407957375049591, + 5.506870986898306e-34, + -0.027534373104572296, + 0.0884440541267395, + -0.12074893712997437, + 0.055820852518081665, + -0.00303062004968524, + 0.04209282621741295, + 0.13367506861686707, + 0.04040231928229332, + 0.03862941265106201, + 0.04960331693291664, + 0.015129717998206615, + -0.01837090402841568, + -0.04064786806702614, + -0.039173051714897156, + 0.025686373934149742, + 0.06837070733308792, + 0.06525792181491852, + 0.00887885969132185, + -0.0479683056473732, + -0.010938203893601894, + -0.007956908084452152, + -0.027841990813612938, + -0.07945364713668823, + 0.058893945068120956, + 0.022724797949194908, + 0.024834774434566498, + -0.02526494860649109, + -0.023449990898370743, + -0.0007344966870732605, + -0.015880273655056953, + 0.001681123161688447, + -0.015633627772331238, + 0.02408028021454811, + 0.020568011328577995, + -0.015659261494874954, + -0.0324091874063015, + 0.026070615276694298, + -0.0076060122810304165, + -0.02806014008820057, + 0.015257421880960464, + 0.08550260215997696, + 0.034161508083343506, + -0.04115293547511101, + 0.031278591603040695, + 0.0072160945273935795, + 0.002171713626012206, + -0.07527326047420502, + -0.044252630323171616, + -0.07972928881645203, + 0.061161916702985764, + 0.059034086763858795, + -0.0688365027308464, + 0.05050939694046974, + -0.0059812190011143684, + -0.05890732631087303, + -0.00427292799577117, + 0.02494940720498562, + 0.04366679489612579, + -0.036366917192935944, + -0.008054550737142563, + -0.024796755984425545, + -0.03919875994324684, + 0.04141247272491455, + -0.022365476936101913, + 0.003853910369798541, + -0.042130857706069946, + 0.04801621660590172, + 0.03387600928544998, + -0.037624239921569824, + -0.01096123456954956, + 0.12158199399709702, + -0.03911490738391876, + -0.05465075746178627, + 0.005657636094838381, + 0.05195779353380203, + -0.019889606162905693, + 0.03161325678229332, + -0.003264944301918149, + -0.08420757204294205, + 0.029987629503011703, + 0.013190279714763165, + 0.042534928768873215, + -0.001287373248487711, + 0.051584307104349136, + 0.019267551600933075, + 0.06053172051906586, + 0.02969895675778389, + 0.03414509817957878, + -0.004078518133610487, + -0.03439483791589737, + -0.01160438358783722, + 0.03718399628996849, + -0.04525914043188095, + 0.0019924526568502188, + -0.007042197976261377, + -2.0963089042425054e-08, + -0.10294625163078308, + -0.15462319552898407, + 0.0038721736054867506, + -0.002569795586168766, + 0.029648305848240852, + -0.02537270449101925, + 0.010901174508035183, + -0.06041606515645981, + 0.019265364855527878, + -0.02592836506664753, + -0.02098994329571724, + 0.02493554912507534, + -0.08761817216873169, + -0.0708661675453186, + 0.04270007088780403, + 0.011016473174095154, + -0.09211482107639313, + 0.024076279252767563, + -0.023259900510311127, + -0.07860613614320755, + 0.03473977372050285, + 0.07032512128353119, + -0.06350332498550415, + 0.03088376671075821, + -0.012957759201526642, + 0.012859459035098553, + -0.046551648527383804, + 0.08303993940353394, + -0.02669510617852211, + -0.016519742086529732, + -0.0013907470274716616, + 0.03684917837381363, + 0.02341589331626892, + -0.06637142598628998, + -0.08274634182453156, + 0.0014846372650936246, + 0.009373066015541553, + -0.013152750208973885, + -0.016023823991417885, + 0.09242244809865952, + 0.09103110432624817, + -0.0548742339015007, + 0.011565725319087505, + -0.041845161467790604, + -0.005206205416470766, + 0.002660036087036133, + 0.02725972793996334, + -0.020143287256360054, + -0.04459346458315849, + -0.07703443616628647, + -0.00570461992174387, + 0.041747719049453735, + 0.03326299786567688, + 0.08187916874885559, + 0.0025689390022307634, + -0.05456716939806938, + 0.0433560311794281, + 0.06534300744533539, + 0.046597015112638474, + -0.004561677109450102, + 0.10101696103811264, + 0.10631303489208221, + -0.03683946281671524, + 0.02450469508767128 + ], + "chat-centered-dots-bold||send,sent,messages,messaging,sms,texting,comment,square,bubble": [ + -0.002821617294102907, + -0.07999555766582489, + 0.02464679628610611, + 0.018629616126418114, + 0.0328352116048336, + -0.053207091987133026, + 0.11938609927892685, + -0.023803841322660446, + 0.03972481191158295, + 0.0016391262179240584, + 0.048382118344306946, + 0.02671198919415474, + 0.036667320877313614, + 0.020009692758321762, + 0.039474017918109894, + 0.036648787558078766, + 0.003451564582064748, + -0.09534713625907898, + 0.031220808625221252, + -0.0384109690785408, + 0.019963467493653297, + -0.006534421816468239, + 0.025742867961525917, + 0.06291589140892029, + 0.04192425683140755, + 0.0590047612786293, + -0.02448471635580063, + 0.04614514857530594, + -0.008184175007045269, + -0.05991138517856598, + -0.029942164197564125, + 0.033442046493291855, + 0.15304331481456757, + 0.07874557375907898, + -0.04162180796265602, + 0.013197041116654873, + 0.013264898210763931, + 0.03709451109170914, + -0.006203730124980211, + 0.01784473843872547, + -0.05297137796878815, + -0.12932856380939484, + 0.042230285704135895, + 0.05053660273551941, + 0.007446292322129011, + -0.00949301477521658, + -0.06099741905927658, + 0.03014984354376793, + -0.06162337586283684, + 0.023869507014751434, + -0.013897422701120377, + -0.10364740341901779, + -0.08240840584039688, + 0.08507110923528671, + 0.036193571984767914, + 0.024176789447665215, + -0.08024010807275772, + 0.04524386301636696, + 0.12175179272890091, + -0.00795079953968525, + 0.0007669209153391421, + 0.006549925077706575, + 0.028172975406050682, + 0.06461195647716522, + -0.0031973973382264376, + -0.00418410450220108, + -0.007537909783422947, + 0.010484686121344566, + -0.027855847030878067, + 0.002749986946582794, + 0.028128204867243767, + 0.0012624216033145785, + -0.04732389748096466, + 0.006711216177791357, + -0.007200992200523615, + 0.034785959869623184, + 0.011180604808032513, + -0.04739009216427803, + -0.06466898322105408, + 0.006621276494115591, + -0.08786419034004211, + 0.017242595553398132, + 0.03366217389702797, + 0.044943876564502716, + 0.011545740999281406, + 0.05914092808961868, + -0.025430351495742798, + -0.05187968909740448, + -0.08245643228292465, + -0.02255108952522278, + -0.06237088516354561, + -0.012090546078979969, + -0.026043830439448357, + 0.08400145173072815, + -0.12254948914051056, + 0.021211590617895126, + 0.03743469715118408, + -0.028625624254345894, + -0.04380339756608009, + 0.09028080850839615, + 0.06863493472337723, + -0.013318407349288464, + 0.02186157926917076, + -0.07870995253324509, + 0.01479040551930666, + -0.028634799644351006, + 0.014032738283276558, + -0.04846703261137009, + 0.03262033686041832, + 0.04382874071598053, + -0.0832645446062088, + -0.07363740354776382, + -0.04212028160691261, + -0.04648603871464729, + 0.011438471265137196, + -0.07351677864789963, + -0.062422193586826324, + -0.005562441889196634, + 0.16012626886367798, + 0.039476606994867325, + 0.0735478550195694, + -0.07400870323181152, + -0.06511817872524261, + -0.07669249922037125, + -0.01526735257357359, + 0.05800443887710571, + -0.014398031868040562, + -2.107564576411411e-33, + 0.04014072194695473, + 0.05922767147421837, + -0.0018015969544649124, + 0.09398891776800156, + 0.0026481261011213064, + 0.029931429773569107, + -0.09096550196409225, + -0.06446841359138489, + -0.05764247477054596, + -0.03418709337711334, + 0.021331720054149628, + 0.03725738823413849, + -0.025012491270899773, + 0.0730409175157547, + 0.076723612844944, + -0.06334946304559708, + 0.06215309724211693, + 0.013559582643210888, + -0.014031980186700821, + -0.0694119855761528, + -0.07671921700239182, + 0.06924685090780258, + -0.04247525706887245, + 0.02899034135043621, + 0.02594907581806183, + 0.05108672380447388, + 0.029055949300527573, + -0.0625506117939949, + -0.018145108595490456, + 0.04364186152815819, + 0.04253862798213959, + 0.027319619432091713, + 0.042179275304079056, + 0.039049457758665085, + -0.010772956535220146, + 0.04131583869457245, + -0.07454146444797516, + -0.058165960013866425, + 0.009319417178630829, + 0.019981401041150093, + -0.09460674226284027, + -0.05307808145880699, + -0.059352975338697433, + -0.03838958591222763, + 0.006403227336704731, + 0.07551463693380356, + -0.04766599461436272, + -0.03872695565223694, + -0.011140696704387665, + -0.05015253648161888, + -0.02332320250570774, + -0.012861577793955803, + 0.0163575392216444, + 0.0010757381096482277, + 0.046263858675956726, + -0.03503056615591049, + 0.011552806943655014, + -0.008545959368348122, + -0.03423291817307472, + 0.003265945240855217, + -0.008824128657579422, + -0.027385756373405457, + 0.03980925306677818, + -0.09684668481349945, + 0.001233606250025332, + -0.008587758988142014, + -0.08794449269771576, + -0.02915356121957302, + 0.031130529940128326, + 0.0129973404109478, + -0.000477315072203055, + 0.10672776401042938, + 0.047029390931129456, + 0.09309063851833344, + -0.09840289503335953, + 0.005003837868571281, + 0.04634978249669075, + 0.017491647973656654, + 0.010228188708424568, + 0.008472316898405552, + -0.08562532812356949, + -0.018426675349473953, + -0.054484039545059204, + -0.024085279554128647, + 0.0007621512049809098, + -0.035872239619493484, + 0.017571454867720604, + -0.09452211856842041, + -0.06328854709863663, + 0.020210620015859604, + -0.08591759949922562, + 0.01594826951622963, + 0.026216959580779076, + -0.01698288321495056, + -0.17138682305812836, + 1.0756489626893963e-33, + -0.033756375312805176, + 0.10483219474554062, + -0.10066546499729156, + 0.06354904919862747, + -0.027647551149129868, + 0.030547073110938072, + 0.11613766849040985, + 0.04018047824501991, + 0.03496157377958298, + 0.034109167754650116, + -0.013959860429167747, + 7.813795673428103e-05, + -0.025862546637654305, + -0.05307652801275253, + 0.014692801050841808, + 0.06802193820476532, + 0.07126162201166153, + 0.010363146662712097, + -0.026594456285238266, + -0.0067060175351798534, + -0.01840493269264698, + -0.0397290475666523, + -0.08254826068878174, + 0.0623302161693573, + 0.028240034356713295, + -0.0007203285931609571, + -0.007492566015571356, + -0.0638808161020279, + -0.01785818673670292, + 0.0033153670374304056, + 0.002233533887192607, + -0.012305020354688168, + 0.034767262637615204, + 0.013925990089774132, + -0.009645002894103527, + -0.04902321845293045, + 0.023677460849285126, + -0.04610617086291313, + -0.016372457146644592, + 0.007525597233325243, + 0.08151861280202866, + 0.02924932725727558, + 0.0033733444288372993, + 0.04327704384922981, + 0.006569390185177326, + -0.0007397508597932756, + -0.07063765078783035, + -0.005374543368816376, + -0.05916653200984001, + 0.05732058733701706, + 0.049225978553295135, + -0.06685031950473785, + 0.04702949523925781, + 0.0032414367888122797, + -0.06505055725574493, + -0.015430042520165443, + -0.0019648291636258364, + 0.06025778502225876, + -0.016633350402116776, + -0.03216397389769554, + -0.031056644394993782, + -0.05309930443763733, + 0.01814083568751812, + 0.014544813893735409, + 0.017288463190197945, + -0.04158655181527138, + 0.026509497314691544, + 0.032596226781606674, + -0.043093107640743256, + -0.024152783676981926, + 0.14146745204925537, + -0.027487847954034805, + -0.06380914896726608, + -0.00038163605495356023, + 0.051483262330293655, + -0.05146495997905731, + 0.021715426817536354, + -0.005436755251139402, + -0.09945114701986313, + 0.046899307519197464, + 0.011773278936743736, + 0.06646169722080231, + 0.022053062915802002, + 0.07436402887105942, + 0.0091764647513628, + 0.05376728996634483, + 0.02037486620247364, + 0.05597081407904625, + -0.012059519067406654, + -0.00563932117074728, + 0.0009299673838540912, + 0.06589888036251068, + -0.03213725984096527, + 0.0648324266076088, + 0.0030957588460296392, + -2.0747647155872073e-08, + -0.06661609560251236, + -0.13765175640583038, + 0.0012665445683524013, + -0.03168761730194092, + 0.04427090659737587, + 0.0018105815397575498, + 0.0032967361621558666, + -0.020997008308768272, + 0.020376021042466164, + -0.02860604040324688, + 0.0035838251933455467, + 0.007000981830060482, + -0.09741311520338058, + -0.06411823630332947, + 0.07328147441148758, + 0.01780996285378933, + -0.07711497694253922, + 0.03713753819465637, + -0.028720170259475708, + -0.06105293333530426, + 0.016925601288676262, + 0.07325553894042969, + -0.04224742203950882, + 0.03989749774336815, + -0.030613921582698822, + 0.015746749937534332, + -0.019289521500468254, + 0.07454562187194824, + -0.02701723761856556, + -0.0103220846503973, + -0.020044056698679924, + 0.04128529876470566, + 0.03761736676096916, + -0.09128228574991226, + -0.0960015058517456, + 0.025684146210551262, + -0.002165519865229726, + -0.0034167722333222628, + 0.001377931679598987, + 0.11613670736551285, + 0.07579996436834335, + -0.06899142265319824, + 0.013981188647449017, + -0.04108112305402756, + -0.0221560038626194, + 0.0065298802219331264, + 0.017455941066145897, + -0.03847206011414528, + -0.0683976486325264, + -0.09837763756513596, + -0.01329956203699112, + 0.057608772069215775, + 0.03159764036536217, + 0.06709056347608566, + 0.012075229547917843, + -0.040262602269649506, + 0.050988905131816864, + 0.060814425349235535, + 0.05611526221036911, + 0.0003280113451182842, + 0.08804395794868469, + 0.10979051887989044, + -0.008154052309691906, + 0.014066443778574467 + ], + "chat-centered-slash-bold||*new*,messages,messaging,sms,texting,comment,square,bubble": [ + -0.010886277072131634, + -0.09596887975931168, + 0.0131794773042202, + 0.029046546667814255, + 0.015769056975841522, + -0.04948635771870613, + 0.0664837434887886, + -0.04136871173977852, + 0.052359092980623245, + 0.020926788449287415, + 0.06729445606470108, + 0.03527359291911125, + 0.008684433996677399, + 0.0553927980363369, + 0.04004695639014244, + 0.04469390586018562, + 0.014087158255279064, + -0.06565461307764053, + 0.0032534829806536436, + 0.007054387591779232, + 0.008332379162311554, + 0.059962496161460876, + 0.019852492958307266, + 0.03742436692118645, + 0.03767050430178642, + 0.02745073288679123, + -0.010374167002737522, + 0.04164288192987442, + 0.022495398297905922, + -0.07605241984128952, + 0.001882954966276884, + 0.009679483249783516, + 0.19249971210956573, + 0.09656863659620285, + -0.005214592907577753, + 0.01907249726355076, + 0.03247940167784691, + -0.0182037316262722, + 0.01768820360302925, + 0.01790851354598999, + -0.05685095116496086, + -0.12195169180631638, + 0.0082164965569973, + 0.02634943276643753, + -0.003353394102305174, + -0.029384369030594826, + -0.0647994801402092, + -0.01110886875540018, + -0.002920737722888589, + 0.015496345236897469, + -0.033425334841012955, + -0.10282381623983383, + -0.0949135571718216, + 0.07700499147176743, + 0.05647611990571022, + 0.01986367255449295, + -0.09430254995822906, + 0.03996751829981804, + 0.12840989232063293, + -0.007083180360496044, + 0.035229798406362534, + -0.007303376216441393, + 0.06036118417978287, + 0.051797740161418915, + -0.024721724912524223, + -0.022414643317461014, + -0.02272786572575569, + 0.033871907740831375, + -0.030097391456365585, + -0.002938891062512994, + -0.00453953817486763, + -0.009397249668836594, + -0.053882479667663574, + 0.03213650733232498, + -0.017143448814749718, + 0.0022070580162107944, + 0.008174658752977848, + -0.034163061529397964, + -0.06113438680768013, + -0.012725248001515865, + -0.06348539888858795, + -0.0016608027508482337, + 0.013807344250380993, + 0.05009549856185913, + 0.014923961833119392, + 0.04630954563617706, + -0.04071648046374321, + -0.06715357303619385, + -0.08175155520439148, + -0.043823134154081345, + -0.04951862990856171, + -0.04307300224900246, + -0.014545932412147522, + 0.07740150392055511, + -0.1351299285888672, + 0.009507422335445881, + 0.0039024115540087223, + -0.03300664201378822, + -0.06294239312410355, + 0.08978879451751709, + 0.05746003985404968, + 0.01493094302713871, + 0.01685800589621067, + -0.07277346402406693, + 0.02266131341457367, + -0.0311160646378994, + 0.038125455379486084, + -0.02108515240252018, + -0.002591053256765008, + 0.024288177490234375, + -0.06072109937667847, + -0.08471072465181351, + -0.04902852326631546, + -0.05677036941051483, + 0.015979574993252754, + -0.06781725585460663, + -0.04453812539577484, + -0.04786347970366478, + 0.14313653111457825, + 0.11368710547685623, + 0.08126440644264221, + -0.08146937191486359, + -0.06990891695022583, + -0.04899115115404129, + -0.006374511867761612, + 0.05908613279461861, + -0.012501095421612263, + -1.0218873612125544e-33, + 0.06747133284807205, + 0.08236588537693024, + -0.01667068712413311, + 0.11947142332792282, + 0.036033038049936295, + 0.02281382493674755, + -0.09929297864437103, + -0.03462851792573929, + -0.05635692551732063, + -0.022162938490509987, + 0.049844685941934586, + 0.007353202439844608, + -0.03976895660161972, + 0.03919564560055733, + 0.05530489236116409, + -0.05117427185177803, + 0.02840290777385235, + -0.025234533473849297, + -0.011770693585276604, + -0.054467957466840744, + -0.09348677843809128, + 0.12415628880262375, + -0.0023906321730464697, + 0.019941581413149834, + 0.01728280633687973, + 0.03220172971487045, + 0.06835591048002243, + -0.08017586171627045, + -0.0416455939412117, + 0.042335834354162216, + 0.017255747690796852, + 0.015333270654082298, + 0.05057859048247337, + 0.05509588122367859, + -0.02203434891998768, + 0.09967730939388275, + -0.039985500276088715, + -0.03932763636112213, + -0.01674588955938816, + 0.048058442771434784, + -0.11213628202676773, + -0.05965197831392288, + -0.08967138081789017, + -0.03526338189840317, + 0.02407866343855858, + 0.053589828312397, + -0.06204083934426308, + -0.06347908079624176, + -0.006969447713345289, + -0.03446510434150696, + -0.0227276049554348, + 0.02154528722167015, + 0.03259402513504028, + 0.05496829003095627, + -0.005899899639189243, + -0.08213583379983902, + -0.008803975768387318, + -0.013272886164486408, + 0.015795478597283363, + -0.010509993880987167, + -0.04181607812643051, + -0.015050586313009262, + 0.018060648813843727, + -0.07996099442243576, + -0.039214931428432465, + -0.01254594698548317, + -0.05996943265199661, + -0.006246068049222231, + 0.019095316529273987, + -0.0016497704200446606, + -0.027261577546596527, + 0.06262806057929993, + 0.038834020495414734, + 0.1013149693608284, + -0.1343303918838501, + 0.00636251037940383, + -0.0017498488305136561, + 0.01803489588201046, + 0.033575624227523804, + -0.03567148372530937, + -0.08658313006162643, + -0.0023364911321550608, + -0.025638094171881676, + 0.01667209342122078, + 0.009881807491183281, + -0.044558025896549225, + 0.027798805385828018, + -0.09500329196453094, + -0.027698932215571404, + 0.045389868319034576, + -0.10697511583566666, + 0.02746560238301754, + 0.011610137298703194, + -0.025245744735002518, + -0.10481426119804382, + -2.4378659993649963e-34, + -0.004160822369158268, + 0.09352374076843262, + -0.12350744754076004, + 0.04316660016775131, + -0.03718515485525131, + 0.025739561766386032, + 0.09806777536869049, + 0.038738224655389786, + 0.016462422907352448, + 0.021613094955682755, + 0.018491175025701523, + 0.011181402020156384, + -0.005026157479733229, + -0.07044265419244766, + 0.06953444331884384, + 0.07575817406177521, + 0.030733583495020866, + -0.000612421368714422, + -0.045248162001371384, + 0.007750296499580145, + -0.02348357066512108, + -0.022075548768043518, + -0.07159701734781265, + 0.06880436092615128, + 0.0126329455524683, + 0.02777257189154625, + 0.017474060878157616, + -0.027906857430934906, + 0.023504948243498802, + -0.005316241644322872, + 0.023207642138004303, + -0.017331039533019066, + 0.004798876121640205, + 0.008993181400001049, + -0.014818644151091576, + -0.012330194935202599, + -0.016831781715154648, + -0.0064722876995801926, + -0.02215217426419258, + -0.022454451769590378, + 0.08577760308980942, + 0.018276400864124298, + -0.012062053196132183, + 0.05581529438495636, + -0.0019423431949689984, + -0.002569356234744191, + -0.055029477924108505, + -0.059470318257808685, + -0.07234373688697815, + 0.058730341494083405, + 0.07480848580598831, + -0.08411426097154617, + 0.04674360901117325, + -0.004995259456336498, + -0.06563915312290192, + 0.008227398619055748, + -0.013784592971205711, + 0.06869149953126907, + -0.07388127595186234, + 0.02480608969926834, + -0.016286274418234825, + -0.019710447639226913, + -0.005920418072491884, + -0.009325500577688217, + 0.01243466604501009, + -0.06290922313928604, + 0.018713274970650673, + 0.050390735268592834, + -0.04266035556793213, + -0.012399084866046906, + 0.10059057176113129, + 0.014919526875019073, + -0.06422939896583557, + -0.008868425153195858, + 0.0446496419608593, + -0.031922873109579086, + 0.0005301336641423404, + -0.010962951928377151, + -0.0681949257850647, + 0.06104066222906113, + 0.001326130935922265, + 0.054204296320676804, + -0.0067086536437273026, + 0.05295892804861069, + -0.002333986572921276, + 0.030875708907842636, + 0.004617637488991022, + 0.10237602889537811, + -0.024609776213765144, + -0.0646456927061081, + -0.019282909110188484, + 0.045008931308984756, + -0.049520570784807205, + 0.0470731258392334, + -0.01956203207373619, + -2.235113072401873e-08, + -0.10297077894210815, + -0.14760255813598633, + -0.006127021741122007, + 0.0012613959843292832, + 0.03488557040691376, + -0.01867736130952835, + -0.013820954598486423, + -0.05001337081193924, + 0.03685082867741585, + -0.002832862315699458, + 0.013745603151619434, + 0.028953323140740395, + -0.07712848484516144, + -0.051589276641607285, + 0.031760022044181824, + 0.017830129712820053, + -0.06657691299915314, + 0.054939206689596176, + -0.018615063279867172, + -0.044566843658685684, + 0.023712214082479477, + 0.06367472559213638, + -0.015570123679935932, + 0.03107074834406376, + -0.007441656664013863, + -0.015406339429318905, + -0.03232864290475845, + 0.05946199968457222, + -0.029259780421853065, + 0.008228728547692299, + 0.010003356263041496, + 0.047290652990341187, + 0.009836510755121708, + -0.05994030460715294, + -0.08870761096477509, + 0.01229021605104208, + -0.0001959151850314811, + -0.006629932206124067, + 0.006512992549687624, + 0.08374407142400742, + 0.08064969629049301, + -0.07930050790309906, + 0.011663240380585194, + -0.03570294752717018, + -0.04646957293152809, + -0.013504954054951668, + 0.030222076922655106, + -0.02468598075211048, + -0.057170674204826355, + -0.09870035946369171, + 0.01097159180790186, + 0.060994964092969894, + 0.029439732432365417, + 0.05933111533522606, + 0.03390234336256981, + -0.025461601093411446, + 0.04816951975226402, + 0.08649594336748123, + 0.03011130727827549, + -0.0035649563651531935, + 0.10664477199316025, + 0.09671645611524582, + -0.009780521504580975, + 0.010566885583102703 + ], + "chat-centered-text-bold||send,sent,messages,messaging,sms,texting,comment,square,bubble": [ + 0.006380780134350061, + -0.08444873243570328, + 0.008367483504116535, + 0.022544272243976593, + 0.023769214749336243, + -0.0399969108402729, + 0.09982476383447647, + -0.02283415012061596, + 0.042279068380594254, + 0.011086788959801197, + 0.04349169135093689, + 0.043384503573179245, + 0.02524668537080288, + 0.04941429942846298, + 0.05661414563655853, + 0.027976950630545616, + 0.016042282804846764, + -0.09376715868711472, + 0.016833212226629257, + -0.009746783412992954, + 0.008622725494205952, + 0.018631186336278915, + 0.05081871524453163, + 0.05721580609679222, + 0.029352374374866486, + 0.023730263113975525, + -0.025624731555581093, + 0.05162285640835762, + 0.01309426873922348, + -0.06748680770397186, + -0.023523950949311256, + 0.03285811096429825, + 0.18461839854717255, + 0.10293129086494446, + -0.05914873257279396, + 0.019722674041986465, + -0.010010048747062683, + -0.0008793308516032994, + -0.008445446379482746, + 0.02631181851029396, + -0.07964397966861725, + -0.10148683190345764, + 0.03572024032473564, + 0.05104171857237816, + 0.006577424239367247, + -0.026228681206703186, + -0.06861880421638489, + 0.016985496506094933, + -0.020872687920928, + -0.0006130935507826507, + -0.02188122645020485, + -0.10721804946660995, + -0.06541357189416885, + 0.09323790669441223, + 0.02475362829864025, + 0.03451378270983696, + -0.0851806178689003, + 0.01321458350867033, + 0.12281171977519989, + -0.01841268129646778, + 0.0254258643835783, + 0.0147444698959589, + 0.05474270507693291, + 0.05923448130488396, + -0.00487044733017683, + 0.01687779277563095, + -0.0030101840384304523, + 0.04158636927604675, + -0.03333789110183716, + -0.021952692419290543, + 0.029586385935544968, + -0.022814247757196426, + -0.03252119943499565, + 0.004052631091326475, + 0.003594588255509734, + 0.013171372003853321, + 0.008210261352360249, + -0.05065746605396271, + -0.06807906180620193, + 0.014035415835678577, + -0.09190414845943451, + -0.01077407505363226, + 0.012177402153611183, + 0.03838453069329262, + -0.006045724730938673, + 0.036117468029260635, + -0.029986144974827766, + -0.04330943152308464, + -0.085746631026268, + -0.01592576876282692, + -0.05616886541247368, + -0.007388545200228691, + -0.03395608440041542, + 0.06153837591409683, + -0.14919306337833405, + 0.02430086024105549, + 0.010233902372419834, + -0.04649481922388077, + -0.055004701018333435, + 0.08189359307289124, + 0.06127231568098068, + 0.008826063945889473, + 0.054678961634635925, + -0.07578491419553757, + 0.019209787249565125, + -0.04882294312119484, + 0.038340721279382706, + -0.043538592755794525, + 0.01564418338239193, + -0.0002612859825603664, + -0.06558878719806671, + -0.07657459378242493, + -0.04594879969954491, + -0.050958842039108276, + 0.028417453169822693, + -0.054526545107364655, + -0.033649150282144547, + -0.013683423399925232, + 0.13949395716190338, + 0.05854872241616249, + 0.06933484226465225, + -0.05521383136510849, + -0.06025439500808716, + -0.05940479412674904, + -0.004847256932407618, + 0.055418580770492554, + 0.0060533094219863415, + -1.4136680570691069e-33, + 0.0453740619122982, + 0.05697472766041756, + -0.01164552103728056, + 0.145757794380188, + 0.03114168718457222, + 0.030776267871260643, + -0.10997682064771652, + -0.06397846341133118, + -0.06498003005981445, + -0.03200341761112213, + 0.030371034517884254, + 0.02828790992498398, + -0.04073949158191681, + 0.06490962952375412, + 0.06232207268476486, + -0.058197733014822006, + 0.023683801293373108, + 0.00532569782808423, + 0.0002906491863541305, + -0.04265287145972252, + -0.08747777342796326, + 0.0816592201590538, + -0.013922085985541344, + 0.008202970959246159, + 0.033779680728912354, + 0.03325561061501503, + 0.0568850077688694, + -0.05901855602860451, + -0.0439470075070858, + 0.025645678862929344, + 0.03192448988556862, + 0.021155644208192825, + 0.040449049323797226, + 0.03826536238193512, + -0.009001375176012516, + 0.03237172216176987, + -0.08688946068286896, + -0.040285512804985046, + 0.026086701080203056, + 0.052318673580884933, + -0.1160072535276413, + -0.04218454286456108, + -0.060848869383335114, + -0.05289480835199356, + 0.030540835112333298, + 0.07689031958580017, + -0.06402374804019928, + -0.037295863032341, + 0.011865567415952682, + -0.052189961075782776, + -0.009535831399261951, + 0.004778239410370588, + 0.006994093302637339, + 0.02796611189842224, + 0.0301638413220644, + -0.051777489483356476, + 0.02629869617521763, + 0.01418845821171999, + -0.020231930539011955, + 0.014835772104561329, + -0.028161948546767235, + -0.04456806182861328, + 0.015310210175812244, + -0.11593270301818848, + 0.019958440214395523, + -0.01412180159240961, + -0.08612548559904099, + -0.03455702215433121, + 0.0224751066416502, + -0.016604915261268616, + -0.011651293374598026, + 0.07387866824865341, + 0.04223689064383507, + 0.11175072193145752, + -0.0965697169303894, + 0.00946183130145073, + 0.031434040516614914, + 0.01168722752481699, + 0.013019099831581116, + -0.0058778878301382065, + -0.06846573948860168, + -0.0014100695261731744, + -0.03064754605293274, + 0.0011623251484706998, + -0.026076773181557655, + -0.023646393790841103, + 0.0257972851395607, + -0.11039102077484131, + -0.03783952072262764, + 0.06453120708465576, + -0.1266205757856369, + 0.032637160271406174, + 0.048398781567811966, + -0.018508275970816612, + -0.12170054018497467, + 4.953141056796525e-34, + -0.03146279230713844, + 0.07879957556724548, + -0.12160052359104156, + 0.059571556746959686, + 0.005660759750753641, + 0.044976018369197845, + 0.12782685458660126, + 0.049710504710674286, + 0.04411309212446213, + 0.04086834564805031, + 0.003475677687674761, + -0.007835686206817627, + -0.031214995309710503, + -0.04606251418590546, + 0.022984812036156654, + 0.07833384722471237, + 0.06764709949493408, + 0.0012918163556605577, + -0.04473264515399933, + -0.011861832812428474, + -0.011642620898783207, + -0.02606234885752201, + -0.07840278744697571, + 0.06252340227365494, + 0.01733812317252159, + 0.012329746969044209, + -0.025627966970205307, + -0.021333493292331696, + 0.007238431833684444, + -0.02089216187596321, + 0.0035165601875633, + -0.012115849182009697, + 0.033886197954416275, + 0.020978165790438652, + -0.017785124480724335, + -0.036360058933496475, + 0.032819781452417374, + -0.01327713392674923, + -0.02816275879740715, + 0.03199620544910431, + 0.09698744118213654, + 0.03417620807886124, + -0.03136811405420303, + 0.025784846395254135, + -0.002872615586966276, + 0.00875671487301588, + -0.08628644794225693, + -0.051278695464134216, + -0.07033542543649673, + 0.05909693241119385, + 0.05746154114603996, + -0.07277639955282211, + 0.0445399135351181, + -0.013287974521517754, + -0.05113197863101959, + -0.010638931766152382, + 0.023568635806441307, + 0.04284661263227463, + -0.033923741430044174, + -0.018357325345277786, + -0.02733064815402031, + -0.035780731588602066, + 0.039505936205387115, + -0.013713213615119457, + 0.014247260056436062, + -0.04590032994747162, + 0.04529610276222229, + 0.034224070608615875, + -0.04133014380931854, + -0.011239501647651196, + 0.1251462996006012, + -0.03868025913834572, + -0.05835115537047386, + 0.006665247026830912, + 0.04847263544797897, + -0.017812034115195274, + 0.024762073531746864, + 0.0004971807356923819, + -0.09169735014438629, + 0.02893250435590744, + 0.02569632977247238, + 0.045696012675762177, + 0.0016209722962230444, + 0.05721890926361084, + 0.021708542481064796, + 0.05699804425239563, + 0.023148858919739723, + 0.03655901178717613, + -0.003934449516236782, + -0.03062000498175621, + -0.017944471910595894, + 0.04744503274559975, + -0.03750142455101013, + 0.01458934135735035, + -0.005675150081515312, + -2.0443915005330382e-08, + -0.08975110948085785, + -0.16666452586650848, + -0.009324101731181145, + -0.003908609040081501, + 0.024356583133339882, + -0.01890093833208084, + 0.015048522502183914, + -0.05410837382078171, + 0.02346351183950901, + -0.03437235578894615, + -0.012985979206860065, + 0.028308436274528503, + -0.08684037625789642, + -0.06559538096189499, + 0.03524317219853401, + 0.009024294093251228, + -0.09630938619375229, + 0.02241431176662445, + -0.015199832618236542, + -0.07905630022287369, + 0.04195031896233559, + 0.06566925346851349, + -0.0693003460764885, + 0.032533079385757446, + -0.014473161660134792, + 0.015782978385686874, + -0.04742221534252167, + 0.08743888139724731, + -0.028157444670796394, + -0.015913326293230057, + 0.002478758804500103, + 0.02923712693154812, + 0.019239723682403564, + -0.07422354072332382, + -0.07594709098339081, + -0.0010897244792431593, + 0.008259378373622894, + -0.02258010394871235, + -0.011771019548177719, + 0.08704860508441925, + 0.09248639643192291, + -0.04441100358963013, + 0.0022501798812299967, + -0.0419389009475708, + -0.0007812519324943423, + 0.0014959360705688596, + 0.028827480971813202, + -0.0334281399846077, + -0.040761448442935944, + -0.07918205857276917, + -0.0022456918377429247, + 0.04117533937096596, + 0.03760315477848053, + 0.07098831981420517, + 0.0033911678474396467, + -0.0418579988181591, + 0.05436434596776962, + 0.06488368660211563, + 0.049234502017498016, + -0.005036951042711735, + 0.09977413713932037, + 0.11025839298963547, + -0.03141694515943527, + 0.01816411316394806 + ], + "chat-circle-bold||send,sent,messages,messaging,sms,texting,comment,round,bubble": [ + -0.009775660932064056, + -0.060675520449876785, + -0.03622810170054436, + 0.04216314107179642, + 0.0522509329020977, + -0.08408920466899872, + 0.11847732216119766, + -0.027625977993011475, + 0.057571303099393845, + -0.03926854953169823, + 0.02538982592523098, + 0.013804673217236996, + 0.0310676209628582, + 0.013302472420036793, + 0.07949869334697723, + 0.025079410523176193, + -0.011809236370027065, + -0.07208202034235, + 0.0065085128881037235, + -0.048510145395994186, + 0.008946861140429974, + 0.02925480157136917, + 0.0430099256336689, + 0.08230531215667725, + 0.028598248958587646, + 0.002959112636744976, + -0.018059302121400833, + 0.016929367557168007, + -0.0019198176451027393, + -0.07143938541412354, + -0.0450359545648098, + 0.0669456496834755, + 0.15035603940486908, + 0.0939670130610466, + -0.0471673458814621, + 0.024423301219940186, + -0.0099922651425004, + 0.022090403363108635, + -0.014085797592997551, + 0.005149393808096647, + -0.06463736295700073, + -0.09466379880905151, + 0.026876524090766907, + 0.03680696710944176, + -0.0016865698853507638, + -0.01279127411544323, + -0.08045900613069534, + 0.020348597317934036, + -0.03588397800922394, + 0.0545402429997921, + -0.004851539619266987, + -0.09807760268449783, + -0.09083864092826843, + 0.08189473301172256, + 0.03866209834814072, + 0.03734089061617851, + -0.08712384104728699, + 0.011354596354067326, + 0.0960298404097557, + 0.008416401222348213, + 0.0060378327034413815, + -0.00033524938044138253, + 0.06773708015680313, + 0.031004508957266808, + -0.025686945766210556, + 0.00017954611394088715, + -0.021363578736782074, + 0.0018583514029160142, + -0.016870832070708275, + -0.023715458810329437, + 0.013535491190850735, + -0.011753964237868786, + -0.06332352757453918, + 0.00885330606251955, + -0.002433805726468563, + 0.05860943719744682, + 0.007172130048274994, + -0.0096735879778862, + -0.08982027322053909, + -0.0038820565678179264, + -0.07458269596099854, + -0.025866318494081497, + 0.012129904702305794, + 0.04595351964235306, + 0.03079552762210369, + 0.05128166824579239, + -0.014466140419244766, + -0.07301411032676697, + -0.07059724628925323, + -0.007354941219091415, + -0.06703894585371017, + 0.007749070879071951, + -0.025656696408987045, + 0.0611695758998394, + -0.14515426754951477, + 0.028075743466615677, + 0.03622840344905853, + -0.04109593853354454, + -0.07524880766868591, + 0.09403449296951294, + 0.05284842476248741, + 0.003546247724443674, + 0.045541804283857346, + -0.06510075181722641, + -0.007869699969887733, + -0.04060054570436478, + 0.03632716089487076, + -0.046939361840486526, + 0.024438584223389626, + 0.026319926604628563, + -0.07403016090393066, + -0.08366546779870987, + -0.007545113563537598, + -0.05886121466755867, + 0.024802515283226967, + -0.04061264544725418, + -0.04710332676768303, + -0.009486514143645763, + 0.11284711211919785, + 0.07915733754634857, + 0.05771534889936447, + -0.05135268345475197, + -0.07539989054203033, + -0.05718090757727623, + -0.039531219750642776, + 0.03671444579958916, + 0.017361294478178024, + -1.4387308823255843e-33, + 0.0661349892616272, + 0.07178609818220139, + -0.021381055936217308, + 0.0911133736371994, + -0.011737888678908348, + 0.014320763759315014, + -0.08057750016450882, + -0.1016843169927597, + -0.04163181036710739, + -0.036410097032785416, + 0.01405780017375946, + 0.018795901909470558, + 0.0009354411740787327, + 0.07097470015287399, + 0.05524903163313866, + -0.06750503182411194, + 0.049933724105358124, + -0.012624326162040234, + 0.008461374789476395, + -0.05098856985569, + -0.11182408034801483, + 0.05640276148915291, + -0.05938633531332016, + 0.009849020279943943, + 0.030029987916350365, + 0.06023731455206871, + 0.07438191026449203, + -0.06025340408086777, + -0.01973368600010872, + 0.032393570989370346, + 0.0456271730363369, + -0.008001928217709064, + 0.02901093289256096, + 0.07190252840518951, + 0.015184443444013596, + 0.023454198613762856, + -0.08570470660924911, + -0.02494843676686287, + -0.0020219336729496717, + 0.03597357124090195, + -0.09160500019788742, + -0.07513131946325302, + -0.0833645910024643, + -0.029654722660779953, + 0.010529093444347382, + 0.09279026091098785, + -0.06489422172307968, + -0.023260092362761497, + -0.014758795499801636, + -0.03137772157788277, + -0.012264125980436802, + 0.006352768279612064, + -4.6215664042392746e-05, + 0.0138068413361907, + 0.024064816534519196, + -0.06222974509000778, + 0.017996106296777725, + -0.004164352547377348, + -0.04808931052684784, + 0.004908586852252483, + -0.005871922243386507, + -0.0040911417454481125, + 0.017628394067287445, + -0.09860444068908691, + -0.016570178791880608, + 0.01804305426776409, + -0.08915434777736664, + -0.03879677504301071, + 0.013540767133235931, + -0.03972282260656357, + 0.004772815853357315, + 0.11141150444746017, + 0.05917028337717056, + 0.10743051022291183, + -0.09760128706693649, + 0.019276022911071777, + 0.027033759281039238, + 0.030137835070490837, + 0.029396606609225273, + -0.017553895711898804, + -0.08220179378986359, + -0.011245558969676495, + -0.05338573083281517, + 0.01099119707942009, + 0.021879147738218307, + -0.02166113443672657, + 0.028740504756569862, + -0.10381123423576355, + -0.03641112521290779, + 0.05399787053465843, + -0.11162155866622925, + 0.046532951295375824, + 0.07739816606044769, + -0.015318586491048336, + -0.12006300687789917, + 1.5401585271806555e-34, + -0.018726812675595284, + 0.09217242896556854, + -0.09019947797060013, + 0.030113274231553078, + -0.008489308878779411, + 0.03790108114480972, + 0.09105230867862701, + 0.0583520233631134, + 0.04125659912824631, + 0.037855397909879684, + -0.028010092675685883, + -0.020285574719309807, + -0.033700089901685715, + -0.04404172673821449, + 0.0475822351872921, + 0.07257688045501709, + 0.04469657316803932, + 0.018748953938484192, + -0.030907299369573593, + 0.02347935549914837, + -0.037294626235961914, + -0.020656194537878036, + -0.08752796053886414, + 0.07358486205339432, + -0.013653840869665146, + 0.011285346001386642, + 0.036515649408102036, + -0.05612051114439964, + -0.012959693558514118, + -0.019619811326265335, + -0.010054443031549454, + -0.025380121544003487, + 0.04756459221243858, + 0.05021100491285324, + 0.011613828130066395, + -0.034914612770080566, + 0.07291470468044281, + -0.04562922567129135, + -0.04606510326266289, + -0.017986958846449852, + 0.05102575570344925, + 0.018347105011343956, + -0.022544855251908302, + 0.028162896633148193, + -0.024287834763526917, + -0.02275361865758896, + -0.04241323843598366, + -0.026633620262145996, + -0.0793309435248375, + 0.06366758793592453, + 0.09018044918775558, + -0.06623119115829468, + 0.06152649223804474, + 0.018675794824957848, + -0.053629204630851746, + -0.008973783813416958, + 0.030610814690589905, + 0.06684304028749466, + 0.013388904742896557, + -0.011628075502812862, + -0.03763704001903534, + -0.06322077661752701, + 0.03460248187184334, + 0.03052886202931404, + 0.028756050392985344, + -0.0311869028955698, + 0.045595984905958176, + 0.009367715567350388, + -0.0364416129887104, + -0.0021166224032640457, + 0.10317916423082352, + -0.015525823459029198, + -0.03468143939971924, + 0.028780825436115265, + 0.07885441184043884, + -0.021724259480834007, + 0.03276892751455307, + -0.018174299970269203, + -0.08886847645044327, + 0.028509940952062607, + 0.005680367816239595, + 0.03346334397792816, + -0.008099241182208061, + 0.04731614515185356, + 0.012555556371808052, + 0.01779758185148239, + 0.006074485834687948, + 0.05208880826830864, + -0.013752409256994724, + -0.027347346767783165, + -0.014245009049773216, + 0.045780640095472336, + -0.009391517378389835, + 0.04968223720788956, + 0.033309582620859146, + -2.092907358530738e-08, + -0.06421133875846863, + -0.13812315464019775, + -0.0002680491015780717, + 0.0006304666749201715, + 0.08717908710241318, + 0.0016001943731680512, + -0.01280281599611044, + -0.04092566296458244, + 0.0052574397996068, + -0.051488861441612244, + 0.008013281039893627, + 0.038409456610679626, + -0.09001375734806061, + -0.0783722922205925, + 0.03779919445514679, + -0.01297916192561388, + -0.07050440460443497, + 0.01762566715478897, + 0.004239697474986315, + -0.06550314277410507, + 0.030545979738235474, + 0.05156504362821579, + -0.027563711628317833, + 0.012092226184904575, + 0.003941531293094158, + -0.00939926877617836, + -0.020388653501868248, + 0.07814402878284454, + -0.04234260693192482, + -0.029857872053980827, + -0.004929265473037958, + 0.02082023397088051, + 0.013987453654408455, + -0.07520618289709091, + -0.07708331942558289, + -0.017181945964694023, + -0.01344235148280859, + -0.027860619127750397, + 0.004861738067120314, + 0.13669732213020325, + 0.07201875001192093, + -0.022027449682354927, + -0.0074801696464419365, + -0.04977205768227577, + -0.017890604212880135, + 0.016508573666214943, + 0.025554126128554344, + -0.08463937789201736, + -0.06293680518865585, + -0.08369113504886627, + -0.04330730438232422, + 0.0211347546428442, + 0.07989738136529922, + 0.07367625832557678, + -0.014614993706345558, + -0.03572825714945793, + 0.0688977912068367, + 0.081802137196064, + 0.02248387224972248, + 0.037068095058202744, + 0.08371838927268982, + 0.11909201741218567, + -0.006336314138025045, + 0.0011760187335312366 + ], + "chat-circle-dots-bold||send,sent,messages,messaging,sms,texting,comment,round,bubble": [ + -0.00684139970690012, + -0.05107297748327255, + -0.012032655067741871, + 0.02629443071782589, + 0.05273514240980148, + -0.07169640064239502, + 0.12779030203819275, + -0.02295605093240738, + 0.04702192544937134, + -0.03009522706270218, + 0.04701796546578407, + -0.000838439678773284, + 0.04481237009167671, + -0.0035227166954427958, + 0.05906929448246956, + 0.03101390227675438, + -0.013005014508962631, + -0.08054619282484055, + 0.01884932816028595, + -0.07177770137786865, + 0.015576869249343872, + 0.003354869782924652, + 0.02467796951532364, + 0.07752793282270432, + 0.038938865065574646, + 0.0436435267329216, + -0.03081156127154827, + 0.019843880087137222, + -0.015254617668688297, + -0.05951465666294098, + -0.048472996801137924, + 0.05679010972380638, + 0.13137154281139374, + 0.0786551907658577, + -0.0417754165828228, + 0.012454375624656677, + 0.012557018548250198, + 0.047150954604148865, + -0.014179302379488945, + -0.0018052568193525076, + -0.057294655591249466, + -0.12110696732997894, + 0.03306015580892563, + 0.048152875155210495, + 0.005668046418577433, + -0.002207556739449501, + -0.07041721791028976, + 0.036221668124198914, + -0.0733257457613945, + 0.05580894649028778, + -0.002255671191960573, + -0.08877445012331009, + -0.10018357634544373, + 0.08209171146154404, + 0.04153364524245262, + 0.02411908656358719, + -0.072026327252388, + 0.02510223165154457, + 0.10007382184267044, + 0.011688313446938992, + -0.013918736949563026, + 0.005089250393211842, + 0.03323975205421448, + 0.05251561105251312, + -0.01914839819073677, + -0.01258943323045969, + -0.013957054354250431, + -0.015999281778931618, + -0.007454937789589167, + -0.005027429200708866, + 0.006746442522853613, + 0.009721473790705204, + -0.06706330925226212, + 0.02033841423690319, + -0.01662571355700493, + 0.05290539562702179, + 0.007264099549502134, + -0.02271682396531105, + -0.0793558731675148, + -0.008294781669974327, + -0.0806017741560936, + 0.003964491654187441, + 0.03369724005460739, + 0.06117432191967964, + 0.03130660578608513, + 0.06589579582214355, + -0.00991040375083685, + -0.06330770999193192, + -0.06664270907640457, + -0.007849819026887417, + -0.05663783475756645, + -0.014140616171061993, + -0.014144644141197205, + 0.07139023393392563, + -0.1316690891981125, + 0.032181426882743835, + 0.04244454205036163, + -0.03452160209417343, + -0.0495937317609787, + 0.09196276217699051, + 0.050617802888154984, + -0.017510291188955307, + 0.025191960856318474, + -0.07592613995075226, + -0.012100226245820522, + -0.028773419559001923, + 0.021576127037405968, + -0.05383790656924248, + 0.0398852564394474, + 0.05145687609910965, + -0.0776166021823883, + -0.07806239277124405, + -0.02053910680115223, + -0.05857638269662857, + 0.020671814680099487, + -0.05345914885401726, + -0.06739141047000885, + -0.0030697546899318695, + 0.12905560433864594, + 0.05566788092255592, + 0.061980511993169785, + -0.06614670157432556, + -0.07157915830612183, + -0.07608997076749802, + -0.04349030554294586, + 0.05020026117563248, + -0.004723103251308203, + -1.662038809467325e-33, + 0.060312338173389435, + 0.05959973484277725, + -0.015973955392837524, + 0.06671752780675888, + -0.02026006020605564, + 0.021259192377328873, + -0.07251131534576416, + -0.09088622778654099, + -0.03592592850327492, + -0.03149675950407982, + 0.01732560805976391, + 0.04000820964574814, + -0.003631642321124673, + 0.08364187926054001, + 0.07138281315565109, + -0.06747975945472717, + 0.07050144672393799, + 0.0019204888958483934, + 0.00248129665851593, + -0.06752059608697891, + -0.0869951844215393, + 0.05042632296681404, + -0.050759393721818924, + 0.03423426300287247, + 0.03940337896347046, + 0.06923440098762512, + 0.041090525686740875, + -0.061854127794504166, + -0.0122982207685709, + 0.040179383009672165, + 0.04704594984650612, + -0.006285777315497398, + 0.04256100207567215, + 0.0556270033121109, + 0.013718198984861374, + 0.034247852861881256, + -0.07774285972118378, + -0.0436919704079628, + -0.0016018657479435205, + 0.012638194486498833, + -0.08382077515125275, + -0.08267994225025177, + -0.08138115704059601, + -0.026597335934638977, + -0.0006722983089275658, + 0.08051726222038269, + -0.053249042481184006, + -0.025431204587221146, + -0.02340630255639553, + -0.03381499648094177, + -0.01826712116599083, + -0.010127285495400429, + 0.016400525346398354, + -0.006051608826965094, + 0.032431598752737045, + -0.03679598495364189, + 0.0160174909979105, + -0.018342941999435425, + -0.05238470062613487, + 0.007598341908305883, + 0.0010642014676705003, + 0.0071075595915317535, + 0.03604387119412422, + -0.09331400692462921, + -0.016834044829010963, + 0.00795240979641676, + -0.08611108362674713, + -0.040191881358623505, + 0.027179116383194923, + -0.006697012577205896, + -0.004318122286349535, + 0.11651165038347244, + 0.05497100204229355, + 0.09579561650753021, + -0.0962703600525856, + 0.011315149255096912, + 0.028728172183036804, + 0.021999048069119453, + 0.008940930478274822, + -0.0014019423397257924, + -0.0912410244345665, + -0.03194569796323776, + -0.05560095235705376, + -0.013496031984686852, + 0.022483840584754944, + -0.02896965853869915, + 0.01528513990342617, + -0.10145987570285797, + -0.062092170119285583, + 0.015045913867652416, + -0.08198618143796921, + 0.03459147363901138, + 0.04352233186364174, + -0.02016291953623295, + -0.14644740521907806, + 3.558184665740601e-34, + -0.029881488531827927, + 0.0996638759970665, + -0.07520918548107147, + 0.04533223807811737, + -0.03402286767959595, + 0.02674279361963272, + 0.0867200419306755, + 0.05501503124833107, + 0.034293536096811295, + 0.02884499914944172, + -0.036179617047309875, + -0.0032625694293528795, + -0.025942716747522354, + -0.051711998879909515, + 0.02787313237786293, + 0.07166369259357452, + 0.05503378063440323, + 0.02102549560368061, + -0.009203868918120861, + 0.024400725960731506, + -0.04199162498116493, + -0.02861969731748104, + -0.09281715750694275, + 0.07244858890771866, + 0.003863350488245487, + -0.0020072869956493378, + 0.03033515252172947, + -0.08733680844306946, + -0.022260252386331558, + -0.00608768779784441, + -0.0020334413275122643, + -0.026417404413223267, + 0.047471318393945694, + 0.03229793161153793, + 0.004909917712211609, + -0.04964462295174599, + 0.0641154795885086, + -0.06560913473367691, + -0.039009932428598404, + -0.005760727450251579, + 0.06337183713912964, + 0.019569702446460724, + 0.010820186696946621, + 0.040976230055093765, + -0.011287905275821686, + -0.018673451617360115, + -0.05629343539476395, + 0.002857582177966833, + -0.0629880428314209, + 0.05792514607310295, + 0.07396925240755081, + -0.06838733702898026, + 0.050301626324653625, + 0.011932509019970894, + -0.06111324951052666, + -0.014795869588851929, + 0.00802632700651884, + 0.06939646601676941, + 0.018375596031546593, + -0.02555129863321781, + -0.03725047782063484, + -0.07010290026664734, + 0.015068700537085533, + 0.055397968739271164, + 0.027540767565369606, + -0.03809189423918724, + 0.026505745947360992, + 0.016292855143547058, + -0.05236607417464256, + -0.016631143167614937, + 0.12098397314548492, + -0.014987588860094547, + -0.04865172877907753, + 0.013469690456986427, + 0.0655200406908989, + -0.047796156257390976, + 0.015086461789906025, + -0.020456714555621147, + -0.09835740923881531, + 0.038657743483781815, + 0.0037789950147271156, + 0.05188671872019768, + 0.01658475212752819, + 0.0653599426150322, + 0.0045030806213617325, + 0.02531965635716915, + -2.371031769143883e-05, + 0.0626182034611702, + -0.008776898495852947, + -0.007568327244371176, + -0.0012177618918940425, + 0.07150670886039734, + -0.011843967251479626, + 0.09356269240379333, + 0.032212261110544205, + -1.9996219791096337e-08, + -0.048544690012931824, + -0.1339079588651657, + 0.005791241303086281, + -0.025355681777000427, + 0.08017153292894363, + 0.017550714313983917, + -0.006010239012539387, + -0.009755992330610752, + 0.010702059604227543, + -0.04833105951547623, + 0.025693949311971664, + 0.022765986621379852, + -0.09886079281568527, + -0.06777676194906235, + 0.0748496726155281, + 0.0038511434104293585, + -0.06189323589205742, + 0.033171672374010086, + -0.010564679279923439, + -0.05781903117895126, + 0.01860526204109192, + 0.061335138976573944, + -0.02124004252254963, + 0.0241001695394516, + -0.011115975677967072, + 0.0019638119265437126, + -0.0002793923777062446, + 0.0726810097694397, + -0.03502212092280388, + -0.012653305195271969, + -0.011812273412942886, + 0.027875293046236038, + 0.02231276035308838, + -0.09681336581707001, + -0.0895874947309494, + 0.019041426479816437, + -0.02036306820809841, + -0.02160479500889778, + 0.01590648479759693, + 0.1414460986852646, + 0.05861712992191315, + -0.03590531274676323, + -0.01137212011963129, + -0.04678654670715332, + -0.026346055790781975, + 0.009256557561457157, + 0.011794629506766796, + -0.07447045296430588, + -0.07525146752595901, + -0.09493717551231384, + -0.03601197153329849, + 0.040018778294324875, + 0.06308702379465103, + 0.06235717609524727, + -0.0005890200845897198, + -0.02853938192129135, + 0.07268232852220535, + 0.06972354650497437, + 0.046219516545534134, + 0.024964584037661552, + 0.07653621584177017, + 0.11042758822441101, + 0.01129517424851656, + -0.0009977902518585324 + ], + "chat-circle-slash-bold||*new*,messages,messaging,sms,texting,comment,round,bubble": [ + -0.012005342170596123, + -0.05698099359869957, + -0.027987148612737656, + 0.035091888159513474, + 0.049686867743730545, + -0.0758916363120079, + 0.08800884336233139, + -0.03581036627292633, + 0.06145309656858444, + -0.020446956157684326, + 0.056274376809597015, + 0.00647477013990283, + 0.021519441157579422, + 0.024453287944197655, + 0.07029607892036438, + 0.03164990618824959, + -0.011225399561226368, + -0.05160149559378624, + -0.0030470823403447866, + -0.03392830118536949, + 0.004990679677575827, + 0.06400956213474274, + 0.025028569623827934, + 0.05990981683135033, + 0.03696635365486145, + 0.0245291069149971, + -0.015619928017258644, + 0.01182791031897068, + 0.00829373113811016, + -0.07597363740205765, + -0.029931122437119484, + 0.041576288640499115, + 0.15872026979923248, + 0.0903041660785675, + -0.007932302542030811, + 0.028386637568473816, + 0.032509271055459976, + 0.00871733482927084, + 0.0018425608286634088, + -0.004442231263965368, + -0.05222472548484802, + -0.11015953868627548, + 0.0006105676875449717, + 0.025695817545056343, + -0.007573277689516544, + -0.019586874172091484, + -0.08226276189088821, + -0.004858598578721285, + -0.02434873767197132, + 0.0537039078772068, + -0.014724770560860634, + -0.09107295423746109, + -0.1148945763707161, + 0.06698422878980637, + 0.05933956056833267, + 0.025510679930448532, + -0.08322443813085556, + 0.02503809705376625, + 0.10437501221895218, + 0.015443728305399418, + 0.010570069774985313, + -0.008135663345456123, + 0.06379636377096176, + 0.03849513828754425, + -0.038985174149274826, + -0.029701562598347664, + -0.028165282681584358, + -0.007682096678763628, + -0.013750577345490456, + -0.0074808006174862385, + -0.014567647129297256, + 0.0005660838214680552, + -0.07368602603673935, + 0.03727801516652107, + -0.023476535454392433, + 0.031981002539396286, + -0.006429953034967184, + -0.009716623462736607, + -0.07836227118968964, + -0.025006050243973732, + -0.05056227743625641, + -0.014450347051024437, + 0.02222498133778572, + 0.06391780078411102, + 0.04189814254641533, + 0.06359690427780151, + -0.025311488658189774, + -0.08219484984874725, + -0.07009899616241455, + -0.024411708116531372, + -0.04835977405309677, + -0.04317622259259224, + -0.004079868085682392, + 0.06220775470137596, + -0.14509692788124084, + 0.02783116139471531, + 0.013681075535714626, + -0.04093075543642044, + -0.06928728520870209, + 0.09530109167098999, + 0.044744860380887985, + 0.00449646171182394, + 0.01677239127457142, + -0.06677485257387161, + -0.004200611263513565, + -0.023143254220485687, + 0.03911897540092468, + -0.031421270221471786, + 0.011985943652689457, + 0.03749072924256325, + -0.05847989022731781, + -0.09222382307052612, + -0.02368871122598648, + -0.06273301690816879, + 0.024640126153826714, + -0.05021645128726959, + -0.049215853214263916, + -0.03806624561548233, + 0.11935479938983917, + 0.1287829726934433, + 0.07913374900817871, + -0.07590098679065704, + -0.07945917546749115, + -0.05143599212169647, + -0.03752404823899269, + 0.047547608613967896, + -0.001303966506384313, + -7.058790312100065e-34, + 0.08332885801792145, + 0.08309009671211243, + -0.028879990801215172, + 0.0767141580581665, + 0.0052063013426959515, + 0.01326685305684805, + -0.07713960856199265, + -0.06136993691325188, + -0.034503668546676636, + -0.02386162243783474, + 0.045978061854839325, + 0.01141734141856432, + -0.016277147457003593, + 0.0491965226829052, + 0.0594090074300766, + -0.055045098066329956, + 0.04743920639157295, + -0.034810226410627365, + 0.004527450073510408, + -0.06175930052995682, + -0.11057983338832855, + 0.09691101312637329, + -0.029653048142790794, + 0.029967695474624634, + 0.023282071575522423, + 0.05571476370096207, + 0.07793568819761276, + -0.07285290211439133, + -0.03017790988087654, + 0.04091035947203636, + 0.019744694232940674, + -0.012363476678729057, + 0.0531381219625473, + 0.07878447324037552, + 0.0016858559101819992, + 0.08652179688215256, + -0.05286770313978195, + -0.02812841720879078, + -0.032141029834747314, + 0.030843986198306084, + -0.10594186931848526, + -0.08693080395460129, + -0.1057957261800766, + -0.025735940784215927, + 0.0121658556163311, + 0.06518024951219559, + -0.06555075198411942, + -0.04454103112220764, + -0.025451485067605972, + -0.026500247418880463, + -0.020053250715136528, + 0.0275802593678236, + 0.025187397375702858, + 0.035422831773757935, + -0.00795712973922491, + -0.08240442723035812, + -0.008120846934616566, + -0.02356189303100109, + -0.015019773505628109, + -0.0074139847420156, + -0.01648395135998726, + 0.017664581537246704, + 0.01752481982111931, + -0.0737624391913414, + -0.05383911356329918, + 0.01158639695495367, + -0.07034698128700256, + -0.021967865526676178, + 0.016976099461317062, + -0.02211778797209263, + -0.0285123810172081, + 0.08116698265075684, + 0.04960036277770996, + 0.10323459655046463, + -0.13162663578987122, + 0.013645946979522705, + -0.004839101806282997, + 0.03267250955104828, + 0.03800820931792259, + -0.03373432531952858, + -0.09130386263132095, + -0.01929657906293869, + -0.03499773144721985, + 0.015372552908957005, + 0.029707908630371094, + -0.041257716715335846, + 0.026655346155166626, + -0.10170240700244904, + -0.02608025260269642, + 0.03387316316366196, + -0.10230568051338196, + 0.0453428290784359, + 0.027827542275190353, + -0.028728190809488297, + -0.0997072160243988, + -7.837977762802157e-34, + -0.00019676335796248168, + 0.08563899993896484, + -0.09740549325942993, + 0.024141592904925346, + -0.04176318272948265, + 0.017845459282398224, + 0.06511172652244568, + 0.05068967863917351, + 0.02032482624053955, + 0.016356810927391052, + -0.013705268502235413, + 0.007287215441465378, + -0.004788211081176996, + -0.07008413225412369, + 0.08755256980657578, + 0.08410124480724335, + 0.011936645023524761, + 0.01086451020091772, + -0.027389587834477425, + 0.03654489666223526, + -0.04037070646882057, + -0.012094971723854542, + -0.07980117946863174, + 0.077491894364357, + -0.011343217454850674, + 0.016807638108730316, + 0.05669066309928894, + -0.055404238402843475, + 0.010937179438769817, + -0.01408857200294733, + 0.011577726341784, + -0.03057289682328701, + 0.023453256115317345, + 0.03134188801050186, + 0.007321052253246307, + -0.020954826846718788, + 0.027864869683980942, + -0.044497475028038025, + -0.04754967987537384, + -0.03760618716478348, + 0.0660184919834137, + 0.005857260897755623, + -0.0030046231113374233, + 0.0499439537525177, + -0.02354380115866661, + -0.01968754455447197, + -0.033593710511922836, + -0.041049208492040634, + -0.07628936320543289, + 0.06329619884490967, + 0.09765402972698212, + -0.08691804111003876, + 0.05479106307029724, + 0.004733700770884752, + -0.05707934871315956, + 0.0017843814566731453, + 0.0023831550497561693, + 0.07906994968652725, + -0.03283886983990669, + 0.02334345318377018, + -0.028675954788923264, + -0.04389612004160881, + -0.007191694341599941, + 0.04160509258508682, + 0.026359176263213158, + -0.05413723364472389, + 0.014328696765005589, + 0.027948683127760887, + -0.05222930759191513, + -0.010229254141449928, + 0.08991585671901703, + 0.0234066154807806, + -0.042832132428884506, + 0.011476173996925354, + 0.05955531820654869, + -0.03554264456033707, + 0.00723639689385891, + -0.02750471606850624, + -0.07438971847295761, + 0.05415899679064751, + -0.00789092481136322, + 0.04692179337143898, + -0.012334396131336689, + 0.04674394056200981, + -0.00735818175598979, + 0.0057636224664747715, + -0.01648024469614029, + 0.10389890521764755, + -0.025559106841683388, + -0.0528189018368721, + -0.018502632156014442, + 0.056891877204179764, + -0.020344089716672897, + 0.08395326137542725, + 0.016698069870471954, + -2.161719159232689e-08, + -0.07587212324142456, + -0.13878938555717468, + 0.0006810102495364845, + 0.002017259830608964, + 0.0773811787366867, + -0.000213127292227, + -0.025751404464244843, + -0.03736524283885956, + 0.020817607641220093, + -0.024418938905000687, + 0.035968054085969925, + 0.04175764322280884, + -0.0772840678691864, + -0.05864889547228813, + 0.028888335451483727, + 0.000730494677554816, + -0.045202117413282394, + 0.05386284366250038, + -0.0021873838268220425, + -0.03797914460301399, + 0.023005995899438858, + 0.050732459872961044, + -0.0030282370280474424, + 0.012881103903055191, + 0.005645405501127243, + -0.02556130848824978, + -0.011242011561989784, + 0.059724099934101105, + -0.04197381064295769, + 0.005657574161887169, + 0.010110910050570965, + 0.03664429858326912, + 0.0007787279319018126, + -0.0696219652891159, + -0.08288229256868362, + 0.0014440299710258842, + -0.01897488348186016, + -0.018817586824297905, + 0.020246699452400208, + 0.12639079988002777, + 0.06046599894762039, + -0.04051514342427254, + -0.009678577072918415, + -0.04101477935910225, + -0.04975854605436325, + -0.00795645173639059, + 0.021057557314634323, + -0.06890365481376648, + -0.06366782635450363, + -0.10174737125635147, + -0.018745314329862595, + 0.04706037417054176, + 0.0640084445476532, + 0.056333884596824646, + 0.022371739149093628, + -0.010976309888064861, + 0.0765969529747963, + 0.09340795874595642, + 0.013927583582699299, + 0.029447389766573906, + 0.09041433036327362, + 0.10527999699115753, + 0.02018490806221962, + -0.002770566614344716 + ], + "chat-circle-text-bold||send,sent,messages,messaging,sms,texting,comment,round,bubble": [ + -0.000900504644960165, + -0.05140145123004913, + -0.03473014011979103, + 0.03504732623696327, + 0.05183356627821922, + -0.07162905484437943, + 0.11456383019685745, + -0.021390656009316444, + 0.05988426133990288, + -0.03320431709289551, + 0.039741404354572296, + 0.01247104536741972, + 0.035206351429224014, + 0.01166458148509264, + 0.08540038019418716, + 0.020301243290305138, + -0.007506589870899916, + -0.0725291296839714, + 0.007933233864605427, + -0.05815798416733742, + 0.010837092064321041, + 0.029197607189416885, + 0.04990584775805473, + 0.07933496683835983, + 0.02820194512605667, + 0.010800025425851345, + -0.030108634382486343, + 0.022516915574669838, + 0.002596972743049264, + -0.06533436477184296, + -0.05189460515975952, + 0.05699003115296364, + 0.15576566755771637, + 0.09504665434360504, + -0.05335257947444916, + 0.023922620341181755, + -0.007003033068031073, + 0.026701567694544792, + -0.017681466415524483, + 0.0034389884676784277, + -0.07420729100704193, + -0.10016076266765594, + 0.020926494151353836, + 0.045603472739458084, + 0.005407398100942373, + -0.014241430908441544, + -0.08142667263746262, + 0.0232147928327322, + -0.04077892750501633, + 0.05080116540193558, + -0.008399979211390018, + -0.09156061708927155, + -0.08988095074892044, + 0.0866185650229454, + 0.03338971361517906, + 0.03716680034995079, + -0.07836369425058365, + 0.006774970795959234, + 0.09991384297609329, + 0.00929735042154789, + 0.001543504069559276, + 0.008277138695120811, + 0.05548453703522682, + 0.03865924850106239, + -0.02659742720425129, + 0.004898312501609325, + -0.016765205189585686, + 0.0038625337183475494, + -0.015108773484826088, + -0.0281980037689209, + 0.009737555868923664, + -0.013958834111690521, + -0.061049386858940125, + 0.015238741412758827, + -0.011855538934469223, + 0.05028828606009483, + 0.0026657627895474434, + -0.0139677869156003, + -0.08897465467453003, + -0.0034232367761433125, + -0.07994794100522995, + -0.02438785508275032, + 0.020674819126725197, + 0.05750728026032448, + 0.026827285066246986, + 0.05321664735674858, + -0.007953477092087269, + -0.06079879403114319, + -0.0721486434340477, + 0.0025752896908670664, + -0.053007517009973526, + -0.006036018021404743, + -0.021356862038373947, + 0.053619492799043655, + -0.1574835181236267, + 0.035220418125391006, + 0.024791961535811424, + -0.04955790564417839, + -0.061152197420597076, + 0.08689296245574951, + 0.04619394987821579, + -0.005191134754568338, + 0.04607584699988365, + -0.06349541991949081, + -0.01319526694715023, + -0.04098891839385033, + 0.043029844760894775, + -0.054536689072847366, + 0.03127817064523697, + 0.024358736351132393, + -0.06571809202432632, + -0.08600368350744247, + -0.019236288964748383, + -0.06506162881851196, + 0.03381511941552162, + -0.04024723917245865, + -0.04510146751999855, + -0.009214519523084164, + 0.11423521488904953, + 0.07864163815975189, + 0.055856309831142426, + -0.05004814267158508, + -0.0777699276804924, + -0.06050509214401245, + -0.04146677628159523, + 0.038748614490032196, + 0.017671607434749603, + -1.2979825152169007e-33, + 0.0685495063662529, + 0.06218654289841652, + -0.020406998693943024, + 0.09290973097085953, + -0.007814262062311172, + 0.019029827788472176, + -0.08971008658409119, + -0.09842249006032944, + -0.03723005950450897, + -0.03451772406697273, + 0.021305160596966743, + 0.023418905213475227, + -0.006713198032230139, + 0.0697425976395607, + 0.05845106020569801, + -0.06813982874155045, + 0.0419217087328434, + -0.008035259321331978, + 0.017561960965394974, + -0.05178707465529442, + -0.10532307624816895, + 0.05599503964185715, + -0.04198550060391426, + 0.014129853807389736, + 0.04351940378546715, + 0.05750365927815437, + 0.07317686825990677, + -0.057313140481710434, + -0.0281133484095335, + 0.025058859959244728, + 0.04126637056469917, + -0.015907756984233856, + 0.04366778954863548, + 0.07068680226802826, + 0.013432953506708145, + 0.025061961263418198, + -0.09519337862730026, + -0.02697458676993847, + 0.005096662323921919, + 0.034748375415802, + -0.09916798025369644, + -0.07707905769348145, + -0.0799737349152565, + -0.038871608674526215, + 0.013356225565075874, + 0.08641678094863892, + -0.07199113816022873, + -0.02448757365345955, + -0.01193759310990572, + -0.03502127528190613, + -0.0015719026559963822, + 0.007900082506239414, + 0.0010951849399134517, + 0.013789964839816093, + 0.026279378682374954, + -0.0516805499792099, + 0.022402089089155197, + -0.004594644997268915, + -0.049309421330690384, + 0.011781378649175167, + -0.007450541015714407, + -0.0029916386120021343, + 0.01925920508801937, + -0.10262145102024078, + -0.01021567638963461, + 0.016846012324094772, + -0.08900302648544312, + -0.05070725083351135, + 0.014621825888752937, + -0.041654542088508606, + -0.009214525111019611, + 0.09750834852457047, + 0.054399870336055756, + 0.1077454462647438, + -0.10346448421478271, + 0.020240435376763344, + 0.018504999577999115, + 0.021300463005900383, + 0.02263694815337658, + -0.012781931087374687, + -0.08372814953327179, + -0.024293435737490654, + -0.04380287975072861, + 0.010706043802201748, + 0.012891882099211216, + -0.02110390178859234, + 0.02652391977608204, + -0.10958590358495712, + -0.033077266067266464, + 0.046013329178094864, + -0.11641836166381836, + 0.04514339938759804, + 0.06346672773361206, + -0.02549682930111885, + -0.10686647891998291, + -8.500981393773834e-37, + -0.024916911497712135, + 0.08411581814289093, + -0.0923287495970726, + 0.03663088381290436, + -0.007874424569308758, + 0.03855673223733902, + 0.08937687426805496, + 0.06600932031869888, + 0.04627380892634392, + 0.03165583312511444, + -0.028858885169029236, + -0.013605911284685135, + -0.030453018844127655, + -0.05063670873641968, + 0.038625139743089676, + 0.08097917586565018, + 0.04541326314210892, + 0.018561437726020813, + -0.02340201660990715, + 0.022699477151036263, + -0.03914067521691322, + -0.018721967935562134, + -0.09096825867891312, + 0.0741221085190773, + -0.00910026766359806, + 0.00295657548122108, + 0.02443641424179077, + -0.05249296873807907, + -0.006172493565827608, + -0.0273326076567173, + -0.005049253348261118, + -0.019601883366703987, + 0.04857455566525459, + 0.047690801322460175, + 0.0025231586769223213, + -0.037832461297512054, + 0.07314606755971909, + -0.043189194053411484, + -0.04733515903353691, + 0.0076417033560574055, + 0.07138096541166306, + 0.02180120162665844, + -0.013687817379832268, + 0.028924472630023956, + -0.028189767152071, + -0.01787768304347992, + -0.05853624269366264, + -0.03560929745435715, + -0.07450278848409653, + 0.06043480709195137, + 0.08819963037967682, + -0.0710303857922554, + 0.05108409374952316, + 0.009780947118997574, + -0.04623904451727867, + -0.014629540964961052, + 0.033703699707984924, + 0.06142277643084526, + 0.0025550248101353645, + -0.014649391174316406, + -0.03852556273341179, + -0.061241380870342255, + 0.0331994891166687, + 0.041914232075214386, + 0.032056037336587906, + -0.03598745912313461, + 0.03988121449947357, + 0.009650108404457569, + -0.04491129145026207, + -0.0054538254626095295, + 0.10524478554725647, + -0.021948546171188354, + -0.03642759844660759, + 0.02409263513982296, + 0.07233831286430359, + -0.023366060107946396, + 0.022232860326766968, + -0.01504039578139782, + -0.0935993567109108, + 0.022434353828430176, + 0.016756359487771988, + 0.04130220413208008, + -0.005022123456001282, + 0.0564439482986927, + 0.011636809445917606, + 0.021904753521084785, + -0.002557074651122093, + 0.04947871342301369, + -0.00862106867134571, + -0.030667467042803764, + -0.016229089349508286, + 0.05589287728071213, + -0.007463948335498571, + 0.0581815168261528, + 0.02605380304157734, + -2.0217093776864203e-08, + -0.05864958092570305, + -0.15139323472976685, + -0.001214043004438281, + 0.0003305204736534506, + 0.07532333582639694, + 0.009337831288576126, + -0.0037873077671974897, + -0.03733188658952713, + 0.011901617981493473, + -0.052942730486392975, + 0.016820218414068222, + 0.0391523614525795, + -0.08676120638847351, + -0.07718972861766815, + 0.03857982158660889, + -0.009694082662463188, + -0.06850765645503998, + 0.01599065214395523, + 0.006745335180312395, + -0.06570982933044434, + 0.03806491196155548, + 0.05264278128743172, + -0.039645761251449585, + 0.019049305468797684, + 0.0060187228955328465, + -0.0038298757281154394, + -0.022545918822288513, + 0.08261868357658386, + -0.04028744995594025, + -0.01765165477991104, + 0.0009058896102942526, + 0.017223719507455826, + 0.009957680478692055, + -0.08585452288389206, + -0.07062632590532303, + -0.008195819333195686, + -0.013857759535312653, + -0.03471766412258148, + 0.009997683577239513, + 0.13467760384082794, + 0.06935713440179825, + -0.0156494602560997, + -0.022287635132670403, + -0.049312371760606766, + -0.0073859975673258305, + 0.011870454996824265, + 0.021141335368156433, + -0.0865892544388771, + -0.06036285310983658, + -0.08335193246603012, + -0.03803109750151634, + 0.0263644028455019, + 0.07660830020904541, + 0.06439481675624847, + -0.014891290105879307, + -0.027118628844618797, + 0.07606861740350723, + 0.0800122320652008, + 0.03141254931688309, + 0.032871536910533905, + 0.08134961873292923, + 0.11731335520744324, + 0.001842342084273696, + -0.0014369143173098564 + ], + "chat-dots-bold||send,sent,messages,messaging,sms,texting,comment,square,bubble": [ + -0.01004791259765625, + -0.06548133492469788, + 0.03220271319150925, + 0.03627834469079971, + 0.03276848420500755, + -0.0576302669942379, + 0.13105632364749908, + -0.03806690126657486, + 0.03837739676237106, + -0.009023291990160942, + 0.03852903097867966, + 0.013547077775001526, + 0.05113929137587547, + 0.006259263027459383, + 0.046129073947668076, + 0.04847041517496109, + 0.004734847228974104, + -0.08108685910701752, + 0.02343180775642395, + -0.059241753071546555, + 0.03367764875292778, + 0.006206664256751537, + 0.016874544322490692, + 0.04736964404582977, + 0.06011475995182991, + 0.05212496593594551, + -0.028941819444298744, + 0.04157714545726776, + -0.010820715688169003, + -0.054232172667980194, + -0.02296721562743187, + 0.03519011661410332, + 0.14101816713809967, + 0.07465902715921402, + -0.013852239586412907, + 0.024966076016426086, + 0.007962248288094997, + 0.047666314989328384, + -0.0171046145260334, + 0.027753593400120735, + -0.05344771221280098, + -0.132735013961792, + 0.02574215643107891, + 0.04001900181174278, + 0.005926191341131926, + -0.02423090673983097, + -0.049572255462408066, + 0.01682758517563343, + -0.05774562805891037, + 0.042750678956508636, + -0.0035739457234740257, + -0.08507020771503448, + -0.07931788265705109, + 0.07280736416578293, + 0.030210651457309723, + 0.017617765814065933, + -0.07260429859161377, + 0.05557044595479965, + 0.09857533872127533, + 0.014090939424932003, + -0.024608071893453598, + 0.01250773761421442, + 0.029667671769857407, + 0.033174723386764526, + -0.009514463134109974, + 0.001002605422399938, + -0.018895823508501053, + 0.002946869470179081, + -0.03245643898844719, + 0.03213701397180557, + 0.020307227969169617, + 0.012346800416707993, + -0.053487375378608704, + 0.022132279351353645, + -0.03490854799747467, + 0.05111832916736603, + 0.024436520412564278, + -0.029525673016905785, + -0.057292837649583817, + 0.014856762252748013, + -0.08880621194839478, + -0.0007785588386468589, + 0.01779353804886341, + 0.03910846635699272, + 0.027851147577166557, + 0.06389176845550537, + -0.02915935590863228, + -0.05988867208361626, + -0.06922804564237595, + -0.01790151745080948, + -0.059802375733852386, + -0.02602394111454487, + 0.003037156304344535, + 0.10176398605108261, + -0.11360332369804382, + 0.022876456379890442, + 0.05920026823878288, + -0.006772719789296389, + -0.03619927540421486, + 0.08498410880565643, + 0.05309479683637619, + -0.020296599715948105, + 0.01346526201814413, + -0.06573649495840073, + -0.0008506053709425032, + -0.017040470615029335, + 0.01692168042063713, + -0.055346790701150894, + 0.04898455739021301, + 0.05127876251935959, + -0.07729839533567429, + -0.08707813173532486, + -0.018698545172810555, + -0.046690501272678375, + 0.010096495039761066, + -0.05951586738228798, + -0.06883364170789719, + -0.01936553791165352, + 0.14688840508460999, + 0.05527745559811592, + 0.07065768539905548, + -0.08045998960733414, + -0.06738343089818954, + -0.06839100271463394, + -0.022886134684085846, + 0.037867773324251175, + 0.00805884413421154, + -1.7874438528909083e-33, + 0.06922802329063416, + 0.06169669330120087, + 0.00015109695959836245, + 0.07863052189350128, + -0.004417091608047485, + 0.03394906222820282, + -0.08721230924129486, + -0.0946890339255333, + -0.06606218218803406, + -0.027191683650016785, + 0.016072923317551613, + 0.016959460452198982, + -0.014649434946477413, + 0.08465255051851273, + 0.0601884163916111, + -0.060372453182935715, + 0.06803079694509506, + 0.013447877950966358, + 0.005793194752186537, + -0.056652091443538666, + -0.08531081676483154, + 0.04196453467011452, + -0.05699276924133301, + 0.032101329416036606, + 0.023291954770684242, + 0.06306970119476318, + 0.038011401891708374, + -0.06786894798278809, + 0.007810396607965231, + 0.04699771851301193, + 0.05251579359173775, + 0.014755218289792538, + 0.04000261053442955, + 0.05150298401713371, + -0.012509706430137157, + 0.02137395180761814, + -0.0746351033449173, + -0.04366754740476608, + -0.005053555127233267, + 0.007115487474948168, + -0.08523152023553848, + -0.07239194959402084, + -0.05722201615571976, + -0.043652549386024475, + -0.000510687823407352, + 0.06680303066968918, + -0.04348451644182205, + -0.04183714836835861, + -0.03143085166811943, + -0.029958689585328102, + -0.007922209799289703, + -0.018498064950108528, + 0.018289053812623024, + 0.01008179597556591, + 0.03939094394445419, + -0.042303964495658875, + -0.006748500745743513, + -0.009644928388297558, + -0.034384965896606445, + 0.011959402821958065, + -0.005104945041239262, + -0.0126083018258214, + 0.05114750564098358, + -0.08952807635068893, + -0.0068840389139950275, + 0.008596008643507957, + -0.07342256605625153, + -0.022613883018493652, + 0.013343789614737034, + 0.006822209805250168, + 0.00499748345464468, + 0.11695526540279388, + 0.039758987724781036, + 0.07488631457090378, + -0.10212496668100357, + 0.008270662277936935, + 0.04255381226539612, + 0.027816222980618477, + 0.0258868969976902, + -0.01838027499616146, + -0.09325765073299408, + -0.04199472442269325, + -0.06566215306520462, + -0.016991158947348595, + 0.02444813959300518, + -0.015389394015073776, + 0.002194295870140195, + -0.10337457060813904, + -0.06177305802702904, + 0.01689045876264572, + -0.08232796937227249, + 0.008158370852470398, + 0.015609197318553925, + -0.04630659893155098, + -0.15607711672782898, + 4.57149982623528e-34, + -0.02229410596191883, + 0.11748884618282318, + -0.10083778202533722, + 0.03928849846124649, + -0.03764573484659195, + 0.02357463724911213, + 0.10480092465877533, + 0.0550653338432312, + 0.04011618345975876, + 0.021850181743502617, + -0.023118503391742706, + -0.007091318257153034, + -0.038780272006988525, + -0.06825269758701324, + 0.01060112938284874, + 0.07092244178056717, + 0.05771224945783615, + 0.018594546243548393, + -0.01118424441665411, + 0.004591268952935934, + -0.03986120596528053, + -0.04427358880639076, + -0.07889270782470703, + 0.06938956677913666, + 0.01935172639787197, + -0.021432088688015938, + 0.0177257489413023, + -0.06517472863197327, + -0.022931009531021118, + -0.0008073459612205625, + 0.01889372058212757, + 0.009547306224703789, + 0.02891583926975727, + 0.02739764377474785, + -0.004429127089679241, + -0.03341900184750557, + 0.04522997513413429, + -0.06031865254044533, + -0.011212571524083614, + -0.0018490900984033942, + 0.07237300276756287, + 0.022953858599066734, + 0.010775561444461346, + 0.04068390280008316, + -0.010779643431305885, + 0.003254406852647662, + -0.07833937555551529, + -0.019412405788898468, + -0.04426592215895653, + 0.05705777928233147, + 0.06410462409257889, + -0.07793831825256348, + 0.040376871824264526, + 0.020965848118066788, + -0.07461155951023102, + -0.04302217811346054, + 0.00779159227386117, + 0.07707814127206802, + -0.014189486391842365, + -0.031421639025211334, + -0.040996287018060684, + -0.04865274578332901, + 0.010445019230246544, + 0.030993295833468437, + 0.026949074119329453, + -0.044191159307956696, + 0.016812656074762344, + 0.012477190233767033, + -0.020358312875032425, + -0.03662661090493202, + 0.1417565643787384, + -0.03843352943658829, + -0.04957466572523117, + 0.033531300723552704, + 0.0625683069229126, + -0.06559854000806808, + 0.005230877548456192, + -0.0053357952274382114, + -0.09123531728982925, + 0.052296463400125504, + 0.017099767923355103, + 0.06658676266670227, + 0.018207987770438194, + 0.07164504379034042, + -0.005096997134387493, + 0.038971785455942154, + 0.008587557822465897, + 0.0685090720653534, + -0.01941477321088314, + -0.007321201264858246, + -0.004983153659850359, + 0.06264851242303848, + -0.0089730778709054, + 0.07163769006729126, + 0.005387473851442337, + -2.0833679670317906e-08, + -0.04503621906042099, + -0.12405282258987427, + 0.0019606701098382473, + -0.042912282049655914, + 0.054514266550540924, + 0.01455751433968544, + -0.016603663563728333, + -0.006246267817914486, + 0.017101384699344635, + -0.049789365381002426, + 0.02116580493748188, + 0.0043663219548761845, + -0.08818221092224121, + -0.08144059032201767, + 0.0749109536409378, + 0.010120772756636143, + -0.06227891519665718, + 0.02299591153860092, + -0.01716606318950653, + -0.06034867465496063, + 0.005239294841885567, + 0.07554031163454056, + -0.03593383729457855, + 0.06327930092811584, + -0.025097563862800598, + 0.005903107114136219, + -0.01859263889491558, + 0.05461645498871803, + -0.02020338922739029, + 0.0005243046907708049, + -0.011534344404935837, + 0.03984241560101509, + 0.035023096948862076, + -0.09985322505235672, + -0.09379228949546814, + 0.016022903844714165, + -0.010161194950342178, + -0.018241645768284798, + 0.007407275028526783, + 0.14445674419403076, + 0.056701481342315674, + -0.06382694840431213, + 0.002199685899540782, + -0.0582348071038723, + -0.03742033615708351, + 0.004305193666368723, + 0.022878004238009453, + -0.08724308758974075, + -0.07649728655815125, + -0.10802771896123886, + -0.016113286837935448, + 0.04688630998134613, + 0.03914672136306763, + 0.06788191199302673, + -0.0006775776273570955, + -0.041454341262578964, + 0.04681582376360893, + 0.07550240308046341, + 0.061713654547929764, + 0.01396586187183857, + 0.08741594851016998, + 0.11213651299476624, + 0.003090541809797287, + -0.0029474273324012756 + ], + "chat-slash-bold||*new*,messages,messaging,sms,texting,comment,square,bubble": [ + -0.011938282288610935, + -0.07877058535814285, + 0.022564822807908058, + 0.03557123988866806, + 0.01366187259554863, + -0.05143586918711662, + 0.06521137803792953, + -0.0511966235935688, + 0.054434943944215775, + 0.008718729019165039, + 0.059455499053001404, + 0.015546784736216068, + 0.017641548067331314, + 0.05385196581482887, + 0.050298865884542465, + 0.05258023738861084, + 0.021409612149000168, + -0.048119764775037766, + -0.0078115626238286495, + 0.0024001067504286766, + 0.024554431438446045, + 0.09153981506824493, + 0.015245024114847183, + 0.01383892074227333, + 0.060809142887592316, + 0.0032422745134681463, + -0.004879779648035765, + 0.026120921596884727, + 0.026160864159464836, + -0.06743434071540833, + 0.015150928869843483, + 0.008890056982636452, + 0.17724065482616425, + 0.09288661926984787, + 0.029242705553770065, + 0.04177526757121086, + 0.03716255724430084, + -0.022428112104535103, + 0.006248230114579201, + 0.024310411885380745, + -0.05955367535352707, + -0.11471109837293625, + -0.01916755922138691, + 0.018941642716526985, + -0.011036988347768784, + -0.04276129603385925, + -0.04418734833598137, + -0.030564364045858383, + -0.005754812620580196, + 0.025628618896007538, + -0.017895782366394997, + -0.07649066299200058, + -0.09806233644485474, + 0.06704568862915039, + 0.059458330273628235, + 0.011253364384174347, + -0.0869273766875267, + 0.04638933390378952, + 0.10358699411153793, + 0.02346879057586193, + 0.006508457008749247, + 0.0015074779512360692, + 0.05806820094585419, + 0.011599604971706867, + -0.038323093205690384, + -0.011916814371943474, + -0.033270012587308884, + 0.024846671149134636, + -0.031714651733636856, + 0.023461224511265755, + -0.017703881487250328, + -0.0036969499196857214, + -0.06514590978622437, + 0.05257561802864075, + -0.04970795661211014, + 0.015668177977204323, + 0.022896461188793182, + -0.020903727039694786, + -0.054512765258550644, + -0.01802770048379898, + -0.0624869279563427, + -0.029185056686401367, + 0.0016405810602009296, + 0.04055634140968323, + 0.036972977221012115, + 0.05290096253156662, + -0.05413021519780159, + -0.06802260130643845, + -0.06521502137184143, + -0.044486477971076965, + -0.03978575021028519, + -0.06460080295801163, + 0.010489719919860363, + 0.0880967453122139, + -0.12221083790063858, + 0.013334384188055992, + 0.028136419132351875, + -0.006313882302492857, + -0.05314014106988907, + 0.07627338916063309, + 0.04164697229862213, + 0.00878666341304779, + 0.0028858454897999763, + -0.054703861474990845, + 0.015306380577385426, + -0.0178928691893816, + 0.04731862246990204, + -0.031353678554296494, + 0.008028407581150532, + 0.023339230567216873, + -0.05226978287100792, + -0.10481807589530945, + -0.019021671265363693, + -0.06071282923221588, + 0.021941544488072395, + -0.05581296235322952, + -0.05059615895152092, + -0.062459226697683334, + 0.12043052166700363, + 0.1389874964952469, + 0.08129474520683289, + -0.09385271370410919, + -0.0645536258816719, + -0.027020733803510666, + -0.011723363772034645, + 0.03587821498513222, + 0.01740856096148491, + -8.09720273616228e-34, + 0.0996100902557373, + 0.08613227307796478, + -0.020737282931804657, + 0.10179483145475388, + 0.03195895627140999, + 0.028266334906220436, + -0.0896151140332222, + -0.05545147508382797, + -0.05881750211119652, + -0.012434666976332664, + 0.04191074147820473, + -0.010191410779953003, + -0.02615726925432682, + 0.052328456193208694, + 0.03930361941456795, + -0.03940883278846741, + 0.032068587839603424, + -0.03543563932180405, + 0.01414464507251978, + -0.036203984171152115, + -0.10819437354803085, + 0.10368484258651733, + -0.01437667291611433, + 0.03178895264863968, + 0.013939050026237965, + 0.038747213780879974, + 0.07962968200445175, + -0.07489288598299026, + -0.008672276511788368, + 0.04201653227210045, + 0.02430165559053421, + -0.0040097543969750404, + 0.04658523201942444, + 0.06884671747684479, + -0.02087542787194252, + 0.087095707654953, + -0.04220892861485481, + -0.01789223961532116, + -0.039586279541254044, + 0.03453812003135681, + -0.10285598784685135, + -0.0698813945055008, + -0.09605720639228821, + -0.04241383448243141, + 0.01971842721104622, + 0.03753899037837982, + -0.06728217005729675, + -0.06915164738893509, + -0.032394759356975555, + -0.014484889805316925, + -0.011689599603414536, + 0.025270728394389153, + 0.0381426140666008, + 0.06894081830978394, + -0.006250638049095869, + -0.09553755819797516, + -0.03270271047949791, + -0.019286373630166054, + 0.016081342473626137, + 0.004603317938745022, + -0.03902291879057884, + 0.0017744717188179493, + 0.028794236481189728, + -0.06485718488693237, + -0.05230213701725006, + 0.0010161128593608737, + -0.04802912101149559, + 0.00995362177491188, + -0.004640357103198767, + -0.005927818827331066, + -0.03198489919304848, + 0.06523061543703079, + 0.03285663574934006, + 0.07493412494659424, + -0.13788928091526031, + 0.005059584975242615, + -0.01503959484398365, + 0.027022676542401314, + 0.0579923652112484, + -0.05017790570855141, + -0.10283783823251724, + -0.02148379199206829, + -0.03652452677488327, + 0.022761186584830284, + 0.02347525954246521, + -0.023862073197960854, + 0.009589314460754395, + -0.09665672481060028, + -0.027474340051412582, + 0.044980958104133606, + -0.10021830350160599, + 0.021043935790657997, + -0.0032670919317752123, + -0.057276662439107895, + -0.07930722087621689, + -8.527884580849373e-34, + 0.005783055443316698, + 0.10796253383159637, + -0.1279393881559372, + 0.017963720485568047, + -0.04550943523645401, + 0.012936148792505264, + 0.08285713195800781, + 0.04558442905545235, + 0.017735157161951065, + 0.006139445584267378, + 0.008094005286693573, + 0.00865852553397417, + -0.01445724442601204, + -0.09444303065538406, + 0.07436177134513855, + 0.07849208265542984, + 0.00023424511891789734, + 0.0034049516543745995, + -0.033379483968019485, + 0.009599140845239162, + -0.03974180296063423, + -0.020359786227345467, + -0.0630883127450943, + 0.08387697488069534, + 0.005012173671275377, + 0.013699900358915329, + 0.0416860468685627, + -0.015812963247299194, + 0.019589008763432503, + -0.0065146093256771564, + 0.045446280390024185, + 0.006914549507200718, + -0.0062452275305986404, + 0.02064349316060543, + -0.009937689639627934, + 0.004678774159401655, + 0.001305649639107287, + -0.012770216912031174, + -0.012155678123235703, + -0.03305547684431076, + 0.08580666780471802, + 0.015070483088493347, + -0.010768369771540165, + 0.06102820113301277, + -0.02836643159389496, + 0.007539134006947279, + -0.057896293699741364, + -0.09029853343963623, + -0.05258413776755333, + 0.04907641187310219, + 0.09493580460548401, + -0.10224643349647522, + 0.03548087552189827, + -0.00048111044452525675, + -0.06348148733377457, + -0.023065906018018723, + -0.0015142100164666772, + 0.08573496341705322, + -0.07670433819293976, + 0.03796839341521263, + -0.021018067374825478, + -0.010970080271363258, + -0.0088198846206069, + 0.0020501252729445696, + 0.016017597168684006, + -0.0705329105257988, + 0.012109410017728806, + 0.027993706986308098, + -0.004754997789859772, + -0.03246114403009415, + 0.10340813547372818, + 0.003484026761725545, + -0.045909758657217026, + 0.02650170959532261, + 0.053984057158231735, + -0.0429292693734169, + -0.023387892171740532, + -0.013292691670358181, + -0.0609976202249527, + 0.07132222503423691, + 0.0036293542943894863, + 0.04920824617147446, + -0.017081860452890396, + 0.05824795365333557, + -0.014467710629105568, + 0.009762496687471867, + -0.020949309691786766, + 0.11945150047540665, + -0.03558557853102684, + -0.07228463888168335, + -0.020101435482501984, + 0.04597129672765732, + -0.028155310079455376, + 0.049342550337314606, + -0.019202185794711113, + -2.1898994617686185e-08, + -0.0815616175532341, + -0.13147065043449402, + -0.00022659331443719566, + -0.015195772983133793, + 0.04694085195660591, + -0.006354377139359713, + -0.02959129959344864, + -0.03638160601258278, + 0.03584369644522667, + -0.018289653584361076, + 0.04352118447422981, + 0.025846337899565697, + -0.06842053681612015, + -0.06828342378139496, + 0.03039301373064518, + -0.0019680543337017298, + -0.050150804221630096, + 0.036174189299345016, + -0.006537775509059429, + -0.03446965664625168, + 0.00895683839917183, + 0.06882672011852264, + -0.016464194282889366, + 0.046359576284885406, + 0.002625585300847888, + -0.029581092298030853, + -0.026836013421416283, + 0.03604350984096527, + -0.030376512557268143, + 0.03083929605782032, + 0.029358992353081703, + 0.037129610776901245, + 0.007645865902304649, + -0.06271602213382721, + -0.08691559731960297, + 0.008375916630029678, + -0.008555253967642784, + -0.023097138851881027, + 0.014525446109473705, + 0.11395291239023209, + 0.05952458083629608, + -0.07289531826972961, + -0.00636274041607976, + -0.05498892068862915, + -0.05939334258437157, + -0.021439775824546814, + 0.03022376261651516, + -0.06656263768672943, + -0.061845313757658005, + -0.10511240363121033, + 0.007197255734354258, + 0.051185332238674164, + 0.03189265727996826, + 0.061948083341121674, + 0.024101173505187035, + -0.0217019934207201, + 0.042736031115055084, + 0.09578932821750641, + 0.031330641359090805, + 0.007756368722766638, + 0.10817799717187881, + 0.08802028745412827, + 0.007776155602186918, + -0.010719065554440022 + ], + "chat-teardrop-bold||send,sent,messages,messaging,sms,texting,comment,bubble": [ + -0.055394429713487625, + -0.06642808765172958, + 0.09364587813615799, + 0.03222097456455231, + 0.05939476191997528, + -0.03994925692677498, + 0.10982535034418106, + -0.028792232275009155, + 0.03209041804075241, + 0.004330880008637905, + 0.03714641556143761, + 0.0037540446501225233, + -0.009843782521784306, + 0.02716301567852497, + 0.044870730489492416, + 0.06660424917936325, + -0.007859937846660614, + -0.06060080602765083, + -0.03217717632651329, + -0.0058290958404541016, + 0.026729010045528412, + 0.009290887974202633, + -0.02705457992851734, + 0.044520437717437744, + 0.06171969696879387, + 0.012661164626479149, + -0.012126370333135128, + 0.027902819216251373, + -0.006624945439398289, + -0.07190702110528946, + -0.0037533300928771496, + 0.032627206295728683, + 0.0954606905579567, + 0.11093609035015106, + -0.029035968706011772, + 0.040584784001111984, + -0.005472822114825249, + 0.00631371047347784, + -0.020721713081002235, + 0.0074563948437571526, + -0.09779846668243408, + -0.08921939134597778, + -0.018801750615239143, + 0.0678439736366272, + 2.1390489564510062e-05, + -0.01175081916153431, + 0.00013928947737440467, + 0.02880651131272316, + -0.031920090317726135, + 0.04938098043203354, + -0.013233919627964497, + -0.03309271112084389, + -0.059266943484544754, + 0.1257879137992859, + 0.027231799438595772, + 0.011243415996432304, + -0.09285502135753632, + 0.018665583804249763, + 0.08048099279403687, + 0.04500971734523773, + 0.017486287280917168, + 0.03107803873717785, + 0.030507324263453484, + 0.02525315247476101, + -0.00737798772752285, + 0.004440483171492815, + 0.016805043444037437, + 0.03362178057432175, + -0.0072793299332261086, + 0.01224170159548521, + -0.00952487625181675, + -0.030730778351426125, + -0.04681171476840973, + 0.05686243250966072, + -0.05447760596871376, + 0.021836718544363976, + 0.039173755794763565, + -0.07425893843173981, + -0.09622728824615479, + 0.030089912936091423, + -0.06549041718244553, + -0.05998899042606354, + -0.041275013238191605, + 0.025602929294109344, + -0.014730313792824745, + 0.046613845974206924, + -0.02249038591980934, + -0.060706209391355515, + -0.07117447257041931, + -0.02668212354183197, + -0.011275095865130424, + -0.013020657934248447, + 0.00617853133007884, + 0.08129429817199707, + -0.09542299807071686, + 0.020001260563731194, + 0.01713838055729866, + -0.03996682167053223, + -0.03670981898903847, + 0.08003461360931396, + 0.012868464924395084, + -0.013953804038465023, + 0.03933187574148178, + -0.06803369522094727, + -0.01432595681399107, + -0.08553145080804825, + 0.0124673992395401, + -0.03115694597363472, + 0.041545286774635315, + 0.05633184686303139, + -0.056211456656455994, + -0.04474446177482605, + -0.02164272591471672, + -0.07372142374515533, + 0.04602625593543053, + -0.04800395667552948, + -0.06230636313557625, + -0.010208082385361195, + 0.09985234588384628, + 0.1093948483467102, + 0.04869940131902695, + -0.024313023313879967, + -0.0745481476187706, + -0.04613596946001053, + -0.023566223680973053, + 0.04278704896569252, + -0.021836914122104645, + -1.6165842796309502e-33, + 0.09442504495382309, + 0.02897678129374981, + -0.04316062480211258, + 0.11595379561185837, + 0.001538049429655075, + 0.004312729928642511, + -0.07599663734436035, + -0.08639662712812424, + -0.08608654141426086, + -0.025478271767497063, + -0.01479540765285492, + -0.0003505605855025351, + -0.015451799146831036, + 0.06431630998849869, + 0.06809988617897034, + -0.045578520745038986, + -0.0004494080785661936, + -0.0007764904876239598, + 0.04463401064276695, + -0.008355534635484219, + -0.1178550273180008, + 0.055102016776800156, + 0.01091054268181324, + 0.011853625997900963, + 0.051144152879714966, + 0.012506706640124321, + 0.06079089269042015, + -0.07918502390384674, + 0.03838930279016495, + 0.03095986135303974, + 0.003924884833395481, + -0.042453985661268234, + 0.04672105982899666, + 0.037059981375932693, + 0.02145610935986042, + 0.015473141334950924, + -0.08831735700368881, + -0.04143134877085686, + 0.00836989376693964, + 0.001094717881642282, + -0.10754703730344772, + -0.07327292859554291, + -0.08982671052217484, + -0.03437702730298042, + 0.03240178897976875, + 0.015259111300110817, + -0.038315244019031525, + 0.02176487073302269, + -0.01772332563996315, + -0.04265677183866501, + 0.029375340789556503, + -0.027587447315454483, + 0.013967248611152172, + 0.025323132053017616, + 0.03153052553534508, + -0.04964679107069969, + 0.03857947513461113, + -0.02193312905728817, + -0.00921710766851902, + 0.057157598435878754, + -0.003605759935453534, + -0.01797075755894184, + 0.03971295431256294, + -0.11045818030834198, + 0.06658219546079636, + -0.03289053589105606, + -0.04658930376172066, + -0.025836734101176262, + -0.003578423522412777, + -0.04800795391201973, + -0.0695660188794136, + 0.07029720395803452, + 0.0312334094196558, + 0.05621523782610893, + -0.08485045284032822, + -0.013607398606836796, + 0.027693582698702812, + 0.03525891900062561, + 0.07961732149124146, + -0.038011323660612106, + -0.1088285967707634, + -0.04275381192564964, + -0.023366574198007584, + 0.007679561618715525, + -0.019424472004175186, + 0.02614748105406761, + -0.0016398316947743297, + -0.1471225917339325, + -0.09198585897684097, + 0.028519392013549805, + -0.09639723598957062, + 0.01784241758286953, + 0.018405117094516754, + -0.09989063441753387, + -0.05405888706445694, + -1.0952824734130132e-34, + -0.04794284701347351, + 0.07348424941301346, + -0.09878253936767578, + 0.05459236726164818, + 0.032608140259981155, + 0.040574654936790466, + 0.07827829569578171, + 0.11375920474529266, + 0.04676436632871628, + 0.028103629127144814, + -0.018763836473226547, + -0.019284775480628014, + -0.07439713180065155, + -0.042894065380096436, + 0.008967256173491478, + 0.06761521100997925, + 0.06850950419902802, + -0.0007324206526391208, + -0.020811965689063072, + 0.0023564358707517385, + -0.023934951052069664, + 0.014385702088475227, + -0.06715455651283264, + 0.06467704474925995, + 0.01975402981042862, + -0.028548475354909897, + 0.031644612550735474, + -0.044565919786691666, + 0.04429095238447189, + -0.05571312457323074, + 0.02697455883026123, + 0.0046183206140995026, + -0.020089445635676384, + 0.08081004023551941, + -0.003433817531913519, + 0.0030726471450179815, + 0.056833311915397644, + -7.758013089187443e-05, + -0.04396682605147362, + 0.02540491335093975, + 0.07300522178411484, + 0.04112240672111511, + -0.037284135818481445, + 0.04525841027498245, + -0.0410190187394619, + -0.012163923121988773, + -0.1333422213792801, + -0.03406161442399025, + -0.04504772275686264, + 0.05811864137649536, + 0.08857258409261703, + -0.0930938720703125, + 0.017705179750919342, + 0.01377278845757246, + -0.0527702160179615, + -0.05473155155777931, + 0.0406641811132431, + 0.06070045009255409, + -0.0596875362098217, + 0.015317315235733986, + -0.013687344267964363, + -0.038525089621543884, + 0.024418920278549194, + 0.0023618920240551233, + 0.02947571873664856, + -0.049887485802173615, + 0.02607758529484272, + -0.0033051357604563236, + -0.04594182223081589, + -0.03337079659104347, + 0.11314766854047775, + -0.07257862389087677, + -0.034626226872205734, + -0.009883956052362919, + 0.08847329020500183, + -0.05577225238084793, + -0.02236981876194477, + 0.004453087225556374, + -0.07297170162200928, + 0.030447373166680336, + 0.04879734665155411, + 0.014065982773900032, + -0.005453671794384718, + 0.10019617527723312, + 0.019312022253870964, + 0.017672929912805557, + 0.008577531203627586, + 0.07071994990110397, + 0.003264258150011301, + -0.0333152711391449, + -0.031047498807311058, + 0.034605853259563446, + -0.004937165416777134, + 0.039272598922252655, + -0.028726205229759216, + -2.0801982358875648e-08, + -0.04316544532775879, + -0.10658539831638336, + 0.022030791267752647, + -0.03928116336464882, + 0.06304803490638733, + 0.02137666754424572, + 0.014851056039333344, + -0.0003129006363451481, + 0.02687634713947773, + -0.055940672755241394, + 0.016600942239165306, + 0.0029603554867208004, + -0.0637294352054596, + -0.010246447287499905, + 0.039071083068847656, + -0.0386589840054512, + -0.08181163668632507, + 0.00532436603680253, + -0.0027501522563397884, + -0.04772423580288887, + 0.008391745388507843, + 0.05225877836346626, + -0.0284481942653656, + 0.06478528678417206, + 0.015665791928768158, + -0.011098898015916348, + -0.031094789505004883, + 0.041862852871418, + -0.042881447821855545, + 0.04633057117462158, + 0.015362114645540714, + 0.016638031229376793, + 0.03899449482560158, + -0.10015584528446198, + -0.10485997051000595, + 0.057127829641103745, + 0.01448789332062006, + -0.046615179628133774, + -0.021547555923461914, + 0.15726906061172485, + 0.06868691742420197, + -0.02315429411828518, + -0.006432440131902695, + -0.0313754677772522, + 0.002294255420565605, + -0.03659141808748245, + 0.07720564305782318, + -0.10439637303352356, + -0.04799065366387367, + -0.05791511386632919, + -0.0013465399388223886, + 0.021571695804595947, + 0.01241483073681593, + 0.05788259580731392, + 0.010959102772176266, + -0.02889101207256317, + 0.049276385456323624, + 0.09555438905954361, + 0.0721450075507164, + 0.00616882462054491, + 0.0997384786605835, + 0.08576490730047226, + 0.0018578151939436793, + 0.03814350441098213 + ], + "chat-teardrop-dots-bold||send,sent,messages,messaging,sms,texting,comment,bubble": [ + -0.040768492966890335, + -0.06053800508379936, + 0.08655741065740585, + 0.029834123328328133, + 0.060701265931129456, + -0.04445305094122887, + 0.1295831948518753, + -0.028163541108369827, + 0.029075179249048233, + -0.0014383750967681408, + 0.04573884233832359, + -0.005215244367718697, + 0.019082186743617058, + 0.009901909157633781, + 0.038335707038640976, + 0.06661492586135864, + -0.01087150163948536, + -0.06372512131929398, + -0.011698971502482891, + -0.04242144897580147, + 0.02840527519583702, + -0.00045614433474838734, + -0.027832692489027977, + 0.05565234646201134, + 0.06204111874103546, + 0.04466691613197327, + -0.02274196967482567, + 0.02884640544652939, + -0.018740365281701088, + -0.06240402162075043, + -0.018704397603869438, + 0.027111729606986046, + 0.09334376454353333, + 0.10324428975582123, + -0.023928454145789146, + 0.03597426787018776, + 0.014255883172154427, + 0.035366080701351166, + -0.01580033078789711, + 0.0008870609453879297, + -0.08386571705341339, + -0.11281415075063705, + -0.00238191825337708, + 0.06996728479862213, + 0.009106368757784367, + -0.0052630179561674595, + -0.010248338803648949, + 0.03880404680967331, + -0.06005581095814705, + 0.0552944652736187, + -0.013888925313949585, + -0.04467727243900299, + -0.0717393308877945, + 0.10951238870620728, + 0.035904981195926666, + 0.0017787145916372538, + -0.07870170474052429, + 0.02820924110710621, + 0.08779633045196533, + 0.035461049526929855, + -0.001669332617893815, + 0.019742615520954132, + 0.018252015113830566, + 0.040086619555950165, + -0.0075505017302930355, + -0.013080809265375137, + 0.010654796846210957, + 0.006804571021348238, + -0.006381832528859377, + 0.027804022654891014, + -0.010024276562035084, + -0.00333841098472476, + -0.05169372633099556, + 0.055516697466373444, + -0.05395270138978958, + 0.03950357064604759, + 0.02973269857466221, + -0.06554234027862549, + -0.08147916197776794, + 0.020496221259236336, + -0.07638736069202423, + -0.02527199313044548, + -0.00939018465578556, + 0.044998254626989365, + 0.004579882137477398, + 0.055050138384103775, + -0.017152918502688408, + -0.06036951765418053, + -0.07175890356302261, + -0.02078980766236782, + -0.024565981701016426, + -0.03305273503065109, + 0.00567840039730072, + 0.0839778333902359, + -0.0971059650182724, + 0.023151997476816177, + 0.025390643626451492, + -0.03536991775035858, + -0.02613893151283264, + 0.08587872982025146, + 0.022061912342905998, + -0.029854577034711838, + 0.025164108723402023, + -0.07669705897569656, + -0.022933479398489, + -0.06096877530217171, + 0.005290482193231583, + -0.041795939207077026, + 0.051222529262304306, + 0.0653570368885994, + -0.06634372472763062, + -0.05377621948719025, + -0.027432508766651154, + -0.06617333739995956, + 0.037080347537994385, + -0.06179676577448845, + -0.07358451932668686, + -0.013295359909534454, + 0.11337845772504807, + 0.08304353803396225, + 0.05495510250329971, + -0.05037813261151314, + -0.07933314144611359, + -0.06388422101736069, + -0.03284166380763054, + 0.05055459961295128, + -0.028508754447102547, + -1.7215465579387724e-33, + 0.08410065621137619, + 0.03433619812130928, + -0.031526971608400345, + 0.08899296820163727, + -0.010437466204166412, + 0.016342109069228172, + -0.07561399042606354, + -0.08446089923381805, + -0.07071030884981155, + -0.0202960018068552, + -0.0021996002178639174, + 0.019322197884321213, + -0.013312389142811298, + 0.07753246277570724, + 0.07884455472230911, + -0.05237066373229027, + 0.02557537890970707, + 0.007514273747801781, + 0.02911822311580181, + -0.033107854425907135, + -0.09935303032398224, + 0.04924685135483742, + -0.007245068904012442, + 0.03341080620884895, + 0.04339703917503357, + 0.03153400123119354, + 0.03915322199463844, + -0.07983089238405228, + 0.03034386597573757, + 0.03870464488863945, + 0.011594586074352264, + -0.027182521298527718, + 0.057803381234407425, + 0.043718982487916946, + 0.01574210450053215, + 0.029590481892228127, + -0.08304595202207565, + -0.05456582084298134, + 0.0059514776803553104, + -0.003979822155088186, + -0.10476327687501907, + -0.08011378347873688, + -0.08428104966878891, + -0.03122732788324356, + 0.019550887867808342, + 0.033708203583955765, + -0.03873973712325096, + 0.007599799428135157, + -0.029816195368766785, + -0.0455034002661705, + 0.015581395477056503, + -0.030840009450912476, + 0.02437860332429409, + -0.0007561140810139477, + 0.03636607155203819, + -0.028889518231153488, + 0.02523023448884487, + -0.03825327754020691, + -0.021129662171006203, + 0.04499731957912445, + 0.0009193900623358786, + -0.005783478729426861, + 0.050961412489414215, + -0.10292726010084152, + 0.04392014443874359, + -0.033227939158678055, + -0.05227719992399216, + -0.026385964825749397, + 0.01580463908612728, + -0.021669242531061172, + -0.04817849025130272, + 0.09142918139696121, + 0.028176026418805122, + 0.05544554069638252, + -0.0914187878370285, + -0.00873749889433384, + 0.03478837013244629, + 0.029504137113690376, + 0.054842542856931686, + -0.022324053570628166, + -0.10837570577859879, + -0.05747565999627113, + -0.03656132146716118, + -0.012530568055808544, + -0.0046291775070130825, + 0.01196067314594984, + -0.0002393075847066939, + -0.1415381133556366, + -0.09357228130102158, + 0.00041844099177978933, + -0.07297134399414062, + 0.005250189919024706, + 0.009884991683065891, + -0.08801016211509705, + -0.09876509755849838, + 2.322760536424272e-34, + -0.04424157366156578, + 0.08222437649965286, + -0.08232280611991882, + 0.0613105408847332, + -0.0014565364690497518, + 0.027311457321047783, + 0.07899400591850281, + 0.09998665004968643, + 0.039069220423698425, + 0.017605945467948914, + -0.03401996195316315, + -0.002992117777466774, + -0.05768996477127075, + -0.04896324500441551, + -0.0011486721923574805, + 0.06964317709207535, + 0.07281976193189621, + 0.013555857352912426, + 0.0018109098309651017, + 0.008311906829476357, + -0.02508106641471386, + -0.0014150319620966911, + -0.07758039981126785, + 0.070097416639328, + 0.026352524757385254, + -0.031113222241401672, + 0.02663462981581688, + -0.0750335231423378, + 0.018328100442886353, + -0.03582599014043808, + 0.023010388016700745, + 0.004099396523088217, + -0.007410587277263403, + 0.056215569376945496, + -0.001263985293917358, + -0.02115543745458126, + 0.053576573729515076, + -0.033832892775535583, + -0.03746199607849121, + 0.017589831724762917, + 0.07573345303535461, + 0.038127411156892776, + -0.005656544119119644, + 0.04866434261202812, + -0.024104377254843712, + -0.010070616379380226, + -0.12347472459077835, + -0.0026213957462459803, + -0.039998844265937805, + 0.0582762248814106, + 0.0740007609128952, + -0.09132491797208786, + 0.015991441905498505, + 0.01599656417965889, + -0.057164158672094345, + -0.049407657235860825, + 0.019546164199709892, + 0.06865455955266953, + -0.0289616659283638, + 0.0026430869475007057, + -0.02709360420703888, + -0.04863835871219635, + 0.009059526957571507, + 0.031710799783468246, + 0.02946113981306553, + -0.05062566325068474, + 0.013240775093436241, + 0.007990351878106594, + -0.0528150349855423, + -0.0337076373398304, + 0.13664476573467255, + -0.06146741285920143, + -0.05548016354441643, + -0.0035060730297118425, + 0.07812227308750153, + -0.06524184346199036, + -0.023717576637864113, + -0.00151510676369071, + -0.09498381614685059, + 0.04000965878367424, + 0.03940838575363159, + 0.03103463351726532, + 0.011204110458493233, + 0.1042732298374176, + 0.008670472539961338, + 0.0312110036611557, + 0.002276994287967682, + 0.0721009373664856, + -0.0003262801037635654, + -0.01745034009218216, + -0.01891050674021244, + 0.05295543000102043, + -0.006636695936322212, + 0.0784057080745697, + -0.015163934789597988, + -2.0406904610581478e-08, + -0.03972974047064781, + -0.11122182011604309, + 0.017347393557429314, + -0.049890778958797455, + 0.06475315988063812, + 0.022340545430779457, + 0.011339234188199043, + 0.014951114542782307, + 0.03041842393577099, + -0.05373562499880791, + 0.030881458893418312, + -0.0016217506490647793, + -0.0773448646068573, + -0.026204513385891914, + 0.06874831765890121, + -0.014790276065468788, + -0.07540932297706604, + 0.022360876202583313, + -0.013333453796803951, + -0.052558887749910355, + 0.0031003656331449747, + 0.062426310032606125, + -0.024869389832019806, + 0.06382088363170624, + -0.004810991697013378, + -0.0053012194111943245, + -0.01187489740550518, + 0.0444728322327137, + -0.03454253822565079, + 0.04361517354846001, + 0.0019728222396224737, + 0.026358485221862793, + 0.036861903965473175, + -0.1137750893831253, + -0.10812143236398697, + 0.06594961136579514, + 0.008002223446965218, + -0.03526876121759415, + -0.004568116739392281, + 0.16000260412693024, + 0.05928961932659149, + -0.036079585552215576, + -0.002996922703459859, + -0.035439733415842056, + -0.016074081882834435, + -0.02504556253552437, + 0.04988376051187515, + -0.09890462458133698, + -0.06103120744228363, + -0.07225342839956284, + -0.00623001204803586, + 0.0443800687789917, + 0.020161222666502, + 0.05520173907279968, + 0.01465913187712431, + -0.02436203323304653, + 0.06146502122282982, + 0.08930123597383499, + 0.07936602085828781, + 0.004929657094180584, + 0.09169700741767883, + 0.09905358403921127, + 0.01681007444858551, + 0.027283525094389915 + ], + "chat-teardrop-slash-bold||*new*,messages,messaging,sms,texting,comment,bubble": [ + -0.05132867395877838, + -0.06367776542901993, + 0.08034391701221466, + 0.03648590296506882, + 0.050156280398368835, + -0.03744778782129288, + 0.0901273638010025, + -0.043471597135066986, + 0.038366325199604034, + 0.011613626033067703, + 0.057116322219371796, + -0.00530157471075654, + -0.00886899046599865, + 0.03901302069425583, + 0.04575532674789429, + 0.06335722655057907, + -0.009688752703368664, + -0.03862087428569794, + -0.03420213982462883, + -0.004665331449359655, + 0.018227677792310715, + 0.04415120556950569, + -0.0324288010597229, + 0.03235188126564026, + 0.06263376027345657, + 0.03307068347930908, + -0.01028627622872591, + 0.02118922397494316, + 0.00776382302865386, + -0.07506541162729263, + 0.008438837714493275, + 0.013596183620393276, + 0.1197715476155281, + 0.10949359834194183, + 0.005251788999885321, + 0.04299869388341904, + 0.03835628926753998, + -0.003090199315920472, + -0.0004636398225557059, + -0.0009116014116443694, + -0.08249076455831528, + -0.10248998552560806, + -0.031488824635744095, + 0.04898599535226822, + -0.007040501572191715, + -0.02126489020884037, + -0.012135080993175507, + 0.004483704920858145, + -0.00674618361517787, + 0.056447986513376236, + -0.01978408545255661, + -0.044942766427993774, + -0.0836489275097847, + 0.09441755712032318, + 0.0479203537106514, + 0.016212889924645424, + -0.08970674872398376, + 0.027936860918998718, + 0.08567075431346893, + 0.04493240267038345, + 0.024905847385525703, + 0.011709851212799549, + 0.03936314582824707, + 0.030079904943704605, + -0.02307218499481678, + -0.027187740430235863, + -0.004214201122522354, + 0.015543417073786259, + -0.014456423930823803, + 0.02626049518585205, + -0.027620777487754822, + -0.01451337430626154, + -0.06137814000248909, + 0.07351338863372803, + -0.06553901731967926, + 0.014089099131524563, + 0.020684370771050453, + -0.05815526843070984, + -0.07957234978675842, + 0.012056121602654457, + -0.048752542585134506, + -0.04114670306444168, + -0.02398907020688057, + 0.04340937361121178, + 0.007333320565521717, + 0.05581062287092209, + -0.027893362566828728, + -0.07098737359046936, + -0.06957443058490753, + -0.04029352217912674, + -0.0022888227831572294, + -0.05963423103094101, + 0.022208034992218018, + 0.08373445272445679, + -0.10620026290416718, + 0.024607762694358826, + 0.003088110825046897, + -0.03882069140672684, + -0.04367057606577873, + 0.08637423068284988, + 0.015277751721441746, + -0.005177686922252178, + 0.01549510844051838, + -0.06837940216064453, + -0.01612003520131111, + -0.059744253754615784, + 0.019528551027178764, + -0.02212941087782383, + 0.020960398018360138, + 0.05241776630282402, + -0.043536990880966187, + -0.06625817716121674, + -0.036815427243709564, + -0.06848625093698502, + 0.035729482769966125, + -0.057388387620449066, + -0.057119403034448624, + -0.04589730501174927, + 0.09767594933509827, + 0.14638788998126984, + 0.07245337218046188, + -0.06218133121728897, + -0.08912396430969238, + -0.03785992041230202, + -0.02961134910583496, + 0.05161454156041145, + -0.03316061571240425, + -7.254473846490993e-34, + 0.10158936679363251, + 0.04802131652832031, + -0.047044482082128525, + 0.10488675534725189, + 0.01180810946971178, + 0.00827569980174303, + -0.07864348590373993, + -0.05876986309885979, + -0.0788872241973877, + -0.011446112766861916, + 0.02349899522960186, + -0.015995901077985764, + -0.023862604051828384, + 0.03914077952504158, + 0.06329844892024994, + -0.042910534888505936, + 0.002257595071569085, + -0.023915452882647514, + 0.03740834444761276, + -0.028784476220607758, + -0.12057026475667953, + 0.09390062838792801, + 0.015880245715379715, + 0.02878011018037796, + 0.038341280072927475, + 0.02694779820740223, + 0.07240640372037888, + -0.09282837808132172, + 0.018031535670161247, + 0.039761483669281006, + -0.011705226264894009, + -0.037729013711214066, + 0.05645432323217392, + 0.05652979016304016, + 0.003637959947809577, + 0.07890450954437256, + -0.057945456355810165, + -0.0386006236076355, + -0.017465069890022278, + 0.009097743779420853, + -0.12328826636075974, + -0.0809287279844284, + -0.11015573143959045, + -0.03493647649884224, + 0.029386134818196297, + 0.013491315767168999, + -0.04559453949332237, + -0.003684533294290304, + -0.02587447129189968, + -0.04275417700409889, + 0.014518026262521744, + 0.002789095975458622, + 0.03372320532798767, + 0.04752558469772339, + -0.0037210797891020775, + -0.07277201116085052, + 0.0029227298218756914, + -0.03525789454579353, + 0.013739981688559055, + 0.033561982214450836, + -0.011711952276527882, + 0.003161362838000059, + 0.035387951880693436, + -0.07989975810050964, + 0.014332624152302742, + -0.036665692925453186, + -0.03257955238223076, + -0.00772220129147172, + 0.004721061326563358, + -0.029951734468340874, + -0.07805219292640686, + 0.050566330552101135, + 0.029159490019083023, + 0.06545688956975937, + -0.11708538979291916, + -0.015467186458408833, + -0.0011569332564249635, + 0.0349857397377491, + 0.08010901510715485, + -0.05522606149315834, + -0.10778091847896576, + -0.04203815013170242, + -0.013123396784067154, + 0.013444637879729271, + 0.005167101044207811, + -0.0013277936959639192, + 0.006949620321393013, + -0.13701562583446503, + -0.06575364619493484, + 0.00971914827823639, + -0.08774890750646591, + 0.012657360173761845, + -0.007481723092496395, + -0.0960589200258255, + -0.04358922690153122, + -1.1178307509491887e-33, + -0.018966956064105034, + 0.06552479416131973, + -0.10667287558317184, + 0.03758329525589943, + -0.009283309802412987, + 0.02255508303642273, + 0.06148165091872215, + 0.095086969435215, + 0.02630089968442917, + 0.0034896554425358772, + -0.01617659069597721, + 0.00949341244995594, + -0.041297249495983124, + -0.060373760759830475, + 0.05467682331800461, + 0.08400819450616837, + 0.03027251735329628, + -0.005089437589049339, + -0.017162997275590897, + 0.01828167401254177, + -0.02322269231081009, + 0.01234461460262537, + -0.06651719659566879, + 0.07308527827262878, + 0.011576262302696705, + -0.01920485496520996, + 0.054381515830755234, + -0.03971775248646736, + 0.053153570741415024, + -0.03997322544455528, + 0.03689571097493172, + -0.0029714254196733236, + -0.03126206621527672, + 0.05061960965394974, + -0.0060151065699756145, + 0.004183237906545401, + 0.01362172793596983, + -0.007752853445708752, + -0.04818474128842354, + -0.005440691486001015, + 0.07764802873134613, + 0.03048664517700672, + -0.024482594802975655, + 0.05577218160033226, + -0.03401991352438927, + -0.008317512460052967, + -0.1028786227107048, + -0.04746801778674126, + -0.04493506997823715, + 0.058912865817546844, + 0.09390854090452194, + -0.11405067145824432, + 0.019413713365793228, + 0.005314434412866831, + -0.051494818180799484, + -0.03846238553524017, + 0.02186792716383934, + 0.07388533651828766, + -0.08331310749053955, + 0.03801053389906883, + -0.014328197576105595, + -0.02273133397102356, + -0.00893590971827507, + 0.013922606594860554, + 0.0279951561242342, + -0.06436619907617569, + 0.004350266419351101, + 0.024748669937253, + -0.05271729454398155, + -0.037538785487413406, + 0.1003231629729271, + -0.028344526886940002, + -0.05256986618041992, + -0.013293378055095673, + 0.06725197285413742, + -0.055922750383615494, + -0.03459138423204422, + -0.01105410885065794, + -0.06320410966873169, + 0.04791789874434471, + 0.022814365103840828, + 0.024669531732797623, + -0.009705518372356892, + 0.08891051262617111, + -0.0031143762171268463, + 0.008465654216706753, + -0.0144401416182518, + 0.11828694492578506, + -0.011566856876015663, + -0.05790996924042702, + -0.03520774468779564, + 0.04510917887091637, + -0.011520340107381344, + 0.06891539692878723, + -0.038962528109550476, + -2.1945705697135054e-08, + -0.06763205677270889, + -0.11793756484985352, + 0.012767907232046127, + -0.022198792546987534, + 0.06315386295318604, + 0.01871349848806858, + -0.0027957488782703876, + -0.008663606829941273, + 0.0425674244761467, + -0.037208884954452515, + 0.042585697025060654, + 0.016167746856808662, + -0.05240069702267647, + -0.010654950514435768, + 0.031045759096741676, + -0.01628337800502777, + -0.06275232881307602, + 0.04773440212011337, + -0.005722164176404476, + -0.03243865817785263, + 0.010292267426848412, + 0.053610432893037796, + -0.005323970690369606, + 0.06514518707990646, + 0.01350056566298008, + -0.027678798884153366, + -0.02508053183555603, + 0.030515670776367188, + -0.04184941574931145, + 0.05892186984419823, + 0.02307761088013649, + 0.034539736807346344, + 0.02086016535758972, + -0.08853911608457565, + -0.10326357930898666, + 0.0577695332467556, + 0.005045965779572725, + -0.029741546139121056, + 0.0027671237476170063, + 0.14464186131954193, + 0.056666646152734756, + -0.04542580246925354, + -0.007090369705110788, + -0.03107975609600544, + -0.04541890323162079, + -0.04536690190434456, + 0.05790108069777489, + -0.09021396934986115, + -0.04597441852092743, + -0.08122365176677704, + 0.012761274352669716, + 0.04850906878709793, + 0.01809098944067955, + 0.04540862515568733, + 0.035984106361866, + -0.007902000099420547, + 0.05816319212317467, + 0.10213811695575714, + 0.04978277161717415, + 0.00397077901288867, + 0.10588289797306061, + 0.08675853908061981, + 0.02398662455379963, + 0.020789694041013718 + ], + "chat-teardrop-text-bold||send,sent,messages,messaging,sms,texting,comment,bubble": [ + -0.044857461005449295, + -0.053961046040058136, + 0.07997576892375946, + 0.029939288273453712, + 0.058467842638492584, + -0.035227302461862564, + 0.11182656139135361, + -0.025796061381697655, + 0.034467145800590515, + 0.0021440458949655294, + 0.043393708765506744, + 0.0003002137818839401, + 0.002169048646464944, + 0.027568940073251724, + 0.050491221249103546, + 0.06156868115067482, + -0.004370011854916811, + -0.05674368143081665, + -0.029513197019696236, + -0.01881081983447075, + 0.02679898589849472, + 0.01125736627727747, + -0.013507729396224022, + 0.04847392067313194, + 0.05828450992703438, + 0.020124278962612152, + -0.022558338940143585, + 0.028479618951678276, + 0.00016310419596266001, + -0.06300456076860428, + -0.017924081534147263, + 0.027229804545640945, + 0.10910806059837341, + 0.11229084432125092, + -0.03609757497906685, + 0.04222322627902031, + -0.0027617178857326508, + 0.01152053102850914, + -0.01835404708981514, + 0.006612163502722979, + -0.10796443372964859, + -0.09321841597557068, + -0.016600577160716057, + 0.06826888769865036, + 0.006610706448554993, + -0.01184934377670288, + -0.0111082773655653, + 0.029981939122080803, + -0.030328355729579926, + 0.04678142070770264, + -0.01450324710458517, + -0.036660537123680115, + -0.060244034975767136, + 0.12339287996292114, + 0.028772957623004913, + 0.015494468621909618, + -0.08254057168960571, + 0.010899762623012066, + 0.08222056180238724, + 0.04123179614543915, + 0.015561056323349476, + 0.03257273882627487, + 0.026866288855671883, + 0.029351383447647095, + -0.011875879019498825, + 0.005545259453356266, + 0.01310272328555584, + 0.03309117257595062, + -0.01490982249379158, + 0.011523660272359848, + -0.008594373241066933, + -0.030828231945633888, + -0.04446578398346901, + 0.05818845331668854, + -0.049038663506507874, + 0.022438976913690567, + 0.0301893949508667, + -0.06732255220413208, + -0.08921649307012558, + 0.031012240797281265, + -0.07356882840394974, + -0.054320115596055984, + -0.028478095307946205, + 0.037802521139383316, + -0.012227825820446014, + 0.04327572509646416, + -0.02010796032845974, + -0.04948599264025688, + -0.0667385533452034, + -0.01694909855723381, + -0.005386160220950842, + -0.021611185744404793, + 0.010743840597569942, + 0.07229551672935486, + -0.11229413747787476, + 0.02761755883693695, + 0.010160384699702263, + -0.04571480676531792, + -0.028373122215270996, + 0.07838037610054016, + 0.010784441605210304, + -0.01450076512992382, + 0.04364127665758133, + -0.06792033463716507, + -0.022744445130228996, + -0.07609792798757553, + 0.022722456604242325, + -0.03969680890440941, + 0.0431976355612278, + 0.04889996349811554, + -0.051546286791563034, + -0.05193977430462837, + -0.02594182640314102, + -0.07306396216154099, + 0.05219142511487007, + -0.048598214983940125, + -0.05223407223820686, + -0.01418196689337492, + 0.10005057603120804, + 0.10600041598081589, + 0.047106802463531494, + -0.031525079160928726, + -0.08204367756843567, + -0.045103177428245544, + -0.023833496496081352, + 0.042548492550849915, + -0.011023026891052723, + -1.4408731289444617e-33, + 0.09360508620738983, + 0.022167794406414032, + -0.0353117473423481, + 0.11750926077365875, + 0.0044947159476578236, + 0.013296714052557945, + -0.08766387403011322, + -0.08955426514148712, + -0.07726959884166718, + -0.024808073416352272, + -0.000644603802356869, + 0.0006369595066644251, + -0.014471172355115414, + 0.0618586465716362, + 0.06816735863685608, + -0.050626855343580246, + -0.0025722840800881386, + 0.0010500125354155898, + 0.05289044603705406, + -0.014057797379791737, + -0.11100541055202484, + 0.05160119757056236, + 0.01349730882793665, + 0.016483565792441368, + 0.055650122463703156, + 0.017623864114284515, + 0.05959473177790642, + -0.07917679101228714, + 0.025958163663744926, + 0.02308458462357521, + -0.0024432025384157896, + -0.04075564071536064, + 0.051792364567518234, + 0.04023757204413414, + 0.016479909420013428, + 0.020587237551808357, + -0.09373670071363449, + -0.04080580919981003, + 0.012152369134128094, + 0.009793165139853954, + -0.11566406488418579, + -0.07507870346307755, + -0.082854263484478, + -0.044596634805202484, + 0.035027530044317245, + 0.01668018288910389, + -0.04950694739818573, + 0.01864197850227356, + -0.01772468350827694, + -0.043951816856861115, + 0.03234473243355751, + -0.017089368775486946, + 0.012977291829884052, + 0.021958697587251663, + 0.03313349187374115, + -0.04759930819272995, + 0.03676411509513855, + -0.018263675272464752, + -0.014831949025392532, + 0.06006718799471855, + -0.005931091494858265, + -0.016926173120737076, + 0.03570213541388512, + -0.11122959107160568, + 0.06024111434817314, + -0.034854091703891754, + -0.052115440368652344, + -0.038496360182762146, + 0.0025487816892564297, + -0.048893123865127563, + -0.07029267400503159, + 0.06357380747795105, + 0.02581760659813881, + 0.05926056578755379, + -0.09185963869094849, + -0.010043658316135406, + 0.021099256351590157, + 0.025289261713624, + 0.07070991396903992, + -0.0366407111287117, + -0.1027466207742691, + -0.05182589963078499, + -0.016208479180932045, + 0.006001630797982216, + -0.01642763242125511, + 0.023628845810890198, + 0.0025669727474451065, + -0.1513502448797226, + -0.0846259817481041, + 0.022188687697052956, + -0.1053699404001236, + 0.01609964296221733, + 0.01711765117943287, + -0.0997457355260849, + -0.0453466922044754, + -1.6705163737064095e-34, + -0.04571513086557388, + 0.06703796237707138, + -0.09988774359226227, + 0.056233055889606476, + 0.03170808404684067, + 0.0388592965900898, + 0.08050443232059479, + 0.10874536633491516, + 0.04900171235203743, + 0.018209248781204224, + -0.025562535971403122, + -0.008450898341834545, + -0.06343770027160645, + -0.04678628221154213, + 0.005307522602379322, + 0.07883616536855698, + 0.06718779355287552, + 0.0010679718106985092, + -0.019328275695443153, + 0.0047732205130159855, + -0.021655624732375145, + 0.012000363320112228, + -0.07134878635406494, + 0.07493298500776291, + 0.015592772513628006, + -0.03053075075149536, + 0.01894642412662506, + -0.038617052137851715, + 0.045448143035173416, + -0.05526437610387802, + 0.02360110729932785, + 0.005624081008136272, + -0.01127979252487421, + 0.06992592662572861, + -0.008378798142075539, + -0.004272219259291887, + 0.06189526990056038, + -0.00221435958519578, + -0.045450225472450256, + 0.04159500077366829, + 0.08878182619810104, + 0.04231761023402214, + -0.032273244112730026, + 0.03819483891129494, + -0.0449027344584465, + -0.006122552324086428, + -0.13696327805519104, + -0.04183162748813629, + -0.043280817568302155, + 0.058864716440439224, + 0.08452077209949493, + -0.10052555054426193, + 0.013295111246407032, + 0.0049910289235413074, + -0.04416848346590996, + -0.05740692466497421, + 0.041030533611774445, + 0.05779767036437988, + -0.05353109911084175, + 0.010936315171420574, + -0.02226393297314644, + -0.03481461480259895, + 0.029342351481318474, + 0.015189502388238907, + 0.03561253473162651, + -0.05374418944120407, + 0.021067548543214798, + 0.0018197327153757215, + -0.05028267204761505, + -0.033617936074733734, + 0.1226288229227066, + -0.07140812277793884, + -0.03900313377380371, + -0.004185947123914957, + 0.08165643364191055, + -0.04996514692902565, + -0.020780274644494057, + 0.0067399838007986546, + -0.07851897925138474, + 0.02571500651538372, + 0.0545940138399601, + 0.017558811232447624, + 0.0018809424946084619, + 0.1015554815530777, + 0.013978872448205948, + 0.021798666566610336, + 0.001284665078856051, + 0.06704162806272507, + 0.005145025439560413, + -0.037825316190719604, + -0.03575824201107025, + 0.03961082920432091, + -0.0011468357406556606, + 0.043789446353912354, + -0.028953339904546738, + -2.026366097140908e-08, + -0.04460297152400017, + -0.1232854351401329, + 0.0133666368201375, + -0.03160330280661583, + 0.05883674696087837, + 0.025772659108042717, + 0.01789877563714981, + -0.003732270561158657, + 0.030274853110313416, + -0.05660795047879219, + 0.023720843717455864, + 0.00758702727034688, + -0.060982946306467056, + -0.01700943149626255, + 0.03587302565574646, + -0.03210511431097984, + -0.08057629317045212, + 0.008584097027778625, + 0.0005996652180328965, + -0.05131189152598381, + 0.016347713768482208, + 0.05289596691727638, + -0.04193001613020897, + 0.06789639592170715, + 0.013156729750335217, + -0.010799192823469639, + -0.03857750818133354, + 0.052342236042022705, + -0.03777468577027321, + 0.043560583144426346, + 0.014968802221119404, + 0.012093855999410152, + 0.03229717165231705, + -0.10351265966892242, + -0.09436820447444916, + 0.05368034541606903, + 0.01259835809469223, + -0.04936971142888069, + -0.016701197251677513, + 0.1494291126728058, + 0.0644671618938446, + -0.01758578047156334, + -0.02181658148765564, + -0.034996397793293, + 0.004042044747620821, + -0.03670073300600052, + 0.06695593893527985, + -0.10762602835893631, + -0.04548162221908569, + -0.060231391340494156, + 0.0011885797139257193, + 0.02766869217157364, + 0.01991046592593193, + 0.052899278700351715, + 0.006821323651820421, + -0.021057013422250748, + 0.05504265055060387, + 0.09334007650613785, + 0.07119210064411163, + 0.008743887767195702, + 0.09765380620956421, + 0.09167727828025818, + 0.008182059973478317, + 0.029443887993693352 + ], + "chat-text-bold||send,sent,messages,messaging,sms,texting,comment,square,bubble": [ + 0.0006747348234057426, + -0.06580235064029694, + 0.013004602864384651, + 0.04302145168185234, + 0.019949138164520264, + -0.03983943536877632, + 0.11013590544462204, + -0.04040495306253433, + 0.04363805428147316, + -0.00658930279314518, + 0.03520038351416588, + 0.018705131486058235, + 0.037220876663923264, + 0.03519315645098686, + 0.06638311594724655, + 0.04194425791501999, + 0.028152452781796455, + -0.07461410760879517, + -0.0008234736160375178, + -0.030773397535085678, + 0.03324425220489502, + 0.03746667876839638, + 0.044235702604055405, + 0.03962351009249687, + 0.05066599324345589, + -0.0047102016396820545, + -0.024132465943694115, + 0.04086243361234665, + 0.017962753772735596, + -0.05870466306805611, + -0.020426981151103973, + 0.03040122613310814, + 0.17614248394966125, + 0.10326486825942993, + -0.025282053276896477, + 0.038527633994817734, + -0.01549785491079092, + 0.003416461870074272, + -0.018329674378037453, + 0.03861945495009422, + -0.09137673676013947, + -0.11128151416778564, + 0.009245157241821289, + 0.042244527488946915, + 0.00456466106697917, + -0.04075227677822113, + -0.046616122126579285, + -0.0026047024875879288, + -0.02161216177046299, + 0.013905314728617668, + -0.011555624194443226, + -0.07922594994306564, + -0.07122500240802765, + 0.08749411255121231, + 0.0261984933167696, + 0.023145921528339386, + -0.08175903558731079, + 0.014450106769800186, + 0.0948348119854927, + 0.013538366183638573, + -0.004945377353578806, + 0.025692885741591454, + 0.05248191952705383, + 0.018738828599452972, + -0.02003038115799427, + 0.03369062393903732, + -0.011431574821472168, + 0.031669553369283676, + -0.0314180925488472, + 0.003396043088287115, + 0.017347808927297592, + -0.014174739830195904, + -0.04585748165845871, + 0.027462724596261978, + -0.030626840889453888, + 0.02956535667181015, + 0.031205330044031143, + -0.03089071810245514, + -0.06247420981526375, + 0.013032490387558937, + -0.10157424956560135, + -0.04285353422164917, + -0.0064958734437823296, + 0.029152531176805496, + 0.019296083599328995, + 0.044381845742464066, + -0.03868882358074188, + -0.040199656039476395, + -0.0675811618566513, + -0.011160451918840408, + -0.05203470215201378, + -0.017367301508784294, + -0.0015577715821564198, + 0.07849256694316864, + -0.14088904857635498, + 0.03325945883989334, + 0.046427030116319656, + -0.02123292349278927, + -0.045587409287691116, + 0.07391726970672607, + 0.04569451883435249, + -0.0028049300890415907, + 0.04469262436032295, + -0.05132573843002319, + 0.0029868183191865683, + -0.03807990625500679, + 0.04894068092107773, + -0.056197214871644974, + 0.028880933299660683, + 0.006282018963247538, + -0.057993125170469284, + -0.09395670890808105, + -0.01227420661598444, + -0.05743739753961563, + 0.0338331013917923, + -0.041938573122024536, + -0.04407837614417076, + -0.029879184439778328, + 0.12017554044723511, + 0.07874826341867447, + 0.06685606390237808, + -0.06200336292386055, + -0.062220338732004166, + -0.046735506504774094, + -0.011122153140604496, + 0.027712909504771233, + 0.03765282779932022, + -1.232377073471555e-33, + 0.08913463354110718, + 0.05252391844987869, + -0.011925910599529743, + 0.1320113241672516, + 0.025007104501128197, + 0.03536991775035858, + -0.10596763342618942, + -0.10717246681451797, + -0.071541428565979, + -0.017439231276512146, + 0.024180252104997635, + 0.010008885525166988, + -0.027107108384370804, + 0.08594385534524918, + 0.04283277690410614, + -0.056921232491731644, + 0.024956736713647842, + 0.001898443908430636, + 0.02939305268228054, + -0.026083888486027718, + -0.10117542743682861, + 0.05336526781320572, + -0.023290595039725304, + 0.017603574320673943, + 0.038261350244283676, + 0.040578000247478485, + 0.06956640630960464, + -0.059054311364889145, + -0.012593304738402367, + 0.023804327473044395, + 0.045045655220746994, + -0.0017922482220456004, + 0.03318289294838905, + 0.04978197440505028, + -0.00835756678134203, + 0.009658985771238804, + -0.09557563066482544, + -0.02083044871687889, + 0.012673430144786835, + 0.0380178764462471, + -0.10792269557714462, + -0.059745341539382935, + -0.06202966719865799, + -0.06162167713046074, + 0.031063547357916832, + 0.06573992967605591, + -0.07031652331352234, + -0.0423564612865448, + -0.013480186462402344, + -0.028562571853399277, + 0.009942191652953625, + -0.002304689958691597, + 0.010838749818503857, + 0.04064108431339264, + 0.03316164389252663, + -0.05690329894423485, + 0.006000331602990627, + 0.009459396824240685, + -0.023136425763368607, + 0.032512713223695755, + -0.025483468547463417, + -0.029909497126936913, + 0.02799353376030922, + -0.1018422544002533, + 0.004750031046569347, + 0.0041262307204306126, + -0.07168036699295044, + -0.026402300223708153, + -0.0015791571931913495, + -0.030109968036413193, + -0.014142300933599472, + 0.08242114633321762, + 0.04048416018486023, + 0.08303670585155487, + -0.10648887604475021, + 0.017355794087052345, + 0.02060176245868206, + 0.017885373905301094, + 0.03833954781293869, + -0.02991218864917755, + -0.08687998354434967, + -0.022523432970046997, + -0.04878745228052139, + 0.010333776473999023, + -0.005671302322298288, + 0.005816150456666946, + 0.009436416439712048, + -0.11896701157093048, + -0.03578092157840729, + 0.057474285364151, + -0.1268756091594696, + 0.02244916558265686, + 0.03719991073012352, + -0.06169309839606285, + -0.09468074142932892, + -2.885073182408239e-34, + -0.021798333153128624, + 0.09138360619544983, + -0.1229269728064537, + 0.026101503521203995, + -0.0040887510403990746, + 0.03737087547779083, + 0.1101299449801445, + 0.0680014044046402, + 0.04842664301395416, + 0.018136192113161087, + 0.0006869849166832864, + -0.010456533171236515, + -0.04903320595622063, + -0.0716777890920639, + 0.013356024399399757, + 0.07929281890392303, + 0.04218858480453491, + 0.016627715900540352, + -0.032306283712387085, + -0.0025401466991752386, + -0.0332920178771019, + -0.02646561525762081, + -0.07762352377176285, + 0.07971803843975067, + 0.008208937011659145, + -0.00412720488384366, + 0.002050445880740881, + -0.014429193921387196, + 0.0008777369512245059, + -0.029864849522709846, + 0.026348887011408806, + 0.016636168584227562, + 0.02962285839021206, + 0.04199790209531784, + -0.017759082838892937, + -0.020004650577902794, + 0.06764955073595047, + -0.02892683818936348, + -0.01712566614151001, + 0.031100599095225334, + 0.09640631824731827, + 0.03670858219265938, + -0.020335698500275612, + 0.026939816772937775, + -0.036981068551540375, + 0.020437810570001602, + -0.09057093411684036, + -0.0859086662530899, + -0.047878313809633255, + 0.050432708114385605, + 0.07998211681842804, + -0.09042929112911224, + 0.03292256221175194, + 0.0010746989864856005, + -0.06150878593325615, + -0.0497378446161747, + 0.03924727067351341, + 0.06376288086175919, + -0.023260297253727913, + -0.007876639254391193, + -0.038772352039813995, + -0.026225481182336807, + 0.043046046048402786, + 0.0006503452896140516, + 0.017826439812779427, + -0.05032932758331299, + 0.039791643619537354, + 0.00037395782419480383, + -0.005048793274909258, + -0.031022826209664345, + 0.12617334723472595, + -0.05841066688299179, + -0.04279748350381851, + 0.04502382129430771, + 0.0666125938296318, + -0.03770241141319275, + -0.0022102196235209703, + 0.0018362232949584723, + -0.08833162486553192, + 0.03200451657176018, + 0.036372505128383636, + 0.04282566159963608, + -0.00526003772392869, + 0.06251110881567001, + 0.002857804764062166, + 0.032022397965192795, + 0.002551611512899399, + 0.053719911724328995, + -0.01364091131836176, + -0.04154850170016289, + -0.027165932580828667, + 0.05079958587884903, + -0.011092136614024639, + 0.018847836181521416, + -0.0053489417769014835, + -2.0686863777541475e-08, + -0.061547014862298965, + -0.1478525698184967, + -0.0018253400921821594, + -0.027264675125479698, + 0.034423455595970154, + 0.0020436702761799097, + -0.003149209776893258, + -0.035973191261291504, + 0.023424802348017693, + -0.05631254240870476, + 0.02053091861307621, + 0.027874793857336044, + -0.07827059179544449, + -0.08722701668739319, + 0.03991464897990227, + -0.009626488201320171, + -0.08180271834135056, + 0.0024927661288529634, + 0.0027660338673740625, + -0.07915262132883072, + 0.03056691400706768, + 0.0721081793308258, + -0.06438515335321426, + 0.05786135420203209, + 6.0308513639029115e-05, + 0.0019249692559242249, + -0.04842520132660866, + 0.06601297855377197, + -0.021534787490963936, + 0.016440926119685173, + 0.020400987938046455, + 0.019227411597967148, + 0.02490692399442196, + -0.08607634902000427, + -0.07338982820510864, + -0.010307435877621174, + -0.00016160248196683824, + -0.049584511667490005, + -0.005373886786401272, + 0.11807497590780258, + 0.06759009510278702, + -0.03837992623448372, + -0.027056677266955376, + -0.06372632831335068, + -0.014594712294638157, + -0.006317077204585075, + 0.03245280683040619, + -0.09013459831476212, + -0.057073477655649185, + -0.08931983262300491, + -0.011337650008499622, + 0.027686873450875282, + 0.04562773555517197, + 0.06887813657522202, + -0.02225140668451786, + -0.03811861574649811, + 0.04222274199128151, + 0.08342539519071579, + 0.058093808591365814, + 0.012889599427580833, + 0.1078205406665802, + 0.10774903744459152, + -0.01352608110755682, + -0.010462217964231968 + ], + "chats-bold||send,sent,messages,messaging,sms,texting,comment,square,bubble": [ + -0.008574501611292362, + -0.08841708302497864, + 0.011269422248005867, + 0.04375945031642914, + 0.0161507036536932, + -0.04799177497625351, + 0.11450588703155518, + -0.04725642874836922, + 0.048808470368385315, + -0.00039052325882948935, + 0.026303770020604134, + 0.019377904012799263, + 0.035667452961206436, + 0.03832774981856346, + 0.05557507276535034, + 0.03711432218551636, + 0.025666018947958946, + -0.07772716879844666, + 0.0013634536880999804, + -0.008150649257004261, + 0.03305297717452049, + 0.03691296651959419, + 0.03431100770831108, + 0.039932724088430405, + 0.060931362211704254, + -0.021448977291584015, + -0.02039594016969204, + 0.03348623588681221, + 0.018681075423955917, + -0.07166119664907455, + -0.009897520765662193, + 0.041976697742938995, + 0.1752336472272873, + 0.1003430038690567, + -0.018658604472875595, + 0.03654782101511955, + -0.011935081332921982, + 0.0011451042955741286, + -0.025046491995453835, + 0.05053050071001053, + -0.08703142404556274, + -0.09734678268432617, + 0.015322650782763958, + 0.035283416509628296, + -0.0035154856741428375, + -0.035810939967632294, + -0.04258563369512558, + 0.005008538719266653, + -0.02831301838159561, + 0.012611815705895424, + -0.012091679498553276, + -0.07446619868278503, + -0.06920786947011948, + 0.09960360080003738, + 0.030721625313162804, + 0.018172400072216988, + -0.09097690135240555, + 0.03081800602376461, + 0.08634823560714722, + 0.010391115210950375, + -0.008030305616557598, + 0.008219398558139801, + 0.05882991477847099, + 0.02152259834110737, + -0.02240804024040699, + 0.03558439388871193, + -0.01902240887284279, + 0.04640858247876167, + -0.015078840777277946, + -0.005367088597267866, + 0.009684469550848007, + -0.002548897173255682, + -0.05040723830461502, + 0.03524172306060791, + -0.017873408272862434, + 0.032464947551488876, + 0.04641090705990791, + -0.03510819375514984, + -0.06951228529214859, + -0.00290832482278347, + -0.11597765982151031, + -0.05659860372543335, + -0.0182010680437088, + 0.007967953570187092, + 0.024569476023316383, + 0.03743859380483627, + -0.053022753447294235, + -0.038972459733486176, + -0.07583900541067123, + -0.018660804256796837, + -0.0683402344584465, + -0.014243785291910172, + -0.004056028556078672, + 0.08518306165933609, + -0.11841483414173126, + 0.026463601738214493, + 0.06676460057497025, + -0.009615649469196796, + -0.04052998125553131, + 0.07873818278312683, + 0.05015605315566063, + 0.009115382097661495, + 0.04901605099439621, + -0.03836766257882118, + 0.0008905652211979032, + -0.03987954929471016, + 0.028771912679076195, + -0.048339661210775375, + 0.023519979789853096, + 0.01178320124745369, + -0.07590033113956451, + -0.08616635203361511, + 0.0033308619167655706, + -0.054711755365133286, + 0.037499330937862396, + -0.05156379193067551, + -0.047538768500089645, + -0.031081903725862503, + 0.12223481386899948, + 0.07642266899347305, + 0.06995587050914764, + -0.049210984259843826, + -0.03516710549592972, + -0.05019332468509674, + -0.016862202435731888, + 0.02933463640511036, + 0.019478410482406616, + -1.6530883383407748e-33, + 0.08700326830148697, + 0.06000206246972084, + -0.024240149185061455, + 0.13747945427894592, + 0.022337159141898155, + 0.03359588608145714, + -0.09436648339033127, + -0.10515876859426498, + -0.058985743671655655, + -0.008787093684077263, + -0.006154931150376797, + 0.0242253839969635, + -0.020417222753167152, + 0.09553652256727219, + 0.048133425414562225, + -0.046800050884485245, + 0.04002288356423378, + 0.007181599736213684, + 0.016156993806362152, + -0.019873429089784622, + -0.10626689344644547, + 0.05629761144518852, + -0.021993614733219147, + 0.0014205911429598927, + 0.037255819886922836, + 0.042901843786239624, + 0.06362611055374146, + -0.0645066350698471, + -0.0010716094402596354, + 0.028115877881646156, + 0.05074251815676689, + 0.006101130973547697, + 0.019832003861665726, + 0.04623118042945862, + -0.0006131303962320089, + 0.018739275634288788, + -0.0745735839009285, + -0.02924172207713127, + 0.007394249550998211, + 0.02249017357826233, + -0.10083159804344177, + -0.05303952842950821, + -0.07031339406967163, + -0.048296328634023666, + 0.022928763180971146, + 0.0694030225276947, + -0.08258239924907684, + -0.04150104522705078, + -0.012455117888748646, + -0.013895726762712002, + 0.00536542572081089, + -0.011740921065211296, + 0.014247797429561615, + 0.04472418501973152, + 0.04157667234539986, + -0.0583670549094677, + 0.0065717617981135845, + -0.008325978182256222, + -0.027923235669732094, + 0.03296521678566933, + -0.02565743587911129, + -0.021293893456459045, + 0.03594082221388817, + -0.10736172646284103, + 0.0031872387044131756, + 0.019649649038910866, + -0.06951858103275299, + -0.01051977090537548, + -0.0017703274497762322, + -0.023036468774080276, + -0.0077988808043301105, + 0.10019147396087646, + 0.04409946873784065, + 0.07884815335273743, + -0.09814289957284927, + 0.028711365535855293, + 0.028093764558434486, + 0.027371661737561226, + 0.034609388560056686, + -0.009389994665980339, + -0.08783484250307083, + -0.009999665431678295, + -0.06774219125509262, + 0.021102935075759888, + -0.007578237447887659, + -0.007548532914370298, + 0.010126871056854725, + -0.11073752492666245, + -0.03393332287669182, + 0.0666433796286583, + -0.129225492477417, + 0.022411681711673737, + 0.04187382757663727, + -0.05607764795422554, + -0.11142999678850174, + 1.3522736631234637e-34, + -0.040134772658348083, + 0.11074516922235489, + -0.13250750303268433, + 0.017214184626936913, + -0.017864441499114037, + 0.03280380368232727, + 0.10292395949363708, + 0.06289438903331757, + 0.04363809898495674, + 0.019878407940268517, + 0.0018855062080547214, + -0.02111988142132759, + -0.0601719431579113, + -0.06614141911268234, + 0.008396989665925503, + 0.06108732894062996, + 0.041088443249464035, + 0.014077088795602322, + -0.03488549217581749, + -0.009488465264439583, + -0.03880462050437927, + -0.006494071334600449, + -0.08846310526132584, + 0.07502236217260361, + 0.015488125383853912, + 0.008719263598322868, + -0.007744849193841219, + -0.026103638112545013, + -0.0047818454913794994, + -0.015133979730308056, + 0.032263174653053284, + 0.00423388509079814, + 0.01742396503686905, + 0.057673800736665726, + -0.007939012721180916, + -0.01822846382856369, + 0.06266634166240692, + -0.01809278503060341, + -0.009518190287053585, + -0.004130216781049967, + 0.09393911808729172, + 0.0400051549077034, + -0.02057957649230957, + 0.04033395275473595, + -0.03151983022689819, + 0.017566388472914696, + -0.0900501012802124, + -0.07017195224761963, + -0.05081157758831978, + 0.03896467760205269, + 0.0851786658167839, + -0.08575514703989029, + 0.035749539732933044, + 0.012434758245944977, + -0.0616864413022995, + -0.05187887325882912, + 0.030402569100260735, + 0.06517715007066727, + -0.015138109214603901, + -0.008387025445699692, + -0.03893066942691803, + -0.03257143869996071, + 0.02646130695939064, + -0.011308541521430016, + 0.0070139747112989426, + -0.05613237991929054, + 0.029107851907610893, + -0.006770188920199871, + 0.002191536594182253, + -0.04038545489311218, + 0.12942799925804138, + -0.06602313369512558, + -0.03905045613646507, + 0.039523061364889145, + 0.08455190807580948, + -0.03677288442850113, + -0.015135757625102997, + -0.0006342001142911613, + -0.08184493333101273, + 0.02194618619978428, + 0.019864585250616074, + 0.04735952243208885, + 0.0006231047445908189, + 0.059823937714099884, + 0.01601538248360157, + 0.031806495040655136, + 0.015254444442689419, + 0.05442999303340912, + -0.009318283759057522, + -0.049735911190509796, + -0.002257044892758131, + 0.040888410061597824, + -0.01718880422413349, + 0.02601565793156624, + -0.003137730062007904, + -2.1998802779421567e-08, + -0.06976957619190216, + -0.12777984142303467, + -9.249996219296008e-05, + -0.03304585814476013, + 0.027756841853260994, + 0.0007634361973032355, + -0.01709367334842682, + -0.0234150979667902, + 0.017223164439201355, + -0.04303837940096855, + 0.0184941366314888, + 0.01614111103117466, + -0.07445947080850601, + -0.09129605442285538, + 0.0652734562754631, + -0.026200678199529648, + -0.07198880612850189, + -0.006166490260511637, + -0.002847043564543128, + -0.0790993943810463, + 0.025927526876330376, + 0.07701219618320465, + -0.056934405118227005, + 0.05738907679915428, + 0.002476992318406701, + -0.0065621123649179935, + -0.044097043573856354, + 0.04959707707166672, + -0.03125155344605446, + 0.02578354999423027, + 0.019803132861852646, + 0.02437545172870159, + 0.0176643505692482, + -0.07359014451503754, + -0.06771662831306458, + -0.00916444044560194, + -0.0076645961962640285, + -0.05628911405801773, + -0.007351648062467575, + 0.12072139978408813, + 0.05695388838648796, + -0.061147291213274, + -0.0163679588586092, + -0.059976913034915924, + -0.023732079192996025, + -0.0027164865750819445, + 0.02356841415166855, + -0.07914668321609497, + -0.05269569158554077, + -0.07987046986818314, + -0.018555860966444016, + 0.024239320307970047, + 0.04893338680267334, + 0.07960952818393707, + -0.02069712057709694, + -0.056167397648096085, + 0.03684890270233154, + 0.08183343708515167, + 0.056730762124061584, + 0.013032262213528156, + 0.10233739763498306, + 0.11511676013469696, + -0.017243076115846634, + -0.0006641480140388012 + ], + "chats-circle-bold||send,sent,messages,messaging,sms,texting,comment,round,bubble": [ + -0.013376036658883095, + -0.06269648671150208, + -0.036727797240018845, + 0.036552730947732925, + 0.0524427704513073, + -0.08777906000614166, + 0.12407919764518738, + -0.02669680491089821, + 0.0628197193145752, + -0.03411095216870308, + 0.026726793497800827, + 0.01068604551255703, + 0.036767832934856415, + 0.02112693339586258, + 0.07768774032592773, + 0.019507037475705147, + -0.01490953378379345, + -0.07921372354030609, + 0.011376112699508667, + -0.04016939550638199, + 0.0009044480975717306, + 0.027490457519888878, + 0.037768300622701645, + 0.08435706794261932, + 0.030813423916697502, + 0.0016695547383278608, + -0.02411787584424019, + 0.017278822138905525, + -0.0044516269117593765, + -0.07213474810123444, + -0.04136118292808533, + 0.07080218195915222, + 0.15342707931995392, + 0.0922069177031517, + -0.04277637228369713, + 0.025913722813129425, + -0.007909048348665237, + 0.02461804449558258, + -0.022774359211325645, + 0.010490672662854195, + -0.06843607872724533, + -0.09016752988100052, + 0.03206753730773926, + 0.035934582352638245, + -0.0048951818607747555, + -0.005730240605771542, + -0.08383414149284363, + 0.02571241185069084, + -0.03848826140165329, + 0.049331601709127426, + -0.009306016378104687, + -0.09715843200683594, + -0.08387251943349838, + 0.08939582109451294, + 0.03732512518763542, + 0.04276338964700699, + -0.08673720061779022, + 0.02205156534910202, + 0.09272004663944244, + 0.0025765409227460623, + 0.007150526624172926, + -0.010947303846478462, + 0.06637080013751984, + 0.040762580931186676, + -0.030414031818509102, + 0.004975690972059965, + -0.024556439369916916, + 0.01606466993689537, + -0.007990906946361065, + -0.028065631166100502, + 0.007508254610002041, + -0.0015146976802498102, + -0.06847982853651047, + 0.020667660981416702, + 0.004998046439141035, + 0.059561826288700104, + 0.008918803185224533, + -0.010445388965308666, + -0.09635002911090851, + -0.016407830640673637, + -0.08607472479343414, + -0.03245622664690018, + 0.010239771567285061, + 0.03649526834487915, + 0.029151802882552147, + 0.04955029487609863, + -0.02023010328412056, + -0.06996645033359528, + -0.07451958954334259, + -0.004411417990922928, + -0.06687285006046295, + 0.0032280508894473314, + -0.02330976352095604, + 0.060231734067201614, + -0.1434842348098755, + 0.0288037471473217, + 0.039510577917099, + -0.035444825887680054, + -0.06794954836368561, + 0.0895533338189125, + 0.05213838815689087, + 0.005364228505641222, + 0.046430688351392746, + -0.054052967578172684, + -0.010331368073821068, + -0.038922019302845, + 0.024383123964071274, + -0.04247945174574852, + 0.027077704668045044, + 0.029595473781228065, + -0.07738329470157623, + -0.0772024616599083, + -0.005436972714960575, + -0.05795682221651077, + 0.029976898804306984, + -0.043719418346881866, + -0.04228378087282181, + -0.011468513868749142, + 0.1158519759774208, + 0.07922439277172089, + 0.06521113961935043, + -0.04521423950791359, + -0.06753025203943253, + -0.05964813381433487, + -0.04531247913837433, + 0.04211216792464256, + 0.00931655615568161, + -1.6224430169438455e-33, + 0.06238582357764244, + 0.07093282043933868, + -0.028232796117663383, + 0.09629090875387192, + -0.009863086976110935, + 0.011867597699165344, + -0.07893010973930359, + -0.09858881682157516, + -0.030111337080597878, + -0.031657956540584564, + -0.005778420250862837, + 0.022141223773360252, + -0.0024013936053961515, + 0.07049832493066788, + 0.06110278517007828, + -0.05915489420294762, + 0.0660344734787941, + -0.013212282210588455, + 0.006146274972707033, + -0.051938775926828384, + -0.11379293352365494, + 0.05583295226097107, + -0.05148439481854439, + 0.001857127994298935, + 0.035723976790905, + 0.066078782081604, + 0.07185209542512894, + -0.06207700073719025, + -0.012297098524868488, + 0.03163424879312515, + 0.049104996025562286, + -0.008118887431919575, + 0.023978212848305702, + 0.07052071392536163, + 0.01690448448061943, + 0.036822084337472916, + -0.07501866668462753, + -0.026201404631137848, + -0.004628274589776993, + 0.01953830011188984, + -0.0906524583697319, + -0.0687539279460907, + -0.08894088119268417, + -0.025614485144615173, + 0.011525178328156471, + 0.08774654567241669, + -0.07849239557981491, + -0.022470295429229736, + -0.016180891543626785, + -0.020940018817782402, + -0.01323559507727623, + 0.0028765813913196325, + -0.0013721876312047243, + 0.017220180481672287, + 0.031162012368440628, + -0.06244431063532829, + 0.02087992988526821, + -0.017528152093291283, + -0.05146269127726555, + 0.0029643678572028875, + -0.007029443513602018, + -0.004622772801667452, + 0.019163871183991432, + -0.10988374799489975, + -0.012569038197398186, + 0.019795909523963928, + -0.08488862216472626, + -0.03605048730969429, + 0.011407795362174511, + -0.03509841859340668, + -0.0015174781437963247, + 0.11611367762088776, + 0.06458088010549545, + 0.11365649104118347, + -0.09459245949983597, + 0.026434771716594696, + 0.024582108482718468, + 0.03527237847447395, + 0.02219325490295887, + 0.001523248152807355, + -0.07167748361825943, + -0.007090759463608265, + -0.06261342018842697, + 0.0149086257442832, + 0.022860446944832802, + -0.03285231068730354, + 0.029982848092913628, + -0.09909272193908691, + -0.03359166532754898, + 0.05895513668656349, + -0.11484318226575851, + 0.05119408667087555, + 0.07483960688114166, + -0.01287747547030449, + -0.12751422822475433, + 3.0486916645493836e-34, + -0.03284792974591255, + 0.10119382292032242, + -0.09433288872241974, + 0.0293388981372118, + -0.012285013683140278, + 0.03371826186776161, + 0.08854509890079498, + 0.05913374572992325, + 0.042796649038791656, + 0.033815301954746246, + -0.033461522310972214, + -0.02086705155670643, + -0.03623722866177559, + -0.04214853420853615, + 0.04094604402780533, + 0.06723253428936005, + 0.04100732505321503, + 0.011522507295012474, + -0.03073117695748806, + 0.020825693383812904, + -0.04991762340068817, + -0.007128323428332806, + -0.0902421623468399, + 0.07063338160514832, + -0.007104724645614624, + 0.011013883166015148, + 0.025489768013358116, + -0.05729431286454201, + -0.01411221269518137, + -0.011515691876411438, + -0.0019106123363599181, + -0.02985703945159912, + 0.03782489150762558, + 0.06103500351309776, + 0.0157465860247612, + -0.0378391407430172, + 0.06644020974636078, + -0.03789824619889259, + -0.04568127170205116, + -0.03057876229286194, + 0.061916548758745193, + 0.021189337596297264, + -0.025406397879123688, + 0.03518611937761307, + -0.024858055636286736, + -0.02218426764011383, + -0.046500347554683685, + -0.019861867651343346, + -0.08365203440189362, + 0.054448068141937256, + 0.0896311104297638, + -0.06751421838998795, + 0.060472145676612854, + 0.0201887134462595, + -0.04189751669764519, + -0.011868852190673351, + 0.02670162543654442, + 0.07067528367042542, + 0.008297009393572807, + -0.018754541873931885, + -0.039935819804668427, + -0.06636174768209457, + 0.024813290685415268, + 0.02659343183040619, + 0.028819739818572998, + -0.03699365630745888, + 0.034587305039167404, + 0.010669108480215073, + -0.03410277143120766, + -0.010629454627633095, + 0.10552148520946503, + -0.0266172643750906, + -0.033797819167375565, + 0.02023286744952202, + 0.08412732183933258, + -0.02036808617413044, + 0.022277425974607468, + -0.02293342538177967, + -0.08839492499828339, + 0.021048642694950104, + -0.0015704859979450703, + 0.037630509585142136, + -0.0010924286907538772, + 0.046859584748744965, + 0.02242061123251915, + 0.016162050887942314, + 0.009349476546049118, + 0.05605452135205269, + -0.009733238257467747, + -0.03104201704263687, + 0.0064222621731460094, + 0.04456813633441925, + -0.006944350432604551, + 0.0580730177462101, + 0.034471794962882996, + -2.130113863074712e-08, + -0.06639867275953293, + -0.13576796650886536, + -0.0034947777166962624, + 0.0024184067733585835, + 0.07504914700984955, + 0.007477755658328533, + -0.0189465694129467, + -0.027097687125205994, + 0.00719390157610178, + -0.04439394548535347, + 0.0068735103122889996, + 0.03519652411341667, + -0.08573424816131592, + -0.07897163182497025, + 0.04811438173055649, + -0.026539085432887077, + -0.06617767363786697, + 0.011497573927044868, + 0.002317858627066016, + -0.06214107200503349, + 0.03353391960263252, + 0.05277005955576897, + -0.031563498079776764, + 0.014260382391512394, + 0.003611155552789569, + -0.013545372523367405, + -0.0201789028942585, + 0.06721466779708862, + -0.05242685601115227, + -0.02214193157851696, + -0.006217373535037041, + 0.022391462698578835, + 0.0074292877689003944, + -0.07111677527427673, + -0.06379549950361252, + -0.0239756777882576, + -0.02128867246210575, + -0.032836128026247025, + 0.0049507892690598965, + 0.12984228134155273, + 0.06350639462471008, + -0.031206686049699783, + -0.005369961261749268, + -0.04463600367307663, + -0.022947264835238457, + 0.01722189597785473, + 0.024391960352659225, + -0.07323432713747025, + -0.05642671510577202, + -0.07589094340801239, + -0.039992403239011765, + 0.018362795934081078, + 0.08258432149887085, + 0.07235988974571228, + -0.009210923686623573, + -0.04309976473450661, + 0.07676521688699722, + 0.07963705062866211, + 0.025459643453359604, + 0.031214552000164986, + 0.0698651373386383, + 0.12452187389135361, + -0.0019097978947684169, + 0.004074157681316137 + ], + "chats-teardrop-bold||send,sent,messages,messaging,sms,texting,comment,bubble": [ + -0.058458343148231506, + -0.07850740849971771, + 0.09273190051317215, + 0.03349306434392929, + 0.05965805426239967, + -0.04026894271373749, + 0.11475522071123123, + -0.025254465639591217, + 0.041432127356529236, + 0.009300915524363518, + 0.03730040788650513, + 0.0031792919617146254, + -0.0019479573238641024, + 0.03203219547867775, + 0.043542880564928055, + 0.06163033843040466, + -0.0068418593145906925, + -0.06312031298875809, + -0.027706095948815346, + 0.002168817911297083, + 0.02127598598599434, + 0.007789519149810076, + -0.0347265899181366, + 0.05072343721985817, + 0.06075601279735565, + 0.009007853455841541, + -0.019841410219669342, + 0.028220830485224724, + -0.009587420150637627, + -0.07233845442533493, + -0.007155916653573513, + 0.037834569811820984, + 0.09411391615867615, + 0.10836630314588547, + -0.026200393214821815, + 0.042264945805072784, + -0.002688563195988536, + 0.008309436030685902, + -0.026576155796647072, + 0.012781690806150436, + -0.10073161870241165, + -0.0845189243555069, + -0.013750377111136913, + 0.06540631502866745, + -0.0016107525443658233, + -0.008127476088702679, + -0.0010899341432377696, + 0.03494003787636757, + -0.04068873077630997, + 0.046550024300813675, + -0.01780405454337597, + -0.030665773898363113, + -0.05066774785518646, + 0.13515141606330872, + 0.029598163440823555, + 0.013155259191989899, + -0.09503775089979172, + 0.03077053837478161, + 0.07361980527639389, + 0.03809577599167824, + 0.02031025104224682, + 0.015492227859795094, + 0.03049352578818798, + 0.031960077583789825, + -0.014694157987833023, + 0.011638542637228966, + 0.012893124483525753, + 0.04842342808842659, + -0.0016311532817780972, + 0.013089320622384548, + -0.01601894572377205, + -0.018719948828220367, + -0.05129004642367363, + 0.06949746608734131, + -0.04383757337927818, + 0.018788129091262817, + 0.04309829697012901, + -0.08030766993761063, + -0.10130277276039124, + 0.019354766234755516, + -0.07564758509397507, + -0.0653798058629036, + -0.04450957477092743, + 0.012132160365581512, + -0.01584494486451149, + 0.041352059692144394, + -0.028698796406388283, + -0.057102445513010025, + -0.0767008364200592, + -0.02359970100224018, + -0.007025536615401506, + -0.018985271453857422, + 0.006650820840150118, + 0.08027493953704834, + -0.0906369537115097, + 0.016886701807379723, + 0.0192691870033741, + -0.03402204066514969, + -0.029244419187307358, + 0.07542701065540314, + 0.012068485841155052, + -0.007480605039745569, + 0.04131769761443138, + -0.05048806592822075, + -0.017136329784989357, + -0.08275244385004044, + 0.001042367541231215, + -0.029211103916168213, + 0.04315568134188652, + 0.05907678231596947, + -0.058133918792009354, + -0.04372033849358559, + -0.01868749037384987, + -0.06900397688150406, + 0.047607969492673874, + -0.05495896190404892, + -0.056621845811605453, + -0.01281180139631033, + 0.10183300077915192, + 0.1112154871225357, + 0.04922634735703468, + -0.013046699576079845, + -0.0636386126279831, + -0.04987555742263794, + -0.02860448509454727, + 0.045757684856653214, + -0.031156886368989944, + -1.869582255338585e-33, + 0.09101226180791855, + 0.025374438613653183, + -0.04619547352194786, + 0.11902091652154922, + 0.003767657559365034, + 0.003292110515758395, + -0.07654707878828049, + -0.08269457519054413, + -0.07259522378444672, + -0.023030171170830727, + -0.03560473024845123, + 0.0062335943803191185, + -0.016631998121738434, + 0.06512276083230972, + 0.07536038756370544, + -0.03997834026813507, + 0.013055113144218922, + 0.0031551953870803118, + 0.04531901702284813, + -0.008258016780018806, + -0.11584634333848953, + 0.05412611737847328, + 0.017467975616455078, + 0.002586458111181855, + 0.05568445101380348, + 0.015429303050041199, + 0.058432359248399734, + -0.0806867703795433, + 0.04112393409013748, + 0.028962718322873116, + 0.0018430455820634961, + -0.04245194047689438, + 0.04442628473043442, + 0.03222235292196274, + 0.022379497066140175, + 0.029689183458685875, + -0.07728302478790283, + -0.043649714440107346, + 0.012135392054915428, + -0.012469443492591381, + -0.10937141627073288, + -0.06566154956817627, + -0.09804554283618927, + -0.028441721573472023, + 0.034108538180589676, + 0.016501296311616898, + -0.049700334668159485, + 0.021955352276563644, + -0.0199905913323164, + -0.03501367196440697, + 0.028072627261281013, + -0.033240217715501785, + 0.012208199128508568, + 0.023802943527698517, + 0.03873912990093231, + -0.04544059932231903, + 0.03317679092288017, + -0.03340538963675499, + -0.012885876931250095, + 0.05820358917117119, + -0.006653531454503536, + -0.01756998337805271, + 0.04160383343696594, + -0.12115802615880966, + 0.06887636333703995, + -0.030323022976517677, + -0.044646911323070526, + -0.024989735335111618, + -0.003665137104690075, + -0.04568757116794586, + -0.07193170487880707, + 0.07359601557254791, + 0.031353458762168884, + 0.056564442813396454, + -0.07920327037572861, + -0.0076893409714102745, + 0.02715473808348179, + 0.036618784070014954, + 0.07468054443597794, + -0.018927033990621567, + -0.09735583513975143, + -0.041344866156578064, + -0.03219543769955635, + 0.014632402919232845, + -0.01821879856288433, + 0.019076550379395485, + 0.00027746069827117026, + -0.1461637169122696, + -0.09165553003549576, + 0.034137062728405, + -0.09871086478233337, + 0.01961658149957657, + 0.020251864567399025, + -0.09749332070350647, + -0.061760030686855316, + 4.30550204243069e-35, + -0.06071677803993225, + 0.0792841836810112, + -0.10263991355895996, + 0.05581340938806534, + 0.029953638091683388, + 0.04068562760949135, + 0.06894944608211517, + 0.11288676410913467, + 0.04541261866688728, + 0.026296675205230713, + -0.02172820270061493, + -0.017657652497291565, + -0.07807590067386627, + -0.03939967229962349, + -0.003544421633705497, + 0.060000527650117874, + 0.06519044935703278, + -0.007588590960949659, + -0.019577153027057648, + -0.005111019592732191, + -0.02901582233607769, + 0.028299517929553986, + -0.0749024897813797, + 0.061059195548295975, + 0.024848204106092453, + -0.03064061887562275, + 0.01864694431424141, + -0.044595979154109955, + 0.04418182745575905, + -0.044376205652952194, + 0.032562486827373505, + 0.0023123857099562883, + -0.028794502839446068, + 0.08999263495206833, + 0.004401839803904295, + 0.0012080927845090628, + 0.04864218086004257, + 0.002354718279093504, + -0.04741557687520981, + 0.010945623740553856, + 0.07850703597068787, + 0.0468183308839798, + -0.036306243389844894, + 0.04748767986893654, + -0.04065605252981186, + -0.01256837509572506, + -0.13453012704849243, + -0.02475237473845482, + -0.04612874984741211, + 0.04936119168996811, + 0.08765988796949387, + -0.09443764388561249, + 0.015022838488221169, + 0.01689434051513672, + -0.04630398377776146, + -0.05633971095085144, + 0.035504065454006195, + 0.06600335985422134, + -0.06436879187822342, + 0.010906265117228031, + -0.016147492453455925, + -0.04103940352797508, + 0.012563406489789486, + 4.0251208702102304e-05, + 0.03076726570725441, + -0.058946963399648666, + 0.017317989841103554, + -0.0008150090579874814, + -0.04228939116001129, + -0.03964310139417648, + 0.11963240057229996, + -0.07947126775979996, + -0.03813910484313965, + -0.017198512330651283, + 0.09514012187719345, + -0.04966568201780319, + -0.032263051718473434, + 0.002136483322829008, + -0.07214201241731644, + 0.022080818191170692, + 0.04296176880598068, + 0.019464725628495216, + -0.001929465914145112, + 0.09772977232933044, + 0.026569325476884842, + 0.01580214314162731, + 0.013507845811545849, + 0.07230754941701889, + 0.007993009872734547, + -0.03236499801278114, + -0.011313027702271938, + 0.02700214646756649, + -0.004072428215295076, + 0.043969303369522095, + -0.03129347413778305, + -2.1351612033981837e-08, + -0.04575111344456673, + -0.10041359812021255, + 0.020151561126112938, + -0.03815803304314613, + 0.052362583577632904, + 0.02298717014491558, + 0.011950955726206303, + 0.014668076299130917, + 0.027890747413039207, + -0.046594761312007904, + 0.014056898653507233, + -0.003083108691498637, + -0.0573541633784771, + -0.012193876318633556, + 0.05223219096660614, + -0.05257163569331169, + -0.07179135084152222, + -0.0020389161072671413, + -0.004633002448827028, + -0.04445617273449898, + 0.013489583507180214, + 0.05382669344544411, + -0.03669280186295509, + 0.06592512875795364, + 0.01308612059801817, + -0.014930334873497486, + -0.03552643954753876, + 0.0298453439027071, + -0.05135509744286537, + 0.054405923932790756, + 0.01393840555101633, + 0.018467819318175316, + 0.03566724434494972, + -0.09782930463552475, + -0.0882801041007042, + 0.049753692001104355, + 0.008578899316489697, + -0.053099125623703, + -0.02234361134469509, + 0.1507754772901535, + 0.06091037392616272, + -0.03376414254307747, + -0.0008224156335927546, + -0.02678828500211239, + 0.00011499969696160406, + -0.03514925390481949, + 0.07427561283111572, + -0.0929962545633316, + -0.04502665251493454, + -0.05333072319626808, + 0.0006543956696987152, + 0.018107006326317787, + 0.017430800944566727, + 0.06053364276885986, + 0.011230936273932457, + -0.03470180183649063, + 0.054457567632198334, + 0.09758048504590988, + 0.06910428404808044, + 0.001612242660485208, + 0.09212702512741089, + 0.09451718628406525, + 0.006277339067310095, + 0.04318425804376602 + ], + "check-bold||todo,to-do,task,list,checkbox,ok,done": [ + 0.03994501009583473, + -0.011846732348203659, + -0.04958459734916687, + 0.04909759759902954, + 0.09316977858543396, + -0.018337871879339218, + 0.13037718832492828, + -0.041083525866270065, + -0.0570576936006546, + 0.04199296981096268, + -0.03191758692264557, + 0.011147723533213139, + 0.030760889872908592, + -0.019041882827878, + -0.012406270019710064, + 0.009903107769787312, + 0.031226910650730133, + -0.03231966868042946, + -0.047071799635887146, + -0.05625041201710701, + 0.043598711490631104, + 0.0058268285356462, + 0.07723090797662735, + 0.06893359124660492, + -0.028957083821296692, + 0.026719408109784126, + 0.0423978827893734, + -0.06286007165908813, + -0.05354296788573265, + -0.07175014913082123, + -0.007062272634357214, + -0.01050809770822525, + 0.12026438862085342, + 0.03301125019788742, + 0.09986618906259537, + 0.10821577906608582, + -0.029898639768362045, + -0.03784105181694031, + 0.01721540465950966, + -0.03565268591046333, + -0.05690107122063637, + -0.04421870410442352, + -0.07845799624919891, + -0.04010136425495148, + -0.00460636243224144, + -0.010007130913436413, + -0.08468125015497208, + -0.11148297041654587, + 0.06773019582033157, + -0.019764209166169167, + 0.03329562768340111, + -0.06755996495485306, + -0.04432959482073784, + -0.05899703875184059, + 0.027631068602204323, + 0.05461284890770912, + -0.04407058283686638, + -0.024243434891104698, + 0.004347851034253836, + -0.038048747926950455, + -0.0022849070373922586, + 0.008618632331490517, + 0.002083864761516452, + 0.000361580983735621, + 0.07041339576244354, + 0.06545904278755188, + -0.055539973080158234, + -0.007781411986798048, + -0.037130191922187805, + 0.04647599160671234, + -0.03189248591661453, + 0.009707526303827763, + 0.07860741019248962, + 0.0013428053352981806, + -0.0771428793668747, + -0.016356345266103745, + 0.07310744374990463, + -0.02551531232893467, + -0.0601196251809597, + -0.05246056243777275, + -0.13233047723770142, + -0.04899551346898079, + -0.06632953137159348, + 0.023136330768465996, + 0.056030672043561935, + 0.035073526203632355, + -0.0849291980266571, + -0.019244657829403877, + 0.006041654851287603, + -0.0685107558965683, + -0.01523299515247345, + -0.047057170420885086, + 0.012922474183142185, + 0.022507108747959137, + -0.02201564982533455, + 0.03942364454269409, + 0.05238662287592888, + 0.03860076889395714, + -0.03638483211398125, + 0.07086402922868729, + 0.01636463589966297, + 0.036139123141765594, + 0.000983186298981309, + -0.057694315910339355, + 0.042762212455272675, + 0.007831741124391556, + -0.001777896424755454, + -0.006644587032496929, + -0.022220227867364883, + -0.013778889551758766, + -0.012304798699915409, + -0.09835618734359741, + 0.08750893920660019, + -0.018700866028666496, + -0.022999921813607216, + -0.06979432702064514, + -0.004412994720041752, + 0.013351944275200367, + 0.0051546646282076836, + 0.0677168220281601, + 0.14920121431350708, + -0.04112081974744797, + -0.07133154571056366, + -0.03795935586094856, + 0.014734609983861446, + -0.045427002012729645, + 0.056211769580841064, + -1.783068442511957e-33, + 0.09783203154802322, + 0.026605403050780296, + 0.024146363139152527, + 0.07461195439100266, + 0.04712912440299988, + -0.01336633786559105, + -0.03736136481165886, + -0.020227791741490364, + -0.0881052315235138, + 0.05554363876581192, + 0.09409863501787186, + 0.03507639467716217, + -0.06849691271781921, + 0.03795800730586052, + 0.014666616916656494, + -0.06537028402090073, + 0.003915777429938316, + 0.012299705296754837, + -0.10814033448696136, + 0.021071424707770348, + -0.02592931129038334, + -0.027425361797213554, + -0.041903167963027954, + -0.0050664679147303104, + -0.022223878651857376, + -0.018485182896256447, + 0.034209173172712326, + 0.017479930073022842, + -0.10148780047893524, + 0.01280334871262312, + -0.03400596231222153, + -0.011823994107544422, + 0.021923696622252464, + 0.09057273715734482, + -0.046049974858760834, + 0.03079906292259693, + -0.07852806150913239, + 0.008545827120542526, + -0.014398635365068913, + 0.013218937441706657, + 0.014801856130361557, + -0.004171499516814947, + -0.015104308724403381, + -0.026380665600299835, + 0.061260417103767395, + 0.06687590479850769, + -0.0072632585652172565, + -0.0035570745822042227, + 0.08997148275375366, + -0.013499758206307888, + 0.047676436603069305, + 0.018882662057876587, + -0.009626317769289017, + -0.03103932924568653, + -0.00491649704053998, + -0.06488380581140518, + 0.012397382408380508, + 0.06230774521827698, + 0.06879968196153641, + 0.024316033348441124, + 0.02757551148533821, + 0.007999083958566189, + -0.04082046076655388, + -0.011362208053469658, + -0.04628003388643265, + 0.07639787346124649, + -0.07046540826559067, + 0.07457885146141052, + 0.06969214975833893, + -0.007960394024848938, + -0.034621596336364746, + 0.0432329960167408, + 0.02214556746184826, + 0.07462065666913986, + 0.026350272819399834, + 0.037673383951187134, + 0.03823276609182358, + -0.1061585396528244, + 0.019636712968349457, + -0.08569145947694778, + 0.011242544278502464, + -0.04102407768368721, + -0.09349460154771805, + 0.05770031362771988, + 0.04296311363577843, + 0.008542322553694248, + -0.012247729115188122, + -0.05820690840482712, + -0.057867370545864105, + 0.040594059973955154, + -0.06918991357088089, + 0.016944730654358864, + -0.01528027094900608, + -0.10614828765392303, + -0.06818818300962448, + -1.642981841988588e-33, + 0.109767846763134, + 0.02839895710349083, + -0.05323495715856552, + -0.016917062923312187, + -0.005847754888236523, + 0.013291668146848679, + -0.022152774035930634, + -0.0507848747074604, + 0.031225450336933136, + 0.012144896201789379, + -0.02713080868124962, + -0.050836022943258286, + -0.02902510017156601, + -0.02408159337937832, + -0.0027077735867351294, + 0.039616622030735016, + 0.027813609689474106, + 0.07163356989622116, + -0.07512520253658295, + 3.147794268443249e-05, + -0.03875645622611046, + 0.0730937048792839, + -0.01820795238018036, + 0.0672934353351593, + -0.015927817672491074, + -0.009718338958919048, + -0.022975029423832893, + -0.01946309022605419, + 0.018921975046396255, + 0.021296609193086624, + 0.01539801899343729, + -0.006406412459909916, + 0.024928851053118706, + 0.0804252028465271, + 0.00741432374343276, + -0.008841011673212051, + 0.014601106755435467, + -0.0013938634656369686, + -0.0023794667795300484, + 0.08046069741249084, + 0.004292288329452276, + -0.025373000651597977, + 0.051611561328172684, + 0.021316219121217728, + -0.07054910063743591, + 0.00799876544624567, + -0.04895612224936485, + 0.003937951289117336, + -0.08742742240428925, + 0.05385466665029526, + 0.07757125049829483, + -0.05226139724254608, + -0.07548130303621292, + -0.015921441838145256, + -0.0013239460531622171, + -0.029582077637314796, + -0.008187692612409592, + -0.0905526876449585, + -0.023713896051049232, + 0.04485335201025009, + -0.05032268539071083, + -0.0015111863613128662, + 0.05886775255203247, + 0.004817365203052759, + 0.027016784995794296, + -0.0429183691740036, + -0.004944223444908857, + -0.026638373732566833, + 0.07251384109258652, + 0.01999746263027191, + 0.07891882210969925, + -0.07494685053825378, + -0.042710356414318085, + 0.009504040703177452, + 0.03526216745376587, + -0.06999599933624268, + -0.004567164462059736, + 0.004713553003966808, + -0.03891870751976967, + 0.031017759814858437, + -0.0021981941536068916, + -0.05441495403647423, + 0.011778546497225761, + 0.001111523131839931, + -0.05732055753469467, + -0.029845869168639183, + -0.04029424488544464, + 0.03242604061961174, + -0.044670891016721725, + 0.012488476932048798, + -0.03051695227622986, + -0.013027719222009182, + 0.10650614649057388, + -0.0038342447951436043, + -0.09351323544979095, + -2.3585581487850504e-08, + -0.04734578728675842, + -0.08406171947717667, + -0.06256357580423355, + 0.022833313792943954, + 0.026765991002321243, + -0.057237785309553146, + -0.07938509434461594, + -0.04975077882409096, + -0.0034057036973536015, + -0.03860897198319435, + 0.0646829903125763, + -0.009628836996853352, + -0.07621636986732483, + -0.04856641963124275, + 0.08367176353931427, + 0.0013914513401687145, + -0.061830032616853714, + 0.0896293967962265, + -0.024980492889881134, + -0.010137734934687614, + 0.02020201086997986, + 0.038351669907569885, + -0.044222451746463776, + 0.033986594527959824, + 0.06178492307662964, + 0.02847355417907238, + -0.10801827162504196, + 0.05652257055044174, + 0.03499821200966835, + 0.11170422285795212, + 0.0841500461101532, + 0.016983721405267715, + -0.010314163751900196, + 0.012109952978789806, + -0.02448141761124134, + -0.053456854075193405, + 0.0505613312125206, + 0.013981436379253864, + 0.0350828692317009, + 0.15429286658763885, + 0.03867963328957558, + 0.0425170361995697, + -0.07649184763431549, + 0.02920151874423027, + -0.07642486691474915, + -0.02107745222747326, + -0.028643524274230003, + -0.047913383692502975, + -0.0809125155210495, + -0.1619337499141693, + -0.021345630288124084, + 0.031027786433696747, + 0.03930283337831497, + 0.04545110464096069, + -0.03957544267177582, + -0.0041036829352378845, + 0.10078519582748413, + 0.05228596180677414, + 0.03168734163045883, + 0.03753335401415825, + 0.11495060473680496, + 0.03730655834078789, + 0.06669188290834427, + -0.017842529341578484 + ], + "check-circle-bold||todo,to-do,task,list,checkbox,round,ok,done": [ + 0.04542817175388336, + 0.00520299980416894, + -0.11056584119796753, + 0.06369629502296448, + 0.10574670881032944, + -0.05280153453350067, + 0.1260514259338379, + -0.023510411381721497, + -0.007981332018971443, + 0.006481033284217119, + -0.03447680547833443, + 0.021529607474803925, + 0.039292823523283005, + -0.025745179504156113, + 0.02650025486946106, + -0.026681361719965935, + -0.023832878097891808, + -0.038974713534116745, + -0.029902741312980652, + -0.07744459062814713, + 0.02183867059648037, + -0.02596445567905903, + 0.09414587169885635, + 0.10512426495552063, + -0.04005688056349754, + 0.05460624024271965, + 0.03601561114192009, + -0.0582616925239563, + -0.058138407766819, + -0.09024975448846817, + -0.05047733709216118, + 0.04224298149347305, + 0.0990159884095192, + 0.026546088978648186, + 0.06136038154363632, + 0.08702004700899124, + -0.054649658501148224, + -1.1188916687387973e-05, + 0.02439821884036064, + -0.08028331398963928, + -0.025087159126996994, + -0.05317653715610504, + -0.028219670057296753, + -0.037690382450819016, + -0.018445728346705437, + 0.00340733933262527, + -0.13133811950683594, + -0.09064644575119019, + 0.05713341385126114, + 0.019257327541708946, + 0.033029720187187195, + -0.09308188408613205, + -0.053442712873220444, + -0.06715252995491028, + 0.03932324796915054, + 0.041918862611055374, + -0.024997984990477562, + -0.03288953751325607, + 0.047574158757925034, + -0.03956441953778267, + 0.02048766240477562, + -0.005879126489162445, + 0.014975727535784245, + 0.015155614353716373, + 0.03744827210903168, + 0.04609151557087898, + -0.06394895166158676, + -0.044378697872161865, + -0.036733176559209824, + 0.012751289643347263, + -0.02197258546948433, + 0.02011793479323387, + 0.0633300393819809, + -0.014995904639363289, + -0.040428049862384796, + 0.001090891077183187, + 0.028722478076815605, + -0.007834155112504959, + -0.08088108152151108, + -0.04138133302330971, + -0.11573430895805359, + -0.016822082921862602, + -0.020880110561847687, + 0.06333587318658829, + 0.06349369883537292, + 0.04903366044163704, + -0.04798545315861702, + -0.04599624127149582, + -0.0025999322533607483, + -0.07117584347724915, + -0.02970915101468563, + -0.009520381689071655, + -0.014197248965501785, + 0.0012021929724141955, + -0.053733740001916885, + 0.020162411034107208, + 0.028471456840634346, + 0.004370206035673618, + -0.07965169847011566, + 0.07650142908096313, + 0.03375614807009697, + 0.03632797300815582, + 0.017615634948015213, + -0.06816104799509048, + 0.033854637295007706, + 0.012354602105915546, + -0.0016022169729694724, + -0.0234256312251091, + -0.010213111527264118, + 0.009442046284675598, + -0.019207926467061043, + -0.10252970457077026, + 0.09150592237710953, + -0.020585061982274055, + -0.02535911276936531, + -0.04496948421001434, + -0.02357557602226734, + 0.01656690053641796, + 0.014405064284801483, + 0.05976968631148338, + 0.1360408514738083, + -0.0232830923050642, + -0.09494724869728088, + -0.037684567272663116, + -0.009828859940171242, + -0.026119165122509003, + 0.04208063334226608, + -2.5732669692033923e-33, + 0.06586645543575287, + 0.04524903744459152, + 0.029146326705813408, + 0.04117730259895325, + 0.028615355491638184, + -0.0481497161090374, + -0.022879621013998985, + -0.024213043972849846, + -0.0328640341758728, + 0.03600209951400757, + 0.08070596307516098, + 0.01980474404990673, + -0.05681436508893967, + 0.023506343364715576, + 0.03638100251555443, + -0.07962117344141006, + 0.056170448660850525, + -0.009907164610922337, + -0.12620407342910767, + -0.028060810640454292, + -0.04138658940792084, + -0.029609598219394684, + -0.08285649120807648, + -0.012127925641834736, + -0.016969097778201103, + 0.013437910005450249, + 0.025948822498321533, + 0.019184233620762825, + -0.0863274484872818, + 0.023841476067900658, + -0.025146188214421272, + -0.007465680595487356, + 0.02625149115920067, + 0.10082651674747467, + -0.03215079754590988, + 0.039731547236442566, + -0.08275213837623596, + 0.026830706745386124, + -0.014952423982322216, + -0.0018294500187039375, + 0.011268047615885735, + -0.03593137115240097, + -0.043466899544000626, + 0.0007516107871197164, + 0.04883328825235367, + 0.08534438908100128, + 0.019098730757832527, + 0.018042011186480522, + 0.06510331481695175, + -0.026005221530795097, + 0.025003865361213684, + 0.0380907878279686, + -0.034547701478004456, + -0.06433498114347458, + -0.004474943038076162, + -0.08458993583917618, + 0.03269756957888603, + 0.06315047293901443, + 0.024073606356978416, + 0.024769127368927002, + 0.04540374502539635, + 0.022664014250040054, + -0.062080591917037964, + -0.02582755871117115, + -0.06286871433258057, + 0.08001253008842468, + -0.10482479631900787, + 0.031727056950330734, + 0.06677534431219101, + -0.01560682151466608, + -0.034591153264045715, + 0.05308445170521736, + 0.057579394429922104, + 0.09998971223831177, + 0.014953739941120148, + 0.032595936208963394, + 0.04911918193101883, + -0.0925837978720665, + 0.026638777926564217, + -0.07524631917476654, + 0.003624834818765521, + -0.03443220630288124, + -0.08174388855695724, + 0.006032450124621391, + 0.06461266428232193, + -0.029109472408890724, + 0.02095717005431652, + -0.04248872771859169, + -0.049831654876470566, + 0.01578594744205475, + -0.06967292726039886, + 0.03279155492782593, + 0.031254928559064865, + -0.047174230217933655, + -0.09897273778915405, + -6.425333855186204e-34, + 0.08174365013837814, + 0.0406549870967865, + -0.01602434180676937, + -0.0016751500079408288, + -0.004603103268891573, + 0.015686720609664917, + -0.020486516878008842, + -0.06407304108142853, + 0.03398048132658005, + 0.028874780982732773, + -0.06384269893169403, + -0.035325512290000916, + -0.020850056782364845, + -0.007664957549422979, + 0.04261843487620354, + 0.05044372007250786, + 0.036372218281030655, + 0.07815692573785782, + -0.0697663277387619, + 0.021973343566060066, + -0.041202519088983536, + 0.06174346059560776, + -0.02366039901971817, + 0.057600028812885284, + -0.041356708854436874, + 0.011156037449836731, + 0.006392871029675007, + -0.05958665534853935, + 0.017661184072494507, + 0.04198366776108742, + -0.03180462867021561, + -0.045359544456005096, + 0.05557844415307045, + 0.0850154235959053, + 0.03442133590579033, + -0.05821758136153221, + 0.02514224499464035, + -0.025166170671582222, + -0.04460146650671959, + 0.03392462059855461, + -0.02622241899371147, + -0.05676181986927986, + 0.04877541959285736, + 0.03194216266274452, + -0.03769582882523537, + -0.02601737342774868, + 0.006278696469962597, + 0.04743553325533867, + -0.12674449384212494, + 0.06117663532495499, + 0.07334686070680618, + -0.018411139026284218, + -0.044570133090019226, + -0.012460462749004364, + 0.006707027554512024, + 0.01686367578804493, + -0.02233327366411686, + -0.059334781020879745, + 0.0038128795567899942, + 0.025845946744084358, + -0.05938022583723068, + -0.03522844240069389, + 0.057618845254182816, + 0.04384667053818703, + 0.04072669893503189, + -0.005314297042787075, + -0.0015798031818121672, + -0.022766772657632828, + 0.017725126817822456, + 0.06902793049812317, + 0.04919026046991348, + -0.004191376268863678, + -0.04167528823018074, + -0.011124343611299992, + 0.029047628864645958, + -0.048013828694820404, + 0.026036519557237625, + -0.013402094133198261, + -0.05713985115289688, + 0.040041934698820114, + -0.028275838121771812, + -0.029122482985258102, + 0.01325036771595478, + -0.01651906967163086, + -0.04766979441046715, + -0.037920236587524414, + -0.03006039373576641, + 0.028051510453224182, + -0.03865601867437363, + 0.029674354940652847, + -0.03352327272295952, + -0.004087000619620085, + 0.11540910601615906, + 0.038743775337934494, + -0.03068404085934162, + -2.3519746150668652e-08, + -0.050672709941864014, + -0.06964118033647537, + -0.0449993759393692, + 0.04719007387757301, + 0.09155770391225815, + -0.060349270701408386, + -0.07882112264633179, + -0.04694347083568573, + -0.013897253200411797, + -0.04236467182636261, + 0.04201206564903259, + 0.01860315352678299, + -0.0836215689778328, + -0.04337724298238754, + 0.07894092053174973, + 0.0013414428103715181, + -0.04019433632493019, + 0.10969803482294083, + -0.006131132133305073, + 0.009909059852361679, + 0.037009622901678085, + -0.004844059236347675, + -0.027333935722708702, + -0.01030944287776947, + 0.029231227934360504, + -0.005652075167745352, + -0.09276215732097626, + 0.08014081418514252, + 0.003539138939231634, + 0.05440807715058327, + 0.06283092498779297, + 0.017524678260087967, + -0.0025670011527836323, + 0.02497089095413685, + -0.01727231964468956, + -0.09335701167583466, + 0.03850902244448662, + 0.037980563938617706, + 0.03920751437544823, + 0.16553667187690735, + 0.04332415387034416, + 0.05840402841567993, + -0.06189512088894844, + 0.029896436259150505, + -0.060633134096860886, + 0.0015531836543232203, + -0.01495326030999422, + -0.05509953200817108, + -0.0974632054567337, + -0.15848544239997864, + -0.04434092715382576, + 0.025461656972765923, + 0.06719940155744553, + 0.033943261951208115, + -0.024635614827275276, + -0.002878402126953006, + 0.12156732380390167, + 0.061087172478437424, + -0.015149987302720547, + 0.06113491579890251, + 0.07564903795719147, + 0.05912330746650696, + 0.0694836974143982, + -0.015766972675919533 + ], + "check-fat-bold||todo,to-do,task,list,checkbox,ok,done": [ + 0.04503701999783516, + -0.005862912628799677, + -0.037133365869522095, + 0.07671023160219193, + 0.08157483488321304, + -0.024016594514250755, + 0.1249614953994751, + -0.04073822498321533, + -0.06256651133298874, + 0.021024681627750397, + -0.023058151826262474, + -0.01938696950674057, + 0.034759826958179474, + -0.029104381799697876, + -0.009082354605197906, + -0.05357043072581291, + 0.03714199364185333, + -0.03743980824947357, + -0.05543064698576927, + -0.06189322471618652, + 0.05385151877999306, + 0.003205306828022003, + 0.0947585180401802, + 0.08562120050191879, + -0.04667888209223747, + 0.020963579416275024, + 0.0208596158772707, + -0.08969781547784805, + -0.07165232300758362, + -0.07801297307014465, + 0.01033624354749918, + -0.018548060208559036, + 0.12517975270748138, + 0.015696298331022263, + 0.08275292068719864, + 0.09753171354532242, + -0.026512518525123596, + -0.06038659065961838, + 0.0038309269584715366, + -0.05982866510748863, + -0.05077036842703819, + -0.08425956219434738, + -0.06681559234857559, + -0.02439592219889164, + 0.01424280647188425, + -0.015281181782484055, + -0.0889587253332138, + -0.07419608533382416, + 0.058222800493240356, + 0.0004658415273297578, + 0.022156570106744766, + -0.0928368866443634, + -0.031524475663900375, + -0.04920915514230728, + 0.04095514491200447, + 0.049316443502902985, + -0.02353716641664505, + -0.03558385744690895, + -0.01345349196344614, + -0.028260216116905212, + 0.014974488876760006, + 0.011215897276997566, + 0.005808137822896242, + 0.01761888898909092, + 0.0445854477584362, + 0.037136953324079514, + -0.06880278140306473, + -0.01630185917019844, + -0.034075744450092316, + 0.06570126861333847, + -0.0218005683273077, + -0.00029353771242313087, + 0.03461318090558052, + 0.02093280851840973, + -0.06931234896183014, + -0.00825949851423502, + 0.04300073906779289, + -0.03282906487584114, + -0.04618427902460098, + -0.038578856736421585, + -0.14013436436653137, + -0.04253339767456055, + -0.05457698553800583, + 0.04377191141247749, + 0.05679240822792053, + 0.05142833665013313, + -0.0711967721581459, + 0.004460921511054039, + -0.00785780604928732, + -0.07230231165885925, + -0.015286612324416637, + -0.06141500920057297, + -0.00033308748970739543, + 0.039542440325021744, + -0.05437731370329857, + 0.03462974354624748, + 0.01459189411252737, + 0.047260582447052, + -0.043202608823776245, + 0.06006542965769768, + 0.006888162810355425, + 0.05278884619474411, + 0.013285615481436253, + -0.032677337527275085, + 0.038548678159713745, + 0.015226313844323158, + -0.013434282504022121, + 0.012076164595782757, + -0.005309557542204857, + -0.01175884809345007, + -0.008948633447289467, + -0.12073148787021637, + 0.09378720074892044, + 0.012194338254630566, + -0.019986050203442574, + -0.05561811849474907, + 0.0005409059231169522, + 0.03650335222482681, + -0.00675851758569479, + 0.07443481683731079, + 0.11120680719614029, + -0.033140335232019424, + -0.07948601990938187, + -0.0652027353644371, + 0.033498793840408325, + -0.05810311436653137, + 0.031320612877607346, + -1.763972536782849e-33, + 0.05958116799592972, + 0.006127369590103626, + 0.03375208377838135, + 0.06062209606170654, + 0.05772111937403679, + -0.047544144093990326, + -0.03793315961956978, + -0.01586104929447174, + -0.0888650193810463, + 0.07394598424434662, + 0.11126943677663803, + 0.018185824155807495, + -0.06989207118749619, + 0.05296149104833603, + 0.018423303961753845, + -0.08164714276790619, + 0.022390536963939667, + 0.02874329313635826, + -0.0717054083943367, + 0.01150351483374834, + -0.03862249106168747, + -0.03606860712170601, + -0.035776376724243164, + -0.026455441489815712, + 0.005670310463756323, + -0.018378369510173798, + 0.015036186203360558, + 0.007750343531370163, + -0.057412948459386826, + 0.02358284406363964, + -0.05191574990749359, + -0.017307136207818985, + 0.027918653562664986, + 0.0633733868598938, + -0.055868104100227356, + -0.012493266724050045, + -0.07066310942173004, + 0.007807455491274595, + -0.030864398926496506, + -0.006411232519894838, + 0.04911385476589203, + -0.008374487049877644, + -0.018250947818160057, + -0.035044196993112564, + 0.03693441301584244, + 0.08995126932859421, + 0.0038716131821274757, + 0.007448264397680759, + 0.08970719575881958, + -0.03583543002605438, + 0.08379684388637543, + 0.018708810210227966, + 0.001312046661041677, + -0.017957555130124092, + -9.508965376880951e-06, + -0.08267073333263397, + 0.00536460243165493, + 0.07572227716445923, + 0.07807497680187225, + 0.00774671696126461, + 0.043087832629680634, + 0.0215283315628767, + -0.05736956000328064, + -0.015036515891551971, + -0.06440424919128418, + 0.04605045169591904, + -0.05706484615802765, + 0.059305042028427124, + 0.04853217676281929, + 0.02562287449836731, + -0.0065224566496908665, + 0.04556240886449814, + 0.02669902704656124, + 0.07198101282119751, + 0.04376361146569252, + 0.020231420174241066, + 0.04867229610681534, + -0.12288736552000046, + -0.015114021487534046, + -0.07058704644441605, + 0.02555258385837078, + -0.04064074158668518, + -0.0741945132613182, + 0.044837601482868195, + 0.02451719157397747, + 0.02458822727203369, + -0.008289468474686146, + -0.04492519423365593, + -0.044670216739177704, + 0.03807171434164047, + -0.09648057073354721, + 0.0038016322068870068, + -0.024882741272449493, + -0.10711958259344101, + -0.0904606282711029, + -1.2301175529240837e-33, + 0.10235067456960678, + 0.028716282919049263, + -0.0523526668548584, + -0.002170650754123926, + -0.0074831596575677395, + 0.008772470988333225, + -0.03319566324353218, + -0.05080675333738327, + 0.0610208734869957, + -0.0029962891712784767, + -0.043679166585206985, + -0.051394984126091, + -0.041481874883174896, + -0.026987474411725998, + 0.013310340233147144, + 0.05819128826260567, + 0.02193613536655903, + 0.028862200677394867, + -0.08425833284854889, + -0.012440751306712627, + -0.02995346114039421, + 0.04061521217226982, + -0.012382552959024906, + 0.09435433149337769, + -0.02984011359512806, + -0.0006995959556661546, + -0.0012968695955350995, + 0.02089950628578663, + -0.008535231463611126, + 0.018663544207811356, + 0.0033820592798292637, + -0.01200326532125473, + 0.01928974688053131, + 0.055904682725667953, + 0.0031382429879158735, + -0.03056301735341549, + -0.012029886245727539, + 0.04006272554397583, + -0.01209675706923008, + 0.08989834040403366, + 0.006501557771116495, + -0.03014562651515007, + 0.043308522552251816, + 0.02679869532585144, + -0.06085877865552902, + -0.044128138571977615, + -0.03761555254459381, + -0.013852652162313461, + -0.07654199749231339, + 0.04067709296941757, + 0.08143851161003113, + -0.05529653653502464, + -0.05186137929558754, + 0.014575466513633728, + -0.0013514889869838953, + 0.015141177922487259, + 0.0010945165995508432, + -0.0825713574886322, + -0.03382895514369011, + -0.013020762242376804, + -0.06889284402132034, + -0.011328589171171188, + 0.05083572864532471, + -0.0013596201315522194, + 0.04608813673257828, + -0.02616865560412407, + 0.000865424401126802, + -0.0554104819893837, + 0.050107330083847046, + 0.03857771307229996, + 0.06258701533079147, + -0.05113684758543968, + -0.03895775228738785, + 0.0419762097299099, + 0.01484969723969698, + -0.06869122385978699, + 0.0040577482432127, + -0.011915648356080055, + -0.02750074863433838, + 0.048914585262537, + -0.002728336723521352, + -0.05284591391682625, + 0.027255777269601822, + -0.03431621566414833, + -0.05057448148727417, + 0.009637930430471897, + -0.06353533267974854, + 0.04418376088142395, + -0.05827224254608154, + 0.04763687029480934, + -0.023020321503281593, + 0.010387648828327656, + 0.10901860147714615, + -0.01337883248925209, + -0.09667310863733292, + -2.3352809463972335e-08, + -0.037775713950395584, + -0.09892475605010986, + -0.04737354442477226, + 0.04768451303243637, + 0.02197815477848053, + -0.04802987724542618, + -0.067098468542099, + -0.02864729054272175, + 0.02654123865067959, + -0.04276236519217491, + 0.05805014446377754, + -0.0012859208509325981, + -0.05462203174829483, + -0.01739114336669445, + 0.07246582955121994, + 0.00505431042984128, + -0.04884976148605347, + 0.10082768648862839, + -0.043101031333208084, + -0.025602584704756737, + 0.021179651841521263, + 0.028966881334781647, + -0.02992398850619793, + 0.04119570553302765, + 0.06548735499382019, + 0.011662106029689312, + -0.10012302547693253, + 0.06429106742143631, + 0.028227197006344795, + 0.11204748600721359, + 0.09837796539068222, + 0.015590283088386059, + 0.0052204495295882225, + 0.014701573178172112, + 0.02107907459139824, + -0.048443276435136795, + 0.07215463370084763, + 0.017589883878827095, + 0.014937695115804672, + 0.17262470722198486, + 0.036147233098745346, + 0.0600217841565609, + -0.04308833181858063, + 0.020791001617908478, + -0.07081335783004761, + -0.04398297518491745, + -0.0449419766664505, + -0.012141397222876549, + -0.05860358104109764, + -0.142411470413208, + -0.001691340352408588, + 0.042287927120923996, + 0.00918178353458643, + 0.07422887533903122, + -0.049877822399139404, + -0.011479293927550316, + 0.09714149683713913, + 0.04816596955060959, + 0.02991090528666973, + 0.06816227734088898, + 0.1320103257894516, + 0.02159552276134491, + 0.08532360941171646, + -0.002134030219167471 + ], + "check-square-bold||todo,to-do,task,list,checkbox,rectangle,ok,done": [ + 0.06264578551054001, + 0.007855957373976707, + -0.043100062757730484, + 0.06570284068584442, + 0.03615468740463257, + 0.0034147175028920174, + 0.11423065513372421, + -0.035318903625011444, + -0.045430440455675125, + 0.028191421180963516, + -0.03209740296006203, + 0.023669270798563957, + 0.04750692844390869, + -0.005486849695444107, + -0.046846695244312286, + -0.004989981185644865, + 0.030314432457089424, + -0.04037509486079216, + -0.037591803818941116, + -0.04913943633437157, + 0.030576201155781746, + -0.03969666734337807, + 0.07489754259586334, + 0.04290708899497986, + -0.018092365935444832, + 0.031229451298713684, + 0.05220213532447815, + -0.01025504618883133, + -0.03106173314154148, + -0.08931192755699158, + 0.009884046390652657, + 0.006611216813325882, + 0.11414481699466705, + 0.045964691787958145, + 0.08764246851205826, + 0.11187158524990082, + -0.03145288676023483, + -0.011530213989317417, + 0.03687303140759468, + -0.035407520830631256, + -0.04680623859167099, + -0.0688282921910286, + -0.05257818102836609, + -0.02361956611275673, + 0.014143419452011585, + -0.022459497675299644, + -0.08187886327505112, + -0.10111235827207565, + 0.06436726450920105, + -0.03613913431763649, + 0.03506166487932205, + -0.08755460381507874, + -0.03310174494981766, + -0.06537362933158875, + 0.038192130625247955, + 0.043595023453235626, + -0.006156957242637873, + -0.015309012494981289, + 0.039078064262866974, + -0.028279049322009087, + 0.008044209331274033, + 0.0033733975142240524, + -0.014176961034536362, + 0.002480377210304141, + 0.020592592656612396, + 0.08316420763731003, + -0.08324418216943741, + -0.02094367891550064, + -0.04313981905579567, + 0.04598188400268555, + -0.015050819143652916, + 0.05298018828034401, + 0.08775582909584045, + 0.011452652513980865, + -0.04908805713057518, + -0.08780496567487717, + 0.060768336057662964, + -0.03973451256752014, + -0.037761952728033066, + -0.018673259764909744, + -0.14605093002319336, + -0.007737246807664633, + -0.0656675472855568, + 0.037193093448877335, + 0.037528857588768005, + 0.017585033550858498, + -0.07023945450782776, + -0.004435546230524778, + -0.0032070986926555634, + -0.09853082150220871, + -0.01898975670337677, + -0.028930090367794037, + 0.02607431448996067, + 0.029859913513064384, + -0.024078888818621635, + 0.034552380442619324, + 0.059472352266311646, + 0.031404294073581696, + -0.06864232569932938, + 0.04953056201338768, + 0.04372672364115715, + 0.02491380088031292, + 0.010809376835823059, + -0.07681815326213837, + 0.06402967125177383, + 0.005258740857243538, + 0.030020158737897873, + -0.01158452033996582, + 0.010855109430849552, + -0.01765843853354454, + -0.015630843117833138, + -0.1078733503818512, + 0.09351155161857605, + 0.013733403757214546, + -0.0316024087369442, + -0.04369272291660309, + -0.01755835860967636, + -0.009835995733737946, + 0.015138214454054832, + 0.029233623296022415, + 0.1590188592672348, + -0.016932008787989616, + -0.06488071382045746, + -0.04259530454874039, + 0.0009041426237672567, + -0.028927676379680634, + 0.03762025386095047, + -1.703349170704074e-33, + 0.06431840360164642, + 0.039492715150117874, + 0.045954760164022446, + 0.09260939806699753, + 0.07739531993865967, + -0.03448687866330147, + -0.03819407522678375, + -0.04121123626828194, + -0.04000278189778328, + 0.07269497960805893, + 0.07494266331195831, + 0.0006413649534806609, + -0.11419710516929626, + 0.05476682633161545, + 0.046764448285102844, + -0.07143554836511612, + 0.027523307129740715, + 0.043681222945451736, + -0.0994953140616417, + 0.01615237258374691, + -0.043253976851701736, + -0.03713448718190193, + -0.06734766066074371, + 0.013607244938611984, + -0.024234097450971603, + -0.005821073427796364, + 0.021071158349514008, + 0.012760982848703861, + -0.04664596915245056, + 0.03310561180114746, + -0.030068974941968918, + 0.033051326870918274, + 0.003091304562985897, + 0.07029028981924057, + -0.04649863392114639, + -0.0017141958232969046, + -0.05523503199219704, + 0.023471176624298096, + 0.011321978643536568, + 0.0010093054734170437, + 0.01923324726521969, + -0.006035941652953625, + -0.0024693780578672886, + -0.03991235792636871, + 0.09821537882089615, + 0.013274851255118847, + 0.03449965640902519, + 0.008607504889369011, + 0.08122944086790085, + -0.020982494577765465, + 0.04992712661623955, + 0.03064575232565403, + -0.015844661742448807, + -0.021167512983083725, + 0.017829105257987976, + -0.09893172234296799, + -0.0036993215326219797, + 0.08745016157627106, + 0.0768587589263916, + 0.061876002699136734, + 0.03503362461924553, + 0.008870977908372879, + -0.05333234742283821, + -0.01658296026289463, + -0.057677753269672394, + 0.0656336173415184, + -0.08147159218788147, + 0.028075311332941055, + 0.024135487154126167, + 0.0176854245364666, + -0.04367959871888161, + 0.02533734031021595, + 0.04016639292240143, + 0.06080702319741249, + 0.022800732403993607, + 0.006661324296146631, + 0.05282337963581085, + -0.1071137860417366, + 0.017847254872322083, + -0.13667254149913788, + -0.005822803825139999, + -0.022991182282567024, + -0.1113867238163948, + -0.034843988716602325, + 0.027199532836675644, + -0.030943499878048897, + 0.017528578639030457, + -0.05330941826105118, + -0.059850338846445084, + 0.0003381935821380466, + -0.09475212544202805, + 0.007196471095085144, + -0.014291416853666306, + -0.08155570179224014, + -0.06195911020040512, + -1.2454066018309546e-33, + 0.09124863147735596, + 0.06415343284606934, + -0.04844328388571739, + -0.02552463859319687, + 0.001536656985990703, + -0.010975314304232597, + -0.006987771950662136, + -0.0582648366689682, + 0.047100260853767395, + 0.023210546001791954, + -0.049060240387916565, + -0.055344108492136, + -0.04516783729195595, + -0.043336205184459686, + 0.010605990886688232, + 0.06684540957212448, + 0.049291837960481644, + 0.06671293824911118, + -0.10968171060085297, + -0.03835616260766983, + -0.045122046023607254, + 0.03925108164548874, + -0.008118083700537682, + 0.06594622880220413, + -0.05173267796635628, + 0.028839711099863052, + -0.015401887707412243, + -0.02320854179561138, + 0.04475511610507965, + 0.05286960303783417, + -0.019802842289209366, + -0.013280746527016163, + 0.00919349119067192, + 0.0864238291978836, + -0.026015788316726685, + -0.06137067824602127, + 0.0323292538523674, + -0.01647181436419487, + 0.0009499891311861575, + 0.056996770203113556, + 0.03316957876086235, + -0.028784172609448433, + 0.05034825578331947, + 0.0661938413977623, + -0.05280609428882599, + 0.02075319178402424, + -0.032293565571308136, + 0.015600716695189476, + -0.08723640441894531, + 0.0051473164930939674, + 0.04882611706852913, + -0.03805219382047653, + -0.07907696813344955, + 0.0008829609141685069, + -0.01794307865202427, + -0.003786996705457568, + -0.02924979478120804, + -0.05095278099179268, + -0.018857577815651894, + 0.0379599928855896, + -0.052393969148397446, + -0.013401348143815994, + 0.05426856502890587, + 0.01539174560457468, + 0.03354473412036896, + -0.02499900385737419, + 0.0022327210754156113, + -0.009895902127027512, + 0.04169946536421776, + 0.07090011984109879, + 0.06862808018922806, + -0.015803441405296326, + -0.06328290700912476, + -0.01147375162690878, + 0.02110118605196476, + -0.0368473194539547, + -0.019984280690550804, + -0.0013241446577012539, + -0.04935425892472267, + 0.05914756655693054, + 0.005091376136988401, + -0.030562646687030792, + 0.03639736771583557, + -0.030907822772860527, + -0.05715073272585869, + -0.052570801228284836, + -0.039071355015039444, + 0.07478279620409012, + -0.05104612186551094, + 0.002916646422818303, + -0.03806095942854881, + -0.023752037435770035, + 0.09208890050649643, + 0.03033292666077614, + -0.05567237734794617, + -2.4159071188023518e-08, + -0.06355974823236465, + -0.064175546169281, + -0.04703729972243309, + -0.019336586818099022, + 0.01890593394637108, + -0.07199971377849579, + -0.09192395955324173, + -0.03759907931089401, + 0.007082561496645212, + -0.04485047981142998, + 0.02954058162868023, + -0.006711822468787432, + -0.09263048321008682, + -0.026670055463910103, + 0.08183696120977402, + 0.009604488499462605, + -0.057331427931785583, + 0.08046368509531021, + -0.01802743226289749, + -0.0012747219298034906, + 0.05245552584528923, + -0.007078155409544706, + -0.047773327678442, + 0.07062055170536041, + -0.002230866812169552, + 0.014726908877491951, + -0.12876926362514496, + 0.08814308792352676, + 0.027379700914025307, + 0.10839401930570602, + 0.09363888949155807, + 0.037578001618385315, + 0.014124481938779354, + 0.013155103661119938, + -0.024979330599308014, + -0.08619257807731628, + 0.05431662127375603, + 0.03310225531458855, + 0.023560799658298492, + 0.11682672798633575, + 0.06336859613656998, + -0.005023553501814604, + -0.053584955632686615, + 0.02489360049366951, + -0.038529954850673676, + -0.00857672281563282, + 0.006373872049152851, + -0.05198231711983681, + -0.080040343105793, + -0.1563921719789505, + -0.020678367465734482, + 0.015510034747421741, + 0.030572904273867607, + 0.04822671785950661, + -0.05795469880104065, + -0.0005126892938278615, + 0.057729970663785934, + 0.042797692120075226, + 0.051940251141786575, + 0.03780985251069069, + 0.07853325456380844, + 0.08083214610815048, + 0.05003296583890915, + -0.009190180338919163 + ], + "check-square-offset-bold||*updated*,todo,to-do,task,list,checkbox,rectangle,ok,done": [ + 0.052282657474279404, + -0.0041643125005066395, + -0.05385446175932884, + 0.06361155956983566, + 0.033200886100530624, + 0.02616003528237343, + 0.09018918871879578, + -0.033591896295547485, + -0.030129125341773033, + 0.033538881689310074, + -0.008021595887839794, + 0.02219885028898716, + 0.040911246091127396, + -0.05355234444141388, + -0.06332949548959732, + -0.016955338418483734, + 0.027112392708659172, + -0.03987320512533188, + -0.021001651883125305, + -0.0278850756585598, + -0.0002876838843803853, + -0.00755705451592803, + 0.07366106659173965, + 0.05643479526042938, + -0.017232796177268028, + 0.04999573156237602, + 0.03531680628657341, + 0.00836410466581583, + -0.03347332775592804, + -0.08290403336286545, + -0.01209983415901661, + 0.002980309072881937, + 0.11043591797351837, + 0.03487785533070564, + 0.07647687941789627, + 0.06699250638484955, + -0.06176655739545822, + 0.023132137954235077, + 0.04636114835739136, + -0.013126439414918423, + -0.028404181823134422, + -0.05195712298154831, + -0.001530459732748568, + -0.04220391437411308, + 0.0010398818412795663, + -0.004369485192000866, + -0.08883854001760483, + -0.061946406960487366, + 0.0209948867559433, + -0.03282233327627182, + 0.03627556189894676, + -0.12841126322746277, + -0.0024640068877488375, + -0.04867498204112053, + 0.03886023536324501, + 0.0325297974050045, + 0.030710145831108093, + 0.003825528547167778, + 0.06227077916264534, + -0.020065458491444588, + 0.054521843791007996, + 0.029411237686872482, + -0.02039596438407898, + -0.011216329410672188, + -0.028545578941702843, + 0.06381820142269135, + -0.06982928514480591, + -0.03703463077545166, + -0.014544831588864326, + 0.037646014243364334, + -0.027278253808617592, + 0.0862412378191948, + 0.08080054819583893, + 0.004091307055205107, + -0.027282342314720154, + -0.0782192051410675, + 0.06609651446342468, + -0.025849271565675735, + -0.02108980529010296, + -0.03391455113887787, + -0.13034512102603912, + -0.045330848544836044, + -0.027891524136066437, + 0.028764205053448677, + 0.041657954454422, + -0.013710507191717625, + -0.04659928008913994, + 0.012748822569847107, + -0.011291954666376114, + -0.09934033453464508, + 0.02320903167128563, + -0.0658610388636589, + 0.009823623113334179, + 0.024459820240736008, + -0.04820367321372032, + 0.04356534779071808, + 0.053247902542352676, + 0.04930653050541878, + -0.06675510853528976, + 0.04863956570625305, + 0.043357979506254196, + 0.018751157447695732, + -0.03166786581277847, + -0.029167788103222847, + 0.06004880741238594, + 0.02428554557263851, + -0.0015339575475081801, + -0.02209608629345894, + -0.013309875503182411, + -0.014358020387589931, + -0.02565634250640869, + -0.10110994428396225, + 0.04284479469060898, + 0.0017660100711509585, + -0.03898259624838829, + -0.05746770650148392, + 0.004622926004230976, + -0.0015127210645005107, + -0.0338786244392395, + -0.004054184537380934, + 0.15958727896213531, + -0.020798059180378914, + -0.07819155603647232, + -0.02325090952217579, + -0.024951064959168434, + -0.02341364324092865, + 0.03845890983939171, + -1.1880745280989861e-33, + 0.06216168776154518, + 0.021978626027703285, + 0.045594170689582825, + 0.08693522959947586, + 0.06382178515195847, + -0.04919576272368431, + -0.05452734977006912, + -0.03797518089413643, + -0.010559347458183765, + 0.04342878237366676, + 0.09467093646526337, + 0.01178149413317442, + -0.1141028106212616, + 0.04466022551059723, + 0.0187583789229393, + -0.09567812830209732, + 0.020311668515205383, + 0.07018805295228958, + -0.08602648228406906, + 0.0498913936316967, + -0.07035672664642334, + -0.06230754777789116, + -0.09556501358747482, + -0.008865554817020893, + -0.029973262920975685, + 0.009015427902340889, + -0.02434738725423813, + 0.04139488935470581, + -0.07611443847417831, + 0.012380624189972878, + -0.04885553941130638, + 0.06635201722383499, + 0.01712847501039505, + 0.028864238411188126, + -0.02680673822760582, + -0.026642680168151855, + -0.08268341422080994, + 0.01480112038552761, + 0.03319777175784111, + -0.005244717467576265, + 0.03731925040483475, + -0.0037600533105432987, + 0.008080989122390747, + -0.07780471444129944, + 0.12969458103179932, + 0.007918081246316433, + 0.014244631864130497, + 0.00351370545104146, + 0.09480466693639755, + -0.016888286918401718, + 0.046817779541015625, + 0.06812851130962372, + -0.04440326616168022, + -0.04458245635032654, + -0.018455786630511284, + -0.13817641139030457, + 0.0018449638737365603, + 0.07975027710199356, + 0.09591422975063324, + 0.06746777892112732, + 0.03497495502233505, + -0.0052651590667665005, + -0.03765328601002693, + -0.0033362130634486675, + -0.03933531418442726, + 0.06436225771903992, + -0.05467027798295021, + 0.0033386312425136566, + 0.0023385328240692616, + 0.061232950538396835, + -0.035624850541353226, + -0.01790652796626091, + 0.05525941401720047, + 0.08902791142463684, + -0.010977844707667828, + 0.005536631215363741, + 0.03011743538081646, + -0.09520779550075531, + 0.020533768460154533, + -0.14462247490882874, + 0.009060821495950222, + -0.010372980497777462, + -0.11402919143438339, + -0.05782778561115265, + 0.013930185697972775, + -0.045978009700775146, + 0.021014975383877754, + -0.009952347725629807, + -0.02236928418278694, + -0.01003336627036333, + -0.07494407892227173, + -0.012235484085977077, + -0.004902667831629515, + -0.07233508676290512, + -0.030017010867595673, + -1.5237812965209346e-33, + 0.1364474892616272, + 0.05245309695601463, + -0.01959102973341942, + -0.039224956184625626, + -0.009986454620957375, + -0.01355450227856636, + -0.0071051716804504395, + -0.008677345700562, + 0.04893910139799118, + 0.04592558369040489, + -0.05668051540851593, + -0.04027446359395981, + -0.05995863303542137, + -0.009303945116698742, + -0.013851117342710495, + 0.09822867065668106, + 0.029942378401756287, + 0.03615632280707359, + -0.1271839141845703, + -0.07322116941213608, + -0.017191294580698013, + 0.03877706453204155, + -0.00945651438087225, + 0.04900301620364189, + -0.04613794386386871, + 0.009600193239748478, + -0.005742557812482119, + 0.014715258963406086, + 0.04391144961118698, + 0.028964858502149582, + -0.038754191249608994, + -0.033700019121170044, + 0.007388310506939888, + 0.0401572547852993, + 0.03268980234861374, + -0.05050764977931976, + 0.01532826293259859, + 0.001816436997614801, + 0.018083680421113968, + 0.061898984014987946, + 0.009308315813541412, + -0.007066318765282631, + 0.04204908013343811, + 0.0649949237704277, + -0.010311105288565159, + 0.05502260476350784, + -0.005213480442762375, + 0.04531243443489075, + -0.1052171140909195, + -0.015061005018651485, + 0.023902032524347305, + -0.008278130553662777, + -0.056056130677461624, + 0.005198643077164888, + -0.00935280229896307, + 0.04398983344435692, + -0.021926525980234146, + -0.02668401040136814, + -0.004739358089864254, + 0.004024501424282789, + -0.06239565834403038, + 0.0071545010432600975, + 0.07297423481941223, + -0.037291474640369415, + 0.04855407029390335, + 0.028254372999072075, + 0.001353828120045364, + -0.0435880683362484, + 0.0027379891835153103, + 0.05648519843816757, + 0.041276536881923676, + -0.036159683018922806, + -0.08966159075498581, + -0.009885936044156551, + 0.007623093202710152, + -0.06124027073383331, + 0.010350147262215614, + -0.01022203080356121, + -0.02503853105008602, + 0.029638130217790604, + -0.018728084862232208, + -0.03627728298306465, + 0.05630666762590408, + -0.03849489614367485, + -0.08775509893894196, + -0.01868440955877304, + -0.052153993397951126, + 0.04882986843585968, + -0.030691251158714294, + -0.034034136682748795, + -0.07694666087627411, + -0.04149287939071655, + 0.09044094383716583, + 0.025009289383888245, + -0.047662153840065, + -2.7515598688410137e-08, + -0.06613421440124512, + -0.06553328037261963, + -0.022664619609713554, + 0.02465389110147953, + 0.01777726225554943, + -0.0600871816277504, + -0.07312657684087753, + -0.020703764632344246, + 0.0008727276581339538, + -0.0792359709739685, + 0.037621524184942245, + 0.01034478284418583, + -0.032307617366313934, + -0.04154619574546814, + 0.08430381119251251, + 0.00907974038273096, + -0.076238252222538, + 0.0735839381814003, + -0.025648608803749084, + 0.01354049239307642, + 0.07101205736398697, + 0.01755486987531185, + -0.0024903682060539722, + 0.055483341217041016, + 0.00506425928324461, + -0.024140000343322754, + -0.1433318555355072, + 0.14127010107040405, + 0.03960968926548958, + 0.04431157931685448, + 0.09969277679920197, + 0.026873428374528885, + 0.06038527935743332, + 0.02379613183438778, + 0.006807274185121059, + -0.06613365560770035, + 0.038191042840480804, + 0.02954392321407795, + 0.018536943942308426, + 0.10108128935098648, + 0.053639382123947144, + -0.03186643496155739, + -0.021060733124613762, + 0.04603412747383118, + -0.045565929263830185, + -0.013779982924461365, + 0.0013309147907420993, + -0.07433542609214783, + -0.09271147102117538, + -0.14645934104919434, + -0.03224697336554527, + 0.02620074711740017, + 0.048252180218696594, + 0.0644182339310646, + -0.07003065943717957, + -0.003278549527749419, + 0.053767129778862, + 0.028977923095226288, + 0.039117343723773956, + 0.05499817803502083, + 0.03328748792409897, + 0.06174332648515701, + 0.04652193561196327, + 0.013711434789001942 + ], + "checkerboard-bold||*new*,crossword": [ + -0.0013113965978845954, + -0.1296224445104599, + -0.07897588610649109, + 0.046652652323246, + 0.036465927958488464, + -0.029365401715040207, + 0.0958976224064827, + -0.04674825444817543, + -0.020360033959150314, + 0.04829553887248039, + 0.028053399175405502, + -0.015569651499390602, + 0.007084726821631193, + -0.06380297243595123, + 0.00029484168044291437, + 0.02945767343044281, + 0.042439911514520645, + -0.030806956812739372, + 0.0023791182320564985, + 0.01329672709107399, + -0.02593119442462921, + 0.010056372731924057, + 0.020130058750510216, + 0.012832350097596645, + -0.00880911573767662, + -0.020396897569298744, + 0.011714909225702286, + -0.029344845563173294, + 0.040015336126089096, + -0.04062408581376076, + 0.05330711975693703, + -0.008911406621336937, + 0.0814163014292717, + 0.06612660735845566, + 0.10123789310455322, + 0.006520645227283239, + -0.05249509587883949, + 0.0005803718231618404, + 0.0018920875154435635, + -0.04158182069659233, + -0.03502875193953514, + -0.08548500388860703, + -0.0601685456931591, + 0.05765640363097191, + -0.014440522529184818, + 0.030511002987623215, + -0.006385562475770712, + -0.029693936929106712, + 0.07687409222126007, + -0.003988540731370449, + 0.02587508037686348, + -0.11329653859138489, + -0.02840743213891983, + -0.0834318995475769, + 0.015241933986544609, + 0.016680601984262466, + -0.039402853697538376, + -0.06973784416913986, + 0.05374299734830856, + -0.048965662717819214, + 0.004149020649492741, + 0.06618612259626389, + 0.09253792464733124, + 0.014609898440539837, + 0.030740788206458092, + 0.027712659910321236, + -0.09791068732738495, + 0.03636252135038376, + -0.019375186413526535, + 0.07917649298906326, + 0.0011221622116863728, + 0.05432792752981186, + 0.06831932067871094, + 0.021883882582187653, + -0.07021547108888626, + -0.01048383116722107, + 0.07219778746366501, + 0.0014219103613868356, + 0.06109406054019928, + -0.02214856818318367, + -0.09881381690502167, + -0.03136138990521431, + -0.0397501178085804, + 0.006575911305844784, + 0.07621754705905914, + 0.03490182384848595, + -0.06336977332830429, + -0.06873814016580582, + -0.029235096648335457, + -0.0883825495839119, + 0.052261676639318466, + 0.0015312934992834926, + 0.052099257707595825, + 0.04471919313073158, + -0.06122099235653877, + -0.021965162828564644, + -0.01727261394262314, + 0.004250045400112867, + -0.0004469153645914048, + 0.04662702977657318, + -0.0383802130818367, + 0.06319477409124374, + 0.057314228266477585, + 0.0070340512320399284, + -0.04928486421704292, + 0.004499976523220539, + 0.0337526910007, + 0.023762667551636696, + -0.0002697336603887379, + 0.021403737366199493, + -0.01436743326485157, + -0.04900408163666725, + 0.07624668627977371, + -0.049241844564676285, + -0.041637543588876724, + 0.0207320936024189, + -0.05180996283888817, + -0.03587311878800392, + 0.10769983381032944, + 0.08099590986967087, + 0.0709700882434845, + -0.030453411862254143, + -0.03777891397476196, + -0.0660417377948761, + 0.010547557845711708, + 0.014552388340234756, + 0.03223720192909241, + -2.1386373002074596e-33, + 0.08741788566112518, + 0.08150497823953629, + -0.06661699712276459, + 0.06655570864677429, + 0.017041679471731186, + -0.028692184016108513, + -0.01605619676411152, + 0.03781581670045853, + -0.06139041855931282, + 0.07111183553934097, + 0.04288231208920479, + -0.01162018533796072, + -0.0314641147851944, + 0.010471285320818424, + 0.03134576976299286, + -0.015417415648698807, + 0.0040941121987998486, + -0.06283188611268997, + -0.06291886419057846, + -0.008402441628277302, + -0.08711984008550644, + -0.0377250574529171, + 0.017387377098202705, + -0.03020169958472252, + -0.08521430939435959, + -0.023723658174276352, + 0.023217832669615746, + -0.03481577709317207, + -0.027126189321279526, + 0.01818785071372986, + -0.07037416100502014, + -0.0636981949210167, + 0.02953227236866951, + 0.05852547660470009, + -0.04574492201209068, + 0.025357849895954132, + 0.0017134699737653136, + 0.012502290308475494, + -0.022971028462052345, + 0.03009563311934471, + -0.06641732901334763, + -0.06524896621704102, + 0.04575216770172119, + -0.0378265343606472, + 0.09180424362421036, + 0.038253843784332275, + -0.06514139473438263, + 0.06525016576051712, + 0.005539087112993002, + -0.05995757132768631, + 0.03510626032948494, + 0.013370656408369541, + -0.04840888828039169, + 0.05922798439860344, + -0.012720317579805851, + -0.0343935489654541, + -0.010627123527228832, + 0.08874951303005219, + 0.0734298974275589, + 0.020422842353582382, + -0.029715225100517273, + 0.09085966646671295, + 0.04506557434797287, + 0.06766457110643387, + -0.024176619946956635, + 0.058336291462183, + -0.007134021259844303, + 0.06897465139627457, + 0.05064547061920166, + -0.05180101841688156, + -0.03381769731640816, + 0.011730735190212727, + -0.00539564061909914, + 0.08498618751764297, + 0.020013971254229546, + -0.006531554739922285, + 0.005566332023590803, + -0.06480315327644348, + 0.08377265930175781, + -0.12148504704236984, + 0.010093269869685173, + -0.00423203781247139, + -0.0700141191482544, + 0.07534480094909668, + -0.01186937466263771, + -0.04534370079636574, + 0.006932406220585108, + -0.0630728006362915, + -0.03276015445590019, + 0.03042253665626049, + -0.01876993663609028, + -0.05735396221280098, + -0.015920864418148994, + -0.05604923143982887, + -0.031745217740535736, + -1.0910405918454756e-33, + 0.015025741420686245, + -0.0280879158526659, + -0.0036208101082593203, + -0.00011386281403247267, + -0.09042482078075409, + -0.03925615921616554, + 0.010741250589489937, + 0.014882652088999748, + 0.03725782409310341, + 0.015889232978224754, + 0.04551144316792488, + 0.037538640201091766, + 0.017993437126278877, + -0.057118866592645645, + 0.07136745005846024, + 0.0697254166007042, + -0.022922176867723465, + 0.09192045778036118, + -0.04615871608257294, + 0.009063348174095154, + 0.07420796155929565, + 0.03585627302527428, + -0.05412927642464638, + 0.04921653866767883, + -0.00711235823109746, + 0.030055640265345573, + 0.038477085530757904, + 0.03035654127597809, + 0.012786964885890484, + 0.04793451353907585, + -0.030598171055316925, + 0.034411363303661346, + 0.051908090710639954, + 0.07403863966464996, + -0.031763557344675064, + -0.014869987964630127, + 0.013062171638011932, + -0.05051356926560402, + 0.026492968201637268, + 0.021953053772449493, + -0.003487326903268695, + -0.013479920104146004, + 0.030615121126174927, + 0.0583912655711174, + -0.07790005952119827, + -0.005352236330509186, + -0.0770735889673233, + 0.015055721625685692, + -0.003323787823319435, + 0.014525515958666801, + 0.009646310470998287, + -0.09694386273622513, + -0.008969168178737164, + -0.010521919466555119, + -0.01449945755302906, + 0.0808006003499031, + -0.009908715263009071, + -0.032746586948633194, + -0.05951334908604622, + 0.07593067735433578, + -0.015015280805528164, + -0.05530187115073204, + -0.024128587916493416, + 0.004237554967403412, + 0.07438598573207855, + -0.06411372870206833, + -0.028651360422372818, + -0.007915361784398556, + 0.044162169098854065, + 0.028257260099053383, + 0.04144621640443802, + -0.013700639829039574, + -0.11275596171617508, + 0.018676692619919777, + 0.00952710211277008, + 0.015698352828621864, + 0.040590666234493256, + -0.010769176296889782, + -0.036853015422821045, + 0.044349055737257004, + -0.04840916022658348, + -0.03225210681557655, + 0.04853416234254837, + -0.027452191337943077, + -0.008377157151699066, + -0.030157621949911118, + -0.04360778257250786, + 0.023059390485286713, + -0.016706423833966255, + -0.11364684253931046, + -0.05171801522374153, + -0.060755789279937744, + 0.054559651762247086, + -0.04339190199971199, + -0.10941163450479507, + -1.9333521450448643e-08, + -0.05196002498269081, + 0.005687071941792965, + 0.00361173739656806, + 0.010381343774497509, + 0.050448160618543625, + -0.10871753841638565, + -0.06729578226804733, + -0.13959893584251404, + -0.07661035656929016, + -0.030291642993688583, + 0.03202100843191147, + 0.05187945440411568, + -0.02701658569276333, + -0.006662364117801189, + 0.06633410602807999, + -0.01407007034868002, + -0.013732482679188251, + 0.04580952599644661, + -0.045683056116104126, + -0.06472166627645493, + 0.004652532748878002, + 0.061301007866859436, + 0.006031412165611982, + 0.038676027208566666, + -0.00846080668270588, + -0.026520734652876854, + -0.10708934813737869, + -0.03252206742763519, + 0.04708826169371605, + 0.0378122441470623, + 0.08956608921289444, + 0.09513542801141739, + 0.014208982698619366, + -0.018045973032712936, + -0.018330683931708336, + 0.0753796175122261, + -0.011018759571015835, + 0.017696421593427658, + 0.0290911216288805, + 0.1290963590145111, + -0.05767952650785446, + -0.016565298661589622, + -0.12374541163444519, + -0.031953364610672, + -0.07216493785381317, + -0.031161967664957047, + 0.007551521062850952, + -0.01229186076670885, + -0.07594948261976242, + -0.2068345546722412, + 0.05230310559272766, + -0.013309529982507229, + 0.04270212724804878, + 0.0132396649569273, + -0.03620152175426483, + -0.03503786399960518, + -0.0033299250062555075, + 0.17316704988479614, + 0.053360290825366974, + -0.010109380818903446, + 0.08823316544294357, + 0.012107763439416885, + 0.03526533395051956, + -0.011579924263060093 + ], + "checks-bold||*updated*,todo,task,to-do,list,checkbox,ok,done": [ + 0.02269432693719864, + 0.007316286209970713, + -0.05541705712676048, + 0.04234113171696663, + 0.07837005704641342, + -0.04589678347110748, + 0.12655654549598694, + -0.06034211814403534, + -0.04603707790374756, + 0.05450417101383209, + -0.011502783745527267, + 0.0139209795743227, + 0.03227047249674797, + -0.032003726810216904, + -0.032140620052814484, + 0.006711501162499189, + 0.012406309135258198, + -0.0193453561514616, + -0.05017518997192383, + -0.0544649213552475, + 0.0012216137256473303, + 0.012709079310297966, + 0.07425881922245026, + 0.07416417449712753, + -0.03360743448138237, + 0.03622821345925331, + 0.005554835312068462, + -0.06413790583610535, + -0.05648297443985939, + -0.09155458211898804, + -0.012531236745417118, + -0.01355766598135233, + 0.11063753068447113, + 0.02735128439962864, + 0.09023034572601318, + 0.09245451539754868, + -0.017820704728364944, + -0.028115559369325638, + 0.00816820003092289, + -0.03188486397266388, + -0.05680280178785324, + -0.058974798768758774, + -0.07756387442350388, + -0.008488046005368233, + -0.04170646890997887, + -0.016856156289577484, + -0.08505070954561234, + -0.10847367346286774, + 0.04279534891247749, + -0.014124440960586071, + 0.018514951691031456, + -0.08178533613681793, + -0.06183468550443649, + -0.049420200288295746, + 0.028221584856510162, + 0.04514698684215546, + -0.01814008690416813, + -0.007709536235779524, + 0.008356073871254921, + -0.04626522958278656, + 0.014132498763501644, + 0.03122679889202118, + -0.006253732834011316, + 0.009611228480935097, + 0.05566290766000748, + 0.0441826730966568, + -0.04739632457494736, + -0.041963111609220505, + -0.011428344063460827, + 0.03689291328191757, + -0.023307722061872482, + 0.0383981317281723, + 0.051754772663116455, + -0.006851434241980314, + -0.07773371785879135, + -0.025542983785271645, + 0.07045964151620865, + -0.023554017767310143, + -0.029587870463728905, + -0.05619306489825249, + -0.11787056922912598, + -0.05904034897685051, + -0.06915151327848434, + 0.009484726935625076, + 0.06196244806051254, + 0.02054796740412712, + -0.08238423615694046, + -0.016338342800736427, + 0.011191634461283684, + -0.06912990659475327, + 0.00020703746122308075, + -0.05556400120258331, + 0.023643415421247482, + -0.0030284153763204813, + -0.04623707756400108, + 0.04190133512020111, + 0.04392294958233833, + 0.05002310872077942, + -0.041166264563798904, + 0.08109652996063232, + 0.009112520143389702, + 0.04573112353682518, + -0.008262389339506626, + -0.05013357847929001, + 0.060024864971637726, + 0.021180039271712303, + -0.008366734720766544, + -0.0019485324155539274, + -0.02278892882168293, + -0.019553441554307938, + -0.0285583958029747, + -0.10532866418361664, + 0.059128567576408386, + -0.04279770702123642, + -0.02129940688610077, + -0.03802824020385742, + -0.0005636885762214661, + 0.03218506649136543, + -0.01222123671323061, + 0.07342983037233353, + 0.15269434452056885, + -0.038413483649492264, + -0.05478183925151825, + -0.03382764384150505, + -0.011114086955785751, + -0.05997808650135994, + 0.06723316758871078, + -1.740895011282315e-33, + 0.10083344578742981, + 0.033668238669633865, + 0.009638271294534206, + 0.08713912963867188, + 0.0535675473511219, + -0.0025051513221114874, + -0.03192600980401039, + -0.011328601278364658, + -0.06826069205999374, + 0.057453688234090805, + 0.0869412049651146, + 0.05563294515013695, + -0.07671666145324707, + 0.04159630462527275, + 0.006871214602142572, + -0.06836234778165817, + 0.017320770770311356, + 0.027512220665812492, + -0.07958883047103882, + 0.024531198665499687, + -0.01683637872338295, + -0.039515502750873566, + -0.03455027937889099, + -0.017940223217010498, + -0.0012254106113687158, + -0.01478663645684719, + 0.03306348994374275, + 0.034264396876096725, + -0.09717605262994766, + 0.009257053025066853, + -0.026136985048651695, + -0.01478821411728859, + 0.03160826861858368, + 0.0808381661772728, + -0.06472979485988617, + 0.03175511211156845, + -0.09133633226156235, + -0.011230045929551125, + -0.0033811789471656084, + -0.008591667748987675, + 0.012537175789475441, + -0.02545619197189808, + -0.03265492245554924, + -0.03914756327867508, + 0.07825072109699249, + 0.06811520457267761, + -0.041649967432022095, + 0.011929512023925781, + 0.09374035149812698, + -0.013435821048915386, + 0.04889848455786705, + 0.044408585876226425, + -0.016754208132624626, + -0.031800299882888794, + -0.0308958999812603, + -0.052688535302877426, + 0.010258454829454422, + 0.06162204220890999, + 0.061368875205516815, + 0.02278587408363819, + 0.048631224781274796, + 0.009199750609695911, + -0.04297110065817833, + -0.016506534069776535, + -0.04287787526845932, + 0.07599836587905884, + -0.05694064497947693, + 0.07250890880823135, + 0.08731544762849808, + 0.010659714229404926, + -0.05958293005824089, + 0.043073564767837524, + 0.036898910999298096, + 0.0914308950304985, + 0.004896672908216715, + 0.031728584319353104, + 0.010569967329502106, + -0.09739963710308075, + 0.0033738380298018456, + -0.07324343919754028, + 0.022540688514709473, + -0.05543897673487663, + -0.10606899112462997, + 0.07428126782178879, + 0.04974032938480377, + 0.016554521396756172, + -0.013672864995896816, + -0.03298019990324974, + -0.05685877427458763, + 0.04375052452087402, + -0.06392832100391388, + 0.0066700223833322525, + -0.006577610038220882, + -0.09945286810398102, + -0.06478134542703629, + -1.7126054540328304e-33, + 0.09328256547451019, + 0.011135481297969818, + -0.08158592134714127, + -0.009604542516171932, + -0.036092158406972885, + 0.003956644795835018, + -0.018100963905453682, + -0.029946479946374893, + 0.04427039995789528, + 0.008799280971288681, + -0.03576141223311424, + -0.03719539940357208, + -0.02156783454120159, + -0.026623105630278587, + 0.010250601917505264, + 0.04164764657616615, + 0.008656804449856281, + 0.0500798374414444, + -0.05837618187069893, + 0.03997300565242767, + -0.026719706133008003, + 0.07556112855672836, + -0.03734546899795532, + 0.09250194579362869, + -0.007297458127140999, + -0.0134366974234581, + -0.02534506469964981, + -0.03418993577361107, + 0.02970266528427601, + 0.03265387564897537, + 0.014434179291129112, + -0.005042594391852617, + 0.02068432793021202, + 0.064266137778759, + 0.017974497750401497, + -0.03654404357075691, + 0.04273690655827522, + -0.017263444140553474, + -0.004082614555954933, + 0.08694068342447281, + 0.01141735352575779, + -0.010751467198133469, + 0.047699179500341415, + 0.03254321217536926, + -0.03480638191103935, + 0.0019388729706406593, + -0.06505364924669266, + 0.020148497074842453, + -0.09675921499729156, + 0.05383078381419182, + 0.06097740679979324, + -0.06847795844078064, + -0.08079373836517334, + -0.012096044607460499, + 0.003008903469890356, + -0.004015066660940647, + -0.005778222344815731, + -0.07104948163032532, + -0.01696036383509636, + 0.05759311094880104, + -0.07261215150356293, + -0.00752889784052968, + 0.05322186276316643, + 0.004762341268360615, + 0.013662029057741165, + -0.025888442993164062, + -0.025959091261029243, + -0.05615116283297539, + 0.08533724397420883, + 0.01898079365491867, + 0.05859268084168434, + -0.08005298674106598, + -0.06691951304674149, + -0.002762377494946122, + 0.03822910785675049, + -0.06876031309366226, + 0.003956710919737816, + -0.024329913780093193, + -0.03720082342624664, + 0.03806925192475319, + -0.007962440140545368, + -0.038627199828624725, + 0.029329901561141014, + 0.006062846165150404, + -0.06263859570026398, + -0.018203001469373703, + -0.03772297874093056, + 0.041446734219789505, + -0.03303000330924988, + 0.0017093989299610257, + -0.03910858929157257, + -0.008950830437242985, + 0.09141400456428528, + -0.004234772175550461, + -0.08872886747121811, + -2.5680048310050552e-08, + -0.05420069769024849, + -0.062445446848869324, + -0.060759421437978745, + 0.04306608438491821, + 0.06866039335727692, + -0.0532856360077858, + -0.08542142808437347, + -0.06120438501238823, + -0.01341653149574995, + -0.07955952733755112, + 0.06968408823013306, + 0.003311524400487542, + -0.06173258647322655, + -0.05244186893105507, + 0.09176240861415863, + 0.007632498163729906, + -0.055259861052036285, + 0.06711577624082565, + -0.024717245250940323, + -0.023714875802397728, + 0.009558722376823425, + 0.05332077294588089, + -0.034912459552288055, + 0.03505859896540642, + 0.05565202236175537, + 0.0029685215558856726, + -0.08965860307216644, + 0.07552812993526459, + 0.028399739414453506, + 0.10093968361616135, + 0.08638563752174377, + 0.015444526448845863, + 0.013130148872733116, + 0.014473320916295052, + -0.023670021444559097, + -0.04100267216563225, + 0.04772815853357315, + 0.021295329555869102, + 0.045004118233919144, + 0.14747712016105652, + 0.04831845313310623, + 0.053180817514657974, + -0.06884513795375824, + 0.024804210290312767, + -0.08357378095388412, + -0.016688991338014603, + -0.03653843328356743, + -0.05606705695390701, + -0.09258255362510681, + -0.16171586513519287, + -0.02348070591688156, + 0.028055785223841667, + 0.047862183302640915, + 0.05116767808794975, + -0.0279114730656147, + 0.011132090352475643, + 0.09118829667568207, + 0.035503920167684555, + 0.05288650840520859, + 0.023700790479779243, + 0.10983271896839142, + 0.0214000903069973, + 0.0853874683380127, + -0.0229086522012949 + ], + "cheers-bold||*new*,glass,drinks,beverages,champagne,toast,places,locations,bars,restaurants,food,dining": [ + -0.022037450224161148, + -0.05652778595685959, + 0.018024859949946404, + 0.040239110589027405, + 0.002835008781403303, + 0.03797066956758499, + 0.06408961862325668, + -0.12126264721155167, + -0.04150780662894249, + -0.05024908855557442, + 0.009712593629956245, + 0.009548582136631012, + -0.016835737973451614, + -0.0032793078571558, + 0.041979558765888214, + -0.03709383308887482, + 0.08683931827545166, + -0.08064985275268555, + 0.07312728464603424, + -0.010218925774097443, + 0.033069316297769547, + -0.02210306189954281, + 0.05047452449798584, + 0.0912177786231041, + 0.05518147349357605, + 0.06100483983755112, + -0.01982753537595272, + 0.030606405809521675, + -0.006284263450652361, + -0.05423704534769058, + -3.111399564659223e-05, + 0.02831464633345604, + 0.11265068501234055, + -0.01274891383945942, + 0.022428182885050774, + 0.010968050919473171, + 0.06965718418359756, + -0.05031374841928482, + 0.03134335204958916, + 0.08618427813053131, + -0.00587872602045536, + -0.05729452148079872, + -0.031038273125886917, + 0.04077034816145897, + 0.04979477450251579, + -0.027840156108140945, + -0.022361211478710175, + 0.012559063732624054, + 0.05029384046792984, + 0.059057336300611496, + -0.020498378202319145, + -0.03249906003475189, + -0.05233612656593323, + -0.049475185573101044, + 0.07379751652479172, + 0.03441762551665306, + -0.04688216373324394, + -0.05115177482366562, + 0.06882519274950027, + 0.06083887442946434, + 0.07371310889720917, + -0.0066162338480353355, + -0.003966981545090675, + 0.0833570659160614, + -0.02892804518342018, + -0.06485990434885025, + -0.07888051122426987, + 0.08449290692806244, + -0.04286624491214752, + -0.0076619405299425125, + -0.055292364209890366, + -0.008158751763403416, + 0.15823817253112793, + 0.008784635923802853, + -0.0884656012058258, + -0.07113128155469894, + 0.07903364300727844, + -0.05441012233495712, + -0.05010390281677246, + 0.029514508321881294, + -0.07590534538030624, + -0.10345505177974701, + -0.05096445605158806, + -0.00758562283590436, + -0.03845406696200371, + -0.008517547510564327, + -0.0375487245619297, + -0.040561020374298096, + 0.0005475504440255463, + -0.011017252691090107, + -0.11963751167058945, + -0.022298313677310944, + -0.03183380141854286, + 0.009715558961033821, + -0.059395838528871536, + 0.026661967858672142, + -0.012062112800776958, + -0.035959940403699875, + 0.005796522833406925, + 0.07619072496891022, + 0.05782366544008255, + 0.11112035810947418, + 0.07554376870393753, + -0.04628565534949303, + 0.01684221625328064, + -0.00875338725745678, + -0.10118375718593597, + 0.06270299106836319, + 0.05853600054979324, + 0.006071083713322878, + -0.03294529393315315, + 0.024562492966651917, + 0.04757014662027359, + -0.035377226769924164, + -0.03890436142683029, + 0.008790545165538788, + -0.017913365736603737, + -0.07125682383775711, + 0.021681521087884903, + 0.010097460821270943, + 0.03044172190129757, + 0.025870485231280327, + 0.048408057540655136, + -0.004355316516011953, + -0.08091109246015549, + 0.05018969997763634, + -0.031127572059631348, + -5.000091219523329e-33, + 0.03916776925325394, + 0.0039696041494607925, + -0.0018055062973871827, + 0.0634220689535141, + 0.04523284360766411, + 0.0071092224679887295, + -0.05890200659632683, + -0.003710997523739934, + -0.07408124208450317, + 0.001585401245392859, + 0.07427257299423218, + -0.027340928092598915, + 0.0077238124795258045, + -0.0009555178694427013, + 0.03508204221725464, + -0.0115200225263834, + 0.0025271105114370584, + 0.007936260662972927, + -0.0687367394566536, + -0.06406978517770767, + -0.10246937721967697, + 0.0009537803125567734, + -0.009661481715738773, + 0.03833858668804169, + -0.08726445585489273, + -0.032845184206962585, + 0.09129234403371811, + -0.009291968308389187, + 0.00020787831454072148, + 0.020385226234793663, + 0.016368569806218147, + 0.05013357102870941, + 0.06805630028247833, + 0.01081261970102787, + 0.0417327880859375, + 0.03552348166704178, + -0.0344538688659668, + -0.062954381108284, + -0.0014531508786603808, + 0.00857246108353138, + -0.06786266714334488, + 0.0395938977599144, + 0.00320583488792181, + 0.0784272626042366, + -0.015863049775362015, + 0.06499338895082474, + -0.000416620634496212, + -0.014916387386620045, + 0.04756738618016243, + -0.017597123980522156, + -0.041065338999032974, + -0.04732547327876091, + -0.0209042988717556, + 0.010000200010836124, + -0.0720798596739769, + -0.024569071829319, + -0.008546349592506886, + 0.03159824386239052, + 0.04271116480231285, + -0.14108598232269287, + 0.018588710576295853, + -0.0007626067963428795, + 0.00348524353466928, + -0.061864640563726425, + -0.09506440907716751, + 0.05207362398505211, + -0.07068545371294022, + 0.0020839928183704615, + 0.0430615171790123, + -0.036606475710868835, + 0.04555998742580414, + 0.08720245957374573, + -0.017651185393333435, + 0.04687022045254707, + 0.06657615303993225, + 0.03880833461880684, + -0.003378607565537095, + 0.02041267231106758, + 0.038081683218479156, + -0.0397024042904377, + -0.04268665239214897, + -0.053593724966049194, + -0.044769395142793655, + 0.09987688809633255, + 0.04037537798285484, + -0.0005635221605189145, + 0.04333973303437233, + -0.13373015820980072, + 0.019611604511737823, + 1.6698200852260925e-05, + -0.17197185754776, + -0.03576425835490227, + 0.032066527754068375, + -0.05177946016192436, + -0.06548561900854111, + 1.637036779309304e-33, + 0.08104313164949417, + -0.04098697379231453, + -0.033389076590538025, + -0.05735544115304947, + 0.012270035222172737, + -0.019716041162610054, + -0.024421025067567825, + 0.039166584610939026, + 0.057804010808467865, + -0.08725284785032272, + -0.039370305836200714, + 0.01940278708934784, + 0.005069674924015999, + -0.028211789205670357, + -0.036107178777456284, + 0.08666461706161499, + 0.06572844833135605, + 0.10569093376398087, + -0.05229688808321953, + 0.028664065524935722, + 0.013715507462620735, + 0.013776990585029125, + -0.04070102795958519, + 0.06107475981116295, + -0.02061859332025051, + 0.05231208726763725, + 0.049189094454050064, + -0.05552777647972107, + -0.06584379076957703, + -0.03385003283619881, + -0.025829344987869263, + -0.06996864825487137, + -0.00029383355285972357, + 0.017223816365003586, + -0.04442621394991875, + 0.09953252971172333, + 0.021567808464169502, + -0.11104799062013626, + -0.06700436770915985, + -0.006762617267668247, + 0.04110289365053177, + -0.025096669793128967, + 0.05303402990102768, + 0.08036021143198013, + 0.015538775362074375, + 0.033372510224580765, + -0.08138850331306458, + -0.05981868878006935, + -0.06077634543180466, + 0.020212914794683456, + 0.030793165788054466, + -0.09644511342048645, + -0.05091134458780289, + 0.05678176134824753, + -0.0216120146214962, + 0.03918449208140373, + -0.03187329322099686, + -0.005821186117827892, + -0.046406231820583344, + -0.0581783652305603, + -0.06308908015489578, + 0.07784486562013626, + -0.03751944378018379, + 0.037136152386665344, + 0.07774971425533295, + -0.08697126805782318, + 0.010243868455290794, + 0.026750007644295692, + -0.018550178036093712, + 0.015467287041246891, + -0.003428221680223942, + 0.009760003536939621, + -0.07160583138465881, + 0.08460086584091187, + -0.012203503400087357, + -0.030981693416833878, + 0.028262173756957054, + -0.01425179559737444, + -0.06300843507051468, + 0.04288728907704353, + -0.018143614754080772, + -0.011850837618112564, + -0.019176669418811798, + 0.06137263774871826, + 0.015031230635941029, + -0.0487445592880249, + 0.08113352209329605, + -0.0014570648781955242, + -0.018028030171990395, + 0.028352228924632072, + -0.019184304401278496, + 0.061084214597940445, + -0.03393178433179855, + -0.02776709385216236, + 0.0235174298286438, + -2.6512674722312113e-08, + 0.03285175934433937, + 0.0023328003007918596, + -0.09455698728561401, + 0.10750825703144073, + -0.002165570855140686, + -0.09620504081249237, + -0.007463216781616211, + -0.056773554533720016, + -0.019419830292463303, + -0.021515579894185066, + -0.030995532870292664, + 0.1118166521191597, + -0.0033210476394742727, + -0.050081767141819, + -0.022023942321538925, + 0.006866226438432932, + -0.005793324671685696, + 0.03416097164154053, + -0.013281607069075108, + -0.04110002517700195, + 0.024847296997904778, + 0.02421431802213192, + 0.0722091794013977, + 0.07759718596935272, + -0.007640142925083637, + -0.01822829619050026, + -0.020237408578395844, + -0.018150871619582176, + 0.08162427693605423, + -0.02014523185789585, + -0.0005119210691191256, + 0.050344157963991165, + -0.0643659308552742, + 0.006303675938397646, + -0.05536073073744774, + 0.024881262332201004, + -0.027326999232172966, + -0.04410844296216965, + -0.0012452279916033149, + 0.06962449103593826, + -0.04250543937087059, + -0.11805857717990875, + -0.023526964709162712, + 0.011555656790733337, + -0.055130068212747574, + -0.0021286029368638992, + -0.009513656608760357, + 0.01325273234397173, + -0.03160223737359047, + -0.060529835522174835, + 0.017388859763741493, + 0.015428290702402592, + 0.06007145345211029, + -0.012591070495545864, + 0.01730218529701233, + -0.0033597610890865326, + -0.0006683837273158133, + 0.05405742675065994, + 0.07489407807588577, + -0.003924781922250986, + 0.15608671307563782, + 0.04370056092739105, + 0.00577864283695817, + -0.003565856721252203 + ], + "cheese-bold||*new*,dairy,wedge,food,dining": [ + 0.003511392278596759, + -0.09955040365457535, + 0.019459405913949013, + 0.088043712079525, + -0.013707853853702545, + 0.019702427089214325, + -0.0015779166715219617, + -0.03321029990911484, + -0.05519161745905876, + -0.021579084917902946, + 0.05056927353143692, + -0.055777404457330704, + -0.05589389428496361, + -0.03233354166150093, + 0.07158225774765015, + 0.00486387824639678, + 0.08657442033290863, + 0.030901003628969193, + 0.05038830265402794, + -0.0390879288315773, + 0.01951911859214306, + 0.006403226405382156, + 0.021629832684993744, + 0.059489551931619644, + 0.07373984158039093, + 0.016755031421780586, + 0.06285788118839264, + 0.014403987675905228, + 0.02869468554854393, + -0.09263069182634354, + -0.06555385887622833, + -0.004783738870173693, + 0.053990688174963, + -0.00587567500770092, + 0.050118349492549896, + -0.007638744078576565, + 0.055982597172260284, + -0.036993272602558136, + 0.02334580384194851, + 0.024666786193847656, + 0.007684045936912298, + -0.04006069153547287, + 0.014426999725401402, + 0.033742088824510574, + -0.015300870873034, + 0.028538407757878304, + -0.07041005790233612, + 0.04641716927289963, + 0.009315332397818565, + 0.01006443239748478, + -0.06475804001092911, + -0.07811451703310013, + -0.08084274083375931, + -0.04564724862575531, + 0.0822271853685379, + 0.010975822806358337, + -0.0839892327785492, + -0.07116630673408508, + 0.018714794889092445, + 0.02243586629629135, + 0.051134221255779266, + 1.846217674028594e-05, + 0.061798837035894394, + 0.04135796055197716, + -0.025983167812228203, + -0.020637962967157364, + -0.05744335427880287, + 0.030995415523648262, + -0.0870659127831459, + 0.04712638258934021, + -0.024022629484534264, + -0.0038358967285603285, + 8.708914538146928e-05, + 0.00633985223248601, + -0.05148433521389961, + -0.08307357877492905, + 0.07996512204408646, + -0.08135371655225754, + -0.013718809932470322, + 0.022602524608373642, + -0.1161886677145958, + 0.017582226544618607, + -0.08633758127689362, + -0.003283269237726927, + 0.001264902064576745, + -0.006830553989857435, + -0.07273329794406891, + -0.031503669917583466, + -0.07381343841552734, + -0.0564231276512146, + -0.07990338653326035, + -0.07389546930789948, + -0.025135815143585205, + 0.01689366064965725, + -0.013584108091890812, + 0.045432206243276596, + -0.03001055307686329, + -0.04358886554837227, + 0.004368610680103302, + 0.07915269583463669, + -0.014210148714482784, + 0.022373976185917854, + -0.04215322434902191, + -0.012316085398197174, + -0.07495425641536713, + -0.016507001593708992, + -0.06463580578565598, + -0.006135683506727219, + 0.06010396406054497, + 0.0746125653386116, + -0.04665397107601166, + 0.0036533803213387728, + -0.032730069011449814, + -0.08373937755823135, + -0.13619258999824524, + 0.027591455727815628, + -0.027556341141462326, + -0.0862436518073082, + 0.10887547582387924, + 0.08727774769067764, + -0.006172840017825365, + 0.039581917226314545, + 0.021230636164546013, + 0.006581137888133526, + -0.03410199284553528, + -0.0799538716673851, + 0.09744234383106232, + -3.9651062798487216e-33, + -0.0030083386227488518, + 0.02308925800025463, + 0.03138382360339165, + 0.060967978090047836, + 0.09399464726448059, + -0.026789257302880287, + 0.009431404061615467, + -0.02458006702363491, + -0.01927516795694828, + 0.0615311823785305, + 0.027084659785032272, + 0.012821617536246777, + -0.01688973605632782, + 0.0646541565656662, + 0.024937808513641357, + -0.03272595256567001, + 0.03763476386666298, + 0.014472768642008305, + -0.10754808038473129, + 0.033113714307546616, + -0.06934817880392075, + 0.10206760466098785, + 0.026973363012075424, + 0.0395820178091526, + -0.05832885578274727, + -0.025156570598483086, + -0.03067338839173317, + 0.006089759524911642, + -0.05762055888772011, + 0.02677379548549652, + 0.04274037852883339, + -0.042799029499292374, + -0.0316290520131588, + 0.04279032722115517, + -0.031241366639733315, + 0.00032565181027166545, + -0.04819104075431824, + -0.03903152793645859, + -0.011394346132874489, + 0.0077246977016329765, + -0.02777610532939434, + 0.04791368171572685, + 0.008362517692148685, + 0.03280903398990631, + -0.024724194779992104, + 0.04837803170084953, + -0.013002755120396614, + -0.01616372913122177, + -0.0463859848678112, + -0.026722971349954605, + 0.053757574409246445, + 0.003768305294215679, + -0.028288476169109344, + 0.038789935410022736, + -0.03738245740532875, + -0.021581189706921577, + -0.006110628135502338, + 0.08515799045562744, + 0.03059791773557663, + -0.017724938690662384, + 0.06386590749025345, + 0.04652548208832741, + 0.05644633248448372, + -0.021237339824438095, + -0.05219598859548569, + 0.04747302457690239, + -0.04767284914851189, + 0.006737672723829746, + 0.12316767126321793, + 0.011013023555278778, + -0.0059047057293355465, + 0.017333058640360832, + -0.024078287184238434, + 0.038073863834142685, + 0.04616444930434227, + 0.021609660238027573, + 0.00567013630643487, + -0.008855260908603668, + 0.0368841178715229, + -0.07365685701370239, + -0.0005343584343791008, + 0.009894353337585926, + -0.06940869241952896, + 0.06729669123888016, + -0.05810684338212013, + 0.014124873094260693, + -0.08148609846830368, + -0.08058131486177444, + 0.06518960744142532, + 0.06805036962032318, + -0.13521337509155273, + -0.04809160903096199, + -0.019962364807724953, + -0.037062935531139374, + -0.08373858034610748, + 4.041226174179062e-35, + 0.001810291432775557, + 0.03575795143842697, + -0.04777569696307182, + -0.06486829370260239, + -0.07578792423009872, + -0.06448742747306824, + -0.008980589918792248, + 0.025080973282456398, + 0.01676313579082489, + -0.026843568310141563, + 0.0156831294298172, + -0.05755622312426567, + -0.027167314663529396, + -0.015294503420591354, + -0.025083111599087715, + 0.11562925577163696, + 0.05204657092690468, + 0.07276985049247742, + 0.02934926375746727, + 0.05112993344664574, + -0.01831449754536152, + 0.04694293439388275, + -0.08502665907144547, + 0.04782840982079506, + 0.022490741685032845, + 0.06955870985984802, + 0.05061457306146622, + 0.06991115212440491, + -0.05483855679631233, + -0.06065547838807106, + -0.03448524698615074, + -0.10533895343542099, + 0.04239760339260101, + -0.0031777715776115656, + -0.060229066759347916, + 0.0431508831679821, + -0.031592678278684616, + -0.09265397489070892, + -0.0006041768938302994, + 0.003249197732657194, + -0.016004161909222603, + 0.007826845161616802, + 0.045069556683301926, + 0.15382617712020874, + -0.02207084745168686, + 0.0027808898594230413, + -0.057099875062704086, + -0.07179860770702362, + -0.0246452447026968, + 0.04676997289061546, + 0.052673786878585815, + -0.025572406128048897, + 0.012107192538678646, + -0.026756519451737404, + -0.031005237251520157, + 0.07473575323820114, + -0.09116235375404358, + -0.00026058912044391036, + -0.022672420367598534, + 0.041190192103385925, + -0.015489739365875721, + 0.05378669127821922, + -0.007325053680688143, + -0.00038368365494534373, + 0.0851433053612709, + -0.03093774989247322, + -0.08300410211086273, + -0.11437554657459259, + 0.033120352774858475, + 0.0013106802944093943, + -0.0389791764318943, + 0.061743348836898804, + -0.030660085380077362, + 0.04515286162495613, + -0.010926556773483753, + -0.03314131125807762, + 0.018660616129636765, + -0.047782156616449356, + -0.002102459780871868, + 0.0825197771191597, + -0.11453866213560104, + -0.08493763208389282, + -0.029138334095478058, + 0.09527120739221573, + 0.011683639138936996, + 0.010174146853387356, + 0.013029351830482483, + 0.0333261601626873, + 0.0347602553665638, + 0.022366158664226532, + -0.03411470353603363, + 0.008214632980525494, + -0.0023276705760508776, + 0.04075276479125023, + -0.013375375419855118, + -2.0795061672629345e-08, + 0.07235543429851532, + -0.04710495099425316, + -0.08943537622690201, + 0.052502840757369995, + 0.012827998958528042, + -0.09875945746898651, + -0.08449087291955948, + -0.11128035187721252, + -0.042990054935216904, + 0.008231417275965214, + -0.015727940946817398, + 0.16160480678081512, + -0.03942137211561203, + -0.010369484312832355, + 0.030388200655579567, + 0.018974438309669495, + 0.01650378480553627, + 0.014165990985929966, + -0.04758971929550171, + -0.01490252185612917, + -0.0018321381649002433, + 0.06992001086473465, + -0.02480321377515793, + -0.04268648847937584, + 0.06076236069202423, + -0.0003512076218612492, + 0.01890256442129612, + 0.025285065174102783, + 0.07624126225709915, + 0.10114796459674835, + 0.08230741322040558, + 0.055224619805812836, + -0.014092729426920414, + 0.061164118349552155, + -0.03594312071800232, + -0.0006620232597924769, + -0.13382276892662048, + -0.01525046955794096, + 0.01654692180454731, + 0.04444101080298424, + 0.006435741204768419, + -0.011001313105225563, + -0.03657970577478409, + 0.012430252507328987, + -0.06172701343894005, + 0.038192737847566605, + -0.046512968838214874, + 0.0024711608421057463, + -0.049907565116882324, + -0.06058961898088455, + -0.010826359502971172, + 0.009332239627838135, + -0.011918110772967339, + 0.06668316572904587, + -0.004600084386765957, + 0.015427254140377045, + 0.043661028146743774, + 0.010997025296092033, + 0.014411864802241325, + -0.024509329348802567, + 0.09382393956184387, + -0.005056221503764391, + 0.07444595545530319, + 0.011941763572394848 + ], + "chef-hat-bold||*new*,cooking,cuisine,kitchen,clothes,clothing": [ + -0.0026204572059214115, + -0.01091365423053503, + -0.024810325354337692, + 0.08499429374933243, + 0.08149971812963486, + 0.03321466222405434, + 0.04240443557500839, + -0.11495031416416168, + -0.02181268483400345, + -0.0426165945827961, + 0.08657705038785934, + -0.08566915988922119, + -0.027597563341259956, + -0.07750335335731506, + 0.008371584117412567, + -0.06605160981416702, + 0.04930243641138077, + 0.04974118992686272, + 0.02965293638408184, + -0.09270702302455902, + -0.01758338324725628, + 0.11561671644449234, + 0.04185695946216583, + 0.062431711703538895, + 0.04323125630617142, + 0.005282415542751551, + 0.022709330543875694, + 0.03194272518157959, + -0.05253147333860397, + -0.06505541503429413, + -0.024123722687363625, + 0.04634346812963486, + 0.0854395180940628, + 0.04359413683414459, + 0.019766442477703094, + 0.02281452715396881, + 0.03918547183275223, + -0.010776842944324017, + 0.004661476705223322, + 0.06349489092826843, + -0.025662090629339218, + -0.024432335048913956, + -0.052660245448350906, + 0.011113205924630165, + 0.02804395742714405, + 0.015268118120729923, + -0.05470376834273338, + -0.019142301753163338, + -0.02497871033847332, + 0.02335619553923607, + -0.0628829225897789, + -0.06023945286870003, + -0.06388246268033981, + -0.03475381061434746, + 0.04268236830830574, + -0.011805127374827862, + -0.03491918742656708, + -0.04865588992834091, + 0.01700824499130249, + 0.04898085445165634, + -0.020053492859005928, + 0.002011663280427456, + 0.0194723978638649, + 0.06809762120246887, + 0.019206764176487923, + -0.035948093980550766, + -0.07415582984685898, + 0.022964732721447945, + -0.10891053080558777, + 0.023104574531316757, + -0.02799987979233265, + -0.03756004944443703, + 0.008363203145563602, + 0.0008143818704411387, + -0.02432244084775448, + -0.039599448442459106, + 0.01581922173500061, + -0.08770859986543655, + -0.058956459164619446, + -0.02995622158050537, + -0.11324628442525864, + -0.03543071076273918, + -0.04920649155974388, + -0.012836107984185219, + -0.044545162469148636, + 0.07104019820690155, + -0.11562547832727432, + -0.06492525339126587, + -0.04392227530479431, + -0.037691421806812286, + -0.05363594740629196, + -0.06764240562915802, + 0.006658951751887798, + -0.015393045730888844, + -0.029817208647727966, + 0.09158196300268173, + 0.002488428261131048, + 0.0009424052550457418, + 0.001302238437347114, + 0.05087592080235481, + -0.03579028695821762, + -0.012683399952948093, + -0.0031267344020307064, + 0.014102158136665821, + -0.047319021075963974, + -0.00805915892124176, + 0.048917271196842194, + -0.01160156074911356, + 0.026044337078928947, + 0.015049935318529606, + -0.011457448825240135, + -0.0010855646105483174, + -0.05805749073624611, + -0.12068990617990494, + -0.011617755517363548, + -0.0608222670853138, + -0.005438916385173798, + -0.028334841132164, + 0.07233144342899323, + 0.11009854078292847, + 0.03061988763511181, + 0.017179440706968307, + -0.025213439017534256, + -0.038220103830099106, + -0.11289586871862411, + -0.011334328912198544, + 0.0420968234539032, + -2.164069855171469e-33, + 0.022649601101875305, + 0.06286538392305374, + 0.015786558389663696, + 0.1343556046485901, + 0.08782194554805756, + -0.0011845616390928626, + -0.004333775490522385, + -0.045397430658340454, + -0.030660592019557953, + 0.10479233413934708, + 0.066622793674469, + 0.07005496323108673, + -0.1291755735874176, + 0.10001849383115768, + 0.025174353271722794, + -0.0159220639616251, + 0.01711486652493477, + -0.007940809242427349, + -0.007915294729173183, + -0.04208195582032204, + -0.0696958675980568, + 0.03898622840642929, + 0.019411591812968254, + 0.0350247398018837, + -0.019325198605656624, + -0.022699274122714996, + 0.05966227501630783, + -0.062193769961595535, + -0.052791185677051544, + 0.017906300723552704, + 0.034488044679164886, + 0.02199331298470497, + 0.034495435655117035, + -0.04421422630548477, + -0.07799352705478668, + -0.01773383840918541, + -0.02892773412168026, + -0.024791596457362175, + -0.013794510625302792, + 0.03190525621175766, + -0.058622464537620544, + -0.00607297895476222, + -0.012257413007318974, + 0.06640966236591339, + -0.030957283452153206, + 0.04307524859905243, + -0.016479987651109695, + 0.08194007724523544, + 0.05487079545855522, + 0.05578490346670151, + 0.015177312307059765, + -0.0417901873588562, + 0.07970564067363739, + -0.013771937228739262, + 0.006282449699938297, + -0.01656961813569069, + -0.02534002810716629, + 0.071466363966465, + 0.05614662915468216, + 0.008046128787100315, + 0.04985063895583153, + 0.08132732659578323, + -0.0010163143742829561, + -0.016899552196264267, + 0.03986328840255737, + 0.01078798994421959, + 0.009425094351172447, + 0.027404705062508583, + 0.0580795519053936, + 0.038802266120910645, + -0.022401392459869385, + 0.0358717143535614, + 0.06084795296192169, + 0.06105974316596985, + 0.015931831672787666, + 0.00906912237405777, + -0.01968369260430336, + -0.005514518823474646, + 0.033044904470443726, + -0.058885738253593445, + -0.041811566799879074, + 0.05526759847998619, + -0.06581780314445496, + 0.1115187555551529, + -0.055906202644109726, + 0.023591862991452217, + -0.01675983890891075, + -0.05808691307902336, + 0.02836805209517479, + 0.057627372443675995, + -0.09248610585927963, + 0.045415736734867096, + 0.03476027399301529, + -0.07320011407136917, + -0.12218015640974045, + -6.109945506618219e-34, + 0.028533630073070526, + 0.02600145898759365, + -0.05689684674143791, + -0.001248211250640452, + -0.020317425951361656, + -0.05325305834412575, + -0.03399887681007385, + -0.01664794608950615, + 0.03478526696562767, + -0.02888270653784275, + -0.0020749231334775686, + -0.08108317106962204, + -0.032906826585531235, + -0.06492085009813309, + -0.027974527329206467, + 0.06560187041759491, + -0.027241216972470284, + 0.07131270319223404, + 0.01575416885316372, + 0.019075781106948853, + -0.045197971165180206, + 0.0028337084222584963, + -0.061986491084098816, + 0.006529827602207661, + -0.044133029878139496, + 0.031005244702100754, + 0.009658501483500004, + 0.10092141479253769, + -0.12838605046272278, + -0.04952738806605339, + 0.020421989262104034, + -0.06168133020401001, + 0.06559790670871735, + 0.08744478970766068, + -0.09011262655258179, + 0.07269329577684402, + -0.03526035696268082, + -0.05919217690825462, + 0.027086889371275902, + 0.06632739305496216, + 0.012187248095870018, + -0.06471093744039536, + 0.035526566207408905, + 0.09803342819213867, + -0.030450616031885147, + -0.05103709548711777, + -0.07083968818187714, + -0.06443318724632263, + -0.024136198684573174, + 0.024051107466220856, + 0.018119744956493378, + -0.03621645271778107, + -0.09420595318078995, + -0.0438067764043808, + -0.03775915876030922, + 0.06722234934568405, + -0.06654507666826248, + -0.00040701389661990106, + -0.014095256105065346, + 0.0528935045003891, + 0.03757960721850395, + 0.06589960306882858, + 0.03573392704129219, + 0.11965863406658173, + 0.0440031960606575, + -0.051297351717948914, + 0.030574558302760124, + -0.06762859225273132, + 0.03260375186800957, + -0.00214476534165442, + 0.006594499573111534, + 0.0017821693327277899, + -0.0033488948829472065, + 0.004402515944093466, + -0.08296868205070496, + -0.03933361917734146, + 0.07314812391996384, + 0.005164589732885361, + 0.01690458133816719, + 0.03155810013413429, + -0.054287612438201904, + -0.07767052203416824, + -0.10431567579507828, + 0.04897279664874077, + 0.05374324321746826, + 0.03433001786470413, + -0.05364659056067467, + 0.04517262801527977, + 0.06407666951417923, + 0.03136847913265228, + -0.0492645800113678, + 0.029890598729252815, + -0.014554796740412712, + -6.774982921342598e-06, + -0.03862158581614494, + -2.1693480789508612e-08, + 0.04597734659910202, + -0.007838437333703041, + -0.028761113062500954, + 0.04315474256873131, + 0.04194515198469162, + -0.04158608987927437, + -0.03438950702548027, + -0.0817398801445961, + -0.043394941836595535, + 0.0003261975653003901, + 0.015282070264220238, + 0.04105137288570404, + -0.033736392855644226, + 0.015028714202344418, + 0.056922052055597305, + 0.016227954998612404, + -0.003614155575633049, + 0.06323621422052383, + -0.024012375622987747, + -0.0623633936047554, + 0.033952515572309494, + 0.1046702042222023, + 0.025547845289111137, + -0.07852087169885635, + 0.024140039458870888, + -0.029063476249575615, + -0.04874356463551521, + 0.05686138570308685, + 0.062192775309085846, + 0.1285354048013687, + 0.05030766874551773, + 0.04184463247656822, + -0.02973812259733677, + -0.004486020654439926, + -0.046885743737220764, + -0.0553806908428669, + -0.1301228553056717, + -0.06221425533294678, + -0.020682284608483315, + 0.012282832525670528, + -0.06967011839151382, + 0.027530204504728317, + -0.04902781546115875, + -0.0012737635988742113, + -0.0899265706539154, + -0.005579744931310415, + 0.019653132185339928, + 0.01598222553730011, + -0.02028627134859562, + -0.024143580347299576, + 0.005296801682561636, + -0.03355696052312851, + 0.09775752574205399, + 0.05144837871193886, + -0.03509142994880676, + 0.04133005067706108, + 0.08908704668283463, + 0.04154421016573906, + 0.06084011122584343, + -0.029808271676301956, + 0.04758409783244133, + -0.03210562467575073, + -0.008543959818780422, + -0.030058791860938072 + ], + "cherries-bold||*new*,food,fruit,cherry,groceries,market": [ + 0.025493625551462173, + -0.025583481416106224, + 0.010087910108268261, + 0.07980941236019135, + 0.017315784469246864, + 0.03481994569301605, + 0.06762278079986572, + -0.0803319662809372, + -0.01038746815174818, + -0.051118165254592896, + 0.1417492777109146, + -0.03742387518286705, + 0.0008650703239254653, + -0.11944882571697235, + 0.06159988045692444, + 0.016182929277420044, + 0.049938593059778214, + 0.040687669068574905, + -0.034838128834962845, + -0.05321985483169556, + 0.03130192682147026, + 0.010684404522180557, + -0.00012899374996777624, + 0.0750972107052803, + -0.011170118115842342, + 0.015767646953463554, + 0.027519315481185913, + -0.021434076130390167, + -0.029041195288300514, + -0.09917059540748596, + -0.0062851146794855595, + -0.00016541600052732974, + 0.12379353493452072, + 0.025040358304977417, + 0.05620845779776573, + 0.010834351181983948, + 0.03934087976813316, + -0.07935920357704163, + 0.01955121010541916, + 0.010969209484755993, + 0.046463340520858765, + -0.06069762632250786, + -0.06210983917117119, + 0.07156453281641006, + -0.03178709000349045, + 0.010389530099928379, + -0.01618320122361183, + 0.023126747459173203, + 0.04536084458231926, + -0.004244903102517128, + -0.041663456708192825, + -0.052906569093465805, + -0.09169045835733414, + -0.046916376799345016, + -0.006326085422188044, + 0.07041916996240616, + -0.028571762144565582, + -0.006830408237874508, + 0.06794589012861252, + 0.054273076355457306, + 0.08831063657999039, + -0.015755243599414825, + 0.08757591992616653, + -0.0228264220058918, + 0.013201792724430561, + -0.01543833315372467, + -0.09545179456472397, + 0.023539643734693527, + -0.04214394465088844, + -0.01767185516655445, + 0.00506522785872221, + 0.038600433617830276, + -0.042398106306791306, + 0.002085677348077297, + -0.035038262605667114, + -0.028731102123856544, + 0.03522081300616264, + -0.037201691418886185, + -0.0645907074213028, + 0.0021741350647062063, + -0.11441515386104584, + -0.06274435669183731, + -0.06406230479478836, + -0.07491426169872284, + -0.04459945112466812, + -0.024387728422880173, + -0.08040041476488113, + -0.0535886213183403, + -0.04296199977397919, + -0.03697619587182999, + -0.07742488384246826, + -0.06956707686185837, + -0.04557517170906067, + 0.03603263199329376, + -0.03549075871706009, + 0.03788377717137337, + -0.003941844217479229, + -0.1037907600402832, + 0.0607963390648365, + 0.02293146401643753, + 0.03969282656908035, + 0.019636614248156548, + 0.0450967438519001, + 0.03367144614458084, + -0.0903160497546196, + -0.021867278963327408, + -0.10782136768102646, + -0.060256242752075195, + -0.01730429194867611, + 0.07380826026201248, + 0.026480963453650475, + -0.0667455643415451, + -0.02958526276051998, + -0.0682576447725296, + -0.13444016873836517, + -0.01521330140531063, + -0.06070545315742493, + -0.05866500362753868, + 0.08425270766019821, + 0.07506988197565079, + 0.03956594690680504, + 0.08502237498760223, + 0.006699677091091871, + -0.01697867549955845, + -0.07107742875814438, + 0.007233819924294949, + -0.008688035421073437, + -3.183503922939659e-33, + -0.04660845175385475, + 0.04082109406590462, + -0.003608455415815115, + 0.04965929314494133, + -0.007490997668355703, + -0.006233221851289272, + -0.03962194547057152, + -0.014582171104848385, + -0.0012325153220444918, + 0.019941262900829315, + -0.0070481449365615845, + 0.0072623733431100845, + -0.06292416900396347, + -0.010377961210906506, + 0.002125876722857356, + -0.01536989863961935, + -0.007419649977236986, + 0.02765773981809616, + -0.014002371579408646, + 0.0068262782879173756, + -0.10103941708803177, + 0.08370768278837204, + -0.03304177522659302, + -0.03517525643110275, + -0.060056380927562714, + -0.026585524901747704, + 0.0215314831584692, + -0.022648336365818977, + 0.05109379068017006, + 0.00442953035235405, + 0.10923629254102707, + 0.008961044251918793, + 0.08790792524814606, + 0.02914409153163433, + -0.03998424485325813, + 0.03916029632091522, + -0.028772525489330292, + -0.004193862434476614, + 0.054068390280008316, + 0.009391525760293007, + -0.02195345237851143, + 0.016918880864977837, + 0.07789405435323715, + 0.09703343361616135, + -0.032329261302948, + 0.06191124767065048, + 0.009459943510591984, + -0.013412372209131718, + 0.07484107464551926, + 0.003610918065533042, + -0.04917553812265396, + -0.035987645387649536, + -0.04341800510883331, + 0.08658114820718765, + -0.027684371918439865, + -0.03989923372864723, + -0.05527011677622795, + 0.041783157736063004, + -0.028629563748836517, + -0.04633987694978714, + 0.0458800382912159, + 0.06706451624631882, + 0.022917967289686203, + -0.027186254039406776, + -0.03031454235315323, + 0.06473707407712936, + -0.039448827505111694, + 0.1196053996682167, + 0.04222763329744339, + 0.07062267512083054, + -0.01350371353328228, + 0.04511389508843422, + 0.04252533242106438, + 0.04866103455424309, + 0.0014619181165471673, + 0.03754674270749092, + 0.021456684917211533, + 0.0732012540102005, + 0.005668812431395054, + -0.0490349605679512, + -0.06488873809576035, + -0.006056124344468117, + -0.04033626988530159, + 0.11781742423772812, + -0.08384612202644348, + 0.11219164729118347, + -0.06863705813884735, + -0.049611691385507584, + 0.060804080218076706, + 0.03476995229721069, + -0.10537830740213394, + 0.06618745625019073, + -0.04942943900823593, + -0.07311856001615524, + -0.10543860495090485, + -6.631274496143019e-34, + 0.013403587974607944, + 0.023533057421445847, + -0.006991198752075434, + 0.01714390516281128, + 0.01829407550394535, + -0.02077127993106842, + -0.05065251141786575, + -0.03347918018698692, + -0.04544858634471893, + -0.04985090717673302, + -0.04650641977787018, + -0.025896895676851273, + -0.005472240503877401, + -0.06963802129030228, + -0.03447917103767395, + 0.09826254844665527, + 0.07791074365377426, + 0.07148955017328262, + -0.019189199432730675, + 0.031202642247080803, + -0.10559399425983429, + 0.0570475198328495, + -0.09134773164987564, + 0.038234952837228775, + -0.04377681016921997, + 0.01523066870868206, + 0.0517495758831501, + -0.04688442870974541, + -0.0024083892349153757, + -0.004668029025197029, + 0.021413175389170647, + -0.1077054813504219, + 0.025303715839982033, + 0.06091458350419998, + -0.009912790730595589, + -0.01826922968029976, + -0.06391215324401855, + -0.09359219670295715, + 0.022605279460549355, + 0.044267281889915466, + 0.011642777360975742, + -0.024711087346076965, + 0.014922244474291801, + 0.08334121853113174, + 0.019266905263066292, + 0.0012776500079780817, + -0.019167056307196617, + -0.010048532858490944, + 0.01065137330442667, + 0.08605305850505829, + 0.010075569152832031, + 0.025338515639305115, + -0.07306206971406937, + -0.021679125726222992, + -0.056225068867206573, + 0.024965571239590645, + -0.03863881900906563, + 0.034235186874866486, + -0.031697697937488556, + -0.04583568871021271, + -0.038109369575977325, + 0.014466563239693642, + 0.03115118481218815, + -0.023925574496388435, + 0.0281914584338665, + -0.029887108132243156, + -0.0344734787940979, + -0.0688825473189354, + 0.0142057528719306, + -0.0011800816282629967, + 0.012314154766499996, + 0.05981533229351044, + -0.03623679652810097, + -0.0455867201089859, + -0.08395583927631378, + 0.034329935908317566, + 0.0023959309328347445, + -0.032928816974163055, + -0.01711687445640564, + 0.031148923560976982, + -0.04070418328046799, + 0.01048970129340887, + -0.017126597464084625, + 0.01882348023355007, + 0.034911759197711945, + 0.06467287987470627, + -0.08406615257263184, + 0.048995085060596466, + 0.01826574094593525, + 0.01391435507684946, + -0.09856445342302322, + 0.029659846797585487, + -0.023286182433366776, + 0.0227779820561409, + -0.03635992109775543, + -2.213814909168832e-08, + 0.05976565554738045, + -0.024168645963072777, + -0.08741549402475357, + 0.02418464608490467, + 0.02419791929423809, + -0.06600642949342728, + -0.04266664385795593, + -0.0199015773832798, + -0.05000000819563866, + 0.03514227271080017, + -0.03624539077281952, + 0.07319239526987076, + -0.0987294465303421, + 0.018174773082137108, + 0.03714510425925255, + 0.008793225511908531, + 0.07572858780622482, + 0.04202759265899658, + 0.023779481649398804, + -0.01625480316579342, + -0.07553529739379883, + 0.07629663497209549, + -0.0019254026701673865, + -0.049064405262470245, + -0.02081904001533985, + 0.05751018971204758, + 0.023726660758256912, + 0.004289831500500441, + 0.08060190081596375, + 0.03850734606385231, + 0.1567508578300476, + 0.04675830900669098, + -0.005188198294490576, + 0.05330822616815567, + 0.006245184224098921, + 0.011801010929048061, + -0.05654681473970413, + 0.039822086691856384, + -0.04145276919007301, + 0.041326217353343964, + -0.03231328725814819, + -0.008926489390432835, + -0.036369144916534424, + 0.016651898622512817, + -0.1244233027100563, + -0.01668727770447731, + 0.005449789110571146, + 0.06005654111504555, + -0.011910767294466496, + 0.024794256314635277, + -0.0693470686674118, + 0.0060125780291855335, + 0.013694768771529198, + 0.031050750985741615, + -0.00012711662566289306, + 0.029355980455875397, + 0.043406303972005844, + -0.018122529610991478, + -0.013469535857439041, + 0.043631426990032196, + 0.11929918080568314, + -0.06207038089632988, + 0.05438358336687088, + 0.0132115688174963 + ], + "church-bold||christ,christianity,cathedral,religion,worship": [ + 0.07262974232435226, + -0.003591175889596343, + 0.014953440055251122, + 0.03048100508749485, + -0.0342082642018795, + 0.00060031667817384, + -0.051848798990249634, + -0.06917726993560791, + 0.0805283635854721, + -0.018771464005112648, + -0.04640687257051468, + -0.037342507392168045, + 0.030962994322180748, + -0.06314489245414734, + 0.014381321147084236, + -0.0020088213495910168, + -0.004897632636129856, + 0.07789239287376404, + 0.049974918365478516, + 0.0010083497036248446, + -0.02880387380719185, + 0.0318673700094223, + -0.036731917411088943, + 0.08397515118122101, + 0.047026097774505615, + 0.059319209307432175, + 0.0077395993284881115, + -0.06654924154281616, + -0.02195996791124344, + -0.07948176562786102, + -0.057544074952602386, + -0.023964086547493935, + 0.07780168950557709, + -0.0008023114642128348, + 0.02305082604289055, + 0.04663504287600517, + 0.020655198022723198, + 0.010374701581895351, + 0.01563505083322525, + 0.04970046877861023, + -0.008416377939283848, + -0.002248812699690461, + 0.04221633821725845, + -0.01696345955133438, + 0.02757331356406212, + 0.006163464859127998, + -0.10264153778553009, + 0.00045534869423136115, + -0.02235936000943184, + -0.0028292343486100435, + -0.050591323524713516, + -0.015645144507288933, + -0.03414298593997955, + 0.022647976875305176, + -0.06592191755771637, + 0.06279517710208893, + -0.10978756099939346, + -0.025670316070318222, + 0.022314997389912605, + -0.004247892647981644, + 0.03578746318817139, + 0.028781773522496223, + 0.041715141385793686, + 0.11145666986703873, + 0.004597855266183615, + -0.02031390368938446, + 0.0249161534011364, + 0.0930689349770546, + -0.03736594319343567, + 0.016764136031270027, + 0.034806989133358, + -0.011218222789466381, + 0.012194477021694183, + -0.09832747280597687, + -0.07242368906736374, + -0.07495599240064621, + -0.006984626408666372, + -0.07396310567855835, + -0.06459050625562668, + -0.10824108123779297, + -0.017364101484417915, + -0.0626659095287323, + -0.07640886306762695, + -0.05965110659599304, + 0.005822918843477964, + 0.037320561707019806, + -0.0034366960171610117, + -0.018927330151200294, + -0.007438781671226025, + -0.007729796692728996, + 0.0026083202101290226, + -0.003900326555594802, + -0.05406736209988594, + -0.002983661135658622, + -0.016989270225167274, + 0.04313404858112335, + 0.011530320160090923, + -0.07061693072319031, + -0.037973180413246155, + 0.08537109196186066, + 0.005157117731869221, + 0.10623880475759506, + 0.0662262886762619, + 0.0135188028216362, + 0.012585360556840897, + -0.05832366645336151, + -0.09401579201221466, + 0.0408608540892601, + 0.014709233306348324, + -0.0033337525092065334, + 0.04911834001541138, + -0.08893563598394394, + -0.04818316921591759, + -0.05389045923948288, + 0.021855516359210014, + 0.004241197369992733, + 0.009109948761761189, + -0.08597536385059357, + 0.02953682281076908, + 0.11487986892461777, + -0.05993207171559334, + -0.020533576607704163, + 0.01720944233238697, + -0.021281667053699493, + -0.032400764524936676, + -0.016175230965018272, + 0.017002878710627556, + -2.1175544416834773e-33, + 0.04038190469145775, + 0.0023776222951710224, + -0.02843279391527176, + 0.08115021884441376, + 0.008489410392940044, + 0.04552889242768288, + 0.023261098191142082, + -0.006567863281816244, + -0.1279018372297287, + -0.006777286063879728, + 0.06393897533416748, + 0.0732242688536644, + 0.02369309775531292, + -0.006486871279776096, + 0.011291549541056156, + -0.03128870949149132, + 0.018057430163025856, + -0.013392201624810696, + -0.029933523386716843, + 0.0041663493029773235, + -0.020559823140501976, + 0.0396491102874279, + -0.052750278264284134, + 0.017348242923617363, + 0.06555484235286713, + -0.0625486746430397, + 0.04662001505494118, + 0.033634770661592484, + -0.05046071857213974, + 0.04446826130151749, + 0.06283344328403473, + 0.0318790040910244, + 0.012511132284998894, + 0.019606076180934906, + 0.029717164114117622, + 0.06434134393930435, + -0.024168536067008972, + -0.043533217161893845, + 0.03128981217741966, + -0.009790771640837193, + -0.04928342625498772, + -0.03387016803026199, + 0.062393918633461, + 0.01558269839733839, + 0.035661667585372925, + 0.1000969260931015, + 0.03786015510559082, + -0.06884395331144333, + 0.012765453197062016, + 0.03171167150139809, + 0.018636008724570274, + -0.038953814655542374, + -0.013298365287482738, + -0.003590949345380068, + 0.006772179622203112, + -0.016079779714345932, + -0.07087018340826035, + 0.135862335562706, + 0.04299156367778778, + 0.03872964531183243, + -0.020214306190609932, + 0.016570977866649628, + 0.009145395830273628, + -0.033552974462509155, + -0.0253759752959013, + 0.027688326314091682, + -0.06593108922243118, + 0.0698431208729744, + 0.08441005647182465, + 0.04117053747177124, + 0.016100987792015076, + -0.010599724017083645, + 0.035350121557712555, + 0.05807161331176758, + 0.048270098865032196, + 0.023316798731684685, + -0.06167196109890938, + -0.08981852978467941, + -0.02420254983007908, + 0.0046538799069821835, + -0.08800671994686127, + 0.06311119347810745, + -0.06741560995578766, + 0.09515907615423203, + 0.058729138225317, + 0.017338121309876442, + 0.10849031805992126, + -0.06303442269563675, + -0.008288746699690819, + 0.03147833049297333, + -0.02546663023531437, + 0.07472730427980423, + 0.07853879034519196, + -0.11074987053871155, + -0.056797854602336884, + 8.11679124749278e-34, + 0.04273442178964615, + -0.028204647824168205, + -0.03842019662261009, + -0.030631737783551216, + -0.07678718864917755, + 0.035178836435079575, + -0.10177426785230637, + 0.02478788234293461, + -0.010842586867511272, + 0.01857493445277214, + -0.008921689353883266, + -0.04002011939883232, + -0.03802815452218056, + -0.06987197697162628, + -0.08076898008584976, + -0.06097238510847092, + 0.03920486569404602, + 0.001993688754737377, + -0.007796097081154585, + 0.054593104869127274, + 0.059732433408498764, + -0.03191683813929558, + -0.06290821731090546, + 0.09089412540197372, + 0.04800702631473541, + 0.02871614322066307, + -0.061475176364183426, + 0.021488098427653313, + 0.06749876588582993, + -0.06957419216632843, + -0.04168357700109482, + -0.0201711542904377, + -0.024843698367476463, + 0.022028161212801933, + -0.030791345983743668, + 0.088703952729702, + 0.058373164385557175, + 0.034038759768009186, + 0.08306259661912918, + -0.08294837921857834, + 0.0027235711459070444, + 0.025523481890559196, + -0.0017637175042182207, + 0.07220396399497986, + -0.016531534492969513, + 0.02092801034450531, + 0.011268767528235912, + -0.02740621380507946, + -0.03469572216272354, + 0.04730268195271492, + -0.083598293364048, + -0.15822647511959076, + -0.007975015789270401, + -0.027639420703053474, + -0.0068673063069581985, + 0.00821090117096901, + -0.0615287683904171, + -0.01731417141854763, + -0.06284472346305847, + 0.049405138939619064, + 0.11291299760341644, + 0.0820242241024971, + 0.009200243279337883, + 0.09132437407970428, + -0.018272526562213898, + -0.03928590193390846, + 0.024625545367598534, + 0.057872526347637177, + -0.013073226436972618, + 0.060067709535360336, + -0.11402031034231186, + -0.01852419227361679, + -0.03224942088127136, + 0.03352636098861694, + 0.006202814169228077, + -0.017997941002249718, + 0.057218678295612335, + -0.049701206386089325, + -0.033720389008522034, + -0.02980486862361431, + 0.07031537592411041, + -0.03836369514465332, + -0.13278260827064514, + 0.012916266918182373, + 0.044372592121362686, + -0.04036785289645195, + 0.07641272991895676, + 0.023596273735165596, + 0.0002814115141518414, + 0.029994923621416092, + -0.05413838103413582, + 0.02007148787379265, + 0.04564081132411957, + -0.05462224408984184, + 0.00025724791339598596, + -1.8479145325045465e-08, + 0.0449574813246727, + -0.04740816354751587, + -0.03969594091176987, + 0.012188581749796867, + 0.05152890831232071, + -0.049532365053892136, + 0.052167728543281555, + -0.12429403513669968, + -0.09116184711456299, + -0.009634926915168762, + -0.059496719390153885, + 0.06827935576438904, + -0.08576459437608719, + -0.028437703847885132, + 0.03945043683052063, + 0.008296717889606953, + -0.06853946298360825, + -0.10171917825937271, + 0.02382674627006054, + -0.009434851817786694, + 0.05551823973655701, + 0.06468457728624344, + 0.03747858852148056, + -0.10121971368789673, + 0.04087436944246292, + 0.04967835918068886, + -0.029546460136771202, + -0.003394128754734993, + 0.022178148850798607, + 0.033461201936006546, + 0.045467112213373184, + 0.03676076605916023, + -0.08644188195466995, + 0.08164467662572861, + -0.05009249225258827, + -0.024780917912721634, + -0.027282152324914932, + -0.01060324627906084, + 0.008092965930700302, + 0.019907772541046143, + 0.06859198957681656, + -0.015029982663691044, + -0.009450235404074192, + -0.025967439636588097, + -0.039802469313144684, + -0.050138164311647415, + 0.09403834491968155, + 0.033383648842573166, + 0.029223766177892685, + -0.08891274034976959, + -0.05463968217372894, + -0.010199323296546936, + 0.06458056718111038, + -0.01588628813624382, + -0.034356459975242615, + 0.026339083909988403, + 0.03958616778254509, + 0.054227590560913086, + 0.02916189841926098, + -0.03926793485879898, + 0.11634667962789536, + -0.001300002564676106, + 0.05961022153496742, + -0.027340682223439217 + ], + "cigarette-bold||*new*,smoking,tobacco": [ + 0.0020752844866365194, + 0.03416232764720917, + -0.02918987162411213, + 0.00798348244279623, + 0.012830150313675404, + -0.0006025750190019608, + 0.04449364170432091, + -0.04165460169315338, + 0.010043347254395485, + 0.019544489681720734, + 0.06344683468341827, + 0.01216118223965168, + -0.020279603078961372, + -0.022655412554740906, + 0.04510371387004852, + 0.02785995416343212, + 0.02904084138572216, + 0.050841622054576874, + -0.0335550494492054, + 0.027138283476233482, + 0.046636078506708145, + 0.11069843173027039, + 0.0370359793305397, + 0.03900521621108055, + 0.01386110857129097, + 0.017616255208849907, + -0.014298303984105587, + 0.006071553099900484, + 0.053147803992033005, + 0.004869882483035326, + -0.02313736453652382, + 0.038639698177576065, + 0.03163089230656624, + 0.04679758474230766, + 0.05500383302569389, + -0.09052242338657379, + -0.012941026128828526, + 0.033225249499082565, + 0.016173668205738068, + 0.0013288584304973483, + 0.07092800736427307, + -0.04136890172958374, + -0.07580772042274475, + 0.05500570312142372, + -0.05684390291571617, + 0.012661207467317581, + -0.032251182943582535, + 0.028985818848013878, + 0.021081211045384407, + 0.00797304231673479, + -0.02061026729643345, + -0.07510358095169067, + -0.10131382942199707, + -0.03528675064444542, + 0.05034957826137543, + -0.06590285152196884, + -0.09300466626882553, + -0.0032552946358919144, + 0.028157243505120277, + -0.0022126345429569483, + 0.06805498152971268, + -0.02325134351849556, + 0.055779702961444855, + 0.06431367248296738, + 0.014324192889034748, + -0.05158429592847824, + -0.01781868375837803, + 0.022918058559298515, + -0.04093367978930473, + 0.06565873324871063, + -0.03694012761116028, + -0.0029980114195495844, + -0.03320198506116867, + 0.02629064954817295, + -0.07082153856754303, + 0.019929807633161545, + -0.0705656036734581, + 0.027337174862623215, + -0.007588275242596865, + -0.0630543977022171, + 0.019693590700626373, + -0.07075109332799911, + -0.04565313085913658, + 0.004305008798837662, + 0.037427131086587906, + 0.03545038029551506, + -0.0867796242237091, + -0.06724680215120316, + -0.07436740398406982, + -0.07769747823476791, + -0.06019284948706627, + 0.023626456037163734, + -0.005765139125287533, + 0.07965266704559326, + -0.15862196683883667, + -0.01790095865726471, + 0.07673449069261551, + 0.0004472043365240097, + -0.05743307247757912, + 0.08650422841310501, + 0.015202407725155354, + 0.06262630224227905, + 0.034914370626211166, + -0.024522894993424416, + -0.072024405002594, + -0.031117795035243034, + -0.039188202470541, + -0.032159365713596344, + 0.0038262486923485994, + 0.01610245183110237, + 0.01919618993997574, + -0.04203404113650322, + -0.008431954309344292, + -0.09328314661979675, + -0.01034952700138092, + 0.04926621913909912, + -0.049079637974500656, + -0.05492216348648071, + 0.10027123987674713, + 0.07982739061117172, + -0.03093928098678589, + -0.055911798030138016, + -0.04362223297357559, + 0.0004170292231719941, + 0.007887132465839386, + -0.04519203305244446, + 0.014562505297362804, + -4.77230980169274e-33, + 0.02248046174645424, + 0.117641881108284, + 0.03172435984015465, + 0.17473793029785156, + 0.02109704539179802, + 0.06149500608444214, + -0.02980976179242134, + -0.05013293772935867, + -0.024328742176294327, + 0.03877050802111626, + 0.030004490166902542, + 0.026216350495815277, + -0.06781100481748581, + 0.031656697392463684, + 0.008990302681922913, + -0.014352140948176384, + -0.062153201550245285, + -0.09066227823495865, + -0.026540029793977737, + -0.020507613196969032, + -0.0673694908618927, + 0.07499385625123978, + -0.010386055335402489, + 0.014003348536789417, + -0.10157326608896255, + -0.02126685343682766, + 0.0013962568482384086, + -0.10097083449363708, + -0.0660029798746109, + 0.043022993952035904, + 0.05204680562019348, + 0.09048236906528473, + 0.028541529551148415, + -0.05716264620423317, + -0.006060473155230284, + 0.0775444433093071, + 0.02771429345011711, + 0.006732379551976919, + -0.057263292372226715, + 0.006491510197520256, + -0.059887200593948364, + 0.009863580577075481, + 0.05700702965259552, + -0.013281379826366901, + 0.041926249861717224, + 0.06225021928548813, + -0.1015448123216629, + -0.037906989455223083, + 0.0355343222618103, + 0.029544979333877563, + -0.038150668144226074, + -0.02913185954093933, + 0.025339538231492043, + 0.026930587366223335, + -0.04948732256889343, + 0.01881956122815609, + -0.017286401242017746, + 0.06563827395439148, + -0.03341350704431534, + -0.018727269023656845, + 0.023149628192186356, + 0.039854615926742554, + 0.0069934530183672905, + 0.05735747143626213, + -0.06011715158820152, + 0.017160816118121147, + -0.03272252157330513, + -0.009751209057867527, + 0.050320401787757874, + 0.062360137701034546, + 0.03899887576699257, + 0.055504731833934784, + -0.03186795115470886, + -0.019156336784362793, + 0.015705209225416183, + -0.0050725569017231464, + -0.017204513773322105, + 0.030480727553367615, + -0.004347427282482386, + -0.057429295033216476, + -0.03908484801650047, + -0.05691036954522133, + -0.10694186389446259, + 0.031224284321069717, + -0.025220680981874466, + -0.019902531057596207, + 0.05572688207030296, + -0.05891390144824982, + 0.03434308245778084, + 0.04504048079252243, + -0.10810454934835434, + 0.00484482292085886, + 0.026698805391788483, + -0.014181505888700485, + -0.029255453497171402, + 6.614643546966287e-34, + 0.021558642387390137, + 0.012644348666071892, + 0.0678134337067604, + -0.019983520731329918, + -0.004131603986024857, + 0.05246209353208542, + -0.009253501892089844, + -0.021778376772999763, + -0.010591725818812847, + -0.015160195529460907, + 0.01742074266076088, + -0.025054780766367912, + 0.014762240462005138, + 0.013141175732016563, + 0.03557716682553291, + 0.03871999308466911, + -0.022339006885886192, + 0.012342870235443115, + -0.026899121701717377, + 0.07615026831626892, + -0.07872383296489716, + -0.04534399136900902, + -0.06556878238916397, + 0.11921197175979614, + -0.030462848022580147, + 0.017942577600479126, + 0.04638403654098511, + 0.017550447955727577, + -0.013194597326219082, + -0.06362508237361908, + -0.019104937091469765, + 0.025390157476067543, + 0.006381483282893896, + 0.09026939421892166, + -0.06490850448608398, + 0.004843752831220627, + 0.03237218037247658, + -0.07864953577518463, + -0.011433505453169346, + -0.054327428340911865, + 0.02018509991466999, + -0.052425798028707504, + 0.00473699439316988, + 0.045708831399679184, + -0.019198713824152946, + -0.05423702672123909, + -0.033198628574609756, + -0.07815834134817123, + -0.04652240499854088, + 0.08111144602298737, + 0.06510010361671448, + 0.0035229194909334183, + -0.08290725946426392, + 0.05608809366822243, + -0.00017865437257569283, + 0.03997613117098808, + -0.051280390471220016, + 0.017571620643138885, + -0.08921115100383759, + 0.061635926365852356, + -0.046287957578897476, + 0.07858233153820038, + -0.12178046256303787, + -0.04609154537320137, + 0.04639841243624687, + -0.09423530101776123, + -0.008252768777310848, + 0.0048449682071805, + 0.1121920794248581, + -0.05356631428003311, + -0.036372844129800797, + 0.007157717831432819, + -0.10249662399291992, + -0.04422294721007347, + -0.056029193103313446, + -0.061958011239767075, + 0.025595195591449738, + -0.061654169112443924, + -0.060431309044361115, + 0.012952749617397785, + -0.06134939566254616, + -0.02416975051164627, + -0.052807457745075226, + 0.06888999789953232, + 0.005012949462980032, + 0.02954884059727192, + -0.019210239872336388, + 0.013112446293234825, + -0.01629091054201126, + -0.00757032772526145, + 0.003296714974567294, + 0.0432056300342083, + -0.07354814559221268, + -0.035711780190467834, + -0.08312010765075684, + -1.8903106635548284e-08, + -0.028928307816386223, + 0.0497174933552742, + -0.028707310557365417, + 0.027999386191368103, + 0.06800515949726105, + -0.020490506663918495, + -0.05334753915667534, + -0.05249195545911789, + -0.034457977861166, + 0.01532131526619196, + 0.05684485659003258, + 0.06166849285364151, + 0.024639036506414413, + 0.016451213508844376, + 0.06818464398384094, + 0.04112108051776886, + -0.027759088203310966, + 0.04135666415095329, + -0.011570462957024574, + 0.03438124060630798, + -0.06467834115028381, + 0.0840773954987526, + 0.05566832050681114, + -0.037155888974666595, + -0.030194703489542007, + 0.003097935114055872, + -0.037683386355638504, + -0.05953342467546463, + 0.09863874316215515, + 0.09681811928749084, + 0.08017367869615555, + 0.05344684422016144, + -0.015388219617307186, + 0.008472231216728687, + -0.146319180727005, + -0.08845045417547226, + -0.009140796028077602, + -0.011621644720435143, + -0.009982104413211346, + 0.020407551899552345, + 0.04555929824709892, + 0.0008745057857595384, + -0.04804462566971779, + -0.013116859830915928, + -0.08820369839668274, + -0.04867416247725487, + 0.04230228066444397, + -0.036479927599430084, + -0.059329383075237274, + -0.03471937030553818, + -0.0007183853886090219, + 0.016600998118519783, + 0.0514618419110775, + 0.0044597783125936985, + -0.0641452744603157, + -0.02825825661420822, + 0.01346850860863924, + 0.13991782069206238, + 0.02098507061600685, + -0.02928045764565468, + 0.17839419841766357, + -0.038429662585258484, + 0.07507384568452835, + 0.05805830657482147 + ], + "cigarette-slash-bold||*new*,non-smoking,tobacco": [ + -0.011649305000901222, + 0.027751684188842773, + -0.016874337568879128, + 0.0003308417508378625, + 0.0048807295970618725, + -0.012827659957110882, + 0.017293153330683708, + -0.02648698352277279, + 0.031654149293899536, + 0.003590240143239498, + 0.09371323883533478, + -0.010909272357821465, + -0.016874665394425392, + 0.010605783201754093, + -0.00762478681281209, + 0.0383819118142128, + 0.03549778088927269, + 0.049489885568618774, + -0.03283971920609474, + 0.03204093500971794, + 0.02149057202041149, + 0.1526632308959961, + 0.03592342138290405, + 0.04433600977063179, + 0.027689484879374504, + 0.012448269873857498, + -0.011921538040041924, + 0.013704984448850155, + 0.03582373261451721, + -0.007599223870784044, + -0.018197013065218925, + 0.026122190058231354, + 0.028264541178941727, + 0.046695660799741745, + 0.07781654596328735, + -0.06307537108659744, + 0.006191606167703867, + 0.01297716610133648, + 0.032846562564373016, + -0.009065764024853706, + 0.05065589398145676, + -0.06771118938922882, + -0.09327787905931473, + 0.04107247665524483, + -0.056994251906871796, + -0.002607013564556837, + -0.04634960740804672, + -0.0004569286247715354, + -0.00018124505004379898, + 0.028250623494386673, + -0.028966743499040604, + -0.07767106592655182, + -0.11346457153558731, + -0.03723650425672531, + 0.06950535625219345, + -0.044895369559526443, + -0.08520346134901047, + 0.0042415461502969265, + 0.04273629188537598, + -0.010841554962098598, + 0.07527303695678711, + -0.03450341150164604, + 0.04176356643438339, + 0.04195908457040787, + 0.00625730212777853, + -0.049625273793935776, + -0.025712911039590836, + 0.02884465456008911, + -0.04988439381122589, + 0.05473143979907036, + -0.050569988787174225, + -0.031011195853352547, + -0.04452529177069664, + 0.01730489358305931, + -0.060914672911167145, + 0.004736954811960459, + -0.06999065726995468, + 0.04536440223455429, + 0.010886114090681076, + -0.09283194690942764, + 0.04035471752285957, + -0.048797450959682465, + -0.027109263464808464, + 0.060460787266492844, + 0.06399243324995041, + 0.04588010907173157, + -0.08383871614933014, + -0.05296576768159866, + -0.06031195446848869, + -0.08032819628715515, + -0.07426555454730988, + 0.007584321312606335, + 0.012408670037984848, + 0.05691245570778847, + -0.1545702964067459, + -0.015230180695652962, + 0.05788278207182884, + 0.006825723685324192, + -0.07286863774061203, + 0.08601582050323486, + 0.024920431897044182, + 0.0744292363524437, + -0.02098225988447666, + -0.04165089130401611, + -0.05761055648326874, + -0.009592002257704735, + -0.02843540534377098, + -0.014801830984652042, + 0.01874735951423645, + 0.03237912431359291, + 0.04492875561118126, + -0.03327913209795952, + -0.028660202398896217, + -0.10549438744783401, + -0.027979044243693352, + 0.012953275814652443, + -0.04419437050819397, + -0.0698881521821022, + 0.12056644260883331, + 0.1096712127327919, + -0.034698355942964554, + -0.08452403545379639, + -0.06717681884765625, + -0.004405811429023743, + 0.01070028729736805, + -0.024012312293052673, + 0.02626035362482071, + -4.709865337725152e-33, + 0.04427763447165489, + 0.11670627444982529, + 0.04461941123008728, + 0.10339988023042679, + 0.030173204839229584, + 0.043969545513391495, + -0.04859832301735878, + -0.024902785196900368, + -0.03479576110839844, + 0.04571397230029106, + 0.028887299820780754, + 0.008673000149428844, + -0.04971605911850929, + 0.023216601461172104, + 0.019879469648003578, + -0.019737564027309418, + -0.028290901333093643, + -0.11407605558633804, + -0.03302101790904999, + -0.02021477185189724, + -0.058636050671339035, + 0.10112164169549942, + -0.04833228886127472, + 0.04868282750248909, + -0.07966860383749008, + -0.03980714827775955, + -0.009634858928620815, + -0.09043780714273453, + -0.025437064468860626, + 0.05278995633125305, + 0.03172847256064415, + 0.08817645162343979, + 0.030534375458955765, + -0.057435691356658936, + -0.0032066823914647102, + 0.10425535589456558, + 0.033056892454624176, + 0.011414964683353901, + -0.0720524713397026, + 0.022279001772403717, + -0.061645202338695526, + -0.007110366132110357, + 0.013390068896114826, + -0.021662555634975433, + 0.04208657145500183, + 0.024822626262903214, + -0.06951326131820679, + -0.06978663057088852, + 0.008121590130031109, + 0.023402495309710503, + -0.04354214668273926, + -0.005076361354440451, + 0.06153731048107147, + 0.04559759050607681, + -0.058830976486206055, + -0.018276900053024292, + -0.05604688823223114, + 0.0685051903128624, + -0.021444758400321007, + -0.027598582208156586, + 0.024567509070038795, + 0.035603396594524384, + -0.01101425476372242, + 0.059642307460308075, + -0.11047710478305817, + 0.01752089336514473, + -0.045093096792697906, + -0.010656552389264107, + 0.04649163410067558, + 0.049378927797079086, + 0.0049952850677073, + 0.058147281408309937, + 0.0024623232893645763, + -0.009205297566950321, + -0.011081183329224586, + -0.019345026463270187, + -0.058216191828250885, + 0.0459410659968853, + 0.02286030724644661, + -0.04759281873703003, + -0.08083507418632507, + -0.06032365560531616, + -0.06303762644529343, + 0.019175810739398003, + 0.041384465992450714, + -0.03870277851819992, + 0.043565522879362106, + -0.039123307913541794, + 0.01048196293413639, + 0.016133809462189674, + -0.06133419647812843, + 0.009976798668503761, + -0.027938812971115112, + -0.0018282444216310978, + -0.013622487895190716, + 1.3243186396276086e-33, + 0.032933708280324936, + 0.04300827905535698, + 0.04783005639910698, + -0.0025555097963660955, + -0.026900650933384895, + 0.02385338395833969, + -0.013848327100276947, + -0.03197851777076721, + 0.0026314056012779474, + -0.02491666190326214, + 0.025811506435275078, + 0.016081267967820168, + 0.039261385798454285, + -0.017183609306812286, + 0.06343059241771698, + 0.05131564289331436, + -0.037327252328395844, + 0.001960199326276779, + -0.04117274656891823, + 0.07790511846542358, + -0.061079271137714386, + -0.04196595400571823, + -0.04788767546415329, + 0.13081037998199463, + -0.05459718033671379, + 0.04107038304209709, + 0.041913606226444244, + 0.0069340551272034645, + -0.005881721153855324, + -0.047377947717905045, + -0.0007042798097245395, + 0.037486329674720764, + -0.015162468887865543, + 0.04212179034948349, + -0.0676715224981308, + 0.014081601053476334, + -0.03584042191505432, + -0.027017977088689804, + -0.020652417093515396, + -0.07847457379102707, + 0.03054901398718357, + -0.04532521218061447, + 0.014180799946188927, + 0.0790117084980011, + -0.023275503888726234, + -0.04836839437484741, + -0.04097753390669823, + -0.09324159473180771, + -0.02984149195253849, + 0.07056091725826263, + 0.05972319096326828, + -0.0010583172552287579, + -0.0652552917599678, + 0.06257916241884232, + 0.002338033402338624, + 0.0379587858915329, + -0.0707007646560669, + 0.04073876887559891, + -0.12573835253715515, + 0.09624624997377396, + -0.013350405730307102, + 0.05209260433912277, + -0.11127766221761703, + -0.02950225956737995, + 0.06415712088346481, + -0.08828172832727432, + -0.016759123653173447, + 0.028785431757569313, + 0.11033902317285538, + -0.03322186693549156, + -0.003123748116195202, + 0.056387774646282196, + -0.07784690707921982, + -0.05925456061959267, + -0.04750761017203331, + -0.08390771597623825, + 0.018262609839439392, + -0.04275986924767494, + -0.040456876158714294, + 0.036685772240161896, + -0.04567241668701172, + 0.0035274862311780453, + -0.05254247039556503, + 0.06797125935554504, + -0.008016364648938179, + 0.008906245231628418, + -0.05350320786237717, + 0.04770948737859726, + -0.02921837754547596, + -0.026333477348089218, + 0.011055057868361473, + 0.050036825239658356, + -0.056195177137851715, + -0.0256495401263237, + -0.0768546462059021, + -1.9257042183085105e-08, + -0.020882299169898033, + 0.005620886106044054, + -0.02251778170466423, + 0.02901623025536537, + 0.07628558576107025, + 0.005334238521754742, + -0.04812932386994362, + -0.05599556118249893, + 0.0013750424841418862, + 0.047387152910232544, + 0.07939299196004868, + 0.03587981313467026, + 0.0008504412835463881, + -0.0008003111579455435, + 0.05303797125816345, + 0.04999181628227234, + 0.0018084231996908784, + 0.06974232196807861, + -0.025288324803113937, + 0.04131816327571869, + -0.06111155077815056, + 0.0722881406545639, + 0.06943394988775253, + -0.025628453120589256, + -0.02258146181702614, + -0.018878553062677383, + -0.029976241290569305, + -0.06069401651620865, + 0.09023711830377579, + 0.059766944497823715, + 0.07123545557260513, + 0.05500286817550659, + -0.03027407079935074, + 0.012445242144167423, + -0.14862462878227234, + -0.0720597356557846, + 0.021330254152417183, + 0.025132207199931145, + -0.009174107573926449, + 0.01393184531480074, + 0.039461515843868256, + -0.031307071447372437, + -0.028740359470248222, + -0.001710524084046483, + -0.08446745574474335, + -0.055631063878536224, + 0.038742244243621826, + -0.01730874739587307, + -0.039617884904146194, + -0.04366838559508324, + 0.02243303693830967, + 0.0401206836104393, + 0.03991018608212471, + 0.0134726008400321, + -0.07069189846515656, + -0.00530107831582427, + 0.029371656477451324, + 0.149446502327919, + 0.019721508026123047, + -0.02134007215499878, + 0.16441617906093597, + -0.04973484203219414, + 0.05236107483506203, + 0.04148287698626518 + ], + "circle-bold||round,shapes,polygons": [ + 0.06786613911390305, + 0.028315406292676926, + -0.06832164525985718, + 0.06803800165653229, + 0.024862846359610558, + -0.09439242631196976, + 0.05471625179052353, + -0.03697160258889198, + 0.042222730815410614, + -0.06258594244718552, + -0.05985670164227486, + -0.0026763298083096743, + 0.03350828215479851, + -0.03357459604740143, + 0.05108848959207535, + -0.03400733321905136, + -0.012173573486506939, + 0.027247600257396698, + 0.022052085027098656, + -0.00823835376650095, + -0.030229149386286736, + -0.03344487026333809, + 0.04232541471719742, + 0.10280095040798187, + 0.003417246975004673, + 0.022604024037718773, + 0.0886351466178894, + -0.02942141331732273, + 0.010160417295992374, + -0.08770054578781128, + -0.08037402480840683, + 0.06680074334144592, + 0.06572065502405167, + -0.023603972047567368, + -0.03473285213112831, + -0.023097878322005272, + -0.04670106992125511, + 0.061440516263246536, + 0.04470217600464821, + 0.016441917046904564, + 0.04799054190516472, + -0.035172101110219955, + 0.11706370860338211, + 0.010130463168025017, + -0.08295547217130661, + 0.02072805166244507, + -0.16656102240085602, + 0.022717073559761047, + -0.006585707888007164, + -0.02178569883108139, + 0.003936845809221268, + -0.13178116083145142, + -0.11720432341098785, + -0.01547028124332428, + 0.022310027852654457, + -0.03366696834564209, + -0.07174848765134811, + -0.06186113506555557, + 0.05703233927488327, + -0.06658049672842026, + 0.051241207867860794, + -0.044656578451395035, + 0.063152976334095, + 0.04203537479043007, + -0.05593682825565338, + 0.04712308943271637, + 0.015341926366090775, + -0.037048567086458206, + -0.005035845562815666, + -0.047990016639232635, + 0.021258337423205376, + 0.09615076333284378, + -0.053951993584632874, + -0.07172156125307083, + 0.003936628345400095, + 0.010477057658135891, + -0.039207618683576584, + 0.021922234445810318, + -0.08183369040489197, + -0.049284450709819794, + -0.09698040783405304, + -0.018407702445983887, + 0.018435632809996605, + 0.021424593403935432, + 0.01671098917722702, + 0.09746655821800232, + -0.038317855447530746, + -0.11444561928510666, + -0.03564223274588585, + 0.005500433500856161, + -0.058524299412965775, + 0.09391520172357559, + -0.02380763366818428, + 0.014971206896007061, + -0.09518206864595413, + -0.00918144453316927, + 0.05295455455780029, + -0.021086301654577255, + -0.05793404206633568, + 0.07383789867162704, + 0.08008894324302673, + -0.003888373728841543, + 0.06770653277635574, + -0.07254696637392044, + -0.01791970059275627, + 0.008094878867268562, + 0.03489675000309944, + -0.06336215883493423, + 0.05806368589401245, + 0.053742170333862305, + -0.028652997687458992, + -0.07358155399560928, + 0.03842231258749962, + -0.0698443278670311, + -0.06696858257055283, + -0.014631013385951519, + -0.06446155905723572, + -0.02077358402311802, + 0.06620675325393677, + 0.04505276679992676, + 0.007379565853625536, + -0.0020641330629587173, + -0.059959352016448975, + -0.017759909853339195, + 0.021570708602666855, + 0.047389913350343704, + -0.01821967400610447, + -2.18139113177282e-33, + 0.027982261031866074, + 0.0742817372083664, + -0.013761338777840137, + 0.0651458352804184, + -0.038061946630477905, + -0.059700410813093185, + 0.050443366169929504, + -0.11613521724939346, + 0.04634318873286247, + 0.0003464121255092323, + -0.03669686242938042, + 0.062486857175827026, + -0.004478071350604296, + 0.006355769000947475, + 0.1163245290517807, + -0.05642009153962135, + 0.06935384124517441, + -0.009996224194765091, + -0.09793268144130707, + -0.02982494793832302, + -0.03974416106939316, + 0.014271922409534454, + -0.07649543136358261, + -0.033530350774526596, + -0.05500733479857445, + 0.013578406535089016, + 0.012388195842504501, + 0.0249111857265234, + -0.055429425090551376, + 0.04685811325907707, + 0.040557246655225754, + 0.018205486238002777, + 0.028376257047057152, + 0.08990488946437836, + -0.003546939929947257, + 0.031050074845552444, + -0.04401865601539612, + 0.0146145885810256, + 0.04781769588589668, + 0.02632872201502323, + -0.021921401843428612, + -0.04979900270700455, + -0.01209309697151184, + 0.00817027036100626, + 0.02231072261929512, + 0.13949549198150635, + -0.014377490617334843, + -0.03526459261775017, + -0.03844355046749115, + -0.00625313026830554, + -0.030742133036255836, + 0.03854271024465561, + -0.013940407894551754, + -0.0019664294086396694, + 0.01171677652746439, + -0.05281570926308632, + -0.0017219235887750983, + 0.027020802721381187, + -0.07084248214960098, + 0.04292532056570053, + 0.03061862476170063, + 0.05043720453977585, + -0.0019292478682473302, + -0.043160296976566315, + -0.12596216797828674, + 0.03205181658267975, + -0.08477981388568878, + -0.017601346597075462, + 0.02516183815896511, + -0.04822929576039314, + 0.048761967569589615, + 0.06678597629070282, + 0.03253806009888649, + 0.04358178377151489, + -0.01063083577901125, + 0.06289772689342499, + 0.00511777913197875, + 0.00941319577395916, + 0.05472885072231293, + -0.029879609122872353, + -0.019552486017346382, + 0.004466904327273369, + -0.06024943292140961, + -0.03725912421941757, + 0.01678670197725296, + -0.01357581838965416, + 0.0640990138053894, + -0.012070992961525917, + -0.0059485347010195255, + 0.012601436115801334, + -0.07312630861997604, + -0.008530821651220322, + 0.08669818192720413, + 0.05093272402882576, + -0.11134739965200424, + -2.3378672459535212e-34, + -0.055277109146118164, + 0.03606715425848961, + -0.034953124821186066, + -0.00449885381385684, + -0.012992792762815952, + 0.048178065568208694, + -0.02361600287258625, + -0.022504882887005806, + -0.031887587159872055, + 0.002202607924118638, + -0.019385749474167824, + -0.02489296905696392, + -0.04681131988763809, + -0.04239211976528168, + -0.0028400595765560865, + -0.02320902980864048, + 0.04085473343729973, + -0.006029249634593725, + -0.0631449893116951, + 3.34607575496193e-05, + -0.06915771216154099, + -0.02730848640203476, + -0.08542882651090622, + 0.042822305113077164, + -0.06997387111186981, + 0.07385348528623581, + -0.016340939328074455, + -0.07571133971214294, + -0.036369770765304565, + 0.047279298305511475, + -0.08146634697914124, + -0.09581001102924347, + 0.07937830686569214, + 0.060753632336854935, + -0.03420057147741318, + -0.0704442635178566, + 0.08270914107561111, + -0.0866994708776474, + 0.02926860749721527, + -0.036710988730192184, + -0.009798530489206314, + -0.05368595942854881, + 0.008440333418548107, + 0.05826493352651596, + -0.027481112629175186, + -0.0644691064953804, + 0.0900026261806488, + -0.010442330501973629, + -0.0642864853143692, + 0.04042666032910347, + -0.015449541620910168, + 0.019079992547631264, + 0.06593260914087296, + 0.03280153498053551, + -0.005298311356455088, + -0.01071404479444027, + -0.04797208681702614, + 0.06792613118886948, + 0.017906272783875465, + 0.05231069028377533, + -0.09978196769952774, + -0.005478224717080593, + 0.004069740884006023, + 0.105692557990551, + 0.03840160369873047, + 0.00271670613437891, + 0.0621197335422039, + -0.03633594885468483, + -0.03191542625427246, + 0.06455674767494202, + 0.05475445091724396, + 0.10075061768293381, + 0.007022016681730747, + 0.03421488776803017, + 0.03979993239045143, + -0.022140925750136375, + 0.04903358966112137, + 0.009614242240786552, + -0.021926844492554665, + 0.0765615701675415, + -0.0368872806429863, + -0.014183210209012032, + -0.010873990133404732, + 0.018280021846294403, + -0.011497202329337597, + -0.008961421437561512, + 0.028604350984096527, + -0.0019302120199427009, + 0.008793449960649014, + 0.02704702690243721, + -0.03199884295463562, + 0.06093786656856537, + 0.020353909581899643, + 0.04539177194237709, + 0.06896113604307175, + -1.704575502969874e-08, + 0.026140369474887848, + -0.04145034775137901, + -0.04247566685080528, + 0.009245391003787518, + 0.09512611478567123, + -0.04358655959367752, + -0.025607846677303314, + -0.05979473888874054, + -0.10875245928764343, + -0.012587672099471092, + 0.033269502222537994, + 0.051062848418951035, + -0.07161282747983932, + -0.021717576310038567, + 0.02384129911661148, + 0.013274509459733963, + 0.0313759446144104, + 0.09259947389364243, + 0.009303461760282516, + -0.02747897058725357, + -0.006252683699131012, + -0.006825484335422516, + 0.046586960554122925, + -0.04583819583058357, + 0.02105625905096531, + -0.0076958853751420975, + -0.036708682775497437, + 0.02349015325307846, + 0.016904186457395554, + 0.015485195443034172, + -0.012850127182900906, + 0.03369820863008499, + -0.0044097863137722015, + 0.03598862141370773, + -0.05575365945696831, + -0.07364453375339508, + -0.029268547892570496, + 0.03348427638411522, + -0.0338735394179821, + 0.12173354625701904, + -0.023194072768092155, + 0.01994488202035427, + 0.04296678304672241, + -0.05752880498766899, + 0.035362306982278824, + 0.07139506936073303, + 0.03392086923122406, + -0.02218664437532425, + -0.06230998784303665, + -0.05583703890442848, + -0.0985802710056305, + 0.01679825410246849, + 0.0720319077372551, + 0.09862729907035828, + -0.020441889762878418, + -0.0552489347755909, + 0.04460015147924423, + 0.08048155903816223, + -0.03827471658587456, + 0.04879146069288254, + 0.06458646059036255, + 0.03061460331082344, + 0.04506115987896919, + -0.011221625842154026 + ], + "circle-dashed-bold||missing,round,shapes,polygons": [ + 0.029175277799367905, + 0.02138201706111431, + 0.020881157368421555, + 0.08040940761566162, + 0.04821546748280525, + -0.0899050310254097, + 0.028855349868535995, + -0.06272927671670914, + 0.014551875181496143, + -0.061785247176885605, + -0.00424032611772418, + 0.022253884002566338, + 0.0194243174046278, + -0.05766899511218071, + 0.0652393326163292, + -0.0029540746472775936, + -0.032031331211328506, + -0.056317687034606934, + -0.0036653217393904924, + -0.014825872145593166, + -0.11060860008001328, + -0.04122503474354744, + 0.005269617307931185, + 0.10946882516145706, + 0.03789905458688736, + 0.07636337727308273, + 0.059873078018426895, + -0.01844213902950287, + -0.04495123773813248, + -0.08062206953763962, + -0.08056501299142838, + 0.09121274203062057, + 0.06282313913106918, + -0.05329490080475807, + 0.017258277162909508, + -0.036693353205919266, + -0.03669579699635506, + 0.0507853627204895, + 0.03552481159567833, + -0.008514784276485443, + 0.033735327422618866, + -0.03444261476397514, + 0.06373769789934158, + -0.00013191222387831658, + -0.07985827326774597, + -0.013993896543979645, + -0.12762700021266937, + -0.0248753372579813, + 0.03253251314163208, + -0.024725263938307762, + 0.006793702952563763, + -0.08646654337644577, + -0.08851298689842224, + -0.02753579616546631, + 0.01654946617782116, + 0.020880945026874542, + -0.047797542065382004, + -0.00013667599705513567, + 0.06579811125993729, + -0.05399001017212868, + 0.032594285905361176, + -0.013039765879511833, + 0.0295206718146801, + 0.03599967435002327, + -0.03671485185623169, + 0.025537239387631416, + -0.03479832783341408, + -0.0707324892282486, + -0.010145762003958225, + 0.05434885621070862, + 0.0531810000538826, + 0.08626162260770798, + -0.08809521049261093, + -0.038993991911411285, + 0.0025661634281277657, + 0.030863704159855843, + -0.013154651038348675, + 0.030734233558177948, + -0.0616714172065258, + -0.07175951451063156, + -0.09539921581745148, + -0.009306085295975208, + -0.02652437798678875, + 0.050922684371471405, + 0.06616474688053131, + 0.11236731708049774, + -0.03190162405371666, + -0.12670660018920898, + -0.04734547808766365, + -0.021111266687512398, + -0.053720131516456604, + 0.02042221836745739, + -0.01039897557348013, + 0.027372853830456734, + -0.08239154517650604, + -0.027134748175740242, + 0.114109106361866, + 0.013467068783938885, + -0.03621866554021835, + 0.09680265933275223, + 0.05947262793779373, + -0.008569516241550446, + 0.09886354207992554, + -0.02915005385875702, + -0.05245523899793625, + 0.018758432939648628, + -0.004366307519376278, + -0.010939188301563263, + 0.048213884234428406, + 0.040748752653598785, + -0.02181839756667614, + -0.07554015517234802, + 0.046901311725378036, + -0.06438840180635452, + -0.07067181915044785, + -0.021371854469180107, + -0.10580840706825256, + -0.07759395241737366, + 0.07346849143505096, + 0.07531500607728958, + 0.009636364877223969, + -9.128440433414653e-05, + -0.04389756917953491, + -0.024837855249643326, + 0.023610631003975868, + 0.018002524971961975, + -0.03505202755331993, + -2.3108033252357612e-33, + 0.001916210982017219, + 0.06806498765945435, + 0.012434416450560093, + 0.03510581701993942, + -0.011611949652433395, + -0.024184733629226685, + 0.04894179105758667, + -0.09038186818361282, + 0.012479965575039387, + 0.006644821260124445, + -0.03353210166096687, + 0.07924012094736099, + 0.010013310238718987, + 0.02451777644455433, + 0.013446636497974396, + -0.02926083654165268, + 0.11977488547563553, + -0.04243538901209831, + -0.10172997415065765, + -0.009248625487089157, + -0.013389594852924347, + 0.04883330687880516, + -0.09611007571220398, + -0.07098738849163055, + -0.08143896609544754, + 0.02303837612271309, + 0.02770448848605156, + 0.0011265854118391871, + -0.04887356981635094, + 0.06227469444274902, + 0.009744345210492611, + 0.020442163571715355, + 0.09777524322271347, + 0.029811229556798935, + -0.02295212633907795, + 0.028014587238430977, + -0.034711770713329315, + -0.04002193361520767, + 0.009381871670484543, + 0.013976157642900944, + 0.00861796922981739, + -0.050262536853551865, + -0.031117860227823257, + 0.037184372544288635, + 0.04295365512371063, + 0.13091661036014557, + 0.05481060594320297, + -0.05557754635810852, + -0.04898221790790558, + 0.027903782203793526, + -0.09037265926599503, + 0.06392277032136917, + 0.0273287370800972, + -0.03195500746369362, + -0.016613561660051346, + -0.07915236055850983, + 0.004934103228151798, + 0.01217376533895731, + -0.07853299379348755, + 0.009937187656760216, + 0.10400205105543137, + 0.07619237154722214, + -0.03630394861102104, + -0.07203693687915802, + -0.0622633658349514, + 0.04546363651752472, + -0.09903739392757416, + 0.01307501271367073, + 0.0028342283330857754, + -0.06165292114019394, + 0.0383906215429306, + 0.05603702738881111, + 0.06441309303045273, + 0.09422395378351212, + 0.026364320889115334, + 0.025866111740469933, + 0.01575601100921631, + 0.004747478291392326, + 0.06177041307091713, + -0.07026900351047516, + -0.02548651583492756, + -0.007036499213427305, + -0.052058059722185135, + -0.05201638117432594, + -0.011212342418730259, + -0.03969641402363777, + 0.07448772341012955, + -0.03553119674324989, + -0.06249646469950676, + 0.041116733103990555, + -0.045924872159957886, + -0.0028662695549428463, + 0.008375538513064384, + 0.04803483933210373, + -0.10912065207958221, + -5.46167919841644e-34, + -0.060324374586343765, + 0.08036885410547256, + -0.0489523746073246, + -0.03168686479330063, + -0.0482364296913147, + 0.07489974051713943, + 0.047764506191015244, + -0.03484195098280907, + 0.0038645747117698193, + -0.010719822719693184, + -0.002902777399867773, + 0.0029575263615697622, + 0.004249304533004761, + -0.022423159331083298, + -0.00283559737727046, + 0.030101459473371506, + 0.036799486726522446, + -0.03619041666388512, + -0.05608757212758064, + -0.0028765390161424875, + -0.08666130155324936, + -0.000592723663430661, + -0.03013528510928154, + 0.054177407175302505, + -0.04809890314936638, + 0.06005018576979637, + 0.048128433525562286, + -0.09732600301504135, + -0.04426566883921623, + 0.03487494960427284, + -0.08176273852586746, + -0.09264357388019562, + 0.0363977774977684, + 0.059701014310121536, + -0.023932186886668205, + -0.04249962046742439, + 0.04644806310534477, + -0.06148921698331833, + -0.014106696471571922, + -0.044632237404584885, + -0.036886509507894516, + -0.0796380266547203, + 0.04950275644659996, + 0.04538554698228836, + -0.005258563440293074, + -0.026968905702233315, + 0.07507941126823425, + 0.03895243629813194, + -0.041963398456573486, + 0.06882663816213608, + 0.0309287179261446, + -0.015804927796125412, + 0.07839211076498032, + 0.02338433265686035, + 0.004536768421530724, + -0.022384995594620705, + -0.01712956093251705, + 0.06522995233535767, + 0.004027276299893856, + 0.060439299792051315, + -0.08516450226306915, + 0.035224560648202896, + -0.01674281433224678, + 0.0768325924873352, + 0.01287179347127676, + -0.018064653500914574, + 0.044207021594047546, + -0.04849230870604515, + 0.02245149575173855, + -0.006647855509072542, + 0.0074470979161560535, + 0.08822707831859589, + -0.021301794797182083, + -0.013343672268092632, + 0.08125230669975281, + 0.034367259591817856, + 0.041158948093652725, + 0.04080551490187645, + -0.013719814829528332, + 0.08131328970193863, + -0.020954160019755363, + -0.02757001481950283, + 0.003156429622322321, + 0.04475043714046478, + -0.00547475041821599, + -0.002371266484260559, + -0.04543690383434296, + 0.0190169308334589, + 0.000846402021124959, + -0.004346068482846022, + 0.006187630817294121, + 0.08237019181251526, + 0.008757499046623707, + 0.06204230338335037, + 0.04872492700815201, + -1.8917617694569344e-08, + 0.05884300172328949, + -0.025658976286649704, + -0.045955464243888855, + 0.006575464736670256, + 0.10862216353416443, + -0.06661289185285568, + 0.0021015286911278963, + -0.0635257288813591, + -0.1259605586528778, + -0.011248496361076832, + -0.005514252930879593, + 0.004178057424724102, + -0.08635157346725464, + -0.00364127429202199, + 0.0034069998655468225, + 0.0003816634707618505, + 0.028367500752210617, + 0.09596052765846252, + -0.01213452685624361, + -0.04725644364953041, + -0.04487031698226929, + -0.004998078569769859, + 0.061919230967760086, + -0.04621923714876175, + 0.023520920425653458, + -0.02192479558289051, + -0.01685243286192417, + -0.0014586517354473472, + -0.005113532301038504, + 0.01293236669152975, + -0.02626059204339981, + 0.019406134262681007, + 0.013002839870750904, + -0.05875304341316223, + -0.022638950496912003, + -0.05042951554059982, + -0.030611105263233185, + 0.059636615216732025, + -0.0314512737095356, + 0.03925905004143715, + -0.025323063135147095, + 0.003067256882786751, + 0.06277617812156677, + -0.04739723727107048, + 0.04673796892166138, + 0.07654768973588943, + 0.050492171198129654, + 0.00433462904766202, + -0.04993806034326553, + -0.10243404656648636, + -0.07054048776626587, + -0.000649130146484822, + 0.04094279929995537, + 0.08880792558193207, + -0.02421654388308525, + -0.06179819628596306, + 0.0629599541425705, + 0.07477927953004837, + -0.011489088647067547, + 0.03180813789367676, + 0.07796963304281235, + -0.017161430791020393, + -0.01544793602079153, + 0.02295529469847679 + ], + "circle-half-bold||round,shapes,contrast,brightness": [ + 0.0389651283621788, + -0.02282220497727394, + -0.03563692420721054, + 0.03637431189417839, + 0.03405221179127693, + -0.10223057866096497, + 0.02214748226106167, + -0.008191930130124092, + 0.030252156779170036, + -0.06154397502541542, + -0.019320009276270866, + -0.029367661103606224, + 0.0449201762676239, + 0.0011404361575841904, + 0.0205649733543396, + 0.019554458558559418, + 0.041371021419763565, + 0.003411451820284128, + 0.01672317460179329, + -0.006518814712762833, + -0.03155671805143356, + -0.03209288790822029, + 0.008156243711709976, + 0.05855410173535347, + 0.031886275857686996, + 0.02640160731971264, + 0.06022585183382034, + -0.010507116094231606, + 0.012070318683981895, + -0.11784399300813675, + -0.04882066324353218, + 0.04662180691957474, + 0.09547532349824905, + 0.017315879464149475, + -0.05618133023381233, + -0.034520722925662994, + 0.02242903783917427, + 0.06047847494482994, + 0.011388109996914864, + -0.0014199961442500353, + 0.019470226019620895, + -0.028032515197992325, + 0.062676340341568, + 0.04637937247753143, + -0.032212305814027786, + 0.006275536958128214, + -0.11228182166814804, + 0.026431219652295113, + -0.024532213807106018, + -0.009469359181821346, + -0.002264142967760563, + -0.10142376273870468, + -0.15165740251541138, + 0.004776324611157179, + 0.02962566539645195, + 0.020868444815278053, + -0.059865228831768036, + -0.05100357159972191, + 0.11093418300151825, + -0.07771510630846024, + 0.020877141505479813, + -0.015055938623845577, + 0.03453478962182999, + 0.04602040722966194, + 0.001362780574709177, + 0.018809404224157333, + -0.015772763639688492, + -0.09328819066286087, + 0.016277668997645378, + -0.04313754662871361, + 0.010980193503201008, + 0.06097831204533577, + -0.02572420984506607, + -0.0554984025657177, + -0.013677039183676243, + 0.005454806610941887, + -0.001550475717522204, + -0.016682447865605354, + -0.0484936349093914, + -0.08619628846645355, + -0.0636150985956192, + -0.04862426593899727, + 0.003734009573236108, + 0.0604715421795845, + 0.023564912378787994, + 0.07491284608840942, + -0.017547687515616417, + -0.073824942111969, + -0.045176420360803604, + 0.0004847478703595698, + -0.06495960056781769, + 0.06216442584991455, + -0.10403373837471008, + -0.04233710840344429, + -0.1002092957496643, + -0.026430349797010422, + 0.08261232078075409, + -0.059616390615701675, + -0.046144790947437286, + 0.1181064248085022, + 0.06871955096721649, + -0.046698085963726044, + 0.07247939705848694, + -0.061219699680805206, + -0.0067753116600215435, + -0.05950634181499481, + 0.05850968882441521, + -0.04540013521909714, + 0.05806688219308853, + 0.004724556114524603, + 0.03280801698565483, + -0.07405108958482742, + -0.03096846491098404, + -0.06768889725208282, + 0.009424714371562004, + -0.038034599274396896, + -0.050758928060531616, + 0.030660388991236687, + 0.09664422273635864, + 0.034235335886478424, + 0.016650067642331123, + 0.006336105056107044, + -0.07098408043384552, + -0.013953507877886295, + -0.0057150195352733135, + 0.024421662092208862, + -0.03163328021764755, + -1.78255398006248e-33, + 0.014346015639603138, + 0.06482359021902084, + -0.03507119044661522, + 0.06316975504159927, + -0.00022810690279584378, + -0.03415166959166527, + 0.0006694847252219915, + -0.07682111114263535, + -0.018881525844335556, + 0.0042753200978040695, + 0.0013487840769812465, + 0.09784908592700958, + -0.04461098089814186, + 0.0649634301662445, + 0.08710633963346481, + -0.07135257124900818, + 0.09042418748140335, + -0.024148274213075638, + -0.10717625170946121, + -0.0049065048806369305, + -0.09196289628744125, + 0.0526483915746212, + -0.0458860769867897, + -0.011635244823992252, + -0.05247405171394348, + -0.028999395668506622, + 0.04431343078613281, + 0.004800065886229277, + -0.031010128557682037, + 0.05222440883517265, + 0.04970904812216759, + 0.041467249393463135, + 0.03123360127210617, + 0.05027187615633011, + -0.005138690117746592, + -0.010720668360590935, + -0.0694056898355484, + -0.0003151547280140221, + 0.05751252546906471, + 0.013451464474201202, + -0.061719056218862534, + 0.0018825015285983682, + -0.03216450288891792, + -0.0038731449749320745, + -0.009672115556895733, + 0.1057695671916008, + 0.006150624714791775, + 0.029223723337054253, + 0.004749004729092121, + -0.027908718213438988, + -0.03216211497783661, + -0.011686485260725021, + -0.02646930329501629, + -0.0712943747639656, + 0.037357769906520844, + -0.0002884264395106584, + 0.02350938320159912, + 0.02534504607319832, + -0.026984674856066704, + -0.004522831179201603, + 0.03583793714642525, + 0.06403228640556335, + 0.005037523340433836, + -0.039689335972070694, + -0.0852702185511589, + 0.03500868380069733, + -0.10550248622894287, + -0.03635244444012642, + 0.001778711681254208, + -0.026932476088404655, + 0.005712044425308704, + 0.08376722037792206, + 0.060655005276203156, + 0.013496519066393375, + -0.006396668031811714, + 0.060172729194164276, + 0.06043272092938423, + -0.0017260172171518207, + 0.05177346616983414, + -0.012902011163532734, + -0.08215893059968948, + 0.00879213772714138, + -0.045064590871334076, + -0.07442348450422287, + -0.03769650682806969, + -0.007638402748852968, + 0.03061389923095703, + -0.061582304537296295, + -0.06246444210410118, + -0.021112414076924324, + -0.08750037103891373, + 0.015622383914887905, + 0.05027977377176285, + 0.003644738346338272, + -0.11024697124958038, + 3.1420986956353785e-34, + -0.02385541796684265, + 0.03158130124211311, + -0.0431397445499897, + 0.03803469240665436, + 0.008452909998595715, + 0.05163208395242691, + -0.015482346527278423, + 0.041320353746414185, + 0.012658767402172089, + 0.039060078561306, + 0.055809248238801956, + 0.014924063347280025, + -0.03743068501353264, + -0.06054428964853287, + 0.013162262737751007, + -0.014954423531889915, + 0.06770467758178711, + 0.004920255858451128, + -0.05046582594513893, + 0.020047331228852272, + -0.06257680803537369, + 0.015945088118314743, + -0.05964449793100357, + 0.038638148456811905, + -0.08542467653751373, + 0.10242756456136703, + 0.005143221467733383, + -0.06709058582782745, + -0.10276423394680023, + 0.025575587525963783, + -0.08977676182985306, + -0.09252599626779556, + 0.07944697141647339, + 0.02908376418054104, + -0.056595493108034134, + -0.03251894563436508, + 0.09643436968326569, + -0.09944216161966324, + -0.04850952699780464, + -0.02759142406284809, + -0.04148576408624649, + -0.00960403960198164, + 0.013566664420068264, + 0.035042453557252884, + -0.04090619832277298, + -0.06971744447946548, + 0.07585728913545609, + 0.01531318947672844, + -0.055151283740997314, + 0.027641436085104942, + -0.005511391907930374, + 0.032373152673244476, + 0.03889530524611473, + 0.06927806884050369, + -0.042237538844347, + -0.05899744853377342, + -0.0318051353096962, + 0.058540116995573044, + 0.056908298283815384, + 0.08746225386857986, + -0.08158641308546066, + -0.020284947007894516, + -0.07156646996736526, + 0.07805747538805008, + 0.009072204120457172, + -0.00236336188390851, + 0.03658665344119072, + -0.044183071702718735, + -0.00387218757532537, + 0.06824517250061035, + 0.0849074050784111, + 0.04083698242902756, + 0.0221765898168087, + 0.019452694803476334, + 0.058480773121118546, + -0.025914762169122696, + 0.05162563547492027, + -0.005520922597497702, + -0.01945032924413681, + 0.09010331332683563, + -0.017691224813461304, + -0.01704200729727745, + -0.005841669160872698, + 0.05994904786348343, + 0.011569371446967125, + 0.003764031920582056, + -0.014945638366043568, + -0.0212057176977396, + 0.021959271281957626, + 0.013675306923687458, + -0.020652124658226967, + 0.06872077286243439, + 0.009440762922167778, + 0.017352059483528137, + 0.08075778186321259, + -1.8103920140788432e-08, + 0.03028387762606144, + -0.05824848636984825, + -0.010591459460556507, + -0.048190850764513016, + 0.06368178874254227, + -0.06718754023313522, + 0.00220600632019341, + -0.06202825531363487, + -0.0719769224524498, + -0.016260137781500816, + 0.006565151270478964, + 0.024382442235946655, + -0.08464885503053665, + -0.03815523907542229, + 0.01964435540139675, + 0.052706267684698105, + 0.017582988366484642, + 0.09931812435388565, + -0.009124765172600746, + 0.008787942118942738, + 0.0001005774101940915, + -0.012268410064280033, + 0.08286115527153015, + -0.06800813227891922, + 0.014343556016683578, + 0.011989929713308811, + -0.0786532312631607, + 0.017067167907953262, + 0.004261954687535763, + 0.004644409753382206, + 0.04148910194635391, + 0.07771728932857513, + 0.025249339640140533, + -0.018094535917043686, + -0.04634693264961243, + -0.028424296528100967, + -0.0647626519203186, + 0.06487943977117538, + -0.051425330340862274, + 0.13470010459423065, + -0.008694188669323921, + -0.0027789645828306675, + 0.05246314778923988, + -0.010515048168599606, + 0.06426900625228882, + 0.08651617914438248, + 0.09697791188955307, + -0.030689597129821777, + -0.07683324813842773, + -0.0258138757199049, + -0.05654183402657509, + 0.01631797105073929, + 0.06406156718730927, + 0.08142461627721786, + -0.06669038534164429, + -0.07063296437263489, + 0.05612974986433983, + 0.11900262534618378, + -0.048038337379693985, + 0.039713360369205475, + 0.10395243018865585, + 0.055702053010463715, + 0.015020862221717834, + -0.013802438974380493 + ], + "circle-half-tilt-bold||round,shapes,contrast,brightness": [ + 0.029402494430541992, + -0.040258005261421204, + -0.03304444998502731, + 0.007376860361546278, + 0.004635723307728767, + -0.08568263798952103, + 0.013804608024656773, + -0.0029889531433582306, + 0.04782622680068016, + -0.05001280456781387, + 0.012221557088196278, + -0.032350536435842514, + 0.033486414700746536, + -0.01319391280412674, + 0.02519610896706581, + 0.03256525099277496, + 0.04280136898159981, + 0.018026957288384438, + 0.050642166286706924, + 0.009102403186261654, + -0.03191792219877243, + -0.0308710765093565, + -0.02460041455924511, + 0.08374138176441193, + 0.03231274336576462, + 0.018760601058602333, + 0.047653667628765106, + -0.00563863106071949, + -0.004436689428985119, + -0.11250422894954681, + -0.05008631572127342, + 0.06309499591588974, + 0.06987874954938889, + 0.015732089057564735, + -0.08437184244394302, + -0.028355080634355545, + 0.022840019315481186, + 0.042201392352581024, + -0.03824504837393761, + -0.009776108898222446, + 0.008997765369713306, + -0.0013607209548354149, + 0.06368069350719452, + 0.04240093380212784, + -0.02617829479277134, + 0.02237253077328205, + -0.0891869068145752, + 0.02878018654882908, + -0.044865984469652176, + -0.001275296788662672, + -0.03305859863758087, + -0.10073823481798172, + -0.15191489458084106, + 0.018716759979724884, + 0.02754160203039646, + 0.060700055211782455, + -0.040664657950401306, + -0.03677184879779816, + 0.14298512041568756, + -0.05742039903998375, + 0.027188893407583237, + -0.022690551355481148, + 0.012363038957118988, + 0.05276043340563774, + 0.005171723663806915, + 0.02624640427529812, + -0.02376343496143818, + -0.0995573028922081, + 0.022393884137272835, + -0.05470592901110649, + -0.024054059758782387, + 0.0453411228954792, + -0.008418758399784565, + -0.05316563695669174, + -0.013218820095062256, + -0.011013033799827099, + 0.019037552177906036, + -0.053908299654722214, + -0.029971500858664513, + -0.08035418391227722, + -0.0535765215754509, + -0.02783532440662384, + -0.0020269162487238646, + 0.03915422409772873, + 0.008802336640655994, + 0.05069918930530548, + -0.01769082620739937, + -0.04707494378089905, + -0.050815362483263016, + 0.006341653410345316, + -0.06593114137649536, + 0.04286089912056923, + -0.11392160505056381, + -0.0572936050593853, + -0.078414686024189, + -0.019586218520998955, + 0.0918784812092781, + -0.0804092064499855, + -0.03172358125448227, + 0.11715070903301239, + 0.07358168065547943, + -0.06143362075090408, + 0.06149789318442345, + -0.04423043504357338, + 0.001046015415340662, + -0.07675997912883759, + 0.06312713027000427, + -0.06132261082530022, + 0.03971543535590172, + -0.00674787862226367, + 0.007369681261479855, + -0.06498320400714874, + -0.0440124049782753, + -0.08456385135650635, + -0.00104406604077667, + -0.0361335426568985, + -0.051717761904001236, + 0.02474537305533886, + 0.0763179138302803, + 0.024501800537109375, + 0.03707476332783699, + -0.013947802595794201, + -0.06741108745336533, + 0.0053377761505544186, + -0.025632252916693687, + 0.030403731390833855, + -0.04352809116244316, + -1.973295387227666e-33, + 0.04666326195001602, + 0.06332982331514359, + -0.025521764531731606, + 0.07666045427322388, + -0.005447495263069868, + -0.040023040026426315, + -0.0030360210221260786, + -0.06299302726984024, + -0.012542212381958961, + 0.00873760785907507, + -0.005864675622433424, + 0.11638368666172028, + -0.05469684675335884, + 0.07952042669057846, + 0.08620752394199371, + -0.10680818557739258, + 0.07882022857666016, + 0.006919204723089933, + -0.08664998412132263, + -0.0016806215280666947, + -0.113817498087883, + 0.06311635673046112, + -0.03614914044737816, + -0.019611990079283714, + -0.05734575539827347, + -0.015749754384160042, + 0.05167493596673012, + -0.005622692406177521, + -0.04689198359847069, + 0.04450681433081627, + 0.0637061595916748, + 0.03231879323720932, + 0.019560696557164192, + 0.01991928555071354, + -0.003234463045373559, + -0.018116768449544907, + -0.07157127559185028, + -0.015564738772809505, + 0.05669531226158142, + 0.010254896245896816, + -0.07444009929895401, + 0.021106041967868805, + -0.04247504100203514, + 0.0023946939036250114, + -0.004321010783314705, + 0.0932510644197464, + -0.016948986798524857, + 0.040727611631155014, + -0.00492516066879034, + -0.006737252231687307, + -0.02792401611804962, + -0.025843961164355278, + -0.028995851054787636, + -0.08382060378789902, + 0.05164650082588196, + 0.013732993975281715, + 0.011111725121736526, + 0.024006647989153862, + -0.03222137317061424, + 0.0065616704523563385, + 0.030694788321852684, + 0.052436646074056625, + 0.009867288172245026, + -0.08780089020729065, + -0.06969316303730011, + 0.03398361802101135, + -0.08619973808526993, + -0.036693114787340164, + -0.0030488227494060993, + -0.014486138708889484, + 0.004003629088401794, + 0.07543611526489258, + 0.04492383450269699, + 0.027705326676368713, + -0.010465414263308048, + 0.07484772056341171, + 0.05076054483652115, + -0.012235908769071102, + 0.04605335369706154, + 0.008747091516852379, + -0.07613864541053772, + 0.02079027146100998, + -0.05850623548030853, + -0.05374281108379364, + -0.07258082926273346, + -0.004181083757430315, + 0.009981771931052208, + -0.0578974187374115, + -0.07760977745056152, + -0.012970038689672947, + -0.09575419872999191, + 0.020543357357382774, + 0.057056646794080734, + 0.011927844025194645, + -0.10271007567644119, + 3.776081140353484e-34, + -0.01795664243400097, + 0.0034154413733631372, + -0.08195463567972183, + 0.031910303980112076, + 0.0157785527408123, + 0.04522571712732315, + -0.009278175421059132, + 0.04243246465921402, + -5.335525088412396e-07, + 0.036561258137226105, + 0.053226638585329056, + -0.007650223094969988, + -0.016054576262831688, + -0.04503847286105156, + 0.012317667715251446, + 0.007778713013976812, + 0.06438443809747696, + 0.01295652985572815, + -0.04543472081422806, + 0.02862931601703167, + -0.008167932741343975, + 0.022770991548895836, + -0.06725062429904938, + 0.04016020894050598, + -0.047667212784290314, + 0.10114511847496033, + -0.013381373137235641, + -0.057043395936489105, + -0.09120713174343109, + 0.026109352707862854, + -0.08885103464126587, + -0.09867295622825623, + 0.10130719840526581, + 0.03833707794547081, + -0.05635173246264458, + -0.0064279669895768166, + 0.0666450560092926, + -0.10839282721281052, + -0.05763550475239754, + -0.03314938023686409, + -0.022012438625097275, + 0.0172860287129879, + 0.05768762156367302, + 0.024177683517336845, + -0.01568857952952385, + -0.05480636656284332, + 0.0600605234503746, + 0.02511240541934967, + -0.04563784971833229, + 0.021152308210730553, + -0.023151490837335587, + 0.03814290463924408, + 0.026758085936307907, + 0.05899744853377342, + -0.046108540147542953, + -0.06954015791416168, + -0.018028557300567627, + 0.037764277309179306, + 0.04322730377316475, + 0.06273446977138519, + -0.057796068489551544, + -0.05353270098567009, + -0.08464662730693817, + 0.07552561908960342, + -0.018822457641363144, + -0.007412475533783436, + 0.0621611550450325, + -0.07972056418657303, + -0.010291422717273235, + 0.050738729536533356, + 0.10973229259252548, + 0.033456865698099136, + 0.04697618633508682, + -0.008359342813491821, + 0.05683144927024841, + -0.03427526354789734, + 0.0732729360461235, + 0.010996397584676743, + -0.022400690242648125, + 0.04982808604836464, + -0.01514782290905714, + -0.012771453708410263, + 0.01945369504392147, + 0.07472868263721466, + -0.00199970044195652, + 0.01288630347698927, + -0.030981721356511116, + -0.04089546948671341, + 0.046521127223968506, + 0.035473454743623734, + -0.0304903294891119, + 0.047526050359010696, + 0.013065734878182411, + 0.01667574793100357, + 0.08840671181678772, + -1.942846061808723e-08, + 0.035380057990550995, + -0.06067661568522453, + 0.007819369435310364, + -0.04116607457399368, + 0.045463934540748596, + -0.05669314041733742, + 0.025347784161567688, + -0.057380467653274536, + -0.06134449690580368, + -0.04013406112790108, + 0.02064381167292595, + 0.038452018052339554, + -0.06447767466306686, + -0.027622584253549576, + 0.033625528216362, + 0.06106797233223915, + 0.0034655029885470867, + 0.12365665286779404, + 0.001762796426191926, + 0.024809937924146652, + 0.006450930144637823, + -0.000868937058839947, + 0.09409961104393005, + -0.0513378269970417, + 0.017109006643295288, + 0.012524411082267761, + -0.08154776692390442, + 0.025104578584432602, + 0.023523392155766487, + 0.000563778739888221, + 0.027684591710567474, + 0.0797102227807045, + 0.007044199854135513, + -0.04816064611077309, + -0.06141223385930061, + 0.01454224530607462, + -0.0980403795838356, + 0.07362617552280426, + -0.03397282958030701, + 0.11673636734485626, + -0.027719171717762947, + 0.0243937149643898, + 0.025975964963436127, + -0.0010824388591572642, + 0.0781191810965538, + 0.09266263991594315, + 0.08995646983385086, + -0.026792194694280624, + -0.06119227781891823, + -0.03292039409279823, + -0.04770583659410477, + 0.0255634393543005, + 0.07266050577163696, + 0.07488366216421127, + -0.06808219105005264, + -0.03542611002922058, + 0.07080685347318649, + 0.09689042717218399, + -0.04686105251312256, + 0.0043829092755913734, + 0.09830876439809799, + 0.05935344845056534, + -0.01728581264615059, + -0.01693544164299965 + ], + "circle-notch-bold||round,shapes,loading,loader,spinner,waiting,progress": [ + -0.062354329973459244, + 0.0058293635956943035, + -0.09358693659305573, + 0.022451700642704964, + -0.07300319522619247, + -0.056067872792482376, + 0.00983121432363987, + 0.028678489848971367, + 0.004310615360736847, + -0.04731551930308342, + -0.01385586243122816, + 0.014445848762989044, + -0.0011770010460168123, + -0.06002122908830643, + 0.009394829161465168, + 0.03854914382100105, + -0.022862575948238373, + -0.025148216634988785, + 0.015351253561675549, + -0.03537619858980179, + -0.04490412026643753, + -0.049909692257642746, + -0.007416129112243652, + 0.09597694873809814, + 0.00913042388856411, + 0.03848756104707718, + 0.02223115973174572, + 0.027052512392401695, + 0.05633917078375816, + -0.13546611368656158, + -0.06014125421643257, + 0.033257998526096344, + 0.023242106661200523, + -0.04049430787563324, + -0.021651586517691612, + 0.011951398104429245, + 0.006909784395247698, + 0.004860264249145985, + 0.010734081268310547, + -0.05736584588885307, + 0.07717499881982803, + -0.04156827926635742, + 0.050741758197546005, + 0.009496291168034077, + -0.05052731931209564, + 0.07387974113225937, + -0.07657406479120255, + -0.029937641695141792, + 0.0009282694081775844, + 0.004082947038114071, + -0.009131028316915035, + -0.1405511051416397, + -0.08163957297801971, + -0.03237618878483772, + 0.028296437114477158, + 0.02529996447265148, + 0.010123511776328087, + -0.045944780111312866, + 0.05241691321134567, + -0.014806229621171951, + -0.012061254121363163, + -0.03748270124197006, + -0.01724475622177124, + 0.0789281353354454, + 0.0010627924930304289, + 0.07117003202438354, + -0.012801660224795341, + -0.05105182155966759, + 0.01096391398459673, + -0.047229573130607605, + -0.0021756934002041817, + -0.021762147545814514, + -0.0540623664855957, + -0.024946562945842743, + -0.01651192270219326, + -0.006704273167997599, + 0.049495309591293335, + 0.04131310433149338, + -0.02621489204466343, + -0.03788664564490318, + -0.13133397698402405, + -0.0458575077354908, + 0.02930455096065998, + 0.06827240437269211, + 0.038845885545015335, + 0.08079657703638077, + 0.019837450236082077, + -0.12274683266878128, + -0.0391695573925972, + 0.03629448264837265, + -0.06467718631029129, + 0.05002368614077568, + -0.07928014546632767, + 0.03760698065161705, + -0.06768743693828583, + 0.0181584432721138, + 0.021805772557854652, + -0.0011556883109733462, + -0.09611790627241135, + 0.0791810005903244, + 0.03586035594344139, + 0.011204974725842476, + 0.12282873690128326, + -0.03040039725601673, + -0.0565449520945549, + -0.06578061729669571, + 0.005627897102385759, + -0.02735927700996399, + -0.0393918938934803, + 0.026701942086219788, + 0.006848037242889404, + -0.05896184593439102, + 0.013230771757662296, + -0.08660212904214859, + -0.017139844596385956, + -0.03921527788043022, + -0.07083486765623093, + 0.010221133939921856, + 0.10965419560670853, + 0.030706536024808884, + 0.05440879240632057, + -0.00610698526725173, + -0.0892580896615982, + -0.11535446345806122, + -0.04666630178689957, + -0.0020352904684841633, + 0.001716751605272293, + -2.8338283327036068e-33, + 0.04178805276751518, + 7.299958815565333e-05, + -0.010642940178513527, + 0.06585328280925751, + -0.010252505540847778, + 0.01918676309287548, + -0.01990855671465397, + -0.04781268164515495, + 0.01746094785630703, + 0.04168211296200752, + 0.029260996729135513, + 0.037760693579912186, + -0.015281650237739086, + 0.08189423382282257, + 0.09779782593250275, + -0.16149333119392395, + 0.08182573318481445, + -0.027778593823313713, + -0.10685856640338898, + -0.030308324843645096, + -0.04763979837298393, + -0.048018403351306915, + -0.08405109494924545, + 0.04680174961686134, + 0.018918903544545174, + 0.0501338467001915, + 0.045601602643728256, + -0.03547698259353638, + -0.08160579204559326, + 0.04365142062306404, + 0.04751851409673691, + 0.036311425268650055, + -0.019444288685917854, + 0.02596890740096569, + 0.010102507658302784, + -0.06040859594941139, + 0.004830199759453535, + -0.02419429086148739, + -0.034003473818302155, + -0.026426468044519424, + -0.005906226579099894, + -0.0695401206612587, + -0.04680798202753067, + 0.0248323455452919, + -0.05386877804994583, + -0.005198294762521982, + -0.017498953267931938, + 0.04326457902789116, + -0.02140955440700054, + 0.009148765355348587, + -0.005938039161264896, + 0.04790610820055008, + 0.04496981203556061, + 0.012901564128696918, + -0.0012462810846045613, + -0.04544606804847717, + 0.002806062111631036, + 0.03905525803565979, + -0.0256844200193882, + 0.03636053577065468, + 0.016890937462449074, + 0.07212186604738235, + 0.02046048454940319, + 0.03514024242758751, + 0.012848501093685627, + 0.09666787832975388, + -0.03170909732580185, + -0.05905395746231079, + 0.03612407669425011, + -0.0017206494230777025, + 0.004318684805184603, + -0.00030277090263552964, + 0.09705335646867752, + 0.041459210216999054, + 0.02125471830368042, + 0.056933190673589706, + -0.03181542828679085, + -0.0366935059428215, + 0.04775379225611687, + -0.021575437858700752, + 0.01871868036687374, + 0.03261343762278557, + -0.032892148941755295, + -0.03775494545698166, + 0.03413189575076103, + -0.033953528851270676, + 0.0199130866676569, + -0.09797191619873047, + 0.004804942291229963, + 0.04114239290356636, + -0.10578083992004395, + 0.004032508470118046, + 0.060480996966362, + 0.06451015174388885, + -0.1123962551355362, + 1.2298591278378951e-33, + 0.03993203118443489, + 0.013611146248877048, + 0.04899337515234947, + 0.03657853603363037, + 0.05270032584667206, + 0.04660618305206299, + 0.005489336792379618, + 0.008600936271250248, + 0.008894399739801884, + 0.04931752383708954, + 0.04662981256842613, + 0.02398715168237686, + -0.045062001794576645, + 0.0134620675817132, + 0.029556570574641228, + 0.049868907779455185, + -0.002737281611189246, + -0.050653357058763504, + 0.0051108538173139095, + 0.04433783143758774, + 0.034024860709905624, + -0.02110893651843071, + -0.12541987001895905, + 0.04537680745124817, + -0.005782943684607744, + 0.022419478744268417, + -0.006421426311135292, + -0.05007348209619522, + -0.037901848554611206, + 0.06331141293048859, + -0.07735341787338257, + -0.05889033526182175, + 0.050066422671079636, + 0.03471169248223305, + -0.05374966934323311, + 0.020216748118400574, + 0.09936631470918655, + 0.014631909318268299, + -0.009877689182758331, + -0.07318947464227676, + 0.017334982752799988, + -0.011231665499508381, + 0.04386089742183685, + 0.029890205711126328, + -0.017452113330364227, + -0.10721297562122345, + 0.018652047961950302, + 0.017665456980466843, + -0.1626560539007187, + 0.07537449151277542, + -0.015569023787975311, + 0.09154115617275238, + 0.0813879668712616, + 0.052230354398489, + -0.04597548767924309, + 0.009370008483529091, + -0.05664058402180672, + -0.04003145918250084, + -0.0015865979949012399, + 0.02295936830341816, + -0.0031217795331031084, + -0.05759083107113838, + 0.011980334296822548, + 0.04295683652162552, + 0.036494847387075424, + -0.030077090486884117, + 0.05741622671484947, + -0.0856080874800682, + -0.058912936598062515, + 0.024561122059822083, + 0.032030098140239716, + 0.04496607556939125, + 0.061792146414518356, + -0.039331790059804916, + 0.06766879558563232, + -0.04070361703634262, + 0.07416588813066483, + -0.06068497896194458, + -0.007036078255623579, + 0.07888413220643997, + 0.026424115523695946, + 0.020186252892017365, + 0.03089989721775055, + 0.027216464281082153, + 0.005323357880115509, + 0.030068619176745415, + -0.017889106646180153, + 0.059540700167417526, + 0.012590537779033184, + -0.047360993921756744, + 0.02423468604683876, + 0.021869968622922897, + -0.04449343681335449, + 0.0848885029554367, + 0.011234729550778866, + -2.1569814379063246e-08, + 0.029763394966721535, + -0.044962529093027115, + -0.0011278610909357667, + -0.05402861163020134, + 0.10770717263221741, + -0.014798609539866447, + -0.013930411078035831, + -0.05079064518213272, + -0.10160963237285614, + -0.039874445647001266, + 0.10349906235933304, + 0.0407911092042923, + -0.11087267100811005, + -0.01329073403030634, + 0.045779552310705185, + 0.01753285713493824, + -0.006513571832329035, + 0.14621353149414062, + -0.0393567755818367, + -0.0582309328019619, + 0.010585421696305275, + 0.022458340972661972, + 0.13599123060703278, + -0.049649350345134735, + -0.0322476327419281, + -0.02276664972305298, + -0.06170226261019707, + 0.03323657438158989, + 0.01612633839249611, + 0.01915120892226696, + 0.024276625365018845, + 0.08448591083288193, + 0.07343082129955292, + -0.03432522714138031, + -0.0239863358438015, + -0.027616040781140327, + -0.0350869745016098, + 0.059701718389987946, + 0.01143591571599245, + 0.11647188663482666, + 0.014931783080101013, + -0.019468285143375397, + 0.013653448782861233, + 0.012452431954443455, + -0.023706534877419472, + 0.05192505195736885, + -0.05367714911699295, + 0.007213626988232136, + -0.08193843066692352, + -0.03446066379547119, + -0.019969750195741653, + 0.03455096110701561, + 0.053774643689394, + 0.06376565247774124, + -0.06750103831291199, + 0.02053755521774292, + 0.06441011279821396, + 0.037157997488975525, + -0.05869090557098389, + 0.07192127406597137, + 0.05048545077443123, + -0.00993023905903101, + 0.018417583778500557, + -0.014660222455859184 + ], + "circles-four-bold||round,shapes,polygons,4": [ + 0.12410591542720795, + 0.04842349514365196, + -0.0633016973733902, + 0.04063277691602707, + 0.0116492360830307, + -0.06009388715028763, + 0.06274839490652084, + -0.026283295825123787, + -0.00020731071708723903, + -0.04363557696342468, + -0.043325766921043396, + -0.0486200712621212, + 0.03261936083436012, + -0.015300297178328037, + 0.0020280068274587393, + -0.009587149135768414, + -0.033513717353343964, + -0.0008559825364500284, + -0.02761637605726719, + -0.0072133950889110565, + -0.034198518842458725, + -0.0850035771727562, + 0.025273343548178673, + 0.08827246725559235, + 0.012580808252096176, + 0.039074841886758804, + 0.052903495728969574, + -0.04498555138707161, + 0.00528356246650219, + -0.07784266024827957, + -0.04446319490671158, + 0.05762173980474472, + 0.061256490647792816, + -0.04048271104693413, + -0.022582726553082466, + -0.026086390018463135, + -0.03127110004425049, + 0.06338918209075928, + 0.05033782497048378, + 0.06286772340536118, + 0.051588427275419235, + -0.04867555573582649, + 0.09782691299915314, + 0.025573432445526123, + -0.06532369554042816, + 0.060842305421829224, + -0.12769685685634613, + 0.02794460766017437, + 0.02884974330663681, + -0.04324515163898468, + -0.009446030482649803, + -0.11743760854005814, + -0.15556736290454865, + 0.015554663725197315, + 0.005881185177713633, + -0.024717798456549644, + -0.08427751064300537, + -0.030731573700904846, + 0.03497866168618202, + -0.0290579404681921, + 0.09356045722961426, + -0.03734134882688522, + 0.04227817431092262, + 0.058506060391664505, + -0.04700835421681404, + 0.07556380331516266, + 0.017963994294404984, + -0.014580749906599522, + -0.029825353994965553, + -0.034306012094020844, + 0.01806604489684105, + 0.10991771519184113, + -0.05195767059922218, + -0.07835038006305695, + 0.037750210613012314, + -0.026140939444303513, + -0.02852577343583107, + -0.004731793887913227, + -0.05412366986274719, + -0.08393067866563797, + -0.08120937645435333, + 0.002228241879492998, + 0.010615780018270016, + -0.00844486616551876, + -0.030956747010350227, + 0.08981429785490036, + -0.040413420647382736, + -0.1577903777360916, + -0.012688587419688702, + -0.004597388673573732, + -0.05575032904744148, + 0.05876607447862625, + -0.03560760244727135, + 0.011133230291306973, + -0.11752383410930634, + 0.01731340028345585, + 0.05013081431388855, + -0.033915866166353226, + 0.0024439101107418537, + 0.06325288861989975, + 0.08146611601114273, + -0.023127786815166473, + 0.024237658828496933, + -0.08190800994634628, + -0.008573551662266254, + -0.013420102186501026, + 0.039033472537994385, + -0.04393012821674347, + 0.03186018392443657, + 0.07321321964263916, + -0.032425347715616226, + -0.06446046382188797, + 0.024111857637763023, + -0.05699377879500389, + -0.05056776851415634, + 0.00918428972363472, + -0.07124284654855728, + -0.023758631199598312, + 0.025711024180054665, + 0.03575015440583229, + -0.014553118497133255, + 0.004106764215976, + 0.009332085959613323, + -0.03717028349637985, + 0.01978974975645542, + 0.029552126303315163, + -0.03952765837311745, + -2.4800150023526602e-33, + 0.01724868454039097, + 0.04140876978635788, + 0.02746916562318802, + 0.06719691306352615, + -0.014940330758690834, + -0.07663137465715408, + 0.058943796902894974, + -0.12609311938285828, + 0.026072807610034943, + 0.022270889952778816, + -0.04378140717744827, + 0.04370404779911041, + 0.021691465750336647, + 0.008942917920649052, + 0.1209736168384552, + -0.06899602711200714, + 0.09932801127433777, + -0.027942948043346405, + -0.07081317156553268, + -0.007952946238219738, + -0.04643925651907921, + 0.058367062360048294, + -0.06417354196310043, + -0.016485925763845444, + -0.018506789579987526, + 0.033177342265844345, + 0.025152122601866722, + 0.01307798083871603, + -0.018034012988209724, + 0.05726643279194832, + -2.1309078874764964e-05, + 0.05059598386287689, + -0.013234726153314114, + 0.06070356070995331, + 0.01716858148574829, + 0.03178386390209198, + -0.040385130792856216, + 0.0022662312258034945, + 0.04675944522023201, + -0.02237892709672451, + -0.0482882596552372, + -0.06092396751046181, + -0.015563835389912128, + -0.007754427846521139, + 0.06612919270992279, + 0.11971048265695572, + -0.018089348450303078, + -0.04394449293613434, + 0.004560826346278191, + 0.007282753940671682, + -0.027029432356357574, + 0.02806834504008293, + 0.012130120769143105, + 0.004091012757271528, + -0.019881315529346466, + -0.059581220149993896, + -0.050860121846199036, + 0.021230580285191536, + -0.05988103896379471, + 0.04373463988304138, + 0.047632478177547455, + 0.06747977435588837, + -0.050421375781297684, + -0.05308732017874718, + -0.06662669032812119, + 0.005972153041511774, + -0.07948082685470581, + -0.05620313808321953, + 0.02633003331720829, + -0.02724536880850792, + 0.049058832228183746, + 0.04139474034309387, + 0.05368852987885475, + 0.046939000487327576, + -0.0018049046630039811, + 0.0580376461148262, + -0.00013505762035492808, + 0.022001734003424644, + 0.019320474937558174, + -0.022307435050606728, + -0.038642995059490204, + 0.055226415395736694, + -0.05112534388899803, + -0.013043428771197796, + 0.012332561425864697, + -0.014777746051549911, + 0.09120120853185654, + -0.007156506646424532, + 0.02918129786849022, + 0.020830053836107254, + -0.10262401401996613, + 0.013166007585823536, + 0.08734328299760818, + 0.019760798662900925, + -0.11477654427289963, + -2.254003759628265e-34, + -0.030284715816378593, + 0.0489615760743618, + -0.06710684299468994, + 0.006751182023435831, + -0.019823258742690086, + 0.054369259625673294, + 0.008253835141658783, + -0.004767303355038166, + -0.02843310311436653, + 0.03175444155931473, + 0.01605083979666233, + -0.031060464680194855, + -0.07243409007787704, + -0.039649687707424164, + 0.005404983647167683, + -0.012060959823429585, + 0.011879379861056805, + -0.031724367290735245, + -0.05912284180521965, + -0.018925121054053307, + -0.0479535311460495, + -0.006638579536229372, + -0.08246859908103943, + 0.03622768819332123, + -0.03807888552546501, + 0.052429694682359695, + 0.03787854686379433, + -0.11724846065044403, + -0.03831641748547554, + 0.05846827104687691, + -0.07436660677194595, + -0.12540225684642792, + 0.0651431530714035, + 0.10762479901313782, + -0.04411199316382408, + -0.10208038240671158, + 0.08795909583568573, + -0.06937634199857712, + -0.0023818165063858032, + -0.03404869884252548, + 0.012001636438071728, + -0.008047128096222878, + 0.056035056710243225, + 0.11438769102096558, + -0.019494114443659782, + -0.0838303491473198, + 0.05082394555211067, + 0.02259848453104496, + -0.07800896465778351, + 0.052370235323905945, + 0.0002783795935101807, + -0.042690303176641464, + 0.03469356149435043, + -0.025666095316410065, + -0.008563910610973835, + -0.01711408421397209, + -0.0052988892421126366, + 0.03262161463499069, + 0.004280287306755781, + 0.062332648783922195, + -0.09730366617441177, + -0.04730575159192085, + 0.029555343091487885, + 0.10711993277072906, + 0.04153609275817871, + -0.02122385799884796, + 0.005025165155529976, + -0.03365293890237808, + -0.04707083851099014, + 0.03768455237150192, + 0.03321545943617821, + 0.051817819476127625, + -0.02828851528465748, + 0.022638041526079178, + 0.04217880219221115, + 0.007561715319752693, + 0.007853835821151733, + 0.001761897001415491, + -0.03893886134028435, + 0.08568579703569412, + -0.06087220460176468, + -0.037785403430461884, + 0.02453332208096981, + 0.00491665443405509, + -0.02802986279129982, + -0.02792876772582531, + 0.029010500758886337, + 0.030152589082717896, + 0.036471668630838394, + 0.01989646442234516, + 0.0065267751924693584, + 0.07107476890087128, + 0.06551311910152435, + 0.05146893486380577, + 0.05299318581819534, + -1.887773848352481e-08, + 0.027688205242156982, + -0.022256890311837196, + -0.03716488927602768, + 0.015294075012207031, + 0.010533544234931469, + -0.031157132238149643, + -0.01815427653491497, + -0.04122807830572128, + -0.09126264601945877, + -0.01422031782567501, + 0.05030978471040726, + 0.06927748024463654, + -0.10906308144330978, + 0.004514450207352638, + 0.030498133972287178, + -0.007819431833922863, + 0.0005923188291490078, + 0.07578522711992264, + -0.013373881578445435, + -0.0473940335214138, + 0.013958819210529327, + -0.01695098914206028, + 0.012247912585735321, + -0.00829338375478983, + 0.03995173051953316, + 0.02974669635295868, + -0.01596008986234665, + 0.030263682827353477, + -0.008290959522128105, + 0.017311319708824158, + 0.030765878036618233, + 0.03706546500325203, + 0.002096467651426792, + -0.02166687697172165, + -0.058547280728816986, + -0.09337032586336136, + -0.042740099132061005, + 0.03883995860815048, + -0.03462865948677063, + 0.1266908198595047, + -0.014576326124370098, + -0.016878215596079826, + 0.035264525562524796, + -0.04749800264835358, + 0.02712969295680523, + 0.07940412312746048, + 0.001684330403804779, + -0.01642211340367794, + -0.03820480778813362, + -0.04564842954277992, + -0.1258946806192398, + 0.024000201374292374, + 0.079343780875206, + 0.09530844539403915, + -0.01599237322807312, + -0.07042089104652405, + 0.07302916049957275, + 0.07785212993621826, + -0.023409098386764526, + 0.014159691520035267, + 0.06707722693681717, + 0.06517298519611359, + 0.042390257120132446, + 0.018906911835074425 + ], + "circles-three-bold||round,shapes,polygons,3,asana": [ + 0.044379349797964096, + 0.00743787782266736, + -0.0875229686498642, + 0.04991072416305542, + 0.023978542536497116, + -0.07502687722444534, + 0.049650464206933975, + -0.055219732224941254, + 0.01786077208817005, + -0.054190006107091904, + -0.0249340683221817, + -0.10628645122051239, + 0.0043255663476884365, + -0.02547108754515648, + 0.03742697462439537, + -0.007558110170066357, + -0.050042685121297836, + -0.009938879869878292, + 0.0015911419177427888, + 0.024277230724692345, + 0.004918897524476051, + -0.03315519168972969, + 0.06355993449687958, + 0.11200976371765137, + 0.03469717875123024, + 0.047778934240341187, + 0.07107358425855637, + -0.044557783752679825, + -0.009423933923244476, + -0.10284571349620819, + -0.07550796866416931, + 0.027222270146012306, + 0.06066763401031494, + -0.03370943292975426, + -0.012509246356785297, + -0.06292042136192322, + -0.06550745666027069, + 0.03553337603807449, + 0.0380852185189724, + 0.06624890118837357, + 0.030382324010133743, + -0.020622210577130318, + 0.09318916499614716, + -0.029278215020895004, + -0.049930498003959656, + 0.017907271161675453, + -0.16183754801750183, + 0.015889182686805725, + 0.04857325926423073, + -0.016205554828047752, + -0.027769137173891068, + -0.14494161307811737, + -0.16882552206516266, + 0.019388381391763687, + 0.021331962198019028, + -0.006968274712562561, + -0.0622674785554409, + -0.03388974070549011, + 0.02693633921444416, + -0.014263871125876904, + 0.07826968282461166, + -0.011832881718873978, + 0.04376998171210289, + 0.026899630203843117, + -0.0034831336233764887, + 0.05648527666926384, + -0.008416378870606422, + -0.0494084507226944, + -0.025659434497356415, + -0.024813242256641388, + -0.011308351531624794, + 0.07186470925807953, + -0.056139081716537476, + -0.05600453540682793, + 0.0494726188480854, + -0.015851052477955818, + 0.010045801289379597, + -0.005113350693136454, + -0.05557756870985031, + -0.08520466089248657, + -0.10175824165344238, + -0.004204995930194855, + -0.0009801628766581416, + 0.0643906518816948, + -0.021808523684740067, + 0.07583045959472656, + -0.057881880551576614, + -0.10876349359750748, + 0.007963797077536583, + -0.028623884543776512, + -0.06777558475732803, + 0.07461654394865036, + -0.04111187532544136, + 0.014749971218407154, + -0.08400655537843704, + 0.02604014240205288, + 0.033538274466991425, + 0.01067009661346674, + -0.040246885269880295, + 0.06698746979236603, + 0.1037740558385849, + 0.007864844053983688, + 0.023570993915200233, + -0.08651525527238846, + -0.03271957114338875, + 0.017270877957344055, + 0.038141537457704544, + -0.06735513359308243, + 0.03285353258252144, + 0.08823162317276001, + -0.03716922178864479, + -0.08525631576776505, + 0.008901180699467659, + -0.09838302433490753, + -0.0881887823343277, + 0.03355545923113823, + -0.059617914259433746, + -0.038017213344573975, + 0.06408458203077316, + 0.04956689849495888, + -0.005254456773400307, + -0.019299667328596115, + 0.003753913100808859, + -0.022385302931070328, + 0.023977838456630707, + 0.02245439775288105, + -0.04129231721162796, + -2.029848787787711e-33, + -0.015884114429354668, + 0.013453672640025616, + -0.022069629281759262, + 0.06420382857322693, + -0.005225541535764933, + -0.05640978738665581, + 0.04881009832024574, + -0.13210055232048035, + 0.05000060424208641, + -0.022352978587150574, + -0.05245552211999893, + 0.05435310676693916, + 0.020265094935894012, + -0.013204989023506641, + 0.10010308772325516, + -0.09520737081766129, + 0.07350877672433853, + -0.05034854635596275, + -0.09680420160293579, + -0.007163731846958399, + -0.001352066290564835, + 0.045467205345630646, + -0.07049338519573212, + -0.031234893947839737, + -0.020462024956941605, + -0.01151502039283514, + 0.003799159312620759, + 0.04865998029708862, + -0.03802576661109924, + 0.05106206610798836, + 0.054345522075891495, + -0.007688605692237616, + -0.01339704915881157, + 0.07573875039815903, + -0.010730210691690445, + 0.030799759551882744, + -0.04221213981509209, + -0.01688595488667488, + 0.01965552382171154, + 0.015275618061423302, + -0.013401872478425503, + -0.018301676958799362, + 0.014256001450121403, + 0.029727725312113762, + 0.030301092192530632, + 0.12193116545677185, + 0.01412989478558302, + 0.01992759108543396, + 0.04169471189379692, + -0.018175028264522552, + -0.041751522570848465, + 0.04160744696855545, + 0.009763814508914948, + 0.0023123319260776043, + -0.0017011452000588179, + -0.04864071309566498, + -0.055520303547382355, + 0.03528331592679024, + -0.04094429686665535, + 0.03181958571076393, + 0.023198645561933517, + 0.03067721612751484, + -0.014604952186346054, + -0.029476908966898918, + -0.11215389519929886, + 0.04867677018046379, + -0.10707467049360275, + 0.0069260611198842525, + 0.08498430252075195, + -0.03598930686712265, + 0.028292307630181313, + 0.056577667593955994, + 0.041353628039360046, + 0.0953294038772583, + -0.022759975865483284, + 0.04646654427051544, + -0.015919767320156097, + 0.022260747849941254, + 0.013044779188930988, + -0.022975971922278404, + -0.03183116391301155, + 0.013295941986143589, + -0.02563490904867649, + 0.00042121976730413735, + -0.0211977306753397, + 0.007075120694935322, + 0.07642243802547455, + -0.018748773261904716, + -0.005112685728818178, + -6.60008008708246e-05, + -0.04038199782371521, + 0.0458916611969471, + 0.08900803327560425, + 0.004995841067284346, + -0.10074115544557571, + -4.359513195388904e-34, + -0.008966216817498207, + 0.016560273244976997, + -0.06425457447767258, + -0.055535852909088135, + -0.009318497031927109, + 0.035313352942466736, + -0.008176086470484734, + 0.0064702522940933704, + -0.038914620876312256, + -0.012872993014752865, + -0.006897238083183765, + -0.010214672423899174, + -0.04331342130899429, + -0.09191630035638809, + 0.013064172118902206, + -0.03311662748456001, + 0.07372724264860153, + -0.02355041168630123, + -0.031156042590737343, + -0.030440686270594597, + -0.0054166135378181934, + -0.005361642222851515, + -0.1254872828722, + 0.014710360206663609, + -0.07102952897548676, + 0.07562743872404099, + -0.019582930952310562, + -0.1113482117652893, + -0.05035843327641487, + 0.0732916072010994, + -0.06768430769443512, + -0.12359146773815155, + 0.0518307201564312, + 0.09364346414804459, + -0.03650815412402153, + -0.0858326256275177, + 0.10368739068508148, + -0.08335906267166138, + -0.017829682677984238, + -0.03695496544241905, + 0.008936548605561256, + -0.02036520093679428, + 0.024307897314429283, + 0.11079110205173492, + 0.007608610205352306, + -0.007208806928247213, + 0.0478379987180233, + 0.007898284122347832, + -0.0806693285703659, + 0.03668738901615143, + -0.01082741841673851, + -0.107428640127182, + 0.09087038785219193, + -0.020072955638170242, + 0.00046044832561165094, + 0.01720522902905941, + 0.01447402685880661, + 0.01652253419160843, + 0.05285707861185074, + 0.054024457931518555, + -0.036906156688928604, + 0.014349873177707195, + 0.0317789688706398, + 0.09649214148521423, + 0.02354709804058075, + 0.00595061993226409, + 0.017882391810417175, + -0.04313909262418747, + -0.010396844707429409, + 0.04757178574800491, + 0.008052119053900242, + 0.07441481202840805, + -0.039630163460969925, + 0.0019475130829960108, + 0.0023892163299024105, + -0.0007229545153677464, + 0.03085750713944435, + 0.032924190163612366, + -0.027403267100453377, + 0.04033147171139717, + -0.012768401764333248, + -0.04735893756151199, + 0.008857491426169872, + 0.03382982313632965, + 0.006646950263530016, + 0.008938925340771675, + 0.03344964236021042, + 0.0004431839915923774, + 0.00571682071313262, + 0.039530545473098755, + -0.026893697679042816, + 0.06373904645442963, + 0.02772548794746399, + 0.06874816864728928, + 0.06452824920415878, + -1.9981110099820398e-08, + 0.02882993593811989, + -0.0327007882297039, + -0.042916931211948395, + 0.011421390809118748, + 0.03572683408856392, + -0.007218610495328903, + -0.019319726154208183, + -0.0241383109241724, + -0.07618708163499832, + 0.0034990536514669657, + 0.03937425836920738, + 0.055894482880830765, + -0.07866019010543823, + 0.004557380918413401, + 0.034206606447696686, + -0.025729797780513763, + 0.043294019997119904, + 0.11158355325460434, + -0.0010864530922845006, + -0.07175172865390778, + 0.013556278310716152, + -0.01201227679848671, + 0.05590448155999184, + -0.03158364072442055, + 0.05008574575185776, + 0.051794979721307755, + -0.04574839025735855, + 0.04479673504829407, + -0.004396398551762104, + 0.025728989392518997, + -0.008491795510053635, + 0.027021458372473717, + 0.03528520464897156, + -0.00027846702141687274, + -0.04733676463365555, + -0.06084384396672249, + -0.04595326632261276, + 0.01115919928997755, + -0.05098429694771767, + 0.09510614722967148, + 0.010778344236314297, + 0.011804057285189629, + 0.03432624787092209, + -0.05405256897211075, + 0.07927342504262924, + 0.038530297577381134, + 0.033173467963933945, + -0.006832079496234655, + -0.03185642510652542, + -0.08404752612113953, + -0.07550141960382462, + -0.019139958545565605, + 0.07376178354024887, + 0.10504410415887833, + -0.022985607385635376, + -0.08510686457157135, + 0.023720843717455864, + 0.0544031597673893, + -0.02981709875166416, + 0.0662214607000351, + 0.0681292787194252, + 0.03509155288338661, + 0.037676870822906494, + 0.031295619904994965 + ], + "circles-three-plus-bold||round,shapes,polygons,3,+": [ + 0.06154787912964821, + 0.007929547689855099, + -0.09454414993524551, + 0.03516681492328644, + 0.04548943042755127, + -0.05768565461039543, + 0.04872215911746025, + -0.049904417246580124, + 0.03024670109152794, + -0.03985321521759033, + -0.0347064733505249, + -0.060031116008758545, + 0.016254989430308342, + -0.024162016808986664, + 0.05498626083135605, + -0.05750104784965515, + -0.04891582950949669, + 0.011628338135778904, + 0.010791010223329067, + -0.03010423481464386, + -0.010571971535682678, + -0.0735730454325676, + 0.060015272349119186, + 0.10759089887142181, + 0.053020622581243515, + 0.05411263555288315, + 0.046956006437540054, + -0.026407713070511818, + 0.015427084639668465, + -0.06367572396993637, + -0.08418150246143341, + 0.03649964556097984, + 0.07658571749925613, + -0.053437426686286926, + -0.012628225609660149, + -0.048631321638822556, + -0.09371090680360794, + 0.06686895340681076, + 0.02010236866772175, + 0.045689232647418976, + 0.022997315973043442, + -0.04268176853656769, + 0.10766977816820145, + -0.004734360612928867, + -0.07487913221120834, + 0.03691650927066803, + -0.18454208970069885, + 0.02248656004667282, + 0.024874528869986534, + -0.030156351625919342, + 0.006805004086345434, + -0.11563561856746674, + -0.15852691233158112, + 0.03252260386943817, + 0.02325502783060074, + -0.03512386977672577, + -0.07103467732667923, + -0.012104833498597145, + 0.02502160146832466, + -0.06353256851434708, + 0.06150719150900841, + -0.02325425297021866, + 0.04924609512090683, + 0.030444806441664696, + -0.014209384098649025, + 0.052306048572063446, + -0.026364892721176147, + -0.03246351331472397, + -0.01638629101216793, + 0.007814023643732071, + 0.0031849797815084457, + 0.09983068704605103, + -0.053529657423496246, + -0.07285469025373459, + 0.046809516847133636, + 0.013703257776796818, + -0.006229037418961525, + 0.005589928012341261, + -0.06423749774694443, + -0.07975594699382782, + -0.07540411502122879, + 0.01354463305324316, + 0.01735025830566883, + 0.07693155109882355, + 0.00032102622208185494, + 0.07647491991519928, + -0.05345511808991432, + -0.1203782930970192, + -0.023897184059023857, + 0.0012100770836696029, + -0.07154227793216705, + 0.07493788748979568, + -0.04530230164527893, + 0.030199337750673294, + -0.11165964603424072, + 0.014855913817882538, + 0.03966963663697243, + -0.007531111128628254, + -0.03917355090379715, + 0.0625533014535904, + 0.10153305530548096, + -0.009546571411192417, + 0.07815927267074585, + -0.05585126206278801, + 0.0008071755291894078, + 0.011005320586264133, + 0.006596819031983614, + -0.04375724494457245, + 0.02680448815226555, + 0.0763549953699112, + -0.03431723639369011, + -0.0746157169342041, + 0.026164138689637184, + -0.09147120267152786, + -0.08519567549228668, + 0.042622312903404236, + -0.0486951619386673, + -0.03213301673531532, + 0.09163053333759308, + 0.024736354127526283, + 0.04131225496530533, + -0.010472279042005539, + -0.007151816971600056, + -0.043661464005708694, + -0.018559198826551437, + 0.02611675299704075, + -0.042891982942819595, + -2.4055529453578378e-33, + -0.011146420612931252, + 0.027961449697613716, + -0.024645226076245308, + 0.07815477252006531, + -0.02375071495771408, + -0.03925145044922829, + 0.021501418203115463, + -0.120970219373703, + 0.03601952642202377, + 0.030260924249887466, + -0.04128120839595795, + 0.05772439017891884, + 0.03117983043193817, + 0.026092171669006348, + 0.12295041978359222, + -0.05515157803893089, + 0.0808197483420372, + -0.028274137526750565, + -0.08367552608251572, + -0.012455623596906662, + -0.004627019166946411, + 0.020183945074677467, + -0.0779460221529007, + -0.017127450555562973, + 0.00744839571416378, + 0.017223065719008446, + 0.01348783541470766, + 0.02842603251338005, + -0.02757849358022213, + 0.044241927564144135, + 0.050758760422468185, + 0.015616907738149166, + -0.018882302567362785, + 0.0730789303779602, + 0.007546078413724899, + 0.04925694689154625, + -0.04131216183304787, + -0.013380051590502262, + 0.046898774802684784, + 0.0012359871761873364, + -0.02447408251464367, + -0.05163935199379921, + -0.0068810563534498215, + -0.019093018025159836, + 0.06062069162726402, + 0.13632085919380188, + -0.0013219579122960567, + -0.045035842806100845, + -0.005143997725099325, + -0.011720547452569008, + -0.010398464277386665, + 0.018131006509065628, + 0.005160552449524403, + 0.012684163637459278, + -0.014560103416442871, + -0.031417589634656906, + -0.02316739782691002, + 0.05270994082093239, + -0.04787876829504967, + 0.031499456614255905, + 0.023675385862588882, + 0.0477679967880249, + 0.009800122119486332, + -0.03821882605552673, + -0.09563690423965454, + 0.044340405613183975, + -0.11233825981616974, + -0.019815707579255104, + 0.051726844161748886, + -0.02147510088980198, + -0.001364638563245535, + 0.06929782778024673, + 0.008023339323699474, + 0.07902400195598602, + 0.010034307837486267, + 0.025520214810967445, + -0.019740546122193336, + 0.014928262680768967, + 0.01811719313263893, + -0.016988275572657585, + -0.027828698977828026, + 0.022060807794332504, + -0.022375263273715973, + -0.013233667239546776, + -0.018374281004071236, + -0.0057385992258787155, + 0.04554349556565285, + -0.02349320612847805, + 0.020313674584031105, + -0.02412533201277256, + -0.06921916455030441, + 0.028304249048233032, + 0.09059907495975494, + 0.0485403910279274, + -0.12643113732337952, + 1.4936440779653734e-35, + -0.06151283532381058, + 0.02207813411951065, + -0.06979382783174515, + -0.03163466602563858, + -0.026549609377980232, + 0.051078446209430695, + -0.001201451406814158, + -0.01288379356265068, + -0.026716815307736397, + 0.0064031388610601425, + 8.404829713981599e-05, + 0.0011418246431276202, + -0.07176069915294647, + -0.06037333607673645, + 0.006660555023699999, + -0.03099367395043373, + 0.010943030938506126, + -0.01772194728255272, + -0.04220166057348251, + -0.013830583542585373, + -0.016034463420510292, + -0.023251257836818695, + -0.10605881363153458, + 0.040477391332387924, + -0.07171453535556793, + 0.07368431985378265, + -0.023494752123951912, + -0.11229358613491058, + -0.025503739714622498, + 0.053455058485269547, + -0.06946246325969696, + -0.10083109885454178, + 0.052132125943899155, + 0.07609911262989044, + -0.03675848990678787, + -0.1053888127207756, + 0.07758043706417084, + -0.08748148381710052, + 0.001040928764268756, + -0.022085973992943764, + 0.0033364358823746443, + -0.04428178817033768, + 0.061018895357847214, + 0.11622445285320282, + -0.001012322842143476, + -0.030122028663754463, + 0.07715311646461487, + -0.01015855185687542, + -0.09724800288677216, + 0.05166429653763771, + -0.02536061219871044, + -0.057105034589767456, + 0.04411352425813675, + 0.0009532253607176244, + 0.011466470547020435, + -0.005471542943269014, + 0.006548974197357893, + 0.027661187574267387, + 0.040157366544008255, + 0.0543549619615078, + -0.08109398931264877, + 0.0005758330808021128, + 0.016487952321767807, + 0.09873510152101517, + 0.012383626773953438, + 0.003433510195463896, + 0.020931301638484, + -0.0368100069463253, + -0.027038315311074257, + 0.04330641031265259, + 0.04520021751523018, + 0.0996989756822586, + -0.040313273668289185, + 0.026683587580919266, + -0.002853978890925646, + -0.0362403579056263, + 0.02205788344144821, + 0.05950639396905899, + 0.004981978330761194, + 0.05454150214791298, + -0.001553835580125451, + -0.025781620293855667, + 0.017542723566293716, + 0.05417315661907196, + -0.008956856094300747, + -0.02451140806078911, + -0.0012808905448764563, + 0.03777264431118965, + 0.0076679023914039135, + 0.017280999571084976, + -0.013268009759485722, + 0.09850947558879852, + 0.017671633511781693, + 0.04729615896940231, + 0.06255641579627991, + -1.9949334628677207e-08, + 0.017592595890164375, + -0.03343025967478752, + -0.06655080616474152, + -0.009236070327460766, + 0.038067009299993515, + -0.0236467607319355, + 0.0015599993057549, + -0.024518316611647606, + -0.09897498041391373, + 2.331269388378132e-05, + 0.03939833119511604, + 0.051590777933597565, + -0.08234075456857681, + -0.016647087410092354, + 0.015029888600111008, + 0.00029121339321136475, + 0.061938248574733734, + 0.07826564460992813, + -0.008286654017865658, + -0.034003131091594696, + 0.005951790604740381, + 0.016439780592918396, + 0.03717222064733505, + -0.029307939112186432, + 0.03410277143120766, + 0.02443559840321541, + -0.032388098537921906, + 0.01946457102894783, + -0.020620262250304222, + 0.03216336667537689, + 0.00861450470983982, + 0.04047218710184097, + 0.001251926994882524, + 0.02278217114508152, + -0.042169466614723206, + -0.03984183445572853, + -0.055863577872514725, + 0.035130973905324936, + -0.05195317417383194, + 0.09804141521453857, + -0.01837325468659401, + 0.005714897532016039, + 0.026157064363360405, + -0.06558388471603394, + 0.046149492263793945, + 0.05250634625554085, + 0.00905690435320139, + -0.02870042249560356, + -0.0773589089512825, + -0.07746723294258118, + -0.10270171612501144, + 0.005185513757169247, + 0.09226063638925552, + 0.09797447174787521, + -0.041805487126111984, + -0.09583403915166855, + 0.03005189076066017, + 0.0711088478565216, + -0.02190028317272663, + 0.04883178696036339, + 0.058576688170433044, + 0.014039278030395508, + 0.05581901594996452, + 0.026753362268209457 + ], + "circuitry-bold||processor,microchip,computer,circuit,electronics,motherboard": [ + -0.00907173566520214, + -0.026453522965312004, + -0.04160790145397186, + -0.004450897220522165, + 0.006280397530645132, + -0.04469454288482666, + 0.03574037179350853, + 0.02523043006658554, + -0.004771128762513399, + -0.014850153587758541, + 0.04145248234272003, + -0.018734805285930634, + 0.04913579300045967, + -0.04080231860280037, + -0.0518328957259655, + 0.04590779170393944, + -0.01702755317091942, + 0.023501884192228317, + 0.010730428621172905, + -0.009559215046465397, + 0.06815990805625916, + 0.048912256956100464, + -0.045447781682014465, + 0.010126116685569286, + 0.03208019956946373, + 0.07646357268095016, + 0.05502618849277496, + -0.006115914322435856, + -0.02721991576254368, + -0.09507396817207336, + -0.07594823092222214, + 0.018902357667684555, + 0.11424916237592697, + 0.03227556124329567, + 0.07782205939292908, + 0.03373418748378754, + 0.01655738241970539, + -0.05892207846045494, + 0.05547971650958061, + -0.004481341689825058, + -0.0031356385443359613, + -0.05365544185042381, + 0.0501469187438488, + 0.0711693987250328, + 0.036000460386276245, + 0.04552153870463371, + -0.014303641393780708, + -0.0795571580529213, + -0.039253443479537964, + -0.07109518349170685, + -0.03306203335523605, + -0.07281222194433212, + -0.055083978921175, + 0.05030452460050583, + -0.06610617786645889, + 0.01332347933202982, + -0.020613279193639755, + 0.002886874368414283, + 0.01750537008047104, + 0.006652457173913717, + -0.008013520389795303, + -0.04042675718665123, + 0.05389224365353584, + 0.05876949429512024, + 0.054452549666166306, + -0.00816587544977665, + 0.01643655262887478, + -0.0036097108386456966, + 0.016777148470282555, + -0.013902256265282631, + 0.049571722745895386, + -0.07090838998556137, + -0.03215289115905762, + 0.04507354274392128, + 0.0032682721503078938, + -0.021701905876398087, + 0.031598612666130066, + -0.004403216298669577, + 0.03125528246164322, + -0.0882665291428566, + -0.05318644270300865, + -0.1267498880624771, + -0.09927774220705032, + 0.010845111683011055, + 0.05891193076968193, + 0.015424937941133976, + -0.06164980307221413, + -0.07445918768644333, + -0.03786170482635498, + -0.11958003044128418, + -0.09320788830518723, + -0.04082253947854042, + 0.0659916028380394, + 2.2989115677773952e-05, + -0.04174254089593887, + -0.02923070825636387, + 0.029266970232129097, + -0.0388072207570076, + -0.019108109176158905, + 0.06345537304878235, + 0.009991424158215523, + 0.031974565237760544, + 0.04656380042433739, + 0.05920238420367241, + -0.052595850080251694, + -0.010291019454598427, + -0.02876846306025982, + 0.05720962584018707, + -0.006256564985960722, + -0.08184417337179184, + -0.03388373926281929, + 0.03878651186823845, + -0.10190063714981079, + -0.009895595721900463, + 0.03991199657320976, + -0.0803629606962204, + -0.02056567557156086, + 0.052304115146398544, + 0.13883759081363678, + 0.03546159714460373, + -0.03829517215490341, + -0.017523907124996185, + -0.04812081903219223, + -0.038267120718955994, + 0.021871913224458694, + -0.01622246578335762, + -0.012506014667451382, + -1.2199279454478738e-33, + 0.04740958288311958, + 0.05392511188983917, + -0.03255318105220795, + -0.00035567261511459947, + 0.014946214854717255, + 0.032694511115550995, + -0.026640109717845917, + -0.03854379802942276, + -0.006204234901815653, + 0.08534634113311768, + 0.09110449254512787, + 0.03875880688428879, + 0.03959759697318077, + 0.10737333446741104, + 0.11812806129455566, + -0.036082301288843155, + -0.04013030603528023, + -0.0555192269384861, + 0.042756713926792145, + -0.012027153745293617, + -0.022813308984041214, + 0.07832211256027222, + 0.01369578205049038, + 0.01856863684952259, + 0.03941980004310608, + -0.08483253419399261, + -0.03458091989159584, + -0.045023027807474136, + -0.06575577706098557, + -0.008918141014873981, + 0.024786638095974922, + 0.06927883625030518, + 0.02363871969282627, + -0.044955722987651825, + 0.009457427076995373, + 0.0485994890332222, + 0.05675273388624191, + -0.08644720166921616, + 0.06209271401166916, + -0.012632731348276138, + -0.09236633032560349, + -0.000448510138085112, + 0.02388915978372097, + -0.03579985722899437, + 0.052187614142894745, + 0.08589150011539459, + -0.0381387397646904, + 0.00038199356640689075, + 0.07060311734676361, + 0.02880382165312767, + -0.05606352165341377, + -0.03552968055009842, + 0.1676531881093979, + -0.010386167094111443, + 0.07954391092061996, + -0.004782297648489475, + -0.022111164405941963, + 0.07756692916154861, + 0.06321975588798523, + 0.11025840044021606, + -0.04806162044405937, + 0.05163886770606041, + -0.015555374324321747, + -0.01182425208389759, + -0.059946101158857346, + 0.13294045627117157, + -0.018200606107711792, + 0.015855157747864723, + 0.046780236065387726, + 0.0003028320206794888, + -0.04753516614437103, + 0.026622850447893143, + -0.00226960307918489, + -0.00016426625370513648, + -0.010023023933172226, + 0.037157509475946426, + -0.10854869335889816, + -0.0573432520031929, + -0.03144138306379318, + -0.05395326763391495, + -0.1080174446105957, + -0.0035755326971411705, + -0.08695325255393982, + 0.08739593625068665, + 0.021128172054886818, + 0.08353769034147263, + -0.03632008284330368, + -0.04142634943127632, + 0.05970701575279236, + 0.0632549449801445, + -0.03859298676252365, + 0.03481408208608627, + 0.014217271469533443, + 0.029111072421073914, + -0.07990103960037231, + -1.688820244198903e-33, + -0.02493337355554104, + -0.016647249460220337, + -0.05586540699005127, + 0.07548630982637405, + -0.016204319894313812, + -0.024274667724967003, + 0.011707884259521961, + -0.04878852143883705, + -0.02157716639339924, + -0.039652664214372635, + 0.04101840779185295, + 0.001568275736644864, + -0.043717898428440094, + -0.13789960741996765, + -0.022524138912558556, + 0.015385451726615429, + -0.06312896311283112, + 0.027868160977959633, + 0.0751662403345108, + 0.0551045760512352, + -0.0009307448635809124, + -0.014465191401541233, + -0.09092351794242859, + -0.007238335907459259, + 0.0511372946202755, + 0.05327752232551575, + -0.05180274695158005, + 0.012981961481273174, + 0.014564885757863522, + -0.02782689407467842, + -0.03685522451996803, + -0.01026348490267992, + 0.08339857310056686, + 0.08524347096681595, + -0.022605687379837036, + 0.03634406626224518, + 0.029124721884727478, + -0.010548126883804798, + 0.06987202912569046, + -0.0720222145318985, + 0.02679663524031639, + 0.017085090279579163, + -0.03377821296453476, + 0.08620253205299377, + -0.05508541315793991, + 0.017413627356290817, + -0.011494006961584091, + -0.05109532177448273, + -0.005926859565079212, + 0.0007820760365575552, + -0.005170134361833334, + -0.07563531398773193, + 0.026672232896089554, + -0.0417775996029377, + -0.033082813024520874, + -0.0401761531829834, + -0.006134677678346634, + 0.027006467804312706, + 0.04168165102601051, + -0.0031998653430491686, + 0.060404542833566666, + -0.036521416157484055, + 0.009677383117377758, + 0.01124870590865612, + -0.0006887782947160304, + -0.06633616238832474, + 0.059663787484169006, + 0.05039349943399429, + 0.03751073405146599, + -0.06048932299017906, + 0.03438734635710716, + 0.0049801841378211975, + 0.03775891289114952, + -0.027178611606359482, + -0.032009709626436234, + -0.03959786519408226, + -0.028483344241976738, + -0.01358071155846119, + -0.03176769241690636, + 0.042169030755758286, + 0.017871595919132233, + 0.04474823549389839, + -0.06662534177303314, + 0.016514400020241737, + -0.052626896649599075, + 0.008612661622464657, + 0.035624418407678604, + -0.013143490068614483, + 0.002733856439590454, + -0.08939916640520096, + -0.05583164840936661, + 0.039214737713336945, + 0.013898871839046478, + -0.030468842014670372, + -0.09824238717556, + -2.3944764393490914e-08, + 0.1028561145067215, + -0.04035250470042229, + -0.011652720160782337, + -0.06429056823253632, + 0.09948913007974625, + -0.11547987908124924, + 0.019878454506397247, + -0.08379193395376205, + -0.03646596521139145, + -0.018574563786387444, + 0.046786531805992126, + -0.005255900323390961, + -0.058619726449251175, + -0.03945928066968918, + 0.10900530219078064, + 0.045168761163949966, + -0.06828120350837708, + 0.04417235031723976, + -0.025172211229801178, + -0.005993882194161415, + -0.020655451342463493, + 0.03490021824836731, + 0.020329296588897705, + -0.003303224453702569, + 0.05639137700200081, + 0.030473846942186356, + 0.0005936151719652116, + -0.0015494581311941147, + 0.06975854188203812, + 0.09447697550058365, + 0.032182250171899796, + 0.01889876462519169, + 0.06068665161728859, + -0.007087604142725468, + 0.006508716847747564, + -0.03441460430622101, + -0.007787739858031273, + -0.027980510145425797, + 0.044437017291784286, + -0.009894690476357937, + -0.12273510545492172, + -0.11563948541879654, + -0.08221981674432755, + 0.030898073688149452, + 0.024409852921962738, + -0.047616101801395416, + -0.04998301714658737, + -0.021751459687948227, + -0.04876049607992172, + -0.044410187751054764, + -0.060895420610904694, + -0.012968609109520912, + 0.005301704164594412, + 0.07044019550085068, + -0.03166932612657547, + -0.004064206499606371, + -0.017155103385448456, + -0.013140149414539337, + -0.022918319329619408, + 0.007308914326131344, + 0.10137151926755905, + -0.013881713151931763, + 0.08952154964208603, + -0.07013268768787384 + ], + "city-bold||*new*,skyline,skyscrapers,places,locations,buildings": [ + 0.06754772365093231, + -0.037073519080877304, + -0.006180914584547281, + 0.056604404002428055, + 0.004852781537920237, + 0.010969280265271664, + -0.06589075922966003, + -0.05920843780040741, + -0.12292551249265671, + 0.012305798009037971, + 0.03567119315266609, + 0.006985404994338751, + -0.0029537403024733067, + -0.012137375771999359, + -0.03316168114542961, + 0.0599764846265316, + 0.09936629980802536, + 0.05592154338955879, + 0.03913038223981857, + 0.009743039496243, + 0.0038911141455173492, + -0.042799461632966995, + 0.031010529026389122, + 0.03894970193505287, + 0.07185447961091995, + 0.06591766327619553, + 0.011205212213099003, + 0.06464748829603195, + -0.009499701671302319, + -0.03426006808876991, + -0.027255162596702576, + 0.029253534972667694, + 0.13109882175922394, + 0.02356608211994171, + 0.07000097632408142, + 0.011344841681420803, + 0.026800479739904404, + -0.007749959360808134, + 0.002940862439572811, + 0.020782647654414177, + 0.0106664365157485, + -0.04144356772303581, + -0.019081776961684227, + 0.008546825498342514, + -0.02942841500043869, + -0.04098130390048027, + -0.021732088178396225, + -0.015792351216077805, + 0.051494449377059937, + -0.006739757023751736, + -0.031150976195931435, + -0.02963871881365776, + -0.10839105397462845, + -0.04935668408870697, + 0.0015447024488821626, + 0.06667990982532501, + -0.05522856488823891, + 0.005262729711830616, + 0.01741146482527256, + -0.02453473210334778, + 0.040708109736442566, + 0.003892917186021805, + -0.02281300164759159, + 0.046743739396333694, + 0.07783032953739166, + -0.0021041755098849535, + -0.05013078451156616, + 0.07711774110794067, + -0.017939455807209015, + -0.040454789996147156, + 0.05637625232338905, + -0.026263117790222168, + 0.004748568870127201, + -0.03477514162659645, + -0.016164248809218407, + -0.037215087562799454, + -0.005803683307021856, + -0.029401786625385284, + -0.07189010828733444, + -0.044478606432676315, + -0.007541967555880547, + -0.07101841270923615, + -0.0669628232717514, + 0.021152496337890625, + -0.010587326250970364, + 0.05007817596197128, + -0.06742603331804276, + -0.007242006249725819, + -0.012586837634444237, + -0.04169526696205139, + -0.04781007021665573, + -0.06051257625222206, + -0.06714793294668198, + 0.013099076226353645, + -0.08524267375469208, + 0.026161596179008484, + -0.028991878032684326, + -0.034284040331840515, + 0.007636898197233677, + 0.03701477125287056, + -0.005259947385638952, + 0.004297927487641573, + 0.04357149451971054, + 0.02589395083487034, + -0.025420473888516426, + -0.03539716452360153, + -0.03621205687522888, + -0.0036790315061807632, + -0.07525581121444702, + 0.0484725758433342, + 0.013598884455859661, + -0.06040745601058006, + -0.05247971788048744, + -0.050080906599760056, + -0.01219506748020649, + -0.0040878490544855595, + 0.006391735281795263, + -0.028606077656149864, + 0.04992963746190071, + 0.025237571448087692, + 0.0040993476286530495, + -0.07402674108743668, + -0.009317189455032349, + -0.025494152680039406, + -0.1026148796081543, + -0.02348962053656578, + -0.014264359138906002, + -3.391454383729891e-33, + 0.02236413024365902, + -0.007130522280931473, + -0.026588665321469307, + 0.1514737904071808, + 0.0015100936871021986, + -0.040265314280986786, + -0.0114729730412364, + -0.017137005925178528, + -0.0423034243285656, + 0.043601419776678085, + 0.09290225803852081, + 0.0030304715037345886, + 0.006628287956118584, + 0.017152002081274986, + 0.08086910843849182, + -0.016329467296600342, + 0.02977466955780983, + -0.028473494574427605, + -0.10946601629257202, + 0.006184012163430452, + -0.005808738991618156, + 0.03972902148962021, + -0.04199596121907234, + -0.06268646568059921, + -0.011202813126146793, + -0.07446499168872833, + 0.002376931020990014, + -0.008205144666135311, + -0.06255906075239182, + 0.020527176558971405, + 0.010069549083709717, + 0.11601366102695465, + 0.03455353528261185, + 0.01562957838177681, + 0.04497971385717392, + 0.09076089411973953, + -0.04368259385228157, + -0.03665570542216301, + 0.0013645710423588753, + 0.02367447502911091, + -0.09533511847257614, + -0.035429563373327255, + -0.08440389484167099, + 0.0657198429107666, + 0.0757780596613884, + 0.10536427050828934, + -0.04858976602554321, + -0.07653236389160156, + 0.10784374922513962, + -0.02290322631597519, + 0.026754384860396385, + 0.0007926911348477006, + -0.15562321245670319, + 0.02733146771788597, + 0.017276139929890633, + 0.0378996841609478, + -0.03218228369951248, + 0.0033892616629600525, + 0.07196014374494553, + 0.02255014143884182, + -0.026214702054858208, + 0.023213563486933708, + -0.015660125762224197, + 0.003472581272944808, + -0.007820107974112034, + 0.049373727291822433, + -0.016673125326633453, + 0.06883996725082397, + 0.06315939873456955, + 0.09700438380241394, + 0.007174377795308828, + 0.004669837187975645, + 0.08799486607313156, + 0.05006635934114456, + 0.040378764271736145, + 0.07359090447425842, + -0.07146095484495163, + 0.04987339302897453, + -0.02495119906961918, + -0.009135565720498562, + -0.060132041573524475, + 0.015250234864652157, + -0.03860461711883545, + 0.1018037497997284, + 0.08685067296028137, + -0.010792267508804798, + 0.06939768046140671, + -0.07663662731647491, + -0.0007378163863904774, + 0.0021060872822999954, + -0.11268234997987747, + -0.02486877143383026, + -0.03360609710216522, + -0.11407279968261719, + -0.09988629817962646, + -4.383794959750558e-34, + 0.027877816930413246, + -0.06495488435029984, + -0.030134109780192375, + -0.07655805349349976, + -0.08930371701717377, + 0.004749717656522989, + -0.09146250784397125, + -0.0011297601740807295, + 0.026581844314932823, + 0.029521314427256584, + -0.056185558438301086, + -0.01437277253717184, + 0.04148357734084129, + -0.030594050884246826, + 0.002376051852479577, + 0.052078455686569214, + 0.01910831592977047, + -0.02315596491098404, + -0.11772292107343674, + 0.06671632081270218, + -0.007017217576503754, + -0.030430031940340996, + -0.13674668967723846, + 0.0314454585313797, + 0.015149788931012154, + 0.0009300532401539385, + -0.07933039218187332, + -0.08310893177986145, + -0.007542872801423073, + -0.036482784897089005, + -0.12953343987464905, + -0.04837274178862572, + -0.004375203978270292, + 0.09226763248443604, + -0.04955054819583893, + 0.11206638067960739, + 0.07103075087070465, + -0.10858160257339478, + 0.033078864216804504, + 0.010835543274879456, + -0.025459779426455498, + -0.0034135656896978617, + 0.061995893716812134, + 0.04622776433825493, + -0.009581321850419044, + 0.006054562516510487, + -0.09485778957605362, + 0.0038383067585527897, + -0.03771844878792763, + 0.008132526651024818, + 0.06020374223589897, + 0.04682217910885811, + -0.05991797521710396, + 0.06164016202092171, + 0.0215408056974411, + 0.014419134706258774, + 0.02885795384645462, + 0.004197604954242706, + -0.02666870504617691, + 0.016323482617735863, + 0.00441658915951848, + 0.02265426144003868, + -0.11479489505290985, + 0.09398134797811508, + -0.011292935349047184, + -0.08849818259477615, + 0.02084161899983883, + -0.05818774178624153, + -0.015515749342739582, + -0.010731928050518036, + -0.05805762857198715, + -0.0025932074058800936, + -0.015089872293174267, + 0.011577105149626732, + -0.04251502454280853, + -0.03494326025247574, + 0.0661773532629013, + 0.10985119640827179, + 0.004849484656006098, + 0.04206070303916931, + 0.024603795260190964, + 0.022235332056879997, + -0.061247728765010834, + 0.0745755210518837, + 0.057960014790296555, + 0.09436699002981186, + 0.007186174858361483, + -0.018260419368743896, + 0.01952277310192585, + -0.009270953014492989, + -0.04384111240506172, + 0.0352354496717453, + -0.0895031988620758, + -0.03269564360380173, + -0.045878224074840546, + -2.182081715318418e-08, + -0.008493319153785706, + 0.03654899075627327, + -0.09062571078538895, + 0.025121234357357025, + 0.041266750544309616, + -0.04400767758488655, + -0.003350605955347419, + 0.05371648445725441, + -0.05066106095910072, + 0.03477347642183304, + 0.011561781167984009, + 0.030962415039539337, + -0.08970241248607635, + 0.024288395419716835, + -0.00020642657182179391, + -0.05111219733953476, + 0.013775895349681377, + -0.0012747083092108369, + 0.011652358807623386, + -0.030798181891441345, + -0.010197430849075317, + 0.10024082660675049, + 0.003906591329723597, + -0.0045964037999510765, + 0.0030819121748209, + 0.0406133309006691, + -0.07160602509975433, + -0.06353355944156647, + 0.06156419962644577, + 0.0621502660214901, + 0.04338987171649933, + 0.058357805013656616, + -0.0029692493844777346, + -0.002615637145936489, + -0.03155796229839325, + 0.0038951593451201916, + 0.04268878698348999, + 0.016559652984142303, + -0.04574162885546684, + -0.00825543887913227, + 0.0583035871386528, + -0.04598015174269676, + -0.019002053886651993, + 0.04406147822737694, + 0.019586855545639992, + 0.034497279673814774, + 0.07302871346473694, + -0.05478774756193161, + -0.01420491561293602, + -0.10250282287597656, + -0.06906372308731079, + 0.009565715678036213, + 0.024721598252654076, + 0.03223395720124245, + 0.02401994727551937, + -0.013320719823241234, + -0.014118216931819916, + 0.01509147696197033, + 0.016330517828464508, + -0.03183353319764137, + 0.15797051787376404, + 0.02393713779747486, + -0.030635952949523926, + 0.08566219359636307 + ], + "clipboard-bold||copy,copied,checklist": [ + -0.017405036836862564, + -0.09074565768241882, + -0.08793825656175613, + 0.05480767413973808, + 0.08936134725809097, + -0.0255430918186903, + 0.1269175261259079, + -0.03890174627304077, + 0.013397795148193836, + -0.03364447131752968, + 0.020750846713781357, + 0.01551960501819849, + -0.0231438297778368, + -0.0504780113697052, + -0.04984734579920769, + -0.007089424412697554, + 0.07158973813056946, + 0.024988342076539993, + -0.01631719060242176, + -0.01387460995465517, + 0.01514050830155611, + -0.007387400604784489, + 0.03356681019067764, + 0.04109794646501541, + 0.02772841975092888, + 0.013899111188948154, + -0.002682484220713377, + -0.059303998947143555, + -0.014180446043610573, + -0.051977042108774185, + 0.006083639804273844, + -0.05939791724085808, + 0.18125978112220764, + 0.007396105211228132, + 0.02664213627576828, + 0.07495627552270889, + -0.019805656746029854, + -0.007567279040813446, + 0.03203615918755531, + 0.0036930469796061516, + -0.019467780366539955, + -0.07070835679769516, + -0.020392706617712975, + -0.005128590855747461, + -0.07350348681211472, + 0.0077960435301065445, + -0.05963585898280144, + -0.010188390500843525, + 0.040253594517707825, + 0.017961036413908005, + -0.013136159628629684, + -0.10421551764011383, + -0.09109342843294144, + -0.07156569510698318, + -0.00659635104238987, + -0.01548842340707779, + -0.001902165706269443, + -0.036928627640008926, + 0.04856652021408081, + -0.054372258484363556, + -0.022730793803930283, + 0.09234170615673065, + 0.011963706463575363, + 0.05676667392253876, + 0.06994607299566269, + 0.07023082673549652, + -0.059574026614427567, + 0.04245561733841896, + -0.08451105654239655, + 0.025814266875386238, + 0.009203129447996616, + 0.006024654489010572, + -0.003172144293785095, + 0.004211827646940947, + -0.012073401361703873, + -0.008990282192826271, + 0.06350082904100418, + -0.0016420034226030111, + -0.07713142037391663, + -0.02797834761440754, + -0.056863270699977875, + -0.07631032168865204, + 0.034317437559366226, + 0.0419977605342865, + 0.027313590049743652, + 0.025983313098549843, + -0.05009952187538147, + 0.018489627167582512, + -0.030093226581811905, + -0.025834526866674423, + 0.044119518250226974, + 0.01825537532567978, + 0.0958774983882904, + 0.015441241674125195, + -0.019719328731298447, + 0.02352088689804077, + -0.011731015518307686, + 0.04478694871068001, + -0.02202077955007553, + 0.012573613785207272, + -0.027265388518571854, + 0.0535489097237587, + 0.017032258212566376, + -0.01759514957666397, + -0.00908420979976654, + 0.00687880115583539, + 0.03493497520685196, + -0.09447123110294342, + -0.017633680254220963, + 0.0027699198108166456, + 0.008073735050857067, + -0.0038558365777134895, + 0.04001777991652489, + -0.07796599715948105, + 0.05833758786320686, + -0.05469823628664017, + -0.017267223447561264, + -0.020780237391591072, + 0.005341264419257641, + 0.09117821604013443, + 0.055153559893369675, + -0.0002784303214866668, + -0.08226506412029266, + -0.024713071063160896, + 0.05527174472808838, + 0.03399712219834328, + 0.03960809111595154, + -2.4388038234517617e-33, + 0.09674125909805298, + 0.03001759573817253, + 0.003140699816867709, + 0.029812049120664597, + 0.0037156555335968733, + -0.056025732308626175, + 0.004143609199672937, + -0.03780784457921982, + -0.09074731171131134, + -0.023754630237817764, + 0.12683644890785217, + -0.022331876680254936, + -0.008635618723928928, + 0.05797896534204483, + 0.0013224693248048425, + 0.04133085533976555, + -0.0059402985498309135, + 0.03419579938054085, + -0.07000027596950531, + 0.026264021173119545, + -0.04832416772842407, + -0.0285835899412632, + 0.00394489336758852, + -0.0009403975564055145, + -0.02171909064054489, + -0.06318279355764389, + -0.029276996850967407, + 0.050724126398563385, + 0.012645481154322624, + 0.03120311349630356, + -0.08474209159612656, + -0.042322635650634766, + 0.020089590921998024, + 0.006662915926426649, + -0.06721876561641693, + 0.09001144021749496, + -0.026416262611746788, + -0.010927527211606503, + 0.05629945918917656, + 0.04655468836426735, + -0.009458125568926334, + -0.05485619977116585, + -0.0018092560349032283, + -0.004545819479972124, + 0.04178669676184654, + 0.0018291929736733437, + -0.02589392475783825, + 0.07659116387367249, + 0.003173413686454296, + 0.0313313864171505, + 0.014189645648002625, + -0.011640350334346294, + -0.048576705157756805, + -0.04690186679363251, + -0.03550317510962486, + -0.07050780206918716, + 0.01846100017428398, + 0.03167896345257759, + 0.044096581637859344, + 0.09657378494739532, + -0.00947064720094204, + 0.11866836249828339, + 0.000600505736656487, + 0.03972422704100609, + -0.00022151562734507024, + 0.08471186459064484, + -0.044615115970373154, + 0.04554397985339165, + 0.04403834044933319, + -0.018310224637389183, + -0.009813521057367325, + 0.037392277270555496, + -0.020363954827189445, + 0.0335548035800457, + -0.019668376073241234, + -0.023446135222911835, + -0.017065109685063362, + -0.15663295984268188, + 0.059951718896627426, + -0.10487902164459229, + -0.07564431428909302, + -0.0012415553210303187, + -0.06830567866563797, + -0.005719924811273813, + -0.009641826152801514, + -0.033550698310136795, + 0.036382753401994705, + -0.04587502032518387, + -0.0324186347424984, + 0.008112476207315922, + -0.020244481042027473, + -0.044922564178705215, + -0.04301440343260765, + -0.03443373739719391, + -0.0064727491699159145, + -3.5773895342859006e-34, + 0.12241102010011673, + 0.00291444337926805, + 0.04703759774565697, + 0.034438591450452805, + -0.02721809595823288, + 0.017046570777893066, + -0.05890192091464996, + 0.0501239150762558, + -0.04590461403131485, + -0.009369418025016785, + 0.028142398223280907, + -0.01999575085937977, + -0.027199259027838707, + -0.06629408150911331, + -0.01995091699063778, + 0.025816934183239937, + 0.007748315576463938, + 0.07072167843580246, + -0.09361957758665085, + -0.10578791052103043, + 0.04935762286186218, + -0.03661545738577843, + 0.025741593912243843, + 0.16405744850635529, + -0.10612966120243073, + -0.007125786039978266, + -0.06497901678085327, + -0.0730028823018074, + 0.08028765767812729, + 0.03878272697329521, + 0.005408735945820808, + 0.08979115635156631, + 0.017688246443867683, + 0.05305641144514084, + -0.008034389466047287, + 0.06528174132108688, + 0.04489834979176521, + 0.08119192719459534, + 0.06832963973283768, + -0.0020819203928112984, + -0.04035286605358124, + -0.01926243305206299, + 0.024745674803853035, + -0.0384301096200943, + -0.046992454677820206, + -0.05110893025994301, + 0.0043709371238946915, + 0.08364221453666687, + 0.006721540354192257, + 0.07836783677339554, + 0.012761876918375492, + -0.06020970642566681, + -0.07282190769910812, + 0.029905572533607483, + -0.0441584438085556, + 0.06699374318122864, + -0.02398557774722576, + 0.007440551184117794, + 0.021290317177772522, + 0.026410629972815514, + -0.09031306207180023, + 0.0016679929103702307, + -0.018281878903508186, + -0.06449579447507858, + 0.10295211523771286, + -0.07698994129896164, + 0.05428935959935188, + 0.045294251292943954, + 0.035791438072919846, + 0.03776705637574196, + 0.019324688240885735, + -0.006675750948488712, + -0.005894387140870094, + -0.03461176156997681, + -0.0022362032905220985, + -0.03970201313495636, + 0.013451731763780117, + 0.0663953348994255, + -0.03143956884741783, + 0.06767621636390686, + 0.008532468229532242, + 0.014649500139057636, + 0.052414361387491226, + 0.01809960976243019, + -0.02213631197810173, + 0.013174550607800484, + -0.01482715830206871, + 0.002413591369986534, + -0.011795788072049618, + -0.07125982642173767, + -0.07582620531320572, + -0.03899555280804634, + 0.0782865583896637, + -0.02406363934278488, + -0.02576513960957527, + -1.6376981548660297e-08, + -0.061848510056734085, + 0.0035171618219465017, + -0.010659151710569859, + 0.01949913799762726, + 0.019865157082676888, + -0.053500961512327194, + -0.07566927373409271, + -0.12040961533784866, + -0.0038036229088902473, + 0.02625926211476326, + 0.0020201855804771185, + 0.013924602419137955, + -0.030609548091888428, + -0.051033053547143936, + 0.04296773672103882, + -0.006577284540981054, + -0.0008300484623759985, + 0.054038651287555695, + 0.002054477110505104, + -0.01452475506812334, + 0.0041639721021056175, + -0.04776739329099655, + 0.04693089425563812, + 0.01578410714864731, + -0.027882957831025124, + -0.054853226989507675, + -0.11803799122571945, + -0.004111835267394781, + 0.11257373541593552, + 0.08616179972887039, + 0.05887841433286667, + 0.04839754477143288, + -0.016212042421102524, + -0.057876888662576675, + 0.025439122691750526, + -0.04199220612645149, + 0.030033310875296593, + -0.04965442419052124, + 0.0015263825189322233, + 0.14096936583518982, + -0.0037065239157527685, + -0.06141696870326996, + -0.10226934403181076, + -0.006023157387971878, + -0.03508773446083069, + -0.06252902001142502, + 0.034787729382514954, + -0.017560739070177078, + -0.06346261501312256, + -0.14436134696006775, + 0.01788192428648472, + -0.02449689619243145, + 0.02720794267952442, + 0.07653926312923431, + -0.012707451358437538, + -0.06427216529846191, + 0.002150017535313964, + 0.12276727706193924, + 0.09597480297088623, + 0.03953953832387924, + 0.12538348138332367, + -0.0005465886206366122, + 0.04111989587545395, + 0.004497654270380735 + ], + "clipboard-text-bold||copy,copied,checklist": [ + -0.002537724794819951, + -0.07434921711683273, + -0.08726639300584793, + 0.07235400378704071, + 0.08927379548549652, + -0.026198463514447212, + 0.13370929658412933, + -0.03232613578438759, + 0.02555210329592228, + -0.0355042964220047, + 0.024215709418058395, + 0.010323354043066502, + -0.0190203245729208, + -0.04725906625390053, + -0.035767488181591034, + -0.0035685242619365454, + 0.08820002526044846, + 0.009633459150791168, + -0.01961737871170044, + -0.01615018956363201, + 0.011069877073168755, + 0.004896671511232853, + 0.0517844557762146, + 0.05157557129859924, + 0.029268454760313034, + 0.037431541830301285, + -0.015774264931678772, + -0.049244027584791183, + -0.02430952526628971, + -0.03337021544575691, + -0.000699423486366868, + -0.057187192142009735, + 0.19003859162330627, + 0.0014485652791336179, + 0.02923617698252201, + 0.07856427878141403, + -0.025239640846848488, + -0.01178617961704731, + 0.023399172350764275, + 0.0128187146037817, + -0.011635363101959229, + -0.091756172478199, + -0.01250497903674841, + -0.00402197428047657, + -0.06523267179727554, + -0.005585468839854002, + -0.06483818590641022, + -0.006504881661385298, + 0.0436207540333271, + 0.01442017313092947, + -0.011593515053391457, + -0.11095823347568512, + -0.07726331800222397, + -0.06919741630554199, + -0.019107135012745857, + -0.0029798008035868406, + 0.0037587732076644897, + -0.03785279020667076, + 0.0524786002933979, + -0.05259154736995697, + -0.015806835144758224, + 0.09463544934988022, + 0.014388990588486195, + 0.05675414204597473, + 0.06218733265995979, + 0.06993777304887772, + -0.04862791299819946, + 0.04657384753227234, + -0.10037872195243835, + 0.027353938668966293, + 0.015076778829097748, + -0.001103611197322607, + 0.002000954933464527, + 0.010758889839053154, + -0.026039402931928635, + -0.00873356033116579, + 0.051931802183389664, + -0.002937935059890151, + -0.07226169854402542, + -0.023582329973578453, + -0.04853973910212517, + -0.0665683001279831, + 0.04446914419531822, + 0.05529603362083435, + 0.019113818183541298, + 0.028365353122353554, + -0.03904347121715546, + 0.02513136900961399, + -0.031953275203704834, + -0.017483696341514587, + 0.051411405205726624, + -0.0026688186917454004, + 0.10004288703203201, + 0.014617562294006348, + -0.043867070227861404, + 0.031597673892974854, + -0.04404977709054947, + 0.04794226214289665, + -0.017709901556372643, + 0.0011765711242333055, + -0.03186764940619469, + 0.04272904992103577, + 0.01437180396169424, + -0.01770990900695324, + -0.023746153339743614, + 0.005005065351724625, + 0.04911721870303154, + -0.09831506013870239, + -0.012996461242437363, + 0.0009812663774937391, + 0.010826103389263153, + -0.013357918709516525, + 0.02459791488945484, + -0.07660777121782303, + 0.05901583656668663, + -0.05350909382104874, + -0.013685786165297031, + -0.026521209627389908, + 0.005242880433797836, + 0.10953536629676819, + 0.0399945005774498, + 0.00011629439541138709, + -0.0875062569975853, + -0.03016921505331993, + 0.054374173283576965, + 0.03712896257638931, + 0.05744224041700363, + -2.9330525455404853e-33, + 0.09080804139375687, + 0.038998834788799286, + 0.009412177838385105, + 0.03773752599954605, + 0.005013823974877596, + -0.05960467830300331, + -0.004324024077504873, + -0.04085591435432434, + -0.08360887318849564, + -0.0374908447265625, + 0.12971514463424683, + -0.034923676401376724, + -0.009762147441506386, + 0.04576946422457695, + -0.0012712586903944612, + 0.021343879401683807, + -0.012363409623503685, + 0.02580266445875168, + -0.04950336739420891, + 0.019653623923659325, + -0.04249292239546776, + -0.02057909220457077, + 0.01734929531812668, + -0.012214132584631443, + -0.028295109048485756, + -0.06074877083301544, + -0.02566300332546234, + 0.05363580211997032, + 0.011337741278111935, + 0.02363617531955242, + -0.08362840861082077, + -0.03461145982146263, + 0.041579198092222214, + 0.01865917444229126, + -0.07489871233701706, + 0.091596320271492, + -0.03092166781425476, + -0.011024241335690022, + 0.05531150475144386, + 0.04620320722460747, + -0.024574115872383118, + -0.049719490110874176, + 0.006148485466837883, + -0.025360750034451485, + 0.05184069275856018, + 0.005029719788581133, + -0.03564591333270073, + 0.057543426752090454, + 0.0010144509142264724, + 0.020470427349209785, + 0.018916092813014984, + -0.012484044767916203, + -0.046584274619817734, + -0.031773511320352554, + -0.02578519470989704, + -0.061511553823947906, + 0.012750420719385147, + 0.028441177681088448, + 0.04736130312085152, + 0.10337486863136292, + -0.009862208738923073, + 0.10627042502164841, + -0.0011874273186549544, + 0.028936969116330147, + 0.01622028462588787, + 0.08913403749465942, + -0.044765595346689224, + 0.025830505415797234, + 0.03425237536430359, + -0.02425355464220047, + -0.00021700207435060292, + 0.024176035076379776, + -0.029746534302830696, + 0.04950723797082901, + -0.014655854552984238, + -0.015065626241266727, + -0.026574403047561646, + -0.15457376837730408, + 0.05913177877664566, + -0.09833244234323502, + -0.06475704908370972, + -0.03351587802171707, + -0.05269373953342438, + -0.006830898113548756, + -0.014245652593672276, + -0.028961772099137306, + 0.028846347704529762, + -0.054763879626989365, + -0.01961507834494114, + 0.01656767912209034, + -0.031130202114582062, + -0.036906130611896515, + -0.04735863208770752, + -0.03961896523833275, + 0.008076805621385574, + -1.5520221809574554e-34, + 0.11374155431985855, + -0.0005000272067263722, + 0.03330357372760773, + 0.03792162984609604, + -0.009163016453385353, + 0.03576376289129257, + -0.060367483645677567, + 0.05188010260462761, + -0.02865087427198887, + -0.015681302174925804, + 0.018075745552778244, + -0.01077429298311472, + -0.020176241174340248, + -0.06953750550746918, + -0.021213818341493607, + 0.018974581733345985, + 0.0246688611805439, + 0.06537971645593643, + -0.08203241229057312, + -0.10523276776075363, + 0.05449983850121498, + -0.03724666312336922, + 0.012699635699391365, + 0.15932422876358032, + -0.10086425393819809, + -0.017675945535302162, + -0.06469953060150146, + -0.06708256900310516, + 0.08225764334201813, + 0.031167924404144287, + 0.0021490980871021748, + 0.0938594788312912, + 0.018960103392601013, + 0.06308847665786743, + -0.01872733049094677, + 0.07165732234716415, + 0.0490998700261116, + 0.08048394322395325, + 0.05255291983485222, + 0.005943935830146074, + -0.02990722842514515, + -0.030395491048693657, + 0.016404960304498672, + -0.04822999984025955, + -0.05193232744932175, + -0.04311787709593773, + -0.009521770291030407, + 0.06565666198730469, + 0.0027293034363538027, + 0.07694645971059799, + 0.01307949610054493, + -0.06777556240558624, + -0.07676737755537033, + 0.02880699746310711, + -0.04579154774546623, + 0.06007084250450134, + -0.020108060911297798, + 0.00486973999068141, + 0.004984722938388586, + 0.014053951017558575, + -0.09034377336502075, + 0.0073152389377355576, + -0.012671212665736675, + -0.054980795830488205, + 0.10467430204153061, + -0.08630818873643875, + 0.056036435067653656, + 0.050899822264909744, + 0.038392066955566406, + 0.037202272564172745, + 0.019882837310433388, + -0.022468386217951775, + -0.011127655394375324, + -0.0348350964486599, + -0.009346024133265018, + -0.04015500470995903, + 0.010889505967497826, + 0.06743530929088593, + -0.048018909990787506, + 0.056367211043834686, + 0.03437605872750282, + 0.027408694848418236, + 0.04494122043251991, + 0.030257590115070343, + -0.016145771369338036, + 0.007263340521603823, + -0.023528186604380608, + -0.005695798899978399, + -0.011358289048075676, + -0.06903205066919327, + -0.08212480694055557, + -0.04153412580490112, + 0.06563297659158707, + -0.028736671432852745, + -0.028759004548192024, + -1.6938907165808814e-08, + -0.059727270156145096, + -0.01384827122092247, + -0.03735242411494255, + 0.0395946204662323, + 0.014205473475158215, + -0.05337630957365036, + -0.07783632725477219, + -0.12724609673023224, + -0.00198795972391963, + 0.02291092276573181, + -0.010206850245594978, + 0.007949027232825756, + -0.023740384727716446, + -0.06064293161034584, + 0.032463494688272476, + -0.005401461385190487, + -0.003955228719860315, + 0.052230339497327805, + 0.01601806841790676, + -0.022905366495251656, + 0.019122183322906494, + -0.043716248124837875, + 0.04202377051115036, + 0.014658140949904919, + -0.025180872529745102, + -0.046067871153354645, + -0.12780210375785828, + -0.00905926525592804, + 0.10326800495386124, + 0.08314089477062225, + 0.06939037144184113, + 0.04083408787846565, + -0.034380994737148285, + -0.05480269342660904, + 0.03282088786363602, + -0.05092014744877815, + 0.033220335841178894, + -0.057528600096702576, + 0.014587313868105412, + 0.13546718657016754, + 0.0026827515102922916, + -0.03926883637905121, + -0.10232260823249817, + -0.012486470863223076, + -0.02954871580004692, + -0.05802016332745552, + 0.029232941567897797, + -0.02313370630145073, + -0.05823976546525955, + -0.15161632001399994, + 0.028056669980287552, + -0.012757865712046623, + 0.025744177401065826, + 0.07369361072778702, + -0.013614106923341751, + -0.06161157786846161, + 0.016514774411916733, + 0.12646305561065674, + 0.08500050008296967, + 0.034450381994247437, + 0.12937742471694946, + -0.0009557842859067023, + 0.04885844141244888, + -0.009309537708759308 + ], + "clock-bold||times,timer,alarm,schedule,events,watch": [ + 0.020781870931386948, + -0.013236903585493565, + -0.04300767555832863, + 0.005444984417408705, + 0.0607091560959816, + 0.07253769040107727, + 0.09492117166519165, + -0.018054012209177017, + 0.05527789890766144, + -0.033616796135902405, + -0.047258976846933365, + -0.013597292825579643, + -0.0002648385998327285, + -0.015623132698237896, + -0.017237721011042595, + -0.016510043293237686, + 0.014334218576550484, + -0.0030096271075308323, + 0.012015747837722301, + -0.04205850884318352, + 0.04457259550690651, + -0.033849962055683136, + 0.057075340300798416, + 0.07264892011880875, + 0.009273846633732319, + 0.027841493487358093, + 0.05048093944787979, + 0.011967872269451618, + 0.025642449036240578, + -0.04834498465061188, + -0.038792241364717484, + -0.05339936167001724, + 0.09458739310503006, + 0.0060984366573393345, + 0.02271317131817341, + 0.008298534899950027, + 0.05775659531354904, + 0.008140970021486282, + -0.04972796142101288, + 0.02687242068350315, + 0.07476644217967987, + -0.061509113758802414, + 0.022680871188640594, + 0.010267275385558605, + -0.00858846865594387, + 0.028215225785970688, + -0.04649684950709343, + -0.05647481605410576, + -0.048713769763708115, + 0.04262952134013176, + -0.0018749171867966652, + -0.03408224135637283, + -0.04021118953824043, + -0.026126941666007042, + 0.12558811902999878, + 0.103194959461689, + -0.044755417853593826, + -0.006196079775691032, + 0.0644046813249588, + -0.009619131684303284, + 0.0010549321305006742, + 0.059939444065093994, + -0.04875368997454643, + 0.05984528362751007, + -0.0028372174128890038, + 0.03812208026647568, + -0.031613171100616455, + 0.04311738163232803, + 0.04470982030034065, + -0.008749710395932198, + -0.03777776658535004, + 0.019737666472792625, + 0.026481924578547478, + 0.011800645850598812, + -0.06068229675292969, + 0.023131776601076126, + 0.03518994152545929, + -0.041258033365011215, + -0.018522193655371666, + -0.0580008439719677, + -0.14603058993816376, + -0.10025715827941895, + -0.010135765187442303, + 0.014124415814876556, + 0.1175469383597374, + -0.008440736681222916, + -0.007802125532180071, + 0.026958730071783066, + -0.013422496616840363, + -0.04508581757545471, + -0.05576716363430023, + -0.023075778037309647, + 0.015240180306136608, + 0.006157577503472567, + -0.025545112788677216, + 0.06729494780302048, + 0.04973728209733963, + 0.03658973425626755, + -0.03545064479112625, + 0.059010040014982224, + -0.011156658641994, + 0.0045316582545638084, + -0.0193403959274292, + 0.048218727111816406, + -0.036806248128414154, + -0.052362632006406784, + -0.06434265524148941, + -0.034811247140169144, + -0.039456941187381744, + 0.024704117327928543, + -0.0007953520980663598, + -0.04923947900533676, + 0.008765029720962048, + -0.07130267471075058, + 0.055679429322481155, + -0.002006986876949668, + -0.09896315634250641, + 0.0066080158576369286, + 0.1459294557571411, + 0.09157894551753998, + 0.07277040928602219, + -0.0004289683129172772, + -0.06833139061927795, + -0.06442321836948395, + 0.0007380797178484499, + 0.06270391494035721, + 0.047479793429374695, + -2.4626288898910217e-33, + 0.02536674775183201, + 0.02977949008345604, + -0.05603303015232086, + 0.030637986958026886, + 0.05247731879353523, + 0.050947774201631546, + -0.06363821029663086, + -0.03131133317947388, + 0.004667742643505335, + 0.0710158571600914, + 0.06044870615005493, + 0.009836848825216293, + -0.03581162914633751, + 0.016565462574362755, + 0.047639183700084686, + -0.0041167051531374454, + 0.05994909256696701, + 0.038679338991642, + -0.03626047819852829, + -0.05330467224121094, + -0.08595887571573257, + 0.06605596840381622, + -0.07458535581827164, + 0.010958227328956127, + 0.02172301523387432, + -0.010616022162139416, + 0.02757197432219982, + -0.03422548994421959, + -0.03580906242132187, + 0.026804180815815926, + 0.07711207866668701, + -0.03554720804095268, + -0.028926130384206772, + 0.01892649009823799, + 0.06541866809129715, + 0.0022292458452284336, + -0.035430699586868286, + 0.0030717526096850634, + 0.010440967045724392, + 0.006889603566378355, + -0.08210444450378418, + -0.07832881808280945, + -0.06973645091056824, + -0.06392884254455566, + 0.05220403894782066, + 0.05378355458378792, + 0.020793940871953964, + -0.0003120033070445061, + 0.026768367737531662, + 0.0212085023522377, + 0.022961972281336784, + 0.0031437932047992945, + 0.062304358929395676, + -0.09138477593660355, + 0.052326418459415436, + 0.044751062989234924, + 0.07126488536596298, + 0.06384452432394028, + 0.030447104945778847, + 0.0833052545785904, + -0.001920072128996253, + 0.04043082520365715, + 0.07473859935998917, + -0.05660294368863106, + -0.009287681430578232, + 0.07213378697633743, + -0.02980438806116581, + -0.01199245173484087, + 0.09774128347635269, + 0.03352069854736328, + -0.027625981718301773, + 0.034399550408124924, + 0.07228758931159973, + 0.05128119885921478, + -0.029308270663022995, + 0.04481362923979759, + 0.0859304815530777, + -0.01515193935483694, + -0.042140547186136246, + -0.02158687263727188, + -0.029342051595449448, + -0.026299338787794113, + -0.00020943814888596535, + 0.0673651397228241, + 0.04467983543872833, + -0.02522125281393528, + -0.012595616281032562, + -0.05038072541356087, + -0.03522975370287895, + -0.0033837559167295694, + -0.014152951538562775, + -0.05851246416568756, + 0.047293417155742645, + -0.041779402643442154, + -0.18629668653011322, + 5.457009363436806e-34, + 0.0405031219124794, + -0.025645602494478226, + -0.018096555024385452, + -0.034078117460012436, + -0.01718606799840927, + -0.026487233117222786, + -0.027280345559120178, + -0.007034292444586754, + 0.03342127427458763, + 0.04907480254769325, + 0.060821957886219025, + -0.024148831143975258, + -0.04069467633962631, + -0.05084691569209099, + -0.04299544543027878, + 0.023831574246287346, + 0.08873844891786575, + 0.03747906908392906, + -0.0019456365844234824, + -0.022348178550601006, + -0.025064781308174133, + 0.0005921204574406147, + -0.09503821283578873, + -0.005421818699687719, + 0.03503548726439476, + 0.010674981400370598, + 0.02665737085044384, + 0.026413438841700554, + -0.012955937534570694, + -0.02594902738928795, + -0.08877570182085037, + -0.0668218657374382, + 0.0740656852722168, + 0.056458234786987305, + -0.045432839542627335, + 0.00547255203127861, + 0.07226395606994629, + -0.045816726982593536, + -0.03891967982053757, + -0.04099319875240326, + 0.016519827768206596, + 0.009111395105719566, + 0.04139793664216995, + -0.02106310985982418, + -0.09056802093982697, + 0.09314283728599548, + -0.06506005674600601, + 0.015856299549341202, + -0.06507781147956848, + 0.054702065885066986, + -0.015632960945367813, + -0.09374289959669113, + -0.022424647584557533, + -0.003324789460748434, + -0.07207927852869034, + -0.03614801913499832, + 0.01785244233906269, + -0.0357898510992527, + 0.029128171503543854, + 0.06233165040612221, + -0.01948382332921028, + -0.020481690764427185, + -0.014944138936698437, + 0.03779233992099762, + 0.03150484338402748, + -0.002974077593535185, + -0.0042589642107486725, + -0.051139477640390396, + -0.019582699984312057, + -0.075946144759655, + 0.060195811092853546, + -0.0044640712440013885, + -0.06367230415344238, + 0.0008178598363883793, + -0.08892819285392761, + -0.004015929996967316, + 0.00034314990625716746, + 0.042427096515893936, + -0.08714448660612106, + 0.009445670060813427, + -0.04716138169169426, + -0.06460898369550705, + -0.003586565377190709, + 0.020077763125300407, + -0.07469149678945541, + 0.09056973457336426, + 0.06090814620256424, + 0.051882900297641754, + 0.03783402591943741, + 0.0015312376199290156, + -0.08775517344474792, + 0.0851675495505333, + -0.006763055920600891, + 0.10553853213787079, + -0.0030103654135018587, + -1.9423012531660788e-08, + -0.013901137746870518, + -0.032293714582920074, + 0.0036739048082381487, + -0.08328763395547867, + 0.02993926592171192, + -0.07565346360206604, + -0.01659920997917652, + -0.08601223677396774, + -0.03190752491354942, + -0.026392905041575432, + 0.044757481664419174, + -0.03275509178638458, + -0.06745169311761856, + -0.08235111087560654, + 0.07914050668478012, + -0.02964247576892376, + -0.03240722045302391, + 0.04279626905918121, + -0.051229268312454224, + -0.0633876621723175, + 0.02343965694308281, + 0.065411776304245, + 0.06632310897111893, + -0.05209139361977577, + 0.01573740318417549, + 0.06138068437576294, + -0.06276743113994598, + 0.0646565705537796, + 0.09298918396234512, + 0.08887971192598343, + 0.0490574948489666, + 0.07566390931606293, + 0.0020674248225986958, + -0.013067398220300674, + -0.1305113583803177, + -0.0939701721072197, + -0.06196967139840126, + -0.0050710891373455524, + 0.05857332423329353, + 0.1278008073568344, + 0.030668729916214943, + -0.11122404038906097, + -0.12254278361797333, + 0.04723084717988968, + -0.023453181609511375, + -0.026385117322206497, + 0.019549701362848282, + -0.11370282620191574, + -0.04569057375192642, + -0.10270419716835022, + -0.04086107388138771, + 0.02056916244328022, + 0.042121607810258865, + 0.004859926179051399, + 0.005887726787477732, + 0.04307379573583603, + 0.0650634840130806, + -0.04780076816678047, + -0.031641870737075806, + -0.0035725526977330446, + 0.03975706174969673, + 0.04033728688955307, + 0.021117789670825005, + -0.026419274508953094 + ], + "clock-afternoon-bold||times,timer,alarm,schedule,events,watch": [ + 0.02883123978972435, + 0.00115649972576648, + 0.0038321332540363073, + 0.009845745749771595, + 0.049136705696582794, + 0.037565041333436966, + 0.11402691900730133, + -0.03658370301127434, + 0.05918935686349869, + -0.040836479514837265, + -0.034926317632198334, + -0.015448558144271374, + -0.006034871097654104, + 0.008199270814657211, + -0.0343109592795372, + 0.018822820857167244, + 0.027043575420975685, + -0.007225933019071817, + 0.008856437169015408, + -0.027414856478571892, + 0.023477641865611076, + -0.041825149208307266, + 0.05275549367070198, + 0.08876357972621918, + 0.026852207258343697, + 0.044592149555683136, + 0.05011535808444023, + 0.016857435926795006, + 0.0039684586226940155, + -0.07736895233392715, + -0.054820917546749115, + -0.03315203636884689, + 0.11215034872293472, + 0.005447254981845617, + 0.020941896364092827, + -0.003927705343812704, + 0.06985456496477127, + -0.003367828205227852, + -0.014916900545358658, + 0.044038597494363785, + 0.050991129130125046, + -0.07096880674362183, + 0.006546422373503447, + 0.00922680925577879, + -0.02041163668036461, + 0.02850894071161747, + -0.05002029240131378, + -0.040843281894922256, + -0.023240653797984123, + 0.058732569217681885, + -0.009437893517315388, + -0.027496354654431343, + -0.0745999664068222, + -0.024447092786431313, + 0.09577150642871857, + 0.109142005443573, + -0.042574577033519745, + -0.01920098252594471, + 0.09098641574382782, + 0.009722485207021236, + -0.012433482334017754, + 0.0870794951915741, + -0.05961275100708008, + 0.08043279498815536, + 0.022534940391778946, + -0.0045758020132780075, + -0.04308292642235756, + 0.033391278237104416, + 0.024051014333963394, + -0.004303137306123972, + -0.03647879138588905, + 0.003476356854662299, + 0.024257536977529526, + 0.006362592335790396, + -0.04431982710957527, + 0.015098582953214645, + 0.024742716923356056, + -0.05779020115733147, + -0.01340397447347641, + -0.06454864889383316, + -0.12693363428115845, + -0.09787334501743317, + -0.026040183380246162, + 0.006871725898236036, + 0.08063298463821411, + 0.007077081128954887, + -0.026979956775903702, + 0.043088797479867935, + -0.019001802429556847, + -0.05507561191916466, + -0.0859411284327507, + -0.054053544998168945, + -0.002687915926799178, + 0.025400079786777496, + -0.026629634201526642, + 0.050813280045986176, + 0.04223348945379257, + 0.030049508437514305, + -0.015364807099103928, + 0.05414261296391487, + 0.005949974991381168, + 0.01064801774919033, + -0.03667260333895683, + 0.03435032442212105, + -0.026504306122660637, + -0.07672923803329468, + -0.06932716071605682, + -0.03185022622346878, + -0.011339561082422733, + 0.001985067268833518, + -0.004695437382906675, + -0.05834416672587395, + 0.022813722491264343, + -0.07536821067333221, + 0.0511997789144516, + 0.02307754009962082, + -0.06976676732301712, + 0.011685581877827644, + 0.12622691690921783, + 0.09612863510847092, + 0.052163757383823395, + 0.005451925098896027, + -0.05707209184765816, + -0.06910129636526108, + -0.027007540687918663, + 0.09397323429584503, + 0.0523112416267395, + -3.0395633539845235e-33, + 0.024765489622950554, + 0.012281198985874653, + -0.05799524858593941, + 0.050925835967063904, + 0.05127538740634918, + 0.004034250974655151, + -0.040174853056669235, + -0.03936133161187172, + 0.0014179920544847846, + 0.03591078147292137, + 0.04002558812499046, + 0.0039251563139259815, + -0.040578443557024, + -0.02498801238834858, + 0.02692539244890213, + -0.008942862041294575, + 0.09086336940526962, + 0.02982090599834919, + -0.04308974742889404, + -0.032697875052690506, + -0.07499776780605316, + 0.06914611905813217, + -0.059929218143224716, + 0.002640507183969021, + 0.021630683913826942, + -0.043075524270534515, + 0.03904435411095619, + -0.02544570527970791, + 0.00032101813121698797, + 0.0366477370262146, + 0.09591294825077057, + -0.036602769047021866, + -0.005807603243738413, + 0.04926266521215439, + 0.06998994201421738, + -0.010796889662742615, + -0.010235033929347992, + -0.009016434662044048, + 0.001784103107638657, + -0.011774138547480106, + -0.10290629416704178, + -0.06366224586963654, + -0.07737236469984055, + -0.06117193028330803, + 0.04926053807139397, + 0.061733365058898926, + 0.005293441005051136, + 0.011799636296927929, + 0.04677770286798477, + 0.02560689114034176, + -0.0032371615525335073, + 0.007561631500720978, + 0.06354999542236328, + -0.0852719247341156, + 0.03102663904428482, + 0.0727834701538086, + 0.052296582609415054, + 0.04871677607297897, + 0.013319174759089947, + 0.06131799891591072, + 0.018548034131526947, + 0.057413436472415924, + 0.07710742205381393, + -0.0781610831618309, + -0.007424027658998966, + 0.04826897755265236, + -0.01378108561038971, + -0.006767491810023785, + 0.10204415768384933, + 0.05204855650663376, + -0.010217908769845963, + 0.015495473518967628, + 0.10059738904237747, + 0.06669596582651138, + -0.009782820008695126, + 0.03470705822110176, + 0.0835052877664566, + -0.01511136069893837, + -0.03310645371675491, + -0.0011522537097334862, + -0.02753489278256893, + -0.020524831488728523, + 0.019314130768179893, + 0.06479622423648834, + 0.03825981169939041, + 0.008294930681586266, + 0.005787988193333149, + -0.046734027564525604, + -0.025920085608959198, + 0.001163635984994471, + -0.05663135647773743, + -0.042175862938165665, + 0.05506662279367447, + -0.02481182850897312, + -0.1744009554386139, + 8.297249834153156e-34, + 0.0661139041185379, + -0.02966500259935856, + -0.04639735445380211, + -0.029029788449406624, + -0.01172237005084753, + -0.030095966532826424, + -0.022574780508875847, + 0.008745060302317142, + 0.040645893663167953, + 0.07752303779125214, + 0.024981623515486717, + -0.009703070856630802, + -0.03455352038145065, + -0.06071805581450462, + -0.02318764105439186, + 0.003022516844794154, + 0.11074632406234741, + 0.05068070814013481, + -0.008254660293459892, + 0.014391561970114708, + -0.04217467084527016, + -0.016949757933616638, + -0.09270667284727097, + -0.008404992520809174, + 0.056130535900592804, + 0.02503768727183342, + 0.04935386776924133, + 0.010772187262773514, + -0.010657832957804203, + -0.026958836242556572, + -0.08724336326122284, + -0.04327913001179695, + 0.07575008273124695, + 0.050714749842882156, + -0.07031524181365967, + 0.03534133732318878, + 0.07568978518247604, + -0.0600021593272686, + -0.05019904673099518, + -0.04295916110277176, + -0.0186013150960207, + -0.004722826648503542, + 0.06166760250926018, + -0.023254431784152985, + -0.08778104186058044, + 0.0661984235048294, + -0.06967328488826752, + 0.04326555132865906, + -0.07690548896789551, + 0.056398045271635056, + -0.025911666452884674, + -0.0871378630399704, + -0.0316300243139267, + 0.005804476328194141, + -0.06084625795483589, + -0.04902426525950432, + 0.027978401631116867, + -0.038676634430885315, + 0.00805670116096735, + 0.0708824023604393, + -0.02966836281120777, + -0.018257534131407738, + -0.0019081799546256661, + 0.025030454620718956, + 0.014040635898709297, + -0.0027123307809233665, + -0.018428636714816093, + -0.08048412203788757, + -0.005671796854585409, + -0.06637122482061386, + 0.06341616064310074, + -0.01778062991797924, + -0.07623331993818283, + -0.006547733210027218, + -0.07592305541038513, + 0.02338597923517227, + -0.003460443578660488, + 0.04494837298989296, + -0.0880032628774643, + -0.01680924743413925, + -0.06863894313573837, + -0.0611879825592041, + -0.01378164067864418, + 0.04258004575967789, + -0.09680791199207306, + 0.07039926946163177, + 0.07090990245342255, + 0.05599130690097809, + 0.01800215244293213, + 0.007763583678752184, + -0.04270564764738083, + 0.08372870087623596, + -0.009272820316255093, + 0.08311576396226883, + -0.01649867743253708, + -1.969567442472453e-08, + 0.000679709599353373, + -0.01695997081696987, + -0.006801263894885778, + -0.06693430244922638, + 0.01675044558942318, + -0.09246721863746643, + -0.0177557822316885, + -0.07961184531450272, + -0.00017166041652671993, + -0.01889825612306595, + 0.05355338007211685, + -0.026181742548942566, + -0.0557938888669014, + -0.06062282621860504, + 0.07003606855869293, + -0.044976867735385895, + -0.03370334580540657, + 0.03502684831619263, + -0.04730739817023277, + -0.075935497879982, + 0.015515200793743134, + 0.038185205310583115, + 0.06378987431526184, + -0.06584921479225159, + 0.029009586200118065, + 0.051490556448698044, + -0.09166611731052399, + 0.057222358882427216, + 0.08447450399398804, + 0.09053032845258713, + 0.05087095871567726, + 0.10879692435264587, + -0.046395715326070786, + -0.030509980395436287, + -0.12372944504022598, + -0.08814362436532974, + -0.051206961274147034, + 0.00928690005093813, + 0.012668127194046974, + 0.11621662229299545, + 0.04810914397239685, + -0.11533864587545395, + -0.09585272520780563, + 0.04296112060546875, + 0.007146713323891163, + -0.02184956520795822, + 0.028370775282382965, + -0.10639374703168869, + -0.037508126348257065, + -0.10140406340360641, + -0.023342857137322426, + 0.008950311690568924, + 0.04685789346694946, + -0.008487243205308914, + 0.017883606255054474, + 0.04367463290691376, + 0.07142557203769684, + -0.06718143075704575, + -0.009935082867741585, + -0.02169564552605152, + 0.03785013407468796, + 0.061263930052518845, + -0.013054188340902328, + -0.03263359144330025 + ], + "clock-clockwise-bold||times,timer,alarm,schedule,events,restore,fast forward,update": [ + 0.0037682373076677322, + -0.0032545761205255985, + -0.040203094482421875, + -0.007100461982190609, + 0.01707841269671917, + 0.062124621123075485, + 0.06370864808559418, + -0.02719857171177864, + 0.05148344859480858, + -0.02630041353404522, + 0.03245540335774422, + 0.03677381947636604, + -0.010477700270712376, + -0.04534454643726349, + -0.04726431146264076, + -0.007917138747870922, + -0.012399728409945965, + 0.010641838423907757, + -0.004935645032674074, + -0.012565313838422298, + -0.06000242754817009, + -0.04386984184384346, + 0.013580934144556522, + 0.08572912961244583, + -0.013566090725362301, + 0.06364581733942032, + 0.03958111256361008, + 0.0025450896937400103, + 0.0033992191310971975, + -0.10497134178876877, + -0.07066085934638977, + -0.0195035208016634, + 0.057503409683704376, + -0.017235472798347473, + -0.05142451822757721, + 0.004637712147086859, + 0.051563870161771774, + 0.00755961611866951, + -0.0057619307190179825, + 0.013280936516821384, + 0.04530457407236099, + -0.0923859104514122, + 0.01858820579946041, + 0.018096983432769775, + -0.016256410628557205, + 0.06566762924194336, + -0.04319148510694504, + -0.01817711815237999, + -0.04636022448539734, + 0.030052557587623596, + -0.005004077684134245, + -0.05964137241244316, + -0.08236157149076462, + -0.007150166667997837, + 0.08317585289478302, + 0.140940323472023, + 0.016130108386278152, + 0.01836451143026352, + 0.04270734637975693, + -0.00992283970117569, + 0.0475790910422802, + 0.029623940587043762, + -0.07388503849506378, + 0.08353722840547562, + 0.021297283470630646, + 0.01796194165945053, + -0.01879522018134594, + -0.01869535818696022, + 0.036755915731191635, + -0.03527647629380226, + -0.009024358354508877, + 0.04491622373461723, + 0.004734404850751162, + 0.0030482339207082987, + -0.030373139306902885, + 0.0010920391650870442, + 0.05236582085490227, + 0.019433287903666496, + -0.040059857070446014, + -0.09015929698944092, + -0.07255332171916962, + -0.039515718817710876, + -0.007539349142462015, + 0.04291200637817383, + 0.13384999334812164, + -0.017784802243113518, + -0.03421500697731972, + 0.04721544310450554, + -0.0006221397197805345, + -0.012520323507487774, + -0.05068615823984146, + -0.021768253296613693, + 0.039061687886714935, + -0.03771136701107025, + -0.031805042177438736, + 0.06658746302127838, + 0.01864887960255146, + 0.0034599085338413715, + -0.08460116386413574, + 0.05646154657006264, + 0.019674865528941154, + -0.001976355444639921, + -0.04553402215242386, + 0.05876455828547478, + 0.011144202202558517, + -0.033476732671260834, + -0.05672052130103111, + -0.024441028013825417, + -0.04286343604326248, + 0.010539739392697811, + -0.015114008449018002, + -0.022218141704797745, + 0.02899993024766445, + -0.07536569982767105, + 0.027248304337263107, + -0.03316126763820648, + -0.13484825193881989, + 0.05283999815583229, + 0.11023084819316864, + 0.05519626662135124, + 0.017886504530906677, + -0.02252037078142166, + -0.07012109458446503, + -0.0937175527215004, + -0.02408980019390583, + 0.07687906920909882, + 0.0769982635974884, + -3.164961968923376e-33, + 0.010740602388978004, + 0.054785773158073425, + -0.006318502593785524, + 0.003136119106784463, + 0.058146074414253235, + 0.031159086152911186, + -0.05200923979282379, + -0.04490173980593681, + -0.01169438287615776, + 0.028575580567121506, + 0.08311585336923599, + 0.014172365888953209, + -0.0546325221657753, + 0.031238505616784096, + 0.019440878182649612, + -0.06011510267853737, + 0.056193724274635315, + 0.08354422450065613, + -0.03930436819791794, + -0.06374406069517136, + -0.025716055184602737, + 0.07273375242948532, + -0.05901053175330162, + -0.015351169742643833, + 0.058325883001089096, + 0.0189326424151659, + 0.03954342380166054, + -0.014533759094774723, + -0.05283987894654274, + 0.022358454763889313, + 0.08032874017953873, + -0.012508530169725418, + -0.010512559674680233, + -0.02013471908867359, + 0.05328761041164398, + -0.0006322701810859144, + -0.02190793678164482, + -0.04633454978466034, + 0.005473676603287458, + 0.005620510317385197, + -0.07776134461164474, + -0.07301796227693558, + -0.12645435333251953, + -0.05962647125124931, + 0.04036599025130272, + 0.033919982612133026, + 0.016635607928037643, + 0.025582531467080116, + 0.05432339012622833, + 0.0064001609571278095, + -0.0007124264957383275, + 0.03079161047935486, + 0.018937166780233383, + -0.09923319518566132, + 0.02067132666707039, + 0.028978804126381874, + 0.06545354425907135, + 0.07862736284732819, + -0.019452137872576714, + 0.0952974483370781, + 0.05141032114624977, + 0.0760519877076149, + 0.025833936408162117, + -0.057129837572574615, + -0.008388574235141277, + 0.04069659858942032, + -0.059659555554389954, + -0.06076892837882042, + 0.11771973222494125, + 0.02414322830736637, + -0.028738662600517273, + -0.00622453773394227, + 0.06009802967309952, + 0.05757921561598778, + -0.006193866021931171, + 0.03535005822777748, + 0.04163737967610359, + -0.011633351445198059, + -0.005080871749669313, + -0.02744990400969982, + -0.06377527117729187, + -0.0009364612633362412, + -0.07202452421188354, + 0.037813909351825714, + 0.06920353323221207, + -0.0285854022949934, + -0.005665475502610207, + -0.027794813737273216, + -0.03563496470451355, + 0.031417034566402435, + -0.011459040455520153, + -0.02703128382563591, + 0.03468557074666023, + 0.031277529895305634, + -0.13772103190422058, + 1.3016324251762039e-33, + 0.038367509841918945, + -0.03686816990375519, + -0.04826223850250244, + 0.03155318275094032, + -0.04401648789644241, + -0.011641849763691425, + -0.018059158697724342, + 0.03913735970854759, + -0.0009704065741971135, + 0.05925643444061279, + 0.07334842532873154, + 0.01672230288386345, + -0.05734793841838837, + -0.058984749019145966, + 0.008267633616924286, + 0.023669162765145302, + 0.09667403995990753, + 0.03986622393131256, + -0.013534638099372387, + -0.014825202524662018, + -0.03437715023756027, + 0.019769111648201942, + -0.1132291853427887, + 0.05057632178068161, + 0.017946787178516388, + 0.024122096598148346, + 0.0535491518676281, + 0.037874817848205566, + -0.014750569127500057, + -0.01834402047097683, + -0.09059760719537735, + -0.04192930459976196, + 0.08912716805934906, + 0.04788539931178093, + -0.03991125896573067, + 0.0004279045097064227, + 0.04488298296928406, + -0.06899280101060867, + -0.056837912648916245, + -0.007592559326440096, + 0.04189908877015114, + 0.011492202989757061, + 0.04804621636867523, + 0.011953657492995262, + -0.08754954487085342, + 0.07838475704193115, + -0.10787651687860489, + 0.01349805761128664, + -0.04757167026400566, + 0.07507891952991486, + 0.026657000184059143, + -0.07402662187814713, + -0.002976497169584036, + 0.01570168137550354, + -0.013940173201262951, + -0.01737610250711441, + -0.014916593208909035, + -0.044423285871744156, + 0.07261645793914795, + 0.07030369341373444, + -0.029960600659251213, + -0.015557250007987022, + 0.02340318076312542, + -0.007604652550071478, + 0.02821202576160431, + -0.004077496938407421, + 0.002979273209348321, + -0.02545534074306488, + -0.015736469998955727, + -0.06027112901210785, + 0.08983257412910461, + 0.06378428637981415, + -0.039235278964042664, + -0.04567277804017067, + -0.05802648141980171, + -0.04973394796252251, + 0.01669437624514103, + 0.003940250258892775, + -0.10332164913415909, + 0.00389911700040102, + -0.06732891499996185, + -0.05310080945491791, + 0.015420854091644287, + 0.03999338299036026, + -0.11606717109680176, + 0.025902455672621727, + 0.04102678224444389, + 0.04445558786392212, + 0.06577075272798538, + 0.02217177301645279, + -0.07073329389095306, + 0.09288500249385834, + -0.02538750320672989, + 0.12660914659500122, + 0.005379182752221823, + -2.3087034506374948e-08, + -0.038455426692962646, + -0.05029148980975151, + 0.05491027608513832, + -0.038823917508125305, + 0.06425955146551132, + -0.06853579729795456, + 0.020830539986491203, + -0.029485851526260376, + -0.042109061032533646, + -0.08037713170051575, + 0.029549723491072655, + 0.02843569777905941, + -0.03353165090084076, + -0.06024472787976265, + 0.07260891795158386, + 0.004138873424381018, + -0.053320642560720444, + 0.026315908879041672, + -0.046451762318611145, + -0.09556969255208969, + 0.0330110527575016, + 0.05095646157860756, + 0.09537426382303238, + -0.06563738733530045, + 0.017321472987532616, + 0.04518701136112213, + -0.02120261825621128, + 0.10382427275180817, + 0.07791443914175034, + 0.03060915321111679, + 0.02570856362581253, + 0.03756484016776085, + 0.04009702801704407, + -0.02534233219921589, + -0.1179761216044426, + -0.04021783545613289, + -0.04987088218331337, + 0.015898751094937325, + 0.06823046505451202, + 0.0745839774608612, + 0.019608793780207634, + -0.06429754942655563, + -0.11422203481197357, + 0.04354821890592575, + -0.06076297536492348, + -0.024325553327798843, + -0.0012349465396255255, + -0.08108838647603989, + -0.09893890470266342, + -0.1353861391544342, + -0.06093287095427513, + 0.010366685688495636, + 0.053609699010849, + 0.04079187661409378, + 0.0084315724670887, + 0.06785338371992111, + 0.02794252149760723, + -0.0844123363494873, + -0.02366200089454651, + 0.03060198947787285, + 0.02322499454021454, + 0.07722645252943039, + 0.03204120695590973, + -0.046232227236032486 + ], + "clock-countdown-bold||times,timer,alarm,schedule,events,watch": [ + 0.021866554394364357, + -0.004451030865311623, + -0.04114770516753197, + -0.00027115183183923364, + 0.014717365615069866, + 0.09866593778133392, + 0.09137222170829773, + 0.003597938921302557, + 0.07830268889665604, + -0.03489762544631958, + -0.01590212993323803, + -0.014365662820637226, + 0.02204226143658161, + -0.008829841390252113, + -0.026435067877173424, + -0.029187271371483803, + -0.007557816803455353, + 0.013724323362112045, + 0.02890545316040516, + -0.03541802614927292, + 0.03551354259252548, + -0.03427552059292793, + 0.034549880772829056, + 0.0851239264011383, + 0.011888866312801838, + 0.016415411606431007, + 0.028288403525948524, + 0.013899428769946098, + 0.04695684462785721, + -0.008555651642382145, + -0.024935021996498108, + -0.04997466877102852, + 0.08058081567287445, + -0.0011734779691323638, + 0.029191767796874046, + 0.0037981243804097176, + 0.042857825756073, + -0.011271814815700054, + -0.07022325694561005, + 0.036008767783641815, + 0.05063064768910408, + -0.08013863861560822, + 0.027324922382831573, + 0.020052993670105934, + -0.004027363378554583, + 0.028474649414420128, + -0.061518967151641846, + -0.06604398041963577, + -0.04680788516998291, + 0.03990078344941139, + 0.014635149389505386, + -0.012856165878474712, + -0.035181134939193726, + -0.034736890345811844, + 0.11379583179950714, + 0.09976016730070114, + -0.04010654613375664, + -0.012282890267670155, + 0.05489051714539528, + 0.007154339924454689, + -0.004313589073717594, + 0.02756175585091114, + -0.03645223751664162, + 0.054511137306690216, + -0.01915595680475235, + 0.04229852557182312, + -0.04409157484769821, + 0.0318123921751976, + 0.04137583076953888, + 0.006780981086194515, + -0.011446511372923851, + 0.008134225383400917, + 0.060579411685466766, + 0.011208304204046726, + -0.07593762874603271, + 0.01747371256351471, + 0.04075247049331665, + -0.024300135672092438, + -0.013353560119867325, + -0.0650845542550087, + -0.10854575783014297, + -0.12068435549736023, + -0.020689737051725388, + -0.007906301878392696, + 0.07599642872810364, + -0.031661149114370346, + 0.0129653699696064, + 0.028823452070355415, + -0.036390021443367004, + -0.04551522806286812, + -0.060438454151153564, + -0.021716531366109848, + 0.019272804260253906, + 0.04074777662754059, + -0.06124272570014, + 0.069578617811203, + 0.03896632418036461, + 0.038468245416879654, + -0.04867422953248024, + 0.03881893679499626, + -0.005727802403271198, + 0.015639960765838623, + -0.031671877950429916, + 0.04470494017004967, + -0.05444802716374397, + -0.04811029136180878, + -0.0635552853345871, + -0.009974049404263496, + -0.022108711302280426, + 0.0015826886519789696, + 0.00903998501598835, + -0.06801941245794296, + 0.050144825130701065, + -0.04720495268702507, + 0.06198470667004585, + -0.012125109322369099, + -0.08044977486133575, + -0.004304042086005211, + 0.12005951255559921, + 0.09432993084192276, + 0.06550614535808563, + 0.0014036712236702442, + -0.08212801069021225, + -0.0699794739484787, + -0.008628522977232933, + 0.07096514850854874, + 0.04298025369644165, + -3.630288019852102e-33, + 0.039154019206762314, + 0.004008780233561993, + -0.053734030574560165, + 0.041046254336833954, + 0.06075236573815346, + 0.029132114723324776, + -0.06342586874961853, + -0.027100730687379837, + -0.015914907678961754, + 0.09295713156461716, + 0.03904981166124344, + -0.0038195522502064705, + -0.05306324362754822, + 0.04715448617935181, + 0.03935408592224121, + -0.02620215155184269, + 0.05719475448131561, + 0.03677932545542717, + -0.023794980719685555, + -0.05597812682390213, + -0.06385660916566849, + 0.04058423638343811, + -0.07019705325365067, + 0.02034725435078144, + 0.0397912859916687, + 0.0022842497564852238, + -0.012089439667761326, + -0.04685715585947037, + -0.03625566512346268, + 0.02836977317929268, + 0.09234730154275894, + -0.03268492966890335, + -0.013883234933018684, + 0.006463048048317432, + 0.06256844848394394, + -0.01974361576139927, + -0.027824528515338898, + 0.01870887167751789, + -0.006282486021518707, + -0.039703454822301865, + -0.09361249953508377, + -0.09282682090997696, + -0.07262535393238068, + -0.05648169666528702, + 0.04068038612604141, + 0.046174056828022, + 0.04373949393630028, + 0.016361583024263382, + 0.027890413999557495, + 0.019848553463816643, + 0.00910157896578312, + 0.007112405262887478, + 0.03339932858943939, + -0.07644792646169662, + 0.05159514397382736, + 0.0394110232591629, + 0.052402060478925705, + 0.03779856488108635, + 0.01142504159361124, + 0.06881348788738251, + 0.0028534168377518654, + 0.030852222815155983, + 0.05667489767074585, + -0.07700099796056747, + -0.0013411097461357713, + 0.08086024969816208, + -0.015079771168529987, + -0.0020597362890839577, + 0.07816915214061737, + 0.04073686525225639, + -0.012834765948355198, + 0.0518978051841259, + 0.07075455039739609, + 0.053697068244218826, + -0.024540504440665245, + 0.060760628432035446, + 0.10524077713489532, + -0.03487483784556389, + -0.037255559116601944, + -0.010245423763990402, + -0.001514562638476491, + -0.01618281938135624, + 0.0031314068473875523, + 0.07072553038597107, + 0.06463833153247833, + 0.010933865793049335, + -0.009721264243125916, + -0.05662509799003601, + -0.024772921577095985, + 0.019005393609404564, + -0.030326340347528458, + -0.040856245905160904, + 0.05925728380680084, + -0.03844281658530235, + -0.20379440486431122, + 9.121631369224519e-34, + 0.0399138480424881, + -0.029819505289196968, + -0.052151113748550415, + -0.055927637964487076, + 0.01520366221666336, + -0.013007890433073044, + -0.019274365156888962, + 0.013399014249444008, + 0.02558801881968975, + 0.03538070246577263, + 0.05397918075323105, + 0.02801220677793026, + -0.04121151193976402, + -0.047366149723529816, + -0.06354968249797821, + 0.0008357152692042291, + 0.09692643582820892, + 0.04882051423192024, + -0.003106115385890007, + -0.023418867960572243, + -0.030247163027524948, + 0.027148300781846046, + -0.1385691612958908, + -0.0017004063120111823, + 0.04981326311826706, + 0.03198850154876709, + 0.028130091726779938, + 0.02772064134478569, + 0.010944820009171963, + 0.016396021470427513, + -0.05717155709862709, + -0.07911133021116257, + 0.08865427225828171, + 0.03506309166550636, + -0.05261740833520889, + 0.01133430004119873, + 0.10746397078037262, + -0.05759769678115845, + -0.054992616176605225, + -0.044316016137599945, + 0.017605891451239586, + -0.0015664814272895455, + 0.07782132923603058, + -0.03042386658489704, + -0.08116624504327774, + 0.0662001222372055, + -0.08322155475616455, + 0.022653868421912193, + -0.05424338951706886, + 0.04301614314317703, + -0.036653660237789154, + -0.08248556405305862, + -0.03467296436429024, + 0.04713120684027672, + -0.06295273452997208, + -0.039367251098155975, + -0.02583184652030468, + -0.0390499047935009, + 0.03878996893763542, + 0.05212955176830292, + -0.043236296623945236, + -0.009299100376665592, + -0.0004161536053288728, + 0.04630289226770401, + 0.02899038977921009, + 0.010770544409751892, + -0.01430528424680233, + -0.03179573640227318, + -0.028349552303552628, + -0.08946073800325394, + 0.05768797919154167, + 0.010711290873587132, + -0.052521511912345886, + -0.0032346295192837715, + -0.07037315517663956, + -0.039659906178712845, + -0.038361966609954834, + 0.06204540282487869, + -0.08065247535705566, + -0.02362687699496746, + -0.03698132559657097, + -0.08378880470991135, + -0.004157933872193098, + 0.03487711027264595, + -0.08576551824808121, + 0.06859717518091202, + 0.053978100419044495, + 0.06889209151268005, + 0.030033400282263756, + -0.007057742215692997, + -0.08428996801376343, + 0.06921961158514023, + 0.004327660426497459, + 0.06955589354038239, + 0.007369366940110922, + -2.0449766324759366e-08, + -0.02854742482304573, + -0.028839854523539543, + 0.0034911897964775562, + -0.1018817275762558, + 0.04183514416217804, + -0.0420662984251976, + -0.016649864614009857, + -0.060051437467336655, + -0.034987859427928925, + -0.0480838343501091, + 0.05200381204485893, + -0.0072408150881528854, + -0.06535792350769043, + -0.07885090261697769, + 0.034502312541007996, + -0.029546938836574554, + -0.05191721394658089, + 0.042665544897317886, + -0.019405188038945198, + -0.06360611319541931, + -0.014923617243766785, + 0.07035187631845474, + 0.06940985471010208, + -0.07249040901660919, + 0.017323922365903854, + 0.047598425298929214, + -0.05943522974848747, + 0.07258057594299316, + 0.08086348325014114, + 0.07477805018424988, + 0.041520725935697556, + 0.07646623253822327, + -0.040685512125492096, + -0.013658454641699791, + -0.11463356018066406, + -0.07150284200906754, + -0.062409307807683945, + -0.009082300588488579, + 0.05670803040266037, + 0.09316243976354599, + 0.033740151673555374, + -0.10013337433338165, + -0.12122833728790283, + 0.061634134501218796, + -0.019830239936709404, + -0.06134229153394699, + 0.026649456471204758, + -0.1273362636566162, + -0.06455716490745544, + -0.11807972937822342, + -0.041707247495651245, + 0.03204665705561638, + 0.03883125260472298, + 0.015241517685353756, + 0.0414566770195961, + 0.03446965664625168, + 0.06916002184152603, + -0.05511276423931122, + -0.019268440082669258, + 0.046402230858802795, + 0.05686531215906143, + 0.05032720789313316, + 0.01172203291207552, + -0.03911063075065613 + ], + "clock-counter-clockwise-bold||times,timer,alarm,schedule,events,backup,rewind,history": [ + 0.01674630492925644, + -0.008479002863168716, + -0.05132612586021423, + -0.018956197425723076, + 0.0033066831529140472, + 0.09115085005760193, + 0.06258831173181534, + -0.014443633146584034, + 0.05470464751124382, + -0.031570158898830414, + 0.01422884687781334, + 0.027796044945716858, + 0.011052649468183517, + -0.026829319074749947, + -0.08586609363555908, + -0.013027166947722435, + -0.042803388088941574, + 0.010175205767154694, + 0.02841184101998806, + -0.02803068794310093, + -0.022557493299245834, + -0.03408737853169441, + 0.01890447363257408, + 0.075872503221035, + 0.008687077090144157, + 0.06574904173612595, + 0.04084189236164093, + 0.028925428166985512, + 0.0050724889151751995, + -0.07832560688257217, + -0.06574420630931854, + -0.02338688261806965, + 0.050275128334760666, + -0.01203817781060934, + -0.041615862399339676, + -0.017299875617027283, + 0.034257858991622925, + 0.0200778990983963, + -0.0030524388421326876, + 0.028885025531053543, + 0.02368316426873207, + -0.06950001418590546, + 0.020936084911227226, + 0.008434297516942024, + -0.02556079626083374, + 0.060970935970544815, + -0.07156243175268173, + -0.03541610389947891, + -0.04189431294798851, + 0.06208690255880356, + -0.0037423595786094666, + -0.02172006294131279, + -0.08855421096086502, + -0.0036487714387476444, + 0.10739759355783463, + 0.11629973351955414, + 0.009484587237238884, + -0.00578104006126523, + 0.03678378462791443, + 0.011636107228696346, + 0.017100265249609947, + 0.0365024209022522, + -0.09607820957899094, + 0.08325596153736115, + 0.01625923626124859, + 0.030813569203019142, + -0.04638625308871269, + 0.017539802938699722, + 0.042902447283267975, + -0.006542446091771126, + -0.005645750090479851, + 0.02662612870335579, + 0.0012071517994627357, + -0.0009008201886899769, + -0.019728899002075195, + -0.007958579808473587, + 0.03605091944336891, + -0.00246839364990592, + -0.07516295462846756, + -0.08303526788949966, + -0.08529637008905411, + -0.04096502438187599, + -0.010417032986879349, + 0.049731891602277756, + 0.1220167800784111, + -0.0076771946623921394, + -0.032586414366960526, + 0.046560805290937424, + 0.0019094505114480853, + -0.01600438728928566, + -0.06938953697681427, + -0.03258857876062393, + 0.0513392798602581, + -0.017171872779726982, + -0.016065482050180435, + 0.07375586777925491, + 0.024100515991449356, + 0.014653257094323635, + -0.032982226461172104, + 0.0376170352101326, + 0.027128029614686966, + -0.02431034855544567, + -0.010643157176673412, + 0.051292259246110916, + -0.005560751538723707, + -0.04609677940607071, + -0.06836383789777756, + -0.016055000945925713, + -0.03835488110780716, + -0.005431997589766979, + -0.014206708408892155, + -0.03168482333421707, + 0.021002238616347313, + -0.07512303441762924, + 0.0733889564871788, + -0.052125874906778336, + -0.1327168047428131, + 0.033505894243717194, + 0.1143011823296547, + 0.0738004818558693, + 0.039749305695295334, + -0.019055752083659172, + -0.07814089953899384, + -0.07758618146181107, + -0.020204579457640648, + 0.04232000187039375, + 0.0651523768901825, + -3.5526047409940415e-33, + 0.03636366128921509, + 0.03713713213801384, + -0.00825588684529066, + 0.025343336164951324, + 0.07539282739162445, + 0.04275939241051674, + -0.06665125489234924, + -0.017638374119997025, + -0.000467356585431844, + 0.05689588934183121, + 0.08451110124588013, + 0.03956512734293938, + -0.07132861018180847, + 0.01874637044966221, + 0.03115527145564556, + -0.026240095496177673, + 0.041648585349321365, + 0.07974343746900558, + -0.046391069889068604, + -0.07694434374570847, + -0.05969058722257614, + 0.07019845396280289, + -0.029947545379400253, + -0.01482783630490303, + 0.06484955549240112, + -0.012142658233642578, + 0.05056522414088249, + -0.021807581186294556, + -0.06530170142650604, + 0.02080267295241356, + 0.09166902303695679, + -0.02310555800795555, + -0.017207631841301918, + -0.03158634155988693, + 0.07480219751596451, + 0.02437995746731758, + -0.01713395304977894, + -0.02905408665537834, + 0.005938713904470205, + 0.012870569713413715, + -0.08293778449296951, + -0.07226350903511047, + -0.12224971503019333, + -0.05218780040740967, + 0.04964601621031761, + 0.011622894555330276, + 0.03301648050546646, + 0.03152858465909958, + 0.031974297016859055, + 0.024030843749642372, + 0.007160978391766548, + 0.01628715731203556, + 0.006974524352699518, + -0.08274924755096436, + 0.019931094720959663, + 0.03931741043925285, + 0.06075841560959816, + 0.07588142156600952, + -0.022192221134901047, + 0.1037050187587738, + 0.05653791502118111, + 0.10181348770856857, + 0.04178549721837044, + -0.050867874175310135, + -0.027302999049425125, + 0.03830187767744064, + -0.05458004027605057, + -0.047797054052352905, + 0.10159534960985184, + 0.03858788311481476, + -0.030545879155397415, + -0.008079304359853268, + 0.04755757749080658, + 0.03223276510834694, + -0.014425563625991344, + 0.04259738698601723, + 0.0576741024851799, + 0.0021651468705385923, + -0.016932092607021332, + -0.019795352593064308, + -0.06212092563509941, + -0.018809378147125244, + -0.04991748183965683, + 0.013147118501365185, + 0.04006559029221535, + -0.029609892517328262, + 0.018750987946987152, + -0.06175203621387482, + -0.03120739385485649, + -0.005403178744018078, + -0.031606435775756836, + -0.031193429604172707, + 0.06325163692235947, + 0.016536770388484, + -0.17306353151798248, + 1.2171175037589508e-33, + 0.015580728650093079, + -0.03477618470788002, + -0.024405626580119133, + -0.0003856496186926961, + -0.041885096579790115, + 0.0006604955997318029, + -0.004131508991122246, + 0.010439498350024223, + 0.002219992922618985, + 0.027774007990956306, + 0.08310996741056442, + 0.009377921931445599, + -0.02425122819840908, + -0.0490974485874176, + 0.002732947701588273, + 0.013412359170615673, + 0.09210740029811859, + 0.04184504970908165, + -0.04138748347759247, + -0.011290201917290688, + -0.03359239920973778, + -0.02085745520889759, + -0.09866210073232651, + 0.030152464285492897, + 0.011837618425488472, + 0.029003160074353218, + 0.0486835278570652, + -0.004059681668877602, + 0.03504372015595436, + -0.016206564381718636, + -0.056175597012043, + -0.07705160230398178, + 0.10221898555755615, + 0.0591609850525856, + -0.06260008364915848, + -0.025864558294415474, + 0.06145107001066208, + -0.05255287140607834, + -0.05192291736602783, + -0.01685677468776703, + 0.051723018288612366, + 0.02986650913953781, + 0.08905867487192154, + -0.008073164150118828, + -0.10123488306999207, + 0.05946015194058418, + -0.13166141510009766, + 0.05012419447302818, + -0.02449088916182518, + 0.042672012001276016, + 0.007354988716542721, + -0.06787111610174179, + -0.029235683381557465, + 0.005751265678554773, + -0.03672708570957184, + -0.0061088078655302525, + 0.0034701002296060324, + -0.0446644090116024, + 0.0744408667087555, + 0.05051686614751816, + -0.04598420485854149, + -0.014227191917598248, + -0.0008230373496189713, + -0.006948504596948624, + 0.0029164026491343975, + -0.017696451395750046, + -0.019961116835474968, + -0.036429643630981445, + -0.06037721037864685, + -0.061196379363536835, + 0.06675998866558075, + 0.04322483763098717, + -0.06809914857149124, + -0.05272233486175537, + -0.06937966495752335, + -0.023930443450808525, + -0.011236230842769146, + 0.008725602179765701, + -0.10024430602788925, + -9.028718341141939e-05, + -0.06540003418922424, + -0.057600606232881546, + 0.012330733239650726, + 0.04883652925491333, + -0.0950642004609108, + 0.040213000029325485, + 0.012681105174124241, + 0.04002886265516281, + 0.06896854192018509, + 0.020989028736948967, + -0.06705450266599655, + 0.09324456751346588, + -0.002830653451383114, + 0.10595883429050446, + 0.024546293541789055, + -2.4008301124922582e-08, + -0.0460137277841568, + -0.045741163194179535, + 0.08956404775381088, + -0.04983142018318176, + 0.038003869354724884, + -0.08128322660923004, + 0.051605500280857086, + -0.02126086689531803, + -0.039038266986608505, + -0.058134954422712326, + 0.04597551375627518, + 0.017887219786643982, + -0.044782157987356186, + -0.054327741265296936, + 0.05408377945423126, + 0.0031896596774458885, + -0.021937137469649315, + 0.021268175914883614, + -0.012239152565598488, + -0.07999566942453384, + 0.036176376044750214, + 0.024686112999916077, + 0.08273833245038986, + -0.05087486281991005, + -0.014100272208452225, + 0.07931730896234512, + -0.04135427996516228, + 0.11943838745355606, + 0.08144780993461609, + 0.04814351350069046, + 0.025501588359475136, + 0.05245640501379967, + 0.0178676825016737, + -0.06488699465990067, + -0.09628908336162567, + -0.05140306055545807, + -0.05283832177519798, + 0.014513881877064705, + 0.033414099365472794, + 0.05786925181746483, + 0.02586841955780983, + -0.08682598918676376, + -0.10350992530584335, + 0.06722903251647949, + -0.0172329880297184, + -0.03607708215713501, + 0.019642140716314316, + -0.06410551071166992, + -0.08593562990427017, + -0.13257499039173126, + -0.06266096234321594, + 0.0068006692454218864, + 0.0712335854768753, + 0.03429906815290451, + 0.02932913228869438, + 0.07881723344326019, + 0.04046556353569031, + -0.0641428530216217, + -0.04651307687163353, + 0.011932243593037128, + 0.03612428158521652, + 0.10296287387609482, + -0.001643760479055345, + -0.02327899821102619 + ], + "clock-user-bold||*new*,times,timer,shift,schedule,events,watch": [ + -0.011348055675625801, + -0.039137013256549835, + -0.06467797607183456, + 0.017929257825016975, + 0.015325271524488926, + 0.04006335139274597, + 0.12165873497724533, + -0.03266778960824013, + 0.045614875853061676, + -0.020415667444467545, + -0.05428655445575714, + -0.019228095188736916, + -0.005136857274919748, + -0.026852600276470184, + 0.0021382090635597706, + -0.021037984639406204, + 0.01586260460317135, + 0.01965465024113655, + 0.033390190452337265, + -0.07277791202068329, + 0.04993848130106926, + -0.07117431610822678, + 0.01989779621362686, + 0.06944677978754044, + 0.026176834478974342, + 0.0037321869749575853, + 0.04410253092646599, + 0.009442424401640892, + 0.0521305613219738, + -0.021015038713812828, + -0.03666015714406967, + -0.039418965578079224, + 0.0879400223493576, + 0.020725728943943977, + 0.02679264545440674, + 0.01113393995910883, + 0.03798075020313263, + 0.009012230671942234, + -0.045519065111875534, + -0.01321034599095583, + 0.06285416334867477, + -0.05112981051206589, + 0.006612790282815695, + 0.019103260710835457, + -0.017014004290103912, + 0.0180466677993536, + -0.03867735713720322, + -0.06422042846679688, + -0.03807814046740532, + 0.06262046843767166, + 0.0036112526431679726, + -0.024729778990149498, + -0.0278460793197155, + -0.04625597223639488, + 0.13162270188331604, + 0.08816388994455338, + 2.355893957428634e-05, + -0.00843396969139576, + 0.05695740133523941, + -0.029049774631857872, + 0.0016157920472323895, + 0.04395067319273949, + -0.041123535484075546, + 0.049358803778886795, + -0.011213909834623337, + 0.03861884027719498, + -0.07238501310348511, + 0.014160613529384136, + 0.02123471163213253, + 0.008953328244388103, + -0.06538612395524979, + 0.014369625598192215, + 0.006936919875442982, + 0.001355423009954393, + -0.07231258600950241, + -0.04498689994215965, + -0.0056995125487446785, + -0.026230882853269577, + -0.02530749700963497, + -0.05202404037117958, + -0.09343190491199493, + -0.08414185792207718, + -0.010860106907784939, + 0.016551997512578964, + 0.1264079362154007, + 0.027057036757469177, + -0.01147863082587719, + 0.012094433419406414, + -0.030933521687984467, + -0.032357294112443924, + -0.029661018401384354, + 0.01178685761988163, + 0.0025193856563419104, + -0.004243860952556133, + -0.07349857687950134, + 0.07627193629741669, + 0.04419785737991333, + 0.04745090752840042, + -0.04312294349074364, + 0.09178747236728668, + -0.039695315062999725, + 0.025551611557602882, + -0.017636513337492943, + 0.05075714364647865, + -0.01423633936792612, + -0.011917945928871632, + -0.05332300812005997, + -0.0311906635761261, + -0.07035607844591141, + 0.07021492719650269, + 0.027112876996397972, + -0.03715843707323074, + -0.015846164897084236, + -0.07491062581539154, + 0.061106953769922256, + 0.024300897493958473, + -0.11196766048669815, + 0.011683857999742031, + 0.1100860983133316, + 0.13584384322166443, + 0.10624633729457855, + -0.006565209478139877, + -0.09464263170957565, + -0.027660807594656944, + 0.0032430298160761595, + 0.04784942418336868, + 0.07274699211120605, + -2.8403807953544794e-33, + 0.041954755783081055, + 0.029096532613039017, + -0.041877102106809616, + 0.04465441033244133, + 0.053097084164619446, + 0.09242016822099686, + -0.061357494443655014, + -0.020600805059075356, + 0.009495621547102928, + 0.022168442606925964, + 0.09883332997560501, + 0.009337300434708595, + -0.028764355927705765, + 0.02290351502597332, + 0.044662296772003174, + -0.03717678785324097, + 0.06881415843963623, + 0.021526983007788658, + -0.02807515673339367, + -0.060201045125722885, + -0.09099318832159042, + 0.056303828954696655, + -0.06987607479095459, + 0.02401021309196949, + 0.01700812578201294, + -0.018028676509857178, + 0.011770800687372684, + -0.04179896041750908, + -0.010375961661338806, + 0.03659280389547348, + 0.03346648067235947, + -0.027964653447270393, + -0.03258239105343819, + 0.035533029586076736, + 0.04367973282933235, + 0.01689089834690094, + -0.06349755078554153, + -0.0021763527765870094, + -0.002345775021240115, + 0.001635913155041635, + -0.09398245066404343, + -0.07130476832389832, + -0.08219284564256668, + -0.09147316962480545, + -0.030368944630026817, + 0.03125575929880142, + 0.012037405744194984, + 0.011084123514592648, + 0.009233654476702213, + 0.010956027545034885, + 0.023920398205518723, + 0.0324273444712162, + 0.027918800711631775, + -0.11048921942710876, + 0.0513300895690918, + 0.013089939020574093, + 0.04813330993056297, + 0.07007111608982086, + 0.06461552530527115, + 0.060654908418655396, + 0.012990949675440788, + 0.05925004929304123, + 0.06638699024915695, + 0.013222691603004932, + -0.029991213232278824, + 0.043135371059179306, + -0.022665511816740036, + -0.02032041922211647, + 0.06796422600746155, + 0.039129141718149185, + -0.02904987893998623, + 0.028001610189676285, + 0.03473518043756485, + 0.06346110999584198, + -0.0522468239068985, + 0.018969066441059113, + 0.06349483132362366, + 0.008713779971003532, + -0.041596733033657074, + -0.05583424121141434, + -0.0033207947853952646, + -0.042810823768377304, + -0.008678971789777279, + 0.0725533664226532, + 0.03535694256424904, + -0.03150249645113945, + -0.03348446264863014, + -0.03790813311934471, + -0.03355984762310982, + -0.029384642839431763, + -0.0018643366638571024, + -0.08877943456172943, + 0.059134043753147125, + -0.02859247848391533, + -0.1941886693239212, + 2.8971714184805374e-35, + 0.04530583322048187, + -0.020789308473467827, + -0.006267031654715538, + -0.03479066863656044, + -0.022084100171923637, + -0.02976975217461586, + -0.04212680086493492, + 0.013602146878838539, + 0.04402834177017212, + 0.036817990243434906, + 0.09101127833127975, + 0.0016248584724962711, + -0.06199483573436737, + -0.03505832329392433, + -0.005965775810182095, + 0.04053075984120369, + 0.05318767577409744, + 0.014185488224029541, + -0.03538775444030762, + -0.028281159698963165, + -0.007625353056937456, + 0.012051018886268139, + -0.08593834936618805, + -0.009360771626234055, + 0.04305657371878624, + -0.023666035383939743, + 0.050371911376714706, + 0.041747864335775375, + -0.01894952729344368, + -0.019554100930690765, + -0.09150394797325134, + -0.04504265636205673, + 0.029543820768594742, + 0.03256338834762573, + -0.026402341201901436, + 0.011208386160433292, + 0.02218189463019371, + -0.0076929074712097645, + -0.03243345767259598, + 0.033199846744537354, + 0.05114162340760231, + 0.01702386699616909, + 0.03124949336051941, + -0.0448344461619854, + -0.09727277606725693, + 0.10432540625333786, + -0.08700282871723175, + 0.0034176770132035017, + -0.0675378367304802, + 0.04608257859945297, + 0.025080207735300064, + -0.09312362223863602, + 0.01626553013920784, + -0.043213967233896255, + -0.07893678545951843, + -0.0016399035230278969, + 0.041532423347234726, + -0.04681384935975075, + 0.050830572843551636, + 0.04179884493350983, + -0.04693704470992088, + -0.03372213989496231, + -0.029286367818713188, + 0.06727147102355957, + 0.024256911128759384, + -0.01202274952083826, + -0.013499206863343716, + -0.03880319371819496, + -0.03799857199192047, + -0.07750941812992096, + 0.1011108011007309, + -0.03287295997142792, + -0.08704576641321182, + 0.01039440743625164, + -0.06534477323293686, + -0.018104881048202515, + -0.00343671184964478, + 0.01628997176885605, + -0.08119833469390869, + -0.0016449877293780446, + -0.010500432923436165, + -0.03322248160839081, + 0.02506401762366295, + -0.015905452892184258, + -0.0834280401468277, + 0.09898627549409866, + 0.0016467106761410832, + 0.05336761474609375, + 0.033598996698856354, + -0.03457538038492203, + -0.0961403176188469, + 0.08526144176721573, + -0.03236597776412964, + 0.0725913792848587, + -0.020548708736896515, + -2.331275261724386e-08, + -0.06610125303268433, + -0.04513990506529808, + 0.019642185419797897, + -0.041328493505716324, + 0.04537646099925041, + -0.06300941109657288, + -0.02853163704276085, + -0.09828490763902664, + 0.01644851826131344, + -0.030115948989987373, + 0.05346762388944626, + -0.03366048261523247, + -0.0011794202728196979, + -0.08186808228492737, + 0.0824156105518341, + 0.0028166158590465784, + -0.013071893714368343, + 0.035578638315200806, + -0.05617754906415939, + -0.05491765961050987, + 0.022783707827329636, + 0.10013935714960098, + 0.06315521895885468, + -0.03620275482535362, + -0.01099069882184267, + 0.04699249193072319, + -0.08404447138309479, + 0.04581131041049957, + 0.08703736960887909, + 0.07019040733575821, + 0.07065928727388382, + 0.1043761745095253, + 0.027391446754336357, + -0.02372266724705696, + -0.11493758857250214, + -0.06385742127895355, + -0.09849175065755844, + 0.017274443060159683, + 0.036623548716306686, + 0.12590907514095306, + 0.009933418594300747, + -0.077666275203228, + -0.08614717423915863, + 0.04682605713605881, + -0.0746835470199585, + -0.0399906150996685, + 0.026982391253113747, + -0.08611176162958145, + -0.02373396046459675, + -0.10916297882795334, + -0.03492376580834389, + 0.0237022265791893, + 0.04587969928979874, + 0.027146052569150925, + -0.0017138730036094785, + 0.0475892648100853, + 0.0768987312912941, + 0.010645358823239803, + -0.028336504474282265, + -0.04024631530046463, + 0.022905860096216202, + 0.04249001666903496, + -0.0031187471468001604, + 0.022483281791210175 + ], + "closed-captioning-bold||subtitles,television,tv,transcribed,transcription,accessibility,a11y": [ + 0.002763851312920451, + -0.09083972871303558, + -0.003491074312478304, + -0.05156185105443001, + 0.06192363053560257, + 0.03413805365562439, + 0.03540274128317833, + 0.025211142376065254, + 0.008316846564412117, + -0.03372493013739586, + -0.033143043518066406, + -0.028549784794449806, + 0.025657037273049355, + -0.008913101628422737, + -0.0644330158829689, + -0.009505054913461208, + 0.06996660679578781, + 0.003882406512275338, + 0.007439043372869492, + -0.01807231269776821, + 0.09295200556516647, + 0.13122691214084625, + 0.06867140531539917, + 0.019770244136452675, + 0.08519463241100311, + -0.02402636781334877, + -0.02748304046690464, + 0.032658882439136505, + 0.009197687730193138, + -0.06998384743928909, + -0.08349769562482834, + 0.015362134203314781, + 0.15192905068397522, + 0.0321604423224926, + 0.05542967841029167, + 0.05767045542597771, + 0.0007245841552503407, + -0.0287935733795166, + -0.013378376141190529, + 0.04409696161746979, + -0.018541697412729263, + -0.05343528836965561, + 0.014760351739823818, + 0.030242279171943665, + -0.016563933342695236, + -0.03377532213926315, + -0.10867717862129211, + -0.0662478506565094, + -0.021753722801804543, + 0.036798007786273956, + -0.07661837339401245, + -0.040456075221300125, + -0.029381660744547844, + 0.006350352894514799, + -0.011849136091768742, + -0.025627288967370987, + 0.023211175575852394, + 0.003917009104043245, + 0.07603652775287628, + -0.017942503094673157, + -0.03791286423802376, + -0.04938187450170517, + 0.019085215404629707, + 0.09976114332675934, + 0.07344469428062439, + -0.012275494635105133, + -0.0018664877861738205, + -0.013752886094152927, + -0.05912746489048004, + 0.040742333978414536, + -0.0816236063838005, + 0.011950859799981117, + -0.002825225004926324, + 0.010719243437051773, + -0.07827036082744598, + -0.013550808653235435, + 0.018182527273893356, + -0.08614286035299301, + 0.03580695763230324, + -0.0814712718129158, + -0.037292562425136566, + -0.11498720198869705, + -0.011633955873548985, + 0.01572335697710514, + -0.01415150985121727, + 0.018838929012417793, + -0.007397976703941822, + -0.06428474932909012, + -0.029579607769846916, + 0.02856779657304287, + -0.12355828285217285, + -0.06449666619300842, + 0.08290084451436996, + 0.03607439622282982, + -0.10367944091558456, + 0.02239045687019825, + 0.004068639129400253, + -0.0028563530649989843, + -0.013555007986724377, + 0.09869701415300369, + 0.04757888615131378, + 0.043092992156744, + -0.006389223504811525, + -0.03154604509472847, + -0.06405546516180038, + -0.06311403959989548, + 0.07557772099971771, + -0.004634332377463579, + -0.010761771351099014, + 0.017328830435872078, + -0.025331350043416023, + -0.0715707540512085, + -0.0354553684592247, + -0.05252864584326744, + 0.033987145870923996, + 0.017101585865020752, + -0.0025667278096079826, + -0.07253878563642502, + 0.059308987110853195, + 0.022002816200256348, + -0.01244226936250925, + 0.051351238042116165, + -0.022127052769064903, + -0.004225361160933971, + 0.001590912463143468, + -0.042708564549684525, + 0.05306954309344292, + -1.869072568334908e-33, + 0.05146363750100136, + 0.00636031711474061, + -0.005287368316203356, + 0.06722760200500488, + 0.05747738480567932, + 0.00846294965595007, + -0.06017480790615082, + 0.030629228800535202, + -0.10315313935279846, + 0.04252421483397484, + 0.04308530315756798, + 0.01759789139032364, + -0.06668578833341599, + 0.013052864000201225, + -0.019401509314775467, + 0.01987677626311779, + 0.009594104252755642, + 0.034391772001981735, + -0.09671741724014282, + 0.012562084943056107, + -0.011503826826810837, + 0.13385175168514252, + 0.06585132330656052, + -0.0013902230421081185, + 0.017378604039549828, + -0.09012588113546371, + 0.01630495674908161, + -0.08813007920980453, + 0.017160288989543915, + 0.03699719160795212, + -0.039402034133672714, + 0.0169270858168602, + 0.012216810137033463, + -0.0006104102940298617, + 0.029883908107876778, + -0.0667647123336792, + -0.0774242952466011, + -0.04324159026145935, + 0.008863636292517185, + 0.01734316349029541, + -0.061924584209918976, + -0.03923015668988228, + -0.06594627350568771, + -0.03144816681742668, + 0.03077058121562004, + 0.051592882722616196, + -0.041932106018066406, + 0.039039257913827896, + 0.016886724159121513, + 0.06224812567234039, + -0.022588655352592468, + 0.04993622750043869, + -0.06252215057611465, + -0.10618793219327927, + 0.07428299635648727, + 0.025249633938074112, + -0.03284971043467522, + 0.04910039156675339, + 0.029397010803222656, + -0.058066051453351974, + 0.05762603506445885, + 0.03707504644989967, + 0.09138138592243195, + -0.04623100906610489, + 0.0010649689938873053, + 0.042176056653261185, + -0.0031619772780686617, + 0.01899031363427639, + 0.08818019181489944, + -0.02537705935537815, + -0.06312529742717743, + -0.010259797796607018, + 0.010172809474170208, + 0.09399956464767456, + -0.036500465124845505, + 0.0891122817993164, + 0.002235688967630267, + -0.03018931671977043, + 0.053948577493429184, + -0.013585533946752548, + -0.017680849879980087, + -0.016093462705612183, + -0.06264898926019669, + 0.02930176444351673, + -0.041947100311517715, + -0.04802533984184265, + -0.009138638153672218, + -0.0769677385687828, + -0.0028839828446507454, + 0.0808548778295517, + -0.061494603753089905, + -0.015013245865702629, + -0.12557508051395416, + -0.07206974178552628, + -0.0619492270052433, + -4.632237986684252e-34, + 0.037026260048151016, + 0.08305823802947998, + -0.09682942181825638, + -0.010842055082321167, + -0.0713534727692604, + -0.04744989052414894, + -0.008891583420336246, + 0.026277566328644753, + 0.11749232560396194, + 0.011686024256050587, + -0.014526905491948128, + -0.046861231327056885, + -0.03157145529985428, + -0.10083255171775818, + -0.02329687774181366, + -0.044702447950839996, + 0.09567219018936157, + 0.054660771042108536, + -0.0158349871635437, + 0.06572356075048447, + -0.007918719202280045, + 0.02697991393506527, + -0.09057892113924026, + 0.08203662186861038, + 0.045642007142305374, + 0.04165193811058998, + -0.020781833678483963, + 0.04830269142985344, + -0.07679274678230286, + -0.016190260648727417, + 0.005404450930655003, + 0.02175135910511017, + -0.01798684522509575, + 0.06012795493006706, + -0.04777294397354126, + 0.032193806022405624, + 0.12014450877904892, + -0.07909398525953293, + -0.02315523847937584, + 0.01064870972186327, + 0.061138153076171875, + 0.009649939835071564, + 0.0017729300307109952, + 0.015933217480778694, + 0.000428810715675354, + -0.04099862277507782, + -0.14902496337890625, + -0.05441366508603096, + 0.004532633349299431, + 0.022252563387155533, + -0.08682286739349365, + -0.05357853323221207, + -0.04327705502510071, + -0.004363480489701033, + -0.011247355490922928, + -0.06041513755917549, + -0.0035972371697425842, + -0.020736610516905785, + 0.02848646603524685, + -0.04151048883795738, + 0.008948766626417637, + 0.05341751128435135, + -0.07555967569351196, + -0.00588530208915472, + 0.05289805680513382, + -0.06959105283021927, + 0.022329315543174744, + -0.01130002923309803, + -0.01712607406079769, + -0.01147259771823883, + 0.10874763876199722, + -0.0733950063586235, + 0.034556228667497635, + 0.018804362043738365, + -0.025166919454932213, + 0.01680581085383892, + 0.015781832858920097, + 0.00041744354530237615, + -0.06268251687288284, + -0.026209024712443352, + 0.000178835034603253, + -0.04203825443983078, + 0.008820978924632072, + 0.10196247696876526, + 0.026575421914458275, + 0.08332198113203049, + 0.029531730338931084, + 0.011057008057832718, + 0.03193872421979904, + 0.03672889992594719, + -0.046573005616664886, + 0.012196405790746212, + -0.044491443783044815, + 0.033356476575136185, + -0.06635966897010803, + -2.3696150819318973e-08, + -0.0064119938760995865, + -0.015107057057321072, + -0.03394094482064247, + 0.0037392412777990103, + -0.0020347211975604296, + -0.04514345899224281, + -0.0909360721707344, + -0.06019483506679535, + 0.00604216055944562, + -0.01888372376561165, + 0.002070182701572776, + 0.04198239743709564, + -0.012847119010984898, + -0.00372954155318439, + 0.02367475815117359, + 0.08704692870378494, + -0.05358000844717026, + 0.05135469138622284, + -0.0016487089451402426, + -0.03510730713605881, + -0.023412054404616356, + 0.05478839948773384, + 0.03787709027528763, + -0.03489851579070091, + -0.03726494312286377, + 0.05670397728681564, + -0.06105097755789757, + 0.016906119883060455, + 0.01848238706588745, + -0.002636590739712119, + 0.1013450026512146, + 0.12960968911647797, + -0.04215679690241814, + -0.056223347783088684, + -0.026989856734871864, + 0.051007047295570374, + 0.020483948290348053, + -0.01538604311645031, + 0.00473255617544055, + 0.10945486277341843, + 0.03724848851561546, + -0.033470332622528076, + -0.016008269041776657, + 0.013608705252408981, + 0.04481622576713562, + 0.0808885246515274, + 0.016475340351462364, + -0.018083367496728897, + -0.002369590802118182, + -0.10760235041379929, + 0.037459198385477066, + -0.04280250519514084, + 0.013814915902912617, + 0.09026939421892166, + 0.01951051689684391, + 0.0071893297135829926, + 0.06236189603805542, + 0.03422350436449051, + 0.010850979015231133, + -0.001942676492035389, + 0.0923122987151146, + 0.08769998699426651, + 0.023030076175928116, + -0.05485845357179642 + ], + "cloud-bold||serverless,backup,storage,meteorology,cloudy,overcast": [ + 0.01742355339229107, + -0.033105965703725815, + 0.08592520654201508, + 0.027550430968403816, + 0.09255558997392654, + -0.05874394252896309, + -0.008327528834342957, + -0.07265263795852661, + 0.0423014871776104, + 0.07309822738170624, + 0.018209781497716904, + 0.024332914501428604, + 0.07549769431352615, + -0.06946941465139389, + -0.002931757364422083, + 0.003299939911812544, + 0.04024503007531166, + -0.09664745628833771, + -0.009382249787449837, + 0.001157639198936522, + -0.1085100769996643, + 0.05515361577272415, + -0.09051638096570969, + 0.03578755259513855, + 0.05410686135292053, + 0.04537134990096092, + -0.0496080219745636, + -0.00771007826551795, + 0.00596267357468605, + -0.055177442729473114, + -0.013910030014812946, + -0.027101796120405197, + 0.03914221376180649, + 0.09491375088691711, + 0.0593700148165226, + 0.028149330988526344, + -0.008666536770761013, + -0.04617250710725784, + -0.06589071452617645, + -0.012322263792157173, + 0.06763431429862976, + -0.09560354053974152, + -0.04796463996171951, + 0.014615349471569061, + -0.053413793444633484, + 0.0028662574477493763, + -0.030966829508543015, + -0.06066015735268593, + 0.023984866216778755, + -0.030530640855431557, + 0.007444747723639011, + -0.06744863837957382, + -0.10830313712358475, + 0.09153180569410324, + 0.0018127455841749907, + 0.04042975604534149, + -0.09458866715431213, + 0.016767848283052444, + 0.025675399228930473, + -0.0225130133330822, + 0.011345341801643372, + -0.012464783154428005, + -0.005081262905150652, + 0.03516250103712082, + 0.12068658322095871, + 0.062407542020082474, + -0.0070041269063949585, + 0.07596408575773239, + 0.003410894889384508, + 0.037835314869880676, + 0.0050944131799042225, + 0.08430106192827225, + -0.017973482608795166, + 0.00010803802433656529, + -0.02259395457804203, + -0.02048012986779213, + 0.029364338144659996, + -0.0011818691855296493, + -0.0014947971794754267, + 0.004207564517855644, + -0.014550206251442432, + -0.04902065917849541, + -0.03563384339213371, + 0.038694873452186584, + -0.04986646771430969, + -0.011176868341863155, + -0.03643687441945076, + -0.041410088539123535, + 0.019397541880607605, + -0.0775178000330925, + -0.04475364461541176, + -0.015089139342308044, + 0.04562430828809738, + 0.055180586874485016, + -0.12085111439228058, + 0.028154049068689346, + 0.07282895594835281, + -0.028374098241329193, + -0.0012346274452283978, + 0.052362311631441116, + 0.006935570854693651, + 0.01538930181413889, + 0.08347301930189133, + -0.011378076858818531, + 0.0006292456528171897, + -0.05911321938037872, + -0.0016655907966196537, + -0.02010556496679783, + -0.01659821905195713, + -0.02951132506132126, + -0.0840255618095398, + -0.039905328303575516, + -0.02983742766082287, + -0.03501274809241295, + 0.012870779260993004, + -0.04326667636632919, + -0.046207889914512634, + -0.00028755838866345584, + -0.019115963950753212, + -0.022051837295293808, + 0.0543491430580616, + -0.10108128935098648, + 0.05136345699429512, + -0.014275707304477692, + 0.004736317787319422, + 0.037179965525865555, + 0.013924756087362766, + -1.1973560661891858e-33, + 0.12156445533037186, + 0.03501258045434952, + -0.003999343141913414, + 0.013300993479788303, + 0.143334299325943, + -0.0030066620092839003, + -0.07142184674739838, + -0.06105491518974304, + -0.09986349195241928, + 0.00862597394734621, + 0.0244787335395813, + 0.13944663107395172, + -0.011088108643889427, + 0.07442154735326767, + 0.12179318070411682, + -0.08042255789041519, + 0.0576910562813282, + 0.06714877486228943, + 0.033239949494600296, + -0.023625517264008522, + -0.10381395369768143, + 0.049298934638500214, + -0.034884847700595856, + -0.007615865208208561, + 0.06554445624351501, + -0.06601352989673615, + 0.08754747360944748, + -0.0261650700122118, + 0.020932601764798164, + 0.012195969000458717, + 0.06170310080051422, + 0.00496787391602993, + 0.03165215998888016, + 0.015569872222840786, + 0.0017484889831393957, + 0.006067953072488308, + -0.13755731284618378, + -0.022747958078980446, + -0.01647929474711418, + 0.0328628346323967, + -0.036022163927555084, + -0.01517521869391203, + -0.10001290589570999, + -0.06707104295492172, + 0.029623106122016907, + 0.017317982390522957, + 0.030203916132450104, + -0.09320835769176483, + -0.03745206817984581, + 0.025895623490214348, + -0.03776847571134567, + 0.015062562189996243, + -0.05435246601700783, + -0.01050764974206686, + -0.014534663408994675, + 0.05971391499042511, + 0.058089785277843475, + -0.016175512224435806, + 0.030138636007905006, + 0.0065233465284109116, + -0.03126908838748932, + -0.060106776654720306, + 0.036894090473651886, + -0.11887247115373611, + -0.029326757416129112, + -0.006712188478559256, + -0.03370450437068939, + 0.07385897636413574, + 0.027677668258547783, + 0.005550439935177565, + 0.04768918827176094, + 0.01768401451408863, + 0.03035854548215866, + 0.07555603235960007, + 0.0755387544631958, + -0.012463209219276905, + -0.051875680685043335, + -0.02882646955549717, + -0.039562225341796875, + -0.017122896388173103, + -0.11951509118080139, + -0.007501379586756229, + -0.04489827901124954, + 0.06514061987400055, + -0.060361284762620926, + 0.019744083285331726, + 0.004771928768604994, + 0.016725633293390274, + -0.0800093561410904, + 0.06398012489080429, + -0.09112191945314407, + 0.0093703493475914, + 0.04445629194378853, + -0.09468886256217957, + -0.12254646420478821, + 4.4678928561797575e-34, + -0.011712057515978813, + -0.0453852117061615, + -0.08778532594442368, + 0.06497760862112045, + -0.013021796010434628, + 0.009167371317744255, + 0.027687735855579376, + 0.0657719150185585, + -0.013656647875905037, + 0.03467394411563873, + 0.026872782036662102, + -0.00785989873111248, + -0.05572499334812164, + -0.062031250447034836, + -0.04022162780165672, + 0.04577283933758736, + -0.012550809420645237, + -0.08463193476200104, + -0.06864984333515167, + 0.0391489677131176, + -0.01703883334994316, + -0.01772371307015419, + 0.002788039855659008, + 0.06041920185089111, + -0.01682490110397339, + 0.08041398227214813, + -0.0006493133842013776, + 0.07938535511493683, + -0.011558272875845432, + -0.03642487898468971, + -0.09033148735761642, + 0.0071892933920025826, + 0.0307157039642334, + -0.03619852289557457, + -0.0409608893096447, + 0.06906796246767044, + 0.03989507630467415, + 0.03162822499871254, + -0.05577625334262848, + -0.04944225400686264, + 0.022097710520029068, + -0.018586955964565277, + 0.007330534514039755, + -0.049813661724328995, + -0.009372792206704617, + 0.013179079629480839, + -0.07165370881557465, + 0.023326726630330086, + -0.039832718670368195, + 0.015717947855591774, + 0.04964897036552429, + -0.04543234780430794, + -0.026722246780991554, + 0.09815103560686111, + 0.02997264452278614, + -0.025344355031847954, + -0.002498636255040765, + 0.05908433720469475, + -0.041894979774951935, + 0.04599415138363838, + 0.043832313269376755, + -0.07363763451576233, + 0.0019850570242851973, + 0.038703832775354385, + -0.014023697935044765, + -0.047643642872571945, + 0.05404423177242279, + -0.014161317609250546, + -0.036527786403894424, + 0.020350895822048187, + -0.005678635556250811, + -0.0233371052891016, + -0.031277161091566086, + -0.005922920536249876, + 0.0540311336517334, + -0.019812535494565964, + 0.015502866357564926, + -0.008786456659436226, + 0.015724683180451393, + 0.05069263279438019, + -0.07514454424381256, + 0.08218532800674438, + -0.0860544741153717, + 0.0314180925488472, + 0.06988586485385895, + -0.055101510137319565, + 0.05766461044549942, + -0.026647616177797318, + -0.02983037568628788, + 0.027874724939465523, + -0.08352628350257874, + 0.013731657527387142, + -0.08749689906835556, + 0.08167389780282974, + -0.010138038545846939, + -1.9946908125234586e-08, + -0.005757445935159922, + 0.006023728288710117, + 0.045318711549043655, + 0.011227806098759174, + 0.03700985386967659, + -0.07750625163316727, + 0.07736341655254364, + 0.03909691423177719, + 0.026188138872385025, + -0.02053026854991913, + 0.014908014796674252, + -0.08854466676712036, + -0.0570303276181221, + 0.009571714326739311, + 0.03541029617190361, + 0.033741891384124756, + -0.013480777852237225, + -0.007864909246563911, + -0.06449809670448303, + -0.04194289445877075, + -0.025313658639788628, + 0.061239827424287796, + -0.00555148022249341, + 0.013417283073067665, + 0.14340096712112427, + 0.04089672118425369, + 0.06183408573269844, + -0.009077568538486958, + 0.02141626365482807, + 0.03632442280650139, + -0.02028573863208294, + 0.000106371175206732, + 0.019781004637479782, + -0.0501234345138073, + -0.025838702917099, + 0.03507532924413681, + -0.036755356937646866, + 0.025372449308633804, + -0.02984967641532421, + 0.12736213207244873, + 0.022730382159352303, + 0.004034615587443113, + 0.011833111755549908, + -0.019017793238162994, + 0.05765748769044876, + -0.032419368624687195, + 0.024921270087361336, + 0.026392485946416855, + -0.06113699451088905, + -0.005620682146400213, + 0.011641761288046837, + -0.04305090010166168, + 0.04279344528913498, + 0.06644207239151001, + 0.04946881905198097, + -0.05343601852655411, + 0.06505778431892395, + 0.036290984600782394, + 0.045269981026649475, + 0.11795904487371445, + 0.10469384491443634, + -0.0362723283469677, + -0.06125468388199806, + 0.02254650928080082 + ], + "cloud-arrow-down-bold||serverless,backup,storage,download": [ + 0.040165964514017105, + -0.03415440395474434, + 0.002383376006036997, + 0.05337738245725632, + 0.05266941338777542, + -0.004109038505703211, + 0.004273747093975544, + -0.08001957088708878, + 0.10263975709676743, + 0.07599867880344391, + 0.026841113343834877, + 0.09348870813846588, + 0.06626096367835999, + -0.0540647953748703, + -0.03922349587082863, + 0.04178260639309883, + 0.016854824498295784, + 0.0034012168180197477, + 0.014106704853475094, + -0.004756634589284658, + -0.1278749406337738, + 0.00893239863216877, + -0.0006518007139675319, + 0.044941384345293045, + 0.018592294305562973, + -0.01811019703745842, + -0.05399121716618538, + 0.04684585705399513, + 0.00036416592774912715, + -0.0275233406573534, + -0.026407185941934586, + -0.059374287724494934, + 0.006238103378564119, + 0.059199489653110504, + 0.03296828269958496, + 0.03388897702097893, + 0.006512517109513283, + -0.0123283164575696, + 0.005061162170022726, + 0.025110214948654175, + 0.10881707817316055, + -0.0451078787446022, + -0.030474500730633736, + -0.00805202592164278, + -0.060986969619989395, + 0.04761964827775955, + -0.025493867695331573, + -0.0696391835808754, + 0.016632989048957825, + 0.0031385712791234255, + 0.053055036813020706, + -0.017033904790878296, + -0.10735876858234406, + 0.029455900192260742, + 0.008913029916584492, + 0.02864736318588257, + -0.05771571397781372, + 0.05020914599299431, + 0.05126015841960907, + 0.01912292093038559, + 0.04667698219418526, + -0.06486780941486359, + 0.03324918821454048, + 0.010145531967282295, + 0.053467392921447754, + 0.10723160207271576, + -0.009225924499332905, + 0.04229917749762535, + -0.06909283250570297, + 0.049597617238759995, + 0.035192184150218964, + -0.016452375799417496, + -0.079879030585289, + -0.02445412054657936, + -0.05663294717669487, + -0.013944718986749649, + 0.07361536473035812, + 0.10544179379940033, + -0.03718885779380798, + 0.0232598464936018, + -0.025948036462068558, + -0.022405533120036125, + -0.03227566182613373, + 0.08361770212650299, + -0.059039194136857986, + 0.03792314976453781, + -0.020732194185256958, + -0.06524563580751419, + -0.024336567148566246, + -0.10509130358695984, + -0.04303137585520744, + 0.0011081683915108442, + 0.0737532526254654, + 0.014297292567789555, + -0.0395977757871151, + -0.015194700099527836, + 0.061273299157619476, + -0.014435290358960629, + -0.0772920474410057, + 0.005737601313740015, + 0.01977436989545822, + 0.051784880459308624, + 0.10664219409227371, + -0.08021564781665802, + -0.004256537649780512, + -0.010615970008075237, + 0.03905457258224487, + 0.02088489569723606, + 0.0038079344667494297, + -0.03357401862740517, + -0.07160729914903641, + -0.043912578374147415, + -0.01832161471247673, + -0.011471045203506947, + -0.013562187552452087, + -0.01600762829184532, + -0.12725840508937836, + -0.021142099052667618, + 0.008479034528136253, + 0.016358457505702972, + 0.07562842220067978, + -0.1414840668439865, + 0.002448225626721978, + -0.07304906845092773, + -0.021178478375077248, + 0.0020419687498360872, + 0.021761734038591385, + -3.710795056546028e-33, + 0.09351304173469543, + 0.02631491608917713, + 0.003625796176493168, + -0.05463603883981705, + 0.13707235455513, + -0.017088618129491806, + -0.04706417769193649, + -0.11230092495679855, + -0.11860496550798416, + 0.006105892360210419, + 0.04252738878130913, + 0.03503822162747383, + -0.05067062750458717, + 0.06103387102484703, + 0.04361557587981224, + -0.03426527976989746, + 0.06718231737613678, + 0.05557355657219887, + 0.05218955874443054, + -0.06930519640445709, + -0.03861178085207939, + 0.029765911400318146, + -0.06696615368127823, + -0.031344011425971985, + 0.014581536874175072, + -0.05672147497534752, + 0.05308325216174126, + -0.03187563642859459, + -0.014512681402266026, + -0.008759802207350731, + -0.0031917085871100426, + -0.0006459908909164369, + 0.041812025010585785, + -0.06352322548627853, + -0.015416739508509636, + -0.03710285574197769, + -0.1383945196866989, + 0.03039134293794632, + -0.0527978353202343, + 0.055275414139032364, + 0.06342114508152008, + -0.07619691640138626, + -0.0803079605102539, + -0.025050939992070198, + -0.016101963818073273, + 0.017224803566932678, + 0.007590475492179394, + -0.16906557977199554, + -0.0045793247409164906, + 0.05397467315196991, + -0.046084750443696976, + -0.004141128621995449, + -0.001540383673273027, + -0.02881370112299919, + -0.010752243921160698, + -0.03681924194097519, + -0.023030683398246765, + 0.04499368742108345, + 0.009072678163647652, + -0.04437994211912155, + -0.058958832174539566, + -0.05842038616538048, + 0.04116828739643097, + -0.027078336104750633, + -0.004014919046312571, + -0.01316426694393158, + -0.08503320813179016, + 0.018470607697963715, + -0.01717323064804077, + -0.0003873567038681358, + 0.02221754379570484, + 0.00047634588554501534, + 0.06719917058944702, + 0.004674560856074095, + 0.0791412815451622, + -0.047657161951065063, + -0.06769543886184692, + -0.0318417102098465, + 0.06477832049131393, + -0.03125661611557007, + -0.11662686616182327, + -0.03841498866677284, + -0.07898743450641632, + 0.05621924623847008, + 0.03631175681948662, + 0.015357761643826962, + 0.013133780099451542, + -0.05094275623559952, + -0.0350249707698822, + 0.0640304908156395, + -0.08352508395910263, + -0.009030693210661411, + 0.004609495401382446, + -0.09154363721609116, + -0.04106680303812027, + 1.4283700934845358e-33, + 0.00043664328404702246, + -0.028463711962103844, + -0.07608229666948318, + 0.07661764323711395, + -0.06348326802253723, + 0.04166552051901817, + 0.066709004342556, + 0.08869335055351257, + 0.0011571884388104081, + 0.0659489631652832, + 0.0400395542383194, + 0.03578509762883186, + -0.09129456430673599, + -0.05227353051304817, + 0.0036525940522551537, + 0.02834685891866684, + 0.03928200155496597, + -0.060024041682481766, + -0.009238112717866898, + 0.017628338187932968, + -0.006871731486171484, + -0.07017809897661209, + -0.009301547892391682, + 0.08397392928600311, + 0.02125232107937336, + 0.052917368710041046, + 0.06716731935739517, + 0.11874986439943314, + -0.0033345900010317564, + -0.057789649814367294, + -0.033874183893203735, + 0.050398048013448715, + -0.0035156174562871456, + -0.015394920483231544, + -0.09464165568351746, + 0.001017753966152668, + -0.0142227066680789, + 0.10690892487764359, + -0.03368976339697838, + 0.03567010536789894, + -0.0013786120107397437, + -0.058614086359739304, + -0.010946492664515972, + -0.040919966995716095, + 0.06461741775274277, + 0.0011999750277027488, + -0.03346697986125946, + -0.015554898418486118, + -0.026300545781850815, + 0.020971911028027534, + 0.08899791538715363, + 0.0037649397272616625, + 0.00011127915058750659, + 0.0856298878788948, + -0.005855503957718611, + -0.010473974980413914, + 0.04365404322743416, + 0.11160527169704437, + -0.0538305826485157, + 0.01143045537173748, + 0.018751360476017, + -0.07674554735422134, + 0.031354475766420364, + -0.024780208244919777, + -0.055622685700654984, + -0.03674402832984924, + 0.04132586717605591, + -0.005130738951265812, + -0.04065782576799393, + -0.012418193742632866, + -0.03725806251168251, + -0.013501647859811783, + 0.027202768251299858, + -0.022965259850025177, + 0.08759397268295288, + -0.06526674330234528, + -0.008714665658771992, + -0.0366976223886013, + 0.04203531891107559, + -0.009024815633893013, + -0.03421736881136894, + 0.08721117675304413, + -0.06946107745170593, + 0.010131548158824444, + 0.04433630779385567, + -0.06339272856712341, + -0.055460672825574875, + 0.06326814740896225, + -0.027281716465950012, + 0.012749619781970978, + -0.06148553639650345, + -0.03354165703058243, + -0.014420834369957447, + 0.04846049100160599, + -0.006196714472025633, + -1.871113042284378e-08, + -0.029770677909255028, + 0.05412003770470619, + 0.021372875198721886, + -0.004359413404017687, + 0.0244468804448843, + -0.04235189035534859, + 0.04382055997848511, + 0.03818540275096893, + 0.04148968681693077, + -0.05631950870156288, + 0.02923928014934063, + -0.0734541267156601, + -0.07292766124010086, + 0.03974257409572601, + 0.0031791231594979763, + 0.1059219092130661, + 0.0028916122391819954, + -0.011031469330191612, + -0.001040636096149683, + -0.03279911354184151, + -0.04965462535619736, + 0.03664008900523186, + 0.03510138392448425, + 0.06553906947374344, + 0.06174691021442413, + 0.023209277540445328, + 0.07409878820180893, + 0.04996373504400253, + -0.003161930013448, + 0.02809125743806362, + -0.0001502110535511747, + 0.004923662170767784, + 0.0016512117581441998, + -0.019949378445744514, + -0.015975063666701317, + 0.011044003069400787, + -0.05060381442308426, + 0.03462103009223938, + 0.03257846459746361, + 0.09766951203346252, + 0.013059291057288647, + -0.0069878739304840565, + -0.0246901698410511, + -0.04813441261649132, + -0.021241560578346252, + 0.007945292629301548, + 0.043491363525390625, + 0.042214285582304, + -0.09525281190872192, + -0.02401786670088768, + 0.01932353712618351, + -0.07994560152292252, + 0.022472113370895386, + 0.10493981093168259, + 0.05439303442835808, + -0.0405375100672245, + 0.08413039892911911, + 0.01040546502918005, + 0.011379665695130825, + 0.09925202280282974, + 0.10691036283969879, + 0.00999920628964901, + 0.024603737518191338, + -0.002471234882250428 + ], + "cloud-arrow-up-bold||serverless,backup,storage,upload": [ + 0.0008841970120556653, + -0.03592617064714432, + -0.010540648363530636, + 0.05856859311461449, + 0.054653942584991455, + -0.01086152158677578, + -0.01953875832259655, + -0.0848473384976387, + 0.08059652894735336, + 0.0760795995593071, + 0.03319939598441124, + 0.09716592729091644, + 0.08560967445373535, + -0.06842194497585297, + -0.019175441935658455, + 0.04197477921843529, + 0.00078117212979123, + -0.029509637504816055, + -0.009885274805128574, + -0.01767202839255333, + -0.12082576006650925, + -0.01395886018872261, + 0.013555347919464111, + 0.040579356253147125, + 0.023030340671539307, + -0.04567837715148926, + -0.03220897912979126, + 0.01421046257019043, + -0.018603436648845673, + -0.01716161146759987, + -0.04003831371665001, + -0.0554477795958519, + -0.009949012659490108, + 0.04855872318148613, + 0.03479146584868431, + 0.06546711921691895, + 0.03541231527924538, + -0.017087403684854507, + -0.030623115599155426, + 0.012787442654371262, + 0.07390641421079636, + -0.07381825149059296, + -0.03655513748526573, + -0.023212745785713196, + -0.04407932981848717, + 0.06557998806238174, + -0.03431752696633339, + -0.06016932800412178, + 0.021303504705429077, + 0.007268883287906647, + 0.047264691442251205, + -0.06931261718273163, + -0.09972924739122391, + 0.050688423216342926, + -0.012522539123892784, + 0.05596218258142471, + -0.08647486567497253, + 0.007635872811079025, + 0.06462543457746506, + -0.019418280571699142, + 0.026246462017297745, + -0.027633948251605034, + 0.07290027290582657, + 0.039452940225601196, + 0.09295788407325745, + 0.07786650210618973, + -0.0013740595895797014, + 0.034163348376750946, + -0.07556535303592682, + 0.05334634333848953, + 0.06420159339904785, + 0.008311512880027294, + -0.07625897973775864, + -0.004038150887936354, + -0.024929776787757874, + -0.024194806814193726, + 0.055316559970378876, + 0.0878220945596695, + 0.03979277238249779, + 0.0013765778858214617, + -0.003149359952658415, + -0.03300434723496437, + -0.07799830287694931, + 0.08342061191797256, + -0.043827611953020096, + 0.03621279448270798, + -0.06855545938014984, + -0.057265955954790115, + -0.042188648134469986, + -0.09039964526891708, + -0.0523395836353302, + -0.015577398240566254, + 0.06041998043656349, + 0.0012885339092463255, + -0.024276992306113243, + -0.01039700023829937, + 0.044953133910894394, + 0.017326563596725464, + -0.0795397013425827, + -0.007251325529068708, + -0.005647160112857819, + 0.042623091489076614, + 0.10928807407617569, + -0.03867939114570618, + 0.00789168942719698, + 0.0036491635255515575, + 0.025299374014139175, + 0.025541599839925766, + 0.01639530435204506, + -0.05416976660490036, + -0.053533945232629776, + -0.05752013623714447, + -0.030181506648659706, + 0.0006654219469055533, + -0.003780747763812542, + -0.0030950061045587063, + -0.09416510164737701, + -0.03152661770582199, + 0.01110110618174076, + 0.021748343482613564, + 0.08240476250648499, + -0.13969364762306213, + -0.0445905439555645, + -0.06035185605287552, + -0.0426928736269474, + -0.019060583785176277, + 0.015268916264176369, + -3.117010982959442e-33, + 0.11030947417020798, + 0.031974609941244125, + 0.039730362594127655, + -0.05364394932985306, + 0.13310597836971283, + -0.010856358334422112, + -0.07458311319351196, + -0.10073495656251907, + -0.1106145828962326, + 0.023296456784009933, + 0.03958968445658684, + 0.07056206464767456, + -0.031130462884902954, + 0.05482317507266998, + 0.04775133728981018, + -0.05298005789518356, + 0.07027364522218704, + 0.09445854276418686, + 0.06209273263812065, + -0.0726606473326683, + -0.03663672134280205, + 0.03276873752474785, + -0.08139536529779434, + -0.03291592374444008, + -0.0011033205082640052, + -0.049815669655799866, + 0.055942315608263016, + -0.038180336356163025, + -0.022658277302980423, + -0.011477522552013397, + 0.0152610894292593, + -0.011227295733988285, + 0.01846134476363659, + -0.023595565930008888, + -0.06018741428852081, + -0.04755103215575218, + -0.1372334212064743, + 0.008090776391327381, + -0.05704016238451004, + 0.08371865749359131, + 0.07109647244215012, + -0.06549157202243805, + -0.10352113842964172, + -0.015814917162060738, + -0.04168100655078888, + 0.042167700827121735, + -0.01995849795639515, + -0.15979549288749695, + 0.006449264008551836, + 0.051656994968652725, + -0.021129753440618515, + 0.006161489989608526, + -0.022296084091067314, + -0.04109691455960274, + -0.004567249678075314, + 0.0013328937347978354, + -0.022242333739995956, + 0.043164223432540894, + 0.012690938077867031, + -0.07397651672363281, + -0.05738897621631622, + -0.06192726269364357, + 0.03651764988899231, + 0.025351429358124733, + -0.044364891946315765, + -0.014053435064852238, + -0.07873672991991043, + 0.020073428750038147, + -0.004331228323280811, + 0.005890964064747095, + 0.016086839139461517, + 0.021462485194206238, + 0.009728574194014072, + 0.024903764948248863, + 0.07987192273139954, + -0.06296209245920181, + -0.06254027038812637, + -0.0627371147274971, + 0.0062481421045959, + 0.004729237873107195, + -0.11541162431240082, + -0.03266766667366028, + -0.07559829205274582, + 0.07609441131353378, + 0.03549190238118172, + -0.008649645373225212, + -0.007075472269207239, + -0.0338098518550396, + -0.03986191749572754, + 0.03051271289587021, + -0.06590928137302399, + 0.016585376113653183, + 0.020372161641716957, + -0.10341638326644897, + -0.04124355688691139, + 7.210537908419087e-34, + 0.008162262849509716, + 0.00656410027295351, + -0.06774336844682693, + 0.07319127023220062, + -0.030157843604683876, + 0.04201709106564522, + 0.10246587544679642, + 0.08297786116600037, + 0.05319027230143547, + 0.0411379411816597, + 0.01251414604485035, + 0.036624085158109665, + -0.08965402096509933, + -0.06873706728219986, + -0.0028212040197104216, + 0.03985888883471489, + -0.010302718728780746, + -0.008728201501071453, + -0.023305052891373634, + 0.01186667662113905, + -0.0014497882220894098, + -0.06262950599193573, + 0.020128030329942703, + 0.091109499335289, + 0.00036551544326357543, + 0.08064756542444229, + 0.039991069585084915, + 0.11636396497488022, + -0.0021640562918037176, + -0.055807068943977356, + -0.022594301030039787, + 0.05193345248699188, + 0.015915781259536743, + 0.02977783977985382, + -0.08880297839641571, + -0.005175368394702673, + -0.01521398313343525, + 0.07094079256057739, + -0.026578154414892197, + 0.03484940901398659, + 0.038936443626880646, + -0.04391628876328468, + -0.0250676441937685, + 5.615347618004307e-05, + 0.02273506298661232, + -0.002371988957747817, + -0.022504592314362526, + -0.025099216029047966, + -0.020833106711506844, + 0.033092841506004333, + 0.049889400601387024, + -0.004291555844247341, + -0.03106304258108139, + 0.0994260311126709, + 0.009844295680522919, + -0.00855994038283825, + 0.052349407225847244, + 0.11462905257940292, + -0.025208644568920135, + 0.0023501727264374495, + 0.021402131766080856, + -0.038996621966362, + 0.011565184220671654, + -0.015049071051180363, + -0.05468533933162689, + -0.03826471045613289, + 0.06108514219522476, + -0.038428112864494324, + -0.05358589440584183, + -0.0028278937097638845, + -0.008458510041236877, + -0.012278735637664795, + 0.004671882372349501, + 0.011331049725413322, + 0.06269196420907974, + -0.06503316760063171, + 0.0047233086079359055, + -0.07329890877008438, + 0.04538118466734886, + -0.015537464991211891, + -0.06102916598320007, + 0.054908424615859985, + -0.07254558056592941, + 0.05353254824876785, + 0.04801284521818161, + -0.024069800972938538, + -0.02700928784906864, + 0.0721588209271431, + -0.027216369286179543, + 0.02256844751536846, + -0.05492597073316574, + -0.03500005602836609, + -0.029752029106020927, + 0.047781020402908325, + -0.014244651421904564, + -1.9017221575268195e-08, + -0.01567615009844303, + 0.06870794296264648, + -0.004617337137460709, + -0.020781194791197777, + 0.012980576604604721, + -0.07844649255275726, + 0.06751149892807007, + 0.05095416307449341, + 0.05364856496453285, + -0.10279053449630737, + 0.030726751312613487, + -0.05513829365372658, + -0.034714024513959885, + 0.01895543746650219, + 0.03426092118024826, + 0.08426416665315628, + 0.012420224025845528, + -0.006443270482122898, + -0.03806997835636139, + -0.03304031118750572, + -0.05357795208692551, + 0.07551229745149612, + 0.003759967628866434, + 0.05733904987573624, + 0.03845331817865372, + 0.03687967732548714, + 0.03516486659646034, + 0.03719126060605049, + -0.004722529090940952, + 0.03388558700680733, + -0.002542539732530713, + 0.00033283783704973757, + 0.0037382286973297596, + -0.002332757692784071, + -0.01865852251648903, + 0.025977924466133118, + -0.030346930027008057, + 0.010959508828818798, + -0.0035734563134610653, + 0.08191623538732529, + 0.0062692537903785706, + -0.009636261500418186, + -0.015404295176267624, + -0.05932305008172989, + -0.012175938114523888, + 0.013168244622647762, + 0.05015879124403, + 0.036580756306648254, + -0.1452428102493286, + -0.021202988922595978, + -0.007575164083391428, + -0.07123222947120667, + 0.021639660000801086, + 0.0960332527756691, + 0.058646172285079956, + -0.02925504557788372, + 0.07691561430692673, + 0.021260272711515427, + 0.03553149104118347, + 0.09359943121671677, + 0.12013836950063705, + -0.006139980163425207, + 0.015930986031889915, + -0.004963329993188381 + ], + "cloud-check-bold||serverless,backup,storage,sync,synchronized": [ + 0.004138926509767771, + -0.02371929958462715, + -0.02260695770382881, + 0.030154475942254066, + 0.06174162030220032, + -0.04192986711859703, + 0.028404785320162773, + -0.13268312811851501, + 0.08686630427837372, + 0.05467696115374565, + 0.051939066499471664, + 0.03348684683442116, + 0.09787169098854065, + -0.1014643982052803, + -0.03272171691060066, + -0.01460453774780035, + 0.05382874980568886, + -0.058557238429784775, + -0.048370204865932465, + 0.0332353450357914, + -0.1563521772623062, + -0.03071925789117813, + 0.01930062659084797, + 0.06740090250968933, + 0.006979440804570913, + 0.0040498883463442326, + -0.03839171305298805, + -0.013897119089961052, + -0.03791011497378349, + -0.06598711758852005, + 0.00013225412112660706, + -0.05293009802699089, + 0.01830170303583145, + 0.0950469821691513, + 0.08522310107946396, + 0.06555631011724472, + -0.002454829402267933, + -0.05039951577782631, + 0.00237939297221601, + -0.03797278553247452, + 0.043973829597234726, + -0.13050945103168488, + -0.04892217740416527, + 0.008851315826177597, + -0.06621475517749786, + 0.07126637548208237, + -0.05466821789741516, + -0.043398309499025345, + -0.028940116986632347, + -0.058802034705877304, + 0.04158482328057289, + -0.03405892848968506, + -0.08171682059764862, + 0.017481893301010132, + 0.02596757747232914, + 0.10445763170719147, + -0.03994138166308403, + 0.06306590884923935, + 0.026435906067490578, + 0.002751019084826112, + 0.05218258500099182, + -0.02083013951778412, + 0.0055747549049556255, + 0.014001083560287952, + 0.10060790181159973, + 0.10088754445314407, + 0.006100345402956009, + 0.023278215900063515, + -0.04478000849485397, + 0.05049418658018112, + 0.002856321632862091, + 0.020832136273384094, + 0.01732451654970646, + 0.032414861023426056, + -0.07074753940105438, + 0.04244943708181381, + 0.05283009633421898, + -0.006138791795819998, + -0.04324323311448097, + -0.019741062074899673, + -0.08944238722324371, + -0.03494524210691452, + -0.04460202157497406, + 0.0746087059378624, + -0.011607702821493149, + -0.021142922341823578, + -0.04274970293045044, + -0.010096035897731781, + 0.02024666965007782, + -0.11594186723232269, + 0.03707633912563324, + 0.02987082488834858, + 0.022577257826924324, + -0.02499205246567726, + -0.04111483320593834, + 0.0353068932890892, + 0.03191658481955528, + 0.09881938248872757, + 0.018877962604165077, + 0.007758699357509613, + 0.01599041372537613, + 0.06267866492271423, + 0.07429979741573334, + -0.03300093859434128, + 0.010963546112179756, + -0.007040650583803654, + -0.014186703599989414, + 0.03536130115389824, + -0.0037535037845373154, + -0.043688975274562836, + -0.02218060940504074, + -0.032822802662849426, + 0.043827205896377563, + 0.018841251730918884, + 0.0044126869179308414, + -0.03136153519153595, + -0.027075907215476036, + 0.003273017704486847, + -0.012427347712218761, + 0.03662839159369469, + 0.10283533483743668, + -0.11328626424074173, + 0.014582828618586063, + -0.09705259650945663, + -0.04100791737437248, + -0.011254197917878628, + 0.025484569370746613, + -2.1148842327971875e-33, + 0.11704115569591522, + 0.059638720005750656, + 0.05160477012395859, + -0.03387982398271561, + 0.08242835104465485, + 0.016837289556860924, + -0.07922136783599854, + -0.07989940792322159, + -0.060087356716394424, + 0.04172436147928238, + 0.05217309296131134, + 0.09741181135177612, + -0.03400272876024246, + 0.0008689998649060726, + 0.03457638621330261, + -0.018649576231837273, + 0.07214400917291641, + 0.057595741003751755, + 0.05120997130870819, + -0.02390119433403015, + -0.023392584174871445, + -0.0034080862533301115, + -0.040825005620718, + -0.0453266017138958, + -0.018241917714476585, + -0.08872559666633606, + 0.07260338217020035, + -0.0029047606512904167, + 0.0005153524107299745, + -0.022844310849905014, + -0.031249571591615677, + -0.03036057949066162, + 0.02256750874221325, + 0.034096553921699524, + -0.012426300905644894, + -0.026751920580863953, + -0.1078481525182724, + -0.012310764752328396, + -0.07714283466339111, + 0.04169274494051933, + 0.03634558990597725, + -0.042611341923475266, + -0.05566796660423279, + -0.07580383867025375, + 0.006001435220241547, + 0.05642442777752876, + 0.010593777522444725, + -0.06511715799570084, + 0.04117221012711525, + 0.02672228403389454, + 0.0030486786272376776, + 0.013879907317459583, + -0.055639319121837616, + -0.044197484850883484, + -0.034211233258247375, + -0.007237901911139488, + 0.043772514909505844, + -0.023245176300406456, + -0.01974554732441902, + 0.043065398931503296, + -0.0226857028901577, + -0.05717968940734863, + -0.02533826231956482, + -0.08132114261388779, + -0.02407255582511425, + 0.027935780584812164, + -0.06931646168231964, + 0.028973577544093132, + 0.012146223336458206, + 0.004459737800061703, + 0.02975347451865673, + 0.038237374275922775, + 0.004430747590959072, + 0.040714021772146225, + 0.09440694749355316, + -0.021900538355112076, + -0.037402912974357605, + -0.01405967678874731, + -0.023247793316841125, + -0.05927306041121483, + -0.05779373645782471, + -0.019894717261195183, + -0.1234615296125412, + 0.13299736380577087, + -0.05439426749944687, + -0.008496873080730438, + -0.026110246777534485, + -0.007668177597224712, + -0.060320351272821426, + 0.02163081429898739, + -0.043759725987911224, + -0.029293673112988472, + 0.07309700548648834, + -0.12606877088546753, + -0.05620567873120308, + -3.1702646423070344e-34, + 0.04351872205734253, + -0.08501393347978592, + -0.006959262304008007, + 0.07208255678415298, + -0.015317415818572044, + 0.0336822010576725, + 0.02033069357275963, + 0.06819909811019897, + -0.008627663366496563, + 0.036159731447696686, + 0.06411665678024292, + -0.057717811316251755, + -0.03921573981642723, + -0.004945141728967428, + -0.05865754559636116, + 0.04312160983681679, + -0.003930653911083937, + -0.08098036050796509, + -0.01356058195233345, + 0.062159858644008636, + 0.04948364943265915, + 0.013306399807333946, + 0.03561900928616524, + 0.1272992342710495, + 0.012274383567273617, + 0.05496412515640259, + -0.03635432571172714, + 0.022527283057570457, + 0.007816387340426445, + -0.003133075777441263, + -0.04027039557695389, + 0.044627219438552856, + 0.03341163322329521, + 0.02448120526969433, + -0.07847137004137039, + -0.03509199619293213, + -0.01577603816986084, + 0.07279551774263382, + -0.043112754821777344, + 0.02854522317647934, + 0.02098122611641884, + -0.027659546583890915, + -0.03189064562320709, + -0.009279352612793446, + -0.06078392639756203, + -0.002004120498895645, + -0.06499746441841125, + 0.03961709514260292, + -0.10217933356761932, + 0.04141886904835701, + 0.02462799660861492, + -0.020032424479722977, + -0.025928372517228127, + 0.04089375585317612, + 0.0004173321940470487, + 0.03249046206474304, + 0.0011774345766752958, + 0.024084724485874176, + -0.038638532161712646, + 0.05834874510765076, + 0.0051269978284835815, + -0.07585293799638748, + 0.011894290335476398, + -0.003122714813798666, + -0.050993092358112335, + -0.021945519372820854, + 0.07630788534879684, + -0.03970476612448692, + 0.017033971846103668, + 0.033993057906627655, + 0.0391487181186676, + -0.03826845809817314, + -0.04433821141719818, + 0.0012695686891674995, + 0.03935414180159569, + -0.04458840191364288, + -0.0003811314527411014, + -0.10438088327646255, + 0.02881891466677189, + 0.0581265352666378, + -0.047811850905418396, + 0.04991098493337631, + -0.05064312741160393, + 0.03386591002345085, + -0.005305978935211897, + -0.031086118891835213, + -0.008653889410197735, + 0.031352199614048004, + -0.035298943519592285, + 0.028545495122671127, + -0.07289644330739975, + -0.0046649714931845665, + -0.02917901612818241, + 0.04762991890311241, + -0.06716480851173401, + -1.8804376722414418e-08, + -0.02535460703074932, + -0.00222350237891078, + 0.003292488632723689, + 0.06728913635015488, + 0.026000691577792168, + -0.09752470999956131, + 0.05703576281666756, + -0.03456689417362213, + 0.0561455637216568, + -0.015114149078726768, + -0.008296607062220573, + -0.08862682431936264, + -0.08424139767885208, + -0.024622032418847084, + 0.029421573504805565, + 0.03227983042597771, + 0.005210875533521175, + -0.026070132851600647, + -0.05567296966910362, + -0.0009592078276909888, + -0.010749973356723785, + 0.07414429634809494, + -0.014305629767477512, + 0.0821094736456871, + 0.08435484021902084, + 0.03371967375278473, + 0.025693092495203018, + 0.029123496264219284, + -0.0065822359174489975, + 0.0452924408018589, + 0.04438375309109688, + -0.010507124476134777, + 0.03670187667012215, + -0.0422699898481369, + -0.034888505935668945, + 0.04783165082335472, + -0.010118555277585983, + 0.007992212660610676, + 0.035677872598171234, + 0.1206577718257904, + -0.009946664795279503, + 0.020955756306648254, + -0.07208573073148727, + -0.008746102452278137, + 0.030811011791229248, + -0.05503663420677185, + 0.02520679123699665, + -0.006397404242306948, + -0.11124690622091293, + -0.08015888184309006, + -0.010908016934990883, + -0.1034073755145073, + 0.031287726014852524, + 0.07239693403244019, + -0.004011253360658884, + -0.01576109789311886, + 0.07588697969913483, + 0.07849889248609543, + 0.07390489429235458, + 0.1137930154800415, + 0.12619388103485107, + -0.01428178884088993, + 0.04625719040632248, + -0.07223561406135559 + ], + "cloud-fog-bold||meteorology,cloudy,overcast,foggy,mist,haze": [ + 0.023151258006691933, + -0.007306813728064299, + 0.14438983798027039, + 0.03920750319957733, + 0.06808725744485855, + -0.02479117549955845, + 0.11878509819507599, + -0.11334065347909927, + -0.007355094887316227, + -0.004363083280622959, + 0.039165716618299484, + -0.030138183385133743, + 0.022059621289372444, + -0.046626441180706024, + -0.037534330040216446, + 0.06192568689584732, + 0.012076694518327713, + -0.06392011046409607, + -0.017276806756854057, + -0.020157596096396446, + 0.02567264437675476, + 0.0868610143661499, + -0.1116766631603241, + 0.029105424880981445, + 0.04926963150501251, + 0.07819683104753494, + -0.05277719348669052, + -0.01795250177383423, + -0.009152970276772976, + -0.05294611304998398, + -0.005496839992702007, + 0.0549473762512207, + 0.039641596376895905, + 0.06574713438749313, + 0.038502562791109085, + -0.035487137734889984, + -0.0403875894844532, + -0.006730368360877037, + -0.020123977214097977, + 0.03701812028884888, + -0.004964165855199099, + -0.07587844878435135, + -0.0607713982462883, + -0.03243786469101906, + -0.02481977827847004, + 0.025151653215289116, + -0.029117293655872345, + 0.004961800295859575, + 0.04864376783370972, + 0.022760435938835144, + -0.06564667075872421, + -0.06300713866949081, + -0.09783576428890228, + 0.02091800607740879, + -0.008909138850867748, + 0.006665023509413004, + -0.11410264670848846, + -0.014669387601315975, + 0.020566008985042572, + -0.045199062675237656, + -0.04566764086484909, + 0.06473665684461594, + -0.03224043920636177, + 0.06361228972673416, + 0.10659864544868469, + 0.012093745172023773, + -0.07929906249046326, + 0.09832588583230972, + 0.040012359619140625, + 0.021021768450737, + 0.02224915474653244, + 0.06047464534640312, + 0.010575144551694393, + 0.0021509171929210424, + -0.011675520800054073, + -0.02554004266858101, + -0.0017255167476832867, + -0.01946261338889599, + -0.036345191299915314, + -0.07029258459806442, + 0.04967907443642616, + 0.006438862532377243, + 0.02204292267560959, + -0.014846818521618843, + -0.011513440869748592, + 0.07121384143829346, + -0.029887763783335686, + -0.018360428512096405, + 0.024570614099502563, + -0.05359669774770737, + -0.028609000146389008, + -0.04658256098628044, + -0.015109024941921234, + 0.08695140480995178, + -0.05731537938117981, + 0.08522580564022064, + 0.10335563868284225, + -0.02343333140015602, + 0.020502926781773567, + 0.06941904127597809, + 0.016397807747125626, + -0.03790988028049469, + -0.001883388147689402, + -0.025520773604512215, + 0.024430233985185623, + -0.013413665816187859, + -0.008995416574180126, + -0.07365777343511581, + 0.02663269080221653, + -0.005483014043420553, + -0.04770330712199211, + -0.10271665453910828, + -0.004271641839295626, + -0.07868123054504395, + 0.017621738836169243, + -0.031285323202610016, + -0.04180411994457245, + 0.012395551428198814, + -0.0017151397187262774, + -0.05573764815926552, + -0.014833977445960045, + -0.06307350099086761, + 0.002994431182742119, + 0.02038145251572132, + 0.02114696614444256, + 0.038585782051086426, + -0.03197196125984192, + -3.0595561251691105e-33, + 0.10347562283277512, + 0.00497859064489603, + 0.009181223809719086, + 0.07590323686599731, + 0.11756997555494308, + -0.06691810488700867, + -0.01672057993710041, + -0.06979751586914062, + -0.13183972239494324, + 0.038657113909721375, + -0.03558176010847092, + 0.04583856463432312, + -0.08588669449090958, + 0.07188723981380463, + 0.052743155509233475, + -0.05169223994016647, + -0.01160862110555172, + 0.04004504531621933, + -0.03127221390604973, + 0.02493504248559475, + -0.11963213235139847, + 0.04376025125384331, + -0.05038377642631531, + -0.03397604823112488, + -0.015018986538052559, + 0.006586062256246805, + 0.06717423349618912, + 0.0212558526545763, + 0.03537571430206299, + 0.042627204209566116, + 0.09871282428503036, + 0.0700521469116211, + 0.06287779659032822, + -0.012362037785351276, + -0.009931474924087524, + 0.06462964415550232, + -0.05149590224027634, + 0.034563638269901276, + 0.01791764795780182, + -0.01224849559366703, + -0.09990771859884262, + -0.032104674726724625, + -0.07783016562461853, + -0.04563289135694504, + 0.03456760570406914, + 0.024957885965704918, + -0.009663539938628674, + -0.04306730255484581, + 0.031205350533127785, + -0.018928639590740204, + -0.06544811278581619, + -0.004713241942226887, + -0.026021145284175873, + 0.002073426963761449, + 0.03519211336970329, + 0.05505325645208359, + 0.058968715369701385, + 0.03186666965484619, + 0.03036336600780487, + 0.003403439186513424, + -0.0388413667678833, + -0.02907305583357811, + 0.02129250206053257, + -0.12336458265781403, + 0.005954388994723558, + -0.01863151602447033, + -0.061768196523189545, + 0.08998844772577286, + 0.018307967111468315, + -0.007119418121874332, + 0.013505053706467152, + 0.0024222421925514936, + 0.039182305335998535, + 0.09162912517786026, + 0.0305213313549757, + 0.012728383764624596, + -0.01942790299654007, + 0.029385387897491455, + 0.0008325837552547455, + 0.03230789676308632, + -0.17590369284152985, + 0.04750743508338928, + -0.0041433353908360004, + -0.012173527851700783, + -0.08805323392152786, + 0.027899032458662987, + 0.023435531184077263, + 0.02379285730421543, + -0.09445610642433167, + 0.045648060739040375, + -0.10050053894519806, + 0.07372504472732544, + 0.08546639233827591, + -0.05336417630314827, + -0.12939125299453735, + 7.010132192815715e-34, + 0.028265204280614853, + 0.016920438036322594, + -0.0794939249753952, + 0.06297283619642258, + 0.001965602859854698, + 0.04377893730998039, + 0.06164178252220154, + 0.06787636876106262, + -0.012703794986009598, + 0.07201794534921646, + -0.02773868851363659, + 0.017883216962218285, + -0.06349222362041473, + -0.06932315975427628, + 0.031246446073055267, + 0.009764758870005608, + 0.06528056412935257, + 0.009200496599078178, + -0.08790090680122375, + 0.06546841561794281, + -0.03775918856263161, + -0.06515324115753174, + -0.011125088669359684, + 0.02341759391129017, + -0.07416709512472153, + 0.08659611642360687, + 0.061689551919698715, + 0.06051377207040787, + -0.015762336552143097, + -0.013545263558626175, + -0.0609288215637207, + 0.009353382512927055, + 0.000998873496428132, + 0.0445503368973732, + -0.00850142352283001, + 0.06872735917568207, + 0.05193375051021576, + -0.11762414127588272, + -0.0609668493270874, + -0.09184684604406357, + -0.016193952411413193, + -0.04192258417606354, + 0.07806984335184097, + -0.021884098649024963, + 0.05565803125500679, + 0.027294859290122986, + -0.037798114120960236, + 0.024183185771107674, + -0.04219464585185051, + -0.04393819719552994, + 0.05860372260212898, + -0.03823884204030037, + -0.050539281219244, + 0.11754264682531357, + 0.010074170306324959, + -0.022431522607803345, + -0.016943953931331635, + -0.012096991762518883, + -0.03957846388220787, + 0.0038244498427957296, + -0.011092484928667545, + -0.07433187961578369, + -0.024829009547829628, + -0.004254224710166454, + -0.01053102221339941, + -0.06184157729148865, + -0.020028594881296158, + -0.0020237101707607508, + 0.008899901993572712, + 0.019542640075087547, + 0.007690244819968939, + -0.06831313669681549, + -0.06900576502084732, + -0.02150760032236576, + 0.03438146412372589, + -0.04995429515838623, + 0.011134649626910686, + 0.06289135664701462, + -0.026397762820124626, + 0.07659410685300827, + -0.06930962949991226, + 0.01465417630970478, + -0.05096587538719177, + 0.0292680487036705, + 0.02445845492184162, + 0.008645961992442608, + 0.035318512469530106, + -0.05820787698030472, + -0.020037604495882988, + 0.050458792597055435, + -0.07775620371103287, + 0.02537100948393345, + -0.07979277521371841, + -2.741912248893641e-05, + -0.03591379150748253, + -1.974611762989298e-08, + -0.004420945420861244, + -0.018048135563731194, + 0.0397036075592041, + -0.040196795016527176, + 0.021379811689257622, + -0.05714831128716469, + 0.03545581176877022, + 0.04727407917380333, + -0.04586193338036537, + -0.02107267826795578, + 0.019981805235147476, + -0.05509345978498459, + -0.01875065267086029, + 0.022003257647156715, + 0.07528147846460342, + -0.04568628594279289, + -0.09596565365791321, + 0.022006651386618614, + -0.036007292568683624, + -0.06278364360332489, + 0.003174179932102561, + 0.09036631882190704, + -0.03984138369560242, + 0.02399555779993534, + 0.0971173644065857, + 0.05355437472462654, + -0.011851764284074306, + -0.04606426879763603, + 0.01664835773408413, + 0.018783150240778923, + -0.01741841621696949, + 0.055586978793144226, + 0.007978749461472034, + -0.02461680769920349, + -0.024525146931409836, + -0.015837768092751503, + -0.04693972319364548, + -0.0024922771845012903, + -0.04168177396059036, + 0.06857983022928238, + 0.0074859061278402805, + -0.004577927757054567, + 0.007304520346224308, + -0.010728572495281696, + 0.05601278692483902, + 0.007819573394954205, + 0.06457088142633438, + -0.00715370150282979, + -0.08251726627349854, + 0.007138238754123449, + 0.05813462287187576, + 0.022635959088802338, + 0.03388354927301407, + 0.04455730319023132, + 0.03279949352145195, + -0.05648975819349289, + 0.02827027067542076, + 0.02591947466135025, + 0.003063539508730173, + 0.03187612071633339, + 0.11100304126739502, + -0.04037691652774811, + -0.06919500231742859, + 0.09089168906211853 + ], + "cloud-lightning-bold||meteorology,cloudy,overcast,stormy,thunderstorm": [ + 0.0073845842853188515, + -0.02449851855635643, + 0.1103600487112999, + 0.04169580340385437, + 0.03517204150557518, + 0.006907439790666103, + 0.0713905394077301, + -0.06670648604631424, + 0.010111154057085514, + -0.026839593425393105, + 0.01586410403251648, + -0.013590284623205662, + 0.024132192134857178, + -0.04430098831653595, + -0.044738512486219406, + 0.03860469162464142, + 0.023569457232952118, + -0.0925741121172905, + -0.019109465181827545, + 0.02630910649895668, + 0.0013384894700720906, + 0.09356535226106644, + -0.10075975209474564, + 0.040631964802742004, + 0.0957840234041214, + 0.07714685052633286, + -0.05458887666463852, + 0.002680344507098198, + -0.016563570126891136, + -0.051472265273332596, + 0.00216303882189095, + 0.0024166277144104242, + 0.014042136259377003, + 0.08288564532995224, + 0.016610348597168922, + -0.010528999380767345, + -0.030322955921292305, + -0.006008807569742203, + 0.007903804071247578, + 0.04820351302623749, + 0.023858431726694107, + -0.09159418940544128, + -0.03847620263695717, + -0.055227410048246384, + -0.0023802181240171194, + 0.01623626984655857, + -0.03389424830675125, + -0.02292458899319172, + 0.02722935564815998, + 0.025866037234663963, + -0.06645354628562927, + -0.09661049395799637, + -0.09843545407056808, + 0.06954686343669891, + 0.032002415508031845, + 0.027485819533467293, + -0.07795927673578262, + -0.03728988394141197, + 0.05831393599510193, + -0.023418879136443138, + -0.030143123120069504, + 0.07085645943880081, + -0.024950895458459854, + 0.09091256558895111, + 0.08323434740304947, + -0.012793805450201035, + -0.0811416283249855, + 0.12334605306386948, + 0.0412277951836586, + 0.034877143800258636, + 0.06098383665084839, + 0.07549677044153214, + 0.03903000429272652, + -0.012965824455022812, + -0.007997608743607998, + -0.026719117537140846, + 0.008812831714749336, + -0.028444532305002213, + -0.05020756646990776, + -0.06510050594806671, + 0.04285617172718048, + -0.005621645599603653, + -0.031537458300590515, + 0.007566372398287058, + -0.00902241189032793, + 0.07931943982839584, + -0.0039077820256352425, + -0.027322132140398026, + 0.013751206919550896, + -0.04749384894967079, + -0.032208606600761414, + -0.035788264125585556, + -5.171688098926097e-05, + 0.09150658547878265, + -0.06701308488845825, + 0.08737359195947647, + 0.10886303335428238, + -0.10724543035030365, + -0.005298901349306107, + 0.08273210376501083, + 0.03682598099112511, + -0.049695126712322235, + 0.029833311215043068, + 0.007075234316289425, + 0.020736688748002052, + -0.02050856687128544, + -0.06618832796812057, + -0.056462716311216354, + -0.027105296030640602, + -0.015951089560985565, + 0.0184140894562006, + -0.1000417023897171, + -0.059942591935396194, + -0.06475211679935455, + 0.03311706334352493, + -0.055406149476766586, + -0.07676249742507935, + 0.02111222594976425, + -0.01555347628891468, + -0.015175354667007923, + 0.0016576219350099564, + -0.06604745239019394, + 0.0081552779302001, + 0.03455961123108864, + 0.015288096852600574, + 0.07922062277793884, + -0.009710323996841908, + -2.6183271574192646e-33, + 0.08321763575077057, + -0.0009453200618736446, + 0.005376388784497976, + 0.08686137944459915, + 0.10229041427373886, + -0.04429388418793678, + -0.007666535675525665, + -0.03086889535188675, + -0.11456628143787384, + 0.05035306513309479, + -0.02753344736993313, + 0.09385041892528534, + -0.03020848147571087, + 0.04719708487391472, + 0.0436173677444458, + -0.08341692388057709, + -0.003994415979832411, + 0.007781919091939926, + -0.04162074252963066, + 0.04589197412133217, + -0.0875769853591919, + 0.01890411786735058, + -0.04438209906220436, + -0.04247063025832176, + -0.046592827886343, + -0.039541419595479965, + 0.07185635715723038, + -0.02663392201066017, + 0.02219756878912449, + 0.03233214467763901, + 0.08397525548934937, + 0.0836857482790947, + 0.10249169170856476, + 0.012079494073987007, + -0.014272470027208328, + 0.0311021339148283, + -0.05066737160086632, + -0.01984221301972866, + 0.0042143468745052814, + -0.017283953726291656, + -0.08511356264352798, + -0.04776979610323906, + -0.13209563493728638, + 0.004260525573045015, + 0.065870501101017, + 0.03915803134441376, + 0.00837717019021511, + -0.06470873951911926, + 0.012714303098618984, + -0.02462274208664894, + -0.053153250366449356, + 0.004234474617987871, + -0.04064740985631943, + -0.006971103139221668, + 0.06298116594552994, + 0.07495082169771194, + 0.022371716797351837, + 0.04078586399555206, + 0.06292848289012909, + -0.001108884927816689, + -0.0652531161904335, + -0.045203402638435364, + 0.056303225457668304, + -0.1499617099761963, + -0.02325061522424221, + -0.0315292552113533, + -0.038511957973241806, + 0.06262850761413574, + 0.025648897513747215, + 0.012493204325437546, + -0.0003143778012599796, + 0.006942579988390207, + 0.03461705520749092, + 0.07496989518404007, + 0.06045831739902496, + -0.0209844708442688, + -0.057259585708379745, + 0.046498946845531464, + 0.025139477103948593, + 0.0019735605455935, + -0.16174472868442535, + 0.018879294395446777, + 0.021342720836400986, + 0.05768007040023804, + -0.011717918328940868, + 0.004248365294188261, + -0.012309621088206768, + 0.004090900532901287, + -0.11003540456295013, + 0.09293347597122192, + -0.06915983557701111, + 0.09060841798782349, + 0.08273519575595856, + -0.06582917273044586, + -0.1029842421412468, + 5.16201721938803e-34, + 0.02972324565052986, + -0.003549943445250392, + -0.12389636039733887, + 0.06251353025436401, + 0.021409697830677032, + 0.03797749802470207, + -0.018529608845710754, + 0.04907730221748352, + -0.03574836254119873, + 0.07569117099046707, + 0.0059766327030956745, + 0.009171795099973679, + -0.07368824630975723, + -0.07373400777578354, + 0.027983659878373146, + -0.009459997527301311, + 0.028841951861977577, + 0.04316496104001999, + -0.055270593613386154, + 0.06338321417570114, + -0.0009455480612814426, + -0.07691879570484161, + -0.030923297628760338, + 0.04008913040161133, + -0.05890742689371109, + 0.08438464999198914, + 0.058719929307699203, + 0.05515149235725403, + -0.006034259684383869, + 0.006241257302463055, + -0.06110161915421486, + -0.005636813119053841, + -0.009447612799704075, + 0.022167552262544632, + -0.048657916486263275, + 0.11236848682165146, + 0.0708722174167633, + -0.09584697335958481, + -0.03416985273361206, + -0.09559575468301773, + -0.00427840743213892, + 0.010278735309839249, + 0.1022709533572197, + -0.03737998753786087, + 0.006355483550578356, + 0.012935222126543522, + -0.0321974903345108, + 0.06779058277606964, + -0.019385911524295807, + -0.0193280391395092, + 0.021157482638955116, + -0.04091775417327881, + -0.05347442254424095, + 0.11624490469694138, + -0.03137956187129021, + -0.04437745735049248, + 0.008525644429028034, + -0.056778497993946075, + -0.025484859943389893, + 0.008148561231791973, + -0.03577299416065216, + -0.06682778894901276, + 0.0394713319838047, + 0.022445062175393105, + -0.0024862478021532297, + -0.09272587299346924, + 0.008907070383429527, + -0.011732534505426884, + -0.010089977644383907, + 0.03617456182837486, + 0.03060092031955719, + -0.04289810732007027, + -0.03899325057864189, + -0.032016903162002563, + 0.07402805984020233, + -0.03897646814584732, + 0.0227147676050663, + 0.023714188486337662, + -0.020969312638044357, + 0.004544250201433897, + -0.006659515202045441, + 0.04201408848166466, + -0.07104536145925522, + 0.008783267810940742, + 0.004257004242390394, + -0.013897884637117386, + 0.09881488233804703, + 0.004744792357087135, + 0.0037223310209810734, + 0.06629571318626404, + -0.044625841081142426, + 0.06613976508378983, + -0.05464797094464302, + -0.0380680225789547, + 0.009068040177226067, + -1.9394562400520954e-08, + 0.020161278545856476, + 0.0165588166564703, + -0.002639369573444128, + -0.06434232741594315, + 0.04931216314435005, + -0.04289763793349266, + 0.030074192211031914, + 0.01708044670522213, + -0.013595185242593288, + -0.06093403697013855, + 0.032639987766742706, + -0.05203723534941673, + -0.014768301509320736, + 0.0020557264797389507, + 0.03808050602674484, + -0.026417452841997147, + -0.09967529028654099, + 0.012821580283343792, + -0.057926520705223083, + -0.0421321801841259, + -0.006221247371286154, + 0.07307849079370499, + -0.03467947989702225, + -0.004053698852658272, + 0.09956920146942139, + 0.062331683933734894, + 0.019947120919823647, + -0.029782291501760483, + 0.010987021960318089, + -0.017385272309184074, + -0.04996608570218086, + 0.04964369162917137, + -0.019772686064243317, + -0.01883278600871563, + -0.057746198028326035, + 0.02077227644622326, + -0.023498639464378357, + -0.01275030430406332, + -0.0353512279689312, + 0.05269128456711769, + -0.0112858135253191, + -0.05864545330405235, + 0.01656750589609146, + -0.020732253789901733, + -0.0010937930783256888, + 0.0346725694835186, + 0.05047713220119476, + -0.03053383156657219, + -0.03630718216300011, + 0.020141346380114555, + 0.004150568973273039, + -0.01003857608884573, + 0.03785460442304611, + -0.008281396701931953, + 0.009534383192658424, + -0.0023975614458322525, + 0.016521234065294266, + 0.011481920257210732, + -0.01669061742722988, + -0.009738151915371418, + 0.06990163028240204, + -0.05379559099674225, + -0.06449107825756073, + 0.09421379864215851 + ], + "cloud-moon-bold||meteorology,cloudy,partly cloudy,night,evening": [ + 0.02528008632361889, + -0.005474170669913292, + 0.10544784367084503, + 0.04182472079992294, + -0.0031083556823432446, + -0.06348909437656403, + 0.06839638948440552, + -0.08999650925397873, + -0.022224100306630135, + -0.04012395441532135, + 0.014239015057682991, + -0.058130357414484024, + -0.0035708153154700994, + -0.06403820961713791, + -0.0455886647105217, + 0.05048287659883499, + 0.03377474099397659, + -0.05476461723446846, + 0.010398195125162601, + 0.001956915482878685, + -0.06621405482292175, + 0.04759771376848221, + -0.06647305190563202, + 0.07730896770954132, + 0.09408793598413467, + 0.12354234606027603, + -0.009263495914638042, + -0.015317573212087154, + -0.01903793215751648, + -0.06281358748674393, + -0.05066419765353203, + 0.06714276224374771, + 0.016733011230826378, + 0.037208348512649536, + 0.03657951578497887, + 0.006305176764726639, + -0.033776503056287766, + -0.06930770725011826, + 0.007495153229683638, + 0.012693746946752071, + 0.018949635326862335, + -0.11937359720468521, + -0.03520524129271507, + -0.043945226818323135, + -0.03552878648042679, + 0.006906652357429266, + -0.014356092549860477, + -0.0085979625582695, + 0.047642529010772705, + 0.05008905008435249, + -0.06578364968299866, + -0.0810161828994751, + -0.11561751365661621, + 0.04528392478823662, + -0.016415566205978394, + 0.02283601090312004, + -0.09537619352340698, + -0.015093733556568623, + 0.06271392107009888, + -0.021209094673395157, + -0.03439905866980553, + 0.10723932832479477, + -0.006085491273552179, + 0.08084378391504288, + 0.13753046095371246, + 0.03103925660252571, + -0.11855282634496689, + 0.025408582761883736, + 0.048699162900447845, + 0.0051625375635921955, + 0.025460004806518555, + 0.04864448308944702, + -0.024120494723320007, + -0.03599022328853607, + -0.057318419218063354, + -0.06897126138210297, + 0.02715846337378025, + -0.01048243883997202, + -0.002477878937497735, + -0.07640732824802399, + 0.04251726716756821, + -0.031988371163606644, + -0.022396685555577278, + 0.015858596190810204, + -0.013024643994867802, + 0.06779177486896515, + -0.03986633941531181, + 0.033302322030067444, + 0.01047533005475998, + -0.0426195003092289, + -0.015879638493061066, + -0.02983071096241474, + -0.03420408442616463, + 0.06566381454467773, + -0.07045812904834747, + 0.024258971214294434, + 0.037715889513492584, + -0.05182896926999092, + 0.02010512724518776, + 0.07040754705667496, + 0.03457077965140343, + 0.01685507595539093, + 0.023925984278321266, + -0.009709700010716915, + 0.0072339302860200405, + -0.036669254302978516, + -0.03510851040482521, + -0.06781141459941864, + -0.005752986297011375, + 0.02475311979651451, + -0.05135735124349594, + -0.07099445164203644, + -0.015217596665024757, + -0.024030495434999466, + 0.0028157986234873533, + 0.01680912636220455, + -0.11755707114934921, + 0.015453476458787918, + 0.007421012036502361, + -0.032930463552474976, + -0.007428833283483982, + -0.08147918432950974, + -0.036906905472278595, + -0.01309224683791399, + 0.008352832868695259, + 0.03380555659532547, + -0.032316915690898895, + -3.200748425066222e-33, + 0.12111662328243256, + 0.015528273768723011, + 0.03331978991627693, + 0.025746915489435196, + 0.11802289634943008, + -0.05003378167748451, + -0.030407315120100975, + -0.0265558622777462, + -0.12031825631856918, + 0.039568547159433365, + -0.019460629671812057, + 0.04767850786447525, + -0.03044329583644867, + 0.023789504542946815, + 0.07799389958381653, + -0.00010745285544544458, + 0.046904563903808594, + 0.005389050114899874, + -0.01562819443643093, + 0.06700410693883896, + -0.12588216364383698, + 0.0689680203795433, + -0.08796387910842896, + -0.05855286493897438, + 0.01229906640946865, + -0.05951031669974327, + 0.0358794629573822, + 0.011763890273869038, + 0.03333297371864319, + 0.03133033215999603, + 0.1018708199262619, + 0.0146709643304348, + 0.0926070287823677, + 0.017758522182703018, + 4.472327418625355e-05, + 0.02330649271607399, + -0.07348005473613739, + 0.01306774839758873, + -0.01886153034865856, + 0.004821007139980793, + 5.3823267080588266e-05, + -0.011421168223023415, + -0.06357616931200027, + -0.018929248675704002, + 0.032450731843709946, + 0.03488372638821602, + 0.02608189359307289, + -0.05097370222210884, + 0.04764232784509659, + 0.02179957926273346, + -0.04914328455924988, + 0.018015839159488678, + -0.055239759385585785, + -0.01369867566972971, + 0.05843418091535568, + 0.0629047155380249, + -0.016678979620337486, + 0.008138458244502544, + -0.012443085201084614, + 0.03590890392661095, + -0.015232875011861324, + -0.08899343013763428, + 0.07465946674346924, + -0.13697348535060883, + -0.0076715960167348385, + 0.001924120937474072, + -0.06857176870107651, + 0.09577423334121704, + -0.016226686537265778, + -0.015610097907483578, + 0.0029124452266842127, + -0.002416397677734494, + 0.08785834163427353, + 0.040101148188114166, + 0.08258718252182007, + -0.003245933447033167, + 0.03227762132883072, + -0.007814975455403328, + 0.007901919074356556, + -0.011240372434258461, + -0.11416413635015488, + 0.04252777248620987, + 0.02548440359532833, + -0.021758869290351868, + -0.053233612328767776, + 0.07472335547208786, + 0.017689209431409836, + 0.028939522802829742, + -0.07281171530485153, + 0.06131669133901596, + -0.09216921031475067, + 0.006479465868324041, + 0.04135974869132042, + -0.01659483276307583, + -0.09756176918745041, + 5.002199119666643e-34, + 0.07303640246391296, + -0.030331125482916832, + -0.08263526111841202, + -0.0011914737988263369, + 0.028480542823672295, + 0.05311630293726921, + -0.0007546350243501365, + 0.040425240993499756, + -0.027533020824193954, + 0.12754949927330017, + -0.027020592242479324, + -0.008277514018118382, + -0.045723576098680496, + -0.08536633104085922, + 0.036579906940460205, + -0.02841104567050934, + 0.042678914964199066, + 0.014464527368545532, + -0.04884016886353493, + 0.1189655289053917, + -0.0020053803455084562, + 0.0003846885228995234, + 0.028232181444764137, + -0.006573255639523268, + -0.06820967048406601, + 0.054583143442869186, + 0.07794670015573502, + 0.03686455264687538, + -0.029705572873353958, + 0.04383990913629532, + -0.11864148080348969, + -0.013837471604347229, + -0.013255792669951916, + -0.013826698064804077, + -0.07361648976802826, + 0.12053997814655304, + 0.05123557522892952, + -0.11225835233926773, + 0.008251680061221123, + -0.022605489939451218, + -0.05749175325036049, + -0.005967343226075172, + 0.05189356207847595, + -0.06028635799884796, + 0.010981649160385132, + 0.034759365022182465, + -0.006567517761141062, + 0.10556276142597198, + -0.06464307755231857, + 0.0011411960003897548, + 0.04559389129281044, + -0.039004214107990265, + -0.04657754302024841, + 0.09631098806858063, + 0.00524483947083354, + 0.015619734302163124, + -0.0476706363260746, + -0.008054099977016449, + -0.024432159960269928, + -0.0032992756459861994, + -0.03237204626202583, + -0.04796120896935463, + -0.02924717776477337, + -0.0004004895163234323, + -0.010857047513127327, + -0.05503464117646217, + -0.006244675721973181, + -0.008126559667289257, + 0.030273551121354103, + 0.07768614590167999, + -0.028968090191483498, + -0.06253955513238907, + -0.050059810280799866, + 0.05358660966157913, + 0.08670087158679962, + -0.018731260672211647, + 0.004827342927455902, + 0.026915716007351875, + 0.016225380823016167, + 0.04229727014899254, + -0.08754803985357285, + 0.01487193163484335, + -0.0536835715174675, + 0.027409972622990608, + -0.00363787985406816, + -0.013581947423517704, + 0.024523956701159477, + -0.007441519759595394, + -0.023878777399659157, + 0.05238960683345795, + -0.02051163837313652, + 0.035593923181295395, + -0.041747938841581345, + 0.016635572537779808, + -0.04049557074904442, + -1.84685564619258e-08, + 0.06511367112398148, + -0.04390346631407738, + -0.010382644832134247, + -0.0015550616662949324, + 0.04921147599816322, + -0.04872647672891617, + 0.04742111265659332, + 0.009189160540699959, + -0.04032352939248085, + -0.006748323794454336, + 0.022251373156905174, + -0.03768301010131836, + -0.043098315596580505, + -0.03942732512950897, + -0.0004197791568003595, + -0.003828534157946706, + -0.07046830654144287, + 0.014441506937146187, + -0.03721260279417038, + -0.0778874009847641, + 0.04053819924592972, + 0.05745184049010277, + 0.030527548864483833, + -0.013826233334839344, + 0.10160763561725616, + 0.08695606142282486, + -0.0013085975078865886, + 0.01131986640393734, + -0.08200271427631378, + 0.03827835991978645, + -0.017219046130776405, + 0.060916297137737274, + 0.018424971029162407, + -0.12136772274971008, + -0.054451797157526016, + -0.0669659972190857, + -0.002245544223114848, + 0.016876066103577614, + -0.03491434454917908, + 0.04870602861046791, + 0.03787273168563843, + -0.0030514474492520094, + -0.010261301882565022, + -0.011155584827065468, + 0.046844467520713806, + 0.05436202883720398, + 0.12476684898138046, + -0.03861352801322937, + -0.02777651511132717, + 0.012818328104913235, + -0.0011480827815830708, + -0.00889087375253439, + 0.06582842767238617, + -0.015958063304424286, + 0.03560900315642357, + 0.0025321890134364367, + 0.03287592530250549, + 0.02516389824450016, + 0.011620978824794292, + 0.046672623604536057, + 0.11335820704698563, + -0.034179557114839554, + -0.08582485467195511, + 0.030294975265860558 + ], + "cloud-rain-bold||meteorology,cloudy,rainy,raining,stormy,rainstorm": [ + 0.02175743132829666, + -0.029075950384140015, + 0.1092333197593689, + 0.023767637088894844, + 0.01545975636690855, + 0.010461375117301941, + 0.07754528522491455, + -0.10290640592575073, + -0.0059180110692977905, + 0.0077680861577391624, + 0.008905789814889431, + -0.04287673532962799, + 0.048656709492206573, + -0.023636935278773308, + -0.06275760382413864, + 0.027852006256580353, + -0.028555087745189667, + -0.07396584004163742, + 0.013069160282611847, + 0.03414333984255791, + -0.02027176506817341, + 0.07185454666614532, + -0.1105506420135498, + 0.06277693808078766, + 0.08107960224151611, + 0.08198345452547073, + -0.009379453025758266, + 0.008407462388277054, + -0.023051802068948746, + -0.06704632192850113, + -0.004065130837261677, + 0.043333884328603745, + 0.07512164860963821, + 0.024029972031712532, + 0.04234480485320091, + 0.0049610682763159275, + -0.03998846188187599, + -0.010902203619480133, + -0.011232574470341206, + 0.04046841710805893, + 0.01651245541870594, + -0.07053301483392715, + -0.021736271679401398, + -0.04539325833320618, + 0.029079213738441467, + -0.021697502583265305, + -0.042761772871017456, + 0.017038246616721153, + 0.030728096142411232, + 0.05141812562942505, + -0.07245106995105743, + -0.08180218935012817, + -0.0937761440873146, + 0.030749542638659477, + -0.017331264913082123, + 0.01495040487498045, + -0.028923865407705307, + -0.04370636120438576, + 0.01011863723397255, + -0.023973748087882996, + -0.011038391850888729, + 0.07736509293317795, + -0.07032428681850433, + 0.08076965063810349, + 0.11690930277109146, + 0.0036364535335451365, + -0.06652060151100159, + 0.11665001511573792, + 0.034419771283864975, + 0.047602228820323944, + 0.01560768112540245, + 0.07820221781730652, + 0.02727915346622467, + -0.002294148551300168, + -0.021964456886053085, + -0.04685324430465698, + 0.002483138581737876, + -0.017159288749098778, + -0.029646694660186768, + -0.06373658031225204, + 0.03284541890025139, + 0.005420935805886984, + 0.03615088015794754, + -0.05258283391594887, + -0.0603003166615963, + 0.09050292521715164, + -0.01207907684147358, + -0.028672700747847557, + 0.02210311032831669, + -0.1040622815489769, + -0.023572850972414017, + -0.0474199503660202, + 0.020623037591576576, + 0.08963032066822052, + -0.08041426539421082, + 0.10869024693965912, + 0.10870909690856934, + -0.07826047390699387, + 0.03437744826078415, + 0.07529456168413162, + 0.03725108131766319, + -0.06031012907624245, + 0.026321398094296455, + -0.008875887840986252, + 0.02405683696269989, + 0.0005545636522583663, + -0.0445241816341877, + -0.08287372440099716, + -0.015023975633084774, + -0.011958261951804161, + -0.04381546750664711, + -0.07681304961442947, + -0.010679990984499454, + -0.004203309305012226, + 0.015924107283353806, + -0.0333908349275589, + -0.09357714653015137, + -0.0009332075715065002, + 0.00020250320085324347, + -0.010544993914663792, + -0.05238502845168114, + -0.06752829253673553, + -0.01999834179878235, + 0.009707330726087093, + -0.001487402943894267, + 0.06833039969205856, + -0.010466563515365124, + -3.284001343095272e-33, + 0.11643091589212418, + -0.031885530799627304, + 0.019238831475377083, + 0.11062063276767731, + 0.09603189677000046, + -0.05088607966899872, + -0.019051965326070786, + -0.07810536026954651, + -0.11224882304668427, + 0.02225208841264248, + -0.012402430176734924, + 0.03696011006832123, + -0.03948114439845085, + 0.05921827256679535, + 0.062080975621938705, + -0.0569596067070961, + 0.004187438171356916, + 0.019748181104660034, + -0.034536346793174744, + 0.050086237490177155, + -0.13108962774276733, + 0.023712655529379845, + -0.05851072818040848, + -0.05166039615869522, + -0.01177266612648964, + -0.03472941368818283, + 0.0773969292640686, + -0.008149862289428711, + 0.04222049564123154, + 0.03363679721951485, + 0.07923850417137146, + 0.07193407416343689, + 0.09788840264081955, + -0.02168506570160389, + -0.01102370209991932, + 0.02733028493821621, + -0.0632922351360321, + 0.006293994840234518, + 0.027050083503127098, + -0.015098764561116695, + -0.085237517952919, + -0.0712602436542511, + -0.0969008207321167, + -0.007566501852124929, + 0.04458320140838623, + 0.013103094883263111, + 0.013183990493416786, + -0.05702400952577591, + 0.021334286779165268, + -0.036923639476299286, + -0.050885941833257675, + 0.01796899549663067, + -0.028867974877357483, + -0.0075618489645421505, + 0.041319023817777634, + 0.06721696257591248, + 0.058877453207969666, + 0.034417349845170975, + 0.03744181990623474, + 0.009595285169780254, + -0.04349035397171974, + -0.030852846801280975, + 0.06114199012517929, + -0.14847823977470398, + 0.0036604434717446566, + -0.04478614032268524, + -0.036645110696554184, + 0.0986466184258461, + 0.02226957120001316, + 0.014520111493766308, + -0.004922294523566961, + 0.017999697476625443, + 0.04167366027832031, + 0.0601615272462368, + 0.06472935527563095, + 0.005162627901881933, + -0.009682781994342804, + -0.01662788912653923, + 0.016215894371271133, + 0.031505804508924484, + -0.15405061841011047, + 0.042485661804676056, + -0.001426385948434472, + 0.007730051875114441, + -0.07292565703392029, + 0.03662819415330887, + 0.025128230452537537, + 0.002896319143474102, + -0.044014837592840195, + 0.06777744740247726, + -0.02804877981543541, + 0.08489018678665161, + 0.11574042588472366, + -0.07301877439022064, + -0.05760951340198517, + 1.0531450187389911e-34, + 0.04822206124663353, + 0.01103619858622551, + -0.09717500954866409, + 0.05420124530792236, + 0.031997863203287125, + 0.06210563704371452, + 0.025528399273753166, + 0.051374875009059906, + -0.0007768963114358485, + 0.07903917133808136, + -0.04800642654299736, + 0.0004386846849229187, + -0.11663535237312317, + -0.08401951193809509, + 0.05631202086806297, + 0.018952062353491783, + 0.03619378060102463, + 0.011749649420380592, + -0.04645495489239693, + 0.06005632504820824, + -0.024342987686395645, + -0.0954156443476677, + -0.0002620113955345005, + 0.026336947456002235, + -0.04773537442088127, + 0.04412464797496796, + 0.06088918447494507, + 0.043186597526073456, + -0.01605602726340294, + 0.05478309839963913, + -0.08482407033443451, + -0.026684243232011795, + -0.030931243672966957, + 0.058944400399923325, + -0.053318798542022705, + 0.09802351891994476, + 0.06329896301031113, + -0.11110406368970871, + -0.03811235353350639, + -0.0698445588350296, + -0.06107841059565544, + 0.007270782254636288, + 0.12856897711753845, + -0.052114177495241165, + 0.04548031836748123, + 0.02107887901365757, + -0.018768955022096634, + 0.06144924461841583, + -0.017159419134259224, + -0.03286910429596901, + 0.014035949483513832, + -0.02280844934284687, + -0.042834725230932236, + 0.11225878447294235, + -0.00155070167966187, + -0.06550894677639008, + 0.0035402202047407627, + -0.05972481891512871, + -0.07699312269687653, + 0.033017173409461975, + -0.07246524840593338, + -0.06207704916596413, + -0.011031881906092167, + 0.00606897147372365, + -0.03176641836762428, + -0.09778248518705368, + -0.02967529185116291, + -0.02966058813035488, + 0.0066091138869524, + 0.03403019160032272, + -0.01060999184846878, + -0.04475656896829605, + -0.06792428344488144, + 0.0007859196630306542, + 0.06426398456096649, + -0.011218264698982239, + -0.005200736224651337, + 0.06764118373394012, + -0.04327011480927467, + 0.02623063698410988, + -0.011969233863055706, + 0.024996068328619003, + -0.07070814073085785, + 0.01676906831562519, + -0.031048396602272987, + -0.02750285714864731, + 0.06104084849357605, + -0.03312654420733452, + 0.01879064552485943, + 0.09107745438814163, + -0.03636538237333298, + 0.04203469678759575, + -0.03054005838930607, + -0.028809422627091408, + 0.005769119597971439, + -1.9629490921602155e-08, + 0.028810186311602592, + -0.030678099021315575, + 0.003209637012332678, + -0.047531258314847946, + 0.024890955537557602, + -0.046034473925828934, + 0.01805400475859642, + -0.0010616916697472334, + -0.004832840990275145, + -0.029342617839574814, + 0.0057602240704, + -0.033512841910123825, + -0.04199226573109627, + 0.02780480496585369, + 0.03083071857690811, + -0.03478555381298065, + -0.07591455429792404, + 0.016898008063435555, + -0.04138980433344841, + -0.06190212815999985, + 0.0026621059514582157, + 0.06961920112371445, + -0.04578781872987747, + 0.018022121861577034, + 0.08791003376245499, + 0.044920384883880615, + -0.046582892537117004, + -0.023055700585246086, + -0.02010815590620041, + 0.0159969013184309, + -0.024017982184886932, + 0.07322308421134949, + -0.04715968668460846, + -0.030155962333083153, + -0.030993370339274406, + 0.009350702166557312, + 0.0060054645873606205, + 0.01737591065466404, + -0.036195628345012665, + 0.06152980029582977, + 0.022143173962831497, + 0.006113722454756498, + -0.007018789649009705, + -0.03687918558716774, + 0.029762916266918182, + 0.036381758749485016, + 0.041974376887083054, + -0.031731829047203064, + -0.03369014337658882, + -0.025728493928909302, + -0.00997327733784914, + 0.00041025003883987665, + 0.06378402560949326, + 0.03740769252181053, + 0.05611865967512131, + 0.015376562252640724, + 0.00901468750089407, + -0.01572398841381073, + 0.01798022910952568, + 0.019369399175047874, + 0.0715504139661789, + -0.03434759005904198, + -0.044367969036102295, + 0.05542564392089844 + ], + "cloud-slash-bold||serverless,backup,storage,sync,disabled": [ + 0.004558098502457142, + -0.01900891587138176, + 0.006508353166282177, + 0.047299496829509735, + 0.05166564881801605, + -0.013056597672402859, + -0.07032962888479233, + -0.08951006829738617, + 0.09170692414045334, + 0.06814363598823547, + 0.07796802371740341, + 0.05545113608241081, + 0.06901101768016815, + -0.028437549248337746, + -0.03356659784913063, + 0.033563029021024704, + 0.046978387981653214, + -0.019749663770198822, + -0.02197595313191414, + 0.08886527270078659, + -0.14342311024665833, + 0.053079381585121155, + -0.0116279823705554, + 0.039258766919374466, + 0.07401121407747269, + -0.008432716131210327, + -0.05444180592894554, + 0.010367341339588165, + -0.011846132576465607, + -0.04032176733016968, + 0.027601370587944984, + -0.07728185504674911, + 0.04331779479980469, + 0.08124537020921707, + 0.10124185681343079, + 0.07017503678798676, + 0.02427801489830017, + -0.05730356276035309, + 0.013651133514940739, + -0.02555152401328087, + 0.07238946110010147, + -0.10029193013906479, + -0.047575693577528, + -0.027788951992988586, + -0.06486450135707855, + 0.0419304184615612, + 0.001616777735762298, + -0.1183939129114151, + -0.02409433014690876, + -0.018241148442029953, + 0.02903604321181774, + -0.005750433541834354, + -0.10013327747583389, + 0.0036208361852914095, + 0.022534485906362534, + 0.05510679632425308, + -0.06708668917417526, + 0.11981584876775742, + 0.09079013764858246, + 0.009310724213719368, + 0.035794634371995926, + -0.03704239800572395, + 0.04287318140268326, + -0.006804466713219881, + 0.04033734276890755, + 0.06996213644742966, + 0.028459161520004272, + -0.014312698505818844, + -0.09650212526321411, + 0.0414237417280674, + 0.03826775401830673, + 0.032884713262319565, + -0.06715849041938782, + -0.015414959751069546, + -0.020732423290610313, + 0.02587108500301838, + 0.024249080568552017, + 0.02989010699093342, + -0.012129577808082104, + -0.005047622136771679, + -0.02716374583542347, + -0.0536043718457222, + -0.01609056442975998, + 0.0962914451956749, + -0.03531452268362045, + 0.016632622107863426, + -0.07148754596710205, + -0.03159533441066742, + 0.026481380686163902, + -0.08572724461555481, + 0.014905845746397972, + -0.040576282888650894, + 0.04984479025006294, + -0.014667647890746593, + -0.061396777629852295, + -0.03619519621133804, + 0.008607786148786545, + 0.08520359545946121, + -0.0634806677699089, + -0.009191260673105717, + 0.03410879150032997, + 0.05196075513958931, + 0.0327129028737545, + 0.012232445180416107, + 0.01853909343481064, + -0.007787367794662714, + 0.028431806713342667, + 0.022096829488873482, + -0.03615383058786392, + -0.06368747353553772, + -0.011915029026567936, + -0.033838093280792236, + -0.0417289063334465, + 0.02724749594926834, + -0.0007001874619163573, + -0.04594980552792549, + -0.06467311829328537, + -0.039503127336502075, + 0.014178847894072533, + 0.07469210773706436, + 0.0814838632941246, + -0.1252303421497345, + -0.002484156284481287, + -0.06177849322557449, + -0.053202126175165176, + 0.01252221129834652, + 0.039678774774074554, + -2.980192807744336e-33, + 0.12238816171884537, + 0.05081208422780037, + 0.03848794102668762, + -0.04393427073955536, + 0.15655681490898132, + -0.012800697237253189, + -0.0716908872127533, + -0.07613547146320343, + -0.07607058435678482, + 0.015560779720544815, + 0.05406753346323967, + 0.05952417850494385, + 0.03353407233953476, + 0.01733192428946495, + 0.028359316289424896, + -0.02725701592862606, + 0.09782853722572327, + 0.014422967098653316, + 0.0332123227417469, + -0.04618309810757637, + -0.01818724535405636, + 0.10424496233463287, + -0.01988251321017742, + -0.034625086933374405, + -0.02755553089082241, + -0.058109451085329056, + 0.06016448512673378, + -0.039010122418403625, + 0.02701103687286377, + -0.0014456618810072541, + -0.01288263313472271, + -0.001204756204970181, + 0.03684820979833603, + 0.021072328090667725, + -0.06207946687936783, + 0.017923710867762566, + -0.08099962025880814, + 0.018226882442831993, + -0.08171432465314865, + 0.11043570190668106, + 0.036285024136304855, + -0.043846942484378815, + -0.07941406965255737, + -0.057886987924575806, + -0.02542988397181034, + 0.04553045704960823, + 0.04007360711693764, + -0.14804013073444366, + -0.004140581004321575, + 0.06158112362027168, + -0.08848114311695099, + 0.01670829951763153, + -0.0014106445014476776, + -0.026143621653318405, + -0.020466025918722153, + -0.03883913531899452, + -0.02195798046886921, + -0.04280383884906769, + -0.013607422821223736, + -0.03417757526040077, + -0.03802047669887543, + -0.02575572207570076, + 0.024344388395547867, + -0.04878534376621246, + -0.07455764710903168, + -0.004593837074935436, + -0.049656957387924194, + 0.037411030381917953, + -0.01813329942524433, + -0.0038692611269652843, + 0.024597464129328728, + 0.008434874936938286, + 0.018215203657746315, + 0.03357155621051788, + 0.04133312404155731, + -0.039766356348991394, + -0.05142573267221451, + -0.027675600722432137, + 0.0023142111022025347, + -0.03650357574224472, + -0.1154465451836586, + -0.019110435619950294, + -0.05600119009613991, + 0.11410044133663177, + -0.0016886661760509014, + -0.015500643290579319, + -0.03187663480639458, + 0.03374706953763962, + -0.005124712362885475, + 0.013436682522296906, + -0.0019557946361601353, + -0.035970188677310944, + 0.025793472304940224, + -0.11489926278591156, + -0.08012513816356659, + 1.174187899053944e-33, + 0.03926355391740799, + -0.029351701959967613, + -0.063894122838974, + 0.07182201743125916, + -0.028915956616401672, + 0.02171660028398037, + 0.020929725840687752, + 0.08330684900283813, + -0.02044745907187462, + 0.004494073335081339, + 0.07267731428146362, + 0.03266625106334686, + -0.03861409053206444, + -0.02590392529964447, + -0.02526429481804371, + 0.05123491585254669, + -0.05586881563067436, + -0.06728195399045944, + -0.043120138347148895, + 0.013510157354176044, + -0.011163515970110893, + -0.011859999038279057, + 0.0320705808699131, + 0.1169571578502655, + -0.018602514639496803, + 0.05828368291258812, + 0.0041056470945477486, + 0.06643161922693253, + 0.042284030467271805, + -0.02468029595911503, + -0.024228530004620552, + 0.05849917232990265, + -0.0029984135180711746, + -0.017295239493250847, + -0.061215873807668686, + 0.018860135227441788, + -0.10661456733942032, + 0.0820385068655014, + -0.0596126951277256, + -0.04967736825346947, + 0.02796628326177597, + -0.043553415685892105, + 0.00037742487620562315, + 0.03773900866508484, + -0.0002848932344932109, + 0.035351820290088654, + -0.05006106570363045, + -0.0685391053557396, + -0.031826943159103394, + 0.059299301356077194, + 0.048644643276929855, + 0.01796373352408409, + 0.016824055463075638, + 0.05699804797768593, + -0.01892869733273983, + -0.017714159563183784, + -0.030065616592764854, + 0.07592497766017914, + -0.08897121250629425, + 0.06107502803206444, + 0.06739452481269836, + -0.029078079387545586, + -0.036058977246284485, + -0.004738428629934788, + -0.020966751500964165, + -0.024249114096164703, + 0.02082020416855812, + 0.02918328158557415, + 0.015407856553792953, + -0.02620486170053482, + -0.011536258272826672, + 0.005716027691960335, + 0.003096296451985836, + -0.018387898802757263, + 0.056212183088064194, + -0.0484677217900753, + -0.052306775003671646, + -0.08073771744966507, + 0.046893034130334854, + 0.07302713394165039, + -0.025008363649249077, + 0.06031769886612892, + -0.10403653234243393, + 0.010864956304430962, + 0.019724827259778976, + -0.06467274576425552, + -0.04141419753432274, + 0.11335159838199615, + -0.05407017469406128, + -0.0068994858302176, + -0.07487277686595917, + -0.028025425970554352, + -0.05552567169070244, + 0.10806513577699661, + -0.03766534477472305, + -1.8669895851530782e-08, + -0.014421220868825912, + 0.00023472846078220755, + 0.008092147298157215, + 0.042635463178157806, + 0.05047428980469704, + -0.06394735723733902, + 0.06046879664063454, + 0.013359490782022476, + 0.03357408195734024, + 0.0022707420866936445, + -0.006023108027875423, + -0.11255160719156265, + -0.046017155051231384, + -0.010591843165457249, + 0.007135292049497366, + 0.06072953715920448, + 0.009454384446144104, + 0.025936197489500046, + -0.025100182741880417, + -0.022133158519864082, + -0.05342457816004753, + 0.04032590240240097, + 0.005354453809559345, + 0.008120815269649029, + 0.09548040479421616, + 0.032178010791540146, + 0.04258125647902489, + 0.0023717558942735195, + -0.01768307015299797, + 0.035513028502464294, + -0.0001455034944228828, + -0.00978841446340084, + 0.023018741980195045, + -0.020338062196969986, + -0.05761025473475456, + 0.01010451652109623, + -0.02305356226861477, + 0.020845627412199974, + 0.027916880324482918, + 0.06263748556375504, + -0.02485419064760208, + 0.005265696439892054, + 0.0017804454546421766, + -0.03999616950750351, + 0.0008496605441905558, + -0.027511581778526306, + 0.056456949561834335, + 0.0653785914182663, + -0.08948740363121033, + -0.019447432830929756, + -0.00038430053973570466, + -0.033538706600666046, + 0.02010524272918701, + 0.1003924086689949, + 0.04271678999066353, + -0.021335279569029808, + 0.07288052141666412, + 0.06185983121395111, + 0.007483994588255882, + 0.08641835302114487, + 0.1383679211139679, + -0.03725937008857727, + 0.007373313885182142, + -0.04289053753018379 + ], + "cloud-snow-bold||meteorology,cloudy,snowy,snowing,stormy,snowstorm": [ + -0.01161982212215662, + -0.024521153420209885, + 0.10921040922403336, + 0.028303587809205055, + 0.000860558298882097, + 0.0301885474473238, + 0.053290143609046936, + -0.06660652160644531, + 0.02135923132300377, + -0.011277918703854084, + -0.01867855340242386, + 0.0014672831166535616, + 0.04808588698506355, + -0.040080808103084564, + -0.03787340596318245, + 0.004685716237872839, + 0.0034511357080191374, + -0.07952909171581268, + 0.007860283367335796, + 0.027280321344733238, + 0.010330070741474628, + 0.07176481187343597, + -0.08151540160179138, + 0.06408137083053589, + 0.08894076198339462, + 0.08306199312210083, + -0.04050985351204872, + 0.0023822409566491842, + -0.019474156200885773, + -0.031212320551276207, + -0.022954175248742104, + 0.016692867502570152, + 0.05992695689201355, + 0.07238059490919113, + 0.03050440549850464, + 0.01344243437051773, + -0.03270632028579712, + -0.0007480913191102445, + -0.001002727192826569, + 0.06920074671506882, + 0.01005833875387907, + -0.0909322053194046, + -0.018555525690317154, + -0.057910021394491196, + 0.030631599947810173, + -0.0009593775612302125, + -0.04999877139925957, + 0.018112020567059517, + 0.04528273642063141, + 0.053990352898836136, + -0.10657070577144623, + -0.08489007502794266, + -0.13197778165340424, + 0.09889677166938782, + -0.003632977372035384, + 0.048917535692453384, + -0.051762618124485016, + -0.06468228250741959, + 0.015425600111484528, + -0.020801592618227005, + -0.010078420862555504, + 0.05036252737045288, + -0.02074114792048931, + 0.0890825092792511, + 0.1004718616604805, + 0.009935325011610985, + -0.051967229694128036, + 0.05339283123612404, + 0.039134763181209564, + 0.029640350490808487, + 0.019519677385687828, + 0.08771225064992905, + 0.007351984735578299, + 0.005233681760728359, + -0.019361086189746857, + -0.05169503018260002, + -0.008639296516776085, + -0.031052177771925926, + -0.04344804957509041, + -0.06656026840209961, + 0.026230819523334503, + 0.01876758225262165, + 0.03762877732515335, + -0.020777365192770958, + -0.06511633843183517, + 0.06845548748970032, + -0.016896892338991165, + -0.034240033477544785, + 0.033533379435539246, + -0.09250710159540176, + -0.056531380861997604, + -0.048447441309690475, + -0.004255578853189945, + 0.0781819075345993, + -0.12946616113185883, + 0.07733112573623657, + 0.11720480769872665, + -0.04395117610692978, + 0.010142141953110695, + 0.06490877270698547, + 0.05108300596475601, + -0.08268748968839645, + 0.017234357073903084, + -0.007208155933767557, + 0.03955312818288803, + 0.027220970019698143, + -0.06941289454698563, + -0.10003546625375748, + -0.06738085299730301, + 0.0016268928302451968, + -0.009391594678163528, + -0.08139484375715256, + -0.0633339062333107, + -0.007212924305349588, + 0.023412585258483887, + -0.0515165701508522, + -0.09280592203140259, + 0.006243774201720953, + -0.04300681874155998, + 0.022654514759778976, + -0.0333307608962059, + -0.052121616899967194, + 0.01071511022746563, + 0.019349494948983192, + 0.016315290704369545, + 0.06188022717833519, + -0.008198481053113937, + -2.3373292736170277e-33, + 0.09396287053823471, + -0.029113255441188812, + 0.04294505715370178, + 0.09336812049150467, + 0.10301922261714935, + -0.055518779903650284, + -0.018005264922976494, + -0.04487614706158638, + -0.0922350138425827, + 0.0670606717467308, + -0.012674413621425629, + 0.07930229604244232, + -0.06573294848203659, + 0.023710977286100388, + 0.08290071785449982, + -0.05265205726027489, + 0.010314719751477242, + -0.03123721294105053, + -0.038752611726522446, + 0.09060444682836533, + -0.07309795171022415, + 0.037208545953035355, + -0.027339059859514236, + -0.034370459616184235, + -0.041303426027297974, + -0.0395384319126606, + 0.05546031892299652, + -0.024275589734315872, + 0.020228765904903412, + 0.015620240941643715, + 0.095603346824646, + 0.04971395060420036, + 0.07666889578104019, + -0.002999698044732213, + -0.00017094609211198986, + 0.007867327891290188, + -0.05089682340621948, + 0.004145556595176458, + 0.0391375906765461, + 0.006606393493711948, + -0.05234064534306526, + -0.06278930604457855, + -0.08385735005140305, + -0.01925205998122692, + 0.051597002893686295, + 0.04474181309342384, + 0.030343810096383095, + -0.041499681770801544, + 0.03299454227089882, + -0.008250453509390354, + -0.037615884095430374, + 0.0171145498752594, + -0.03709179162979126, + 0.004185292404145002, + 0.05892917886376381, + 0.05528373271226883, + 0.023247849196195602, + 0.024266941472887993, + 0.036795441061258316, + 0.01238776184618473, + -0.0805828645825386, + -0.07854143530130386, + 0.09678130596876144, + -0.1413053721189499, + -0.0463872104883194, + -0.0654301717877388, + -0.024311820045113564, + 0.11850832402706146, + 0.0005839598597958684, + 0.0401073582470417, + 0.026822542771697044, + 0.04036521911621094, + 0.05426293611526489, + 0.047968558967113495, + 0.07659895718097687, + 0.014690814539790154, + -0.03781786188483238, + -0.01272615510970354, + 0.021376805379986763, + -0.0002775621833279729, + -0.13230223953723907, + 0.030902916565537453, + -0.007531226146966219, + 0.05845988914370537, + -0.08454639464616776, + 0.04795636236667633, + 0.015611476264894009, + -0.0009107626974582672, + -0.05927388742566109, + 0.07145631313323975, + -0.08194078505039215, + 0.07710545510053635, + 0.07234127074480057, + -0.06526043266057968, + -0.07817677408456802, + -4.39406124986606e-34, + 0.06627243757247925, + -0.008617065846920013, + -0.08512407541275024, + 0.045933742076158524, + 0.014224640093743801, + 0.09241478145122528, + 0.027421705424785614, + 0.03499815985560417, + -0.004555247724056244, + 0.08715548366308212, + -0.04540706425905228, + -0.0017696497961878777, + -0.05799159035086632, + -0.09202057123184204, + 0.038273897022008896, + 0.027220996096730232, + 0.011188420467078686, + 0.0208187997341156, + -0.041705742478370667, + 0.0594610720872879, + -0.01382704358547926, + -0.06433720141649246, + -0.059531208127737045, + -0.003593437373638153, + -0.04118084907531738, + 0.04631424322724342, + 0.04712020978331566, + 0.07577912509441376, + -0.0014140540733933449, + 0.05103372409939766, + -0.07183731347322464, + -0.037842389196157455, + 0.002108614193275571, + -0.0017099120886996388, + -0.06901761144399643, + 0.11737912148237228, + 0.06180540844798088, + -0.10269385576248169, + -0.06691258400678635, + -0.07863524556159973, + -0.03401675075292587, + -0.013566168025135994, + 0.1211017519235611, + -0.0053198132663965225, + 0.055510446429252625, + -0.008147723972797394, + -0.056091729551553726, + 0.07073748856782913, + -0.006031076889485121, + -0.009589073248207569, + 0.014121787622570992, + -0.02202814817428589, + -0.07405029237270355, + 0.10649789869785309, + -0.027257535606622696, + -0.023758862167596817, + -0.032964542508125305, + -0.03960398957133293, + -0.057428523898124695, + -0.0005174378748051822, + -0.06120285391807556, + -0.08444828540086746, + -0.027166524901986122, + 0.008025623857975006, + -0.010993441566824913, + -0.09315310418605804, + -0.007026960141956806, + -0.06238861009478569, + 0.023889314383268356, + 0.06840690970420837, + 0.026783080771565437, + -0.041548099368810654, + -0.021868497133255005, + -0.04794011265039444, + 0.08459772169589996, + -0.026090873405337334, + 0.007156320381909609, + 0.012742952443659306, + -0.038174133747816086, + 0.04928598552942276, + -0.02673613466322422, + 0.022740542888641357, + -0.0705137625336647, + 0.03543722629547119, + -0.020690564066171646, + -0.008001474663615227, + 0.10000646114349365, + -0.02043062448501587, + 0.002398519078269601, + 0.058395493775606155, + -0.016713973134756088, + 0.04823371767997742, + -0.06311312317848206, + -0.03085385076701641, + -0.006388913374394178, + -2.064327730977311e-08, + 0.03435920551419258, + 0.007588213309645653, + -0.002813685918226838, + -0.02337377332150936, + 0.056739065796136856, + -0.031009133905172348, + -0.007936053909361362, + -0.01509616058319807, + -0.029092058539390564, + -0.029446138069033623, + 0.03516537696123123, + -0.03101659193634987, + -0.033474646508693695, + 0.01829654909670353, + 0.019134966656565666, + -0.02733268216252327, + -0.10031141340732574, + 0.028926342725753784, + -0.046635404229164124, + -0.08997315168380737, + -0.02827821858227253, + 0.05706550553441048, + -0.03737121820449829, + 0.004021784756332636, + 0.0827554315328598, + 0.05167931318283081, + -0.0019810455851256847, + -0.028284214437007904, + 0.007255954667925835, + 0.009396551176905632, + -0.08792766183614731, + 0.039936114102602005, + 0.0007506103720515966, + -0.03553369641304016, + -0.002014576457440853, + -0.016042565926909447, + -0.00898054987192154, + 0.018277497962117195, + -0.028192974627017975, + 0.021005641669034958, + 0.03440623730421066, + 0.005462918430566788, + 0.014201891608536243, + -0.010042969137430191, + -0.01837233453989029, + 0.027351364493370056, + 0.05184321478009224, + -0.05068359151482582, + -0.013437063433229923, + -0.0021555700805038214, + 0.003663303330540657, + -0.01696435920894146, + 0.021571321412920952, + 0.04286589100956917, + 0.030047686770558357, + 0.0573459230363369, + 0.002499086782336235, + -0.03184950724244118, + -0.026330597698688507, + 0.023856226354837418, + 0.058856379240751266, + -0.037292834371328354, + -0.06783302128314972, + 0.03578681871294975 + ], + "cloud-sun-bold||meteorology,cloudy,partly cloudy,partly sunny": [ + 0.03571929410099983, + 0.04053463786840439, + 0.1108730286359787, + 0.06352762877941132, + 0.04806731268763542, + -0.030635718256235123, + 0.08456248044967651, + -0.09911664575338364, + -0.017613090574741364, + -0.02242281660437584, + 0.03491825982928276, + -0.05488692596554756, + 0.022006817162036896, + -0.03822147473692894, + -0.0011351233115419745, + 0.022419389337301254, + 0.028790505602955818, + -0.08984031528234482, + 0.017837628722190857, + 0.005611521657556295, + -0.07206090539693832, + 0.07866784930229187, + -0.0749586895108223, + 0.05317501723766327, + 0.07322096079587936, + 0.09897816181182861, + -0.02576969936490059, + 0.012910746969282627, + -0.03694680333137512, + -0.06090958043932915, + -0.025287296622991562, + 0.03909924626350403, + 0.02751951664686203, + 0.05898841470479965, + 0.05672259256243706, + -0.005032967776060104, + -0.024249697104096413, + -0.06111646071076393, + -0.00928867794573307, + 0.03229055926203728, + 0.006274705287069082, + -0.13846978545188904, + -0.0406263992190361, + -0.02513061836361885, + -0.016325103119015694, + -0.019865110516548157, + -0.06433260440826416, + 0.027833541855216026, + 0.05803385749459267, + 0.0326947346329689, + -0.07865703105926514, + -0.09406058490276337, + -0.10348602384328842, + 0.0289328470826149, + -0.022302934899926186, + 0.07458354532718658, + -0.08291125297546387, + -0.02283395640552044, + 0.04279668256640434, + -0.044464416801929474, + 0.009444073773920536, + 0.04430322349071503, + -0.07121199369430542, + 0.08189598470926285, + 0.14866875112056732, + -0.031389039009809494, + -0.06260164827108383, + 0.047697506844997406, + 0.025086039677262306, + 0.010592931881546974, + 0.022018173709511757, + 0.07432694733142853, + -0.019744887948036194, + -0.030832502990961075, + -0.0469055101275444, + -0.062064278870821, + 0.04042129963636398, + -0.015783311799168587, + -0.007024780847132206, + -0.09654951840639114, + 0.02847779542207718, + -0.0048736766912043095, + -0.016317419707775116, + 0.007221489679068327, + -0.06285842508077621, + 0.07761918008327484, + -0.011466292664408684, + -0.010364730842411518, + 0.030032387003302574, + -0.0908791720867157, + -0.04543459787964821, + 0.008130799047648907, + -0.023295758292078972, + 0.06951509416103363, + -0.0815536379814148, + 0.09052633494138718, + 0.09348762035369873, + -0.04237784817814827, + 0.024765746667981148, + 0.09271669387817383, + 0.05108407884836197, + -0.013079249300062656, + -0.00804674532264471, + -0.010665316134691238, + 0.01422851625829935, + 0.009002919308841228, + -0.06018836423754692, + -0.06844276189804077, + -0.003563528647646308, + 0.011465460993349552, + -0.029309311881661415, + -0.04807380959391594, + -0.0347755141556263, + -0.008244793862104416, + 0.034823715686798096, + -0.023621518164873123, + -0.031166397035121918, + -0.008643020875751972, + -0.029357172548770905, + -0.04855038970708847, + -0.026357874274253845, + -0.08085375279188156, + 0.004426178988069296, + 0.026428859680891037, + 0.019176021218299866, + 0.05082343891263008, + -0.004705625120550394, + -2.4748411741701113e-33, + 0.12451262027025223, + 0.03226535767316818, + 0.041291508823633194, + 0.0597878135740757, + 0.0905260220170021, + -0.006592943798750639, + -0.044591572135686874, + -0.04434378817677498, + -0.12444794178009033, + 0.04317518696188927, + -0.05021868273615837, + 0.08951902389526367, + -0.031304605305194855, + 0.05068128928542137, + 0.09386596083641052, + -0.06833823025226593, + 0.03911711275577545, + 0.032235998660326004, + -0.0336916446685791, + 0.04432522505521774, + -0.13484491407871246, + 0.0669063851237297, + -0.037841424345970154, + -0.047853875905275345, + -0.0074047609232366085, + -0.04879165068268776, + 0.08488494157791138, + -0.011607310734689236, + 0.031536661088466644, + 0.04075805842876434, + 0.11023630946874619, + 0.0035057668574154377, + 0.09453081339597702, + -0.0035460556391626596, + 0.01581980474293232, + -0.002313431119546294, + -0.05478480085730553, + 0.00647769495844841, + 0.021619582548737526, + 0.0048249512910842896, + -0.07358302175998688, + -0.01263316348195076, + -0.04734856262803078, + 0.004739817231893539, + 0.017433689907193184, + 0.04540511220693588, + 0.03828733414411545, + -0.04074456915259361, + 0.013615108095109463, + 0.0005245610955171287, + -0.08691160380840302, + 0.020980576053261757, + -0.05623581260442734, + -0.022321755066514015, + 0.028390735387802124, + 0.0437450148165226, + 0.02043524943292141, + 0.0035613561049103737, + -0.029750417917966843, + 0.01928838901221752, + -0.015308895148336887, + -0.05381765961647034, + 0.047493357211351395, + -0.13318641483783722, + -0.029047105461359024, + -0.017948154360055923, + -0.08186928927898407, + 0.11521992087364197, + 0.03997787460684776, + -0.0033193582203239202, + 0.018362408503890038, + 0.05655159428715706, + 0.09857621043920517, + 0.0679556354880333, + 0.10149209201335907, + -0.006669894326478243, + 0.01068425364792347, + 0.03282194957137108, + -0.01858990453183651, + 0.0024812265764921904, + -0.12943029403686523, + 0.0454116128385067, + -0.013641398400068283, + -0.0005615229019895196, + -0.06187670677900314, + 0.03035624511539936, + -0.010270063765347004, + 0.011008905246853828, + -0.06969396770000458, + 0.06902675330638885, + -0.07931523770093918, + 0.06418003141880035, + 0.0655856654047966, + -0.05745140463113785, + -0.10066940635442734, + 4.0674084741337054e-36, + 0.058614581823349, + -0.009222110733389854, + -0.08442986011505127, + 0.01184843759983778, + 0.012554449960589409, + 0.04455985128879547, + 0.015200262889266014, + 0.06444259732961655, + -0.04454734921455383, + 0.08045989274978638, + -0.0037392263766378164, + -0.0002022433909587562, + -0.01714801788330078, + -0.10346457362174988, + 0.014556403271853924, + 0.0373266339302063, + 0.027189208194613457, + 0.04318657144904137, + -0.0801088958978653, + 0.09407361596822739, + -0.023775264620780945, + -0.05424913018941879, + -0.0021104461047798395, + 0.05530200153589249, + -0.05226067453622818, + 0.0660032331943512, + 0.04018278792500496, + 0.013555260375142097, + -0.029663916677236557, + 0.06202929839491844, + -0.0910746231675148, + -0.032210759818553925, + -0.044832177460193634, + 0.0010033162543550134, + -0.05739058554172516, + 0.09280330687761307, + 0.048324842005968094, + -0.09525129944086075, + -0.025105617940425873, + -0.037116724997758865, + -0.043751563876867294, + -0.013502356596291065, + 0.0708170011639595, + -0.04865115508437157, + 0.025756563991308212, + -0.001943809213116765, + -0.011153718456625938, + 0.09529290348291397, + -0.07676714658737183, + -0.010952088981866837, + 0.0052054645493626595, + -0.053063567727804184, + -0.0323147289454937, + 0.11386816203594208, + 0.008009788580238819, + -0.02338865026831627, + -0.036222461611032486, + 0.0075204260647296906, + -0.06462173908948898, + 0.01269424706697464, + -0.01844220608472824, + -0.0533875934779644, + -0.020692171528935432, + 0.022374019026756287, + 0.016459688544273376, + -0.05284801125526428, + 0.00835799053311348, + -0.032445069402456284, + 0.02705579437315464, + 0.04444348067045212, + 0.006266384851187468, + -0.07932690531015396, + -0.07134533673524857, + -0.003756721504032612, + 0.06754573434591293, + 0.007686138153076172, + 0.022284042090177536, + 0.032014232128858566, + -0.024578643962740898, + 0.08191636204719543, + -0.07206524908542633, + 0.009950493462383747, + -0.05319440737366676, + 0.013251304626464844, + 0.007925376296043396, + -0.02249571494758129, + 0.033443205058574677, + -0.06770193576812744, + -0.03074181079864502, + 0.03825493901968002, + -0.05240030959248543, + 0.076145239174366, + -0.04702309891581535, + 0.02732473984360695, + -0.03323235362768173, + -1.824618323098548e-08, + 0.04645542427897453, + -0.07046791166067123, + 0.012368804775178432, + -0.019951675087213516, + 0.04069547727704048, + -0.02191876247525215, + 0.010632188059389591, + -0.008116042241454124, + -0.007404707837849855, + -0.01031564548611641, + -0.011386482045054436, + -0.032123882323503494, + -0.03552453964948654, + -0.01011168584227562, + -0.010344987735152245, + -0.029246840626001358, + -0.08057139813899994, + 0.026564039289951324, + -0.047565992921590805, + -0.0638871043920517, + -0.003297078190371394, + 0.050807416439056396, + 0.002997705014422536, + 0.037702370434999466, + 0.07420022040605545, + 0.07848823815584183, + -0.01112971268594265, + -0.006091253831982613, + 0.014176500961184502, + 0.010159149765968323, + -0.0367586687207222, + 0.06688591837882996, + -0.0018223109655082226, + -0.06835435330867767, + -0.05784139782190323, + -0.016401179134845734, + -0.01520308293402195, + 0.049629002809524536, + -0.0463690347969532, + 0.05726546049118042, + 0.03199402242898941, + 0.005470811389386654, + 0.017688971012830734, + 0.013422413729131222, + 0.031638793647289276, + 0.02388879284262657, + 0.08789265155792236, + -0.036441028118133545, + -0.03283844515681267, + -0.028265995904803276, + 0.01611187309026718, + -0.013480396941304207, + 0.043338239192962646, + 0.02750716544687748, + 0.007272231858223677, + -0.015832094475626945, + 0.007805949077010155, + -0.011313091963529587, + -0.003463899251073599, + 0.06560815870761871, + 0.09673786908388138, + -0.030154339969158173, + -0.08037334680557251, + 0.03941798210144043 + ], + "cloud-warning-bold||serverless,backup,storage,errors": [ + 0.04594162851572037, + 0.041885457932949066, + -0.007294424343854189, + 0.04564627632498741, + 0.09382314234972, + -0.04512377455830574, + -0.0013004434294998646, + -0.02904975600540638, + 0.059859540313482285, + 0.05023866519331932, + 0.03634176030755043, + -0.024455346167087555, + 0.1365746408700943, + -0.03614230826497078, + -0.07552176713943481, + 0.010087485425174236, + -0.012958720326423645, + -0.06763403862714767, + -0.03561614453792572, + 0.07853587716817856, + -0.09611595422029495, + 0.050268590450286865, + -0.012969471514225006, + 0.09708066284656525, + 0.05001569166779518, + 0.03113182820379734, + -0.0528988242149353, + 0.03040587715804577, + -0.036045778542757034, + 0.005732567515224218, + -0.0047130947932600975, + -0.03891991823911667, + 0.020091401413083076, + 0.06300236284732819, + 0.10215522348880768, + 0.09785506129264832, + 0.00011620767327258363, + -0.04580151289701462, + -0.023179110139608383, + -0.033440280705690384, + 0.09637123346328735, + -0.05203254148364067, + -0.03590716794133186, + 0.05050715059041977, + -0.0810471922159195, + 0.06462389975786209, + -0.02864552102982998, + -0.13981181383132935, + -0.012138214893639088, + -0.0690288171172142, + 0.02624298818409443, + -0.003940349444746971, + -0.04442379251122475, + -0.04143845662474632, + 0.020086482167243958, + 0.036897994577884674, + -0.08531111478805542, + 0.02283114194869995, + 0.025220146402716637, + 0.007068870589137077, + 0.04945869371294975, + -0.026756826788187027, + 0.055428922176361084, + -0.016214977949857712, + 0.03750509023666382, + 0.07481218129396439, + -0.00046924600610509515, + 0.026203691959381104, + -0.08241567015647888, + 0.11411809176206589, + 0.018747827038168907, + 0.02511473558843136, + -0.06276357173919678, + 0.06027880683541298, + -0.037545811384916306, + 0.035257067531347275, + 0.05055798217654228, + -0.004160952754318714, + -0.013464806601405144, + 0.017526283860206604, + -0.0665041133761406, + -0.0726848766207695, + -0.0018695977050811052, + 0.05157914012670517, + -0.0452771857380867, + 0.0048285280354321, + -0.0572282075881958, + -0.025617336854338646, + 0.030599795281887054, + -0.05884460359811783, + 0.03489455208182335, + -0.04095035418868065, + 0.02644713781774044, + 0.07175815105438232, + -0.03272368013858795, + -0.031745485961437225, + -0.023832198232412338, + 0.013254737481474876, + -0.04925604537129402, + 0.005640329327434301, + -0.007713876198977232, + 0.04967506602406502, + 0.1015581414103508, + -0.0108061283826828, + 0.005864121951162815, + -0.02262747474014759, + 0.014084948226809502, + 0.01770099811255932, + -0.019577564671635628, + -0.08993559330701828, + -0.04472866281867027, + -0.025953523814678192, + 0.008241322822868824, + 0.014315659180283546, + 0.03146767616271973, + -0.019164996221661568, + -0.07695388793945312, + -0.04120507836341858, + -0.026415616273880005, + 0.04387751966714859, + 0.057144735008478165, + -0.14281798899173737, + 0.030785076320171356, + -0.019123714417219162, + 0.027021469548344612, + -6.810582362959394e-06, + 0.03495727479457855, + -2.2569987447467173e-33, + 0.1337842494249344, + 0.06776587665081024, + 0.05163705348968506, + 0.004362164530903101, + 0.13278426229953766, + -0.006461263168603182, + -0.07194435596466064, + -0.10443674772977829, + -0.0479486882686615, + -0.006410844158381224, + 0.044088445603847504, + 0.07433076202869415, + 0.006690604146569967, + 0.016542034223675728, + 0.044733524322509766, + -0.0019754446111619473, + 0.1218004822731018, + 0.04593418166041374, + 0.05113177374005318, + -0.07603685557842255, + -0.011051775887608528, + 0.021220490336418152, + -0.004403112921863794, + -0.05350023880600929, + -0.006291245110332966, + -0.04581570625305176, + 0.06454847007989883, + -0.039239030331373215, + 0.04155253246426582, + -0.03289408981800079, + -0.04785679653286934, + 0.03427598997950554, + 0.05467726290225983, + -0.023700831457972527, + 0.0010671314084902406, + -0.013909249566495419, + -0.09695285558700562, + 0.034731604158878326, + -0.07575243711471558, + 0.05382351204752922, + 0.06312761455774307, + -0.03897670656442642, + -0.038238003849983215, + -0.01930333860218525, + 0.0648314356803894, + 0.05833478644490242, + -0.014070886187255383, + -0.11410718411207199, + 0.0014840892981737852, + 0.09646762162446976, + -0.07891090214252472, + 0.009544861502945423, + -0.003251082729548216, + 0.029364949092268944, + -0.048653438687324524, + -0.002217741683125496, + 0.014465666376054287, + -0.03210318833589554, + -0.034428149461746216, + -0.08494099974632263, + -0.020509207621216774, + -0.025175506249070168, + -0.022251835092902184, + -0.07914269715547562, + -0.037583015859127045, + -0.03249773010611534, + -0.0653482973575592, + 0.06399745494127274, + -0.04296639934182167, + -0.06358801573514938, + -0.003557429416105151, + -0.03686876595020294, + 0.034093789756298065, + 0.06357697397470474, + 0.042919475585222244, + -0.05394147336483002, + -0.02433527074754238, + -0.042957860976457596, + -0.003414217382669449, + -0.09096332639455795, + -0.07589355856180191, + -0.04247346892952919, + -0.021528124809265137, + 0.06525904685258865, + -0.0611429326236248, + 0.03459771350026131, + -0.019993063062429428, + 0.042180296033620834, + -0.05705045908689499, + 0.1053628921508789, + -0.04526647925376892, + -0.012263479642570019, + 0.03318679705262184, + -0.06870651245117188, + -0.12127546966075897, + -2.0992772494026177e-34, + -0.016296759247779846, + -0.04988659918308258, + -0.051504768431186676, + 0.049197517335414886, + -0.02713378332555294, + 0.0011344696395099163, + 0.03657491132616997, + 0.10717891901731491, + 0.04299921542406082, + 0.006826498080044985, + 0.0072089554741978645, + -0.016303474083542824, + -0.010550256818532944, + -0.033729225397109985, + -0.07569217681884766, + 0.028441503643989563, + -0.04505555331707001, + -0.0858958438038826, + -0.03436938300728798, + 0.023094475269317627, + 0.023579685017466545, + 0.02710605412721634, + -0.026234310120344162, + 0.09408607333898544, + -0.07355687767267227, + 0.09677550941705704, + 0.022174106910824776, + 0.07625996321439743, + -0.007438859902322292, + -0.06096924468874931, + -0.025773268193006516, + 0.0521722212433815, + 0.04395390674471855, + 0.08255814015865326, + -0.027059504762291908, + -0.05424419790506363, + 0.009224476292729378, + -0.006240908522158861, + -0.06196112185716629, + -0.011126087978482246, + 0.02727399207651615, + -0.00031933572608977556, + -0.022667471319437027, + -0.056345559656620026, + -0.039178963750600815, + 0.012450485490262508, + 0.012527928687632084, + -0.062085408717393875, + -0.017160894349217415, + 0.057023100554943085, + 0.023613370954990387, + -0.014238220639526844, + 0.011276696808636189, + 0.04055769741535187, + -0.017677955329418182, + -0.031491197645664215, + -0.022231513634324074, + 0.051868341863155365, + -0.04061294347047806, + 0.04972713813185692, + -0.017646988853812218, + -0.0102105513215065, + -0.05145057290792465, + -0.04349656030535698, + -0.03824060410261154, + -0.02897915616631508, + 0.04071956127882004, + 0.014354241080582142, + 0.07688361406326294, + -0.005779723171144724, + -0.0013042347272858024, + 0.012147814966738224, + -0.055546365678310394, + -0.04829007387161255, + 0.0466124564409256, + -0.05875737965106964, + -0.02259509637951851, + -0.06482064723968506, + 0.0424204021692276, + 0.02691570110619068, + 0.010508881881833076, + 0.05097367241978645, + -0.0678236335515976, + 0.05268478766083717, + 0.05013492330908775, + -0.07536407560110092, + 0.01467188075184822, + 0.05947853997349739, + -0.08185785263776779, + 0.046814076602458954, + -0.06131533533334732, + -0.00975382886826992, + -0.026650840416550636, + 0.1070501059293747, + 0.0255966167896986, + -1.7266165386331522e-08, + 0.02502063848078251, + 0.021417317911982536, + -0.0003757376689463854, + 0.004177405033260584, + 0.10018571466207504, + -0.13710352778434753, + 0.05449200049042702, + -0.011854696087539196, + -0.011461376212537289, + -0.001884552650153637, + -0.008220849558711052, + -0.09196104854345322, + -0.058786626905202866, + -0.049291372299194336, + -0.02209968864917755, + 0.03301425650715828, + -0.03485432639718056, + -0.0006199420313350856, + -0.025696078315377235, + -0.028216447681188583, + -0.024881349876523018, + 0.02107684500515461, + -0.01449708640575409, + -0.03262164443731308, + 0.07575419545173645, + 0.0031273532658815384, + 0.06751662492752075, + 0.03606005012989044, + -0.0432051382958889, + 0.026111071929335594, + -0.02077985741198063, + -0.02410678006708622, + 0.058131568133831024, + -0.0017359659541398287, + -0.02265235036611557, + 0.08534663170576096, + 0.03924916312098503, + -0.005917110946029425, + 0.027759667485952377, + 0.08019617199897766, + -0.0328528992831707, + 0.06376274675130844, + 0.00547092966735363, + -0.03362030163407326, + 0.0077026234939694405, + -0.030074017122387886, + -0.016822922974824905, + 0.056148119270801544, + -0.042117632925510406, + -0.021722547709941864, + -0.000578270701225847, + -0.05147719383239746, + 0.0036612150724977255, + 0.12957850098609924, + -0.0181126669049263, + -0.029115058481693268, + 0.03361012786626816, + 0.07017302513122559, + 0.017826184630393982, + 0.0951281487941742, + 0.12708599865436554, + -0.06441991031169891, + 0.00010879612091230229, + -0.043696317821741104 + ], + "cloud-x-bold||serverless,backup,storage,errors": [ + 0.026090141385793686, + 0.008257421664893627, + 0.023494824767112732, + 0.015453556552529335, + 0.08245205134153366, + -0.05272046849131584, + -0.0007836401928216219, + -0.05348081514239311, + 0.0416359044611454, + 0.056336909532547, + 0.061991285532712936, + 0.017687765881419182, + 0.12853455543518066, + -0.057082947343587875, + -0.010934144258499146, + 0.03616552799940109, + 0.01256297156214714, + -0.06837499141693115, + -0.024354752153158188, + 0.10676136612892151, + -0.10522839426994324, + 0.023528175428509712, + -0.0028586476109921932, + 0.06442819535732269, + 0.053140509873628616, + 0.024120435118675232, + -0.0636882558465004, + -0.021514100953936577, + 0.007397414185106754, + -0.035677820444107056, + 0.015704818069934845, + -0.04536063224077225, + 0.024270610883831978, + 0.04675662890076637, + 0.1283806711435318, + 0.11256299912929535, + 0.019549064338207245, + -0.07282551378011703, + -0.05202276632189751, + -0.017863186076283455, + 0.09634477645158768, + -0.07527268677949905, + -0.03838435932993889, + 0.010482209734618664, + -0.07255525141954422, + 0.03321194276213646, + -0.00594949908554554, + -0.11653019487857819, + 0.0026702131144702435, + -0.023064184933900833, + 0.04071250557899475, + -0.0030639644246548414, + -0.06222762539982796, + 0.013120323419570923, + 0.041103120893239975, + 0.05431803688406944, + -0.10727032274007797, + 0.04623420909047127, + 0.04950825124979019, + -0.012760733254253864, + 0.054419975727796555, + 0.006025419104844332, + 0.08063555508852005, + -0.004881429951637983, + 0.03485161066055298, + 0.07782135903835297, + 0.020307745784521103, + -0.004798514768481255, + -0.07838229835033417, + 0.06832357496023178, + 0.049926839768886566, + 0.039935402572155, + -0.09448270499706268, + 0.018695415928959846, + -0.05669800192117691, + 0.041580479592084885, + 0.0707777589559555, + -0.0015836412785574794, + -0.027876166626811028, + -0.011024055071175098, + -0.060047756880521774, + -0.05055816099047661, + -0.02098371647298336, + 0.09736543893814087, + -0.04070403426885605, + 0.002200353192165494, + -0.07162199169397354, + -0.029933668673038483, + -0.007189977448433638, + -0.04797479510307312, + 0.019010109826922417, + 0.006572752259671688, + 0.02940615825355053, + 0.02810041978955269, + -0.02248445153236389, + -0.043944161385297775, + 0.05848938971757889, + 0.03958670049905777, + -0.018161078914999962, + 0.011289744637906551, + -0.009249428287148476, + 0.05509922653436661, + 0.1057574450969696, + 0.01314089260995388, + -0.02768668346107006, + -0.033460989594459534, + -0.0001327081408817321, + 0.012520141899585724, + -0.0662059411406517, + -0.07570898532867432, + -0.035935938358306885, + -0.07951425015926361, + -0.029453232884407043, + 0.031981099396944046, + 0.043681416660547256, + -0.030787747353315353, + -0.03405497968196869, + -0.045882727950811386, + -0.048779021948575974, + 0.013775189407169819, + 0.056962672621011734, + -0.14015574753284454, + 0.005180472508072853, + 0.005227178800851107, + 0.011473938822746277, + -0.014802657067775726, + 0.023824788630008698, + -1.16651513518544e-33, + 0.07683300971984863, + 0.07027558237314224, + 0.018413234502077103, + -2.4452701836708002e-05, + 0.13169479370117188, + -0.012732010334730148, + -0.037673503160476685, + -0.0683741644024849, + -0.08809325844049454, + 0.05275927111506462, + 0.03440035134553909, + 0.08551739901304245, + -0.0029163146391510963, + -0.00020393072918523103, + 0.05250293388962746, + -0.03859806805849075, + 0.09989355504512787, + 0.034736379981040955, + 0.002961653284728527, + -0.0274666640907526, + -0.0039205532521009445, + 0.04237140715122223, + -0.020614348351955414, + -0.05399056524038315, + -0.03768238052725792, + -0.04605846852064133, + 0.06491688638925552, + -0.051028139889240265, + 0.00999526958912611, + -0.03197694569826126, + -0.019699618220329285, + -0.00026043117395602167, + 0.055704738944768906, + 0.019504237920045853, + -0.03904944658279419, + 0.014998896047472954, + -0.06398606300354004, + 0.0191254410892725, + -0.10225561261177063, + 0.09568610042333603, + -0.00179273821413517, + 0.0015851057833060622, + -0.038253024220466614, + -0.07734029740095139, + 0.01801806129515171, + 0.04974094033241272, + -0.011488569900393486, + -0.17815549671649933, + 0.005702241789549589, + 0.03955303877592087, + -0.08443652093410492, + 0.025479398667812347, + -0.047337573021650314, + 0.010051160119473934, + 0.014914187602698803, + -0.02225819230079651, + 0.006645631045103073, + -0.004085813648998737, + -0.013795043341815472, + -0.02822200395166874, + 0.015173129737377167, + -0.053817104548215866, + -0.014995486475527287, + -0.05264832451939583, + -0.04925747588276863, + -0.008388391695916653, + -0.048386938869953156, + 0.0023381924256682396, + -0.04296419024467468, + -0.028247937560081482, + 0.01937769167125225, + -0.017477121204137802, + 0.05363598093390465, + 0.025240380316972733, + 0.12940113246440887, + -0.05559900403022766, + -0.04132665693759918, + -0.023835958912968636, + 0.015936490148305893, + -0.05099979788064957, + -0.05251307040452957, + -0.029571201652288437, + -0.036119382828474045, + 0.11037148535251617, + -0.059578582644462585, + 0.02929334156215191, + 0.005336177535355091, + 0.05253676325082779, + -0.024489492177963257, + 0.07136010378599167, + -0.03695744276046753, + -0.060912683606147766, + 0.022880418226122856, + -0.1414978802204132, + -0.11686517298221588, + -5.106016393008367e-34, + -0.024353468790650368, + -0.026726925745606422, + -0.04312717169523239, + 0.07708798348903656, + -0.020628672093153, + 0.02366262674331665, + 0.019124694168567657, + 0.0945400595664978, + 0.019811533391475677, + -0.00024563216720707715, + 0.035400860011577606, + 0.011867896653711796, + -0.07466098666191101, + -0.005325454752892256, + -0.08120895177125931, + 0.05970997363328934, + -0.012819075956940651, + -0.10983690619468689, + -0.05305827781558037, + 0.014499111101031303, + -0.004689797293394804, + 0.02632427029311657, + 0.0013454026775434613, + 0.08113396167755127, + -0.01808728650212288, + 0.07499139755964279, + 0.036855071783065796, + 0.10167691111564636, + 0.01500910334289074, + -0.07174044102430344, + -0.08275606483221054, + 0.054546058177948, + 0.03340093418955803, + 0.047874920070171356, + -0.03309044986963272, + -0.048497941344976425, + -0.044802628457546234, + 0.08916521072387695, + -0.07893946021795273, + -0.01717877760529518, + 0.03933204337954521, + -0.04967617988586426, + -0.014534395188093185, + -0.03412477299571037, + -0.012770534493029118, + 0.022481193765997887, + -0.05542686581611633, + -0.057216983288526535, + 0.013442286290228367, + 0.07379235327243805, + 0.04450439289212227, + -0.0190409068018198, + -0.005972252227365971, + 0.07095824927091599, + -0.023046206682920456, + -0.030568167567253113, + -0.013152390718460083, + 0.10140986740589142, + -0.06508102267980576, + 0.052130576223134995, + -0.015584902837872505, + -0.012166877277195454, + -0.0032298064325004816, + -0.03163593262434006, + -0.03454600274562836, + -0.07440689951181412, + 0.013044212013483047, + -0.010355332866311073, + 0.02667185291647911, + -0.045595668256282806, + -0.030506908893585205, + -0.03053891658782959, + -0.031828589737415314, + -0.010426472872495651, + 0.03665817528963089, + -0.01960001140832901, + -0.05905861407518387, + -0.09517597407102585, + 0.09082099795341492, + 0.05048071965575218, + -0.0074885631911456585, + 0.07161569595336914, + -0.043475110083818436, + 0.05609968677163124, + 0.05355198681354523, + -0.016067584976553917, + 0.01893051527440548, + 0.07386243343353271, + -0.06721861660480499, + -0.0027269823476672173, + -0.04932037368416786, + -0.026212917640805244, + -0.033121634274721146, + 0.09824046492576599, + 0.022611945867538452, + -1.7868003965304524e-08, + -0.03575935214757919, + 0.023061171174049377, + -0.02044401504099369, + 0.029720667749643326, + 0.04053307697176933, + -0.09240865707397461, + 0.05842920020222664, + -0.0024451983626931906, + 0.032830026000738144, + 0.0075830998830497265, + -0.014254840090870857, + -0.10787266492843628, + -0.04923126474022865, + -0.03321682661771774, + -0.038698263466358185, + 0.0424971729516983, + 0.014609082601964474, + 0.007907708175480366, + -0.03388861194252968, + -0.06048204377293587, + -0.0722486823797226, + 0.055167775601148605, + 0.006191036198288202, + -0.051202986389398575, + 0.07006904482841492, + -0.005291852634400129, + 0.067985400557518, + 0.04046662896871567, + 0.005832732655107975, + 0.023699788376688957, + -0.027571914717555046, + -0.00868074782192707, + 0.043534137308597565, + -0.0016442619962617755, + -0.024078622460365295, + 0.026508878916502, + 0.017417654395103455, + 0.005996714346110821, + 0.04116548225283623, + 0.049552008509635925, + -0.039025746285915375, + 0.036300305277109146, + -0.0012005638564005494, + -0.05281076207756996, + 0.027528781443834305, + -0.015061994083225727, + 0.02580123394727707, + 0.03233823552727699, + -0.05810776725411415, + -0.018438825383782387, + 0.025565627962350845, + -0.04572655260562897, + -0.008656798861920834, + 0.07870954275131226, + 0.032385822385549545, + -0.027244694530963898, + 0.0442008450627327, + 0.07369839400053024, + 0.04392416402697563, + 0.08295512944459915, + 0.10995597392320633, + -0.05699298158288002, + -0.004766218829900026, + -0.041201505810022354 + ], + "clover-bold||*new*,four leaf clover,plants,luck,lucky,irish": [ + 0.030289335176348686, + -0.09880776703357697, + 0.0043383873999118805, + 0.017264720052480698, + 0.08594842255115509, + 0.016853442415595055, + -0.02145119197666645, + -0.10743983089923859, + 0.019005803391337395, + -0.06085539236664772, + 0.09634140133857727, + -0.03777020424604416, + -0.03367361053824425, + -0.039484232664108276, + -0.04504157230257988, + 0.0719136968255043, + -0.0035878289490938187, + 0.00719410739839077, + -0.04906581714749336, + -0.014507481828331947, + -0.04265237972140312, + 0.037076856940984726, + 0.014956814236938953, + 0.0633649080991745, + 0.03309312090277672, + -0.01451170351356268, + -0.05284596607089043, + 0.04376766085624695, + 0.0375962108373642, + -0.1281035840511322, + 0.006123375613242388, + 0.11429965496063232, + 0.07585105299949646, + -0.03535691648721695, + 0.028776584193110466, + -0.024981657043099403, + -0.04017041623592377, + -0.07415426522493362, + 0.07667513191699982, + -0.005345390178263187, + -0.039372172206640244, + -0.10819526016712189, + 0.006060094106942415, + 0.030331360176205635, + -0.01521410420536995, + 0.03777697682380676, + -0.012696448713541031, + 0.006717597134411335, + 0.0768074244260788, + -0.052384164184331894, + 0.00324761844240129, + -0.09181524813175201, + -0.10828082263469696, + 0.010263634845614433, + 0.06557878106832504, + -0.01664985902607441, + -0.015058388002216816, + -0.07613588124513626, + -0.0241914801299572, + 0.03304528445005417, + 0.04850645735859871, + 0.06597600132226944, + 0.04417582228779793, + 0.028569158166646957, + -0.003589698811993003, + 0.06416355818510056, + -0.06449342519044876, + -0.003844803897663951, + -0.018924713134765625, + -0.053235556930303574, + -0.02421925589442253, + -0.02306533418595791, + -0.040047913789749146, + 0.0949425920844078, + -0.06768878549337387, + 0.020348431542515755, + -0.05085757374763489, + -0.0008116021053865552, + -0.05150524154305458, + 0.0017154499655589461, + -0.04628099128603935, + -0.03240766376256943, + -0.007571064401417971, + 0.011016844771802425, + 0.03559571132063866, + 0.020594634115695953, + -0.07753226161003113, + -0.05236511304974556, + -0.037305545061826706, + -0.03103296458721161, + -0.044117700308561325, + -0.014547428116202354, + 0.01046235766261816, + 0.07524590939283371, + -0.01635497622191906, + 0.07385222613811493, + 0.09580813348293304, + -0.12392716109752655, + -0.10671105235815048, + 0.03142637759447098, + -0.01922542043030262, + 0.007483859546482563, + -0.04478531703352928, + -0.013874579221010208, + 0.023120827972888947, + 0.005946648772805929, + -0.05680998042225838, + -0.0898907482624054, + 0.007316483650356531, + -0.00958509836345911, + 0.04407906159758568, + -0.07703419774770737, + -0.029993504285812378, + -0.013679561205208302, + -0.04299014434218407, + -0.07099990546703339, + -0.11393380910158157, + -0.0235159732401371, + 0.018716881051659584, + 0.09108156710863113, + 0.039029188454151154, + 0.05976957455277443, + 0.017670944333076477, + -0.032620321959257126, + -0.052476707845926285, + 0.02583864890038967, + -0.01562914252281189, + -1.732480492111343e-33, + 0.07449082285165787, + 0.07035047560930252, + -0.0341649167239666, + 0.05714118108153343, + 0.09420215338468552, + -0.13058654963970184, + 0.02112053893506527, + -0.047172337770462036, + -0.07066068798303604, + 0.009942881762981415, + -0.010162647813558578, + -0.03969480097293854, + -0.08467844128608704, + -0.02361486107110977, + 0.0443277433514595, + -0.007813606411218643, + 0.014607172459363937, + -0.09319357573986053, + 0.015578164719045162, + 0.055147066712379456, + -0.062131304293870926, + 0.06688951700925827, + -0.03557119518518448, + -0.03667185455560684, + -0.03509373217821121, + -0.11632148921489716, + 0.0555671826004982, + -0.016065338626503944, + 0.03937054052948952, + 0.03231816738843918, + 0.012697512283921242, + 0.033458154648542404, + 0.05970030277967453, + -0.011274406686425209, + -0.04857143014669418, + -0.03852078318595886, + -0.05316611006855965, + -0.07994820177555084, + -0.03163464367389679, + 0.10093256831169128, + -0.008205786347389221, + 0.024591835215687752, + -0.02340245619416237, + 0.015843581408262253, + 0.04733975976705551, + 0.07395327836275101, + -0.024445734918117523, + 0.031203361228108406, + 0.059917811304330826, + -0.0435808040201664, + -0.0030500672291964293, + -0.04534963518381119, + -0.031635746359825134, + 0.03108549490571022, + 0.030357500538229942, + -0.022207198664546013, + 0.008497733622789383, + 0.051455408334732056, + -0.08933869004249573, + 0.02533935010433197, + -0.017551185563206673, + -0.009700100868940353, + 0.025830302387475967, + -0.04655918851494789, + -0.011570212431252003, + 0.044062722474336624, + -0.01325081754475832, + 0.008418875746428967, + -0.008187440223991871, + 0.053533539175987244, + 0.008150914683938026, + 0.0012466361513361335, + 0.030984405428171158, + -0.01297911535948515, + 0.06801676750183105, + 0.0261952243745327, + 0.028466492891311646, + 0.018207406625151634, + 0.06497260928153992, + -0.10912419855594635, + -0.02136453613638878, + 0.07759101688861847, + -0.023884983733296394, + 0.11205723881721497, + -0.017498720437288284, + 0.0078442906960845, + 0.006992097478359938, + -0.07134494185447693, + -0.025920407846570015, + -0.06474024802446365, + -0.009965228848159313, + -0.023815704509615898, + 0.03133118897676468, + -0.08979564160108566, + -0.112417072057724, + 2.393728252790283e-34, + 0.02744024246931076, + 0.04562002792954445, + 0.0028866836801171303, + 0.036129485815763474, + 0.040375418961048126, + 0.042038917541503906, + -0.02412664145231247, + -0.017490480095148087, + 0.10836083441972733, + 0.11120085418224335, + -0.0566423125565052, + 0.01086086593568325, + -0.02500636875629425, + -0.10587310045957565, + 0.04461399093270302, + -0.04352974519133568, + 0.02732442505657673, + 0.05542859062552452, + 0.016218317672610283, + 0.04661722108721733, + -0.04788019880652428, + -0.037491656839847565, + -0.0003595237503759563, + -0.026730159297585487, + 0.03318392485380173, + 0.021884707733988762, + 0.04095592349767685, + -0.00605913158506155, + -0.02603393979370594, + -0.0831819474697113, + 0.04065779224038124, + -0.06760108470916748, + -0.014078161679208279, + 0.04710282012820244, + -0.06022283434867859, + 0.007761325221508741, + 0.06696902215480804, + -0.07977565377950668, + 0.036232419312000275, + 0.035313207656145096, + -0.029174208641052246, + -0.028206614777445793, + 0.021374553442001343, + -0.02104366384446621, + -0.03879812732338905, + -0.039027534425258636, + -0.0505993478000164, + 0.06614656746387482, + -0.01650756411254406, + 0.024990351870656013, + 0.10111396759748459, + 0.037701066583395004, + -0.03454845771193504, + 0.10505178570747375, + -0.06744284182786942, + -0.01300981268286705, + 0.021432215347886086, + 0.04673229902982712, + 0.003409256227314472, + 0.054626043885946274, + -0.03702564910054207, + 0.03208397328853607, + -0.01701994240283966, + 0.09904579073190689, + -0.003422881942242384, + -0.032908789813518524, + -0.0871739536523819, + 0.008598058484494686, + -0.01947937346994877, + 0.03332651033997536, + -0.036799248307943344, + 0.014995764009654522, + 0.007329714950174093, + 0.0052540902979671955, + 0.027733076363801956, + 0.009552745148539543, + -0.00980662927031517, + -0.10564372688531876, + 0.004897102247923613, + 0.039360981434583664, + -0.0523800365626812, + 0.014834682457149029, + -0.05165112763643265, + 0.05025700107216835, + -0.023251568898558617, + 0.003122524591162801, + 0.055822573602199554, + 0.10252709686756134, + 0.10832525789737701, + 0.0310053750872612, + 0.005223051644861698, + 0.06860930472612381, + 0.011738820932805538, + -0.02683492749929428, + 0.06422436237335205, + -2.0280481294321362e-08, + 0.026573440060019493, + 0.03372472897171974, + -0.10382353514432907, + -0.0034193191677331924, + 0.07694494724273682, + -0.04464556276798248, + -0.04665584862232208, + 0.0016346053453162313, + -0.00803112518042326, + -0.025859957560896873, + 0.0007381687173619866, + 0.06115781515836716, + -0.07912881672382355, + -0.045570019632577896, + 0.034701526165008545, + -0.005308730527758598, + 0.03631162270903587, + 0.026579121127724648, + 0.00407344289124012, + 0.00699998252093792, + 0.05988363176584244, + 0.04087978973984718, + 0.0004048875707667321, + -0.12234151363372803, + -0.05287238582968712, + 0.002121287165209651, + -0.004186143632978201, + -0.013341482728719711, + 0.02882724069058895, + 0.11683430522680283, + 0.10342110693454742, + 0.011317557655274868, + 0.030888386070728302, + -0.031776007264852524, + -0.09274186193943024, + -0.01797293685376644, + -0.03903283178806305, + -0.03501372039318085, + -0.024290066212415695, + 0.12008897215127945, + 0.07949648052453995, + 0.0014712212141603231, + 0.0049407766200602055, + -0.015429828315973282, + -0.0792514756321907, + -0.05882728472352028, + 0.017312852665781975, + 0.017445571720600128, + 0.04266441985964775, + -0.05210712552070618, + 0.038940560072660446, + -0.052878063172101974, + 0.036857884377241135, + 0.04680730774998665, + -0.02677760273218155, + 0.02924301289021969, + 0.03900924324989319, + 0.03130901977419853, + 0.037312425673007965, + -0.007001493126153946, + 0.06812707334756851, + -0.0016867273952811956, + 0.08374516665935516, + 0.060964301228523254 + ], + "club-bold||clubs,suits,cards,gambling,casino,gaming": [ + 0.04416579753160477, + -0.017626285552978516, + -0.10225007683038712, + 0.04697205126285553, + -0.01635044626891613, + 0.05502261966466904, + 0.07505230605602264, + -0.0657557025551796, + -0.006041419226676226, + -0.014263853430747986, + 0.015991445630788803, + -0.017811518162488937, + -0.008301173336803913, + -0.01310359314084053, + 0.05721123889088631, + -0.025980401784181595, + 0.05955956503748894, + -0.017378423362970352, + 0.08190678805112839, + 0.07230010628700256, + -0.048337772488594055, + -0.02361968159675598, + -0.05100150406360626, + 0.025209974497556686, + 0.01479610800743103, + -0.009749669581651688, + 0.004633764270693064, + 0.03622714430093765, + -0.06789705902338028, + -0.007311198394745588, + -0.03301117941737175, + 0.09192835539579391, + 0.11991143226623535, + 0.059124741703271866, + -0.010484634898602962, + -0.03258940204977989, + -0.055109694600105286, + -0.06877177953720093, + -0.04331354424357414, + 0.04591915011405945, + -0.030274171382188797, + -0.03498006984591484, + -0.007745578419417143, + 0.06717278063297272, + 0.015836430713534355, + -0.021638020873069763, + -0.03942257910966873, + 0.06766730546951294, + -0.01507559884339571, + 0.09693025797605515, + 0.021374134346842766, + -0.03389645740389824, + -0.03673981875181198, + -0.025250298902392387, + 0.059766702353954315, + 0.01624818705022335, + -0.12195639312267303, + -0.0074873147532343864, + -0.05577143654227257, + 0.0064682066440582275, + 0.07193491607904434, + 0.04089560732245445, + -0.037567514926195145, + 0.04205672815442085, + -0.05201078951358795, + -0.014529154635965824, + 0.006695668678730726, + 0.09890180081129074, + -0.08445843309164047, + -0.011201994493603706, + 0.05477949604392052, + -0.028505949303507805, + -0.04014294967055321, + -0.033475618809461594, + -0.016362769529223442, + 0.0484791062772274, + -0.009486307390034199, + -0.05676144361495972, + 0.040662750601768494, + -0.0650012418627739, + -0.10722481459379196, + -0.1073693111538887, + -0.013654204085469246, + -0.04232165962457657, + -0.03125999495387077, + 0.004058575723320246, + -0.044617876410484314, + -0.05353511869907379, + -0.0017549920594319701, + -0.01560121402144432, + -0.07835960388183594, + 0.006914038676768541, + -0.05633430555462837, + 0.012809804640710354, + -0.06153915449976921, + 0.07614389806985855, + -0.004761627409607172, + 0.016407858580350876, + -0.03373244032263756, + 0.06910065561532974, + 0.05605084449052811, + 0.11234142631292343, + 0.013479090295732021, + -0.008938133716583252, + -0.035334113985300064, + 0.03333446383476257, + 0.034177713096141815, + 0.05848626047372818, + 0.03656050190329552, + -0.00881465058773756, + -0.08170850574970245, + 0.015750031918287277, + 0.03711544722318649, + -0.07754509896039963, + -0.02490965463221073, + 0.012395699508488178, + -0.010114375501871109, + 0.02338215708732605, + 0.061791252344846725, + 0.11915534734725952, + 0.0265952255576849, + 0.1142391562461853, + -0.006063113920390606, + 0.01739652082324028, + -0.10181985795497894, + 0.0014216129202395678, + 0.037624042481184006, + -3.984559241986892e-33, + 0.00798129104077816, + -0.024942442774772644, + -0.053258270025253296, + 0.11081281304359436, + 0.042079754173755646, + 0.024691211059689522, + 0.006257114931941032, + -0.06437031924724579, + -0.06043807044625282, + 0.06473755836486816, + 0.07458166778087616, + 0.04452362284064293, + -0.003297914285212755, + 0.029947184026241302, + 0.10911823809146881, + 0.01908152550458908, + -0.013639571145176888, + -0.06239451840519905, + -0.0425407737493515, + -0.06349509209394455, + -0.05075569450855255, + 0.11867696791887283, + 0.031920358538627625, + -0.02579372562468052, + -0.07879312336444855, + -0.014073032885789871, + -0.04048994556069374, + -0.06280172616243362, + 0.05480964854359627, + 0.03043440915644169, + 0.047810714691877365, + 0.015869878232479095, + 0.01917676255106926, + -0.031470734626054764, + 0.016178922727704048, + 0.09942905604839325, + -0.02389221452176571, + -0.01958649419248104, + -0.09652465581893921, + -0.008542678318917751, + -0.12522731721401215, + -0.03225945308804512, + -0.0890597254037857, + -0.013881578110158443, + -0.0700012743473053, + 0.0681152194738388, + -0.020008509978652, + -0.06926993280649185, + -0.048580411821603775, + 0.01217714324593544, + -0.050861287862062454, + -0.005432079546153545, + 0.0036097029224038124, + -0.014657280407845974, + -0.05168028175830841, + -0.060463838279247284, + 0.0026490665040910244, + 0.07068183273077011, + -0.04808604717254639, + -0.08761151880025864, + 0.049337077885866165, + -0.027010492980480194, + 0.02760491520166397, + 0.012309319339692593, + -0.08804240822792053, + 0.09520035237073898, + 0.031229622662067413, + -0.06983551383018494, + 0.06288905441761017, + 0.008500614203512669, + 0.05181989446282387, + 0.09675391018390656, + 0.02268557995557785, + 0.009073399938642979, + -0.0193119328469038, + 0.029925130307674408, + -0.05566228926181793, + -0.00715563865378499, + -0.02946634776890278, + -0.022311067208647728, + -0.08832928538322449, + 0.014507445506751537, + -0.07608117908239365, + 0.10071965306997299, + 0.03374253585934639, + 0.02425173670053482, + 0.0837956964969635, + -0.10128548741340637, + 0.01069366093724966, + 0.019569799304008484, + -0.10990730673074722, + -0.01649574004113674, + 0.09119489789009094, + -0.06392822414636612, + -0.005592020694166422, + 7.160822762573959e-34, + 0.006553250830620527, + -0.05856110900640488, + 0.036957208067178726, + -0.05196800455451012, + 0.019583724439144135, + 0.008116518147289753, + -0.06147022172808647, + -0.015203069895505905, + 0.036302439868450165, + -0.008431105874478817, + -0.08069766312837601, + 0.021345321089029312, + -0.041860103607177734, + -0.041066911071538925, + 0.00263472693040967, + -0.061923131346702576, + 0.0306073185056448, + 0.06096695363521576, + -0.01750011183321476, + 0.04136928915977478, + 0.03873636573553085, + -0.004197508562356234, + -0.035352062433958054, + 0.09685225784778595, + 0.017887171357870102, + -0.004723989870399237, + -0.010293147526681423, + -0.07588254660367966, + -0.08583657443523407, + -0.01634947583079338, + -0.0010099252685904503, + -0.004191024228930473, + 0.07308334857225418, + 0.045241471379995346, + -0.045293692499399185, + 0.11182031780481339, + 0.05521973967552185, + -0.003782985731959343, + -0.029085002839565277, + -0.04619499295949936, + -0.002973392140120268, + -0.04651034623384476, + -0.039174579083919525, + 0.06912919878959656, + 0.011936593800783157, + -0.01323163602501154, + -0.0539977103471756, + -0.07801362127065659, + 0.02400994300842285, + 0.06284616887569427, + 0.012042045593261719, + -0.027266429737210274, + -0.03757135197520256, + 0.013196239247918129, + -0.015333813615143299, + -0.006876532454043627, + -0.05568541958928108, + -0.0559452623128891, + -0.04577208682894707, + 0.06439345329999924, + -0.013013496994972229, + 0.07044892013072968, + -0.07411740720272064, + 0.10404013842344284, + 0.034775856882333755, + -0.0336860753595829, + -0.07373316586017609, + 0.03361072018742561, + -0.01597415842115879, + -0.015091808512806892, + -0.08617142587900162, + -0.019726600497961044, + -0.01987416297197342, + 0.10583429038524628, + -0.05999750271439552, + -0.05579498037695885, + 0.05602051317691803, + 0.04467329755425453, + 0.0024715843610465527, + 0.0245536919683218, + -0.004323681816458702, + -0.09123193472623825, + 0.013253318145871162, + 0.09518486261367798, + -0.0010048506082966924, + 0.00719259399920702, + 0.05723213776946068, + 0.00037042019539512694, + -0.04347097873687744, + 0.003295746399089694, + 0.048307936638593674, + 0.01204858347773552, + 0.05151551216840744, + -0.028849665075540543, + -0.06875554472208023, + -2.0178399395831548e-08, + -0.026761621236801147, + 0.0013670980697497725, + -0.05357147380709648, + 0.028458409011363983, + 0.01729830726981163, + -0.01598079688847065, + 0.0015311524039134383, + -0.006575021427124739, + -0.017318129539489746, + 0.03771672025322914, + 0.029828179627656937, + 0.038321372121572495, + 0.014917745254933834, + -0.10265659540891647, + 0.030534207820892334, + 0.0018028989434242249, + -0.035937707871198654, + 0.023553255945444107, + -0.021855268627405167, + 0.04159202426671982, + 0.06388804316520691, + 0.0448080338537693, + 0.021834369748830795, + -0.05610941722989082, + -0.016895174980163574, + -0.009112128056585789, + -0.04663975164294243, + -0.021067623049020767, + 0.014975659549236298, + 0.0750592052936554, + 0.05468164011836052, + 0.027090612798929214, + 0.04423658177256584, + 0.0032831584103405476, + -0.04331507533788681, + -0.017246583476662636, + 0.05322030186653137, + 0.022069627419114113, + -0.013318601064383984, + 0.08287885040044785, + -0.027558419853448868, + -0.09163414686918259, + -0.022468650713562965, + -0.04276539757847786, + 0.013372089713811874, + 0.0345010869204998, + 0.02309565804898739, + 0.04037817195057869, + 0.039371900260448456, + -0.09644205868244171, + -0.039682161062955856, + 0.03338451683521271, + 0.04172470420598984, + -0.046833425760269165, + -0.036557260900735855, + -0.024962343275547028, + 0.040123309940099716, + 0.16107921302318573, + 0.016590053215622902, + -0.04753642901778221, + 0.09518478065729141, + -0.01181886624544859, + -0.009056830778717995, + -0.004666754510253668 + ], + "coat-hanger-bold||clothing,clothes,closet": [ + -0.020588548853993416, + 0.09292537719011307, + 0.005056101828813553, + 0.03800739720463753, + 0.08625534921884537, + -0.0038788190577179193, + 0.09237822145223618, + -0.05256176367402077, + -0.03575875610113144, + -0.024108218029141426, + 0.001297738403081894, + -0.008467997424304485, + 0.06975875049829483, + -0.04660922288894653, + 0.0048316847532987595, + 0.052580997347831726, + 0.009949848987162113, + 0.07384707778692245, + 0.03172691538929939, + 0.013414247892796993, + -0.06376835703849792, + 0.06710518896579742, + 0.027769912034273148, + 0.07886097580194473, + 0.01572880521416664, + -0.020387792959809303, + 0.0013026464730501175, + 0.0074198441579937935, + -0.03802892565727234, + -0.06383296847343445, + 0.04200543090701103, + -0.029277106747031212, + 0.06843959540128708, + 0.056076329201459885, + 0.012019241228699684, + 0.031164316460490227, + 0.06605052202939987, + -0.009494164027273655, + -0.02714891918003559, + 0.10178462415933609, + -0.005050005856901407, + -0.08422921597957611, + -0.10694270581007004, + -0.0294361375272274, + -0.006562022492289543, + 0.030390765517950058, + 0.015671197324991226, + 0.051569193601608276, + -0.02076904848217964, + 0.037581559270620346, + -0.015931354835629463, + 0.020043333992362022, + -0.13109390437602997, + 0.02938200533390045, + -0.01662066951394081, + 0.05174517259001732, + 0.006013346370309591, + -0.004817694425582886, + 0.03505200892686844, + -0.028510475531220436, + -0.0002932924253400415, + 0.018844524398446083, + -0.02990829385817051, + 0.10524234920740128, + 0.07254759967327118, + 0.012325740419328213, + -0.041954874992370605, + 0.13724713027477264, + -0.039544954895973206, + -0.003592234803363681, + 0.055073466151952744, + 0.03702029213309288, + -0.049356333911418915, + 0.027320077642798424, + -0.0231420136988163, + 0.014051316305994987, + -0.0018314095214009285, + -0.015435601584613323, + -0.04635220393538475, + -0.0394429974257946, + -0.16217374801635742, + -0.08608132600784302, + -0.042588990181684494, + -0.01580154336988926, + 0.01305186003446579, + 0.03819670155644417, + -0.05251703038811684, + -0.08351276069879532, + -0.0549493171274662, + -0.01869834214448929, + -0.0375569723546505, + -0.028080545365810394, + -0.003993599209934473, + 0.015123089775443077, + -0.04541634023189545, + 0.025915171951055527, + 0.06460771709680557, + 0.010674182325601578, + -0.05146854370832443, + 0.06351553648710251, + -0.00030843159765936434, + -0.03462466597557068, + 0.10775956511497498, + 0.014624383300542831, + -0.0491323247551918, + -0.0776587426662445, + -0.022947760298848152, + -0.02223300188779831, + -0.02018544264137745, + -0.05758095905184746, + -0.017934616655111313, + -0.1175079271197319, + -0.006561633665114641, + -0.0678025409579277, + 0.020506281405687332, + -0.08052118867635727, + 0.012089898809790611, + -0.0026224504690617323, + 0.0999007523059845, + 0.038947537541389465, + 0.037974826991558075, + 0.04206201434135437, + 0.0005234674317762256, + -0.10307122766971588, + -0.06428898125886917, + 0.031210171058773994, + 0.07854697108268738, + -2.578698671459153e-33, + 0.031140198931097984, + 0.04524477198719978, + -0.03657332807779312, + 0.12019886821508408, + 0.026117049157619476, + -0.005207995884120464, + 0.009975194931030273, + -0.03214690089225769, + -0.06955272704362869, + 0.12291125953197479, + 0.10971775650978088, + 0.0036619380116462708, + -0.02334340661764145, + 0.1342538446187973, + 0.07830271869897842, + 0.026896733790636063, + 0.03531693294644356, + -0.06295264512300491, + 0.04141474887728691, + 0.021167105063796043, + -0.04565714672207832, + 0.0737774595618248, + -0.0110045550391078, + -0.011716751381754875, + -0.02272396720945835, + -0.05101729929447174, + 0.0406048446893692, + -0.0432826466858387, + -0.11433825641870499, + 0.03086462803184986, + 0.07917523384094238, + 0.027459029108285904, + 0.10831039398908615, + -0.008688293397426605, + -0.05790872499346733, + -0.015837393701076508, + -0.04069484397768974, + -0.014318273402750492, + 0.007219038903713226, + -0.010757990181446075, + -0.014301124028861523, + -0.026958398520946503, + 0.041410259902477264, + 0.05122968927025795, + 0.06918136775493622, + 0.057577285915613174, + 0.02848789282143116, + 0.0057263863272964954, + -0.05407692492008209, + 0.08622942119836807, + 0.05949101597070694, + -0.00484029995277524, + 0.02216503582894802, + 0.025845525786280632, + -0.023827195167541504, + -0.043761130422353745, + -0.021883051842451096, + 0.043754734098911285, + 0.0001634563086554408, + -0.009208881296217442, + 0.08126047253608704, + 0.14002157747745514, + 0.05160048231482506, + -0.050576552748680115, + 0.05543217808008194, + -0.004227011930197477, + 0.00951656885445118, + 0.02741972543299198, + 0.0276597011834383, + -0.009694913402199745, + -0.012169848196208477, + 0.07054799795150757, + 0.061540864408016205, + 0.08628407120704651, + 0.04335254430770874, + 0.01657785475254059, + -0.07652521133422852, + -0.052060697227716446, + 0.06635697185993195, + -0.12952572107315063, + -0.0441206619143486, + 0.06538388878107071, + -0.0294185820966959, + 0.09436126798391342, + -0.05783471092581749, + 0.0020352976862341166, + 0.03519081324338913, + -0.031781505793333054, + -0.0313391387462616, + 0.05401868373155594, + 0.02435826137661934, + 0.0016052275896072388, + -0.01178964227437973, + -0.06890823692083359, + -0.07754593342542648, + 3.552403391668715e-34, + 0.12472068518400192, + -0.05528814718127251, + 0.006955655757337809, + 0.017597438767552376, + 0.01542704738676548, + -0.00665880274027586, + -0.06247762590646744, + -0.017107278108596802, + -0.04153474047780037, + 0.0448063388466835, + 0.056271959096193314, + -0.03601354360580444, + -0.053466685116291046, + 0.01265027280896902, + 0.10682710260152817, + 0.05080737918615341, + 0.04856615141034126, + -0.001439628191292286, + -0.0027623241767287254, + -0.03947242349386215, + -0.02335987240076065, + -0.08330398052930832, + -0.04908619448542595, + 0.052187103778123856, + -0.08697513490915298, + -0.039877794682979584, + 0.011785930953919888, + -0.03554932400584221, + -0.013339348137378693, + -0.05769779905676842, + -0.04180062934756279, + -0.04174012318253517, + -0.0009032769012264907, + 0.07654199004173279, + -0.03205697238445282, + 0.0289036575704813, + 0.029380112886428833, + -0.012067723087966442, + 0.007595767267048359, + -0.03558600693941116, + 0.010853417217731476, + -0.06111061945557594, + 0.0241069532930851, + 0.030000200495123863, + 0.013696873560547829, + -0.055695097893476486, + -0.08436859399080276, + -0.03923336789011955, + -0.058886390179395676, + 0.0354081429541111, + -0.03851278871297836, + 0.013361933641135693, + -0.027089467272162437, + 0.003606895450502634, + -0.03837088495492935, + -0.007785757537931204, + -0.09632722288370132, + -0.013408730737864971, + -0.029037920758128166, + 0.0903388187289238, + 0.005455849226564169, + 0.031684983521699905, + -0.04898799583315849, + -0.013306760229170322, + 0.049619417637586594, + -0.07996917515993118, + -0.061965230852365494, + -0.04299383610486984, + -0.04252457246184349, + -0.003321831114590168, + 0.0748596340417862, + -0.014996768906712532, + 0.01420440711081028, + -0.020286597311496735, + -0.030790815129876137, + -0.054574016481637955, + 0.08852658420801163, + 0.0067443326115608215, + 0.0055396840907633305, + 0.023072917014360428, + -0.07629016786813736, + -0.08231637626886368, + -0.057273294776678085, + 0.01600976660847664, + -0.0034529766999185085, + -0.0034881720785051584, + -0.046999428421258926, + 0.03316758945584297, + 0.061477430164813995, + -0.09938834607601166, + -0.006322161760181189, + 0.03176288679242134, + -0.05288833752274513, + -0.012297958135604858, + -0.05599019676446915, + -1.7111039696260377e-08, + 0.002183529082685709, + -0.007409541867673397, + 0.008161810226738453, + -0.04173862934112549, + -0.029029684141278267, + 0.038949381560087204, + -0.007168362382799387, + -0.08463321626186371, + -0.045113347470760345, + 0.0024421398993581533, + 0.08273670077323914, + 0.031321097165346146, + -0.06292189657688141, + 0.02687062881886959, + -0.01304340735077858, + 0.0003545170184224844, + -0.06663955748081207, + 0.0038550870958715677, + -0.03294479846954346, + -0.06255286186933517, + 0.04724079370498657, + 0.04605512693524361, + 0.02853267453610897, + -0.001435369485989213, + 0.008552146144211292, + -0.0013947340194135904, + -0.055541977286338806, + 0.0188276544213295, + 0.0466555617749691, + 0.13822616636753082, + 0.06024943292140961, + 0.03330934792757034, + -0.024266041815280914, + -0.026524923741817474, + 0.004786996636539698, + -0.06973942369222641, + -0.020754816010594368, + -0.040004923939704895, + 0.037581391632556915, + 0.02353922463953495, + -0.005766269750893116, + -0.10128315538167953, + -0.028847746551036835, + -0.01160953938961029, + 0.07928559184074402, + -0.01959265023469925, + 0.04233404994010925, + -0.008509226143360138, + -0.08117444068193436, + -0.0566687285900116, + -0.036608293652534485, + -0.06138480454683304, + 0.03270724043250084, + 0.06327339261770248, + -0.02757096476852894, + -0.07213575392961502, + 0.01666799932718277, + 0.04044724628329277, + 0.035455286502838135, + -0.001881167758256197, + 0.0352126881480217, + -0.03799502179026604, + -0.06343133747577667, + 0.021551065146923065 + ], + "coda-logo-bold||project management,productivity,documentation,wiki,logos": [ + -0.019700152799487114, + 0.03699031472206116, + -0.04361224174499512, + -0.004032084718346596, + 0.046197980642318726, + -0.04013581946492195, + 0.03574015945196152, + 0.0046907272189855576, + 0.04658123850822449, + 0.06302052736282349, + -0.016676634550094604, + 0.04380614310503006, + 0.011942745186388493, + -0.015131907537579536, + -0.0048520248383283615, + 0.013231449760496616, + -0.010896473191678524, + -0.02244962938129902, + 0.06314051151275635, + -0.032040372490882874, + 0.07299245893955231, + 0.03305799514055252, + 0.05186902731657028, + 0.018354343250393867, + 0.01764410175383091, + 0.048560731112957, + 0.01978815719485283, + 0.030741184949874878, + -0.0061446200124919415, + -0.09312229603528976, + -0.07076076418161392, + 0.0859571024775505, + 0.13680170476436615, + -0.0048523410223424435, + 0.0980646014213562, + 0.0916273444890976, + 0.067494235932827, + -0.020713794976472855, + 0.07502790540456772, + 0.019370168447494507, + -0.05572698637843132, + -0.018648013472557068, + 0.016895702108740807, + 0.022992344573140144, + -0.030514366924762726, + 0.011990212835371494, + -0.07942754030227661, + -0.05753806605935097, + 0.004859711043536663, + 0.029081139713525772, + 0.0020384981762617826, + -0.1674782782793045, + -0.08862808346748352, + -0.10019490867853165, + 0.06196704879403114, + -0.014117313548922539, + -0.07553421705961227, + -0.028742630034685135, + 0.008153452537953854, + -0.02117278426885605, + -0.029664697125554085, + 0.02712789550423622, + -0.018167665228247643, + 0.06652674823999405, + 0.11215020716190338, + -0.011781037785112858, + 0.02616950310766697, + 0.07178565859794617, + -0.09318666160106659, + -0.031130656599998474, + 0.018318451941013336, + -0.048207156360149384, + -0.011887259781360626, + -0.06375880539417267, + -0.02843327634036541, + -0.006115221884101629, + 0.024752413854002953, + 0.015902133658528328, + 0.014980098232626915, + -0.13445782661437988, + 0.010784377343952656, + 0.03598380461335182, + -0.004683947656303644, + 0.07860522717237473, + 0.06881048530340195, + 0.08066461980342865, + -0.03323753923177719, + -0.029933732002973557, + 0.07058794051408768, + 0.054060179740190506, + -0.09493151307106018, + -0.04131975397467613, + 0.05680040642619133, + 0.001018827548250556, + -0.08869767189025879, + -0.00688041839748621, + 0.011994984932243824, + -0.06836850196123123, + -0.042975667864084244, + 0.09877034276723862, + -0.0270072091370821, + 0.01158097479492426, + 0.09053856879472733, + -0.09837281703948975, + -0.004369407892227173, + 0.05237819626927376, + 0.018746059387922287, + -0.0008521088166162372, + 0.02867697738111019, + 0.08737436681985855, + -0.020972223952412605, + 0.011524070985615253, + -0.14900361001491547, + -0.06952227652072906, + -0.015057138167321682, + -0.028781775385141373, + -0.019244646653532982, + -0.07409841567277908, + 0.10959231108427048, + -0.02806207537651062, + -0.027709176763892174, + -0.004450956825166941, + 0.033518727868795395, + -0.04037062078714371, + -0.049144793301820755, + -0.003871823428198695, + -0.041527532041072845, + -4.161999379559547e-33, + 0.07135949283838272, + 0.09395783394575119, + -0.06162751466035843, + 0.12154931575059891, + -0.001878200564533472, + -0.01294694747775793, + 0.002965119667351246, + -0.0337102971971035, + -0.10395423322916031, + -0.0021954078692942858, + 0.033104050904512405, + 0.11068128794431686, + -0.022960375994443893, + 0.11124499142169952, + 0.08603959530591965, + -0.048225291073322296, + 0.022864602506160736, + 0.021423932164907455, + -0.13832442462444305, + -0.047500476241111755, + -0.08606523275375366, + -0.004971600137650967, + 0.009571997448801994, + -0.05754397436976433, + 0.07885132730007172, + 0.0015343044651672244, + 0.02179626002907753, + 0.004815423861145973, + -0.026224665343761444, + 0.01975616253912449, + 0.08611519634723663, + 0.02727532386779785, + 0.03270675987005234, + -0.01218574121594429, + -0.0017937659285962582, + 0.003170289797708392, + -0.06033158302307129, + -0.04656227305531502, + 0.01568537950515747, + 0.07557529956102371, + -0.0832701027393341, + -0.04496153071522713, + -0.049509063363075256, + 0.005738438107073307, + 0.03500322625041008, + 0.08492890745401382, + -0.009280308149755001, + -0.128664031624794, + 0.07698646187782288, + -0.011967659927904606, + 0.02004224620759487, + 0.019653931260108948, + -0.0024501713924109936, + -0.013286624103784561, + -0.005698128137737513, + -0.10622463375329971, + -0.008943457156419754, + 0.030756499618291855, + 0.02146531268954277, + -0.014143066480755806, + -0.02538902498781681, + 0.013705276884138584, + 0.011534693650901318, + -0.00021545613708440214, + -0.03317711874842644, + 0.11435257643461227, + -0.042874883860349655, + 0.0316016785800457, + 0.07617418467998505, + -0.01714683137834072, + 0.042147789150476456, + 0.007187921088188887, + 0.06725966185331345, + 0.01661604829132557, + -0.04599638655781746, + 0.02076081372797489, + -0.022620730102062225, + 0.022060835734009743, + -0.05038360133767128, + 0.07087328284978867, + -0.0407053604722023, + -0.014952626079320908, + -0.036047860980033875, + -0.00883052870631218, + 0.023038147017359734, + 0.050663746893405914, + 0.1323147565126419, + -0.0027386602014303207, + -0.02084687538444996, + 0.0582299679517746, + -0.05482231825590134, + 0.0020668746437877417, + 0.004434619564563036, + -0.03464915603399277, + -0.054675325751304626, + 1.5336640816044807e-33, + 0.07183133810758591, + -0.01324956864118576, + 0.0026502287946641445, + -0.026805397123098373, + -0.050753846764564514, + -0.018216725438833237, + 0.018610775470733643, + 0.009213099256157875, + -0.07028209418058395, + 0.008953999727964401, + 0.07835552096366882, + -0.015468663536012173, + -0.11179763823747635, + 0.020516974851489067, + -0.03399175405502319, + -0.04108268767595291, + 0.0020292799454182386, + 0.01503464113920927, + -0.059358980506658554, + -0.001416227431036532, + -0.008228840306401253, + 0.013031786307692528, + -0.05565153807401657, + 0.07773589342832565, + -0.004623623099178076, + 0.02238507941365242, + -0.047229934483766556, + -0.029233645647764206, + -0.0276479534804821, + -0.06125854700803757, + -0.07119046896696091, + -0.036143165081739426, + 0.002705339342355728, + 0.019529955461621284, + -0.02327408827841282, + 0.031256165355443954, + -0.03307867422699928, + -0.02490164153277874, + -0.03595492243766785, + 0.03737625479698181, + 0.02288312278687954, + -0.05326490476727486, + 0.014266212470829487, + 0.05371895432472229, + -0.07271798700094223, + -0.03413311019539833, + -0.0391603447496891, + -0.09174507856369019, + -0.049168940633535385, + 0.04131254181265831, + 0.06881862878799438, + 0.008374957367777824, + 0.023113127797842026, + -0.053957678377628326, + -0.01858595386147499, + -0.03789292275905609, + -0.022440442815423012, + -0.019852153956890106, + -0.05979951471090317, + 0.05664745718240738, + 0.04898623004555702, + -0.015214391984045506, + -0.04588833078742027, + 0.05145600438117981, + 0.011348946020007133, + -0.021357659250497818, + 0.002004634588956833, + -0.04232216626405716, + -0.07521703094244003, + 0.05132322758436203, + -0.02361035719513893, + 0.010642404668033123, + -0.043733686208724976, + 0.03010810911655426, + -0.01884439028799534, + -0.08923564106225967, + 0.0499117486178875, + 0.01871456950902939, + -0.03780616447329521, + -0.0017026513814926147, + -0.01781429909169674, + -0.011520142666995525, + -0.038903579115867615, + 0.07274051010608673, + 0.01330324076116085, + 0.02894323132932186, + -0.009663593955338001, + -0.02311640791594982, + -0.02786233276128769, + -0.009441460482776165, + -0.0776776596903801, + 0.024997051805257797, + 0.026338189840316772, + 0.08385336399078369, + -0.032103024423122406, + -2.1413898210198568e-08, + -0.041183531284332275, + 0.03344728425145149, + 0.00892561487853527, + -0.04567304998636246, + 0.016701428219676018, + -0.0013710272032767534, + -0.01350482925772667, + -0.04661041870713234, + 0.016805151477456093, + -0.0065386611968278885, + -0.02887699194252491, + 0.03742250055074692, + -0.11672542989253998, + 0.03593294322490692, + 0.002671502996236086, + 0.0332922600209713, + -0.07667513191699982, + 0.09193362295627594, + -0.00782659649848938, + -0.1041526198387146, + -0.022506050765514374, + 0.10938244313001633, + 0.02405356802046299, + -0.03241387754678726, + 0.0072394427843391895, + 0.025054320693016052, + -0.020729433745145798, + 0.07831054925918579, + 0.041882261633872986, + 0.045832838863134384, + 0.052330322563648224, + 0.10018057376146317, + 0.005621857941150665, + -0.025349801406264305, + -0.0023252414539456367, + -0.03923981636762619, + 0.022505367174744606, + 0.016067292541265488, + -0.03873707354068756, + 0.06538169085979462, + 0.0054643359035253525, + 0.01253166701644659, + -0.03350168466567993, + 0.01882578805088997, + -0.006492797285318375, + 0.029581870883703232, + 0.04320826753973961, + 0.03798523172736168, + -0.07187344878911972, + -0.11569147557020187, + 0.000733730208594352, + 0.03830421715974808, + 0.004708240740001202, + 0.06984157860279083, + -0.05536531284451485, + -0.02080858312547207, + 0.04890238121151924, + 0.041963737457990646, + 0.011086412705481052, + -0.007487704511731863, + 0.11746258288621902, + -0.07954012602567673, + -0.005185200832784176, + 0.014808506704866886 + ], + "code-bold||angle brackets,angle braces,snippets": [ + -0.09691957384347916, + 0.0493905134499073, + -0.08921553939580917, + 0.00027836026856675744, + 0.008664698339998722, + -0.02732193097472191, + 0.01340005174279213, + -0.003046784084290266, + -0.03333074599504471, + -0.018226679414510727, + -0.003076381515711546, + 0.010637979954481125, + 0.03959040716290474, + -0.04546559974551201, + 0.09867503494024277, + 0.06841915100812912, + -0.06295076012611389, + 0.03132575377821922, + -0.007158889900892973, + 0.03399823233485222, + 0.016115667298436165, + 0.023591861128807068, + -0.052216786891222, + 0.03470541164278984, + 0.017862239852547646, + 0.08045192062854767, + 0.08251975476741791, + -0.03167833760380745, + 0.07807039469480515, + -0.014922111295163631, + -0.016365977004170418, + -0.04431894049048424, + 0.09325257688760757, + 0.042326416820287704, + 0.02342725731432438, + 0.050110384821891785, + -0.021879971027374268, + -0.04097559675574303, + -0.04731135815382004, + 0.0387684591114521, + -0.013036004267632961, + -0.01944652758538723, + -0.00019171321764588356, + 0.014330212026834488, + -0.026762275025248528, + -0.01330136600881815, + -0.08183492720127106, + 0.007972478866577148, + -0.02208324894309044, + -0.04065666347742081, + -0.033390823751688004, + -0.060417938977479935, + -0.10358677804470062, + -0.107364222407341, + 0.003271994413807988, + -0.01757311448454857, + -0.056738365441560745, + -0.06585217267274857, + 0.11020351201295853, + -0.05496269091963768, + 0.11830919235944748, + 0.017669176682829857, + 0.012040089815855026, + 0.062439002096652985, + -0.02880258485674858, + -0.02659040130674839, + 0.024782860651612282, + 0.06356102228164673, + -0.01616480015218258, + 0.024020839482545853, + -0.0841357484459877, + 0.01212338823825121, + -0.04740733653306961, + 0.030271733179688454, + -0.0006484254845418036, + 0.01417856477200985, + 0.055161330848932266, + 0.046483974903821945, + -0.020798703655600548, + -0.08848880976438522, + -0.07964117079973221, + -0.09709218889474869, + -0.022607851773500443, + 0.057172827422618866, + 0.10147549211978912, + 0.07993493229150772, + -0.1011052280664444, + -0.02935718558728695, + 0.046316299587488174, + 0.04779758304357529, + 0.030324596911668777, + -0.02985638938844204, + 0.012706700712442398, + 0.037440281361341476, + -0.003951177932322025, + 0.028466155752539635, + 0.015215495601296425, + -0.021644994616508484, + -0.09626789391040802, + 0.09049063920974731, + 0.014646622352302074, + 0.08427131175994873, + 0.03600345179438591, + -0.001469163573347032, + -0.05913838371634483, + 0.004645917564630508, + 0.05943489074707031, + 0.01696464978158474, + -0.010024352930486202, + -0.004448968451470137, + -0.02434748038649559, + -0.02839403599500656, + 0.02132168412208557, + -0.11298628151416779, + -0.05427146330475807, + -0.02871629223227501, + -0.009134014137089252, + 0.0028411743696779013, + 0.14637264609336853, + 0.08037769049406052, + 0.09047854691743851, + -0.008755696937441826, + -0.044311802834272385, + -0.003713113721460104, + 0.017499882727861404, + -0.0007579662487842143, + -0.04224761947989464, + -1.6026239985179894e-34, + 0.08949130028486252, + 0.0473003089427948, + -0.04678528755903244, + 0.0720164030790329, + -0.005179869011044502, + -0.031122108921408653, + -0.04859626665711403, + 0.021235987544059753, + -0.1135106161236763, + 0.04728768765926361, + 0.09806081652641296, + -0.013421619310975075, + 0.014638487249612808, + 0.044240474700927734, + -0.014415529556572437, + 0.017672766000032425, + 0.014966841787099838, + 0.010085271671414375, + -0.05317878723144531, + -0.00975099764764309, + -0.056743916124105453, + 0.019659966230392456, + -0.06475294381380081, + 0.024599233642220497, + -0.0592268668115139, + 0.057746224105358124, + 0.07295381277799606, + 0.025773603469133377, + -0.1368655115365982, + 0.03822650760412216, + 0.0148569131270051, + -0.07379073649644852, + 0.039578575640916824, + -0.02613600715994835, + 0.05960536375641823, + 0.05948854237794876, + -0.0306900292634964, + -0.032174572348594666, + 0.00809278804808855, + 0.07041323184967041, + -0.03206958994269371, + -0.015334438532590866, + 0.0051703061908483505, + -0.010611382313072681, + 0.014140484854578972, + 0.057333771139383316, + -0.05631675943732262, + 0.03773995488882065, + 0.006234643515199423, + 0.02343755029141903, + -0.02176867425441742, + 0.050042904913425446, + 0.016080182045698166, + 0.03262762725353241, + 0.004358998499810696, + -0.03300855681300163, + -0.017892342060804367, + 0.0622066892683506, + -0.041138675063848495, + -0.00907023623585701, + -0.06990673393011093, + 0.05615784972906113, + 0.029137056320905685, + -0.0567229799926281, + -0.08251763880252838, + 0.03773665800690651, + -0.07724536210298538, + 0.037217430770397186, + 0.07036630809307098, + -0.03726324811577797, + -0.00945331621915102, + 0.08658895641565323, + -0.02977919764816761, + 0.018860528245568275, + -0.03533810004591942, + 0.013051480054855347, + 0.045014046132564545, + 0.003379915375262499, + 0.03629283979535103, + -0.1055331900715828, + -0.047457002103328705, + 0.028581364080309868, + -0.005446318071335554, + 0.03194710984826088, + -0.04784465953707695, + 0.01157401129603386, + 0.02796434424817562, + -0.09245137870311737, + -0.06441276520490646, + 0.09404653310775757, + -0.06986664980649948, + -0.05856315419077873, + -0.03828471526503563, + -0.10796058923006058, + -0.01181584969162941, + -2.493506738764223e-33, + -0.008261442184448242, + 0.048096757382154465, + -0.08905220776796341, + -0.07993413507938385, + -0.08506978303194046, + 0.012020695954561234, + 0.02108452282845974, + 0.0233213622123003, + -0.01837771013379097, + -0.038947585970163345, + 0.017219465225934982, + -0.008405067957937717, + -0.03813057020306587, + -0.06074947863817215, + 0.049539029598236084, + 0.044119689613580704, + -0.028732256963849068, + -0.01633334904909134, + -0.00920094083994627, + 0.019223792478442192, + 0.02645835280418396, + 0.030542535707354546, + -0.0010049130069091916, + 0.11010584980249405, + -0.0578068308532238, + 0.06976481527090073, + -0.01761634834110737, + -0.005707206204533577, + 0.0007676809327676892, + -0.03224296495318413, + 0.041573867201805115, + -0.024734685197472572, + -0.010807099752128124, + 0.05179125815629959, + -0.06163369119167328, + 0.03283889964222908, + 0.00754525838419795, + 0.012325053103268147, + 0.04059798642992973, + -0.08810941129922867, + 0.08713348954916, + -0.017923928797245026, + 0.047374553978443146, + 0.008004853501915932, + -0.035493090748786926, + 0.008983243256807327, + 0.06717690080404282, + -0.016036465764045715, + 0.010424128733575344, + -0.012257379479706287, + -0.06744048744440079, + -0.0688554048538208, + -0.003115500556305051, + 0.06219688057899475, + -0.07989514619112015, + -0.07286210358142853, + 0.051449257880449295, + 0.0030598256271332502, + 0.03144748881459236, + 0.03951370343565941, + -0.06632677465677261, + -0.014168551191687584, + 0.04151565581560135, + 0.010734817013144493, + 0.007486656308174133, + -0.06712362915277481, + 0.080063097178936, + -0.05106141418218613, + -0.006504404358565807, + -0.02385806478559971, + 0.04128919914364815, + -0.004444265738129616, + -0.027876997366547585, + -0.0214607622474432, + -0.03715376555919647, + -0.022193443030118942, + 0.09726881980895996, + 0.02767339162528515, + -0.03511503338813782, + 0.06542563438415527, + 0.013732670806348324, + -0.0022213892079889774, + -0.012093436904251575, + 0.04475182667374611, + -0.059762004762887955, + 0.0026258414145559072, + -0.011481180787086487, + 0.029395226389169693, + -0.00399284390732646, + -0.012743731029331684, + -0.08922526985406876, + 0.10025248676538467, + 0.026062699034810066, + -0.046445224434137344, + 0.026988962665200233, + -2.0213720475226182e-08, + -0.028077879920601845, + -0.034045565873384476, + -0.09514237195253372, + -0.03642621263861656, + -0.07790862768888474, + -0.0323282927274704, + -0.10107944160699844, + -0.0891570970416069, + -0.08558274060487747, + -0.0293946024030447, + 0.08781789243221283, + 0.0723072737455368, + -0.018471207469701767, + -0.08216869086027145, + 0.023844875395298004, + 0.03186608478426933, + -0.05994377285242081, + 0.014723251573741436, + -0.004727716092020273, + -0.03965705633163452, + -0.04115774482488632, + 0.04191051423549652, + 0.0952373519539833, + -0.03219287469983101, + 0.023209383711218834, + 0.008382043801248074, + -0.012055320665240288, + 0.01200890727341175, + 0.09892774373292923, + 0.11302217096090317, + 0.05744160711765289, + 0.06972820311784744, + 0.04595717042684555, + 0.007834233343601227, + -0.019538136199116707, + -0.05747324973344803, + -0.039815664291381836, + -0.021279597654938698, + 0.05603526905179024, + 0.0916334018111229, + -0.040351126343011856, + 0.0016536220209673047, + -0.05108974501490593, + 0.01225576363503933, + -0.008081840351223946, + 0.001459056860767305, + 0.07164256274700165, + 0.03325774893164635, + -0.05403896048665047, + -0.12386856973171234, + -0.07482821494340897, + -0.006851429585367441, + -0.028065668419003487, + 0.0664859414100647, + -0.06363676488399506, + -0.063574880361557, + 0.05515975505113602, + 0.04692110791802406, + 0.038860589265823364, + 0.038547735661268234, + 0.04186004400253296, + 0.0718575268983841, + -0.02479921095073223, + -0.04193566367030144 + ], + "code-block-bold||angle brackets,angle braces,snippets": [ + -0.11559392511844635, + 0.0520910918712616, + -0.09601616114377975, + 0.009010064415633678, + 0.01750086434185505, + -0.018970580771565437, + -0.0009891907684504986, + -0.005075864493846893, + -0.027778835967183113, + -0.016341114416718483, + -0.015034783631563187, + 0.00675450311973691, + 0.003466180758550763, + -0.049380071461200714, + 0.09470399469137192, + 0.07890993356704712, + -0.04674830660223961, + 0.03351372852921486, + 0.028537964448332787, + 0.0092545747756958, + -0.0015092494431883097, + 0.03481346741318703, + -0.04533587023615837, + 0.04234173893928528, + 0.0019368769135326147, + 0.08928994834423065, + 0.048765748739242554, + -0.021467436105012894, + 0.08342641592025757, + -0.018479514867067337, + -0.01704058237373829, + -0.0522383376955986, + 0.09553837031126022, + 0.05439513921737671, + 0.0415746234357357, + 0.04947957023978233, + -0.02131589502096176, + -0.026625609025359154, + -0.041757021099328995, + 0.01403711549937725, + 0.0061693075112998486, + -0.0037113414146006107, + -0.0006059390143491328, + -0.005074736662209034, + -0.029010087251663208, + -0.026768092066049576, + -0.0779191255569458, + 0.023864654824137688, + -0.026371324434876442, + -0.057632382959127426, + -0.03642475605010986, + -0.05259786173701286, + -0.07405261695384979, + -0.09160403162240982, + 0.044856153428554535, + -0.058251507580280304, + -0.03392735496163368, + -0.07218944281339645, + 0.11932410299777985, + -0.03615256026387215, + 0.0994676947593689, + 0.030681604519486427, + 0.029721209779381752, + 0.055922746658325195, + -0.01407539937645197, + -0.006373850628733635, + -0.014958413317799568, + 0.08296021074056625, + -0.02594968117773533, + 0.023133303970098495, + -0.07910516113042831, + 0.006043063476681709, + -0.03101493790745735, + 0.05873182788491249, + 0.04215005412697792, + -0.010536436922848225, + 0.017511270940303802, + 0.07460176199674606, + -0.029581479728221893, + -0.10082092136144638, + -0.0940861701965332, + -0.09796883165836334, + -0.04420068860054016, + 0.047110963612794876, + 0.07654830068349838, + 0.055624399334192276, + -0.08191023766994476, + -0.019975386559963226, + 0.044208984822034836, + 0.056274209171533585, + 0.04478803649544716, + -0.03388532996177673, + 0.015592044219374657, + 0.05154219642281532, + -0.0006177697796374559, + -0.011175749823451042, + 0.0036187053192406893, + -0.028799012303352356, + -0.10850740224123001, + 0.0832078754901886, + 0.014210079796612263, + 0.0774134173989296, + -0.010769872926175594, + -0.0038064676336944103, + -0.05280667170882225, + -0.016171645373106003, + 0.07695510238409042, + 0.04451755806803703, + -0.029731255024671555, + -0.021213898435235023, + -0.016195839270949364, + -0.025025248527526855, + 0.009297697804868221, + -0.1144174337387085, + -0.059133268892765045, + -0.06362754851579666, + -0.017313314601778984, + -0.002829426433891058, + 0.16466569900512695, + 0.08807830512523651, + 0.09411738812923431, + -0.006576807238161564, + -0.06257358193397522, + -0.03590874746441841, + 0.01584012247622013, + -0.009954052045941353, + -0.015457825735211372, + -1.0233034645633106e-33, + 0.11187329888343811, + 0.04736223444342613, + -0.0644400417804718, + 0.07232725620269775, + 0.008385780267417431, + -0.01920248754322529, + -0.04580876603722572, + -0.009693768806755543, + -0.0872918963432312, + 0.0649983212351799, + 0.10736244916915894, + -0.07569009065628052, + 0.01589183323085308, + 0.05519487336277962, + -0.04700908437371254, + 0.020907703787088394, + 0.01565258949995041, + -0.010238215327262878, + -0.053114864975214005, + 0.02236173115670681, + -0.05512447655200958, + 0.04754817858338356, + -0.04431801661849022, + 0.02355772629380226, + -0.058866988867521286, + 0.06331483274698257, + 0.03585505113005638, + 0.0018024314194917679, + -0.13524973392486572, + 0.04876089468598366, + 0.01583852246403694, + -0.07284502685070038, + 0.03896019980311394, + -0.010232478380203247, + 0.05435720086097717, + 0.09063880145549774, + -0.01921859011054039, + -0.04704425483942032, + 0.01660916581749916, + 0.043590471148490906, + -0.042325373739004135, + -0.004623177461326122, + -0.011344927363097668, + -0.025933120399713516, + 0.01409106608480215, + 0.04903041198849678, + -0.028462018817663193, + 0.0066126626916229725, + -0.013690636493265629, + 0.01279611885547638, + 0.004598920699208975, + 0.0659540593624115, + 0.015408036299049854, + 0.01096618827432394, + 0.017215143889188766, + -0.05190490186214447, + -0.006426643580198288, + 0.07456572353839874, + -0.006779270712286234, + 0.010077710263431072, + -0.05141495540738106, + 0.051391858607530594, + 0.008075718767940998, + -0.0610501728951931, + -0.070799320936203, + 0.055520836263895035, + -0.07043157517910004, + 0.00467181671410799, + 0.04832841455936432, + -0.03801631182432175, + -0.011748996563255787, + 0.06583306938409805, + -0.023726359009742737, + 0.06196250393986702, + -0.05155208334326744, + 0.0016570622101426125, + 0.024666154757142067, + -0.0036038293037563562, + 0.014872798696160316, + -0.09655187278985977, + -0.03394836187362671, + 0.026624754071235657, + -0.02172461524605751, + 0.013830108568072319, + -0.06162642315030098, + 0.028457922860980034, + 0.021229762583971024, + -0.0711323469877243, + -0.05526139587163925, + 0.0851062536239624, + -0.06787367910146713, + -0.07148811966180801, + 4.8759366109152324e-06, + -0.12429535388946533, + -0.0025896448642015457, + -2.1642248734889838e-33, + 0.01093893963843584, + 0.046495310962200165, + -0.06519345194101334, + -0.08980896323919296, + -0.09022130072116852, + -0.0070760068483650684, + 0.010747740976512432, + 0.04763004183769226, + -0.0021729953587055206, + 0.0033452464267611504, + 0.03524111956357956, + 0.007807911839336157, + -0.04333605617284775, + -0.0483076386153698, + 0.04269581288099289, + 0.07061030715703964, + -0.0209216196089983, + -0.016426237300038338, + 0.009883587248623371, + -0.0060078464448452, + -0.020377792418003082, + 0.04782712087035179, + 0.007817557081580162, + 0.1175602450966835, + -0.07397904992103577, + 0.05646377056837082, + -0.013166560791432858, + 0.015396101400256157, + 0.05233360081911087, + -0.05946942791342735, + 0.030108824372291565, + -0.021060040220618248, + -0.0361238494515419, + 0.024822212755680084, + -0.046748798340559006, + 0.038142696022987366, + 0.00390089419670403, + 0.0408974327147007, + 0.017500661313533783, + -0.11021506041288376, + 0.07678049802780151, + -0.005937011446803808, + 0.03747422248125076, + -0.0031772709917277098, + -0.030280008912086487, + 0.02605646662414074, + 0.06840291619300842, + 0.0008147426997311413, + -0.00698280893266201, + -0.016063177958130836, + -0.050844136625528336, + -0.06211955100297928, + 0.010633411817252636, + 0.045474305748939514, + -0.07033269852399826, + -0.0656069666147232, + 0.02873716503381729, + 0.026305897161364555, + 0.021161358803510666, + 0.03898899629712105, + -0.06782609224319458, + -0.018001409247517586, + 0.044368840754032135, + -0.006447356194257736, + 0.03030051849782467, + -0.06319043040275574, + 0.07794352620840073, + -0.051674313843250275, + -0.0064987423829734325, + -0.029623081907629967, + 0.026520898565649986, + 0.01695113442838192, + -0.031054003164172173, + -0.01351337879896164, + -0.04636576026678085, + -0.022854963317513466, + 0.07847850769758224, + 0.011623780243098736, + -0.019167717546224594, + 0.07728071510791779, + 0.015358077362179756, + 0.0007039114134386182, + -0.026491140946745872, + 0.04000990837812424, + -0.0362057127058506, + 0.0051817512139678, + -0.036152537912130356, + 0.041630830615758896, + 0.006889406591653824, + -0.04307238385081291, + -0.09302584826946259, + 0.06101372092962265, + 0.01788811758160591, + -0.05852861329913139, + 0.02311546728014946, + -2.0607487272172875e-08, + -0.018006838858127594, + -0.06084324046969414, + -0.07476870715618134, + -0.04980163648724556, + -0.09934613108634949, + -0.02199397049844265, + -0.09215353429317474, + -0.09219228476285934, + -0.07406341284513474, + -0.046523842960596085, + 0.10267002135515213, + 0.08236594498157501, + -0.015223137103021145, + -0.08351214975118637, + -0.007803753484040499, + 0.04397372901439667, + -0.086423859000206, + 0.043010104447603226, + 0.006642082240432501, + -0.0248386412858963, + -0.03359900787472725, + 0.02629946544766426, + 0.07771800458431244, + -0.011300617828965187, + 0.01926010474562645, + 0.009611740708351135, + -0.004928581416606903, + -0.01377849280834198, + 0.09147293120622635, + 0.08466804027557373, + 0.07088133692741394, + 0.06967169791460037, + 0.08507989346981049, + -0.011690289713442326, + 0.01028936542570591, + -0.05463298037648201, + -0.059833381325006485, + -0.021671343594789505, + 0.06485145539045334, + 0.08585755527019501, + -0.02508348785340786, + 0.0016860500909388065, + -0.033072579652071, + 0.002603537403047085, + -0.03260768949985504, + -0.005255099385976791, + 0.03755840286612511, + 0.05492502823472023, + -0.07665666937828064, + -0.11713205277919769, + -0.04002825543284416, + -0.00473454175516963, + -0.01868351921439171, + 0.0778142660856247, + -0.032743409276008606, + -0.08130905777215958, + 0.061516616493463516, + 0.02618565410375595, + 0.0612650141119957, + 0.021202558651566505, + 0.05838201940059662, + 0.06122006103396416, + -0.007965568453073502, + -0.018129214644432068 + ], + "code-simple-bold||angle brackets,angle braces,snippets": [ + -0.07840408384799957, + 0.05175037682056427, + -0.06794913113117218, + 0.011604199185967445, + 0.010047274641692638, + -0.0309013519436121, + 0.0019010751275345683, + 0.002086506923660636, + -0.04740878567099571, + -0.00980097521096468, + -0.005148137453943491, + -0.005412827245891094, + 0.03828326240181923, + -0.042441338300704956, + 0.09109216183423996, + 0.06703204661607742, + -0.06230124831199646, + 0.020147183910012245, + -0.0063751763664186, + 0.0421934500336647, + -0.010507873259484768, + 0.011878310702741146, + -0.06242650747299194, + 0.03238580748438835, + 0.011232903227210045, + 0.0687161311507225, + 0.08688251674175262, + -0.01710098795592785, + 0.0822131410241127, + -0.01938404142856598, + -0.012019176036119461, + -0.056410353630781174, + 0.10008154064416885, + 0.03450973704457283, + 0.023107655346393585, + 0.03434480354189873, + -0.006408374756574631, + -0.03319329768419266, + -0.056884851306676865, + 0.03510550409555435, + 0.0009058613795787096, + -0.02996046654880047, + 0.007606533821672201, + 0.013935738243162632, + -0.043972644954919815, + -0.009527890011668205, + -0.08021743595600128, + 0.019137775525450706, + -0.011992203071713448, + -0.05133643373847008, + -0.02275915816426277, + -0.06072596088051796, + -0.11585802584886551, + -0.10634388029575348, + 0.008541939780116081, + -0.0032172678038477898, + -0.07043510675430298, + -0.060345131903886795, + 0.10638681054115295, + -0.06305809319019318, + 0.1266615241765976, + 0.0049065276980400085, + 0.0011916484218090773, + 0.050231918692588806, + -0.040663398802280426, + -0.03711141645908356, + 0.028557537123560905, + 0.05417772755026817, + -0.013617723248898983, + 0.017802760004997253, + -0.08275359123945236, + 0.007979627698659897, + -0.05882024019956589, + 0.037996333092451096, + -0.012228839099407196, + -0.00577809102833271, + 0.046302638947963715, + 0.05600998178124428, + -0.0325462706387043, + -0.06735110282897949, + -0.09417988359928131, + -0.10442081093788147, + -0.03148823603987694, + 0.07321770489215851, + 0.10557941347360611, + 0.06573072075843811, + -0.11106225103139877, + -0.025706373155117035, + 0.048759542405605316, + 0.04351276904344559, + 0.03353092819452286, + -0.015748638659715652, + 0.01776210032403469, + 0.03686118870973587, + 0.0030678948387503624, + 0.03015032596886158, + 0.035065677016973495, + -0.007233533076941967, + -0.1224830225110054, + 0.095102459192276, + 0.009903074242174625, + 0.08993168920278549, + 0.04866848513484001, + -0.01645885966718197, + -0.059137504547834396, + 0.0024617479648441076, + 0.05153227224946022, + 0.004556501749902964, + -0.013867074623703957, + -0.019537225365638733, + -0.025897083804011345, + -0.03953789919614792, + 0.028025129809975624, + -0.1047162264585495, + -0.04111659526824951, + -0.019681576639413834, + -0.023343950510025024, + 0.005936045665293932, + 0.13643774390220642, + 0.09503407776355743, + 0.08821629732847214, + -0.007440914399921894, + -0.04921879991889, + 0.005972833372652531, + 0.004140458069741726, + 0.008218212984502316, + -0.03710209205746651, + -8.454860667724385e-34, + 0.0976242646574974, + 0.06431394815444946, + -0.04160197824239731, + 0.08379821479320526, + -0.008114121854305267, + -0.03494677320122719, + -0.05589403957128525, + 0.0174361914396286, + -0.10485011339187622, + 0.04492168501019478, + 0.10714928060770035, + -0.01765214279294014, + 0.015795255079865456, + 0.037435609847307205, + -0.011004326865077019, + 0.012180925346910954, + 0.02450745366513729, + 0.012001286260783672, + -0.04752485081553459, + -0.022472478449344635, + -0.057851795107126236, + 0.04727126285433769, + -0.05686712637543678, + 0.00672184256836772, + -0.07043041288852692, + 0.05203024297952652, + 0.07077856361865997, + 0.017726358026266098, + -0.1266435831785202, + 0.03458396717905998, + 0.01548752561211586, + -0.06686129420995712, + 0.03904084116220474, + -0.01386349368840456, + 0.04707051068544388, + 0.04762500151991844, + -0.010931799188256264, + -0.025577394291758537, + 0.013229764066636562, + 0.04487294703722, + -0.045821212232112885, + -0.0010440655751153827, + 0.01779916137456894, + -0.019889632239937782, + 0.010569991543889046, + 0.06584081798791885, + -0.05940677225589752, + 0.026461495086550713, + 0.01573202945291996, + 0.02164105512201786, + -0.033479537814855576, + 0.049204520881175995, + 0.006114880554378033, + 0.03642236441373825, + 0.004717576317489147, + -0.013454973697662354, + -0.015768272802233696, + 0.0734889879822731, + -0.04829194396734238, + -0.012145180255174637, + -0.06486588716506958, + 0.07438012212514877, + 0.01536754984408617, + -0.04153916984796524, + -0.08524781465530396, + 0.051731228828430176, + -0.07381787896156311, + 0.026394404470920563, + 0.06038643792271614, + -0.02790493704378605, + -0.009541496634483337, + 0.0930122658610344, + -0.0316966287791729, + -0.006166945211589336, + -0.015936288982629776, + 0.03293073922395706, + 0.06756337732076645, + -0.013660394586622715, + 0.031052717939019203, + -0.10407745093107224, + -0.036071810871362686, + 0.035690974444150925, + -0.01325888093560934, + 0.03715396672487259, + -0.06296105682849884, + 0.01172920037060976, + 0.0302719809114933, + -0.07331326603889465, + -0.07028999924659729, + 0.08147937804460526, + -0.07653261721134186, + -0.050565317273139954, + -0.045711319893598557, + -0.10347092151641846, + -0.008323857560753822, + -1.988203226989985e-33, + -0.0004139089141972363, + 0.04331263527274132, + -0.08868425339460373, + -0.0779578685760498, + -0.07907100766897202, + 0.02210289239883423, + 0.02413204312324524, + 0.016525449231266975, + -0.016767943277955055, + -0.028696008026599884, + 0.016294945031404495, + -0.010350805707275867, + -0.054724279791116714, + -0.050784047693014145, + 0.04359200969338417, + 0.043354302644729614, + -0.02593330852687359, + 0.005166513845324516, + -0.006451899651437998, + 0.00856879260390997, + 0.028100794181227684, + 0.039929550141096115, + -0.02522328495979309, + 0.09765172004699707, + -0.05412735790014267, + 0.06950582563877106, + -0.02638992667198181, + -0.007667652331292629, + 0.004738568793982267, + -0.027562277391552925, + 0.033959705382585526, + -0.03211340680718422, + -0.0030055122915655375, + 0.03991664573550224, + -0.07020106911659241, + 0.04192434623837471, + -0.013506099581718445, + 0.013069124892354012, + 0.04193265736103058, + -0.09539760649204254, + 0.08322814851999283, + -0.012532816268503666, + 0.052770860493183136, + -0.005083827767521143, + -0.0323684997856617, + -0.002342012943699956, + 0.07652680575847626, + -0.019288280978798866, + -0.006204741075634956, + -0.007033548783510923, + -0.07307195663452148, + -0.08008558303117752, + -0.0035896562039852142, + 0.0646233931183815, + -0.08058476448059082, + -0.07211723923683167, + 0.07177431881427765, + 0.01431360188871622, + 0.02812197618186474, + 0.044920723885297775, + -0.07863497734069824, + -0.00033643213100731373, + 0.017296548932790756, + 0.007349544670432806, + -0.005099826492369175, + -0.055660430341959, + 0.08057378977537155, + -0.06798064708709717, + -0.0044066510163247585, + -0.024061057716608047, + 0.03884168714284897, + 0.004279357846826315, + -0.011047391220927238, + -0.039648134261369705, + -0.02808157540857792, + -0.01738588511943817, + 0.08123410493135452, + 0.02909686416387558, + -0.0361897237598896, + 0.05259254202246666, + 0.01914159208536148, + -0.005084003321826458, + -0.018316486850380898, + 0.026591701433062553, + -0.05049239471554756, + 0.0014110241318121552, + -0.005280306562781334, + 0.019538985565304756, + 0.00750413304194808, + -0.010848859325051308, + -0.08796993643045425, + 0.10698961466550827, + 0.046782493591308594, + -0.03711692988872528, + 0.023671617731451988, + -2.1429571006592596e-08, + -0.022347060963511467, + -0.04666707292199135, + -0.09829306602478027, + -0.02713354490697384, + -0.07278461754322052, + -0.033643689006567, + -0.09227461367845535, + -0.09297811985015869, + -0.07913661748170853, + -0.017401158809661865, + 0.07818770408630371, + 0.06158002093434334, + -0.017539892345666885, + -0.06766624003648758, + 0.0037816008552908897, + 0.0454266257584095, + -0.047634389251470566, + 0.005463093053549528, + -0.001587442122399807, + -0.036079056560993195, + -0.036376044154167175, + 0.03631243109703064, + 0.09336748719215393, + -0.025679251179099083, + 0.023838791996240616, + 0.005958152003586292, + -0.018329977989196777, + 0.01975724659860134, + 0.10757328569889069, + 0.120243139564991, + 0.05560976639389992, + 0.06097514554858208, + 0.04531797394156456, + 0.016205737367272377, + -0.026017820462584496, + -0.0414893813431263, + -0.04794607684016228, + -0.0177195742726326, + 0.037219174206256866, + 0.07649317383766174, + -0.0487971305847168, + 0.010376806370913982, + -0.04955300688743591, + 0.01072049792855978, + -0.002119898097589612, + -0.0068310522474348545, + 0.06895660609006882, + 0.021231673657894135, + -0.05119115486741066, + -0.1275002658367157, + -0.07347729802131653, + -0.007721282076090574, + -0.013946386985480785, + 0.05173058062791824, + -0.0632944330573082, + -0.055057406425476074, + 0.07468514144420624, + 0.06973832845687866, + 0.029832221567630768, + 0.044442903250455856, + 0.05421002581715584, + 0.0988943800330162, + -0.0352889709174633, + -0.040388062596321106 + ], + "codepen-logo-bold||ide,logos": [ + -0.014034371823072433, + 0.008024036884307861, + -0.0652540996670723, + 0.06785763800144196, + 0.05083317309617996, + -0.011564488522708416, + 0.09446348994970322, + -0.03353625535964966, + 0.05228399485349655, + -0.0036023587454110384, + -0.009282657876610756, + 0.0749528780579567, + 0.047784533351659775, + -0.09854892641305923, + 0.008700871840119362, + -0.028330188244581223, + -0.09695940464735031, + -0.004934292286634445, + 0.03084459714591503, + -0.01916784793138504, + 0.06103682890534401, + -0.01735878176987171, + 0.006420019548386335, + -0.05987447872757912, + -0.025760868564248085, + 0.04327547177672386, + 0.09074835479259491, + 0.0036501979921013117, + 0.009113502688705921, + -0.07963362336158752, + -0.002900936407968402, + -0.01156679168343544, + 0.06982842832803726, + -0.02193647064268589, + 0.04885682836174965, + 0.018889030441641808, + 0.028903882950544357, + -0.04706475883722305, + 0.04539857804775238, + 0.05024174600839615, + 0.03790369629859924, + -0.005196752026677132, + 0.012669024057686329, + -0.0021369503811001778, + -0.03831186890602112, + -0.01897623762488365, + -0.08718711882829666, + 0.003849341766908765, + -0.023314299061894417, + -0.027132302522659302, + 0.07300782203674316, + -0.15006861090660095, + -0.03840578719973564, + -0.1193167120218277, + 0.03818580508232117, + -0.09376973658800125, + 0.023722631856799126, + -0.0627838596701622, + 0.03799872845411301, + 0.05816441774368286, + 0.050920791923999786, + 0.08780349045991898, + 0.07044802606105804, + 0.054516103118658066, + 0.027263514697551727, + -0.01886908710002899, + -0.0035062581300735474, + 0.05658268555998802, + -0.1296853870153427, + -0.04625346139073372, + 0.017600005492568016, + -0.0425080731511116, + -0.053386140614748, + -0.03997230902314186, + -0.00952578242868185, + 0.07129338383674622, + 0.07223875820636749, + 0.04937877133488655, + -0.0018251697765663266, + -0.10544025152921677, + -0.060154251754283905, + 0.017342200502753258, + 0.059591926634311676, + 0.03864312916994095, + 0.11321473866701126, + 0.0793478712439537, + -0.05765514448285103, + -0.010320980101823807, + 0.034433431923389435, + 0.09492136538028717, + -0.02253876067698002, + 0.03563176840543747, + -0.010023660957813263, + 0.011147641576826572, + -0.04286950081586838, + -0.029120931401848793, + 0.027968280017375946, + 0.004688425455242395, + -0.08215074241161346, + 0.07205171883106232, + -0.04722299054265022, + 0.05990144982933998, + 0.030864164233207703, + -0.02869255840778351, + 0.0013821871252730489, + 0.06969070434570312, + 0.06716740131378174, + -0.039484307169914246, + 0.025205107405781746, + 0.021258030086755753, + -0.018729105591773987, + -0.02681712992489338, + -0.02817656844854355, + -0.044955816119909286, + -0.053653594106435776, + -0.04272214695811272, + 0.009918608702719212, + -0.017146695405244827, + 0.13036952912807465, + -0.00833747535943985, + 0.042088188230991364, + -0.037241093814373016, + -0.06275723874568939, + -0.08707819133996964, + -0.010984080843627453, + -0.009920233860611916, + 0.014544005505740643, + -2.799139494410841e-33, + -0.014311258681118488, + 0.07239174097776413, + -0.05898454412817955, + 0.04843208193778992, + -0.02111244946718216, + -0.044768717139959335, + -0.04211272671818733, + -0.06280992180109024, + -0.10665831714868546, + 0.04766138270497322, + 0.05654153600335121, + 0.02553963102400303, + -0.05300072580575943, + 0.10438281297683716, + -0.026583241298794746, + -0.002587632043287158, + -0.0009845717577263713, + 0.001749963965266943, + -0.11788047105073929, + -0.08549118041992188, + -0.08644469827413559, + -0.07199455797672272, + -0.07373025268316269, + -0.06559571623802185, + 0.019611427560448647, + 0.04131937026977539, + 0.018181661143898964, + 0.004998048767447472, + 0.0272089634090662, + -0.0008709892281331122, + 0.045529112219810486, + -0.03464384004473686, + 0.022894013673067093, + 0.04576585069298744, + -0.08431344479322433, + 0.0008373522432520986, + -0.022598551586270332, + 0.012396245263516903, + -0.061672404408454895, + 0.07919428497552872, + 0.0174056775867939, + -0.0288375336676836, + -0.03509239852428436, + 0.00872208084911108, + 0.021034779027104378, + 0.1321486532688141, + 0.01831457018852234, + -0.0991659089922905, + 0.03670569509267807, + -0.025854796171188354, + -0.0016919717891141772, + 0.016863711178302765, + 0.0011973150540143251, + 0.002895520068705082, + -0.018009407445788383, + -0.07448604702949524, + -0.05616554990410805, + 0.05837995931506157, + 0.05451890826225281, + -0.011290311813354492, + 0.04257451370358467, + 0.0204927921295166, + -0.006947556044906378, + -0.001106065115891397, + 0.00022615028137806803, + 0.1433936357498169, + -0.011356068775057793, + 0.02685713954269886, + 0.033393487334251404, + -0.0033206576481461525, + 0.03807329759001732, + 0.004733069334179163, + 0.10732971131801605, + 0.02222728729248047, + -0.04852347820997238, + -0.010164633393287659, + -0.0026189445052295923, + 0.016425171867012978, + 0.016491729766130447, + -0.012983478605747223, + -0.0543103851377964, + -0.01922464184463024, + -0.04573305696249008, + 0.011578588746488094, + 0.02426924929022789, + 0.02907179854810238, + 0.047643132507801056, + 0.004709741100668907, + -0.06377632170915604, + 0.04352046921849251, + -0.004546827170997858, + -0.017004743218421936, + 0.004638862330466509, + -0.056413546204566956, + -0.1037648394703865, + 6.160048657434615e-34, + 0.041019197553396225, + 0.04705188050866127, + 0.05686616525053978, + -0.04221062362194061, + -0.054958947002887726, + 0.005937893874943256, + 0.058668043464422226, + 0.06411732733249664, + -0.06440520286560059, + -0.010811894200742245, + 0.10009454190731049, + -0.009714397601783276, + -0.07873743027448654, + -0.01705590821802616, + 0.07641113549470901, + -0.010469232685863972, + -0.00931553915143013, + 0.09168104082345963, + -0.05502522364258766, + 0.03219588100910187, + 0.021668221801519394, + -0.012562336400151253, + -0.02206585183739662, + 0.06840355694293976, + -0.09507518261671066, + 0.021684901788830757, + -0.010960480198264122, + 0.027291903272271156, + -0.03533006086945534, + -0.023950977250933647, + 0.016092879697680473, + -0.017928309738636017, + -0.016676776111125946, + 0.03160332143306732, + -0.04819870740175247, + 0.03068050928413868, + 0.0033773116301745176, + -0.018137134611606598, + -0.036375440657138824, + 0.0910295769572258, + -0.02521132118999958, + -0.049054693430662155, + -0.014486606232821941, + 0.11079516261816025, + -0.0219323318451643, + 0.0001880719792097807, + -0.06973496079444885, + -0.12185609340667725, + 0.01885032281279564, + 0.07063175737857819, + 0.03386770933866501, + -0.0075581432320177555, + 0.03232544660568237, + 0.014611044898629189, + -0.06646657735109329, + -0.04796042665839195, + -0.008289903402328491, + 0.014054168947041035, + -0.055906668305397034, + 0.09577031433582306, + 0.05806158483028412, + -0.021475616842508316, + -0.03719059377908707, + -0.02203374356031418, + 0.03050297126173973, + -0.033988289535045624, + -0.007893294095993042, + -0.0044190483167767525, + -0.03811192139983177, + 0.012576853856444359, + -0.019416099414229393, + -0.008453654125332832, + -0.024079352617263794, + -0.002497472334653139, + -0.002928861416876316, + -0.0424656867980957, + 0.05469290539622307, + -0.01718052662909031, + -0.03256954625248909, + 0.011601002886891365, + -0.009403186850249767, + -0.03959668427705765, + -0.07267800718545914, + 0.05143967643380165, + -0.011616170406341553, + 0.05949865281581879, + -0.011650529690086842, + -0.0013230708427727222, + 0.004079781007021666, + -0.026406165212392807, + -0.06994780153036118, + 0.11563752591609955, + 0.10490533709526062, + 0.009557392448186874, + -0.03716552257537842, + -1.660997384078655e-08, + -0.02376426011323929, + 0.00030531969969160855, + 0.07254005968570709, + -0.06307715177536011, + -0.004780699033290148, + 0.004266603384166956, + -0.0656023621559143, + -0.08524063974618912, + -0.027546776458621025, + -0.017496664077043533, + 0.001291615073569119, + 0.00804648082703352, + -0.030929062515497208, + -0.009822264313697815, + 0.003662890987470746, + -0.03739593178033829, + -0.1262657344341278, + 0.06770258396863937, + 0.007997162640094757, + -0.029522687196731567, + -0.05067769065499306, + 0.08591310679912567, + 0.050007641315460205, + -0.057276416569948196, + 0.017575524747371674, + -0.07547877728939056, + 0.008336127735674381, + 0.004158513620495796, + 0.0026353201828897, + 0.03823394328355789, + 0.003258084412664175, + 0.11355258524417877, + 0.07657988369464874, + 0.028218602761626244, + -0.025851771235466003, + -0.026637129485607147, + -0.00890382006764412, + 0.007703213952481747, + -0.04222976788878441, + 0.07840367406606674, + 0.037431783974170685, + -0.030434494838118553, + -0.05086683854460716, + -0.054306939244270325, + -0.03223569691181183, + 0.034600622951984406, + 0.06836409866809845, + 0.018695415928959846, + -0.030844703316688538, + -0.03488659858703613, + -0.0040436116978526115, + -0.013590898364782333, + -0.0512256883084774, + 0.025978533551096916, + -0.019949255511164665, + -0.13227544724941254, + -0.0233976561576128, + 0.16102775931358337, + 0.03388700634241104, + 0.07857321947813034, + 0.057529911398887634, + -0.04324512928724289, + 0.04923494532704353, + -0.03652488812804222 + ], + "codesandbox-logo-bold||ide,logos": [ + 0.030634749680757523, + 0.02206987701356411, + -0.07435666769742966, + 0.032706309109926224, + 0.08208293467760086, + 0.029802562668919563, + 0.05652877688407898, + -0.05223650485277176, + 0.025261683389544487, + -0.0006006011390127242, + -0.05305149406194687, + 0.08151945471763611, + 0.05642900615930557, + -0.10171807557344437, + 0.011508823372423649, + -0.012904389761388302, + -0.08466873317956924, + -0.0020495187491178513, + 0.00418384512886405, + -0.021989813074469566, + 0.04918953776359558, + -0.03887531906366348, + 0.005646286997944117, + -0.06482701748609543, + -0.03126852586865425, + 0.023337198421359062, + 0.06833597272634506, + -0.0009113756823353469, + -0.01921222172677517, + -0.08361641317605972, + 0.027571558952331543, + -0.036510635167360306, + 0.0992879718542099, + 0.02618410252034664, + 0.017912697046995163, + 0.022125158458948135, + 0.029449177905917168, + -0.04555569961667061, + 0.04891445115208626, + 0.04599237069487572, + -0.019849907606840134, + -0.016391701996326447, + 0.0011959963012486696, + 0.03407244011759758, + -0.052195917814970016, + -0.007003108039498329, + -0.06058017536997795, + -0.026287918910384178, + -0.021271251142024994, + -0.045347511768341064, + 0.08032669872045517, + -0.10332578420639038, + -0.012635656632483006, + -0.0873543992638588, + 0.04941028729081154, + -0.07164358347654343, + 0.005273095332086086, + -0.03695666044950485, + 0.044172365218400955, + 0.05434604361653328, + 0.04229767248034477, + 0.08992740511894226, + 0.08924562484025955, + 0.03390250355005264, + 0.07467271387577057, + 0.0014081987319514155, + -0.028943929821252823, + 0.05651899054646492, + -0.14336764812469482, + -0.0634274110198021, + 0.029312288388609886, + -0.019210321828722954, + -0.03506854549050331, + -0.002212593099102378, + 0.001158309169113636, + 0.035916768014431, + 0.03811969235539436, + 0.05766146257519722, + 0.036043569445610046, + -0.05482708662748337, + -0.12943819165229797, + 0.01635775901377201, + 0.059449777007102966, + 0.014535170048475266, + 0.0847197100520134, + 0.052279986441135406, + -0.08324196934700012, + 0.03146899864077568, + -0.01746280863881111, + 0.07705098390579224, + -0.030169453471899033, + -0.011420225724577904, + 0.04908262938261032, + 0.04077175259590149, + -0.0069486042484641075, + -0.04226860776543617, + -0.0003975445870310068, + 0.005451182834804058, + -0.0636984184384346, + 0.05284047871828079, + -0.02875550091266632, + 0.05531611666083336, + 0.015574287623167038, + -0.02638428285717964, + 0.031161203980445862, + 0.030986685305833817, + 0.08500603586435318, + -0.010628615505993366, + 0.039711520075798035, + 0.051404260098934174, + -0.039761099964380264, + -0.05677086487412453, + -0.04211099073290825, + -0.04715774208307266, + -0.06360018998384476, + -0.035278454422950745, + 0.012897977605462074, + -0.007504928857088089, + 0.10428307205438614, + -0.03723667562007904, + 0.05073118582367897, + -0.06398434937000275, + -0.10302705317735672, + -0.07101156562566757, + -0.02510797418653965, + -0.001808518311008811, + -0.001615723711438477, + -2.107062419918419e-33, + 0.016850648447871208, + 0.04478290304541588, + -0.0704163983464241, + 0.05605124309659004, + 0.008067802526056767, + -0.007625295780599117, + -0.06203073635697365, + -0.06527850031852722, + -0.07027198374271393, + 0.06145256757736206, + 0.0332496277987957, + 0.01979065127670765, + -0.032926879823207855, + 0.06320453435182571, + -0.04909680411219597, + -0.04308871924877167, + -0.028993554413318634, + -0.018967850133776665, + -0.150330051779747, + -0.059179097414016724, + -0.09463468194007874, + -0.04203348979353905, + -0.0792008638381958, + 0.005867494270205498, + 0.018184112384915352, + 0.05684987083077431, + 0.06511864066123962, + 0.002137374598532915, + 0.017313163727521896, + 0.0012239770730957389, + 0.03495371714234352, + -0.0372525230050087, + -0.006071827374398708, + 0.0724722295999527, + -0.07299105077981949, + 0.006381400860846043, + -0.024036774411797523, + 0.013663734309375286, + -0.01826246827840805, + 0.10047239065170288, + 0.044780146330595016, + -0.07469157874584198, + -0.027116160839796066, + -0.011445543728768826, + 0.0432695671916008, + 0.0976187065243721, + 0.011007856577634811, + -0.08488988876342773, + 0.0361422598361969, + -0.04168768227100372, + 0.0154269989579916, + 0.024629654362797737, + -0.019477782770991325, + -0.02478497475385666, + 0.014837557449936867, + -0.07748877257108688, + -0.0708502009510994, + 0.056996822357177734, + 0.07674567401409149, + 0.007333274465054274, + 0.04920146241784096, + -0.026735875755548477, + 0.05767473205924034, + -0.024533169344067574, + 0.019080854952335358, + 0.12429486215114594, + -0.03286071494221687, + 0.012887772172689438, + -0.0067159635946154594, + -0.037780385464429855, + 0.05567050352692604, + -0.0111022824421525, + 0.09655903279781342, + 0.03494640439748764, + -0.06456027925014496, + -0.0011132475920021534, + 0.02540495991706848, + 0.004910868126899004, + 0.005460296291857958, + -0.03360786661505699, + -0.06901106983423233, + 0.020148899406194687, + -0.04497606307268143, + 0.02036365121603012, + 0.022893410176038742, + 0.04781269282102585, + 0.011914918199181557, + -0.005434518214315176, + -0.07130163908004761, + 0.06438539177179337, + -0.02064220979809761, + -0.0334625281393528, + -0.03428424894809723, + -0.057579103857278824, + -0.06398468464612961, + 2.887306392086061e-34, + 0.04403574392199516, + 0.05047744885087013, + 0.04330006614327431, + -0.06314217299222946, + -0.021721668541431427, + 0.026642754673957825, + 0.08371146023273468, + 0.06345824897289276, + -0.039841294288635254, + 0.022035231813788414, + 0.0798405110836029, + -0.02781478874385357, + -0.10511210560798645, + -0.014008116908371449, + 0.05072322487831116, + 0.019756264984607697, + -0.005003273021429777, + 0.11090991646051407, + -0.04563818871974945, + 0.022237753495573997, + 0.019578011706471443, + 0.013264301232993603, + -0.07799805700778961, + 0.04592151939868927, + -0.12941156327724457, + 0.032210323959589005, + -0.024837227538228035, + 0.04998836666345596, + -0.011422100476920605, + -0.039051685482263565, + 0.025836601853370667, + -0.01062802504748106, + -0.03990144282579422, + 0.006778248585760593, + -0.008165533654391766, + 0.009598826989531517, + 0.023792535066604614, + -0.04884682595729828, + -0.02792190946638584, + 0.08560489118099213, + -0.05197868496179581, + -0.022952934727072716, + -0.01847115531563759, + 0.11115629971027374, + -0.024113032966852188, + -0.01917344518005848, + -0.03839779272675514, + -0.11199367791414261, + 0.03166377171874046, + 0.07828551530838013, + 0.023418478667736053, + -0.024012170732021332, + 0.03689644858241081, + 0.0029847470577806234, + -0.10623016953468323, + -0.033602405339479446, + -0.026693908497691154, + 0.04718939587473869, + -0.01031352486461401, + 0.09069232642650604, + 0.05467655509710312, + -0.015254206955432892, + 0.004752883687615395, + -0.0010830877581611276, + 0.0006468330975621939, + -0.01764371432363987, + 0.004517408087849617, + 0.0318242684006691, + -0.012556874193251133, + 0.0008037388324737549, + 0.0044388375245034695, + -0.04181910306215286, + -0.026923852041363716, + 0.027831146493554115, + 0.013792176730930805, + -0.06917184591293335, + 0.049352217465639114, + 0.011030148714780807, + -0.015026011504232883, + 0.009828202426433563, + -0.012355531565845013, + -0.0025142752565443516, + -0.06599395722150803, + 0.05566802993416786, + -0.002490075072273612, + 0.016230911016464233, + 0.003328711958602071, + 0.016253164038062096, + -0.03839263692498207, + -0.03484806418418884, + -0.07752833515405655, + 0.09721631556749344, + 0.10125315934419632, + 0.007852841168642044, + -0.021141160279512405, + -1.7203920066322098e-08, + -0.023520590737462044, + -0.022437578067183495, + 0.04628315940499306, + -0.06384653598070145, + 0.009876962751150131, + 0.03530796244740486, + -0.0819103792309761, + -0.0728464275598526, + -0.02554362453520298, + -0.05700119584798813, + -0.0017221608432009816, + 0.00854184664785862, + -0.06346214562654495, + -0.07624810934066772, + 0.025875240564346313, + -0.0266129057854414, + -0.14175204932689667, + 0.07814279198646545, + 0.030525414273142815, + 0.01665864884853363, + -0.00030443869763985276, + 0.07758453488349915, + 0.03588704392313957, + -0.024976136162877083, + -0.01816307194530964, + -0.006587561685591936, + 0.020918255671858788, + -0.0014518406242132187, + -0.006425960920751095, + 0.06969615072011948, + -0.013787816278636456, + 0.133016899228096, + 0.09681092202663422, + -0.0246623195707798, + -0.03443245589733124, + -0.0569821260869503, + -0.038481082767248154, + -0.008815638720989227, + -0.036349497735500336, + 0.01257186196744442, + 0.08738255500793457, + -0.05506107583642006, + -0.02437126450240612, + -0.046232856810092926, + -0.025738975033164024, + 0.005736141465604305, + 0.06740891933441162, + 0.03240571916103363, + -0.05057990923523903, + -0.06650485098361969, + 0.006432290654629469, + 0.015846550464630127, + -0.01880757324397564, + 0.05033152550458908, + -0.013266616500914097, + -0.13220663368701935, + -0.02074279636144638, + 0.1056690365076065, + 0.073495052754879, + 0.0979284793138504, + 0.05762222409248352, + -0.0006741373799741268, + 0.03676605597138405, + -0.06751970946788788 + ], + "coffee-bold||tea,java,beverages,drinks,cafe,cup,mug,espresso,cappuccino,latte,places,locations,bars,restaurants,food,dining": [ + 0.030401188880205154, + -0.05640649050474167, + 0.0061794728972017765, + 0.058398906141519547, + 0.016091756522655487, + 0.025385171175003052, + 0.08567968755960464, + -0.03063206374645233, + -0.04206084832549095, + -0.01919242925941944, + 0.02058732509613037, + -0.0699949637055397, + 0.007228551898151636, + -0.038223747164011, + 0.062354423105716705, + -0.10867264121770859, + 0.08976804465055466, + 0.023601887747645378, + 0.08475760370492935, + -0.025149835273623466, + 0.06033647805452347, + -0.05865522474050522, + 0.07323877513408661, + 0.06108497828245163, + 0.11954057961702347, + 0.09540968388319016, + 0.05815396085381508, + -0.0012086185161024332, + -0.03878544270992279, + -0.0748874694108963, + -0.058963607996702194, + 0.002934713615104556, + 0.07247137278318405, + -0.003135532606393099, + -0.026917941868305206, + 0.03563225269317627, + 0.04478280618786812, + -0.042705707252025604, + 0.0905802771449089, + 0.05399923771619797, + -0.07964453846216202, + -0.028670551255345345, + 0.025525318458676338, + -0.0185858067125082, + 0.021904204040765762, + -0.04007241874933243, + -0.08181552588939667, + -0.016873566433787346, + 0.009240633808076382, + 0.022632697597146034, + -0.0780615359544754, + -0.08792266994714737, + -0.08820362389087677, + 0.009128037840127945, + 0.032905690371990204, + -0.05179690569639206, + -0.049834560602903366, + -0.01960582099854946, + 0.05333012342453003, + 0.11485666036605835, + -0.030901802703738213, + -0.06559930741786957, + 0.0015260017244145274, + 0.13206715881824493, + 0.001284346915781498, + -0.040283627808094025, + -0.02418849617242813, + 0.07780521363019943, + -0.02173226699233055, + -0.03776601701974869, + -0.002274435246363282, + 0.016325214877724648, + 0.08201535791158676, + -0.023139333352446556, + -0.10597565025091171, + 0.003683581715449691, + 0.06729646772146225, + 0.019235407933592796, + -0.019685788080096245, + 0.029575318098068237, + -0.07989984005689621, + -0.0069211735390126705, + -0.027362091466784477, + 0.06694519519805908, + -0.05793053284287453, + 0.03947629779577255, + -0.02570067159831524, + -0.08081734925508499, + 0.009269903413951397, + 0.012435411103069782, + -0.060740575194358826, + -0.04028496891260147, + -0.0026365742087364197, + 0.028475705534219742, + -0.032909370958805084, + 0.026425834745168686, + 0.036376070231199265, + 0.025430921465158463, + 0.015816183760762215, + 0.017982743680477142, + -0.002967297565191984, + 0.06688197702169418, + 0.028317980468273163, + -0.024023329839110374, + 0.030868645757436752, + -0.03436600789427757, + -0.07911435514688492, + -0.07661739736795425, + 0.09468937665224075, + 0.0017655087867751718, + -0.02955787256360054, + -0.09606018662452698, + -0.038489196449518204, + -0.044559296220541, + -0.05503689497709274, + 0.010239341296255589, + 0.024291062727570534, + -0.07789838314056396, + 0.022309275344014168, + 0.0302687119692564, + -0.07086818665266037, + -0.07957792282104492, + -0.0007150719175115228, + -0.09605660289525986, + -0.07510121911764145, + 0.06804005801677704, + 0.04166640341281891, + -1.9091363545468086e-33, + 0.005744817666709423, + -0.032307617366313934, + 0.04084010049700737, + 0.053276464343070984, + 0.08384720981121063, + -0.0066473474726080894, + -0.04683855175971985, + -0.0038514945190399885, + -0.08709374815225601, + 0.00895764771848917, + 0.03596382960677147, + 0.02254602685570717, + -0.033255092799663544, + 0.05801643803715706, + 0.04885579273104668, + -0.04284895956516266, + 0.01793340966105461, + 0.02409704402089119, + -0.07907496392726898, + -0.0458635613322258, + 0.008360221982002258, + 0.015714900568127632, + 0.004308434668928385, + 0.029160818085074425, + -0.10627958923578262, + 0.030792683362960815, + -0.00866436306387186, + -0.0247857216745615, + -0.03440498560667038, + 0.04318336397409439, + 0.03712351620197296, + 0.0571211576461792, + -0.00913346279412508, + 0.07611918449401855, + -0.06771998852491379, + -0.06448647379875183, + -0.018911579623818398, + -0.02139674872159958, + 0.03491571918129921, + 0.02663525938987732, + -0.12229442596435547, + 0.030453989282250404, + -0.02588045410811901, + 0.028092870488762856, + 0.006511718034744263, + 0.01376113947480917, + -0.033731210976839066, + -0.07930152118206024, + 0.028740711510181427, + 0.049618929624557495, + -0.0837760716676712, + -0.009635690599679947, + 0.00023198220878839493, + 0.04090035334229469, + -0.0038148798048496246, + -0.015590271912515163, + -0.014802783727645874, + 0.07759368419647217, + 0.046650826930999756, + -0.003905033227056265, + 0.008352118544280529, + 0.0630156397819519, + 0.03794728219509125, + -0.02970830723643303, + 0.020414087921380997, + 0.06481696665287018, + -0.03544257581233978, + -0.046081360429525375, + 0.0961417555809021, + -0.007220396772027016, + 0.08021360635757446, + 0.04965125024318695, + 0.01296060997992754, + 0.0719442367553711, + 0.04498307406902313, + 0.011728285811841488, + 0.009015420451760292, + 0.03136495128273964, + -0.004014604724943638, + -0.029807213693857193, + -0.06633817404508591, + -0.030301544815301895, + -0.04871951416134834, + 0.11331743746995926, + -0.01151838805526495, + 0.07160116732120514, + 0.015630239620804787, + -0.058804046362638474, + 0.05345681682229042, + 0.04240303486585617, + -0.1298646330833435, + 0.03859705477952957, + 0.018923383206129074, + -0.0610368587076664, + -0.10601300746202469, + -4.031586890913579e-35, + 0.10515950620174408, + -0.00881206151098013, + -0.06370460242033005, + -0.02271212823688984, + -0.039931520819664, + -0.015014969743788242, + -0.003733305959030986, + -0.0283021479845047, + 0.05032123252749443, + 0.009580854326486588, + -0.024006258696317673, + -0.0046753897331655025, + 0.02481437660753727, + 0.0006331537151709199, + -0.06851863116025925, + 0.04325318709015846, + 0.0657501295208931, + 0.060835544019937515, + -0.08904054760932922, + 0.012184029445052147, + 0.010706518776714802, + -0.022192971780896187, + -0.06923165172338486, + 0.060658592730760574, + 0.054814428091049194, + 0.036546189337968826, + -0.006784570869058371, + -0.030666790902614594, + -0.12375935167074203, + 0.004448543302714825, + -0.05513181909918785, + -0.029778478667140007, + 0.04222214221954346, + 0.033435020595788956, + -0.026786070317029953, + 0.02085026726126671, + 0.0012185958912596107, + -0.03869212046265602, + 0.013799061998724937, + 0.053797170519828796, + 0.03195646405220032, + -0.024334030225872993, + 0.08929379284381866, + 0.05399297922849655, + 0.050976309925317764, + -0.06845217198133469, + -0.13390778005123138, + -0.0821957215666771, + -0.03456171602010727, + 0.06222289800643921, + 0.011851637624204159, + -0.026882229372859, + -0.07607019692659378, + 0.024967888370156288, + -0.05711572989821434, + -0.004631216172128916, + -0.06163264811038971, + 0.03022831305861473, + -0.09456614404916763, + -0.005165311973541975, + 0.016628429293632507, + 0.048459816724061966, + -0.01970263570547104, + 0.05241965129971504, + 0.0695965513586998, + -0.044248681515455246, + -0.02609001100063324, + -0.02072944864630699, + 0.04430016502737999, + -0.08430076390504837, + 0.10153832286596298, + -0.03426554426550865, + -0.0052088405936956406, + 0.050921276211738586, + 0.03879474475979805, + -0.0382760725915432, + 0.004591373261064291, + 0.04809721186757088, + -0.04866783320903778, + 0.03433007001876831, + 0.04634317383170128, + 0.04215402528643608, + -0.04304858297109604, + 0.03763999417424202, + 0.03885738551616669, + -0.011145828291773796, + 0.03790003061294556, + -0.044054675847291946, + -0.009130885824561119, + 0.0036043368745595217, + -0.02144218608736992, + 0.03977623209357262, + -0.05665659159421921, + 0.019212158396840096, + 0.05814691260457039, + -2.7619584841431788e-08, + 0.0024595411960035563, + -0.06592784076929092, + -0.010248232632875443, + 0.1284690797328949, + 0.06149739399552345, + -0.055874504148960114, + -0.04455490782856941, + -0.07079378515481949, + -0.057144585996866226, + 0.011289496906101704, + 0.025151895359158516, + 0.07946710288524628, + 0.006392241455614567, + 0.0041457912884652615, + 0.02909899689257145, + -0.021955246105790138, + 0.018154487013816833, + 0.09252724051475525, + -0.03492153063416481, + 0.05552776902914047, + -0.0271063894033432, + 0.009758607484400272, + 0.05770822614431381, + 0.004730940796434879, + 0.021301599219441414, + 0.01621849648654461, + -0.023584075272083282, + -0.016524212434887886, + 0.08064931631088257, + -0.018126722425222397, + -0.004904345143586397, + 0.025603385642170906, + -0.016631750389933586, + -0.008325518108904362, + -0.08314248919487, + 0.01304998155683279, + -0.04083351045846939, + -0.031100505962967873, + -0.09566652029752731, + 0.061287205666303635, + -0.0731370747089386, + -0.12657292187213898, + -0.06394463032484055, + -0.03276875615119934, + -0.056344885379076004, + 0.03424801304936409, + -0.0262211412191391, + -0.005366687197238207, + -0.02869253419339657, + 0.0069431704469025135, + -0.03201206400990486, + 0.006148891057819128, + 0.09992983937263489, + -0.014618267305195332, + 0.0018237903714179993, + -0.01806771010160446, + 0.004433640744537115, + 0.046536773443222046, + -0.0036048772744834423, + -0.004517433699220419, + 0.10912688821554184, + 0.06577587872743607, + 0.029592351987957954, + -0.03311349079012871 + ], + "coffee-bean-bold||*new*,tea,java,beverages,drinks,cafe,cup,mug,espresso,cappuccino,latte,places,locations,bars,restaurants,food,dining": [ + 0.01885218359529972, + -0.05595792457461357, + -0.0004091774462722242, + 0.05036024749279022, + 0.026088358834385872, + 0.03936568647623062, + 0.0655219554901123, + -0.02624145708978176, + -0.038669150322675705, + -0.007443225011229515, + 0.05666801333427429, + -0.07153110951185226, + 0.019882487133145332, + -0.09064660221338272, + 0.06819276511669159, + -0.13640381395816803, + 0.10125050693750381, + 0.023734930902719498, + 0.07468525320291519, + -0.0621521957218647, + 0.07104729861021042, + -0.032440558075904846, + 0.06206708401441574, + 0.05730339139699936, + 0.08457521349191666, + 0.1081923395395279, + 0.05450509488582611, + -0.0371280238032341, + -0.05169371888041496, + -0.09122400730848312, + -0.05990947037935257, + 0.01957060769200325, + 0.053491897881031036, + -0.015336638316512108, + -0.03185808286070824, + 0.03546915203332901, + 0.05025824159383774, + -0.03900744765996933, + 0.09256705641746521, + 0.031602345407009125, + -0.0819905549287796, + -0.05588369816541672, + 0.029706958681344986, + -0.022235728800296783, + 0.039911143481731415, + -0.05116533860564232, + -0.053047530353069305, + -0.02350423112511635, + 0.04204915836453438, + -0.012603575363755226, + -0.05434161424636841, + -0.08069206029176712, + -0.05356912314891815, + -0.0012309582671150565, + 0.030467407777905464, + -0.05017072334885597, + -0.039938826113939285, + -0.03306809440255165, + 0.07017987966537476, + 0.15828704833984375, + -0.03588126599788666, + -0.05357314273715019, + 0.007987973280251026, + 0.1280766874551773, + 0.007321979850530624, + -0.05695796757936478, + -0.03560694679617882, + 0.0556672178208828, + -0.004935902077704668, + -0.04340719059109688, + 0.000519795750733465, + 0.025505367666482925, + 0.07081013172864914, + -0.031210821121931076, + -0.10412413626909256, + 0.01802322454750538, + 0.05870513617992401, + 0.06281276792287827, + -0.0016298267291858792, + 0.027580244466662407, + -0.08028339594602585, + 0.0017869096482172608, + -0.01328340545296669, + 0.035587724298238754, + -0.08028504252433777, + 0.06067538633942604, + -0.03231710195541382, + -0.06254884600639343, + -0.0040354011580348015, + 0.03248157724738121, + -0.036837514489889145, + -0.014675830490887165, + 0.014497845433652401, + 0.06149575114250183, + -0.042119089514017105, + 0.020824437960982323, + 0.008838888257741928, + 0.01073494553565979, + -8.782806253293529e-05, + 0.02430731989443302, + -0.005811253562569618, + 0.049056123942136765, + 0.03842504322528839, + 0.01042161788791418, + 0.04479863867163658, + -0.024684136733412743, + -0.09613259136676788, + -0.0513802245259285, + 0.09115498512983322, + 0.010516908019781113, + 0.0035912031307816505, + -0.0875629112124443, + -0.07671482861042023, + -0.01836593821644783, + -0.04260171949863434, + -0.022064661607146263, + 0.028942734003067017, + -0.08995673805475235, + 0.015608707442879677, + 0.005374177359044552, + -0.04554032161831856, + -0.09926356375217438, + -0.02282644435763359, + -0.11132800579071045, + -0.09482112526893616, + 0.06343309581279755, + 0.02733243815600872, + -1.9005118994316194e-33, + 0.012533296830952168, + -0.024622580036520958, + 0.05339769646525383, + 0.053870804607868195, + 0.06744996458292007, + 0.018570220097899437, + -0.06942316889762878, + 0.002806750126183033, + -0.049794115126132965, + -0.0006728240405209363, + -0.008747613057494164, + 0.020396048203110695, + -0.06318454444408417, + 0.04108205810189247, + 0.019762417301535606, + -0.04335838556289673, + -0.03644771873950958, + 0.0303590577095747, + -0.049866363406181335, + -0.06362757831811905, + -0.012305136770009995, + 0.043847039341926575, + 0.0022269634064286947, + 0.01328187994658947, + -0.10299523174762726, + 0.025301264598965645, + -0.004879669286310673, + -0.09096784889698029, + -0.05025237053632736, + 0.0421212799847126, + 0.02833433263003826, + 0.05165025591850281, + 0.028971556574106216, + 0.09530020505189896, + -0.08642350137233734, + -0.08504588156938553, + -0.0034919155295938253, + -0.025528209283947945, + 0.019380753859877586, + 0.02614775113761425, + -0.11967606097459793, + 0.012882113456726074, + -0.040455032140016556, + 0.033532459288835526, + 0.004863642156124115, + 0.015696167945861816, + 0.014530929736793041, + -0.05355001240968704, + 0.026305941864848137, + 0.07950436323881149, + -0.07236891239881516, + -0.011184957809746265, + 0.013405253179371357, + 0.027865881100296974, + 0.008794434368610382, + 0.0022455828730016947, + -0.020048731938004494, + 0.09086967259645462, + 0.06229813024401665, + -0.007870841771364212, + -0.005807968322187662, + 0.0724528506398201, + 0.03797245770692825, + -0.011126778088510036, + 0.007456164341419935, + 0.06265440583229065, + -0.0459691658616066, + -0.061798345297575, + 0.09463520348072052, + -0.001568852923810482, + 0.058522362262010574, + 0.034434352070093155, + 0.005157963838428259, + 0.067195825278759, + 0.07616390287876129, + -0.031374260783195496, + 0.01635405421257019, + 0.06046120449900627, + -0.027567628771066666, + -0.0023206137120723724, + -0.02660401351749897, + -0.02871040441095829, + -0.03361665457487106, + 0.11512863636016846, + 0.011752543039619923, + 0.11022480577230453, + -0.00040963361971080303, + -0.05723026767373085, + 0.0490722618997097, + 0.036959197372198105, + -0.11821877211332321, + 0.0530708022415638, + -0.013309906236827374, + -0.029914112761616707, + -0.06314615160226822, + -3.6274543437826507e-34, + 0.12056875973939896, + -0.02533034235239029, + -0.042713701725006104, + -0.005891893059015274, + -0.03504067286849022, + -0.04443139582872391, + -0.006978518329560757, + -0.04164227098226547, + 0.03730998560786247, + -0.014251116663217545, + -0.02430475503206253, + 0.010547947138547897, + 0.05454990267753601, + -0.009629976004362106, + -0.059032198041677475, + 0.02557869628071785, + 0.03206407651305199, + 0.044608499854803085, + -0.0981992557644844, + 0.043295081704854965, + -0.008709345012903214, + -0.01092787180095911, + -0.06424633413553238, + 0.031635433435440063, + 0.0483708381652832, + 0.004398949909955263, + -0.0020659195724874735, + -0.006062318570911884, + -0.1121804341673851, + -0.026768431067466736, + -0.011747462674975395, + -0.06321568787097931, + 0.051411885768175125, + 0.024212725460529327, + -0.029720425605773926, + -0.009486653842031956, + -0.01518451701849699, + -0.03594137355685234, + 0.02809903211891651, + 0.06665689498186111, + -0.002286013215780258, + -0.03484208136796951, + 0.08440447598695755, + 0.011805030517280102, + 0.03633446991443634, + -0.0678153932094574, + -0.12031422555446625, + -0.07145565003156662, + -0.04058366268873215, + 0.0782562717795372, + 0.012994775548577309, + -0.03302130848169327, + -0.08736272901296616, + 0.03729330003261566, + -0.04852575436234474, + -0.009264490567147732, + -0.0633636862039566, + 0.04635979235172272, + -0.06594274193048477, + 0.006652577314525843, + 0.007114413660019636, + 0.02539883181452751, + 0.0005803211824968457, + 0.043117277324199677, + 0.08420965075492859, + -0.03206432983279228, + 0.0006535385618917644, + -0.02356373704969883, + 0.05339689180254936, + -0.07966271042823792, + 0.10426151752471924, + -0.04208439588546753, + -0.010525111109018326, + 0.019049199298024178, + 0.07728386670351028, + -0.0354488231241703, + -0.0038959537632763386, + 0.010452180169522762, + -0.04278735816478729, + 0.0023941725958138704, + 0.033025577664375305, + 0.04182315990328789, + -0.030958492308855057, + 0.02717536874115467, + 0.04238078370690346, + -0.010959533974528313, + 0.039904896169900894, + -0.019754404202103615, + 0.01176716573536396, + 0.04419025778770447, + -0.010277912952005863, + 0.0483722947537899, + -0.05597740039229393, + 0.034019891172647476, + 0.057641275227069855, + -2.9279709323759562e-08, + 0.002922685584053397, + -0.035907357931137085, + -0.019932782277464867, + 0.12463843822479248, + 0.07278013974428177, + -0.0481068380177021, + -0.0365714356303215, + -0.06870964169502258, + -0.04182170704007149, + 0.010121263563632965, + 0.026480892673134804, + 0.07620636373758316, + 0.01410322729498148, + 0.018402472138404846, + 0.009050448425114155, + -0.02306690439581871, + 0.0038590210024267435, + 0.10030178725719452, + -0.029523106291890144, + 0.045328423380851746, + -0.032230719923973083, + -0.01766056753695011, + 0.08279585838317871, + -0.004748500883579254, + 0.023522399365901947, + -0.0026030587032437325, + -0.002620126586407423, + -0.03825293481349945, + 0.12288466095924377, + -0.04694255068898201, + -0.0256938673555851, + 0.026015056297183037, + -0.0095823984593153, + -0.022925015538930893, + -0.080469511449337, + 0.014081666246056557, + -0.06983768939971924, + -0.015759672969579697, + -0.07105924189090729, + 0.022240586578845978, + -0.07888102531433105, + -0.10795719921588898, + -0.04417188838124275, + -0.03183639794588089, + -0.08284597843885422, + 0.03774648159742355, + -0.03163537010550499, + 0.024514317512512207, + -0.044037822633981705, + 0.014885609969496727, + -0.03498020023107529, + 0.03196266293525696, + 0.09054852277040482, + -0.03485659509897232, + 0.005438373889774084, + -0.013467581942677498, + 0.01814918965101242, + 0.03493577614426613, + 0.0110124247148633, + -0.006227385252714157, + 0.061609767377376556, + 0.037406954914331436, + 0.010663557797670364, + -0.030926590785384178 + ], + "coin-bold||coins,cents,change,money,currency,payment,paying,purchase,price,sell": [ + -0.020453782752156258, + 0.04170268401503563, + -0.05765722692012787, + 0.01159411296248436, + 0.004979901015758514, + -0.035098373889923096, + 0.09130734205245972, + 0.013914997689425945, + 0.0120923463255167, + 0.005008656531572342, + 0.035331010818481445, + -0.05900227651000023, + 0.016726918518543243, + -0.017008299008011818, + 0.022588953375816345, + 0.001230311463586986, + 0.0017052319599315524, + 0.04689578339457512, + 0.008415252901613712, + 0.013217248022556305, + 0.03005254454910755, + -0.007562061306089163, + -0.030534666031599045, + 0.039382968097925186, + 0.07115482538938522, + 0.06287002563476562, + 0.03453041613101959, + -0.009896685369312763, + 0.02330448478460312, + -0.07368955761194229, + -0.053032126277685165, + 0.02805713377892971, + 0.1278131753206253, + -0.029095111414790154, + 0.012377642095088959, + -0.033520299941301346, + 0.03440442681312561, + 0.02812175266444683, + -0.023747643455863, + 0.016419075429439545, + -0.019587218761444092, + -0.12469156086444855, + -0.05053041875362396, + -0.030714040622115135, + -0.020615894347429276, + 0.025463996455073357, + -0.027941705659031868, + 0.0753813311457634, + -0.018346736207604408, + 0.01618359610438347, + 0.07707933336496353, + -0.06423904746770859, + -0.12086839228868484, + 0.06612798571586609, + 0.013541871681809425, + 0.03100501373410225, + -0.012945564463734627, + -0.012819970026612282, + 0.06836023181676865, + -0.0558936670422554, + 0.024274049326777458, + 0.045873984694480896, + 0.005328935105353594, + 0.04706789180636406, + 0.050671353936195374, + 0.023630786687135696, + -0.01756831258535385, + -0.01748066209256649, + -0.07885078340768814, + 0.002532436279579997, + 0.043830059468746185, + -0.001862161559984088, + -0.01644686982035637, + -0.061515193432569504, + -0.06001884117722511, + -0.01898208260536194, + 0.1364961713552475, + -0.05967729911208153, + -0.04055046662688255, + -0.06352675706148148, + -0.0924300029873848, + -0.04248962923884392, + -0.02079256810247898, + -0.07547710090875626, + 0.05323498323559761, + 0.040923021733760834, + -0.027238724753260612, + -0.022107627242803574, + 0.011989433318376541, + -0.06505969166755676, + -0.08002723008394241, + -0.017691845074295998, + 0.004416581243276596, + -0.006956847850233316, + 0.023996569216251373, + 0.0534190833568573, + 0.05377925559878349, + 0.004864094778895378, + 0.05952633172273636, + 0.09168562293052673, + 0.11088387668132782, + 0.05143919959664345, + 0.01674637198448181, + -0.015266569331288338, + 0.002145926235243678, + -0.018703540787100792, + -0.04725653678178787, + 0.010051103308796883, + 0.014473514631390572, + 0.021308746188879013, + -0.07462216913700104, + -0.05112152174115181, + -0.0016460842452943325, + -0.10611920058727264, + -0.048991285264492035, + -0.001549979904666543, + -0.0959518700838089, + -0.026381254196166992, + 0.09689684212207794, + 0.06831669807434082, + 0.07391723245382309, + 0.031760022044181824, + -0.0932205468416214, + -0.05053505301475525, + -0.053341250866651535, + -0.016141364350914955, + 0.08830184489488602, + -4.237700848410518e-33, + -0.030059656128287315, + -0.008962416090071201, + -0.04070068895816803, + 0.02204313315451145, + -0.025410231202840805, + 0.05480418726801872, + -0.016176583245396614, + 0.002967898966744542, + -0.06009059399366379, + 0.03842349722981453, + 0.05936407297849655, + 0.057324960827827454, + 0.04116732254624367, + 0.12225036323070526, + -0.0039880950935184956, + -0.037658706307411194, + 0.02242046594619751, + -0.017632627859711647, + 0.03672060742974281, + 0.009210710413753986, + -0.03516135737299919, + 0.07759515941143036, + -0.015103477984666824, + 0.01883668266236782, + -0.017140481621026993, + 0.01867121271789074, + -0.007694934029132128, + -0.027672380208969116, + 0.029223693534731865, + 0.021563971415162086, + 0.054345253854990005, + -0.004681340418756008, + 0.03833586350083351, + 0.0027348839212208986, + -0.03180602192878723, + 0.0071128434501588345, + 0.012279479764401913, + -0.0550367645919323, + 0.06028854474425316, + -0.08484670519828796, + -0.10494718700647354, + -0.08324072510004044, + -0.08894678950309753, + -0.012980959378182888, + -0.03931316360831261, + 0.15289832651615143, + -0.023753980174660683, + -0.03705538809299469, + 0.006084829568862915, + -0.029467342421412468, + -0.04178017005324364, + -0.0045877303928136826, + -0.048667263239622116, + -0.013806392438709736, + 0.028956525027751923, + -0.0588025227189064, + 0.0035273730754852295, + 0.01793920062482357, + -0.0693306252360344, + -0.049086857587099075, + 0.04015081003308296, + 0.05011529475450516, + 0.02321578748524189, + -0.03771286457777023, + -0.0910060703754425, + 0.12710826098918915, + -0.07453671097755432, + -0.022101406008005142, + 0.029729045927524567, + 0.048362284898757935, + -0.08431985974311829, + 0.1213536188006401, + 0.01884828507900238, + 0.08893826603889465, + 0.05231529846787453, + -0.007266031578183174, + 0.0656047910451889, + -0.029281800612807274, + 0.009264769963920116, + 0.03897493705153465, + -0.12823155522346497, + 0.0074353390373289585, + -0.004855950362980366, + 0.0957934558391571, + 0.05182591825723648, + 0.023718127980828285, + -0.024541916325688362, + -0.08715296536684036, + 0.0014516980154439807, + -0.07198619097471237, + -0.014212710782885551, + -0.039542749524116516, + 0.008661755360662937, + -0.05904854089021683, + -0.08153480291366577, + 7.526287629664454e-34, + -0.07514430582523346, + 0.07854582369327545, + -0.07893422245979309, + 0.07885141670703888, + -0.04572982341051102, + 0.040925540030002594, + -0.023833023384213448, + 0.03573515638709068, + 0.05711833015084267, + -0.0018098747823387384, + -0.03707093000411987, + -0.04720362648367882, + -0.09314067661762238, + -0.054260920733213425, + -0.007294219918549061, + -0.021726123988628387, + -0.0029826282989233732, + 0.04661941155791283, + -0.009596825577318668, + 0.03407355025410652, + -0.09051661938428879, + 0.042802657932043076, + -0.060707006603479385, + 0.0305214524269104, + -0.005493935197591782, + 0.015894846990704536, + -0.00019063323270529509, + -0.049325406551361084, + 0.004334214609116316, + 0.056745193898677826, + -0.05045902356505394, + -0.006046675145626068, + 0.035630177706480026, + 0.04962209612131119, + -0.08312227576971054, + 0.01945497654378414, + 0.08254887163639069, + -0.03975345194339752, + 0.02584787644445896, + -0.0037366149481385946, + -0.020712492987513542, + -0.04751801863312721, + 0.06285379081964493, + 0.012767291627824306, + -0.02380898967385292, + -0.07768873125314713, + -0.0641525387763977, + 0.002522337017580867, + 0.009707626886665821, + 0.03977357968688011, + 0.05856463313102722, + 0.015814483165740967, + -0.027292490005493164, + -0.014872698113322258, + -0.10509203374385834, + 0.0605449415743351, + 0.003731672652065754, + -0.047547344118356705, + 0.022213656455278397, + 0.04867558553814888, + -0.05526227131485939, + 0.041766099631786346, + 0.048859771341085434, + 0.11292286962270737, + -0.03256803750991821, + -0.011422197334468365, + 0.0052074287086725235, + -0.03320116177201271, + 0.05394986271858215, + -0.05416166037321091, + 0.011352420784533024, + 0.028983741998672485, + 0.0032384491059929132, + -0.05262342467904091, + 0.014032437466084957, + -0.01587379351258278, + 0.011883670464158058, + -0.0075210267677903175, + 0.052936404943466187, + 0.03514418378472328, + -0.008987845852971077, + 0.016850315034389496, + 0.04841968044638634, + 0.0438670814037323, + -0.051209378987550735, + 0.009926891885697842, + -0.061708565801382065, + -0.00022496204474009573, + -0.03435865044593811, + -0.06803170591592789, + -0.08013655990362167, + 0.0671168863773346, + 0.012457256205379963, + 0.00656813383102417, + -0.0407879501581192, + -2.5746471621346245e-08, + -0.013905998319387436, + -0.057542406022548676, + 0.014208057895302773, + 0.002163152676075697, + 0.06601928174495697, + 0.026341676712036133, + 0.008005405776202679, + -0.07844453305006027, + -0.05353578180074692, + 0.02557535469532013, + -0.00442880904302001, + 0.037067513912916183, + -0.10620247572660446, + -0.12166792899370193, + -0.02881791815161705, + 0.02710901014506817, + -0.005773603450506926, + 0.006065967492759228, + -0.012292119674384594, + -0.050999999046325684, + 0.029523136094212532, + 0.08738607913255692, + 0.027309564873576164, + -0.021822117269039154, + 0.040959130972623825, + -0.0067462194710969925, + 0.02271077409386635, + 0.10839511454105377, + 0.05961253121495247, + 0.025132274255156517, + 0.02295565791428089, + 0.0782441571354866, + 0.005276594310998917, + -0.006594185251742601, + 0.006083150859922171, + -0.018746493384242058, + -0.02423820085823536, + 0.05099981278181076, + -0.04503396153450012, + 0.11306320875883102, + -0.011853347532451153, + -0.004655123688280582, + -0.1065579280257225, + -0.007821078412234783, + 0.03433723747730255, + -0.0021849838085472584, + -0.05159038305282593, + -0.030873630195856094, + -0.0323883518576622, + -0.20218023657798767, + -0.019524788483977318, + 0.054506126791238785, + 0.06251645088195801, + 0.05980642884969711, + -0.006139426492154598, + 0.003941708244383335, + -0.022546635940670967, + 0.04127396643161774, + 0.019344158470630646, + 0.011395536363124847, + 0.08509398996829987, + -0.06192304566502571, + 0.04601622000336647, + -0.029428400099277496 + ], + "coin-vertical-bold||cents,change,money,currency,payment,paying,purchase,price,sell": [ + -0.02896176278591156, + 0.04625079408288002, + -0.05671728029847145, + -0.010628643445670605, + -0.029136188328266144, + -0.021373314782977104, + 0.018490910530090332, + 0.060921620577573776, + 0.031719885766506195, + 0.003692250931635499, + 0.031738393008708954, + 0.006660257000476122, + 0.006083325948566198, + -0.017666086554527283, + 0.03269736468791962, + 0.03407948091626167, + 0.018784433603286743, + 0.06975749880075455, + -0.031276408582925797, + 0.008418608456850052, + 0.016168570145964622, + -0.027565158903598785, + -0.042992327362298965, + 0.03957400470972061, + 0.05223158001899719, + 0.056592103093862534, + 0.026799112558364868, + 0.01792581006884575, + 0.04859663173556328, + -0.08854740113019943, + -0.07608180493116379, + 0.05195391923189163, + 0.11336993426084518, + -0.04267233610153198, + -0.002653656527400017, + -0.051267221570014954, + 0.04768327623605728, + 0.01036020927131176, + -0.029714560136198997, + 0.008610476739704609, + 0.010422036983072758, + -0.14732420444488525, + -0.05314077064394951, + -0.0341787226498127, + -0.0369524247944355, + 0.019587500020861626, + 0.010482171550393105, + 0.05439048632979393, + -0.007713420316576958, + 0.03367343544960022, + 0.07539082318544388, + -0.07518099248409271, + -0.09561670571565628, + 0.061910197138786316, + 0.024878988042473793, + 0.06487251073122025, + 0.008305110968649387, + -0.0360998772084713, + 0.07941345870494843, + -0.05765484273433685, + 0.047438181936740875, + 0.06932250410318375, + -0.01173441018909216, + 0.05157247930765152, + 0.07215186953544617, + 0.02459551952779293, + -0.04652731493115425, + 0.019849538803100586, + -0.10309313237667084, + 0.02763178199529648, + 0.06635395437479019, + -0.02058357000350952, + -0.01684327982366085, + -0.07722396403551102, + -0.03351305425167084, + -0.03807413578033447, + 0.13393579423427582, + -0.0653269961476326, + -0.005728247109800577, + -0.0758134201169014, + -0.027983874082565308, + -0.025947697460651398, + -0.054197046905756, + -0.030738551169633865, + 0.03103610686957836, + 0.036994051188230515, + 0.009833034127950668, + -0.05001619830727577, + 0.0009903532918542624, + -0.081896111369133, + -0.03969782590866089, + -0.014972226694226265, + -0.010215803980827332, + 0.005414822604507208, + -0.0026838812045753, + 0.014445935375988483, + 0.02471478283405304, + -0.054262638092041016, + 0.04803343862295151, + 0.07714720815420151, + 0.11097868531942368, + 0.02771633304655552, + 0.04794798046350479, + -0.016115818172693253, + -0.01128190103918314, + -0.05345066636800766, + -0.03232025355100632, + 0.0340779572725296, + 0.02795024774968624, + 0.038770876824855804, + -0.08146047592163086, + -0.026505615562200546, + -0.0017506844596937299, + -0.07929284870624542, + -0.06133026257157326, + 0.007309664972126484, + -0.0920216292142868, + -0.048898845911026, + 0.10389520227909088, + 0.032811239361763, + 0.06557829678058624, + 0.04860488697886467, + -0.09720394760370255, + -0.04032222554087639, + -0.03359290584921837, + -0.005876597017049789, + 0.09142943471670151, + -4.8551130931326004e-33, + -0.030496470630168915, + -0.011111106723546982, + 0.0029992652125656605, + 0.005855860188603401, + 0.011269887909293175, + 0.059283457696437836, + -0.050674282014369965, + 0.009404448792338371, + -0.07219541072845459, + 0.09189361333847046, + 0.05519428104162216, + 0.06564760953187943, + 0.020834799855947495, + 0.15057720243930817, + -0.009425006806850433, + -0.07452217489480972, + 0.03127149119973183, + -0.02790011838078499, + 0.008783046156167984, + -0.015405246987938881, + -0.04216732084751129, + 0.031125390902161598, + -0.018132135272026062, + 0.02043365314602852, + -0.035931628197431564, + 0.02444162592291832, + -0.009601850062608719, + -0.020194852724671364, + -0.01694161631166935, + 0.02956564724445343, + 0.02968071587383747, + -0.005611596629023552, + 0.03543078154325485, + -0.02429261989891529, + -0.03174610808491707, + 0.03285645693540573, + 0.012845891527831554, + -0.058467235416173935, + 0.05577325075864792, + -0.05593004822731018, + -0.1290108859539032, + -0.06823784857988358, + -0.06418530642986298, + -0.016868896782398224, + -0.0165973249822855, + 0.1443457454442978, + 0.008696723729372025, + -0.061650753021240234, + -0.021633310243487358, + -0.02111229859292507, + -0.05268141254782677, + 0.03761012852191925, + -0.036925308406353, + -0.020293520763516426, + 0.05076829344034195, + -0.06432895362377167, + -0.02115391381084919, + 0.03964020311832428, + -0.09114343672990799, + -0.061398696154356, + 0.03080924227833748, + 0.03133518621325493, + 0.0055742086842656136, + -0.024202510714530945, + -0.08262726664543152, + 0.12631958723068237, + -0.09427647292613983, + -0.0025560271460562944, + 0.034317746758461, + 0.04434045031666756, + -0.052351340651512146, + 0.08820120990276337, + 0.02423752099275589, + 0.06925756484270096, + 0.016829364001750946, + -0.005843332037329674, + 0.03812040388584137, + -0.019236238673329353, + 0.06406981498003006, + 0.03716962784528732, + -0.09518785029649734, + -0.008540811948478222, + 0.0218124371021986, + 0.03814350441098213, + 0.05931343883275986, + 0.006601925007998943, + -0.008802144788205624, + -0.07698377221822739, + 0.00239774864166975, + -0.05016864836215973, + -0.05689404159784317, + -0.033972881734371185, + 0.028233874589204788, + -0.04683603718876839, + -0.05516069754958153, + 1.5451608755330034e-33, + -0.09083337336778641, + 0.09272605180740356, + -0.07703325897455215, + 0.07123245298862457, + -0.050658900290727615, + 0.04031157121062279, + -0.02167152799665928, + 0.045492056757211685, + 0.017243357375264168, + 0.027735086157917976, + -0.015164010226726532, + -0.02242046222090721, + -0.0946350172162056, + -0.04035788029432297, + 0.027009429410099983, + -0.006366993300616741, + -0.03501062095165253, + 0.031789012253284454, + -0.0023160537239164114, + 0.021169036626815796, + -0.05909404903650284, + 0.041122160851955414, + -0.05981234833598137, + 0.07558035105466843, + 0.01234126091003418, + -0.005048101302236319, + 0.01826992630958557, + -0.05206994712352753, + -0.0025854643899947405, + 0.05599045753479004, + -0.04780858755111694, + -0.027543624863028526, + 0.035840313881635666, + 0.038644298911094666, + -0.07454336434602737, + 0.0030226553790271282, + 0.08402182906866074, + -0.048805005848407745, + 0.009451551362872124, + -0.03397868201136589, + -0.04165392741560936, + -0.05027351528406143, + 0.07594607770442963, + -0.028646280989050865, + -0.020263943821191788, + -0.048902880400419235, + -0.08495878428220749, + 0.008367173373699188, + 0.04970399662852287, + 0.03183775767683983, + 0.014855406247079372, + 0.019260980188846588, + 0.016404882073402405, + 0.024227891117334366, + -0.10187488794326782, + 0.05564643070101738, + 0.0003844201855827123, + -0.027853645384311676, + 0.018971603363752365, + 0.021911149844527245, + -0.04838903993368149, + 0.012184123508632183, + 0.02348044142127037, + 0.07013905048370361, + -0.000432274944614619, + 0.011555318720638752, + 0.020824944600462914, + -0.03514188900589943, + 0.029647283256053925, + -0.039281852543354034, + -0.02869819663465023, + 0.057235561311244965, + 0.017309237271547318, + -0.07688981294631958, + -0.013266987167298794, + -0.019130239263176918, + 0.048000581562519073, + 0.007685340009629726, + 0.04576490446925163, + 0.023625684902071953, + 0.000435436173574999, + 0.008524828590452671, + 0.03885504603385925, + 0.050777796655893326, + -0.09715869277715683, + 0.00035193219082430005, + -0.06115717440843582, + 0.040539924055337906, + 0.0013434430584311485, + -0.0907505676150322, + -0.1240253672003746, + 0.06083644554018974, + -0.04238623008131981, + -0.014527445659041405, + -0.028721660375595093, + -2.519162123348906e-08, + -0.019482772797346115, + -0.0648733600974083, + 0.033133506774902344, + 0.018705274909734726, + 0.04811655730009079, + 0.02916482649743557, + 0.017639193683862686, + -0.04526768624782562, + -0.020386261865496635, + 0.03675255924463272, + -0.0010783307952806354, + 0.04961884021759033, + -0.11251629143953323, + -0.10031851381063461, + -0.033477701246738434, + 0.001002924400381744, + -0.017504019662737846, + 0.03093615546822548, + -0.005286754108965397, + -0.045429449528455734, + 0.057865820825099945, + 0.1132342517375946, + 0.048691585659980774, + 0.0044836546294391155, + 0.0413309670984745, + -0.0032053538598120213, + 0.006175145506858826, + 0.11168604344129562, + 0.06612207740545273, + 0.00676025589928031, + 0.02408377081155777, + 0.10116486251354218, + 0.01629100926220417, + -0.016398347914218903, + -0.004965534433722496, + -0.008911367505788803, + -0.011842888779938221, + 0.08284182101488113, + -0.04712865129113197, + 0.0533563457429409, + -0.02262244001030922, + -0.02596062794327736, + -0.05406999960541725, + -0.006702317390590906, + 0.0627833753824234, + -0.010840189643204212, + -0.0408625453710556, + 0.017810266464948654, + -0.010068109259009361, + -0.20601651072502136, + -0.048061031848192215, + 0.05601666495203972, + 0.08621738851070404, + 0.07210100442171097, + 0.004529841709882021, + -0.023364363238215446, + -0.03731386363506317, + 0.05063082277774811, + -0.029891956597566605, + 0.018252894282341003, + 0.09849914908409119, + -0.0698377788066864, + 5.589362990576774e-05, + -0.04240194335579872 + ], + "coins-bold||cents,change,money,currency,payment,paying,purchase,price,sell": [ + -0.019082389771938324, + 0.03931042179465294, + -0.0729672759771347, + 0.006715396419167519, + -0.010371215641498566, + -0.03228186443448067, + 0.09575680643320084, + 0.011146274395287037, + 0.021984726190567017, + 0.00817471370100975, + 0.03552056476473808, + -0.07186757773160934, + 0.03427724167704582, + -0.007029309403151274, + 0.016884688287973404, + -0.0008116221288219094, + -0.004488351289182901, + 0.04941604658961296, + -0.0015839285915717483, + 0.020973723381757736, + 0.02712167240679264, + -0.027731718495488167, + -0.04623536765575409, + 0.04256023094058037, + 0.06891472637653351, + 0.08070524036884308, + 0.03921687602996826, + -0.015662528574466705, + 0.011112449690699577, + -0.06407301872968674, + -0.058276474475860596, + 0.029121456667780876, + 0.12967875599861145, + -0.03834131360054016, + 0.015760747715830803, + -0.04028233885765076, + 0.026841653510928154, + 0.036325953900814056, + -0.01928075961768627, + 0.010141570121049881, + -0.02650872804224491, + -0.13273212313652039, + -0.02732645347714424, + -0.02643209509551525, + -0.009591592475771904, + 0.028997961431741714, + -0.0245197881013155, + 0.0942927673459053, + -0.012026251293718815, + 0.013928170315921307, + 0.0908343642950058, + -0.04936599358916283, + -0.12409502267837524, + 0.05564812198281288, + 0.020211314782500267, + 0.022230025380849838, + -0.021941546350717545, + -0.00905715860426426, + 0.05947846919298172, + -0.05035180598497391, + 0.020493846386671066, + 0.04236795753240585, + 0.0071509359404444695, + 0.04046843200922012, + 0.03718011826276779, + 0.01310164574533701, + -0.015483287163078785, + -0.025118375197052956, + -0.07052161544561386, + 0.01715194061398506, + 0.05501362681388855, + 0.007105777505785227, + -0.008698328398168087, + -0.07823681831359863, + -0.047478657215833664, + -0.02754916250705719, + 0.13551972806453705, + -0.06010879948735237, + -0.048214249312877655, + -0.06530755013227463, + -0.09746721386909485, + -0.04164331033825874, + -0.0072800954803824425, + -0.057807162404060364, + 0.04694545641541481, + 0.028188150376081467, + -0.017964279279112816, + -0.02262979745864868, + 0.010607459582388401, + -0.07084707170724869, + -0.06941785663366318, + -0.005996519699692726, + -0.0006912071839906275, + -0.016350574791431427, + 0.02467784844338894, + 0.0580066442489624, + 0.03838905692100525, + 0.011364534497261047, + 0.05313669517636299, + 0.07852354645729065, + 0.11675148457288742, + 0.03613927960395813, + 0.012958107516169548, + -0.009220062755048275, + 0.026954472064971924, + -0.010816028341650963, + -0.04293885454535484, + 0.012425757944583893, + 0.013793829828500748, + 0.02787129580974579, + -0.07031972706317902, + -0.05998542532324791, + -0.007324791047722101, + -0.0921260192990303, + -0.04582870006561279, + -0.00733807822689414, + -0.08486953377723694, + -0.02468450553715229, + 0.07531657814979553, + 0.064478300511837, + 0.07466311752796173, + 0.03270162642002106, + -0.09639613330364227, + -0.05404163524508476, + -0.07096756249666214, + -0.0032061622478067875, + 0.08014028519392014, + -4.5561411660223215e-33, + -0.04452301189303398, + -0.005450937431305647, + -0.0474124401807785, + 0.01648063026368618, + -0.04370838403701782, + 0.04996989294886589, + -0.0023490122985094786, + -0.014877380803227425, + -0.03655296936631203, + 0.037293050438165665, + 0.054208412766456604, + 0.06636660546064377, + 0.049803633242845535, + 0.11551493406295776, + 0.01755753718316555, + -0.04467139393091202, + 0.023397598415613174, + -0.032596711069345474, + 0.045739587396383286, + 0.015638064593076706, + -0.04321029409766197, + 0.07469885051250458, + -0.007894542999565601, + 0.025472747161984444, + -0.004071529023349285, + 0.009338663890957832, + -0.01484617218375206, + -0.039540208876132965, + 0.03949885815382004, + 0.018298638984560966, + 0.04902426898479462, + 0.0074172914028167725, + 0.0477493517100811, + -0.0026602253783494234, + -0.045561783015728, + 0.02284746989607811, + 0.024683617055416107, + -0.048132456839084625, + 0.06622010469436646, + -0.08873281627893448, + -0.09445761144161224, + -0.09058841317892075, + -0.09353857487440109, + -0.015417587012052536, + -0.044847797602415085, + 0.1626218855381012, + -0.010475711897015572, + -0.03115231730043888, + 0.0132765993475914, + -0.02584148570895195, + -0.03862704709172249, + -0.004503934644162655, + -0.06563405692577362, + -0.018415091559290886, + 0.026077495887875557, + -0.0660407543182373, + 0.0008628437062725425, + 0.010896584950387478, + -0.07964035868644714, + -0.052375249564647675, + 0.03796558454632759, + 0.044012926518917084, + 0.028646104037761688, + -0.047728996723890305, + -0.10122975707054138, + 0.10771304368972778, + -0.07005905359983444, + -0.01465087104588747, + 0.011666832491755486, + 0.050288211554288864, + -0.08795301616191864, + 0.12732946872711182, + 0.021931013092398643, + 0.07810597866773605, + 0.05244753882288933, + -0.006470619700849056, + 0.07355888187885284, + -0.015580326318740845, + 0.003917838912457228, + 0.05720815807580948, + -0.11220528185367584, + 0.01669398322701454, + -0.010722596198320389, + 0.08646699041128159, + 0.04383547604084015, + 0.031061319634318352, + -0.01325259916484356, + -0.08090471476316452, + 0.010543118230998516, + -0.07621461898088455, + -0.009860568679869175, + -0.04608006402850151, + 0.02716165967285633, + -0.06885972619056702, + -0.09435738623142242, + 9.975108226188656e-34, + -0.07635918259620667, + 0.07508371770381927, + -0.07082013040781021, + 0.08755042403936386, + -0.05045633018016815, + 0.05064054951071739, + -0.018270190805196762, + 0.038932494819164276, + 0.05995041877031326, + -0.005788978189229965, + -0.05415334925055504, + -0.02487088553607464, + -0.10528519749641418, + -0.06714101135730743, + -0.018977656960487366, + -0.026961779221892357, + -0.004394098650664091, + 0.05813506245613098, + -0.004909309092909098, + 0.015999512746930122, + -0.0942726880311966, + 0.04825492575764656, + -0.061694640666246414, + 0.03462367132306099, + -0.006024572066962719, + 0.0199172031134367, + -0.006433545611798763, + -0.07173407822847366, + 0.014361852779984474, + 0.05128026008605957, + -0.04612148553133011, + -0.02409209869801998, + 0.03404180705547333, + 0.05809737369418144, + -0.07450616359710693, + 0.010340046137571335, + 0.0868678167462349, + -0.04787909984588623, + 0.019275639206171036, + 0.0011443026596680284, + -0.019667483866214752, + -0.048463765531778336, + 0.06786292046308517, + 0.027508579194545746, + -0.023078517988324165, + -0.07532811164855957, + -0.04219881817698479, + -0.0034344529267400503, + 0.0013877948513254523, + 0.029846664518117905, + 0.060824066400527954, + -0.004497790243476629, + -0.03476612642407417, + 0.005933403503149748, + -0.11051801592111588, + 0.06103264540433884, + 0.006100136786699295, + -0.03633784502744675, + 0.02696939930319786, + 0.04102368280291557, + -0.06520409137010574, + 0.047564711421728134, + 0.047153718769550323, + 0.1089826226234436, + -0.053564757108688354, + -0.016610650345683098, + 0.00647818623110652, + -0.02249271795153618, + 0.06305214017629623, + -0.04772505536675453, + 0.01053548976778984, + 0.024092338979244232, + 0.014606773853302002, + -0.05566418170928955, + 0.011414443142712116, + -0.014016701839864254, + 0.002671175869181752, + -0.00422350550070405, + 0.05877938121557236, + 0.02568673901259899, + -0.006222516298294067, + 0.02805097959935665, + 0.046944133937358856, + 0.04787306860089302, + -0.05737936124205589, + 0.0083506740629673, + -0.04076249897480011, + -0.005739744286984205, + -0.03351086750626564, + -0.06400179862976074, + -0.0632554218173027, + 0.0718555897474289, + 0.03272516280412674, + 0.005345420446246862, + -0.0273421760648489, + -2.5074053056073353e-08, + -0.013253375887870789, + -0.04780366271734238, + 0.006875164341181517, + 0.00252751586958766, + 0.06245006248354912, + 0.023457130417227745, + 0.01838091015815735, + -0.06312871724367142, + -0.04842498153448105, + 0.04146033897995949, + 0.007164128590375185, + 0.039694759994745255, + -0.10544556379318237, + -0.13019490242004395, + -0.026696616783738136, + 0.03776148706674576, + 0.001065615564584732, + 0.012328180484473705, + -0.004314834717661142, + -0.0405770018696785, + 0.026341238990426064, + 0.08953803032636642, + 0.013595876283943653, + -0.015650147572159767, + 0.02270904742181301, + -0.005659274756908417, + 0.02380255237221718, + 0.09849026054143906, + 0.04573782905936241, + 0.03523169457912445, + 0.023939009755849838, + 0.055378083139657974, + 0.010593865998089314, + -0.015162370167672634, + 0.0038515920750796795, + -0.028927108272910118, + -0.005492145195603371, + 0.03838769346475601, + -0.026586398482322693, + 0.12157725542783737, + -0.023986268788576126, + -0.014910044148564339, + -0.1077805906534195, + -0.01903137005865574, + 0.017588933929800987, + -0.017676398158073425, + -0.05478684604167938, + -0.03413677215576172, + -0.03614204004406929, + -0.18631082773208618, + -0.025272222235798836, + 0.06601275503635406, + 0.060755521059036255, + 0.06651253253221512, + -0.01181031297892332, + 0.0029807400424033403, + -0.028790105134248734, + 0.03748678043484688, + 0.028131335973739624, + 0.004969475790858269, + 0.07255931198596954, + -0.05137280002236366, + 0.04219958186149597, + -0.03108174167573452 + ], + "columns-bold||2,shapes,polygons,box,stack,list,table,cards": [ + 0.0809820368885994, + -0.022467348724603653, + -0.11623138189315796, + 0.082279734313488, + 0.02764478325843811, + -0.021803943440318108, + -0.017964757978916168, + -0.020309612154960632, + -0.002701484365388751, + 0.0013191786129027605, + -0.006600138731300831, + -0.004390235058963299, + 0.005575532093644142, + -0.051706574857234955, + -0.03225903958082199, + 0.00923826266080141, + 0.007637395057827234, + 0.04474927857518196, + 0.01316784042865038, + 0.052771732211112976, + 0.012498139403760433, + -0.024500379338860512, + 0.016311652958393097, + 0.020403435453772545, + 0.006344538182020187, + 0.09711945801973343, + 0.01589428447186947, + 0.021258607506752014, + -0.00568158645182848, + -0.11190902441740036, + -0.03661622852087021, + 0.03209714964032173, + 0.09824478626251221, + 0.05225327983498573, + 0.0003561090852599591, + -0.031184744089841843, + -0.023328594863414764, + 0.051924217492341995, + 0.013211945071816444, + 0.03722719848155975, + -0.028791246935725212, + -0.13370458781719208, + 0.03669146075844765, + 0.040050167590379715, + -0.04169711098074913, + -0.022692419588565826, + -0.09080886840820312, + -0.04216120019555092, + 0.009091496467590332, + -0.05589178577065468, + -0.023725437000393867, + -0.026493195444345474, + -0.0912327691912651, + -0.03232257440686226, + 0.00957565475255251, + -0.009619468823075294, + -0.0913873091340065, + -0.04899962246417999, + 0.02381805144250393, + -0.011142191477119923, + -0.008222079835832119, + 0.03685632348060608, + 0.06612727791070938, + 0.0659455731511116, + 0.008250350132584572, + 0.053580060601234436, + -0.036340516060590744, + 0.03481660038232803, + -0.0539853572845459, + 0.02271701581776142, + 0.05275291949510574, + 0.08699224144220352, + -0.022778255864977837, + -0.10059560090303421, + -0.03600822016596794, + 0.03522913530468941, + 0.05069615691900253, + -0.031793005764484406, + -0.009477158077061176, + -0.012376868166029453, + -0.10920502245426178, + 0.023677203804254532, + -0.005147784482687712, + 0.03962847590446472, + -0.011934366077184677, + 0.04028771445155144, + -0.03834248334169388, + -0.01667236164212227, + -0.10077343136072159, + -0.05084468796849251, + -0.018821153789758682, + -0.0024420919362455606, + 0.06744210422039032, + 0.08545960485935211, + -0.09856323152780533, + 0.024159526452422142, + 0.07993745058774948, + -0.03813560679554939, + -0.06249702349305153, + 0.036058902740478516, + 0.05008856952190399, + 0.0143219493329525, + 0.041867658495903015, + 0.016057725995779037, + -0.026224125176668167, + -0.036807987838983536, + -0.001047909026965499, + -0.05776941403746605, + 0.04212012141942978, + -0.009763367474079132, + -0.01286420039832592, + -0.06879784911870956, + -0.09425580501556396, + -0.10080564022064209, + -0.07384639978408813, + -0.01731135882437229, + -0.06521117687225342, + -0.052100569009780884, + 0.06626621633768082, + 0.03822588920593262, + 0.057390667498111725, + -0.05720170587301254, + -0.034403346478939056, + -0.07945481687784195, + -0.03220096230506897, + 0.027823757380247116, + 0.009608392603695393, + -2.6702764772149247e-33, + -0.014716098085045815, + 0.005701796617358923, + 0.0011408990249037743, + 0.0996372401714325, + 0.04878014326095581, + -0.02215871959924698, + -0.011095473542809486, + -0.10280832648277283, + -0.03375423327088356, + 0.09566973149776459, + 0.0430123545229435, + 0.09212134778499603, + -0.020914386957883835, + 0.09129180014133453, + 0.09021858870983124, + -0.034891944378614426, + 0.007104738149791956, + -0.001694287988357246, + -0.09770640730857849, + -0.038807474076747894, + -0.06956895440816879, + 0.01849553920328617, + -0.013459408655762672, + 0.006371752358973026, + 0.012068436481058598, + 0.004868198651820421, + -0.021461354568600655, + 0.0030384708661586046, + -0.038053806871175766, + 0.03363565355539322, + 0.031485188752412796, + -0.0014308032114058733, + -0.006220109295099974, + 0.02218799851834774, + -0.011495529673993587, + 0.009313685819506645, + -0.012735191732645035, + -0.005377317778766155, + 0.07371024787425995, + 0.03996836766600609, + -0.03747445344924927, + -0.04241807013750076, + 0.028054406866431236, + -0.045862603932619095, + 0.05524338036775589, + 0.08088121563196182, + 0.03298972547054291, + -0.020353397354483604, + -0.03912854939699173, + -0.006993674207478762, + 0.02736392617225647, + 0.02244558185338974, + 0.027272501960396767, + 0.03554939851164818, + 0.06642104685306549, + -0.08851881325244904, + -0.02114078961312771, + 0.11101356148719788, + 0.06319509446620941, + 0.061063654720783234, + -0.02182716317474842, + -0.0034427507780492306, + -0.01962510123848915, + -0.018596062436699867, + -0.10565459728240967, + 0.07306884229183197, + -0.10386994481086731, + -0.005225951783359051, + -0.004141701851040125, + 0.016027145087718964, + 0.08865382522344589, + 0.06652166694402695, + 0.00763932429254055, + 0.020429076626896858, + -0.040592074394226074, + 0.05253978818655014, + 0.02794993668794632, + -0.06667181104421616, + -0.0007421887130476534, + -0.06498894095420837, + -0.043459802865982056, + 0.02797163650393486, + -0.10841266810894012, + 0.01497538574039936, + -0.0644935891032219, + 0.0170896053314209, + 0.05589769780635834, + 0.000957156007643789, + -0.02995528094470501, + 0.022699905559420586, + -0.12049631029367447, + -0.0024679398629814386, + 0.061643652617931366, + -0.05977635830640793, + -0.07132376730442047, + -9.09187115833956e-34, + -0.01213332824409008, + 0.043405793607234955, + -0.06171727553009987, + -0.06087628751993179, + 0.03030693344771862, + 0.001459658844396472, + 0.019517073407769203, + 0.017790934070944786, + 0.023372596129775047, + 0.005780642386525869, + 0.023084837943315506, + 0.021150784566998482, + -0.0728050097823143, + -0.05484270676970482, + -0.01779225654900074, + 0.017537662759423256, + -0.018523046746850014, + 0.07136968523263931, + -0.06817538291215897, + -0.05635043978691101, + -0.022801905870437622, + 0.04850044101476669, + -0.05497013404965401, + 0.11106900870800018, + -0.02433164417743683, + -0.004317167215049267, + -0.03062005713582039, + -0.10190317034721375, + -0.01636093109846115, + 0.010386379435658455, + -0.02309844084084034, + -0.11060420423746109, + 0.06424965709447861, + 0.13214276731014252, + -0.0715000256896019, + 0.029072271659970284, + 0.036257028579711914, + -0.06057355925440788, + 0.040740687400102615, + -0.01740291528403759, + -0.08019986748695374, + -0.002282083034515381, + 0.04619280993938446, + 0.06711231917142868, + -0.026658959686756134, + -0.01600075513124466, + 0.00951404869556427, + -0.042511504143476486, + 0.039711371064186096, + 0.008443975821137428, + -0.059737976640462875, + -0.00030268621048890054, + 0.018206579610705376, + 0.046652402728796005, + -0.0370354987680912, + 0.01527482084929943, + -0.020962931215763092, + 0.025338144972920418, + -0.0054915533401072025, + 0.01376710832118988, + -0.04912826791405678, + 0.06858999282121658, + -0.000628130801487714, + 0.04973212257027626, + 0.08915852010250092, + -0.056640904396772385, + -0.014974435791373253, + -0.09352295100688934, + -0.031955718994140625, + 0.024340134114027023, + 0.0012060500448569655, + 0.03207084536552429, + -0.060511816293001175, + 0.036953940987586975, + 0.038824331015348434, + -0.04887908324599266, + -0.007266348693519831, + 0.0373728908598423, + -0.015396643429994583, + 0.024994662031531334, + -0.03640860691666603, + -0.05389222502708435, + 0.06918702274560928, + 0.0135694220662117, + -0.05609433352947235, + -0.013510433956980705, + 0.051398612558841705, + -0.020689599215984344, + 0.008831684477627277, + -0.010186267085373402, + -0.009608659893274307, + -0.01742151379585266, + 0.06309151649475098, + 0.028648462146520615, + -0.0321955606341362, + -2.2869636850941788e-08, + 0.00574340159073472, + -0.11226461827754974, + -0.020996373146772385, + -0.04813619330525398, + 0.00928526557981968, + -0.05189913511276245, + -0.001998014748096466, + -0.03586972504854202, + -0.049529530107975006, + 0.018240975216031075, + 0.055993761867284775, + 0.07986027747392654, + -0.10412461310625076, + -0.047442477196455, + 0.07290709018707275, + 0.017570137977600098, + 0.008233552798628807, + 0.06356100738048553, + 0.004671822767704725, + -0.04976021498441696, + 0.0444553978741169, + 0.016063470393419266, + 0.04438438639044762, + 0.025022175163030624, + -0.018484560772776604, + 0.004771514795720577, + -0.05666212737560272, + -0.03409348428249359, + 0.10880507528781891, + 0.10332107543945312, + 0.06433364748954773, + 0.0070020658895373344, + 0.08563975989818573, + -0.004213810432702303, + 0.02668721042573452, + -0.0289169792085886, + -0.016530754044651985, + -0.0012643536319956183, + -0.061170559376478195, + 0.10164669901132584, + -0.025722840800881386, + -0.07077169418334961, + -0.010903057642281055, + -0.04125387594103813, + 0.02085416205227375, + 0.038472093641757965, + -0.03067677654325962, + 0.014526096172630787, + -0.04584619402885437, + -0.15385425090789795, + -0.0369272455573082, + -0.009876411408185959, + 0.0033738433849066496, + 0.07320418208837509, + -0.021250324323773384, + -0.024046091362833977, + 0.018956080079078674, + 0.13821880519390106, + 0.1019303947687149, + -0.04127080738544464, + 0.09696731716394424, + 0.12588481605052948, + 0.019152473658323288, + -0.004229963291436434 + ], + "columns-plus-left-bold||*new*,2,shapes,polygons,box,stack,list,table,cards,prepend,insert": [ + 0.05363577604293823, + -0.019039327278733253, + -0.11285320669412613, + 0.11322999745607376, + 0.02821793034672737, + 0.009946977719664574, + -0.03353877365589142, + -0.04138020798563957, + -0.03552969917654991, + 0.0637243315577507, + 0.024922873824834824, + 0.004326106049120426, + -0.0013580145314335823, + -0.08788510411977768, + -0.011430257931351662, + 0.001360056921839714, + -0.0007942983647808433, + 0.0026703733019530773, + 0.012376135215163231, + 0.03314218297600746, + -0.051067642867565155, + -0.05607622116804123, + -0.009469836950302124, + 0.04076313599944115, + 0.03993672505021095, + 0.0820891335606575, + -0.008810903877019882, + 0.009009616449475288, + 0.020903121680021286, + -0.08411570638418198, + -0.07087782770395279, + 0.018778739497065544, + 0.0992216169834137, + 0.045697785913944244, + 0.007125765550881624, + -0.00321853905916214, + -0.032939497381448746, + 0.07162711024284363, + 0.04529160261154175, + 0.006353987380862236, + -0.01285435538738966, + -0.17367351055145264, + 0.03542769327759743, + 0.06747722625732422, + -0.05950559675693512, + -0.05832403898239136, + -0.12128869444131851, + -0.05347425490617752, + 0.05480228736996651, + -0.01621330715715885, + -0.043480176478624344, + -0.03106546588242054, + -0.08272506296634674, + 0.002468619728460908, + -0.00872641708701849, + 0.000495532585773617, + -0.09756645560264587, + -0.07425754517316818, + 0.00813031941652298, + -0.037192028015851974, + 0.03029165044426918, + 0.04668146371841431, + 0.08082166314125061, + 0.06635360419750214, + -0.01752280816435814, + -0.0026970598846673965, + -0.06393793970346451, + 0.07356845587491989, + -0.029314495623111725, + 0.05849548801779747, + 0.04658851400017738, + 0.08420070260763168, + -0.04278083145618439, + -0.06234031170606613, + -0.003926569130271673, + 0.03878217563033104, + 0.046343687921762466, + 0.028780154883861542, + -0.017123647034168243, + 0.02484019100666046, + -0.050480037927627563, + 0.05676361918449402, + -0.003922010771930218, + 0.027525242418050766, + 0.01228396687656641, + 0.046202149242162704, + -0.02675088495016098, + -0.013668468222022057, + -0.10255157202482224, + -0.06806423515081406, + -0.027048591524362564, + 0.020255429670214653, + 0.025615407153964043, + 0.07160830497741699, + -0.11697489768266678, + 0.004673425108194351, + 0.04222312942147255, + -0.024607660248875618, + -0.05791003629565239, + 0.042135246098041534, + 0.04260844364762306, + 0.016856838017702103, + 0.02986191399395466, + 0.01860908232629299, + -0.0062411087565124035, + -0.06643249839544296, + -0.0332367941737175, + -0.038463640958070755, + -5.818291538162157e-05, + 0.03563561290502548, + 0.01722192019224167, + -0.04888895899057388, + -0.05093583092093468, + -0.11761263757944107, + -0.0832141786813736, + 0.03447533771395683, + -0.10674186795949936, + -0.04698675870895386, + 0.0648568868637085, + 0.011615698225796223, + 0.08937174081802368, + -0.045907195657491684, + -0.07292617112398148, + -0.07185747474431992, + -0.06875625997781754, + 0.00016796027193777263, + -0.014051034115254879, + -2.5422454896142e-33, + -0.0023208095226436853, + -0.013871046714484692, + 0.02357199229300022, + 0.12616419792175293, + 0.04413152113556862, + 0.015566868707537651, + -0.05076760798692703, + -0.06588026136159897, + -0.053227659314870834, + 0.07096149027347565, + 0.06099976226687431, + 0.03933444619178772, + -0.06359603255987167, + 0.11569274216890335, + 0.02286999113857746, + -0.04755748435854912, + 0.009025880135595798, + -0.014908057637512684, + -0.08272654563188553, + -0.024647539481520653, + -0.07955318689346313, + 0.01146999653428793, + -0.02584448829293251, + 0.028882017359137535, + 0.043486885726451874, + 0.04762977734208107, + -0.0022883163765072823, + -0.04493863880634308, + -0.059218015521764755, + 0.02741420641541481, + 0.03507452830672264, + -0.026448611170053482, + -0.012109040282666683, + 0.019061392173171043, + -0.013414256274700165, + 0.037407178431749344, + -0.00952027179300785, + -0.011254207231104374, + 0.08502072095870972, + 0.04663095250725746, + -0.05344633385539055, + -0.019482865929603577, + -0.0043023754842579365, + -0.06325571984052658, + 0.04848576337099075, + 0.06515678018331528, + 0.048507872968912125, + -0.030532732605934143, + -0.021338488906621933, + -0.0472610741853714, + -0.0094348369166255, + 0.02211732231080532, + -0.0037272931076586246, + 0.05432065948843956, + -0.015301313251256943, + -0.060387153178453445, + -0.021476564928889275, + 0.08833922445774078, + 0.0743013545870781, + 0.02696504257619381, + -0.02263474464416504, + -5.580218385148328e-07, + -0.039202913641929626, + 0.054200466722249985, + -0.09914614260196686, + 0.024793801829218864, + -0.060056786984205246, + -0.017808815464377403, + 0.020850419998168945, + -0.001435655984096229, + 0.04107970744371414, + 0.026876136660575867, + -0.036331430077552795, + 0.0566001757979393, + -0.04486742243170738, + 0.008587430231273174, + 0.010391518473625183, + -0.07167225331068039, + -0.008333949372172356, + -0.06416155397891998, + -0.02084922604262829, + 0.02008162811398506, + -0.08965842425823212, + -0.015560325235128403, + -0.024826444685459137, + -0.00872798077762127, + 0.023943277075886726, + 0.010195521637797356, + 0.005854598246514797, + -0.01186622679233551, + -0.08512025326490402, + -0.01934775896370411, + 0.04195336997509003, + -0.05573299154639244, + -0.05735323205590248, + -1.4712029954120884e-33, + 0.017694316804409027, + -0.007846541702747345, + -0.08251770585775375, + -0.0542229600250721, + 0.0002213495026808232, + 0.01930924504995346, + 0.042470768094062805, + 0.0110314404591918, + 0.023803358897566795, + 0.0035424737725406885, + 0.04155297577381134, + 0.03155561536550522, + -0.06515949964523315, + -0.0355570949614048, + -0.02599584311246872, + 0.01886870339512825, + -0.04178519919514656, + 0.10201522707939148, + -0.053176600486040115, + -0.03853263333439827, + 0.0029417076148092747, + 0.005894865840673447, + -0.011602522805333138, + 0.11746057868003845, + 0.0012610270641744137, + -0.010646319016814232, + -0.009622666984796524, + -0.02284928597509861, + -0.03725602105259895, + 0.006219271570444107, + -0.017004037275910378, + -0.06861390173435211, + 0.05931321904063225, + 0.14857539534568787, + -0.061153654009103775, + 0.0011296083685010672, + 0.0424654558300972, + -0.01193332765251398, + 0.05812525004148483, + 0.016207760199904442, + -0.07773986458778381, + -0.02810518629848957, + 0.05409504100680351, + 0.08851390331983566, + -0.024561969563364983, + -0.016137463971972466, + -0.031896043568849564, + -0.04216683655977249, + 0.033817216753959656, + -0.001318005146458745, + -0.054328400641679764, + 0.014003420248627663, + -0.008184815756976604, + 0.005665197502821684, + -0.019655216485261917, + 0.00555984815582633, + -0.039385758340358734, + 0.026288757100701332, + 0.011871175840497017, + -0.028000257909297943, + -0.06545227020978928, + 0.0775974839925766, + 0.02361578866839409, + -0.0005234465934336185, + 0.0924227312207222, + -0.0442311055958271, + -0.033834002912044525, + -0.08526474982500076, + -0.06764056533575058, + 0.009540850296616554, + -0.0012116868747398257, + 0.07460514456033707, + -0.1358863264322281, + 0.011421299539506435, + 0.00838241446763277, + -0.05516140162944794, + -0.02033621072769165, + 0.02365850657224655, + -0.0015256747137755156, + 0.012993719428777695, + -0.05007525533437729, + -0.06095937639474869, + 0.07092791795730591, + 0.014459437690675259, + -0.06336235255002975, + -0.01252113375812769, + 0.042813487350940704, + 0.0024157296866178513, + -0.03340292349457741, + -0.007525083143264055, + -0.041352279484272, + 0.020592421293258667, + 0.03805040195584297, + 0.021729333326220512, + -0.04611749202013016, + -2.913494512313264e-08, + 0.0087819779291749, + -0.12298856675624847, + -0.04853750392794609, + -0.034407343715429306, + 0.030074555426836014, + -0.06210725009441376, + -0.022160567343235016, + -0.02596583031117916, + -0.04432111606001854, + -0.017010068520903587, + 0.032003872096538544, + 0.10687930881977081, + -0.050396740436553955, + -0.050057437270879745, + 0.05701354146003723, + 0.033881936222314835, + -0.01252312958240509, + 0.035022471100091934, + 0.010261409915983677, + -0.06811239570379257, + 0.08719509840011597, + 0.05700679495930672, + 0.012822804041206837, + 0.02006571739912033, + 0.018034473061561584, + 0.005905902478843927, + -0.057580962777137756, + -0.02898646704852581, + 0.08920596539974213, + 0.09427711367607117, + 0.07888825982809067, + -0.007693379186093807, + 0.08155372738838196, + 0.0109920809045434, + 0.04787031561136246, + -0.004274152684956789, + 0.02053959108889103, + 0.00578723382204771, + -0.052764467895030975, + 0.03827265650033951, + -0.02232459932565689, + -0.03434932604432106, + -0.01410493440926075, + -0.05680512264370918, + -0.028951255604624748, + -0.005017868243157864, + -0.0282430537045002, + 0.03431706130504608, + -0.041006289422512054, + -0.16403725743293762, + 0.004734914284199476, + 0.0016655962681397796, + 0.057638298720121384, + 0.03130573034286499, + -0.013801207765936852, + 0.019647415727376938, + 0.05166070908308029, + 0.13677258789539337, + 0.1384241282939911, + -0.01127135381102562, + 0.06423884630203247, + 0.11766745150089264, + 0.06380189955234528, + 0.012631846591830254 + ], + "columns-plus-right-bold||*new*,2,shapes,polygons,box,stack,list,table,cards,append,insert": [ + 0.05368806794285774, + -0.022580988705158234, + -0.1264781951904297, + 0.11413617432117462, + 0.0192134790122509, + 0.01904459111392498, + -0.029253875836730003, + -0.034613896161317825, + -0.03528935834765434, + 0.0623638890683651, + 0.041604891419410706, + 0.006179641932249069, + -0.0058123390190303326, + -0.09219631552696228, + -0.010593941435217857, + -0.002223503775894642, + -0.010159742087125778, + 0.004730201326310635, + 0.017357125878334045, + 0.022930094972252846, + -0.02622053772211075, + -0.055427055805921555, + 0.005455405917018652, + 0.0401202067732811, + 0.03475874662399292, + 0.08709459751844406, + -0.022364061325788498, + 0.010936257429420948, + 0.028455613180994987, + -0.08840739727020264, + -0.07234524935483932, + 0.016335606575012207, + 0.08570504188537598, + 0.041144631803035736, + 0.01889825239777565, + -0.0007481295615434647, + -0.03176345303654671, + 0.07659710943698883, + 0.03618272393941879, + -0.0024295176845043898, + -0.010001004673540592, + -0.18061748147010803, + 0.03996743634343147, + 0.05588727444410324, + -0.06553039699792862, + -0.06751418858766556, + -0.10029106587171555, + -0.0601792149245739, + 0.05934622511267662, + -0.0077165765687823296, + -0.036375369876623154, + -0.022479359060525894, + -0.08385923504829407, + -0.0024470000062137842, + 0.003922176081687212, + 0.015422685071825981, + -0.09628724306821823, + -0.06362904608249664, + 0.007125230506062508, + -0.026586418971419334, + 0.03768694028258324, + 0.048687390983104706, + 0.0908195897936821, + 0.061017513275146484, + -0.018275922164320946, + -0.0005074776127003133, + -0.0698348730802536, + 0.0795828253030777, + -0.05100293830037117, + 0.0630643367767334, + 0.052149780094623566, + 0.08278125524520874, + -0.04827449470758438, + -0.07247386127710342, + -0.002851102501153946, + 0.03865606337785721, + 0.035572946071624756, + 0.013388070277869701, + -0.01903393492102623, + 0.0332261361181736, + -0.05269463732838631, + 0.04005623608827591, + -0.01568136364221573, + 0.05201878771185875, + 0.010754842311143875, + 0.04498426988720894, + -0.03079495020210743, + -0.016582578420639038, + -0.09411613643169403, + -0.0668405145406723, + -0.013439638540148735, + 0.007648116908967495, + 0.024577084928750992, + 0.07886244356632233, + -0.1094607338309288, + -0.005749609787017107, + 0.049611128866672516, + -0.028124740347266197, + -0.0771365612745285, + 0.028080955147743225, + 0.03504520282149315, + 0.007998194545507431, + 0.02378370799124241, + 0.0116907162591815, + 0.002486614976078272, + -0.06671690195798874, + -0.0344502329826355, + -0.044159185141325, + 0.010310080833733082, + 0.028136691078543663, + 0.0070857335813343525, + -0.04517719894647598, + -0.06864193081855774, + -0.11093255877494812, + -0.09088558703660965, + 0.0361391119658947, + -0.11335863918066025, + -0.06412912905216217, + 0.04666551202535629, + 0.025045067071914673, + 0.09288890659809113, + -0.033014118671417236, + -0.07762375473976135, + -0.06424897164106369, + -0.06220657005906105, + -0.004769487306475639, + -0.01278756931424141, + -2.842790558773665e-33, + -0.019628236070275307, + -0.0066589792259037495, + 0.03127104789018631, + 0.11108215898275375, + 0.058570366352796555, + 0.01296059601008892, + -0.05860528349876404, + -0.06773438304662704, + -0.05931858718395233, + 0.07588398456573486, + 0.04673878848552704, + 0.03699538856744766, + -0.05623745173215866, + 0.12090287357568741, + 0.03643986955285072, + -0.04189230129122734, + -0.004747853148728609, + -0.004468980710953474, + -0.08309177309274673, + -0.022253969684243202, + -0.07706301659345627, + 0.013386107049882412, + -0.019681133329868317, + 0.02716715820133686, + 0.04658423364162445, + 0.04985888674855232, + 0.003974890802055597, + -0.03164933994412422, + -0.04677487164735794, + 0.027292979881167412, + 0.02424362115561962, + -0.026436420157551765, + -0.01701103150844574, + 0.02873138152062893, + -0.0019526348914951086, + 0.024834681302309036, + 0.008793800137937069, + -0.006237597204744816, + 0.08219622820615768, + 0.04418856278061867, + -0.04148675128817558, + -0.019550099968910217, + -0.002883180044591427, + -0.05134357884526253, + 0.052472662180662155, + 0.06725098192691803, + 0.05431021377444267, + -0.026827989146113396, + -0.023326842114329338, + -0.04220934212207794, + -0.012919149361550808, + 0.034265387803316116, + -0.002687533851712942, + 0.0662851631641388, + -0.012314294464886189, + -0.07363846153020859, + -0.037472113966941833, + 0.10296974331140518, + 0.06738834828138351, + 0.015027296729385853, + -0.02333737723529339, + -0.00422957306727767, + -0.0335426926612854, + 0.05190667510032654, + -0.09513986110687256, + 0.041976675391197205, + -0.04521287977695465, + -0.009625754319131374, + 0.01780468411743641, + 0.0001894703891593963, + 0.049768902361392975, + 0.0351436622440815, + -0.03296526148915291, + 0.04948601871728897, + -0.05714808776974678, + 0.0037094259168952703, + 0.005842569749802351, + -0.07059361040592194, + -0.005607226863503456, + -0.06809576600790024, + -0.025792857632040977, + 0.01408007089048624, + -0.10539492964744568, + -0.02284162864089012, + -0.035662248730659485, + 0.0008379146456718445, + 0.01943500153720379, + 0.005492674186825752, + 0.01203793752938509, + -0.007824364118278027, + -0.07636957615613937, + -0.019502772018313408, + 0.04547495394945145, + -0.05679001286625862, + -0.060548074543476105, + -1.1529715117185478e-33, + 0.02487579733133316, + -0.009005841799080372, + -0.06927590072154999, + -0.05786965414881706, + 0.0069864774122834206, + 0.014840824529528618, + 0.03426689654588699, + 0.017342617735266685, + 0.02093232236802578, + 0.010855676606297493, + 0.030628765001893044, + 0.03951378911733627, + -0.06778854131698608, + -0.025835739448666573, + -0.02653486840426922, + 0.01704075187444687, + -0.05261215940117836, + 0.11518676578998566, + -0.04139069467782974, + -0.048918187618255615, + -0.0008175221155397594, + 0.0021959138102829456, + -0.0054852282628417015, + 0.1161094382405281, + 0.0066822892986238, + -0.0035933544859290123, + -0.010032202117145061, + -0.032891158014535904, + -0.032813820987939835, + -0.007893756031990051, + -0.015275818295776844, + -0.07318968325853348, + 0.03491942211985588, + 0.14655789732933044, + -0.0515739731490612, + 0.008924096822738647, + 0.048146311193704605, + -0.013272997923195362, + 0.06423678249120712, + 0.013934160582721233, + -0.07608352601528168, + -0.027048926800489426, + 0.05370357260107994, + 0.09574708342552185, + -0.012215734459459782, + -0.009566930122673512, + -0.029053371399641037, + -0.032745037227869034, + 0.029778221622109413, + -0.014034884981811047, + -0.053104568272829056, + 0.009289226494729519, + -0.014025666750967503, + 0.007250633556395769, + -0.014541680924594402, + 0.025277700275182724, + -0.024815017357468605, + 0.03162820264697075, + -0.008577031083405018, + -0.028800584375858307, + -0.07127802819013596, + 0.07250511646270752, + 0.015107194893062115, + -0.008274206891655922, + 0.09352867305278778, + -0.03955080360174179, + -0.025224724784493446, + -0.10452403128147125, + -0.058589257299900055, + 0.017385073006153107, + 0.0027895451057702303, + 0.056389641016721725, + -0.12974083423614502, + 0.01834064908325672, + 0.0009198510088026524, + -0.06127898022532463, + -0.014410501345992088, + 0.023380478844046593, + -0.006261804141104221, + -0.0003032830427400768, + -0.04340445250272751, + -0.06091199070215225, + 0.07775110751390457, + 0.017834670841693878, + -0.06681549549102783, + -0.04000197350978851, + 0.04854045435786247, + -0.003121235640719533, + -0.026839016005396843, + -0.012185742147266865, + -0.03236920386552811, + 0.023627884685993195, + 0.028089256957173347, + 0.03274734690785408, + -0.05319599062204361, + -2.919545138979629e-08, + 0.008788525126874447, + -0.11999359726905823, + -0.06497012078762054, + -0.04994959011673927, + 0.034352634102106094, + -0.06893613189458847, + -0.029655391350388527, + -0.022330336272716522, + -0.042300209403038025, + -0.021292705088853836, + 0.02556261233985424, + 0.09988323599100113, + -0.06445518881082535, + -0.04288928955793381, + 0.06843908876180649, + 0.025247013196349144, + -0.010173993185162544, + 0.03371179476380348, + 0.012144215404987335, + -0.06937047839164734, + 0.07349734753370285, + 0.05634447559714317, + 0.013668853789567947, + 0.020301641896367073, + -0.0054690418764948845, + -0.0018619014881551266, + -0.050091471523046494, + -0.03747529909014702, + 0.09329351782798767, + 0.09703168272972107, + 0.08048385381698608, + 0.004594728816300631, + 0.07581500709056854, + 0.01761404052376747, + 0.052238527685403824, + -0.0026221037842333317, + 0.02447470836341381, + 0.009853667579591274, + -0.029569478705525398, + 0.02753296121954918, + -0.02071094699203968, + -0.023400431498885155, + -0.011247682385146618, + -0.05691876634955406, + -0.014201429672539234, + -0.009952390566468239, + -0.018445180729031563, + 0.02636299468576908, + -0.03394972160458565, + -0.15737099945545197, + 0.0018483932362869382, + 0.003922840114682913, + 0.05597967654466629, + 0.025195082649588585, + -0.014649463817477226, + 0.028923923149704933, + 0.04714876040816307, + 0.12528225779533386, + 0.14729610085487366, + -0.0121952248737216, + 0.07204566150903702, + 0.11210691928863525, + 0.05721511319279671, + 0.008739958517253399 + ], + "command-bold||apple,keyboard,shortcut,modifier,looped square,bowen knot,saint john's arms": [ + 0.03242388367652893, + -0.023829197511076927, + -0.01348197367042303, + 0.055788785219192505, + -1.419303134753136e-05, + -0.009442269802093506, + 0.05524538457393646, + -0.01645427942276001, + -0.022228900343179703, + -0.006446120794862509, + 0.06193152815103531, + 0.0053955870680511, + 0.06253904849290848, + -0.07837388664484024, + 0.0356573611497879, + 0.05794581398367882, + -0.07205409556627274, + 0.06714458018541336, + -0.007995333522558212, + 0.054007068276405334, + 0.0130210155621171, + 0.07330520451068878, + 0.026682691648602486, + 0.03616756945848465, + 0.010708258487284184, + 0.025318637490272522, + 0.02217518351972103, + 0.004053981974720955, + 0.01290869526565075, + -0.12305167317390442, + -0.0029816939495503902, + -0.06648522615432739, + 0.115383580327034, + 0.03493089601397514, + 0.05383043363690376, + 0.06867323815822601, + 0.04391692206263542, + -0.028224218636751175, + -0.061393607407808304, + 0.04835766926407814, + -0.008065953850746155, + -0.05462455749511719, + 0.04404158517718315, + 0.017919884994626045, + -0.045535482466220856, + -0.01554624643176794, + -0.10574667155742645, + -0.02588808536529541, + -0.028353480622172356, + 0.04119468480348587, + -0.021582167595624924, + -0.11166494339704514, + -0.08609441667795181, + -0.047242216765880585, + 0.01951506733894348, + 0.05873473733663559, + -0.07602659612894058, + -0.020580528303980827, + 0.1027267798781395, + -0.02503015473484993, + 0.04545234888792038, + 0.02506920136511326, + -0.039391517639160156, + 0.04179859161376953, + 0.016952048987150192, + -0.016124609857797623, + 0.03329211845993996, + -0.006690037902444601, + 0.0024722199887037277, + -0.0026940808165818453, + 0.024914927780628204, + -0.05454234778881073, + -0.015400764532387257, + -0.03315345197916031, + -0.0839860588312149, + -0.0290090162307024, + 0.05758964270353317, + 0.026599200442433357, + -0.07787304371595383, + -0.008213401772081852, + -0.09782017767429352, + -0.012668989598751068, + -0.03268259018659592, + 0.08735915273427963, + 0.08583094924688339, + 0.13460344076156616, + -0.07093100994825363, + -0.0882120355963707, + -0.028794772922992706, + 0.08364611119031906, + -0.005017593037337065, + -0.08114225417375565, + -0.017105836421251297, + 0.018506288528442383, + -0.05626172572374344, + 0.06129014864563942, + 0.08694621920585632, + -0.010421761311590672, + -0.10025712102651596, + 0.08129359036684036, + 0.0072726840153336525, + 0.02053537592291832, + 0.028037354350090027, + -0.0025436447467654943, + 0.02081122063100338, + -0.014723524451255798, + -0.026364978402853012, + -0.10256911814212799, + -0.02207009866833687, + -0.022699840366840363, + 0.0604950487613678, + -0.12982848286628723, + -0.0263248011469841, + -0.1036890372633934, + -0.023197783157229424, + -0.029313869774341583, + -0.021910032257437706, + 0.011254503391683102, + 0.1281396448612213, + 0.0837256982922554, + 0.057316336780786514, + -0.002003832720220089, + -0.05170529708266258, + -0.01294353324919939, + -0.05063029006123543, + 0.023839622735977173, + 0.00550231384113431, + -4.896070346886622e-34, + 0.08781630545854568, + 0.040863506495952606, + -0.014348647557199001, + 0.0723852664232254, + 0.03618921339511871, + 0.009958620183169842, + -0.03390979766845703, + -0.045490484684705734, + -0.06579281389713287, + 0.006511976942420006, + 0.07716281712055206, + 0.018311161547899246, + -0.026466744020581245, + 0.05087124556303024, + 0.029800929129123688, + -0.09089810401201248, + 0.06329819560050964, + -0.007861374877393246, + -0.05478627607226372, + -0.024092352017760277, + -0.0452980101108551, + 0.057834528386592865, + -0.057473886758089066, + 0.003616275731474161, + -0.010533548891544342, + 0.041684262454509735, + 0.07261760532855988, + 0.05754580348730087, + 0.050284817814826965, + 0.03965085744857788, + 0.01577078364789486, + 0.024420833215117455, + 0.009191431105136871, + 0.014616386964917183, + -0.0033654021099209785, + 0.008166664279997349, + -0.032904110848903656, + -0.037264734506607056, + -0.0038009730633348227, + 0.07194116711616516, + -0.06122481822967529, + -0.042863599956035614, + -0.04491455480456352, + 0.003991803154349327, + 0.03865278139710426, + -0.016361234709620476, + 0.009436473250389099, + 0.008869824931025505, + 0.005222524981945753, + 0.03864040598273277, + -0.008148396387696266, + 0.026706961914896965, + 0.034846242517232895, + 0.0030216688755899668, + 0.00947583094239235, + -0.038499459624290466, + -0.07512938976287842, + 0.08721338212490082, + 0.014293286949396133, + 0.066360242664814, + 0.005601625423878431, + 0.08464120328426361, + 0.09125348180532455, + 0.04882539436221123, + -0.028811674565076828, + 0.07345790416002274, + -0.02129136212170124, + 0.004321326967328787, + 0.04107389971613884, + 0.015090296044945717, + -0.06373867392539978, + 0.05872016027569771, + 0.07249446958303452, + 0.011168238706886768, + 0.0046285842545330524, + -0.01240901555866003, + -0.032648999243974686, + -0.025814613327383995, + 0.05132144317030907, + -0.09547754377126694, + -0.10036173462867737, + 0.03763362392783165, + -0.06890028715133667, + 0.09212679415941238, + 0.05554167553782463, + -0.06259147822856903, + 0.008567007258534431, + -0.0450870580971241, + -0.06009254232048988, + 0.014132628217339516, + -0.07529521733522415, + 0.010539359413087368, + 0.00939222052693367, + -0.06814859062433243, + -0.11075008660554886, + -9.259613283846939e-34, + 0.10379428416490555, + 0.019169386476278305, + -0.015455573797225952, + 0.03540297597646713, + -0.06624385714530945, + -0.0008446759893558919, + -0.029938042163848877, + -0.04222073778510094, + -0.08047806471586227, + -0.04712764546275139, + 0.03419869393110275, + 0.0440194271504879, + -0.050392601639032364, + -0.07558499276638031, + 0.03552816063165665, + 0.013658052310347557, + -0.008329706266522408, + 0.04913806915283203, + -0.060779545456171036, + 0.00862029753625393, + -0.015145464800298214, + -0.03444928675889969, + 0.010645486414432526, + 0.09389366209506989, + -0.03263406082987785, + -0.027046428993344307, + 0.0397275947034359, + -0.005376250017434359, + -0.026274263858795166, + -0.009755325503647327, + 0.03281906619668007, + 0.0105091892182827, + -0.025730330497026443, + 0.041107360273599625, + -0.1010437160730362, + 0.026575442403554916, + 0.03252974525094032, + 0.025673529133200645, + 0.07789728790521622, + 0.020345913246273994, + 0.0825679823756218, + -0.029876435175538063, + 0.06540420651435852, + 0.04950391501188278, + -0.024879856035113335, + 0.02502315305173397, + -0.04803850129246712, + -0.021045411005616188, + -0.0068848468363285065, + 0.058035992085933685, + 0.020710891112685204, + -0.047411784529685974, + -0.05946347862482071, + 0.021262874826788902, + -0.1019880622625351, + -0.04902448505163193, + -0.04603874683380127, + 0.016126813367009163, + -0.046009525656700134, + 0.0926436334848404, + -0.005636914633214474, + -0.0015607058303430676, + 0.012451239861547947, + 0.046301137655973434, + 0.04265202209353447, + -0.06441230326890945, + 0.032746825367212296, + -0.0398351326584816, + -0.06684213876724243, + 0.024844061583280563, + 0.06691817194223404, + -0.002721177414059639, + 0.03086763061583042, + -0.0006128522218205035, + 0.08110767602920532, + -0.03435082361102104, + 0.04950771480798721, + -0.06819508969783783, + -0.013726250268518925, + 0.028583072125911713, + 0.04570750519633293, + 0.027656255289912224, + -0.0257674939930439, + 0.04395033419132233, + -0.04418133944272995, + 0.053674958646297455, + 0.007323500234633684, + 0.08769077062606812, + -0.04138009622693062, + -0.014519569464027882, + -0.052439190447330475, + 0.031373895704746246, + 0.03190682455897331, + 0.044578950852155685, + -0.06074921786785126, + -2.6820819343242874e-08, + -0.016600895673036575, + -0.04375972971320152, + -0.021073997020721436, + -0.06760422140359879, + 0.016210613772273064, + 0.045051150023937225, + -0.07064486294984818, + -0.09880170226097107, + -0.015308603644371033, + -0.031056610867381096, + 0.05021801218390465, + 0.027989119291305542, + -0.12689924240112305, + -0.03352189064025879, + 0.03103931061923504, + -0.022958841174840927, + -0.030410801991820335, + 0.04542042687535286, + -0.03341701999306679, + -0.0636330246925354, + -0.006410234607756138, + 0.04763748124241829, + 0.04784804582595825, + 0.011213989928364754, + 0.0026297864969819784, + -0.01947779767215252, + -0.058019448071718216, + 0.08894942700862885, + 0.03948192670941353, + 0.06684620678424835, + 0.0969817042350769, + 0.031598955392837524, + -0.012676333077251911, + 0.015489915385842323, + -0.07280983775854111, + -0.045248813927173615, + -0.0463801734149456, + -0.0018690309952944517, + 0.024424877017736435, + 0.113284170627594, + 0.001236257143318653, + -0.03899918496608734, + -0.05668031796813011, + -0.030346447601914406, + -0.09555018693208694, + 0.02767467312514782, + 0.06324414163827896, + -0.01720082014799118, + -0.13011324405670166, + -0.06309597939252853, + -0.022294914349913597, + -0.013707788661122322, + 0.04010669142007828, + 0.07767990231513977, + -0.08272107690572739, + 0.02162540704011917, + 0.07246974855661392, + 0.04152381420135498, + -0.038970351219177246, + 0.01804281212389469, + 0.04664284735918045, + -0.05502874404191971, + -0.04373832419514656, + 0.02864924445748329 + ], + "compass-bold||navigation,directions,maps,safari,apple": [ + 0.021807007491588593, + -0.06373167037963867, + -0.048265572637319565, + 0.004235314670950174, + 0.06313630938529968, + -0.05288655683398247, + 0.008910346776247025, + -0.0614861324429512, + -0.05264957621693611, + -0.02276468463242054, + 0.04036944732069969, + 0.06383468955755234, + 0.028795208781957626, + -0.045384977012872696, + 0.03230883553624153, + 0.05302273482084274, + -0.033648356795310974, + 0.03312620148062706, + 0.042543500661849976, + -0.0029923622496426105, + -0.003977943677455187, + 0.049440983682870865, + 0.042022865265607834, + 0.06385702639818192, + -0.02119138464331627, + 0.04980439320206642, + 0.08365964144468307, + -0.007498463615775108, + -0.007453075610101223, + -0.08517922461032867, + -0.02192617580294609, + 0.01064343098551035, + 0.06445633620023727, + 0.017931891605257988, + -0.05972883850336075, + 0.005653047002851963, + 0.025867370888590813, + -0.014362474903464317, + -0.05060502514243126, + 0.0002501427079550922, + -0.008763110265135765, + -0.01147366501390934, + 0.02483418397605419, + 0.09897062927484512, + -0.03109082579612732, + 0.020519757643342018, + 0.00885830633342266, + 0.007911879569292068, + 0.06464222073554993, + 0.03367877006530762, + -0.08008706569671631, + -0.06433972716331482, + -0.16799570620059967, + -0.045177869498729706, + 0.03842379152774811, + 0.09462712705135345, + -0.05993306264281273, + -0.047074541449546814, + 0.10283525288105011, + 0.028372082859277725, + 0.06297620385885239, + -0.004255373030900955, + 0.046062495559453964, + 0.05392906069755554, + 0.06674198806285858, + 0.018672246485948563, + -0.060709379613399506, + 0.001338265952654183, + -0.041214801371097565, + -0.022708099335432053, + 0.08395016193389893, + -0.05819924175739288, + 0.016014698892831802, + -0.04774851351976395, + 0.017799952998757362, + 0.03446481004357338, + 0.04778995364904404, + -0.03376653417944908, + -0.09307137131690979, + -0.09122811257839203, + -0.13968518376350403, + -0.003879042575135827, + -0.04651772230863571, + 0.05973833054304123, + 0.09323012083768845, + 0.023262344300746918, + -0.0758693665266037, + -0.06499909609556198, + 0.03661370649933815, + -0.01858515664935112, + -0.008611100725829601, + -0.07611704617738724, + -0.06126916781067848, + 0.00498376227915287, + -0.030843352898955345, + 0.02175295352935791, + 0.035511188209056854, + -0.03757738694548607, + -0.08743197470903397, + 0.04088388383388519, + 0.0827169194817543, + 0.02542368695139885, + 0.028538020327687263, + -0.0024533935356885195, + -0.03246881812810898, + -0.00831819698214531, + 0.053318869322538376, + -0.013554489240050316, + 0.02943001687526703, + 0.07863328605890274, + 0.010111270472407341, + -0.061219654977321625, + -0.051367633044719696, + -0.07241909205913544, + -0.07645957916975021, + -0.027162378653883934, + -0.03414434194564819, + 0.06146477162837982, + 0.13700060546398163, + 0.11926816403865814, + -0.02512545883655548, + 0.018346155062317848, + 0.01688314788043499, + -0.012307713739573956, + 0.008223428390920162, + 0.0006636929465457797, + 0.04106074571609497, + -3.0054446304519066e-33, + 0.009211643598973751, + 0.05860084667801857, + -0.012603046372532845, + 0.0919627696275711, + 0.011060050688683987, + -0.013676013797521591, + -0.05606637895107269, + -0.010662460699677467, + -0.047535959631204605, + 0.10643086582422256, + 0.07616347819566727, + 0.12272609770298004, + -0.0316120982170105, + 0.09766991436481476, + 0.06724394857883453, + -0.05973232537508011, + 0.04125664755702019, + -0.08528247475624084, + -0.13286571204662323, + -0.044076673686504364, + -0.019152875989675522, + 0.060477010905742645, + -0.05552757531404495, + -0.040038108825683594, + 0.00509892450645566, + 0.035453565418720245, + 0.024575719609856606, + 0.06656867265701294, + -0.06407380849123001, + 0.046175286173820496, + 0.03390280157327652, + 0.010678034275770187, + -0.028712233528494835, + -0.029865732416510582, + -0.021054571494460106, + 0.014324584975838661, + -0.06864332407712936, + -0.011595266871154308, + 0.019830133765935898, + 0.009042254649102688, + -0.10274144262075424, + -0.053833577781915665, + -0.06530798971652985, + -0.0035262200981378555, + 0.02717358060181141, + 0.04051259160041809, + 0.01544295996427536, + -0.05326142534613609, + 0.04642225056886673, + 0.05062371492385864, + -0.049914587289094925, + -0.05602889508008957, + -0.03967662155628204, + -0.019711459055542946, + 0.0003296011418569833, + -0.023380668833851814, + -0.05214191600680351, + 0.09282353520393372, + -0.031422678381204605, + -0.0038886447437107563, + 0.016995947808027267, + 0.010535240173339844, + 0.042827848345041275, + -0.028433887287974358, + -0.02204974927008152, + 0.046670302748680115, + 0.0033291568979620934, + 0.009384330362081528, + 0.0421532467007637, + -0.030791746452450752, + -0.01341953407973051, + 0.05912499129772186, + 0.057803165167570114, + 0.09250178933143616, + -0.06116948276758194, + 0.003804897889494896, + -0.03977655991911888, + 0.0001975326449610293, + 0.04053694009780884, + -0.06336745619773865, + -0.14096109569072723, + 0.0311440322548151, + -0.021187245845794678, + 0.1075664833188057, + 0.052517566829919815, + 0.020213617011904716, + -0.009121503680944443, + -0.06331036239862442, + -0.024507753551006317, + 0.025504404678940773, + -0.11294077336788177, + 0.10018331557512283, + -0.038138825446367264, + -0.07886570692062378, + -0.12208100408315659, + -8.381597982309386e-34, + -0.044225871562957764, + 0.01637878082692623, + 0.006126876454800367, + -0.04319366440176964, + -0.15255433320999146, + -0.021145854145288467, + 0.0638047531247139, + 0.031196748837828636, + -0.046370845288038254, + 0.01123795099556446, + -0.05270352587103844, + -0.015572198666632175, + 0.024841688573360443, + -0.034900303930044174, + -0.04248732328414917, + 0.01280911173671484, + 0.02169312909245491, + 0.06863988190889359, + -0.010421071201562881, + 0.0201402734965086, + -0.05540332570672035, + 0.029456691816449165, + -0.03518393263220787, + 0.02034226432442665, + 0.02360577881336212, + 0.010361332446336746, + 0.08432955294847488, + 0.018904205411672592, + -0.059631481766700745, + -0.00018965915660373867, + -0.00781713705509901, + -0.012644436210393906, + 0.05103093758225441, + -0.01834593527019024, + -0.036559902131557465, + 0.012722577899694443, + -0.016745345667004585, + -0.02656574733555317, + -0.04415896162390709, + -0.001474236138164997, + -0.004931285511702299, + 0.030725056305527687, + 0.09639608860015869, + -0.050699710845947266, + -0.02528280019760132, + 0.012898865155875683, + -0.00275248009711504, + 0.06031421199440956, + -0.04465630277991295, + 0.062177225947380066, + 0.06065376102924347, + -0.008893877267837524, + -0.04616881534457207, + -0.01356738992035389, + -0.0439351424574852, + -0.017616240307688713, + -0.011446342803537846, + 0.007971884682774544, + 0.06265796720981598, + 0.0050515951588749886, + -0.005549465771764517, + -0.008357875049114227, + -0.014612375758588314, + 0.029128547757864, + 0.05444682762026787, + -0.013837706297636032, + 0.00973500870168209, + -0.027088046073913574, + 0.008348214440047741, + 0.04936200752854347, + 0.06775227934122086, + 0.03524022921919823, + -0.01997816562652588, + -0.005792613141238689, + -0.016745775938034058, + 0.03331965580582619, + 0.11234642565250397, + 0.05705771595239639, + -0.02119007334113121, + -0.03727465867996216, + 0.06087372452020645, + 0.0614970363676548, + -0.0530598908662796, + 0.07798638194799423, + -0.012699761427938938, + 0.06735879182815552, + -0.016898799687623978, + -0.025616487488150597, + 0.023505141958594322, + 0.013233393430709839, + -0.005067140329629183, + 0.04371361806988716, + -0.06611748784780502, + 0.020534291863441467, + -0.13411954045295715, + -1.816781391994482e-08, + -0.04844588413834572, + 0.022266661748290062, + -0.009270977228879929, + 0.013270207680761814, + -0.010826385580003262, + 0.0028532249853014946, + 0.007992968894541264, + -0.056262414902448654, + -0.033125828951597214, + -0.00989521574229002, + 0.024732541292905807, + 0.04964563623070717, + -0.11473814398050308, + 0.010031310841441154, + 0.03969242796301842, + 0.004288108088076115, + -0.027172647416591644, + 0.024662939831614494, + -0.0028248135931789875, + -0.010536767542362213, + 0.008648564107716084, + 0.045984845608472824, + 0.056250087916851044, + 0.03125062212347984, + 0.03109554573893547, + 0.03970072790980339, + -0.05422615259885788, + 0.006324490532279015, + 0.06942840665578842, + -0.002162171993404627, + 0.03134482353925705, + -0.008440841920673847, + 0.046507827937603, + 0.0009301757672801614, + -0.10819724947214127, + -0.03857657313346863, + -0.10071210563182831, + 0.00940203107893467, + 0.009629993699491024, + 0.0823265090584755, + -0.06960634142160416, + -0.02349844202399254, + -0.006909392774105072, + -0.04182581230998039, + -0.05813657492399216, + -0.001744410372339189, + 0.027730487287044525, + -0.007392399478703737, + -0.0856485366821289, + -0.10277945548295975, + -0.08835158497095108, + -0.020574506372213364, + 0.0443357490003109, + 0.0480092316865921, + -0.004028629045933485, + -0.04325512424111366, + 0.038121890276670456, + -0.049652427434921265, + -0.07543080300092697, + 0.009493798017501831, + 0.10832010954618454, + -0.012462547980248928, + -0.07866448163986206, + -0.034224025905132294 + ], + "compass-rose-bold||*new*,navigation,directions,maps,cardinal,cartography": [ + 0.04276460409164429, + -0.03322729095816612, + -0.03679468855261803, + -0.013457105495035648, + 0.011052570305764675, + -0.020706621930003166, + -0.004332104232162237, + -0.021859968081116676, + -0.044360846281051636, + -0.017504040151834488, + -0.010915554128587246, + 0.036036111414432526, + 0.01698569394648075, + -0.05221329256892204, + -0.0025642176624387503, + 0.04221097752451897, + -0.06031961739063263, + 0.02664371021091938, + 0.054132815450429916, + -0.0030821783002465963, + -0.01776653528213501, + 0.036061253398656845, + -0.00970133300870657, + 0.058886244893074036, + -0.015303866006433964, + 0.027962058782577515, + 0.08010223507881165, + -0.014134357683360577, + -0.03439665958285332, + -0.1115630492568016, + 0.005116824526339769, + 0.062199123203754425, + 0.07675067335367203, + -0.017004908993840218, + -0.04612891376018524, + 0.042981769889593124, + 0.06994171440601349, + -0.02993054687976837, + -0.0015335875796154141, + -0.002083046128973365, + -0.009148483164608479, + -0.04151482880115509, + 0.03736181929707527, + 0.12608900666236877, + 0.019107993692159653, + 0.06928233802318573, + 0.02463473565876484, + 0.01835140958428383, + 0.006832162383943796, + 0.04972563311457634, + -0.08263857662677765, + -0.04261866956949234, + -0.1466524302959442, + -0.05894126743078232, + 0.05730074271559715, + 0.11067777872085571, + -0.03376249596476555, + -0.07591024041175842, + 0.06759559363126755, + -0.044258102774620056, + 0.05671016499400139, + -0.003934117034077644, + 0.006661893334239721, + 0.05055263265967369, + 0.010850821621716022, + 0.038121070712804794, + -0.043793752789497375, + 0.01253072265535593, + -0.003925989847630262, + 0.009116943925619125, + 0.0809231624007225, + -0.029334183782339096, + -0.023733004927635193, + -0.08584997057914734, + -0.013084071688354015, + -0.021132532507181168, + 0.01219160109758377, + -0.005874562077224255, + -0.02944047562777996, + -0.10866245627403259, + -0.10522501915693283, + 0.029725143685936928, + -0.07379809021949768, + 0.04642254486680031, + 0.028295928612351418, + 0.03511596843600273, + -0.08305097371339798, + -0.09714627265930176, + 0.01279144175350666, + -0.07195793837308884, + -0.009405231103301048, + -0.08973008394241333, + -0.06898877024650574, + 0.01528199203312397, + -0.023869376629590988, + 0.02543511800467968, + 0.016857868060469627, + -0.06664649397134781, + -0.03006329946219921, + 0.07269832491874695, + 0.07683271914720535, + 0.03635543957352638, + 2.22165253944695e-05, + 0.017257383093237877, + -0.06352309882640839, + -0.05682644620537758, + 0.027348550036549568, + -0.02745540253818035, + 0.003928764723241329, + 0.03969952091574669, + 0.052017197012901306, + -0.07782098650932312, + -0.04089154303073883, + -0.07430824637413025, + -0.06381633877754211, + -0.019282160326838493, + -0.030529402196407318, + -0.0037009608931839466, + 0.0703495591878891, + 0.11650661379098892, + -0.011449107900261879, + -0.01015985757112503, + 0.045179128646850586, + -0.023864496499300003, + -0.0277898907661438, + -0.051049988716840744, + 0.007688466459512711, + -2.104229294861945e-33, + 0.009859385900199413, + 0.0730709359049797, + 0.004494821187108755, + 0.11919212341308594, + 0.0448087677359581, + -0.012929935939610004, + -0.05111749470233917, + -0.012682909145951271, + -0.03349031135439873, + 0.08904136717319489, + 0.04329456016421318, + 0.15494906902313232, + -0.00856733601540327, + 0.10250899940729141, + 0.034136004745960236, + -0.06727305054664612, + 0.09680939465761185, + -0.06142932549118996, + -0.146904855966568, + -0.09400377422571182, + -0.037275902926921844, + 0.09804069250822067, + -0.047450996935367584, + -0.037752795964479446, + 0.01845581829547882, + 0.016502125188708305, + 0.030643105506896973, + 0.028496505692601204, + -0.04737447202205658, + 0.056392669677734375, + 0.011079643853008747, + -0.016185248270630836, + 0.03123464807868004, + 0.051976803690195084, + 0.007990122772753239, + 0.01845254935324192, + -0.09772633761167526, + -0.0241605956107378, + 0.013452935963869095, + 0.003193215699866414, + -0.0330723337829113, + -0.031437430530786514, + -0.04499848186969757, + 0.047706760466098785, + 0.0405973456799984, + 0.055348366498947144, + -0.004662564489990473, + -0.052025265991687775, + 0.06545589864253998, + 0.03261888027191162, + -0.03660348802804947, + -0.05443117022514343, + -0.03438267856836319, + 0.021866604685783386, + -0.011240679770708084, + -0.09476455301046371, + -0.11693192273378372, + 0.11889449506998062, + -0.016398152336478233, + -0.015331489033997059, + 0.024306289851665497, + 0.035368818789720535, + 0.06645162403583527, + 0.01399028580635786, + 0.0009156757150776684, + 0.030142195522785187, + -0.06806307286024094, + -0.009181835688650608, + 0.08264949172735214, + 0.021055839955806732, + 0.010168368928134441, + 0.06857974082231522, + 0.02188408374786377, + 0.07762864232063293, + -0.010148271918296814, + 0.04429960250854492, + -0.009743988513946533, + 0.019705556333065033, + 0.055466730147600174, + -0.06002126261591911, + -0.1348649263381958, + 0.006043764762580395, + -0.0665125846862793, + 0.06972562521696091, + 0.07026037573814392, + -0.010983247309923172, + 0.02140622027218342, + -0.013943483121693134, + -0.025354130193591118, + -0.0054091280326247215, + -0.11578768491744995, + 0.08111247420310974, + 0.01808931864798069, + -0.126311793923378, + -0.04586397483944893, + -5.354653652016436e-34, + -0.07948395609855652, + 0.019358502700924873, + 0.004887349437922239, + -0.0302428025752306, + -0.12734107673168182, + -0.04885808378458023, + 0.05591248720884323, + 0.023694409057497978, + -0.018094059079885483, + 0.0005934236105531454, + -0.08694911748170853, + -0.02859705686569214, + 0.044264912605285645, + -0.027451002970337868, + -0.02002059482038021, + -0.02279600128531456, + 0.05355062335729599, + 0.03189726918935776, + -0.0048819174990057945, + 0.04820980131626129, + -0.04554383456707001, + 0.027153238654136658, + -0.11428854614496231, + 0.00463617080822587, + 0.008703219704329967, + 0.03748773783445358, + 0.05586153641343117, + -0.025311142206192017, + -0.02257426641881466, + 0.00032263697357848287, + -0.002464906545355916, + -0.02948603965342045, + 0.025488639250397682, + 0.01841730810701847, + -0.07860557734966278, + 0.00807999074459076, + 0.06061619520187378, + 0.01647208072245121, + -0.07140091806650162, + -0.02671094425022602, + -0.016240807250142097, + -0.015658924356102943, + 0.09516313672065735, + -0.026541272178292274, + 0.014165121130645275, + -0.04035690426826477, + -0.031518224626779556, + 0.04230445250868797, + -0.031317610293626785, + 0.05815314128994942, + 0.04778003692626953, + -0.05425337702035904, + 0.022293582558631897, + -0.019101716578006744, + -0.01473161019384861, + -0.025508606806397438, + 0.005286161322146654, + -0.007336411625146866, + 0.05972472205758095, + 0.0005160654545761645, + 0.0037596432957798243, + -0.018542828038334846, + -0.01457049511373043, + 0.04956945404410362, + 0.05208547040820122, + -0.05085882544517517, + 0.014474641531705856, + -0.03173352777957916, + -0.046357207000255585, + 0.05004258081316948, + 0.031236868351697922, + 0.06534034013748169, + -0.04434853047132492, + -0.026722870767116547, + -0.029982615262269974, + 0.014604493044316769, + 0.04859639331698418, + 0.05405498296022415, + -0.004919954109936953, + -0.01657889038324356, + 0.006597370374947786, + -0.036658402532339096, + -0.06105801463127136, + 0.12381613254547119, + -0.020141970366239548, + 0.03613195940852165, + 0.0007246529567055404, + -0.037596236914396286, + 0.06037026643753052, + -0.009389630518853664, + 0.009830211289227009, + 0.03933486342430115, + -0.08730689436197281, + 0.02640143781900406, + -0.06852643936872482, + -2.200379789485396e-08, + 0.016090793535113335, + 0.0002776120090857148, + -0.035155266523361206, + 0.002048552967607975, + -0.0028637039940804243, + 0.006378873251378536, + 0.05731510743498802, + -0.023908384144306183, + -0.07102590054273605, + -0.021761341020464897, + 0.023198137059807777, + 0.09683377295732498, + -0.036293596029281616, + -0.035543665289878845, + 0.08070497959852219, + -0.02212444879114628, + 0.024518709629774094, + 0.00983402505517006, + -0.03287389501929283, + 0.008654283359646797, + 0.06189216300845146, + 0.07221145927906036, + 0.0872560366988182, + -0.024471674114465714, + -0.018133068457245827, + 0.005007321015000343, + -0.004782788455486298, + -0.04586980491876602, + 0.032729052007198334, + -0.042933057993650436, + 0.08515037596225739, + 0.02906554937362671, + 0.05984581261873245, + 0.05981971323490143, + -0.09524840861558914, + -0.03322583809494972, + -0.04669923707842827, + 0.04397156089544296, + 0.0014566953759640455, + 0.039141785353422165, + -0.06260054558515549, + 0.040266718715429306, + -0.005036083050072193, + -0.007274231407791376, + -0.043162647634744644, + -0.037573423236608505, + 0.04447103291749954, + 0.016716456040740013, + -0.05261334404349327, + -0.11373043060302734, + -0.1303989589214325, + 0.05299557372927666, + 0.02499937266111374, + 0.028300339356064796, + -0.005358098540455103, + 0.009562510997056961, + 0.03643707185983658, + 0.0016673920908942819, + -0.044638436287641525, + 0.01609424687922001, + 0.09235849231481552, + -0.009891532361507416, + -0.06302672624588013, + -0.02742471732199192 + ], + "compass-tool-bold||drawing,geometry,trigonometry,degrees,radians,measurement,protractor,compass,arc": [ + -0.024588454514741898, + 0.009445302188396454, + -0.12301521003246307, + 0.030821120366454124, + 0.006897080224007368, + -0.07520166784524918, + 0.015228617936372757, + 0.03418838605284691, + -0.020451556891202927, + 0.0036019952967762947, + 0.04261508956551552, + -0.01803680695593357, + 0.053505025804042816, + -0.026407785713672638, + 0.04812058061361313, + 0.01719002239406109, + -0.05399053543806076, + -0.0016231159679591656, + 0.030432943254709244, + -0.008602350950241089, + -0.02109825424849987, + 0.014192013069987297, + 0.04184390604496002, + 0.07646617293357849, + 0.015813838690519333, + 0.014719695784151554, + 0.07641112059354782, + -0.01357296109199524, + -0.0063303010538220406, + -0.043771304190158844, + -0.033253736793994904, + 0.038501739501953125, + 0.053686898201704025, + -0.03762771934270859, + -0.004604243207722902, + 0.018127238377928734, + -0.038914408534765244, + 0.02017434686422348, + -0.056803781539201736, + 0.01235590223222971, + -0.00047597644152119756, + -0.03939863666892052, + 0.050798289477825165, + 0.026702940464019775, + -0.06809203326702118, + -0.0011357434559613466, + -0.03788795694708824, + -0.0015261267544701695, + 0.05687852203845978, + 0.01480479072779417, + -0.05685415863990784, + -0.07369518280029297, + -0.19111579656600952, + -0.05626466125249863, + 0.02877768501639366, + 0.10578741133213043, + -0.010295836254954338, + -0.04929409176111221, + 0.058578819036483765, + -0.028939006850123405, + 0.06492961943149567, + 0.0360834077000618, + -0.02757934294641018, + 0.0265252236276865, + 0.022122085094451904, + 0.044513046741485596, + -0.03133125230669975, + -0.013841299340128899, + -0.05275625362992287, + -0.01130717247724533, + 0.0148822832852602, + 0.00033524155151098967, + -0.060444436967372894, + -0.029886340722441673, + 0.05200641602277756, + -0.01804279163479805, + -0.0008200178854167461, + 0.017342155799269676, + -0.023954477161169052, + -0.09796524792909622, + -0.13906046748161316, + 0.034307170659303665, + -0.03429558500647545, + 0.07818176597356796, + 0.056919291615486145, + 0.11265593767166138, + -0.02275603450834751, + -0.028250209987163544, + 0.05987090244889259, + -0.07115115225315094, + 0.015370450913906097, + -0.03483979403972626, + -0.11398667842149734, + 0.027044933289289474, + -0.032095346599817276, + 0.06279490143060684, + 0.011600515805184841, + -0.02830267697572708, + -0.08118966966867447, + 0.03170515596866608, + 0.079251229763031, + -0.013889488764107227, + -0.02451196312904358, + -0.0070575843565166, + -0.07142412662506104, + 0.020884191617369652, + 0.04833850637078285, + -0.034655965864658356, + 0.051205866038799286, + 0.023802131414413452, + 0.025367455556988716, + -0.0649910643696785, + -0.021175727248191833, + -0.05624823272228241, + 0.03265763074159622, + 0.02851657196879387, + -0.0751258134841919, + 0.0006330857868306339, + 0.093178391456604, + 0.1098875105381012, + 0.04239681735634804, + 0.07485649734735489, + -0.0184324998408556, + 0.024059051647782326, + 0.015746351331472397, + 0.07006703317165375, + 0.0798523873090744, + -1.5041134393217546e-33, + 0.013616040349006653, + 0.06862006336450577, + -0.006351580377668142, + 0.1037239134311676, + -0.029801402240991592, + 0.0034094336442649364, + -0.03711206093430519, + 0.026385584846138954, + 0.025323104113340378, + 0.07824527472257614, + 0.03441523760557175, + 0.09250097721815109, + -0.00517886970192194, + 0.05931377783417702, + 0.09902389347553253, + -0.050053756684064865, + 0.0719204843044281, + -0.03912223502993584, + -0.11026737093925476, + -0.026223212480545044, + -0.03391924872994423, + 0.02721606008708477, + -0.0712006688117981, + -0.01248570904135704, + -0.03985239565372467, + 0.09874405711889267, + 0.059535201638936996, + 0.10405853390693665, + -0.09801594913005829, + 0.019100848585367203, + 0.04010042920708656, + -0.01800652965903282, + 0.009358573704957962, + 0.051801636815071106, + -0.022698646411299706, + 0.0013254646910354495, + -0.06291063129901886, + -0.011786023154854774, + 0.03401035815477371, + 0.01548029389232397, + -0.06050723046064377, + 0.005580774508416653, + 0.0005038813105784357, + -0.003188094589859247, + 0.04643857851624489, + 0.029834354296326637, + -0.010767471045255661, + -0.033982958644628525, + 0.06328821927309036, + 0.08554383367300034, + -0.07951240241527557, + 0.020486891269683838, + 0.08529384434223175, + -0.019656911492347717, + 0.0005319116171449423, + -0.02531311847269535, + -0.028686074540019035, + 0.07830493152141571, + -0.058353763073682785, + -0.017820589244365692, + -0.00960936862975359, + 0.05292890965938568, + 0.00040910791722126305, + -0.00045318726915866137, + -0.04563732072710991, + 0.05558853968977928, + -0.08578096330165863, + -0.005523122381418943, + 0.0703820213675499, + -0.01973280869424343, + -0.053691647946834564, + 0.07188499718904495, + 0.032510578632354736, + 0.0668647363781929, + -0.027703598141670227, + 0.012135181576013565, + 0.034774910658597946, + 0.022799575701355934, + 0.038774311542510986, + -0.024750733748078346, + -0.15079011023044586, + 0.035354550927877426, + -0.03612314164638519, + -0.030509041622281075, + 0.00745274405926466, + -0.02549881674349308, + 0.007942317984998226, + -0.05802678316831589, + -0.0032653063535690308, + -0.002119465498253703, + -0.11570719629526138, + 0.06297056376934052, + -0.026112418621778488, + 0.0036442147102206945, + -0.0945252925157547, + -8.357738202052578e-34, + -0.10331074148416519, + 0.04179081693291664, + -0.016624776646494865, + 0.005421120673418045, + -0.08422508090734482, + 0.02948823757469654, + 0.06430774927139282, + -0.06273550540208817, + -0.0327698290348053, + -0.026280954480171204, + -0.029176319018006325, + -0.025714125484228134, + -0.014173767529428005, + -0.05476762354373932, + 0.06616082042455673, + -0.004051736555993557, + -0.04407147690653801, + 0.023597707971930504, + -0.04539596661925316, + 0.03147482872009277, + -0.024826737120747566, + 0.05987954139709473, + -0.0565488375723362, + -0.00242214766331017, + 0.03776378184556961, + -0.0003167330869473517, + 0.05999811738729477, + -0.06537853181362152, + -0.02060392126441002, + -0.015342345461249352, + -0.004474044311791658, + -0.03464199975132942, + 0.051694005727767944, + 0.02086370438337326, + -0.08982127159833908, + -0.06820891797542572, + 0.06833229213953018, + -0.04627140611410141, + -0.041212670505046844, + -0.054346535354852676, + 0.04521939903497696, + 0.011844162829220295, + 0.06675487756729126, + -0.03895428031682968, + -0.05914833024144173, + 0.0032605088781565428, + 0.01455916278064251, + -0.021979236975312233, + -0.017993183806538582, + 0.11461367458105087, + 0.008206292986869812, + -0.0566302165389061, + 0.0265964288264513, + -0.040403030812740326, + -0.04451630264520645, + -0.06898803263902664, + -0.014243227429687977, + 0.0008882709080353379, + 0.05265546962618828, + 0.03574906289577484, + -0.019069388508796692, + 0.007011927664279938, + 0.033693596720695496, + 0.06013740599155426, + 0.02944517321884632, + -0.015651244670152664, + 0.08547192066907883, + -0.023864036425948143, + -0.032388459891080856, + 0.06398662179708481, + 0.04580838233232498, + 0.07454429566860199, + -0.00827591773122549, + -0.08607565611600876, + -0.02033991366624832, + -0.0031773652881383896, + 0.060854338109493256, + 0.015188743360340595, + -0.04512132704257965, + -0.01737370900809765, + 0.05995362251996994, + -0.026347363367676735, + -0.04078816995024681, + 0.0682639479637146, + -0.03732891008257866, + 0.026350921019911766, + -0.05369871109724045, + 0.017854243516921997, + 0.023435838520526886, + 0.035589516162872314, + -0.05648015812039375, + 0.05554307997226715, + -0.04710700735449791, + 0.022753551602363586, + -0.022213170304894447, + -2.6570990740992784e-08, + -0.01284779142588377, + 0.051473673433065414, + -0.05300581827759743, + 0.007051654160022736, + -0.003140172688290477, + 0.0033446645829826593, + 0.020856499671936035, + -0.07734596729278564, + -0.1064385399222374, + -0.004310415592044592, + 0.0284869484603405, + 0.022062523290514946, + -0.04396430402994156, + -0.04235567897558212, + 0.03124365210533142, + -0.008054902777075768, + 0.02575458586215973, + 0.02560754120349884, + 0.010585052892565727, + -0.04990078881382942, + 0.061767127364873886, + 0.010831011459231377, + 0.08281733095645905, + -0.010297768749296665, + -0.018916385248303413, + 0.031562644988298416, + -0.06253433972597122, + 0.0634654313325882, + 0.06658056378364563, + 0.006662221625447273, + 0.058607712388038635, + -0.009169083088636398, + 0.08469077199697495, + 0.014202362857758999, + -0.03390766680240631, + -0.05611373484134674, + -0.09062205255031586, + 0.09547784924507141, + 0.024197936058044434, + 0.13238780200481415, + -0.08676821738481522, + 0.04625523090362549, + -0.03333505615592003, + -0.030813274905085564, + -0.009110410697758198, + 0.003157287836074829, + 0.050158753991127014, + -0.03885910287499428, + -0.08655029535293579, + -0.12286409735679626, + -0.10841697454452515, + 0.02285822480916977, + 0.024915922433137894, + 0.04150576889514923, + 0.00154484820086509, + 0.015010223723948002, + 0.08799128979444504, + -0.0005286564119160175, + -0.12156763672828674, + 0.00955619104206562, + 0.05256899818778038, + 0.011852641589939594, + -0.07274968177080154, + -0.0465189628303051 + ], + "computer-tower-bold||desktop,pc,imac": [ + 0.018469704315066338, + -0.030661676079034805, + -0.0003262748650740832, + 0.011875677853822708, + 0.025784490630030632, + -0.048693858087062836, + -0.008907148614525795, + -0.01730257272720337, + 0.033803101629018784, + -0.022481445223093033, + 0.03769245743751526, + 0.029712216928601265, + 0.06612955033779144, + -0.039106301963329315, + 0.014811395667493343, + 0.033691778779029846, + -0.021212076768279076, + -0.006534360349178314, + 0.041028376668691635, + 0.07698531448841095, + -0.0020898832008242607, + -0.08767149597406387, + -0.02031095139682293, + 0.009293326176702976, + 0.04670744761824608, + -0.023969588801264763, + 0.07061689347028732, + 0.03982080519199371, + -0.008503363467752934, + -0.06443406641483307, + -0.05320503190159798, + -0.01525137946009636, + 0.07776927202939987, + 0.05153984948992729, + 0.043354131281375885, + 0.02318406105041504, + 0.03198575600981712, + -0.06528948247432709, + -0.06797251850366592, + -0.06866036355495453, + 0.024939987808465958, + 0.00840362161397934, + 0.06564805656671524, + 0.060699451714754105, + 0.023349203169345856, + -0.06897570937871933, + -0.05555584654211998, + -0.08890070766210556, + 0.05441407114267349, + 0.021444890648126602, + 0.0189458429813385, + -0.06380747258663177, + -0.05251401290297508, + -0.0352846123278141, + -0.02000737190246582, + 0.04374445602297783, + 0.014951041899621487, + 0.01263688039034605, + 0.13008397817611694, + -0.00033223035279661417, + 0.02344246581196785, + -0.017994780093431473, + 0.04515213519334793, + 0.01325035747140646, + 0.03363204747438431, + -0.015406402759253979, + -0.01144292950630188, + 0.039271142333745956, + -0.049982111901044846, + -0.01708189770579338, + 0.09285120666027069, + -0.03901571035385132, + 0.02123531699180603, + 0.013847935013473034, + -0.05589667335152626, + 0.002436204580590129, + -0.009079783223569393, + -0.06463026255369186, + -0.015238914638757706, + 0.04170224070549011, + -0.05731651186943054, + -0.0019757284317165613, + -0.08865440636873245, + 0.05620372295379639, + 0.10807368159294128, + 0.04294811934232712, + -0.1060599610209465, + -0.07209865748882294, + -0.09049344807863235, + -0.032679058611392975, + -0.04415860027074814, + -0.0722627118229866, + 0.010434599593281746, + 0.062305472791194916, + -0.078689344227314, + -0.038654156029224396, + 0.07023290544748306, + -0.03765178844332695, + -0.06589606404304504, + 0.05464144051074982, + 0.018512139096856117, + 0.05621412396430969, + 0.09395758807659149, + 0.01806609518826008, + -0.061445992439985275, + -0.04451235383749008, + -0.011203714646399021, + -0.03814904764294624, + -0.05883919075131416, + -0.029649589210748672, + -0.02528744749724865, + -0.11417463421821594, + -0.08541273325681686, + -0.008140625432133675, + -0.00874481350183487, + 0.0026870088186115026, + -0.046576399356126785, + -0.008078234270215034, + 0.09238770604133606, + 0.003639733651652932, + -0.0014869474107399583, + -0.0758567675948143, + -0.00106933549977839, + -0.050577983260154724, + 0.08478305488824844, + -0.03825349360704422, + -0.002183457836508751, + -1.5337966002254366e-33, + 0.03827303647994995, + 0.0002943208673968911, + -0.054098062217235565, + 0.1348482072353363, + 0.06718815863132477, + -0.025166988372802734, + -0.03550748899579048, + -0.03550364077091217, + -0.08191652595996857, + 0.0698864534497261, + 0.07505059987306595, + 0.05683490261435509, + -0.013279037550091743, + 0.011133968830108643, + 0.04142550379037857, + -0.08601979166269302, + 0.11231820285320282, + -0.008210997097194195, + -0.0841558501124382, + -0.01079911645501852, + -0.019508255645632744, + 0.026643460616469383, + 0.0025114305317401886, + -0.1218123659491539, + -0.0053374022245407104, + -0.03644828125834465, + -0.06013653054833412, + 0.018307795748114586, + -0.014880083501338959, + 0.01573225110769272, + 0.027679141610860825, + 0.04931566119194031, + 0.037249986082315445, + 0.01651100628077984, + -0.0697619616985321, + -0.04061119258403778, + -0.03362148627638817, + -0.0003740937099792063, + 0.0640367716550827, + 0.07108599692583084, + -0.13531620800495148, + 0.016164535656571388, + 0.06460867077112198, + -0.07459264993667603, + 0.05494830757379532, + 0.12285489588975906, + -0.019957831129431725, + -0.10973814874887466, + 0.007284032180905342, + 0.010269492864608765, + 0.0004376423603389412, + 0.00777145242318511, + 0.007424790877848864, + 0.02377953939139843, + 0.0004397341690491885, + -0.04044180363416672, + -0.014903053641319275, + 0.0881463959813118, + 0.08611159771680832, + 0.05237625911831856, + 0.00665448559448123, + 0.010244456119835377, + -0.0041907960548996925, + 0.04439310356974602, + -0.060679592192173004, + 0.06356091797351837, + 0.003847904969006777, + 0.047249648720026016, + -0.018376516178250313, + -0.022447902709245682, + 0.045793429017066956, + -0.02806607075035572, + 0.035819653421640396, + -0.01649557612836361, + -0.015378524549305439, + 0.01027369312942028, + -0.1491331309080124, + 0.014087273739278316, + -0.10678042471408844, + -0.03724914789199829, + -0.05728910490870476, + -0.010514779947698116, + -0.047104403376579285, + 0.12325547635555267, + 0.05388312414288521, + 0.08347506076097488, + -0.01751900278031826, + -0.025706417858600616, + 0.02778414823114872, + 0.08330252766609192, + -0.05841680243611336, + -0.011817690916359425, + -0.027116017416119576, + -0.043111514300107956, + -0.12090147286653519, + -8.644138217080813e-34, + 0.016552789136767387, + -0.007604364305734634, + -0.023439010605216026, + -0.07637258619070053, + -0.053643353283405304, + 0.06125843897461891, + 0.06971953064203262, + -0.013365522027015686, + -0.06554104387760162, + 0.03674836829304695, + 0.09539195895195007, + 0.06654272228479385, + -0.04974092170596123, + -0.05889767408370972, + 0.008656715042889118, + 0.1024622693657875, + 0.04898357018828392, + 0.06619533151388168, + -0.05869023874402046, + -0.01603166200220585, + -0.05543114244937897, + -0.09440937638282776, + -0.05361451208591461, + 0.05681585147976875, + 0.0724155604839325, + 0.01482430286705494, + -0.0031130677089095116, + -0.01761011779308319, + 0.08004430681467056, + 0.022545458748936653, + -0.08535520732402802, + 0.07043889909982681, + 0.022645296528935432, + 0.07049250602722168, + 0.06078990176320076, + 0.028907835483551025, + -0.013294227421283722, + -0.072022445499897, + 0.0038805000949651003, + -0.010842906311154366, + 0.017406417056918144, + 0.08238045126199722, + -0.012738566845655441, + 0.01752873696386814, + -0.013918830081820488, + 0.01042515691369772, + -0.02783774770796299, + -0.044679198414087296, + 0.006619446445256472, + 0.03522298112511635, + 0.049345437437295914, + -0.06150001287460327, + 0.03078097477555275, + 0.002335907192900777, + -0.07305271178483963, + -0.07039986550807953, + -0.009297127835452557, + 0.07718654721975327, + -0.02954334393143654, + 0.012448994442820549, + 0.011341514997184277, + -0.03709599748253822, + -0.05670392885804176, + -0.08064647018909454, + -0.034130752086639404, + -0.007891615852713585, + 0.038898833096027374, + 0.02161014825105667, + 0.01667085476219654, + 0.033341120928525925, + -0.02668934501707554, + 0.052253540605306625, + 0.029930558055639267, + 0.015503894537687302, + -0.0064679523929953575, + -0.049192268401384354, + 0.0647706687450409, + 0.005369822960346937, + 0.01225526537746191, + -0.01016116701066494, + 0.03084597922861576, + 0.032263655215501785, + -0.0436127744615078, + -0.003122236579656601, + -0.021777570247650146, + 0.004421913530677557, + 0.008596358820796013, + 0.03095206804573536, + -0.01091698370873928, + -0.0692233219742775, + -0.017087364569306374, + -0.041019320487976074, + 0.05177931860089302, + -0.04545285925269127, + -0.10399746149778366, + -1.869401344833932e-08, + -0.07355878502130508, + -0.07144048064947128, + -0.0016095516039058566, + -0.02540660835802555, + -0.013319222256541252, + -0.08628061413764954, + -0.01458046119660139, + -0.080243319272995, + 0.019468912854790688, + -0.01128949411213398, + 0.023691276088356972, + -0.02525131031870842, + -0.02202514000236988, + -0.0133109912276268, + 0.030005961656570435, + 0.025564149022102356, + -0.07886912673711777, + 0.07576674222946167, + 0.02502516284584999, + -0.020744159817695618, + -0.042597975581884384, + 0.05364111065864563, + 0.043520111590623856, + 0.05483601242303848, + 0.00622433191165328, + 0.0345923937857151, + -0.06033135950565338, + -0.014539630152285099, + 0.0673893466591835, + 0.086595319211483, + -1.654451625654474e-05, + 0.019438615068793297, + -0.012860113754868507, + 0.022504573687911034, + -0.020173877477645874, + 0.006472189445048571, + 0.03865290433168411, + 0.04450416564941406, + 0.052263032644987106, + 0.037710417062044144, + -0.030045293271541595, + -0.1110052540898323, + -0.07184884697198868, + -0.019471699371933937, + 0.00824471190571785, + -0.004375791177153587, + 0.010514325462281704, + -0.015433796681463718, + -0.047260187566280365, + -0.09162650257349014, + 0.046045295894145966, + 0.0489368662238121, + 0.03458486124873161, + 0.04888097941875458, + -0.010581287555396557, + -0.11091353744268417, + 0.006565602030605078, + 0.04356111213564873, + 0.019669722765684128, + 0.03525582700967789, + 0.12731029093265533, + -0.0047870962880551815, + 0.019312437623739243, + -0.032606273889541626 + ], + "confetti-bold||tada,party,emoji": [ + -0.05914659798145294, + -0.01740601286292076, + 0.04758775979280472, + -0.003000268479809165, + 0.00489757489413023, + -0.05442902818322182, + 0.11432848125696182, + -0.03877553716301918, + 0.02289622649550438, + -0.020984508097171783, + 0.021949145942926407, + -0.010812933556735516, + 0.03261076658964157, + -0.04832268878817558, + 0.01977473869919777, + 0.04445510357618332, + 0.014652307145297527, + -0.03226247802376747, + -0.03394880145788193, + 0.0004672483482863754, + -0.0009688432910479605, + 0.009018021635711193, + 0.03313639387488365, + 0.05140714719891548, + 0.012339409440755844, + 0.02850637026131153, + 0.01643674075603485, + 0.04334687814116478, + 0.014266126789152622, + -0.03681344538927078, + -0.01548733003437519, + 0.009650983847677708, + 0.03371496871113777, + 0.042024608701467514, + 0.056986916810274124, + 0.07413316518068314, + -0.012181293219327927, + -0.06005598604679108, + 0.0845273807644844, + 0.08312221616506577, + 0.017947958782315254, + -0.07121826708316803, + -0.046198345720767975, + 0.04194530099630356, + 0.03388085216283798, + -0.0005916489753872156, + -0.05535446107387543, + 0.011690628714859486, + -0.00023598529514856637, + 0.020374100655317307, + -0.038799531757831573, + -0.03300983086228371, + -0.04535166546702385, + -0.0023746448568999767, + 0.031356699764728546, + -0.0118721229955554, + -0.040708307176828384, + -0.05511775612831116, + 0.039353180676698685, + 0.009970483370125294, + -0.05211566016077995, + -0.0012839521514251828, + 0.06582675874233246, + 0.0460992194712162, + -0.002454969100654125, + -0.045159704983234406, + -0.002847711555659771, + 0.04790442809462547, + -1.1981052921328228e-05, + 0.0395197756588459, + 0.08538951724767685, + 0.03569004684686661, + -0.0032102633267641068, + -0.014459648169577122, + -0.060597680509090424, + 0.04133891686797142, + 0.037666045129299164, + 0.008232785388827324, + 0.0014620719011873007, + 0.01207345724105835, + -0.0664091631770134, + -0.009217588230967522, + 0.05425845459103584, + -0.00013129221042618155, + 0.07776011526584625, + 0.030696172267198563, + -0.08079663664102554, + -0.0973142758011818, + -0.028887983411550522, + 0.03636584058403969, + -0.07652825117111206, + 0.021508192643523216, + 0.055820636451244354, + -0.02181435003876686, + -0.031580276787281036, + -1.3293978554429486e-05, + 0.0440157875418663, + -0.05330425500869751, + -0.05126502737402916, + 0.1352791041135788, + -0.018580958247184753, + 0.05375838652253151, + 0.003328280756250024, + 0.014284863136708736, + -0.04005732014775276, + -0.028706522658467293, + 0.05751078948378563, + -0.0792769342660904, + 0.009264550171792507, + 0.03989110514521599, + -0.012732427567243576, + -0.1120271310210228, + 0.0698755607008934, + -0.08653377741575241, + -0.08803242444992065, + -0.07764757424592972, + -0.07891178131103516, + -0.014253084547817707, + 0.17047825455665588, + -0.012927926145493984, + 0.04533028230071068, + -0.01723429746925831, + -0.10535933822393417, + -0.029840771108865738, + -0.03920624405145645, + 0.01766645908355713, + 0.014374911785125732, + -2.9724300910073454e-34, + 0.06780624389648438, + 0.08651401102542877, + -0.034845151007175446, + 0.06006491556763649, + 0.06154252961277962, + 0.033334944397211075, + -0.07988091558218002, + -0.08468335121870041, + -0.137442946434021, + -0.025095252320170403, + 0.02467253990471363, + 0.022380337119102478, + -0.06307253986597061, + 0.0169345885515213, + -0.017273535951972008, + -0.025388548150658607, + 0.024408642202615738, + -0.024277878925204277, + -0.06108272075653076, + 0.003818399738520384, + -0.010919833555817604, + 0.03434189409017563, + 0.02577228657901287, + -0.03431229665875435, + -0.08785846829414368, + -0.030847810208797455, + 0.016124607995152473, + 0.06522058695554733, + -0.04751204326748848, + 0.022790834307670593, + 0.037287451326847076, + 0.014528172090649605, + 0.0801243931055069, + 0.025292890146374702, + -0.05464142560958862, + -0.06284373998641968, + -0.01594158262014389, + -0.04203205928206444, + -0.030637111514806747, + 0.09113451838493347, + -0.0297014731913805, + 0.06044374406337738, + -0.017108164727687836, + 0.03304192051291466, + -0.048185620456933975, + 0.07785649597644806, + -0.006829062011092901, + -0.07323471456766129, + 0.048244912177324295, + -0.04276781529188156, + 0.005562874488532543, + -0.014372863806784153, + 0.010515552945435047, + -0.0024281630758196115, + 0.02882418781518936, + -0.09975750744342804, + 0.03096436895430088, + -0.00462796026840806, + 0.04134766384959221, + -0.04156922549009323, + -0.017574891448020935, + 0.015601294115185738, + 0.08351277559995651, + -0.069489486515522, + -0.057042766362428665, + -0.006473636720329523, + -0.11964674293994904, + 0.02983120083808899, + 0.1377604752779007, + -0.015073548071086407, + 0.042838066816329956, + 0.11987054347991943, + 0.009865934029221535, + -0.031174907460808754, + -0.07830299437046051, + 0.02000725269317627, + 0.01798616349697113, + -0.0636066347360611, + 0.047453541308641434, + 0.002863614121451974, + -0.0012693959288299084, + -0.04252055659890175, + 0.013008955866098404, + 0.0176079198718071, + 0.03930674120783806, + -0.012130535207688808, + 0.018388798460364342, + -0.06613805890083313, + -0.0638924092054367, + 0.050996389240026474, + -0.07453951984643936, + -0.018305959179997444, + 0.06393905729055405, + -0.06535156071186066, + -0.05413335934281349, + -2.9054684685724865e-34, + -0.01614358089864254, + 0.060234185308218, + -0.04843127354979515, + 0.00770751666277647, + -0.03339521214365959, + 0.01445554755628109, + -0.008029199205338955, + -0.012906725518405437, + 0.06274744123220444, + 0.019190676510334015, + -0.015289859846234322, + 0.01653088815510273, + 0.03757708519697189, + -0.08566418290138245, + 0.0444861575961113, + 0.05758469179272652, + 0.05131599307060242, + 0.06584057956933975, + 0.01372950803488493, + -0.00016945316747296602, + -0.05319840833544731, + -0.030781641602516174, + -0.040491145104169846, + 0.06998291611671448, + 0.01038412656635046, + 0.05119702219963074, + 0.02987671084702015, + -0.039544884115457535, + -0.08737900108098984, + -0.03574729338288307, + -0.023631375283002853, + -0.09016607701778412, + -0.005747875664383173, + 0.1128932386636734, + -0.0201486274600029, + 0.010137274861335754, + -0.010645810514688492, + -0.0590105764567852, + 0.0352727435529232, + -0.01581672765314579, + 0.08931522071361542, + -0.006368701346218586, + 0.05933595821261406, + 0.1365227997303009, + -0.07076587527990341, + 0.013878583908081055, + -0.11145136505365372, + -0.026062030345201492, + 0.05294116958975792, + 0.04960617050528526, + -0.002813318045809865, + -0.06688415259122849, + -0.08422906696796417, + -0.01689615659415722, + -0.01869208551943302, + -0.034018516540527344, + -0.016475681215524673, + 0.02862454392015934, + -0.07653436809778214, + 0.046949516981840134, + 0.032888397574424744, + -0.021182600408792496, + 0.04628501087427139, + 0.002340548438951373, + 0.012053430080413818, + 0.022912366315722466, + -0.022175075486302376, + 0.04404737055301666, + 0.034532319754362106, + 0.061689913272857666, + 0.05521822348237038, + 0.07311049848794937, + -0.06993595510721207, + 0.0278724804520607, + 0.016630299389362335, + -0.04789800941944122, + -0.0035371719859540462, + 0.07336438447237015, + -0.007885239087045193, + 0.07246796786785126, + -0.053822845220565796, + -0.011013513430953026, + -0.0751594603061676, + -0.021891126409173012, + -0.029567645862698555, + 0.02871428243815899, + 0.0523902028799057, + 0.033606499433517456, + -0.005968098528683186, + 0.04922506958246231, + -0.02405792847275734, + 0.06438577175140381, + 0.10079944878816605, + 0.023103896528482437, + 0.07460473477840424, + -1.8725383910123128e-08, + 0.04214456304907799, + -0.08961217850446701, + -0.10938995331525803, + -0.03448381647467613, + 0.024784119799733162, + -0.0592191144824028, + -0.0812777727842331, + -0.1305072009563446, + -0.013171624392271042, + 0.0028885342180728912, + 0.08830199390649796, + 0.021015696227550507, + -0.03644702583551407, + -0.08239571005105972, + 0.027756625786423683, + 0.05079398676753044, + -0.009777747094631195, + 0.058855436742305756, + -0.035689227283000946, + -0.04041106998920441, + 0.017213277518749237, + 0.09935890883207321, + -0.010068720206618309, + -0.02132030390202999, + -0.041957829147577286, + -0.01612194813787937, + -0.09214289486408234, + 0.026869354769587517, + -0.08677972853183746, + 0.006886627059429884, + -0.002219713758677244, + -9.814718214329332e-05, + -0.028941961005330086, + -0.04084070026874542, + -0.08716221153736115, + 0.010881117545068264, + -0.02454320713877678, + -0.022828560322523117, + -0.007109443657100201, + 0.051766686141490936, + 0.07517818361520767, + -0.05268149822950363, + -0.025670276954770088, + -0.023439185693860054, + -0.08479674905538559, + 0.02562830038368702, + 0.07167891412973404, + -0.02306126430630684, + -0.06225208193063736, + -0.020402060821652412, + -0.015610079281032085, + 0.009083383716642857, + 0.03680969774723053, + 0.08711155503988266, + -0.03564813733100891, + -0.03464491665363312, + 0.0285047460347414, + 0.14112314581871033, + 0.020740795880556107, + 0.030244331806898117, + 0.051327865570783615, + 0.030451102182269096, + 0.054552629590034485, + -0.045545756816864014 + ], + "contactless-payment-bold||purchase,credit card,nfc": [ + -0.06012362241744995, + 0.055690161883831024, + -0.036591943353414536, + 0.019896721467375755, + 0.03221823275089264, + -0.015889199450612068, + 0.09797605872154236, + -0.014158692210912704, + 0.045938584953546524, + -0.0914856567978859, + -0.006551463156938553, + 0.003721384797245264, + 0.05387739837169647, + -0.06480855494737625, + -0.028942665085196495, + -0.03915168344974518, + 0.021216560155153275, + -0.08191239088773727, + 0.05116283521056175, + 0.1143251582980156, + -0.04148758202791214, + 0.04760033264756203, + 0.00048710982082411647, + 0.015674900263547897, + 0.009528295136988163, + 0.0011390842264518142, + -0.034165773540735245, + 0.007829350419342518, + -0.020434007048606873, + -0.021965308114886284, + 0.08531209081411362, + 0.11540677398443222, + 0.1800898164510727, + 0.009005652740597725, + 0.008413760922849178, + -0.0008505197474732995, + 0.02229633368551731, + 0.030240004882216454, + -0.06671890616416931, + 0.022628702223300934, + 0.00344300689175725, + -0.06588982045650482, + -0.00922317709773779, + 0.007112724706530571, + 0.0043887305073440075, + 0.015436563640832901, + 0.01614302769303322, + 0.04401984438300133, + -0.0028056122828274965, + 0.03368213027715683, + 0.019001971930265427, + -0.025897786021232605, + -0.1254107654094696, + 0.04005111753940582, + -0.018574463203549385, + 0.06480051577091217, + -0.026384374126791954, + -0.022780323401093483, + 0.01309906505048275, + -0.03875304013490677, + 0.03824906051158905, + 0.015875238925218582, + 0.015967663377523422, + 0.07245520502328873, + -0.02974052168428898, + 0.04215899854898453, + -0.000867926049977541, + 0.029018500819802284, + -0.0569702573120594, + -0.003000470343977213, + 0.058769021183252335, + 0.01940768025815487, + -0.04079572856426239, + -0.032439637929201126, + 0.016965843737125397, + 0.047778695821762085, + 0.0703120082616806, + -0.03418098762631416, + -0.0362420529127121, + 0.007543324027210474, + -0.08659712970256805, + -0.09507439285516739, + -0.036988578736782074, + -0.029747001826763153, + 0.004601605702191591, + 0.0477614589035511, + -0.06113334000110626, + -0.08621721714735031, + -0.04414922744035721, + -0.08258114755153656, + 0.00014957106031943113, + 0.058079879730939865, + -0.03966980800032616, + -0.05427797883749008, + -0.07477129250764847, + 0.01598278246819973, + 0.07544649392366409, + -0.12259412556886673, + -0.09655165672302246, + 0.04558834061026573, + 0.014157894067466259, + 0.08403968811035156, + 0.007272023241966963, + -0.0024937051348388195, + 0.004506363533437252, + -0.020133739337325096, + 0.01137283444404602, + 0.032806966453790665, + 0.03800053521990776, + 0.022026441991329193, + 0.03405036777257919, + -0.06947148591279984, + -0.019744768738746643, + -0.04492044448852539, + -0.06655297428369522, + 0.046200770884752274, + -0.04415622353553772, + -0.003674863139167428, + 0.17717404663562775, + 0.04332171007990837, + 0.026340730488300323, + -0.02822871319949627, + -0.08324149996042252, + -0.08928310126066208, + -0.08390472829341888, + -0.011553461663424969, + 0.08412661403417587, + -1.9675677910032844e-33, + 0.0848962813615799, + 0.07730115950107574, + -0.029270073398947716, + -0.030122807249426842, + 0.006278467830270529, + -0.01426444761455059, + 0.015827463939785957, + 0.0004061282961629331, + -0.03723675012588501, + 0.039434533566236496, + 0.0634891539812088, + 0.04334135353565216, + 0.0416988767683506, + 0.04410344362258911, + -0.046734243631362915, + -0.016585418954491615, + -0.04212191328406334, + -0.01185008604079485, + 0.03140140697360039, + 0.04911627620458603, + -0.06839490681886673, + 0.05903462693095207, + 0.007331018336117268, + 0.0048747886903584, + 0.016603652387857437, + -0.024269185960292816, + 0.015525449067354202, + 0.011423779651522636, + 0.06382206827402115, + -0.0034712874330580235, + 0.01977689564228058, + 0.015885591506958008, + 0.021077049896121025, + 0.0467832051217556, + 0.0011458377121016383, + 0.06647597253322601, + -0.06587738543748856, + -0.01656559854745865, + 0.003343479009345174, + -0.010487629100680351, + -0.06564058363437653, + -0.031286872923374176, + -0.047222089022397995, + -0.09468435496091843, + -0.008585724979639053, + 0.06333595514297485, + 0.040563154965639114, + -0.09003465622663498, + 0.002764714416116476, + 0.08741486072540283, + -0.058076612651348114, + -0.01554784644395113, + -0.011166422627866268, + -0.02930608205497265, + -0.10088205337524414, + -0.08457739651203156, + -0.0009714131010696292, + 0.021042566746473312, + -0.04224380478262901, + -0.12438484281301498, + -0.05410343036055565, + -0.0950084924697876, + 0.024494092911481857, + -0.05945734679698944, + -0.02210221067070961, + 0.01969347521662712, + -0.04002396762371063, + -0.03804252669215202, + -0.01151734497398138, + 0.04177674278616905, + 0.001557380659505725, + 0.11745095252990723, + 0.06713753193616867, + 0.05827751383185387, + -0.013997795060276985, + 0.036983199417591095, + -0.0019319141283631325, + 0.027529742568731308, + 0.04656714200973511, + 0.0003726408467628062, + -0.06882188469171524, + 0.06622686237096786, + 0.03075799159705639, + 0.1592090129852295, + 0.05387561768293381, + 0.12516768276691437, + 0.03620145842432976, + -0.08200381696224213, + -0.025359883904457092, + 0.003951010759919882, + -0.0034761913120746613, + 0.012503162957727909, + -0.030424658209085464, + -0.09025651961565018, + 0.032502468675374985, + -1.2007962927518863e-34, + -0.030645320191979408, + -0.03140399605035782, + -0.04649998992681503, + 0.007321695797145367, + -0.10775144398212433, + -0.00391661049798131, + 0.0038327143993228674, + 0.13088396191596985, + 0.08441688120365143, + 0.013541549444198608, + 0.03855832666158676, + 0.03110387548804283, + -0.06565454602241516, + -0.06860271841287613, + 0.023810802027583122, + -0.03332322835922241, + 0.023644527420401573, + 0.028693104162812233, + 0.02559114806354046, + 0.019387707114219666, + 0.05286356806755066, + -0.003526118118315935, + -0.03990882635116577, + 0.014931908808648586, + -0.0026798159815371037, + 0.002242851769551635, + -0.010865241289138794, + -0.04077344760298729, + -0.0035654392559081316, + -0.03580398112535477, + 0.010060287080705166, + -0.010338043794035912, + 0.04299260675907135, + 0.0650273934006691, + -0.057729873806238174, + 0.03495991230010986, + -0.03183445706963539, + 0.12589873373508453, + 0.06349345296621323, + -0.04387448728084564, + 0.027302537113428116, + 0.021916640922427177, + 0.01474264357239008, + 0.05346271023154259, + 0.020543986931443214, + -0.09872406721115112, + -0.01680869422852993, + -0.0758204460144043, + 0.00624294625595212, + 0.04102789983153343, + -0.0748601108789444, + -0.031320422887802124, + -0.010178377851843834, + 0.035452522337436676, + -0.11802268773317337, + 0.06320445984601974, + 0.11368700861930847, + 0.041864246129989624, + 0.061122145503759384, + -0.02905820682644844, + 0.024369006976485252, + 0.05711741745471954, + 0.02978239394724369, + -0.026347486302256584, + 0.04013974592089653, + -0.0015646934043616056, + 0.052853770554065704, + -0.008528405800461769, + 0.025993574410676956, + 0.0051799644716084, + -0.011841373518109322, + -0.010170888155698776, + -0.0004974285839125514, + -0.0056904456578195095, + 0.028976814821362495, + -0.025612957775592804, + -0.007067677099257708, + 0.007853658869862556, + -0.07036574184894562, + 0.004437398165464401, + 0.06662792712450027, + 0.02148238755762577, + -0.034229353070259094, + 0.04636123776435852, + 0.007846711203455925, + -0.03644917160272598, + 0.015131408348679543, + -0.017244750633835793, + -0.058868054300546646, + -0.03735995292663574, + -0.03831533342599869, + 0.043237414211034775, + 0.01962481439113617, + 0.006126540247350931, + -0.08215086162090302, + -1.8113091471150256e-08, + 0.019646599888801575, + -0.023031054064631462, + -0.04382684826850891, + -0.024176321923732758, + 0.05300183221697807, + 0.017916178330779076, + -0.012009860947728157, + -0.08043080568313599, + -0.05351540446281433, + -0.06480447202920914, + -0.025410272181034088, + -0.04129762202501297, + -0.07592839747667313, + -0.06066833436489105, + 0.04282071068882942, + 0.06457110494375229, + 0.0028229474555701017, + -0.10647029429674149, + -0.09596829861402512, + 0.023005882278084755, + -0.047289494425058365, + 0.03193815052509308, + -0.05628480017185211, + -0.008672067895531654, + 0.01702113077044487, + -0.0077399336732923985, + 0.08104892075061798, + 0.04585741087794304, + 0.067921943962574, + 0.01572258584201336, + -0.037428949028253555, + 0.06327906996011734, + 0.022229669615626335, + -0.03532465547323227, + -0.0559874065220356, + -0.042562734335660934, + 0.004714658949524164, + -0.04932282865047455, + -0.0119988564401865, + 0.05186283215880394, + 0.015419183298945427, + -0.021889468654990196, + -0.08238036185503006, + -0.060896582901477814, + 0.05681215226650238, + -0.03419424593448639, + 0.012842263095080853, + -0.07485008984804153, + -0.01452578604221344, + -0.02316746488213539, + -0.0033691448625177145, + -0.03638160228729248, + 0.03804464265704155, + 0.019398938864469528, + -0.07365330308675766, + -0.07446125149726868, + 0.08580473810434341, + 0.055612094700336456, + 0.06422758847475052, + 0.0021808871533721685, + 0.09677605330944061, + -0.02264741063117981, + 0.05326034128665924, + 0.014258651994168758 + ], + "control-bold||ctrl,key,keyboard,shortcut,caret": [ + 0.013516351580619812, + -0.10808631032705307, + -0.06847229599952698, + 0.08866245299577713, + 0.016084803268313408, + 0.03251531720161438, + 0.06540631502866745, + -0.0007225396111607552, + 0.03404688090085983, + 0.025566352531313896, + 0.049236733466386795, + 0.013894466683268547, + 0.04708867892622948, + -0.11539753526449203, + 0.025639351457357407, + 0.04862441495060921, + -0.026399072259664536, + -0.03411377966403961, + -0.07395376265048981, + 0.0338025763630867, + -0.012852730229496956, + -0.0028761676512658596, + 0.059095922857522964, + 0.023546872660517693, + -0.045099012553691864, + -0.00016094835882540792, + -0.005883003119379282, + -0.035725001245737076, + 0.007239709608256817, + -0.07985679060220718, + -0.060075145214796066, + -0.07210344821214676, + 0.09022510051727295, + 0.02004498429596424, + -0.06427128612995148, + 0.06686068326234818, + -0.004427657462656498, + -0.06709421426057816, + -0.049859561026096344, + -0.020769841969013214, + -0.013554762117564678, + -0.041980285197496414, + 0.02124853804707527, + 0.020235950127243996, + 0.03215569630265236, + 0.022512288764119148, + -0.05904080346226692, + -0.05323195829987526, + -0.001978991786018014, + -0.0011448903242126107, + -0.026888694614171982, + -0.06821896880865097, + -0.047307632863521576, + 0.00028049119282513857, + 0.050803858786821365, + 0.000802442489657551, + -0.05932577699422836, + -0.011103387922048569, + 0.09452016651630402, + -0.018280474469065666, + -0.033107466995716095, + 0.04510205611586571, + -0.040302030742168427, + 0.014484550803899765, + -0.01433775294572115, + 0.06073206290602684, + -0.026761790737509727, + -0.013083054684102535, + -0.017130333930253983, + -0.012259923852980137, + 0.00752235995605588, + -0.04434898868203163, + -0.02828471176326275, + -0.012197858653962612, + -0.02252528816461563, + 0.0293690487742424, + 0.03291286155581474, + -0.04145513474941254, + -0.0486006885766983, + -0.011202860623598099, + -0.01881346106529236, + 0.023607145994901657, + -0.0312870629131794, + 0.054884832352399826, + 0.07511752098798752, + 0.03982401639223099, + -0.04650825262069702, + -0.08626329153776169, + 0.04516654461622238, + 0.044530998915433884, + -0.019447093829512596, + -0.05892398953437805, + 0.016478795558214188, + 0.025335103273391724, + -0.07880473881959915, + -0.056536346673965454, + 0.07544926553964615, + 0.008162353187799454, + -0.1070268452167511, + 0.05430480092763901, + 0.033919163048267365, + 0.013598167337477207, + 0.04416952654719353, + 0.03986901417374611, + 0.01223730854690075, + -0.013547926209867, + 0.03694276139140129, + -0.027576664462685585, + -0.0514715202152729, + -0.014874527230858803, + -0.023522397503256798, + -0.05912456661462784, + -0.021812546998262405, + -0.06334292143583298, + 0.0101371044293046, + -0.014883354306221008, + -0.05570767819881439, + -0.042814016342163086, + 0.11031702905893326, + 0.07014642655849457, + 0.012412697076797485, + -0.09169156849384308, + -0.08737396448850632, + -0.08408581465482712, + 0.06136384606361389, + 0.004328777547925711, + 0.020243510603904724, + -4.1151173587708925e-34, + 0.10378516465425491, + 0.014369192533195019, + -0.04647127538919449, + 0.10660459846258163, + 0.028714019805192947, + 0.06919090449810028, + -0.025397425517439842, + -0.03229958564043045, + -0.08820340782403946, + 0.004812737461179495, + 0.1302669495344162, + -0.05083145573735237, + -0.08692119270563126, + 0.03704829141497612, + 0.00977755431085825, + -0.10600700974464417, + 0.0040474082343280315, + 0.015690647065639496, + -0.08331049233675003, + -0.033174220472574234, + -0.03234412148594856, + 0.09616558253765106, + -0.04952865466475487, + -0.021770505234599113, + -0.023257898166775703, + 0.024030474945902824, + 0.01662195473909378, + 0.07754816114902496, + -0.028425170108675957, + 0.03448071330785751, + 0.009616650640964508, + 0.04416909068822861, + 0.018668461591005325, + 0.008075819350779057, + -0.08514396101236343, + 0.06245357543230057, + -0.03703665733337402, + 0.005520822014659643, + 0.05157208442687988, + 0.05386332795023918, + -0.08367609977722168, + -0.061614036560058594, + -0.022074196487665176, + -0.09199927747249603, + 0.013167942874133587, + 0.05624165013432503, + -0.003356775501742959, + -0.013803130947053432, + 0.018694913014769554, + -0.007246090564876795, + -0.014438793994486332, + 0.021173423156142235, + -0.017805011942982674, + 0.06595156341791153, + 0.03057730197906494, + 0.009941845200955868, + -0.012427513487637043, + 0.11222274601459503, + 0.022204481065273285, + 0.09737760573625565, + 0.01286377850919962, + -0.003875967115163803, + 0.07174765318632126, + 0.05428323522210121, + -0.012561303563416004, + 0.06229603663086891, + -0.015270901843905449, + 0.00792731624096632, + 0.035430908203125, + -0.02437916398048401, + 0.02011682838201523, + -0.04331745207309723, + 0.024242259562015533, + 0.052745819091796875, + -0.01856232061982155, + 0.00031307461904361844, + 0.01737714372575283, + -0.07631183415651321, + 0.007615457754582167, + -0.07740430533885956, + -0.07966788113117218, + 0.008090593852102757, + -0.059124354273080826, + 0.11694934964179993, + 0.028377696871757507, + -0.077621690928936, + -0.040637899190187454, + -0.020968711003661156, + -0.04330212622880936, + 0.011058656498789787, + -0.07518517225980759, + -0.006106965243816376, + -0.009000139310956001, + -0.05645442008972168, + -0.09882701188325882, + -2.215358143065784e-33, + 0.05258927866816521, + 0.03461883217096329, + -0.029443232342600822, + 0.03429161757230759, + -0.07216677814722061, + 0.0348103903234005, + -0.042895253747701645, + -0.0012385740410536528, + 0.0028241253457963467, + 0.02332078106701374, + 0.085212841629982, + 0.012707953341305256, + 0.0032059422228485346, + -0.07019837945699692, + -8.990741480374709e-05, + 0.07039809972047806, + 0.02582814358174801, + 0.012451183050870895, + -0.0448993444442749, + -0.00985785573720932, + -0.0828748270869255, + -0.05572480335831642, + -0.06470002979040146, + 0.12227410078048706, + -0.05701714754104614, + 0.0053674085065722466, + -0.01792038232088089, + 0.09459085762500763, + 0.0026420471258461475, + -0.028076551854610443, + -0.01462758332490921, + 0.052609071135520935, + 0.03387429937720299, + 0.046123649924993515, + -0.06405658274888992, + 0.020012017339468002, + 0.015559001825749874, + 0.021809125319123268, + -0.014987143687903881, + 0.024705959483981133, + 0.054912153631448746, + -0.00729767233133316, + 0.05977874621748924, + 0.0613439604640007, + -0.05390185862779617, + 0.019381050020456314, + -0.001450993586331606, + -0.10079020261764526, + 0.00466929841786623, + 0.06754507124423981, + 0.052205439656972885, + -0.0621623657643795, + 0.0044676135294139385, + -0.010226764716207981, + -0.11361486464738846, + -0.020947152748703957, + 0.022945305332541466, + 0.026524221524596214, + -0.040038496255874634, + 0.04764429107308388, + 0.0063162981532514095, + -0.003140383865684271, + -0.04083244875073433, + 0.0009442114387638867, + 0.04104875400662422, + -0.044148918241262436, + 0.07169906049966812, + 0.04221702367067337, + 0.08273118734359741, + -0.011307448148727417, + 0.09936585277318954, + 0.026939161121845245, + 0.022077159956097603, + -0.022229978814721107, + 0.025025073438882828, + -0.07435821741819382, + 0.01444327924400568, + 0.01686215214431286, + 0.011973696760833263, + 0.03092428296804428, + 0.08720599114894867, + -0.0017670815577730536, + 0.05211253464221954, + -0.049044765532016754, + -0.11369919031858444, + 0.0977170467376709, + -0.03276441991329193, + 0.04140086472034454, + -0.05353255197405815, + -0.048472341150045395, + -0.07337705045938492, + 0.03241933509707451, + 0.05036286264657974, + -0.03509516641497612, + -0.08072807639837265, + -2.2589723869259615e-08, + -0.012189488857984543, + -0.027914121747016907, + -0.0006778895622119308, + -0.03421767055988312, + -0.014713434502482414, + -0.07230021804571152, + -0.05646149441599846, + -0.020568465813994408, + -0.05440825968980789, + 0.017448022961616516, + 0.028264859691262245, + 0.02513471059501171, + -0.02924915961921215, + -0.07788011431694031, + 0.07625365257263184, + -0.03982686996459961, + -0.07707052677869797, + 0.10841049253940582, + -0.02233109064400196, + -0.04724922403693199, + -0.003969706594944, + 0.029102550819516182, + 0.054748084396123886, + -0.007720382418483496, + 0.0714736208319664, + 0.019196711480617523, + -0.07276438921689987, + 0.10237649828195572, + 0.08749548345804214, + 0.08953136205673218, + 0.04942331463098526, + 0.05124010145664215, + -0.006908340845257044, + -0.014679498970508575, + -0.0458417609333992, + -0.023565830662846565, + 0.017105577513575554, + -0.057785626500844955, + 0.024052884429693222, + 0.1009710356593132, + 0.017725568264722824, + -0.032574404031038284, + -0.06960920989513397, + -0.01674477569758892, + -0.13721761107444763, + 0.06262916326522827, + 0.05557539314031601, + 0.011808614246547222, + -0.05487387627363205, + -0.1144728735089302, + -0.014217546209692955, + 0.05330721661448479, + 0.03028559498488903, + 0.067238450050354, + -0.06535555422306061, + -0.017593882977962494, + 0.0023965053260326385, + 0.11324609816074371, + -0.006493985652923584, + 0.0159648135304451, + 0.09296256303787231, + 0.007634053938090801, + -0.007606814615428448, + -0.006123997271060944 + ], + "cookie-bold||privacy,dessert,food,dining": [ + 0.004920230247080326, + -0.003355002496391535, + -0.035772278904914856, + 0.0388558991253376, + 0.008626715280115604, + -0.028285006061196327, + 0.1556449979543686, + -0.07363969087600708, + -0.02389870211482048, + -0.02864261157810688, + 0.057188186794519424, + -0.04804255813360214, + -0.06838172674179077, + -0.05174078792333603, + 0.03506598621606827, + -0.06138087436556816, + 0.10926422476768494, + 0.022133909165859222, + 0.009969329461455345, + -0.038125041872262955, + 0.0030305846594274044, + -0.001822231919504702, + 0.08086081594228745, + 0.058503419160842896, + -0.03406548127532005, + -0.012432649731636047, + 0.08640828728675842, + -0.06551417708396912, + -0.043365832418203354, + -0.08113390952348709, + -0.020260049030184746, + 0.030741356313228607, + 0.06839589774608612, + -0.04475768283009529, + 0.02668122760951519, + -0.046481356024742126, + 0.03190501406788826, + -0.057887572795152664, + 0.029106009751558304, + -0.02699676714837551, + -0.05888308584690094, + -0.053981054574251175, + -0.022756479680538177, + 0.027410799637436867, + -0.08029200881719589, + 0.008074164390563965, + -0.046904098242521286, + -0.001859418349340558, + -0.032730136066675186, + -0.009488706476986408, + 0.01167404092848301, + 0.028598831966519356, + -0.08636194467544556, + 0.01552158035337925, + -0.020711613819003105, + -0.04522249847650528, + -0.14794836938381195, + -0.05655621737241745, + -0.011271963827311993, + 0.08102497458457947, + -0.02101106569170952, + 0.009475803934037685, + 0.07546473294496536, + 0.04842612147331238, + 0.018557587638497353, + -0.052369117736816406, + -0.026716064661741257, + -0.007572511211037636, + -0.0359756201505661, + -0.014681925997138023, + -0.006774437613785267, + 0.026408012956380844, + 0.032838355749845505, + -0.039798226207494736, + 0.012950239703059196, + -0.06202857568860054, + 0.04529786482453346, + -0.04465872049331665, + -0.04123816639184952, + -0.04060768708586693, + -0.08168844133615494, + -0.04719920456409454, + 0.024144679307937622, + 0.021799063310027122, + -0.015157505869865417, + -0.020939895883202553, + -0.07661347836256027, + 0.026509404182434082, + 0.025237824767827988, + -0.010032664984464645, + -0.08042135089635849, + -0.03008868917822838, + -0.00616519246250391, + 0.012008827179670334, + -0.02784133143723011, + -0.04466085135936737, + 0.007120555732399225, + -0.030128944665193558, + 0.008614839985966682, + 0.11001706123352051, + 0.005834148731082678, + 0.1087828055024147, + 0.008307097479701042, + -0.014237698167562485, + -0.01813114620745182, + 0.007613832596689463, + -0.069473996758461, + 0.016797436401247978, + 0.10357659310102463, + 0.04742775112390518, + -0.007965789176523685, + -0.016485799103975296, + -0.013577304780483246, + -0.0685093030333519, + -0.062099941074848175, + -0.0644954964518547, + -0.02504097856581211, + -0.0842503234744072, + 0.15003857016563416, + 0.0038502735551446676, + 0.019444040954113007, + 0.0452146977186203, + -0.008971859700977802, + 0.007106193341314793, + -0.010760819539427757, + -0.01848006434738636, + 0.06858832389116287, + -3.913840399815469e-33, + -0.01791391335427761, + 0.03170076385140419, + -0.031214382499456406, + 0.0464751161634922, + 0.04777145013213158, + 0.05799289792776108, + -0.01675613969564438, + -0.030940689146518707, + -0.07873169332742691, + 0.08447092771530151, + 0.08742345869541168, + 0.06500055640935898, + 0.004038974642753601, + 0.10342947393655777, + 0.0470278337597847, + 0.06407672166824341, + 0.012169396504759789, + 0.00024326481798198074, + 0.04214900732040405, + -0.04988075792789459, + -0.0552273690700531, + 0.03708261251449585, + 0.019464675337076187, + 0.006927473936229944, + -0.03578711673617363, + 0.002491213381290436, + 0.008791621774435043, + -0.054305315017700195, + 0.02334989607334137, + 0.030482180416584015, + 0.06239283084869385, + -0.04216086119413376, + 0.03239474818110466, + -0.043152112513780594, + 0.037200845777988434, + 0.054464276880025864, + -0.008858036249876022, + -0.04035019502043724, + 0.006476110313087702, + -0.011650106869637966, + -0.07569471746683121, + -0.028572063893079758, + -0.008748010732233524, + 0.03218277916312218, + -0.09923650324344635, + 0.06334871798753738, + -0.04869101569056511, + 0.009045250713825226, + -0.008268027566373348, + 0.022819144651293755, + -0.06275800615549088, + 0.00864723976701498, + 0.03660327568650246, + 0.017054779455065727, + -0.06881938129663467, + -0.038381483405828476, + 0.030059827491641045, + 0.030920902267098427, + -0.04157910495996475, + -0.06037362292408943, + 0.024402232840657234, + 0.045211680233478546, + -0.007955513894557953, + -0.12761647999286652, + -0.02954231947660446, + 0.026498079299926758, + -0.042814381420612335, + 0.06302083283662796, + 0.06857236474752426, + -0.04220997914671898, + -0.005397055298089981, + 0.015472074039280415, + 0.09122846275568008, + -0.026190873235464096, + -0.04476378485560417, + 0.055111393332481384, + 0.050425391644239426, + 0.06103147193789482, + 0.028976496309041977, + 0.002108011394739151, + 0.026399310678243637, + 0.02380554936826229, + -0.059114035218954086, + 0.09908921271562576, + -0.07748996466398239, + 0.02544240653514862, + -0.009053943678736687, + -0.06031198799610138, + 0.026061490178108215, + 0.06946826726198196, + -0.06910337507724762, + -0.0061405072920024395, + 0.06050625443458557, + 0.02819037437438965, + -0.16112354397773743, + 3.038716722545443e-34, + -0.04216691479086876, + 0.013929188251495361, + -0.08608998358249664, + -0.026949040591716766, + -0.011120530776679516, + -0.03982064500451088, + -0.022496553137898445, + 0.013113078661262989, + 0.005253989715129137, + -0.03613709285855293, + -0.06793010234832764, + -0.011683790944516659, + -0.005414807703346014, + -0.01780690997838974, + -0.013686994090676308, + 0.11474772542715073, + 0.03607930243015289, + 0.14503206312656403, + -0.02601766027510166, + 0.007901479490101337, + -0.05676576495170593, + 0.07031156867742538, + -0.08429594337940216, + 0.11553267389535904, + 0.028864042833447456, + 0.056348226964473724, + 0.04987217113375664, + 0.006867486983537674, + -0.06773308664560318, + -0.04972445219755173, + -0.05511860176920891, + -0.08909198641777039, + 0.05840134993195534, + -0.027747932821512222, + -0.012859577313065529, + 0.053957756608724594, + -0.014370397664606571, + -0.01125292293727398, + -0.07948710024356842, + 0.008992431685328484, + -0.03373941779136658, + 0.011945192702114582, + 0.02850709669291973, + 0.06281580775976181, + 0.012563519179821014, + 0.07305260002613068, + -0.09828086197376251, + 0.003409172873944044, + -0.02950461208820343, + 0.13838571310043335, + 0.05483353137969971, + -0.021776190027594566, + -0.033458221703767776, + -0.07446180284023285, + -0.029076380655169487, + 0.057651910930871964, + -0.08576765656471252, + -0.015619980171322823, + 0.0017383729573339224, + -0.04964543133974075, + 0.011484094895422459, + 0.04452062025666237, + 0.02085009776055813, + 0.08889804780483246, + 0.054928988218307495, + -0.036421895027160645, + -0.04087775573134422, + -0.03991979733109474, + 0.06624018400907516, + -0.026555944234132767, + -0.01769878901541233, + -0.03334445506334305, + 0.01934429444372654, + 0.022483475506305695, + 0.04392615333199501, + 0.0010590823367238045, + 0.10473651438951492, + -0.06051011383533478, + -0.022132672369480133, + 0.05661170929670334, + -0.03999628126621246, + -0.03502620756626129, + -0.03633108735084534, + 0.0202980674803257, + 0.02899887226521969, + 0.03539830073714256, + -0.018598807975649834, + -0.02723083272576332, + -0.027614500373601913, + -0.03354082629084587, + -0.012060128152370453, + 0.09465350955724716, + -0.049553319811820984, + -0.0217625442892313, + -0.03364663943648338, + -1.8114583610895352e-08, + 0.11868060380220413, + -0.07344251126050949, + -0.0464082732796669, + 0.05190679803490639, + 0.08556628227233887, + -0.030435752123594284, + 0.024184804409742355, + -0.04901973158121109, + -0.11665868759155273, + 0.032669905573129654, + -0.018113907426595688, + 0.07079051434993744, + -0.009904094971716404, + 0.03201697766780853, + -0.01653996855020523, + 0.03599031642079353, + -0.014158947393298149, + -0.004794446751475334, + -0.04214751720428467, + -0.036776136606931686, + -0.058521680533885956, + 0.02055307850241661, + 0.036689210683107376, + -0.051451921463012695, + 0.009206159971654415, + 0.041407905519008636, + 0.005638281814754009, + 0.022441579028964043, + 0.05441034957766533, + 0.1190764307975769, + -0.0038406322710216045, + 0.053562939167022705, + -0.07096993178129196, + 0.022716160863637924, + -0.018924005329608917, + -0.004702918231487274, + -0.08022119104862213, + -0.050074245780706406, + -0.05886665731668472, + 0.012348069809377193, + -0.045842431485652924, + -0.0359778068959713, + 0.020862849429249763, + 0.012089586816728115, + -0.00975298136472702, + -0.01471623219549656, + -0.004160795360803604, + 0.04006878659129143, + -0.010715441778302193, + -0.014112203381955624, + -0.07986942678689957, + -0.01842707023024559, + 0.0013097228948026896, + 0.05120783671736717, + 0.016811799257993698, + -0.04129445552825928, + 0.044741444289684296, + 0.04359382018446922, + 0.0681467205286026, + 0.004010503645986319, + 0.16310755908489227, + 0.04814932495355606, + -0.05047541484236717, + -0.03107384964823723 + ], + "cooking-pot-bold||stew,kitchen,steaming,restaurants,food,dining": [ + 0.051705725491046906, + -0.017051950097084045, + -0.023912658914923668, + 0.07778215408325195, + -0.04801902174949646, + 0.015970466658473015, + 0.006387206260114908, + -0.1337444931268692, + 0.01780707575380802, + -0.06100685894489288, + 0.010109692811965942, + -0.061897266656160355, + -0.026034822687506676, + -0.04935241490602493, + -0.02260841429233551, + -0.12680193781852722, + 0.10733011364936829, + 0.003233528696000576, + 0.03148430585861206, + -0.07247113436460495, + -0.062206123024225235, + 0.04587312042713165, + 0.05727468430995941, + -0.009715214371681213, + 0.1196293756365776, + 0.046523790806531906, + 0.003071267856284976, + 0.07253731787204742, + -0.012110747396945953, + -0.03790229558944702, + 0.0014575283275917172, + 0.04257145896553993, + -0.006603331305086613, + 0.043925922363996506, + -0.004618697799742222, + 0.024515453726053238, + 0.011820055544376373, + -0.016259690746665, + 0.019588107243180275, + 0.04187391325831413, + 0.06025364622473717, + -0.06939102709293365, + -0.027650585398077965, + -0.00044653084478341043, + 0.019216708838939667, + 0.037640202790498734, + -0.12216581404209137, + -0.06995639204978943, + -0.006310773082077503, + -0.03717861324548721, + -0.09172768890857697, + -0.03179224953055382, + -0.0665966048836708, + 0.0865274965763092, + 0.07995935529470444, + -0.040395356714725494, + -0.03372713550925255, + 0.03327540308237076, + 0.04015691578388214, + 0.044743612408638, + -0.024841684848070145, + -0.0004091810551472008, + 0.0063371858559548855, + 0.0651535838842392, + 0.003625231795012951, + -0.05167529731988907, + -0.09717585146427155, + 0.09478744864463806, + -0.06904203444719315, + -0.0034294414799660444, + 0.016898635774850845, + 0.012731124646961689, + 0.0294860377907753, + -0.00917717907577753, + -0.031721439212560654, + -0.026785437017679214, + -0.015551918186247349, + -0.089025117456913, + -0.07393716275691986, + -0.03769739717245102, + -0.024488354101777077, + 0.09048932045698166, + -0.049254193902015686, + -0.027479229494929314, + -0.06632374972105026, + 0.04025983437895775, + -0.09637509286403656, + -0.0431625097990036, + 0.007064590696245432, + -0.0639427974820137, + -0.003976586274802685, + -0.01813364587724209, + 0.00747647974640131, + -0.009444748051464558, + 0.027382660657167435, + 0.07890333980321884, + 0.05510210990905762, + -0.05160267651081085, + -0.04657336324453354, + 0.006801213137805462, + 0.007285716012120247, + 0.0010618225205689669, + -0.005983480717986822, + -0.012175548821687698, + 0.010412178002297878, + 0.02425975911319256, + -0.008642823435366154, + -0.020141737535595894, + 0.03554505109786987, + -0.024804698303341866, + -0.0031363964080810547, + -0.00565668661147356, + -0.05898497253656387, + -0.1258707046508789, + -0.017015282064676285, + -0.05219368636608124, + -0.006909068673849106, + -0.026988206431269646, + 0.04606841504573822, + -0.0016681106062605977, + -0.06375577300786972, + -0.016082799062132835, + -0.040203459560871124, + -0.018512776121497154, + -0.04621552303433418, + 0.002328751143068075, + 0.0353991836309433, + -3.3380615936056195e-33, + -0.015534486621618271, + -0.011368556879460812, + -0.026018721982836723, + 0.07991410046815872, + 0.14504165947437286, + -0.0756092444062233, + 0.0014034199994057417, + -0.0742613673210144, + -0.003800048725679517, + 0.060703955590724945, + 0.07527107000350952, + 0.031112808734178543, + -0.10371673852205276, + 0.07562216371297836, + 0.0661562979221344, + -0.05667131021618843, + 0.0005967066972516477, + 0.030304327607154846, + -0.032141465693712234, + -0.03569736331701279, + -0.008376463316380978, + 0.023982133716344833, + -0.0030752390157431364, + 0.020262520760297775, + -0.09164666384458542, + -0.07864926010370255, + 0.038734760135412216, + -0.07240990549325943, + -0.07970091700553894, + -0.009948046877980232, + 0.030455421656370163, + 0.04613138735294342, + 0.0325273722410202, + -0.03153061866760254, + -0.0935339629650116, + -0.05725317820906639, + 0.004369380418211222, + -0.006156128365546465, + 0.003514334326609969, + -0.0009779734537005424, + -0.0990513265132904, + 0.006633848883211613, + 0.0006775732035748661, + 0.06858372688293457, + -0.0008554704836569726, + 0.06991440802812576, + -0.04096333310008049, + 0.027991440147161484, + 0.005351555533707142, + 0.03949149698019028, + 0.011855147778987885, + -0.026377690955996513, + 0.0519568994641304, + -0.008222767151892185, + -0.009760851040482521, + -0.0005290087428875268, + 0.0022172627504915, + 0.01885816641151905, + 0.035523150116205215, + 0.022501908242702484, + 0.010365880094468594, + 0.052065350115299225, + -0.019573170691728592, + -0.036406926810741425, + -0.057472921907901764, + 0.003985311836004257, + -0.03926854953169823, + 0.048713620752096176, + 0.1127401664853096, + 0.05204690992832184, + -0.01851058378815651, + 0.018926270306110382, + 0.024596892297267914, + 0.01726619154214859, + 0.07509483397006989, + 0.01281003002077341, + -0.04019642621278763, + -0.053935643285512924, + -0.0007192554767243564, + -0.017677640542387962, + -0.02894662693142891, + 0.027463536709547043, + -0.09087613224983215, + 0.17794491350650787, + -0.07448912411928177, + 0.04506012424826622, + -0.04604118689894676, + -0.05535804480314255, + 0.05439390614628792, + 0.08827527612447739, + -0.10443089157342911, + 0.038765937089920044, + 0.07351385056972504, + -0.037806715816259384, + -0.11956524848937988, + 6.506655564566548e-34, + 0.05035608634352684, + 0.052658211439847946, + -0.08948461711406708, + 0.015320762060582638, + 0.00890431459993124, + -0.05442209914326668, + -0.03380092978477478, + -0.031012220308184624, + 0.034812506288290024, + -0.00385724613443017, + -0.04765475541353226, + -0.021992424502968788, + -0.03082921728491783, + -0.028945574536919594, + -0.08358483016490936, + 0.058862000703811646, + -0.01285897009074688, + 0.08604945987462997, + 0.03654618188738823, + 0.03998269885778427, + -0.03741373121738434, + -0.017794093117117882, + -0.0700031965970993, + 0.07344479113817215, + 0.02177230827510357, + 0.07866163551807404, + 0.061805445700883865, + 0.06254362314939499, + -0.08098962157964706, + -0.02064632438123226, + 0.03230096027255058, + -0.07198598235845566, + 0.05723252147436142, + 0.039558522403240204, + -0.020023830235004425, + 0.10395630449056625, + 0.055206164717674255, + -0.058958202600479126, + -0.05166520178318024, + 0.0026141193229705095, + 0.08597702533006668, + -0.007193995174020529, + 0.01635877974331379, + 0.12251868098974228, + -0.035719189792871475, + 0.031206684187054634, + -0.013037254102528095, + -0.015041782520711422, + -0.02012898586690426, + 0.01808227226138115, + 0.0215627271682024, + -0.02939504384994507, + -0.07299594581127167, + 0.002064361469820142, + 0.0009845386957749724, + 0.001236808835528791, + 0.06232446804642677, + -0.005950571969151497, + -0.07972852885723114, + 0.01224526297301054, + 0.0059583368711173534, + 0.10477780550718307, + 0.04751167073845863, + 0.0435049943625927, + 0.04993409663438797, + -0.005284823942929506, + 0.03250809386372566, + -0.04333242028951645, + 0.078068807721138, + -0.022359661757946014, + -0.013589752838015556, + 0.010464075021445751, + 0.03050559014081955, + -0.009073251858353615, + -0.036036912351846695, + -0.01669374667108059, + 0.08255059272050858, + -0.0010780059965327382, + 0.0037563531659543514, + 0.07127413153648376, + -0.03025374561548233, + -0.05409963056445122, + -0.0756077691912651, + -0.006719043478369713, + -0.005033169407397509, + 0.02712719887495041, + 0.0006749582826159894, + 0.01878937892615795, + 0.021814193576574326, + 0.07662363350391388, + 0.01815437152981758, + 0.05070576071739197, + 0.0011452004546299577, + -0.03457992896437645, + 0.03616386279463768, + -2.0914805887173316e-08, + 0.003404621034860611, + -0.029159197583794594, + -0.06084577366709709, + 0.029845071956515312, + -0.00806873943656683, + -0.11577685177326202, + 0.04554532468318939, + -0.04403729736804962, + -0.017443420365452766, + 0.00334095093421638, + -0.023975661024451256, + -0.0038399158511310816, + 0.010431632399559021, + -0.012722477316856384, + 0.08313910663127899, + 0.025028299540281296, + 0.03291246294975281, + 0.04469699412584305, + -0.04229924455285072, + -0.010472545400261879, + 0.01377857942134142, + 0.01870492845773697, + -0.014872794970870018, + -0.07836200296878815, + 0.014752538874745369, + -0.027050169184803963, + -0.06385085731744766, + 0.0354623943567276, + 0.08947375416755676, + 0.046081624925136566, + 0.04968686029314995, + 0.006718818563967943, + -0.05333907902240753, + 0.03340224549174309, + 0.009211355820298195, + -0.05038313567638397, + -0.1278059035539627, + -0.06211422011256218, + -0.020633157342672348, + -0.0071540712378919125, + -0.12372911721467972, + -0.09113816171884537, + -0.028841493651270866, + -0.03495445102453232, + -0.0615200512111187, + 0.03014022670686245, + -0.01343983318656683, + 0.007206506561487913, + 0.008156071417033672, + 0.006534616928547621, + 0.013591228984296322, + -0.010643310844898224, + 0.14045457541942596, + -8.480082760797814e-05, + 0.01119198277592659, + 0.04218669235706329, + 0.06162088364362717, + 0.04983408376574516, + 0.07942036539316177, + -0.058037370443344116, + 0.07699786871671677, + 0.09223340451717377, + 0.010210315696895123, + -0.0005719143082387745 + ], + "copy-bold||duplicated,copied,clipboard": [ + -0.030899178236722946, + -0.07955202460289001, + -0.014757064171135426, + 0.05791402980685234, + 0.031470898538827896, + -0.015383893623948097, + 0.05800925940275192, + -0.06647112965583801, + 0.054576002061367035, + -0.07000481337308884, + 0.03565142676234245, + 0.033464252948760986, + 0.027185829356312752, + -0.0832645371556282, + -0.020150866359472275, + 0.023306570947170258, + 0.04101906344294548, + 0.05381831154227257, + -0.02941826917231083, + -0.00830959901213646, + 0.0298745259642601, + 0.005950090941041708, + 0.012899014167487621, + 0.055932652205228806, + 0.067247174680233, + 0.035464752465486526, + -0.004290658514946699, + -0.022967804223299026, + 0.03624277561903, + -0.06281686574220657, + 0.02309400774538517, + -0.070966936647892, + 0.13452380895614624, + -0.003932303283363581, + 0.02542387880384922, + 0.08720133453607559, + -0.04068044200539589, + -0.006420995108783245, + 0.07749699056148529, + -0.0038606994785368443, + 0.012584693729877472, + -0.07171204686164856, + -0.04038310423493385, + 0.02078264020383358, + -0.10265905410051346, + -0.014170744456350803, + -0.06471537053585052, + 0.0289133470505476, + 0.04246712476015091, + 0.001586877042427659, + -0.006833383347839117, + -0.11078361421823502, + -0.0897413045167923, + -0.060538146644830704, + 0.05524234473705292, + -0.014415993355214596, + 0.009360983967781067, + -0.016922300681471825, + 0.07148751616477966, + -0.04102344438433647, + -0.0407223179936409, + 0.10870610922574997, + 0.05433287099003792, + 0.05436861142516136, + 0.09700179100036621, + 0.057622041553258896, + -0.01343580987304449, + 0.04408581554889679, + -0.07490324974060059, + 0.04257919266819954, + 0.04572973772883415, + -0.0031601651571691036, + -0.011476803570985794, + 0.029123036190867424, + -0.020815791562199593, + 0.00914877001196146, + -0.02558954805135727, + 0.04210788756608963, + -0.11152362823486328, + -0.018416911363601685, + -0.06447388231754303, + -0.10278552025556564, + 0.030197957530617714, + 0.04394852742552757, + 0.06779401749372482, + 0.048758041113615036, + -0.06132587417960167, + -0.041013799607753754, + -0.023856641724705696, + -0.01874433271586895, + -0.005329853855073452, + 0.024061143398284912, + 0.06048336252570152, + 0.0527888759970665, + -0.047288332134485245, + -0.02002977766096592, + 0.020291568711400032, + 0.06854744255542755, + -0.012933851219713688, + 0.05327380821108818, + -0.0018782592378556728, + 0.0535256527364254, + 0.0509786494076252, + 0.028722696006298065, + -0.04394329711794853, + -0.02423262782394886, + -0.002859188709408045, + -0.09747734665870667, + -0.04993326589465141, + 0.012498817406594753, + 0.05158033221960068, + -0.0270053930580616, + 0.024251343682408333, + -0.039437633007764816, + 0.07226154953241348, + -0.056391168385744095, + -0.01997746154665947, + -0.03211573511362076, + 0.021193459630012512, + 0.0573723241686821, + 0.056151892989873886, + -0.009303083643317223, + -0.0386272557079792, + 0.0031534445006400347, + 0.016666652634739876, + 0.017209729179739952, + 0.05921514332294464, + -1.1330432090522638e-33, + 0.0855911523103714, + 0.04953236132860184, + -0.013516897335648537, + 0.050199177116155624, + 0.03100430592894554, + -0.010844872333109379, + -0.0004449911357369274, + -0.041189540177583694, + -0.11372630298137665, + -0.04608329012989998, + 0.08725146949291229, + -0.011729244142770767, + 0.005140859168022871, + 0.05337533727288246, + -0.0954199880361557, + 0.004434163682162762, + 0.02726793847978115, + 0.012615937739610672, + -0.08322961628437042, + 0.0653851106762886, + -0.024803526699543, + 0.04503946006298065, + -0.0037209298461675644, + 0.027802087366580963, + -0.003554088994860649, + -0.07828802615404129, + -0.019138921052217484, + -0.026857756078243256, + 0.01537969708442688, + 0.03831635043025017, + -0.04406648501753807, + -0.035127583891153336, + 0.0011391311418265104, + 0.029310761019587517, + -0.05171813815832138, + 0.06109748035669327, + 0.005169059615582228, + -0.012018721550703049, + 0.025990400463342667, + 0.061473388224840164, + -0.04490547627210617, + -0.02147666923701763, + 0.004609447903931141, + -0.057282283902168274, + 0.03820803016424179, + 0.012572984211146832, + -0.027621496468782425, + 0.02240903675556183, + -0.0319724977016449, + -0.016174737364053726, + -0.0018472968367859721, + -0.004855431150645018, + -0.021426325663924217, + -0.0592891201376915, + -0.03276445344090462, + -0.08690664917230606, + -0.019848881289362907, + 0.0011766664683818817, + 0.05085183307528496, + 0.06763667613267899, + 0.053584273904561996, + 0.10672720521688461, + 0.0178249329328537, + 0.06757370382547379, + 0.034376632422208786, + 0.06664159893989563, + 0.0006594267324544489, + 0.011222677305340767, + 0.037226445972919464, + -0.03472905233502388, + 0.03490619361400604, + 0.025527607649564743, + -0.09705723077058792, + -0.0003906518977601081, + -0.007373365573585033, + -0.0566922090947628, + -0.031253404915332794, + -0.09759365767240524, + 0.10605928301811218, + -0.10956817865371704, + -0.13160009682178497, + 0.012770820409059525, + -0.06135578826069832, + -0.10751446336507797, + 0.001501055434346199, + 0.02290274202823639, + 0.0006802025600336492, + -0.06648208200931549, + -0.046654194593429565, + 0.009739537723362446, + 0.030040830373764038, + -0.03720755875110626, + -0.06187184527516365, + -0.07686686515808105, + 0.007544906344264746, + -4.816339687477216e-34, + 0.09450383484363556, + -0.0023187357001006603, + 0.07835710048675537, + 0.07128463685512543, + -0.04264409840106964, + 0.013901504687964916, + -0.07890287041664124, + 0.03156149387359619, + -0.097927525639534, + -0.005130518693476915, + 0.03299659490585327, + 0.012817306444048882, + -0.066061832010746, + -0.02565184235572815, + -0.02169276401400566, + 0.041805267333984375, + 0.04794327914714813, + 0.08830622583627701, + -0.10343241691589355, + -0.09948447346687317, + 0.01719094067811966, + -0.06394201517105103, + 0.046779364347457886, + 0.15067678689956665, + -0.08257432281970978, + -0.025590164586901665, + -0.07079815119504929, + -0.03157728165388107, + 0.07221260666847229, + -0.034084253013134, + 0.00022879634343553334, + 0.07556559890508652, + -0.019937150180339813, + 0.009917492046952248, + -0.03399987146258354, + 0.08657634258270264, + 0.04580170661211014, + 0.0576370470225811, + 0.04098214581608772, + -0.0038525552954524755, + -0.02846650406718254, + -0.034821927547454834, + -0.007339235860854387, + -0.02153630182147026, + -0.01792736165225506, + -0.04326346889138222, + 0.0005359909264370799, + 0.021473636850714684, + 0.025541014969348907, + 0.041720110923051834, + 0.028049256652593613, + -0.057870712131261826, + -0.05929356440901756, + 0.006996523588895798, + -0.05402122437953949, + -0.005977219436317682, + 0.012866554781794548, + 0.08083244413137436, + -0.009332445450127125, + 0.003927247598767281, + -0.011075966991484165, + 0.047836679965257645, + -0.0433637909591198, + -0.04226380214095116, + 0.06411753594875336, + -0.08577024191617966, + 0.08742392808198929, + 0.04706336930394173, + 0.00705744419246912, + 0.03285796940326691, + 0.01861143857240677, + 0.026260893791913986, + 0.004589561372995377, + -0.014517681673169136, + 0.004640915896743536, + -0.030333256348967552, + 0.02292058616876602, + 0.07887687534093857, + -0.024699602276086807, + 0.0483790785074234, + 0.000940742262173444, + 0.021762927994132042, + 0.022388562560081482, + 0.07589275389909744, + -0.07929299771785736, + 0.05573684349656105, + 0.01718716137111187, + 0.007618894334882498, + -0.024742987006902695, + -0.07709891349077225, + -0.0668710246682167, + 0.01746145263314247, + 0.018814146518707275, + -0.0007289986242540181, + -0.023827336728572845, + -1.6712807138219432e-08, + -0.018155047670006752, + 0.005810083821415901, + -0.026899738237261772, + -0.0031095652375370264, + -0.009541742503643036, + -0.07138188183307648, + -0.06754253804683685, + -0.09457708150148392, + -0.047394149005413055, + -0.034392472356557846, + -0.008665421977639198, + 0.02976338379085064, + -0.011524049565196037, + -0.053697191178798676, + -0.018522460013628006, + -0.006697097327560186, + 0.005956549197435379, + 0.003664702642709017, + -0.0021479495335370302, + -0.06603928655385971, + -0.006299040745943785, + 0.0027967067435383797, + 0.0778699666261673, + 0.020640267059206963, + -0.034408003091812134, + -0.03838160261511803, + -0.10757898539304733, + 0.0008352089207619429, + 0.1142614409327507, + 0.04357140138745308, + 0.0594465509057045, + 0.028632355853915215, + -0.004463063087314367, + -0.0446103997528553, + 0.00018182367784902453, + -0.08739771693944931, + 0.023519204929471016, + -0.022628488019108772, + -0.015218772925436497, + 0.08828870952129364, + -0.03874580189585686, + -0.05298042297363281, + -0.023075781762599945, + -0.013483790680766106, + 0.019402893260121346, + -0.02538469433784485, + 0.04573862999677658, + -0.03389371186494827, + -0.0388631634414196, + -0.10464464128017426, + 0.019307713955640793, + 0.00044067660928703845, + 0.01876561902463436, + 0.15588262677192688, + -0.04575237259268761, + -0.07447683066129684, + 0.029605085030198097, + 0.14501991868019104, + 0.06973162293434143, + 0.028037378564476967, + 0.13098283112049103, + -0.02359074167907238, + 0.030992133542895317, + 0.013724411837756634 + ], + "copy-simple-bold||duplicated,copied,clipboard": [ + -0.029374325647950172, + -0.08053592592477798, + -0.00967506505548954, + 0.05758488550782204, + 0.038216013461351395, + -0.017794324085116386, + 0.04091532900929451, + -0.05951816588640213, + 0.027059530839323997, + -0.06110088527202606, + 0.03299757093191147, + 0.023629173636436462, + 0.027758780866861343, + -0.08124084025621414, + -0.0149749256670475, + 0.016237866133451462, + 0.04441042244434357, + 0.045525144785642624, + -0.022985128685832024, + 0.005636265967041254, + 0.018877029418945312, + -0.008667705580592155, + -0.0015796750085428357, + 0.057491205632686615, + 0.06777045130729675, + 0.03262368217110634, + -0.007056055590510368, + -0.006476645823568106, + 0.05017383024096489, + -0.05843338370323181, + 0.02502363733947277, + -0.06764180958271027, + 0.14198528230190277, + -0.01101918425410986, + 0.024919195100665092, + 0.0844261646270752, + -0.02960369549691677, + -0.0011359247146174312, + 0.06559963524341583, + -0.012738279066979885, + 0.012876477092504501, + -0.0718795582652092, + -0.037538278847932816, + 0.027823714539408684, + -0.11778663843870163, + -0.015247342176735401, + -0.06084343045949936, + 0.03310345485806465, + 0.04770810157060623, + -0.019549470394849777, + 0.005042812321335077, + -0.10385940223932266, + -0.08966205269098282, + -0.06805408000946045, + 0.05533553659915924, + -0.008806327357888222, + -0.0029710193630307913, + -0.011123676784336567, + 0.06171457841992378, + -0.03800616040825844, + -0.037928275763988495, + 0.10647754371166229, + 0.050987452268600464, + 0.0467107892036438, + 0.08759058266878128, + 0.05221506953239441, + -0.01969071850180626, + 0.041104093194007874, + -0.07128260284662247, + 0.03697047382593155, + 0.03176696598529816, + -0.014531667344272137, + -0.023597436025738716, + 0.0416729710996151, + -0.023858733475208282, + -0.004885225556790829, + -0.027646781876683235, + 0.05928761512041092, + -0.12626494467258453, + -0.0023257348220795393, + -0.07379627227783203, + -0.11316854506731033, + 0.025337066501379013, + 0.06478269398212433, + 0.07249443233013153, + 0.04207943007349968, + -0.06401574611663818, + -0.030730243772268295, + -0.00991755723953247, + -0.022525019943714142, + 0.0013943600933998823, + 0.030366050079464912, + 0.0698164850473404, + 0.04713260009884834, + -0.036835651844739914, + -0.019860003143548965, + 0.023612352088093758, + 0.07068365812301636, + -0.03902939334511757, + 0.0464751198887825, + 0.002541569760069251, + 0.059544891119003296, + 0.07086978107690811, + 0.011910894885659218, + -0.04652928560972214, + -0.022684164345264435, + 0.00023278740991372615, + -0.10745003819465637, + -0.04952824115753174, + 0.000910805189050734, + 0.0433402955532074, + -0.032579489052295685, + 0.03197627142071724, + -0.029995936900377274, + 0.0880766212940216, + -0.051316358149051666, + -0.026271753013134003, + -0.027915462851524353, + 0.01888076774775982, + 0.07015597820281982, + 0.05570531263947487, + -0.0070147281512618065, + -0.04451800882816315, + 0.008033140562474728, + 0.011548355221748352, + 0.022437363862991333, + 0.0608031190931797, + -1.8668389453973534e-33, + 0.09693311899900436, + 0.0715193897485733, + -0.017444590106606483, + 0.055743422359228134, + 0.02611301839351654, + -0.01448471937328577, + 0.0013426294317469, + -0.03437955304980278, + -0.11074580252170563, + -0.04263376072049141, + 0.09929974377155304, + -0.030708597972989082, + 0.0029492073226720095, + 0.05561774596571922, + -0.10052747279405594, + 0.006537438835948706, + 0.022035906091332436, + 0.005880721844732761, + -0.08165788650512695, + 0.053973156958818436, + -0.02800239622592926, + 0.06125865876674652, + 0.0014015987981110811, + 0.01584424264729023, + -0.006277764216065407, + -0.06898124516010284, + -0.019878314808011055, + -0.031085407361388206, + 0.024987589567899704, + 0.033658333122730255, + -0.04987534135580063, + -0.039259862154722214, + 0.004360616207122803, + 0.04135220870375633, + -0.054256685078144073, + 0.04715815186500549, + 0.024344131350517273, + -0.0134833212941885, + 0.02416469156742096, + 0.04479680955410004, + -0.05088131129741669, + -0.012293560430407524, + 0.013188853859901428, + -0.06309718638658524, + 0.04857662692666054, + 0.012898932211101055, + -0.0384998619556427, + 0.025026584044098854, + -0.02333313599228859, + -0.01888488233089447, + -0.010352627374231815, + -0.0022327511105686426, + -0.03023882955312729, + -0.05014403536915779, + -0.03168771415948868, + -0.07978606224060059, + -0.016426125541329384, + 0.008476254530251026, + 0.054280251264572144, + 0.06802547723054886, + 0.052405234426259995, + 0.12054552882909775, + 0.0010334766702726483, + 0.08208318054676056, + 0.029997771605849266, + 0.07905847579240799, + -0.0006579358596354723, + 0.0034858982544392347, + 0.024646276608109474, + -0.03166238218545914, + 0.03124200366437435, + 0.02500835433602333, + -0.10826720297336578, + -0.01419361587613821, + 0.010087113827466965, + -0.047151755541563034, + -0.011743202805519104, + -0.11666784435510635, + 0.10690511763095856, + -0.11429174244403839, + -0.12182902544736862, + 0.01980878971517086, + -0.0695861354470253, + -0.09538903087377548, + -0.017196938395500183, + 0.0193525031208992, + 0.006924460642039776, + -0.056533440947532654, + -0.05210696533322334, + -0.002299850806593895, + 0.021980002522468567, + -0.041618868708610535, + -0.06739073991775513, + -0.07963123172521591, + 0.006642544642090797, + 4.556651748422086e-35, + 0.10119093209505081, + -0.010819069109857082, + 0.07269922643899918, + 0.07771455496549606, + -0.046015579253435135, + 0.021791482344269753, + -0.06051763892173767, + 0.023342717438936234, + -0.0879056379199028, + 0.00025343408924527466, + 0.02563219517469406, + 0.011504456400871277, + -0.08084657788276672, + -0.02620462328195572, + -0.012364575639367104, + 0.041727215051651, + 0.03605480119585991, + 0.10458262264728546, + -0.0928887277841568, + -0.1053224429488182, + 0.026852596551179886, + -0.05174018442630768, + 0.03101925179362297, + 0.13372577726840973, + -0.08118709921836853, + -0.02128838188946247, + -0.08209801465272903, + -0.022310007363557816, + 0.07139481604099274, + -0.037224821746349335, + -0.008869408629834652, + 0.07137889415025711, + -0.011229055933654308, + 0.0004883244400843978, + -0.029196755960583687, + 0.09335540235042572, + 0.03381887823343277, + 0.06567016243934631, + 0.03436626121401787, + -0.012348301708698273, + -0.033097799867391586, + -0.034599654376506805, + 0.0007893743459135294, + -0.03969685733318329, + -0.0164966844022274, + -0.04772689938545227, + 0.008032887242734432, + 0.00963243842124939, + 0.017926177009940147, + 0.03735995292663574, + 0.02896260656416416, + -0.07045720517635345, + -0.06123296916484833, + 0.01882462203502655, + -0.049659762531518936, + -0.005463360343128443, + 0.023807449266314507, + 0.08357255905866623, + -0.009473723359405994, + 0.00911000557243824, + -0.023396166041493416, + 0.04991019889712334, + -0.048809874802827835, + -0.05077177286148071, + 0.054525066167116165, + -0.07859687507152557, + 0.08792027086019516, + 0.038576703518629074, + 0.0020858384668827057, + 0.03544161841273308, + 0.008534661494195461, + 0.030783390626311302, + 0.019745180383324623, + -0.026117635890841484, + 0.0021595852449536324, + -0.021586881950497627, + 0.023383157327771187, + 0.07492667436599731, + -0.024119248613715172, + 0.035459090024232864, + 0.009932953864336014, + 0.01259541790932417, + 0.014099279418587685, + 0.05248871073126793, + -0.0666600912809372, + 0.05087384209036827, + 0.017570529133081436, + -0.002383461222052574, + -0.018543442711234093, + -0.07513783872127533, + -0.07126913964748383, + 0.03993036225438118, + 0.0418507382273674, + 0.006728538312017918, + -0.0134230125695467, + -1.7524222073461715e-08, + -0.007698308676481247, + 0.002075384370982647, + -0.03462901711463928, + -0.00044197108945809305, + -0.008962750434875488, + -0.07071118801832199, + -0.062052056193351746, + -0.09928803890943527, + -0.0453178808093071, + -0.029422570019960403, + -0.010348535142838955, + 0.01865576021373272, + -0.005777348298579454, + -0.033250533044338226, + -0.03194153681397438, + 0.016081519424915314, + 0.003498351201415062, + -0.0011577678378671408, + 6.340915570035577e-05, + -0.06315404921770096, + -0.002244513016194105, + 0.004443758632987738, + 0.07289569079875946, + 0.014802859164774418, + -0.04005958512425423, + -0.03445098549127579, + -0.10402387380599976, + 0.018503302708268166, + 0.12028487026691437, + 0.04373161867260933, + 0.05849608778953552, + 0.027735069394111633, + -0.0008701413753442466, + -0.03452621027827263, + -0.007971181534230709, + -0.07805514335632324, + 0.011870242655277252, + -0.01486674789339304, + -0.018272679299116135, + 0.06740573048591614, + -0.03615356981754303, + -0.041870225220918655, + -0.03428790345788002, + -0.019326237961649895, + 0.0284994188696146, + -0.02792041376233101, + 0.045556146651506424, + -0.043081410229206085, + -0.04771218076348305, + -0.10522856563329697, + 0.02240835130214691, + 0.0003161933273077011, + 0.020195411518216133, + 0.14143097400665283, + -0.04805659130215645, + -0.06421908736228943, + 0.034503474831581116, + 0.15021668374538422, + 0.06432598829269409, + 0.03710928186774254, + 0.12448589503765106, + 0.0057136667892336845, + 0.026825103908777237, + 0.018330814316868782 + ], + "copyleft-bold||\ud83c\udd2f,intellectual property,copr.,symbol": [ + -0.10032347589731216, + -0.03903193771839142, + -0.04203573614358902, + 0.006479434669017792, + 0.03329401835799217, + -0.023156791925430298, + 0.09370682388544083, + -0.01732383854687214, + 0.07305523008108139, + -0.07482161372900009, + 0.08625492453575134, + 0.04072488471865654, + 0.050967056304216385, + -0.042252007871866226, + -0.023708483204245567, + 0.049705419689416885, + 0.011426985263824463, + -0.0499015673995018, + -0.01316836103796959, + 0.012653900310397148, + 0.021273495629429817, + 0.04461871087551117, + -0.010139033198356628, + 0.058180831372737885, + 0.018638549372553825, + 0.00926291011273861, + 0.0026506411377340555, + -0.03206973522901535, + 0.11029704660177231, + -0.04449816793203354, + -0.009896351024508476, + 0.04135601222515106, + 0.06952778995037079, + 0.023563120514154434, + 0.03415348008275032, + 0.09634620696306229, + 0.0441901870071888, + -0.057305365800857544, + 0.08308299630880356, + 0.020320307463407516, + 0.03216904029250145, + -0.09839851409196854, + -0.015984617173671722, + 0.02565755322575569, + -0.11651311069726944, + 0.07160087674856186, + -0.029301907867193222, + 0.0425606295466423, + -0.033119942992925644, + 0.023644577711820602, + 0.014704059809446335, + -0.0308950524777174, + -0.09786950051784515, + -0.04846344143152237, + 0.07489031553268433, + -0.012992722913622856, + -0.035073425620794296, + -0.027645977213978767, + 0.04493920877575874, + -0.047195177525281906, + -0.03494761884212494, + 0.11013871431350708, + 0.03758196160197258, + 0.040176715701818466, + 0.05099117383360863, + 0.026065735146403313, + 0.02148127742111683, + 0.005916310474276543, + -0.03896790370345116, + 0.006362425163388252, + -0.008976333774626255, + -0.07127736508846283, + -0.07170268893241882, + 0.01912422478199005, + -0.053655192255973816, + 0.011031447909772396, + 0.049591582268476486, + 0.0030667076352983713, + -0.02103549800813198, + -0.08976989984512329, + -0.05355248972773552, + -0.04047858342528343, + -0.015869831666350365, + 0.0485580675303936, + 0.027464088052511215, + 0.10175389796495438, + -0.053576499223709106, + -0.0674140676856041, + 0.05646170675754547, + -0.04906609281897545, + -0.0033405376598238945, + -0.03457161411643028, + 0.01792900264263153, + 0.06941471248865128, + -0.02800384722650051, + -0.008526358753442764, + 0.031610358506441116, + 0.023338375613093376, + -0.023383941501379013, + 0.07098138332366943, + 0.05547162890434265, + 0.05272002890706062, + 0.05631813406944275, + -0.03158467635512352, + -0.10489929467439651, + -0.07642492651939392, + 0.0011778655461966991, + -0.05272262543439865, + 0.048974424600601196, + 0.04973659664392471, + 0.02592783421278, + -0.04154399037361145, + -0.013511477038264275, + -0.09054899960756302, + 0.0006480499869212508, + 0.0013956120237708092, + -0.1431015133857727, + -0.014561200514435768, + 0.09289510548114777, + -0.029496459290385246, + -0.007944287732243538, + -0.02155344933271408, + -0.08192577213048935, + -0.043362364172935486, + 0.004700871184468269, + -0.05950310081243515, + -0.0050367629155516624, + -2.220650071696392e-33, + 0.00944998487830162, + 0.13402800261974335, + -0.00434818584471941, + 0.036720141768455505, + -0.0241737961769104, + 0.0002758415066637099, + 0.015357373282313347, + -0.03498341143131256, + -0.1452692598104477, + 0.029484596103429794, + 0.08611820638179779, + 0.06383422017097473, + -0.07076659798622131, + 0.06631655246019363, + -0.017822960391640663, + -0.048895515501499176, + 0.01600232906639576, + 0.00635187653824687, + -0.032090526074171066, + -0.0299854539334774, + -0.014333122409880161, + 0.021851733326911926, + -0.05701085552573204, + 0.0341406911611557, + -0.0325976237654686, + -0.04157723858952522, + -0.011122407391667366, + -0.006408450193703175, + 0.03011339157819748, + 0.03919810429215431, + 0.020028837025165558, + 0.07439571619033813, + -0.022103477269411087, + -0.04989022761583328, + -0.027397871017456055, + -0.0029503789264708757, + -0.030663402751088142, + -0.05394844710826874, + 0.0027212505228817463, + 0.020748209208250046, + 0.029143432155251503, + -0.0349070280790329, + -0.0894492045044899, + -0.027426671236753464, + 0.02803681045770645, + 0.000803871254902333, + -0.0021874508820474148, + -0.09285669773817062, + 0.013574153184890747, + -0.02456304058432579, + -0.011982280761003494, + -0.0034053849522024393, + -0.03648829460144043, + -0.024777553975582123, + 0.05102318897843361, + -0.07450731098651886, + -0.08432174474000931, + 0.020154109224677086, + 0.010039062239229679, + -0.0068608480505645275, + 0.012166779488325119, + 0.0927196517586708, + 0.043159425258636475, + 0.06602257490158081, + 0.00870429165661335, + 0.05446137115359306, + -0.03425859659910202, + -0.013746737502515316, + 0.08868196606636047, + 0.05624070018529892, + 0.04137745127081871, + 0.0751660168170929, + 0.04010266438126564, + 0.016200337558984756, + 0.017025435343384743, + -0.010522359982132912, + -0.09682462364435196, + -0.032305844128131866, + 0.06079685315489769, + -0.004770472180098295, + -0.18282164633274078, + 0.07113690674304962, + -0.04402891546487808, + 0.0035682856105268, + -0.011059688404202461, + 0.016837328672409058, + 0.024005616083741188, + 0.001167888636700809, + -0.036394957453012466, + 0.004555132240056992, + 0.010021955706179142, + -0.07557635754346848, + -0.06753814965486526, + -0.02560887299478054, + -0.10142993181943893, + -2.5379003390312326e-34, + 0.014773392118513584, + -0.04921061545610428, + 0.028189752250909805, + 0.02994951792061329, + -0.11993734538555145, + -0.07464753091335297, + -0.00034237353247590363, + 0.023507079109549522, + -0.017707837745547295, + -0.015093555673956871, + 0.05405712500214577, + -0.006241974886506796, + -0.030121060088276863, + -0.029398808255791664, + 0.04656187444925308, + 0.015426536090672016, + 0.04329923167824745, + 0.019499758258461952, + -0.06800275295972824, + 0.009684983640909195, + 0.025253741070628166, + -0.12122081220149994, + -0.034178201109170914, + 0.13678739964962006, + -0.03773247078061104, + 0.031644489616155624, + -0.010423550382256508, + -0.010118843987584114, + 0.05760042741894722, + 0.009649858810007572, + -0.0044473386369645596, + 0.03028704598546028, + -0.02421734854578972, + 0.013615485280752182, + -0.07801825553178787, + -0.04568767175078392, + 0.02313975989818573, + 0.05407958850264549, + 0.0049477736465632915, + -0.08946183323860168, + -0.011863945983350277, + 0.02285974845290184, + 0.024628285318613052, + 0.02712521143257618, + 0.004436465911567211, + -0.06997964531183243, + 0.01257498748600483, + -0.09296726435422897, + 0.06439819186925888, + -0.024565648287534714, + 0.08367999643087387, + -0.043422479182481766, + 0.05655711144208908, + -0.053661759942770004, + -0.060503747314214706, + 0.08023834973573685, + -0.028362322598695755, + 0.03981461003422737, + 0.014813206158578396, + 0.030112242326140404, + 0.055535152554512024, + 0.03390011563897133, + -0.04001954570412636, + 0.036908138543367386, + -0.02006486803293228, + -0.048081960529088974, + 0.0385962575674057, + 0.025728294625878334, + 0.050953809171915054, + -0.008110785856842995, + 0.039477959275245667, + 0.04121619835495949, + -0.008554898202419281, + 0.008626733906567097, + -0.023204902186989784, + -0.05873890966176987, + 0.05923602730035782, + 0.04266875982284546, + -0.04253445938229561, + 0.08018763363361359, + 0.02274372987449169, + 0.019851505756378174, + -0.027169888839125633, + 0.058717843145132065, + -0.039823926985263824, + -0.024681856855750084, + -0.03515893965959549, + -0.004158845171332359, + -0.02569035068154335, + -0.07997804880142212, + -0.05181238427758217, + 0.02674117684364319, + -0.07258007675409317, + 0.010929124429821968, + -0.015899809077382088, + -2.0887240381739502e-08, + -0.06254450976848602, + -0.031663235276937485, + 0.003479678649455309, + -0.11244234442710876, + 0.01252684835344553, + -0.0019487158861011267, + -0.014520897530019283, + -0.12401285767555237, + -0.02524278499186039, + -0.0311247780919075, + 0.029076896607875824, + -0.035836104303598404, + -0.07769453525543213, + -0.019811969250440598, + 0.03501416742801666, + -0.0008049761527217925, + 0.009231620468199253, + 0.0368165597319603, + 0.006829652935266495, + -0.008633195422589779, + 0.007771909702569246, + 0.04989958554506302, + 0.11308623850345612, + -0.0882299542427063, + -0.05774027109146118, + 0.04784277454018593, + 0.03088921681046486, + 0.014640593901276588, + 0.026095807552337646, + 0.019919702783226967, + 0.04892081394791603, + 0.09927281737327576, + 0.06149689480662346, + -0.012198335491120815, + 0.00941868219524622, + -0.04507586359977722, + 0.0630270317196846, + -0.011572334915399551, + 0.0019208817975595593, + 0.13152280449867249, + 0.043934404850006104, + -0.01662198267877102, + -0.08353301137685776, + 0.004313593730330467, + 0.027926793321967125, + -0.006566036492586136, + 0.03031378984451294, + -0.0170885119587183, + -0.062420155853033066, + -0.0737554132938385, + 0.047682277858257294, + 0.022319668903946877, + -0.026980161666870117, + 0.11257020384073257, + -0.04997876659035683, + -0.005854352843016386, + -0.06093533709645271, + 0.10029353946447372, + -0.05846664309501648, + -0.008535689674317837, + 0.11264792084693909, + -0.009320278652012348, + 0.07144036889076233, + 0.002751438645645976 + ], + "copyright-bold||\u00a9,intellectual property,copr.,symbol": [ + -0.06709644198417664, + 0.001261057099327445, + -0.07698045670986176, + -0.0357154905796051, + 0.025861121714115143, + -0.021892273798584938, + 0.043159205466508865, + -0.0013253529323264956, + 0.08924854546785355, + -0.053955078125, + 0.0200333371758461, + 0.06746086478233337, + 0.0311557836830616, + -0.0013901094207540154, + -0.03784918412566185, + 0.024849068373441696, + 0.03254394605755806, + -0.03836911544203758, + -0.013369704596698284, + -0.04415017366409302, + 0.02566545456647873, + 0.052055034786462784, + -0.006920538377016783, + 0.03396047279238701, + 0.020944945514202118, + 0.001431699376553297, + 0.0035680867731571198, + 0.02618003822863102, + 0.11451191455125809, + -0.04708957299590111, + -0.016993533819913864, + 0.0017665415070950985, + 0.11913547664880753, + 0.018049856647849083, + 0.019708169624209404, + 0.03524341806769371, + -0.013217915780842304, + -0.03892621770501137, + 0.0679095983505249, + 0.010199453681707382, + 0.03385153040289879, + -0.08984866738319397, + -0.02829069271683693, + 0.04841204732656479, + -0.08076342940330505, + 0.05118387192487717, + -0.020154180005192757, + 0.05527881905436516, + -0.02802334353327751, + 0.06777111440896988, + 0.037428420037031174, + -0.06643334776163101, + -0.10173995792865753, + -0.0768430307507515, + 0.08078669756650925, + -0.06634008139371872, + -0.029437005519866943, + -0.02492181397974491, + 0.005518453661352396, + -0.026292182505130768, + -0.050875887274742126, + 0.06835120916366577, + 0.008684544824063778, + 0.08337968587875366, + 0.06630197912454605, + -0.022624948993325233, + 0.03851696103811264, + 0.062074899673461914, + -0.06224094703793526, + -0.021120203658938408, + 0.008291435427963734, + -0.05511493235826492, + -0.03812217712402344, + 0.021182578057050705, + -0.04265356808900833, + -0.014513831585645676, + 0.03325776755809784, + 0.05295977741479874, + 0.009489038959145546, + -0.11218776553869247, + -0.04680557921528816, + -0.055651068687438965, + -0.029510926455259323, + 0.026292413473129272, + -0.0050362832844257355, + 0.08022969216108322, + 0.015328621491789818, + -0.04802832007408142, + 0.08962064236402512, + -0.05095144361257553, + -0.06700920313596725, + -0.02294520102441311, + 0.07963680475950241, + 0.02988920360803604, + -0.11714357882738113, + 0.01999242603778839, + 0.010153311304748058, + -0.021694766357541084, + -0.017261110246181488, + 0.08286796510219574, + 0.022301485762000084, + 0.044941697269678116, + 0.006897402461618185, + -0.05779855698347092, + -0.011341827921569347, + -0.029581639915704727, + 0.020026791840791702, + -0.01924542896449566, + 0.05720974877476692, + 0.06508194655179977, + -0.01316041499376297, + -0.01070446614176035, + -0.0018019593553617597, + -0.08604850620031357, + 0.003132317215204239, + -0.020292244851589203, + -0.1468748152256012, + -0.028369152918457985, + 0.1664639115333557, + -0.07522600889205933, + -0.018553931266069412, + -0.0278055127710104, + -0.05945998802781105, + -0.07285722345113754, + -0.02184954658150673, + -0.08099541813135147, + -0.034894898533821106, + -3.8478657793755684e-33, + -0.021068966016173363, + 0.09375731647014618, + 0.011919732205569744, + 0.07240667939186096, + 0.019885383546352386, + -0.01286334078758955, + 0.01526530459523201, + 0.0027575241401791573, + -0.14889059960842133, + 0.03101380355656147, + 0.08592016994953156, + 0.02765539474785328, + -0.036543767899274826, + 0.08799875527620316, + 0.03977089747786522, + -0.026857400313019753, + 0.012621534056961536, + -0.051907140761613846, + -0.017660364508628845, + -0.031871408224105835, + -0.059378575533628464, + -0.0036308574490249157, + -0.04871618002653122, + 0.06261368840932846, + -0.012387897819280624, + -0.05722646787762642, + -0.012679670937359333, + -0.05350693315267563, + 0.028076237067580223, + 0.01856638304889202, + 0.05976508557796478, + 0.05104678124189377, + 0.010078022256493568, + -0.0464937724173069, + 0.013991445302963257, + 0.005113189574331045, + -0.03947359696030617, + -0.04456034302711487, + 0.017695745453238487, + 0.02928345650434494, + 0.013088560663163662, + -0.07601504027843475, + -0.07588764280080795, + -0.007880625315010548, + 0.030801601707935333, + 0.03419824689626694, + -0.022974753752350807, + -0.0776987224817276, + 0.03345615416765213, + -0.009053701534867287, + 0.02564513310790062, + 0.006480658892542124, + -0.02083316445350647, + -0.0077247112058103085, + 0.04162827134132385, + -0.026741977781057358, + -0.10225023329257965, + -0.00017440335068386048, + 0.0020448260474950075, + -0.023281540721654892, + -0.05490795522928238, + 0.10932040959596634, + 0.04080578684806824, + 0.09182044118642807, + 0.009945067577064037, + 0.10151901841163635, + -0.01885203644633293, + -0.009227755479514599, + 0.10919869691133499, + 0.04464041441679001, + 0.03726586326956749, + 0.0421891026198864, + 0.017003770917654037, + -0.027642549946904182, + -0.05544491112232208, + 0.0018948954530060291, + -0.09121006727218628, + -0.012342439964413643, + 0.06068667024374008, + 0.03838134929537773, + -0.16926053166389465, + 0.04496045783162117, + -0.05468671768903732, + 0.002538675209507346, + -0.025044698268175125, + 0.03147207200527191, + 0.005280833225697279, + -0.033510271459817886, + -0.02923417091369629, + 0.04955998808145523, + 0.024211086332798004, + -0.04677869379520416, + -0.03437868878245354, + 0.018731115385890007, + -0.08396857976913452, + 9.187661090962114e-34, + -0.00018575241847429425, + -0.0078079840168356895, + 0.008809245191514492, + 0.026232706382870674, + -0.08904150128364563, + -0.07040366530418396, + -0.02926703542470932, + -0.00959001760929823, + -0.05083386227488518, + -0.001347558805719018, + 0.018307678401470184, + -0.013135810382664204, + -0.02456776425242424, + 0.003972932696342468, + 0.02389317937195301, + 0.0055573564022779465, + 0.01394394040107727, + 0.019223257899284363, + -0.09941756725311279, + 0.023313438519835472, + 0.018428774550557137, + -0.09443535655736923, + -0.027393680065870285, + 0.11588147282600403, + 0.022462831810116768, + 0.02218475006520748, + 0.013433121144771576, + -0.034260641783475876, + 0.019340956583619118, + 0.023776907473802567, + 0.005485815927386284, + 0.017308518290519714, + -0.0764165148139, + -0.03280024975538254, + -0.06434266269207001, + -0.06477402150630951, + 0.07246658951044083, + 0.0003817483957391232, + -0.012676543556153774, + -0.06577994674444199, + 0.033100858330726624, + 0.02635503187775612, + 0.045071959495544434, + 0.044295165687799454, + -0.013013440184295177, + -0.07033678889274597, + -0.011061014607548714, + -0.10595705360174179, + 0.04620564728975296, + -0.0013493691803887486, + 0.0625176727771759, + -0.07164891809225082, + 0.05791951343417168, + -0.07016386091709137, + -0.028358599171042442, + 0.057142868638038635, + -0.010640691965818405, + 0.028319064527750015, + 0.04877404868602753, + 0.048403505235910416, + 0.07790303230285645, + -0.014453652314841747, + -0.06606055051088333, + 0.046874500811100006, + -0.0642595961689949, + -0.05972597002983093, + 0.01921302080154419, + 0.07232655584812164, + 0.017586851492524147, + 0.013046919368207455, + 0.06804373115301132, + 0.062203675508499146, + -0.03529859334230423, + -0.02020585909485817, + -0.020521827042102814, + -0.030225073918700218, + 0.08090995252132416, + 0.059680305421352386, + -0.07793498039245605, + 0.067254438996315, + -0.008397432044148445, + 0.043570201843976974, + -0.05588924139738083, + 0.06844206899404526, + -0.028515350073575974, + -0.054025501012802124, + -0.037974465638399124, + -0.04142317175865173, + -0.02298068255186081, + -0.040827278047800064, + -0.022119682282209396, + 0.08036728948354721, + -0.059342849999666214, + 0.023909473791718483, + -0.0407387800514698, + -2.096123097317104e-08, + -0.0663718655705452, + -0.009767681360244751, + -0.028756659477949142, + -0.06806989759206772, + 0.017829498276114464, + 0.0391361378133297, + 0.011396330781280994, + -0.1377047896385193, + -0.028807934373617172, + 0.012690067291259766, + 0.05473165586590767, + -0.028632991015911102, + -0.08481987565755844, + 0.0034352783113718033, + 0.03513062745332718, + 0.01562846638262272, + 0.0037889929953962564, + 0.04312693327665329, + 0.0171134565025568, + 0.0012055654078722, + 0.0022899345494806767, + 0.05498352646827698, + 0.06688348203897476, + -0.08998620510101318, + -0.03842641040682793, + 0.06526754796504974, + 0.034871336072683334, + -0.005263288505375385, + -0.016795571893453598, + 0.06114354729652405, + 0.029428984969854355, + 0.12009713053703308, + 0.047116298228502274, + -0.027834288775920868, + 0.03370678424835205, + -0.06848542392253876, + 0.031751107424497604, + -0.006778784561902285, + 0.006201666779816151, + 0.10387971252202988, + 0.017577560618519783, + 0.019899016246199608, + -0.07972927391529083, + 0.007771397475153208, + 0.029263440519571304, + 0.03927409276366234, + 0.055393293499946594, + -0.003204548032954335, + -0.05509437620639801, + -0.040026724338531494, + 0.02198566310107708, + -0.0010531172156333923, + 0.01467252615839243, + 0.061868857592344284, + -0.0467640683054924, + -0.013308774679899216, + -0.023007234558463097, + 0.0997898280620575, + -0.0433439277112484, + -0.017356181517243385, + 0.11294838786125183, + -0.006478141061961651, + 0.0898633822798729, + -0.012467002496123314 + ], + "corners-in-bold||*updated*,collapse,windowed,minimized": [ + -0.01269480213522911, + 0.03958859294652939, + -0.06900753080844879, + 0.11435657739639282, + 0.09640727937221527, + -0.01411699503660202, + 0.013945178128778934, + 0.007505328394472599, + -0.01941344514489174, + -0.0006191888242028654, + -0.06353731453418732, + 0.09985954314470291, + -0.01598345674574375, + -0.05133829265832901, + 0.03945161774754524, + 0.021427946165204048, + -0.019544823095202446, + 0.04526301100850105, + -0.018807940185070038, + -0.023229099810123444, + -0.12102404981851578, + -0.020063666626811028, + -0.014653710648417473, + 0.0017036903882399201, + -0.015268982388079166, + 0.06460244208574295, + 0.03458908945322037, + -0.04049525782465935, + 0.04679374769330025, + -0.03603602573275566, + 0.02261585183441639, + 0.010253669694066048, + 0.09548554569482803, + 0.00032490966259501874, + 0.04948858916759491, + 0.01327610481530428, + -0.026759548112750053, + 0.060703158378601074, + -0.01589926704764366, + 0.024782855063676834, + 0.0015626930398866534, + 0.026228535920381546, + -0.03400980308651924, + -0.006543308962136507, + -0.03015017881989479, + -0.0813988447189331, + -0.07151181250810623, + 0.032095324248075485, + -0.000489966303575784, + -0.03948800638318062, + 0.025505347177386284, + -0.11505675315856934, + -0.07013101130723953, + -0.03883092477917671, + 0.008095210418105125, + -0.03689475730061531, + -0.01930353231728077, + -0.0021814152132719755, + 0.07091996818780899, + 0.0080785620957613, + 0.07608839124441147, + 0.0006393531803041697, + 0.061097145080566406, + 0.005131129641085863, + 0.009348076768219471, + 0.02973700873553753, + 0.020999662578105927, + -0.07013659179210663, + -0.03661546856164932, + 0.018130704760551453, + 0.06289473176002502, + 0.042005401104688644, + -0.02733881026506424, + -0.08737781643867493, + 0.0315873920917511, + -0.08645696938037872, + 0.06261549144983292, + 0.015001088380813599, + -0.0208224318921566, + -0.01202703919261694, + -0.026021381840109825, + -0.0546906553208828, + -0.09997709840536118, + -0.04789362847805023, + -0.018289588391780853, + -0.03472743555903435, + -0.06088641285896301, + -0.08689098060131073, + 0.021494688466191292, + 0.012731225229799747, + -0.031060565263032913, + 0.012841487303376198, + -0.06599397212266922, + 0.05656934529542923, + -0.08297492563724518, + -0.040958233177661896, + 0.06139640882611275, + 0.013324613682925701, + -0.07298315316438675, + 0.11265303939580917, + 0.008595147170126438, + 0.02695476822555065, + 0.06200912967324257, + 0.03594269976019859, + 0.032035164535045624, + 0.01307668536901474, + 0.008978518657386303, + -0.016909830272197723, + -0.013373477384448051, + 0.0013009491376578808, + -0.015806857496500015, + -0.08634156733751297, + 0.01087853405624628, + -0.04385629668831825, + -0.06731019169092178, + -0.05910703167319298, + -0.008471587672829628, + -0.011170676909387112, + 0.06824512034654617, + 0.0733056366443634, + 0.09211528301239014, + 0.02428497187793255, + -0.025648409500718117, + -0.05462835729122162, + 0.01635029725730419, + 0.045453768223524094, + 0.010632392950356007, + -2.4721318433624583e-33, + 0.039207275956869125, + 0.04234097898006439, + -0.0703093633055687, + 0.10731066018342972, + 0.08473264425992966, + 0.0026392878498882055, + -0.04245677590370178, + -0.0779985561966896, + -0.020092952996492386, + -0.006876575294882059, + 0.05629638209939003, + -0.0031935933511704206, + -0.06255099177360535, + -0.02516881562769413, + 0.07691963762044907, + -0.0940905511379242, + 0.021102674305438995, + 0.08345470577478409, + -0.1450852006673813, + 0.04740924388170242, + -0.06350264698266983, + 0.042370159178972244, + -0.059794843196868896, + -0.009538463316857815, + -0.057213809341192245, + -0.01088146772235632, + 0.04401778802275658, + -0.013301483355462551, + -0.07929211109876633, + 0.03239879384636879, + -0.03432213515043259, + 0.03975673019886017, + -0.006410576868802309, + 0.027627410367131233, + -0.0791308805346489, + 0.06555631011724472, + -0.04774477705359459, + -0.04675138369202614, + 0.0863463506102562, + 0.01809343509376049, + -0.08518800139427185, + 0.01320610847324133, + 0.02180451527237892, + -0.0722287967801094, + 0.01244486216455698, + 0.0839710384607315, + 0.025139587000012398, + 0.03422333300113678, + -0.017227714881300926, + -0.07243017107248306, + 0.0028290231712162495, + 0.04410906881093979, + -0.10092538595199585, + -0.018103761598467827, + -0.03108781948685646, + -0.027276091277599335, + 0.009019103832542896, + 0.07662869989871979, + 0.055502958595752716, + 0.05966974422335625, + 0.07258809357881546, + -0.05421151965856552, + -0.03735478222370148, + -0.0705249160528183, + -0.06807412207126617, + 0.040095485746860504, + -0.007294575683772564, + 0.030656766146421432, + -0.01697113923728466, + -0.05226997286081314, + -0.04427467659115791, + 0.10496725887060165, + 0.037409234791994095, + 0.06140756607055664, + 0.03744587302207947, + 0.04280582815408707, + 0.11137639731168747, + 0.01570429839193821, + 0.0722050666809082, + -0.12870243191719055, + -0.014753274619579315, + 0.028194652870297432, + -0.03342771157622337, + 0.019167765974998474, + -0.005852960050106049, + -0.0059265452437102795, + 0.014504530467092991, + 0.010766514576971531, + -0.05212189629673958, + 0.006159811746329069, + -0.12980662286281586, + 0.05436600744724274, + 0.009373394772410393, + -0.05597195774316788, + -0.05530005320906639, + -3.768503104799267e-34, + -0.004007675684988499, + 0.035742275416851044, + -0.05618235096335411, + -0.038612112402915955, + -0.04006732627749443, + 0.05431350693106651, + -0.06225975975394249, + 0.026135392487049103, + -0.02005552500486374, + -0.03198586404323578, + 0.04558375105261803, + 0.040346913039684296, + -0.03308821842074394, + -0.015286721289157867, + -0.060479581356048584, + 0.0688810870051384, + 0.048004746437072754, + -0.002511826576665044, + -0.07054083049297333, + 0.010645902715623379, + -0.018668895587325096, + -0.032453544437885284, + -0.08801943808794022, + 0.043889809399843216, + -0.020479628816246986, + 0.025332564488053322, + -0.0237779188901186, + 0.04536813870072365, + 0.062423162162303925, + -0.023739119991660118, + -0.014238365925848484, + -0.03976432979106903, + -0.03755410760641098, + 0.014199606142938137, + -0.0062162079848349094, + 0.04211549088358879, + -0.019141942262649536, + -0.12267784774303436, + -0.03672477602958679, + 0.017959143966436386, + 0.0074823275208473206, + 0.05332725867629051, + 0.007147214841097593, + 0.043901145458221436, + 0.024311652407050133, + 0.0571446418762207, + 0.014546461403369904, + 0.015746869146823883, + -0.09887829422950745, + 0.0015079360455274582, + 0.012703998014330864, + 0.003304843557998538, + -0.013850497081875801, + 0.017716683447360992, + -0.1019943505525589, + -0.006775581743568182, + -0.006265691481530666, + 0.04244625195860863, + 0.01963922753930092, + 0.0376662015914917, + 0.009589380584657192, + 0.06708898395299911, + -0.05341317504644394, + -0.022906208410859108, + -0.009129480458796024, + 0.023646321147680283, + 0.034207213670015335, + -0.019980136305093765, + 0.025072673335671425, + -0.015217832289636135, + 0.10856562107801437, + 0.02449447475373745, + -0.06985735893249512, + -0.02871202677488327, + 0.044898614287376404, + -0.0034507405944168568, + 0.07632438093423843, + -0.025394544005393982, + 0.023790283128619194, + -0.001836317591369152, + -0.018232110887765884, + 0.05175117030739784, + 0.02671005018055439, + -0.033251579850912094, + -0.041904933750629425, + 0.042989663779735565, + -0.058089081197977066, + 0.06548377126455307, + -0.007920079864561558, + -0.045787084847688675, + -0.10479897260665894, + 0.008111247792840004, + 0.04020370915532112, + 0.012814522720873356, + -0.020899780094623566, + -2.4443762569603678e-08, + -0.0869981124997139, + -0.015102790668606758, + -0.11148196458816528, + -0.019128652289509773, + 0.015271961688995361, + -0.10124734789133072, + -0.01722373254597187, + -0.036796920001506805, + -0.030197873711586, + -0.1045466884970665, + 0.007025808561593294, + -0.023303896188735962, + -0.08043265342712402, + -0.0029707862995564938, + 0.017874350771307945, + 0.08925935626029968, + -0.09385527670383453, + 0.1035338044166565, + 0.0029540006071329117, + -0.0004519796057138592, + -0.009669155813753605, + 0.05115245282649994, + 0.03798665851354599, + 0.017800981178879738, + 0.02039899118244648, + -0.04961863160133362, + -0.03910012170672417, + 0.06194772571325302, + 0.10175493359565735, + 0.05907338485121727, + 0.031152892857789993, + 0.05524372681975365, + 0.057449936866760254, + 0.05680551379919052, + -0.05451095476746559, + 0.02282027341425419, + -0.024641189724206924, + 0.042514048516750336, + -0.02055003121495247, + 0.10519629716873169, + -0.012772229500114918, + -0.09204820543527603, + 0.0044951592572033405, + -0.029156716540455818, + -0.05530989170074463, + 0.0547591969370842, + 0.029822515323758125, + -0.010380432941019535, + -0.061353959143161774, + -0.1324646770954132, + -0.026973729953169823, + 0.027371719479560852, + 0.0773654654622078, + 0.0948580652475357, + -0.045144204050302505, + -0.0363144725561142, + -0.03635900095105171, + 0.048449963331222534, + 0.024507440626621246, + -0.02046997845172882, + 0.012831169180572033, + -0.00922264251857996, + 0.008317694999277592, + 0.11316491663455963 + ], + "corners-out-bold||*updated*,expand,fullscreen,maximized": [ + 0.022133180871605873, + 0.07071764767169952, + -0.044854436069726944, + 0.037067022174596786, + 0.08262904733419418, + -0.0435582660138607, + -0.002675670897588134, + 0.00047603409620933235, + -0.044738076627254486, + 0.0069185709580779076, + -0.03282412886619568, + 0.10739519447088242, + -0.011711565777659416, + -0.0440068282186985, + 0.06341557949781418, + 0.010633979924023151, + 0.010083784349262714, + 0.044352222234010696, + -0.04767017066478729, + -0.04297543317079544, + -0.15226367115974426, + -0.06800606846809387, + -0.004733498673886061, + 0.005902603734284639, + -0.028095748275518417, + 0.08081192523241043, + 0.027076149359345436, + -0.008928044699132442, + 0.006611950229853392, + -0.07980239391326904, + 0.011589218862354755, + 0.02329835295677185, + 0.11216232180595398, + 0.00983273796737194, + 0.04080699384212494, + -0.022983338683843613, + -0.06154509261250496, + 0.022337697446346283, + -0.028471926227211952, + 0.018180107697844505, + -0.009051244705915451, + 0.011256246827542782, + 0.030303070321679115, + 0.08561386913061142, + -0.03016236051917076, + -0.0764675885438919, + -0.08135027438402176, + 0.014756584540009499, + 0.05815036967396736, + -0.017718840390443802, + -0.0004998293588869274, + -0.0824332907795906, + -0.05364370718598366, + -0.0023701402824372053, + 0.014832597225904465, + -0.0448133684694767, + -0.02534843236207962, + 0.055490195751190186, + 0.08695366233587265, + 0.01476129051297903, + 0.039139144122600555, + 0.02578009106218815, + 0.09057025611400604, + 0.010964526794850826, + -0.002209505531936884, + -0.015444434247910976, + 0.0130017613992095, + -0.04574032872915268, + -0.060635559260845184, + 0.01535558607429266, + 0.04954693466424942, + 0.03176678717136383, + -0.017320051789283752, + -0.1135566234588623, + 0.08183068782091141, + -0.10945016145706177, + -0.00783163495361805, + 0.03974192962050438, + -0.026715215295553207, + -0.014112426899373531, + -0.06623280048370361, + -0.04148263856768608, + -0.06236766651272774, + -0.04636547341942787, + -0.01209360733628273, + -0.016798384487628937, + -0.049790047109127045, + -0.06953896582126617, + 0.025580422952771187, + 0.017291849479079247, + -0.04628137871623039, + -0.007703245617449284, + -0.07851079106330872, + 0.03528602793812752, + -0.10429324954748154, + -0.06115836277604103, + -0.008997413329780102, + -0.06827626377344131, + -0.09542706608772278, + 0.08465965837240219, + 0.014828534796833992, + 0.0063604675233364105, + 0.07180123776197433, + 0.04377598315477371, + 0.052431780844926834, + 0.032450318336486816, + 0.008252274245023727, + 0.02791445329785347, + -0.005962827708572149, + -0.0031802579760551453, + -0.009702189825475216, + -0.012797207571566105, + 0.03837776184082031, + -0.03508465737104416, + -0.03699430078268051, + -0.028473583981394768, + -0.021912595257163048, + 0.011664407327771187, + 0.08069794625043869, + 0.04874381422996521, + 0.09168221056461334, + 0.05356695502996445, + -0.05704795569181442, + -0.021358700469136238, + -0.0006098265293985605, + 0.06017893925309181, + 0.012113829143345356, + -2.2683169186352128e-33, + -0.02127085067331791, + 0.045648008584976196, + -0.04109121486544609, + 0.13934384286403656, + 0.06200889125466347, + 0.04127243533730507, + -0.03792581334710121, + -0.025132887065410614, + -0.007834999822080135, + -0.012780683115124702, + 0.07096496224403381, + 0.010245991870760918, + -0.06254212558269501, + 0.021397434175014496, + 0.09856615215539932, + -0.08428197354078293, + 0.003984389826655388, + 0.0971420407295227, + -0.1101786270737648, + 0.07502299547195435, + -0.030225055292248726, + 0.027543354779481888, + -0.06202792748808861, + 0.013586034998297691, + -0.05509444698691368, + 0.002817713189870119, + 0.04761868715286255, + 0.04950923100113869, + -0.10960695892572403, + 0.01861584559082985, + -0.020810900256037712, + -0.016908587887883186, + 0.035763420164585114, + -0.006313564721494913, + -0.08054710179567337, + 0.030739683657884598, + -0.04527801275253296, + -0.04101597145199776, + 0.07839183509349823, + 0.024263601750135422, + -0.12584461271762848, + -0.03788704797625542, + -0.005568683613091707, + -0.05146783962845802, + -0.002424401929602027, + 0.09472598135471344, + 0.004624331369996071, + -0.03864426165819168, + 0.0061658648774027824, + -0.05451476573944092, + -0.002265892457216978, + -0.005674498155713081, + -0.061197731643915176, + -0.06354668736457825, + -0.11050791293382645, + -0.028147943317890167, + -0.01815781369805336, + 0.058627475053071976, + 0.05410197749733925, + 0.05301870405673981, + 0.06390263140201569, + -0.045706942677497864, + -0.08316415548324585, + -0.007712310645729303, + -0.08059932291507721, + 0.024596694856882095, + 0.030803898349404335, + 0.05368447303771973, + -0.007174729369580746, + -0.038686953485012054, + -0.011256213299930096, + 0.07377589493989944, + 0.08457092940807343, + 0.06531654298305511, + -0.031056566163897514, + -0.013032572343945503, + 0.05345578119158745, + 0.019150948151946068, + 0.04750615358352661, + -0.0857737809419632, + -0.028080875054001808, + 0.031671665608882904, + 0.043928343802690506, + -0.0056909797713160515, + 0.003637866349890828, + -0.027560347691178322, + -0.043576162308454514, + -0.033175498247146606, + -0.006721696350723505, + 0.05391913652420044, + -0.0979180708527565, + 0.007247626315802336, + -0.02012752741575241, + -0.06485746800899506, + -0.06994181871414185, + 7.434162622104825e-35, + 0.04076680913567543, + 0.004388687666505575, + -0.08174776285886765, + -0.06915279477834702, + -0.029643720015883446, + 0.08351454883813858, + -0.03950844332575798, + 0.0832175612449646, + 0.0038481252267956734, + -0.039854712784290314, + 0.04267742112278938, + 0.07661610096693039, + -0.027343010529875755, + -0.03337005898356438, + -0.06613103300333023, + 0.07067926973104477, + 0.03306626155972481, + 0.02755441516637802, + -0.060776498168706894, + 0.01957460679113865, + -0.05475817620754242, + -0.04892712086439133, + -0.061768803745508194, + 0.06498563289642334, + 0.03857865557074547, + -0.0012644034577533603, + -0.02594636008143425, + 0.08919874578714371, + 0.06900344789028168, + 0.02648051641881466, + -0.0019662873819470406, + -0.05066707730293274, + -0.057838186621665955, + 0.03628452867269516, + 0.02875719591975212, + -0.01076467614620924, + -0.014085633680224419, + -0.06708495318889618, + -0.01873142272233963, + 0.06504051387310028, + -0.015688687562942505, + 0.03564275801181793, + 0.013513205572962761, + 0.04578262194991112, + 0.023371824994683266, + 0.09480239450931549, + 0.024835797026753426, + -0.008979718200862408, + -0.08237910270690918, + 0.03464866802096367, + 0.027354314923286438, + 0.02954070083796978, + 0.03147629648447037, + -0.015617976896464825, + -0.09403455257415771, + -0.03911731392145157, + -0.03566660359501839, + 0.07624173909425735, + 0.016296569257974625, + 0.020195703953504562, + 0.034363340586423874, + 0.06176520138978958, + -0.08623184263706207, + -0.060385026037693024, + -0.004068863578140736, + 0.05166778713464737, + 0.026392459869384766, + -0.02085932344198227, + 0.020285500213503838, + -0.0005764354718849063, + 0.052434153854846954, + -0.0017394101014360785, + -0.11363501101732254, + -0.019605379551649094, + -0.009967178106307983, + 0.049191124737262726, + 0.07497643679380417, + -0.06110580265522003, + 0.0542353019118309, + -0.019007593393325806, + -0.03916000947356224, + 0.012606769800186157, + 0.02989967167377472, + -0.037770744413137436, + -0.016589965671300888, + 0.021636663004755974, + -0.05526939406991005, + 0.07006127387285233, + -0.005508190020918846, + -0.057483118027448654, + -0.06652789562940598, + -0.006103664170950651, + 0.02056283690035343, + -0.009148037992417812, + -0.019521500915288925, + -2.3064179899279225e-08, + -0.07051249593496323, + 0.006371683441102505, + -0.07731140404939651, + -0.003136362647637725, + 0.03447838872671127, + -0.08484110236167908, + -0.006254215724766254, + 0.0073535023257136345, + 0.00025537473266012967, + -0.0988839790225029, + -0.02532501146197319, + -0.03228725492954254, + -0.04287981614470482, + 0.004517739173024893, + 0.054824188351631165, + 0.07415780425071716, + -0.08470116555690765, + 0.10047303885221481, + 0.004409132990986109, + -0.02068975940346718, + -0.02294827625155449, + 0.05890537053346634, + -0.008987762033939362, + -0.04199101775884628, + 0.0019014148274436593, + -0.0442235954105854, + -0.07644274830818176, + 0.06937573105096817, + 0.10002613067626953, + 0.007260793354362249, + 0.02998516336083412, + 0.023859737440943718, + 0.026689711958169937, + -0.005195534788072109, + -0.01954728178679943, + 0.0032944686245173216, + -0.02118593268096447, + 0.04602072387933731, + 0.031228790059685707, + 0.10414406657218933, + -0.03477990999817848, + -0.06022760272026062, + 0.02562098577618599, + -0.029000885784626007, + -0.08567490428686142, + 0.025227518752217293, + 0.07565826177597046, + -0.0018541599856689572, + -0.0803990587592125, + -0.12713219225406647, + 0.033192820847034454, + 0.034190304577350616, + 0.08067142963409424, + 0.049011923372745514, + -0.033861249685287476, + -0.028673093765974045, + -0.0118491156026721, + 0.05454275757074356, + 0.033477671444416046, + 0.007543664425611496, + 0.01506091933697462, + 0.022899916395545006, + 0.008010669611394405, + 0.10892143845558167 + ], + "couch-bold||furniture,seat": [ + 0.053877171128988266, + -0.023246265947818756, + 0.0022183232940733433, + 0.01203199103474617, + 0.015554908663034439, + 0.008690728805959225, + 0.05276353284716606, + -0.08142336457967758, + 0.03302154317498207, + 0.05264540761709213, + -0.021929539740085602, + 0.008469757623970509, + 0.10752864181995392, + -0.0034149980638176203, + -0.03203810378909111, + -0.018687868490815163, + 0.061655860394239426, + 0.015233568847179413, + 0.03497973829507828, + 0.12088018655776978, + -0.06585818529129028, + 0.07871688902378082, + -0.02940121479332447, + 0.01431349478662014, + 0.015354110859334469, + -0.0795142650604248, + 0.045048147439956665, + -0.030665410682559013, + 0.009795831516385078, + 0.005450534634292126, + 0.04423560947179794, + -0.06054680794477463, + 0.06342873722314835, + 0.005300384480506182, + 0.013473644852638245, + -0.004033809993416071, + -0.005192806478589773, + -0.09242787212133408, + 0.004282861948013306, + 0.059555165469646454, + -0.030519433319568634, + -0.061885278671979904, + -0.026224706321954727, + 0.013363766483962536, + -0.007725847419351339, + -0.013414270244538784, + -0.06912419945001602, + -0.04220364987850189, + 0.03666797652840614, + 0.03525485843420029, + -0.0732986256480217, + -0.07073511183261871, + -0.0605187714099884, + 0.0009307139553129673, + -0.028705161064863205, + 0.027388790622353554, + -0.006714895833283663, + 0.0557064525783062, + 0.007370749022811651, + -0.0027932506054639816, + 0.05253125727176666, + -0.019255992025136948, + 0.0769861713051796, + 0.03961887210607529, + 0.003445373149588704, + 0.007535508368164301, + -0.04666423797607422, + 0.017297765240073204, + -0.08135408908128738, + 0.08759709447622299, + -0.0158236064016819, + 0.030605444684624672, + 0.04001728445291519, + -0.048357218503952026, + -0.02372349612414837, + -0.028256326913833618, + -0.0035039170179516077, + -0.002658545970916748, + 0.028115786612033844, + -0.015315362252295017, + -0.11147366464138031, + -0.048386357724666595, + -0.07378193736076355, + 0.01209021545946598, + 0.0005839042132720351, + 0.06465525180101395, + -0.08276264369487762, + -0.042230717837810516, + -0.14498896896839142, + -0.05269574746489525, + -0.019531216472387314, + -0.04234624654054642, + 0.018267739564180374, + 0.03583217039704323, + -0.12255873531103134, + 0.05112899839878082, + 0.04881855845451355, + 0.02759590372443199, + 0.027899380773305893, + 0.05345311760902405, + -0.024822736158967018, + 0.09794442355632782, + 0.01965748704969883, + 0.02053704671561718, + -0.11124701797962189, + -0.06633950024843216, + -0.04021720215678215, + -0.03830910846590996, + -0.023322446271777153, + -0.059648461639881134, + -0.043017271906137466, + -0.07348539680242538, + -0.024851426482200623, + -0.005107990466058254, + -0.08630672097206116, + 0.013954528607428074, + 0.012611044570803642, + -0.09930235892534256, + 0.1158066987991333, + -0.0034971111454069614, + -0.007468546275049448, + 0.018838606774806976, + 0.014783218502998352, + 0.05461994931101799, + -0.026752855628728867, + -0.014274156652390957, + 0.07580337673425674, + -3.4635698601268844e-33, + 0.018761269748210907, + 0.01608780026435852, + 0.0023399638012051582, + 0.08106150478124619, + 0.06478731334209442, + 0.038914427161216736, + -0.05046499893069267, + 0.051137279719114304, + -0.06353151798248291, + 0.02716071344912052, + 0.05018918588757515, + -0.02363451197743416, + 0.016733720898628235, + -0.03613681718707085, + 0.020188098773360252, + -0.017525378614664078, + -0.026314646005630493, + -0.04794628173112869, + -0.09897688031196594, + 0.06496963649988174, + -0.020071078091859818, + 0.11155008524656296, + -0.013125536032021046, + 0.04059185832738876, + -0.06323400139808655, + -0.034173958003520966, + -0.009379401803016663, + -0.04017249122262001, + -0.09316404908895493, + 0.03703853487968445, + -0.023199107497930527, + 0.026962175965309143, + -0.04364115744829178, + 0.011578815057873726, + -0.08928012102842331, + -0.04501651972532272, + -0.06586568057537079, + 0.011106250807642937, + -0.04357130080461502, + 0.04855532571673393, + -0.0624745711684227, + 0.038948677480220795, + 0.016484789550304413, + 0.03751914203166962, + -0.0018111105309799314, + 0.15350688993930817, + 0.04103840887546539, + 0.004004639107733965, + -0.03709099441766739, + -0.0011947250459343195, + -0.05972858518362045, + 0.058447789400815964, + -0.0023152048233896494, + 0.0032789474353194237, + -0.06504151225090027, + -0.07816550880670547, + 0.021107347682118416, + 0.01977643556892872, + 0.0024023244623094797, + -0.015169525519013405, + 0.05797624588012695, + 0.0033463186118751764, + 0.09617679566144943, + -0.053440436720848083, + -0.08082561194896698, + -0.023775732144713402, + 0.007161143701523542, + 0.03691872954368591, + 0.1407705694437027, + 0.029151862487196922, + 0.02863849513232708, + 0.08612561225891113, + 0.02607300691306591, + 0.04426898807287216, + -0.004582557361572981, + -0.0011644994374364614, + 0.00736102694645524, + -0.019995015114545822, + 0.004298872780054808, + -0.15572857856750488, + -0.01794990710914135, + 0.05614600330591202, + -0.016656603664159775, + 0.11231222003698349, + -0.01591380313038826, + -0.026056751608848572, + -0.027800938114523888, + -0.05120682716369629, + -0.06628934293985367, + 0.0653935894370079, + -0.02586347796022892, + -0.013397147879004478, + -0.02479410544037819, + -0.11181175708770752, + -0.06584770977497101, + -1.273605999582086e-34, + 0.12416178733110428, + -0.027168525382876396, + -0.05736330524086952, + -0.030489135533571243, + 0.023307237774133682, + 0.0009210165590047836, + -0.005440383683890104, + -0.0040659550577402115, + -0.03496616706252098, + 0.04144708067178726, + 0.03816845268011093, + -0.029524995014071465, + 0.02448904514312744, + -0.04172208532691002, + 0.0465644970536232, + 0.06506919115781784, + 0.03907549008727074, + -0.015639416873455048, + -0.03261861577630043, + 0.014799431897699833, + -0.006983555853366852, + -0.0652012899518013, + -0.019569287076592445, + 0.05523065850138664, + 0.005343677941709757, + 0.01913749985396862, + 0.04763313755393028, + 0.002758841495960951, + -0.08436774462461472, + 0.0021088221110403538, + -0.07778668403625488, + -0.024792810901999474, + -0.02861667238175869, + 0.09785224497318268, + -0.02536432445049286, + 0.03497041389346123, + -0.06329043209552765, + -0.020012278109788895, + -0.045810502022504807, + -0.017206236720085144, + 0.05636274069547653, + -0.04105908423662186, + 0.00805823877453804, + 0.08537542819976807, + 0.009604434482753277, + -0.04741532355546951, + -0.10256591439247131, + -0.04170523211359978, + -0.008139829151332378, + 0.08370723575353622, + 0.01718294806778431, + 0.013234451413154602, + 0.014787971042096615, + -0.003003776306286454, + -0.03925381973385811, + -0.0007880250341258943, + -0.034913092851638794, + -0.03183924779295921, + 0.008080970495939255, + 0.13476067781448364, + 0.013705875724554062, + 0.10518267005681992, + -0.05497182533144951, + 0.02918875776231289, + 0.007067965809255838, + -0.01658538170158863, + -0.029734386131167412, + -0.024126235395669937, + 0.020162951201200485, + 0.014961610548198223, + 0.05040953308343887, + -0.007399602327495813, + 0.009905537590384483, + 0.08870972692966461, + -0.0037007711362093687, + -0.039532799273729324, + 0.11360006779432297, + 0.013076911680400372, + -0.004243261180818081, + 0.04213311895728111, + -0.02020765282213688, + -0.044913019984960556, + 0.06483031064271927, + -0.004349479451775551, + 0.027337193489074707, + 0.020588979125022888, + -0.05919365584850311, + 0.04600691422820091, + -0.085822194814682, + 0.0014056580839678645, + -0.02807888574898243, + 0.11155716329813004, + -0.06838302314281464, + -0.0703415796160698, + 0.015917226672172546, + -1.542352734418273e-08, + -0.08814465999603271, + -0.05749274417757988, + -0.025408528745174408, + -0.03477904945611954, + -0.03333768621087074, + -0.09736752510070801, + -0.03006519004702568, + -0.03389495238661766, + -0.0683327466249466, + -0.01867045648396015, + 0.0480266697704792, + -0.03781125694513321, + -0.009011401794850826, + 0.04114333912730217, + 0.038363177329301834, + 0.09367506951093674, + -0.05637327954173088, + 0.05581645295023918, + -0.06160390377044678, + 0.010048252530395985, + -0.05022967606782913, + 0.0006742209079675376, + 0.008567837066948414, + -0.03284763544797897, + 0.02797340415418148, + -0.019200991839170456, + -0.10313346982002258, + 0.02420991100370884, + 0.09176212549209595, + 0.0562392920255661, + 0.05971163511276245, + 0.03147966414690018, + -0.028384579345583916, + -0.0010676372330635786, + -0.07332471013069153, + 0.042277414351701736, + -0.028970932587981224, + -0.053825683891773224, + 0.02794644981622696, + 0.07693950086832047, + -0.08012112230062485, + -0.06008222699165344, + -0.03476371243596077, + -0.0202653631567955, + 0.044226836413145065, + 0.0023906994611024857, + 0.06528357416391373, + -0.00774388387799263, + -0.0027058986015617847, + -0.00961747020483017, + -0.0146284569054842, + -0.04048953205347061, + 0.027099665254354477, + 0.07459922134876251, + -0.0480215847492218, + -0.06083572655916214, + 0.027909651398658752, + 0.06688680499792099, + 0.01863241195678711, + 0.050877321511507034, + 0.10410159081220627, + 0.04788029193878174, + 0.033248402178287506, + 0.030017917975783348 + ], + "court-basketball-bold||*new*,sports,nba": [ + 0.018893525004386902, + 0.011892045848071575, + -0.005741422064602375, + -0.07199380546808243, + -0.01802738755941391, + 0.011689016595482826, + 0.06657455116510391, + -0.043286677449941635, + 0.07457433640956879, + 0.08439253270626068, + -0.04916223883628845, + 0.024882595986127853, + 0.036751970648765564, + 0.0023835741449147463, + 0.03460143506526947, + 0.013356986455619335, + 0.08639159798622131, + 0.05770431086421013, + 0.01586146466434002, + -0.03765420243144035, + 0.024222074076533318, + 0.0601537823677063, + -0.01686117984354496, + -0.0026012184098362923, + 0.009787525981664658, + 0.024048464372754097, + 0.0037082545459270477, + 0.07069915533065796, + -0.10569027066230774, + -0.060658957809209824, + -0.07930684834718704, + -0.02060282975435257, + 0.053918950259685516, + 0.049145691096782684, + 0.033626019954681396, + -0.031474336981773376, + -0.07826878875494003, + 0.07109302282333374, + -0.010703186504542828, + 0.014824808575212955, + 0.04768231511116028, + -0.10547525435686111, + 0.02729177661240101, + 0.08980882912874222, + -0.0032496193889528513, + 0.05487573519349098, + -0.05845941975712776, + -0.0074513875879347324, + 0.04701259732246399, + 0.03972458839416504, + -0.046508029103279114, + -0.02076614834368229, + -0.023755403235554695, + -0.014766164124011993, + 0.0672626867890358, + 0.0735677033662796, + 0.0031409000512212515, + 0.030060967430472374, + 0.014944157563149929, + -0.037840697914361954, + 0.06856412440538406, + -0.023838624358177185, + 0.015235535800457, + 0.05984866991639137, + 0.0034962878562510014, + -0.03666204214096069, + 0.02382175251841545, + 0.040354300290346146, + -0.041969746351242065, + 0.009780289605259895, + 0.028505872935056686, + 0.06266256421804428, + -0.06947439908981323, + -0.03546937555074692, + 0.00018496791017241776, + 0.030105574056506157, + -0.02914324402809143, + 0.014664282090961933, + -0.05454176291823387, + -0.011165205389261246, + 0.03133273869752884, + -0.12011413276195526, + -0.07748041301965714, + -0.07300382107496262, + -0.06856334209442139, + -0.03029625490307808, + -0.10717719793319702, + -0.025540880858898163, + 0.006537644192576408, + -0.006875536870211363, + -0.08436614274978638, + -0.031232325360178947, + -0.0034668187145143747, + -0.011162341572344303, + -0.05927189067006111, + 0.060525186359882355, + -0.08101161569356918, + -0.09965117275714874, + 0.03256160765886307, + 0.10315809398889542, + 0.07610698789358139, + 0.03180426359176636, + 0.026673194020986557, + 0.08262937515974045, + 0.0017453564796596766, + 0.001007158076390624, + -0.042526550590991974, + 0.046141721308231354, + -0.025975551456212997, + 0.07588724046945572, + 0.014029614627361298, + -0.04724622890353203, + 0.010244769975543022, + 0.00456818426027894, + -0.045579105615615845, + 0.04422533139586449, + -0.004459016490727663, + 0.020706428214907646, + 0.10112902522087097, + 0.07151015847921371, + 0.027987295761704445, + 0.016110848635435104, + -0.07779461145401001, + 0.01985347829759121, + -0.041871245950460434, + 0.036913931369781494, + 0.011913151480257511, + -6.56679853916492e-33, + 0.03794464096426964, + -0.03944094479084015, + 0.06077108159661293, + 0.0927022397518158, + -0.007647612597793341, + -0.020361242815852165, + -0.00392576027661562, + -0.04246103763580322, + -0.0695016160607338, + -0.0369163379073143, + 0.00784637313336134, + 0.01409529335796833, + 0.02536969631910324, + -0.06852315366268158, + 0.04397142305970192, + -0.03739825263619423, + -0.04878036677837372, + -0.014634707942605019, + -0.014253337867558002, + 0.041439224034547806, + -0.06147505342960358, + 0.07927178591489792, + 0.03315062075853348, + 0.009524130262434483, + -0.10503290593624115, + -0.0376235730946064, + 0.023299753665924072, + -0.09179721027612686, + -0.0629398301243782, + -0.0012704385444521904, + 0.034769486635923386, + -0.0005441975663416088, + 0.029878830537199974, + 0.01985764689743519, + 0.059349678456783295, + 0.018825190141797066, + -0.02521425299346447, + -0.0066769844852387905, + 0.05369099974632263, + -0.05604136362671852, + -0.11063194274902344, + -0.06364419311285019, + -0.040446020662784576, + -0.028288699686527252, + -0.009450682438910007, + 0.06681787967681885, + -0.11023066937923431, + -0.061494097113609314, + -0.043773356825113297, + 0.0015111800748854876, + 0.03716319799423218, + -0.037944164127111435, + 0.003757684724405408, + -0.025330152362585068, + -0.009195317514240742, + -0.031705062836408615, + -0.03891172632575035, + -0.013453671708703041, + 0.0004216439847368747, + -0.0037768336478620768, + 0.057052455842494965, + 0.07298394292593002, + -0.0037965483497828245, + 0.01917869783937931, + -0.09692050516605377, + 0.028722096234560013, + 0.03085215948522091, + 0.0674867108464241, + 0.12290305644273758, + 0.016526835039258003, + 0.023227492347359657, + 0.0251658596098423, + -0.0006932514952495694, + 0.1237807348370552, + 0.021686691790819168, + 0.07992786169052124, + 0.02425992488861084, + -0.006439913064241409, + -0.026861386373639107, + -0.0725148618221283, + -0.06613899767398834, + 0.008003059774637222, + -0.05775836110115051, + 0.09566625952720642, + -0.015339644625782967, + -0.040561508387327194, + -0.06960801780223846, + -0.05963648855686188, + -0.007446207571774721, + 0.011055556125938892, + -0.13587871193885803, + -0.03711412101984024, + -0.05202190950512886, + 0.038106922060251236, + -0.04386264458298683, + 1.0709856480299897e-33, + 0.04380190372467041, + -0.024966053664684296, + -0.03888867795467377, + -0.013058317825198174, + -0.0012308652512729168, + -0.01108903530985117, + 0.003228830173611641, + 0.04978933930397034, + 0.028922295197844505, + 0.05246957391500473, + -0.013657238334417343, + -0.025653166696429253, + -0.02716553397476673, + -0.0269978865981102, + 0.02633199281990528, + 0.0005511688650585711, + 0.009076361544430256, + 0.01449018158018589, + -0.03841510787606239, + 0.1072029322385788, + 0.031042344868183136, + -0.019624222069978714, + -0.06257534772157669, + 0.0553177185356617, + -0.02795282006263733, + -0.02792620100080967, + -0.011938812211155891, + -0.005468931049108505, + -0.062181659042835236, + -0.00036433013156056404, + -0.042305245995521545, + -0.0021518594585359097, + 0.05159822851419449, + 0.05697992816567421, + -0.08617400377988815, + 0.03929562121629715, + 0.08502835035324097, + -0.10377280414104462, + 0.0626182034611702, + -0.022133661434054375, + 0.05210815742611885, + 0.00035334666608832777, + -0.008653143420815468, + 0.0008778051706030965, + 0.07441208511590958, + 0.07216157764196396, + 0.02063075266778469, + 0.002535073785111308, + -0.032940417528152466, + 0.0012042117305099964, + -0.058920495212078094, + -0.023915477097034454, + -0.08169632405042648, + 0.02340230531990528, + -0.018982280045747757, + -0.03842485696077347, + -0.06040753424167633, + 0.02363407053053379, + -0.07641998678445816, + -0.022062968462705612, + -0.021416334435343742, + 0.08451790362596512, + -0.11854086071252823, + 0.03536893427371979, + 0.010301870293915272, + 0.05338083580136299, + 0.013851471245288849, + -0.03137863427400589, + -0.06036325544118881, + -0.06431262195110321, + -0.10097504407167435, + -0.005312812048941851, + -0.08550330251455307, + 0.005089437123388052, + 0.00956417340785265, + 0.00697071710601449, + 0.00260854116640985, + 0.08539003878831863, + -0.038837749511003494, + 0.05895569175481796, + -0.012750672176480293, + -0.015763379633426666, + -0.09305939823389053, + 0.056607116013765335, + 0.055345676839351654, + 0.07926232367753983, + 0.026218147948384285, + 0.025152046233415604, + -0.027875397354364395, + 0.012196140363812447, + -0.02019166387617588, + 0.018214279785752296, + -0.03413265198469162, + 0.02552196942269802, + -0.03667120262980461, + -2.0533823530399786e-08, + 0.031403303146362305, + 0.0956687331199646, + -0.06159922108054161, + 0.023596182465553284, + -0.05384360998868942, + -0.02503381296992302, + 0.017447002232074738, + -0.02884536050260067, + 0.027974383905529976, + -0.07616202533245087, + -0.023862846195697784, + -0.07184004038572311, + 0.01936999335885048, + 0.012130971997976303, + 0.023074831813573837, + 0.13841727375984192, + -0.0974324494600296, + 0.0006508572259917855, + -0.03938896209001541, + 0.010001743212342262, + -0.03585370257496834, + 0.0018509350484237075, + 0.01206892915070057, + -0.0022350517101585865, + -0.021141815930604935, + -0.05957181006669998, + -0.09518661350011826, + -0.09093789756298065, + 0.01834115758538246, + -0.03639911487698555, + 0.07419002056121826, + 0.06878306716680527, + -0.02356049418449402, + -0.07154733687639236, + -0.04118575155735016, + -0.014906823635101318, + 0.040904950350522995, + -0.058694593608379364, + 0.0731356218457222, + 0.01815282180905342, + -0.10316386073827744, + 0.02194523811340332, + -0.010674355551600456, + -0.034303758293390274, + 0.021842291578650475, + -0.03422478958964348, + 0.056536298245191574, + -0.035975534468889236, + -0.1318376660346985, + -0.08724243938922882, + -0.027285298332571983, + 0.013317468576133251, + 0.03256753087043762, + -0.019786398857831955, + 0.0685577243566513, + 0.05889724940061569, + 0.048841554671525955, + 0.052995506674051285, + 0.0042918710969388485, + -0.011188341304659843, + 0.16945068538188934, + 0.03179505094885826, + 0.07992556691169739, + 0.03253857046365738 + ], + "cow-bold||*new*,animals,livestock,beef,bull,milk,dairy": [ + -0.0021403376013040543, + -0.10001736134290695, + -0.002500334521755576, + 0.07624662667512894, + 0.030829746276140213, + -0.007754122838377953, + -0.01740201935172081, + -0.04305262863636017, + -0.015782276168465614, + -0.004052701406180859, + 0.09550843387842178, + -0.06431486457586288, + -0.042596060782670975, + -0.004460303112864494, + 0.013261395506560802, + 0.04067840054631233, + 0.056602515280246735, + -0.019494958221912384, + 0.04652179405093193, + -0.02894458919763565, + 0.03428133204579353, + 0.049007318913936615, + -0.010436459444463253, + 0.07522907853126526, + 0.06149798259139061, + -0.008053401485085487, + -0.0017821640940383077, + -0.03805229067802429, + -0.014709818176925182, + -0.06336349993944168, + -0.07105594128370285, + -0.007900489494204521, + 0.11056751757860184, + 0.007724082097411156, + 0.026555750519037247, + -0.030858660116791725, + 0.07056469470262527, + -0.04458385705947876, + 0.0961412861943245, + 0.05838347226381302, + 0.035347338765859604, + -0.09701085835695267, + 0.01310631725937128, + 0.012216230854392052, + 0.015434009954333305, + 0.06909924745559692, + -0.06718114018440247, + 0.031821414828300476, + 0.05380730703473091, + 0.03227713331580162, + -0.03995081037282944, + -0.10667193681001663, + -0.1167956218123436, + 0.0356980636715889, + 0.08128496259450912, + -0.033737294375896454, + -0.06824805587530136, + -0.04718820005655289, + 0.008198104798793793, + 0.02985280379652977, + 0.029027990996837616, + 0.011913866735994816, + 0.08760953694581985, + 0.08393166959285736, + 0.022532757371664047, + -0.026537584140896797, + -0.039867665618658066, + 0.04812745004892349, + -0.062426723539829254, + 0.010651755146682262, + 0.015056234784424305, + -0.01331593282520771, + -0.01038038358092308, + -0.0061618671752512455, + -0.11978628486394882, + 0.07122841477394104, + 0.06379388272762299, + -0.0037952729035168886, + 0.08521778881549835, + -0.05637306347489357, + -0.08059191703796387, + -0.04937070980668068, + -0.06424939632415771, + -0.03721553832292557, + 0.001437053782865405, + 0.03079896792769432, + -0.05112450569868088, + -0.08329181373119354, + -0.09642614424228668, + -0.055009592324495316, + -0.09077169001102448, + -0.08087266236543655, + 0.014687124639749527, + 0.04211519658565521, + 0.004916109144687653, + 0.026708530262112617, + 0.025477387011051178, + -0.02328772470355034, + 0.006498733069747686, + 0.06179775670170784, + -0.03443245217204094, + -0.005917656701058149, + 0.0098988376557827, + -0.04663529247045517, + -0.05677206814289093, + -0.008141706697642803, + -0.14894507825374603, + -0.012686830013990402, + 0.020072143524885178, + 0.0643247589468956, + -0.04292316734790802, + 0.0020027884747833014, + -0.0365457683801651, + 0.01934490166604519, + -0.017553385347127914, + 0.030852384865283966, + -0.0818224549293518, + -0.11869770288467407, + 0.006496084854006767, + 0.05008693411946297, + 0.013732271268963814, + 0.0051721688359975815, + 0.051566533744335175, + -0.012066114693880081, + -0.006405288353562355, + -0.002168809063732624, + 0.04603501409292221, + -2.8218878814931448e-33, + 0.030567368492484093, + -0.052362676709890366, + -0.022441603243350983, + 0.007509060204029083, + 0.009902460500597954, + -0.008215045556426048, + -0.07297345250844955, + -0.020596440881490707, + -0.02610034868121147, + 0.0384533628821373, + 0.0069305081851780415, + 0.04503614082932472, + 0.0197918564081192, + 0.061832673847675323, + 0.010641953907907009, + -0.06022593379020691, + 0.06979268044233322, + -0.06262940168380737, + 0.004167506936937571, + 0.01145457848906517, + -0.0848923847079277, + 0.1492767482995987, + 0.027476893737912178, + -0.011765878647565842, + -0.06240883097052574, + -0.05871134251356125, + 0.00907803326845169, + -0.12743732333183289, + -0.03445964306592941, + 0.049740735441446304, + 0.015925511717796326, + -0.07363736629486084, + 0.009430093690752983, + 0.008536526001989841, + -0.027546655386686325, + -0.05178491771221161, + -0.021739479154348373, + -0.10653868317604065, + -0.030981536954641342, + 0.03695100545883179, + 0.020668478682637215, + 0.003390685888007283, + 0.02999723330140114, + 0.04357173666357994, + 0.042037058621644974, + 0.13002778589725494, + -0.024147862568497658, + -0.051702406257390976, + -0.06718849390745163, + 0.008105411194264889, + -0.050185251981019974, + -0.0007908908883109689, + -0.01287679374217987, + -0.0054436600767076015, + 0.02370619773864746, + -0.02961897663772106, + -0.009766622446477413, + 0.051515642553567886, + -0.02877035178244114, + -0.008406919427216053, + -0.006403160281479359, + 0.07375209033489227, + 0.038151130080223083, + -0.00033263914519920945, + 0.005236782133579254, + 0.01686541549861431, + -0.07514197379350662, + 0.030881652608513832, + 0.09497789293527603, + 0.05755992978811264, + 0.03985946252942085, + 0.023473870009183884, + -0.025717638432979584, + -0.022871797904372215, + 0.015517262741923332, + -0.005963359493762255, + 0.017252640798687935, + 0.020013809204101562, + -0.01994703896343708, + -0.07231452316045761, + -0.05166716128587723, + 0.032142315059900284, + -0.061701200902462006, + 0.12599462270736694, + -0.055240828543901443, + 0.054832421243190765, + -0.03205694630742073, + -0.10541018098592758, + 0.06501364707946777, + -0.038321495056152344, + -0.05862223356962204, + 0.024382343515753746, + -0.02896740846335888, + -0.09688917547464371, + -0.020305026322603226, + -3.446688337798886e-34, + 0.04225338622927666, + 0.018185144290328026, + -0.005895593203604221, + 0.00207316130399704, + -0.04774855077266693, + -0.05721532925963402, + 0.03322148695588112, + 0.07705768942832947, + 0.06561579555273056, + -0.002528443234041333, + 0.014423437416553497, + -0.041925325989723206, + -0.06956139206886292, + -0.03674250468611717, + 0.05731895938515663, + 0.02538265660405159, + -0.01834101229906082, + 0.06902026385068893, + -0.001095981220714748, + 0.022713569924235344, + -0.049626804888248444, + -0.023905200883746147, + -0.07802572846412659, + 0.08117563277482986, + 0.08228255063295364, + 0.08731164783239365, + -0.05090916156768799, + -0.014781435020267963, + -0.0239598136395216, + -0.09437377750873566, + -0.08353628218173981, + -0.0652925968170166, + 0.037051379680633545, + 0.02336081676185131, + -0.03467685729265213, + 0.015957551077008247, + 0.06297647953033447, + -0.06371016800403595, + 0.02068663388490677, + -0.015360320918262005, + 0.022310815751552582, + 0.03235512971878052, + -0.002398014534264803, + 0.05008949339389801, + -0.03526543825864792, + 0.019284218549728394, + -0.04936802014708519, + -0.017349056899547577, + -0.026796942576766014, + 0.08319959789514542, + 0.04386802390217781, + -0.028398709371685982, + 0.02838274836540222, + -0.0692642480134964, + -0.028740976005792618, + -0.02570423297584057, + 0.021361462771892548, + -0.04583127796649933, + -0.03540961444377899, + 0.06030825525522232, + 0.014755037613213062, + 0.05375443771481514, + 0.009601562283933163, + 0.008562291041016579, + -0.016919590532779694, + -0.07771211117506027, + -0.04963291063904762, + -0.06458103656768799, + 0.0469869039952755, + -0.05313756689429283, + 0.024483250454068184, + 0.04751655086874962, + -0.07690709084272385, + 0.020144520327448845, + 0.026800375431776047, + 0.01137782447040081, + 0.0005516849341802299, + -0.052618686109781265, + 0.022173495963215828, + 0.04720547795295715, + -0.041157741099596024, + -0.07819047570228577, + -0.006223668809980154, + 0.12695586681365967, + 0.06838828325271606, + 0.02958306297659874, + -0.028924107551574707, + 0.06911014765501022, + 0.07133780419826508, + 0.042724061757326126, + -0.03555501252412796, + 0.000716858368832618, + 0.006546993739902973, + 0.03179124370217323, + 0.023751026019454002, + -2.2240337571588498e-08, + -0.011142141185700893, + -0.02240721881389618, + -0.049462441354990005, + 0.0158708356320858, + 0.10581237822771072, + -0.0345245786011219, + -0.09679443389177322, + -0.10521983355283737, + 0.005941407755017281, + 0.015311653725802898, + -0.0030606116633862257, + 0.1315748691558838, + -0.05673708766698837, + 0.009301870130002499, + 0.018780741840600967, + -0.00030842924024909735, + 0.039244383573532104, + -0.024952195584774017, + -0.00614842539653182, + 0.019590282812714577, + -0.06491264700889587, + 0.05024189502000809, + -0.05102509632706642, + -0.08855484426021576, + 0.02308909222483635, + -0.0644376277923584, + -0.040784209966659546, + 0.014509356580674648, + 0.07646398991346359, + 0.06136329844594002, + 0.04952477663755417, + 0.09089221060276031, + -0.03727298974990845, + -0.03619096428155899, + -0.016970381140708923, + 0.027678724378347397, + -0.04231429100036621, + 4.234017615090124e-05, + 0.02841872349381447, + 0.04359235614538193, + -0.010861231945455074, + 0.05683097615838051, + 0.00991053506731987, + -0.016707828268408775, + -0.003649646881967783, + -0.06032859906554222, + 0.027575071901082993, + -0.018227074295282364, + -0.04464265704154968, + -0.12948927283287048, + -0.0454971119761467, + 0.0013563988031819463, + 0.03693578019738197, + 0.024236619472503662, + -0.029914284124970436, + -0.03582027554512024, + 0.0035776160657405853, + -0.04099266976118088, + 0.02660042978823185, + -0.01783720590174198, + 0.12114585936069489, + -0.038140565156936646, + 0.11471294611692429, + 0.03628317639231682 + ], + "cowboy-hat-bold||*new*,clothes,clothing,stetson": [ + -0.05826626718044281, + -0.03774852305650711, + 0.01361833419650793, + 0.02098916471004486, + 0.12138719111680984, + 0.024377873167395592, + 0.05902056768536568, + -0.08112570643424988, + -0.007082623895257711, + -0.028073551133275032, + 0.05616012215614319, + 0.004259197041392326, + 0.037580449134111404, + -0.05146182328462601, + 0.07592936605215073, + 0.0727597251534462, + -0.0018577114678919315, + 0.07038730382919312, + 0.08611474186182022, + -0.07932262122631073, + -0.053570155054330826, + 0.11504313349723816, + -0.026762496680021286, + 0.0703011229634285, + -0.02589411288499832, + -0.04401729628443718, + -0.021673819050192833, + 0.05326725170016289, + -0.05468599125742912, + -0.03422810137271881, + -0.012821976095438004, + -0.01199503242969513, + 0.10836149007081985, + 0.013931638561189175, + -0.011055796407163143, + 0.09233388304710388, + 0.03142019733786583, + -0.017695600166916847, + 0.03863919898867607, + 0.1326785683631897, + -0.08333995938301086, + -0.0430464968085289, + -0.0840870589017868, + 0.023472299799323082, + -0.0007449888507835567, + -0.027645550668239594, + -0.021826142445206642, + 0.03158605471253395, + 0.031809646636247635, + 0.07602372020483017, + 0.013305927626788616, + -0.06669247150421143, + -0.047977473586797714, + 0.029248083010315895, + 0.025534946471452713, + 0.021373940631747246, + -0.030093783512711525, + -0.033161137253046036, + -0.015332878567278385, + 0.03215748444199562, + -0.03731030225753784, + 0.02403700351715088, + 0.0105653777718544, + 0.026955127716064453, + 0.012892366386950016, + 0.005435952451080084, + -0.04929487034678459, + 0.015241964720189571, + -0.04107252135872841, + 0.03560915216803551, + -0.008762513287365437, + -0.0017408201238140464, + -0.07674586027860641, + 0.010011083446443081, + -0.1031825840473175, + -0.03288162127137184, + -0.006904600188136101, + -0.046590376645326614, + -0.002871789736673236, + 0.006597988773137331, + -0.12603037059307098, + -0.052193090319633484, + 0.04201493412256241, + -0.10292597860097885, + -0.024498965591192245, + 0.029227064922451973, + -0.10652883350849152, + -0.05552145838737488, + -0.06564600765705109, + -0.016390150412917137, + -0.0999273732304573, + -0.0267424788326025, + -0.0005938056856393814, + 0.01583140157163143, + -0.015012126415967941, + 0.04844777658581734, + 0.02723013237118721, + 0.012934495694935322, + -0.001966410083696246, + 0.10743791610002518, + 0.00928165391087532, + -0.040565893054008484, + -0.024577749893069267, + -0.034898266196250916, + 0.00911798793822527, + -0.003732184646651149, + -0.03193541616201401, + 0.008913095109164715, + -0.047537267208099365, + 0.012448279187083244, + 0.0363810770213604, + -0.049331456422805786, + -0.03999336436390877, + -0.045166049152612686, + -0.016945326700806618, + -0.0038362876512110233, + -0.05245393514633179, + 0.015109293162822723, + 0.012469234876334667, + 0.0891093909740448, + 0.051554206758737564, + 0.04824695736169815, + 0.018214376643300056, + -0.05756751820445061, + -0.08210243284702301, + -0.018850646913051605, + 0.05332300066947937, + -1.183901523153567e-33, + 0.04978926107287407, + 0.06917471438646317, + -0.041169553995132446, + 0.11849130690097809, + -0.0026855606120079756, + 0.009389936923980713, + -0.0034479533787816763, + -0.020205942913889885, + -0.08242423087358475, + 0.08870600908994675, + 0.07024148851633072, + 0.10785716772079468, + -0.03684202581644058, + 0.04392347112298012, + 0.03237505257129669, + -0.08851934224367142, + -0.0016310452483594418, + -0.029483575373888016, + 0.01852482184767723, + -0.0247925017029047, + -0.08240903913974762, + 0.11995837092399597, + 0.003969232551753521, + -0.017821021378040314, + -0.04787277430295944, + -0.04182057827711105, + 0.04964963719248772, + -0.030929943546652794, + -0.04057745262980461, + 0.05074041336774826, + 0.029907841235399246, + -0.028417332097887993, + 0.06176832318305969, + -0.023601142689585686, + 0.019346624612808228, + -0.07434030622243881, + -0.06535372138023376, + -0.03133966401219368, + -0.018186813220381737, + 0.07387442886829376, + -0.0010467427782714367, + -0.008385161869227886, + -0.007345071528106928, + 0.05287924408912659, + -0.07592503726482391, + 0.08035366237163544, + 0.04298935458064079, + 0.05238191410899162, + 0.01889246329665184, + 0.05009928718209267, + 0.007524329237639904, + -0.028295615687966347, + -0.010856127366423607, + -0.0028283370193094015, + -0.052323319017887115, + -0.09161330759525299, + -0.020765338093042374, + 0.023702358826994896, + 0.03576602041721344, + -0.030411846935749054, + 0.05774996429681778, + 0.04334079846739769, + 0.05699719488620758, + -0.07151107490062714, + -0.0020472558680921793, + -0.06474633514881134, + 0.015689725056290627, + 0.014875402674078941, + 0.05226634815335274, + -0.0020657936111092567, + 0.042734064161777496, + 0.06699875742197037, + 0.03455251827836037, + 0.052682507783174515, + 0.0388370044529438, + -0.0045778523199260235, + 0.026122579351067543, + 0.049987319856882095, + 0.08025775849819183, + -0.08391094207763672, + -0.08017641305923462, + 0.03490179404616356, + -0.012670238502323627, + 0.11562556773424149, + 0.001807549619115889, + -0.030427228659391403, + 0.033674076199531555, + -0.04499168321490288, + -0.04689650237560272, + 0.010036621242761612, + -0.03619736433029175, + 0.05947446823120117, + -0.08123183995485306, + -0.06635603308677673, + 0.02444937638938427, + -1.3633304502310195e-33, + 0.1014566719532013, + 0.011973496526479721, + -0.012717632576823235, + 0.002515540923923254, + -0.0038441959768533707, + 0.0190926194190979, + 0.0801188200712204, + 0.017416397109627724, + 0.02665787748992443, + 0.012462671846151352, + 0.032820187509059906, + -0.03307098522782326, + -0.056613512337207794, + -0.056602757424116135, + 0.06008132919669151, + -0.04024854674935341, + -0.03828776627779007, + 0.04107784479856491, + -0.00023293125559575856, + 0.017177851870656013, + -0.007857128977775574, + -0.062153492122888565, + -0.08504387736320496, + -0.011422581039369106, + -0.011858235113322735, + -0.012734954245388508, + -0.017273347824811935, + -0.01219217386096716, + -0.10214121639728546, + 0.03533558174967766, + -0.032758407294750214, + -0.0247025303542614, + 0.004422203171998262, + 0.1538746953010559, + -0.06757595390081406, + 0.028074417263269424, + 0.025302570313215256, + -0.00796058215200901, + 0.030996639281511307, + 0.03668801859021187, + 0.01721358112990856, + -0.0513068363070488, + 0.02554893121123314, + 0.030119096860289574, + -0.019074102863669395, + -0.06362853944301605, + -0.13331839442253113, + -0.025488356128335, + -0.014413507655262947, + 0.0597592368721962, + -0.02437971532344818, + 0.010536604560911655, + -0.05615060403943062, + -0.013331432826817036, + -0.10433953255414963, + 0.008873929269611835, + -0.08197798579931259, + -0.0004906877293251455, + -0.014798734337091446, + 0.10202094167470932, + -0.0031576037872582674, + 0.023907462134957314, + -0.018913401290774345, + 0.03933129087090492, + 0.03754132613539696, + -0.06159007549285889, + -0.011336620897054672, + -0.06141217425465584, + 0.026845308020710945, + -0.03778969123959541, + 0.03135646879673004, + -0.057111043483018875, + 0.00461150798946619, + -0.03736864775419235, + -0.0495365634560585, + -0.006657453253865242, + 0.04343073442578316, + 0.012734922580420971, + 0.005828509107232094, + 0.0648442804813385, + -0.03141079843044281, + -0.042343270033597946, + -0.08620989322662354, + 0.07850630581378937, + 0.055262137204408646, + 0.10102544724941254, + -0.034160416573286057, + 0.06063574180006981, + 0.021099882200360298, + -0.020161248743534088, + -0.03316361457109451, + 0.05924970656633377, + -0.02448577992618084, + 0.032678429037332535, + -0.08151718229055405, + -1.9684433638644805e-08, + -0.048989616334438324, + 0.05817848816514015, + -0.017031347379088402, + 0.017506055533885956, + 0.039934031665325165, + 0.06830786168575287, + -0.08792933821678162, + -0.121640644967556, + -0.005321012809872627, + -0.04668384790420532, + 0.047073524445295334, + 0.02085696905851364, + -0.04234261065721512, + 0.014111756347119808, + -0.05118585377931595, + 0.015513459220528603, + -0.05071558803319931, + 0.05805663391947746, + -0.007817678153514862, + -0.07864096760749817, + -0.011763174086809158, + 0.06474780291318893, + 0.03919076919555664, + -0.05423479899764061, + -0.02498321235179901, + -0.020023109391331673, + -0.011970956809818745, + 0.08888048678636551, + 0.011176420375704765, + 0.11701684445142746, + 0.05681854858994484, + 0.045265015214681625, + -0.12474251538515091, + -0.07542923837900162, + -0.013092931360006332, + -0.03909444436430931, + -0.09220139682292938, + -0.04505079612135887, + 0.03790203109383583, + 0.04540913552045822, + 0.0029503186233341694, + 0.0199065450578928, + -0.03257567808032036, + 0.01260426826775074, + 0.030946163460612297, + 0.00194252107758075, + 0.08193840831518173, + -0.008147687651216984, + -0.06141463294625282, + -0.058668527752161026, + 0.05189664661884308, + -0.09643784910440445, + 0.013450627215206623, + 0.07121715694665909, + -0.0033078566193580627, + -0.008170164190232754, + 0.05594397708773613, + 0.05668956786394119, + -0.024136226624250412, + -0.01286191027611494, + -0.02580784447491169, + -0.06609367579221725, + 0.042657069861888885, + -0.04022318497300148 + ], + "cpu-bold||processor,microchip,computer,circuit": [ + -0.017063334584236145, + 0.0001572858018334955, + -0.03432518616318703, + 0.006272386759519577, + 0.03540925681591034, + -0.05762014538049698, + 0.02014761045575142, + 0.008499961346387863, + 0.004894686862826347, + -0.032170940190553665, + 0.03560447320342064, + 0.002260764827951789, + 0.029481763020157814, + -0.07233695685863495, + -0.049861762672662735, + 0.02439212240278721, + 0.024294832721352577, + 0.014156383462250233, + -0.002085183747112751, + -0.03295988589525223, + 0.04829225316643715, + -0.00010120377555722371, + -0.03915071859955788, + 0.0354229137301445, + 0.0724375918507576, + 0.07404018193483353, + 0.04225507378578186, + 0.0018281546654179692, + -0.008548291400074959, + -0.07320647686719894, + -0.030796481296420097, + -0.03564779832959175, + 0.12283919751644135, + 0.030734824016690254, + 0.08406821638345718, + 0.03820744529366493, + -0.003721755463629961, + -0.0784938856959343, + 0.020957352593541145, + -0.001982596004381776, + 0.010711166076362133, + -0.07085727900266647, + 0.07648211717605591, + 0.07317333668470383, + 0.01738756336271763, + 0.04102511703968048, + -0.02499314956367016, + -0.053490813821554184, + -0.04929685220122337, + -0.037264179438352585, + -0.05867832154035568, + -0.09558114409446716, + -0.0428987592458725, + 0.03440559655427933, + -0.050342608243227005, + 0.03799542039632797, + -0.0013685948215425014, + -0.022046560421586037, + -0.004359875805675983, + 0.00034594052704051137, + -0.016638515517115593, + -0.06043374910950661, + 0.04094422236084938, + 0.019183987751603127, + 0.08782261610031128, + 0.01660025864839554, + 0.01016355399042368, + -0.03294885531067848, + 0.026269737631082535, + -0.0019688811153173447, + 0.0920778289437294, + -0.06069773808121681, + -0.049810104072093964, + 0.0027022804133594036, + -0.046264730393886566, + -0.006388368550688028, + 0.023804517462849617, + -0.0056410618126392365, + 0.023042701184749603, + -0.09431567788124084, + -0.027501286938786507, + -0.1299801468849182, + -0.08387232571840286, + -0.009155851788818836, + 0.07685628533363342, + -0.0001285798498429358, + -0.04788871482014656, + -0.07677089422941208, + -0.01323199924081564, + -0.07788045704364777, + -0.06560632586479187, + -0.0010407338850200176, + 0.04174768924713135, + -0.018822751939296722, + 0.01253232266753912, + -0.016703402623534203, + 0.025843951851129532, + -0.008454742841422558, + -0.015800585970282555, + 0.07084391266107559, + 0.015659280121326447, + 0.000503026123624295, + 0.05461469665169716, + 0.04249691590666771, + -0.035230591893196106, + 0.004756053909659386, + 0.000798682973254472, + 0.06048877537250519, + -0.01911200024187565, + -0.09200224280357361, + -0.013831144198775291, + 0.025955036282539368, + -0.061492569744586945, + -0.0008915820508264005, + 0.015960589051246643, + -0.07269123941659927, + 0.009151933714747429, + 0.037380412220954895, + 0.10137954354286194, + 0.06641177833080292, + -0.05013061314821243, + -0.025566376745700836, + -0.050231318920850754, + -0.026735959574580193, + 0.03443164750933647, + 0.005401240196079016, + -0.0376107282936573, + -1.4815433049374935e-33, + 0.04609014838933945, + 0.04715278744697571, + -0.04578694328665733, + 0.004820972215384245, + 0.010604874230921268, + 0.030566008761525154, + -0.03134074807167053, + -0.05693401023745537, + -0.012029013596475124, + 0.06012003868818283, + 0.06333021074533463, + 0.03434894233942032, + 0.06020357832312584, + 0.12609635293483734, + 0.08761868625879288, + -0.07004706561565399, + 0.008633270859718323, + -0.03841804713010788, + 0.03436664119362831, + 0.011771947145462036, + 0.005616005510091782, + 0.07475776970386505, + -0.05939333513379097, + -0.010144509375095367, + 0.018811317160725594, + -0.0371955968439579, + -0.039424829185009, + -0.0421316958963871, + -0.08270026743412018, + 0.004608631134033203, + 0.02245401032269001, + 0.0733460858464241, + -0.0003951298713218421, + -0.04369683936238289, + 0.011028692126274109, + 0.04431400075554848, + 0.04062000289559364, + -0.05567457526922226, + 0.052304044365882874, + 0.025438658893108368, + -0.06018470227718353, + 0.016459796577692032, + -0.003185589099302888, + -0.05951964110136032, + 0.05138663575053215, + 0.11514763534069061, + -0.0675695613026619, + -0.03419162705540657, + 0.04722210392355919, + 0.01924796774983406, + -0.004759180825203657, + -0.0014593602390959859, + 0.15595778822898865, + -0.008775747381150723, + 0.08673946559429169, + -0.018383227288722992, + -0.0023195617832243443, + 0.0826667919754982, + 0.07458772510290146, + 0.11767958104610443, + -0.031175963580608368, + 0.05196787789463997, + -0.009181369096040726, + -0.0088697774335742, + -0.02592691406607628, + 0.13564084470272064, + -0.030817754566669464, + 0.06248783320188522, + 0.05123613029718399, + 0.047343261539936066, + -0.035000674426555634, + 0.022699633613228798, + 0.026272069662809372, + 0.012153340503573418, + -0.017771705985069275, + 0.05822720006108284, + -0.11367042362689972, + -0.07267121225595474, + -0.06083640083670616, + -0.06217193603515625, + -0.0939667820930481, + 0.02629811130464077, + -0.05973285436630249, + 0.05045047402381897, + -0.002324457047507167, + 0.05962128937244415, + -0.06216786056756973, + -0.009381741285324097, + 0.0425066240131855, + 0.050273362547159195, + -0.014768448658287525, + 0.03323980048298836, + 0.028800513595342636, + 0.008647547103464603, + -0.09928110241889954, + -6.3519894361796244e-34, + -0.06210474297404289, + -0.024575363844633102, + -0.07710648328065872, + 0.0696447491645813, + -0.04226748272776604, + 0.008966382592916489, + 0.03494345024228096, + -0.059710875153541565, + -0.058522820472717285, + -0.00014360765635501593, + 0.037368904799222946, + -0.04108698293566704, + -0.08151671290397644, + -0.07631541788578033, + 0.016981635242700577, + 0.02487124502658844, + -0.08335188031196594, + 0.03246906027197838, + 0.07174695283174515, + 0.052446383982896805, + -0.0281444750726223, + -0.021823223680257797, + -0.06432723253965378, + 0.03400835022330284, + 0.06950109452009201, + 0.06412428617477417, + -0.07128044217824936, + 0.020319154486060143, + 0.03399035707116127, + -0.05867119878530502, + -0.07317568361759186, + -0.03873997926712036, + 0.08287360519170761, + 0.08934386074542999, + 0.009445961564779282, + 0.06388791650533676, + -0.004244915675371885, + -0.024285806342959404, + 0.08905769884586334, + -0.04083487391471863, + 0.018199756741523743, + -0.009164844639599323, + -0.026122890412807465, + 0.08729035407304764, + -0.04016311466693878, + 0.021321970969438553, + -0.014370315708220005, + -0.05324215069413185, + -0.04472307115793228, + -0.02469678223133087, + -0.0006487335194833577, + -0.062288183718919754, + 0.04384768754243851, + -0.013143982738256454, + -0.06609344482421875, + -0.06992922723293304, + -0.011336528696119785, + 0.02907470427453518, + 0.014632169157266617, + -0.00035720705636776984, + 0.03789864853024483, + -0.06636667996644974, + 0.007548476569354534, + 0.019906945526599884, + 0.010718579404056072, + -0.04616513475775719, + 0.08771087229251862, + 0.008563953451812267, + 0.009730788879096508, + -0.04591073468327522, + 0.03062395006418228, + -0.0065592690370976925, + 0.05320129543542862, + 0.00463968887925148, + -0.019576016813516617, + 0.007754392456263304, + 0.006552351173013449, + 0.03051757998764515, + -0.03669237717986107, + 0.04809807986021042, + -0.012818743474781513, + 0.023274431005120277, + -0.03276447206735611, + 0.013713444583117962, + -0.04817058518528938, + 0.027427086606621742, + 0.017643343657255173, + -0.0341174341738224, + -0.036991242319345474, + -0.09348668903112411, + -0.08243709057569504, + 0.025690650567412376, + 0.008108831010758877, + -0.02477092109620571, + -0.07346723973751068, + -2.0556397473114885e-08, + 0.11968362331390381, + -0.07607778906822205, + -0.010605361312627792, + -0.03756023198366165, + 0.12396129220724106, + -0.07536070048809052, + -0.018742922693490982, + -0.11522763967514038, + -0.03864654526114464, + 0.02582688257098198, + 0.03498327359557152, + -0.012607572600245476, + -0.05870215594768524, + -0.038374580442905426, + 0.11235953122377396, + 0.050108667463064194, + -0.060285668820142746, + 0.04355878382921219, + -0.02670198120176792, + -0.014961331151425838, + -0.053885526955127716, + 0.06354563683271408, + 0.008131748996675014, + -0.006777710281312466, + 0.011800427921116352, + 0.04225930571556091, + -0.004250184167176485, + 0.02472795732319355, + 0.08659831434488297, + 0.11109389364719391, + 0.02334360033273697, + 0.04477011784911156, + 0.02578381635248661, + 0.002822461538016796, + -0.03860890120267868, + -0.03884585201740265, + 0.014893160201609135, + -0.0021599673200398684, + 0.058151375502347946, + 0.006980853620916605, + -0.10629855841398239, + -0.09723428636789322, + -0.09382475912570953, + -0.0023753505665808916, + 0.03434987738728523, + -0.03568023443222046, + -0.034476034343242645, + -0.07658791542053223, + -0.0677235946059227, + -0.04276875779032707, + -0.05557192116975784, + -0.0049928827211260796, + 0.013606693595647812, + 0.12699462473392487, + -0.031856708228588104, + -0.03429765999317169, + -0.025566862896084785, + -0.01901017315685749, + -0.03050779365003109, + 0.01953423023223877, + 0.13181662559509277, + -0.008278814144432545, + 0.07783449441194534, + -0.07254815846681595 + ], + "crane-bold||*new*,construction,industry": [ + -0.10149914771318436, + -0.010133588686585426, + -0.02223142422735691, + 0.020305369049310684, + 0.02392285130918026, + -0.019384881481528282, + -0.025822874158620834, + -0.0643051490187645, + -0.045308440923690796, + 0.0025385194458067417, + 0.03871329128742218, + 0.012041401118040085, + 0.029726900160312653, + -0.04802488908171654, + -0.058374203741550446, + 0.0990220457315445, + 0.018963569775223732, + -0.015848541632294655, + -0.008973746560513973, + 0.023113679140806198, + -0.046948280185461044, + 0.034727390855550766, + -0.014948070049285889, + 0.03247745335102081, + 0.039027102291584015, + 0.07124987244606018, + -0.0521218441426754, + 0.08564828336238861, + 0.06500021368265152, + -0.0530514270067215, + -0.011300794780254364, + 0.026530560106039047, + 0.11538595706224442, + 0.015147704631090164, + 0.08768749982118607, + 0.12248508632183075, + 0.020213155075907707, + -0.052768073976039886, + -0.0066975480876863, + 0.041218314319849014, + 0.021552810445427895, + -0.04931802675127983, + -0.0015071212546899915, + 0.006423404905945063, + -0.0531294122338295, + 0.02624145895242691, + -0.0016556503251194954, + -0.07718553394079208, + 0.058847442269325256, + 0.02772120200097561, + -0.05777929350733757, + -0.11073771119117737, + -0.049726929515600204, + -0.019506802782416344, + -0.017704909667372704, + 0.06611303985118866, + -0.005107585806399584, + -0.03288743644952774, + 0.0016188513254746795, + -0.03245091810822487, + 0.08330463618040085, + 0.019389690831303596, + 0.00446331687271595, + 0.039285797625780106, + 0.03874900937080383, + 0.03473003953695297, + -0.07856495678424835, + -0.009185705333948135, + -0.05661904066801071, + -0.03379622474312782, + 0.06844805926084518, + -0.025099264457821846, + -0.0515427365899086, + -0.049462780356407166, + -0.04359817132353783, + -0.013017233461141586, + 0.03775972127914429, + 0.01672726683318615, + 0.0052551100961863995, + -0.04189198464155197, + -0.027040911838412285, + -0.05335080996155739, + -0.06188885122537613, + -0.05101396515965462, + -0.04895725101232529, + 0.07034439593553543, + -0.05083201080560684, + -0.017318936064839363, + -0.018171442672610283, + -0.005111969541758299, + -0.02308868244290352, + -0.026686880737543106, + -0.11642235517501831, + 0.12024961411952972, + -0.043347056955099106, + 0.07328026741743088, + -0.006908177398145199, + 0.048130206763744354, + -0.05504496395587921, + 0.06121965870261192, + -0.01120493933558464, + 0.03697681054472923, + -0.00048252654960379004, + -0.04054136201739311, + -0.06533581018447876, + -0.027912750840187073, + -0.08647807687520981, + 0.019058723002672195, + -0.05161743238568306, + 0.005882054567337036, + 0.03680006414651871, + -0.07721118628978729, + -0.027381857857108116, + -0.031082648783922195, + -0.013135423883795738, + -0.041956670582294464, + -0.07842712849378586, + -0.045039188116788864, + -0.036993931978940964, + 0.0836590826511383, + 0.08156488835811615, + -0.023047713562846184, + -0.02568005956709385, + -0.06561022251844406, + -0.04864373058080673, + -0.0547589510679245, + -0.06594131141901016, + -3.807624934327075e-33, + 0.052701156586408615, + 0.03899839147925377, + 0.004371673800051212, + 0.11652371287345886, + 0.04127299040555954, + 0.041231296956539154, + -0.04219216853380203, + 0.06753027439117432, + -0.020525334402918816, + 0.06771618127822876, + 0.014671404846012592, + 0.051111117005348206, + -0.02791684865951538, + -0.014601729810237885, + 0.04873024299740791, + -0.15966418385505676, + 0.008669565431773663, + -0.037980660796165466, + -0.022375337779521942, + -0.03226011246442795, + -0.08885540068149567, + 0.06208592653274536, + -0.05373514071106911, + -0.015310646966099739, + 0.03682314231991768, + -0.06985283643007278, + 0.07171335816383362, + -0.011031563393771648, + -0.08034846931695938, + 0.059307780116796494, + 0.00580715574324131, + 0.036713920533657074, + 0.03263670206069946, + 0.023752104490995407, + -0.05631721392273903, + -0.017369210720062256, + -0.04598470404744148, + -0.06143840402364731, + -0.06800669431686401, + 0.029653245583176613, + -0.03414618968963623, + -0.016153506934642792, + -0.042431507259607315, + 0.029543140903115273, + 0.005631662905216217, + 0.04369599372148514, + 0.0039833602495491505, + -0.010265623219311237, + 0.014574726112186909, + -0.0033206013031303883, + 0.016738763079047203, + 0.025758227333426476, + 0.016143623739480972, + 0.061656732112169266, + 0.004968848079442978, + -0.03302586451172829, + -0.021394796669483185, + 0.0212776567786932, + 0.04330475628376007, + -0.015168868936598301, + -0.02166004665195942, + 0.04758026823401451, + 0.030937502160668373, + 0.054889749735593796, + 0.019693922251462936, + 0.008863385766744614, + 0.015452484600245953, + 0.0390218161046505, + 0.07849369198083878, + 0.06567523628473282, + 0.0467042401432991, + 0.03198352828621864, + -0.006615615449845791, + 0.08453743904829025, + -0.05626297369599342, + 0.03747258335351944, + -0.035179171711206436, + 0.064370296895504, + 0.07464651018381119, + -0.05790232494473457, + -0.06155931577086449, + 0.11965561658143997, + -0.013262567110359669, + 0.08380330353975296, + 0.03471564128994942, + -0.023706907406449318, + 0.05121197551488876, + -0.030637916177511215, + -0.0021691664587706327, + 0.0587184876203537, + -0.14420215785503387, + -0.009205189533531666, + -0.07045941799879074, + -0.059395141899585724, + -0.04130086302757263, + 7.086621977565706e-34, + 0.056961022317409515, + 0.03904413804411888, + -0.07936253398656845, + -0.06748509407043457, + -0.02294147200882435, + 0.04429185017943382, + 0.013375386595726013, + -0.024333316832780838, + 0.01152679231017828, + 0.07064765691757202, + -0.009699782356619835, + -0.00804748386144638, + -0.0011146034812554717, + 0.04249245300889015, + 0.026026681065559387, + 0.016838980838656425, + -0.045169416815042496, + -0.07925740629434586, + -0.03676336631178856, + 0.05374448746442795, + 0.07756702601909637, + -0.020268363878130913, + -0.09405344724655151, + 0.08799886703491211, + -0.005917038302868605, + 0.010821186006069183, + -0.13121400773525238, + -0.011048024520277977, + -0.02474701777100563, + -0.005832400172948837, + -0.08313136547803879, + -0.08891060948371887, + 0.006350802257657051, + 0.13975724577903748, + -0.08974143117666245, + 0.04904816299676895, + 0.03679058328270912, + -0.049646224826574326, + 0.09135832637548447, + -0.04069674387574196, + 0.06865857541561127, + -0.024154460057616234, + 0.025129927322268486, + 0.019067225977778435, + -0.053220171481370926, + -0.13436347246170044, + -0.022477680817246437, + -0.06896642595529556, + -0.0193145964294672, + 0.007458544801920652, + 0.006372231990098953, + 0.022270051762461662, + -0.03150954470038414, + 0.021155185997486115, + -0.030106499791145325, + 0.009661924093961716, + 0.018783271312713623, + -0.03258977457880974, + -0.07601018249988556, + 0.05360415577888489, + 0.02376618981361389, + 0.05062646418809891, + -0.039663512259721756, + 0.039728302508592606, + 0.0284048393368721, + -0.040837451815605164, + 0.056642550975084305, + -0.0782778337597847, + -0.018490944057703018, + -0.02492191083729267, + 0.04821423441171646, + 0.057052891701459885, + -0.027445677667856216, + 0.018433066084980965, + -0.056327469646930695, + -0.04508446529507637, + 0.07225054502487183, + 0.049627434462308884, + 0.05183698609471321, + 0.04392055422067642, + 0.03252716362476349, + -0.019660724326968193, + 0.03685278072953224, + 0.08217289298772812, + -0.02902740240097046, + 0.034070394933223724, + 0.06796354800462723, + 0.01716483011841774, + 0.03280084952712059, + -0.046382177621126175, + -0.03661181032657623, + 0.024398893117904663, + -0.08226899802684784, + 0.01916356012225151, + -0.012846152298152447, + -2.007188548702743e-08, + -0.0645681619644165, + 0.035966698080301285, + -0.05433165282011032, + -0.028472360223531723, + 0.03353728726506233, + -0.06773049384355545, + -0.014358007349073887, + -0.012266614474356174, + -0.04350684955716133, + -0.06907819211483002, + 0.05942203849554062, + -0.036607526242733, + -0.054087284952402115, + 0.06548973172903061, + -0.012995484285056591, + -0.009243997745215893, + -0.05242016538977623, + 0.01761472411453724, + -0.04289163649082184, + -0.12499146163463593, + 0.010563199408352375, + 0.061707135289907455, + 0.06710857897996902, + 0.011690152809023857, + -0.043467454612255096, + -0.00975825171917677, + -0.10216598957777023, + -0.09020362794399261, + 0.06913720816373825, + 0.10925288498401642, + 0.008444400504231453, + 0.05800911784172058, + -0.0025355173274874687, + -0.03775566816329956, + -0.05498569831252098, + -0.019432825967669487, + 0.012249537743628025, + -0.002352688694372773, + -0.033356212079524994, + 0.04778527095913887, + 0.0074721225537359715, + 0.0382443368434906, + -0.03505045920610428, + -0.02261846326291561, + 0.023202523589134216, + 0.05165325477719307, + 0.023397555574774742, + -0.04899882525205612, + -0.07156679779291153, + -0.0637095719575882, + 0.05058018118143082, + -0.010857775807380676, + 0.07396484166383743, + 0.09328100085258484, + -0.01945808157324791, + 0.022230209782719612, + -0.013977481052279472, + 0.04968005791306496, + -0.007376686669886112, + 0.0076484717428684235, + 0.05896846204996109, + -0.032188780605793, + 0.08748650550842285, + 0.06826931983232498 + ], + "crane-tower-bold||*new*,construction,industry": [ + -0.08144263178110123, + 0.011158052831888199, + -0.019814133644104004, + 0.01171144749969244, + 0.012777234427630901, + -0.014545104466378689, + -0.04378838464617729, + -0.05529387295246124, + -0.03928716480731964, + -0.020645249634981155, + 0.03301787003874779, + 0.023434042930603027, + 0.03456689417362213, + -0.06973962485790253, + -0.05414958298206329, + 0.10021935403347015, + 0.026448577642440796, + -0.001886403071694076, + 0.0023202821612358093, + 0.017662055790424347, + -0.010454939678311348, + -0.0167593602091074, + -0.012726937420666218, + 0.04299676790833473, + 0.04266462102532387, + 0.08057059347629547, + -0.0446951799094677, + 0.10519636422395706, + 0.06180845946073532, + -0.060345347970724106, + -0.040417879819869995, + 0.032462168484926224, + 0.09118208289146423, + 0.032083284109830856, + 0.05902475491166115, + 0.11505571007728577, + 0.03742826357483864, + -0.06193268671631813, + -0.003342310432344675, + 0.021539099514484406, + 0.018379397690296173, + -0.04642846807837486, + 0.005810935981571674, + 0.028971293941140175, + -0.04019555076956749, + 0.011759743094444275, + -0.013166450895369053, + -0.08232753723859787, + 0.039913397282361984, + 0.015567727386951447, + -0.043781835585832596, + -0.10342758148908615, + -0.02861151099205017, + -0.0471327118575573, + -0.00970711000263691, + 0.08512680977582932, + 0.006220524199306965, + -0.04929504916071892, + 0.03765126317739487, + -0.013989434577524662, + 0.08873080462217331, + 0.013213275000452995, + -0.03070146031677723, + 0.035258449614048004, + 0.045874204486608505, + 0.02654089964926243, + -0.053828246891498566, + 0.005281836725771427, + -0.05060446634888649, + -0.030213043093681335, + 0.08726298809051514, + -0.03096170537173748, + -0.02770315669476986, + -0.03827854245901108, + -0.053128037601709366, + -0.006119574885815382, + 0.02096709795296192, + -0.01180602703243494, + -0.02144966833293438, + -0.026432903483510017, + -0.014430844224989414, + -0.04199005290865898, + -0.06817088276147842, + -0.01602672040462494, + -0.03816023841500282, + 0.06929400563240051, + -0.057707879692316055, + 0.007223970722407103, + -0.02909810282289982, + -0.019004112109541893, + -0.0237890537828207, + -0.04880039393901825, + -0.12161722779273987, + 0.13620582222938538, + -0.029665369540452957, + 0.06682738661766052, + -0.024482300505042076, + 0.01214206125587225, + -0.0571109913289547, + 0.03514791652560234, + -0.006063008215278387, + 0.06307940930128098, + 0.012655165046453476, + -0.036509107798337936, + -0.054903242737054825, + -0.0401422344148159, + -0.08678068965673447, + 0.05404103547334671, + -0.0514335110783577, + -0.010521872900426388, + 0.016758976504206657, + -0.09229789674282074, + -0.03346376121044159, + -0.01379478070884943, + -0.02962266094982624, + -0.02557443454861641, + -0.05660552904009819, + -0.06116540729999542, + -0.051403820514678955, + 0.0873217061161995, + 0.1011708676815033, + -0.03200984001159668, + -0.031915485858917236, + -0.062469132244586945, + -0.061358492821455, + -0.09104707092046738, + -0.06728854030370712, + -4.916539652460773e-33, + 0.055466823279857635, + 0.04504208639264107, + 0.0022861959878355265, + 0.12348347157239914, + 0.06731946021318436, + 0.01881084218621254, + -0.04753595218062401, + 0.08081655204296112, + -0.024519648402929306, + 0.09600024670362473, + 0.020813286304473877, + 0.04072665050625801, + -0.03312911465764046, + -0.015284981578588486, + 0.059103261679410934, + -0.16322217881679535, + 0.03801218420267105, + -0.04686269536614418, + -0.03344909846782684, + -0.024947235360741615, + -0.05648978799581528, + 0.054884571582078934, + -0.05347391963005066, + -0.013236929662525654, + 0.04817020520567894, + -0.07223666459321976, + 0.05476587265729904, + 0.0016309440834447742, + -0.07880911231040955, + 0.04977075010538101, + 0.02806623838841915, + 0.04120199754834175, + 0.0238435510545969, + 0.017131129279732704, + -0.0267083328217268, + -0.028053533285856247, + -0.0194020327180624, + -0.059005849063396454, + -0.05031243711709976, + 0.007555416785180569, + -0.040959469974040985, + -0.027235347777605057, + -0.03814787417650223, + 0.0420035757124424, + 0.015333273448050022, + 0.05630587413907051, + -0.005577676463872194, + -0.06248374283313751, + 0.03395061567425728, + -0.025028686970472336, + 0.016355397179722786, + 0.04160165414214134, + -0.018869876861572266, + 0.034335777163505554, + 0.02252453938126564, + -0.04303431510925293, + -0.02478118985891342, + 0.03169643506407738, + 0.06308427453041077, + 0.001616199384443462, + -0.018248137086629868, + 0.026699623093008995, + 0.0005438305670395494, + 0.07136021554470062, + -0.0029699362348765135, + 0.009421027265489101, + -0.017376311123371124, + 0.02657860890030861, + 0.07111016660928726, + 0.04926418885588646, + 0.04303261637687683, + 0.029647188261151314, + 0.01828276365995407, + 0.07368203997612, + -0.06194816157221794, + 0.04820821434259415, + -0.09476269036531448, + 0.06045974791049957, + 0.040944550186395645, + -0.03974030166864395, + -0.04711629077792168, + 0.10602971166372299, + 0.0044283377937972546, + 0.08254388719797134, + 0.05260560289025307, + -0.004419869743287563, + 0.05431757867336273, + -0.040832068771123886, + 0.006456224247813225, + 0.07197994738817215, + -0.1485767513513565, + -0.02061866596341133, + -0.04826296493411064, + -0.061947014182806015, + -0.04587676003575325, + 1.1760350782236658e-33, + 0.03745440021157265, + 0.019455600529909134, + -0.06191073730587959, + -0.0994267538189888, + -0.026456039398908615, + 0.06812859326601028, + 0.008485661819577217, + -0.032454460859298706, + 0.004404427483677864, + 0.09131204336881638, + -0.01501911599189043, + 0.017391741275787354, + -0.003650094149634242, + 0.016064191237092018, + 0.016546806320548058, + 0.02724563516676426, + -0.019924409687519073, + -0.08438605815172195, + -0.04497392848134041, + 0.0740252435207367, + 0.061364009976387024, + -0.0152714429423213, + -0.10002894699573517, + 0.08251282572746277, + 0.0026673234533518553, + 0.02278827875852585, + -0.12094990164041519, + -0.03738567978143692, + 0.014158048667013645, + 0.007998320274055004, + -0.10644861310720444, + -0.08535072207450867, + 0.02595045603811741, + 0.14776434004306793, + -0.06989289820194244, + 0.05958369001746178, + 0.043666865676641464, + -0.0585465244948864, + 0.08769169449806213, + -0.045358847826719284, + 0.04966830089688301, + -0.01780751161277294, + 0.022025417536497116, + -0.013496109284460545, + -0.022854773327708244, + -0.13085633516311646, + -0.02371002547442913, + -0.07056679576635361, + -0.027540383860468864, + -0.010708008892834187, + 0.0032028236892074347, + 0.02073977142572403, + -0.031687233597040176, + 0.007990832440555096, + -0.004347350914031267, + 0.007705290336161852, + 0.00046707692672498524, + -0.04196415841579437, + -0.043592669069767, + 0.03459825739264488, + 0.027877068147063255, + 0.022955553606152534, + -0.03877611085772514, + 0.03142860159277916, + -9.577974560670555e-05, + -0.011576351709663868, + 0.07506082206964493, + -0.048105888068675995, + -0.0036433644127100706, + -0.0016034881118685007, + 0.006675670389086008, + 0.08360259979963303, + -0.03309525176882744, + 0.01426768396049738, + -0.07996593415737152, + -0.057181037962436676, + 0.059861086308956146, + 0.057443734258413315, + 0.02909182570874691, + 0.0344039648771286, + 0.03481088951230049, + -0.01571127027273178, + 0.007971084676682949, + 0.03798435255885124, + -0.011342237703502178, + 0.009445847943425179, + 0.0957721546292305, + 0.040984347462654114, + 0.02006116323173046, + -0.06716873496770859, + -0.01951681263744831, + -0.005138149484992027, + -0.07214876264333725, + 0.001905939425341785, + -0.013033203780651093, + -2.016766664780789e-08, + -0.05441311001777649, + 0.02709176577627659, + -0.07013373076915741, + -0.048736486583948135, + 0.049674149602651596, + -0.10166731476783752, + -0.005105135031044483, + -0.011374426074326038, + -0.033188674598932266, + -0.06511253863573074, + 0.054523929953575134, + -0.038637757301330566, + -0.04991612583398819, + 0.05672702193260193, + 0.001035049557685852, + -0.001942649483680725, + -0.07082094997167587, + -0.0021279272623360157, + -0.01972292922437191, + -0.08681327104568481, + 0.013244719244539738, + 0.0617632195353508, + 0.062053579837083817, + 0.01321237999945879, + -0.05309801921248436, + 0.027559813112020493, + -0.09195897728204727, + -0.10269396007061005, + 0.07501142472028732, + 0.11523818969726562, + 0.023358546197414398, + 0.05474641174077988, + -0.01216377504169941, + -0.040776580572128296, + -0.0379791222512722, + -0.01739705726504326, + 0.04352294281125069, + -0.00390987191349268, + -0.024170411750674248, + 0.021787172183394432, + 0.030379340052604675, + -0.009689963422715664, + -0.04286559671163559, + 0.014666423201560974, + 0.03246361017227173, + 0.04309318959712982, + 0.028987431898713112, + -0.05430970713496208, + -0.054375097155570984, + -0.08116283267736435, + 0.059315282851457596, + -0.0009744924027472734, + 0.06869012862443924, + 0.07137534767389297, + -0.017940063029527664, + 0.02323830872774124, + 0.004990157205611467, + 0.03795255348086357, + -0.01174907572567463, + -1.8897939298767596e-05, + 0.09484019875526428, + -0.027139974758028984, + 0.08517652004957199, + 0.06179526820778847 + ], + "credit-card-bold||debit,visa,mastercard,money,payment,paying,purchase,swipe": [ + 0.01973370462656021, + -0.004557574167847633, + -0.026864102110266685, + 0.021336393430829048, + 0.019173182547092438, + -0.029710950329899788, + 0.08254508674144745, + -0.01872025616466999, + 0.033678993582725525, + -0.09764967858791351, + 0.022471636533737183, + -0.03825579956173897, + 0.002968014217913151, + -0.05941732972860336, + -0.017063278704881668, + -0.02347487024962902, + 0.019556434825062752, + -0.008125821128487587, + 0.08821054548025131, + 0.07159333676099777, + 0.01788623444736004, + 0.03576013073325157, + -0.03877263516187668, + 0.039658863097429276, + 0.044714540243148804, + 0.041575655341148376, + 0.01674964651465416, + 0.008264943026006222, + -0.0015800994588062167, + -0.07204725593328476, + 0.030755693092942238, + 0.10546121746301651, + 0.19056330621242523, + 0.020476803183555603, + 0.041762057691812515, + -0.05946685001254082, + -0.015480898320674896, + 0.0075012268498539925, + -0.00404987670481205, + 0.0246188435703516, + 0.015189428813755512, + -0.06213262677192688, + 0.02866375632584095, + -0.013092057779431343, + 0.022910062223672867, + -0.023788772523403168, + -0.03438897058367729, + 0.067458875477314, + -0.023863019421696663, + 0.0502215251326561, + 0.025100143626332283, + -0.048223938792943954, + -0.10716221481561661, + 0.01959478110074997, + -0.035545773804187775, + 0.019557075574994087, + 0.0012589069083333015, + -0.023350760340690613, + 0.02316509559750557, + -0.026638541370630264, + 0.039283428341150284, + -0.01137225329875946, + 0.038743019104003906, + 0.08750035613775253, + 0.03188132494688034, + 0.03680741786956787, + -0.02131096087396145, + 0.00456129340454936, + -0.05933987349271774, + 0.01734982803463936, + 0.02707579731941223, + -0.02907339297235012, + -0.06870054453611374, + -0.05490676686167717, + -0.03885790333151817, + 0.013719993643462658, + 0.06738884747028351, + -0.004153784364461899, + -0.06584352999925613, + -0.026002515107393265, + -0.09299496561288834, + -0.06410292536020279, + -0.021192938089370728, + -0.041094932705163956, + 0.07848041504621506, + 0.018964523449540138, + -0.08876799792051315, + -0.0485173724591732, + -0.01216891873627901, + -0.11045270413160324, + -0.042585842311382294, + -0.009294086135923862, + 0.04786437749862671, + -0.02236456423997879, + -0.0748865157365799, + 0.009029045701026917, + 0.03092370554804802, + -0.06763085722923279, + -0.03257730230689049, + 0.025447407737374306, + 0.06223154813051224, + 0.10265298187732697, + 0.02271214686334133, + 0.04154430329799652, + 0.016265442594885826, + 0.015345759689807892, + 0.06124717369675636, + 0.03608578443527222, + 0.04982379451394081, + 0.004927781876176596, + -0.040245942771434784, + -0.050450727343559265, + 0.012311099097132683, + -0.0870809257030487, + -0.0667162761092186, + 0.05932509899139404, + -0.07990507781505585, + 0.00764975231140852, + 0.14991843700408936, + 0.11468327790498734, + -0.006694595329463482, + 0.004663490224629641, + -0.1041116863489151, + -0.09652615338563919, + -0.07771268486976624, + -0.029081042855978012, + 0.04956267401576042, + -1.873648914779453e-33, + 0.03959496319293976, + -0.0057129571214318275, + -0.02281072549521923, + 0.01915905810892582, + 0.004810740239918232, + -0.01255173608660698, + -0.012501035816967487, + -0.05090143904089928, + -0.09669136255979538, + 0.07222510129213333, + 0.07584153860807419, + 0.033442363142967224, + 0.02633078023791313, + 0.12455933541059494, + -0.0007617275114171207, + -0.0020068089943379164, + -0.05669569969177246, + -0.0008552533690817654, + 0.029769424349069595, + 0.0972469300031662, + -0.04323552921414375, + 0.02506927028298378, + 0.03556578606367111, + -0.02050335891544819, + 0.028269201517105103, + -0.014248181134462357, + 0.0037222872488200665, + -0.01845753937959671, + 0.0754915177822113, + 0.021822413429617882, + 0.01576150208711624, + 0.0024631686974316835, + 0.05455858260393143, + 0.020207202062010765, + -0.0413481630384922, + 0.059512004256248474, + -0.017853809520602226, + -0.0255969800055027, + 0.010189436376094818, + -0.032780468463897705, + -0.09081894159317017, + -0.020925650373101234, + -0.0594332218170166, + -0.10198627412319183, + 0.020623132586479187, + 0.09557973593473434, + 0.023122932761907578, + -0.042416591197252274, + 0.002575240097939968, + 0.12471523880958557, + -0.060143910348415375, + -0.014283561147749424, + -0.04024714604020119, + -0.08112979680299759, + -0.04039192572236061, + -0.06421495974063873, + -0.022272270172834396, + 0.09740831702947617, + -0.030629456043243408, + -0.06334041059017181, + -0.0592542327940464, + -0.08473619073629379, + -0.012636939994990826, + -0.07041141390800476, + -0.039597559720277786, + 0.06582693010568619, + -0.03946453332901001, + -0.013208376243710518, + 0.0036944218445569277, + 0.05321608483791351, + -0.09266183525323868, + 0.07692515105009079, + 0.04715543985366821, + 0.0842665359377861, + 0.008713437244296074, + 0.03822295367717743, + -0.011187716387212276, + 0.018081551417708397, + -0.019573193043470383, + 0.03369443118572235, + -0.13524951040744781, + 0.009522764943540096, + -0.025081535801291466, + 0.09238635748624802, + -0.011177475564181805, + 0.11431246250867844, + 0.03217071294784546, + -0.1026155948638916, + 0.01345198042690754, + 0.02996179834008217, + -0.056467313319444656, + 0.0627230703830719, + 0.044553447514772415, + -0.04126369208097458, + 0.017048927024006844, + -9.10458945620248e-34, + -0.03538711741566658, + 0.010582289658486843, + -0.04876761883497238, + 0.00022138026542961597, + -0.09638085961341858, + 0.020670786499977112, + -0.0014897279907017946, + 0.06494973599910736, + 0.03013826347887516, + -0.020932571962475777, + 0.014658039435744286, + 0.028144264593720436, + -0.0813877210021019, + -0.028594421222805977, + 0.003731738543137908, + 0.00978649128228426, + 0.053507380187511444, + 0.04150686040520668, + 0.014916724525392056, + 0.010208453051745892, + -0.01784922368824482, + 0.02988123707473278, + 0.009874798357486725, + 0.02406955137848854, + -0.015615702606737614, + 0.04892223700881004, + 0.021904252469539642, + -0.067432701587677, + -0.015191284939646721, + -0.016743633896112442, + -0.017211509868502617, + -0.0027199513278901577, + 0.023162145167589188, + 0.11368928104639053, + -0.0768883153796196, + 0.042316537350416183, + -0.033944305032491684, + 0.07805471122264862, + 0.06715165078639984, + -0.0032818939071148634, + -0.011997656896710396, + -0.02607717365026474, + 0.050177328288555145, + 0.038448382169008255, + -0.008319813758134842, + -0.08269579708576202, + -0.04488034173846245, + -0.06947127729654312, + -0.035253722220659256, + 0.046174343675374985, + -0.04359661042690277, + -0.05044776201248169, + -0.05625314265489578, + 0.011969093233346939, + -0.1053585633635521, + 0.024983614683151245, + 0.07764151692390442, + -0.0022968603298068047, + 0.00033408074523322284, + -0.020715638995170593, + -0.0015205556992441416, + 0.08044148236513138, + -0.008122336119413376, + 0.018644507974386215, + -0.012305880896747112, + -0.029252229258418083, + 0.028728846460580826, + -0.01633942313492298, + 0.013445893302559853, + -0.020603995770215988, + -0.020217258483171463, + 0.023495687171816826, + -0.0023047388531267643, + 0.035609181970357895, + -0.01603071391582489, + -0.029732976108789444, + 0.029169367626309395, + -0.03372034430503845, + -0.051545191556215286, + -0.01639646664261818, + -0.003409181023016572, + 0.009098914451897144, + -0.004636299330741167, + 0.09412045031785965, + -0.028386708348989487, + -0.03815485164523125, + -0.0771397203207016, + -0.04390827566385269, + -0.0006577543681487441, + -0.023637445643544197, + -0.08420565724372864, + 0.06175490841269493, + -0.011485028080642223, + -0.008100463077425957, + -0.083295539021492, + -2.4448475244298606e-08, + -0.04925871267914772, + -0.03060668148100376, + -0.03918693959712982, + 0.014926004223525524, + 0.045785143971443176, + -0.009986752644181252, + -0.04080456867814064, + -0.042450983077287674, + -0.04988577961921692, + -0.03690506890416145, + 0.035468343645334244, + 0.015933675691485405, + -0.1189611628651619, + -0.0951690524816513, + 0.03297364339232445, + 0.030041102319955826, + -0.006869614124298096, + -0.04648418352007866, + -0.029073089361190796, + -0.008866535499691963, + -0.011681917123496532, + 0.024513881653547287, + 0.05604498088359833, + 0.05367929860949516, + -0.015611641108989716, + 0.03129429370164871, + 0.05967072769999504, + 0.07348768413066864, + 0.09964984655380249, + 0.012045030482113361, + 0.046356089413166046, + 0.09066899120807648, + 0.05126745253801346, + -0.04806074500083923, + -0.0024702493101358414, + -0.06410190463066101, + -0.0017768937395885587, + -0.00832871813327074, + 0.0067210146225988865, + 0.13835769891738892, + -0.019535165280103683, + -0.0646103248000145, + -0.0823526456952095, + -0.07353371381759644, + -0.0002699409960769117, + -0.02945777028799057, + -0.030696088448166847, + -0.026173368096351624, + 0.033452317118644714, + -0.06498231738805771, + -0.026011357083916664, + -0.03110874816775322, + 0.059581346809864044, + 0.09379613399505615, + -0.04028352349996567, + -0.04217473044991493, + 0.05802251026034355, + -0.011796264909207821, + 0.0447988398373127, + -0.03016643226146698, + 0.1424325406551361, + 0.007837212644517422, + 0.04520518332719803, + -0.03138303756713867 + ], + "cricket-bold||*new*,sports,ball,bat": [ + 0.02474139630794525, + 0.042844247072935104, + -0.04781947657465935, + -0.02654312178492546, + 0.034915171563625336, + 0.03422702103853226, + 0.05316105857491493, + -0.030628561973571777, + 0.005348034203052521, + 0.12051796168088913, + 0.01808829791843891, + -0.07243462651968002, + 0.016652526333928108, + 0.01615358144044876, + 0.08172870427370071, + 0.027857890352606773, + 0.05320131778717041, + -0.02397138811647892, + 0.009930106811225414, + -0.03501402586698532, + 0.04212883114814758, + 0.09822245687246323, + 0.010545802302658558, + 0.005126480013132095, + 0.0387708954513073, + 0.036972757428884506, + 0.014191367663443089, + 0.027699925005435944, + -0.02288900688290596, + -0.07883445173501968, + -0.038394901901483536, + 0.03634621948003769, + 0.12542438507080078, + 0.060885366052389145, + 0.026667525991797447, + -0.05025327205657959, + -0.02888246811926365, + 0.05920177325606346, + 0.09082172065973282, + 0.017758848145604134, + 0.054411254823207855, + -0.07330705970525742, + -0.021608127281069756, + 0.06051658093929291, + -0.05174938216805458, + 0.06992793083190918, + -0.02718871645629406, + 0.02045532874763012, + 0.03609480336308479, + 0.016281867399811745, + 0.012156286276876926, + -0.07172149419784546, + -0.07654765993356705, + 0.009700066410005093, + 0.12276344001293182, + -0.01217680610716343, + -0.04401534050703049, + 0.009434185922145844, + 0.028268279507756233, + -0.008286535739898682, + 0.06488962471485138, + -0.011829345487058163, + 0.0035814037546515465, + 0.06218170002102852, + -0.0059229591861367226, + -0.1232403889298439, + -0.05353198200464249, + 0.026952121406793594, + -0.0002647751534823328, + 0.07539553195238113, + 0.02673419378697872, + 0.021439485251903534, + 0.002536088926717639, + 0.0072893728502094746, + -0.0876462459564209, + 0.03988148644566536, + 0.03999793156981468, + 0.017914773896336555, + -0.032157208770513535, + -0.043275367468595505, + -0.09822370111942291, + -0.11358929425477982, + -0.051376547664403915, + 0.009040716104209423, + 0.02207360230386257, + -0.00980799924582243, + -0.03289441019296646, + -0.05825839564204216, + -0.06330494582653046, + -0.044129613786935806, + -0.09045741707086563, + 0.011542226187884808, + 0.03195543959736824, + 0.06208240985870361, + -0.10664492100477219, + 0.053417641669511795, + 0.013703969307243824, + -0.02488025650382042, + -0.019314052537083626, + 0.10833385586738586, + 0.013687624596059322, + 0.0050459313206374645, + 0.05871795862913132, + 0.04045097529888153, + -0.06966397911310196, + -0.04306844621896744, + -0.04714339226484299, + 0.0010017520980909467, + 0.032167140394449234, + 0.01708802580833435, + -0.019738715142011642, + -0.028263423591852188, + -0.05136039853096008, + -0.004999243188649416, + -0.08732887357473373, + -0.004991104826331139, + -0.08645732700824738, + -0.010981644503772259, + 0.03542131930589676, + 0.09579011052846909, + 0.02020646259188652, + -0.04347268491983414, + -0.03494594246149063, + -0.05515141785144806, + -0.023371217772364616, + 0.011367651633918285, + 0.04731859266757965, + -3.851265896785322e-33, + 0.012537425383925438, + 0.01844640262424946, + -0.04335077852010727, + 0.07039477676153183, + -0.056133098900318146, + -0.011968133971095085, + -0.03781208023428917, + -0.048974815756082535, + -0.012234581634402275, + -0.00860643107444048, + 0.06698912382125854, + 0.05255897343158722, + 0.021266335621476173, + 0.02207675576210022, + 0.059445492923259735, + -0.028099920600652695, + -0.028718164190649986, + -0.04687989875674248, + -0.011690815910696983, + 0.030897481366991997, + -0.1065237894654274, + 0.07982712239027023, + 0.03174726665019989, + -0.05289462208747864, + -0.05913601443171501, + -0.003314936300739646, + 0.09780924022197723, + -0.17148208618164062, + -0.03480245918035507, + 0.05185358598828316, + 0.08682835102081299, + -0.008222278207540512, + 0.027283284813165665, + 0.053823359310626984, + -0.03952297195792198, + 0.027344750240445137, + -0.0053489296697080135, + -0.07200944423675537, + -0.025011172518134117, + -0.05434088781476021, + -0.06505534052848816, + -0.045142944902181625, + -0.0717579573392868, + 0.005221053026616573, + -0.015737006440758705, + 0.06640798598527908, + -0.0931159108877182, + -0.04528868943452835, + -0.03839999437332153, + 0.057906728237867355, + 0.05210178717970848, + -0.0561770536005497, + 0.05749356001615524, + -0.014187954366207123, + 0.010525083169341087, + -0.021322952583432198, + -0.010975422337651253, + 0.026808274909853935, + 0.010097567923367023, + -0.0765153169631958, + 0.034417033195495605, + -0.010928032919764519, + 0.024908896535634995, + 0.033674176782369614, + 0.0032040837686508894, + 0.05224571377038956, + -0.003775928867980838, + -0.05994713306427002, + 0.047448016703128815, + -0.047970276325941086, + 0.01838417537510395, + 0.03938824310898781, + -0.033556558191776276, + 0.06232644245028496, + -0.04954519122838974, + 0.06305224448442459, + 0.06386447697877884, + 0.02890382520854473, + 0.0017181970179080963, + -0.05605373904109001, + -0.09086822718381882, + 0.06213263422250748, + -0.0876590833067894, + -0.003892177017405629, + -0.014818435534834862, + 0.007987463846802711, + -0.030688486993312836, + -0.09853274375200272, + 0.030545596033334732, + 0.02893403358757496, + -0.08066905289888382, + -0.04516145959496498, + -0.05730833858251572, + -0.011034323833882809, + -0.045441869646310806, + 5.155637407469934e-34, + 0.02027570828795433, + 0.03212122991681099, + -0.06620633602142334, + -0.013937198556959629, + 0.025875858962535858, + 0.0428667888045311, + 0.016947029158473015, + 0.055043406784534454, + -0.01100962981581688, + 0.009682969190180302, + 0.011101311072707176, + -0.03667238727211952, + -0.09838209301233292, + -0.01534975878894329, + 0.02343595214188099, + -0.002328642876818776, + -0.0011490358738228679, + 0.05221575126051903, + -0.016155973076820374, + 0.053831007331609726, + 0.002956023905426264, + -0.01823112554848194, + -0.060542311519384384, + 0.04354419186711311, + -0.015437492169439793, + 0.03764067962765694, + -0.017181016504764557, + -0.0014255339046940207, + -0.07147781550884247, + -0.03545280918478966, + -0.02240733988583088, + 0.008993284776806831, + 0.04122735559940338, + 0.10860711336135864, + -0.09392919391393661, + 0.05727885663509369, + 0.049232203513383865, + -0.06098772585391998, + 0.019459137693047523, + 0.04162420332431793, + 0.009770435281097889, + 0.04038706794381142, + 0.011532016098499298, + 0.024041514843702316, + -0.021256959065794945, + -0.06398525089025497, + -0.022087877616286278, + 0.009880940429866314, + -0.04143271967768669, + 0.07857109606266022, + 0.03601580485701561, + -0.01277407631278038, + -0.03842693194746971, + -0.04355691373348236, + -0.0043892511166632175, + 0.005617697257548571, + -0.04302363097667694, + -0.055909764021635056, + -0.03840089216828346, + -0.04428558051586151, + -0.04956132546067238, + 0.043628398329019547, + -0.08753988146781921, + 0.04827197641134262, + -0.0345328263938427, + 0.03774547576904297, + -0.011556211858987808, + -0.04283648356795311, + 0.0039039768744260073, + -0.0747784897685051, + -0.06650011241436005, + -0.009183743968605995, + -0.06836392730474472, + 0.001278036623261869, + -0.013193665072321892, + -0.0027583104092627764, + 0.02056853659451008, + 0.04107305034995079, + -0.020387081429362297, + 0.061925582587718964, + -0.054728999733924866, + 0.058785852044820786, + -0.05428710952401161, + 0.04964973405003548, + 0.05831766128540039, + 0.06288469582796097, + -0.04146219417452812, + -0.004808980971574783, + -0.0012276067864149809, + 0.010872608050704002, + 0.013829096220433712, + 0.07028690725564957, + 0.005845865700393915, + 0.01982584223151207, + -0.01585320755839348, + -2.0298710268207287e-08, + -0.02691223844885826, + 0.009753900580108166, + -0.027296211570501328, + 0.04032784327864647, + 0.06909015774726868, + -0.010608511976897717, + -0.08765556663274765, + -0.0987611934542656, + 0.06871030479669571, + -0.04510972648859024, + 0.04132668673992157, + -0.0258665569126606, + -0.002261869376525283, + -0.01457138266414404, + 0.044147755950689316, + 0.051148634403944016, + -0.05041658133268356, + 0.0365319587290287, + -0.06135663762688637, + 0.004474381450563669, + -0.037016987800598145, + 0.039221614599227905, + 0.048858851194381714, + 0.03474653884768486, + 0.02321133203804493, + 0.02807394042611122, + -0.12056566774845123, + -0.1200244352221489, + 0.0051132068037986755, + 0.051130522042512894, + 0.08714301884174347, + 0.1463421881198883, + 0.02084605023264885, + -0.023720577359199524, + -0.0938807800412178, + -0.005163807421922684, + 0.08867478370666504, + -0.04615265503525734, + 0.017962293699383736, + 0.10095898061990738, + -0.032807670533657074, + 0.05297669768333435, + -0.06434328109025955, + -0.004135054536163807, + -0.016077877953648567, + -0.05957921966910362, + 0.025356171652674675, + -0.0688408613204956, + -0.12725812196731567, + -0.11940892785787582, + -0.042250651866197586, + 0.027024757117033005, + 0.025938093662261963, + 0.025553425773978233, + -0.031954772770404816, + 0.028071550652384758, + -0.05288568139076233, + 0.04995852708816528, + -0.027194280177354813, + 0.030269432812929153, + 0.15813666582107544, + -0.04121731221675873, + 0.060885243117809296, + 0.02885652892291546 + ], + "crop-bold||photography,clip,screenshots": [ + 0.00653841020539403, + 0.04121599718928337, + -0.03673679381608963, + 0.0076665799133479595, + 0.13756732642650604, + -0.07262438535690308, + 0.05450642853975296, + -0.007174559403210878, + 0.02121424674987793, + -0.02661917917430401, + 0.04526693373918533, + 0.0024821830447763205, + 0.04429575055837631, + 0.03862617909908295, + 0.008739141747355461, + -0.03921910747885704, + -0.02628450281918049, + 0.05542205274105072, + -0.0753670185804367, + -0.00509650819003582, + -0.05589191988110542, + -0.012719191610813141, + 0.08747938275337219, + -0.012972412630915642, + 0.0857531800866127, + 0.015104785561561584, + 0.02600068598985672, + -0.006157721858471632, + -0.00046972185373306274, + -0.04954022914171219, + 0.03600148484110832, + 0.027345487847924232, + 0.19416040182113647, + 0.04445723444223404, + 0.019235914573073387, + 0.0066926549188792706, + -0.009567629545927048, + -0.02623089589178562, + 0.0005242509650997818, + 0.022236770018935204, + -0.015922890976071358, + -0.056912850588560104, + 0.027084708213806152, + 0.017724987119436264, + -0.041599567979574203, + -0.08247911930084229, + -0.04882189258933067, + 0.013473075814545155, + 0.05698661506175995, + 0.009694541804492474, + -0.06623964011669159, + -0.08494237810373306, + -0.12789340317249298, + 0.03437761217355728, + 0.03130677714943886, + -0.034980274736881256, + -0.026187283918261528, + -0.02203112281858921, + 0.07143685221672058, + -0.027350440621376038, + -0.014287999831140041, + 0.031064707785844803, + -0.0049341050907969475, + 0.05162853002548218, + 0.07418666034936905, + 0.0663444921374321, + 0.029632974416017532, + -0.04200300946831703, + -0.025879956781864166, + -0.051892735064029694, + -0.010749525390565395, + 0.026167746633291245, + 0.0022349427454173565, + -0.04537571594119072, + -0.07630358636379242, + -0.0137222521007061, + 0.02403980866074562, + 0.022391723468899727, + -0.05918079987168312, + -0.051644280552864075, + 0.020369943231344223, + -0.06502172350883484, + -0.002134553622454405, + 0.061593201011419296, + 0.041962310671806335, + 0.008182987570762634, + -0.07519068568944931, + -0.03736026957631111, + 0.0021149110980331898, + -0.011116998270154, + -0.09831830114126205, + 0.0009487361530773342, + -0.042479418218135834, + 0.02359079197049141, + -0.079753577709198, + -0.04532318934798241, + -0.004932456649839878, + -0.09429425001144409, + -0.04372082278132439, + 0.07120347023010254, + 0.008004480972886086, + 0.003850766224786639, + 0.04380625858902931, + 0.0037490904796868563, + -0.0077218241058290005, + 0.0662134662270546, + -0.012862232513725758, + -0.08105883002281189, + 0.04090907424688339, + 0.055784955620765686, + 0.019929440692067146, + -0.016055990010499954, + -0.06133260577917099, + -0.08852793276309967, + 0.03877849131822586, + -0.06494276225566864, + -0.017713896930217743, + -0.06641992181539536, + 0.057892248034477234, + -0.061880044639110565, + -0.004038703162223101, + 0.05941891297698021, + -0.15872931480407715, + -0.0048597450368106365, + 0.08974264562129974, + 0.01529011595994234, + 0.05990597978234291, + -1.4271468446757114e-33, + 0.06352595239877701, + 0.00795553345233202, + 0.042805466800928116, + 0.11550921201705933, + 0.09207259118556976, + 0.018568428233265877, + -0.04314330592751503, + -0.0522230789065361, + -0.08024737983942032, + -0.09144151955842972, + 0.06981495767831802, + 0.009148661978542805, + -0.013220518827438354, + 0.023509807884693146, + 0.07842327654361725, + -0.017408590763807297, + -0.033620353788137436, + 0.01279190182685852, + -0.038154445588588715, + 0.14415408670902252, + -0.10405565053224564, + -0.025387199595570564, + -0.07025989890098572, + 0.05618063732981682, + -0.019866768270730972, + -0.07824470102787018, + 0.03601837530732155, + 0.015503926202654839, + -0.03130064532160759, + 0.05048908293247223, + -0.037359729409217834, + -0.0027852668426930904, + 0.05676080659031868, + 0.006542591843754053, + -0.03387044370174408, + 0.008960571140050888, + -0.04449465125799179, + -0.0001294493122259155, + 0.07724370062351227, + 0.034225303679704666, + -0.0777183398604393, + 0.0607919879257679, + 0.02836117520928383, + -0.00789461750537157, + 0.0007689094636589289, + 0.04314511641860008, + -0.061596084386110306, + 0.017915066331624985, + -0.026125947013497353, + 0.04710427671670914, + 0.050571829080581665, + -0.05428178235888481, + 0.040698111057281494, + -0.08372892439365387, + -0.06762068718671799, + -0.04221585765480995, + 0.0001961619418580085, + 0.014088228344917297, + -0.010877774097025394, + -0.002033729339018464, + 0.03383684158325195, + 0.026769272983074188, + -0.08960659801959991, + -0.0018036856781691313, + -0.01334951352328062, + 0.05728738009929657, + -0.036433491855859756, + 0.08593793958425522, + -0.024739040061831474, + 0.024662135168910027, + -0.04257126525044441, + 0.0732448399066925, + 0.026358533650636673, + 0.037997953593730927, + 0.04491797462105751, + 0.03197852149605751, + 0.06503526121377945, + 0.01771715097129345, + 0.018574288114905357, + 0.0007764925830997527, + -0.09202447533607483, + 0.009203711524605751, + 0.003873039036989212, + -0.02266670949757099, + -0.05333961918950081, + 0.006891665514558554, + -0.014670897275209427, + -0.028098804876208305, + -0.010925522074103355, + 0.01747232861816883, + -0.1026887595653534, + -0.003416260704398155, + 0.007818451151251793, + -0.012462974525988102, + -0.0430048331618309, + 2.202575422602309e-34, + 0.070667564868927, + 0.0935332179069519, + -0.06881524622440338, + 0.03627924621105194, + -0.04589002579450607, + 0.058629631996154785, + 0.013029804453253746, + 0.03571278974413872, + -0.019695010036230087, + -0.019672095775604248, + -0.0018681514775380492, + 0.021643245592713356, + -0.10156895965337753, + -0.08768167346715927, + -0.08907101303339005, + -0.005184078123420477, + 0.03403349220752716, + 0.021646620705723763, + -0.10750076174736023, + -0.020556747913360596, + -0.016319332644343376, + -0.014437688514590263, + 0.04494960978627205, + 0.07935553044080734, + -0.014271164312958717, + 0.049008965492248535, + -0.017695805057883263, + 0.025035236030817032, + -0.013786843977868557, + -0.021078426390886307, + 0.012042942456901073, + -0.02316036820411682, + 0.059452179819345474, + 0.02413034997880459, + 0.00427319435402751, + 0.03982853889465332, + 0.013666232116520405, + -0.03946191444993019, + 0.08469872921705246, + 0.0562792532145977, + -0.036800406873226166, + -0.03886668011546135, + -0.017817895859479904, + -0.0030048335902392864, + -0.0683620497584343, + 0.0058081140741705894, + 0.10229577869176865, + 0.03834003210067749, + 0.008175677619874477, + 0.09582220762968063, + -0.027937080711126328, + 0.015730006620287895, + -0.033659107983112335, + 0.04086964949965477, + -0.031599607318639755, + -0.04719949886202812, + 0.0075174495577812195, + -0.008945325389504433, + -0.0033335709013044834, + 0.017305370420217514, + -0.018414899706840515, + 0.08160381019115448, + -0.0798998475074768, + -0.06271830201148987, + 0.03859040141105652, + -0.039222341030836105, + -0.00865540187805891, + 0.03979097679257393, + -0.005524984560906887, + 0.02506284974515438, + 0.052444711327552795, + -0.036169782280921936, + 0.1061171367764473, + 0.022968266159296036, + 0.02258443459868431, + -0.0017982381395995617, + 0.011302346363663673, + 0.053615618497133255, + 0.024507952854037285, + 0.02171979658305645, + 0.00457344762980938, + -0.020685547962784767, + 0.018170807510614395, + 0.07855992019176483, + 0.019867362454533577, + 0.10080147534608841, + -0.024794727563858032, + -0.032035164535045624, + 0.012453769333660603, + -0.0840752050280571, + -0.10242349654436111, + 0.0612727552652359, + 0.07508016377687454, + 0.037338655441999435, + 0.019863111898303032, + -1.6402461611164654e-08, + 0.022027282044291496, + -0.012726076878607273, + -0.05813517048954964, + -0.014568992890417576, + 0.01035549957305193, + -0.04554608464241028, + -0.0268559530377388, + -0.055422741919755936, + 0.05397063493728638, + -0.05444018170237541, + 0.012947321869432926, + 0.0065740249119699, + -0.0785384252667427, + -0.09381229430437088, + -0.012324679642915726, + -0.006472119130194187, + 0.018119333311915398, + 0.0583876334130764, + -0.03276873379945755, + -0.04119783267378807, + -0.01062329113483429, + -0.019994160160422325, + 0.03700132295489311, + -0.011644769459962845, + -0.02647448517382145, + -0.04448198899626732, + -0.0951675996184349, + 0.0011122357100248337, + 0.12690387666225433, + 0.033350441604852676, + 0.03115585632622242, + 0.03383871167898178, + -0.019184201955795288, + 0.015396516770124435, + -0.06075576692819595, + -0.06226656585931778, + -0.04626339673995972, + -0.04965585842728615, + 0.01475766021758318, + 0.0541011244058609, + -0.032217785716056824, + -0.026345454156398773, + 0.03381690755486488, + -0.03130980208516121, + -0.03882429376244545, + 0.06877845525741577, + 0.16163168847560883, + -0.010703647509217262, + -0.0662805512547493, + -0.02486586570739746, + -0.038402944803237915, + -0.04716876149177551, + 0.02572733908891678, + 0.1502804011106491, + -0.038195736706256866, + -0.12505558133125305, + 0.045566532760858536, + -0.01370956189930439, + 0.07347992807626724, + 0.014723382890224457, + 0.04100458696484566, + -0.021029407158493996, + -0.061235442757606506, + 0.044417768716812134 + ], + "cross-bold||dagger,crucifix,christ,christianity,religion,worship,symbol": [ + 0.005009413231164217, + 0.009321811608970165, + -0.030326232314109802, + 0.019081711769104004, + -0.051045600324869156, + -0.011921828612685204, + 0.016196712851524353, + -0.05289098992943764, + 0.06289137899875641, + -0.02187180332839489, + 0.021159108728170395, + -0.05406811088323593, + 0.023760564625263214, + -0.04908754676580429, + -0.003021128475666046, + -0.0028161611407995224, + -0.04127930849790573, + 0.08381111174821854, + -0.011662640608847141, + 0.03172772005200386, + -0.01995926909148693, + -0.036532673984766006, + 0.03116920404136181, + 0.11039841920137405, + 0.039408303797245026, + 0.053691696375608444, + 0.054847121238708496, + -0.02321568690240383, + 0.02749066799879074, + -0.044730640947818756, + -0.03047458454966545, + -0.09908604621887207, + -0.05638575181365013, + 0.01146859209984541, + -0.04058080166578293, + 0.04522627592086792, + 0.0040753064677119255, + 0.06573115289211273, + 0.05171390622854233, + 0.012886849232017994, + 0.006435922812670469, + 0.003994022961705923, + -0.010181529447436333, + 0.029734788462519646, + -0.007693910039961338, + 0.026511535048484802, + -0.07808978855609894, + 0.017828434705734253, + -0.021178416907787323, + 0.02213522046804428, + -0.014456434175372124, + -0.04693296551704407, + -0.09599103033542633, + 0.09888699650764465, + 0.03228938952088356, + 0.015741070732474327, + -0.08067944645881653, + -0.05008953437209129, + 0.08065152168273926, + -0.013822722248733044, + -0.014202986843883991, + 0.028846273198723793, + 0.10462721437215805, + 0.0663352981209755, + -0.03430714085698128, + -0.04748000204563141, + 0.011639093048870564, + 0.03291630372405052, + -0.11882001161575317, + 0.03591035306453705, + 0.01783517561852932, + -0.04160919040441513, + 0.010228862054646015, + -0.07396343350410461, + -0.06724385917186737, + -0.045017044991254807, + 0.013799061067402363, + -0.06049251928925514, + -0.06830690801143646, + -0.012116746045649052, + -0.055744580924510956, + 0.032427605241537094, + -0.04699301719665527, + 0.06310368329286575, + 0.050286371260881424, + 0.06234423816204071, + -0.04392285645008087, + -0.06817460805177689, + -0.030808566138148308, + -0.023424986749887466, + 0.02002834901213646, + -0.05125980079174042, + 0.026391688734292984, + 0.0302243884652853, + -0.022192146629095078, + 0.05022486299276352, + 0.03915662318468094, + 0.04355117678642273, + -0.045364782214164734, + 0.06145615130662918, + 0.03215252608060837, + 0.07182300090789795, + 0.04300832748413086, + 0.054769255220890045, + -0.0007725173491053283, + -0.060762111097574234, + -0.033772245049476624, + -0.007268594577908516, + -0.015357463620603085, + -0.05331999436020851, + 0.053351305425167084, + -0.05566425621509552, + -0.07974010705947876, + -0.07550825923681259, + -0.02212269976735115, + 0.0523163340985775, + -0.039268676191568375, + -0.042710211127996445, + 0.07945090532302856, + 0.09119225293397903, + 0.0014255930436775088, + -0.02614990621805191, + 0.03477034345269203, + 0.002238852670416236, + 0.029366515576839447, + 0.008347948081791401, + -0.03452745079994202, + -1.3455977506068806e-33, + 0.012552019208669662, + 0.062255337834358215, + 0.029621297493577003, + 0.022087562829256058, + -0.08794168382883072, + -0.0700373500585556, + -0.04527505114674568, + -0.042597029358148575, + -0.04413337633013725, + 0.004985784646123648, + 0.03395881876349449, + 0.1049007698893547, + -0.015515479259192944, + 0.05446121469140053, + -0.020425276830792427, + -0.044166598469018936, + 0.008956123143434525, + -0.09967433661222458, + -0.0443819984793663, + -0.02544623613357544, + -0.041781432926654816, + -0.005441567394882441, + -0.08907198160886765, + 0.006660899613052607, + -0.009185354225337505, + 0.035436686128377914, + 0.05689902603626251, + 0.0608377531170845, + -0.012119950726628304, + 0.04268065094947815, + 0.06614133715629578, + 0.03754618391394615, + 0.06490392237901688, + -0.010415663942694664, + 0.03567931056022644, + 0.04503664746880531, + -0.05214504152536392, + -0.05364590883255005, + -0.03267417848110199, + 0.03527570143342018, + 0.018979275599122047, + -0.0405818447470665, + -0.027021195739507675, + -0.006356221158057451, + 0.06255181133747101, + 0.007269768975675106, + 0.028329694643616676, + -0.0962202399969101, + -0.007963581010699272, + 0.014796335250139236, + 0.0025525595992803574, + 0.02340605854988098, + 0.03284745663404465, + -0.031068503856658936, + -0.0068261949345469475, + 0.029342956840991974, + -0.05636844038963318, + 0.09410965442657471, + -0.022453850135207176, + 0.011677482165396214, + -0.057521920651197433, + -0.01297453511506319, + 0.05168595910072327, + 0.022264882922172546, + -0.07895681262016296, + 0.03654899075627327, + -0.06723292917013168, + 0.03069397434592247, + 0.05635149031877518, + 0.04064389690756798, + -0.09024150669574738, + 0.06047152727842331, + 0.0031459485180675983, + 0.05670986324548721, + 0.02158663049340248, + 0.03265714272856712, + -0.04208424687385559, + -0.03728101775050163, + 0.043186530470848083, + -0.058846380561590195, + -0.11752419918775558, + 0.03700048476457596, + -0.04122951626777649, + 0.03358989208936691, + 0.06156688556075096, + -0.0472535640001297, + 0.011665229685604572, + -0.11856779456138611, + -0.08140288293361664, + -0.018725432455539703, + 0.004475068300962448, + 0.0835033729672432, + 0.019124886021018028, + -0.09760139882564545, + -0.15770797431468964, + -5.214748242926987e-34, + 0.015208137221634388, + -0.0064616454765200615, + 0.019989805296063423, + 0.040147677063941956, + -0.04072873666882515, + -0.040583785623311996, + -0.05409763753414154, + 0.051578596234321594, + -0.015513126738369465, + 0.04378962144255638, + 0.014802399091422558, + -0.026890285313129425, + -0.06781694293022156, + -0.03794105350971222, + 0.035098735243082047, + -0.026106299832463264, + 0.08375869691371918, + 0.11192714422941208, + 0.034480176866054535, + -0.011274277232587337, + 0.003490598639473319, + 0.01740342564880848, + -0.021334411576390266, + -0.03715423867106438, + -0.002784052398055792, + 0.06901171803474426, + 0.05342039838433266, + -0.0470033623278141, + 0.04567616805434227, + -0.058257248252630234, + -0.010906879790127277, + -0.06549813598394394, + 0.06905520707368851, + 0.03870132565498352, + -0.04885483533143997, + 0.013994932174682617, + 0.024925053119659424, + -0.022034434601664543, + 0.02963291108608246, + -0.03890801966190338, + 0.05151631310582161, + -0.008091554045677185, + 0.057690318673849106, + 0.09315481781959534, + -0.04732845351099968, + -0.03806194290518761, + -0.07886946946382523, + 0.11007814854383469, + 0.04785430058836937, + 0.03794002905488014, + -0.03895730525255203, + -0.07118430733680725, + 0.041824061423540115, + -0.05108370631933212, + -0.05032695084810257, + -0.031474798917770386, + -0.07115495949983597, + -0.03147408366203308, + -0.024534419178962708, + 0.09071452915668488, + 0.0773695707321167, + 0.02810303121805191, + 0.01590866409242153, + 0.045530516654253006, + 0.05180073529481888, + -0.02271433174610138, + -0.019617941230535507, + -0.013794821687042713, + -0.0704159215092659, + 0.10888028144836426, + 0.006053818389773369, + -0.0104086147621274, + -0.07810236513614655, + -0.021897800266742706, + 0.012473429553210735, + -0.037040889263153076, + 0.05082688853144646, + -0.04162495955824852, + 0.018485987558960915, + 0.04392251372337341, + 0.018875140696763992, + -0.05033542215824127, + -0.10496636480093002, + 0.06197942793369293, + 0.01463836245238781, + -0.04062372446060181, + -0.07574494928121567, + 0.06985682994127274, + -0.008564875461161137, + -0.045595478266477585, + -0.04093493893742561, + 0.03270059823989868, + 0.025758663192391396, + -0.02386235073208809, + 0.029470957815647125, + -2.1390418325495375e-08, + 0.04660411551594734, + -0.00491951871663332, + -0.03467757999897003, + -0.07671254873275757, + 0.014989187009632587, + 0.005794447846710682, + -0.0030497161205857992, + -0.2288917601108551, + -0.08208280801773071, + 0.03380051255226135, + 0.0003947737568523735, + 0.0635041818022728, + -0.042010821402072906, + -0.04241209104657173, + 0.031524837017059326, + 0.000637908698990941, + -0.043633002787828445, + -0.04645227640867233, + -0.014294743537902832, + -0.008220917545258999, + 0.03510144725441933, + 0.05844126269221306, + 0.03376329317688942, + -0.05134611576795578, + -0.015364864841103554, + 0.04504019021987915, + -0.021776728332042694, + 0.03670789673924446, + -0.0367056205868721, + 0.04523268714547157, + 0.06330914795398712, + 0.011571227572858334, + 0.03555615246295929, + 0.006369027309119701, + -0.09017258137464523, + 0.012551960535347462, + -0.07307976484298706, + -0.010255211964249611, + 0.06679556518793106, + 0.12362344563007355, + 0.1056954488158226, + 0.007254151161760092, + 0.043608397245407104, + -0.0017838228959590197, + 0.004981995094567537, + 0.02854160964488983, + 0.054128844290971756, + 0.03680867701768875, + -0.054009515792131424, + -0.05029115453362465, + -0.007099377457052469, + -0.03170248866081238, + -0.006134605500847101, + 0.021795159205794334, + -0.08916317671537399, + -0.02016124129295349, + 0.08654724806547165, + 0.09617175906896591, + -0.013524936512112617, + -0.04724007844924927, + 0.14033684134483337, + -0.06901472806930542, + 0.033261604607105255, + 0.02357756346464157 + ], + "crosshair-bold||geolocation,gps,aiming,targeting": [ + 0.05737391114234924, + -0.1012326031923294, + 0.02921987511217594, + -0.07582885026931763, + 0.02479497157037258, + -0.05050716921687126, + 0.08255856484174728, + -0.0558917261660099, + -0.055494099855422974, + 0.0012435144744813442, + 0.007664629258215427, + 0.016461949795484543, + 0.0507621206343174, + -0.011907673440873623, + 0.0466359406709671, + 0.04180915281176567, + 0.03197504207491875, + 0.05674460902810097, + -0.0015150387771427631, + 0.041947852820158005, + -0.009565827436745167, + -0.00226955465041101, + 0.02531808614730835, + 0.10021185874938965, + 0.02259058505296707, + -0.0407804399728775, + 0.10336082428693771, + -0.02241329476237297, + -0.02584284357726574, + -0.025881918147206306, + -0.0016342414310202003, + -0.002231189515441656, + -0.05753865838050842, + 0.03540205582976341, + -0.05671451613306999, + -0.026496103033423424, + -0.0566718690097332, + -0.011374859139323235, + -0.03542809933423996, + 0.033192478120326996, + 0.033076055347919464, + 0.0069364761002361774, + 0.047920748591423035, + -0.010381764732301235, + -0.009942942298948765, + 0.00289746792986989, + -0.024926776066422462, + 0.03804158791899681, + 0.05720954388380051, + 0.012663125991821289, + -0.07136386632919312, + -0.1494612693786621, + -0.11921606957912445, + -0.026208361610770226, + -0.010871176607906818, + 0.05742611736059189, + -0.056519318372011185, + 0.020571639761328697, + 0.04530767351388931, + -0.03566301241517067, + -0.007330175489187241, + -0.018147293478250504, + -0.017252130433917046, + -0.002628220710903406, + 0.08729515969753265, + -0.020600514486432076, + -0.04209673032164574, + 0.0032374230213463306, + 0.02178788371384144, + 0.007455418352037668, + 0.042024530470371246, + -0.0022504383232444525, + -0.03899399936199188, + -0.039853956550359726, + -0.03796235844492912, + 0.03960113227367401, + -0.0047143325209617615, + 0.06245654076337814, + 0.0022710463963449, + -0.11607734858989716, + 0.0274355486035347, + -0.009846626780927181, + -0.010004132054746151, + 0.05307593569159508, + 0.12679558992385864, + 0.00302312383428216, + -0.07015178352594376, + -0.016361858695745468, + -0.0015640490455552936, + -0.04375137761235237, + 0.03810148313641548, + -0.042925864458084106, + -0.029363403096795082, + -0.011087551712989807, + -0.008794031105935574, + -0.046322233974933624, + 0.05599825084209442, + -0.009608274325728416, + -0.032257482409477234, + 0.0321781188249588, + 0.07798447459936142, + 0.0051634483970701694, + 0.016299903392791748, + 0.044743724167346954, + 0.002100677229464054, + -0.005994799546897411, + -0.006737609393894672, + 0.03197929263114929, + -0.02948797307908535, + 0.007811626419425011, + -0.03755258023738861, + -0.04834389314055443, + -0.04353702440857887, + -0.0771154910326004, + -0.09460506588220596, + 0.019294628873467445, + -0.08112908154726028, + -0.023326503112912178, + 0.1263362169265747, + -0.026286618784070015, + -0.05125667154788971, + -0.02528058923780918, + -0.02060553804039955, + -0.018695052713155746, + 0.00984973181039095, + 0.01679222844541073, + 0.026625636965036392, + -2.3830504937342452e-33, + 0.04399992153048515, + 0.07411748170852661, + -0.004113850649446249, + 0.06242338940501213, + -0.08923659473657608, + 0.039333559572696686, + -0.06274619698524475, + -0.046049460768699646, + -0.08633739501237869, + 0.037355922162532806, + 0.018715020269155502, + 0.07233048230409622, + -0.021287746727466583, + 0.043981410562992096, + 0.09905718266963959, + -0.07242846488952637, + 0.06296928972005844, + 0.02261815220117569, + -0.06677479296922684, + 0.093331478536129, + -0.03212277591228485, + 0.02600799687206745, + -0.11571178585290909, + -0.04441273212432861, + -0.02971503511071205, + 0.0660562515258789, + -0.036197230219841, + -0.026188980787992477, + -0.1209818571805954, + 0.07120560109615326, + 0.005013381130993366, + 0.010471614077687263, + -0.06376829743385315, + -0.026802003383636475, + 0.003983672242611647, + -0.026390522718429565, + -0.07345619052648544, + -0.04679187014698982, + 0.01685420610010624, + 0.09587890654802322, + 0.0475204698741436, + 0.001715216669254005, + -0.03522520884871483, + -0.03435393050312996, + 0.02141781523823738, + 0.06907013803720474, + -0.11627335846424103, + -0.05952330306172371, + -0.044155094772577286, + 0.10449595749378204, + 0.01264952402561903, + 0.020732518285512924, + -0.052195481956005096, + -0.053835462778806686, + 0.03243045508861542, + -0.007394093554466963, + -0.03223077207803726, + -0.015666991472244263, + 0.022701425477862358, + 0.0026852486189454794, + 0.04394024610519409, + -0.018467478454113007, + 0.027021588757634163, + -0.01749718375504017, + 0.0052457889541983604, + -0.07491123676300049, + -0.02919047512114048, + 0.029760602861642838, + 0.046969931572675705, + 0.06578372418880463, + -0.008703493513166904, + 0.0415460467338562, + 0.1448371708393097, + 0.032394666224718094, + 0.00036270389682613313, + 0.006373337935656309, + -0.015591016970574856, + 0.05124885216355324, + 0.09453951567411423, + -0.05904186889529228, + -0.05876483768224716, + 0.02637609839439392, + -0.05441970378160477, + 0.03764902800321579, + -0.019667290151119232, + -0.020975712686777115, + -0.04276564344763756, + -0.10693585872650146, + -0.16328474879264832, + 0.07289645075798035, + -0.03483552485704422, + 0.02309396304190159, + -0.10520542412996292, + -0.010101492516696453, + -0.09980998933315277, + 1.30964121512515e-34, + 0.016412153840065002, + 0.013008869253098965, + 0.0707964077591896, + -0.0058527737855911255, + -0.13085249066352844, + 0.022030605003237724, + 0.09647300839424133, + -0.0004588405427057296, + 0.005313906352967024, + 0.12809889018535614, + -0.005035114474594593, + -0.012718669138848782, + 0.02238217554986477, + 0.043591346591711044, + -0.01658727042376995, + 0.08464723825454712, + 0.06118326634168625, + 0.03858426585793495, + -0.06882836669683456, + -0.05395156517624855, + 0.0030884884763509035, + -0.02982471138238907, + 0.024292029440402985, + 0.025224655866622925, + 0.02013256587088108, + 0.024503080174326897, + 0.08359776437282562, + -0.02297336794435978, + -0.02177671156823635, + -0.05831368267536163, + 0.03507734090089798, + -0.010011468082666397, + 0.02534637600183487, + 0.00812055729329586, + -0.06811606138944626, + 0.08576465398073196, + 0.014308873564004898, + -0.041972316801548004, + 0.007519979495555162, + 0.03015393391251564, + 0.023963792249560356, + 0.00680501526221633, + 0.07907705754041672, + -0.04055854678153992, + -0.019699174910783768, + 0.018894299864768982, + 0.022622782737016678, + 0.08654288202524185, + -0.004269724246114492, + 0.04074307531118393, + 0.034582361578941345, + -0.03798770532011986, + 0.01988450065255165, + 0.07515955716371536, + -0.06703175604343414, + -0.06402166932821274, + 0.0032122773118317127, + -0.03660779446363449, + -0.05930603668093681, + 0.030591566115617752, + 0.020481284707784653, + 0.004861603025346994, + -0.05401172116398811, + 0.022919747978448868, + -0.009684152901172638, + -0.011792272329330444, + 0.01382452342659235, + -0.05195994675159454, + 0.04783901199698448, + -0.0022063273936510086, + 0.05508381128311157, + -0.03954290226101875, + 0.0034970564302057028, + -0.046640679240226746, + -0.00040772109059616923, + 0.025531994178891182, + 0.08658535778522491, + 0.009151369333267212, + -0.00960562564432621, + -0.013514474965631962, + 0.02408258244395256, + -0.03836826980113983, + -0.05838441103696823, + 0.06357745826244354, + 0.06349103152751923, + 0.10474421828985214, + -0.05100006237626076, + -0.002759896917268634, + -0.012540877796709538, + -0.0664696916937828, + -0.06934402137994766, + 0.07295531779527664, + -0.060285791754722595, + -0.014390334486961365, + -0.08288374543190002, + -1.709732266874653e-08, + -0.0518624447286129, + 0.06854858994483948, + -0.029896678403019905, + 0.03939175605773926, + -0.0008987991604954004, + 0.019099857658147812, + -0.04565591737627983, + -0.06561801582574844, + -0.024234933778643608, + -0.005556388292461634, + -0.0019829191733151674, + -0.04350678250193596, + -0.028003742918372154, + 0.019950218498706818, + 0.0605982281267643, + 0.0011392278829589486, + -0.026219986379146576, + 0.06314734369516373, + -0.00733436644077301, + 0.060315802693367004, + 0.0003935817221645266, + 0.10220728814601898, + 0.04112032428383827, + -0.020816797390580177, + -0.008484940975904465, + -0.007586297579109669, + -0.05100294575095177, + 0.06635700911283493, + 0.07305692881345749, + 0.02601744420826435, + 0.05494173616170883, + 0.049055006355047226, + -0.02321368269622326, + -0.005851248744875193, + -0.10094704478979111, + -0.05183994397521019, + -0.013012772426009178, + 0.06175634637475014, + 0.005936834495514631, + 0.02438771165907383, + -0.05363478884100914, + 0.0077525037340819836, + -0.014453429728746414, + 0.019442720338702202, + -0.008254499174654484, + 0.0344076082110405, + 0.15126343071460724, + -0.07180508971214294, + -0.07766208797693253, + -0.06384611129760742, + -0.06458868086338043, + -0.00024620466865599155, + 0.0315612368285656, + 0.08433283120393753, + 0.05316395312547684, + -0.015805140137672424, + 0.046493154019117355, + -0.05873102322220802, + -0.012035736814141273, + 0.04961056262254715, + 0.02784847654402256, + -0.050987470895051956, + -0.10399552434682846, + 0.05720480903983116 + ], + "crosshair-simple-bold||geolocation,gps,aiming,targeting": [ + 0.05758403614163399, + -0.09627167135477066, + 0.03682507202029228, + -0.07361438870429993, + 0.02866535075008869, + -0.056460052728652954, + 0.0720721185207367, + -0.04623418301343918, + -0.06254521012306213, + 0.005545221734791994, + 0.0066185444593429565, + 0.018676873296499252, + 0.047831885516643524, + -0.014801316894590855, + 0.04320131242275238, + 0.038807883858680725, + 0.025489728897809982, + 0.05580165609717369, + 0.001776363467797637, + 0.04951885715126991, + -0.022009694948792458, + -0.012408064678311348, + 0.015571570955216885, + 0.09316146373748779, + 0.023398956283926964, + -0.04273398220539093, + 0.1051008403301239, + -0.017797457054257393, + -0.0197660680860281, + -0.030663128942251205, + 0.002165433019399643, + -0.011377780698239803, + -0.04962582513689995, + 0.024211883544921875, + -0.05727805197238922, + -0.03029806911945343, + -0.047557998448610306, + -0.0062735239043831825, + -0.045806217938661575, + 0.0319831557571888, + 0.031504519283771515, + 0.015139974653720856, + 0.047499801963567734, + -0.014655244536697865, + -0.015315258875489235, + 0.0029624218586832285, + -0.024066714569926262, + 0.03961992636322975, + 0.05502612143754959, + 0.0034790043719112873, + -0.06729492545127869, + -0.15071605145931244, + -0.1209196001291275, + -0.032882560044527054, + -0.008783507160842419, + 0.06431106477975845, + -0.06220399588346481, + 0.02543043904006481, + 0.044389620423316956, + -0.045731060206890106, + 0.00585723202675581, + -0.02007751539349556, + -0.015602114610373974, + -0.014462540857493877, + 0.08101761341094971, + -0.027096185833215714, + -0.039446111768484116, + -0.001000375603325665, + 0.024007121101021767, + 0.006974877789616585, + 0.03405960649251938, + -0.008371338248252869, + -0.04658588394522667, + -0.033421557396650314, + -0.04545462504029274, + 0.034785933792591095, + -0.007913929410278797, + 0.07463572919368744, + -0.007178763393312693, + -0.1074165552854538, + 0.018440797924995422, + -0.0205193180590868, + -0.01716325245797634, + 0.06753800064325333, + 0.12328201532363892, + 0.006163579411804676, + -0.07304807007312775, + -0.012146267108619213, + 0.009469550102949142, + -0.04358772933483124, + 0.04646415263414383, + -0.035207703709602356, + -0.032172784209251404, + -0.020274488255381584, + -0.008414773270487785, + -0.05060902237892151, + 0.06353740394115448, + 0.0005852493923157454, + -0.049198925495147705, + 0.038188349455595016, + 0.07241513580083847, + 0.010695278644561768, + 0.027026135474443436, + 0.03242558613419533, + 0.006083476357161999, + -0.0012921768939122558, + -0.009416850283741951, + 0.019912630319595337, + -0.036126431077718735, + -0.0013242786517366767, + -0.0385570228099823, + -0.05960213020443916, + -0.04384874179959297, + -0.07783859968185425, + -0.09243027120828629, + 0.02325592003762722, + -0.08675670623779297, + -0.02394966036081314, + 0.12982891499996185, + -0.011847254820168018, + -0.047103479504585266, + -0.02408217079937458, + -0.03121228702366352, + -0.014925441704690456, + 0.0012994923163205385, + 0.02960672229528427, + 0.03169281408190727, + -2.91500687054544e-33, + 0.048339977860450745, + 0.08507771790027618, + -0.009111431427299976, + 0.06564151495695114, + -0.08786708861589432, + 0.029737722128629684, + -0.07031337171792984, + -0.0489053875207901, + -0.0850929245352745, + 0.04043744131922722, + 0.0335879884660244, + 0.06165561079978943, + -0.02521125227212906, + 0.045154087245464325, + 0.09908545762300491, + -0.07680312544107437, + 0.07150273025035858, + 0.014890378341078758, + -0.06616681814193726, + 0.083989217877388, + -0.03261999785900116, + 0.042025938630104065, + -0.11542440205812454, + -0.05737123638391495, + -0.02785502001643181, + 0.06345094740390778, + -0.03065595030784607, + -0.0255401823669672, + -0.12237215787172318, + 0.06695237755775452, + 0.005783109460026026, + 0.008555671200156212, + -0.05974932760000229, + -0.020019980147480965, + -0.0004614990612026304, + -0.03261997178196907, + -0.06451159715652466, + -0.04643460735678673, + 0.020239191129803658, + 0.08322584629058838, + 0.048073288053274155, + 0.012841394171118736, + -0.021444309502840042, + -0.0367327481508255, + 0.023561574518680573, + 0.07478098571300507, + -0.12394797801971436, + -0.058022696524858475, + -0.03635157644748688, + 0.09827326238155365, + 0.009445058181881905, + 0.026263723149895668, + -0.06503338366746902, + -0.04436299204826355, + 0.039901647716760635, + -0.0015812735073268414, + -0.03532266616821289, + -0.012876912951469421, + 0.022781332954764366, + 0.010590104386210442, + 0.04497666284441948, + -0.004973455797880888, + 0.016421262174844742, + -0.010348808020353317, + 0.0029216744005680084, + -0.06338568031787872, + -0.03499116003513336, + 0.023821864277124405, + 0.04824709892272949, + 0.06474961340427399, + -0.008964253589510918, + 0.044693224132061005, + 0.13853596150875092, + 0.015911096706986427, + 0.017343366518616676, + 0.016022857278585434, + 0.005475254729390144, + 0.027083663269877434, + 0.09700804203748703, + -0.05858646705746651, + -0.05081673711538315, + 0.027904769405722618, + -0.05905034393072128, + 0.047311488538980484, + -0.037269558757543564, + -0.024063460528850555, + -0.0429186187684536, + -0.08994986861944199, + -0.16663479804992676, + 0.06469155848026276, + -0.04350927844643593, + 0.022565366700291634, + -0.1080016940832138, + -0.013874582014977932, + -0.09142392873764038, + 5.33908937212758e-34, + 0.014371363446116447, + 0.012300509959459305, + 0.07022246718406677, + 0.0026665828190743923, + -0.1271890550851822, + 0.034036315977573395, + 0.1014145016670227, + -0.007397630251944065, + 0.004996742587536573, + 0.13134975731372833, + -0.009279077872633934, + -0.011809843592345715, + 0.011548326350748539, + 0.048647910356521606, + -0.012551986612379551, + 0.09242367744445801, + 0.05046144500374794, + 0.04945429414510727, + -0.06112392991781235, + -0.057227786630392075, + 0.012960383668541908, + -0.018478848040103912, + 0.01088954322040081, + 0.017741147428750992, + 0.021625658497214317, + 0.027372414246201515, + 0.07405221462249756, + -0.01957186684012413, + -0.021972306072711945, + -0.059331584721803665, + 0.026357345283031464, + -0.008764492347836494, + 0.03411179408431053, + -0.0008849737932905555, + -0.07302924245595932, + 0.08920178562402725, + 0.002543607959523797, + -0.03717581182718277, + 0.011050007306039333, + 0.02303352579474449, + 0.02052762173116207, + 0.009005668573081493, + 0.08979712426662445, + -0.04986204952001572, + -0.014574889093637466, + 0.018736181780695915, + 0.025893669575452805, + 0.07108337432146072, + -0.0073639266192913055, + 0.03447571396827698, + 0.023693235591053963, + -0.05259442329406738, + 0.01582403853535652, + 0.08220061659812927, + -0.061397116631269455, + -0.06350577622652054, + 0.015794945880770683, + -0.026904914528131485, + -0.05910850316286087, + 0.0365932434797287, + 0.011843186803162098, + 0.0058137886226177216, + -0.06044278293848038, + 0.023759810253977776, + -0.019257327541708946, + -0.008345207199454308, + 0.018084829673171043, + -0.06216854602098465, + 0.04123253375291824, + -0.005381585098803043, + 0.05560159683227539, + -0.031225834041833878, + 0.020351912826299667, + -0.054605625569820404, + 0.0015964104095473886, + 0.02540108934044838, + 0.0875573456287384, + 0.0076739611104130745, + -0.010704047046601772, + -0.02803061157464981, + 0.035982683300971985, + -0.03354152664542198, + -0.06798209995031357, + 0.05634933337569237, + 0.08242590725421906, + 0.10004231333732605, + -0.05324108526110649, + -0.008522425778210163, + -0.011294075287878513, + -0.055183347314596176, + -0.07391873002052307, + 0.0772782489657402, + -0.04008035734295845, + -0.01314101554453373, + -0.07754234969615936, + -1.8284159963855018e-08, + -0.050363678485155106, + 0.057344481348991394, + -0.031573787331581116, + 0.03688512369990349, + 0.003519478254020214, + 0.021725770086050034, + -0.039016686379909515, + -0.0698196291923523, + -0.019647926092147827, + -0.004111309535801411, + -0.007718662731349468, + -0.04627363011240959, + -0.0325998030602932, + 0.030766446143388748, + 0.04250523820519447, + 0.020084714516997337, + -0.02791568823158741, + 0.05743376910686493, + -0.0035578610841184855, + 0.05548923835158348, + -0.0026599662378430367, + 0.10237549990415573, + 0.03972364589571953, + -0.013996697962284088, + -0.015979299321770668, + -0.0024675948079675436, + -0.04960870370268822, + 0.07388611137866974, + 0.0787024199962616, + 0.02999080903828144, + 0.05407021939754486, + 0.047187432646751404, + -0.02219879999756813, + 0.003816880052909255, + -0.10689511150121689, + -0.04968493431806564, + -0.022132612764835358, + 0.06463329493999481, + -0.006144310347735882, + 0.016058869659900665, + -0.05148347094655037, + 0.01728033646941185, + -0.017002969980239868, + 0.01308399811387062, + -0.006171203218400478, + 0.03949498385190964, + 0.14698553085327148, + -0.08606211841106415, + -0.08585883677005768, + -0.05954453721642494, + -0.05667457729578018, + -0.001682922593317926, + 0.032894574105739594, + 0.07975903898477554, + 0.050788916647434235, + -0.006087968125939369, + 0.05451725050806999, + -0.05119605362415314, + -0.01861007697880268, + 0.04778630658984184, + 0.03133165091276169, + -0.023739883676171303, + -0.10956647992134094, + 0.057263635098934174 + ], + "crown-bold||*updated*,king,queen,royalty,monarch,ruler,leader,chess": [ + 0.01630038395524025, + 0.00302386493422091, + -0.003443405032157898, + -0.002713629277423024, + -0.021768011152744293, + 0.012076690793037415, + -0.0068479799665510654, + 0.0017874165205284953, + -0.021194642409682274, + 0.03306429088115692, + -0.07329993695020676, + -0.06562332808971405, + 0.006640240550041199, + -0.07076935470104218, + -0.10629341006278992, + -0.0127367889508605, + 0.027958976104855537, + 0.08430787175893784, + -0.07321194559335709, + 0.02930263802409172, + 0.036655183881521225, + -0.02629743702709675, + 0.0045656925067305565, + 0.07901221513748169, + 0.019994938746094704, + 0.056123629212379456, + -0.0470212884247303, + 0.030941875651478767, + 0.0017219202127307653, + -0.11711867898702621, + -0.021542930975556374, + -0.07376124709844589, + 0.15478749573230743, + 0.012948818504810333, + -0.03618627414107323, + -1.381423408020055e-05, + -0.045171234756708145, + 0.0060950941406190395, + 0.030385052785277367, + 0.04334470257163048, + 0.011377002112567425, + -0.021675683557987213, + -0.021259086206555367, + 0.08026465773582458, + 0.009097989648580551, + 0.060012299567461014, + -0.08942882716655731, + -0.03552400693297386, + -0.03933172672986984, + 0.009816668927669525, + 0.0033244488295167685, + -0.10563270002603531, + -0.06868431717157364, + 0.0023476758506149054, + 0.013339642435312271, + 0.03630751371383667, + -0.05846913903951645, + -0.030132295563817024, + 0.1136343777179718, + 0.02674529328942299, + 0.018635062500834465, + 0.08905951678752899, + 0.04006020724773407, + 0.07522504031658173, + -0.05023598298430443, + 0.02358669973909855, + 0.028943106532096863, + -0.0036074621602892876, + -0.08337591588497162, + 0.022687552496790886, + -0.00453319912776351, + -0.00266304356046021, + -0.019784163683652878, + -0.09616278856992722, + -0.11960938572883606, + 0.015475762076675892, + 0.02469726838171482, + -0.015803975984454155, + -0.010064211674034595, + -0.02703992836177349, + -0.08350777626037598, + -0.06461965292692184, + -0.08221066743135452, + 0.010053981095552444, + 0.034654662013053894, + 0.0017990692285820842, + -0.09492039680480957, + -0.04047742113471031, + -0.06228238716721535, + -0.029757842421531677, + -0.03720913827419281, + -0.04134334623813629, + 0.10225390642881393, + 0.12088905274868011, + -0.07547104358673096, + 0.12199017405509949, + 0.04666101559996605, + 0.027109909802675247, + 0.0229069571942091, + 0.0767919272184372, + -0.02126002497971058, + 0.05314532667398453, + -0.033526185899972916, + 0.021462952718138695, + -0.06984315067529678, + 0.025851847603917122, + -0.07840579003095627, + 0.02759535051882267, + -0.012997271493077278, + -0.05236005410552025, + -0.032779816538095474, + -0.10561051964759827, + -0.03200351446866989, + -0.030730530619621277, + 0.007622400298714638, + -0.023174230009317398, + -0.05128026381134987, + -0.012759095057845116, + 0.03079609014093876, + 0.040743544697761536, + 0.0659133717417717, + -0.038860518485307693, + -0.04055935889482498, + -0.0600733645260334, + -0.010859577916562557, + 0.02043132297694683, + 0.041777364909648895, + -3.774828274597149e-33, + 0.015720132738351822, + 0.002567274495959282, + 0.035172734409570694, + 0.0871008113026619, + -0.020526785403490067, + -0.055595628917217255, + 0.01664676144719124, + 0.013432478532195091, + -0.06756877154111862, + 0.10321467369794846, + 0.03469653055071831, + 0.04843093454837799, + -0.05719051882624626, + -0.03445367142558098, + -0.01835443452000618, + 0.018821705132722855, + 0.06586001813411713, + -0.050706177949905396, + -0.08667391538619995, + 0.08415553718805313, + -0.028337134048342705, + 0.11976345628499985, + 0.017433801665902138, + -0.010215774178504944, + -0.0038488327991217375, + -0.033100586384534836, + 0.012458516284823418, + -0.050610966980457306, + 0.08324563503265381, + 0.04341220483183861, + 0.05034028738737106, + -0.05997493863105774, + -0.018083175644278526, + -0.03489143028855324, + -0.0004921125946566463, + -0.014466437511146069, + -0.01090457197278738, + -0.07117532938718796, + 0.01040684338659048, + 0.019583813846111298, + -0.053368281573057175, + -0.08357387036085129, + -0.0489627979695797, + 0.014104904606938362, + -0.011369694955646992, + 0.08029284328222275, + -0.031118737533688545, + -0.04748796299099922, + 0.038876764476299286, + -0.014782262034714222, + 0.028422722592949867, + -0.016799233853816986, + -0.03658765181899071, + 0.04040510207414627, + 0.006149609107524157, + 0.00253532943315804, + -0.0640455111861229, + 0.14535734057426453, + -0.037762824445962906, + 0.028523584827780724, + 0.06816409528255463, + -0.013145077973604202, + 0.038441531360149384, + 0.060916539281606674, + 0.0027604103088378906, + 0.05545148253440857, + -0.0239762794226408, + 0.04700577259063721, + 0.042945824563503265, + -0.04691971093416214, + -0.0035666453186422586, + 0.11044063419103622, + 0.02581576630473137, + 0.053751252591609955, + 0.03493838012218475, + 0.025930624455213547, + -0.023036222904920578, + -0.035771217197179794, + -0.028573324903845787, + -0.04405514523386955, + -0.14338387548923492, + 0.07440748065710068, + -0.040288761258125305, + 0.025374742224812508, + 0.060845013707876205, + -0.008067015558481216, + 0.016427353024482727, + -0.05246025323867798, + 0.0339416079223156, + 0.07324254512786865, + -0.062199126929044724, + -0.03280969336628914, + -0.006671603303402662, + -0.007739603519439697, + -0.11375341564416885, + 1.0226421571554769e-33, + 0.05019558221101761, + -0.04091613367199898, + 0.01307452842593193, + -0.008984307758510113, + 0.005903962068259716, + 0.0883498340845108, + -0.06497441232204437, + 0.0007465832750312984, + -0.029176535084843636, + -0.03724101558327675, + 0.01680631935596466, + 0.016797728836536407, + -0.04343686252832413, + -0.03549983724951744, + 0.00946692656725645, + -0.0511012002825737, + 0.013288280926644802, + 0.016910577192902565, + -0.07962530851364136, + 0.03412069380283356, + -0.025094902142882347, + -0.034202691167593, + -0.08001704514026642, + 0.06914015114307404, + 0.011621681042015553, + 0.06173694133758545, + -0.11760462820529938, + 0.0038132204208523035, + 0.018407180905342102, + 0.0481698215007782, + -0.03604264557361603, + -0.03377112001180649, + -0.017015453428030014, + 0.0038470420986413956, + -0.08697124570608139, + 0.05647331103682518, + 0.0703297108411789, + -0.1360664814710617, + 0.06676942110061646, + 0.06608626991510391, + -0.08873458206653595, + -0.04096868634223938, + 0.09102492779493332, + 0.01875482313334942, + 0.041780736297369, + 0.019139597192406654, + -0.026094332337379456, + 0.039617035537958145, + 0.010881154797971249, + 0.06608471274375916, + 0.005566200707107782, + 0.005902902223169804, + -0.0631776675581932, + 0.03472927585244179, + -0.009590484201908112, + 0.033254578709602356, + -0.03191737085580826, + -0.035412948578596115, + 0.023732522502541542, + 0.04692631587386131, + 0.002215464599430561, + 0.013816896826028824, + -0.03805961832404137, + 0.008686942048370838, + -0.0386643148958683, + 0.053941093385219574, + 0.03917285427451134, + -0.00611284002661705, + 0.04814188927412033, + -0.011780056171119213, + 0.017087070271372795, + -0.04965057969093323, + -0.10992128401994705, + 0.0389128215610981, + 0.023286910727620125, + 0.0078085786662995815, + 0.0004887089598923922, + 0.00013928809494245797, + 0.012789382599294186, + 0.016380812972784042, + -0.030098039656877518, + 0.07515211403369904, + -0.02072218246757984, + 0.009425714612007141, + 0.0347769670188427, + 0.024393383413553238, + 0.08381174504756927, + -0.014771973714232445, + 0.008342745713889599, + -0.10014308989048004, + -0.031104719266295433, + -0.009427487850189209, + 0.028790388256311417, + -0.0368645042181015, + 0.024292167276144028, + -2.3209453914319056e-08, + 0.028910402208566666, + 0.03948396444320679, + -0.08312239497900009, + -0.04130758345127106, + 0.01954275742173195, + -0.03635022044181824, + -0.040575552731752396, + -0.09029566496610641, + -0.09976028650999069, + -0.050006475299596786, + 0.06559494882822037, + -0.01782052591443062, + -0.02851673774421215, + -0.07240745425224304, + 0.08014079928398132, + 0.0011280488688498735, + -0.014275239780545235, + 0.01508963294327259, + 0.014731437899172306, + -0.053556591272354126, + 0.009410989470779896, + 0.033831775188446045, + 0.08034708350896835, + -0.07611798495054245, + -0.03454934433102608, + -0.038387730717659, + -0.03987416252493858, + 0.005341972690075636, + 0.021315304562449455, + 0.07785121351480484, + 0.10154268145561218, + 0.07630361616611481, + 0.03370342776179314, + -0.0025292427744716406, + 0.0010111366864293814, + 0.0346025675535202, + 0.0078796511515975, + -0.037357527762651443, + 0.03238508477807045, + 0.06243858113884926, + 0.024093640968203545, + -0.014471900649368763, + -0.03692586347460747, + 0.031834520399570465, + 0.003416430903598666, + 0.033538926392793655, + 0.0746847614645958, + -0.015752587467432022, + -0.05136920511722565, + -0.13884645700454712, + 0.001087704673409462, + 0.014297249726951122, + 0.005869169253855944, + 0.0656314492225647, + -0.022503048181533813, + 0.023508427664637566, + 0.044069431722164154, + 0.08320962637662888, + -0.014336814172565937, + -0.01679990440607071, + 0.11029428988695145, + -0.07342163473367691, + 0.006500321440398693, + -0.008388115093111992 + ], + "crown-cross-bold||*new*,king,queen,royalty,monarch,ruler,leader,chess": [ + 0.01746523007750511, + -0.03072817623615265, + -0.014322226867079735, + -0.017578333616256714, + -0.026081398129463196, + 0.032577984035015106, + -0.017288854345679283, + 0.0005548212211579084, + -0.01353677362203598, + 0.04305698350071907, + -0.049315404146909714, + -0.10632941126823425, + -0.00850218627601862, + -0.055152010172605515, + -0.08934725075960159, + 0.02030448243021965, + -0.0021880068816244602, + 0.09856951236724854, + -0.058074500411748886, + 0.04463839903473854, + 0.034572336822748184, + -0.07771160453557968, + -0.013177869841456413, + 0.07769288867712021, + -0.012821617536246777, + 0.03446894884109497, + -0.00834454782307148, + 0.03572363406419754, + 0.012274183332920074, + -0.122455894947052, + -0.015313273295760155, + -0.10168137401342392, + 0.06999219954013824, + 0.04748298600316048, + -0.03456356003880501, + -0.016696026548743248, + -0.02402869239449501, + 0.039338771253824234, + 0.03954661637544632, + 0.05200021341443062, + 0.019000399857759476, + -0.023471780121326447, + -0.011978132650256157, + 0.07589055597782135, + 0.04263651371002197, + 0.08652938902378082, + -0.07785625755786896, + -0.023802056908607483, + -0.006890364456921816, + 0.02582339197397232, + 0.01768745854496956, + -0.10927402228116989, + -0.06726157665252686, + 0.02184552326798439, + 0.03536822274327278, + 0.06204066425561905, + -0.07592568546533585, + -0.05871567130088806, + 0.10258377343416214, + 0.04817339777946472, + 0.008661062456667423, + 0.048667170107364655, + 0.044797684997320175, + 0.06678230315446854, + -0.055302366614341736, + 0.0054893516935408115, + -0.0023855995386838913, + 0.047847941517829895, + -0.10057563334703445, + 0.02535567246377468, + -0.017701752483844757, + -0.005184290464967489, + -0.031560268253088, + -0.09212289750576019, + -0.0894794687628746, + 0.009622961282730103, + 0.029716407880187035, + -0.000677500618621707, + -0.05295203626155853, + -0.022336777299642563, + -0.08833936601877213, + -0.0067888349294662476, + -0.10193562507629395, + 0.03148595243692398, + 0.04875202476978302, + 0.017905360087752342, + -0.10342323035001755, + -0.04949694499373436, + -0.05359376221895218, + -0.03811240196228027, + -0.012750093825161457, + -0.031741444021463394, + 0.0886545479297638, + 0.11186766624450684, + -0.05547235161066055, + 0.11949681490659714, + 0.05043942853808403, + 0.009427663870155811, + 0.02649599313735962, + 0.057665422558784485, + -0.011456015519797802, + 0.05529863387346268, + 0.009055652655661106, + 0.04538234695792198, + -0.05314720422029495, + -0.012467782944440842, + -0.06435392051935196, + 0.016255531460046768, + -0.001677031395956874, + -0.06888136267662048, + -0.014662728644907475, + -0.08891423791646957, + -0.025040114298462868, + -0.03039584308862686, + -0.01273861899971962, + 0.012628382071852684, + -0.07359687238931656, + -0.02380795031785965, + 0.08412621915340424, + 0.049979619681835175, + 0.0617748498916626, + -0.007723014801740646, + -0.023502005264163017, + -0.05526093766093254, + -0.013460812158882618, + 0.027756156399846077, + 0.03399038687348366, + -3.8459052752035876e-33, + 0.013192640617489815, + 0.028985073789954185, + 0.050691910088062286, + 0.07741673290729523, + -0.04561222344636917, + -0.07590967416763306, + -0.0016565655823796988, + 0.019929248839616776, + -0.06367780268192291, + 0.0962427407503128, + 0.0032302699983119965, + 0.024938534945249557, + -0.04768474027514458, + -0.043961647897958755, + -0.017981505021452904, + 0.028759395703673363, + 0.05240842327475548, + -0.0922519639134407, + -0.10243523120880127, + 0.05606355890631676, + -0.0520562082529068, + 0.13961517810821533, + 0.03326673433184624, + 0.004409779794514179, + -0.015804694965481758, + -0.018451066687703133, + 0.02473110519349575, + -0.06662370264530182, + 0.06416837871074677, + 0.05312950164079666, + 0.030723009258508682, + -0.06682851165533066, + -0.008602279238402843, + -0.014500646851956844, + -0.00022625054407399148, + 0.02930869720876217, + -0.018335256725549698, + -0.06901780515909195, + 0.019059114158153534, + 0.07408977299928665, + -0.061996642500162125, + -0.09627311676740646, + -0.03451858460903168, + 0.02278393693268299, + -0.012260328978300095, + 0.027042167261242867, + 0.0007623036508448422, + -0.07196926325559616, + -0.007720903027802706, + 0.01621417887508869, + 0.027434421703219414, + -0.041610609740018845, + -0.03613674268126488, + 0.017811689525842667, + 0.025532107800245285, + 0.011985423974692822, + -0.08214611560106277, + 0.15190231800079346, + -0.03802448883652687, + 0.02352011203765869, + 0.05698402598500252, + -0.004853776190429926, + 0.02028762176632881, + 0.09679398685693741, + -0.025855181738734245, + 0.0447050966322422, + -0.04391101375222206, + 0.033936358988285065, + 0.038837503641843796, + -0.03362676501274109, + -0.04402032122015953, + 0.08862657099962234, + 0.0004520486982073635, + 0.06888096779584885, + 0.050749752670526505, + 0.02487141080200672, + -0.03783215954899788, + -0.013890204019844532, + 0.05066569522023201, + -0.054313868284225464, + -0.1452760398387909, + 0.09072157740592957, + -0.03952265530824661, + -0.006027000956237316, + 0.056361082941293716, + -0.024293726310133934, + 0.02713187411427498, + -0.07965034991502762, + 0.002729349536821246, + 0.04498141631484032, + -0.0598687008023262, + -0.005835802294313908, + 0.018200669437646866, + -0.02335023507475853, + -0.09962577372789383, + 6.511906259059381e-34, + 0.02756851725280285, + -0.049602024257183075, + 0.06467664241790771, + 0.002559961983934045, + 0.004916646052151918, + 0.0611824207007885, + -0.033738765865564346, + -0.00013934650633018464, + -0.028194265440106392, + 0.02144705504179001, + 0.03627437725663185, + 0.023238884285092354, + -0.02279169112443924, + -0.044611234217882156, + 0.060106243938207626, + -0.059742365032434464, + 0.02664012461900711, + 0.05853065475821495, + -0.029868142679333687, + 0.009201030246913433, + 0.00303482124581933, + -0.019801858812570572, + -0.05943404883146286, + 0.024535473436117172, + 0.004715444520115852, + 0.048823434859514236, + -0.08249109238386154, + -0.012245171703398228, + 0.017109736800193787, + 0.04304233938455582, + -0.023825963959097862, + -0.04036678001284599, + 0.019508274272084236, + 0.03706442192196846, + -0.08431103825569153, + 0.05106412246823311, + 0.02829592488706112, + -0.10451466590166092, + 0.06098265200853348, + 0.056322913616895676, + -0.09797942638397217, + -0.06312062591314316, + 0.09961357712745667, + 0.009110837243497372, + 0.010010764934122562, + 0.011698259972035885, + -0.09441401064395905, + 0.05422298237681389, + 0.01337738148868084, + 0.06155112013220787, + -0.028872983530163765, + 0.010727021843194962, + -0.03287557139992714, + 0.007707218173891306, + -0.03622591122984886, + 0.021727412939071655, + -0.05491333082318306, + -0.011456026695668697, + -0.005554749630391598, + 0.07027527689933777, + 0.012302670627832413, + -0.017770476639270782, + -0.059424933046102524, + -0.010473611764609814, + -0.003005041740834713, + 0.050629258155822754, + 0.02786349505186081, + -0.004555612802505493, + 0.0022244418505579233, + 0.009449434466660023, + 0.01794707402586937, + -0.010604768991470337, + -0.11950402706861496, + -0.01829701103270054, + -0.023758020251989365, + 0.00845884159207344, + -0.008702280931174755, + -0.01484307274222374, + -0.0032824156805872917, + 0.023516220971941948, + -0.035948045551776886, + 0.03113653138279915, + -0.02929084748029709, + 0.019258791580796242, + 0.033073484897613525, + 9.850306378211826e-05, + 0.06556238979101181, + 0.007642742712050676, + -0.004553571343421936, + -0.10836160182952881, + -0.02551650069653988, + -0.0050050909630954266, + 0.016460631042718887, + -0.006670215632766485, + 0.029554998502135277, + -2.350234140635621e-08, + 0.03243608400225639, + 0.03735383599996567, + -0.06964195519685745, + -0.062494732439517975, + -0.008763381280004978, + -0.030131474137306213, + -0.06753464788198471, + -0.13896271586418152, + -0.10899168252944946, + -0.017377514392137527, + 0.06651841849088669, + 0.006951239891350269, + -0.003720278153195977, + -0.04374847188591957, + 0.06081779673695564, + -0.020679492503404617, + -0.011349735781550407, + 0.002448613988235593, + 0.00513757998123765, + -0.02073277346789837, + 0.026552971452474594, + 0.0370919331908226, + 0.07326781004667282, + -0.05834118276834488, + -0.05324793979525566, + -0.0250345878303051, + -0.01790546625852585, + 0.012004267424345016, + 0.014953953213989735, + 0.049369536340236664, + 0.10692785680294037, + 0.08197261393070221, + 0.014930089004337788, + -0.002542823785915971, + -0.02871115691959858, + 0.05402785912156105, + -0.018840404227375984, + -0.03717421367764473, + 0.062359608709812164, + 0.054516516625881195, + 0.03198697045445442, + 0.016033228486776352, + -0.04712632670998573, + 0.03096073679625988, + 0.01667013391852379, + 0.010051067918539047, + 0.08427270501852036, + 0.007299147080630064, + -0.053572434931993484, + -0.16494807600975037, + 0.010093064978718758, + 0.003303076373413205, + 0.012667478062212467, + 0.06716427952051163, + -0.016134843230247498, + 0.028934365138411522, + 0.053017232567071915, + 0.1016509160399437, + -0.03986513242125511, + -0.026745310053229332, + 0.10726810991764069, + -0.08184491097927094, + 0.018679270520806313, + 0.00872910674661398 + ], + "crown-simple-bold||*updated*,king,queen,royalty,monarch,ruler,leader,chess": [ + 0.024613982066512108, + 0.019562048837542534, + 0.009514928795397282, + 0.0009043421596288681, + -0.014967860653996468, + 0.00908339861780405, + -0.006085365079343319, + 0.016935093328356743, + -0.034271564334630966, + 0.04935652017593384, + -0.06619872152805328, + -0.0748138502240181, + 0.008155276998877525, + -0.06521424651145935, + -0.10439389199018478, + -0.018285397440195084, + 0.006483058910816908, + 0.07626312226057053, + -0.06919561326503754, + 0.030632412061095238, + 0.02373828925192356, + -0.0228261798620224, + -0.026332510635256767, + 0.06512405723333359, + 0.007741162553429604, + 0.06344203650951385, + -0.053156908601522446, + 0.04793280363082886, + 0.02451680228114128, + -0.11307556182146072, + -0.026034440845251083, + -0.0703621655702591, + 0.14993315935134888, + 0.013038837350904942, + -0.029933296144008636, + -0.010079420171678066, + -0.03413395956158638, + 0.02222355641424656, + 0.03084780089557171, + 0.04170435667037964, + -0.0002301820641150698, + -0.03486909717321396, + -0.022582203149795532, + 0.08353124558925629, + -0.0022149980068206787, + 0.04909595102071762, + -0.08972945809364319, + -0.03168134763836861, + -0.043464019894599915, + -0.0064465999603271484, + 0.006026845425367355, + -0.11356191337108612, + -0.07619482278823853, + -0.010933143086731434, + 0.02125004306435585, + 0.045159436762332916, + -0.07184001058340073, + -0.01753767393529415, + 0.1182832419872284, + 0.02240794152021408, + 0.023473108187317848, + 0.05644011124968529, + 0.03244500979781151, + 0.07120734453201294, + -0.04926097393035889, + 0.019092971459031105, + 0.03299619257450104, + -0.006987899076193571, + -0.08772938698530197, + 0.021365202963352203, + 0.0021884916350245476, + -0.00813637301325798, + -0.04476682469248772, + -0.08367633074522018, + -0.10633493959903717, + 0.0009713539038784802, + 0.00929334107786417, + -0.005563241895288229, + -0.029639746993780136, + -0.021800458431243896, + -0.10995996743440628, + -0.08006107807159424, + -0.09683748334646225, + 0.031920142471790314, + 0.02736193872988224, + 0.003319123759865761, + -0.08601857721805573, + -0.042755644768476486, + -0.04327769950032234, + -0.03011871688067913, + -0.03668573871254921, + -0.026261117309331894, + 0.11682786047458649, + 0.11670740693807602, + -0.07749313116073608, + 0.12231742590665817, + 0.050441741943359375, + 0.024806581437587738, + -0.0105505445972085, + 0.07908501476049423, + -0.0174875445663929, + 0.05860097333788872, + -0.0035279858857393265, + 0.004588071722537279, + -0.05267397686839104, + 0.014904708601534367, + -0.07382653653621674, + 0.0062462626956403255, + -0.01365138590335846, + -0.06026837229728699, + -0.050568461418151855, + -0.1028655543923378, + -0.013409004546701908, + -0.024148859083652496, + 0.007761265616863966, + -0.01917172595858574, + -0.05929156392812729, + -0.034028977155685425, + 0.03698006644845009, + 0.05902838334441185, + 0.06606030464172363, + -0.03784770146012306, + -0.05253593623638153, + -0.05010409280657768, + -0.017908750101923943, + 0.02464362047612667, + 0.047267526388168335, + -4.2125742893197066e-33, + 0.03281862288713455, + 0.02024810202419758, + 0.028235407546162605, + 0.09645748138427734, + -0.01875075325369835, + -0.05744083598256111, + 0.0016667067538946867, + 0.013053186237812042, + -0.06423116475343704, + 0.09862849861383438, + 0.06277617812156677, + 0.03160248324275017, + -0.05327427014708519, + -0.02547253482043743, + -0.01978464424610138, + 0.019742971286177635, + 0.08274142444133759, + -0.051936134696006775, + -0.0811522826552391, + 0.07067031413316727, + -0.03413892537355423, + 0.154952734708786, + 0.018998900428414345, + -0.028150662779808044, + 0.001801157952286303, + -0.03733673691749573, + 0.021272042766213417, + -0.06750594079494476, + 0.07452953606843948, + 0.04333049803972244, + 0.06337230652570724, + -0.061962444335222244, + -0.006596191320568323, + -0.0202928576618433, + -0.003172969911247492, + -0.016575373709201813, + 0.0149394441395998, + -0.0615558922290802, + 0.010112429969012737, + 0.006211948115378618, + -0.07586133480072021, + -0.07641450315713882, + -0.027106378227472305, + -0.002663220977410674, + -0.0013637127121910453, + 0.09761510789394379, + -0.024118896573781967, + -0.05967499315738678, + 0.03361588716506958, + -0.02037082426249981, + 0.023052817210555077, + -0.0047820499166846275, + -0.02609352022409439, + 0.04283821955323219, + 0.019764047116041183, + 0.020504290238022804, + -0.061115629971027374, + 0.14867492020130157, + -0.04373287037014961, + 0.02718415856361389, + 0.061331991106271744, + 0.0037933378480374813, + 0.02268311008810997, + 0.06883738189935684, + -0.011107404716312885, + 0.061271898448467255, + -0.04014343395829201, + 0.03014291077852249, + 0.047680728137493134, + -0.033134374767541885, + -0.013756929896771908, + 0.11173802614212036, + 0.017778964713215828, + 0.03389354795217514, + 0.06103407219052315, + 0.030720187351107597, + 0.016398394480347633, + -0.05721026286482811, + -0.03410328924655914, + -0.03803456574678421, + -0.13452254235744476, + 0.08009156584739685, + -0.03816108778119087, + 0.040394578129053116, + 0.03673392906785011, + -0.018928565084934235, + 0.006709890905767679, + -0.025009943172335625, + 0.011785534210503101, + 0.07769013941287994, + -0.05775768682360649, + -0.025635965168476105, + -0.013417416252195835, + -0.008210217580199242, + -0.10654240846633911, + 1.6040041023542517e-33, + 0.04078507423400879, + -0.04865036904811859, + 0.004579075146466494, + 0.005187689792364836, + 0.00825528521090746, + 0.09736651927232742, + -0.040579862892627716, + -0.008046195842325687, + -0.015417712740600109, + -0.02837725169956684, + 0.018443405628204346, + 0.007464347407221794, + -0.059084489941596985, + -0.0325232669711113, + 0.017366105690598488, + -0.04041319340467453, + 0.0061080483719706535, + 0.04253369942307472, + -0.05859185382723808, + 0.04255809262394905, + -0.014819090254604816, + -0.020673226565122604, + -0.09112676978111267, + 0.05146314948797226, + 0.022716162726283073, + 0.07032623887062073, + -0.13062335550785065, + 0.00953991524875164, + 0.0063976082019507885, + 0.044279783964157104, + -0.0349360853433609, + -0.03606019541621208, + -0.02020847238600254, + -0.006428076419979334, + -0.08399491757154465, + 0.05498088151216507, + 0.035313013941049576, + -0.13622483611106873, + 0.05547727271914482, + 0.06460677087306976, + -0.10484970360994339, + -0.040420010685920715, + 0.10063163191080093, + 0.004000437445938587, + 0.04963720217347145, + 0.011012457311153412, + -0.01751050353050232, + 0.004713766276836395, + -0.005643008276820183, + 0.05622459948062897, + -0.007502452470362186, + 0.0003146661911159754, + -0.06239459663629532, + 0.048815444111824036, + 0.00568648474290967, + 0.03762524202466011, + -0.018146244809031487, + -0.02376636303961277, + 0.02653861977159977, + 0.054176926612854004, + -0.0012941271997988224, + 0.023814236745238304, + -0.0677172839641571, + -0.0030384515412151814, + -0.04009813070297241, + 0.05772189050912857, + 0.040758274495601654, + -0.014942990615963936, + 0.03087763302028179, + -0.014633957296609879, + 0.015205036848783493, + -0.03458297997713089, + -0.10129654407501221, + 0.01814015954732895, + 0.028381986543536186, + 0.009750599972903728, + 0.0007633010391145945, + -0.004938605707138777, + 0.001867939718067646, + -0.003298381110653281, + -0.014199644327163696, + 0.06911058723926544, + -0.03240141645073891, + -0.012709449045360088, + 0.05020728334784508, + 0.011666489765048027, + 0.08131727576255798, + -0.016287071630358696, + 0.010936264880001545, + -0.0787746012210846, + -0.037976961582899094, + 0.0022075630258768797, + 0.050439395010471344, + -0.02515140175819397, + 0.02683761715888977, + -2.3566474993685915e-08, + 0.019955499097704887, + 0.004528901539742947, + -0.080280601978302, + -0.05506550520658493, + 0.038088925182819366, + -0.036338210105895996, + -0.03263232111930847, + -0.09651631116867065, + -0.10215521603822708, + -0.03146885707974434, + 0.05704213306307793, + -0.022448139265179634, + -0.03822365775704384, + -0.041399065405130386, + 0.05459653213620186, + 0.03065565414726734, + -0.01900772750377655, + 0.014821681194007397, + 0.015533501282334328, + -0.04780702292919159, + 0.013178114779293537, + 0.032187558710575104, + 0.05737557262182236, + -0.0721377283334732, + -0.04853791370987892, + -0.028339816257357597, + -0.03290854021906853, + 0.024265388026833534, + 0.031136345118284225, + 0.07485339045524597, + 0.09449012577533722, + 0.08975663781166077, + 0.020629584789276123, + -9.292057802667841e-05, + -0.021460777148604393, + 0.042993027716875076, + 0.0038786111399531364, + -0.030730005353689194, + 0.02320100925862789, + 0.04566923528909683, + 0.03231034800410271, + -0.00845232605934143, + -0.04658491909503937, + 0.030626965686678886, + 0.009866210632026196, + 0.04140549898147583, + 0.07901474833488464, + -0.020810512825846672, + -0.04926160350441933, + -0.1454693078994751, + 0.01726517081260681, + 0.008607957512140274, + 0.016025202348828316, + 0.05602821335196495, + -0.027203138917684555, + 0.0322999507188797, + 0.05247317627072334, + 0.09630938619375229, + -0.02736078016459942, + -0.0113527188077569, + 0.1217307522892952, + -0.02605116181075573, + -0.005502032116055489, + -0.00678498949855566 + ], + "cube-bold||square,box,3d,volume,blocks": [ + 0.049499571323394775, + -0.009701570495963097, + -0.07360470294952393, + 0.05801478028297424, + -0.018882833421230316, + -0.009740269742906094, + -0.025383254513144493, + -0.05702362209558487, + 0.04881001636385918, + -0.04929760843515396, + -0.10083963721990585, + 0.03239743784070015, + -0.0023452884051948786, + 0.03174703195691109, + -0.023709233850240707, + 0.011611398309469223, + 0.026380637660622597, + 0.08776657283306122, + -0.03589828684926033, + 0.059398919343948364, + 0.042057689279317856, + 0.020306836813688278, + -0.004425918683409691, + 0.019969923421740532, + 0.0200317595154047, + 0.027401551604270935, + 0.06659721583127975, + 0.04827447980642319, + 0.06045665219426155, + -0.08390606939792633, + 0.03146098181605339, + -0.03631337732076645, + 0.1092054545879364, + 0.03852603957056999, + 0.026710301637649536, + -0.013759298250079155, + -0.06829877197742462, + -0.0037015904672443867, + 0.015863027423620224, + 0.04715902730822563, + 0.03895141929388046, + -0.020773056894540787, + 0.03671281784772873, + 0.016786878928542137, + -0.02826838195323944, + -0.009142102673649788, + -0.09154339879751205, + -0.0007410856196656823, + 0.006499210838228464, + -0.04762669652700424, + -0.013513593934476376, + -0.12732432782649994, + -0.05420660972595215, + 0.03579588979482651, + 0.028920313343405724, + -0.01852111704647541, + -0.0025071308482438326, + -0.022983159869909286, + 0.1110697016119957, + -0.07046366482973099, + 0.019942395389080048, + 0.031774621456861496, + 0.0851905345916748, + -0.0055859023705124855, + 0.05187288671731949, + 0.03670297935605049, + -0.07181583344936371, + 0.01350873801857233, + -0.07235988974571228, + 0.036739569157361984, + 0.04153522476553917, + 0.10024023801088333, + 0.0102424630895257, + -0.011451548896729946, + 0.04049571603536606, + -0.06012410670518875, + -0.016908327117562294, + -0.021186962723731995, + -0.07691220194101334, + 0.05685010179877281, + -0.14847014844417572, + -0.012209296226501465, + -0.12497139722108841, + 0.043708436191082, + -0.06090917810797691, + 0.03602638468146324, + -0.09884878247976303, + 0.0035619442351162434, + -0.10185576230287552, + -0.04457242414355278, + -0.00047541141975671053, + 0.009246540255844593, + 0.0027956021949648857, + 0.051811832934617996, + -0.04248436912894249, + -0.05507585033774376, + 0.08335722982883453, + -0.05488519370555878, + -0.019798122346401215, + 0.0027960024308413267, + 0.06364388763904572, + -0.041000958532094955, + -0.0039528850466012955, + -0.011297250166535378, + 0.02359035797417164, + -0.07549523562192917, + 0.08391068875789642, + -0.007159820292145014, + -0.028871484100818634, + 0.015376624651253223, + -0.008537030778825283, + -0.11534401774406433, + -0.014471886679530144, + -0.04272054135799408, + -0.02372623048722744, + -0.04641762003302574, + -0.036323271691799164, + -0.0038411011919379234, + 0.11384078860282898, + 0.015410362742841244, + 0.06267685443162918, + -0.03397959843277931, + -0.0015032484661787748, + -0.05160042643547058, + 0.005664208438247442, + 0.013482985086739063, + 0.01803736761212349, + -2.2244030210823846e-33, + 0.043322522193193436, + 0.040328096598386765, + -0.020441194996237755, + 0.13463488221168518, + 0.09618078917264938, + 0.04140884056687355, + -0.02413974143564701, + -0.055785708129405975, + 0.0510256364941597, + 0.06798315048217773, + -0.03106575831770897, + 0.0756971538066864, + -0.014380170963704586, + 0.009590782225131989, + 0.00079750717850402, + -0.03689830005168915, + -0.004905365873128176, + 0.019336363300681114, + -0.10820400714874268, + 0.03815445303916931, + -0.03477216884493828, + 0.04584094509482384, + -0.021116580814123154, + 0.10318940877914429, + -0.04572809860110283, + -0.01703830435872078, + -0.01004740409553051, + -0.05884148180484772, + -0.06051066517829895, + 0.022040311247110367, + 0.047584183514118195, + 0.019776729866862297, + -0.003214998869225383, + -0.002307324670255184, + -0.01349352952092886, + 0.05257321521639824, + -0.003401979338377714, + -0.0012200954370200634, + -0.003431521588936448, + 0.002566756447777152, + -0.03444676101207733, + -0.04662685841321945, + 0.0593956783413887, + -0.06050000712275505, + 0.02227356843650341, + 0.10151965916156769, + 0.02685623988509178, + -0.05741357430815697, + -0.010243019089102745, + -0.036447301506996155, + 0.04974408447742462, + 0.03056209720671177, + -0.024986891075968742, + -0.03592148423194885, + 0.03631027042865753, + -0.10148224979639053, + -0.04603932797908783, + 0.09317310154438019, + 0.08990934491157532, + 0.044854432344436646, + 0.03783878684043884, + 0.0004899071645922959, + 0.04277908802032471, + -0.008784950710833073, + -0.08839704096317291, + 0.09375834465026855, + -0.04149036109447479, + -0.0031326424796134233, + 0.05212678387761116, + -0.016464361920952797, + -0.002047106623649597, + 0.031307149678468704, + -0.008492005057632923, + 0.07396236062049866, + -0.05049220100045204, + 0.00779420742765069, + -0.01842207834124565, + -0.03866574168205261, + 0.07494141906499863, + -0.09483180940151215, + -0.08352067321538925, + 0.03862501308321953, + -0.061131980270147324, + -0.04494890570640564, + -0.05564483627676964, + -0.012460014782845974, + -0.04235326498746872, + -0.031779102981090546, + -0.02860279753804207, + 0.03113676607608795, + -0.14528119564056396, + -0.04616281017661095, + 0.011066212318837643, + -0.07963783293962479, + -0.06331659108400345, + -1.2707781263680485e-35, + 0.009693032130599022, + 0.016122715547680855, + -0.024956028908491135, + -0.027081798762083054, + 0.004826833494007587, + 0.03614683821797371, + -0.030983729287981987, + 0.040669433772563934, + 0.0382830873131752, + 0.03530900925397873, + 0.058649782091379166, + 0.012177850119769573, + -0.032096609473228455, + -0.04165719822049141, + -0.025707349181175232, + 0.07849346101284027, + 0.013245588168501854, + -0.032887764275074005, + -0.012594918720424175, + -0.022561464458703995, + -0.09789493680000305, + -0.0293936375528574, + -0.06365323811769485, + 0.07800983637571335, + -0.08182892948389053, + 0.059226907789707184, + -0.014561905525624752, + -0.032835014164447784, + 0.029739985242486, + 0.0697329118847847, + -0.014694690704345703, + -0.04123236611485481, + -0.02953224815428257, + 0.057733114808797836, + -0.085785411298275, + 0.005161574576050043, + 0.05626531317830086, + -0.025549931451678276, + 0.039397407323122025, + -0.08653482049703598, + 0.0017188155325129628, + 0.00816215667873621, + -0.0037419265136122704, + 0.03212157264351845, + -0.012580018490552902, + 0.04386027529835701, + 0.06725020706653595, + -0.04481972008943558, + -0.010207721963524818, + 0.026103481650352478, + -0.019504519179463387, + -0.025309763848781586, + 0.02819226123392582, + 0.02582497149705887, + -0.046799302101135254, + -0.03483095020055771, + -0.08661989867687225, + 0.014690951444208622, + 0.08865419030189514, + 0.05060267448425293, + -0.04300057142972946, + 0.02804425172507763, + 0.01439166534692049, + -0.02315477654337883, + -0.04418820142745972, + -0.0004314255202189088, + 0.07313935458660126, + -0.023718630895018578, + 0.03515010327100754, + 0.045436497777700424, + 0.055236879736185074, + 0.08086899667978287, + 0.012286916375160217, + 0.00808444432914257, + -0.04848450794816017, + -0.02350899763405323, + -0.025806453078985214, + 0.001196337747387588, + -0.031016239896416664, + 0.0685371682047844, + -0.005291274283081293, + 0.0652443915605545, + 0.012136688455939293, + 0.053427163511514664, + 0.005226538982242346, + 0.0025226669386029243, + 0.036187440156936646, + 0.05407751724123955, + -0.05424434691667557, + -0.02789056859910488, + -0.05849025771021843, + 0.04156162962317467, + -0.0008817106136120856, + -0.0098011065274477, + -0.016267947852611542, + -1.699466523064075e-08, + -0.02522074431180954, + -0.023064110428094864, + 0.010863183066248894, + -0.0755547434091568, + -0.03862946107983589, + -0.08353359252214432, + -0.007203368470072746, + 0.009314852766692638, + -0.0399198904633522, + -0.02842446230351925, + 0.060946591198444366, + -0.038079436868429184, + -0.11228694021701813, + -0.026226181536912918, + 0.07046624273061752, + 0.07469435036182404, + -0.08474184572696686, + 0.045451145619153976, + 0.022152863442897797, + -0.02048538252711296, + 0.019067220389842987, + 0.0318157859146595, + 0.1124860867857933, + 0.06621914356946945, + -0.0006282234680838883, + 0.028690507635474205, + -0.0677935928106308, + -0.03884611278772354, + 0.11742708832025528, + 0.05774473398923874, + 0.05906476825475693, + 0.04028681293129921, + 0.09986693412065506, + 0.0471852645277977, + -0.048489946871995926, + -0.020077958703041077, + -0.06415944546461105, + -0.0202389657497406, + -0.005918939132243395, + 0.08061536401510239, + -0.01451841276139021, + -0.07586745172739029, + 0.00631284061819315, + -0.06759315729141235, + 0.006470109801739454, + 0.010332978330552578, + -0.02343721315264702, + -0.030779190361499786, + -0.10526283085346222, + -0.07580368220806122, + -0.04148375615477562, + -0.006394502706825733, + 0.005149090196937323, + 0.16582328081130981, + 0.04499928280711174, + -0.09482517838478088, + -0.04073331505060196, + 0.036337997764348984, + 0.03260611742734909, + 0.008427356369793415, + 0.08390456438064575, + 0.02904808148741722, + 0.007195733487606049, + 0.017914624884724617 + ], + "cube-focus-bold||augmented reality,ar,virual reality,vr,3d,scan": [ + 0.008200503885746002, + -0.06830107420682907, + -0.1064680889248848, + 0.02201070636510849, + -0.003862143959850073, + -0.06906397640705109, + 0.0425381138920784, + -0.06676847487688065, + 0.003466674592345953, + 0.01978040300309658, + -0.04422155022621155, + -0.005354292690753937, + -0.015502127818763256, + -0.004564051516354084, + -0.012636158615350723, + 0.01897718571126461, + 0.05113251134753227, + 0.032452620565891266, + 0.022561823949217796, + 0.07295747846364975, + 0.025845445692539215, + -0.011861972510814667, + -0.009447726421058178, + -0.027886006981134415, + 0.0339476652443409, + 0.07971349358558655, + 0.00915070902556181, + -0.0421733520925045, + -0.03467802703380585, + -0.05813439562916756, + -0.045608095824718475, + 0.012022684328258038, + 0.05040035396814346, + 0.007870431058108807, + 0.010223107412457466, + -0.0309765487909317, + -0.07541580498218536, + -0.05895671620965004, + -0.10416777431964874, + -0.010453848168253899, + -0.015995509922504425, + 0.05453413724899292, + 0.019323639571666718, + -0.012653595767915249, + 0.029046060517430305, + -0.003473827848210931, + -0.019649995490908623, + 0.0026179044507443905, + 0.054049089550971985, + 0.012935193255543709, + -0.12022337317466736, + -0.1686682403087616, + -0.02279997058212757, + 0.0024561183527112007, + -0.005819391924887896, + 0.07523984462022781, + -0.060448721051216125, + -0.06559209525585175, + 0.04733150452375412, + -0.0219747144728899, + 0.04984389245510101, + 0.06202543154358864, + 0.0283757783472538, + 0.02753501757979393, + 0.02479739673435688, + 0.0015044327592477202, + 0.01651163212954998, + -0.05835543945431709, + -0.048273563385009766, + -0.03417646139860153, + -0.04914462938904762, + 0.07072100043296814, + -0.005134894512593746, + -0.10624093562364578, + 0.04323798045516014, + -0.006390852387994528, + -0.024734806269407272, + -0.051823727786540985, + 0.02008618786931038, + -0.025547418743371964, + 0.05964312329888344, + -0.013461207039654255, + -0.09843967854976654, + 0.013088101521134377, + -0.02758640982210636, + 0.10009927302598953, + -0.09530052542686462, + -0.043206848204135895, + -0.04145543649792671, + -0.07615075260400772, + 0.009248348884284496, + -0.08076374977827072, + -0.0817277580499649, + 0.02249005064368248, + 0.012949907220900059, + -0.06964294612407684, + 0.09624835848808289, + -0.06360208988189697, + -0.011485142633318901, + 0.05060022696852684, + 0.08972402662038803, + -0.07791975885629654, + 0.054724905639886856, + 0.00033209097455255687, + -0.042320672422647476, + -0.012965820729732513, + 0.05678645148873329, + -0.025462070479989052, + -0.044185392558574677, + 0.018564345315098763, + 0.004901796579360962, + -0.06314079463481903, + -0.023271653801202774, + -0.09050849825143814, + -0.007409128360450268, + 0.049684472382068634, + -0.0117399413138628, + -0.0021567281801253557, + 0.11333976686000824, + -0.02010127529501915, + -0.014433163218200207, + -0.016534091904759407, + 0.006041780114173889, + -0.00993051566183567, + 0.008440874516963959, + -0.043404288589954376, + 0.04675975441932678, + -2.4399040126957344e-33, + 0.009508547373116016, + 0.07031802833080292, + -0.011482723988592625, + 0.09651438146829605, + 0.07114722579717636, + -0.010532996617257595, + -0.011380087584257126, + -0.004583366680890322, + -0.006422489415854216, + -0.019148483872413635, + 3.2121763069881126e-05, + 0.06252973526716232, + 0.00572839705273509, + 0.07601949572563171, + 0.1041085422039032, + -0.028528517112135887, + -0.003477770369499922, + 0.07821012288331985, + -0.13076220452785492, + 0.06026849523186684, + -0.011056444607675076, + 0.018035590648651123, + -0.01703234575688839, + 0.04413127154111862, + -0.02357415296137333, + 0.038845401257276535, + -0.06537488102912903, + -0.031466852873563766, + -0.055186595767736435, + 0.01597505435347557, + 0.011343373917043209, + 0.13097383081912994, + -0.01996217481791973, + -0.049819719046354294, + -0.09228676557540894, + 0.0412210077047348, + -0.02724810689687729, + -0.01279063243418932, + -0.05534457415342331, + 0.009392423555254936, + 0.0036514168605208397, + 0.06999240815639496, + -0.005920806434005499, + -0.020816300064325333, + 0.006045600865036249, + 0.1230478286743164, + -0.0003738086670637131, + 0.08202952146530151, + -0.04750964790582657, + 0.06259826570749283, + 0.0065641156397759914, + -0.025305047631263733, + -0.10972266644239426, + -0.10412226617336273, + -0.021686313673853874, + -0.04216810688376427, + 0.009772436693310738, + 0.07085622102022171, + 0.04081491380929947, + 0.0007036492461338639, + 0.02119385451078415, + -0.05690281093120575, + 0.0326872356235981, + 0.03470360115170479, + -0.14474651217460632, + 0.025229448452591896, + 0.011635823175311089, + 0.061584360897541046, + 0.12139677256345749, + 0.10060422867536545, + -0.07619939744472504, + 0.04497084021568298, + -0.0036207481753081083, + 0.00032157410169020295, + 0.01799781434237957, + -0.008287446573376656, + -0.054156411439180374, + -0.05478912964463234, + 0.05615159869194031, + -0.03688760846853256, + -0.11055880784988403, + 0.029328880831599236, + 0.003393151331692934, + 0.0001196859375340864, + -0.0814138799905777, + -0.01077317912131548, + -0.07170691341161728, + -0.04557504877448082, + -0.03677471727132797, + 0.0072505176067352295, + -0.0879128947854042, + 0.07138269394636154, + 0.013673679903149605, + -0.06082207337021828, + -0.06597647070884705, + -2.1380081811410293e-34, + 0.0225205197930336, + -0.03199265897274017, + -0.029485300183296204, + 0.030560199171304703, + -0.006499231792986393, + 0.02536783367395401, + 0.04154319316148758, + 0.0196150541305542, + 0.0505809560418129, + 0.001346323755569756, + 0.008452706038951874, + 0.024077143520116806, + 0.049649838358163834, + 0.053179364651441574, + -0.012208767235279083, + -0.011928832158446312, + -0.0040038879960775375, + -0.030391566455364227, + -0.03872458636760712, + 0.03695201128721237, + 0.053933922201395035, + -0.048508115112781525, + -0.04145169258117676, + -0.006325241643935442, + -0.011280913837254047, + 0.05624447390437126, + -0.0031252324115484953, + -0.07566904276609421, + 0.030524810776114464, + 0.010318408720195293, + -0.025565385818481445, + -0.025128599256277084, + 0.014617727138102055, + 0.06641416996717453, + -0.028696469962596893, + 0.08660966902971268, + 0.061434730887413025, + -0.04040706530213356, + -0.02911703661084175, + -0.0754675641655922, + -0.001958410022780299, + 0.041541922837495804, + -0.001713040517643094, + -0.0036814918275922537, + -0.007184539921581745, + 0.059718094766139984, + 0.04150428995490074, + 0.021123459562659264, + -0.030397359281778336, + 0.008350021205842495, + -0.037947360426187515, + -0.05861203745007515, + -0.006247616373002529, + -0.00694801053032279, + -0.08341559022665024, + -0.0392480231821537, + -0.10287439078092575, + -0.03694409877061844, + 0.032437656074762344, + 0.054896119982004166, + 0.019740715622901917, + 0.049091991037130356, + -0.04955688491463661, + 0.0410723015666008, + -0.006937175523489714, + 0.027138203382492065, + 0.06542160362005234, + 0.014534340240061283, + 0.03931380435824394, + 0.016193052753806114, + 0.06364218890666962, + 0.04129420593380928, + 0.044104255735874176, + 0.03190046176314354, + 0.003052542917430401, + 3.20039680445916e-06, + 0.07839726656675339, + 0.03455693647265434, + 0.013400777243077755, + 0.01215325016528368, + 0.0053599863313138485, + -0.004363900516182184, + 0.026125600561499596, + 0.11770201474428177, + -0.00635778671130538, + 0.08875250071287155, + -0.002006231341511011, + -0.026923075318336487, + -0.05607933923602104, + 0.045283153653144836, + -0.05545166879892349, + 0.030296524986624718, + -0.01547297928482294, + -0.016381019726395607, + -0.017034173011779785, + -2.0285735757852308e-08, + -0.022233832627534866, + 0.057157620787620544, + -0.030238941311836243, + -0.02971547096967697, + -0.007507108151912689, + -0.07286000996828079, + 0.02344607561826706, + 0.040743619203567505, + 0.0031779082491993904, + -0.056214675307273865, + -0.026996636763215065, + -0.06193547323346138, + -0.016222886741161346, + 0.05589611083269119, + 0.11908731609582901, + 0.07088115811347961, + -0.08618999272584915, + 0.03047953173518181, + -0.005719983950257301, + 0.010330813936889172, + 0.008086211048066616, + 0.06691578775644302, + 0.06203967705368996, + -0.035891205072402954, + -0.006841523572802544, + 0.04712561145424843, + -0.09138957411050797, + 0.027738381177186966, + 0.10302526503801346, + 0.07075566798448563, + 0.0492006354033947, + 0.039836540818214417, + 0.014618033543229103, + -0.020293818786740303, + -0.14661316573619843, + -0.03139806538820267, + 0.00028865260537713766, + 0.00829057302325964, + -0.0034945940133184195, + 0.006793131120502949, + -0.032926708459854126, + -0.03330469876527786, + 0.016408909112215042, + -0.047805774956941605, + -0.031543485820293427, + -0.003937707282602787, + -0.014929440803825855, + -0.10973866283893585, + -0.001668361946940422, + -0.051191382110118866, + -0.08574803173542023, + 0.027254920452833176, + 0.009705611504614353, + 0.10983822494745255, + 0.029902014881372452, + -0.0088758934289217, + 0.10785083472728729, + 0.0026824730448424816, + -0.03992974013090134, + 0.023467745631933212, + 0.11777335405349731, + -0.041800711303949356, + -0.05310994014143944, + 0.11290737241506577 + ], + "cube-transparent-bold||square,box,3d,volume,blocks,necker": [ + 0.041898105293512344, + -0.04518920183181763, + -0.07967335730791092, + 0.04236315190792084, + 0.009943445213139057, + -0.042658090591430664, + 0.00874965451657772, + -0.07250497490167618, + 0.025798482820391655, + -0.04129935801029205, + -0.03448616713285446, + 0.00972733274102211, + -0.005215144716203213, + 0.00843749474734068, + -0.01376083679497242, + 0.009318076074123383, + 0.03661460429430008, + 0.05007519945502281, + -0.016921164467930794, + 0.03837711736559868, + 0.008799940347671509, + -0.02945392020046711, + -0.0007491424330510199, + -0.0011376821203157306, + 0.023301633074879646, + 0.014396611601114273, + 0.05698339641094208, + 0.04782823100686073, + 0.05267427861690521, + -0.08206398040056229, + 0.04330531135201454, + -0.0796511098742485, + 0.10421974211931229, + 0.03244372457265854, + -0.004846200346946716, + -0.02919311262667179, + -0.04344558343291283, + -0.01229796651750803, + -0.036219868808984756, + 0.023819154128432274, + 0.03154909610748291, + -0.00975824799388647, + 0.029515370726585388, + 0.013186263851821423, + -0.03873613849282265, + -0.009054066613316536, + -0.07898714393377304, + 0.005291103385388851, + -0.02722798101603985, + -0.04957570135593414, + 0.009682610630989075, + -0.18246155977249146, + -0.04774077236652374, + 0.03281502053141594, + -0.011070855893194675, + 0.018557287752628326, + -0.004721795674413443, + -0.009945790283381939, + 0.043282341212034225, + -0.040640752762556076, + 0.022435523569583893, + 0.0008688515517860651, + 0.0325651690363884, + 0.04644070938229561, + 0.04467596113681793, + 0.07555727660655975, + -0.05585194379091263, + 0.01636783964931965, + -0.08288513869047165, + 0.01876920834183693, + 0.0461181215941906, + 0.0724041536450386, + -0.015712788328528404, + -0.026779314503073692, + 0.049268271774053574, + -0.08677133917808533, + -0.012677451595664024, + -0.014531193301081657, + -0.07620313763618469, + 0.08416438847780228, + -0.08409794420003891, + -0.02369755506515503, + -0.1302727311849594, + 0.025136798620224, + -0.07062411308288574, + 0.03667806461453438, + -0.09826599806547165, + -0.0009601968922652304, + -0.14848779141902924, + -0.03167254105210304, + -0.012073401361703873, + 0.06943745166063309, + -0.011817239224910736, + 0.019241193309426308, + -0.020301900804042816, + -0.03627404570579529, + 0.07923319935798645, + -0.025269318372011185, + 0.0364232063293457, + 0.0273848045617342, + 0.028764599934220314, + -0.08043592423200607, + 0.0310298390686512, + 0.010067160241305828, + -0.027918819338083267, + -0.06816763430833817, + 0.059487804770469666, + -0.001560100237838924, + -0.027116594836115837, + 0.025124166160821915, + -0.024203911423683167, + -0.11481530964374542, + -0.0304621122777462, + -0.04078739881515503, + -0.008912252262234688, + -0.02451975829899311, + -0.02029775083065033, + 0.004203218501061201, + 0.16023960709571838, + 0.0019069311674684286, + 0.05117488652467728, + 0.010856167413294315, + 0.0038558414671570063, + -0.07720918953418732, + 0.00421992689371109, + 0.009599662385880947, + 0.007534673437476158, + -3.0751999345976397e-33, + 0.02941974066197872, + 0.03019716590642929, + -0.04883773997426033, + 0.08117014169692993, + 0.10468924790620804, + 0.06653809547424316, + 0.00961553305387497, + -0.078799307346344, + 0.013134421780705452, + 0.06445816904306412, + -0.014511508867144585, + 0.04463775455951691, + -0.05692432075738907, + 0.058479227125644684, + 0.05305642634630203, + -0.038646817207336426, + 0.017560215666890144, + 0.0550210140645504, + -0.11310206353664398, + -0.009481862187385559, + -0.023597650229930878, + 0.049322374165058136, + -0.02442830428481102, + 0.10585480183362961, + -0.009157274849712849, + -0.0023927881848067045, + -0.014214148744940758, + -0.07862184196710587, + -0.031940534710884094, + 0.020361226052045822, + 0.044352009892463684, + 0.051497045904397964, + 0.0248888973146677, + -0.005799902603030205, + -0.04315881058573723, + 0.06890323758125305, + -0.034955453127622604, + -0.028172802180051804, + 0.01695709489285946, + 0.017481474205851555, + -0.03248834237456322, + -0.06860047578811646, + 0.04134518280625343, + -0.03299640491604805, + 0.008219684474170208, + 0.09570085257291794, + -4.8137750127352774e-05, + -0.043300580233335495, + -0.01841098815202713, + -0.0009219971252605319, + 0.026064589619636536, + 0.013846097514033318, + -0.05844559520483017, + -0.07275305688381195, + 0.044080767780542374, + -0.09333223104476929, + -0.022989807650446892, + 0.1100064367055893, + 0.0602533221244812, + 0.02875364199280739, + 0.07339758425951004, + 2.644499545567669e-05, + 0.043644681572914124, + -0.048577096313238144, + -0.06570766121149063, + 0.10209725797176361, + -0.026566721498966217, + -0.014564928598701954, + 0.029980886727571487, + -0.03456076607108116, + -0.05926772579550743, + 0.036752503365278244, + -0.0074136280454695225, + 0.09784510731697083, + -0.017361881211400032, + 0.012823067605495453, + -0.031893540173769, + -0.030167551711201668, + 0.0906735509634018, + -0.07393336296081543, + -0.13003946840763092, + 0.051751673221588135, + -0.0720081776380539, + -0.05097270756959915, + -0.09015146642923355, + -0.008549864403903484, + -0.042227357625961304, + -0.019891247153282166, + 0.009130947291851044, + 0.0360775962471962, + -0.09813962131738663, + 0.010495434515178204, + -0.010831767693161964, + -0.028473922982811928, + -0.08237393945455551, + 3.879024369360525e-34, + 0.006678071804344654, + 0.02440355159342289, + -0.0076755741611123085, + 0.030497532337903976, + 0.04714415222406387, + 0.03448459506034851, + 0.0032463516108691692, + 0.07252801209688187, + 0.07573053985834122, + 0.02526627667248249, + 0.09834970533847809, + 0.04021301120519638, + -0.007542111910879612, + -0.01922394335269928, + -0.01621856726706028, + 0.07462705671787262, + 0.02555803209543228, + -0.009438348934054375, + -0.03065938875079155, + -0.03559466078877449, + -0.05679086595773697, + 0.005231966730207205, + -0.06298273801803589, + 0.039669718593358994, + -0.04325916990637779, + 0.022835388779640198, + 0.010638716630637646, + -0.044670138508081436, + 0.05790069326758385, + 0.10232505202293396, + -0.03670276328921318, + -0.033344902098178864, + 0.011844363063573837, + 0.04999685287475586, + -0.0684007778763771, + 0.02277781069278717, + 0.07841453701257706, + -0.028372978791594505, + -0.029148975387215614, + -0.08697440475225449, + -0.026658473536372185, + 0.007349622435867786, + -0.026118213310837746, + 0.019305936992168427, + -0.030390547588467598, + 0.04096929356455803, + -0.008251061663031578, + -0.044876400381326675, + -0.017473129555583, + 0.009478009305894375, + -0.00039483443833887577, + -0.010597901418805122, + 0.06510810554027557, + 0.016539115458726883, + -0.04582846164703369, + -0.014982945285737514, + -0.038292016834020615, + 0.011715616099536419, + 0.08338161557912827, + 0.05656092241406441, + -0.016043346375226974, + 0.052588317543268204, + -0.013636462390422821, + -0.03253447636961937, + -0.0466165617108345, + 0.02254362218081951, + 0.053837090730667114, + -0.01901092752814293, + 0.028095686808228493, + 0.037629615515470505, + 0.03617704659700394, + 0.05884978175163269, + -0.021864531561732292, + 0.011606280691921711, + 0.007942485623061657, + -0.011696803383529186, + -0.020809795707464218, + -0.0089188814163208, + -0.05629611015319824, + 0.09796599298715591, + -0.006961160339415073, + 0.10062237828969955, + 0.030126025900244713, + 0.03677375987172127, + 0.053832780569791794, + -0.03466520458459854, + 0.027109799906611443, + 0.036433879286050797, + -0.07219133526086807, + -0.012234587222337723, + -0.055488236248493195, + 0.04091012105345726, + -0.0019024134380742908, + 0.03114292211830616, + 0.0024743559770286083, + -2.0793995858525705e-08, + -0.0210387222468853, + -0.00868380255997181, + 0.012419039383530617, + -0.09587590396404266, + -0.01899731159210205, + -0.08021248877048492, + 0.008001537062227726, + -0.056027602404356, + -0.03914976119995117, + -0.06344112753868103, + 0.0237710103392601, + -0.03232467174530029, + -0.10573762655258179, + 0.00365315075032413, + 0.0738300010561943, + 0.06546256691217422, + -0.11573526263237, + 0.04990972578525543, + 0.020524946972727776, + -0.04457332566380501, + -0.01450428832322359, + 0.04264112189412117, + 0.08432051539421082, + 0.029467564076185226, + 0.01025979034602642, + 0.06394264847040176, + -0.05950835719704628, + 0.038831647485494614, + 0.10243374109268188, + 0.07483735680580139, + 0.042684365063905716, + 0.05452965945005417, + 0.08148323744535446, + -0.0006032477249391377, + -0.07276589423418045, + 0.021200338378548622, + -0.07870452851057053, + -0.04550258070230484, + -0.05394903942942619, + 0.06802217662334442, + 0.03341582044959068, + -0.10529815405607224, + 0.0026234223041683435, + -0.0517391599714756, + 0.013647569343447685, + -0.001194484531879425, + -0.007833556272089481, + -0.037723202258348465, + -0.1293606013059616, + -0.05491359904408455, + -0.015443960204720497, + -0.05270199850201607, + 0.005063692573457956, + 0.1297241598367691, + 0.05489812418818474, + -0.0839085727930069, + -0.017428914085030556, + 0.050265390425920486, + -0.006531152408570051, + 0.0047212159261107445, + 0.1050996333360672, + 0.011431642808020115, + 0.05562252923846245, + 0.030332345515489578 + ], + "currency-btc-bold||money,btc,bitcoin,crypto,cryptocurrency,payment,paying,purchase": [ + 0.0011081383563578129, + -0.02598257176578045, + -0.08694305270910263, + 0.047034282237291336, + 0.01843177154660225, + -0.04569004103541374, + 0.108498714864254, + -0.05170075595378876, + -9.982665505958721e-05, + -0.04295249283313751, + -0.001682566711679101, + -0.09158173203468323, + 0.032415810972452164, + 0.02166658639907837, + 0.018155517056584358, + 0.006442869547754526, + -0.005694317631423473, + 0.017273401841521263, + -0.018791919574141502, + 0.09049670398235321, + -0.011276902630925179, + 0.004271764773875475, + -0.02535833790898323, + 0.08170895278453827, + 0.016170375049114227, + 0.043063923716545105, + 0.08358433097600937, + -0.024143671616911888, + 0.014527136459946632, + -0.062268879264593124, + -0.03811047598719597, + 0.022496024146676064, + 0.0983310416340828, + -0.03476111590862274, + 0.04257548600435257, + -0.06946107745170593, + 0.043822161853313446, + -0.02273903414607048, + -0.025788376107811928, + 0.030887683853507042, + -0.0077795903198421, + -0.1269218474626541, + -0.010283417999744415, + -0.02771269530057907, + -0.0019841690082103014, + 0.022462710738182068, + -0.007539759390056133, + 0.03911606967449188, + -0.0013560426887124777, + -0.00863844808191061, + 0.0520494282245636, + -0.08882056921720505, + -0.170366108417511, + 0.10736021399497986, + -0.04417802020907402, + 0.0004189926548860967, + -0.056828007102012634, + -0.018759621307253838, + 0.07941044867038727, + -0.06348121911287308, + -0.0171064306050539, + 0.04794704169034958, + 0.016648976132273674, + 0.08348706364631653, + 0.04723677411675453, + 0.03867698460817337, + -0.033272627741098404, + 0.030125748366117477, + -0.07075165957212448, + 0.051407694816589355, + 0.0681694820523262, + -0.05514908954501152, + 0.011549274437129498, + -0.026945196092128754, + -0.04046705365180969, + -0.0034369572531431913, + 0.11494021117687225, + -0.02138195000588894, + -0.056287821382284164, + -0.0727824941277504, + -0.051912568509578705, + -0.05349116399884224, + -0.026924269273877144, + -0.06528964638710022, + 0.029025450348854065, + 0.0392911359667778, + -0.021054629236459732, + -0.05186266824603081, + -0.03201362490653992, + -0.04564863443374634, + -0.019312659278512, + 0.025881167501211166, + 0.07135321944952011, + 0.0018509565852582455, + 0.014308620244264603, + 0.02195126749575138, + 0.07149162888526917, + -0.023622555658221245, + 0.03215634077787399, + 0.04810511693358421, + 0.057233091443777084, + 0.058035578578710556, + 0.038963232189416885, + 0.03228212893009186, + 0.027366522699594498, + -0.028783708810806274, + -0.020575305446982384, + 0.026567041873931885, + 0.05753355473279953, + 0.0319841243326664, + -0.08178672194480896, + -0.03549673408269882, + -0.03015556000173092, + -0.040091369301080704, + -0.05249781534075737, + 0.010003422386944294, + -0.0854048803448677, + -0.05400793254375458, + 0.09429837018251419, + 0.07501155138015747, + 0.008106629364192486, + 0.007598479278385639, + -0.05141802877187729, + -0.05194023251533508, + -0.05741557106375694, + -0.06452503055334091, + 0.06160879135131836, + 1.5555105522790167e-34, + -0.020813792943954468, + -0.052950531244277954, + -0.021751554682850838, + -0.021357975900173187, + -0.0631452277302742, + 0.09926830977201462, + -0.029480699449777603, + 0.029633933678269386, + -0.05473831295967102, + 0.032586682587862015, + 0.034926462918519974, + 0.017399979755282402, + 0.03152388706803322, + 0.14526402950286865, + 0.011474181897938251, + -0.029410282149910927, + 0.016934150829911232, + -0.0359983816742897, + 0.036265790462493896, + 0.06641075760126114, + -0.015025590546429157, + 0.08937925100326538, + 0.018893027678132057, + -0.010328797623515129, + -0.008334835059940815, + -0.005536133423447609, + 0.02212797850370407, + -0.0004431958368513733, + 0.048345133662223816, + 0.007604613900184631, + 0.0638616532087326, + 0.08433954417705536, + 0.03175421059131622, + -0.026639292016625404, + -0.07845547050237656, + 0.054232824593782425, + 0.05311534181237221, + -0.004030818585306406, + 0.0072293151170015335, + -0.06856147944927216, + -0.09229013323783875, + -0.04289119690656662, + -0.10794314742088318, + 0.000948993896599859, + 0.004938560072332621, + 0.14527539908885956, + 0.01727714017033577, + -0.05614892393350601, + 0.0216213408857584, + -0.0024195192381739616, + -0.06193116679787636, + -0.013322037644684315, + -0.07349862903356552, + -0.07722364366054535, + 0.018830645829439163, + -0.11322519928216934, + -0.045021411031484604, + 0.040937043726444244, + -0.0705893486738205, + -0.0313846692442894, + -0.016174981370568275, + -0.0204792283475399, + 0.07952464371919632, + -0.06848351657390594, + -0.090277299284935, + 0.10362140089273453, + -0.0646609365940094, + -0.017496684566140175, + 0.008520171046257019, + 9.889733337331563e-05, + -0.09808952361345291, + 0.04255843162536621, + 0.11696252971887589, + 0.08839081227779388, + 0.05693104863166809, + 0.04481426998972893, + 0.026251880452036858, + -0.04555245861411095, + 0.009504932910203934, + 0.07201551645994186, + -0.11007768660783768, + 0.0070077478885650635, + 0.063435859978199, + 0.12450632452964783, + 0.017279941588640213, + 0.06742402911186218, + 0.011901444755494595, + -0.11496888101100922, + 0.0274666640907526, + -0.0137854078784585, + -0.05556714907288551, + -0.05044209212064743, + 0.020605698227882385, + -0.0343884602189064, + -0.03514629602432251, + -4.003791798934283e-33, + 0.008479250594973564, + 0.03383960202336311, + -0.08504170924425125, + 0.036133017390966415, + -0.03418868035078049, + 0.017189055681228638, + -0.04940023645758629, + -0.017629675567150116, + 0.06852428615093231, + 0.06427190452814102, + 0.02748158574104309, + -0.04682792350649834, + -0.018301645293831825, + -0.03345022350549698, + -0.005916718393564224, + -0.056711744517087936, + -0.005678070709109306, + -0.0004010882694274187, + 0.015140454284846783, + 0.04053408280014992, + -0.08672110736370087, + -0.03500622510910034, + -0.06787645071744919, + -0.01876830868422985, + 0.03066096268594265, + 0.03986603021621704, + -0.03518661856651306, + -0.07093863934278488, + 0.023769685998558998, + 0.025417201220989227, + -0.056467123329639435, + -0.01757330819964409, + 0.0587010383605957, + -0.039211660623550415, + -0.058074403554201126, + 0.03684796392917633, + 0.020385192707180977, + -0.0745096281170845, + 0.06012149155139923, + -0.055839501321315765, + 8.705849177204072e-05, + -0.023666225373744965, + -0.004888251889497042, + 0.04030647873878479, + -0.016543908044695854, + -0.11870500445365906, + -0.03533099219202995, + -0.011758890934288502, + 0.03564419224858284, + 0.02383645437657833, + 0.044865068048238754, + -0.018355412408709526, + 0.01159052923321724, + -0.05845247209072113, + -0.06930296123027802, + 0.05686132609844208, + 0.03094167821109295, + 0.00979546643793583, + 0.03856764733791351, + 0.03823168948292732, + -0.023017393425107002, + 0.09005307406187057, + 0.02841947041451931, + 0.08195073157548904, + -0.029078088700771332, + -0.005385123193264008, + 0.025284109637141228, + -0.004876565188169479, + 0.06604240834712982, + -0.07957624644041061, + -0.04604990407824516, + -0.006502792704850435, + -0.0028021165635436773, + -0.004724882077425718, + 0.01432855986058712, + -0.03792700916528702, + 0.04205348715186119, + -0.01989520713686943, + 0.03714195638895035, + 0.059441711753606796, + 0.05250375717878342, + 0.04104103893041611, + 0.015438918955624104, + 0.014112638309597969, + -0.047057732939720154, + 0.00904632918536663, + -0.02594863623380661, + -0.007272632326930761, + -0.011602625250816345, + -0.09637647122144699, + -0.06535978615283966, + 0.03011368401348591, + 0.007076341193169355, + 0.02291477657854557, + -0.040733251720666885, + -2.8654376649228652e-08, + 0.006190400570631027, + -0.06365785002708435, + -0.014494032599031925, + 0.006817811634391546, + 0.08324473351240158, + -0.043477509170770645, + -0.0006917213904671371, + -0.062139712274074554, + -0.07216846197843552, + 0.09223338961601257, + 0.01396897528320551, + 0.012648488394916058, + -0.12546217441558838, + -0.08820116519927979, + -0.013027137145400047, + 0.014352593570947647, + -0.041887734085321426, + -0.01437077671289444, + -0.009623019024729729, + -0.04007748141884804, + 0.02301768958568573, + 0.017430730164051056, + -0.0029236667323857546, + -0.04168133810162544, + 0.05167486518621445, + -0.012174856849014759, + 0.026374708861112595, + 0.09160807728767395, + 0.04658252373337746, + 0.016804473474621773, + 0.016916509717702866, + 0.02238715998828411, + 0.001316757290624082, + 0.0023673810064792633, + -0.006437352858483791, + -0.045333873480558395, + -0.005167354363948107, + 0.04741451516747475, + -0.03442072868347168, + 0.07414332777261734, + -0.021738871932029724, + -0.04469595476984978, + -0.06749670952558517, + -0.05569186806678772, + 0.026803402230143547, + -0.013047710992395878, + -0.05935024470090866, + 0.015158725902438164, + -0.014531317166984081, + -0.13400089740753174, + -0.08354174345731735, + 0.024982193484902382, + 0.08493013679981232, + 0.038852617144584656, + 0.007806931622326374, + -0.011614145711064339, + 0.010693731717765331, + 0.02201687917113304, + -0.005266337655484676, + -0.000898621161468327, + 0.09362097829580307, + -0.05557209253311157, + 0.05432302504777908, + -0.0059763528406620026 + ], + "currency-circle-dollar-bold||money,usd,payment,paying,purchase": [ + -0.005770300980657339, + 0.04272599145770073, + -0.0975051298737526, + 0.03319322317838669, + 0.01458851620554924, + -0.10246994346380234, + 0.08100976049900055, + -0.006980319041758776, + 0.04638763517141342, + -0.030113914981484413, + 0.015438791364431381, + -0.06804227828979492, + 0.030291244387626648, + 0.024846531450748444, + 0.03252055495977402, + -0.04189977049827576, + -0.04131912812590599, + 0.05454511195421219, + 0.007792888209223747, + 0.027084607630968094, + -0.004963365383446217, + -0.024764252826571465, + -0.023584291338920593, + 0.07166411727666855, + 0.0442814864218235, + 0.04018857330083847, + 0.07332192361354828, + -0.03897782415151596, + 0.013726295903325081, + -0.01688229665160179, + -0.06612809747457504, + 0.02761339582502842, + 0.04501688480377197, + -0.02493763528764248, + 0.007998830638825893, + -0.03219246119260788, + 0.013109687715768814, + 0.0053785983473062515, + -0.03179147467017174, + 0.007161709014326334, + 0.012571636587381363, + -0.08380609005689621, + 0.04190206155180931, + -0.0386308915913105, + -0.03729809820652008, + 0.020197227597236633, + -0.035417839884757996, + 0.1100105345249176, + 0.006597761996090412, + 0.062327779829502106, + 0.057519618421792984, + -0.0851566419005394, + -0.11103715002536774, + 0.03566403687000275, + 0.045488856732845306, + 0.06379925459623337, + 0.023380925878882408, + -0.022251812741160393, + 0.06199163571000099, + -0.05189173296093941, + -0.010261476039886475, + 0.020280858501791954, + 0.01630810834467411, + 0.03183715417981148, + 0.017458364367485046, + -0.0010404440108686686, + -0.04033716768026352, + -0.01222433801740408, + -0.0918886661529541, + 0.003489816328510642, + 0.06108758971095085, + -0.01853179559111595, + -0.007521071936935186, + -0.06269370019435883, + -0.02416239120066166, + 0.043306369334459305, + 0.13171131908893585, + -0.011604636907577515, + -0.04404613375663757, + -0.06430978327989578, + -0.004803122952580452, + -0.02921641431748867, + 0.013555697165429592, + -0.05680449679493904, + 0.0692581906914711, + 0.060608163475990295, + 0.0343317836523056, + -0.07469923794269562, + 0.03523848578333855, + -0.06344939768314362, + -0.0067222751677036285, + 0.025266585871577263, + 0.02004210837185383, + -0.024404019117355347, + -0.01891731657087803, + 0.040260180830955505, + 0.06585642695426941, + -0.01563424989581108, + -0.032835159450769424, + 0.05534688010811806, + 0.10098790377378464, + 0.042829729616642, + 0.07434918731451035, + 0.008802959695458412, + 0.002204360207542777, + -0.020727267488837242, + -0.022754274308681488, + 0.04275527969002724, + 0.011125519871711731, + 0.037955090403556824, + -0.09222814440727234, + -0.028577951714396477, + -0.00762150576338172, + -0.04024001955986023, + -0.07131928950548172, + 0.06233732029795647, + -0.06408685445785522, + -0.07488113641738892, + 0.12532666325569153, + 0.04711184278130531, + 0.010016721673309803, + 0.014633532613515854, + -0.10210202634334564, + -0.034446798264980316, + -0.0847429409623146, + -0.04193742945790291, + 0.06823380291461945, + -3.9890632220604645e-33, + -0.04747318848967552, + 0.05684208869934082, + -0.05215293541550636, + -0.10683539509773254, + -0.07234665751457214, + -0.0034891723189502954, + -0.011494412086904049, + 0.042534735053777695, + -0.015526766888797283, + 0.016270482912659645, + 0.0022158885840326548, + 0.016859887167811394, + 0.018788134679198265, + 0.12456080317497253, + 0.017802013084292412, + -0.014883742667734623, + 0.008597715757787228, + -0.019269704818725586, + 0.0019303642911836505, + 0.04864627122879028, + -0.03666563332080841, + 0.021416136994957924, + -0.02537470869719982, + 0.03018239326775074, + -0.008364946581423283, + 0.02053815685212612, + -0.007033081725239754, + 0.004062879830598831, + 0.054182007908821106, + 0.018341967836022377, + 0.041906457394361496, + -0.001955486834049225, + 0.050297316163778305, + 0.0317453108727932, + -0.04931280389428139, + 0.02505979686975479, + 0.06488730013370514, + -0.018441092222929, + 0.03470660746097565, + -0.00907030701637268, + -0.06875418871641159, + -0.030432485044002533, + -0.06403592228889465, + 0.029927467927336693, + -0.022035477682948112, + 0.1529524177312851, + 0.014756389893591404, + -0.07299163937568665, + 0.0159049890935421, + -0.021478772163391113, + -0.08088921755552292, + -0.00011387254198780283, + -0.06345338374376297, + -0.09442660212516785, + 0.00565359415486455, + -0.09525391459465027, + 0.012471296824514866, + -0.011209516786038876, + -0.06529266387224197, + -0.10057078301906586, + 0.008791519328951836, + -0.02741059474647045, + 0.054693110287189484, + -0.03193195164203644, + -0.09804876893758774, + 0.11038614809513092, + -0.0956929475069046, + -0.018282189965248108, + 0.030812131240963936, + -0.006750806700438261, + -0.0921039953827858, + 0.06535928696393967, + 0.12775443494319916, + 0.10889006406068802, + 0.04424358904361725, + 0.019628874957561493, + 0.09527900069952011, + -0.020435918122529984, + 0.05385385826230049, + 0.05360962450504303, + -0.1193760558962822, + 0.03720371797680855, + 0.02885902114212513, + 0.124176025390625, + 0.07655317336320877, + 0.04487069323658943, + 0.0013475570594891906, + -0.08041783422231674, + 0.05011536553502083, + -0.015178359113633633, + -0.011965049430727959, + -0.029863430187106133, + 0.043317340314388275, + -0.0232839435338974, + -0.0466117300093174, + 1.034061809267227e-33, + -0.013208386488258839, + 0.07468785345554352, + -0.046127766370773315, + 0.055508241057395935, + -0.07534341514110565, + 0.0003584146033972502, + -0.026228047907352448, + 0.020896656438708305, + 0.062094271183013916, + 0.032891497015953064, + -0.048631973564624786, + -0.039614103734493256, + -0.04708428308367729, + -0.014756105840206146, + 0.0838814377784729, + -0.044976651668548584, + 0.03396371379494667, + 0.0238318033516407, + 0.011006666347384453, + 0.05713554099202156, + -0.030582793056964874, + -0.032575711607933044, + -0.03817976638674736, + 0.011405207216739655, + -0.000571996090002358, + 0.03615526854991913, + 0.027570992708206177, + -0.10843122005462646, + -0.05258437618613243, + 0.08797124028205872, + -0.07237204164266586, + -0.06642383337020874, + 0.04708534851670265, + 0.031447507441043854, + -0.06851335614919662, + 0.03219420835375786, + 0.01874791830778122, + -0.04283670336008072, + 0.008746578358113766, + -0.02983670122921467, + -0.03909590095281601, + -0.06032693013548851, + 0.018375826999545097, + 0.04610031470656395, + -0.007696719374507666, + -0.11855477094650269, + 0.017152441665530205, + 0.020962592214345932, + -0.02271486632525921, + -0.015398619696497917, + 0.008324597962200642, + 0.004225773271173239, + 0.016261231154203415, + -0.015330617316067219, + -0.12750647962093353, + 0.08108209818601608, + 0.07339377701282501, + 0.002491847611963749, + 0.024493597447872162, + 0.03296653926372528, + -0.0516531839966774, + 0.033920545130968094, + 0.0017657927237451077, + 0.06072765961289406, + -0.030846916139125824, + 0.011903391219675541, + 0.04805601388216019, + -0.029417995363473892, + 0.05033953860402107, + -0.018753914162516594, + -0.04573868215084076, + 0.039718735963106155, + 0.008445926941931248, + -0.008661811240017414, + 0.027594737708568573, + 0.04634818434715271, + 0.008186787366867065, + -0.013662200421094894, + 0.048243459314107895, + 0.04809248074889183, + 0.005152568221092224, + 0.029518993571400642, + 0.03792959079146385, + 0.005181408487260342, + -0.06000920757651329, + -0.02265257015824318, + -0.05821969732642174, + 0.0010710777714848518, + -0.015286573208868504, + -0.05049014836549759, + -0.07180779427289963, + 0.051383499056100845, + -0.013927011750638485, + 0.007328991778194904, + -0.008235053159296513, + -1.934938076431081e-08, + -0.03632601723074913, + -0.009839316830039024, + -0.009265215136110783, + 0.02658822387456894, + 0.0653393343091011, + -0.06109490618109703, + -0.03704069182276726, + -0.06159636378288269, + -0.08216986805200577, + 0.03974858671426773, + -0.03325653821229935, + 0.006182878743857145, + -0.12486255168914795, + -0.09255465865135193, + -0.05604284256696701, + 0.01735774613916874, + -0.004195657093077898, + 0.030528876930475235, + -0.04489193484187126, + -0.034138113260269165, + 0.013158940710127354, + 0.050977740436792374, + 0.014963844791054726, + -0.06381610035896301, + 0.0010376886930316687, + -0.00439190398901701, + 0.04493093118071556, + 0.14731445908546448, + 0.008662296459078789, + -0.04617711901664734, + -0.024640541523694992, + 0.06115569919347763, + -0.04245902597904205, + 0.00909543875604868, + -0.01919708400964737, + -0.07527744770050049, + -0.0015701864613220096, + 0.05313645303249359, + -0.012234519235789776, + 0.07384401559829712, + 0.0009567216620780528, + -0.03253031522035599, + -0.09092635661363602, + -0.03449895605444908, + 0.06344307214021683, + 0.06768416613340378, + -0.035505492240190506, + -0.033334147185087204, + -0.01816687360405922, + -0.15169313549995422, + -0.043560706079006195, + 0.02705315314233303, + 0.050226062536239624, + 0.056613340973854065, + 0.025709617882966995, + -0.06466356664896011, + 0.027636121958494186, + 0.03284699469804764, + -0.028536375612020493, + 0.037594228982925415, + 0.04767613485455513, + -0.06895022839307785, + 0.026194008067250252, + -0.05149615928530693 + ], + "currency-cny-bold||money,yuan,payment,paying,purchase": [ + -0.024024760350584984, + 0.03500213474035263, + -0.06110784038901329, + 0.02122119627892971, + 0.00855228677392006, + -0.056516725569963455, + 0.05655207112431526, + -0.012965350411832333, + -0.007978343404829502, + -0.010585038922727108, + 0.044769562780857086, + -0.1093938946723938, + 0.044483959674835205, + 0.02519262209534645, + 0.002120307181030512, + -0.010349873453378677, + -0.03258882835507393, + 0.016008716076612473, + 0.013836875557899475, + 0.029068535193800926, + -0.009832694195210934, + 0.016205238178372383, + -0.03824666142463684, + 0.013255263678729534, + 0.04078713804483414, + -0.0534331314265728, + 0.03958204761147499, + -0.006313673220574856, + 0.04555820673704147, + -0.004279282875359058, + -0.03400873392820358, + 0.04865378513932228, + 0.04266595095396042, + 0.004048874601721764, + 0.04956943169236183, + -0.057165488600730896, + -0.0006838319823145866, + -0.07086600363254547, + -0.0682830810546875, + 0.02011382207274437, + 0.028404252603650093, + -0.04344591870903969, + 0.030441880226135254, + -0.03923111781477928, + -0.0050802468322217464, + 0.05387163534760475, + 0.01912217028439045, + 0.07917813956737518, + 0.006193517241626978, + 3.6550292861647904e-05, + 0.06553509831428528, + -0.04747043550014496, + -0.10662399232387543, + 0.08990693837404251, + 0.017641564831137657, + 0.09234560281038284, + -0.006825629621744156, + -0.016220660880208015, + 0.01353768166154623, + -0.04484022408723831, + -0.05333397537469864, + 0.08728471398353577, + 0.0045275017619132996, + -0.00041330515523441136, + 0.09104190021753311, + 0.040369052439928055, + -0.07423696666955948, + -0.010992671363055706, + -0.06854376941919327, + 0.04491092264652252, + 0.04894646257162094, + -0.07190389186143875, + -0.005271486937999725, + -0.059970397502183914, + -0.06083611026406288, + -0.031742971390485764, + 0.1563437581062317, + -0.03256629779934883, + -0.025236787274479866, + -0.07699400186538696, + -0.07009600102901459, + -0.0370875746011734, + 0.03249635174870491, + -0.076825812458992, + 0.0752081647515297, + 0.04503682628273964, + -0.01976018399000168, + -0.038527801632881165, + 0.04354102537035942, + -0.04925382882356644, + 0.011620493605732918, + 0.009855146519839764, + 0.02566535398364067, + 0.0011936987284570932, + -0.03648769110441208, + 0.03057756833732128, + 0.11966709792613983, + 0.021028980612754822, + 0.034448351711034775, + 0.02270980179309845, + 0.12930582463741302, + 0.04950275272130966, + 0.04776038974523544, + -0.01752721145749092, + -0.020409060642123222, + 0.023583948612213135, + 0.017978057265281677, + 0.04942299425601959, + 0.00047200589324347675, + 0.030336525291204453, + -0.10871656984090805, + -0.0049758851528167725, + 0.0004008964169770479, + -0.05024251714348793, + -0.04137318953871727, + 0.07110954821109772, + -0.03879362344741821, + -0.03677305579185486, + 0.08357063680887222, + 0.02124534547328949, + 0.015981312841176987, + 0.042225684970617294, + -0.0942055955529213, + -0.044303182512521744, + -0.08612290024757385, + -0.04522502049803734, + 0.07736965268850327, + -2.987860888002536e-33, + -0.026014115661382675, + 0.00045598397264257073, + -0.011960254050791264, + -0.08518937975168228, + -0.02601093053817749, + 0.030237952247262, + 0.03669484704732895, + 0.03958583250641823, + -0.08306534588336945, + 0.045666445046663284, + -0.032966192811727524, + 0.03833816573023796, + 0.012949426658451557, + 0.11129247397184372, + -0.010462838225066662, + -0.0056150928139686584, + -0.04051710665225983, + -0.052525781095027924, + 0.03908342123031616, + 0.08290468901395798, + -0.007748398929834366, + 0.037561990320682526, + 0.009807152673602104, + 0.050609298050403595, + 0.03923278674483299, + -0.026955274865031242, + -0.011872409842908382, + 0.0279264934360981, + 0.011145202443003654, + 0.013131239451467991, + -0.007476952858269215, + -0.00563523406162858, + 0.01143776997923851, + -0.012081990949809551, + -0.10747436434030533, + 0.027327220886945724, + 0.06556911021471024, + 0.00244442792609334, + -0.00856076180934906, + -0.018539031967520714, + -0.025836126878857613, + 0.00454745814204216, + -0.07186903059482574, + -0.01829191856086254, + -0.0796227753162384, + 0.14330381155014038, + -0.006011332385241985, + -0.06417658925056458, + 0.03872480243444443, + -0.013517388142645359, + -0.06530933082103729, + -0.051380131393671036, + -0.05536452680826187, + -0.02241138368844986, + 0.02285214513540268, + -0.09103740751743317, + 0.016944626346230507, + 0.004698907490819693, + -0.07862114906311035, + -0.07979211211204529, + 0.01211012527346611, + -0.07497499138116837, + 0.02508029341697693, + 0.004468899220228195, + -0.05159148946404457, + 0.12008345872163773, + -0.06825330853462219, + 0.010485362261533737, + 0.02578945830464363, + -0.0627567395567894, + -0.11060305684804916, + 0.060614150017499924, + 0.12815172970294952, + 0.03723853826522827, + 0.054109375923871994, + 0.00852348655462265, + 0.02559220977127552, + -0.049078263342380524, + 0.05643820762634277, + 0.027374200522899628, + -0.14571212232112885, + 0.01612665131688118, + -0.005174759775400162, + 0.15276558697223663, + 0.012407191097736359, + 0.06733641773462296, + 0.014459952712059021, + -0.012516518123447895, + 0.0418805293738842, + -0.041280414909124374, + -0.03576365485787392, + -0.05278974398970604, + 0.0684404969215393, + -0.06796815246343613, + -0.0648963525891304, + 5.385446553055691e-34, + -0.05729536712169647, + 0.12471478432416916, + -0.09747963398694992, + 0.041955627501010895, + -0.030363140627741814, + -0.015239921398460865, + -0.014094074256718159, + 0.03523417189717293, + 0.08186261355876923, + 5.4323005315382034e-05, + -0.027959391474723816, + -0.06117204949259758, + -0.038834892213344574, + -0.002517254091799259, + 0.04463791474699974, + 0.01161089539527893, + -0.032128382474184036, + 0.07486223429441452, + 0.01954355090856552, + 0.028590239584445953, + -0.04841466248035431, + -0.04918006435036659, + -0.05133099853992462, + 0.00041385620716027915, + -0.009685071185231209, + 0.060679953545331955, + -0.0018969317898154259, + -0.08643795549869537, + -0.027633676305413246, + 0.08993377536535263, + -0.05551125854253769, + -0.02645309641957283, + -0.003999150358140469, + 0.06274305284023285, + -0.056093450635671616, + 0.03100176714360714, + 0.013564364053308964, + -0.001472512842155993, + 0.03069036826491356, + -0.0016482200007885695, + -0.036253251135349274, + -0.030630948022007942, + 0.01136197242885828, + 0.08483210951089859, + 0.006258896552026272, + -0.020119959488511086, + -0.051889605820178986, + -0.009726409800350666, + -0.012517423368990421, + -0.013896123506128788, + 0.031180687248706818, + -0.024830302223563194, + -0.0011580303544178605, + -0.015730448067188263, + -0.1351660043001175, + 0.05297616496682167, + 0.08892381936311722, + 0.015757586807012558, + 0.002831217600032687, + -0.009488148614764214, + -0.020290164276957512, + 0.062152061611413956, + -0.055792659521102905, + 0.027318259701132774, + -0.009355485439300537, + 0.005148204043507576, + 0.0404169037938118, + 0.00433388352394104, + 0.09565874189138412, + -0.09825239330530167, + 0.010353348217904568, + 0.014281128533184528, + 0.04808764159679413, + 0.023458218201994896, + -0.02776142582297325, + -0.0020453257020562887, + -0.00031028882949613035, + -0.0068338969722390175, + 0.06796823441982269, + 0.08354340493679047, + -0.0005442792898975313, + 0.018339598551392555, + 0.09319087117910385, + 0.018265647813677788, + -0.1027665063738823, + -0.009570184163749218, + -0.04418192058801651, + -0.01406620442867279, + 0.026485363021492958, + -0.038642413914203644, + -0.0726185142993927, + 0.053777676075696945, + -0.009090758860111237, + 0.0035845995880663395, + -0.012152259238064289, + -1.8159832748665394e-08, + -0.028263350948691368, + -0.07765144109725952, + -0.05153033882379532, + 0.008025627583265305, + -0.009706162847578526, + -0.012801744975149632, + 0.008255441673099995, + 0.007572157774120569, + -0.011599661782383919, + 0.04397821053862572, + 0.013756917789578438, + 0.0033846485894173384, + -0.07552514225244522, + -0.06474065035581589, + -0.08088161796331406, + 0.05869517847895622, + -0.0026663197204470634, + 0.028466753661632538, + -0.038713838905096054, + -0.05935822054743767, + -0.017297951504588127, + 0.0710362121462822, + 0.030775392428040504, + -0.04977862164378166, + -0.0122443325817585, + -0.007271566428244114, + -0.029811326414346695, + 0.14454759657382965, + -0.01809311844408512, + 0.004622851964086294, + -0.020609060302376747, + 0.06693074107170105, + 0.02119474671781063, + 0.0056174807250499725, + -0.0020348227117210627, + -0.01690278947353363, + 0.014777814038097858, + 0.019811861217021942, + 0.000965575163718313, + 0.09481455385684967, + -0.04473070055246353, + -0.07054155319929123, + -0.10557622462511063, + -0.03387141972780228, + 0.09369388967752457, + -0.023360000923275948, + -0.030933987349271774, + -0.03189604729413986, + 0.052861250936985016, + -0.15942847728729248, + -0.0191878080368042, + 0.0005256518488749862, + 0.03905599191784859, + 0.03823494911193848, + -0.0003275545604992658, + -0.01887664757668972, + -0.04787451773881912, + 0.043822042644023895, + 0.004737602546811104, + -0.023602016270160675, + 0.03834954649209976, + -0.013734913431107998, + 0.05241064354777336, + -0.06762764602899551 + ], + "currency-dollar-bold||money,usd,payment,paying,purchase": [ + -0.014304441399872303, + 0.03236621990799904, + -0.07162747532129288, + 0.03403555974364281, + 0.010080461390316486, + -0.08544815331697464, + 0.07227201014757156, + -0.01963784731924534, + 0.017992796376347542, + 0.009262307547032833, + 0.029753435403108597, + -0.0831865668296814, + 0.03379858657717705, + 0.030948154628276825, + 0.02383555844426155, + -0.030650818720459938, + -0.010439357720315456, + 0.055908381938934326, + -0.004447539336979389, + 0.054385315626859665, + 0.007775032892823219, + 0.0035517909564077854, + -0.03460241109132767, + 0.028582405298948288, + 0.06152501702308655, + 0.02097386308014393, + 0.07854875177145004, + -0.04391762986779213, + 0.028503183275461197, + -0.005343426018953323, + -0.036391500383615494, + -0.0020021460950374603, + 0.05209759622812271, + -0.0187993124127388, + 0.03457994386553764, + -0.03597583249211311, + 0.021008320152759552, + -0.018109500408172607, + -0.057842135429382324, + 0.03309280052781105, + -0.003795592812821269, + -0.09042391180992126, + 0.010645500384271145, + -0.0288704726845026, + -0.04281075671315193, + 0.015767810866236687, + -0.007306394167244434, + 0.09945044666528702, + 0.01986648701131344, + 0.04136650264263153, + 0.06107540428638458, + -0.07419544458389282, + -0.09939844906330109, + 0.06960053741931915, + 0.03582637757062912, + 0.05804074928164482, + 0.009553926065564156, + -0.017284639179706573, + 0.04586394131183624, + -0.04819274693727493, + -0.018549058586359024, + 0.03885962441563606, + 0.006083638872951269, + 0.0072070942260324955, + 0.04283036291599274, + 0.010221241973340511, + -0.037261925637722015, + 0.003049284452572465, + -0.09050494432449341, + 0.040017805993556976, + 0.05791284888982773, + -0.01994781196117401, + -0.0025192759931087494, + -0.06067107617855072, + -0.054200951009988785, + 0.011675050482153893, + 0.17377792298793793, + -0.024316631257534027, + -0.026075737550854683, + -0.05182517692446709, + -0.022881051525473595, + -0.04810493811964989, + -0.008277417160570621, + -0.10072778910398483, + 0.07842986285686493, + 0.04575478658080101, + 0.019445259124040604, + -0.05593989044427872, + 0.03981523588299751, + -0.06404831260442734, + -0.0028867332730442286, + 0.012960627675056458, + 0.037492573261260986, + -0.01685240864753723, + 0.01672438345849514, + 0.045516397804021835, + 0.0838414803147316, + 0.014680936001241207, + 0.007568025961518288, + 0.05005384609103203, + 0.0917373076081276, + 0.06363130360841751, + 0.0684991180896759, + 0.02150396630167961, + -0.004270181991159916, + -0.0023739554453641176, + -0.03481912612915039, + 0.047861404716968536, + 0.010122019797563553, + 0.0243326835334301, + -0.0950695052742958, + -0.038433853536844254, + -0.00018629409896675497, + -0.03595960885286331, + -0.050649408251047134, + 0.04060687869787216, + -0.06371702253818512, + -0.08224651962518692, + 0.12207886576652527, + 0.032743435353040695, + 0.015230235643684864, + 0.009665746241807938, + -0.06896474212408066, + -0.029591860249638557, + -0.05538735166192055, + -0.04796948656439781, + 0.08907774090766907, + -3.663398389636904e-33, + -0.026479745283722878, + 0.030439550057053566, + -0.08413615077733994, + -0.0865044966340065, + -0.04550107195973396, + 0.04056438431143761, + -0.020041467621922493, + 0.06543107330799103, + -0.058497354388237, + 0.029574409127235413, + -0.004373396281152964, + 0.023996861651539803, + 0.003815219970420003, + 0.1577964723110199, + -0.004154208581894636, + -0.008019520901143551, + -0.017652370035648346, + -0.007229480892419815, + 0.018390482291579247, + 0.09589510411024094, + -0.026480965316295624, + 0.020914390683174133, + 0.006760686170309782, + 0.040271032601594925, + 0.0009693127358332276, + -0.0022048400714993477, + 0.00325567158870399, + -0.00032019277568906546, + 0.05645935982465744, + 0.0027999202720820904, + 0.026296857744455338, + -0.002475524554029107, + 0.041226960718631744, + 0.008886270225048065, + -0.07171881943941116, + 0.011188065633177757, + 0.06733100116252899, + -0.016437599435448647, + 0.028008559718728065, + -0.022010548040270805, + -0.08037351071834564, + -0.007810738403350115, + -0.053144559264183044, + 0.010855435393750668, + -0.024618880823254585, + 0.1583833396434784, + -0.0047159926034510136, + -0.07516368478536606, + 0.030081240460276604, + -0.018104517832398415, + -0.05898793414235115, + -0.012007537297904491, + -0.05869190767407417, + -0.07207152992486954, + 0.008296653628349304, + -0.09512779116630554, + -0.01416462566703558, + 0.00560296094045043, + -0.030623754486441612, + -0.09572812914848328, + -0.009781517088413239, + -0.03763217478990555, + 0.06453810632228851, + -0.024846509099006653, + -0.0801253691315651, + 0.11500338464975357, + -0.07126735150814056, + 0.0192270465195179, + 0.03272147849202156, + 0.013530347496271133, + -0.11340373754501343, + 0.055332623422145844, + 0.11525929719209671, + 0.07685349136590958, + 0.06150714308023453, + 0.015598149038851261, + 0.10679129511117935, + -0.03955034911632538, + 0.037258636206388474, + 0.048716627061367035, + -0.1316291093826294, + 0.02306218445301056, + 0.028256792575120926, + 0.16619640588760376, + 0.04187741503119469, + 0.06911403685808182, + -0.034520842134952545, + -0.08753573149442673, + 0.043947044759988785, + -0.009661789983510971, + -0.026368258520960808, + -0.049994632601737976, + 0.016809197142720222, + -0.06577176600694656, + -0.015557857230305672, + 5.706263297801575e-34, + -0.009078576229512691, + 0.09461729228496552, + -0.0700102299451828, + 0.05075705423951149, + -0.07305092364549637, + 0.014475291594862938, + -0.04172924906015396, + 0.039766766130924225, + 0.060424212366342545, + 0.021346315741539, + -0.031470343470573425, + -0.02955264039337635, + -0.07429692894220352, + -0.025607096031308174, + 0.04978082701563835, + -0.04670952633023262, + 0.014565890654921532, + 0.008855738677084446, + 0.02546505816280842, + 0.034010712057352066, + -0.034498997032642365, + -0.02716740593314171, + -0.03277111053466797, + 0.014044524170458317, + 0.010333974845707417, + 0.026093648746609688, + 0.019151806831359863, + -0.07463245838880539, + -0.04310604929924011, + 0.06470689177513123, + -0.03032238967716694, + -0.04163171350955963, + 0.030484260991215706, + 0.02495734579861164, + -0.09842836856842041, + 0.07939352840185165, + 0.011288359761238098, + -0.014183971099555492, + 0.0503038614988327, + -0.007979411631822586, + -0.016924379393458366, + -0.05543668568134308, + 0.0005669630481861532, + 0.048665691167116165, + -0.024982839822769165, + -0.0860060602426529, + -0.020791146904230118, + 0.0030987062491476536, + -0.0037793535739183426, + -0.030418802052736282, + 0.010473852045834064, + -0.012349073775112629, + 0.0020249930676072836, + -0.03267790377140045, + -0.1312231719493866, + 0.04422856494784355, + 0.09468983858823776, + -0.02900097146630287, + 0.011687885969877243, + 0.049032289534807205, + -0.04085910692811012, + 0.05969497561454773, + 0.008958842605352402, + 0.029097463935613632, + -0.05075499042868614, + 0.002417180687189102, + 0.04654908552765846, + -0.049321092665195465, + 0.08973662555217743, + -0.038922399282455444, + -0.028018873184919357, + 0.010130908340215683, + 0.020588912069797516, + 0.005316844675689936, + 0.03568023443222046, + 0.023898422718048096, + -0.016878999769687653, + -0.0023830418940633535, + 0.08599990606307983, + 0.04709867760539055, + 0.014922969974577427, + 0.012653694488108158, + 0.04973498731851578, + 0.00321639864705503, + -0.07128317654132843, + -0.008235153742134571, + -0.06229959428310394, + 0.004697652067989111, + -0.020392484962940216, + -0.06372414529323578, + -0.09374544769525528, + 0.051557376980781555, + 0.0009806512389332056, + -0.026241926476359367, + -0.04637651517987251, + -1.959046613819737e-08, + -0.022808948531746864, + -0.034170784056186676, + -0.01632198877632618, + -0.006254387088119984, + 0.02795395441353321, + -0.033308204263448715, + -0.04615144804120064, + -0.05704003572463989, + -0.07384616881608963, + 0.04196956381201744, + -0.013348331674933434, + -0.013503468595445156, + -0.11627259850502014, + -0.10077399760484695, + -0.06239526718854904, + 0.013063312508165836, + -0.010130651295185089, + 0.024995822459459305, + -0.06372217833995819, + -0.05785972625017166, + 0.000933634233660996, + 0.07433105260133743, + 0.0025914262514561415, + -0.03226131573319435, + 0.028174320235848427, + 0.003705003298819065, + 0.025662723928689957, + 0.14829418063163757, + 0.022902289405465126, + -0.011136434972286224, + -0.009147850796580315, + 0.0691140815615654, + -0.01806185208261013, + 0.032772503793239594, + -0.024499209597706795, + -0.06322068721055984, + -0.0033743977546691895, + 0.03397854417562485, + -0.029341362416744232, + 0.0503169447183609, + -0.017249533906579018, + -0.04980352893471718, + -0.11387582123279572, + -0.04765734821557999, + 0.05158989503979683, + 0.05199639871716499, + -0.02770320139825344, + -0.032698214054107666, + -0.006932081654667854, + -0.14489741623401642, + -0.030370740219950676, + 0.027826543897390366, + 0.042081400752067566, + 0.07029391825199127, + -0.0030219824984669685, + -0.06022774055600166, + -0.000924384337849915, + 0.012364114634692669, + 0.018392017111182213, + 0.01154556218534708, + 0.06291788816452026, + -0.08578983694314957, + 0.017366919666528702, + -0.059590358287096024 + ], + "currency-dollar-simple-bold||money,usd,payment,paying,purchase": [ + -0.006377943325787783, + 0.04623456671833992, + -0.060305483639240265, + 0.03858042508363724, + 0.011431358754634857, + -0.07923471182584763, + 0.0659828782081604, + -0.004893075674772263, + 0.005544369574636221, + 0.019062038511037827, + 0.028788547962903976, + -0.09258998185396194, + 0.032725658267736435, + 0.026417052373290062, + 0.02924625761806965, + -0.048304274678230286, + -0.016863007098436356, + 0.04537907987833023, + 0.0020518142264336348, + 0.06013016775250435, + 5.526923814613838e-06, + -0.008969351649284363, + -0.05418534576892853, + 0.023837372660636902, + 0.051050033420324326, + 0.027592338621616364, + 0.07759527117013931, + -0.02842685393989086, + 0.04179731756448746, + 0.0035837870091199875, + -0.030657729133963585, + -0.0036841046530753374, + 0.051438186317682266, + -0.027799434959888458, + 0.027526071295142174, + -0.04106719419360161, + 0.04043165594339371, + -0.0005412222817540169, + -0.06155415624380112, + 0.020032616332173347, + -0.018866997212171555, + -0.09846615046262741, + 0.011216920800507069, + -0.019808433949947357, + -0.046625543385744095, + 0.008205999620258808, + -0.003066102974116802, + 0.097423255443573, + 0.015712101012468338, + 0.031783509999513626, + 0.07551427185535431, + -0.07337187230587006, + -0.10011187195777893, + 0.05916706845164299, + 0.03698575869202614, + 0.06129244342446327, + 0.006719720084220171, + 0.0014527412131428719, + 0.04495382681488991, + -0.05723957344889641, + -0.007981207221746445, + 0.018717048689723015, + 0.0032381850760430098, + 0.007278642617166042, + 0.03978735953569412, + -0.0002114522794727236, + -0.031198132783174515, + 0.00026133484789170325, + -0.09245921671390533, + 0.03193238750100136, + 0.051769502460956573, + -0.029064171016216278, + -0.017428329214453697, + -0.04207717627286911, + -0.053662147372961044, + -0.007600151002407074, + 0.16124548017978668, + -0.014902223832905293, + -0.03175041452050209, + -0.027599742636084557, + -0.04063471406698227, + -0.05467420816421509, + -0.01953030377626419, + -0.06993400305509567, + 0.07357269525527954, + 0.03757665306329727, + 0.02640473283827305, + -0.05438069999217987, + 0.05380503088235855, + -0.06388486176729202, + 0.008409873582422733, + 0.04059816524386406, + 0.052743151783943176, + -0.011981270276010036, + 0.03112924098968506, + 0.03842053562402725, + 0.09377696365118027, + 0.0217143502086401, + -0.026522165164351463, + 0.04502569139003754, + 0.08648500591516495, + 0.06403134018182755, + 0.09620387852191925, + 0.00454173656180501, + 0.008987843059003353, + -0.006364632863551378, + -0.031199777498841286, + 0.03138991817831993, + 0.011032515205442905, + 0.009767277166247368, + -0.0960790365934372, + -0.032926060259342194, + 0.003846800187602639, + -0.03746103122830391, + -0.041099920868873596, + 0.0414128452539444, + -0.07523253560066223, + -0.08928190171718597, + 0.11440739035606384, + 0.057759515941143036, + 0.004783727694302797, + 0.009761213324964046, + -0.08194822072982788, + -0.021122856065630913, + -0.04857618361711502, + -0.04913165420293808, + 0.09273771941661835, + -4.270993787161682e-33, + -0.021361446008086205, + 0.04710337147116661, + -0.08520621061325073, + -0.08266957104206085, + -0.051359135657548904, + 0.030090201646089554, + -0.03092571720480919, + 0.06751501560211182, + -0.05808905139565468, + 0.029966050758957863, + 0.02555229887366295, + 0.009466378949582577, + 0.00813793670386076, + 0.16087841987609863, + 0.00019070602138526738, + -0.0003122434427496046, + -0.011956349946558475, + -0.013632042333483696, + 0.02304736152291298, + 0.08082315325737, + -0.03655017912387848, + 0.04053638502955437, + 0.010658332146704197, + 0.02282286249101162, + 0.0037583711091428995, + 0.000388241809559986, + 0.003538072109222412, + -0.012626729905605316, + 0.054396048188209534, + -0.0014980606501922011, + 0.029826438054442406, + -0.0048995050601661205, + 0.049178365617990494, + 0.009686659090220928, + -0.07559225708246231, + 0.013508758507668972, + 0.08280397206544876, + -0.014635659754276276, + 0.024920478463172913, + -0.037428248673677444, + -0.09214280545711517, + -0.004981085192412138, + -0.03881624713540077, + -0.0009348104358650744, + -0.010313240811228752, + 0.15475602447986603, + -0.0046281227841973305, + -0.0748528465628624, + 0.03211567923426628, + -0.035113491117954254, + -0.05681305006146431, + 0.004769742023199797, + -0.06530360877513885, + -0.06269235908985138, + 0.01222912222146988, + -0.0793684720993042, + -0.013397292234003544, + 0.007578160148113966, + -0.045048028230667114, + -0.0898488312959671, + -0.014512170106172562, + -0.023936264216899872, + 0.056692734360694885, + -0.016054920852184296, + -0.08610282093286514, + 0.11238811910152435, + -0.07318388670682907, + 0.014089220203459263, + 0.0272879246622324, + 0.020392799749970436, + -0.11628008633852005, + 0.053270697593688965, + 0.10574214160442352, + 0.05489211529493332, + 0.07469447702169418, + 0.024655306711792946, + 0.13511532545089722, + -0.06369734555482864, + 0.03215958923101425, + 0.05680995434522629, + -0.12227854877710342, + 0.02664092183113098, + 0.025897201150655746, + 0.17581185698509216, + 0.026439150795340538, + 0.062437426298856735, + -0.030667774379253387, + -0.06720510870218277, + 0.029218992218375206, + -0.018910929560661316, + -0.01547766849398613, + -0.048415690660476685, + 0.009966029785573483, + -0.06692439317703247, + -0.010143768042325974, + 1.11353128852556e-33, + -0.015428871847689152, + 0.07555306702852249, + -0.07121866941452026, + 0.06121789664030075, + -0.07336635887622833, + 0.029264602810144424, + -0.029226068407297134, + 0.02808772586286068, + 0.07760019600391388, + 0.02977173589169979, + -0.0336151160299778, + -0.031075982376933098, + -0.08619683980941772, + -0.0179144237190485, + 0.039619095623493195, + -0.04286755248904228, + 0.0026045304257422686, + 0.021956248208880424, + 0.03306015953421593, + 0.03277614340186119, + -0.02357826940715313, + -0.01774071715772152, + -0.04609665647149086, + -0.005280463956296444, + 0.018150370568037033, + 0.029318969696760178, + 0.003764885710552335, + -0.06271423399448395, + -0.04938829317688942, + 0.05683733522891998, + -0.02605624869465828, + -0.043161194771528244, + 0.027202123776078224, + 0.004084088373929262, + -0.09485199302434921, + 0.08063657581806183, + -0.013555636629462242, + -0.01849808171391487, + 0.03970111161470413, + -0.007249354384839535, + -0.03146448731422424, + -0.05324611812829971, + 0.011165007948875427, + 0.04228058457374573, + -0.02070169523358345, + -0.10026265680789948, + -0.009282250888645649, + -0.022131796926259995, + -0.02002946101129055, + -0.043183159083127975, + 0.00308994366787374, + -0.026363136246800423, + -4.9473474064143375e-05, + -0.029220033437013626, + -0.12132246047258377, + 0.052382759749889374, + 0.10377534478902817, + -0.01869415119290352, + 0.021450938656926155, + 0.05534907430410385, + -0.05000375211238861, + 0.062015101313591, + -0.016924230381846428, + 0.032003000378608704, + -0.06440946459770203, + 0.007047745399177074, + 0.04084937646985054, + -0.04692192003130913, + 0.07512079924345016, + -0.04335321858525276, + -0.020386159420013428, + 0.024185683578252792, + 0.02963283285498619, + -0.011409576050937176, + 0.033827509731054306, + 0.02911478653550148, + -0.016518954187631607, + -0.006333714351058006, + 0.08185210078954697, + 0.03297528997063637, + 0.03895869851112366, + 0.01297997497022152, + 0.03433826193213463, + -0.017895042896270752, + -0.06328857690095901, + -0.011759602464735508, + -0.06582744419574738, + -0.0075341700576245785, + -0.019585901871323586, + -0.05780606344342232, + -0.10713695734739304, + 0.05935009941458702, + 0.014016018249094486, + -0.007993354462087154, + -0.05573847144842148, + -2.0549823176452264e-08, + -0.024749113246798515, + -0.045192889869213104, + -0.006991407368332148, + -0.013645508326590061, + 0.030364325270056725, + -0.026656702160835266, + -0.034768350422382355, + -0.06219854578375816, + -0.07186079025268555, + 0.05556458979845047, + -0.020774660632014275, + -0.02354087121784687, + -0.11341088265180588, + -0.07883460819721222, + -0.07400142401456833, + 0.04121161624789238, + -0.00352463242597878, + 0.02194167673587799, + -0.05410439893603325, + -0.03563670441508293, + 0.005409422796219587, + 0.067134328186512, + -0.010776598006486893, + -0.0336105152964592, + 0.013252809643745422, + 0.011523236520588398, + 0.04109844192862511, + 0.1669090837240219, + 0.03467881307005882, + -0.018613755702972412, + -0.01640552096068859, + 0.07140067219734192, + -0.022515956312417984, + 0.03551989793777466, + -0.038602061569690704, + -0.051426105201244354, + -0.004001616965979338, + 0.038702499121427536, + -0.035185545682907104, + 0.033727016299963, + -0.008440409786999226, + -0.0423307828605175, + -0.11194495856761932, + -0.051986053586006165, + 0.05112040787935257, + 0.05296740680932999, + -0.0231732539832592, + -0.03240593150258064, + -0.001415080507285893, + -0.1497889906167984, + -0.020095065236091614, + 0.02658882923424244, + 0.0472787544131279, + 0.051125165075063705, + -0.007621844299137592, + -0.04929928854107857, + 0.009633910842239857, + 0.02101726084947586, + 0.0030861194245517254, + 0.015215967781841755, + 0.0585160031914711, + -0.050867971032857895, + 0.011754903942346573, + -0.06275574117898941 + ], + "currency-eth-bold||money,ethereum,crypto,cryptocurrency,payment,paying,purchase": [ + 0.035849109292030334, + 0.017684413120150566, + -0.05606350302696228, + 0.009403787553310394, + 0.028250666335225105, + -0.07693403959274292, + 0.07193753868341446, + -0.03413676097989082, + 0.002966285916045308, + -0.02585596777498722, + 0.010643122717738152, + -0.090179443359375, + 0.02596653439104557, + -0.007882820442318916, + 0.0030260393396019936, + -0.03563642501831055, + -0.006106721702963114, + 0.02411722019314766, + -0.01246765349060297, + 0.04081365093588829, + 0.01147582195699215, + 0.002093907445669174, + -0.021544771268963814, + 0.054279547184705734, + 0.03844123333692551, + 0.06205388903617859, + 0.08267857879400253, + -0.0010929923737421632, + 0.006586725823581219, + -0.07253953814506531, + -0.024635743349790573, + 0.007369693834334612, + 0.07293163985013962, + -0.005239701829850674, + -0.005061707459390163, + -0.04256470873951912, + 0.022569378837943077, + -0.03269654139876366, + -0.030119260773062706, + 0.047959212213754654, + 0.03546536713838577, + -0.12655775249004364, + 0.026723062619566917, + -0.022971807047724724, + -0.01856837049126625, + 0.010862680152058601, + -0.002226492390036583, + 0.04679560288786888, + 0.001588270184583962, + -0.0014649846125394106, + 0.07718942314386368, + -0.08472879230976105, + -0.09688932448625565, + 0.09292729943990707, + 0.0031891483813524246, + 0.011454875580966473, + -0.0409744568169117, + -0.00802944228053093, + 0.03316647559404373, + -0.08282054215669632, + -0.02298840507864952, + 0.05834341421723366, + 0.007992440834641457, + 0.09168440848588943, + 0.024029379710555077, + 0.03366309031844139, + -0.008080081082880497, + 0.003971307072788477, + -0.09071818739175797, + 0.018989015370607376, + 0.039010461419820786, + -0.04573454707860947, + -0.017629176378250122, + -0.03606593981385231, + -0.03443676605820656, + -0.011677426286041737, + 0.1335441768169403, + -0.055599313229322433, + -0.030770238488912582, + -0.06856636703014374, + -0.03131484240293503, + -0.0377618670463562, + -0.02515106461942196, + -0.08033310621976852, + 0.04609108343720436, + 0.06142587959766388, + 0.02672918513417244, + -0.06802205741405487, + -0.026074303314089775, + -0.05843999236822128, + 0.017264191061258316, + 0.004198012407869101, + 0.04309981316328049, + -0.020908966660499573, + 0.017908850684762, + 0.0799507200717926, + 0.053528305143117905, + -0.027474211528897285, + -0.0008590924553573132, + 0.03261273726820946, + 0.04256485030055046, + 0.07610015571117401, + 0.014932348392903805, + 0.02837376669049263, + -0.0084635429084301, + -0.03751007094979286, + -0.035190608352422714, + 0.02171580120921135, + -0.010060879401862621, + 0.007587594445794821, + -0.05880754813551903, + -0.059135884046554565, + -0.013035104610025883, + -0.02655855566263199, + 0.0013405514182522893, + 0.05751226097345352, + -0.10066962987184525, + -0.06236342340707779, + 0.10673145204782486, + 0.04511840268969536, + -0.00562909385189414, + 0.025853095576167107, + -0.051087602972984314, + 0.017529034987092018, + -0.039429038763046265, + -0.03415883332490921, + 0.056792598217725754, + -6.075742294429137e-34, + -0.056073036044836044, + -0.03641945868730545, + -0.03526868298649788, + -0.05549318343400955, + -0.023867307230830193, + 0.04384052753448486, + -0.023765867576003075, + 0.046132128685712814, + -0.0765748992562294, + 0.00965053215622902, + 0.009606881998479366, + 0.07707687467336655, + 0.03880662843585014, + 0.1309090256690979, + 0.028818991035223007, + -0.03963566944003105, + 0.03797809034585953, + 0.006861230358481407, + 0.046012524515390396, + 0.08564850687980652, + -0.017055274918675423, + 0.04935978725552559, + 0.05047847330570221, + 0.015427932143211365, + 0.009318148717284203, + -0.00934708770364523, + 0.0011013200273737311, + -0.02592485025525093, + 0.052472472190856934, + 0.007126342039555311, + -0.02269202657043934, + 0.06990496814250946, + 0.04281659424304962, + -0.009566660039126873, + -0.11271451413631439, + 0.055065128952264786, + 0.048385828733444214, + -0.021544484421610832, + 0.009881298989057541, + -0.05831504240632057, + -0.0973406583070755, + -0.009075883775949478, + -0.06427484005689621, + -0.01923539862036705, + -0.026581978425383568, + 0.17529653012752533, + 0.023033691570162773, + -0.0823102742433548, + 0.016007864847779274, + 0.007847589440643787, + -0.046471115201711655, + -0.03350517526268959, + -0.015375477261841297, + -0.08091450482606888, + 0.016542203724384308, + -0.10203812271356583, + -0.06912440806627274, + 0.000266781949903816, + -0.07205960899591446, + -0.048678647726774216, + -0.04339279979467392, + 0.003488581394776702, + 0.05712640658020973, + -0.05453428626060486, + -0.08926309645175934, + 0.1469801962375641, + -0.03088371269404888, + -0.015626925975084305, + 0.00888863019645214, + 0.035015303641557693, + -0.1058780625462532, + 0.04664961248636246, + 0.11290243268013, + 0.09660211950540543, + 0.060327962040901184, + 0.0850643739104271, + -0.00126153533346951, + -0.04175620898604393, + 0.0473499521613121, + 0.059143707156181335, + -0.11742360144853592, + 0.029309675097465515, + 0.025191279128193855, + 0.13055381178855896, + 0.049073219299316406, + 0.052987102419137955, + -0.0002816450141835958, + -0.06469184160232544, + 0.07173218578100204, + -0.010007116012275219, + -0.04196023941040039, + -0.04843907058238983, + 0.03240770474076271, + -0.04948454350233078, + -0.054153505712747574, + -3.0680571533774635e-33, + 0.01644492708146572, + 0.04946742579340935, + -0.10514330118894577, + 0.026449579745531082, + -0.010790929198265076, + 0.03758692368865013, + -0.03588541969656944, + 0.028405409306287766, + 0.06823450326919556, + 0.04983917623758316, + 0.04415057599544525, + -0.04940379783511162, + -0.039577629417181015, + -0.07181097567081451, + 0.027650026604533195, + -0.07797076553106308, + -0.009835029020905495, + 0.05418384075164795, + 0.030422981828451157, + 0.0062208701856434345, + -0.06533581763505936, + -0.029772812500596046, + -0.07506095618009567, + -0.013806325383484364, + 0.042431123554706573, + 0.016337843611836433, + -0.030769677832722664, + -0.06814129650592804, + -0.01855688914656639, + 0.013294841162860394, + -0.059594377875328064, + -0.025312934070825577, + 0.04926725849509239, + 0.013577776029706001, + -0.06527886539697647, + 0.1050708144903183, + 0.0025974102318286896, + -0.04179270565509796, + 0.04736057668924332, + -0.03427698835730553, + -0.016749905422329903, + 0.006906336639076471, + 0.0026172823272645473, + 0.04537223279476166, + -0.014093242585659027, + -0.08371556550264359, + -0.06994076818227768, + 0.02086651884019375, + 0.012066279537975788, + 0.014260627329349518, + 0.013890411704778671, + -0.03939085826277733, + 0.02977960743010044, + -0.07725407183170319, + -0.11151856184005737, + 0.08507981151342392, + 0.05149532109498978, + 0.027498343959450722, + -0.003634624881669879, + 0.04291621595621109, + -0.03708397224545479, + 0.07677263766527176, + -0.0037437467835843563, + 0.10119990259408951, + -0.05154258385300636, + -0.03927840292453766, + 0.015169434249401093, + -0.05607295036315918, + 0.007331383414566517, + -0.07323379814624786, + 0.005422085523605347, + 0.0007921060314401984, + -0.005708361975848675, + 0.008049367927014828, + 0.03708591312170029, + -0.02793811447918415, + 0.03890959173440933, + -0.019128186628222466, + 0.059427957981824875, + 0.05563487485051155, + 0.05974524840712547, + 0.04749469459056854, + 0.01901836320757866, + 0.03360282629728317, + -0.044381946325302124, + 0.01825249381363392, + -0.037138745188713074, + -0.011769305914640427, + -0.0010565704433247447, + -0.0879431664943695, + -0.08504069596529007, + 0.014060728251934052, + -0.022168152034282684, + 0.031843069940805435, + -0.005251979921013117, + -2.7131685342851597e-08, + -0.010993704199790955, + -0.06048261374235153, + 0.005565290339291096, + -0.0003792586794588715, + 0.07837294787168503, + -0.041701968759298325, + 0.04481201618909836, + -0.03350294381380081, + -0.05393116921186447, + 0.061340149492025375, + 0.016069218516349792, + 0.010884564369916916, + -0.10358422994613647, + -0.07510433346033096, + -0.0157176461070776, + 0.04143473133444786, + -0.04819135367870331, + -0.011726806871592999, + -0.039754848927259445, + -0.07241835445165634, + 0.007888754829764366, + 0.03144029527902603, + -0.013205635361373425, + -0.06387416273355484, + 0.05420605465769768, + 0.012133642099797726, + 0.023193903267383575, + 0.08830976486206055, + 0.0037628174759447575, + 0.022394081577658653, + 0.026310892775654793, + -0.004150853026658297, + 0.0016474778531119227, + 0.02536107785999775, + -0.030337946489453316, + -0.05878623202443123, + -0.03707020729780197, + 0.05435100570321083, + -0.017030615359544754, + 0.07558540254831314, + -0.05600667744874954, + -0.058596666902303696, + -0.05821193754673004, + -0.061273038387298584, + 0.05119907855987549, + 0.024863118305802345, + -0.04112110286951065, + -0.02852671965956688, + -0.0084282997995615, + -0.1431833952665329, + -0.07475665211677551, + 0.031716689467430115, + 0.07712551951408386, + 0.027679720893502235, + -0.00829096045345068, + -0.05981328338384628, + -0.022015752270817757, + 0.010103778913617134, + 0.01431348267942667, + -0.03309058025479317, + 0.13423655927181244, + -0.05934028699994087, + 0.09488644450902939, + 0.0005016982322558761 + ], + "currency-eur-bold||money,euros,payment,paying,purchase": [ + -0.0028247234877198935, + 0.03712540119886398, + -0.053587108850479126, + -0.005458427127450705, + 0.003631969215348363, + -0.0659794807434082, + 0.050186771899461746, + -0.014184268191456795, + 0.04090031981468201, + -0.03441062569618225, + 0.02287846989929676, + -0.11523096263408661, + 0.011347892694175243, + 0.030484888702630997, + -0.0004844530485570431, + -0.04039273411035538, + -0.023137811571359634, + 0.016935421153903008, + 0.008481522090733051, + 0.052171289920806885, + -0.001224325387738645, + 0.0025275603402405977, + -0.04257620871067047, + 0.04218701273202896, + 0.06296850740909576, + 1.3335349649423733e-05, + 0.08043359965085983, + -0.02771860361099243, + 0.029420921579003334, + -0.029729539528489113, + -0.008196936920285225, + -0.022918757051229477, + 0.052078742533922195, + -0.01766894944012165, + 0.017818229272961617, + -0.07564684748649597, + 0.0025442359037697315, + -0.06297095119953156, + -0.05831140652298927, + 0.03655603155493736, + -0.003347751684486866, + -0.11406739056110382, + -0.02274555154144764, + -0.03493666276335716, + -0.011290686205029488, + 0.08267469704151154, + -0.0007361655007116497, + 0.07756410539150238, + -0.03099905140697956, + 0.053422700613737106, + 0.08599626272916794, + -0.03381044790148735, + -0.07834158837795258, + 0.01813449338078499, + 0.024534624069929123, + 0.049048785120248795, + -0.005669037811458111, + 0.01581643708050251, + 0.06739264726638794, + -0.056812774389982224, + -0.012034893035888672, + 0.05839942768216133, + -0.0035821108613163233, + 0.003292689099907875, + 0.007667063735425472, + 0.0192413292825222, + -0.015214907936751842, + -0.003230718430131674, + -0.12089657038450241, + 0.054653096944093704, + 0.030525801703333855, + -0.09130850434303284, + -0.0066565852612257, + -0.04539235681295395, + -0.03583870455622673, + 0.013067742809653282, + 0.08252432197332382, + -0.06053914874792099, + -0.047668419778347015, + -0.04101860895752907, + -0.04288472980260849, + -0.03203561156988144, + -0.028355810791254044, + -0.06915385276079178, + 0.07576563954353333, + 0.005823911167681217, + 0.03886120393872261, + -0.08321891725063324, + 0.033084649592638016, + -0.038158003240823746, + -0.015701185911893845, + -0.015663156285881996, + 0.03784153237938881, + 0.01826344057917595, + -0.0015649929409846663, + 0.034573014825582504, + 0.10521871596574783, + 0.05417490005493164, + 0.042085710912942886, + 0.02892419695854187, + 0.0881156399846077, + 0.05860603600740433, + 0.07655038684606552, + 0.004698281176388264, + -0.06113440543413162, + -0.002366927918046713, + 0.027255980297923088, + 0.05344763398170471, + 0.02301015332341194, + 0.013600988313555717, + -0.10356511175632477, + -0.059078384190797806, + 0.01303127035498619, + -0.08189133554697037, + -0.02008677087724209, + 0.049356795847415924, + -0.07450883835554123, + -0.0969168096780777, + 0.1979127675294876, + 0.0466456264257431, + 0.06775408983230591, + -0.008498755283653736, + -0.056136179715394974, + 0.015698160976171494, + -0.01213231310248375, + -0.022710036486387253, + 0.07305978238582611, + -4.102402550656826e-33, + -0.04752516373991966, + 0.014521600678563118, + -0.05518875643610954, + -0.044949986040592194, + -0.08873898535966873, + 0.06139438599348068, + -0.03738478571176529, + 0.05290757864713669, + -0.07898462563753128, + 0.007354510482400656, + -0.013736932538449764, + 0.03971180319786072, + 0.020575469359755516, + 0.13606944680213928, + 0.015558659099042416, + -0.01707286387681961, + 0.03698845952749252, + 0.001342823845334351, + 0.00959734246134758, + 0.09221459180116653, + -0.0030828998424112797, + 0.029405023902654648, + 0.028869688510894775, + 0.0353669673204422, + 0.004668454639613628, + -0.0017682438483461738, + -0.03439442440867424, + -0.011293777264654636, + 0.023766472935676575, + -0.002127691637724638, + 0.015455649234354496, + -0.006950043607503176, + 0.03178549185395241, + 0.01557981874793768, + -0.08883357793092728, + 0.029148222878575325, + 0.05067569762468338, + 0.0017122705467045307, + 0.006944602355360985, + -0.03895716369152069, + -0.0405232235789299, + -0.01844140887260437, + -0.04726129770278931, + -0.005009706597775221, + 0.01317678950726986, + 0.12954746186733246, + -0.04384111613035202, + -0.11536514759063721, + 0.00328803644515574, + -0.016152169555425644, + -0.03400435671210289, + -0.054927997291088104, + -0.06388363242149353, + -0.04150192812085152, + 0.05249805748462677, + -0.03020617924630642, + -0.03662766516208649, + 0.005815316457301378, + -0.06303679198026657, + -0.09249196946620941, + 0.006239578127861023, + 0.005709790624678135, + 0.07013925909996033, + -0.028844453394412994, + -0.027169175446033478, + 0.08442246168851852, + -0.02727591060101986, + 0.008892198093235493, + 0.0022963634692132473, + -0.030071675777435303, + -0.1082109734416008, + 0.07788238674402237, + 0.16354696452617645, + 0.09620042890310287, + 0.022992752492427826, + 0.03349492326378822, + 0.04734611138701439, + -0.023179277777671814, + 0.013158692046999931, + 0.050035811960697174, + -0.12443763762712479, + 0.024800412356853485, + 0.0023765643127262592, + 0.13454341888427734, + 0.035419415682554245, + 0.09715643525123596, + 0.010614746250212193, + -0.050548095256090164, + 0.05867351219058037, + 0.0023850651923567057, + -0.00990539975464344, + -0.08909333497285843, + -0.00991540215909481, + -0.07629746943712234, + -0.04559274762868881, + 2.575062261317785e-34, + 0.022993752732872963, + 0.06280554831027985, + -0.04677675664424896, + 0.04468326270580292, + -0.06664194166660309, + 0.0534353107213974, + -0.030722254887223244, + 0.042477674782276154, + 0.077336885035038, + 0.03678816556930542, + 0.00748820323497057, + -0.05223315954208374, + -0.0412483885884285, + -0.039418090134859085, + 0.0658584013581276, + -0.024218596518039703, + -0.0011291138362139463, + 0.05686439573764801, + 0.016146505251526833, + 0.04999787360429764, + -0.053719520568847656, + -0.030487217009067535, + -0.024712378159165382, + 0.029617276042699814, + -0.021018056198954582, + 0.00020293738634791225, + 0.017451658844947815, + -0.06007084995508194, + -0.05226556211709976, + 0.06504108011722565, + -0.06066635251045227, + -0.030234547331929207, + 0.04639430344104767, + -0.0007857707678340375, + -0.07324671745300293, + 0.018083782866597176, + -0.023344451561570168, + 0.0009527752408757806, + 0.05187661200761795, + -0.03827168047428131, + -0.023341987282037735, + -0.04023177921772003, + -0.007096196059137583, + 0.03849710524082184, + 0.016040368005633354, + -0.08003218472003937, + 0.007535163778811693, + -0.027701687067747116, + -0.0021481572184711695, + -0.03431759774684906, + 0.047567516565322876, + -0.013895087875425816, + -0.011981939896941185, + -0.0352923721075058, + -0.1025119423866272, + 0.03821559250354767, + 0.07729636877775192, + -0.03966544196009636, + 0.022654933854937553, + 0.0435795858502388, + -0.019776510074734688, + 0.06190485134720802, + 0.03110438585281372, + 0.04026845470070839, + -0.045303743332624435, + -0.025307470932602882, + 0.008031402714550495, + -0.03656381741166115, + 0.05949356034398079, + -0.026930205523967743, + -0.0006576304440386593, + -0.009489720687270164, + -0.005506179761141539, + 0.04562218859791756, + 0.041478533297777176, + -0.01409956719726324, + -0.003658017609268427, + 0.010903734713792801, + 0.05487528443336487, + 0.05446067824959755, + -0.02241053618490696, + -0.030208420008420944, + 0.04217209294438362, + 0.006287917960435152, + -0.045114029198884964, + -0.04435494542121887, + -0.04343433678150177, + -0.03429270535707474, + 0.016101893037557602, + -0.09682156145572662, + -0.065364308655262, + 0.025232549756765366, + 0.032407719641923904, + -0.02320050448179245, + -0.04556715488433838, + -2.003439014686137e-08, + -0.026248976588249207, + -0.04746648296713829, + -0.044490378350019455, + 0.005973401945084333, + 0.014749055728316307, + -0.04721101000905037, + -0.026537761092185974, + -0.040051717311143875, + -0.09453169256448746, + 0.03548829257488251, + 0.0068746935576200485, + -0.012072717770934105, + -0.0946323499083519, + -0.10902717709541321, + -0.005987848155200481, + 0.055871978402137756, + 0.001304271281696856, + 0.02147359400987625, + -0.03185412660241127, + -0.01970224641263485, + 0.022547926753759384, + 0.08803305774927139, + 0.02846587635576725, + -0.06575828045606613, + 0.0021368358284235, + -0.014831453561782837, + 0.03285183385014534, + 0.13333117961883545, + 0.04082862660288811, + -0.05475752428174019, + 0.021876929327845573, + 0.06799255311489105, + 0.019621197134256363, + 0.01870747283101082, + -0.011173902079463005, + -0.050353262573480606, + 0.00926768034696579, + 0.06035315990447998, + -0.038222361356019974, + 0.07646819949150085, + -0.03795313835144043, + -0.08901983499526978, + -0.12010861188173294, + -0.05804073065519333, + 0.06384009122848511, + 0.0855044424533844, + -0.041273634880781174, + -0.0686001181602478, + -0.03527641296386719, + -0.15827834606170654, + -0.02886962890625, + 0.03404413163661957, + 0.08100131899118423, + 0.0686192438006401, + -0.002858005929738283, + -0.04929698631167412, + -0.010013281367719173, + 0.039600919932127, + 0.01791023463010788, + 0.007553675677627325, + 0.07870464771986008, + -0.0396164208650589, + 0.01363622397184372, + -0.05621247738599777 + ], + "currency-gbp-bold||money,pounds sterling,payment,paying,purchase": [ + -0.013870757073163986, + -0.0022174199111759663, + -0.014638547785580158, + -0.0073674265295267105, + 0.01600210927426815, + -0.044063836336135864, + 0.11273054033517838, + -0.04891274869441986, + -0.01976257935166359, + -0.022873036563396454, + -0.012518588453531265, + -0.07974564284086227, + -0.005349398124963045, + -0.035664718598127365, + 0.004912812728434801, + 0.021257851272821426, + -0.0012503154575824738, + -0.014109451323747635, + -0.006858780514448881, + 0.07952218502759933, + -0.0065709990449249744, + -0.010691158473491669, + -0.06981971859931946, + 0.05662001669406891, + 0.04542873427271843, + 0.056045979261398315, + 0.08454451709985733, + 0.06015302985906601, + 0.032835692167282104, + -0.013914989307522774, + -0.002178443828597665, + -0.023473475128412247, + 0.06664089113473892, + -0.005965218413621187, + 0.05739109590649605, + -0.009127060882747173, + 0.036293286830186844, + -0.008038198575377464, + -0.10405728965997696, + -0.029495829716324806, + -0.023612970486283302, + -0.10322725027799606, + -0.03571043908596039, + -0.011745764873921871, + 0.04818328469991684, + 0.07530199736356735, + 0.030959177762269974, + 0.0655955895781517, + -0.05924412980675697, + -0.049441300332546234, + 0.06961192935705185, + -0.0502624437212944, + -0.07216494530439377, + 0.016711127012968063, + -0.003923487383872271, + 0.02840324491262436, + -0.0131130525842309, + -0.008782685734331608, + 0.07429318130016327, + -0.07797069847583771, + -0.04212028533220291, + 0.041816312819719315, + -0.001138171530328691, + 0.020610027015209198, + 0.053823649883270264, + 0.03504318743944168, + -0.0303807370364666, + 0.00587394367903471, + -0.05458201840519905, + 0.0407576709985733, + 0.03865035995841026, + -0.06622122973203659, + -0.004071834497153759, + -0.06357219070196152, + -0.08259417116641998, + 0.02899247035384178, + 0.12380813807249069, + -0.03769085183739662, + -0.01572457142174244, + -0.04033776372671127, + -0.040979959070682526, + -0.0021334595512598753, + -0.021895265206694603, + -0.015571647323668003, + 0.08765935897827148, + -0.05718337744474411, + -0.00419467780739069, + -0.05555348098278046, + -0.05142378807067871, + -0.037834182381629944, + 0.0171284731477499, + 0.025489188730716705, + 0.02883251942694187, + 0.05683233216404915, + -0.04234260320663452, + 0.036819908767938614, + 0.06835993379354477, + -0.02079920656979084, + 0.006628626026213169, + 0.023191025480628014, + 0.04035882279276848, + 0.09299364686012268, + 0.05309794843196869, + 0.04772046208381653, + -0.024592027068138123, + -0.04088260978460312, + -0.036581672728061676, + 0.058287497609853745, + 0.06906498968601227, + -0.03939802572131157, + -0.010530615225434303, + -0.022783789783716202, + -0.04023287445306778, + 0.010547238402068615, + -0.02673601545393467, + 0.04011043161153793, + -0.1392524540424347, + -0.040024906396865845, + 0.1102459654211998, + 0.05246330797672272, + 0.04523086175322533, + 0.02208649553358555, + -0.07289718091487885, + -0.07136836647987366, + -0.11146143078804016, + -0.03053017146885395, + 0.06245572865009308, + -2.730025385699283e-33, + -0.02342671900987625, + 0.0060113356448709965, + -0.05296110734343529, + -0.06945309787988663, + -0.04097585380077362, + 0.04639163613319397, + -0.030786314979195595, + 0.07769268751144409, + -0.04234831780195236, + 0.03907114639878273, + 0.015699569135904312, + -0.015565737150609493, + -0.003978591877967119, + 0.07588234543800354, + -0.02879376709461212, + 0.018254389986395836, + -0.037253234535455704, + 0.04914465546607971, + 0.051964689046144485, + 0.07600238174200058, + -0.0173669271171093, + 0.06700075417757034, + 0.035442471504211426, + -0.034875694662332535, + -0.0009204976377077401, + -0.016720157116651535, + -0.0019289670744910836, + -0.03464798629283905, + 0.10606912523508072, + 0.022980019450187683, + 0.060710608959198, + -0.006837672088295221, + 0.021064922213554382, + 0.029228314757347107, + -0.09448003023862839, + -0.020260130986571312, + 0.047761186957359314, + -0.07487454265356064, + 0.013381825760006905, + -0.03197189420461655, + -0.056468576192855835, + -0.03634234890341759, + -0.0438842698931694, + -0.025951437652111053, + -0.036702919751405716, + 0.1303212195634842, + -0.0037928761448711157, + -0.12096746265888214, + 0.025503208860754967, + 0.03404855728149414, + -0.015778791159391403, + -0.06510010361671448, + -0.06304434686899185, + -0.04625146463513374, + 0.010821210220456123, + -0.05757567286491394, + -0.0022942754440009594, + 0.02531246654689312, + 0.0029995180666446686, + -0.08472377806901932, + 0.022240743041038513, + 0.004402800928801298, + 0.0799175500869751, + -0.06139804795384407, + -0.047990135848522186, + 0.08308521658182144, + -0.009600951336324215, + -0.03795681148767471, + -0.03516988083720207, + -0.007490260526537895, + -0.09859996289014816, + 0.06628622114658356, + 0.14829184114933014, + 0.012406749650835991, + 0.015129764564335346, + -0.02821103297173977, + 0.04119793325662613, + -0.0009106924990192056, + 0.04007852450013161, + 0.07515648007392883, + -0.13112413883209229, + 0.02942793443799019, + 0.0012051876401528716, + 0.10410416126251221, + 0.03306150063872337, + 0.07799558341503143, + 0.024385279044508934, + -0.06601682305335999, + 0.039637934416532516, + 0.010889002121984959, + -0.04173678904771805, + -0.10392750054597855, + -0.019991004839539528, + -0.08161674439907074, + -0.03633661940693855, + 9.235537116202309e-35, + -0.00790057796984911, + 0.0654195100069046, + -0.05216353386640549, + 0.08064769208431244, + -0.06788494437932968, + 0.009030550718307495, + -0.0011137424735352397, + 0.0019833159167319536, + 0.09299972653388977, + 0.07749751955270767, + 0.03069681115448475, + -0.034822918474674225, + -0.02122407779097557, + -0.045438800007104874, + 0.07682717591524124, + -0.0902584046125412, + -0.018747398629784584, + 0.02251548133790493, + -0.007113268133252859, + 0.04208530858159065, + 0.001527778571471572, + -0.04913753271102905, + 0.0018999968888238072, + 0.02841460518538952, + 0.025904694572091103, + 0.008012811653316021, + 0.020196691155433655, + -0.05455342307686806, + -0.0010021352209150791, + 0.03917088359594345, + -0.0007425231742672622, + 0.05364523455500603, + -0.010576056316494942, + -0.018644511699676514, + -0.07647812366485596, + 0.009414958767592907, + 0.005429255776107311, + -0.018626870587468147, + 0.06585632264614105, + 0.0026244407054036856, + 0.006095980294048786, + -0.01970437727868557, + 0.007431828882545233, + 0.028646957129240036, + -0.008280042558908463, + -0.05858888104557991, + -0.03101695328950882, + 0.019744031131267548, + 0.07678074389696121, + 0.003614067565649748, + 0.05048020929098129, + 0.02593938447535038, + -0.0525636300444603, + -0.017899122089147568, + -0.11037153750658035, + 0.03484443202614784, + 0.03937748074531555, + -0.025226270779967308, + -8.281144982902333e-05, + -0.004965334665030241, + -0.055133383721113205, + 0.021931014955043793, + 0.029813507571816444, + 0.027682626619935036, + -0.022265272215008736, + 0.04508903995156288, + 0.0796070545911789, + -0.041728273034095764, + 0.11451917886734009, + -0.029307832941412926, + -0.06609521061182022, + -0.027028562501072884, + 0.0356365330517292, + -0.002840080764144659, + 0.03428635001182556, + -0.006311653181910515, + 0.02255867049098015, + -0.045665983110666275, + 0.104396753013134, + 0.01499075349420309, + 0.04246360436081886, + 0.05731184780597687, + 0.09476705640554428, + 0.04157060384750366, + -0.04786016047000885, + -0.060436323285102844, + -0.06380060315132141, + 0.0772334411740303, + 0.0062720756977796555, + -0.05622716620564461, + -0.03496599569916725, + 0.032866962254047394, + 0.006503710523247719, + -0.018671132624149323, + -0.03393280506134033, + -1.9330489209323787e-08, + -0.016525104641914368, + -0.08431138843297958, + -0.007371168117970228, + 0.018303917720913887, + 0.061561260372400284, + -0.03577973693609238, + -0.036718059331178665, + -0.03499431908130646, + -0.029590750113129616, + 0.024287374690175056, + 0.029724713414907455, + -0.031458210200071335, + -0.13008563220500946, + -0.14736506342887878, + -0.05489247292280197, + -0.008913174271583557, + -0.01334313116967678, + -0.06506327539682388, + -0.045588359236717224, + -0.03371189162135124, + -0.015478544868528843, + 0.06004784256219864, + 0.030156539753079414, + -0.008435358293354511, + 0.024557774886488914, + -0.004469477571547031, + 0.00925354938954115, + 0.08922336250543594, + 0.04948548227548599, + -0.018143342807888985, + 0.04189825430512428, + 0.05291112884879112, + 0.018797658383846283, + 0.06283219158649445, + 0.014721172861754894, + -0.07120067626237869, + 0.01627691648900509, + 0.10865449160337448, + -0.03275766223669052, + 0.053352415561676025, + -0.04019923508167267, + -0.12914465367794037, + -0.08043849468231201, + -0.040764179080724716, + 0.04070255905389786, + 0.04390382021665573, + -0.09049747884273529, + 0.001981213456019759, + -0.0411822572350502, + -0.0996527150273323, + -0.02452102303504944, + -0.003706872696056962, + 0.05264751985669136, + 0.1287074238061905, + -0.015941565856337547, + -0.05939389020204544, + 0.0054467604495584965, + 0.0029981096740812063, + -0.03964437171816826, + 0.02431923896074295, + 0.04552767798304558, + -0.04477928578853607, + 0.008514906279742718, + -0.02212437242269516 + ], + "currency-inr-bold||money,rupees,payment,paying,purchase": [ + -0.02953934669494629, + 0.006725046783685684, + -0.09098505973815918, + 0.01672498881816864, + 0.028752630576491356, + -0.08045196533203125, + 0.09178332984447479, + -0.005724759306758642, + 0.020620418712496758, + -0.014500332996249199, + 0.022876914590597153, + -0.07248679548501968, + 0.04137609526515007, + 0.02334650233387947, + 0.025578869506716728, + -0.012872050516307354, + 0.00790389720350504, + 0.027612071484327316, + 0.012108906172215939, + 0.0385369211435318, + 0.00965938251465559, + 0.002480915514752269, + -0.06841331720352173, + 0.05226903036236763, + 0.06314358115196228, + -0.009546464309096336, + 0.06285630911588669, + -0.03205983340740204, + -0.0017304818611592054, + -0.036329660564661026, + -0.006966907996684313, + 0.015779269859194756, + 0.07083670049905777, + -0.00974647793918848, + 0.016243962571024895, + -0.018312059342861176, + 0.04396527260541916, + -0.027167845517396927, + -0.01332030352205038, + -0.0033296775072813034, + -0.017866389825940132, + -0.1154453381896019, + -0.01034665945917368, + -0.04330193251371384, + 0.004195245914161205, + 0.022435229271650314, + -0.002976577263325453, + 0.07185214757919312, + -0.0034233885817229748, + 0.018564315512776375, + 0.04312208294868469, + -0.02899525687098503, + -0.07198929041624069, + 0.06342463195323944, + 0.04625862464308739, + 0.009253491647541523, + 0.0020440686494112015, + -0.01912263222038746, + 0.04555998370051384, + -0.0586467906832695, + -0.0005942878196947277, + 0.05854705721139908, + -0.0035007407423108816, + 0.025018425658345222, + 0.012077718041837215, + -0.0030078093986958265, + 0.003327475395053625, + 0.04071858525276184, + -0.09904147684574127, + 0.05430566892027855, + 0.05794930458068848, + -0.03166598081588745, + 0.0033072996884584427, + -0.03269162029027939, + -0.07508731633424759, + -0.03695419430732727, + 0.08782848715782166, + 0.012580303475260735, + -0.0687650814652443, + -0.048158321529626846, + -0.006605479400604963, + -0.034919362515211105, + -0.007159645669162273, + -0.07268570363521576, + 0.07854041457176208, + 0.03847846761345863, + 0.02700725570321083, + -0.08966711908578873, + 0.024561408907175064, + -0.022092534229159355, + -0.010743909515440464, + 0.017245430499315262, + 0.05792800709605217, + -0.001741030253469944, + -0.011268054135143757, + 0.009433174505829811, + 0.06176513060927391, + 0.025046123191714287, + 0.05506933107972145, + 0.04403259977698326, + 0.09340336918830872, + 0.02720516547560692, + 0.027779553085565567, + 0.016502700746059418, + -0.03619341924786568, + -0.04407463222742081, + -0.023610740900039673, + 0.026044171303510666, + 0.023070771247148514, + 0.01605779491364956, + -0.06910697370767593, + -0.05783919245004654, + 0.022613782435655594, + -0.02352534979581833, + -0.03852347284555435, + 0.024827783927321434, + -0.076289601624012, + -0.042252317070961, + 0.1436203420162201, + 0.07546187937259674, + 0.011097924783825874, + 0.03722718730568886, + -0.08211709558963776, + -0.02839200757443905, + -0.0582391582429409, + -0.030743123963475227, + 0.07673916220664978, + -3.07919459500952e-33, + -0.05465950071811676, + 0.005035421811044216, + -0.059339821338653564, + -0.05173395574092865, + -0.07035724818706512, + 0.05869815871119499, + -0.035495009273290634, + 0.0635879635810852, + -0.07606501877307892, + -0.006776004564017057, + 0.043168723583221436, + 0.006516152061522007, + 0.017593353986740112, + 0.1084943562746048, + 0.049861226230859756, + -0.01256685983389616, + -0.008346697315573692, + -0.023026350885629654, + 0.02459564618766308, + 0.10585511475801468, + -0.04958445951342583, + 0.020322220399975777, + -0.029000114649534225, + 0.034186121076345444, + 0.003772604977712035, + 0.004216311499476433, + 0.015226323157548904, + -0.02608509548008442, + 0.020616212859749794, + -0.0008236695430241525, + 0.07657092064619064, + 0.006708410102874041, + 0.03373413160443306, + 0.04066886752843857, + -0.11069658398628235, + -0.003052196465432644, + 0.09322664886713028, + -0.03251141682267189, + -0.04547681659460068, + -0.045313626527786255, + -0.07137113809585571, + -0.004707629326730967, + -0.08528026938438416, + -0.005708600860089064, + -0.01836335100233555, + 0.1783352792263031, + 0.016875604167580605, + -0.07307136803865433, + 0.024874571710824966, + 0.001683841343037784, + -0.04310428351163864, + -0.012792930006980896, + -0.08057569712400436, + -0.0459829717874527, + 0.01645449362695217, + -0.023426489904522896, + -0.021990031003952026, + -0.014173423871397972, + -0.029261287301778793, + -0.046427417546510696, + -0.023527497425675392, + -0.06295062601566315, + 0.07202853262424469, + -0.08291217684745789, + -0.06056783348321915, + 0.06600750982761383, + -0.025508712977170944, + -0.026376549154520035, + 0.023702125996351242, + 0.00833117961883545, + -0.14058639109134674, + 0.051021724939346313, + 0.11513733863830566, + 0.13970576226711273, + 0.014678423292934895, + 0.052483074367046356, + 0.044357091188430786, + -0.02219526842236519, + 0.029396113008260727, + 0.029015643522143364, + -0.13740041851997375, + 0.023954516276717186, + 0.02445184253156185, + 0.14773136377334595, + 0.015007932670414448, + 0.07151737809181213, + 0.0028084858786314726, + -0.0779341384768486, + 0.04767777770757675, + -0.0010508758714422584, + -0.00551066966727376, + -0.06690051406621933, + -0.04521860182285309, + -0.05856302008032799, + -0.029599731788039207, + -6.813966522069957e-34, + 0.0370698906481266, + 0.08029378950595856, + -0.05007820948958397, + 0.0645584687590599, + -0.05284618213772774, + 0.06600368767976761, + -0.011495014652609825, + 0.04002399742603302, + 0.10879687964916229, + 0.03357513248920441, + 0.026695771142840385, + -0.017867691814899445, + -0.053879182785749435, + -0.007731120567768812, + 0.06592286378145218, + -0.04499059170484543, + 0.002169055165722966, + 0.0437488928437233, + -0.027097906917333603, + 0.009880018420517445, + -0.041185006499290466, + -0.008524908684194088, + 0.001110912999138236, + 0.02784223109483719, + -0.04270422086119652, + 0.0429396852850914, + -0.010697451420128345, + -0.07443132251501083, + -0.09041528403759003, + 0.06317279487848282, + -0.008160554803907871, + -0.034536298364400864, + 0.0003081563045270741, + 0.0011641583405435085, + -0.08639197051525116, + 0.011615056544542313, + 0.007569454610347748, + -0.034838464111089706, + 0.01926397532224655, + -0.0108606843277812, + -0.00684765912592411, + 0.009598197415471077, + 0.00820854026824236, + 0.04229570925235748, + -0.030903683975338936, + -0.12144310027360916, + -0.012731381691992283, + 0.021227005869150162, + 0.03969503939151764, + -0.04707749933004379, + 0.019835419952869415, + -0.023015277460217476, + 0.0016216110670939088, + -0.04622512310743332, + -0.08314865082502365, + 0.00982176698744297, + 0.06474466621875763, + -0.03644975647330284, + -0.002290260512381792, + 0.018887553364038467, + -0.03308058902621269, + 0.06466580927371979, + 0.01699010282754898, + 0.04502192512154579, + -0.0699591264128685, + -0.01798667386174202, + 0.0663280189037323, + -0.053584661334753036, + 0.13031424582004547, + -0.06252823024988174, + -0.01228575874119997, + -0.047239627689123154, + 0.015316201373934746, + 0.054357897490262985, + 0.04867628961801529, + 0.007965313270688057, + -0.01777469366788864, + -0.03490866348147392, + 0.06235332414507866, + 0.05340920388698578, + -0.02699248492717743, + 0.024508582428097725, + 0.026409417390823364, + 0.0013174331979826093, + -0.06733822822570801, + -0.047654397785663605, + -0.04969362914562225, + -0.02209170162677765, + 0.04158724844455719, + -0.09317781776189804, + -0.05020106956362724, + 0.06597831845283508, + 0.01232477929443121, + -0.022563554346561432, + -0.034399326890707016, + -2.1739053224223426e-08, + -0.016608137637376785, + -0.08379105478525162, + -0.028087064623832703, + 0.008662540465593338, + 0.024032389745116234, + -0.03777125105261803, + -0.03265552967786789, + -0.04478132352232933, + -0.05917245149612427, + 0.07722495496273041, + 0.018397117033600807, + -0.014068612828850746, + -0.11088323593139648, + -0.10198595374822617, + -0.017641648650169373, + 0.045717041939496994, + 0.019737672060728073, + 0.03547301143407822, + -0.06792526692152023, + -0.05191255360841751, + 0.023002739995718002, + 0.08950496464967728, + 0.03555625304579735, + -0.0656488686800003, + 0.028040815144777298, + -0.01437870692461729, + -0.005067045800387859, + 0.10528981685638428, + 0.054721441119909286, + 0.022221248596906662, + 0.011557111516594887, + 0.07532981783151627, + -0.005656864028424025, + 0.004481160081923008, + -0.029958222061395645, + -0.04223616421222687, + 0.02879185415804386, + 0.08029399067163467, + -0.004459051880985498, + 0.077490895986557, + -0.03537154570221901, + -0.11579528450965881, + -0.0910201296210289, + -0.040345992892980576, + 0.01560240425169468, + 0.07206909358501434, + -0.06374958157539368, + -0.037132278084754944, + -0.027668453752994537, + -0.1667366623878479, + -0.03698395565152168, + 0.02923986129462719, + 0.05921488627791405, + 0.07407622039318085, + -0.04112739861011505, + -0.04014856740832329, + -0.04464726522564888, + 0.025683626532554626, + -0.02401801198720932, + -0.013567590154707432, + 0.068632572889328, + -0.05020618438720703, + 0.029657455161213875, + -0.03474705293774605 + ], + "currency-jpy-bold||money,yen,payment,paying,purchase": [ + -0.02091365121304989, + 0.027987027540802956, + -0.05981667712330818, + 0.043182507157325745, + -0.02407790906727314, + -0.06644639372825623, + 0.09890051931142807, + 0.03155357018113136, + -0.006463684141635895, + -0.05051247775554657, + 0.05304524675011635, + -0.0621957965195179, + 0.04301885887980461, + 0.03735475242137909, + 0.056596752256155014, + -0.03087173029780388, + -0.01755092665553093, + 0.06851367652416229, + -0.009547383524477482, + 0.005834823939949274, + 0.018097059801220894, + -0.0330735519528389, + 0.004556962288916111, + -0.02943168580532074, + 0.0909418836236, + -0.018673209473490715, + 0.07000963389873505, + -0.018170030787587166, + -0.0014798223273828626, + -0.0005627474747598171, + -0.05735384672880173, + 0.03521651774644852, + 0.11727014929056168, + -0.028098847717046738, + 0.07634203881025314, + -0.024568265303969383, + 0.06272783875465393, + -0.0011616229312494397, + -0.045263294130563736, + 0.008710121735930443, + -0.04887455329298973, + -0.06137945502996445, + 0.014609217643737793, + -0.054148562252521515, + -0.01938285306096077, + 0.009408068843185902, + 0.024748152121901512, + 0.05725371465086937, + 0.017604850232601166, + 0.05530852824449539, + 0.02666243351995945, + -0.026655854657292366, + -0.07422797381877899, + 0.06388962268829346, + 0.01876327022910118, + 0.04993559047579765, + 0.0174187570810318, + 0.023067506030201912, + 0.0030189163517206907, + -0.04731375351548195, + -0.06560239940881729, + 0.03615109995007515, + -0.0005500728730112314, + -0.00020226229389663786, + 0.03414670377969742, + -0.013911265879869461, + -0.01933913305401802, + 0.003039522562175989, + -0.031119028106331825, + -0.03360378369688988, + 0.04125009849667549, + -0.02936718985438347, + -0.006641756277531385, + -0.06216390058398247, + -0.09341076761484146, + -0.009267955087125301, + 0.14816910028457642, + -0.004487274680286646, + 0.011986172758042812, + -0.04310453683137894, + -0.0523221381008625, + -0.0011011172318831086, + 0.030809998512268066, + -0.09858077019453049, + 0.08817210048437119, + 0.05940012261271477, + -0.01116296835243702, + -0.05434942990541458, + 0.04237106069922447, + 0.02234809473156929, + 0.02829393371939659, + -0.007703515235334635, + 0.057577963918447495, + 0.012536601163446903, + -0.031049808487296104, + 0.03944684937596321, + 0.06214550882577896, + 0.0005033412016928196, + 0.02075442485511303, + 0.05661148950457573, + 0.10509368032217026, + 0.01936701312661171, + 0.1008291020989418, + 0.03433811292052269, + 0.022783003747463226, + 0.00968917179852724, + 0.022654270753264427, + 0.014918508939445019, + -0.004137559328228235, + 0.03135373815894127, + -0.10333625227212906, + -0.05077490210533142, + -0.00831625610589981, + -0.05264900624752045, + -0.02479461207985878, + 0.04853944480419159, + -0.04930686950683594, + 0.005528903566300869, + 0.0638640969991684, + -0.01916339620947838, + 0.03702745586633682, + 0.03386908024549484, + -0.06522170454263687, + -0.02995007112622261, + -0.09742505103349686, + 0.009210128337144852, + 0.058873292058706284, + -2.3850479157756815e-33, + -0.03211083263158798, + -0.008750209584832191, + 0.005822592880576849, + -0.08044566959142685, + -0.1078750416636467, + 0.022829748690128326, + -0.017323868349194527, + 0.06754189729690552, + -0.06115918606519699, + 0.0250120609998703, + -0.01797664538025856, + 0.019072437658905983, + -0.014528829604387283, + 0.06058000773191452, + -0.02130209654569626, + -0.009075554087758064, + -0.011235254816710949, + 0.0032834524754434824, + 0.049760203808546066, + 0.09620912373065948, + -0.00021465792087838054, + 0.041920360177755356, + 0.027138132601976395, + 0.01321327593177557, + -0.019937286153435707, + 0.017423273995518684, + 0.009184109978377819, + -0.02047443948686123, + -0.009435610845685005, + 0.04702578857541084, + 0.03138837218284607, + -0.05270012840628624, + 0.02695685625076294, + 0.01159218791872263, + -0.10830434411764145, + -0.009114406071603298, + 0.06331530213356018, + -0.017581216990947723, + -0.028408240526914597, + -0.049796175211668015, + -0.0997345820069313, + -0.03580281138420105, + -0.07911692559719086, + 0.029245147481560707, + -0.03994567319750786, + 0.1346983015537262, + 0.016681307926774025, + -0.061887700110673904, + 0.03129064291715622, + 0.04944906011223793, + -0.11944223940372467, + -0.033315375447273254, + -0.07624246180057526, + -0.01513030007481575, + 0.04660937562584877, + -0.04191400110721588, + 0.06046782061457634, + 0.039784397929906845, + -0.036512963473796844, + -0.07095176726579666, + -0.04705220088362694, + -0.008868176490068436, + 0.0308828204870224, + -0.013619191013276577, + -0.04728221148252487, + 0.12076282501220703, + -0.07255314290523529, + -0.03827492892742157, + -0.002267554635182023, + 0.027079397812485695, + -0.08341797441244125, + 0.0384427048265934, + 0.10495864599943161, + 0.11480852961540222, + 0.016234077513217926, + -0.0314890518784523, + 0.09563469141721725, + -0.019964544102549553, + 0.07134653627872467, + 0.013421287760138512, + -0.12509840726852417, + 0.048977360129356384, + -0.006653726566582918, + 0.1525307595729828, + 0.03472432494163513, + 0.12495635449886322, + 0.014486955478787422, + -0.05021354928612709, + 0.013499537482857704, + -0.008256008848547935, + 0.015151583589613438, + -0.012259826064109802, + 0.011060274206101894, + -0.03471597284078598, + -0.046957626938819885, + 4.358938764360436e-34, + -0.023360861465334892, + 0.09370432049036026, + -0.09197892993688583, + -0.0073871794156730175, + -0.0797460526227951, + -0.0037789354100823402, + -0.028639737516641617, + 0.04332690313458443, + 0.029781358316540718, + 0.006455936003476381, + -0.05316280201077461, + -0.09329397231340408, + -0.06962902843952179, + -0.018547944724559784, + 0.054660361260175705, + -0.045081570744514465, + 0.0406501330435276, + 0.03132464736700058, + 0.02045632340013981, + 0.052593063563108444, + -0.016043011099100113, + 0.004805737175047398, + -0.0108012231066823, + 0.04382035508751869, + -0.0239639300853014, + 0.01779232919216156, + 0.03505214303731918, + -0.03962807357311249, + -0.06722089648246765, + 0.10235179960727692, + 0.01152045838534832, + -0.05086155980825424, + -0.01177562028169632, + -0.022632306441664696, + -0.020894354209303856, + -0.029174981638789177, + -0.01263916864991188, + -0.008155202493071556, + 0.0200300682336092, + 0.004621962551027536, + -0.028239786624908447, + -0.052187997847795486, + 0.0017301248153671622, + 0.08878611028194427, + -0.027796704322099686, + -0.038590382784605026, + -0.05710386484861374, + 0.04339851066470146, + 0.05991184338927269, + -0.0867578536272049, + -0.00028145380201749504, + -0.04240625351667404, + -0.018761228770017624, + -0.03509419783949852, + -0.14347100257873535, + 0.029866326600313187, + 0.07681296765804291, + -0.0060991751961410046, + 0.012588691897690296, + 0.03160789981484413, + -0.04234521463513374, + 0.011223542504012585, + 0.029368698596954346, + 0.05693104863166809, + -0.023295516148209572, + -0.007487913593649864, + 0.09546249359846115, + -0.032496992498636246, + 0.08774787932634354, + -0.08129456639289856, + 0.003621975425630808, + -0.010779742151498795, + 0.05902402475476265, + 0.03427564352750778, + 0.031340766698122025, + -0.008451593108475208, + -0.023380659520626068, + -0.018625201657414436, + 0.09311354905366898, + 0.053454671055078506, + 0.021128473803400993, + 0.05299584940075874, + 0.04137413948774338, + -0.008232001215219498, + -0.028040887787938118, + -0.04299168288707733, + -0.06134633347392082, + 0.0010618400992825627, + 0.014104424975812435, + -0.05935423821210861, + -0.051410213112831116, + 0.11800257116556168, + -0.0004910160787403584, + -0.007846162654459476, + -0.0402415432035923, + -1.81224351081255e-08, + -0.014099310152232647, + -0.10887280851602554, + -0.0009567481465637684, + -0.0077127558179199696, + -0.01063858438283205, + -0.013838852755725384, + -0.08418966829776764, + -0.053415004163980484, + -0.04150097817182541, + 0.019768541678786278, + 0.03539806231856346, + 0.062127936631441116, + -0.0776839554309845, + -0.08398371189832687, + -0.08634375035762787, + -0.03090406022965908, + 0.041988760232925415, + 0.05632500350475311, + -0.06085888668894768, + -0.04843065142631531, + 0.037963494658470154, + 0.029358720406889915, + 0.028584007173776627, + -0.04924442991614342, + 0.02131039649248123, + 0.002933575538918376, + 0.012498224154114723, + 0.1272309422492981, + 0.03461237624287605, + -0.03489970043301582, + 0.021324096247553825, + 0.060277555137872696, + 0.005750248208642006, + 0.0414457768201828, + -0.055484384298324585, + -0.02039475366473198, + -0.004772651009261608, + 0.00024179340107366443, + -0.09879442304372787, + 0.05936828628182411, + -0.05196366831660271, + -0.09720075875520706, + -0.10005570203065872, + -0.021222883835434914, + 0.06434778869152069, + 0.04553770273923874, + -0.050497107207775116, + -0.0024391270708292723, + -0.013709867373108864, + -0.14510750770568848, + -0.05426592752337456, + -0.0058799139223992825, + 0.026725715026259422, + 0.05436083301901817, + -0.01678943820297718, + -0.049034908413887024, + -0.010464771650731564, + 0.032744716852903366, + 0.008317318744957447, + 0.026957770809531212, + 0.03794364631175995, + -0.060247987508773804, + 0.0010318333515897393, + -0.06346369534730911 + ], + "currency-krw-bold||money,won,payment,paying,purchase": [ + -0.03830843046307564, + 0.05476988106966019, + -0.052970729768276215, + -0.0013881918275728822, + -0.022430913522839546, + -0.026080919429659843, + 0.0915088951587677, + -0.03683539479970932, + 0.028032945469021797, + 0.01268273126333952, + 0.031715333461761475, + -0.11891721189022064, + 0.0344175286591053, + 0.020276714116334915, + -0.032388221472501755, + -0.005946160759776831, + -0.03501947224140167, + 0.017424754798412323, + -0.019722431898117065, + -0.01931789331138134, + 0.017524179071187973, + -0.006749072577804327, + -0.03178854659199715, + 0.025373093783855438, + 0.09387536346912384, + 0.028624452650547028, + 0.023311495780944824, + 0.02447596937417984, + 0.05031966045498848, + -0.024179916828870773, + -0.035038940608501434, + -0.004433237947523594, + 0.06565425544977188, + 0.009356464259326458, + 0.032049547880887985, + -0.03952891752123833, + -0.037129588425159454, + -0.025423070415854454, + -0.06174561008810997, + -0.016948344185948372, + -0.013275637291371822, + -0.12121265381574631, + -0.014337096363306046, + -0.026649557054042816, + -0.014370611868798733, + 0.050375811755657196, + -0.017804177477955818, + 0.07304877787828445, + -0.02240925095975399, + 0.064332976937294, + 0.06529706716537476, + -0.09084241092205048, + -0.04278571903705597, + 0.043062299489974976, + 0.07554418593645096, + 0.015286311507225037, + -0.03811505809426308, + 0.002483336953446269, + 0.06099196895956993, + -0.07622632384300232, + 0.012738652527332306, + 0.03208942711353302, + -0.04084094986319542, + 0.03344007581472397, + 0.002416220959275961, + 0.024759840220212936, + -0.016750939190387726, + 0.035946864634752274, + -0.09569378942251205, + 0.02168426662683487, + 0.096817247569561, + -0.09239624440670013, + 0.03213151544332504, + -0.042894307523965836, + -0.05496471747756004, + -0.012543458491563797, + 0.10269321501255035, + -0.016692036762833595, + -0.01913202367722988, + -0.029486291110515594, + -0.04248223081231117, + -0.041402656584978104, + -0.058504827320575714, + -0.06287222355604172, + 0.07769260555505753, + 0.008542980998754501, + -0.013701370917260647, + -0.06030937284231186, + 0.06602686643600464, + -0.05368230864405632, + -0.014725210145115852, + -0.021337568759918213, + 0.0506378635764122, + -0.038407303392887115, + -0.045195870101451874, + 0.03553196042776108, + 0.08515513688325882, + 0.026161758229136467, + 0.023375146090984344, + 0.06967592239379883, + 0.06470050662755966, + 0.05800894275307655, + 0.04856693372130394, + -0.016099276021122932, + 0.008944106288254261, + -0.02100481651723385, + -0.01632445864379406, + 0.04249197617173195, + 0.011293292045593262, + 0.013847047463059425, + -0.09469885379076004, + 0.010039538145065308, + 0.011716274544596672, + -0.018764229491353035, + 0.01573323830962181, + 0.034240879118442535, + -0.056734733283519745, + -0.0595935620367527, + 0.10790450125932693, + 0.06736187636852264, + 0.05108741670846939, + -0.005094395484775305, + -0.11839906871318817, + -0.011677074246108532, + -0.05681060254573822, + -0.048240069299936295, + 0.06585793197154999, + -3.44365661848197e-33, + 0.011928612366318703, + 0.004051471594721079, + -0.024972684681415558, + -0.04798809438943863, + -0.03640352189540863, + -0.015028095804154873, + -0.03381965309381485, + 0.031812723726034164, + -0.10964217782020569, + 0.01573231816291809, + -0.0020216526463627815, + 0.05000399798154831, + 0.02770014852285385, + 0.08171450346708298, + 0.009221657179296017, + -0.0133719677105546, + -0.050245512276887894, + -0.04062445089221001, + 0.026233118027448654, + 0.08795268833637238, + 0.026343027129769325, + 0.01972300559282303, + 0.021269584074616432, + 0.020707273855805397, + -0.01917601376771927, + -0.023145366460084915, + -0.012846328318119049, + -0.05418536067008972, + 0.041374582797288895, + 0.02433333545923233, + 0.05803042650222778, + -0.04360610246658325, + 0.02995745651423931, + 0.007639115210622549, + -0.12416698783636093, + 0.012142078951001167, + -0.00238631060346961, + -0.007724401541054249, + 0.014438200742006302, + -0.031432975083589554, + -0.07767316699028015, + -0.04822757467627525, + -0.09104757010936737, + 0.023138295859098434, + -0.044684357941150665, + 0.1417967826128006, + 0.006119323894381523, + -0.09963415563106537, + 0.01481658685952425, + 0.0312507338821888, + -0.02734331600368023, + -0.04799814894795418, + -0.091289222240448, + -0.005318064242601395, + 0.06644927710294724, + -0.006533824373036623, + 0.038163922727108, + 0.008598791435360909, + -0.06215574964880943, + -0.09456878900527954, + -0.025857964530587196, + -0.010575483553111553, + 0.068689726293087, + -0.01799493469297886, + -0.08310995250940323, + 0.05308268964290619, + -0.03084343858063221, + -0.02270379476249218, + -0.036177895963191986, + -0.010020110756158829, + -0.07150439918041229, + 0.08540968596935272, + 0.10222118347883224, + 0.07697325944900513, + 0.041397709399461746, + -0.003818406257778406, + 0.05937860906124115, + -0.03536544740200043, + 0.01815199665725231, + 0.02808598056435585, + -0.07534480839967728, + 0.020373448729515076, + 0.011967453174293041, + 0.13834092020988464, + 0.054023101925849915, + 0.06706170737743378, + 0.011206709779798985, + -0.12245616316795349, + -0.0008691414259374142, + -0.01597987487912178, + -0.037075627595186234, + -0.07234315574169159, + 0.029546653851866722, + -0.07395561784505844, + -0.06483636051416397, + 9.020706914011771e-34, + 0.022109802812337875, + 0.06061411648988724, + -0.02534765563905239, + 0.04396231099963188, + -0.05991027131676674, + 0.056355174630880356, + -0.010226558893918991, + 0.06530860811471939, + 0.08169525861740112, + 0.02404937706887722, + 0.046131234616041183, + -0.01968778483569622, + -0.03169586881995201, + 0.015169418416917324, + 0.10134043544530869, + -0.0574662871658802, + 0.039566945284605026, + 0.06405194103717804, + 0.016375761479139328, + 0.012842070311307907, + -0.029806774109601974, + -7.346007805608679e-06, + -0.07195908576250076, + 0.042659759521484375, + -0.045399729162454605, + 0.02530856244266033, + 0.014687680639326572, + -0.02845335565507412, + -0.07363475859165192, + 0.08083177357912064, + -0.0030072294175624847, + -0.05797165632247925, + -0.010750692337751389, + 0.040182314813137054, + -0.02857912704348564, + 0.01118794921785593, + 0.05023627355694771, + -0.0280753280967474, + 0.007939817383885384, + -0.016907382756471634, + 0.0034057702869176865, + 0.0066908267326653, + 0.0005228849477134645, + 0.0563233345746994, + -0.05306389927864075, + -0.09215887635946274, + -0.026956157758831978, + -0.033957768231630325, + 0.09229523688554764, + -0.07061492651700974, + 0.06953582912683487, + -0.009680318646132946, + -0.027148745954036713, + 0.014983871951699257, + -0.1289341300725937, + 0.0970546156167984, + 0.06345512717962265, + -0.011986234225332737, + -0.002172884764149785, + 0.05182093009352684, + -0.09824579954147339, + -0.0015767503064125776, + 0.024304594844579697, + 0.0827370211482048, + -0.0485328771173954, + -0.04529433324933052, + 0.04721192270517349, + -0.02311498485505581, + 0.10682100802659988, + -0.04627469182014465, + -0.013659882359206676, + 0.027018167078495026, + -0.006012242287397385, + 0.028952520340681076, + 0.04775591567158699, + 0.013535024598240852, + -0.017756514251232147, + 0.03400886431336403, + 0.031207438558340073, + 0.05545736104249954, + 0.029992634430527687, + 0.03127017989754677, + 0.030436905100941658, + -0.006890653166919947, + -0.007250942289829254, + -0.008143246173858643, + -0.01963796280324459, + -0.007691273465752602, + 0.023054365068674088, + -0.08159445226192474, + -0.0458233468234539, + 0.03589222952723503, + 0.03237787261605263, + -0.009803720749914646, + -0.028673967346549034, + -2.0817566337427706e-08, + -0.030823614448308945, + -0.060614682734012604, + -0.042527444660663605, + 0.0004430733388289809, + 0.03844578191637993, + 0.015926023945212364, + 0.0034472441766411066, + -0.08765151351690292, + -0.08144402503967285, + 0.0026872935704886913, + 0.05624424293637276, + 0.03684986010193825, + -0.16022402048110962, + -0.10384032875299454, + -0.03019466996192932, + -0.0027190835680812597, + -0.0126142343506217, + 0.01392306201159954, + -0.032458022236824036, + -0.03975959122180939, + 0.05429058149456978, + 0.05838373675942421, + 0.02977362461388111, + -0.05482025444507599, + -0.012704385444521904, + 0.017614565789699554, + 0.013896634802222252, + 0.15062838792800903, + 0.044371817260980606, + -0.01354188472032547, + 0.025817036628723145, + 0.06753531843423843, + -0.015272908844053745, + 0.037711627781391144, + -0.028171943500638008, + -0.02078578807413578, + 0.0005375546170398593, + 0.06508723646402359, + -0.018691999837756157, + 0.1182706207036972, + -0.0285650622099638, + -0.025013381615281105, + -0.09427089244127274, + -0.0031171792652457952, + 0.016825741156935692, + 0.0754518136382103, + -0.04537036269903183, + -0.047929733991622925, + 0.013810214586555958, + -0.1707421839237213, + -0.014179994352161884, + -0.005866566672921181, + 0.02568839304149151, + 0.06606263667345047, + -0.026361890137195587, + -0.05857215076684952, + -0.03304349631071091, + 0.036154452711343765, + -0.002752570202574134, + -0.006972496397793293, + 0.08857938647270203, + -0.07738608121871948, + -0.00019748887280002236, + 0.0006367381429299712 + ], + "currency-kzt-bold||money,kazakhstan,tenge,payment,paying,purchase": [ + -0.03073827736079693, + 0.061820436269044876, + -0.037453703582286835, + -0.015953868627548218, + -0.03363423049449921, + -0.025999154895544052, + 0.08436962962150574, + 0.005329392850399017, + 0.013764609582722187, + 0.0005909980973228812, + -0.007456144783645868, + -0.0742284432053566, + 0.047762978821992874, + 0.024223415181040764, + -0.009317291900515556, + -0.046620387583971024, + 0.034689292311668396, + 0.04244551435112953, + 0.0059452299028635025, + -0.022249475121498108, + 0.016638753935694695, + -0.04128503054380417, + 0.056389302015304565, + -0.0011988970218226314, + 0.07555807381868362, + -0.020860066637396812, + 0.044847793877124786, + -0.006989817135035992, + 0.03803371265530586, + -0.043830759823322296, + -0.05701223388314247, + 0.021055789664387703, + 0.002464670455083251, + 0.020320851355791092, + 0.03460068628191948, + -0.025933660566806793, + -0.02193026803433895, + -0.031213775277137756, + -0.08664853125810623, + 0.052378322929143906, + 0.03786911070346832, + -0.0674021765589714, + -0.012221830897033215, + -0.045533474534749985, + 0.012189962901175022, + 0.03044375404715538, + -0.020902065560221672, + 0.0676378384232521, + -0.04853425547480583, + 0.09147505462169647, + 0.09065259248018265, + -0.08417054265737534, + -0.06593845039606094, + 0.06306551396846771, + 0.08513940870761871, + 0.03513472154736519, + -0.03741270303726196, + 0.05743079632520676, + 0.007240861188620329, + -0.033250562846660614, + 0.013082239776849747, + 0.07039737701416016, + -0.09107183665037155, + -0.0005463081179186702, + 0.028521137312054634, + 0.05071445181965828, + -0.057362496852874756, + 0.0064040361903607845, + -0.10056056827306747, + -0.018569687381386757, + 0.0802149772644043, + -0.08521619439125061, + -0.05694261193275452, + -0.046150628477334976, + -0.0977243185043335, + -0.007463563699275255, + 0.08461955934762955, + -0.03379353508353233, + -0.09131243079900742, + -0.008462531492114067, + 0.015719322487711906, + -0.003291501896455884, + 0.014573673717677593, + -0.10674242675304413, + 0.017383137717843056, + -0.003384777344763279, + 0.0023249206133186817, + -0.020530136302113533, + 0.045476436614990234, + -0.04943038895726204, + 0.03762347996234894, + 0.02396133728325367, + 0.05862216651439667, + -0.006478894967585802, + -0.01633186638355255, + 0.025452634319663048, + 0.03760676831007004, + 0.03759443759918213, + -0.0007623798446729779, + 0.037605348974466324, + 0.119444340467453, + 0.05687091127038002, + 0.06528466194868088, + 0.02506774663925171, + -0.02509274147450924, + 0.002748176222667098, + -0.017470071092247963, + 0.025963475927710533, + -0.03350222110748291, + 0.006678347941488028, + -0.10259734839200974, + -0.0018824625294655561, + 8.455758506897837e-05, + -0.0684996023774147, + 0.0029874078463763, + 0.03233494609594345, + -0.04653846099972725, + -0.09129808843135834, + 0.11589743196964264, + 0.024173326790332794, + 0.028748387470841408, + -0.021461186930537224, + -0.07054837048053741, + -0.0021332912147045135, + -0.04732804372906685, + 0.02699967287480831, + 0.048043154180049896, + -2.569768036799773e-33, + 0.00010763445607153699, + 0.025464488193392754, + 0.00574431661516428, + -0.06065075099468231, + -0.13468624651432037, + 0.04012906178832054, + -0.06441030651330948, + 0.0577155202627182, + -0.12640240788459778, + -0.008334353566169739, + 0.009577758610248566, + 0.027682969346642494, + 0.022818559780716896, + 0.025556465610861778, + -0.016963830217719078, + -0.03264779970049858, + -0.020947201177477837, + 0.021101659163832664, + 0.0601208359003067, + 0.11327654868364334, + -0.006063886918127537, + 0.04969816282391548, + -0.037786226719617844, + 0.05270412191748619, + -0.02543855831027031, + 0.013644898310303688, + -0.019444283097982407, + -0.006454057060182095, + 0.005562202539294958, + 0.003921360708773136, + 0.019955404102802277, + 0.007576094474643469, + 0.009846939705312252, + 0.036911118775606155, + -0.1619214564561844, + -0.0012228238629177213, + 0.0221230648458004, + -0.012723955325782299, + 0.006386156659573317, + -0.0689002275466919, + 0.00306555419228971, + -0.085212342441082, + -0.0707072988152504, + 0.02083432488143444, + -0.0019521118374541402, + 0.15080250799655914, + 0.02557612583041191, + -0.07037101686000824, + 0.08392661064863205, + -0.026250937953591347, + -0.054300516843795776, + 0.008760602213442326, + -0.11125446856021881, + 0.024005668237805367, + -0.0019232741324231029, + 0.0006936197751201689, + 0.04916111379861832, + -0.003683932824060321, + -0.04341459646821022, + -0.07001809030771255, + -0.01757040247321129, + -0.061908625066280365, + 0.035204119980335236, + 0.011775604449212551, + -0.04538673162460327, + 0.032265860587358475, + -0.04434380680322647, + -0.007499029394239187, + 0.008177701383829117, + 0.022953474894165993, + -0.052452512085437775, + 0.06740888953208923, + 0.10992474108934402, + 0.10789425671100616, + 0.06884664297103882, + 0.006349869072437286, + 0.07541640102863312, + 0.020220894366502762, + 0.0183388814330101, + 0.055250391364097595, + -0.09337980300188065, + -0.01111308392137289, + 0.015098346397280693, + 0.11160043627023697, + 0.01637795940041542, + 0.04811158776283264, + 0.005747614894062281, + -0.07561608403921127, + 0.03944611921906471, + -0.035256046801805496, + -0.059473566710948944, + -0.041530076414346695, + -0.010239808820188046, + -0.05517369881272316, + -0.0032265540212392807, + 7.493537255024591e-34, + 0.03541430085897446, + 0.055796392261981964, + -0.09227190166711807, + 0.07398805767297745, + -0.0014906410360708833, + 0.015344662591814995, + 0.016508638858795166, + 0.08139271289110184, + 0.055370163172483444, + 0.06465812772512436, + 0.04148459434509277, + -0.058765340596437454, + -0.02275882661342621, + -0.033010512590408325, + 0.0934104397892952, + -0.06529030948877335, + 0.029516566544771194, + 0.046631354838609695, + 0.04567628726363182, + 0.008663228712975979, + -0.043555404990911484, + -0.02081575058400631, + -0.05550561472773552, + 0.017669834196567535, + -0.03313383087515831, + 0.069056935608387, + 0.004282268695533276, + -0.08092650026082993, + -0.05658503621816635, + 0.12024203687906265, + -0.05559353157877922, + -0.039797376841306686, + 0.0031961018685251474, + 0.09327631443738937, + -0.05483444780111313, + 0.015767689794301987, + 0.024251271039247513, + 0.022685721516609192, + -0.033818598836660385, + -0.02204023487865925, + -0.03944753110408783, + 0.0140329385176301, + 0.00821406114846468, + 0.007648630999028683, + 0.02311878837645054, + -0.04834076017141342, + -0.011005336418747902, + -0.01063753105700016, + 0.04375063255429268, + -0.0858381986618042, + 0.06010247394442558, + 0.034145940095186234, + -0.006761776749044657, + -0.022387268021702766, + -0.1383037269115448, + 0.11117921769618988, + 0.05616975575685501, + 0.011132518760859966, + 0.05908513441681862, + 0.0017069943714886904, + -0.0440494641661644, + 0.043808504939079285, + 0.04473154991865158, + -0.0023329220712184906, + -0.053639695048332214, + -0.04012547433376312, + 0.0827123150229454, + 0.026060311123728752, + 0.10390452295541763, + -0.040329884737730026, + -0.055349480360746384, + 0.009363875724375248, + 0.034386586397886276, + 0.025026647374033928, + 0.025089383125305176, + 0.04548119753599167, + 0.008180133998394012, + 0.07476060837507248, + 0.0804433673620224, + 0.026628952473402023, + 0.020968975499272346, + 0.03490613028407097, + 0.023578308522701263, + 0.014665673486888409, + 0.024594619870185852, + -0.023622602224349976, + -0.0509236641228199, + -0.01950598508119583, + 0.029506636783480644, + -0.04831891134381294, + -0.10050223767757416, + 0.05821459740400314, + -0.016069212928414345, + 0.05011151731014252, + -0.02478502318263054, + -2.0223758667725633e-08, + -0.0008979438571259379, + -0.08263207226991653, + -0.08484228700399399, + 0.02636687085032463, + 0.023036262020468712, + -0.07630188018083572, + -0.004674337804317474, + -0.043715719133615494, + -0.0423053614795208, + 0.01219788659363985, + -0.0002157535927835852, + 0.003035489935427904, + -0.12897305190563202, + -0.01600402593612671, + -0.045764364302158356, + 0.01861846074461937, + -0.05123350769281387, + -0.019296815618872643, + -0.021532485261559486, + -0.006143310107290745, + 0.0035057496279478073, + 0.05344266816973686, + 0.03766197711229324, + -0.07957913726568222, + -0.018443450331687927, + 0.05557667836546898, + -0.0017187349731102586, + 0.14490410685539246, + 0.07205226272344589, + 0.0022552558220922947, + 0.008122950792312622, + 0.04831469804048538, + -0.05322487652301788, + 0.00047895076568238437, + 0.009095419198274612, + 0.013901112601161003, + 0.02852797880768776, + 0.025425385683774948, + -0.0013402396580204368, + 0.060759447515010834, + -0.029575491324067116, + -0.1036144495010376, + -0.048721808940172195, + 0.0017813544254750013, + 0.005716988351196051, + -0.038222890347242355, + -0.03926024213433266, + -0.053477853536605835, + 0.03971010819077492, + -0.12990601360797882, + -0.07270418107509613, + 0.048979129642248154, + -0.042253535240888596, + 0.009572808630764484, + -6.7723827669397e-05, + -0.053232405334711075, + -0.010494568385183811, + -0.04274014011025429, + -0.008843816816806793, + -0.002701624995097518, + 0.029277019202709198, + -0.06933870911598206, + 0.03644918277859688, + -0.05829901248216629 + ], + "currency-ngn-bold||money,nigeria,naira,payment,paying,purchase": [ + -0.04415106773376465, + -0.020402299240231514, + -0.07423534989356995, + -0.004813350737094879, + 0.0031526796519756317, + -0.06031762808561325, + 0.05282898247241974, + -0.014282295480370522, + 0.008604886010289192, + 0.01540733315050602, + -0.026124095544219017, + -0.06308919936418533, + -0.03728412091732025, + 0.034396942704916, + -0.011417697183787823, + -0.03958700969815254, + 0.015842251479625702, + 0.017538465559482574, + 0.017218081280589104, + 0.04476241022348404, + 0.012005770578980446, + 0.04693331569433212, + -0.018958982080221176, + 0.021511442959308624, + 0.07473501563072205, + -0.00833608116954565, + 0.09108024090528488, + -0.028234029188752174, + 0.04525137320160866, + -0.039217449724674225, + 0.024774914607405663, + 0.024234388023614883, + 0.030999204143881798, + -0.02191593311727047, + -0.015679705888032913, + 0.010708707384765148, + -0.004317923448979855, + -0.02122797816991806, + 0.019835686311125755, + -0.010957463644444942, + 0.048574674874544144, + -0.06626936048269272, + 0.04440939426422119, + -0.11767040938138962, + 0.07379459589719772, + 0.05349520221352577, + 0.01230755914002657, + 0.12395373731851578, + 0.036523330956697464, + 0.016698947176337242, + 0.028260020539164543, + -0.098164401948452, + -0.1340782642364502, + 0.07172102481126785, + 0.017375586554408073, + -0.02038615383207798, + -0.017264552414417267, + -0.028601499274373055, + 0.059410419315099716, + -0.009396597743034363, + -0.01621447317302227, + 0.06459859758615494, + 0.013348650187253952, + 0.00016177346697077155, + 0.10630276799201965, + -0.015837794169783592, + -0.01282968558371067, + 0.023830199614167213, + -0.10504631698131561, + 0.036011166870594025, + 0.07160031050443649, + -0.03217151388525963, + -0.016726983711123466, + -0.06010317802429199, + -0.11842834949493408, + 0.04316108301281929, + 0.06605937331914902, + -0.014834238216280937, + -0.03627088665962219, + -0.011064087972044945, + -0.004563548602163792, + 0.00495027843862772, + 0.0509306937456131, + -0.0703100934624672, + 0.03841983899474144, + -0.007434226106852293, + 0.03557264432311058, + -0.03136830776929855, + 0.04486517608165741, + -0.06623759865760803, + 0.0424225851893425, + 0.0766497403383255, + 0.10529549419879913, + 0.008224986493587494, + -1.3869368558516726e-05, + 0.008486488834023476, + 0.03168957307934761, + 0.04446232691407204, + 0.013183117844164371, + 0.0564240999519825, + 0.02710985392332077, + 0.008389499969780445, + 0.05933822691440582, + 0.010309282690286636, + -0.015157043002545834, + 0.03753754496574402, + 0.0122535964474082, + 0.014125346206128597, + 0.08170779794454575, + 0.048127368092536926, + -0.12254741787910461, + 0.005088767968118191, + -0.05111585929989815, + -0.045919209718704224, + -0.05243207514286041, + -0.0120522640645504, + -0.11252795159816742, + -0.0846836119890213, + 0.07685330510139465, + 0.0932982936501503, + -0.03484770283102989, + -0.035543087869882584, + -0.04829984903335571, + -0.05431700497865677, + -0.04799675568938255, + 0.0018776118522509933, + 0.04799698293209076, + -2.581836506691879e-33, + -0.013649609871208668, + -0.007396423723548651, + -0.03590710461139679, + -0.10974551737308502, + -0.028960349038243294, + 0.06839678436517715, + -0.044349685311317444, + 0.011207057163119316, + -0.04391791671514511, + 0.04113737493753433, + -0.034425608813762665, + 0.056474342942237854, + 0.037314217537641525, + 0.08841674029827118, + -0.029546741396188736, + -0.04962518438696861, + 0.055479180067777634, + -0.0068533592857420444, + 0.07662222534418106, + 0.12094224244356155, + 0.02762713097035885, + 0.00468775350600481, + 0.014069152995944023, + 0.04965541511774063, + 0.029127439484000206, + 0.004581268876791, + -0.0308187548071146, + -0.01067210454493761, + 0.023304414004087448, + 0.00489615136757493, + 0.06659107655286789, + -0.0730849951505661, + 0.02374427393078804, + -0.03914745897054672, + -0.09240750968456268, + -0.05333086848258972, + 0.042532846331596375, + -0.030287617817521095, + -0.02464734949171543, + -0.02677805908024311, + -0.027776526287198067, + -0.026535460725426674, + -0.04606105759739876, + 0.07383540272712708, + -0.08982205390930176, + 0.14621441066265106, + 0.023447170853614807, + -0.05897144973278046, + 0.05525662377476692, + 0.050090350210666656, + -0.07213262468576431, + -0.05396918207406998, + -0.0951654314994812, + -0.0800519660115242, + 0.026169192045927048, + -0.09340173751115799, + -0.029238270595669746, + 0.024303367361426353, + 0.0011950720800086856, + -0.10355638712644577, + -0.00017816637409850955, + -0.06270000338554382, + 0.04705331474542618, + -0.033323727548122406, + -0.05156886205077171, + 0.004384269472211599, + 0.0041616978123784065, + 0.036886267364025116, + 0.08293077349662781, + -0.11606021970510483, + -0.05378807708621025, + 0.03549588844180107, + 0.09422533214092255, + 0.12642912566661835, + 0.016640307381749153, + 0.01786614954471588, + 0.0560758039355278, + 0.026571648195385933, + 0.07712710648775101, + 0.03963049128651619, + -0.11359459906816483, + -0.0020950408652424812, + -0.03364264592528343, + 0.08198396861553192, + 0.01288654189556837, + 0.1007155105471611, + -0.01924353465437889, + -0.06779717653989792, + -0.024166446179151535, + -0.04531614109873772, + 0.006204030942171812, + 0.008012448437511921, + -0.0070834471844136715, + -0.04875247925519943, + 0.026255283504724503, + 9.137806355162826e-34, + 0.02979048155248165, + 0.06403928995132446, + -0.09208611398935318, + 0.035057149827480316, + -0.03819806128740311, + 0.01270494144409895, + 0.018205147236585617, + 0.061257027089595795, + 0.04373747110366821, + 0.053050559014081955, + 0.03833864629268646, + -0.07170822471380234, + 0.004557254258543253, + 0.0022246851585805416, + 0.04482179880142212, + -0.0838005393743515, + 0.017227942124009132, + 0.022796550765633583, + 0.038958318531513214, + 0.0031704760622233152, + -0.0314253568649292, + -0.017186319455504417, + -0.04000222310423851, + 0.0009148080134764314, + -0.014092822559177876, + 0.041563741862773895, + 0.0009495598496869206, + -0.08530054986476898, + -0.07860133796930313, + 0.09570397436618805, + -0.046533048152923584, + 0.0009650590945966542, + -0.023894459009170532, + 0.05809471383690834, + -0.07393742352724075, + -0.02254043146967888, + 0.052707333117723465, + -0.026082174852490425, + 0.009806149639189243, + -0.044981274753808975, + 0.0535179078578949, + 0.03856008127331734, + 0.017772499471902847, + 0.03995806351304054, + -0.08198178559541702, + -0.04841183125972748, + 0.003201127517968416, + 0.016923481598496437, + 0.05184241756796837, + -0.06457670032978058, + 0.049519818276166916, + 0.01926320604979992, + 0.017780093476176262, + -0.030068278312683105, + -0.06392492353916168, + 0.063245989382267, + 0.08065930008888245, + 0.016269871965050697, + 0.020029714331030846, + 0.052032940089702606, + -0.008878890424966812, + -0.0022097493056207895, + 0.05248768627643585, + 0.029606478288769722, + 0.010935114696621895, + 0.0979699194431305, + 0.03398921713232994, + -0.042340926826000214, + 0.12836596369743347, + -0.05342702940106392, + -0.007924503646790981, + -0.04215364158153534, + 0.008154853247106075, + 0.02422860823571682, + -0.0007203940185718238, + 0.05175411328673363, + 0.030233263969421387, + -0.01972634345293045, + 0.07842936366796494, + -0.02300431579351425, + 0.04673711955547333, + -0.01895635947585106, + -0.007319977041333914, + -0.03352745994925499, + -0.017736027017235756, + -0.03313634544610977, + -0.006304850336164236, + -0.0717470645904541, + 0.032702431082725525, + -0.0078761400654912, + -0.08278440684080124, + 0.016031969338655472, + -0.0019774513784796, + -0.0019060695776715875, + -0.04277515783905983, + -1.835183560672249e-08, + -0.05247155576944351, + -0.024739883840084076, + 0.039535682648420334, + 0.004001901485025883, + 0.07062917947769165, + 0.0026568586472421885, + -0.009783908724784851, + -0.06410907953977585, + -0.07006020843982697, + 0.05514805018901825, + 0.012163707986474037, + -0.009387492202222347, + -0.09548713266849518, + -0.06841171532869339, + -0.019326727837324142, + 0.02162919007241726, + -0.03445785865187645, + 0.02028425969183445, + -0.025700727477669716, + -0.04404890164732933, + 0.029175449162721634, + 0.0745701938867569, + 0.0111978929489851, + -0.08742999285459518, + 0.05477286875247955, + -0.04857868328690529, + 0.024498851969838142, + 0.12161694467067719, + 0.04279707744717598, + -0.019053494557738304, + 0.00893919076770544, + 0.06630421429872513, + 0.020632755011320114, + -0.02936766855418682, + -0.03911188989877701, + -0.04856255277991295, + 0.003197966841980815, + 0.03366240859031677, + -0.07179611176252365, + 0.004398382734507322, + -0.03991205245256424, + -0.06568475812673569, + -0.02731468714773655, + -0.08483012765645981, + 0.007021058350801468, + 0.011475283652544022, + 0.006864081136882305, + 0.01426699012517929, + -0.03394436836242676, + -0.13442113995552063, + -0.014776377007365227, + -0.014171978458762169, + 0.02434105984866619, + 0.0579928457736969, + -0.021627744659781456, + -0.11239947378635406, + 0.01004822924733162, + 0.03970220312476158, + -0.012510768137872219, + 0.012545516714453697, + 0.05352470278739929, + -0.10052458941936493, + -0.012981859967112541, + -0.05488656461238861 + ], + "currency-rub-bold||money,rubles,payment,paying,purchase": [ + -0.0480639711022377, + 0.012494991533458233, + -0.07784842699766159, + 0.03597714751958847, + -0.009765857830643654, + -0.044571906328201294, + 0.11680751293897629, + -0.01931636594235897, + -0.021678004413843155, + -0.019089989364147186, + 0.006306878291070461, + -0.03531463444232941, + 0.05492611974477768, + 0.017040854319930077, + 0.013095876201987267, + 0.0034192411694675684, + -0.015590920113027096, + 0.04743638262152672, + 0.0301311407238245, + 0.04399699717760086, + 0.013919249176979065, + -0.019502343609929085, + -0.028489286080002785, + 0.020975861698389053, + 0.05791185051202774, + 0.014017745852470398, + 0.07512801140546799, + -0.03195543587207794, + -0.005534308962523937, + -0.026065286248922348, + 0.0008020507520996034, + 0.02189059741795063, + 0.049915775656700134, + -0.02173808217048645, + 0.03421739116311073, + -0.03318623825907707, + -0.019282031804323196, + -0.01625978574156761, + -0.03475264087319374, + 0.06068796291947365, + 0.012977083213627338, + -0.0883084312081337, + -0.01716243103146553, + -0.02078067697584629, + -0.03383608162403107, + 0.01610150933265686, + 0.04910144582390785, + 0.11458844691514969, + 0.038825392723083496, + 0.028755873441696167, + 0.013314752839505672, + -0.05553339421749115, + -0.12342381477355957, + 0.02541849948465824, + 0.039168015122413635, + -0.007870396599173546, + 0.033976733684539795, + -0.051155902445316315, + 0.03855109587311745, + -0.0524984709918499, + 0.0017820941284298897, + 0.04663616791367531, + -0.005887164734303951, + 0.0028939228504896164, + 0.04895886406302452, + 0.028450412675738335, + -0.055380113422870636, + 0.010011727921664715, + -0.10158593952655792, + 0.06883961707353592, + 0.025140430778265, + -0.030959725379943848, + -0.04748397693037987, + 0.002377371536567807, + -0.03255283832550049, + -0.002673263428732753, + 0.12993447482585907, + 0.021318303421139717, + -0.0472572036087513, + -0.08114592730998993, + -0.10364740341901779, + -0.0654582679271698, + -0.004441194701939821, + -0.06414338946342468, + 0.06035115197300911, + 0.05325312167406082, + 0.031178705394268036, + -0.023361187428236008, + 0.04886862263083458, + -0.031165389344096184, + 0.0010050523560494184, + 0.03716479241847992, + 0.015827776864171028, + -0.01207365095615387, + -0.00031656870851293206, + 0.005642378237098455, + 0.08827610313892365, + 0.0446111299097538, + -0.03638517111539841, + 0.055175650864839554, + 0.09829115867614746, + 0.03325099125504494, + 0.033603791147470474, + -0.011943294666707516, + -0.012967636808753014, + -0.04305544123053551, + -0.02394011616706848, + 0.032545384019613266, + 0.0037309403996914625, + 0.010282227769494057, + -0.07821478694677353, + -0.03369853273034096, + -0.03091779537498951, + -0.05873754993081093, + -0.03139751777052879, + 0.05096341297030449, + -0.03514393791556358, + -0.057711075991392136, + 0.09929769486188889, + 0.04187805578112602, + 0.07609107345342636, + 0.0468682162463665, + -0.08176662772893906, + -0.031228071078658104, + -0.07253585755825043, + -0.035190872848033905, + 0.06926082074642181, + -3.427488428370379e-33, + -0.01567143015563488, + 0.03790038824081421, + -0.043303415179252625, + -0.022047018632292747, + -0.09898007661104202, + 0.08955193310976028, + -0.0639544352889061, + 0.02835272066295147, + -0.05926041677594185, + 0.040860865265131, + 0.01724366657435894, + 0.05879993736743927, + 0.030689239501953125, + 0.11190468072891235, + -0.021121593192219734, + -0.03032318316400051, + 0.0001448593393433839, + -0.02731740102171898, + 0.05518892779946327, + 0.048749931156635284, + -0.016897454857826233, + 0.05001865699887276, + 0.00910964235663414, + 0.05608256533741951, + -0.039874397218227386, + 0.01488680299371481, + 0.017128655686974525, + -0.01314013171941042, + 0.055022966116666794, + 0.02205863781273365, + 0.03623989224433899, + -0.042266059666872025, + 0.06087781861424446, + -0.00540262321010232, + -0.09235479682683945, + 0.003656374756246805, + 0.028465798124670982, + -0.042957548052072525, + 0.03277116268873215, + -0.043188195675611496, + -0.02292359247803688, + -0.04379235953092575, + -0.02418246679008007, + 0.04182441532611847, + -0.03494653105735779, + 0.14951249957084656, + 0.02684883214533329, + -0.0717635303735733, + 0.04262247681617737, + -0.01845160312950611, + -0.03749549761414528, + 0.001604645629413426, + 0.02535296604037285, + -0.03360724076628685, + -0.007425935938954353, + -0.0836494117975235, + 0.0005799608188681304, + 0.01405917014926672, + -0.08472678065299988, + -0.13446657359600067, + 0.046418216079473495, + -0.02773095667362213, + 0.07634379714727402, + -0.030769623816013336, + -0.10345073789358139, + 0.09569063782691956, + -0.05472644045948982, + 0.013770031742751598, + 0.04623619467020035, + 0.012767517007887363, + -0.09866173565387726, + 0.10451572388410568, + 0.11559613794088364, + 0.08370523154735565, + 0.030110280960798264, + 0.00017760398623067886, + 0.08897709846496582, + -0.003433563746511936, + 0.03970737382769585, + 0.02880077250301838, + -0.18351179361343384, + -0.02676589973270893, + 0.03530232608318329, + 0.11521442979574203, + 0.044715765863657, + 0.08671107143163681, + 0.016599668189883232, + -0.09032923728227615, + 0.0035733473487198353, + -0.027745293453335762, + -0.05299561470746994, + -0.017887938767671585, + -0.0072616999968886375, + -0.07818681746721268, + -0.021648989990353584, + 5.1065384778040256e-34, + -0.0340007022023201, + 0.05207202956080437, + -0.06331519782543182, + 0.09331219643354416, + -0.07466458529233932, + -0.006833634804934263, + -0.007656097877770662, + 0.024025725200772285, + 0.08012712001800537, + 0.023373570293188095, + -0.01868605613708496, + -0.0766277015209198, + -0.03709094598889351, + -0.057385869324207306, + 0.07710684835910797, + -0.051462411880493164, + -0.010802590288221836, + 0.026535367593169212, + 0.04469306394457817, + 0.032176874577999115, + -0.10895854979753494, + 0.018498966470360756, + 0.005418883170932531, + -0.004600197542458773, + -0.01892295479774475, + 0.01799279823899269, + 0.012409280054271221, + -0.11156320571899414, + -0.04150073230266571, + 0.06549611687660217, + 0.015965189784765244, + -0.0361810140311718, + 0.004500749986618757, + 0.0290352925658226, + -0.09321993589401245, + 0.032692957669496536, + 0.0005943468422628939, + -0.02013973891735077, + 0.04106602817773819, + -0.019186053425073624, + 0.026385972276329994, + -0.06357087194919586, + 0.012353220954537392, + 0.013436120003461838, + -0.004878843203186989, + -0.10188820958137512, + -0.06073387339711189, + 0.03469686582684517, + 0.012721169739961624, + 0.04679368436336517, + 0.01875755749642849, + 0.001029950799420476, + -0.04965610057115555, + -0.028340302407741547, + -0.1468779593706131, + 0.027383023872971535, + 0.05635204538702965, + -0.024263450875878334, + 0.02643446810543537, + 0.05593492090702057, + -0.055886443704366684, + 0.03724696859717369, + 0.004583299625664949, + 0.0068345884792506695, + -0.03442603349685669, + 0.00414168369024992, + 0.03864516690373421, + -0.002539245877414942, + 0.11552689969539642, + -0.05536298081278801, + 0.04443703219294548, + 0.025683879852294922, + -0.031081408262252808, + 0.008145761676132679, + 0.05170111730694771, + 0.07471819221973419, + 0.032754238694906235, + 0.040994852781295776, + 0.04394965246319771, + 0.01971532218158245, + -0.013493011705577374, + 0.028457164764404297, + 0.019634610041975975, + 0.03928897902369499, + -0.062082890421152115, + -0.022620216012001038, + -0.07115549594163895, + -0.01659909263253212, + 0.019774097949266434, + -0.07153716683387756, + -0.06521593779325485, + 0.024869615212082863, + 0.044176142662763596, + -0.02828413061797619, + -0.06960021704435349, + -1.9715407972853427e-08, + -0.05383173003792763, + 0.03126755729317665, + -0.0028850731905549765, + 0.035186346620321274, + 0.04357251897454262, + -0.025967620313167572, + -0.018001409247517586, + -0.041179317981004715, + -0.0663546621799469, + 0.062159352004528046, + 0.008136052638292313, + -0.024962563067674637, + -0.08825363218784332, + -0.09623714536428452, + -0.0240391306579113, + 0.04777248203754425, + -0.027878789231181145, + 0.012599610723555088, + -0.05548001453280449, + -0.025500772520899773, + 0.015209931880235672, + 0.044660456478595734, + -0.006024247035384178, + -0.002095782896503806, + -0.03657054156064987, + -0.021581441164016724, + 0.0269062127918005, + 0.09713105857372284, + 0.046213023364543915, + -0.01974475383758545, + 0.020356452092528343, + 0.037302177399396896, + 0.01748073659837246, + -0.013398597948253155, + -0.04597264900803566, + -0.022658588364720345, + 0.01138352882117033, + 0.06451275199651718, + 0.020831728354096413, + 0.1358605921268463, + -0.060253389179706573, + -0.07891764491796494, + -0.07126476615667343, + -0.04466024413704872, + -0.028739696368575096, + -0.005089167971163988, + -0.08355256170034409, + -0.025448059663176537, + -0.0038526379503309727, + -0.1304011344909668, + -0.03245345875620842, + 0.05226312577724457, + 0.04910263791680336, + 0.03443751111626625, + 0.028874922543764114, + -0.057717397809028625, + -0.008841197937726974, + 0.0321318544447422, + 0.005452950019389391, + 0.010219685733318329, + 0.07001970708370209, + -0.0649069994688034, + 0.00802049320191145, + -0.03695695102214813 + ], + "cursor-bold||pointer,arrowhead,mouse,click": [ + -0.0027735515031963587, + -0.09104432165622711, + -0.03003334440290928, + 0.043942905962467194, + 0.006647897884249687, + -0.060869552195072174, + 0.0749494880437851, + -0.043134741485118866, + -0.012059326283633709, + 0.00032729338272474706, + -0.030086785554885864, + 0.027095401659607887, + 0.030575323849916458, + -0.02816035784780979, + 0.027007685974240303, + 0.03259995952248573, + -0.03574661165475845, + 0.021452711895108223, + 0.03565697371959686, + 0.023229394108057022, + -0.022181009873747826, + 0.004987936466932297, + 0.01690097153186798, + 0.025505714118480682, + -0.006237273570150137, + -0.015851516276597977, + 0.07672452926635742, + -0.0380326509475708, + -0.031244002282619476, + -0.051224756985902786, + -0.024649279192090034, + -0.058503199368715286, + 0.02960846573114395, + 0.021637558937072754, + -0.018168771639466286, + 0.0006861519650556147, + -0.029556887224316597, + -0.04985376074910164, + -0.022311946377158165, + 0.03486713394522667, + 0.04710911586880684, + -0.02645855024456978, + 0.035318806767463684, + -0.014833462424576283, + -0.003146390663459897, + -0.01060024555772543, + -0.03715810924768448, + -0.019185490906238556, + 0.07156779617071152, + 0.04296145588159561, + -0.002430887892842293, + -0.06059575080871582, + -0.04230169951915741, + -0.06341331452131271, + 0.0484788678586483, + 0.055911991745233536, + -0.0005980232963338494, + -0.03370949253439903, + 0.05052302032709122, + 0.00921849999576807, + -0.03836410865187645, + -0.0342678427696228, + 0.02091287262737751, + -0.0242527574300766, + 0.05798639729619026, + 0.018928181380033493, + 0.015614036470651627, + 0.030456682667136192, + -0.04490937665104866, + 0.04545260965824127, + 0.02140943519771099, + -0.017525438219308853, + -0.05523569881916046, + -0.02416335791349411, + -0.061384912580251694, + 0.005123062524944544, + -0.005938035901635885, + 0.04685668274760246, + 0.0029940884560346603, + -0.017848940566182137, + -0.06551214307546616, + -0.012096992693841457, + -0.06849706172943115, + 0.02166033908724785, + 0.11891887336969376, + 0.08675084263086319, + -0.06035694107413292, + -0.09130586683750153, + -0.048405569046735764, + 0.009518754668533802, + -0.02596362680196762, + -0.01918552629649639, + -0.04637860879302025, + -0.0019461221527308226, + 0.0036956025287508965, + -0.030591119080781937, + 0.14657165110111237, + -0.04935405030846596, + -0.06516861170530319, + 0.05603886768221855, + 0.04178515821695328, + 0.052482910454273224, + 0.06631430983543396, + -0.0397932343184948, + -0.0521390363574028, + 0.03845860809087753, + 0.008812868036329746, + -0.10010391473770142, + -0.11039799451828003, + 0.03113240748643875, + -0.029829969629645348, + -0.15579231083393097, + -0.008197895251214504, + -0.03495946153998375, + -0.0007782845641486347, + -0.021792182698845863, + -0.09349413216114044, + -0.019965464249253273, + 0.15519782900810242, + -0.009325857274234295, + 0.06350497156381607, + -0.04408162459731102, + -0.06209444999694824, + -0.026929132640361786, + -0.024303318932652473, + 0.009650087915360928, + 0.025243358686566353, + -2.0707003388856548e-33, + 0.03442556783556938, + 0.0023821445647627115, + -0.04299001023173332, + 0.021594522520899773, + -0.02329508401453495, + 0.06968837976455688, + -0.0016850506654009223, + -0.010976036079227924, + -0.09210240840911865, + -0.024671968072652817, + 0.10703735053539276, + -0.07884620875120163, + -0.009769954718649387, + 0.044462721794843674, + 0.02842083014547825, + -0.08106721192598343, + 0.03842492401599884, + 0.07222257554531097, + -0.1142384260892868, + 0.014177320525050163, + -0.013219879940152168, + 0.058851368725299835, + -0.11793051660060883, + -0.047631412744522095, + -0.05401560664176941, + -0.0212766882032156, + -0.041041675955057144, + 0.02821367233991623, + -0.05683097615838051, + 0.030694760382175446, + 0.02292127162218094, + 0.07655790448188782, + -0.01475053746253252, + -0.03048732317984104, + -0.03502809256315231, + 0.024608513340353966, + -0.059064097702503204, + -0.01940140314400196, + 0.03661801293492317, + 0.0125539256259799, + -0.0468125194311142, + -0.04945741966366768, + 0.018347380682826042, + -0.03222200646996498, + -0.013613947667181492, + 0.14680388569831848, + -0.04776667430996895, + -0.10176675766706467, + -0.059814147651195526, + -0.033304791897535324, + 0.03667104244232178, + -0.007322616875171661, + 0.0076967584900557995, + -0.012303909286856651, + 0.047824569046497345, + -0.013503779657185078, + -0.04082304611802101, + 0.05058373138308525, + -0.019181247800588608, + 0.03254282847046852, + 0.015280378982424736, + 0.02822553925216198, + 0.03617892414331436, + 0.00747518939897418, + -0.03489803150296211, + 0.08337865024805069, + -0.06394432485103607, + 0.05536220967769623, + 0.08047379553318024, + -0.02016143873333931, + 0.08927043527364731, + 0.03285139799118042, + 0.03651399910449982, + -0.02106785587966442, + -0.006173614412546158, + 0.04939759895205498, + -0.004508812911808491, + -0.054391562938690186, + 0.05555390194058418, + -0.09559652209281921, + -0.059999775141477585, + 0.014690124429762363, + -0.0718999132514, + 0.054343171417713165, + 0.04295848682522774, + -0.046816326677799225, + -0.024300819262862206, + -0.009947281330823898, + -0.051598623394966125, + 0.058046888560056686, + 0.04185772314667702, + -0.05998064577579498, + -0.04913805052638054, + -0.055801089853048325, + -0.11406870186328888, + -1.8845648491947765e-33, + 0.05305686220526695, + 0.08449939638376236, + -0.004601764492690563, + 0.023081524297595024, + -0.13597765564918518, + 0.07170280069112778, + 0.002832177095115185, + -0.039728570729494095, + -0.025424376130104065, + 0.012862369418144226, + 0.016232434660196304, + 0.05930957943201065, + -0.023315709084272385, + -0.04012290760874748, + 0.09801670163869858, + 0.07215770334005356, + 0.004272737540304661, + 0.09243745356798172, + -0.06520784646272659, + -0.06562390178442001, + 0.030568119138479233, + -0.09440232068300247, + 0.0213380828499794, + 0.09023173898458481, + 0.009336328133940697, + -0.056671638041734695, + 0.032789453864097595, + -0.005780302919447422, + -0.017895905300974846, + -0.019133644178509712, + 0.033512987196445465, + 0.04704602435231209, + -0.025151362642645836, + 0.04344182834029198, + -0.010313806124031544, + -0.008180784992873669, + 0.027311639860272408, + -0.08296419680118561, + 0.04481123015284538, + -0.03441563993692398, + 0.062355924397706985, + 0.011565608903765678, + 0.09058579057455063, + 0.01765422336757183, + -0.01113701332360506, + 0.04064153879880905, + 0.02052912302315235, + 0.004961170721799135, + 0.0411662757396698, + 0.06132153421640396, + 0.0001872251450549811, + -0.023505333811044693, + 0.023764504119753838, + -0.06064126268029213, + -0.09978165477514267, + -0.03275294601917267, + 0.07369771599769592, + -0.0028380057774484158, + -0.0038750001695007086, + 0.017023568972945213, + -0.0449843630194664, + 0.0051138438284397125, + -0.0354321151971817, + 0.09374919533729553, + 0.0100336242467165, + -0.06977292150259018, + 0.05065958574414253, + -0.018681185320019722, + 0.017779290676116943, + -0.007333714049309492, + 0.06203610077500343, + 0.05513404682278633, + 0.0655379518866539, + 0.0357770211994648, + 0.042567554861307144, + -0.01888107880949974, + 0.04835556074976921, + -0.00024916743859648705, + -0.04629630967974663, + 0.004429336171597242, + 0.04151051491498947, + 0.0045811766758561134, + 0.032792575657367706, + -0.024096280336380005, + -0.0461689718067646, + 0.056373950093984604, + -0.04834256321191788, + -0.00014723539061378688, + -0.015242171473801136, + -0.06754092127084732, + -0.04348165914416313, + -0.020264117047190666, + -0.017757905647158623, + -0.04219740256667137, + -0.067666195333004, + -1.9966430286899595e-08, + -0.050176382064819336, + -0.02325442060828209, + 0.011300458572804928, + -0.05406710505485535, + 0.01817226968705654, + -0.0478200763463974, + -0.061480436474084854, + 0.009781315922737122, + -0.014433282427489758, + -0.005761855747550726, + 0.003951753489673138, + 0.017543615773320198, + -0.01043973583728075, + -0.04406661540269852, + 0.12936356663703918, + 0.06960773468017578, + -0.005529187619686127, + 0.030907930806279182, + -0.019907977432012558, + -0.022878997027873993, + -0.03157753497362137, + 0.037442032247781754, + 0.027107900008559227, + 0.012526418082416058, + -0.02420000359416008, + 0.005009788554161787, + -0.07299971580505371, + 0.12102290242910385, + 0.11645538359880447, + 0.03359976410865784, + 0.08748427033424377, + 0.033178240060806274, + -0.023776518180966377, + 0.03872842714190483, + -0.07256122678518295, + -0.04323490336537361, + 0.04662349820137024, + -2.8016973374178633e-05, + -0.013334131799638271, + 0.09601375460624695, + -0.0686926543712616, + 0.008021452464163303, + -0.0008512253407388926, + -0.030698606744408607, + -0.10746988654136658, + 0.05706952139735222, + -0.0026321900077164173, + -0.02050126902759075, + -0.07664834707975388, + -0.10487121343612671, + -0.07966327667236328, + 0.08334262669086456, + 0.033673666417598724, + 0.08171151578426361, + -0.056575972586870193, + -0.04249117150902748, + -0.05406799167394638, + 0.0737822875380516, + -0.05523879826068878, + 0.0423673540353775, + 0.12914730608463287, + 0.07270023226737976, + 0.012426285073161125, + 0.08706439286470413 + ], + "cursor-click-bold||pointer,arrowhead,mouse": [ + -0.006934638135135174, + -0.09046231955289841, + -0.03499666973948479, + 0.05166091024875641, + -0.0014911564067006111, + -0.06875871866941452, + 0.08428668230772018, + -0.05518893897533417, + -0.007089175749570131, + 0.006193033419549465, + -0.03424590080976486, + 0.03302360326051712, + 0.02872011438012123, + -0.023400384932756424, + 0.03495941311120987, + 0.02728046104311943, + -0.032078783959150314, + 0.03175728768110275, + 0.04440251737833023, + 0.021297721192240715, + -0.02484230324625969, + -0.0013131176820024848, + 0.023371895775198936, + 0.017827996984124184, + -0.010718150064349174, + -0.0329207107424736, + 0.06744033098220825, + -0.03702598065137863, + -0.031316593289375305, + -0.04537515342235565, + -0.017461609095335007, + -0.06672635674476624, + 0.0269282478839159, + 0.012589552439749241, + -0.017567289993166924, + -0.0008752698777243495, + -0.028764642775058746, + -0.03769460693001747, + -0.02008023113012314, + 0.04380692169070244, + 0.05242067202925682, + -0.02102471888065338, + 0.043133120983839035, + -0.024963799864053726, + -0.010463757440447807, + -0.011658488772809505, + -0.03619769215583801, + -0.01745162531733513, + 0.062482427805662155, + 0.04813052713871002, + 0.009362947195768356, + -0.0650203749537468, + -0.035975564271211624, + -0.07459130883216858, + 0.045923296362161636, + 0.05693190172314644, + 0.0001230459165526554, + -0.03281424567103386, + 0.04679195210337639, + 0.01595158874988556, + -0.04582719877362251, + -0.024586964398622513, + 0.009399966336786747, + -0.01826818473637104, + 0.06325646489858627, + 0.01956494338810444, + 0.020453698933124542, + 0.02628779597580433, + -0.05567832663655281, + 0.05219385400414467, + 0.02436833828687668, + -0.03011314570903778, + -0.04634900391101837, + -0.02151474729180336, + -0.059441421180963516, + 0.0005001665558665991, + -0.011788014322519302, + 0.06019807606935501, + -0.0004038506594952196, + -0.01179055217653513, + -0.056752607226371765, + -0.009943841025233269, + -0.07075787335634232, + 0.019029194489121437, + 0.11601167917251587, + 0.08966343849897385, + -0.06369511038064957, + -0.07561472058296204, + -0.0650012269616127, + 0.014053050428628922, + -0.02659199759364128, + -0.020465316250920296, + -0.045796994119882584, + 0.005998783279210329, + 0.018072504550218582, + -0.02943844348192215, + 0.14273430407047272, + -0.04347606003284454, + -0.061181068420410156, + 0.04985984414815903, + 0.04164822772145271, + 0.05120360851287842, + 0.061433352530002594, + -0.05064602941274643, + -0.04043925926089287, + 0.044153377413749695, + -0.010171336121857166, + -0.09547920525074005, + -0.11683055013418198, + 0.04028061777353287, + -0.027155019342899323, + -0.15411746501922607, + 0.0006936987629160285, + -0.03904513642191887, + 0.005363423377275467, + -0.012040231376886368, + -0.09369766712188721, + -0.01906338892877102, + 0.15898236632347107, + -0.01536059845238924, + 0.06741558015346527, + -0.04392122104763985, + -0.06717284768819809, + -0.029032938182353973, + -0.018136419355869293, + 0.013222449459135532, + 0.02838035672903061, + -2.7096871293781497e-33, + 0.03571281209588051, + 0.00935225561261177, + -0.04151324927806854, + 0.017093366011977196, + -0.020068220794200897, + 0.07427352666854858, + 0.005415803287178278, + -0.022828465327620506, + -0.09428586065769196, + -0.019967883825302124, + 0.11249320209026337, + -0.07679159939289093, + -0.023867029696702957, + 0.035421840846538544, + 0.02338971383869648, + -0.07027353346347809, + 0.03480881080031395, + 0.07700491696596146, + -0.12066024541854858, + 0.01675073243677616, + -0.022989876568317413, + 0.05893648415803909, + -0.12143337726593018, + -0.045491039752960205, + -0.05631094053387642, + -0.02891971357166767, + -0.045116081833839417, + 0.02643812820315361, + -0.05472009256482124, + 0.03226611763238907, + 0.023747548460960388, + 0.07853761315345764, + -0.012380868196487427, + -0.02532230131328106, + -0.04185234755277634, + 0.021861135959625244, + -0.06188053637742996, + -0.020451895892620087, + 0.024412497878074646, + 0.013281255029141903, + -0.041755326092243195, + -0.04436589404940605, + 0.02040937729179859, + -0.02946299873292446, + -0.02865409664809704, + 0.14642465114593506, + -0.04450913891196251, + -0.11392983049154282, + -0.06087649241089821, + -0.04024899750947952, + 0.0403456874191761, + -0.009137785993516445, + 0.007515881676226854, + -0.020090626552700996, + 0.05067087337374687, + -0.004808180499821901, + -0.04060462862253189, + 0.055597029626369476, + -0.018242409452795982, + 0.036611802875995636, + 0.01741447113454342, + 0.023303179070353508, + 0.03581957519054413, + 0.004823990166187286, + -0.025649098679423332, + 0.09287502616643906, + -0.05845353752374649, + 0.0460810512304306, + 0.06616106629371643, + -0.01817852072417736, + 0.09903042763471603, + 0.029370667412877083, + 0.031231176108121872, + -0.030615972355008125, + 0.0027910417411476374, + 0.051481299102306366, + -0.0024449811317026615, + -0.047552186995744705, + 0.0722062736749649, + -0.09509684890508652, + -0.05604999512434006, + 0.02048473060131073, + -0.07525818794965744, + 0.04994247108697891, + 0.03492327407002449, + -0.04659342020750046, + -0.02958633005619049, + -0.005265983287245035, + -0.05672495439648628, + 0.04791957885026932, + 0.036318596452474594, + -0.05426168069243431, + -0.05181041732430458, + -0.056552156805992126, + -0.11763381212949753, + -1.5937043841181483e-33, + 0.04814506322145462, + 0.08072254806756973, + 0.004534601233899593, + 0.03186563774943352, + -0.13177967071533203, + 0.07375819236040115, + -0.00128927081823349, + -0.03715435415506363, + -0.026700181886553764, + 0.014374126680195332, + 0.024484757333993912, + 0.05127713456749916, + -0.024028286337852478, + -0.03855634853243828, + 0.0961451381444931, + 0.06334257870912552, + 0.010481557808816433, + 0.09106110036373138, + -0.06765775382518768, + -0.07164711505174637, + 0.044250257313251495, + -0.09595915675163269, + 0.007306558545678854, + 0.0916556790471077, + 0.012827702797949314, + -0.06498271226882935, + 0.02006741799414158, + -0.005026150960475206, + -0.002804913790896535, + -0.02680118754506111, + 0.035658542066812515, + 0.044652920216321945, + -0.02831948921084404, + 0.03508155420422554, + -0.016472576186060905, + -0.006470017600804567, + 0.024865498766303062, + -0.07574518769979477, + 0.04834138602018356, + -0.022681355476379395, + 0.05521620064973831, + -3.3813983463915065e-05, + 0.0996154174208641, + 0.01122664101421833, + -0.007281133439391851, + 0.03866824880242348, + 0.011335974559187889, + 0.012585677206516266, + 0.03544479236006737, + 0.059420425444841385, + -0.007530091796070337, + -0.01918793097138405, + 0.022082559764385223, + -0.05704620108008385, + -0.09323643147945404, + -0.02816208265721798, + 0.07054567337036133, + -0.00994547177106142, + -0.01127283088862896, + 0.007075769826769829, + -0.040511779487133026, + -0.001773150055669248, + -0.040743451565504074, + 0.09534302353858948, + -0.0024024450685828924, + -0.060705315321683884, + 0.05454998463392258, + -0.02512388303875923, + 0.01465567946434021, + -0.011113195680081844, + 0.059166308492422104, + 0.045777805149555206, + 0.06447829306125641, + 0.0272225234657526, + 0.040562842041254044, + -0.03528802469372749, + 0.05153156444430351, + 0.00896214134991169, + -0.03788935765624046, + -0.00961301103234291, + 0.03719654679298401, + 0.008932629600167274, + 0.04119798168540001, + -0.020360702648758888, + -0.04596759006381035, + 0.05554152652621269, + -0.053466830402612686, + -0.0025042397901415825, + -0.009604685939848423, + -0.05847201123833656, + -0.03780975565314293, + -0.027778947725892067, + -0.0033450801856815815, + -0.04515254870057106, + -0.06760972738265991, + -2.0065440864414086e-08, + -0.049107398837804794, + -0.009942762553691864, + 0.013633539900183678, + -0.057304106652736664, + 0.006339287385344505, + -0.040912408381700516, + -0.05827144905924797, + 0.02361467480659485, + -0.011557396501302719, + -0.007348650135099888, + -0.005672608967870474, + 0.024889584630727768, + -0.0016103321686387062, + -0.03703949227929115, + 0.11176261305809021, + 0.07886315882205963, + -0.009387708269059658, + 0.03869454562664032, + -0.018820319324731827, + -0.019079096615314484, + -0.04201405867934227, + 0.04169075936079025, + 0.018533220514655113, + 0.02521539479494095, + -0.030493251979351044, + 0.012753089889883995, + -0.07575010508298874, + 0.11905187368392944, + 0.12070907652378082, + 0.04105399549007416, + 0.06365051120519638, + 0.03447472304105759, + -0.03997243940830231, + 0.04089633375406265, + -0.08167029172182083, + -0.05447980761528015, + 0.032597292214632034, + -0.005040914285928011, + -0.01879381202161312, + 0.09168172627687454, + -0.06875713914632797, + -0.0004580083186738193, + 0.003688297001644969, + -0.02656123973429203, + -0.10360933095216751, + 0.045820921659469604, + -0.012939894571900368, + -0.01460548397153616, + -0.07854524999856949, + -0.10077092051506042, + -0.07224560528993607, + 0.09236854314804077, + 0.024776320904493332, + 0.08317046612501144, + -0.03978334367275238, + -0.03104277327656746, + -0.05809185653924942, + 0.07646007090806961, + -0.04902559146285057, + 0.044595420360565186, + 0.13087031245231628, + 0.06840884685516357, + 0.014798210933804512, + 0.09388834983110428 + ], + "cursor-text-bold||i-beam,input,select": [ + -0.0031870484817773104, + -0.07327847182750702, + 0.009565399028360844, + 0.08165575563907623, + 0.014388138428330421, + -0.05210817605257034, + 0.10787619650363922, + -0.05440855026245117, + 0.015216976404190063, + -0.03507600352168083, + -0.05139690265059471, + 0.03381390497088432, + -0.0053490097634494305, + -0.05400769039988518, + -0.011565065011382103, + 0.09647383540868759, + 0.06250328570604324, + -0.023376496508717537, + 0.014707766473293304, + -0.014835469424724579, + -0.045246440917253494, + 0.03074866719543934, + 0.019583281129598618, + 0.027341743931174278, + 0.014253624714910984, + 0.05602647736668587, + 0.025591349229216576, + -0.021687299013137817, + -0.027600964531302452, + -0.038669928908348083, + -0.08386386185884476, + -0.027916843071579933, + 0.0930086001753807, + 0.013005532324314117, + -0.015168077312409878, + -0.04886624962091446, + -0.05656455084681511, + -0.05454455688595772, + -0.07178282737731934, + 0.03800300508737564, + 0.06547660380601883, + -0.06548330187797546, + -0.004694339819252491, + 0.022936956956982613, + -0.055633898824453354, + -0.11825426667928696, + -0.061736851930618286, + -0.07279177755117416, + 0.061244621872901917, + 0.05470944568514824, + -0.026855429634451866, + -0.002104527782648802, + 0.02646859548985958, + 0.021078115329146385, + -0.002363222651183605, + 0.04747053608298302, + 0.02459835261106491, + -0.014586366713047028, + 0.07184242457151413, + 0.0017922079423442483, + -0.026741301640868187, + 0.015331094153225422, + 0.005124559625983238, + -0.007636985741555691, + 0.07766448706388474, + 0.02993553876876831, + 0.03546355292201042, + 0.03797285631299019, + -0.051147960126399994, + 0.021573973819613457, + 0.07488420605659485, + 0.01618216559290886, + 0.016201863065361977, + -0.014809931628406048, + -0.06808710843324661, + 0.00517928646877408, + 0.003124581417068839, + 0.010932170785963535, + 0.01674162596464157, + 0.04645330458879471, + -0.04215306416153908, + -0.0058483341708779335, + -0.08939144015312195, + 0.010184317827224731, + 0.08244197815656662, + 0.0763925090432167, + -0.06530070304870605, + 0.002943791449069977, + 0.017092114314436913, + 0.009454531595110893, + -0.06764024496078491, + -0.08227438479661942, + -0.06302126497030258, + 0.02418944425880909, + -0.0675763264298439, + -0.006308902986347675, + 0.053079698234796524, + -0.05007120221853256, + -0.05360778048634529, + 0.021069619804620743, + 0.040761515498161316, + 0.005369963124394417, + 0.04338906705379486, + 0.0028195464983582497, + -0.16604489088058472, + -0.01366320252418518, + 0.006942707113921642, + -0.03213013708591461, + -0.06404442340135574, + 0.003586632665246725, + 0.040102943778038025, + -0.11636584997177124, + -0.0026299739256501198, + 0.035246580839157104, + 0.0004156830837018788, + -0.025401638820767403, + -0.03950732201337814, + -0.024739716202020645, + 0.08532808721065521, + 0.05133938416838646, + 0.08763130009174347, + -0.05531489476561546, + -0.08643533289432526, + -0.003840717487037182, + -0.034495145082473755, + 0.02573981136083603, + 0.048308055847883224, + -2.6589847519493228e-33, + -0.008904805406928062, + 0.026394523680210114, + -0.028647735714912415, + 0.00977259874343872, + -0.06425294280052185, + 0.017689628526568413, + -0.07869865000247955, + -0.0023872866295278072, + -0.08051567524671555, + 0.0012903184397146106, + 0.10405279695987701, + -0.035000432282686234, + 0.07124493271112442, + -0.03435702249407768, + 0.026922225952148438, + -0.09110000729560852, + 0.0031502675265073776, + 0.07757239043712616, + -0.03290044888854027, + 0.03541337698698044, + -0.023209678009152412, + 0.057685162872076035, + -0.09650985151529312, + -0.08436538279056549, + -0.04184683412313461, + -0.004726072773337364, + -0.013978668488562107, + -0.0019456285517662764, + -0.05565575510263443, + 0.01363318134099245, + 0.00721975602209568, + 0.05824238434433937, + 0.08840356767177582, + 0.006232427433133125, + -0.005002953112125397, + 0.03298360854387283, + -0.05686265975236893, + -0.01498981099575758, + 0.06502499431371689, + 0.06565620750188828, + -0.015902450308203697, + -0.030531801283359528, + 0.04129141569137573, + 0.02345697395503521, + 0.05999594181776047, + 0.09573210030794144, + -0.07637253403663635, + -0.05904602259397507, + -0.07243333011865616, + -0.05290491506457329, + 0.022186322137713432, + 0.0019426626386120915, + -0.07416115701198578, + -0.026173051446676254, + 0.09837735444307327, + 0.0006454611429944634, + -0.0026391108985990286, + 0.05890228971838951, + 0.05652676150202751, + 0.012021043337881565, + -0.012019073590636253, + -0.0021746912971138954, + 0.025547627359628677, + 0.005282407160848379, + 0.014584457501769066, + 0.05752712860703468, + -0.09758908301591873, + -0.024310709908604622, + 0.061720702797174454, + -0.01624516025185585, + 0.034605253487825394, + 0.03487008064985275, + 0.008262715302407742, + 0.03419248387217522, + 0.02234351821243763, + 0.022381886839866638, + -0.0025255405344069004, + -0.02215837500989437, + 0.044494763016700745, + -0.08425388485193253, + -0.085226871073246, + -0.06100185588002205, + -0.10852227360010147, + 0.07355432957410812, + 0.048482511192560196, + 0.016979634761810303, + -0.06567689031362534, + -0.0008114180527627468, + -0.0313163585960865, + 0.014277474023401737, + 0.019886665046215057, + 0.019783861935138702, + -0.023631541058421135, + -0.10461922734975815, + -0.060676321387290955, + 3.7327292186399576e-35, + 0.0733734592795372, + 0.04662277176976204, + 0.006431338842958212, + 0.01879682019352913, + -0.03171277418732643, + 0.048161398619413376, + -0.01028659101575613, + 0.018188733607530594, + 0.013081591576337814, + -0.0013759093126282096, + 0.029172256588935852, + 0.06498396396636963, + -0.048913490027189255, + -0.06420134007930756, + 0.037301525473594666, + 0.10415813326835632, + 0.04131514951586723, + 0.055196017026901245, + -0.02757873758673668, + -0.011832864955067635, + 0.05035040155053139, + -0.052943602204322815, + -0.04159301146864891, + 0.11028017848730087, + -0.016817765310406685, + -0.042917925864458084, + 0.033622343093156815, + -0.01951678842306137, + 0.015376519411802292, + -0.002426313003525138, + -0.013566839508712292, + 0.00899114552885294, + -0.03764207288622856, + 0.05920208618044853, + -0.05886644124984741, + 0.041600700467824936, + 0.050145458430051804, + -0.04909256473183632, + -0.007416441570967436, + 0.0013560528168454766, + 0.03844083100557327, + 0.06819228827953339, + 0.053503017872571945, + 0.04251211881637573, + -0.09140670299530029, + -0.0012882341397926211, + -0.014910686761140823, + 0.025789111852645874, + 0.03421330824494362, + 0.03771396353840828, + -0.053585752844810486, + -0.04497595503926277, + -0.03799192234873772, + -0.00020943392883054912, + -0.09002553671598434, + -0.0678865984082222, + 0.0993737205862999, + -0.05210432782769203, + -0.026269463822245598, + 0.03549392521381378, + -0.03618517145514488, + 0.07090651988983154, + 0.03180353716015816, + 0.029438061639666557, + 0.07478293776512146, + -0.08747485280036926, + 0.08229471743106842, + 0.03792092204093933, + -0.008917982690036297, + -0.025525551289319992, + 0.06067938357591629, + -0.013178253546357155, + 0.11109735816717148, + 0.09530133754014969, + 0.07484249770641327, + -0.04659649357199669, + 0.03850371018052101, + 0.027315620332956314, + -0.05351528152823448, + 0.0005234495620243251, + 0.03036867454648018, + 0.05282893404364586, + 0.012678631581366062, + 0.002773868851363659, + -0.03185402229428291, + 0.10303788632154465, + -0.02978508733212948, + 0.007882802747189999, + 0.017527403309941292, + -0.061888668686151505, + -0.04073473811149597, + -0.0046216263435781, + 0.04392589256167412, + -0.12351095676422119, + -0.012496119365096092, + -2.0257616029084602e-08, + -0.047050315886735916, + -0.057201139628887177, + -0.07548060268163681, + -0.07984922081232071, + 0.015706848353147507, + -0.04502261430025101, + -0.08296898007392883, + 0.008241461589932442, + 0.001121219014748931, + -0.07303515076637268, + -0.027756327763199806, + 0.006467553786933422, + 0.036660026758909225, + -0.03667929768562317, + 0.09413496404886246, + 0.07576295733451843, + 0.028346775099635124, + 0.0015174736035987735, + 0.0008417604258283973, + -0.08706048130989075, + 0.044763386249542236, + 0.007888082414865494, + 0.01877257414162159, + 0.009896722622215748, + -0.044060830026865005, + 0.04955845698714256, + -0.14729326963424683, + 0.032239846885204315, + 0.0709805116057396, + 0.06023947894573212, + 0.03255491703748703, + 0.035544853657484055, + 0.018901139497756958, + 0.018750224262475967, + -0.041871462017297745, + -0.04894154891371727, + 0.07031995803117752, + -0.051087141036987305, + 0.023234177380800247, + 0.05813721939921379, + -0.07112013548612595, + 0.01670009084045887, + -0.015421883203089237, + -0.05851650983095169, + -0.11979615688323975, + 0.05670774728059769, + 0.042218487709760666, + -0.08237519860267639, + -0.013378439471125603, + -0.07600798457860947, + -0.006419132463634014, + -0.021511543542146683, + 0.0239191185683012, + 0.01098053902387619, + 0.019007092341780663, + -0.030997050926089287, + 0.03380424529314041, + 0.0822470411658287, + -0.061304401606321335, + -0.01715688221156597, + 0.12718559801578522, + 0.044970475137233734, + -0.028281310573220253, + 0.019552145153284073 + ], + "cylinder-bold||shapes,tube": [ + 0.031824540346860886, + 0.03293897956609726, + -0.037582021206617355, + 0.004409319255501032, + -0.021280596032738686, + -0.01513660978525877, + 0.009065871126949787, + 0.05722930654883385, + -0.03304743394255638, + -0.07822586596012115, + -0.039575815200805664, + 0.031211398541927338, + 0.05196121707558632, + 0.03591800108551979, + -0.04928167164325714, + -0.015195001848042011, + -0.005758566316217184, + 0.028866522014141083, + -0.033735837787389755, + 0.019203398376703262, + -0.01254258956760168, + 0.06211991235613823, + 0.02637876756489277, + 0.09681351482868195, + 0.06117696687579155, + 0.049173951148986816, + 0.03840953856706619, + 0.06697530299425125, + 0.04802023246884346, + -0.059147220104932785, + -0.06376808881759644, + 0.006845445837825537, + -0.014203818514943123, + -0.05407487228512764, + 0.06759100407361984, + -0.11564970016479492, + -0.08195026218891144, + 0.04623878374695778, + 0.06588306277990341, + 0.03235643729567528, + 0.07819768041372299, + -0.06140027567744255, + 0.0043107434175908566, + -0.007376040797680616, + 0.018447179347276688, + 0.013494329527020454, + -0.07765891402959824, + 0.03801644220948219, + 0.018000472337007523, + -0.028095878660678864, + -0.044401898980140686, + -0.1464466005563736, + -0.08556412905454636, + -0.012905715964734554, + -0.0015488306526094675, + 0.01607571169734001, + -0.12461227178573608, + 0.020365731790661812, + 0.08255898952484131, + -0.08369110524654388, + 0.053114697337150574, + 0.011777442879974842, + 0.06723417341709137, + 0.05777423456311226, + -0.012400280684232712, + 0.05426410958170891, + -0.02364249713718891, + -0.01180424727499485, + 0.004698617849498987, + 0.03326253592967987, + 0.03822115808725357, + 0.07251172512769699, + -0.03571590408682823, + -0.07560272514820099, + -0.040561359375715256, + 0.006421893369406462, + 0.015548614785075188, + 0.0018005614401772618, + -0.09018344432115555, + 0.06123135983943939, + -0.07642803341150284, + -0.030215753242373466, + -0.012233344838023186, + -0.010445699095726013, + -0.0009826618479564786, + 0.08570250123739243, + -0.03819471225142479, + -0.07858826965093613, + -0.06047840788960457, + -0.02407640777528286, + -0.058296386152505875, + 0.058875180780887604, + -0.043558020144701004, + 0.024867430329322815, + -0.07101017981767654, + -0.005607199389487505, + 0.06482674926519394, + 0.055051304399967194, + -0.009281928651034832, + 0.06533947587013245, + 0.06774651259183884, + -0.03175661712884903, + 0.046895742416381836, + 0.04715404286980629, + -0.023543523624539375, + 0.025797823444008827, + 0.03271103650331497, + -0.013258334249258041, + 0.04185933992266655, + -0.03462381288409233, + 0.016428785398602486, + -0.10033141821622849, + -0.004105899948626757, + -0.02931346371769905, + -0.05164221301674843, + -0.10545997321605682, + -0.06457086652517319, + -0.02516457624733448, + 0.03009369596838951, + 0.03844279423356056, + 0.02227713353931904, + -0.01455518789589405, + -0.054232314229011536, + -0.08026938140392303, + 0.016891594976186752, + 0.03224540129303932, + -0.05030324310064316, + -2.8734920834942432e-33, + -0.035776812583208084, + 0.046934641897678375, + 0.012530475854873657, + 0.07424812763929367, + 0.018995504826307297, + 0.048540037125349045, + 0.004093126393854618, + -0.017891786992549896, + 0.008051999844610691, + 0.06763879954814911, + -0.06616062670946121, + 0.11450149863958359, + -0.037074752151966095, + 0.001783951884135604, + 0.01771886833012104, + -0.10395153611898422, + 0.04695199802517891, + 0.018610147759318352, + -0.1468401402235031, + 0.011882902123034, + -0.028722397983074188, + 0.03310888260602951, + -0.04567543417215347, + -0.05057553946971893, + -0.04587850347161293, + -0.04907675459980965, + -0.042132649570703506, + -0.027951255440711975, + -0.1178121417760849, + 0.06096789240837097, + -0.011929026804864407, + 0.026322662830352783, + 0.009858258068561554, + 0.07289735972881317, + -0.040658533573150635, + -0.061739981174468994, + -0.08257728070020676, + -0.02814994938671589, + 0.0009924061596393585, + -0.0024671382270753384, + 0.0020172821823507547, + -0.006456843111664057, + -0.00265714549459517, + 0.06197243183851242, + -0.041005510836839676, + 0.15429051220417023, + -0.004214062821120024, + -0.005159453954547644, + 0.0068575297482311726, + -0.0279593076556921, + 0.04217635467648506, + 0.030342496931552887, + -0.010301347821950912, + 0.00945876631885767, + 0.07991054654121399, + -0.008227694779634476, + -0.050791289657354355, + 0.08794759958982468, + -0.013471372425556183, + -0.020228857174515724, + -0.007725934963673353, + 0.029603198170661926, + -0.0020674706902354956, + -0.01837010122835636, + -0.057064466178417206, + 0.022706467658281326, + -0.06139274686574936, + 0.05153203010559082, + 0.10381624847650528, + -0.0021829360630363226, + -0.027899717912077904, + 0.13789311051368713, + -0.00032008791458792984, + 0.0008867664728313684, + 0.047943513840436935, + 0.023418616503477097, + 0.022188199684023857, + 0.013776116073131561, + 0.1037852019071579, + -0.08405541628599167, + -0.04174242168664932, + -0.01865490898489952, + -0.05279553681612015, + -0.08451343327760696, + -0.001334095373749733, + -0.003746513742953539, + 0.06276322156190872, + -0.027925921604037285, + 0.00024854790535755455, + 0.02818148024380207, + -0.05589083954691887, + -0.036866847425699234, + -0.01382221095263958, + 0.00608320627361536, + -0.04844261705875397, + 1.893070836519922e-33, + 0.03752772510051727, + 0.033328454941511154, + -0.015047337859869003, + 0.0015724827535450459, + 0.005936459172517061, + -0.004737162031233311, + 0.029252653941512108, + -0.0044878507032990456, + -0.027086470276117325, + 0.013526404276490211, + 0.03381160646677017, + -0.0006215086323209107, + 0.006242717150598764, + -0.02347213588654995, + -0.0025081902276724577, + -0.00722957868129015, + -0.024012727662920952, + -0.11188142001628876, + -0.04713248834013939, + -0.00818274263292551, + -0.08382099866867065, + -0.03543732687830925, + -0.08224096149206161, + 0.01569853350520134, + -0.08224667608737946, + 0.07368852943181992, + -0.042346496134996414, + -0.13014693558216095, + -0.005554120056331158, + 0.062252726405858994, + -0.09727536141872406, + -0.013825162313878536, + 0.04395947605371475, + 0.05363623425364494, + -0.11136806756258011, + 0.0281904935836792, + 0.06388784199953079, + -0.039680272340774536, + 0.09944666177034378, + -0.08434189856052399, + -0.006656405981630087, + -0.01775340549647808, + -0.03210049867630005, + 0.025540456175804138, + -0.03082617186009884, + 0.018120387569069862, + 0.13941897451877594, + -0.0770680159330368, + -0.01024351641535759, + 0.022049658000469208, + 0.01518177893012762, + 0.020876385271549225, + 0.059050094336271286, + 0.0772199034690857, + 0.0033105576876550913, + -0.03840060159564018, + -0.03208022192120552, + -0.051527585834264755, + -0.005813487805426121, + 0.062435612082481384, + -0.01238059438765049, + 0.008760941214859486, + -0.05747390538454056, + 0.021762287244200706, + 0.03267056122422218, + -0.01486037578433752, + 0.03225956857204437, + -0.056229110807180405, + 0.07403372973203659, + 0.04041291028261185, + 0.059601861983537674, + 0.018473615869879723, + 0.05562404543161392, + 0.04484537988901138, + 0.08077063411474228, + -0.08830415457487106, + 0.0019443078199401498, + -0.03762516379356384, + 0.011783338151872158, + 0.058165282011032104, + -0.056437693536281586, + -0.020754190161824226, + 0.0074242795817554, + 0.06785701960325241, + 0.00938204675912857, + -0.05520513281226158, + 0.01599751226603985, + 0.039932381361722946, + -0.03691510856151581, + 0.03738746419548988, + 0.02631726674735546, + 0.07774891704320908, + -0.03466467931866646, + 0.055254314094781876, + 0.08478560298681259, + -1.3886459981904409e-08, + 0.018960051238536835, + 0.0072038075886666775, + -0.038133297115564346, + -0.032771456986665726, + 0.07971293479204178, + -0.06010356545448303, + -0.028392190113663673, + -0.010905790142714977, + -0.040430109947919846, + -0.014105339534580708, + 0.048943497240543365, + 0.0009288545115850866, + -0.05446423217654228, + -0.03623874858021736, + 0.03180277347564697, + 0.03107881359755993, + -0.06835726648569107, + 0.03467514365911484, + 0.0021536957938224077, + -0.06578768789768219, + -0.03692084178328514, + 0.03449052572250366, + 0.03361215442419052, + -0.053993936628103256, + -0.021259460598230362, + -0.02193174697458744, + -0.04183633625507355, + 0.026340775191783905, + 0.04670565947890282, + 0.0715450644493103, + 0.01135998871177435, + 0.039142023772001266, + 0.06464412063360214, + 0.0006008644704706967, + -0.06903412938117981, + -0.06095968186855316, + -0.023369474336504936, + 0.044260792434215546, + 0.002997892675921321, + 0.08265866339206696, + -0.022187061607837677, + -0.03425504267215729, + 0.03753487765789032, + -0.04437723010778427, + 0.02485283464193344, + 0.0855477824807167, + 0.07666012644767761, + 0.0026452376041561365, + -0.07479088753461838, + -0.046913404017686844, + -0.005303978454321623, + 0.010322067886590958, + 0.07590623199939728, + 0.12514156103134155, + -0.02271595038473606, + -0.026612544432282448, + 0.05500388517975807, + 0.09247186779975891, + -0.07066777348518372, + 0.00903706718236208, + -0.011611382476985455, + 0.05288948863744736, + 0.07343511283397675, + -0.07241067290306091 + ], + "database-bold||saved,saving,archived,archiving,archival,hard disk,storage,hdd,servers,databases": [ + 0.03132576867938042, + -0.024504832923412323, + -0.09294189512729645, + 0.03679729253053665, + 0.02073366567492485, + -0.0005573356756940484, + 0.021948499605059624, + -0.008485627360641956, + -0.002889392664656043, + 0.04144923388957977, + 0.032776277512311935, + 0.06226050853729248, + 0.11596381664276123, + -0.057337354868650436, + -0.08109839260578156, + 0.07091104984283447, + -0.05341876670718193, + 0.00014091523189563304, + -0.015543488785624504, + 0.04824469983577728, + -0.024919690564274788, + 0.039237864315509796, + 0.024278433993458748, + 0.06271929293870926, + 0.07290906459093094, + 0.008257833309471607, + 0.019490215927362442, + 0.02733520045876503, + 0.024140464141964912, + -0.09611017256975174, + -0.0456734299659729, + -0.020052872598171234, + 0.0820746049284935, + 0.09820616990327835, + 0.060388825833797455, + 0.04228874668478966, + 0.026971742510795593, + 0.0031168770510703325, + -0.007280757185071707, + -0.06240115687251091, + 0.001628481550142169, + -0.0573323629796505, + -0.05393507331609726, + 0.06795305758714676, + -0.023375065997242928, + 0.008801983669400215, + -0.03818875551223755, + -0.060858916491270065, + -0.006023090798407793, + 0.0294269360601902, + 0.008269349113106728, + -0.05450872704386711, + -0.11185712367296219, + 0.0792640820145607, + 0.05079643055796623, + 0.07391224056482315, + -0.004679994657635689, + -0.001968235010281205, + -0.07074671238660812, + 0.016721773892641068, + 0.024686824530363083, + 0.0018821349367499352, + 0.015240765176713467, + 0.023231038823723793, + 0.01517738588154316, + 0.044050391763448715, + -0.003972548525780439, + 0.036120492964982986, + 0.026771942153573036, + -0.06326791644096375, + -0.0428263321518898, + 0.019417542964220047, + -0.09814240038394928, + 0.050656676292419434, + -0.0564582534134388, + 0.007234989665448666, + 0.07156695425510406, + 0.014605277217924595, + -0.0634625032544136, + -0.006088662426918745, + -0.050644323229789734, + -0.03677348420023918, + -0.03955802321434021, + 0.019933605566620827, + 0.0010854883585125208, + -0.006942764390259981, + -0.037637729197740555, + -0.07533569633960724, + -0.0225631482899189, + -0.06430792063474655, + -0.02732839807868004, + -0.04204835742712021, + 0.13894681632518768, + -0.007592723239213228, + -0.13958202302455902, + 0.005145565140992403, + 0.10872621089220047, + -0.008926752023398876, + 0.058361053466796875, + 0.03790764883160591, + 0.020912857726216316, + 0.061930812895298004, + 0.04519813507795334, + 0.0019231379264965653, + -0.09523157775402069, + -0.07948359847068787, + 0.04393524304032326, + -0.020538410171866417, + -0.039914701133966446, + -0.026000795885920525, + -0.052454665303230286, + -0.03517067804932594, + -0.07747983187437057, + -0.06229883432388306, + -0.02448868192732334, + -0.050344061106443405, + -0.14863403141498566, + -0.012854018248617649, + 0.034156329929828644, + -0.01432774867862463, + 0.04186435788869858, + -0.02292228303849697, + 0.03581513836979866, + -0.05687635391950607, + -0.016009433194994926, + -0.03677164018154144, + 0.03699265792965889, + -3.3622325125234105e-34, + 0.09610149264335632, + 0.01749967411160469, + -0.004538936074823141, + 0.017385117709636688, + 0.02226475439965725, + 0.03804537653923035, + -0.07517852634191513, + -0.020336542278528214, + -0.0853380560874939, + 0.030273566022515297, + 0.06534871459007263, + 0.1198202595114708, + -0.06881723552942276, + 0.051395632326602936, + 0.09641928970813751, + 0.02768740803003311, + 0.00516720674932003, + 0.07996165752410889, + -0.00451494799926877, + -0.021156180649995804, + -0.004120178520679474, + 0.07945656031370163, + -0.005631761159747839, + 0.013036893680691719, + 0.07479742169380188, + -0.06790398806333542, + 0.004356084391474724, + -0.03983687609434128, + -0.026134859770536423, + -0.000657386495731771, + 0.013963819481432438, + -0.0759519562125206, + 0.015476689673960209, + -0.024589717388153076, + 0.03650737926363945, + 0.049476489424705505, + -0.05590185523033142, + -0.033135682344436646, + 0.012225087732076645, + 0.02240009419620037, + -0.04542063921689987, + 0.023665599524974823, + 0.025709204375743866, + -0.036558184772729874, + 0.06443583965301514, + 0.10047215223312378, + -0.03457951545715332, + -0.01002564001828432, + -0.023217692971229553, + 0.026055824011564255, + -0.03199411556124687, + -0.010698088444769382, + 0.011324234306812286, + 0.05060863867402077, + -0.015496939420700073, + 0.010866322554647923, + 0.021546602249145508, + -0.0062545123510062695, + 0.04216640070080757, + 0.026972100138664246, + -0.014739836566150188, + -0.007225241977721453, + 0.05313636735081673, + -0.028993012383580208, + -0.00377184827812016, + 0.03916433826088905, + -0.0074567636474967, + -0.0025097541511058807, + 0.11659013479948044, + 0.007991915568709373, + -0.028920520097017288, + 0.00561033608391881, + 0.02949271723628044, + 0.006866077426820993, + -0.015873907133936882, + 0.005147218704223633, + -0.047985199838876724, + -0.08041281998157501, + -0.04408636316657066, + -0.0566435270011425, + -0.07728639990091324, + -0.0918261930346489, + -0.14285221695899963, + 0.05307456851005554, + 0.0010986558627337217, + 0.03325792774558067, + 0.010372783988714218, + -0.07212208211421967, + -0.040733061730861664, + 0.009058532305061817, + -0.05419394001364708, + 0.04783667251467705, + 0.027714792639017105, + -0.07291463017463684, + -0.08097643405199051, + -2.022888759204889e-33, + 0.033354293555021286, + -0.05433054268360138, + -0.06060545891523361, + 0.008189968764781952, + -0.01942536048591137, + 0.026315763592720032, + -0.03211212530732155, + 0.03378691151738167, + -0.07233548164367676, + -0.0290700551122427, + -0.0058869654312729836, + -0.009381837211549282, + -0.0501457080245018, + -0.06581079214811325, + -0.05964438617229462, + 0.027842877432703972, + 0.024967480450868607, + -0.05643247440457344, + -0.039049182087183, + 0.06687915325164795, + -0.07671849429607391, + 0.05022500827908516, + -0.04234904423356056, + 0.1005559116601944, + 0.039817098528146744, + 0.012077301740646362, + -0.07571302354335785, + -0.033160824328660965, + -0.010004052892327309, + 0.0061630611307919025, + -0.03705648332834244, + -0.02944309078156948, + 0.027656879276037216, + -0.027212223038077354, + -0.07409539073705673, + -0.06208186596632004, + 0.06606724858283997, + -0.05315777659416199, + -0.02364797331392765, + 0.04547278955578804, + -0.0056180404499173164, + 0.06993959099054337, + -0.0066806902177631855, + 0.0057088048197329044, + -0.02492641657590866, + -0.01813659630715847, + -0.13777919113636017, + -0.0344671830534935, + 0.02472960390150547, + 0.003908027429133654, + 0.07449496537446976, + -0.0739593431353569, + -0.013142618350684643, + -0.02828165702521801, + 0.06762643158435822, + -0.0172682236880064, + 0.0006786984158679843, + 0.06085578724741936, + 0.016784003004431725, + 0.04035806655883789, + -0.03708445280790329, + 0.034150607883930206, + -0.02031710185110569, + 0.033134348690509796, + -0.059909574687480927, + -0.06043044850230217, + 0.05245934799313545, + -0.029157718643546104, + -0.1476448029279709, + -0.03277864679694176, + 0.01596355065703392, + -0.00238056480884552, + 0.006844773888587952, + 0.06181655079126358, + 0.026545342057943344, + -0.02725834958255291, + 0.0058508687652647495, + -0.014199571684002876, + 0.010989067144691944, + 0.03526527062058449, + -0.034375738352537155, + 0.04609404504299164, + 0.006928745191544294, + 0.05250169336795807, + -0.032917432487010956, + -0.08923304826021194, + -0.04220482334494591, + -0.06798295676708221, + -0.027651267126202583, + -0.05892063304781914, + -0.0618320107460022, + 0.029340339824557304, + -0.05261775478720665, + 0.013996148481965065, + 0.008583074435591698, + -2.2179298397873026e-08, + -0.015050390735268593, + -0.03630868345499039, + 0.002445342019200325, + 0.006729964632540941, + 0.08957608044147491, + -0.12172237783670425, + 0.00846076663583517, + 0.10694509744644165, + -0.013746296055614948, + -0.05111900344491005, + 0.12919655442237854, + -0.006436516530811787, + -0.09897100180387497, + -0.027630170807242393, + 0.022192705422639847, + 0.035495273768901825, + 0.036346204578876495, + -0.026953553780913353, + -0.023999763652682304, + 0.03807453438639641, + 0.0007344401674345136, + 0.07519256323575974, + 0.029294854030013084, + -0.01820349134504795, + 0.0918838381767273, + -0.023466583341360092, + -0.02242138423025608, + 0.062294378876686096, + 0.05563683807849884, + 0.0539046972990036, + 0.1025291308760643, + 0.04270459711551666, + 0.09155158698558807, + -0.0222106222063303, + -0.011406339704990387, + 0.01910397782921791, + 0.02711455523967743, + 0.05340460687875748, + 0.005771187134087086, + 0.08468649536371231, + -0.010691597126424313, + -0.06304310262203217, + 0.0026683728210628033, + 0.003017029259353876, + 0.0023209769278764725, + -0.043324343860149384, + 0.01150258257985115, + 0.02488206885755062, + -0.021934742107987404, + -0.07910459488630295, + -0.07350011169910431, + -0.04781249910593033, + 0.07154083997011185, + 0.06905578076839447, + -0.016095921397209167, + 0.0014757734024897218, + 0.03415583446621895, + 0.09253957867622375, + 0.0653926357626915, + -0.006182066630572081, + 0.16485042870044708, + -0.01804674230515957, + 0.02869248390197754, + -0.009121270850300789 + ], + "desk-bold||*new*,furniture,workspace,table": [ + 0.012235020287334919, + -0.056215085089206696, + -0.0056104231625795364, + 0.06184688210487366, + 0.049016453325748444, + 0.010950196534395218, + 0.04603717476129532, + -0.09123653173446655, + 0.003389658173546195, + 0.053388308733701706, + 8.848471225064714e-06, + -0.0020218847785145044, + 0.055123329162597656, + -0.04947793483734131, + 0.01605583168566227, + -0.004397708922624588, + 0.03155835345387459, + 0.01033688336610794, + 0.0182010717689991, + 0.07517654448747635, + 0.017114149406552315, + 0.02349202148616314, + -0.0006904141046106815, + -0.035127997398376465, + 0.08187690377235413, + 0.01220731157809496, + 0.021325785666704178, + 0.00455250171944499, + 0.02087569609284401, + -0.06079728528857231, + 0.01077157724648714, + -0.022129373624920845, + 0.0784449353814125, + 0.06453250348567963, + 0.06930666416883469, + 0.011733725666999817, + 0.015620613470673561, + 0.001312802778556943, + 0.0150190694257617, + 0.03195430710911751, + -0.05783354863524437, + -0.07184222340583801, + -0.008597083389759064, + 0.04587932676076889, + -0.020144125446677208, + -0.038466114550828934, + -0.07020252197980881, + -0.10144756734371185, + 0.036508023738861084, + -0.005944651085883379, + -0.03153366968035698, + -0.07798288017511368, + -0.0589960440993309, + 0.005763370543718338, + 0.016478274017572403, + 0.059786535799503326, + -0.0006786086014471948, + -0.004537356086075306, + 0.04409695789217949, + -0.029422860592603683, + 0.0335913822054863, + 0.005625290796160698, + 0.10655882209539413, + 0.029505079612135887, + 0.0005559886922128499, + 0.03391242027282715, + -0.09608302265405655, + 0.010226146318018436, + -0.05364023149013519, + 0.07237046211957932, + -0.01193118467926979, + 0.027674665674567223, + 0.009986820630729198, + 0.012380467727780342, + -0.03603261709213257, + -0.05635073781013489, + -0.019499434158205986, + -0.03451436758041382, + 0.0314013808965683, + -0.01603865996003151, + -0.07465217262506485, + 0.01512279361486435, + -0.08267474174499512, + 0.045446112751960754, + 0.03174503147602081, + 0.072942815721035, + -0.08037503808736801, + -0.06806459277868271, + -0.10610666871070862, + -0.06385538727045059, + 0.010615695267915726, + -0.030816148966550827, + -0.04426105320453644, + 0.05400291830301285, + -0.1715773344039917, + -0.024006396532058716, + 0.07338665425777435, + -0.0028928909450769424, + -0.003271161811426282, + 0.0833979994058609, + -0.0385899655520916, + 0.04233173280954361, + 0.10443831235170364, + 0.025832179933786392, + -0.12430081516504288, + -0.04136352986097336, + 0.007680240087211132, + -0.07542657107114792, + -0.0553717277944088, + -0.02799956500530243, + -0.02247013710439205, + -0.07121992111206055, + -0.0901559516787529, + -0.08712287247180939, + -0.09193257242441177, + 0.032943036407232285, + -0.0637655258178711, + -0.10187516361474991, + 0.10074225813150406, + 0.08909668773412704, + 0.08070866018533707, + -0.010819894261658192, + -0.012195742689073086, + 0.023750340566039085, + -0.014486639760434628, + 0.011010234244167805, + 0.050540078431367874, + -1.5774585011768074e-33, + 0.03971639648079872, + 0.016217660158872604, + -0.03655935451388359, + 0.1180013045668602, + 0.08483239263296127, + 0.03619051352143288, + -0.033667102456092834, + 0.05725551024079323, + -0.02270374447107315, + 0.05196536332368851, + 0.06314034014940262, + 0.01903514750301838, + -0.034059491008520126, + 0.0250621996819973, + 0.027129214257001877, + 0.01855669543147087, + 0.0535837858915329, + 0.007251010742038488, + -0.09892544150352478, + 0.03384548798203468, + -0.09282198548316956, + 0.078223817050457, + -0.015706731006503105, + 0.0015554577112197876, + -0.049831755459308624, + -0.008447052910923958, + 0.0075865574181079865, + -0.029284276068210602, + -0.04908521845936775, + 0.03268074244260788, + -0.005097382236272097, + 0.030124105513095856, + 0.0037964091170579195, + 0.029276516288518906, + -0.10240603238344193, + 0.026838894933462143, + -0.06339608132839203, + 0.0030299192294478416, + 0.0552750863134861, + 0.019940488040447235, + -0.10887280106544495, + 0.04819302633404732, + 0.037097152322530746, + -0.01830201782286167, + 0.06709768623113632, + 0.1188170537352562, + -0.011869781650602818, + -0.05988498777151108, + -0.0018816468073055148, + -0.02420802414417267, + 0.0060304906219244, + 0.04341543838381767, + -0.015341309830546379, + 0.08596159517765045, + -0.010697746649384499, + -0.07416345179080963, + -0.03725476935505867, + 0.06494786590337753, + 0.11349036544561386, + 0.0486791618168354, + 0.041146665811538696, + 0.03625424951314926, + 0.044369351118803024, + 0.05607235059142113, + -0.0393211804330349, + 0.03694412484765053, + 0.003910750616341829, + 0.06557277590036392, + 0.09509988874197006, + -0.04158184304833412, + 0.02852127142250538, + 0.006802334915846586, + 0.012551107443869114, + 0.055912915617227554, + -0.0013499663909897208, + -0.015201338566839695, + -0.025369863957166672, + -0.04259404167532921, + -0.029144659638404846, + -0.1349196434020996, + -0.012083460576832294, + 0.03142067417502403, + -0.03713677078485489, + 0.056528300046920776, + -0.03215503692626953, + -0.01329825073480606, + 0.004306246992200613, + -0.04801348224282265, + -0.051599156111478806, + 0.06368337571620941, + -0.06044499948620796, + -0.03930514305830002, + -0.04085443168878555, + -0.04911363497376442, + -0.07850874960422516, + -1.536882732073826e-33, + 0.07456465065479279, + 0.0013275168603286147, + -0.10959117114543915, + -0.05665122717618942, + -0.03056216426193714, + 0.049529094249010086, + -0.0004628779133781791, + -0.005542334634810686, + -0.028976939618587494, + 0.07295536249876022, + 0.0886724442243576, + -0.021790124475955963, + -0.048103295266628265, + -0.024826612323522568, + 0.018938111141324043, + 0.061310458928346634, + 6.043460234650411e-05, + 0.06500520557165146, + -0.09266173839569092, + 0.05172586441040039, + 0.012248976156115532, + -0.02788093499839306, + -0.07919620722532272, + 0.05234341695904732, + 0.04449300467967987, + -0.007748614065349102, + -0.008664236404001713, + 0.002087825443595648, + -0.008486255072057247, + 0.031781427562236786, + -0.10044054687023163, + -0.022996708750724792, + -0.013193466700613499, + 0.11454758048057556, + 0.0017613371601328254, + -0.0323609784245491, + -0.0829816684126854, + -0.06242576614022255, + 0.0014204472536221147, + 0.032987359911203384, + 0.02999199740588665, + -0.006175332237035036, + 0.03049580007791519, + 0.07714557647705078, + -0.051033712923526764, + -0.03547486662864685, + -0.06720060110092163, + -0.07538246363401413, + -0.00912079494446516, + 0.014493754133582115, + 0.030026616528630257, + -0.06606720387935638, + -0.008181464858353138, + -0.08819685876369476, + -0.03290381655097008, + 0.04809323698282242, + -0.009212074801325798, + -0.013865621760487556, + -0.027015091851353645, + 0.06891819834709167, + -0.01955382339656353, + 0.08288928866386414, + -0.042975056916475296, + 0.06299751251935959, + 0.02408723160624504, + -0.038180653005838394, + -0.018984859809279442, + -0.001186948036774993, + 0.025960080325603485, + -0.0021006714086979628, + -0.0010946420952677727, + 0.02567252703011036, + -0.03191043436527252, + 0.05244911462068558, + -0.017358044162392616, + -0.03507934510707855, + 0.09694114327430725, + -0.017721867188811302, + -0.031011071056127548, + -0.027529019862413406, + -0.020811887457966805, + -0.03326788917183876, + 0.030985504388809204, + -0.03860994800925255, + -0.05883341655135155, + 0.0468003936111927, + -0.04593227058649063, + -0.003521002596244216, + -0.07350854575634003, + -0.03276342153549194, + -0.026515524834394455, + 0.026887457817792892, + -0.04589179530739784, + -0.00014649888908024877, + -0.06737291067838669, + -1.959816842145301e-08, + -0.09097778797149658, + -0.0648411437869072, + -0.0024560054298490286, + -0.024029474705457687, + -0.022721946239471436, + -0.13753066956996918, + 0.011691823601722717, + -0.017786309123039246, + -0.04613776504993439, + -0.03098122589290142, + 0.05043428763747215, + 0.019162632524967194, + -0.0031417745631188154, + 0.027554959058761597, + 0.04641353338956833, + 0.042455654591321945, + -0.026617035269737244, + 0.03203767538070679, + -0.04478636384010315, + -0.03141465783119202, + 0.006174679845571518, + 0.055694255977869034, + 0.041806917637586594, + -0.000514293322339654, + 0.04796101525425911, + -0.014029714278876781, + -0.06829433888196945, + 0.016884692013263702, + 0.09436502307653427, + 0.10691306740045547, + 0.09393373131752014, + 0.030977359041571617, + -0.03354625031352043, + 0.04365156218409538, + -0.008454475551843643, + 0.0004005914379376918, + -0.05709344148635864, + -0.018288681283593178, + -0.012239859439432621, + 0.08115580677986145, + -0.06245468929409981, + -0.05748718976974487, + -0.03989537060260773, + -0.029907096177339554, + -0.03056948445737362, + -0.0229352954775095, + 0.020823709666728973, + -0.02382028102874756, + -0.009222154505550861, + -0.09002438187599182, + -0.013822021894156933, + -0.022356567904353142, + 0.020395789295434952, + 0.029854420572519302, + -0.07379860430955887, + -0.013319526799023151, + 0.04492703080177307, + 0.130409374833107, + 0.023282554000616074, + -0.013938541524112225, + 0.10210469365119934, + 0.02726856991648674, + 0.022002030164003372, + 0.035540636628866196 + ], + "desktop-bold||computer,pc,imac,tower": [ + 0.034072790294885635, + -0.036193184554576874, + 0.0019093904411420226, + -0.011343887075781822, + 0.03455685079097748, + -0.04574829339981079, + 0.006871975027024746, + -0.03299736976623535, + 0.02187846601009369, + -0.027991153299808502, + 0.02447383478283882, + 0.029310807585716248, + 0.07800112664699554, + -0.04398517683148384, + 0.006530465558171272, + 0.010673764161765575, + -0.008654320612549782, + -0.030086906626820564, + 0.022928090766072273, + 0.07187553495168686, + -0.02039055898785591, + -0.06193877384066582, + -0.019914139062166214, + 0.0018645921954885125, + 0.06579580157995224, + -0.013889878056943417, + 0.08848631381988525, + 0.007591537665575743, + -0.006241419818252325, + -0.07018038630485535, + -0.041970331221818924, + -0.02542700432240963, + 0.07466384023427963, + 0.04318978637456894, + 0.01919357292354107, + 0.014016179367899895, + 0.029861144721508026, + -0.04690379276871681, + -0.06537728011608124, + -0.04222775995731354, + 0.006356402765959501, + -0.011836268939077854, + 0.06813792139291763, + 0.05878625065088272, + 0.034525539726018906, + -0.05626087635755539, + -0.054755840450525284, + -0.08595803380012512, + 0.04113238304853439, + 0.01036643236875534, + 0.004423561040312052, + -0.055321626365184784, + -0.08316361904144287, + -0.008055858314037323, + -0.040689047425985336, + 0.015958553180098534, + 0.008172507397830486, + 0.03660742938518524, + 0.10132936388254166, + -0.015820248052477837, + 0.0019899108447134495, + -0.02088245190680027, + 0.06525736302137375, + 0.02192176878452301, + 0.04024447873234749, + -0.009569207206368446, + -0.02316829189658165, + 0.036591626703739166, + -0.043696239590644836, + -0.008599299937486649, + 0.0807005912065506, + -0.027079392224550247, + 0.011743517592549324, + -0.005966438911855221, + -0.07023093849420547, + 0.0010196493240073323, + 0.0013237263774499297, + -0.04960737004876137, + -0.010815422050654888, + 0.0327446423470974, + -0.05577002093195915, + 0.0026508441660553217, + -0.09084044396877289, + 0.05265676975250244, + 0.10852719843387604, + 0.046695634722709656, + -0.10410615056753159, + -0.09398011863231659, + -0.0762832760810852, + -0.025209657847881317, + -0.05445956066250801, + -0.066403329372406, + 0.02047618292272091, + 0.04247181862592697, + -0.08774540573358536, + -0.03856872022151947, + 0.0792621299624443, + -0.03773919492959976, + -0.051374614238739014, + 0.0747208222746849, + 0.021340934559702873, + 0.03907758370041847, + 0.10504379868507385, + 0.024884087964892387, + -0.059195227921009064, + -0.02141115814447403, + 0.012406250461935997, + -0.05788375437259674, + -0.04301374405622482, + -0.019943617284297943, + -0.01986032724380493, + -0.11177443712949753, + -0.09796600788831711, + -0.02161116898059845, + -0.0042431247420609, + -0.0008605960756540298, + -0.055734630674123764, + -0.003012859495356679, + 0.09968618303537369, + 0.020401889458298683, + -0.02427118457853794, + -0.06431812793016434, + 0.015611741691827774, + -0.05222179740667343, + 0.09617629647254944, + -0.0021920790895819664, + 0.0054321992211043835, + -5.480223999333104e-34, + 0.030249282717704773, + -0.0008204331970773637, + -0.05553345009684563, + 0.1210254430770874, + 0.029071152210235596, + -0.007050352171063423, + -0.03498230502009392, + -0.04681872949004173, + -0.055960752069950104, + 0.05476083606481552, + 0.08702745288610458, + 0.08322632312774658, + -0.006566803436726332, + 0.021350184455513954, + 0.05164185166358948, + -0.0682820975780487, + 0.11644850671291351, + 0.004595830105245113, + -0.10377149283885956, + -0.006504921708256006, + -0.01986546628177166, + 0.02141251228749752, + -0.0044434950686991215, + -0.1014406755566597, + -0.022771956399083138, + -0.04584749788045883, + -0.05466790869832039, + 0.02215578779578209, + -0.02380271442234516, + 0.01007920689880848, + 0.02484940178692341, + 0.050363533198833466, + 0.037702105939388275, + 0.02654273249208927, + -0.09028636664152145, + -0.036551814526319504, + -0.03548078611493111, + -0.0038492067251354456, + 0.06999313831329346, + 0.08572448790073395, + -0.15514464676380157, + 0.01688873954117298, + 0.06750787794589996, + -0.07900877296924591, + 0.06527949869632721, + 0.13141648471355438, + -0.022709054872393608, + -0.09819015860557556, + -0.01233953982591629, + 0.02410111576318741, + -0.018204620108008385, + -0.0077086216770112514, + 0.018879694864153862, + 0.03775641694664955, + 0.001321434392593801, + -0.03571739047765732, + -0.006915307138115168, + 0.07498399913311005, + 0.07215335965156555, + 0.05916314572095871, + 0.007175952196121216, + 0.01258154772222042, + 0.018893525004386902, + 0.01879100501537323, + -0.06833276897668839, + 0.06559739261865616, + 0.031103264540433884, + 0.07319086045026779, + -0.02104010246694088, + -0.03767705708742142, + 0.049129314720630646, + -0.02942298725247383, + 0.029991084709763527, + -0.0038719656877219677, + 0.00788082368671894, + 0.004426037892699242, + -0.11257841438055038, + -0.004187950864434242, + -0.09791631996631622, + -0.0394766740500927, + -0.06395266205072403, + -0.007921417243778706, + -0.07228551805019379, + 0.13188794255256653, + 0.035277169197797775, + 0.07525143027305603, + -0.026305196806788445, + -0.033294517546892166, + 0.020356962457299232, + 0.08851904422044754, + -0.06266175955533981, + -0.004418622702360153, + -0.024237357079982758, + -0.03475961461663246, + -0.11910368502140045, + -1.671397948551778e-33, + 0.006873304955661297, + -0.007033147383481264, + -0.02020508237183094, + -0.07067881524562836, + -0.03886512294411659, + 0.051495157182216644, + 0.06894436478614807, + -0.013270946219563484, + -0.07330039888620377, + 0.03415761515498161, + 0.09316030144691467, + 0.039665430784225464, + -0.056772634387016296, + -0.04229545220732689, + -0.010311908088624477, + 0.09855975210666656, + 0.02610580250620842, + 0.07616851478815079, + -0.054185058921575546, + -0.021019313484430313, + -0.06131281331181526, + -0.08686956763267517, + -0.06115422025322914, + 0.07055176794528961, + 0.078750841319561, + 0.025643136352300644, + -0.01059691235423088, + -0.031709879636764526, + 0.06434455513954163, + 0.017554275691509247, + -0.08808119595050812, + 0.0816146582365036, + 0.014993974007666111, + 0.0758904293179512, + 0.06722500175237656, + 0.0311554204672575, + -0.012564553879201412, + -0.07018425315618515, + -0.02085498720407486, + -0.0030164073687046766, + 0.011869954876601696, + 0.08282871544361115, + 0.009269782342016697, + 0.052911799401044846, + -0.02293349616229534, + 0.017691442742943764, + -0.05316437408328056, + -0.052303656935691833, + 0.005588905420154333, + 0.05091327056288719, + 0.057895589619874954, + -0.05249890685081482, + 0.03442450612783432, + -0.008809361606836319, + -0.09590210020542145, + -0.0752217099070549, + -0.0018398429965600371, + 0.082240030169487, + -0.025802722200751305, + 0.03595195338129997, + 0.019166598096489906, + -0.02322135679423809, + -0.07772228121757507, + -0.06779009103775024, + -0.0376129075884819, + -0.02394731342792511, + 0.0484178364276886, + 0.03423473238945007, + 0.017186392098665237, + 0.037426359951496124, + -0.004969671368598938, + 0.014256560243666172, + 0.017133794724941254, + 0.010203123092651367, + 0.00713477935642004, + -0.04344041645526886, + 0.0848160982131958, + 0.0013044532388448715, + 0.00690456060692668, + 0.00504893995821476, + 0.03587274253368378, + 0.03462065011262894, + -0.040784019976854324, + 0.013800625689327717, + -0.03253527730703354, + 0.007907300256192684, + -0.014033885672688484, + 0.010837603360414505, + -0.01771681010723114, + -0.04909377172589302, + -0.02445738948881626, + -0.011560977436602116, + 0.03707936778664589, + -0.03329860791563988, + -0.09811478108167648, + -1.9014548158224898e-08, + -0.0725015327334404, + -0.08923323452472687, + -0.001503705745562911, + -0.006785732228308916, + -0.0070621720515191555, + -0.07732154428958893, + -0.021853236481547356, + -0.08051388710737228, + 0.006099944468587637, + -0.010724356397986412, + 0.01694444939494133, + -0.026880649849772453, + -0.030659303069114685, + -0.026547938585281372, + 0.0539071299135685, + 0.02236879989504814, + -0.05579167976975441, + 0.0856136679649353, + 0.017512191087007523, + -0.04402196407318115, + -0.02109786681830883, + 0.05293465033173561, + 0.04935367777943611, + 0.041178178042173386, + 0.018087614327669144, + 0.016858641058206558, + -0.04070703312754631, + 0.011200481094419956, + 0.06066169589757919, + 0.10328610986471176, + 0.0034218213986605406, + 0.011046827770769596, + -0.019459659233689308, + 0.0015009373892098665, + -0.023917855694890022, + 0.002632914111018181, + 0.02127969264984131, + 0.03351914510130882, + 0.05721040815114975, + 0.05964406579732895, + -0.049553971737623215, + -0.10815436393022537, + -0.05530250072479248, + -0.03720680624246597, + -0.0015044647734612226, + -0.00414256751537323, + 0.0008661815663799644, + -0.01786123774945736, + -0.03557950258255005, + -0.09939300268888474, + 0.012567488476634026, + 0.03772905096411705, + 0.044339656829833984, + 0.05939750000834465, + -0.030143609270453453, + -0.11710445582866669, + 0.0023164970334619284, + 0.0699201449751854, + 0.03328847140073776, + 0.029394561424851418, + 0.13034674525260925, + 0.007402070797979832, + 0.0015334091149270535, + -0.034016553312540054 + ], + "desktop-tower-bold||*updated*,computer,pc,imac": [ + 0.008229098282754421, + -0.015972930938005447, + 0.017629846930503845, + 0.00679132342338562, + 0.05135970562696457, + -0.06326499581336975, + -0.00046675000339746475, + -0.04277418926358223, + 0.01733415760099888, + -0.0049498495645821095, + 0.02619565650820732, + 0.03344719111919403, + 0.04425625130534172, + -0.06804461032152176, + 0.0016882704803720117, + 0.034324679523706436, + -0.0009652086300775409, + -0.019546285271644592, + 0.018354162573814392, + 0.056673564016819, + -0.04834453761577606, + -0.05336137115955353, + -0.021423786878585815, + 0.04104766994714737, + 0.06555227190256119, + -0.003824264509603381, + 0.03369321674108505, + 0.005615838337689638, + -0.017160799354314804, + -0.06589130312204361, + -0.05123166739940643, + 5.7786448451224715e-05, + 0.08319354802370071, + 0.02447783760726452, + 0.03363771736621857, + 0.009967287071049213, + 0.0330037921667099, + -0.03792586550116539, + -0.04321403056383133, + -0.045197803527116776, + 0.024508416652679443, + -0.0065877316519618034, + 0.06591606885194778, + 0.06734398007392883, + 0.010846955701708794, + -0.057117585092782974, + -0.05814597010612488, + -0.09219720959663391, + 0.01125679723918438, + 0.00997626781463623, + 0.01820245571434498, + -0.09253060072660446, + -0.06174487620592117, + -0.04547795280814171, + -0.012474125251173973, + 0.036208849400281906, + 0.03588665649294853, + 0.02968640625476837, + 0.11980395764112473, + 0.005929121747612953, + 0.04217872768640518, + -0.005598939955234528, + 0.04607773572206497, + 0.024668874219059944, + 0.020749686285853386, + -0.008681212551891804, + 0.001113812206313014, + -0.012871956452727318, + -0.025725217536091805, + -0.018937140703201294, + 0.07899565249681473, + 0.0022875797003507614, + 0.03546631336212158, + 0.0014499382814392447, + -0.0773397758603096, + -0.019219549372792244, + 0.007756883278489113, + -0.03506683185696602, + 0.0040255761705338955, + 0.021440615877509117, + -0.029166657477617264, + -0.027762405574321747, + -0.07628577202558517, + 0.023801784962415695, + 0.10703646391630173, + 0.039648182690143585, + -0.09775560349225998, + -0.060552775859832764, + -0.09119372814893723, + -0.04168209061026573, + -0.03852288797497749, + -0.0813324972987175, + 0.03343729302287102, + 0.045330047607421875, + -0.11629248410463333, + -0.002263277070596814, + 0.058301884680986404, + -0.028049323707818985, + -0.08292185515165329, + 0.0685310959815979, + 0.020172439515590668, + 0.07270931452512741, + 0.07871288061141968, + 0.034634534269571304, + -0.04384166747331619, + -0.025306368246674538, + -0.005164542701095343, + 0.003464892040938139, + -0.05857531726360321, + -0.022955501452088356, + -0.029451636597514153, + -0.12480561435222626, + -0.10508474707603455, + -0.03828693926334381, + -0.03172004222869873, + -0.0030109351500868797, + -0.04707084596157074, + 0.009462596848607063, + 0.059742625802755356, + 0.0297432579100132, + 0.04982367902994156, + -0.07086236029863358, + -0.023053230717778206, + -0.07244335114955902, + 0.04975169897079468, + -0.024646736681461334, + 0.021154696121811867, + -2.1592664913804215e-33, + 0.05630989372730255, + 0.007332038599997759, + -0.04134827107191086, + 0.13907957077026367, + 0.058551616966724396, + -0.008743833750486374, + -0.04122530668973923, + -0.0577099546790123, + -0.06067545711994171, + 0.03721878305077553, + 0.09332089871168137, + 0.09228041023015976, + -0.02284267544746399, + 0.02807566709816456, + 0.0449124313890934, + -0.10702304542064667, + 0.11335828900337219, + 0.022021347656846046, + -0.06746428459882736, + -0.001530041336081922, + -0.005799079779535532, + 0.026152385398745537, + -0.014486688189208508, + -0.11135444790124893, + 0.013462500646710396, + -0.02737237699329853, + -0.042310312390327454, + 0.02224743738770485, + -0.005966414697468281, + 0.0071643744595348835, + 0.018813954666256905, + 0.041079867631196976, + 0.047574788331985474, + 0.028027404099702835, + -0.08976971358060837, + -0.060811564326286316, + -0.05904669687151909, + -0.03284822404384613, + 0.060374971479177475, + 0.04026668146252632, + -0.10875550657510757, + -0.005189498420804739, + 0.0245063379406929, + -0.07664909958839417, + 0.08462683111429214, + 0.11655730754137039, + -0.058118853718042374, + -0.10260052978992462, + 0.01020047441124916, + -0.004945190157741308, + -0.005798362661153078, + 0.025831246748566628, + -0.025471961125731468, + 0.0064836409874260426, + -0.023955360054969788, + -0.041618429124355316, + -0.012707250192761421, + 0.0892544612288475, + 0.10241901129484177, + 0.0374283529818058, + 0.02882714755833149, + -0.004784600343555212, + 0.0016494340961799026, + 0.037940848618745804, + -0.05754011869430542, + 0.0640125721693039, + 0.031000353395938873, + 0.04013125225901604, + -0.020192524418234825, + -0.010639972053468227, + 0.022546133026480675, + -0.022608507424592972, + 0.03579944372177124, + 0.01438430231064558, + -0.013666451908648014, + -0.013156132772564888, + -0.1546376496553421, + 0.007959614507853985, + -0.11455564200878143, + -0.02584061399102211, + -0.01856934279203415, + -0.04597150534391403, + -0.08167494088411331, + 0.13883408904075623, + 0.07096420228481293, + 0.07528094202280045, + -0.024828284978866577, + 0.011498904787003994, + -0.005922769196331501, + 0.08477891236543655, + -0.06577087938785553, + -0.011475346982479095, + -0.03902729973196983, + -0.03912730515003204, + -0.11914347857236862, + -1.0606404712232881e-33, + 0.033112067729234695, + -0.028978990390896797, + -0.041637662798166275, + -0.07701729983091354, + -0.061434585601091385, + 0.05136484652757645, + 0.02412273921072483, + 0.016914598643779755, + -0.03909500688314438, + 0.021340560168027878, + 0.08801532536745071, + 0.07706455886363983, + -0.059330519288778305, + -0.06134805828332901, + -0.005274511873722076, + 0.12392830103635788, + 0.014044289477169514, + 0.024742422625422478, + -0.07036297768354416, + 0.003998694941401482, + -0.06013080105185509, + -0.07106000185012817, + -0.07170753926038742, + 0.06781027466058731, + 0.06454276293516159, + -0.001033099601045251, + -0.0035056157503277063, + -0.015535435639321804, + 0.07236020267009735, + -0.0015735722845420241, + -0.0984579548239708, + 0.04219624400138855, + 0.0034825473558157682, + 0.06802117079496384, + 0.08620303869247437, + 0.04765879735350609, + 0.028527704998850822, + -0.10131421685218811, + -0.0319846011698246, + 0.038495276123285294, + 0.028437243774533272, + 0.07353395223617554, + -0.0109340725466609, + 0.03694596141576767, + 0.008410983718931675, + 0.02144555188715458, + -0.05545941740274429, + -0.03696314990520477, + -0.028439613059163094, + 0.03390737995505333, + 0.0611681304872036, + -0.06947679072618484, + 0.01684834249317646, + 0.0034940249752253294, + -0.047575369477272034, + -0.034957531839609146, + -0.02178324945271015, + 0.07953418791294098, + -0.005399809218943119, + 0.008194311521947384, + -0.0012813308276236057, + -0.029997900128364563, + -0.05849934369325638, + -0.06830877810716629, + -0.06364170461893082, + 0.006934076081961393, + 0.03300134465098381, + 0.004543243907392025, + 0.013764248229563236, + 0.03333454579114914, + -0.004530633799731731, + 0.02278365194797516, + -0.020060420036315918, + -0.012038066051900387, + 0.0012504205806180835, + -0.06325637549161911, + 0.0729045569896698, + -0.013533216901123524, + -0.010258959606289864, + -0.022557061165571213, + 0.02223575860261917, + 0.03743574768304825, + -0.005374158266931772, + -0.013703802600502968, + -0.02909918874502182, + -0.014011099934577942, + 0.014502188190817833, + 0.03687896206974983, + -0.01056026853621006, + -0.08722294121980667, + -0.04961725324392319, + -0.03966991603374481, + 0.032503318041563034, + -0.025987206026911736, + -0.09849324822425842, + -2.1091279833740373e-08, + -0.05636817589402199, + -0.03894294053316116, + -0.039223335683345795, + -0.023726115003228188, + 0.06469176709651947, + -0.09149438887834549, + -0.02117716521024704, + -0.06240973249077797, + 0.003558302531018853, + -0.04240703955292702, + 0.030571985989809036, + -0.032220080494880676, + -0.014219529926776886, + -0.0003399509587325156, + 0.07141102105379105, + 0.03762500733137131, + -0.09047368168830872, + 0.07393201440572739, + 0.022186003625392914, + -0.027098653838038445, + -0.02354937046766281, + 0.07126563787460327, + 0.05753825604915619, + 0.02940332144498825, + 0.027961621060967445, + 0.019770046696066856, + -0.03142133727669716, + 0.0005232623079791665, + 0.062350720167160034, + 0.07794580608606339, + 0.020582348108291626, + 0.01696411520242691, + 0.004982309881597757, + 0.014877952635288239, + -0.005150830373167992, + 0.01585499383509159, + 0.054073676466941833, + 0.05746336281299591, + 0.0767284706234932, + 0.06522434204816818, + -0.008065704256296158, + -0.1035224199295044, + -0.04901856556534767, + -0.004332411102950573, + -0.018186403438448906, + -0.003911903128027916, + -0.010925817303359509, + -0.03499368205666542, + -0.048317328095436096, + -0.12105882912874222, + 0.025586310774087906, + 0.04809574782848358, + 0.03724648803472519, + 0.059240806847810745, + -0.021692972630262375, + -0.08785757422447205, + -0.001327725243754685, + 0.036477912217378616, + 0.019251983612775803, + 0.02363729290664196, + 0.12893393635749817, + -0.017411626875400543, + 0.02584456279873848, + -0.02347210980951786 + ], + "detective-bold||incognito,police,law enforcement,spy,secret": [ + -0.10607438534498215, + 0.008315819315612316, + -0.06020815670490265, + -0.045070379972457886, + 0.030760224908590317, + -0.016167663037776947, + 0.09045307338237762, + -0.04140153154730797, + -0.03765732795000076, + 0.003791456576436758, + 0.07680260390043259, + -0.007217156235128641, + 0.03713754937052727, + -0.014111771248281002, + -0.03087550587952137, + 0.010469040833413601, + 0.05614086985588074, + 0.035182222723960876, + -0.00951722078025341, + -0.006348361261188984, + 0.019869470968842506, + 0.013106058351695538, + 0.06828100979328156, + -0.04106627032160759, + -0.038976702839136124, + -0.0021282730158418417, + 0.00014977555838413537, + -0.06308522820472717, + -0.09181510657072067, + -0.06646820157766342, + 0.010488353669643402, + 0.041347943246364594, + 0.09936206042766571, + 0.06357330828905106, + 0.025692474097013474, + -0.09479039907455444, + -0.006236597895622253, + -0.0074867852963507175, + 0.018483564257621765, + 0.029817761853337288, + -0.03305034711956978, + -0.06500529497861862, + 0.0009120243485085666, + 0.040804121643304825, + -0.06143302470445633, + -0.050539128482341766, + -0.02357187680900097, + 0.05766399949789047, + 0.02662941999733448, + -0.02597190998494625, + -0.06704472750425339, + -0.055085983127355576, + -0.09392137080430984, + 0.06202457845211029, + -0.0022443318739533424, + -0.04531676322221756, + -0.027852090075612068, + 0.028243232518434525, + 0.010696707293391228, + 0.014330056495964527, + 0.020193781703710556, + 0.04489794746041298, + 0.05672947317361832, + 0.06292829662561417, + 0.06657089293003082, + 0.01843576692044735, + -0.04541216418147087, + -0.0070048547349870205, + 0.07942431420087814, + 0.008742540143430233, + 0.013649050146341324, + 0.009068256244063377, + -0.02829878218472004, + -0.019077347591519356, + -0.05823543667793274, + 0.01958388462662697, + -0.005564105696976185, + -0.03478250280022621, + -0.025329342111945152, + -0.07510240375995636, + -0.01013503409922123, + -0.05934367701411247, + -0.12028970569372177, + 0.04879210516810417, + -0.004724827595055103, + -0.026912733912467957, + -0.06438853591680527, + -0.06891787052154541, + -0.02985094115138054, + -0.07931225746870041, + -0.05621539056301117, + -0.06222657114267349, + -0.02821657992899418, + -0.0006145398947410285, + -0.05419651418924332, + 0.024034112691879272, + -0.002701310906559229, + 0.04879401996731758, + -0.05767464265227318, + 0.057881537824869156, + 0.006912117823958397, + 0.0020536831580102444, + -0.025936217978596687, + -0.04564082995057106, + -0.003543458878993988, + -0.021488631144165993, + -0.0038881266955286264, + -0.03747573494911194, + 0.0759538933634758, + 0.04206299036741257, + 0.05999227240681648, + -0.08956331759691238, + -0.02508988417685032, + 0.006455427035689354, + 0.13687878847122192, + 0.044181402772665024, + 0.00812382623553276, + 0.10560616850852966, + 0.04913448542356491, + 0.09203004091978073, + 0.049484983086586, + 0.05219557136297226, + -0.08802046626806259, + -0.03383777290582657, + -0.02222554385662079, + 0.03607305511832237, + 0.03683643043041229, + -1.4517625229013955e-33, + 0.010518692433834076, + 0.06682998687028885, + -0.056710146367549896, + 0.1234351396560669, + 0.039492495357990265, + 0.043469611555337906, + -0.010638966225087643, + 0.05956720933318138, + -0.05295581370592117, + 0.13543304800987244, + -0.01205349899828434, + 0.039278630167245865, + -0.04554353281855583, + 0.03076534904539585, + -0.023822026327252388, + 0.08827010542154312, + 0.024105101823806763, + -0.02516321837902069, + -0.011561351828277111, + 0.0016736270627006888, + 0.04512035846710205, + 1.5940751836751588e-05, + -0.04788276553153992, + -0.05201263725757599, + 0.054405491799116135, + -0.041774965822696686, + 0.03853743150830269, + -0.04138430580496788, + 0.054874077439308167, + 0.04324989765882492, + 0.00994559470564127, + 0.10077404975891113, + 0.04856109991669655, + 0.0845598354935646, + 0.043619997799396515, + -0.0014793556183576584, + 0.009588398970663548, + -0.0669955462217331, + 0.010704638436436653, + 0.044833216816186905, + -0.09265155345201492, + -0.0430050864815712, + -0.012185068801045418, + -0.07947384566068649, + -0.015115604735910892, + 0.009323355741798878, + -0.07590442895889282, + 0.012810075655579567, + -0.013549129478633404, + 0.039159636944532394, + 0.04314007610082626, + -0.03417937085032463, + -0.04626550152897835, + -0.010229005478322506, + -0.02373797632753849, + 0.08401501178741455, + -0.004640768747776747, + 0.028341835364699364, + 0.06313826888799667, + 0.025188663974404335, + 0.03195725008845329, + 0.11139477789402008, + -0.006998614873737097, + -0.013438212685286999, + 0.007871588692069054, + -0.05296049267053604, + -0.026685619726777077, + 0.03728136047720909, + 0.09340843558311462, + 0.0422947034239769, + -0.017585955560207367, + 0.047641362994909286, + -0.01841868832707405, + -0.016725506633520126, + -0.015657134354114532, + 0.003042729338631034, + -0.013601917773485184, + 0.04604598134756088, + -0.01265333779156208, + -0.013812584802508354, + -0.09061359614133835, + 0.038874443620443344, + 0.014117351733148098, + 0.08171451091766357, + -0.018264539539813995, + 0.0239667147397995, + 0.006275942549109459, + -0.038284920156002045, + -0.009081946685910225, + 0.10154376924037933, + -0.03967420756816864, + -0.03081427328288555, + -0.01547551155090332, + 0.010762698948383331, + -0.07441836595535278, + -1.4003374919533013e-33, + 0.0026808816473931074, + -0.07840881496667862, + -0.040587957948446274, + -0.060934100300073624, + -0.015004045329988003, + -0.044033195823431015, + -0.0632796660065651, + -0.02979542687535286, + 0.03068188764154911, + 0.03767598792910576, + -0.0725238099694252, + -0.044330187141895294, + 0.012433115392923355, + -0.05815451592206955, + 0.07147343456745148, + 0.016599833965301514, + 0.030352752655744553, + 0.01238191593438387, + -0.06157069653272629, + 0.10029660165309906, + -0.0015954111004248261, + -0.0775076150894165, + -0.09545006603002548, + 0.02938675880432129, + 0.057586345821619034, + 0.0050394171848893166, + 0.08184025436639786, + -0.019623536616563797, + -0.036971334367990494, + 0.06042526662349701, + -0.07067076861858368, + 0.019496705383062363, + -0.007212294265627861, + 0.015184921212494373, + -0.13299942016601562, + 0.07301884144544601, + 0.03887952119112015, + -0.0847502201795578, + -0.0061421627178788185, + -0.03344292193651199, + -0.06416469812393188, + 0.055470045655965805, + 0.03805633261799812, + 0.00964525155723095, + -0.09154835343360901, + -0.053060032427310944, + -0.049899693578481674, + 0.05842968448996544, + -0.035640086978673935, + 0.05174314230680466, + 0.03719880059361458, + 0.0045012845657765865, + -0.025180036202073097, + 0.032535944133996964, + -0.12427285313606262, + 0.04927242174744606, + -0.07731332629919052, + -0.005884854588657618, + -0.014896092005074024, + 0.004624898545444012, + 0.025914469733834267, + 0.09319653362035751, + -0.08767084032297134, + 0.0814196839928627, + -9.173958824248984e-05, + 0.005208111833781004, + -0.008063514716923237, + 0.014758618548512459, + 0.012581722810864449, + -0.026285089552402496, + 0.04514455050230026, + -0.1312268227338791, + -0.028094729408621788, + -0.0342329777777195, + 0.02450007200241089, + 0.004504301119595766, + -0.051689013838768005, + -0.0061265830881893635, + -0.03904631733894348, + 0.08562511205673218, + 0.020930150523781776, + -0.06945018470287323, + -0.04898520186543465, + 0.10883285850286484, + 0.029494531452655792, + 0.057230763137340546, + -0.016394536942243576, + 0.07170677185058594, + 0.05813620239496231, + -0.015391018241643906, + -0.018733717501163483, + 0.0048610451631248, + -0.06268186122179031, + -0.07531191408634186, + -0.004381474573165178, + -2.228787110425401e-08, + 0.001250019297003746, + -0.004917504265904427, + -0.03649359568953514, + 0.00038210407365113497, + 0.0717831626534462, + -0.053085025399923325, + -0.08269578218460083, + -0.023487374186515808, + -0.06339411437511444, + -0.038163911551237106, + 0.0344260036945343, + -0.033297836780548096, + -0.02684062160551548, + -0.060192566365003586, + 0.039241403341293335, + -0.03960200399160385, + 0.04070689529180527, + -0.036793410778045654, + 0.0005409957375377417, + -0.0163720790296793, + -0.01900598779320717, + 0.007418359164148569, + -0.017558397725224495, + 0.011193831451237202, + -0.0012414692901074886, + 0.04818582534790039, + -0.032690953463315964, + -0.050983600318431854, + 0.056157369166612625, + 0.16891510784626007, + -0.05821865051984787, + 0.04020829126238823, + -0.03974659740924835, + 0.008566775359213352, + -0.040863797068595886, + 0.010229608975350857, + 0.10126254707574844, + 0.002437321934849024, + -0.06150922551751137, + -0.011540335603058338, + 0.016497492790222168, + -0.08461422473192215, + 0.012567101046442986, + -0.011341760866343975, + -0.04645112156867981, + -0.02646455727517605, + 0.10632861405611038, + -0.1042293831706047, + 0.033007945865392685, + -0.07865717262029648, + -0.0008091747295111418, + -0.058619361370801926, + 0.013998405076563358, + 0.08823058754205704, + 0.021802566945552826, + 0.039370667189359665, + 0.042627569288015366, + 0.04302668571472168, + -0.1112959086894989, + 0.006203304976224899, + 0.08722026646137238, + 0.0181717611849308, + 0.02111612819135189, + 0.022083565592765808 + ], + "dev-to-logo-bold||reading,writing,social media,logos": [ + 0.0583464577794075, + -0.030584564432501793, + -0.02140672691166401, + -0.0038803652860224247, + 0.13370004296302795, + -0.05283205956220627, + 0.0611700601875782, + -0.04779598489403725, + 0.053204890340566635, + 0.02909039705991745, + -0.025392921641469002, + 0.07481842488050461, + 0.06211855262517929, + -0.03914358839392662, + 0.03651456534862518, + -0.01987612619996071, + -0.007869874127209187, + 0.01593187265098095, + 0.08177092671394348, + -0.049405332654714584, + 0.007923001423478127, + 0.03076891228556633, + 0.021077098324894905, + -0.002983930753543973, + 0.020007839426398277, + 0.012782178819179535, + 0.020497184246778488, + -0.01990518905222416, + 0.008192351087927818, + -0.09666923433542252, + -0.024830220267176628, + 0.02733338437974453, + 0.06017044559121132, + 0.0057890648022294044, + 0.03386057913303375, + 0.03886894881725311, + 0.02901609241962433, + -0.0063674780540168285, + 0.013520287349820137, + -0.021869121119379997, + 0.02027796395123005, + -0.09124156832695007, + 0.021611908450722694, + 0.04700406640768051, + -0.03048117831349373, + -0.008432808332145214, + -0.08715914934873581, + -0.015692394226789474, + -0.023102829232811928, + -0.015554591082036495, + 0.01765426993370056, + -0.14549335837364197, + -0.08805669099092484, + -0.07382851094007492, + 0.007120939437299967, + -0.04303428530693054, + -0.03986048698425293, + -0.018853669986128807, + 0.06332327425479889, + -0.02321936935186386, + 0.027215970680117607, + 0.009409354068338871, + 0.0011137829860672355, + 0.07520423829555511, + 0.11225458979606628, + -0.03659452125430107, + 0.027900515124201775, + 0.07882019132375717, + -0.07775624096393585, + 0.02034277468919754, + 0.046111758798360825, + 0.011278733611106873, + 0.015595554374158382, + -0.016967682167887688, + 0.009087205864489079, + 0.0018415437079966068, + 0.044334281235933304, + 0.004668208304792643, + -0.005759489256888628, + -0.1260579526424408, + -0.029900936409831047, + 0.035817380994558334, + -0.017447717487812042, + 0.03749384358525276, + 0.035326045006513596, + 0.09613487869501114, + -0.06984532624483109, + -0.008710602298378944, + 0.030289918184280396, + 0.04931015148758888, + -0.10239332169294357, + -0.009710980579257011, + 0.046614937484264374, + 0.005878288298845291, + -0.13349498808383942, + 0.01267255749553442, + 0.014204157516360283, + -0.07661081105470657, + -0.046280961483716965, + 0.0830862820148468, + -0.05728460103273392, + 0.0802713930606842, + 0.06780698150396347, + -0.0730871930718422, + 0.01613239198923111, + 0.020410874858498573, + -0.011498663574457169, + 0.014453945681452751, + 0.00511397747322917, + 0.07245559245347977, + 0.030310142785310745, + 0.009173375554382801, + -0.0958709567785263, + 0.004703976213932037, + 0.025783300399780273, + -0.0939437672495842, + -0.04419689625501633, + -0.03737245127558708, + 0.14292189478874207, + -0.0016385221388190985, + 0.005665443371981382, + 0.039557743817567825, + -0.0860222727060318, + -0.06483186781406403, + -0.005348798353224993, + -0.008491020649671555, + -0.015196219086647034, + -2.8492201455306784e-33, + 0.10280252993106842, + 0.11828348785638809, + -0.04377003386616707, + 0.09408184885978699, + -0.008612657897174358, + 0.01873292401432991, + -0.01975131407380104, + -0.04842371121048927, + -0.12408874183893204, + 0.019754821434617043, + 0.07032196968793869, + 0.07382555305957794, + -0.021608857437968254, + 0.1575719565153122, + 0.04205908626317978, + -0.0631030797958374, + -0.03030015155673027, + -0.013087151572108269, + -0.0792490616440773, + -0.014002294279634953, + -0.060910582542419434, + -0.0015421019634231925, + -0.059917300939559937, + 0.02081706002354622, + 0.02191767655313015, + -0.05188342556357384, + 0.012395460158586502, + -0.020968707278370857, + -0.024141110479831696, + 0.010401414707303047, + -0.014826450496912003, + 0.04282110556960106, + 0.03902631998062134, + 0.02479538507759571, + -0.002246154472231865, + -0.08341994136571884, + -0.017918691039085388, + -0.05214850977063179, + 0.00855478085577488, + 0.05577349290251732, + -0.036318786442279816, + -0.04951901361346245, + -0.019301973283290863, + 0.006350345443934202, + -0.0018349988386034966, + 0.16056989133358002, + -0.024596959352493286, + -0.1307649165391922, + 0.0654429942369461, + -0.01763293705880642, + -0.015855364501476288, + -0.008690470829606056, + 0.0015149310929700732, + -0.06267911940813065, + -0.015302893705666065, + -0.0829872116446495, + -0.031920839101076126, + -0.006385951302945614, + 0.06999614834785461, + -0.027439745143055916, + 0.029194006696343422, + 0.024512918666005135, + 0.059017863124608994, + 0.021952161565423012, + -0.04230440407991409, + 0.06903570890426636, + 0.01090822834521532, + 0.0037485864013433456, + 0.054329246282577515, + -0.08849743753671646, + -0.01217314787209034, + 0.028354652225971222, + 0.038021285086870193, + -0.0018673259764909744, + -0.09775145351886749, + 0.02123323641717434, + -0.0008660497260279953, + -0.008345304057002068, + -0.006258310750126839, + 0.05840834230184555, + -0.037485625594854355, + 0.011030335910618305, + -0.06687647849321365, + 0.04024365916848183, + 0.09798931330442429, + 0.015054024755954742, + 0.017835313454270363, + -0.08055993169546127, + -0.06133414804935455, + 0.03070780634880066, + -0.06356749683618546, + 0.008369741030037403, + -0.007734267506748438, + -0.05344615876674652, + -0.14361877739429474, + 5.800450241838692e-34, + 0.007845617830753326, + -0.0009982428746297956, + 0.02943110652267933, + 0.025857191532850266, + -0.07010329514741898, + -0.02214776910841465, + 0.017506500706076622, + 0.04921231046319008, + 0.023200636729598045, + 0.01471942849457264, + 0.04334419593214989, + 0.018804917111992836, + -0.10732964426279068, + -0.0498628094792366, + -0.05527200922369957, + -0.006262488663196564, + 0.05014372617006302, + 0.004353447817265987, + -0.08990278095006943, + 0.023306019604206085, + -0.029780622571706772, + -0.004613461904227734, + -0.0636710375547409, + 0.06682459264993668, + 0.00016869096725713462, + 0.0287043284624815, + 0.0038394639268517494, + 0.014679990708827972, + -0.0970897525548935, + -0.022718416526913643, + -0.02492176741361618, + -0.02191741019487381, + 0.03592932969331741, + 0.025234181433916092, + -0.026741759851574898, + 0.0021840648259967566, + -0.0015198058681562543, + -0.006981428246945143, + 0.012094424106180668, + 0.053458571434020996, + 0.023861054331064224, + 0.02251245640218258, + -0.00961988978087902, + 0.03582845628261566, + -0.06936325877904892, + -0.01881137676537037, + -0.08692929148674011, + -0.12323574721813202, + -0.0363054983317852, + 0.10758201032876968, + 0.05462133511900902, + -0.016727454960346222, + 0.00850166380405426, + -0.018345944583415985, + -0.07065080851316452, + -0.05224629119038582, + 0.038839489221572876, + 0.027867604047060013, + 0.0010983268730342388, + 0.05099735036492348, + 0.03616005927324295, + 0.01684601418673992, + -0.05421922728419304, + 0.002383613958954811, + -0.010913394391536713, + -0.038865964859724045, + 0.02811453305184841, + -0.009899736382067204, + -0.066817507147789, + 0.06553974002599716, + 0.028806839138269424, + -0.01595500111579895, + 0.012560807168483734, + 0.027280665934085846, + -0.027833880856633186, + -0.08724222332239151, + 0.07488128542900085, + 0.006067807786166668, + -0.05867614969611168, + 0.028226854279637337, + -0.01970946416258812, + 0.014350702986121178, + -0.06983334571123123, + 0.10976708680391312, + 0.06812365353107452, + 0.025680556893348694, + -0.04386836290359497, + 0.01293855719268322, + 0.03242097049951553, + -0.0029486168641597033, + -0.0513078011572361, + 0.0696992427110672, + 0.0421278178691864, + 0.040589313954114914, + -0.03244791924953461, + -1.979548258645991e-08, + -0.05102209746837616, + -0.058938052505254745, + 0.002207566983997822, + -0.011280760169029236, + 0.03776148334145546, + 0.013619127683341503, + 0.018894124776124954, + -0.09323503822088242, + -0.003616205183789134, + -0.015448717400431633, + -0.05189293622970581, + -0.02844713255763054, + -0.09332039207220078, + 0.02207237295806408, + 0.05837664380669594, + 0.014615164138376713, + -0.04991968348622322, + 0.06169397756457329, + -0.04373103380203247, + -0.09642843902111053, + -0.04746456816792488, + 0.08675798773765564, + 0.01222588587552309, + -0.024978622794151306, + 0.030081596225500107, + 0.05631446838378906, + -0.02814258448779583, + -0.043112028390169144, + 0.03471320495009422, + 0.02899015136063099, + 0.03751061111688614, + 0.06999166309833527, + 0.005435071885585785, + -0.00387244438752532, + -0.03341939300298691, + -0.030361233279109, + 0.016415372490882874, + -0.00318005308508873, + -0.02151535265147686, + 0.08595776557922363, + 0.041158586740493774, + 0.02411525882780552, + 0.013333640061318874, + -0.0023744089994579554, + -0.044286344200372696, + 0.015216058120131493, + 0.04009737819433212, + 0.019121387973427773, + -0.04453546181321144, + -0.09290892630815506, + 0.014469647780060768, + -0.0005193754914216697, + -0.007947525009512901, + 0.0508589930832386, + -0.026970840990543365, + -0.0884946882724762, + 0.030304020270705223, + 0.1029672622680664, + 0.04255719110369682, + 0.04150902107357979, + 0.13276201486587524, + -0.014957118779420853, + 0.0190729983150959, + -0.033305756747722626 + ], + "device-mobile-bold||cellphone,cellular": [ + -0.030549675226211548, + 0.04499127343297005, + 0.030732491984963417, + -0.019248872995376587, + -0.009773158468306065, + -0.09037873148918152, + 0.08457646518945694, + -0.018480150029063225, + 0.06706587970256805, + -0.007052300497889519, + 0.042479339987039566, + 0.0451551154255867, + 0.06847327202558517, + -0.057186488062143326, + 0.0453127883374691, + -0.00031678189407102764, + 0.01345102209597826, + 0.02442132495343685, + -0.02533118799328804, + 0.05706866830587387, + 0.04868980497121811, + 0.08356156200170517, + 0.01272758562117815, + 0.01977916806936264, + 0.08238659799098969, + -0.07058873772621155, + 0.024552946910262108, + 0.052232589572668076, + 0.028155844658613205, + -0.05508910119533539, + -0.010138002224266529, + 0.07850529998540878, + 0.07157686352729797, + 0.08881181478500366, + -0.021902311593294144, + -0.06768494099378586, + -0.041921816766262054, + -0.021761290729045868, + -0.018375322222709656, + 0.03276010602712631, + 0.033258650451898575, + -0.09656031429767609, + 0.014759395271539688, + 0.06737130880355835, + -0.07937558740377426, + -0.034500472247600555, + -0.04339635372161865, + 0.00144347851164639, + -0.005066968034952879, + -0.04850233346223831, + 0.021953623741865158, + -0.039023157209157944, + -0.09714634716510773, + 0.010082200169563293, + -0.05846061557531357, + 0.03175170347094536, + -0.05322861298918724, + 0.1035798192024231, + 0.14645077288150787, + 0.04170415177941322, + 0.03125106543302536, + 0.028937863186001778, + 0.011952578090131283, + 0.030539195984601974, + 0.02751852758228779, + -0.020237868651747704, + -0.027850331738591194, + -0.008119449950754642, + -0.06096172705292702, + 0.048470884561538696, + 0.07823693752288818, + -0.004384289495646954, + 0.039983440190553665, + -3.044243021577131e-05, + -0.009624065831303596, + 0.07681354135274887, + 0.01174281258136034, + 0.035905368626117706, + -0.03900151699781418, + -0.021336760371923447, + -0.009673196822404861, + -0.07177191227674484, + -0.019365020096302032, + -0.014800298027694225, + 0.09818898141384125, + 0.0004248754121363163, + -0.07150782644748688, + 0.010679669678211212, + -0.07898140698671341, + -0.04378506541252136, + -0.07204120606184006, + 0.05035889893770218, + -0.04486560449004173, + 0.03563295677304268, + -0.13660921156406403, + -0.01255446020513773, + -0.002263628179207444, + -0.08961223065853119, + -0.07819192111492157, + 0.09285309165716171, + 0.06520994007587433, + 0.0632186159491539, + 0.03188411891460419, + 0.06420045346021652, + -0.020123835653066635, + -0.07565688341856003, + 0.008065874688327312, + -0.018896693363785744, + 0.0022390573285520077, + 0.011620497331023216, + -0.005552870221436024, + -0.08682353049516678, + -0.06539292633533478, + -0.0027303884271532297, + -0.05855662375688553, + -0.025123393163084984, + -0.03230097144842148, + 0.032390937209129333, + 0.1354258805513382, + -0.002998437499627471, + -0.08138063549995422, + -0.06004964932799339, + -0.10108229517936707, + -0.08721384406089783, + 0.01982172764837742, + 0.0375862754881382, + 0.040301430970430374, + -1.9697588022706218e-33, + 0.021485626697540283, + 0.10408394038677216, + -0.03972014784812927, + 0.07988137751817703, + 0.005812593270093203, + -0.004110494162887335, + -0.06664571166038513, + -0.04613498970866203, + -0.04774080589413643, + 0.059567734599113464, + 0.06365729123353958, + 0.05554612725973129, + -0.032393090426921844, + 0.026788022369146347, + 0.043024856597185135, + -0.08691807836294174, + -0.05072401463985443, + -0.07513472437858582, + -0.04215331748127937, + 8.903834532247856e-05, + -0.08156854659318924, + 0.009211400523781776, + -0.05192246288061142, + -0.05728237330913544, + -0.014317386783659458, + -0.02459634095430374, + 0.07310453802347183, + -0.06431295722723007, + -0.026650261133909225, + 0.023676790297031403, + 0.010831954888999462, + 0.03434223309159279, + 0.05790300667285919, + -0.006525144446641207, + -0.012891223654150963, + 0.03127617388963699, + -0.019510436803102493, + -0.02783050388097763, + -0.016545163467526436, + 0.0015157138695940375, + -0.1160845011472702, + -0.013457637280225754, + -0.023449577391147614, + -0.024165797978639603, + -0.009074602276086807, + 0.11901301145553589, + -0.04351716861128807, + -0.09624948352575302, + 0.008169877342879772, + 0.04129686951637268, + 0.006818854715675116, + -0.056700319051742554, + 0.0010294835083186626, + -0.05180877819657326, + 0.03997533768415451, + 0.010319762863218784, + -0.004927752073854208, + 0.03903328627347946, + 0.012244604527950287, + -0.018090028315782547, + 0.02154267020523548, + -0.012900649569928646, + -0.0177462138235569, + 0.012953855097293854, + -0.0692991092801094, + 0.06270471215248108, + -0.03708849847316742, + -0.011497740633785725, + 0.05547963082790375, + 0.011878942139446735, + 0.06522884219884872, + 0.010957459919154644, + 0.08172952383756638, + 0.005466941744089127, + -0.030008401721715927, + 0.08533590286970139, + 0.03150104358792305, + 0.007663869298994541, + -0.015035207383334637, + -0.07015620172023773, + -0.07728095352649689, + 0.0011487067677080631, + -0.04782678559422493, + 0.06964071840047836, + 0.010829285718500614, + -0.007389530539512634, + -0.08236953616142273, + -0.15118448436260223, + -0.040341973304748535, + 0.13909420371055603, + -0.07554955035448074, + 0.01432211697101593, + -0.046103473752737045, + -0.023956267163157463, + -0.10889081656932831, + -8.348737405074134e-34, + -0.02825571969151497, + 0.06093684211373329, + -0.02796666882932186, + -0.08779429644346237, + -0.004545699805021286, + -0.021799301728606224, + 0.07917185872793198, + 0.049112752079963684, + -0.030263783410191536, + 0.004853133112192154, + 0.04723077267408371, + -0.0002544738817960024, + -0.023439966142177582, + -0.03202414885163307, + -0.021772637963294983, + 0.01278484333306551, + 0.029604140669107437, + -0.0042311144061386585, + 0.003599222283810377, + 0.07008077949285507, + -0.054250407963991165, + -0.03641432523727417, + -0.007065102458000183, + 0.13996002078056335, + 0.009179636836051941, + 0.01857950910925865, + -0.013642963953316212, + 0.03006863221526146, + -0.030220337212085724, + -0.07492506504058838, + -0.02563602291047573, + -0.05695738643407822, + 0.058574359863996506, + 0.03603141009807587, + 0.026430441066622734, + 0.047930218279361725, + 0.03057120367884636, + -0.01211781520396471, + 0.04062191769480705, + -0.06322062015533447, + 0.027931123971939087, + 0.03181200101971626, + 0.00942530669271946, + 0.005572271067649126, + -0.010172592476010323, + -0.04071695730090141, + 0.0525655634701252, + -0.032808344811201096, + -0.046918511390686035, + 0.03454480692744255, + 0.08341795951128006, + 0.00946810282766819, + 0.002282519591972232, + 0.011504347436130047, + -0.10406015068292618, + 0.014359109103679657, + 0.051177702844142914, + -0.04708600416779518, + -0.026964176446199417, + 0.030620932579040527, + 0.07776935398578644, + 0.016898805275559425, + -0.0686284527182579, + -0.004102971870452166, + -0.007259187754243612, + -0.0382278710603714, + 0.05844619497656822, + -0.01929568126797676, + 0.06192690506577492, + 0.044727712869644165, + -0.007383767515420914, + -0.007761742454022169, + -0.034836430102586746, + 0.023886527866125107, + 0.02569904364645481, + -0.023892251774668694, + -0.05186430737376213, + 0.008557837456464767, + -0.03864029049873352, + 0.01236791256815195, + 0.043064508587121964, + 0.04715058207511902, + -0.07227492332458496, + 0.01708104833960533, + -0.004048158414661884, + 0.06039540097117424, + 0.037567172199487686, + 0.02969486638903618, + -0.03141148015856743, + 0.015036292374134064, + -0.01830306649208069, + 0.019250089302659035, + -0.05804470181465149, + 0.019237827509641647, + -0.05863224342465401, + -1.6896461119131345e-08, + 0.041227418929338455, + -0.008554106578230858, + 0.010018170811235905, + -0.07215402275323868, + -0.031367573887109756, + -0.10376580059528351, + 0.00200349441729486, + -0.10693224519491196, + 0.06948307901620865, + -0.03132524713873863, + -0.00776752270758152, + 0.00020697276340797544, + -0.06123935803771019, + 0.05488688871264458, + 0.06422801315784454, + 0.06448626518249512, + -0.07746010273694992, + 0.023188922554254532, + -0.055345937609672546, + 0.01711568795144558, + -0.01788637414574623, + 0.06054195389151573, + -0.006952301599085331, + 0.02738236077129841, + 0.05621868744492531, + 0.02549765259027481, + -0.09427601099014282, + -0.004800625145435333, + 0.06251446902751923, + 0.038720034062862396, + 0.0296426173299551, + 0.06857895851135254, + -0.04666615650057793, + -0.007708986755460501, + -0.1024109274148941, + -0.020743511617183685, + 0.0018993013072758913, + -0.05349114537239075, + 0.05234251916408539, + 0.07954584062099457, + -0.008095885626971722, + -0.05389285460114479, + -0.02997163124382496, + 0.02106909640133381, + 0.0005984323797747493, + -0.017588984221220016, + 0.08077041804790497, + -0.04857004061341286, + -0.07008163630962372, + -0.05652084946632385, + -0.0387229360640049, + -0.02794714644551277, + -0.04092689976096153, + 0.003964588511735201, + 0.01111130602657795, + -0.11735888570547104, + 0.01539677195250988, + 0.04940904304385185, + -0.05814344063401222, + 0.012972911819815636, + 0.11452805250883102, + 0.06812959909439087, + 0.058596886694431305, + 0.008656886406242847 + ], + "device-mobile-camera-bold||cellphone,cellular": [ + -0.048548419028520584, + 0.04195523262023926, + 0.015060024335980415, + -0.05687088519334793, + 0.05230735242366791, + -0.11404773592948914, + 0.09490298479795456, + 0.012701633386313915, + 0.07697432488203049, + 0.01606471836566925, + 0.04880818724632263, + 0.01313512772321701, + 0.037869200110435486, + -0.01416532602161169, + 0.05206127092242241, + -0.04263007268309593, + 0.0059391227550804615, + -0.0011433465406298637, + -0.024583889171481133, + 0.0646105706691742, + 0.0292474627494812, + 0.02311181090772152, + 0.05406799167394638, + -0.001031895400956273, + 0.08326488733291626, + -0.07864577323198318, + 0.01392871793359518, + 0.052628032863140106, + 0.0026500863023102283, + -0.03274988383054733, + -0.02962750382721424, + 0.06200084462761879, + 0.0651906356215477, + 0.10239310562610626, + -0.014311181381344795, + -0.069151371717453, + -0.032865095883607864, + -0.03609442338347435, + -0.058153942227363586, + 0.03704284876585007, + 0.010082163847982883, + -0.043290361762046814, + 0.03410814702510834, + 0.029679758474230766, + -0.0533265694975853, + 0.011420336551964283, + 0.009971636347472668, + -0.009213725104928017, + -0.01523560006171465, + -0.05605456978082657, + -0.037711188197135925, + -0.03402973338961601, + -0.07025272399187088, + 0.005528073292225599, + -0.0750185176730156, + 0.018669698387384415, + -0.08432068675756454, + 0.07606371492147446, + 0.14604289829730988, + 0.025327587500214577, + 0.0185360386967659, + 0.04234111309051514, + 0.008645155467092991, + 0.06092623248696327, + 0.017969321459531784, + 0.023409832268953323, + 0.006262130104005337, + -0.024888725951313972, + -0.03877976909279823, + 0.027349276468157768, + 0.025632265955209732, + 0.03036472573876381, + 0.04085668548941612, + -0.022947048768401146, + -0.022076386958360672, + 0.060974184423685074, + 0.007523806765675545, + 0.03139517083764076, + -0.03844141587615013, + -0.062141548842191696, + 0.041849445551633835, + -0.0794086754322052, + -0.01492519211024046, + -0.007517555728554726, + 0.1016312837600708, + -0.012321138754487038, + -0.05966131389141083, + -0.00022770027862861753, + -0.05698980763554573, + -0.0727422684431076, + -0.12278224527835846, + 0.019176490604877472, + -0.09383884072303772, + -0.011597292497754097, + -0.14728331565856934, + -0.024438871070742607, + 0.0035357989836484194, + -0.08521507680416107, + -0.05723005533218384, + 0.09535614401102066, + 0.0635218471288681, + 0.01393148209899664, + 0.03890795633196831, + 0.04699278995394707, + 0.026327017694711685, + -0.0685204565525055, + -0.012020776979625225, + -0.0015904412139207125, + 0.042988140136003494, + 0.030374202877283096, + 0.02286069467663765, + -0.04963109269738197, + -0.06221169978380203, + -0.028289539739489555, + -0.027942588552832603, + 0.005140361841768026, + -0.051532674580812454, + 0.01443912647664547, + 0.10180152952671051, + -0.009321792051196098, + -0.04696864262223244, + -0.069441057741642, + -0.11440578103065491, + -0.07432303577661514, + 0.024244247004389763, + 0.030913760885596275, + 0.08494746685028076, + -2.687934973758168e-33, + 0.039967186748981476, + 0.0923919528722763, + 0.0090589988976717, + 0.06884898990392685, + 0.02901466377079487, + 0.017743730917572975, + -0.0490555576980114, + -0.003253502305597067, + -0.07020508497953415, + 0.04838645085692406, + 0.06710535287857056, + -0.009115764871239662, + -0.043973565101623535, + 0.030889052897691727, + 0.054979417473077774, + -0.029696375131607056, + -0.06043531000614166, + -0.08807817101478577, + -0.028191501274704933, + 0.034645892679691315, + -0.06285655498504639, + -0.004217215813696384, + -0.026181839406490326, + -0.012761463411152363, + -0.0020428604912012815, + -0.014065627939999104, + 0.09987877309322357, + -0.032244112342596054, + -0.002642619190737605, + 0.00997881218791008, + 0.0052467528730630875, + 0.03851727023720741, + 0.0644504502415657, + -0.028072351589798927, + 0.04088893532752991, + 0.018278943374753, + -0.02380424365401268, + -0.024847878143191338, + -0.004561511799693108, + -0.01660863868892193, + -0.10245583206415176, + 0.02004416659474373, + -0.06215444207191467, + -0.03410220891237259, + 0.011208637617528439, + 0.09952650964260101, + -0.05748825520277023, + -0.030171366408467293, + -0.04247891157865524, + 0.05918996036052704, + 0.009605786763131618, + -0.04711560159921646, + -0.027506984770298004, + -0.08875321596860886, + -0.02101716212928295, + 0.015989605337381363, + -0.02341114915907383, + 0.03358215093612671, + -0.011002539657056332, + -0.03913058340549469, + 0.028529567644000053, + -0.020489076152443886, + -0.03620142862200737, + 0.007259294390678406, + -0.08149244636297226, + 0.042089395225048065, + -0.006859667133539915, + 0.032841071486473083, + 0.027454497292637825, + 0.020142143592238426, + 0.053283076733350754, + 0.0005637382273562253, + 0.07985173165798187, + -0.017819011583924294, + -0.006129360757768154, + 0.12525944411754608, + -0.010163814760744572, + -0.009081891737878323, + -0.011601288802921772, + -0.011203833855688572, + -0.12267284840345383, + 0.02749914675951004, + -0.012273184023797512, + 0.07684411108493805, + -0.014116831123828888, + -0.022292470559477806, + -0.06412465870380402, + -0.11687637120485306, + -0.050781041383743286, + 0.13167642056941986, + -0.054812535643577576, + 0.05171428248286247, + -0.02671327255666256, + -0.03323754668235779, + -0.10456706583499908, + 3.480274645042527e-34, + -0.01656578667461872, + 0.06688893586397171, + -0.0721065104007721, + -0.09503935277462006, + -0.024832433089613914, + -0.062362294644117355, + 0.10109319537878036, + 0.08483725041151047, + 0.0556127093732357, + -0.0011769268894568086, + 0.05640184134244919, + -0.047892212867736816, + -0.025659536942839622, + -0.021072685718536377, + -0.015928732231259346, + -0.005919337272644043, + 0.009106489829719067, + -0.01893058978021145, + -0.0198059044778347, + 0.06916633993387222, + -0.018058812245726585, + -0.01882079802453518, + 0.03322404995560646, + 0.1409396380186081, + 0.030292153358459473, + 0.03475824370980263, + 0.006797045934945345, + 0.04665660113096237, + -0.0044687362387776375, + -0.11794780194759369, + 0.016612304374575615, + -0.08379419893026352, + 0.07461053878068924, + 0.01966525800526142, + 0.004705708473920822, + 0.06893863528966904, + 0.038254935294389725, + -0.019050709903240204, + 0.02241416834294796, + -0.024517346173524857, + 3.693293547257781e-05, + 0.026778191328048706, + 0.008271163329482079, + -0.023652847856283188, + -0.012720368802547455, + -0.055058255791664124, + 0.04814348742365837, + 0.0028853726107627153, + -0.04367230087518692, + 0.027877768501639366, + 0.047696553170681, + 0.015364350751042366, + -0.025518210604786873, + 0.013104530982673168, + -0.09452670812606812, + 0.04752930998802185, + 0.026395458728075027, + -0.051816098392009735, + -0.008622786030173302, + 0.04582517594099045, + 0.09953132271766663, + 0.02542577125132084, + -0.08875473588705063, + -0.026030398905277252, + -0.008352074772119522, + -0.011307363398373127, + 0.0441286675632, + -0.02287887968122959, + 0.04674242436885834, + 0.08359339088201523, + 0.01028403826057911, + 0.002191678388044238, + -0.011469367891550064, + 0.03809230774641037, + 0.045599352568387985, + -0.011316678486764431, + -0.057349372655153275, + 0.03787834197282791, + 0.004060161300003529, + 0.002448465209454298, + 0.047851305454969406, + -0.029008060693740845, + -0.031230729073286057, + 0.07957116514444351, + 0.019277608022093773, + 0.05703165382146835, + 0.035690803080797195, + -0.0008972088689915836, + -0.032029733061790466, + -0.0012221095385029912, + -0.0300633292645216, + -0.000399241951527074, + -0.06020250543951988, + 0.02258089743554592, + -0.056217923760414124, + -1.6476327857617434e-08, + 0.023288652300834656, + -0.007177223917096853, + -0.017131095752120018, + -0.06562171876430511, + -0.03583220764994621, + -0.12465216964483261, + 0.008384590037167072, + -0.054317109286785126, + 0.08408156782388687, + -0.08222004771232605, + 0.011429810896515846, + 0.00899065937846899, + -0.03851856291294098, + 0.035464659333229065, + 0.04536202549934387, + 0.06256046891212463, + -0.07399118691682816, + 0.013025249354541302, + -0.05266132205724716, + 0.020747490227222443, + -0.026018770411610603, + 0.004287172574549913, + -0.0427045114338398, + 0.010932316072285175, + 0.049399275332689285, + -0.005766852293163538, + -0.10195272415876389, + -0.028546594083309174, + 0.07154438644647598, + 0.0006350119365379214, + -0.007801393046975136, + 0.05570352450013161, + -0.01146653387695551, + 0.016207963228225708, + -0.0782027393579483, + -0.017085153609514236, + -0.023592740297317505, + -0.028707295656204224, + 0.061491407454013824, + 0.043063294142484665, + -0.020687086507678032, + -0.03763837367296219, + -0.016572631895542145, + 0.027952875941991806, + 0.014118052087724209, + 0.006434587761759758, + 0.1336147040128708, + -0.0402340441942215, + -0.06750741600990295, + -0.05504712089896202, + -0.09292881190776825, + -0.0326845720410347, + -0.021819358691573143, + 0.04046529904007912, + 0.006427873857319355, + -0.1280619502067566, + 0.08898782730102539, + 0.004406944382935762, + -0.08588969707489014, + 0.006844190414994955, + 0.099579818546772, + 0.06808524578809738, + 0.03035588003695011, + 0.04195179417729378 + ], + "device-mobile-slash-bold||*new*,cellphone,cellular": [ + -0.05831223353743553, + -0.0043753404170274734, + 0.05274473503232002, + -0.037777118384838104, + -0.0135708749294281, + -0.10348966717720032, + 0.010090257972478867, + -0.025468559935688972, + 0.06687203794717789, + 0.02079676277935505, + 0.10505793243646622, + 0.018667830154299736, + 0.05296773463487625, + -0.010916341096162796, + 0.025673752650618553, + 0.006723780184984207, + 0.0010520369978621602, + 0.00758654298260808, + -0.014147026464343071, + 0.07192694395780563, + 0.030238553881645203, + 0.10251766443252563, + -0.022564325481653214, + -0.014906563796103, + 0.10890281200408936, + -0.07857459783554077, + 0.025992294773459435, + 0.028069382533431053, + 0.029766736552119255, + -0.05681949853897095, + 0.00674419105052948, + 0.07497236132621765, + 0.08906173706054688, + 0.09807876497507095, + 0.04546310752630234, + -0.05209986865520477, + 0.005661434959620237, + -0.027844101190567017, + -0.00991775467991829, + -0.025610359385609627, + 0.03476430103182793, + -0.08995325118303299, + -0.01338404044508934, + 0.06563548743724823, + -0.059745948761701584, + -0.022065743803977966, + -0.02738167531788349, + -0.02094562165439129, + 0.011771605350077152, + -0.029693203046917915, + 0.01805923692882061, + -0.024352846667170525, + -0.11070610582828522, + -0.007411979604512453, + -0.029047129675745964, + 0.023322129622101784, + -0.05663008987903595, + 0.11174162477254868, + 0.14877913892269135, + 0.05038132518529892, + 0.05891821160912514, + 0.011839537881314754, + 0.023921411484479904, + 0.02041502296924591, + -0.0022454005666077137, + -0.04508526995778084, + -0.07135165482759476, + -0.0033863114658743143, + -0.05883235111832619, + 0.050594761967659, + 0.029873467981815338, + 0.003957844339311123, + 0.009052579291164875, + 0.03945839777588844, + -0.022581584751605988, + 0.04951457679271698, + -0.0074280425906181335, + 0.0593021921813488, + -0.035014715045690536, + -0.02481195144355297, + 0.017102254554629326, + -0.028786208480596542, + -0.009594918228685856, + -0.000228198230615817, + 0.10383152961730957, + 0.025512466207146645, + -0.07295334339141846, + -0.002291883109137416, + -0.08592703193426132, + -0.08392144739627838, + -0.05611138045787811, + 0.01618991792201996, + -0.03334486111998558, + 0.03127779811620712, + -0.15309935808181763, + -0.018212396651506424, + -0.030175773426890373, + -0.07305305451154709, + -0.06737710535526276, + 0.0942138135433197, + 0.025104310363531113, + 0.04550308361649513, + 0.00022059085313230753, + 0.07019129395484924, + -0.008037353865802288, + -0.055421486496925354, + 0.008169665932655334, + -0.010802733711898327, + -0.01577056758105755, + 0.03784293308854103, + 0.01829206570982933, + -0.0604369230568409, + -0.0868363305926323, + -0.03073006682097912, + -0.05267660692334175, + -0.0057100169360637665, + -0.07777395099401474, + 0.018419703468680382, + 0.13175170123577118, + 0.074552983045578, + -0.05517663061618805, + -0.085068479180336, + -0.1170441210269928, + -0.08687923848628998, + -0.01412539929151535, + 0.026631366461515427, + 0.019880300387740135, + -3.585232790753022e-33, + 0.05244427174329758, + 0.10830112546682358, + -0.0323416069149971, + 0.07163392752408981, + 0.00440565450116992, + 0.007832156494259834, + -0.03100515529513359, + -0.0036706754472106695, + -0.032421085983514786, + 0.02577052265405655, + 0.04736902564764023, + 0.02127726934850216, + -0.01570761762559414, + 0.01852303184568882, + 0.026881374418735504, + -0.09704794734716415, + -0.03543051704764366, + -0.08884831517934799, + -0.012027901597321033, + -0.016283933073282242, + -0.09999467432498932, + 0.06554155796766281, + -0.013514169491827488, + -0.03974907845258713, + -0.0010324299801141024, + -0.015394830144941807, + 0.06958042085170746, + -0.09045785665512085, + 0.007920150645077229, + 0.030456768348813057, + -0.021910162642598152, + 0.02378171868622303, + 0.0723474770784378, + 0.018327416852116585, + -0.054666221141815186, + 0.09311854839324951, + 0.01572938822209835, + -0.03829161822795868, + -0.03610244393348694, + 0.000472294312203303, + -0.11481831967830658, + -0.029939111322164536, + -0.07047196477651596, + 0.002465133322402835, + -0.009671105071902275, + 0.06026427075266838, + -0.06605812907218933, + -0.10640071332454681, + -0.006690353155136108, + 0.03833603113889694, + -0.039878372102975845, + -0.025548631325364113, + 0.028147084638476372, + -0.048707399517297745, + -0.021802788600325584, + -0.02995845302939415, + -0.056303754448890686, + 0.00029847113182768226, + 0.046789493411779404, + -0.05475008487701416, + 0.018786292523145676, + 0.02789970487356186, + -0.0349692702293396, + 0.05847158282995224, + -0.10079450160264969, + 0.04162685200572014, + -0.0011531533673405647, + 0.004101625178009272, + 0.02878568321466446, + 0.04260336235165596, + 0.02356891892850399, + -0.02120044454932213, + 0.057071249932050705, + 0.012797098606824875, + -0.04464000463485718, + 0.07449091225862503, + -0.002430842025205493, + -0.000595845456700772, + -0.021918024867773056, + -0.07381944358348846, + -0.0714428722858429, + -0.0032687997445464134, + -0.028318719938397408, + 0.07686002552509308, + 0.04312244430184364, + -0.03886079043149948, + -0.06178853660821915, + -0.1192026138305664, + -0.03059920109808445, + 0.11816658824682236, + -0.05460765212774277, + 0.010639650747179985, + -0.07564220577478409, + -0.00035556050715968013, + -0.059161510318517685, + 2.625181655537564e-35, + -0.016128255054354668, + 0.05666493996977806, + -0.03296957537531853, + -0.06776081025600433, + -0.04411539435386658, + -0.05817261338233948, + 0.049488943070173264, + 0.041734274476766586, + -0.027790656313300133, + -0.014582308940589428, + 0.05214619264006615, + 0.040992371737957, + 0.02094959281384945, + -0.061958614736795425, + 0.030818289145827293, + 0.011837467551231384, + -0.038930103182792664, + -0.025308284908533096, + 0.011409948579967022, + 0.08625146001577377, + -0.0387820340692997, + 0.004957172553986311, + -0.01966245099902153, + 0.12457884848117828, + 0.012692407704889774, + 0.012878065928816795, + 0.025028947740793228, + 0.04032258316874504, + -0.007125853095203638, + -0.04969959706068039, + -0.0097272377461195, + -0.054376304149627686, + 0.027513841167092323, + 0.057346247136592865, + 0.043287213891744614, + 0.07328087836503983, + -0.011775070801377296, + -0.004545270465314388, + 0.05772041529417038, + -0.07449333369731903, + 0.04538040608167648, + -0.009178973734378815, + 0.0290351714938879, + 0.04891377314925194, + -0.0050690253265202045, + -0.06970363110303879, + 0.0447087436914444, + -0.03805512934923172, + -0.020458132028579712, + 0.021631253883242607, + 0.10387755185365677, + -0.006235009990632534, + -0.004170579370111227, + -0.01618115045130253, + -0.07564020156860352, + 0.05269941687583923, + 0.033792056143283844, + -0.01621849462389946, + -0.06806772202253342, + 0.047955408692359924, + 0.08797455579042435, + -0.01050670724362135, + -0.10185953974723816, + 0.010802612639963627, + -0.010229703970253468, + -0.05651874840259552, + 0.030611667782068253, + 0.009729253128170967, + 0.0396227166056633, + 0.03967474028468132, + -0.021773694083094597, + 0.038334865123033524, + -0.054065313190221786, + -0.007162317633628845, + 0.020800022408366203, + -0.05308632552623749, + -0.0876331552863121, + -0.0009659018251113594, + -0.037656500935554504, + 0.037254832684993744, + 0.042248647660017014, + 0.04996532201766968, + -0.060420211404561996, + 0.006537163630127907, + 0.019652441143989563, + 0.02374063804745674, + 0.012117662467062473, + 0.09152828902006149, + -0.03407110273838043, + -0.02360094152390957, + -0.04906110838055611, + 0.0028280988335609436, + -0.08476293832063675, + 0.06761195510625839, + -0.1074368953704834, + -2.0053713356560365e-08, + 0.02111225388944149, + 0.007830609567463398, + 0.006740151438862085, + -0.030992235988378525, + 0.004859480541199446, + -0.09823860228061676, + -0.04290880262851715, + -0.09214504063129425, + 0.0845813974738121, + -0.031453054398298264, + 0.010005855932831764, + -0.005561423487961292, + -0.03629055246710777, + 0.0932859405875206, + 0.06176019459962845, + 0.05672825500369072, + -0.029684599488973618, + 0.03217316046357155, + -0.04095831885933876, + 0.025363922119140625, + -0.019709592685103416, + 0.07594244182109833, + 0.024564605206251144, + 0.014704831875860691, + 0.05711567401885986, + -0.008181584998965263, + -0.059034429490566254, + -0.019413679838180542, + 0.05258556455373764, + 0.023058496415615082, + 0.024717822670936584, + 0.06585818529129028, + -0.04532776027917862, + -0.015728816390037537, + -0.10161334276199341, + 0.012963766232132912, + -0.016135798767209053, + -0.02789984829723835, + 0.06126808002591133, + 0.030445266515016556, + -0.009414151310920715, + -0.05466502904891968, + -0.012381619773805141, + 0.005284752231091261, + -0.04583967477083206, + -0.036667633801698685, + 0.06832411140203476, + -0.01758381724357605, + -0.04422483965754509, + -0.06715277582406998, + -0.015460466966032982, + 0.004678342025727034, + -0.040353018790483475, + -0.01690339483320713, + 0.047952961176633835, + -0.07216361165046692, + 0.0019058268517255783, + 0.06193993240594864, + -0.03546097129583359, + -0.0037898384034633636, + 0.10843436419963837, + 0.05677667632699013, + 0.0787484422326088, + 0.007519813254475594 + ], + "device-mobile-speaker-bold||cellphone,cellular": [ + -0.013190052472054958, + 0.047645438462495804, + 0.0160615686327219, + -0.04528532922267914, + -0.01641635224223137, + -0.08180929720401764, + 0.07720957696437836, + -0.03561409190297127, + 0.06783200055360794, + -0.009813981130719185, + 0.017624711617827415, + 0.05475211888551712, + 0.04098547250032425, + -0.04711858928203583, + 0.036783210933208466, + -0.013257247395813465, + 0.02564985305070877, + 0.02796400897204876, + 0.00916321761906147, + 0.04565836489200592, + 0.0404626838862896, + 0.11044298857450485, + -0.011048771440982819, + 0.03479165583848953, + 0.10411505401134491, + -0.0781756117939949, + 0.003360628616064787, + 0.06494992971420288, + 0.00908735953271389, + -0.03650686517357826, + -0.011520447209477425, + 0.07002782076597214, + 0.10261037945747375, + 0.06936052441596985, + -0.047555889934301376, + -0.06749946624040604, + -0.044517312198877335, + -0.0327589213848114, + -0.033464331179857254, + 0.013679360039532185, + 0.024876534938812256, + -0.0740269348025322, + 0.018570953980088234, + 0.030938319861888885, + -0.08230315148830414, + -0.03840877115726471, + -0.07074663043022156, + 0.005543106701225042, + -0.0064691659063100815, + -0.033360566943883896, + 0.016864895820617676, + -0.053832363337278366, + -0.07312925159931183, + 0.009534848853945732, + -0.060470812022686005, + 0.029961256310343742, + -0.02531488984823227, + 0.124943308532238, + 0.15978646278381348, + 0.039155058562755585, + 0.03330566734075546, + 0.01315210945904255, + 0.006090722046792507, + 0.048151206225156784, + 0.02027181349694729, + -0.0261068232357502, + -0.013818479143083096, + 0.02063974365592003, + -0.06154350936412811, + 0.05528679117560387, + 0.057723820209503174, + 0.018766136839985847, + 0.05375487357378006, + -0.02033904567360878, + 0.021689506247639656, + 0.06241169199347496, + 0.03990203142166138, + 0.02154645510017872, + -0.033831216394901276, + 0.0005332065629772842, + 0.004539937246590853, + -0.05440736934542656, + -0.02745550125837326, + -0.06080707535147667, + 0.07835598289966583, + -0.020355286076664925, + -0.07376021891832352, + 0.00550626777112484, + -0.09008047729730606, + -0.043359022587537766, + -0.10187157988548279, + 0.04949133098125458, + -0.07437071204185486, + 0.03213149681687355, + -0.11111541837453842, + -0.005797172896564007, + -0.015854956582188606, + -0.09835073351860046, + -0.05846676975488663, + 0.10601858794689178, + 0.06125565245747566, + 0.05104288458824158, + 0.06792881339788437, + 0.017696652561426163, + -0.024755844846367836, + -0.09322405606508255, + -0.025154761970043182, + 0.032120488584041595, + -0.003685479052364826, + 0.01791628822684288, + -0.02642529457807541, + -0.08643415570259094, + -0.07319336384534836, + -0.000993605935946107, + -0.037602562457323074, + 0.001774849253706634, + -0.06364654749631882, + 0.03295484930276871, + 0.10431758314371109, + -0.008882098831236362, + -0.06599760800600052, + -0.030476214364171028, + -0.08966651558876038, + -0.07935379445552826, + 0.020068123936653137, + 0.04379478469491005, + 0.028056524693965912, + -2.0871264030704577e-33, + 0.042337991297245026, + 0.09632789343595505, + -0.048656072467565536, + 0.09137306362390518, + 0.01270782295614481, + -0.02561088651418686, + -0.05834278464317322, + -0.02880862168967724, + -0.04000265151262283, + 0.059359196573495865, + 0.06267046183347702, + 0.04285452142357826, + -0.030917610973119736, + -0.012357407249510288, + 0.03934600204229355, + -0.07754936069250107, + -0.07851981371641159, + -0.04056251794099808, + -0.046546973288059235, + -0.009849008172750473, + -0.0639333575963974, + 0.02793804742395878, + -0.036932915449142456, + -0.0308151226490736, + 0.01730058342218399, + -0.02357574738562107, + 0.08970838040113449, + -0.09382466226816177, + -0.022784365341067314, + 0.019144117832183838, + 0.01734258234500885, + 0.04147936403751373, + 0.06995502859354019, + -0.023369628936052322, + 0.015453197993338108, + 0.01480746641755104, + -0.004868349526077509, + -0.021959835663437843, + -0.006420668214559555, + -0.0468398742377758, + -0.12417716532945633, + -0.021908970549702644, + -0.016592461615800858, + 0.01473185047507286, + -0.009921069256961346, + 0.09290529042482376, + -0.05877132713794708, + -0.0777449756860733, + 0.024978015571832657, + 0.03981347009539604, + -0.01773226447403431, + -0.05180078372359276, + -0.018263328820466995, + -0.02714521624147892, + 0.04806995391845703, + 0.008201314136385918, + 0.011938303709030151, + 0.05120315030217171, + 0.0011988638434559107, + -0.07462546974420547, + 0.04859922081232071, + 0.005004518199712038, + -0.02705996111035347, + -0.030455924570560455, + -0.05716530233621597, + 0.0488777756690979, + -0.04798078536987305, + -0.00645975349470973, + 0.04397585242986679, + 0.00032356922747567296, + 0.07136879861354828, + -0.021131711080670357, + 0.08491791784763336, + 0.015374206937849522, + -0.061915718019008636, + 0.08635667711496353, + 0.041307445615530014, + 0.01048853900283575, + -0.010269801132380962, + -0.050853196531534195, + -0.09628140181303024, + -0.005683518946170807, + -0.06050381064414978, + 0.05745316296815872, + -0.007837533950805664, + 0.00838499329984188, + -0.08627054840326309, + -0.15337732434272766, + -0.01160559430718422, + 0.11276665329933167, + -0.06384189426898956, + 0.006515422835946083, + -0.07797979563474655, + -0.020560264587402344, + -0.09535634517669678, + -5.867520459747758e-34, + -0.022632578387856483, + 0.08515876531600952, + -0.008327238261699677, + -0.05687103047966957, + 0.03090568073093891, + -0.02734943851828575, + 0.06332387775182724, + 0.06385286897420883, + -0.020966600626707077, + -0.019399333745241165, + 0.04669981822371483, + 0.0023558312095701694, + -0.008857687003910542, + -0.03924528881907463, + -0.016352012753486633, + 0.012915579602122307, + 0.04221973940730095, + -0.01767086610198021, + 0.016341358423233032, + 0.0860382616519928, + -0.03457965701818466, + -0.017911430448293686, + 0.00261408812366426, + 0.12882457673549652, + -0.018096813932061195, + -0.017132693901658058, + -0.012769518420100212, + 0.001900494797155261, + -0.031111108139157295, + -0.04500385373830795, + -0.004932004027068615, + -0.04704616591334343, + 0.02793295681476593, + 0.024616047739982605, + 0.03067454881966114, + 0.05837187170982361, + 0.038863249123096466, + -0.008363453671336174, + 0.023291926831007004, + -0.08504229038953781, + 0.034008145332336426, + 0.04395808279514313, + 0.004235617816448212, + -0.0033791244495660067, + 0.02484678104519844, + -0.0353136882185936, + 0.033781908452510834, + -0.015106186270713806, + -0.03250063210725784, + 0.010999330319464207, + 0.08076806366443634, + 0.019603902474045753, + 0.03871622681617737, + -0.014706430956721306, + -0.10548128932714462, + -0.0054078055545687675, + 0.05705541744828224, + -0.04569058492779732, + -0.023867571726441383, + 0.013628494925796986, + 0.08005471527576447, + 0.031798865646123886, + -0.07372382283210754, + -0.041493870317935944, + -0.021171528846025467, + -0.0024094332475215197, + 0.057625193148851395, + 0.010619902051985264, + 0.08892309665679932, + 0.03664319962263107, + -0.009083445183932781, + -0.003913103602826595, + -0.04105132073163986, + 0.028263861313462257, + 0.002826184267178178, + -0.037843480706214905, + -0.0711110308766365, + -0.0030380168464034796, + -0.021973568946123123, + 0.0012899680295959115, + 0.05111589655280113, + 0.07512447983026505, + -0.03512383624911308, + 0.021529527381062508, + 0.01224692165851593, + 0.0298113115131855, + 0.03467318043112755, + 0.04895709827542305, + -0.028263496235013008, + 0.029198167845606804, + -0.017546651884913445, + 0.04495720937848091, + -0.04385865107178688, + 0.007657515350729227, + -0.0474751815199852, + -1.7501118776408475e-08, + 0.029439087957143784, + -0.014303836971521378, + 0.0038900834042578936, + -0.09939613193273544, + -0.04844624176621437, + -0.12205387651920319, + 0.016772832721471786, + -0.12414812296628952, + 0.08097831904888153, + -0.05028729513287544, + -0.008804268203675747, + -0.016569601371884346, + -0.04478487744927406, + 0.04867641627788544, + 0.05376197770237923, + 0.06695102900266647, + -0.10033893585205078, + 0.06594455987215042, + -0.06321318447589874, + -0.018494684249162674, + 0.005026217550039291, + 0.06493048369884491, + 0.014208529144525528, + 0.024227384477853775, + 0.056882284581661224, + 0.008970372378826141, + -0.06621675938367844, + -0.0027027542237192392, + 0.06800641119480133, + 0.028238795697689056, + -0.007155697327107191, + 0.09205817431211472, + -0.10066533833742142, + -0.022630540654063225, + -0.0968395322561264, + 0.032275356352329254, + -0.04819384217262268, + -0.043161407113075256, + 0.027588706463575363, + 0.05641460046172142, + 0.001699752756394446, + -0.047266796231269836, + -0.03208751231431961, + 0.035709675401449203, + 0.015941735357046127, + -0.0229613296687603, + 0.08406278491020203, + -0.013216391205787659, + -0.04871296137571335, + -0.05017726868391037, + -0.051618508994579315, + 0.008370310999453068, + -0.04754524677991867, + -0.007562379818409681, + 0.017259620130062103, + -0.091934435069561, + 0.01595115102827549, + 0.03790757432579994, + -0.0342043973505497, + -0.005227051209658384, + 0.09834722429513931, + 0.05780971050262451, + 0.06941904872655869, + 0.011217026971280575 + ], + "device-rotate-bold||*new*,orientation,landscape,portrait,spin,flip": [ + -0.022888727486133575, + -0.030207229778170586, + -0.04899987578392029, + -0.06519441306591034, + -0.0038017798215150833, + -0.038255129009485245, + -0.007675609551370144, + -0.04429931193590164, + 0.026960184797644615, + 0.006386457942426205, + 0.09525703638792038, + 0.08263473957777023, + 0.034878138452768326, + -0.05621567368507385, + 0.0393977053463459, + 0.04313397407531738, + -0.05268935114145279, + 0.086434006690979, + 0.000771964609157294, + 0.08761434257030487, + 0.02573273703455925, + 0.009777247905731201, + -0.0027215443551540375, + 0.04501112550497055, + -0.015790019184350967, + 0.05069037526845932, + 0.09430165588855743, + -0.0077211069874465466, + 0.018435951322317123, + -0.09280707687139511, + 0.0324571467936039, + 0.11298131942749023, + 0.024856988340616226, + 0.04284512251615524, + -0.061979591846466064, + -0.08511227369308472, + -0.06061554700136185, + -0.016870807856321335, + -0.07666712254285812, + -0.04663999751210213, + 0.0526537261903286, + -0.03256044536828995, + 0.06588679552078247, + 0.012549851089715958, + -0.005605426616966724, + 0.028465511277318, + -0.05845510587096214, + -0.002980592893436551, + 0.08097518235445023, + 0.015406565740704536, + -0.04276300594210625, + -0.09885821491479874, + -0.07747812569141388, + -5.596633491222747e-05, + 0.011432920582592487, + 0.0587477870285511, + 0.07538793236017227, + 0.0034336221870034933, + 0.07303262501955032, + -0.03600829467177391, + 0.1260402798652649, + -0.005748846102505922, + 0.015608127228915691, + 0.04609466716647148, + -0.008295641280710697, + -0.02228265069425106, + -0.03806084021925926, + -0.09666262567043304, + -0.015578416176140308, + 0.014593888074159622, + -0.007398990914225578, + -0.022686056792736053, + 0.013739020563662052, + -0.05109255015850067, + 0.058418989181518555, + -0.03644363582134247, + 0.037658803164958954, + -0.017085667699575424, + -0.047714270651340485, + -0.047860998660326004, + -0.03397205471992493, + 0.010334689170122147, + -0.006623456720262766, + 0.065305195748806, + 0.10853136330842972, + 5.0143404223490506e-05, + -0.10709191858768463, + 0.032915715128183365, + -0.0421975776553154, + -0.0034404327161610126, + -0.06972918659448624, + 0.030066514387726784, + -0.0887712761759758, + -0.09115289151668549, + -0.06825365871191025, + -0.03323757275938988, + 0.01246239896863699, + -0.09919648617506027, + -0.10266135632991791, + 0.04134567081928253, + 0.013217147439718246, + -0.030432209372520447, + 0.04330940917134285, + 0.06723609566688538, + -0.04986030235886574, + -0.050160977989435196, + -0.015599523670971394, + -0.09144686162471771, + -0.07893264293670654, + 0.05687522888183594, + 0.061561476439237595, + -0.02002645470201969, + -0.024346087127923965, + -0.037045467644929886, + 0.009771328419446945, + -0.0023564682342112064, + -0.08455543220043182, + 0.04327215254306793, + 0.05544235184788704, + 0.07669311761856079, + -0.00035535870119929314, + -0.010250731371343136, + -0.0804453045129776, + -0.10022865235805511, + -0.03160259127616882, + 0.006780307739973068, + 0.0023716415744274855, + -3.414893373743303e-33, + 0.05237054079771042, + 0.08184324204921722, + -0.007189866155385971, + 0.11031930148601532, + -0.02312229946255684, + 0.039874929934740067, + 0.011642765253782272, + -0.00562194362282753, + 0.022018123418092728, + -0.004546588286757469, + 0.08460135012865067, + 0.09697550535202026, + -0.013795888982713223, + 0.02814146690070629, + 0.0029399460181593895, + -0.10647254437208176, + 0.0018742240499705076, + 0.011960446834564209, + -0.03924497216939926, + -0.05548771098256111, + -0.025448469445109367, + 0.04737742245197296, + -0.04586976394057274, + -0.023500392213463783, + -0.049448370933532715, + -0.001932411571033299, + 0.064454086124897, + -0.03762281313538551, + -0.09534256905317307, + 0.03747629374265671, + -0.012389547191560268, + -0.010900898836553097, + -0.02373874932527542, + -0.02386321872472763, + -0.01210072822868824, + 0.04620988667011261, + -0.06378021836280823, + -0.08293019235134125, + -0.006608401890844107, + 0.044944096356630325, + -0.11542581021785736, + -0.03268164396286011, + -0.03735411539673805, + -0.0366792194545269, + 0.0030235121957957745, + 0.11873229593038559, + -0.034870974719524384, + -0.04648403450846672, + 0.07295078784227371, + 0.052560824900865555, + 0.008756531402468681, + -0.004479683935642242, + -0.0169808529317379, + -0.0630154013633728, + 0.03163975104689598, + -0.04446723312139511, + 0.008326433598995209, + 0.0630626305937767, + -0.012205668725073338, + -3.031028427358251e-05, + 0.022472605109214783, + 0.04696175456047058, + -0.009405137971043587, + -0.04286329448223114, + -0.07185366749763489, + 0.017001602798700333, + 0.04664403945207596, + -0.035016149282455444, + -0.021994393318891525, + 0.015280348248779774, + 0.03576556593179703, + -0.0025857812725007534, + -0.03689756244421005, + 0.03407321497797966, + -0.03197132423520088, + 0.05335381254553795, + 0.02709907479584217, + -0.0033180597238242626, + -0.025997567921876907, + -0.06670796871185303, + -0.07755608856678009, + 0.030427226796746254, + -0.06991855055093765, + 0.01925314962863922, + -0.045921821147203445, + -0.01830480434000492, + -0.020753715187311172, + -0.07620760053396225, + -0.03795342519879341, + 0.06266811490058899, + -0.1107865646481514, + -0.007776920218020678, + -0.02326210029423237, + -0.0021338528022170067, + -0.08051656186580658, + 2.584319738507991e-34, + -0.09116014093160629, + -0.035362571477890015, + -0.009711571969091892, + 0.014659706503152847, + -0.084156334400177, + -0.02653270959854126, + 0.10154284536838531, + 0.074137382209301, + -0.036774132400751114, + -0.04016522690653801, + 0.06116911768913269, + 0.012707850895822048, + -0.03418787196278572, + -0.021826259791851044, + 0.06773097068071365, + 0.06082579493522644, + -0.0670003816485405, + 0.039602234959602356, + -0.0070069762878119946, + 0.10474949330091476, + 0.022114623337984085, + 0.06872454285621643, + -0.0011587602784857154, + 0.12494109570980072, + 0.0016185271088033915, + 0.008307703770697117, + 0.10455513745546341, + 0.03929215297102928, + 0.06487217545509338, + 0.012232903391122818, + 0.0024715610779821873, + -0.07346225529909134, + 0.044124115258455276, + 0.10371486097574234, + -0.04760003462433815, + 0.03877513110637665, + -0.035295553505420685, + -0.06930940598249435, + -0.03479662165045738, + -0.008060692809522152, + -0.011304972693324089, + -0.0005448852898553014, + 0.0641724169254303, + 0.020737040787935257, + -0.08632735908031464, + -0.06738385558128357, + 0.029270241037011147, + 0.0376894436776638, + 0.009086567908525467, + 0.03631347790360451, + 0.009442050009965897, + 0.025268835946917534, + 0.021493829786777496, + 0.01198413036763668, + -0.04869688302278519, + 0.009541749022901058, + 0.074272021651268, + -0.030566835775971413, + 0.02105211466550827, + 0.0007768548675812781, + 0.007746703457087278, + -0.006345021538436413, + -0.06828875094652176, + -0.02518799528479576, + -0.046770013868808746, + -0.007955225184559822, + 0.11531583964824677, + -0.07736220210790634, + 0.011196748353540897, + 0.0772959291934967, + -0.002561922650784254, + 0.08782730996608734, + 0.02204185537993908, + -0.04957723617553711, + -0.00996673759073019, + 0.015040832571685314, + 0.08335968852043152, + -0.05695652589201927, + -0.043048880994319916, + -0.07575500011444092, + -0.020595306530594826, + 0.014179185032844543, + 0.021849287673830986, + 0.023095998913049698, + -0.005587563384324312, + 0.0062701343558728695, + -0.06755578517913818, + -0.008295134641230106, + 0.07494824379682541, + 0.07011561840772629, + -0.053108297288417816, + 0.05899999290704727, + -0.034356165677309036, + 0.005361459217965603, + -0.01259185653179884, + -2.1611555212075473e-08, + -0.05290322005748749, + -0.013618338853120804, + 0.11725515127182007, + 0.01150707807391882, + -0.01869846321642399, + -0.053063757717609406, + 0.07056479156017303, + -0.08227997273206711, + -0.0138902198523283, + -0.03605254366993904, + 0.016493625938892365, + -0.01313494797796011, + -0.004179106559604406, + 0.004483890254050493, + 0.10652957856655121, + 0.05493679270148277, + -0.022500518709421158, + 0.07919492572546005, + -0.02169462852180004, + -0.031019408255815506, + -0.005456840619444847, + 0.0444602407515049, + 0.04623749479651451, + -0.047055434435606, + 0.037511005997657776, + 0.04267721250653267, + -0.07620516419410706, + -0.021440457552671432, + 0.027561189606785774, + -0.0063694315031170845, + 0.034650396555662155, + 0.013620572164654732, + 0.05517886206507683, + -0.013823744840919971, + -0.09671858698129654, + -0.014164037071168423, + -0.04193737730383873, + 0.002784938318654895, + 0.04938046261668205, + 0.03710548207163811, + -0.08238380402326584, + 0.06374466419219971, + -0.07898987084627151, + 0.016049683094024658, + -0.09018288552761078, + -0.019402699545025826, + 0.06568973511457443, + -0.02341383323073387, + -0.03943902254104614, + -0.04693286865949631, + -0.053484659641981125, + -0.05722395330667496, + 0.025956254452466965, + 0.08714200556278229, + -0.0003280967939645052, + 0.051888611167669296, + 0.026414278894662857, + -0.005164858885109425, + 0.006186813581734896, + 0.019624600186944008, + 0.082144595682621, + 0.027134526520967484, + 0.018996646627783775, + -0.013294318690896034 + ], + "device-tablet-bold||cellphone,cellular,ipad,phablet": [ + -0.026343008503317833, + -0.01863263174891472, + 0.008795415051281452, + -0.05793454498052597, + 0.03693588078022003, + -0.03219112008810043, + 0.08505889773368835, + 0.0056100813671946526, + 0.04710160195827484, + -0.004712431225925684, + 0.07914675027132034, + 0.02036185748875141, + -0.013240184634923935, + -0.028180832043290138, + 0.046573519706726074, + -0.03211495280265808, + -0.02094491757452488, + -0.001654145191423595, + -0.018700698390603065, + 0.024154799059033394, + 0.05278394743800163, + 0.1090773269534111, + 0.061359286308288574, + 0.017376922070980072, + 0.06930286437273026, + -0.03389255329966545, + 0.0395074337720871, + 0.015285946428775787, + 0.00625233817845583, + -0.04414932802319527, + -0.020091895014047623, + 0.04752933233976364, + 0.044867243617773056, + 0.06624943763017654, + -0.04224938899278641, + -0.05794951692223549, + -0.07187366485595703, + -0.03345279395580292, + -0.01587822660803795, + -0.006972508039325476, + 0.03191949054598808, + -0.1114637553691864, + -0.03956897184252739, + 0.040153201669454575, + -0.05238329991698265, + -0.022412221878767014, + -0.03153415769338608, + -0.042336151003837585, + -0.014499463140964508, + -0.012733183801174164, + -0.0009545865468680859, + -0.006028942298144102, + -0.11167414486408234, + 0.007102827075868845, + -0.04917507246136665, + 0.01996285654604435, + -0.0469701886177063, + 0.1186043918132782, + 0.15127544105052948, + 0.03095545805990696, + 0.0087088942527771, + 0.018727131187915802, + 0.04584924131631851, + 0.02986978180706501, + 0.0036184415221214294, + 0.01435296330600977, + -0.00425276905298233, + -0.01588449627161026, + -0.007529173046350479, + -0.014595851302146912, + 0.036248914897441864, + 0.021176816895604134, + 0.018421508371829987, + -0.00834602676331997, + 0.030469797551631927, + 0.03968692943453789, + 0.01830166019499302, + 0.04264220967888832, + -0.0847807303071022, + -0.0036888495087623596, + -0.042884040623903275, + -0.02670634537935257, + 0.007684514857828617, + 0.018148139119148254, + 0.07311438024044037, + 0.011265601962804794, + -0.07039476931095123, + 0.023129547014832497, + -0.06494203209877014, + -0.0403868742287159, + -0.08303457498550415, + 0.05889175459742546, + -0.0227950531989336, + 0.04363042861223221, + -0.11750535666942596, + -0.019391236826777458, + 0.027534248307347298, + -0.07204684615135193, + -0.12483111023902893, + 0.07682549953460693, + 0.041741400957107544, + 0.08318120986223221, + 0.04080188274383545, + 0.06878557801246643, + -0.02492012083530426, + -0.12655173242092133, + 0.007249532733112574, + -0.09935016185045242, + 0.017554135993123055, + 0.0020893190521746874, + 0.01966100186109543, + -0.1444714516401291, + -0.04998556151986122, + -0.07893723994493484, + -0.044977106153964996, + -0.010481453500688076, + -0.07677774131298065, + 0.0304148830473423, + 0.15129011869430542, + 0.015612439252436161, + -0.0713118314743042, + -0.04624827206134796, + -0.0626162514090538, + -0.11171245574951172, + -0.04556179419159889, + 0.01779775321483612, + 0.0032452174928039312, + -5.723322200390403e-34, + 0.043771542608737946, + 0.10188685357570648, + -0.0034315248485654593, + 0.044727906584739685, + 0.020323466509580612, + -0.002278433181345463, + -0.08505009114742279, + -0.010293174535036087, + -0.012943311594426632, + -0.02528429962694645, + 0.06677448004484177, + 0.030519679188728333, + -0.07605096697807312, + 0.05086492374539375, + 0.023346563801169395, + -0.05896714702248573, + -0.04883534833788872, + -0.03541199117898941, + -0.021388644352555275, + -0.007499093189835548, + -0.0839771255850792, + 0.022763432934880257, + -0.03348107635974884, + -0.008118914440274239, + 0.0036388987209647894, + -0.049937717616558075, + 0.051245011389255524, + 0.007097186986356974, + 0.0050721075385808945, + 0.014635768719017506, + 0.011620196513831615, + 0.008980201557278633, + 0.03532404080033302, + -0.05443177744746208, + -0.04514266923069954, + -0.006890893913805485, + -0.045615725219249725, + -0.04844342917203903, + 0.03615063428878784, + -0.0075182924047112465, + -0.10570421069860458, + -0.05074559152126312, + 0.008090554736554623, + 0.013853929005563259, + 0.017981162294745445, + 0.13343557715415955, + -0.03568102419376373, + -0.0340530127286911, + -0.0005304796504788101, + 0.05777057260274887, + -0.06711555272340775, + -0.04525552690029144, + 0.0038911807350814342, + -0.04194539412856102, + -0.03283759206533432, + -0.02581842802464962, + -0.04305877909064293, + 0.029213495552539825, + 0.0014649874065071344, + 0.008493483997881413, + 0.025022003799676895, + -0.0015574536519125104, + 0.015602122992277145, + 0.0076665254309773445, + -0.09349244087934494, + 0.09850326180458069, + -0.031107690185308456, + 0.00873924233019352, + 0.04125053063035011, + -0.0034062343183904886, + 0.016641344875097275, + 0.02973981201648712, + 0.11100924760103226, + 0.006195068359375, + -0.0379721038043499, + 0.02829631231725216, + 0.03345242142677307, + 0.010241858661174774, + -0.05163339525461197, + -0.07552609592676163, + -0.07851432263851166, + 0.0351291187107563, + -0.045885272324085236, + 0.10088613629341125, + -0.06222166121006012, + -0.018843380734324455, + -0.05249270796775818, + -0.15238764882087708, + -0.032761067152023315, + 0.09989851713180542, + -0.087889164686203, + 0.044552046805620193, + -0.039350125938653946, + -0.025041690096259117, + -0.10917676240205765, + -1.7164258106730028e-33, + -0.024144940078258514, + 0.03822040185332298, + -0.05176934599876404, + -0.05757526680827141, + -0.011260862462222576, + -0.027208924293518066, + 0.09050780534744263, + 0.0820254534482956, + 0.01829698495566845, + 0.00447882479056716, + 0.017176205292344093, + -0.006594979204237461, + -0.025659600272774696, + -0.10914395749568939, + -0.03562849760055542, + 0.06390655040740967, + 0.016770757734775543, + -0.012556449510157108, + 0.04010014608502388, + 0.05465851351618767, + -0.04754014313220978, + 0.008252122439444065, + 0.013384126126766205, + 0.10350233316421509, + 0.014200459234416485, + 0.016598016023635864, + -0.003103668335825205, + 0.01671718806028366, + -0.0007418817258439958, + -0.030571628361940384, + 0.026471205055713654, + -0.027698636054992676, + 0.005488594528287649, + 0.08225025236606598, + -0.0049355230294167995, + 0.039980433881282806, + 0.05383264645934105, + -0.03971071168780327, + -0.03686388209462166, + -0.03155595436692238, + 0.07021098583936691, + 0.0022683576680719852, + 0.005510174669325352, + 0.016334453597664833, + 0.009246114641427994, + 0.0007135820924304426, + 0.04937409237027168, + -0.023813676089048386, + -0.04462796822190285, + 0.047107186168432236, + 0.06554970145225525, + 0.05479775369167328, + -0.03618115186691284, + -0.011686540208756924, + -0.09787911921739578, + 0.045416682958602905, + 0.07154174894094467, + -0.0015348591841757298, + -0.044438090175390244, + -0.026339510455727577, + 0.05322473868727684, + -0.009397226385772228, + -0.02724357321858406, + 0.00990302488207817, + -0.018932264298200607, + -0.06683898717164993, + 0.05065874755382538, + 0.006238446570932865, + 0.08995374292135239, + 0.06551218777894974, + -0.040390338748693466, + -0.017475401982665062, + 0.022788697853684425, + -0.005246417131274939, + 0.011934532783925533, + 0.014757703989744186, + -0.05051054432988167, + -0.006414482370018959, + -0.055349335074424744, + -0.00020646718621719629, + 0.07039941847324371, + 0.02853044494986534, + -0.03215070813894272, + -0.014765066094696522, + 0.020079022273421288, + 0.023049529641866684, + 0.04857591167092323, + 0.035811588168144226, + -0.032999437302351, + 0.04764772579073906, + 0.008620365522801876, + 0.004969597794115543, + -0.07048910111188889, + 0.10512334108352661, + -0.04763141646981239, + -1.928365023218248e-08, + 0.06246483325958252, + -0.02540808543562889, + 0.014930179342627525, + -0.04667956382036209, + -0.01949246972799301, + -0.12015001475811005, + 0.055437132716178894, + -0.06415411084890366, + 0.03041333332657814, + -0.052491508424282074, + -0.027456216514110565, + -0.03734574466943741, + -0.0840153768658638, + 0.07028529793024063, + 0.09410391747951508, + 0.11642439663410187, + -0.09361321479082108, + 0.05459168553352356, + -0.051457479596138, + -0.0302670206874609, + -0.04931969195604324, + 0.041517242789268494, + -0.024785678833723068, + 0.004491738043725491, + 0.0446280762553215, + 0.06060856953263283, + -0.07447449117898941, + -0.003933980129659176, + 0.012011856772005558, + 0.06885560601949692, + 0.0592283271253109, + 0.02019985020160675, + -0.0008695284486748278, + -0.00365068600513041, + -0.07719657570123672, + -0.02800866588950157, + -0.0047374023124575615, + -0.025131264701485634, + 0.022258421406149864, + 0.08226414024829865, + -0.013246254995465279, + -0.0835290253162384, + -0.0432385690510273, + 0.03711250424385071, + 0.024027293547987938, + -0.031540658324956894, + 0.07589925825595856, + -0.01177571713924408, + -0.029929956421256065, + -0.024831857532262802, + -0.017212897539138794, + 0.015508272685110569, + 0.012447125278413296, + -0.008238140493631363, + -0.025993842631578445, + -0.07054881006479263, + 0.019339904189109802, + 0.04268816113471985, + -0.03675883263349533, + 0.01612924225628376, + 0.12224360555410385, + 0.05916011333465576, + 0.08348643779754639, + 0.05155342072248459 + ], + "device-tablet-camera-bold||cellphone,cellular,ipad,phablet": [ + -0.044506609439849854, + -0.0023236917331814766, + 0.00874302163720131, + -0.08740130811929703, + 0.08718762546777725, + -0.04508253186941147, + 0.08829793334007263, + 0.034563954919576645, + 0.046968504786491394, + 0.021089117974042892, + 0.08641163259744644, + 0.001969486242160201, + -0.019083503633737564, + 0.00352360843680799, + 0.04329013451933861, + -0.05465049669146538, + -0.02114955708384514, + -0.014459527097642422, + -0.016003791242837906, + 0.04424775019288063, + 0.0369168184697628, + 0.05491669476032257, + 0.08078940957784653, + 0.0021929137874394655, + 0.06669773161411285, + -0.036943286657333374, + 0.02602514810860157, + 0.01788473129272461, + -0.0037142708897590637, + -0.03728902339935303, + -0.029169175773859024, + 0.03484657406806946, + 0.03943179175257683, + 0.09197837114334106, + -0.03372010961174965, + -0.06487613916397095, + -0.04653685539960861, + -0.047664105892181396, + -0.050135571509599686, + -0.0025626395363360643, + 0.008808640763163567, + -0.06652519106864929, + -0.01500487420707941, + 0.027222933247685432, + -0.02256159670650959, + 0.009760221466422081, + 0.0007922423537820578, + -0.048360537737607956, + -0.031428106129169464, + -0.02806336060166359, + -0.04370364546775818, + -0.0004032081051263958, + -0.09939620643854141, + 0.019378837198019028, + -0.055745091289281845, + 0.017916861921548843, + -0.07506266981363297, + 0.09770239144563675, + 0.14823313057422638, + 0.025145813822746277, + 0.002908219350501895, + 0.029916873201727867, + 0.03300999477505684, + 0.059481728821992874, + -0.0002637913275975734, + 0.04131828993558884, + 0.010882287286221981, + -0.03330463543534279, + 0.0011239349842071533, + -0.01997944712638855, + -0.010792450979351997, + 0.051035325974226, + 0.014458328485488892, + -0.010851362720131874, + 0.012991085648536682, + 0.0257798470556736, + 0.004949324298650026, + 0.04045542702078819, + -0.0826200470328331, + -0.04601128399372101, + 0.005741337779909372, + -0.03500031307339668, + -0.00022555321629624814, + 0.004459399729967117, + 0.0769772157073021, + -0.007148043718189001, + -0.06013360247015953, + 0.01640893705189228, + -0.05072304978966713, + -0.0723813846707344, + -0.12985064089298248, + 0.03101571649312973, + -0.05687570571899414, + -0.0016575425397604704, + -0.12804171442985535, + -0.01900714635848999, + 0.02140999771654606, + -0.07901595532894135, + -0.10702487081289291, + 0.07484826445579529, + 0.030144087970256805, + 0.05021011084318161, + 0.053749650716781616, + 0.045718997716903687, + 0.0036527211777865887, + -0.11750863492488861, + -0.013509700074791908, + -0.07898135483264923, + 0.04982484504580498, + 0.02182198315858841, + 0.03038640320301056, + -0.09870190918445587, + -0.05565430968999863, + -0.09509523957967758, + -0.010816697031259537, + 0.00158005952835083, + -0.09458278864622116, + 0.013759343884885311, + 0.12447589635848999, + 0.00340285524725914, + -0.0430389866232872, + -0.05494009703397751, + -0.08071231096982956, + -0.09947661310434341, + -0.038890011608600616, + 0.012799069285392761, + 0.032581910490989685, + -1.3609135236431335e-33, + 0.05267719179391861, + 0.08496794104576111, + 0.022327076643705368, + 0.046202246099710464, + 0.030961759388446808, + 0.012255295179784298, + -0.07100684940814972, + 0.01738930121064186, + -0.030931400135159492, + -0.022125236690044403, + 0.07031185179948807, + -0.0067012920044362545, + -0.07441757619380951, + 0.05728655681014061, + 0.05288851261138916, + -0.022811299189925194, + -0.05911916866898537, + -0.0493008978664875, + -0.0016332401428371668, + 0.011518541723489761, + -0.06767943501472473, + 0.014653983525931835, + -0.014684493653476238, + 0.028904100880026817, + 0.03150813654065132, + -0.041785694658756256, + 0.07655566185712814, + 0.015201427973806858, + 0.018104730173945427, + 0.004921122919768095, + 0.001474655233323574, + 0.02336079813539982, + 0.04828253015875816, + -0.05888880044221878, + -0.0002257901942357421, + -0.009803922846913338, + -0.03752146288752556, + -0.05376368388533592, + 0.042465902864933014, + -0.03206076845526695, + -0.09686116129159927, + -0.03141224756836891, + -0.03572247549891472, + -0.00045258819591253996, + 0.034452956169843674, + 0.11451470106840134, + -0.043404050171375275, + 0.01203840784728527, + -0.03498871996998787, + 0.06870035082101822, + -0.06149178370833397, + -0.04857926815748215, + -0.01625042036175728, + -0.0786646232008934, + -0.05238810554146767, + -0.01366084348410368, + -0.05379645898938179, + 0.026470350101590157, + -0.007579261902719736, + 0.003623377764597535, + 0.025830380618572235, + -0.005677204579114914, + 0.006712616886943579, + 0.0003710977325681597, + -0.10476559400558472, + 0.07545071840286255, + 0.0006527047953568399, + 0.02850564382970333, + 0.020319446921348572, + 0.020024705678224564, + 0.006418244447559118, + 0.02168675698339939, + 0.09790275245904922, + -0.020133301615715027, + -0.010847090743482113, + 0.07711336016654968, + -0.007032223977148533, + -0.005427672993391752, + -0.059881728142499924, + -0.017903655767440796, + -0.12045494467020035, + 0.05332094430923462, + -0.013137041591107845, + 0.10531912744045258, + -0.060790956020355225, + -0.03921084105968475, + -0.03966083005070686, + -0.13953180611133575, + -0.045260634273290634, + 0.09782255440950394, + -0.0735238641500473, + 0.0679144561290741, + -0.015528394840657711, + -0.03484754264354706, + -0.10277722775936127, + -6.082557865776502e-34, + -0.011715819127857685, + 0.04868055880069733, + -0.0849258080124855, + -0.06937981396913528, + -0.021490447223186493, + -0.06035717949271202, + 0.10213593393564224, + 0.09746488928794861, + 0.06259429454803467, + -0.002904954832047224, + 0.015028375200927258, + -0.053586289286613464, + -0.023202385753393173, + -0.09464890509843826, + -0.0350431464612484, + 0.043950390070676804, + -0.003356215776875615, + -0.03987933695316315, + 0.028020191937685013, + 0.0567953884601593, + -0.02576337940990925, + 0.022784003987908363, + 0.03735607862472534, + 0.10878990590572357, + 0.032685473561286926, + 0.03707965090870857, + 0.0039042597636580467, + 0.03114417940378189, + 0.02070911042392254, + -0.07767185568809509, + 0.050856925547122955, + -0.05922716110944748, + 0.030457159504294395, + 0.06079019978642464, + -0.010990554466843605, + 0.056859541684389114, + 0.07140755653381348, + -0.02742084674537182, + -0.03961418569087982, + -0.0043138423934578896, + 0.06082860752940178, + -0.009082427248358727, + 0.0031953377183526754, + -0.00026054828776977956, + 0.00818114634603262, + -0.0217922180891037, + 0.03784139081835747, + 0.0008184886537492275, + -0.050355929881334305, + 0.033217430114746094, + 0.0459350161254406, + 0.054873835295438766, + -0.05479966104030609, + -0.0061925980262458324, + -0.08354776352643967, + 0.06837460398674011, + 0.06925933063030243, + -0.00764211593195796, + -0.012258929200470448, + 0.004474790301173925, + 0.07943332195281982, + -0.018359350040555, + -0.049877092242240906, + -0.0028609230648726225, + -0.031146429479122162, + -0.055323921144008636, + 0.03568485006690025, + 0.008479996584355831, + 0.05969172343611717, + 0.08340447396039963, + -0.026539228856563568, + -0.010399026796221733, + 0.031855322420597076, + 0.0024307677522301674, + 0.03535850718617439, + 0.016414258629083633, + -0.05191697180271149, + 0.013424652628600597, + -0.024969859048724174, + 0.00282987579703331, + 0.07272554188966751, + -0.02242874726653099, + -0.009067576378583908, + 0.035818662494421005, + 0.04288472607731819, + 0.02513178065419197, + 0.04944987967610359, + 0.005255953408777714, + -0.03397273272275925, + 0.021249160170555115, + -0.0060045053251087666, + -0.0009644157253205776, + -0.07353881001472473, + 0.10462523996829987, + -0.04018617793917656, + -1.8694475301117564e-08, + 0.04671858623623848, + -0.022700335830450058, + 0.00012024288298562169, + -0.04741935804486275, + -0.02066163346171379, + -0.1326359063386917, + 0.053089626133441925, + -0.02219008281826973, + 0.05539267882704735, + -0.07162013649940491, + -0.00301434937864542, + -0.03757023438811302, + -0.07366157323122025, + 0.06607584655284882, + 0.08247170597314835, + 0.10704468935728073, + -0.09633398801088333, + 0.04539421573281288, + -0.040723249316215515, + -0.01626964844763279, + -0.04445584863424301, + -0.0043707252480089664, + -0.05653541162610054, + -0.012539153918623924, + 0.03708059340715408, + 0.031078161671757698, + -0.07518233358860016, + -0.02922297827899456, + 0.03027017042040825, + 0.044113583862781525, + 0.026902202516794205, + 0.020955713465809822, + 0.021040208637714386, + 0.010865702293813229, + -0.06421542912721634, + -0.0340702086687088, + -0.02242727018892765, + -0.021241888403892517, + 0.041427332907915115, + 0.057433538138866425, + -0.015995318070054054, + -0.06272117793560028, + -0.03943438082933426, + 0.0397101454436779, + 0.03857114166021347, + -0.018357574939727783, + 0.11100764572620392, + -0.014861993491649628, + -0.03400179371237755, + -0.021641535684466362, + -0.06312485784292221, + 0.007144545670598745, + 0.030567819252610207, + 0.026767492294311523, + -0.018906405195593834, + -0.07884782552719116, + 0.08164361119270325, + -0.004028701689094305, + -0.053849007934331894, + 0.021061521023511887, + 0.10534770041704178, + 0.06484676897525787, + 0.06679955124855042, + 0.0747089609503746 + ], + "device-tablet-speaker-bold||cellphone,cellular,ipad,phablet": [ + -0.014387308619916439, + -0.01123111229389906, + 0.003814582945778966, + -0.08735352754592896, + 0.027529269456863403, + -0.023733580484986305, + 0.07828748226165771, + -0.008281959220767021, + 0.046281736344099045, + -0.0009427288896404207, + 0.06380259990692139, + 0.03122483752667904, + -0.022349080070853233, + -0.02598000504076481, + 0.039205897599458694, + -0.03476431593298912, + 0.0017091975314542651, + 0.005903187673538923, + 0.007858166471123695, + 0.022111058235168457, + 0.04635937139391899, + 0.12100847065448761, + 0.03700324892997742, + 0.032174572348594666, + 0.08599117398262024, + -0.032740987837314606, + 0.02490140125155449, + 0.0341791994869709, + -0.004702311474829912, + -0.029435167089104652, + -0.012658166699111462, + 0.04447468742728233, + 0.0686037540435791, + 0.05459915101528168, + -0.062409017235040665, + -0.059964485466480255, + -0.06457782536745071, + -0.043257251381874084, + -0.023100808262825012, + -0.015372885391116142, + 0.01870661787688732, + -0.09773150086402893, + -0.03608260676264763, + 0.021374501287937164, + -0.0575837641954422, + -0.0304284505546093, + -0.05300278961658478, + -0.03473735228180885, + -0.028844106942415237, + -0.017411021515727043, + -0.0007596333744004369, + -0.013648252002894878, + -0.10324150323867798, + 0.015240649692714214, + -0.041296668350696564, + 0.02176903560757637, + -0.02779684029519558, + 0.1378222107887268, + 0.15938085317611694, + 0.03229766711592674, + 0.009203780442476273, + 0.005151916295289993, + 0.035657595843076706, + 0.04198941960930824, + 0.0005342109361663461, + 0.0042441594414412975, + -0.005936119705438614, + 0.01199467945843935, + -0.009944523684680462, + 0.006415184121578932, + 0.0184544175863266, + 0.04460366815328598, + 0.03621692582964897, + -0.009607614018023014, + 0.04644928500056267, + 0.03257579356431961, + 0.03226187825202942, + 0.027774961665272713, + -0.0816027894616127, + 0.0011515079531818628, + -0.025934943929314613, + -0.02303125709295273, + -0.0038444739766418934, + -0.018736444413661957, + 0.05702180415391922, + -0.000991906737908721, + -0.07665974646806717, + 0.01689109019935131, + -0.07773402333259583, + -0.037278179079294205, + -0.11174248158931732, + 0.05251762270927429, + -0.04000990092754364, + 0.03285154327750206, + -0.0955859050154686, + -0.012923972681164742, + 0.015098889358341694, + -0.08731014281511307, + -0.09712968021631241, + 0.08856289088726044, + 0.04346882179379463, + 0.07765142619609833, + 0.06736785918474197, + 0.027469616383314133, + -0.032134078443050385, + -0.14330480992794037, + -0.02076185867190361, + -0.048449113965034485, + 0.02456454187631607, + 0.006866673473268747, + 0.0013309168862178922, + -0.13413149118423462, + -0.059233568608760834, + -0.0751638188958168, + -0.025127960368990898, + 0.0023412341251969337, + -0.09178358316421509, + 0.03785926476120949, + 0.13374628126621246, + 0.0053290557116270065, + -0.06571098417043686, + -0.02770802192389965, + -0.056621845811605453, + -0.09780409187078476, + -0.04454062506556511, + 0.021413009613752365, + -0.004766779951751232, + -1.0606862053003748e-33, + 0.05578945204615593, + 0.09034677594900131, + -0.017247900366783142, + 0.054679084569215775, + 0.028523564338684082, + -0.018289821222424507, + -0.08732093870639801, + -0.0010886442614719272, + -0.0035046283155679703, + -0.015208090655505657, + 0.06953099370002747, + 0.03267616033554077, + -0.0711355060338974, + 0.018564647063612938, + 0.022697757929563522, + -0.05801285058259964, + -0.0725117176771164, + -0.014248075895011425, + -0.026933101937174797, + -0.01810074970126152, + -0.07466786354780197, + 0.039048850536346436, + -0.0241057388484478, + 0.016887761652469635, + 0.03705434873700142, + -0.05502958968281746, + 0.06324375420808792, + -0.022075260058045387, + 0.0007499231141991913, + 0.009409059770405293, + 0.013108146376907825, + 0.022998424246907234, + 0.04818878322839737, + -0.06298528611660004, + -0.02034097909927368, + -0.010338427498936653, + -0.03038794919848442, + -0.04525433108210564, + 0.044928956776857376, + -0.050247643142938614, + -0.11443562060594559, + -0.06041344627737999, + -0.0027336315251886845, + 0.037888918071985245, + 0.015147729776799679, + 0.10759507864713669, + -0.04552360624074936, + -0.02170470729470253, + 0.014796381816267967, + 0.057391706854104996, + -0.0769231915473938, + -0.04322609305381775, + -0.011717763729393482, + -0.019054176285862923, + -0.01145351491868496, + -0.02509462647140026, + -0.023818593472242355, + 0.04416349157691002, + 0.00047614946379326284, + -0.026564933359622955, + 0.03966236859560013, + 0.006544454488903284, + 0.011902574449777603, + -0.03391499072313309, + -0.08476576954126358, + 0.08233808726072311, + -0.04398239403963089, + 0.0038161245174705982, + 0.04089140146970749, + -0.0054382337257266045, + 0.02125879004597664, + 0.012196321040391922, + 0.10796627402305603, + 0.015054922550916672, + -0.05996396765112877, + 0.040770236402750015, + 0.037125539034605026, + 0.012775701470673084, + -0.047007039189338684, + -0.05310056358575821, + -0.10198713093996048, + 0.03326171636581421, + -0.050140734761953354, + 0.09657227993011475, + -0.06524965167045593, + -0.005257046781480312, + -0.0527862012386322, + -0.17005781829357147, + -0.02050986886024475, + 0.08547525107860565, + -0.09031306207180023, + 0.03548193350434303, + -0.06249621883034706, + -0.02835693396627903, + -0.09584380686283112, + -1.2102007296948194e-33, + -0.022395391017198563, + 0.06378462165594101, + -0.03551667928695679, + -0.03670016676187515, + 0.015326320193707943, + -0.03868640959262848, + 0.07974012941122055, + 0.08162619173526764, + 0.008180424571037292, + -0.012118494138121605, + 0.012030009180307388, + -0.014537053182721138, + -0.017431972548365593, + -0.1024809405207634, + -0.031434476375579834, + 0.054944008588790894, + 0.022798530757427216, + -0.029387284070253372, + 0.05466951057314873, + 0.07405225187540054, + -0.03396013379096985, + 0.019137844443321228, + 0.014885280281305313, + 0.0954214483499527, + -0.010931256227195263, + -0.0039613270200788975, + -0.005250425543636084, + -0.002073828363791108, + 0.0006912234821356833, + -0.022115932777523994, + 0.04177449643611908, + -0.02730609104037285, + -0.005487356334924698, + 0.06327787041664124, + 0.010811894200742245, + 0.04611005261540413, + 0.07027904689311981, + -0.027455832809209824, + -0.04614779353141785, + -0.05075603723526001, + 0.08509210497140884, + 0.01054369192570448, + 0.00626575481146574, + 0.013792783953249454, + 0.031352221965789795, + -0.014377131126821041, + 0.038118861615657806, + -0.009420090354979038, + -0.04300083592534065, + 0.01811542548239231, + 0.07233487814664841, + 0.047786079347133636, + -0.006831404287368059, + -0.028620190918445587, + -0.09871446341276169, + 0.02936452068388462, + 0.07675392925739288, + -0.004877714440226555, + -0.03537238761782646, + -0.019620902836322784, + 0.06235162168741226, + -0.0017214412800967693, + -0.025944216176867485, + -0.014703691937029362, + -0.03203001990914345, + -0.051606953144073486, + 0.041393447667360306, + 0.03445495665073395, + 0.10161750763654709, + 0.05001126602292061, + -0.03634680062532425, + -0.021201394498348236, + 0.013431425206363201, + -0.0003354183572810143, + -0.0018774578347802162, + -0.004603029228746891, + -0.06628834456205368, + -0.009375947527587414, + -0.04011242091655731, + -0.0030975756235420704, + 0.07225724309682846, + 0.06118815764784813, + -0.008016698993742466, + -0.013197178021073341, + 0.029175810515880585, + 0.011428534984588623, + 0.05342443659901619, + 0.04058064892888069, + -0.031994644552469254, + 0.054774802178144455, + 0.019842680543661118, + 0.032315392047166824, + -0.06112368404865265, + 0.09669675678014755, + -0.044727873057127, + -1.9404421180979625e-08, + 0.04960944503545761, + -0.029575543478131294, + 0.011651567183434963, + -0.06644336134195328, + -0.03388794884085655, + -0.13446393609046936, + 0.07275894284248352, + -0.0800452008843422, + 0.04763476550579071, + -0.05249727889895439, + -0.02139933593571186, + -0.04999430477619171, + -0.07672476023435593, + 0.07060753554105759, + 0.08928362280130386, + 0.11833425611257553, + -0.11761323362588882, + 0.0761791467666626, + -0.05542147159576416, + -0.04702969640493393, + -0.027164001017808914, + 0.04823233187198639, + -0.014629978686571121, + 0.0026101162657141685, + 0.05103658139705658, + 0.04296933114528656, + -0.04990779235959053, + -0.008146343752741814, + 0.01741698943078518, + 0.061491236090660095, + 0.022318977862596512, + 0.04474448785185814, + -0.04981168732047081, + -0.018668169155716896, + -0.07174373418092728, + 0.0018213699804618955, + -0.038117602467536926, + -0.03132748603820801, + 0.006241145543754101, + 0.06965211778879166, + -0.0061347754672169685, + -0.07949050515890121, + -0.046659354120492935, + 0.05001964420080185, + 0.03704123944044113, + -0.033203039318323135, + 0.07611185312271118, + 0.009586240164935589, + -0.019305335357785225, + -0.015483937226235867, + -0.025487834587693214, + 0.04281126335263252, + 0.003398581175133586, + -0.017449526116251945, + -0.015153271146118641, + -0.050144705921411514, + 0.02094651386141777, + 0.035633113235235214, + -0.019324904307723045, + -0.003306535305455327, + 0.09643512964248657, + 0.06420189142227173, + 0.09376763552427292, + 0.047645509243011475 + ], + "devices-bold||responsive,cellphone,cellular,tablet,destop": [ + -0.003143778769299388, + -0.015371575951576233, + 0.019432734698057175, + -0.05604111775755882, + 0.026579907163977623, + -0.06846292316913605, + 0.06065940856933594, + 0.016471685841679573, + 0.0345725454390049, + 0.026352230459451675, + 0.049637824296951294, + 0.041003286838531494, + 0.04245728626847267, + -0.05521120876073837, + 0.04913370683789253, + -0.03267434239387512, + 0.03832042217254639, + -0.008605830371379852, + -0.04110514000058174, + 0.063984714448452, + 0.04889141395688057, + 0.05559524893760681, + 0.013336255215108395, + 0.026531804352998734, + 0.04943906143307686, + -0.013274304568767548, + 0.042876627296209335, + 0.010283016599714756, + 0.002729549305513501, + -0.09268930554389954, + 0.011456836946308613, + 0.031242161989212036, + 0.046514760702848434, + 0.08072833716869354, + -0.015396418049931526, + -0.08075200766324997, + -0.035052742809057236, + -0.04121139645576477, + -0.05822659656405449, + -0.019032495096325874, + 0.009001431055366993, + -0.0858018547296524, + 0.018845120444893837, + 0.056800562888383865, + -0.037175048142671585, + -0.06632053852081299, + -0.08759190142154694, + 0.004253298044204712, + -0.02011299319565296, + -0.05703665688633919, + 0.04118853062391281, + -0.016001513227820396, + -0.10107529908418655, + 0.018727220594882965, + -0.04568307846784592, + -0.02072279527783394, + -0.023266030475497246, + 0.07002171128988266, + 0.13756561279296875, + 0.0384567566215992, + 0.05465659126639366, + -0.001306909485720098, + 0.022233782336115837, + 0.04706959053874016, + 0.023000067099928856, + 0.020292257890105247, + -0.00547694182023406, + -0.034454021602869034, + -0.031029440462589264, + 0.06152058765292168, + 0.03772086650133133, + -0.016563640907406807, + 0.02530941367149353, + -0.002981792902573943, + 0.015066261403262615, + 0.01200623344630003, + 0.003854205831885338, + 0.01900568976998329, + -0.03261645510792732, + -0.028056291863322258, + -0.027739038690924644, + -0.017909113317728043, + -0.026875654235482216, + 0.02318781055510044, + 0.07947874814271927, + 0.005290864035487175, + -0.08597026765346527, + -0.010742460377514362, + -0.08990885317325592, + -0.0847371518611908, + -0.08754000812768936, + 0.023791134357452393, + -0.042896006256341934, + 0.04713933542370796, + -0.15746869146823883, + -0.04662929102778435, + 0.01883538067340851, + -0.11296337097883224, + -0.07346663624048233, + 0.11291095614433289, + 0.038011930882930756, + 0.0796470195055008, + 0.05468529835343361, + 0.04769837483763695, + -0.0667862668633461, + -0.09602369368076324, + -0.002602231688797474, + -0.03161030262708664, + -0.022314956411719322, + 0.009003068320453167, + -0.017797449603676796, + -0.10930097848176956, + -0.10006777197122574, + 0.012958869338035583, + -0.007167242933064699, + -0.06943489611148834, + -0.05562066659331322, + 0.056812088936567307, + 0.1912771314382553, + -0.0009074668632820249, + -0.05541092902421951, + -0.02550974301993847, + -0.08992030471563339, + -0.13328035175800323, + 0.013561614789068699, + 0.06245679035782814, + 0.0012128883972764015, + -1.1173352984474163e-33, + 0.02619878575205803, + 0.05642972141504288, + -0.03027123026549816, + 0.07603620737791061, + 0.0035888056736439466, + 0.013234607875347137, + -0.038079507648944855, + 0.017361044883728027, + -0.007822226732969284, + 0.05138210579752922, + 0.02919362671673298, + 0.10024355351924896, + -0.05852799490094185, + 0.07363732159137726, + 0.06671187281608582, + -0.0824466198682785, + -0.023941034451127052, + 0.0044513968750834465, + -0.05643853545188904, + -0.022148530930280685, + -0.041122712194919586, + 0.014915329404175282, + -0.0223507359623909, + -0.031900569796562195, + 0.0306302011013031, + -0.023372335359454155, + 0.012558176182210445, + 0.005056360270828009, + -0.014422641135752201, + 0.023027241230010986, + -0.02872462570667267, + 0.01574251987040043, + 0.06542959064245224, + -0.042861469089984894, + -0.02389570325613022, + 0.017617303878068924, + -0.06313019245862961, + -0.044291842728853226, + 0.013857508078217506, + -0.008389110676944256, + -0.1273181140422821, + -0.034220948815345764, + -0.030287381261587143, + -0.04935767501592636, + -0.008478397503495216, + 0.11346393823623657, + -0.04057184234261513, + -0.0549103319644928, + 0.013519486412405968, + 0.0178836602717638, + -0.03169548138976097, + -0.02140367217361927, + -0.0128450533375144, + -0.07653938233852386, + 0.028154227882623672, + -0.04346255213022232, + -0.02100643515586853, + 0.04993891343474388, + 0.04466112330555916, + 0.026962248608469963, + 0.027742432430386543, + -0.028125979006290436, + -0.011069909669458866, + -0.034060005098581314, + -0.048032380640506744, + 0.06378353387117386, + 0.02607847936451435, + 0.02035117894411087, + -0.006486156955361366, + -0.010767449624836445, + 0.01986946165561676, + 0.021307149901986122, + 0.12212008982896805, + -0.0025328954216092825, + -0.029440520331263542, + 0.05544603615999222, + -0.0043460712768137455, + -0.02014271169900894, + -0.06505677849054337, + -0.052078716456890106, + -0.07303514331579208, + -0.01185082457959652, + -0.05898735672235489, + 0.07624554634094238, + -0.032273124903440475, + -0.017631225287914276, + -0.05183028057217598, + -0.1516980528831482, + -0.0466003343462944, + 0.1188892349600792, + -0.10417690128087997, + 0.05205109342932701, + -0.037463195621967316, + -0.043068911880254745, + -0.11877399682998657, + -1.521385583932661e-33, + -0.05307971313595772, + 0.029924070462584496, + -0.04890327900648117, + -0.041619256138801575, + -0.010977539233863354, + 0.018973594531416893, + 0.0443522185087204, + 0.056404177099466324, + 0.02827954664826393, + 0.004809724632650614, + 0.04551268368959427, + -0.00426409812644124, + -0.04890592023730278, + -0.08946232497692108, + -0.04018859937787056, + 0.06120572239160538, + 0.00995157565921545, + -0.0417989119887352, + 0.04705844447016716, + 0.028658848255872726, + -0.01731879450380802, + 0.03604615852236748, + -0.03036973625421524, + 0.10548270493745804, + 0.01853298954665661, + -0.030678195878863335, + 0.012038585729897022, + 0.03453480452299118, + -0.004909248556941748, + -0.02833535335958004, + 0.006647487636655569, + -0.06457313150167465, + 0.05918502435088158, + 0.06987524032592773, + 0.033572807908058167, + 0.020148029550909996, + 0.018808644264936447, + -0.019025567919015884, + -0.008449370972812176, + -0.03312130272388458, + 0.06224933639168739, + 0.04021039232611656, + 0.02106916531920433, + 0.05024949461221695, + 0.04509070888161659, + -0.04764438048005104, + -0.024170923978090286, + -0.03999330848455429, + -0.013842851854860783, + 0.0695657804608345, + 0.09172654896974564, + 0.007126183714717627, + -0.002016517100855708, + -0.005161651875823736, + -0.10358554124832153, + 0.0219382643699646, + 0.045362893491983414, + -0.014959513209760189, + -0.030264947563409805, + 0.01522970199584961, + 0.06384912133216858, + -0.01851734332740307, + -0.0861196517944336, + 0.018803391605615616, + -0.01704864762723446, + -0.03164743259549141, + 0.05816180631518364, + 0.02344440668821335, + 0.05071968585252762, + 0.06178152188658714, + 0.011250285431742668, + -0.04519375413656235, + 0.002321646548807621, + -0.021320151165127754, + -0.011576004326343536, + -0.03271597996354103, + -0.039260655641555786, + -0.035336803644895554, + -0.054874930530786514, + -0.003644593060016632, + 0.03623126074671745, + 0.07821712642908096, + -0.0335182249546051, + 0.024598097428679466, + 0.00031422506435774267, + 0.07327297329902649, + 0.03561314940452576, + 0.02417580783367157, + -0.012420330196619034, + 0.05627996101975441, + -0.023306995630264282, + 0.02692553959786892, + -0.05732796713709831, + 0.05945172160863876, + -0.051385264843702316, + -2.0052178584251124e-08, + 0.04741613194346428, + 0.019247999414801598, + 0.003929448779672384, + -0.015455983579158783, + -0.016126329079270363, + -0.14129304885864258, + 0.052131082862615585, + -0.07799362391233444, + 0.034685879945755005, + -0.01409201044589281, + 0.01062882412225008, + -0.039541035890579224, + -0.07420993596315384, + 0.059694401919841766, + 0.1031099334359169, + 0.11259958148002625, + -0.03511809557676315, + 0.06903259456157684, + -0.03940733149647713, + -0.04906204715371132, + -0.005189864430576563, + 0.08687355369329453, + 0.014703193679451942, + -0.020837895572185516, + 0.06468404084444046, + 0.0477830171585083, + -0.05768287554383278, + 0.014435097575187683, + 0.07714884728193283, + 0.04155706241726875, + 0.025407692417502403, + 0.025492142885923386, + -0.011001614853739738, + -0.018765466287732124, + -0.03794005885720253, + 0.0003067342913709581, + -0.00720654521137476, + -0.030658075585961342, + 0.04709623008966446, + 0.09452056139707565, + -0.015697984024882317, + -0.06289134919643402, + -0.027991948649287224, + 0.006717032287269831, + -0.04249739646911621, + -0.02248544432222843, + 0.052978336811065674, + -0.012853139080107212, + -0.044373705983161926, + -0.00825502723455429, + -0.05529533326625824, + 0.00746872927993536, + -0.018431514501571655, + 0.006583681795746088, + -0.03529030829668045, + -0.045555230230093, + 0.0027317004278302193, + 0.05094968155026436, + -0.03180263563990593, + 0.0406956821680069, + 0.14325442910194397, + 0.05845699831843376, + 0.058295123279094696, + 0.048194434493780136 + ], + "diamond-bold||rectangle,shapes,polygons,diamonds,suits,cards,gambling,casino,gaming": [ + 0.064238041639328, + 0.026828795671463013, + -0.07869413495063782, + 0.01778911054134369, + -0.09347052872180939, + 0.018177714198827744, + 0.05919758230447769, + -0.01792558655142784, + -0.033555082976818085, + -0.04284447804093361, + -0.0525544099509716, + -0.03542677313089371, + 0.02800353802740574, + -0.012259361334145069, + 0.00542142428457737, + 0.012066176161170006, + 0.096413753926754, + 0.031981050968170166, + 0.03409101068973541, + 0.0748974159359932, + 0.02523328736424446, + -0.05092933028936386, + -0.007118680514395237, + 0.040699250996112823, + 0.05086953565478325, + 0.07611184567213058, + 0.016852322965860367, + 0.050573017448186874, + 0.002645723521709442, + -0.10735052824020386, + -0.03310137242078781, + 0.0970815122127533, + 0.10181701928377151, + 0.06765082478523254, + -0.033291254192590714, + -0.04219716787338257, + -0.1111186072230339, + 0.03836847096681595, + -0.014531334862112999, + 0.07055263966321945, + -0.007204531226307154, + -0.007975364103913307, + -0.0104573555290699, + 0.10219940543174744, + 0.0031227159779518843, + 0.005884746089577675, + -0.07342096418142319, + 0.08200425654649734, + -0.040890179574489594, + -0.01407576072961092, + 0.020840933546423912, + -0.051130570471286774, + -0.10822035372257233, + 0.01956922747194767, + 0.09699263423681259, + -0.026584647595882416, + -0.03718223050236702, + -0.035958413034677505, + 0.03545774146914482, + -0.03546413779258728, + 0.06647573411464691, + 0.04540690779685974, + 0.005709546618163586, + 0.04931548610329628, + -0.052078235894441605, + 0.019229372963309288, + -0.0013823024928569794, + 0.019910167902708054, + -0.08224816620349884, + -0.022161778062582016, + 0.08282529562711716, + 0.07147514075040817, + -0.057843878865242004, + -0.05537410452961922, + -0.00963048916310072, + 0.011997763998806477, + 0.03975573554635048, + -0.03157808259129524, + -0.03901365026831627, + -0.01187122706323862, + -0.14121481776237488, + -0.006095774471759796, + 0.01645290106534958, + -0.004897839389741421, + -0.0013460001209750772, + 0.06727252155542374, + -0.08074309676885605, + -0.03106495924293995, + -0.01704396866261959, + -0.053506847470998764, + -0.07922547310590744, + 0.00875133741647005, + -0.0014668441144749522, + 0.019016535952687263, + -0.0806884840130806, + 0.021223755553364754, + 0.058648478239774704, + -0.005700204521417618, + -0.0010532630840316415, + 0.0497872419655323, + 0.12064249068498611, + 0.018551884219050407, + 0.041706983000040054, + 0.0005749035626649857, + 0.030653204768896103, + 0.008437090553343296, + 0.034325387328863144, + 0.02142265811562538, + 0.039213720709085464, + 0.0062750861980021, + -0.07998860627412796, + -0.0332922525703907, + 0.027601249516010284, + -0.08813495188951492, + -0.08194303512573242, + -0.014196176081895828, + -0.1154433861374855, + 0.03258989378809929, + 0.13580116629600525, + 0.06868121773004532, + 0.03779718279838562, + 0.04005024582147598, + -0.03731361776590347, + -0.04849580302834511, + -0.07391758263111115, + -0.00889242347329855, + -0.025560040026903152, + -2.641533436285412e-33, + 0.016711771488189697, + 0.013856352306902409, + -0.008743196725845337, + 0.10944274067878723, + 0.020001763477921486, + -0.02071617729961872, + -0.014462649822235107, + -0.08559419214725494, + 0.0015308982692658901, + 0.038915615528821945, + -0.008387597277760506, + 0.08204229921102524, + -0.045035310089588165, + 0.11547934263944626, + 0.12290456891059875, + 0.010071505792438984, + -0.032297275960445404, + -0.03752654045820236, + -0.07762964069843292, + -0.05590759590268135, + -0.06237952038645744, + 0.019012080505490303, + -0.016366392374038696, + 0.018885241821408272, + -0.10725224763154984, + 0.035496897995471954, + -0.008569025434553623, + -0.02440006472170353, + 0.02754472941160202, + 0.04071248322725296, + 0.06151778623461723, + 0.03348139673471451, + 0.04515378177165985, + 0.018129276111721992, + -0.015115395188331604, + 0.0673326700925827, + -0.03670616075396538, + 0.0058976574800908566, + -0.003449409268796444, + -0.028327282518148422, + -0.06290944665670395, + -0.034433089196681976, + -0.06084252521395683, + -0.030694536864757538, + 0.024882029742002487, + 0.03216884657740593, + -0.013627566397190094, + -0.03329276666045189, + -0.020624050870537758, + 0.0031912142876535654, + 0.004416881129145622, + 6.831003702245653e-05, + 0.047541823238134384, + 0.012240245938301086, + -0.021519865840673447, + -0.04888362064957619, + -0.009497713297605515, + 0.05619381368160248, + -0.07138072699308395, + -0.021457141265273094, + 0.03682992234826088, + -0.006456954404711723, + 0.029415013268589973, + 0.014742712490260601, + -0.09804892539978027, + 0.1107153668999672, + -0.059764567762613297, + -0.03875931352376938, + 0.02968088909983635, + -0.014888784848153591, + 0.018800953403115273, + 0.12903788685798645, + 0.035559020936489105, + -0.008386439643800259, + -0.020406082272529602, + 0.008193234913051128, + -0.015653152018785477, + -0.05104820802807808, + -0.03931666538119316, + -0.009305453859269619, + -0.10748648643493652, + -0.030468186363577843, + -0.0741485133767128, + -0.0657387375831604, + -0.02416238933801651, + 0.0067017944529652596, + 0.0850767269730568, + -0.08922510594129562, + 0.03360601142048836, + -0.009121489711105824, + -0.1166844442486763, + -0.06021924316883087, + 0.04995396360754967, + -0.03402438387274742, + -0.027050238102674484, + 8.586609707222562e-34, + -0.0641603022813797, + -0.02745880000293255, + 0.03457081690430641, + -0.0059229531325399876, + 0.05258820205926895, + -0.016209717839956284, + -0.009176341816782951, + 0.014536621049046516, + 0.007232851814478636, + -0.028977995738387108, + -0.060484662652015686, + -0.0028786552138626575, + -0.020021485164761543, + -0.07060172408819199, + 0.00013385229976847768, + -0.022243676707148552, + 0.04560260474681854, + 0.0445595309138298, + -0.0490853413939476, + 0.03851066529750824, + 0.010078586637973785, + -0.029611090198159218, + -0.1104206070303917, + 0.049204323440790176, + -0.05110066011548042, + 0.05868421867489815, + -0.02949625998735428, + -0.13054123520851135, + -0.009184013120830059, + 0.01989133283495903, + -0.029564088210463524, + -0.03103020414710045, + 0.056096624583005905, + 0.08949550241231918, + -0.12276338040828705, + -0.01149063277989626, + 0.0410710871219635, + -0.042962696403265, + 0.04357273131608963, + -0.03512312471866608, + 0.005182406399399042, + -0.04328688234090805, + -0.002553640166297555, + 0.09838874638080597, + 0.01735575683414936, + -0.003891072003170848, + -0.04737398400902748, + -0.024638408794999123, + 0.0235982034355402, + 0.039262063801288605, + -0.013570101000368595, + 0.026183445006608963, + -0.020054299384355545, + 0.04775175452232361, + -0.03233709931373596, + -0.010795637965202332, + -0.09150876104831696, + 0.03553907945752144, + 0.03409139811992645, + 0.07459477335214615, + -0.02928156964480877, + 0.02180727943778038, + -0.042814359068870544, + 0.09762723743915558, + 0.008794828318059444, + 0.033393170684576035, + 0.035888057202100754, + -0.014675864949822426, + -0.04249408468604088, + 0.03172546252608299, + -0.009962925687432289, + 0.09317180514335632, + -0.05638010799884796, + 0.051967814564704895, + 0.025248005986213684, + -0.051536913961172104, + 0.014284759759902954, + 0.056235574185848236, + -0.0494389571249485, + 0.0532810240983963, + -0.007681482937186956, + -0.027896849438548088, + 0.008170004934072495, + 0.05218671262264252, + 0.034242063760757446, + -0.010585096664726734, + -0.010897991247475147, + 0.015346263535320759, + -0.08334916085004807, + -0.01962520368397236, + -0.02564733661711216, + 0.06587294489145279, + 0.014553206041455269, + -0.010784045793116093, + 0.020276354625821114, + -2.3217255673557702e-08, + 0.009922626428306103, + -0.0007110252627171576, + -0.05022132396697998, + -0.05397988483309746, + 0.011412101797759533, + -0.029144518077373505, + 0.042644038796424866, + -0.02591252699494362, + -0.046808045357465744, + -0.023376623168587685, + 0.058663468807935715, + 0.03515031933784485, + -0.07521869242191315, + -0.09624887257814407, + 0.05639440938830376, + -0.0336792953312397, + -0.0058611915446817875, + 0.01593935675919056, + 0.008981244638562202, + -0.020644638687372208, + 0.10480130463838577, + 0.05596717447042465, + 0.0844784528017044, + -0.035231176763772964, + -0.07084254175424576, + 0.015881873667240143, + -0.041541725397109985, + -0.04529961943626404, + 0.03598829731345177, + 0.09110836684703827, + 0.0680273249745369, + 0.07206469774246216, + 0.12947237491607666, + -0.04069840908050537, + -0.0529012493789196, + 0.03387061879038811, + 0.04281648248434067, + 0.042096372693777084, + -0.02684432826936245, + 0.05920231714844704, + -0.00569254532456398, + -0.11562298238277435, + -0.019148562103509903, + -0.06184638291597366, + 0.046915218234062195, + -0.009012360125780106, + 0.03708571940660477, + 0.011795887723565102, + 0.03377336263656616, + -0.12162031978368759, + -0.04740152135491371, + 0.028102729469537735, + 0.007657602429389954, + -0.0138748399913311, + -0.02202938310801983, + 0.017224377021193504, + 0.037290915846824646, + 0.07965899258852005, + 0.0274276752024889, + -0.019871417433023453, + 0.0779743492603302, + -0.04360184445977211, + -0.008663508109748363, + 0.017252089455723763 + ], + "diamonds-four-bold||shapes,grid,component": [ + 0.07777086645364761, + 0.031852494925260544, + -0.07776950299739838, + 0.08629638701677322, + -0.00727853924036026, + 0.058409079909324646, + -0.001017246046103537, + -0.050751976668834686, + -0.008158227428793907, + -0.02315451391041279, + -0.05576934665441513, + -0.017792465165257454, + 0.028103530406951904, + -0.011217924766242504, + -0.045097511261701584, + 0.029183028265833855, + 0.015780415385961533, + 0.023813888430595398, + -0.0520879328250885, + 0.04763532802462578, + -0.011433643288910389, + -0.11451059579849243, + 0.04963897913694382, + 0.013230269774794579, + 0.02037627436220646, + 0.10696219652891159, + 0.04309416189789772, + 0.03737039491534233, + 0.05073275789618492, + -0.09661563485860825, + 0.009809617884457111, + 0.03507469221949577, + 0.04376394301652908, + 0.05069444701075554, + -0.03356137126684189, + -0.04162207990884781, + -0.02854222059249878, + 0.09650304913520813, + -0.007661125157028437, + 0.06380235403776169, + 0.07133674621582031, + -0.03874771296977997, + -0.02218441665172577, + 0.021276820451021194, + -0.014635046944022179, + 0.007143399678170681, + -0.07045281678438187, + 0.0007166469004005194, + 0.0025532448198646307, + -0.06121700629591942, + -0.023612575605511665, + -0.09308910369873047, + -0.07767002284526825, + -0.0318433940410614, + 0.05558603256940842, + -0.02940329723060131, + -0.054380569607019424, + -0.07143762707710266, + 0.13268738985061646, + -0.03259248286485672, + 0.10418744385242462, + 0.02995137870311737, + 0.059868767857551575, + 0.033203791826963425, + 0.011799272149801254, + 0.027095852419734, + -0.05582239478826523, + -0.007580357603728771, + -0.0799049437046051, + 0.022610673680901527, + 0.09452078491449356, + 0.07495708018541336, + -0.039119232445955276, + -0.08464320003986359, + 0.015506482683122158, + 0.02519746869802475, + 0.05521285533905029, + -0.024218106642365456, + -0.03765297308564186, + 0.01257285475730896, + -0.08456902951002121, + 0.0429035946726799, + -0.05661328136920929, + 0.016774682328104973, + -0.017609618604183197, + 0.06919824331998825, + -0.10619644820690155, + -0.08682756870985031, + -0.06250657886266708, + -0.02856762893497944, + -0.008239177986979485, + 0.06150384247303009, + -0.010518682189285755, + 0.08895263820886612, + -0.09303095936775208, + -0.01126630324870348, + 0.09949995577335358, + -0.001965188654139638, + -0.01883244514465332, + 0.047165647149086, + 0.0429561473429203, + -0.00020869701984338462, + 0.022505540400743484, + 0.0005962823051959276, + 0.014082820154726505, + -0.007976192981004715, + 0.019468694925308228, + 0.052511900663375854, + 0.02785530686378479, + 0.0191589817404747, + -0.0015468752244487405, + -0.10830071568489075, + -0.058896880596876144, + -0.06220864877104759, + -0.04863220825791359, + -0.0733993649482727, + -0.09356608986854553, + -0.020238487049937248, + 0.11409972608089447, + -0.018802471458911896, + 0.024472884833812714, + 0.011092347092926502, + -0.037936173379421234, + -0.06735172122716904, + -0.009342125616967678, + 0.02868623286485672, + -0.05604869872331619, + -2.613141206951223e-33, + 0.04297798499464989, + 0.083427794277668, + 0.004077100194990635, + 0.1061500608921051, + 0.06124983727931976, + -0.021686570718884468, + -0.05098269134759903, + -0.07050711661577225, + 0.009609260596334934, + 0.06058691069483757, + 0.002143536927178502, + 0.0823170468211174, + -0.05865388736128807, + 0.0432526133954525, + 0.04837968945503235, + -0.044882457703351974, + 0.045862264931201935, + -0.029019134119153023, + -0.11617188155651093, + -0.051460448652505875, + -0.047628819942474365, + -0.013607017695903778, + -0.06741990894079208, + 0.03658848628401756, + -0.04120897129178047, + 0.037344034761190414, + 0.027470851317048073, + -0.015986919403076172, + -0.03139239922165871, + 0.0159741323441267, + 0.025218505412340164, + 0.07949880510568619, + 0.03197360411286354, + 0.020896390080451965, + -0.031158268451690674, + 0.004501080606132746, + -0.038488682359457016, + 0.022025734186172485, + 0.00982497539371252, + -0.06281547993421555, + -0.033370550721883774, + -0.04618176817893982, + 0.03428347781300545, + -0.04678257927298546, + 0.03809335455298424, + 0.07292097806930542, + 0.006734695751219988, + -0.013611707836389542, + 0.025219226256012917, + -0.04067753627896309, + 0.021477552130818367, + 0.03600546717643738, + 0.07924475520849228, + 0.043826062232255936, + 0.057266198098659515, + -0.00668442714959383, + -0.03749380633234978, + 0.08278962224721909, + 0.08260316401720047, + -0.04673184081912041, + 0.040922172367572784, + -0.015276744030416012, + -0.024347422644495964, + 0.04599429666996002, + -0.01872897334396839, + 0.07127699255943298, + -0.06263291835784912, + -0.01956203207373619, + 0.011573036201298237, + -0.006568957585841417, + 0.03482776880264282, + 0.0686097964644432, + 0.024875519797205925, + -0.009823979809880257, + -0.020955964922904968, + -0.01010422594845295, + -0.03377152234315872, + -0.05434751138091087, + 0.028304604813456535, + -0.033048104494810104, + -0.11436924338340759, + 0.026265645399689674, + -0.05696139112114906, + -0.04271555319428444, + 0.012591507285833359, + 0.019095556810498238, + 0.06260088831186295, + -0.048528414219617844, + 0.008673588745296001, + 0.011817490682005882, + -0.11993692070245743, + -0.053127363324165344, + 0.007798408158123493, + -0.0034556163009256124, + -0.09326508641242981, + 1.3691279332679773e-33, + 0.0029992740601301193, + 0.06454699486494064, + 0.020363494753837585, + -0.01805928908288479, + 0.058217018842697144, + 0.01094015222042799, + -0.0216184314340353, + 0.026616470888257027, + -0.04014262557029724, + 0.06245846673846245, + 0.055706609040498734, + -0.034045688807964325, + -0.03856883943080902, + -0.06156264990568161, + -0.03948662430047989, + 0.052008017897605896, + 0.029862763360142708, + -0.00585420336574316, + -0.04832188040018082, + -0.023485803976655006, + -0.049263302236795425, + 0.016318541020154953, + -0.06871780008077621, + 0.05631761625409126, + -0.05095941200852394, + 0.0470932237803936, + 0.068839892745018, + -0.08606957644224167, + -0.04375714808702469, + 0.05422798916697502, + -0.05453425645828247, + -0.0376976914703846, + 0.04089604690670967, + 0.05505353584885597, + -0.10668224096298218, + -0.004344942048192024, + -0.019968079403042793, + -0.042283955961465836, + 0.06271456182003021, + -0.01153610460460186, + -0.03775830194354057, + -0.020870648324489594, + -0.0387139730155468, + 0.08636029809713364, + -0.007657394278794527, + -0.0001290653890464455, + 0.05694999173283577, + 0.0486665740609169, + -0.01989896595478058, + 0.05730302259325981, + 0.0010812846012413502, + -0.02484740875661373, + -0.0017944781575351954, + 0.06189977750182152, + -0.03360193222761154, + -0.045244697481393814, + -0.013282211497426033, + 0.04783356562256813, + 0.05109165236353874, + 0.00027671188581734896, + -0.03529243916273117, + 0.02328004129230976, + -0.004169916268438101, + 0.05232752114534378, + 0.06777884066104889, + 0.07161334156990051, + 0.029505379498004913, + -0.05287853255867958, + 0.03855272755026817, + 0.04073188826441765, + 0.02638383023440838, + 0.07021792232990265, + -0.013910442590713501, + 0.025345904752612114, + 0.10758761316537857, + -0.09747776389122009, + -0.019769683480262756, + 0.025549471378326416, + -0.04494737088680267, + 0.032750047743320465, + -0.059161558747291565, + -0.01002545841038227, + 0.02093702182173729, + 0.027997532859444618, + -0.020676974207162857, + -0.06467831134796143, + 0.03507087752223015, + 0.04568582773208618, + -0.0497649610042572, + 0.03576098755002022, + 0.00425142515450716, + 0.05091998726129532, + 0.052343305200338364, + -0.026197826489806175, + 0.0011535993544384837, + -1.690722584157811e-08, + 0.0008419567020609975, + 0.034922730177640915, + -0.02217240259051323, + -0.12907077372074127, + 0.0021182140335440636, + -0.07999931275844574, + 0.014496037736535072, + -0.04748852178454399, + -0.03430167958140373, + 0.03516973555088043, + 0.06097957864403725, + -0.0017272213008254766, + -0.09697259217500687, + -0.07747483998537064, + 0.04453818500041962, + -0.021829193457961082, + -0.08948051184415817, + 0.058089904487133026, + -0.030689198523759842, + -0.08004088699817657, + 0.05849521979689598, + 0.025019029155373573, + 0.05986541137099266, + 0.08014786243438721, + -0.0021239451598376036, + -0.009185178205370903, + -0.07319029420614243, + -0.06103106215596199, + 0.07738974690437317, + 0.0662614181637764, + 0.047017522156238556, + 0.05249308794736862, + 0.16546839475631714, + -0.0013897944008931518, + -0.09007860720157623, + -0.004308364354074001, + -0.03726670518517494, + -0.008001109585165977, + -0.04546413943171501, + 0.0537445954978466, + -0.07456173747777939, + -0.09608975052833557, + -0.02090556174516678, + -0.0586865060031414, + -0.02771000936627388, + 0.04568350315093994, + -0.011001436971127987, + 0.037507157772779465, + -0.026883799582719803, + -0.03774520382285118, + -0.06014551967382431, + 0.014367890544235706, + 0.000564532121643424, + 0.035280991345644, + -0.039798032492399216, + -0.03559580072760582, + 0.005448290146887302, + 0.12150857597589493, + 0.0461597703397274, + -0.020152823999524117, + 0.05646659806370735, + -0.002910203766077757, + -0.03219614177942276, + -0.03216391056776047 + ], + "dice-five-bold||die,rolling,gamble,gambling,casino,gaming,5": [ + 0.02551320195198059, + -0.03890029340982437, + -0.04573150724172592, + -0.015394913032650948, + -0.053597547113895416, + 0.032486286014318466, + 0.08490647375583649, + -0.05436601862311363, + 0.02429574728012085, + 0.03715825453400612, + -0.015575905330479145, + 0.025964749976992607, + -0.0033435930963605642, + -0.06522015482187271, + -0.007240285165607929, + -0.026698702946305275, + -0.0470246747136116, + 0.024928493425250053, + -0.04534848406910896, + 0.013013124465942383, + 0.03501714766025543, + -0.03512923792004585, + -0.018640346825122833, + -0.030773883685469627, + 0.09869266301393509, + -0.02811954915523529, + -0.010641602799296379, + 0.06516984850168228, + -0.009427580051124096, + -0.057886213064193726, + -0.018565138801932335, + 0.03619629517197609, + 0.01422463171184063, + -0.020429275929927826, + 0.004099189769476652, + -0.038058362901210785, + -0.08408192545175552, + -0.02666715532541275, + -0.01644076779484749, + 0.05375159531831741, + 0.02375521883368492, + -0.050829339772462845, + -0.012201549485325813, + 0.0731692761182785, + 0.04716057702898979, + -0.040065620094537735, + -0.16832619905471802, + 0.00098502729088068, + 0.033371634781360626, + 0.006701117847114801, + -0.028705501928925514, + -0.06997384876012802, + -0.11667416244745255, + -0.0061478386633098125, + 0.038178957998752594, + -0.08050284534692764, + -0.05506005138158798, + 0.001727773924358189, + -0.002479810733348131, + -0.07044807821512222, + -0.000370350549928844, + 0.045561499893665314, + -0.008828822523355484, + 0.035594720393419266, + -0.0657842755317688, + 0.02821282111108303, + 0.027911124750971794, + 0.005220482125878334, + -0.06715623289346695, + 0.05839986726641655, + -0.05741281434893608, + -0.03661114349961281, + 0.005494745448231697, + -0.023025767877697945, + -0.053458526730537415, + -0.0022218036465346813, + -0.021019617095589638, + -0.1042841225862503, + -0.024139106273651123, + -0.006641320884227753, + -0.059746112674474716, + -0.0351601168513298, + -0.0260065458714962, + 0.0019362210296094418, + 0.01779922842979431, + 0.025226591154932976, + -0.023768864572048187, + 0.00961559172719717, + 0.06886548548936844, + -0.07513918727636337, + -0.0592200942337513, + -0.006293096113950014, + -0.03987874463200569, + 0.02553727850317955, + -0.11033621430397034, + 0.09981735795736313, + 0.00527935428544879, + -0.05136045441031456, + -0.02651512250304222, + 0.036584679037332535, + 0.05383913591504097, + -0.031159399077296257, + -0.0015617664903402328, + 0.003976853098720312, + -0.004802922252565622, + -0.00685411412268877, + -0.043557725846767426, + 0.010080759413540363, + -0.02522127702832222, + -0.04966270923614502, + -0.10178212821483612, + -0.018970996141433716, + 0.05174034461379051, + -0.028758803382515907, + 0.0035767194349318743, + 0.0196879543364048, + -0.1259429156780243, + 0.01921822875738144, + 0.0708046704530716, + 0.050820037722587585, + 0.03095463663339615, + 0.10439646989107132, + 0.0030007867608219385, + -0.036067284643650055, + -0.07907171547412872, + 0.00460932869464159, + 0.058493006974458694, + -3.3666176574649546e-33, + 0.024273473769426346, + -0.07967333495616913, + 0.017328549176454544, + 0.14940723776817322, + 0.020729685202240944, + -0.037369124591350555, + 0.01504273060709238, + -0.01116916537284851, + -0.03801019489765167, + 0.11133165657520294, + 0.015003313310444355, + 5.130936187924817e-05, + -0.006504455115646124, + 0.05648273229598999, + 0.09272028505802155, + 0.024878721684217453, + -0.00555717246606946, + -0.029117265716195107, + -0.023506080731749535, + 0.0010053628357127309, + -0.04171537607908249, + 0.046259306371212006, + 0.0147528275847435, + -0.07621785998344421, + -0.05152784660458565, + 0.01738571561872959, + -0.0626925602555275, + -0.02249419502913952, + 0.05673646554350853, + 0.03771413862705231, + -0.04499500244855881, + 0.032947082072496414, + 0.05737164616584778, + -0.0740637481212616, + 0.0869077742099762, + 0.0911954864859581, + -0.023852065205574036, + 0.07597839832305908, + -0.07346941530704498, + 0.03271837905049324, + -0.07805714011192322, + -0.045132942497730255, + -0.09449715912342072, + 0.022470206022262573, + 0.006231485866010189, + 0.11067652702331543, + 0.016202732920646667, + -0.0529346689581871, + 0.007532394491136074, + 0.011287255212664604, + -0.0329207107424736, + -0.053839776664972305, + 0.09009528160095215, + 0.03644022345542908, + -0.005600579082965851, + 0.025720972567796707, + 0.03228029981255531, + 0.022886652499437332, + -0.11103429645299911, + 0.02019405923783779, + 0.020800108090043068, + -0.0265505313873291, + 0.026368433609604836, + 0.007989625446498394, + -0.03784400224685669, + 0.14272670447826385, + -0.0016185472486540675, + -0.04247751086950302, + 0.08157718181610107, + 0.013062747195363045, + 0.05008963495492935, + 0.11051208525896072, + 0.01747249625623226, + -0.00876098033040762, + -0.007535369135439396, + 0.0279341172426939, + 0.052153557538986206, + 0.013623315840959549, + 0.005925340112298727, + -0.04065839946269989, + 0.03362344950437546, + -0.04538726061582565, + -0.08792401850223541, + -0.002277692547068, + 0.0096555445343256, + 0.10950124263763428, + 0.020996248349547386, + -0.12833979725837708, + 0.030283590778708458, + 0.004627148620784283, + -0.03317859768867493, + -0.05586285516619682, + 0.11441097408533096, + -0.07306689023971558, + -0.0520743653178215, + -4.411106377130464e-34, + -0.04981270059943199, + -0.018721191212534904, + 0.02066410705447197, + 0.030208252370357513, + -0.004855448845773935, + 0.033188994973897934, + -0.025694528594613075, + -0.0632941722869873, + 0.07693380862474442, + 0.004318195395171642, + -0.03128603845834732, + 0.057671982795000076, + 0.003926745615899563, + 0.07511021196842194, + 0.036537736654281616, + -0.036189958453178406, + -0.00854412093758583, + 0.022610414773225784, + -0.0021183586213737726, + 0.05160880461335182, + 0.032195091247558594, + -0.04450703784823418, + -0.12704898416996002, + 0.09760840982198715, + 0.09972891211509705, + 0.08393340557813644, + -0.01527461875230074, + -0.07655547559261322, + 0.03124370612204075, + -0.02379707805812359, + 0.03259075805544853, + -0.022727342322468758, + 0.11153234541416168, + 0.03473329171538353, + -0.013372670859098434, + 0.0016966956900432706, + 0.10509239882230759, + -0.04810598865151405, + -0.07249629497528076, + -0.048719994723796844, + -0.039961859583854675, + -0.0040669566951692104, + 0.03523458540439606, + 0.032936014235019684, + -0.023324908688664436, + 0.0024188144598156214, + -0.07764888554811478, + 0.006805882323533297, + 0.04706362262368202, + 0.031462498009204865, + 0.006627535447478294, + -0.017797699198126793, + -0.14553388953208923, + 0.05883510783314705, + -0.050773099064826965, + -0.011548547074198723, + -0.008625837042927742, + -0.011254485696554184, + 0.01732119731605053, + 0.07843506336212158, + -0.04253554344177246, + 0.018216365948319435, + -0.010618246160447598, + 0.05433239787817001, + 0.053944069892168045, + 0.023255113512277603, + -0.005769653711467981, + -0.028772737830877304, + -0.054553110152482986, + 0.011625430546700954, + -0.07014044374227524, + 0.017183804884552956, + -0.05257459357380867, + -0.07157789915800095, + -0.019722172990441322, + -0.03200912103056908, + -0.010360393673181534, + 0.05933034420013428, + 0.005506233777850866, + 0.02340647578239441, + -0.011709406040608883, + -0.0810328796505928, + -0.04720364883542061, + 0.03336651623249054, + -0.1341346800327301, + -0.0083303889259696, + 0.06801004707813263, + -0.009021327830851078, + 0.008629447780549526, + 0.001135109574533999, + -0.022518903017044067, + 0.038460783660411835, + 0.06687875092029572, + -0.036796215921640396, + -0.08602677285671234, + -2.0784403531592943e-08, + 0.06411385536193848, + -0.02310224622488022, + -0.07156255096197128, + -0.0026515526697039604, + 0.013939373195171356, + 0.04376762732863426, + 0.009625657461583614, + -0.030247315764427185, + 0.04356737062335014, + 0.021403081715106964, + 0.06864400207996368, + 0.031576577574014664, + -0.016520094126462936, + -0.058448221534490585, + 0.03159720450639725, + -0.016626963391900063, + -0.07114879786968231, + 0.03366104140877724, + 0.021226957440376282, + 0.03336116299033165, + 0.04203631356358528, + 0.03656287118792534, + 0.04163432493805885, + -0.1365591585636139, + 0.02860514633357525, + -0.025656769052147865, + -0.00677304994314909, + 0.0737990140914917, + 0.004961691331118345, + 0.047291189432144165, + 0.05019699037075043, + 0.019088221713900566, + -0.0037843917962163687, + 0.007003219798207283, + -0.07023608684539795, + 0.0373319610953331, + 0.08850754797458649, + -0.0037008188664913177, + -0.004197610542178154, + 0.09856156259775162, + -0.03692551329731941, + -0.063942551612854, + -0.01739458180963993, + -0.01318997424095869, + -0.03597135469317436, + -0.004295413848012686, + 0.020229175686836243, + -0.025529690086841583, + 0.03821785748004913, + -0.13378824293613434, + -0.07818808406591415, + 0.0034952438436448574, + 0.016017412766814232, + -0.02141144499182701, + 0.045488305389881134, + -0.01120803877711296, + 0.04478108510375023, + 0.06734994798898697, + -0.02887115254998207, + -0.000917305238544941, + 0.04330151900649071, + -0.035673774778842926, + 0.060721807181835175, + 0.024579936638474464 + ], + "dice-four-bold||die,rolling,gamble,gambling,casino,gaming,4": [ + 0.08900511264801025, + -0.019184105098247528, + -0.07607554644346237, + -0.021018972620368004, + -0.0967489629983902, + 0.05815206095576286, + 0.06654570251703262, + -0.044885553419589996, + 0.029752414673566818, + 0.010982820764183998, + -0.011610591784119606, + 0.008755873888731003, + 0.021989872679114342, + -0.05327308177947998, + -0.013362466357648373, + -0.009763087145984173, + -0.06321584433317184, + 0.0400221087038517, + -0.03402531147003174, + 0.013821776024997234, + 0.010861419141292572, + -0.0624680258333683, + -0.0035297537688165903, + -0.03629177808761597, + 0.1006634458899498, + -0.03241674602031708, + -0.014131086878478527, + 0.03636496141552925, + 0.022343207150697708, + -0.0573122464120388, + 0.02563747949898243, + 0.02680344134569168, + 0.04023047909140587, + -0.016668496653437614, + 0.03524359315633774, + -0.060478389263153076, + -0.04978511482477188, + -0.03089088574051857, + -0.019435668364167213, + 0.07740478962659836, + 0.04230785369873047, + -0.02363753318786621, + 0.012686160393059254, + 0.08758318424224854, + 0.04425919055938721, + -0.020485064014792442, + -0.1262189745903015, + -0.020955177024006844, + 0.06473992019891739, + -0.0015619758050888777, + 0.013410193845629692, + -0.05712094530463219, + -0.1251343935728073, + 0.0210077166557312, + 0.04128754511475563, + -0.06980293989181519, + -0.09427516907453537, + 0.015776673331856728, + -0.00044122690451331437, + -0.024309707805514336, + 0.0408693328499794, + 0.037870604544878006, + 0.0007095244945958257, + 0.03213744983077049, + -0.05208060145378113, + 0.03048291988670826, + 0.03597458824515343, + 0.025886615738272667, + -0.0712290108203888, + 0.033688630908727646, + -0.035014934837818146, + 0.0037688487209379673, + -0.013193261809647083, + -0.029738428071141243, + -0.030111411586403847, + -0.013221409171819687, + -0.005031665321439505, + -0.10815586149692535, + -0.03982873260974884, + -0.012538066133856773, + -0.031174669042229652, + -0.03614829108119011, + -0.020280426368117332, + -0.029158880934119225, + 0.016432419419288635, + 0.03380950540304184, + -0.023123348131775856, + -0.06519719958305359, + 0.0872306302189827, + -0.04594951495528221, + -0.05855093523859978, + -0.00633198069408536, + -0.03653384745121002, + 0.015722215175628662, + -0.09170641005039215, + 0.09539978206157684, + 0.047984424978494644, + -0.059986136853694916, + 0.0252545103430748, + 0.06536111235618591, + 0.04928043112158775, + -0.024621520191431046, + -0.03682980313897133, + 0.009683581069111824, + 0.03007432073354721, + 0.0021675974130630493, + -0.03510601446032524, + 0.020931920036673546, + -0.04185040295124054, + -0.012178822420537472, + -0.07293765246868134, + -0.02414013259112835, + 0.06417914479970932, + -0.004431877285242081, + -0.02322915941476822, + 0.02492818795144558, + -0.1319999098777771, + -0.003658753354102373, + 0.042146455496549606, + 0.050316013395786285, + 0.003685133997350931, + 0.11403575539588928, + 0.05068023502826691, + -0.07244429737329483, + -0.021740466356277466, + 0.008360092528164387, + 0.05572827532887459, + -3.431857961277576e-33, + 0.049617551267147064, + -0.0397971011698246, + 0.038092248141765594, + 0.10852251946926117, + 0.035213809460401535, + -0.03948810696601868, + 0.013055774383246899, + -0.01583876460790634, + -0.061968594789505005, + 0.10955872386693954, + 0.0095997778698802, + -0.012632375583052635, + -0.006321018561720848, + 0.08186490833759308, + 0.0922752246260643, + -0.01244039461016655, + 0.025560062378644943, + -0.04958733543753624, + 0.0010810845997184515, + -0.001099218032322824, + -0.07424738258123398, + 0.051518868654966354, + 0.02254427969455719, + -0.03992290794849396, + -0.07045045495033264, + 0.00233991676941514, + -0.04813924431800842, + -0.03232778608798981, + 0.0588780902326107, + 0.044811006635427475, + -0.049784932285547256, + 0.041635747998952866, + 0.002211400307714939, + -0.08785388618707657, + 0.07732068002223969, + 0.061964742839336395, + -0.06886693835258484, + 0.0442870557308197, + -0.07597160339355469, + 0.026875989511609077, + -0.13706131279468536, + -0.03284953162074089, + -0.08190200477838516, + -0.05089365318417549, + 0.004091683775186539, + 0.08192799240350723, + 0.02781016007065773, + -0.0607106052339077, + 0.02291998453438282, + 0.025905614718794823, + -0.017233923077583313, + -0.048522938042879105, + 0.09797076880931854, + 0.03214044123888016, + -0.010454653762280941, + -0.02283809892833233, + 0.013075871393084526, + -0.011490480042994022, + -0.10858409106731415, + 0.006898234132677317, + 0.0290698129683733, + -0.017991652712225914, + -0.016713231801986694, + 0.027369463816285133, + -0.009690355509519577, + 0.09827005118131638, + -0.0024577355943620205, + -0.06607559323310852, + 0.038707930594682693, + 0.016380315646529198, + 0.05504274368286133, + 0.045279648154973984, + 0.012049711309373379, + -0.0479293130338192, + -0.0020521453116089106, + 0.015565754845738411, + 0.04317062720656395, + 0.005235669203102589, + 0.018728967756032944, + -0.08266620337963104, + 0.005898287985473871, + 0.005502990446984768, + -0.07761803269386292, + -0.009275577962398529, + 0.009664642624557018, + 0.08133519440889359, + 0.03499466925859451, + -0.1256631314754486, + 0.049243804067373276, + 0.006740900222212076, + -0.06990321725606918, + -0.03387530893087387, + 0.07150903344154358, + -0.08287692815065384, + -0.04847031831741333, + -3.9727057589912916e-34, + -0.04952814057469368, + 0.049410782754421234, + 0.009687251411378384, + 0.02095342054963112, + -0.0060448856092989445, + 0.037534914910793304, + -0.011574693955481052, + -0.028134766966104507, + 0.07815971970558167, + -0.0062277428805828094, + 0.006009802687913179, + 0.026230528950691223, + 0.010072014294564724, + 0.044299665838479996, + 0.059690702706575394, + -0.03153408318758011, + -0.04587463662028313, + -0.016824893653392792, + -0.0228990837931633, + 0.047875940799713135, + 0.017413126304745674, + -0.02762056514620781, + -0.13431823253631592, + 0.10684771835803986, + 0.10468786954879761, + 0.033920787274837494, + 0.018605714663863182, + -0.06549981236457825, + 0.013369039632380009, + -0.002883482025936246, + 0.028583450242877007, + -0.022171027958393097, + 0.10919756442308426, + 0.06427156180143356, + -0.0504586435854435, + -0.016555441543459892, + 0.13200059533119202, + -0.06193668022751808, + -0.058874137699604034, + -0.05020236596465111, + -0.01038725208491087, + -0.004746612161397934, + 0.04711697995662689, + 0.07046414911746979, + -0.00422468688338995, + 0.006803292315453291, + -0.06597357988357544, + 0.02920672670006752, + 0.05449235811829567, + 0.03670787811279297, + 0.0016814505215734243, + -0.014892686158418655, + -0.13178330659866333, + 0.04079793021082878, + -0.03593230992555618, + -0.025627536699175835, + -0.03229988366365433, + -0.055423494428396225, + -0.006844311486929655, + 0.07162395119667053, + -0.046348124742507935, + -0.030614061281085014, + 0.016025634482502937, + 0.0802524983882904, + 0.05405077338218689, + -0.0005713857826776803, + -0.03852483257651329, + -0.03813854977488518, + -0.05763477832078934, + 0.017358966171741486, + -0.04176842048764229, + 0.014090485870838165, + -0.08411088585853577, + -0.06869877874851227, + -0.00466507812961936, + -0.04142911359667778, + -0.055098481476306915, + 0.027010036632418633, + -0.04393317922949791, + 0.020465578883886337, + -0.03120146319270134, + -0.06838229298591614, + -0.006749227177351713, + 0.009769085794687271, + -0.12066441029310226, + -0.015188570134341717, + 0.07240228354930878, + -0.0020668692886829376, + -0.004968910478055477, + -0.01968083716928959, + -0.001582549070008099, + 0.053307320922613144, + 0.10102631151676178, + 0.001166474656201899, + -0.09370571374893188, + -2.2093681550927613e-08, + 0.04652383178472519, + -0.013399980962276459, + -0.05838512256741524, + 0.002653527772054076, + -0.01966334506869316, + 0.029096947982907295, + 0.014064989052712917, + -0.003951406572014093, + 0.004994578193873167, + -0.00848169531673193, + 0.05707481503486633, + 0.04279360920190811, + -0.03719276189804077, + -0.09487011283636093, + 0.07156249135732651, + -0.002417580923065543, + -0.0907057523727417, + 0.01617472991347313, + -0.021052366122603416, + 0.019156718626618385, + 0.06353610754013062, + 0.033664438873529434, + 0.0023161412682384253, + -0.11713356524705887, + 0.009274561889469624, + 0.020447075366973877, + -0.0008695305441506207, + 0.0885496661067009, + 0.012487879954278469, + 0.06279696524143219, + 0.09586136788129807, + 0.009313434362411499, + 0.02813427522778511, + -0.03666050732135773, + -0.09762079268693924, + -0.02113361284136772, + 0.1040995866060257, + -0.011360551230609417, + 0.03601909801363945, + 0.0979437381029129, + -0.019381092861294746, + -0.05979781597852707, + -0.03180601820349693, + 0.0021638814359903336, + -0.045328207314014435, + 0.02699427492916584, + -8.25799215817824e-05, + -0.025009166449308395, + 0.03253832831978798, + -0.11406038701534271, + -0.07930812984704971, + 0.009920451790094376, + 0.01984318532049656, + 0.004831708036363125, + 0.05761364474892616, + -0.0011841708328574896, + 0.05660688504576683, + 0.09553389996290207, + -0.03228428214788437, + -0.029169432818889618, + 0.057150427252054214, + -0.0323580726981163, + 0.054828330874443054, + 0.026531971991062164 + ], + "dice-one-bold||die,rolling,gamble,gambling,casino,gaming,1": [ + 0.03692078962922096, + -0.048981744796037674, + -0.08010347187519073, + 0.009226556867361069, + -0.0756959468126297, + 0.020347880199551582, + 0.10432134568691254, + -0.04746270924806595, + 0.046065252274274826, + 0.004105445463210344, + -0.01269596815109253, + 0.004637305624783039, + 0.04351401701569557, + -0.07850055396556854, + 0.001712777535431087, + -0.027089925482869148, + -0.06075270473957062, + 0.0003330147301312536, + 0.0022529680281877518, + 0.040929585695266724, + 0.0146994823589921, + -0.02029281109571457, + -0.014803368598222733, + -0.01702890358865261, + 0.10750631988048553, + -0.05664513260126114, + -0.013804811052978039, + 0.0571737140417099, + 0.016860179603099823, + -0.07527517527341843, + 0.01903858594596386, + 0.009628243744373322, + 0.046765781939029694, + 0.028039371594786644, + 0.05237889662384987, + -0.05547914654016495, + -0.05202072858810425, + -0.028671445325016975, + -0.04238535091280937, + 0.05042625591158867, + 0.040306009352207184, + -0.031117767095565796, + 0.013273557648062706, + 0.06711937487125397, + 0.03125767409801483, + -0.05388455092906952, + -0.16081491112709045, + 0.020325588062405586, + 0.02854152023792267, + 0.01475585252046585, + 0.014509165659546852, + -0.06434241682291031, + -0.12225860357284546, + 0.015324300155043602, + 0.06748538464307785, + -0.04315434768795967, + -0.0807412713766098, + 0.03140688315033913, + -0.021670857444405556, + -0.07178797572851181, + -0.009096875786781311, + 0.021026844158768654, + 0.011347715742886066, + 0.021139243617653847, + -0.0321568101644516, + -0.007109225727617741, + 0.04343930631875992, + 0.0012261589290574193, + -0.06386362016201019, + 0.044928427785634995, + -0.05837555229663849, + -0.03306148946285248, + -0.029332607984542847, + -0.011156548745930195, + -0.05289597064256668, + -0.0035476726479828358, + -0.011144842021167278, + -0.08610883355140686, + -0.02693367935717106, + -0.011968259699642658, + -0.0637122243642807, + -0.06637485325336456, + -0.02787872590124607, + -0.026864737272262573, + 0.045292600989341736, + 0.037537768483161926, + -0.007963086478412151, + -0.008851326070725918, + 0.09454447031021118, + -0.05183630809187889, + -0.06706251204013824, + 0.00144491926766932, + 0.007615693379193544, + 0.026546241715550423, + -0.09031005203723907, + 0.09617073833942413, + 0.03970373049378395, + -0.005423968657851219, + 0.004284633789211512, + 0.05924442410469055, + 0.02731318399310112, + -0.0032475318294018507, + 0.005525690503418446, + 0.04453468322753906, + -0.003909991588443518, + 0.007591400295495987, + -0.07080384343862534, + -0.012381168082356453, + -0.003367189783602953, + -0.02845868282020092, + -0.07458289712667465, + -0.04955076426267624, + 0.07288918644189835, + -0.0178296510130167, + -0.01616387628018856, + 0.022399771958589554, + -0.13655896484851837, + 0.033210765570402145, + 0.0706593319773674, + 0.06352114677429199, + 0.0066621373407542706, + 0.07531797885894775, + 0.021875735372304916, + -0.05107280984520912, + -0.05367666110396385, + -0.01696115918457508, + 0.06879546493291855, + -3.8279969861107946e-33, + 0.038439225405454636, + -0.06367671489715576, + -0.008697335608303547, + 0.10724728554487228, + 0.023252462968230247, + -0.01073672529309988, + 0.0026469368021935225, + 0.010270414873957634, + -0.0561504028737545, + 0.10975148528814316, + 0.006976576056331396, + 0.017283817753195763, + -0.004954655654728413, + 0.08694303035736084, + 0.06934233754873276, + 0.014220964163541794, + 0.014927268959581852, + -0.05049125477671623, + -0.02249038964509964, + -0.008999617770314217, + -0.06700874865055084, + 0.06041853874921799, + 0.007675834000110626, + -0.08467888087034225, + -0.07972890883684158, + -0.0381433330476284, + -0.044230781495571136, + -0.020074063912034035, + 0.02999371476471424, + 0.03350723907351494, + -0.03660264611244202, + 0.025838594883680344, + 0.006387357134371996, + -0.05932963639497757, + 0.056058887392282486, + 0.07183241844177246, + -0.04467172175645828, + 0.05878905951976776, + -0.06682030111551285, + 0.017586050555109978, + -0.1361425369977951, + -0.0070617892779409885, + -0.07049807906150818, + -0.050411876291036606, + -0.0004146311548538506, + 0.07429894804954529, + 0.025004519149661064, + -0.04500323906540871, + -0.0025545512326061726, + 0.01429502759128809, + -0.016864009201526642, + -0.0588398203253746, + 0.06866426020860672, + 0.035920608788728714, + -0.001322027761489153, + 0.0014095428632572293, + 0.054613228887319565, + 0.014034059830009937, + -0.11405681073665619, + 0.005987452808767557, + 0.011329530738294125, + -0.038014162331819534, + 0.004757266491651535, + 0.04012499004602432, + -0.03911188989877701, + 0.1357778161764145, + -0.022247234359383583, + -0.03581440821290016, + 0.057413771748542786, + 0.010033163242042065, + 0.044712454080581665, + 0.07804113626480103, + -0.008884947746992111, + -0.053657498210668564, + -0.023985492065548897, + 0.023547928780317307, + 0.04542144015431404, + 0.0036727767437696457, + 0.016151217743754387, + -0.06209446117281914, + -0.004923688247799873, + -0.033593833446502686, + -0.1072835922241211, + 0.002293179975822568, + -0.005664813797920942, + 0.11305014789104462, + 0.01039232686161995, + -0.12395104020833969, + 0.02857847511768341, + 0.007092558313161135, + -0.05385616794228554, + -0.013796304352581501, + 0.07983408868312836, + -0.09062904119491577, + -0.03939028084278107, + -5.929536970303249e-34, + -0.09328047931194305, + 0.01969187520444393, + 0.0037424287293106318, + 0.011972746811807156, + 0.005778245162218809, + 0.04237459599971771, + -0.017344551160931587, + -0.05809865891933441, + 0.09279131889343262, + -0.017346147447824478, + -0.026564892381429672, + 0.03808128833770752, + -0.025369305163621902, + 0.031174037605524063, + 0.04856240749359131, + -0.06362741440534592, + -0.018149761483073235, + 0.024388931691646576, + -0.030649270862340927, + 0.0685281828045845, + -0.008136406540870667, + -0.033570993691682816, + -0.1290702074766159, + 0.11008314043283463, + 0.044948920607566833, + 0.04073943942785263, + -0.004167615901678801, + -0.04967818036675453, + 0.022910619154572487, + 0.007358885835856199, + 0.03910898044705391, + -0.0034605441614985466, + 0.126006618142128, + 0.05598318204283714, + -0.02208465151488781, + 0.015236590057611465, + 0.11561193317174911, + -0.10591370612382889, + -0.03364633396267891, + -0.03409690037369728, + -0.016810987144708633, + -0.015130903571844101, + 0.031321026384830475, + 0.04473631829023361, + 0.004936331883072853, + 0.01702350378036499, + -0.06813298165798187, + -0.009065062738955021, + 0.04537561163306236, + 0.018873343244194984, + -0.018858186900615692, + 0.026346424594521523, + -0.12198643386363983, + 0.046526454389095306, + -0.03717723488807678, + -0.035403285175561905, + -0.030361244454979897, + -0.04100648686289787, + 0.005409167148172855, + 0.06552214175462723, + -0.011020011268556118, + 0.02722795680165291, + -0.035200782120227814, + 0.10483142733573914, + 0.03467833250761032, + -0.013015137054026127, + -0.012322385795414448, + -0.03493419289588928, + -0.0494687594473362, + 0.04055342823266983, + -0.0015503029571846128, + 0.0405244454741478, + -0.05436424911022186, + -0.07930269092321396, + -0.009954782202839851, + -0.04819406941533089, + -0.03779798001050949, + 0.02640756033360958, + -0.015889763832092285, + -0.003256706055253744, + -0.0004950281581841409, + -0.055304959416389465, + -0.052512913942337036, + 0.022691139951348305, + -0.09553078562021255, + 0.002803384093567729, + 0.08782607316970825, + -0.024193810299038887, + -0.02754436433315277, + -0.010216285474598408, + -0.018603280186653137, + 0.05256234109401703, + 0.06981935352087021, + -0.020570926368236542, + -0.10276247560977936, + -2.2340241656593207e-08, + 0.0401020385324955, + -0.04231217876076698, + -0.05942832678556442, + -0.014863929711282253, + 0.013262550346553326, + 0.037303145974874496, + 0.010992707684636116, + -0.029067382216453552, + -0.006159946788102388, + -0.006655700970441103, + 0.06055138260126114, + 0.06509876251220703, + -0.017505701631307602, + -0.08493125438690186, + 0.07046318799257278, + 0.00560422707349062, + -0.07086986303329468, + 0.033345747739076614, + -0.008707348257303238, + 0.05530332028865814, + 0.07401121407747269, + 0.04104388877749443, + 0.03413403034210205, + -0.1740511655807495, + -0.00618209270760417, + -0.009754090569913387, + -0.02847401052713394, + 0.0939200222492218, + 0.030848054215312004, + 0.053087662905454636, + 0.07415572553873062, + 0.00063770153792575, + 0.030196867883205414, + 0.0018484885804355145, + -0.06007099524140358, + 0.003889197949320078, + 0.10309243947267532, + -0.0010963124223053455, + 0.028755957260727882, + 0.08295159786939621, + -0.0058858017437160015, + -0.04423682019114494, + -0.025817375630140305, + -0.006142582278698683, + -0.020342348143458366, + 0.0444687195122242, + 0.031946126371622086, + -0.04416729882359505, + -0.004092823248356581, + -0.12978783249855042, + -0.05325787141919136, + 0.010707530193030834, + 0.02870922163128853, + -0.016829175874590874, + 0.03495713323354721, + -0.00459737703204155, + 0.035377539694309235, + 0.10628116130828857, + -0.015574520453810692, + 0.0011750987032428384, + 0.06153041496872902, + -0.035652849823236465, + 0.06746599823236465, + 0.021071018651127815 + ], + "dice-six-bold||die,rolling,gamble,gambling,casino,gaming,6": [ + 0.04370234161615372, + -0.0339694507420063, + -0.09199763834476471, + -0.005401832051575184, + -0.08980600535869598, + 0.056796666234731674, + 0.055471599102020264, + -0.04051133245229721, + 0.025961436331272125, + 0.01732555963099003, + -0.032395943999290466, + 0.04579589515924454, + -0.018624786287546158, + -0.09889702498912811, + 0.016468001529574394, + -0.025240741670131683, + -0.0666717067360878, + 0.0361926443874836, + -0.04581654444336891, + 0.06631495803594589, + -0.0009038583375513554, + -0.019443068653345108, + 0.0020105058792978525, + -0.035450249910354614, + 0.13096578419208527, + -0.06281024217605591, + 0.007578739430755377, + 0.06653986871242523, + 0.03033309616148472, + -0.035801250487565994, + 0.0004795536515302956, + 0.057155247777700424, + 0.029111694544553757, + 0.010941957123577595, + 0.05257214233279228, + -0.0337454155087471, + -0.061121709644794464, + -0.0273281242698431, + -0.03375853970646858, + 0.04091538116335869, + 0.014975465834140778, + -0.03502807766199112, + 0.018836118280887604, + 0.036029964685440063, + 0.04592418298125267, + -0.044868193566799164, + -0.14909791946411133, + 0.021896537393331528, + 0.06059117242693901, + -0.0010028621181845665, + 0.007734016980975866, + -0.08198618143796921, + -0.11636292189359665, + 0.013038367964327335, + 0.057636942714452744, + -0.05648396536707878, + -0.10001560300588608, + -0.012610863894224167, + 0.006982108578085899, + -0.043292026966810226, + -0.02222915180027485, + 0.05069597437977791, + 0.021802514791488647, + 0.05211193859577179, + -0.042764145880937576, + 0.007713384926319122, + 0.026108430698513985, + 0.030824201181530952, + -0.05256978049874306, + 0.032314177602529526, + -0.06749030202627182, + -0.008127212524414062, + -0.00464487262070179, + -0.04436057060956955, + -0.05689229816198349, + 0.007639752235263586, + -0.030850360170006752, + -0.11540576815605164, + -0.02407882735133171, + -0.02977794036269188, + -0.049283649772405624, + -0.05329279601573944, + -0.03345530107617378, + 0.018451469019055367, + 0.01913449913263321, + 0.001984375761821866, + 0.005135481711477041, + -0.0017153299413621426, + 0.05218697339296341, + -0.04194356128573418, + -0.02533549815416336, + 0.00840719323605299, + -0.02974603697657585, + -0.015909090638160706, + -0.11811807751655579, + 0.09484177827835083, + 0.025297289714217186, + -0.019882164895534515, + 0.009458204731345177, + 0.05700649321079254, + 0.06236686557531357, + -0.013168955221772194, + -0.01734168827533722, + 0.013964825309813023, + 0.04090297222137451, + 0.020961275324225426, + -0.07246720045804977, + 0.041269451379776, + -0.03886217251420021, + -0.028950093314051628, + -0.09072589129209518, + -0.02455952763557434, + 0.0708463117480278, + -0.008778555318713188, + 0.0038220135029405355, + 0.019299689680337906, + -0.13517415523529053, + 0.013465221971273422, + 0.05896805599331856, + 0.06292697787284851, + 0.02427915669977665, + 0.1203402727842331, + 0.021353913471102715, + -0.025676654651761055, + -0.04874880611896515, + 0.011852906085550785, + 0.09542441368103027, + -3.645619772264686e-33, + 0.010188977234065533, + -0.06545569747686386, + 0.028576524928212166, + 0.09972940385341644, + 0.024845900014042854, + -0.0357792004942894, + 0.022663135081529617, + -0.028302596881985664, + -0.07380004972219467, + 0.11957155913114548, + 0.0025618558283895254, + 0.005127626936882734, + -0.008564400486648083, + 0.07462629675865173, + 0.12566986680030823, + 0.006509515456855297, + 0.022402426227927208, + -0.03484596684575081, + -0.018703322857618332, + -0.0065941778011620045, + -0.04580169543623924, + 0.030698470771312714, + 0.032965414226055145, + -0.07708990573883057, + -0.07444155216217041, + 0.002158477669581771, + -0.049738992005586624, + -0.007496396079659462, + 0.01817793771624565, + 0.02512548305094242, + -0.031288158148527145, + 0.04312010481953621, + 0.0588756762444973, + -0.05103474482893944, + 0.06034347042441368, + 0.06508906185626984, + -0.06254991143941879, + 0.051607582718133926, + -0.0726151093840599, + 0.017694704234600067, + -0.07085233181715012, + -0.012681759893894196, + -0.1253117173910141, + -0.001359915011562407, + 0.0017673270776867867, + 0.08233331888914108, + 0.05083831027150154, + -0.07513421028852463, + 0.021479399874806404, + 0.018643422052264214, + -0.03382278233766556, + -0.06336406618356705, + 0.08963147550821304, + 0.019693981856107712, + 0.022506089881062508, + 0.0040202937088906765, + 0.026195796206593513, + 0.023432493209838867, + -0.09448682516813278, + 0.02767878584563732, + 0.016540037468075752, + -0.04759851098060608, + 0.005115222185850143, + 0.04555096477270126, + -0.046794991940259933, + 0.10055146366357803, + -0.0020384518429636955, + -0.022059500217437744, + 0.026503480970859528, + 0.017052553594112396, + 0.022871412336826324, + 0.08327902853488922, + -0.005280658602714539, + -0.02398006245493889, + -0.017795443534851074, + 0.02937202714383602, + 0.03680587559938431, + -0.0022112452425062656, + -0.01635962910950184, + -0.08123620599508286, + 0.060456570237874985, + -0.008956761099398136, + -0.0829441249370575, + -0.006109492387622595, + -0.009088337421417236, + 0.10209053009748459, + -0.016877345740795135, + -0.12150903046131134, + 0.021082120016217232, + 0.009612801484763622, + -0.028206219896674156, + -0.057591281831264496, + 0.048520077019929886, + -0.06762009114027023, + -0.03178844973444939, + -5.3449659255267294e-34, + -0.05561986193060875, + 0.02256401628255844, + 0.04253363981842995, + 0.0027445624582469463, + 0.018430158495903015, + 0.030221663415431976, + 0.020671946927905083, + -0.04927777871489525, + 0.06391385197639465, + -0.04365929588675499, + -0.04916580393910408, + 0.05450563132762909, + 0.01605842635035515, + 0.044606853276491165, + 0.033144738525152206, + -0.05159803852438927, + -0.005270876921713352, + 0.033279843628406525, + 0.02306666225194931, + 0.029977014288306236, + 0.00367164658382535, + -0.05520632117986679, + -0.16470301151275635, + 0.07927757501602173, + 0.07427370548248291, + 0.05087227374315262, + -0.012762428261339664, + -0.08526726067066193, + 0.018113667145371437, + -0.016492292284965515, + 0.04328538104891777, + -0.0182016734033823, + 0.11251987516880035, + 0.04338632524013519, + -0.016288157552480698, + 0.004027306102216244, + 0.11145339906215668, + -0.07462034374475479, + -0.058761317282915115, + -0.04273609071969986, + -0.01058602798730135, + -0.018300430849194527, + 0.023227186873555183, + 0.011306838132441044, + 0.006716716103255749, + -0.014344471506774426, + -0.05722908675670624, + -0.0003665439726319164, + 0.03483971953392029, + 0.0520990826189518, + 0.010868732817471027, + -0.0295476745814085, + -0.1095602810382843, + 0.0778193548321724, + -0.03621497377753258, + -0.04156564921140671, + -0.012751682661473751, + -0.07186080515384674, + 0.011950794607400894, + 0.07262732833623886, + -0.015620251186192036, + 0.012607645243406296, + -0.04442507401108742, + 0.0564504936337471, + 0.02809237688779831, + 0.030935013666749, + 0.0073031531646847725, + -0.02187786065042019, + -0.061798032373189926, + 0.007918398827314377, + -0.03394894301891327, + 0.032691750675439835, + -0.08527716994285583, + -0.0944986641407013, + -0.005872474517673254, + -0.04858269914984703, + -0.02458481304347515, + 0.06305794417858124, + 0.002078654710203409, + 0.016501352190971375, + -0.02587718702852726, + -0.062309782952070236, + -0.0522155687212944, + 0.06407249718904495, + -0.10451920330524445, + 0.010134048759937286, + 0.09099239856004715, + -0.03540068492293358, + -0.0378519669175148, + -0.005621191114187241, + -0.017456982284784317, + 0.015339922159910202, + 0.07419572025537491, + -0.040882740169763565, + -0.07881458103656769, + -2.1562653884643623e-08, + 0.07027801871299744, + -0.07345028966665268, + -0.06260181963443756, + -0.023377621546387672, + 0.04737256467342377, + 0.026926804333925247, + 0.025813467800617218, + 8.340866042999551e-05, + -0.03549337387084961, + -0.00046860333532094955, + 0.07191156595945358, + 0.029274718835949898, + -0.002535240724682808, + -0.11242449283599854, + 0.028175491839647293, + -0.031099027022719383, + -0.0687875971198082, + 0.04625182971358299, + -0.01799147017300129, + 0.038243990391492844, + 0.06900501251220703, + 0.041852645576000214, + 0.04315826669335365, + -0.11594201624393463, + 0.022444218397140503, + -0.004006635397672653, + -0.02044844627380371, + 0.08351214975118637, + 0.01253580767661333, + 0.05764950066804886, + 0.07041794061660767, + -0.018830323591828346, + -0.012505786493420601, + 0.0028956637252122164, + -0.0644766315817833, + 0.03774566203355789, + 0.10984306037425995, + -0.03488316014409065, + 0.00099562993273139, + 0.07825110852718353, + -0.02288668602705002, + -0.06690649688243866, + -0.021564578637480736, + -0.02285371534526348, + -0.039208509027957916, + 0.03373216092586517, + 0.006420779041945934, + -0.01926739141345024, + 0.008579744957387447, + -0.09515425562858582, + -0.057437434792518616, + -0.0005673818523064256, + 0.012678495608270168, + -0.023901842534542084, + 0.04596798121929169, + -0.009738435037434101, + 0.049090828746557236, + 0.06607408076524734, + -0.03818988800048828, + 0.018391883000731468, + 0.07716338336467743, + -0.034528616815805435, + 0.07720144838094711, + 0.012175225652754307 + ], + "dice-three-bold||die,rolling,gamble,gambling,casino,gaming,3": [ + 0.034034229815006256, + -0.07139067351818085, + -0.11708075553178787, + -0.025466367602348328, + -0.07612987607717514, + 0.0289732925593853, + 0.07232140749692917, + -0.06784491240978241, + 0.04546651244163513, + 0.010027771815657616, + -0.008366052061319351, + -0.017934856936335564, + 0.011725765652954578, + -0.06512381881475449, + 0.04918566718697548, + -0.03939894586801529, + -0.06643852591514587, + 0.048893753439188004, + -0.005823397543281317, + 0.01835702359676361, + 0.04503164812922478, + -0.028815144672989845, + 0.02001701295375824, + -0.009509320370852947, + 0.12136543542146683, + -0.015524283982813358, + -0.0025083692744374275, + 0.04431114345788956, + 0.006608949508517981, + -0.052090153098106384, + 0.008304568007588387, + 0.004393228329718113, + 0.04359175264835358, + -0.022547855973243713, + 0.05419623479247093, + -0.07688368111848831, + -0.1078631579875946, + -0.032858945429325104, + -0.06635436415672302, + 0.08006899058818817, + 0.024143414571881294, + -0.014511754736304283, + 0.014639008790254593, + 0.05522024258971214, + 0.04326462373137474, + -0.027836792171001434, + -0.17182575166225433, + -0.029467307031154633, + 0.06629139184951782, + -0.00026294260169379413, + 0.002909539034590125, + -0.07603337615728378, + -0.11290658265352249, + 0.0253712460398674, + 0.04488983005285263, + -0.06342601031064987, + -0.062260739505290985, + 0.040199171751737595, + -0.016229301691055298, + -0.052264805883169174, + 2.8090666091884486e-05, + 0.060105424374341965, + 0.006483027245849371, + 0.013634194619953632, + -0.007284412160515785, + 0.0021954358089715242, + 0.0056035700254142284, + -0.006094967480748892, + -0.07300826907157898, + 0.06074255704879761, + -0.06291712820529938, + -0.028080491349101067, + -0.030778540298342705, + -0.041885603219270706, + -0.022846221923828125, + 0.013108606450259686, + 0.012289861217141151, + -0.0742218866944313, + -0.07287069410085678, + -0.03175662085413933, + -0.027911053970456123, + -0.052168652415275574, + -0.018903952091932297, + 0.04964229837059975, + 0.012734025716781616, + 0.006156555842608213, + -0.06176545470952988, + -0.011660178191959858, + 0.042294684797525406, + -0.023821044713258743, + -0.07732050120830536, + 0.005263954866677523, + -0.036793991923332214, + 0.040148962289094925, + -0.07865016162395477, + 0.10822682082653046, + 0.034178804606199265, + -0.039187874644994736, + 0.00067217240575701, + 0.06789355725049973, + 0.058122292160987854, + 0.0011396604822948575, + 0.015052649192512035, + 0.015955256298184395, + 0.028709175065159798, + 0.034365564584732056, + -0.08223829418420792, + 0.0002619126171339303, + -0.053388603031635284, + 0.001155354781076312, + -0.0788816288113594, + -0.032988015562295914, + 0.058917343616485596, + -0.03194233030080795, + -0.03542480245232582, + 0.060726143419742584, + -0.11094135791063309, + -0.003494489472359419, + 0.09240711480379105, + 0.06101567670702934, + 0.030304480344057083, + 0.08475999534130096, + 0.018531672656536102, + -0.07802699506282806, + -0.04308948665857315, + 0.007291426416486502, + 0.07950891554355621, + -3.36744050351053e-33, + 0.019443901255726814, + -0.06064257398247719, + -0.018682826310396194, + 0.12492725998163223, + 0.02355610579252243, + -0.02222922071814537, + -0.003727272152900696, + -0.021950319409370422, + -0.06021975353360176, + 0.10168655961751938, + 0.011038998141884804, + -0.002754416549578309, + 0.010001450777053833, + 0.07384863495826721, + 0.08227343112230301, + 0.003148880088701844, + -0.00576256075873971, + -0.04009289667010307, + -0.022517278790473938, + 0.0018859204137697816, + -0.029993154108524323, + 0.027575591579079628, + 0.022356491535902023, + -0.05941375717520714, + -0.06392651796340942, + -0.02578306756913662, + -0.06150539964437485, + -0.029388578608632088, + 0.04684028401970863, + 0.02988826297223568, + 0.029583238065242767, + 0.020067397505044937, + 0.019384747371077538, + -0.06269833445549011, + 0.06034565344452858, + 0.07190518826246262, + -0.06706755608320236, + 0.017356587573885918, + -0.08964068442583084, + 0.06715786457061768, + -0.10892272740602493, + -0.023342598229646683, + -0.060412853956222534, + -0.03181866183876991, + -0.006687172222882509, + 0.10568232089281082, + 0.04904269799590111, + -0.06970804184675217, + 0.017957061529159546, + 0.010719530284404755, + 0.017201757058501244, + -0.06068838760256767, + 0.09034843742847443, + 0.04086907580494881, + 0.006482262630015612, + 0.0010109581053256989, + 0.025118546560406685, + 0.01786576397716999, + -0.08404600620269775, + -0.004556749947369099, + -0.009115057997405529, + -0.029977064579725266, + 0.022603696212172508, + 0.037892840802669525, + -0.04122956469655037, + 0.1337622106075287, + -0.041937440633773804, + -0.012188807129859924, + 0.06390196830034256, + 0.02669183723628521, + 0.024106420576572418, + 0.06298022717237473, + -0.001653417944908142, + -0.024486182257533073, + -0.017904074862599373, + 0.02110431157052517, + 0.019087955355644226, + 0.015074014663696289, + 0.022505082190036774, + -0.09205149114131927, + 0.021344522014260292, + -0.02529698796570301, + -0.07329516112804413, + 0.024600734934210777, + -0.010589850135147572, + 0.0845128521323204, + 0.00177682691719383, + -0.14523561298847198, + 0.023340435698628426, + -0.01294897124171257, + -0.056850776076316833, + -0.008969975635409355, + 0.0992441400885582, + -0.06279169023036957, + -0.050670456141233444, + -5.4393507750580665e-34, + -0.05680463835597038, + 0.026538610458374023, + 0.02879343181848526, + -0.007958614267408848, + 0.003945481032133102, + 0.027825992554426193, + -0.033010631799697876, + -0.020181462168693542, + 0.08083463460206985, + -0.02308698557317257, + -0.020096004009246826, + 0.035725053399801254, + 0.018857767805457115, + 0.016917424276471138, + 0.06210801377892494, + -0.048991117626428604, + -0.018120592460036278, + -0.0111232353374362, + -0.0179939866065979, + 0.05003669485449791, + 0.04480992257595062, + -0.04549109935760498, + -0.1403660774230957, + 0.10493019968271255, + 0.04629260674118996, + 0.04071411117911339, + -0.015825705602765083, + -0.08253900706768036, + 0.01021475251764059, + 0.008585714735090733, + 0.02889079414308071, + -0.019959615543484688, + 0.11970256268978119, + 0.054789360612630844, + -0.02355622872710228, + 0.01002067793160677, + 0.12917110323905945, + -0.07454429566860199, + -0.05596640333533287, + -0.04491997882723808, + -0.02011004462838173, + -0.0010789681691676378, + 0.04991801083087921, + 0.05443425104022026, + -0.003017841838300228, + 0.05362382531166077, + -0.054373372346162796, + -0.0017625022446736693, + 0.05424892157316208, + 0.053628645837306976, + -0.021806249395012856, + -0.038268864154815674, + -0.0988708958029747, + 0.06265012919902802, + -0.015709761530160904, + -0.019380630925297737, + -0.023983420804142952, + -0.07402164489030838, + 0.027352964505553246, + 0.06630411744117737, + -0.02796424925327301, + 0.012375117279589176, + -0.0005819533253088593, + 0.07214432209730148, + 0.03492056950926781, + 0.01986241154372692, + -0.04247376695275307, + -0.031503353267908096, + -0.023372620344161987, + 0.0409780777990818, + -0.05094139650464058, + 0.036316320300102234, + -0.06997933238744736, + -0.07572513073682785, + -0.007248753681778908, + -0.055985186249017715, + -0.05116727203130722, + 0.07646723836660385, + -0.019761720672249794, + -0.002528125187382102, + 0.014631740748882294, + -0.06859590113162994, + -0.010334541089832783, + 0.04310871660709381, + -0.11070913821458817, + -0.007966077886521816, + 0.05944526568055153, + -0.012741119600832462, + -0.030275320634245872, + -0.049082040786743164, + -0.025404343381524086, + 0.056513410061597824, + 0.08311963826417923, + 0.009062401950359344, + -0.07167170196771622, + -2.1371054259589073e-08, + 0.060121793299913406, + -0.021293487399816513, + -0.07488226890563965, + -3.711793397087604e-05, + -0.004532244522124529, + 0.03729665279388428, + 0.022548938170075417, + 0.013555637560784817, + -0.011744464747607708, + 0.008915543556213379, + 0.05593794956803322, + 0.026950711384415627, + -0.012527825310826302, + -0.10427436977624893, + 0.06399331241846085, + -0.005436060484498739, + -0.044323086738586426, + 0.03336900845170021, + -0.012092330493032932, + 0.018642481416463852, + 0.042823776602745056, + 0.04872002825140953, + 0.036677613854408264, + -0.1248537078499794, + 0.02378389798104763, + 0.03299495577812195, + -0.031379904597997665, + 0.0753634050488472, + 0.003564045298844576, + 0.07940436899662018, + 0.06296692043542862, + 0.002453963737934828, + 0.02774081379175186, + 0.0112637123093009, + -0.08930566161870956, + -0.01611906848847866, + 0.0732700452208519, + -0.022779366001486778, + 0.026035694405436516, + 0.06288458406925201, + -0.004745942540466785, + -0.017125070095062256, + -0.03346331790089607, + -0.0046927728690207005, + -0.032804936170578, + 0.0050477380864322186, + 0.009701089933514595, + -0.01614738442003727, + 0.004146241117268801, + -0.14055119454860687, + -0.059373680502176285, + -0.025577474385499954, + 0.024444907903671265, + 0.012572390958666801, + 0.05915997922420502, + -0.023302091285586357, + 0.01228200551122427, + 0.0923122838139534, + -0.041043005883693695, + -0.00786204356700182, + 0.06345991045236588, + -0.06345745176076889, + 0.05807014927268028, + 0.03250741958618164 + ], + "dice-two-bold||die,rolling,gamble,gambling,casino,gaming,2": [ + 0.05118803307414055, + -0.05485089495778084, + -0.06701117753982544, + 0.006685228552669287, + -0.07786731421947479, + 0.016849162057042122, + 0.05905492603778839, + -0.025618156418204308, + 0.026556983590126038, + 0.006699195597320795, + -0.00011441122478572652, + -0.013069887645542622, + 0.016634011641144753, + -0.08173097670078278, + 0.029614364728331566, + -0.009323326870799065, + -0.07409694045782089, + 0.015232974663376808, + 0.01524768490344286, + 0.028229424729943275, + 0.05053768306970596, + -0.03910756856203079, + -0.006210561376065016, + -0.042704273015260696, + 0.10077732801437378, + -0.010283398441970348, + -0.04587361961603165, + 0.07581433653831482, + 0.017999013885855675, + -0.06610643118619919, + 0.041301630437374115, + 0.009680929593741894, + 0.009471573866903782, + 0.005519089754670858, + 0.0419304259121418, + -0.11261744052171707, + -0.0409010611474514, + -0.00458330474793911, + -0.060419149696826935, + 0.020812584087252617, + 0.04575829207897186, + -0.029275961220264435, + -0.0009084016783162951, + 0.06959805637598038, + 0.06283681094646454, + -0.03303668275475502, + -0.13154102861881256, + 0.004009248688817024, + 0.03199212998151779, + 0.023266104981303215, + -0.007048663217574358, + -0.07969082146883011, + -0.11615725606679916, + 0.01675216108560562, + 0.08465920388698578, + -0.014630306512117386, + -0.07274381071329117, + 0.04729600250720978, + -0.018138941377401352, + -0.06521855294704437, + 0.012343831360340118, + 0.048578012734651566, + -0.016170194372534752, + 0.028858337551355362, + -0.04015715792775154, + -0.01590035669505596, + 0.026216305792331696, + 0.004216133616864681, + -0.07500620186328888, + 0.04905886948108673, + -0.05826045200228691, + -0.017851095646619797, + -0.006616008467972279, + -0.04182169586420059, + -0.01053385529667139, + -0.025447549298405647, + -0.036840688437223434, + -0.0927274227142334, + -0.045278437435626984, + -0.04984338954091072, + -0.038651034235954285, + -0.0833771824836731, + -0.009131716564297676, + -0.003364201867952943, + 0.015611130744218826, + 0.02147507667541504, + -0.02407635934650898, + -0.020197391510009766, + 0.06343405693769455, + -0.04992428794503212, + -0.042131513357162476, + 0.008954945020377636, + 0.0266735702753067, + 0.033575065433979034, + -0.0793323740363121, + 0.09364444762468338, + 0.03915531560778618, + 0.00995661597698927, + 0.0023185473401099443, + 0.06754011660814285, + 0.015117434784770012, + -0.027736930176615715, + -0.006922145839780569, + -0.008714641444385052, + 0.04266440123319626, + -0.015702608972787857, + -0.09197206795215607, + -0.024848492816090584, + 0.014529706910252571, + -0.03848198801279068, + -0.026446521282196045, + -0.000913396361283958, + 0.06606174260377884, + -0.0219228807836771, + 0.002196172485128045, + 0.07273835688829422, + -0.10523553192615509, + 0.04867938905954361, + 0.0818476527929306, + 0.045729562640190125, + 0.012214705348014832, + 0.07418173551559448, + 0.013752870261669159, + -0.08017078787088394, + -0.053658775985240936, + -0.0201139934360981, + 0.05965804308652878, + -4.0758444598519045e-33, + 0.01490179542452097, + -0.07441606372594833, + -0.009190102107822895, + 0.1386961191892624, + 0.02658693864941597, + -0.03074280358850956, + -0.020380215719342232, + -0.01140743400901556, + -0.045631662011146545, + 0.10197796672582626, + 0.010652998462319374, + -0.023979678750038147, + 0.001479596015997231, + 0.10212820023298264, + 0.10435869544744492, + -0.022743158042430878, + 0.04493560642004013, + -0.05282086506485939, + 0.0272227693349123, + -0.00010631418990669772, + -0.06192430853843689, + 0.08350957930088043, + 0.032644931226968765, + -0.05651456490159035, + -0.04654056206345558, + -0.033346910029649734, + -0.041385989636182785, + -0.04626127704977989, + 0.06305290013551712, + 0.04976929351687431, + -0.011278199031949043, + 0.0014817574992775917, + 0.015523687936365604, + -0.026204286143183708, + 0.07208994030952454, + 0.04095851629972458, + -0.060106292366981506, + 0.05823732540011406, + -0.0746958777308464, + 0.01738297939300537, + -0.11780189722776413, + -0.011347603052854538, + -0.064085952937603, + -0.04405516758561134, + -0.002960147801786661, + 0.03497825562953949, + 0.03948790207505226, + -0.06748832762241364, + 0.035534534603357315, + -0.002776526613160968, + -0.02920878864824772, + -0.0600648932158947, + 0.07860342413187027, + 0.06500358879566193, + 0.010044826194643974, + 0.012657294981181622, + 0.05792209878563881, + 0.008259948343038559, + -0.09647516906261444, + 0.025639059022068977, + 0.003935051616281271, + -0.01167148444801569, + 0.020349720492959023, + 0.02693812921643257, + -0.05153529345989227, + 0.13240589201450348, + -0.04877438768744469, + -0.04237211123108864, + 0.03960748761892319, + 0.045094557106494904, + 0.046001333743333817, + 0.06561675667762756, + 0.03688814118504524, + -0.05007723346352577, + -0.002254362218081951, + 0.004041819367557764, + 0.0673489049077034, + -0.0021049976348876953, + 0.0561060756444931, + -0.058044902980327606, + 0.009721755981445312, + -0.02291429042816162, + -0.0921740010380745, + 0.006800822447985411, + -0.01534476038068533, + 0.0845106914639473, + -0.023784885182976723, + -0.12356805056333542, + 0.0033186653163284063, + 0.03852449730038643, + -0.07954181730747223, + -0.0034791515208780766, + 0.04569979012012482, + -0.094723641872406, + 0.0026631206274032593, + -8.031581682382588e-34, + -0.08339229226112366, + 0.04005482420325279, + 0.01958916150033474, + 0.011136356741189957, + 0.003734291298314929, + 0.025115642696619034, + -0.012002844363451004, + -0.06660134345293045, + 0.09743824601173401, + -0.022218139842152596, + 0.0064096758142113686, + 0.045959580689668655, + 0.008373657241463661, + 0.04655852168798447, + 0.063019759953022, + -0.08558882027864456, + -0.026190904900431633, + 0.02113385871052742, + -0.005335712805390358, + 0.04190731421113014, + 0.022086823359131813, + -0.033782392740249634, + -0.11593508720397949, + 0.10056788474321365, + 0.08235909789800644, + 0.03461150452494621, + -0.0021571170073002577, + -0.06495385617017746, + 0.004961277358233929, + 0.012310491874814034, + 0.030272599309682846, + -0.0040590702556073666, + 0.12316261976957321, + 0.05847042053937912, + -0.020264165475964546, + -0.018362609669566154, + 0.11513201147317886, + -0.10546945035457611, + -0.08142872899770737, + -0.039746008813381195, + -0.030787186697125435, + -0.0041898577474057674, + 0.047831516712903976, + 0.07357306778430939, + 0.006314245518296957, + -8.21810681372881e-05, + -0.043904129415750504, + -0.010393241420388222, + 0.03821317106485367, + -0.017601000145077705, + -0.018173476681113243, + -0.002884484827518463, + -0.14679844677448273, + 0.06840964406728745, + -0.047816209495067596, + -0.04292501509189606, + -0.06550031155347824, + -0.026270300149917603, + 0.02982744574546814, + 0.06048380210995674, + -0.0003265616833232343, + 0.004782636649906635, + -0.04230070114135742, + 0.06925299018621445, + 0.04242076724767685, + -0.01911666803061962, + -0.03756723925471306, + -0.023382259532809258, + -0.05967586487531662, + 0.0475165918469429, + -0.03196984529495239, + 0.026049558073282242, + -0.07148117572069168, + -0.07990916073322296, + -0.042246293276548386, + -0.044698964804410934, + -0.05594456195831299, + 0.03609227389097214, + -0.007875542156398296, + -0.014785528182983398, + -0.003761936677619815, + -0.06569298356771469, + -0.009825286455452442, + 0.03726577013731003, + -0.11996539682149887, + -0.02629357948899269, + 0.05995903164148331, + -0.012428956106305122, + -0.04375428333878517, + -0.04106738045811653, + -0.020275114104151726, + 0.058790575712919235, + 0.07286003977060318, + 0.002417226554825902, + -0.09473751485347748, + -2.3414115091213716e-08, + 0.03377823531627655, + -0.07126150280237198, + -0.04957650974392891, + -0.020330756902694702, + 0.010773166082799435, + 0.022992363199591637, + -0.01395853329449892, + 0.018351202830672264, + 0.002874520607292652, + -0.009184173308312893, + 0.026072558015584946, + 0.06879766285419464, + -0.006509758997708559, + -0.10248687863349915, + 0.05511479824781418, + 0.02287260629236698, + -0.037789106369018555, + 0.040296770632267, + -0.023986905813217163, + 0.02531169354915619, + 0.07207906991243362, + 0.025560686364769936, + 0.01579570397734642, + -0.13353168964385986, + -0.03214515745639801, + 0.012583643198013306, + -0.031945131719112396, + 0.07152961939573288, + 0.02045089192688465, + 0.05078905075788498, + 0.07991965115070343, + -0.015833858400583267, + 0.026558831334114075, + -0.018456166610121727, + -0.07203441113233566, + -0.02377537079155445, + 0.08417980372905731, + -0.027701683342456818, + 0.03967266157269478, + 0.07090633362531662, + 0.002335404511541128, + -0.029017744585871696, + -0.019536243751645088, + 0.025743011385202408, + -0.004056832287460566, + 0.021375801414251328, + 0.046228691935539246, + -0.027755193412303925, + -0.0020352459978312254, + -0.146075040102005, + -0.03751896321773529, + -0.004862618632614613, + 0.02491854876279831, + -0.0031620454974472523, + 0.031419720500707626, + -0.002477691974490881, + 0.012509678490459919, + 0.11692984402179718, + -0.037515077739953995, + -0.0021083615720272064, + 0.07537703961133957, + -0.03084852360188961, + 0.058340877294540405, + 0.018224231898784637 + ], + "disc-bold||cd-rom,compact disk,album,record": [ + 0.03972988948225975, + 0.05212964117527008, + -0.06314048916101456, + -0.01697039231657982, + -0.023225577548146248, + -0.016948916018009186, + 0.0713176503777504, + 0.03411758691072464, + 0.022073592990636826, + 0.0006397239048965275, + 0.07397858053445816, + 0.03886733949184418, + 0.04479845240712166, + -0.0499243400990963, + -0.01546903233975172, + 0.0010475895833224058, + -0.02337571047246456, + 0.024924159049987793, + 0.041822221130132675, + -0.01996728591620922, + 0.026523318141698837, + 0.05881175771355629, + 0.024956975132226944, + 0.0004023485234938562, + -0.029122570529580116, + -0.01909986324608326, + 0.018535282462835312, + 0.0746106281876564, + 0.028721775859594345, + -0.04138324782252312, + 0.017206832766532898, + 0.05288223922252655, + 0.08217591792345047, + 0.03157341480255127, + 0.12596996128559113, + -0.04697391390800476, + -0.04912706837058067, + 0.014750060625374317, + -0.04410509392619133, + -0.034218885004520416, + 0.04048718512058258, + -0.005400294438004494, + 0.029565786942839622, + 0.02576739341020584, + -0.09929663687944412, + -0.03120187111198902, + -0.10486836731433868, + 0.006735411938279867, + -0.001468232017941773, + -0.028802990913391113, + 0.0023332906421273947, + -0.013707619160413742, + -0.07853952050209045, + 0.0391242690384388, + 0.003325221361592412, + -0.02058658003807068, + -0.019400235265493393, + 0.042963024228811264, + 0.041811782866716385, + 0.004747076891362667, + -0.012780697084963322, + -0.03722246736288071, + -0.006120035890489817, + 0.01671997830271721, + 0.013718041591346264, + -0.01945246383547783, + -0.008916337974369526, + 0.033025894314050674, + -0.06085200235247612, + 0.03437373414635658, + 0.06052212789654732, + 0.041174765676259995, + 0.012910107150673866, + -0.006826761178672314, + -0.02210826799273491, + -0.05020127817988396, + -0.01926259882748127, + 0.0028377887792885303, + -0.08924230933189392, + -0.048524532467126846, + -0.06495797634124756, + 0.017886631190776825, + 0.0016098604537546635, + -0.05814120173454285, + 0.024979643523693085, + 0.08045056462287903, + -0.054051581770181656, + -0.058906130492687225, + -0.08023998141288757, + -0.05753621831536293, + -0.020026985555887222, + -0.03377869352698326, + -0.016357101500034332, + -0.02256966568529606, + -0.15920878946781158, + -0.025629546493291855, + 0.08650517463684082, + -0.045787084847688675, + -0.029662175104022026, + 0.0764651894569397, + 0.053593605756759644, + 0.05470634624361992, + 0.013015083968639374, + -0.020500434562563896, + -0.044038403779268265, + -0.07332319766283035, + 0.04669143632054329, + 0.009463679976761341, + -0.03653284162282944, + -0.012461756356060505, + -0.05772672966122627, + -0.07037422060966492, + -0.07685061544179916, + -0.023449420928955078, + -0.011086619459092617, + -0.07587116956710815, + -0.021101389080286026, + 0.07176614552736282, + 0.013545447029173374, + -0.034308385103940964, + -0.01670221984386444, + -0.10998520255088806, + -0.049271609634160995, + -0.09878279268741608, + 0.02458212710916996, + -0.052868399769067764, + 0.131447434425354, + -1.2132976981317553e-33, + 0.08095275610685349, + 0.02606225199997425, + -0.045011021196842194, + 0.056354131549596786, + -0.006518698297441006, + -0.030667129904031754, + -0.007915027439594269, + 0.022280754521489143, + -0.08377332985401154, + 0.10801972448825836, + 0.08188946545124054, + 0.04752402380108833, + -0.056904420256614685, + 0.0657256469130516, + 0.0848122388124466, + 0.02429386042058468, + -0.054910361766815186, + 0.03409896045923233, + -0.024236133322119713, + -0.07715597003698349, + -0.03852934390306473, + 0.07831665128469467, + 0.0054404279217123985, + -0.053227465599775314, + 0.004158719442784786, + -0.06129004806280136, + -0.01138156559318304, + -0.05156678333878517, + -0.008312592282891273, + 0.017336739227175713, + -0.0510714165866375, + 0.0372781865298748, + 0.08390292525291443, + -0.049358658492565155, + 0.052731383591890335, + 0.0910218358039856, + -0.13869227468967438, + 0.004543270915746689, + 0.0001345346972811967, + -0.016831474378705025, + -0.06702584773302078, + -0.016548754647374153, + -0.021660998463630676, + -0.012849812395870686, + 0.04257137328386307, + 0.13170626759529114, + 0.03189846873283386, + -0.04761732742190361, + 0.06918885558843613, + 0.05975593999028206, + 0.03840043395757675, + -0.026164745911955833, + 0.05711735785007477, + -0.009655328467488289, + -0.023229923099279404, + 0.017641378566622734, + 0.007348775863647461, + 0.024605106562376022, + 0.036499250680208206, + 0.052236221730709076, + 0.04896239563822746, + -0.029195360839366913, + 0.032721273601055145, + -0.030227618291974068, + -0.03500116243958473, + 0.11426898092031479, + 0.006823345087468624, + -0.01814107410609722, + 0.07205830514431, + -0.04160911962389946, + -0.03266086429357529, + -0.020353633910417557, + 0.031693410128355026, + -0.013201085850596428, + 0.040028274059295654, + 0.0625263974070549, + -0.0320584662258625, + -0.04143647477030754, + -0.039903294295072556, + -0.08769247680902481, + -0.10313998907804489, + -0.014835921116173267, + -0.13499142229557037, + 0.10793095827102661, + 0.018713677302002907, + 0.08790073543787003, + -0.01830505207180977, + 0.008792165666818619, + 0.008989870548248291, + 0.008036854676902294, + -0.016488220542669296, + 0.04358475282788277, + -0.061908967792987823, + -0.02663928084075451, + -0.024844497442245483, + -3.3717333537784355e-34, + 0.060906801372766495, + -0.020998405292630196, + 0.029439613223075867, + -0.07615156471729279, + -0.026674438267946243, + -0.04204464331269264, + 0.027281619608402252, + 0.10325483977794647, + -0.0903693363070488, + 0.0009337265510112047, + 0.033995140343904495, + -0.03268323838710785, + -0.08788809180259705, + -0.03012257255613804, + -0.07657033205032349, + 0.05052802339196205, + 0.029820125550031662, + 0.028945904225111008, + 0.044733691960573196, + 0.09888900071382523, + -0.0545048862695694, + -0.014691827818751335, + 0.03618656471371651, + 0.05319138616323471, + 0.015391098335385323, + 0.01666596531867981, + 0.06387930363416672, + 0.029205840080976486, + -0.000995403854176402, + -0.017446529120206833, + 0.021443603560328484, + -0.008322525769472122, + 0.017801504582166672, + 0.00681440532207489, + -0.014069723896682262, + -0.06384891271591187, + 0.027341313660144806, + -0.044232577085494995, + -0.05299981310963631, + -0.048078905791044235, + -0.044640813022851944, + 0.05264824256300926, + -0.018789106979966164, + 0.015515666455030441, + -0.01425100676715374, + -0.06789126992225647, + 0.03923040255904198, + -0.008705496788024902, + -0.0037916763685643673, + 0.10380057245492935, + -0.020299693569540977, + -0.03105965629220009, + 0.016647500917315483, + -0.008231219835579395, + -0.015931077301502228, + -0.06566759198904037, + -0.05663440003991127, + -0.010901492089033127, + 0.0034709374886006117, + -0.0030181293841451406, + -0.00998525507748127, + 0.02127096801996231, + -0.015370847657322884, + 0.00555750448256731, + -0.01197783276438713, + -0.04907772317528725, + 0.10355443507432938, + -0.013098049908876419, + -0.08290274441242218, + 0.050104137510061264, + -0.03261649236083031, + 0.019785217940807343, + 0.06747523695230484, + 0.0027367533184587955, + -0.0015011507784947753, + -0.024643361568450928, + -0.0388081818819046, + -0.039511919021606445, + -0.025695400312542915, + 0.06612234562635422, + -0.07067575305700302, + 0.017789896577596664, + -0.008448755368590355, + 0.08305512368679047, + -0.02861812151968479, + 0.051588431000709534, + 0.02410273812711239, + -0.07165969163179398, + 0.03807803615927696, + -0.013246770016849041, + 0.03404839336872101, + 0.051542073488235474, + 0.037942785769701004, + 0.02574879303574562, + -0.05273458734154701, + -1.7075301173008484e-08, + -0.023062674328684807, + -0.04760316386818886, + 0.01954919844865799, + -0.05641365423798561, + 0.049479298293590546, + -0.09140071272850037, + -0.03844953700900078, + -0.017024006694555283, + -0.04609446972608566, + -0.006587723270058632, + 0.15452618896961212, + -0.016630088910460472, + -0.07017359137535095, + -0.004440201912075281, + -0.011496483348309994, + 0.06342178583145142, + 0.0018697521882131696, + 0.02727099508047104, + -0.03660619631409645, + -0.043788447976112366, + -0.07100673019886017, + 0.03302675858139992, + 0.1594737470149994, + -0.025603029876947403, + 0.08137684315443039, + 0.04780419170856476, + -0.0651804730296135, + -0.035693634301424026, + 0.05259241163730621, + 0.004081551916897297, + 0.07689715921878815, + 0.04552195966243744, + 0.040665607899427414, + 0.07462719827890396, + 0.002195269102230668, + -0.0508795790374279, + -0.024077102541923523, + 0.06656365841627121, + -0.004287214018404484, + 0.0556931309401989, + -0.008757914416491985, + 0.010312089696526527, + -0.06733928620815277, + 0.02433626353740692, + 0.016176853328943253, + 0.018562741577625275, + 0.046469345688819885, + 0.026328498497605324, + -0.10090052336454391, + -0.06223388761281967, + -0.048891372978687286, + -0.05309091508388519, + -0.03426356986165047, + 0.03428658843040466, + 0.011085378006100655, + -0.08298514038324356, + -0.019729550927877426, + 0.14152950048446655, + -0.0358116589486599, + 0.06135609745979309, + 0.07949171215295792, + -0.04424002021551132, + 0.0665082260966301, + 0.06338445842266083 + ], + "disco-ball-bold||*new*,danging,club,70s": [ + 0.007474753074347973, + -0.06311933696269989, + 0.015470769256353378, + -0.010717792436480522, + 0.05469713360071182, + 0.04825343191623688, + 0.11211089789867401, + -0.02394370548427105, + 0.03530314192175865, + 0.02028796635568142, + 0.01870850659906864, + -0.013208889402449131, + 0.0025047173257917166, + 0.0012646988034248352, + 0.05266645550727844, + 0.03676861524581909, + 0.015221362933516502, + 0.00909985601902008, + 0.01753328926861286, + -0.009226475842297077, + -0.07603966444730759, + 0.032209765166044235, + -0.07651878893375397, + 0.035785626620054245, + 0.02729075215756893, + 0.02828517183661461, + 0.06369485706090927, + 0.045339059084653854, + -0.08923812955617905, + -0.07949285954236984, + -0.049999386072158813, + 0.054171349853277206, + 0.05473407730460167, + 0.054719943553209305, + 0.03932366520166397, + -0.06962829828262329, + -0.02687806636095047, + -0.017554325982928276, + 0.007587605156004429, + 0.07158123701810837, + -0.02420986443758011, + -0.072796531021595, + -0.02448338270187378, + -0.016105089336633682, + -0.03316522389650345, + 0.04284793511033058, + -0.04498283565044403, + -0.026771195232868195, + 0.06054246425628662, + 0.06230610981583595, + -0.019093899056315422, + -0.088262639939785, + -0.02835974656045437, + 0.04812822490930557, + 0.05119415000081062, + 0.017397906631231308, + -0.02519664540886879, + 0.031260229647159576, + 0.015117894858121872, + -0.043424446135759354, + 0.022718144580721855, + -0.053895726799964905, + 0.022126957774162292, + -0.023166246712207794, + 0.0018213517032563686, + -0.08824749290943146, + -0.021856458857655525, + 0.028117425739765167, + -0.02360430732369423, + 0.03215499967336655, + -0.012989872135221958, + -0.014189579524099827, + -0.0811486765742302, + -0.024881795048713684, + -0.03616185113787651, + 0.013804232701659203, + -0.022650763392448425, + 0.013578535988926888, + -0.033287614583969116, + -0.08423681557178497, + -0.006390668451786041, + -0.06123627349734306, + -0.0883149728178978, + -0.0907314196228981, + -0.02913527749478817, + 0.030172869563102722, + -0.03867633268237114, + -0.034198954701423645, + -0.04779399186372757, + 0.007520865648984909, + -0.08404594659805298, + 0.03907747566699982, + -0.060272231698036194, + 0.03677121922373772, + -0.054890502244234085, + 0.03560172766447067, + 0.012946943752467632, + -0.005538713652640581, + -0.010064001195132732, + 0.14072351157665253, + 0.03319342061877251, + 0.08332978934049606, + -0.028438184410333633, + -0.0014436818892136216, + -0.03308377042412758, + -0.06212707236409187, + 0.021185562014579773, + 0.06891022622585297, + -0.011510062962770462, + 0.0047239200212061405, + -0.017170090228319168, + -0.04335763677954674, + -0.03889060392975807, + -0.022492414340376854, + -0.05013715475797653, + -0.0511513277888298, + 0.015993807464838028, + -0.0008150775101967156, + 0.054121922701597214, + 0.09845705330371857, + 0.08117680996656418, + -0.03254438936710358, + -0.041926342993974686, + 0.025417476892471313, + -0.0815327987074852, + 0.04826967418193817, + 0.060027435421943665, + -3.202652725914554e-33, + 0.0012400475097820163, + 0.018003445118665695, + -0.05251699686050415, + 0.12231937050819397, + 0.0451631061732769, + -0.03000185266137123, + -0.08219896256923676, + 0.029244879260659218, + -0.04078996554017067, + -0.008591141551733017, + -0.02151464857161045, + 0.007406360935419798, + 0.007616139017045498, + -0.05842701345682144, + 0.07769306749105453, + -0.08829803019762039, + 0.01665525697171688, + -0.10674235969781876, + -0.01164419949054718, + 0.02024094946682453, + -0.09107187390327454, + 0.14708919823169708, + 0.02558548003435135, + -0.014249282889068127, + -0.047457028180360794, + -0.01722605526447296, + -0.039711493998765945, + -0.06567079573869705, + -0.006593888625502586, + 0.04210646077990532, + 0.03227964788675308, + 0.004642803221940994, + 0.03525935858488083, + 0.0625222697854042, + 0.01854230836033821, + 0.0856170579791069, + -0.07992655038833618, + -0.01935739256441593, + -0.06503481417894363, + -0.014768391847610474, + -0.029412414878606796, + -0.040387075394392014, + -0.06175736337900162, + -0.005905296187847853, + -0.04385016858577728, + 0.0771854892373085, + -0.03160734102129936, + -0.01624847948551178, + 0.008287436328828335, + -0.022474827244877815, + 0.07019876688718796, + 0.029788151383399963, + 0.013688472099602222, + 0.040178265422582626, + -0.015535540878772736, + -0.10468600690364838, + -0.06645307689905167, + 0.05294717475771904, + 0.07959507405757904, + -0.10313042253255844, + 0.13241253793239594, + 0.048718713223934174, + 0.05933564528822899, + -0.008178419433534145, + -0.0007746118353679776, + 0.09853418171405792, + -0.01505226455628872, + 0.006863671820610762, + 0.022574661299586296, + 0.006699021439999342, + -0.011855174787342548, + 0.040210627019405365, + 0.0222417451441288, + 0.026136884465813637, + 0.004630680195987225, + -0.025902535766363144, + -0.015230689197778702, + 0.03490297123789787, + 0.10356954485177994, + -0.09926128387451172, + -0.03557947650551796, + -0.011778227053582668, + -0.06928955018520355, + 0.058154601603746414, + 0.02961280196905136, + 0.02177649736404419, + 0.05790817737579346, + -0.03553583100438118, + -0.05629860237240791, + -0.004730635788291693, + -0.14674724638462067, + 0.02546071447432041, + -0.027713172137737274, + 0.00809941440820694, + 0.0009487841161899269, + 9.204988038405353e-35, + 0.07145693153142929, + 0.006643540691584349, + 0.0014211258385330439, + 0.024795956909656525, + 0.02810434252023697, + 0.0627545639872551, + 0.002256830222904682, + 0.030351946130394936, + 0.017413770779967308, + 0.001924942247569561, + 0.02084488607943058, + -0.10605888068675995, + -0.0734199583530426, + -0.059538260102272034, + 0.03355732187628746, + -0.023858273401856422, + -0.01121652964502573, + -0.006667245179414749, + -0.03449990600347519, + 0.07940643280744553, + -0.06349131464958191, + -0.013656968250870705, + 0.015179011970758438, + 0.041932351887226105, + -0.05151286721229553, + -0.019452128559350967, + 0.04248404875397682, + 0.021153192967176437, + -0.11965279281139374, + -0.005199333652853966, + 0.02430853806436062, + -0.0001730623043840751, + 0.04232814162969589, + 0.015962732955813408, + -0.12427949905395508, + 0.03830358013510704, + 5.6714514357736334e-05, + -0.02063973806798458, + -0.010497841984033585, + -0.02479615993797779, + -0.014145021326839924, + 0.027288854122161865, + -0.02214726060628891, + 0.06337360292673111, + 0.013179562985897064, + -0.010846811346709728, + -0.10711220651865005, + 0.03088776208460331, + -0.049463994801044464, + 0.11246270686388016, + 0.06263464689254761, + -0.014205132611095905, + -0.040941864252090454, + -0.003868625732138753, + -0.03582136705517769, + 0.004507037810981274, + -0.04918545484542847, + -0.015738872811198235, + -0.07383344322443008, + 0.03366492688655853, + -0.05127497389912605, + 0.008555288426578045, + -0.07149212807416916, + 0.0413617342710495, + 0.10119020938873291, + 0.01287886407226324, + -0.028201280161738396, + 0.019180400297045708, + -0.036894213408231735, + 0.01871103048324585, + -0.041683509945869446, + 0.004936167038977146, + -0.04048677906394005, + 0.03291816636919975, + -0.02122252993285656, + -0.08940134197473526, + 0.03322287276387215, + -0.008535085245966911, + 0.0033437164966017008, + 0.04887276887893677, + -0.06858686357736588, + -0.07155581563711166, + -0.045363422483205795, + 0.11283129453659058, + 0.021584630012512207, + 0.022088488563895226, + -0.05931422486901283, + 0.01188321877270937, + -0.025230178609490395, + -0.01902342401444912, + 0.06580010801553726, + -0.04580916464328766, + 0.02763255499303341, + -0.003623328637331724, + -0.04194739833474159, + -2.239567642448037e-08, + -0.000912615330889821, + 0.03614148125052452, + -0.08782858401536942, + 0.015849143266677856, + 0.10062838345766068, + -0.0063400790095329285, + -0.05835108086466789, + -0.09374973177909851, + 0.033257514238357544, + -0.04962192848324776, + 0.05309094488620758, + -0.012090370990335941, + 0.01691850647330284, + 0.018761038780212402, + -0.005281582474708557, + 0.03427397459745407, + -0.06350717693567276, + 0.10174593329429626, + -0.032556239515542984, + 0.01720244251191616, + 0.02283552475273609, + 0.0037748950999230146, + 0.08333870023488998, + -0.009138409979641438, + 0.039951737970113754, + 0.0385732501745224, + -0.06434077024459839, + -0.03810020163655281, + -0.022797558456659317, + -0.09159290045499802, + 0.05821866914629936, + 0.07386096566915512, + 0.07844436913728714, + 0.024557624012231827, + -0.11247044056653976, + 0.02292952500283718, + 0.033168185502290726, + 0.029031626880168915, + -0.04942937195301056, + 0.04896385967731476, + 0.01737084798514843, + 0.0474049411714077, + -0.014956611208617687, + -0.03859530761837959, + -0.07793550193309784, + -0.03311958909034729, + 0.09712573885917664, + 0.029604021459817886, + -0.10425062477588654, + 0.009737251326441765, + 0.01506666000932455, + 0.09433043748140335, + 0.07380640506744385, + 0.06178160011768341, + -0.0022356961853802204, + -0.009201474487781525, + 0.001794574549421668, + 0.14617808163166046, + -0.02483169175684452, + -0.03493205085396767, + 0.10906174778938293, + -0.06334342807531357, + -0.008556480519473553, + -0.02090127021074295 + ], + "discord-logo-bold||logos,messages,messaging,chat": [ + 0.03398720175027847, + -0.006256363820284605, + -0.006287329364567995, + 0.04075029119849205, + 0.08267395943403244, + -0.03858385980129242, + 0.09338588267564774, + -0.02727966010570526, + 0.07770048826932907, + -0.008636864833533764, + 0.019942287355661392, + 0.02224181964993477, + 0.020966054871678352, + 0.016525311395525932, + 0.06455989927053452, + -0.012674982659518719, + 0.0008586128824390471, + -0.04620448499917984, + 0.049195997416973114, + -0.05235159397125244, + 0.006517421454191208, + -0.007498256396502256, + 0.02018277533352375, + -0.00626016641035676, + 0.030175192281603813, + -0.07494162768125534, + 0.01926504820585251, + 0.0053193275816738605, + -0.005489841103553772, + -0.10099689662456512, + 0.009996285662055016, + 0.0058745816349983215, + 0.08082552254199982, + 0.07141140848398209, + 0.0027587213553488255, + 0.024414589628577232, + 0.04561632126569748, + 0.03300702944397926, + 0.037801411002874374, + 0.07268570363521576, + 0.013865485787391663, + -0.07545872777700424, + 0.006517321802675724, + 0.040835559368133545, + -0.015278729610145092, + 0.015966420993208885, + -0.08104073256254196, + -0.0151431979611516, + 0.0023424536921083927, + 0.03945108875632286, + 0.047344621270895004, + -0.10668768733739853, + -0.08849533647298813, + 0.03128136694431305, + 0.02655681222677231, + -0.025386271998286247, + -0.08824244886636734, + 0.038931749761104584, + 0.04669305309653282, + -0.08185654878616333, + -0.0042951228097081184, + -0.019023561850190163, + 0.06210549548268318, + 0.006923943758010864, + 0.05831281840801239, + 0.013110913336277008, + 0.021980101242661476, + 0.07348137348890305, + -0.049889303743839264, + 0.02617010846734047, + 0.03606655076146126, + 0.004446713253855705, + -0.04046778008341789, + -0.033036280423402786, + -0.05036415532231331, + 0.04207896068692207, + 0.02972225472331047, + 0.022252140566706657, + -0.028312841430306435, + -0.04871382564306259, + -0.0535677932202816, + 0.03264293074607849, + 0.01260499656200409, + -0.003743289038538933, + 0.10168963670730591, + 0.08936683088541031, + -0.0743478536605835, + -0.06086115166544914, + -0.06883486360311508, + 0.011968059465289116, + -0.08426876366138458, + 0.0007421817281283438, + 0.04682476446032524, + 0.045609742403030396, + -0.12129449099302292, + 0.05379239469766617, + -0.022243810817599297, + -0.0014794976450502872, + -0.031098593026399612, + 0.05351833626627922, + 0.005604448262602091, + 0.025136513635516167, + 0.04379098489880562, + -0.0604441799223423, + 0.03083701990544796, + 0.03800979629158974, + 0.00589775200933218, + -0.04160655662417412, + 0.056487247347831726, + 0.041757870465517044, + -0.06886602938175201, + -0.029055828228592873, + -0.04490530490875244, + 0.02221469022333622, + 0.0317445732653141, + -0.025426046922802925, + 0.006731237750500441, + -0.003961257170885801, + 0.13020406663417816, + -0.003481202991679311, + 0.0614924319088459, + -0.05324077233672142, + -0.0212206169962883, + -0.030313080176711082, + -0.05680925399065018, + 0.04103934392333031, + -0.001490150112658739, + -2.3053530722097768e-33, + 0.015675945207476616, + 0.05937886983156204, + -0.06952586024999619, + 0.11325275152921677, + 0.016960754990577698, + 0.0504833348095417, + -0.03160261735320091, + -0.07900809496641159, + -0.15866364538669586, + -0.008247079327702522, + 0.007619571406394243, + 0.06695595383644104, + 0.03703433275222778, + 0.07961008697748184, + 0.006139829754829407, + -0.06595653295516968, + 0.024245677515864372, + -0.015652155503630638, + -0.04225656017661095, + -0.1078120693564415, + -0.07856761664152145, + 0.05465381219983101, + -0.05741260200738907, + 0.02690824866294861, + 0.016580814495682716, + 0.004654337652027607, + 0.06718912720680237, + -0.028516152873635292, + 0.001968254568055272, + -0.017342351377010345, + -0.01594705879688263, + 0.03729267418384552, + 0.0650499165058136, + 0.08862744271755219, + 0.024063294753432274, + -0.008343474939465523, + -0.045458097010850906, + -0.019091926515102386, + -0.01987992785871029, + 0.03140046447515488, + -0.0416250005364418, + -0.08784038573503494, + -0.05383345112204552, + -0.04005212336778641, + -0.033959053456783295, + 0.07540244609117508, + -0.029233157634735107, + -0.1291377693414688, + 0.02295074425637722, + -0.08224117010831833, + -0.033248525112867355, + 0.0026228888891637325, + 0.03680200129747391, + -0.023236829787492752, + 0.03923718258738518, + -0.12236832082271576, + -0.047999314963817596, + 0.05170838534832001, + 0.013634812086820602, + -0.039744846522808075, + -0.00268628541380167, + -0.00196481472812593, + 0.0690615326166153, + -0.00931964535266161, + -0.01603132300078869, + 0.08952387422323227, + -0.07523612678050995, + 0.034602876752614975, + 0.0175111573189497, + -0.06390677392482758, + 0.026212772354483604, + 0.08428877592086792, + 0.037010934203863144, + 0.028705425560474396, + -0.09476376324892044, + -0.03738199174404144, + -0.02783285267651081, + 0.026131249964237213, + 0.005186587572097778, + 0.05271314084529877, + -0.07682780176401138, + -0.047242023050785065, + -0.0922352746129036, + 0.006591820158064365, + 0.037648171186447144, + 0.014822092838585377, + 0.061879150569438934, + -0.05757349729537964, + -0.0038653891533613205, + 0.033883269876241684, + -0.10560912638902664, + 0.023130016401410103, + 0.06699419766664505, + 0.011587236076593399, + -0.08493071794509888, + 8.398891524590897e-34, + 0.04192796349525452, + 0.06768689304590225, + 0.02865860052406788, + -0.015555022284388542, + -0.0371636301279068, + 0.039748646318912506, + 0.1311751753091812, + 0.038744136691093445, + -0.056635286659002304, + 0.03967636451125145, + 0.07641331851482391, + -0.0076895831152796745, + -0.1056462749838829, + -0.07974455505609512, + 0.009445966221392155, + 0.03562904894351959, + 0.0375271700322628, + 0.01352650485932827, + -0.048775188624858856, + -0.06813856959342957, + -0.038124945014715195, + -0.02501668967306614, + -0.08507885783910751, + 0.08520685136318207, + -0.016017265617847443, + 0.02906660921871662, + 0.06612162292003632, + -0.009902912192046642, + -0.05527349188923836, + -0.05027565360069275, + 0.006043619941920042, + 0.016304705291986465, + 0.00016662549751345068, + 0.02991136722266674, + 0.01172308437526226, + -0.004999926779419184, + 0.01762305572628975, + -0.010209422558546066, + -0.03414377570152283, + -0.05164150893688202, + 0.03863385692238808, + -0.003067786106839776, + -0.06937655806541443, + 0.07530998438596725, + -0.012802664190530777, + 0.011643704026937485, + -0.07974497973918915, + -0.09244947880506516, + -0.05851518362760544, + 0.09672845900058746, + 0.07578860223293304, + -0.10386427491903305, + 0.05185738578438759, + 0.050596315413713455, + -0.093814417719841, + -0.03329489752650261, + 0.0012408426264300942, + 0.0767325833439827, + -0.004810239188373089, + 0.033842165023088455, + -0.0007501976797357202, + -0.060098811984062195, + -0.022992676123976707, + 0.00551683409139514, + 0.03932403400540352, + -0.040047015994787216, + -0.019540106877684593, + 0.062248311936855316, + -0.025281796231865883, + 0.02628842554986477, + 0.07308422774076462, + -0.014012889936566353, + -0.02308373898267746, + 0.061304621398448944, + 0.03575407713651657, + -0.06269584596157074, + 0.045433852821588516, + -0.0377645269036293, + -0.06866200268268585, + 0.042378250509500504, + -0.03339037299156189, + -0.02502899430692196, + -0.04783300682902336, + 0.10105616599321365, + -0.010755229741334915, + 0.02240356057882309, + -0.015451259911060333, + 0.09018759429454803, + 0.01147472020238638, + -0.0489116869866848, + -0.030403299257159233, + -0.006089009344577789, + 0.05241095647215843, + 0.030153153464198112, + 0.0025616728235036135, + -1.6580752770778417e-08, + -0.07003717124462128, + -0.07052488625049591, + 0.05438428744673729, + -0.027225971221923828, + 0.02659900300204754, + 0.018049152567982674, + 0.00480172922834754, + -0.09024139493703842, + 0.0012255607871338725, + 0.002051000948995352, + -0.0408194325864315, + 0.012686977162957191, + -0.03100387379527092, + -0.0440392903983593, + 0.019479922950267792, + -0.02447715774178505, + -0.07553217560052872, + 0.08044351637363434, + 0.04795670881867409, + -0.030501358211040497, + 0.0019691637717187405, + 0.06232056766748428, + -0.014089823700487614, + 0.0781635269522667, + -0.014510265551507473, + 0.012696129269897938, + -0.011359861120581627, + 0.01858431287109852, + -0.03326701745390892, + 0.00463102525100112, + -0.039620913565158844, + 0.02324783243238926, + 0.09998981654644012, + -0.021762261167168617, + -0.06631726026535034, + 0.00577177107334137, + -0.04359199106693268, + -0.024158529937267303, + -0.02347208745777607, + 0.0835488885641098, + 0.07524415850639343, + -0.03567000478506088, + -0.010274478234350681, + -0.05556977167725563, + -0.06032244488596916, + -0.006810000166296959, + 0.02258065529167652, + -0.02679908461868763, + -0.058790985494852066, + -0.031134961172938347, + 0.0061068423092365265, + 0.03266425058245659, + 0.026168297976255417, + 0.05595723167061806, + -0.03193094581365585, + -0.14206978678703308, + 0.05502594634890556, + 0.10409089177846909, + 0.0435553602874279, + 0.024166010320186615, + 0.11589271575212479, + 0.0027590144891291857, + -0.023752493783831596, + -0.06545796245336533 + ], + "divide-bold||division,divisor,dividend,quotient,mathematics,arithmetic,calculator": [ + -0.04642191901803017, + -0.0006990929832682014, + -0.04347936436533928, + 0.005900825373828411, + 0.03573901206254959, + -0.07448703795671463, + 0.011822383850812912, + -0.005969229154288769, + -0.0015545213827863336, + -0.003259065328165889, + 0.04648609086871147, + -0.01067877747118473, + 0.03687708452343941, + 0.014852995984256268, + -0.017310064285993576, + 0.007526473142206669, + -0.054006896913051605, + 0.05807382985949516, + -0.06094534695148468, + -0.0022841347381472588, + 0.032495200634002686, + 0.04100664332509041, + 0.020308611914515495, + 0.11156240850687027, + 0.1183784008026123, + 0.04894706979393959, + 0.038525231182575226, + -0.06255690008401871, + 0.09003783762454987, + -0.057707734405994415, + 0.015671050176024437, + 0.038913972675800323, + 0.21274122595787048, + -0.002019834239035845, + -0.05202742666006088, + -0.006790847983211279, + 0.052074067294597626, + -0.02241653949022293, + 0.01074670348316431, + 0.10017739981412888, + -0.052634261548519135, + -0.09824521094560623, + -0.001469674170948565, + 0.05216466635465622, + -0.044039081782102585, + -0.04676724970340729, + -0.05011186748743057, + 0.004833075683563948, + 0.061833418905735016, + 0.03006199188530445, + -0.0273292139172554, + -0.025210505351424217, + -0.14006970822811127, + 0.07013523578643799, + 0.038758110255002975, + -0.008427882567048073, + -0.04959137737751007, + 0.03130270168185234, + 0.030138948932290077, + -0.0666004866361618, + -0.09159217774868011, + 0.012845462188124657, + 0.08120067417621613, + -0.006938969250768423, + 0.04639728367328644, + 0.009047736413776875, + 0.011929216794669628, + 0.007812857627868652, + -0.020750341936945915, + -0.001875646528787911, + 0.024295996874570847, + 0.027838680893182755, + -0.03602283447980881, + -0.03972678259015083, + -0.04553312435746193, + 0.006024217698723078, + 0.013475204817950726, + 0.019921692088246346, + -0.05436400696635246, + -0.029598655179142952, + -0.08160704374313354, + -0.03465454652905464, + -0.01620383746922016, + 0.014267245307564735, + 0.033059075474739075, + 0.01615976355969906, + -0.04634774103760719, + -0.08513700217008591, + 0.03464885056018829, + -0.08745691180229187, + -0.028949417173862457, + -8.215889101848006e-05, + 0.0026115395594388247, + 0.010017765685915947, + -0.03351622819900513, + 0.012073627673089504, + -0.008246153593063354, + -0.026096008718013763, + -0.03440002351999283, + 0.05229375883936882, + 0.019337771460413933, + 0.07452348619699478, + -0.08134230226278305, + -0.016135677695274353, + -0.006671666167676449, + -0.028965376317501068, + 0.05069776624441147, + 0.017876669764518738, + 0.016072167083621025, + 0.016062501817941666, + 0.019351458176970482, + -0.05126835033297539, + 0.012620867229998112, + -0.038386911153793335, + 0.008676915429532528, + -0.04851934313774109, + -0.030045537278056145, + -0.015969907864928246, + 0.10647020488977432, + 0.015628628432750702, + 0.012359518557786942, + 0.020520802587270737, + -0.00868831854313612, + 0.00024592739646323025, + 0.07206331193447113, + -0.015015983954071999, + 8.71868833201006e-05, + 1.7437737785803795e-34, + 0.044366899877786636, + 0.023758601397275925, + -0.02341228537261486, + 0.14347021281719208, + -0.03512783348560333, + -0.003953044302761555, + -0.04730462282896042, + -0.029682645574212074, + -0.06474281847476959, + 0.019653595983982086, + 0.06881742924451828, + 0.10833019763231277, + 0.05711512267589569, + 0.009169691242277622, + 0.14354611933231354, + -0.044290050864219666, + 0.028330178931355476, + -0.03424115851521492, + -0.015265353955328465, + 0.046768974512815475, + 0.004188879858702421, + 0.058256059885025024, + -0.05756102129817009, + 0.03568793833255768, + 0.019287487491965294, + -0.001831405214034021, + 0.02114969864487648, + 0.009638987481594086, + -0.011145683005452156, + 0.03884733468294144, + -0.0251899603754282, + 0.040439289063215256, + -0.02047743834555149, + -0.04634253308176994, + -0.010349394753575325, + 0.04060843959450722, + -0.023009389638900757, + 0.01850898750126362, + 0.06571313738822937, + -0.028411250561475754, + -0.11818352341651917, + -0.07181642204523087, + 0.008542521856725216, + -0.025748081505298615, + 0.028311174362897873, + 0.0697994977235794, + 0.0003744080022443086, + 0.04625658318400383, + 0.06737765669822693, + 0.033492088317871094, + -0.062583327293396, + -0.038864489644765854, + 0.09680676460266113, + -0.019721273332834244, + -0.009167138487100601, + -0.00196311017498374, + -0.03400900587439537, + 0.02961338497698307, + -0.01746448688209057, + 0.044382985681295395, + -0.015899894759058952, + 0.06993240863084793, + -0.019149187952280045, + -0.03095119073987007, + -0.15247800946235657, + 0.01856948621571064, + -0.14970305562019348, + 0.009974378161132336, + 0.0701303631067276, + 0.06156935915350914, + -0.08160785585641861, + 0.09161010384559631, + 0.0358220711350441, + 0.050137970596551895, + 0.03434104472398758, + 0.003482696833088994, + -0.026311445981264114, + -0.057108551263809204, + -0.019782356917858124, + -0.03402607887983322, + -0.05045140162110329, + 0.032088473439216614, + -0.008587510325014591, + 0.04167606681585312, + 0.013154583051800728, + -0.013430413790047169, + 0.019950706511735916, + 0.007930919528007507, + -0.026833105832338333, + 0.011090317741036415, + -0.08630197495222092, + -0.0696658194065094, + 0.07713758945465088, + -0.0868251770734787, + -0.040400128811597824, + -2.3696223074860237e-33, + -0.01770876720547676, + 0.013400767929852009, + -0.045000750571489334, + 0.023290997371077538, + -0.052602726966142654, + 0.022484680637717247, + 0.007096894085407257, + -0.025540979579091072, + 0.00020398895139805973, + -0.003839456243440509, + 0.03219375014305115, + 0.002955351723358035, + -0.052111100405454636, + -0.021997110918164253, + -0.09511879086494446, + 0.021597662940621376, + -0.029103659093379974, + 0.036158256232738495, + -0.03519219905138016, + -0.006085732486099005, + -0.09444594383239746, + 0.03197167068719864, + -0.058784112334251404, + -0.013232122175395489, + 0.015205977484583855, + 0.03489357605576515, + -0.040732432156801224, + 0.00044593034544959664, + 0.01651410572230816, + -0.021334698423743248, + -0.04934806004166603, + -0.07266555726528168, + 0.07149527221918106, + -0.03649973124265671, + -0.0673438012599945, + 0.022149525582790375, + 0.03538478538393974, + -0.06040879711508751, + 0.025207743048667908, + -0.07927112281322479, + -0.03208314999938011, + -0.06588657945394516, + 0.0557536818087101, + 0.014433877542614937, + -0.00721537321805954, + -0.013521627523005009, + 0.06661941111087799, + 0.0112601388245821, + -0.009636308997869492, + 0.06632377952337265, + -0.011775778606534004, + -0.00728236697614193, + 0.006763828452676535, + 0.06686311960220337, + -0.049565792083740234, + -0.013186626136302948, + -0.030680807307362556, + 0.0644351914525032, + -0.044505923986434937, + 0.10117454826831818, + -0.007269754074513912, + 0.06477133929729462, + 0.008953357115387917, + 0.04415816441178322, + -0.0689171776175499, + -0.06460489332675934, + 0.01883448101580143, + 0.06896819174289703, + 0.02786749228835106, + -0.031553953886032104, + 0.02020653709769249, + 0.045158788561820984, + 0.13325440883636475, + 0.03774171695113182, + -0.03082982823252678, + -0.04380909726023674, + 0.03762155398726463, + 0.05559351295232773, + -0.013176845386624336, + 0.06824812293052673, + 0.04255582019686699, + 0.0014357025502249599, + -0.04592999815940857, + 0.019557379186153412, + -0.1345721334218979, + 0.08147715032100677, + 0.09102058410644531, + -0.033116187900304794, + -0.015716005116701126, + -0.1151655837893486, + -0.08129221200942993, + 0.003936707973480225, + -0.02455754764378071, + 0.037056293338537216, + -0.011572201736271381, + -2.3162515461194744e-08, + -0.025845041498541832, + -0.03843242675065994, + -0.055541589856147766, + -0.07673405110836029, + 0.08607624471187592, + 0.020091135054826736, + -0.008837437257170677, + -0.10875990986824036, + -0.06181011348962784, + 0.01478722132742405, + 0.0212373249232769, + 0.07105939090251923, + -0.1010163277387619, + -0.08821309357881546, + 0.007541146129369736, + 0.004639063496142626, + 0.0744992047548294, + 0.009078237228095531, + -0.04310711473226547, + -0.05745730549097061, + 0.03223727270960808, + -0.01039444375783205, + 0.11017215251922607, + 0.020922718569636345, + 0.030539698898792267, + 0.04571226239204407, + -0.07517365366220474, + -0.029737932607531548, + 0.055574286729097366, + 0.04117058590054512, + 0.061349108815193176, + 0.04145190119743347, + -0.005898158065974712, + -0.015167967416346073, + -0.009960445575416088, + -0.029638230800628662, + 0.0038121510297060013, + 0.027048055082559586, + 0.07877618074417114, + 0.10276772826910019, + -0.06605465710163116, + -0.06174927577376366, + -0.032863546162843704, + -0.013602189719676971, + 0.03312178701162338, + 0.006091059185564518, + 0.007987089455127716, + -0.02624964341521263, + -0.09309493005275726, + -0.10505277663469315, + -0.06175197660923004, + 0.0566648431122303, + -0.014194241724908352, + 0.07214576005935669, + -0.04239200800657272, + -0.06287021934986115, + -0.046698905527591705, + -0.0037174734752625227, + -0.05745421722531319, + -0.03512188047170639, + 0.08209104835987091, + 0.018589293584227562, + 0.010125677101314068, + -0.002603413537144661 + ], + "dna-bold||double helix,gene,genetics": [ + -0.06456973403692245, + -0.037519995123147964, + -0.04912490397691727, + 0.03394686058163643, + -0.016805989667773247, + -0.04085804894566536, + -0.03789529949426651, + 0.02839464694261551, + -0.042528264224529266, + -0.019516561180353165, + 0.08573730289936066, + 0.06251929700374603, + -0.03387300297617912, + -0.055942267179489136, + -0.034307483583688736, + 0.07804066687822342, + -0.10607538372278214, + 0.01681380718946457, + -0.022465214133262634, + 0.0019490844570100307, + 0.07258447259664536, + 0.052732162177562714, + 0.11398087441921234, + 0.06129763275384903, + -0.04650919511914253, + 0.024673089385032654, + 0.07392201572656631, + 0.04867023229598999, + 0.030721258372068405, + -0.10127078741788864, + 0.03698957338929176, + -0.057096026837825775, + 0.025377070531249046, + -0.02642400562763214, + 0.07379429787397385, + -0.036379531025886536, + -0.010875806212425232, + -0.01573883555829525, + 0.031586043536663055, + 0.0308034960180521, + 0.13565592467784882, + -0.019754769280552864, + 0.011592053808271885, + 0.08106698095798492, + -0.07785473018884659, + -0.006036131642758846, + -0.047211162745952606, + 0.05211028829216957, + 0.03473963215947151, + 0.058975256979465485, + -0.002341337502002716, + -0.12173622101545334, + -0.09524416923522949, + -0.030955592170357704, + 0.01592303439974785, + 0.07904518395662308, + -0.12162095308303833, + -0.027203701436519623, + 0.03156596049666405, + -0.0033719788771122694, + 0.0496642142534256, + 0.00451627466827631, + 0.01746722310781479, + 0.022228246554732323, + 0.1257723718881607, + 0.01439181249588728, + 0.08385881781578064, + -0.05016155540943146, + 0.006717027630656958, + -0.028782112523913383, + 0.052314165979623795, + -0.03226741403341293, + -0.02698695659637451, + -0.026302509009838104, + -0.04442041739821434, + -0.010894421488046646, + 0.030269287526607513, + 0.0005990404170006514, + -0.035243645310401917, + 0.016838733106851578, + -0.09139057248830795, + -0.11016431450843811, + -0.030704177916049957, + 0.050398558378219604, + -0.01222868263721466, + 0.033975470811128616, + -0.005711277946829796, + -0.013998261652886868, + -0.004930995404720306, + 0.0735975056886673, + -0.0447046123445034, + -0.04885696619749069, + 0.0346134714782238, + 0.023975662887096405, + -0.09781922399997711, + 0.06808530539274216, + 0.0997665524482727, + 0.017179761081933975, + -0.03467043489217758, + -0.008344924077391624, + 0.0682651549577713, + -0.04185368865728378, + 0.023797109723091125, + 0.03804150968790054, + -0.054433900862932205, + -0.021795347332954407, + 0.004596314858645201, + -0.008734093979001045, + 0.015197009779512882, + -0.014036252163350582, + -0.057927653193473816, + 0.002049719449132681, + 0.01745331473648548, + 0.048751745373010635, + -0.04743003845214844, + -0.03633139654994011, + -0.03526442125439644, + 0.013358164578676224, + 0.05282697081565857, + -0.024260900914669037, + 0.0025027699302881956, + -0.024682754650712013, + 0.0024039989802986383, + -0.0399153009057045, + -0.041564568877220154, + -0.03761158138513565, + -0.04834049940109253, + -3.231383644558574e-33, + 0.007233833894133568, + 0.09626088291406631, + 0.012353429570794106, + 0.11121276021003723, + -0.07607656717300415, + 0.01610586792230606, + -0.03460240736603737, + 0.004291660618036985, + -0.1655297875404358, + 0.05866033583879471, + -0.036101777106523514, + 0.016872109845280647, + 0.0615476556122303, + 0.05749639496207237, + -0.07293539494276047, + 0.00642189709469676, + 0.01994643732905388, + -0.038788482546806335, + -0.03218952566385269, + 0.02247500792145729, + -0.04003749415278435, + 0.07445085048675537, + -0.08436812460422516, + -0.02757028304040432, + -0.007657971698790789, + -0.10819496959447861, + 0.02575349062681198, + -0.01973712258040905, + 0.04916362836956978, + 0.019903451204299927, + 0.021228991448879242, + -0.0002522895229049027, + -0.0016882431227713823, + 0.025486506521701813, + 0.045963726937770844, + 0.014255557209253311, + -0.007545060012489557, + -0.05033048242330551, + 0.0527578629553318, + 0.10230204463005066, + -0.07323483377695084, + -0.03156191483139992, + -0.005385611671954393, + -0.024288590997457504, + 0.04354153573513031, + 0.05932805687189102, + 0.012246175669133663, + -0.07013433426618576, + 0.04478810355067253, + 0.025223292410373688, + -0.03521394357085228, + -0.023569568991661072, + 0.06841385364532471, + 0.04206529259681702, + -0.013577158562839031, + 0.030293652787804604, + -0.0433703288435936, + 0.08521392941474915, + -0.05746302753686905, + 0.02274029515683651, + 0.04666699096560478, + 0.043933767825365067, + 0.025060603395104408, + -0.006424784194678068, + -0.04463319480419159, + 0.002762099029496312, + -0.0792720690369606, + 0.024975838139653206, + 0.15390223264694214, + 0.04377055913209915, + 0.0635649636387825, + 0.04597872495651245, + 0.06421852111816406, + -0.013547520153224468, + 0.036631930619478226, + 0.024747736752033234, + -0.017323419451713562, + 0.029870767146348953, + 0.036142006516456604, + 0.02843056060373783, + -0.11539407074451447, + 0.014601179398596287, + -0.0566105917096138, + -0.02105080336332321, + -0.004499573260545731, + 0.05795576795935631, + -0.010511744767427444, + -0.03795117512345314, + 0.036053936928510666, + 0.11457391828298569, + 0.004248207435011864, + -0.0759715810418129, + -0.09207616001367569, + -0.11428423225879669, + -0.015980752184987068, + -1.0690706713052292e-34, + 0.038476988673210144, + 0.013690064661204815, + 0.009148485027253628, + -0.06691354513168335, + -0.04439537227153778, + -0.0015105564380064607, + -0.014010129496455193, + 0.010099045932292938, + -0.05010904744267464, + 0.001082119531929493, + 0.11258108913898468, + -0.024836774915456772, + -0.06704447418451309, + -0.08272247016429901, + 0.021422196179628372, + 0.020084470510482788, + 0.002844504313543439, + 0.07099234312772751, + -0.02661142498254776, + -0.011231559328734875, + -0.03970789536833763, + -0.010629650205373764, + -0.04417926073074341, + 0.06547156721353531, + -0.031569987535476685, + 0.030889395624399185, + -0.028892725706100464, + 0.02477080188691616, + 0.010268709622323513, + 0.014008622616529465, + -0.07990779727697372, + 0.0236434955149889, + 0.09126292914152145, + 0.03948018327355385, + -0.04843498766422272, + 0.06996407359838486, + 0.05145357549190521, + -0.059570472687482834, + 0.026808269321918488, + -0.08232991397380829, + -0.05732719600200653, + 0.09838731586933136, + -0.020832834765315056, + 0.032094936817884445, + 0.03475337103009224, + 0.05515670031309128, + 0.04075729101896286, + 0.029348254203796387, + 0.011952139437198639, + 0.03647438436746597, + -0.005265227518975735, + -0.029094547033309937, + 0.020479395985603333, + 0.002987509360536933, + -0.05639063939452171, + -0.08863623440265656, + 0.0010731725487858057, + -0.02248327247798443, + -0.014104260131716728, + 0.06384843587875366, + 0.04268079996109009, + -0.006535489112138748, + -0.06774397939443588, + 0.01608242467045784, + -0.0014701834879815578, + -0.04330975189805031, + 0.011025197803974152, + -0.013978106901049614, + 0.04481293633580208, + -0.04510219767689705, + -0.02564435638487339, + 0.006993574555963278, + 0.07679997384548187, + 0.034483008086681366, + 0.04338381811976433, + -0.03699260950088501, + -0.07349340617656708, + -0.0029251445084810257, + -0.010404253378510475, + 0.029692385345697403, + -0.0039902785792946815, + 0.011229141615331173, + -0.040674131363630295, + -0.00653479341417551, + 0.005666222423315048, + -0.01984292082488537, + 0.047855861485004425, + 0.06243831291794777, + -0.012431633658707142, + -0.06504850834608078, + -0.05643521621823311, + 0.06457468122243881, + -0.09460281580686569, + -0.021270766854286194, + 0.028180202469229698, + -1.717044995075412e-08, + 0.0432637594640255, + -0.018635395914316177, + -0.03670274838805199, + -0.03087155893445015, + 0.024427324533462524, + 0.02994585782289505, + -0.049070701003074646, + -0.04960506781935692, + -0.00461615202948451, + 0.023609085008502007, + -0.02903837338089943, + 0.07293584197759628, + -0.08477746695280075, + -0.035542480647563934, + 0.0629473328590393, + -0.01361371111124754, + -0.10970631241798401, + 0.0009894489776343107, + -0.00885216984897852, + -0.03650777414441109, + -0.027299413457512856, + 0.04012756422162056, + -0.009415378794074059, + 0.03390224277973175, + 0.01407531090080738, + 0.05896061286330223, + 0.01880112662911415, + -0.0069468216970562935, + 0.04181817173957825, + 0.005977348890155554, + 0.045883532613515854, + -0.04200516641139984, + -0.01106523908674717, + -0.03169902414083481, + -0.13677877187728882, + -0.034178607165813446, + 0.028401464223861694, + -0.0024007833562791348, + 0.02374236285686493, + 0.1119985356926918, + 0.004852082580327988, + -0.032683201134204865, + -0.051658015698194504, + -0.011881114915013313, + -0.009157431311905384, + -0.0036552692763507366, + 0.06662096828222275, + -0.00018973174155689776, + -0.07006849348545074, + -0.09952499717473984, + -0.05708565562963486, + -0.0663873702287674, + 0.025854207575321198, + 0.017863895744085312, + -0.11879543960094452, + -0.05288242548704147, + 0.008570362813770771, + 0.07973762601613998, + -0.09136313199996948, + 0.03700891137123108, + 0.09877756237983704, + 0.02987866848707199, + 0.09537986665964127, + -0.0647135004401207 + ], + "dog-bold||pets,animals,puppy": [ + -0.04451287165284157, + -0.030337586998939514, + 0.04259280860424042, + 0.054902952164411545, + -0.04174928739666939, + -0.003887220285832882, + 0.022485528141260147, + -0.0963825136423111, + 0.05197249725461006, + 0.009344061836600304, + 0.037879619747400284, + -0.018380023539066315, + 0.04029695317149162, + 0.015361416153609753, + 0.00012419139966368675, + 0.06316844373941422, + -0.00170423265080899, + 0.03911199793219566, + 0.022925816476345062, + -0.03292544558644295, + -0.043216053396463394, + 0.06096970662474632, + 0.043486010283231735, + 0.02402481436729431, + -0.03270811587572098, + 0.03741699829697609, + -0.0003597318718675524, + -0.04216058552265167, + 0.022190187126398087, + -0.036034390330314636, + -0.045093879103660583, + -0.0166107639670372, + 0.06813032180070877, + 0.04675726220011711, + 0.05457312613725662, + 0.0038583718705922365, + -0.01803513616323471, + -0.011951292864978313, + 0.05779760330915451, + 0.08759470283985138, + 0.04652900993824005, + -0.03463505953550339, + -0.008817985653877258, + -0.0059697492979466915, + -0.06082246080040932, + -0.050193581730127335, + -0.1313113272190094, + -0.08899014443159103, + 0.022692343220114708, + -0.010670037008821964, + -0.07465837150812149, + -0.062142521142959595, + -0.07844698429107666, + 0.045150868594646454, + -0.05260397121310234, + -0.0507780984044075, + -0.06838887929916382, + -0.0015391662018373609, + 0.025481678545475006, + 0.015189352445304394, + 5.7659770391182974e-05, + 0.05545780062675476, + 0.10224945843219757, + 0.06400194764137268, + 0.050854217261075974, + -0.01313082966953516, + -0.03870658949017525, + 0.05292688310146332, + -0.048877738416194916, + 0.0565335750579834, + 0.056454967707395554, + 0.03463400527834892, + 0.05156887695193291, + -0.03376997634768486, + -0.1190563291311264, + -0.0039417981170117855, + 0.014087273739278316, + 0.011624540202319622, + 0.05748685449361801, + -0.07128739356994629, + -0.05921301618218422, + -0.08244640380144119, + -0.04018387943506241, + -0.005785824730992317, + 0.06800089031457901, + 0.035353075712919235, + -0.07590754330158234, + -0.07216640561819077, + -0.13994763791561127, + -0.010824271477758884, + -0.07797804474830627, + -0.07130376994609833, + 0.010465729050338268, + 0.03336258977651596, + -0.030354581773281097, + -0.004236700478941202, + 0.07619979232549667, + -0.06217901408672333, + -0.04456256702542305, + 0.05456458777189255, + -0.009275946766138077, + 0.0630880743265152, + 0.03249896317720413, + -0.03563087433576584, + 0.018571792170405388, + -0.04869838431477547, + -0.07883364707231522, + -0.01059423852711916, + -0.012727699242532253, + -0.0019736220128834248, + -0.04211575165390968, + -0.06690549105405807, + -0.007407474331557751, + 0.0017292080447077751, + -0.00787699967622757, + -0.03174813464283943, + -0.07641632109880447, + -0.09960654377937317, + 0.10602162778377533, + 0.025915708392858505, + 0.016079673543572426, + -0.023512396961450577, + -0.03777933493256569, + 0.0021637771278619766, + 0.028192922472953796, + -0.014709980227053165, + -0.011719733476638794, + -2.1563666937537368e-33, + 0.07325863093137741, + 0.007366717793047428, + -0.0430719293653965, + 0.06800658255815506, + -0.024929165840148926, + -0.01586899533867836, + -0.03942029923200607, + -0.019187115132808685, + -0.1415385901927948, + 0.01897214911878109, + -0.0030489852651953697, + 0.07674098759889603, + -0.0011019525118172169, + 0.03354426473379135, + 0.024052169173955917, + -0.006464716047048569, + 0.010936232283711433, + -0.04312383756041527, + 0.038485120981931686, + 0.012125015258789062, + -0.05022971332073212, + 0.10257304459810257, + -0.011381156742572784, + 0.002488100901246071, + -0.020852770656347275, + -0.05451297014951706, + -0.04274895042181015, + -0.1032172366976738, + -0.03695311024785042, + 0.05955005809664726, + 0.053643595427274704, + 0.009246643632650375, + 0.034061022102832794, + 0.03705183044075966, + -0.10307309031486511, + 0.004176532384008169, + -0.0760020837187767, + -0.1013515517115593, + -0.052633270621299744, + 0.08748183399438858, + 0.06735722720623016, + -0.011383180506527424, + 0.037369661033153534, + 0.01439659483730793, + -0.0004499276401475072, + 0.10841993987560272, + -0.05334334820508957, + -0.044535551220178604, + -0.004477990325540304, + 0.02799799107015133, + 0.025734391063451767, + 0.0032571146730333567, + -0.013867387548089027, + -0.024885723367333412, + -0.005981612019240856, + 0.010027050040662289, + -0.008559484034776688, + 0.05691026896238327, + -0.022668765857815742, + 0.08670925348997116, + 0.043365731835365295, + 0.016410451382398605, + 0.06084539741277695, + -0.0849124938249588, + 0.042347028851509094, + -0.0437789186835289, + -0.06671065092086792, + 0.05194840580224991, + 0.01858828216791153, + 0.043636951595544815, + 0.0031907367520034313, + 0.033822886645793915, + 0.04334785044193268, + -0.05216564983129501, + 0.035898685455322266, + -0.01503253635019064, + 0.03638371080160141, + -0.00427143182605505, + -0.0030610663816332817, + -0.11662717908620834, + -0.07341457158327103, + 0.0631769523024559, + -0.05341557040810585, + 0.13584615290164948, + -0.00166687264572829, + 0.04828368127346039, + 0.021139713004231453, + -0.04318872094154358, + -0.03665975481271744, + 0.0711178407073021, + -0.01777799241244793, + -0.003737877355888486, + 0.0014586091274395585, + -0.07783692330121994, + -0.045949578285217285, + -1.3263908157629176e-33, + 0.044014859944581985, + 0.006100101862102747, + -0.01285961177200079, + -0.035687509924173355, + -0.04262677580118179, + 0.021092642098665237, + -0.016383392736315727, + 0.07799408584833145, + 0.033876050263643265, + 0.08273441344499588, + -0.024293942376971245, + -0.03141486644744873, + -0.023119740188121796, + -0.07283541560173035, + 0.021709416061639786, + 0.01661837100982666, + 0.004625292494893074, + -0.010354744270443916, + 0.04482303187251091, + -0.020497215911746025, + -0.08075776696205139, + -0.02513509802520275, + -0.03199850022792816, + 0.08946657925844193, + 0.005293354857712984, + 0.058149438351392746, + 0.007899758405983448, + 0.007268005982041359, + -0.020326370373368263, + -0.07980368286371231, + -0.035244159400463104, + -0.05548849329352379, + -0.018863318488001823, + 0.05298915505409241, + -0.02917221002280712, + 0.07082173228263855, + -0.0013304019812494516, + -0.10171738266944885, + 0.01727207563817501, + 0.0018100732704624534, + 0.01873183622956276, + 0.009780535474419594, + -0.06258574873209, + 0.03509669378399849, + 0.014703470282256603, + 0.03458620607852936, + -0.01646561361849308, + -0.035776641219854355, + 0.007202611304819584, + 0.06667051464319229, + -0.01643805019557476, + -0.03219084069132805, + -0.025279175490140915, + -0.029374493286013603, + -0.0606805719435215, + -0.00775683531537652, + -0.02315586991608143, + -0.04242915287613869, + -0.00819682888686657, + 0.0380169078707695, + 0.019697392359375954, + 0.06592538207769394, + -0.033396292477846146, + 0.08516774326562881, + -0.07436589151620865, + -0.10295778512954712, + -0.003566719824448228, + -0.03506024181842804, + 0.07939118146896362, + -0.06272619217634201, + 0.01987479254603386, + 0.06751077622175217, + -0.02270602248609066, + 0.004489309620112181, + 0.05013471841812134, + 0.03125404939055443, + 0.02678363211452961, + -0.018782595172524452, + 0.014371057972311974, + 0.012518629431724548, + -0.0584738552570343, + -0.04932446777820587, + -0.0400184728205204, + 0.09409341961145401, + 0.002683068625628948, + 0.052108556032180786, + -0.043006159365177155, + 0.0999571830034256, + 0.01458215806633234, + -0.032382212579250336, + 0.01258860994130373, + 0.05945969000458717, + 0.006972247269004583, + -0.043471161276102066, + -0.04208200052380562, + -1.8404339385824642e-08, + -0.04985375329852104, + -0.016695624217391014, + -0.08788112550973892, + -0.007595887407660484, + 0.0842246413230896, + -0.00030023365980014205, + -0.06215116009116173, + -0.09118671715259552, + -0.08380287885665894, + 0.048484914004802704, + 0.08255966007709503, + -0.019705254584550858, + -0.09143334627151489, + -0.03801804035902023, + 0.059011731296777725, + 0.0431211031973362, + -0.02564280666410923, + 0.06150055304169655, + 0.032071951776742935, + 0.04967714846134186, + -0.10733547061681747, + 0.06312857568264008, + 0.0203087255358696, + -0.052356936037540436, + -0.0070895841345191, + -0.00768459914252162, + -0.055377114564180374, + -0.03018563613295555, + 0.002813461236655712, + 0.05549269914627075, + 0.018091194331645966, + 0.09572446346282959, + -0.03795044124126434, + 0.03913652151823044, + -0.018175983801484108, + -0.07013539224863052, + 0.026707788929343224, + -0.05599723383784294, + 0.03438607230782509, + 0.1017741709947586, + 0.07479444891214371, + 0.08319172263145447, + -0.03879457712173462, + -0.043797530233860016, + 0.0423322357237339, + 0.03933633491396904, + 0.10145829617977142, + -0.08249890804290771, + -0.03725694119930267, + -0.08584723621606827, + -0.10713664442300797, + -0.017965836450457573, + 0.0033550672233104706, + 0.051209136843681335, + -0.03962497040629387, + -0.04006735980510712, + -0.01552021037787199, + -0.000556526065338403, + 0.009954453445971012, + 0.0474705696105957, + 0.1239081621170044, + 0.03529832884669304, + 0.06298733502626419, + 0.07560000568628311 + ], + "door-bold||entrance,exit": [ + 0.09211597591638565, + 0.05304069444537163, + -0.021029019728302956, + 0.0417080894112587, + 0.06335321813821793, + 0.01251131109893322, + 0.04741968959569931, + -0.08069581538438797, + -0.006163189187645912, + 0.017135048285126686, + -0.0036970528308302164, + 0.024965066462755203, + 0.06050185114145279, + -0.06825029104948044, + 0.026363011449575424, + 0.029886839911341667, + 0.01025724969804287, + 0.03313450887799263, + -0.002019511768594384, + -0.009252416901290417, + -0.010530786588788033, + 0.021496037021279335, + 0.012859487906098366, + -0.024577969685196877, + -0.12221483886241913, + -0.027124613523483276, + 0.00348089262843132, + -0.005937159061431885, + 0.012431959621608257, + -0.07692443579435349, + -0.022748813033103943, + -0.016044728457927704, + 0.010217858478426933, + -0.003971627447754145, + 0.06708113849163055, + 0.002588151255622506, + 0.013258134014904499, + -0.01840624213218689, + 0.03116517700254917, + -0.032168321311473846, + 0.02273433469235897, + 0.0011995940003544092, + -0.01500965841114521, + 0.03180943429470062, + -0.027929941192269325, + 0.02299293875694275, + -0.10825860500335693, + -0.08374094218015671, + 0.08503655344247818, + 0.001470748451538384, + -0.025549793615937233, + 0.02905951626598835, + -0.07813561707735062, + 0.06559932976961136, + -0.014664418995380402, + 0.06170826032757759, + 0.006247364450246096, + -0.0721803605556488, + 0.028496773913502693, + -0.009140752255916595, + 0.04437686875462532, + -0.01805092766880989, + -0.02351205050945282, + -0.016233175992965698, + 0.014134332537651062, + -0.022233977913856506, + -0.028385067358613014, + 0.02158365771174431, + -0.0239879060536623, + 0.011180315166711807, + 0.06676361709833145, + -0.07170115411281586, + -0.015504919923841953, + -0.05322698876261711, + -0.026558056473731995, + -0.019684327766299248, + -0.05395837500691414, + 0.05678367242217064, + -0.025761717930436134, + -0.015269708819687366, + -0.039444733411073685, + -0.08829022943973541, + -0.1008705198764801, + 0.004781376104801893, + 0.059903182089328766, + 0.06930147111415863, + -0.061214033514261246, + -0.04468972235918045, + 0.03486301377415657, + 0.08277273923158646, + -0.059492871165275574, + -0.06588947772979736, + -0.025944413617253304, + 0.03480273112654686, + -0.054671693593263626, + -0.06446518003940582, + 0.018839344382286072, + -0.007623510900884867, + -0.012070956639945507, + 0.06705228239297867, + -0.0058018905110657215, + 0.0013633714988827705, + -0.013753914274275303, + -0.01910439506173134, + 0.014119315892457962, + 0.00039279359043575823, + 0.03328631818294525, + 0.016243409365415573, + 0.03168240934610367, + -0.03885124996304512, + -0.024237731471657753, + -0.09200650453567505, + 0.0917428582906723, + 0.0158716831356287, + -0.013219587504863739, + -0.036617279052734375, + -0.033344242721796036, + 0.007970654405653477, + 0.12041879445314407, + 0.11000589281320572, + 0.04550342261791229, + -0.04465259611606598, + -0.04033182933926582, + -0.030064057558774948, + -0.033127907663583755, + -0.08276132494211197, + 0.03817809000611305, + -3.106500961437137e-33, + 0.016686681658029556, + 0.05392587184906006, + -0.08512327820062637, + 0.06139008328318596, + 0.03126223757863045, + 0.04079652577638626, + -0.06387461721897125, + -0.03693098574876785, + -0.09505882859230042, + 0.04653489962220192, + 0.010167790576815605, + -0.08793123811483383, + -0.02735910192131996, + -0.03462885692715645, + 0.05314606800675392, + 0.0048489621840417385, + 0.004692595452070236, + -0.019411597400903702, + -0.10940276086330414, + -0.01792416349053383, + 0.02287132479250431, + 0.02192794345319271, + -0.04797781631350517, + 0.006192790810018778, + 0.06099369376897812, + -0.0059129949659109116, + -0.04562225937843323, + -0.0243002250790596, + -0.02101515606045723, + 0.04672806337475777, + 0.03444806858897209, + -0.0035929400473833084, + 0.032956622540950775, + 0.08365123718976974, + -0.022838138043880463, + 0.010784286074340343, + -0.0341731533408165, + -0.010822945274412632, + -0.010613519698381424, + -0.07276000827550888, + -0.1485912799835205, + -0.09427401423454285, + -0.03585866838693619, + 0.06181022897362709, + 0.01507777813822031, + 0.07870086282491684, + 0.05262657627463341, + -0.03867395967245102, + 0.005121682770550251, + 0.0034704008139669895, + -0.011963333003222942, + 0.030741695314645767, + 0.005692219361662865, + 0.050135791301727295, + -0.053828224539756775, + -0.07910361886024475, + -0.012903992086648941, + 0.09651293605566025, + -0.0215744748711586, + 0.03311758488416672, + -0.016764704138040543, + 0.07723340392112732, + 0.05655498430132866, + 0.019497215747833252, + -0.020849334076046944, + -0.06272447854280472, + -0.08490126579999924, + 0.012843555770814419, + 0.05512481555342674, + -0.01808704435825348, + -0.05994369834661484, + -0.02505238726735115, + 0.026542680338025093, + 0.06327638775110245, + -0.030759043991565704, + 0.02394038438796997, + 0.008589761331677437, + -0.012135202065110207, + 0.16052114963531494, + -0.12278600037097931, + -0.04729488119482994, + 0.0889085903763771, + -0.07015182077884674, + 0.08319094777107239, + 0.13092933595180511, + 0.03958597779273987, + -0.019451456144452095, + -0.09790489822626114, + -0.01693241484463215, + 0.017054617404937744, + -0.03969160467386246, + 0.008295886218547821, + -0.013540660962462425, + -0.010345644317567348, + -0.07496438175439835, + 5.4703934686468715e-34, + 0.07709901034832001, + 0.04874163120985031, + 0.015403048135340214, + -0.08664274215698242, + -0.06741097569465637, + 0.048436399549245834, + -0.006785140838474035, + -0.005821262486279011, + 0.07772529125213623, + 0.059832025319337845, + 0.06961605697870255, + 0.07058879733085632, + 0.08117562532424927, + -0.00023818746558390558, + -0.032828737050294876, + -0.029690571129322052, + 0.14357662200927734, + 0.02013276517391205, + -0.01340436190366745, + 0.05933240056037903, + -0.0437447614967823, + -0.06550826877355576, + -0.09146931022405624, + 0.0020460868254303932, + -0.05113837122917175, + 0.00646328367292881, + 0.10919766873121262, + 0.10455872118473053, + -0.09006208926439285, + -0.04450094699859619, + -0.030084379017353058, + -0.02510250359773636, + -0.01298647839576006, + 0.12250587344169617, + -0.039723895490169525, + -0.016066551208496094, + 0.047112613916397095, + -0.008865419775247574, + -0.06294151395559311, + 0.034179072827100754, + 0.04692792147397995, + 0.05319240316748619, + 0.08242738246917725, + 0.03868807852268219, + -0.05759477987885475, + 0.02804606966674328, + -0.025545069947838783, + -0.031747523695230484, + -0.027224434539675713, + 0.03188619762659073, + 0.0313277468085289, + 0.03031793050467968, + -0.0033260409254580736, + 0.013242037035524845, + -0.04078301042318344, + -0.013866485096514225, + -0.03154699131846428, + 0.0314895398914814, + 0.012829706072807312, + 0.03790464624762535, + 0.03969914838671684, + 0.06851581484079361, + 0.06477059423923492, + 0.04469752684235573, + 0.036999162286520004, + -0.10151518881320953, + -0.025692326948046684, + 0.0451013408601284, + -0.01769324392080307, + -0.04409170523285866, + 0.09907374531030655, + 0.051421914249658585, + -0.030213452875614166, + 0.03578779101371765, + 0.0029720617458224297, + -0.011333384551107883, + 0.046964701265096664, + -0.09870646893978119, + -0.04234740510582924, + 0.020113380625844002, + -0.06251265853643417, + -0.05303003638982773, + -0.03265583515167236, + -0.013026534579694271, + -0.017796363681554794, + -0.03815620392560959, + -0.027232009917497635, + 0.0511428527534008, + 0.019479239359498024, + -0.011987760663032532, + -0.050231266766786575, + 0.06131180003285408, + 0.08315187692642212, + -0.09898444265127182, + -0.04060804098844528, + -1.4886432531113769e-08, + -0.04080237075686455, + -0.04401712864637375, + 0.02606433443725109, + -0.06097126007080078, + 0.07794675976037979, + 0.002196596236899495, + -0.012613053433597088, + 0.005003569182008505, + -0.03866349160671234, + -0.014228037558495998, + 0.05756844952702522, + 0.07017596065998077, + -0.04864617809653282, + 0.018599629402160645, + -0.024753255769610405, + 0.0755130797624588, + -0.0572507418692112, + -0.03459169715642929, + -0.010401085019111633, + -0.052708275616168976, + -0.012727581895887852, + -0.014060143381357193, + 0.05875536799430847, + -0.022424710914492607, + -0.02302933856844902, + -0.0038156569935381413, + -0.0815419852733612, + -0.00803533848375082, + 0.004051114432513714, + 0.03367249295115471, + 0.03319506347179413, + 0.05507499724626541, + 0.035437099635601044, + 0.04636266455054283, + -0.10545390099287033, + 0.050805117934942245, + 0.06027774512767792, + 0.052391473203897476, + 0.019173309206962585, + 0.05812624841928482, + -0.011891626752912998, + -0.05467651039361954, + -0.028447147458791733, + -0.02498294599354267, + -0.09369868785142899, + 0.055546462535858154, + 0.12172069400548935, + 0.028126396238803864, + -0.08735749870538712, + -0.03953849524259567, + 0.005410533398389816, + -0.03797232359647751, + -0.027512982487678528, + -0.02561846934258938, + -0.0011310685658827424, + -0.06307429075241089, + -0.0008987844339571893, + 0.025072187185287476, + -0.024900279939174652, + 0.05539676174521446, + 0.09199795126914978, + 0.06765631586313248, + 0.026744825765490532, + -0.013730610720813274 + ], + "door-open-bold||entrance,exit": [ + 0.09804708510637283, + 0.02991854026913643, + -0.02198842354118824, + 0.0605260506272316, + 0.06610380113124847, + -0.0007868006359785795, + 0.0437164306640625, + -0.08106448501348495, + 0.013651639223098755, + 0.020421376451849937, + -0.007592739537358284, + 0.025674855336546898, + 0.05179112032055855, + -0.06312030553817749, + 0.036745160818099976, + 0.045786455273628235, + 0.0014452490722760558, + 0.02804194763302803, + 0.0017295764992013574, + -0.006213305983692408, + 0.013054811395704746, + 0.025824163109064102, + 0.013677598908543587, + -0.04374786093831062, + -0.1255026012659073, + -0.034615688025951385, + 0.013225458562374115, + -0.015758929774165154, + 0.012027136981487274, + -0.07012474536895752, + -0.0066407364793121815, + -0.03408914804458618, + 0.024369483813643456, + -0.010136990807950497, + 0.08824436366558075, + 0.0033009094186127186, + 0.010023055598139763, + -0.018046855926513672, + 0.0158933624625206, + -0.030025318264961243, + 0.041722092777490616, + -0.01686081290245056, + -0.00991431437432766, + 0.04044153913855553, + -0.03670790046453476, + 0.014643190428614616, + -0.10325923562049866, + -0.08703898638486862, + 0.08140658587217331, + -0.00282052019611001, + -0.032478440552949905, + 0.008548194542527199, + -0.07568248361349106, + 0.046726327389478683, + 0.00616441247984767, + 0.05342239513993263, + -0.006477357354015112, + -0.07461830973625183, + 0.01985049620270729, + -0.009355161339044571, + 0.02345193363726139, + -0.01621679589152336, + -0.028438784182071686, + -0.014494071714580059, + 0.01163899153470993, + -0.01709345355629921, + -0.024792790412902832, + 0.011281407438218594, + -0.03612900525331497, + -0.008904997259378433, + 0.07516763359308243, + -0.0557292178273201, + -0.006599651649594307, + -0.03903110325336456, + -0.04940473288297653, + -0.00976362731307745, + -0.051134202629327774, + 0.05609563738107681, + -0.03122280351817608, + -0.011007596738636494, + -0.0213950052857399, + -0.10019269585609436, + -0.10007327795028687, + -0.013152564875781536, + 0.060480646789073944, + 0.0903720110654831, + -0.0733574703335762, + -0.05078896880149841, + 0.032299116253852844, + 0.07777086645364761, + -0.06368030607700348, + -0.06224522367119789, + -0.035944465547800064, + 0.042010705918073654, + -0.07361683249473572, + -0.07845062762498856, + 0.03311832249164581, + 0.008966710418462753, + -0.009369943290948868, + 0.07484739273786545, + -0.010212725959718227, + 0.012332952581346035, + -0.0013996476773172617, + -0.0049659437499940395, + 0.0029228825587779284, + 0.007577915675938129, + 0.047364912927150726, + 0.02964113838970661, + -0.000588815426453948, + -0.036490071564912796, + -0.015181020833551884, + -0.11960790306329727, + 0.1119527518749237, + -7.876683957874775e-05, + -0.026771878823637962, + -0.018330436199903488, + -0.04922992363572121, + 0.008555089123547077, + 0.11897404491901398, + 0.11614292860031128, + 0.041958197951316833, + -0.046173177659511566, + -0.04742274805903435, + -0.042471710592508316, + -0.024360444396734238, + -0.06914795935153961, + 0.0411955751478672, + -3.33913386485876e-33, + 0.017832666635513306, + 0.04749176278710365, + -0.08557400107383728, + 0.066311314702034, + 0.02034599520266056, + 0.03379923105239868, + -0.08080805838108063, + -0.039133887737989426, + -0.10939475148916245, + 0.054949842393398285, + 0.04465562477707863, + -0.06047319248318672, + -0.03626101464033127, + -0.02445066347718239, + 0.05904939025640488, + 0.008095518685877323, + 0.004311724100261927, + 0.008392898365855217, + -0.09884943813085556, + -0.01851413957774639, + 0.011250479146838188, + 0.024044185876846313, + -0.04531735181808472, + 0.0076326727867126465, + 0.03453544154763222, + -0.028736719861626625, + -0.03961591795086861, + -0.0428808368742466, + -0.03545932471752167, + 0.04343848675489426, + 0.04605169594287872, + 0.0011453229235485196, + 0.01971050165593624, + 0.08769790828227997, + -0.03495250642299652, + 0.009733963757753372, + -0.04236878082156181, + -0.018025869503617287, + 0.00547324912622571, + -0.07144366949796677, + -0.15602782368659973, + -0.07814330607652664, + -0.02665494568645954, + 0.05637907236814499, + 0.014307517558336258, + 0.07937999069690704, + 0.024233704432845116, + -0.04000420123338699, + -0.012852109968662262, + 0.0027299372013658285, + 0.0005465692956931889, + 0.027383308857679367, + -0.009143505245447159, + 0.056102752685546875, + -0.049247998744249344, + -0.06433980911970139, + -0.014462697319686413, + 0.10350262373685837, + -0.01829560101032257, + 0.04108285903930664, + -0.02326890639960766, + 0.08585768938064575, + 0.04091031104326248, + -0.0011869987938553095, + -0.022952040657401085, + -0.04100792109966278, + -0.056266460567712784, + 0.016073264181613922, + 0.03423720970749855, + -0.010852291248738766, + -0.04832838103175163, + -0.017424292862415314, + 0.01381478551775217, + 0.05142126604914665, + -0.026557132601737976, + 0.027314888313412666, + 0.02557922713458538, + -0.012890179641544819, + 0.17513878643512726, + -0.1154506579041481, + -0.015752451494336128, + 0.06839616596698761, + -0.05241228640079498, + 0.09122215211391449, + 0.08388514071702957, + 0.04760526120662689, + -0.028945883736014366, + -0.07170569151639938, + -0.020825115963816643, + 0.030327610671520233, + -0.05874786525964737, + 0.004016792867332697, + -0.010477924719452858, + -0.01654236577451229, + -0.0732058584690094, + 5.971164164001743e-34, + 0.07164346426725388, + 0.05217511206865311, + 0.016160529106855392, + -0.06841323524713516, + -0.06755833327770233, + 0.04665219411253929, + -0.004693444352596998, + 0.00031840623705647886, + 0.07171760499477386, + 0.061699967831373215, + 0.09415264427661896, + 0.07024367153644562, + 0.08393457531929016, + 0.012631514109671116, + -0.03485824167728424, + -0.04916644096374512, + 0.1297716647386551, + 0.0595424547791481, + -0.03169620409607887, + 0.05939070135354996, + -0.0581466406583786, + -0.06262747198343277, + -0.09283027797937393, + -0.0010189485037699342, + -0.02233520895242691, + 0.007893665693700314, + 0.08735056966543198, + 0.09186222404241562, + -0.07434500008821487, + -0.05435573309659958, + -0.027708543464541435, + -0.03246752545237541, + -0.013077199459075928, + 0.10782887786626816, + -0.040215279906988144, + -0.005451770033687353, + 0.04542098566889763, + -0.013885730877518654, + -0.035971637815237045, + 0.04684513434767723, + 0.03473750501871109, + 0.051500268280506134, + 0.07495145499706268, + 0.013927451334893703, + -0.07607041299343109, + 0.026574142277240753, + -0.034379251301288605, + -0.043777111917734146, + -0.03379166126251221, + 0.013844659551978111, + 0.012593140825629234, + 0.030355999246239662, + -0.00035146326990798116, + -0.004434695467352867, + -0.033785395324230194, + -0.011913569644093513, + -0.016018042340874672, + 0.02229185774922371, + 0.0007486388203687966, + 0.026791740208864212, + 0.05072281137108803, + 0.06692288815975189, + 0.04526348412036896, + 0.04562171548604965, + 0.030937442556023598, + -0.10586696863174438, + -0.0076384409330785275, + 0.0563545823097229, + -0.013939429074525833, + -0.0626307800412178, + 0.09863509982824326, + 0.027774255722761154, + -0.01812695525586605, + 0.041733719408512115, + 0.008990577422082424, + -0.005182720720767975, + 0.059005413204431534, + -0.09683003276586533, + -0.037363965064287186, + 0.029833916574716568, + -0.05256865173578262, + -0.06158916652202606, + -0.016941094771027565, + -0.02060607820749283, + -0.02749769762158394, + -0.019405247643589973, + -0.012351388111710548, + 0.037350792437791824, + 0.010057914070785046, + 0.0012324005365371704, + -0.06515006721019745, + 0.06521302461624146, + 0.09663866460323334, + -0.08947458118200302, + -0.04955267533659935, + -1.6257265755825756e-08, + -0.059337418526411057, + -0.07934067398309708, + 0.04633776471018791, + -0.0603780560195446, + 0.0645691379904747, + -0.005641025025397539, + -0.023713214322924614, + -0.00825453456491232, + -0.03550415858626366, + -0.009832832962274551, + 0.052229367196559906, + 0.08925159275531769, + -0.04907751455903053, + -0.006296280771493912, + -0.03480289503931999, + 0.08881287276744843, + -0.052400749176740646, + -0.03150318190455437, + -0.002582392655313015, + -0.04295668378472328, + -0.018439557403326035, + 0.004804099909961224, + 0.07417839765548706, + -0.0014052274636924267, + -0.03739365562796593, + -0.016079062595963478, + -0.10231387615203857, + -0.019910387694835663, + 0.019710352644324303, + 0.04991087689995766, + 0.02108524739742279, + 0.056650999933481216, + 0.0358867421746254, + 0.042237360030412674, + -0.11078812927007675, + 0.05542068928480148, + 0.043092548847198486, + 0.053600091487169266, + -0.003133104182779789, + 0.07482264935970306, + 0.001395641127601266, + -0.057412222027778625, + -0.03211292251944542, + -0.028178229928016663, + -0.09695984423160553, + 0.04704643785953522, + 0.11541810631752014, + 0.025867069140076637, + -0.09145792573690414, + -0.025253260508179665, + -0.006605383940041065, + -0.021246951073408127, + -0.035879235714673996, + -0.023406583815813065, + -0.01903853565454483, + -0.05560998618602753, + 0.01035291701555252, + 0.04237775877118111, + -0.034973032772541046, + 0.061132099479436874, + 0.0885094478726387, + 0.05134066194295883, + 0.036791738122701645, + -0.008556351065635681 + ], + "dot-bold||dots,circles,shapes,polygons": [ + 0.032950133085250854, + -0.029234813526272774, + -0.03965603932738304, + 0.058564312756061554, + 0.05535415932536125, + -0.09292609244585037, + 0.08520521968603134, + -0.04244471341371536, + -0.005004374776035547, + -0.0299532487988472, + -0.02053583599627018, + 0.014381028711795807, + 0.05895734205842018, + -0.017973430454730988, + 0.0318741612136364, + 0.007963401265442371, + -0.0006377400131896138, + 0.012830926105380058, + 0.04872216656804085, + -0.046221841126680374, + -0.002488851547241211, + -0.03135872259736061, + 0.014881277456879616, + 0.0534442700445652, + 0.04450415447354317, + 0.09871822595596313, + 0.058000627905130386, + -0.030691875144839287, + -0.015142951160669327, + -0.0730096697807312, + -0.04876278340816498, + 0.01676768623292446, + 0.05633407086133957, + -0.03678733855485916, + 0.005104756914079189, + -0.010162967257201672, + -0.024071989580988884, + 0.09537213295698166, + 0.017241334542632103, + 0.03826262056827545, + 0.01826426200568676, + -0.03687094897031784, + 0.09312427043914795, + 0.02357327751815319, + -0.018817344680428505, + 0.02415233850479126, + -0.13621315360069275, + 0.029287388548254967, + -0.017228446900844574, + 0.0003067650832235813, + 0.002738649258390069, + -0.13131071627140045, + -0.11951389163732529, + -0.014685743488371372, + 0.02842625230550766, + -0.02263380028307438, + -0.04798141121864319, + 0.0071109989657998085, + 0.056905586272478104, + -0.06528985500335693, + 0.04499411955475807, + -0.025699451565742493, + 0.03503389656543732, + 0.06153173744678497, + -0.01006390992552042, + 0.0328352153301239, + 0.006415802054107189, + -0.011355957016348839, + -0.04295087605714798, + 0.014554284512996674, + 0.028792977333068848, + 0.11573003977537155, + -0.04023771733045578, + -0.020131338387727737, + -0.03224579244852066, + 0.05588529631495476, + 0.006986356806010008, + -0.013696473091840744, + -0.011953325010836124, + -0.04469897225499153, + -0.08621599525213242, + 0.03432310372591019, + 0.024036524817347527, + 0.029294054955244064, + 0.0467551052570343, + 0.14182153344154358, + -0.051127634942531586, + -0.10825403034687042, + -0.02890125848352909, + -0.005298747681081295, + -0.04779481887817383, + 0.015621737577021122, + -0.004132756497710943, + 0.052078086882829666, + -0.07315096259117126, + -0.011688575148582458, + 0.0907566025853157, + 0.018973466008901596, + -0.04653952643275261, + 0.09355723857879639, + 0.06769672781229019, + -0.030630113556981087, + 0.025064855813980103, + -0.043686624616384506, + -0.025455458089709282, + 0.03234833851456642, + 0.0016551204025745392, + -0.07098815590143204, + 0.05610475316643715, + 0.09135980159044266, + -0.035271793603897095, + -0.05280043184757233, + -0.030428752303123474, + -0.07566997408866882, + -0.06360206753015518, + -0.07499683648347855, + -0.08273126184940338, + -0.0035629034973680973, + 0.14006926119327545, + 0.04165290668606758, + 0.04617856442928314, + -0.05962696671485901, + -0.06751944124698639, + -0.03517598658800125, + 0.03654227405786514, + 0.039617642760276794, + -0.03886864334344864, + -1.7733436144818026e-33, + 0.009396317414939404, + 0.031121382489800453, + 0.010191795416176319, + 0.05194297432899475, + -0.047085508704185486, + -0.0004245089367032051, + 0.014388185925781727, + -0.08922223001718521, + -0.01049098838120699, + -0.01470568310469389, + -0.04442803934216499, + 0.07274693995714188, + -0.005984150338917971, + 0.055831268429756165, + 0.1185298040509224, + -0.0753328949213028, + 0.12074748426675797, + 0.01977105811238289, + -0.11910301446914673, + -0.04738501086831093, + -0.034329839050769806, + 0.014895970933139324, + -0.09903017431497574, + 0.003478612285107374, + -0.0848294273018837, + 0.034677259624004364, + -0.016151394695043564, + 0.005220833234488964, + -0.051312025636434555, + 0.055884797126054764, + -0.003629932412877679, + 0.013605314306914806, + 0.041964493691921234, + 0.06964240223169327, + -0.019694382324814796, + 0.042365290224552155, + -0.06271053105592728, + -0.03779684379696846, + -0.006217445246875286, + -0.021855346858501434, + -0.031721215695142746, + -0.05294986441731453, + -0.0063671451061964035, + -0.016818230971693993, + -0.0072161415591835976, + 0.12682634592056274, + -0.0007426023948937654, + -0.04487676918506622, + -0.05856374651193619, + 0.0016409935196861625, + -0.04414716362953186, + -0.0002533856895752251, + 0.0043047345243394375, + -0.023547207936644554, + 0.043145716190338135, + -0.030827276408672333, + -0.019675910472869873, + 0.001483714091591537, + -0.025324171409010887, + 0.019230933859944344, + 0.03548312187194824, + 0.042839862406253815, + 0.036128245294094086, + -0.023044368252158165, + -0.0962662622332573, + 0.009724154137074947, + -0.08424482494592667, + -0.005646121688187122, + 0.05690278112888336, + -0.0032200913410633802, + 0.0341319777071476, + 0.11533055454492569, + -0.019120406359434128, + 0.021684585139155388, + -0.024769827723503113, + 0.056171514093875885, + 0.03408868610858917, + -0.012089397758245468, + 0.005633485037833452, + -0.022415222600102425, + -0.07206510752439499, + -0.032022297382354736, + -0.07489994168281555, + -0.07406914979219437, + 0.03777148947119713, + -0.0012912622187286615, + 0.031243285164237022, + -0.042164407670497894, + -0.03692929074168205, + -0.0414578914642334, + -0.01984557695686817, + -0.03958853334188461, + 0.02233234792947769, + 0.008376187644898891, + -0.15723472833633423, + -8.832821590777098e-34, + -0.05250527337193489, + 0.04246082529425621, + -0.027727199718356133, + 0.0004329267831053585, + -0.045624565333127975, + 0.013530992902815342, + 0.0015765237621963024, + -0.009813794866204262, + -0.04394805431365967, + -0.01624135486781597, + -0.0326957106590271, + 0.007804160937666893, + -0.01980600319802761, + -0.04754914343357086, + -0.011955809779465199, + 0.015130697749555111, + 0.0476701483130455, + 0.02798553742468357, + -0.022903097793459892, + 0.0012731115566566586, + -0.058209002017974854, + -0.02283380553126335, + -0.08429091423749924, + 0.028185151517391205, + -0.036770422011613846, + 0.018503211438655853, + -0.038855161517858505, + -0.09022320806980133, + -0.08706270903348923, + 0.051387593150138855, + -0.07229018956422806, + -0.05592043697834015, + 0.06434976309537888, + 0.07996965944766998, + -0.03669092059135437, + -0.06354163587093353, + 0.02816605009138584, + -0.11709940433502197, + 0.04426268860697746, + -0.03756202012300491, + -0.017011798918247223, + -0.010694640688598156, + 0.0526389442384243, + 0.05608205869793892, + -0.0014932219637557864, + -0.015911655500531197, + 0.02743886224925518, + 0.026321837678551674, + -0.007094619330018759, + 0.0530502125620842, + -0.01786750555038452, + -0.024684563279151917, + 0.06401681154966354, + 0.003300010459497571, + -0.035921644419431686, + -0.04096495732665062, + -0.054985806345939636, + 0.06670285016298294, + 0.0028572585433721542, + 0.013580434024333954, + -0.08612911403179169, + -0.016584908589720726, + -0.05077101290225983, + 0.1252855807542801, + 0.04473769664764404, + -0.019695397466421127, + 0.02523037977516651, + -0.038075048476457596, + -0.014566687867045403, + -0.001416481682099402, + 0.09863102436065674, + 0.038459230214357376, + -0.04441677778959274, + 0.04048164561390877, + 0.019694436341524124, + -0.07585582137107849, + 0.07995636761188507, + 0.020529888570308685, + -0.06280834972858429, + 0.07950284332036972, + -0.027049390599131584, + 0.007735133171081543, + 0.033309850841760635, + 0.09123732894659042, + -0.03273080661892891, + 0.021810954436659813, + 0.012383619323372841, + -0.02480834722518921, + 0.018879305571317673, + 0.07460005581378937, + -0.03354163467884064, + 0.08867429196834564, + 0.04046976938843727, + 0.08298107236623764, + 0.0524928979575634, + -1.9105193871382653e-08, + -0.012913668528199196, + -0.04654901847243309, + -0.04305480420589447, + -0.05085257813334465, + 0.06058700755238533, + -0.03942885249853134, + -0.02415698580443859, + -0.03728300333023071, + -0.07260698825120926, + 0.015168223530054092, + 0.023037828505039215, + 0.02001454494893551, + -0.07901536673307419, + -0.036488208919763565, + 0.07120008021593094, + 0.03106745518743992, + 0.02849084511399269, + 0.062498390674591064, + -0.022645696997642517, + -0.01013873890042305, + -0.025328153744339943, + 0.033834271132946014, + 0.0472215935587883, + 0.004829109646379948, + 0.0011622871970757842, + -0.012086962349712849, + -0.026837628334760666, + -0.03275368735194206, + 0.07671914994716644, + 0.037741970270872116, + -0.017111917957663536, + 0.06006113067269325, + 0.04921959340572357, + -0.02497837133705616, + -0.06278907507658005, + 0.0035051896702498198, + -0.018880929797887802, + 0.07164609432220459, + -0.02707486040890217, + 0.1541098803281784, + -0.03485000878572464, + -0.01263636164367199, + 0.057232651859521866, + -0.06445712596178055, + 0.006865192204713821, + 0.055400650948286057, + 0.0022619895171374083, + -0.0456862710416317, + -0.07552649825811386, + -0.13284312188625336, + -0.07736267894506454, + 0.03966732695698738, + 0.015835018828511238, + 0.07596512138843536, + -0.006671050563454628, + -0.054660212248563766, + -0.00010903713700827211, + 0.08674982190132141, + 0.0031814388930797577, + 0.027952764183282852, + 0.07479889690876007, + 0.05033111199736595, + 0.04714268073439598, + -0.006253642495721579 + ], + "dot-outline-bold||dots,circles,shapes,polygons": [ + 0.043410494923591614, + -0.01913946308195591, + -0.03719634190201759, + 0.0724978819489479, + 0.06463855504989624, + -0.07410672307014465, + 0.0777629092335701, + -0.02903524786233902, + 0.004334364552050829, + -0.017410622909665108, + -0.033898040652275085, + 0.0143378134816885, + 0.018396509811282158, + -0.0160265751183033, + 0.021343737840652466, + 0.0016146645648404956, + -0.0004571899480652064, + -0.01128802914172411, + 0.051676347851753235, + -0.04922591522336006, + 0.018365072086453438, + -0.023522058501839638, + 0.0007606286089867353, + 0.03726349025964737, + 0.032771021127700806, + 0.0929548591375351, + 0.03225753456354141, + -0.03728393837809563, + -0.03179919347167015, + -0.07336809486150742, + -0.05203303322196007, + 0.013604159466922283, + 0.07357996702194214, + -0.040789227932691574, + 0.024213077500462532, + -0.02012116275727749, + -0.02209567464888096, + 0.11270961165428162, + 0.012198535725474358, + 0.021956101059913635, + 0.0029049902223050594, + -0.0498238205909729, + 0.059192683547735214, + 0.040133893489837646, + -0.012431858107447624, + 0.004377543926239014, + -0.1334250271320343, + 0.024470271542668343, + -0.010330255143344402, + 0.011036554351449013, + 0.00012250186409801245, + -0.1498054713010788, + -0.1255677342414856, + -0.022545812651515007, + 0.03201551362872124, + 0.009799139574170113, + -0.05944022536277771, + 0.025511108338832855, + 0.0281989686191082, + -0.04717114940285683, + 0.02133946307003498, + -0.02396063320338726, + 0.03990419581532478, + 0.047612495720386505, + 0.01367407850921154, + 0.017615674063563347, + -0.004921775311231613, + -0.00027760746888816357, + -0.02146216668188572, + 0.02515706792473793, + 0.032613035291433334, + 0.10541011393070221, + -0.049931466579437256, + -0.030138054862618446, + -0.02683536522090435, + 0.037180349230766296, + -0.02444208227097988, + 0.008624035865068436, + -0.022729968652129173, + -0.09940621256828308, + -0.09822429716587067, + 0.04082140326499939, + 0.012222572229802608, + 0.040308065712451935, + 0.060654595494270325, + 0.15419986844062805, + -0.0263683944940567, + -0.11061606556177139, + -0.051694106310606, + 0.0074293846264481544, + -0.044184960424900055, + 0.0029587522149086, + -0.0017117634415626526, + 0.061330776661634445, + -0.09556930512189865, + -0.01835215650498867, + 0.08437143266201019, + 0.0028221248649060726, + -0.03418579697608948, + 0.07747073471546173, + 0.05443160608410835, + -0.02447993867099285, + 0.026644865050911903, + -0.04754793643951416, + -0.037471625953912735, + 0.02054748684167862, + -0.004525143187493086, + -0.09139381349086761, + 0.036709487438201904, + 0.06966065615415573, + -0.032796960324048996, + -0.07126548886299133, + -0.048304587602615356, + -0.06352190673351288, + -0.04773213714361191, + -0.07272021472454071, + -0.062272485345602036, + -0.010881220921874046, + 0.1435919553041458, + 0.05046328157186508, + 0.03841794654726982, + -0.04562476649880409, + -0.0493762344121933, + -0.031130125746130943, + 0.009276038967072964, + 0.019239794462919235, + -0.04110279306769371, + -2.2734802775711997e-33, + 0.01694657653570175, + 0.02161485143005848, + -0.01980556547641754, + 0.05857463926076889, + -0.03987213969230652, + -0.01806120201945305, + 0.01763947494328022, + -0.0808320865035057, + -0.03830371052026749, + -0.0009067597566172481, + -0.006093630101531744, + 0.027610260993242264, + -0.0060890731401741505, + 0.086004339158535, + 0.10588118433952332, + -0.08437860757112503, + 0.10663555562496185, + 0.04758261889219284, + -0.12971967458724976, + -0.038583386689424515, + -0.04209257662296295, + 0.04731002077460289, + -0.09238901734352112, + -0.030247697606682777, + -0.03966609761118889, + 0.02274821326136589, + -0.030767027288675308, + -0.000765632139518857, + -0.04699350520968437, + 0.057372383773326874, + -0.00038944787229411304, + 0.010708289220929146, + 0.04700623080134392, + 0.04411006718873978, + -0.045414771884679794, + 0.06735006719827652, + -0.047198254615068436, + -0.05519644170999527, + -0.006570450030267239, + -0.03880005702376366, + -0.03759070113301277, + -0.07211476564407349, + 0.010619291104376316, + -0.022159231826663017, + -0.020344829186797142, + 0.13305087387561798, + 0.006595446262508631, + -0.04506903514266014, + -0.055878303945064545, + -0.02534458599984646, + -0.02974488027393818, + -0.004015692975372076, + 0.02923666499555111, + -0.03160076215863228, + 0.036039192229509354, + -0.04007832333445549, + -0.04442205652594566, + 0.05396198853850365, + 0.0037620060611516237, + 0.02807117998600006, + 0.07433074712753296, + 0.052523210644721985, + -0.026527808979153633, + 0.006456208880990744, + -0.10550114512443542, + 0.008497178554534912, + -0.07797034084796906, + 0.004884759429842234, + 0.07051242887973785, + -0.014408128336071968, + 0.01806400902569294, + 0.12022385746240616, + 0.0065539004281163216, + 0.03661742061376572, + -0.010494108311831951, + 0.0413980595767498, + 0.02618282474577427, + -0.011779183521866798, + -0.008012412115931511, + -0.03412643447518349, + -0.08149467408657074, + -0.015701958909630775, + -0.0562019981443882, + -0.0854165107011795, + 0.02941138856112957, + 0.011101333424448967, + 0.048513591289520264, + -0.006200006231665611, + -0.04661057889461517, + -0.021091662347316742, + -0.04281330108642578, + -0.018670160323381424, + 0.03642993047833443, + 0.007584146689623594, + -0.14204539358615875, + -6.90918018695412e-34, + -0.02361583150923252, + 0.047626107931137085, + -0.021629834547638893, + -0.005384037736803293, + -0.06272755563259125, + 0.035417694598436356, + -0.007013501133769751, + -0.019200626760721207, + -0.04366541653871536, + -0.021352900192141533, + -0.03111361898481846, + 0.027041902765631676, + -0.026171013712882996, + -0.034514740109443665, + -0.03746998682618141, + -0.011246839538216591, + 0.02730129100382328, + 0.012182313948869705, + -0.01089373230934143, + -0.024557113647460938, + -0.08818330615758896, + -0.04188938066363335, + -0.08972828090190887, + 0.013757939450442791, + -0.03670836240053177, + 0.011047128587961197, + -0.02532239630818367, + -0.09123937785625458, + -0.08753824234008789, + 0.03716738522052765, + -0.06466133147478104, + -0.06479305773973465, + 0.048538099974393845, + 0.055718425661325455, + -0.04446665942668915, + -0.07133039832115173, + 0.02810707315802574, + -0.12034768611192703, + 0.05889151617884636, + -0.021912071853876114, + -0.026812531054019928, + -0.010598694905638695, + 0.08419666439294815, + 0.051308635622262955, + -0.01366366259753704, + -0.020869573578238487, + 0.025375813245773315, + 0.059136588126420975, + -0.024229615926742554, + 0.04781380295753479, + -0.009016250260174274, + -0.02399568445980549, + 0.06259912997484207, + -0.011806920170783997, + -0.033210478723049164, + -0.009457798674702644, + -0.030086098238825798, + 0.04167650267481804, + 0.022694090381264687, + 0.010582463815808296, + -0.06366461515426636, + -0.005666113458573818, + -0.0650295615196228, + 0.12119744718074799, + 0.07167037576436996, + -0.025647571310400963, + 0.016777949407696724, + -0.024122385308146477, + -0.005204767920076847, + -0.006524625234305859, + 0.07916232198476791, + 0.027824504300951958, + -0.04520658403635025, + 0.04065096005797386, + 0.031722038984298706, + -0.087042436003685, + 0.0834294781088829, + 0.012419821694493294, + -0.06220182403922081, + 0.07741538435220718, + -0.02805856429040432, + 0.018335025757551193, + 0.012311208993196487, + 0.06343987584114075, + 0.009209289215505123, + 0.017441418021917343, + -0.008070078678429127, + -0.0026050482410937548, + 0.01860950142145157, + 0.06363476812839508, + -0.031983740627765656, + 0.04873925447463989, + 0.07054288685321808, + 0.08238916844129562, + 8.122882718453184e-06, + -1.9648750182454933e-08, + 0.013306377455592155, + -0.03762519359588623, + -0.022773683071136475, + -0.05295303463935852, + 0.05983529984951019, + -0.044032491743564606, + -0.010508496314287186, + -0.02069922722876072, + -0.0540001280605793, + 0.00031347660114988685, + 0.0162226352840662, + 0.011471681296825409, + -0.11286024004220963, + -0.024767335504293442, + 0.08293180912733078, + 0.01952601782977581, + 0.02604822628200054, + 0.09296642243862152, + -0.02316134050488472, + -0.022962667047977448, + -0.04197145253419876, + 0.028477778658270836, + 0.01243856642395258, + 0.02135484293103218, + 0.012322656810283661, + 0.009487127885222435, + -0.02346058562397957, + 0.0017433221219107509, + 0.08094436675310135, + 0.06621590256690979, + -0.01796228438615799, + 0.09559972584247589, + 0.06313274055719376, + -0.004580209963023663, + -0.045795097947120667, + -0.005444888956844807, + -0.026764679700136185, + 0.07231571525335312, + -0.01840207166969776, + 0.1551809012889862, + 0.012277938425540924, + -0.017419779673218727, + 0.06941621005535126, + -0.061608150601387024, + 0.018688250333070755, + 0.03213498741388321, + -0.002510864520445466, + -0.029187047854065895, + -0.0753108486533165, + -0.13430088758468628, + -0.07020577043294907, + 0.04216942563652992, + 0.01833678036928177, + 0.08333040028810501, + -0.006436210125684738, + -0.041211631149053574, + 0.017359580844640732, + 0.07303690165281296, + -0.0028962052892893553, + 0.01518840529024601, + 0.09485737979412079, + 0.06304806470870972, + 0.055438973009586334, + 0.014333847910165787 + ], + "dots-nine-bold||grid,circles,shapes,polygons,9": [ + 0.015662597492337227, + -0.01571836695075035, + -0.05242666229605675, + 0.043702464550733566, + 0.072249636054039, + 0.0031552754808217287, + 0.10111609101295471, + 0.01833789236843586, + -0.03409696742892265, + -0.05023375526070595, + -0.009166514500975609, + -0.007691177073866129, + 0.017207160592079163, + -0.030647262930870056, + -0.016286389902234077, + -0.04745332896709442, + -0.014156474731862545, + -0.016892191022634506, + 0.0024923074524849653, + -0.041479695588350296, + 0.0016755604883655906, + -0.05542801693081856, + 0.04642026126384735, + 0.05844525620341301, + 0.07837329059839249, + 0.0887138769030571, + 0.028819439932703972, + 0.02359367161989212, + -0.010246741585433483, + -0.06134473904967308, + -0.05713624879717827, + 0.02923293225467205, + 0.032884541898965836, + 0.03736596181988716, + 0.02386174164712429, + -0.008527984842658043, + -0.02509520761668682, + 0.10069777071475983, + -0.011006943881511688, + 0.07139565050601959, + 0.04695457965135574, + -0.10169708728790283, + 0.08485037088394165, + 0.004127283114939928, + -0.02596149407327175, + 0.005391808692365885, + -0.09589026123285294, + 0.03144017606973648, + -0.03150491788983345, + 0.027016276493668556, + -0.048122528940439224, + -0.10833306610584259, + -0.11598238348960876, + 0.0018086675554513931, + 0.07238078862428665, + -0.08222535997629166, + -0.004696601536124945, + -0.030741143971681595, + 0.04396885633468628, + -0.06551892310380936, + 0.04428104683756828, + -0.00010807379294419661, + 0.011456153355538845, + 0.06958988308906555, + -0.019908959046006203, + 0.02005845494568348, + -0.006622218061238527, + -0.047194696962833405, + -0.0645042136311531, + 0.03572280704975128, + 0.09036283195018768, + 0.10119838267564774, + -0.07283952832221985, + -0.06923434883356094, + -0.038432832807302475, + 0.060255322605371475, + -0.020026668906211853, + -0.05445515736937523, + -0.05691097304224968, + -0.02113407850265503, + -0.03884008526802063, + 0.1012202650308609, + 0.03774460405111313, + 0.05427590012550354, + -0.022147180512547493, + 0.07835680991411209, + -0.0462016761302948, + -0.013004759326577187, + -0.05147944763302803, + -0.04776134341955185, + -0.04397140070796013, + 0.04807247966527939, + 0.027646897360682487, + 0.07137452065944672, + -0.1438012272119522, + 0.04428581893444061, + 0.09285690635442734, + 0.011463354341685772, + -0.04654115438461304, + 0.07998062670230865, + 0.0502745546400547, + -0.01476003136485815, + 0.02401892840862274, + -0.004974757321178913, + -0.020749105140566826, + 0.019569160416722298, + 0.016177669167518616, + -0.033422552049160004, + 0.0353783443570137, + 0.05083531141281128, + -0.021572783589363098, + -0.10014524310827255, + -0.05011965334415436, + -0.04855955392122269, + -0.020059166476130486, + -0.08474832028150558, + -0.055884141474962234, + -0.014652292244136333, + 0.1067601889371872, + 0.04087071120738983, + 0.02733210101723671, + -0.0916389673948288, + -0.04156714677810669, + -0.04924574866890907, + -0.0067055802792310715, + 0.08226507157087326, + -0.051187340170145035, + -2.4789026908231947e-33, + -0.005918305367231369, + 0.008512139320373535, + 0.030089618638157845, + 0.03558661788702011, + 0.014383883215487003, + -0.050821151584386826, + -0.022516053169965744, + -0.06576036661863327, + -0.01572347991168499, + 0.034900590777397156, + -0.0604986734688282, + 0.07401526719331741, + 0.0031901556067168713, + 0.04301729425787926, + 0.1077369749546051, + -0.07203491777181625, + 0.11789804697036743, + 0.01631864346563816, + -0.09985394030809402, + -0.0744451954960823, + -0.009660614654421806, + 0.021340902894735336, + -0.06571858376264572, + -0.03784388303756714, + -0.018011394888162613, + 0.0313093401491642, + -0.029052410274744034, + 0.03663334250450134, + -0.009348548017442226, + 0.013693436980247498, + 0.016168199479579926, + 0.038750097155570984, + 0.019440408796072006, + 0.025082645937800407, + 0.04538594186306, + 0.02753118984401226, + -0.007525674067437649, + -0.01573549211025238, + 0.048112355172634125, + -0.03590158373117447, + -0.04893592745065689, + -0.08111591637134552, + 0.023390013724565506, + -0.02981291338801384, + 0.10377069562673569, + 0.08985166996717453, + 0.02519901655614376, + -0.061567459255456924, + -0.013264217413961887, + -0.02158827893435955, + -0.021580863744020462, + 0.009362665005028248, + 0.024702390655875206, + 0.017489053308963776, + 0.03505168482661247, + -0.06002460792660713, + -0.0034105211962014437, + 0.045067474246025085, + -0.027838872745633125, + 0.056367043405771255, + 0.07340463250875473, + -0.020668264478445053, + 0.015703469514846802, + -0.03819912672042847, + -0.04728764295578003, + 0.006949645932763815, + -0.04421259090304375, + -0.014983930625021458, + 0.07690728455781937, + -0.01661406271159649, + 0.014554847963154316, + 0.060534171760082245, + 0.01188421156257391, + 0.02929425984621048, + 0.019398627802729607, + 0.04498111456632614, + 0.028205642476677895, + 0.03292163833975792, + 0.021191198378801346, + -0.038358647376298904, + -0.025949601083993912, + -0.005159118678420782, + -0.09166662395000458, + -0.01905456930398941, + 0.03920777514576912, + 0.003519488498568535, + 0.013317412696778774, + -0.019421247765421867, + -0.039834000170230865, + -0.05252770334482193, + -0.025648416951298714, + -0.034740157425403595, + 0.02673477679491043, + -0.022424783557653427, + -0.16397687792778015, + -5.280594752849747e-34, + -0.04894616827368736, + 0.04948727414011955, + -0.08422635495662689, + -0.027414750307798386, + -0.036156173795461655, + 0.02786456048488617, + 0.012495268136262894, + -0.035018980503082275, + -0.06830299645662308, + -0.02476251870393753, + -0.016568830236792564, + -0.00029186601750552654, + 0.007309805601835251, + -0.08069976419210434, + -0.03297435864806175, + -0.001452790922485292, + 0.04129979386925697, + 0.08592858910560608, + -0.03954116255044937, + -0.02965727634727955, + -0.03224046528339386, + 0.003610167885199189, + -0.07888679206371307, + 0.04397604241967201, + -0.0031494605354964733, + -0.00240727374330163, + 0.057303912937641144, + -0.087323397397995, + -0.01994885690510273, + 0.09507163614034653, + -0.09485039860010147, + -0.0673488974571228, + 0.02263917587697506, + 0.07820942997932434, + -0.04806149750947952, + -0.0729241594672203, + 0.03786998242139816, + -0.10040118545293808, + 0.014268406666815281, + -0.04055371880531311, + 0.0020329707767814398, + -0.03995407372713089, + 0.07850734144449234, + 0.05073228105902672, + -0.0040417821146547794, + 0.002205902012065053, + 0.007405775133520365, + 0.06442731618881226, + -0.06879407167434692, + 0.08663251250982285, + -0.0211971253156662, + -0.05495263263583183, + 0.023316923528909683, + 0.00018611017731018364, + -0.02632349543273449, + -0.010093819350004196, + -0.015248063020408154, + 0.0754270926117897, + 0.03126198425889015, + 0.0026926978025585413, + -0.09174780547618866, + 0.027621285989880562, + -0.017194829881191254, + 0.10913795232772827, + 0.015535037033259869, + 0.0058889975771307945, + 0.0030560758896172047, + -0.030779335647821426, + -0.02909240312874317, + -0.041927918791770935, + 0.06260615587234497, + 0.03743207827210426, + -0.06465979665517807, + 0.02282308228313923, + 0.006946150679141283, + -0.09114708751440048, + 0.05157202109694481, + 0.06276679039001465, + -0.008256635628640652, + 0.09482025355100632, + -0.022251391783356667, + -0.0072013442404568195, + 0.013275276869535446, + 0.04776325449347496, + -0.012153979390859604, + -0.015805736184120178, + 0.0658804178237915, + 0.015798097476363182, + 0.0330406092107296, + 0.048533741384744644, + 0.04179826006293297, + 0.08421295136213303, + 0.06208112835884094, + 0.03173375502228737, + 0.0329049713909626, + -1.9805655782079157e-08, + 0.01890542171895504, + -0.04665115848183632, + 0.017129702493548393, + -0.08764278143644333, + 0.06698019057512283, + -0.07609216868877411, + 0.0075664222240448, + -0.031132113188505173, + -0.08400150388479233, + 0.04859059676527977, + 0.08136444538831711, + -0.01086164079606533, + -0.08480215072631836, + -0.022104941308498383, + 0.05869990587234497, + -0.018630972132086754, + 0.024004587903618813, + 0.07324019819498062, + -0.012705802917480469, + -0.014644626528024673, + -0.06596695631742477, + 0.001806120271794498, + 0.060840897262096405, + 0.014364968985319138, + -0.0012438243720680475, + 0.028764881193637848, + -0.08507704734802246, + -0.04349188879132271, + 0.07008642703294754, + 0.03253396600484848, + 0.03675612434744835, + 0.05620773881673813, + 0.015634004026651382, + -0.04279692843556404, + -0.08379510790109634, + -0.022782716900110245, + 0.003449635347351432, + 0.051456328481435776, + -0.001123944646678865, + 0.07416646182537079, + -0.06186965852975845, + -0.0720691978931427, + 0.03410644456744194, + -0.05659250542521477, + -0.03810745105147362, + 0.042358387261629105, + 0.0004475462483242154, + -0.006254762411117554, + -0.07248738408088684, + -0.1291825771331787, + -0.04841359704732895, + 0.02303145080804825, + 0.019345054402947426, + 0.00844001118093729, + -0.04140671342611313, + -0.11128199100494385, + 0.02680007554590702, + 0.06411408632993698, + -0.0019010924734175205, + 0.08071664720773697, + 0.07680601626634598, + 0.08112379163503647, + 0.04091128706932068, + -0.04343937337398529 + ], + "dots-six-bold||*updated*,drag handle,knurling,circles,shapes,polygons,6": [ + -0.013585872948169708, + -0.01432143896818161, + -0.017187055200338364, + 0.047912534326314926, + 0.006652263458818197, + -0.030667534098029137, + 0.07351583987474442, + -0.053845226764678955, + -0.004584846552461386, + 0.011380824260413647, + -0.020201630890369415, + 0.01165156438946724, + 0.023397015407681465, + -0.09177196025848389, + -0.06401559710502625, + 0.01572820171713829, + -0.05955049768090248, + 0.008493093773722649, + -0.056583113968372345, + 0.014612277038395405, + -0.01788441464304924, + -0.03384155407547951, + 0.03441150113940239, + 0.05992763116955757, + 0.08472419530153275, + 0.09381099045276642, + 0.001566234976053238, + 0.008377168327569962, + 0.022528236731886864, + -0.11415558308362961, + -0.06087551638484001, + 0.08311697840690613, + 0.0019916510209441185, + -0.02865735813975334, + 0.029379356652498245, + 0.025795305147767067, + -0.007046789396554232, + 0.09159479290246964, + 0.0057426379062235355, + 0.028233058750629425, + 0.029064318165183067, + -0.10644035041332245, + 0.07918783277273178, + -0.0008090836345218122, + -0.044636327773332596, + 0.02246295101940632, + -0.13570736348628998, + 0.03818586841225624, + 0.006935540121048689, + 0.018916413187980652, + -0.008610745891928673, + -0.17891497910022736, + -0.10566923767328262, + 0.005493262782692909, + 0.05388197675347328, + -0.011665454134345055, + -0.04128900170326233, + -0.037776533514261246, + 0.08849488943815231, + -0.03993682190775871, + 0.045763008296489716, + 0.021634558215737343, + 0.02331034652888775, + 0.07771016657352448, + -0.025812149047851562, + -0.03245475888252258, + -0.014825468882918358, + -0.047962915152311325, + -0.04926590248942375, + -0.002142795594409108, + 0.011706255376338959, + 0.07810480892658234, + -0.037835411727428436, + -0.040510326623916626, + -0.030638057738542557, + 0.0016927437391132116, + -0.046164046972990036, + -0.04207426682114601, + -0.009757213294506073, + -0.054296061396598816, + -0.06059680134057999, + 0.04131437838077545, + 0.0035749722737818956, + 0.06655916571617126, + -0.0033426927402615547, + 0.09443286061286926, + -0.031168514862656593, + -0.039739638566970825, + -0.0642826184630394, + -0.026898598298430443, + -0.008928768336772919, + 0.025667408481240273, + -0.0026384792290627956, + -0.004692873451858759, + -0.15648457407951355, + 0.02985645830631256, + 0.05202757194638252, + 0.03555581346154213, + -0.024078581482172012, + 0.09165450930595398, + 0.07572393864393234, + -0.0036111408844590187, + 0.010374592617154121, + -0.026197927072644234, + -0.0006201385986059904, + 0.03933927044272423, + -0.0657426044344902, + -0.06321096420288086, + 0.0029112924821674824, + 0.09949564933776855, + -0.04566730558872223, + -0.09378107637166977, + -0.058679815381765366, + -0.03817473724484444, + -0.021560637280344963, + -0.04686379060149193, + -0.09555613994598389, + -0.016513191163539886, + 0.0793173536658287, + 0.02720954641699791, + 0.06566549837589264, + -0.04288158565759659, + -0.05068538337945938, + -0.026199327781796455, + -0.04819660261273384, + 0.03475300595164299, + 0.020488975569605827, + -1.6412924362012655e-33, + 0.011169356293976307, + 0.013453632593154907, + 0.04426516219973564, + 0.030356161296367645, + -0.009176728315651417, + -0.05986321344971657, + 0.007375023793429136, + -0.09183657914400101, + -0.05819176137447357, + 0.029079783707857132, + -0.010094577446579933, + 0.08637218922376633, + -0.02080216072499752, + 0.047837719321250916, + 0.11813528835773468, + -0.09791869670152664, + 0.12055318057537079, + 0.03622296079993248, + -0.06561166793107986, + -0.037745412439107895, + -0.0004582026449497789, + 0.007025641854852438, + -0.08152393251657486, + -0.02488747425377369, + -0.01406010426580906, + 0.06298630684614182, + -0.0017190842190757394, + 0.010598475113511086, + 0.011097174137830734, + 0.03506331890821457, + 0.005869705229997635, + 0.0365813747048378, + 0.04428134113550186, + 0.04030260443687439, + -0.05564974248409271, + 0.004427236504852772, + -0.06583521515130997, + -0.02945603057742119, + 0.017613202333450317, + -0.07840417325496674, + -0.006267394404858351, + -0.07872051000595093, + -0.08554994314908981, + 0.004207913763821125, + 0.032660361379384995, + 0.09206273406744003, + 0.051908109337091446, + -0.023997202515602112, + -0.020267171785235405, + 0.001092444988898933, + -0.05285094678401947, + 0.013275220058858395, + 0.05914459004998207, + 0.012457496486604214, + 0.02254563197493553, + -0.05175410956144333, + -0.014937681145966053, + 0.04129348322749138, + -0.038096170872449875, + 0.04425883665680885, + 0.05559039115905762, + 0.07230523228645325, + 0.01825813762843609, + 0.014421007595956326, + -0.017635837197303772, + 0.0015677789924666286, + -0.04070145636796951, + 0.012837853282690048, + 0.045167990028858185, + 0.04100998118519783, + -0.048385001718997955, + 0.10378465801477432, + 0.027435531839728355, + 0.08122872561216354, + -0.02712285704910755, + -0.018190674483776093, + 0.009035150520503521, + -0.029086865484714508, + -0.05085904523730278, + -0.037502121180295944, + -0.021977029740810394, + -0.019695252180099487, + -0.049548693001270294, + -0.040920764207839966, + 0.034221403300762177, + -0.034032415598630905, + -0.0014006902929395437, + -0.012166276574134827, + -0.04671331122517586, + -0.029868654906749725, + -0.0053266240283846855, + -0.07797782868146896, + -0.0360671728849411, + 0.004627102520316839, + -0.13284838199615479, + -8.289234432048486e-34, + 0.03846278786659241, + 0.062393706291913986, + -0.001259066048078239, + 0.006878875195980072, + -0.03086678683757782, + 0.02173803746700287, + 0.05439187213778496, + -0.002286774106323719, + -0.022420339286327362, + -0.049693513661623, + -0.07310814410448074, + 0.07194248586893082, + 0.007980385795235634, + -0.030603043735027313, + 0.013963544741272926, + 0.028978122398257256, + 0.0320611335337162, + 0.017688149586319923, + -0.02277127467095852, + -0.04243367537856102, + -0.044000424444675446, + -0.019167115911841393, + -0.1300479918718338, + 0.04424596205353737, + -0.029496144503355026, + 0.010569856502115726, + 0.034870583564043045, + -0.12370192259550095, + -0.057919763028621674, + 0.061140213161706924, + -0.05052955448627472, + -0.09569838643074036, + 0.07071849703788757, + 0.04952425882220268, + -0.02376527152955532, + -0.09045065194368362, + 0.06426572799682617, + -0.06603913754224777, + 0.02742716297507286, + 0.004402697551995516, + -0.015758782625198364, + 0.0052267094142735004, + 0.08401817828416824, + 0.07940588891506195, + 0.024659080430865288, + -0.042032040655612946, + -0.04058011993765831, + 0.05054924264550209, + -0.02379518188536167, + 0.07021661847829819, + 0.005808509886264801, + -0.03814054653048515, + 0.010220754891633987, + 0.0020511162001639605, + 0.010516182519495487, + -0.01106201484799385, + -0.01794520765542984, + 0.022891489788889885, + 0.0029615715611726046, + 0.004466624930500984, + -0.078196220099926, + -0.015768591314554214, + -0.034307193011045456, + 0.06495033204555511, + 0.02354375831782818, + 0.023346003144979477, + 0.030088605359196663, + -0.05135418847203255, + -0.06756986677646637, + -0.010121896862983704, + 0.07130599766969681, + 0.06179283186793327, + -0.027930673211812973, + -0.05590127408504486, + 0.055147260427474976, + -0.07505768537521362, + 0.08771226555109024, + 0.05022541806101799, + -0.0023225629702210426, + 0.09192249178886414, + -0.037660419940948486, + 0.04210001230239868, + 0.031907159835100174, + 0.0775001272559166, + -0.029200328513979912, + 0.05045884847640991, + 0.06773176044225693, + 0.0589120052754879, + -0.015500598587095737, + 0.04204615578055382, + -0.027374062687158585, + 0.05944876745343208, + 0.05111240595579147, + 0.050924088805913925, + 0.01652367413043976, + -2.400691734294469e-08, + 0.03488820046186447, + -0.08605393767356873, + -0.0068801273591816425, + -0.07019515335559845, + 0.11634442955255508, + 0.021083904430270195, + -0.00933094322681427, + 0.02756023220717907, + -0.08669596910476685, + -0.01994115300476551, + 0.06605751812458038, + 0.00571287190541625, + -0.05829203128814697, + -0.01105839479714632, + 0.06544148921966553, + -0.027620971202850342, + -0.008364427834749222, + 0.10167127102613449, + -0.04132426157593727, + -0.08871129155158997, + 0.029927100986242294, + 0.022498413920402527, + 0.09366898238658905, + 0.02583635225892067, + -0.0035504016559571028, + -0.03223992511630058, + -0.06166725978255272, + -0.027697280049324036, + 0.030474208295345306, + 0.01711704581975937, + 0.027283797040581703, + 0.03272993490099907, + 0.014082624576985836, + -0.02169639617204666, + -0.014590167440474033, + 0.03148368000984192, + -0.03964104875922203, + 0.07472570240497589, + -0.012065695598721504, + 0.139714315533638, + -0.009421763010323048, + -0.053642913699150085, + 0.006585318595170975, + -0.05662380903959274, + -0.0488450787961483, + 0.06591612100601196, + -0.011939981952309608, + -0.07102987170219421, + -0.09029275923967361, + -0.08894514292478561, + -0.08332541584968567, + 0.0216213446110487, + 0.0324941985309124, + 0.053926993161439896, + 0.014982515946030617, + 0.013917051255702972, + 0.010925821959972382, + 0.025987474247813225, + 0.01183047704398632, + 0.04550227150321007, + 0.04740271344780922, + 0.02684393711388111, + 0.05637304112315178, + 0.04065405949950218 + ], + "dots-six-vertical-bold||*updated*,drag handle,knurling,circles,shapes,polygons,6": [ + -0.011221351101994514, + -0.004210697486996651, + -0.02952602691948414, + 0.02264276333153248, + -0.010628372430801392, + -0.029114581644535065, + 0.04164903610944748, + -0.03240489587187767, + 0.005314200185239315, + 0.0091393468901515, + -0.012159532867372036, + 0.0343162976205349, + 0.027459267526865005, + -0.08932581543922424, + -0.0627378448843956, + 0.017086591571569443, + -0.0493992418050766, + 0.013309003785252571, + -0.06140368431806564, + 0.0011974481167271733, + -0.018787141889333725, + -0.05362825468182564, + 0.02665037289261818, + 0.052206721156835556, + 0.07484981417655945, + 0.10614191740751266, + -0.008419474586844444, + 0.01791957952082157, + 0.03586631640791893, + -0.11189369857311249, + -0.0720042809844017, + 0.07866313308477402, + 0.005941290408372879, + -0.02950933761894703, + 0.01602352410554886, + 0.011796106584370136, + 0.0032624080777168274, + 0.09074544161558151, + -0.006062120199203491, + 0.021560048684477806, + 0.02754811942577362, + -0.13024863600730896, + 0.07231372594833374, + -0.0006168060936033726, + -0.047407690435647964, + 0.03036661259829998, + -0.12409903854131699, + 0.02624516375362873, + 0.00015830805932637304, + 0.02700803428888321, + -0.0010059420019388199, + -0.17267723381519318, + -0.09808032959699631, + 0.014374058693647385, + 0.06750199943780899, + -0.001331944135017693, + -0.0327647402882576, + -0.035523515194654465, + 0.1001051589846611, + -0.038534753024578094, + 0.05758453905582428, + 0.030235769227147102, + 0.008319989778101444, + 0.0839492604136467, + -0.02491081692278385, + -0.03409409523010254, + -0.04219507426023483, + -0.030507205054163933, + -0.04864950478076935, + -0.0018805544823408127, + 0.016238460317254066, + 0.05628834292292595, + -0.033977776765823364, + -0.05084937810897827, + -0.021734438836574554, + -0.007082500495016575, + -0.044061798602342606, + -0.041294682770967484, + -0.005555527284741402, + -0.05442460998892784, + -0.04772718995809555, + 0.052189406007528305, + -0.0041770925745368, + 0.08287081122398376, + -0.0073349252343177795, + 0.0974503755569458, + -0.014919222332537174, + -0.04062625765800476, + -0.0683809369802475, + -0.027786970138549805, + -0.002257800195366144, + 0.022526435554027557, + 0.0010043755173683167, + -0.003930382430553436, + -0.1596270650625229, + 0.012726632878184319, + 0.046062108129262924, + 0.0005622280295938253, + -0.017452966421842575, + 0.08612038940191269, + 0.07248052209615707, + -0.022191228345036507, + 0.02027398906648159, + -0.022267702966928482, + -0.0026563105639070272, + 0.027099289000034332, + -0.06706345826387405, + -0.0650976374745369, + 0.006450680084526539, + 0.10574740916490555, + -0.06011369451880455, + -0.07797928154468536, + -0.05950146168470383, + -0.03156423196196556, + -0.020501986145973206, + -0.039434708654880524, + -0.1119820699095726, + -0.01906316541135311, + 0.07340165227651596, + 0.00533499987795949, + 0.07159346342086792, + -0.03087863326072693, + -0.05675327777862549, + -0.031245380640029907, + -0.03753481060266495, + 0.04596315324306488, + 0.010567557998001575, + -1.9872174647742252e-33, + 0.019355058670043945, + -0.00043852615635842085, + 0.05544601008296013, + 0.0322163924574852, + -4.1953120671678334e-05, + -0.05534105747938156, + -0.005994681268930435, + -0.08563754707574844, + -0.048037681728601456, + 0.04978518560528755, + 0.0009890982182696462, + 0.09116516262292862, + -0.03298815339803696, + 0.06974384933710098, + 0.11829879879951477, + -0.10771326720714569, + 0.1144985631108284, + 0.04615451768040657, + -0.07759788632392883, + -0.04915358126163483, + -0.001638897112570703, + -0.006298213265836239, + -0.06959011405706406, + -0.014203758910298347, + -0.00829701591283083, + 0.07020171731710434, + 0.0066525936126708984, + 0.005612900480628014, + -0.010449817404150963, + 0.03706802427768707, + -0.0055023240856826305, + 0.031623467803001404, + 0.048065945506095886, + 0.023068971931934357, + -0.05124698206782341, + 0.014860507100820541, + -0.07083528488874435, + -0.03173161670565605, + 0.01557006873190403, + -0.07717517018318176, + -0.018585089594125748, + -0.09317635744810104, + -0.08627080917358398, + -0.004552814643830061, + 0.03794762119650841, + 0.07884088158607483, + 0.05101386830210686, + -0.03475814312696457, + -0.030093379318714142, + -0.001254064030945301, + -0.04759947955608368, + 0.013106080703437328, + 0.057702187448740005, + 0.005763437133282423, + 0.0387364886701107, + -0.04402105137705803, + -0.02432851679623127, + 0.04743509739637375, + -0.05120920017361641, + 0.04511451721191406, + 0.04599198326468468, + 0.0676673948764801, + -0.0010717582190409303, + 0.013025250285863876, + -0.01768667623400688, + 4.9398418923374265e-05, + -0.04914800822734833, + 0.008754519745707512, + 0.05325126275420189, + 0.04357452318072319, + -0.03626680746674538, + 0.09486515820026398, + 0.01909121870994568, + 0.074776291847229, + -0.040472060441970825, + -0.01401771791279316, + 0.002657587407156825, + -0.02163580060005188, + -0.0399036705493927, + -0.017790356650948524, + -0.01627783104777336, + -0.024009820073843002, + -0.037610653787851334, + -0.0656418651342392, + 0.026160912588238716, + -0.03571094200015068, + 0.0020190852228552103, + -0.002040490508079529, + -0.042189568281173706, + -0.03819256275892258, + -0.023929880931973457, + -0.07527817040681839, + -0.022987885400652885, + 0.0027038876432925463, + -0.12296564131975174, + -4.330099204324461e-34, + 0.03802697733044624, + 0.058875672519207, + 0.0003781124542001635, + 0.005076175089925528, + -0.03510363772511482, + 0.028028011322021484, + 0.05174308642745018, + 0.0022503796499222517, + -0.04108138754963875, + -0.03659450635313988, + -0.07028799504041672, + 0.0794706791639328, + 0.012172774411737919, + -0.028766915202140808, + 0.02023470588028431, + 0.04092254862189293, + 0.010647390969097614, + 0.013305875472724438, + -0.015054372139275074, + -0.0388714037835598, + -0.039303846657276154, + -0.013168846257030964, + -0.1268586814403534, + 0.052992478013038635, + -0.016725316643714905, + -0.005409316159784794, + 0.04395557567477226, + -0.12075348198413849, + -0.047643259167671204, + 0.06282487511634827, + -0.030857212841510773, + -0.10355775058269501, + 0.06693895906209946, + 0.040363967418670654, + -0.018917281180620193, + -0.09682989865541458, + 0.0680164024233818, + -0.06110568717122078, + 0.0247489120811224, + -0.012883066199719906, + -0.02004951238632202, + 0.005517223384231329, + 0.09652349352836609, + 0.06719321012496948, + 0.02328576147556305, + -0.02735585905611515, + -0.05126379430294037, + 0.05048114433884621, + -0.012235923670232296, + 0.059383317828178406, + 0.002447755541652441, + -0.0389786995947361, + 0.027761921286582947, + 0.011634563095867634, + 0.020628796890378, + -0.016283126547932625, + -0.02067001350224018, + 0.020810578018426895, + 0.006220986135303974, + -0.010977501980960369, + -0.06514922529459, + -0.036210354417562485, + -0.040362898260354996, + 0.05787348374724388, + 0.026120461523532867, + 0.046048883348703384, + 0.03534765541553497, + -0.04746084660291672, + -0.09037186205387115, + -0.011546995490789413, + 0.06774331629276276, + 0.07032331824302673, + -0.022336147725582123, + -0.07071074098348618, + 0.056460145860910416, + -0.08545001596212387, + 0.08649009466171265, + 0.06434112787246704, + -0.008584621362388134, + 0.0793284922838211, + -0.04633017256855965, + 0.03455156832933426, + 0.030122002586722374, + 0.08501271158456802, + -0.04836973920464516, + 0.047819022089242935, + 0.05173885077238083, + 0.06429581344127655, + 0.002516257343813777, + 0.03440413996577263, + -0.045456454157829285, + 0.061005834490060806, + 0.02601054310798645, + 0.06617074459791183, + 0.032449666410684586, + -2.4031699297211162e-08, + 0.027335161343216896, + -0.09647880494594574, + 0.004798460751771927, + -0.06570030003786087, + 0.10430973023176193, + 0.031139569357037544, + 0.004114298149943352, + 0.047566287219524384, + -0.0602601021528244, + -0.022650735452771187, + 0.0651731863617897, + 0.013836376368999481, + -0.04948011413216591, + -0.013746259734034538, + 0.07020196318626404, + -0.027220629155635834, + -0.008170689456164837, + 0.11971697956323624, + -0.027179276570677757, + -0.07425925135612488, + 0.04491659626364708, + 0.02505350112915039, + 0.10068992525339127, + 0.042828820645809174, + -0.005020995624363422, + -0.03132648393511772, + -0.0697435662150383, + -0.02400112897157669, + 0.03731309249997139, + 0.018231969326734543, + 0.02688625082373619, + 0.03913901001214981, + 0.03378595411777496, + -0.0418211929500103, + -0.007878073491156101, + 0.04227562993764877, + -0.04361089691519737, + 0.07878246903419495, + -0.0134041178971529, + 0.1103583350777626, + -0.000477150286315009, + -0.05447588488459587, + 0.010997637175023556, + -0.05345684662461281, + -0.03274510055780411, + 0.0646999403834343, + -0.00897041242569685, + -0.04917512089014053, + -0.08642180263996124, + -0.09277274459600449, + -0.09436561167240143, + 0.03183276578783989, + 0.047227513045072556, + 0.05143728479743004, + 0.011333316564559937, + 0.01309371180832386, + 0.01368680689483881, + 0.011216312646865845, + 0.007487298920750618, + 0.034981273114681244, + 0.05446775257587433, + 0.038432229310274124, + 0.044643498957157135, + 0.030888454988598824 + ], + "dots-three-bold||menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more": [ + -0.006266833748668432, + -0.018153641372919083, + -0.03455877676606178, + 0.003552258014678955, + 0.049556296318769455, + -0.0678986981511116, + 0.05977710708975792, + -0.052343133836984634, + 0.021035315468907356, + -0.012959828600287437, + 0.00990100484341383, + -0.02926434390246868, + 0.04513775184750557, + -0.06506042182445526, + 0.036866649985313416, + 0.002271100413054228, + -0.010930717922747135, + 0.020918114110827446, + 0.003683331422507763, + -0.06658720970153809, + 0.03077850490808487, + -0.02149372175335884, + 0.029605276882648468, + 0.10868475586175919, + 0.008366978727281094, + 0.11396079510450363, + 0.00426910724490881, + 0.02999899908900261, + -0.06529005616903305, + -0.0865725502371788, + -0.05476120859384537, + 0.018881676718592644, + 0.11229925602674484, + -0.04204573854804039, + 0.049119994044303894, + -0.033521804958581924, + -0.006183131132274866, + 0.06702612340450287, + -0.014091253280639648, + 0.04811631888151169, + -0.018731703981757164, + -0.10302949696779251, + 0.0722801685333252, + 0.03469447046518326, + -0.025082839652895927, + -0.022115029394626617, + -0.1539398729801178, + 0.011596527881920338, + 0.013908887282013893, + 0.04876985400915146, + -0.02289450541138649, + -0.12984885275363922, + -0.11652268469333649, + -0.004479689057916403, + 0.008702440187335014, + -0.014233505353331566, + -0.03618013113737106, + 0.023520566523075104, + 0.04819471016526222, + 0.0022397825960069895, + 0.017048850655555725, + 0.019778288900852203, + -0.008361222222447395, + 0.0798487514257431, + 0.023533623665571213, + 0.01121351309120655, + -0.043577563017606735, + -0.04538804665207863, + -0.06801673769950867, + 0.06289144605398178, + 0.022084897384047508, + 0.01763540878891945, + -0.05665665864944458, + -0.021176254376769066, + -0.016240151599049568, + 0.014756209217011929, + -0.009539701044559479, + -0.02688470482826233, + -0.0730350986123085, + -0.03275492787361145, + -0.05671645328402519, + 0.07869373261928558, + 0.013120920397341251, + 0.04899027571082115, + 0.037547722458839417, + 0.07454486936330795, + -0.0327526219189167, + -0.09207671880722046, + -0.01153777539730072, + 0.004073440097272396, + -0.046602945774793625, + -0.03916944935917854, + -0.002007358940318227, + 0.05840698257088661, + -0.07534269988536835, + 0.019512632861733437, + 0.06810883432626724, + -0.06342260539531708, + -0.034626759588718414, + 0.07703819125890732, + 0.05107564106583595, + -0.002509703626856208, + 0.08596372604370117, + -0.019427023828029633, + -0.025333059951663017, + 0.0355323851108551, + 0.004286683164536953, + -0.06604485213756561, + 0.04015905037522316, + 0.09480202198028564, + -0.03766990825533867, + -0.10007648169994354, + -0.014805648475885391, + -0.09035536646842957, + -0.058571022003889084, + -0.03599761426448822, + -0.06991687417030334, + -0.03839019685983658, + 0.14529256522655487, + 0.05667297914624214, + 0.0606292299926281, + -0.057890161871910095, + -0.07124008238315582, + -0.06390146166086197, + -0.012522193603217602, + 0.0709402784705162, + -0.02788330428302288, + -1.4058086834724098e-33, + -0.012055458500981331, + -0.0010179993696510792, + 0.0012253299355506897, + 0.0750303715467453, + 0.008723758161067963, + 0.00353029603138566, + -0.035460639744997025, + -0.06126013025641441, + -0.048147618770599365, + 0.014876247383654118, + 0.03328331932425499, + 0.05933387577533722, + -0.004720253404229879, + 0.07105076313018799, + 0.12564896047115326, + -0.08355820924043655, + 0.09533091634511948, + 0.01699458435177803, + -0.08336419612169266, + -0.07278364896774292, + -0.04136700555682182, + -0.004267476499080658, + -0.07038144022226334, + -0.021952785551548004, + 0.006800196599215269, + 0.07366999238729477, + -0.012280358001589775, + 0.009651602245867252, + -0.03884872421622276, + 0.054218899458646774, + 0.06115232780575752, + 0.02642108127474785, + 0.012332714162766933, + 0.009458020329475403, + -0.03424426168203354, + 0.03066837042570114, + -0.07022838294506073, + -0.061966925859451294, + -0.0035281344316899776, + -0.0018028278136625886, + -0.09283919632434845, + -0.08623818308115005, + -0.006980064790695906, + 0.004613249097019434, + 0.029861489310860634, + 0.09089720994234085, + 0.028605392202734947, + -0.04749133065342903, + 0.03746222332119942, + -0.010327165946364403, + -0.00020493849297054112, + -0.014079228043556213, + 0.02767259255051613, + -0.04361141473054886, + 0.006695815362036228, + 0.0004325202025938779, + -0.0338267907500267, + 0.043811533600091934, + -0.026007553562521935, + -0.014977477490901947, + 0.06470353156328201, + 0.05502935126423836, + 0.032605916261672974, + -0.028414783999323845, + -0.03870866447687149, + 0.023012882098555565, + -0.08917985111474991, + -0.003490007948130369, + 0.08250587433576584, + 0.02876005694270134, + -0.01849251799285412, + 0.06270649284124374, + 0.05773702636361122, + 0.08156938850879669, + -0.05201435089111328, + 0.026028551161289215, + 0.006220622453838587, + -0.0022117942571640015, + 0.0019888272508978844, + -0.06493564695119858, + -0.09199323505163193, + -0.09394566714763641, + -0.024909963831305504, + -0.0042943451553583145, + 0.05059247463941574, + -0.006538178771734238, + 0.023417286574840546, + -0.004382074344903231, + -0.025913530960679054, + -0.05982862040400505, + -0.06400550901889801, + -0.008200583979487419, + 0.010473109781742096, + -0.001259446144104004, + -0.16388988494873047, + -1.43483742463047e-33, + 0.022152233868837357, + 0.06990533322095871, + -0.048945143818855286, + -0.00660273851826787, + -0.03095863200724125, + 0.03206527605652809, + -0.018559500575065613, + 0.017078133299946785, + -0.015588877722620964, + -0.007161295041441917, + -0.030514156445860863, + 0.06363474577665329, + -0.01616077683866024, + -0.13277612626552582, + 0.010857844725251198, + 0.044412996619939804, + 0.04815332219004631, + 0.004705092404037714, + -0.0348268561065197, + 0.007573670707643032, + -0.02027788944542408, + -0.036806825548410416, + -0.0686788335442543, + 0.03509330004453659, + -0.03361081704497337, + -0.020799705758690834, + 0.043580301105976105, + -0.10968213528394699, + -0.023821057751774788, + 0.050535038113594055, + -0.07389894127845764, + -0.06049089878797531, + 0.07837105542421341, + 0.03475156053900719, + -0.034959595650434494, + -0.05555019527673721, + 0.04164646938443184, + -0.09554661065340042, + 0.005255787633359432, + -0.016239378601312637, + 0.0005418747314251959, + 0.005324183031916618, + 0.10767026990652084, + 0.05502323433756828, + 0.010210868902504444, + 0.00300682638771832, + 0.003976933192461729, + 0.03870900347828865, + -0.0252205990254879, + 0.07719495892524719, + -0.0265054889023304, + -0.048145707696676254, + 0.02118697389960289, + 0.02161513641476631, + -0.013830417767167091, + -0.018366480246186256, + -0.049285151064395905, + 0.021786635741591454, + 0.006733077112585306, + -0.012126331217586994, + -0.08285605162382126, + 0.03074864111840725, + -0.012026866897940636, + 0.08601567894220352, + 0.05978815630078316, + -0.004726204089820385, + -0.03692162409424782, + -0.010807405225932598, + -0.05269649997353554, + 0.022595424205064774, + 0.06478649377822876, + -0.01501431129872799, + -0.06825758516788483, + 0.002618670230731368, + -0.0034048608504235744, + -0.08393017202615738, + 0.042004913091659546, + 0.014237383380532265, + -0.08469244837760925, + 0.05786387622356415, + 0.018401332199573517, + -0.0175905954092741, + 0.039698276668787, + 0.08243531733751297, + -0.02001301385462284, + 0.01928163692355156, + -0.01798276975750923, + 0.03364931792020798, + 0.010794384405016899, + 0.0685451477766037, + -0.026583436876535416, + 0.09941467642784119, + 0.05112916976213455, + 0.07779823243618011, + -0.009946765378117561, + -2.631747086923042e-08, + 0.045314036309719086, + -0.02671295776963234, + 0.00746898865327239, + -0.052799042314291, + 0.07952333241701126, + -0.019808778539299965, + -0.0260250736027956, + 0.049939364194869995, + -0.029003143310546875, + 0.02750697359442711, + 0.02050088159739971, + 0.0032499763183295727, + -0.07338005304336548, + -0.02867993898689747, + 0.051118843257427216, + 0.05161531642079353, + 0.0034209396690130234, + 0.10653828084468842, + -0.019856564700603485, + -0.049062330275774, + -0.03141184523701668, + 0.05747422203421593, + 0.06148776412010193, + -0.015346456319093704, + -0.03040708787739277, + 0.04179691895842552, + -0.0789768397808075, + 0.002969602355733514, + 0.023282166570425034, + 0.017109492793679237, + 0.022016791626811028, + 0.08132857829332352, + 0.05901368707418442, + -0.06613199412822723, + -0.06935253739356995, + -0.02033521980047226, + -0.04836922511458397, + 0.03042951039969921, + -0.01300522405654192, + 0.07436151057481766, + -0.024183684960007668, + -0.0621095672249794, + 0.02932744100689888, + -0.039885688573122025, + -0.01503755059093237, + 0.04140028730034828, + 0.02390338107943535, + 0.003012388711795211, + -0.10245487838983536, + -0.1339256912469864, + -0.07239251583814621, + 0.013145663775503635, + 0.05030665919184685, + 0.0646231472492218, + 0.0034056478179991245, + -0.04250965267419815, + 0.03724262863397598, + 0.0912914052605629, + 0.05003681033849716, + 0.03483351320028305, + 0.07974447309970856, + 0.08251847326755524, + 0.019083870574831963, + 0.01961807906627655 + ], + "dots-three-circle-bold||menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more": [ + -0.005124174058437347, + -0.009497067891061306, + -0.05391145497560501, + 0.005871251225471497, + 0.05069677159190178, + -0.07344343513250351, + 0.06272920966148376, + -0.05207717418670654, + 0.0365091897547245, + -0.02291465364396572, + 0.01400934997946024, + -0.029147068038582802, + 0.049600232392549515, + -0.06583566963672638, + 0.04518398270010948, + -0.003327568992972374, + -0.019146202132105827, + 0.020568525418639183, + 0.0057862489484250546, + -0.07550257444381714, + 0.026258571073412895, + -0.0344938188791275, + 0.027197426185011864, + 0.12144340574741364, + 0.0025317578110843897, + 0.10874032974243164, + 0.0007872680434957147, + 0.020695887506008148, + -0.06572064757347107, + -0.08438459038734436, + -0.06221998855471611, + 0.02343418262898922, + 0.1057191714644432, + -0.04855399951338768, + 0.039493683725595474, + -0.03692499175667763, + -0.01572069339454174, + 0.06794967502355576, + -0.015746289864182472, + 0.03329697251319885, + -0.01716424524784088, + -0.10119345039129257, + 0.07741209864616394, + 0.02477983571588993, + -0.030873849987983704, + -0.011614818125963211, + -0.15959693491458893, + 0.009938325732946396, + 0.007456126157194376, + 0.055932193994522095, + -0.02499430999159813, + -0.12535759806632996, + -0.11773861944675446, + -0.00788898766040802, + 0.021698597818613052, + -0.018956290557980537, + -0.04011886566877365, + 0.022657498717308044, + 0.05667569115757942, + 0.004789163824170828, + 0.022497009485960007, + 0.010096458718180656, + -0.00435157073661685, + 0.08718438446521759, + 0.012105565518140793, + 0.0031402066815644503, + -0.03887792304158211, + -0.05522515997290611, + -0.06190815940499306, + 0.04351763427257538, + 0.017559882253408432, + 0.018654124811291695, + -0.05723528563976288, + -0.027644285932183266, + -0.005589204840362072, + 0.018043523654341698, + -0.01560397632420063, + -0.018854370340704918, + -0.08983632922172546, + -0.0396951287984848, + -0.04843012988567352, + 0.07651543617248535, + 0.01597156934440136, + 0.05073832720518112, + 0.03484063223004341, + 0.08719111233949661, + -0.01837330125272274, + -0.08949647843837738, + -0.01680523157119751, + 0.002924556378275156, + -0.04962779954075813, + -0.02855491451919079, + -0.009014262817800045, + 0.046834513545036316, + -0.08614832907915115, + 0.01831330545246601, + 0.05305290222167969, + -0.07264811545610428, + -0.04117145761847496, + 0.07792700827121735, + 0.05005871504545212, + -0.007711118087172508, + 0.08914648741483688, + -0.02178601361811161, + -0.028178740292787552, + 0.029943866655230522, + 0.006426958832889795, + -0.0646146610379219, + 0.03891659155488014, + 0.10158638656139374, + -0.03828180953860283, + -0.09702733159065247, + -0.013581393286585808, + -0.09211273491382599, + -0.06346844136714935, + -0.021728988736867905, + -0.07603619247674942, + -0.03288831561803818, + 0.14150723814964294, + 0.05933436378836632, + 0.05830596014857292, + -0.05110539495944977, + -0.07092025876045227, + -0.06667262315750122, + -0.020352870225906372, + 0.06916732341051102, + -0.0374518521130085, + -1.8137301106272024e-33, + -0.015322757884860039, + 0.0022776175756007433, + -0.00037120564957149327, + 0.06514591723680496, + -0.00030170686659403145, + -0.012652995996177197, + -0.020095515996217728, + -0.06527020782232285, + -0.021339554339647293, + 0.015027361921966076, + 0.03526105359196663, + 0.058690059930086136, + -0.0034896722063422203, + 0.07438366860151291, + 0.1293468028306961, + -0.08072233945131302, + 0.1042351946234703, + 0.007494577672332525, + -0.08405424654483795, + -0.08114957064390182, + -0.03922173008322716, + 0.0005772582953795791, + -0.06901124119758606, + -0.019972849637269974, + 0.011595708318054676, + 0.07993786036968231, + -0.006466456688940525, + 0.014323625713586807, + -0.03801298514008522, + 0.052040282636880875, + 0.06684909760951996, + 0.021251408383250237, + 0.018495138734579086, + 0.01690300554037094, + -0.020026912912726402, + 0.030990732833743095, + -0.07219121605157852, + -0.054393693804740906, + -0.008986747823655605, + -0.006953415926545858, + -0.09497778117656708, + -0.09272754192352295, + -0.016898345202207565, + 0.007447457872331142, + 0.031111041083931923, + 0.08740849047899246, + 0.019508082419633865, + -0.046248503029346466, + 0.03143426403403282, + -0.013693244196474552, + -0.011568034067749977, + -0.011673877015709877, + 0.02105163224041462, + -0.04825359582901001, + 0.006185427773743868, + -0.0005982198053970933, + -0.02677971124649048, + 0.03449533134698868, + -0.04126834496855736, + -0.014270306564867496, + 0.055617235600948334, + 0.0569564625620842, + 0.022768599912524223, + -0.03589531034231186, + -0.03776165097951889, + 0.029956461861729622, + -0.0892815887928009, + -0.011706514284014702, + 0.08556031435728073, + 0.0192106906324625, + -0.0199518334120512, + 0.05714154243469238, + 0.06654296070337296, + 0.090464286506176, + -0.04492618888616562, + 0.025444576516747475, + -0.0014197540003806353, + 0.001754860975779593, + -0.003726961323991418, + -0.05632978677749634, + -0.09209541231393814, + -0.08306042850017548, + -0.021732280030846596, + -0.005397750064730644, + 0.04552580043673515, + -0.011043589562177658, + 0.028806058689951897, + -0.0007169271702878177, + -0.018746500834822655, + -0.06129579618573189, + -0.06081854924559593, + 0.00770824309438467, + 0.01915939338505268, + 0.014148599468171597, + -0.1619347333908081, + -1.1532267225623709e-33, + 0.0222758948802948, + 0.07324468344449997, + -0.03974677994847298, + -0.008510495536029339, + -0.03175406530499458, + 0.03225041180849075, + -0.01964554190635681, + 0.007426397409290075, + -0.017120592296123505, + -0.0010978566715493798, + -0.036825161427259445, + 0.059626054018735886, + -0.013465908356010914, + -0.12050032615661621, + 0.01686391793191433, + 0.04352124035358429, + 0.0503634437918663, + 0.003337952308356762, + -0.03289252519607544, + 0.007550228852778673, + -0.02378849685192108, + -0.024019870907068253, + -0.06907794624567032, + 0.02799258567392826, + -0.03566134721040726, + -0.016489563509821892, + 0.043830130249261856, + -0.11184057593345642, + -0.014978470280766487, + 0.05578864365816116, + -0.08358344435691833, + -0.07325535267591476, + 0.08810217678546906, + 0.043826960027217865, + -0.0267363078892231, + -0.05942324548959732, + 0.04951787739992142, + -0.09736789017915726, + -0.0059450650587677956, + -0.02533501200377941, + -0.010039705783128738, + -0.0022915492299944162, + 0.10936455428600311, + 0.049263644963502884, + 0.013277929276227951, + -0.010302240960299969, + 0.012834812514483929, + 0.044392939656972885, + -0.03453585132956505, + 0.0735851302742958, + -0.014254053123295307, + -0.04627767950296402, + 0.030810091644525528, + 0.013684161007404327, + -0.01011398434638977, + -0.007925698533654213, + -0.04384634271264076, + 0.02534201368689537, + 0.014917029067873955, + -0.008193711750209332, + -0.07742227613925934, + 0.020747775211930275, + -0.01012886967509985, + 0.09325312077999115, + 0.05003105849027634, + -0.00019472722487989813, + -0.025665899738669395, + -0.009661324322223663, + -0.05620468035340309, + 0.028873709961771965, + 0.04700564965605736, + -0.0036818834487348795, + -0.0586385577917099, + -0.0046615274623036385, + 0.0007816808065399528, + -0.07577463984489441, + 0.0360599085688591, + 0.012401621788740158, + -0.08206245303153992, + 0.051715683192014694, + 0.0108714047819376, + -0.017371375113725662, + 0.03641269728541374, + 0.08239340782165527, + -0.014816571958363056, + 0.011140202172100544, + -0.017849421128630638, + 0.028200840577483177, + 0.015944015234708786, + 0.06347442418336868, + -0.020352216437458992, + 0.11052354425191879, + 0.05602870509028435, + 0.09650793671607971, + 0.001027909223921597, + -2.620559769184183e-08, + 0.04839217662811279, + -0.019175082445144653, + 0.006384752225130796, + -0.04323388636112213, + 0.09361807256937027, + -0.027450019493699074, + -0.01934659481048584, + 0.043448664247989655, + -0.03691817820072174, + 0.02290254458785057, + 0.02243032120168209, + 0.011898559518158436, + -0.07303687185049057, + -0.025416357442736626, + 0.04595604166388512, + 0.05068550258874893, + 0.0037308938335627317, + 0.10320659726858139, + -0.007630581967532635, + -0.04041658714413643, + -0.028969835489988327, + 0.04217635840177536, + 0.06234355270862579, + -0.02622651681303978, + -0.025971008464694023, + 0.03843783214688301, + -0.06980489939451218, + 0.005485947709530592, + 0.011708386242389679, + 0.01886245608329773, + 0.023632291704416275, + 0.06859490275382996, + 0.057027384638786316, + -0.06589540094137192, + -0.06375274807214737, + -0.03294893354177475, + -0.0520021915435791, + 0.031120749190449715, + -0.016089824959635735, + 0.07346930354833603, + -0.011100484989583492, + -0.04727253317832947, + 0.025589147582650185, + -0.038416724652051926, + -0.009611272253096104, + 0.05088416859507561, + 0.020260076969861984, + 0.00025619976804591715, + -0.11246121674776077, + -0.12131959199905396, + -0.07674166560173035, + 0.012553517706692219, + 0.050202514976263046, + 0.0542043074965477, + 0.006351830437779427, + -0.042758334428071976, + 0.05427783727645874, + 0.08839451521635056, + 0.04652119055390358, + 0.038993384689092636, + 0.07397011667490005, + 0.08666735887527466, + 0.02379518933594227, + 0.020222170278429985 + ], + "dots-three-circle-vertical-bold||menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more": [ + 0.003115189727395773, + -0.014638148248195648, + -0.05207133665680885, + -0.011115857400000095, + 0.02875417098402977, + -0.06818468123674393, + 0.04122476652264595, + -0.036175016313791275, + 0.03295799717307091, + -0.0158404391258955, + 0.025789761915802956, + -0.017158478498458862, + 0.05232721194624901, + -0.06503654271364212, + 0.03681642562150955, + -0.011112186126410961, + -0.008047057315707207, + 0.016465678811073303, + -0.007238915655761957, + -0.07443057000637054, + 0.03365224972367287, + -0.043899793177843094, + 0.014282789081335068, + 0.11154692620038986, + 0.007590627297759056, + 0.10693364590406418, + -0.008235260844230652, + 0.020466845482587814, + -0.039108388125896454, + -0.08745104819536209, + -0.0669751912355423, + 0.033987730741500854, + 0.10832936316728592, + -0.04361342638731003, + 0.031244205310940742, + -0.038650281727313995, + -0.0041939569637179375, + 0.05957930162549019, + -0.029582567512989044, + 0.03407399356365204, + -0.018751755356788635, + -0.11962801963090897, + 0.06750987470149994, + 0.03658415377140045, + -0.023643147200345993, + -0.0014414836186915636, + -0.1494140774011612, + 0.003697578562423587, + -0.018038665875792503, + 0.06136653199791908, + -0.0230018962174654, + -0.11464643478393555, + -0.11648854613304138, + 0.014682252891361713, + 0.04086945578455925, + -0.016564616933465004, + -0.03148500993847847, + 0.014352588914334774, + 0.06049111858010292, + 0.0028007738292217255, + 0.022064970806241035, + 0.010158023796975613, + -0.017998285591602325, + 0.08846931904554367, + 0.007237943354994059, + -0.0019432824337854981, + -0.055412180721759796, + -0.04546341672539711, + -0.044728342443704605, + 0.038499459624290466, + 0.024995332583785057, + 0.0023944952990859747, + -0.04630975425243378, + -0.022272858768701553, + -0.013766779564321041, + 0.013490470126271248, + -0.01248127967119217, + -0.02272246964275837, + -0.08836036175489426, + -0.05094379559159279, + -0.05051416531205177, + 0.08554164320230484, + 0.014668921008706093, + 0.05824211612343788, + 0.03030554950237274, + 0.08811239153146744, + -0.004265897907316685, + -0.07024683803319931, + -0.026583414524793625, + 0.0035035901237279177, + -0.039720818400382996, + -0.03697929158806801, + 0.004546048119664192, + 0.0336017906665802, + -0.08346641808748245, + 0.010902666486799717, + 0.05382367968559265, + -0.08423293381929398, + -0.020528996363282204, + 0.07060237228870392, + 0.05038101598620415, + -0.026056256145238876, + 0.09202595055103302, + -0.01958836242556572, + -0.038499217480421066, + 0.013751375488936901, + 0.004335358738899231, + -0.06962405145168304, + 0.03805530443787575, + 0.09671828895807266, + -0.05028253421187401, + -0.0837482437491417, + -0.01791490986943245, + -0.09771728515625, + -0.050068359822034836, + -0.029313400387763977, + -0.08734558522701263, + -0.03036290407180786, + 0.13971620798110962, + 0.04519519582390785, + 0.05620992183685303, + -0.045168764889240265, + -0.05136612057685852, + -0.07198955863714218, + -0.019000940024852753, + 0.07622554153203964, + -0.048396628350019455, + -1.8913406557723054e-33, + -0.00022012736008036882, + -0.009034725837409496, + -0.002647747052833438, + 0.06595499813556671, + -0.0030474751256406307, + -0.01014185231178999, + -0.02338539808988571, + -0.06210256367921829, + -0.011598296463489532, + 0.043977584689855576, + 0.034697141498327255, + 0.08605558425188065, + -0.013037576340138912, + 0.10118178278207779, + 0.13405613601207733, + -0.08346158266067505, + 0.10368283838033676, + 0.013031121343374252, + -0.08803481608629227, + -0.08925142884254456, + -0.03894082456827164, + 0.005575967952609062, + -0.04639379680156708, + -0.007969724014401436, + 0.020628351718187332, + 0.0852191299200058, + -0.009462526068091393, + 0.007493210956454277, + -0.05886135250329971, + 0.04813731461763382, + 0.058960847556591034, + 0.009590623900294304, + 0.02728215977549553, + 0.0068020932376384735, + -0.013103771023452282, + 0.036822542548179626, + -0.07254805415868759, + -0.05940995365381241, + -0.012332885526120663, + -0.013055701740086079, + -0.10641182959079742, + -0.10093602538108826, + -0.02770545706152916, + 0.002981489058583975, + 0.040413748472929, + 0.06754831969738007, + 0.007043431978672743, + -0.046966370195150375, + 0.03407374769449234, + -0.014492446556687355, + -0.00704746600240469, + -0.015260654501616955, + 0.025929441675543785, + -0.049698978662490845, + 0.014414805918931961, + 0.010014014318585396, + -0.034649040549993515, + 0.030792420729994774, + -0.04674641042947769, + -0.0021787264849990606, + 0.05295228213071823, + 0.06177641823887825, + 0.011342949233949184, + -0.04057515040040016, + -0.041554566472768784, + 0.034656912088394165, + -0.08929477632045746, + -0.012304744683206081, + 0.09151415526866913, + 0.02305169589817524, + -0.014950192533433437, + 0.05655083805322647, + 0.05266851931810379, + 0.07748015224933624, + -0.04262454807758331, + 0.02242305502295494, + -0.00016625663556624204, + 0.0025510936975479126, + -0.015075544826686382, + -0.03487901762127876, + -0.09247486293315887, + -0.07799141108989716, + -0.019104575738310814, + -0.023761851713061333, + 0.026971325278282166, + -0.014019652269780636, + 0.03560057654976845, + -0.003219583071768284, + -0.021953009068965912, + -0.07113006711006165, + -0.0717541053891182, + 0.004276561085134745, + 0.022414851933717728, + 0.007253166288137436, + -0.15172044932842255, + -1.0457422741880657e-33, + 0.015735646709799767, + 0.0708632841706276, + -0.04316012188792229, + -0.010093806311488152, + -0.038051120936870575, + 0.036139316856861115, + -0.02450035698711872, + 0.005402808543294668, + -0.030636955052614212, + -0.0002623240288812667, + -0.049169570207595825, + 0.06787584722042084, + -0.009692450053989887, + -0.11898021399974823, + 0.013427197933197021, + 0.04685087502002716, + 0.03265560418367386, + 0.003923220559954643, + -0.025825945660471916, + 0.009791163727641106, + -0.030639737844467163, + -0.015789102762937546, + -0.07212947309017181, + 0.03327760845422745, + -0.023894287645816803, + -0.02381872944533825, + 0.04814428091049194, + -0.112391896545887, + -0.004885262809693813, + 0.05708058178424835, + -0.055408086627721786, + -0.08561497926712036, + 0.08713989704847336, + 0.03815165162086487, + -0.031339529901742935, + -0.068153977394104, + 0.06111471727490425, + -0.08782347291707993, + -0.007885698229074478, + -0.03154517710208893, + -0.004647711291909218, + 0.0006914277328178287, + 0.12453414499759674, + 0.05023495480418205, + 0.013709774240851402, + -0.00130292063113302, + -0.002874167403206229, + 0.03164326399564743, + -0.020973360165953636, + 0.05618402734398842, + -0.004452866036444902, + -0.04253001883625984, + 0.037053726613521576, + 0.017266152426600456, + 0.0024395384825766087, + -0.016504263505339622, + -0.045166462659835815, + 0.024642420932650566, + 0.015162399038672447, + -0.015373828820884228, + -0.06504067033529282, + -0.0029116717632859945, + -0.00880978163331747, + 0.09506289660930634, + 0.040092501789331436, + 0.008571621961891651, + -0.024126708507537842, + -0.018411748111248016, + -0.07823337614536285, + 0.019252633675932884, + 0.036007605493068695, + -0.003861109958961606, + -0.05507548153400421, + -0.017177630215883255, + 0.004194281529635191, + -0.07669785618782043, + 0.03314609080553055, + 0.019344108179211617, + -0.08438117802143097, + 0.04160916432738304, + -0.0012431074865162373, + -0.015359031036496162, + 0.03364589810371399, + 0.08848307281732559, + -0.029607875272631645, + 0.018189257010817528, + -0.01872721128165722, + 0.028005031868815422, + 0.03260575234889984, + 0.05871273949742317, + -0.02325696498155594, + 0.11033754050731659, + 0.037467505782842636, + 0.11676464974880219, + 0.014661711640655994, + -2.6105144712573747e-08, + 0.043024420738220215, + -0.026246560737490654, + 0.016974037513136864, + -0.04533830285072327, + 0.08028625696897507, + -0.02018059603869915, + -0.012320470064878464, + 0.06432072073221207, + -0.02299877069890499, + 0.028341257944703102, + 0.031211283057928085, + 0.02422480657696724, + -0.07959455996751785, + -0.036704957485198975, + 0.058951620012521744, + 0.043855518102645874, + 0.014967032708227634, + 0.11345075815916061, + 0.001572855981066823, + -0.03247435390949249, + -0.00802900642156601, + 0.04890325292944908, + 0.06629782915115356, + -0.005779422353953123, + -0.02550501562654972, + 0.02887711673974991, + -0.06926117092370987, + 0.0016237673116847873, + 0.011823644861578941, + 0.024460043758153915, + 0.02779375948011875, + 0.06988579034805298, + 0.06756147742271423, + -0.07716742157936096, + -0.0636897161602974, + -0.013608038425445557, + -0.04779328778386116, + 0.031151706352829933, + -0.015395231544971466, + 0.06407725065946579, + -0.001318770693615079, + -0.060532886534929276, + 0.022882157936692238, + -0.03933212161064148, + -0.002045163419097662, + 0.05521267279982567, + 0.0008364399545826018, + 0.017059314996004105, + -0.1038239449262619, + -0.1236947700381279, + -0.09066435694694519, + 0.028133584186434746, + 0.05243146792054176, + 0.04322374239563942, + 0.005334523972123861, + -0.03157205507159233, + 0.060438260436058044, + 0.06544645875692368, + 0.05632893368601799, + 0.020933333784341812, + 0.08240888267755508, + 0.09603531658649445, + 0.025150829926133156, + 0.01311749778687954 + ], + "dots-three-outline-bold||menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more": [ + 0.009783574379980564, + -0.01576247066259384, + -0.03184540942311287, + 0.008101013489067554, + 0.05507022514939308, + -0.05770980939269066, + 0.05549023672938347, + -0.040877923369407654, + 0.01944621652364731, + 0.00022124306997284293, + 0.004592631012201309, + -0.028785347938537598, + 0.0223094392567873, + -0.05575636029243469, + 0.03161600977182388, + -0.005620311945676804, + -0.00918293185532093, + 0.007377466652542353, + 0.007022596430033445, + -0.06507634371519089, + 0.04744758829474449, + -0.027751902118325233, + 0.015472454950213432, + 0.09589096158742905, + 0.002896832302212715, + 0.11010575294494629, + -0.006747819017618895, + 0.013075737282633781, + -0.06460551172494888, + -0.09229712188243866, + -0.04287378862500191, + 0.017130400985479355, + 0.11207802593708038, + -0.04236574470996857, + 0.04596890136599541, + -0.03783409669995308, + -0.0025628474541008472, + 0.07476036995649338, + -0.01952993869781494, + 0.035827841609716415, + -0.026499174535274506, + -0.09703446179628372, + 0.05656633526086807, + 0.047331180423498154, + -0.013739051297307014, + -0.021699072793126106, + -0.14265602827072144, + 0.013070158660411835, + 0.00425813440233469, + 0.048704035580158234, + -0.019961442798376083, + -0.13464756309986115, + -0.12137370556592941, + -0.00290860328823328, + 0.012466827407479286, + -0.0018895871471613646, + -0.0379101000726223, + 0.031107647344470024, + 0.03858084976673126, + 0.0036259805783629417, + 0.0057711973786354065, + 0.013746566139161587, + -0.007096150889992714, + 0.07165645807981491, + 0.025163494050502777, + -0.005466352682560682, + -0.046556178480386734, + -0.04115265607833862, + -0.050074610859155655, + 0.059637293219566345, + 0.024767329916357994, + 0.019311316311359406, + -0.052152857184410095, + -0.02417437918484211, + -0.013583057560026646, + 0.001459753722883761, + -0.026392262428998947, + -0.023020584136247635, + -0.0834120362997055, + -0.0664810761809349, + -0.061942845582962036, + 0.09152781963348389, + 0.014107528142631054, + 0.053575921803712845, + 0.04042331501841545, + 0.07806210964918137, + -0.010552656836807728, + -0.08179579675197601, + -0.023454874753952026, + 0.015399324707686901, + -0.032925162464380264, + -0.041319068521261215, + -0.0032467651180922985, + 0.04865269362926483, + -0.08455131947994232, + 0.017997175455093384, + 0.062016841024160385, + -0.07941529899835587, + -0.013833445496857166, + 0.06533745676279068, + 0.052330560982227325, + -0.010985719971358776, + 0.08643793314695358, + -0.022814027965068817, + -0.02996397763490677, + 0.030903669074177742, + 0.006748344749212265, + -0.07484897971153259, + 0.03476523607969284, + 0.0887630432844162, + -0.03599809482693672, + -0.10284388065338135, + -0.028750156983733177, + -0.08583632111549377, + -0.04444761946797371, + -0.04295649752020836, + -0.06308659166097641, + -0.03700839355587959, + 0.13652271032333374, + 0.058521732687950134, + 0.05874939635396004, + -0.051211148500442505, + -0.0509638711810112, + -0.06216152012348175, + -0.02294502779841423, + 0.06439007073640823, + -0.04010145366191864, + -1.6286883816955658e-33, + -0.007619811221957207, + -0.003012497676536441, + -0.026236724108457565, + 0.07688332349061966, + 0.009718614630401134, + -0.005316940601915121, + -0.018989695236086845, + -0.05732351541519165, + -0.04637373983860016, + 0.028396308422088623, + 0.040841199457645416, + 0.04914882779121399, + -0.006022678222507238, + 0.09831845760345459, + 0.12801727652549744, + -0.08465015888214111, + 0.08791996538639069, + 0.036968428641557693, + -0.08367304503917694, + -0.06989064812660217, + -0.044218823313713074, + 0.00765831908211112, + -0.05926039069890976, + -0.03020625375211239, + 0.03308873251080513, + 0.07071100175380707, + -0.020374389365315437, + 0.004886739421635866, + -0.04262806102633476, + 0.048138558864593506, + 0.06072470545768738, + 0.014919525012373924, + 0.02323528379201889, + 0.007437779102474451, + -0.03801092505455017, + 0.04105646163225174, + -0.06534425169229507, + -0.07599130272865295, + -0.004290066659450531, + -0.01491558738052845, + -0.0990319699048996, + -0.09749893844127655, + -0.003742377506569028, + 0.003948821686208248, + 0.02322349138557911, + 0.08147719502449036, + 0.026600787416100502, + -0.043261438608169556, + 0.03234751522541046, + -0.021214250475168228, + 0.003985961899161339, + -0.02094688080251217, + 0.0435817576944828, + -0.05202360078692436, + 0.008440976962447166, + 0.00998381245881319, + -0.045140448957681656, + 0.049297500401735306, + -0.018870413303375244, + -0.0034539937041699886, + 0.08836526423692703, + 0.06267537921667099, + -0.004121512174606323, + -0.015248470939695835, + -0.045709382742643356, + 0.01996788941323757, + -0.07765905559062958, + -0.004618016537278891, + 0.0986166000366211, + 0.017270881682634354, + -0.03250739723443985, + 0.0620432049036026, + 0.06051773205399513, + 0.08437134325504303, + -0.03844628855586052, + 0.019396547228097916, + 0.003389580873772502, + -0.00598542345687747, + -0.019557559862732887, + -0.05930393561720848, + -0.10403573513031006, + -0.08011648058891296, + -0.02152342163026333, + -0.022678228095173836, + 0.03243380784988403, + -0.0030579743906855583, + 0.03751470893621445, + 0.009249677881598473, + -0.03524309769272804, + -0.06789685785770416, + -0.07089885324239731, + -0.00194734544493258, + 0.019430436193943024, + -0.004586001392453909, + -0.15244030952453613, + -1.1047868962523884e-33, + 0.025174042209982872, + 0.0657026395201683, + -0.04272954538464546, + -0.008386153727769852, + -0.040859971195459366, + 0.04058326780796051, + -0.029556529596447945, + 0.00561051070690155, + -0.017006605863571167, + -0.013962950557470322, + -0.04239073768258095, + 0.06723317503929138, + -0.008815260604023933, + -0.11926404386758804, + -0.005855537485331297, + 0.03146198391914368, + 0.03549286723136902, + -0.004275606945157051, + -0.023276807740330696, + -0.0031593525782227516, + -0.03611248731613159, + -0.03791356831789017, + -0.0720842182636261, + 0.023885956034064293, + -0.030612869188189507, + -0.020868634805083275, + 0.037296559661626816, + -0.11845412105321884, + -0.01639437861740589, + 0.04841229319572449, + -0.06748450547456741, + -0.07110793888568878, + 0.07606196403503418, + 0.019400982186198235, + -0.038689687848091125, + -0.06875266879796982, + 0.045957691967487335, + -0.09949100762605667, + 0.01031411811709404, + -0.011994901113212109, + 0.002680810634046793, + 0.0072877975180745125, + 0.12608937919139862, + 0.05240471661090851, + 0.006421246100217104, + -0.004771178588271141, + -0.0018402687273919582, + 0.05632323399186134, + -0.030718792229890823, + 0.06612806767225266, + -0.015582835301756859, + -0.04640018939971924, + 0.02625138685107231, + 0.009697443805634975, + -0.004402237478643656, + -0.0046369838528335094, + -0.04724094271659851, + 0.006991400383412838, + 0.02228030376136303, + -0.01245073601603508, + -0.06852894276380539, + 0.028365999460220337, + -0.025618430227041245, + 0.09262865036725998, + 0.0656169205904007, + -0.012256503105163574, + -0.04280877858400345, + -0.009255661629140377, + -0.05868873745203018, + 0.018617073073983192, + 0.04984253644943237, + -0.01640499196946621, + -0.06838764250278473, + 0.0007735119434073567, + 0.010394087992608547, + -0.08736303448677063, + 0.037652578204870224, + 0.0071536642499268055, + -0.083270363509655, + 0.054166022688150406, + 0.013221661560237408, + -0.010477248579263687, + 0.03277700021862984, + 0.07050564140081406, + 0.003546285443007946, + 0.015348957851529121, + -0.028156863525509834, + 0.03389386460185051, + 0.020845085382461548, + 0.06412794440984726, + -0.02194216288626194, + 0.08333295583724976, + 0.0654628649353981, + 0.09953869134187698, + -0.026539288461208344, + -2.639577978413854e-08, + 0.05134853720664978, + -0.016203558072447777, + 0.02192140929400921, + -0.05963853746652603, + 0.07655810564756393, + -0.02248639613389969, + -0.00968489795923233, + 0.06600343436002731, + -0.026288265362381935, + 0.02069989964365959, + 0.02245394140481949, + 0.005582970567047596, + -0.09240949898958206, + -0.014577587135136127, + 0.06488733738660812, + 0.04989472031593323, + 0.008953899145126343, + 0.11086726188659668, + -0.014368667267262936, + -0.050140440464019775, + -0.034370057284832, + 0.049788571894168854, + 0.041262391954660416, + -0.007774085272103548, + -0.02449614554643631, + 0.04934057220816612, + -0.06570678949356079, + 0.013121305033564568, + 0.027770286425948143, + 0.039316773414611816, + 0.01543040107935667, + 0.09061110764741898, + 0.06963447481393814, + -0.05382218956947327, + -0.06102791056036949, + -0.01125636138021946, + -0.052001431584358215, + 0.038058970123529434, + -0.013855836354196072, + 0.08070250600576401, + 0.005023016594350338, + -0.058758702129125595, + 0.03532234951853752, + -0.04194850102066994, + -0.004177579190582037, + 0.0418718159198761, + 0.006317256484180689, + 0.005594275891780853, + -0.10166940093040466, + -0.1367402821779251, + -0.07285510748624802, + 0.020744318142533302, + 0.0488024540245533, + 0.05890889838337898, + 0.005765947513282299, + -0.026274140924215317, + 0.048483069986104965, + 0.07319916784763336, + 0.060695208609104156, + 0.02105575054883957, + 0.08300760388374329, + 0.09537850320339203, + 0.02545964904129505, + 0.03187315911054611 + ], + "dots-three-outline-vertical-bold||menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more": [ + 0.017690034583210945, + -0.02328724041581154, + -0.029763318598270416, + -0.008253091014921665, + 0.033972106873989105, + -0.05352998897433281, + 0.034772902727127075, + -0.029129093512892723, + 0.01763463206589222, + 0.004691448528319597, + 0.015792272984981537, + -0.016980234533548355, + 0.028622692450881004, + -0.05830961465835571, + 0.027201520279049873, + -0.013057676143944263, + -0.001506384345702827, + 0.005541210062801838, + -0.005786017514765263, + -0.06520242989063263, + 0.05293487012386322, + -0.0407564714550972, + 0.0038168381433933973, + 0.08998572826385498, + 0.010443901643157005, + 0.108016237616539, + -0.011115710251033306, + 0.013367035426199436, + -0.037845201790332794, + -0.09207461029291153, + -0.048927195370197296, + 0.02806701697409153, + 0.1119413822889328, + -0.03814902529120445, + 0.035000137984752655, + -0.040445152670145035, + 0.0064939712174236774, + 0.06305081397294998, + -0.033105939626693726, + 0.03761063143610954, + -0.026309901848435402, + -0.11091215908527374, + 0.0482759103178978, + 0.05488837510347366, + -0.006957447621971369, + -0.010723897255957127, + -0.1353081464767456, + 0.006440233439207077, + -0.019453689455986023, + 0.05464091897010803, + -0.016409937292337418, + -0.12180434912443161, + -0.11921948194503784, + 0.020640866830945015, + 0.03051653318107128, + -0.002714082831516862, + -0.030726179480552673, + 0.0248593520373106, + 0.04408792033791542, + 0.002510682912543416, + 0.004642076324671507, + 0.013342419639229774, + -0.016293294727802277, + 0.07285168021917343, + 0.019163435325026512, + -0.006866083014756441, + -0.05963520705699921, + -0.03546467795968056, + -0.03469768911600113, + 0.0529613234102726, + 0.03061657026410103, + 0.003949966747313738, + -0.04352273792028427, + -0.019346537068486214, + -0.01808667927980423, + 1.8290082152816467e-05, + -0.021425316110253334, + -0.028800316154956818, + -0.08418142795562744, + -0.07238464057445526, + -0.06299229711294174, + 0.0990738570690155, + 0.015654413029551506, + 0.05981932207942009, + 0.03626691922545433, + 0.07806380093097687, + -0.0004982163663953543, + -0.06319315731525421, + -0.03097807802259922, + 0.016804346814751625, + -0.024724828079342842, + -0.04807308688759804, + 0.00540388748049736, + 0.035446733236312866, + -0.08144906163215637, + 0.012038919143378735, + 0.06046157702803612, + -0.08609991520643234, + 0.00203534378670156, + 0.057395242154598236, + 0.051521554589271545, + -0.028523940593004227, + 0.08944094181060791, + -0.019944921135902405, + -0.03951546177268028, + 0.017551669850945473, + 0.005202568601816893, + -0.07790088653564453, + 0.032552216202020645, + 0.08505281805992126, + -0.0462508425116539, + -0.08604703843593597, + -0.029366446658968925, + -0.09005794674158096, + -0.035835083574056625, + -0.04658932611346245, + -0.07577591389417648, + -0.034740980714559555, + 0.13602453470230103, + 0.04691758006811142, + 0.05510199815034866, + -0.04727156460285187, + -0.03292323648929596, + -0.0703665167093277, + -0.019508803263306618, + 0.07284043729305267, + -0.050653114914894104, + -1.6975216574598726e-33, + 0.006818975321948528, + -0.010677680373191833, + -0.025777917355298996, + 0.07676251977682114, + 0.005275685805827379, + -0.003114590421319008, + -0.019693531095981598, + -0.05520578473806381, + -0.033476755023002625, + 0.05187603831291199, + 0.041970156133174896, + 0.07825981825590134, + -0.013694098219275475, + 0.11910533159971237, + 0.13221563398838043, + -0.08482669293880463, + 0.08972076326608658, + 0.036759987473487854, + -0.08800722658634186, + -0.07853642851114273, + -0.04084998369216919, + 0.01127045787870884, + -0.039049115031957626, + -0.015300818718969822, + 0.03978976607322693, + 0.07705029845237732, + -0.022753724828362465, + 0.0003396519459784031, + -0.06398335099220276, + 0.04381178319454193, + 0.052899155765771866, + 0.0027663777582347393, + 0.02886972576379776, + -0.0014131524367257953, + -0.02642080932855606, + 0.04404088482260704, + -0.06565787643194199, + -0.0767192542552948, + -0.007744505535811186, + -0.020862018689513206, + -0.11108840256929398, + -0.10342425107955933, + -0.01663828082382679, + 0.00028095609741285443, + 0.03303271904587746, + 0.06578417122364044, + 0.01334837544709444, + -0.04371580109000206, + 0.03363262116909027, + -0.020430680364370346, + 0.006984899286180735, + -0.021968726068735123, + 0.04417603462934494, + -0.05407131463289261, + 0.01652888022363186, + 0.01835845410823822, + -0.04953852295875549, + 0.04227042198181152, + -0.027606727555394173, + 0.006994319148361683, + 0.08089186251163483, + 0.06609867513179779, + -0.01218383014202118, + -0.02163427136838436, + -0.04671467840671539, + 0.02665642835199833, + -0.07897136360406876, + -0.005256869364529848, + 0.09972912073135376, + 0.02129494398832321, + -0.02551252953708172, + 0.05946212261915207, + 0.049518946558237076, + 0.07388492673635483, + -0.03662725165486336, + 0.015086973085999489, + 0.002681431593373418, + -0.006724306847900152, + -0.024838082492351532, + -0.03698120266199112, + -0.10225959122180939, + -0.07383515685796738, + -0.01796579919755459, + -0.03733422979712486, + 0.01490118820220232, + -0.006285992916673422, + 0.03960629180073738, + 0.004794182255864143, + -0.03650381788611412, + -0.07550903409719467, + -0.0749717429280281, + -0.002134525217115879, + 0.022082827985286713, + -0.009563945233821869, + -0.14434170722961426, + -1.018474570504331e-33, + 0.016297312453389168, + 0.06359708309173584, + -0.04509524255990982, + -0.00792722124606371, + -0.04926726594567299, + 0.043571408838033676, + -0.03223476931452751, + 0.004795825574547052, + -0.028203081339597702, + -0.01425108127295971, + -0.05059988796710968, + 0.07503008842468262, + -0.007170682307332754, + -0.11886916309595108, + -0.0076359594240784645, + 0.03349898010492325, + 0.018351152539253235, + -0.003464825451374054, + -0.014840741641819477, + -0.00022291323693934828, + -0.03982246294617653, + -0.031157152727246284, + -0.07210369408130646, + 0.029836585745215416, + -0.021475419402122498, + -0.02950325235724449, + 0.04063798114657402, + -0.11744331568479538, + -0.004995394963771105, + 0.049881819635629654, + -0.038244012743234634, + -0.08119481801986694, + 0.07875721901655197, + 0.01768786646425724, + -0.0413387306034565, + -0.07434055209159851, + 0.0547444224357605, + -0.08997520804405212, + 0.0068750944919884205, + -0.017181450501084328, + 0.0066000837832689285, + 0.00944735947996378, + 0.13877606391906738, + 0.04906419292092323, + 0.005537531338632107, + 0.004766788799315691, + -0.014418418519198895, + 0.042375314980745316, + -0.01759536750614643, + 0.05086440593004227, + -0.003690625075250864, + -0.04369891807436943, + 0.03158510848879814, + 0.012071721255779266, + 0.004542781971395016, + -0.014976682141423225, + -0.04828089475631714, + 0.008333014324307442, + 0.02113490179181099, + -0.01895710453391075, + -0.05875347927212715, + 0.005611569620668888, + -0.021180689334869385, + 0.09526704251766205, + 0.05194046348333359, + -0.002286708215251565, + -0.03823772072792053, + -0.01722411997616291, + -0.07707086950540543, + 0.009045401588082314, + 0.03680692985653877, + -0.017452161759138107, + -0.062274131923913956, + -0.008385740220546722, + 0.010630977340042591, + -0.08816730976104736, + 0.03274381160736084, + 0.01569484733045101, + -0.083187997341156, + 0.04317212849855423, + 0.002812794176861644, + -0.010507035069167614, + 0.030618948861956596, + 0.07737277448177338, + -0.012284323573112488, + 0.023660460487008095, + -0.0272445697337389, + 0.02952188067138195, + 0.035201020538806915, + 0.05862429365515709, + -0.025118794292211533, + 0.08644366264343262, + 0.04508794844150543, + 0.11918000131845474, + -0.011618307791650295, + -2.621833772309401e-08, + 0.04524659737944603, + -0.022108500823378563, + 0.031222518533468246, + -0.0607244111597538, + 0.0651010200381279, + -0.015980739146471024, + -0.0031111598946154118, + 0.08339589089155197, + -0.015311659313738346, + 0.028500737622380257, + 0.03081086464226246, + 0.018295830115675926, + -0.0981111079454422, + -0.0317533053457737, + 0.07482469081878662, + 0.04375239834189415, + 0.019327960908412933, + 0.11676078289747238, + -0.003940465860068798, + -0.04074805974960327, + -0.014717902056872845, + 0.05602172389626503, + 0.045648202300071716, + 0.009426716715097427, + -0.022375768050551414, + 0.03843841329216957, + -0.06264326721429825, + 0.010318592190742493, + 0.026977790519595146, + 0.04049943387508392, + 0.019420793280005455, + 0.08480794727802277, + 0.07900752872228622, + -0.06536756455898285, + -0.06214628741145134, + 0.004406335297971964, + -0.04674167558550835, + 0.03540121391415596, + -0.010562960989773273, + 0.0727519690990448, + 0.011522362008690834, + -0.06897273659706116, + 0.031604133546352386, + -0.043763481080532074, + -0.0010699837002903223, + 0.0454794205725193, + -0.010273309424519539, + 0.01945437677204609, + -0.09343217313289642, + -0.1381661295890808, + -0.08506253361701965, + 0.03335864096879959, + 0.047458723187446594, + 0.049261946231126785, + 0.003736288985237479, + -0.018740100786089897, + 0.05513405427336693, + 0.053007978945970535, + 0.07106324285268784, + 0.006019272841513157, + 0.08789732307195663, + 0.1028081551194191, + 0.0264645516872406, + 0.02390010841190815 + ], + "dots-three-vertical-bold||menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more": [ + -0.0030733474995940924, + -0.013194550760090351, + -0.036926910281181335, + -0.01617959327995777, + 0.030511876568198204, + -0.06788711994886398, + 0.03848116844892502, + -0.034911416471004486, + 0.022371361032128334, + -0.010866518132388592, + 0.021014316007494926, + -0.014373403042554855, + 0.04995885491371155, + -0.06552912294864655, + 0.03208959847688675, + 0.0020893020555377007, + -0.0007725788163952529, + 0.01858777180314064, + -0.005201317369937897, + -0.07039789110422134, + 0.031028974801301956, + -0.039268508553504944, + 0.015959639102220535, + 0.09933344274759293, + 0.01524384692311287, + 0.1192685216665268, + -0.003224411513656378, + 0.029959658160805702, + -0.04108401760458946, + -0.08874383568763733, + -0.06027783080935478, + 0.023643599823117256, + 0.11150214076042175, + -0.043698765337467194, + 0.037618957459926605, + -0.03543417528271675, + 0.0025818422436714172, + 0.06064220890402794, + -0.029320910573005676, + 0.044519294053316116, + -0.01846872828900814, + -0.12150993198156357, + 0.061649445444345474, + 0.03992714360356331, + -0.02538466453552246, + -0.014881406910717487, + -0.14344407618045807, + 0.0032280259765684605, + -0.003875614842399955, + 0.05723762512207031, + -0.018247200176119804, + -0.12308844923973083, + -0.11559157818555832, + 0.013491968624293804, + 0.02623910829424858, + -0.01211126334965229, + -0.026701124384999275, + 0.02001565508544445, + 0.054776716977357864, + 0.004470194224268198, + 0.02101832628250122, + 0.022355875000357628, + -0.021364279091358185, + 0.08504920452833176, + 0.020105533301830292, + 0.004897070117294788, + -0.059669166803359985, + -0.0354335755109787, + -0.057296622544527054, + 0.05822864919900894, + 0.02825962007045746, + 0.001275358023121953, + -0.051752060651779175, + -0.024213053286075592, + -0.016925297677516937, + 0.008358459919691086, + -0.0071879499591887, + -0.03127068281173706, + -0.06993889808654785, + -0.043177105486392975, + -0.048229023814201355, + 0.08520293235778809, + 0.006779442075639963, + 0.059776004403829575, + 0.03327255696058273, + 0.07812134921550751, + -0.017112070694565773, + -0.07707756757736206, + -0.01925930753350258, + 0.0043642460368573666, + -0.03542688116431236, + -0.038192491978406906, + 0.006398482713848352, + 0.04807236045598984, + -0.07787138223648071, + 0.008753232657909393, + 0.06698362529277802, + -0.07955664396286011, + -0.021804437041282654, + 0.07555107772350311, + 0.05175083503127098, + -0.02014833316206932, + 0.08965906500816345, + -0.014619053341448307, + -0.030553556978702545, + 0.023291144520044327, + 0.0004030634881928563, + -0.06892739236354828, + 0.03949567675590515, + 0.09720337390899658, + -0.05098997429013252, + -0.08485156297683716, + -0.019619958475232124, + -0.08577810227870941, + -0.052680786699056625, + -0.03519120067358017, + -0.0818587988615036, + -0.03297588974237442, + 0.14181776344776154, + 0.03992659971117973, + 0.060785215348005295, + -0.051994066685438156, + -0.06443136185407639, + -0.07253055274486542, + -0.006650222465395927, + 0.08141038566827774, + -0.03628835082054138, + -1.568243911163307e-33, + 0.000930394628085196, + -0.00878967810422182, + 0.006295422092080116, + 0.07670962065458298, + 0.012176495976746082, + 0.0024800060782581568, + -0.03767643868923187, + -0.05700875446200371, + -0.0390646755695343, + 0.041457146406173706, + 0.03888178989291191, + 0.07640474289655685, + -0.018247488886117935, + 0.09465505927801132, + 0.13019104301929474, + -0.08658485114574432, + 0.09630522131919861, + 0.01720709353685379, + -0.09159734845161438, + -0.07900050282478333, + -0.03168196603655815, + -0.006315721198916435, + -0.055126626044511795, + -0.010726332664489746, + 0.013601023703813553, + 0.07699450850486755, + -0.006043850909918547, + 0.005395608022809029, + -0.05493614077568054, + 0.052434585988521576, + 0.05269521102309227, + 0.017249036580324173, + 0.024633880704641342, + -0.0051038493402302265, + -0.026653354987502098, + 0.039407942444086075, + -0.07349424809217453, + -0.06708467751741409, + -0.008107704110443592, + -0.007649232167750597, + -0.10396246612071991, + -0.09961617738008499, + -0.01650884747505188, + -0.003840463701635599, + 0.04077620059251785, + 0.0749666765332222, + 0.02109546959400177, + -0.051068782806396484, + 0.03185093030333519, + -0.011300438083708286, + -0.003003362100571394, + -0.014643090777099133, + 0.028268136084079742, + -0.04523647576570511, + 0.016703562811017036, + 0.00966994185000658, + -0.042607877403497696, + 0.043169863522052765, + -0.03811575844883919, + -0.009018835611641407, + 0.06081024557352066, + 0.05536630377173424, + 0.01816251128911972, + -0.03306949511170387, + -0.03949901834130287, + 0.02604190818965435, + -0.09153619408607483, + -0.0009160353802144527, + 0.08900327235460281, + 0.035511311143636703, + -0.012162834405899048, + 0.06083071976900101, + 0.04390422999858856, + 0.0730501264333725, + -0.05119696259498596, + 0.023612534627318382, + -0.0005364657263271511, + 0.00037752726348116994, + -0.002179448725655675, + -0.04475628584623337, + -0.0886170044541359, + -0.08536279201507568, + -0.01763409562408924, + -0.022059962153434753, + 0.03816815838217735, + -0.009741603396832943, + 0.026354826986789703, + -0.0035878552589565516, + -0.0267967376857996, + -0.06651882827281952, + -0.07153572887182236, + -0.005107319448143244, + 0.013509184122085571, + -0.0074920980259776115, + -0.15457946062088013, + -1.1825724798531685e-33, + 0.01723572611808777, + 0.06775558739900589, + -0.047174353152513504, + -0.009670139290392399, + -0.03962719440460205, + 0.03525306284427643, + -0.022478774189949036, + 0.015560446307063103, + -0.03457537665963173, + -0.0012884432217106223, + -0.039245426654815674, + 0.06959033012390137, + -0.011265641078352928, + -0.1280459761619568, + 0.012762695550918579, + 0.04949606955051422, + 0.027847353368997574, + -0.005137940868735313, + -0.027643350884318352, + 0.0086322370916605, + -0.023020528256893158, + -0.026494964957237244, + -0.07063210755586624, + 0.036475442349910736, + -0.025966880843043327, + -0.03273221477866173, + 0.05095755681395531, + -0.10746455937623978, + -0.012994388118386269, + 0.05151569843292236, + -0.05367915704846382, + -0.071990966796875, + 0.08036334812641144, + 0.027254745364189148, + -0.035227712243795395, + -0.06405223906040192, + 0.04951999709010124, + -0.08982990682125092, + 0.004528947174549103, + -0.02874886989593506, + -0.0025442643091082573, + 0.008162996731698513, + 0.1255599558353424, + 0.0487886518239975, + 0.007940597832202911, + 0.013486707583069801, + -0.015705879777669907, + 0.032379668205976486, + -0.011517379432916641, + 0.060702238231897354, + -0.01886124536395073, + -0.05126037821173668, + 0.030927462503314018, + 0.025376904755830765, + -0.0026467277202755213, + -0.024276213720440865, + -0.04790772497653961, + 0.022022336721420288, + 0.006007383111864328, + -0.019753742963075638, + -0.07239154726266861, + 0.0059723700396716595, + -0.016621608287096024, + 0.08437356352806091, + 0.053390346467494965, + 0.012982974760234356, + -0.030254285782575607, + -0.014310064725577831, + -0.07018234580755234, + 0.013148479163646698, + 0.05564715713262558, + -0.009633251465857029, + -0.06022189185023308, + -0.009082639589905739, + -0.0007495252066291869, + -0.0871199518442154, + 0.03806775435805321, + 0.02712671272456646, + -0.08191341161727905, + 0.049602214246988297, + 0.010943698696792126, + -0.019346443936228752, + 0.036590732634067535, + 0.08921675384044647, + -0.039295945316553116, + 0.021884392946958542, + -0.022947102785110474, + 0.035401731729507446, + 0.025578076019883156, + 0.061937350779771805, + -0.038573671132326126, + 0.10617850720882416, + 0.02806941047310829, + 0.09530121833086014, + 0.0055699339136481285, + -2.645294472358728e-08, + 0.04000420868396759, + -0.03710337355732918, + 0.0181366428732872, + -0.053534045815467834, + 0.06876518577337265, + -0.011914187110960484, + -0.015093817375600338, + 0.06602673977613449, + -0.011487197130918503, + 0.03018132969737053, + 0.02776394598186016, + 0.012350278906524181, + -0.07210535556077957, + -0.03844773396849632, + 0.06146269291639328, + 0.04440377652645111, + 0.010259964503347874, + 0.11644058674573898, + -0.008437537588179111, + -0.04040256142616272, + -0.01250285655260086, + 0.059290166944265366, + 0.07003835588693619, + 0.0034932296257466078, + -0.02762664295732975, + 0.03668348863720894, + -0.07810383290052414, + 0.0023948070593178272, + 0.028475573286414146, + 0.022910812869668007, + 0.023948878049850464, + 0.08222047239542007, + 0.07409346848726273, + -0.08261920511722565, + -0.06591667234897614, + -0.005886208266019821, + -0.047822464257478714, + 0.03272493556141853, + -0.011387575417757034, + 0.060000669211149216, + -0.01085949968546629, + -0.06568373739719391, + 0.030001124367117882, + -0.04029646888375282, + -0.00625623157247901, + 0.0420631505548954, + 0.013176171109080315, + 0.0190187469124794, + -0.09881008416414261, + -0.13241280615329742, + -0.08218216896057129, + 0.022384554147720337, + 0.05462152138352394, + 0.05938996374607086, + 0.0014833419118076563, + -0.0374666303396225, + 0.043746016919612885, + 0.06961967796087265, + 0.053022079169750214, + 0.019068561494350433, + 0.08546444028615952, + 0.09001956880092621, + 0.015510004945099354, + 0.014045816846191883 + ], + "download-bold||saved,saving,archived,archiving,archival,downloaded,downloading,hard drive,disk": [ + -0.014122230932116508, + 0.015551721677184105, + -0.08767516911029816, + 0.0031843690667301416, + 0.11405683308839798, + 0.0004940208746120334, + 0.05727933347225189, + -0.011291500180959702, + 0.03397563472390175, + 0.023226916790008545, + 0.04459979385137558, + 0.09469366818666458, + 0.035849492996931076, + -0.045587219297885895, + -0.0834396481513977, + 0.0409822091460228, + -0.044496648013591766, + 0.030444985255599022, + 0.008607271127402782, + -0.012272759340703487, + -0.014628819189965725, + 0.04193877428770065, + 0.048209335654973984, + 0.02469695918262005, + 0.0606527104973793, + -0.0002891574113164097, + -0.030783705413341522, + 0.02790721319615841, + 0.05569443106651306, + -0.08932968229055405, + -0.014639548026025295, + -0.019565535709261894, + 0.11307987570762634, + 0.018813656643033028, + 0.07948743551969528, + 0.031199511140584946, + -0.005523065570741892, + 0.024711716920137405, + 0.001769326627254486, + -0.001362646115012467, + 0.031527116894721985, + -0.035312749445438385, + -0.030546823516488075, + 0.06361296772956848, + -0.05773313716053963, + -0.04135676845908165, + -0.01702115684747696, + -0.04271066188812256, + 0.018344318494200706, + 0.013421119190752506, + 0.030278746038675308, + -0.029557302594184875, + -0.14936640858650208, + 0.0364651158452034, + 0.034028030931949615, + -0.026576440781354904, + -0.0248656515032053, + 0.012003108859062195, + -0.029114456847310066, + 0.03827665001153946, + -0.02013937011361122, + -0.0423809252679348, + -0.02118721976876259, + 0.04377954453229904, + 0.008692731149494648, + 0.06288926303386688, + -0.013506532646715641, + 0.05227256938815117, + 0.00509448628872633, + -0.057623688131570816, + -0.053243234753608704, + 0.005272286478430033, + -0.0834716334939003, + 0.021283604204654694, + -0.04466435685753822, + -0.0096756462007761, + 0.0853094756603241, + 0.07466831058263779, + -0.1069585382938385, + -0.04516610875725746, + -0.04262134060263634, + -0.07062409818172455, + 0.0163892675191164, + -0.008028627373278141, + 0.0025807663332670927, + 0.049052078276872635, + -0.006539388094097376, + -0.08451631665229797, + 0.01507528219372034, + -0.05387014523148537, + -0.06532415747642517, + -0.003303022123873234, + 0.12083844840526581, + 0.009817685931921005, + -0.1482612043619156, + 0.03462986648082733, + 0.13201558589935303, + -0.017097748816013336, + -0.006206829566508532, + 0.06657664477825165, + 0.06442601978778839, + 0.031658757477998734, + 0.041702255606651306, + -0.07243543118238449, + -0.06818576157093048, + -0.06577178090810776, + 0.06829429417848587, + 0.005819628015160561, + 0.013969804160296917, + 0.01640455611050129, + -0.050743602216243744, + -0.07192841917276382, + -0.05097084119915962, + -0.08312361687421799, + -0.020386533811688423, + -0.03689216822385788, + -0.1820477545261383, + 0.02831275574862957, + 0.07529968023300171, + 0.017939073964953423, + 0.04793199896812439, + -0.035073667764663696, + 0.06179894134402275, + -0.08166433125734329, + -0.0063288165256381035, + -0.07943346351385117, + 0.09502442926168442, + -4.6109229680259825e-34, + 0.07604401558637619, + 0.05091293528676033, + -0.06574919819831848, + 0.07054466009140015, + 0.029266024008393288, + -0.007132947910577059, + -0.01135338470339775, + -0.04266770929098129, + -0.13038629293441772, + -0.02448844723403454, + 0.06237546354532242, + 0.0890498161315918, + -0.08489388227462769, + 0.09696634858846664, + 0.07564237713813782, + 0.020616929978132248, + -0.032675016671419144, + 0.05587431415915489, + 0.011851515620946884, + -0.004855750128626823, + -0.007083488628268242, + 0.03815320134162903, + -0.031695056706666946, + -0.005788768175989389, + 0.028265107423067093, + -0.09815663844347, + 0.015535087324678898, + -0.04901963472366333, + -0.028582733124494553, + 0.00963938795030117, + 0.004353504627943039, + -0.04399634897708893, + 0.042081721127033234, + -0.030282098799943924, + 0.03529943525791168, + 0.034434571862220764, + -0.08810212463140488, + -0.004812850151211023, + -0.004427625797688961, + 0.00012467651686165482, + -0.027713876217603683, + -0.035475268959999084, + 0.021607667207717896, + -0.04754922538995743, + 0.04964562878012657, + 0.025963088497519493, + -0.027871446684002876, + -0.038302838802337646, + 0.009807390160858631, + 0.04395490884780884, + -0.03620115667581558, + -0.0017862909007817507, + 0.07313324511051178, + -0.005259575322270393, + -0.04884648695588112, + -0.02275768108665943, + 0.011269574984908104, + -0.00200178986415267, + 0.05007839947938919, + 0.01290122326463461, + 0.058950942009687424, + 0.013109308667480946, + 0.039665840566158295, + -0.05404503270983696, + 0.0025179570075124502, + 0.01245830301195383, + 0.018566086888313293, + -0.0015166876837611198, + 0.07067432254552841, + 0.04047350212931633, + -0.056588344275951385, + -0.023401733487844467, + 0.047575950622558594, + 0.01014153566211462, + 0.019739145413041115, + -0.019179509952664375, + -0.06697393208742142, + -0.004267942160367966, + -0.015255334787070751, + -0.05430285632610321, + -0.11603719741106033, + -0.09506086260080338, + -0.08834370970726013, + 0.021499572321772575, + 0.009264498017728329, + 0.05779142677783966, + 0.0001468881091568619, + -0.06864110380411148, + -0.03166469559073448, + 0.03980489447712898, + -0.027846693992614746, + 0.035416215658187866, + -0.02752383053302765, + -0.0747709721326828, + -0.0858273059129715, + -1.6797329381830774e-33, + 0.030626533553004265, + -0.04534796252846718, + -0.04124998301267624, + 0.0019619271624833345, + -0.06083916127681732, + 0.04711382836103439, + -0.009706336073577404, + 0.03886929899454117, + -0.04085483029484749, + 0.021056005731225014, + -0.010085276328027248, + 0.04052278771996498, + -0.05034032464027405, + -0.07963841408491135, + -0.006611985620111227, + 0.003295745700597763, + 0.06085594743490219, + -0.05146894231438637, + -0.03550736606121063, + 0.020530883222818375, + -0.07950014621019363, + -0.0307894516736269, + -0.03976629301905632, + 0.09231416136026382, + 0.05214781314134598, + -0.0059423623606562614, + -0.027414454147219658, + 0.027614053338766098, + -0.015147538855671883, + -0.007873044349253178, + 0.007846456952393055, + 0.0009131839615292847, + -0.04767315089702606, + -0.03098059818148613, + -0.036949872970581055, + -0.014030588790774345, + 0.11150917410850525, + 0.02021060138940811, + -0.012688917107880116, + 0.05188790708780289, + 0.013867675326764584, + 0.02691144309937954, + -0.014167164452373981, + 0.003140884917229414, + 0.02983488142490387, + -0.06418665498495102, + -0.1065663993358612, + -0.0067759728990495205, + -0.02885090559720993, + 0.04088818281888962, + 0.11731051653623581, + -0.035734571516513824, + -0.010319110006093979, + -0.03776752948760986, + 0.03406621515750885, + 0.003266792744398117, + 0.005846822634339333, + 0.045818064361810684, + 0.0013093213783577085, + -0.008919913321733475, + -0.03385449945926666, + -0.034338340163230896, + -0.04539550468325615, + -0.01105767022818327, + -0.0807306319475174, + -0.04755823314189911, + 0.06272801011800766, + -0.016839800402522087, + -0.13492996990680695, + 0.006205181125551462, + -0.012687699869275093, + -0.02223948948085308, + 0.007886495441198349, + -0.02074262499809265, + 0.027865299955010414, + -0.04027198255062103, + 0.06697754561901093, + 0.021021965891122818, + -0.03433360904455185, + -0.024432234466075897, + -0.02052491158246994, + 0.0818350613117218, + 0.0010829729726538062, + 0.02592610940337181, + -0.027000755071640015, + -0.06870228052139282, + -0.026421085000038147, + -0.025245951488614082, + -0.0058536045253276825, + -0.08733290433883667, + -0.02421875298023224, + 0.06150538846850395, + -0.009119197726249695, + 0.028668539598584175, + 0.02561970427632332, + -2.3591915976339806e-08, + -0.05485302954912186, + -0.04145487770438194, + -0.011564534157514572, + 0.010308792814612389, + 0.07974818348884583, + -0.04116807505488396, + -0.03650794178247452, + 0.03643237054347992, + -0.02345285192131996, + -0.08304239064455032, + 0.11547082662582397, + -0.04576926678419113, + -0.1305607408285141, + -0.01996009051799774, + -0.008446902967989445, + 0.07371705025434494, + 0.0014359987108036876, + 0.02828758955001831, + -0.004158989526331425, + -0.027833886444568634, + 0.002631427953019738, + 0.04306061193346977, + 0.07197515666484833, + 0.006393324118107557, + 0.07911811023950577, + -0.018583137542009354, + 0.03337366133928299, + 0.0613381564617157, + 0.09469794481992722, + 0.014893684536218643, + 0.07014363259077072, + 0.055019769817590714, + -0.0036889242473989725, + -0.033471595495939255, + -0.027522049844264984, + 0.0021352656185626984, + -0.017188964411616325, + 0.038499485701322556, + 0.031246354803442955, + 0.13513362407684326, + 0.04435763508081436, + -0.016175679862499237, + 0.010902004316449165, + -0.013678797520697117, + -0.03969800844788551, + -0.04710894823074341, + -0.009060331620275974, + 0.007418098859488964, + -0.026547465473413467, + -0.08529919385910034, + -0.04255024343729019, + -0.0442068949341774, + 0.044051192700862885, + 0.11557705700397491, + 0.004039236344397068, + -0.05087137594819069, + 0.039247024804353714, + 0.0469437912106514, + 0.03961558640003204, + 0.054609332233667374, + 0.1600402593612671, + 0.009428126737475395, + 0.06848862767219543, + 0.023903775960206985 + ], + "download-simple-bold||*updated*,saved,saving,archived,archiving,archival,downloaded,downloading,hard drive,disk,import": [ + -0.010655536316335201, + 0.02861064486205578, + -0.09073003381490707, + 0.016916591674089432, + 0.11221281439065933, + -0.011475336737930775, + 0.04905548319220543, + -0.01563652604818344, + -0.005251438822597265, + 0.04576051980257034, + 0.04373409226536751, + 0.06466974318027496, + 0.04191391542553902, + -0.054695941507816315, + -0.08034175634384155, + 0.028921719640493393, + -0.05713078752160072, + 0.02332642674446106, + 0.0076178014278411865, + -0.005519779399037361, + -0.038152795284986496, + 0.03207707032561302, + 0.021335400640964508, + 0.0275619775056839, + 0.047998327761888504, + 0.017204787582159042, + -0.04416618123650551, + 0.026387667283415794, + 0.05226077511906624, + -0.09146831184625626, + -0.025817222893238068, + -0.007771414704620838, + 0.11873474717140198, + 0.01024455577135086, + 0.08948599547147751, + 0.02452058717608452, + 0.008497243747115135, + 0.028955334797501564, + 0.010797837749123573, + 0.0014875682536512613, + 0.03911679983139038, + -0.04093128442764282, + -0.03261489421129227, + 0.06554365903139114, + -0.08665142953395844, + -0.04800388216972351, + -0.04084381088614464, + -0.037235941737890244, + 0.027478832751512527, + -0.008021052926778793, + 0.026470467448234558, + -0.04288563132286072, + -0.15463422238826752, + 0.01743672788143158, + 0.04843555763363838, + -0.015832040458917618, + -0.018256133422255516, + 0.022943800315260887, + -0.024857280775904655, + 0.025414172559976578, + -0.0010076435282826424, + -0.05169742554426193, + -0.004157865419983864, + 0.03798742964863777, + 0.0049269176088273525, + 0.039997201412916183, + -0.03862227499485016, + 0.04000288248062134, + -0.0011010775342583656, + -0.054683685302734375, + -0.05952727049589157, + 0.004052659031003714, + -0.10442482680082321, + 0.009701935574412346, + -0.050611916929483414, + -0.038590144366025925, + 0.08322875946760178, + 0.10678627341985703, + -0.11744532734155655, + -0.02114144340157509, + -0.06349238008260727, + -0.09265870600938797, + 0.005715949926525354, + 0.012653663754463196, + 0.00990201160311699, + 0.036172717809677124, + -0.004953108727931976, + -0.06969811022281647, + 0.012214730493724346, + -0.05517624318599701, + -0.04918155074119568, + -0.002994706854224205, + 0.11809280514717102, + 0.02116517908871174, + -0.15188254415988922, + 0.06466022878885269, + 0.1166052371263504, + 0.0015941214514896274, + -0.046300698071718216, + 0.06947848945856094, + 0.05669867992401123, + 0.039842601865530014, + 0.05715817213058472, + -0.09660330414772034, + -0.06702190637588501, + -0.0532679557800293, + 0.06216735392808914, + -0.002386990003287792, + 0.009915065951645374, + -0.002115987939760089, + -0.056424662470817566, + -0.08387766033411026, + -0.026456084102392197, + -0.10122165083885193, + -0.0273499246686697, + -0.019346142187714577, + -0.1617763638496399, + 0.037101633846759796, + 0.04980839043855667, + 0.040012992918491364, + 0.06513358652591705, + -0.0482223816215992, + 0.050072018057107925, + -0.07382354885339737, + -0.018390987068414688, + -0.064813032746315, + 0.10453217476606369, + -1.9024376897860524e-33, + 0.06842105090618134, + 0.06332919746637344, + -0.05758032575249672, + 0.07801587879657745, + 0.020711557939648628, + -0.020063625648617744, + -0.008198815397918224, + -0.049531709402799606, + -0.1160312369465828, + -0.02310715988278389, + 0.08225264400243759, + 0.07419544458389282, + -0.09499157220125198, + 0.09281247109174728, + 0.045264676213264465, + 0.013670689426362514, + -0.015414468012750149, + 0.055180758237838745, + 0.018567854538559914, + -0.0059538595378398895, + -0.013048631139099598, + 0.04929707571864128, + -0.035783782601356506, + -0.01570940762758255, + 0.035714175552129745, + -0.08887488394975662, + 0.021645216271281242, + -0.04775991290807724, + -0.028350284323096275, + 0.0013758805580437183, + 0.018738068640232086, + -0.03977679833769798, + 0.04641265049576759, + -0.0022410505916923285, + 0.02794373780488968, + 0.012102676555514336, + -0.06981534510850906, + 0.0010043577058240771, + -0.01816873624920845, + -0.02476031333208084, + -0.030060570687055588, + -0.03341009095311165, + 0.015284792520105839, + -0.05340227484703064, + 0.06610208749771118, + 0.04019704833626747, + -0.03936442732810974, + -0.05786336958408356, + 0.02320108190178871, + 0.019831735640764236, + -0.032488998025655746, + 0.009443814866244793, + 0.04669594392180443, + -0.0034355921670794487, + -0.05129101872444153, + -0.0170044656842947, + 0.016055667772889137, + 0.022572416812181473, + 0.05658867210149765, + 0.0028641121461987495, + 0.0622473880648613, + 0.025815831497311592, + 0.023201478645205498, + -0.02300696074962616, + 0.01650206930935383, + 0.019272692501544952, + 0.022701464593410492, + -0.0045277937315404415, + 0.06575928628444672, + 0.05068029835820198, + -0.07176435738801956, + -0.00234319013543427, + 0.03416724503040314, + 0.009240818209946156, + 0.026960249990224838, + -0.026843372732400894, + -0.05408736690878868, + -0.018021438270807266, + -0.0057487511076033115, + -0.0548827201128006, + -0.09981662034988403, + -0.08394645154476166, + -0.09834226220846176, + 0.033548951148986816, + -0.005674953106790781, + 0.06059235334396362, + -0.006644562352448702, + -0.01937682367861271, + -0.032340891659259796, + 0.013638109900057316, + -0.03779132291674614, + 0.03290228918194771, + -0.04820225387811661, + -0.0916520282626152, + -0.06871193647384644, + -8.331501719155202e-34, + 0.06758271157741547, + -0.04618827626109123, + -0.0352264903485775, + -0.0001898876071209088, + -0.06520985066890717, + 0.04912027344107628, + 0.006663978565484285, + 0.0495775081217289, + 0.0008622058667242527, + 0.04397166147828102, + 0.006185983773320913, + 0.036516670137643814, + -0.05880118906497955, + -0.08612173050642014, + 0.026849716901779175, + 0.033368080854415894, + 0.03628470003604889, + -0.01419348455965519, + -0.03543078154325485, + 0.026309749111533165, + -0.07163827121257782, + -0.028805403038859367, + -0.059618037194013596, + 0.088856041431427, + 0.054572004824876785, + -0.006691644433885813, + -0.017347302287817, + 0.04290156438946724, + -0.004395651631057262, + -0.0020270708482712507, + 0.001191169023513794, + -0.006440193857997656, + -0.05583653226494789, + -0.024573927745223045, + -0.04313792288303375, + 0.008050487376749516, + 0.09086938202381134, + 0.02279004454612732, + -0.004492098931223154, + 0.05806658789515495, + -0.00487968185916543, + 0.028563905507326126, + -0.012526101432740688, + -0.010461769998073578, + 0.0431181825697422, + -0.06998785585165024, + -0.08566674590110779, + -0.01600550301373005, + -0.06638423353433609, + 0.022236794233322144, + 0.11470998078584671, + -0.04555976390838623, + -0.027502993121743202, + -0.030569633468985558, + 0.04205726459622383, + 0.01882377453148365, + 0.025537332519888878, + 0.06626956164836884, + -0.014538083225488663, + -0.020387470722198486, + -0.05552147701382637, + -0.022389046847820282, + -0.06063723936676979, + -0.01697094924747944, + -0.08627061545848846, + -0.016109710559248924, + 0.036498334258794785, + -0.044553544372320175, + -0.12209946662187576, + -0.0015861880965530872, + 0.0015678666532039642, + -0.007353794761002064, + 0.0011289584217593074, + -0.03206193074584007, + 0.027404870837926865, + -0.03824705630540848, + 0.05909948796033859, + 0.024589279666543007, + -0.030353695154190063, + -0.028679605573415756, + -0.0173842404037714, + 0.07779619097709656, + 0.014685584232211113, + 0.006217768415808678, + -0.03283238783478737, + -0.054497137665748596, + -0.020012544468045235, + -0.007339597679674625, + -0.0003486930509097874, + -0.09262313693761826, + -0.04940272122621536, + 0.06493531912565231, + 0.03671196475625038, + 0.027455247938632965, + 0.02321534790098667, + -2.7380981038049867e-08, + -0.06754472106695175, + -0.0562918558716774, + -0.024782542139291763, + 0.010569261386990547, + 0.10601727664470673, + -0.0212949737906456, + -0.050815146416425705, + 0.012110719457268715, + -0.019702181220054626, + -0.08828230202198029, + 0.09057517349720001, + -0.042663972824811935, + -0.11310889571905136, + 0.008580600842833519, + -0.01953759230673313, + 0.10625506937503815, + -0.018103614449501038, + 0.04168105870485306, + 0.0072760502807796, + -0.01584768109023571, + 0.008391088806092739, + 0.0447809174656868, + 0.07134241610765457, + 0.01913953758776188, + 0.07882223278284073, + -0.01985851302742958, + 0.019438106566667557, + 0.07023357599973679, + 0.09130702912807465, + 0.003907196689397097, + 0.08014509081840515, + 0.03581184893846512, + -0.005291358567774296, + -0.02085147425532341, + -0.04076468572020531, + 0.005587847903370857, + -0.000453695363830775, + 0.04858459159731865, + 0.021601781249046326, + 0.11986669898033142, + 0.03125973790884018, + 0.003079837653785944, + 0.004363879561424255, + -0.025346461683511734, + -0.041298121213912964, + -0.05575133487582207, + -0.027181115001440048, + -0.01799328252673149, + -0.03280957415699959, + -0.1016046553850174, + -0.02081984654068947, + -0.0419246107339859, + 0.03471256420016289, + 0.09728872030973434, + -0.009990932419896126, + -0.03684188798069954, + 0.04016036540269852, + 0.04288390651345253, + 0.019334139302372932, + 0.05136171728372574, + 0.1394508332014084, + 0.05161770060658455, + 0.07737061381340027, + 0.025993039831519127 + ], + "dress-bold||clothes,clothing": [ + -0.005765936337411404, + 0.01963871717453003, + -0.004268711432814598, + 0.057092856615781784, + 0.078067347407341, + -0.020334875211119652, + 0.09544457495212555, + -0.09933596104383469, + -0.06321721524000168, + 0.01116730272769928, + 0.03610483184456825, + -0.03983892872929573, + 0.03584233671426773, + -0.06837644428014755, + 0.0726376548409462, + 0.03175857290625572, + 0.07822060585021973, + 0.0980793759226799, + 0.006008118856698275, + -0.0028215269558131695, + -0.02254578284919262, + 0.043183956295251846, + 0.05983244255185127, + 0.08513975143432617, + -0.0016060983762145042, + -0.057918962091207504, + 0.05463708937168121, + -0.0034497950691729784, + -0.0265693049877882, + -0.06821949034929276, + -0.01059439405798912, + -0.014769437722861767, + 0.09836457669734955, + 0.07479099184274673, + -0.02348456345498562, + 0.039756447076797485, + 0.04572734236717224, + -0.042949240654706955, + -0.006689306814223528, + 0.08253103494644165, + -0.029909977689385414, + -0.06832300126552582, + -0.1059153825044632, + 0.02719319611787796, + -0.003627631813287735, + 0.0163732822984457, + -0.002293937373906374, + 0.023544296622276306, + -0.045717351138591766, + 0.05219695344567299, + -0.018425732851028442, + -0.029059763997793198, + -0.087589330971241, + 0.03582356497645378, + -0.002031744457781315, + -0.014838469214737415, + -0.05801849067211151, + -0.018555914983153343, + 0.05874631553888321, + -0.013875765725970268, + 0.0038041463121771812, + 0.02386024035513401, + -0.0008106271852739155, + 0.09820080548524857, + 0.06641757488250732, + -0.025806725025177002, + 0.020171253010630608, + 0.09063095599412918, + -0.09458371251821518, + 0.00016359728761017323, + 0.0349632166326046, + -0.011063264682888985, + -0.02981821447610855, + 0.018245430663228035, + -0.07659738510847092, + 0.009876212105154991, + 0.0420982651412487, + -0.03128650039434433, + -0.04612642899155617, + -0.022817173972725868, + -0.1309412568807602, + -0.08894126862287521, + -0.0029240320436656475, + -0.037081528455019, + -0.0015956624411046505, + 0.005210232455283403, + -0.10332042723894119, + -0.08851220458745956, + -0.0431629978120327, + -0.020757634192705154, + -0.09062395244836807, + -0.028704678639769554, + -0.003623236669227481, + -0.01168730203062296, + -0.008343864232301712, + 0.010301276110112667, + 0.04717667028307915, + 0.006071189418435097, + 0.026694823056459427, + 0.07617609947919846, + 0.010081273503601551, + 0.06357152760028839, + 0.05571257695555687, + 0.042669471353292465, + -0.048629820346832275, + -0.089021697640419, + 0.035423386842012405, + -0.0021756074856966734, + -0.010656030848622322, + -0.009010386653244495, + -0.0398879311978817, + -0.08967181295156479, + 0.023520365357398987, + -0.057121649384498596, + 0.03417770564556122, + -0.04672795534133911, + 0.019720373675227165, + 0.007495588157325983, + 0.0927610918879509, + 0.03941592201590538, + 0.012526405043900013, + -0.002294929465278983, + 0.007660967763513327, + -0.08199995011091232, + -0.05212578922510147, + 0.006864053197205067, + 0.05145658925175667, + -1.9789594332887063e-33, + 0.07437228411436081, + 0.022863144055008888, + -0.041328173130750656, + 0.12122547626495361, + -0.016323622316122055, + 0.0013061357894912362, + -0.015006564557552338, + -0.07427556812763214, + -0.09304706007242203, + 0.10960043221712112, + 0.08246918767690659, + 0.03321695327758789, + -0.0783267691731453, + 0.08530063927173615, + 0.06172936409711838, + 0.037652671337127686, + 0.004234448540955782, + -0.0668734684586525, + -0.028663432225584984, + 0.0303502157330513, + -0.02178911864757538, + 0.0707552433013916, + -0.03872596099972725, + -0.024859294295310974, + -0.014528519473969936, + -0.0404987670481205, + 0.09093084186315536, + -0.0009073552791960537, + -0.09707280248403549, + 0.027684545144438744, + 0.08529376983642578, + -0.006496201269328594, + 0.0744500607252121, + 0.011573503725230694, + 0.012358732521533966, + 0.027963154017925262, + -0.08591388911008835, + 0.01116698794066906, + 0.030321678146719933, + 0.04420175403356552, + -0.014598339796066284, + -0.0421302504837513, + 0.03033488430082798, + 0.004680997226387262, + 0.00023404345847666264, + 0.12496364861726761, + 0.03153488412499428, + 0.006420474965125322, + -0.012626562267541885, + 0.06543772667646408, + 0.02255886234343052, + -0.008983315899968147, + 0.008584462106227875, + -0.029307451099157333, + 0.007382309064269066, + -0.018649494275450706, + -0.018649818375706673, + 0.0664101243019104, + 0.0034536540042608976, + -0.02704773284494877, + 0.011514938436448574, + 0.04099150374531746, + 0.03927057236433029, + -0.07636924833059311, + 0.006240361370146275, + 0.02863282337784767, + -0.0060874540358781815, + 0.01252096239477396, + 0.054540298879146576, + 0.0013863947242498398, + -0.031288228929042816, + 0.10681865364313126, + 0.014402080327272415, + 0.05857570841908455, + -0.00447359774261713, + 0.027332153171300888, + -0.013298723846673965, + -0.031642019748687744, + 0.0324968658387661, + -0.1008966937661171, + -0.10476339608430862, + 0.03939380124211311, + -0.03561582788825035, + 0.13391613960266113, + 0.007786963600665331, + -0.014247802086174488, + -0.0023425519466400146, + -0.06161906570196152, + -0.01204906590282917, + 0.04481750726699829, + 0.030587803572416306, + 0.0031217411160469055, + -0.020147249102592468, + -0.1115923672914505, + -0.05501151084899902, + -3.842109886338933e-35, + 0.11751461774110794, + 0.031077364459633827, + -0.012407173402607441, + -0.005768592935055494, + 0.0016755517572164536, + 0.009976406581699848, + -0.021709464490413666, + 0.02769576758146286, + -0.015564046800136566, + 0.06624654680490494, + 0.02420969307422638, + -0.053848136216402054, + -0.06279607862234116, + -0.0573488213121891, + 0.07349937409162521, + 0.046195775270462036, + 0.05779656395316124, + 0.017641853541135788, + -0.012082045897841454, + -0.015085959807038307, + -0.032803975045681, + -0.03406478837132454, + -0.04583841189742088, + 0.04794098809361458, + -0.07645634561777115, + 0.009781637229025364, + 0.006474938243627548, + 0.044278811663389206, + -0.09434758871793747, + -0.06372039020061493, + -0.015956450253725052, + -0.02689214237034321, + 0.0020415715407580137, + 0.0997331291437149, + -0.03460763767361641, + 0.018478205427527428, + -0.014246663078665733, + -0.0008847150020301342, + 0.05048597976565361, + 0.00014367680705618113, + 0.010411472991108894, + -0.03809591010212898, + -0.006438832730054855, + 0.05935833603143692, + -0.008676118217408657, + -0.06816799193620682, + -0.06710249185562134, + -0.07445819675922394, + -0.04449012503027916, + 0.013488049618899822, + -0.07382579892873764, + 0.020494874566793442, + -0.016155323013663292, + -0.006000735331326723, + -0.017775550484657288, + -0.007627835962921381, + -0.06635390222072601, + 0.015269042924046516, + -0.036015499383211136, + 0.06779090315103531, + 0.015343468636274338, + 0.07774467021226883, + -0.023702828213572502, + 0.028373010456562042, + 0.026740122586488724, + -0.04540107399225235, + -0.02486739307641983, + -0.03931105509400368, + 0.010343997739255428, + 0.014130470342934132, + 0.0927777960896492, + -0.06447169184684753, + 0.013180783949792385, + 0.04315219819545746, + -0.06896571069955826, + -0.0951465293765068, + 0.03763599321246147, + 0.0465814433991909, + 0.003616084111854434, + 0.05429620295763016, + -0.013854168355464935, + -0.0877906084060669, + -0.07184974104166031, + 0.050423212349414825, + 0.002850665245205164, + 0.09956274926662445, + -0.08146815001964569, + 0.031605467200279236, + 0.014696376398205757, + -0.05789599567651749, + -0.06893380731344223, + 0.03592470660805702, + -0.04012392833828926, + 0.0054312217980623245, + -0.04072393476963043, + -1.5586437029924127e-08, + -0.003223176347091794, + -0.02451469749212265, + -0.004319939762353897, + 0.013846132904291153, + -0.015626925975084305, + 0.021481698378920555, + -0.07650504261255264, + -0.10619233548641205, + -0.08187360316514969, + 0.03137853741645813, + 0.015138261020183563, + 0.0603373646736145, + -0.012927993200719357, + 0.018894122913479805, + 0.0169027429074049, + -0.004494833759963512, + -0.035716135054826736, + 0.028071939945220947, + -0.04367285594344139, + -0.025418192148208618, + 0.0011468982556834817, + 0.02720189094543457, + -0.012315758503973484, + 0.0004477343172766268, + 0.04502062126994133, + 0.01807832345366478, + -0.030101647600531578, + 0.050213705748319626, + 0.04004316031932831, + 0.17040923237800598, + 0.04895181581377983, + 0.05790701135993004, + -0.052420131862163544, + -0.030109357088804245, + -0.11182276904582977, + -0.05821879580616951, + -0.004602871835231781, + -0.058658014982938766, + 0.04061044752597809, + 0.08984939008951187, + 0.009019849821925163, + -0.006724237930029631, + 0.022601664066314697, + 0.006593466270714998, + 0.0072966068983078, + -0.002846861956641078, + 0.046377602964639664, + -0.03053087368607521, + -0.06767763197422028, + -0.052439529448747635, + -0.022666186094284058, + -0.09296459704637527, + 0.02412809617817402, + 0.09879715740680695, + -0.0643753632903099, + -0.08699147403240204, + 0.02221415378153324, + 0.10207328200340271, + -0.0056664296425879, + 0.039130233228206635, + 0.09181512147188187, + -0.08274546265602112, + 0.00519593246281147, + -0.07104216516017914 + ], + "dresser-bold||*new*,furniture,bedroom,storage,drawers,wardrobe": [ + 0.01785486750304699, + -0.06050678715109825, + -0.01024604868143797, + 0.03233363851904869, + -0.020185813307762146, + 0.0033352237660437822, + 0.009856871329247952, + -0.06810397654771805, + -0.043313249945640564, + 0.0629226416349411, + 0.026401441544294357, + 0.003649007063359022, + 0.06081908941268921, + 0.011966623365879059, + -0.004783313255757093, + 0.03914868086576462, + 0.04931192845106125, + 0.05560537800192833, + 0.0421811006963253, + 0.04927874356508255, + 0.007326860912144184, + 0.04383084923028946, + 0.049689412117004395, + 0.012735158205032349, + 0.06206940487027168, + -0.041537806391716, + -0.02920355089008808, + -0.030413171276450157, + 0.013098225928843021, + -0.08182181417942047, + 0.0035793220158666372, + 0.051363538950681686, + 0.0704290121793747, + 0.04106634855270386, + 0.0782795399427414, + 0.04408416152000427, + -0.022135494276881218, + -0.013764855451881886, + -0.011676916852593422, + 0.04591570794582367, + -0.07474071532487869, + 0.009825839661061764, + -0.06848283857107162, + 0.0829409658908844, + -0.011143471114337444, + -0.009360265918076038, + 0.011766764335334301, + -0.014765214174985886, + -0.011477221734821796, + -0.002362133702263236, + 0.011311735026538372, + -0.03466479480266571, + -0.1198328360915184, + 0.07502520084381104, + -0.009325428865849972, + 0.09802544116973877, + 0.007705536670982838, + -0.04307015985250473, + 0.0196096058934927, + -0.033928725868463516, + 0.05036725848913193, + 0.05603961646556854, + 0.0746767595410347, + -0.0005228397785685956, + 0.013781570829451084, + -0.020059872418642044, + -0.06245190650224686, + 0.07953660190105438, + -0.024395009502768517, + 0.008016238920390606, + -0.01996466889977455, + 0.029070409014821053, + -0.0005047957529313862, + 0.053926583379507065, + 0.027829887345433235, + -0.06471505761146545, + 0.0017882798565551639, + -0.049442268908023834, + -0.02250628173351288, + -0.0672493651509285, + -0.14330293238162994, + -0.02537345699965954, + -0.0031954555306583643, + -0.05317559838294983, + -0.059538185596466064, + 0.025496894493699074, + -0.08012982457876205, + -0.03376727178692818, + -0.10671471059322357, + -0.07859750837087631, + -0.015173050574958324, + -0.046301279217004776, + 0.012121735140681267, + -0.0032768286764621735, + -0.04767191782593727, + 0.04985939338803291, + 0.009588192217051983, + 0.04430360719561577, + 0.04955974593758583, + 0.009429252706468105, + -0.012900106608867645, + 0.05300668999552727, + 0.07228995859622955, + 0.05606970936059952, + -0.12166234105825424, + -0.07248672842979431, + -0.007798401638865471, + -0.010220099240541458, + -0.06414192169904709, + -0.018108781427145004, + -0.05284938961267471, + -0.06977828592061996, + -0.05584895238280296, + -0.06158196181058884, + -0.03164226934313774, + -0.027245638892054558, + -0.025108283385634422, + -0.004900048952549696, + 0.07693512737751007, + 0.07595124840736389, + 0.053474776446819305, + 0.006219928618520498, + 0.03236865997314453, + -0.03061801567673683, + -0.09298443794250488, + -0.006226661149412394, + 0.0518881194293499, + -2.7830728743580005e-33, + 0.06032399833202362, + 0.045259881764650345, + -0.036106593906879425, + 0.06838637590408325, + 0.05023910850286484, + 0.020324883982539177, + 0.007333653979003429, + 0.04618791490793228, + -0.06763248890638351, + 0.10661018639802933, + 0.045983508229255676, + 0.0009888643398880959, + -0.11484776437282562, + 0.07684756815433502, + 0.02418191358447075, + 0.010845605283975601, + -0.0053908685222268105, + -0.01434796117246151, + -0.01764889620244503, + 0.010600578971207142, + -0.036514848470687866, + 0.18012429773807526, + -0.013231220655143261, + 0.009814729914069176, + -0.010072051547467709, + -0.0459052212536335, + -0.008842671290040016, + -0.0017100799595937133, + -0.07474946975708008, + 0.01910374127328396, + -0.01142023503780365, + 0.0073274667374789715, + 0.05671397224068642, + 0.002760229865089059, + -0.04091115668416023, + -0.03537192568182945, + -0.01886872947216034, + -0.05100836232304573, + 0.001115683582611382, + -0.015264944173395634, + -0.02438764087855816, + 0.008378393948078156, + 0.04934372752904892, + 0.037773676216602325, + 0.0011090945918112993, + 0.09816856682300568, + 0.034294988960027695, + 0.012523910962045193, + 0.006323039997369051, + 0.05887042358517647, + -0.012518411502242088, + 0.04357658699154854, + -0.055365584790706635, + 0.06790342181921005, + -0.03964417427778244, + -0.08047155290842056, + -0.05058828368782997, + -0.023451557382941246, + 0.0634053573012352, + 0.03598596900701523, + 0.10947078466415405, + 0.11657185107469559, + 0.07205533236265182, + 0.014517577365040779, + -0.007235825527459383, + -0.043328702449798584, + 0.05418924614787102, + 0.014430826529860497, + 0.08896399289369583, + -0.008417051285505295, + -0.05058564990758896, + 0.026350803673267365, + -0.009059996344149113, + 0.04288661107420921, + 0.04398762807250023, + -0.013683621771633625, + -0.07846017926931381, + -0.005517845973372459, + -0.07734604179859161, + -0.13157223165035248, + -0.06845821440219879, + -0.022953713312745094, + -0.033211156725883484, + 0.1647322177886963, + -0.03470633924007416, + -0.02314852736890316, + 0.036534085869789124, + -0.05005712807178497, + 0.0010857830056920648, + 0.07334648072719574, + -0.07139700651168823, + 0.0315103754401207, + -0.028742477297782898, + -0.07268864661455154, + -0.05096020549535751, + -3.860741758785392e-34, + 0.045648038387298584, + -0.031539592891931534, + -0.05264505371451378, + 0.013584968633949757, + -0.04307083785533905, + 0.015676802024245262, + -0.05127431079745293, + -0.04121827706694603, + -0.001038540038280189, + 0.040589794516563416, + 0.006314781028777361, + -0.04430165886878967, + 0.005009398330003023, + -0.05110751837491989, + 0.04273681715130806, + 0.0003252255264669657, + 0.038067061454057693, + -0.028690280392766, + 0.010542338714003563, + 0.06353522837162018, + 0.0010634143836796284, + -0.01025447528809309, + -0.13219749927520752, + 0.00496235117316246, + -0.06227780133485794, + 0.018127454444766045, + 0.03525318205356598, + -0.010106376372277737, + -0.06485000997781754, + 0.003289339831098914, + -0.07558152824640274, + -0.07801252603530884, + 0.014234905131161213, + 0.09217455983161926, + -0.01413515955209732, + -0.09114380925893784, + -0.006030465010553598, + -0.08520788699388504, + -0.03385445848107338, + -0.0011590997455641627, + 0.019191619008779526, + -0.01878165267407894, + 0.004185935482382774, + 0.10045497119426727, + -0.004168235696852207, + -0.08541875332593918, + -0.1539095640182495, + -0.0035113089252263308, + 0.06303972005844116, + 0.0260176844894886, + -0.005643754731863737, + -0.0056791589595377445, + 0.014603527262806892, + -0.15352265536785126, + 0.003648668760433793, + 0.06215474382042885, + -0.03530656546354294, + -0.0075607565231621265, + 0.0906129702925682, + 0.15154916048049927, + -0.0007237520767375827, + 0.0674537941813469, + -0.06273002177476883, + 0.02465754933655262, + 0.001271585701033473, + -0.044343750923871994, + -0.019090769812464714, + -0.04954864829778671, + -0.005952765233814716, + -0.006195545196533203, + 0.0626598373055458, + 0.058178842067718506, + -0.006660370621830225, + 0.03422928974032402, + -0.019776511937379837, + -0.03719398006796837, + 0.07115340232849121, + -0.032271068543195724, + 0.05608335882425308, + -0.018599174916744232, + -0.02664056420326233, + -0.06707239151000977, + 0.028079703450202942, + 0.0046542431227862835, + -0.002191155683249235, + -0.0063029807060956955, + -0.07873106002807617, + 0.0297866053879261, + -0.003765364643186331, + -0.06426012516021729, + -0.01280912570655346, + 0.030178165063261986, + -0.09763813018798828, + -0.04644729942083359, + -0.02819986455142498, + -1.9350569147036367e-08, + -0.027698863297700882, + 0.023125793784856796, + 0.008599771186709404, + -0.059381622821092606, + -0.013252835720777512, + -0.09161432832479477, + 0.06692884117364883, + 0.0604291707277298, + -0.0560045950114727, + 0.043183621019124985, + 0.10472888499498367, + 0.03601808100938797, + -0.0038307991344481707, + 0.020214388146996498, + 0.05579479783773422, + 0.01998848468065262, + 0.01845398172736168, + 0.03644677624106407, + -0.03524395450949669, + -0.04434868320822716, + 0.06910233199596405, + 0.059015437960624695, + 0.0323730893433094, + -0.014359611086547375, + 0.010325209237635136, + 0.005635972134768963, + -0.034055039286613464, + 0.033662788569927216, + 0.05308523029088974, + 0.07696295529603958, + 0.13012859225273132, + 0.022693024948239326, + 0.02182880975306034, + 0.011281297542154789, + -0.036021966487169266, + 0.002535109641030431, + -0.06701283156871796, + -0.020095838233828545, + -0.01203350443392992, + 0.002331212628632784, + -0.05158200114965439, + -0.13006295263767242, + -0.022165684029459953, + -0.006792435888200998, + -0.02583504654467106, + -0.03793324902653694, + 0.06695583462715149, + -0.00046900296001695096, + -0.03059435449540615, + -0.05919415503740311, + -0.04907119274139404, + 0.0008423295221291482, + 0.013722334057092667, + 0.03615209832787514, + 0.0020621176809072495, + -0.052124667912721634, + 0.011481604538857937, + 0.025146188214421272, + 0.003361484268680215, + -0.009212108328938484, + 0.05827927961945534, + -0.015304358676075935, + -0.02002859301865101, + 0.002720510819926858 + ], + "dribbble-logo-bold||logos,round,basketball,sports,design": [ + 0.03244719281792641, + 0.0672067403793335, + -0.027146050706505775, + -0.07089850306510925, + 0.03913239389657974, + -0.020098600536584854, + 0.07153209298849106, + -0.0025224643759429455, + 0.08399089425802231, + 0.025406982749700546, + -0.04851734638214111, + 0.009145674295723438, + 0.02931962162256241, + -0.02642183192074299, + 0.018244199454784393, + -0.02830033376812935, + 0.011134047992527485, + 0.06369149684906006, + 0.05505192652344704, + -0.03933599218726158, + -0.00994435977190733, + 0.011444561183452606, + 0.006723784375935793, + 0.03268546611070633, + -0.007859368808567524, + 0.08785755932331085, + 0.06231587380170822, + 0.04752230644226074, + -0.05801975727081299, + -0.1535390317440033, + -0.045043040066957474, + -0.02081461064517498, + 0.10033661872148514, + 0.02076977677643299, + 0.015221582725644112, + -0.048134732991456985, + 0.007281369995325804, + 0.07677415758371353, + 0.00011400767834857106, + 0.01764789968729019, + 0.029049839824438095, + -0.07134739309549332, + 0.07398216426372528, + 0.11653410643339157, + -0.03474515303969383, + 0.06725197285413742, + -0.12560300529003143, + 0.06859029829502106, + 0.021853815764188766, + 0.035544127225875854, + -0.03150707855820656, + -0.12238206714391708, + -0.06519406288862228, + -0.027333969250321388, + 0.09384524822235107, + 0.02622016705572605, + 0.014531277120113373, + -0.002179408213123679, + 0.02355613373219967, + -0.08603770285844803, + 0.03485435992479324, + 0.023086685687303543, + -0.015236541628837585, + 0.04391203448176384, + 0.02322944812476635, + -0.03986947610974312, + -0.0028293002396821976, + -0.02687755413353443, + -0.02959427237510681, + 0.03330672159790993, + 0.047659799456596375, + 0.029087429866194725, + -0.013668977655470371, + -0.07896562665700912, + 0.009228675626218319, + 0.0035582631826400757, + -0.0023393165320158005, + 0.011795558035373688, + 0.02399861440062523, + -0.04652830958366394, + -0.04948294162750244, + -0.03221646323800087, + 0.012486032210290432, + -0.03720568120479584, + -0.02795988693833351, + 0.01855739951133728, + -0.06814838200807571, + -0.08171326667070389, + 0.04666891321539879, + 0.02118522860109806, + -0.0977514386177063, + 0.020609654486179352, + 0.0026511731557548046, + -0.008044426329433918, + -0.08442950248718262, + 0.0631798729300499, + -0.01328034047037363, + -0.07142820954322815, + -0.0030151160899549723, + 0.11087245494127274, + 0.02236104942858219, + 0.026615697890520096, + 0.0764155238866806, + -0.024257518351078033, + 0.020621268078684807, + -0.043456025421619415, + -0.023347361013293266, + -0.02107323333621025, + 0.022469481453299522, + 0.09551386535167694, + -0.031019143760204315, + -0.0034882468171417713, + -0.05632461607456207, + 0.07159630209207535, + -0.06018786132335663, + -0.09551328420639038, + -0.0324409194290638, + -0.008122570812702179, + 0.08656737208366394, + -0.005228270776569843, + 0.017775461077690125, + 0.040690790861845016, + -0.07234328985214233, + -0.044747985899448395, + -0.03985704109072685, + 0.012777958065271378, + -0.035950686782598495, + -4.300256616999449e-33, + -0.009298610500991344, + 0.03737697750329971, + -0.006588398013263941, + 0.10344486683607101, + -0.019418790936470032, + -0.024993576109409332, + -0.003861537901684642, + -0.08807219564914703, + -0.08249655365943909, + -0.03771514073014259, + 0.028075966984033585, + 0.049161091446876526, + -0.013422702439129353, + 0.10940435528755188, + 0.08221344649791718, + -0.10864712297916412, + -0.022288251668214798, + -0.05608367547392845, + -0.09350982308387756, + 0.020228618755936623, + -0.05393393710255623, + -0.004674640018492937, + 0.00907292403280735, + 0.010681628249585629, + -0.06404606252908707, + 0.004038446117192507, + 0.021256987005472183, + -0.006686671171337366, + -0.016828548163175583, + 0.015885012224316597, + 0.061872903257608414, + -0.04511648043990135, + -0.011192524805665016, + -0.007813768461346626, + -0.01824672520160675, + -0.043456483632326126, + -0.022312266752123833, + -0.04795285686850548, + 0.02748638391494751, + -0.0014786893734708428, + -0.005732446908950806, + -0.09932493418455124, + -0.09160912781953812, + 0.014441972598433495, + 0.040389109402894974, + 0.1061628982424736, + -0.03116263821721077, + -0.04036388546228409, + 0.008516116999089718, + -0.05893362686038017, + 0.05356437712907791, + -0.06274008005857468, + 0.02291744202375412, + -0.07858402281999588, + -0.019849006086587906, + -0.11349029093980789, + -0.011439520865678787, + 0.00927806831896305, + -0.05683853477239609, + -0.012006382457911968, + 0.058465324342250824, + 0.05901070684194565, + 0.0700746551156044, + -0.023896630853414536, + -0.037390876561403275, + 0.036649592220783234, + 0.023347513750195503, + 0.0778140276670456, + 0.06355225294828415, + -0.04403596371412277, + 0.04548778384923935, + 0.03080478310585022, + 0.08490359783172607, + 0.05812077596783638, + -0.08538882434368134, + 0.04058495908975601, + 0.05965934693813324, + 0.07626988738775253, + -0.008314721286296844, + 0.009665586985647678, + -0.027068743482232094, + -0.015416842885315418, + -0.07740504294633865, + -0.002928570844233036, + -0.008578126318752766, + -0.013563991524279118, + 0.022788437083363533, + -0.07167723029851913, + -0.06322384625673294, + 0.008112778887152672, + -0.12675242125988007, + 0.017775611951947212, + -0.011878618970513344, + 0.04081523418426514, + -0.061898358166217804, + 8.420081646974392e-34, + -0.009708449244499207, + 0.006001243367791176, + 0.07510944455862045, + 0.08803372085094452, + 0.03881444036960602, + -0.0038167827297002077, + 0.03819891810417175, + 0.08092948794364929, + 0.045017220079898834, + 0.023897841572761536, + 0.03490148484706879, + -0.02068314701318741, + -0.11894219368696213, + -0.05694841220974922, + 0.025746596977114677, + 0.03341993689537048, + 0.06291788071393967, + 0.023768000304698944, + -0.06863081455230713, + 0.025647180154919624, + 0.05407893657684326, + 0.00012881727889180183, + -0.07006191462278366, + 0.03252692148089409, + -0.06430181115865707, + 0.04405049979686737, + 0.037743743509054184, + -0.01940031163394451, + -0.10178635269403458, + 0.04451778903603554, + 0.003863760968670249, + 0.019057735800743103, + 0.05807844549417496, + 0.044487666338682175, + -0.0685238316655159, + -0.008290007710456848, + -0.017559753730893135, + -0.05202622339129448, + -0.00013133606989867985, + -0.01586243137717247, + 0.0492069311439991, + -0.032803475856781006, + -0.021867040544748306, + 0.02705959603190422, + 0.05877502262592316, + 0.01823374256491661, + -0.006014834623783827, + -0.04029402136802673, + -0.025626467540860176, + 0.06262379884719849, + 0.0024519208818674088, + 0.024389170110225677, + -0.023138225078582764, + 0.06841975450515747, + -0.08952845633029938, + -0.00017072039190679789, + 0.008432572707533836, + 0.037056174129247665, + 0.015911538153886795, + 0.04962385445833206, + -0.01928526721894741, + 0.005667448975145817, + -0.07877204567193985, + 0.0010407849913462996, + 0.0030699640046805143, + 0.019934795796871185, + 0.017053259536623955, + -0.06899569928646088, + -0.07306643575429916, + 0.012397149577736855, + -0.0033225594088435173, + 0.035968050360679626, + 0.004670171998441219, + 0.03334994241595268, + -0.060977671295404434, + 0.024845831096172333, + 0.0486534982919693, + 0.10342812538146973, + -0.05135658010840416, + 0.08475238084793091, + -0.055020611733198166, + -0.03110159933567047, + -0.07422944903373718, + 0.12275257706642151, + 0.06922036409378052, + 0.02808942086994648, + -0.03689564764499664, + -0.0044431122951209545, + -0.031241724267601967, + 0.06778090447187424, + 0.027697939425706863, + 0.06458942592144012, + 0.04769780486822128, + 0.04908454790711403, + 0.050967514514923096, + -1.975248231644855e-08, + 0.021777471527457237, + 0.012605249881744385, + 0.0015751945320516825, + -0.03769264370203018, + -0.013597016222774982, + 0.011418113484978676, + 0.011301560327410698, + -0.14307662844657898, + -0.007711071986705065, + -0.05608997866511345, + -0.008182954043149948, + -0.07267819344997406, + -0.043420951813459396, + -0.005521899089217186, + 0.01452096737921238, + 0.0611630417406559, + -0.1469304859638214, + 0.07086186110973358, + -0.02545633539557457, + 0.008843397721648216, + -0.05483924597501755, + 0.01792815513908863, + 0.02963077649474144, + -0.027022475376725197, + -0.0616285502910614, + -0.030849700793623924, + -0.06735590100288391, + -0.07252289354801178, + -0.033632464706897736, + -0.02334325946867466, + 0.042228713631629944, + 0.14302101731300354, + 0.04388315975666046, + -0.06351034343242645, + -0.029255783185362816, + -0.0403880700469017, + 0.06822943687438965, + -0.0735747441649437, + 0.0014566199388355017, + 0.05302003398537636, + -0.022705335170030594, + -0.05370765179395676, + -0.019784560427069664, + -0.03823636844754219, + -0.034574512392282486, + -0.022304391488432884, + 0.04776855558156967, + 0.03317984193563461, + -0.09558943659067154, + -0.012416969053447247, + -0.018038442358374596, + 0.08157942444086075, + -0.007104342803359032, + 0.01998862810432911, + 0.0018213777802884579, + 0.03467080742120743, + -0.009307564236223698, + 0.013510624878108501, + 0.01438235118985176, + 0.017009003087878227, + 0.08955938369035721, + -0.04818607494235039, + 0.026250824332237244, + -0.011873209848999977 + ], + "drone-bold||*new*,aerial,uav,photography,remote": [ + 0.027489664033055305, + -0.024636710062623024, + -0.0373261384665966, + -0.0577542819082737, + 0.056174080818891525, + -0.04817207530140877, + 0.02154061198234558, + -0.09187212586402893, + -0.009222798980772495, + 0.11668463796377182, + 0.0743599459528923, + 0.016907310113310814, + 0.047529321163892746, + -0.007890005595982075, + 0.052084170281887054, + 0.04314131662249565, + 0.04945408180356026, + -0.03468592092394829, + 0.0024668171536177397, + 0.0724237859249115, + -0.02965557388961315, + 0.08444351702928543, + 0.02961316704750061, + 0.023059379309415817, + 0.029413742944598198, + -0.0028109829872846603, + 0.03256074711680412, + 0.03427746891975403, + -0.002834363142028451, + -0.1286202073097229, + 0.01589282974600792, + 0.0863964781165123, + 0.08635029941797256, + 0.024718167260289192, + 0.07190671563148499, + 0.010689161717891693, + 0.0397772341966629, + -0.032481905072927475, + -0.02811271697282791, + 0.04772103577852249, + 0.034338124096393585, + -0.06363784521818161, + 0.05704650282859802, + 0.014084412716329098, + -0.02783627063035965, + 0.023986289277672768, + 0.0016312676016241312, + -0.016640374436974525, + 0.08588186651468277, + -0.036474134773015976, + -0.08177142590284348, + -0.1085745170712471, + -0.08404633402824402, + 0.02097189426422119, + 0.01750938408076763, + -0.024603696539998055, + -0.056540705263614655, + -0.019216982647776604, + 0.04438653960824013, + -0.08055642992258072, + 0.0004632773925550282, + 0.06057022511959076, + 0.05107719823718071, + 0.018218129873275757, + 0.028642410412430763, + -0.03424552083015442, + -0.06483983248472214, + -0.045539505779743195, + 0.035185541957616806, + -0.005013674031943083, + -0.023791875690221786, + 0.03907941281795502, + -0.005310712847858667, + 0.004358557052910328, + -0.0943245217204094, + -0.009253823198378086, + 0.10120812803506851, + 0.01547105610370636, + -0.03639679402112961, + -0.10126383602619171, + -0.0025299922563135624, + -0.05323701351881027, + -0.11404982209205627, + -0.026851492002606392, + 0.0028479101601988077, + 0.04161312058568001, + -0.08363141864538193, + -0.0022574926260858774, + -0.04816940426826477, + -0.0349075086414814, + -0.06806889921426773, + -0.05956720560789108, + -0.013243026100099087, + -0.015716198831796646, + -0.0986342504620552, + -0.015761811286211014, + 0.06073814630508423, + -0.10895740985870361, + -0.0060082064010202885, + 0.08123072236776352, + 0.05656157433986664, + -0.08568478375673294, + 0.017889350652694702, + 0.027920324355363846, + -0.0285782627761364, + -0.05633193626999855, + 0.028910810127854347, + 0.02657121792435646, + 0.04461359977722168, + -0.02246532216668129, + -0.019727937877178192, + -0.02358483523130417, + -0.07423365116119385, + -0.04832905903458595, + -0.04467812180519104, + 0.03663242235779762, + -0.06756976246833801, + 0.021449070423841476, + 0.06461507827043533, + 0.06023509055376053, + 0.03321065381169319, + -0.07994901388883591, + 0.04505280405282974, + -0.008774985559284687, + 0.036680229008197784, + -0.04299984872341156, + 0.014230809174478054, + -2.2965578030717336e-33, + 0.00983713660389185, + 0.08209677040576935, + -0.017266185954213142, + 0.1093728244304657, + 0.043510135263204575, + 0.033261869102716446, + -0.03935527801513672, + -0.018260866403579712, + -0.06464142352342606, + 0.011925501748919487, + 0.01403536181896925, + 0.05214177817106247, + 0.01900070160627365, + 0.12009350955486298, + 0.06112051382660866, + -0.0739235132932663, + -0.030216069892048836, + -0.04784870520234108, + -0.044164665043354034, + 0.00236895470879972, + -0.08724699169397354, + 0.06267378479242325, + -0.006289096549153328, + 0.04554234817624092, + 0.0428941547870636, + -0.03348357230424881, + 0.05677812546491623, + -0.04344205558300018, + -0.009840015321969986, + 0.04193086177110672, + 0.06146516278386116, + 0.07172177731990814, + 0.010023835115134716, + 0.016272401437163353, + -0.026434078812599182, + 0.03257611021399498, + -0.06815364211797714, + -0.09834473580121994, + -0.04764281213283539, + 0.00761782331392169, + -0.05656973645091057, + -0.0008636233978904784, + -0.07163450866937637, + -0.0015893303789198399, + 0.03171873465180397, + 0.047124188393354416, + -0.04604683816432953, + -0.028995797038078308, + -0.040807995945215225, + 0.05747511237859726, + -0.0001752110692905262, + 0.02954963967204094, + -0.009127921424806118, + -0.04643348231911659, + -0.0566493421792984, + -0.0413447730243206, + -0.004363924264907837, + 0.018727438524365425, + -0.004278888925909996, + -0.04825050011277199, + 0.030429596081376076, + -0.0008993580122478306, + -0.04454362019896507, + -0.03840058296918869, + -0.013751364313066006, + 0.043537214398384094, + 0.059497617185115814, + 0.05732111632823944, + 0.07117253541946411, + 0.05666939541697502, + -0.018174009397625923, + 0.07311014831066132, + 0.023931138217449188, + 0.026635514572262764, + -0.02261938713490963, + 0.0418538935482502, + -0.04562097787857056, + -0.018988939002156258, + 0.07037582993507385, + -0.02451363578438759, + -0.13225282728672028, + 0.11227130144834518, + -0.06518080830574036, + 0.09917382895946503, + -0.04822170361876488, + 0.003714266000315547, + -0.016135074198246002, + -0.057343240827322006, + -0.017564183101058006, + 0.05059182271361351, + -0.10257206112146378, + 0.017145566642284393, + -0.07460469007492065, + -0.06151647865772247, + -0.06667777895927429, + -7.760977372693528e-34, + -0.01341842208057642, + 0.07719776034355164, + -0.06394064426422119, + -0.007806360721588135, + -0.03313659876585007, + -0.03230941295623779, + 0.06352795660495758, + 0.06713013350963593, + -0.007957280613481998, + 0.005193150136619806, + 0.025301430374383926, + -0.010308974422514439, + -0.056400399655103683, + -0.047418951988220215, + 0.03455830737948418, + -0.015039448626339436, + -0.05469878390431404, + -0.026547076180577278, + 0.025501638650894165, + 0.04260826110839844, + 0.007807294838130474, + -0.012865012511610985, + -0.0002431745087960735, + 0.016627894714474678, + 0.041892003268003464, + 0.049527984112501144, + 0.006052299868315458, + 0.044478654861450195, + -0.009742476977407932, + -0.07166267931461334, + -0.013641683384776115, + -0.05927411466836929, + 0.0565827302634716, + 0.08610034734010696, + -0.023719988763332367, + 0.05001123622059822, + 0.026216670870780945, + -0.00793286319822073, + -0.014839938841760159, + -0.02021033503115177, + 0.04289882630109787, + 0.013276434503495693, + 0.00798746757209301, + -0.013055523857474327, + -0.06795748323202133, + -0.08155041933059692, + -0.056424397975206375, + 0.022209372371435165, + -0.054799970239400864, + 0.02773216925561428, + 0.027649609372019768, + -0.04572809487581253, + -0.021000856533646584, + 0.019007639959454536, + -0.02988474816083908, + -0.012169932015240192, + -0.012456655502319336, + 0.014948902651667595, + 0.07480356842279434, + 0.06815594434738159, + 0.03483765199780464, + -0.011740455403923988, + -0.08684329688549042, + 0.04304378107190132, + -0.04571397230029106, + -0.054355498403310776, + 0.04850706085562706, + 0.028487849980592728, + -0.03545650094747543, + 0.03463352471590042, + 0.06406891345977783, + -0.004051847383379936, + -0.013088391162455082, + -0.017864486202597618, + -0.037325598299503326, + -0.030520817264914513, + -0.01522834599018097, + -0.015640217810869217, + 0.023628216236829758, + -0.0011082933051511645, + 0.0049047404900193214, + -0.05204133316874504, + -0.04146217182278633, + 0.10177137702703476, + 0.04399331659078598, + 0.12279099971055984, + -0.0007962986710481346, + 0.006921803113073111, + 0.010769358836114407, + -0.008968238718807697, + -0.045149967074394226, + 0.015786267817020416, + 0.003977350890636444, + 0.045064106583595276, + -0.06955019384622574, + -2.1484462209286903e-08, + -0.02927812561392784, + 0.014326818287372589, + -0.003853878006339073, + 0.020358281210064888, + 0.04013308882713318, + -0.04304077848792076, + -0.040739160031080246, + -0.07329957187175751, + 0.025908611714839935, + -0.05744638293981552, + 0.04854100942611694, + -0.08195100724697113, + -0.048851657658815384, + 0.03967640548944473, + 0.0629412829875946, + 0.05794864520430565, + -0.06442858278751373, + -1.659592817304656e-05, + -0.01851069927215576, + -0.01880476623773575, + -0.08749661594629288, + 0.049787357449531555, + -0.03739098459482193, + -0.0075284321792423725, + -0.04199282452464104, + 0.0588885061442852, + -0.08107157796621323, + -0.027426917105913162, + 0.08195038884878159, + 0.051072414964437485, + 0.033436864614486694, + 0.0706668347120285, + -0.018599262461066246, + 0.002302709734067321, + -0.12646710872650146, + -0.013929743319749832, + -0.08168438076972961, + -0.06232987344264984, + 0.03447031229734421, + 0.08247821778059006, + 0.01955796405673027, + -0.005124988500028849, + -0.04344666376709938, + -0.031686071306467056, + 0.011029004119336605, + 0.008517053909599781, + 0.07096920162439346, + -0.1636175513267517, + -0.12115935981273651, + -0.10318281501531601, + 0.005198572762310505, + -0.01756628416478634, + 0.0037193293683230877, + 0.1113503947854042, + -0.02189691923558712, + 0.025753386318683624, + 0.05536125227808952, + -0.03813367709517479, + 0.039914075285196304, + 0.05896899849176407, + 0.14431285858154297, + -0.01855538971722126, + -0.02230505272746086, + 0.03999597206711769 + ], + "drop-bold||droplet,teardrop,raindrop,raining,meteorology,water,blur": [ + -0.04572966322302818, + -0.08909054100513458, + 0.09672274440526962, + 0.02463666908442974, + 0.10184437781572342, + 0.004095010459423065, + 0.11080189794301987, + -0.0372498594224453, + 0.011191139928996563, + -0.017758965492248535, + 0.021798916161060333, + -0.0005256480653770268, + -0.01646941713988781, + -0.012967533431947231, + -0.018870098516345024, + 0.06462506204843521, + -0.06441852450370789, + 0.021402595564723015, + -0.04765269532799721, + -0.03249397128820419, + 0.045038625597953796, + -0.009939701296389103, + -0.09495635330677032, + 0.04722589626908302, + 0.07966480404138565, + 0.04550723358988762, + 0.02717864327132702, + 0.0020950071047991514, + -0.0018708198331296444, + -0.10305096954107285, + 0.008678819984197617, + 0.054310426115989685, + 0.0688270777463913, + 0.027032699435949326, + 0.01490108110010624, + -0.007997692562639713, + -0.02214694581925869, + 0.03659498691558838, + 0.01127539947628975, + 0.040554895997047424, + -0.0032793651334941387, + -0.07506713271141052, + -0.03060748055577278, + 0.04570690169930458, + -0.028372567147016525, + -0.016376210376620293, + 0.01355127152055502, + 0.0474434457719326, + -0.0056068929843604565, + 0.051313336938619614, + -0.004057194571942091, + -0.05883922800421715, + -0.08590864390134811, + 0.03354594483971596, + -0.010394861921668053, + -0.048318568617105484, + -0.05808977410197258, + -0.078711599111557, + 0.05374842882156372, + -0.016643984243273735, + 0.0072325728833675385, + 0.05329715833067894, + -0.080594003200531, + 0.06672566384077072, + 0.089382104575634, + 0.03927059844136238, + -0.002803920768201351, + 0.052114538848400116, + -0.004042805638164282, + 0.0313229002058506, + -0.008466210216283798, + 0.07666804641485214, + 0.04954829066991806, + 0.0544884093105793, + -0.08799783140420914, + -0.021018294617533684, + 0.06440205872058868, + -0.04354247450828552, + -0.02448219247162342, + 0.015678338706493378, + -0.008282367140054703, + -0.053143054246902466, + -0.0008239068556576967, + -0.0037285732105374336, + 0.021313024684786797, + 0.0778740867972374, + -0.05530540645122528, + -0.05223160609602928, + -0.07921520620584488, + -0.07492347806692123, + -0.04198263958096504, + -0.0686863362789154, + 0.014649385586380959, + 0.07181420922279358, + -0.12926597893238068, + 0.04188290238380432, + 0.06587886065244675, + -0.10425597429275513, + 0.00039554128306917846, + 0.0754275918006897, + 0.017576685175299644, + -0.06260516494512558, + 0.01624247618019581, + -0.00015113086556084454, + -0.021371109411120415, + -0.10836365073919296, + 0.023654768243432045, + -0.038008589297533035, + 0.04800375923514366, + 0.04246560484170914, + -0.021579518914222717, + -0.07774541527032852, + -0.04258833825588226, + -0.05407758429646492, + -0.05097385495901108, + -0.055076587945222855, + -0.06628892570734024, + -0.02665083296597004, + 0.05655167996883392, + 0.010501367971301079, + -0.02862824685871601, + 0.036234088242053986, + -0.02793925814330578, + -0.02436663769185543, + -0.004971938673406839, + 0.026855479925870895, + -0.011974416673183441, + -2.8241029077427274e-34, + 0.09351780265569687, + -0.011953981593251228, + -0.0325324609875679, + 0.06054433807730675, + 0.032376859337091446, + -0.05891992151737213, + -0.08873645216226578, + -0.064796082675457, + -0.1224246546626091, + 0.04078921303153038, + -0.012236431241035461, + 0.03936876729130745, + -0.03717004880309105, + 0.03240324929356575, + 0.06755520403385162, + -0.031110381707549095, + 0.03229759261012077, + 0.004419868811964989, + -0.02242068015038967, + 0.016630373895168304, + -0.13416838645935059, + 0.053327519446611404, + -0.05751877650618553, + 0.011736222542822361, + 0.015474692918360233, + -0.014742202125489712, + 0.018592843785881996, + 0.012031245045363903, + 0.045474037528038025, + 0.04486973211169243, + 0.031378377228975296, + -0.004792678635567427, + 0.0560067817568779, + 0.05017725005745888, + 0.006869764998555183, + 0.014556230045855045, + -0.07941262423992157, + 0.0030783959664404392, + 0.05391319841146469, + -0.0015035578981041908, + -0.1069248765707016, + -0.05915042757987976, + -0.0863434299826622, + -0.02804260328412056, + 0.07210572808980942, + 0.020530011504888535, + 0.002214327221736312, + 0.010546360164880753, + -0.016977433115243912, + -0.040602464228868484, + 0.006944254506379366, + -0.002207341371104121, + 0.012241186574101448, + -0.01496883761137724, + 0.07361673563718796, + 0.028452828526496887, + 0.03812579810619354, + 0.031203268095850945, + 0.056303471326828, + -0.0015283259563148022, + 0.040601227432489395, + 0.035236526280641556, + 0.07352671027183533, + -0.10909438133239746, + 0.08058686554431915, + -0.0017217592103406787, + -0.020974313840270042, + 0.05905480310320854, + 0.03581198304891586, + -0.030634405091404915, + -0.07804400473833084, + 0.05712837725877762, + 0.01948883943259716, + 0.024565834552049637, + 0.03589675575494766, + -0.024649323895573616, + 0.024857984855771065, + -0.06554271280765533, + 0.0605073906481266, + -0.002196619054302573, + -0.13931161165237427, + -0.03973359987139702, + 0.0020355693995952606, + -0.0072028748691082, + -0.012249921448528767, + 0.054307565093040466, + 0.021248111501336098, + -0.08157839626073837, + -0.09653589874505997, + -0.04482511803507805, + -0.05126994475722313, + 0.003399026347324252, + 0.03569524362683296, + -0.1418548822402954, + -0.01219975296407938, + -1.2428424629427273e-33, + -0.01914404332637787, + 0.05305033177137375, + -0.06239714473485947, + 0.08711019903421402, + 0.0409562848508358, + 0.05949966609477997, + 0.05021144077181816, + 0.07899650186300278, + 0.05486516281962395, + 0.07671836018562317, + -0.01319778524339199, + 0.031738314777612686, + -0.16214346885681152, + -0.05832839012145996, + -0.006499417591840029, + 0.040343545377254486, + 0.03436817601323128, + -0.016471676528453827, + -0.058213673532009125, + -0.0005103829898871481, + -0.027592195197939873, + -0.046873562037944794, + -0.024675723165273666, + 0.06712798029184341, + -0.0666305348277092, + 0.009032499976456165, + 0.06712374091148376, + -0.01905001327395439, + 0.0047280010767281055, + -0.027828074991703033, + -0.05304306000471115, + 0.02241617813706398, + -0.0028451448306441307, + 0.06068717688322067, + -0.07079159468412399, + 0.015168405137956142, + 0.061722446233034134, + -0.04590228199958801, + -0.07665406167507172, + -0.012273693457245827, + -0.04261781647801399, + -0.0011455495841801167, + 0.0741150975227356, + 0.013384970836341381, + -0.0458727665245533, + -0.01895475946366787, + -0.02822510153055191, + 0.05526765435934067, + -0.0143100805580616, + 0.03610106185078621, + -0.007000784855335951, + -0.007133763749152422, + -0.05766059085726738, + 0.0806209146976471, + 0.005385385360568762, + -0.08785303682088852, + 0.04329591616988182, + -0.006561362184584141, + -0.07732123136520386, + 0.08309701830148697, + -0.04790428280830383, + -0.04914693161845207, + -0.05544494464993477, + 0.04625721648335457, + 0.045010924339294434, + -0.09966762363910675, + -0.05447177588939667, + 0.03527858853340149, + -0.0857166051864624, + 0.03608245402574539, + 0.053093019872903824, + -0.039830129593610764, + -0.046413812786340714, + -0.03048490174114704, + 0.06121864169836044, + -0.060878951102495193, + 0.02670150063931942, + 0.06260323524475098, + -0.024886664003133774, + 0.015549165196716785, + 0.003773993346840143, + -0.008871118538081646, + -0.07231102883815765, + 0.1029883623123169, + 0.004183560609817505, + -0.009875748306512833, + -0.02390141412615776, + 0.0025630041491240263, + 0.012263409793376923, + 0.04644860327243805, + -0.014923181384801865, + 0.05093320086598396, + 0.03996880725026131, + 0.030136775225400925, + -0.08714976906776428, + -2.1415443640648846e-08, + 0.009081268683075905, + -0.007775504142045975, + 0.006325253285467625, + -0.0712616816163063, + 0.03174782544374466, + -0.001984311267733574, + 0.024694690480828285, + 0.021074358373880386, + -0.0036509050987660885, + -0.087661512196064, + 0.010541330091655254, + 0.020491763949394226, + -0.07175520807504654, + 0.08121537417173386, + 0.09423559159040451, + -0.03788187354803085, + -0.013582045212388039, + 0.023681985214352608, + -0.03410343453288078, + -0.027847973629832268, + 0.004696150775998831, + 0.03504805266857147, + -0.0003384514129720628, + 0.01474457886070013, + 0.06266271322965622, + 0.029935462400317192, + -0.03883642330765724, + -0.03534049913287163, + 0.021542131900787354, + 0.07950203865766525, + 0.024947332218289375, + 0.08938353508710861, + 0.004428847227245569, + -0.04075085371732712, + -0.05334905907511711, + 0.06870198249816895, + 0.028960132971405983, + 0.02083694003522396, + -0.03270603343844414, + 0.15519371628761292, + 0.005894234403967857, + -0.031160572543740273, + -0.01477009616792202, + -0.00244185421615839, + 0.019036468118429184, + 0.02301785536110401, + 0.08928371220827103, + -0.06347823888063431, + 0.006788167636841536, + -0.06315790116786957, + -0.044501740485429764, + -0.015146481804549694, + 0.02102447673678398, + 0.08860444277524948, + 0.04179908335208893, + -0.007774617522954941, + 0.029766155406832695, + 0.02512948028743267, + 0.06233619898557663, + -7.355404522968456e-05, + 0.0703449547290802, + -0.034767672419548035, + -0.036684952676296234, + 0.08311806619167328 + ], + "drop-half-bold||droplet,teardrop,raindrop,humidity,water,contrast,brightness": [ + -0.021082693710923195, + -0.05606048181653023, + 0.09574317932128906, + 0.003327525919303298, + 0.10623788088560104, + -0.03492775559425354, + 0.08775732666254044, + 0.0035922785755246878, + -0.006470774300396442, + -0.026949964463710785, + 0.04046851024031639, + -0.03924091160297394, + -0.014346745796501637, + 0.0016804109327495098, + -0.01654859259724617, + 0.05508013069629669, + 0.003864363767206669, + -0.009851071983575821, + -0.05101308599114418, + 0.0004954192554578185, + 0.040708038955926895, + -0.035726673901081085, + -0.08568289875984192, + 0.03988116979598999, + 0.06621206551790237, + 0.06361297518014908, + 0.03597947582602501, + 0.021597372367978096, + -0.012637137435376644, + -0.11086643487215042, + -0.0005977713735774159, + 0.06030316650867462, + 0.07779636979103088, + 0.034371133893728256, + 0.006354433950036764, + -0.024959970265626907, + 0.024830060079693794, + 0.007736651226878166, + 0.003545282641425729, + 0.011854704469442368, + -0.021946009248495102, + -0.07361703366041183, + -0.00822649709880352, + 0.09472290426492691, + -0.04262688383460045, + -0.006034884601831436, + 0.005712525453418493, + 0.08066243678331375, + -0.016748972237110138, + 0.006843280047178268, + 0.02101040445268154, + -0.01788005232810974, + -0.09209880977869034, + 0.03304540738463402, + -0.023162785917520523, + -0.005355635657906532, + -0.06198606267571449, + -0.05409039929509163, + 0.06062786281108856, + -0.024672990664839745, + 0.03607376292347908, + 0.03484279662370682, + -0.07654779404401779, + 0.06273495405912399, + 0.08148133754730225, + 0.04403715208172798, + -0.00943098496645689, + -0.013325386680662632, + 0.007520198356360197, + -0.017497660592198372, + -0.016181373968720436, + 0.06245259940624237, + 0.006611101794987917, + 0.05520544573664665, + -0.10589487850666046, + -0.033282097429037094, + 0.0618954598903656, + -0.06346899271011353, + 0.004621811211109161, + -0.0010999917285516858, + -0.015614468604326248, + -0.009813010692596436, + 0.012990706600248814, + 0.05645103380084038, + 0.017851246520876884, + 0.05992177128791809, + -0.03195054456591606, + -0.0335172563791275, + -0.08536310493946075, + -0.08021143078804016, + -0.018950292840600014, + -0.014110897667706013, + -0.034098800271749496, + 0.028871748596429825, + -0.10320067405700684, + 0.040522459894418716, + 0.07281477004289627, + -0.11622221767902374, + -0.004865935537964106, + 0.09534058719873428, + 0.016531480476260185, + -0.08582092821598053, + 0.03515292704105377, + -0.02796758897602558, + -0.042077723890542984, + -0.1332193911075592, + 0.02762509696185589, + -0.01703547313809395, + 0.033810440450906754, + 0.019220149144530296, + -0.02863016352057457, + -0.054973214864730835, + -0.053007666021585464, + -0.029622279107570648, + -0.009092968888580799, + -0.099240243434906, + -0.04451384395360947, + 0.017708048224449158, + 0.06647802144289017, + 0.03260019049048424, + -0.0385235995054245, + 0.004543235991150141, + -0.020465800538659096, + -0.03287936747074127, + -0.016886865720152855, + 0.006668588146567345, + -0.012112759985029697, + -1.1031824382990121e-33, + 0.03615895286202431, + -0.025360707193613052, + -0.0287643950432539, + 0.04153585061430931, + 0.03652443364262581, + -0.0522201843559742, + -0.06627438217401505, + -0.0566292330622673, + -0.10878214240074158, + 0.057482361793518066, + 0.011220544576644897, + 0.05555516108870506, + -0.0624309778213501, + 0.06152115389704704, + 0.0687759518623352, + -0.01947885751724243, + 0.033049557358026505, + -0.01671750098466873, + -0.010539878159761429, + -0.013912059366703033, + -0.14659515023231506, + 0.07291018217802048, + -0.02242901735007763, + 0.03343209624290466, + 0.01641904190182686, + -0.0703650489449501, + 0.022908033803105354, + 0.00812767818570137, + 0.030864577740430832, + 0.037951547652482986, + 0.046776317059993744, + 0.00017261890752706677, + 0.05740920826792717, + 0.01916303113102913, + -0.025008441880345345, + 0.00608448451384902, + -0.07099727541208267, + 0.0057667638175189495, + 0.056674446910619736, + -0.00013749775825999677, + -0.12466398626565933, + -0.019554417580366135, + -0.04453925043344498, + -0.018284525722265244, + 0.03999245911836624, + 0.0025539954658597708, + 0.003721368033438921, + 0.024941956624388695, + 0.017377100884914398, + -0.04474334418773651, + -0.01268082670867443, + -0.018048079684376717, + 0.007174700032919645, + -0.039823293685913086, + 0.03437729552388191, + 0.04017272964119911, + 0.048831261694431305, + 0.043104466050863266, + 0.04448474198579788, + 0.021720420569181442, + 0.015383790247142315, + 0.05972714349627495, + 0.05147519335150719, + -0.09637949615716934, + 0.0650886595249176, + -0.04370066896080971, + -0.04824904352426529, + 0.03294547274708748, + -0.0012924822513014078, + -0.030326206237077713, + -0.08654213696718216, + 0.047774240374565125, + 0.060647282749414444, + 0.025396104902029037, + 0.01584625616669655, + -0.02065396122634411, + 0.06279529631137848, + -0.05521733686327934, + 0.06489621102809906, + -0.02170308120548725, + -0.1272207349538803, + -0.036253832280635834, + -0.003487201174721122, + -0.019046194851398468, + -0.0813334509730339, + 0.03346429765224457, + 0.013942020945250988, + -0.0639885663986206, + -0.10156790167093277, + -0.021753767505288124, + -0.0374712236225605, + -0.00020646787015721202, + 0.002031479962170124, + -0.14028671383857727, + 0.0052769542671740055, + -8.11933692744628e-34, + -0.0178653746843338, + 0.028340565040707588, + -0.07682932168245316, + 0.09302552789449692, + 0.04853739216923714, + 0.051297467201948166, + 0.03146100044250488, + 0.10600537806749344, + 0.051303617656230927, + 0.06740595400333405, + 0.0551503524184227, + 0.06441784650087357, + -0.1565689742565155, + -0.04052858054637909, + -0.01614813134074211, + 0.06998975574970245, + 0.05354965105652809, + -0.005464587826281786, + -0.004561596550047398, + -0.010809320025146008, + -0.020348703488707542, + 0.0031711424235254526, + -0.004559647757560015, + 0.06385228037834167, + -0.07514220476150513, + 0.02872502990067005, + 0.06154811382293701, + -0.04240062087774277, + -0.05666292831301689, + -0.021891430020332336, + -0.030966464430093765, + -0.0227047186344862, + 0.04175635427236557, + 0.06783541291952133, + -0.05963019281625748, + -0.04255634546279907, + 0.05659141764044762, + -0.07667486369609833, + -0.10589462518692017, + 0.00814098585397005, + -0.014187688939273357, + -0.013196040876209736, + 0.0813000351190567, + 0.012815452180802822, + -0.04409506171941757, + -0.03362393006682396, + -0.018175926059484482, + 0.0028432446997612715, + 0.0021924476604908705, + 0.0330490805208683, + 0.016388563439249992, + -0.006602110341191292, + -0.04315849393606186, + 0.11408397555351257, + -0.012845666147768497, + -0.10425644367933273, + 0.013121243566274643, + 0.04392281174659729, + -0.04263412207365036, + 0.12376613169908524, + -0.01899007521569729, + -0.03865371644496918, + -0.08556253463029861, + 0.019239392131567, + 0.0427277497947216, + -0.08514589071273804, + -0.01679336279630661, + 0.03926611691713333, + -0.06057281047105789, + 0.049228452146053314, + 0.07764316350221634, + -0.04484368488192558, + 0.003105507930740714, + -0.05428937450051308, + 0.07388094067573547, + -0.06385809928178787, + -0.002445363672450185, + 0.02157767303287983, + -0.04467003047466278, + 0.03248300775885582, + 0.004242605064064264, + -0.02835099771618843, + -0.06383871287107468, + 0.09915263950824738, + 0.0055132778361439705, + -0.04376140236854553, + -0.04593716189265251, + 0.006711009424179792, + 0.028738703578710556, + 0.00957467220723629, + -0.010199591517448425, + 0.05053291842341423, + 0.024256451055407524, + 0.02760613150894642, + -0.06344485282897949, + -2.223952755286973e-08, + 0.03970116376876831, + -0.04898679256439209, + 0.023137861862778664, + -0.10320834070444107, + 0.008271558210253716, + -0.026459548622369766, + 0.040745485574007034, + 0.0038771810941398144, + 0.00650233868509531, + -0.05978727340698242, + 0.013106546364724636, + 0.005030781030654907, + -0.09664157032966614, + 0.0458814837038517, + 0.08352387696504593, + -0.01532871462404728, + -0.020450254902243614, + 0.05498988926410675, + -0.030538314953446388, + -0.033508505672216415, + -0.002326641231775284, + 0.010467159561812878, + 0.058851197361946106, + -0.015769703313708305, + 0.044730156660079956, + 0.0351548045873642, + -0.022495558485388756, + -0.01730484887957573, + 0.02610866166651249, + 0.07039418816566467, + 0.059919264167547226, + 0.09752017259597778, + 0.04145370423793793, + -0.06764420121908188, + -0.0480065681040287, + 0.10273193567991257, + -0.007543277461081743, + 0.011183558963239193, + -0.04978085309267044, + 0.13388438522815704, + -0.009061673656105995, + -0.07852869480848312, + -0.03605138510465622, + -0.010504018515348434, + 0.055259495973587036, + 0.018703775480389595, + 0.11861242353916168, + -0.010757037438452244, + -0.009031514637172222, + -0.05958037078380585, + -0.028377387672662735, + -0.0075708962976932526, + 0.011495226062834263, + 0.08339615166187286, + -0.04390407353639603, + -0.031139185652136803, + 0.028793299570679665, + 0.050757355988025665, + 0.05105356499552727, + -0.010193373076617718, + 0.08472715318202972, + 0.013394789770245552, + -0.01581212319433689, + 0.055679380893707275 + ], + "drop-half-bottom-bold||droplet,teardrop,raindrop,humidity,water,contrast,brightness": [ + -0.023254863917827606, + -0.05464908108115196, + 0.0971323773264885, + -0.0023543608840554953, + 0.10901233553886414, + -0.050110284239053726, + 0.08883622288703918, + 0.03394918143749237, + 0.0040582213550806046, + -0.02894612029194832, + 0.025709515437483788, + -0.03031283989548683, + -0.01894412189722061, + -0.001467381021939218, + -0.02581506036221981, + 0.042394235730171204, + 0.007218807004392147, + -0.008289351128041744, + -0.03745776414871216, + 0.0047300285659730434, + 0.040366917848587036, + -0.0408070906996727, + -0.07763954252004623, + 0.03437500447034836, + 0.05946909263730049, + 0.0713452696800232, + 0.015165447257459164, + 0.03599407896399498, + -0.023566633462905884, + -0.12293050438165665, + -0.005383123643696308, + 0.06823693215847015, + 0.08308196067810059, + 0.029814472422003746, + 0.02190009318292141, + -0.041383225470781326, + 0.02033819630742073, + 0.01706879772245884, + 0.006700091529637575, + 0.009523579850792885, + -0.026235032826662064, + -0.07767796516418457, + 0.007061986718326807, + 0.10143183171749115, + -0.0354156494140625, + 0.011963030323386192, + 0.014055287465453148, + 0.06642264872789383, + -0.020095478743314743, + 0.007915869355201721, + 0.04372250288724899, + -0.016562605276703835, + -0.08929856866598129, + 0.04232756793498993, + -0.02506404183804989, + 0.005205617286264896, + -0.05070444196462631, + -0.07125360518693924, + 0.057966575026512146, + -0.009343048557639122, + 0.0697808712720871, + 0.03548043221235275, + -0.08851374685764313, + 0.06657418608665466, + 0.09513192623853683, + 0.02342117764055729, + -0.020439552143216133, + -0.01001859363168478, + -0.017277026548981667, + -0.00702650798484683, + -0.02556626684963703, + 0.054478101432323456, + 0.011598852463066578, + 0.035048846155405045, + -0.10602379590272903, + -0.05042003467679024, + 0.05275510624051094, + -0.04643040895462036, + 0.008921452797949314, + 0.004248292651027441, + -0.006071179173886776, + 0.00031217854120768607, + 0.0214590672403574, + 0.0593317411839962, + -0.01243172399699688, + 0.05243517458438873, + -0.011822886765003204, + -0.019428040832281113, + -0.09436732530593872, + -0.07944032549858093, + -0.024035369977355003, + -0.02591627649962902, + -0.039805807173252106, + 0.03494478389620781, + -0.09828359633684158, + 0.0476856529712677, + 0.060244474560022354, + -0.13098663091659546, + 0.005389141384512186, + 0.09507749229669571, + 0.013507075607776642, + -0.09123469144105911, + 0.045201972126960754, + -0.029035406187176704, + -0.04464443773031235, + -0.12803113460540771, + 0.02314373105764389, + -0.013400472700595856, + 0.04669627919793129, + 0.01974610611796379, + -0.04091489315032959, + -0.05287574604153633, + -0.03436754643917084, + -0.020442022010684013, + -0.011486767791211605, + -0.11601028591394424, + -0.03891107812523842, + 0.02299533411860466, + 0.05183127522468567, + 0.010198383592069149, + -0.043735552579164505, + 0.008078698068857193, + -0.016097545623779297, + -0.02564442716538906, + -0.011094920337200165, + 0.010644794441759586, + -0.01115424744784832, + -1.2274651601240486e-33, + 0.060095738619565964, + -0.039978161454200745, + -0.03063356876373291, + 0.031071078032255173, + 0.04266040772199631, + -0.04739159718155861, + -0.05559844896197319, + -0.05555128678679466, + -0.11126997321844101, + 0.09185905009508133, + 0.013170852325856686, + 0.05355772748589516, + -0.06346329301595688, + 0.05057458579540253, + 0.07069725543260574, + -0.016410768032073975, + 0.026387887075543404, + -0.02475873939692974, + -0.018969401717185974, + -0.03416605293750763, + -0.13026879727840424, + 0.06023840978741646, + -0.022637873888015747, + 0.034786101430654526, + 0.03497358411550522, + -0.06851369142532349, + 0.02337932586669922, + -0.002441532677039504, + 0.010068327188491821, + 0.03158556669950485, + 0.04504460468888283, + 0.007080650422722101, + 0.05887326970696449, + 0.021680330857634544, + -0.028383571654558182, + 0.007006670814007521, + -0.06025218963623047, + 4.956006887368858e-05, + 0.050020117312669754, + -0.02332652173936367, + -0.11590547114610672, + -0.023440662771463394, + -0.037231989204883575, + 0.005360998213291168, + 0.032022569328546524, + 0.00393341388553381, + -0.00748453801497817, + 0.027054563164711, + 0.024710731580853462, + -0.02874564565718174, + -0.030791038647294044, + -0.0312780886888504, + 0.016120469197630882, + -0.04172242432832718, + 0.03726761043071747, + 0.034035950899124146, + 0.016582272946834564, + 0.050177376717329025, + 0.026719657704234123, + 0.022214854136109352, + 0.03439345583319664, + 0.05660155415534973, + 0.02718200348317623, + -0.10453125834465027, + 0.06946030259132385, + -0.04226156324148178, + -0.036836717277765274, + 0.03530249372124672, + -0.0008414788171648979, + -0.034603726118803024, + -0.08950185775756836, + 0.03517689183354378, + 0.06407944113016129, + 0.029113175347447395, + 0.0073726545087993145, + -0.008943789638578892, + 0.05340072512626648, + -0.0642562285065651, + 0.05465272068977356, + -0.024416564032435417, + -0.11223679035902023, + -0.02384752780199051, + 8.353281737072393e-05, + -0.016005661338567734, + -0.0811159759759903, + 0.024938659742474556, + 0.02872879058122635, + -0.053093135356903076, + -0.08763045817613602, + -0.008106534369289875, + -0.06939700990915298, + -0.02327394112944603, + 0.016481535509228706, + -0.1264655590057373, + -0.002190442057326436, + -1.8873972625261553e-34, + -0.01823500171303749, + 0.02855614945292473, + -0.0740434005856514, + 0.08931278437376022, + 0.054016999900341034, + 0.04223112389445305, + 0.03976859897375107, + 0.11105845868587494, + 0.05334405601024628, + 0.08344926685094833, + 0.03495026379823685, + 0.0817076563835144, + -0.12755922973155975, + -0.04067423194646835, + -0.013723521493375301, + 0.061527419835329056, + 0.033573348075151443, + -0.02193041332066059, + -0.006201702170073986, + -0.01884465478360653, + -0.02131437137722969, + 0.023303892463445663, + -0.021228915080428123, + 0.04893562197685242, + -0.07152453809976578, + 0.03247479721903801, + 0.06525272130966187, + -0.041042011231184006, + -0.0799766480922699, + -0.024978844448924065, + -0.029557833448052406, + -0.026339050382375717, + 0.04628455638885498, + 0.05959135293960571, + -0.062409188598394394, + -0.0366557240486145, + 0.06450363993644714, + -0.08240775763988495, + -0.1125459223985672, + -0.011323333717882633, + -0.023065054789185524, + -0.0045106480829417706, + 0.0868573784828186, + 0.008177082985639572, + -0.034375160932540894, + -0.03154339641332626, + -0.03445170819759369, + 0.011875778436660767, + 0.003762216540053487, + 0.014069733209908009, + -0.009339580312371254, + -0.02068396843969822, + -0.03402449190616608, + 0.10718294233083725, + 0.009582153521478176, + -0.08726855367422104, + 0.02210090681910515, + 0.04411717504262924, + -0.042687635868787766, + 0.11732900887727737, + -0.00636645033955574, + -0.03029514104127884, + -0.08513397723436356, + 0.0014029231388121843, + 0.04019540548324585, + -0.0659012421965599, + -0.02528367005288601, + 0.0504051148891449, + -0.08067451417446136, + 0.05442356318235397, + 0.05549246817827225, + -0.03850459307432175, + 0.008156605996191502, + -0.06540857255458832, + 0.08888033032417297, + -0.06993737816810608, + 0.004412391223013401, + 0.0389101468026638, + -0.04431471228599548, + 0.018029093742370605, + -0.006586138624697924, + -0.03775304555892944, + -0.05945063754916191, + 0.09887667000293732, + 0.00849671196192503, + -0.05670711398124695, + -0.040597766637802124, + 0.0145111083984375, + 0.03144359961152077, + 0.010709662921726704, + -0.02241244912147522, + 0.035356130450963974, + 0.02856263890862465, + 0.026677215471863747, + -0.06649641692638397, + -2.229426243616217e-08, + 0.050563305616378784, + -0.05000850185751915, + 0.028763439506292343, + -0.10617569833993912, + 0.006894985679537058, + -0.017866555601358414, + 0.06744828820228577, + 0.03190154582262039, + 0.019861236214637756, + -0.054864656180143356, + 0.002392081543803215, + 0.01476391963660717, + -0.09579960256814957, + 0.04116472229361534, + 0.09689372777938843, + 0.008278192020952702, + -0.02175717242062092, + 0.07215019315481186, + -0.03216437250375748, + -0.044334109872579575, + 0.005081284325569868, + 0.007030572276562452, + 0.06830001622438431, + -0.018860289826989174, + 0.053544044494628906, + 0.026371467858552933, + -0.019011113792657852, + -0.022983582690358162, + 0.02956949733197689, + 0.06779210269451141, + 0.06294235587120056, + 0.1116427481174469, + 0.05262967571616173, + -0.07172564417123795, + -0.0398654080927372, + 0.10396052151918411, + -0.02227708511054516, + 0.01410529762506485, + -0.042330630123615265, + 0.12356267124414444, + -0.011423544958233833, + -0.08522885292768478, + -0.018336009234189987, + -0.002106380183249712, + 0.05232514068484306, + 0.026723014190793037, + 0.10214278846979141, + 0.004557064268738031, + 0.004708392545580864, + -0.05340506136417389, + -0.024578191339969635, + -0.011546947062015533, + 0.0197504460811615, + 0.08802734315395355, + -0.039641767740249634, + -0.029918180778622627, + 0.03975241631269455, + 0.04540209844708443, + 0.04817171022295952, + -0.007147049531340599, + 0.0739714577794075, + 0.02845906838774681, + -0.017116090282797813, + 0.05175476521253586 + ], + "drop-simple-bold||*new*,droplet,teardrop,raindrop,raining,humidity,meteorology,water,blur": [ + -0.04104093834757805, + -0.07859621942043304, + 0.09656235575675964, + 0.027788320556282997, + 0.11314383149147034, + -0.004423870705068111, + 0.10382063686847687, + -0.03251742199063301, + -0.013270217925310135, + 0.0003925217897631228, + 0.04690273851156235, + -0.02318345382809639, + -0.02591022290289402, + -0.011336305178701878, + -0.014712459407746792, + 0.03621042147278786, + -0.039728015661239624, + -0.0026568048633635044, + -0.06016550958156586, + -0.007112139370292425, + 0.04018164798617363, + -0.016367098316550255, + -0.1121685728430748, + 0.05343753844499588, + 0.07728725671768188, + 0.061181191354990005, + 0.02150776796042919, + 0.01761287823319435, + 0.012024356983602047, + -0.10729078203439713, + -0.006927573122084141, + 0.07041401416063309, + 0.0880429744720459, + 0.018822604790329933, + 0.03854617848992348, + -0.017425665631890297, + -0.011133129708468914, + 0.03165844827890396, + -0.000861740205436945, + 0.024880988523364067, + -0.028840268030762672, + -0.09034097194671631, + -0.02645598165690899, + 0.06266238540410995, + -0.04621400684118271, + -0.01063857413828373, + 0.019306449219584465, + 0.04526568576693535, + 0.017755305394530296, + 0.04167059063911438, + 0.00873926468193531, + -0.05288061872124672, + -0.08715806901454926, + 0.010517223738133907, + -0.00178868742659688, + -0.03892085328698158, + -0.056711070239543915, + -0.0783003494143486, + 0.035900015383958817, + -0.0351506769657135, + 0.027133464813232422, + 0.03080744668841362, + -0.06345264613628387, + 0.07555358856916428, + 0.0770089402794838, + 0.029204178601503372, + -0.04133826866745949, + 0.03453097119927406, + 0.011983547359704971, + 0.029110435396432877, + -0.027246180921792984, + 0.07804039120674133, + 0.015150750987231731, + 0.07163398712873459, + -0.07809316366910934, + -0.05420432984828949, + 0.04002100229263306, + -0.021061010658740997, + -0.018396658822894096, + 0.03499819338321686, + -0.0036176564171910286, + -0.05212412029504776, + -0.017279518768191338, + 0.011372203007340431, + 0.011411132290959358, + 0.08732344210147858, + -0.05298079922795296, + -0.04269326850771904, + -0.059965603053569794, + -0.09691255539655685, + -0.034000590443611145, + -0.03634815663099289, + -0.008840752765536308, + 0.07941124588251114, + -0.137685626745224, + 0.057599298655986786, + 0.05040605738759041, + -0.10989493131637573, + -0.013577170670032501, + 0.09606845676898956, + 0.014290680177509785, + -0.05084840580821037, + 0.04332731291651726, + -0.0007125549600459635, + -0.037025339901447296, + -0.10888440161943436, + 0.01508493535220623, + -0.043122511357069016, + 0.031138166785240173, + 0.05832650512456894, + -0.035104576498270035, + -0.07609646022319794, + -0.03689124062657356, + -0.04539649188518524, + -0.038606733083724976, + -0.04480601102113724, + -0.071908138692379, + -0.031083418056368828, + 0.05306864157319069, + 0.03755025938153267, + -0.009642273187637329, + 0.024845799431204796, + -0.039207395166158676, + -0.028489110991358757, + -0.03845260292291641, + 0.028385885059833527, + -0.011351805180311203, + -1.0472041116159086e-33, + 0.09397975355386734, + 0.000640966696664691, + -0.023261696100234985, + 0.0813613086938858, + 0.03072020784020424, + -0.06577168405056, + -0.09363950788974762, + -0.051726821810007095, + -0.10170745104551315, + 0.03314778953790665, + 0.008908828720450401, + 0.018480928614735603, + -0.035871993750333786, + 0.0448128916323185, + 0.059113018214702606, + -0.0351637527346611, + 0.03524084761738777, + 0.005540125072002411, + 0.016901634633541107, + -0.00609869509935379, + -0.14303460717201233, + 0.09942576289176941, + -0.04551243409514427, + 0.01536734588444233, + 0.015615713782608509, + -0.015414123423397541, + 0.03447544202208519, + -0.012499717064201832, + 0.027431251481175423, + 0.03883792832493782, + 0.04202238842844963, + -0.010676936246454716, + 0.06522868573665619, + 0.05024530738592148, + -0.002320993458852172, + 0.02982966974377632, + -0.06488227844238281, + 0.00768487062305212, + 0.042802594602108, + -0.029310686513781548, + -0.11248812079429626, + -0.05050337687134743, + -0.07823413610458374, + -0.02105787768959999, + 0.07798084616661072, + 0.018032889813184738, + -0.0024092979729175568, + -0.005530535243451595, + -0.0014949592296034098, + -0.04919339716434479, + -0.019158804789185524, + 0.0034657088108360767, + -0.008268620818853378, + -0.0061673689633607864, + 0.044058363884687424, + 0.03382430598139763, + 0.02444770745933056, + 0.03593362122774124, + 0.05950742959976196, + -0.00770361814647913, + 0.04741733521223068, + 0.05504795163869858, + 0.06518115848302841, + -0.08245393633842468, + 0.0720028355717659, + -0.020921500399708748, + -0.022105999290943146, + 0.0627339780330658, + 0.021238582208752632, + -0.0020724895875900984, + -0.08368930965662003, + 0.03745940327644348, + 0.008639538660645485, + 0.03299453482031822, + 0.05323813855648041, + -0.020141631364822388, + 0.0470295175909996, + -0.07484682649374008, + 0.049818821251392365, + -0.014345487579703331, + -0.13682693243026733, + -0.037256911396980286, + -0.00385801843367517, + 0.02030085399746895, + -0.044700924307107925, + 0.03417464718222618, + 0.03301706165075302, + -0.05543076992034912, + -0.09873650223016739, + -0.034344159066677094, + -0.07425275444984436, + 0.005993198603391647, + 0.005128337070345879, + -0.13686177134513855, + -0.0033151914831250906, + -1.6041332230618498e-33, + -0.018368709832429886, + 0.039833519607782364, + -0.08393380790948868, + 0.08753536641597748, + 0.020290028303861618, + 0.0621945858001709, + 0.03798239305615425, + 0.08480456471443176, + 0.071036696434021, + 0.06831385940313339, + -0.0021299729123711586, + 0.0252960417419672, + -0.1496504545211792, + -0.04918448254466057, + 0.017581433057785034, + 0.07157570868730545, + -0.0043710945174098015, + -0.0017395663307979703, + -0.044449515640735626, + 0.02047160640358925, + -0.009991448372602463, + -0.028585387393832207, + -0.05890674889087677, + 0.03958220034837723, + -0.06427469104528427, + -0.007343989331275225, + 0.04913182184100151, + -0.008829781785607338, + -0.015795430168509483, + -0.029999548569321632, + -0.06180809810757637, + -0.002911049174144864, + 0.0070400964468717575, + 0.09394269436597824, + -0.0711013525724411, + -0.0038109805900603533, + 0.05855703726410866, + -0.0723964050412178, + -0.08036992698907852, + -0.019788134843111038, + -0.041506703943014145, + -0.005804526619613171, + 0.10078410059213638, + 0.00800652988255024, + -0.039524391293525696, + -0.022258920595049858, + -0.02565028890967369, + 0.0165912713855505, + -0.01418322790414095, + 0.03221365064382553, + 0.0259290412068367, + -0.025759337469935417, + -0.05679440498352051, + 0.071895532310009, + 0.007117128930985928, + -0.03931031748652458, + 0.02387337014079094, + -0.0038596601225435734, + -0.0742565393447876, + 0.08325433731079102, + -0.04154808819293976, + -0.0419342927634716, + -0.08421934396028519, + 0.040581464767456055, + 0.04754723608493805, + -0.10990573465824127, + -0.05804907903075218, + 0.028170159086585045, + -0.1022598147392273, + 0.026689903810620308, + 0.03643733635544777, + -0.016679873690009117, + -0.057676948606967926, + -0.07045874744653702, + 0.048161350190639496, + -0.07228639721870422, + 0.022561365738511086, + 0.0420573465526104, + -0.04373875632882118, + 0.006692551542073488, + 0.011450489051640034, + 0.0016518144402652979, + -0.07947877794504166, + 0.06505600363016129, + 0.02500135637819767, + -0.012800662778317928, + -0.027456732466816902, + 0.014164157211780548, + -0.0012335932115092874, + 0.0478641651570797, + -0.03629708290100098, + 0.06787823885679245, + 0.017243055626749992, + 0.04847479611635208, + -0.09682556241750717, + -2.482793881597445e-08, + 0.001978584099560976, + -0.014025667682290077, + -0.00541649479418993, + -0.0668797492980957, + 0.04726084694266319, + -0.007757418788969517, + 0.021998217329382896, + 0.008779152296483517, + -0.0002704822982195765, + -0.06941524147987366, + 0.011615822091698647, + 0.01238760445266962, + -0.07564123719930649, + 0.09919219464063644, + 0.08007800579071045, + -0.027977142482995987, + -0.025397175922989845, + 0.03410954028367996, + -0.02942156046628952, + -0.03614816442131996, + 0.01327332854270935, + 0.040742967277765274, + 0.0006601456552743912, + 0.008872863836586475, + 0.05789260193705559, + 0.02904406376183033, + -0.021999308839440346, + -0.02624254859983921, + 0.03149115666747093, + 0.07389676570892334, + 0.03399379923939705, + 0.09398805350065231, + 0.002167422790080309, + -0.03846355155110359, + -0.08328058570623398, + 0.07872911542654037, + 0.0019747610203921795, + 0.013940660282969475, + -0.03963721916079521, + 0.1183023750782013, + 0.028175776824355125, + -0.013774476014077663, + -0.03719953075051308, + -0.015946194529533386, + 0.008599775843322277, + 0.004148595035076141, + 0.074086993932724, + -0.057092443108558655, + 0.005672680679708719, + -0.07634497433900833, + -0.043057069182395935, + 0.01039452850818634, + 0.035888995975255966, + 0.08655542135238647, + 0.046941280364990234, + 0.019030701369047165, + 0.03172624483704567, + 0.029993580654263496, + 0.061265669763088226, + -0.0004100535297766328, + 0.07910192012786865, + -0.004401312675327063, + -0.03344787657260895, + 0.08757250756025314 + ], + "drop-slash-bold||*new*,droplet,teardrop,raindrop,raining,humidity,meteorology,water,blur,disabled": [ + -0.07727843523025513, + -0.08266858756542206, + 0.07431051135063171, + 0.01906973123550415, + 0.09444959461688995, + -0.018092330545186996, + 0.0901220366358757, + -0.020424433052539825, + 0.013289149850606918, + -0.007267999928444624, + 0.06786652654409409, + -0.0002968611952383071, + -0.03414403274655342, + 0.0026582740247249603, + -0.0427301749587059, + 0.05246337875723839, + -0.039786022156476974, + 0.01708173379302025, + -0.04864400625228882, + -0.00499112531542778, + 0.01797964610159397, + 0.05183466151356697, + -0.0976463258266449, + 0.05204404145479202, + 0.08318810164928436, + 0.04266984015703201, + 0.005696181207895279, + 0.01115410029888153, + -0.016524527221918106, + -0.11189570277929306, + 0.023266781121492386, + 0.04292736575007439, + 0.09711625427007675, + 0.02513923868536949, + 0.060982879251241684, + 0.009534746408462524, + 0.015432722866535187, + -0.0033544462639838457, + 0.020364955067634583, + -0.006279536057263613, + -0.009601966477930546, + -0.09452518075704575, + -0.05337269976735115, + 0.030358582735061646, + -0.06417001783847809, + -0.023102328181266785, + 0.01977970451116562, + 0.01218546275049448, + 0.009654343128204346, + 0.06405127048492432, + 0.00585414282977581, + -0.04718244448304176, + -0.07068555802106857, + 0.001557346316985786, + 0.02851482480764389, + -0.03162641450762749, + -0.06462513655424118, + -0.03480146825313568, + 0.04098685830831528, + -0.010113074444234371, + 0.03027653507888317, + 0.02111239545047283, + -0.05393397435545921, + 0.05782640725374222, + 0.05452597141265869, + 0.011164369992911816, + -0.03593703359365463, + 0.014517917297780514, + -0.015014582313597202, + 0.022560374811291695, + -0.03835052624344826, + 0.05925185605883598, + -0.006937646772712469, + 0.06030580773949623, + -0.08862597495317459, + -0.046475522220134735, + 0.03610818460583687, + -0.00794392079114914, + -0.004886250477284193, + -0.0030277506448328495, + 0.028625473380088806, + -0.03721141442656517, + -0.0048131439834833145, + 0.037561092525720596, + 0.0383756197988987, + 0.09687481075525284, + -0.05130903795361519, + -0.06028115749359131, + -0.04674961045384407, + -0.09222031384706497, + -0.038459282368421555, + -0.08357185870409012, + 0.025914862751960754, + 0.08411407470703125, + -0.13293702900409698, + 0.057369060814380646, + 0.031134136021137238, + -0.09110192209482193, + -0.03912331163883209, + 0.0991637259721756, + 0.02779160439968109, + -0.046627987176179886, + -0.021647462621331215, + -0.014057808555662632, + -0.03192869573831558, + -0.0782766118645668, + 0.030488179996609688, + -0.004347453359514475, + 0.023686716333031654, + 0.04501531273126602, + -0.011834231205284595, + -0.06728256493806839, + -0.061749085783958435, + -0.06036965921521187, + -0.07206018269062042, + -0.049181018024683, + -0.0973815768957138, + -0.0572575218975544, + 0.08474455773830414, + 0.07068956643342972, + 0.008928613737225533, + -0.01311529241502285, + -0.052508316934108734, + -0.03586827218532562, + -0.024196872487664223, + 0.015097593888640404, + 0.01830337755382061, + -1.3528208878861951e-33, + 0.0920182317495346, + 0.011425482109189034, + -0.027351250872015953, + 0.027323562651872635, + 0.0528872087597847, + -0.05294692516326904, + -0.0796671211719513, + -0.02023395337164402, + -0.13243937492370605, + 0.018510201945900917, + 0.015821533277630806, + 0.0026315818540751934, + -0.027717940509319305, + 0.02484002709388733, + 0.042522769421339035, + -0.03153833746910095, + 0.0618104450404644, + -0.029262810945510864, + 0.002056822646409273, + -0.02798011153936386, + -0.10918053239583969, + 0.1004006415605545, + -0.06588339060544968, + 0.04938293620944023, + 0.0318535678088665, + -0.00995607953518629, + 0.022235609591007233, + -0.001162585336714983, + 0.0620184950530529, + 0.053958434611558914, + 0.010350705124437809, + -0.01730993762612343, + 0.06701404601335526, + 0.04952405393123627, + -0.022146854549646378, + 0.07799836993217468, + -0.06954364478588104, + 0.0018833490321412683, + 0.007437350228428841, + 0.0036529588978737593, + -0.095585897564888, + -0.06854142993688583, + -0.13199228048324585, + -0.0173586867749691, + 0.04313819855451584, + 0.008202899247407913, + -0.002053101547062397, + -0.034961581230163574, + -0.02828681841492653, + -0.029796145856380463, + -0.010610398836433887, + 0.03211558237671852, + 0.047344062477350235, + 0.01702738367021084, + 0.017949700355529785, + -0.018597302958369255, + -0.012296883389353752, + 0.02781979739665985, + 0.06566230207681656, + -0.028052210807800293, + 0.040312834084033966, + 0.05334612354636192, + 0.07261884957551956, + -0.07583826035261154, + 0.02700176276266575, + -0.02023046836256981, + 0.002233533188700676, + 0.08904390782117844, + 0.02565082721412182, + -0.0038654603995382786, + -0.10431409627199173, + 0.017782103270292282, + 0.036099400371313095, + 0.04467546567320824, + -0.00838538259267807, + -0.042255010455846786, + -0.019639598205685616, + -0.06649069488048553, + 0.057223811745643616, + -0.02554825134575367, + -0.16746726632118225, + -0.039266131818294525, + 0.0042943512089550495, + 0.03602007403969765, + 0.038132138550281525, + 0.009701340459287167, + 0.020097753033041954, + -0.04587387666106224, + -0.09257705509662628, + -0.03497885912656784, + -0.03913423418998718, + -0.010043110698461533, + -0.0219320859760046, + -0.1148507371544838, + 0.011081459932029247, + -1.03140372266643e-33, + 0.01700686104595661, + 0.06644658744335175, + -0.07529547065496445, + 0.08028734475374222, + -0.015233109705150127, + 0.03348490595817566, + 0.0355173796415329, + 0.05515268072485924, + 0.04649761691689491, + 0.04814905300736427, + -0.0022337762638926506, + 0.0678500309586525, + -0.12602801620960236, + -0.07697256654500961, + 0.04986138269305229, + 0.05994800478219986, + -0.035630084574222565, + -0.036696214228868484, + -0.045186880975961685, + 0.02551584132015705, + -0.017516853287816048, + -0.04123114421963692, + -0.006989979185163975, + 0.06448467075824738, + -0.07475917786359787, + 0.0017809829441830516, + 0.07809577137231827, + -0.0037252630572766066, + -0.00024792045587673783, + 0.002704968675971031, + -0.026670703664422035, + 0.042693041265010834, + -0.0341547392308712, + 0.07491114735603333, + -0.04693751782178879, + 0.004875145852565765, + 0.002880973042920232, + -0.01590816117823124, + -0.0752573311328888, + -0.034260980784893036, + -0.02657865546643734, + -0.003239949233829975, + 0.08361441642045975, + 0.07087662070989609, + -0.03825785964727402, + -0.0011603467864915729, + -0.01626831293106079, + -0.008904386311769485, + 0.001443630550056696, + 0.04918219894170761, + 0.05151158943772316, + -0.018148837611079216, + -0.03384095057845116, + 0.07208828628063202, + -0.007924542762339115, + -0.04476824775338173, + -0.015528206713497639, + 0.03406038507819176, + -0.11887506395578384, + 0.09135404229164124, + -0.0033522697631269693, + -0.051410213112831116, + -0.08796767890453339, + 0.04173737391829491, + 0.06627056747674942, + -0.10422234982252121, + -0.048685625195503235, + 0.06073790788650513, + -0.06321630626916885, + 0.02134123630821705, + 0.053809888660907745, + 0.015409675426781178, + -0.03929727524518967, + -0.05555116757750511, + 0.048764318227767944, + -0.08327759802341461, + -0.007018836680799723, + 0.029437854886054993, + -0.02802843041718006, + 0.05696134641766548, + 0.009586680680513382, + 0.019678253680467606, + -0.0863768681883812, + 0.062294431030750275, + 0.004706974606961012, + -0.03918035328388214, + -0.04960266873240471, + 0.10464309900999069, + -0.009512961842119694, + 0.006102442741394043, + -0.03537457063794136, + 0.06361447274684906, + 0.0010566969867795706, + 0.05057285353541374, + -0.1360609084367752, + -2.573117718895901e-08, + -0.026600902900099754, + -0.015050748363137245, + -0.009527263231575489, + -0.048130426555871964, + 0.05725356936454773, + 0.004683122970163822, + -0.0026022291276603937, + 0.005811911541968584, + 0.011272461153566837, + -0.07434048503637314, + 0.047784771770238876, + -0.0013655356597155333, + -0.0576377809047699, + 0.07346463203430176, + 0.09506920725107193, + -0.03152060881257057, + -0.0208993349224329, + 0.05286600813269615, + -0.03703424334526062, + -0.017249539494514465, + -0.00045708997640758753, + 0.03895426541566849, + 0.015049537643790245, + 0.014688631519675255, + 0.06256141513586044, + -0.00044015049934387207, + -0.020604940131306648, + -0.03952223062515259, + 0.014893509447574615, + 0.07230481505393982, + 0.03452781215310097, + 0.09555582702159882, + 0.006165568716824055, + -0.024080827832221985, + -0.06602228432893753, + 0.07502353191375732, + 0.004836034495383501, + 0.03203018382191658, + -0.002480426337569952, + 0.10903875529766083, + 0.02267373539507389, + -0.05733580142259598, + -0.020454933866858482, + -0.010224832221865654, + -0.045238904654979706, + -0.004857087507843971, + 0.09226805716753006, + -0.02449832297861576, + 0.003102310234680772, + -0.09525911509990692, + -0.035783566534519196, + 0.028183868154883385, + 0.028117109090089798, + 0.09304489940404892, + 0.040785618126392365, + 0.02381378784775734, + 0.04453907907009125, + 0.03485826775431633, + 0.047388456761837006, + 0.0007786328787915409, + 0.06765830516815186, + -0.02646726928651333, + -0.023687824606895447, + 0.06543933600187302 + ], + "dropbox-logo-bold||cloud,storage,backup,logos": [ + 0.004525193478912115, + 0.014761695638298988, + -0.013977187685668468, + -0.011031356640160084, + 0.1475011259317398, + -0.011086024343967438, + 0.048853691667318344, + -0.06627342849969864, + 0.07726775109767914, + 0.015187501907348633, + -0.004523253068327904, + 0.07520191371440887, + 0.05483816936612129, + -0.05979889631271362, + 0.026921536773443222, + -0.020401546731591225, + -0.020787354558706284, + -0.01407467108219862, + 0.0042523969896137714, + 0.02014167793095112, + -0.042994365096092224, + -0.04283963888883591, + -0.025965048000216484, + -0.011473174206912518, + 0.011731636710464954, + 0.04809777811169624, + 0.02114950120449066, + 0.01083129271864891, + -0.036370281130075455, + -0.1204262226819992, + -0.005514543037861586, + -0.018059514462947845, + 0.051243916153907776, + 0.055705051869153976, + 0.03315642103552818, + 0.06519029289484024, + -0.008419095538556576, + 0.009476113133132458, + 0.05034680292010307, + -0.017439275979995728, + 0.02379193902015686, + -0.04068741202354431, + 0.024842947721481323, + 0.04051249101758003, + -0.05609024688601494, + 0.025019675493240356, + -0.031334251165390015, + 0.0059465281665325165, + -0.019922930747270584, + 0.019620027393102646, + 0.09725288301706314, + -0.044763654470443726, + -0.08631083369255066, + -0.022615913301706314, + -0.02734595350921154, + -0.0027224516961723566, + -0.021358953788876534, + 0.04443080350756645, + 0.015660924836993217, + 0.011192887090146542, + 0.05285528674721718, + 0.00015622035425622016, + 0.017489057034254074, + 0.02360362373292446, + 0.11504346132278442, + 0.05785165727138519, + 0.003650579135864973, + 0.04868778958916664, + -0.1084810197353363, + 0.028955427929759026, + 0.056502677500247955, + 0.024713173508644104, + -0.046734120696783066, + 0.020535174757242203, + -0.033965300768613815, + 0.018820559605956078, + 0.0419251024723053, + 0.068462073802948, + -0.01638927310705185, + 0.015553477220237255, + -0.008141935802996159, + 0.02859206311404705, + 0.009872335940599442, + 0.03827299177646637, + 0.030001990497112274, + 0.02676718309521675, + -0.08847437053918839, + -0.00837460532784462, + -0.05160294100642204, + -0.04284125939011574, + -0.0011479618260636926, + -0.011919413693249226, + 0.06582570821046829, + 0.03602343797683716, + -0.0823078602552414, + 0.02087562158703804, + -0.048699360340833664, + -0.03510410711169243, + -0.011672111228108406, + 0.026879623532295227, + 0.017718231305480003, + 0.014968647621572018, + 0.13747620582580566, + -0.06202639639377594, + 0.031441859900951385, + -0.037127554416656494, + 0.025592414662241936, + -0.0343187190592289, + 0.012609907425940037, + 0.050687745213508606, + -0.039206866174936295, + -0.033737748861312866, + -0.12033204734325409, + 0.05842885747551918, + -0.035148002207279205, + -0.030626244843006134, + -0.03384803980588913, + -0.03574608266353607, + 0.04195436090230942, + -0.05372908338904381, + 0.044422972947359085, + -0.06084961071610451, + 0.007727023679763079, + -0.07513684034347534, + -0.09016233682632446, + -0.027851484715938568, + -0.04053134843707085, + -3.503624830131154e-33, + -0.007399512454867363, + 0.021796856075525284, + 0.02220466360449791, + 0.008087750524282455, + 0.07673954963684082, + -0.015143942087888718, + -0.03401251137256622, + -0.06634416431188583, + -0.12362831830978394, + 0.042499054223299026, + 0.01863817498087883, + 0.06829941272735596, + -0.0027394206263124943, + 0.07456333935260773, + 0.014752134680747986, + 0.006890230346471071, + -0.028132015839219093, + -0.006498946808278561, + -0.022294046357274055, + -0.1162421926856041, + -0.0189927127212286, + 0.02132604271173477, + -0.09531997889280319, + 0.013802122324705124, + 0.023895826190710068, + -0.035530928522348404, + 0.10680686682462692, + -0.010701591148972511, + 0.05414077639579773, + -0.031371355056762695, + 0.012408971786499023, + -0.045184604823589325, + 0.0831301361322403, + 0.05231199041008949, + -0.023440219461917877, + -0.028575491160154343, + -0.0736011415719986, + 0.01620233990252018, + -0.007862837985157967, + 0.10827537626028061, + 0.05519597604870796, + -0.09246250987052917, + -0.06476883590221405, + 0.007512171287089586, + -0.012217176146805286, + 0.06422121077775955, + 0.02345152758061886, + -0.10195162147283554, + -0.0014638566644862294, + -0.026371177285909653, + -0.04308949038386345, + -0.05880311504006386, + -0.06255500763654709, + -0.0527736134827137, + 0.006965731270611286, + -0.052032068371772766, + -0.06725839525461197, + 0.04798158258199692, + 0.03867749497294426, + -0.09087918698787689, + 0.0589580312371254, + -0.05187685042619705, + 0.08271424472332001, + -0.04482650011777878, + -0.02787196822464466, + 0.027096901088953018, + -0.03800373524427414, + 0.056491199880838394, + 0.021528687328100204, + -0.007417020387947559, + 0.050976864993572235, + -0.009197572246193886, + 0.0576770082116127, + -0.024483880028128624, + -0.016748478636145592, + -0.029508935287594795, + -0.0056731016375124454, + 0.02503269910812378, + -0.026607217267155647, + 0.06601137667894363, + -0.055569592863321304, + -0.028650032356381416, + -0.0469416119158268, + 0.045825351029634476, + -0.03261537104845047, + 0.018423650413751602, + 0.05496886000037193, + -0.00517487246543169, + -0.048859190195798874, + 0.023543499410152435, + -0.05728714168071747, + -0.02734323963522911, + 0.02945869043469429, + -0.09659047424793243, + -0.07516898214817047, + 1.2249407860056578e-33, + 0.02505350299179554, + -0.05291729047894478, + 0.030051495879888535, + 0.05001247674226761, + 0.014770599082112312, + 0.05095931887626648, + 0.08544211089611053, + 0.07451269775629044, + -0.03519446775317192, + 0.037939608097076416, + 0.01280969101935625, + 0.05404246971011162, + -0.13741417229175568, + 7.870217086747289e-05, + -0.037229228764772415, + 0.04446706175804138, + 0.026746654883027077, + -0.026525143533945084, + -0.04888596013188362, + -0.045294392853975296, + -0.011035941541194916, + -0.035837531089782715, + -0.0303674153983593, + 0.09097670018672943, + -0.10110700875520706, + 0.024951759725809097, + -0.007392033468931913, + 0.02471991814672947, + 0.0017779819900169969, + 0.0033589384984225035, + -0.054837666451931, + 0.019164858385920525, + 0.01105414517223835, + 0.07901189476251602, + -0.0022659741807729006, + -0.047071345150470734, + -0.008707945235073566, + 0.00035909825237467885, + -0.08551358431577682, + 0.02096990868449211, + -0.0974155068397522, + -0.0651882067322731, + 0.008984866552054882, + 0.04012202471494675, + 0.03145827353000641, + -0.07712620496749878, + -0.05287904664874077, + -0.08991542458534241, + -0.01766536384820938, + 0.08696886897087097, + 0.07609773427248001, + 0.00487400870770216, + -0.030086688697338104, + 0.08042460680007935, + -0.07834857702255249, + -0.03407161310315132, + -0.0015759792877361178, + 0.10091317445039749, + 0.004532774444669485, + 0.09110836684703827, + 0.005799419712275267, + -0.11275085061788559, + -0.058115072548389435, + -0.0639047846198082, + -0.010111321695148945, + 0.005201707594096661, + -0.0024715703912079334, + 0.0440024770796299, + -0.10216233134269714, + 0.05263835936784744, + -0.047634512186050415, + -0.029600724577903748, + -0.02136671170592308, + 0.020900847390294075, + 0.03638510778546333, + -0.09565091878175735, + 0.06938360631465912, + -0.0047500706277787685, + 0.04458106681704521, + 0.023381594568490982, + -0.05755069479346275, + 0.03213515132665634, + -0.11550348997116089, + 0.07834171503782272, + 0.03814561665058136, + -0.053700074553489685, + -0.036940500140190125, + 0.05228636786341667, + -0.013107815757393837, + -0.0025223297998309135, + -0.08242810517549515, + 0.031153440475463867, + 0.07037296146154404, + 0.05523375794291496, + -0.041133422404527664, + -1.749461375766259e-08, + -0.024745363742113113, + 0.019918769598007202, + 0.056415021419525146, + 0.0052902186289429665, + 0.0003555550065357238, + 0.013128579594194889, + 0.06313227862119675, + -0.014194527640938759, + 0.05254697799682617, + -0.08936651051044464, + -0.06054835394024849, + -0.0846937820315361, + -0.07813507318496704, + 0.02339535765349865, + 0.03740859776735306, + 0.01621200144290924, + -0.06670714169740677, + 0.06469985097646713, + 0.03731990233063698, + -0.05169079080224037, + 0.003934862092137337, + 0.07870490849018097, + 0.03472602739930153, + 0.0401003398001194, + 0.045309361070394516, + 0.07264424860477448, + 0.013424206525087357, + -0.01966799609363079, + -0.046618107706308365, + 0.081714928150177, + -0.04018563777208328, + 0.07533141225576401, + 0.04513184726238251, + -0.046554066240787506, + -0.04531324654817581, + -0.02722894586622715, + -0.0032669920474290848, + 0.004063020925968885, + -0.02932029590010643, + 0.047895532101392746, + 0.04487653076648712, + -0.02115541137754917, + -0.03710135072469711, + -0.05537702143192291, + -0.0018150261603295803, + -0.02342287078499794, + 0.08739504963159561, + 0.07114047557115555, + -0.039242006838321686, + -0.013745581731200218, + -0.017048973590135574, + -0.010517880320549011, + 0.010586162097752094, + 0.12016383558511734, + 0.020130526274442673, + -0.10931557416915894, + 0.05515717342495918, + 0.0449741892516613, + 0.1071191281080246, + 0.08867480605840683, + 0.10452061146497726, + -0.02955969050526619, + 0.019540656358003616, + -0.012618334032595158 + ], + "ear-bold||hearing,audio,sound": [ + 0.038721054792404175, + -0.07716337591409683, + -0.04692225158214569, + -0.061151616275310516, + 0.00977847445756197, + -0.026579013094305992, + 0.10738606750965118, + -0.05619623139500618, + -0.03693100064992905, + 0.001460463390685618, + 0.01927749440073967, + -0.041807085275650024, + 0.0011861514067277312, + -0.018879421055316925, + 0.0009397812536917627, + 0.018476882949471474, + 0.07362677156925201, + 0.05500859394669533, + 0.005365865770727396, + -0.014203501865267754, + -0.0010262170108035207, + 0.10521159321069717, + 0.0424165315926075, + 0.007915052585303783, + 0.027115212753415108, + 0.013990371488034725, + 0.07487481087446213, + 0.018358375877141953, + -0.008439658209681511, + -0.08475808799266815, + 0.04253476485610008, + 0.03169452026486397, + 0.15496215224266052, + 0.0002785141987260431, + -0.034772709012031555, + -0.03680036589503288, + -0.03300773724913597, + -0.03374604135751724, + -0.018719298765063286, + 0.013972834683954716, + 0.002646289998665452, + -0.02590268664062023, + -0.01727917231619358, + -0.02487989328801632, + -0.05184529721736908, + -0.03622899204492569, + -0.0811326876282692, + -0.03460860624909401, + -0.0036101422738283873, + 0.013665295206010342, + 0.014048175886273384, + -0.08987054228782654, + -0.08269598335027695, + 0.06509489566087723, + -0.045688048005104065, + 0.018049823120236397, + -0.06039955094456673, + 0.03200039267539978, + 0.03456965461373329, + -0.005252474453300238, + 0.03372785449028015, + -0.03490084037184715, + 0.059088822454214096, + 0.03057272545993328, + 0.02083771489560604, + 0.04096852242946625, + 0.0069159227423369884, + 0.03223909065127373, + 0.0036604017950594425, + -0.0048957387916743755, + 0.005681599956005812, + 0.05879603326320648, + -0.031076576560735703, + -0.05441028252243996, + -0.03269393742084503, + 0.04903537034988403, + 0.0583721287548542, + -0.03844617307186127, + -0.020243877544999123, + -0.012793394736945629, + -0.13610777258872986, + -0.09561276435852051, + -0.0662618950009346, + -0.051525212824344635, + 0.043451640754938126, + 0.05340632051229477, + -0.07896598428487778, + -0.07526255398988724, + -0.09501035511493683, + -0.0069442130625247955, + -0.10763033479452133, + 0.005740907043218613, + -0.07583444565534592, + 0.026183364912867546, + 0.036099791526794434, + 0.014267420396208763, + 0.06559236347675323, + -0.006966269109398127, + 0.01948830857872963, + 0.08458787947893143, + 0.06426486372947693, + 0.02011471800506115, + 0.03025314398109913, + -0.03405522182583809, + -0.01689915359020233, + -0.06510953605175018, + -0.08878534287214279, + -0.012761603109538555, + -0.037030573934316635, + -0.007947699166834354, + 0.018314925953745842, + -0.10221037268638611, + 0.01943545788526535, + -0.02180081233382225, + 0.04973127320408821, + 0.014164303429424763, + -0.03328867256641388, + 0.05027267336845398, + 0.10819404572248459, + 0.027065718546509743, + 0.023911813274025917, + -0.014055612497031689, + -0.02871900610625744, + -0.05344822630286217, + 0.004110061563551426, + -0.013980453833937645, + -0.028220711275935173, + -1.7150719717886417e-33, + 0.03200480341911316, + 0.04437318444252014, + -0.055550411343574524, + 0.07841144502162933, + 0.002800368471071124, + -0.0045658862218260765, + -0.08385038375854492, + -0.03630450740456581, + -0.05538536235690117, + 0.07945138216018677, + -0.028874538838863373, + 0.09294363856315613, + -0.04200005531311035, + 0.008991770446300507, + 0.03777088597416878, + -0.006257135421037674, + -0.043001286685466766, + 0.04083305969834328, + -0.12032242119312286, + 0.024225901812314987, + -0.012234560213983059, + 0.08215435594320297, + -0.014214734546840191, + -0.01433226466178894, + 0.05284838378429413, + -0.02976655587553978, + 0.04330223426222801, + -0.052719272673130035, + -0.029287537559866905, + 0.011623521335422993, + -0.013500425033271313, + 0.0381927452981472, + 0.061348941177129745, + -0.030115094035863876, + 0.04020814225077629, + 0.022786779329180717, + -0.0184697937220335, + 0.0791294053196907, + -0.013572447933256626, + -0.037959516048431396, + -0.032630760222673416, + -0.02177688479423523, + -0.005449899472296238, + -0.03331737220287323, + 0.04642631486058235, + 0.11983226239681244, + -0.05606621876358986, + 0.011686346493661404, + 0.046956855803728104, + 0.0224411953240633, + -0.012640715576708317, + -0.007576655596494675, + 0.0033791272435337305, + 0.04412468522787094, + 0.041678983718156815, + 0.0031625055707991123, + 0.009971516206860542, + 0.08878295123577118, + 0.03189088776707649, + 0.01605646312236786, + 0.041261035948991776, + 0.07289627939462662, + 0.07963622361421585, + -0.10050664842128754, + -0.03791287913918495, + 0.033759403973817825, + -0.016641339287161827, + 0.02114872820675373, + 0.0749739557504654, + -0.05608437582850456, + -0.004064028151333332, + 0.0913173034787178, + 0.024290286004543304, + 0.059239305555820465, + -0.04957185313105583, + 0.026942463591694832, + -0.009642301127314568, + -0.025476176291704178, + 0.04621397331357002, + -0.07105133682489395, + -0.10883308947086334, + 0.0957568809390068, + -0.023343989625573158, + 0.08829252421855927, + 0.05336145684123039, + 0.05908399447798729, + -0.072878398001194, + -0.1514560580253601, + -0.04667120426893234, + 0.01395002007484436, + -0.02651827037334442, + 0.048605844378471375, + -0.09697292745113373, + -0.11070450395345688, + -0.06406570971012115, + -6.7210579281393595e-34, + 0.005265990272164345, + 0.07317952066659927, + -0.005654263775795698, + -0.011475575156509876, + -0.023851517587900162, + 0.08222917467355728, + 0.0488632433116436, + 0.030597565695643425, + -0.010559266433119774, + 0.04188036173582077, + 0.06338474154472351, + -0.002582959597930312, + -0.04804360866546631, + -0.007432316429913044, + 0.004103212617337704, + -0.023378748446702957, + 0.009243009611964226, + -0.002458517672494054, + 0.0327904187142849, + 0.06494548171758652, + -0.05217760428786278, + 0.0011667887447401881, + -0.030582722276449203, + 0.05467458441853523, + -0.11588071286678314, + 0.019602559506893158, + -0.009692433290183544, + -0.009381696581840515, + -0.046874046325683594, + -0.03675137087702751, + -0.012437202036380768, + -0.02003280259668827, + -0.02403842844069004, + -0.0036975902039557695, + 0.031826335936784744, + -0.0009199304622597992, + 0.052179936319589615, + -0.00223926967009902, + 0.018848508596420288, + -0.026600120589137077, + -0.02239193394780159, + 0.06743070483207703, + 0.02104283683001995, + -0.05689961463212967, + -0.05413194000720978, + -0.02077859826385975, + -0.025339312851428986, + -0.044219907373189926, + -0.06215566769242287, + 0.03090355545282364, + 0.08881089836359024, + 0.009895390830934048, + 0.07061561942100525, + -0.013451178558170795, + -0.08151321113109589, + -0.017667638137936592, + -0.0037377194967120886, + -0.03906194120645523, + 0.01110398955643177, + 0.036570627242326736, + 0.017574001103639603, + 0.0016318130074068904, + -0.04009578377008438, + -0.0005749097908847034, + 0.00031866025528870523, + 0.046269215643405914, + 0.00804368406534195, + -0.06335043907165527, + 0.05120440572500229, + 0.008332127705216408, + 0.0605098120868206, + -0.010956677608191967, + -0.007878147065639496, + 0.03862729296088219, + 0.0573435015976429, + -0.03994900733232498, + -0.11164246499538422, + -0.060633666813373566, + -0.0075831785798072815, + 0.058073755353689194, + -0.0399976409971714, + 0.011088298633694649, + -0.004740979056805372, + 0.07328265905380249, + -0.009499527513980865, + 0.0523969866335392, + -0.001440792460925877, + -0.03870810568332672, + -0.03685806691646576, + 0.004628016613423824, + 0.012751217000186443, + 0.08594026416540146, + -0.051353346556425095, + 0.0013059796765446663, + -0.047227054834365845, + -1.6082873699474476e-08, + -0.01936265453696251, + -0.023909494280815125, + -0.006556784734129906, + -0.10446003079414368, + -0.010387873277068138, + -0.05486565828323364, + 0.009440206922590733, + -0.08409745991230011, + -0.05496951937675476, + -0.017362108454108238, + 0.011243801563978195, + -0.011418580077588558, + -0.06710926443338394, + 0.025679143145680428, + 0.05838027969002724, + 0.03318966180086136, + -0.07458916306495667, + 0.08759776502847672, + -0.04207847639918327, + -0.17599549889564514, + 0.011233442462980747, + 0.10460730642080307, + -0.0028594909235835075, + -0.004017651546746492, + 0.09123745560646057, + 0.0035467734560370445, + 0.014916226267814636, + 0.06398417055606842, + 0.07281320542097092, + 0.0753546804189682, + 0.04361313581466675, + 0.06395565718412399, + -0.05259549990296364, + -0.033663272857666016, + -0.12365730851888657, + -0.04014642536640167, + -0.01858702301979065, + -0.011762094683945179, + -0.02055164985358715, + 0.1291491538286209, + -0.026270421221852303, + -0.030851615592837334, + -0.04494089633226395, + -0.01654631644487381, + 0.017885876819491386, + -0.024687528610229492, + 0.1288643777370453, + -0.04022084176540375, + -0.08255419135093689, + -0.029900172725319862, + -0.044373609125614166, + 0.09531674534082413, + 0.062390461564064026, + 0.04907388240098953, + -0.03449505940079689, + 0.002030489966273308, + -0.0059787193313241005, + 0.06084969639778137, + -0.0656854659318924, + 0.014512846246361732, + 0.07494297623634338, + -0.003718640888109803, + 0.026803573593497276, + 0.048199523240327835 + ], + "ear-slash-bold||hearing,audio,sound,mute,accessible": [ + 0.01016343291848898, + -0.10080868005752563, + -0.039520349353551865, + -0.06561008840799332, + -0.016732225194573402, + -0.027712471783161163, + 0.059573136270046234, + -0.038721367716789246, + -0.020661339163780212, + -0.005454718135297298, + 0.07113602757453918, + -0.02222910337150097, + -0.0022594290785491467, + 0.003914388362318277, + -0.04125021770596504, + 0.00900126900523901, + 0.06835084408521652, + 0.053266048431396484, + 0.01028284803032875, + -0.0026088892482221127, + -0.008605865761637688, + 0.16539573669433594, + 0.023845044896006584, + -0.005298415664583445, + 0.030582020059227943, + -0.0075844042003154755, + 0.04197397083044052, + 0.026346035301685333, + -0.014131499454379082, + -0.09478605538606644, + 0.036870427429676056, + 0.000354846881236881, + 0.157680943608284, + 0.006606913171708584, + -0.010492319241166115, + -0.02432294748723507, + 0.017987500876188278, + -0.043450091034173965, + -0.0002640580350998789, + -0.013398013077676296, + -0.03220851346850395, + -0.046861227601766586, + -0.035079944878816605, + -0.02225678786635399, + -0.07028673589229584, + -0.059679411351680756, + -0.08532382547855377, + -0.05845540016889572, + -0.015357771888375282, + 0.01202771533280611, + 0.020228052511811256, + -0.08162765204906464, + -0.07211174815893173, + 0.09087124466896057, + 0.005343227181583643, + 0.0029522276017814875, + -0.06967581063508987, + 0.0671864002943039, + 0.04470037668943405, + 0.014519917778670788, + 0.018406890332698822, + -0.032076358795166016, + 0.052274882793426514, + 0.008650501258671284, + 0.0022404775954782963, + 0.02718760445713997, + 0.013761474750936031, + 0.026091422885656357, + -0.018444515764713287, + -0.02509600855410099, + -0.021871425211429596, + 0.0364333912730217, + -0.03614062815904617, + -0.037155818194150925, + -0.02994086779654026, + 0.027133362367749214, + 0.027392501011490822, + -0.03334196284413338, + -0.009495384991168976, + -0.0349927619099617, + -0.10623158514499664, + -0.06365746259689331, + -0.05235312879085541, + -0.011054439470171928, + 0.03104974329471588, + 0.07419636845588684, + -0.07206100970506668, + -0.05572981387376785, + -0.06233692541718483, + -0.03753221035003662, + -0.08978763222694397, + -0.043404921889305115, + -0.005520358216017485, + 0.019844962283968925, + 0.004762066528201103, + -0.007446473930031061, + 0.044354114681482315, + 0.00565282441675663, + -0.010096467100083828, + 0.08101947605609894, + 0.0466446727514267, + 0.015150082297623158, + -0.02545856311917305, + -0.05065734311938286, + -0.0018384052673354745, + -0.05211978778243065, + -0.06632916629314423, + -0.01702895388007164, + -0.06791722029447556, + -0.01391607616096735, + 0.015341711230576038, + -0.10995058715343475, + -0.00679057976230979, + -0.041690949350595474, + 0.036554645746946335, + 0.004511409439146519, + -0.04625692591071129, + 0.0005862171528860927, + 0.14362747967243195, + 0.0854339525103569, + 0.004270888399332762, + -0.031585000455379486, + -0.04492485523223877, + -0.05597886070609093, + 0.007643261458724737, + 0.002274188445881009, + -0.0198834091424942, + -2.7699473779051158e-33, + 0.04986107721924782, + 0.03823200985789299, + -0.050553370267152786, + 0.025061020627617836, + 0.030435701832175255, + -0.03594522550702095, + -0.05799481272697449, + 0.0024724998511373997, + -0.07900509983301163, + 0.03654026612639427, + 0.003917416092008352, + 0.07229848206043243, + -0.016771001741290092, + -0.011331462301313877, + 0.039595697075128555, + -0.004143858328461647, + 0.0059484271332621574, + 0.04483285918831825, + -0.1064147800207138, + -0.014112286269664764, + 0.004910588264465332, + 0.12185271829366684, + -0.004645329900085926, + 0.022607913240790367, + 0.07331343740224838, + -0.022583795711398125, + 0.012250736355781555, + -0.05213349685072899, + 0.043653540313243866, + 0.02535748854279518, + -0.037439487874507904, + 0.04397495090961456, + 0.056352537125349045, + -0.01469311024993658, + 0.035674337297677994, + 0.05985156074166298, + 0.014781611040234566, + 0.06878647208213806, + -0.029765576124191284, + -0.04516876861453056, + -0.04363929107785225, + -0.06763742119073868, + -0.06635722517967224, + -0.05592969059944153, + 0.02625429630279541, + 0.05734359100461006, + -0.058375515043735504, + -0.031146299093961716, + 0.017876487225294113, + 0.036553800106048584, + -0.027782941237092018, + 0.013787067495286465, + 0.028521155938506126, + 0.04466784745454788, + 0.025557341054081917, + -0.0504305362701416, + -0.02262204885482788, + 0.06793377548456192, + 0.037651605904102325, + 0.03215622156858444, + 0.04032596945762634, + 0.1045060008764267, + 0.07580476254224777, + -0.09024284780025482, + -0.06656593829393387, + 0.049780089408159256, + -0.029869383201003075, + 0.025467155501246452, + 0.061310719698667526, + -0.05518433079123497, + -0.04063532501459122, + 0.04258498549461365, + 0.020057154819369316, + 0.07493755966424942, + -0.09195458143949509, + 0.021374361589550972, + -0.05531030520796776, + -0.03910129889845848, + 0.059691764414310455, + -0.05062407627701759, + -0.130339577794075, + 0.08687026798725128, + -0.031946487724781036, + 0.10953626781702042, + 0.05085175111889839, + 0.015126613900065422, + -0.06410292536020279, + -0.14273862540721893, + -0.061798445880413055, + -0.013018290512263775, + -0.04084297642111778, + 0.059725988656282425, + -0.10350291430950165, + -0.10774541646242142, + -0.03395365923643112, + -1.3447870038879238e-34, + 0.020221656188368797, + 0.09154686331748962, + -0.01631701923906803, + 0.010602779686450958, + -0.049154091626405716, + 0.04232174530625343, + 0.036529310047626495, + 0.019489552825689316, + -0.004446945618838072, + 0.027981087565422058, + 0.0555400475859642, + 0.029272986575961113, + -0.011761080473661423, + -0.01686158962547779, + 0.02477666549384594, + -0.029187358915805817, + -0.013233323581516743, + -0.017390316352248192, + 0.021797334775328636, + 0.08738217502832413, + -0.06428207457065582, + 0.018037177622318268, + -0.00532273855060339, + 0.07147414237260818, + -0.11351901292800903, + 0.025153620168566704, + -0.013381422497332096, + -0.032792266458272934, + -0.013021562248468399, + -0.01888413541018963, + -0.01397036388516426, + 0.014966471120715141, + -0.05501805990934372, + -0.03410573676228523, + 0.027710286900401115, + 0.018928663805127144, + -0.02167068049311638, + 0.057370685040950775, + 0.008442278951406479, + -0.06771820038557053, + -0.0040637897327542305, + 0.05749432370066643, + 0.05562525615096092, + -0.012602895498275757, + -0.01592419482767582, + -0.023675912991166115, + -0.027199508622288704, + -0.06014729663729668, + -0.045377910137176514, + 0.02268633432686329, + 0.10558755695819855, + -0.011202281340956688, + 0.08724517375230789, + 0.005603187717497349, + -0.06993108242750168, + -0.0009042691090144217, + -0.0037636724300682545, + -0.01100104209035635, + -0.026878098025918007, + 0.07122457772493362, + 0.056118860840797424, + -0.028617579489946365, + -0.08716456592082977, + 0.02968819998204708, + 0.012451723217964172, + 0.01899895817041397, + 0.0008377489284612238, + -0.039380479604005814, + 0.05271913483738899, + 0.00497297290712595, + 0.07673502713441849, + 0.020301885902881622, + 0.041287824511528015, + 0.006443037651479244, + 0.06684688478708267, + -0.025114864110946655, + -0.1329813152551651, + -0.06171247735619545, + -0.02057826705276966, + 0.07675321400165558, + 0.0022069024853408337, + 0.047752052545547485, + -0.013242003507912159, + 0.06161114200949669, + 0.005860674660652876, + 0.021486975252628326, + -0.017569709569215775, + 0.008738147094845772, + -0.01208315696567297, + -0.02182060480117798, + -0.0038562195841223, + 0.07800819724798203, + -0.05861065164208412, + 0.03194493427872658, + -0.07359310239553452, + -1.862716381140217e-08, + 0.014202066697180271, + -0.020975513383746147, + 0.008137994445860386, + -0.08993572741746902, + 0.0006154413567855954, + -0.05849152430891991, + -0.006358499638736248, + -0.0993490144610405, + -0.00788657646626234, + 0.02581685036420822, + 0.028865346685051918, + -0.02630392275750637, + -0.05556190386414528, + 0.03364868462085724, + 0.05298231169581413, + 0.06551746279001236, + -0.04996960237622261, + 0.10373078286647797, + -0.04310375079512596, + -0.13785308599472046, + 0.01501933392137289, + 0.07654141634702682, + 0.027023307979106903, + 0.03070760890841484, + 0.10134446620941162, + -0.038945041596889496, + -0.0045295171439647675, + 0.023664750158786774, + 0.0649753287434578, + 0.041938163340091705, + 0.04119349271059036, + 0.05958159640431404, + -0.0512375570833683, + -0.006688918452709913, + -0.11468324810266495, + 0.023717161267995834, + -0.04247171804308891, + 0.02703508920967579, + -0.01483449898660183, + 0.09843158721923828, + -0.006591474637389183, + -0.09974370896816254, + -0.020966578274965286, + -0.007270796690136194, + 0.003897544229403138, + -0.004743747878819704, + 0.12056662142276764, + -0.01593562215566635, + -0.08252667635679245, + -0.03615662828087807, + -0.04673820734024048, + 0.11463887244462967, + 0.056057896465063095, + 0.02872847020626068, + 0.0022497051395475864, + 0.05964333936572075, + 0.026508495211601257, + 0.042858224362134933, + -0.06802187860012054, + 0.010366485454142094, + 0.07674769312143326, + 0.004965698346495628, + -0.003517494536936283, + 0.05571076273918152 + ], + "egg-bold||chicken,food,meal,baby,hatch": [ + -0.017411451786756516, + -0.0014853703323751688, + -0.015627531334757805, + 0.05055505409836769, + 0.02469131164252758, + 0.0360213965177536, + 0.08663646131753922, + -0.0773565024137497, + 0.020892314612865448, + -0.02951083518564701, + 0.04580068588256836, + -0.046907998621463776, + -0.08577020466327667, + -0.047768041491508484, + 0.004770259838551283, + 0.01149293128401041, + 0.08437733352184296, + -0.0470709390938282, + 0.007374714594334364, + -0.039031729102134705, + -0.020583221688866615, + -0.005086730699986219, + 0.07345321774482727, + 0.008586055599153042, + 0.04188976809382439, + 0.04397514462471008, + 0.027591057121753693, + 0.018920278176665306, + -0.0007840563775971532, + -0.09421271085739136, + -0.009468676522374153, + 0.0032735662534832954, + 0.08070245385169983, + -0.029911933466792107, + 0.02818986028432846, + 0.002694390481337905, + 0.022603251039981842, + -0.06297382712364197, + 0.066756971180439, + 0.007949127815663815, + 0.08611182868480682, + -0.035265617072582245, + -0.015136654488742352, + -0.025711271911859512, + -0.0031331575009971857, + 0.004100637044757605, + -0.05363578349351883, + -0.01878795027732849, + -0.011541354469954967, + 0.018153369426727295, + -0.061892103403806686, + -0.09873136132955551, + -0.11935030668973923, + 0.11052735149860382, + 0.07918938249349594, + 0.11727579683065414, + -0.11737554520368576, + -0.09071101248264313, + -0.005851441062986851, + -0.034380361437797546, + -0.032646577805280685, + 0.010601585730910301, + 0.06093942001461983, + 0.012096581049263477, + 0.024335207417607307, + -0.04152560979127884, + -0.015799880027770996, + 0.05261770263314247, + 0.011525425128638744, + 0.009247089736163616, + 0.0441938191652298, + 0.06054562330245972, + 0.00420561945065856, + 0.024937694892287254, + -0.07818998396396637, + 0.05810697376728058, + 0.08209063857793808, + -0.032265543937683105, + 0.03938677906990051, + -0.06235853210091591, + -0.1423376351594925, + -0.0634518712759018, + -0.06553678214550018, + -0.020780418068170547, + 0.01831193082034588, + 0.03785575181245804, + -0.0435221791267395, + 0.003358410205692053, + -0.04114668443799019, + -0.03639671579003334, + -0.010192462243139744, + -0.037639319896698, + 0.03634908050298691, + 0.04391290619969368, + 0.0317351296544075, + 0.004658197518438101, + 0.041929446160793304, + -0.09876395016908646, + -0.06517088413238525, + 0.02975826896727085, + -0.005204082932323217, + 0.027649588882923126, + 0.05075385048985481, + -0.03760772570967674, + -0.028057584539055824, + -0.02783137746155262, + -0.0490572564303875, + -0.0732637271285057, + 0.023549631237983704, + 0.005050519481301308, + -0.09469272196292877, + -0.09672815352678299, + 0.017174476757645607, + 0.011140052229166031, + -0.041701510548591614, + -0.040696270763874054, + -0.06257513165473938, + -0.054400306195020676, + 0.09757637977600098, + 0.09111159294843674, + 0.029592281207442284, + -0.0323973186314106, + 0.020816728472709656, + -0.01808743365108967, + -0.039848413318395615, + -0.01819806732237339, + -0.026683814823627472, + -3.143425443048373e-33, + -0.012878847308456898, + 0.017283642664551735, + 0.01531828474253416, + 0.09343475103378296, + 0.09858200699090958, + -0.013781457208096981, + -0.007011070381850004, + -0.035706765949726105, + -0.013295082375407219, + 0.05063587427139282, + -0.0344044454395771, + 0.008175077848136425, + -0.018988054245710373, + 0.0297686904668808, + 0.044657908380031586, + 0.0007662374991923571, + 0.0057037887163460255, + -0.013920459896326065, + -0.020699046552181244, + 0.03312711790204048, + -0.07851886004209518, + 0.08486340939998627, + -0.03207186609506607, + -0.057732123881578445, + 0.028992360457777977, + -0.05769114941358566, + -0.027801264077425003, + -0.07774806022644043, + -0.07818891853094101, + 0.04361708462238312, + 0.08909298479557037, + -0.06517667323350906, + -0.01907866820693016, + 0.00518323527649045, + -0.0004587259900290519, + 0.016823187470436096, + -0.0012863442534580827, + -0.06827347725629807, + -0.0865502655506134, + 0.11436112225055695, + -0.04530782997608185, + -0.1188693717122078, + -0.010676303878426552, + 0.04971054196357727, + -0.00817939918488264, + 0.006756422575563192, + -0.009843120351433754, + 0.03215903416275978, + -0.0059279208071529865, + 0.003043562639504671, + 0.037465065717697144, + -0.07839652895927429, + 0.03222760185599327, + -0.09597459435462952, + -0.03606902062892914, + 0.03156057000160217, + -0.03526466712355614, + 0.06844105571508408, + -0.04030034318566322, + 0.018093952909111977, + -0.0035824989899992943, + 0.003919657785445452, + -0.009662310592830181, + -0.0655641257762909, + -0.002856634557247162, + 0.00022984821407590061, + -0.13878868520259857, + 0.005499709397554398, + 0.031294118613004684, + 0.07550271600484848, + 0.05593252182006836, + -0.025439146906137466, + 0.024750811979174614, + -0.008844539523124695, + 0.03242872655391693, + 0.035283543169498444, + 0.013799350708723068, + 5.986427822790574e-06, + 0.011198541149497032, + -0.08454714715480804, + 0.012467757798731327, + 0.05812355875968933, + -0.059540074318647385, + 0.03581252694129944, + -0.07550995796918869, + 0.07807198911905289, + 0.017419621348381042, + -0.033788591623306274, + 0.08869264274835587, + 0.07526290416717529, + -0.019023172557353973, + 0.022743605077266693, + 0.03562891483306885, + -0.06688391417264938, + -0.08482974022626877, + 1.1070599166177948e-33, + -0.03294374793767929, + -0.013592085801064968, + -0.14718393981456757, + 0.008624809794127941, + -0.007350928150117397, + -0.03063819743692875, + 0.07654740661382675, + 0.01852850429713726, + -0.022175204008817673, + -0.0009879112476482987, + -0.05599028244614601, + -0.012435439974069595, + -0.026709796860814095, + -0.06044521555304527, + 0.02245565876364708, + 0.05271013826131821, + 0.04275766760110855, + 0.07855241745710373, + 0.0882214903831482, + 0.041484538465738297, + -0.06734886020421982, + -0.010981100611388683, + -0.03776043280959129, + 0.07840932160615921, + -0.009743648581206799, + 0.08273746818304062, + 0.09473077952861786, + 0.07776332646608353, + -0.04699363186955452, + -0.04427032172679901, + -0.04182314872741699, + -0.06708293408155441, + 0.07286764681339264, + 0.019115308299660683, + -0.03958670049905777, + 0.08128850907087326, + 0.041401952505111694, + -0.07569672912359238, + 0.03440564498305321, + -0.03668373450636864, + -0.012591908685863018, + -0.003628758480772376, + 0.002972135553136468, + 0.058553945273160934, + -0.0030601907055824995, + 0.018088651821017265, + 0.027233004570007324, + -0.01501605473458767, + -0.05994729697704315, + 0.08726074546575546, + 0.053408265113830566, + -0.09373080730438232, + -0.021640121936798096, + -0.04407990351319313, + -0.041951604187488556, + 0.02464526891708374, + -0.07891090214252472, + -0.03187014162540436, + 0.04878907650709152, + 0.051612500101327896, + -0.0006155002629384398, + 0.0314350351691246, + 0.04181917756795883, + 0.09316042810678482, + 0.053845781832933426, + -0.04542737454175949, + -0.025137130171060562, + -0.05406368896365166, + 0.013071566820144653, + -0.08430521190166473, + -0.011380448006093502, + 0.028973519802093506, + 0.03735135495662689, + 0.039985790848731995, + -0.019027171656489372, + -0.011222450993955135, + 0.004385445732623339, + -0.051900748163461685, + 0.06167525425553322, + 0.018297795206308365, + -0.11472751200199127, + -0.056573286652565, + -0.018731553107500076, + 0.024486178532242775, + -0.02903023362159729, + -0.013817738741636276, + 0.0034056708682328463, + 0.08033595234155655, + 0.02330302633345127, + -0.010798849165439606, + -0.006459522992372513, + 0.04440150782465935, + 0.0020987745374441147, + 0.049197085201740265, + 0.03051283024251461, + -1.79826358248647e-08, + 0.07423634827136993, + -0.03695496916770935, + -0.018741479143500328, + 0.06449112296104431, + 0.08934420347213745, + -0.07227278500795364, + -0.03184552118182182, + -0.12176168709993362, + 0.023315319791436195, + 0.025359347462654114, + -0.09072061628103256, + 0.06192777678370476, + -0.054770320653915405, + -0.045913759618997574, + 0.015711240470409393, + 0.05113232135772705, + -0.031260743737220764, + 0.04834223911166191, + -0.0407303087413311, + -0.03418351709842682, + 0.01487817708402872, + 0.10678116232156754, + 0.039890676736831665, + -0.01739109493792057, + 0.08984044939279556, + 0.04404795542359352, + 0.01757747493684292, + 0.028906460851430893, + 0.07713012397289276, + 0.030519118532538414, + 0.02645985595881939, + 0.0425722561776638, + 0.032677773386240005, + 0.006632868200540543, + -0.04292789101600647, + -0.023188229650259018, + -0.03162248805165291, + 0.022824065759778023, + 0.013738485053181648, + 0.02396894432604313, + 0.05217990651726723, + -0.008580302819609642, + 0.007028027903288603, + -0.06848645210266113, + -0.013885362073779106, + 0.012352244928479195, + 0.0058923931792378426, + -0.0831727609038353, + -0.08294303715229034, + -0.06589643657207489, + -0.013929277658462524, + -0.05520085617899895, + 0.07055182009935379, + 0.04588819667696953, + -0.04078571870923042, + -0.0585261695086956, + 0.04303230345249176, + 0.025834668427705765, + 0.03759421035647392, + 0.03917765989899635, + 0.06457628309726715, + 0.06790401041507721, + 0.07708976417779922, + -0.005706816911697388 + ], + "egg-crack-bold||chicken,food,meal,baby,hatch,break": [ + -0.04832475632429123, + -0.0384334996342659, + 0.051714736968278885, + 0.02864699624478817, + 0.017292993143200874, + 0.00972156785428524, + 0.03698102757334709, + -0.02034243382513523, + -0.01136530190706253, + -0.01658179610967636, + -0.003239004174247384, + -0.05016208067536354, + -0.0940169245004654, + -0.053641997277736664, + 0.04613174870610237, + -0.0017977086827158928, + 0.04037690535187721, + -0.060811977833509445, + 0.018913593143224716, + -0.02907792665064335, + -0.02404424175620079, + -0.009896392934024334, + 0.05037331208586693, + -0.013181455433368683, + 0.028989309445023537, + 0.07445025444030762, + 0.031640831381082535, + -0.006244657561182976, + -0.005140016786754131, + -0.06630510836839676, + 0.006260139402002096, + 0.03637753799557686, + 0.06923964619636536, + -0.0012019010027870536, + 0.05686754360795021, + -0.03341756761074066, + 0.029972748830914497, + -0.01893111877143383, + 0.042802050709724426, + -0.013537063263356686, + 0.051262613385915756, + -0.03618314862251282, + -0.022912083193659782, + -0.021469682455062866, + 0.034902285784482956, + 0.00897930283099413, + -0.031762026250362396, + 0.010281112976372242, + 0.013287466019392014, + 0.028807004913687706, + -0.07346748560667038, + -0.04979098215699196, + -0.09090597927570343, + 0.13501611351966858, + 0.10140831768512726, + 0.0681360512971878, + -0.06658035516738892, + -0.06348414719104767, + -0.006917933467775583, + -0.014476773329079151, + -0.004473745822906494, + 0.0746774822473526, + 0.06053851917386055, + 0.010851661674678326, + 0.0660303384065628, + -0.012215430848300457, + 0.008696559816598892, + 0.039629608392715454, + 0.011641854420304298, + 0.058458112180233, + -0.004201088100671768, + 0.025786448270082474, + 0.008117862045764923, + -0.014012078754603863, + -0.056931644678115845, + 0.02675938419997692, + 0.013364755548536777, + -0.07268300652503967, + 0.038589343428611755, + -0.03311759978532791, + -0.10658006370067596, + -0.07764191180467606, + -0.053213171660900116, + -0.06382682919502258, + 0.011818875558674335, + 0.035229023545980453, + -0.011074764654040337, + 0.014893271028995514, + 0.0354788564145565, + -0.05088423565030098, + -0.007088787853717804, + -0.0005382532835938036, + 0.02835857681930065, + 0.024356115609407425, + 0.053240228444337845, + 0.012135269120335579, + -0.023137737065553665, + -0.10818476974964142, + -0.06819510459899902, + 0.02619284763932228, + -0.04204409569501877, + 0.04280666634440422, + 0.06800903379917145, + -0.06757982075214386, + 0.009304757229983807, + -0.05983255058526993, + -0.05448270961642265, + 0.012398777529597282, + 0.047993410378694534, + 0.03260435909032822, + -0.029590455815196037, + -0.041670314967632294, + 0.04009339213371277, + -0.025202946737408638, + -0.019607221707701683, + -0.04907771199941635, + -0.07982385158538818, + -0.03565999120473862, + 0.03233933076262474, + 0.09682146459817886, + 0.02721083164215088, + -0.0359182171523571, + -0.025620194151997566, + -0.020600808784365654, + -0.05626213178038597, + -0.030916597694158554, + -0.044904738664627075, + -3.301457434204983e-33, + -0.02834344655275345, + 0.01890234649181366, + 0.014811292290687561, + 0.07635369896888733, + 0.10745388269424438, + -0.009846951812505722, + -0.04904661327600479, + -0.026838993653655052, + 0.012499125674366951, + 0.06755536049604416, + -0.028558755293488503, + -0.042710985988378525, + -0.017506254836916924, + 0.0029838108457624912, + 0.03695583716034889, + 0.0033416603691875935, + -0.00457002455368638, + -0.020730912685394287, + -0.017940832301974297, + 0.04557528719305992, + -0.10543189942836761, + 0.031020961701869965, + 0.00974130630493164, + -0.015520465560257435, + -0.015206599608063698, + -0.04990657791495323, + -0.060732901096343994, + -0.05930830165743828, + -0.028058284893631935, + 0.03130071982741356, + 0.037626441568136215, + -0.029220670461654663, + -0.00983372237533331, + -0.028322692960500717, + -0.0057250154204666615, + -0.028489260002970695, + -0.0035847402177751064, + -0.06699497997760773, + -0.11292743682861328, + 0.09622801095247269, + -0.13121181726455688, + -0.13992494344711304, + 0.07334940135478973, + 0.05291067808866501, + 0.01726519875228405, + -0.03405269235372543, + -0.05009755119681358, + 0.05129825696349144, + -0.0018063009483739734, + -0.027276556938886642, + 0.0265198964625597, + -0.045666154474020004, + -0.006192702334374189, + -0.07674121856689453, + -0.05200068652629852, + 0.046039775013923645, + 0.02478429116308689, + 0.024692179635167122, + -0.031819842755794525, + 0.05488897114992142, + -0.00928999949246645, + -0.0068182931281626225, + -0.0016765269683673978, + -0.036839913576841354, + -0.01376434601843357, + -0.000618224439676851, + -0.13420917093753815, + 0.003576059825718403, + 0.034131970256567, + 0.09994601458311081, + 0.034068409353494644, + -0.03131406754255295, + -0.004583828151226044, + 0.011737971566617489, + 0.003311264095827937, + 0.023347357288002968, + -0.0014392489101737738, + 0.03642645105719566, + 0.033216264098882675, + -0.0385303795337677, + 0.04504977911710739, + -0.0408148318529129, + -0.0169245395809412, + 0.02116202563047409, + -0.09152093529701233, + 0.11614111810922623, + -0.02299894578754902, + -0.05757865682244301, + 0.1196412667632103, + 0.048813629895448685, + -0.03733675181865692, + 0.00891632866114378, + 0.016486192122101784, + -0.08544263988733292, + -0.03854094818234444, + 5.827653293333131e-34, + 0.0031054781284183264, + -0.02894982509315014, + -0.13227970898151398, + 0.014203759841620922, + 0.09057753533124924, + -0.050566934049129486, + 0.025066131725907326, + 0.07240204513072968, + 0.01829538308084011, + -0.03036339208483696, + -0.015395144000649452, + -0.0383664071559906, + -0.06713629513978958, + -0.005891009699553251, + 0.013075364753603935, + 0.025890788063406944, + 0.05471076816320419, + 0.08842340856790543, + 0.10089913010597229, + 0.09199178218841553, + -0.05993486940860748, + -0.022810088470578194, + -0.03686128184199333, + 0.08344852924346924, + 0.021337568759918213, + 0.07367776334285736, + 0.11288073658943176, + 0.04667631909251213, + -0.03031848557293415, + 0.006539261434227228, + -0.039644625037908554, + -0.05988239124417305, + 0.07999889552593231, + 0.04045844078063965, + -0.00869152881205082, + 0.09813913702964783, + 0.043557628989219666, + -0.08824638277292252, + -0.024234453216195107, + -0.0646098405122757, + 0.003810400376096368, + 0.005426911637187004, + -0.02483745664358139, + 0.09196300804615021, + -0.016495229676365852, + -0.010844722390174866, + 0.0124615877866745, + -0.003153522964566946, + -0.07537379115819931, + 0.08742761611938477, + 0.09922105073928833, + -0.06822526454925537, + -0.007097777910530567, + -0.061088185757398605, + 0.0011348951375111938, + 0.044288519769907, + -0.12609688937664032, + -0.04352526739239693, + -0.009487860836088657, + 0.027777859941124916, + -0.06100596487522125, + 0.07398611307144165, + 0.04863595962524414, + 0.07512504607439041, + 0.10295797884464264, + -0.08380047231912613, + -0.05015212297439575, + -0.05063116177916527, + 0.008171715773642063, + -0.07600356638431549, + 0.004354970529675484, + 0.014564349316060543, + 0.011375973001122475, + -0.004845140967518091, + -0.054132115095853806, + 0.006285360082983971, + -0.05609695613384247, + -0.07323400676250458, + 0.027276594191789627, + 0.00795610062777996, + -0.07125305384397507, + -0.08072826266288757, + -0.024746911600232124, + 0.07536851614713669, + -0.06705334782600403, + -0.04197773337364197, + 0.0021224517840892076, + 0.10403578728437424, + 0.02267860807478428, + -0.027512667700648308, + -0.01595062017440796, + 0.047433871775865555, + -0.012852150946855545, + 0.05154654011130333, + 0.04287385940551758, + -1.8997090123207272e-08, + 0.07851408421993256, + -0.017371628433465958, + -0.07969753444194794, + 0.049898114055395126, + 0.1408800631761551, + -0.05436788871884346, + -0.028684886172413826, + -0.10653702169656754, + 0.03302459418773651, + 0.019045082852244377, + -0.10347240418195724, + 0.10011062026023865, + -0.06667362153530121, + -0.008946157060563564, + -0.07148788124322891, + 0.023704513907432556, + -0.023414265364408493, + 0.05772681534290314, + -0.05938976630568504, + -0.03578449413180351, + -0.018460793420672417, + 0.09338298439979553, + 0.09718214720487595, + -0.03174474090337753, + 0.0445508174598217, + 0.03875577822327614, + -0.012854018248617649, + 0.0030478343833237886, + 0.055854085832834244, + 0.00029698439175263047, + -0.006797836162149906, + -0.002548412187024951, + 0.04187125340104103, + 0.009426532313227654, + -0.01771664433181286, + 0.010209769010543823, + -0.049195192754268646, + -0.00895748846232891, + 0.014718234539031982, + -0.0032172666396945715, + 0.017309371381998062, + 0.04593517631292343, + 0.04377014935016632, + -0.05197496712207794, + -0.043725062161684036, + -0.022013859823346138, + 0.007963338866829872, + -0.009297219105064869, + -0.07064708322286606, + -0.04698480665683746, + -0.030619071796536446, + -0.007209455128759146, + 0.03349870443344116, + 0.03135056793689728, + -0.019614581018686295, + -0.00718189449980855, + 0.043339803814888, + 0.04893120005726814, + 0.05294352397322655, + 0.06488009542226791, + 0.06360628455877304, + 0.04192938283085823, + 0.08342519402503967, + -0.009472384117543697 + ], + "eject-bold||disconnect": [ + 0.045607320964336395, + 0.026652608066797256, + 0.04751899838447571, + 0.10842327773571014, + 0.0004227472236379981, + 0.003908117301762104, + 0.10562445223331451, + -0.06213558092713356, + 0.01506478525698185, + 0.006868442054837942, + 0.0480363555252552, + 0.03599654883146286, + -0.00038929798756726086, + -0.029270805418491364, + -0.04673392325639725, + 0.03636791184544563, + 0.003357343142852187, + -0.024536937475204468, + 0.007355077657848597, + 0.001303060562349856, + 0.038979221135377884, + 0.059683945029973984, + 0.0015502615133300424, + 0.05332430824637413, + 0.029876528307795525, + -0.05268114060163498, + 0.04715269058942795, + -0.019749866798520088, + -0.015894923359155655, + -0.07595085352659225, + 0.0003561913035809994, + -0.10253334045410156, + -0.05917396396398544, + -0.06640607118606567, + 0.013448154553771019, + -0.0036937270779162645, + -0.02129199355840683, + 0.02184734307229519, + -0.033646583557128906, + 0.004217955283820629, + 0.047748684883117676, + -0.05968618765473366, + -0.012190819717943668, + -0.02943192794919014, + -0.03795087710022926, + 0.01658143848180771, + -0.12330321967601776, + -0.03701884672045708, + 0.019982002675533295, + -0.023764513432979584, + 0.0401235930621624, + -0.04020952433347702, + -0.056889284402132034, + 0.031651925295591354, + 0.05657942593097687, + -0.022451043128967285, + 0.018520735204219818, + -0.05516050010919571, + 0.02498641237616539, + -0.02743428386747837, + -0.01557251438498497, + 0.048413779586553574, + 0.020466960966587067, + -0.010648880153894424, + 0.04868720844388008, + 0.060660529881715775, + 0.09503603726625443, + -0.03481453284621239, + -0.041896361857652664, + 0.024556294083595276, + 0.04629629850387573, + -0.01429018285125494, + -0.05040480196475983, + -0.05166162922978401, + -0.013516590930521488, + 0.06534456461668015, + 0.0023789587430655956, + 0.03093227930366993, + -0.03594119846820831, + 0.08664509654045105, + 0.022713463753461838, + -0.022690195590257645, + -0.04660218209028244, + -0.003235559444874525, + 0.034852348268032074, + 0.0665283352136612, + -0.05764414370059967, + -0.10265225917100906, + -0.02723882533609867, + -0.0161368940025568, + -0.0729237049818039, + 0.033670902252197266, + 0.023830411955714226, + 0.10575079172849655, + -0.022198006510734558, + -0.10383179783821106, + 0.003739386796951294, + 0.0221939105540514, + -0.07105831056833267, + 0.07215877622365952, + 0.03177901729941368, + 0.09107803553342819, + -0.09493816643953323, + -0.01148780807852745, + -0.02105843462049961, + -0.012148604728281498, + 0.017961623147130013, + -0.06155695021152496, + -0.060439515858888626, + -0.06721077859401703, + -0.027533460408449173, + -0.08599629998207092, + 0.008080109022557735, + -0.0355292372405529, + -0.022333359345793724, + 0.06751929968595505, + -0.004985816311091185, + 0.035677261650562286, + 0.09585513174533844, + 0.05984349548816681, + 0.021530980244278908, + -0.06598659604787827, + -0.062535360455513, + -0.10552917420864105, + 0.07830211520195007, + -0.03318082168698311, + 0.1040051057934761, + -6.980021629512913e-34, + 0.037258394062519073, + -0.029024973511695862, + -0.0700654461979866, + 0.12067298591136932, + 0.051988519728183746, + 0.04340535029768944, + -0.05139659345149994, + 0.03468254208564758, + -0.056373123079538345, + 0.013865199871361256, + -0.020064545795321465, + 0.04419142007827759, + 0.015391698107123375, + 0.031012602150440216, + 0.05105627328157425, + -0.08776489645242691, + 0.12177248299121857, + -0.023470990359783173, + -0.040897756814956665, + 0.0064223152585327625, + -0.005029935389757156, + 0.009468908421695232, + -0.05431268364191055, + -0.05055928975343704, + -0.02082114852964878, + 0.06658825278282166, + -0.08315693587064743, + 0.035749807953834534, + -0.030299242585897446, + 0.05557243525981903, + -0.04841703921556473, + 0.06497129052877426, + -0.02058533951640129, + 0.05754181370139122, + 0.004287730436772108, + -0.06209206581115723, + -0.03798806294798851, + 0.02673416957259178, + -0.017952293157577515, + -0.027605317533016205, + 0.004446113482117653, + -0.004788462538272142, + -0.11192870140075684, + -0.008162827230989933, + 0.03285995125770569, + 0.02215087041258812, + -0.013643684796988964, + -0.08191712945699692, + -0.03020419366657734, + -0.03925599902868271, + 0.0944792628288269, + 0.041369590908288956, + 0.0075821601785719395, + 0.02309255488216877, + -0.005893600173294544, + -0.0596589632332325, + -0.034624356776475906, + 0.07776204496622086, + 0.020153462886810303, + -0.016110319644212723, + -0.023898905143141747, + 0.10397513210773468, + 0.07287031412124634, + -0.004569218959659338, + 0.051215656101703644, + 0.09323015809059143, + -0.015666568651795387, + 0.0022872521076351404, + -0.03621126338839531, + -0.08067101240158081, + -0.04136485606431961, + 0.05266498029232025, + 0.013033878989517689, + -0.04798611253499985, + -0.08504722267389297, + -0.02438478358089924, + -0.032154545187950134, + -0.03442571684718132, + 0.07902350276708603, + -0.055846989154815674, + 0.044476162642240524, + 0.010010609403252602, + -0.09300679713487625, + 0.01180835347622633, + 0.03691835701465607, + -0.04714500904083252, + -0.02158500626683235, + -0.036063987761735916, + -0.004987586289644241, + 0.06737105548381805, + -0.02374575287103653, + 0.051013946533203125, + -0.015440667048096657, + -0.0736832544207573, + 0.015497650019824505, + -1.4544716700380563e-33, + 0.08760000765323639, + 0.030299799516797066, + -0.029900599271059036, + -0.00743635231629014, + -0.018126949667930603, + 0.036815568804740906, + 0.10185293108224869, + 0.07587313652038574, + -0.02696283720433712, + 0.05127033218741417, + 0.03618934005498886, + 0.011954634450376034, + -0.05434577912092209, + 0.052608028054237366, + -0.005670099053531885, + 0.009464398957788944, + -0.015335604548454285, + 0.01981990970671177, + -0.09179482609033585, + 0.08103251457214355, + 0.016095705330371857, + -0.04542500525712967, + 0.05514449253678322, + -0.023930184543132782, + 0.023478232324123383, + 0.020985687151551247, + -0.0017800641944631934, + 0.03876403346657753, + -0.0835697129368782, + -0.07145864516496658, + -0.040695205330848694, + -0.010485948994755745, + 0.020983392372727394, + 0.03907337039709091, + -0.09451461583375931, + 0.07024695724248886, + -0.009849883615970612, + 0.04683765396475792, + 0.022269876673817635, + -0.03810109198093414, + 0.0615425743162632, + 0.06275496631860733, + -0.032725024968385696, + 0.06646757572889328, + -0.03866240754723549, + 0.04368700087070465, + -0.058245524764060974, + -0.06886202841997147, + 0.016302742063999176, + 0.12955127656459808, + -0.030430151149630547, + -0.014290567487478256, + -0.010521666146814823, + 0.06718600541353226, + -0.04233582317829132, + -0.05842246115207672, + 0.026830090209841728, + -0.074223093688488, + -0.03314373642206192, + 0.0469689704477787, + 0.10341411083936691, + -0.026064343750476837, + -0.04657318815588951, + 0.04928619787096977, + 0.1168910562992096, + -0.15001191198825836, + 0.049462929368019104, + 0.039938703179359436, + 0.07403399050235748, + -0.013543208129703999, + 0.055815018713474274, + -0.028083384037017822, + 0.0322868637740612, + 0.0042906892485916615, + 0.015881726518273354, + 0.04041951149702072, + -0.026161985471844673, + -0.10148390382528305, + -0.07359877973794937, + 0.05544547736644745, + 0.02450272999703884, + -0.0385059230029583, + -0.0434177927672863, + 0.030265359207987785, + -0.031415168195962906, + -0.021024733781814575, + -0.003381767775863409, + 0.0037693132180720568, + -0.008245945908129215, + -0.021204274147748947, + -0.03056425228714943, + -0.001088047050870955, + 0.03819524124264717, + 0.003908565267920494, + -0.03885583207011223, + -1.6413217451827222e-08, + -0.0011657640570774674, + -0.045365575700998306, + 0.048423849046230316, + 0.009340978227555752, + 0.020543638616800308, + -0.07941387593746185, + -0.05473421514034271, + -0.02139277756214142, + -0.05356493592262268, + -0.02100754715502262, + 0.06769157201051712, + 0.03162340819835663, + 0.006778258364647627, + 0.052434056997299194, + 0.03966977074742317, + -0.03308214992284775, + -0.02948186919093132, + -0.004581182263791561, + -0.026465721428394318, + -0.03883624076843262, + -0.06389898806810379, + -0.005085764452815056, + 0.05597718060016632, + 0.0013112789019942284, + -0.004893374163657427, + -0.01979278400540352, + -0.024211056530475616, + 0.0194379985332489, + -0.022104015573859215, + 0.007218833547085524, + 0.028192229568958282, + 0.014733095653355122, + 0.02539009600877762, + 0.08545229583978653, + -0.17618361115455627, + 0.0984763652086258, + -0.012120281346142292, + 0.06549114733934402, + -0.09136679768562317, + 0.039170145988464355, + -0.011406407691538334, + 0.00800232496112585, + -0.06950129568576813, + -0.013598551973700523, + -0.07063152641057968, + 0.04703832045197487, + 0.08267824351787567, + 0.00310517312027514, + -0.06832261383533478, + 0.06310101598501205, + -0.06535245478153229, + 0.01026887446641922, + -0.03083673119544983, + 0.04381844401359558, + -0.017540080472826958, + -0.1184530183672905, + 0.018012192100286484, + 0.07252777367830276, + -0.008372564800083637, + 0.04405558109283447, + 0.06151712313294411, + -0.01605992764234543, + -0.020963773131370544, + -0.06041109934449196 + ], + "eject-simple-bold||disconnect": [ + 0.04870849847793579, + 0.026642708107829094, + 0.05334790423512459, + 0.10775702446699142, + 0.011854290962219238, + -0.002104309154674411, + 0.09250248223543167, + -0.056218378245830536, + 0.0024541178718209267, + 0.015738436952233315, + 0.04503989219665527, + 0.02733941562473774, + -0.008046266622841358, + -0.028615295886993408, + -0.03716031089425087, + 0.0207874346524477, + -0.00012061313464073464, + -0.03042135015130043, + 0.006430644076317549, + 0.009605038911104202, + 0.01847287267446518, + 0.053681630641222, + -0.002513376995921135, + 0.04474104195833206, + 0.02471196837723255, + -0.052033036947250366, + 0.041838910430669785, + -0.008000833913683891, + -0.0012972423573955894, + -0.07816014438867569, + 0.003605967154726386, + -0.10084740817546844, + -0.056655194610357285, + -0.07064002007246017, + 0.00847705453634262, + 0.0013807514915242791, + -0.011172979138791561, + 0.020196525380015373, + -0.03954374045133591, + 0.0007519186474382877, + 0.04465565085411072, + -0.05535051226615906, + -0.010656113736331463, + -0.025159379467368126, + -0.04975871741771698, + 0.013111807405948639, + -0.1152758076786995, + -0.03682167828083038, + 0.0212613083422184, + -0.04292606934905052, + 0.04281259700655937, + -0.04344751685857773, + -0.052984870970249176, + 0.022584300488233566, + 0.05475982651114464, + -0.016466626897454262, + 0.00731342239305377, + -0.050680577754974365, + 0.021013464778661728, + -0.02325918897986412, + -0.007602724712342024, + 0.04095424711704254, + 0.030369361862540245, + -0.014985538087785244, + 0.04480236396193504, + 0.0564919076859951, + 0.09415768831968307, + -0.04615981876850128, + -0.045957110822200775, + 0.01831779070198536, + 0.04278935492038727, + -0.026294270530343056, + -0.06488446146249771, + -0.03549041971564293, + -0.023113230243325233, + 0.056988876312971115, + -0.00722796656191349, + 0.04823147878050804, + -0.03927327319979668, + 0.10265380144119263, + 0.023795565590262413, + -0.03314577415585518, + -0.05439088121056557, + 0.010085188783705235, + 0.0362173356115818, + 0.06285230815410614, + -0.05906679108738899, + -0.09288039058446884, + -0.02215096354484558, + -0.017050327733159065, + -0.06608949601650238, + 0.03596619889140129, + 0.021898366510868073, + 0.1095438301563263, + -0.015951279550790787, + -0.10722316056489944, + 0.006586937699466944, + 0.031310077756643295, + -0.0938597321510315, + 0.0676729753613472, + 0.03193856403231621, + 0.09835226088762283, + -0.07572178542613983, + -0.02282531186938286, + -0.019414318725466728, + -0.018078429624438286, + 0.022435344755649567, + -0.07385389506816864, + -0.06689685583114624, + -0.07418569922447205, + -0.0291800145059824, + -0.09166163206100464, + 0.007253706455230713, + -0.02769661881029606, + -0.013277092017233372, + 0.06975522637367249, + -0.011585085652768612, + 0.034100718796253204, + 0.09390498697757721, + 0.07913824170827866, + 0.02458217553794384, + -0.0598435141146183, + -0.07345443964004517, + -0.10345291346311569, + 0.07140646129846573, + -0.029279151931405067, + 0.10757318884134293, + -1.408864509607067e-33, + 0.045218467712402344, + -0.014401442371308804, + -0.06864655762910843, + 0.1248556450009346, + 0.04343322664499283, + 0.03576816990971565, + -0.052640777081251144, + 0.0403585359454155, + -0.05757246911525726, + 0.02172004245221615, + -0.0018479259451851249, + 0.030583152547478676, + 0.011828366667032242, + 0.042888469994068146, + 0.03652966767549515, + -0.08646558225154877, + 0.1184336468577385, + -0.02860141731798649, + -0.04098232090473175, + 0.0016817343421280384, + 0.00119214435108006, + 0.02687428705394268, + -0.05888731777667999, + -0.05791748687624931, + -0.02224567160010338, + 0.07020072638988495, + -0.08127288520336151, + 0.027190564200282097, + -0.023259315639734268, + 0.05294158309698105, + -0.04573870077729225, + 0.061123546212911606, + -0.018801510334014893, + 0.06660617887973785, + 0.0027344725094735622, + -0.07092387229204178, + -0.024054910987615585, + 0.02980358712375164, + -0.026233216747641563, + -0.037624064832925797, + 0.0019007646478712559, + 0.003750445321202278, + -0.1013684943318367, + -0.008838409557938576, + 0.0414435975253582, + 0.029571687802672386, + -0.019419364631175995, + -0.08541397750377655, + -0.025687234476208687, + -0.038187481462955475, + 0.0862061083316803, + 0.05141342058777809, + -0.0011291777482256293, + 0.0324331559240818, + -0.005167830269783735, + -0.050814468413591385, + -0.03536335378885269, + 0.07482923567295074, + 0.017586691305041313, + -0.01510575506836176, + -0.027045782655477524, + 0.11854203790426254, + 0.05693557485938072, + 0.005658494774252176, + 0.053277503699064255, + 0.10264208912849426, + -0.01867745816707611, + -0.009125582873821259, + -0.04853492230176926, + -0.0725877657532692, + -0.03465666249394417, + 0.04875556007027626, + 0.005013428162783384, + -0.058250218629837036, + -0.07187457382678986, + -0.017725350335240364, + -0.019326822832226753, + -0.05478833615779877, + 0.08279062807559967, + -0.05751710385084152, + 0.05543464049696922, + 0.017184961587190628, + -0.09896988421678543, + 0.010932565666735172, + 0.014254271052777767, + -0.04934409260749817, + -0.01775519549846649, + -0.021392565220594406, + -0.003476253245025873, + 0.058287736028432846, + -0.02370305173099041, + 0.057553112506866455, + -0.019581535831093788, + -0.08539358526468277, + 0.016112584620714188, + -9.389897547181396e-34, + 0.09463921934366226, + 0.020701497793197632, + -0.037103570997714996, + 0.01123802363872528, + -0.022784890606999397, + 0.051653847098350525, + 0.10768682509660721, + 0.07358002662658691, + -0.015400620177388191, + 0.05261982977390289, + 0.02475753240287304, + 0.014690636657178402, + -0.06213145703077316, + 0.05299413576722145, + -0.002427381696179509, + 0.012324918061494827, + -0.030394461005926132, + 0.030276842415332794, + -0.08016733080148697, + 0.07894200086593628, + 0.02397124655544758, + -0.038623448461294174, + 0.03836148977279663, + -0.033174384385347366, + 0.029650120064616203, + 0.022414488717913628, + -0.012605957686901093, + 0.04740787297487259, + -0.07602396607398987, + -0.07994560897350311, + -0.04147225618362427, + -0.01821197383105755, + 0.021850580349564552, + 0.02811971679329872, + -0.10433454811573029, + 0.07708703726530075, + -0.02342086285352707, + 0.05127035081386566, + 0.024571025744080544, + -0.04174209013581276, + 0.05431181564927101, + 0.06339749693870544, + -0.027629610151052475, + 0.05107272043824196, + -0.03811289742588997, + 0.03297502174973488, + -0.049483515322208405, + -0.07331135123968124, + 0.011430787853896618, + 0.12352649122476578, + -0.03631054237484932, + -0.02002965845167637, + -0.012293415144085884, + 0.06759694218635559, + -0.034361932426691055, + -0.0588604100048542, + 0.027851559221744537, + -0.07500609755516052, + -0.03603784739971161, + 0.052105385810136795, + 0.0954710841178894, + -0.0269621554762125, + -0.05822592228651047, + 0.03965310752391815, + 0.10894667357206345, + -0.1491645872592926, + 0.04787560552358627, + 0.026260199025273323, + 0.06494421511888504, + -0.019515516236424446, + 0.051445964723825455, + -0.023168126121163368, + 0.04509468749165535, + -0.00700677465647459, + 0.023718055337667465, + 0.04292105883359909, + -0.018356923013925552, + -0.09829379618167877, + -0.07278753072023392, + 0.03469930216670036, + 0.031334396451711655, + -0.04012883082032204, + -0.05039292573928833, + 0.019098518416285515, + -0.016833879053592682, + -0.029331937432289124, + -0.007932738400995731, + -0.0059230090118944645, + -0.004670829977840185, + -0.01408576313406229, + -0.031202036887407303, + 0.014277503825724125, + 0.059164341539144516, + 0.008060460910201073, + -0.02073007822036743, + -1.7440767052789852e-08, + 0.004626743961125612, + -0.05326622352004051, + 0.03942976891994476, + 0.011069159023463726, + 0.02038552053272724, + -0.07694041728973389, + -0.04815555736422539, + -0.015957415103912354, + -0.04686296731233597, + -0.019251175224781036, + 0.0600188784301281, + 0.027987996116280556, + 0.007765782531350851, + 0.06593181937932968, + 0.02201474830508232, + -0.012609315104782581, + -0.03350609540939331, + -0.0033871044870465994, + -0.020825764164328575, + -0.03649618849158287, + -0.0595133975148201, + -0.0023112334311008453, + 0.055371928960084915, + -0.010572710074484348, + -0.0069588907063007355, + -0.012249567545950413, + -0.018170900642871857, + 0.028944561257958412, + -0.020901527255773544, + 0.012932315468788147, + 0.021264847368001938, + 0.008959392085671425, + 0.026680806651711464, + 0.09156566113233566, + -0.18287372589111328, + 0.10205218940973282, + -0.01578953117132187, + 0.06703692674636841, + -0.09843148291110992, + 0.016697831451892853, + -0.008158469572663307, + 0.013730287551879883, + -0.07872708141803741, + -0.022714128717780113, + -0.06658192723989487, + 0.04852151870727539, + 0.0780496820807457, + -0.002801774302497506, + -0.07763473689556122, + 0.060212649405002594, + -0.06032228469848633, + 0.010465805418789387, + -0.02956555224955082, + 0.04700035601854324, + -0.009196093305945396, + -0.10583773255348206, + 0.028492704033851624, + 0.07815606147050858, + -0.007699926383793354, + 0.05201491713523865, + 0.062486711889505386, + 0.008275886997580528, + -0.030915170907974243, + -0.053915128111839294 + ], + "elevator-bold||lift": [ + -0.03936798870563507, + -0.01866343803703785, + 0.008560831658542156, + 0.04452572017908096, + 0.0077135637402534485, + -0.03368135169148445, + 0.03970509395003319, + -0.061340849846601486, + -0.011719511821866035, + 0.005686590913683176, + 0.027428142726421356, + 0.036776572465896606, + 0.036730583757162094, + -0.0715782567858696, + -0.02383739873766899, + 0.14082764089107513, + 0.04732295125722885, + 0.03579035401344299, + -0.036590028554201126, + 0.016027268022298813, + -0.0052903941832482815, + 0.0281700287014246, + 0.05022445693612099, + 0.04306061565876007, + -0.020504795014858246, + -0.0455595962703228, + 0.030944980680942535, + 0.06422445923089981, + 0.055027250200510025, + -0.055662017315626144, + -0.032527413219213486, + -0.05774436891078949, + 0.04458460584282875, + -0.00939008966088295, + -0.020422475412487984, + 0.03888397291302681, + -0.0032999643590301275, + -0.03021843358874321, + -0.003613443812355399, + 0.015484307892620564, + 0.005310294684022665, + -0.046772316098213196, + -0.0031653866171836853, + 0.00874822773039341, + -0.09081167727708817, + 0.005937057547271252, + -0.0313548669219017, + -0.055685579776763916, + 0.04541004076600075, + 0.037307221442461014, + -0.056855376809835434, + -0.048033706843853, + -0.05736339092254639, + -0.010117501951754093, + -0.020490504801273346, + 0.09651439636945724, + -0.030184628441929817, + -0.08364110440015793, + 0.08135390281677246, + -0.0167557280510664, + -0.007974505424499512, + -0.003787996945902705, + 0.02598990499973297, + 0.034182000905275345, + 0.08174643665552139, + 0.07967054098844528, + 0.016592469066381454, + -0.028815913945436478, + -0.07386066019535065, + -0.006529260892421007, + 0.032731298357248306, + -0.02205601893365383, + -0.02408752776682377, + 0.004727337975054979, + -0.06269223242998123, + -0.0026879177894443274, + 0.028246982023119926, + 0.009945869445800781, + -0.044909652322530746, + 0.025486018508672714, + -0.04662223160266876, + -0.13100989162921906, + -0.059238094836473465, + 0.007243949454277754, + -0.0041141025722026825, + 0.06837411224842072, + -0.0789659395813942, + -0.09334880113601685, + -0.07471472769975662, + 0.046541567891836166, + 0.00018169372924603522, + -0.0567781887948513, + -0.027927091345191002, + 0.10751718282699585, + -0.016846297308802605, + -0.04140109568834305, + -0.003785115899518132, + -0.041951946914196014, + -0.09473364055156708, + 0.08182886987924576, + 0.0033320575021207333, + 0.0927165299654007, + -0.013804168440401554, + -0.009478281252086163, + -0.06406870484352112, + 0.0015792889753356576, + 0.021517805755138397, + -0.019080495461821556, + -0.039989229291677475, + -0.01829097792506218, + -0.00796695239841938, + -0.10036597400903702, + 0.06985056400299072, + -0.005579268094152212, + -0.056218888610601425, + -0.06090264022350311, + 0.0015919288853183389, + -0.05575786903500557, + -0.008766069076955318, + 0.018291641026735306, + 0.0285879448056221, + -0.052799519151449203, + -0.0013777913991361856, + -0.044319476932287216, + -0.033625125885009766, + -0.0379900187253952, + 0.050115976482629776, + -3.142116603557129e-33, + 0.047775886952877045, + 0.08968936651945114, + 0.0015366949373856187, + 0.08515922725200653, + 0.012164841406047344, + -0.015127667225897312, + -0.06150655075907707, + -0.016676031053066254, + -0.05540592595934868, + 0.05388543754816055, + 0.017479296773672104, + 0.06313768029212952, + -0.011018475517630577, + -0.03731467202305794, + 0.03908732533454895, + -0.01516895741224289, + 0.0623556524515152, + -0.06467626988887787, + -0.07183890789747238, + -0.020774679258465767, + -0.013315950520336628, + 0.056146711111068726, + -0.07628366351127625, + 0.0030120746232569218, + -0.027496343478560448, + -0.037718262523412704, + 0.023642748594284058, + -0.004113903734833002, + -0.06912969052791595, + 0.03896932676434517, + 0.011924522928893566, + 0.04375206679105759, + 0.004897552076727152, + 0.016133515164256096, + -0.02364160679280758, + 0.0326126404106617, + 0.006443524733185768, + -0.023626014590263367, + 0.003319866256788373, + 0.041441287845373154, + -0.06843745708465576, + -0.07007326930761337, + 0.009642565622925758, + 0.009969060309231281, + 0.03238670155405998, + 0.11439255625009537, + 0.0009262919193133712, + -0.03532952442765236, + -4.361932587926276e-05, + 0.0525660365819931, + 0.004874490201473236, + 0.022874705493450165, + 0.035717304795980453, + -0.018636979162693024, + 0.04545481875538826, + -0.03504231572151184, + 0.035116881132125854, + 0.06649991869926453, + 0.009384234435856342, + -0.007871102541685104, + -0.04509807378053665, + -0.01963692530989647, + 0.0701180174946785, + 0.030478788539767265, + -0.032474905252456665, + 0.0874163955450058, + -0.0692131519317627, + 0.04852757975459099, + 0.061080753803253174, + 0.027621684595942497, + -0.053006354719400406, + 0.03319946303963661, + 0.026701491326093674, + 0.09439865499734879, + -0.029257329180836678, + 0.03362059220671654, + -0.08932725340127945, + -0.07922646403312683, + 0.134872168302536, + -0.07160422950983047, + -0.07203159481287003, + 0.026504360139369965, + -0.0401325523853302, + 0.08183466643095016, + 0.1279328614473343, + 0.05805687978863716, + -0.06052929908037186, + -0.06256957352161407, + 0.005195817910134792, + 0.1171475350856781, + -0.08336667716503143, + -0.012322582304477692, + -0.03812805935740471, + -0.025525884702801704, + -0.030561629682779312, + 1.2132241378993328e-33, + 0.0771368220448494, + 0.07602057605981827, + -0.09144353121519089, + -0.024780696257948875, + 0.014219172298908234, + -0.013153735548257828, + 0.015993809327483177, + 0.05575107783079147, + -0.020542487502098083, + 0.08382420986890793, + 0.049117956310510635, + -0.014624275267124176, + -0.0016812055837363005, + -0.04774467647075653, + 0.08018960803747177, + 0.02075362019240856, + 0.041206032037734985, + -0.004182146862149239, + -0.05554325133562088, + 0.03633537515997887, + -0.0070990039967000484, + -0.025167791172862053, + -0.04386994242668152, + 0.11451313644647598, + -0.009289649315178394, + 0.05286017060279846, + 0.04689972102642059, + 0.07172084599733353, + 0.020808067172765732, + -0.03911793604493141, + -0.09094634652137756, + 0.010868720710277557, + 0.07871904969215393, + 0.07331528514623642, + -0.0626208633184433, + 0.11642563343048096, + 0.05007101967930794, + -0.0027429102919995785, + 0.04042511805891991, + -0.03727749362587929, + -0.004585705231875181, + 0.015694284811615944, + 0.013166451826691628, + 0.018993111327290535, + -0.05565393343567848, + -0.022912710905075073, + -0.013620118610560894, + -0.07494501024484634, + -0.06737097352743149, + -0.00932809617370367, + -0.03761494532227516, + 0.035912830382585526, + 0.004517208319157362, + 0.05195877328515053, + 0.015293805859982967, + -0.026666589081287384, + -0.027827879413962364, + -0.029928579926490784, + -0.02603337913751602, + 0.06045505031943321, + 0.008442704565823078, + 0.05439867824316025, + -0.019277427345514297, + 0.013900612480938435, + 0.010686986148357391, + -0.06101575866341591, + 0.054417386651039124, + -0.05842691287398338, + -0.05999862030148506, + -0.013839787803590298, + 0.07541393488645554, + 0.004793742671608925, + 0.07305456697940826, + 0.02940898947417736, + -0.008732529357075691, + -0.05681643262505531, + 0.08338497579097748, + 0.015597755089402199, + -0.009799337014555931, + 0.002743101678788662, + -0.05809200182557106, + -0.062125153839588165, + 0.011507191695272923, + 0.03646834194660187, + -0.07009946554899216, + 0.05587282031774521, + 0.00555766373872757, + 0.06916438788175583, + -0.004362812265753746, + -0.06000330671668053, + -0.030910465866327286, + 0.06024136394262314, + -0.012882107868790627, + -0.07336601614952087, + -0.006445123814046383, + -1.2709802099664103e-08, + -0.04488806053996086, + -0.006217743270099163, + 0.03234298899769783, + -0.056602053344249725, + 0.06499862670898438, + 0.037772733718156815, + -0.0514274425804615, + -0.05984726548194885, + -0.08098134398460388, + -0.060692451894283295, + 0.015375460498034954, + 0.12504121661186218, + -0.04554799199104309, + 0.05182982236146927, + -0.02582789584994316, + 0.052873771637678146, + -0.130830779671669, + 0.04808377847075462, + -0.04676639661192894, + -0.017400316894054413, + -0.034278854727745056, + -0.002884877612814307, + 0.14163325726985931, + 0.023775046691298485, + -0.024296335875988007, + -0.030201399698853493, + -0.1054009422659874, + -0.04085551202297211, + 0.08065935969352722, + 0.0568753220140934, + 0.00849839672446251, + 0.03365103527903557, + -0.007521063555032015, + -0.006903400644659996, + -0.127435103058815, + 0.04011974856257439, + 0.07162357866764069, + -0.003064303193241358, + -0.03192298114299774, + 0.0895203948020935, + -0.05295762047171593, + -0.019864849746227264, + -0.014776838943362236, + 0.003711580066010356, + -0.023936737328767776, + 0.06744106113910675, + 0.01291598193347454, + -0.026835868135094643, + -0.06519999355077744, + -0.05226960778236389, + -0.02801739238202572, + -0.04953882843255997, + 0.003472688375040889, + 0.11317078024148941, + -0.020247556269168854, + -0.029316574335098267, + -0.015883710235357285, + 0.09185928851366043, + -0.04321981593966484, + 0.04571036621928215, + 0.14698436856269836, + 0.008005472831428051, + -0.012396827340126038, + -0.040218714624643326 + ], + "empty-bold||*new*,\u2205,empty set,member,mathematics,arithmetic,calculator,null": [ + 0.008936934173107147, + 0.03618685156106949, + -0.03302312642335892, + 0.06122622638940811, + -0.06706888973712921, + -0.02035023830831051, + 0.02714345045387745, + -0.008124114014208317, + 0.015305422246456146, + -0.01123099960386753, + 0.0484650544822216, + -0.08125085383653641, + 0.07229342311620712, + -0.10238871723413467, + 0.025348879396915436, + 0.06643132120370865, + -0.044351089745759964, + -0.030796043574810028, + -0.023910028859972954, + -0.03939097374677658, + -0.013682984746992588, + -0.0002962580765597522, + -0.034989532083272934, + 0.03592214733362198, + 0.08597414195537567, + 0.05195127800107002, + 0.01896650157868862, + -0.09588513523340225, + 0.09163989871740341, + -0.011854426003992558, + -0.07745017856359482, + -0.01153538003563881, + 0.1045486256480217, + -0.012421084567904472, + 0.1047598123550415, + 0.009035556577146053, + 0.10510256141424179, + 0.03440345823764801, + -0.03437177091836929, + 0.06604351848363876, + -0.04246855154633522, + -0.0320151224732399, + -0.036129504442214966, + 0.10639520734548569, + -0.03990074247121811, + 0.02583955228328705, + -0.033761218190193176, + -0.03471864387392998, + 0.01449555903673172, + -0.09187686443328857, + 0.001789736095815897, + -0.005387780722230673, + -0.11259237676858902, + -0.007964084856212139, + 0.050058335065841675, + 0.018718641251325607, + -0.037609126418828964, + -0.05282803997397423, + -0.033962782472372055, + -0.07637996226549149, + 0.0058995699509978294, + 0.026776395738124847, + 0.051636818796396255, + -0.017112739384174347, + 0.042601391673088074, + 0.007784482557326555, + -0.050469204783439636, + 0.0031077133025974035, + 0.010801529511809349, + 0.051033638417720795, + -0.019355211406946182, + 0.045872051268815994, + 0.011022630147635937, + 0.09890864044427872, + -0.10299187153577805, + -0.0033976181875914335, + 0.07372357696294785, + 0.018790781497955322, + -0.002759380266070366, + 0.09228046983480453, + -0.06898998469114304, + -0.06090446934103966, + -0.08836152404546738, + -0.010508849285542965, + 0.03941178694367409, + 0.021472707390785217, + -0.027912678197026253, + -0.08377980440855026, + -0.0570933036506176, + -0.008531419560313225, + -0.08828188478946686, + 0.014546873979270458, + -0.04125198349356651, + 0.03664982318878174, + -0.008770942687988281, + 0.004026338923722506, + 0.0851781964302063, + 0.03308653458952904, + -0.05390840023756027, + 0.11756227165460587, + -0.01647801138460636, + 0.08142440766096115, + 0.025728249922394753, + 0.013827171176671982, + -0.11023920774459839, + 0.007446630857884884, + -0.003729167627170682, + -0.058352645486593246, + -0.015857815742492676, + -0.006471126805990934, + 0.08032111823558807, + -0.1375531107187271, + 0.007939132861793041, + -0.0417058989405632, + -0.040031082928180695, + -0.006453286856412888, + -0.06037627160549164, + -0.03551153838634491, + 0.042141299694776535, + 0.08437923341989517, + 0.045382309705019, + -0.030784280970692635, + 0.019807899370789528, + 0.007731438148766756, + -0.015094171278178692, + 0.001984858885407448, + -0.06432071328163147, + -1.9772051916410964e-33, + 0.03189824894070625, + 0.04658176749944687, + -0.03597469627857208, + 0.06803502887487411, + 0.005018103867769241, + 0.029287274926900864, + -0.02033705823123455, + -0.0256875678896904, + -0.003283949801698327, + 0.04358518868684769, + 0.07127628475427628, + 0.046968962997198105, + 0.017125939950346947, + 0.10704188793897629, + 0.0792108103632927, + -0.00299797672778368, + 0.11418890953063965, + -0.08045467734336853, + -0.031094826757907867, + -0.044131964445114136, + -0.00720629608258605, + 0.10635434091091156, + -0.06875409930944443, + -0.01494224090129137, + 0.0021166857331991196, + 0.027807217091321945, + 0.03132007271051407, + -0.07040896266698837, + -0.10438887774944305, + 0.017326125875115395, + -0.020939815789461136, + 0.014799458906054497, + 0.08605055510997772, + 0.015439946204423904, + 0.02801400236785412, + 0.044650375843048096, + -0.022618955001235008, + -0.024662572890520096, + 0.05344643071293831, + -0.047186993062496185, + -0.06129705533385277, + -0.04940205439925194, + 0.011070946231484413, + -0.0716961994767189, + 0.052860114723443985, + 0.01681048423051834, + -0.03048507310450077, + 0.0052138520404696465, + 0.021179385483264923, + -0.011063928715884686, + -0.029011370614171028, + 0.014911627396941185, + -0.011894681490957737, + 0.03114655427634716, + -0.027043718844652176, + -0.04004070907831192, + -0.047614846378564835, + 0.006850863341242075, + -0.019432183355093002, + 0.001006776699796319, + -0.005172348581254482, + 0.07467853277921677, + -0.008357536047697067, + 0.015418625436723232, + -0.13066637516021729, + 0.04196423292160034, + -0.10099145770072937, + -0.05062650889158249, + 0.07439862191677094, + -0.022171415388584137, + -0.012652595527470112, + 0.05706784129142761, + -0.052729204297065735, + 0.06896492093801498, + 0.04370707646012306, + 0.014324626885354519, + 0.03890857845544815, + -0.0935022160410881, + 0.022330034524202347, + -0.04278820380568504, + 0.08585865795612335, + -0.0016248553292825818, + 0.028851862996816635, + 0.08977598696947098, + 0.03832964599132538, + -0.02600286342203617, + 0.03568370267748833, + 0.017080193385481834, + -0.008407458662986755, + -0.026595929637551308, + -0.10147430747747421, + -0.04274502769112587, + -0.033432766795158386, + -0.09525638073682785, + -0.04553789272904396, + -2.8885534722061384e-33, + 0.02627485617995262, + 0.04698409512639046, + -0.06315287947654724, + -0.0048543852753937244, + -0.06889645755290985, + 0.03838859871029854, + 0.08030042797327042, + -0.031919240951538086, + 0.05464184656739235, + 0.010761482641100883, + 0.055514901876449585, + 0.031168587505817413, + -0.04946007952094078, + -0.03775881975889206, + 0.01836143434047699, + 0.03808620944619179, + -0.05827101692557335, + -0.06621593981981277, + -0.07157841324806213, + 0.049344707280397415, + -0.020667817443609238, + 0.04195698723196983, + -0.07096672803163528, + 0.0022135144099593163, + 0.03610023111104965, + -0.02400064468383789, + -0.006545011419802904, + 0.03684912994503975, + -0.07492333650588989, + 0.031182996928691864, + 0.02414608560502529, + -0.05946453660726547, + 0.051156170666217804, + -0.026502519845962524, + -0.08401063829660416, + -0.022385241463780403, + 0.11760696023702621, + -0.03384830057621002, + -0.017211642116308212, + -0.012755448929965496, + -0.014866710640490055, + -0.03799093887209892, + 0.0637686625123024, + 0.04254946485161781, + -0.0300285704433918, + -0.028967566788196564, + 0.01550843846052885, + -0.031236398965120316, + 0.016376979649066925, + 0.030059443786740303, + 0.029744615778326988, + -0.08692976832389832, + 0.007487586233764887, + 0.020343683660030365, + -0.04115479439496994, + 0.009650490246713161, + -0.017410408705472946, + 0.03978075459599495, + 0.017457816749811172, + 0.051703520119190216, + -0.009029916487634182, + 0.054539427161216736, + -0.01879098452627659, + 0.06029903516173363, + 0.00711972126737237, + -0.08618071675300598, + -0.033373910933732986, + 0.0850406214594841, + -0.04047499597072601, + -0.11118724942207336, + -0.017308104783296585, + 0.005575386341661215, + -0.033487651497125626, + -0.046188127249479294, + -0.03505045175552368, + 0.05120193213224411, + -0.011430853046476841, + 0.007018187083303928, + -0.011614827439188957, + 0.02490689978003502, + 0.0059239184483885765, + -0.016908984631299973, + -0.06572224944829941, + -0.029088132083415985, + -0.0009790059411898255, + 0.029160968959331512, + 0.036479294300079346, + -0.023060711100697517, + -0.020763840526342392, + -0.024202769622206688, + -0.03653492406010628, + 0.05174964293837547, + -0.02281559631228447, + -0.016890618950128555, + -0.09601915627717972, + -2.586443059726662e-08, + -0.028937388211488724, + -0.05679039657115936, + -0.013002222403883934, + 0.005051441490650177, + 0.024163130670785904, + -0.07655178010463715, + 0.00869783479720354, + -0.04966625198721886, + -0.0355767086148262, + -0.025756139308214188, + 0.0332082137465477, + 0.07726732641458511, + -0.11538750678300858, + -0.06491105258464813, + 0.029243338853120804, + -0.008147098124027252, + -0.01186626311391592, + 0.02257920615375042, + -0.04893298074603081, + -0.03155308961868286, + -0.01837565377354622, + 0.05611240863800049, + 0.010652638040482998, + -0.01019624900072813, + 0.036373067647218704, + -0.015381162986159325, + 0.0047754282131791115, + -0.014188650995492935, + 0.09044716507196426, + 0.06890464574098587, + 0.1204211488366127, + 0.09910503029823303, + 0.04727036505937576, + -0.02204144187271595, + -0.08829542994499207, + 0.02443522959947586, + 0.0013753629755228758, + 0.08497995138168335, + -0.03921541944146156, + 0.05756446719169617, + -0.06680535525083542, + -0.010216277092695236, + -0.03879527375102043, + -0.033171504735946655, + 0.006022941786795855, + -0.06076827272772789, + -0.049757543951272964, + -0.056233834475278854, + 0.0005111821228638291, + -0.11133658140897751, + -0.05308772623538971, + 0.10925598442554474, + -0.02956034615635872, + 0.045756418257951736, + -0.03503989055752754, + -0.05002811923623085, + -0.004560405388474464, + 0.13959573209285736, + -0.027107128873467445, + -0.021878963336348534, + 0.07536638528108597, + -0.04568394273519516, + 0.03135084733366966, + 0.007655275519937277 + ], + "engine-bold||*updated*,motor,repair,vehicles,automobile": [ + -0.07234737277030945, + -0.010413323529064655, + 0.026497937738895416, + 0.025685185566544533, + 0.02116072177886963, + -0.007431924808770418, + 0.001049817306920886, + -0.030206987634301186, + -0.07661976665258408, + -0.05181495100259781, + 0.014554901979863644, + 0.04429388791322708, + 0.008243083022534847, + -0.07911182940006256, + -0.06471297889947891, + 0.04979090392589569, + 0.025261593982577324, + 0.020573239773511887, + -0.041420307010412216, + -0.02200600504875183, + -0.019075926393270493, + 0.11667343974113464, + 0.0377996563911438, + 0.06883891671895981, + 0.006167761515825987, + 0.050161879509687424, + -0.02976028434932232, + 0.05796177685260773, + -0.030000532045960426, + -0.10775478184223175, + -0.06319751590490341, + 0.03504355624318123, + 0.06485852599143982, + -0.0025506517849862576, + 0.07171808183193207, + -0.03440435975790024, + -0.025574682280421257, + -0.01957082375884056, + -0.0005883782869204879, + 0.005984411109238863, + 0.010307352989912033, + -0.12014298886060715, + -0.04768368601799011, + 0.02638872154057026, + -0.006759190000593662, + 0.009855694137513638, + -0.014340315945446491, + -0.03898894414305687, + 0.038558900356292725, + -0.044414762407541275, + -0.06466589868068695, + -0.11163671314716339, + -0.07616499066352844, + -0.04505744203925133, + 0.00946330651640892, + 0.011902512982487679, + -0.057637281715869904, + 0.01955042965710163, + -0.02402159571647644, + -0.027925513684749603, + 0.07013961672782898, + 0.025818051770329475, + 0.044052690267562866, + 0.08364797383546829, + 0.02947225607931614, + -0.003924524877220392, + 0.01019518543034792, + -0.020598867908120155, + -0.046469565480947495, + 0.033189401030540466, + 0.051973916590213776, + 0.014196859672665596, + -0.024385999888181686, + -0.032236017286777496, + -0.07580681145191193, + -0.020505869761109352, + 0.0500839464366436, + 0.012746339663863182, + 0.0374675914645195, + -0.0900174081325531, + -0.03930394724011421, + -0.11503724008798599, + -0.05325917899608612, + -0.05573766306042671, + 0.061050932854413986, + 0.01322693470865488, + -0.018689442425966263, + -0.08225338160991669, + -0.021302733570337296, + 0.007071794476360083, + -0.08746542781591415, + -0.09611967951059341, + 0.0475887693464756, + 0.02202177233994007, + -0.07360195368528366, + 0.09394521266222, + 0.045029256492853165, + -0.021039903163909912, + 0.01766081713140011, + 0.08728452771902084, + 0.03955714777112007, + 0.05795727297663689, + -0.0017762259813025594, + 0.010485273785889149, + -0.13317881524562836, + 0.06105481833219528, + -0.02013361267745495, + 0.09184117615222931, + 0.006147574167698622, + -0.03412655368447304, + 0.018202602863311768, + -0.03649906441569328, + -0.051081858575344086, + -0.0706726685166359, + -0.0846889391541481, + -0.06995640695095062, + -0.07171687483787537, + -0.01963483914732933, + 0.09559442102909088, + 0.06968798488378525, + 0.0009167255484499037, + -0.05366676673293114, + -0.001165699795819819, + -0.03175627440214157, + 0.006675357464700937, + -0.010124105028808117, + 0.01779809407889843, + -4.042287034871805e-33, + 0.011007653549313545, + 0.0157069880515337, + 0.015440558083355427, + 0.12410590797662735, + -0.02338465489447117, + 0.040655944496393204, + -0.08447517454624176, + -0.019676057621836662, + -0.05311299115419388, + 0.025570152327418327, + 0.08378966897726059, + 0.08805722743272781, + -0.046360477805137634, + 0.00015823387366253883, + 0.018277596682310104, + -0.03708222880959511, + -0.022617420181632042, + 0.018023371696472168, + -0.05279562249779701, + -0.0005735902232117951, + -0.04030338674783707, + 0.07839515060186386, + -0.013926349580287933, + -0.007061094045639038, + 0.005088828504085541, + -0.017763497307896614, + -0.006373918615281582, + -0.041900672018527985, + -0.0562872588634491, + 0.058080945163965225, + 0.0236151572316885, + 0.09991450607776642, + 0.014674413949251175, + 0.01201321929693222, + -0.05285422503948212, + -0.001306400983594358, + -0.10492819547653198, + -0.09607043862342834, + -0.05015680566430092, + 0.008678670041263103, + -0.08084017783403397, + -0.0298190638422966, + -0.09844035655260086, + -0.05179250240325928, + 0.003463535802438855, + 0.11438539624214172, + -0.014219013974070549, + -0.007322473451495171, + 0.03270023316144943, + 0.04384712129831314, + -0.03534867614507675, + 0.005986204836517572, + 0.03298385441303253, + -0.022074157372117043, + 0.014662357047200203, + 0.04943181946873665, + 0.02387152798473835, + 0.05527643859386444, + -0.0034610903821885586, + -0.02766292728483677, + -0.01740884967148304, + 0.06503286212682724, + 0.021542994305491447, + -0.0484471395611763, + -0.010385475121438503, + 0.08410026878118515, + -0.003673960454761982, + 0.036182597279548645, + 0.06514736264944077, + 0.07570347934961319, + -0.0059593901969492435, + 0.0068863132037222385, + 0.012366189621388912, + 0.09806908667087555, + 0.04780743643641472, + 0.010350869968533516, + -0.041647933423519135, + -0.034265171736478806, + -0.033926211297512054, + -0.06849432736635208, + -0.09845580905675888, + 0.01627863012254238, + -0.0877237319946289, + 0.05468687415122986, + 0.07293109595775604, + 0.022850198671221733, + -0.04145316407084465, + -0.027188295498490334, + 0.018938742578029633, + 0.08725851029157639, + -0.07122885435819626, + -0.01751314103603363, + -0.06874505430459976, + -0.0064511471427977085, + -0.08720284700393677, + -1.1306977304803887e-33, + 0.04021588712930679, + 0.011709768325090408, + -0.02947326935827732, + 0.02736758254468441, + -0.025803575292229652, + -0.005599231459200382, + -0.01601136103272438, + 0.03087298758327961, + 0.034060776233673096, + 0.029706530272960663, + 0.039203330874443054, + 0.0019233550410717726, + -0.041294023394584656, + -0.047152042388916016, + -0.013044933788478374, + 0.0017636882839724422, + -0.011040281504392624, + -0.05597146973013878, + -0.05211691930890083, + 0.05861446261405945, + -0.02203488163650036, + -0.006361013278365135, + -0.046897485852241516, + 0.10252297669649124, + -0.00156209000851959, + 0.03806489333510399, + -0.07823298126459122, + -0.0034698627423495054, + -0.030080873519182205, + -0.053164754062891006, + -0.03416977822780609, + -0.04306677728891373, + 0.003160854335874319, + 0.07627327740192413, + -0.07391408085823059, + 0.056783247739076614, + 0.07933908700942993, + -0.08233251422643661, + -0.02060919813811779, + 0.04587584733963013, + 0.03500276803970337, + -0.017273830249905586, + 0.05944627523422241, + 0.11930602788925171, + -0.002141476608812809, + -0.04604977369308472, + -0.06366964429616928, + -0.07719352096319199, + -0.004103122744709253, + 0.06328987330198288, + 0.0665152370929718, + -0.004346108064055443, + 0.020757244899868965, + 0.03804931044578552, + -0.025537854060530663, + 0.019358493387699127, + 0.0269792340695858, + -0.02134341187775135, + -0.06357184797525406, + 0.11138778924942017, + 0.01049018930643797, + 0.02369316853582859, + -0.034408167004585266, + 0.0595272034406662, + -0.041813820600509644, + -0.12484895437955856, + 0.022209828719496727, + -0.04624957963824272, + 0.062077514827251434, + -0.09590142220258713, + 0.05012354999780655, + -0.004438538569957018, + -0.05955525487661362, + 0.028833625838160515, + -0.02662348933517933, + -0.06619162112474442, + 0.057220276445150375, + -0.00210954574868083, + 0.024665070697665215, + 0.02251570299267769, + -0.021534549072384834, + -0.008724506013095379, + 0.006470236461609602, + 0.11175680160522461, + -0.04354669526219368, + 0.005870702676475048, + -0.02700251154601574, + -0.014286325313150883, + 0.07674508541822433, + -0.045597050338983536, + -0.03258509561419487, + 0.06429453194141388, + -0.03808286413550377, + -0.008797585032880306, + -0.12114842981100082, + -2.2638678487396646e-08, + 0.02311989851295948, + 0.023299071937799454, + -0.019448600709438324, + -0.008895746432244778, + 0.07839785516262054, + -0.061457861214876175, + -0.049735646694898605, + 0.0002701837511267513, + -0.07473283261060715, + -0.03821593150496483, + 0.06516820192337036, + 0.015870677307248116, + -0.006901595741510391, + 0.006130010820925236, + 0.04122094064950943, + -0.029601702466607094, + -0.0754103735089302, + 0.07609056681394577, + -0.04648463428020477, + -0.08557398617267609, + -0.0014356820611283183, + 0.046671975404024124, + 0.027001110836863518, + 0.03794887289404869, + 0.04239679127931595, + -0.03602941334247589, + -0.026664523407816887, + -0.020625658333301544, + 0.05557069927453995, + 0.051239073276519775, + 0.0026962957344949245, + 0.07224607467651367, + 0.06571096181869507, + 0.0032088912557810545, + -0.05379412695765495, + -0.03799274191260338, + 0.011840367689728737, + 0.038778916001319885, + -0.028287997469305992, + 0.04268638417124748, + -0.004184362478554249, + 0.02480262704193592, + -0.007691204082220793, + -0.0012705191038548946, + 0.040591973811388016, + 0.038061514496803284, + -0.03143720328807831, + -0.058950573205947876, + -0.11307812482118607, + -0.10860035568475723, + -0.0047146412543952465, + -0.009846393018960953, + 0.03582342714071274, + 0.15238626301288605, + -0.03423655778169632, + -0.022749654948711395, + 0.019196495413780212, + 0.037524111568927765, + -0.018542174249887466, + -0.03739159181714058, + 0.11722686886787415, + -0.006928342394530773, + 0.06914675980806351, + 0.002562581794336438 + ], + "envelope-bold||mail,email,send,sent,message,post,letter": [ + 0.02280753292143345, + -0.044447582215070724, + -0.016999462619423866, + 0.05446266382932663, + 0.022220822051167488, + -0.03238527104258537, + 0.03832199424505234, + -0.060660965740680695, + 0.016198599711060524, + -0.002259965054690838, + 0.02890082821249962, + 0.014867306686937809, + 0.03008381277322769, + 0.007516019511967897, + -0.012529631145298481, + 0.04358890280127525, + -0.006777465809136629, + -0.016245942562818527, + -0.04757600650191307, + 0.013812296092510223, + 0.04154861718416214, + 0.09449292719364166, + 0.059018824249506, + 0.022995827719569206, + 0.02878752164542675, + 0.0019162124954164028, + -0.01960604079067707, + -0.007970995269715786, + -0.02607034333050251, + -0.09768331050872803, + 0.017182718962430954, + -0.031808070838451385, + 0.1444421410560608, + 0.09014233201742172, + 0.02530924417078495, + 0.03898615390062332, + 0.019107095897197723, + 0.0008255604770965874, + 0.035282257944345474, + 0.006116529926657677, + -0.07055878639221191, + -0.09853404760360718, + -0.03082779049873352, + 0.04396490752696991, + -0.002666868967935443, + -0.053213514387607574, + -0.02999843843281269, + 0.014770222827792168, + -0.047010309994220734, + -0.012459256686270237, + 0.05609796196222305, + -0.11069294065237045, + -0.13299928605556488, + 0.10151588916778564, + -0.0023747875820845366, + 0.016534976661205292, + -0.08433245867490768, + -0.008489598520100117, + 0.009831621311604977, + -0.007332365959882736, + -0.03835420683026314, + 0.026414964348077774, + -0.0192527137696743, + 0.043280962854623795, + 0.01506150420755148, + 0.021533146500587463, + -0.030519729480147362, + 0.00028732093051075935, + -0.05142730847001076, + -0.033900510519742966, + 0.017973175272345543, + -0.0036858206149190664, + -0.07708122581243515, + 0.023413237184286118, + -0.02253125235438347, + 0.0054616546258330345, + 0.045890044420957565, + -0.014126066118478775, + -0.0551283024251461, + 0.02436891943216324, + -0.09875558316707611, + -0.08497537672519684, + -0.04945475235581398, + 0.07194748520851135, + 0.10653212666511536, + 0.05125456675887108, + -0.09353449940681458, + -0.05521179735660553, + -0.037010952830314636, + 0.006223409436643124, + -0.04765012860298157, + -0.041273415088653564, + 0.013164098374545574, + 0.04579530656337738, + -0.15167556703090668, + -0.0025780380237847567, + 0.047262076288461685, + -0.008947974070906639, + -0.047287292778491974, + 0.08854236453771591, + 0.05073470622301102, + 0.025821160525083542, + 0.028892269358038902, + -0.03040379285812378, + -0.00012780762335751206, + -0.043165743350982666, + -0.02679033763706684, + -0.0824923887848854, + -0.027612103149294853, + 0.008956149220466614, + -0.02651865966618061, + -0.060758378356695175, + -0.024358663707971573, + -0.10505178570747375, + 0.011185342445969582, + -0.07706820219755173, + -0.0642981305718422, + 0.049409568309783936, + 0.12821996212005615, + 0.0159982368350029, + -0.026486629620194435, + -0.04110025614500046, + -0.044471774250268936, + -0.0706305056810379, + -0.07235167920589447, + -0.0328180305659771, + 0.07620903104543686, + -9.577989500282424e-34, + 0.03415954113006592, + 0.06229469180107117, + -0.0016472188290208578, + 0.12707792222499847, + -0.004670003894716501, + 0.02576182596385479, + -0.06031995266675949, + -0.011878586374223232, + -0.0626753717660904, + -0.03233654052019119, + 0.005651678424328566, + 0.08051574975252151, + 0.06734220683574677, + 0.12848424911499023, + 0.0036752275191247463, + -0.0055852229706943035, + -0.011799387633800507, + -0.0048767151311039925, + -0.009809291921555996, + 0.02255336195230484, + -0.06425705552101135, + 0.06478336453437805, + -0.03962196037173271, + -0.001552704954519868, + 0.006536742672324181, + -0.04284416884183884, + 0.052197277545928955, + -0.052275415509939194, + -0.0773468092083931, + 0.04008562117815018, + 0.027565930038690567, + -0.010316701605916023, + 0.03777662664651871, + 0.06130572780966759, + -0.008990687318146229, + 0.06365036964416504, + -0.05566459894180298, + -0.030077839270234108, + 0.014862664975225925, + 0.04870438203215599, + -0.08481332659721375, + -0.026240864768624306, + -0.031365372240543365, + -0.005286125000566244, + 0.010404925793409348, + 0.12077057361602783, + -0.008277308195829391, + -0.010214286856353283, + 0.10147048532962799, + -0.008883538655936718, + 0.0536455400288105, + -0.04969491809606552, + 0.03835790604352951, + 0.01617308147251606, + 0.05546438321471214, + -0.028693484142422676, + 0.04544227942824364, + 0.05657799541950226, + 0.006526974029839039, + 0.02814776450395584, + 0.03142615035176277, + 0.0350152961909771, + 0.06991047412157059, + -0.03473922982811928, + 0.01087422575801611, + 0.006970943883061409, + -0.10145782679319382, + 0.007026636973023415, + 0.05501287057995796, + 0.0030934333335608244, + 0.023820579051971436, + 0.08906425535678864, + 0.007322777062654495, + 0.065726138651371, + -0.022270867601037025, + -0.024654017761349678, + 0.038141679018735886, + -0.038238175213336945, + 0.05869356170296669, + -0.018978411331772804, + -0.08825557678937912, + 0.02164401113986969, + -0.04897088184952736, + 0.02798665314912796, + 0.010605641640722752, + 0.05603448674082756, + 0.0005068724858574569, + -0.04600869491696358, + -0.034477706998586655, + 0.037175145000219345, + -0.07537487894296646, + -0.008651290088891983, + 0.007733581587672234, + -0.016333844512701035, + -0.04859757795929909, + -1.4758823812833226e-33, + -0.014393382705748081, + 0.056494198739528656, + -0.13224610686302185, + 0.04396460950374603, + -0.03159802034497261, + 0.08280769735574722, + 0.07441362738609314, + 0.03436758741736412, + 0.041373156011104584, + 0.07388956844806671, + -0.03361676260828972, + -0.008993883617222309, + -0.04359636828303337, + -0.009471889585256577, + -0.016084544360637665, + -0.013734149746596813, + 0.011806593276560307, + 0.036836106330156326, + -0.040533870458602905, + 0.005906329490244389, + -0.08669653534889221, + -0.013913272880017757, + -0.09822782129049301, + 0.0776897668838501, + 0.0044965920969843864, + 0.02628476172685623, + 0.024833690375089645, + -0.007579409517347813, + -0.038748398423194885, + -0.037242256104946136, + 0.009034665301442146, + -0.010084095411002636, + 0.04853739216923714, + 0.08663516491651535, + -0.07597462087869644, + 0.01954684592783451, + 0.049673840403556824, + 0.011760162189602852, + 0.06644517928361893, + 0.06652136147022247, + -0.013268982991576195, + 0.05731084570288658, + 0.04931573569774628, + 0.08584325015544891, + -0.03872551769018173, + -0.02913101390004158, + -0.08286141604185104, + -0.05775183066725731, + -0.0067461696453392506, + 0.06769520789384842, + 0.001642425311729312, + 0.0037919660098850727, + -0.03059404343366623, + 0.03986320272088051, + -0.05773945525288582, + 0.021376032382249832, + -0.04618152603507042, + -0.026640497148036957, + 0.04559691250324249, + 0.0046080914326012135, + -0.064644955098629, + -0.02215464413166046, + 0.046251311898231506, + 0.03363342955708504, + 0.04276847839355469, + -0.09132535010576248, + 0.03562882915139198, + -0.0884239450097084, + -0.047767817974090576, + -0.047491490840911865, + 0.07866446673870087, + -0.04642816632986069, + -0.024981440976262093, + -0.027866005897521973, + 0.05647098273038864, + -0.02616703137755394, + 0.01928866095840931, + -0.0011994935339316726, + -0.09621631354093552, + 0.014462731778621674, + -0.04055509343743324, + -0.01720983348786831, + -0.03622042387723923, + 0.03880367800593376, + -0.07599420845508575, + -0.004012903664261103, + -0.03193444013595581, + -0.06032421812415123, + 0.02741231396794319, + -0.007991534657776356, + 0.025892606005072594, + 0.07863224297761917, + 0.022130897268652916, + -0.038897812366485596, + -0.0746627226471901, + -2.1148919060465232e-08, + -0.00571351358667016, + -0.078935906291008, + -0.0037559918127954006, + -0.012121126055717468, + 0.02567404694855213, + 0.033113740384578705, + 0.039923712611198425, + -0.06297101825475693, + -0.017069434747099876, + -0.0726952776312828, + 0.06177578121423721, + 0.030791496858000755, + -0.1266307681798935, + -0.07437644898891449, + 0.056208472698926926, + -0.012433944270014763, + -0.04580794274806976, + -0.0043786740861833096, + -0.04963428154587746, + -0.060206957161426544, + 0.015532280318439007, + 0.054459504783153534, + -0.0026659539435058832, + -0.037530139088630676, + 0.047915831208229065, + 0.012301027774810791, + -0.06099361926317215, + 0.07903774082660675, + 0.04670654609799385, + 0.04090839624404907, + 0.01935524493455887, + 0.02098899334669113, + -0.0037725474685430527, + -0.04812619835138321, + -0.11737793684005737, + 0.001901988172903657, + 0.04208183288574219, + -0.07328003644943237, + -0.006221403833478689, + 0.14479470252990723, + 0.06941590458154678, + -0.08378973603248596, + -0.0690009817481041, + -0.025801043957471848, + 0.04307093098759651, + 0.03425043448805809, + 0.02679440751671791, + -0.0742558166384697, + -0.036552853882312775, + -0.07245739549398422, + -0.002434392459690571, + -0.011818651109933853, + 0.04645049571990967, + 0.09821736812591553, + -0.068672776222229, + -0.024221792817115784, + 0.02341785468161106, + -0.0014698498416692019, + 0.074892558157444, + 0.016564952209591866, + 0.0941070169210434, + 0.03317029029130936, + 0.021984616294503212, + 0.004193230997771025 + ], + "envelope-open-bold||mail,email,send,sent,message,read,post,letter": [ + 0.03914762660861015, + -0.04952433332800865, + -0.029407814145088196, + 0.06633555889129639, + 0.012122956104576588, + -0.03712395951151848, + 0.018829774111509323, + -0.04414473846554756, + 0.022850383073091507, + 0.006260340567678213, + 0.02870595082640648, + 0.041067492216825485, + 0.007220841478556395, + 0.010073751211166382, + 0.004473552107810974, + 0.05724376440048218, + -0.01064799353480339, + -0.025251222774386406, + -0.03365897759795189, + 0.014601903036236763, + 0.04048098996281624, + 0.09946412593126297, + 0.05588245764374733, + -0.008301660418510437, + -0.00818048045039177, + -0.0030546148773282766, + -0.03794664517045021, + -0.012113608419895172, + -0.030804801732301712, + -0.10150175541639328, + 0.033804234117269516, + -0.04613994061946869, + 0.1471702605485916, + 0.08012408763170242, + 0.04867817461490631, + 0.04426877573132515, + 0.0306035615503788, + 0.007238151039928198, + 0.008777141571044922, + -0.011408678255975246, + -0.043046094477176666, + -0.09366637468338013, + -0.03971688076853752, + 0.06585192680358887, + -0.0013285636669024825, + -0.06179296225309372, + -0.040363237261772156, + -0.0016648810124024749, + -0.02710157074034214, + 0.00468751834705472, + 0.028831345960497856, + -0.11529563367366791, + -0.13354918360710144, + 0.08638953417539597, + 0.00455315550789237, + 0.020525583997368813, + -0.07669073343276978, + -0.029351739212870598, + -0.009030915796756744, + -0.02274796925485134, + -0.04206215962767601, + 0.027255767956376076, + -0.03709764778614044, + 0.04640908166766167, + 0.006829308345913887, + 0.01895521581172943, + -0.04220228269696236, + 0.011513682082295418, + -0.04567211493849754, + -0.07653979957103729, + 0.006967362482100725, + -0.0007100236834958196, + -0.07013311982154846, + 0.014153774827718735, + -0.027026163414120674, + 0.0015531191602349281, + 0.021040350198745728, + -0.019246350973844528, + -0.0540553480386734, + 0.008001006208360195, + -0.06357839703559875, + -0.08595794439315796, + -0.05505923926830292, + 0.07329440861940384, + 0.0908845067024231, + 0.08718746900558472, + -0.0797910988330841, + -0.05163981020450592, + -0.01033884845674038, + 0.031438153237104416, + -0.040339093655347824, + -0.05107204243540764, + -0.01096306461840868, + 0.06346841901540756, + -0.16110755503177643, + -0.024167627096176147, + 0.0381612628698349, + -0.011661593802273273, + -0.03490035980939865, + 0.09624195098876953, + 0.05248856917023659, + 0.035025350749492645, + 0.03688209131360054, + -0.022744322195649147, + -0.010378831997513771, + -0.050629228353500366, + -0.006440931931138039, + -0.07498756051063538, + -0.038736362010240555, + 0.005311973392963409, + -0.005702931433916092, + -0.08326758444309235, + -0.0005805001710541546, + -0.10937011241912842, + -0.0018507533241063356, + -0.07178928703069687, + -0.07712811231613159, + 0.047445859760046005, + 0.13572610914707184, + 0.03898586705327034, + -0.024611465632915497, + -0.03165550157427788, + -0.07209710031747818, + -0.07728374749422073, + -0.06814736872911453, + -0.028456902131438255, + 0.07858159393072128, + -1.653188439031587e-33, + 0.017071779817342758, + 0.06156492605805397, + -0.0006468335632234812, + 0.1195441260933876, + 0.0030164949130266905, + 0.015777843073010445, + -0.06293681263923645, + -0.010866869240999222, + -0.0947316512465477, + -0.028689052909612656, + 0.024425681680440903, + 0.07630806416273117, + 0.05089462175965309, + 0.1258164346218109, + 0.009090223349630833, + -0.009260701015591621, + -0.014527623541653156, + 0.0350068025290966, + 0.005974717438220978, + 0.007695077918469906, + -0.06418783962726593, + 0.062142591923475266, + -0.035556770861148834, + 4.358739170129411e-05, + 0.006178634241223335, + -0.038640670478343964, + 0.058179475367069244, + -0.06105541065335274, + -0.07349392771720886, + 0.035869061946868896, + 0.04671231284737587, + -0.01494608074426651, + 0.02386140264570713, + 0.08099143207073212, + -0.025753868743777275, + 0.04801057279109955, + -0.05508709326386452, + -0.03891995921730995, + 0.019774848595261574, + 0.022037675604224205, + -0.10297580063343048, + -0.0357368141412735, + -0.014205743558704853, + 0.0015619304031133652, + -0.0009621972567401826, + 0.09979531913995743, + -0.030270947143435478, + 0.0015904036117717624, + 0.08981189131736755, + -0.015583476051688194, + 0.0554698221385479, + -0.050173163414001465, + 0.006776084192097187, + 0.016514090821146965, + 0.04070392996072769, + -0.03802259638905525, + 0.04249311983585358, + 0.06093060225248337, + 0.013159547932446003, + 0.038499459624290466, + 0.02897801250219345, + 0.06604395061731339, + 0.06254000961780548, + -0.048131123185157776, + 0.016615258529782295, + 0.009014989249408245, + -0.07401112467050552, + -0.009104803204536438, + 0.051076970994472504, + 0.006790218874812126, + -0.0035316983703523874, + 0.045005105435848236, + 0.0010226265294477344, + 0.07537961006164551, + -0.024290379136800766, + 0.002006927505135536, + 0.0391363687813282, + -0.044669900089502335, + 0.09825064241886139, + -0.028772955760359764, + -0.04135604947805405, + 0.005536012351512909, + -0.029684215784072876, + 0.043386466801166534, + -0.02779133804142475, + 0.04619256407022476, + -0.015000488609075546, + -0.03492436930537224, + -0.03153640404343605, + 0.03316263481974602, + -0.09956235438585281, + -0.0037470536772161722, + 0.002146703889593482, + -0.003553390968590975, + -0.04579415172338486, + -4.683166279433628e-34, + -0.009020350873470306, + 0.04037093743681908, + -0.12271466851234436, + 0.04215487465262413, + -0.03168467432260513, + 0.08725495636463165, + 0.060928843915462494, + 0.030666541308164597, + 0.064325712621212, + 0.0788005068898201, + -0.010059958323836327, + 0.006087420973926783, + -0.0015386093873530626, + 0.011428170837461948, + -0.016027387231588364, + -0.03775801509618759, + 0.02115173451602459, + 0.04592455178499222, + -0.05577167868614197, + 0.02849617227911949, + -0.08903107047080994, + -0.022961784154176712, + -0.10018867254257202, + 0.06275951862335205, + 0.0289058368653059, + 0.027808206155896187, + 0.018201924860477448, + -0.005510189104825258, + -0.030881574377417564, + -0.042862046509981155, + -0.016310177743434906, + -0.01005480159074068, + 0.042869873344898224, + 0.07891125977039337, + -0.06411174684762955, + 0.01977277174592018, + 0.06449971348047256, + 0.016465654596686363, + 0.0617256723344326, + 0.07743459939956665, + 0.0004020016058348119, + 0.06336274743080139, + 0.03127916902303696, + 0.0597299300134182, + -0.05083875730633736, + -0.012741640210151672, + -0.10761461406946182, + -0.043228473514318466, + -0.01754155382514, + 0.057541899383068085, + -0.006025796756148338, + 0.009679091162979603, + -0.018440965563058853, + -0.00992603786289692, + -0.042285412549972534, + 0.05277207866311073, + -0.021448442712426186, + -0.03695250302553177, + 0.04443703964352608, + -0.022175660356879234, + -0.04156344383955002, + -0.02654501236975193, + 0.029628725722432137, + 0.03916049376130104, + 0.054011449217796326, + -0.09661097079515457, + 0.05244378373026848, + -0.07649294286966324, + -0.07081393897533417, + -0.06455143541097641, + 0.07113724946975708, + -0.06421927362680435, + -0.00658060796558857, + -0.051757968962192535, + 0.07201292365789413, + -0.017745522782206535, + 0.025839369744062424, + -0.031465522944927216, + -0.0988718792796135, + 0.03341924771666527, + -0.023645441979169846, + -0.018780754879117012, + -0.021226633340120316, + 0.027749568223953247, + -0.037342168390750885, + -0.00783727690577507, + -0.019853433594107628, + -0.05114740505814552, + 0.03346358239650726, + 0.020144419744610786, + 0.0015664570964872837, + 0.09105776995420456, + 0.05471654236316681, + -0.018031300976872444, + -0.07725392282009125, + -2.161286438706611e-08, + -0.022808758541941643, + -0.1105787456035614, + 0.02641068771481514, + -0.0014694316778331995, + 0.024798868224024773, + 0.03505954518914223, + 0.031128816306591034, + -0.04968961328268051, + -0.007119668647646904, + -0.06767317652702332, + 0.06443970650434494, + 0.035551462322473526, + -0.1295461654663086, + -0.07403744012117386, + 0.03238320350646973, + 0.02158620022237301, + -0.031083088368177414, + -0.019364144653081894, + -0.04253392294049263, + -0.0633857473731041, + 0.03473110496997833, + 0.061697423458099365, + 0.021399730816483498, + -0.020953049883246422, + 0.029747266322374344, + 0.005399794317781925, + -0.08155711740255356, + 0.06555096805095673, + 0.051413394510746, + 0.04386581480503082, + 0.013805660419166088, + 0.022228432819247246, + 0.012529349885880947, + -0.038197096437215805, + -0.1254885047674179, + 0.04066184163093567, + 0.03417511284351349, + -0.039678823202848434, + -0.018728721886873245, + 0.14279434084892273, + 0.0925552174448967, + -0.09216353297233582, + -0.06055401265621185, + -0.022985152900218964, + 0.0230569951236248, + 0.024106962606310844, + 0.03732459992170334, + -0.06318658590316772, + -0.03221901133656502, + -0.07003387063741684, + -0.010010060854256153, + -0.007966934703290462, + 0.05095372349023819, + 0.06696221977472305, + -0.07564859837293625, + -0.007910932414233685, + 0.037248436361551285, + -0.010226319544017315, + 0.06314422190189362, + 0.019727466627955437, + 0.0669008195400238, + 0.04003990814089775, + 0.02336270362138748, + 0.023192375898361206 + ], + "envelope-simple-bold||mail,email,send,sent,message,post,letter": [ + 0.031164206564426422, + -0.03343110531568527, + -0.004193603992462158, + 0.06152869760990143, + 0.024159474298357964, + -0.03697879612445831, + 0.0246075801551342, + -0.042060572654008865, + -0.00413154112175107, + 0.006419908720999956, + 0.02766312099993229, + 0.004315224476158619, + 0.021683786064386368, + 0.012098556384444237, + -0.00036292034201323986, + 0.03826110437512398, + -0.013175134547054768, + -0.028212690725922585, + -0.045494746416807175, + 0.02256191149353981, + 0.025433454662561417, + 0.08066573739051819, + 0.04283555597066879, + 0.024555204436182976, + 0.020769286900758743, + 0.0008310783887282014, + -0.02527918480336666, + 0.011067831888794899, + -0.011373922228813171, + -0.09654267132282257, + 0.03369562327861786, + -0.026376744732260704, + 0.1511753648519516, + 0.08817297220230103, + 0.02370970882475376, + 0.03757057711482048, + 0.03270266577601433, + 0.009790871292352676, + 0.02710060030221939, + -0.006795738823711872, + -0.08294358104467392, + -0.09303176403045654, + -0.0325680747628212, + 0.04983065649867058, + -0.017183274030685425, + -0.06053562089800835, + -0.02766425348818302, + 0.006810000166296959, + -0.04460475593805313, + -0.02667803131043911, + 0.07076513767242432, + -0.10816015303134918, + -0.13074037432670593, + 0.08917916566133499, + 0.0002837256761267781, + 0.022929266095161438, + -0.10227297246456146, + 0.0016323874006047845, + 0.01536676473915577, + -0.01668406091630459, + -0.020620282739400864, + 0.007840603590011597, + -0.015243771485984325, + 0.03336193040013313, + 0.004116685129702091, + 0.010301412083208561, + -0.03186345100402832, + 0.00032761876354925334, + -0.05166793242096901, + -0.036443211138248444, + 0.01015179231762886, + -0.01587725058197975, + -0.09187265485525131, + 0.03196711465716362, + -0.017072847113013268, + -0.005646174773573875, + 0.03599182143807411, + 0.0017980611883103848, + -0.07054740935564041, + 0.036764610558748245, + -0.11078695207834244, + -0.09005142003297806, + -0.06951233744621277, + 0.09214769303798676, + 0.10152211040258408, + 0.04765434190630913, + -0.09003525227308273, + -0.04509897902607918, + -0.023227408528327942, + 0.004207477439194918, + -0.038527075201272964, + -0.021166134625673294, + 0.028298597782850266, + 0.047770362347364426, + -0.13817369937896729, + -0.007410800084471703, + 0.05131843313574791, + -0.010382589884102345, + -0.08352977782487869, + 0.08838695287704468, + 0.045995596796274185, + 0.04003813862800598, + 0.04576795548200607, + -0.04724448546767235, + 0.0032679156865924597, + -0.04343974590301514, + -0.022234367206692696, + -0.09742081165313721, + -0.0313154011964798, + -0.0032974015921354294, + -0.03211352601647377, + -0.06252032518386841, + -0.017504578456282616, + -0.09614188224077225, + 0.017599565908312798, + -0.07121322304010391, + -0.07236231863498688, + 0.0414094403386116, + 0.12965552508831024, + 0.036081019788980484, + -0.0231280829757452, + -0.04525585472583771, + -0.05963100120425224, + -0.06545564532279968, + -0.07004006206989288, + -0.020538756623864174, + 0.07829661667346954, + -2.200995622479651e-33, + 0.041905347257852554, + 0.07475268095731735, + -0.004430366680026054, + 0.13299962878227234, + -0.003148329444229603, + 0.014748990535736084, + -0.058127060532569885, + -0.003482873784378171, + -0.05519762262701988, + -0.03249302878975868, + 0.028158513829112053, + 0.061791446059942245, + 0.07299630343914032, + 0.12625764310359955, + 0.002555688377469778, + -0.00800247397273779, + -0.005395027343183756, + -0.00034949826658703387, + -0.0003037925052922219, + 0.004178489092737436, + -0.07408864051103592, + 0.09297127276659012, + -0.04161255061626434, + -0.019232580438256264, + 0.00745765957981348, + -0.03132909908890724, + 0.061840321868658066, + -0.05599559471011162, + -0.06710318475961685, + 0.03446602448821068, + 0.030666381120681763, + -0.009767112322151661, + 0.03471317142248154, + 0.07834380865097046, + -0.01483534462749958, + 0.05894724652171135, + -0.03872097656130791, + -0.029400503262877464, + 0.007847696542739868, + 0.02885662205517292, + -0.09784822165966034, + -0.02009928785264492, + -0.02432309463620186, + -0.01793595217168331, + 0.018626974895596504, + 0.1234627217054367, + -0.013249633833765984, + -0.017565026879310608, + 0.11333917081356049, + -0.01818252168595791, + 0.04815881326794624, + -0.04263537749648094, + 0.0301960501819849, + 0.023808171972632408, + 0.05882905423641205, + -0.013234253972768784, + 0.03683535382151604, + 0.06335829943418503, + 0.004639511927962303, + 0.030692975968122482, + 0.019751805812120438, + 0.04365898668766022, + 0.05064765363931656, + -0.024140167981386185, + 0.007000934332609177, + 0.017730534076690674, + -0.10043888539075851, + 0.006185839418321848, + 0.05195878818631172, + 0.010315349325537682, + 0.017159441486001015, + 0.08508617430925369, + -0.0007251471979543567, + 0.049161262810230255, + 0.001205394510179758, + -0.01329075638204813, + 0.06070764735341072, + -0.062026530504226685, + 0.0553617849946022, + -0.016054736450314522, + -0.07676252722740173, + 0.028676381334662437, + -0.04967357963323593, + 0.04083793982863426, + -0.008150067180395126, + 0.04772113263607025, + 0.00020288978703320026, + -0.018312597647309303, + -0.04061252251267433, + 0.03887280821800232, + -0.08538424968719482, + -0.0048042237758636475, + 0.006399426143616438, + -0.007370153442025185, + -0.040645577013492584, + -1.917671293012118e-34, + -0.01564549282193184, + 0.05107690393924713, + -0.1402602195739746, + 0.04394170641899109, + -0.029521087184548378, + 0.09560147672891617, + 0.08147718012332916, + 0.027421819046139717, + 0.04742750525474548, + 0.07348959147930145, + -0.04027920588850975, + -0.010717908851802349, + -0.05822470039129257, + -0.0013344873441383243, + -0.009063574485480785, + -0.009271962568163872, + -0.004878987558186054, + 0.04448704048991203, + -0.03219174966216087, + 0.005762095097452402, + -0.07025540620088577, + 0.0028314206283539534, + -0.11494635045528412, + 0.05800967290997505, + 0.005473486613482237, + 0.031032154336571693, + 0.0022551286965608597, + 0.018666554242372513, + -0.02725745551288128, + -0.03644706681370735, + 0.002654123120009899, + -0.011962853372097015, + 0.052824169397354126, + 0.07004066556692123, + -0.07100048661231995, + 0.022112948819994926, + 0.027523238211870193, + 0.01726648397743702, + 0.06766632944345474, + 0.05519783869385719, + -0.02360294573009014, + 0.053803663700819016, + 0.057598479092121124, + 0.071700818836689, + -0.029591497033834457, + -0.03443887457251549, + -0.06949246674776077, + -0.07195676118135452, + -0.017811978235840797, + 0.059590768069028854, + 0.001574038527905941, + -0.011999043636023998, + -0.03663472831249237, + 0.04076436161994934, + -0.04677105322480202, + 0.025021467357873917, + -0.02817481756210327, + -0.02475821226835251, + 0.0475730337202549, + 0.007656672969460487, + -0.07071884721517563, + -0.019995365291833878, + 0.03619367256760597, + 0.036968592554330826, + 0.04167875647544861, + -0.08590859174728394, + 0.030028603971004486, + -0.09704770892858505, + -0.055921770632267, + -0.05193651467561722, + 0.06284361332654953, + -0.04326391965150833, + -0.01289189513772726, + -0.046351514756679535, + 0.06956187635660172, + -0.027194054797291756, + 0.01058106403797865, + -0.00389547785744071, + -0.09536716341972351, + -0.0009727406431920826, + -0.016164740547537804, + -0.010286095552146435, + -0.04438396915793419, + 0.0151967853307724, + -0.06431294232606888, + -0.007335915230214596, + -0.026234116405248642, + -0.06050805747509003, + 0.0232106763869524, + 0.0008914575446397066, + 0.012272740714251995, + 0.0959024578332901, + 0.043317683041095734, + -0.017593292519450188, + -0.07965551316738129, + -2.1207256395427976e-08, + -0.006460219155997038, + -0.10200289636850357, + -0.0024214955046772957, + -0.008085263893008232, + 0.03494423255324364, + 0.03546299785375595, + 0.03936690464615822, + -0.057959169149398804, + -0.008449876680970192, + -0.05576286464929581, + 0.05104822665452957, + 0.015806466341018677, + -0.12546087801456451, + -0.0469115786254406, + 0.02820195071399212, + 0.0038379861507564783, + -0.05257812514901161, + -0.004573115613311529, + -0.048308562487363815, + -0.04807327687740326, + 0.022669745609164238, + 0.045962706208229065, + -0.011933345347642899, + -0.03586394712328911, + 0.0431922972202301, + 0.013357826508581638, + -0.05231867730617523, + 0.0926298126578331, + 0.05198825150728226, + 0.042206719517707825, + 0.014038760215044022, + 0.022742800414562225, + 0.0033013438805937767, + -0.031238853931427002, + -0.12849582731723785, + 0.012383576482534409, + 0.031847771257162094, + -0.07404422760009766, + -0.018998553976416588, + 0.12629082798957825, + 0.07807290554046631, + -0.07272873818874359, + -0.07177682220935822, + -0.030313588678836823, + 0.04830773174762726, + 0.028337838128209114, + 0.025339191779494286, + -0.08251941204071045, + -0.03500472009181976, + -0.0765579342842102, + 0.002079581841826439, + -0.00907971803098917, + 0.05087931081652641, + 0.08388174325227737, + -0.07248388975858688, + -0.014354322105646133, + 0.03680315241217613, + 0.0036532189697027206, + 0.06230345368385315, + 0.024349603801965714, + 0.08914047479629517, + 0.0690404623746872, + 0.011764898896217346, + 0.010273191146552563 + ], + "envelope-simple-open-bold||mail,email,send,sent,message,read,post,letter": [ + 0.045861463993787766, + -0.043417882174253464, + -0.01754782535135746, + 0.062245387583971024, + 0.00910195428878069, + -0.03885375335812569, + 0.00832967460155487, + -0.027589770033955574, + 0.003774251090362668, + 0.013275370933115482, + 0.03194386884570122, + 0.026301275938749313, + 0.01185798179358244, + 0.010289105586707592, + 0.008418909274041653, + 0.04855267331004143, + -0.012137675657868385, + -0.03536464646458626, + -0.034631211310625076, + 0.02151888608932495, + 0.031230024993419647, + 0.08384878933429718, + 0.03873356059193611, + -0.005331732332706451, + -0.0050996094942092896, + 0.0019060595659539104, + -0.040410663932561874, + 0.0028148784767836332, + -0.013857736252248287, + -0.09629202634096146, + 0.04100113362073898, + -0.042335305362939835, + 0.15095295011997223, + 0.07983024418354034, + 0.035541120916604996, + 0.03833168372511864, + 0.03832591325044632, + 0.008363618515431881, + 0.006033795420080423, + -0.013321594335138798, + -0.0666164979338646, + -0.08917868137359619, + -0.0396713949739933, + 0.06519468873739243, + -0.005746749229729176, + -0.059369321912527084, + -0.03462042286992073, + -0.0028651757165789604, + -0.03809899464249611, + -0.015627384185791016, + 0.04278134927153587, + -0.10778872668743134, + -0.12962894141674042, + 0.08299797028303146, + 0.006983558181673288, + 0.02043871209025383, + -0.09545610845088959, + -0.01764431595802307, + -0.004143381491303444, + -0.02591165155172348, + -0.0342370830476284, + 0.012129462324082851, + -0.03221070393919945, + 0.04295956343412399, + -0.0006515532149933279, + 0.010195348411798477, + -0.042845867574214935, + 0.0019733216613531113, + -0.038325291126966476, + -0.07624244689941406, + -0.00455944100394845, + -0.008266529068350792, + -0.0829610750079155, + 0.03246939927339554, + -0.025083862245082855, + -0.011059851385653019, + 0.02005801722407341, + -0.005610903725028038, + -0.059884097427129745, + 0.0214292723685503, + -0.0805036723613739, + -0.08323347568511963, + -0.06383848935365677, + 0.08716792613267899, + 0.084710992872715, + 0.07437168061733246, + -0.07792182266712189, + -0.039477184414863586, + -0.0032156375236809254, + 0.03000633791089058, + -0.03142308071255684, + -0.03368908166885376, + 0.005719632841646671, + 0.05904014781117439, + -0.14668051898479462, + -0.022783609107136726, + 0.045048344880342484, + -0.018158748745918274, + -0.06309761852025986, + 0.09468435496091843, + 0.04853459447622299, + 0.03878943994641304, + 0.0524405874311924, + -0.04049251973628998, + -0.007450108882039785, + -0.05105999484658241, + -0.006827721372246742, + -0.0896749198436737, + -0.03857748955488205, + -0.0037706776056438684, + -0.011551573872566223, + -0.07992870360612869, + -0.0007976998458616436, + -0.10646417737007141, + 0.011522611603140831, + -0.0704767033457756, + -0.08210793137550354, + 0.04478749260306358, + 0.1352260559797287, + 0.05685131624341011, + -0.02463788166642189, + -0.03219427540898323, + -0.07266227900981903, + -0.07190676778554916, + -0.07115582376718521, + -0.023180002346634865, + 0.06999535113573074, + -2.1504638754026857e-33, + 0.026633361354470253, + 0.07354624569416046, + -0.0026404615491628647, + 0.12752915918827057, + -0.004865183494985104, + 0.007702063303440809, + -0.06244773045182228, + -0.00391452806070447, + -0.07825767248868942, + -0.024340948089957237, + 0.04170384630560875, + 0.07397321611642838, + 0.053918007761240005, + 0.13298530876636505, + 0.015117830596864223, + -0.0043716104701161385, + -0.012253912165760994, + 0.02765495888888836, + 0.012097320519387722, + -0.00510283512994647, + -0.06886859238147736, + 0.08582020550966263, + -0.027658548206090927, + -0.0067816851660609245, + 0.013338970020413399, + -0.03492247313261032, + 0.06410598009824753, + -0.0660407617688179, + -0.07339897751808167, + 0.029636522755026817, + 0.04405009374022484, + -0.015073643997311592, + 0.027240153402090073, + 0.08478856086730957, + -0.02132422849535942, + 0.04826503247022629, + -0.03191646188497543, + -0.04183673486113548, + 0.013268901966512203, + 0.008071457967162132, + -0.11318674683570862, + -0.031158119440078735, + -0.004563701804727316, + -0.006925279274582863, + 0.011997983790934086, + 0.10242950171232224, + -0.03790430724620819, + -0.004504609387367964, + 0.09838612377643585, + -0.019183890894055367, + 0.05070815607905388, + -0.04852321371436119, + 0.008276526816189289, + 0.02259104512631893, + 0.0451749749481678, + -0.018018847331404686, + 0.03587311878800392, + 0.06372972577810287, + -0.0005076052038930357, + 0.04958375543355942, + 0.019496899098157883, + 0.07089091092348099, + 0.0517306849360466, + -0.041915468871593475, + 0.01647099480032921, + 0.016889650374650955, + -0.08100561052560806, + -0.016254477202892303, + 0.05101914703845978, + 0.015494303777813911, + -0.00452938349917531, + 0.05005656182765961, + -0.005155406892299652, + 0.05766348913311958, + -0.008214982226490974, + 0.007868957705795765, + 0.05700052157044411, + -0.06690613925457001, + 0.08218491077423096, + -0.020570408552885056, + -0.045288968831300735, + 0.018515659496188164, + -0.02937273308634758, + 0.04726336896419525, + -0.04874848201870918, + 0.043373797088861465, + -0.00986104179173708, + -0.01938147097826004, + -0.03833354264497757, + 0.02742135338485241, + -0.09677675366401672, + -0.0009259533835574985, + 0.002873593708500266, + -0.00019350908405613154, + -0.04065155237913132, + 6.720286854354743e-35, + -0.0159126166254282, + 0.03991079330444336, + -0.12774915993213654, + 0.047264933586120605, + -0.031432144343853, + 0.09810318797826767, + 0.06682723015546799, + 0.030625995248556137, + 0.0663209855556488, + 0.07406216114759445, + -0.024326007813215256, + 0.0013383164769038558, + -0.017637457698583603, + 0.011090736836194992, + -0.009074421599507332, + -0.03163015469908714, + 0.004739087074995041, + 0.04480867460370064, + -0.0430421344935894, + 0.031136929988861084, + -0.07708197832107544, + -0.008968720212578773, + -0.11526334285736084, + 0.04899168014526367, + 0.025031261146068573, + 0.035131268203258514, + -0.0042099375277757645, + 0.008851177990436554, + -0.019742919132113457, + -0.04238627478480339, + -0.012344400398433208, + -0.01775754801928997, + 0.050201740115880966, + 0.06264682114124298, + -0.06616618484258652, + 0.02290775254368782, + 0.04604541137814522, + 0.014556815847754478, + 0.06067320331931114, + 0.06062743812799454, + -0.01021104771643877, + 0.0635070651769638, + 0.04707061126828194, + 0.04823575168848038, + -0.03835403919219971, + -0.023053104057908058, + -0.09928577393293381, + -0.05371089652180672, + -0.026691274717450142, + 0.044937532395124435, + -0.007141514215618372, + -0.0024562375620007515, + -0.02970189042389393, + -0.0007801774772815406, + -0.03560830280184746, + 0.0471622571349144, + -0.015357826836407185, + -0.03552788868546486, + 0.04965919256210327, + -0.01619642972946167, + -0.05278311297297478, + -0.027610797435045242, + 0.02170855738222599, + 0.05054463446140289, + 0.04124324396252632, + -0.09299951046705246, + 0.0408366434276104, + -0.08833589404821396, + -0.08078214526176453, + -0.06685185432434082, + 0.05982488766312599, + -0.0580623634159565, + -0.0040069809183478355, + -0.06764967739582062, + 0.07939624041318893, + -0.01298891194164753, + 0.010831022635102272, + -0.028834782540798187, + -0.10203056782484055, + 0.019033348187804222, + -0.013355565257370472, + -0.013219020329415798, + -0.026536142453551292, + 0.021136632189154625, + -0.037010833621025085, + -0.010973566211760044, + -0.02178247459232807, + -0.06387259811162949, + 0.03279662877321243, + 0.02441626414656639, + -0.0012302967952564359, + 0.10462526232004166, + 0.06264805793762207, + 0.001794619602151215, + -0.0762932151556015, + -2.199855586582089e-08, + -0.01871054619550705, + -0.12363901734352112, + 0.019643228501081467, + -0.00014732823183294386, + 0.033012695610523224, + 0.041696980595588684, + 0.039396949112415314, + -0.04434044659137726, + -0.004278203006833792, + -0.04922765493392944, + 0.06137523427605629, + 0.028822802007198334, + -0.1321188509464264, + -0.05426403507590294, + 0.020034881308674812, + 0.030407780781388283, + -0.03467788174748421, + -0.011484182439744473, + -0.03905900567770004, + -0.04867436736822128, + 0.04075879603624344, + 0.052540916949510574, + 0.003803079016506672, + -0.022908752784132957, + 0.03319497033953667, + 0.01033730898052454, + -0.06892865896224976, + 0.0829993486404419, + 0.049539800733327866, + 0.0441998727619648, + 0.014260590076446533, + 0.024920741096138954, + 0.01358285453170538, + -0.028781507164239883, + -0.13192503154277802, + 0.04949972406029701, + 0.028815381228923798, + -0.043754931539297104, + -0.026867173612117767, + 0.1293904036283493, + 0.09591129422187805, + -0.07985394448041916, + -0.06463097780942917, + -0.028374923393130302, + 0.03353618457913399, + 0.01910620555281639, + 0.03218095377087593, + -0.07271968573331833, + -0.027395667508244514, + -0.07540592551231384, + -0.005750596523284912, + -0.003913909662514925, + 0.05213366076350212, + 0.05494686961174011, + -0.07876989990472794, + 0.0029677224811166525, + 0.04066206142306328, + -0.0007516260957345366, + 0.05592339113354683, + 0.027356281876564026, + 0.06923720985651016, + 0.07156240195035934, + 0.015136784873902798, + 0.023025134578347206 + ], + "equalizer-bold||music,audio,meter,volume,spectrum,eq,deezer": [ + 0.016953244805336, + -0.008940247818827629, + -0.02548912912607193, + -0.019462384283542633, + -0.020563453435897827, + 0.0112871453166008, + 0.07111126184463501, + -0.039051298052072525, + -0.054914724081754684, + -0.00620358157902956, + -0.010109751485288143, + -0.08712141215801239, + 0.058502886444330215, + -0.08130157738924026, + 0.02147832326591015, + 0.08403370529413223, + 0.03838334605097771, + 0.03550031781196594, + -0.06276256591081619, + -0.021239541471004486, + 0.005480363965034485, + 0.0530114471912384, + -0.03654085472226143, + 0.06303653866052628, + -0.030904989689588547, + 0.04959267005324364, + -0.018862180411815643, + 0.07890653610229492, + 0.05204535275697708, + -0.13345585763454437, + 0.06582009792327881, + -0.019871704280376434, + 0.12105138599872589, + -0.005868705455213785, + -0.05389781296253204, + -0.08397218585014343, + 0.0082064438611269, + -0.04684680327773094, + -0.027812408283352852, + -0.003944974858313799, + 0.03717751428484917, + -0.01803448796272278, + 0.0069286637008190155, + -0.026005307212471962, + -0.0948566198348999, + -0.08323851972818375, + -0.054280854761600494, + -0.030254732817411423, + -0.023084251210093498, + -0.050646696239709854, + 0.034217413514852524, + -0.05258263275027275, + -0.08327527344226837, + 0.0702151507139206, + -0.013793239369988441, + 0.046341363340616226, + -0.041445061564445496, + 0.04077710211277008, + 0.04874477908015251, + -0.02722616121172905, + -0.0642816573381424, + -0.010578049346804619, + 0.015366202220320702, + 0.028976265341043472, + 0.029828423634171486, + -0.013372177258133888, + 0.03718460723757744, + 0.09256480634212494, + -0.009797660633921623, + 0.020016241818666458, + 0.0052996291778981686, + -0.0224166177213192, + 0.011874537914991379, + 0.008114042691886425, + 0.036548081785440445, + 0.027960695326328278, + 0.03984891623258591, + -0.012537711299955845, + -0.0009950426174327731, + 0.06353653967380524, + -0.08972135931253433, + -0.06426803767681122, + -0.0648830384016037, + -0.048503465950489044, + 0.07917921245098114, + 0.023030003532767296, + -0.0822761207818985, + -0.0639858990907669, + -0.04660775512456894, + -0.07351081818342209, + -0.06159199774265289, + -0.041967231780290604, + -0.027960121631622314, + 0.03609645739197731, + -0.01366011518985033, + 0.0500984787940979, + 0.010961219668388367, + -0.045582737773656845, + 0.057132963091135025, + 0.07615955919027328, + 0.03310510516166687, + 0.015734821557998657, + -0.010094422847032547, + 0.026814281940460205, + -0.05905556306242943, + -0.10822698473930359, + 0.023921210318803787, + 0.10692308098077774, + -0.0097051952034235, + -0.06732601672410965, + 0.055577125400304794, + -0.12877874076366425, + -0.03042600303888321, + 0.040066517889499664, + 0.08107219636440277, + 0.0074058836326003075, + 0.05924738943576813, + 0.03531375527381897, + 0.08810219913721085, + -0.06843899935483932, + -0.007517465390264988, + -0.043128013610839844, + -0.030533822253346443, + 0.0038221748545765877, + 0.10746100544929504, + -0.008203499019145966, + -0.030732614919543266, + -1.0242957470992977e-33, + 0.027859237045049667, + -0.019168861210346222, + 0.019023604691028595, + 0.009007187560200691, + 0.058180440217256546, + 0.01050796639174223, + -0.060339946299791336, + 0.09514597058296204, + -0.044046781957149506, + 0.05021758750081062, + 0.06115753948688507, + 0.13800182938575745, + -0.04753533750772476, + 0.043403781950473785, + -0.030773654580116272, + -0.09275557100772858, + -0.029924625530838966, + 0.045094575732946396, + -0.08140115439891815, + -0.047834161669015884, + -0.0777214914560318, + 0.007702070754021406, + -0.03263608366250992, + 0.02584710344672203, + -0.002915332093834877, + 0.019517013803124428, + 0.03349278122186661, + 0.050092391669750214, + 0.03547191992402077, + -0.010861245915293694, + -0.013383186422288418, + -0.0029681215528398752, + 0.06096992269158363, + 0.010472540743649006, + -0.0030034396331757307, + 0.042117320001125336, + -0.013481366448104382, + 0.07834555953741074, + 0.042868997901678085, + -0.1133185476064682, + -0.10295765101909637, + -0.020658958703279495, + -0.013397200964391232, + -0.09169624745845795, + -0.005389869678765535, + 0.034218594431877136, + -0.043591033667325974, + -0.05794157087802887, + 0.09975822269916534, + 0.014648200012743473, + -0.004083547275513411, + -0.025614483281970024, + 0.022997034713625908, + 0.047425277531147, + 0.024106597527861595, + 0.010324829258024693, + 0.004986151121556759, + 0.13313937187194824, + 0.05746407061815262, + 0.03432953730225563, + -0.009427427314221859, + 0.003272890578955412, + 0.040878601372241974, + -0.08141756057739258, + 0.026647744700312614, + 0.08375364542007446, + 0.0443546399474144, + -0.04806278273463249, + 0.06650156527757645, + -0.023686086758971214, + 0.0009327997686341405, + 0.00451026763767004, + 0.028086405247449875, + 0.09237208962440491, + 0.007879658602178097, + 0.017070883885025978, + -0.007360765710473061, + 0.06430067867040634, + 0.028826303780078888, + -0.03327367827296257, + -0.09779223054647446, + 0.0484507754445076, + -0.07916095107793808, + 0.06408529728651047, + -0.036398716270923615, + 0.022038059309124947, + 0.0009996399749070406, + -0.10423528403043747, + 0.014522903598845005, + -0.012789459899067879, + -0.08656203746795654, + 0.07357849925756454, + -0.045423734933137894, + -0.06461606174707413, + -0.08034934103488922, + -5.3505077385423834e-34, + 0.046462710946798325, + 0.04795315861701965, + 0.00280729029327631, + 0.09533101320266724, + 0.04979521408677101, + 0.0266315545886755, + 0.06953627616167068, + 0.04145064949989319, + 0.08846249431371689, + 0.013479143381118774, + 0.12387003004550934, + -0.035820189863443375, + -0.02738490141928196, + -0.05889216810464859, + -0.06585465371608734, + 0.023282041773200035, + 0.005699559114873409, + 0.009355505928397179, + 0.0473124124109745, + 0.03731964901089668, + -0.05142873898148537, + 0.014826836995780468, + 0.002496803877875209, + 0.030392153188586235, + -0.04903896898031235, + 0.010523947887122631, + -0.024684377014636993, + 0.011782652698457241, + 0.028372405096888542, + -0.03606060892343521, + 0.007459571119397879, + -0.08003092557191849, + -0.0016315605025738478, + -0.12237398326396942, + -2.051234150712844e-05, + -0.06087730824947357, + 0.09226232767105103, + 0.04937782883644104, + -0.011144121177494526, + 0.011152136139571667, + -0.03265250846743584, + 0.012746550142765045, + 0.004546862095594406, + 0.029836494475603104, + 0.02565518021583557, + 0.021244900301098824, + 0.033077266067266464, + -0.004233631305396557, + -0.028566204011440277, + -0.012558945454657078, + 0.09706985950469971, + -0.01820978708565235, + 0.036139000207185745, + 0.04549829661846161, + -0.08200030773878098, + -0.06428254395723343, + 0.06648184359073639, + -0.03729284554719925, + -0.0600837841629982, + 0.07258281111717224, + -0.012879383750259876, + 0.03239338845014572, + -0.05579163506627083, + -0.05855518579483032, + -0.044821690768003464, + -0.012028464116156101, + 0.052589938044548035, + -0.03576521575450897, + 0.0071543180383741856, + 0.01729159988462925, + 0.032724540680646896, + -0.07259180396795273, + -0.0090553043410182, + -0.008351416327059269, + 0.0009464197792112827, + -0.0633058100938797, + -0.047085151076316833, + -0.06919482350349426, + -0.0116191441193223, + 0.030704330652952194, + -0.0050080036744475365, + -0.011642774567008018, + -0.003752136370167136, + -0.02481398731470108, + -0.019175510853528976, + 0.06918126344680786, + 0.06466542184352875, + -0.01809256710112095, + -0.014051120728254318, + 0.018044473603367805, + -0.03335700184106827, + 0.08196514844894409, + -0.045458950102329254, + 0.049605678766965866, + -0.05963553860783577, + -2.1869235311555713e-08, + 0.006064911838620901, + 0.0015214120503515005, + -0.057927150279283524, + -0.035265836864709854, + -0.02147517167031765, + -0.06806682050228119, + 0.04484916478395462, + -0.10628250986337662, + -0.0439869686961174, + -0.005986861884593964, + 0.03947797045111656, + -0.05536435917019844, + -0.0492117777466774, + 0.009432705119252205, + -0.0031330890487879515, + -0.020280728116631508, + -0.06052214652299881, + 0.0639679953455925, + -0.030246740207076073, + -0.05102437734603882, + -0.005658069625496864, + 0.05395566672086716, + 0.06805170327425003, + -0.1079738438129425, + 0.09004835039377213, + 0.05983427166938782, + -0.02492915838956833, + -0.024973902851343155, + 0.05038614198565483, + 0.01787782646715641, + 0.027147037908434868, + 0.06589016318321228, + 0.04293929040431976, + -0.007300718687474728, + -0.05127369239926338, + -0.010724402964115143, + -0.017555877566337585, + -0.02970198355615139, + -0.08054482191801071, + 0.0962623581290245, + -0.02982506901025772, + -0.011250369250774384, + -0.021994559094309807, + 0.012966789305210114, + 0.030585499480366707, + -0.018596099689602852, + 0.08699439465999603, + 0.004760088864713907, + -0.05744615197181702, + -0.05773249268531799, + -0.03543342649936676, + 0.030528295785188675, + 0.013897751457989216, + -0.03618964925408363, + -0.022050824016332626, + -0.07089568674564362, + -0.024909062311053276, + 0.07463876157999039, + -0.0384010411798954, + 0.04940732195973396, + 0.1276746690273285, + -0.05229754000902176, + 0.03611169010400772, + 0.027003858238458633 + ], + "equals-bold||=,equality,equivalent,equivalence,mathematics,arithmetic,calculator": [ + -0.03388511762022972, + 0.011494947597384453, + -0.005175624508410692, + -0.0010140222730115056, + -0.05108519271016121, + -0.09594371914863586, + 0.012922005727887154, + -0.029325004667043686, + -0.03098241798579693, + 0.005279941018670797, + 0.01798323355615139, + -0.08220826834440231, + 0.08325754851102829, + -0.04911547154188156, + 0.011324494145810604, + 0.017728732898831367, + -0.03242231905460358, + -0.0007093495223671198, + -0.04327087104320526, + -0.03687269985675812, + 0.034016773104667664, + -0.03588895499706268, + -0.0361117348074913, + 0.12664824724197388, + 0.011697317473590374, + 0.04765816032886505, + 0.02762177772819996, + -0.04509242624044418, + 0.09066829830408096, + -0.024091364815831184, + -0.048019975423812866, + -0.03364241123199463, + 0.09498134255409241, + -0.001623871154151857, + -0.03247300162911415, + 0.012134836986660957, + 0.03612441197037697, + -0.04546896740794182, + -0.0026417456101626158, + 0.03360547870397568, + -0.09686289727687836, + -0.09020522236824036, + 0.015266581438481808, + 0.037395328283309937, + -0.027737025171518326, + 0.05464226007461548, + -0.04187384620308876, + 0.0077401380985975266, + 0.013572299852967262, + -0.07668358832597733, + -0.005281190853565931, + -0.0038342189509421587, + -0.1573820263147354, + -0.033566344529390335, + 0.062343064695596695, + 0.039632849395275116, + -0.031791482120752335, + 0.06285243481397629, + 0.028486590832471848, + -0.05566733330488205, + -0.03389200568199158, + -0.01623494178056717, + 0.06397400796413422, + 0.02812635898590088, + 0.03638457879424095, + 0.028603101149201393, + 0.02449950762093067, + 0.018151989206671715, + 5.024484926252626e-05, + 0.05638790875673294, + -0.012598465196788311, + 0.02779916487634182, + 0.011828580871224403, + 0.032502323389053345, + -0.07432474195957184, + 0.0018473690142855048, + 0.090627022087574, + 0.010889489203691483, + -0.020657865330576897, + 0.06648804247379303, + -0.17051802575588226, + -0.1052396148443222, + -0.04176264628767967, + -0.0010391325922682881, + 0.04606521502137184, + -0.016510626301169395, + -0.015168219804763794, + -0.041800759732723236, + 0.05990594998002052, + -0.027238808572292328, + -0.016075242310762405, + 0.03147700056433678, + 0.03509293496608734, + 0.06671900302171707, + -0.0029607326723635197, + 0.021440764889121056, + 0.02391555719077587, + 0.058232855051755905, + -0.01611991599202156, + 0.06108516454696655, + 0.04222441092133522, + 0.11402834951877594, + 0.010869416408240795, + 0.004706079605966806, + 0.006274964660406113, + -0.059269893914461136, + 0.024966225028038025, + -0.05257803574204445, + 0.024034658446907997, + -0.07544993609189987, + 0.021888740360736847, + -0.07932917773723602, + 0.036259494721889496, + 0.039456915110349655, + 0.028149984776973724, + -0.03774162009358406, + 0.019459478557109833, + -0.0032614402007311583, + 0.053447622805833817, + -0.017811665311455727, + 0.026271039620041847, + 0.008749363012611866, + 0.019695566967129707, + -0.01617377996444702, + 0.04223284497857094, + -0.04665490612387657, + -0.01635958068072796, + -2.398255145820147e-33, + 0.020182667300105095, + 0.03822022303938866, + 0.012884211726486683, + 0.05922587960958481, + -0.03703910484910011, + -0.041522011160850525, + -0.026199467480182648, + 0.023338686674833298, + -0.0640595480799675, + 0.06479600816965103, + 0.052431415766477585, + 0.15644343197345734, + -0.0004998400690965354, + 0.05734426528215408, + 0.07366559654474258, + 0.005559361074119806, + 0.026550764217972755, + -0.044406402856111526, + -0.09840355813503265, + -0.024613628163933754, + 0.0033419274259358644, + -0.02951819635927677, + -0.09876566380262375, + 0.059022583067417145, + -0.01884777843952179, + 0.007313488516956568, + 0.044871143996715546, + 0.01993563026189804, + 0.00935851689428091, + -0.026249460875988007, + 0.016263047233223915, + 0.007935656234622002, + 0.032359447330236435, + 0.0515914186835289, + -0.006923168431967497, + -0.03543393686413765, + 0.031273405998945236, + -0.014790728688240051, + 0.02207573689520359, + -0.11933651566505432, + -0.0988667905330658, + -0.043262653052806854, + 0.08275917917490005, + -0.0747864618897438, + 0.1309986710548401, + 0.01674298197031021, + -0.08739004284143448, + -0.0033817789517343044, + 0.11388169974088669, + -0.0027923937886953354, + -0.016202645376324654, + 0.007782826200127602, + 0.05067596584558487, + 0.005160197615623474, + -0.030747219920158386, + -0.049301035702228546, + 0.012317941524088383, + 0.11801190674304962, + 0.006266019307076931, + 0.06304103136062622, + -0.01848696358501911, + -0.02067534439265728, + 0.021164311096072197, + -0.055109940469264984, + -0.11237799376249313, + 0.07054559141397476, + -0.08774620294570923, + -0.010584775358438492, + 0.10654432326555252, + 0.044243231415748596, + -0.02740062214434147, + 0.039883676916360855, + -0.025253593921661377, + 0.04678022861480713, + 0.058657411485910416, + -0.010036655701696873, + -0.009163186885416508, + -0.05616286024451256, + 0.013554665260016918, + -0.028714362531900406, + -0.10283129662275314, + 0.03279367461800575, + -0.021769460290670395, + 0.009726927615702152, + 0.019141847267746925, + -0.026901008561253548, + -0.001513502444140613, + -0.06261096894741058, + 0.02928970754146576, + -0.019809242337942123, + -0.028390182182192802, + 0.004580953624099493, + 0.014971563592553139, + -0.04512203857302666, + -0.053000349551439285, + -9.342726244579844e-34, + -0.006603396497666836, + 0.0409400649368763, + -0.061263952404260635, + 0.06926025450229645, + -0.014684020541608334, + 0.0564592219889164, + 0.08449894189834595, + -0.09827553480863571, + 0.047490302473306656, + -0.04339485988020897, + 0.039266157895326614, + -0.02761802263557911, + -0.0598723329603672, + 0.00811934657394886, + -0.053253669291734695, + 0.023116925731301308, + 0.0035080446396023035, + 0.004473099950700998, + -0.047228239476680756, + 0.04063911363482475, + -0.03098258562386036, + 0.07086528837680817, + -0.012711012735962868, + -0.0018337987130507827, + 0.0345190204679966, + 0.013133188709616661, + 0.008332851342856884, + -0.018569497391581535, + 0.0313161239027977, + -0.024147899821400642, + 0.0398840606212616, + -0.07597791403532028, + 0.032137300819158554, + -0.031610943377017975, + -0.08236443996429443, + -0.03587181493639946, + 0.15464824438095093, + 0.0038696425035595894, + 0.014730253256857395, + -0.020072955638170242, + -0.005956740118563175, + -0.08319489657878876, + 0.04057713598012924, + 0.0618547685444355, + 0.00683849211782217, + -0.038974180817604065, + 0.033070724457502365, + -0.059057559818029404, + 0.0083920294418931, + -0.013429856859147549, + 0.08855686336755753, + -0.05912012234330177, + -0.013731221668422222, + 0.03584112599492073, + 0.01091420091688633, + -0.04597707465291023, + -0.004609758034348488, + -0.00857365969568491, + -0.04776013270020485, + 0.08550024032592773, + -0.014242053963243961, + 0.025024516507983208, + 0.026078399270772934, + 0.09851863235235214, + -0.09423572570085526, + -0.048585664480924606, + 0.01603761315345764, + 0.061670344322919846, + -0.006528673693537712, + -0.052487581968307495, + 0.01805841363966465, + -0.037334512919187546, + -0.009827335365116596, + -0.07215747237205505, + -0.04137222841382027, + -0.029213637113571167, + 0.08003132790327072, + 0.02808969095349312, + 0.007283528335392475, + 0.007203117944300175, + 0.036653947085142136, + -0.021091042086482048, + -0.029204363003373146, + -0.02300054207444191, + -0.14806270599365234, + 0.024130696430802345, + 0.09074727445840836, + 0.011173694394528866, + -0.02746850997209549, + 0.026058735325932503, + -0.08011460304260254, + 0.0765455961227417, + -0.07191337645053864, + -0.05636551231145859, + -0.02547728456556797, + -2.1528144600324595e-08, + -0.020441433414816856, + 0.023665646091103554, + -0.0814027339220047, + -0.023457659408450127, + 0.025377079844474792, + -0.008913696743547916, + -0.03168364241719246, + -0.10785141587257385, + -0.09587724506855011, + -0.013455957174301147, + 0.027526650577783585, + 0.05701804533600807, + -0.049449436366558075, + -0.028672751039266586, + 0.011253871023654938, + -0.004014202859252691, + -0.021157503128051758, + -0.032166820019483566, + -0.0210519228130579, + 0.03282777592539787, + 0.02286773920059204, + -0.017079198732972145, + 0.015367698855698109, + -0.03905859962105751, + 0.02572392113506794, + 0.025291956961154938, + -0.09283776581287384, + 0.052889298647642136, + 0.0567706897854805, + 0.05276084318757057, + 0.0459267720580101, + 0.035157009959220886, + 0.0563044510781765, + -0.11885904520750046, + -0.027204332873225212, + -0.03313584625720978, + 0.012670332565903664, + 0.02127821557223797, + 0.011415153741836548, + 0.09224572032690048, + -0.04106706380844116, + -0.0245667714625597, + -0.030520014464855194, + -0.01940038613975048, + 0.10856011509895325, + 0.024602467194199562, + 0.03472036495804787, + -0.03635041043162346, + -0.09206338226795197, + -0.10476064682006836, + -0.04247776418924332, + 0.04590841010212898, + 0.021712522953748703, + 0.012516960501670837, + -0.04547632485628128, + -0.06506164371967316, + -0.03585265204310417, + 0.05952524393796921, + 0.03222681209445, + 0.022128313779830933, + 0.12538932263851166, + 0.0019202163675799966, + 0.08370501548051834, + -0.03332997485995293 + ], + "eraser-bold||write,writing,editing,undo,deleted": [ + -0.05574869364500046, + -0.026523035019636154, + 0.011529361829161644, + 0.10802889615297318, + 0.020003454759716988, + 0.03179453685879707, + 0.009947428479790688, + -0.09700596332550049, + 0.04789933189749718, + -0.0027668247930705547, + 0.03449589014053345, + 0.09942778199911118, + 0.01460072211921215, + -0.0740022286772728, + -0.061363112181425095, + 0.033414583653211594, + -0.08466265350580215, + 0.02360311895608902, + -0.020402973517775536, + -0.06501580029726028, + 0.0158374160528183, + 0.08004715293645859, + 0.047587234526872635, + 0.046473629772663116, + 0.062434032559394836, + -0.013998582027852535, + 0.0546577014029026, + -0.018574785441160202, + 0.002988849300891161, + -0.08091118931770325, + 0.00709331501275301, + -0.01575617492198944, + 0.11945368349552155, + 0.019026018679142, + 0.041944634169340134, + 0.025179127231240273, + -0.059782933443784714, + 0.008366020396351814, + 0.02884422056376934, + -0.01101875863969326, + -0.012705441564321518, + -0.09063393622636795, + -0.05548441782593727, + 0.003058739472180605, + -0.02630157396197319, + -0.06500605493783951, + -0.07008350640535355, + -0.04987209290266037, + -0.006288483738899231, + 0.0048631345853209496, + 0.08164365589618683, + -0.05061629042029381, + -0.07508770376443863, + -0.02690722607076168, + 0.022413993254303932, + -0.03570239618420601, + -0.020848507061600685, + 0.004662739112973213, + -0.03207751363515854, + -0.02232642099261284, + -0.02833634428679943, + 0.05291450396180153, + 0.03150203078985214, + -0.0023724131751805544, + 0.040015414357185364, + 0.055563878268003464, + 0.026278860867023468, + 0.023504722863435745, + -0.03149886056780815, + 0.01164651196449995, + 0.008140794932842255, + -0.015218796208500862, + -0.028673121705651283, + -0.024787599220871925, + -0.08614619076251984, + 0.01931772194802761, + 0.007622463628649712, + 0.036589812487363815, + -0.08391513675451279, + 0.03363354504108429, + -0.0354250892996788, + -0.08204371482133865, + -0.023321913555264473, + 0.021028749644756317, + 0.0302208811044693, + 0.0671691745519638, + -0.03447930887341499, + -0.08666069060564041, + 0.04701391980051994, + 0.008366234600543976, + -0.021505538374185562, + -0.023913487792015076, + 0.0415470190346241, + 0.007526481989771128, + -0.11050324141979218, + -0.052516017109155655, + 0.10638949275016785, + 0.07385441660881042, + -0.02988559938967228, + 0.07048862427473068, + 0.016507742926478386, + 0.0302415881305933, + 0.00262578297406435, + 0.023129524663090706, + -0.039935946464538574, + 0.014688021503388882, + 0.015663864091038704, + -0.0435374416410923, + -0.05380754917860031, + 0.0010884895455092192, + 0.039031852036714554, + -0.07316537201404572, + -0.020657317712903023, + 0.02037053555250168, + 0.020665017887949944, + -0.025096997618675232, + -0.015339343808591366, + 0.0035239853896200657, + 0.06226744130253792, + 0.10408604145050049, + 0.021599939092993736, + -0.04521302506327629, + -0.03843976929783821, + -0.016883857548236847, + -0.05635197460651398, + -0.031910646706819534, + 0.08160659670829773, + -1.842184237085802e-33, + 0.06747458130121231, + 0.04426988214254379, + -0.10214507579803467, + 0.05508902296423912, + 0.08432149142026901, + 0.056022558361291885, + -0.03641274943947792, + -0.006463161204010248, + -0.08906864374876022, + -0.02404380962252617, + 0.11515560001134872, + 0.016182048246264458, + 0.0073552182875573635, + 0.1131131649017334, + 0.033188916742801666, + 0.0005308851250447333, + 0.05850280448794365, + -0.0038378899917006493, + -0.0818949043750763, + 0.005604526028037071, + 0.013483208604156971, + 0.11907236278057098, + -0.04180168733000755, + -0.020634155720472336, + -0.02485005371272564, + -0.01846545748412609, + 0.006847735028713942, + -0.07241053879261017, + -0.040152326226234436, + 0.004022007342427969, + -0.04134301468729973, + 0.013297832570970058, + 0.03526824712753296, + 0.0206241924315691, + -0.0533582903444767, + 0.048046890646219254, + -0.03169668838381767, + -0.055139150470495224, + 0.028431415557861328, + 0.01014817412942648, + -0.040590476244688034, + -0.03283794969320297, + -0.03243950754404068, + -0.1242680624127388, + 0.02197660133242607, + 0.03939266875386238, + -0.008110415190458298, + 0.05196946859359741, + 0.022128334268927574, + 0.0025237309746444225, + 0.033152464777231216, + 0.052346598356962204, + -0.0007696401444263756, + -0.05606207996606827, + 0.02026517689228058, + -0.01072749588638544, + 0.02898097224533558, + 0.007382486015558243, + 0.036878976970911026, + 0.051902368664741516, + 0.08458522707223892, + 0.12584668397903442, + 0.021696988493204117, + -0.0067705754190683365, + -0.0624367855489254, + 0.06595964729785919, + 0.0024068565107882023, + -0.0014717401936650276, + 0.04307718947529793, + -0.09079696238040924, + -0.020678874105215073, + 0.044328827410936356, + -0.011684191413223743, + 0.07053052634000778, + -0.018311744555830956, + -0.0033931881189346313, + -0.015536362305283546, + -0.0830288678407669, + 0.04815689101815224, + -0.050141844898462296, + -0.04075441136956215, + -0.024513624608516693, + -0.074886254966259, + 0.02811821736395359, + -0.013627354055643082, + -0.029583966359496117, + 0.0250654686242342, + -0.026862189173698425, + 0.005705903749912977, + 0.045981794595718384, + -0.00466560572385788, + -0.04304216802120209, + 0.01402839832007885, + -0.07914771139621735, + -0.05465862900018692, + -5.37945290939894e-34, + 0.07449734956026077, + 0.010350257158279419, + -0.03574176877737045, + 0.06282913684844971, + -0.09711208194494247, + -0.010315131396055222, + -0.024721186608076096, + 0.08447280526161194, + 0.029339499771595, + -0.04178851097822189, + 0.024863962084054947, + 0.03257379308342934, + -0.04180440306663513, + 0.007874193601310253, + -0.00706091383472085, + 0.04052199050784111, + -0.02015882171690464, + 0.03123970329761505, + -0.12425919622182846, + -0.000804621318820864, + -0.008011093363165855, + -0.02972186543047428, + 0.0030329131986945868, + 0.08424332737922668, + -0.013533784076571465, + -0.02431519515812397, + -0.00466558150947094, + 0.02126677893102169, + -0.030416639521718025, + 0.024997632950544357, + -0.024194320663809776, + 0.0010364054469391704, + 0.023812206462025642, + -0.02742975950241089, + -0.0017566714668646455, + -0.06034976989030838, + 0.024759264662861824, + -0.0274538341909647, + 0.00015554124547634274, + -0.023683084174990654, + 0.04891633614897728, + 0.04441172257065773, + -0.04348863661289215, + 0.0650414377450943, + -0.03346387669444084, + 0.02507619373500347, + -0.11381661891937256, + 0.001513273804448545, + 0.07451371848583221, + 0.04093259572982788, + 0.042445987462997437, + -0.05953439325094223, + -0.010794318281114101, + -0.03258911892771721, + -0.0500713549554348, + -0.03446906805038452, + 0.08648481220006943, + -0.0786934494972229, + 0.012892832979559898, + 0.042218346148729324, + -0.02866179868578911, + 0.0700504332780838, + -0.03331609070301056, + 0.041849661618471146, + 0.04135029762983322, + -0.11484009027481079, + 0.07799448817968369, + 0.0008329679840244353, + -0.10214246064424515, + 0.0006898765568621457, + 0.04054177179932594, + 0.017810901626944542, + 0.004356482066214085, + 0.024654604494571686, + 0.07577688246965408, + -0.004269596189260483, + -0.021632783114910126, + -0.01429324597120285, + -0.08097715675830841, + 0.0007397628505714238, + -0.001970094395801425, + -0.016429604962468147, + -0.044813163578510284, + -5.826164851896465e-05, + -0.03501131385564804, + 0.008642090484499931, + -0.06711511313915253, + 0.009053003042936325, + -0.012318520806729794, + -0.031937457621097565, + -0.03345423936843872, + -0.012778868898749352, + 0.056291669607162476, + -0.005278102122247219, + -0.12163256853818893, + -1.8328647044540958e-08, + -0.03080839291214943, + -0.03541596978902817, + -0.027161970734596252, + -0.005367630161345005, + 0.02412225306034088, + -0.09289296716451645, + 0.01113816350698471, + -0.007301502861082554, + -0.027655713260173798, + -0.06045019254088402, + 0.07865481078624725, + 0.011986478231847286, + -0.1348074972629547, + -0.08006660640239716, + 0.033849719911813736, + 0.0035964923445135355, + 0.025164276361465454, + 0.029729411005973816, + -0.021070322021842003, + -0.0353914313018322, + -0.05468866974115372, + 0.06274997442960739, + -0.008435347117483616, + -0.007676055654883385, + 0.034007735550403595, + 0.029355455189943314, + -0.04816700890660286, + 0.08648558706045151, + 0.05602439492940903, + 0.06490218639373779, + 0.0988135114312172, + 0.03147464245557785, + 0.12914834916591644, + 0.06318794935941696, + -0.029771389439702034, + -0.02379886992275715, + 0.0394999198615551, + 0.020919203758239746, + -0.00406190799549222, + 0.16489797830581665, + -0.013268228620290756, + -0.02132432349026203, + -0.04918866604566574, + -0.02475586347281933, + -0.03165913373231888, + -0.06768347322940826, + 0.006266336888074875, + -0.09613107889890671, + -0.05406635254621506, + -0.11228813976049423, + -0.03781464695930481, + 0.03453363478183746, + -0.014918843284249306, + 0.11255520582199097, + -0.023968230932950974, + -0.025068767368793488, + 0.05818312615156174, + 0.14617790281772614, + -0.03269681707024574, + -0.025616195052862167, + 0.1796354353427887, + 0.011838629841804504, + 0.018219156190752983, + 0.0008777343318797648 + ], + "escalator-down-bold||stairs": [ + -0.037112198770046234, + 0.00241382815875113, + 0.004362466745078564, + 0.015947530046105385, + -0.02598121576011181, + -0.02717258594930172, + -0.031290262937545776, + -0.03094206005334854, + 0.03022899106144905, + 0.00037949695251882076, + -0.016299819573760033, + 0.050758108496665955, + 0.06849388778209686, + -0.033404745161533356, + 0.014499999582767487, + 0.0934688150882721, + 0.027654221281409264, + 0.10254503786563873, + -0.019750120118260384, + -0.006676145829260349, + 0.0041192700155079365, + -0.010743727907538414, + 0.011273491196334362, + 0.056584682315588, + -0.05027545988559723, + -0.04357941076159477, + 0.08966180682182312, + 0.057146817445755005, + 0.008241725154221058, + -0.07986369729042053, + -0.02730182185769081, + -0.08400910347700119, + -0.013787326402962208, + 0.03917788714170456, + 0.007324530743062496, + 0.00286497687920928, + 0.03536251559853554, + -0.023277347907423973, + 0.018980232998728752, + 0.04089179262518883, + 0.0386398583650589, + -0.03439560905098915, + 0.004738213494420052, + 0.004868860822170973, + -0.08469894528388977, + 0.012463425286114216, + -0.049235470592975616, + -0.08002515137195587, + -0.03000991977751255, + 0.02105916105210781, + 0.04951087385416031, + -0.005292206536978483, + -0.038964610546827316, + 0.07518256455659866, + -0.019665401428937912, + 0.06606009602546692, + -0.03204910084605217, + -0.025760989636182785, + 0.05973285064101219, + -0.015415378846228123, + -0.008514105342328548, + -0.01470137108117342, + 0.02532104030251503, + -0.009825700893998146, + -0.017085857689380646, + 0.01951095089316368, + 0.017467904835939407, + -0.0034161866642534733, + -0.017300236970186234, + 0.05745255574584007, + 0.07968813925981522, + -0.029447508975863457, + 0.06428632140159607, + -0.0008701597689650953, + -0.09318274259567261, + 0.0072357733733952045, + 0.03722401335835457, + 0.05087164789438248, + -0.037342771887779236, + -0.00419202633202076, + -0.055538613349199295, + -0.04203391820192337, + -0.05524576082825661, + 0.005052210297435522, + 0.053708214312791824, + 0.04087262600660324, + -0.10231294482946396, + -0.05072315037250519, + -0.02867853082716465, + 0.043359193950891495, + -0.016255615279078484, + -0.056191056966781616, + 0.0037470648530870676, + 0.04187467694282532, + -0.031220296397805214, + -0.026011331006884575, + -0.02560264989733696, + -0.058836568146944046, + -0.05445583909749985, + 0.04656838998198509, + -0.05707627162337303, + 0.05413451045751572, + 0.11932535469532013, + 0.0548432357609272, + -0.048531144857406616, + -0.05261756107211113, + 0.055388662964105606, + 0.014857071451842785, + -0.03265200927853584, + 0.03273557499051094, + -0.027197260409593582, + -0.11472878605127335, + 0.13003122806549072, + 0.008702940307557583, + -0.03606204316020012, + 0.0005241381004452705, + -0.0323135107755661, + -0.015499239787459373, + 0.010858643800020218, + -0.007233760319650173, + 0.09211374819278717, + -0.031152604147791862, + -0.014749408699572086, + -0.054401762783527374, + -0.00027013395447283983, + -0.0037346689496189356, + 0.0651048794388771, + -2.1909265950098967e-33, + 0.06690896302461624, + 0.0572100393474102, + -0.01554733607918024, + 0.07170726358890533, + 0.09752336889505386, + 0.035821087658405304, + -0.10479254275560379, + -0.0203149002045393, + -0.033511169254779816, + 0.05168852582573891, + 0.028403211385011673, + 0.051059573888778687, + -0.021143712103366852, + 0.03423686325550079, + 0.028356121852993965, + -0.06801187992095947, + 0.035622671246528625, + -0.012316891923546791, + -0.10844488441944122, + -0.0632157251238823, + -0.012941243126988411, + 0.008274884894490242, + -0.04790285602211952, + -0.024775700643658638, + -0.05949223041534424, + -0.0439242385327816, + 0.0315437950193882, + -0.009902724996209145, + -0.113206647336483, + 0.020849168300628662, + 0.008700028993189335, + -0.005873021204024553, + -0.003308019367977977, + 0.046857498586177826, + -0.0007464065565727651, + 0.01795845478773117, + -0.04182838648557663, + 0.00700122257694602, + -0.007523958571255207, + 0.02711966633796692, + -0.06732476502656937, + -0.07169266045093536, + 0.04105997458100319, + 0.0024311374872922897, + 0.0012937347637489438, + 0.08782360702753067, + 0.018343182280659676, + -0.07283230870962143, + 0.016251446679234505, + 0.0364655926823616, + -0.03362037241458893, + 0.02730555459856987, + -0.00779596995562315, + -0.00709371967241168, + 0.07125452905893326, + 0.0007616234943270683, + -0.016246521845459938, + 0.06939229369163513, + 0.002884038956835866, + -0.03842002525925636, + -0.006274826359003782, + 0.028769033029675484, + 0.04180729016661644, + 0.006840396206825972, + -0.004164380487054586, + -0.015867117792367935, + -0.061545033007860184, + 0.029976241290569305, + 0.11829707771539688, + -0.0022632088512182236, + 0.0019898400641977787, + 0.024466967210173607, + 0.060482464730739594, + 0.04312234744429588, + -0.0013958674389868975, + 0.04417382553219795, + -0.04078279435634613, + -0.07664612680673599, + 0.1464938223361969, + -0.14255459606647491, + -0.11517290025949478, + -0.014169364236295223, + -0.05732881650328636, + 0.09772796928882599, + 0.1471072882413864, + 0.0639001652598381, + -0.04759333282709122, + -0.025017380714416504, + -0.05055627599358559, + 0.08201849460601807, + -0.060042671859264374, + -0.0017221375601366162, + -0.0006241169176064432, + -0.01815836690366268, + -0.05924162268638611, + 6.082291542837644e-34, + 0.05043928325176239, + 0.0629519447684288, + -0.006084194406867027, + 0.00025105755776166916, + -0.03726460412144661, + 0.046109579503536224, + 0.017090341076254845, + 0.003891967935487628, + 0.05899205431342125, + 0.0978633314371109, + 0.052989985793828964, + 0.03920922055840492, + -0.03860894590616226, + -0.07594077289104462, + 0.1324663907289505, + 0.00497722951695323, + 0.07605449110269547, + 0.0007132467580959201, + 0.021778346970677376, + 0.00022941305360291153, + 0.018595071509480476, + -0.06170542165637016, + -0.17434412240982056, + 0.05746011808514595, + -0.0005227943183854222, + 0.008716035634279251, + 0.050721339881420135, + 0.037880174815654755, + 0.004471246153116226, + -0.02368108369410038, + -0.06175578385591507, + -0.04102638363838196, + 0.036104340106248856, + 0.03650614991784096, + -0.04966292530298233, + 0.001999742817133665, + 0.02093232423067093, + -0.014486783184111118, + 0.007089388091117144, + -0.04402346909046173, + 0.02890319935977459, + 0.06146429106593132, + 0.07219506055116653, + 0.01861477456986904, + -0.032857686281204224, + -0.015067513100802898, + -0.004433219321072102, + -0.0322527140378952, + -0.03613315522670746, + -0.01893320493400097, + -0.03762994706630707, + -0.018909428268671036, + -0.05183806270360947, + 0.034664005041122437, + -0.038789909332990646, + -0.02860756777226925, + -9.721029346110299e-05, + 0.004333884455263615, + -0.1039694994688034, + 0.05759325623512268, + 0.036653485149145126, + 0.09372648596763611, + 0.001456284779123962, + 0.01640835590660572, + 0.02207178995013237, + -0.029440592974424362, + 0.013847136870026588, + -0.042426031082868576, + -0.03337564691901207, + -0.004229681100696325, + 0.050276581197977066, + -0.0020986224990338087, + 0.04453543573617935, + -0.030532335862517357, + 0.08202148228883743, + -0.15162833034992218, + 0.029631730169057846, + 0.02663678489625454, + 0.017887042835354805, + -0.0592222586274147, + 0.0003160733904223889, + -0.06628295034170151, + -0.04712357372045517, + -0.01657053641974926, + -0.08410871028900146, + 0.014249390922486782, + -0.06553519517183304, + 0.09803573042154312, + 0.031873177736997604, + -0.011022577062249184, + -0.01153725665062666, + 0.013188419863581657, + 0.015622630715370178, + -0.04184567928314209, + -0.043647103011608124, + -1.591486942231768e-08, + -0.03908918425440788, + 0.0061459969729185104, + -0.03423996642231941, + -0.09588851779699326, + 0.04540504887700081, + -0.008071422576904297, + -0.012259961105883121, + 0.04013675078749657, + -0.04789688438177109, + -0.028576133772730827, + 0.03524777665734291, + 0.04622258245944977, + -0.01478488091379404, + 0.03764186054468155, + 0.032349903136491776, + 0.03602774813771248, + -0.12104859203100204, + 0.06593503057956696, + -0.05473973974585533, + -0.017913850024342537, + -0.026344019919633865, + 0.03063451126217842, + 0.014450263231992722, + 0.05496471747756004, + 0.010739429853856564, + 0.02065962366759777, + -0.12443240731954575, + 0.0029507505241781473, + 0.021981775760650635, + 0.08734395354986191, + 0.030475735664367676, + 0.09709473699331284, + 0.02367744781076908, + 0.011468104086816311, + -0.10761134326457977, + 0.007152642123401165, + 0.04675985872745514, + -0.010432844050228596, + 0.046459466218948364, + 0.08673287183046341, + -0.07440708577632904, + -0.077662393450737, + -0.03232702612876892, + 0.011055631563067436, + -0.010509602725505829, + 0.00013034624862484634, + 0.03138510137796402, + -0.018713371828198433, + -0.13340145349502563, + -0.07849438488483429, + -0.028028454631567, + 0.004236306995153427, + 0.023182151839137077, + 0.09287796169519424, + -0.006735118106007576, + -0.08237339556217194, + 0.0005673850537277758, + 0.010765673592686653, + -0.05776055157184601, + 0.022097907960414886, + 0.16401317715644836, + 0.019352376461029053, + 0.030457910150289536, + -0.030952850356698036 + ], + "escalator-up-bold||stairs": [ + -0.04590018838644028, + 0.00762301217764616, + -0.011376467533409595, + 0.011042585596442223, + -0.015566828660666943, + -0.012602587230503559, + -0.037336934357881546, + -0.03519881144165993, + 0.028928998857736588, + 0.012440888211131096, + -0.008196850307285786, + 0.06279517710208893, + 0.061408549547195435, + -0.03815237805247307, + 0.01687571592628956, + 0.10098927468061447, + 0.027346594259142876, + 0.10271184891462326, + -0.016955623403191566, + -0.0038504409603774548, + 0.0004596434300765395, + -0.026156175881624222, + 0.03406599536538124, + 0.05564337596297264, + -0.043808482587337494, + -0.049125783145427704, + 0.0855432003736496, + 0.058261945843696594, + -0.0014149376656860113, + -0.06576455384492874, + -0.028821932151913643, + -0.08781074732542038, + -0.01829068921506405, + 0.012592816725373268, + 0.03564518690109253, + 0.004462647717446089, + 0.050262756645679474, + -0.017028311267495155, + -0.0010803344193845987, + 0.02289148047566414, + 0.024419279769062996, + -0.054535798728466034, + -0.0007720383000560105, + -0.018138863146305084, + -0.07572388648986816, + 0.015099283307790756, + -0.04587937518954277, + -0.05943405628204346, + -0.019179020076990128, + 0.003917778842151165, + 0.0481950081884861, + -0.02496248669922352, + -0.04474605992436409, + 0.0738554373383522, + -0.028762560337781906, + 0.07282964140176773, + -0.040942445397377014, + -0.043993640691041946, + 0.0723508968949318, + -0.02282019704580307, + -0.03087611123919487, + -0.004830728750675917, + 0.045390479266643524, + 0.008242916315793991, + -0.001468069851398468, + 0.007833870127797127, + 0.021322457119822502, + 0.004319175146520138, + -0.019543109461665154, + 0.051846541464328766, + 0.0783364474773407, + -0.01364763081073761, + 0.05595484748482704, + 0.001164121087640524, + -0.06578262895345688, + -0.004256502725183964, + 0.039399247616529465, + 0.04690840095281601, + -0.00310431863181293, + -0.006353067234158516, + -0.06992362439632416, + -0.047889672219753265, + -0.06633920222520828, + 0.0020392953883856535, + 0.06604611873626709, + 0.04380600154399872, + -0.10684472322463989, + -0.038918737322092056, + -0.02514541707932949, + 0.05316432565450668, + -0.017407825216650963, + -0.049272019416093826, + 0.0002795924956444651, + 0.038150765001773834, + -0.015877164900302887, + -0.024691443890333176, + -0.03174038976430893, + -0.06260828673839569, + -0.05724206566810608, + 0.0362667478621006, + -0.050983600318431854, + 0.05232419818639755, + 0.11125686764717102, + 0.0642831027507782, + -0.03943304345011711, + -0.03759532794356346, + 0.05505216494202614, + 0.03073979914188385, + -0.024702932685613632, + 0.017826201394200325, + -0.02983846887946129, + -0.13101255893707275, + 0.12098824232816696, + 0.010800504125654697, + -0.04067634418606758, + 0.007553274743258953, + -0.03353983908891678, + -0.02428501285612583, + 0.0032601181883364916, + -0.009487703442573547, + 0.09864188730716705, + -0.036164045333862305, + -0.019396085292100906, + -0.04615286365151405, + -0.013474099338054657, + 0.00038976228097453713, + 0.0822647213935852, + -2.4805439748105303e-33, + 0.06314164400100708, + 0.06688573956489563, + -0.021819325163960457, + 0.060562122613191605, + 0.09247920662164688, + 0.027981959283351898, + -0.10011788457632065, + -0.020945651456713676, + -0.034782860428094864, + 0.05221444368362427, + 0.007870469242334366, + 0.07894130796194077, + -0.017756262794137, + 0.031409598886966705, + 0.029454907402396202, + -0.07187839597463608, + 0.036441363394260406, + 0.013482028618454933, + -0.09592131525278091, + -0.05644306167960167, + -0.01423494704067707, + -0.009294362738728523, + -0.03418128192424774, + -0.026004046201705933, + -0.06314978748559952, + -0.04999540001153946, + 0.018387695774435997, + 0.010623637586832047, + -0.1126386895775795, + 0.020415490493178368, + 0.029461964964866638, + -0.009825560264289379, + -0.019220056012272835, + 0.04931029677391052, + -0.006599748972803354, + 0.01765429601073265, + -0.027310548350214958, + -0.004421205725520849, + -0.0052642058581113815, + 0.03426508978009224, + -0.06597640365362167, + -0.05695068836212158, + 0.041515566408634186, + 0.010811074636876583, + -0.011861346662044525, + 0.08967871218919754, + -0.006437945645302534, + -0.08633992075920105, + 0.03637538477778435, + 0.03292837738990784, + -0.029180064797401428, + 0.03011968545615673, + -0.0009540024911984801, + -0.01727122999727726, + 0.04748210310935974, + 0.00888418685644865, + -9.464650065638125e-05, + 0.076594278216362, + 0.009389974176883698, + -0.042506348341703415, + -0.016334418207406998, + 0.033314019441604614, + 0.05382909998297691, + 0.028605569154024124, + -0.009741141460835934, + -0.016882479190826416, + -0.06592727452516556, + 0.0330849289894104, + 0.11352016776800156, + -0.0038728322833776474, + -0.01058902870863676, + 0.03318517282605171, + 0.048105910420417786, + 0.06713511794805527, + 0.004370823036879301, + 0.02491481974720955, + -0.0607282817363739, + -0.08180597424507141, + 0.12741564214229584, + -0.12093649804592133, + -0.10108625888824463, + -0.02171185426414013, + -0.057800255715847015, + 0.08338721096515656, + 0.15018230676651, + 0.0504591278731823, + -0.07132197916507721, + -0.020052915439009666, + -0.04562962055206299, + 0.0792931467294693, + -0.04551500827074051, + 0.014833152294158936, + 0.020013907924294472, + -0.009789100848138332, + -0.05452807992696762, + 8.616222062958707e-34, + 0.056763749569654465, + 0.07485583424568176, + -0.00045869560563005507, + -0.017770027741789818, + -0.024945804849267006, + 0.05878382548689842, + 0.027970755472779274, + -0.0046442789025604725, + 0.061840470880270004, + 0.06953319162130356, + 0.03224712610244751, + 0.043823838233947754, + -0.02406221628189087, + -0.07819268852472305, + 0.13812096416950226, + 0.0034231541212648153, + 0.0740966796875, + 0.017158012837171555, + 0.015405701473355293, + 0.004826192278414965, + 0.0017540290718898177, + -0.07597295194864273, + -0.16656194627285004, + 0.055507633835077286, + -0.014612643979489803, + 0.012936756014823914, + 0.033213838934898376, + 0.032775942236185074, + 0.006506471894681454, + -0.028296899050474167, + -0.056580550968647, + -0.03726143762469292, + 0.02298715151846409, + 0.05391259863972664, + -0.03795156255364418, + 0.0013520123902708292, + 0.028194138780236244, + -0.03363174572587013, + 0.015858443453907967, + -0.03831766918301582, + 0.053179189562797546, + 0.05914749577641487, + 0.04659794643521309, + 0.02566385269165039, + -0.02146010287106037, + -0.023285670205950737, + 0.00037577247712761164, + -0.02513093873858452, + -0.06066901981830597, + -0.01282360777258873, + -0.043185602873563766, + -0.007487804628908634, + -0.05600957199931145, + 0.028138281777501106, + -0.024192964658141136, + -0.02356790564954281, + -0.006414031144231558, + 0.012228935956954956, + -0.08714940398931503, + 0.046884678304195404, + 0.0369255393743515, + 0.10973161458969116, + -0.007541441358625889, + 0.011909515596926212, + 0.015100094489753246, + -0.029120320454239845, + 0.038546282798051834, + -0.054500762373209, + -0.039339516311883926, + 0.0027181857731193304, + 0.06540895253419876, + -0.007456818595528603, + 0.03430134430527687, + -0.026679426431655884, + 0.08400968462228775, + -0.13575971126556396, + 0.034208036959171295, + 0.018997175619006157, + 0.028675684705376625, + -0.07857750356197357, + -0.006545339711010456, + -0.0619642473757267, + -0.03457949683070183, + 0.00488025089725852, + -0.0958176851272583, + 0.016486207023262978, + -0.04186995327472687, + 0.10293995589017868, + 0.04150284826755524, + -0.028430771082639694, + 0.007588194217532873, + 0.009400519542396069, + -0.004883856978267431, + -0.030733399093151093, + -0.031376056373119354, + -1.549490491470351e-08, + -0.039919186383485794, + 0.003094341605901718, + -0.04643027484416962, + -0.10806915163993835, + 0.056158896535634995, + -0.022410135716199875, + -0.004209795035421848, + 0.03386690467596054, + -0.05356268212199211, + -0.06303709745407104, + 0.038339320570230484, + 0.06076648086309433, + 0.0025846383068710566, + 0.035504765808582306, + 0.028481945395469666, + 0.030029091984033585, + -0.11774700880050659, + 0.0748123824596405, + -0.06609013676643372, + -0.016976507380604744, + -0.03650727495551109, + 0.05221213400363922, + 0.024821199476718903, + 0.03630165383219719, + -0.0022960426285862923, + 0.014840391464531422, + -0.13756634294986725, + -0.01256250124424696, + 0.01657264493405819, + 0.08974411338567734, + 0.025173254311084747, + 0.07680787146091461, + 0.011313168331980705, + 0.013161728158593178, + -0.09436573088169098, + 0.02877696231007576, + 0.04384781792759895, + -0.007870547473430634, + 0.03304879367351532, + 0.08377455919981003, + -0.060419417917728424, + -0.07414344698190689, + -0.022517038509249687, + -0.0014199947472661734, + -0.017883669584989548, + 0.004897494334727526, + 0.019410215318202972, + -0.017647264525294304, + -0.17077970504760742, + -0.07765153050422668, + -0.033671505749225616, + -0.00258452445268631, + 0.018618915230035782, + 0.08370230346918106, + -0.005699689034372568, + -0.08296997845172882, + -0.002786389784887433, + 0.0022760769352316856, + -0.05494222417473793, + 0.022392624989151955, + 0.1751990169286728, + 0.016129452735185623, + 0.024430587887763977, + -0.02926088124513626 + ], + "exam-bold||text,examination,paper,school,grade": [ + 0.014409628696739674, + 0.08544789999723434, + -0.023689275607466698, + 0.0599449947476387, + -0.007651627529412508, + -0.027679014950990677, + 0.03342871367931366, + -0.015315459109842777, + -0.017339937388896942, + 0.03973091021180153, + 0.05043753236532211, + 0.024787327274680138, + 0.029171770438551903, + 0.004555790219455957, + -0.0557468943297863, + 0.007500672712922096, + -0.028085431084036827, + -0.01937052793800831, + 0.013762439601123333, + 0.06176339089870453, + 0.026746978983283043, + 0.05254940316081047, + 0.03662096709012985, + 0.06675376743078232, + 0.06124478206038475, + 0.03760990872979164, + 0.03325674310326576, + -0.06817802041769028, + 0.034507352858781815, + -0.09142516553401947, + -0.053436677902936935, + -0.020446861162781715, + 0.08062885701656342, + 0.04761062189936638, + 0.07997607439756393, + -0.001336270128376782, + 0.017214355990290642, + -0.022199144586920738, + 0.0284966342151165, + 0.0736294612288475, + 0.01790863834321499, + -0.11118665337562561, + -0.0006890069344080985, + 0.04769431799650192, + 0.005507237743586302, + -0.04920091852545738, + -0.10849510133266449, + -0.040761370211839676, + 0.0355009026825428, + 0.014079558663070202, + -0.06232062354683876, + -0.0813651978969574, + -0.1209370568394661, + 0.0021996551658958197, + -0.022729534655809402, + -0.0030993518885225058, + -0.039692725986242294, + -0.042095307260751724, + -0.011827565729618073, + -0.022683659568428993, + -0.09888290613889694, + 0.044936202466487885, + 0.009094370529055595, + 0.07366283237934113, + 0.06374729424715042, + 0.021022692322731018, + 0.005818543955683708, + 0.026037564501166344, + -0.025449292734265327, + 0.08298304677009583, + 0.0012048521311953664, + 0.036606963723897934, + 0.056627582758665085, + -0.03550618514418602, + -0.036135233938694, + -0.0012275008484721184, + -0.015544774942100048, + 0.002935440046712756, + 0.01127153355628252, + -0.034635793417692184, + -0.09824668616056442, + -0.08136702328920364, + -0.019094888120889664, + -0.00958508625626564, + 0.07895676791667938, + 0.022338595241308212, + -0.02172796241939068, + -0.08266498893499374, + -0.04703256115317345, + -0.016863754019141197, + -0.00046692174510098994, + -0.00820112880319357, + 0.0027578258886933327, + 0.0746690109372139, + -0.033180173486471176, + 0.058425772935152054, + 0.03601391240954399, + -0.03171198070049286, + 0.02546406164765358, + 0.08421331644058228, + 0.039931707084178925, + 0.07401358336210251, + -0.014366145245730877, + 0.015223268419504166, + -0.11079078912734985, + -0.06418848037719727, + 0.03895686939358711, + -0.13131903111934662, + 0.03525472804903984, + -0.07032214850187302, + -0.009446738287806511, + -0.05748223513364792, + -0.007473353762179613, + -0.031072216108441353, + -0.0219165850430727, + -0.028210973367094994, + 0.04748927429318428, + 0.007709703408181667, + 0.068036288022995, + 0.042910125106573105, + -0.0026190108619630337, + -0.018665866926312447, + -0.051056280732154846, + -0.08360954374074936, + -0.03901950269937515, + -0.03468487039208412, + 0.0843246802687645, + -3.4213644701445795e-33, + 0.06704328209161758, + 0.015080347657203674, + -0.055411893874406815, + 0.10885115712881088, + -0.06906162202358246, + 0.031893275678157806, + -0.054738644510507584, + -0.013227468356490135, + -0.045651212334632874, + 0.0012023580493405461, + 0.04763477295637131, + 0.027508562430739403, + 0.03954010456800461, + 0.011246545240283012, + 0.073514923453331, + 0.04827476665377617, + -0.06718221306800842, + -0.006063754204660654, + -0.027430525049567223, + 0.06655146181583405, + -0.041818249970674515, + -0.026092782616615295, + 0.02948775887489319, + -0.021709825843572617, + -0.024218615144491196, + -0.00830787792801857, + 0.029487431049346924, + -0.04295836389064789, + -0.09062469750642776, + 0.0360778383910656, + 0.044782452285289764, + -0.013513389974832535, + -0.026043502613902092, + 0.014471967704594135, + 0.006860160268843174, + 0.08220864832401276, + 0.04417158663272858, + 0.010441700927913189, + 0.0239463709294796, + 0.024156954139471054, + -0.06124385818839073, + -0.062078893184661865, + 0.06438524276018143, + 0.02323370985686779, + 0.03890363499522209, + 0.11468008905649185, + -0.04207393527030945, + -0.024833692237734795, + 0.08634229004383087, + -0.012629148550331593, + -0.04516755789518356, + -0.04563864693045616, + 0.011683392338454723, + -0.06370820105075836, + 0.022220443934202194, + 0.020279843360185623, + 0.038483742624521255, + 0.07726508378982544, + -0.027423107996582985, + 0.010624473914504051, + 0.043138276785612106, + 0.04683944582939148, + 0.011248116381466389, + 0.003988214302808046, + -0.08000022917985916, + 0.011007818393409252, + -0.15401144325733185, + -0.031143566593527794, + 0.15643379092216492, + -0.0753890872001648, + -0.022949375212192535, + 0.021481113508343697, + -0.02082422748208046, + 0.03011343441903591, + 0.007703085895627737, + 0.02973930910229683, + -0.021969065070152283, + -0.008692033588886261, + 0.04523037001490593, + -0.08082626760005951, + -0.044584352523088455, + -0.050525225698947906, + -0.0208415687084198, + -0.05143477022647858, + -0.0030683057848364115, + 0.014913924969732761, + 0.03500247374176979, + -0.0945548340678215, + -0.004445834085345268, + -0.013206039555370808, + -0.05019646883010864, + 0.0017978099640458822, + 0.017335833981633186, + -0.05191004276275635, + -0.020610133185982704, + -2.197032920820434e-34, + 0.015110015869140625, + 0.015674037858843803, + -0.11905475705862045, + 0.015798738226294518, + 0.005770899821072817, + -0.000894272408913821, + 0.0014186794869601727, + 0.03123464435338974, + 0.013681323267519474, + 0.059480588883161545, + -0.014036609791219234, + -0.00474616140127182, + -0.037168122828006744, + -0.05426792427897453, + 0.021408962085843086, + -0.020638590678572655, + -0.05260130390524864, + 0.032032374292612076, + -0.06920497119426727, + 0.03740762174129486, + -0.09540726244449615, + 0.06760071963071823, + -0.0457967184484005, + 0.09131860733032227, + -0.01789851486682892, + 0.0519721619784832, + -0.017240088433027267, + -0.0833534449338913, + -0.01603749394416809, + 0.01587516814470291, + -0.01498894952237606, + -0.05230633541941643, + 0.04467160627245903, + 0.08783412724733353, + -0.05763526260852814, + 0.05095634236931801, + 0.11325206607580185, + -0.10799667239189148, + 0.001882457872852683, + 0.05311112850904465, + 0.0425274521112442, + 0.020199773833155632, + 0.02728704921901226, + 0.028221948072314262, + 0.000955990981310606, + 0.06982337683439255, + -0.04950323328375816, + -0.04572286084294319, + 0.003813070012256503, + 0.09403663128614426, + -0.003740249667316675, + 0.029490211978554726, + -0.00024323743127752095, + 0.013782368041574955, + -0.03398224338889122, + 0.009447772987186909, + -0.07410607486963272, + -0.019101671874523163, + -0.035611048340797424, + 0.11199483275413513, + -0.010335547849535942, + 0.0719604641199112, + 0.002339394297450781, + 0.03178013861179352, + 0.046421173959970474, + -0.10735951364040375, + -0.005808105692267418, + -0.04738256707787514, + -0.019523361697793007, + 0.037429820746183395, + 0.010337619110941887, + 0.03996250033378601, + -0.02611655555665493, + -0.029012693092226982, + 0.05699199065566063, + 0.004528892692178488, + 0.045476414263248444, + 0.0356469489634037, + -0.02937326207756996, + -0.007127927616238594, + -0.0028954565059393644, + 0.018382610753178596, + -0.028700193390250206, + 0.07960394769906998, + -0.09854897856712341, + 0.020115677267313004, + 0.04061690345406532, + -0.05304783210158348, + 0.0002475374785717577, + -0.010094156488776207, + -0.009571661241352558, + -0.0002590973163023591, + 0.00580859137699008, + -0.047717589884996414, + -0.02383296936750412, + -2.049081082589055e-08, + -0.01897437311708927, + -0.06695979088544846, + -0.06148991733789444, + 0.007139654364436865, + -0.028572747483849525, + -0.0716133862733841, + -0.07239150255918503, + -0.06772370636463165, + -0.06811824440956116, + 0.03924047201871872, + 0.027254711836576462, + 0.038012463599443436, + -0.07197029888629913, + -0.09546026587486267, + 0.02561517432332039, + -0.011814266443252563, + -0.03985520452260971, + 0.0669299066066742, + -0.030688507482409477, + -0.08291753381490707, + 0.04032269865274429, + -0.009517992846667767, + -0.0035746644716709852, + 0.011624698527157307, + 0.015572693198919296, + 0.0540846548974514, + -0.032593488693237305, + 0.04041182994842529, + -0.023079538717865944, + 0.040817394852638245, + 0.06229446083307266, + 0.044214051216840744, + -0.005106703378260136, + 0.024944672361016273, + -0.08576735109090805, + -0.008227921091020107, + 0.04215358570218086, + 0.017678622156381607, + 0.042445309460163116, + 0.18028941750526428, + -0.0921795517206192, + -0.08390109241008759, + 0.0015624754596501589, + -0.007960841991007328, + 0.017760122194886208, + -0.00610235845670104, + -0.04699243977665901, + -0.021593477576971054, + -0.008284647949039936, + -0.09430113434791565, + -0.03281324729323387, + -0.08076418191194534, + 0.035912252962589264, + 0.002005697460845113, + -0.037392426282167435, + -0.05475157871842384, + 0.0363788977265358, + 0.06108735501766205, + -0.10112863779067993, + 0.001821519574150443, + 0.1853206753730774, + 0.07501530647277832, + 0.04156874865293503, + 0.021868323907256126 + ], + "exclamation-mark-bold||*new*,!,alert,warning,caution,interjection,punctuation,symbol": [ + 0.026156140491366386, + -0.009753338992595673, + -0.029141783714294434, + 0.06758762896060944, + 0.07114532589912415, + -0.01990441232919693, + 0.13538257777690887, + 0.0032623102888464928, + 0.0012528770603239536, + -0.020330160856246948, + 0.059963077306747437, + -0.07432814687490463, + 0.08804012089967728, + 0.00915502943098545, + 0.020376520231366158, + 0.03087429702281952, + -0.008585636503994465, + -0.015577198006212711, + 0.008847398683428764, + -0.011978560127317905, + 0.0658973678946495, + 0.09781695157289505, + 0.005888795480132103, + 0.05907837674021721, + -0.011882251128554344, + -0.007334041874855757, + -0.012201565317809582, + 0.036048222333192825, + -0.002853201935067773, + -0.036970797926187515, + -0.045679476112127304, + -0.0871611088514328, + 0.1176336258649826, + -0.006355633959174156, + 0.08088614046573639, + 0.03978697210550308, + 0.04472653567790985, + 0.002329243579879403, + 0.05694440379738808, + -0.02096950076520443, + -0.025280017405748367, + -0.07719921320676804, + -0.050023987889289856, + 0.03986531123518944, + -0.024867350235581398, + -0.03492667153477669, + -0.03881840035319328, + -0.019389113411307335, + -0.021076355129480362, + 0.010997452773153782, + -0.015517760068178177, + -0.09922561794519424, + -0.10621951520442963, + -0.08209139108657837, + 0.052845731377601624, + -0.03183327242732048, + -0.0911620706319809, + -0.06215987354516983, + 0.01659741997718811, + 0.0012657608604058623, + -0.003367783036082983, + 0.06058531254529953, + 0.039603397250175476, + 0.08000002801418304, + 0.02700619585812092, + -0.018367988988757133, + 0.010851062834262848, + 0.018132196739315987, + -0.04308931529521942, + 0.09582642465829849, + -0.0403459295630455, + -0.036498721688985825, + -0.03966931626200676, + 0.0449967123568058, + -0.06350928544998169, + 0.07591740787029266, + 0.04931400716304779, + 0.006022913847118616, + 0.0012466006446629763, + -0.0009178242762573063, + -0.0658797025680542, + -0.08266855776309967, + 0.018867123872041702, + -7.87019744166173e-05, + 0.07700314372777939, + 0.0493457205593586, + -0.09754668176174164, + -0.05910114571452141, + -0.02376532182097435, + 0.04288826137781143, + -0.019432011991739273, + -0.1012326031923294, + 0.013471998274326324, + 0.12402532994747162, + -0.06460363417863846, + 0.0048215072602033615, + -0.030259935185313225, + -0.044125501066446304, + -0.07181939482688904, + 0.07412827759981155, + -0.03478226810693741, + 0.026774447411298752, + -0.008488993160426617, + -0.04191785678267479, + -0.0009574452415108681, + -0.060270313173532486, + -0.020538149401545525, + -0.06271057575941086, + -0.020787060260772705, + -0.0061049568466842175, + -0.016682572662830353, + -0.07175961881875992, + 0.01677466370165348, + -0.12216588109731674, + -0.05592121183872223, + 0.06048903986811638, + -0.06181745603680611, + -0.03720926120877266, + 0.09493960440158844, + 0.09844981878995895, + 0.04689372703433037, + -0.060894276946783066, + -0.07033403217792511, + 0.002390568144619465, + 0.028658373281359673, + -0.011086742393672466, + 0.07767155766487122, + -1.1604714411832825e-34, + 0.07883365452289581, + 0.10257431864738464, + -0.0332542322576046, + 0.0694749727845192, + -0.02850913256406784, + 0.02900060825049877, + -0.07078307121992111, + -0.013155792839825153, + -0.10475904494524002, + -0.01782405376434326, + 0.10167407244443893, + 0.0488867312669754, + 0.05621931701898575, + 0.010676849633455276, + 0.0222383514046669, + 0.03611992672085762, + 0.06950709223747253, + -0.034523967653512955, + -0.010369834490120411, + -0.04832727462053299, + -0.06358689814805984, + 0.033031757920980453, + -0.016370443627238274, + 0.03270409628748894, + -0.012772335670888424, + 0.026182429865002632, + 0.07508017122745514, + -0.030276937410235405, + -0.024408305063843727, + 0.029497314244508743, + -0.02849937044084072, + -0.020589087158441544, + 0.020176231861114502, + 0.029671989381313324, + 0.026497304439544678, + 0.05856569856405258, + -0.11764461547136307, + -0.019523760303854942, + 0.008744372986257076, + 0.010519948787987232, + -0.02181432954967022, + -0.04866592586040497, + -0.0480639673769474, + 0.03107590414583683, + 0.0427834689617157, + 0.04913853108882904, + -0.05415003001689911, + -0.018662409856915474, + 0.04477524012327194, + -0.007921614684164524, + -0.004729018080979586, + 0.011945844627916813, + 0.022255636751651764, + 0.05006932094693184, + -0.017456743866205215, + 0.0011283408384770155, + -0.02134813740849495, + 0.026820244267582893, + 0.004402369260787964, + -0.041107337921857834, + -0.03865601494908333, + 0.02433590032160282, + 0.07793672382831573, + -0.010734611190855503, + -0.0038951097521930933, + -0.0008702296181581914, + -0.05240100994706154, + 0.04586632549762726, + 0.028885947540402412, + 0.007391596678644419, + -0.029366470873355865, + -0.019875962287187576, + 0.08241098374128342, + 0.052112121134996414, + -0.05767039582133293, + -0.009939590469002724, + -0.055533453822135925, + -0.013821958564221859, + 0.06225116550922394, + -0.08508732914924622, + -0.05053914710879326, + -0.05631782487034798, + -0.02794978767633438, + 0.04806089028716087, + 0.04457679018378258, + 0.004462048877030611, + -0.029687032103538513, + -0.015392041765153408, + -0.05732167139649391, + 0.06511016935110092, + 0.0012253994354978204, + -0.015974318608641624, + -0.05402996391057968, + -0.0011090126354247332, + -0.07350942492485046, + -3.040954661751317e-33, + 0.07072179764509201, + 0.047202229499816895, + -0.11643796414136887, + -0.01032694149762392, + -0.06705258041620255, + -0.019490251317620277, + 0.026658128947019577, + 0.053755346685647964, + 0.004834944847971201, + 0.009023139253258705, + -0.0027663265354931355, + 0.015304074622690678, + 0.019299516454339027, + -0.05032451078295708, + -0.013734523206949234, + -0.0026345420628786087, + -0.02459578961133957, + 0.07770819962024689, + -0.019990812987089157, + 0.012345033697783947, + 0.0136869540438056, + -0.043706972151994705, + -0.08410251140594482, + 0.0180440004914999, + 0.023249367251992226, + 0.018521513789892197, + 0.006641088053584099, + -0.050727084279060364, + -0.060490019619464874, + -0.04527468979358673, + -0.06746724247932434, + 0.06685998290777206, + 0.05321483686566353, + 0.054345857352018356, + -0.02261458896100521, + 0.005329903680831194, + 0.09573877602815628, + -0.1058676466345787, + 0.0028629100415855646, + 0.049009207636117935, + 0.057639654725790024, + 0.07174263894557953, + 0.06760008633136749, + 0.04098537936806679, + -0.023465191945433617, + -0.00014269360690377653, + -0.028823239728808403, + -0.06437414884567261, + -0.005486596375703812, + 0.10162835568189621, + -0.0041119190864264965, + -0.09944970160722733, + -0.013215606100857258, + -0.03771059587597847, + -0.06796364486217499, + 0.00014605079195462167, + -0.00817221961915493, + -0.009290752001106739, + -0.0933414101600647, + 0.06400499492883682, + -0.00940149649977684, + 0.010451213456690311, + -0.01623040996491909, + 0.025774799287319183, + 0.050134796649217606, + -0.11718055605888367, + -0.008124398067593575, + 0.008000437170267105, + 0.04727001115679741, + -0.010934911668300629, + 0.10025026649236679, + 0.0430576428771019, + -0.09592097997665405, + -0.025105150416493416, + -0.023477939888834953, + -0.07554757595062256, + 0.06098969653248787, + -0.01515458058565855, + -0.07674510031938553, + -0.00969272293150425, + 0.06413296610116959, + 0.0074919285252690315, + -0.023325858637690544, + 0.07424213737249374, + -0.054923392832279205, + 0.006538784131407738, + -0.0054061925038695335, + 0.07505938410758972, + -0.07160943001508713, + 0.00042869176832027733, + -0.04112987220287323, + 0.11016802489757538, + 0.027614818885922432, + 0.02024659886956215, + -0.045486997812986374, + -2.874359061877385e-08, + -0.04154277592897415, + -0.013947928324341774, + -0.023063698783516884, + -0.04332991689443588, + 0.08031570911407471, + -0.023127509281039238, + -0.07635021209716797, + -0.1002318263053894, + -0.041161082684993744, + -0.0998690128326416, + 0.07827577739953995, + 0.035403862595558167, + -0.046414073556661606, + -0.08066665381193161, + -0.01700589992105961, + -0.04641742259263992, + -0.0482184998691082, + 0.0004923610249534249, + -0.044054824858903885, + -0.019075926393270493, + -0.018096541985869408, + 0.0654897466301918, + -0.028296807780861855, + -0.023091474547982216, + 0.022416716441512108, + -0.01081163715571165, + -0.030489109456539154, + 0.012831585481762886, + -0.01663084514439106, + 0.04906924441456795, + 0.016093958169221878, + 0.015414546243846416, + 0.011570948176085949, + -0.042422328144311905, + -0.09878601878881454, + 0.07956703752279282, + 0.0490102656185627, + -0.018866026774048805, + 0.06137208640575409, + 0.13927511870861053, + -0.009240495041012764, + 0.004103840794414282, + -0.03769540786743164, + -0.00347836478613317, + -0.047371525317430496, + -0.02112794667482376, + -0.008862794376909733, + -0.03128930926322937, + -0.0016237066593021154, + -0.09719981998205185, + 0.014244492165744305, + -0.027819309383630753, + -0.018488775938749313, + 0.0674905925989151, + -0.020182274281978607, + 0.006026475690305233, + 0.028773630037903786, + 0.09330719709396362, + 0.0225951187312603, + 0.06898030638694763, + 0.14904694259166718, + -0.04317157343029976, + 0.03944401443004608, + 0.004561489913612604 + ], + "exclude-bold||venn-diagram,difference,intersection": [ + 0.10183544456958771, + 0.04252172261476517, + 0.04561582952737808, + 0.03268834948539734, + 0.0638396367430687, + -0.01544189639389515, + 0.05785153806209564, + -0.08704189211130142, + -0.027046922594308853, + -0.07005099207162857, + 0.005867590196430683, + -0.010500784032046795, + 0.06772105395793915, + -0.010612954385578632, + -0.017403099685907364, + 0.06293255090713501, + 0.004285534843802452, + 0.00438864016905427, + 0.0003966933873016387, + -0.059327755123376846, + -0.046944256871938705, + -0.020374419167637825, + 0.053010717034339905, + 0.030800921842455864, + 0.03984375670552254, + -0.008613976649940014, + 0.0222095288336277, + 0.06407905369997025, + 0.05767878517508507, + -0.04438813030719757, + -0.012767166830599308, + -0.06406941264867783, + 0.062262069433927536, + 0.0287405364215374, + 0.0011025469284504652, + -0.10092224925756454, + -0.040588460862636566, + 0.06560123711824417, + 0.0493125282227993, + 0.037400733679533005, + -0.015464916825294495, + -0.028234336525201797, + 0.05901803821325302, + -0.028436198830604553, + 0.025320475921034813, + 0.08922576904296875, + -0.15183308720588684, + 0.0097691984847188, + -0.03166506066918373, + -0.02713664248585701, + 0.008857356384396553, + -0.0843525305390358, + -0.07540451735258102, + -0.023214787244796753, + 0.06889811158180237, + 0.025874704122543335, + -0.07747727632522583, + -0.05532968416810036, + 0.025374099612236023, + -0.009084169752895832, + -0.04727301001548767, + -0.025712106376886368, + 0.03081771545112133, + -0.007804833818227053, + 0.04474495351314545, + 0.056581396609544754, + -0.017261039465665817, + 0.09451789408922195, + 0.009244375862181187, + 0.11694879084825516, + 0.06871507316827774, + 0.055541615933179855, + -0.04820826277136803, + -0.03141745924949646, + -0.04657525196671486, + 0.06203702837228775, + 0.11077849566936493, + 0.04539605602622032, + 0.010216726921498775, + -0.030950374901294708, + -0.07706406712532043, + -0.061587102711200714, + -0.027125481516122818, + 0.058897994458675385, + 0.0226904209703207, + -0.021884676069021225, + -0.1450238674879074, + -0.11572214215993881, + -0.08396188169717789, + -0.0647234320640564, + -0.09617163240909576, + -0.010318629443645477, + 0.010293729603290558, + 0.005870768800377846, + 0.030649984255433083, + 0.05402694642543793, + 0.0755290687084198, + 0.02421928197145462, + -0.0074469768442213535, + 0.11148132383823395, + 0.017111999914050102, + -0.003228852991014719, + 0.01886884495615959, + -0.0805182158946991, + 0.007547434885054827, + 0.05310850590467453, + 0.04058831185102463, + -0.045388348400592804, + -0.01860034465789795, + -0.12063705921173096, + 0.03468828648328781, + -0.04923844709992409, + 0.07061583548784256, + -0.0028261432889848948, + -0.015136000700294971, + 0.0050565460696816444, + 0.09676779061555862, + 0.07047686725854874, + 0.1130215972661972, + -0.012719017453491688, + -0.010044095106422901, + 0.010746919550001621, + 0.037875961512327194, + -0.002106023719534278, + -0.007350916974246502, + -0.04537568986415863, + -0.039551060646772385, + -5.986685740384886e-34, + 0.042347848415374756, + -0.09358226507902145, + -0.04270866885781288, + 0.01254561822861433, + 0.08197717368602753, + 0.04231220856308937, + -0.06429556757211685, + -0.09773670881986618, + -0.06051484867930412, + 0.07057175785303116, + -0.03250196948647499, + 0.03493482992053032, + 0.005557205528020859, + -0.03352493420243263, + 0.07289271056652069, + 0.012497179210186005, + 0.10488380491733551, + -0.0769832506775856, + -0.12973836064338684, + -0.013718887232244015, + -0.032820865511894226, + -0.027518074959516525, + -0.06733311712741852, + 0.07034323364496231, + -0.015739377588033676, + 0.006997642572969198, + -0.009147478267550468, + -0.027820492163300514, + 0.045663051307201385, + 0.0012699079234153032, + -0.04982374608516693, + 0.12056914716959, + 0.025710366666316986, + 0.08839825540781021, + 0.05953408405184746, + 0.005143454764038324, + -0.0038788027595728636, + -0.009978457354009151, + 0.03713514655828476, + 0.022638365626335144, + 0.004940318409353495, + 0.001001190161332488, + -0.007138468790799379, + -0.030148493126034737, + 0.0625988095998764, + 0.07915155589580536, + -0.03468678146600723, + 0.007540040649473667, + -0.0012985155917704105, + 0.06256500631570816, + 0.02558639459311962, + 0.0643618181347847, + -0.0039103529416024685, + -0.07311464846134186, + -0.03034919686615467, + -0.11327855288982391, + 0.012011989019811153, + 0.10051294416189194, + 0.018465589731931686, + 0.08674561232328415, + -0.003058286150917411, + 0.020588112995028496, + 0.021288972347974777, + 0.03510454297065735, + -0.014266801998019218, + 0.05157260224223137, + -0.14847029745578766, + -0.026576336473226547, + 0.03259146586060524, + -0.06697046756744385, + 0.0020859031938016415, + 0.07043853402137756, + 0.014242388308048248, + -0.015085686929523945, + 0.013718629255890846, + -0.023762265220284462, + -0.030383847653865814, + 0.015560353174805641, + 0.061337944120168686, + -0.0891152024269104, + -0.030698327347636223, + 0.006965205539017916, + -0.06831837445497513, + -0.053063664585351944, + -0.00437925336882472, + 0.034434475004673004, + 0.026115357875823975, + -0.019835788756608963, + 0.053842805325984955, + 0.01465204730629921, + -0.0357712022960186, + 0.007687452714890242, + -0.0207236185669899, + -0.018329722806811333, + 0.005873925052583218, + -5.844120402244998e-36, + -0.013224111869931221, + 0.12487511336803436, + -0.00891734566539526, + -0.07529793679714203, + -0.014948617666959763, + -0.05510596185922623, + 0.09108231216669083, + -0.06277506798505783, + 0.035411152988672256, + 0.021263321861624718, + 0.07157552242279053, + -0.04326777160167694, + -0.04834044724702835, + -0.07386930286884308, + 0.03417300060391426, + 0.0009553524432703853, + -0.013426370918750763, + 0.008735527284443378, + -0.03708302229642868, + 0.007856223732233047, + -0.030789973214268684, + 0.017857125028967857, + -0.04079397767782211, + 0.027263132855296135, + -0.054230570793151855, + 0.03080611862242222, + -0.01875028945505619, + 0.019402965903282166, + -0.05750933289527893, + -0.040779270231723785, + -0.06702311336994171, + -0.04018806293606758, + 0.0011953519424423575, + 0.010845407843589783, + -0.03356176242232323, + -0.005746709648519754, + -0.03798080235719681, + -0.07817798107862473, + 0.015568465925753117, + -0.05623975768685341, + 0.04004085436463356, + -0.0411568358540535, + -0.06821199506521225, + 0.07210826873779297, + -0.00017730930994730443, + 0.09085419774055481, + -0.042218416929244995, + -0.0495029054582119, + 0.020225491374731064, + -0.04835759103298187, + -0.0011270311661064625, + -0.017732158303260803, + 0.003978905268013477, + -0.0131562240421772, + 0.001551294233649969, + -0.03705741837620735, + 0.05967647582292557, + -0.0025924541987478733, + -0.015191526152193546, + 0.026417052373290062, + 0.02186131663620472, + -0.02533510886132717, + 0.02239488996565342, + 0.056688807904720306, + 0.040764953941106796, + -0.006219287868589163, + -0.010338271036744118, + 0.05483308807015419, + 0.06435824930667877, + -0.0163728054612875, + 0.05152145028114319, + 0.002494742162525654, + -0.014332028105854988, + -0.0040098982863128185, + -0.012847437523305416, + 0.02915317565202713, + 0.007781547028571367, + 0.004536904394626617, + 0.005032668821513653, + 0.030853012576699257, + -0.11792749911546707, + -0.0541905015707016, + 0.03932217136025429, + 0.0728372186422348, + -0.04696126654744148, + 0.07467050850391388, + -0.06654946506023407, + 0.024705437943339348, + -0.011182284913957119, + 0.06019843742251396, + 0.022964030504226685, + 0.019109422340989113, + 0.04253594949841499, + 0.014062503352761269, + 0.035291098058223724, + -1.6036251437867577e-08, + 0.008802068419754505, + -0.06839195638895035, + -0.13555476069450378, + -0.008735357783734798, + 0.0666089653968811, + -0.025076229125261307, + -0.025047555565834045, + -0.04642796888947487, + -0.061977654695510864, + 0.03371667489409447, + 0.054706186056137085, + 0.08458441495895386, + -0.07276863604784012, + -0.0483245924115181, + -9.864664752967656e-05, + 0.03294886276125908, + 0.029927682131528854, + 0.05434591695666313, + -0.03034774772822857, + 0.00700970645993948, + -0.04949672892689705, + 0.010044636204838753, + 0.004256976302713156, + 0.08195534348487854, + -0.013061723671853542, + -0.02859463542699814, + -0.05915622413158417, + 0.07291790097951889, + 0.021927759051322937, + 0.022482099011540413, + 0.02805248461663723, + -0.05739881470799446, + -0.012890786863863468, + 0.010774962604045868, + 0.00445646233856678, + 0.011640959419310093, + -0.09023234248161316, + 0.03871522471308708, + -0.01254305336624384, + 0.09602338820695877, + -0.0404701866209507, + -0.04593504220247269, + 0.0005557305994443595, + 0.01232223678380251, + 0.01591375283896923, + -0.04466261342167854, + 0.01532711274921894, + -0.11312349885702133, + -0.003126636380329728, + -0.01624867133796215, + -0.07441778481006622, + -0.05103140324354172, + 0.044517550617456436, + 0.042867522686719894, + -0.051021758466959, + -0.06643767654895782, + 0.017185712233185768, + 0.12767748534679413, + -0.05122973024845123, + 0.02534850500524044, + 0.04626168683171272, + -0.010834534652531147, + 0.020716439932584763, + 0.018817540258169174 + ], + "exclude-square-bold||venn-diagram,difference,intersection": [ + 0.10755528509616852, + 0.052031759172677994, + 0.05572778731584549, + 0.04964236915111542, + 0.04498269036412239, + -0.0038570875767618418, + 0.04146817699074745, + -0.08801257610321045, + -0.028725547716021538, + -0.0785236805677414, + 0.005439112428575754, + 0.006438146345317364, + 0.06823528558015823, + -0.0035314580891281366, + -0.04892582818865776, + 0.05686640366911888, + 0.004290209151804447, + 0.012351464480161667, + 0.005147446412593126, + -0.04412129893898964, + -0.04440143331885338, + -0.034034907817840576, + 0.041016899049282074, + 0.025036972016096115, + 0.03765835985541344, + -0.003477036952972412, + 0.02592025324702263, + 0.0817335695028305, + 0.06443551927804947, + -0.04905100539326668, + -0.004463329911231995, + -0.06791599094867706, + 0.06453337520360947, + 0.023618891835212708, + -0.0126712741330266, + -0.10125783830881119, + -0.04699933901429176, + 0.07592714577913284, + 0.061006709933280945, + 0.02811650186777115, + -0.012007061392068863, + -0.04835017770528793, + 0.06889357417821884, + -0.026119988411664963, + 0.03155582770705223, + 0.08402867615222931, + -0.1400037407875061, + 0.011258020997047424, + -0.022703297436237335, + -0.043397679924964905, + 0.0007299468270502985, + -0.09146756678819656, + -0.06797552853822708, + -0.04037434980273247, + 0.06009163334965706, + 0.01555289514362812, + -0.06010909378528595, + -0.0477227158844471, + 0.045653730630874634, + -0.003591883694753051, + -0.034265004098415375, + -0.025249959900975227, + 0.024899842217564583, + -0.01203280407935381, + 0.01382687222212553, + 0.05893537774682045, + -0.024349354207515717, + 0.07837709039449692, + 0.009288245812058449, + 0.1104559600353241, + 0.07169172167778015, + 0.0806686207652092, + -0.04398735612630844, + -0.02505049668252468, + -0.028899628669023514, + 0.02141210250556469, + 0.10417141020298004, + 0.04097266495227814, + 0.012008115649223328, + -0.012806229293346405, + -0.07299009710550308, + -0.0551028773188591, + -0.038455259054899216, + 0.055558107793331146, + 0.007609852124005556, + -0.027633031830191612, + -0.13694152235984802, + -0.09845175594091415, + -0.09270662814378738, + -0.07534517347812653, + -0.07636891305446625, + -0.008644561283290386, + 0.008387413807213306, + 0.005782846361398697, + 0.016627470031380653, + 0.04609296843409538, + 0.07811328768730164, + 0.028339087963104248, + -0.01898585818707943, + 0.10430300235748291, + 0.03798803687095642, + -0.01480160839855671, + 0.015065191313624382, + -0.0924261063337326, + 0.033497218042612076, + 0.05336181819438934, + 0.07318912446498871, + -0.034862641245126724, + -0.0015762330731377006, + -0.11730074137449265, + 0.032090090215206146, + -0.05899334326386452, + 0.06576336920261383, + 0.020600788295269012, + -0.009311606176197529, + 0.019749633967876434, + 0.07992606610059738, + 0.05513852462172508, + 0.12682196497917175, + -0.026170795783400536, + -0.007455892860889435, + 0.01784447766840458, + 0.04087183251976967, + -0.003609945299103856, + -0.009111329913139343, + -0.02693638950586319, + -0.04702106490731239, + -7.986730144413987e-34, + 0.041673243045806885, + -0.06275101751089096, + -0.026239333674311638, + 0.015485758893191814, + 0.08273588865995407, + 0.027260109782218933, + -0.054311227053403854, + -0.1100073754787445, + -0.028171490877866745, + 0.08562158793210983, + -0.03765186294913292, + 0.020348886027932167, + -0.01777534745633602, + -0.021210800856351852, + 0.08369508385658264, + 0.00970159936696291, + 0.10507535189390182, + -0.06443986296653748, + -0.11335346102714539, + -0.006770395208150148, + -0.02578902058303356, + -0.029032159596681595, + -0.07378266006708145, + 0.07661693543195724, + -0.007582339458167553, + 0.0017211897065863013, + -0.004993706941604614, + -0.034749835729599, + 0.07232491672039032, + 0.014075164683163166, + -0.02185645140707493, + 0.13575910031795502, + 0.012037580832839012, + 0.08460869640111923, + 0.06548593193292618, + -0.013959270901978016, + 0.013953032903373241, + -0.0017671319656074047, + 0.041573621332645416, + 0.004925166256725788, + 0.01473707240074873, + 0.0003430803189985454, + -0.0026549194008111954, + -0.035998374223709106, + 0.07463784515857697, + 0.06302247941493988, + -0.008344331756234169, + -0.00010856863082153723, + -0.006550278980284929, + 0.05776562541723251, + 0.025195954367518425, + 0.060340188443660736, + -0.0135727534070611, + -0.059473928064107895, + -0.007207206450402737, + -0.1237701028585434, + -0.003935457207262516, + 0.09831086546182632, + 0.03917822986841202, + 0.09548646956682205, + -1.81566701940028e-05, + 0.004622661042958498, + 0.010881301015615463, + 0.02165527455508709, + -0.024013033136725426, + 0.05312831699848175, + -0.148016557097435, + -0.05227961763739586, + 0.002085303422063589, + -0.06343322992324829, + 0.003425800474360585, + 0.04455037787556648, + 0.02739875763654709, + -0.018676549196243286, + 0.01257880125194788, + -0.023207928985357285, + -0.03009622171521187, + 0.009284164756536484, + 0.07165145874023438, + -0.11646146327257156, + -0.028710084035992622, + 0.020253466442227364, + -0.08214504271745682, + -0.08987770229578018, + -0.013769916258752346, + 0.016280004754662514, + 0.017487280070781708, + -0.03534222021698952, + 0.04513348639011383, + 0.010006965138018131, + -0.052139606326818466, + 0.010708150453865528, + -0.01769859530031681, + 0.0036548178177326918, + -0.0022526783868670464, + 1.7022241858761387e-34, + -0.018967682495713234, + 0.13897034525871277, + -0.011647282168269157, + -0.07377104461193085, + -0.010060855187475681, + -0.057067565619945526, + 0.0782291516661644, + -0.06509334594011307, + 0.04851987957954407, + 0.022655121982097626, + 0.056777581572532654, + -0.051047053188085556, + -0.05447791889309883, + -0.0867970660328865, + 0.035881128162145615, + 0.007274657022207975, + 0.009530752897262573, + 0.009921985678374767, + -0.050544846802949905, + -0.013762448914349079, + -0.03843581676483154, + 0.009243233129382133, + -0.015449423342943192, + 0.021327780559659004, + -0.06266823410987854, + 0.040703948587179184, + -0.013280294835567474, + 0.018116474151611328, + -0.041651420295238495, + -0.01820574328303337, + -0.07383802533149719, + -0.04135887324810028, + -0.00834720116108656, + 0.016132976859807968, + -0.052643097937107086, + -0.018473677337169647, + -0.038105908781290054, + -0.08265355974435806, + 0.019800322130322456, + -0.05791639909148216, + 0.05634905770421028, + -0.049619488418102264, + -0.06129668653011322, + 0.09405592828989029, + 0.005769247189164162, + 0.09128005802631378, + -0.022505909204483032, + -0.05247616767883301, + 0.025126051157712936, + -0.07910258322954178, + -0.010958010330796242, + -0.025277797132730484, + -0.004792222753167152, + 0.006009015720337629, + -0.00015172132407315075, + -0.017520640045404434, + 0.05222093313932419, + 0.023647047579288483, + -0.016881732270121574, + 0.020852236077189445, + 0.016933338716626167, + -0.02978784404695034, + 0.0190723929554224, + 0.05217406526207924, + 0.027385415509343147, + 0.005615186877548695, + 0.004542605951428413, + 0.0818689838051796, + 0.0565541610121727, + 0.016118936240673065, + 0.03423445671796799, + 0.015498689375817776, + -0.022286534309387207, + -0.015269586816430092, + -0.02690151147544384, + 0.03489658981561661, + -0.015479618683457375, + -0.011738000437617302, + 0.0009794107172638178, + 0.041823770850896835, + -0.1039004996418953, + -0.03646153211593628, + 0.041752249002456665, + 0.038959454745054245, + -0.035538364201784134, + 0.05746523290872574, + -0.06021767854690552, + 0.04156234487891197, + -0.014818994328379631, + 0.04989694803953171, + 0.025598259642720222, + 0.024010540917515755, + 0.03325647488236427, + 0.013917172327637672, + 0.0463608019053936, + -1.6800981939013582e-08, + 0.0016919291811063886, + -0.05866130813956261, + -0.12669414281845093, + -0.01772562600672245, + 0.062364108860492706, + -0.04883153364062309, + -0.028072990477085114, + -0.03535160794854164, + -0.062344036996364594, + 0.024563657119870186, + 0.03947579115629196, + 0.0815243050456047, + -0.09151972085237503, + -0.0549144521355629, + -0.008896738290786743, + 0.040872614830732346, + 0.015429696999490261, + 0.0497320294380188, + -0.022414736449718475, + 0.01197170838713646, + -0.04643384367227554, + -0.009700612165033817, + 0.0012479337165132165, + 0.09610629081726074, + -0.04546375200152397, + -0.019471995532512665, + -0.0652962327003479, + 0.07905416935682297, + 0.027437036857008934, + 0.04325725883245468, + 0.03573024645447731, + -0.04815597087144852, + -0.01572985015809536, + -0.0012942025205120444, + 0.0009621317149139941, + -0.016320936381816864, + -0.09296511858701706, + 0.03736179322004318, + -0.02096598781645298, + 0.07798349857330322, + -0.024288266897201538, + -0.05415778607130051, + 0.020477211102843285, + 0.0031096087768673897, + 0.03128301352262497, + -0.028320085257291794, + 0.019181612879037857, + -0.10972461849451065, + -0.008074100129306316, + -0.019449451938271523, + -0.0678761824965477, + -0.057602088898420334, + 0.034467678517103195, + 0.060184940695762634, + -0.05717598274350166, + -0.06193404644727707, + -0.0057605961337685585, + 0.12049039453268051, + -0.03549479320645332, + 0.020818892866373062, + 0.03940413519740105, + 0.011653955094516277, + 0.020513739436864853, + 0.02768012322485447 + ], + "export-bold||share,send to,arrows": [ + 0.03621472418308258, + -0.07610158622264862, + -0.04978480190038681, + 0.12856382131576538, + 0.07214675843715668, + 0.004790556151419878, + 0.034182023257017136, + -0.05974099040031433, + 0.016776330769062042, + -0.005028633400797844, + -0.016063088551163673, + 0.05454445257782936, + 0.01633198745548725, + -0.0036368551664054394, + 0.010875200852751732, + 0.06932562589645386, + -0.03140139579772949, + -0.009862212464213371, + -0.044570427387952805, + -0.0327356792986393, + -0.03894907608628273, + 0.05562460422515869, + 0.04152030870318413, + 0.03568257391452789, + 0.053561922162771225, + -0.0890263020992279, + 0.006697691511362791, + -0.026224954053759575, + 0.00917759072035551, + -0.0470036156475544, + -0.011689783073961735, + -0.049860406666994095, + 0.0438031330704689, + 0.08488264679908752, + 0.011516183614730835, + 0.10091760754585266, + -0.012254779227077961, + -0.009203054010868073, + 0.03238074481487274, + 0.023527424782514572, + 0.04844600334763527, + 0.028729215264320374, + -0.0056640468537807465, + -0.035586822777986526, + -0.08530326932668686, + 0.02197401039302349, + -0.019585564732551575, + 0.012319166213274002, + 0.02868163399398327, + 0.07666964083909988, + -0.024504847824573517, + -0.05498577281832695, + -0.07102522253990173, + -0.028064114972949028, + 0.08336474746465683, + 0.043223749846220016, + -0.1083361953496933, + -0.062221601605415344, + 0.07256407290697098, + -0.014681220054626465, + 0.017244799062609673, + -0.024547897279262543, + 0.06074327975511551, + -0.01520922128111124, + 0.04929089918732643, + -0.005134499166160822, + -0.0306708961725235, + 0.15857291221618652, + -0.08929450809955597, + -0.01620703563094139, + -0.008488619700074196, + 0.0015031989896669984, + -0.06572393327951431, + -0.014923324808478355, + -0.0483044795691967, + 0.01975092478096485, + -0.0023068864829838276, + 0.051850464195013046, + -0.06935134530067444, + -0.04661792516708374, + -0.06270888447761536, + -0.013081345707178116, + -0.08565650135278702, + 0.031943581998348236, + 0.07270311564207077, + 0.1047142744064331, + -0.057800039649009705, + -0.07525187730789185, + -0.08864328265190125, + -0.03072965145111084, + -0.0628591924905777, + -0.007841370068490505, + 0.019253253936767578, + 0.06189681589603424, + -0.03767598420381546, + 0.008066994138062, + 0.056653983891010284, + 0.0354304201900959, + -0.11027971655130386, + 0.06957567483186722, + 0.036085911095142365, + 0.07767848670482635, + 0.042027316987514496, + -0.10385849326848984, + -0.004996245726943016, + 0.0036770033184438944, + 0.0608503557741642, + -0.009190968237817287, + -0.02965114638209343, + 0.0027281895745545626, + -0.03266829997301102, + -0.02543111890554428, + -0.05918131396174431, + -0.1274382323026657, + -0.039730072021484375, + -0.0620233491063118, + -0.07773598283529282, + -0.060758378356695175, + 0.09509468078613281, + 0.012308756820857525, + 0.07108104228973389, + -0.05186261236667633, + 0.011758372187614441, + -0.018619272857904434, + -0.006975433323532343, + -0.018127696588635445, + 0.03969345614314079, + -1.8316769706283817e-33, + 0.013249477371573448, + 0.014443611726164818, + -0.028627067804336548, + 0.055088192224502563, + 0.011732177808880806, + 0.04144889488816261, + -0.03589528053998947, + -0.11019895225763321, + -0.1121707409620285, + -0.0327637754380703, + 0.049793947488069534, + 0.05860457196831703, + -0.029276646673679352, + 0.05655005946755409, + -0.014841019175946712, + -0.057037994265556335, + 0.07857491075992584, + 7.70155165810138e-05, + 0.008205222897231579, + -0.007070834282785654, + -0.014720420353114605, + 0.030608883127570152, + -0.10300794988870621, + -0.002655553165823221, + -0.05428008362650871, + -0.026989765465259552, + -0.0033862225245684385, + -0.0029577764216810465, + -0.04035644605755806, + 0.02785600908100605, + 0.01041623204946518, + 0.07746298611164093, + 0.04823676496744156, + -0.014130847528576851, + -0.047746963798999786, + 0.011257169768214226, + -0.04455876722931862, + 0.007924471981823444, + -0.04081330820918083, + 0.07133368402719498, + -0.015529665164649487, + -0.0644192099571228, + -0.051482316106557846, + -0.02438100054860115, + -0.031918615102767944, + 0.10915857553482056, + -0.07010259479284286, + -0.07095319032669067, + 0.053353261202573776, + -0.009768184274435043, + 0.010074137710034847, + 0.013384205289185047, + 0.0437336191534996, + -0.03292784094810486, + 0.06294256448745728, + -0.04913628101348877, + -0.043165333569049835, + 0.021954957395792007, + 0.04207369312644005, + -0.03380047157406807, + -0.02414034493267536, + 0.053360775113105774, + 0.059623122215270996, + 0.02718549594283104, + -0.014290602877736092, + 0.09556055068969727, + -0.0750478059053421, + 0.03188372775912285, + 0.002433876506984234, + -0.042840376496315, + -0.002785777673125267, + 0.0669412761926651, + -0.0026034268084913492, + -0.039384935051202774, + 0.057718560099601746, + -0.017507657408714294, + -0.054316554218530655, + -0.01138042937964201, + 0.13047616183757782, + -0.060666125267744064, + -0.1441502571105957, + -0.05318552628159523, + -0.07585626095533371, + 0.0534634068608284, + 0.04156775772571564, + 0.03468312695622444, + -0.017994774505496025, + -0.007384393364191055, + -0.05193755775690079, + 0.10611671954393387, + 0.005248859524726868, + -0.006222933996468782, + -0.012551366351544857, + -0.023056278005242348, + -0.045120418071746826, + -1.2974026716338777e-35, + 0.05370815843343735, + 0.09924930334091187, + -0.04662872105836868, + 0.025382522493600845, + -0.029200904071331024, + 0.01916802115738392, + 0.036306560039520264, + 0.03254783898591995, + -0.03229150548577309, + 0.09879966080188751, + -0.022307777777314186, + -0.023728307336568832, + -0.07843397557735443, + -0.05894771218299866, + 0.025838034227490425, + 0.0017380202189087868, + 0.11833152174949646, + 0.06813224405050278, + -0.02214302495121956, + -0.07114540040493011, + -0.0049945334903895855, + -0.012958081439137459, + 0.023539522662758827, + 0.09172698110342026, + 0.006567584816366434, + 0.0765441507101059, + 0.0306870024651289, + 0.04755553603172302, + -0.037267327308654785, + -0.05368434265255928, + 2.8221553293406032e-05, + 0.04808531329035759, + 0.014090280048549175, + 0.018125567585229874, + -0.08292616903781891, + 0.010356264188885689, + -0.033568013459444046, + 0.03617300093173981, + 0.1086050346493721, + 0.04218907654285431, + 0.02801644429564476, + -0.021467624232172966, + -0.03809443116188049, + 0.0629897490143776, + 0.007452970836311579, + 0.02729841135442257, + 0.00723807979375124, + -0.0780099406838417, + 0.047571007162332535, + 0.05580146610736847, + 0.14429119229316711, + -0.025646528229117393, + -0.006592525169253349, + -0.04259259253740311, + -0.016805078834295273, + -0.03890836238861084, + 0.03141740709543228, + 0.03840416669845581, + -0.03780454769730568, + -0.03712683916091919, + -0.023591533303260803, + -0.03947370499372482, + 0.015835527330636978, + -0.0027629134710878134, + -0.03738074377179146, + -0.05877111479640007, + 0.02852747030556202, + 0.039234861731529236, + 0.07999686896800995, + 0.05464199557900429, + 0.048911187797784805, + -0.01669454202055931, + 0.012321936897933483, + 0.028456956148147583, + 0.08136792480945587, + -0.05234864354133606, + 0.029169846326112747, + 0.016773836687207222, + -0.0012594329891726375, + 0.05929567292332649, + -0.03896476328372955, + 0.004704611375927925, + 0.02769876830279827, + 0.05958874896168709, + 0.014009566977620125, + -0.0312314722687006, + -0.00349102052859962, + 0.04737517610192299, + -0.001021280069835484, + -0.026085790246725082, + -0.04991396144032478, + -0.026358697563409805, + 0.0206300001591444, + -0.08360260725021362, + -0.044185373932123184, + -1.6501088495601834e-08, + -0.10652876645326614, + -0.03929313272237778, + -0.009333059191703796, + -0.038101471960544586, + -0.03623588755726814, + -0.008226903155446053, + -0.012178049422800541, + -0.028449786826968193, + -0.0027907993644475937, + 0.03640120476484299, + 0.012444816529750824, + 0.05434376746416092, + -0.04091089218854904, + -0.03515198081731796, + 0.01038668118417263, + 0.0009955302812159061, + 0.017303889617323875, + 0.003193870885297656, + -0.029760221019387245, + -0.09721695631742477, + -0.03666860610246658, + 0.027173619717359543, + 0.030987150967121124, + 0.06457149982452393, + 0.0343702994287014, + -0.020411107689142227, + -0.05329948291182518, + 0.027914248406887054, + 0.09781964123249054, + 0.023703385144472122, + 0.007789258379489183, + 0.0003650966682471335, + -0.023919422179460526, + 0.037225112318992615, + -0.11458197236061096, + -0.07264118641614914, + -0.013115826062858105, + -0.024517282843589783, + 0.00877293013036251, + 0.10852308571338654, + -0.04154296964406967, + 0.0011973025975748897, + -0.02473626658320427, + -0.028629273176193237, + -0.07509752362966537, + 0.015494929626584053, + -0.021754957735538483, + -0.017839955165982246, + -0.09381888061761856, + -0.035951316356658936, + -0.0012420745333656669, + -0.011917218565940857, + -0.0378127284348011, + 0.12173863500356674, + -0.0338534340262413, + -0.09689368307590485, + -0.01587727852165699, + 0.0793454647064209, + 0.0022575361654162407, + -0.027888406068086624, + 0.046208467334508896, + 0.07223250716924667, + -0.054539505392313004, + 0.04791828617453575 + ], + "eye-bold||visible,hidden,show,hide,visibility,view": [ + -0.017903968691825867, + -0.06300865113735199, + -0.07289239764213562, + 0.040813904255628586, + 0.0805305764079094, + 0.011046557687222958, + 0.07396508008241653, + -0.047946956008672714, + 0.0010176649084314704, + 0.036841847002506256, + 0.062115658074617386, + -0.00043903201003558934, + 0.032128576189279556, + -0.0531197190284729, + -0.0163858775049448, + 0.012465233914554119, + -0.032404735684394836, + -0.03544451296329498, + 0.0010220396798104048, + -0.00771125266328454, + 0.07872292399406433, + -0.0004761804884765297, + 0.006967652589082718, + -0.010046111419796944, + 0.02059544250369072, + 0.042803965508937836, + 0.05068880692124367, + -0.03481696918606758, + 0.016650326550006866, + -0.10064361244440079, + -0.06234804913401604, + -0.01283758319914341, + 0.06512454152107239, + 0.0522228479385376, + 0.018292931839823723, + -0.038102686405181885, + -0.005354542285203934, + -0.008794578723609447, + -0.0848064050078392, + -0.005114133004099131, + -0.03500599414110184, + -0.01763267256319523, + -0.0375332310795784, + -0.012314267456531525, + 0.005947569850832224, + -0.029062699526548386, + -0.025208715349435806, + -0.005229366011917591, + -0.009165915660560131, + -0.046846598386764526, + -0.06602426618337631, + -0.10285589098930359, + -0.11022507399320602, + 0.036443326622247696, + 0.043617431074380875, + -0.0111794862896204, + -0.11805309355258942, + -0.045769836753606796, + 0.048077233135700226, + 0.015053780749440193, + 0.01102564949542284, + 0.027275370433926582, + 0.06300154328346252, + 0.020175911486148834, + -0.01100655272603035, + 0.053086765110492706, + 0.029892735183238983, + -0.041281718760728836, + 0.029314009472727776, + 0.042060788720846176, + -0.0030261785723268986, + 0.04796721413731575, + -0.00014602908049710095, + -0.07815414667129517, + -0.07605303823947906, + 0.022180847823619843, + 0.08460608869791031, + -0.06937827914953232, + -0.001587843056768179, + -0.03489350900053978, + -0.036226969212293625, + -0.012446744367480278, + -0.0032115208450704813, + 0.039510563015937805, + 0.03871048986911774, + 0.03015025518834591, + -0.09831708669662476, + -0.07053650170564651, + -0.03424797207117081, + -0.04008227586746216, + -0.05654357001185417, + 0.027107948437333107, + -0.03811913728713989, + -0.025170158594846725, + -0.08605699986219406, + -0.04972139373421669, + 0.09303191304206848, + 0.01636224426329136, + -0.04792577400803566, + 0.07399500161409378, + 0.028793588280677795, + 0.008129393681883812, + 0.11105373501777649, + -0.0017267956864088774, + -0.029853515326976776, + 0.017135653644800186, + 0.06465298682451248, + -0.03898230195045471, + 0.001052754931151867, + 0.053848884999752045, + 0.03725073114037514, + -0.059064798057079315, + -0.036581218242645264, + -0.07248730212450027, + -0.03244704380631447, + 0.005416210740804672, + -0.028010977432131767, + -0.02732105553150177, + 0.15667378902435303, + 0.02146228216588497, + 0.06824743747711182, + -0.007555500138550997, + 0.0801592543721199, + -0.03435588255524635, + 0.07244439423084259, + 0.03693227469921112, + -0.0173107348382473, + -2.0536415281323233e-33, + 0.08032072335481644, + -0.0010311583755537868, + -0.06973214447498322, + 0.05776678025722504, + 0.044793639332056046, + 0.018504196777939796, + 0.0067794714123010635, + -0.01088908314704895, + -0.13150978088378906, + 0.03764879330992699, + 0.07833218574523926, + 0.06199973449110985, + -0.05627519264817238, + 0.08177585154771805, + 0.08302144706249237, + -0.005614376161247492, + 0.027698181569576263, + 0.04016079381108284, + -0.0873279720544815, + -0.0312604121863842, + -0.08306440711021423, + 0.03477666154503822, + -0.06535504013299942, + 0.02432028204202652, + -0.009323027916252613, + -0.016515260562300682, + 0.048136524856090546, + -0.08186265826225281, + -0.0688401311635971, + 0.03714139759540558, + 0.06382022798061371, + 0.08571925014257431, + 0.04218626767396927, + -0.01752575673162937, + -0.016775500029325485, + 0.011842640116810799, + -0.06261749565601349, + -0.008523243479430676, + 0.05924547091126442, + 0.04568016901612282, + -0.10943685472011566, + -0.03386839106678963, + -0.00014771190762985498, + -0.07590514421463013, + 0.01599673554301262, + 0.14586973190307617, + -0.019359150901436806, + 0.06395552307367325, + -0.05558881163597107, + -0.0239596925675869, + 0.015496810898184776, + -0.015141528099775314, + 0.0014748757239431143, + -0.07099755853414536, + -0.005396567285060883, + -0.0009818993275985122, + -0.03336385637521744, + 0.0837511345744133, + 0.0297290850430727, + 0.007105256896466017, + -0.008507058955729008, + -0.007211211137473583, + 0.04917535558342934, + 0.03344382718205452, + -0.07105375826358795, + 0.04879811033606529, + -0.04894121736288071, + 0.04175345227122307, + 0.013749574311077595, + -0.020346110686659813, + -0.033122383058071136, + 0.06188245117664337, + 0.07075880467891693, + 0.012300437316298485, + 0.008029688149690628, + -0.010037258267402649, + 0.014113876968622208, + -0.026626715436577797, + 0.06760046631097794, + -0.06681400537490845, + -0.05716387555003166, + 0.02951211668550968, + -0.019745195284485817, + 0.04423624277114868, + -0.00035886719706468284, + -0.0351092703640461, + 0.0067750015296041965, + -0.039892081171274185, + -0.06981294602155685, + -0.02780405431985855, + 0.007969355210661888, + 0.014857344329357147, + 0.017217354848980904, + -0.11957743763923645, + -0.09484381973743439, + 2.7135182192919356e-35, + 0.03883306309580803, + 0.02851112000644207, + -0.023357348516583443, + -0.05181683972477913, + -0.06717964261770248, + 0.04294313117861748, + 0.07901018112897873, + 0.052083440124988556, + 0.04510936513543129, + 0.02121380902826786, + 0.07320310920476913, + 0.013962586410343647, + -0.07213881611824036, + -0.03189896419644356, + -0.029451021924614906, + 0.04307861626148224, + 0.03767571598291397, + 0.0355890616774559, + -0.039970774203538895, + 0.046100206673145294, + -0.03754054382443428, + -0.028261421248316765, + -0.07704200595617294, + 0.03536798804998398, + -0.015502621419727802, + 0.012678463011980057, + 0.04679472744464874, + 0.010433724150061607, + -0.0664617195725441, + -0.039545413106679916, + 0.013508542440831661, + -0.02171187475323677, + 0.005222562234848738, + 0.027385329827666283, + -0.06347969174385071, + 0.050095975399017334, + -0.036996062844991684, + -0.10065007209777832, + -0.031281646341085434, + 0.036227501928806305, + -0.06405645608901978, + 0.018110517412424088, + 0.0400485098361969, + 0.013604620471596718, + -0.0431678481400013, + 0.02218819409608841, + 0.009526774287223816, + -0.0291708093136549, + -0.019302211701869965, + 0.004970914218574762, + -0.044634655117988586, + -0.01903286948800087, + 0.002347287954762578, + -0.0238465778529644, + -0.1298636943101883, + -0.03444238007068634, + 0.005316220689564943, + 0.029886608943343163, + -0.008342473767697811, + 0.03583047166466713, + 0.06599023938179016, + -0.028397146612405777, + -0.07860642671585083, + 0.0409596711397171, + 0.018250521272420883, + -0.00628387276083231, + 0.020484842360019684, + 0.005356568843126297, + 0.06533882766962051, + -0.025851385667920113, + 0.09365413337945938, + -0.07127417623996735, + 0.00493194442242384, + 0.024014046415686607, + 0.08596650511026382, + 0.042676348239183426, + 0.03947975113987923, + 0.025707494467496872, + -0.0212577972561121, + 0.055485352873802185, + 0.029770627617836, + -0.016795383766293526, + -0.019474344328045845, + 0.03917859494686127, + -0.01934322714805603, + 0.05797138437628746, + 0.018152378499507904, + 0.05012889206409454, + -0.029820995405316353, + -0.0048883878625929356, + -0.09032983332872391, + 0.04740326851606369, + -0.03566013649106026, + -0.03253370150923729, + -0.007129286415874958, + -1.938556515312939e-08, + -0.02375839836895466, + -0.03726208582520485, + 0.00471831951290369, + -0.06874068081378937, + 0.004071866627782583, + -0.055470060557127, + -0.034497614949941635, + -0.04086761176586151, + -0.10029713064432144, + -0.06992831826210022, + 0.04930800944566727, + 0.028483344241976738, + -0.04191221669316292, + 0.015887482091784477, + 0.10666850954294205, + -0.025546114891767502, + -0.06305813044309616, + 0.05595564842224121, + -0.04027251526713371, + -0.02314005047082901, + -0.04256441071629524, + 0.03595082089304924, + 0.024352792650461197, + 0.03964119777083397, + 0.0341220498085022, + -0.0018016766989603639, + -0.09399256855249405, + 0.013530010357499123, + 0.04892142489552498, + 0.11349821835756302, + 0.0954618975520134, + 0.07545901834964752, + 0.0263807512819767, + 0.02489672787487507, + -0.052219122648239136, + 0.008483006618916988, + -0.0029249582439661026, + 0.0407710075378418, + 0.01642952673137188, + 0.15622439980506897, + -0.01507473737001419, + -0.11322817206382751, + -0.017877303063869476, + 0.014206970110535622, + -0.0360969677567482, + 0.02602938562631607, + 0.08548876643180847, + -0.09576550871133804, + -0.09754632413387299, + -0.10854288190603256, + -0.05337131768465042, + 0.007826431654393673, + 0.0038811371196061373, + 0.052035655826330185, + -0.03861621394753456, + -0.06830223649740219, + 0.09122473001480103, + 0.11486928910017014, + -0.0323745459318161, + 0.004737344570457935, + 0.11423075199127197, + 0.020532509312033653, + -0.0008447638829238713, + 0.04187054932117462 + ], + "eye-closed-bold||visible,hidden,show,hide,visibility,view,invisible,private": [ + -0.020181704312562943, + -0.05755441263318062, + -0.07107473909854889, + 0.06451799720525742, + 0.06737406551837921, + 0.025199033319950104, + 0.09472517669200897, + -0.04102830961346626, + 0.024455072358250618, + 0.034973111003637314, + 0.09303350746631622, + 0.008606554009020329, + 0.024272968992590904, + -0.05746698006987572, + -0.032623905688524246, + 0.020664142444729805, + -0.029995111748576164, + -0.0670749619603157, + -0.005117147695273161, + -0.0007716304971836507, + 0.09698935598134995, + 0.016382984817028046, + -0.007860860787332058, + -0.011344955302774906, + 0.006456295028328896, + 0.020609181374311447, + 0.0290177371352911, + -0.04389464482665062, + 0.012081990949809551, + -0.08610657602548599, + -0.06677685678005219, + -0.024698996916413307, + 0.06501088291406631, + 0.030661266297101974, + 0.06143937632441521, + -0.015696361660957336, + -0.003266029292717576, + 0.014174295589327812, + -0.07650934159755707, + -0.030805621296167374, + -0.060698673129081726, + -0.04611995443701744, + -0.037606894969940186, + 0.0015297119971364737, + -0.02768600545823574, + -0.03928887099027634, + -0.02219701185822487, + -0.007004996761679649, + -0.02735341526567936, + -0.050382886081933975, + -0.07545238733291626, + -0.10785812139511108, + -0.12726746499538422, + 0.01822412945330143, + 0.03956288844347, + -0.01985701359808445, + -0.10304588079452515, + -0.06580016016960144, + 0.022657109424471855, + 0.03937004134058952, + 0.007954754866659641, + 0.003911848645657301, + 0.022839710116386414, + 0.03184114769101143, + -0.006544355768710375, + 0.0611247792840004, + 0.00218050554394722, + -0.058356430381536484, + 0.03729180991649628, + 0.01644219644367695, + -0.00831206887960434, + 0.05577835440635681, + -0.002267075702548027, + -0.046889498829841614, + -0.06056131049990654, + -0.006981173995882273, + 0.05288991332054138, + -0.06837908923625946, + -0.009483227506279945, + -0.04541684314608574, + -0.009677378460764885, + -0.04712619632482529, + -0.020793911069631577, + 0.03227487578988075, + 0.01288189459592104, + 0.06406483799219131, + -0.04578245431184769, + -0.06495580077171326, + -0.01213966216892004, + 0.003018552903085947, + -0.044135987758636475, + 0.0035022010561078787, + -0.034114234149456024, + -0.005626061465591192, + -0.10890738666057587, + -0.05196332186460495, + 0.09175573289394379, + 0.03056967258453369, + -0.04013439640402794, + 0.0895201563835144, + 0.023366335779428482, + 0.02810819447040558, + 0.10304215550422668, + -0.026965754106640816, + -0.019178245216608047, + 0.028415942564606667, + 0.0662163719534874, + -0.03681587427854538, + -0.009783279150724411, + 0.05322447791695595, + 0.010053529404103756, + -0.08561854064464569, + -0.048174578696489334, + -0.08554381877183914, + -0.022936267778277397, + 0.021119989454746246, + -0.0379132516682148, + -0.02965293452143669, + 0.1751846969127655, + 0.04345400631427765, + 0.06508619338274002, + 0.013509592972695827, + 0.0719541385769844, + -0.03921937197446823, + 0.027437010779976845, + 0.008298039436340332, + -0.05077262595295906, + -2.265579302494743e-33, + 0.07237502932548523, + -0.006533120293170214, + -0.09922847896814346, + 0.06391353905200958, + 0.058905620127916336, + 0.02134094573557377, + -0.01870809681713581, + -0.014488273300230503, + -0.13597676157951355, + 0.0635911077260971, + 0.12041231244802475, + 0.04568150267004967, + -0.04080263152718544, + 0.07672479748725891, + 0.08900782465934753, + 0.008172254078090191, + 0.05153476819396019, + 0.06195380538702011, + -0.05635997653007507, + -0.05433790385723114, + -0.04388563707470894, + 0.09360548108816147, + -0.029358146712183952, + 0.010461775586009026, + 0.018009208142757416, + -0.022610800340771675, + 0.05309959501028061, + -0.09408152848482132, + -0.04657002538442612, + 0.041669394820928574, + 0.05766534060239792, + 0.06792803853750229, + 0.06016237661242485, + 0.009856835007667542, + -0.0015189648838713765, + 0.023657049983739853, + -0.044682104140520096, + -0.03795693442225456, + 0.07226024568080902, + 0.024358099326491356, + -0.10762231051921844, + -0.05254623666405678, + -0.027618728578090668, + -0.05429322272539139, + 0.009627732448279858, + 0.10307577252388, + -0.032683227211236954, + 0.08179868012666702, + -0.05528396740555763, + -0.027990903705358505, + -0.001565268263220787, + 0.015065324492752552, + -0.0341205969452858, + -0.061766646802425385, + -0.01942121423780918, + 0.003140031825751066, + -0.009213990531861782, + 0.08220021426677704, + 0.005132713820785284, + 0.00492169288918376, + 0.020806726068258286, + 0.045169178396463394, + 0.0631537213921547, + -0.010403165593743324, + -0.06978566944599152, + 0.017518848180770874, + -0.03564595803618431, + 0.01533562783151865, + 0.03310607001185417, + -0.04930298775434494, + -0.05628432705998421, + 0.03424101322889328, + 0.0609845332801342, + 0.0330822691321373, + 0.006657689344137907, + -0.025591876357793808, + -0.0005493313656188548, + -0.010648664087057114, + 0.07018256187438965, + -0.05031721666455269, + -0.020271191373467445, + 0.030345631763339043, + -0.04613647609949112, + 0.07243873178958893, + -0.04623500257730484, + -0.05124616622924805, + -0.019014956429600716, + 0.001152810174971819, + -0.0714220330119133, + -0.001990731107071042, + -0.050620727241039276, + 0.03017597831785679, + 0.007331395521759987, + -0.09710265696048737, + -0.12194652110338211, + -2.475834466896556e-34, + 0.004745638929307461, + 0.02475123479962349, + -0.04627849906682968, + -0.029047807678580284, + -0.05416670814156532, + 0.024648742750287056, + 0.05043640732765198, + 0.03687566518783569, + 0.05524049326777458, + 0.04041939973831177, + 0.08800215274095535, + 0.024254916235804558, + -0.02979322150349617, + -0.02166915498673916, + -0.025628410279750824, + 0.033430472016334534, + 0.061498913913965225, + 0.04416498914361, + -0.05315011739730835, + 0.0559842549264431, + -0.03260970488190651, + -0.008327357470989227, + -0.08754614740610123, + 0.04915827140212059, + 0.017621831968426704, + -0.0017806210089474916, + -0.000814905040897429, + 0.00815576408058405, + -0.04226546734571457, + -0.028036147356033325, + 0.01053412165492773, + -0.023127200081944466, + -0.007821748033165932, + 0.022047676146030426, + -0.04036317393183708, + 0.02608957700431347, + -0.023150071501731873, + -0.08592221140861511, + -0.025114335119724274, + 0.019483771175146103, + -0.025901341810822487, + 0.03415077552199364, + 0.04139484092593193, + 0.032997481524944305, + -0.03944757208228111, + 0.017348965629935265, + -0.03463756665587425, + -0.04686271399259567, + -0.007519656792283058, + 0.008615695871412754, + -0.05412746220827103, + -0.0427936390042305, + 0.009068946354091167, + -0.04181573539972305, + -0.11808741092681885, + -0.011435025371611118, + 0.010599955916404724, + 0.028103921562433243, + 0.007434438914060593, + 0.02224171720445156, + 0.10872402787208557, + -0.02343812957406044, + -0.08726222813129425, + 0.041941072791814804, + 0.01805749349296093, + -0.03674674779176712, + 0.010984817519783974, + 0.02903107739984989, + 0.013735142536461353, + -0.04576846957206726, + 0.08115019649267197, + -0.08317460119724274, + -0.009140324778854847, + 0.01741102896630764, + 0.0673263818025589, + 0.04083499684929848, + 0.06594651192426682, + -0.006135501433163881, + -0.025627851486206055, + 0.07192431390285492, + 0.0524628609418869, + -0.007458055857568979, + -0.026577383279800415, + 0.0010048719123005867, + 0.024221012368798256, + 0.03295726701617241, + 0.030712943524122238, + 0.048657260835170746, + -0.04051520675420761, + 0.006653405260294676, + -0.08329429477453232, + 0.050636496394872665, + -0.04398098215460777, + -0.019436916336417198, + -0.018861088901758194, + -2.1618053125394e-08, + -0.031376585364341736, + -0.04847315326333046, + 0.02683614194393158, + -0.053606193512678146, + 0.0376301072537899, + -0.08572208881378174, + -0.03535895422101021, + -0.051142286509275436, + -0.0942077785730362, + -0.058584559708833694, + 0.035852428525686264, + 0.008244950324296951, + -0.0539492703974247, + 0.025295114144682884, + 0.07866773754358292, + -0.010238458402454853, + -0.07586509734392166, + 0.045013394206762314, + -0.016910741105675697, + -0.047353871166706085, + -0.03992578759789467, + 0.00889550056308508, + 0.020106127485632896, + 0.020614303648471832, + 0.013443593867123127, + 0.011108776554465294, + -0.06606721878051758, + -0.027754122391343117, + 0.04563117027282715, + 0.12276694178581238, + 0.07915817201137543, + 0.08594479411840439, + 0.03008500300347805, + 0.008926675654947758, + -0.06408802419900894, + 0.05749090015888214, + -0.017952555790543556, + 0.03994706645607948, + 0.009682598523795605, + 0.15351402759552002, + 0.026911519467830658, + -0.12003778666257858, + -0.00346458051353693, + 0.03155270963907242, + -0.011121583171188831, + 0.010945914313197136, + 0.09004924446344376, + -0.08438374847173691, + -0.0777832642197609, + -0.09724928438663483, + -0.04283517226576805, + 0.00602103304117918, + 0.025224976241588593, + 0.030426599085330963, + -0.03347863256931305, + -0.02451799437403679, + 0.10244057327508926, + 0.11734999716281891, + -0.02802172861993313, + -0.005118169821798801, + 0.10853742808103561, + 0.03877322003245354, + -0.030580488964915276, + 0.04840875416994095 + ], + "eye-slash-bold||visible,hidden,show,hide,visibility,view,invisible,eyelashes,disabled,private": [ + -0.043301139026880264, + -0.07557579129934311, + -0.030109547078609467, + 0.04322532191872597, + 0.0404464416205883, + -0.025872118771076202, + 0.049000270664691925, + -0.023760665208101273, + 0.0037173551972955465, + 0.021921580657362938, + 0.12406106293201447, + -0.00034977024188265204, + -0.004615224432200193, + 0.0027602699119597673, + -0.04204747825860977, + 0.0313810259103775, + -0.014498965814709663, + -0.04239579662680626, + 0.0021333203185349703, + 0.02547544799745083, + 0.05611884221434593, + 0.05546029284596443, + -0.01972690224647522, + -0.002643211977556348, + 0.04333389922976494, + 0.014290370978415012, + 0.009973800741136074, + -0.010528696700930595, + 0.008447122760117054, + -0.09941937029361725, + -0.051118578761816025, + -0.027094725519418716, + 0.08694564551115036, + 0.04369976371526718, + 0.05012970045208931, + -0.014842488802969456, + 0.02571682445704937, + -0.025595681741833687, + -0.0478203259408474, + -0.043620333075523376, + -0.047910820692777634, + -0.055424246937036514, + -0.06064539775252342, + -0.02174548991024494, + -0.015227320604026318, + -0.026915477588772774, + 0.00015647891268599778, + -0.03199956938624382, + -0.02768426015973091, + -0.03222841024398804, + -0.05602157860994339, + -0.1074199378490448, + -0.11097616702318192, + 0.042913392186164856, + 0.060162682086229324, + -0.02308456040918827, + -0.10491206496953964, + -0.019228212535381317, + 0.06652797013521194, + 0.0454874262213707, + -0.015754608437418938, + 0.01175460685044527, + 0.04161754995584488, + 0.046015769243240356, + -0.03432289510965347, + 0.049992192536592484, + 0.027416234835982323, + -0.05503847822546959, + 0.022000102326273918, + -0.0099378302693367, + -0.019076965749263763, + 0.005031106993556023, + -0.04215926304459572, + -0.019377950578927994, + -0.07111819088459015, + -0.006881800014525652, + 0.08020436018705368, + -0.058488596230745316, + 0.014458786696195602, + -0.04607315734028816, + -0.012835958041250706, + 0.0026004177052527666, + 0.02785918302834034, + 0.08801238238811493, + 0.045331913977861404, + 0.056005463004112244, + -0.0540853887796402, + -0.07216893881559372, + -0.03542076423764229, + -0.011302081868052483, + -0.043697651475667953, + -0.015350861474871635, + 0.030926981940865517, + -0.02972884103655815, + -0.08393453061580658, + -0.03469231724739075, + 0.050079938024282455, + -0.0027734043542295694, + -0.08515502512454987, + 0.08695105463266373, + 0.011335977353155613, + -0.003404185874387622, + 0.06916137784719467, + -0.009151351638138294, + -0.027318140491843224, + 0.027537114918231964, + 0.07500073313713074, + -0.040914230048656464, + -0.018484007567167282, + 0.014673849567770958, + 0.012673880904912949, + -0.082126684486866, + -0.05439252033829689, + -0.10912271589040756, + -0.03055390901863575, + -0.0443449430167675, + -0.051322102546691895, + -0.074135921895504, + 0.1881871521472931, + 0.07116290926933289, + 0.03749556466937065, + -0.026428943499922752, + 0.055541351437568665, + -0.054499343037605286, + 0.052315834909677505, + 0.03134240582585335, + -0.01390829961746931, + -3.1689795882092956e-33, + 0.09877622127532959, + 0.023751279339194298, + -0.05408796668052673, + 0.017452361062169075, + 0.043741896748542786, + 0.024153895676136017, + 0.0020731291733682156, + 0.008619994856417179, + -0.151218444108963, + -0.004499464295804501, + 0.07934694737195969, + 0.017347844317555428, + -0.043035998940467834, + 0.06228773295879364, + 0.06178294122219086, + 0.021818988025188446, + 0.07943841814994812, + 0.012442029081285, + -0.0440618060529232, + -0.02930903062224388, + -0.05400765687227249, + 0.08629224449396133, + -0.050343938171863556, + 0.029840735718607903, + -0.009831221774220467, + -0.01766378805041313, + 0.028642354533076286, + -0.07978552579879761, + -0.008365020155906677, + 0.05839860811829567, + 0.057341668754816055, + 0.0724368765950203, + 0.04027323052287102, + -0.002625232795253396, + -0.025437120348215103, + 0.056266628205776215, + -0.018231473863124847, + -0.016983918845653534, + 0.015248505398631096, + 0.05654677748680115, + -0.10432042926549911, + -0.057582661509513855, + -0.052644021809101105, + -0.05537082627415657, + -0.00802760198712349, + 0.09196887165307999, + -0.0386819988489151, + 0.02706676907837391, + -0.06674937903881073, + 0.030134709551930428, + 0.003216381650418043, + 0.03545784950256348, + 0.06163961440324783, + -0.04729565605521202, + -0.030023818835616112, + -0.020098060369491577, + -0.03260897472500801, + 0.029627328738570213, + 0.006849158555269241, + 0.0038401426281780005, + -0.001478004502132535, + 0.024182366207242012, + 0.05093635991215706, + 0.018535848706960678, + -0.047070346772670746, + 0.01757775992155075, + -0.05578523874282837, + 0.045412417501211166, + -0.00361835234798491, + -0.0147288478910923, + -0.07514538615942001, + 0.027049103751778603, + 0.09162291139364243, + -0.001084354124031961, + -0.01919649727642536, + -0.038793083280324936, + -0.025968508794903755, + -0.03345194831490517, + 0.036956172436475754, + -0.042279839515686035, + -0.09144826978445053, + 0.016846461221575737, + -0.013593688607215881, + 0.07131858170032501, + 0.02817675471305847, + -0.058572299778461456, + -0.010126272216439247, + -0.023806003853678703, + -0.06952143460512161, + -0.003392944112420082, + 0.022353900596499443, + 0.02463287115097046, + -0.028839334845542908, + -0.08612286299467087, + -0.08691723644733429, + 9.455186156464997e-34, + 0.04214930534362793, + 0.045542407780885696, + -0.05382349714636803, + -0.022851942107081413, + -0.05766502767801285, + 0.040999557822942734, + 0.05423950403928757, + 0.05445001646876335, + 0.04996311664581299, + 0.02132446877658367, + 0.08049867302179337, + 0.05149741470813751, + -0.042756885290145874, + -0.08608289808034897, + 0.025810008868575096, + 0.04583776369690895, + 0.003725026035681367, + 0.017915979027748108, + -0.02821614220738411, + 0.04214257374405861, + -0.030026601627469063, + 0.0033726675901561975, + -0.031112834811210632, + 0.05087468400597572, + -0.03312750533223152, + 0.028260977938771248, + 0.057758819311857224, + -0.009434264153242111, + -0.0377168133854866, + 0.011386292055249214, + 0.03702382370829582, + 0.02389916405081749, + -0.04102044180035591, + 0.023679746314883232, + -0.045390017330646515, + 0.040071453899145126, + -0.10947389900684357, + -0.030290117487311363, + -0.03191688656806946, + -0.021734585985541344, + -0.022019507363438606, + 0.017127742990851402, + 0.06537139415740967, + 0.06419443339109421, + -0.006707991007715464, + -0.0031379633583128452, + -0.03514225035905838, + -0.07759584486484528, + -0.003838419681414962, + 0.0385509729385376, + -0.022426174953579903, + -0.015364988707005978, + 0.014867851510643959, + 0.014495456591248512, + -0.12723423540592194, + -0.05099230259656906, + -0.028033364564180374, + 0.062008388340473175, + -0.047515783458948135, + 0.06866226345300674, + 0.06973440200090408, + -0.01254610251635313, + -0.12264926731586456, + 0.05011133849620819, + 0.005483763758093119, + -0.04735272750258446, + -0.005182335618883371, + 0.023156730458140373, + 0.058352719992399216, + -0.05474437400698662, + 0.0773390680551529, + -0.03342011570930481, + 0.00724061531946063, + 0.0013312582159414887, + 0.06093275919556618, + -0.002350590657442808, + 0.03031829372048378, + 0.02610485441982746, + -0.02183263748884201, + 0.09804344177246094, + 0.05246538668870926, + -0.00952284038066864, + -0.007698044180870056, + 0.03347545117139816, + -0.010083856992423534, + 0.010148060508072376, + -0.014271695166826248, + 0.12467992305755615, + -0.02952960506081581, + -0.054702818393707275, + -0.07794363051652908, + 0.06427215784788132, + -0.0887594223022461, + 0.0009083970217034221, + -0.01957768015563488, + -2.3232077595025658e-08, + -0.03235411271452904, + -0.049048058688640594, + 0.013932397589087486, + -0.03830861300230026, + 0.03567834943532944, + -0.04652735963463783, + -0.050735071301460266, + -0.03582872077822685, + -0.08205701410770416, + -0.049956172704696655, + 0.07742913067340851, + 0.012017656117677689, + -0.02910012938082218, + 0.014060195535421371, + 0.09223189204931259, + -0.0070648035034537315, + -0.042426299303770065, + 0.08273600786924362, + -0.0427081398665905, + -0.018495189025998116, + -0.0701633095741272, + 0.020447876304388046, + 0.030769016593694687, + 0.03825746104121208, + 0.0042810458689928055, + -0.02380620315670967, + -0.05802376940846443, + -0.018064510077238083, + 0.02172747440636158, + 0.10664153844118118, + 0.08899746090173721, + 0.09046308696269989, + 0.025447068735957146, + -0.01965811476111412, + -0.05866698920726776, + 0.035192813724279404, + -0.014408189803361893, + 0.025957178324460983, + 0.017991244792938232, + 0.10306902974843979, + 0.009274515323340893, + -0.15881216526031494, + 0.014073446393013, + 0.009338082745671272, + -0.04897778108716011, + 0.0168220903724432, + 0.11415696144104004, + -0.07854379713535309, + -0.07421321421861649, + -0.08006303757429123, + -0.028758279979228973, + 0.040605802088975906, + -0.005266053136438131, + 0.06060954928398132, + -0.008224627934396267, + -0.0322558656334877, + 0.10750129818916321, + 0.10708712786436081, + -0.04319014772772789, + 0.01332341693341732, + 0.14213231205940247, + 0.03830929473042488, + -0.019560983404517174, + 0.03855232149362564 + ], + "eyedropper-bold||colors,color picker,sample,arts": [ + -0.014520305208861828, + -0.06974350661039352, + -0.007157682906836271, + 0.03092501498758793, + 0.11294785887002945, + -0.03651054576039314, + 0.145407572388649, + -0.059733446687459946, + 0.017746970057487488, + -0.003657091176137328, + -0.0511145293712616, + -0.04129556939005852, + 0.032437682151794434, + -0.06342440843582153, + -0.04093778505921364, + 0.13576464354991913, + -0.04771706089377403, + -0.021136485040187836, + -0.03070899285376072, + 0.0037541871424764395, + -0.0021045953035354614, + -0.04450934752821922, + 0.04413295537233353, + -0.03622017055749893, + -0.044938620179891586, + 0.017299024388194084, + 0.06843765825033188, + 0.04515209421515465, + 0.01670154556632042, + -0.10452306270599365, + -0.014735079370439053, + 0.008869636803865433, + 0.11578043550252914, + -0.008421757258474827, + 0.013318164274096489, + 0.01846739649772644, + -0.046404242515563965, + 0.018917124718427658, + -0.09430578351020813, + 0.08297436684370041, + -0.010327939875423908, + -0.029808053746819496, + -0.035039957612752914, + 0.005822762381285429, + -0.036584652960300446, + -0.014328263700008392, + -0.011795928701758385, + -0.00492524541914463, + -0.04926150292158127, + 0.023908328264951706, + -0.06549935787916183, + -0.10716108232736588, + -0.11635243892669678, + -0.030876176431775093, + -0.01973734423518181, + 0.04006758704781532, + -0.055429331958293915, + -0.06132204085588455, + 0.09778763353824615, + -0.049808427691459656, + 0.00021872593788430095, + 0.03151676431298256, + -0.0029048079159110785, + -0.02146170660853386, + 0.015908004716038704, + 0.027471277862787247, + 0.021692095324397087, + -0.016495076939463615, + 0.013949730433523655, + -0.07143282890319824, + 0.004679869394749403, + 0.010313083417713642, + 0.007330722641199827, + 0.011440414935350418, + -0.01589440368115902, + 0.037653207778930664, + 0.06983500719070435, + -0.045507632195949554, + 0.024254104122519493, + -0.05064697563648224, + -0.025926630944013596, + -0.03770676627755165, + -0.012744874693453312, + 0.034231919795274734, + 0.09556908160448074, + 0.05556367337703705, + -0.10481518507003784, + -0.01928337849676609, + -0.04966612905263901, + 0.0011896651703864336, + -0.04270022734999657, + 0.02251686155796051, + -0.042147815227508545, + -0.04349847510457039, + 0.0011932163033634424, + 0.025176554918289185, + 0.05364919826388359, + -0.06276538968086243, + -0.042152222245931625, + 0.061219919472932816, + 0.03811686113476753, + -0.051333554089069366, + 0.06885051727294922, + -0.005035616923123598, + -0.05808276683092117, + -0.08995667845010757, + 0.0022554027382284403, + 0.05492781847715378, + 0.02518768608570099, + -0.000684592523612082, + 0.052949100732803345, + -0.05162009969353676, + -0.02734101191163063, + -0.03458554670214653, + 0.0240920502692461, + 0.020041000097990036, + -0.044460080564022064, + -0.03260526806116104, + 0.1044132187962532, + 0.0589582659304142, + 0.05470549315214157, + 0.0073982528410851955, + -0.009360398165881634, + -0.03839392215013504, + 0.03376172110438347, + -0.02230050228536129, + -0.027561364695429802, + -6.0032799553631544e-34, + 0.0916820541024208, + 0.016625231131911278, + -0.007867063395678997, + 0.0293146762996912, + 0.0004375960270408541, + -0.02869611419737339, + -0.01907820999622345, + -0.0024644590448588133, + -0.07659835368394852, + -0.0008652950054965913, + 0.04906584322452545, + 0.03131863847374916, + -0.044092509895563126, + 0.07097584754228592, + 0.026467863470315933, + -0.038811326026916504, + -0.015449678525328636, + 0.09574858099222183, + -0.12068506330251694, + -0.012563838623464108, + -0.055412907153367996, + 0.08899495005607605, + -0.03468793258070946, + 0.0016726150643080473, + -0.04290815442800522, + -0.0027361619286239147, + -0.02068261057138443, + -0.015033755451440811, + 0.03794180601835251, + 0.009783923625946045, + 0.024187900125980377, + 0.048268385231494904, + 0.06018787994980812, + 0.04159191995859146, + -0.008005281910300255, + 0.0459873341023922, + -0.029245909303426743, + 0.01526783499866724, + 0.06436058133840561, + 0.06950988620519638, + -0.06150015816092491, + 0.026346124708652496, + 0.08969475328922272, + 0.03266686201095581, + 0.03726116567850113, + 0.11676652729511261, + -0.0316912978887558, + 0.00893954373896122, + 0.020465075969696045, + 0.02450665459036827, + -0.009742897003889084, + -0.04095924645662308, + 0.03043285198509693, + 0.044701818376779556, + 0.036747273057699203, + 0.04349205642938614, + -0.01500558853149414, + 0.09664992988109589, + 0.046534463763237, + -0.09185656160116196, + 0.026849500834941864, + 0.042889323085546494, + 0.02766524814069271, + 0.00952443853020668, + 0.02503286860883236, + 0.04785081744194031, + -0.052086494863033295, + -0.03377076983451843, + 0.046062860637903214, + -0.03325236216187477, + -0.017836058512330055, + 0.06363789737224579, + 0.020937614142894745, + -0.009620052762329578, + 0.02656962163746357, + -0.03248990699648857, + 0.07507476210594177, + -0.04575750604271889, + 0.047270696610212326, + -0.07083379477262497, + -0.10349828749895096, + 0.003473909106105566, + -0.09589793533086777, + -0.03098307177424431, + -0.04433981329202652, + 0.03572484105825424, + 0.0192215945571661, + -0.07935240864753723, + -0.023877805098891258, + -0.05688134953379631, + -0.02632901258766651, + 0.004600538406521082, + -0.12671782076358795, + -0.1318412572145462, + -0.09636957198381424, + -3.511523738908947e-34, + 0.05866947025060654, + -0.020263081416487694, + 0.05405033752322197, + 0.10770727694034576, + 0.0016340293223038316, + 0.06251686066389084, + 0.04418030008673668, + 0.03341158106923103, + 0.023506706580519676, + -0.034888897091150284, + 0.06164366006851196, + 0.030025264248251915, + -0.03153925761580467, + -0.012425325810909271, + -0.03894302621483803, + 0.014340892434120178, + -0.013042024336755276, + 0.06755875051021576, + -0.0654144212603569, + 0.032411545515060425, + -0.06314095854759216, + 0.011119569651782513, + -0.024341901764273643, + -0.030733231455087662, + -0.07334749400615692, + 0.043596331030130386, + -0.012372756376862526, + -0.05491051822900772, + 0.010630665346980095, + -0.02394763007760048, + -0.025744706392288208, + -0.04528333619236946, + 0.002956497948616743, + 0.019841155037283897, + -0.03717803582549095, + 0.0035839753691107035, + 0.025382548570632935, + -0.09710194170475006, + -0.03422616794705391, + 0.09624853730201721, + -0.0028188617434352636, + -0.047774672508239746, + 0.014376865699887276, + 0.025052132084965706, + -0.031892403960227966, + -0.06711788475513458, + -0.0558963343501091, + 0.008854108862578869, + 0.024842122569680214, + -0.011886218562722206, + -0.03220989182591438, + -0.020256374031305313, + -0.02687966823577881, + 0.008231558836996555, + -0.08403556048870087, + -0.06372863054275513, + 0.05895386263728142, + -0.005301786586642265, + -0.012598701752722263, + 0.0983068197965622, + -0.04608935862779617, + 0.02978404425084591, + -0.02960488386452198, + 0.028958149254322052, + 0.05966208875179291, + -0.012038552202284336, + 0.05078985542058945, + 0.0022797994315624237, + 0.055812351405620575, + -0.004636434372514486, + 0.0996512845158577, + -0.031424231827259064, + 0.06626524776220322, + 0.0441693440079689, + 0.0914621576666832, + -0.017724450677633286, + 0.04135856777429581, + 0.04233295097947121, + -0.023847360163927078, + 0.0010625629220157862, + -0.009590908885002136, + 0.015349253080785275, + 0.027073590084910393, + 0.07695930451154709, + -0.032170362770557404, + 0.10013028234243393, + 0.09190194308757782, + 0.059009257704019547, + -0.013341639190912247, + -0.10422305762767792, + -0.0046987649984657764, + 0.05064307525753975, + 0.0872589647769928, + 0.025747912004590034, + -0.024947095662355423, + -2.100755658318576e-08, + -0.03955887630581856, + 0.027495669201016426, + 0.0209824088960886, + -0.02471292018890381, + 0.0451042465865612, + -0.012507092207670212, + 0.002968577202409506, + -0.07443621009588242, + -0.06797651946544647, + 0.026069507002830505, + 0.038304466754198074, + 0.018444931134581566, + -0.025414632633328438, + -0.05711522325873375, + 0.07774526625871658, + -0.04815208539366722, + 0.007048911415040493, + 0.07427433878183365, + -0.025183187797665596, + -0.060260381549596786, + -0.03573217615485191, + 0.06436379998922348, + 0.024429352954030037, + -0.07033458352088928, + -0.017301280051469803, + 0.029133521020412445, + -0.10819894820451736, + -0.008689673617482185, + -0.006101645529270172, + 0.07879634946584702, + 0.04993254691362381, + 0.11766012012958527, + 0.08635258674621582, + -0.004372410476207733, + -0.06459135562181473, + -0.014638570137321949, + -0.1085662990808487, + -0.022268185392022133, + -0.04751582071185112, + 0.04008236527442932, + -0.07464384287595749, + 0.02372594177722931, + -0.04724355787038803, + -0.0427594855427742, + -0.037771955132484436, + -0.011882430873811245, + 0.07589276134967804, + -0.11223836243152618, + -0.04722612351179123, + 0.0020234938710927963, + -0.07694199681282043, + -0.017192961648106575, + 0.01234521996229887, + 0.0372699610888958, + -0.00468028336763382, + -0.08235730230808258, + -0.017312951385974884, + 0.14073410630226135, + -0.04840803146362305, + 0.012698584236204624, + 0.07162559032440186, + 0.02443986013531685, + -0.06431708484888077, + 0.029082858934998512 + ], + "eyedropper-sample-bold||colors,color picker,arts": [ + -0.012802399694919586, + -0.052707720547914505, + 3.842495789285749e-05, + 0.020940013229846954, + 0.11610588431358337, + -0.03025093860924244, + 0.14560820162296295, + -0.060712333768606186, + 0.026391470804810524, + -0.006558486260473728, + -0.058430831879377365, + -0.048035502433776855, + 0.022514378651976585, + -0.06584421545267105, + -0.037122514098882675, + 0.13120156526565552, + -0.0433821901679039, + -0.027399670332670212, + -0.034761544317007065, + 0.006228276528418064, + -0.0069127436727285385, + -0.04909055680036545, + 0.04952147603034973, + -0.04471772536635399, + -0.047077570110559464, + 0.01652362570166588, + 0.07310689240694046, + 0.044990357011556625, + 0.021569209173321724, + -0.09528514742851257, + 0.0032109087333083153, + 0.010299560613930225, + 0.11335216462612152, + -0.022843794897198677, + 0.034415774047374725, + -0.0013014625292271376, + -0.0528995580971241, + 0.022219153121113777, + -0.08880724012851715, + 0.0923202782869339, + 0.004586691036820412, + -0.02631947211921215, + -0.03526007756590843, + 0.0018539290176704526, + -0.03354958817362785, + -0.003789570415392518, + -0.005722572095692158, + 0.0018800427205860615, + -0.04343570023775101, + 0.04540359601378441, + -0.0696520283818245, + -0.09587696194648743, + -0.1141585037112236, + -0.03773242607712746, + -0.01861092448234558, + 0.037088509649038315, + -0.05112704634666443, + -0.07374720275402069, + 0.09247300028800964, + -0.050038211047649384, + 0.0015152422711253166, + 0.028303535655140877, + -0.012893726117908955, + -0.015556653030216694, + 0.018939949572086334, + 0.026281733065843582, + 0.013451787643134594, + -0.00922979786992073, + 0.018652617931365967, + -0.08569018542766571, + 0.006787740625441074, + 0.02514616772532463, + 0.01007431373000145, + 0.014175509102642536, + -0.009056953713297844, + 0.03955703601241112, + 0.04812958836555481, + -0.053384508937597275, + 0.026199057698249817, + -0.05832837149500847, + -0.0215945765376091, + -0.03909703344106674, + -0.016861537471413612, + 0.04131513833999634, + 0.09077945351600647, + 0.06292800605297089, + -0.09978180378675461, + -0.004546283278614283, + -0.059588778764009476, + -0.009022830985486507, + -0.038319285959005356, + 0.04080608859658241, + -0.06221600994467735, + -0.03573094308376312, + -0.010489726439118385, + 0.026647036895155907, + 0.046874601393938065, + -0.061383165419101715, + -0.017818087711930275, + 0.0610562264919281, + 0.04849355295300484, + -0.050333306193351746, + 0.07154250890016556, + 0.004960011690855026, + -0.07323671132326126, + -0.09911665320396423, + 0.004185614176094532, + 0.0601370707154274, + 0.0318869911134243, + 0.0027875720988959074, + 0.061935264617204666, + -0.04406995326280594, + -0.020001232624053955, + -0.017934255301952362, + 0.037713006138801575, + 0.01613220013678074, + -0.04279981553554535, + -0.01477184146642685, + 0.07693353295326233, + 0.041191332042217255, + 0.04717817157506943, + 0.015985863283276558, + -0.025383343920111656, + -0.03486504778265953, + 0.03743281960487366, + -0.01970480941236019, + -0.019701890647411346, + -7.546108025622753e-34, + 0.08192414045333862, + -0.0010927094845101237, + 0.007142342627048492, + 0.028380492702126503, + 0.006742935162037611, + -0.022951355203986168, + -0.02380288578569889, + -0.008549737744033337, + -0.06446397304534912, + 0.01265499833971262, + 0.04705425351858139, + 0.018780425190925598, + -0.04281264916062355, + 0.06379197537899017, + 0.00877100694924593, + -0.023664580658078194, + -0.027832234278321266, + 0.09174060076475143, + -0.12389814853668213, + 0.0007347030332311988, + -0.05357079207897186, + 0.08467675000429153, + -0.028889410197734833, + 0.0043959841132164, + -0.04413508251309395, + 0.0063541182316839695, + -0.031762633472681046, + -0.0005123316077515483, + 0.03608047589659691, + 0.007187526673078537, + 0.016797790303826332, + 0.055077504366636276, + 0.05838896334171295, + 0.03524122014641762, + -0.006370672956109047, + 0.05222649872303009, + -0.006904236041009426, + 0.018106501549482346, + 0.05544975399971008, + 0.0732395350933075, + -0.039739105850458145, + 0.03928570821881294, + 0.11748693883419037, + 0.03569360077381134, + 0.0254252627491951, + 0.10498113185167313, + -0.022547563537955284, + -0.0023936491925269365, + 0.0400223508477211, + 0.02586228772997856, + -0.026999659836292267, + -0.048029523342847824, + 0.02722426876425743, + 0.03461480140686035, + 0.04170724377036095, + 0.05997864902019501, + -0.017802465707063675, + 0.09796221554279327, + 0.052847281098365784, + -0.09062133729457855, + 0.02811478078365326, + 0.038767144083976746, + 0.021191610023379326, + 0.01040242612361908, + 0.04062001407146454, + 0.055532850325107574, + -0.05320728197693825, + -0.04852931573987007, + 0.046210095286369324, + -0.02958960086107254, + -0.009673754684627056, + 0.05389055609703064, + -0.002125632716342807, + -0.020512161776423454, + 0.02052401192486286, + -0.03254055231809616, + 0.07956364750862122, + -0.027955228462815285, + 0.049997881054878235, + -0.06122451648116112, + -0.09360305964946747, + -0.001755950041115284, + -0.10723769664764404, + -0.047591522336006165, + -0.049543410539627075, + 0.04999696835875511, + 0.026519037783145905, + -0.08186514675617218, + -0.020384768024086952, + -0.06509564816951752, + -0.016647305339574814, + 0.005066547077149153, + -0.13389451801776886, + -0.13512909412384033, + -0.09976102411746979, + -2.2478663934200263e-34, + 0.05367370322346687, + -0.011535623110830784, + 0.06086980178952217, + 0.11050572246313095, + 0.012099606916308403, + 0.05970517545938492, + 0.04865707457065582, + 0.026136944070458412, + 0.03125026822090149, + -0.021586628630757332, + 0.0587744303047657, + 0.020874006673693657, + -0.027413008734583855, + -0.014602158218622208, + -0.040190912783145905, + 0.015615556389093399, + -0.008320420980453491, + 0.05909328535199165, + -0.08258366584777832, + 0.03147745504975319, + -0.07195756584405899, + 0.024340352043509483, + -0.009487802162766457, + -0.024316800758242607, + -0.07948306947946548, + 0.04417778551578522, + -0.01885051280260086, + -0.06346359103918076, + 0.018399670720100403, + -0.03671550378203392, + -0.028012149035930634, + -0.05403934419155121, + -0.007271487731486559, + 0.015408641658723354, + -0.03723957762122154, + -0.004675929434597492, + 0.03529561683535576, + -0.1044403612613678, + -0.032649848610162735, + 0.09589197486639023, + -0.008953956887125969, + -0.05465121567249298, + -0.00011029460438294336, + 0.016939595341682434, + -0.0390004962682724, + -0.0646757036447525, + -0.05114273726940155, + 0.004929544869810343, + 0.020285561680793762, + -0.012695040553808212, + -0.038085367530584335, + -0.004702608101069927, + -0.03718193992972374, + 0.022793831303715706, + -0.06856557726860046, + -0.06502123177051544, + 0.05514449626207352, + -0.005000714678317308, + 0.0008715767180547118, + 0.10060358792543411, + -0.0561763234436512, + 0.03480814769864082, + -0.04910837486386299, + 0.019474642351269722, + 0.06853549927473068, + -0.009310707449913025, + 0.05012843757867813, + 0.0020881390664726496, + 0.06067978963255882, + 0.004677512217313051, + 0.08862878382205963, + -0.03581816330552101, + 0.07023024559020996, + 0.03513205796480179, + 0.08752938359975815, + -0.037174489349126816, + 0.02544802613556385, + 0.04722641408443451, + -0.01657552644610405, + -0.008497764356434345, + -0.021539969369769096, + 0.009248396381735802, + 0.032433558255434036, + 0.09156258404254913, + -0.024052325636148453, + 0.09236841648817062, + 0.08899667859077454, + 0.04017014428973198, + -0.017523664981126785, + -0.09219536185264587, + 0.008449465967714787, + 0.039122190326452255, + 0.0957389622926712, + 0.038229331374168396, + -0.014945192262530327, + -2.075414151647692e-08, + -0.03035406395792961, + 0.02278013899922371, + 0.025524813681840897, + -0.020307885482907295, + 0.04177749902009964, + -0.017902184277772903, + 0.004436063580214977, + -0.06545088440179825, + -0.05998240038752556, + 0.027418065816164017, + 0.042923007160425186, + 0.007620506454259157, + -0.030404601246118546, + -0.060151755809783936, + 0.06831866502761841, + -0.040382616221904755, + 0.0015968442894518375, + 0.07386299222707748, + -0.02581990510225296, + -0.05607480928301811, + -0.04152077063918114, + 0.05605144426226616, + 0.019808964803814888, + -0.07423250377178192, + -0.020626775920391083, + 0.04674519598484039, + -0.10306643694639206, + -0.015221848152577877, + -0.007924101315438747, + 0.07553476840257645, + 0.03930314630270004, + 0.10717269778251648, + 0.0809091106057167, + -0.005299919284880161, + -0.048962097615003586, + -0.03162463754415512, + -0.11648161709308624, + -0.01958557590842247, + -0.04254620894789696, + 0.01804584637284279, + -0.1014394462108612, + 0.023548327386379242, + -0.050187643617391586, + -0.037050459533929825, + -0.02382747083902359, + -0.012089002877473831, + 0.06222069635987282, + -0.10247796028852463, + -0.045563217252492905, + 0.01830102689564228, + -0.0787348598241806, + -0.02872924692928791, + 0.014609034173190594, + 0.031255193054676056, + 0.0006790640763938427, + -0.08107168227434158, + -0.011678116396069527, + 0.13984091579914093, + -0.056975867599248886, + 0.011812381446361542, + 0.08187083899974823, + 0.018737297505140305, + -0.08311233669519424, + 0.012420278042554855 + ], + "eyeglasses-bold||vision,spectacles": [ + 0.017713725566864014, + -0.02833847887814045, + -0.006848129443824291, + -0.004080322105437517, + 0.006571007426828146, + -0.06565600633621216, + 0.14910124242305756, + -0.034915219992399216, + -0.03673505410552025, + 0.028935810551047325, + -0.013046693988144398, + -0.028170308098196983, + 0.02636108547449112, + -0.021077925339341164, + -0.03701692447066307, + -0.010313297621905804, + -0.0034179992508143187, + 0.00028503802604973316, + 0.0016101018991321325, + 0.09940100461244583, + 0.05702902004122734, + 0.008505896665155888, + -0.008175741881132126, + 0.07765287160873413, + 0.03934455290436745, + 0.024197328835725784, + 0.02283346839249134, + -0.03786945715546608, + -0.019087176769971848, + -0.018974870443344116, + -0.07259318232536316, + -0.005128003656864166, + 0.06504453718662262, + -0.0018215624149888754, + 0.021843772381544113, + -0.015356166288256645, + 0.0031935940496623516, + -0.00044381991028785706, + -0.04105965793132782, + 0.03673594072461128, + -0.044701166450977325, + -0.030279364436864853, + -0.07707960903644562, + 0.018484879285097122, + -0.0009903803002089262, + -0.0038816307205706835, + 0.04807860776782036, + 0.038364168256521225, + -0.011544263921678066, + 0.018911978229880333, + -0.11700719594955444, + -0.09695228189229965, + -0.13331469893455505, + -0.0966074988245964, + 0.06109094247221947, + 0.06693876534700394, + -0.09326877444982529, + 0.00772385997697711, + 0.05900264531373978, + -0.012965322472155094, + 0.06848707050085068, + -0.029691705480217934, + -0.01198999211192131, + 0.10092068463563919, + -0.03535425662994385, + 0.026168271899223328, + 0.020903339609503746, + 0.02480306662619114, + -0.001140440464951098, + 0.013095613569021225, + -0.011363833211362362, + 0.018196983262896538, + -0.009016916155815125, + -0.08271978795528412, + -0.013935117982327938, + 0.006459943018853664, + 0.09746740013360977, + -0.09676790237426758, + -0.03734663873910904, + -0.01573306694626808, + -0.041102077811956406, + -0.05250747501850128, + 0.0015884974272921681, + -0.0170515738427639, + 0.01776222139596939, + 0.011683356016874313, + -0.08508679270744324, + -0.07529392093420029, + 0.00868095364421606, + -0.05460145324468613, + -0.06251710653305054, + -0.0038856298197060823, + -0.05690033361315727, + -0.01094676274806261, + 0.04452831670641899, + -0.02293422259390354, + 0.023352086544036865, + 0.0218187365680933, + -0.034318991005420685, + 0.07198270410299301, + 0.09067262709140778, + 0.0044462066143751144, + 0.07527364045381546, + 0.013888852670788765, + -0.0019663842394948006, + 0.006586626637727022, + 0.006981842685490847, + 0.02531302534043789, + 0.030351638793945312, + 0.05665423721075058, + -0.004507285077124834, + -0.05014338716864586, + 0.002409694017842412, + -0.020728887990117073, + -0.045743703842163086, + -0.023905495181679726, + -0.022804658859968185, + -0.010316270403563976, + 0.1419210284948349, + 0.04572662338614464, + 0.01739886775612831, + -0.007608259562402964, + 0.07631020992994308, + -0.031559135764837265, + 0.003945228178054094, + 0.010910196229815483, + -0.007404570933431387, + -2.8206857548484367e-33, + 0.010827646590769291, + 0.05361473932862282, + 0.0067198919132351875, + 0.07384728640317917, + 0.007822713814675808, + -0.0012635139282792807, + -0.03258959949016571, + 0.021467629820108414, + -0.06543197482824326, + 0.025776103138923645, + 0.0028819565195590258, + 0.026053156703710556, + -0.04755733907222748, + 0.04481642693281174, + 0.08117137104272842, + -0.02479744702577591, + 0.013413275592029095, + 0.036232661455869675, + -0.12484150379896164, + 0.005263518542051315, + -0.04294668510556221, + 0.05229375138878822, + -0.08057083934545517, + 0.04157059267163277, + -0.01687633991241455, + -0.0286392979323864, + 0.02734088897705078, + -0.006489875726401806, + -0.08936654031276703, + 0.050815220922231674, + 0.04311985895037651, + 0.0830727368593216, + 0.034886009991168976, + -0.021607931703329086, + -0.010232546366751194, + 0.03775179758667946, + -0.0556204617023468, + -0.011103013530373573, + 0.043197717517614365, + 0.00965882558375597, + -0.09282749891281128, + 0.0419468954205513, + 0.03857628256082535, + 0.0027303933165967464, + 0.0028151709120720625, + 0.1307290643453598, + -0.04245472699403763, + 0.09397310763597488, + -0.07365450263023376, + -0.0017082329140976071, + 0.020622724667191505, + -0.0359976664185524, + -0.06781575828790665, + -0.05344487726688385, + -0.03562194108963013, + 0.007199953310191631, + -0.060111988335847855, + 0.05947933718562126, + 0.00014356081373989582, + -0.09733325242996216, + 0.005515678320080042, + -0.014250884763896465, + -0.0029587955214083195, + 0.004167327657341957, + -0.0405002236366272, + 0.030245663598179817, + -0.02214805595576763, + 0.05795057490468025, + 0.013231269083917141, + 0.028227131813764572, + 0.006672748830169439, + 0.04690997302532196, + -0.014512848109006882, + 0.014874448999762535, + 0.028505126014351845, + 0.010321238078176975, + 0.03186064958572388, + 0.004558941815048456, + 0.008419573307037354, + -0.03442474827170372, + -0.0959022119641304, + 0.06887765228748322, + -0.05305977910757065, + -0.008135518990457058, + 0.009873502887785435, + 0.02108175680041313, + 0.006689042784273624, + -0.07065495103597641, + 0.024756502360105515, + 0.029583536088466644, + 0.031297992914915085, + -0.04003549739718437, + -0.06615085154771805, + -0.1117004007101059, + -0.12067128717899323, + 6.764829480673143e-34, + 0.04069635272026062, + -0.011097434908151627, + 0.049106698483228683, + -0.04201969504356384, + 0.007788608316332102, + -0.02376478724181652, + 0.052080780267715454, + 0.05506898835301399, + 0.03309563174843788, + -0.032144371420145035, + 0.03474489599466324, + -0.01845594309270382, + -0.09600317478179932, + -0.06214249134063721, + -0.008247248828411102, + -0.026369495317339897, + 0.11703018844127655, + -0.052969060838222504, + -0.025363381952047348, + 0.010790463536977768, + 0.04271776229143143, + -0.032254409044981, + -0.01765216886997223, + 0.01030813530087471, + -0.07348271459341049, + 0.05537150427699089, + 0.011648135259747505, + -0.04042408987879753, + -0.0756857767701149, + -0.003954609856009483, + -0.01664990931749344, + -0.01236776914447546, + -0.013425739482045174, + 0.11879825592041016, + -0.011153769679367542, + 0.07454533129930496, + -0.033479008823633194, + -0.07640794664621353, + -0.04016243293881416, + -0.06363566964864731, + -0.03810478374361992, + -0.005506770219653845, + 0.08364512026309967, + 0.04679221287369728, + 0.015405380167067051, + -0.07055837661027908, + -0.005711405538022518, + 0.00019709802290890366, + -0.04813360795378685, + -0.025660619139671326, + -0.058426208794116974, + 0.0026650414802134037, + 0.0371401309967041, + 0.01428554579615593, + -0.13890762627124786, + -0.05068105459213257, + -0.02753576822578907, + 0.019692260771989822, + 0.06400222331285477, + 0.03807497397065163, + 0.026520073413848877, + 0.026479732245206833, + -0.10348818451166153, + 0.01976989582180977, + -0.004371799994260073, + 0.0010768561623990536, + -0.012374651618301868, + 0.012127292342483997, + 0.0739533081650734, + 0.011292199604213238, + 0.08339823782444, + -0.049004875123500824, + -0.01380021683871746, + 0.06285376101732254, + 0.0063378228805959225, + -0.03739917278289795, + 0.03104139119386673, + 0.08766063302755356, + 0.00523271644487977, + 0.0842747762799263, + 0.03075854294002056, + 0.0038802099879831076, + 0.024565493687987328, + 0.14674291014671326, + -0.02154383808374405, + 0.004416526295244694, + 0.05394316464662552, + 0.008556791581213474, + 0.0015292735770344734, + -0.012383059598505497, + -0.05801142007112503, + 0.04560750350356102, + -0.05140133947134018, + 0.022811230272054672, + 0.030019540339708328, + -1.6139916070301297e-08, + 0.015176537446677685, + 0.05135878175497055, + -0.01983199641108513, + -0.021932048723101616, + -0.03170585259795189, + -0.06034292280673981, + -0.09384043514728546, + -0.01611999236047268, + -0.076687753200531, + -0.07198452204465866, + -0.024459661915898323, + 0.04186755046248436, + -0.022580832242965698, + -0.007147355005145073, + 0.04997025057673454, + 0.000986805185675621, + -0.02698189578950405, + 0.06651019304990768, + -0.04590919241309166, + -0.03888571634888649, + 0.015932666137814522, + 0.004654936958104372, + 0.04373034089803696, + 0.05025975778698921, + -0.019553381949663162, + 0.0521048977971077, + -0.08526717871427536, + -0.026392845436930656, + 0.041164856404066086, + 0.12840214371681213, + 0.09201446920633316, + 0.082185298204422, + -0.0011221891036257148, + 0.053244732320308685, + -0.07761713117361069, + -0.050313983112573624, + -0.04620729759335518, + 0.02427217923104763, + 0.01342586986720562, + 0.039679743349552155, + -0.03364281356334686, + -0.13683675229549408, + 0.1150050014257431, + 0.0346069298684597, + -0.022852519527077675, + -0.03978812322020531, + 0.10741274058818817, + -0.044007591903209686, + -0.07241586595773697, + -0.04901227727532387, + 0.020675230771303177, + 0.013660534285008907, + 0.018681786954402924, + 0.09945855289697647, + -0.14282894134521484, + -0.11535616219043732, + 0.09013103693723679, + 0.04857143014669418, + -0.09777387976646423, + -0.00011878208169946447, + 0.07178044319152832, + 0.020724978297948837, + -0.0045158276334404945, + 0.015423673205077648 + ], + "eyes-bold||*new*,look,glance": [ + -0.03919413685798645, + -0.05942468345165253, + 0.002059836173430085, + 0.023204155266284943, + 0.038278378546237946, + -0.0434434674680233, + 0.07802022993564606, + -0.0803685113787651, + -0.027057163417339325, + 0.06745998561382294, + 0.04259766265749931, + -0.0309830941259861, + -0.021466700360178947, + -0.08225316554307938, + 0.04303225502371788, + 0.045416396111249924, + 0.009968026541173458, + 0.01970403641462326, + 0.02711600437760353, + 0.0011927703162655234, + 0.01850058138370514, + -0.026249459013342857, + -0.031134339049458504, + -0.00944929476827383, + -0.011758618988096714, + 0.039115119725465775, + 0.04304393753409386, + -0.022224674001336098, + 0.01576230302453041, + -0.08275807648897171, + -0.036049533635377884, + 0.03557445481419563, + 0.03561973571777344, + 0.05609152093529701, + -0.0039010753389447927, + 0.02770046703517437, + -0.027136104181408882, + 0.015578928403556347, + -0.056821126490831375, + -0.022856764495372772, + -0.07128876447677612, + -0.010076325386762619, + -0.09872203320264816, + 0.047726109623909, + -0.011383755132555962, + -0.01588117517530918, + 0.04827071353793144, + -0.015054387040436268, + 0.04573660343885422, + -0.017281625419855118, + -0.12313123792409897, + -0.1275818794965744, + -0.09353423118591309, + -0.045268427580595016, + 0.04657268151640892, + 0.05431453511118889, + -0.0782153382897377, + -0.05689714476466179, + 0.07184331119060516, + -0.010921075008809566, + 0.030843982473015785, + 0.019498977810144424, + 0.09994220733642578, + 0.01472612377256155, + -0.009032799862325191, + 0.009223191998898983, + 0.010962622240185738, + -0.04969058558344841, + -0.0036966921761631966, + 0.05086532607674599, + -0.04138059914112091, + 0.03993546962738037, + -0.03224392607808113, + -0.044842012226581573, + -0.10548217594623566, + 0.0026096650399267673, + 0.053000517189502716, + -0.06918662041425705, + 0.020531736314296722, + -0.010281026363372803, + -0.02627764642238617, + -0.022747967392206192, + -0.004315974190831184, + -0.026558492332696915, + 0.040466997772455215, + -0.003893287153914571, + -0.1468094140291214, + -0.09001969546079636, + -0.06938442587852478, + 0.011492462828755379, + -0.06669584661722183, + 0.04383765906095505, + -0.07397356629371643, + -0.012728160247206688, + -0.057907454669475555, + -0.008874236606061459, + 0.020967058837413788, + -0.03464513644576073, + -0.0300005916506052, + 0.0895627811551094, + 0.028518259525299072, + 0.051325201988220215, + 0.06712458282709122, + 0.032968226820230484, + -0.007064534816890955, + -0.030261823907494545, + 0.030185366049408913, + -0.020264772698283195, + -0.02451886422932148, + 0.03928627446293831, + 0.06287006288766861, + -0.06746586412191391, + -0.06108168512582779, + -0.07174260914325714, + -0.015277658589184284, + 0.004574878606945276, + -0.04944201931357384, + -0.0572197325527668, + 0.11048737168312073, + 0.09231442958116531, + 0.1055285781621933, + -0.021830841898918152, + -0.024909233674407005, + -0.015907004475593567, + 0.002844521775841713, + 0.017102370038628578, + -0.00605475390329957, + -2.021744121580776e-33, + 0.07259989529848099, + 0.10366588085889816, + -0.016869423910975456, + 0.0999750867486, + -0.04145783558487892, + -0.002500140108168125, + -0.006665300112217665, + 0.013848770409822464, + -0.14657409489154816, + 0.009365805424749851, + 0.0181504525244236, + 0.015116840600967407, + -0.04792898893356323, + 0.060505107045173645, + 0.04387178272008896, + -0.013435225002467632, + -0.01676619052886963, + -0.01707545667886734, + -0.03862394392490387, + 0.0006511789979413152, + -0.10309635102748871, + 0.03901088237762451, + -0.014511311426758766, + 0.013155999593436718, + -0.02786174975335598, + -0.07730317115783691, + 0.05370859429240227, + -0.11329318583011627, + -0.06872443854808807, + 0.03503544256091118, + 0.017282484099268913, + 0.09377386420965195, + 0.07404596358537674, + 0.02571733482182026, + -0.02025279775261879, + 0.005753741599619389, + -0.03842151165008545, + -0.01777641475200653, + 0.020085478201508522, + 0.02477448247373104, + -0.07696948200464249, + 0.04945778474211693, + 0.025319460779428482, + -0.011128637008368969, + -0.009646442718803883, + 0.14470656216144562, + -0.060607053339481354, + 0.08599183708429337, + -0.023556355386972427, + 0.016309916973114014, + 0.02322349138557911, + -0.0032855800818651915, + -0.01872384361922741, + 0.006731817033141851, + -0.06242377683520317, + -0.007906963117420673, + -0.017186732962727547, + 0.08475170284509659, + 0.026858549565076828, + -0.030956557020545006, + 0.03376305475831032, + 0.015428916551172733, + 0.02912053093314171, + 0.025291861966252327, + 0.013664182275533676, + 0.006441768258810043, + -0.02992198057472706, + 0.05600572004914284, + 0.030300527811050415, + -0.0021443082951009274, + -0.017557164654135704, + 0.027626672759652138, + -0.005906745791435242, + 0.0570552684366703, + -0.017450546845793724, + -0.017522504553198814, + 0.09369447827339172, + -0.029426513239741325, + 0.06435513496398926, + -0.08287876844406128, + 0.017182951793074608, + 0.08505574613809586, + -0.043891314417123795, + 0.014781045727431774, + 0.0227969978004694, + -0.03223726525902748, + 0.00560015207156539, + -0.078460194170475, + -0.047932107001543045, + -0.012015553191304207, + -3.50512818840798e-05, + -0.006469937041401863, + -0.01251052226871252, + -0.07578077912330627, + -0.1105751246213913, + -5.71897838142213e-34, + 0.0288598220795393, + -0.04167134314775467, + -0.023041430860757828, + -0.008040186017751694, + -0.08933892846107483, + 0.03602591156959534, + 0.03313647583127022, + 0.0554940290749073, + 0.06745646148920059, + 0.04444819688796997, + 0.046748850494623184, + -0.033772971481084824, + -0.0307418592274189, + -0.04233306646347046, + 0.06302878260612488, + 0.007962956093251705, + 0.01965264417231083, + -0.018106654286384583, + -0.06434422731399536, + 0.0784243792295456, + -0.004077547695487738, + -0.022349800914525986, + -0.018554527312517166, + -0.03638981655240059, + -0.04368457943201065, + 0.023491889238357544, + 0.09807676076889038, + 0.0012380253756418824, + -0.08992964774370193, + -0.040910754352808, + -0.0404588058590889, + -0.02936236374080181, + -0.006151811219751835, + 0.11616786569356918, + -0.03437638282775879, + 0.043661803007125854, + -0.061982475221157074, + -0.1106790080666542, + -0.00021909267525188625, + 0.09327373653650284, + -0.021147122606635094, + -0.010234257206320763, + 0.04933156073093414, + 0.0452018566429615, + -0.03945569321513176, + -0.04623888060450554, + -0.03328569978475571, + 0.002721416298300028, + -0.05412641912698746, + 0.024830609560012817, + -0.043942660093307495, + -0.034653883427381516, + -0.009010611101984978, + 0.012360010296106339, + -0.09287473559379578, + -0.01873609982430935, + 0.038343846797943115, + 0.05974613130092621, + 0.021815700456500053, + 0.03918543457984924, + 0.013280630111694336, + 0.0023785713128745556, + -0.11405311524868011, + 0.04993211850523949, + 0.031620804220438004, + -0.03363574668765068, + 0.015314380638301373, + -0.018352119252085686, + 0.06855635344982147, + -0.01959249936044216, + 0.11130072176456451, + -0.05533222109079361, + -0.03809232637286186, + 0.01126796379685402, + 0.0017435845220461488, + -0.016698705032467842, + 0.018811937421560287, + 0.019308703020215034, + -0.06283790618181229, + 0.03181098774075508, + -0.0583801344037056, + -0.0474596805870533, + 0.02561560645699501, + 0.058342475444078445, + 0.017427608370780945, + 0.07062186300754547, + 0.0004432775021996349, + 0.05591253936290741, + -0.020290639251470566, + -0.03984394669532776, + -0.11619038879871368, + 0.02738695777952671, + -0.04204939678311348, + -0.014452759176492691, + -0.05489092320203781, + -1.870740184983788e-08, + -0.08947446197271347, + -0.035845797508955, + -0.04350855574011803, + 0.014894847758114338, + 0.06270035356283188, + -0.031169326975941658, + -0.06451458483934402, + -0.022795207798480988, + -0.119142547249794, + -0.025112802162766457, + 0.06001869961619377, + 0.10199486464262009, + 0.019076384603977203, + 0.023370813578367233, + 0.05844547599554062, + 0.039535120129585266, + -0.012719769030809402, + 0.06191077083349228, + -0.03611629083752632, + -0.058720912784338, + -0.023393847048282623, + 0.04343416914343834, + 0.014964424073696136, + 0.041755612939596176, + 0.007789209019392729, + 0.02129412442445755, + -0.05868818983435631, + 0.012870851904153824, + 0.00047154066851362586, + 0.0893922820687294, + 0.1071239486336708, + 0.09105954319238663, + 0.026045572012662888, + -0.04075923562049866, + -0.089137963950634, + -0.00907102506607771, + -0.019861172884702682, + 0.0418076291680336, + 0.03821880370378494, + 0.05958728492259979, + -0.039744582027196884, + 0.0255555659532547, + 0.0007253495859913528, + 0.024593669921159744, + -0.06580262631177902, + -0.00704033812507987, + 0.08448092639446259, + -0.0666017234325409, + -0.017792673781514168, + -0.07252415269613266, + 0.004767572041600943, + -0.007882677018642426, + 0.003512503346428275, + 0.06541513651609421, + -0.030858274549245834, + -0.05941819027066231, + 0.07308729737997055, + 0.13863685727119446, + -0.011966493912041187, + 0.014684285037219524, + 0.1222124844789505, + -0.0024186517111957073, + 0.026328032836318016, + 0.011203058995306492 + ], + "face-mask-bold||ppe,facemask,covid-19,coronavirus,flu,cold": [ + -0.03217114135622978, + 0.027981532737612724, + -0.006506623700261116, + 0.052069082856178284, + 0.12457749992609024, + 0.01563144661486149, + 0.057739607989788055, + 0.01225733570754528, + -0.03349350020289421, + -0.015356088057160378, + 0.021250370889902115, + -0.07068189978599548, + 0.02091187797486782, + 0.028195876628160477, + 0.03705388680100441, + -0.011560175567865372, + -0.023637516424059868, + -0.017427736893296242, + 0.02116215042769909, + -0.023001722991466522, + -0.002717183204367757, + 0.04611395671963692, + 0.011448599398136139, + -0.005213569849729538, + 0.007420861162245274, + 0.03662499785423279, + -0.032202430069446564, + 0.018034351989626884, + 0.009815514087677002, + -0.00649871863424778, + -0.004642432555556297, + -0.052959538996219635, + 0.07391063123941422, + 0.024333715438842773, + -0.009274626150727272, + -0.017788635566830635, + -0.044560741633176804, + 0.022963788360357285, + -0.014559661969542503, + 0.08812151849269867, + -0.0021938886493444443, + -0.018599489703774452, + 0.00730001600459218, + 0.003618426388129592, + 0.029036685824394226, + 0.008359401486814022, + -0.10076647251844406, + 0.07807562500238419, + 0.00893776398152113, + -0.050452496856451035, + 0.009246976114809513, + -0.1293935328722, + -0.11171716451644897, + 0.045697130262851715, + -0.010387790389358997, + 0.008923700079321861, + -0.11402853578329086, + -0.09638741612434387, + 0.05278061702847481, + -0.009420736692845821, + -0.059580691158771515, + -0.026895655319094658, + 0.009960325434803963, + 0.10087919980287552, + -0.025421176105737686, + -0.01976257562637329, + 0.01964448019862175, + -0.011772437952458858, + 0.045632440596818924, + 0.06482023745775223, + -0.03440875560045242, + 0.036336444318294525, + -0.08524404466152191, + 0.0008231180254369974, + -0.101508229970932, + 0.06059258431196213, + 0.04630102962255478, + -0.06783555448055267, + 0.05611024051904678, + -0.024184875190258026, + 0.059561554342508316, + -0.02186286263167858, + 0.04291040450334549, + 0.043073490262031555, + 0.0738033726811409, + -0.025896886363625526, + -0.09173843264579773, + -0.03925018757581711, + -0.060627348721027374, + -0.004904618486762047, + -0.03590549901127815, + 0.0045209829695522785, + 0.05327804014086723, + 0.07490653544664383, + -0.06990937888622284, + 0.016985738649964333, + 0.03795827180147171, + 0.010113031603395939, + -0.0721265897154808, + 0.09483358263969421, + -0.08024969696998596, + -0.1217624843120575, + -0.03067127615213394, + 0.00785195454955101, + -0.04085380584001541, + -0.03103163093328476, + 0.008927231654524803, + -0.05077212676405907, + 0.017812369391322136, + -0.0047743916511535645, + 0.010119259357452393, + -0.000477183231851086, + -0.021471301093697548, + -0.11603188514709473, + -0.0020431007724255323, + 0.021962590515613556, + -0.017009416595101357, + -0.02914481982588768, + 0.08903291821479797, + 0.026166852563619614, + -0.031030112877488136, + -0.08926539123058319, + 0.008980369195342064, + -0.08699246495962143, + 0.030422329902648926, + 0.0482165701687336, + 0.020508941262960434, + 2.8157052403853003e-34, + 0.057045456022024155, + 0.05180010199546814, + 0.04473830386996269, + 0.07490844279527664, + 0.005367288365960121, + 0.02111709862947464, + -0.029850738123059273, + -0.05496611073613167, + -0.05377941578626633, + 0.06959280371665955, + 0.013950297608971596, + 0.06127926707267761, + -0.06521432101726532, + 0.12533238530158997, + -0.006479358766227961, + 0.04998040571808815, + 0.021980436518788338, + 0.007438165135681629, + -0.1345018595457077, + -0.00683034211397171, + 0.019886290654540062, + 0.04490847513079643, + 0.0023044589906930923, + 0.05863725394010544, + 0.017299113795161247, + 0.015637271106243134, + 0.009389633312821388, + -0.014489127323031425, + -0.025304606184363365, + -0.005297628231346607, + -0.02232041209936142, + 0.06754179298877716, + 0.08136977255344391, + -0.0034907825756818056, + -0.013069385662674904, + 0.019494276493787766, + -0.02080542780458927, + -0.049995433539152145, + 0.0030478450935333967, + 0.002151603577658534, + -0.0306459479033947, + 0.016076713800430298, + -0.05163763463497162, + -0.03755934163928032, + 0.08543359488248825, + 0.03352274000644684, + -0.06455867737531662, + -0.0014742502244189382, + -0.03930852562189102, + 0.05206830054521561, + -0.004140935838222504, + 0.0632714256644249, + -0.1146150678396225, + -0.026701100170612335, + -0.08048595488071442, + -0.00402182899415493, + -0.04843122884631157, + 0.07883015275001526, + 0.03853096067905426, + -0.015864156186580658, + 0.04900101199746132, + -0.026005521416664124, + 0.008232482708990574, + -0.05385065823793411, + -0.058629635721445084, + 0.04417620599269867, + -0.009359662421047688, + -0.0056275795213878155, + -0.06588514894247055, + 0.033207010477781296, + 0.04030121862888336, + 0.08279580622911453, + 0.0056806690990924835, + 0.00048742833314463496, + 0.03639782592654228, + 0.007444779388606548, + 0.02961563505232334, + 0.07921416312456131, + -0.04399196431040764, + -0.041100531816482544, + -0.13926450908184052, + 0.06641075760126114, + 0.012104597873985767, + 0.05409965664148331, + -0.06252886354923248, + 0.032895203679800034, + -0.012934664264321327, + -0.0010415625292807817, + -0.041673675179481506, + 0.015929562970995903, + 0.002369444817304611, + 0.052875399589538574, + 0.017260855063796043, + 0.0051630111411213875, + -0.10757844150066376, + -2.6897878467286516e-33, + -0.030029799789190292, + 0.004754289053380489, + -0.05738411098718643, + -0.06203365698456764, + -0.03608865290880203, + 0.10699900984764099, + 0.048762161284685135, + 0.06809741258621216, + 0.09107232838869095, + 0.03519536554813385, + 0.04467713087797165, + -0.020107464864850044, + -0.01598312333226204, + -0.09141890704631805, + 0.004125293344259262, + 0.008591189980506897, + 0.008374282158911228, + 0.08758928626775742, + -0.08207852393388748, + 0.03727862983942032, + -0.036607712507247925, + 0.02080897055566311, + -0.03697497025132179, + 0.0354909710586071, + 0.02341156080365181, + 0.03713618963956833, + 0.04998662695288658, + -0.027739757671952248, + -0.03419739007949829, + -0.04505566880106926, + -0.03252559155225754, + 0.03593581169843674, + 0.026530632749199867, + 0.11373390257358551, + -0.08391543477773666, + 0.030173825100064278, + -0.04059664160013199, + -0.08590301871299744, + -0.059957388788461685, + 0.013548853807151318, + -0.05938703939318657, + -0.029890429228544235, + 0.03743110969662666, + 0.11007089167833328, + 0.011501624248921871, + 0.019417617470026016, + -0.018221106380224228, + -0.06616032868623734, + 0.014766582287847996, + 0.02177206613123417, + -0.014935052022337914, + -0.02672460675239563, + -0.07823533564805984, + 0.0588776059448719, + -0.1244276762008667, + -0.03224244713783264, + -0.0576639287173748, + -0.022225074470043182, + 0.015152718871831894, + 0.02736486867070198, + 0.0013508442789316177, + -0.027593910694122314, + -0.08391749113798141, + 0.00507010892033577, + 0.037442468106746674, + -0.005913117900490761, + 0.04323173686861992, + -0.03752812370657921, + 0.10151463747024536, + -0.0038766178768128157, + 0.08226466178894043, + -0.07046987116336823, + -0.07206153869628906, + -0.005917757749557495, + -0.0346871092915535, + -0.015898464247584343, + 0.002765840385109186, + 0.08371475338935852, + -0.05125976726412773, + 0.11047185212373734, + -0.03382083401083946, + -0.0403931625187397, + -0.02445654757320881, + 0.06650499999523163, + 0.025312677025794983, + 0.023055855184793472, + 0.028366288170218468, + -0.030059488490223885, + -0.017385700717568398, + 0.011507249437272549, + -0.12261458486318588, + 0.04379203915596008, + -0.019303908571600914, + 0.007123569026589394, + -0.02574576437473297, + -2.2432885771195288e-08, + 0.08916371315717697, + -0.07074074447154999, + -0.03463875129818916, + -0.028057754039764404, + -0.028266848996281624, + -0.020672863349318504, + -0.04518704488873482, + -0.030642377212643623, + -0.026214102283120155, + 0.02478083036839962, + 0.04561058059334755, + 0.05493380129337311, + -0.027976160869002342, + -0.04970039054751396, + 0.03835132718086243, + 0.008177612908184528, + -0.10469716042280197, + 0.1037965640425682, + -0.04887455329298973, + -0.08126457780599594, + -0.09864509850740433, + 0.03522716462612152, + 0.01169513538479805, + -0.03208288922905922, + 0.01940799318253994, + 0.013052650727331638, + 0.05631761625409126, + 0.10783557593822479, + 0.03555149957537651, + 0.08920186758041382, + -0.031116195023059845, + 0.02726583182811737, + 0.025917282328009605, + -0.029133541509509087, + -0.022141648456454277, + 0.05142311006784439, + 0.06322760879993439, + -0.05448980629444122, + 0.05026639252901077, + 0.06805872917175293, + 0.023145200684666634, + -0.07349254190921783, + 0.02422756887972355, + 0.0005524777225218713, + -0.058663371950387955, + -0.001955887768417597, + 0.028078412637114525, + -0.06228724122047424, + -0.009489932097494602, + -0.050621721893548965, + 0.010590189136564732, + -0.06682238727807999, + -0.041749197989702225, + 0.06438811123371124, + -0.07340501993894577, + 0.003901308635249734, + 0.017434556037187576, + 0.005950095597654581, + 0.009540978819131851, + -0.03184035047888756, + 0.09555766731500626, + -0.1027136966586113, + 0.024046732112765312, + 0.06451033055782318 + ], + "facebook-logo-bold||logos,social media": [ + 0.030830681324005127, + 0.05676175281405449, + -0.07419856637716293, + 0.023051392287015915, + 0.11281360685825348, + -0.07305627316236496, + 0.0023420541547238827, + -0.06674790382385254, + 0.06064359471201897, + -0.009183680638670921, + 0.02132340520620346, + 0.087836854159832, + 0.025976216420531273, + -0.01790810190141201, + 0.06388849020004272, + -0.027591662481427193, + -0.02243529073894024, + 0.03267864137887955, + 0.027112456038594246, + -0.021265361458063126, + -0.06164786219596863, + -0.017682116478681564, + 0.017591718584299088, + 0.0156423207372427, + 0.016144657507538795, + -0.036533892154693604, + -0.017299406230449677, + -0.036144282668828964, + 0.013146748766303062, + -0.05398353934288025, + 0.01200941763818264, + 0.017684204503893852, + 0.05428917706012726, + 0.016558058559894562, + 0.013509457930922508, + 0.00913108978420496, + -0.0029468233697116375, + -0.013791315257549286, + 0.02092554233968258, + 0.03666943311691284, + 0.05123082175850868, + -0.08749217540025711, + 0.05536093935370445, + 0.06956399232149124, + -0.06450614333152771, + 0.03001592494547367, + -0.06327350437641144, + 0.00933437142521143, + -0.012309304438531399, + -0.018398655578494072, + -0.010875330306589603, + -0.1124928817152977, + -0.09329672157764435, + -0.013493302278220654, + -0.010705258697271347, + -0.02349940501153469, + -0.02602027915418148, + -0.010494852438569069, + 0.015532412566244602, + 0.010384922847151756, + 0.04715855419635773, + -0.006864957045763731, + 0.04827752336859703, + 0.09456828981637955, + 0.10290998965501785, + 0.02657926268875599, + -0.027361642569303513, + 0.05032528564333916, + -0.09286213666200638, + 0.04872271791100502, + 0.07260552048683167, + 0.0005826976266689599, + -0.03473059460520744, + -0.004387436434626579, + 0.012853383086621761, + -0.022534647956490517, + 0.06361177563667297, + 0.01728052832186222, + -0.012532290071249008, + -0.04929627478122711, + -0.03881654888391495, + -0.0335870236158371, + 0.010729175992310047, + -0.04742419347167015, + 0.07310919463634491, + 0.03622511401772499, + -0.1050562784075737, + -0.07675062119960785, + -0.023799853399395943, + 0.06429489701986313, + -0.10446188598871231, + 0.05749966576695442, + 0.034529492259025574, + 0.018960949033498764, + -0.1154894083738327, + 0.013577191159129143, + -0.02079625613987446, + -0.043762173503637314, + -0.0763494074344635, + 0.07184325158596039, + -0.04807477816939354, + 0.09936563670635223, + 0.0875510424375534, + -0.01995856501162052, + 0.02744203992187977, + 0.07746218144893646, + 0.00724188145250082, + 0.03138640522956848, + 0.017104098573327065, + 0.07916764169931412, + 0.015862878412008286, + -0.01420382410287857, + -0.05279981344938278, + -0.04622852802276611, + -0.0343010388314724, + -0.08430308103561401, + -0.008862592279911041, + -0.03397437557578087, + 0.17435957491397858, + -0.042311880737543106, + -0.004599013365805149, + 0.026345597580075264, + -0.05457659438252449, + -0.07582913339138031, + 0.012514735572040081, + 0.0154797388240695, + -0.06258625537157059, + -3.636092757893256e-33, + 0.04946006089448929, + 0.07308243960142136, + -0.00795906875282526, + 0.06742388755083084, + -0.0025669033639132977, + 0.05056597664952278, + -0.06634421646595001, + -0.09851130843162537, + -0.11609241366386414, + -0.002476553665474057, + 0.0425114631652832, + 0.07626962661743164, + 0.0015903925523161888, + 0.08134780079126358, + 0.043544188141822815, + -0.06495554745197296, + -0.003887403290718794, + -0.04836635664105415, + -0.08880201727151871, + -0.02824346534907818, + 0.022942716255784035, + 0.006096897646784782, + -0.09188701957464218, + -0.0022305194288492203, + -0.029541553929448128, + -0.06407684832811356, + 0.09987973421812057, + -0.006848104298114777, + -0.017932487651705742, + 0.017122751101851463, + -0.01224978081882, + 0.07895389199256897, + -0.003740107174962759, + -0.006965331267565489, + 0.05471094697713852, + -0.027757063508033752, + 0.008942394517362118, + -0.007983388379216194, + 0.019961891695857048, + 0.023382583633065224, + -0.007930410094559193, + -0.01055647898465395, + -0.045962560921907425, + 0.02845560386776924, + -0.004384403117001057, + 0.16506710648536682, + -0.003132144920527935, + -0.1030648872256279, + 0.06217523664236069, + -0.021413110196590424, + 0.028224557638168335, + -0.051046665757894516, + -0.03737514093518257, + 0.019734997302293777, + -0.015031823888421059, + -0.0408717505633831, + -0.03594966605305672, + 0.04186749830842018, + 0.009318157099187374, + -0.0321439728140831, + 0.0357900969684124, + -0.017559755593538284, + 0.05929306894540787, + -0.012487061321735382, + -0.020666690543293953, + 0.09961235523223877, + -0.021363554522395134, + 0.05947008728981018, + 0.024648567661643028, + -0.05075710639357567, + 0.04783784970641136, + 0.06150704622268677, + 0.05167766287922859, + -0.038378965109586716, + -0.08620993047952652, + 0.038601722568273544, + 0.0025160496588796377, + -0.002314384328201413, + -0.03360699862241745, + 0.05989528447389603, + -0.00019463116768747568, + -0.016571760177612305, + -0.016868015751242638, + 0.04562806710600853, + 0.014047473669052124, + 0.02708788774907589, + 0.027239466086030006, + -0.05657830461859703, + -0.029746273532509804, + 0.015358811244368553, + -0.0406796894967556, + 0.046667829155921936, + 0.05178189277648926, + 0.018527599051594734, + -0.16363538801670074, + 2.0679899060520478e-33, + 0.03528912737965584, + 0.010305462405085564, + 0.07324764132499695, + -0.008257223293185234, + -0.005892529617995024, + -0.004749213811010122, + 0.06771399080753326, + 0.02644079364836216, + -0.019522715359926224, + 0.055059000849723816, + 0.03986901044845581, + -0.047294165939092636, + -0.1278647482395172, + -0.047065116465091705, + -0.0006697951466776431, + 0.0077153826132416725, + 0.09402076154947281, + 0.010894772596657276, + -0.10641637444496155, + -0.009150249883532524, + -0.023178277537226677, + -0.009261026978492737, + -0.043386369943618774, + 0.09945834428071976, + 0.016261346638202667, + 0.026729216799139977, + 0.011362846940755844, + 0.02514224871993065, + -0.05236336588859558, + -0.014746908098459244, + -0.027075709775090218, + -0.01436636783182621, + 0.03845382109284401, + 0.023815875872969627, + 0.0008876620559021831, + 0.0489412359893322, + -0.06293248385190964, + -0.0437278226017952, + 0.054334837943315506, + -0.037232134491205215, + -0.0018550356617197394, + -0.004588721785694361, + -0.0334489680826664, + 0.06963031738996506, + -0.02920854464173317, + 0.029371045529842377, + -0.06782687455415726, + -0.12335904687643051, + -0.07295238971710205, + 0.09583478420972824, + 0.027826134115457535, + -0.028300374746322632, + 0.04609531909227371, + 0.016285156831145287, + -0.1134408637881279, + -0.052360255271196365, + -0.0008520489209331572, + 0.07115572690963745, + -0.016774069517850876, + 0.07431069761514664, + 0.04633131995797157, + 0.04868251457810402, + -0.09208603203296661, + -0.014208918437361717, + -0.036555517464876175, + -0.021516434848308563, + 0.029540834948420525, + 0.0018929539946839213, + -0.028214463964104652, + 0.09521391987800598, + 0.03149305656552315, + 0.03839246928691864, + -0.018216971307992935, + 0.06959915161132812, + -0.003472732612863183, + -0.007355588022619486, + 0.1053813174366951, + 0.06152969226241112, + -0.07449144124984741, + 0.06270387023687363, + -0.057353392243385315, + 0.0027269606944173574, + -0.06990087032318115, + 0.05739668011665344, + 0.010291331447660923, + 0.0033021222334355116, + -0.04591262713074684, + -0.007227279245853424, + -0.030967453494668007, + -0.014833402819931507, + -0.03672010451555252, + 0.03471243008971214, + 0.010943855158984661, + -0.005792784038931131, + -0.007703144568949938, + -1.465514198883966e-08, + -0.04503060132265091, + -0.0725582093000412, + 0.0016046580858528614, + 0.03296702727675438, + 0.035645823925733566, + 0.02680022642016411, + -0.0028265223372727633, + -0.12202087044715881, + 0.018098775297403336, + -0.009015209972858429, + -0.0955129936337471, + -0.0013552277814596891, + -0.046116363257169724, + 0.007307236082851887, + -0.012599245645105839, + -0.03478146716952324, + -0.08898473531007767, + 0.01610128954052925, + 0.014334078878164291, + -0.010444214567542076, + -0.061563681811094284, + 0.04558142274618149, + -0.0076792496256530285, + -0.0034958920441567898, + 0.023425554856657982, + 0.01725083217024803, + -0.07575030624866486, + -0.04528968408703804, + 0.027326572686433792, + 0.05312803015112877, + -0.011657185852527618, + 0.04978371784090996, + 0.043067723512649536, + -0.03760658577084541, + -0.05909540876746178, + -0.025759343057870865, + -0.02186463586986065, + -0.028892941772937775, + -0.032581180334091187, + 0.02083563059568405, + 0.040910977870225906, + 0.021566178649663925, + 0.041739966720342636, + -0.024634167551994324, + -0.06485722959041595, + 0.025276707485318184, + 0.05160220339894295, + 0.028456399217247963, + -0.023367788642644882, + -0.09020082652568817, + -0.0014103817520663142, + 0.026350801810622215, + -0.02563101425766945, + 0.036835528910160065, + -0.04107606038451195, + -0.09118351340293884, + 0.02198026329278946, + 0.13529056310653687, + 0.042659834027290344, + 0.02154449373483658, + 0.15230830013751984, + -0.048641469329595566, + -0.020040512084960938, + -0.0226768609136343 + ], + "factory-bold||industry,manufacture,buildings,places,locations": [ + 0.0281430222094059, + -0.05318909510970116, + -0.0337420217692852, + 0.006589200347661972, + 0.02096736617386341, + 0.02171706035733223, + -0.012839141301810741, + -0.03944772109389305, + -0.09084382653236389, + -0.077205128967762, + 0.06695020943880081, + 0.002741969423368573, + 0.052632663398981094, + -0.04188155755400658, + -0.046962618827819824, + 0.05045360326766968, + 0.07674173265695572, + 0.027206450700759888, + 0.036459799855947495, + -0.0365876741707325, + 0.06592513620853424, + -0.00470828777179122, + 0.03790206462144852, + 0.028432799503207207, + 0.033289916813373566, + 0.06497630476951599, + 0.03680427372455597, + 0.0884532779455185, + 0.01136088464409113, + -0.07268325239419937, + -0.07645395398139954, + 0.05132262781262398, + 0.09436406940221786, + 0.015728313475847244, + 0.12821055948734283, + 0.04121159017086029, + -0.0010860138572752476, + -0.002236239844933152, + 0.06684068590402603, + -0.0010301708243787289, + 0.030675331130623817, + -0.058634087443351746, + -0.01987813040614128, + -0.0018029011553153396, + 0.006826321594417095, + 0.013975286856293678, + 0.005180698353797197, + -0.02593974955379963, + 0.03874722868204117, + -0.0018932530656456947, + -0.02056184783577919, + -0.05381784960627556, + -0.05497395619750023, + -0.013028943911194801, + 0.011593918316066265, + 0.0028554259333759546, + -0.07439223676919937, + -0.044882144778966904, + 0.02199999801814556, + -0.002846755553036928, + 0.07142983376979828, + -0.029408957809209824, + -0.03500211983919144, + 0.014258204028010368, + 0.07514120638370514, + -0.006053149234503508, + -0.03316107019782066, + 0.060930415987968445, + -0.09493258595466614, + -0.05371217429637909, + 0.03542349860072136, + -0.04722164198756218, + -0.02536729909479618, + 0.026018666103482246, + -0.08430538326501846, + -0.015366777777671814, + 0.042375124990940094, + 0.0017143487930297852, + -0.04649863764643669, + -0.07304698973894119, + -0.01603519171476364, + -0.03221145272254944, + -0.020891346037387848, + 0.013585164211690426, + -0.035081010311841965, + 0.04029645770788193, + -0.003391882637515664, + -0.02454453893005848, + 0.07763510942459106, + -0.010864009149372578, + -0.06665319204330444, + -0.07267450541257858, + -0.05685267224907875, + 0.04143853485584259, + -0.05707259848713875, + 0.05983372777700424, + 0.026584874838590622, + 0.06595209240913391, + 0.033238012343645096, + 0.028561364859342575, + 0.028732992708683014, + -0.011531931348145008, + 0.0018992582336068153, + 0.0007112288731150329, + -0.11493831127882004, + -0.039250537753105164, + -0.10875491797924042, + 0.06179057061672211, + -0.022604821249842644, + 0.03927086293697357, + -0.006164498161524534, + -0.002548863412812352, + -0.06672928482294083, + -0.034632593393325806, + -0.05998137965798378, + -0.03825611248612404, + -0.02702939324080944, + -0.06233574450016022, + 0.07094396650791168, + 0.030382663011550903, + -0.0323977954685688, + -0.02654999867081642, + -0.008346863090991974, + -0.028914745897054672, + -0.04686342924833298, + 0.03493156656622887, + -0.03953148424625397, + -3.94446202765439e-33, + 0.0013704129960387945, + 0.03670944273471832, + -0.025071917101740837, + 0.1181861013174057, + -0.002460525603964925, + 0.012236378155648708, + -0.028500018641352654, + 0.014679771848022938, + -0.028800103813409805, + 0.04659298062324524, + 0.05329899862408638, + 0.0050563630647957325, + -0.06844796240329742, + 0.016930561512708664, + 0.07059330493211746, + -0.027822664007544518, + -0.019916120916604996, + -0.05001755803823471, + -0.07544660568237305, + -0.012236171402037144, + -0.09382537007331848, + 0.0786919891834259, + -0.04655272513628006, + 0.04347096383571625, + 0.01766565628349781, + -0.02976669929921627, + 0.02472785674035549, + 0.007676882669329643, + -0.10037709772586823, + 0.05868739262223244, + 0.07518088072538376, + 0.07838645577430725, + 0.052940718829631805, + -0.034948498010635376, + 0.009718767367303371, + 0.020878825336694717, + -0.08246424049139023, + -0.0773690864443779, + -0.035834901034832, + 0.03384418040513992, + -0.06363082677125931, + 0.013867046684026718, + -0.031054122373461723, + 0.06093272566795349, + 0.03279487416148186, + 0.11244592815637589, + -0.04089301452040672, + -0.03628835827112198, + 0.07446195930242538, + 0.04782281070947647, + -0.0642218366265297, + 0.04386201873421669, + 0.009991747327148914, + -0.03897438570857048, + 0.06373043358325958, + 0.011587223969399929, + -0.041095390915870667, + -0.0019952894654124975, + 0.04781085625290871, + 0.021859658882021904, + -0.04072892665863037, + 0.08640068024396896, + 0.0033565370831638575, + 0.03431035205721855, + -0.007485230918973684, + 0.0266268327832222, + -0.012837527319788933, + 0.038009949028491974, + 0.07798559963703156, + 0.03406853601336479, + 0.05351788550615311, + -0.005646265111863613, + 0.040664397180080414, + 0.060627393424510956, + -0.025784794241189957, + 0.08168801665306091, + -0.05541444197297096, + 0.10158845782279968, + -0.023085756227374077, + -0.07418093085289001, + -0.1029890701174736, + 0.05078626051545143, + -0.07524235546588898, + 0.06998717039823532, + 0.04926638677716255, + -0.004413838963955641, + 0.04026583209633827, + -0.0585557259619236, + 0.00244938675314188, + 0.08572808653116226, + -0.10359411686658859, + 0.02711861953139305, + -0.0780336931347847, + -0.02949853055179119, + -0.09887045621871948, + -1.782007966380354e-35, + 0.06615723669528961, + -0.03679278492927551, + 0.010333175770938396, + -0.049966614693403244, + -0.051922835409641266, + 0.008402377367019653, + -0.03135327994823456, + -0.011949907056987286, + 0.036628205329179764, + 0.09972940385341644, + -0.018758194521069527, + 0.028907889500260353, + 0.01576494425535202, + -0.03194820135831833, + -0.06603559106588364, + 0.02612304501235485, + 0.05282142758369446, + -0.004109250381588936, + -0.06814426183700562, + 0.011361639946699142, + -0.026568960398435593, + -0.021388649940490723, + -0.06753414869308472, + 0.06613238900899887, + -0.060673970729112625, + 0.031724654138088226, + -0.09884818643331528, + -0.02920498512685299, + -0.05386264994740486, + -0.04532311484217644, + -0.08049686998128891, + -0.0776866003870964, + 0.04364002123475075, + 0.11740388721227646, + -0.10808157920837402, + 0.039992690086364746, + 0.03588441386818886, + -0.0346207432448864, + 0.07611747831106186, + -0.006826893426477909, + 0.04859422892332077, + -0.024300727993249893, + -0.01919286511838436, + 0.14490754902362823, + -0.07652349770069122, + -0.09031513333320618, + -0.07811450958251953, + -0.13218364119529724, + 0.04097510874271393, + 0.021763883531093597, + 0.02797774411737919, + 0.05004492029547691, + -0.0162104070186615, + 0.0007234559743665159, + -0.06244736909866333, + -0.0137663958594203, + 0.04790163412690163, + -0.012979947030544281, + -0.09041871130466461, + 0.06875348836183548, + 0.026298753917217255, + 0.06145654246211052, + -0.03477258235216141, + 0.049924757331609726, + 0.028022954240441322, + -0.05111243203282356, + 0.04596984386444092, + -0.012920260429382324, + 0.041551679372787476, + -0.035908520221710205, + 0.04853406548500061, + 0.018938662484288216, + -0.041523389518260956, + 0.035008352249860764, + -0.03599584847688675, + -0.016820698976516724, + 0.04791733995079994, + 0.0577586404979229, + -0.04641171172261238, + -0.008268984965980053, + 0.03925681114196777, + -0.04636033996939659, + -0.032510317862033844, + 0.1101517602801323, + -0.003911912441253662, + 0.04411095753312111, + 0.01703965850174427, + -0.007681954186409712, + 0.031403545290231705, + -0.007582862861454487, + -0.02894732356071472, + 0.010937724262475967, + -0.10897160321474075, + -0.03969387710094452, + -0.08571120351552963, + -2.0915761567152913e-08, + -0.025966862216591835, + -0.02466650679707527, + -0.007414687424898148, + 0.00566109549254179, + -0.02282045967876911, + -0.11536353081464767, + 0.02656477689743042, + 0.023313038051128387, + -0.036886848509311676, + 0.04809197038412094, + -0.0006663242820650339, + -0.006335870362818241, + -0.06102761998772621, + 0.014459065161645412, + 0.0222618468105793, + -0.004917052574455738, + -0.07909797877073288, + 0.08543355017900467, + -0.060245856642723083, + -0.0489722415804863, + 0.015062153339385986, + 0.08035148680210114, + 0.05399712920188904, + 0.045111410319805145, + -0.010054536163806915, + 0.014791111461818218, + -0.033276040107011795, + -0.022681858390569687, + 0.06886862963438034, + 0.09024471789598465, + 0.030409054830670357, + 0.06717681139707565, + 0.0003038834547623992, + -0.023794155567884445, + -0.09251785278320312, + -0.06088854745030403, + 0.015156695619225502, + -0.047892797738313675, + -0.045822545886039734, + -0.01686658151447773, + -0.01735149510204792, + -0.07755843549966812, + -0.03988150879740715, + 0.014700350351631641, + 0.07055004686117172, + 0.05010417476296425, + -0.009661761112511158, + -0.041870150715112686, + -0.04740191623568535, + -0.038946449756622314, + -0.04561217129230499, + -0.007371015381067991, + 0.04926912114024162, + 0.06635629385709763, + -0.05568376183509827, + -0.049458231776952744, + 0.0026296484284102917, + -0.025480875745415688, + 0.019170643761754036, + -0.011409775353968143, + 0.1261630356311798, + -0.024843772873282433, + 0.061864789575338364, + 0.04603066295385361 + ], + "faders-bold||music,audio,sliders,filters,equalizer,volume,settings,preferences": [ + 0.010832775384187698, + -0.04791766405105591, + 0.0021781923715025187, + 0.03882130980491638, + 0.018804971128702164, + 0.015245696529746056, + 0.034980833530426025, + -0.04423099756240845, + -0.0019131505396217108, + -0.033289603888988495, + 0.016185203567147255, + -0.010276667773723602, + 0.008641394786536694, + -0.06833574175834656, + 0.019514355808496475, + 0.06684637814760208, + 0.02672230638563633, + 0.06239628791809082, + -0.04996149614453316, + -0.03611792251467705, + -0.025585250928997993, + -0.0009788048919290304, + -0.046359654515981674, + 0.03689702972769737, + -0.012805743142962456, + 0.03448783606290817, + 0.015449997037649155, + 0.05521019920706749, + 0.05224953964352608, + -0.08039889484643936, + 0.048662494868040085, + -0.029681522399187088, + 0.13405141234397888, + 0.03441683575510979, + -0.10158608853816986, + -0.08102765679359436, + -0.022672249004244804, + -0.054910313338041306, + -0.024984009563922882, + 0.027081122621893883, + 0.012331708334386349, + -0.004493711981922388, + 0.012555073946714401, + -0.025901783257722855, + -0.1324859857559204, + -0.04237182438373566, + -0.05041050165891647, + -0.08122202008962631, + 0.007089688442647457, + -0.026593687012791634, + 0.05907990410923958, + -0.07887119799852371, + -0.04224545881152153, + 0.04008178785443306, + -0.03336189314723015, + 0.00013898925681132823, + -0.07144977152347565, + 0.05578785017132759, + 0.07613488286733627, + -0.02368950843811035, + -0.04837489128112793, + -0.024388471618294716, + 0.0811566412448883, + 0.022084105759859085, + -0.00764038972556591, + 0.04664093628525734, + 0.03438262268900871, + 0.04267314076423645, + -0.019924350082874298, + 0.01132264081388712, + -0.02107476070523262, + -0.011859015561640263, + -0.012385768815875053, + 0.010242447257041931, + -0.008545310236513615, + -0.012909354642033577, + 0.04762593284249306, + 0.004235210362821817, + -0.10360294580459595, + 0.017618797719478607, + -0.014459749683737755, + -0.11863673478364944, + -0.05177249386906624, + -0.06741809844970703, + 0.04161614924669266, + 0.03401251137256622, + -0.06978049129247665, + -0.07296908646821976, + -0.053336963057518005, + -0.011387825943529606, + -0.09929454326629639, + -0.0394141711294651, + -0.02365807443857193, + -0.017926761880517006, + -0.039160698652267456, + 0.010037143714725971, + 0.025813937187194824, + -0.047432564198970795, + 0.03460554778575897, + 0.04196939244866371, + -0.0251453910022974, + -0.045244552195072174, + 0.06174534931778908, + 0.06466276198625565, + -0.06629520654678345, + -0.10895481705665588, + -0.026591520756483078, + 0.09213311970233917, + 0.0027044815942645073, + 0.01219603605568409, + 0.012868707068264484, + -0.082412488758564, + -0.021000221371650696, + -0.049903351813554764, + 0.05201059579849243, + 0.0023735531140118837, + 0.017865516245365143, + 0.04723426699638367, + 0.10751409083604813, + -0.01135358214378357, + 0.06982750445604324, + -0.011940359137952328, + -0.04721282422542572, + -0.04579281806945801, + 0.04355359077453613, + 0.013746144250035286, + -0.016716552898287773, + -1.6151275849908922e-33, + 0.04833552986383438, + -0.054160986095666885, + -0.056733500212430954, + 0.04384290799498558, + 0.038920894265174866, + 0.0029151523485779762, + 0.019404703751206398, + -0.0060161021538078785, + -0.04894889146089554, + -0.033267486840486526, + 0.059162769466638565, + 0.10733507573604584, + -0.05870853364467621, + 0.05098041892051697, + 0.05829329043626785, + -0.08091679215431213, + 0.04834986850619316, + 0.0443238839507103, + -0.031085848808288574, + -0.06318596005439758, + -0.06945774704217911, + 0.049882881343364716, + -0.008459235541522503, + -0.0035991116892546415, + -8.855284977471456e-05, + 0.043934863060712814, + 0.03145195171236992, + -0.021112361922860146, + -0.04156091436743736, + -0.01860997825860977, + -0.007207340095192194, + 0.0268851388245821, + 0.06126369163393974, + 0.0017538276733830571, + 0.029263637959957123, + 0.07439316809177399, + -0.06603328883647919, + 0.0589827224612236, + 0.10840007662773132, + -0.09745897352695465, + -0.10806120932102203, + -0.06417497247457504, + -0.0836237445473671, + -0.035757385194301605, + -0.011858530342578888, + 0.06544239073991776, + 0.00772723788395524, + 0.035296645015478134, + 0.061049092561006546, + 0.05343686416745186, + 0.002611638279631734, + 0.009629200212657452, + -0.03644588589668274, + 0.018349455669522285, + 0.048728954046964645, + -0.05081513524055481, + -0.012932967394590378, + 0.1056971326470375, + 0.031795430928468704, + 0.03342536836862564, + 0.07452426105737686, + 0.04210912808775902, + 0.061653342097997665, + -0.11682406067848206, + 0.04754681885242462, + 0.09621889144182205, + 0.058325331658124924, + -0.013111528940498829, + 0.02040807716548443, + -0.040885865688323975, + -0.02360501140356064, + 0.01637117937207222, + 0.060064759105443954, + 0.0775088295340538, + -0.028789794072508812, + 0.03842800110578537, + 0.008029605261981487, + -0.008323200047016144, + 0.07206124067306519, + -0.0688415914773941, + -0.09304812550544739, + 0.05860210210084915, + -0.08069789409637451, + 0.08888140320777893, + -0.019668158143758774, + 0.043357063084840775, + 0.003983254078775644, + -0.06298060715198517, + -0.04575785994529724, + -0.004325516521930695, + -0.08406458795070648, + 0.04803747311234474, + -0.03277379646897316, + -0.009826208464801311, + -0.0859178900718689, + -1.1163146387431164e-33, + 0.07543926686048508, + 0.043154116719961166, + -0.03209485858678818, + 0.09601099789142609, + 0.02273094840347767, + 0.05742615833878517, + 0.030985454097390175, + 0.044427648186683655, + 0.07000274956226349, + 0.0028039179742336273, + 0.09854689240455627, + -0.03223545849323273, + -0.05183978006243706, + -0.08277011662721634, + -0.07047285884618759, + 0.038022879511117935, + 0.027386337518692017, + 0.028903188183903694, + 0.012153060175478458, + -0.03333674743771553, + -0.06052245572209358, + 0.01963992230594158, + -0.030438313260674477, + 0.04720154032111168, + -0.08096101135015488, + -0.027613118290901184, + 0.03202453628182411, + 0.005110202357172966, + -0.027505049481987953, + -0.043667715042829514, + 0.01409768033772707, + -0.04555464908480644, + -0.02027713507413864, + -0.08335863053798676, + 0.0058317845687270164, + -0.020144077017903328, + 0.026293670758605003, + 0.05054478347301483, + -0.030966177582740784, + -0.027053507044911385, + -0.04997433349490166, + 0.03585194796323776, + 0.028928404673933983, + 0.03690234571695328, + 0.014311078935861588, + 0.036718618124723434, + 0.02858087234199047, + -0.029940996319055557, + 0.006155720911920071, + 0.010721656493842602, + 0.09483636170625687, + -0.030580922961235046, + 0.04060368239879608, + 0.008070191368460655, + -0.10285060107707977, + -0.0746140405535698, + -0.004143921192735434, + -0.014318344183266163, + 0.010806523263454437, + 0.062434177845716476, + 0.03204023092985153, + 0.046669721603393555, + -0.05381591245532036, + -0.04221765697002411, + -0.06104027107357979, + 0.022994715720415115, + 0.05309094116091728, + -0.044965799897909164, + 0.009131191298365593, + 0.01063502486795187, + 0.0707591250538826, + -0.08169814944267273, + 0.04877776280045509, + -0.011480996385216713, + 0.012202643789350986, + -0.06251226365566254, + -0.03796354681253433, + -0.05496876686811447, + -0.03861059620976448, + 0.05406147241592407, + 0.003042839001864195, + 0.010257357731461525, + 0.045604806393384933, + -0.037253301590681076, + -0.036588266491889954, + 0.059118397533893585, + -0.015443519689142704, + 0.0203652735799551, + 0.013981882482767105, + -0.003508675144985318, + -0.0353831872344017, + 0.03789079189300537, + 0.024561813101172447, + -0.02372187003493309, + -0.0788499265909195, + -2.2502446128669362e-08, + 0.00042068312177434564, + -0.0008212573011405766, + -0.006996833719313145, + -0.08916264027357101, + -0.021768638864159584, + -0.029560033231973648, + 0.052975963801145554, + -0.033481501042842865, + -0.0659351795911789, + -0.05854552984237671, + 0.07020609825849533, + -0.009832174517214298, + 0.02051764726638794, + 0.03660320118069649, + 0.04152502864599228, + 0.02893724851310253, + -0.054509904235601425, + 0.12240912765264511, + -0.0008814557804726064, + -0.06495878100395203, + -0.03886062651872635, + 0.032645709812641144, + 0.0625622570514679, + -0.10524405539035797, + 0.10547420382499695, + 0.05661148577928543, + -0.03273443877696991, + 0.03309790417551994, + 0.05754639953374863, + 0.047274451702833176, + 0.05199746415019035, + 0.0335998460650444, + 0.05719694867730141, + -0.03485887870192528, + -0.05321011692285538, + -0.013321197591722012, + -0.0489584356546402, + -0.04231218621134758, + -0.09484034031629562, + 0.1175341084599495, + -0.04377922788262367, + -0.07650890201330185, + -0.03817184269428253, + 0.019767018035054207, + -0.044546082615852356, + 0.0038737263530492783, + 0.11069222539663315, + -0.0326920822262764, + -0.11287306249141693, + -0.033591754734516144, + 0.015414723195135593, + -0.020648125559091568, + -0.004978033248335123, + 0.0468750074505806, + 0.029970942065119743, + -0.09937161952257156, + -0.018071411177515984, + 0.10720733553171158, + -0.06547712534666061, + 0.0011240552412346005, + 0.04711523652076721, + 0.023162640631198883, + 0.047956183552742004, + 0.06829467415809631 + ], + "faders-horizontal-bold||music,audio,sliders,filters,equalizer,volume,settings,preferences": [ + 0.011815827339887619, + -0.024614309892058372, + 0.003187905065715313, + 0.00827130489051342, + -0.005326128099113703, + 0.03521085903048515, + 0.016216391697525978, + -0.049782030284404755, + -0.00018383306451141834, + -0.032961536198854446, + 0.030350081622600555, + 0.021285787224769592, + 0.017754273489117622, + -0.039013639092445374, + 0.004483224358409643, + 0.04893426597118378, + 0.009471138007938862, + 0.07015564292669296, + -0.04539899900555611, + -0.032914791256189346, + -0.03761156648397446, + -0.028087005019187927, + -0.07279223203659058, + 0.02883262187242508, + -0.03376520797610283, + 0.05153677985072136, + 0.005278510041534901, + 0.06869596987962723, + 0.06475362181663513, + -0.10089170187711716, + 0.0382535420358181, + -0.006562499795109034, + 0.10226920992136002, + 0.0338405966758728, + -0.1167471632361412, + -0.10031269490718842, + -0.03219505399465561, + -0.046472612768411636, + -0.015621542930603027, + 0.04121164605021477, + 0.010721460916101933, + -0.013655491173267365, + -0.0019967053085565567, + -0.009734478779137135, + -0.13992612063884735, + -0.061437468975782394, + -0.06986913084983826, + -0.08214091509580612, + 0.029601000249385834, + -0.0070619466714560986, + 0.055506523698568344, + -0.08365607261657715, + -0.03195741027593613, + 0.08129148185253143, + -0.03170859068632126, + 0.0014391560107469559, + -0.05456289276480675, + 0.06372200697660446, + 0.08653653413057327, + -0.037994273006916046, + -0.013577320612967014, + -0.02387416921555996, + 0.09976110607385635, + 0.012812924571335316, + 0.004667989909648895, + 0.027915334329009056, + 0.0060855248011648655, + 0.03428446874022484, + -0.023381810635328293, + 0.026034153997898102, + -0.013399096205830574, + -0.043964143842458725, + -0.0060311248525977135, + -0.030147822573781013, + -0.00024257582845166326, + -0.01705450378358364, + 0.041882168501615524, + 0.009041517041623592, + -0.1205158457159996, + 0.013566139154136181, + 0.005517967976629734, + -0.08750803023576736, + -0.055289290845394135, + -0.05098393186926842, + 0.0045553045347332954, + 0.026436368003487587, + -0.07685383409261703, + -0.060021188110113144, + -0.048666585236787796, + -0.013032101094722748, + -0.10030051320791245, + -0.022917088121175766, + -0.012835177592933178, + -0.03385527431964874, + -0.04970599338412285, + -0.004783925134688616, + 0.0035136910155415535, + -0.055038195103406906, + 0.027055295184254646, + 0.039253588765859604, + -0.015883076936006546, + -0.06387440860271454, + 0.05538411810994148, + 0.05036213994026184, + -0.04103648662567139, + -0.10683868825435638, + -0.04547275975346565, + 0.0769309476017952, + 0.005751410499215126, + 0.006019154097884893, + -0.0005094814114272594, + -0.045697033405303955, + -0.034327808767557144, + -0.03012629970908165, + 0.05991150066256523, + 0.006637428421527147, + 0.018880857154726982, + 0.07451193779706955, + 0.09384942799806595, + -0.00889682862907648, + 0.07838171720504761, + -0.005419000517576933, + -0.06349270790815353, + -0.03726625069975853, + 0.050020426511764526, + 0.04352886602282524, + -0.016860049217939377, + -2.249579722354098e-33, + 0.044652052223682404, + -0.07283764332532883, + -0.039807118475437164, + 0.057365771383047104, + 0.055690694600343704, + -0.002010998548939824, + 0.015159408561885357, + 0.01143686193972826, + -0.058921657502651215, + -0.04332260414958, + 0.07665513455867767, + 0.1050710380077362, + -0.07110822200775146, + 0.044586796313524246, + 0.05436139553785324, + -0.10963139683008194, + 0.034537170082330704, + 0.035106632858514786, + -0.06158732622861862, + -0.05370885878801346, + -0.0815383642911911, + 0.026264218613505363, + 0.009882833808660507, + -0.010537044145166874, + 0.016868632286787033, + 0.03232740983366966, + 0.01549635361880064, + -0.03949293494224548, + -0.05194342881441116, + -0.012060355395078659, + -0.02985212579369545, + 0.02344369702041149, + 0.07380090653896332, + -0.02210244908928871, + 0.04337261989712715, + 0.08183620125055313, + -0.07185762375593185, + 0.06878001987934113, + 0.1049506738781929, + -0.07736573368310928, + -0.12295187264680862, + -0.06968356668949127, + -0.08176735043525696, + -0.049103956669569016, + 0.0018004393205046654, + 0.07667295634746552, + 0.024882005527615547, + 0.04968363791704178, + 0.05444104224443436, + 0.03959887847304344, + 0.009492824785411358, + 0.016819456592202187, + -0.04242578521370888, + 0.0033350554294884205, + 0.060037147253751755, + -0.053094424307346344, + -0.016473965719342232, + 0.1381778120994568, + 0.017264733090996742, + 0.023625437170267105, + 0.07905139774084091, + 0.03262701258063316, + 0.049601372331380844, + -0.1129768043756485, + 0.0401654951274395, + 0.07354500889778137, + 0.04023439809679985, + -0.013861079700291157, + 0.03067641519010067, + -0.025462906807661057, + -0.018002144992351532, + 0.011408562771975994, + 0.05941855534911156, + 0.08513779193162918, + -0.02857046201825142, + 0.028709225356578827, + -0.015711709856987, + 0.0049071041867136955, + 0.08842207491397858, + -0.07115019857883453, + -0.0869542807340622, + 0.07563341408967972, + -0.06606363505125046, + 0.041633881628513336, + -0.019340530037879944, + 0.0344356968998909, + 0.006350735668092966, + -0.055656757205724716, + -0.040004558861255646, + -0.028863167390227318, + -0.10581197589635849, + 0.06317222863435745, + 0.0024492270313203335, + 0.0024118577130138874, + -0.08152808994054794, + -1.1598777247006211e-33, + 0.06882967054843903, + 0.027710670605301857, + -0.042615413665771484, + 0.06916873157024384, + 0.0053392318077385426, + 0.06926989555358887, + 0.03816574066877365, + 0.057504549622535706, + 0.04072553664445877, + 0.032902754843235016, + 0.10411059856414795, + -0.024930693209171295, + -0.08673828095197678, + -0.0769801139831543, + -0.060513533651828766, + 0.03591557964682579, + 0.04095713421702385, + 0.028816083446145058, + 0.017913926392793655, + -0.027314765378832817, + -0.04549029842019081, + 0.00832549761980772, + -0.04258435592055321, + 0.05268526449799538, + -0.07419108599424362, + -0.02927258610725403, + 0.055121637880802155, + 0.015619122423231602, + -0.0162056777626276, + -0.02973572351038456, + 0.013784758746623993, + -0.051437750458717346, + -0.007039523217827082, + -0.094752237200737, + -0.014634517952799797, + -0.03781348094344139, + 0.010931974276900291, + 0.04913852736353874, + -0.009313548915088177, + -0.04080113768577576, + -0.0672864243388176, + 0.034974757581949234, + 0.07562282681465149, + 0.030154969543218613, + 0.00779405003413558, + 0.01725148968398571, + 0.013752857223153114, + -0.004906006623059511, + 0.002107266802340746, + 0.02125687338411808, + 0.06658535450696945, + -0.016883522272109985, + 0.030931927263736725, + 0.00943240337073803, + -0.1019403487443924, + -0.0791974812746048, + -0.04334444925189018, + -0.004016319289803505, + 0.0015935067785903811, + 0.06475343555212021, + 0.017556631937623024, + 0.04631100222468376, + -0.05234764143824577, + -0.061548225581645966, + -0.05226200073957443, + 0.04295967146754265, + 0.05298903211951256, + -0.07406968623399734, + 0.0007303218590095639, + 0.01280885934829712, + 0.07946928590536118, + -0.05394112691283226, + 0.031068870797753334, + -0.028968777507543564, + 0.005098205991089344, + -0.06260395050048828, + -0.02640671283006668, + -0.043263815343379974, + -0.03643545135855675, + 0.03309314697980881, + -0.014346723444759846, + -0.015585768036544323, + 0.05165877193212509, + -0.02370278723537922, + -0.054027531296014786, + 0.041290611028671265, + -0.02599111571907997, + 0.023324254900217056, + 0.037166427820920944, + 0.006715924944728613, + -0.028136303648352623, + 0.016916876658797264, + 0.02418079786002636, + -0.03337782248854637, + -0.04807763546705246, + -2.2942332478237404e-08, + 0.011896923184394836, + -0.029424741864204407, + 0.00911211408674717, + -0.08297207951545715, + -0.035014569759368896, + -0.00935391429811716, + 0.0585942380130291, + -0.035018812865018845, + -0.03435138240456581, + -0.06304257363080978, + 0.07090695947408676, + 0.00518171489238739, + 0.021331537514925003, + 0.04675779864192009, + 0.03360358625650406, + 0.02516655996441841, + -0.05649051442742348, + 0.1393253207206726, + 0.01742890477180481, + -0.04781477525830269, + -0.027707060799002647, + 0.022924819961190224, + 0.06006056070327759, + -0.07643073797225952, + 0.09959596395492554, + 0.07529514282941818, + -0.05169703811407089, + 0.05833239108324051, + 0.05995159596204758, + 0.03302842751145363, + 0.03515121340751648, + 0.03893840312957764, + 0.0545806884765625, + -0.03224089369177818, + -0.02864852361381054, + -0.028782011941075325, + -0.0497627854347229, + -0.0185394324362278, + -0.07718401402235031, + 0.08699338138103485, + -0.053989216685295105, + -0.07600583136081696, + -0.028260305523872375, + 0.016939878463745117, + -0.013314035721123219, + -0.008788902312517166, + 0.11858208477497101, + -0.015375162474811077, + -0.10916866362094879, + -0.032980188727378845, + 0.023527368903160095, + -0.02608407661318779, + 0.004290023818612099, + 0.0519636832177639, + 0.04671075567603111, + -0.07553187757730484, + -0.020441103726625443, + 0.0874413326382637, + -0.07982910424470901, + -0.014977260492742062, + 0.04808420687913895, + 0.042503658682107925, + 0.030603177845478058, + 0.06752213090658188 + ], + "fallout-shelter-bold||*new*,radiation,radioactive,nuclear,bunker,contamination,quarantine,toxic,danger,caution": [ + 0.0467599593102932, + 0.0332961268723011, + -0.019850846379995346, + 0.09486101567745209, + 0.10129395127296448, + 0.005978497210890055, + 0.08309963345527649, + 0.008298175409436226, + -0.06083124876022339, + 0.03861314803361893, + 0.06184123083949089, + -0.0677875354886055, + 0.11594683676958084, + 0.026940850540995598, + -0.031096959486603737, + 0.03886108472943306, + 0.021628867834806442, + -0.01946997083723545, + -0.015377846546471119, + 0.03580787405371666, + -0.10103504359722137, + 0.04491078853607178, + 0.00631291139870882, + 0.049159273505210876, + 0.022366605699062347, + 0.02931046485900879, + -0.025804787874221802, + 0.03345894441008568, + -0.021106384694576263, + -0.03668192774057388, + 0.005875192116945982, + 0.03097348101437092, + 0.0912245362997055, + -0.052958909422159195, + 0.127520352602005, + 0.09426260739564896, + -0.030541300773620605, + -0.02585088089108467, + -0.047270767390728, + 0.0280052050948143, + -0.0700969249010086, + -0.07529540359973907, + -0.0020897057838737965, + 0.06727728247642517, + -0.0701625719666481, + -0.005878637079149485, + -0.06815933436155319, + -0.09663532674312592, + 0.024851899594068527, + -0.011958461254835129, + 0.0658726766705513, + -0.04777956381440163, + -0.12730127573013306, + 0.04167187586426735, + 0.01089728157967329, + -0.1008244976401329, + -0.02949117310345173, + -0.020096318796277046, + -0.04465401545166969, + 0.017082450911402702, + 0.05792465806007385, + 0.002079848200082779, + -0.03823278844356537, + 0.03218281641602516, + 0.11973237991333008, + 0.021375836804509163, + -0.014401928521692753, + 0.06007533147931099, + 0.05069724842905998, + 0.005639438517391682, + -0.0004889372503384948, + 0.033348921686410904, + -0.01864631660282612, + -0.06851106882095337, + -0.041696302592754364, + -0.009882387705147266, + 0.006459848955273628, + 0.0418078638613224, + 0.04106396809220314, + -0.013270619325339794, + -0.0027175021823495626, + -0.04807712510228157, + -0.005572296213358641, + -0.09633293747901917, + -0.05286254733800888, + 0.09077690541744232, + -0.05195387080311775, + -0.02500145323574543, + 0.010506471619009972, + -0.0016711949137970805, + -0.06431988626718521, + 0.0008829095750115812, + 0.06372007727622986, + 0.07890944182872772, + -0.05115349963307381, + 0.06445284932851791, + -0.007090916857123375, + -0.06520535051822662, + -0.03284411132335663, + 0.03756529837846756, + 0.04883171245455742, + -0.03136780112981796, + -0.0701601579785347, + -0.0024074562825262547, + -0.01644238270819187, + -0.12974311411380768, + -0.02183852344751358, + -0.05666211247444153, + -0.03967184200882912, + 0.040882889181375504, + -0.015591809526085854, + -0.05068526044487953, + -0.007085803896188736, + -0.05739603191614151, + 0.01335826888680458, + 0.04849822819232941, + 0.02061436139047146, + -0.05635311082005501, + 0.02348150499165058, + 0.04780372604727745, + 0.08699968457221985, + -0.03398317098617554, + 0.011758670210838318, + -0.015068930573761463, + -0.013838785700500011, + -0.09651374816894531, + 0.01796615496277809, + -3.395843385762274e-33, + 0.06545618921518326, + 0.07097844034433365, + -0.016138292849063873, + 0.10724835097789764, + 0.053946662694215775, + -0.040929071605205536, + -0.05053205415606499, + -0.07060648500919342, + -0.0548291839659214, + 0.07336446642875671, + 0.021902943029999733, + 0.03917710483074188, + -0.03666146099567413, + -0.005012966226786375, + 0.03217492625117302, + -0.031146282330155373, + -0.05354133993387222, + 0.03735494241118431, + -0.011694739572703838, + -0.002448164625093341, + -0.06641802191734314, + 0.0193689726293087, + -0.008301181718707085, + 0.02317522093653679, + 0.05435682833194733, + -0.004017611965537071, + -0.028610173612833023, + -0.0211910642683506, + -0.06332483887672424, + 0.006325303111225367, + 0.023751376196742058, + 0.05286199972033501, + -0.014376256614923477, + 0.0315948948264122, + 0.017736881971359253, + -0.0011906697181984782, + -0.07918494194746017, + 0.003958433400839567, + -0.07157757133245468, + -0.01916835829615593, + 0.0027877266984432936, + -0.027146141976118088, + 0.04407660663127899, + 0.033359162509441376, + 0.18600742518901825, + 0.002086169784888625, + -0.028321122750639915, + -0.08158489316701889, + -0.04243216663599014, + -0.009348412044346333, + -0.05500989407300949, + 0.023654939606785774, + -0.08005329966545105, + -0.0048178439028561115, + -0.032600101083517075, + -0.06287432461977005, + 0.04435362294316292, + 0.017848514020442963, + -0.03171558305621147, + 0.03566431999206543, + 0.01935371570289135, + 0.04831754416227341, + 0.04877019673585892, + -0.055468033999204636, + 0.02153470739722252, + -0.028153464198112488, + -0.05037728324532509, + 0.014918037690222263, + 0.04064290225505829, + 0.06043536216020584, + -0.04891548305749893, + 0.010562877170741558, + 0.040982916951179504, + 0.06502791494131088, + -0.017736446112394333, + -0.01711859740316868, + -0.03402761369943619, + 0.04899155721068382, + -0.005984865128993988, + -0.05539931356906891, + -0.025065952911973, + -0.04758819192647934, + -0.04390284791588783, + 0.09417835623025894, + -0.0505392923951149, + -0.019784430041909218, + -0.0021532836835831404, + -0.031290825456380844, + -0.005753638222813606, + 0.02506810426712036, + 0.009674634784460068, + 0.0016415329882875085, + 0.058106258511543274, + -0.0929708331823349, + -0.06072799861431122, + 1.103070215322707e-33, + 0.0457768477499485, + -0.020838553085923195, + -0.04145371541380882, + -0.06114320829510689, + -0.041910503059625626, + -0.0041153449565172195, + -0.08442725241184235, + 0.004121442325413227, + 0.06311433762311935, + 0.05665034428238869, + -0.04340318217873573, + 0.04361456632614136, + -0.01861071027815342, + -0.05421663075685501, + -0.0377197265625, + 0.039529167115688324, + 0.06472334265708923, + -0.02247447334229946, + -0.00501385098323226, + 0.03242672234773636, + -0.041458290070295334, + -0.025685500353574753, + -0.13409613072872162, + 0.027950821444392204, + 0.009977348148822784, + 0.04445312172174454, + 0.08050946146249771, + -0.04972691461443901, + 0.10157336294651031, + -0.02474357932806015, + -0.07384634017944336, + 0.014124041423201561, + 0.0156662967056036, + 0.10851138830184937, + 0.00576420733705163, + -0.01832345314323902, + 0.1610478162765503, + -0.08257787674665451, + -0.09064076840877533, + -0.09061841666698456, + 0.033117569983005524, + 0.042346131056547165, + -0.004579681437462568, + 0.005742927081882954, + -0.009065558202564716, + 0.016533229500055313, + -0.019501943141222, + -0.020353863015770912, + -0.050269775092601776, + 0.018905093893408775, + 0.07300698012113571, + -0.05753768980503082, + -0.06054561212658882, + -0.008684182539582253, + -0.018975885584950447, + -0.0016081600915640593, + -0.047754935920238495, + 0.0008592571830376983, + 0.005671696271747351, + 0.011717120185494423, + 0.058970581740140915, + 0.06737343221902847, + -0.03623253479599953, + 0.009971562772989273, + -0.0638737678527832, + -0.03653307631611824, + -0.10038656741380692, + 0.038513217121362686, + -0.07498234510421753, + 0.027080673724412918, + 0.016199866309762, + -0.010315228253602982, + -0.02622152492403984, + -0.08820207417011261, + -0.02753947675228119, + -0.06526260823011398, + 0.05661265552043915, + 0.012953652068972588, + 0.0007784237968735397, + 0.03606269881129265, + -0.01716344617307186, + -0.0234241783618927, + -0.06768818199634552, + 0.058303721249103546, + 0.10116381198167801, + 0.0220523439347744, + 0.018602056428790092, + 0.027349406853318214, + -0.018876302987337112, + -0.07280514389276505, + -0.050235625356435776, + 0.008432531729340553, + -0.036880385130643845, + 0.0375942699611187, + 0.006521645467728376, + -2.329412396306907e-08, + 0.04717961326241493, + 0.000834929698612541, + -0.1291942447423935, + -0.09132862836122513, + 0.08208359777927399, + -0.00034927978413179517, + 0.009962914511561394, + -0.019885582849383354, + -0.024476870894432068, + 0.03651828691363335, + -0.024017121642827988, + 0.09676691889762878, + -0.012455044314265251, + 0.027329089120030403, + -0.00314838788472116, + 0.06806841492652893, + -0.07475874572992325, + -0.014478679746389389, + -0.024816177785396576, + -0.01455400139093399, + -0.023779308423399925, + 0.021593904122710228, + -0.007274950388818979, + -0.06025221198797226, + 0.03715217486023903, + 0.07909633964300156, + 0.023268768563866615, + 0.022328482940793037, + 0.11543279886245728, + 0.06231185421347618, + 0.058220501989126205, + 0.03130492940545082, + -0.08020517975091934, + -0.01307535357773304, + -0.06294319778680801, + 0.05133168399333954, + 0.11015334725379944, + -0.03308393061161041, + 0.02191518433392048, + 0.0822220966219902, + -0.016083620488643646, + 0.014007572084665298, + 3.562105484888889e-05, + 0.04694588854908943, + -0.055800169706344604, + -0.018192633986473083, + -0.005162482615560293, + 3.352783460286446e-05, + 0.0018960483139380813, + -0.09448684006929398, + 0.030577117577195168, + -0.011019717901945114, + 0.010581248439848423, + 0.034729696810245514, + 0.034950386732816696, + 0.08674025535583496, + 0.06924021244049072, + 0.0008089298498816788, + 0.05522719770669937, + 0.029581867158412933, + 0.06693883240222931, + -0.044489964842796326, + 0.03770448639988899, + 0.04252977296710014 + ], + "fan-bold||desk fan,air conditioning": [ + 0.029931755736470222, + -0.01220552809536457, + 0.022541748359799385, + 0.04719432443380356, + 0.07899132370948792, + -0.031138218939304352, + 0.040052443742752075, + -0.04087824374437332, + 0.05611725151538849, + 0.02131045237183571, + 0.11110326647758484, + 0.012105622328817844, + 0.02243976667523384, + -0.07291083037853241, + 0.008695891126990318, + 0.05473264306783676, + 0.08766116201877594, + -0.03350789472460747, + -0.029596364125609398, + 0.014506150968372822, + -0.053676456212997437, + 0.00872347317636013, + -0.04411619156599045, + 0.03708013892173767, + 0.07906412333250046, + -0.024007325991988182, + 0.041640326380729675, + 0.11786548793315887, + -0.034829508513212204, + 0.03097713366150856, + -0.008225928992033005, + -0.013039796613156796, + 0.04355401545763016, + 0.05024778097867966, + 0.045910775661468506, + -0.054835010319948196, + -0.04571418836712837, + -0.05812855437397957, + -0.007112385239452124, + 0.04534409940242767, + -0.010612777434289455, + -0.05729855224490166, + 0.09063604474067688, + 0.041670676320791245, + -0.027704909443855286, + 0.08264660835266113, + -0.051284436136484146, + -0.031511276960372925, + 0.07327772676944733, + 0.005496062338352203, + 0.04172142595052719, + -0.06266535818576813, + -0.02857581339776516, + -0.04635138064622879, + 0.009050555527210236, + 0.0662836953997612, + -0.034811053425073624, + -0.04742097109556198, + 0.0043181804940104485, + -0.0061537171714007854, + 0.07383450120687485, + -0.028836043551564217, + -0.004701861180365086, + -0.01162642240524292, + 0.02856365032494068, + -0.07452834397554398, + -0.05246821418404579, + 0.04655047878623009, + 0.04153815284371376, + 0.03333379700779915, + 0.032741401344537735, + 0.014413838274776936, + 0.013279687613248825, + -0.0366688035428524, + -0.013092463836073875, + -0.011179787106812, + -0.005889721214771271, + -0.10963911563158035, + 0.046405140310525894, + -0.035357456654310226, + -0.03031795844435692, + -0.04758134484291077, + -0.06436172127723694, + -0.027288664132356644, + -0.01026624534279108, + 0.03192315623164177, + 0.03016521967947483, + -0.07588842511177063, + -0.08097796887159348, + -0.01822194643318653, + -0.05430600047111511, + -0.040843069553375244, + -0.01719883643090725, + -0.0018185984808951616, + -0.08867999166250229, + 0.021589718759059906, + 0.026202663779258728, + -0.009683534502983093, + -0.056446224451065063, + 0.06208759918808937, + 0.0037650095764547586, + 0.020324312150478363, + 0.1026945561170578, + 0.0590340681374073, + -0.06668903678655624, + -0.006962391082197428, + -0.03160886839032173, + -0.035518549382686615, + -0.034476496279239655, + -0.060095757246017456, + -0.10034788399934769, + -0.025955745950341225, + -0.07969306409358978, + -0.047449011355638504, + -0.018545178696513176, + -0.03351037949323654, + -0.02536253072321415, + -0.05801663175225258, + 0.005998047534376383, + 0.08089297264814377, + 0.000900456216186285, + -0.0062159462831914425, + -0.03435831889510155, + 0.031098652631044388, + 0.018395163118839264, + -0.06003263592720032, + 0.06815478950738907, + -1.7317823586695498e-33, + 0.05766158923506737, + 0.08340007811784744, + -0.0068846819922327995, + 0.10183131694793701, + 0.04409663379192352, + 0.02331443503499031, + 0.03774484619498253, + -0.049539532512426376, + 0.01271889079362154, + 0.07177437841892242, + 0.046752460300922394, + 0.04272277653217316, + -0.015713989734649658, + 0.02375309355556965, + 0.03764940798282623, + -0.10088746249675751, + 0.019996995106339455, + -0.032505109906196594, + -0.10166462510824203, + -0.014585545286536217, + 0.025790853425860405, + 0.08907046169042587, + -0.07340369373559952, + 0.01305882353335619, + -0.022343475371599197, + -0.10086062550544739, + -0.04436701163649559, + -0.012744185514748096, + -0.008295408450067043, + 0.01987643726170063, + 0.0416724868118763, + 0.09443917125463486, + -0.034761808812618256, + 0.07504014670848846, + -0.0932515487074852, + -0.03638974577188492, + -0.0840972438454628, + -0.04373138025403023, + 0.06619124114513397, + 0.005194442346692085, + -0.0716378465294838, + 0.05450497567653656, + 0.001255246577784419, + 0.021611975505948067, + 0.021994560956954956, + 0.13660703599452972, + -0.022724715992808342, + -0.07273267954587936, + 0.08395887911319733, + -0.03122786432504654, + 0.0031270403414964676, + 0.013056688010692596, + 0.051656607538461685, + 0.06090977042913437, + 0.03843746706843376, + -0.07644779980182648, + 0.04241766408085823, + 0.024816811084747314, + 0.006894911639392376, + -0.01868390291929245, + -0.029747633263468742, + 0.07400193810462952, + 0.03881390392780304, + -0.045167308300733566, + -0.03925856947898865, + 0.05465692654252052, + 0.037427354604005814, + 0.05324707180261612, + 0.056575875729322433, + -0.02460617944598198, + 0.006993220187723637, + 0.006157018709927797, + -0.00562396552413702, + 0.02742142044007778, + -0.02723279595375061, + -0.00836989376693964, + -0.0689815804362297, + -0.004583375994116068, + -0.09550374746322632, + -0.14224110543727875, + -0.08943308889865875, + 0.019166521728038788, + -0.03460359945893288, + 0.057313743978738785, + 0.0370711125433445, + -0.02199476957321167, + -0.060196712613105774, + -0.010184716433286667, + 0.006239335983991623, + 0.03505191206932068, + -0.0457991287112236, + 0.022117702290415764, + 0.030377039685845375, + -0.014512849971652031, + -0.04404737800359726, + -6.381984286757267e-34, + -0.02718050591647625, + -0.05018138512969017, + -0.04738302528858185, + -0.04039853811264038, + -0.07423005998134613, + 0.03926130384206772, + -0.016919512301683426, + -0.013334350660443306, + -0.038672324270009995, + 0.04321654886007309, + 0.019812338054180145, + -0.026077967137098312, + -0.10163236409425735, + -0.07214516401290894, + 0.031168600544333458, + 0.0295825507491827, + -0.04568823054432869, + 0.03135284036397934, + -0.052750278264284134, + 0.06897325068712234, + -0.008166774176061153, + -0.05192770063877106, + 0.00954060722142458, + 0.040433913469314575, + -0.015135318972170353, + -0.008395270444452763, + 0.01224203035235405, + -0.033190514892339706, + 0.03312775865197182, + 0.01951795257627964, + -0.1069401353597641, + 0.04824035242199898, + 0.014542614109814167, + 0.1341792196035385, + 0.062071312218904495, + -0.03690747916698456, + 0.024481870234012604, + -0.046944741159677505, + -0.010891719721257687, + -0.05253354832530022, + 0.030702795833349228, + 0.025202367454767227, + 0.04606412351131439, + 0.03234894573688507, + -0.04402285814285278, + 0.02832649275660515, + 0.0017925837310031056, + -0.0845465213060379, + 0.01595478132367134, + -0.03726624324917793, + 0.05033741146326065, + -0.11601752787828445, + 0.0019016526639461517, + 0.06844278424978256, + -0.0072990041226148605, + -0.0015878594713285565, + 0.0011722010094672441, + -0.03276152163743973, + 0.020338844507932663, + -0.017583567649126053, + 0.05546049028635025, + -0.007189669646322727, + -0.06684575229883194, + -0.01426340639591217, + -0.01845756731927395, + 0.004574361722916365, + 0.04564317315816879, + 0.03343687951564789, + 0.10305462777614594, + -0.007790007162839174, + 0.006915519014000893, + 0.05297732725739479, + 0.016805490478873253, + 0.008377074263989925, + 0.0029068225994706154, + -0.052069976925849915, + 0.10172460228204727, + 0.010953731834888458, + -0.0024209877010434866, + 0.0905703455209732, + -0.11881106346845627, + 0.022251905873417854, + -0.0025734901428222656, + 0.015250156633555889, + 0.07610221207141876, + -0.09646078944206238, + -0.025947418063879013, + 0.031615711748600006, + -0.008067719638347626, + -0.04423899203538895, + 0.04125487804412842, + 0.010954436846077442, + 0.09969544410705566, + -0.02565998025238514, + -0.07926589995622635, + -1.6320859330676285e-08, + -0.06963921338319778, + -0.053568415343761444, + 0.019625812768936157, + -0.04286397993564606, + -0.010196740739047527, + -0.020276786759495735, + 0.005373413674533367, + -0.13758008182048798, + -0.010399983264505863, + 0.034875985234975815, + 0.06032649055123329, + 0.029471658170223236, + 0.006776934489607811, + -0.03047730028629303, + 0.08133901655673981, + 0.004242709372192621, + -0.10462509095668793, + 0.09397637844085693, + -0.01061076670885086, + -0.014176632277667522, + -0.05049751698970795, + 0.05893360450863838, + 0.03949298337101936, + -0.04128538444638252, + 0.0688159167766571, + 0.10524234920740128, + -0.05386335402727127, + 0.011880171485245228, + 0.0211553405970335, + 0.08267999440431595, + 0.03998057544231415, + -0.002332211472094059, + -0.008573777042329311, + -0.04926612600684166, + -0.012681743130087852, + 0.044095221906900406, + 0.035054709762334824, + 0.0075079938396811485, + -0.023998238146305084, + -0.006866724696010351, + -0.011510823853313923, + -0.09341137111186981, + -0.088808074593544, + 0.030502095818519592, + 0.07772539556026459, + -0.06234098598361015, + 0.08254855871200562, + -0.07326322048902512, + -0.03318333998322487, + -0.02494654804468155, + -0.003976089879870415, + -0.003904511919245124, + 0.0490531399846077, + 0.08124522119760513, + -0.10466836392879486, + -0.06352049857378006, + -0.05780363827943802, + 0.06184012070298195, + -0.03330044075846672, + -0.018438488245010376, + 0.06806661188602448, + 0.018947383388876915, + -0.0926295593380928, + 0.06599852442741394 + ], + "farm-bold||*new*,farmer,field,farming,agriculture": [ + -0.005963339004665613, + -0.03735795617103577, + -0.03698276728391647, + 0.02185528539121151, + 0.0845676064491272, + -0.03179090470075607, + -0.015969637781381607, + -0.12259555608034134, + -0.05958159267902374, + 0.011988195590674877, + 0.09864924103021622, + -0.023995548486709595, + -0.007653107866644859, + -0.07431166619062424, + -0.0352458693087101, + 0.08327800035476685, + -0.025796623900532722, + 0.04856323078274727, + -0.021767137572169304, + -0.05457615107297897, + -0.008070172742009163, + 0.07093273848295212, + -0.064090795814991, + 0.03201485797762871, + 0.09522619843482971, + 0.028071410953998566, + -0.013472678139805794, + 0.03427110239863396, + -0.016835758462548256, + -0.07380910217761993, + -0.058064959943294525, + 0.08710553497076035, + 0.12080991268157959, + 0.05707188695669174, + 0.046220846474170685, + 0.07693597674369812, + 0.024542488157749176, + -0.001095523126423359, + 0.01919225975871086, + 0.03208065405488014, + 0.024596376344561577, + -0.11016306281089783, + -0.013920375145971775, + 0.007076340727508068, + -0.043854184448719025, + 0.01781976968050003, + -0.01582127809524536, + -0.04266554117202759, + 0.08553695678710938, + -0.03823225945234299, + -0.012125126086175442, + -0.09777452051639557, + -0.11042434722185135, + 0.020213773474097252, + 0.04724038019776344, + 0.028558367863297462, + -0.061733607202768326, + -0.03679974749684334, + -0.0015532177640125155, + 0.011574577540159225, + 0.007503540720790625, + 0.018282530829310417, + 0.05112995579838753, + 0.040510933846235275, + 0.06124764308333397, + -0.025875873863697052, + -0.10535672307014465, + 0.04400471970438957, + -0.07429617643356323, + 0.003884322242811322, + -0.004991000052541494, + -0.013342403806746006, + -0.02983723022043705, + -0.05108456686139107, + -0.11732067167758942, + 0.035456206649541855, + 0.002613814314827323, + 0.011991428211331367, + 0.05046968162059784, + -0.08570121973752975, + -0.04045432433485985, + -0.0311379786580801, + -0.06466139853000641, + -0.05486692488193512, + -0.03186909854412079, + 0.035066112875938416, + -0.07853730022907257, + -0.03621517866849899, + 0.04433036968111992, + -0.05977253243327141, + -0.08079776167869568, + -0.09449639171361923, + -0.02934306301176548, + 0.074031300842762, + -0.05261729657649994, + 0.04730519279837608, + 0.012827136553823948, + -0.0744311586022377, + -0.046086590737104416, + 0.06185605376958847, + 0.010169885121285915, + 0.0028853509575128555, + 0.04219907894730568, + -0.015804670751094818, + -0.073471799492836, + -0.025179391726851463, + -0.12522976100444794, + 0.005878249183297157, + -0.018258322030305862, + 0.06470206379890442, + -0.012693016789853573, + -0.00583198107779026, + -0.07758579403162003, + -0.013075266033411026, + -0.035950303077697754, + 0.011334308423101902, + -0.06446456164121628, + -0.09748531877994537, + -0.003189610317349434, + 0.10402253270149231, + 0.057838067412376404, + -0.003537021577358246, + -0.03679445758461952, + -0.03315827623009682, + 0.024738561362028122, + 0.0334504097700119, + 0.03708496689796448, + -1.6490071688915137e-33, + 0.02358570508658886, + 0.015563307330012321, + -0.0351778119802475, + 0.07208076119422913, + 0.04279639944434166, + 0.014459741301834583, + -0.04440295696258545, + -0.011947670951485634, + -0.046807046979665756, + 0.03395908325910568, + 0.026454385370016098, + 0.019260158762335777, + 0.0061943926848471165, + -0.0008189251529984176, + 0.03749837726354599, + -0.1000818982720375, + -0.014867777936160564, + -0.04421239346265793, + -0.009818957187235355, + 0.05961165949702263, + -0.08017972111701965, + 0.09954541176557541, + -0.09251204133033752, + 0.022749509662389755, + 0.010068554431200027, + -0.05733316391706467, + 0.07050316035747528, + -0.09169241040945053, + -0.007336359936743975, + 0.052829716354608536, + 0.07309608906507492, + -0.04000689461827278, + 0.03561956807971001, + -0.006051669828593731, + -0.013513617217540741, + 0.02861807495355606, + -0.0007914580637589097, + -0.06897448748350143, + -0.0128810228779912, + 0.04254312440752983, + -0.04952613636851311, + -0.01806703396141529, + 0.07852618396282196, + -5.4521784477401525e-05, + 0.055861495435237885, + 0.08764364570379257, + 0.00018273066962137818, + 0.045209284871816635, + -0.02387770637869835, + 0.04094348102807999, + 0.006008632946759462, + 0.0025439003948122263, + 0.01703336276113987, + 0.021931828930974007, + 0.057125288993120193, + -0.024824373424053192, + -0.06905921548604965, + 0.06584759801626205, + 0.0015279805520549417, + 0.012880396097898483, + 0.015557689592242241, + 0.02503870241343975, + -0.03116840496659279, + -0.013362344354391098, + -0.025868909433484077, + 0.02218625508248806, + -0.02364501729607582, + 0.08133872598409653, + 0.06081061065196991, + 0.11736507713794708, + 0.02877069264650345, + -0.01044654380530119, + -0.06267807632684708, + 0.10007692128419876, + -0.020293215289711952, + 0.019678328186273575, + 0.03300263732671738, + 0.011240987107157707, + -0.019355665892362595, + -0.1013052761554718, + -0.08151450008153915, + 0.02786390483379364, + -0.1355031132698059, + 0.13396094739437103, + -0.05874254181981087, + -0.0069738151505589485, + -0.018572749570012093, + -0.02928631566464901, + 0.011563718318939209, + -0.033518191426992416, + -0.05209943652153015, + 0.06686996668577194, + -0.024874616414308548, + -0.07634755223989487, + -0.05266771465539932, + -1.27134599689826e-33, + -0.005479390267282724, + 0.0451115146279335, + -0.04244668781757355, + 0.02687000297009945, + -0.008050264790654182, + -0.029533101245760918, + 0.03907066583633423, + -0.0032650751527398825, + 0.057635970413684845, + 0.03417055681347847, + -0.02814561501145363, + 0.04053892567753792, + -0.06859840452671051, + -0.025674212723970413, + 6.841315916972235e-05, + -0.002313845558091998, + -0.04422052577137947, + 0.045362312346696854, + -0.004168140701949596, + 0.07070110738277435, + -0.0484427884221077, + 0.05856083706021309, + -0.0548878088593483, + 0.05935648828744888, + 0.026393858715891838, + 0.035543348640203476, + -0.05618542805314064, + 0.03920821100473404, + -0.059075988829135895, + -0.048624105751514435, + -0.034570351243019104, + -0.10149706900119781, + 0.029678190127015114, + 0.06450336426496506, + -0.06756600737571716, + 0.06133211776614189, + 0.043871913105249405, + -0.12282907217741013, + 0.021404316648840904, + 0.021157756447792053, + 0.06374568492174149, + -0.012364055961370468, + -0.022048991173505783, + 0.06673027575016022, + -0.09407615661621094, + -0.026109082624316216, + -0.018327170982956886, + -0.020310532301664352, + 0.010015696287155151, + 0.04770856723189354, + -0.005081398878246546, + 0.014924019575119019, + -0.018325217068195343, + -0.02487349882721901, + -0.058341845870018005, + -0.019170954823493958, + 0.04986468702554703, + -0.004256612621247768, + -0.10115635395050049, + 0.04068601503968239, + 0.005130114499479532, + 0.07395514100790024, + -0.008751383051276207, + 0.08472898602485657, + 0.022044723853468895, + -0.08300040662288666, + -0.02340053766965866, + -0.009976213797926903, + -0.010021883994340897, + -0.042498115450143814, + -0.029466252774000168, + 0.03246970474720001, + -0.05277640372514725, + 0.034286048263311386, + -0.06106986850500107, + 0.009496794082224369, + 0.024116763845086098, + -0.0020954757928848267, + 0.00224240287207067, + -0.012968232855200768, + -0.02877257578074932, + -0.06636802107095718, + 0.02847617119550705, + 0.07372234016656876, + 0.021497156471014023, + 0.04802072420716286, + 0.0007203121203929186, + 0.05518186837434769, + 0.0725460797548294, + 0.0028895847499370575, + -0.03186039999127388, + 0.009192259050905704, + -5.228521331446245e-05, + 0.02036818116903305, + -0.029275188222527504, + -2.0625403607255066e-08, + -0.035215191543102264, + -0.03144705668091774, + -0.017252737656235695, + -0.0045119524002075195, + 0.0880732461810112, + -0.07989024370908737, + -0.047178056091070175, + -0.03354104980826378, + -0.006766801699995995, + 0.043474096804857254, + -0.03347737342119217, + 0.12048191577196121, + -0.0835675448179245, + -0.001121492008678615, + 0.0778910219669342, + 0.028915738686919212, + 0.03526629880070686, + 0.015605294145643711, + -0.056474048644304276, + -0.02940746769309044, + -0.014278633520007133, + 0.08291352540254593, + -0.05332192778587341, + -0.049482863396406174, + 0.0345635749399662, + -0.0028433818370103836, + -0.038021668791770935, + -0.017007244750857353, + 0.11154362559318542, + 0.06851240992546082, + 0.10919149965047836, + 0.09256700426340103, + -0.026929568499326706, + -0.0023836337495595217, + -0.0931887999176979, + 0.02215375378727913, + -0.07419223338365555, + 0.02358333207666874, + 0.007902010343968868, + 0.07076817005872726, + -0.03990618512034416, + 0.027605945244431496, + 0.0169217512011528, + -0.037604331970214844, + -0.038712531328201294, + -0.0007089769351296127, + 6.198501796461642e-05, + -0.01689877361059189, + -0.04120843484997749, + -0.12988556921482086, + -0.014955960214138031, + -0.003957090433686972, + 0.08193216472864151, + 0.027294453233480453, + 0.009610767476260662, + -0.02578267641365528, + 0.020751114934682846, + 0.004909829702228308, + 0.07694798707962036, + -0.04415511712431908, + 0.06019751355051994, + -0.00023822119692340493, + 0.04212052375078201, + 0.017753036692738533 + ], + "fast-forward-bold||audio,music,seek,scrub,scan,ahead,skip": [ + 0.02546098455786705, + -0.06425360590219498, + -0.016952257603406906, + -0.042059991508722305, + 0.02049424685537815, + 0.054485902190208435, + 0.0457572340965271, + -0.13092206418514252, + -0.007567761931568384, + -0.04194403067231178, + 0.022029325366020203, + 0.04687519371509552, + 0.004788198042660952, + -0.04193937033414841, + -0.05685744062066078, + -0.025439362972974777, + 0.03624775633215904, + 0.09034254401922226, + 0.04516362398862839, + -0.015168554149568081, + -0.04452504217624664, + 0.033421654254198074, + 0.0038535373751074076, + 0.017863621935248375, + 0.008248487487435341, + 0.040155019611120224, + -0.022649679332971573, + -0.020029859617352486, + 0.0095991725102067, + -0.08838609606027603, + 0.0055800932459533215, + 0.0188742708414793, + 0.13805250823497772, + 0.04745293781161308, + -0.06754371523857117, + -0.0164536964148283, + -0.06634383648633957, + 0.008122134953737259, + -0.032901581376791, + 0.04054325819015503, + 0.003765443339943886, + 0.005799471400678158, + -0.000529775395989418, + -0.009758783504366875, + -0.03836370259523392, + -0.087668776512146, + -0.08902017772197723, + -0.021861659362912178, + 0.016713973134756088, + 0.004707775078713894, + -0.08021267503499985, + -0.07681328803300858, + -0.10899616032838821, + 0.08959305286407471, + 0.004199069458991289, + 0.04099544882774353, + 0.0004191121843177825, + 0.03977977856993675, + 0.06823014467954636, + 0.010956878773868084, + -0.007431654259562492, + -0.0553547702729702, + 0.007688472047448158, + -0.0114138750359416, + 0.08564189076423645, + -0.0010173285845667124, + -0.0016613559564575553, + 0.03496416658163071, + 0.013044803403317928, + 0.09668533504009247, + -0.05941489711403847, + 0.03805135190486908, + 0.026960482820868492, + 0.0474809855222702, + 0.011474677361547947, + -0.0028746258467435837, + 0.06769685447216034, + -0.0167195163667202, + -0.07762550562620163, + -0.10474562644958496, + -0.04121923819184303, + -0.10261541604995728, + -0.03580671548843384, + -0.025009246543049812, + 0.031313326209783554, + 0.03974580392241478, + -0.07436905056238174, + -0.06328312307596207, + -0.024948211386799812, + -0.059724360704422, + -0.08336853981018066, + -0.12074366956949234, + -0.029403991997241974, + -0.006113781128078699, + -0.01419178768992424, + 0.020131252706050873, + 0.08283378183841705, + -0.07868078351020813, + 0.0013412541011348367, + 0.0677943155169487, + 0.06588900834321976, + 0.020236752927303314, + 0.02851969748735428, + 0.0016065605450421572, + -0.05752681940793991, + -0.11999242752790451, + 0.052530765533447266, + 0.027078822255134583, + -0.05016690865159035, + -0.0068949549458920956, + 0.0242698322981596, + -0.04779179021716118, + 0.015191133134067059, + -0.08614383637905121, + 0.01163393259048462, + -0.0023798926267772913, + -0.021888380870223045, + 0.02066175453364849, + 0.14007972180843353, + 0.030891964212059975, + -0.014462259598076344, + -0.04114920645952225, + -0.05617772787809372, + -0.019395124167203903, + 0.015037043951451778, + -0.021754538640379906, + 0.054452113807201385, + -1.9363145186217892e-33, + 0.054988641291856766, + 0.028620172291994095, + -0.030905509367585182, + 0.03250907361507416, + 0.027271127328276634, + -0.010013208724558353, + -0.021149761974811554, + 0.033849816769361496, + -0.04764130711555481, + 0.0729006826877594, + 0.04356418922543526, + 0.037783462554216385, + -0.030118370428681374, + 0.07466498017311096, + -0.011327656917273998, + -0.08260054141283035, + 0.006757908500730991, + 0.048789892345666885, + -0.08781757950782776, + 0.0010133580071851611, + -0.029952535405755043, + 0.00916308630257845, + 0.021012376993894577, + -0.03670031204819679, + 0.06277880072593689, + 0.005497725680470467, + -0.026492055505514145, + -0.08417807519435883, + 0.012013805098831654, + 0.05079924315214157, + -0.05758370831608772, + 0.00947496760636568, + -0.0217277854681015, + -0.02085280604660511, + 0.021523257717490196, + 0.041775256395339966, + -0.0832768902182579, + 0.021181875839829445, + 0.054800208657979965, + -0.04641984403133392, + -0.09875399619340897, + -0.05740860849618912, + -0.059961121529340744, + -0.09061817079782486, + -0.02821464091539383, + 0.009131531231105328, + -0.05223932862281799, + 0.04806165397167206, + 0.024264847859740257, + 0.06897444278001785, + 0.05125262215733528, + 0.038216304033994675, + -0.07106447964906693, + -0.02224900759756565, + 0.028907909989356995, + -0.04713704437017441, + 0.08007002621889114, + 0.12056129425764084, + 0.033457472920417786, + 0.09614463150501251, + 0.07562538236379623, + 0.05608654022216797, + 0.04926556721329689, + -0.0135735385119915, + -0.03120158426463604, + 0.0563189797103405, + -0.006151293870061636, + -0.009943814016878605, + 0.09820384532213211, + 0.001509171212092042, + -0.05971239507198334, + -0.016708243638277054, + 0.02163364179432392, + 0.027229387313127518, + 0.0037198008503764868, + 0.033822763711214066, + -0.012799657881259918, + -0.08122427761554718, + 0.07073099911212921, + -0.06757564842700958, + -0.12641705572605133, + 0.009571145288646221, + -0.07516615092754364, + 0.03252488747239113, + -0.0028034306596964598, + 0.04113750159740448, + 0.007283227983862162, + -0.13210976123809814, + -0.03442193195223808, + -0.05441627278923988, + -0.13378101587295532, + 0.06689981371164322, + -0.04469314590096474, + -0.019975077360868454, + -0.06057312339544296, + -1.2153004466319688e-34, + 0.11490877717733383, + 0.023319555446505547, + 0.030248424038290977, + 0.038257304579019547, + -0.04066929593682289, + -0.01871306821703911, + 0.062393076717853546, + 0.06492739915847778, + 0.06192032992839813, + 0.059215087443590164, + 0.004196823108941317, + -0.05590773746371269, + -0.03180932253599167, + -0.060468822717666626, + 0.011982964351773262, + 0.044871456921100616, + 0.05763530731201172, + -0.015973631292581558, + 0.03536408022046089, + 0.040641289204359055, + -0.040567319840192795, + -0.021797051653265953, + -0.02562372013926506, + 0.0916079580783844, + -0.06654802709817886, + 0.01745748333632946, + 0.05851408466696739, + 0.06818520277738571, + -0.07326409965753555, + -0.042129434645175934, + -0.007326212711632252, + -0.004084830172359943, + 0.003078126348555088, + -0.07530058920383453, + -0.03462154418230057, + 0.06889356672763824, + 0.03779202327132225, + 0.07086246460676193, + -0.0063605234026908875, + 0.02135465107858181, + 0.05924598500132561, + 0.03879215568304062, + 0.02377483993768692, + 0.012575174681842327, + -0.006579218432307243, + -0.007366070058196783, + -0.07579823583364487, + 0.059362709522247314, + -0.04460825026035309, + 0.08978614211082458, + 0.08290450274944305, + -0.01764834113419056, + 0.01980595663189888, + -0.0293137114495039, + -0.08613427728414536, + -0.02829611301422119, + -0.06030203402042389, + -0.024649588391184807, + -0.04208027943968773, + 0.06738133728504181, + -0.0175270177423954, + -0.02162427082657814, + 0.00208181980997324, + -0.06956198066473007, + 0.050202518701553345, + -0.010099166072905064, + 0.05721970275044441, + -0.06575851142406464, + 0.015222170390188694, + 0.0017748884856700897, + 0.07831364870071411, + 0.033117301762104034, + -0.01905263029038906, + 0.0493895448744297, + -0.03154648095369339, + -0.03715471550822258, + 0.009921438060700893, + -0.009075897745788097, + -0.03798703849315643, + 0.003955775871872902, + 0.015401787124574184, + 0.05135362595319748, + 0.025409981608390808, + 0.045491065829992294, + -0.05764083191752434, + 0.1398731917142868, + 0.0007002016063779593, + -0.02853911556303501, + 0.011496900580823421, + -0.009016723372042179, + 0.02406533807516098, + 0.06701256334781647, + 0.06483905017375946, + -0.03457234799861908, + -0.05189516395330429, + -1.907146440771612e-08, + -0.057191453874111176, + -0.03095453977584839, + -0.0054717836901545525, + -0.009030040353536606, + 0.01938885636627674, + -0.050052374601364136, + -0.017170699313282967, + -0.04946184903383255, + -0.0392342135310173, + -0.12073496729135513, + 0.08049308508634567, + -0.0091633852571249, + 0.008882414549589157, + 0.018026022240519524, + 0.027714436873793602, + 0.0061436425894498825, + -0.01563633605837822, + 0.025367507711052895, + -0.07255171239376068, + -0.0341934934258461, + 0.015596821904182434, + 0.11381911486387253, + 0.036759838461875916, + -0.02743896096944809, + 0.04946962371468544, + 0.02222186140716076, + -0.01243910938501358, + 0.013033340685069561, + 0.09115583449602127, + -0.030636079609394073, + 0.011382211931049824, + 0.06476620584726334, + -0.030586253851652145, + -0.019177934154868126, + -0.0388704389333725, + 0.045003149658441544, + 0.0415128655731678, + -0.0034764644224196672, + -0.05852628871798515, + 0.07459520548582077, + -0.0016240909462794662, + 0.006058409344404936, + -0.05202752351760864, + -0.02864714339375496, + -0.1347174346446991, + -0.05607239529490471, + 0.021345406770706177, + -0.04204348847270012, + -0.025440705940127373, + -0.10038228332996368, + -0.015106359496712685, + 0.01180858351290226, + -0.007976709865033627, + 0.04336249455809593, + 0.029456736519932747, + -0.0027847937308251858, + 0.008345711044967175, + 0.03778015077114105, + -0.056536830961704254, + 0.04897201806306839, + 0.04566064849495888, + 0.009729232639074326, + 0.044949404895305634, + 0.04253561049699783 + ], + "fast-forward-circle-bold||audio,music,seek,scrub,scan,ahead,skip": [ + 0.03081665001809597, + -0.0623328723013401, + -0.06802180409431458, + -0.0434882827103138, + 0.035428259521722794, + 0.02117440477013588, + 0.056195661425590515, + -0.11199474334716797, + 0.020655464380979538, + -0.07610088586807251, + 0.029691435396671295, + 0.047713782638311386, + 0.013264230452477932, + -0.04555843770503998, + -0.03900522738695145, + -0.030862193554639816, + 0.019969187676906586, + 0.07560184597969055, + 0.06181122735142708, + -0.04127858579158783, + -0.048640407621860504, + 0.01581660285592079, + 0.018930399790406227, + 0.053045667707920074, + -0.01056118868291378, + 0.06605058908462524, + -0.011222279630601406, + -0.015932030975818634, + 0.00425861356779933, + -0.1004674881696701, + -0.027684034779667854, + 0.03704686835408211, + 0.12820859253406525, + 0.0316949188709259, + -0.08023318648338318, + -0.02142512984573841, + -0.06782510131597519, + 0.023081153631210327, + -0.025325939059257507, + 0.0012020377907902002, + 0.01473966520279646, + 0.0012629077536985278, + 0.029831428080797195, + -0.016307702288031578, + -0.05012330785393715, + -0.059071291238069534, + -0.12578605115413666, + -0.023478711023926735, + 0.007152575068175793, + 0.023905577138066292, + -0.08467371761798859, + -0.09825927764177322, + -0.12192749977111816, + 0.07104802131652832, + 0.02319478429853916, + 0.0329621285200119, + -0.0027341358363628387, + 0.0257476344704628, + 0.09828384965658188, + -0.00925417710095644, + 0.013951278291642666, + -0.06901798397302628, + 0.024381771683692932, + 0.009502355009317398, + 0.06203790009021759, + -0.010209161788225174, + -0.01899237185716629, + -0.002168223261833191, + 0.016262613236904144, + 0.053271882236003876, + -0.04895079508423805, + 0.041561197489500046, + 0.014168822206556797, + 0.028110995888710022, + 0.03503347933292389, + 0.01987217552959919, + 0.045213259756565094, + 0.00913824699819088, + -0.10163267701864243, + -0.10612473636865616, + -0.0266183502972126, + -0.07509120553731918, + -0.017970940098166466, + 0.015422511845827103, + 0.020450739189982414, + 0.06270844489336014, + -0.05504002049565315, + -0.07418712228536606, + -0.036461491137742996, + -0.056047264486551285, + -0.08641832321882248, + -0.09996403008699417, + -0.06297536194324493, + -0.0326664038002491, + -0.04692475125193596, + 0.0016634028870612383, + 0.06551352888345718, + -0.10294461995363235, + -0.02989952638745308, + 0.08075131475925446, + 0.08008009195327759, + -0.008702719584107399, + 0.046085141599178314, + -0.01156920101493597, + -0.06365291774272919, + -0.11699958890676498, + 0.04567331448197365, + 0.02457399107515812, + -0.04821564629673958, + 0.0120264096185565, + 0.01313086785376072, + -0.05539439991116524, + 0.0011281253537163138, + -0.07182489335536957, + 0.005771658383309841, + -0.00014763596118427813, + -0.03498418256640434, + 0.03138451278209686, + 0.14252543449401855, + 0.04461769387125969, + -0.0014346280368044972, + -0.02593938820064068, + -0.08573900163173676, + -0.026507092639803886, + -0.01404624618589878, + -0.013965918682515621, + 0.028787905350327492, + -2.3571811691505084e-33, + 0.04033614322543144, + 0.0475764200091362, + -0.026225872337818146, + 0.010434196330606937, + 0.015258521772921085, + -0.053846195340156555, + -0.019144779071211815, + 0.02770124562084675, + 0.0028890303801745176, + 0.07412609457969666, + 0.02060522325336933, + 0.033423569053411484, + -0.025557829067111015, + 0.0747542679309845, + 0.019077755510807037, + -0.09091678261756897, + 0.026876064017415047, + 0.025015119463205338, + -0.1106225773692131, + -0.02395004779100418, + -0.046980928629636765, + 0.024521542713046074, + -0.0014550500782206655, + -0.028510235249996185, + 0.05854185298085213, + 0.026979263871908188, + -0.04001103714108467, + -0.08353850990533829, + 0.011953146196901798, + 0.0600137822329998, + -0.04519633576273918, + 0.018052436411380768, + -0.008629396557807922, + -0.005739792715758085, + 0.032218292355537415, + 0.056339554488658905, + -0.08636073768138885, + 0.02023414894938469, + 0.03915531560778618, + -0.05050085857510567, + -0.08763805776834488, + -0.06459804624319077, + -0.07166174799203873, + -0.05922655388712883, + -0.01845528557896614, + 0.022861093282699585, + -0.04189734533429146, + 0.048579126596450806, + 0.022962793707847595, + 0.0690537616610527, + 0.02775065042078495, + 0.046766720712184906, + -0.07435869425535202, + -0.03698102757334709, + 0.037236396223306656, + -0.05960993468761444, + 0.0910036563873291, + 0.10733003914356232, + -0.0008064855937846005, + 0.07528114318847656, + 0.07866312563419342, + 0.05940326303243637, + 0.04329843446612358, + -0.03468747064471245, + -0.04093876853585243, + 0.0625516027212143, + -0.0340302549302578, + -0.03396229073405266, + 0.1041613519191742, + -0.013758422806859016, + -0.05247053876519203, + 0.0010186467552557588, + 0.0527070090174675, + 0.05946069583296776, + -0.015431010164320469, + 0.03911217302083969, + -0.021444328129291534, + -0.06527625769376755, + 0.07016287744045258, + -0.06390425562858582, + -0.1272694617509842, + 0.016532259061932564, + -0.07527107745409012, + 0.009355598129332066, + 0.010765472427010536, + 0.0170066487044096, + 0.03489507734775543, + -0.12290890514850616, + -0.04093879833817482, + -0.05933360010385513, + -0.12896263599395752, + 0.08647357672452927, + -0.022753490135073662, + 0.012743149884045124, + -0.09169823676347733, + 1.7918203882546875e-34, + 0.09396812319755554, + 0.029570644721388817, + 0.048162247985601425, + 0.03565018251538277, + -0.03695832937955856, + -0.011314046569168568, + 0.07087324559688568, + 0.062035106122493744, + 0.05376182496547699, + 0.06928698718547821, + -0.004707725718617439, + -0.04850240424275398, + -0.012251483276486397, + -0.04573803022503853, + 0.042791947722435, + 0.05212678760290146, + 0.06540293246507645, + -0.006749724503606558, + 0.03121090680360794, + 0.05848317593336105, + -0.03958814591169357, + -0.01853134296834469, + -0.02299448661506176, + 0.08271189779043198, + -0.07748232781887054, + 0.03081204555928707, + 0.07240273803472519, + 0.02238684892654419, + -0.07166179269552231, + -0.0168745294213295, + -0.0486307255923748, + -0.02437697723507881, + 0.01495426893234253, + -0.059152521193027496, + -0.009723538532853127, + 0.029545435681939125, + 0.04280255734920502, + 0.03948696330189705, + -0.04800493270158768, + -0.021813517436385155, + 0.017192721366882324, + 0.03839218616485596, + 0.04083835333585739, + 0.023658664897084236, + 0.005319470074027777, + -0.030772531405091286, + -0.034730806946754456, + 0.08491051942110062, + -0.07166299968957901, + 0.09046107530593872, + 0.08676287531852722, + -0.0004623539571184665, + 0.0472673624753952, + -0.01955590210855007, + -0.06859374046325684, + -0.0024712826125323772, + -0.06931890547275543, + -0.00929137971252203, + -0.011356164701282978, + 0.06133367121219635, + -0.020912328734993935, + -0.03964417427778244, + -0.021425146609544754, + -0.024774644523859024, + 0.0537140928208828, + 0.007331846281886101, + 0.05998994782567024, + -0.05923725292086601, + -0.01572628878057003, + 0.03820885717868805, + 0.05976203829050064, + 0.060366857796907425, + -0.014657918363809586, + 0.02646893635392189, + -0.026113256812095642, + -0.025835957378149033, + 0.02188415639102459, + -0.028216442093253136, + -0.05968305841088295, + 0.0114482082426548, + -0.00896864477545023, + 0.05873880162835121, + 0.022453106939792633, + 0.045767053961753845, + -0.047779541462659836, + 0.11024342477321625, + -0.006290790159255266, + -0.030818533152341843, + 0.0057182759046554565, + 0.00917882937937975, + 0.03783312812447548, + 0.0761396586894989, + 0.04368596151471138, + -0.0036730056162923574, + -0.004845934454351664, + -1.9635896464365032e-08, + -0.058524180203676224, + -0.015863051638007164, + -0.007607253734022379, + -0.010408535599708557, + 0.06793329864740372, + -0.06627863645553589, + -0.014623954892158508, + -0.061692625284194946, + -0.049297355115413666, + -0.10804959386587143, + 0.07159414142370224, + -0.0002507499302737415, + -0.011208681389689445, + 0.019199321046471596, + 0.027166852727532387, + 0.015751492232084274, + -0.018411017954349518, + 0.05107530578970909, + -0.0514502078294754, + -0.023509856313467026, + 0.022493140771985054, + 0.07977008819580078, + 0.06247447058558464, + -0.06239929050207138, + 0.03794970363378525, + 0.02039809338748455, + -0.005794808268547058, + 0.02460468001663685, + 0.06001909822225571, + -0.049435969442129135, + 0.004845154006034136, + 0.062099210917949677, + -0.0315002016723156, + -0.015700822696089745, + -0.04094668850302696, + 0.016652289777994156, + 0.0221985075622797, + 0.022130029276013374, + -0.051532845944166183, + 0.08445268869400024, + 0.014165056869387627, + 0.02831527404487133, + -0.027868475764989853, + -0.02092720754444599, + -0.10476785898208618, + -0.01962076686322689, + 0.03831018507480621, + -0.04483107477426529, + -0.0520687960088253, + -0.09580695629119873, + -0.04388812184333801, + 0.007572028320282698, + 0.013194026425480843, + 0.034773796796798706, + 0.024749094620347023, + -0.00881882943212986, + 0.038597896695137024, + 0.054090697318315506, + -0.08820894360542297, + 0.06849388033151627, + 0.02247888408601284, + 0.037960391491651535, + 0.051795389503240585, + 0.036590322852134705 + ], + "feather-bold||bird": [ + 0.02022591605782509, + 0.02357073873281479, + 0.019286567345261574, + 0.023373080417513847, + 0.035292431712150574, + -0.039965227246284485, + 0.13781821727752686, + -0.13402549922466278, + 0.03478074073791504, + -0.024463599547743797, + -0.006095938850194216, + -0.008709334768354893, + -0.026049545034766197, + -0.00920229684561491, + -0.03512795642018318, + 0.047798894345760345, + 0.01989852264523506, + -0.002392610302194953, + -0.007462155539542437, + 0.01027352549135685, + -0.06793314963579178, + 0.05465938150882721, + 0.03190319985151291, + 0.08255518972873688, + -0.018060216680169106, + -0.02101362682878971, + -0.018737975507974625, + 0.02962043136358261, + 0.018020639196038246, + -0.059273090213537216, + 0.05500044301152229, + 0.005752807483077049, + 0.06621794402599335, + 0.051584646105766296, + -0.04904276132583618, + 0.050948742777109146, + -0.012439416721463203, + -0.01580539532005787, + 0.049802619963884354, + 0.0040183300152421, + 0.014675934799015522, + -0.07356419414281845, + -0.03620278462767601, + 0.019054053351283073, + -0.03478281944990158, + -0.010346596129238605, + -0.06838257610797882, + -0.01233036257326603, + 0.0638280138373375, + 0.05283364653587341, + -0.07952694594860077, + -0.12455952912569046, + -0.10560296475887299, + 0.04818429425358772, + 0.05800989270210266, + 0.14881397783756256, + -0.0379084087908268, + -0.030298857018351555, + -0.03052150458097458, + -0.04809272289276123, + -0.03946354612708092, + 0.013634915463626385, + 0.030025383457541466, + 0.04176552966237068, + 0.04277753457427025, + -0.004203586373478174, + 0.013848206959664822, + -0.000919921207241714, + -0.02548908442258835, + 0.004692040849477053, + 0.05224675312638283, + -0.018846767023205757, + -0.055013108998537064, + -0.01394691038876772, + -0.09081617742776871, + 0.06324359774589539, + 0.008155628107488155, + -0.036102294921875, + 0.03953499346971512, + 0.0052352347411215305, + -0.08258260786533356, + -0.11164509505033493, + -0.0564168244600296, + -0.016345705837011337, + 0.041670382022857666, + 0.019927537068724632, + -0.08303103595972061, + -0.08332785964012146, + -0.04906344413757324, + -0.060607701539993286, + -0.03962709382176399, + -9.689136641100049e-05, + 0.0076043554581701756, + 0.06462439149618149, + 0.039786819368600845, + 0.015463058836758137, + 0.053495150059461594, + 0.016796857118606567, + -0.07324511557817459, + 0.11227939277887344, + -0.0053278361447155476, + 0.028572091832756996, + -0.027525121346116066, + -0.07084216177463531, + 0.01783318817615509, + 0.0017004940891638398, + -0.009670698083937168, + -0.07200034707784653, + -0.017929816618561745, + -0.031752873212099075, + -0.02592311054468155, + -0.10666071623563766, + 0.00977907981723547, + 0.013401118107140064, + -0.0016356351552531123, + -0.04751867055892944, + -0.040776751935482025, + -0.034028828144073486, + 0.007391538005322218, + 0.021541645750403404, + 0.06246494874358177, + -0.058552373200654984, + -0.027255266904830933, + -0.03181326389312744, + -0.013265806250274181, + 0.009877392090857029, + -0.060467492789030075, + -1.6371666347008716e-33, + 0.08664096891880035, + 0.040681883692741394, + 0.017955154180526733, + 0.06274566799402237, + 0.046727877110242844, + -0.021123209968209267, + -0.08017948269844055, + -0.028422608971595764, + -0.12662510573863983, + 0.04318396374583244, + -0.004640738479793072, + 0.05283276364207268, + -0.060765333473682404, + -0.015390426851809025, + 0.14485251903533936, + -0.037182070314884186, + 0.05694202706217766, + -0.0934755802154541, + -0.0029967341106384993, + -0.018420150503516197, + -0.06402230262756348, + 0.07241561263799667, + -0.09441088885068893, + -0.048043906688690186, + -0.029880840331315994, + -0.04004998132586479, + 0.013083675876259804, + -0.07628033310174942, + -0.03035830147564411, + 0.06692875176668167, + 0.09446930885314941, + -0.04097714647650719, + 0.0668133944272995, + 0.0200826283544302, + -0.04816628247499466, + -0.0008381469524465501, + -0.064837247133255, + -0.05565069243311882, + 0.02116973139345646, + 0.09919598698616028, + 0.013990439474582672, + -0.06777739524841309, + 0.02637057565152645, + 0.028541428968310356, + -0.027528448030352592, + 0.07288873940706253, + -0.03962724283337593, + 0.003352703060954809, + 0.00014465932326857, + 0.034270357340574265, + 0.06466466188430786, + -0.01751246675848961, + 0.04105617478489876, + -0.0319226048886776, + 0.006532073486596346, + -0.010236523114144802, + -0.006207399535924196, + 0.04859267547726631, + -0.029621319845318794, + -0.00519927591085434, + -0.07160253822803497, + -0.06696860492229462, + 0.06435705721378326, + -0.06337378919124603, + 0.038952454924583435, + -0.017654499039053917, + -0.09815847128629684, + 0.03971600532531738, + -0.004650426562875509, + 0.04390539601445198, + -0.0034126995597034693, + 0.0685260146856308, + 0.007381842005997896, + -0.05837966501712799, + -0.08591931313276291, + 0.023161116987466812, + 0.0033534623216837645, + 0.03245380148291588, + 0.08553202450275421, + -0.1011446863412857, + -0.11670786887407303, + 0.10652439296245575, + -0.027485737577080727, + 0.06608247756958008, + 0.036135002970695496, + 0.024106675758957863, + 0.007247145287692547, + -0.07151845842599869, + 0.007280067540705204, + 0.00879271887242794, + -0.006367617752403021, + 0.03852516785264015, + 0.009558302350342274, + -0.12135131657123566, + -0.12184854596853256, + 2.169945352462413e-34, + -0.007107902318239212, + 0.0023006044793874025, + -0.09495297819375992, + 0.07285445928573608, + 0.005757099017500877, + 0.018865175545215607, + 0.05877438187599182, + 0.030339650809764862, + -0.020002152770757675, + 0.004075475037097931, + -0.05973714217543602, + 0.0013990304432809353, + -0.025411423295736313, + -0.03442557156085968, + 0.054333385080099106, + 0.05163620412349701, + -0.008411558344960213, + 0.01175999641418457, + 0.04868115112185478, + 0.007062953896820545, + -0.01600782386958599, + -0.05033761262893677, + 0.011064134538173676, + 0.06715314090251923, + -0.08384707570075989, + 0.04389642924070358, + 0.07949498295783997, + -0.03309741988778114, + -0.051374487578868866, + -0.0504155196249485, + -0.012599173933267593, + -0.05349214747548103, + -0.030981773510575294, + 0.07096394896507263, + -0.05858899652957916, + 0.046073853969573975, + 0.02201261930167675, + -0.05560868978500366, + 0.021625777706503868, + 0.04217654839158058, + 0.01728767715394497, + 0.0016517509939149022, + -0.024915656074881554, + -0.04301934316754341, + -0.016511740162968636, + -0.03038996458053589, + 0.01866815611720085, + 0.0008336410974152386, + -0.018901076167821884, + 0.017743073403835297, + 0.044314444065093994, + -0.04689807444810867, + 0.03189690783619881, + 0.0722537562251091, + -0.021023012697696686, + -0.005043580196797848, + 0.026318278163671494, + 0.016525622457265854, + -0.0060524893924593925, + 0.05099320039153099, + -0.04134703055024147, + 0.02118956483900547, + -0.009014468640089035, + 0.027947792783379555, + 0.019629277288913727, + -0.012718116864562035, + -0.03143179789185524, + -0.0022866185754537582, + 0.032027892768383026, + -0.0522477813065052, + 0.08522707223892212, + 0.035565637052059174, + -0.035455115139484406, + 0.07992721349000931, + -0.023548437282443047, + 0.018865281715989113, + 0.0488584078848362, + -0.009504919871687889, + 0.03463738039135933, + 0.12559661269187927, + -0.05809656158089638, + -0.004761146381497383, + -0.059545326977968216, + 0.022729964926838875, + -0.018718073144555092, + 0.013409726321697235, + 0.008320068940520287, + 0.05586755648255348, + -0.00024195034347940236, + -0.01697610691189766, + -0.026855111122131348, + 0.08835367858409882, + 0.03796042501926422, + -0.0334978885948658, + 0.008439764380455017, + -1.3238891760636307e-08, + -0.06264322251081467, + 0.04367893934249878, + -0.01049438863992691, + 0.004006118513643742, + 0.12925682961940765, + 0.015219240449368954, + -0.023588664829730988, + -0.13272152841091156, + -0.036298204213380814, + -0.012956533581018448, + 0.025475427508354187, + -0.002646460197865963, + 0.0054087284952402115, + -0.025456029921770096, + 0.06915459036827087, + 0.04036642983555794, + -0.027079978957772255, + 0.03665807098150253, + -0.06037897616624832, + -0.04210944101214409, + -0.04994380846619606, + 0.09280426055192947, + 0.010290932841598988, + -0.032493118196725845, + 0.007237785961478949, + -0.0033146007917821407, + -0.056332722306251526, + 0.04385121539235115, + 0.0584850087761879, + 0.11073936522006989, + -0.002053862204775214, + 0.0890568420290947, + 0.007526518777012825, + -0.0030911858193576336, + -0.06563393771648407, + -0.04710136726498604, + -0.02374158427119255, + 0.03500780463218689, + 0.05097092688083649, + 0.14022953808307648, + -0.012652261182665825, + 0.03891603276133537, + 0.02686714567244053, + -0.039968423545360565, + -0.01483505591750145, + -0.03176450729370117, + 0.09966841340065002, + -0.069656141102314, + -0.07430187612771988, + -0.014698894694447517, + 0.04940976947546005, + 0.021604835987091064, + 0.06311999261379242, + 0.08916602283716202, + -0.041388481855392456, + -0.057870764285326004, + 0.01117522269487381, + 0.07591072469949722, + -0.008542786352336407, + 0.008210795931518078, + 0.10582688450813293, + -0.03999386727809906, + 0.032276224344968796, + 0.015197214670479298 + ], + "fediverse-logo-bold||*new*,social media,decentralized": [ + 0.04985053837299347, + -0.0019215854117646813, + 0.03627443313598633, + 0.0019408437656238675, + 0.1395055204629898, + -0.03925815969705582, + 0.02360367774963379, + -0.013366862200200558, + -0.005300117656588554, + -0.012181483209133148, + 0.008911454118788242, + 0.06892859190702438, + 0.022995080798864365, + -0.04380813613533974, + 0.022157277911901474, + -0.05774945393204689, + 0.011143127456307411, + -0.062332019209861755, + -0.0030038878321647644, + -0.033332452178001404, + -0.05039883777499199, + -0.05656047537922859, + -0.03207108750939369, + 0.049792904406785965, + 0.013826156035065651, + 0.0062723117880523205, + -0.03241952508687973, + -0.021315334364771843, + 0.006885610520839691, + -0.10254929214715958, + 0.04401550069451332, + 0.040109485387802124, + 0.09555965662002563, + 0.021214693784713745, + 0.01368989609181881, + 0.04773015156388283, + 0.04792260006070137, + 0.014343345537781715, + -0.0032266429625451565, + 0.02908365987241268, + 0.046801965683698654, + -0.11383061856031418, + 0.028663817793130875, + 0.018998682498931885, + -0.028280671685934067, + -0.030024215579032898, + -0.0072225951589643955, + 0.018882840871810913, + -0.006860971450805664, + -0.015404264442622662, + -0.005597769748419523, + -0.12651363015174866, + -0.019136933609843254, + 0.008177564479410648, + -0.017861569300293922, + -0.014293136075139046, + 0.012261818163096905, + -0.029535574838519096, + 0.03189893811941147, + -0.03092646412551403, + 0.043353840708732605, + -0.031777020543813705, + 0.002365898108109832, + 0.05932457000017166, + 0.08545562624931335, + -0.020323529839515686, + 0.023247845470905304, + 0.080555260181427, + -0.0020312911365181208, + -0.02111154980957508, + 0.09394224733114243, + 0.0056890943087637424, + -0.00830274447798729, + 0.00712923426181078, + -0.0025872651021927595, + -0.03691510856151581, + 0.020715471357107162, + 0.014920882880687714, + 0.025314204394817352, + -0.04104939475655556, + 0.021025732159614563, + -0.01578836515545845, + -0.0057752556167542934, + -0.03559922054409981, + -0.009453409351408482, + 0.01914680004119873, + -0.08457903563976288, + -0.03351978585124016, + -0.0015135541325435042, + -0.01723778247833252, + -0.0865245908498764, + 0.0911475121974945, + 0.0021018320694565773, + -0.004045652225613594, + -0.11484761536121368, + 0.013901839964091778, + -0.04068859666585922, + -0.07437074184417725, + -0.0823817327618599, + 0.14627188444137573, + -0.04730214551091194, + 0.09661000221967697, + 0.0360090397298336, + -0.02125193551182747, + 0.02359306626021862, + 0.04600365087389946, + -0.026716070249676704, + 0.09493562579154968, + 0.04281662777066231, + 0.06030995771288872, + 0.011472830548882484, + -0.0017549984622746706, + -0.07445565611124039, + 0.010832094587385654, + -0.008451041765511036, + -0.046119384467601776, + -0.02813783660531044, + 0.010060838423669338, + 0.11328931152820587, + -0.014944756403565407, + 0.045462217181921005, + -0.023267844691872597, + -0.06979096680879593, + -0.07971926778554916, + 0.017389796674251556, + -0.027433354407548904, + -0.04608805477619171, + -1.2992818956520401e-33, + 0.027308529242873192, + 0.13611139357089996, + -0.01722653955221176, + 0.04293631389737129, + 0.038389187306165695, + -0.01024689618498087, + -0.05099700018763542, + -0.0532042495906353, + -0.11573462933301926, + 0.019744688645005226, + 0.07187753170728683, + 0.07179427891969681, + -0.004662871826440096, + 0.07060078531503677, + 0.03401409462094307, + -0.14886464178562164, + -0.04209078475832939, + -0.012349136173725128, + 0.02278238534927368, + -0.017997443675994873, + -0.0050531113520264626, + 0.03843031823635101, + -0.046079810708761215, + -0.04406898468732834, + 0.034935981035232544, + -0.042141105979681015, + 0.06247027963399887, + 0.04308496415615082, + 0.07614413648843765, + 0.014034587889909744, + 0.022342028096318245, + 0.03403249382972717, + 0.047485046088695526, + 0.01539118867367506, + 0.011348813772201538, + -0.047556646168231964, + -0.005788965616375208, + -0.08662302047014236, + 0.016155771911144257, + -0.03270339593291283, + -0.023067612200975418, + -0.002116786316037178, + -0.03692799061536789, + 0.037460796535015106, + 0.006193493492901325, + 0.13124792277812958, + -0.0009536820580251515, + -0.09753789007663727, + 0.13847246766090393, + -0.04379649460315704, + -0.015395204536616802, + -0.0390557162463665, + -0.027706792578101158, + 0.0047727166675031185, + 0.0038861872162669897, + -0.06404997408390045, + -0.06848552078008652, + 0.0300378929823637, + 0.03206739202141762, + -0.06857992708683014, + 0.036626171320676804, + -0.04480390623211861, + 0.027677122503519058, + -0.0036611235700547695, + -0.031004345044493675, + 0.06330526620149612, + -0.037653256207704544, + 0.0839584469795227, + 0.022159457206726074, + 0.024197589606046677, + -0.01823342777788639, + 0.05485653132200241, + 0.07056337594985962, + 0.09264343976974487, + -0.03809956833720207, + 0.011763480491936207, + -0.011695959605276585, + 0.02224927768111229, + -0.009329457767307758, + 0.02781536616384983, + -0.06151965633034706, + -0.011110938154160976, + -0.035296227782964706, + 0.12105685472488403, + 0.08289029449224472, + 0.028621917590498924, + 0.03503091633319855, + 0.02631060592830181, + -0.012343057431280613, + 0.035817407071590424, + -0.073720782995224, + 0.06494952738285065, + 0.020475003868341446, + 0.0534055270254612, + -0.13946127891540527, + 3.070453922073943e-34, + -0.057840026915073395, + -0.0021436011884361506, + -0.019370688125491142, + 0.006240377202630043, + -0.043771132826805115, + 0.002399371936917305, + -0.02272881008684635, + 0.06765377521514893, + -0.0053176721557974815, + 0.07137234508991241, + 0.09850527346134186, + 0.0027869821060448885, + -0.050525814294815063, + -0.04188799113035202, + -0.07035959511995316, + -0.030217865481972694, + 0.08277193456888199, + -0.03605983406305313, + -0.08831433951854706, + 0.000716980139259249, + -0.040746647864580154, + -0.0027814360801130533, + -0.11019381135702133, + 0.04510907456278801, + 0.052278488874435425, + 0.028984999284148216, + 0.0026448722928762436, + 0.02814457379281521, + -0.061156854033470154, + -0.009813032113015652, + -0.015508623793721199, + -0.06833667308092117, + -0.003451812546700239, + 0.022185780107975006, + 0.003770844079554081, + 0.037717048078775406, + -0.06442561000585556, + -0.03620795160531998, + 0.0013564578257501125, + -0.004475443158298731, + 0.00516956252977252, + -0.0023305818904191256, + -0.025824053213000298, + 0.07101147621870041, + -0.03531990572810173, + -0.06308485567569733, + -0.13415615260601044, + -0.1008179634809494, + -0.015538957901299, + 0.06834033131599426, + 0.01878945343196392, + -0.03268996253609657, + 0.057581577450037, + -0.02626887336373329, + -0.07707073539495468, + 0.031067023053765297, + -0.004719709046185017, + 0.10619188845157623, + 0.013457070104777813, + 0.041424017399549484, + 0.025667639449238777, + -0.025386838242411613, + -0.06756743788719177, + 0.021679088473320007, + 0.04010352864861488, + -0.06016667187213898, + 0.00740469666197896, + 0.0722271129488945, + -0.04300820082426071, + 0.12078829854726791, + 0.06973736733198166, + -0.009565063752233982, + -0.062295593321323395, + 0.015406152233481407, + 0.01330422144383192, + -0.03731195256114006, + 0.09416671842336655, + 0.022468149662017822, + -0.09999771416187286, + 0.07234356552362442, + 0.013570412993431091, + 0.019585534930229187, + -0.06948107481002808, + -0.009989517740905285, + 0.05761071667075157, + -0.005379773676395416, + 0.022378578782081604, + -0.008708875626325607, + 0.01411853265017271, + 0.011840205639600754, + -0.03874639794230461, + 0.010444038547575474, + 0.001469014910981059, + 0.038582414388656616, + -0.024053215980529785, + -2.1953159290433177e-08, + -0.014308221638202667, + -0.031958483159542084, + -0.07645894587039948, + 0.012419265694916248, + 0.03766700625419617, + -0.012591060250997543, + -0.027415258809924126, + -0.1566062569618225, + -0.06349116563796997, + -0.03148035332560539, + -0.08208272606134415, + -0.0046880533918738365, + -0.1111675426363945, + 0.01887519657611847, + 0.02782720886170864, + -0.027976613491773605, + -0.13127882778644562, + 0.052209850400686264, + -0.043576084077358246, + -0.05260089039802551, + -0.0435488298535347, + 0.04352220520377159, + 0.006685769185423851, + -0.04069654271006584, + -0.030351530760526657, + 0.054319776594638824, + 0.05335241183638573, + -0.039867524057626724, + -0.003683521645143628, + 0.026836173608899117, + -0.020092206075787544, + 0.06160708889365196, + -0.030730659142136574, + -0.010651587508618832, + -0.08594827353954315, + 0.0570920966565609, + -0.08153167366981506, + -0.0022181267850100994, + 0.011586974374949932, + 0.027773279696702957, + 0.03682585805654526, + 0.037094082683324814, + 0.025751255452632904, + -0.013637821190059185, + -0.030267326161265373, + -0.002546618925407529, + -0.0033318744972348213, + 0.05727097764611244, + 0.039201050996780396, + -0.0635497123003006, + -0.0013751039514318109, + -0.0003471732488833368, + -0.0033830502070486546, + 0.028791394084692, + 0.0003946426440961659, + -0.05737125501036644, + 0.038071904331445694, + 0.09736184030771255, + 0.043209124356508255, + 0.017018109560012817, + 0.06159541383385658, + -0.09284728020429611, + 0.04865674301981926, + -0.0014622793532907963 + ], + "figma-logo-bold||*updated*,logos,drawing,art,illustration,ui,interface,prototype,prototyping": [ + 0.021242843940854073, + 0.015778610482811928, + -0.023228855803608894, + -0.020671319216489792, + 0.0731196478009224, + -0.03117411956191063, + 0.030141105875372887, + -0.045797545462846756, + -0.005818850826472044, + 0.05051518604159355, + 0.009368246421217918, + -0.012425949797034264, + 0.041698385030031204, + -0.027302725240588188, + 0.0415060929954052, + 0.007128098048269749, + -0.029492970556020737, + 0.019641384482383728, + 0.05516697093844414, + -0.023029275238513947, + 0.02459082379937172, + -0.004258814267814159, + 0.025922982022166252, + 0.002900961320847273, + 0.07586073875427246, + 0.06225951015949249, + 0.06510350108146667, + -0.0056322854943573475, + -0.01805751770734787, + -0.11908887326717377, + -0.07510373741388321, + 0.035104330629110336, + 0.11825535446405411, + 0.009941978380084038, + 0.03069346211850643, + 0.014473230578005314, + 0.03588566184043884, + -0.004727103281766176, + 0.029183268547058105, + 0.023224657401442528, + -0.04380936920642853, + -0.07285991311073303, + -0.014298131689429283, + 0.024136455729603767, + 0.028383919969201088, + -0.01152325514703989, + -0.06175974756479263, + -0.02569389156997204, + 0.02092553675174713, + 0.04244657978415489, + -0.028286384418606758, + -0.14044293761253357, + -0.13396231830120087, + -0.061003174632787704, + 0.03814758360385895, + -0.04490646347403526, + 0.04157983511686325, + -0.05121360719203949, + 0.0729818046092987, + -0.03135665878653526, + -0.0053413850255310535, + 0.04130885750055313, + 0.033150870352983475, + 0.04923814535140991, + 0.09472307562828064, + -0.055958498269319534, + -0.04260222613811493, + 0.026269149035215378, + 0.015789171680808067, + 0.01756794936954975, + 0.027611035853624344, + -0.00455212639644742, + -0.009656373411417007, + -0.04272908344864845, + -0.04165177419781685, + -0.0048545231111347675, + 0.037099290639162064, + -1.2671790500462521e-05, + 0.0013706592144444585, + -0.1042267456650734, + -0.057566363364458084, + 0.01696464791893959, + -0.038085613399744034, + 0.029457567259669304, + 0.009874831885099411, + 0.10447550565004349, + -0.06289777159690857, + -0.028821568936109543, + -0.00295027787797153, + 0.01616799831390381, + -0.09880629926919937, + -0.0133732995018363, + -0.026192557066679, + 0.039414770901203156, + -0.12495516240596771, + 0.01139655988663435, + 0.02858392894268036, + -0.05150817707180977, + -0.07250764966011047, + 0.0871681198477745, + 0.024831779301166534, + -0.014565390534698963, + 0.09949926286935806, + -0.03692340850830078, + -0.012266251258552074, + -0.0012780174147337675, + 0.007357804104685783, + -0.04955486208200455, + 0.027682717889547348, + 0.08267991989850998, + 0.003853208152577281, + -0.0727992057800293, + -0.12901321053504944, + -0.01688513718545437, + -0.04781496897339821, + 0.008135662414133549, + -0.038288962095975876, + -0.05066792294383049, + 0.11663975566625595, + 0.05865788832306862, + 0.03186747804284096, + 0.024685706943273544, + -0.004258560948073864, + -0.03164184093475342, + -0.030921446159482002, + -0.01819702610373497, + -0.031401123851537704, + -2.1646195824514708e-33, + 0.045493803918361664, + 0.03981228172779083, + 0.01300286315381527, + 0.12342730909585953, + 0.05308659374713898, + -0.022962002083659172, + -0.04009729623794556, + -0.0922694057226181, + -0.08580583333969116, + 0.019086433574557304, + 0.020657211542129517, + 0.11857076734304428, + -0.09318909049034119, + 0.16256965696811676, + 0.04194295033812523, + -0.07995365560054779, + 0.00931875966489315, + -0.0058530401438474655, + -0.08491665869951248, + -0.015752090141177177, + -0.07406281679868698, + 0.010463145561516285, + -0.08089820295572281, + 0.01643183082342148, + 0.012529500760138035, + 0.004723286721855402, + 0.015574052929878235, + 0.0036561661399900913, + -0.04808387905359268, + 0.01391498651355505, + 0.06709571182727814, + 0.042044878005981445, + 0.06897860020399094, + 0.007407554890960455, + -0.08041273802518845, + -0.08303458243608475, + -0.06585429608821869, + -0.04304839298129082, + 0.010016806423664093, + 0.022966686636209488, + -0.05751870572566986, + -0.06374777853488922, + -0.039069533348083496, + 0.0462106354534626, + 0.04232322797179222, + 0.08312208950519562, + -0.05615535378456116, + -0.04053147882223129, + 0.07786941528320312, + 0.02437860332429409, + -0.011125359684228897, + 0.014654104597866535, + 0.010257321409881115, + -0.035929806530475616, + -0.02684292569756508, + -0.12979251146316528, + -0.0681077316403389, + 0.027191290631890297, + 0.0008354493766091764, + -0.032657064497470856, + 0.060261648148298264, + 0.01422349363565445, + -0.0005893574561923742, + 0.0332704596221447, + -0.061201002448797226, + 0.15774662792682648, + -0.0017002319218590856, + 0.0005768136470578611, + 0.061336785554885864, + 0.02083590254187584, + -0.07874859124422073, + 0.055799804627895355, + 0.10465658456087112, + 0.017652709037065506, + -0.059759724885225296, + -0.0022665278520435095, + 0.0009982171468436718, + 0.04122093692421913, + -0.06176384538412094, + 0.010381363332271576, + -0.0968971997499466, + -0.03813989460468292, + -0.08519890159368515, + 0.042297814041376114, + 0.014527599327266216, + 0.03325359895825386, + 0.05273352190852165, + -0.016517961397767067, + -0.03236769884824753, + 0.011980855837464333, + -0.09396500885486603, + 0.03756139799952507, + -0.06510263681411743, + -0.022725587710738182, + -0.11799336224794388, + -5.853432894637122e-34, + 0.044477201998233795, + 0.041586048901081085, + 0.017908595502376556, + 0.012454171665012836, + -0.03461311012506485, + -0.014529168605804443, + 0.0102223576977849, + 0.0017535279039293528, + 0.011500717140734196, + 0.01475987397134304, + 0.05472901463508606, + -0.002266831696033478, + -0.0746321901679039, + -0.06902292370796204, + -0.0039509073831140995, + -0.016291983425617218, + 0.021383818238973618, + 0.010128247551620007, + -0.07144343852996826, + 0.04495960474014282, + -0.023965906351804733, + 0.03387802839279175, + -0.07494169473648071, + 0.02194545976817608, + -0.058484334498643875, + 0.021801428869366646, + -0.008030450902879238, + -0.033708490431308746, + -0.048376213759183884, + -0.02812732756137848, + -0.029291389510035515, + -0.07355910539627075, + 0.05821722745895386, + 0.0911751538515091, + 0.018023056909441948, + -0.023364407941699028, + 0.07210291922092438, + -0.056908559054136276, + -0.015033137053251266, + 0.04329484701156616, + -0.02383023127913475, + 0.012623387388885021, + -0.011152610182762146, + 0.056391287595033646, + -0.036107443273067474, + -0.025030467659235, + -0.06836424022912979, + -0.047356557101011276, + -0.021049559116363525, + 0.0889267846941948, + 0.0252439733594656, + -0.014269622974097729, + 0.04312547668814659, + -0.0443275049328804, + -0.037609975785017014, + -0.0512993261218071, + 0.017184477299451828, + 0.03903587535023689, + 0.02634483389556408, + 0.10590216517448425, + 0.03553289920091629, + -0.025770289823412895, + -0.037171103060245514, + -0.0118830855935812, + -0.01110871136188507, + -0.007942487485706806, + -0.030890919268131256, + -0.08014706522226334, + 0.001361335045658052, + 0.026158588007092476, + 0.06791353970766068, + 0.022117381915450096, + -0.024550901725888252, + 0.03583754599094391, + -0.008038201369345188, + -0.057495858520269394, + 0.0793885812163353, + 0.014002042822539806, + -0.03234405443072319, + -0.031878359615802765, + -0.027687393128871918, + 0.004685283172875643, + -0.02159547433257103, + 0.08454687148332596, + 0.012890096753835678, + 0.08413206040859222, + -0.06952978670597076, + 0.03845391049981117, + 0.05418884754180908, + 0.028040245175361633, + -0.05127377063035965, + 0.09583503007888794, + 0.03350048512220383, + 0.054144587367773056, + -0.05884779617190361, + -2.550812183699236e-08, + -0.019857361912727356, + 0.00844485778361559, + 0.028455041348934174, + -0.04487239196896553, + 0.05792366713285446, + 0.018980391323566437, + 0.03081357665359974, + -0.0643426701426506, + -0.02258642390370369, + -0.07141289860010147, + 0.037434663623571396, + 0.05143563821911812, + -0.06196984276175499, + -0.01815422810614109, + 0.0736595094203949, + -0.007110224571079016, + -0.040641557425260544, + 0.0892806276679039, + 0.008218248374760151, + -0.04868840426206589, + -0.04606206715106964, + 0.0787273496389389, + 0.002470351057127118, + -0.025909423828125, + -0.03711766377091408, + 0.00824702251702547, + -0.06520278751850128, + 0.035847581923007965, + -0.01406970713287592, + 0.0523860789835453, + 0.06515705585479736, + 0.055835530161857605, + 0.04744287207722664, + 0.008851221762597561, + -0.06685662269592285, + -0.03542472422122955, + -0.03145505487918854, + 0.01466152723878622, + -0.08088768273591995, + 0.07987228035926819, + 0.03024255484342575, + -0.057452693581581116, + 0.015796789899468422, + -0.04425109922885895, + -0.014867080375552177, + 0.020343603566288948, + 0.0420980304479599, + -0.048939432948827744, + -0.06124985218048096, + -0.05694254860281944, + -0.032164718955755234, + 0.0707554817199707, + -0.00687031215056777, + 0.033752746880054474, + -0.03513359650969505, + -0.021726151928305626, + 0.019428864121437073, + 0.0684044137597084, + 0.040079884231090546, + 0.036362871527671814, + 0.14366008341312408, + -0.0575278215110302, + 0.010929027572274208, + -0.0021349808666855097 + ], + "file-bold||documents,files,save,write,page": [ + 0.0037672575563192368, + 0.02108301967382431, + -0.06133202835917473, + 0.09838492423295975, + 0.09239191561937332, + 0.005770355928689241, + -0.007536873687058687, + -0.002101926365867257, + 0.04976124316453934, + 0.06613893806934357, + -0.01569865643978119, + 0.10881078243255615, + 0.07589942216873169, + -0.06198748201131821, + -0.0476292185485363, + 0.00926678441464901, + -0.07659114897251129, + 0.030460719019174576, + -0.04012121632695198, + 0.023514604195952415, + 0.0130155049264431, + 0.06975637376308441, + 0.07717091590166092, + -0.005507424008101225, + 0.06673692166805267, + 0.015494116581976414, + 0.01599845103919506, + -0.048647984862327576, + 0.00656293286010623, + -0.08192332834005356, + 0.03041992522776127, + -0.013730165548622608, + 0.10492899268865585, + 0.018915632739663124, + 0.0927862748503685, + 0.07548838108778, + -0.020778918638825417, + -0.05167005956172943, + -0.03396674618124962, + 0.024142684414982796, + 0.02409970574080944, + -0.03560029715299606, + -0.0275102648884058, + 0.038545265793800354, + -0.06957173347473145, + -0.07247845083475113, + -0.026486985385417938, + -0.05176009237766266, + 0.00040894487756304443, + -0.013115578331053257, + -0.015971938148140907, + -0.0524623803794384, + -0.13715460896492004, + -0.02262144163250923, + 0.019731298089027405, + -0.03098241426050663, + -0.05462062731385231, + -0.02055264450609684, + -0.013243226334452629, + -0.01832902431488037, + -0.0039698719047009945, + 0.036257240921258926, + 0.019129879772663116, + -0.006834352854639292, + 0.03790783882141113, + 0.11726067215204239, + -0.01731277070939541, + 0.061432547867298126, + -0.03623998910188675, + -0.016765061765909195, + 0.011720806360244751, + 0.022594403475522995, + 0.012829714454710484, + -0.027049686759710312, + 0.01457550935447216, + -0.04098866507411003, + 0.04155833646655083, + 0.035049647092819214, + -0.05942365154623985, + -0.08370190113782883, + -0.00823929812759161, + -0.08442273736000061, + 0.017599835991859436, + 0.010060470551252365, + 0.07733478397130966, + 0.04719625040888786, + -0.02876119874417782, + -0.0482502244412899, + -0.047531116753816605, + -0.009273816831409931, + -0.06013328954577446, + -0.03169308602809906, + 0.04230702295899391, + 0.030383560806512833, + -0.1507607251405716, + 0.0001994963240576908, + 0.10700356215238571, + 0.053139492869377136, + 0.01582401432096958, + 0.03412327170372009, + 0.027072342112660408, + 0.033961325883865356, + 0.07277637720108032, + 0.007482603657990694, + 0.016460619866847992, + -0.016685912385582924, + 0.053085267543792725, + -0.03227189555764198, + -0.0177629254758358, + -0.06329895555973053, + 0.027697360143065453, + -0.0923924669623375, + -0.1100926622748375, + -0.06605463474988937, + -0.03982795774936676, + -0.0366310216486454, + -0.06443338096141815, + -0.0027155510615557432, + 0.0674736276268959, + 0.09941629320383072, + 0.06204736977815628, + -0.027578281238675117, + -0.06297311186790466, + -0.0364050529897213, + 0.018922636285424232, + -0.05322049930691719, + 0.07850522547960281, + -1.1711684397757653e-33, + 0.07345572113990784, + 0.019979124888777733, + -0.06946456432342529, + 0.1304575353860855, + 0.041309840977191925, + 0.026332003995776176, + -0.0339757576584816, + -0.09034968912601471, + -0.12238829582929611, + 0.010532819665968418, + 0.06977002322673798, + 0.05223941430449486, + -0.01296755950897932, + 0.10511303693056107, + 0.013303698971867561, + -0.016469651833176613, + -0.02759544923901558, + -0.025735562667250633, + -0.03255688399076462, + 0.008366118185222149, + -0.03979289531707764, + 0.06083912029862404, + -0.050549108535051346, + -0.007773649878799915, + -0.01246999017894268, + -0.002938671503216028, + 0.018681636080145836, + -0.05935351178050041, + -0.08809908479452133, + -0.005650287959724665, + 0.005442343652248383, + -0.012937532737851143, + 0.08690683543682098, + 0.03198600187897682, + -0.09640322625637054, + 0.03217120096087456, + -0.09241843223571777, + -0.018272561952471733, + 0.016306595876812935, + 0.03953688219189644, + -0.09190233051776886, + -0.02580532245337963, + 0.015303457155823708, + -0.03373030945658684, + 0.010945874266326427, + 0.12467674165964127, + -0.06110714003443718, + -0.054433904588222504, + 0.007643785327672958, + 0.02182314544916153, + -0.027480509132146835, + 0.030109290033578873, + 0.04902001842856407, + 0.05196195840835571, + 0.024418450891971588, + -0.024714672937989235, + -0.01981547102332115, + 0.032585714012384415, + 0.06733310967683792, + 0.0054258075542747974, + 0.0820106640458107, + 0.022789334878325462, + -0.01120085921138525, + -0.040358901023864746, + -0.039537444710731506, + 0.04305368289351463, + 0.010096520185470581, + 0.06076030805706978, + 0.046852681785821915, + -0.04797493293881416, + -0.05417155101895332, + 0.010184645652770996, + 0.016153141856193542, + 0.011506494134664536, + 0.0024954506661742926, + 0.034771692007780075, + 0.022250203415751457, + -0.05129437521100044, + 0.006100212223827839, + -0.0823328047990799, + -0.10742770880460739, + -0.030474767088890076, + -0.02396557293832302, + 0.007305039558559656, + 0.0072341188788414, + 0.014864040538668633, + -0.017644111067056656, + -0.04521512612700462, + 0.008989153429865837, + -0.009936388581991196, + 0.0020007602870464325, + 0.024305542930960655, + 0.020427146926522255, + -0.13886518776416779, + -0.049925025552511215, + -7.419960033035251e-34, + 0.1043800413608551, + -0.009184285067021847, + -0.10148308426141739, + 0.06689045578241348, + -0.049421727657318115, + 0.0773681253194809, + -0.0026022489182651043, + 0.03015742637217045, + 0.0032121101394295692, + 0.015327111817896366, + 0.005566994659602642, + 0.011160374619066715, + -0.044388409703969955, + -0.042999930679798126, + -0.03510215878486633, + -0.019373994320631027, + 0.011936696246266365, + -0.00996329914778471, + -0.04760988801717758, + -0.040463853627443314, + -0.08648209273815155, + -0.040437787771224976, + 0.05357026681303978, + 0.0792391449213028, + 0.06115153804421425, + -0.026940304785966873, + -0.03439907729625702, + -0.018110232427716255, + -0.059602316468954086, + -0.0144127756357193, + -0.01669648475944996, + 0.03187524527311325, + -0.002395138144493103, + 0.01726844348013401, + -0.0012067216448485851, + -0.017032673582434654, + 0.0006338372477330267, + -0.010284662246704102, + 0.001096657826565206, + 0.08550114929676056, + -0.003245704108849168, + 0.032223887741565704, + 0.025650793686509132, + 0.024647770449519157, + -0.0663217157125473, + 0.026873432099819183, + 0.007828569039702415, + -0.05796346813440323, + 0.022220980376005173, + 0.05487925559282303, + 0.08421716839075089, + -0.06080232188105583, + 0.0009226390975527465, + -0.0519561693072319, + -0.032689206302165985, + -0.040592946112155914, + 0.020803874358534813, + -0.021359136328101158, + -0.05994528532028198, + 0.05015038326382637, + -0.01998230442404747, + 0.0414910651743412, + -0.034184958785772324, + -0.005356913898140192, + -0.019994044676423073, + -0.060367945581674576, + 0.011720484122633934, + -0.0457000657916069, + 0.027513809502124786, + 0.01974816434085369, + 0.009376662783324718, + -0.030424488708376884, + -0.0012288270518183708, + 0.06324563175439835, + 0.0631420910358429, + -0.018707841634750366, + 0.047321218997240067, + -0.03092489205300808, + -0.00487178098410368, + -0.0066519081592559814, + 0.05391990765929222, + 0.05129271745681763, + -0.02054324746131897, + 0.04671922326087952, + -0.018319085240364075, + 0.04533976688981056, + -0.05289627984166145, + 0.004742197692394257, + -0.010249299928545952, + -0.0536167211830616, + -0.05208310857415199, + 0.09571374952793121, + 0.061498746275901794, + -0.02451515570282936, + -0.06014876440167427, + -1.7873629687414905e-08, + -0.10856111347675323, + -0.04715486988425255, + -0.031378697603940964, + -0.012530436739325523, + 0.007572866510599852, + -0.06460343301296234, + 0.013611631467938423, + -0.02369769848883152, + -0.039023708552122116, + -0.040065132081508636, + 0.09005569666624069, + -0.06783206760883331, + -0.07339862734079361, + -0.10796532779932022, + -0.014507105574011803, + 0.01970711722970009, + 0.06274199485778809, + 0.027608824893832207, + -0.024748453870415688, + -0.060649797320365906, + -0.006181203294545412, + 0.06718821823596954, + 0.008896018378436565, + 0.0413854755461216, + 0.0780128538608551, + 0.03576822206377983, + -0.023782026022672653, + 0.03511646389961243, + 0.059366460889577866, + 0.03869820758700371, + 0.052955977618694305, + 0.02266940474510193, + 0.002317710081115365, + 0.04915620759129524, + -0.042066216468811035, + 0.008111282251775265, + 0.06954941898584366, + 0.03776342794299126, + -0.032513923943042755, + 0.09686028957366943, + -0.006520737428218126, + 0.02825114130973816, + -0.030091768130660057, + -0.04214290529489517, + -0.02791370451450348, + -0.03870870918035507, + 0.044605452567338943, + -0.015784163028001785, + -0.07041631639003754, + -0.1151539534330368, + -0.04833539202809334, + 0.0022447225637733936, + 0.06444643437862396, + 0.16703321039676666, + -0.05563000589609146, + -0.09045930206775665, + 0.06568608433008194, + 0.15026454627513885, + 0.04665634036064148, + -0.04056791961193085, + 0.08500537276268005, + 0.01746225915849209, + 0.04250848665833473, + 0.019583649933338165 + ], + "file-archive-bold||documents,zip,compression": [ + -0.03442218154668808, + 0.11375950276851654, + -0.07490964233875275, + 0.08360558748245239, + 0.07219654321670532, + -0.019428152590990067, + -0.022334370762109756, + -0.03420022875070572, + 0.031155752018094063, + 0.07102392613887787, + -0.07760230451822281, + 0.10738830268383026, + 0.0447554774582386, + 0.011170506477355957, + -0.057980116456747055, + 0.04081833362579346, + -0.05479259788990021, + 0.06358460336923599, + -0.007579225115478039, + -0.002369583584368229, + 0.020630856975913048, + 0.05585188791155815, + 0.08565555512905121, + -0.028204182162880898, + 0.09555934369564056, + 0.026415251195430756, + -0.026521725580096245, + 0.007447044365108013, + 0.06936641782522202, + -0.04169696569442749, + 0.03309233859181404, + -0.029046719893813133, + 0.13733774423599243, + 0.03300364315509796, + 0.08402101695537567, + 0.07866022735834122, + 0.02464597299695015, + -0.01586434431374073, + -0.025428226217627525, + 0.09179876744747162, + 0.037226032465696335, + 0.024238605052232742, + -0.04164958745241165, + 0.010612494312226772, + -0.11047334223985672, + -0.048354487866163254, + 0.004165728110820055, + -0.0012890832731500268, + -0.02723667398095131, + -0.005947290454059839, + -0.02375742234289646, + -0.034877873957157135, + -0.0944233238697052, + 0.05222141742706299, + 0.02592492289841175, + -0.0169792789965868, + -0.07351090013980865, + -0.009198534302413464, + 0.001281391130760312, + -0.08676955103874207, + -0.022545864805579185, + 0.02743997424840927, + -0.03914067894220352, + 0.048027604818344116, + 0.05890713632106781, + 0.07927683740854263, + 0.06467459350824356, + 0.07239066064357758, + -0.06231696903705597, + -0.04370144382119179, + 0.02213214337825775, + -0.006301508750766516, + -0.02050372213125229, + 0.02663259394466877, + -0.029409712180495262, + 0.056805580854415894, + 0.055379416793584824, + 0.07185302674770355, + -0.06517505645751953, + -0.013514534570276737, + -0.04098314046859741, + -0.13316527009010315, + 0.02193109691143036, + -0.020777761936187744, + 0.0015727455029264092, + -0.0022243636194616556, + -0.05738058313727379, + -0.08749064058065414, + -0.07454904168844223, + -0.021853040903806686, + -0.0027429189067333937, + 0.05425294488668442, + 0.03533225506544113, + 0.03781744837760925, + -0.0680474266409874, + 0.024397818371653557, + 0.08296257257461548, + 0.04958551377058029, + -0.006335871294140816, + 0.04785512015223503, + 0.04381523281335831, + 0.029505189508199692, + 0.05372735485434532, + -0.06940401345491409, + 0.007167053408920765, + -0.06903892755508423, + 0.053966592997312546, + -0.019518425688147545, + 0.005890034604817629, + 0.05297449603676796, + 0.018725844100117683, + -0.13042302429676056, + 0.008664270862936974, + -0.08512694388628006, + 0.004358509089797735, + 0.011608555912971497, + -0.10431194305419922, + 0.05474092811346054, + 0.06042316183447838, + 0.03489947319030762, + 0.015091191977262497, + -0.051428649574518204, + -0.02521829679608345, + -0.04749953746795654, + 0.024819493293762207, + -0.043252307921648026, + 0.057968832552433014, + -2.7058223243578368e-33, + 0.03802292421460152, + 0.04443235322833061, + -0.08491922914981842, + 0.12199246883392334, + -0.009030234068632126, + 0.04052482172846794, + -0.004061291925609112, + -0.049385715276002884, + -0.06170877069234848, + 0.06916510313749313, + 0.002389386063441634, + 0.07729904353618622, + -0.011264262720942497, + 0.04802931845188141, + -0.02210392616689205, + 0.022226834669709206, + -0.033583927899599075, + -0.00602166960015893, + -0.030354753136634827, + 0.032712846994400024, + -0.04572742059826851, + 0.030767546966671944, + -0.022408941760659218, + -0.0462050586938858, + -0.04195122793316841, + -0.05345449969172478, + 0.06142266094684601, + -0.13184334337711334, + -0.07497338205575943, + -0.0038779894821345806, + 0.013914504088461399, + 0.035758890211582184, + 0.046603165566921234, + 0.02182040922343731, + -0.03272111713886261, + 0.02605879120528698, + -0.0626705139875412, + 0.03996127471327782, + -0.053569238632917404, + 0.05023562163114548, + -0.008173597045242786, + 0.01792220026254654, + -0.0015732314204797149, + -0.053805697709321976, + 0.025518937036395073, + 0.09056992828845978, + 0.06167386472225189, + -0.10118500143289566, + -0.034827761352062225, + 0.013991273008286953, + 0.02355966344475746, + 0.03917575627565384, + -0.0030343157704919577, + 0.07118885219097137, + 0.026341624557971954, + 0.00081003358354792, + 0.030046353116631508, + 0.013373326510190964, + 0.07171575725078583, + -0.0053862291388213634, + 0.041222281754016876, + -0.0027668920811265707, + 0.050559476017951965, + -0.04707322642207146, + 0.08130920678377151, + 0.008966855704784393, + -0.02487301267683506, + 0.06137184426188469, + 0.07528795301914215, + 0.03366198018193245, + 0.023369358852505684, + 0.014996045269072056, + 0.06289209425449371, + -0.01195704285055399, + -0.01443027425557375, + 0.02258477360010147, + 0.008667404763400555, + -0.01139749400317669, + -0.005523291416466236, + -0.13183222711086273, + -0.08040425926446915, + -0.0787791907787323, + -0.005950467195361853, + 0.020796339958906174, + -0.02220389060676098, + 0.04794367030262947, + -0.005280213430523872, + 0.014410299248993397, + -0.0091565465554595, + -0.05256922170519829, + 0.047126833349466324, + 0.006805449724197388, + -0.02538844756782055, + -0.1601242870092392, + -0.017556356266140938, + 9.558198032505416e-34, + 0.10793181508779526, + -0.004081357270479202, + -0.11359287053346634, + -0.0351194366812706, + -0.029637452214956284, + 0.060342613607645035, + -0.021548505872488022, + 0.032048244029283524, + -0.04799044877290726, + -0.025969184935092926, + 0.03165410831570625, + -0.050536930561065674, + -0.04949897527694702, + -0.023637255653738976, + 0.014860429801046848, + 0.007710264064371586, + 0.0329287089407444, + -0.05516408011317253, + -0.05587627738714218, + -0.00857068132609129, + -0.06443078070878983, + -0.01536942645907402, + -0.03183622285723686, + 0.13005125522613525, + 0.058892227709293365, + -0.03175229951739311, + -0.01688435673713684, + -0.009319130331277847, + -0.006098418030887842, + 0.003038381226360798, + -0.03078724443912506, + -0.01731870137155056, + -0.03984985128045082, + 0.0064279986545443535, + -0.047045618295669556, + -0.018414873629808426, + 0.0117459986358881, + 0.050279390066862106, + 0.010712604969739914, + 0.029630815610289574, + -0.023948416113853455, + 0.037811409682035446, + -0.05296466499567032, + -0.02220047451555729, + 0.011068913154304028, + -0.04539290815591812, + -0.057832762598991394, + -0.06754030287265778, + -0.007903563790023327, + 0.0477447547018528, + 0.03389619290828705, + 0.03395797312259674, + -0.03964587673544884, + 0.02175789698958397, + 0.01738552190363407, + -0.06489083915948868, + -0.07862619310617447, + 0.014939452521502972, + -0.0711774006485939, + 0.06397442519664764, + -0.051988083869218826, + 0.06215338781476021, + -0.006577496882528067, + -0.06658673286437988, + -0.022872094064950943, + -0.040345802903175354, + -0.0371059775352478, + -0.09702492505311966, + -0.014808553270995617, + 0.06611168384552002, + 0.0432104729115963, + -0.04592685028910637, + 0.038151003420352936, + 0.07186263054609299, + 0.0630616694688797, + -0.020229876041412354, + 0.11664558202028275, + 0.07040544599294662, + -0.00566879753023386, + -0.009464945644140244, + -0.009378300048410892, + 0.05673927068710327, + -0.004801644943654537, + 0.07422127574682236, + -0.04743736982345581, + 0.04002620279788971, + 0.009204011410474777, + -0.008418257348239422, + -0.009570775553584099, + -0.05817006900906563, + -0.0019932473078370094, + 0.011468104086816311, + 0.005569441244006157, + -0.006205301266163588, + 0.032975755631923676, + -1.5552446441802203e-08, + -0.0788758173584938, + -0.04306592419743538, + -0.031638242304325104, + 0.0014463969273492694, + 0.018060846254229546, + 0.021836308762431145, + -0.04132597893476486, + 0.017550799995660782, + -0.07330560684204102, + -0.07776942849159241, + 0.10046166926622391, + -0.03932993486523628, + -0.07435023784637451, + -0.008519149385392666, + -0.007750682532787323, + 0.028101054951548576, + -0.008863196708261967, + 0.005826424341648817, + -0.03682529553771019, + -0.03946658596396446, + -0.03039700910449028, + 0.03561550751328468, + 0.007198872044682503, + 0.05394808202981949, + 0.07619093358516693, + 0.007797383237630129, + -0.07351258397102356, + -0.022505775094032288, + 0.07881718873977661, + 0.03709472715854645, + 0.0064063603058457375, + 0.05077286809682846, + -0.014322749339044094, + -0.06512793153524399, + -0.07089241594076157, + 0.005350089631974697, + 0.07040893286466599, + -0.0010727742919698358, + -0.008155683055520058, + 0.06341623514890671, + -0.038386501371860504, + 0.02038300596177578, + -0.04011844843626022, + -0.056675903499126434, + -0.014350720681250095, + -0.03476075455546379, + 0.04363377392292023, + -0.035615332424640656, + -0.10557184368371964, + -0.03166717290878296, + 0.014120399951934814, + -0.007722789421677589, + -0.011040315963327885, + 0.10875877737998962, + -0.003062300616875291, + -0.09707425534725189, + -0.0008891930337995291, + 0.1255720853805542, + -0.032923854887485504, + 0.04166167974472046, + 0.10768985003232956, + -0.0782017856836319, + 0.04486090689897537, + -0.011244055815041065 + ], + "file-arrow-down-bold||documents,files,save,write,download,directional,pointer,pointing,arrowhead": [ + 0.031756412237882614, + -0.0177886001765728, + -0.07793579995632172, + 0.06988292187452316, + 0.05671624466776848, + 0.011647233739495277, + 0.04951907694339752, + 0.03194210305809975, + 0.058315739035606384, + 0.05292906239628792, + 0.008138415403664112, + 0.13221299648284912, + 0.053584542125463486, + -0.016083497554063797, + -0.07283475250005722, + 0.011925283819437027, + -0.10501279681921005, + 0.020038442686200142, + 0.023994822055101395, + 0.012492716312408447, + -0.022159133106470108, + 0.011087730526924133, + 0.03137163445353508, + -0.007924720644950867, + 0.03538943827152252, + 0.02814275026321411, + -0.001796285156160593, + 0.003916040062904358, + -0.03164258971810341, + -0.06990557163953781, + -0.05057978257536888, + -0.017857523635029793, + 0.04166297987103462, + 0.04300874099135399, + -0.024503536522388458, + 0.013277282007038593, + 0.03397362306714058, + -0.048640232533216476, + -0.050044938921928406, + 0.02928299456834793, + 0.0464421883225441, + 0.0071242195554077625, + -0.0028643354307860136, + -0.0042811003513634205, + -0.025942634791135788, + 0.0020943679846823215, + -0.039900533854961395, + -0.02713935822248459, + 0.026715893298387527, + 0.07375515252351761, + -0.053935930132865906, + -0.06429770588874817, + -0.1248447448015213, + 0.016838805750012398, + 0.0875658243894577, + 0.017439333721995354, + -0.01020776852965355, + -0.029079440981149673, + 0.026985010132193565, + 0.04342746362090111, + 0.04040569067001343, + -0.009206598624587059, + -0.0019650280009955168, + 0.00988758821040392, + 0.04109419137239456, + 0.06300853937864304, + -0.04070794954895973, + 0.061041489243507385, + -0.002979041077196598, + -0.01067690085619688, + 0.003788898466154933, + -0.03486333414912224, + -0.045516807585954666, + -0.04536145552992821, + -0.00473052216693759, + -0.03931407257914543, + 0.046415116637945175, + 0.09914011508226395, + -0.057242684066295624, + -0.0934637114405632, + -0.0013810809468850493, + -0.005623386241495609, + -0.006533364299684763, + 0.06177956983447075, + 0.04839432239532471, + 0.08284887671470642, + -0.02715957909822464, + -0.05745750665664673, + -0.06535504013299942, + -0.04969555139541626, + -0.0505547896027565, + -0.04220406711101532, + 0.02909212000668049, + -0.002828615251928568, + -0.06504437327384949, + -0.02368880808353424, + 0.1301797330379486, + -0.03806023299694061, + -0.0566541962325573, + 0.0378025658428669, + 0.029452145099639893, + 0.005975084379315376, + 0.07706005126237869, + -0.06530986726284027, + 0.0024931994266808033, + 0.02537482976913452, + 0.04835720732808113, + -0.060400404036045074, + -0.045440878719091415, + -0.03662896156311035, + -0.019172286614775658, + -0.10816165804862976, + -0.08496028929948807, + -0.08737578988075256, + -0.0496857725083828, + -0.023706238716840744, + -0.16224196553230286, + 0.018488118425011635, + 0.07376118004322052, + 0.042003337293863297, + 0.06829618662595749, + -0.03967989981174469, + -0.06960108876228333, + -0.046269726008176804, + -0.023612529039382935, + -0.039960719645023346, + 0.024604273959994316, + -2.7590942589691644e-33, + 0.060442883521318436, + 0.0004389388195704669, + -0.025532947853207588, + 0.027203325182199478, + 0.043479032814502716, + -0.013941255398094654, + -0.04710264131426811, + -0.051312822848558426, + -0.1436782330274582, + -0.007535736542195082, + 0.12077949196100235, + -0.021934259682893753, + -0.06964249163866043, + 0.12181812524795532, + 0.019634995609521866, + -0.07178010791540146, + -0.0042921933345496655, + 0.02628049999475479, + -0.07232813537120819, + -0.013627719134092331, + -0.03036668337881565, + 0.05352814495563507, + -0.08631196618080139, + -0.02592134103178978, + 0.007753611076623201, + 0.015401077456772327, + 0.011021123267710209, + -0.0523284450173378, + -0.08615948259830475, + 0.009558748453855515, + -0.019169192761182785, + 0.007616984657943249, + 0.07947372645139694, + -0.07524494081735611, + -0.06517248600721359, + 0.007479439489543438, + -0.1502210646867752, + -0.014062460511922836, + -0.005110654514282942, + -0.02564181014895439, + -0.04132379591464996, + -0.07075703889131546, + -0.04770921915769577, + 0.003298557596281171, + 0.0040146238170564175, + 0.11119456589221954, + -0.05175498500466347, + -0.07379161566495895, + -0.012398285791277885, + 0.01092633605003357, + 0.01071719080209732, + 0.012825176119804382, + 0.038881465792655945, + 0.023975102230906487, + 0.026300933212041855, + -0.024422133341431618, + -0.0708351731300354, + 0.13209305703639984, + -0.010378371924161911, + 0.013847923837602139, + 0.046988312155008316, + 0.022715410217642784, + -0.004315522499382496, + -0.014997306279838085, + -0.024145660921931267, + 0.04161139577627182, + -0.017667289823293686, + 0.010829567909240723, + 0.08326748758554459, + 0.008921616710722446, + -0.047880884259939194, + -0.00752835301682353, + 0.04848649352788925, + 0.01532783079892397, + -0.008307510055601597, + 0.012266704812645912, + -0.045888952910900116, + -0.05585454776883125, + 0.053376246243715286, + -0.08503872901201248, + -0.16269086301326752, + -0.024103576317429543, + -0.03238317370414734, + -0.034491654485464096, + 0.035691339522600174, + -0.018665844574570656, + 0.010882338508963585, + -0.06578798592090607, + -0.01589116081595421, + 0.0008735943119972944, + -0.04361845925450325, + 0.04249896854162216, + -0.0072433543391525745, + -0.06686603277921677, + -0.033140577375888824, + 4.186334867686453e-34, + 0.07003283500671387, + 0.014278287068009377, + -0.08600794523954391, + 0.04495004937052727, + -0.12059404700994492, + 0.07068654894828796, + 0.06379382312297821, + -0.005287864711135626, + -0.0013152157189324498, + 0.039108213037252426, + 0.02477099560201168, + 0.04556912183761597, + -0.04267606884241104, + -0.06238356605172157, + 0.05985387787222862, + -0.014169483445584774, + 0.07062089443206787, + 0.007485112175345421, + -0.03047587350010872, + -0.057617660611867905, + -0.04787074029445648, + -0.1102694720029831, + 0.04559110105037689, + 0.061421141028404236, + 0.057532090693712234, + -0.017206482589244843, + 0.06066923215985298, + 0.0074783689342439175, + -0.010766451247036457, + -0.05547971650958061, + 0.022295309230685234, + 0.045512136071920395, + -0.010816204361617565, + -0.00828555691987276, + -0.0004361179599072784, + -0.030346035957336426, + -0.004928044509142637, + 0.010801018215715885, + 0.006227064877748489, + 0.07758898288011551, + -0.002253306098282337, + 0.0481906458735466, + 0.09078691154718399, + 0.01090171467512846, + 0.032689884305000305, + 0.0359947644174099, + -0.013226600363850594, + 0.019157813861966133, + 0.014124815352261066, + 0.031386472284793854, + 0.08382079005241394, + -0.048179689794778824, + -0.012590628117322922, + -0.06279654055833817, + -0.04342750459909439, + 0.013171307742595673, + 0.07335256785154343, + 0.032035164535045624, + -0.017198471352458, + -0.0032828254625201225, + -0.004930366296321154, + -0.04262791574001312, + -0.009264525026082993, + 0.00990249589085579, + -0.032042305916547775, + -0.021772753447294235, + 0.009213034994900227, + -0.07203303277492523, + -0.037615563720464706, + 0.01715034246444702, + 0.028190892189741135, + 0.04580847546458244, + 0.006143493577837944, + 0.005620399955660105, + 0.06097732111811638, + -0.04288294538855553, + 0.0634104460477829, + 0.007395660504698753, + -0.03493214026093483, + -0.05537700280547142, + 0.029577869921922684, + 0.0735606700181961, + 0.012863893993198872, + 0.03885765001177788, + 0.011943097226321697, + 0.046676237136125565, + -0.09235892444849014, + 0.01064426638185978, + 0.015276426449418068, + -0.02402106672525406, + -0.05094470828771591, + 0.04233749583363533, + 0.0628683790564537, + -0.032424960285425186, + -0.056864965707063675, + -2.1687165840944544e-08, + -0.11796078830957413, + -0.016136135905981064, + -0.0009506104397587478, + -0.0337529294192791, + 0.0013551953015848994, + -0.003359388094395399, + -0.009119469672441483, + 0.044609714299440384, + -0.0022379036527127028, + -0.08313214033842087, + 0.08988308906555176, + -0.0017740094335749745, + -0.10848890990018845, + -0.038793232291936874, + 0.06839528679847717, + 0.05498339235782623, + 0.04443002864718437, + 0.019416825845837593, + 0.002982751000672579, + -0.042159050703048706, + 0.02342252805829048, + 0.04728177189826965, + 0.00043777585960924625, + 0.08770841360092163, + -0.018487898632884026, + 0.0043916255235672, + 0.03636543080210686, + 0.13047875463962555, + 0.0783476009964943, + 0.009209126234054565, + 0.06520891189575195, + 0.0325675830245018, + 0.00021205030498094857, + 0.017619293183088303, + -0.010679922066628933, + 0.017752598971128464, + -0.005356044974178076, + 0.08298669010400772, + 0.0005233869305811822, + 0.09195863455533981, + 0.013316554948687553, + 0.0018990113167092204, + -0.025009308010339737, + -0.03145919740200043, + -0.060091376304626465, + 0.00793464109301567, + 0.04888299107551575, + 0.010965998284518719, + -0.08212152868509293, + -0.12421949952840805, + -0.06047211214900017, + -0.00012675125617533922, + 0.05262568220496178, + 0.13103531301021576, + -0.02652999386191368, + 0.006367919500917196, + 0.058336421847343445, + 0.02396361529827118, + -0.01810046099126339, + -0.009290767833590508, + 0.052545271813869476, + 0.08625344187021255, + 0.024658778682351112, + 0.07891817390918732 + ], + "file-arrow-up-bold||documents,files,save,write,upload,directional,pointer,pointing,arrowhead": [ + 0.015367679297924042, + -0.0277553703635931, + -0.07937488704919815, + 0.06882357597351074, + 0.058567989617586136, + 0.0096846092492342, + 0.036573611199855804, + 0.025796400383114815, + 0.05068043991923332, + 0.05924495682120323, + 0.013473859056830406, + 0.13473403453826904, + 0.05923742055892944, + -0.025712788105010986, + -0.0578395314514637, + 0.017253583297133446, + -0.11909011006355286, + 0.00031375265098176897, + 0.012933479622006416, + 0.008560601621866226, + -0.01755596324801445, + 0.0027289926074445248, + 0.037219010293483734, + 0.0002692510897759348, + 0.042196303606033325, + 0.00967791024595499, + 0.017326755449175835, + -0.01839653216302395, + -0.03745706006884575, + -0.05303962901234627, + -0.06103334575891495, + -0.02172183431684971, + 0.019536849111318588, + 0.029507143422961235, + -0.018758654594421387, + 0.034013018012046814, + 0.051823314279317856, + -0.039577312767505646, + -0.07279364764690399, + 0.020291531458497047, + 0.02763444185256958, + -0.016606168821454048, + -0.001446498092263937, + -0.026396295055747032, + -0.007227402646094561, + 0.008295215666294098, + -0.04738421365618706, + -0.019453015178442, + 0.032259225845336914, + 0.07412822544574738, + -0.059265557676553726, + -0.1014174222946167, + -0.11869842559099197, + 0.02742948569357395, + 0.06793229281902313, + 0.029801715165376663, + -0.032977692782878876, + -0.04932588338851929, + 0.04329495504498482, + 0.028818480670452118, + 0.02137337066233158, + 0.006255555897951126, + 0.02803438901901245, + 0.03145449608564377, + 0.06136194244027138, + 0.045606326311826706, + -0.025668267160654068, + 0.05748268589377403, + -0.012458913959562778, + -0.004942014347761869, + 0.02136317826807499, + -0.02091405726969242, + -0.0431751050055027, + -0.033957190811634064, + 0.008552289567887783, + -0.049356650561094284, + 0.04089672118425369, + 0.08819282799959183, + -0.006910787895321846, + -0.09152244031429291, + 0.007668034173548222, + -0.015414315275847912, + -0.041050687432289124, + 0.05733657628297806, + 0.05600549653172493, + 0.08036880195140839, + -0.05136164650321007, + -0.04948819428682327, + -0.06745098531246185, + -0.0522661991417408, + -0.055914584547281265, + -0.0458473339676857, + 0.026945170015096664, + -0.008434636518359184, + -0.039488039910793304, + -0.022780535742640495, + 0.1199333518743515, + -0.016572270542383194, + -0.0676707848906517, + 0.026624934747815132, + 0.00955052487552166, + -0.008426106534898281, + 0.0748225748538971, + -0.04885303974151611, + 0.010701482184231281, + 0.04268508777022362, + 0.03485999256372452, + -0.06347397714853287, + -0.03774617984890938, + -0.05941963568329811, + -0.019432371482253075, + -0.1296410709619522, + -0.08867955207824707, + -0.077792689204216, + -0.04431398585438728, + -0.010436464101076126, + -0.14773400127887726, + 0.008148564957082272, + 0.07038188725709915, + 0.04020095244050026, + 0.0815693810582161, + -0.04961201176047325, + -0.09232541918754578, + -0.03007957525551319, + -0.04172803834080696, + -0.0506850965321064, + 0.02001963183283806, + -2.4865871177997107e-33, + 0.0800265222787857, + 0.006132711190730333, + -0.005809964146465063, + 0.02033933438360691, + 0.04016561806201935, + -0.02040988951921463, + -0.04994169622659683, + -0.0335371159017086, + -0.13870427012443542, + 0.0021724943071603775, + 0.11786053329706192, + -0.0067259324714541435, + -0.06746024638414383, + 0.12080362439155579, + 0.023548493161797523, + -0.08028021454811096, + 0.009029444307088852, + 0.04948028177022934, + -0.06704697012901306, + -0.009429910220205784, + -0.03805438429117203, + 0.047156695276498795, + -0.09010522812604904, + -0.025818565860390663, + -0.0028714891523122787, + 0.017770832404494286, + 0.015179108828306198, + -0.04654216766357422, + -0.08887911587953568, + 0.0042945765890181065, + -0.001158617902547121, + 0.003962349612265825, + 0.05832219868898392, + -0.046660736203193665, + -0.08028899133205414, + -0.0009435752290301025, + -0.14633791148662567, + -0.029897229745984077, + -0.005387443583458662, + -0.0040419078432023525, + -0.027187470346689224, + -0.05259136110544205, + -0.06288621574640274, + 0.013493225909769535, + -0.008161705918610096, + 0.12400353699922562, + -0.08158555626869202, + -0.07281586527824402, + 0.0017174507956951857, + 0.01315233949571848, + 0.024828411638736725, + 0.03084670379757881, + 0.02907070703804493, + 0.01975269243121147, + 0.0186857171356678, + -0.002288308460265398, + -0.07466884702444077, + 0.13025477528572083, + -0.004537587985396385, + -0.008063147775828838, + 0.03097463585436344, + 0.020625799894332886, + -0.0028420595917850733, + 0.024658868089318275, + -0.047139137983322144, + 0.041455239057540894, + -0.03074362874031067, + 0.012981894426047802, + 0.09343533217906952, + 0.008353160694241524, + -0.05137370154261589, + 0.016271308064460754, + 0.010539580136537552, + 0.03288599103689194, + -0.005881270859390497, + -0.0027100248262286186, + -0.047601889818906784, + -0.08104556798934937, + 0.02195672318339348, + -0.055653639137744904, + -0.162774458527565, + -0.010188561864197254, + -0.04430926963686943, + -0.014126814901828766, + 0.04096979647874832, + -0.023128105327486992, + -0.004370281472802162, + -0.05292383208870888, + -0.015935290604829788, + -0.0048951636999845505, + -0.026088904589414597, + 0.061113759875297546, + 0.007209100294858217, + -0.06778890639543533, + -0.04088575020432472, + -1.3631841792445138e-34, + 0.06615564227104187, + 0.03137850761413574, + -0.08390256017446518, + 0.04430651292204857, + -0.10153038054704666, + 0.06990364193916321, + 0.0776119977235794, + -0.004234231077134609, + 0.026142112910747528, + 0.013290571980178356, + 0.009816935285925865, + 0.048316460102796555, + -0.048571743071079254, + -0.08059395104646683, + 0.056593187153339386, + -0.011924191378057003, + 0.04028293862938881, + 0.03930944949388504, + -0.037631601095199585, + -0.06088293343782425, + -0.03864268958568573, + -0.11314941942691803, + 0.06422634422779083, + 0.06211162731051445, + 0.03346731886267662, + -0.0056597767397761345, + 0.04332095384597778, + 0.010848421603441238, + -0.012053591199219227, + -0.04908772185444832, + 0.032490286976099014, + 0.04727001115679741, + 0.007222538348287344, + 0.023950016126036644, + 0.0016636356012895703, + -0.03544413670897484, + -0.008091428317129612, + -0.017790144309401512, + 0.02499338984489441, + 0.07699978351593018, + 0.023115769028663635, + 0.04939533770084381, + 0.07634051889181137, + 0.03635703772306442, + 0.006805000826716423, + 0.043053846806287766, + -0.004266477655619383, + 0.014445729553699493, + 0.00755289476364851, + 0.03826990723609924, + 0.0561358667910099, + -0.05897566303610802, + -0.027302168309688568, + -0.04759371280670166, + -0.03704739362001419, + 0.006780642084777355, + 0.08425675332546234, + 0.025458374992012978, + 0.0005793607560917735, + -0.006062154192477465, + -0.005015513859689236, + -0.018182912841439247, + -0.012409847229719162, + 0.013416677713394165, + -0.03358146920800209, + -0.021418031305074692, + 0.014577874913811684, + -0.08801772445440292, + -0.04005223885178566, + 0.027728823944926262, + 0.050341952592134476, + 0.04136354848742485, + -0.0037505002692341805, + 0.02667492814362049, + 0.04278844594955444, + -0.039390746504068375, + 0.06430146098136902, + -0.01730353944003582, + -0.028420573100447655, + -0.061805978417396545, + 0.008876379579305649, + 0.05445660650730133, + 0.0038941556122153997, + 0.07470949739217758, + 0.014869495294988155, + 0.07115434855222702, + -0.063834547996521, + 0.014646146446466446, + 0.012383455410599709, + -0.02088819071650505, + -0.03953387215733528, + 0.03664010763168335, + 0.050310950726270676, + -0.04252217337489128, + -0.06353922933340073, + -2.2384654130291892e-08, + -0.10254561901092529, + -0.008673293516039848, + -0.014203755185008049, + -0.03978363424539566, + -0.002801571972668171, + -0.024525104090571404, + 0.009467879310250282, + 0.04574362188577652, + 0.005838591139763594, + -0.11632643640041351, + 0.09507609158754349, + 0.009806033223867416, + -0.08166173100471497, + -0.05713669955730438, + 0.09086061269044876, + 0.04288537800312042, + 0.04281237721443176, + 0.022834014147520065, + -0.022537747398018837, + -0.03989385813474655, + 0.010404668748378754, + 0.06561101973056793, + -0.013593938201665878, + 0.08126664906740189, + -0.03163831681013107, + 0.01501692458987236, + 0.023938102647662163, + 0.12728308141231537, + 0.07654595375061035, + 0.013337605632841587, + 0.056205447763204575, + 0.024574555456638336, + -0.004012860357761383, + 0.026001902297139168, + -0.010508349165320396, + 0.02325081266462803, + 0.002756125060841441, + 0.06002521514892578, + -0.017217151820659637, + 0.08324182033538818, + 0.010588436387479305, + -0.000647304579615593, + -0.013125580735504627, + -0.04676096886396408, + -0.05478792265057564, + 0.018223056569695473, + 0.04188086465001106, + 0.004498683847486973, + -0.12086904048919678, + -0.12302415072917938, + -0.07609416544437408, + 0.007734456565231085, + 0.04159169644117355, + 0.12605993449687958, + -0.019360709935426712, + 0.002796158427372575, + 0.04980221018195152, + 0.025081194937229156, + -0.01047504972666502, + -0.011389444582164288, + 0.06603492796421051, + 0.0781184658408165, + 0.02203238010406494, + 0.0783434808254242 + ], + "file-audio-bold||documents,music,sound": [ + 0.050273772329092026, + -0.007373759523034096, + -0.06536783277988434, + -0.005487765185534954, + 0.055718231946229935, + 0.03604636341333389, + 0.0030099153518676758, + -0.06037219986319542, + 0.04316236451268196, + 0.004770323168486357, + -0.04696814343333244, + 0.037683889269828796, + 0.012035981751978397, + -0.030674099922180176, + -0.005575497169047594, + 0.020260345190763474, + 0.001326039549894631, + 0.052964840084314346, + 0.036432839930057526, + 0.008622555062174797, + -0.01525972317904234, + 0.08802147954702377, + 0.05036444216966629, + -0.024971408769488335, + 0.06875229626893997, + 0.021204698830842972, + 0.01256041880697012, + 0.03029652126133442, + -0.028910167515277863, + -0.041377220302820206, + 0.09377198666334152, + 0.016063831746578217, + 0.16597214341163635, + 0.007243460044264793, + 0.024194447323679924, + -0.00840612594038248, + -0.01802421361207962, + -0.0936800092458725, + -0.05377870425581932, + 0.01549589354544878, + 0.029790682718157768, + 0.02765764109790325, + -0.03628367558121681, + -0.0445067323744297, + -0.13253527879714966, + -0.1245085746049881, + -0.06863974034786224, + -0.05761270597577095, + 0.016725383698940277, + 0.022087903693318367, + -0.023467231541872025, + -0.07515472173690796, + -0.10105405002832413, + 0.0300455242395401, + -0.026762375608086586, + -0.023162301629781723, + 0.0024217143654823303, + 0.04977387934923172, + 0.056147508323192596, + -0.021077202633023262, + 0.013996826484799385, + -0.023661810904741287, + 0.041500192135572433, + -0.013303949497640133, + 0.06353738158941269, + 0.046759504824876785, + -0.01293240673840046, + 0.06439628452062607, + -0.050066832453012466, + 0.007267364300787449, + 0.00953343790024519, + 0.017279280349612236, + 0.035499926656484604, + -0.01663115806877613, + 0.02089805342257023, + 0.0058473385870456696, + 0.020586831495165825, + 0.01688874326646328, + -0.07202206552028656, + -0.0558069609105587, + -0.01823285035789013, + -0.060294896364212036, + -0.007026492152363062, + -0.03447141870856285, + 0.06228120997548103, + 0.06484123319387436, + -0.03625687584280968, + -0.10855453461408615, + -0.0997353196144104, + -0.006107925903052092, + -0.12478866428136826, + -0.042604025453329086, + -0.0069106221199035645, + 0.033579204231500626, + -0.04622967913746834, + 0.013474978506565094, + 0.05705375596880913, + 0.005528197158128023, + 0.044205084443092346, + 0.027693595737218857, + 0.012466742657124996, + 0.023632703348994255, + 0.04838735982775688, + -0.01280363742262125, + -0.05378730595111847, + -0.054039910435676575, + -0.016672540456056595, + 0.030682994052767754, + -0.007094437722116709, + -0.06543412804603577, + 0.02486307919025421, + -0.12289785593748093, + -0.06450338661670685, + -0.044485680758953094, + -0.0094755245372653, + 0.04373941197991371, + -0.017970317974686623, + 0.02260548248887062, + 0.05333791673183441, + 0.05781460553407669, + 0.013720865361392498, + -0.040705252438783646, + -0.0615566112101078, + -0.01919911429286003, + 0.02758236788213253, + -0.010518335737287998, + 0.07040127366781235, + -1.7168923349934854e-33, + 0.021235227584838867, + 0.005112484563142061, + -0.04080180823802948, + 0.07771650701761246, + 0.07554535567760468, + -0.05913914740085602, + -0.06144266575574875, + -0.03433616831898689, + -0.08411992341279984, + 0.052384160459041595, + 0.060263462364673615, + 0.07947397232055664, + -0.026170561090111732, + 0.014721485786139965, + -0.05255076289176941, + -0.006948285270482302, + -0.07721420377492905, + 0.0302834864705801, + -0.04872255027294159, + -0.019273465499281883, + -0.06012134253978729, + 0.030801018700003624, + -0.014927984215319157, + 0.00590521888807416, + 0.03613652288913727, + 0.009882815182209015, + 0.08253942430019379, + -0.1082567423582077, + -0.014059318229556084, + -0.0038613451179116964, + -0.0022560805082321167, + -0.012050094082951546, + 0.1068035364151001, + -0.003320061368867755, + -0.03590823709964752, + 0.0454774871468544, + -0.07867095619440079, + 0.07182054966688156, + 0.03201786056160927, + -0.006980087608098984, + -0.06538885831832886, + -0.04415342956781387, + -0.0019269200274720788, + -0.05106295272707939, + -0.023568734526634216, + 0.10427631437778473, + -0.0035630615893751383, + -0.02121267281472683, + 0.03876395896077156, + 0.044781316071748734, + 0.0007096774061210454, + 0.02916353940963745, + 0.010799271054565907, + 0.06886962801218033, + 0.008388330228626728, + -0.009061197750270367, + 0.03366309776902199, + 0.08190204203128815, + 0.07704583555459976, + -0.05447367578744888, + 0.10330255329608917, + 0.03094898909330368, + 0.0772017315030098, + -0.10733852535486221, + 0.0014440492959693074, + 0.08176827430725098, + 0.03725823014974594, + 0.035720597952604294, + 0.10560612380504608, + 0.0065033165737986565, + -0.037938933819532394, + 0.024909483268857002, + 0.023307595402002335, + 0.021717743948101997, + -0.03878159448504448, + 0.036126527935266495, + 0.00945102795958519, + -0.07162552326917648, + 0.021249612793326378, + -0.054509807378053665, + -0.11415006965398788, + 0.03519123047590256, + -0.014504858292639256, + 0.06441909819841385, + -0.016984935849905014, + 0.08766091614961624, + -0.04021303728222847, + -0.1297692060470581, + -0.025687245652079582, + -0.020621391013264656, + -0.05841871351003647, + 0.049086470156908035, + -0.048869408667087555, + -0.11018723249435425, + -0.04021801799535751, + 5.418441784087185e-35, + 0.10521525144577026, + 0.0490705780684948, + -0.04544574022293091, + -0.012281653471291065, + -0.010723180137574673, + 0.07950909435749054, + 0.051566604524850845, + 0.08050140738487244, + 0.007363611366599798, + 0.025124412029981613, + 0.08068476617336273, + -0.04397541657090187, + -0.029572436586022377, + -0.07089749723672867, + -0.03708098828792572, + -0.02626838907599449, + -0.016811950132250786, + 0.007262285798788071, + 0.00930738914757967, + 0.004198977258056402, + -0.07224398106336594, + -0.052150700241327286, + 0.05800776928663254, + 0.07822144031524658, + -0.005669988691806793, + -0.012706531211733818, + -0.04568139463663101, + -0.039497848600149155, + -0.013275934383273125, + -0.0233653225004673, + 0.010965495370328426, + 0.030566522851586342, + -0.057946741580963135, + -0.09048644453287125, + 0.031299542635679245, + -0.015651758760213852, + 0.0625719428062439, + 0.034782715141773224, + 0.02701793983578682, + 0.010155860334634781, + -0.03261345624923706, + 0.08270307630300522, + 0.009937725029885769, + -0.013062753714621067, + -0.0428343191742897, + -0.03570440039038658, + 0.0074835969135165215, + 0.020393455401062965, + -0.0023754972498863935, + 0.04089789837598801, + 0.1258935183286667, + -0.037468716502189636, + 0.09071829915046692, + -0.03500978648662567, + -0.061647411435842514, + 0.0009682605159468949, + -0.006492833141237497, + -0.04949120432138443, + -0.030493153259158134, + 0.08004982024431229, + -0.018575718626379967, + 0.04326677694916725, + -0.07373116165399551, + -0.08082704991102219, + -0.003612278727814555, + 0.02276916429400444, + 0.020869405940175056, + -0.04574218764901161, + 0.053213756531476974, + 0.018671177327632904, + 0.03928803652524948, + -0.017340097576379776, + 0.009854206815361977, + 0.10250674933195114, + 0.0009104195050895214, + -0.016366787254810333, + -0.007065313868224621, + -0.04852718487381935, + -0.03194849193096161, + 0.02717704512178898, + 0.03339483588933945, + 0.03856165334582329, + 0.0187284667044878, + 0.013958261348307133, + 0.010057051666080952, + 0.0900808796286583, + 0.020758837461471558, + -0.016293775290250778, + -0.026588506996631622, + 0.01539591420441866, + -0.04537397250533104, + 0.09047552198171616, + 0.05681644752621651, + -0.04525376856327057, + -0.04859026521444321, + -1.575323693714381e-08, + -0.08238326013088226, + -0.017834778875112534, + -0.02728767693042755, + -0.04465605691075325, + -0.060408178716897964, + -0.03760598227381706, + 0.005077690817415714, + -0.06190866976976395, + -0.009376145899295807, + -0.07450854033231735, + 0.046039968729019165, + -0.07644148916006088, + -0.037110693752765656, + -0.03059552237391472, + -0.06964512169361115, + 0.012456639669835567, + -0.008100832812488079, + 0.08860898017883301, + -0.03369656205177307, + -0.09719470143318176, + 0.01546149980276823, + 0.09423105418682098, + 0.020921166986227036, + 0.012756846845149994, + 0.06862570345401764, + 0.05088420584797859, + -0.0054399254731833935, + -0.0014057258376851678, + 0.0883415937423706, + 0.055819716304540634, + -0.018207034096121788, + 0.0419771745800972, + -0.028382834047079086, + 0.0014065528521314263, + -0.05405179783701897, + -0.013737357221543789, + 0.0014976258389651775, + 0.0026532786432653666, + -0.08820898830890656, + 0.08196280896663666, + -0.02611847221851349, + 0.03617020323872566, + -0.059529442340135574, + -0.06042302027344704, + -0.04009220376610756, + -0.04989277571439743, + 0.07819623500108719, + -0.016677921637892723, + -0.08376935124397278, + -0.02398850955069065, + -0.031161850318312645, + 0.03298722580075264, + 0.00869929138571024, + 0.08892790228128433, + -0.012393706478178501, + -0.0646146684885025, + 0.027317754924297333, + 0.1578775942325592, + -0.05847686156630516, + -0.03959805518388748, + 0.04785338044166565, + -0.005977207329124212, + 0.05717915669083595, + 0.033704791218042374 + ], + "file-c-bold||*new*,documents,code": [ + -0.03318323194980621, + 0.013613412156701088, + -0.07057171314954758, + 0.0888080894947052, + 0.056236617267131805, + -0.031218146905303, + 0.015133966691792011, + 0.017181774601340294, + 0.010966483503580093, + 0.05426221713423729, + -0.003732948796823621, + 0.03695499151945114, + 0.04540979489684105, + -0.08550968766212463, + 0.002632484305649996, + 0.03320349007844925, + -0.07917962968349457, + 0.026295332238078117, + -0.002174840774387121, + 0.0014924193965271115, + -0.019469669088721275, + 0.04146135598421097, + -0.0039167385548353195, + -0.007742608431726694, + 0.05865522101521492, + 0.014870532788336277, + 0.005131075158715248, + -0.046377696096897125, + 0.01008777879178524, + -0.04375186935067177, + 0.030284764245152473, + 0.0035079894587397575, + 0.1515296995639801, + 0.07132817804813385, + 0.14210589230060577, + 0.051757823675870895, + 0.014254514127969742, + -0.06346897035837173, + -0.017081601545214653, + 0.06059940904378891, + 0.0012958673760294914, + 0.0017721176845952868, + -0.0584358312189579, + 0.047774069011211395, + -0.021077396348118782, + -0.0345483124256134, + -0.01850888319313526, + -0.0026802117936313152, + 0.034896668046712875, + -0.017624927684664726, + -0.037581149488687515, + -0.0502062626183033, + -0.11769123375415802, + -0.05811809003353119, + 0.03827529773116112, + -0.011823373846709728, + -0.025667304173111916, + -0.036573391407728195, + 0.01573461852967739, + -0.04550927132368088, + 0.03553345426917076, + 0.04912756755948067, + 0.0667906329035759, + -0.007288017310202122, + 0.027638422325253487, + 0.043746937066316605, + -0.04519541934132576, + 0.07314866036176682, + -0.021842584013938904, + -0.0014798959018662572, + -0.017679110169410706, + 0.019818058237433434, + 0.03359208256006241, + 0.03565264493227005, + -0.028491420671343803, + -0.0026253950782120228, + 0.022644057869911194, + 0.06639177352190018, + -0.031201450154185295, + -0.09284229576587677, + -0.0039166598580777645, + -0.07406237721443176, + 0.0007111488375812769, + 0.013448143377900124, + 0.061283912509679794, + 0.04478515312075615, + -0.04392864555120468, + -0.06269023567438126, + -0.059510380029678345, + 0.006933711003512144, + -0.04389253258705139, + -0.04535984992980957, + -0.0507432259619236, + 0.022627301514148712, + -0.11711346358060837, + 0.004914297256618738, + 0.10814933478832245, + 0.03352640941739082, + 0.025212038308382034, + 0.07952219992876053, + -0.04333876073360443, + 0.04045296832919121, + 0.08275602012872696, + 0.020581932738423347, + -0.02158687263727188, + 0.016262561082839966, + -0.001710888696834445, + -0.023227766156196594, + 0.003917241469025612, + -0.03282289206981659, + 0.033152807503938675, + -0.09578350186347961, + -0.0825284868478775, + -0.09774666279554367, + -0.017787715420126915, + 0.02472587861120701, + -0.005098898895084858, + -0.01402053702622652, + 0.04109039902687073, + 0.12249136716127396, + 0.07659828662872314, + -0.07379919290542603, + -0.037550732493400574, + -0.022008534520864487, + -0.045898109674453735, + -0.033288825303316116, + 0.032742440700531006, + -2.6250482300410833e-33, + 0.0248304083943367, + 0.025158772245049477, + -0.07857862114906311, + 0.12143639475107193, + -0.004053113050758839, + 0.007363473065197468, + 0.00044811348197981715, + -0.05672429874539375, + -0.10410737991333008, + 0.02465388923883438, + 0.06667371094226837, + -0.0002768618578556925, + -0.00024008715990930796, + 0.08315914124250412, + -0.04230348393321037, + -0.0299991387873888, + 0.00550075201317668, + -0.0680088996887207, + -0.08113831281661987, + -0.032468318939208984, + -0.09967758506536484, + 0.059982359409332275, + -0.04028936102986336, + -0.010567443445324898, + -0.026543298736214638, + -0.02725599706172943, + 0.07161923497915268, + -0.08864598721265793, + -0.04762619361281395, + -0.0028601516969501972, + -0.0005893725319765508, + -0.00015560594329144806, + 0.0927288755774498, + 0.053558554500341415, + -0.055099744349718094, + 0.07262086123228073, + -0.06456013768911362, + -0.01796295866370201, + 0.026807190850377083, + 0.032860398292541504, + -0.054699596017599106, + 0.012329358607530594, + 0.033730849623680115, + -0.03807903453707695, + 0.02497933991253376, + 0.1271410435438156, + -0.08500403165817261, + -0.05444244295358658, + -0.026396913453936577, + -0.01798609457910061, + 0.028777269646525383, + 0.04675919935107231, + -0.016564080491662025, + 0.08455031365156174, + 0.02264050766825676, + -0.008566386997699738, + -0.06043051555752754, + 0.01621154509484768, + 0.08131692558526993, + -0.018003476783633232, + 0.09254951775074005, + 0.030896887183189392, + -4.840719702770002e-05, + 0.04244143143296242, + -0.009906102903187275, + 0.049784544855356216, + 6.469804066000506e-05, + 0.0885869562625885, + 0.06654722988605499, + 0.007573936600238085, + -0.01643195189535618, + 0.03875763714313507, + -0.02752564288675785, + 0.004473652690649033, + 0.01671329326927662, + 0.047660600394010544, + 0.029684757813811302, + -0.014675011858344078, + 0.011982210911810398, + -0.15246903896331787, + -0.08291486650705338, + 0.0231747068464756, + 0.004658986814320087, + 0.03335841745138168, + 0.01014607585966587, + 0.032834336161613464, + -0.009092828258872032, + -0.0539659708738327, + -0.012992900796234608, + -0.013041973114013672, + 0.018239617347717285, + -0.025890620425343513, + -0.04658721759915352, + -0.1269148588180542, + -0.012191379442811012, + -7.2281877724256915e-34, + 0.12740285694599152, + 0.025053612887859344, + -0.07969188690185547, + -0.019653787836432457, + -0.08328553289175034, + 0.050901759415864944, + -0.01552983932197094, + 0.0208172295242548, + -0.015838611871004105, + 0.05245669186115265, + 0.06845778971910477, + -0.005507055204361677, + -0.04315630719065666, + -0.04135929048061371, + 0.08221829682588577, + -0.027782145887613297, + -0.04039834812283516, + 0.047861069440841675, + -0.04725426062941551, + 0.0601385161280632, + -0.03965316340327263, + -0.07152628153562546, + 0.012888605706393719, + 0.044613391160964966, + 0.04076441377401352, + -0.041912149637937546, + -0.014720813371241093, + 0.039037737995386124, + -0.0395321398973465, + -0.06256942451000214, + -0.044293854385614395, + 0.035025350749492645, + -0.046941127628088, + 0.06356353312730789, + 0.019397486001253128, + -0.01762991026043892, + 0.015885431319475174, + -0.046779241412878036, + 0.04575046896934509, + 0.05206301435828209, + 0.015949659049510956, + 0.009953352622687817, + -0.018077610060572624, + 0.02957712672650814, + -0.08830849081277847, + 0.008512812666594982, + 0.03666966035962105, + -0.042356207966804504, + -0.007006904110312462, + 0.008477442897856236, + 0.08313775807619095, + -0.08116272836923599, + 0.021321440115571022, + -0.03114730305969715, + -0.06221327930688858, + 0.01670118048787117, + 0.017571084201335907, + 0.01771600916981697, + -0.07035185396671295, + 0.07510236650705338, + -0.03208005428314209, + 0.018855389207601547, + -0.06511379778385162, + -0.034327976405620575, + -0.000271618744591251, + -0.0803254023194313, + -0.02731517143547535, + -0.029359791427850723, + 0.02037593349814415, + -0.023510238155722618, + 0.032702650874853134, + -0.023829231038689613, + -0.080050528049469, + 0.05442436411976814, + -0.013780050911009312, + -0.03511396422982216, + 0.0405249148607254, + -0.03912375867366791, + -0.027331940829753876, + 0.03207167237997055, + 0.03655485063791275, + 0.007324249017983675, + -0.012837490066885948, + 0.04132493585348129, + 0.013077857904136181, + 0.06286465376615524, + -0.030249938368797302, + -0.01521728653460741, + -0.024231357499957085, + -0.03428758680820465, + -0.05935056135058403, + 0.062038615345954895, + 0.059294212609529495, + -0.05259382352232933, + -0.05682770907878876, + -1.9790732608271355e-08, + -0.103827565908432, + -0.047238193452358246, + -0.06461387127637863, + 0.0036172892432659864, + 0.030272142961621284, + -0.04273577779531479, + -0.10485676676034927, + -0.0515250489115715, + -0.07830390334129333, + -0.06629341840744019, + 0.07723450660705566, + -0.01130917202681303, + -0.038461532443761826, + -0.101537324488163, + -0.04552411660552025, + 0.016256490722298622, + 0.04488178342580795, + -0.005163826048374176, + -0.018920481204986572, + 0.009512360207736492, + -0.030666092410683632, + 0.1019725501537323, + 0.054506875574588776, + 0.04094655439257622, + 0.011228268966078758, + 0.0008696602308191359, + -0.005622346885502338, + 0.007442587986588478, + 0.051431167870759964, + 0.06932415813207626, + 0.09157970547676086, + 0.049288056790828705, + 0.0029625347815454006, + 0.026762673631310463, + -0.036121778190135956, + -0.011145112104713917, + 0.008087260648608208, + 0.011586632579565048, + -0.03496064990758896, + 0.08439409732818604, + -0.04164537787437439, + 0.06874160468578339, + -0.07369760423898697, + -0.037294890731573105, + -0.059568438678979874, + -0.0561579205095768, + -0.004831868689507246, + -0.021678654477000237, + -0.07216978818178177, + -0.10446187853813171, + -0.0131306704133749, + 0.033635903149843216, + 0.016966562718153, + 0.11912163347005844, + -0.046605002135038376, + -0.06472497433423996, + 0.03116007335484028, + 0.17847616970539093, + -0.007291967514902353, + 0.010883728042244911, + 0.04967071861028671, + -0.011564385145902634, + 0.06351733952760696, + 0.03081005997955799 + ], + "file-c-sharp-bold||*new*,documents,code,c#": [ + -0.014261111617088318, + -0.03392920643091202, + -0.07786613702774048, + 0.08656785637140274, + 0.004721523262560368, + -0.039514150470495224, + 0.03414372727274895, + 0.04836172237992287, + -0.06708559393882751, + 0.08559393137693405, + -0.005844327621161938, + 0.03471506014466286, + 0.040165502578020096, + -0.07585645467042923, + 0.0011108010075986385, + 0.009549983777105808, + -0.07102232426404953, + -0.022290106862783432, + 0.006898302584886551, + 0.043597955256700516, + 0.037104155868291855, + 0.017778947949409485, + -0.0011186599731445312, + -0.012424728833138943, + 0.06807882338762283, + 0.0030417216476053, + 0.027347194030880928, + -0.04091239348053932, + -0.003340570256114006, + -0.04183932766318321, + 0.0037253298796713352, + -0.002935203490778804, + 0.13766761124134064, + 0.07927978783845901, + 0.15813980996608734, + 0.03567887842655182, + 0.02469317428767681, + -0.022305216640233994, + 0.0028230941388756037, + 0.0388825498521328, + -0.022365273907780647, + 0.016358507797122, + -0.025754012167453766, + 0.04658716171979904, + 0.03033098205924034, + -0.06764376908540726, + -0.008061097003519535, + -0.009594687260687351, + 0.022879943251609802, + -0.025493241846561432, + -0.058533284813165665, + -0.02771794982254505, + -0.09876822680234909, + -0.06094225496053696, + 0.04627886414527893, + 0.0007332099485211074, + -0.04321175813674927, + -0.012079906649887562, + -0.0065976884216070175, + -0.055414021015167236, + 0.00474533112719655, + 0.0190788172185421, + 0.0436992421746254, + -0.046168651431798935, + 0.01102389395236969, + 0.0672345831990242, + 0.005840546451508999, + 0.045173414051532745, + -0.012906153686344624, + -0.06262446194887161, + -0.03780536726117134, + 0.024067850783467293, + 0.005142625886946917, + 0.05321213975548744, + -0.0430937185883522, + -0.07778265327215195, + -0.006357228383421898, + 0.058184728026390076, + -0.02240213006734848, + -0.05264902114868164, + -0.01038645301014185, + -0.08916416019201279, + 0.02434479258954525, + 0.05086921527981758, + 0.09406223893165588, + 0.07495486736297607, + -0.029186511412262917, + -0.07077351212501526, + -0.05037810280919075, + 0.06021229550242424, + -0.05583997815847397, + -0.025755785405635834, + -0.00937782321125269, + 0.042654771357774734, + -0.07694225013256073, + 0.019407164305448532, + 0.09798101335763931, + 0.03474169224500656, + 0.0147654227912426, + 0.07324960082769394, + -0.041787609457969666, + 0.005720069631934166, + 0.0024892028886824846, + -0.031085651367902756, + -0.0010419846512377262, + 0.025171486660838127, + 0.0646670013666153, + -0.025265716016292572, + 0.01617562584578991, + -0.06512042880058289, + 0.033390991389751434, + -0.05970396474003792, + -0.10000280290842056, + -0.09117650240659714, + 0.0025052346754819155, + 0.017530357465147972, + -0.004146512132138014, + -0.0251829382032156, + 0.03260750696063042, + 0.05585446581244469, + 0.05308017134666443, + -0.0433049201965332, + -0.06969118118286133, + -0.01164159644395113, + -0.022691193968057632, + 0.00749290082603693, + 0.05297243967652321, + -2.0472097373234022e-33, + -0.01640177331864834, + 0.041494354605674744, + -0.07549960166215897, + 0.11640995740890503, + -0.004164953250437975, + -0.042644500732421875, + -0.018779225647449493, + -0.03077435865998268, + -0.09707736223936081, + -0.024576224386692047, + 0.05986844375729561, + -0.029926186427474022, + -0.001734470366500318, + 0.06627456843852997, + -0.02365235798060894, + -0.046477027237415314, + 0.023985274136066437, + -0.03843142092227936, + -0.07020454853773117, + -0.01187614444643259, + -0.13795143365859985, + 0.06787317246198654, + -0.010400508530437946, + -0.024717126041650772, + -0.08034558594226837, + -0.006514913402497768, + 0.0612635463476181, + -0.057146258652210236, + -0.0012888795463368297, + -0.006880000699311495, + 0.00022112269653007388, + -0.004486510995775461, + 0.05873645097017288, + 0.06657493859529495, + -0.06662620604038239, + 0.025084778666496277, + -0.03809571638703346, + -0.02231232076883316, + 0.04074013978242874, + 0.04804859682917595, + -0.03313431888818741, + 0.011225257068872452, + 0.05203038454055786, + -0.07706339657306671, + 0.04034610465168953, + 0.12384813278913498, + -0.10059814900159836, + -0.04614047333598137, + -0.0036769493017345667, + -0.008976968936622143, + 0.021844005212187767, + 0.08851422369480133, + 0.021374696865677834, + 0.08742240071296692, + -0.016768679022789, + 0.00836486741900444, + -0.036044567823410034, + 0.006972755305469036, + 0.06963524222373962, + 0.00443963473662734, + 0.07448986917734146, + 0.006908869370818138, + -0.010587917640805244, + 0.007652266416698694, + 0.0031332324724644423, + 0.030661754310131073, + 0.031143175438046455, + 0.034028008580207825, + 0.03575771301984787, + -0.05628534033894539, + 0.0107257766649127, + 0.030940426513552666, + -0.054805491119623184, + -0.015719877555966377, + 0.003261327976360917, + 0.03961595520377159, + 0.021075084805488586, + 0.03344131261110306, + 0.009564640931785107, + -0.15677659213542938, + -0.06566939502954483, + 0.054773617535829544, + -0.02300424687564373, + -0.0014341926435008645, + -0.046029698103666306, + 0.02915915660560131, + -0.013220947235822678, + -0.08460035920143127, + 0.041050586849451065, + -0.04980821907520294, + -0.01865149661898613, + -0.04400446265935898, + -0.07371735572814941, + -0.08699791133403778, + -0.013690341264009476, + -2.658864447449356e-34, + 0.09766402095556259, + 0.004343125503510237, + -0.09459400922060013, + 0.03345739468932152, + -0.08844993263483047, + 0.0627097338438034, + -0.0020707296207547188, + -0.019742466509342194, + 0.003875282360240817, + 0.03915410488843918, + 0.0993577316403389, + 0.00833763089030981, + -0.08753342926502228, + -0.020811600610613823, + 0.03618227690458298, + -0.05332954227924347, + 0.00894218496978283, + 0.068183533847332, + -0.03349504619836807, + 0.022368859499692917, + -0.01618768461048603, + -0.06550861895084381, + 0.0024444330483675003, + 0.021204156801104546, + 0.04650328308343887, + 0.008748872205615044, + -0.12340420484542847, + 0.030093934386968613, + -0.0336344875395298, + -0.024846287444233894, + 0.004394920542836189, + 0.07894149422645569, + -0.006353562232106924, + -0.031077945604920387, + -0.0049727559089660645, + -0.009446604177355766, + 0.042140524834394455, + -0.03198149427771568, + 0.035227108746767044, + 0.07514825463294983, + 0.031019924208521843, + -0.005644491873681545, + 0.034928854554891586, + 0.034333888441324234, + -0.030923031270503998, + 0.012150325812399387, + 0.016703572124242783, + -0.02448415569961071, + -0.01765025593340397, + 0.06128844991326332, + 0.1363862007856369, + -0.054793257266283035, + 0.04447212815284729, + -0.06056112051010132, + -0.051952946931123734, + 0.026034405454993248, + 0.037769146263599396, + -0.02758222073316574, + -0.033881183713674545, + 0.06054719164967537, + -0.0117127550765872, + 0.011188996955752373, + -0.11875078082084656, + 0.004073574673384428, + 0.04004937782883644, + -0.034298986196517944, + -0.031326886266469955, + -0.030971011146903038, + -0.026460792869329453, + -0.014359688386321068, + -0.015379879623651505, + -0.02559819445014, + -0.050564322620630264, + 0.008630265481770039, + -0.03004368022084236, + -0.05587579682469368, + 0.06629186123609543, + -0.012784259393811226, + -0.00658803666010499, + 0.035039372742176056, + 0.07976960390806198, + -0.0002974775852635503, + -0.0212415661662817, + 0.019859133288264275, + -0.03756309673190117, + 0.04446323215961456, + -0.0120386416092515, + -0.05294542759656906, + -0.06527608633041382, + -0.04013611376285553, + -0.11482719331979752, + 0.03950599953532219, + 0.08180001378059387, + -0.03176393359899521, + -0.06876970827579498, + -2.1570743413690252e-08, + -0.10440011322498322, + -0.006953721400350332, + -0.10979469865560532, + 0.011163722723722458, + 0.037030238658189774, + -0.03712565451860428, + -0.10074695199728012, + -0.028036843985319138, + -0.024749066680669785, + -0.07424689084291458, + 0.02257409319281578, + -0.04009785130620003, + -0.04463399201631546, + -0.07265282422304153, + 0.005042651202529669, + -0.02435935102403164, + 0.020544184371829033, + 0.002749428618699312, + -0.01830870471894741, + 0.01984458416700363, + -0.004356208257377148, + 0.07377762347459793, + 0.017897384241223335, + 0.04425701126456261, + -0.0010643776040524244, + -0.006918235681951046, + 0.047890596091747284, + 0.024915719404816628, + 0.07625620067119598, + 0.12817353010177612, + 0.02392919547855854, + 0.07610512524843216, + 0.03299639746546745, + 0.04033587872982025, + -0.06635718792676926, + 0.0026043362449854612, + 0.0008947219466790557, + 0.051119253039360046, + -0.022236399352550507, + 0.08816009759902954, + -0.017529981210827827, + 0.07212971895933151, + -0.0800633653998375, + -0.022967331111431122, + -0.012890757992863655, + -0.0854138657450676, + 0.03426801413297653, + -0.020329147577285767, + -0.02791413478553295, + -0.10096290707588196, + -0.04646744951605797, + 0.07247058302164078, + 0.03367236256599426, + 0.08646920323371887, + -0.1153060644865036, + -0.0376250259578228, + 0.04882355406880379, + 0.14015334844589233, + 0.0006275199120864272, + 0.037150125950574875, + 0.06374935060739517, + 0.005805996246635914, + 0.03786537051200867, + 0.08419030159711838 + ], + "file-cloud-bold||documents,sync": [ + -0.0066072759218513966, + -0.0175004992634058, + 0.010400607250630856, + 0.07272520661354065, + 0.06497059017419815, + 0.0006169853149913251, + -0.028048966079950333, + -0.08985181897878647, + 0.09970001131296158, + 0.05404010787606239, + 0.00028835784178227186, + 0.07864144444465637, + 0.058547068387269974, + -0.06544792652130127, + 0.016144825145602226, + 0.02817627787590027, + 0.006023924797773361, + 0.006761535070836544, + -0.03944699093699455, + 0.03637458756566048, + -0.08391006290912628, + 0.0564848892390728, + 0.022675905376672745, + 0.0024739443324506283, + 0.034721650183200836, + 0.004228705540299416, + -0.07105399668216705, + -0.06252539157867432, + -0.03818251192569733, + -0.04564204066991806, + 0.06964033842086792, + -0.048565782606601715, + 0.048013702034950256, + 0.09035928547382355, + 0.0810781717300415, + 0.06587405502796173, + -0.010431170463562012, + -0.07384905219078064, + -0.015447979792952538, + 0.056286655366420746, + 0.09151306748390198, + -0.08508966118097305, + -0.0501217246055603, + -0.031092211604118347, + -0.05770512670278549, + -0.018976746127009392, + -0.0110133932903409, + -0.0058844005689024925, + -0.009573579765856266, + 0.007295896299183369, + -0.04591960459947586, + -0.07900424301624298, + -0.09683643281459808, + -0.022319434210658073, + 0.006632997188717127, + 0.08153989166021347, + -0.03399026393890381, + 0.09674664586782455, + 0.04323257505893707, + -0.023943154141306877, + 0.015474671497941017, + -0.013046535663306713, + 0.025407295674085617, + 0.004641557112336159, + 0.09143601357936859, + 0.09095689654350281, + 0.04194023087620735, + 0.04972270503640175, + -0.0655466765165329, + 0.01383253000676632, + 0.04971943795681, + 0.012996065430343151, + 0.03230004757642746, + -0.03457112982869148, + -0.019060613587498665, + 0.05197042226791382, + 0.0126330042257905, + 0.0334157720208168, + -0.03577873110771179, + -0.07385943830013275, + -0.00023041214444674551, + -0.06300126761198044, + 0.01909063011407852, + 0.037562109529972076, + 0.03223556652665138, + -0.006907344795763493, + -0.04755842685699463, + -0.049357034265995026, + -0.03794201835989952, + -0.061798032373189926, + 0.0020537911914288998, + -0.03808939829468727, + 0.015831226482987404, + 0.018766188994050026, + -0.08886368572711945, + -0.004755365662276745, + 0.0975627526640892, + 0.1067858561873436, + 0.022144785150885582, + -0.0013571822782978415, + 0.0031262440606951714, + 0.041737765073776245, + 0.05185906961560249, + -0.001280297408811748, + -0.004139770288020372, + -0.0021577829029411077, + -0.03249657526612282, + 0.0021516389679163694, + -0.030718162655830383, + -0.05568511411547661, + 0.040013983845710754, + -0.11967852711677551, + -0.06146366894245148, + -0.047939643263816833, + -0.012185471132397652, + 0.00013425748329609632, + -0.028304491192102432, + 0.026686696335673332, + -0.014336369931697845, + 0.06922659277915955, + 0.10684417188167572, + -0.08021379262208939, + -0.028272436931729317, + -0.05911024287343025, + -0.04298796504735947, + -0.016336621716618538, + 0.027449125424027443, + -2.6231878265599148e-33, + 0.06430252641439438, + -0.0005728820106014609, + 0.00022188820003066212, + 0.018679607659578323, + 0.10592827200889587, + -0.02368713915348053, + -0.05762150511145592, + -0.12378570437431335, + -0.14007200300693512, + 0.022455567494034767, + 0.05831089988350868, + 0.08301720023155212, + -0.03900662809610367, + 0.025052569806575775, + -0.03951315954327583, + -0.022801315411925316, + -0.015857482329010963, + 0.015756480395793915, + -0.022283334285020828, + 0.03614448383450508, + -0.05791262164711952, + 0.01859288103878498, + -0.05657084658741951, + -0.059915635734796524, + -0.05657847970724106, + -0.026565954089164734, + 0.08894802629947662, + -0.03897296264767647, + -0.005111099220812321, + -0.020281875506043434, + 0.01035777386277914, + -0.004836313426494598, + 0.09489970654249191, + 0.03496359661221504, + -0.10082188248634338, + -0.022500356659293175, + -0.12361346185207367, + -0.011863837018609047, + -0.03557168319821358, + 0.11028052866458893, + 0.019988611340522766, + -0.00445973128080368, + -0.006304911803454161, + -0.06945851445198059, + -0.03716089203953743, + 0.13188502192497253, + 0.052299659699201584, + -0.0685967355966568, + 0.031672824174165726, + 0.00249543902464211, + -0.0003013567766174674, + 0.007375743705779314, + -0.040097057819366455, + -0.04079510271549225, + 0.033774103969335556, + -0.02319229766726494, + 0.002571552526205778, + 0.00942198559641838, + 0.012190967798233032, + -0.016787925735116005, + 0.027578109875321388, + -0.05948846787214279, + 0.027476508170366287, + -0.05695565789937973, + -0.032122887670993805, + 0.02824302203953266, + 0.025561407208442688, + 0.07884721457958221, + 0.025939449667930603, + 0.002077540848404169, + 0.026795675978064537, + 0.0704105794429779, + -0.022463010624051094, + 0.0032416745088994503, + 0.09831927716732025, + -0.020287754014134407, + -0.02006031759083271, + -0.00012790002801921219, + 0.015350568108260632, + -0.080309197306633, + -0.10103508830070496, + -0.03293297439813614, + -0.05282265692949295, + 0.06502287089824677, + -0.07095954567193985, + 0.07134565711021423, + -0.02860836684703827, + 0.015217730775475502, + -0.06277662515640259, + 0.012604421004652977, + 0.02653968520462513, + -0.0251014307141304, + 0.05236323922872543, + -0.150308296084404, + -0.0533941425383091, + 6.4055566219111e-34, + 0.11727987974882126, + -0.0764501616358757, + -0.07743775844573975, + 0.07527736574411392, + 0.02752499282360077, + 0.0794312134385109, + 0.03337652236223221, + 0.0877847671508789, + -0.042965520173311234, + 0.027068953961133957, + 0.08359959721565247, + -0.018085941672325134, + -0.0901322066783905, + 0.010365740396082401, + -0.030951688066124916, + 0.023532729595899582, + 0.041567113250494, + -0.01421460323035717, + -0.0394916795194149, + -0.03126373514533043, + -0.021566128358244896, + -0.12800927460193634, + 0.08654581755399704, + 0.1174323707818985, + 0.04998461529612541, + -0.01938761956989765, + -0.021925680339336395, + -0.018024247139692307, + 0.01440111082047224, + -0.030034039169549942, + -0.03909478336572647, + 0.06222822889685631, + -0.05819876864552498, + -0.010492011904716492, + -0.022728154435753822, + 0.0038377875462174416, + -0.04942241311073303, + 0.03335774317383766, + -0.030145298689603806, + 0.05417543649673462, + -0.0075197224505245686, + -0.024951033294200897, + -0.029019448906183243, + -0.006555300205945969, + -0.0071249911561608315, + -0.004472889006137848, + -0.017512012273073196, + 0.02757977321743965, + -0.06480062752962112, + 0.04711263254284859, + 0.06996332108974457, + -0.0003053591644857079, + 0.013354513794183731, + -0.009486976079642773, + -0.05297158285975456, + 0.01789127103984356, + 0.003303677309304476, + -0.0021440591663122177, + -0.0916343629360199, + 0.0470438115298748, + 0.020347556099295616, + -0.017350297421216965, + -0.0047314707189798355, + -0.04144081845879555, + -0.017602523788809776, + 0.0038821985945105553, + 0.029667239636182785, + -0.036838069558143616, + 0.020273568108677864, + 0.05934765189886093, + 0.018801480531692505, + -0.07990366965532303, + -0.02471904270350933, + 0.04636714607477188, + 0.05757585167884827, + -0.06999305635690689, + 0.023576999083161354, + -0.07977043837308884, + 0.02861807309091091, + 0.017873529344797134, + 0.008939485065639019, + 0.0829867497086525, + -0.005697816610336304, + 0.05123522877693176, + 0.024205511435866356, + 0.03402629867196083, + 0.009682509116828442, + 0.034545958042144775, + -0.011350474320352077, + 0.030180614441633224, + -0.07312481105327606, + -0.001290498417802155, + 0.01784268207848072, + 0.005262952763587236, + -0.08360962569713593, + -1.482268885411031e-08, + -0.06790129840373993, + 0.012657039798796177, + -0.022634293884038925, + 0.018040137365460396, + -0.013428655453026295, + -0.033210474997758865, + 0.0211994256824255, + 0.009371346794068813, + 0.01955435797572136, + -0.025381512939929962, + 0.014786770567297935, + -0.10889807343482971, + -0.038410332053899765, + -0.04971618950366974, + 0.018652137368917465, + 0.00567310256883502, + 0.0466250516474247, + 0.003624852979555726, + -0.030404580757021904, + -0.049793217331171036, + -0.010084385052323341, + 0.08974730223417282, + 0.00040530177648179233, + 0.054517872631549835, + 0.08608265966176987, + 0.09531110525131226, + 0.0029065718408674, + 0.04223772883415222, + 0.03732304647564888, + 0.02003808692097664, + 0.012758179567754269, + -0.02532701939344406, + -0.023249004036188126, + -0.017018834128975868, + -0.04220924898982048, + -0.03896306827664375, + 0.015850642696022987, + 0.0123972799628973, + -0.013552566058933735, + 0.10672052949666977, + -0.03981500864028931, + 0.030576854944229126, + -0.022496920078992844, + -0.044878944754600525, + -0.011675476096570492, + -0.07450167834758759, + 0.04617995396256447, + -0.027811923995614052, + -0.08262010663747787, + -0.04000367969274521, + 0.005904586985707283, + -0.054355062544345856, + 0.0056081549264490604, + 0.11848681420087814, + -0.0010726706823334098, + -0.09341561794281006, + 0.10337575525045395, + 0.10464475303888321, + 0.021053867414593697, + 0.07645460218191147, + 0.08297237008810043, + -0.035302918404340744, + 0.04998563602566719, + 0.017412422224879265 + ], + "file-code-bold||documents": [ + -0.014390630647540092, + 0.04453806206583977, + -0.07008481025695801, + 0.08223455399274826, + 0.05343751609325409, + -0.012590956874191761, + 0.013432628475129604, + 0.004306150134652853, + 0.03129039704799652, + 0.03526369482278824, + -0.03199869394302368, + 0.08766268938779831, + 0.06169876456260681, + -0.06334588676691055, + 0.0029735970310866833, + 0.040514249354600906, + -0.05560481920838356, + 0.02584741823375225, + -0.0005266779917292297, + 0.01807740144431591, + 0.031085433438420296, + 0.06162043660879135, + 0.044872161000967026, + -0.009989327751100063, + 0.05124478414654732, + 0.03028819151222706, + 0.00349421426653862, + -0.025373077020049095, + 0.01284732948988676, + -0.03773127496242523, + 0.04199720919132233, + 0.01848338358104229, + 0.12525644898414612, + 0.07313122600317001, + 0.11519034951925278, + 0.05399306118488312, + 0.0031497080344706774, + -0.07074417918920517, + -0.015705257654190063, + 0.0961407721042633, + -0.007824555970728397, + 0.008111946284770966, + -0.036899764090776443, + 0.00476438645273447, + -0.06482382118701935, + -0.08310375362634659, + -0.052217595279216766, + -0.03662450984120369, + -0.002541925525292754, + -0.04589134454727173, + -0.024962948635220528, + -0.04391220957040787, + -0.07287014275789261, + -0.04280933737754822, + 0.02299785427749157, + -0.03718240186572075, + -0.0391848050057888, + 0.0020512707997113466, + 0.008780699223279953, + -0.04677984118461609, + 0.0060273995622992516, + 0.04348400980234146, + 0.03077845461666584, + -0.00960606150329113, + 0.057017236948013306, + 0.11029263585805893, + -0.021362867206335068, + 0.08762463927268982, + -0.09539848566055298, + -0.01669183559715748, + 0.01407999824732542, + -0.01748216152191162, + 0.03819813206791878, + -0.004537420812994242, + -0.002483341144397855, + 0.027155058458447456, + 0.03850170969963074, + 0.06639356911182404, + -0.020651713013648987, + -0.10614341497421265, + -0.03024112433195114, + -0.09662675112485886, + 0.03191528469324112, + 0.04694782570004463, + 0.07736731320619583, + 0.05058857426047325, + -0.04212917387485504, + -0.057209182530641556, + -0.03144087642431259, + 0.032963432371616364, + -0.04801446199417114, + -0.04304768145084381, + 0.01760670728981495, + 0.05864711478352547, + -0.09691262990236282, + 0.001765129854902625, + 0.08662533760070801, + 0.03639328479766846, + -0.0052993083372712135, + 0.05180341377854347, + -0.0023905616253614426, + 0.05089575797319412, + 0.0745842233300209, + -0.018711533397436142, + -0.026740113273262978, + 0.031486790627241135, + 0.049293480813503265, + -0.015645205974578857, + 0.02343577891588211, + -0.06502702087163925, + 0.027241285890340805, + -0.11014703661203384, + -0.06661023944616318, + -0.10442556440830231, + -0.04534635320305824, + -0.016656998544931412, + -0.008971537463366985, + 0.0026651816442608833, + 0.05009768530726433, + 0.07453075796365738, + 0.054251279681921005, + -0.047287046909332275, + -0.07223093509674072, + -0.04448387026786804, + 0.021603630855679512, + -0.020609034225344658, + 0.08313558995723724, + -2.8771258304062226e-33, + 0.022005440667271614, + -0.003133778925985098, + -0.08343744277954102, + 0.08396214991807938, + 0.0317961685359478, + -0.020351216197013855, + -0.04472210258245468, + -0.07334018498659134, + -0.14311566948890686, + 0.03839733079075813, + 0.0722903236746788, + 0.02212906815111637, + -0.008632977493107319, + 0.066860131919384, + -0.048097237944602966, + 0.009039311669766903, + -0.04091188311576843, + -0.057400304824113846, + -0.07324979454278946, + -0.007124269846826792, + -0.06846319139003754, + 0.01032274216413498, + -0.06199415400624275, + -0.00937808770686388, + -0.05514909327030182, + 0.02008710615336895, + 0.06588352471590042, + -0.07610717415809631, + -0.06371255218982697, + 0.016807550564408302, + 0.022141259163618088, + -0.010890133678913116, + 0.08843569457530975, + 0.018994074314832687, + -0.08439860492944717, + 0.06107878312468529, + -0.07942087203264236, + 0.001537429285235703, + 0.012373976409435272, + 0.08357413113117218, + -0.040384940803050995, + -0.0026516944635659456, + 0.03706368803977966, + -0.05158785730600357, + 0.04466314613819122, + 0.12680770456790924, + -0.010397149249911308, + -0.06133835017681122, + -0.0022563759703189135, + 0.011720463633537292, + 0.02097209356725216, + 0.05928324908018112, + 0.025307390838861465, + 0.05157136544585228, + 0.03408636525273323, + -0.013171013444662094, + -0.014371249824762344, + 0.04924685135483742, + 0.06396142393350601, + -0.023218704387545586, + 0.04622477665543556, + -0.007514571771025658, + 0.022113382816314697, + -0.02893848717212677, + 0.0011543750297278166, + 0.05472325533628464, + -0.0022037599701434374, + 0.05729670077562332, + 0.056068193167448044, + -0.001353451982140541, + -0.025578944012522697, + 0.05842386931180954, + -0.004822872579097748, + 0.014171086251735687, + 0.015731995925307274, + -0.00022598485520575196, + 0.03480185568332672, + -0.03961203247308731, + 0.016916342079639435, + -0.1294013410806656, + -0.12675140798091888, + -0.008437806740403175, + 0.0026846742257475853, + 0.04154594987630844, + -0.03428597003221512, + 0.07118542492389679, + -0.022163864225149155, + -0.0576663501560688, + -0.015800340101122856, + 0.002526033902540803, + 0.04585849493741989, + -0.05449555069208145, + -0.01318975817412138, + -0.14314402639865875, + -0.010069083422422409, + 6.564057800617581e-34, + 0.12789978086948395, + 0.02496226690709591, + -0.10611965507268906, + 0.005949827376753092, + -0.055484723299741745, + 0.06076190620660782, + 0.044908441603183746, + 0.04838760569691658, + -0.012346414849162102, + 0.0317578949034214, + 0.07379712164402008, + -0.02413112111389637, + -0.08035717904567719, + -0.041760243475437164, + 0.051231060177087784, + -0.019754162058234215, + -0.0044609298929572105, + 0.0347762405872345, + -0.021689031273126602, + 0.012573478743433952, + -0.05366075411438942, + -0.07841797173023224, + 0.05451780930161476, + 0.1040927916765213, + 0.03749584034085274, + -0.011034300550818443, + -0.037530265748500824, + -0.008497964590787888, + -0.029143329709768295, + -0.062068089842796326, + -0.0003000731230713427, + 0.03423561155796051, + -0.05558352544903755, + 0.014822687953710556, + -0.009081675671041012, + -0.020913951098918915, + 0.016686202958226204, + -0.01606413535773754, + 0.027973219752311707, + 0.06689808517694473, + -0.0016154731856659055, + 0.016057975590229034, + -0.022359134629368782, + 0.018524937331676483, + -0.06604552268981934, + 0.023893017321825027, + 0.037119533866643906, + -0.06075970456004143, + 0.028623424470424652, + 0.015010882169008255, + 0.06761143356561661, + -0.030238626524806023, + 0.025847744196653366, + -0.009308441542088985, + -0.05484216287732124, + -0.049384843558073044, + -0.01870119757950306, + -0.021771539002656937, + -0.06642957776784897, + 0.08354673534631729, + -0.022025810554623604, + 0.041761189699172974, + -0.02065679058432579, + -0.026991980150341988, + 0.006106752436608076, + -0.06390365958213806, + -0.01799526810646057, + -0.01467365026473999, + 0.03213857114315033, + -0.01801828294992447, + 0.04970252886414528, + -0.056665290147066116, + -0.03850109875202179, + 0.09368609637022018, + 0.023039178922772408, + -0.026894904673099518, + 0.058112844824790955, + 0.0015825022710487247, + -0.010685168206691742, + 0.028273655101656914, + 0.05788412317633629, + 0.00035956164356321096, + -0.025220515206456184, + 0.06058120355010033, + -0.008360384032130241, + 0.0472528338432312, + -0.03064783848822117, + 0.006766454316675663, + -0.03408520668745041, + -0.040848258882761, + -0.06374913454055786, + 0.05730650946497917, + 0.08239085227251053, + -0.06334883719682693, + -0.044914472848176956, + -1.4503284795353011e-08, + -0.09076540172100067, + -0.045211441814899445, + -0.043857600539922714, + -0.0413050502538681, + -0.010540458373725414, + -0.017591632902622223, + -0.053133223205804825, + -0.01535127591341734, + -0.07225103676319122, + -0.03340880200266838, + 0.05989067256450653, + -0.046132735908031464, + -0.05689482018351555, + -0.1047220528125763, + -0.01676556095480919, + 0.03136647865176201, + 0.005510412156581879, + 0.01683935523033142, + -0.02772468887269497, + 0.009880730882287025, + -0.03011886030435562, + 0.06877966225147247, + 0.008007965981960297, + 0.025956232100725174, + 0.02599470689892769, + 0.0452159121632576, + -0.022939059883356094, + 0.03545079007744789, + 0.07793470472097397, + 0.05361556261777878, + 0.05574287474155426, + 0.06414669007062912, + 0.0057211569510400295, + 0.020911501720547676, + -0.05340986326336861, + -0.012671854346990585, + 0.05633583292365074, + 0.021986113861203194, + -0.03366728872060776, + 0.1090286523103714, + -0.056166812777519226, + 0.015799636021256447, + -0.08252101391553879, + -0.05994177982211113, + -0.02586827613413334, + -0.03856784477829933, + 0.07020199298858643, + -0.028400711715221405, + -0.09246765077114105, + -0.109897680580616, + -0.02077260985970497, + -0.004412859212607145, + 0.005122343543916941, + 0.13435955345630646, + -0.0867578461766243, + -0.11639507114887238, + 0.0495673231780529, + 0.14057864248752594, + -0.025698460638523102, + 5.7055771321756765e-05, + 0.0519484281539917, + 0.001625492819584906, + 0.0348278246819973, + 0.009089196100831032 + ], + "file-cpp-bold||*new*,documents,code,c++": [ + -0.057818520814180374, + 0.047607798129320145, + -0.05299109220504761, + 0.059355925768613815, + 0.04879117012023926, + -0.01470319926738739, + -0.001023909542709589, + 0.006837587803602219, + -0.005165927577763796, + 0.018049990758299828, + 0.013950400985777378, + 0.010993973352015018, + 0.03125051036477089, + -0.0810609832406044, + -0.004118714015930891, + 0.010753151960670948, + -0.04034018516540527, + 0.016429303213953972, + 0.0745055302977562, + 0.025512196123600006, + 0.01925131306052208, + -0.00036634798743762076, + -0.05048695579171181, + -0.00423860177397728, + 0.07825963199138641, + 0.038444697856903076, + 0.026903143152594566, + -0.0699911117553711, + 0.032285649329423904, + -0.04336295649409294, + 0.015471364371478558, + -0.016257548704743385, + 0.10512617230415344, + 0.04206487163901329, + 0.1288057118654251, + 0.08979389816522598, + 0.059586454182863235, + -0.09125179797410965, + -0.032900258898735046, + 0.05568717420101166, + 0.020848872140049934, + 0.03574889525771141, + -0.08959198743104935, + 0.029510855674743652, + -0.006174209527671337, + -0.014800173230469227, + -0.01627795398235321, + 0.016205521300435066, + -0.012445205822587013, + -0.07854461669921875, + -0.02898206189274788, + -0.05124198645353317, + -0.07506734132766724, + -0.06811775267124176, + 0.056512583047151566, + -0.03536158427596092, + -0.005295921582728624, + -0.045778367668390274, + 0.016356782987713814, + -0.04727235063910484, + -0.007375252433121204, + 0.046009909361600876, + 0.07149738818407059, + -0.01085940282791853, + 0.06227070465683937, + 0.05078653246164322, + -0.051725152879953384, + 0.09320876747369766, + -0.01617460325360298, + -0.0007734288228675723, + -0.05015109106898308, + 0.03904597833752632, + -0.0091599952429533, + 0.04734625294804573, + -0.01147322915494442, + -0.01804562285542488, + -0.016695361584424973, + 0.04623127728700638, + -0.0394926555454731, + -0.09468305855989456, + 0.019248584285378456, + -0.03523597493767738, + 0.005035473499447107, + -0.0028365387115627527, + 0.0997898131608963, + 0.051510605961084366, + -0.027869684621691704, + -0.025712795555591583, + -0.07668746262788773, + -0.006938613019883633, + -0.014354437589645386, + -0.03245033323764801, + -0.08256697654724121, + 0.029302623122930527, + -0.07918361574411392, + 0.014789706096053123, + 0.051504507660865784, + 0.009525995701551437, + 0.03180145472288132, + 0.04619138687849045, + -0.027033057063817978, + 0.04914575815200806, + 0.08441699296236038, + -0.005584913771599531, + -0.03383079916238785, + 0.03306332975625992, + 0.04519728198647499, + -0.015504972077906132, + 0.01255511399358511, + -0.028331324458122253, + 0.02101008966565132, + -0.08646862208843231, + -0.07127328217029572, + -0.11330877989530563, + 0.028414826840162277, + 0.03738696873188019, + -0.058818019926548004, + -0.019269872456789017, + 0.07196655124425888, + 0.0859372615814209, + 0.026649760082364082, + -0.09947637468576431, + -0.06336921453475952, + 0.024080151692032814, + -0.055574897676706314, + -0.007512498181313276, + 0.023681607097387314, + -8.32983857831978e-34, + 0.011385411024093628, + 0.01950036734342575, + -0.06349612772464752, + 0.10860318690538406, + 0.016704022884368896, + 0.01754247397184372, + 0.01356805395334959, + -0.05363623425364494, + -0.10642741620540619, + 0.008700999431312084, + 0.08275164663791656, + -0.06817305833101273, + -0.007212390657514334, + 0.11405818164348602, + -0.041814468801021576, + -0.07302317023277283, + -0.017625024542212486, + -0.0062197367660701275, + -0.03568323329091072, + -0.0440850593149662, + -0.08928459882736206, + 0.07008679956197739, + -0.01873842254281044, + -0.006975315976887941, + -0.009159774519503117, + -0.001786700333468616, + 0.046443164348602295, + -0.06711962819099426, + -0.043961767107248306, + -0.021925868466496468, + 0.037687748670578, + -0.014328821562230587, + 0.03393721953034401, + 0.06898754090070724, + -0.059114549309015274, + 0.09391674399375916, + -0.05588984489440918, + -0.04232046380639076, + -0.014193407259881496, + 0.025906460359692574, + -0.04558185115456581, + 0.0031202509999275208, + 0.007990176789462566, + -0.03653892129659653, + 0.03924928605556488, + 0.13613712787628174, + -0.06581789255142212, + -0.13026687502861023, + -0.06865046918392181, + -0.07780320197343826, + 0.03571268543601036, + 0.1018858253955841, + -0.031338293105363846, + 0.03191053122282028, + 0.005067258607596159, + -0.02281305007636547, + -0.04812043160200119, + 0.005498027428984642, + 0.037297770380973816, + -0.03151935711503029, + 0.10143445432186127, + 0.04726305976510048, + -0.014031685888767242, + 0.004714021924883127, + 0.0018180793849751353, + 0.08231048285961151, + -0.016114773228764534, + 0.03718806058168411, + 0.12073016166687012, + 0.011163282208144665, + -0.014297428540885448, + 0.05223553255200386, + -0.03187744691967964, + 0.015112362802028656, + 0.04210258275270462, + 0.04837329685688019, + 0.02606622874736786, + -0.0057377503253519535, + 0.04011845588684082, + -0.09262364357709885, + -0.11087359488010406, + 0.014990277588367462, + -0.0013071162393316627, + 0.0058555565774440765, + 0.019296064972877502, + -0.03407057002186775, + 0.0025588360149413347, + -0.021187547594308853, + 0.0021861696150153875, + -0.013341615907847881, + 0.00953451544046402, + -0.021664027124643326, + -0.005090158898383379, + -0.08426809310913086, + -0.06346014142036438, + -3.078055834857161e-33, + 0.10919350385665894, + -0.005475322250276804, + -0.03187824413180351, + -0.04208988696336746, + -0.09572510421276093, + 0.06453336775302887, + -0.046266768127679825, + -0.01356915570795536, + 0.015022387728095055, + 0.049941714853048325, + 0.07580967992544174, + -0.017698977142572403, + 0.0009909356012940407, + -0.020288467407226562, + 0.07865151017904282, + 0.007932974956929684, + -0.08420820534229279, + 0.051933590322732925, + -0.05080650374293327, + 0.04348308965563774, + -0.04841817915439606, + -0.0322079062461853, + 0.041400112211704254, + 0.0990634486079216, + 0.04046907648444176, + 0.004616070538759232, + -0.01651408150792122, + 0.007043801248073578, + 0.04018978774547577, + -0.057268861681222916, + -0.020219402387738228, + 0.06893574446439743, + -0.057804837822914124, + 0.035636965185403824, + -0.030400380492210388, + -0.006005201023072004, + -0.04391269385814667, + 0.021013597026467323, + 0.035480745136737823, + 0.06273294985294342, + 0.040137115865945816, + 0.02043093554675579, + -0.021310092881321907, + -0.0012636531610041857, + -0.08439157903194427, + -0.017095711082220078, + 0.04847671836614609, + -0.05952167883515358, + -0.033006101846694946, + -0.0005997993866913021, + 0.049489688128232956, + -0.043266091495752335, + -0.016332611441612244, + -0.04758941009640694, + -0.061788883060216904, + 0.03532489389181137, + 0.006973219104111195, + 0.0489833690226078, + -0.03915420174598694, + 0.03258499875664711, + -0.06792353093624115, + 0.03006056696176529, + -0.03972425311803818, + -0.014016092754900455, + 0.019674602895975113, + -0.06489816308021545, + -0.00633281609043479, + -0.06369024515151978, + 0.026364155113697052, + -0.03632975369691849, + 0.036751896142959595, + 0.04539411514997482, + -0.08589093387126923, + 0.05181712657213211, + -0.01298523135483265, + -0.04938928782939911, + 0.03744998201727867, + 0.013097589835524559, + -0.0020145431626588106, + 0.021256648004055023, + 0.03712540492415428, + 0.002240249654278159, + -0.013759804889559746, + 0.08704008162021637, + -0.04530102387070656, + 0.02330489456653595, + -0.029425784945487976, + -0.03397895768284798, + 0.0016297948313876987, + -0.048135314136743546, + -0.041560545563697815, + 0.07450295239686966, + 0.027109459042549133, + -0.0459073930978775, + -0.07191938906908035, + -2.195238302249436e-08, + -0.06966152787208557, + -0.04268389567732811, + -0.03611075505614281, + -0.005116754677146673, + 0.014588793739676476, + -0.07573311775922775, + -0.09377999603748322, + -0.07870395481586456, + -0.09211578220129013, + -0.06775251030921936, + 0.0219778660684824, + 8.063915629463736e-06, + -0.037236422300338745, + -0.12721696496009827, + -0.01371020171791315, + -0.01807236112654209, + 0.006534535903483629, + -0.03888824209570885, + -0.006179222371429205, + -0.018394192680716515, + -0.04163627699017525, + 0.09162946790456772, + 0.035504575818777084, + 0.08943398296833038, + 0.005870272871106863, + -0.00778221944347024, + -0.00445827841758728, + 0.012961763888597488, + 0.08527065813541412, + 0.05062368884682655, + 0.12384938448667526, + 0.06981661915779114, + -0.028861213475465775, + 0.006496934685856104, + 0.027250075712800026, + -0.008477859199047089, + 0.006527006160467863, + -0.003483894746750593, + -0.02719460241496563, + 0.10628902912139893, + -0.03406625986099243, + 0.02491355501115322, + -0.016356049105525017, + -0.05141841247677803, + -0.05708307772874832, + -0.03522968664765358, + 0.009639685973525047, + -0.0622682049870491, + -0.10454488545656204, + -0.09292374551296234, + -0.015422480180859566, + 0.036777470260858536, + -0.005329332314431667, + 0.13574446737766266, + -0.04760132357478142, + -0.05519518628716469, + -0.0009079282754100859, + 0.12557117640972137, + -0.022326765581965446, + -0.017118578776717186, + 0.06522909551858902, + -0.02715328149497509, + 0.08907219022512436, + 0.04660237208008766 + ], + "file-css-bold||documents,code": [ + -0.0256674662232399, + 0.07018792629241943, + -0.09377537667751312, + 0.1131642535328865, + 0.07660859078168869, + -0.04227754473686218, + 0.022822080180048943, + -0.019216861575841904, + 0.053749311715364456, + 0.05343606323003769, + -0.07268071174621582, + 0.10961198806762695, + 0.08177924156188965, + -0.07162583619356155, + 0.004338795784860849, + 0.02678380347788334, + -0.0507122278213501, + 0.041186217218637466, + 0.005350255873054266, + 0.03791242092847824, + -0.00917820818722248, + 0.03779398277401924, + 0.044909827411174774, + 4.373166120785754e-06, + 0.004533721599727869, + 0.013630400411784649, + 0.020867571234703064, + -0.029136065393686295, + -0.0058490498922765255, + -0.04226405546069145, + 0.02917523682117462, + -0.026997629553079605, + 0.1147993877530098, + 0.048656366765499115, + 0.043745238333940506, + 0.045022960752248764, + 0.03532673418521881, + -0.06995902210474014, + -0.04259603098034859, + 0.10534640401601791, + -0.008146710693836212, + -0.025956634432077408, + -0.0015144299250096083, + 0.018965331837534904, + -0.042431045323610306, + -0.09353987872600555, + -0.04524002596735954, + -0.019817033782601357, + 0.003826573258265853, + -0.031337425112724304, + -0.04229111224412918, + -0.05992330238223076, + -0.06463513523340225, + -0.03404707834124565, + 0.00037388704367913306, + -0.02308196946978569, + -0.04396864026784897, + 0.0005560424760915339, + 0.05260607600212097, + -0.03563904017210007, + 0.023542532697319984, + 0.01703255996108055, + 0.04918541759252548, + 0.004244830459356308, + 0.0956985130906105, + 0.11768676340579987, + -0.005017757415771484, + 0.07952787727117538, + -0.10556118935346603, + -0.013145608827471733, + 0.027388520538806915, + -0.012154808267951012, + 0.030601846054196358, + -0.03312365710735321, + 0.007814643904566765, + 0.008955690078437328, + 0.047595858573913574, + 0.07236024737358093, + -0.029141999781131744, + -0.08183922618627548, + -0.05422526225447655, + -0.09615102410316467, + 0.025412587448954582, + 0.03153344243764877, + 0.07882314175367355, + 0.07636309415102005, + -0.0776832327246666, + -0.08183567225933075, + -0.0275909174233675, + 0.023339994251728058, + -0.03152867779135704, + -0.011101913638412952, + 0.004856184124946594, + 0.0558200404047966, + -0.10084604471921921, + 0.004954001400619745, + 0.09068959206342697, + 0.01861349120736122, + -0.0014837667113170028, + 0.04086298123002052, + -0.006100598257035017, + 0.04336072504520416, + 0.08107113093137741, + -0.008937247097492218, + -0.024156324565410614, + 0.05889037624001503, + -0.0021138449665158987, + 0.023839440196752548, + 0.015200488269329071, + -0.0678216740489006, + 0.03362389653921127, + -0.11872946470975876, + -0.10370602458715439, + -0.0770493894815445, + -0.0376833975315094, + -0.01897108368575573, + 0.010510056279599667, + -0.018466930836439133, + 0.07539810985326767, + 0.06552707403898239, + 0.07087042927742004, + -0.01818915642797947, + -0.07469028234481812, + -0.07171492278575897, + 0.021313201636075974, + -0.0026079092640429735, + 0.1057807207107544, + -3.681559042673139e-33, + 0.021928982809185982, + -0.0098416768014431, + -0.09590578824281693, + 0.09061013162136078, + 0.058683209121227264, + -0.03120233304798603, + -0.04008232429623604, + -0.043114073574543, + -0.14184261858463287, + 0.04946662485599518, + 0.082556813955307, + 0.0158210601657629, + 0.007247986271977425, + 0.051835428923368454, + -0.016805583611130714, + 0.004580831155180931, + -0.037296585738658905, + -0.06815632432699203, + -0.05564264580607414, + -0.031652532517910004, + -0.07892997562885284, + 0.02782539837062359, + -0.04758261889219284, + -0.028532491996884346, + -0.03921857103705406, + 0.03508966416120529, + 0.058196134865283966, + -0.03405819460749626, + -0.08127497881650925, + -0.0012956942664459348, + 0.031869348138570786, + 0.007162916008383036, + 0.0782177746295929, + 0.006033550016582012, + -0.0458577461540699, + 0.07552862167358398, + -0.051875319331884384, + 0.018160762265324593, + 0.04356750100851059, + 0.06486304849386215, + -0.053133249282836914, + -0.0001632856874493882, + 0.04473059996962547, + -0.021433338522911072, + 0.029367748647928238, + 0.13120633363723755, + -0.007547421380877495, + -0.08726657181978226, + 0.01584061235189438, + 0.0055794320069253445, + -0.0014427657006308436, + 0.03911067917943001, + 0.04399218037724495, + 0.03533042222261429, + 0.025379180908203125, + 0.00019866570073645562, + -0.029601842164993286, + 0.04542025551199913, + 0.038615062832832336, + -0.009919403120875359, + 0.08465294539928436, + -0.017841482535004616, + 0.0027510738000273705, + -0.03884243592619896, + -0.027490677312016487, + 0.06406343728303909, + -0.008460529148578644, + 0.10303012281656265, + 0.0627310574054718, + -0.032281164079904556, + 0.001602573087438941, + 0.06739310920238495, + 0.027528563514351845, + 0.029931752011179924, + 0.02218780666589737, + 0.024192508310079575, + 0.029967274516820908, + -0.028695305809378624, + 0.039445407688617706, + -0.11354860663414001, + -0.1040804386138916, + 0.008329031988978386, + 0.0024366378784179688, + 0.07692505419254303, + -0.03961394354701042, + 0.06751731038093567, + -0.020456509664654732, + -0.028591621667146683, + 0.005150515586137772, + 0.005635772831737995, + -0.006399183534085751, + 0.0001844889047788456, + -0.006126477848738432, + -0.13740158081054688, + -0.03909182548522949, + 1.103575310551576e-33, + 0.10642042011022568, + 0.0320754274725914, + -0.10102511197328568, + 0.04035872966051102, + -0.04173325002193451, + 0.07549762725830078, + 0.030576881021261215, + 0.045975927263498306, + -0.015578992664813995, + 0.02946319803595543, + 0.11634484678506851, + 0.011841600760817528, + -0.06474670767784119, + -0.04387083649635315, + 0.011506494134664536, + -0.0007122886599972844, + -0.03424149379134178, + 0.035236623138189316, + -0.049078185111284256, + -0.03635471686720848, + -0.05287332087755203, + -0.06017507612705231, + 0.03943394497036934, + 0.0743485614657402, + 0.026082908734679222, + -0.025892402976751328, + -0.0756540596485138, + -0.020375950261950493, + -0.03640781715512276, + -0.021140344440937042, + -0.022247551009058952, + 0.01019793190062046, + -0.03772750496864319, + 0.017407158389687538, + 0.012865648604929447, + -0.027775172144174576, + -0.01769866608083248, + 0.01072070375084877, + 0.044948481023311615, + 0.031815119087696075, + -0.023154404014348984, + 0.007865776307880878, + -0.005615899804979563, + 0.0006664704997092485, + -0.06085547059774399, + 0.05060258135199547, + 0.044406503438949585, + -0.050521720200777054, + -0.003337800968438387, + 0.03636223077774048, + 0.06069458648562431, + -0.026184190064668655, + 0.03853250667452812, + 0.004848942626267672, + -0.04496048018336296, + -0.04598410427570343, + -0.03933561220765114, + -0.006676726508885622, + -0.08667672425508499, + 0.09052468091249466, + 0.001626589335501194, + 0.0709679052233696, + -0.012968631461262703, + -0.03416578844189644, + 0.018885118886828423, + -0.030368324369192123, + -0.03272354602813721, + -0.03826562687754631, + 0.05281484127044678, + -0.028058696538209915, + 0.0384620800614357, + -0.01141603384166956, + -0.042349401861429214, + 0.05638711526989937, + -0.002837334992364049, + -0.04496357589960098, + 0.07941286265850067, + 0.022033022716641426, + -0.006879430264234543, + 0.00181202357634902, + 0.04724551737308502, + 0.0119760287925601, + -0.05177604407072067, + 0.0356450229883194, + -0.042445022612810135, + 0.042245522141456604, + -0.007540109101682901, + -0.009928195737302303, + -0.021478187292814255, + -0.05212106555700302, + -0.09425147622823715, + 0.04038708284497261, + 0.08045771718025208, + -0.06396379321813583, + -0.06904906779527664, + -1.5818910625853277e-08, + -0.08949652314186096, + -0.00810595415532589, + -0.04415963590145111, + -0.03563681244850159, + -0.04659706726670265, + 0.011842132546007633, + -0.03126302361488342, + -0.03314964100718498, + -0.056763600558042526, + -0.039250899106264114, + 0.037121281027793884, + -0.044496290385723114, + -0.030312316492199898, + -0.07085688412189484, + -0.05997344106435776, + 0.019555533304810524, + -0.007540700491517782, + 0.02232818864285946, + -0.029931293800473213, + -0.012728807516396046, + -0.017876090481877327, + 0.06344014406204224, + 0.027785519137978554, + 0.05867784470319748, + 0.040695901960134506, + 0.036785077303647995, + -0.04868089407682419, + 0.005076067987829447, + 0.08570190519094467, + 0.0672866702079773, + -0.004983786027878523, + 0.01261059008538723, + -0.013338756747543812, + 0.02456180565059185, + -0.041466664522886276, + -0.054648902267217636, + -0.0057955412194132805, + 0.002806411124765873, + -0.02790716663002968, + 0.08744874596595764, + -0.0727466270327568, + 0.005524558946490288, + -0.037298038601875305, + -0.029485896229743958, + -0.019824281334877014, + -0.031660646200180054, + 0.03311276063323021, + -0.02081136777997017, + -0.08939508348703384, + -0.10182883590459824, + -0.013713876716792583, + -0.0464324876666069, + -0.005950549617409706, + 0.12947946786880493, + -0.06382277607917786, + -0.10815968364477158, + 0.0426325649023056, + 0.15604239702224731, + -0.0413520485162735, + -0.013765753246843815, + 0.06186718866229057, + 0.01530512236058712, + 0.020254049450159073, + 0.0020805371459573507 + ], + "file-csv-bold||documents,data": [ + 0.024485860019922256, + 0.07027837634086609, + -0.07813601195812225, + 0.07957448810338974, + 0.03693046793341637, + -0.0256162341684103, + 0.012461147271096706, + -0.034514762461185455, + 0.07402583211660385, + 0.028656499460339546, + -0.019120683893561363, + 0.019725143909454346, + 0.06902401894330978, + -0.06210356205701828, + 0.035366933792829514, + 0.023940851911902428, + -0.05247065797448158, + 0.013748438097536564, + -0.02626117132604122, + -0.0057297092862427235, + 0.01606878824532032, + 0.07238808274269104, + 0.01987462304532528, + 0.0026512127369642258, + 0.021875260397791862, + 0.018063317984342575, + 0.021866420283913612, + 0.003836714429780841, + -0.036595668643713, + -0.04258735105395317, + 0.0012505162740126252, + -0.03693009540438652, + 0.10612192004919052, + 0.09746835380792618, + 0.05846991762518883, + 0.018725218251347542, + 0.015749724581837654, + 0.01073165237903595, + -0.036954864859580994, + 0.11645551025867462, + 0.022454606369137764, + -0.021033361554145813, + -0.02349378727376461, + -0.010310287587344646, + -0.01265094242990017, + -0.052169784903526306, + -0.024533292278647423, + -0.009534357115626335, + 0.055426422506570816, + 0.02234693057835102, + -0.08403324335813522, + -0.015769217163324356, + -0.05403241887688637, + 0.01601823978126049, + 0.006540406495332718, + -0.030541211366653442, + -0.05990848317742348, + -0.02460387535393238, + 0.059393707662820816, + -0.06352035701274872, + 0.007394046988338232, + -0.01395715307444334, + 0.03150339424610138, + -0.002033684402704239, + 0.032754700630903244, + 0.005195841658860445, + -0.007736916653811932, + 0.09929178655147552, + -0.018694527447223663, + 0.0014197335112839937, + 0.02167077362537384, + 0.0030629492830485106, + -0.005672119557857513, + -0.05670372024178505, + -0.03744155913591385, + 0.03493209928274155, + 0.0030873564537614584, + -0.004282668698579073, + 0.003154387231916189, + -0.09460639208555222, + -0.0472257062792778, + -0.08898947387933731, + 0.010740128345787525, + 0.036963727325201035, + 0.023405492305755615, + 0.011631861329078674, + -0.08948743343353271, + -0.01836073398590088, + -0.1294306367635727, + -0.011932986788451672, + -0.04063385725021362, + 0.016142601147294044, + 0.01635492965579033, + 0.08628717064857483, + -0.07001961022615433, + 0.05485404655337334, + 0.12190881371498108, + 0.013037783093750477, + 0.058809857815504074, + 0.02519918791949749, + 0.02813507616519928, + 0.02241639792919159, + 0.038745176047086716, + 0.01127235870808363, + -0.052869927138090134, + -0.03734531253576279, + 0.03121282160282135, + 0.012271360494196415, + 0.029942797496914864, + -0.0585632398724556, + 0.045485980808734894, + -0.09374890476465225, + -0.09764731675386429, + -0.09232345968484879, + -0.03186708688735962, + -0.016812410205602646, + -0.05925640091300011, + -0.024989113211631775, + -0.010953586548566818, + 0.024582304060459137, + -0.00891960971057415, + -0.053088221698999405, + -0.05600694566965103, + -0.020838825032114983, + 0.02486821636557579, + -0.008626424707472324, + 0.09530732035636902, + -2.2378815331825006e-33, + -0.00575757771730423, + -0.022733936086297035, + -0.04016295075416565, + 0.06489685922861099, + 0.04753416031599045, + -0.009115459397435188, + -0.023135235533118248, + -0.04680618271231651, + -0.0930621549487114, + 0.04876890778541565, + 0.0378616601228714, + 0.06246766075491905, + -0.018414802849292755, + 0.013694255612790585, + -0.05330769717693329, + -0.0033040144480764866, + -0.06467001885175705, + -0.09591571986675262, + -0.07396643608808517, + 0.0038358455058187246, + 0.012834548018872738, + 0.0307062529027462, + 0.016991298645734787, + 0.0015832765493541956, + -0.0003599314659368247, + -0.053171586245298386, + -0.005112054757773876, + -0.04722518101334572, + -0.06657828390598297, + 0.00703772995620966, + 0.03976918011903763, + 0.033775851130485535, + 0.07549344748258591, + -0.01097559928894043, + 0.008721080608665943, + 0.04216662794351578, + -0.0047018383629620075, + 0.009122931398451328, + -0.0038653970696032047, + 0.06898937374353409, + -0.04566158354282379, + 0.04398590326309204, + 0.09384120255708694, + 0.008355029858648777, + -0.01976596750319004, + 0.16449885070323944, + -0.010447417385876179, + -0.05545416846871376, + -0.011614374816417694, + -0.0009084995836019516, + 0.0008925137226469815, + 0.029261959716677666, + 0.032567158341407776, + 0.011147954501211643, + 0.014428378082811832, + -0.005212096963077784, + 0.01570868492126465, + 0.04196297377347946, + -0.00928549561649561, + -0.06724274158477783, + 0.020332662388682365, + 0.01265384629368782, + 0.016225988045334816, + 0.0011009704321622849, + -0.05080913007259369, + 0.02343870885670185, + 0.0855686217546463, + 0.08923712372779846, + 0.040158461779356, + -0.01817004755139351, + 0.013897511176764965, + 0.09296718239784241, + -0.012038455344736576, + -0.04666947200894356, + 0.03737737238407135, + 0.08511697500944138, + -0.004206404555588961, + -0.005309314467012882, + 0.01890861615538597, + -0.1079607903957367, + -0.06856925785541534, + -0.0352231003344059, + 0.017045896500349045, + 0.037105340510606766, + -0.04789511114358902, + 0.1010032668709755, + -0.013869035989046097, + -0.02868051454424858, + 0.01601080596446991, + -0.029084915295243263, + -0.0141389025375247, + 0.059468597173690796, + -0.04965408146381378, + -0.1343289464712143, + -0.047636449337005615, + 6.473794068976334e-34, + 0.10481298714876175, + 0.01871519908308983, + -0.07490970194339752, + 0.03941197320818901, + 0.044448088854551315, + 0.08484411239624023, + 0.00328321335837245, + 0.04628529027104378, + -0.011733999475836754, + -0.010186942294239998, + 0.0746869295835495, + -0.08284005522727966, + -0.07296533137559891, + -0.030848801136016846, + 0.014933678321540356, + 0.01440761610865593, + -0.02719247154891491, + 0.07880645990371704, + -0.0992388054728508, + -0.05007699877023697, + -0.09670572727918625, + -0.026856567710638046, + 0.030882086604833603, + 0.10179570317268372, + 0.06597381085157394, + -0.044182997196912766, + -0.03507393226027489, + -0.025749778375029564, + -0.05738035589456558, + -0.013230232521891594, + -0.024483103305101395, + 0.0349554643034935, + -0.008471743203699589, + 0.017752429470419884, + -0.08352858573198318, + -0.00642658956348896, + 0.03120477683842182, + -0.009714092127978802, + 0.05801102891564369, + 0.0510026179254055, + 0.0062280623242259026, + 0.07487025856971741, + -0.07182692736387253, + 0.01008205022662878, + 0.0006758359377272427, + 0.050124723464250565, + 0.04917434602975845, + 0.0031902564223855734, + 0.007299783639609814, + 0.07759352028369904, + 0.055981993675231934, + -0.003090492682531476, + -0.019339432939887047, + 0.03044472448527813, + 0.033172670751810074, + -0.06489921361207962, + -0.012183059938251972, + -0.02452140673995018, + -0.10394779592752457, + 0.0064816526137292385, + -0.07591643929481506, + 0.0429643951356411, + -0.016986489295959473, + 0.00773031497374177, + 0.05839359015226364, + -0.005129699595272541, + 0.011484233662486076, + -0.06909901648759842, + 0.06139455363154411, + -0.035520728677511215, + 0.06325563043355942, + -0.06279708445072174, + -0.044953249394893646, + 0.04197825863957405, + -0.00488984165713191, + -0.03645601496100426, + -0.01120779849588871, + 0.011293035000562668, + -0.019245008006691933, + 0.04774019867181778, + 0.05212315917015076, + -0.0243491493165493, + 0.058110520243644714, + 0.12444847077131271, + 0.0114575931802392, + 0.06161701679229736, + -0.006532622035592794, + -0.06136925518512726, + -0.00425376882776618, + 0.058132272213697433, + -0.08585930615663528, + -0.0012695664772763848, + 0.05016397312283516, + -0.030028121545910835, + -0.03935527428984642, + -1.558337636708984e-08, + -0.043860167264938354, + -0.0712953507900238, + -0.08284291625022888, + -0.044126350432634354, + -0.023674942553043365, + 0.002302369801327586, + -0.07148457318544388, + 0.021480359137058258, + -0.03103943169116974, + 0.017661329358816147, + 0.08214949071407318, + -0.05314625799655914, + -0.058117788285017014, + -0.09274622797966003, + -0.044283781200647354, + 0.0419941283762455, + 0.0795876681804657, + -0.014851312153041363, + -0.01604379527270794, + -0.018919063732028008, + -0.028042089194059372, + 0.06882353872060776, + 0.0026841487269848585, + 0.039083804935216904, + 0.09676124900579453, + 0.011220998130738735, + -0.12146782130002975, + -0.0022526311222463846, + 0.11292839050292969, + 0.001534916809760034, + -0.011790662072598934, + -0.026212230324745178, + 0.013676752336323261, + 0.02249605767428875, + -0.040495339781045914, + -0.06024239584803581, + 0.03655850887298584, + 0.02576536312699318, + -0.038920313119888306, + 0.10854417085647583, + -0.06770049035549164, + 0.02116979844868183, + -0.09556862711906433, + -0.02360505796968937, + 0.011630074121057987, + -0.04218585416674614, + -0.0020936478395015, + -0.02111651934683323, + -0.041109535843133926, + -0.09576629102230072, + 0.006498436443507671, + -0.02266380935907364, + 0.053105439990758896, + 0.10741852968931198, + -0.05618982017040253, + -0.10250658541917801, + 0.07350241392850876, + 0.18989749252796173, + -0.03387194871902466, + -0.04596834257245064, + 0.08756139874458313, + -0.02818957529962063, + 0.01693030446767807, + -0.037058062851428986 + ], + "file-dashed-bold||documents,files,browse,draft,open,dotted": [ + -0.023208381608128548, + 0.03818463906645775, + -0.014029810205101967, + 0.05666591599583626, + 0.0500386618077755, + -0.022558080032467842, + 0.03615159913897514, + -0.014683189801871777, + 0.02322450466454029, + 0.025336218997836113, + 0.002620660001412034, + 0.11030010133981705, + 0.03422002121806145, + -0.010378881357610226, + -0.03421188145875931, + 0.046707261353731155, + -0.055737484246492386, + -0.04605940356850624, + 0.005708792246878147, + 0.02528473176062107, + -0.05302644520998001, + 0.015158044174313545, + 0.01317275408655405, + -0.025193607434630394, + 0.043089430779218674, + 0.07155143469572067, + 0.001954261912032962, + -0.028748368844389915, + -0.0702640563249588, + -0.06691313534975052, + 0.024762770161032677, + 0.032104700803756714, + 0.0965426117181778, + -0.008506277576088905, + 0.07968854159116745, + -0.013386350125074387, + 0.007927563972771168, + 0.0038996986113488674, + 0.013396603055298328, + 0.04223024472594261, + 0.021363237872719765, + -0.04178718850016594, + -0.05581735819578171, + 0.009485939517617226, + -0.05069486051797867, + -0.08710677921772003, + -0.037146974354982376, + -0.017604978755116463, + 0.042042482644319534, + 0.023009367287158966, + -0.04284157231450081, + -0.04041102156043053, + -0.11049322038888931, + -0.04813429340720177, + 0.008656137622892857, + 0.046970024704933167, + -0.006970686838030815, + 0.020686617121100426, + 0.03266023471951485, + -0.0026530663017183542, + -0.011854329146444798, + 0.013383708894252777, + -0.04318707063794136, + -0.01353983674198389, + 0.07857674360275269, + 0.048916224390268326, + -0.027551880106329918, + 0.030563516542315483, + -0.04344874620437622, + 0.024808544665575027, + 0.024391883984208107, + -0.00012375049118418247, + -0.04013512283563614, + 0.017666952684521675, + -0.013415385968983173, + 0.008256646804511547, + -0.004054795019328594, + 0.050754182040691376, + 0.005782424006611109, + -0.1273270547389984, + -0.03334507346153259, + -0.04283762350678444, + 0.014651150442659855, + 0.055062029510736465, + 0.08760204911231995, + 0.0700850859284401, + -0.040099166333675385, + -0.09691249579191208, + -0.0413094200193882, + -0.01847143843770027, + -0.04180654138326645, + -0.06592034548521042, + 0.000456008012406528, + 0.051473189145326614, + -0.10133227705955505, + -0.015520540066063404, + 0.1445576548576355, + 0.06384516507387161, + 0.01325741782784462, + 0.05864741653203964, + 0.026813479140400887, + -0.001265673665329814, + 0.10215301066637039, + -0.0005844570114277303, + -0.047731734812259674, + -0.00241213571280241, + 0.022954007610678673, + 0.013897138647735119, + 0.0086731081828475, + -0.0767698884010315, + 0.004552083555608988, + -0.1463954597711563, + -0.049651019275188446, + -0.07863732427358627, + -0.07245903462171555, + -0.058509379625320435, + -0.13221152126789093, + 0.002386119682341814, + 0.1005399078130722, + 0.1250884085893631, + 0.06583725661039352, + -0.01936839334666729, + -0.07706739753484726, + -0.0570874847471714, + 0.028329895809292793, + -0.048043400049209595, + 0.07672256976366043, + -1.9650821714642722e-33, + 0.03137115389108658, + 0.03572531417012215, + -0.04755587875843048, + 0.060908980667591095, + 0.03268146514892578, + -0.016125090420246124, + -0.044089555740356445, + -0.06455037742853165, + -0.14377567172050476, + 0.01462994609028101, + 0.0879097729921341, + 0.07906554639339447, + -0.028844254091382027, + 0.0933927595615387, + -0.01147415116429329, + -0.006472400389611721, + 0.0003278712974861264, + -0.016362914815545082, + -0.05661042034626007, + -0.005714745726436377, + -0.04196310043334961, + 0.0642494186758995, + -0.06307527422904968, + -0.06191200390458107, + -0.02774616703391075, + -0.028477882966399193, + 0.0423138253390789, + -0.08809350430965424, + -0.053433120250701904, + 0.052075207233428955, + 0.013768156990408897, + 0.0032296229619532824, + 0.10938632488250732, + -0.025533471256494522, + -0.09714061766862869, + 0.036087051033973694, + -0.1159929409623146, + -0.04935869574546814, + -0.009576027281582355, + 0.045943282544612885, + -0.06071371212601662, + -0.03294409066438675, + 0.01085337158292532, + 0.02085997723042965, + -1.7070611647795886e-05, + 0.14474013447761536, + 0.010245827957987785, + -0.0558709055185318, + -0.05916517227888107, + 0.022558629512786865, + -0.013421324081718922, + 0.023396268486976624, + 0.02099074237048626, + 0.025181235745549202, + 0.04275956004858017, + -0.026894690468907356, + 0.022692348808050156, + 0.0526827797293663, + 0.01687927544116974, + -0.007281789090484381, + 0.13812889158725739, + 0.06913543492555618, + -0.032939180731773376, + -0.049285829067230225, + -0.01601250097155571, + 0.020543798804283142, + -0.03688414767384529, + 0.02605145238339901, + 0.05276096612215042, + 0.002845301991328597, + -0.053229380398988724, + 0.03673223406076431, + 0.07588795572519302, + 0.06803449988365173, + 0.026858752593398094, + -0.018050022423267365, + 0.03155546635389328, + -0.01406102254986763, + 0.026147518306970596, + -0.1359773576259613, + -0.08531907945871353, + -0.06146673113107681, + 0.015709780156612396, + -0.029502112418413162, + -0.03835243731737137, + 0.015780678018927574, + -0.024614224210381508, + -0.054845936596393585, + -0.07874181121587753, + -0.04314595088362694, + -0.004279708489775658, + 0.025281310081481934, + -0.051031384617090225, + -0.05741722509264946, + -0.07225204259157181, + -1.6869496469776609e-34, + 0.09272032231092453, + 0.026104610413312912, + -0.0465938039124012, + 0.05665113031864166, + -0.06454066187143326, + 0.11622819304466248, + 0.08233597874641418, + 0.0174111295491457, + 0.015886420384049416, + 0.01662122830748558, + 0.043031882494688034, + 0.04829232022166252, + -0.011732403188943863, + -0.038338787853717804, + -0.004870163276791573, + 0.008117921650409698, + 0.03259272873401642, + -0.011483713984489441, + -0.05392848700284958, + -0.009964251890778542, + -0.10074792057275772, + -0.08335813879966736, + 0.07278700172901154, + 0.08473017066717148, + 0.08272500336170197, + -0.038448113948106766, + 0.04281819611787796, + -0.07373598963022232, + -0.004210660699754953, + -0.0009564874926581979, + -0.026806343346834183, + -0.012771107256412506, + -0.00752877164632082, + -0.02226109616458416, + -0.015735184773802757, + 0.007916227914392948, + 0.001056094653904438, + -0.005981920752674341, + 0.011593935079872608, + 0.05263238400220871, + -0.04650234431028366, + 0.003355054883286357, + 0.0862787589430809, + 0.02140112593770027, + -0.022224552929401398, + 0.0026592942886054516, + -0.04005884379148483, + 0.055491458624601364, + -0.017919907346367836, + 0.03757903724908829, + 0.08895541727542877, + -0.00914819072932005, + 0.045613545924425125, + -0.05570432171225548, + -0.023702850565314293, + -0.05377696454524994, + 0.0034867555368691683, + -0.03236023336648941, + -0.026778876781463623, + 0.049818191677331924, + -0.010484674014151096, + 0.04313304275274277, + -0.06817153841257095, + 0.01341697946190834, + -0.010742145590484142, + -0.05990735441446304, + -0.023230763152241707, + -0.05479573458433151, + 0.035955287516117096, + -0.031401388347148895, + 0.05516083166003227, + -0.04057375341653824, + -0.022239796817302704, + 0.018772417679429054, + 0.05931040644645691, + -0.00930784735828638, + 0.09970112144947052, + 0.015448339283466339, + -0.016789481043815613, + 0.05705147981643677, + 0.031881555914878845, + 0.02839256264269352, + -0.013202083297073841, + 0.037480615079402924, + -0.011584135703742504, + 0.05096350982785225, + -0.08643710613250732, + 0.04796338081359863, + 0.005783491302281618, + -0.025521865114569664, + -0.020467504858970642, + 0.031562142074108124, + 0.051317740231752396, + 0.006526959128677845, + -0.04572385922074318, + -1.9578775933837278e-08, + -0.06543915718793869, + -0.06662610173225403, + 1.786263419489842e-05, + -0.03055397793650627, + 0.06091759353876114, + -0.02169414982199669, + -0.0025778901763260365, + -0.0059782820753753185, + -0.013212759047746658, + -0.05783291906118393, + 0.07358936220407486, + -0.04363043233752251, + -0.11461100727319717, + -0.04929889738559723, + -0.015175058506429195, + 0.06479187309741974, + 0.05963994562625885, + 0.07776457071304321, + -0.031052937731146812, + -0.040619172155857086, + -0.024382853880524635, + 0.04671098291873932, + 0.029067523777484894, + 0.05198972672224045, + 0.0026436622720211744, + 0.024674691259860992, + -0.06137269362807274, + -0.008878201246261597, + 0.04574055224657059, + 0.025317322462797165, + -0.021907007321715355, + 0.03493073210120201, + 0.014838403090834618, + -0.04093675687909126, + -0.04538596421480179, + 0.03617676720023155, + -0.0005311266286298633, + 0.05647272616624832, + -0.018468091264367104, + 0.06316318362951279, + 0.0014993126969784498, + -0.005684667266905308, + 0.004888508003205061, + -0.05067067965865135, + -0.041313301771879196, + -0.03083602339029312, + 0.0728541761636734, + 0.00069144502049312, + -0.08118445426225662, + -0.15011070668697357, + -0.0188529621809721, + -0.023829929530620575, + 0.04745561257004738, + 0.0930761769413948, + -0.032023653388023376, + -0.03341088071465492, + 0.0726780965924263, + 0.06412792205810547, + -0.009591187350451946, + 0.0064836288802325726, + 0.07800757884979248, + 0.0009485256159678102, + -0.0015483875758945942, + 0.07180902361869812 + ], + "file-doc-bold||documents,word,microsoft": [ + 0.0035899761132895947, + 0.03793199732899666, + -0.013260134495794773, + 0.08547469228506088, + 0.07028807699680328, + -0.006426908541470766, + -0.003481578081846237, + -0.013146039098501205, + 0.05675690621137619, + 0.0835753008723259, + -0.04173542931675911, + 0.09039505571126938, + 0.07778388261795044, + -0.021330630406737328, + 0.020494364202022552, + 0.03409319743514061, + -0.05481792241334915, + 0.0409255251288414, + -0.024159567430615425, + 0.049540214240550995, + 0.008116629905998707, + 0.12104883790016174, + 0.047510698437690735, + -0.031104352325201035, + 0.06712331622838974, + 0.012032865546643734, + -0.042254745960235596, + -0.05120764300227165, + -0.024985743686556816, + -0.03558916598558426, + 0.032218653708696365, + -0.017862355336546898, + 0.1132136657834053, + 0.04749899357557297, + 0.0879422128200531, + 0.04163863882422447, + 0.023554617539048195, + -0.05006688833236694, + 0.0011675151763483882, + 0.06414580345153809, + 0.018776198849081993, + -0.05245624855160713, + -0.04086114838719368, + -0.005492343567311764, + -0.03162321820855141, + -0.07522709667682648, + -0.04300597682595253, + 0.00979672186076641, + -0.0032946947030723095, + 0.043052610009908676, + -0.06681680679321289, + -0.1034405380487442, + -0.0858084186911583, + 0.024304131045937538, + 0.03867049887776375, + 0.003964024595916271, + -0.05115833878517151, + 0.03066099062561989, + -0.003939913585782051, + -0.07070451974868774, + -0.002355762291699648, + 0.028550902381539345, + -0.002265025395900011, + 0.015680110082030296, + 0.019893459975719452, + 0.10456044226884842, + -0.01696847565472126, + 0.06139284372329712, + -0.04042220860719681, + -0.02946326695382595, + 0.014871370047330856, + -0.003491668263450265, + 0.04592391848564148, + -0.08141498267650604, + -0.003390086116269231, + 0.04253438487648964, + 0.03935578837990761, + 0.035849105566740036, + -0.03190254792571068, + -0.0739453062415123, + -0.013049415312707424, + -0.05365072563290596, + 0.01468160841614008, + 0.018596405163407326, + 0.07722063362598419, + 0.03815683722496033, + -0.04080042988061905, + -0.11268478631973267, + -0.05052991956472397, + -0.0038984378334134817, + -0.045517224818468094, + -0.07789210975170135, + 0.00897748302668333, + 0.04366090148687363, + -0.10743305832147598, + -0.01889229752123356, + 0.08616790920495987, + 0.03136221691966057, + 0.03598342090845108, + 0.013675772584974766, + -0.005696979817003012, + 0.024408746510744095, + 0.06632305681705475, + -0.03143579885363579, + -0.0067080045118927956, + 0.0012203752994537354, + -0.0200913455337286, + -0.056550830602645874, + 0.010098767466843128, + -0.05733868479728699, + 0.02869698964059353, + -0.12352600693702698, + -0.07635661959648132, + -0.0911460742354393, + -0.05966665968298912, + -0.007490985095500946, + -0.054851241409778595, + -0.017200099304318428, + 0.050798654556274414, + 0.06904397904872894, + -0.0018578307935968041, + -0.02767878584563732, + -0.009155729785561562, + -0.04008649289608002, + -0.0065162647515535355, + 0.009711901657283306, + 0.08733532577753067, + -2.294711909598958e-33, + 0.014850343577563763, + -0.02450069785118103, + -0.07444758713245392, + 0.10271589457988739, + 0.040535103529691696, + 0.012755672447383404, + -0.04821189492940903, + -0.09086916595697403, + -0.1430196762084961, + -0.0020667274948209524, + 0.05088305100798607, + 0.04184037074446678, + -0.014223664999008179, + 0.017814189195632935, + -0.025791067630052567, + -0.018424293026328087, + -0.019665395841002464, + -0.029821567237377167, + -0.07779718190431595, + 0.012523322366178036, + -0.05145644769072533, + 0.07887053489685059, + -0.07508838921785355, + -0.01990395225584507, + -0.07694920152425766, + -0.008926435373723507, + 0.08074823766946793, + -0.08327943831682205, + -0.06796775013208389, + 0.0015727744903415442, + 0.017754623666405678, + 0.0023589949123561382, + 0.07453048974275589, + 0.03378509357571602, + -0.1054193452000618, + 0.03155031055212021, + -0.08848293125629425, + 0.01651572994887829, + 0.03438248485326767, + 0.03712770715355873, + -0.10606547445058823, + 0.0073486147448420525, + 0.09023932367563248, + -0.05181489139795303, + 0.04555113986134529, + 0.12980309128761292, + -0.00690529914572835, + -0.07858281582593918, + 0.013186134397983551, + -0.016771536320447922, + 0.029603296890854836, + 0.026657089591026306, + -0.001955026062205434, + 0.08367267996072769, + 0.040391914546489716, + -0.03493446111679077, + -0.015184196643531322, + 0.08534129709005356, + 0.0394928976893425, + 0.00654619513079524, + 0.06831181049346924, + 0.004046017769724131, + 0.016727296635508537, + -0.029980337247252464, + -0.03063555620610714, + 0.02428196370601654, + 0.03063807636499405, + 0.09691470116376877, + 0.04643726348876953, + 0.028520779684185982, + 0.02102326974272728, + 0.04370041936635971, + -0.01653902791440487, + 0.029218824580311775, + 0.029887674376368523, + 0.0055634924210608006, + 0.035631075501441956, + -0.06324822455644608, + 0.0047310288064181805, + -0.10051087290048599, + -0.112946055829525, + 0.002048351801931858, + -0.015977337956428528, + 0.017455726861953735, + -0.05027996003627777, + 0.05320553481578827, + -0.032770320773124695, + -0.04651720076799393, + 0.011525721289217472, + -0.03575924411416054, + 0.02442716620862484, + 0.020169904455542564, + -0.033828821033239365, + -0.10138513892889023, + -0.02080990932881832, + 1.3609087252384592e-34, + 0.11259893327951431, + -0.02963789366185665, + -0.07849442213773727, + 0.030014434829354286, + -0.056435782462358475, + 0.07732982933521271, + 0.052319373935461044, + 0.04186907038092613, + 0.008044195361435413, + 0.04932016134262085, + 0.06511058658361435, + 0.01937350630760193, + -0.05133780092000961, + -0.02198040671646595, + -0.010957046411931515, + -0.023303203284740448, + 0.031190769746899605, + 0.047141414135694504, + -0.009671040810644627, + 0.007540007587522268, + -0.04986096918582916, + -0.08679774403572083, + 0.019444581121206284, + 0.10927228629589081, + 0.06023723632097244, + -0.02168801799416542, + -0.04608219116926193, + -0.033105067908763885, + -0.035056885331869125, + 0.0016259513795375824, + -0.00927373394370079, + 0.04394541680812836, + -0.060438599437475204, + 0.02649194374680519, + -0.02062237448990345, + -0.0075043304823338985, + -0.022321823984384537, + 0.010390324518084526, + 0.03756121173501015, + 0.03596216440200806, + -0.014028678648173809, + 0.019788211211562157, + -0.008293284103274345, + 0.041536785662174225, + -0.08254068344831467, + 0.014328720979392529, + 0.019064927473664284, + -0.05692896619439125, + -0.008823899552226067, + 0.07910275459289551, + 0.08187519013881683, + -0.0246012844145298, + 0.020861197263002396, + -0.026560453698039055, + -0.08682803064584732, + -0.058280739933252335, + -0.0004597946535795927, + -0.0460490807890892, + -0.09312916547060013, + 0.07013936340808868, + 0.004213487263768911, + 0.06962673366069794, + -0.02591582015156746, + 0.014671762473881245, + 0.011559278704226017, + 0.010237468406558037, + -0.018656408414244652, + -0.04515358805656433, + 0.018281904980540276, + 0.013543091714382172, + 0.00875449925661087, + -0.007322178687900305, + -0.0014557227259501815, + 0.05242351070046425, + 0.04997992888092995, + -0.02337392047047615, + 0.02803950197994709, + -0.017947359010577202, + -0.028248896822333336, + -0.01933428831398487, + 0.06520802527666092, + 0.034800153225660324, + 0.000975988747086376, + 0.040521107614040375, + -0.042206261307001114, + 0.04243150353431702, + -0.008329248987138271, + 0.02019520290195942, + -0.041917093098163605, + -0.0262029729783535, + -0.04220786690711975, + 0.01600317284464836, + 0.07933614403009415, + -0.043438516557216644, + -0.04250979796051979, + -1.5827025023895658e-08, + -0.09006861597299576, + -0.05449462682008743, + -0.019021788612008095, + -0.04319841042160988, + -0.034868933260440826, + -0.009112093597650528, + -0.040220726281404495, + 0.0017181462608277798, + -0.03378292918205261, + -0.054786644876003265, + 0.06882259994745255, + -0.058053307235240936, + -0.08392718434333801, + -0.10313943028450012, + 0.0057197390124201775, + -0.001891394262202084, + 0.03666960820555687, + 0.016453884541988373, + -0.01955493353307247, + -0.03867802023887634, + -0.017285697162151337, + 0.058197684586048126, + -0.004473698325455189, + 0.04099953547120094, + 0.06702051311731339, + 0.057857636362314224, + -0.07643754780292511, + 0.0171621423214674, + 0.08936042338609695, + 0.028441529721021652, + 0.03274284675717354, + 0.015734871849417686, + -0.04266799986362457, + 0.06162915378808975, + -0.05471473187208176, + 0.03134649619460106, + 0.044924426823854446, + 0.05180736631155014, + -0.037723444402217865, + 0.09401096403598785, + -0.06162375956773758, + 0.013888491317629814, + -0.07251632213592529, + -0.041159916669130325, + -0.003440462751314044, + -0.03499589487910271, + 0.04439351707696915, + -0.01990312896668911, + -0.07126250118017197, + -0.11863969266414642, + -0.0021666670218110085, + -0.00674034096300602, + 0.10412707179784775, + 0.10448165982961655, + -0.09778021275997162, + -0.07535069435834885, + 0.07779699563980103, + 0.13318409025669098, + -0.031169958412647247, + -0.034283384680747986, + 0.061105117201805115, + 0.0022558746859431267, + 0.056586332619190216, + 0.043340492993593216 + ], + "file-html-bold||*updated*,documents,code": [ + -0.017186786979436874, + 0.028028909116983414, + -0.03725312277674675, + 0.08554740995168686, + 0.1001775935292244, + -0.051523711532354355, + -0.036393437534570694, + -0.05086153745651245, + 0.061292633414268494, + 0.05753509700298309, + -0.03754333034157753, + 0.0974385067820549, + 0.04142013564705849, + -0.0885409489274025, + 0.0021188717801123857, + 0.052138134837150574, + -0.06074128299951553, + 0.04675254598259926, + 0.012669001705944538, + 0.011056468822062016, + -0.04524892196059227, + 0.07137151062488556, + 0.03510066866874695, + 0.025914262980222702, + 0.057956308126449585, + 0.02652926556766033, + 0.015342305414378643, + -0.03516692668199539, + -0.0111421262845397, + -0.03977436199784279, + 0.0479048453271389, + -0.04857287183403969, + 0.11107847839593887, + 0.016922472044825554, + 0.06494832038879395, + 0.0709226131439209, + -0.012255731038749218, + -0.06660350412130356, + -0.002099173841997981, + 0.087008535861969, + 0.009089161641895771, + -0.020008785650134087, + -0.008369271643459797, + 0.002390619833022356, + -0.06007060781121254, + -0.08551979809999466, + -0.050936710089445114, + -0.05119319260120392, + -0.03763130307197571, + -0.053045764565467834, + -0.041232816874980927, + -0.10021580010652542, + -0.08444906026124954, + -0.0661783292889595, + 0.004548621363937855, + -0.0390499085187912, + -0.00219999672845006, + -0.036374516785144806, + 0.03969482704997063, + -0.05671602487564087, + 0.03996272012591362, + 0.02887905202805996, + 0.05487853288650513, + -0.012055564671754837, + 0.03097035177052021, + 0.06566338986158371, + -0.01123757939785719, + 0.02201288565993309, + -0.0540933758020401, + 0.010879037901759148, + 0.03924944996833801, + 0.009855861775577068, + 0.06580144912004471, + -0.05850975215435028, + 0.015019800513982773, + -0.021519040688872337, + 0.05543680489063263, + 0.0775032788515091, + -0.006932500284165144, + -0.07839680463075638, + 0.002218422247096896, + -0.11353996396064758, + 0.020592693239450455, + -0.018463293090462685, + 0.09377419948577881, + 0.027201425284147263, + -0.038030464202165604, + -0.060712628066539764, + -0.05701331049203873, + -0.03132777288556099, + -0.013889019377529621, + -0.029563507065176964, + 0.0018630956765264273, + 0.016849545761942863, + -0.13039307296276093, + 0.05921507626771927, + 0.07761652022600174, + 0.05066850781440735, + -0.020144479349255562, + 0.07576671242713928, + 0.011145313270390034, + 0.015098409727215767, + -0.007886301726102829, + 0.003909758757799864, + 0.018774593248963356, + 0.04808099940419197, + 0.0356583334505558, + 0.08273468166589737, + 0.040315501391887665, + -0.0652557760477066, + -0.008855651132762432, + -0.1290687769651413, + -0.11926983296871185, + -0.07151283323764801, + -0.11036220192909241, + -0.01397015806287527, + 0.038428276777267456, + 0.0034232561010867357, + 0.025530770421028137, + 0.13387124240398407, + 0.09888514876365662, + -0.016835346817970276, + -0.0538630336523056, + -0.03625626862049103, + 0.020102107897400856, + -0.014272415079176426, + 0.10380769520998001, + -2.8127776166032797e-33, + 0.023180179297924042, + 0.0038340254686772823, + -0.05571490898728371, + 0.08024171739816666, + 0.04749152064323425, + -0.02559887245297432, + -0.03443080186843872, + -0.1246790960431099, + -0.0734587162733078, + 0.014810455031692982, + 0.11277887970209122, + 0.04808010160923004, + -0.01880698651075363, + 0.04968586564064026, + -0.05015234276652336, + -0.03543229401111603, + -0.04865258187055588, + -0.012656417675316334, + 0.0017070370959118009, + 0.0021288669668138027, + -0.09289665520191193, + 0.009507461450994015, + -0.04573152959346771, + 0.013924228958785534, + -0.045731768012046814, + 0.022120533511042595, + 0.015026525594294071, + -0.0033932344522327185, + -0.0807778537273407, + -0.005201464518904686, + 0.05982714146375656, + 0.01654563844203949, + 0.04664357006549835, + 0.05351470783352852, + -0.08771061897277832, + 0.02074679359793663, + -0.06119323894381523, + -0.046028390526771545, + 0.0010506411781534553, + 0.036445025354623795, + 0.00026077573420479894, + -0.01663360185921192, + 0.02204526960849762, + -0.049118902534246445, + 0.022082451730966568, + 0.09614503383636475, + -0.09288176894187927, + -0.05753438174724579, + -0.003518895013257861, + -0.040269896388053894, + -0.024051442742347717, + 0.07916606962680817, + 0.008383185602724552, + 0.005909111350774765, + -0.02824215404689312, + 0.011071610264480114, + -0.05016905441880226, + 0.018802935257554054, + 0.07325088977813721, + -0.01365656778216362, + 0.09847555309534073, + -0.027804536744952202, + 0.011774182319641113, + -0.0509820394217968, + -0.019791577011346817, + 0.04580385237932205, + 0.03499877080321312, + 0.07456915825605392, + 0.07457076013088226, + -0.008404651656746864, + -0.00491406349465251, + 0.050815608352422714, + 0.031121810898184776, + 0.057635724544525146, + 0.004810716491192579, + -0.010004891082644463, + -0.005860355217009783, + -0.015328376553952694, + 0.053765904158353806, + -0.08308038860559464, + -0.027771273627877235, + -0.0314125157892704, + -0.00831006933003664, + 0.0692170187830925, + 0.023654265329241753, + 0.03586966544389725, + -0.037445686757564545, + -0.012134892866015434, + 0.0037400207947939634, + 0.06019601970911026, + 0.013628175482153893, + -0.004509816411882639, + -0.06408767402172089, + -0.16643643379211426, + -0.01606246829032898, + -2.9839166452780465e-34, + 0.10777172446250916, + 0.049185771495103836, + -0.11036806553602219, + 0.013405224308371544, + -0.042279500514268875, + 0.06786548346281052, + -0.011939631775021553, + 0.0770130529999733, + 0.02998548001050949, + 0.008666184730827808, + 0.09673047065734863, + -0.013617279008030891, + -0.09970953315496445, + -0.04644254595041275, + 0.010459012351930141, + 0.04328829050064087, + -0.026784146204590797, + -0.009386951103806496, + -0.0438353568315506, + 0.012310459278523922, + -0.025223886594176292, + -0.06805624067783356, + 0.027150411158800125, + 0.0957871675491333, + 0.029554016888141632, + -0.024631433188915253, + -0.044219255447387695, + 0.0177309513092041, + -0.029220592230558395, + -0.04250173643231392, + -0.0215888824313879, + 0.02873096987605095, + -0.03582122176885605, + 0.03369571641087532, + 0.04887615144252777, + -0.0015227036783471704, + 0.0157952681183815, + -0.020965784788131714, + 0.03279877454042435, + 0.08508940041065216, + 0.014906751923263073, + 0.03759698197245598, + 0.026621229946613312, + 0.03430670499801636, + -0.023402882739901543, + 0.017461884766817093, + 0.013998647220432758, + -0.03812984749674797, + -0.00358875235542655, + -0.0002604895562399179, + 0.047113239765167236, + -0.05184220150113106, + 0.037414684891700745, + -0.008568290621042252, + -0.03149418160319328, + -0.02065929025411606, + -0.02798481285572052, + 0.007831748574972153, + -0.07767322659492493, + 0.0828620195388794, + -0.01883327029645443, + 0.0693763792514801, + -0.023827405646443367, + -0.02254650369286537, + -0.03442106768488884, + -0.034788213670253754, + -0.029219958931207657, + -0.07582144439220428, + 0.035378873348236084, + -0.00539687555283308, + 0.023501954972743988, + -0.04339226335287094, + -0.06999258697032928, + 0.0263625830411911, + 0.0009098723530769348, + -0.04513639956712723, + 0.05931030958890915, + -0.008046203292906284, + 0.0014106063172221184, + -0.03012945130467415, + 0.05332811176776886, + 0.022824076935648918, + -0.030577654018998146, + 0.0005120817222632468, + -0.0013896640157327056, + 0.027066567912697792, + -0.02713586762547493, + 0.01663496345281601, + -0.020521752536296844, + -0.09669651091098785, + -0.09068062901496887, + 0.015806451439857483, + 0.02751750499010086, + -0.06707591563463211, + -0.05002560839056969, + -1.888537326522055e-08, + -0.06458812952041626, + -0.018450595438480377, + -0.07059969753026962, + -0.025234218686819077, + 0.011659575626254082, + -0.006541680544614792, + -0.0362798348069191, + -0.050998467952013016, + -0.06617371737957001, + -0.07931073755025864, + 0.06541433185338974, + -0.0011966589372605085, + -0.0005866257124580443, + -0.05158057063817978, + -0.04539558291435242, + 0.035679034888744354, + -0.0400337390601635, + 0.0368015393614769, + -0.00023605224851053208, + 0.0012980988249182701, + -0.033455654978752136, + 0.09284301847219467, + 0.021369693800807, + 0.019088976085186005, + 0.1080295592546463, + 0.03450268134474754, + -0.04811634495854378, + 0.004018150735646486, + 0.040064580738544464, + 0.03184919059276581, + 0.056215543299913406, + -0.008753594942390919, + -0.014031731523573399, + 0.05232078954577446, + -0.028378525748848915, + -0.05857520550489426, + -0.0003642937808763236, + -0.018799422308802605, + -0.0354367196559906, + 0.08338987082242966, + 0.005605706013739109, + 0.02133646234869957, + -0.057036206126213074, + -0.03974662348628044, + -0.020223276689648628, + -0.007930758409202099, + 0.004417473915964365, + -0.0780932754278183, + -0.09291908890008926, + -0.1095370203256607, + 0.016879044473171234, + -0.03054989129304886, + 0.009882311336696148, + 0.12617258727550507, + -0.06476856023073196, + -0.07284616678953171, + 0.07814332842826843, + 0.1312992423772812, + -0.003139781765639782, + -0.017708372324705124, + 0.073463074862957, + 0.0031768891494721174, + 0.0645417720079422, + 0.01887340471148491 + ], + "file-image-bold||documents,pictures,photograph": [ + 0.000489066238515079, + 0.05511503666639328, + -0.04901522770524025, + 0.07290589064359665, + 0.09771352261304855, + -0.052407946437597275, + 0.016568215563893318, + 0.003651739563792944, + 0.058992598205804825, + 0.02023496851325035, + -0.012506156228482723, + 0.06148817017674446, + 0.10927437990903854, + 0.02231939323246479, + 0.016394024714827538, + 0.017848586663603783, + -0.06715723127126694, + 0.013370946049690247, + -0.03248974308371544, + 0.026708856225013733, + -0.054049428552389145, + 0.027595898136496544, + 0.11266116797924042, + -0.0823805034160614, + 0.05082445964217186, + -0.005697158630937338, + 0.039195265620946884, + -0.02820250578224659, + -0.029151152819395065, + -0.08130475133657455, + 0.016278492286801338, + -0.010854738764464855, + 0.12423688918352127, + 0.06896756589412689, + 0.06248980388045311, + 0.09469687938690186, + -0.009282796643674374, + -0.02490212954580784, + -0.01875843107700348, + 0.06570471078157425, + 0.025852227583527565, + -0.030503662303090096, + -0.009795339778065681, + -0.02709784172475338, + -0.015285870060324669, + -0.03521515801548958, + -0.007603521924465895, + -0.019586604088544846, + 0.047300226986408234, + -0.01885151118040085, + -0.07936981320381165, + -0.06156589835882187, + -0.13724638521671295, + 0.01837591640651226, + 0.04442186653614044, + -0.0319211408495903, + -0.025722170248627663, + -0.012379778549075127, + 0.05123860388994217, + -0.012079169973731041, + 0.007020533084869385, + 0.030011741444468498, + -0.0023204097524285316, + 0.016887202858924866, + 0.09524329006671906, + 0.09309457987546921, + 0.00818299874663353, + 0.015816155821084976, + -0.0355253629386425, + -0.047031525522470474, + 0.04284147545695305, + 0.004057681653648615, + 0.02715039812028408, + -0.054461635649204254, + -0.030048998072743416, + -0.0059267254546284676, + 0.011715376749634743, + 0.03810546547174454, + 0.01659444533288479, + -0.08534440398216248, + 0.006801273208111525, + -0.07960358262062073, + 0.03808648884296417, + -0.004110438749194145, + 0.10646124929189682, + 0.03127707540988922, + -0.0824313685297966, + -0.08714449405670166, + -0.06925566494464874, + -0.027540626004338264, + -0.07685064524412155, + -0.0351630374789238, + -0.035155221819877625, + 0.07120278477668762, + -0.0819842666387558, + -0.01427649985998869, + 0.08975478261709213, + -0.0009441822185181081, + -0.018310988321900368, + 0.053053051233291626, + 0.030654555186629295, + 0.035045281052589417, + 0.0610671192407608, + -0.006815159693360329, + 0.016154563054442406, + 0.02645151875913143, + 0.03356499597430229, + -0.029057273641228676, + 0.018083449453115463, + -0.05869803577661514, + -0.0023696667049080133, + -0.12256373465061188, + -0.07972702383995056, + -0.08658076077699661, + -0.03681798279285431, + -0.042248036712408066, + -0.039698075503110886, + -0.003835425479337573, + 0.052246175706386566, + -0.0008790795691311359, + 0.02867480367422104, + -0.022029807791113853, + -0.0658743754029274, + -0.04179855063557625, + 0.005877399351447821, + -0.03371863812208176, + 0.034570593386888504, + -1.3476595493311237e-33, + 0.02513636276125908, + -0.003799641039222479, + -0.016313405707478523, + 0.10260452330112457, + 0.058606117963790894, + -0.009108409285545349, + -0.07409501075744629, + -0.08093546330928802, + -0.1445954591035843, + -0.005367339123040438, + 0.049269694834947586, + 0.024819504469633102, + -0.03661029785871506, + 0.09936268627643585, + -0.0044991932809352875, + -0.002940043108537793, + -0.0456034280359745, + -0.03068479895591736, + -0.03216852247714996, + 0.026486476883292198, + -0.06957194209098816, + 0.005388767458498478, + -0.05592190474271774, + 0.00019337187404744327, + -0.057508595287799835, + -0.055198121815919876, + 0.10231716930866241, + -0.08688060939311981, + -0.026404963806271553, + -0.004310648888349533, + -0.007160315755754709, + 0.009329418651759624, + 0.0884830504655838, + 0.02527613751590252, + -0.059617605060338974, + 0.017714986577630043, + -0.11461909115314484, + 0.0383530929684639, + 0.014931081794202328, + 0.06389787793159485, + -0.05080205202102661, + 0.023559199646115303, + 0.012537187896668911, + -0.01718379370868206, + 0.010019536130130291, + 0.16582287847995758, + -0.022024136036634445, + -0.04121809080243111, + -0.013594632036983967, + 0.01766917109489441, + 0.00895940512418747, + -0.013874760828912258, + -0.006476846989244223, + 0.024587640538811684, + -0.01643696241080761, + -0.03883957862854004, + -0.0011015486670657992, + 0.05757833272218704, + 0.009662235155701637, + -0.04318174719810486, + 0.08529526740312576, + 0.027528733015060425, + -0.014665011316537857, + -0.003929637372493744, + -0.01732996106147766, + 0.0665731355547905, + 0.01626896858215332, + 0.0682680755853653, + 0.018594106659293175, + 0.008908855728805065, + -0.019299635663628578, + 0.07760856300592422, + 0.01080081332474947, + -0.0397023931145668, + 0.01511656865477562, + 0.04369644820690155, + 0.036361999809741974, + -0.029477493837475777, + 0.00126244081184268, + -0.05416734516620636, + -0.14059513807296753, + 0.015239795669913292, + 0.006831343751400709, + 0.029496215283870697, + -0.0678764134645462, + 0.06577881425619125, + 0.001811046851798892, + -0.06471562385559082, + -0.001598590170033276, + -0.00011663370969472453, + -0.024740001186728477, + 0.051151156425476074, + -0.04218416288495064, + -0.06856878101825714, + -0.058163102716207504, + 5.940203204004519e-34, + 0.12921813130378723, + 0.043997932225465775, + -0.06532824784517288, + 0.003542199730873108, + -0.038661494851112366, + 0.029955917969346046, + 0.0603891983628273, + 0.05631457641720772, + -0.005374164320528507, + 0.017881380394101143, + 0.07728192210197449, + -0.019773676991462708, + -0.08125121891498566, + -0.0831659659743309, + -0.04555603489279747, + -0.05810621380805969, + 0.028880761936306953, + 0.0016971664736047387, + -0.08973187953233719, + 0.009358301758766174, + -0.06281806528568268, + -0.01466784905642271, + 0.04140247404575348, + 0.10377742350101471, + 0.005731845740228891, + 0.06121077388525009, + 0.012754004448652267, + -0.030782833695411682, + -0.038403987884521484, + -0.03141173720359802, + -0.017002686858177185, + 0.0009066041093319654, + 0.019944194704294205, + 0.009312689304351807, + -0.007500325329601765, + 0.02798878587782383, + 0.025853145867586136, + -0.022050024941563606, + 0.02446751855313778, + 0.061764612793922424, + -0.015839647501707077, + 0.04029431194067001, + -0.026778092607855797, + 0.027342678979039192, + -0.03887343406677246, + -0.05261946842074394, + 0.021684760227799416, + -0.03823203220963478, + 0.032381780445575714, + 0.11463288217782974, + 0.04408182203769684, + -0.05275294929742813, + 0.011295627802610397, + 0.01544936466962099, + -0.057590994983911514, + -0.0552985817193985, + -0.026817908510565758, + -0.008827421814203262, + -0.013138316571712494, + 0.052683886140584946, + 0.000645741238258779, + 0.03077029623091221, + -0.0728166252374649, + -0.022276267409324646, + -0.00974390096962452, + -0.03533041104674339, + -0.04756612330675125, + -0.06982893496751785, + 0.013037503696978092, + 0.0656648725271225, + 0.04020078480243683, + -0.01521468535065651, + 0.029276886954903603, + 0.0941615179181099, + 0.0700460895895958, + -0.03348422050476074, + 0.05697949603199959, + 0.038903240114450455, + 0.02048078365623951, + -0.025593619793653488, + 0.01815297268331051, + -0.008060614578425884, + -0.025579703971743584, + 0.07327594608068466, + 0.0036064693704247475, + 0.07283823192119598, + -0.036259543150663376, + -0.06373795121908188, + 0.0393851138651371, + -0.05566450580954552, + -0.06272580474615097, + 0.026357874274253845, + 0.07130835950374603, + -0.027962520718574524, + -0.00878576934337616, + -1.6398727709088234e-08, + -0.04985063895583153, + -0.04806767404079437, + -0.022535379976034164, + -0.043596409261226654, + -0.007046614773571491, + -0.06099754571914673, + -0.0049475631676614285, + -0.026248931884765625, + -0.0042523969896137714, + -0.07094172388315201, + 0.08032949268817902, + -0.030433662235736847, + -0.0813666433095932, + -0.10082486271858215, + -0.0045509678311645985, + 0.016249606385827065, + 0.04797734320163727, + 0.06105770543217659, + -0.003542226040735841, + -0.04205505922436714, + -0.028519775718450546, + 0.0012693239841610193, + -0.010304439812898636, + 0.03019813448190689, + 0.037920672446489334, + 0.019328314810991287, + -0.07035523653030396, + -0.013223864138126373, + 0.08086303621530533, + 0.019091494381427765, + 0.039699673652648926, + 0.034030988812446594, + 0.04796040803194046, + 0.02126939967274666, + -0.03767149895429611, + -0.002719912678003311, + 0.004996520932763815, + -0.024100005626678467, + -0.0846019759774208, + 0.05787672847509384, + -0.027721835300326347, + -0.0029417434707283974, + -0.0012547308579087257, + -0.04989092797040939, + 0.01668592169880867, + -0.006061618681997061, + 0.13214370608329773, + -0.0005303832003846765, + -0.09061428904533386, + -0.0407881885766983, + -0.003172422293573618, + -0.029066938906908035, + 0.034867167472839355, + 0.1503336876630783, + -0.055708374828100204, + -0.14608202874660492, + 0.11005060374736786, + 0.10672720521688461, + 0.005853575188666582, + 0.053351376205682755, + 0.08266493678092957, + -0.02882283926010132, + 0.004229461774230003, + 0.003922717645764351 + ], + "file-ini-bold||*new*,documents": [ + -0.06851080060005188, + 0.037034325301647186, + -0.031018387526273727, + 0.0568091943860054, + 0.05367196723818779, + -0.07048768550157547, + 0.016518304124474525, + -0.017972977831959724, + 0.02813688851892948, + 0.05890235677361488, + -0.0035962709225714207, + 0.046826113015413284, + 0.0466998815536499, + -0.044120267033576965, + 0.009614843875169754, + 0.049829527735710144, + -0.03233063220977783, + -0.004563342314213514, + -0.020300349220633507, + 0.029663288965821266, + 0.0021835460793226957, + 0.06497602164745331, + -0.0028046444058418274, + -0.009745459072291851, + 0.016384558752179146, + -0.0392601452767849, + -0.02235393598675728, + -0.05434119701385498, + 0.00441694213077426, + -0.04901723191142082, + 0.05244326591491699, + 0.06695178151130676, + 0.10496126115322113, + 0.041605059057474136, + 0.12569046020507812, + 0.05927686393260956, + 0.060766320675611496, + -0.06254193931818008, + 0.03396240994334221, + 0.024457072839140892, + 0.043887168169021606, + -0.005784857086837292, + -0.07562976330518723, + -0.0049710581079125404, + 0.001478612539358437, + -0.056786756962537766, + -0.008805601857602596, + 0.004102913197129965, + 0.06464135646820068, + 0.00441156467422843, + -0.08368094265460968, + -0.038221292197704315, + -0.054100152105093, + -0.047724515199661255, + 0.030190767720341682, + 0.009782994166016579, + -0.03847372159361839, + -0.010529888793826103, + -0.034782059490680695, + -0.032242488116025925, + 0.04962194710969925, + 0.018740635365247726, + 0.0609518438577652, + -0.009400403127074242, + 0.001285201869904995, + 0.07148279249668121, + -0.01397453248500824, + 0.045738834887742996, + -0.040552765130996704, + 0.003236585296690464, + 0.027432609349489212, + 0.03542634844779968, + 0.03048388846218586, + 0.05113401263952255, + -0.0030515107791870832, + -0.005373619496822357, + 0.013799106702208519, + 0.08484142273664474, + -0.037376709282398224, + -0.05768883600831032, + 0.02262795902788639, + -0.07949148863554001, + 0.023092132061719894, + -0.05012541636824608, + 0.06562169641256332, + 0.036482688039541245, + -0.039328936487436295, + -0.08059202134609222, + -0.05401770770549774, + 0.014435348100960255, + -0.05821274593472481, + -0.02451220154762268, + -0.03595425561070442, + 0.04566603899002075, + -0.08811131119728088, + -0.007748826872557402, + 0.10375954210758209, + 0.059433382004499435, + 0.06013920158147812, + 0.08104951679706573, + -0.03313193470239639, + 0.010519120842218399, + 0.044639840722084045, + 0.037120189517736435, + -0.047927163541316986, + -0.008097400888800621, + 0.0068381051532924175, + -0.046128299087285995, + -0.024068068712949753, + -0.029172752052545547, + 0.05210709944367409, + -0.15549173951148987, + -0.0190312210470438, + -0.08642971515655518, + -0.048270951956510544, + 0.020045937970280647, + -0.03691107779741287, + 0.035660240799188614, + 0.05211888253688812, + 0.12615852057933807, + 0.059297509491443634, + -0.06158590689301491, + -0.046209704130887985, + 0.00706468103453517, + -0.03518765792250633, + 0.0038131859619170427, + 0.019597921520471573, + -2.6706388600827642e-33, + 0.02271425537765026, + 0.04344159737229347, + -0.07478837668895721, + 0.12766201794147491, + -0.029070284217596054, + 0.0023920799139887094, + -0.03914456441998482, + -0.035185664892196655, + -0.11950229108333588, + -0.02699206955730915, + 0.052488621324300766, + 0.043039098381996155, + -0.008117198944091797, + 0.038058146834373474, + 0.004938619676977396, + -0.04540354385972023, + -0.004405454266816378, + -0.027197787538170815, + -0.03896523639559746, + -0.03393378481268883, + -0.08410022407770157, + 0.06629808992147446, + -0.04013415053486824, + -0.030239075422286987, + -0.029187723994255066, + -0.003741794265806675, + 0.10609269142150879, + -0.12466149032115936, + -0.06740976125001907, + -0.01054221298545599, + 0.03469983860850334, + -0.015962544828653336, + 0.07557438313961029, + 0.05060892924666405, + -0.11413439363241196, + 0.06043711304664612, + -0.04742727428674698, + -0.005589357577264309, + -0.01657720096409321, + 0.0485679917037487, + -0.05516325682401657, + 0.05923460051417351, + 0.013752887025475502, + -0.042081959545612335, + -0.0266262199729681, + 0.13751858472824097, + -0.04339990392327309, + -0.07025271654129028, + 0.017553498968482018, + -0.054542526602745056, + -0.01845378801226616, + 0.05956224352121353, + -0.051682278513908386, + 0.054980017244815826, + 0.010542982257902622, + 0.0011614031391218305, + -0.013457374647259712, + 0.025523556396365166, + 0.10200139135122299, + -0.060714513063430786, + 0.055872995406389236, + 0.016938267275691032, + 0.01314215175807476, + 0.06242738664150238, + -0.03989395871758461, + 0.02269141748547554, + 0.025030484423041344, + 0.07183968275785446, + 0.048801809549331665, + -0.0012653141748160124, + -0.049937654286623, + 0.033826909959316254, + -0.060013290494680405, + 0.01424416434019804, + 0.0366833470761776, + 0.023394323885440826, + 0.03761058300733566, + -0.0328848659992218, + 0.008745526894927025, + -0.1096036285161972, + -0.057620834559202194, + 0.007369928061962128, + -0.01642685756087303, + 0.059397175908088684, + 0.005428375210613012, + 0.0639624148607254, + 0.009135202504694462, + -0.021086741238832474, + 0.012043922208249569, + -0.0444689504802227, + 0.03306296095252037, + -0.024132393300533295, + -0.060920920222997665, + -0.11366190016269684, + 0.03570032864809036, + -1.8093108028810876e-34, + 0.11746814101934433, + -0.020319078117609024, + -0.050403892993927, + -0.02050391212105751, + -0.07163704931735992, + 0.08310378342866898, + 0.0042609586380422115, + 0.08083891123533249, + 0.02765767090022564, + 0.007480931468307972, + 0.07465832680463791, + 0.008441934362053871, + -0.04162699729204178, + -0.017777690663933754, + 0.0211752038449049, + -0.019955474883317947, + -0.035835132002830505, + 0.032015543431043625, + -0.0525711290538311, + 0.017478112131357193, + 0.0035514908377081156, + -0.07154984772205353, + 0.03106137551367283, + 0.07313688099384308, + 0.034576453268527985, + -0.012856016866862774, + -0.0015271867159754038, + 0.007658345624804497, + -0.06927903741598129, + -0.042690884321928024, + -0.048638928681612015, + 0.010570662096142769, + -0.06839753687381744, + 0.05545760691165924, + 0.01761590503156185, + -0.00973252858966589, + -0.009582390077412128, + -0.05666254833340645, + 0.006185798440128565, + 0.07706163823604584, + -0.0037515584845095873, + 0.012829314917325974, + 0.0014034869382157922, + 0.03959148749709129, + -0.11583547294139862, + -0.027428776025772095, + 0.017152918502688408, + -0.03973623365163803, + -0.007813600823283195, + 0.028173938393592834, + 0.05929004028439522, + -0.05562135577201843, + 0.026550685986876488, + -0.07258180528879166, + -0.018966497853398323, + -0.025787370279431343, + 0.00785734225064516, + -0.014132455922663212, + -0.08707139641046524, + 0.06900151073932648, + -0.00625049602240324, + 0.04435797780752182, + -0.06998467445373535, + -0.026328125968575478, + -0.03691400587558746, + -0.032442688941955566, + -0.017212605103850365, + -0.042487166821956635, + 0.04610488936305046, + -0.01013307273387909, + 0.034982845187187195, + -0.07455272972583771, + -0.08757331222295761, + 0.07135321944952011, + 0.05803047493100166, + -0.02381061017513275, + 0.015053017996251583, + -0.04302724078297615, + -0.012202870100736618, + 0.013366790488362312, + -0.01842217892408371, + -0.014012208208441734, + -0.04676669463515282, + 0.04853326827287674, + 0.03792772442102432, + 0.045973341912031174, + -0.029833074659109116, + 0.01641499064862728, + -0.002017916878685355, + -0.011370300315320492, + -0.037554286420345306, + 0.08291380107402802, + 0.05307057499885559, + -0.0453963428735733, + -0.08975937962532043, + -1.925226200683028e-08, + -0.09607771784067154, + -0.06993827223777771, + -0.061236970126628876, + 0.015337050892412663, + -0.005526009015738964, + -0.06877872347831726, + -0.07776936143636703, + -0.02053425833582878, + -0.03722522035241127, + -0.08320307731628418, + 0.07978365570306778, + -0.018992023542523384, + -0.026675254106521606, + -0.06793996691703796, + -0.026440639048814774, + 0.030782412737607956, + 0.06548722833395004, + 0.018099134787917137, + -0.02855639159679413, + -0.031185703352093697, + 0.01189349964261055, + 0.11605444550514221, + 0.046186212450265884, + 0.02625006064772606, + 0.04005533456802368, + 0.03280217945575714, + -0.03433075547218323, + -0.037175409495830536, + 0.04029051959514618, + 0.06155954673886299, + 0.025577303022146225, + 0.0281436275690794, + -0.012153428979218006, + 0.05348244309425354, + -0.06806373596191406, + 0.041319724172353745, + 0.024548333138227463, + 0.0585591122508049, + -0.04225752130150795, + 0.045296330004930496, + -0.048751648515462875, + 0.012078971602022648, + -0.06568688899278641, + -0.06576340645551682, + -0.07941285520792007, + -0.03807855397462845, + -0.0026593918446451426, + -0.017204592004418373, + -0.036114297807216644, + -0.12041980028152466, + -0.04837331175804138, + 0.02072969637811184, + 0.05400155857205391, + 0.13817118108272552, + -0.059322480112314224, + -0.04920467361807823, + 0.06059281900525093, + 0.15653660893440247, + 0.027218176051974297, + -0.005599881988018751, + 0.08339525759220123, + -0.06303922086954117, + 0.06732429563999176, + 0.034672919660806656 + ], + "file-jpg-bold||documents,pictures,photograph,jpeg": [ + 0.0028802165761590004, + 0.05630508437752724, + -0.06196672469377518, + 0.09343517571687698, + 0.08740093559026718, + -0.04443392902612686, + 0.002506634686142206, + 0.03790092095732689, + 0.04852261021733284, + -0.04448680579662323, + -0.0027868966571986675, + 0.05963772162795067, + 0.11116815358400345, + 0.03107001632452011, + 0.020320376381278038, + -0.007093137130141258, + -0.06458545476198196, + 0.023134171962738037, + -0.04035664349794388, + 0.006927109323441982, + -0.03665437921881676, + 0.004647747613489628, + 0.12607668340206146, + -0.09859133511781693, + 0.0786074697971344, + 0.010918041691184044, + 0.03122631646692753, + -0.040826596319675446, + -0.03326944261789322, + -0.08192754536867142, + 0.0019234776264056563, + -0.012382728978991508, + 0.12820149958133698, + 0.07660235464572906, + 0.08336310088634491, + 0.0989290401339531, + 0.008765020407736301, + -0.012222088873386383, + -0.0025291943456977606, + 0.050550077110528946, + 0.018010200932621956, + -0.03576745465397835, + -0.0016008536331355572, + -0.006112802308052778, + -0.026060454547405243, + -0.030498480424284935, + -0.012732208706438541, + -0.010727508924901485, + 0.034728631377220154, + -0.030605290085077286, + -0.07603918761014938, + -0.02491474710404873, + -0.15267838537693024, + 0.04249567911028862, + 0.04466937854886055, + -0.03267335146665573, + -0.024188827723264694, + -0.0035993342753499746, + 0.030374038964509964, + -0.012687013484537601, + -0.02295556850731373, + 0.009065632708370686, + 0.0028067482635378838, + 0.029227769002318382, + 0.053188733756542206, + 0.06273885816335678, + 0.03005516529083252, + 0.021885214373469353, + -0.0018360147951170802, + -0.04642074182629585, + 0.03459837660193443, + 0.0025413294788450003, + -0.007347064092755318, + 0.0029342095367610455, + -0.047363538295030594, + -0.006712423637509346, + 0.0012054251274093986, + 0.04568207263946533, + 0.009973662905395031, + -0.08889338374137878, + 0.010865232907235622, + -0.07437985390424728, + 0.05704611912369728, + -0.0004679677658714354, + 0.13342221081256866, + 0.05266401544213295, + -0.06987008452415466, + -0.06851311773061752, + -0.058502696454524994, + -0.0017033376498147845, + -0.0628950446844101, + -0.033429574221372604, + -0.005983248818665743, + 0.08989696949720383, + -0.1307634711265564, + 0.012680893763899803, + 0.07131471484899521, + 0.011240272782742977, + 0.0022352051455527544, + 0.06628011167049408, + 0.03146881237626076, + 0.03502535820007324, + 0.07041151076555252, + 0.002207704819738865, + 0.020614687353372574, + 0.016040358692407608, + 0.02902589924633503, + -0.012401694431900978, + 0.04367026314139366, + -0.03029731847345829, + -0.01961480639874935, + -0.10489349067211151, + -0.06258028000593185, + -0.08988942950963974, + -0.03604940325021744, + -0.033990129828453064, + -0.035647183656692505, + -0.0030840556137263775, + 0.035006627440452576, + -0.0005066027515567839, + 0.02887052111327648, + -0.02638637274503708, + -0.0689152330160141, + -0.04781506583094597, + -0.029602857306599617, + -0.004037624690681696, + 0.03940700367093086, + 8.551065696789574e-34, + 0.011051551438868046, + -0.030386749655008316, + 0.006754166446626186, + 0.08262015134096146, + 0.016894444823265076, + 0.016959751024842262, + -0.08701183646917343, + -0.08073626458644867, + -0.114790178835392, + 0.027014221996068954, + 0.056483615189790726, + 0.019548822194337845, + -0.06689801067113876, + 0.09258116036653519, + -0.01089002937078476, + 0.009875422343611717, + -0.0498461052775383, + -0.037087976932525635, + -0.03649534657597542, + 0.000431506778113544, + -0.07109005749225616, + 0.023112069815397263, + -0.04592655971646309, + 0.009638004004955292, + -0.04686005786061287, + -0.028888322412967682, + 0.10924912989139557, + -0.0870937779545784, + -0.02816489152610302, + -0.010753548704087734, + 0.005862642079591751, + -0.0364399217069149, + 0.07107897102832794, + 0.014425836503505707, + -0.04910556226968765, + 0.01667824015021324, + -0.11264704167842865, + 0.016831956803798676, + 0.014215578325092793, + 0.04360195994377136, + -0.06713009625673294, + 0.003509567119181156, + -0.015508178621530533, + -0.02208605781197548, + 0.019177846610546112, + 0.1790066808462143, + -0.030336931347846985, + -0.048252105712890625, + -0.033107414841651917, + 0.015407164581120014, + 0.014372867532074451, + 0.0073520466685295105, + 0.02296808920800686, + 0.03509141132235527, + 0.013459804467856884, + -0.019793899729847908, + 0.016706548631191254, + 0.06822172552347183, + 0.006892136298120022, + -0.02977892942726612, + 0.08071824163198471, + 0.029654502868652344, + -0.03444146737456322, + -0.02368009090423584, + -0.005582530051469803, + 0.05448298156261444, + -0.01412495318800211, + 0.07235252857208252, + 0.005982091184705496, + 0.01283492986112833, + -0.005250244867056608, + 0.06391999125480652, + 0.022425951436161995, + -0.013218963518738747, + -0.00964059866964817, + 0.014322890900075436, + 0.03798005357384682, + 0.0015754472697153687, + 0.02262863703072071, + -0.05247741565108299, + -0.12153910845518112, + 0.012968170456588268, + 0.012492511421442032, + 0.03977251052856445, + -0.08555076271295547, + 0.07266681641340256, + -0.0010036117164418101, + -0.08369685709476471, + 0.013253139331936836, + 0.030663929879665375, + -0.024895451962947845, + 0.07964162528514862, + -0.05056840553879738, + -0.04801053926348686, + -0.07192597538232803, + -1.3077394856707103e-33, + 0.0933823361992836, + 0.05561916157603264, + -0.08690283447504044, + -0.007370040751993656, + -0.041230522096157074, + 0.020426282659173012, + 0.010605823248624802, + 0.04494607076048851, + -0.031440675258636475, + -0.010489978827536106, + 0.06731191277503967, + -0.03404909744858742, + -0.0784214586019516, + -0.08257213234901428, + -0.036371950060129166, + -0.05667991191148758, + 0.043382804840803146, + 0.01247289590537548, + -0.09677142649888992, + 0.03203214704990387, + -0.07046143710613251, + -0.0037237952928990126, + 0.04237823560833931, + 0.12769684195518494, + 0.03014965169131756, + 0.0486346036195755, + 0.013716543093323708, + -0.048565808683633804, + -0.03510768339037895, + -0.010568337514996529, + 0.00419617397710681, + 0.005278626922518015, + 0.024310441687703133, + 0.0028176256455481052, + 0.001071486622095108, + -0.007387244142591953, + 0.02151534892618656, + -0.007667121011763811, + 0.04381369426846504, + 0.0697130411863327, + -0.027937477454543114, + 0.05409473553299904, + -0.019958510994911194, + 0.051872286945581436, + -0.03084505721926689, + -0.029375696554780006, + 0.008134311065077782, + -0.04029450565576553, + 0.03737739101052284, + 0.09364422410726547, + 0.03154990077018738, + -0.06547488272190094, + -0.013375215232372284, + -0.02204073779284954, + -0.04258457571268082, + -0.06325026601552963, + 0.0013114756438881159, + -0.008577220141887665, + -0.020674750208854675, + 0.05063161626458168, + -0.005432074423879385, + 0.010996227152645588, + -0.06528070569038391, + -0.014050417579710484, + -0.02011324279010296, + -0.05653966963291168, + -0.036585498601198196, + -0.06849467009305954, + 0.011154171079397202, + 0.028841901570558548, + 0.04566100239753723, + -0.03268081322312355, + 0.027490748092532158, + 0.08719202876091003, + 0.07266601920127869, + -0.02616482973098755, + 0.05406628176569939, + 0.05424176901578903, + 0.01431279443204403, + -0.03741180896759033, + 0.03939754515886307, + 0.017651287838816643, + -0.024010349065065384, + 0.058712948113679886, + -0.008572092279791832, + 0.05652003735303879, + -0.05485991761088371, + -0.06966352462768555, + 0.031870219856500626, + -0.060040850192308426, + -0.05753489211201668, + 0.06250861287117004, + 0.0751635953783989, + -0.0073508406057953835, + -0.027683280408382416, + -1.8159393988526062e-08, + -0.037872206419706345, + -0.10026191174983978, + -0.020740056410431862, + -0.05806374177336693, + -0.013635976240038872, + -0.04483973607420921, + -0.04805149883031845, + -0.04648085683584213, + -0.012415217235684395, + -0.06598880141973495, + 0.09452001750469208, + -0.02168688364326954, + -0.09458586573600769, + -0.09549399465322495, + -0.018746742978692055, + -0.03203960135579109, + 0.05700095742940903, + 0.06922987848520279, + -0.01247347891330719, + -0.02331744320690632, + -0.029466692358255386, + 0.02445848472416401, + -0.026032669469714165, + 0.03416145592927933, + 0.07441381365060806, + 0.018433790653944016, + -0.06062738597393036, + -0.004716494586318731, + 0.07153669744729996, + 0.02681129053235054, + 0.051020629703998566, + 0.03834838047623634, + 0.03712565824389458, + 0.03485660254955292, + -0.05408889800310135, + 0.014064817689359188, + -0.009229951538145542, + -0.008097912184894085, + -0.09828537702560425, + 0.05436749756336212, + -0.021006997674703598, + -0.015207961201667786, + -0.015366321429610252, + -0.041663117706775665, + 0.0077364640310406685, + -0.036317192018032074, + 0.12163913249969482, + 0.0031927383970469236, + -0.0722053200006485, + -0.06313113123178482, + -0.016576135531067848, + -0.04873507842421532, + 0.047319136559963226, + 0.10610070824623108, + -0.046298857778310776, + -0.12371844053268433, + 0.11199229955673218, + 0.11547179520130157, + 0.03440077230334282, + 0.03386780992150307, + 0.06559576094150543, + -0.0462832935154438, + 0.015182942152023315, + 0.019950632005929947 + ], + "file-js-bold||documents,code,javascript": [ + -0.04433733969926834, + 0.012928246520459652, + -0.01611417345702648, + 0.0760103389620781, + 0.08012886345386505, + -0.04883498325943947, + 0.0049830470234155655, + 0.012987533584237099, + 0.07530982792377472, + 0.018030397593975067, + -0.05323382094502449, + 0.13167379796504974, + 0.0276850126683712, + -0.03578339144587517, + 0.023153627291321754, + 0.017352774739265442, + -0.04930612072348595, + 0.04007561132311821, + 0.012169575318694115, + -0.014567246660590172, + 0.022846020758152008, + 0.02397431805729866, + 0.06948383897542953, + -0.02030097506940365, + 0.05825560912489891, + 0.01521786954253912, + 0.05486171320080757, + -0.027567803859710693, + -0.04609987139701843, + -0.03462439402937889, + 0.06437092274427414, + -0.06402012705802917, + 0.0741460770368576, + -0.013452121987938881, + 0.010322454385459423, + 0.06461968272924423, + -0.025552906095981598, + -0.10059650242328644, + 0.016324670985341072, + 0.08153299987316132, + -0.014490661211311817, + 0.011445390991866589, + -0.025304462760686874, + 0.00518046272918582, + -0.03931267559528351, + -0.08494574576616287, + -0.059438932687044144, + -0.0319274440407753, + -0.00742393359541893, + 0.003910748288035393, + -0.028580395504832268, + -0.07098162919282913, + -0.08482905477285385, + -0.04923878610134125, + -0.012953754514455795, + -0.03763861954212189, + -0.09872662276029587, + 0.0022481600753962994, + 0.050958700478076935, + 0.003662785980850458, + 0.012486441060900688, + 0.027895813807845116, + 0.0542558878660202, + 0.01740916073322296, + 0.08943813294172287, + 0.0633731335401535, + 0.0009349723695777357, + 0.06128677353262901, + -0.08931172639131546, + 0.019185146316885948, + 0.04268661141395569, + 0.0038700758013874292, + 0.0706976056098938, + -0.03434785455465317, + -0.02918497659265995, + -0.0317605584859848, + 0.01751117780804634, + 0.07812835276126862, + -0.0019221438560634851, + -0.07065325975418091, + -0.052541762590408325, + -0.12867067754268646, + -0.0005441191606223583, + 0.04786085709929466, + 0.0694584921002388, + 0.09108997136354446, + -0.04129114747047424, + -0.050250403583049774, + -0.008629193529486656, + 0.014333531260490417, + -0.08704452216625214, + -0.04478703439235687, + -0.0015253720339387655, + 0.07433443516492844, + -0.10668923705816269, + 0.02105112560093403, + 0.06709592044353485, + 0.02307870052754879, + -0.01404211763292551, + 0.02582642249763012, + 0.0004456790629774332, + 0.07067876309156418, + 0.09359373897314072, + -0.02461111918091774, + -0.013041327707469463, + 0.05333250015974045, + -0.0031868494115769863, + 0.015048679895699024, + 0.027567602694034576, + -0.054642677307128906, + 0.022219672799110413, + -0.043636299669742584, + -0.07938934117555618, + -0.0720616802573204, + -0.06279384344816208, + 0.003234656061977148, + 0.054002437740564346, + -0.038534604012966156, + 0.09676611423492432, + 0.1111765205860138, + 0.11540453881025314, + 0.010078120045363903, + -0.03661474958062172, + -0.04073718935251236, + 0.05819336697459221, + -0.0024395121727138758, + 0.09226420521736145, + -1.741626940186694e-33, + 0.027012767270207405, + -0.013357001356780529, + -0.043680962175130844, + 0.08636125177145004, + -0.002433409448713064, + -0.039395492523908615, + -0.04018871486186981, + -0.050961684435606, + -0.19351331889629364, + 0.04110177233815193, + 0.05624362826347351, + 0.07935244590044022, + -0.005665774457156658, + 0.036674126982688904, + -0.027167148888111115, + 0.013105573132634163, + -0.005540116224437952, + -0.03630482032895088, + -0.02453547902405262, + 0.015530679374933243, + -0.09834063053131104, + 0.02063830941915512, + -0.025968780741095543, + 0.04287392646074295, + -0.059107907116413116, + -0.007331389933824539, + 0.0341491624712944, + -0.0041674282401800156, + -0.08925414830446243, + 0.00032677731360308826, + 0.02756800502538681, + 0.014550972729921341, + 0.026159612461924553, + 0.036248091608285904, + -0.034715715795755386, + 0.05694769322872162, + -0.09016615152359009, + -0.0027744716499000788, + 0.0209586750715971, + 0.0725909173488617, + -0.02056082896888256, + -0.00792679376900196, + -0.010539376176893711, + -0.012359492480754852, + 0.004970982205122709, + 0.13528060913085938, + -0.024198448285460472, + -0.07938661426305771, + 0.01371778268367052, + 0.02994348667562008, + -0.0430171899497509, + 0.06647396832704544, + 0.035906121134757996, + 0.0526173897087574, + 0.03660827875137329, + 0.012355523183941841, + -0.03529374301433563, + 0.02287117950618267, + 0.03530129790306091, + -0.03264657035470009, + 0.09601109474897385, + 0.003681821282953024, + -0.006869455333799124, + -0.03390130028128624, + -0.046061210334300995, + 0.034102149307727814, + -0.024337928742170334, + 0.07819073647260666, + 0.026077333837747574, + 0.005662122741341591, + 0.025807159021496773, + 0.0400974340736866, + 0.06107422709465027, + 0.03190801292657852, + 0.02791670523583889, + 0.013123122975230217, + -0.01370821800082922, + -0.012202773243188858, + 0.034957583993673325, + -0.11743033677339554, + -0.077951580286026, + -0.015214280225336552, + -0.0257513839751482, + 0.08586809784173965, + 0.014266210608184338, + 0.08048240095376968, + -0.04918923228979111, + -0.03251318633556366, + 0.020999260246753693, + 0.051643554121255875, + 0.029833152890205383, + -0.009369424544274807, + -0.015112694352865219, + -0.16160984337329865, + -0.06456997990608215, + -1.0532574483451626e-33, + 0.06678715348243713, + 0.03387880325317383, + -0.09235940128564835, + 0.0597388856112957, + -0.0460326261818409, + 0.0698433667421341, + -0.001655214000493288, + 0.06725436449050903, + 0.019941287115216255, + 0.021653633564710617, + 0.06732077151536942, + 0.01571851409971714, + -0.07899575680494308, + -0.06908491998910904, + 0.004287563264369965, + 0.020099027082324028, + -0.027712685987353325, + 0.011561619117856026, + 0.0054750037379562855, + -0.043326329439878464, + -0.0075652408413589, + -0.04624731093645096, + 0.04651834815740585, + 0.0859200656414032, + 0.010897509753704071, + -0.016339650377631187, + -0.0673038586974144, + -0.018402857705950737, + -0.08520214259624481, + -0.0265229232609272, + -0.0398065447807312, + 0.021599220111966133, + -0.006120992824435234, + 0.03586225211620331, + 0.02704508788883686, + -0.02067856676876545, + 0.012373962439596653, + 0.0052065979689359665, + 0.02394782565534115, + 0.02628396824002266, + -0.046589866280555725, + -0.01674630120396614, + -0.0009997617453336716, + 0.0046622552908957005, + -0.04403550550341606, + 0.03730146214365959, + 0.016479646787047386, + -0.005894926376640797, + 0.017612004652619362, + -0.001686573144979775, + 0.005253524053841829, + -0.029824193567037582, + 0.03978471830487251, + -0.022592483088374138, + -0.05855679139494896, + -0.05867224559187889, + -0.04218883439898491, + -0.044365011155605316, + -0.054578568786382675, + 0.1296030730009079, + 0.005962080787867308, + -0.0035948886070400476, + -0.018921077251434326, + -0.03874225169420242, + -0.03329327702522278, + -0.05943895876407623, + -0.011207983829081059, + -0.01341825071722269, + 0.08967044204473495, + -0.02324417233467102, + 0.022142870351672173, + -0.07554269582033157, + 0.040835537016391754, + 0.059302013367414474, + -0.007369327358901501, + -0.045978643000125885, + 0.07870045304298401, + -0.043237555772066116, + -0.0037459328304976225, + 0.0003503822081256658, + 0.08265076577663422, + 0.013090323656797409, + -0.06962261348962784, + 0.03514545410871506, + 0.0018663083901628852, + 0.04516901075839996, + -0.04250263422727585, + -0.013798641040921211, + -0.047893740236759186, + -0.057313915342092514, + -0.05282479152083397, + 0.07192255556583405, + 0.04472516104578972, + -0.09349466115236282, + -0.07118654251098633, + -1.690823125954921e-08, + -0.11195112019777298, + -0.007870948873460293, + -0.0665396973490715, + -0.07772357761859894, + -0.05244089663028717, + -0.019481923431158066, + -0.010400516912341118, + 0.005221731029450893, + -0.040244802832603455, + -0.037059590220451355, + 0.07215274125337601, + 0.025655897334218025, + -0.011155452579259872, + -0.05245348438620567, + -0.04902488738298416, + 0.04453277587890625, + 0.004449928179383278, + 0.07368116080760956, + -0.027736805379390717, + 0.012493508867919445, + -0.016189204528927803, + 0.07906763255596161, + -0.011200755834579468, + 0.031710535287857056, + 0.05581146106123924, + 0.03516916185617447, + -0.03356080874800682, + 0.00386084895581007, + 0.08257865905761719, + 0.05190013349056244, + -0.024809984490275383, + 0.03420600667595863, + 0.00414266949519515, + 0.026746850460767746, + -0.08551473915576935, + -0.04944271221756935, + 0.03753690421581268, + -0.033754218369722366, + -0.04688497632741928, + 0.07138479501008987, + -0.026092564687132835, + 0.003916996531188488, + -0.053956445306539536, + -0.011779953725636005, + -0.03790634870529175, + -0.010498996824026108, + 0.030561847612261772, + -0.044401854276657104, + -0.0877717062830925, + -0.11091770976781845, + -0.011078656651079655, + -0.013491304591298103, + -0.02462691068649292, + 0.10159995406866074, + -0.07156286388635635, + -0.1050354614853859, + 0.021294811740517616, + 0.10456490516662598, + -0.05588320270180702, + -0.035185497254133224, + 0.06597722321748734, + 0.021477635949850082, + 0.04405089467763901, + 0.0012568600941449404 + ], + "file-jsx-bold||documents,code,javascript": [ + -0.052315957844257355, + 0.012779372744262218, + -0.0018995270365849137, + 0.04879002273082733, + 0.057982437312603, + -0.029744170606136322, + 0.01900058425962925, + 0.018232617527246475, + 0.05478169023990631, + 0.0007833455456420779, + -0.06046105548739433, + 0.12834633886814117, + 0.045268990099430084, + -0.02125738374888897, + 0.02272668480873108, + -0.0032610706984996796, + -0.036121536046266556, + 0.034314751625061035, + 0.020525401458144188, + 0.019149623811244965, + 0.06375885009765625, + -0.021292749792337418, + 0.07975655794143677, + -0.029758786782622337, + 0.06955873221158981, + 0.04947919771075249, + 0.060369327664375305, + -0.029286732897162437, + -0.025904513895511627, + -0.022243821993470192, + 0.05818083509802818, + -0.026460658758878708, + 0.08153148740530014, + -0.042928390204906464, + 0.012243842706084251, + 0.049895066767930984, + -0.0004549336154013872, + -0.08115096390247345, + 0.0223050806671381, + 0.08566858619451523, + -0.013233798556029797, + 0.05523058772087097, + -0.031173478811979294, + 0.004870927892625332, + -0.042275816202163696, + -0.09832669049501419, + -0.03945576772093773, + -0.056616611778736115, + -0.013108323328197002, + 0.03160162642598152, + -0.035849928855895996, + -0.08380342274904251, + -0.042528267949819565, + -0.04515125975012779, + -0.01481497660279274, + -0.007094867993146181, + -0.11117544770240784, + -0.003781758714467287, + 0.045466795563697815, + -0.025640983134508133, + 0.010514547117054462, + 0.03217911347746849, + 0.0583968423306942, + 0.04314433038234711, + 0.09051372110843658, + 0.08597204834222794, + -0.02135138213634491, + 0.040568724274635315, + -0.08394875377416611, + -0.006648163311183453, + 0.013616208918392658, + 0.02960941381752491, + 0.07593648880720139, + -0.022201092913746834, + -0.036289047449827194, + -0.04105152189731598, + 0.03052448108792305, + 0.04363112896680832, + 0.0034913348499685526, + -0.0627773106098175, + -0.05391383543610573, + -0.12253803759813309, + 0.0075261881574988365, + 0.08575276285409927, + 0.06831646710634232, + 0.10914308577775955, + 0.0018594869179651141, + -0.05076966807246208, + -0.01782935857772827, + 0.02978609874844551, + -0.08665115386247635, + -0.04398087039589882, + 0.018346771597862244, + 0.0874558538198471, + -0.07708578556776047, + 0.01713365875184536, + 0.03563685715198517, + 0.06141761317849159, + -0.004845941439270973, + 0.007374994456768036, + 0.02150852419435978, + 0.05443071201443672, + 0.10213086754083633, + 0.002689338754862547, + -0.01226719655096531, + 0.045375458896160126, + -0.024145003408193588, + 0.00046274057240225375, + 0.02200266718864441, + -0.03102383203804493, + 0.008887523785233498, + -0.03141963854432106, + -0.06536045670509338, + -0.07735688239336014, + -0.057198550552129745, + 0.021157173439860344, + 0.03880957514047623, + -0.048363231122493744, + 0.09625733643770218, + 0.08028995245695114, + 0.11880482733249664, + 0.0049321940168738365, + -0.0431084930896759, + -0.00037133629666641355, + 0.08077173680067062, + 0.01231387909501791, + 0.07227039337158203, + -1.2276692185965117e-33, + -0.04047312214970589, + -0.01059379056096077, + -0.021347297355532646, + 0.07312134653329849, + -0.01617479883134365, + -0.08940591663122177, + -0.03690825775265694, + -0.06497909873723984, + -0.19521823525428772, + 0.03360247611999512, + 0.04911385476589203, + 0.08932248502969742, + -0.008559460751712322, + 0.034531574696302414, + -0.023082904517650604, + 0.00889734085649252, + 0.012360884808003902, + -0.03115174174308777, + -0.022575048729777336, + 0.031308338046073914, + -0.0593070313334465, + 0.014389028772711754, + -0.010160663165152073, + 0.029858915135264397, + -0.06848716735839844, + -0.016391202807426453, + 0.046705201268196106, + 0.028784237802028656, + -0.09040152281522751, + -0.009568488225340843, + 0.016505330801010132, + -0.003932662773877382, + 0.04470152407884598, + 0.05327581986784935, + -0.050311993807554245, + 0.0787157490849495, + -0.05531705170869827, + -0.0022871315013617277, + 0.020184531807899475, + 0.06578335165977478, + -0.055483683943748474, + 0.0244606826454401, + -0.026029545813798904, + -0.032172784209251404, + 0.0016731753712520003, + 0.12196625024080276, + -0.05590531975030899, + -0.12382523715496063, + 0.02777584083378315, + 0.024109480902552605, + -0.04048795625567436, + 0.06678877770900726, + 0.03918416425585747, + 0.04565605893731117, + 0.053353529423475266, + 0.026005305349826813, + -0.004872092977166176, + 0.020964020863175392, + 0.014059595763683319, + -0.014410348609089851, + 0.0836089625954628, + 0.01066283043473959, + -0.010190793313086033, + -0.017293045297265053, + -0.04115862399339676, + 0.0636947900056839, + 0.007569243665784597, + 0.04205389320850372, + -0.029758470132946968, + 0.01194748841226101, + 0.0042814407497644424, + 0.06009555608034134, + 0.06879045069217682, + 0.0138067826628685, + 0.055666234344244, + -0.01845625229179859, + -0.022471608594059944, + -0.009272163733839989, + 0.04062335565686226, + -0.11554571986198425, + -0.06180056184530258, + -0.04540921002626419, + -0.02581961266696453, + 0.1056099534034729, + 0.02900412678718567, + 0.06041432544589043, + -0.04599078744649887, + 0.01595121994614601, + 0.034250739961862564, + 0.06293102353811264, + 0.031161971390247345, + -0.056073468178510666, + -0.04597557708621025, + -0.12809424102306366, + -0.08280472457408905, + -9.324887199451154e-34, + 0.033943939954042435, + 0.03620944172143936, + -0.09536951035261154, + 0.050915930420160294, + -0.059995584189891815, + 0.07508368790149689, + 0.013928835280239582, + 0.08952562510967255, + 0.02912816032767296, + 0.016965851187705994, + 0.07583938539028168, + 0.02937154471874237, + -0.0782729908823967, + -0.043084271252155304, + -0.02773110568523407, + 0.022921957075595856, + -0.013540254905819893, + 0.014778981916606426, + -0.03183374181389809, + -0.08059165626764297, + -0.001469055307097733, + -0.023832010105252266, + 0.04747866839170456, + 0.09901285916566849, + 0.009677649475634098, + -0.003363240510225296, + -0.03211651369929314, + 0.004071917850524187, + -0.09252370148897171, + -0.05385059118270874, + -0.046032924205064774, + 0.011460386216640472, + -0.009333530440926552, + 0.006047587376087904, + 0.003757553407922387, + -0.02642795816063881, + -0.0044289506040513515, + 0.017173830419778824, + 0.028724612668156624, + 0.01693764328956604, + -0.06879732757806778, + -0.051635172218084335, + 0.0023337288293987513, + -0.001780294580385089, + -0.05161809176206589, + 0.02981468476355076, + -0.012329078279435635, + -0.0033709853887557983, + 0.028151454403996468, + 0.02471807226538658, + -0.012644048780202866, + -0.036031052470207214, + 0.04103366285562515, + 0.0006181023782119155, + -0.0495234839618206, + -0.0652492567896843, + -0.048063866794109344, + -0.03517979383468628, + -0.033626727759838104, + 0.11356563866138458, + 0.012707239016890526, + -0.004526336211711168, + -0.02920975722372532, + -0.03148842602968216, + -0.020512552931904793, + -0.06994431465864182, + -0.06043507531285286, + -0.016047930344939232, + 0.07359747588634491, + -0.003656363347545266, + 0.019530432298779488, + -0.041660208255052567, + 0.0022959038615226746, + 0.070920430123806, + 0.02995094284415245, + -0.05131938308477402, + 0.04992584511637688, + -0.03775472193956375, + 0.016183117404580116, + -0.006793479435145855, + 0.07651644200086594, + 0.031432148069143295, + -0.06177248805761337, + 0.041092004626989365, + 0.02180160954594612, + 0.04723614081740379, + -0.03908726945519447, + -0.005898343864828348, + -0.030398299917578697, + -0.10370825976133347, + -0.038062188774347305, + 0.049925804138183594, + 0.023170091211795807, + -0.12324678152799606, + -0.08346608281135559, + -1.7073411129331362e-08, + -0.11730428785085678, + -0.006580519489943981, + -0.08024775236845016, + -0.08354292064905167, + -0.07040135562419891, + -0.013196817599236965, + -0.007626366801559925, + 0.01637241616845131, + -0.005513397976756096, + -0.04721924662590027, + 0.09360169619321823, + 0.033178508281707764, + -0.006707779597491026, + -0.048232052475214005, + -0.06413272023200989, + 0.013751622289419174, + 0.007595405913889408, + 0.07256385684013367, + -0.015189372934401035, + -0.0195792056620121, + -0.020861750468611717, + 0.0853467509150505, + 0.00358957308344543, + 0.05630366504192352, + 0.08172573894262314, + -0.0021031058859080076, + -0.022399181500077248, + 0.016135117039084435, + 0.07308448851108551, + 0.03887832537293434, + -0.06880399584770203, + 0.026575079187750816, + -0.0014351422432810068, + 0.010045676492154598, + -0.08465874940156937, + -0.025510892271995544, + 0.024424102157354355, + -0.010266556404531002, + -0.022555656731128693, + 0.05596071854233742, + -0.02137087658047676, + -0.020658960565924644, + -0.053915273398160934, + -0.010217849165201187, + -0.029415499418973923, + 0.010232949629426003, + 0.03573819622397423, + -0.04068711772561073, + -0.04847893863916397, + -0.1230544000864029, + -0.007975999265909195, + -0.021582482382655144, + -0.033467359840869904, + 0.07253687083721161, + -0.07596765458583832, + -0.1041840985417366, + -0.001988454023376107, + 0.09659956395626068, + -0.027512285858392715, + -0.028061257675290108, + 0.06090293452143669, + 0.0133808683604002, + 0.038713861256837845, + 0.010188826359808445 + ], + "file-lock-bold||documents,secure,locked,private": [ + -0.05683212727308273, + 0.05125268176198006, + -0.09124346822500229, + 0.0581875778734684, + 0.07242978364229202, + 0.04653170704841614, + 0.050994958728551865, + -0.02935609593987465, + 0.07241656631231308, + 0.044381119310855865, + 0.030020911246538162, + 0.09913001209497452, + 0.07223951071500778, + -0.056734561920166016, + -0.006042522843927145, + 0.006902796681970358, + -0.05512833222746849, + -0.002970720175653696, + -0.040321189910173416, + 0.05758768320083618, + -0.011967610567808151, + 0.003842310281470418, + 0.02434493787586689, + 0.012135793454945087, + 0.017895258963108063, + -0.0019647893495857716, + 0.01294062752276659, + -0.020738137885928154, + -0.03812006488442421, + -0.05765262991189957, + -0.020841097459197044, + -0.03592953458428383, + 0.07937724143266678, + 0.031208021566271782, + 0.060749929398298264, + 0.006330575793981552, + 0.0024653987493366003, + -0.05046918988227844, + -0.06203386187553406, + -0.009130116552114487, + -0.03180587664246559, + -0.0463615246117115, + -0.05611540004611015, + 0.02362884394824505, + -0.08515384048223495, + -0.04766801744699478, + 0.011004638858139515, + 0.009095349349081516, + -0.03860653191804886, + -0.03787005692720413, + -0.013526497408747673, + 0.024254173040390015, + -0.101046621799469, + 0.01711850054562092, + -0.018570933490991592, + -0.04091999679803848, + -0.004220890812575817, + 0.005466399248689413, + 0.025223927572369576, + -0.004550653509795666, + 0.05324610322713852, + 0.037525225430727005, + -0.017402969300746918, + 0.027702517807483673, + 0.03108559362590313, + 0.11348377913236618, + 0.00407513789832592, + 0.013778571039438248, + -0.01131819374859333, + -0.0054985578171908855, + 0.019957242533564568, + -0.01964087411761284, + 0.02500196360051632, + -0.013451267965137959, + 0.01222284510731697, + 0.025922777131199837, + -0.020914116874337196, + 0.011197109706699848, + -0.007689058780670166, + -0.10026466101408005, + -0.005141802132129669, + -0.12474864721298218, + 0.02003733441233635, + -0.0033997618593275547, + -0.0010036055464297533, + 0.08594615757465363, + -0.013446216471493244, + -0.05348670482635498, + 0.02851107530295849, + 0.004346777684986591, + -0.005443438421934843, + 0.0031663912814110518, + 0.03953995555639267, + -0.003369344864040613, + -0.052192509174346924, + -0.024123936891555786, + 0.07820720225572586, + 0.0620105154812336, + -0.05878463014960289, + 0.025146860629320145, + 0.035967063158750534, + 0.05594169348478317, + 0.0690067857503891, + -0.05672663822770119, + 0.049338728189468384, + 0.050690099596977234, + 0.08737444877624512, + -0.04631088301539421, + -0.040142640471458435, + -0.05258055031299591, + 0.03862401098012924, + -0.05831048637628555, + -0.046918924897909164, + -0.0423063188791275, + -0.03882063925266266, + 0.038702722638845444, + -0.10578358173370361, + 0.0387701615691185, + 0.06374009698629379, + 0.1201312392950058, + 0.030685313045978546, + -0.04820863530039787, + -0.013615060597658157, + -0.07360777258872986, + -0.0433761365711689, + -0.025362085551023483, + 0.0067962598986923695, + -2.228915633692596e-33, + 0.024083126336336136, + -0.0033814660273492336, + -0.12276114523410797, + 0.08136458694934845, + 0.042409010231494904, + 0.01746753416955471, + -0.058110691606998444, + -0.08086009323596954, + -0.16549549996852875, + 0.07701268792152405, + 0.11966642737388611, + -0.004145206417888403, + 0.03747992590069771, + 0.010213484987616539, + 0.05748281255364418, + -0.005695743020623922, + 0.01735503412783146, + 0.001836728653870523, + 0.057461969554424286, + 0.0208749882876873, + 0.027248797938227654, + 0.06210590898990631, + -0.0083732595667243, + -0.014756032265722752, + -0.0010790869127959013, + -0.0594390444457531, + 0.051421187818050385, + -0.09975728392601013, + 0.02896651066839695, + 0.01782483421266079, + -0.022930283099412918, + 0.03625493124127388, + 0.0904325321316719, + 0.022695085033774376, + -0.0597430095076561, + 0.006889809388667345, + -0.038094088435173035, + -0.06649347394704819, + 0.02942364662885666, + -0.015491846017539501, + -0.013897380791604519, + -0.08294130116701126, + -0.006594023667275906, + -0.04179111123085022, + 0.033474747091531754, + 0.10453670471906662, + -0.08449215441942215, + 0.006925306748598814, + -0.04397233948111534, + 0.027863074094057083, + -0.04479100927710533, + 0.052890874445438385, + -0.059309788048267365, + -0.0035078267101198435, + -0.011180166155099869, + -0.03930658847093582, + -0.01669868640601635, + 0.06184234470129013, + -0.0025139388162642717, + -0.008567506447434425, + 0.041492655873298645, + 0.07333430647850037, + 0.06085827201604843, + -0.05406629294157028, + -0.02219998650252819, + 0.006054750643670559, + 0.007260259240865707, + 0.007075511384755373, + 0.06028611585497856, + -0.014532065019011497, + -0.07645286619663239, + 0.005767494440078735, + 0.023762935772538185, + 0.018812084570527077, + -0.0246418509632349, + -0.0006674131727777421, + 0.05594504997134209, + 0.002714557573199272, + 0.030736297369003296, + -0.08698473125696182, + -0.06383724510669708, + 0.006443590857088566, + -0.011877737939357758, + 0.09432990103960037, + -0.07015258073806763, + 0.009917117655277252, + -0.05948486551642418, + 0.01751459576189518, + -0.018978102132678032, + 0.008311869576573372, + 0.04851359874010086, + 0.0014347132528200746, + 0.01574351266026497, + -0.07015738636255264, + -0.08667530864477158, + -3.986116553892428e-35, + 0.050086699426174164, + -0.07269007712602615, + -0.0570782907307148, + 0.039871733635663986, + 0.03885117173194885, + 0.06813817471265793, + -0.07528653740882874, + 0.020722411572933197, + -0.053673043847084045, + -0.01448519341647625, + 0.03680974617600441, + 0.028573211282491684, + -0.015583119355142117, + -0.026675263419747353, + 0.047700464725494385, + -0.03490281477570534, + 0.01726275496184826, + 0.04346149414777756, + -0.0680394396185875, + 0.0183717031031847, + -0.03647620230913162, + -0.04616757854819298, + -0.02531779184937477, + 0.195140540599823, + 0.08299307525157928, + -0.0253168735653162, + -0.11073670536279678, + -0.010699943639338017, + -0.028091302141547203, + 0.03864981234073639, + -0.04810888692736626, + 0.02791139855980873, + -0.06023302301764488, + 0.0056937928311526775, + -0.0022126666735857725, + -0.07285843044519424, + 0.014196394011378288, + 0.017977740615606308, + -0.0011218636063858867, + 0.041998814791440964, + 0.001619371003471315, + 0.02316400036215782, + -0.029421059414744377, + -0.02303002029657364, + -0.08538498729467392, + -0.0039775557816028595, + 0.033692266792058945, + -0.06709080189466476, + -0.010664133355021477, + 0.07851856201887131, + 0.06623371690511703, + -0.06157801300287247, + 0.038707856088876724, + -0.06750352680683136, + -0.015964558348059654, + -0.017588989809155464, + 0.0053052450530231, + -0.03374096751213074, + -0.03315294161438942, + 0.09267953038215637, + 0.05433419346809387, + 0.019695833325386047, + -0.017215546220541, + 0.05225881561636925, + 6.960391328902915e-05, + -0.034487269818782806, + -0.025144873186945915, + -0.015204540453851223, + -0.039678726345300674, + 0.04705921560525894, + 0.11356444656848907, + -0.06401553004980087, + 0.013155900873243809, + 0.09839124232530594, + 0.05588458478450775, + -0.03970198333263397, + 0.05800854414701462, + -0.10574357956647873, + -0.05515371263027191, + 0.05297879874706268, + 0.07142619043588638, + 0.007182805798947811, + -0.06587142497301102, + 0.05776932090520859, + 0.04534384608268738, + 0.018321305513381958, + -0.00297573977150023, + -0.05851838365197182, + -0.02501140721142292, + -0.03534645587205887, + -0.07136810570955276, + 0.002868286333978176, + -0.037881143391132355, + -0.05043098330497742, + 0.019982414320111275, + -1.6715674178158224e-08, + -0.00476172985509038, + -0.0629156082868576, + -0.025427430868148804, + 0.000580836262088269, + 0.06515458971261978, + -0.0015793965430930257, + -0.053389422595500946, + -0.06848914921283722, + -0.0557393841445446, + -0.0321512408554554, + 0.07006925344467163, + -0.08792969584465027, + -0.06935573369264603, + -0.05644937977194786, + -0.08015261590480804, + 0.031054018065333366, + -0.0007932458538562059, + 0.002750118263065815, + -0.012724373489618301, + -0.07309367507696152, + -0.008970714174211025, + 0.020669987425208092, + 0.01664155162870884, + 0.03207864239811897, + 0.013340323232114315, + 0.06890175491571426, + 0.023300666362047195, + -0.0292678102850914, + 0.09654490649700165, + 0.11091731488704681, + 0.0011313777649775147, + -0.04336590692400932, + 0.047738753259181976, + 0.010472482070326805, + -0.07936358451843262, + 0.08157603442668915, + -0.04064866527915001, + 0.05544809252023697, + 0.03659425303339958, + 0.0976150780916214, + 0.018898729234933853, + 0.004549581557512283, + -0.0015795787330716848, + -0.020795395597815514, + -0.08267221599817276, + -0.01988738216459751, + 0.048843253403902054, + -0.01426473818719387, + -0.09001363068819046, + -0.02888471633195877, + -0.03693389147520065, + -0.004755852743983269, + 0.026896582916378975, + 0.1722300946712494, + -0.04020944982767105, + 0.017511673271656036, + 0.1042066216468811, + 0.09742517024278641, + 0.048786383122205734, + 0.01569678820669651, + 0.051595862954854965, + -0.026315653696656227, + 0.03498901054263115, + 0.0035898645874112844 + ], + "file-magnifying-glass-bold||documents,files,search,find,locate,browse,missing": [ + 0.0352744460105896, + 0.03328785300254822, + -0.015055695548653603, + 0.04387142136693001, + 0.10457605123519897, + -0.0369015671312809, + 0.06946669518947601, + -0.034563787281513214, + -0.02138410694897175, + -0.006152437999844551, + 0.013802126049995422, + 0.05056428536772728, + 0.042588088661432266, + 0.027218978852033615, + -0.061976656317710876, + 0.00645484309643507, + -0.08991989493370056, + 0.0064842780120670795, + -0.02780620940029621, + 0.021351708099246025, + -0.017144067212939262, + 0.016209198161959648, + 0.03711181879043579, + -0.04013017937541008, + 0.08891566097736359, + 0.023992594331502914, + -0.06738559901714325, + -0.07357970625162125, + -0.06534674763679504, + -0.07294636964797974, + 0.004538047593086958, + 0.03530949726700783, + 0.12003754079341888, + -0.01630515232682228, + 0.07985398918390274, + 0.026272093877196312, + -0.03265343979001045, + -0.04102226719260216, + -0.025189997628331184, + 0.002312335418537259, + -0.05628933385014534, + -0.012105101719498634, + -0.00863244291394949, + 0.028208451345562935, + -0.03410060703754425, + -0.07130991667509079, + 0.030675072222948074, + -0.024516526609659195, + 0.03929122909903526, + -0.033816222101449966, + -0.11798205971717834, + -0.07592456787824631, + -0.15478743612766266, + -0.009788093157112598, + 0.036181677132844925, + 0.015765879303216934, + -0.02251862920820713, + -0.020150281488895416, + 0.05688319727778435, + 0.028313523158431053, + 0.02261572703719139, + 0.03965912386775017, + -0.019410226494073868, + 0.0772475153207779, + 0.05806967243552208, + 0.05440191924571991, + 0.036898497492074966, + -0.052572280168533325, + 0.03957507014274597, + -0.03293580934405327, + 0.028019940480589867, + 0.024520641192793846, + -0.026352178305387497, + 0.11925209313631058, + 0.013370642438530922, + 0.004432991612702608, + 0.056638505309820175, + 0.031403955072164536, + -0.03537026047706604, + -0.020288612693548203, + -0.025908764451742172, + -0.054894737899303436, + -0.0021475935354828835, + 0.056781090795993805, + 0.06835649907588959, + -0.005901223048567772, + -0.05190147086977959, + -0.10500320047140121, + 0.020067086443305016, + -0.05515490099787712, + -0.05228973552584648, + -0.06246862933039665, + -0.07977069914340973, + 0.00801602378487587, + -0.07434370368719101, + -0.028795424848794937, + 0.0725264847278595, + 0.0219675675034523, + -0.06446041166782379, + 0.05951691418886185, + 0.005034884437918663, + 0.008993815630674362, + 0.1202898919582367, + -0.038559846580028534, + -0.048664022237062454, + 0.0504700243473053, + 0.011354480870068073, + 0.020811202004551888, + 0.017634864896535873, + -0.051214370876550674, + 0.009740189649164677, + -0.08945652097463608, + -0.07453186064958572, + -0.09308216720819473, + 0.03126131370663643, + -0.025899004191160202, + -0.03889060765504837, + -0.025405099615454674, + 0.0516849085688591, + 0.04831476882100105, + 0.005487368907779455, + -0.021396750584244728, + -0.055297091603279114, + -0.08971814811229706, + 0.012469419278204441, + 0.054733093827962875, + -0.004890954587608576, + 1.0091055361451669e-34, + 0.08960729092359543, + 0.004298536106944084, + -0.022510048002004623, + 0.09947927296161652, + 0.0763772502541542, + 0.0049600498750805855, + 0.006990242749452591, + -0.04591139778494835, + -0.12107846140861511, + 0.007430681958794594, + 0.07281799614429474, + 0.08171454817056656, + -0.06430048495531082, + 0.03396642208099365, + 0.04490094631910324, + -0.04051385074853897, + 0.04690117388963699, + 0.03368118032813072, + -0.08408430218696594, + -0.04284058138728142, + -0.017520703375339508, + 0.057346947491168976, + -0.0701666995882988, + 0.0515904426574707, + -0.007825994864106178, + 0.00041738900472410023, + 0.0770147368311882, + -0.08616418391466141, + -0.043270934373140335, + 0.028343265876173973, + -0.0012998118763789535, + 0.03365960344672203, + 0.08612509071826935, + 0.03684346750378609, + -0.09163171797990799, + 0.021214351058006287, + -0.057171210646629333, + -0.010826264508068562, + 0.055288009345531464, + 0.013333804905414581, + -0.10881908982992172, + -0.03142978623509407, + 0.028523210436105728, + -0.03612248972058296, + 0.01521209068596363, + 0.08499997109174728, + -0.044701579958200455, + -0.00010882344213314354, + -0.03879531845450401, + 0.051464587450027466, + 0.0005792460287921131, + 0.008420092053711414, + 0.014504308812320232, + 0.011072278954088688, + -0.03247824311256409, + 0.0520225428044796, + -0.00834200344979763, + 0.06422316282987595, + 0.0436815470457077, + -0.06604285538196564, + 0.14465387165546417, + -0.03201340511441231, + -0.005530402064323425, + -0.007045562844723463, + 0.004177615512162447, + -0.0029290011152625084, + 0.017903806641697884, + 0.018927305936813354, + 0.018429899588227272, + 0.02873849682509899, + -0.06233932077884674, + -0.000797317479737103, + 0.0656508058309555, + 0.05738309398293495, + 0.036225561052560806, + -0.021228555589914322, + 0.00983701553195715, + -0.07951024919748306, + -0.0034293171484023333, + -0.07010016590356827, + -0.10072719305753708, + -0.05266670510172844, + -0.0019769577775150537, + -0.009088351391255856, + -0.04490773379802704, + -0.026792354881763458, + -0.0026563291903585196, + -0.09700673818588257, + -0.020927926525473595, + 0.0008669165545143187, + -9.268754365621135e-05, + 0.04290568083524704, + -0.08914637565612793, + -0.09783147275447845, + -0.10104449838399887, + -1.3711016617514048e-33, + 0.07476809620857239, + -0.07825470715761185, + -0.03717619925737381, + -0.004732981324195862, + -0.025256916880607605, + 0.056304484605789185, + 0.03151291236281395, + -0.0001206574888783507, + 0.04678822308778763, + -0.043445222079753876, + 0.044680457562208176, + -0.0002560514258220792, + -0.039193976670503616, + -0.10414953529834747, + -0.07239329069852829, + 0.08318918943405151, + 0.08239966630935669, + -0.055108048021793365, + -0.06572230160236359, + 0.06781940907239914, + -0.007309929933398962, + 0.007189884781837463, + -0.03407134860754013, + 0.041311170905828476, + 0.01843305118381977, + -0.018630556762218475, + 0.03738640621304512, + -0.05489840731024742, + -0.019304074347019196, + 0.0036300767678767443, + 0.01913730427622795, + 0.01547015830874443, + -0.008502262644469738, + 0.02977498434484005, + -0.037344790995121, + 0.04101014882326126, + 0.04610902816057205, + -0.07958538830280304, + -0.04672756791114807, + 0.0393470861017704, + -0.011823819950222969, + 0.04728573188185692, + 0.012572617270052433, + 0.01613391563296318, + -0.02287003956735134, + -0.02337624505162239, + -0.022087501361966133, + 0.03390567749738693, + 0.008077318780124187, + 0.06304675340652466, + 0.07374555617570877, + -0.06082002446055412, + -0.02995876595377922, + -0.0690605416893959, + -0.08867388963699341, + 0.0009534708224236965, + 0.016668803989887238, + 0.03144816309213638, + -0.013070473447442055, + 0.021365778520703316, + -0.001341109280474484, + 0.036910250782966614, + -0.11289729923009872, + -0.03103684075176716, + -0.0626448467373848, + 0.02449682541191578, + -0.011303998529911041, + 0.03415808454155922, + 0.01354555319994688, + -0.006703158840537071, + 0.062470290809869766, + -0.02071564644575119, + 0.004727724939584732, + 0.02444189041852951, + 0.06269987672567368, + 0.007883092388510704, + 0.035780854523181915, + 0.059034232050180435, + -0.028884410858154297, + -0.016269369050860405, + 0.09904365241527557, + 0.06201888620853424, + 0.034981247037649155, + 0.04965962842106819, + 0.0005214705015532672, + 0.014801819808781147, + -0.028132561594247818, + 0.05831854045391083, + -0.04475921764969826, + -0.08201485872268677, + -0.08529198169708252, + 0.020129242911934853, + 0.02594854310154915, + 0.036753542721271515, + 0.007984020747244358, + -2.2086444673163896e-08, + -0.041872091591358185, + 0.03748892992734909, + -0.07273674756288528, + -0.03896695375442505, + 0.08105673640966415, + -0.04221250116825104, + -0.01590145379304886, + 0.10001032799482346, + -0.06387608498334885, + -0.09121187031269073, + 0.05312963202595711, + -0.0465085506439209, + -0.07160743325948715, + -0.034636396914720535, + 0.05062180012464523, + -0.025510543957352638, + 0.02723577618598938, + 0.06088274344801903, + -0.05042027682065964, + -0.029442090541124344, + 0.02589111216366291, + 0.027504369616508484, + 0.04122702777385712, + 0.0700811892747879, + 0.03160228207707405, + 0.059983041137456894, + -0.07605960965156555, + 0.025941893458366394, + 0.08424650877714157, + 0.06997452676296234, + 0.015250246040523052, + 0.062008991837501526, + -0.00627882219851017, + 0.0008945233421400189, + -0.027012862265110016, + 0.048469919711351395, + -0.027529729530215263, + 0.009432980790734291, + -0.08665771782398224, + 0.029067356139421463, + 0.020130489021539688, + -0.0738058090209961, + 0.04421582072973251, + -0.008795620873570442, + -0.1020599752664566, + -0.02275427058339119, + 0.05350346863269806, + -0.005425207316875458, + -0.043007057160139084, + -0.0837579146027565, + 0.025097476318478584, + 0.005257919896394014, + 0.055391084402799606, + 0.10730393975973129, + -0.022069426253437996, + -0.0297189112752676, + 0.09663838893175125, + 0.08163784444332123, + -0.04459486901760101, + 0.010885413736104965, + 0.07365967333316803, + 0.010706816799938679, + -0.020110860466957092, + 0.02366635575890541 + ], + "file-md-bold||*new*,documents,notes,markdown": [ + -0.03672510012984276, + 0.06038716807961464, + -0.03919794410467148, + 0.01454371027648449, + 0.06740479916334152, + -0.005191834177821875, + -0.005091269500553608, + -0.02371290698647499, + 0.0214218907058239, + 0.07802171260118484, + -0.028271479532122612, + 0.0916932001709938, + 0.060543593019247055, + -0.039150819182395935, + 0.03288539499044418, + 0.06533042341470718, + -0.0733562484383583, + 0.012179599143564701, + 0.01145046204328537, + 0.05096360296010971, + -0.003736386075615883, + 0.10164932161569595, + 0.029641281813383102, + 0.01817334070801735, + 0.04875412583351135, + 0.05016406625509262, + 0.024841247126460075, + -0.0487491674721241, + -0.03471664711833, + -0.021452324464917183, + 0.04076216369867325, + -0.006813256070017815, + 0.10269217938184738, + 0.011129382066428661, + 0.08961517363786697, + 0.09805534034967422, + -0.019126981496810913, + 0.0008549003396183252, + 0.005259172059595585, + 0.03501160815358162, + 0.023985883221030235, + -0.012144329026341438, + -0.030212746933102608, + -0.01177629642188549, + -0.05778822675347328, + -0.10530904680490494, + -0.0165193323045969, + -0.0231960266828537, + 0.02666723169386387, + 0.030152540653944016, + -0.03590685874223709, + -0.08918409794569016, + -0.1335860639810562, + -0.0004910516436211765, + 0.04918208718299866, + 0.03144252672791481, + -0.07480935752391815, + -0.032576464116573334, + -0.0601758137345314, + -0.08857478201389313, + 0.037931278347969055, + 0.03824341669678688, + 0.016784021630883217, + -0.034692879766225815, + 0.047038715332746506, + 0.0802343338727951, + -0.021388495340943336, + 0.03868113458156586, + -0.018296629190444946, + 0.02749677002429962, + -0.01880495622754097, + -0.007772280368953943, + 0.05916067957878113, + 0.010385094210505486, + -0.03925612196326256, + 0.005318068899214268, + 0.035209883004426956, + 0.03407004848122597, + -0.04296312481164932, + -0.08997296541929245, + -0.027027420699596405, + -0.06390374898910522, + -0.01001974567770958, + -0.01645740307867527, + 0.0011761330533772707, + 0.010715748183429241, + -0.0382898673415184, + -0.07113032042980194, + -0.0482013113796711, + -0.044471241533756256, + -0.0016251900233328342, + -0.025797035545110703, + -0.058913104236125946, + 0.011200361885130405, + -0.09607335925102234, + 0.005090522114187479, + 0.056635934859514236, + 0.053905799984931946, + 0.03531121835112572, + 0.07289084047079086, + 0.02547764591872692, + 0.07559946924448013, + 0.051665399223566055, + 0.0070674545131623745, + 0.0077621289528906345, + 0.03771775960922241, + -0.012715624645352364, + -0.0424102321267128, + -0.05055637285113335, + -0.042506612837314606, + 0.053144074976444244, + -0.04728272184729576, + -0.05727245658636093, + -0.06388763338327408, + -0.020188456401228905, + -0.016345126554369926, + -0.005608533974736929, + -0.0015061476733535528, + 0.026074860244989395, + 0.10576872527599335, + 0.08626587688922882, + -0.03424675017595291, + -0.053997304290533066, + -0.02497135102748871, + -0.029651667922735214, + 0.012093007564544678, + 0.0002242828777525574, + -1.2815122781584458e-33, + 0.05817960202693939, + -0.0013196668587625027, + -0.028352150693535805, + 0.059290673583745956, + 0.056959133595228195, + 0.03514121100306511, + -0.06340134888887405, + -0.07093042135238647, + -0.09147434681653976, + 0.016637301072478294, + 0.09220573306083679, + -0.012035888619720936, + 0.0027412185445427895, + 0.03660501539707184, + -0.057701077312231064, + -0.028697099536657333, + 0.004979549907147884, + -0.034771185368299484, + -0.047461580485105515, + -0.007866126485168934, + -0.09428998082876205, + 0.06256065517663956, + -0.06064698472619057, + 0.028938019648194313, + -0.018315786495804787, + 0.0262801144272089, + 0.05290912836790085, + -0.06619233638048172, + -0.04317489266395569, + -0.011942446231842041, + -0.010396068915724754, + -0.04060687497258186, + 0.06341619044542313, + 0.0016731302021071315, + -0.0807691290974617, + 0.0942440927028656, + -0.07747016847133636, + -0.02340281754732132, + 0.042112335562705994, + -0.032886672765016556, + 0.019882509484887123, + 0.010015400126576424, + 0.061609987169504166, + -0.021360043436288834, + -0.03813869133591652, + 0.15648308396339417, + -0.039022620767354965, + -0.04321960359811783, + 0.042922478169202805, + -0.02693452127277851, + -0.006907050032168627, + -0.02165820635855198, + -0.019560836255550385, + 0.054012782871723175, + -0.012458552606403828, + -0.040346626192331314, + -0.04942448437213898, + 0.04386710003018379, + 0.06345455348491669, + -0.000873980054166168, + 0.04544300585985184, + -0.027730736881494522, + 0.008510800078511238, + 0.02743755653500557, + -0.042061932384967804, + 0.0016708953771740198, + 0.04281983897089958, + 0.04868509992957115, + 0.06437516212463379, + 0.019797416403889656, + -0.05235987901687622, + 0.03842652961611748, + 0.017055505886673927, + 0.0368037223815918, + 0.037850119173526764, + -0.008103510364890099, + 0.044415850192308426, + -0.07189103215932846, + 0.059265658259391785, + -0.08782847225666046, + -0.10218760371208191, + 0.00836816243827343, + -0.03599938005208969, + 0.021335069090127945, + -0.008407487533986568, + 0.03118487074971199, + -0.0027003157883882523, + -0.10415321588516235, + 0.016476087272167206, + -0.04943570867180824, + -0.041726093739271164, + -0.007536550052464008, + -0.04597185552120209, + -0.12472757697105408, + -0.058812692761421204, + -1.3463130572864552e-33, + 0.11167071759700775, + -0.0249004065990448, + -0.04841747134923935, + 0.015812279656529427, + -0.055959057062864304, + 0.06280604004859924, + -0.0132286436855793, + 0.07005524635314941, + -0.009581289254128933, + 0.033817704766988754, + 0.03533181920647621, + 0.012879367917776108, + -0.05407920479774475, + -0.06854670494794846, + -0.0018394335638731718, + -0.0017367550171911716, + -0.005810143426060677, + 0.004170642234385014, + -0.0009154655272141099, + 0.004382242448627949, + -0.03699328377842903, + -0.02491968683898449, + 0.01263214461505413, + 0.09407725185155869, + 0.05999254435300827, + -0.02422328107059002, + -0.010500934906303883, + -0.01913989521563053, + -0.02332179993391037, + -0.04636399447917938, + -0.04145241156220436, + 0.020147375762462616, + -0.04873281717300415, + 0.009284567087888718, + -0.049399346113204956, + 0.023179400712251663, + -0.007836700417101383, + -0.019363537430763245, + 0.006073086056858301, + 0.08632254600524902, + 0.02463899739086628, + 0.05479266867041588, + -0.01243315078318119, + 0.04005958139896393, + -0.061365313827991486, + -0.009511112235486507, + 0.01168736070394516, + 0.024372346699237823, + -0.01053821761161089, + 0.03376761078834534, + 0.041163478046655655, + -0.08129595220088959, + 0.04492104426026344, + -0.036645714193582535, + -0.07384371757507324, + -0.011306185275316238, + 0.025861142203211784, + -0.0255737267434597, + -0.0921461209654808, + 0.046715348958969116, + -0.040573954582214355, + 0.08899670839309692, + -0.07833265513181686, + -0.022775759920477867, + 0.0067917718552052975, + -0.04728442057967186, + 0.0037594367749989033, + -0.04500117897987366, + -0.011265691369771957, + 0.05422019213438034, + 0.0034782143775373697, + -0.018993962556123734, + -0.0046415189281105995, + 0.018288664519786835, + 0.09142158925533295, + -0.02202196978032589, + -0.015884213149547577, + -0.05183909088373184, + -0.03287923336029053, + -0.028105052188038826, + 0.07367464154958725, + 0.022737180814146996, + -0.0035069254226982594, + 0.04369658604264259, + -0.02961067110300064, + 0.03636343404650688, + -0.03410409763455391, + 0.016437960788607597, + -0.04807422310113907, + -0.0005678021116182208, + -0.06246289610862732, + 0.04339968040585518, + 0.08385901898145676, + 0.012816146947443485, + -0.08596444875001907, + -1.9205916856890326e-08, + -0.09753116220235825, + -0.047326765954494476, + -0.053662437945604324, + -0.07506641745567322, + -0.010440152138471603, + 0.010377396829426289, + -0.04954898729920387, + -0.024819495156407356, + -0.0027620752807706594, + -0.04140491411089897, + 0.1020154058933258, + -0.04474582523107529, + -0.09080305695533752, + -0.08999695628881454, + -0.0884246975183487, + 0.04050034284591675, + 0.042168110609054565, + 0.04656534269452095, + -0.04306800663471222, + -0.042889997363090515, + -0.043814025819301605, + 0.11762505024671555, + -0.0034536325838416815, + 0.038137804716825485, + 0.07748425751924515, + 0.0946715846657753, + -0.021388830617070198, + 0.050335586071014404, + 0.019009647890925407, + 0.1031225398182869, + 0.08382902294397354, + 0.038698047399520874, + 0.07196315377950668, + 0.03590334206819534, + -0.02611405961215496, + -0.01660897396504879, + 0.04954367130994797, + 0.043627358973026276, + 0.00031609617872163653, + 0.09880878776311874, + -0.06570304185152054, + 0.049129098653793335, + -0.08661091327667236, + -0.03738386556506157, + -0.0668942928314209, + -0.10488235950469971, + -0.025207282975316048, + 0.027865231037139893, + -0.04233894869685173, + -0.12744244933128357, + 0.010990295559167862, + 6.580960325663909e-05, + 0.038785409182310104, + 0.047118090093135834, + -0.05108760669827461, + -0.04609670490026474, + 0.0855504497885704, + 0.17503488063812256, + 0.01815115287899971, + -0.06595077365636826, + 0.10100895911455154, + -0.045679669827222824, + 0.08901569247245789, + 0.04547639936208725 + ], + "file-minus-bold||documents,files,delete,write,remove,-": [ + -0.009566792286932468, + 0.06051074340939522, + -0.03344526141881943, + 0.053772054612636566, + 0.06409507989883423, + -0.03479715436697006, + 0.0712018832564354, + -0.015105658210814, + 0.05736548453569412, + 0.043137326836586, + 0.044248390942811966, + 0.07285567373037338, + 0.08609668165445328, + -0.0028995051980018616, + -0.06035603955388069, + 0.012768041342496872, + -0.05536055192351341, + 0.0007891469867900014, + -0.03777381405234337, + 0.009109054692089558, + -0.019317498430609703, + 0.05440225824713707, + 0.012634997256100178, + -0.026746274903416634, + 0.1357986479997635, + 0.03260296583175659, + -0.0010637560626491904, + -0.01846715249121189, + -0.013702270574867725, + -0.06064698472619057, + 0.01274398434907198, + -0.0007423047791235149, + 0.152528777718544, + 0.03419972583651543, + 0.07661078870296478, + 0.03170314431190491, + 0.0026240211445838213, + -0.05259573459625244, + -0.016543075442314148, + 0.04102183133363724, + 0.017893433570861816, + -0.015961438417434692, + -0.06732112914323807, + 0.015641119331121445, + -0.06489063054323196, + -0.047453321516513824, + -0.0810103565454483, + -0.05494086444377899, + 0.013790045864880085, + -0.004354368895292282, + 0.010793819092214108, + -0.020581383258104324, + -0.15000978112220764, + 0.020773766562342644, + 0.03904001787304878, + -0.01990603655576706, + -0.03710240125656128, + -0.008500785566866398, + -0.027984056621789932, + -0.031196173280477524, + 0.02826538495719433, + 0.026837404817342758, + -0.025806553661823273, + -0.02657366171479225, + 0.06493926793336868, + 0.06518929451704025, + -0.01444326713681221, + 0.0319431908428669, + -0.018987758085131645, + 0.05510694161057472, + 0.00790159311145544, + -0.03783188760280609, + -0.00876456405967474, + 0.009808577597141266, + -0.03947567567229271, + 0.040236663073301315, + 0.026348846033215523, + 0.08210776001214981, + -0.0526072159409523, + -0.05281220003962517, + 0.0021909757051616907, + -0.0528264045715332, + 0.0023397246841341257, + 0.01408946793526411, + 0.036957189440727234, + 0.0531543605029583, + -0.05153927952051163, + -0.062206171452999115, + -0.03827829658985138, + -0.010736391879618168, + -0.06407304853200912, + -0.060215119272470474, + 0.03348464146256447, + 0.03239721059799194, + -0.1254160851240158, + 0.013931890949606895, + 0.09073085337877274, + 0.10337771475315094, + -0.014812881126999855, + 0.07024405896663666, + 0.008936355821788311, + 0.027845116332173347, + 0.030650200322270393, + -0.03246455267071724, + -0.02698478288948536, + -0.009790261276066303, + 0.018154680728912354, + -0.024445192888379097, + -0.0002810430305544287, + -0.05638282373547554, + -0.0014632000820711255, + -0.11111795902252197, + -0.07112929224967957, + -0.06598660349845886, + -0.016578122973442078, + -0.0038366378284990788, + -0.018368234857916832, + 0.04990692436695099, + 0.05368931591510773, + 0.06601434201002121, + 0.053442128002643585, + -0.07273382693529129, + -0.06279502063989639, + -0.028103619813919067, + 0.008372381329536438, + -0.005025563295930624, + 0.06852708011865616, + -1.854915736301295e-34, + 0.05537004396319389, + 0.008935423567891121, + -0.0272445697337389, + 0.07285922765731812, + 0.058973267674446106, + 0.031013304367661476, + -0.0795622169971466, + -0.0809968113899231, + -0.12148083746433258, + 0.07994092255830765, + 0.09460484236478806, + 0.07019106298685074, + -0.040760476142168045, + 0.0651015117764473, + 0.009626517072319984, + 0.019242312759160995, + 0.030753137543797493, + -0.09531749039888382, + -0.07164455950260162, + -0.016792723909020424, + 0.0006702530663460493, + 0.05475866049528122, + -0.06665638834238052, + -0.016518905758857727, + -0.017034174874424934, + -0.0641506016254425, + 0.05219486728310585, + -0.09966196864843369, + -0.07125774025917053, + 0.005969855468720198, + -0.010098167695105076, + -0.02821367420256138, + 0.05859113857150078, + 0.045540951192379, + -0.05558817833662033, + 0.04802640527486801, + -0.11264214664697647, + -0.025261612609028816, + 0.0022987467236816883, + 0.04793655872344971, + -0.1018221527338028, + 0.010071131400763988, + -0.03137865662574768, + -0.06415865570306778, + 0.03968685865402222, + 0.14367325603961945, + 0.036415014415979385, + -0.06851271539926529, + -0.017313549295067787, + 0.03143009543418884, + 0.007398436311632395, + 0.04891602322459221, + 0.037471603602170944, + 0.02061123214662075, + -0.0008883976843208075, + -0.04027027636766434, + 0.021489698439836502, + 0.06521744281053543, + 0.033799126744270325, + -0.04050673171877861, + 0.09412512183189392, + 0.019179068505764008, + 0.005580643191933632, + -0.0428415909409523, + -0.021165398880839348, + 0.029320761561393738, + -0.03658581152558327, + 0.03688936308026314, + 0.05508434772491455, + -0.006171979941427708, + -0.06771347671747208, + 0.03768199309706688, + 0.0420360267162323, + 0.021416468545794487, + 0.0014931497862562537, + 0.0026458187494426966, + 0.044041234999895096, + -0.06181982532143593, + 0.04956553131341934, + -0.08787290006875992, + -0.11736416816711426, + -0.0022760822903364897, + -0.004564178176224232, + -0.0049606673419475555, + -0.021033821627497673, + 0.01464659720659256, + -0.022005876526236534, + -0.050039056688547134, + 0.007354270666837692, + -0.036489181220531464, + -0.007932447828352451, + 0.02972337231040001, + -0.04098265618085861, + -0.10442349314689636, + -0.07067076861858368, + -1.2885627647049832e-33, + 0.06193857640028, + 0.0024076486006379128, + -0.11146163195371628, + 0.01861482672393322, + -0.08524633198976517, + 0.040078189224004745, + 0.03691800683736801, + 0.0296456478536129, + 0.04195703566074371, + 0.007332773879170418, + 0.05950227007269859, + 0.011696914210915565, + -0.06492573022842407, + -0.06380611658096313, + 0.0198287945240736, + -0.018907567486166954, + -0.020078415051102638, + -0.05346066132187843, + -0.058352500200271606, + -0.004873144906014204, + -0.06613561511039734, + -0.010100632905960083, + 0.02918032929301262, + 0.10064903646707535, + 0.04236100986599922, + -0.03882632404565811, + -0.010950299911201, + -0.0013376155402511358, + -0.02948887273669243, + -0.03215445578098297, + -5.230302849668078e-05, + 0.06083729863166809, + 0.03365504369139671, + -0.016992833465337753, + -0.04721209779381752, + -0.057750459760427475, + -0.009524337016046047, + 0.036451276391744614, + -0.005482019390910864, + 0.05774657055735588, + -0.0497296005487442, + 0.02586965262889862, + 0.042929474264383316, + 0.0541277676820755, + -0.047949351370334625, + 0.01894296146929264, + -0.04761643335223198, + -0.05283123254776001, + 0.026457279920578003, + 0.0363692007958889, + 0.080827996134758, + -0.043659716844558716, + -0.05471169203519821, + -0.006139199715107679, + -0.01600799337029457, + -0.04048809036612511, + 0.040099721401929855, + -0.016681602224707603, + -0.05110812932252884, + 0.058746419847011566, + -0.036132410168647766, + 0.038352012634277344, + -0.014043331146240234, + -0.01437375321984291, + -0.012058990076184273, + -0.004566360730677843, + -0.00020891521126031876, + -0.03013024479150772, + 0.029974769800901413, + -0.03380341827869415, + 0.07452419400215149, + 0.0003469652438070625, + -0.03552103042602539, + 0.049794334918260574, + 0.0018430446507409215, + -0.06894296407699585, + 0.060374002903699875, + 0.0030850041657686234, + 0.001729286159388721, + 0.02386244386434555, + 0.036125704646110535, + 0.009767211973667145, + -0.026813440024852753, + 0.0661228597164154, + -0.04688858613371849, + 0.041649673134088516, + -0.1101706400513649, + 0.04279065877199173, + -0.02483462728559971, + 0.01902925781905651, + -0.025596030056476593, + 0.03976067528128624, + 0.07873152196407318, + -0.03889991343021393, + -0.04424220696091652, + -2.0412679546666368e-08, + -0.09421403706073761, + -0.07757041603326797, + -0.044059962034225464, + -0.03460016846656799, + 0.03137072175741196, + -0.027976561337709427, + -0.0208513755351305, + 0.019658811390399933, + 0.00011507266026455909, + -0.07107150554656982, + 0.10170438885688782, + -0.020556898787617683, + -0.13107506930828094, + -0.1253247857093811, + -0.0062842885963618755, + 0.04859744757413864, + 0.07445518672466278, + 0.04876350238919258, + -0.02975139208137989, + -0.00288771721534431, + 0.001625934848561883, + 0.06673169136047363, + -0.004967124667018652, + 0.03689773008227348, + 0.05930139869451523, + 0.020318761467933655, + -0.017621150240302086, + 0.08522341400384903, + 0.05034388601779938, + 0.04858488216996193, + 0.07203077524900436, + 0.023560065776109695, + 0.05104939639568329, + 0.000296519894618541, + -0.029455361887812614, + 0.0049509708769619465, + 0.03585904836654663, + 0.05969766154885292, + -0.03722158819437027, + 0.10538066923618317, + -0.053040001541376114, + 0.025217456743121147, + -0.014878069050610065, + -0.023063290864229202, + -0.06855909526348114, + -0.05209906026721001, + 0.04597294703125954, + -0.016278453171253204, + -0.07540292292833328, + -0.10153930634260178, + 0.03019833005964756, + 0.03141561895608902, + 0.005254093557596207, + 0.14251412451267242, + -0.06048440933227539, + -0.03719138726592064, + 0.07103702425956726, + 0.10469947755336761, + -0.009577775374054909, + -0.024877462536096573, + 0.11240870505571365, + -0.004259926732629538, + 0.038846202194690704, + -0.006558999884873629 + ], + "file-pdf-bold||documents,files,acrobat": [ + -0.0008726654341444373, + 0.01860005222260952, + -0.11994702368974686, + 0.07217808812856674, + 0.03421873599290848, + -0.011473937891423702, + 0.013306483626365662, + -0.013912385329604149, + 0.013777456246316433, + 0.03346830978989601, + 0.0015026290202513337, + 0.04224282130599022, + 0.056264348328113556, + 0.007122111041098833, + -0.021886618807911873, + -0.0020457457285374403, + -0.018435237929224968, + -0.026994705200195312, + 0.022600360214710236, + 0.03016180917620659, + 0.00032076489878818393, + 0.04319204017519951, + 0.1039218008518219, + -0.04156053811311722, + 0.07658607512712479, + -0.0005747149116359651, + -0.05478578433394432, + -0.02536916732788086, + -0.04526909068226814, + -0.06858590245246887, + 0.07160800695419312, + -0.009145719930529594, + 0.09171139448881149, + 0.049042388796806335, + 0.09058753401041031, + -0.008716508746147156, + -0.02210376039147377, + -0.05634978786110878, + 0.03625580295920372, + 0.07555355876684189, + 0.03412148728966713, + -0.04350297525525093, + -0.005645164754241705, + 0.033552903681993484, + -0.05190219357609749, + -0.055249717086553574, + -0.026107676327228546, + -0.03604232892394066, + 0.06525720655918121, + 0.025326693430542946, + -0.04028453677892685, + -0.014172611758112907, + -0.10904145240783691, + 0.0016078428598120809, + 0.05661043897271156, + -0.0038262668531388044, + -0.024000369012355804, + 0.009034514427185059, + -0.006115921773016453, + -0.05208418890833855, + -0.03773701563477516, + -0.015592245385050774, + -0.001489789574407041, + 0.0346827358007431, + 0.037531621754169464, + 0.07827906310558319, + 0.029011333361268044, + 0.0717143714427948, + -0.013343384489417076, + 0.031100114807486534, + 0.010153966024518013, + 0.019673319533467293, + 0.06810611486434937, + -0.02729014679789543, + 0.0071576423943042755, + 0.06002776697278023, + 0.03626526519656181, + 0.0342886783182621, + -0.06739984452724457, + -0.10462185740470886, + -0.0025748354382812977, + -0.03809553012251854, + 0.021078722551465034, + 0.015156427398324013, + 0.06810908764600754, + 0.023044554516673088, + -0.03873169794678688, + -0.09478326141834259, + -0.058113884180784225, + 0.04214688017964363, + -0.052561670541763306, + 0.032183658331632614, + -0.04804529994726181, + 0.045330606400966644, + -0.11514899134635925, + -0.0017569194315001369, + 0.12476461380720139, + -0.00954053271561861, + -0.01136549562215805, + 0.042652636766433716, + 0.040741950273513794, + 0.023421477526426315, + 0.09019099920988083, + -0.05330083891749382, + -0.06853915005922318, + -0.027665331959724426, + 0.010694337077438831, + -0.03698554262518883, + -0.0236175786703825, + -0.023455612361431122, + 0.031225081533193588, + -0.13982579112052917, + -0.060596611350774765, + -0.05959898978471756, + -0.05988190695643425, + 0.04196779057383537, + -0.0092678377404809, + -0.01900065504014492, + 0.011932477355003357, + 0.06966211646795273, + -0.06717188656330109, + -0.05791999772191048, + -0.06514295190572739, + -0.003227302571758628, + 0.011906239204108715, + -0.023447172716259956, + 0.09497574716806412, + -9.461126994711457e-34, + -0.005986387375742197, + -0.017607182264328003, + -0.08701548725366592, + 0.0910375714302063, + 0.06135616824030876, + 0.03853705897927284, + -0.03673761710524559, + -0.04709750786423683, + -0.09521413594484329, + -6.414209929062054e-05, + 0.08223892748355865, + 0.07659883052110672, + -0.03581169247627258, + 0.031600259244441986, + -0.027918178588151932, + -0.012485372833907604, + -0.06143873929977417, + 0.004059744533151388, + -0.0929926186800003, + 0.004517437424510717, + -0.06252535432577133, + 0.06997539848089218, + -0.0617067813873291, + -0.011990970000624657, + -0.07367502897977829, + -0.0013018256286159158, + 0.06258469820022583, + -0.07438004016876221, + -0.11245369166135788, + 0.009514900855720043, + -0.008119035512208939, + 0.08043697476387024, + 0.07082842290401459, + 0.011451722122728825, + -0.06035693734884262, + 0.024129170924425125, + -0.08609506487846375, + -0.0023131798952817917, + -0.005369408987462521, + 0.013312368653714657, + -0.08205728232860565, + 0.0077054561115801334, + 0.055498044937849045, + 0.0012957968283444643, + 0.010438403114676476, + 0.09614793956279755, + -0.004780588671565056, + -0.09519700706005096, + 0.01600944809615612, + -0.021801119670271873, + -0.015775445848703384, + 0.018775902688503265, + 0.03933022543787956, + 0.0024811101611703634, + 0.029802381992340088, + -0.028152624145150185, + -0.06564801931381226, + 0.0629960373044014, + 0.02552162855863571, + -0.04685574024915695, + 0.07357699424028397, + 0.026165911927819252, + -0.02775752730667591, + -0.06710271537303925, + -0.06662491708993912, + 0.08544991165399551, + -0.020023075863718987, + 0.03919391334056854, + 0.09008320420980453, + 0.017890403047204018, + 0.014209764078259468, + 0.06492936611175537, + 0.03733249008655548, + 0.008040414191782475, + 0.048360828310251236, + 0.09931862354278564, + 0.06913238018751144, + 0.004730992950499058, + 0.0178974699229002, + -0.1112942174077034, + -0.08490065485239029, + 0.010620121844112873, + 0.02510163001716137, + 0.018171854317188263, + -0.03335383161902428, + 0.04308876767754555, + -0.07942934334278107, + -0.014439797960221767, + 0.01977871172130108, + -0.049112752079963684, + 0.016236433759331703, + 0.0005270912079140544, + 0.01879344880580902, + -0.1263490617275238, + 0.003270661225542426, + -1.2804983224453654e-33, + 0.08026539534330368, + -0.004557874519377947, + -0.09208380430936813, + 0.021263306960463524, + -0.017377372831106186, + 0.060066815465688705, + -0.04887453839182854, + 0.028879424557089806, + -0.042890388518571854, + -0.011111694388091564, + 0.01612645760178566, + 0.002095350995659828, + -0.07996923476457596, + -0.09810357540845871, + 0.011391818523406982, + -0.07876529544591904, + 0.04157081991434097, + 0.027089852839708328, + -0.028824808076024055, + -0.024456478655338287, + -0.062108345329761505, + -0.03145328909158707, + 0.06517422944307327, + 0.1095903143286705, + 0.0747900977730751, + 0.00864832941442728, + -0.022329486906528473, + -0.034100137650966644, + -0.015743805095553398, + -0.002887438051402569, + 0.0019509063567966223, + 0.03742972016334534, + 0.004857759922742844, + 0.07469882071018219, + -0.03446247801184654, + -0.05075551196932793, + -0.008252134546637535, + 0.010398373939096928, + -0.01247180812060833, + 0.04773223400115967, + -0.01962597854435444, + 0.02849351242184639, + 0.01722561940550804, + -0.03509179502725601, + -0.035225383937358856, + 0.010178488679230213, + 0.04331085830926895, + -0.05606783181428909, + 0.03346531465649605, + 0.05319472402334213, + 0.03386591374874115, + -0.014560592360794544, + 0.001283439458347857, + -0.03531178832054138, + -0.0488918237388134, + -0.02383224293589592, + 0.0064209275878965855, + -0.04107141122221947, + -0.052716244012117386, + 0.06346846371889114, + -0.015107223764061928, + 0.047080427408218384, + -0.01479435246437788, + -0.016425570473074913, + -0.007582579739391804, + -0.04533245041966438, + -0.027220239862799644, + -0.03453916683793068, + 0.05586736276745796, + 0.02625773660838604, + 0.06303805112838745, + -0.04540344327688217, + -0.012689752504229546, + 0.04760417714715004, + 0.04051791876554489, + 0.02781044691801071, + 0.10410083085298538, + 0.018300872296094894, + -0.04346359148621559, + -0.02590177208185196, + 0.023422420024871826, + 0.01723279431462288, + -0.012384854257106781, + 0.06720338016748428, + -0.05410992354154587, + 0.09607508033514023, + -0.04578692093491554, + -0.041499339044094086, + -0.031862761825323105, + -0.016247455030679703, + 0.005857712589204311, + 0.04641476273536682, + 0.09846983850002289, + -0.045112863183021545, + -0.0593196265399456, + -1.7865453116883145e-08, + -0.030060864984989166, + -0.0018753060139715672, + 0.02217269502580166, + 0.004062367603182793, + 0.03407254442572594, + 0.005250649061053991, + -0.023859519511461258, + 0.024606747552752495, + -0.04478589817881584, + -0.055639758706092834, + 0.05013517290353775, + -0.07422857731580734, + 0.012011992745101452, + -0.11362940073013306, + 0.0291074700653553, + 0.023360352963209152, + 0.06938018649816513, + 0.020694518461823463, + -0.06285247951745987, + -0.00868021510541439, + -0.058367855846881866, + 0.018276039510965347, + -0.0046921344473958015, + 0.04703330248594284, + -0.010074222460389137, + 0.04754141718149185, + -0.051638469099998474, + 0.016437044367194176, + 0.07105110585689545, + 0.06342260539531708, + -0.02228570356965065, + 0.006208569277077913, + -0.04210418090224266, + 0.03397874906659126, + -0.08766380697488785, + -0.009428800083696842, + 0.1188158467411995, + -0.03469859063625336, + -0.0760546550154686, + 0.11293362081050873, + -0.04157077521085739, + 0.03936520591378212, + -0.015137605369091034, + -0.007237730547785759, + -0.016223760321736336, + -0.01025317795574665, + 0.08692771941423416, + -0.05815300717949867, + -0.09319128096103668, + -0.06106982380151749, + -0.00027404827415011823, + 0.023210663348436356, + 0.005071701481938362, + 0.1009296327829361, + -0.10198426991701126, + -0.10147197544574738, + 0.036616917699575424, + 0.12115685641765594, + -0.04242923483252525, + -0.017228631302714348, + 0.09871696680784225, + -0.07885689288377762, + 0.0527959018945694, + 0.06014217808842659 + ], + "file-plus-bold||documents,files,save,write,add,new,create,+": [ + -0.013239841908216476, + 0.00680706137791276, + -0.06321196258068085, + 0.09333950281143188, + 0.07551544159650803, + 0.01370153110474348, + 0.016904599964618683, + -0.003338122507557273, + 0.056644439697265625, + 0.08128082752227783, + 0.03048638068139553, + 0.053870536386966705, + 0.05802791938185692, + -0.0592413954436779, + -0.03062555566430092, + 0.018428247421979904, + -0.09761670231819153, + 0.008503569290041924, + -0.028427988290786743, + -0.05241323634982109, + 0.021189864724874496, + 0.022923003882169724, + 0.061797481030225754, + -0.003566307481378317, + 0.11896833032369614, + 0.018454518169164658, + -0.026132242754101753, + -0.021636255085468292, + 0.04490681365132332, + -0.042151086032390594, + 0.023449745029211044, + 0.005792671348899603, + 0.13204416632652283, + 0.010738421231508255, + 0.08612494170665741, + 0.05171870440244675, + -0.0012168296379968524, + -0.024378584697842598, + -0.030514761805534363, + -0.005098035093396902, + 0.013921362347900867, + -0.023973174393177032, + -0.017946265637874603, + 0.008713074028491974, + -0.0830068364739418, + -0.0812070220708847, + -0.041166771203279495, + -0.08883720636367798, + 0.044974662363529205, + 0.013618159107863903, + 0.012309941463172436, + -0.05585002154111862, + -0.15900819003582, + -0.0158971156924963, + 0.06547673046588898, + -0.004340158775448799, + -0.060793280601501465, + 0.007877940312027931, + -0.02904186025261879, + -0.02253214828670025, + 0.02821527235209942, + 0.013664544560015202, + 0.0203652773052454, + -0.01548297144472599, + 0.020389122888445854, + 0.08437294512987137, + -0.03897827863693237, + 0.07945860177278519, + -0.019095515832304955, + 0.02185731939971447, + 0.006739494390785694, + 0.029826264828443527, + -0.016985377296805382, + 0.01232730783522129, + -0.005404874682426453, + 0.00826147198677063, + 0.04428988695144653, + 0.06186830997467041, + -0.05407720059156418, + -0.07106238603591919, + -0.00020343091455288231, + -0.04526400938630104, + -0.0051964400336146355, + 0.02000664360821247, + 0.06328034400939941, + 0.05791022256016731, + -0.013084814883768559, + -0.052485156804323196, + -0.0522969551384449, + -0.04474198818206787, + -0.07567556202411652, + -0.051964957267045975, + 0.012057136744260788, + 0.03210887685418129, + -0.13455785810947418, + 0.006104255095124245, + 0.09402242302894592, + 0.06030084565281868, + -0.027242444455623627, + 0.011888345703482628, + 0.011566498316824436, + 0.03539789468050003, + 0.050983726978302, + -0.0017576873069629073, + 0.037469204515218735, + -0.018107976764440536, + 0.03170578181743622, + -0.0347643606364727, + -0.025208886712789536, + -0.02615581639111042, + 0.027201877906918526, + -0.08077485114336014, + -0.06362216174602509, + -0.09038057178258896, + -0.02538507804274559, + 0.008193167857825756, + -0.07785448431968689, + 0.0029774161521345377, + 0.06670074164867401, + 0.07507068663835526, + 0.13704133033752441, + -0.043395332992076874, + -0.06240973621606827, + -0.03441154211759567, + -0.026667091995477676, + -0.06006147339940071, + 0.06680967658758163, + -1.1006865331844302e-33, + 0.08116514980792999, + 0.025492994114756584, + -0.02664993144571781, + 0.13861636817455292, + 0.05576464906334877, + 0.02625572681427002, + -0.07360202074050903, + -0.040022190660238266, + -0.1498078554868698, + 0.015851549804210663, + 0.07135060429573059, + 0.025292662903666496, + -0.05965451896190643, + 0.10476086288690567, + 0.007525566499680281, + -0.04114685207605362, + 0.0076076737605035305, + -0.041887372732162476, + -0.047177981585264206, + -0.0038225871976464987, + -0.05476687103509903, + 0.06561789661645889, + -0.03811550885438919, + 0.01930949091911316, + 0.01628360152244568, + -0.00736604817211628, + 0.08151914924383163, + -0.09705191850662231, + -0.06861653923988342, + -0.008798284456133842, + -0.0036186687648296356, + -0.048093851655721664, + 0.03785262629389763, + 0.05413292720913887, + -0.08038292080163956, + 0.07137773931026459, + -0.09597437083721161, + 0.0009349072352051735, + 0.028819257393479347, + 0.045104123651981354, + -0.08422177284955978, + -0.01029935572296381, + -0.03354155644774437, + -0.052382953464984894, + 0.03124157525599003, + 0.11077123135328293, + -0.037818972021341324, + -0.060529373586177826, + -0.009218322113156319, + -0.0022547945845872164, + -0.023644106462597847, + 0.04989134147763252, + 0.0168742798268795, + 0.06978011876344681, + -0.011981765739619732, + -0.014812112785875797, + -0.02419329807162285, + 0.032902561128139496, + 0.030948840081691742, + -0.03208773955702782, + 0.0781259685754776, + 0.03677328675985336, + -0.0063764299266040325, + 0.013082009740173817, + -0.024584053084254265, + 0.032141298055648804, + 0.046888697892427444, + 0.04477878287434578, + 0.06982719898223877, + -0.00091869558673352, + -0.05373920500278473, + 0.009344023652374744, + -0.03694649413228035, + 0.03296802192926407, + 0.03411464765667915, + -0.017000198364257812, + 0.012795987538993359, + -0.052973583340644836, + -0.004936696030199528, + -0.08292009681463242, + -0.11226338893175125, + -0.03681220859289169, + -0.008806928060948849, + 0.0052377451211214066, + -0.003384251380339265, + 0.024028023704886436, + -0.039759695529937744, + -0.013925078324973583, + 0.01718786358833313, + -0.041926704347133636, + -0.014132223092019558, + 0.008560369722545147, + 0.013763220980763435, + -0.11860010027885437, + -0.06751420348882675, + -6.732547926241167e-34, + 0.0701649859547615, + -0.024982813745737076, + -0.11088018119335175, + 0.01837853342294693, + -0.0683056116104126, + 0.057167984545230865, + -0.0033005517907440662, + 0.00497850077226758, + -0.0005671657854691148, + 0.01687064953148365, + 0.03078741580247879, + 0.030635949224233627, + -0.057464849203825, + -0.03829486295580864, + -0.012203960679471493, + -0.0360601581633091, + -0.03252197429537773, + 0.010828526690602303, + -0.010092949494719505, + -0.025909770280122757, + -0.037071216851472855, + -0.02743922732770443, + 0.05779176950454712, + 0.08500035852193832, + 0.06203773617744446, + -0.00536283990368247, + -0.0390256829559803, + 0.014094016514718533, + -0.024478362873196602, + -0.0605936124920845, + 0.009605730883777142, + 0.07002720981836319, + -0.021960463374853134, + 0.009736401960253716, + -0.013964753597974777, + -0.03828510642051697, + 0.01556423306465149, + 0.019508618861436844, + -0.0017523829592391849, + 0.09142830222845078, + 0.002293175086379051, + -0.008979643695056438, + 0.030251653864979744, + 0.04930020496249199, + -0.04568630829453468, + -0.005018707364797592, + 0.0037979397457093, + -0.04607302322983742, + -0.009493805468082428, + 0.03442747890949249, + 0.10078995674848557, + -0.0631156861782074, + -0.06391248852014542, + -0.041080787777900696, + -0.004420289769768715, + -0.04125404730439186, + 0.05356219410896301, + -0.023166846483945847, + -0.040383730083703995, + 0.022546354681253433, + -0.038606103509664536, + 0.01698167994618416, + -0.017462896183133125, + -0.031135931611061096, + -0.031157100573182106, + -0.03495687246322632, + 0.01015358604490757, + -0.0578080378472805, + 0.0037047683726996183, + -0.025911793112754822, + 0.06887473911046982, + -0.007528939750045538, + -0.05230940505862236, + 0.049134235829114914, + -0.006666191853582859, + -0.03772047162055969, + 0.030961694195866585, + -0.015616755932569504, + 0.010956964455544949, + -0.007543676532804966, + 0.03266838192939758, + 0.01922653801739216, + 0.026772918179631233, + 0.05800202116370201, + -0.019991334527730942, + 0.024599386379122734, + -0.06438184529542923, + 0.06850950419902802, + -0.01426126528531313, + -0.006302315276116133, + -0.054905135184526443, + 0.11316051334142685, + 0.025014791637659073, + -0.04051952064037323, + -0.07144788652658463, + -2.1813846728946373e-08, + -0.09607125073671341, + -0.06995853781700134, + -0.09536145627498627, + -0.03260383382439613, + 0.03579818829894066, + -0.05783536285161972, + -0.03856917470693588, + 0.001365736243315041, + -0.027948152273893356, + -0.08740929514169693, + 0.0785931646823883, + -0.025533800944685936, + -0.0781317800283432, + -0.09942758828401566, + -0.029671980068087578, + 0.039471305906772614, + 0.08824214339256287, + 0.0245314072817564, + -0.023515017703175545, + -0.036920659244060516, + 0.02518339641392231, + 0.11419937014579773, + -0.01533713098615408, + 0.028261328116059303, + 0.017982831224799156, + 0.010802468284964561, + -0.007118736859411001, + 0.04139817878603935, + 0.053449422121047974, + 0.04397663474082947, + 0.09090089797973633, + 0.028556236997246742, + -0.01571400836110115, + 0.028561484068632126, + -0.021463880315423012, + 0.02078324928879738, + 0.06456378102302551, + 0.050027742981910706, + -0.023094287142157555, + 0.06946985423564911, + -0.024006400257349014, + 0.036227479577064514, + -0.004343369510024786, + -0.03573332726955414, + -0.05451576039195061, + -0.07408279925584793, + 0.023405369371175766, + -0.02491321600973606, + -0.06884030997753143, + -0.1235971674323082, + -0.026797225698828697, + 0.011202747002243996, + 0.09263116121292114, + 0.12301241606473923, + -0.05913008376955986, + -0.0393383614718914, + 0.06129107624292374, + 0.13985200226306915, + 0.05137677490711212, + -0.011856157332658768, + 0.07500594109296799, + -0.03549380600452423, + 0.07418923079967499, + 0.034591931849718094 + ], + "file-png-bold||documents,pictures,photograph": [ + -0.0005041487165726721, + 0.08282718807458878, + -0.029092976823449135, + 0.058281559497117996, + 0.08334490656852722, + -0.05708964169025421, + 0.02874409407377243, + 0.014026327058672905, + 0.04893646761775017, + 0.024330127984285355, + -0.020654967054724693, + 0.05513067543506622, + 0.09019654989242554, + 0.018289057537913322, + 0.03555120900273323, + 0.007399501744657755, + -0.09954819828271866, + -0.0002498562098480761, + -0.012924887239933014, + 0.006362603046000004, + -0.013111426495015621, + -0.01795295625925064, + 0.12199071049690247, + -0.08449573069810867, + 0.048648759722709656, + 0.038351863622665405, + 0.03470606356859207, + 0.008236650377511978, + 0.002385284984484315, + -0.08563344180583954, + 0.008420189842581749, + -0.0017670233501121402, + 0.11718661338090897, + 0.05914011597633362, + 0.06734400242567062, + 0.10670933127403259, + -0.0339798629283905, + 0.001359784509986639, + -3.563521386240609e-05, + 0.04372921958565712, + 0.07808439433574677, + -0.017721829935908318, + -0.02708827331662178, + -0.04233376309275627, + -0.021364854648709297, + -0.03440545126795769, + -0.02524029277265072, + -0.009505759924650192, + 0.012650825083255768, + -0.02804083190858364, + -0.05076557397842407, + -0.08181049674749374, + -0.1381606161594391, + -0.003731020260602236, + 0.05412609502673149, + -0.018998516723513603, + -0.03573240712285042, + -0.005209329072386026, + 0.05231824144721031, + -0.02308637648820877, + -0.00976178515702486, + 0.0570206344127655, + -0.015332336537539959, + 0.03607255592942238, + 0.09365726262331009, + 0.08719068020582199, + 0.00870057288557291, + 0.004871980287134647, + -0.022330915555357933, + -0.04884716495871544, + 0.027138495817780495, + -0.004191963467746973, + 0.01014672126621008, + -0.04767920821905136, + -0.047081246972084045, + 0.004190464504063129, + -2.942425271612592e-05, + 0.04605843871831894, + -0.03174326568841934, + -0.08776773512363434, + 0.05168219283223152, + -0.09416409581899643, + 0.018482698127627373, + 0.01678677834570408, + 0.12537750601768494, + 0.027725093066692352, + -0.06233809515833855, + -0.08521448820829391, + -0.07176201790571213, + -0.06122537702322006, + -0.06148229539394379, + -0.0026140278205275536, + -0.03718366101384163, + 0.12043694406747818, + -0.08398228138685226, + 0.009695746935904026, + 0.06951095908880234, + 0.011257372796535492, + -0.0332101434469223, + 0.04320506006479263, + 0.03150257095694542, + 0.04074994847178459, + 0.0842989981174469, + -0.034845322370529175, + 0.007028473075479269, + 0.053803976625204086, + 0.006498150527477264, + -0.04586538299918175, + 0.05045422539114952, + -0.020203569903969765, + -0.02633785456418991, + -0.08971583843231201, + -0.08471062779426575, + -0.09786839783191681, + -0.019536342471837997, + -0.015515653416514397, + -0.06492510437965393, + -0.0010233434149995446, + 0.04322509095072746, + -0.02245507948100567, + 0.0185825377702713, + -0.026193678379058838, + -0.08820449560880661, + -0.031181732192635536, + -0.015153076499700546, + -0.05419819429516792, + 0.024884751066565514, + -9.333617081715933e-34, + 0.02298766002058983, + 0.00131849548779428, + -9.932187094818801e-05, + 0.060938701033592224, + 0.04410209879279137, + -0.0021114000119268894, + -0.046240415424108505, + -0.1014513298869133, + -0.13392944633960724, + -0.0020042010582983494, + 0.03845838084816933, + 0.030715733766555786, + -0.06016040965914726, + 0.09162355214357376, + -0.006585049908608198, + 0.019863799214363098, + -0.04099797457456589, + -0.04310878366231918, + -0.01715722680091858, + 0.02921093814074993, + -0.050280872732400894, + -0.024053141474723816, + -0.0689736157655716, + 0.016129935160279274, + -0.0810922235250473, + -0.014097544364631176, + 0.1102997362613678, + -0.04959072917699814, + -0.013113951310515404, + -0.014087897725403309, + 0.015537777915596962, + 0.021179093047976494, + 0.07034426927566528, + 0.017114438116550446, + -0.08527090400457382, + 0.006039178464561701, + -0.11931326985359192, + 0.04324553534388542, + -0.0018698887433856726, + 0.06271104514598846, + -0.055154941976070404, + -0.01515487302094698, + 0.027560869231820107, + -0.015782734379172325, + -0.013498679734766483, + 0.13150475919246674, + -0.04503988102078438, + -0.06153370067477226, + -0.035857249051332474, + 0.03308217599987984, + 0.01599944196641445, + -0.017810266464948654, + -0.009762716479599476, + 0.051244597882032394, + -0.012147103436291218, + -0.055412039160728455, + 0.003959328401833773, + 0.052021924406290054, + -0.0003914055705536157, + -0.05035039409995079, + 0.12493640929460526, + 0.028511960059404373, + 0.002023781184107065, + 0.022525111213326454, + -0.009430067613720894, + 0.07042937725782394, + 0.02483348920941353, + 0.060509707778692245, + -0.011851138435304165, + 0.01586582325398922, + -0.01745615340769291, + 0.09824755042791367, + 0.023310115560889244, + -0.08415975421667099, + -0.003740862011909485, + 0.041987091302871704, + 0.03405613824725151, + 0.027531683444976807, + -0.002666151151061058, + -0.018296152353286743, + -0.10087914019823074, + 0.014158489182591438, + 0.024668540805578232, + 0.020061740651726723, + -0.07041624188423157, + 0.0300083477050066, + 0.04372945800423622, + -0.05653015151619911, + -0.003730278229340911, + 0.0004242688009981066, + -0.0006082720356062055, + 0.03491349145770073, + -0.033961132168769836, + -0.045138854533433914, + -0.06703303009271622, + 4.865440913030528e-34, + 0.12996640801429749, + 0.06232669949531555, + -0.06293889880180359, + 0.01727643981575966, + -0.040940310806035995, + 0.025167610496282578, + 0.08953601121902466, + 0.043819934129714966, + -0.01218913123011589, + 0.006534438114613295, + 0.038492053747177124, + -0.017249898985028267, + -0.07996685057878494, + -0.11910367757081985, + -0.008885270915925503, + -0.05374904349446297, + 0.04558870568871498, + 0.0398121103644371, + -0.0784856379032135, + -0.00586148863658309, + -0.0454859733581543, + 0.011154498904943466, + 0.03194568678736687, + 0.10473082959651947, + 0.02406248264014721, + 0.0592164620757103, + 0.040914829820394516, + -0.06724376976490021, + -0.05793078616261482, + -0.035436078906059265, + -0.0022422010079026222, + 0.028400525450706482, + 0.005929299630224705, + 0.022260546684265137, + -0.052800167351961136, + -0.022367803379893303, + 0.03729734942317009, + -0.02308175526559353, + 0.042976781725883484, + 0.0597786009311676, + -0.002220539376139641, + 0.07159535586833954, + -0.028463084250688553, + 0.023408781737089157, + -0.031220482662320137, + -0.03531115874648094, + 0.02917509898543358, + -0.04682997614145279, + 0.019210999831557274, + 0.1374976933002472, + 0.07624634355306625, + -0.022994136437773705, + 0.004681123420596123, + -0.012043319642543793, + -0.01862400397658348, + -0.05012893304228783, + -0.04116120561957359, + -8.565562893636525e-05, + -0.007245104759931564, + 0.03636246547102928, + -0.011666144244372845, + 0.007135660387575626, + -0.07524871081113815, + -0.031690798699855804, + -0.03480182960629463, + -0.005603277124464512, + -0.019345100969076157, + -0.06949692219495773, + 0.03609689325094223, + 0.05428518354892731, + 0.03653017058968544, + -0.001956371357664466, + 0.025317799299955368, + 0.11013633012771606, + 0.07296109944581985, + -0.00019920454360544682, + 0.04392758756875992, + 0.0601506344974041, + 0.006180806551128626, + -0.019259227439761162, + 0.021247319877147675, + -0.039969783276319504, + -0.024797679856419563, + 0.059488341212272644, + 0.01360836811363697, + 0.028253497555851936, + -0.04271337389945984, + -0.05749223008751869, + 0.04563579335808754, + -0.06600780040025711, + -0.0389011949300766, + 0.04090232774615288, + 0.07726249098777771, + -0.011581049300730228, + 0.03049260750412941, + -1.71890466305058e-08, + -0.0376378558576107, + -0.06823291629552841, + -0.0635744035243988, + -0.04104607552289963, + 0.0018404542934149504, + -0.045595932751894, + -0.006932029500603676, + -0.03772300109267235, + 0.007102465722709894, + -0.09223252534866333, + 0.07861300557851791, + -0.04767416790127754, + -0.07808608561754227, + -0.08889778703451157, + -0.0048376284539699554, + 0.013107029721140862, + 0.056987836956977844, + 0.0493631549179554, + -0.0072014788165688515, + -0.03661036863923073, + -0.04776697978377342, + 0.01156196091324091, + -0.04121546074748039, + 0.005638034548610449, + 0.024396948516368866, + 0.026426061987876892, + -0.060980722308158875, + -0.00769550446420908, + 0.041894931346178055, + 0.00047880763304419816, + 0.04222104698419571, + 0.03224961832165718, + 0.04918785020709038, + -0.0033078002743422985, + -0.035129908472299576, + 0.001698101288639009, + 0.03389101102948189, + -0.023776579648256302, + -0.07610027492046356, + 0.05141853168606758, + -0.008856183849275112, + -0.021884692832827568, + 0.013473168015480042, + -0.044848281890153885, + -0.024310171604156494, + -0.020680293440818787, + 0.11895370483398438, + -0.013763475231826305, + -0.07825125008821487, + -0.018424946814775467, + 0.010769232176244259, + -0.01788783259689808, + 0.010659079067409039, + 0.08425290137529373, + -0.06796570122241974, + -0.1229630708694458, + 0.10872536152601242, + 0.12098352611064911, + -0.02152084745466709, + 0.019570117816329002, + 0.07768376171588898, + -0.06776682287454605, + 0.023672837764024734, + 0.032040901482105255 + ], + "file-ppt-bold||documents,powerpoint,microsoft": [ + -0.07413119077682495, + 0.01905149221420288, + -0.016041431576013565, + 0.08450017124414444, + 0.07362761348485947, + 0.0023337085731327534, + 0.06285426765680313, + 0.03430916741490364, + 0.06818006187677383, + 0.02222142182290554, + -0.031102951616048813, + 0.1073392704129219, + 0.026428746059536934, + -0.013385375961661339, + 0.012472731992602348, + 0.03554737940430641, + -0.011524803936481476, + 0.0058625079691410065, + 0.0852397233247757, + 0.040455494076013565, + 0.028676873072981834, + 0.019802430644631386, + 0.04303233325481415, + -0.04593609645962715, + 0.08979123830795288, + 0.051070068031549454, + 0.007490126881748438, + -0.002165667014196515, + -0.027672776952385902, + -0.001269836095161736, + -0.026173202320933342, + -0.06837275624275208, + 0.10683908313512802, + 0.05889294669032097, + 0.08545224368572235, + 0.042370349168777466, + -0.009310547262430191, + -0.03942476212978363, + -0.007656326983124018, + 0.06237044557929039, + 0.08816453069448471, + -0.013454223982989788, + -0.02132653445005417, + -0.04821693152189255, + -0.002445321762934327, + -0.10372144728899002, + -0.05054418370127678, + -0.05026976764202118, + -0.026375608518719673, + 0.03825996443629265, + -0.02462621219456196, + -0.08184075355529785, + -0.06652641296386719, + -0.025721443817019463, + 0.03539750352501869, + -0.028422512114048004, + 0.013842521235346794, + 0.021485067903995514, + 0.036875639110803604, + -0.07942760735750198, + -0.044462304562330246, + 0.016002442687749863, + -0.0458371527493, + 0.016854234039783478, + 0.04732189327478409, + 0.12366363406181335, + 0.027829855680465698, + 0.0896691158413887, + -0.02985260635614395, + -0.0750034749507904, + -0.04164177179336548, + 0.019892817363142967, + 0.010260269977152348, + -0.03960508108139038, + -0.03354182466864586, + 0.005865850020200014, + -0.048072200268507004, + -0.018559981137514114, + -0.09261757135391235, + -0.05916912853717804, + 0.06455161422491074, + -0.04550589621067047, + -0.02983437478542328, + 0.05440913140773773, + 0.10928865522146225, + 0.02103354036808014, + -0.009652813896536827, + -0.03694015368819237, + -0.030162863433361053, + -0.016514010727405548, + -0.0924270823597908, + -0.01411464437842369, + -0.01750105805695057, + 0.08259296417236328, + -0.07756791263818741, + -0.06824491918087006, + -0.03177431598305702, + -0.053978316485881805, + -0.03610938787460327, + 0.0400894396007061, + 0.004075339064002037, + 0.05672425776720047, + 0.08673448115587234, + -0.022617140784859657, + -0.09468185901641846, + -0.0003572423884179443, + -0.02732028439640999, + -0.027901310473680496, + -0.014114209450781345, + 0.008262804709374905, + 0.016515767201781273, + -0.11223852634429932, + -0.07312436401844025, + -0.10196206718683243, + -0.025181148201227188, + 0.01658587157726288, + -0.11819949001073837, + 0.012818933464586735, + 0.016398532316088676, + -0.006134434137493372, + 0.003573383903130889, + -0.022445717826485634, + -0.08751041442155838, + -0.06520476192235947, + -0.023674840107560158, + -0.02949356846511364, + 0.07399337738752365, + -7.175563278062278e-34, + 0.000555463251657784, + 0.009878075681626797, + -0.013964816927909851, + 0.046373166143894196, + 0.040982842445373535, + 0.048328474164009094, + -0.06864757090806961, + -0.07942619919776917, + -0.0939047560095787, + 0.005035253241658211, + 0.10025389492511749, + 0.020130829885601997, + -0.024361710995435715, + 0.048310328274965286, + -0.03586547076702118, + 0.009938121773302555, + 0.01472554262727499, + 0.07446996122598648, + -0.06866444647312164, + 0.014821323566138744, + -0.0726274698972702, + 0.041091758757829666, + -0.05277407914400101, + -0.01857154443860054, + -0.06146633252501488, + 0.03152265399694443, + 0.08917418122291565, + -0.00021602016931865364, + -0.07050708681344986, + -0.01962853968143463, + -0.013073434121906757, + 0.01909213699400425, + 0.1038212925195694, + 0.0525563582777977, + -0.06961627304553986, + -0.028949571773409843, + -0.08674297481775284, + -0.05863478407263756, + 0.07167387008666992, + 0.021810604259371758, + -0.08896274119615555, + -0.03599927946925163, + 0.07006247341632843, + -0.05509189888834953, + 0.0011355847818776965, + 0.1314275860786438, + 0.005408001597970724, + -0.030042355880141258, + 0.004636938683688641, + 0.027685269713401794, + 0.0025771385990083218, + 0.07012327015399933, + -0.04917820170521736, + 0.04364488273859024, + -0.009537060745060444, + -0.0292312391102314, + -0.03449145331978798, + 0.06778424978256226, + 0.06260499358177185, + -0.06933879107236862, + 0.13007192313671112, + 0.04309718683362007, + 0.007659262977540493, + -0.0765313059091568, + -0.0487687848508358, + 0.07850945740938187, + -0.010209986008703709, + 0.02967769466340542, + 0.06436074525117874, + 0.04346947371959686, + 0.01534437108784914, + 0.026326226070523262, + -0.003780537284910679, + 0.013493667356669903, + 0.08085797727108002, + -0.013592810370028019, + 0.019235001876950264, + 0.11083029210567474, + 0.04730311781167984, + -0.06909333169460297, + -0.1625024825334549, + -0.05206526070833206, + 0.014728205278515816, + -0.009864342398941517, + -0.06718023866415024, + 0.034609030932188034, + 0.006242712959647179, + -0.03322453051805496, + -0.007624662481248379, + -0.006638332270085812, + -0.011303544975817204, + 0.0031892911065369844, + -0.08075501769781113, + -0.012907139025628567, + -0.03808998689055443, + -1.3532188110910477e-33, + 0.07695987075567245, + 0.022589275613427162, + -0.09463021904230118, + -0.0012250407598912716, + -0.055506862699985504, + 0.03762289881706238, + -0.0007685429882258177, + 0.028892014175653458, + 0.027869408950209618, + 0.05399790033698082, + 0.08820225298404694, + 0.011494825594127178, + -0.06385725736618042, + -0.10143963992595673, + 0.0539114810526371, + 0.007045532111078501, + 0.014337272383272648, + 0.0632246732711792, + -0.06193861737847328, + -0.0230353195220232, + 0.012069989927113056, + -0.04542482644319534, + 0.005438338499516249, + 0.09991733729839325, + 0.08499633520841599, + -0.029192378744482994, + 0.03265261650085449, + -0.07975738495588303, + 0.025631731376051903, + 0.006211887579411268, + -0.04174228012561798, + 0.08467931300401688, + -0.07631774991750717, + 0.026240168139338493, + -0.041303738951683044, + 0.013960660435259342, + 0.01350909098982811, + -0.018288731575012207, + 0.01610441505908966, + 0.06974484771490097, + -0.02053818292915821, + 0.005051362328231335, + 0.02288736030459404, + 0.022471994161605835, + -0.049549542367458344, + 0.013088776730000973, + 0.03769524022936821, + -0.027590913698077202, + 0.04166734218597412, + 0.03853975608944893, + 0.04245073348283768, + -0.0032622795552015305, + 0.03692135214805603, + -0.025604182854294777, + -0.03495308384299278, + -0.051112525165081024, + 0.01796703226864338, + -0.019636014476418495, + -0.08385752886533737, + -0.03751438856124878, + -0.025694813579320908, + 0.024071520194411278, + -0.029424941167235374, + 0.022191915661096573, + -0.009022889658808708, + -0.020250078290700912, + 0.026944268494844437, + -0.07725007832050323, + 0.049267448484897614, + 0.03342624381184578, + 0.010570565238595009, + -0.020455114543437958, + 0.005914162378758192, + 0.00809005368500948, + -0.006354079581797123, + 0.008999149315059185, + 0.013528761453926563, + 0.05459252744913101, + -0.03114420548081398, + -0.02676830068230629, + 0.10367781668901443, + 0.03474228456616402, + 0.030663281679153442, + 0.0026177004911005497, + -0.02926550805568695, + 0.04361821338534355, + -0.004468837287276983, + 0.00255714007653296, + 0.00011105854355264455, + 0.004837914370000362, + -0.11623069643974304, + 0.038918137550354004, + 0.11326076835393906, + 0.01348899770528078, + -0.06017051637172699, + -1.8638314003283085e-08, + -0.09851521253585815, + -0.022584646940231323, + -0.016655469313263893, + -0.043636471033096313, + -0.04572338983416557, + -0.049272503703832626, + -0.03245599567890167, + 0.040565066039562225, + -0.0041578724049031734, + -0.029526475816965103, + 0.020516926422715187, + -0.10616946220397949, + -0.028850622475147247, + -0.08904747664928436, + 0.01801305077970028, + 0.015695327892899513, + 0.018567731603980064, + 0.08974382281303406, + -0.03734399750828743, + -0.03640246018767357, + -0.022220399230718613, + 0.029595298692584038, + 0.013909909874200821, + 0.02193382754921913, + 0.0008208283688873053, + 0.07871565967798233, + -0.03402015194296837, + 0.025665517896413803, + 0.03351879119873047, + 0.048131491988897324, + 0.054981376975774765, + 0.015418602153658867, + -0.06536682695150375, + -0.007693219464272261, + -0.057638078927993774, + 0.02098914049565792, + 0.05833662673830986, + 0.06124198064208031, + 0.015941187739372253, + 0.09301824867725372, + -0.08715347200632095, + -0.02409200929105282, + -0.03078382834792137, + 0.008083461783826351, + -0.05015081912279129, + -0.024188697338104248, + 0.032913852483034134, + -0.021048007532954216, + -0.08890572190284729, + -0.023138923570513725, + -0.00217237020842731, + -0.0020219606813043356, + -0.00876876711845398, + 0.03410973772406578, + -0.05067748203873634, + -0.032366517931222916, + 0.08315016329288483, + 0.09705048054456711, + -0.07347183674573898, + 0.003790339222177863, + 0.054237063974142075, + -0.030647890642285347, + 0.04047800227999687, + 0.057700224220752716 + ], + "file-py-bold||*new*,documents,code,python": [ + -0.03811754658818245, + 0.033993273973464966, + -0.04500790312886238, + 0.08897414803504944, + 0.06260425597429276, + -0.07542017847299576, + 0.013077645562589169, + 0.009828082285821438, + -0.014547214843332767, + 0.004922713618725538, + -0.0005018998635932803, + 0.0967676043510437, + 0.05624668300151825, + -0.04721720516681671, + 0.03925502300262451, + 0.03608883172273636, + -0.06414707750082016, + 0.025407670065760612, + 0.04151812195777893, + -0.03286398574709892, + 0.05021164193749428, + 0.09138403087854385, + 0.07859161496162415, + 0.029464244842529297, + 0.036181870847940445, + -0.04019642621278763, + 0.03516072779893875, + -0.015356614254415035, + 0.017947573214769363, + -0.026257526129484177, + 0.03368630260229111, + 0.021773789077997208, + 0.10398142784833908, + 0.04046307131648064, + 0.13062359392642975, + 0.07038094848394394, + 0.003828152548521757, + -0.05377266928553581, + -0.0005188435316085815, + 0.06009289622306824, + 0.07879824191331863, + -0.023134510964155197, + -0.09019678831100464, + -0.03580358996987343, + -0.06289380043745041, + -0.04050270840525627, + -0.00540854362770915, + -0.01824481599032879, + 0.05282893031835556, + -0.06323686242103577, + -0.012947485782206059, + -0.05520300567150116, + -0.12218651920557022, + -0.06641225516796112, + 0.015656860545277596, + -0.009532780386507511, + -0.0038467987906187773, + -0.04769536107778549, + 0.00018726909183897078, + -0.10001272708177567, + 0.009521680884063244, + 0.05951482802629471, + 0.049400635063648224, + -0.0005326351383700967, + 0.008103332482278347, + 0.05603334307670593, + -0.02366599068045616, + 0.07896613329648972, + 0.007855976931750774, + 1.6216228004850564e-06, + -0.01035501342266798, + 0.0019714010413736105, + 0.036502521485090256, + 0.010535474866628647, + -0.017507614567875862, + -0.0872422382235527, + 0.04816848039627075, + 0.033852141350507736, + -0.05296923965215683, + -0.06765387952327728, + -0.0046278489753603935, + -0.10746464878320694, + 0.008977067656815052, + 0.0467492938041687, + 0.07945582270622253, + -0.004918818362057209, + -0.04589589312672615, + -0.006689636968076229, + -0.0601438507437706, + -0.04252545163035393, + -0.037509769201278687, + -0.08462880551815033, + -0.06375500559806824, + 0.051001813262701035, + -0.1000041663646698, + 0.04037922993302345, + 0.07568982988595963, + 0.015523114241659641, + -0.001737753045745194, + 0.05128366872668266, + 0.004975149407982826, + -0.015005199238657951, + 0.06610222905874252, + 0.023837653920054436, + 0.028722146525979042, + 0.06869124621152878, + 0.0013256915844976902, + -0.05596625804901123, + 0.001274707494303584, + -0.03180520609021187, + -0.010299299843609333, + -0.12398044764995575, + -0.04883350059390068, + -0.05163091793656349, + 0.018839137628674507, + 0.04683758690953255, + -0.014195065945386887, + 0.059211019426584244, + 0.019706297665834427, + 0.11029329895973206, + 0.09748928993940353, + -0.049050457775592804, + -0.000703857047483325, + -0.03370113670825958, + -0.02778521738946438, + -0.013652101159095764, + 0.015311391092836857, + -1.6937642999700646e-33, + 0.017506057396531105, + 0.0262327641248703, + -0.014428910799324512, + 0.08219800889492035, + 0.01880173198878765, + 0.03256116062402725, + 0.014508754946291447, + -0.06979633867740631, + -0.09941229224205017, + 0.010503950528800488, + 0.028483185917139053, + 0.04074510931968689, + -0.021557925269007683, + 0.06818932294845581, + -0.02839696779847145, + -0.013961444608867168, + -0.04161645844578743, + -0.015174432657659054, + -0.031158970668911934, + 0.01660202257335186, + -0.0824246034026146, + 0.04660015180706978, + -0.028192315250635147, + 0.01423648651689291, + -0.07747720927000046, + -0.05984189361333847, + 0.04540314897894859, + -0.0595315620303154, + -0.08751152455806732, + -0.006203274242579937, + -0.050947923213243484, + -0.004544301889836788, + 0.0938199907541275, + 0.06821316480636597, + -0.11490793526172638, + 0.04269951954483986, + -0.05364292860031128, + -0.057982683181762695, + -0.021286068484187126, + -0.0013115165056660771, + -0.06780215352773666, + 0.02166290394961834, + 0.021198296919465065, + -0.045742567628622055, + -0.008479920215904713, + 0.14317698776721954, + -0.0818677544593811, + -0.0006619717460125685, + -0.03461508825421333, + 0.04451718553900719, + 0.04441775754094124, + 0.03634508699178696, + -0.017740486189723015, + 0.07037730515003204, + -0.02500550076365471, + -0.017453879117965698, + -0.002409490058198571, + 0.03347276896238327, + 0.10030322521924973, + -0.12014453113079071, + 0.12724871933460236, + 0.010080095380544662, + 0.03201458975672722, + 0.028525391593575478, + 0.014969834126532078, + 0.0985804870724678, + 0.05512908473610878, + 0.11741052567958832, + 0.013332357630133629, + 0.02336849272251129, + -0.036051176488399506, + 0.06583505123853683, + -0.08922974765300751, + -0.009221525862812996, + 0.04828637093305588, + 0.008394051343202591, + 0.060928501188755035, + -0.017844313755631447, + 0.030480699613690376, + -0.07752722501754761, + -0.04055684432387352, + 0.01320752315223217, + -0.004844773095101118, + 0.038343723863363266, + -0.024040883406996727, + 0.0180880818516016, + 0.04038648307323456, + 0.0030854649376124144, + -0.00768565246835351, + -0.031455688178539276, + -0.04385163262486458, + -0.062004074454307556, + -0.029680250212550163, + -0.09728924930095673, + -0.0515175499022007, + -1.4200552158268952e-33, + 0.12091512978076935, + 0.02961263805627823, + -0.052252400666475296, + -0.011048917658627033, + -0.06307031214237213, + 0.028201082721352577, + 0.012377527542412281, + 0.06803212314844131, + 0.013191050849854946, + 0.02919282764196396, + 0.04976944997906685, + -0.04959918558597565, + -0.024114971980452538, + -0.057094771414995193, + 0.07527481019496918, + 0.020819559693336487, + -0.04701415076851845, + 0.1006883978843689, + -0.00434296065941453, + -0.010893605649471283, + -0.07875064760446548, + -0.033856216818094254, + -0.0003924957709386945, + 0.04979098215699196, + -0.009918139316141605, + -0.039452459663152695, + -0.030586661770939827, + -0.016475986689329147, + -0.05033361166715622, + -0.05320991948246956, + -0.055203210562467575, + 0.07431599497795105, + -0.07715091109275818, + 0.05545416846871376, + -0.010724570602178574, + 0.023568810895085335, + -0.002332607749849558, + -0.0440763421356678, + 0.04094244912266731, + 0.05273514240980148, + 0.05496620014309883, + 0.07249864935874939, + -0.0033431495539844036, + 0.04271421208977699, + -0.06711235642433167, + -0.00234935968182981, + 0.017476782202720642, + -0.015542675741016865, + -0.012661532498896122, + -0.005584509111940861, + 0.060207806527614594, + -0.012353261932730675, + 0.038478173315525055, + -0.021326424553990364, + -0.056646060198545456, + 0.008634313009679317, + 0.017726119607686996, + 0.03232581913471222, + -0.10051709413528442, + 0.020969480276107788, + -0.07627236843109131, + -0.010056858882308006, + -0.10108763724565506, + -0.01958063617348671, + -0.06129521131515503, + -0.0835246667265892, + -0.05880283936858177, + -0.04276035726070404, + 0.03390898182988167, + -0.04641751945018768, + 0.055397532880306244, + -0.018030965700745583, + -0.037585850805044174, + 0.06496728211641312, + 0.001325888792052865, + 0.023712050169706345, + 0.007699723821133375, + -0.032382696866989136, + -0.052278611809015274, + 0.04720793291926384, + 0.032345231622457504, + -0.03153428062796593, + -0.03348089009523392, + 0.03662693500518799, + -0.05867283418774605, + -0.0035299090668559074, + -0.028957486152648926, + 0.026050081476569176, + 0.02258511632680893, + -0.08022480458021164, + -0.03180055320262909, + 0.056604161858558655, + 0.05136225372552872, + -0.055735208094120026, + -0.030305318534374237, + -1.9344174262414526e-08, + -0.07431977242231369, + -0.02874613367021084, + -0.006651261821389198, + 0.005998675245791674, + -0.029669899493455887, + 0.0014633615501224995, + -0.045763783156871796, + -0.0261626448482275, + -0.056787729263305664, + -0.05153331533074379, + 0.05622665211558342, + -0.022914092987775803, + -0.03982026129961014, + -0.059046246111392975, + -0.0682062953710556, + 0.10364585369825363, + 0.02896180935204029, + 0.04348350688815117, + -0.008326026611030102, + -0.01364503987133503, + -0.013020431622862816, + 0.0569799430668354, + 0.022188343107700348, + 0.031746555119752884, + -0.013281523250043392, + 0.04877874255180359, + -0.001154167577624321, + -0.008637763559818268, + 0.010905183851718903, + 0.027720196172595024, + 0.07560861855745316, + -0.011893438175320625, + -0.03151636943221092, + 0.057509008795022964, + -0.04306989535689354, + -0.0015136763686314225, + -0.0012577231973409653, + -0.02974853105843067, + -0.008311057463288307, + 0.11404109001159668, + -0.08676271885633469, + 0.007777881342917681, + -0.04310223087668419, + -0.04282933101058006, + -0.047993920743465424, + -0.02605212852358818, + -0.028479458764195442, + -0.024951806291937828, + -0.08504191040992737, + -0.07607035338878632, + 0.005071656312793493, + 0.012164628133177757, + -0.021797580644488335, + 0.06402712315320969, + -0.04417143389582634, + -0.03073790669441223, + 0.03064846806228161, + 0.1560501605272293, + -0.04124273359775543, + -0.05801544710993767, + 0.04638528451323509, + 0.033420342952013016, + 0.11613546311855316, + 0.023140953853726387 + ], + "file-rs-bold||documents,code,rust": [ + -0.03176872804760933, + 0.010516551323235035, + -0.08016820251941681, + 0.07630079984664917, + 0.07151193916797638, + 0.009063253179192543, + 0.005870044697076082, + 0.034243110567331314, + -0.00789979100227356, + -0.0378076434135437, + -0.05103110894560814, + 0.07779844850301743, + 0.07402626425027847, + -0.010721014812588692, + 0.04352661222219467, + 0.03821325674653053, + -0.061992838978767395, + 0.030951673164963722, + 0.02233307436108589, + -0.0069649601355195045, + -0.0013764703180640936, + 0.053836483508348465, + 0.08743458986282349, + -0.010773233138024807, + 0.07402399182319641, + 0.049282945692539215, + 0.015661558136343956, + -0.00881048385053873, + -0.0036234655417501926, + -0.021239614114165306, + 0.05912233889102936, + 0.01682572066783905, + 0.1134442389011383, + 0.01121732871979475, + 0.07537537813186646, + 0.06824791431427002, + 0.03157290816307068, + -0.09561790525913239, + -0.035184185951948166, + 0.08408820629119873, + -0.04242347180843353, + 0.034292399883270264, + -0.09170332551002502, + -0.008126432076096535, + -0.014539461582899094, + -0.06073673442006111, + -0.014805707149207592, + -0.04580443352460861, + -0.008435412310063839, + -0.08424229919910431, + -0.049944743514060974, + -0.015934573486447334, + -0.0219314806163311, + -0.001215570606291294, + 0.040812477469444275, + -0.04571426659822464, + -0.035924337804317474, + -0.01691826805472374, + 0.012652125209569931, + -0.07166729867458344, + 0.041081503033638, + 0.03622826188802719, + 0.01486477442085743, + -0.03158127889037132, + 0.03963300958275795, + 0.10423793643712997, + -0.02221156843006611, + 0.0915844738483429, + -0.026199227198958397, + -0.019063755869865417, + 0.017794795334339142, + -0.010130634531378746, + -0.04498009756207466, + 0.002049664966762066, + -0.0658063292503357, + 0.05380033701658249, + 0.030494824051856995, + 0.021538088098168373, + -0.06815268844366074, + -0.11215879023075104, + -0.0887405052781105, + -0.057165492326021194, + -0.04522647708654404, + -0.011100332252681255, + 0.04468393698334694, + 0.12790413200855255, + -0.0292617529630661, + -0.0747695192694664, + -0.03834579139947891, + 0.08104349672794342, + 0.015239698812365532, + -0.07168340682983398, + -0.02595091052353382, + 0.03565394878387451, + -0.06887223571538925, + 0.025701746344566345, + 0.09165894985198975, + 0.06997023522853851, + -0.01897447556257248, + 0.04481722414493561, + -0.005144402850419283, + 0.0479261688888073, + -0.021433472633361816, + -0.05122799053788185, + -0.025649623945355415, + 0.01772128976881504, + 0.011645730584859848, + -0.002898742211982608, + -0.01682262308895588, + -0.05431833490729332, + 0.0554652065038681, + -0.1052449643611908, + -0.07817038148641586, + -0.04122680053114891, + -0.04011012613773346, + -0.021122140809893608, + -0.01297356840223074, + 0.01225677877664566, + 0.0235190037637949, + 0.15158383548259735, + 0.06307017058134079, + -0.002513512736186385, + -0.08134935051202774, + 0.036681294441223145, + 0.018805507570505142, + -0.03900672867894173, + 0.060564443469047546, + -2.2436219863763443e-33, + 0.05056121572852135, + 0.03528349846601486, + -0.08106492459774017, + 0.07744189351797104, + 0.02276783622801304, + -0.002056520665064454, + -0.03054879605770111, + -0.0528331883251667, + -0.09548483043909073, + 0.07220157235860825, + 0.04898544400930405, + 0.026952065527439117, + 0.008006937801837921, + -0.0278780534863472, + -0.059290800243616104, + -0.028309814631938934, + -0.029956499114632607, + -0.06656769663095474, + -0.025536559522151947, + -0.007834427990019321, + -0.046171125024557114, + 0.06049918383359909, + -0.07287032157182693, + -0.017055710777640343, + -0.07974225282669067, + -0.013120943680405617, + 0.04322018846869469, + -0.052415695041418076, + -0.03425401449203491, + 0.03067496418952942, + 0.020098775625228882, + -0.006529965903609991, + 0.06590473651885986, + 0.06872619688510895, + -0.04089450463652611, + -0.022122697904706, + -0.04596570134162903, + -0.011896179988980293, + -0.07591298967599869, + 0.05204091966152191, + -0.004589333664625883, + 0.034875065088272095, + -0.04201245307922363, + 0.030499599874019623, + 0.03672177717089653, + 0.06394463032484055, + -0.006615128368139267, + -0.004439201671630144, + -0.012620675377547741, + 0.009042389690876007, + -0.005668199621140957, + 0.09893762320280075, + 0.03607834130525589, + 0.051770906895399094, + 0.0592963881790638, + -0.04909504950046539, + 0.014851695857942104, + 0.012078018859028816, + 0.05398984253406525, + 0.0030823037959635258, + 0.08169297128915787, + 0.018893400207161903, + 0.012420309707522392, + -0.05446181073784828, + 0.013925306499004364, + 0.04973457753658295, + -0.006234172265976667, + 0.06761632114648819, + 0.02983783558011055, + 0.026035930961370468, + 0.0017960973782464862, + 0.060216400772333145, + 0.01827884279191494, + 0.0717773288488388, + -0.0314379520714283, + -0.007476260885596275, + 0.023960592225193977, + -0.0211716890335083, + 0.08552426099777222, + -0.11764463037252426, + -0.13239283859729767, + 0.004352745600044727, + 0.0066561149433255196, + 0.05317741632461548, + -0.02517533488571644, + 0.07023292779922485, + -0.007874052971601486, + -0.06477168947458267, + -0.03748996555805206, + -0.003125822637230158, + 0.03983337804675102, + -0.031353771686553955, + -0.015093756839632988, + -0.16640667617321014, + -0.0446409247815609, + 8.29551965340554e-34, + 0.10608286410570145, + -0.010169620625674725, + -0.09037131071090698, + 0.01485075056552887, + -0.09035468101501465, + 0.01736551709473133, + -0.01941237784922123, + 0.04007778689265251, + 0.007163625676184893, + 0.06769253313541412, + 0.017487194389104843, + -0.05767190828919411, + -0.027936507016420364, + -0.04067038372159004, + 0.055091869086027145, + -0.026948504149913788, + 0.027367068454623222, + 0.022124797105789185, + -0.007919811643660069, + 0.02658800035715103, + -0.0857914462685585, + -0.029045067727565765, + 0.05062171071767807, + 0.12143582850694656, + 0.033961329609155655, + 0.0014908858574926853, + -0.024258645251393318, + 0.00846437644213438, + -0.040673770010471344, + -0.04018101468682289, + 0.01897318661212921, + -0.01040145568549633, + -0.07915183901786804, + -0.014734165742993355, + -0.04667305201292038, + 0.01481754519045353, + 0.02574872598052025, + -0.004817664157599211, + 0.024248825386166573, + 0.07028362900018692, + 0.026168467476963997, + 0.023506391793489456, + -0.04140382632613182, + 0.04746624454855919, + -0.03973393142223358, + 0.002035400364547968, + -0.02167409285902977, + 0.012522049248218536, + 0.058659281581640244, + -0.030925335362553596, + 0.10936745256185532, + -0.02509341761469841, + 0.00930253230035305, + -0.005617443937808275, + -0.026960160583257675, + -0.10137298703193665, + -0.02117729000747204, + -0.02252039685845375, + -0.05264807492494583, + 0.09946797043085098, + 0.035210657864809036, + 0.006247687619179487, + -0.04323851689696312, + -0.0027850123587995768, + -0.030220966786146164, + -0.0957702025771141, + 0.0439949594438076, + -0.03164085000753403, + 0.06561128050088882, + -0.03518323227763176, + 0.08394007384777069, + -0.049307141453027725, + -0.002725935308262706, + 0.07330673933029175, + 0.033101920038461685, + -0.03512163087725639, + 0.04974674805998802, + 0.020041996613144875, + 0.030590979382395744, + 0.043503373861312866, + 0.0073282173834741116, + 0.006928481161594391, + -0.03439728170633316, + 0.08949313312768936, + 0.034111641347408295, + 0.032915953546762466, + -0.03284686803817749, + 0.05653690919280052, + 0.0020465701818466187, + -0.04498884081840515, + -0.021869055926799774, + 0.043270695954561234, + 0.044776756316423416, + -0.009905282407999039, + -0.0036938523408025503, + -1.5727543711818726e-08, + -0.04052692651748657, + -0.10283372551202774, + -0.08143308758735657, + 0.02204161137342453, + 0.014774912968277931, + 0.007574554532766342, + -0.05394291132688522, + -0.0848960131406784, + -0.06941107660531998, + -0.03498924896121025, + 0.05279828608036041, + -0.040087293833494186, + -0.09737493842840195, + -0.07372267544269562, + -0.0253306794911623, + 0.009403216652572155, + 0.04490887373685837, + 0.049065571278333664, + -0.04541296884417534, + -0.024899113923311234, + 0.003759831888601184, + 0.05234851315617561, + 0.02158437669277191, + -0.004552129656076431, + 0.02908596396446228, + 0.045936211943626404, + -0.012561879120767117, + -0.00033081957371905446, + 0.08219216018915176, + 0.013084635138511658, + 0.07062627375125885, + -0.008558271452784538, + 0.018406251445412636, + 0.012795606628060341, + -0.050581566989421844, + -0.0057762181386351585, + 0.02021639607846737, + 0.06182647868990898, + -0.048197563737630844, + 0.08840909600257874, + -0.11032181233167648, + -0.0009683091775514185, + -0.07405677437782288, + -0.021604454144835472, + -0.06372634321451187, + -0.046317581087350845, + -0.000726422353181988, + -0.013270635157823563, + -0.09294356405735016, + -0.11370775103569031, + 0.049314726144075394, + -0.05295468121767044, + 0.03343383967876434, + 0.14393796026706696, + -0.059317223727703094, + -0.04927631467580795, + 0.04614830017089844, + 0.08430792391300201, + -0.049875952303409576, + -0.02372431755065918, + 0.04701198264956474, + -0.02192152850329876, + -0.00634170463308692, + 0.03759273886680603 + ], + "file-sql-bold||documents,database": [ + 0.04633427783846855, + -4.825781161343912e-06, + -0.0916280746459961, + 0.1247008740901947, + -0.002917960984632373, + 0.024483632296323776, + 0.08229318261146545, + -0.0022268458269536495, + -0.003825763938948512, + 0.03168203681707382, + -0.008188139647245407, + 0.03883921355009079, + 0.12126927077770233, + -0.0754905492067337, + -0.02024254761636257, + 0.07037185877561569, + -0.03390306606888771, + -0.008690835908055305, + -0.0011005733394995332, + 0.07141929864883423, + -0.03322090208530426, + 0.07387522608041763, + 0.06824132800102234, + 0.030972138047218323, + 0.0705617368221283, + -0.007934042252600193, + 0.015714583918452263, + 0.01921463944017887, + -0.056119177490472794, + -0.05094839259982109, + -0.012791547924280167, + -0.014449778012931347, + 0.05703314393758774, + 0.10237259417772293, + 0.09980963915586472, + 0.007609130814671516, + 0.013329501263797283, + -0.07335323840379715, + 0.012069663032889366, + 0.012729572132229805, + 0.029921390116214752, + -0.07466816157102585, + -0.0668012797832489, + 0.05684255063533783, + -0.02933971770107746, + -0.0679379254579544, + -0.041962217539548874, + -0.00287852855399251, + 0.03625864535570145, + 0.011033531278371811, + -0.06039881333708763, + -0.0525285005569458, + -0.07469946891069412, + 0.024908458814024925, + 0.04370097815990448, + 0.05456055700778961, + -0.06817714869976044, + 0.046929776668548584, + -0.02910090610384941, + -0.02460400201380253, + -0.01047908142209053, + -0.006588539108633995, + 0.04589708521962166, + 0.022542811930179596, + 0.026512864977121353, + 0.058454275131225586, + -0.016300642862915993, + 0.05016158148646355, + 0.008657505735754967, + -0.06193934381008148, + 0.0060880896635353565, + -0.015398220159113407, + -0.035318974405527115, + -0.01038934476673603, + -0.03357482701539993, + 0.08700037002563477, + 0.03497915342450142, + 0.06436893343925476, + -0.03343772143125534, + -0.05607724189758301, + -0.04049115628004074, + -0.06891252845525742, + -0.018326837569475174, + 0.002512899925932288, + 0.07141243666410446, + -0.027955016121268272, + -0.008955355733633041, + -0.1072474792599678, + -0.06417100876569748, + -0.03256037086248398, + -0.05339924991130829, + -0.04546201974153519, + 0.025110706686973572, + 0.03373170644044876, + -0.11574067175388336, + -0.00930052436888218, + 0.07974650710821152, + 0.031866222620010376, + 0.09152758121490479, + 0.037969015538692474, + -0.009917485527694225, + 0.05655260011553764, + 0.00947489682585001, + -0.01464920025318861, + -0.1042284220457077, + -0.008919010870158672, + 0.05217955261468887, + -0.04052865877747536, + -0.005346658639609814, + -0.10240553319454193, + 0.025170397013425827, + -0.0705692395567894, + -0.054204393178224564, + -0.1205625832080841, + -0.04183012619614601, + -0.017901204526424408, + -0.05191385746002197, + -0.04502017796039581, + -0.004071292467415333, + 0.03947577625513077, + 0.015328127890825272, + -0.02704688534140587, + -0.06681495159864426, + -0.025628697127103806, + 0.028500940650701523, + 0.012815344147384167, + 0.07584574073553085, + -2.1445103638577555e-33, + 0.024023868143558502, + -0.0197000652551651, + -0.006471441127359867, + 0.014491939917206764, + 0.07860244810581207, + 0.03559030964970589, + -0.0554884597659111, + -0.06035304442048073, + -0.11422336846590042, + 0.07444655150175095, + 0.0544872060418129, + 0.03155319392681122, + -0.01871950738132, + 0.015340907499194145, + -0.028917944058775902, + 0.036350056529045105, + -0.02335895039141178, + -0.015759799629449844, + -0.05781891942024231, + 0.024988610297441483, + -0.058316681534051895, + 0.03507178649306297, + -0.020793331786990166, + 0.00026303500635549426, + 0.0005538660334423184, + -0.006360139697790146, + 0.0402606762945652, + -0.03132776543498039, + -0.023471033200621605, + 0.006876138970255852, + 0.0158974789083004, + -0.03548440709710121, + 0.037058450281620026, + -0.0069829788990318775, + -0.06561057269573212, + 0.045252129435539246, + -0.06027570739388466, + -0.006956529803574085, + 0.04498962685465813, + 0.1198868453502655, + -0.04406728222966194, + 0.0232256967574358, + 0.06249541789293289, + -0.018796179443597794, + 0.03753529489040375, + 0.1661946326494217, + -0.03571486845612526, + -0.09013620764017105, + -0.041564155369997025, + -0.039166565984487534, + -0.00620401743799448, + -0.01907312124967575, + 0.01745280809700489, + 0.0854407474398613, + 0.054109781980514526, + 0.01224680058658123, + 0.000821826746687293, + 0.04494958370923996, + 0.048764269798994064, + -0.04778781533241272, + 0.0068128956481814384, + -0.028569847345352173, + 0.010777652263641357, + -0.03554579243063927, + 0.02609608694911003, + 0.05731161683797836, + 0.03213148191571236, + 0.03789103031158447, + 0.07809744030237198, + -0.03340578451752663, + 0.009726635180413723, + 0.054891183972358704, + 0.03968590125441551, + -0.026530461385846138, + 0.0050429836846888065, + 0.021310610696673393, + 0.008690797723829746, + -0.057589441537857056, + 0.020211054012179375, + -0.02644233964383602, + -0.07421984523534775, + -0.02039382979273796, + -0.0916425809264183, + 0.029935386031866074, + -0.049380939453840256, + 0.07726819813251495, + -0.05480983853340149, + -0.055208250880241394, + -0.005018368363380432, + -0.017306111752986908, + 0.054491076618433, + 0.028550364077091217, + -0.010787730105221272, + -0.12520991265773773, + -0.00974902044981718, + -3.2549505155003856e-34, + 0.1158553957939148, + -0.007391462102532387, + -0.06982981413602829, + -0.03224772959947586, + -0.007459818385541439, + 0.04702599346637726, + 0.00338117522187531, + 0.043390318751335144, + -0.050297170877456665, + -0.007277011405676603, + 0.07229737937450409, + -0.008876217529177666, + -0.0765174925327301, + -0.056323982775211334, + -0.03182486817240715, + 0.0030372703913599253, + 0.02779330313205719, + 0.05657566338777542, + -0.06233808398246765, + 0.062164243310689926, + -0.017459988594055176, + -0.005890795961022377, + 0.005346351303160191, + 0.1254110336303711, + 0.07020767033100128, + -0.02840973250567913, + -0.049083299934864044, + -0.049575768411159515, + -0.04220237582921982, + 0.04815482720732689, + -0.028501346707344055, + 0.010585234500467777, + -0.027210762724280357, + -0.022329391911625862, + -0.03151840716600418, + -0.05287545174360275, + -0.013394576497375965, + -0.05519019812345505, + 0.03699721395969391, + 0.038767751306295395, + -0.04222078621387482, + 0.08599773049354553, + 0.0064844610169529915, + 0.020936204120516777, + -0.057631850242614746, + 0.0001412971323588863, + 0.011245343834161758, + -0.04627396538853645, + 0.0022971013095229864, + 0.021918032318353653, + 0.07088197767734528, + -0.0798884928226471, + 0.015899527817964554, + -0.013954903930425644, + 0.007897916249930859, + -0.07836897671222687, + -0.00801838282495737, + -0.02090214192867279, + -0.06503424048423767, + 0.06370901316404343, + -0.02007504552602768, + 0.1362227499485016, + -0.021220985800027847, + -0.05864955112338066, + -0.013326805084943771, + -0.028491899371147156, + -0.026205530390143394, + 0.00010302630835212767, + -0.002742901910096407, + -0.04040432348847389, + 6.258030771277845e-05, + -0.05157043784856796, + -0.006239369511604309, + 0.12525303661823273, + 0.07863358408212662, + 0.013381227850914001, + -0.0258274357765913, + 0.017318811267614365, + -0.03780481964349747, + 0.04168538749217987, + 0.06472653895616531, + -0.01166694238781929, + 0.0097197862342, + 0.03440530225634575, + -0.015186313539743423, + 0.007738387677818537, + -0.06404271721839905, + -0.053746871650218964, + -0.0398637056350708, + -0.020484380424022675, + -0.061101119965314865, + -0.004319149535149336, + 0.04850450158119202, + -0.024442177265882492, + -0.06595907360315323, + -1.5419832521956778e-08, + -0.06465309113264084, + -0.04725183919072151, + -0.025257311761379242, + -0.06095139682292938, + 0.08676169812679291, + -0.05810047686100006, + -0.04425068199634552, + 0.07337404787540436, + -0.037932269275188446, + -0.012964616529643536, + 0.06131666153669357, + -0.008898650296032429, + -0.026842810213565826, + -0.07772446423768997, + -0.021516241133213043, + 0.0174578744918108, + 0.0725383460521698, + -0.018872708082199097, + -0.03298190236091614, + -0.0065881735645234585, + -0.01552971825003624, + 0.08473578840494156, + -0.023987509310245514, + -0.015822680667042732, + 0.08313585817813873, + 0.06411215662956238, + -0.07454729080200195, + 0.038559623062610626, + 0.04180699586868286, + 0.05559135228395462, + 0.04759863391518593, + 0.01906718499958515, + -0.006433754228055477, + 0.03693411871790886, + -0.042626041918992996, + -0.010556072928011417, + 0.10484099388122559, + 0.05744234472513199, + -0.057459957897663116, + 0.06370092183351517, + -0.08233098685741425, + 0.0044745891354978085, + -0.036887943744659424, + -0.030200935900211334, + -0.061123743653297424, + -0.0552043616771698, + 0.04311128705739975, + 0.01088740210980177, + -0.06079431250691414, + -0.06551222503185272, + 0.016093021258711815, + -0.06407546252012253, + 0.05274760350584984, + 0.08714396506547928, + -0.08045046031475067, + -0.06565931439399719, + 0.10394813120365143, + 0.16726736724376678, + -0.03187136352062225, + -0.02634149231016636, + 0.07485742121934891, + -0.016858592629432678, + 0.07413605600595474, + 0.006598585285246372 + ], + "file-svg-bold||documents,images,vector": [ + 0.015656230971217155, + 0.022372497245669365, + -0.04193694144487381, + 0.07506120204925537, + 0.10483349859714508, + -0.05604073405265808, + 0.01872364617884159, + -0.018007786944508553, + 0.0818575769662857, + 0.03965013846755028, + -0.08640919625759125, + 0.10293150693178177, + 0.003913491033017635, + -0.008687415160238743, + 0.00856027752161026, + -0.0016905042575672269, + -0.08521437644958496, + 0.032061558216810226, + 0.011060189455747604, + 0.026808762922883034, + -0.0549909807741642, + 0.016074754297733307, + 0.11017093062400818, + -0.07674631476402283, + 0.056880783289670944, + 0.003877185983583331, + 0.04563971236348152, + -0.029220731928944588, + 0.0057427543215453625, + -0.06427057087421417, + 0.042303092777729034, + -0.02626110427081585, + 0.061520375311374664, + 0.09239066392183304, + -0.022550247609615326, + 0.11191917210817337, + 0.06869933009147644, + -0.03780841827392578, + -0.08139988034963608, + 0.07868000864982605, + 0.036259640008211136, + 0.038726676255464554, + -0.0029493498150259256, + -0.003276338567957282, + -0.014138655737042427, + 0.006899634376168251, + -0.05254750698804855, + -0.07034100592136383, + 0.042846597731113434, + -0.010504484176635742, + -0.08261474221944809, + -0.12917731702327728, + -0.07874388247728348, + -0.01046677678823471, + -0.0004129835870116949, + -0.04587063193321228, + 0.009353399276733398, + 0.017420735210180283, + 0.05111391097307205, + -0.0322478786110878, + 0.00452815368771553, + -0.03293729946017265, + 0.023732947185635567, + 0.014226788654923439, + 0.0521070659160614, + 0.04292276129126549, + 0.05436126887798309, + 0.06413649767637253, + -0.09500543773174286, + 0.009081264026463032, + 0.027293654158711433, + -0.014040863141417503, + 0.001427926472388208, + -0.03102712705731392, + -0.05273977294564247, + 0.043169353157281876, + 0.057871781289577484, + 0.0024646976962685585, + 0.08197040110826492, + -0.08633653819561005, + 0.00812612660229206, + -0.0632617175579071, + -0.013077870942652225, + 0.022260960191488266, + 0.06112783029675484, + 0.0765623152256012, + -0.06324738264083862, + -0.09909794479608536, + -0.03532453253865242, + 0.04255471006035805, + -0.038882795721292496, + 0.0234215147793293, + -0.009004686959087849, + 0.035020314157009125, + -0.0777779221534729, + -0.002774782944470644, + 0.0966658741235733, + 0.02591000683605671, + 0.020798886194825172, + 0.03420038893818855, + 0.07264667004346848, + 0.04439711943268776, + 0.056041307747364044, + -0.02601785399019718, + 0.052457958459854126, + 0.045761141926050186, + 0.0019581932574510574, + -0.025649523362517357, + 0.044382307678461075, + -0.047685593366622925, + 0.004005058668553829, + -0.053465377539396286, + -0.04665965959429741, + -0.030164029449224472, + -0.07111121714115143, + -0.0024616813752800226, + -0.015792030841112137, + 0.01587606407701969, + 0.057420410215854645, + 0.04451090842485428, + 0.019250990822911263, + 0.024165326729416847, + -0.009461718611419201, + -0.007284966763108969, + -0.01309330016374588, + 0.005614419002085924, + 0.02122371830046177, + -1.8247863696806553e-33, + -0.056406572461128235, + -0.011469248682260513, + -0.06297606974840164, + 0.06760603934526443, + -0.000314418226480484, + -0.0486590750515461, + -0.06897588819265366, + -0.061104901134967804, + -0.10031092166900635, + 0.03901249170303345, + -0.008495514281094074, + 0.008747601881623268, + -0.04408061504364014, + 0.10611234605312347, + 0.009044372476637363, + -0.013793082907795906, + 0.0037680701352655888, + -0.0266317967325449, + -0.10545845329761505, + -0.029440462589263916, + -0.019187118858098984, + -0.008236061781644821, + -0.04035978764295578, + -0.03580737113952637, + -0.01173419039696455, + -0.036007437855005264, + 0.046757135540246964, + -0.04975022375583649, + -0.07772668451070786, + -0.046071428805589676, + 0.0003933944390155375, + 0.03547888994216919, + 0.09394025802612305, + 0.06933729350566864, + -0.07051809132099152, + 0.03833431005477905, + -0.047383107244968414, + 0.02104935422539711, + -0.0055991229601204395, + 0.06035083904862404, + -0.01664305292069912, + -0.025644363835453987, + 0.01253422163426876, + -0.037654757499694824, + 0.027520883828401566, + 0.17707878351211548, + 0.0031534715089946985, + -0.10875682532787323, + 0.00419946014881134, + -0.022271491587162018, + -0.01619301736354828, + 0.03698236867785454, + -0.004076738376170397, + -0.001645085634663701, + 0.030372660607099533, + 0.01978933997452259, + 0.02373969554901123, + 0.039847444742918015, + 0.006302221678197384, + -0.06072282791137695, + 0.033935897052288055, + 0.053209032863378525, + 0.021119538694620132, + -0.05641019344329834, + -0.05465056374669075, + 0.016059445217251778, + 0.06282402575016022, + 0.0639459416270256, + 0.010440273210406303, + 0.00535975955426693, + 0.0647626593708992, + 0.06315049529075623, + -0.008945363573729992, + -0.062140706926584244, + -0.004547612275928259, + 0.03703278675675392, + 0.02126239612698555, + 0.005200130864977837, + 0.003421080531552434, + -0.02269587107002735, + -0.12823688983917236, + 0.008261807262897491, + 0.019577860832214355, + -0.009541796520352364, + -0.023641983047127724, + 0.08163195103406906, + 0.032538846135139465, + -0.052976883947849274, + 0.02873348630964756, + -0.006363652180880308, + -0.03404873609542847, + 0.032211702316999435, + -0.006373030133545399, + -0.10096444189548492, + -0.0943247526884079, + 5.226611093143195e-34, + 0.036571018397808075, + 0.04890138655900955, + -0.05538005754351616, + 0.019911063835024834, + -0.018323419615626335, + 0.06105514615774155, + 0.014759104698896408, + 0.06534767150878906, + -0.05971400439739227, + 0.0027090164367109537, + 0.0691550076007843, + -0.0426667183637619, + -0.0809038057923317, + -0.03979761153459549, + -0.008313724771142006, + -0.016702456399798393, + -0.015035273507237434, + 0.04523088037967682, + -0.06582047045230865, + -0.04603324458003044, + -0.06544803828001022, + 0.014635114930570126, + 0.0699242353439331, + 0.13587415218353271, + 0.07032163441181183, + -0.005608285311609507, + 0.032263267785310745, + -0.01500985398888588, + -0.07644319534301758, + -0.07187335938215256, + -0.0044636898674070835, + -0.030453801155090332, + 0.06346863508224487, + 0.03136935457587242, + 0.024117734283208847, + 0.0037031553220003843, + -0.0049966382794082165, + -0.004653610289096832, + 0.014389244839549065, + 0.052656129002571106, + -0.034577690064907074, + 0.06597571820020676, + -0.03604387491941452, + 0.017603464424610138, + -0.08454415947198868, + 0.011752067133784294, + 0.05526045709848404, + -0.015322456136345863, + 0.013429483398795128, + 0.03375982493162155, + 0.04772971570491791, + -0.01184086687862873, + 0.01560699287801981, + 0.03347194194793701, + -0.04522029682993889, + -0.0523403137922287, + -0.03403530269861221, + -0.015161042101681232, + -0.06100291758775711, + 0.021586451679468155, + -0.031759340316057205, + 0.022829094901680946, + -0.042135756462812424, + -0.011361411772668362, + 0.056919243186712265, + -0.006353347096592188, + -0.05150572955608368, + -0.0819506123661995, + 0.0376356802880764, + 0.03213728219270706, + 0.02362995222210884, + 0.047023747116327286, + 0.04044121131300926, + 0.04667622596025467, + 0.043166860938072205, + -0.02618686482310295, + 0.07449281215667725, + 0.044410571455955505, + 0.05867166444659233, + -0.05662159249186516, + 0.0016179847298189998, + -0.004943494684994221, + -0.0037083025090396404, + 0.14988720417022705, + -0.021719636395573616, + 0.03934691846370697, + -0.046260662376880646, + -0.04339723661541939, + -0.003984909038990736, + -0.009730914607644081, + -0.06402835249900818, + 0.01790470816195011, + 0.0809711366891861, + -0.02873923070728779, + 0.02217407338321209, + -1.7250203043772672e-08, + -0.019485363736748695, + -0.033419422805309296, + -0.06119931861758232, + -0.06495451927185059, + -0.0005767595139332116, + -0.06357566267251968, + -0.04684162139892578, + -0.037716906517744064, + -0.10402587801218033, + -0.022050948813557625, + -0.03907540813088417, + -0.020251376554369926, + -0.09081421047449112, + -0.07594545930624008, + -0.014852048829197884, + -0.032537445425987244, + 4.057329351780936e-05, + 0.10184763371944427, + -0.012616151012480259, + -0.012369928881525993, + -0.00999640766531229, + 0.05128743499517441, + -0.04117472469806671, + 0.09334665536880493, + 0.057574234902858734, + 0.035706400871276855, + -0.0721374899148941, + -0.01210258062928915, + 0.167964905500412, + 0.004024995490908623, + -0.03652237728238106, + 0.01197298988699913, + -0.04354221001267433, + 0.03112637810409069, + -0.01573791913688183, + 0.009707856923341751, + -0.025491802021861076, + -0.02370523102581501, + -0.0606393963098526, + 0.0869622528553009, + -0.04429854825139046, + -0.024251919239759445, + 0.045572519302368164, + -0.046710457652807236, + -0.0676586851477623, + 0.002986480249091983, + 0.045561809092760086, + -0.06701227277517319, + -0.08542386442422867, + -0.07326649874448776, + 0.0005119385314173996, + -0.03722808510065079, + 0.02004917711019516, + 0.12552878260612488, + -0.03783433511853218, + -0.12381923198699951, + 0.053341347724199295, + 0.13484600186347961, + -0.0073915403336286545, + 0.02516569383442402, + 0.06615915894508362, + -0.010936865583062172, + 0.025510702282190323, + -0.0003923852927982807 + ], + "file-text-bold||documents,files,save,write": [ + 0.030283765867352486, + 0.04463887959718704, + -0.05398039147257805, + 0.12330228090286255, + 0.07190452516078949, + 0.0049923802725970745, + 0.03238922730088234, + 0.013690143823623657, + 0.06888588517904282, + 0.06649865955114365, + -0.014447473920881748, + 0.07494242489337921, + 0.07051976770162582, + -0.052715130150318146, + -0.023814814165234566, + 0.0224432535469532, + -0.05981516093015671, + -0.0029717397410422564, + -0.04093321040272713, + -0.00037729961331933737, + 0.006461033131927252, + 0.0745663046836853, + 0.09565728902816772, + 0.004103559534996748, + 0.08172400295734406, + 0.03907079994678497, + 0.013281683437526226, + -0.023697838187217712, + -0.010797709226608276, + -0.036306753754615784, + -0.0022252274211496115, + -0.013130231760442257, + 0.11708306521177292, + 0.024396425113081932, + 0.08807327598333359, + 0.07352319359779358, + -0.008234289474785328, + -0.04817970097064972, + -0.042879924178123474, + 0.018719563260674477, + 0.0207329411059618, + -0.05662745609879494, + -0.021400490775704384, + 0.022689858451485634, + -0.06621669977903366, + -0.07452037185430527, + -0.026770951226353645, + -0.03961995244026184, + 0.003264562226831913, + 0.0003680822264868766, + -0.019650639966130257, + -0.04725189134478569, + -0.11891864985227585, + -0.014605388976633549, + 0.0239265076816082, + -0.010578973218798637, + -0.031351618468761444, + -0.008259204216301441, + 0.005439688451588154, + -0.028841136023402214, + 0.00624386640265584, + 0.0393463671207428, + 0.007730408105999231, + -0.009201420471072197, + 0.029410092160105705, + 0.10233471542596817, + -0.001842709956690669, + 0.08204904198646545, + -0.056235864758491516, + -0.0017346787499263883, + 0.021002810448408127, + 0.018703995272517204, + -0.015691334381699562, + -0.00902065820991993, + -0.009542170912027359, + 0.0110609857365489, + 0.026548590511083603, + 0.05029842257499695, + -0.03946371376514435, + -0.0544942282140255, + 0.003816092386841774, + -0.0794309675693512, + 0.010106829926371574, + 0.021089978516101837, + 0.054257895797491074, + 0.0544210784137249, + -0.009227975271642208, + -0.048417333513498306, + -0.04986095800995827, + -0.0322357639670372, + -0.06375039368867874, + -0.03689584508538246, + 0.04865920916199684, + 0.029338281601667404, + -0.1705159842967987, + -0.0032395317684859037, + 0.09406787902116776, + 0.07288075983524323, + 0.007454659324139357, + 0.03277115896344185, + 0.035022225230932236, + 0.03985045477747917, + 0.057292573153972626, + 0.0032695187255740166, + -0.001535678398795426, + -0.010344349779188633, + 0.06989872455596924, + -0.04616245627403259, + 0.00125413597561419, + -0.05913122743368149, + 0.03456401079893112, + -0.11188273876905441, + -0.09855877608060837, + -0.055622804909944534, + -0.021688150241971016, + -0.0206865556538105, + -0.08252809941768646, + 0.009294991381466389, + 0.031252421438694, + 0.12243339419364929, + 0.057116519659757614, + -0.04658098518848419, + -0.07655705511569977, + -0.025770150125026703, + 0.01472201943397522, + -0.04293420910835266, + 0.10583148896694183, + -1.781511279839102e-33, + 0.06194842979311943, + 0.01961267553269863, + -0.036396026611328125, + 0.1331789791584015, + 0.041375644505023956, + 0.012416359968483448, + -0.06450291723012924, + -0.08013471961021423, + -0.11266474425792694, + 0.005788784008473158, + 0.07347247004508972, + 0.029799873009324074, + -0.016819534823298454, + 0.06611810624599457, + 0.002098526107147336, + -0.03899914026260376, + -0.0240789782255888, + -0.05251338705420494, + -0.03497486561536789, + 0.02116779051721096, + -0.0307597853243351, + 0.06486049294471741, + -0.034012965857982635, + -0.01842883788049221, + -0.03556029871106148, + -0.023794373497366905, + 0.05833285301923752, + -0.08612027019262314, + -0.06643244624137878, + -0.0049902694299817085, + -0.012965437024831772, + -0.021510977298021317, + 0.10757429897785187, + 0.03129354491829872, + -0.10376280546188354, + 0.04056688770651817, + -0.09415721148252487, + -0.012174095958471298, + 0.011953978799283504, + 0.03324923664331436, + -0.08244892954826355, + -0.006272269878536463, + 0.032136980444192886, + -0.053456861525774, + 0.022179992869496346, + 0.12258763611316681, + -0.038340672850608826, + -0.0382528081536293, + -0.013083010911941528, + 0.00892173033207655, + -0.013866372406482697, + 0.040429916232824326, + 0.02611004374921322, + 0.04865662008523941, + 0.03916293382644653, + -0.02494855597615242, + 0.004618823062628508, + 0.014291576109826565, + 0.05166463926434517, + -0.013933000154793262, + 0.07421088218688965, + 0.024122552946209908, + -0.005579696968197823, + -0.024799838662147522, + -0.019995197653770447, + 0.043723490089178085, + 0.03182903304696083, + 0.026005929335951805, + 0.06418909132480621, + -0.023529158905148506, + -0.05529915541410446, + 0.009682674892246723, + -0.017966583371162415, + 0.030881697311997414, + 0.004639897961169481, + 0.03297916427254677, + 0.006364905741065741, + -0.05722519010305405, + -0.003832473885267973, + -0.0854269340634346, + -0.0992555245757103, + -0.04311225563287735, + -0.009253171272575855, + -0.006107525900006294, + -0.004237663932144642, + 0.025764506310224533, + -0.047021929174661636, + -0.06165483593940735, + 0.005572066176682711, + -0.0022767498157918453, + 0.006624159868806601, + 0.024527475237846375, + -0.004520812537521124, + -0.14081276953220367, + -0.03239166736602783, + 1.2290147004507224e-34, + 0.10374166816473007, + -0.016446949914097786, + -0.10940686613321304, + 0.04630370810627937, + -0.03850075602531433, + 0.07272998988628387, + -0.005628515034914017, + 0.03898830711841583, + 0.008769444189965725, + 0.005827130749821663, + -0.007738595362752676, + 0.016389060765504837, + -0.0439126156270504, + -0.05368220433592796, + -0.0051554120145738125, + -0.032190676778554916, + 0.027274223044514656, + -0.007756816688925028, + -0.023369695991277695, + -0.05228055268526077, + -0.06186569854617119, + -0.056490641087293625, + 0.04929761961102486, + 0.09959686547517776, + 0.05648117884993553, + -0.0215267613530159, + -0.05129318684339523, + -0.006848892197012901, + -0.04988199472427368, + -0.03972126170992851, + -0.025691313669085503, + 0.039815038442611694, + -0.004586595576256514, + 0.0011788099072873592, + -0.008832227438688278, + -0.030170252546668053, + 0.0040228841826319695, + -0.009034120477735996, + -0.0036161865573376417, + 0.09659097343683243, + 0.012702989391982555, + 0.027702132239937782, + 0.0019283532164990902, + 0.016917159780859947, + -0.04998454079031944, + 0.015610335394740105, + -0.03142548352479935, + -0.04904786869883537, + 0.026216331869363785, + 0.06533500552177429, + 0.08597838133573532, + -0.061493393033742905, + -0.030962374061346054, + -0.04604361951351166, + -0.014597786590456963, + -0.047628533095121384, + 0.036693498492240906, + -0.0470099076628685, + -0.05925777554512024, + 0.034858617931604385, + -0.031955551356077194, + 0.032228514552116394, + -0.003303798846900463, + -0.009812988340854645, + -0.004728515632450581, + -0.06445685774087906, + 0.049883075058460236, + -0.03163238987326622, + 0.030772740021348, + 0.011812709271907806, + 0.05456823110580444, + -0.059185467660427094, + -0.03096405789256096, + 0.06920544803142548, + 0.03597730025649071, + -0.028311628848314285, + 0.02599765732884407, + -0.021680092439055443, + -0.03771957755088806, + 0.0033667844254523516, + 0.06717153638601303, + 0.04500490799546242, + -0.0015515864361077547, + 0.08286713063716888, + -0.00644049933180213, + 0.0456373356282711, + -0.044616468250751495, + 0.00587447127327323, + 0.00030872723436914384, + -0.007546442095190287, + -0.05159800872206688, + 0.07588710635900497, + 0.06011276692152023, + -0.04529548063874245, + -0.05940137058496475, + -1.7359997883659162e-08, + -0.09745092689990997, + -0.06830044090747833, + -0.09075384587049484, + 0.007027386222034693, + -0.014070701785385609, + -0.05486629530787468, + -0.02546844445168972, + -0.044147323817014694, + -0.023457445204257965, + -0.060992006212472916, + 0.07458044588565826, + -0.0633370652794838, + -0.08694525063037872, + -0.11281141638755798, + -0.0310672614723444, + 0.027300260961055756, + 0.06509358435869217, + 0.0034632354509085417, + -0.02293628267943859, + -0.04712545871734619, + 0.019113782793283463, + 0.07278387993574142, + -0.011006203480064869, + 0.03032996505498886, + 0.05375487357378006, + 0.03155994787812233, + -0.028804467990994453, + 0.04592479392886162, + 0.06712845712900162, + 0.04871613532304764, + 0.06123175844550133, + 0.004342830739915371, + 0.010466372594237328, + 0.032132260501384735, + -0.053325772285461426, + -0.005033590830862522, + 0.08213219791650772, + 0.031630195677280426, + 0.006969311274588108, + 0.10157027840614319, + -0.015475737862288952, + 0.042536940425634384, + -0.04863550513982773, + -0.04528557136654854, + -0.0388922318816185, + -0.056198589503765106, + 0.04551013931632042, + -0.015366342850029469, + -0.0574645921587944, + -0.1059771478176117, + -0.04829341918230057, + 0.013592077419161797, + 0.04740817844867706, + 0.15718887746334076, + -0.050923630595207214, + -0.09121000021696091, + 0.07270187139511108, + 0.1504543125629425, + 0.022877955809235573, + -0.057233039289712906, + 0.09996195137500763, + 0.002410672837868333, + 0.049927718937397, + 0.013789249584078789 + ], + "file-ts-bold||documents,code,typescript": [ + -0.03460017219185829, + 0.006799202412366867, + -0.014836551621556282, + 0.09716677665710449, + 0.03275781869888306, + 0.00846332311630249, + 0.07501169294118881, + 0.060780446976423264, + -0.00477474182844162, + 0.07691071182489395, + -0.0902397558093071, + 0.09027119725942612, + -0.010181824676692486, + 0.001984132220968604, + 0.04641878232359886, + 0.004672184586524963, + -0.04202244058251381, + -0.015076621435582638, + 0.02708556316792965, + -0.01864772103726864, + 0.037355225533246994, + 0.03631701320409775, + 0.0793866440653801, + -0.021424874663352966, + 0.04274202510714531, + 0.018981385976076126, + 0.02152203768491745, + -0.0363980270922184, + 0.03720840811729431, + -0.006912006996572018, + -0.021494554355740547, + -0.002326926914975047, + 0.03573501855134964, + 0.03887931630015373, + 0.036174606531858444, + 0.05285598337650299, + -0.005933831911534071, + -0.05971287935972214, + 0.03268362581729889, + 0.07119966298341751, + 0.026406096294522285, + 0.04110989719629288, + -0.04445755481719971, + -0.03666052222251892, + -0.021427832543849945, + -0.0994558334350586, + -0.05673954635858536, + -0.049223337322473526, + -0.03977639228105545, + -0.006116544362157583, + -0.04271769896149635, + -0.025998303666710854, + -0.08808180689811707, + -0.03677463158965111, + 0.04158736392855644, + -0.04714729264378548, + -0.08311762660741806, + -0.003070252016186714, + 0.04227229952812195, + -0.05957615375518799, + 0.005028900690376759, + 0.0037957807071506977, + 0.041762009263038635, + -0.049931302666664124, + 0.07062972337007523, + 0.11967641115188599, + -0.02874576859176159, + 0.12152931839227676, + -0.008072366006672382, + -0.020803004503250122, + 0.009765125811100006, + -0.011724889278411865, + 0.02677810750901699, + 0.017860112711787224, + -0.026857690885663033, + -0.06360632926225662, + 0.01470401231199503, + 0.05431605130434036, + -0.0047735655680298805, + -0.049283467233181, + -0.02750147506594658, + -0.08995480835437775, + 0.02136077918112278, + 0.053578417748212814, + 0.04371374845504761, + 0.07156586647033691, + -0.00041487254202365875, + -0.046694185584783554, + -0.01595674268901348, + 0.02542395330965519, + -0.025953425094485283, + -0.031782690435647964, + 0.019445624202489853, + 0.05615909397602081, + -0.06949516385793686, + 0.010693741962313652, + -0.02217915840446949, + 0.069120392203331, + 0.009890538640320301, + 0.032866403460502625, + -0.008719781413674355, + 0.0378388985991478, + 0.062267132103443146, + 0.013176364824175835, + -0.05361439287662506, + 0.044416800141334534, + 0.024227358400821686, + -0.0752539113163948, + 0.012709607370197773, + -0.052489932626485825, + -0.0004385685024317354, + -0.030963772907853127, + -0.07466965168714523, + -0.07792885601520538, + -0.09792356193065643, + -0.033235304057598114, + -0.05224985256791115, + -0.01700623892247677, + 0.07750886678695679, + 0.11920555680990219, + 0.05715674161911011, + -0.031154397875070572, + -0.054392389953136444, + 0.0003817346878349781, + 0.05166768655180931, + -0.018140602856874466, + 0.13173197209835052, + -1.8701883696132276e-33, + -0.026446694508194923, + 0.05205830559134483, + -0.04382375255227089, + 0.08243953436613083, + 0.022018644958734512, + -0.021126991137862206, + -0.03031862899661064, + -0.08359596133232117, + -0.1591290384531021, + 0.06355808675289154, + 0.018549365922808647, + 0.0642210841178894, + -0.06496076285839081, + 0.02369864098727703, + -0.024020904675126076, + -0.028017502278089523, + 0.00033863240969367325, + -0.024401266127824783, + -0.04177434742450714, + 0.021388934925198555, + -0.03358983248472214, + 0.07231583446264267, + -0.062228694558143616, + 0.0029333189595490694, + -0.033439937978982925, + -0.013863963074982166, + 0.018186364322900772, + -0.006491037085652351, + -0.057966198772192, + 0.003614571178331971, + 0.043942634016275406, + 0.01893906481564045, + 0.06478235125541687, + 0.06283867359161377, + -0.04536578431725502, + 0.006839756853878498, + -0.06615672260522842, + -0.005424650385975838, + -7.239087426569313e-05, + 0.05312773957848549, + -0.01266365498304367, + 0.00029587344033643603, + -0.03736072778701782, + 0.021114928647875786, + -0.013944837264716625, + 0.09020872414112091, + -0.014732538722455502, + -0.05315397307276726, + 0.054287876933813095, + 0.012295042164623737, + -0.024733321741223335, + 0.0863153263926506, + 0.008915849961340427, + 0.04910584166646004, + 0.10622937232255936, + 0.024758784100413322, + -0.011573631316423416, + 0.046554211527109146, + 0.10590212792158127, + -0.01312529668211937, + 0.0739147737622261, + -0.036711957305669785, + 0.03822443634271622, + -0.06649993360042572, + 0.02722775563597679, + 0.026905257254838943, + -0.00985485129058361, + 0.020983854308724403, + 0.07420078665018082, + -0.016497844830155373, + 0.027221962809562683, + 0.04993745684623718, + -0.023057878017425537, + 0.04248046875, + 0.05292929336428642, + 0.05574078857898712, + 0.00037174017052166164, + 0.021496057510375977, + 0.043626852333545685, + -0.12886860966682434, + -0.09473562985658646, + -0.058204155415296555, + -0.005495136603713036, + 0.08232433348894119, + 0.007955796085298061, + 0.022282179445028305, + -0.062389399856328964, + -0.07584328204393387, + 0.03238463029265404, + -0.014410406351089478, + -0.01839853823184967, + -0.014757927507162094, + -0.04459338262677193, + -0.13362355530261993, + -0.06793414801359177, + 3.5383054950647615e-34, + 0.10732584446668625, + 0.05892932042479515, + -0.1268482804298401, + 0.01596388965845108, + -0.10897568613290787, + 0.0016509457491338253, + 0.029987717047333717, + 0.05199968442320824, + 0.03128168731927872, + 0.08383340388536453, + 0.10874004662036896, + -0.04135319963097572, + -0.05601084604859352, + -0.07037889212369919, + -0.014184566214680672, + -0.012531143613159657, + 0.006995252799242735, + -0.002721944358199835, + -0.030009429901838303, + -0.06570662558078766, + -0.03778597712516785, + -0.06377648562192917, + 0.04858227074146271, + 0.11545675247907639, + -0.006045284681022167, + 0.0413224995136261, + -0.01692158728837967, + 0.01696798950433731, + -0.04710029065608978, + -0.027493499219417572, + -0.005382543429732323, + 0.0431777760386467, + -0.01692306622862816, + 0.01899775117635727, + -0.028810644522309303, + -0.02932949736714363, + 0.04688214510679245, + 0.02427058480679989, + 0.028989611193537712, + 0.04244093969464302, + -0.001393991755321622, + 0.02383364737033844, + 0.002392817521467805, + -0.008474367670714855, + -0.06202799826860428, + 0.009306438267230988, + 0.038185492157936096, + -0.004333538934588432, + 0.041009675711393356, + -0.03520258888602257, + 0.046581659466028214, + -0.05953603237867355, + 0.05142853409051895, + -0.056795455515384674, + -0.03988143429160118, + -0.06891746073961258, + 0.011048302985727787, + -0.09924585372209549, + -0.0940857008099556, + 0.09398510307073593, + 0.03622385859489441, + 0.02648550271987915, + -0.005641568452119827, + -0.039345502853393555, + -0.01911756582558155, + -0.06800414621829987, + -0.0300239659845829, + -0.08140933513641357, + 0.08617059141397476, + 0.00790136307477951, + 0.02766307070851326, + -0.06550683826208115, + 0.009438436478376389, + 0.05618707835674286, + 0.04442114755511284, + -0.012800056487321854, + 0.08384379744529724, + 0.015018242411315441, + 0.0749942734837532, + -0.003970650024712086, + 0.04496794939041138, + 0.010217093862593174, + -0.010606610216200352, + 0.023052940145134926, + -0.043448932468891144, + 0.07416720688343048, + -0.05923351272940636, + -0.010510217398405075, + 0.036435119807720184, + -0.0018780712271109223, + -0.04963722079992294, + 0.015856778249144554, + 0.0292743518948555, + -0.028365785256028175, + -0.023435520008206367, + -1.6030480054496365e-08, + -0.0952954888343811, + -0.046117354184389114, + -0.08631467819213867, + -0.057297978550195694, + -0.04514041915535927, + -0.04415927827358246, + -0.058178190141916275, + -0.05140131711959839, + -0.024203145876526833, + -0.04311263561248779, + -0.005914388690143824, + -0.006151167210191488, + -0.04702158644795418, + -0.07288532704114914, + 0.03591453656554222, + 0.03455623611807823, + 0.015208716504275799, + 0.04628422483801842, + -0.05266426131129265, + -0.0082246670499444, + -0.010695487260818481, + 0.0588236004114151, + 0.02824411541223526, + 0.01519416831433773, + 0.05025302991271019, + 0.0616876594722271, + -0.021336810663342476, + 0.004588793497532606, + 0.05937480926513672, + 0.07826550304889679, + 0.011091181077063084, + 0.02809663489460945, + -0.001698075793683529, + 0.01627698913216591, + -0.0689086988568306, + -0.03592444583773613, + 0.0463351272046566, + -0.0042594606056809425, + -0.04030314087867737, + 0.07389725744724274, + -0.0190983098000288, + 0.022978832945227623, + -0.05583106353878975, + -0.027213672176003456, + -0.017406227067112923, + -0.019260743632912636, + 0.033687859773635864, + 0.02240152098238468, + -0.057389866560697556, + -0.10791696608066559, + -0.016037818044424057, + 0.026534561067819595, + -0.08897233754396439, + 0.13650934398174286, + -0.11593740433454514, + -0.07988490909337997, + 0.009553519077599049, + 0.12038914114236832, + -0.05975109338760376, + -0.08909351378679276, + 0.035939089953899384, + -0.029871581122279167, + 0.036615848541259766, + -0.010557562112808228 + ], + "file-tsx-bold||documents,code,typescript": [ + -0.0340476930141449, + 0.001998134655877948, + -0.01023970264941454, + 0.09060627967119217, + 0.016045091673731804, + 0.0221458300948143, + 0.07727920264005661, + 0.05194203928112984, + -0.015658920630812645, + 0.06435409188270569, + -0.0883975550532341, + 0.08422092348337173, + 0.008183364756405354, + 0.006152208894491196, + 0.051407914608716965, + 0.004127948544919491, + -0.03442486748099327, + -0.024004429578781128, + 0.021389620378613472, + -0.001610443228855729, + 0.052467163652181625, + 0.021167319267988205, + 0.08536328375339508, + -0.023725410923361778, + 0.038484930992126465, + 0.03093545511364937, + 0.04365352913737297, + -0.03533921390771866, + 0.04857296496629715, + -0.0021605538204312325, + -0.01900624856352806, + 0.01975378207862377, + 0.036407869309186935, + 0.02449529804289341, + 0.041858237236738205, + 0.04369707033038139, + -0.0003605812380556017, + -0.05391869693994522, + 0.03291703015565872, + 0.06178158149123192, + 0.02804228849709034, + 0.046600278466939926, + -0.049520093947649, + -0.024250870570540428, + -0.03359892591834068, + -0.11269998550415039, + -0.04852937161922455, + -0.06728843599557877, + -0.02775179222226143, + 0.009142736904323101, + -0.04825463518500328, + -0.04088388755917549, + -0.06934451311826706, + -0.029044710099697113, + 0.03425189107656479, + -0.03271093592047691, + -0.09113217890262604, + 0.0004201104457024485, + 0.03904912993311882, + -0.07607918977737427, + 0.0011340705677866936, + -0.0024993845727294683, + 0.049435053020715714, + -0.03401409462094307, + 0.07108801603317261, + 0.13842104375362396, + -0.05648024380207062, + 0.09813681989908218, + -0.016492709517478943, + -0.02883872203528881, + -0.003071720013394952, + -0.006081047467887402, + 0.026547247543931007, + 0.012070110067725182, + -0.024119509384036064, + -0.05838314816355705, + 0.028249941766262054, + 0.028861962258815765, + -0.012264740653336048, + -0.05222291499376297, + -0.030484138056635857, + -0.08228258788585663, + 0.025521546602249146, + 0.07699407637119293, + 0.054990120232105255, + 0.07939469814300537, + 0.033977266401052475, + -0.046270374208688736, + -0.009113256819546223, + 0.034541480243206024, + -0.02402200922369957, + -0.014767554588615894, + 0.03047960437834263, + 0.05293717235326767, + -0.045694686472415924, + 0.0022635916247963905, + -0.03636271134018898, + 0.07711482048034668, + 0.01375899650156498, + 0.020009586587548256, + 0.00017386110266670585, + 0.038234908133745193, + 0.06910240650177002, + 0.03401054069399834, + -0.06830813735723495, + 0.037900667637586594, + 0.006093246396631002, + -0.07968275249004364, + 0.009270056150853634, + -0.0589827299118042, + 0.0009483019821345806, + -0.03430891036987305, + -0.06825602799654007, + -0.08084100484848022, + -0.10230163484811783, + -0.022721966728568077, + -0.0482684001326561, + -0.02866024523973465, + 0.07402656972408295, + 0.09484700858592987, + 0.05819128826260567, + -0.03831686079502106, + -0.05823420360684395, + 0.016398407518863678, + 0.07130705565214157, + -0.011763370595872402, + 0.1205635517835617, + -1.0943845977670766e-33, + -0.05173701047897339, + 0.040012650191783905, + -0.057443439960479736, + 0.09383006393909454, + 0.022242769598960876, + -0.03597605973482132, + -0.022908460348844528, + -0.08930907398462296, + -0.1732953041791916, + 0.06361567974090576, + 0.013068041764199734, + 0.08014348894357681, + -0.05653085187077522, + 0.028790581971406937, + -0.022217843681573868, + -0.02826823852956295, + 0.00797900278121233, + -0.01282239705324173, + -0.03895626217126846, + 0.03048129752278328, + -0.008886770345270634, + 0.08026038855314255, + -0.04377192258834839, + -0.005658735521137714, + -0.049319636076688766, + -0.008354143239557743, + 0.03363775089383125, + 0.005454770755022764, + -0.05331775173544884, + -0.009722732938826084, + 0.04996973276138306, + 0.0073342882096767426, + 0.07456939667463303, + 0.06818093359470367, + -0.04072810709476471, + 0.025037307292222977, + -0.051335230469703674, + 0.006198469083756208, + -0.004600829910486937, + 0.052046194672584534, + -0.02551884576678276, + 0.018864257261157036, + -0.02802368253469467, + 0.005412595812231302, + -0.02006210759282112, + 0.07050631940364838, + -0.028470106422901154, + -0.07899222522974014, + 0.060949601233005524, + 0.0024041577707976103, + -0.025960978120565414, + 0.08968078345060349, + 0.011920602060854435, + 0.046862803399562836, + 0.10408652573823929, + 0.01758573390543461, + 0.0023763247299939394, + 0.04656999930739403, + 0.09719529002904892, + -0.015463210642337799, + 0.06436573714017868, + -0.0340733639895916, + 0.028774358332157135, + -0.0476248562335968, + 0.02186395414173603, + 0.04083557799458504, + 0.008277669548988342, + 0.008089122362434864, + 0.04928038641810417, + -0.007604347541928291, + 0.012560517527163029, + 0.07109274715185165, + -0.015512848272919655, + 0.03660810366272926, + 0.06068013235926628, + 0.04033808037638664, + -0.0044960929080843925, + 0.006610942538827658, + 0.04322008788585663, + -0.12347051501274109, + -0.09511888027191162, + -0.07110728323459625, + -0.00835900567471981, + 0.09799541532993317, + 0.013688279315829277, + -0.00016671125194989145, + -0.07147634029388428, + -0.04486754164099693, + 0.04251191392540932, + 0.003824817016720772, + -0.014570456929504871, + -0.04210424795746803, + -0.056918710470199585, + -0.11627425998449326, + -0.0731494352221489, + -7.230033551104097e-35, + 0.08397798985242844, + 0.0536695197224617, + -0.12467622011899948, + 0.01246341597288847, + -0.11564977467060089, + 0.017220506444573402, + 0.03335241973400116, + 0.053864479064941406, + 0.02907261811196804, + 0.07411997765302658, + 0.12370174378156662, + -0.019241690635681152, + -0.04521937668323517, + -0.05346508324146271, + -0.022006835788488388, + -0.00339499581605196, + 0.01211650762706995, + -0.0027577488217502832, + -0.05506385490298271, + -0.0798567682504654, + -0.03441409021615982, + -0.04929349198937416, + 0.03733067587018013, + 0.11960499733686447, + -0.005158922169357538, + 0.05540091171860695, + 0.012435087002813816, + 0.03184739872813225, + -0.044656604528427124, + -0.03933199122548103, + -0.01874133199453354, + 0.057088661938905716, + -0.02111630327999592, + 0.010319584980607033, + -0.032449282705783844, + -0.02210056781768799, + 0.03675729036331177, + 0.03051120974123478, + 0.03248178958892822, + 0.03435356542468071, + -0.00684808986261487, + 0.018297972157597542, + -0.0008298412431031466, + -0.007671601604670286, + -0.07022161781787872, + 0.0016245886217802763, + 0.017221178859472275, + -0.01690804399549961, + 0.035602495074272156, + -0.01224483922123909, + 0.0352441743016243, + -0.06344901770353317, + 0.052796054631471634, + -0.05398683622479439, + -0.030476627871394157, + -0.06578519195318222, + 0.00678940350189805, + -0.10022350400686264, + -0.07521197944879532, + 0.08094365149736404, + 0.04055752977728844, + 0.029070550575852394, + 0.00797469075769186, + -0.037108853459358215, + -0.021592920646071434, + -0.07576233893632889, + -0.048992667347192764, + -0.0751936063170433, + 0.07476954162120819, + 0.019266339018940926, + 0.022557688876986504, + -0.0390571691095829, + -0.007903735153377056, + 0.06356441229581833, + 0.05439886078238487, + -0.008961941115558147, + 0.07607683539390564, + 0.02178090810775757, + 0.07778322696685791, + 0.002138245152309537, + 0.049784980714321136, + 0.024548159912228584, + -0.013966999016702175, + 0.013933044858276844, + -0.033100441098213196, + 0.0844753086566925, + -0.057403240352869034, + -0.0018259002827107906, + 0.05600001662969589, + -0.020092198625206947, + -0.061350733041763306, + -0.0010614892235025764, + 0.015287361107766628, + -0.03970819711685181, + -0.03772114962339401, + -1.6653858736503935e-08, + -0.1078726202249527, + -0.05509147047996521, + -0.09502192586660385, + -0.062148090451955795, + -0.06340140849351883, + -0.04438766837120056, + -0.05092480406165123, + -0.043666496872901917, + -0.016795478761196136, + -0.06338480114936829, + 0.010365684516727924, + -0.011574680916965008, + -0.04336472600698471, + -0.07024091482162476, + 0.01583731546998024, + 0.02559611387550831, + 0.0076301624067127705, + 0.03675749897956848, + -0.04025440290570259, + -0.03624805435538292, + -0.019659623503684998, + 0.05624249950051308, + 0.04087388515472412, + 0.03032221645116806, + 0.06518129259347916, + 0.04625420272350311, + -0.02559758350253105, + 0.015569756738841534, + 0.04483754187822342, + 0.06959337741136551, + 0.0035995342768728733, + 0.026144379749894142, + -0.01377631351351738, + 0.008381598629057407, + -0.07115273922681808, + -0.025475187227129936, + 0.052188798785209656, + 0.02722102403640747, + -0.025503942742943764, + 0.05983314290642738, + -0.017738688737154007, + 0.006456586066633463, + -0.06444673985242844, + -0.031252335757017136, + -0.025694362819194794, + -0.004297213163226843, + 0.045409709215164185, + 0.010401570238173008, + -0.026282479986548424, + -0.11261935532093048, + -0.019230002537369728, + 0.023933308199048042, + -0.09524332731962204, + 0.12940168380737305, + -0.12469431757926941, + -0.062396664172410965, + 0.004250425845384598, + 0.11441758275032043, + -0.04352279379963875, + -0.09690040349960327, + 0.024288471788167953, + -0.038549698889255524, + 0.03534666448831558, + -0.010778388939797878 + ], + "file-txt-bold||*new*,documents": [ + -0.013171271421015263, + 0.04472959041595459, + -0.01406852900981903, + 0.09706703573465347, + 0.04394245147705078, + -0.04237756133079529, + 0.04439208656549454, + -0.001861780765466392, + 0.03457939252257347, + 0.04815608263015747, + -6.638540799031034e-05, + 0.06632091850042343, + 0.04747515544295311, + -0.05350002646446228, + 0.01837756671011448, + 0.03296411409974098, + -0.030999911949038506, + -0.0018910785438492894, + 0.01810058020055294, + -0.008996759541332722, + 0.00523070152848959, + 0.10383971035480499, + 0.045266613364219666, + -0.02169407159090042, + 0.051596399396657944, + 0.021618247032165527, + 0.006231485866010189, + -0.08144226670265198, + -0.025593647733330727, + -0.037445828318595886, + 0.010180006735026836, + -0.0021545500494539738, + 0.10742781311273575, + 0.06635480374097824, + 0.11992181837558746, + 0.020133646205067635, + 0.043735794723033905, + -0.027776693925261497, + -0.007610343862324953, + 0.06381715089082718, + 0.03285573795437813, + -0.04256122559309006, + -0.06865331530570984, + 0.023489130660891533, + -0.019293731078505516, + -0.042628321796655655, + 0.0029006486292928457, + -0.018486784771084785, + 0.057539284229278564, + -0.012529408559203148, + -0.05520026758313179, + -0.06320082396268845, + -0.06728910654783249, + -0.04705048352479935, + 0.05042194575071335, + 0.02279849536716938, + -0.02956882305443287, + 0.0007102593663148582, + -0.019285310059785843, + -0.09668838977813721, + 0.03787362203001976, + 0.037444815039634705, + 0.025277649983763695, + -0.047408681362867355, + 0.025673426687717438, + 0.04113215580582619, + -0.033023666590452194, + 0.08099672198295593, + -0.025507427752017975, + 0.009281841106712818, + 0.001955969724804163, + 0.043339818716049194, + -0.006573736667633057, + 0.007515943143516779, + -0.023940466344356537, + 0.02191038429737091, + 0.002113908063620329, + 0.05421913042664528, + -0.05044597014784813, + -0.03917739540338516, + 0.013091727159917355, + -0.08422473818063736, + 0.04540961608290672, + -0.03801216557621956, + 0.014481560327112675, + 0.01830711029469967, + -0.04676340892910957, + -0.040458373725414276, + -0.07049983739852905, + 0.006849633529782295, + -0.06147409975528717, + -0.023495348170399666, + -0.0254839938133955, + 0.03919001668691635, + -0.12329072505235672, + 0.003695296123623848, + 0.04236501082777977, + 0.06127910315990448, + 0.019972778856754303, + 0.06710708886384964, + -0.011994791217148304, + 0.059421081095933914, + 0.07107092440128326, + 0.042540814727544785, + -0.015649840235710144, + -0.0009013955714181066, + -0.0009123861673288047, + -0.054773133248090744, + 1.1380629075574689e-05, + -0.03365529701113701, + 0.05205347761511803, + -0.13867799937725067, + -0.05293278023600578, + -0.06314629316329956, + -0.04709712043404579, + 0.011391883715987206, + -0.05514547601342201, + 0.001385037205182016, + 0.0082718376070261, + 0.13867062330245972, + 0.07967843860387802, + -0.07004701346158981, + -0.0396241694688797, + -0.00421269703656435, + -0.03688356652855873, + 0.0027200679760426283, + 0.03786923736333847, + -2.0551145694906975e-33, + 0.017568426206707954, + 0.047376807779073715, + -0.06444495171308517, + 0.14909298717975616, + -0.01984112709760666, + 0.03492920845746994, + -0.0364566296339035, + -0.0695294588804245, + -0.07236238569021225, + -0.0069997264072299, + 0.04085078090429306, + 0.00767112011089921, + 0.0055543240159749985, + 0.016720082610845566, + -0.04473860189318657, + -0.057472262531518936, + -0.032767023891210556, + -0.07003440707921982, + -0.031225115060806274, + -0.019872179254889488, + -0.09718169271945953, + 0.09294800460338593, + -0.03997793048620224, + -0.025842076167464256, + -0.05730779469013214, + -0.057750213891267776, + 0.07721919566392899, + -0.10717470198869705, + -0.07161364704370499, + -0.005672548431903124, + -0.014895441941916943, + -0.016135886311531067, + 0.10991892963647842, + 0.07862541079521179, + -0.09183088690042496, + 0.0789523646235466, + -0.055264659225940704, + -0.04980620741844177, + 0.01929423213005066, + 0.021971385926008224, + -0.06019468605518341, + 0.014185109175741673, + 0.06817284971475601, + -0.04395535588264465, + 0.021891500800848007, + 0.14115501940250397, + -0.06366429477930069, + -0.03493105620145798, + -0.01297824177891016, + -0.0011439010268077254, + 0.001278934651054442, + 0.036447033286094666, + -0.02575341798365116, + 0.07572933286428452, + 0.03860476613044739, + -0.008725801482796669, + -0.025903435423970222, + 0.025058772414922714, + 0.06505206972360611, + -0.027770493179559708, + 0.07891205698251724, + -0.0033326302655041218, + 0.02100573480129242, + 0.030715692788362503, + -0.006045159883797169, + 0.03502023220062256, + 0.030908750370144844, + 0.07756461203098297, + 0.04452012479305267, + 0.026379739865660667, + -0.008500488474965096, + 0.035467036068439484, + -0.02663963846862316, + -0.0154418358579278, + 0.029697218909859657, + 0.02660084329545498, + 0.06876813620328903, + -0.0019283286528661847, + 0.03362848609685898, + -0.11972729861736298, + -0.05876993015408516, + -0.007862166501581669, + 0.0225848276168108, + 0.01577145792543888, + -0.0036325654946267605, + 0.059908177703619, + -0.01812639832496643, + -0.03540065884590149, + 0.029411381110548973, + -0.011618554592132568, + -0.012212545610964298, + -0.005515066906809807, + -0.09314807504415512, + -0.08811644464731216, + 0.013780275359749794, + -1.7532524645219564e-34, + 0.10921720415353775, + 0.0008863507537171245, + -0.09107235819101334, + 0.013788968324661255, + -0.04657350853085518, + 0.05241794139146805, + 0.005065335892140865, + 0.07379668951034546, + 0.002186120254918933, + 0.023385101929306984, + 0.048065245151519775, + 0.004905231762677431, + -0.02959195338189602, + -0.06666581332683563, + 0.0641133189201355, + -0.052238982170820236, + -0.024095172062516212, + 0.021719342097640038, + -0.025319527834653854, + 0.03128942474722862, + -0.03320624306797981, + -0.06881289929151535, + -0.006683573592454195, + 0.09344064444303513, + 0.06114627420902252, + -0.0415060855448246, + -0.01770821586251259, + 0.001374999643303454, + -0.07300645858049393, + -0.06139199808239937, + -0.044598743319511414, + 0.015181336551904678, + -0.018918048590421677, + 0.07289395481348038, + 0.015323435887694359, + 0.015557977370917797, + 0.02016577310860157, + -0.010589106939733028, + 0.03762412816286087, + 0.09089884161949158, + -0.012228858657181263, + 0.03608833625912666, + -0.014814363792538643, + 0.012051924131810665, + -0.07866174727678299, + 0.01576228067278862, + 0.03450794517993927, + -0.025836262851953506, + 0.01936247944831848, + 0.030689680948853493, + 0.0742373988032341, + -0.053505558520555496, + 0.039468541741371155, + -0.04880056157708168, + -0.05468619987368584, + -0.012359020300209522, + 0.015537363477051258, + -0.0012266471749171615, + -0.08186596632003784, + 0.06695007532835007, + -0.026159295812249184, + 0.053420539945364, + -0.034523408859968185, + -0.012726159766316414, + -0.0011743508512154222, + -0.07180572301149368, + -0.005464800633490086, + -0.049456335604190826, + 0.06013123691082001, + 0.02879118174314499, + 0.03560870513319969, + -0.055476151406764984, + -0.10287191718816757, + 0.053114138543605804, + 0.017382850870490074, + -0.023090679198503494, + 0.016270464286208153, + -0.034001097083091736, + -0.06216214969754219, + 0.013970796018838882, + 0.04573127254843712, + 0.01767265424132347, + -0.012229074724018574, + 0.024791304022073746, + 0.04924733191728592, + 0.03440353274345398, + -0.033176157623529434, + 0.013567519374191761, + -0.017508460208773613, + 0.00910963024944067, + -0.0561663992702961, + 0.03015749901533127, + 0.02317444421350956, + -0.047438688576221466, + -0.0808127224445343, + -1.9362918379783878e-08, + -0.08807963877916336, + -0.07008976489305496, + -0.1106671690940857, + 0.028850790113210678, + 0.015709269791841507, + -0.030675817281007767, + -0.08630171418190002, + -0.04809107631444931, + -0.0644567683339119, + -0.06204330548644066, + 0.0454610176384449, + -0.054182931780815125, + -0.04903941601514816, + -0.08799967169761658, + -0.014431320130825043, + 0.018024347722530365, + 0.06397750973701477, + -0.018513452261686325, + -0.028643930330872536, + -0.03195019066333771, + 0.001019263407215476, + 0.0930987074971199, + 0.042429935187101364, + 0.034041572362184525, + 0.02809782885015011, + 0.04597483575344086, + -0.0505768321454525, + -0.007553070317953825, + 0.038468580693006516, + 0.048326585441827774, + 0.05966394394636154, + 0.012728255242109299, + -0.021142318844795227, + 0.03206218034029007, + -0.06385219097137451, + -0.0004950882866978645, + 0.010013864375650883, + 0.024721715599298477, + -0.01824302226305008, + 0.08370494097471237, + -0.07920511066913605, + 0.0821249708533287, + -0.06559108942747116, + -0.03305115923285484, + -0.09333589673042297, + -0.06758302450180054, + -0.0015787134179845452, + -0.04016557335853577, + -0.04474886134266853, + -0.12927988171577454, + 0.00792787317186594, + 0.02414429746568203, + 0.07084312289953232, + 0.09072807431221008, + -0.054145801812410355, + -0.026873691007494926, + 0.09792890399694443, + 0.17442789673805237, + -0.015796000137925148, + -0.02717706561088562, + 0.09395360201597214, + -0.0490981824696064, + 0.0749821588397026, + 0.03824566304683685 + ], + "file-video-bold||documents,movie": [ + 0.01159488596022129, + -0.05543247237801552, + -0.04554473236203194, + -0.023432835936546326, + 0.10011884570121765, + 0.04540950804948807, + -0.015152267180383205, + -0.011478185653686523, + 0.11039048433303833, + -0.02003764919936657, + -0.041011713445186615, + 0.0691099688410759, + -0.0376252681016922, + 0.06312384456396103, + -0.012937430292367935, + 0.01498812809586525, + 0.013148440979421139, + 0.03844289854168892, + -0.022933093830943108, + 0.00348070589825511, + 0.030520789325237274, + -0.01723259873688221, + 0.09643582999706268, + -0.028831155970692635, + 0.03443259745836258, + 0.0037741316482424736, + 0.022836050018668175, + 0.042443983256816864, + -0.026657873764634132, + -0.04647838696837425, + 0.039956942200660706, + 0.013354291208088398, + 0.07518676668405533, + 0.040883563458919525, + 0.05024678260087967, + -0.03465714305639267, + -0.042200349271297455, + -0.07045083492994308, + -0.08386071771383286, + 0.037085045129060745, + 0.01576884090900421, + 0.036554738879203796, + 0.03683604672551155, + -0.03088810294866562, + -0.06588093191385269, + -0.057642750442028046, + -0.015284792520105839, + -0.061700619757175446, + 0.04987132549285889, + -0.017310960218310356, + -0.10832850635051727, + -0.018407631665468216, + -0.09829754382371902, + -0.017992006614804268, + -0.005562194157391787, + -0.01790609210729599, + -0.0138919148594141, + -0.021993573755025864, + 0.05538063868880272, + -0.037610266357660294, + 0.01991202123463154, + -0.01996435970067978, + 0.050479449331760406, + 0.010822414420545101, + 0.08865527808666229, + 0.04682713374495506, + 0.03042643889784813, + 0.05381743982434273, + -0.06012590974569321, + 0.019210239872336388, + -0.047678787261247635, + 0.014003809541463852, + 0.03955405578017235, + -0.05173475667834282, + -0.06516396999359131, + -0.04242385923862457, + 0.0060882531106472015, + 0.0270503219217062, + -0.04812164232134819, + -0.12020720541477203, + 0.037539344280958176, + -0.12780386209487915, + 0.027529466897249222, + 0.014218962751328945, + 0.05688147246837616, + 0.06741727143526077, + -0.024112744256854057, + -0.05876082554459572, + -0.08873237669467926, + 0.038071226328611374, + -0.1496136337518692, + -0.012646200135350227, + 0.009059448726475239, + 0.03986917436122894, + -0.06910956650972366, + -0.04293243587017059, + 0.023809703066945076, + -0.04830757528543472, + 0.029183123260736465, + 0.04101168364286423, + 0.020675549283623695, + -0.015185349620878696, + 0.08118818700313568, + -0.008645494468510151, + -0.008096002042293549, + -0.007949831895530224, + 0.04780711606144905, + 0.01679888181388378, + -0.00020497164223343134, + -0.005932035855948925, + -0.013698701746761799, + -0.0591098889708519, + -0.022467445582151413, + -0.0644880086183548, + -0.022765088826417923, + 0.05101452395319939, + -0.04476340115070343, + 0.00460010627284646, + 0.01026320643723011, + 0.0935436263680458, + 0.030675509944558144, + -0.058880262076854706, + -0.07122999429702759, + -0.03711496666073799, + 0.0020127915777266026, + -0.0466797910630703, + 0.13327325880527496, + -2.5344639006827486e-33, + 0.023591019213199615, + 0.01077637355774641, + -0.030354607850313187, + 0.09985748678445816, + 0.03394008055329323, + 0.005915534216910601, + 0.026848167181015015, + -0.003909287042915821, + -0.13853541016578674, + 0.0051097809337079525, + 0.06342475861310959, + -0.023233778774738312, + -0.025031803175807, + 0.04653816670179367, + -0.034635573625564575, + -0.024452557787299156, + -0.06869171559810638, + -0.024159224703907967, + -0.057371437549591064, + 0.024080637842416763, + -0.022903868928551674, + 0.06600365787744522, + -0.031332723796367645, + 0.011013396084308624, + -0.08870118856430054, + -0.05896211043000221, + 0.03880834951996803, + -0.053164463490247726, + -0.009695340879261494, + 0.014958488754928112, + 0.018760710954666138, + 0.03461379185318947, + 0.1026950553059578, + -0.0066475593484938145, + 0.011775998398661613, + 0.026418574154376984, + -0.16483761370182037, + -0.00036553110112436116, + 0.015278649516403675, + 0.029288817197084427, + -0.060124609619379044, + 0.016035128384828568, + -0.054657094180583954, + -0.05726975202560425, + -0.04608321562409401, + 0.11382149904966354, + 0.049516938626766205, + -0.00649235537275672, + -0.030291568487882614, + 0.07346872985363007, + 0.04749394580721855, + 0.027297822758555412, + -0.0026374896988272667, + -0.07293684035539627, + -0.013737334869801998, + 0.06434069573879242, + 0.037337690591812134, + 0.05751253664493561, + 0.026604603976011276, + -0.07983282208442688, + 0.045735474675893784, + 0.020838310942053795, + -0.011668326333165169, + -0.05032583698630333, + -0.055298738181591034, + 0.05813121795654297, + 0.10552170127630234, + 0.053021449595689774, + 0.0715443417429924, + 0.012984969653189182, + -0.026494784280657768, + 0.05162283405661583, + 0.034224070608615875, + -0.02115017920732498, + 0.037077825516462326, + 0.07113154232501984, + -0.03194142132997513, + 0.004172082524746656, + 0.004531559534370899, + -0.07116170972585678, + -0.12916357815265656, + -0.018907882273197174, + 0.0697486400604248, + 0.04129072278738022, + 0.005005965940654278, + 0.006553157698363066, + -0.059650253504514694, + -0.0762493684887886, + 0.016128962859511375, + -0.01468031108379364, + 0.003729467513039708, + -0.022099774330854416, + -0.020593132823705673, + -0.08025500178337097, + 0.007802306208759546, + 1.465679549495666e-33, + 0.13129404187202454, + 0.025667473673820496, + -0.06590621173381805, + -0.026815317571163177, + 0.0012717333156615496, + 0.03690727427601814, + 0.01923881471157074, + 0.048484209924936295, + 0.0543324314057827, + -0.025897473096847534, + 0.021742062643170357, + -0.07410812377929688, + -0.11418486386537552, + -0.07711884379386902, + -0.011718560010194778, + -0.037977274507284164, + 0.021225886419415474, + -0.050999995321035385, + -0.02870345488190651, + -0.0005789793794974685, + -0.04126427322626114, + -0.08097880333662033, + 0.06507981568574905, + 0.048796068876981735, + 0.04534480348229408, + 0.010626268573105335, + 0.005502655636519194, + -0.0013971073785796762, + 0.021238548681139946, + -0.050665903836488724, + 0.0511491522192955, + -0.0077795046381652355, + -0.05827329680323601, + 0.03089778684079647, + -0.054924994707107544, + 0.004014985170215368, + 0.09726938605308533, + -0.021016743034124374, + -0.024429943412542343, + 0.04069247469305992, + -0.014876107685267925, + 0.09434716403484344, + -0.05910787731409073, + 0.00023230945225805044, + -0.012878474779427052, + -0.00257751508615911, + 0.01435366552323103, + -0.003547759959474206, + -0.009313629940152168, + 0.040366362780332565, + 0.026308555155992508, + -0.02214517444372177, + 0.008543468080461025, + -0.019635150209069252, + -0.027338586747646332, + -0.024389563128352165, + -0.01464124582707882, + 0.005387425888329744, + -0.009551490657031536, + 0.06735987216234207, + 0.03082706779241562, + 0.05260240659117699, + -0.0860113576054573, + -0.03310626000165939, + 0.0034421286545693874, + -0.013904878869652748, + -0.03673896566033363, + -0.01578487642109394, + 0.02086642198264599, + 0.024337228387594223, + 0.04873621463775635, + -0.03191031143069267, + 0.009685341268777847, + 0.08616647869348526, + 0.040524356067180634, + -0.005045692902058363, + 0.029661189764738083, + 0.011851750314235687, + 0.04109620675444603, + -0.013105603866279125, + 0.004802113864570856, + -0.015652766451239586, + 0.03846327215433121, + 0.04886438697576523, + 0.049105215817689896, + 0.1172494888305664, + 0.035964082926511765, + 0.010245672427117825, + 0.00909741222858429, + -0.007231997791677713, + -0.0611279271543026, + 0.05139584839344025, + 0.08717130124568939, + -0.03956161439418793, + -0.02346021868288517, + -1.4300177042514406e-08, + -0.11151479184627533, + -0.011554832570254803, + -0.06683006882667542, + 0.0030394643545150757, + -0.07899431884288788, + -0.05262131616473198, + -0.014568032696843147, + 0.031044773757457733, + 0.05053936690092087, + -0.09959591180086136, + 0.04187319800257683, + -0.04936881363391876, + -0.032438360154628754, + -0.044304974377155304, + -0.0742788165807724, + 0.03126532584428787, + 0.05848732590675354, + 0.03645581379532814, + -0.014099974185228348, + 0.04970378801226616, + -0.03048991970717907, + 0.02986717037856579, + 0.04190651327371597, + -0.000895491917617619, + -0.013362963683903217, + 0.043669745326042175, + -0.05497334897518158, + -0.034470561891794205, + 0.08756358921527863, + 0.01943857967853546, + 0.005100116599351168, + 0.04356081783771515, + 0.00150013726670295, + -0.04692114517092705, + -0.06391195952892303, + -0.013301295228302479, + 0.06472256034612656, + 0.013672301545739174, + -0.03423641622066498, + 0.08154188841581345, + 0.011511125601828098, + 0.009227672591805458, + 0.00605376111343503, + -0.052248090505599976, + 0.04130398482084274, + 0.05137398838996887, + 0.07982686161994934, + -0.0830988734960556, + -0.07825260609388351, + -0.06930862367153168, + -0.018266651779413223, + 0.008847075514495373, + -0.04226501286029816, + 0.12382596731185913, + 0.016158360987901688, + -0.09874491393566132, + 0.14219605922698975, + 0.12720967829227448, + -0.0704229325056076, + -0.024362659081816673, + 0.08830033987760544, + -0.01831781305372715, + 0.07165905833244324, + 0.044568367302417755 + ], + "file-vue-bold||documents,code": [ + -0.014652648009359837, + 0.055407650768756866, + -0.00730167469009757, + 0.07668926566839218, + 0.0745176300406456, + -0.02136969193816185, + -0.06455197930335999, + 0.029199548065662384, + 0.07482078671455383, + 0.018240397796034813, + -0.06723983585834503, + 0.053510259836912155, + -0.059577926993370056, + 0.03079499863088131, + 0.04167187586426735, + 0.030445892363786697, + -0.048247143626213074, + 0.045150890946388245, + 0.015281657688319683, + 0.03180396929383278, + 0.059083692729473114, + 0.09553823620080948, + 0.0489942692220211, + -0.020476922392845154, + 0.02605109103024006, + 0.057259831577539444, + -0.04357856512069702, + -0.043185584247112274, + 0.034051891416311264, + -0.05017317458987236, + 0.05383238196372986, + 0.004949486814439297, + 0.04612049460411072, + 0.10277817398309708, + 0.01372492779046297, + 0.026052478700876236, + -0.022282924503087997, + -0.0830538347363472, + -0.020119795575737953, + 0.08909513801336288, + 0.029115470126271248, + 0.02810467965900898, + -0.10164748877286911, + -0.061448466032743454, + -0.03297575190663338, + -0.05404641851782799, + 0.004293015226721764, + -0.04744580760598183, + 0.007346950471401215, + -0.03346719592809677, + -0.015594788827002048, + -0.08790736645460129, + -0.030950844287872314, + -0.020156726241111755, + -0.019933631643652916, + 0.01405924279242754, + -0.026025259867310524, + 0.010118459351360798, + 0.06924465298652649, + -0.047960635274648666, + 0.04992877319455147, + 0.005822507198899984, + 0.04142532870173454, + -0.013638302683830261, + 0.0359843373298645, + 0.09506677091121674, + 0.05226800590753555, + 0.0743395984172821, + -0.09205091744661331, + -0.06239350140094757, + 0.032199785113334656, + 0.01503551471978426, + 0.04717014357447624, + -0.032990142703056335, + -0.0035102113615721464, + 0.038139939308166504, + -0.007422007620334625, + 0.03221772238612175, + 0.06325201690196991, + -0.0751507580280304, + 0.016191763803362846, + -0.0878007709980011, + -0.04240141436457634, + 0.05022148787975311, + 0.08254958689212799, + 0.11177357286214828, + -0.019056783989071846, + -0.09102366864681244, + 0.0037773733492940664, + -0.028956947848200798, + -0.08274956047534943, + -0.051318760961294174, + 0.026069924235343933, + 0.0823889896273613, + -0.06758810579776764, + 0.0010409485548734665, + 0.04267643764615059, + 0.05183810368180275, + -0.016660844907164574, + 0.002519338857382536, + 0.013680897653102875, + 0.04096394404768944, + 0.035577524453401566, + 0.01300178375095129, + 0.04376925155520439, + 0.0597945973277092, + 0.061231520026922226, + -0.0022479428444057703, + -0.03198149800300598, + -0.04462835192680359, + 0.01983826607465744, + -0.03745637089014053, + -0.02231895923614502, + -0.1005077138543129, + -0.03248462453484535, + 0.017720695585012436, + -0.030224790796637535, + 0.03533454239368439, + 0.029427124187350273, + 0.06536530703306198, + 0.08596958220005035, + -0.010091879405081272, + -0.06643524020910263, + -0.03360261023044586, + -0.018930109217762947, + -0.09758719801902771, + 0.0936543270945549, + -1.442427628387928e-33, + 0.011968456208705902, + 0.04748476669192314, + -0.06014789268374443, + 0.09197878837585449, + 0.04091471806168556, + -0.03369057923555374, + -0.062019024044275284, + -0.04023878276348114, + -0.14106549322605133, + 0.03708979859948158, + 0.0527610145509243, + -0.00663874763995409, + 0.01931069605052471, + 0.10297638177871704, + -0.015812134370207787, + 0.03013601154088974, + -0.001851813169196248, + -0.05672392249107361, + -0.0813719853758812, + -0.0380387045443058, + -0.047243501991033554, + -0.018925564363598824, + -0.044726986438035965, + 0.00710851838812232, + -0.06377184391021729, + -0.030213860794901848, + 0.020658304914832115, + -0.04943171516060829, + -0.07521814107894897, + -0.032464105635881424, + 0.0022163621615618467, + 0.019385630264878273, + 0.114052914083004, + 0.04345850273966789, + -0.0985444039106369, + 0.035485364496707916, + -0.04719546064734459, + 0.005083896219730377, + -0.044287003576755524, + 0.11017069220542908, + 0.008188730105757713, + 0.03760462999343872, + -0.008354141376912594, + -0.04999081417918205, + -0.027027277275919914, + 0.11065111309289932, + -0.006879007443785667, + -0.016684463247656822, + 0.0340421237051487, + 0.030116917565464973, + -0.05177772790193558, + 0.03793848678469658, + -0.025065189227461815, + 0.00167111458722502, + 0.08240479975938797, + 0.01328193861991167, + 0.027061814442276955, + 0.06800111383199692, + 0.04955754801630974, + -0.04620157182216644, + 0.05929329991340637, + -0.014492016285657883, + 0.04622342810034752, + -0.004104660823941231, + -0.08038374036550522, + 0.05569387227296829, + -0.0015618670731782913, + 0.03199312835931778, + 0.047101374715566635, + -0.025050301104784012, + -0.022862209007143974, + 0.07190411537885666, + -0.0264174435287714, + -0.048764996230602264, + 0.035842981189489365, + -0.04939359426498413, + 0.005363713949918747, + -0.03405771031975746, + 0.048860520124435425, + -0.10112030059099197, + -0.10924343019723892, + -0.05218316614627838, + -0.004557488951832056, + 0.08014561980962753, + -0.027632923796772957, + 0.09078215062618256, + -0.0031584827229380608, + -0.04163878783583641, + 0.027818739414215088, + -0.009850009344518185, + 0.015886550769209862, + -0.0601055882871151, + 0.01123690977692604, + -0.16039741039276123, + -0.0470399484038353, + 3.739997137203086e-34, + 0.12180684506893158, + 0.07707993686199188, + -0.08443155884742737, + 0.03693041577935219, + -0.012699308805167675, + 0.08302117884159088, + 0.05999452993273735, + 0.06363570690155029, + -0.03093607723712921, + -0.0067445458844304085, + 0.032624367624521255, + -0.014418749138712883, + -0.05339549481868744, + 0.006254257634282112, + 0.01644698902964592, + 0.05352085456252098, + -0.0032088698353618383, + -0.01935425028204918, + 0.03689764067530632, + -0.045318517833948135, + -0.04942503944039345, + -0.05612333491444588, + 0.06385497003793716, + 0.09808268398046494, + 0.019041795283555984, + -0.04811200499534607, + -0.001146464142948389, + -0.038230955600738525, + -0.05585913732647896, + -0.061788804829120636, + -0.02313317358493805, + 0.0191038828343153, + -0.059576380997896194, + 0.01592235453426838, + 0.03768531233072281, + 0.035204771906137466, + 0.03730003163218498, + -0.0044042132794857025, + 0.03609299287199974, + 0.04951147735118866, + -0.026104288175702095, + -0.009082386270165443, + -0.07264726608991623, + -0.004961240105330944, + -0.0833398699760437, + 0.037519797682762146, + 0.05675904080271721, + -0.05537042394280434, + 0.0573972724378109, + 0.006323925219476223, + 0.10895843803882599, + -0.028065403923392296, + 0.014742537401616573, + 0.047521449625492096, + -0.07409106194972992, + -0.05749833956360817, + -0.026659920811653137, + -0.007971337996423244, + -0.026123523712158203, + 0.029951082542538643, + -0.0013821317115798593, + 0.023941267281770706, + -0.019053388386964798, + -0.04358920082449913, + -0.011609523557126522, + -0.048035040497779846, + -0.05317575857043266, + -0.008351621218025684, + 0.06626157462596893, + -0.03700470179319382, + 0.04273831471800804, + -0.029919281601905823, + 0.007960488088428974, + 0.07361090928316116, + 0.04330439865589142, + -0.08691154420375824, + 0.0446874238550663, + -0.05787137523293495, + 0.018063442781567574, + 0.02375546470284462, + 0.02027197927236557, + -0.011218761093914509, + -0.040944162756204605, + 0.022994130849838257, + -0.0025756179820746183, + 0.08932793885469437, + -0.050864171236753464, + -0.004246850498020649, + -0.03661895543336868, + 0.007823863066732883, + -0.0675346776843071, + 0.01639242097735405, + 0.03023759089410305, + -0.06274056434631348, + -0.012757963500916958, + -1.500078994354226e-08, + -0.028340106830000877, + -0.028792422264814377, + -0.036118607968091965, + -0.03692152723670006, + -0.024422354996204376, + -0.03556671366095543, + 0.01360506471246481, + -0.0014484674902632833, + -0.04638729244470596, + -0.0013652457855641842, + 0.023878958076238632, + -0.022098340094089508, + -0.03490813449025154, + -0.014835105277597904, + 0.0003891324740834534, + 0.08805160224437714, + -0.0049535250291228294, + 0.08050689846277237, + -0.0408133827149868, + -0.030714266002178192, + -0.017144979909062386, + 0.09208864718675613, + 0.01814103312790394, + -0.01724492385983467, + 0.1003391370177269, + 0.05303230509161949, + -0.05588943138718605, + -0.004862324334681034, + 0.06157688423991203, + -0.006808600854128599, + 0.05568861961364746, + 0.03767627105116844, + 0.012146052904427052, + -0.030710043385624886, + -0.07105092704296112, + 0.009863157756626606, + 0.022326115518808365, + 0.018718425184488297, + -0.0416109673678875, + 0.06328369677066803, + -0.05393831804394722, + -0.04903719201683998, + -0.015274317935109138, + -0.0522196963429451, + -0.02527759037911892, + -0.002245221985504031, + 0.04166635870933533, + -0.04745964705944061, + -0.04141956940293312, + -0.11106380820274353, + 0.010496220551431179, + -0.014102776534855366, + -0.018866367638111115, + 0.13216355443000793, + -0.09459678083658218, + -0.13364621996879578, + 0.07253725081682205, + 0.09277815371751785, + 0.018923234194517136, + -0.06327923387289047, + 0.05965084955096245, + -0.001942913862876594, + 0.04332028329372406, + -0.02368742972612381 + ], + "file-x-bold||documents,files,cancelled,deleted,removed,errors": [ + 0.00020971092453692108, + 0.03705364465713501, + -0.021555379033088684, + 0.049823932349681854, + 0.12192823737859726, + -0.023086147382855415, + 0.06909886747598648, + -0.026466019451618195, + 0.04330692067742348, + 0.01732327602803707, + 0.04413545876741409, + 0.08569587767124176, + 0.08995676785707474, + -0.023234417662024498, + -0.06238401308655739, + 0.027475059032440186, + -0.08260660618543625, + 0.003915462177246809, + -0.02685244008898735, + 0.02670128270983696, + -0.022071367129683495, + 0.11378664523363113, + 0.022140545770525932, + 0.004352792166173458, + 0.11238805204629898, + 0.04417887330055237, + -0.04793376848101616, + -0.03866458684206009, + -0.048677071928977966, + -0.0567210353910923, + 0.012786042876541615, + 0.025138355791568756, + 0.1335396021604538, + -0.011301142163574696, + 0.12526468932628632, + 0.059472404420375824, + -0.01858651451766491, + -0.08639362454414368, + -0.030262261629104614, + 0.034893155097961426, + 0.010340152308344841, + -0.02307283692061901, + -0.04795362055301666, + -0.0008185241022147238, + -0.08316890895366669, + -0.07103201001882553, + -0.028683340176939964, + -0.07634632289409637, + 0.001759774168021977, + 0.02462860755622387, + -0.0026385411620140076, + -0.03832237422466278, + -0.09167951345443726, + -0.013478192500770092, + 0.07612434029579163, + -0.012993241660296917, + -0.06569910049438477, + -0.0019308743067085743, + -0.021359948441386223, + -0.019237523898482323, + 0.025671809911727905, + 0.059618521481752396, + -0.010878603905439377, + 0.003374500432983041, + 0.04221459850668907, + 0.08492966741323471, + -0.008215587586164474, + 0.01127566397190094, + 0.010358777828514576, + 0.03567308560013771, + 0.016656257212162018, + -0.011760957539081573, + -0.015013044700026512, + 0.03043811023235321, + -0.0530705489218235, + 0.04497276991605759, + 0.07421310245990753, + 0.029438182711601257, + -0.06336920708417892, + -0.06833077222108841, + -0.05731990188360214, + -0.08351478725671768, + 0.01630248874425888, + 0.009075673297047615, + 0.03355139493942261, + 0.044382449239492416, + -0.052100349217653275, + -0.07964453846216202, + -0.032708387821912766, + 0.010082483291625977, + -0.03678620234131813, + -0.04155757650732994, + 0.027728155255317688, + 0.06762414425611496, + -0.0912247821688652, + -0.00806331168860197, + 0.13030020892620087, + 0.07562551647424698, + 0.0399659238755703, + 0.07410742342472076, + -0.005980216432362795, + 0.02475493960082531, + 0.03295161575078964, + -0.024260299280285835, + -0.034924041479825974, + 0.000884855748154223, + 0.006109117530286312, + -0.01774098165333271, + -0.025724774226546288, + -0.06472023576498032, + -0.011698201298713684, + -0.1672694981098175, + -0.05277125537395477, + -0.0543072447180748, + 0.010648590512573719, + 0.006180098745971918, + -0.02091052755713463, + 0.016323668882250786, + 0.013499884866178036, + 0.053533390164375305, + 0.053463421761989594, + -0.07514726370573044, + -0.026423845440149307, + -0.023065747693181038, + 0.02166574075818062, + -0.020163092762231827, + 0.08178399503231049, + -9.752607349387152e-34, + 0.009587557055056095, + 0.007260972633957863, + -0.06311775743961334, + 0.0816885456442833, + 0.09037148952484131, + 0.0037566316314041615, + -0.012771805748343468, + -0.07337234169244766, + -0.1042979508638382, + 0.054554905742406845, + 0.08077217638492584, + 0.10710205882787704, + -0.05197839066386223, + 0.0408971831202507, + -0.02411550283432007, + -0.010644162073731422, + 0.07043652981519699, + -0.030704624950885773, + -0.09264857321977615, + 0.01922895759344101, + 0.011528106406331062, + 0.05026567354798317, + -0.06473144888877869, + 0.0008160547586157918, + -0.046973519027233124, + -0.0117794219404459, + 0.05568046495318413, + -0.0576559342443943, + -0.028955023735761642, + -0.01394694671034813, + -0.0012987485388293862, + -0.0002263256028527394, + 0.10217561572790146, + 0.058381613343954086, + -0.06314607709646225, + 0.041353870183229446, + -0.0717492625117302, + -0.01760239712893963, + -0.024980975314974785, + 0.06677515059709549, + -0.05701211839914322, + 0.01545051857829094, + -0.022620242089033127, + -0.060541603714227676, + 0.047363050282001495, + 0.10713332891464233, + -0.014484675601124763, + -0.1029394343495369, + -0.006417818833142519, + 0.010324433445930481, + 0.015893762931227684, + 0.057924311608076096, + 0.03200419619679451, + 0.050580382347106934, + 0.008278154768049717, + -0.004509082064032555, + -0.02330513298511505, + 0.04572790861129761, + 0.01191444881260395, + -0.04583602026104927, + 0.14682956039905548, + 0.0019281110726296902, + 0.022233957424759865, + -0.06923026591539383, + -0.01596667990088463, + 0.021129054948687553, + 0.009433652274310589, + 0.042329899966716766, + 0.019972994923591614, + -0.026715783402323723, + -0.06838179379701614, + 0.007409850601106882, + 0.057232342660427094, + 0.025559986010193825, + 0.05609140172600746, + -0.025168614462018013, + -0.013820714317262173, + -0.047363270074129105, + 0.03875662386417389, + -0.10346858203411102, + -0.07287407666444778, + -0.06794815510511398, + -0.024686232209205627, + 0.008177955634891987, + -0.007844041101634502, + 0.01945500075817108, + -0.011637549847364426, + -0.019089173525571823, + -0.020678825676441193, + 0.018609879538416862, + -0.0057847402058541775, + 0.010545903816819191, + -0.037420857697725296, + -0.12019792199134827, + -0.0715339332818985, + -1.1833996421670635e-33, + 0.0640900731086731, + 0.025598781183362007, + -0.08960718661546707, + 0.008254081942141056, + -0.053590577095746994, + 0.05433990806341171, + -0.01756266877055168, + 0.06238795071840286, + 0.02489054948091507, + -0.01663798838853836, + 0.03871322050690651, + -0.0011690189130604267, + -0.0268208347260952, + -0.043988365679979324, + -0.03875959292054176, + 0.01461841631680727, + 0.013629916124045849, + -0.06296583265066147, + -0.10291367769241333, + -8.689452079124749e-05, + -0.029504071921110153, + -0.023460935801267624, + 0.04087109491229057, + 0.07409118860960007, + 0.020723283290863037, + -0.02260155789554119, + 0.01601104810833931, + -0.031218858435750008, + -0.026915844529867172, + -0.0428277812898159, + -0.01375442836433649, + 0.031182020902633667, + -0.020960044115781784, + 0.02290455438196659, + 0.04613945633172989, + -0.049582138657569885, + -0.005388624966144562, + 0.014571641571819782, + -0.023062093183398247, + 0.027557289227843285, + -0.01641758903861046, + 0.042446114122867584, + 0.014148336835205555, + 0.031912852078676224, + -0.05356963723897934, + 0.030555270612239838, + -0.018819358199834824, + -0.041949186474084854, + 0.04036203771829605, + 0.06640253961086273, + 0.07287424802780151, + -0.06996110081672668, + -0.014464513398706913, + -0.00795355811715126, + -0.04724568501114845, + -0.012862120755016804, + 0.039597395807504654, + 0.012787730433046818, + -0.05949812009930611, + 0.07675668597221375, + -0.05652209371328354, + 0.031589627265930176, + -0.06100606545805931, + -0.021231673657894135, + -0.0021249516867101192, + -0.01971348561346531, + -0.01994887925684452, + -0.031425729393959045, + 0.034753698855638504, + -0.02474294975399971, + 0.06670506298542023, + -0.012494497001171112, + -0.05158982425928116, + 0.05752144753932953, + 0.03432176634669304, + -0.04029707983136177, + 0.025632034987211227, + -0.017846250906586647, + 0.014212624169886112, + 0.022616859525442123, + 0.08922094851732254, + 0.013134917244315147, + 0.0220508873462677, + 0.057535260915756226, + -0.02544138953089714, + 0.05228782817721367, + -0.0829254537820816, + 0.06636269390583038, + -0.001252298359759152, + -0.023108981549739838, + -0.01920441724359989, + 0.0009133953717537224, + 0.059579622000455856, + -0.0406811498105526, + -0.035958074033260345, + -2.1761117352525616e-08, + -0.11774082481861115, + -0.07115945219993591, + -0.058062952011823654, + -0.038800887763500214, + 0.05654227361083031, + -0.045522965490818024, + -0.04616629332304001, + 0.024937884882092476, + -0.04025142267346382, + -0.08211655914783478, + 0.05933290719985962, + -0.045167822390794754, + -0.1234302669763565, + -0.10722319781780243, + -0.05609378218650818, + -0.027675576508045197, + 0.07071743905544281, + 0.05636020749807358, + -0.020815663039684296, + -0.012509709224104881, + -0.04576610401272774, + 0.06939538568258286, + 0.005567255895584822, + -0.00161925598513335, + 0.04080049693584442, + 0.0216714758425951, + -0.005058947019279003, + 0.0822286382317543, + 0.05444512516260147, + 0.04207627847790718, + 0.05864927917718887, + 0.00711597828194499, + 0.05991464853286743, + -0.024668850004673004, + -0.04117416590452194, + 0.03327320143580437, + 0.03568960726261139, + 0.04231017455458641, + -0.027504324913024902, + 0.07612816244363785, + -0.039160214364528656, + 0.041322432458400726, + 0.0021633051801472902, + -0.039167262613773346, + -0.047471269965171814, + -0.051813725382089615, + 0.020009806379675865, + -0.02715347893536091, + -0.06121527776122093, + -0.12313327193260193, + -0.019991954788565636, + 0.022486209869384766, + -0.03261358663439751, + 0.13386867940425873, + -0.05864347144961357, + -0.062391024082899094, + 0.0721227377653122, + 0.1287347972393036, + -0.019969474524259567, + -0.005365751683712006, + 0.10165002942085266, + -0.030509736388921738, + 0.02624739333987236, + -0.00670064939185977 + ], + "file-xls-bold||documents,excel,microsoft": [ + 0.009127539582550526, + 0.04232744500041008, + -0.08464057743549347, + 0.0378388836979866, + 0.05526256188750267, + 0.0035384991206228733, + -0.03923381119966507, + -0.018295638263225555, + 0.08447811752557755, + 0.05213592201471329, + -0.03912660852074623, + 0.0357123501598835, + 0.06810467690229416, + -0.05634722486138344, + 0.02165122702717781, + 0.05564777925610542, + -0.00565551919862628, + 0.02997370809316635, + -0.06311134994029999, + 0.053694404661655426, + 0.03449401631951332, + 0.04590318351984024, + 0.020211629569530487, + -0.018699590116739273, + 0.10877825319766998, + -0.012378072366118431, + -0.010869440622627735, + -0.019816692918539047, + -0.033294808119535446, + -0.03874439373612404, + -0.019661808386445045, + -0.029999544844031334, + 0.09346272796392441, + 0.04836408048868179, + 0.054841410368680954, + 0.0160321444272995, + 0.01791151985526085, + -0.07270722091197968, + 0.056888647377491, + 0.09424851834774017, + 0.05023857578635216, + -0.04674836993217468, + -0.0028649913147091866, + -0.025205034762620926, + -0.04914487525820732, + -0.046359363943338394, + -0.02971234917640686, + 0.020131995901465416, + 0.037776898592710495, + 0.037523604929447174, + -0.06501200795173645, + -0.06312809884548187, + -0.06903212517499924, + -0.009250332601368427, + 0.028210392221808434, + -0.03261004015803337, + -0.07252902537584305, + 0.005527053959667683, + 0.049876485019922256, + -0.07664097100496292, + 0.007788550108671188, + 0.013310134410858154, + 0.03384137898683548, + 0.051157448440790176, + 0.00685901427641511, + 0.07113716751337051, + -0.050303466618061066, + 0.047312796115875244, + -0.0462072528898716, + 0.0003891386149916798, + -0.010814262554049492, + -0.00034288776805624366, + -0.00594024034217, + -0.03940499946475029, + 0.001821734942495823, + 0.05612637475132942, + -0.04909292235970497, + -0.0015009376220405102, + -0.04014604911208153, + -0.03564068302512169, + -0.05046255886554718, + -0.06431297212839127, + -0.02199995517730713, + 0.0420534685254097, + 0.06554972380399704, + -0.029100647196173668, + -0.03914184123277664, + -0.0496845617890358, + -0.06798111647367477, + 0.0066171325743198395, + -0.043557848781347275, + -0.015737878158688545, + 0.04006939008831978, + 0.08433165401220322, + -0.12583178281784058, + -0.03239475190639496, + 0.10191108286380768, + 0.0571303516626358, + 0.002404202939942479, + -0.011127344332635403, + -0.037260573357343674, + 0.016561001539230347, + 0.09524673223495483, + 0.01684797741472721, + -0.04161211475729942, + -0.01716500148177147, + 0.03292408585548401, + -0.03276427835226059, + 0.02455730549991131, + -0.07187005877494812, + 0.04173504188656807, + -0.1566399782896042, + -0.053674791008234024, + -0.08683763444423676, + -0.05428848788142204, + -0.019541561603546143, + -0.05343133956193924, + -0.0817461684346199, + 0.0421125590801239, + 0.04845864325761795, + 0.019062791019678116, + -0.06166674196720123, + -0.017555231228470802, + -0.032881155610084534, + 0.015121529810130596, + 0.011142341420054436, + 0.0380568727850914, + -2.3369404421262948e-33, + -0.03257209062576294, + -0.012763671576976776, + -0.0456928052008152, + 0.10245206952095032, + 0.037915151566267014, + -0.013977027498185635, + -0.043221551924943924, + -0.10279183089733124, + -0.07505475729703903, + 0.0665896013379097, + 0.01764184609055519, + 0.12433785200119019, + -0.028474902734160423, + 0.05058391019701958, + -0.04253309592604637, + 0.023949306458234787, + 0.04056018590927124, + -0.041568219661712646, + -0.09338837116956711, + 0.04030513018369675, + 0.007018571719527245, + 0.01219350565224886, + -0.04434135928750038, + -0.031622953712940216, + -0.04738675057888031, + -0.012007699348032475, + 0.11159300804138184, + -0.048087552189826965, + -0.0268076304346323, + 0.000991969951428473, + 0.018431032076478004, + 0.0025499719195067883, + 0.05364350974559784, + 0.008815903216600418, + -0.05801622197031975, + 0.08355000615119934, + -0.05947500467300415, + 0.04134760797023773, + 0.05564438924193382, + 0.06393490731716156, + -0.05700644105672836, + 0.02088998630642891, + 0.08929431438446045, + -0.03732052817940712, + 0.037197478115558624, + 0.15548671782016754, + -0.019658932462334633, + -0.07244612276554108, + 0.03815515711903572, + -0.012380296364426613, + 0.03305194154381752, + -0.0015521005261689425, + 0.023889703676104546, + 0.048309847712516785, + 0.032162897288799286, + -0.01627550646662712, + -0.00940015260130167, + 0.09456044435501099, + -0.016183478757739067, + -0.017822695896029472, + 0.02787887677550316, + -0.0089465556666255, + -0.021021217107772827, + 0.008280442096292973, + -0.06551462411880493, + 0.05010811612010002, + 0.03187595307826996, + 0.04703764244914055, + 0.03247390687465668, + -0.02495614066720009, + 0.011075153946876526, + 0.027307720854878426, + 0.0577232763171196, + -0.019453754648566246, + 0.04402746632695198, + 0.039070405066013336, + -0.00012182065984234214, + -0.006577714346349239, + -0.002226712880656123, + -0.1448754072189331, + -0.07637636363506317, + -0.00889128353446722, + -0.053479719907045364, + 0.04724618047475815, + -0.07542455941438675, + 0.03458452224731445, + -0.016296325251460075, + -0.006397707387804985, + -0.003633949439972639, + 0.011995812878012657, + -0.032406967133283615, + 0.0020187883637845516, + -0.041035041213035583, + -0.06796756386756897, + -0.03471729904413223, + -2.2680830595442465e-34, + 0.11317577213048935, + 0.01087898202240467, + -0.06903724372386932, + 0.003950310871005058, + 0.01083992701023817, + 0.1188608705997467, + 0.043070629239082336, + 0.007460849825292826, + -0.025491267442703247, + 0.02699052169919014, + 0.11383359134197235, + -0.014018011279404163, + -0.08372603356838226, + 0.013505909591913223, + -0.034949060529470444, + -0.03108152374625206, + 0.023794932290911674, + 0.05183711647987366, + -0.11317992210388184, + -0.08538036793470383, + -0.11310745775699615, + -0.04359753057360649, + 0.033625971525907516, + 0.08921707421541214, + 0.06843563169240952, + 0.011704675853252411, + -0.05355300381779671, + -0.009934591129422188, + -0.07165313512086868, + 0.0012275335611775517, + -0.07308683544397354, + 0.07051774859428406, + -0.03375532478094101, + 0.03381408005952835, + -0.02176431193947792, + 0.02865057811141014, + 0.00038775429129600525, + -0.03304261341691017, + 0.07724840193986893, + 0.007979242131114006, + -0.021637309342622757, + 0.008916473016142845, + 0.018238402903079987, + 0.02263728156685829, + -0.008566421456634998, + 0.062350399792194366, + 0.018369272351264954, + -0.06724772602319717, + -0.013373512774705887, + 0.05370860919356346, + 0.03307099640369415, + 0.01801300048828125, + -0.0029917864594608545, + 0.007061153184622526, + -0.0486639067530632, + -0.032440200448036194, + 0.01006676908582449, + -0.024886099621653557, + -0.07166140526533127, + 0.033118728548288345, + -0.06686624139547348, + 0.04725797846913338, + 0.01595940627157688, + -0.0019151169108226895, + 0.020136332139372826, + -0.003078506560996175, + 0.012684154324233532, + -0.07332783937454224, + 0.07285529375076294, + 0.027147505432367325, + 0.05854304879903793, + -0.025371836498379707, + -0.03220830112695694, + 0.034906718879938126, + 0.019967367872595787, + -0.030432606115937233, + -0.01934993453323841, + -0.05693715438246727, + -0.04030768573284149, + -0.018579278141260147, + 0.05361849069595337, + -0.022794155403971672, + 0.00612333370372653, + 0.07958433777093887, + -0.03138593211770058, + 0.048745423555374146, + -0.00563203077763319, + -0.022187121212482452, + -0.04881448671221733, + 0.020896704867482185, + -0.06171184405684471, + -0.020003430545330048, + 0.04916072264313698, + -0.04551095888018608, + -0.08884482085704803, + -1.6915217670998572e-08, + -0.03046928346157074, + 0.00908671598881483, + -0.03132229670882225, + -0.04714853689074516, + -0.009500830434262753, + 0.0071059176698327065, + -0.09533891081809998, + 0.026925206184387207, + 0.007309677544981241, + 0.009911713190376759, + 0.061321645975112915, + -0.07696837931871414, + -0.06609245389699936, + -0.06725490093231201, + 0.013464693911373615, + -0.007924862205982208, + 0.02863849326968193, + -0.013062886893749237, + -0.020186692476272583, + -0.03179473057389259, + -0.027282748371362686, + 0.05990758538246155, + 0.018833506852388382, + 0.04840865358710289, + 0.10410233587026596, + -0.026312997564673424, + -0.0934852808713913, + 0.002769258338958025, + 0.07994803786277771, + 0.09391354769468307, + 0.02644597738981247, + 0.010236159898340702, + 0.005911427084356546, + 0.023610280826687813, + -0.08471817523241043, + -0.011721782386302948, + 0.04172253608703613, + 0.07527441531419754, + 0.002367102075368166, + 0.08484844118356705, + -0.08724597841501236, + 0.0032166549935936928, + -0.10177985578775406, + -0.03697367012500763, + 0.007563730236142874, + -0.018531952053308487, + 0.04369800165295601, + -0.038972653448581696, + -0.08708187192678452, + -0.07085291296243668, + 0.029575370252132416, + -0.013381990604102612, + 0.06733664870262146, + 0.11782828718423843, + -0.12082916498184204, + -0.08256136626005173, + 0.014630396850407124, + 0.12386233359575272, + 0.00014634303806815296, + -0.02512621320784092, + 0.09869261085987091, + -0.0041489810682833195, + 0.04228946194052696, + 0.0005869092419743538 + ], + "file-zip-bold||documents,archive,compression": [ + -0.04600106552243233, + 0.10916631668806076, + -0.076888807117939, + 0.08698607236146927, + 0.06735081970691681, + -0.018583836033940315, + -0.007055469322949648, + -0.035236213356256485, + 0.028066668659448624, + 0.06519579887390137, + -0.07003924995660782, + 0.10298585146665573, + 0.059057146310806274, + 0.015204393304884434, + -0.06262291222810745, + 0.034887827932834625, + -0.04911152645945549, + 0.061200786381959915, + -0.00964431744068861, + -0.0052173021249473095, + 0.0232562143355608, + 0.045254919677972794, + 0.069295234978199, + -0.022357499226927757, + 0.10114727169275284, + 0.03171491622924805, + -0.022619813680648804, + 0.006476394832134247, + 0.06727129966020584, + -0.0326758548617363, + 0.02819858305156231, + -0.014292369596660137, + 0.14328722655773163, + 0.023524384945631027, + 0.09349110722541809, + 0.06661880016326904, + 0.03000669553875923, + -0.022406702861189842, + -0.03246297687292099, + 0.09254468232393265, + 0.044012393802404404, + 0.019815703853964806, + -0.037979282438755035, + 0.027527742087841034, + -0.10573794692754745, + -0.02992895245552063, + 0.004833802115172148, + 0.007198076229542494, + -0.024997586384415627, + -0.00362267903983593, + -0.034470442682504654, + -0.02925395965576172, + -0.10183559358119965, + 0.055688947439193726, + 0.024758998304605484, + -0.024041850119829178, + -0.06481770426034927, + -0.005856870207935572, + 0.007944418117403984, + -0.08633682131767273, + -0.03964235261082649, + 0.03265635296702385, + -0.04512783885002136, + 0.0632229745388031, + 0.058719534426927567, + 0.08406474441289902, + 0.0512905977666378, + 0.06993168592453003, + -0.05710388720035553, + -0.05343344435095787, + 0.043830886483192444, + 0.003295197384431958, + -0.03308352082967758, + 0.02183615230023861, + -0.036098916083574295, + 0.06974918395280838, + 0.048967842012643814, + 0.06694693118333817, + -0.07197672128677368, + -0.010859012603759766, + -0.04926486685872078, + -0.1305897980928421, + 0.03158076852560043, + -0.014046716503798962, + 0.010090806521475315, + -0.007222861051559448, + -0.05772735923528671, + -0.08956769853830338, + -0.07512058317661285, + -0.02961217239499092, + -0.004810566082596779, + 0.05356293544173241, + 0.024027058854699135, + 0.03889208659529686, + -0.0685989111661911, + 0.02900858037173748, + 0.07666940987110138, + 0.03575623035430908, + -0.01194250863045454, + 0.05161284655332565, + 0.031373944133520126, + 0.016479477286338806, + 0.056171126663684845, + -0.07077779620885849, + 0.01825079694390297, + -0.07084786146879196, + 0.05183979496359825, + -0.020013567060232162, + 0.012938566505908966, + 0.05551141873002052, + 0.012832595966756344, + -0.13979586958885193, + 0.012749572284519672, + -0.09045533835887909, + 0.00027690405840985477, + 0.013868669979274273, + -0.10894780606031418, + 0.06639456748962402, + 0.06622251868247986, + 0.035310886800289154, + 0.0030280572827905416, + -0.0474814847111702, + -0.044755060225725174, + -0.06276054680347443, + 0.028066206723451614, + -0.04654889926314354, + 0.045995697379112244, + -2.7207578984399956e-33, + 0.039141349494457245, + 0.03235602751374245, + -0.06753451377153397, + 0.13282492756843567, + -0.0075408900156617165, + 0.03959404677152634, + 0.0018698186613619328, + -0.0583607479929924, + -0.05615359544754028, + 0.07317934185266495, + -0.0008588047348894179, + 0.0788864716887474, + -0.011442272923886776, + 0.06002456322312355, + -0.02122478373348713, + 0.0270976722240448, + -0.021488474681973457, + -0.015268859453499317, + -0.026916900649666786, + 0.04880249872803688, + -0.04099336639046669, + 0.026726508513092995, + -0.025121351704001427, + -0.052320245653390884, + -0.05095195770263672, + -0.03934798017144203, + 0.056255314499139786, + -0.129374697804451, + -0.0598214752972126, + 0.00567787466570735, + 0.024384772405028343, + 0.03622492402791977, + 0.037734802812337875, + 0.02961769886314869, + -0.03728560730814934, + 0.027141820639371872, + -0.059233881533145905, + 0.04196624830365181, + -0.06239038333296776, + 0.05117269977927208, + -0.01671360433101654, + 0.004167396575212479, + -0.010982166044414043, + -0.06001557409763336, + 0.03126608207821846, + 0.07935948669910431, + 0.06319378316402435, + -0.10463793575763702, + -0.036120977252721786, + 0.022391892969608307, + 0.024310356006026268, + 0.03817836940288544, + 0.004850221797823906, + 0.07582132518291473, + 0.021511225029826164, + -0.0032266832422465086, + 0.03361627459526062, + 0.005067459773272276, + 0.062295496463775635, + -0.00751144764944911, + 0.03588838875293732, + -0.007246606517583132, + 0.04158129170536995, + -0.0482439324259758, + 0.08833880722522736, + -0.0018503295723348856, + -0.01957881823182106, + 0.05055828019976616, + 0.06810983270406723, + 0.029663166031241417, + 0.013796880841255188, + 0.027464609593153, + 0.06995595991611481, + -0.017698725685477257, + -0.015980109572410583, + 0.010296570137143135, + 0.00970638170838356, + -0.015532620251178741, + -0.0032959631644189358, + -0.13822327554225922, + -0.07292047888040543, + -0.07967590540647507, + -0.002894217148423195, + 0.023184804245829582, + -0.022551679983735085, + 0.05125157907605171, + -0.0013794604456052184, + 0.026679035276174545, + -0.014756530523300171, + -0.051301509141922, + 0.05309836566448212, + -0.0034867539070546627, + -0.018560638651251793, + -0.15727539360523224, + -0.02104523591697216, + 9.922971378309842e-34, + 0.0926128700375557, + -0.008824655786156654, + -0.10162566602230072, + -0.03803153708577156, + -0.026478366926312447, + 0.06751885265111923, + -0.0067109838128089905, + 0.026370849460363388, + -0.04862620308995247, + -0.028241587802767754, + 0.038760531693696976, + -0.05136069282889366, + -0.04519910365343094, + -0.015558280982077122, + 0.016415592283010483, + 0.02474936470389366, + 0.029979005455970764, + -0.04409308731555939, + -0.05050644651055336, + -0.0075857690535485744, + -0.07744009047746658, + -0.020083706825971603, + -0.04251613840460777, + 0.11874881386756897, + 0.06821923702955246, + -0.04270003363490105, + -0.0320475697517395, + -0.006197764538228512, + -0.004017446655780077, + 0.010298212990164757, + -0.024203568696975708, + -0.009143892675638199, + -0.05461067333817482, + 0.019247671589255333, + -0.052427954971790314, + -0.015088547952473164, + 0.010960500687360764, + 0.04893628507852554, + 0.010702807456254959, + 0.028157159686088562, + -0.03487100079655647, + 0.023442499339580536, + -0.04090689867734909, + -0.01128257717937231, + 0.01531447097659111, + -0.04109436273574829, + -0.05944149196147919, + -0.07482564449310303, + -0.015089084394276142, + 0.04653961956501007, + 0.020943306386470795, + 0.04750964045524597, + -0.044161323457956314, + 0.027181634679436684, + 0.01230130810290575, + -0.07286975532770157, + -0.0804980918765068, + 0.011876526288688183, + -0.07433996349573135, + 0.06360004097223282, + -0.03991565480828285, + 0.06021059304475784, + -0.005362547002732754, + -0.05388810858130455, + -0.01976148411631584, + -0.0430799163877964, + -0.036425311118364334, + -0.0919489786028862, + -0.01399736013263464, + 0.07646477222442627, + 0.04779399558901787, + -0.0455421544611454, + 0.040020331740379333, + 0.05691521242260933, + 0.06751863658428192, + -0.013345453888177872, + 0.1050834134221077, + 0.07796010375022888, + -0.014105294831097126, + 0.002420217264443636, + 0.009549389593303204, + 0.05842965468764305, + -0.010058043524622917, + 0.08336061984300613, + -0.05237322300672531, + 0.04187959432601929, + 0.0188826322555542, + -0.0021253053564578295, + -0.006958684418350458, + -0.055653560906648636, + -0.013069705106317997, + 0.024970881640911102, + -0.0012945825001224875, + 0.015341643244028091, + 0.03212011605501175, + -1.5601374414586644e-08, + -0.08241718262434006, + -0.051455676555633545, + -0.03591259568929672, + -0.004664060194045305, + 0.010266958735883236, + 0.028696829453110695, + -0.053772639483213425, + 0.014790728688240051, + -0.08405847102403641, + -0.06894019991159439, + 0.09813879430294037, + -0.048015110194683075, + -0.07010353356599808, + -0.005445091985166073, + 0.003956450615078211, + 0.02650587446987629, + -0.001573430490680039, + 0.003756078192964196, + -0.027879834175109863, + -0.04085865616798401, + -0.022826751694083214, + 0.04879729449748993, + 0.008131754584610462, + 0.04728494584560394, + 0.06835559755563736, + 0.008422265760600567, + -0.0664476752281189, + -0.02882448211312294, + 0.07219401746988297, + 0.041619524359703064, + 0.003365838434547186, + 0.04052446410059929, + -0.02443680912256241, + -0.06415626406669617, + -0.07465024292469025, + 0.009189138188958168, + 0.07235601544380188, + 0.0032508489675819874, + 0.005282983649522066, + 0.05821901559829712, + -0.02835686318576336, + 0.02434905618429184, + -0.04962693154811859, + -0.057305656373500824, + 0.0032705492340028286, + -0.03146466985344887, + 0.05029119923710823, + -0.04555194079875946, + -0.12532192468643188, + -0.025575311854481697, + -0.005006700754165649, + -0.0019004340283572674, + -0.0273005198687315, + 0.10714402794837952, + 0.011806711554527283, + -0.07929979264736176, + -0.00547367800027132, + 0.1219324991106987, + -0.040707528591156006, + 0.05294843763113022, + 0.08120957762002945, + -0.06732101738452911, + 0.03279183432459831, + -0.0018247734988108277 + ], + "files-bold||documents,open,library": [ + 0.014664316549897194, + -0.0089246965944767, + -0.05074840411543846, + 0.07752315700054169, + 0.10072101652622223, + -0.029197800904512405, + 0.0019040548941120505, + 0.016226064413785934, + 0.06894397735595703, + 0.02570349909365177, + -0.04432451352477074, + 0.10499345511198044, + 0.05987188592553139, + -0.01221067551523447, + 0.04426458105444908, + 0.053424254059791565, + -0.053338125348091125, + 0.031421348452568054, + -0.013376439921557903, + 0.05180013179779053, + 0.0008798838243819773, + 0.084211565554142, + 0.04070410877466202, + -0.05583084002137184, + 0.023322690278291702, + -0.006789368577301502, + -0.018083760514855385, + -0.08651412278413773, + -0.018563274294137955, + -0.03805772215127945, + 0.06593994796276093, + -0.023053620010614395, + 0.0847112163901329, + 0.0031084688380360603, + 0.09383250772953033, + 0.06618981063365936, + -0.014838576316833496, + -0.086227647960186, + -0.06096455827355385, + 0.06062180921435356, + 0.031518686562776566, + 0.0018960422603413463, + -0.032240353524684906, + 0.022957347333431244, + -0.11072105914354324, + -0.07206122577190399, + 0.0024361456744372845, + -0.04384131729602814, + 0.03213495761156082, + 0.006992903538048267, + -0.05296116694808006, + -0.04498456045985222, + -0.12303720414638519, + -0.027049517259001732, + 0.0366908498108387, + -0.016842864453792572, + -0.08796418458223343, + 0.01023842766880989, + 0.019864043220877647, + 0.0020269297529011965, + 0.005307553336024284, + 0.012036079540848732, + 0.011763405986130238, + 0.010792970657348633, + 0.04736673831939697, + 0.10090747475624084, + 0.0187006164342165, + 0.05579567328095436, + -0.03226570412516594, + -0.022130250930786133, + 0.04762931540608406, + -7.068424019962549e-05, + 0.028797736391425133, + -0.005494630895555019, + -0.014691739343106747, + 0.008321790024638176, + 0.021301353350281715, + 0.05571998655796051, + -0.009826128371059895, + -0.10222268104553223, + -0.011553656309843063, + -0.09557189047336578, + -0.0015572112752124667, + -0.0064323279075324535, + 0.0796499252319336, + 0.08306173235177994, + -0.05931303650140762, + -0.08382052928209305, + -0.04612290859222412, + 0.00041995590436272323, + -0.005614971276372671, + -0.04258158057928085, + -0.03090500459074974, + 0.08681202679872513, + -0.11135362088680267, + -0.04377075284719467, + 0.11612816154956818, + 0.05682552233338356, + 0.01976298727095127, + 0.07433364540338516, + -0.01856139861047268, + 0.051432885229587555, + 0.08200924843549728, + 0.031522128731012344, + -0.02616819553077221, + 0.006791160441935062, + -0.005338023416697979, + -0.002976813120767474, + -0.05376437306404114, + -0.07023689150810242, + 0.053013186901807785, + -0.14988262951374054, + -0.015449008904397488, + -0.06050572544336319, + -0.05740934610366821, + -0.01737217605113983, + -0.03211568295955658, + -0.0020019961521029472, + 0.038862816989421844, + 0.09965924173593521, + 0.03546701371669769, + -0.037311386317014694, + -0.004018111154437065, + -0.04684555158019066, + 0.022419389337301254, + -0.023332199081778526, + 0.04062817618250847, + -1.9368251239804276e-33, + 0.017261408269405365, + -0.016751937568187714, + -0.05976241081953049, + 0.10547754913568497, + 0.0042111314833164215, + -0.05348764359951019, + -0.050924744457006454, + -0.05079921707510948, + -0.15961439907550812, + 0.04272116348147392, + 0.0996229499578476, + 0.08115779608488083, + -0.04674844816327095, + 0.058035120368003845, + -0.0013031968846917152, + 0.00927137304097414, + -0.005699442233890295, + -0.007179831620305777, + -0.06399769335985184, + -0.0035146118607372046, + -0.07489820569753647, + 0.03777768835425377, + -0.04772290587425232, + 0.011916331015527248, + -0.07072602957487106, + -0.009022911079227924, + 0.08304186165332794, + -0.10138846933841705, + -0.049770597368478775, + 0.002291350858286023, + 0.027324309572577477, + -0.027615278959274292, + 0.07929462194442749, + 0.06473173946142197, + -0.09137662500143051, + 0.039623964577913284, + -0.09187536686658859, + 0.003986464813351631, + 0.009806725196540356, + 0.02594422549009323, + -0.0817507654428482, + 0.006060575135052204, + 0.013023048639297485, + -0.014849567785859108, + 0.027206003665924072, + 0.15156841278076172, + -0.00018761072715278715, + -0.044819753617048264, + -0.051968082785606384, + -0.017357580363750458, + 0.011604324914515018, + 0.05122077837586403, + -0.026265034452080727, + 0.05612517148256302, + 0.016633760184049606, + -0.021708574146032333, + -0.024343270808458328, + 0.0838133916258812, + 0.045362260192632675, + -0.008891689591109753, + 0.08434027433395386, + 0.03168206289410591, + 0.027053456753492355, + -0.06370251625776291, + 0.0035687736235558987, + 0.05394277721643448, + -0.003060705028474331, + 0.056659284979104996, + 0.06726039201021194, + 0.009624545462429523, + -0.015122026205062866, + 0.040322598069906235, + 0.016323857009410858, + 0.03241696581244469, + 0.036120589822530746, + 0.056939128786325455, + 0.031418327242136, + -0.03330538794398308, + 0.04412500560283661, + -0.09900523722171783, + -0.07017563283443451, + -0.020796509459614754, + 0.037606753408908844, + 0.062080252915620804, + -0.07645697891712189, + 0.04168710485100746, + -0.025727631524205208, + -0.05431580916047096, + -0.006400098092854023, + 0.003417173633351922, + 0.002434931229799986, + 0.007462808396667242, + -0.012826663441956043, + -0.10906894505023956, + -0.05129826068878174, + 2.3844159038911222e-34, + 0.14312238991260529, + 0.014129115268588066, + -0.05205247923731804, + 0.014153756201267242, + -0.02560221590101719, + 0.0851035863161087, + -0.032498762011528015, + 0.02433369681239128, + 0.018898312002420425, + 0.01825341209769249, + 0.07613236457109451, + 0.008073736913502216, + 0.0009297667420469224, + -0.0369904451072216, + 0.025031322613358498, + -0.03758668899536133, + 0.07286396622657776, + 0.015158748254179955, + -0.07877730578184128, + 0.0011637014104053378, + -0.05912803113460541, + -0.04658449441194534, + 0.049643374979496, + 0.05907900258898735, + 0.04737010598182678, + 0.01255896408110857, + -0.028918329626321793, + -0.05140434578061104, + -0.04226715490221977, + -0.018168723210692406, + -0.027257869020104408, + 0.036413438618183136, + -0.030997557565569878, + -0.009854807518422604, + -0.013603335246443748, + 0.005420250818133354, + 0.008976742625236511, + -0.01490814983844757, + 0.03907899931073189, + 0.020937977358698845, + -0.0016102030640468001, + 0.0416606143116951, + -0.0011221267050132155, + -0.013187181204557419, + -0.09935900568962097, + -0.018465600907802582, + -0.011514130979776382, + -0.04471911862492561, + -0.018327614292502403, + -0.02240058407187462, + 0.07987821847200394, + -0.026448378339409828, + 0.020751772448420525, + -0.0801173597574234, + -0.03181680291891098, + -0.009614313021302223, + 0.028132395818829536, + -0.02274087443947792, + -0.014690639451146126, + 0.05421428382396698, + -0.009664278477430344, + 0.027877170592546463, + -0.08824773132801056, + -0.03030179999768734, + -0.03870900347828865, + -0.050081316381692886, + -0.010192746296525002, + -0.02773432433605194, + 0.06711244583129883, + -0.03144517540931702, + 0.03842584043741226, + -0.025930142030119896, + 0.018579792231321335, + 0.06691965460777283, + 0.04706487059593201, + -0.02499326504766941, + 0.09225473552942276, + -0.04149682819843292, + 0.001723331632092595, + 0.006806536577641964, + 0.04439573734998703, + -0.01116947177797556, + 0.02828901633620262, + 0.03415699675679207, + -0.013268092647194862, + 0.06641414761543274, + -0.009928611107170582, + -6.654315802734345e-05, + -0.00982168223708868, + -0.0098648052662611, + -0.05259576439857483, + 0.03734980523586273, + 0.06731650978326797, + -0.009140335023403168, + -0.015259301289916039, + -1.6639074118529606e-08, + -0.09738772362470627, + -0.0483168289065361, + -0.03991393744945526, + -0.019374441355466843, + 0.0023237294517457485, + -0.031491708010435104, + -0.06834614276885986, + 0.030153745785355568, + -0.05062258243560791, + -0.03205164521932602, + 0.05710180476307869, + -0.04450243338942528, + -0.06427504867315292, + -0.08246465772390366, + -0.028672168031334877, + 0.04537846893072128, + 0.04486555978655815, + 0.030775271356105804, + -0.030427638441324234, + -0.02597164735198021, + 0.0028838817961513996, + 0.06041094288229942, + 0.06726886332035065, + 0.049419257789850235, + 0.014066329225897789, + 0.0341624915599823, + -0.03259653225541115, + -0.03370313718914986, + 0.09061601012945175, + 0.06720191985368729, + -0.0036815893836319447, + 0.026297306641936302, + -0.03025702014565468, + 0.028350837528705597, + -0.06082524359226227, + 0.0226004458963871, + 0.04951542243361473, + 0.022501643747091293, + -0.07311264425516129, + 0.11893744021654129, + -0.061349861323833466, + -0.02594689093530178, + -0.033811479806900024, + -0.05043703317642212, + -0.10467573255300522, + -0.05148006230592728, + 0.0328616239130497, + 0.026450037956237793, + -0.10184645652770996, + -0.060858000069856644, + -0.020300237461924553, + 0.005413046572357416, + 0.0056153289042413235, + 0.10440103709697723, + -0.06972391903400421, + -0.10401343554258347, + 0.041566286236047745, + 0.10227582603693008, + -0.07209715247154236, + -0.005589621141552925, + 0.03994940593838692, + -0.032230228185653687, + 0.04529067873954773, + 0.014233260415494442 + ], + "film-reel-bold||videography,films,movies,recording": [ + -0.06975383311510086, + -0.06363464891910553, + -0.08022859692573547, + -0.05970016121864319, + -0.004828349221497774, + 0.0632951408624649, + 0.06032172963023186, + 0.021119337528944016, + 0.032337408512830734, + -0.0903862789273262, + 0.0003951788239646703, + 9.69831962720491e-05, + -0.042890191078186035, + 0.0654788538813591, + -0.05287598818540573, + 0.027897927910089493, + 0.0740908682346344, + 0.024943403899669647, + 0.049377650022506714, + 0.024080658331513405, + 0.047118306159973145, + 0.017561882734298706, + 0.051160283386707306, + 0.046059176325798035, + 0.016839824616909027, + -0.015374594368040562, + 0.012841703370213509, + 0.060527995228767395, + -0.007882822304964066, + -0.04146549105644226, + -0.04131012782454491, + 0.07587068527936935, + 0.07146383821964264, + 0.021020904183387756, + 0.05422534421086311, + -0.04637130722403526, + -0.048192091286182404, + -0.03980505093932152, + -0.06221649795770645, + 0.009143267758190632, + 0.048248618841171265, + -0.011296250857412815, + 0.028603792190551758, + -0.015943743288517, + -0.04302654787898064, + -0.028585337102413177, + -0.01653219759464264, + -0.0005141201545484364, + -0.004664305597543716, + -0.01239616796374321, + -0.09004545211791992, + 0.03217100352048874, + -0.11687354743480682, + 0.02928704209625721, + -0.00608756672590971, + -0.037545107305049896, + 0.02546669915318489, + -0.026581227779388428, + 0.05765676870942116, + -0.011310611851513386, + 0.0017119910335168242, + 0.008780336007475853, + 0.05118875205516815, + 0.05798787623643875, + 0.055085379630327225, + 0.010027311742305756, + 0.010448569431900978, + 0.05996319279074669, + -0.017288442701101303, + -0.003445494920015335, + -0.07718150317668915, + 0.07219986617565155, + -0.06488517671823502, + -0.059533458203077316, + -0.03233344107866287, + -0.09954717010259628, + -0.026835782453417778, + -0.008695553056895733, + -0.09128415584564209, + -0.12719795107841492, + -0.006017821840941906, + -0.129684180021286, + -0.04679024592041969, + 0.0058138249441981316, + -0.000933147210162133, + 0.0658591017127037, + 0.0036040463019162416, + -0.020822731778025627, + -0.057980962097644806, + 0.045273102819919586, + -0.1354658007621765, + 0.011647511273622513, + -0.09468695521354675, + 0.027180304750800133, + -0.06456238031387329, + -0.002375676529482007, + -0.012940148822963238, + -0.06368006020784378, + 0.027573207393288612, + 0.04580172896385193, + 0.07419899106025696, + -0.05082732439041138, + 0.02083093300461769, + 0.0194232277572155, + 0.00014460487000178546, + -0.06939568370580673, + 0.05020212009549141, + -0.007392521481961012, + -0.019883351400494576, + -0.02202187106013298, + -0.033850181847810745, + -0.01861274056136608, + 0.004916864912956953, + -0.03504344820976257, + 0.07571830600500107, + 0.00799457635730505, + -0.053845372051000595, + -0.0010611835168674588, + 0.009555122815072536, + 0.06749775260686874, + 0.011177671141922474, + -0.02833961322903633, + -0.051516178995370865, + -0.05269993469119072, + -0.028803395107388496, + -0.01582009345293045, + 0.08677069842815399, + -2.5118993682637532e-33, + 0.06748943775892258, + 0.05498439818620682, + -0.002321892883628607, + 0.10350799560546875, + -0.023253658786416054, + 0.02298756316304207, + -0.023024382069706917, + 0.06607368588447571, + -0.05547788366675377, + 0.05651465430855751, + 0.054676156491041183, + -0.021197456866502762, + -0.017784014344215393, + 0.05771389231085777, + 0.02164452150464058, + 0.028957488015294075, + -0.03746702894568443, + -0.0337868295609951, + -0.00817668903619051, + 0.027045054361224174, + -0.0662616565823555, + 0.09973584115505219, + 0.015355878509581089, + -0.04104168713092804, + -0.03985948488116264, + -0.08278010040521622, + -0.027587443590164185, + -0.0070981658063828945, + -0.0009322595433332026, + 0.04240363836288452, + 0.02224246971309185, + 0.028713468462228775, + 0.07937697321176529, + -0.08337096869945526, + 0.07344773411750793, + -0.007241284009069204, + -0.12257958948612213, + -0.03777805343270302, + 0.0021356947254389524, + 0.02032831311225891, + -0.09282119572162628, + 0.05640183389186859, + -0.08645033836364746, + -0.019983580335974693, + -0.053855907171964645, + 0.09401571750640869, + 0.04087025299668312, + 0.05501030385494232, + -0.015509452670812607, + 0.13291239738464355, + 0.05670252814888954, + -0.012884148396551609, + 0.021583031862974167, + -0.06431517004966736, + -0.011426515877246857, + 0.07631872594356537, + 0.01759735494852066, + 0.00503907073289156, + -0.013079873286187649, + -0.055790968239307404, + 0.030636189505457878, + 0.04563978314399719, + -0.06986714154481888, + -0.03947468847036362, + -0.06401416659355164, + 0.12230933457612991, + 0.06751305609941483, + 0.028673509135842323, + 0.06775955855846405, + -0.010738749988377094, + -0.051483988761901855, + 0.017232516780495644, + 0.012246187776327133, + 0.002548087388277054, + 0.0590231753885746, + 0.07457992434501648, + -0.04545897990465164, + 0.016740484163165092, + 0.012469054199755192, + -0.04278310760855675, + -0.10259922593832016, + 0.052469413727521896, + -0.013649184256792068, + 0.02924524061381817, + -0.023924272507429123, + 0.04558293893933296, + -0.03880841284990311, + -0.07530823349952698, + 0.07226739078760147, + 0.08419966697692871, + -0.05639887973666191, + -0.011387542821466923, + -0.007291325367987156, + -0.043978001922369, + -0.05502403900027275, + 4.1254203830848575e-34, + 0.09317607432603836, + 0.03528967872262001, + -0.05027970299124718, + -0.05429917201399803, + 0.012469680979847908, + -0.010039877146482468, + 0.02404654584825039, + 0.067434161901474, + 0.08296441286802292, + -0.013943850994110107, + -0.015124037861824036, + -0.059648532420396805, + -0.0848807543516159, + -0.01949055679142475, + 0.0018290858715772629, + -0.03278058022260666, + -0.01668398268520832, + -0.0409255176782608, + 0.00914781354367733, + 0.04461681470274925, + 0.03737201541662216, + -0.09300807863473892, + 0.04125671088695526, + 0.07288628816604614, + -0.024986110627651215, + 0.05678415670990944, + -0.04975442588329315, + 0.004522399976849556, + 0.02676446922123432, + -0.058352041989564896, + 0.026846518740057945, + -0.07765169441699982, + 0.006929250434041023, + 0.008758439682424068, + -0.12634077668190002, + 0.04009402170777321, + 0.15693438053131104, + -0.057026948779821396, + -0.013900797814130783, + -0.027945607900619507, + -0.04507926478981972, + 0.08659414947032928, + 0.02064112201333046, + 0.011648350395262241, + 0.005970184225589037, + -0.023893527686595917, + -0.04981256648898125, + 0.04829803854227066, + -0.061125434935092926, + 0.045458920300006866, + -0.10503990203142166, + 0.043823663145303726, + -0.002379082841798663, + -0.002781110815703869, + -0.0003012919914908707, + -0.06116987764835358, + -0.031357862055301666, + -0.03872818872332573, + -0.006277140229940414, + 0.08226320892572403, + -0.011431889608502388, + 0.02601536549627781, + -0.12809020280838013, + -0.07027783989906311, + -0.01572277769446373, + 0.022951943799853325, + 0.05088849365711212, + -0.030956484377384186, + 0.033663131296634674, + -0.011266371235251427, + 0.01089813094586134, + 0.0003223282692488283, + 0.021685125306248665, + -0.023495536297559738, + -0.04886525124311447, + -0.006520560011267662, + -0.03568050637841225, + -0.014895548112690449, + 0.07140899449586868, + 0.014839224517345428, + -0.0414343997836113, + -0.038002125918865204, + 0.022730087861418724, + 0.05155433341860771, + 0.00414145877584815, + 0.08570546656847, + 0.021668894216418266, + -0.01444268599152565, + 0.06757830083370209, + -0.008299862034618855, + 0.005536109674721956, + 0.038704026490449905, + -0.01249631866812706, + -0.017342230305075645, + -0.03571588546037674, + -1.825729256665909e-08, + -0.05257498472929001, + 0.006629851181060076, + -0.025107892230153084, + -0.044292327016592026, + -0.03136982396245003, + -0.09729703515768051, + -0.01175671350210905, + 0.035492878407239914, + 0.07970637083053589, + -0.0935482606291771, + 0.05945564806461334, + -0.018385976552963257, + -0.011640315875411034, + -0.007688526529818773, + -0.03407387435436249, + 0.039642125368118286, + 0.022550014778971672, + 0.014708226546645164, + -0.014170381240546703, + -0.027585942298173904, + 0.02388695999979973, + 0.005797944962978363, + 0.09923911839723587, + -0.028356902301311493, + -0.03704124689102173, + 0.005909386556595564, + -0.019741330295801163, + -0.05347754806280136, + 0.07140426337718964, + 0.015609418042004108, + 0.006193479523062706, + 0.054315127432346344, + 0.007791148032993078, + -0.00632275128737092, + 0.00024999069864861667, + -0.06399025022983551, + 0.004147351253777742, + -0.020686952397227287, + -0.008210737258195877, + 0.09944935888051987, + 0.0021969827357679605, + 0.03021128848195076, + -0.009086433798074722, + 0.006221037358045578, + 0.10516118258237839, + 0.06506571173667908, + 0.13330130279064178, + -0.024140801280736923, + -0.07482460886240005, + -0.10472533851861954, + -0.054532796144485474, + 0.020550401881337166, + -0.03154902905225754, + 0.08954395353794098, + 0.014096369035542011, + -0.034875527024269104, + 0.05391842871904373, + 0.080781951546669, + -0.08612564206123352, + 0.011109341867268085, + 0.05922556668519974, + -0.015380837954580784, + 0.0564231351017952, + 0.06485908478498459 + ], + "film-script-bold||screenplay,movie": [ + -0.041021235287189484, + -0.03886861726641655, + -0.03685590252280235, + 0.030854588374495506, + 0.02447986602783203, + 0.020694531500339508, + 0.050648875534534454, + 0.006318514700978994, + 0.05523781478404999, + -0.029801076278090477, + 0.006775998510420322, + 0.02462644688785076, + 0.01978125236928463, + -0.0009365375735796988, + -0.009330805391073227, + 0.04525456950068474, + 0.04585118219256401, + -0.018899722024798393, + 0.03143341839313507, + -0.042394351214170456, + 0.036447249352931976, + 0.04435567185282707, + 0.07627196609973907, + 0.026419786736369133, + 0.009250275790691376, + -0.034347161650657654, + 0.05621473491191864, + 0.01705537922680378, + -0.06907209753990173, + -0.033273302018642426, + 0.020881200209259987, + 0.001791787683032453, + 0.025875892490148544, + -0.008094146847724915, + 0.1082737073302269, + 0.04540441185235977, + -0.056563328951597214, + -0.021649261936545372, + -0.022196967154741287, + 0.010228159837424755, + 0.01668846420943737, + -0.05320669338107109, + 0.04142184183001518, + 0.03136121854186058, + -0.011187848635017872, + -0.041450805962085724, + -0.10615095496177673, + -0.008456317707896233, + 0.013229196891188622, + -0.02664799988269806, + -0.04436543211340904, + -0.019563283771276474, + -0.07523361593484879, + -0.013218825682997704, + -0.011741392314434052, + -0.02079482190310955, + -0.03593380004167557, + -0.013462085276842117, + 0.04103204980492592, + -0.04953669384121895, + -0.04534073546528816, + 0.027190156280994415, + 0.07945910096168518, + 0.028675498440861702, + 0.12933342158794403, + -0.005398222245275974, + -0.0006635368335992098, + 0.026262469589710236, + -0.08669447898864746, + 0.09986801445484161, + 0.004714627750217915, + 0.04449871554970741, + 0.014144457876682281, + -0.09774909913539886, + -0.08584282547235489, + -0.07549361139535904, + -0.014901695773005486, + 0.04021046310663223, + -0.06219363585114479, + -0.13913388550281525, + -0.0875442698597908, + -0.17159372568130493, + -0.07199111580848694, + 0.01990758441388607, + 0.029286514967679977, + 0.09778933227062225, + -0.01494325790554285, + 0.02037651464343071, + -0.04439253360033035, + 0.07364853471517563, + -0.0767190158367157, + -0.03263029456138611, + -0.017498066648840904, + 0.08592559397220612, + -0.08848121762275696, + 0.01874064840376377, + -0.06380666047334671, + 0.005899160634726286, + 0.013281074352562428, + 0.04369956627488136, + 0.02065308205783367, + 0.010445237159729004, + -0.005789498798549175, + -0.026910150423645973, + -0.009996830485761166, + 0.00242949859239161, + 0.003081934992223978, + -0.05767473578453064, + -0.006824902258813381, + 0.02460308000445366, + -0.051835108548402786, + -0.021309643983840942, + 0.0770498514175415, + 0.029128804802894592, + 0.01689126156270504, + -0.034092292189598083, + 0.047506194561719894, + -0.04201990365982056, + 0.050958916544914246, + 0.08781689405441284, + 0.06232869252562523, + 0.03454669564962387, + -0.05769217014312744, + -0.020709512755274773, + -0.04580085352063179, + -0.02478729374706745, + 0.11457645893096924, + -4.576999578593694e-33, + 0.05017680674791336, + 0.039975155144929886, + 0.009689862839877605, + 0.06597673147916794, + 0.00019848355441354215, + 0.016472218558192253, + 0.02035629376769066, + 0.07407884299755096, + -0.1645345836877823, + 0.04752905294299126, + -0.029878249391913414, + -0.03508013114333153, + -0.012439866550266743, + 0.028909338638186455, + -0.05426346883177757, + 0.027646111324429512, + 0.0014757077442482114, + -0.03584880754351616, + -0.034262172877788544, + -0.011544927023351192, + -0.0732535868883133, + 0.08765964955091476, + -0.055123504251241684, + 0.005565535742789507, + -0.052884966135025024, + -0.03814484924077988, + 0.008974218741059303, + 0.071538545191288, + -0.07728885859251022, + 0.03248143196105957, + -0.015124027617275715, + 0.06500372290611267, + 0.02646169252693653, + -0.0200243778526783, + 0.044374559074640274, + -0.024904225021600723, + -0.09815212339162827, + -0.028049420565366745, + 0.02872040867805481, + 0.09815730899572372, + -0.11785063147544861, + -0.011159423738718033, + -0.06678347289562225, + -0.019251156598329544, + -0.03642285242676735, + 0.10776152461767197, + -0.024320300668478012, + 0.04173065721988678, + 0.01943987049162388, + 0.10304545611143112, + 0.010069993324577808, + 0.0027954878751188517, + 0.09218426793813705, + -0.07178138941526413, + 0.0435519814491272, + 0.049480270594358444, + -0.01634214259684086, + -0.000637682736851275, + 0.06254959106445312, + -0.04571288079023361, + 0.06815298646688461, + 0.022628040984272957, + -0.04109848663210869, + 0.03264624625444412, + -0.03521233797073364, + 0.07904203981161118, + 0.01068553701043129, + 0.03524269908666611, + 0.07315858453512192, + 0.019235944375395775, + -0.02506657876074314, + 0.03008519485592842, + 0.022910689935088158, + 0.1074674129486084, + 0.009605455212295055, + -0.008189832791686058, + 0.0004834549326915294, + -0.01276748813688755, + 0.031646303832530975, + -0.06874901056289673, + -0.06796377897262573, + 0.01279976312071085, + -0.05110085383057594, + 0.04089733585715294, + -0.008839473128318787, + 0.031507913023233414, + -0.087283194065094, + -0.061351560056209564, + -0.030104516074061394, + 0.11876804381608963, + 0.008764429949223995, + -0.09236305207014084, + -0.0059323920868337154, + -0.07263156026601791, + -0.020523004233837128, + 5.4282781692862975e-34, + 0.07741512358188629, + 0.06567511707544327, + -0.10173113644123077, + -0.08087831735610962, + -0.06588944792747498, + -0.030328961089253426, + -0.0642852634191513, + 0.012544526718556881, + 0.05942389369010925, + 0.024871161207556725, + -0.03621109575033188, + -0.0374431349337101, + -0.04273680970072746, + -0.048489149659872055, + 0.03176281973719597, + 0.026111485436558723, + 0.012197521515190601, + 0.008210028521716595, + -0.01529708318412304, + 0.02142479456961155, + 0.016166726127266884, + -0.03416263684630394, + -0.02301468886435032, + 0.07974371314048767, + -0.011038529686629772, + -0.007781113963574171, + -0.03265794739127159, + 0.047229740768671036, + -0.09744816273450851, + -0.05058882385492325, + -0.06750885397195816, + -0.05763407051563263, + -0.03569401055574417, + 0.09071759879589081, + -0.03564400598406792, + 0.02779863402247429, + 0.11392055451869965, + -0.14138825237751007, + 0.04430357739329338, + -0.0033337438944727182, + -0.02103324607014656, + 0.03433004766702652, + 0.0006398631376214325, + 0.041562069207429886, + -0.023050744086503983, + 0.049024567008018494, + -0.023013237863779068, + -0.006815220229327679, + 0.00016223173588514328, + 0.028916161507368088, + -0.09408111125230789, + -0.0353889986872673, + 0.007716719526797533, + -0.01396420132368803, + -0.058388277888298035, + -0.0694257840514183, + -0.004365730565041304, + -0.09493442624807358, + -0.0212150439620018, + 0.06557387858629227, + 0.00620834156870842, + 0.04579976573586464, + -0.024713944643735886, + -0.048150043934583664, + -0.02685503475368023, + -0.048173416405916214, + 0.0016409257659688592, + -0.0011709320824593306, + 0.06343074887990952, + -0.019624605774879456, + 0.004531397484242916, + -0.09564388543367386, + 0.005438075866550207, + 0.059831149876117706, + -0.032736752182245255, + 0.003507910994812846, + 0.02341592125594616, + 0.0020848424173891544, + -0.0047294460237026215, + 0.02457422763109207, + 0.04406637325882912, + -0.021752187982201576, + 0.017962928861379623, + 0.008907767944037914, + -0.01486471202224493, + 0.08060384541749954, + 0.004949735943228006, + -0.011026949621737003, + 0.021018659695982933, + 0.03130542114377022, + -0.03899853676557541, + 0.07739852368831635, + 0.09637489169836044, + -0.013925746083259583, + -0.06454643607139587, + -1.735035048966438e-08, + -0.0442076101899147, + 0.008158194832503796, + -0.05915674567222595, + -0.058568019419908524, + -0.01736493781208992, + -0.06384925544261932, + -0.05326229706406593, + 0.0027195699512958527, + 0.003260853234678507, + -0.0327143557369709, + 0.010202591307461262, + 0.006320343818515539, + 0.018698424100875854, + -0.005933022126555443, + -0.05435644090175629, + 0.09068481624126434, + -0.014881731942296028, + 0.02883022651076317, + -0.007211864460259676, + -0.014231696724891663, + -0.02909279242157936, + 0.038884591311216354, + 0.05406159162521362, + 0.0023133570794016123, + 0.00329023995436728, + 0.024039745330810547, + -0.04570360854268074, + -0.03490182384848595, + -0.015430993400514126, + 0.13317319750785828, + -0.007752044126391411, + 0.04789523407816887, + 0.013347236439585686, + 0.03290330246090889, + -0.11460355669260025, + -0.0009554494172334671, + 0.08479869365692139, + 0.011711206287145615, + -0.024464383721351624, + 0.04429200291633606, + 0.002234922256320715, + 0.055323656648397446, + -0.05836720019578934, + -0.031829606741666794, + 0.09097010642290115, + 0.034913450479507446, + 0.08815734088420868, + -0.06062774732708931, + -0.06983861327171326, + -0.10606324672698975, + -0.011288673616945744, + -0.0158744677901268, + -0.010590978898108006, + 0.07799503952264786, + 0.01328890398144722, + -0.06453671306371689, + 0.005397646222263575, + 0.0706028863787651, + -0.04453632980585098, + -0.00925287976861, + 0.05566242337226868, + 0.042259350419044495, + 0.07657556235790253, + -0.022043531760573387 + ], + "film-slate-bold||*updated*,clapper,movie": [ + -0.07029832154512405, + -0.06339322030544281, + -0.009285151958465576, + -0.02827400714159012, + 0.018600784242153168, + 0.030099062249064445, + 0.051694393157958984, + -0.04905598238110542, + 0.06392736732959747, + -0.060182686895132065, + -0.0008736414602026343, + 0.02300129644572735, + -0.06235123425722122, + 0.048724375665187836, + -0.08072230219841003, + 0.017270833253860474, + 0.04422378912568092, + 0.014655719511210918, + 0.016441792249679565, + -0.024118658155202866, + 0.0016251697670668364, + 0.06743864715099335, + 0.06056936830282211, + 0.04322969913482666, + 0.01850781962275505, + -0.032733142375946045, + -0.002891058335080743, + 0.011166495271027088, + -0.08957578986883163, + -0.0041553908959031105, + -0.02746916376054287, + 0.03846895694732666, + 0.012135704979300499, + -0.014632771722972393, + 0.013947068713605404, + -0.0036519006825983524, + -0.08229119330644608, + -0.013815958984196186, + -0.027165425941348076, + 0.06293900310993195, + 0.023843074217438698, + -0.11823368817567825, + -0.013192401267588139, + -0.04617740958929062, + -0.001592648564837873, + -0.027496693655848503, + 0.010222339071333408, + -0.038652822375297546, + 0.06984270364046097, + -0.006819628644734621, + -0.10187956690788269, + -0.0027433072682470083, + -0.09125979244709015, + -0.05284367501735687, + -0.012263331562280655, + -0.026138339191675186, + 0.02387138642370701, + -0.025352783501148224, + 0.06333772093057632, + -0.06830134242773056, + 0.010087963193655014, + -0.011453655548393726, + 0.06092459708452225, + 0.019848857074975967, + 0.1040230393409729, + -0.003825641004368663, + 0.052750006318092346, + 0.026610063388943672, + -0.03566115349531174, + 0.04017416015267372, + -0.04201808199286461, + 0.07553338259458542, + 0.016827242448925972, + -0.07524487376213074, + -0.07737793028354645, + -0.11271292716264725, + -0.009309778921306133, + 0.015232592821121216, + -0.06739646941423416, + -0.130123108625412, + 0.040793031454086304, + -0.15817086398601532, + -0.09116905182600021, + -0.02202313393354416, + 0.062283411622047424, + 0.03958175331354141, + 0.023154959082603455, + -0.016323436051607132, + -0.063056580722332, + 0.08461135625839233, + -0.11551566421985626, + -0.029802842065691948, + -0.08019029349088669, + 0.06280846148729324, + -0.057739321142435074, + -0.019919268786907196, + -0.06295797973871231, + -0.03530944511294365, + -0.01780010759830475, + 0.0641113817691803, + 0.02085760235786438, + -0.009939503856003284, + 0.01212313398718834, + -0.03940172120928764, + 0.05286082252860069, + -0.054404422640800476, + -0.01853986456990242, + -0.024367429316043854, + -0.04413246363401413, + 0.010584383271634579, + -0.011592485010623932, + -0.05201239883899689, + -0.016888637095689774, + 0.017620138823986053, + 0.06138304993510246, + -0.08062326908111572, + -0.002240612171590328, + -0.05487420782446861, + -0.047918036580085754, + 0.10754295438528061, + 0.09695644676685333, + -0.05141724273562431, + -0.051280777901411057, + 0.005641886033117771, + -0.0765138640999794, + -0.04180047661066055, + 0.03948425129055977, + -2.8961611247078664e-33, + 0.03065185621380806, + 0.06853847205638885, + 0.023414095863699913, + 0.07813285291194916, + 0.051253996789455414, + 0.04082835093140602, + -0.0038432986475527287, + 0.08214113116264343, + -0.09734675288200378, + 0.027082685381174088, + -0.02486271597445011, + -0.02765491232275963, + -0.02744106575846672, + -0.012576617300510406, + -0.010150047950446606, + -0.0018348876619711518, + -0.04191643372178078, + 0.03895280882716179, + -0.004866127390414476, + -0.033059012144804, + -0.07958297431468964, + 0.10210524499416351, + -0.060865968465805054, + -0.03082476183772087, + -0.034015316516160965, + -0.07684727758169174, + 0.007398644462227821, + 0.01835830882191658, + 0.014144906774163246, + 0.011896686628460884, + 0.05767137184739113, + 0.06812023371458054, + 0.11569260060787201, + -0.058458566665649414, + 0.07651577144861221, + -0.04562097042798996, + -0.11790070682764053, + -0.048750583082437515, + 0.00520945992320776, + 9.002546903502662e-06, + -0.05972929298877716, + 0.03406066074967384, + -0.05045997351408005, + 0.044857289642095566, + -0.06798382848501205, + 0.0869259312748909, + -0.006451167166233063, + 0.040625911206007004, + 0.052020035684108734, + 0.06778030842542648, + 0.06502802670001984, + 0.03340254724025726, + -0.040671203285455704, + -0.059958312660455704, + -0.01566244848072529, + 0.01830648072063923, + 0.01691512018442154, + 0.017016522586345673, + 0.04694178327918053, + -0.08857348561286926, + -0.0016214072238653898, + 0.006361594423651695, + -0.02627663128077984, + -0.023680532351136208, + -0.06318912655115128, + 0.13060536980628967, + 0.008508914150297642, + 0.01851729489862919, + 0.04664357006549835, + -0.016582468524575233, + -0.02102617174386978, + 0.0031644469127058983, + -0.005234556272625923, + 0.06360574066638947, + 0.00063153455266729, + 0.04028112813830376, + -0.04977660998702049, + 0.043653931468725204, + -0.0017649964429438114, + -0.10498405247926712, + -0.07558394968509674, + 0.011072132736444473, + -0.035415008664131165, + 0.021420372650027275, + -0.04671107232570648, + 0.054793499410152435, + -0.021364690735936165, + -0.04007586091756821, + 0.056282658129930496, + 0.10374629497528076, + -0.04941330850124359, + -0.017910344526171684, + -0.015284649096429348, + -0.006496576126664877, + -0.04319010674953461, + 6.309436511981265e-36, + 0.08488419651985168, + -0.007553231902420521, + -0.14286696910858154, + -0.012054591439664364, + -0.021230066195130348, + 0.006284136325120926, + -0.06306575983762741, + 0.07056501507759094, + 0.06487517803907394, + -0.042335059493780136, + -0.01920456811785698, + -0.03565032035112381, + -0.003831323003396392, + -0.019221525639295578, + -0.012799251824617386, + 0.027972567826509476, + 0.01818181201815605, + -0.029469313099980354, + -0.05008973926305771, + 0.09121382981538773, + 0.042740292847156525, + -0.06394317746162415, + 0.012145614251494408, + 0.07913535833358765, + -0.013442388735711575, + 0.035441067069768906, + 0.03044372983276844, + 0.024971239268779755, + 0.011782069690525532, + -0.05159272998571396, + -0.004757854156196117, + -0.08759850263595581, + -0.06504437327384949, + 0.005346324760466814, + -0.0726507231593132, + 0.08975467830896378, + 0.14922337234020233, + -0.13238298892974854, + -0.034553516656160355, + 0.0028520338237285614, + 0.004346001893281937, + 0.059695594012737274, + -0.029207633808255196, + 0.05035269260406494, + 0.033358145505189896, + 0.01766781508922577, + -0.006792088504880667, + 0.09136038273572922, + -0.07813238352537155, + 0.042663976550102234, + -0.03542139381170273, + -0.03370301425457001, + 0.02076992206275463, + -0.037129901349544525, + -0.005578943528234959, + 0.03105752542614937, + -0.017448853701353073, + -0.04040070250630379, + 0.006999555043876171, + -0.019138403236865997, + -0.025002140551805496, + 0.027854738757014275, + -0.05163738876581192, + -0.0837378278374672, + -0.0005610552616417408, + -0.02129286713898182, + 0.019822096452116966, + -0.030669348314404488, + 0.076959528028965, + 0.019463220611214638, + -0.0013391895918175578, + -0.037168949842453, + -0.02630840800702572, + 0.011116894893348217, + -0.018841056153178215, + 0.035858429968357086, + 0.03603796288371086, + -0.003900758223608136, + 0.010240291245281696, + -0.02452118881046772, + -0.05913996323943138, + -0.016537290066480637, + 0.05159445106983185, + 0.032353322952985764, + -0.016118202358484268, + 0.11003834009170532, + 0.10436493158340454, + 0.05546063557267189, + 0.05403800681233406, + 0.00361114670522511, + 0.008799148723483086, + 0.02266056090593338, + 0.06290577352046967, + -0.024290982633829117, + -0.011822838336229324, + -1.94973175382529e-08, + 0.0023482940159738064, + 0.08412717282772064, + -0.08240942656993866, + -0.049955934286117554, + -0.02365717850625515, + -0.09179379791021347, + 0.013171123340725899, + 0.025007527321577072, + 0.0315975658595562, + -0.08836859464645386, + -0.02458181232213974, + 0.0075697326101362705, + 0.04297628998756409, + -0.011567819863557816, + 0.007822467014193535, + 0.08355414867401123, + -0.004183364566415548, + 0.020250245928764343, + -0.01835046336054802, + -0.08023476600646973, + 0.035837478935718536, + -0.023498252034187317, + 0.09856149554252625, + 0.04553244635462761, + -0.0004394224670249969, + 0.038592707365751266, + -0.024726562201976776, + -0.04070744290947914, + -0.014723343774676323, + 0.00350827444344759, + -0.0024652176070958376, + 0.005832083988934755, + -0.0023799871560186148, + 0.03785224258899689, + -0.015067970380187035, + 0.06632370501756668, + 0.0634874701499939, + 0.04172194004058838, + 0.02562057226896286, + 0.11425131559371948, + -0.010862204246222973, + 0.003427272429689765, + 0.027172105386853218, + 0.006407576147466898, + 0.02006787806749344, + 0.04078931733965874, + 0.057837437838315964, + -0.05476519092917442, + -0.039207231253385544, + -0.08138516545295715, + 0.06107513606548309, + 0.018041759729385376, + -0.010521873831748962, + 0.03852147236466408, + 0.03814299777150154, + 0.014878444373607635, + 0.04697812721133232, + 0.10375317931175232, + -0.032255128026008606, + 0.01639537885785103, + 0.06857087463140488, + 0.0009169229306280613, + -0.01306768786162138, + 0.07107702642679214 + ], + "film-strip-bold||camera,photography,darkroom,movie,analog": [ + -0.007768049370497465, + -0.05883160978555679, + -0.07519222050905228, + -0.03959597647190094, + -0.0027757531497627497, + -0.02435229904949665, + 0.052016060799360275, + 0.02904048003256321, + 0.021648729220032692, + -0.0611717589199543, + 0.03522062674164772, + -0.019453177228569984, + -0.0016822010511532426, + 0.08339264988899231, + 0.0010237842798233032, + 0.03894634172320366, + 0.10111162811517715, + 0.022595878690481186, + 0.0505487285554409, + 0.010358945466578007, + 0.029625892639160156, + -0.005294050555676222, + 0.03508397191762924, + 0.012681983411312103, + 0.02419591322541237, + 0.008663765154778957, + 0.03271379694342613, + 0.04804795980453491, + -0.030376141890883446, + -0.09259293973445892, + -0.025457588955760002, + 0.054186854511499405, + 0.08637715876102448, + -0.01110426988452673, + 0.08222253620624542, + -0.05801892653107643, + -0.032055433839559555, + -0.015329410322010517, + -0.03683067858219147, + -0.026473136618733406, + -0.003077208995819092, + -0.04782500118017197, + -0.00039481461863033473, + -0.03568220138549805, + -0.004369769245386124, + -0.09122204780578613, + 0.027882210910320282, + 0.0010766808409243822, + -0.0015517569845542312, + -0.030242130160331726, + -0.005104973446577787, + -0.022857269272208214, + -0.13055172562599182, + 0.12081092596054077, + 0.00833050161600113, + -0.04959923401474953, + 0.005642589181661606, + -0.02364213392138481, + 0.06940574944019318, + -0.0456046387553215, + -0.029184209182858467, + 0.008522603660821915, + 0.016023270785808563, + 0.06779321283102036, + 0.06488966941833496, + 0.04160827770829201, + 0.0012404515873640776, + 0.022362343966960907, + -0.011345700360834599, + -0.021641990169882774, + -0.09727604687213898, + 0.020534368231892586, + -0.03366616740822792, + -0.038195714354515076, + -0.011453591287136078, + -0.06109350174665451, + -0.017651095986366272, + 0.0388864204287529, + -0.06555850058794022, + -0.08466776460409164, + 0.022233696654438972, + -0.1094251349568367, + -0.08740855008363724, + 0.024177944287657738, + 0.011872727423906326, + 0.06109996885061264, + -0.01856294646859169, + -0.03460962325334549, + -0.03891940787434578, + -0.04579734802246094, + -0.10715245455503464, + -0.00976234395056963, + -0.0575580969452858, + 0.004759291652590036, + -0.06235631927847862, + -0.04572857916355133, + -0.05368700250983238, + -0.027115195989608765, + 0.027409270405769348, + 0.040529221296310425, + 0.06550348550081253, + -0.035613641142845154, + -0.007629842031747103, + 0.03630590811371803, + -0.02308790013194084, + -0.07573529332876205, + 0.033851101994514465, + 0.027643991634249687, + 0.007116685155779123, + -0.0035117885563522577, + -0.05372104421257973, + -0.04928504303097725, + 0.001497375895269215, + -0.05689233914017677, + 0.083637535572052, + -0.024839896708726883, + -0.00913956668227911, + 0.02801497094333172, + 0.048030588775873184, + 0.03326411172747612, + -0.018044868484139442, + -0.018014267086982727, + -0.04790470376610756, + -0.058146797120571136, + 0.01876162923872471, + 0.007018729113042355, + 0.12073571234941483, + -2.8308934539173897e-33, + 0.041224222630262375, + 0.08409474790096283, + -0.001458022859878838, + 0.07303773611783981, + 0.042428139597177505, + -0.02699366770684719, + -0.02739139460027218, + 0.056084439158439636, + -0.08453623950481415, + 0.048435673117637634, + 0.07994147390127182, + -0.023228125646710396, + -0.02175675332546234, + 0.12726043164730072, + 0.061505552381277084, + 0.07030333578586578, + 0.028121698647737503, + -0.055034901946783066, + -0.007002190221101046, + 0.024211391806602478, + -0.07618718594312668, + 0.11749390512704849, + 0.006552118808031082, + 0.038234591484069824, + -0.028221288695931435, + -0.03624671697616577, + -0.0807654932141304, + 0.04095781594514847, + 0.007231719791889191, + 0.028059402480721474, + -0.025404609739780426, + 0.05875181406736374, + 0.10103797167539597, + -0.012756613083183765, + 0.021425733342766762, + 0.013634838163852692, + -0.058411214500665665, + -0.055761922150850296, + 0.024767184630036354, + -0.0038167948368936777, + -0.09301793575286865, + 0.07609868049621582, + -0.025976216420531273, + 0.0041274381801486015, + 0.0378325954079628, + 0.12524868547916412, + 0.04378913715481758, + 0.02514832653105259, + -0.011778747662901878, + 0.15282592177391052, + 0.010018421337008476, + -0.03039706125855446, + 0.013285201974213123, + -0.05069071054458618, + -0.02701476216316223, + 0.02405465953052044, + 0.0025304483715444803, + -0.0018200536724179983, + 0.022885261103510857, + -0.03964594006538391, + 0.01998305693268776, + 0.08858665823936462, + -0.046234726905822754, + -0.030292820185422897, + -0.025127895176410675, + 0.09074082225561142, + 0.08578597754240036, + 0.013951519504189491, + 0.011591301299631596, + -0.0032732433173805475, + -0.10522054880857468, + 0.030988313257694244, + -0.010331022553145885, + 0.028385326266288757, + 0.07401135563850403, + 0.03463183343410492, + -0.08343543112277985, + -0.010597852058708668, + 0.0480000264942646, + -0.044400379061698914, + -0.1686863750219345, + 0.013477330096065998, + -0.055611543357372284, + 0.02245871163904667, + -0.06774406135082245, + 0.063397616147995, + -0.03649556636810303, + -0.08892770856618881, + 0.05526216700673103, + -0.011950473301112652, + -0.08263116329908371, + 0.013470192439854145, + -0.048397812992334366, + 0.023598724976181984, + -0.043026626110076904, + 1.0432657463631731e-33, + 0.07660195976495743, + 0.038207411766052246, + -0.059864602982997894, + -0.004768358077853918, + -0.036403995007276535, + -0.03504219278693199, + -0.011449979618191719, + 0.0332774855196476, + 0.11019270122051239, + 0.018935849890112877, + 0.049398668110370636, + -0.03769912198185921, + -0.08442575484514236, + -0.026903722435235977, + -0.00756423594430089, + -0.011260420083999634, + 0.025587106123566628, + -0.07168356329202652, + -0.014126352965831757, + 0.020804869011044502, + -0.006066437344998121, + -0.009981448762118816, + 0.011731303296983242, + 0.02697639912366867, + -0.020987102761864662, + 0.10166247934103012, + 0.01660137064754963, + 0.016774365678429604, + 0.06795342266559601, + -0.013201333582401276, + -0.0030078201089054346, + -0.029247336089611053, + 0.09423428028821945, + -0.0029616488609462976, + -0.07424791157245636, + 0.07285727560520172, + 0.14711037278175354, + -0.012271316722035408, + -0.04347001388669014, + -0.07367173582315445, + -0.047982752323150635, + 0.06086691841483116, + 0.0009043432655744255, + -0.0010040898341685534, + -0.04382188990712166, + -0.023922661319375038, + -0.05394729971885681, + 0.043502502143383026, + -0.057089634239673615, + 0.052808117121458054, + -0.04776056483387947, + 0.011152416467666626, + -0.011044382117688656, + 0.007505720015615225, + -0.011832520365715027, + -0.07023105770349503, + -0.02721981517970562, + -0.0162410456687212, + -0.0012677937047556043, + 0.07845460623502731, + 0.00733332522213459, + 0.061309266835451126, + -0.11327899247407913, + -0.060442496091127396, + -0.020620759576559067, + 0.02010546624660492, + 0.013982480391860008, + 0.01917584426701069, + -0.012660733424127102, + 0.008917929604649544, + 0.01611180417239666, + 0.04791203513741493, + 0.0681355893611908, + -0.00670492323115468, + -0.04184290021657944, + -0.09511439502239227, + -0.026874277740716934, + -0.0070547196082770824, + 0.04140537232160568, + 0.04081779345870018, + -0.04870257526636124, + -0.07092244178056717, + 0.04992023482918739, + 0.05065535753965378, + -0.017719319090247154, + 0.037036631256341934, + -0.02899559959769249, + 0.0027846458833664656, + 0.06246921792626381, + -0.017175253480672836, + -0.010229125618934631, + 0.054929472506046295, + -0.0033899808768182993, + 0.014906138181686401, + -0.06065497174859047, + -1.957569040200724e-08, + 0.0057276394218206406, + 0.006032532546669245, + -0.01985526829957962, + -0.0660046711564064, + -0.004546091891825199, + -0.09169553965330124, + -0.024281136691570282, + -0.004557441454380751, + 0.05332464724779129, + -0.06954149901866913, + 0.05986340716481209, + 0.037742309272289276, + -0.040493231266736984, + 0.005586774554103613, + -0.03688003122806549, + 0.08524322509765625, + -0.023550942540168762, + 0.0025234567001461983, + -0.017040103673934937, + -0.0418831966817379, + -0.02051541954278946, + -0.011625494807958603, + 0.09702152758836746, + -0.0704665556550026, + 0.027810372412204742, + 0.006643952801823616, + -0.03329487890005112, + -0.052625175565481186, + 0.0709611177444458, + 0.03732525184750557, + 0.017696836963295937, + 0.04756353050470352, + 0.05029649659991264, + 0.005878920201212168, + -0.04098415747284889, + -0.08572844415903091, + 0.017566582188010216, + -0.06028788909316063, + -0.0020158495754003525, + 0.079302579164505, + 0.009559976868331432, + -0.07122872769832611, + -0.03954879194498062, + -0.025960061699151993, + 0.08031558245420456, + 0.017013831064105034, + 0.11784628033638, + -0.015218823216855526, + -0.08899059146642685, + -0.05491231009364128, + -0.05017336457967758, + 0.001105600968003273, + -0.04021336883306503, + 0.07389060407876968, + 0.028411246836185455, + -0.12765197455883026, + 0.0608072467148304, + 0.05641905218362808, + -0.033752553164958954, + 0.03778991848230362, + 0.08234851807355881, + -0.03193574771285057, + 0.05545328930020332, + 0.037987083196640015 + ], + "fingerprint-bold||security,secured,authentication,authenticated,login,locked,biometrics,encrypted,encryption": [ + -0.06782371550798416, + 0.01606636866927147, + -0.07421474158763885, + -0.05610872432589531, + 0.03332897275686264, + 0.024158164858818054, + 0.10236303508281708, + -0.04258774593472481, + -0.011854860000312328, + -0.04636680707335472, + 0.08023668080568314, + 0.02659750171005726, + 0.040995992720127106, + -0.013664115220308304, + -0.033211130648851395, + -0.023534152656793594, + -0.00583806075155735, + 0.0006734761991538107, + -0.0013333680108189583, + 0.03867126628756523, + 0.00841162633150816, + -0.027395665645599365, + 0.035122331231832504, + -0.026120038703083992, + -0.007570764981210232, + -0.03136532008647919, + 0.07367950677871704, + 0.007104899268597364, + -0.024768033996224403, + -0.07527653872966766, + -0.012336074374616146, + 0.0771043449640274, + 0.1023886501789093, + 0.050448741763830185, + 0.005284286569803953, + -0.058565203100442886, + 0.042781177908182144, + 0.07636015117168427, + 0.012152218259871006, + -0.021148284897208214, + -0.04074372723698616, + -0.13171741366386414, + -0.027732733637094498, + 0.1052577942609787, + -0.037246499210596085, + 0.013328530825674534, + -0.05068647861480713, + 0.03822646662592888, + -0.03416231647133827, + -0.019506527110934258, + -0.021656004711985588, + -0.010411984287202358, + -0.09061329066753387, + 0.0210382379591465, + -0.020627079531550407, + -0.05693262442946434, + -0.01719212718307972, + -0.011677841655910015, + -0.0040023066103458405, + 0.03266459330916405, + 0.020533060654997826, + 0.05797012895345688, + -0.012989973649382591, + 0.0683078020811081, + 0.058942049741744995, + 0.0332733578979969, + -0.008179987780749798, + -0.07628880441188812, + 0.0021332327742129564, + -0.046420417726039886, + 0.022073330357670784, + -0.06502481549978256, + -0.05954206362366676, + -0.020230522379279137, + -0.04478932172060013, + -0.0031239723321050406, + -0.060403577983379364, + -0.02429691143333912, + -0.0011870494345203042, + -0.0641036257147789, + -0.0564570389688015, + -0.06648528575897217, + -0.019929181784391403, + 0.030984586104750633, + 0.03298403322696686, + 0.04578251391649246, + -0.13192427158355713, + -0.05157715082168579, + -0.05462970957159996, + -0.035199083387851715, + -0.005495849065482616, + 0.036469340324401855, + 0.007819557562470436, + -0.07557205855846405, + 0.010832482948899269, + 0.01064477302134037, + 0.03421758860349655, + 0.00010584870324237272, + -0.04771978035569191, + 0.053981099277734756, + -0.04285654053092003, + -0.004370115697383881, + -0.023996073752641678, + -0.010074787773191929, + 0.05081409960985184, + -0.01552624348551035, + -0.017224134877324104, + -0.07865206897258759, + 0.02476297691464424, + 0.04271821677684784, + 0.03995418921113014, + -0.06357574462890625, + -0.0678573027253151, + -0.008852457627654076, + 0.007622771896421909, + -0.01851874589920044, + -0.05718274787068367, + 0.02965867891907692, + 0.12196209281682968, + 0.09308306872844696, + -0.011625170707702637, + 0.04642598703503609, + -0.02746744081377983, + -0.09612516313791275, + -0.03712144494056702, + -0.013331507332623005, + 0.015319391153752804, + -4.247187363328142e-34, + 0.018885411322116852, + 0.068740114569664, + -0.04585878551006317, + 0.03623979538679123, + -0.000895982317160815, + 0.030957233160734177, + -0.044829223304986954, + -0.13916566967964172, + -0.0705350860953331, + 0.08302740007638931, + -0.0133689409121871, + 0.0807296559214592, + -0.01568104885518551, + 0.12528398633003235, + 0.10913735628128052, + 0.07999008148908615, + -0.033257242292165756, + 0.06404443830251694, + -0.013541853055357933, + 0.05225395783782005, + 0.046884775161743164, + 0.04014931246638298, + 0.031556740403175354, + 0.015824677422642708, + 0.05252984166145325, + -0.07743187993764877, + 0.017023341730237007, + -0.029212700203061104, + 0.016194771975278854, + 0.029366804286837578, + 0.008608711883425713, + 0.005944347940385342, + 0.04810432717204094, + -0.012220537289977074, + 0.014489772729575634, + 0.027254216372966766, + 0.045134302228689194, + -0.07781801372766495, + -0.018439022824168205, + -0.06747376918792725, + -0.040286656469106674, + -0.031332314014434814, + 0.004775324370712042, + -0.011987666599452496, + 0.0565500445663929, + 0.054770179092884064, + -0.07036839425563812, + 0.030714228749275208, + 0.0685640424489975, + 0.07259567826986313, + -0.0701700821518898, + -0.017182607203722, + -0.05067415162920952, + -0.07725100964307785, + -0.07492701709270477, + -0.07812275737524033, + 0.00027593859704211354, + 0.08464240282773972, + -0.08925709873437881, + 0.028274472802877426, + -0.02912045642733574, + 0.028870275244116783, + -0.016365896910429, + -0.09221106022596359, + 0.012867838144302368, + -0.043444763869047165, + -0.046747803688049316, + -0.01993340067565441, + 0.04282449558377266, + 0.03283093124628067, + -0.020326558500528336, + 0.040914386510849, + 0.08201213926076889, + 0.05436431244015694, + 0.006646735593676567, + 0.041006069630384445, + 0.035919103771448135, + 0.07430993020534515, + -0.040722571313381195, + 0.0030524388421326876, + -0.073802150785923, + 0.0860448107123375, + -0.0680747702717781, + 0.045929498970508575, + -0.0027225802186876535, + 0.0867706760764122, + 0.0070354389026761055, + -0.04841839522123337, + -0.07273226976394653, + 0.04652842506766319, + -0.0074674710631370544, + 0.022786995396018028, + 0.029091864824295044, + -0.007814863696694374, + -0.13562165200710297, + -2.764210414460126e-33, + -0.08386766910552979, + -0.0020264936611056328, + -0.010742475278675556, + 0.043405573815107346, + -0.016376981511712074, + 0.029958093538880348, + 0.0406256802380085, + 0.038353439420461655, + -0.01700054667890072, + -0.045911990106105804, + 0.04702784866094589, + -0.021463343873620033, + 0.07217003405094147, + -0.04854348674416542, + -0.025519341230392456, + -0.01381218247115612, + -0.009471342898905277, + 0.08891677856445312, + -0.009508905000984669, + 0.04236910864710808, + -0.006490267347544432, + -0.02375328168272972, + -0.060909122228622437, + 0.13264307379722595, + 0.04549286514520645, + 0.00884835422039032, + -0.03304845467209816, + -0.04885827749967575, + -0.003939228132367134, + 0.017071984708309174, + -0.008670349605381489, + 0.007047291845083237, + 0.005212206393480301, + 0.05610959231853485, + -0.06336922198534012, + -0.013852886855602264, + 0.0794607624411583, + -0.01177441980689764, + -0.0018035151297226548, + 0.0055497922003269196, + 0.010366887785494328, + 0.021870942786335945, + 0.014553613029420376, + 0.0060007101856172085, + -0.04728308320045471, + -0.08091074228286743, + -0.018719937652349472, + -0.048013005405664444, + -0.03229859471321106, + 0.025676360353827477, + 0.047782499343156815, + -0.019554637372493744, + 0.02422698214650154, + 0.019140571355819702, + -0.05745778977870941, + -0.017565276473760605, + -0.011763195507228374, + 0.03411010652780533, + 0.041532475501298904, + 0.0881323367357254, + 0.016692550852894783, + 0.044645536690950394, + 0.02914930135011673, + 0.08602457493543625, + -0.008593213744461536, + -0.07189882546663284, + -0.0010755970142781734, + 0.03204787150025368, + -0.10879882425069809, + 0.008211438544094563, + 0.06293953210115433, + -0.07567891478538513, + 0.038101185113191605, + 0.03659549355506897, + 0.007643170189112425, + -0.10368393361568451, + -0.03746085986495018, + -0.025226382538676262, + -0.0897095799446106, + 0.05728998780250549, + 0.035755664110183716, + -0.029785258695483208, + -0.10962582379579544, + 0.08323106914758682, + 0.05042540654540062, + -0.01586504466831684, + 0.02345736138522625, + -0.05063406005501747, + 0.049428790807724, + -0.007703479379415512, + -0.07576950639486313, + 0.05860787630081177, + -0.1073235347867012, + -0.001378083834424615, + 0.01005235780030489, + -2.4951718913257537e-08, + 0.08772547543048859, + -0.007681974209845066, + 0.014208761975169182, + -0.07466567307710648, + 0.039903998374938965, + 0.013241601176559925, + -0.009339982643723488, + -0.03922436386346817, + -0.02955135703086853, + -0.06529874354600906, + 0.059720687568187714, + -0.0070829433389008045, + -0.13222049176692963, + -0.06807812303304672, + 0.020961428061127663, + 0.038860712200403214, + -0.05373542383313179, + 0.009430473670363426, + 0.03776572272181511, + -0.07149605453014374, + -0.024064620956778526, + 0.00797106884419918, + -0.017355507239699364, + -0.006807310506701469, + -0.005816934630274773, + 0.07879912108182907, + -0.026695018634200096, + 0.031199341639876366, + 0.07622488588094711, + 0.10203947126865387, + 0.024192964658141136, + 0.012885920703411102, + 0.06062794849276543, + -0.024859227240085602, + -0.13877247273921967, + 0.0004182391276117414, + -0.026977647095918655, + -0.0489707849919796, + 0.03220146894454956, + 0.05425667762756348, + -0.021539021283388138, + -0.023994415998458862, + -0.09560949355363846, + -0.04079889878630638, + -0.026727469637989998, + -0.02864597551524639, + 0.052746422588825226, + -0.0009145484073087573, + -0.06959795951843262, + -0.02415485680103302, + -0.013490374200046062, + -0.03956419602036476, + 0.0384177528321743, + 0.09577050060033798, + -0.0032942926045507193, + 0.02649889513850212, + 0.044961340725421906, + 0.029518920928239822, + 0.1107715517282486, + 0.020670751109719276, + 0.13617470860481262, + 0.005168079864233732, + 0.050904568284749985, + 0.033588752150535583 + ], + "fingerprint-simple-bold||security,secured,authentication,authenticated,login,locked,biometrics,encrypted,encryption": [ + -0.070941261947155, + 0.03113044984638691, + -0.06562566012144089, + -0.06001811847090721, + 0.03866086155176163, + 0.027037546038627625, + 0.08342257142066956, + -0.021793939173221588, + -0.030688857659697533, + -0.03335977718234062, + 0.09024078398942947, + 0.01588347554206848, + 0.041378483176231384, + -0.00624163169413805, + -0.0286436527967453, + -0.03873484581708908, + -0.026183927431702614, + -0.008109440095722675, + 0.005951116792857647, + 0.041258297860622406, + -0.015129771083593369, + -0.0395173653960228, + 0.011921155266463757, + -0.033999472856521606, + -0.012486140243709087, + -0.020735397934913635, + 0.0675220713019371, + 0.016389209777116776, + -0.013365162536501884, + -0.0806659609079361, + -0.00921022891998291, + 0.07490988075733185, + 0.10062852501869202, + 0.046794891357421875, + 0.003999128006398678, + -0.07185320556163788, + 0.060235895216464996, + 0.08933514356613159, + 0.0031320801936089993, + -0.0323474258184433, + -0.05655781552195549, + -0.12261305749416351, + -0.03173520043492317, + 0.10592123121023178, + -0.04391118884086609, + 0.009972633793950081, + -0.05218280106782913, + 0.04662458226084709, + -0.0312560498714447, + -0.03404264897108078, + -0.012367842718958855, + -0.002966054016724229, + -0.09799742698669434, + 0.017881644889712334, + -0.012873183004558086, + -0.05046093091368675, + -0.020880024880170822, + -0.0035984301939606667, + -0.008183044381439686, + 0.027931302785873413, + 0.0306412260979414, + 0.0471879318356514, + -0.022401954978704453, + 0.06452509015798569, + 0.049771588295698166, + 0.025290565565228462, + -0.01277223601937294, + -0.07114388793706894, + 0.0038445654790848494, + -0.046075548976659775, + 0.014259780757129192, + -0.07752343267202377, + -0.07098162174224854, + -0.00525858998298645, + -0.04823700338602066, + -0.019881514832377434, + -0.07851162552833557, + -0.013784634880721569, + -0.011479989625513554, + -0.04821021109819412, + -0.07395684719085693, + -0.07068724930286407, + -0.028621312230825424, + 0.048132508993148804, + 0.02850763499736786, + 0.036045368760824203, + -0.12513099610805511, + -0.03373120725154877, + -0.04079180955886841, + -0.03868933022022247, + 0.005239164922386408, + 0.049228668212890625, + 0.024332549422979355, + -0.07745970785617828, + 0.021919751539826393, + 0.001689537544734776, + 0.04735524579882622, + 0.006520234979689121, + -0.06746955960988998, + 0.04656842350959778, + -0.047739122062921524, + -0.0003354320942889899, + -0.006427812855690718, + -0.03293127194046974, + 0.06487011909484863, + -0.020808042958378792, + -0.020800376310944557, + -0.09318219870328903, + 0.023666486144065857, + 0.029412299394607544, + 0.03531717509031296, + -0.059702616184949875, + -0.06513683497905731, + -0.013797834515571594, + 0.0058611053973436356, + -0.02426530420780182, + -0.05690911412239075, + 0.027877401560544968, + 0.11707835644483566, + 0.10307466238737106, + -0.01570230908691883, + 0.04701405391097069, + -0.04080779850482941, + -0.08942437916994095, + -0.044174924492836, + 0.001372822211124003, + 0.022891687229275703, + -8.207458596139642e-34, + 0.02037869393825531, + 0.07550670951604843, + -0.04988129064440727, + 0.04018396884202957, + 0.0027738199569284916, + 0.026411449536681175, + -0.04734591022133827, + -0.13084980845451355, + -0.06618909537792206, + 0.08533509075641632, + -0.0003854724927805364, + 0.06613840907812119, + -0.018091445788741112, + 0.12174533307552338, + 0.11510112136602402, + 0.08411172032356262, + -0.024309717118740082, + 0.0554937943816185, + -0.016086384654045105, + 0.04604031890630722, + 0.04584891349077225, + 0.06257742643356323, + 0.03606374189257622, + 0.00902891531586647, + 0.06633362174034119, + -0.0683654174208641, + 0.02507355622947216, + -0.036432377994060516, + 0.022072656080126762, + 0.02454805187880993, + 0.009755349718034267, + -0.002224213443696499, + 0.05035117268562317, + 0.0010588284349069, + 0.006645852699875832, + 0.020696474239230156, + 0.06526642292737961, + -0.07636089622974396, + -0.01919679157435894, + -0.09416605532169342, + -0.03957739472389221, + -0.024803299456834793, + 0.012706075794994831, + -0.024385230615735054, + 0.06470178812742233, + 0.052283529192209244, + -0.06806609034538269, + 0.0319109745323658, + 0.07642345875501633, + 0.06547427922487259, + -0.07532894611358643, + -0.007571821566671133, + -0.062061768025159836, + -0.06864127516746521, + -0.06925585865974426, + -0.06281441450119019, + -0.0006002820446155965, + 0.08304726332426071, + -0.09241603314876556, + 0.03882460296154022, + -0.032914794981479645, + 0.046916667371988297, + -0.023372670635581017, + -0.08176233619451523, + 0.015714172273874283, + -0.040101975202560425, + -0.051100075244903564, + -0.040148962289094925, + 0.04214831441640854, + 0.04362156614661217, + -0.03312231972813606, + 0.03292660787701607, + 0.07485905289649963, + 0.03561312332749367, + 0.024647632613778114, + 0.051435358822345734, + 0.05595620349049568, + 0.05229390412569046, + -0.05309606343507767, + 0.011337787844240665, + -0.06566251069307327, + 0.09332504868507385, + -0.06669846922159195, + 0.056217558681964874, + -0.017197715118527412, + 0.07916158437728882, + -0.003907650709152222, + -0.02957247942686081, + -0.07906781136989594, + 0.03104935772716999, + -0.003944858442991972, + 0.025181226432323456, + 0.024215778335928917, + -0.0058324504643678665, + -0.11529776453971863, + -2.5457444220178193e-33, + -0.08603627234697342, + -0.011067270301282406, + -0.0032305975910276175, + 0.0473499670624733, + -0.006225252058357, + 0.03224581480026245, + 0.04928205907344818, + 0.0222857054322958, + -0.016381939873099327, + -0.04145850986242294, + 0.029451167210936546, + -0.018868030980229378, + 0.06473718583583832, + -0.04126334190368652, + -0.02342901937663555, + -0.002351070987060666, + -0.022339491173624992, + 0.09195403754711151, + -0.0011295379372313619, + 0.049414146691560745, + -0.0036052390933036804, + -0.014969236217439175, + -0.07255362719297409, + 0.11636263132095337, + 0.04958007484674454, + 0.012760438024997711, + -0.0362844355404377, + -0.04443025588989258, + 0.0026429605204612017, + 0.012565938755869865, + -0.004331476055085659, + -0.0017128365579992533, + 0.01358658168464899, + 0.040728867053985596, + -0.06557776033878326, + -0.011291186325252056, + 0.05653465539216995, + 0.003675607033073902, + -0.006175939925014973, + 0.004225404933094978, + 0.0006994528230279684, + 0.018155701458454132, + 0.02705867774784565, + -0.006529903970658779, + -0.03807181119918823, + -0.08965832740068436, + -0.01791473664343357, + -0.060968201607465744, + -0.049253400415182114, + 0.012869052588939667, + 0.04150703549385071, + -0.0240111593157053, + 0.018168281763792038, + 0.016892394050955772, + -0.05007611960172653, + -0.017469661310315132, + -0.007519574835896492, + 0.039797477424144745, + 0.037640027701854706, + 0.09623848646879196, + 0.015389181673526764, + 0.03606332093477249, + 0.015202282927930355, + 0.08675334602594376, + -0.021452484652400017, + -0.054916996508836746, + -0.007410437799990177, + 0.02460498735308647, + -0.12493917346000671, + 0.012087585404515266, + 0.06094595417380333, + -0.06888582557439804, + 0.05042550340294838, + 0.018994716927409172, + 0.005546186584979296, + -0.09414508193731308, + -0.04792352020740509, + -0.027769681066274643, + -0.0869562178850174, + 0.04545745626091957, + 0.045883603394031525, + -0.028423791751265526, + -0.1156637892127037, + 0.06639130413532257, + 0.06376136094331741, + -0.023287128657102585, + 0.023075245320796967, + -0.05624077469110489, + 0.053480830043554306, + 0.003990290220826864, + -0.08313928544521332, + 0.07237709313631058, + -0.08905594050884247, + 0.008912825025618076, + 0.01202335860580206, + -2.535961129979114e-08, + 0.08953877538442612, + -0.033518824726343155, + 0.020980529487133026, + -0.07574404776096344, + 0.038957275450229645, + 0.024774592369794846, + -0.005120119079947472, + -0.04261128231883049, + -0.02651139907538891, + -0.052754901349544525, + 0.05341881886124611, + -0.019931945949792862, + -0.13133743405342102, + -0.04540913552045822, + 0.006847268436104059, + 0.0650240033864975, + -0.044357556849718094, + 0.010684718377888203, + 0.042952436953783035, + -0.0567815862596035, + -0.021072259172797203, + 0.004048851318657398, + -0.022682862356305122, + -0.005768534727394581, + -0.014830075204372406, + 0.07788897305727005, + -0.01830177567899227, + 0.043112754821777344, + 0.07760270684957504, + 0.09634733945131302, + 0.01948108896613121, + 0.012903908267617226, + 0.06853041052818298, + -0.011525953188538551, + -0.13825231790542603, + 0.004253397695720196, + -0.029419410973787308, + -0.04343821480870247, + 0.020750069990754128, + 0.03786003589630127, + -0.00496832886710763, + -0.0229466762393713, + -0.10083167999982834, + -0.04292593523859978, + -0.02024811878800392, + -0.03103628382086754, + 0.06152412295341492, + -0.020771287381649017, + -0.06835204362869263, + -0.021693870425224304, + -0.004312785807996988, + -0.03857233747839928, + 0.04022017866373062, + 0.0741242915391922, + 0.003056522225961089, + 0.04766438528895378, + 0.051501959562301636, + 0.02315438538789749, + 0.10496347397565842, + 0.03578943386673927, + 0.13046495616436005, + 0.03694424778223038, + 0.039752695709466934, + 0.04389103502035141 + ], + "finn-the-human-bold||adventure time,cartoons,television,tv,character": [ + -0.05890261009335518, + -0.020125633105635643, + -0.05234551802277565, + -0.0010372585384175181, + 0.00042328686686232686, + -0.003790920600295067, + 0.06124895066022873, + -0.022707102820277214, + -0.020532986149191856, + 0.04223603010177612, + 0.08179876208305359, + -0.011537204496562481, + -0.12612220644950867, + 0.07080628722906113, + 0.0237632617354393, + -0.006758034694939852, + 0.029811279848217964, + 0.058577004820108414, + 0.045358043164014816, + 0.07454873621463776, + 0.033725637942552567, + 0.04248911514878273, + 0.05198269337415695, + 0.02166382595896721, + 0.0770702138543129, + 0.018411623314023018, + 0.08021478354930878, + -0.004500239621847868, + 0.04111439734697342, + -0.001919133821502328, + -0.027482831850647926, + -0.06318402290344238, + 0.07742008566856384, + 0.00971130933612585, + 0.047451555728912354, + -0.0035371496342122555, + 0.0016228414606302977, + -0.02150591090321541, + -0.013915030285716057, + 0.011947323568165302, + -0.006291229743510485, + 0.005942700896412134, + -0.02864401787519455, + -0.0005921689444221556, + 0.015598836354911327, + -0.034584786742925644, + -0.042115941643714905, + -0.052673518657684326, + 0.012316131964325905, + 0.061405181884765625, + -0.023056039586663246, + -0.025316089391708374, + -0.03172854706645012, + -0.04430745542049408, + 0.052748702466487885, + -0.075880266726017, + -0.024854594841599464, + 0.02076532505452633, + 0.05629066750407219, + -0.06021546944975853, + -0.009744013659656048, + -0.041506584733724594, + 0.05559297651052475, + 0.10370618104934692, + 0.04543828219175339, + -0.06557495146989822, + -0.05799805745482445, + 0.021510999649763107, + -0.05033945292234421, + -0.030334122478961945, + 0.031590744853019714, + -0.07340265065431595, + 0.02878221869468689, + -0.04472096264362335, + -0.03508712723851204, + -0.02765592746436596, + 0.04095880314707756, + -0.036883797496557236, + -0.0030054717790335417, + 0.008611914701759815, + 0.05319668725132942, + -0.07857952266931534, + -0.03776840493083, + 0.01173813920468092, + 0.02257648855447769, + 0.0092726219445467, + -0.07258359342813492, + -0.04087400063872337, + -0.05912625044584274, + 0.010216704569756985, + -0.1265062689781189, + -0.02215120568871498, + 0.03574077785015106, + -0.007161041256040335, + 0.0331820510327816, + 0.015982741490006447, + -0.03215324506163597, + 0.04140269756317139, + -0.05358848720788956, + 0.048628903925418854, + 0.011393377557396889, + 0.005819621030241251, + 0.04530169442296028, + -0.0016611259197816253, + 0.0573505200445652, + 0.01801471784710884, + 0.05337733030319214, + -0.09683235734701157, + 0.08549609035253525, + 0.03669663146138191, + -0.0644485354423523, + -0.09504824131727219, + -0.05258006975054741, + 0.010017022490501404, + 0.12955747544765472, + -0.0815948024392128, + -0.026724398136138916, + 0.028812482953071594, + 0.09034792333841324, + 0.05458823963999748, + 0.07230965048074722, + 0.06642841547727585, + 0.017155669629573822, + 0.04061594232916832, + 0.09102897346019745, + 0.07015981525182724, + 0.0739884227514267, + -5.8679267399827606e-33, + -0.008712688460946083, + -0.008922262117266655, + -0.07580384612083435, + 0.016690118238329887, + 0.07681465893983841, + -0.043807677924633026, + -0.015820441767573357, + -0.08421853184700012, + 0.03046092949807644, + 0.06361415982246399, + -0.04782593622803688, + 0.005161916837096214, + -0.11355714499950409, + 0.033551257103681564, + -0.1030585840344429, + 0.05662503466010094, + -0.021861938759684563, + -0.06590414047241211, + -0.03965935483574867, + 0.04643385112285614, + 0.041992079466581345, + 0.024334583431482315, + -0.05040821060538292, + -0.07162482291460037, + -0.053355809301137924, + -0.10106968879699707, + 0.005193205084651709, + -0.07046226412057877, + 0.011071480810642242, + 0.03791668266057968, + -0.015571528114378452, + 0.08162759989500046, + -0.024970365688204765, + -0.027385687455534935, + 0.021186675876379013, + -0.06510715931653976, + -0.03384290635585785, + 0.0006820712005719543, + 0.016414770856499672, + 0.09406597912311554, + 0.003665186231955886, + -0.03997635096311569, + -0.0408494733273983, + 0.041897956281900406, + -0.04315708205103874, + 0.012805672362446785, + 0.06462955474853516, + 0.00937668327242136, + -0.02778737246990204, + 0.059050921350717545, + -0.0697321742773056, + -0.03878771513700485, + -0.025327078998088837, + -0.021449226886034012, + 0.03681675344705582, + -0.004704255145043135, + 0.04213368520140648, + 0.04195252060890198, + -0.010080876760184765, + -0.003556125331670046, + -0.07019485533237457, + 0.010277812369167805, + 0.10412546992301941, + -0.021222172304987907, + 0.10098615288734436, + 0.01585417613387108, + 0.009700600989162922, + 0.003787428606301546, + 0.0032485572155565023, + 0.0018637392204254866, + 0.021953260526061058, + -0.015701934695243835, + 0.02818363532423973, + -0.09881645441055298, + -0.025777537375688553, + 0.013582881540060043, + 0.07439390569925308, + 0.04346441105008125, + -0.09321580827236176, + -0.04419145733118057, + -0.07166922837495804, + 0.04105941951274872, + -0.022227521985769272, + 0.05133620649576187, + -0.0340745747089386, + -0.007049713283777237, + 0.028256729245185852, + -0.06939679384231567, + 0.10121172666549683, + 0.04159025102853775, + 0.028170371428132057, + -0.04836791008710861, + 0.007715882733464241, + -0.05244581773877144, + -0.10363669693470001, + 3.054356399376645e-33, + 0.04290303960442543, + 0.031131917610764503, + -0.06665205210447311, + -0.07523546367883682, + -0.028372706845402718, + -0.0316326804459095, + -0.04117198288440704, + 0.07834609597921371, + 0.0576414130628109, + -0.02087726816534996, + -0.08364300429821014, + -0.12064030021429062, + -0.010111387819051743, + -0.020464763045310974, + 0.03625103458762169, + -0.0040927184745669365, + 0.008962570689618587, + 0.05839546397328377, + 0.07879679650068283, + -0.0027401549741625786, + 0.0429304800927639, + -0.024210145696997643, + -0.12057334929704666, + 0.03447948023676872, + 0.09450043737888336, + -0.002456358401104808, + 0.017671069130301476, + 0.04653867706656456, + -0.048697516322135925, + -0.012855381704866886, + -0.10286754369735718, + -0.013455571606755257, + 0.046962637454271317, + 0.0012022082228213549, + -0.008921344764530659, + 0.13064011931419373, + 0.06143946573138237, + 0.020284613594412804, + -0.035292308777570724, + -0.03699066862463951, + 0.11722942441701889, + -0.010292768478393555, + -0.07810408622026443, + 0.008011803030967712, + -0.04899297654628754, + -0.013070700690150261, + -0.02665151283144951, + 0.04635385051369667, + -0.07943657040596008, + -0.005315127782523632, + -0.024702750146389008, + -0.0067842514254152775, + 0.009100290946662426, + -0.04122298210859299, + -0.07314570248126984, + 0.0033588383812457323, + 0.060285430401563644, + -0.044183455407619476, + -0.024707406759262085, + 0.06528044492006302, + -0.07982458174228668, + -0.06467748433351517, + -0.022050943225622177, + 0.013205117546021938, + -0.01266199629753828, + 0.0053117587231099606, + -0.0011606934713199735, + -0.07340118288993835, + 0.030612723901867867, + -0.0040886360220611095, + -0.04932226985692978, + -0.03915118798613548, + 0.011140101589262486, + -0.011125651188194752, + 0.05568745732307434, + -0.03581125661730766, + -0.010245184414088726, + -0.0003286540450062603, + 0.08423662930727005, + -0.06740991771221161, + -0.05524877458810806, + -0.06568973511457443, + -0.05396357178688049, + 0.05970008671283722, + 0.04149053990840912, + 0.12385226786136627, + -0.04304499179124832, + 0.07528933137655258, + 0.0053556677885353565, + -0.01773083582520485, + 0.06546294689178467, + 0.048275530338287354, + -0.018914837390184402, + 0.02195294015109539, + -0.07340758293867111, + -1.9483886504190195e-08, + -0.029289493337273598, + 0.048400603234767914, + 0.018654389306902885, + 0.005232454277575016, + 0.06988625973463058, + 0.022846708074212074, + -0.053784407675266266, + -0.05710688605904579, + -0.03188202530145645, + 0.0342632494866848, + -0.03776051476597786, + 0.06077079847455025, + 0.05324232205748558, + -0.026454012840986252, + 0.08304541558027267, + 0.05959950014948845, + -0.03786104544997215, + 0.03436405584216118, + -0.014741548337042332, + -0.02918681502342224, + 0.07113629579544067, + 0.009565931744873524, + 0.048103783279657364, + -0.08672649413347244, + -0.021441252902150154, + 0.0712306872010231, + -0.03165438026189804, + 0.006109920796006918, + -0.007188248448073864, + 0.02553422749042511, + 0.001793052302673459, + 0.11068224906921387, + -0.10234472155570984, + -0.01054485235363245, + 0.006540155038237572, + -0.07106591761112213, + 0.010124506428837776, + 0.012854241766035557, + -0.0883033275604248, + 0.060759708285331726, + -0.016292504966259003, + 0.024952605366706848, + 0.04690771922469139, + -0.024647360667586327, + -0.026443706825375557, + 0.0500745065510273, + 0.07509872317314148, + -0.04653831571340561, + 0.04029429703950882, + -0.11808067560195923, + 0.001873827539384365, + -0.061334867030382156, + 0.002498137764632702, + 0.03770238533616066, + -0.03899121657013893, + -0.02971644699573517, + 0.05954992026090622, + 0.07227344065904617, + -0.040447451174259186, + -0.016632458195090294, + 0.08240209519863129, + 0.04192167520523071, + -0.031925931572914124, + -0.04765519127249718 + ], + "fire-bold||flame,burning,match,lighter": [ + -0.011969429440796375, + 0.03830855339765549, + -0.014190115965902805, + 0.04995185509324074, + 0.05421132594347, + 0.02056778036057949, + 0.10936257243156433, + -0.06635855883359909, + 0.0547846220433712, + -0.029955726116895676, + -0.005569872446358204, + -0.013707445003092289, + -0.0038262703455984592, + 0.020744552835822105, + 0.04089581221342087, + 0.06779841333627701, + -0.01745515502989292, + 0.025409124791622162, + -0.03194917365908623, + -0.019942080602049828, + 0.032366905361413956, + 0.023339828476309776, + 0.001687207375653088, + 0.04142634570598602, + 0.00972613412886858, + 0.01265046838670969, + -0.01767035759985447, + 0.03789212554693222, + -7.326217746594921e-05, + -0.06142159551382065, + 0.06224723532795906, + 0.027404990047216415, + 0.007064328528940678, + 0.05219271034002304, + 0.013399774208664894, + -0.05472015589475632, + -0.05683710426092148, + 0.029739724472165108, + -0.04039272293448448, + 0.06558669358491898, + -0.014282275922596455, + -0.06436005979776382, + -0.0284475926309824, + 0.02300860546529293, + -0.06906144320964813, + -0.003174595767632127, + -0.038466718047857285, + -0.056335870176553726, + -0.012697831727564335, + 0.00898844562470913, + 0.019634941592812538, + -0.04589497298002243, + -0.12320629507303238, + 0.05254280939698219, + 0.09453343600034714, + -0.021053140982985497, + -0.01133003830909729, + -0.023234514519572258, + 0.06824076920747757, + -0.06582160294055939, + 0.013617255724966526, + 0.029010742902755737, + -0.02864409238100052, + 0.04146474599838257, + -0.002819670597091317, + -0.04042510688304901, + 0.05807895585894585, + -0.0003029877843800932, + -0.01494880672544241, + 0.04309475049376488, + 0.03908006474375725, + 0.012242570519447327, + 0.058783452957868576, + -0.020190976560115814, + -0.09917660057544708, + 0.07184365391731262, + 0.011076693423092365, + -0.01569806970655918, + -0.03953642398118973, + -0.05684404820203781, + -0.08435076475143433, + -0.08291412889957428, + -0.05929003655910492, + 0.03462614119052887, + 0.057786691933870316, + 0.09473166614770889, + -0.10056274384260178, + -0.05442977324128151, + -0.020055536180734634, + -0.01087867934256792, + -0.09918777644634247, + 0.006702903658151627, + 0.07464847713708878, + 0.042893365025520325, + -0.05970979481935501, + 0.019888758659362793, + 0.12542228400707245, + 0.030271129682660103, + -0.025212684646248817, + 0.04912066459655762, + 0.04503937438130379, + 0.07334411889314651, + -0.08286011964082718, + -0.013886908069252968, + -0.008076431229710579, + -0.04151861369609833, + -0.06298980116844177, + 0.010528948158025742, + -0.02178005687892437, + -0.04579952731728554, + 0.03620610758662224, + -0.10439224541187286, + -0.005299459211528301, + -0.09674001485109329, + -0.03637536242604256, + -0.0025212077889591455, + -0.017118137329816818, + -0.06320109218358994, + 0.054465726017951965, + 0.10882221907377243, + 0.00848869327455759, + 0.010849918238818645, + -0.03079392947256565, + 0.002890493953600526, + -0.02303941920399666, + -0.001596136949956417, + 0.0026133833453059196, + -1.4796194431284798e-33, + 0.06270492076873779, + 0.09370959550142288, + -0.07673189789056778, + 0.06745791435241699, + 0.01829444244503975, + -0.027545316144824028, + -0.07826481759548187, + -0.02575172483921051, + -0.1473848819732666, + 0.061669982969760895, + 0.0038667696062475443, + 0.1411745697259903, + -0.039904721081256866, + 0.014538157731294632, + 0.037545058876276016, + -0.014400470070540905, + 0.010974531061947346, + -0.016860876232385635, + -0.0649367943406105, + -0.04177745431661606, + -0.09468353539705276, + 0.058516230434179306, + -0.021769031882286072, + -0.05067070946097374, + -0.0715155377984047, + 0.021877020597457886, + 0.00901598110795021, + -0.0059224581345915794, + -0.04267236217856407, + 0.025321101769804955, + 0.013921183533966541, + -0.01155422069132328, + 0.052800074219703674, + -0.005124812945723534, + 0.004414678085595369, + 0.02740509994328022, + -0.06887874007225037, + -0.024563491344451904, + -0.057172443717718124, + -0.01714240200817585, + -0.14180879294872284, + -0.001019850722514093, + -0.053145527839660645, + -0.029414931312203407, + 0.05289808288216591, + 0.08960193395614624, + -0.05989551171660423, + 0.005252372939139605, + 0.010034115053713322, + -0.013392056338489056, + -0.012548607774078846, + -0.0075026317499578, + 0.07998690009117126, + 0.062104351818561554, + 0.00729833310469985, + 0.0401737242937088, + 0.0089551517739892, + 0.026575537398457527, + 0.03971303999423981, + 0.03855244815349579, + 0.018568364903330803, + 0.018898645415902138, + 0.04561983421444893, + -0.005081765353679657, + 0.010914275422692299, + 0.021694505587220192, + -0.04050782322883606, + -0.020536690950393677, + 0.08373419940471649, + -0.020547356456518173, + -0.000966712657827884, + 0.08781780302524567, + 0.05077819153666496, + 0.03654878959059715, + 0.030855344608426094, + -0.020262310281395912, + 0.0262578334659338, + -0.02939021773636341, + -0.03424158692359924, + -0.03608468174934387, + -0.13644179701805115, + -0.05976380035281181, + -0.03555034473538399, + 0.0404084175825119, + 0.015390400774776936, + -0.03160983324050903, + -0.020082877948880196, + -0.10114406049251556, + -0.06644146144390106, + 0.0545697920024395, + -0.05987910181283951, + -0.036139413714408875, + 0.060332898050546646, + -0.0917801782488823, + -0.05512319877743721, + 7.223089524856481e-34, + 0.039925411343574524, + 0.040491580963134766, + -0.04107128456234932, + 0.022555461153388023, + 0.00672169029712677, + 0.015215706080198288, + 0.00403742678463459, + -0.032971154898405075, + 0.0060896556824445724, + 0.04791063442826271, + 0.028586171567440033, + -0.029533328488469124, + -0.0004727041523437947, + -0.05809802934527397, + -0.0061652823351323605, + -0.019449904561042786, + 0.021395379677414894, + 0.05850289762020111, + 0.05044994130730629, + 0.03216824680566788, + -0.012426274828612804, + -0.050575096160173416, + -0.11846799403429031, + 0.07823377847671509, + -0.08578219264745712, + 0.040896859019994736, + 0.06716429442167282, + -0.07874082773923874, + -0.08546585589647293, + -0.02460002340376377, + 0.03446895256638527, + 0.0010196550283581018, + -0.023247594013810158, + 0.04318296164274216, + -0.04362037032842636, + 0.006913520395755768, + 0.03610457479953766, + -0.0015970169333741069, + 0.03277768939733505, + -0.013950922526419163, + 0.026977162808179855, + 0.04292544350028038, + 0.014367597177624702, + 0.048880867660045624, + -0.0675363540649414, + -0.055528659373521805, + -0.03995421528816223, + -0.06523983180522919, + 0.05458017811179161, + 0.07263528555631638, + 0.05996403843164444, + -0.0505637489259243, + -0.08523803949356079, + 0.030504554510116577, + -0.04861050471663475, + -0.06904684752225876, + 0.0036816734354943037, + 0.0158766508102417, + -0.06535734236240387, + 0.12479540705680847, + 0.041597165167331696, + -0.02315305918455124, + 0.007415260188281536, + 0.09393671154975891, + -0.0010956624755635858, + -0.02329225279390812, + -0.005208112765103579, + -0.0011889386223629117, + 0.07361531257629395, + 0.021687380969524384, + 0.035170264542102814, + -0.014430717565119267, + -0.04183080419898033, + 0.07469625771045685, + 0.029064247384667397, + -0.07079465687274933, + 0.02823302149772644, + -0.005448858253657818, + -0.005081848241388798, + 0.08574195951223373, + -0.04036693274974823, + 0.019440533593297005, + -0.0560544915497303, + 0.07320928573608398, + 0.013823337852954865, + 0.017416438087821007, + -0.042739514261484146, + 0.06833913177251816, + -0.011518365703523159, + -0.03995436429977417, + 0.001568315434269607, + 0.08097747713327408, + 0.058331266045570374, + -0.06695111095905304, + -0.0644678995013237, + -1.5777329664956596e-08, + -0.060437269508838654, + -0.008508696220815182, + -0.01712080091238022, + 0.03915535658597946, + 0.006839043460786343, + 0.008386119268834591, + 0.025461731478571892, + -0.0748920887708664, + -0.07577729225158691, + -0.04716374725103378, + 0.08469567447900772, + 0.05548425763845444, + -0.016187770292162895, + -0.021035170182585716, + 0.05088893324136734, + 0.02364693582057953, + -0.000656290038023144, + -0.018128396943211555, + -0.03213617950677872, + -0.06289497017860413, + -0.042090244591236115, + 0.07440800964832306, + 0.032242439687252045, + -0.019155031070113182, + 0.016715694218873978, + 0.008078631944954395, + -0.03337273746728897, + 0.04095670208334923, + 0.10739100724458694, + 0.11622246354818344, + 0.06594115495681763, + 0.02188115380704403, + -0.01563839241862297, + -0.026474468410015106, + -0.06809670478105545, + -0.007813711650669575, + -0.024544868618249893, + 0.018162844702601433, + -0.009294692426919937, + 0.1312265247106552, + 0.02889285422861576, + 0.0017825295217335224, + -0.014306536875665188, + 7.173242192948237e-05, + -0.041801441460847855, + -0.02394021861255169, + 0.016660647466778755, + -0.07901720702648163, + -0.1046772226691246, + -0.03487764671444893, + 0.06459061801433563, + -0.046668361872434616, + 0.02013891562819481, + 0.04873376712203026, + -0.00018275420006830245, + -0.06250002980232239, + 0.04198494181036949, + 0.11600035429000854, + 0.05522998794913292, + -0.005337142385542393, + 0.17669089138507843, + -0.030565835535526276, + 0.01552987564355135, + -0.000888781389221549 + ], + "fire-extinguisher-bold||safety,prevention,emergency,hazard,danger,caution": [ + 0.020862167701125145, + 0.02255450375378132, + -0.022702407091856003, + 0.02114112861454487, + 0.10990627855062485, + 0.031192071735858917, + 0.07928548753261566, + 0.057266056537628174, + -0.02188863791525364, + 0.03522827476263046, + 0.07315435260534286, + -0.033282119780778885, + 0.06286098062992096, + 0.04944966360926628, + -0.02845299057662487, + -0.005793903023004532, + -0.016289161518216133, + -0.016927538439631462, + -0.07904502749443054, + 0.029968639835715294, + 0.06914627552032471, + 0.12817099690437317, + 0.05869898200035095, + 0.022300276905298233, + -0.05285247415304184, + -0.02123505249619484, + -0.03081049956381321, + 0.03557176887989044, + -0.028223583474755287, + -0.04281715676188469, + -0.0016923206858336926, + -0.05880357325077057, + 0.019572004675865173, + -0.019560670480132103, + 0.021602993831038475, + -0.01648523099720478, + 0.006880228407680988, + 0.05545748770236969, + -0.0008258947054855525, + 0.04262470826506615, + -0.04777933284640312, + -0.09123539924621582, + -0.03889293968677521, + 0.01929393596947193, + -0.03253578022122383, + 0.025902651250362396, + -0.019113698974251747, + -0.07502637803554535, + -0.012973099946975708, + -0.03001827746629715, + 0.03607119619846344, + -0.004458137322217226, + -0.10440350323915482, + 0.031364805996418, + 0.09632781147956848, + -0.10479112714529037, + -0.05474301055073738, + 0.00324430619366467, + -0.00583722023293376, + -0.031086482107639313, + 0.07695649564266205, + 0.0024960925802588463, + -0.04156520590186119, + 0.047321271151304245, + -0.039070986211299896, + -0.02091154269874096, + -0.0019414055859670043, + 0.0016169832088053226, + 0.035111408680677414, + 0.031007787212729454, + 0.03225790709257126, + 0.040432609617710114, + 0.06573347747325897, + 0.008399879559874535, + -0.05965990200638771, + 0.005397023633122444, + 0.04978148639202118, + 0.015607863664627075, + 0.0015307990834116936, + -0.023135846480727196, + 0.008844069205224514, + -0.08547373116016388, + 0.00030903323204256594, + -0.008004751056432724, + 0.03325777128338814, + 0.10621830821037292, + -0.0490419901907444, + -0.046541351824998856, + -0.011837825179100037, + 0.01345200277864933, + -0.08749254047870636, + -0.09668125212192535, + 0.08926482498645782, + 0.11528551578521729, + -0.06891486048698425, + 0.01843949407339096, + -0.025028951466083527, + -0.015570680610835552, + -0.03476890176534653, + -0.007250224240124226, + 0.04550895094871521, + -0.04305140674114227, + -0.08406203985214233, + 0.03088448941707611, + -0.0069436803460121155, + -0.10916411131620407, + -0.0660247653722763, + 0.008920380845665932, + 0.003999189008027315, + -0.002497466281056404, + 0.0008945445297285914, + -0.03685007616877556, + 0.018610352650284767, + -0.0763520896434784, + -0.06356903165578842, + 0.04150690138339996, + -0.11666034907102585, + -0.05529548600316048, + 0.10165422409772873, + 0.021498119458556175, + -0.015368700958788395, + 0.03660811111330986, + 0.05184347555041313, + -0.015077396295964718, + 0.02675529383122921, + -0.0387897826731205, + 0.03475319221615791, + -3.0665080722282705e-33, + 0.025454381480813026, + 0.033610064536333084, + -0.024290647357702255, + 0.01895107701420784, + 0.02059728093445301, + -0.009522775188088417, + -0.07761536538600922, + -0.019743258133530617, + -0.048248957842588425, + 0.08112101256847382, + 0.0491538941860199, + 0.09145194292068481, + -0.01831824891269207, + 0.005213500000536442, + 0.07726529985666275, + 0.007137700915336609, + -0.0403829887509346, + 0.018692495301365852, + -0.07505171746015549, + -0.0752791166305542, + -0.06375313550233841, + 0.013099556788802147, + -0.003395789535716176, + 0.014041581191122532, + -0.028856748715043068, + -0.012358331121504307, + -0.018992695957422256, + -0.03467749431729317, + 0.025712130591273308, + 0.050142571330070496, + -0.03236764669418335, + 0.04583333432674408, + -0.03223966807126999, + -0.037428248673677444, + 0.03202318027615547, + 0.01848364807665348, + -0.09829601645469666, + -0.06912777572870255, + -0.054124556481838226, + -0.08349648863077164, + -0.11132725328207016, + -0.019184349104762077, + 0.005823029205203056, + 0.06724554300308228, + 0.12725770473480225, + 0.02935430034995079, + -0.078797347843647, + 0.02536615915596485, + -0.014189551584422588, + -0.029151206836104393, + -0.03070015087723732, + -0.005938453134149313, + 0.09792208671569824, + 0.025161493569612503, + -0.010454066097736359, + 0.050015270709991455, + 0.024733591824769974, + 0.04235432296991348, + 0.0019925294909626245, + 0.01534272264689207, + -0.020942194387316704, + 0.04867983236908913, + 0.03946729376912117, + -0.07015437632799149, + 0.02313856966793537, + -0.019753050059080124, + 0.024972237646579742, + -0.02268083579838276, + 0.0791662409901619, + -0.020486418157815933, + -0.03235291689634323, + 0.026992084458470345, + 0.0762547180056572, + 0.014998805709183216, + -0.036779556423425674, + 0.002839902648702264, + 0.008756174705922604, + -0.015664730221033096, + -0.020082464441657066, + -0.044113028794527054, + -0.11648634076118469, + -0.0399712398648262, + -0.039769142866134644, + 0.08767358213663101, + 0.007438824977725744, + -0.04741053655743599, + -0.031074363738298416, + 0.00809407327324152, + -0.04572315886616707, + 0.10467562824487686, + -0.030968770384788513, + -0.0008943937136791646, + 0.0349014475941658, + 0.01700962893664837, + -0.08032388240098953, + 1.9313065453453016e-33, + 0.0690799206495285, + 0.059525974094867706, + -0.05314305052161217, + -0.004509014077484608, + -0.022378360852599144, + -0.006468720268458128, + -0.020807040855288506, + -0.043761033564805984, + 0.043100349605083466, + 0.0034496081061661243, + -0.077952541410923, + -0.02663593925535679, + 0.05707944184541702, + -0.04604753106832504, + -0.03321731463074684, + -0.03499755635857582, + -0.047466669231653214, + 0.029374277219176292, + -0.004517110530287027, + 0.0008861489477567375, + -0.014039337635040283, + -0.04998454824090004, + -0.1202777773141861, + 0.10725883394479752, + -0.06973513215780258, + 0.07451711595058441, + -0.04593421146273613, + -0.05241135507822037, + -0.07829844951629639, + -0.050621397793293, + -0.02556491270661354, + 0.00022208857990335673, + 0.014323171228170395, + 0.08844128996133804, + -0.06495996564626694, + 0.008235194720327854, + 0.11776211857795715, + -0.09698180854320526, + -0.01241768803447485, + -0.0772579163312912, + 0.06061551719903946, + 0.10268468409776688, + 0.08421223610639572, + 0.010088793002068996, + -0.045794203877449036, + 0.0023325795773416758, + -0.01018526591360569, + -0.0771230161190033, + -0.012543859891593456, + 0.08619646728038788, + -0.019044097512960434, + -0.0485791377723217, + -0.08168883621692657, + 0.041547179222106934, + 0.01738099195063114, + 0.0014320381451398134, + -0.00826579425483942, + -0.03958674147725105, + -0.09647516906261444, + 0.07905491441488266, + 0.08443725109100342, + 0.008059283718466759, + -0.017733946442604065, + 0.12815603613853455, + -0.059660736471414566, + -0.02826179563999176, + -0.08004959672689438, + 0.0366513729095459, + 0.09062393754720688, + -0.007218006066977978, + 0.07031692564487457, + 0.04772952198982239, + -0.04791601374745369, + -0.020184041932225227, + -0.016379252076148987, + -0.11570996046066284, + 0.005339455790817738, + -0.019833235070109367, + -0.06306788325309753, + 0.0689663216471672, + 0.03886490315198898, + 0.01706974394619465, + -0.07197925448417664, + 0.12093466520309448, + -0.012497425079345703, + -0.03187749162316322, + 0.05858331173658371, + 0.022151894867420197, + 0.004036612343043089, + 0.002578912302851677, + -0.05242037773132324, + 0.1152728796005249, + -0.028942979872226715, + 0.029031625017523766, + -0.02182588540017605, + -1.8654603195500385e-08, + -0.010096687823534012, + 0.04745178669691086, + -0.0438261441886425, + -0.03414369001984596, + 0.0026876896154135466, + -0.08831275999546051, + 0.01897030882537365, + -0.02105051837861538, + -0.10420501977205276, + -0.07022333890199661, + 0.07973238825798035, + 0.05254025757312775, + 0.01555025577545166, + 0.030379287898540497, + 0.02383163571357727, + -0.03130146861076355, + -0.009110775776207447, + 0.02592756226658821, + -0.04323878511786461, + -0.01985458843410015, + -0.004087119363248348, + 0.033516183495521545, + -0.024750661104917526, + -0.003975109662860632, + 0.04583989828824997, + 0.02757182903587818, + -0.02146969549357891, + 0.008433538489043713, + 0.08678292483091354, + 0.0941740944981575, + -0.0051346104592084885, + 0.016755100339651108, + -0.04713995382189751, + 0.021526306867599487, + -0.0718444362282753, + 0.050916362553834915, + 0.03592278063297272, + -0.016720078885555267, + -0.023523323237895966, + 0.09630049020051956, + 0.05778739973902702, + -0.03890665993094444, + 0.04244987666606903, + 0.06556735932826996, + 0.029998216778039932, + -0.008074846118688583, + 0.011507527902722359, + -0.006885509938001633, + -0.011210018768906593, + 0.010125679895281792, + 0.01936531439423561, + -0.012744871899485588, + 0.026558537036180496, + 0.06961692124605179, + -0.00619615288451314, + 0.010125783272087574, + -0.014233670197427273, + 0.055567722767591476, + 0.05651163309812546, + 0.015363332815468311, + 0.07168277353048325, + 0.029445331543684006, + 0.08621890097856522, + 0.054727647453546524 + ], + "fire-simple-bold||flame,burning,match,lighter": [ + 0.0021077978890389204, + 0.04426233470439911, + -0.0064948806539177895, + 0.05994170159101486, + 0.060781080275774, + 0.019532477483153343, + 0.08980923146009445, + -0.0527847483754158, + 0.03593967854976654, + -0.018639177083969116, + -0.008261451497673988, + -0.01560209784656763, + -0.0026969104073941708, + 0.018880672752857208, + 0.04799817502498627, + 0.05502762272953987, + -0.03425168991088867, + 0.01105918176472187, + -0.03379194065928459, + -0.011735674925148487, + 0.02730555832386017, + 0.0034505189396440983, + -0.009316124953329563, + 0.04001319780945778, + -0.0010536540066823363, + 0.019731979817152023, + -0.007927143014967442, + 0.05607812851667404, + 0.022569239139556885, + -0.05910320207476616, + 0.0616905577480793, + 0.012927813455462456, + 0.01047436147928238, + 0.05057719349861145, + 0.02407444827258587, + -0.06531791388988495, + -0.04082155600190163, + 0.0482141487300396, + -0.039386823773384094, + 0.06349851191043854, + -0.02075859345495701, + -0.06799917668104172, + -0.021823324263095856, + 0.03050837479531765, + -0.08132558315992355, + 0.0022187719587236643, + -0.04362311586737633, + -0.054090723395347595, + -0.012682370841503143, + -0.017921380698680878, + 0.03392820432782173, + -0.03981824591755867, + -0.12388496100902557, + 0.0333772711455822, + 0.10349462926387787, + -0.018525883555412292, + -0.030874930322170258, + -0.011783379130065441, + 0.06379921734333038, + -0.0771782174706459, + 0.028740134090185165, + 0.017274195328354836, + -0.030424082651734352, + 0.03361191973090172, + -0.00675092963501811, + -0.03938935697078705, + 0.053285468369722366, + -0.01062458660453558, + -0.012627368792891502, + 0.029252097010612488, + 0.039662595838308334, + 0.006413734517991543, + 0.04452662914991379, + -0.006050451193004847, + -0.09639420360326767, + 0.05014611780643463, + 0.004251870792359114, + 0.010961364954710007, + -0.0545850545167923, + -0.029650723561644554, + -0.10829014331102371, + -0.09644226729869843, + -0.0633111447095871, + 0.06799129396677017, + 0.061053331941366196, + 0.10056014358997345, + -0.09666163474321365, + -0.046759262681007385, + -0.005895734298974276, + -0.010212617926299572, + -0.08341872692108154, + 0.028180645778775215, + 0.08649139851331711, + 0.039313673973083496, + -0.05321615934371948, + 0.01899936981499195, + 0.13480618596076965, + 0.03450454771518707, + -0.050705812871456146, + 0.04420441389083862, + 0.03522302955389023, + 0.06513592600822449, + -0.04779195785522461, + -0.03722764179110527, + -0.009047082625329494, + -0.03553682565689087, + -0.051555246114730835, + 0.003371480153873563, + -0.026757661253213882, + -0.0590674914419651, + 0.02475658990442753, + -0.10042254626750946, + 0.0038774963468313217, + -0.09202451258897781, + -0.02590278908610344, + -0.005976857617497444, + -0.02169366180896759, + -0.07197640091180801, + 0.051815103739500046, + 0.11731696873903275, + 0.016610275954008102, + 0.013723468407988548, + -0.04814884811639786, + 0.004433638881891966, + -0.0338992141187191, + 0.005160810425877571, + 0.006946159992367029, + -2.0864710649698743e-33, + 0.06964438408613205, + 0.11188583076000214, + -0.0763360932469368, + 0.08151290565729141, + 0.012745741754770279, + -0.03250968083739281, + -0.09128541499376297, + -0.02570205181837082, + -0.13681016862392426, + 0.06610487401485443, + 0.04643425717949867, + 0.12209364771842957, + -0.04561508446931839, + 0.012008915655314922, + 0.026652513071894646, + -0.018451446667313576, + 0.01723201386630535, + -0.01166901271790266, + -0.0716734379529953, + -0.058997076004743576, + -0.10709261894226074, + 0.08182379603385925, + -0.019665535539388657, + -0.059338927268981934, + -0.07324294745922089, + 0.02246284671127796, + 0.016062868759036064, + -0.016772335395216942, + -0.05080615356564522, + 0.014681873843073845, + 0.01961413025856018, + -0.01638958975672722, + 0.04723042622208595, + 0.002830993151292205, + -0.004344835877418518, + 0.014954332262277603, + -0.045635610818862915, + -0.01554548554122448, + -0.049493249505758286, + -0.029492175206542015, + -0.14946764707565308, + 0.0036799379158765078, + -0.026870137080550194, + -0.03231726586818695, + 0.06393150240182877, + 0.10098803788423538, + -0.06350996345281601, + -0.0005558152915909886, + 0.024151230230927467, + -0.028018442913889885, + -0.0190005861222744, + 0.007456745021045208, + 0.07959813624620438, + 0.07099657505750656, + 0.017253179103136063, + 0.05810117349028587, + 0.009653998538851738, + 0.043516941368579865, + 0.04272855445742607, + 0.03638319671154022, + 0.019376631826162338, + 0.035646624863147736, + 0.016234003007411957, + 0.012289674952626228, + -0.0008258530870079994, + 0.03190918266773224, + -0.04735437408089638, + -0.028479380533099174, + 0.0825820192694664, + -0.021514693275094032, + 0.00395530229434371, + 0.09315229952335358, + 0.04376276582479477, + 0.011679724790155888, + 0.04032130166888237, + -0.008413181640207767, + 0.054487600922584534, + -0.05424883961677551, + -0.032508086413145065, + -0.033789247274398804, + -0.12410149723291397, + -0.05621475353837013, + -0.04151925444602966, + 0.04785792902112007, + -0.01353535894304514, + -0.03794677183032036, + -0.0227516982704401, + -0.06896983832120895, + -0.07326731085777283, + 0.048749808222055435, + -0.06610996276140213, + -0.03946026414632797, + 0.05557260289788246, + -0.08753180503845215, + -0.043037332594394684, + 1.1181025840178163e-33, + 0.04455748572945595, + 0.04410558193922043, + -0.044217269867658615, + 0.026887692511081696, + 0.006011600140482187, + 0.033095575869083405, + 0.01880635879933834, + -0.04473011940717697, + 0.011455545201897621, + 0.051619868725538254, + 0.031123172491788864, + -0.026137595996260643, + -0.02595471777021885, + -0.045952919870615005, + -0.017799347639083862, + -0.002087603323161602, + 0.013707615435123444, + 0.07859888672828674, + 0.05091862007975578, + 0.017595607787370682, + -0.013195745646953583, + -0.030268512666225433, + -0.1323423683643341, + 0.0543021559715271, + -0.08904748409986496, + 0.041822563856840134, + 0.05083903670310974, + -0.06495131552219391, + -0.08544106781482697, + -0.02162288874387741, + 0.039288364350795746, + 0.0008364802924916148, + -0.017215732485055923, + 0.03260086476802826, + -0.052942924201488495, + 0.0026212972588837147, + 0.017547866329550743, + -0.0033496965188533068, + 0.04328827187418938, + -0.022928740829229355, + 0.019234949722886086, + 0.03489851579070091, + 0.024986455217003822, + 0.03247269615530968, + -0.06312644481658936, + -0.061699122190475464, + -0.014189589768648148, + -0.09495507180690765, + 0.04413707181811333, + 0.06934274733066559, + 0.04839497432112694, + -0.06336908787488937, + -0.09611153602600098, + 0.03896284103393555, + -0.03870641440153122, + -0.07069924473762512, + 0.01973968930542469, + 0.026891721412539482, + -0.06099090352654457, + 0.12701982259750366, + 0.02522658370435238, + -0.008512474596500397, + -0.006923868786543608, + 0.08942270278930664, + -0.005747726187109947, + -0.023234037682414055, + -0.01089160144329071, + -0.01220959983766079, + 0.07020155340433121, + 0.00865220557898283, + 0.0312918983399868, + -0.004199699033051729, + -0.01925043575465679, + 0.047461241483688354, + 0.030232874676585197, + -0.07573682814836502, + 0.03926656022667885, + -0.010383198969066143, + -0.004728324245661497, + 0.062383029609918594, + -0.014675046317279339, + 0.010805200785398483, + -0.06751751154661179, + 0.04968981817364693, + 0.01199934259057045, + 0.01710294373333454, + -0.04148304462432861, + 0.05559687316417694, + -0.015719106420874596, + -0.03701131418347359, + -0.014098187908530235, + 0.09119649231433868, + 0.08512261509895325, + -0.05942826345562935, + -0.08016745746135712, + -1.643407188112178e-08, + -0.05227002128958702, + -0.03287547826766968, + -0.010018156841397285, + 0.03291616588830948, + 0.006292431149631739, + 0.009565426036715508, + 0.034767888486385345, + -0.08377788960933685, + -0.07075320184230804, + -0.041410744190216064, + 0.07230379432439804, + 0.046844977885484695, + -0.01704580895602703, + -0.0002066199667751789, + 0.027645844966173172, + 0.04212842136621475, + -0.01837831549346447, + -0.008079756051301956, + -0.022107675671577454, + -0.04813127592206001, + -0.03922315314412117, + 0.06826671212911606, + 0.022613011300563812, + -0.007398508954793215, + 0.014488616958260536, + 0.013292867690324783, + -0.038941171020269394, + 0.05448765307664871, + 0.10806811600923538, + 0.11821457743644714, + 0.05880211293697357, + 0.02719859406352043, + -0.013452745042741299, + -0.01976931467652321, + -0.06996432691812515, + -0.0046610222198069096, + -0.029348690062761307, + 0.014931928366422653, + -0.019376631826162338, + 0.10785792768001556, + 0.0219434704631567, + -0.00751096336171031, + -0.019759759306907654, + -0.006744091399013996, + -0.032791394740343094, + -0.02746456116437912, + 0.01583634316921234, + -0.08701411634683609, + -0.10186655074357986, + -0.03068174049258232, + 0.06853435933589935, + -0.04370587319135666, + 0.023942796513438225, + 0.04173038899898529, + -0.009954642504453659, + -0.05822230875492096, + 0.05286094546318054, + 0.12671469151973724, + 0.04360470548272133, + -0.003968060482293367, + 0.1696033924818039, + 0.017136190086603165, + 0.012103372253477573, + 0.0021633515134453773 + ], + "fire-truck-bold||*new*,first-aid,emt,medical,medicine,injury,safety,emergency,firefighter": [ + -0.03667115047574043, + -0.036485712975263596, + 0.008921429514884949, + 0.0376809686422348, + 0.10879932343959808, + 0.028411956503987312, + 0.048012979328632355, + 0.02252931520342827, + -0.04295341670513153, + -0.0110388258472085, + 0.03914232552051544, + 0.008973391726613045, + 0.06440114229917526, + 0.018724637106060982, + -0.03425265848636627, + 0.011052493937313557, + 0.05946963652968407, + -0.028597239404916763, + -0.0032750729005783796, + -0.003085537115111947, + -0.01592377945780754, + 0.13144482672214508, + 0.025306539610028267, + 0.01694621331989765, + -0.022193878889083862, + -0.010723251849412918, + -0.046869128942489624, + 0.07568278908729553, + -0.09636188298463821, + -0.07241538166999817, + 0.008624648675322533, + -0.054770633578300476, + 0.035705484449863434, + 0.024304913356900215, + 0.02790321595966816, + -0.040288444608449936, + 0.030140087008476257, + 0.03322799876332283, + -0.050296902656555176, + 0.07809779047966003, + -0.028953291475772858, + -0.0842972919344902, + -0.04357246309518814, + -0.01945449411869049, + -0.023534709587693214, + -0.046150486916303635, + 0.024275369942188263, + -0.06206270679831505, + 0.08371970057487488, + -0.0038459929637610912, + 0.06448446214199066, + -0.019208407029509544, + -0.07398690283298492, + 0.03947062790393829, + 0.11882266402244568, + -0.10685613751411438, + -0.048726700246334076, + -0.002741258591413498, + -0.06807440519332886, + -0.010744196362793446, + -0.032385509461164474, + -0.0027651500422507524, + 0.04336443170905113, + 0.02504708431661129, + -0.037138406187295914, + -0.015690751373767853, + 0.0054906862787902355, + -0.030211294069886208, + 0.021473823115229607, + -0.01072029396891594, + -0.008066952228546143, + 0.05719221383333206, + 0.04948325455188751, + -0.007788497488945723, + -0.035086844116449356, + -0.02258601039648056, + 0.0751153975725174, + 0.06696969270706177, + 0.012134828604757786, + -0.024638304486870766, + -0.010003349743783474, + -0.0868791788816452, + -0.010539091192185879, + -0.025943223387002945, + -0.06054401025176048, + 0.07455001771450043, + -0.10751768201589584, + 0.007593956310302019, + -0.09387920051813126, + 0.045888908207416534, + -0.08210716396570206, + -0.06109394133090973, + 0.08921870589256287, + 0.10107823461294174, + -0.0330384336411953, + 0.008557500317692757, + -0.00534408213570714, + -0.007088243030011654, + -0.05544652044773102, + 0.012227392755448818, + -0.016137031838297844, + -0.03990808129310608, + 0.017794210463762283, + 0.059829555451869965, + -0.005324150435626507, + -0.06804852932691574, + -0.06698243319988251, + -0.05653074383735657, + -0.02059832587838173, + -0.0032348772510886192, + 0.11395549774169922, + -0.019255802035331726, + -0.015290922485291958, + -0.039625003933906555, + -0.04485655575990677, + 0.02874644100666046, + -0.13639973104000092, + -0.007208431139588356, + 0.0703415498137474, + 0.10745985805988312, + -0.035271670669317245, + 0.011200942099094391, + 0.0011706904042512178, + -0.01697276160120964, + 0.012007812969386578, + -0.005570341367274523, + 0.02798471413552761, + -4.191203434679773e-33, + 0.011287838220596313, + 0.04208679124712944, + 0.004445973783731461, + 0.07688838988542557, + 0.013551048003137112, + -0.016978910192847252, + -0.06586020439863205, + 0.002755748340860009, + 0.005474258214235306, + 0.08386433869600296, + -0.011529866605997086, + 0.09584356844425201, + 0.023148173466324806, + 0.02716081589460373, + -0.010527619160711765, + 0.0015087475767359138, + -0.1115240603685379, + -0.05104086175560951, + -0.10600034892559052, + -0.01722564920783043, + -0.09849593043327332, + 0.0904693752527237, + 0.0007036602473817766, + 0.013152061030268669, + -0.028913306072354317, + -0.0180655587464571, + -0.015218130312860012, + -0.01389453187584877, + 0.05007406324148178, + 0.0412098690867424, + -0.10974372178316116, + 0.060163918882608414, + 0.04760449752211571, + -0.019338436424732208, + -0.008684396743774414, + 0.004976510535925627, + -0.040557462722063065, + -0.06595422327518463, + -0.10239465534687042, + -0.06078682839870453, + -0.055539462715387344, + 0.0026764567010104656, + -0.026325276121497154, + 0.02716461755335331, + 0.04992023855447769, + 0.028878748416900635, + 0.0006536068394780159, + -0.016813509166240692, + -0.0026107761077582836, + 0.020400801673531532, + -0.09532368183135986, + -0.038531344383955, + 0.07064448297023773, + -0.03331524506211281, + -0.04371548071503639, + 0.02995743602514267, + 0.010131475515663624, + 0.062452852725982666, + 0.02904817834496498, + 0.016515888273715973, + -0.02196226641535759, + 0.04072968661785126, + 0.04726928472518921, + 0.007391394581645727, + 0.017200008034706116, + -0.027094494551420212, + 0.03299339860677719, + -0.04360651224851608, + 0.12224766612052917, + 0.007146697025746107, + 0.005868180654942989, + 0.035984016954898834, + 0.045005131512880325, + 0.010666273534297943, + 0.03824822977185249, + 0.014219928532838821, + 0.009513480588793755, + 0.011091147549450397, + -0.024288799613714218, + -0.051258474588394165, + -0.09284553676843643, + -0.06743636727333069, + -0.020928170531988144, + 0.09478112310171127, + 0.10736279934644699, + 0.00018395904044155031, + -0.03609957545995712, + -0.03205389529466629, + -0.03606652095913887, + 0.03807208314538002, + -0.11937835067510605, + 0.026242027059197426, + 0.03417736291885376, + 0.0566839836537838, + -0.01229321863502264, + 1.3307178288353936e-33, + 0.08255337923765182, + 0.0042744288221001625, + 0.004777528345584869, + -0.02535475417971611, + 0.030791888013482094, + 0.010738489218056202, + 0.026059187948703766, + 0.005122892092913389, + 0.029408399015665054, + 0.0937793031334877, + 0.012758883647620678, + -0.05161813274025917, + -0.005809236783534288, + -0.047916851937770844, + 0.05552230030298233, + -0.0781911090016365, + -0.054329171776771545, + 0.010629220865666866, + -0.02956993132829666, + 0.08658623695373535, + 0.02328447625041008, + -0.038143519312143326, + -0.1037202924489975, + 0.062284138053655624, + -0.018556060269474983, + 0.05408892035484314, + -0.01196439377963543, + -0.022618217393755913, + -0.08492206037044525, + -0.06289573758840561, + -0.027491316199302673, + -0.018588248640298843, + 0.058632802218198776, + 0.06929131597280502, + -0.09091689437627792, + 0.015439593233168125, + 0.04505318030714989, + -0.05269528180360794, + -0.018948517739772797, + -0.06512094289064407, + 0.08189360797405243, + 0.03549497574567795, + 0.0563061386346817, + 0.0393800288438797, + -0.03972196951508522, + -0.07064728438854218, + -0.06892590969800949, + -0.039361122995615005, + -0.0056161656975746155, + 0.05472300201654434, + -0.03671249374747276, + -0.05584512650966644, + -0.08149368315935135, + 0.03517618402838707, + 0.019875546917319298, + -0.03166861832141876, + 0.004899028223007917, + -0.03592156246304512, + -0.0453038364648819, + 0.04950396716594696, + 0.0402657650411129, + 0.02418484166264534, + -0.016514591872692108, + 0.11691205203533173, + -0.017297621816396713, + -0.09312070906162262, + -0.029104778543114662, + -0.048492182046175, + 0.01484529860317707, + 0.009052230976521969, + 0.04900631308555603, + 0.040380436927080154, + -0.01824546977877617, + -0.0580565370619297, + -0.04138750210404396, + -0.06991436332464218, + -0.010648909956216812, + -0.0008721432532183826, + -0.016807982698082924, + 0.016707733273506165, + 0.005334122106432915, + -0.0664774551987648, + -0.044629938900470734, + 0.1532072126865387, + 0.010689718648791313, + 0.04896204173564911, + 0.07877055555582047, + 0.04328974336385727, + 0.024417944252490997, + -0.0066515919752418995, + -0.026285802945494652, + 0.061485107988119125, + -0.01700502634048462, + 0.051505718380212784, + -0.13146358728408813, + -2.3723330855318636e-08, + -0.009020443074405193, + 0.0743713304400444, + -0.11388362944126129, + -0.0018026323523372412, + -0.0006507029174827039, + -0.041144125163555145, + -0.028085770085453987, + -0.008807778358459473, + -0.12651599943637848, + -0.02775942161679268, + 0.04422387480735779, + 0.09051386266946793, + 0.02509118616580963, + 0.032052017748355865, + 0.03422728553414345, + -0.020039187744259834, + 0.016154849901795387, + 0.05409261956810951, + -0.027856146916747093, + -0.031426895409822464, + -0.011205554939806461, + 0.0006859892164357007, + 0.02671901509165764, + 0.03223877772688866, + 0.03080195002257824, + 0.03703487664461136, + -0.05368630960583687, + -0.021412190049886703, + 0.10473957657814026, + 0.07948251813650131, + -0.046714410185813904, + 0.03399492800235748, + -0.08650567382574081, + -0.010620512999594212, + -0.03906930238008499, + -0.02930535189807415, + 0.07895790785551071, + -0.03820858523249626, + -0.029405876994132996, + 0.04700605943799019, + 0.0794752836227417, + -0.02018156833946705, + 0.0770452693104744, + -0.030763797461986542, + -0.013472511433064938, + -0.059100933372974396, + -0.024464506655931473, + -0.022486619651317596, + -0.04981362819671631, + -0.06787139177322388, + 0.08353348076343536, + -0.07600509375333786, + -0.020709911361336708, + 0.04870855435729027, + 0.018289556726813316, + 0.031618211418390274, + 0.008225442841649055, + 0.01829678565263748, + 0.030446061864495277, + 0.009550531394779682, + 0.07419288903474808, + -0.011485525406897068, + 0.07216642796993256, + 0.03711328282952309 + ], + "first-aid-bold||hospital,cross,medical,medicine,injury,safety,emergency,doctor": [ + -0.024915754795074463, + -0.004078207071870565, + 0.008813182823359966, + 0.004724178463220596, + 0.07637529820203781, + 0.04446111619472504, + 0.02805268205702305, + 0.0771239697933197, + -0.032345741987228394, + 0.02765427716076374, + 0.01930641569197178, + 0.004998243413865566, + -0.002910540672019124, + 0.028389947488904, + -0.08450516313314438, + -0.017457429319620132, + 0.01785171404480934, + -0.06640715897083282, + -0.05420473590493202, + 0.06901919096708298, + -0.006689167115837336, + 0.11946859955787659, + 0.027131114155054092, + 0.04191802069544792, + -0.026009244844317436, + 0.0008692484116181731, + -0.009141495451331139, + 0.019396856427192688, + 0.013436449691653252, + -0.04651128873229027, + 0.0047020879574120045, + -0.12075605988502502, + 0.1043219268321991, + 0.00290480419062078, + -0.019040854647755623, + 0.01700103096663952, + 0.03153352066874504, + 0.014597875066101551, + -0.04932626336812973, + 0.08936751633882523, + 0.027394821867346764, + -0.029170824214816093, + 0.010325616225600243, + 0.023087363690137863, + 0.05746058002114296, + 0.0017661560559645295, + -0.005627516191452742, + 0.023991437628865242, + 0.07520260661840439, + 0.0007015152368694544, + 0.011590210720896721, + -0.05975125730037689, + -0.06846603006124496, + 0.05680118501186371, + 0.04648847132921219, + -0.005986979231238365, + -0.06309685111045837, + -0.04338013008236885, + -0.10332895070314407, + 0.02698449417948723, + -0.06365776807069778, + -0.009204749949276447, + 0.13262517750263214, + 0.031141089275479317, + -0.044124916195869446, + -0.04069884866476059, + 0.0023945397697389126, + 0.027907835319638252, + 0.020981591194868088, + 0.05737163498997688, + -0.00419320585206151, + -0.04780448600649834, + 0.06858780235052109, + 0.0096328379586339, + -0.07979293912649155, + -0.010970182716846466, + 0.06050747632980347, + 0.030029941350221634, + -0.005143311340361834, + -0.02479410730302334, + -0.014640073291957378, + -0.07171625643968582, + -0.017311904579401016, + 0.002511498983949423, + -0.08340462297201157, + 0.07777927070856094, + -0.07491552829742432, + -0.0019774679094552994, + -0.04808009788393974, + -0.017299804836511612, + -0.010463155806064606, + -0.024974457919597626, + 0.10052400082349777, + 0.04764581471681595, + 0.033341336995363235, + 0.021967941895127296, + -0.029895424842834473, + -0.06824284046888351, + -0.08142504096031189, + 0.017463019117712975, + -0.004149767104536295, + -0.013283134438097477, + 0.04398023337125778, + 0.08985982835292816, + 0.005615653470158577, + -0.10427163541316986, + -0.0864967331290245, + -0.09678912162780762, + -0.0038615937810391188, + 0.04096364974975586, + 0.060132674872875214, + 0.015757810324430466, + 0.020840445533394814, + -0.0717235580086708, + -0.05048398673534393, + 0.07368607074022293, + -0.07169169187545776, + -0.039089713245630264, + 0.13287407159805298, + 0.10577096790075302, + 0.003927045967429876, + 0.010433689691126347, + -0.014970880933105946, + -0.08003362268209457, + -0.01843840628862381, + -0.020990459248423576, + 0.03381618112325668, + -5.6006909562927756e-33, + 0.07245129346847534, + 0.014202375896275043, + 0.013333396054804325, + 0.06197177991271019, + -0.03933759033679962, + -0.028178686276078224, + -0.07879818230867386, + -0.03791705518960953, + -0.0005846255808137357, + 0.019420603290200233, + -0.008793078362941742, + 0.04878551885485649, + 0.10030236095190048, + -0.002058541402220726, + -0.08144939690828323, + 0.059497613459825516, + -0.06740479171276093, + -0.02109186165034771, + -0.13416269421577454, + 0.01676257885992527, + -0.06235276162624359, + 0.03373512998223305, + -0.038052089512348175, + 0.04613546282052994, + -0.04386443272233009, + 0.013378934003412724, + -0.03559816628694534, + -0.012097316794097424, + 0.12094557285308838, + -0.00292177009396255, + -0.04423047602176666, + 0.04023876041173935, + 0.037938497960567474, + -0.07512461394071579, + -0.03205430507659912, + 0.02753780223429203, + -0.02696654014289379, + -0.045201148837804794, + -0.05028042942285538, + -0.03957077115774155, + -0.06423529237508774, + 0.030571872368454933, + 0.04550527036190033, + 0.024781109765172005, + 0.089848592877388, + -0.0004221370618324727, + -0.0591120645403862, + -0.04030514881014824, + 0.03175012022256851, + -0.03667129948735237, + -0.047355327755212784, + -0.024616096168756485, + 0.020210547372698784, + -0.02803579717874527, + -0.027682596817612648, + 0.03219369798898697, + 0.03014172799885273, + 0.1263490468263626, + 0.0008224357152357697, + -0.015313870273530483, + 0.040715161710977554, + 0.01847224310040474, + 0.0060243308544158936, + 0.04500452056527138, + -0.018040863797068596, + -0.04357735440135002, + 0.006156680174171925, + -0.05695793405175209, + 0.0698818638920784, + -0.05076009780168533, + -0.10490770637989044, + 0.04665456712245941, + 0.024554692208766937, + 0.03831428289413452, + -0.02581336721777916, + 0.07608779519796371, + -0.02186976931989193, + -0.027672452852129936, + 0.06210917979478836, + -0.09638157486915588, + -0.10573647916316986, + -0.025224357843399048, + -0.004630847834050655, + 0.1274520754814148, + 0.05298256874084473, + 0.027073796838521957, + -0.05878131464123726, + -0.01660357601940632, + -0.07096301019191742, + -0.038398053497076035, + -0.06904061138629913, + 0.06738081574440002, + 0.03472401946783066, + -0.004244628362357616, + -0.05591711401939392, + 6.291113522486415e-34, + 0.08523115515708923, + 0.005492284893989563, + 0.017285872250795364, + -0.01821933314204216, + 0.05580894649028778, + -0.031883131712675095, + -0.01649971678853035, + -0.011317085474729538, + 0.07471256703138351, + 0.09269776940345764, + 0.008763918653130531, + -0.048590004444122314, + -0.00278867338784039, + -0.01026369072496891, + 0.028754690662026405, + -0.02109885960817337, + -0.010309715755283833, + 0.03331621363759041, + -0.03704379126429558, + 0.0656462162733078, + 0.018009962514042854, + -0.01735518127679825, + -0.0358550101518631, + 0.03444981202483177, + -0.02359817549586296, + 0.05371110141277313, + 0.038065627217292786, + -0.03589149937033653, + -0.06641819328069687, + -0.06671258807182312, + -0.013779394328594208, + -0.012693154625594616, + 0.022238247096538544, + 0.050446826964616776, + -0.09755814075469971, + 0.08135171979665756, + -0.00846506655216217, + -0.07549120485782623, + -0.07039328664541245, + -0.045287199318408966, + 0.07814837247133255, + -0.004931560251861811, + 0.03417448699474335, + 0.03649890795350075, + -0.03266703709959984, + -0.03909171372652054, + -0.09327136725187302, + 0.0034757519606500864, + -0.028682613745331764, + 0.02334766648709774, + -0.0722833126783371, + -0.005145791452378035, + -0.016953563317656517, + -0.02197699435055256, + 0.04757091403007507, + -0.05289023369550705, + -0.039641812443733215, + -0.07502271234989166, + -0.10542173683643341, + 0.0037996096070855856, + 0.04048324003815651, + 0.026041388511657715, + -0.0800871029496193, + 0.07781559228897095, + -0.01927647553384304, + -0.019652221351861954, + -0.03200795501470566, + -0.008278810419142246, + -0.005735399201512337, + -0.02560390532016754, + 0.044749367982149124, + 0.059495002031326294, + -0.04313119500875473, + -0.08404550701379776, + -0.015010703355073929, + -0.01965196616947651, + 0.0022593694739043713, + -0.055132243782281876, + -0.02615218237042427, + -0.003752706805244088, + 0.024431034922599792, + -0.10314252972602844, + -0.014425079338252544, + 0.11094696819782257, + -0.0019530360586941242, + -0.023361392319202423, + 0.10493030399084091, + -0.013035556301474571, + -0.013156305067241192, + 0.006242357660084963, + -0.07541842758655548, + 0.067323237657547, + -0.01679442822933197, + 0.0243039820343256, + -0.06086738035082817, + -2.5234285772057774e-08, + -0.008053216151893139, + 0.04489265754818916, + -0.0958002358675003, + -0.021974408999085426, + -0.052823107689619064, + -0.10740654915571213, + -0.10819527506828308, + -0.03211526572704315, + -0.05506475269794464, + 0.01849604770541191, + -0.015629760921001434, + 0.1140546053647995, + 0.039243392646312714, + -0.031774625182151794, + 0.038398366421461105, + -0.016352884471416473, + -0.06728947162628174, + 0.00307070417329669, + -0.0270614605396986, + -0.024310702458024025, + -0.033314697444438934, + 0.00904526561498642, + 0.013197856955230236, + -0.08737286925315857, + 0.07680579274892807, + 0.04049602523446083, + -0.04719262942671776, + 0.005875637289136648, + 0.004491806495934725, + 0.05778739973902702, + -0.0005023748963139951, + 0.03271566331386566, + -0.003817084478214383, + 0.028809402137994766, + -0.0613492988049984, + 0.00011401201481930912, + 0.11082164198160172, + -0.05373292788863182, + 0.02582400292158127, + 0.031534090638160706, + 0.06779243797063828, + -0.04752280190587044, + 0.029937302693724632, + -0.007669508457183838, + 0.005055402871221304, + -0.015184220857918262, + 0.042603831738233566, + 0.02835305593907833, + 0.012533665634691715, + -0.12638051807880402, + 0.030608145520091057, + -0.04662621393799782, + 0.02457604371011257, + 0.024930547922849655, + -0.014571710489690304, + 0.053667981177568436, + 0.02819065749645233, + 0.02485605701804161, + -0.029791370034217834, + 0.04240250959992409, + 0.05812836065888405, + 0.009845646098256111, + 0.1008295863866806, + 0.042042091488838196 + ], + "first-aid-kit-bold||bandages,medical,medicine,injury,safety,emergency,doctor": [ + -0.07131757587194443, + 0.04446013271808624, + 0.003526360262185335, + -0.006872179452329874, + 0.08242310583591461, + 0.02584325522184372, + 0.06077304109930992, + 0.10101161897182465, + -0.07263075560331345, + 0.053459588438272476, + 0.03910861909389496, + 0.007906283251941204, + -0.016460083425045013, + 0.03303810954093933, + -0.08493264019489288, + -0.00721836369484663, + -0.0022999681532382965, + -0.044578514993190765, + -0.042060162872076035, + 0.033415891230106354, + -0.021880237385630608, + 0.14962826669216156, + 0.06065110117197037, + 0.016607483848929405, + -0.05111827701330185, + 0.02540389448404312, + 0.0026259629521518946, + 0.02816759981215, + 0.025783048942685127, + -0.04827219992876053, + -0.008088530041277409, + -0.08209477365016937, + 0.08953067660331726, + -0.013865132816135883, + 0.01568242907524109, + 0.016816433519124985, + 0.013342644087970257, + -0.030599238350987434, + -0.06582652777433395, + 0.08294627815485, + 0.0524669773876667, + -0.0501389317214489, + -0.06199556216597557, + 0.04152951389551163, + 0.05525606870651245, + -0.01568765565752983, + 0.04288399592041969, + 0.01034469809383154, + 0.07909377664327621, + 0.032113708555698395, + -0.0015452109510079026, + -0.05900954082608223, + -0.054691657423973083, + 0.048705510795116425, + 0.06272313743829727, + -0.02592463232576847, + -0.08373792469501495, + -0.051007963716983795, + -0.0945797860622406, + 0.011172599159181118, + -0.039223670959472656, + 0.008999571204185486, + 0.058592867106199265, + 0.026315880939364433, + -0.0136487428098917, + -0.034035082906484604, + 0.029129285365343094, + 0.026430457830429077, + 0.03160681203007698, + 0.061570994555950165, + -0.03286464884877205, + -0.008031253702938557, + 0.10693139582872391, + 0.06313440203666687, + -0.047277774661779404, + -0.008315877988934517, + 0.04113227501511574, + 0.02485290914773941, + -0.004283035174012184, + -0.0013972701271995902, + -0.07251863926649094, + -0.08090441673994064, + 0.02406373620033264, + 0.010476313531398773, + -0.13869494199752808, + 0.10828475654125214, + -0.07775310426950455, + -0.010724227875471115, + -0.028522750362753868, + -0.005811262410134077, + -0.027685489505529404, + -0.04216596856713295, + 0.11919459700584412, + 0.09091406315565109, + 0.005326262209564447, + 0.04189910739660263, + -0.00792608316987753, + -0.004193471744656563, + -0.07546134293079376, + 0.03218427672982216, + -0.001614894950762391, + -0.05888083949685097, + 0.017143402248620987, + 0.08240315318107605, + -0.0011486908188089728, + -0.11424440145492554, + -0.10621906071901321, + -0.08149974793195724, + 0.01563686691224575, + 0.05962470546364784, + 0.01628692075610161, + -0.009220562875270844, + 0.002211550483480096, + -0.0740235298871994, + -0.07296492904424667, + 0.011512215249240398, + -0.053011614829301834, + 0.0040343147702515125, + 0.0987926572561264, + 0.09408047795295715, + 0.01101062260568142, + 0.017378509044647217, + 0.016189858317375183, + -0.10382162779569626, + -0.012980522587895393, + -0.03483690321445465, + 0.03037317469716072, + -5.011240783440878e-33, + 0.054005980491638184, + 0.016077563166618347, + 0.006496925838291645, + 0.08311901241540909, + -0.00936863012611866, + 0.01257259864360094, + -0.05443740636110306, + -0.0693635568022728, + -0.024689141660928726, + 0.025969373062253, + -0.008928156457841396, + 0.05996144562959671, + 0.01918093115091324, + 0.027130326256155968, + -0.07561956346035004, + 0.0507158525288105, + -0.08756125718355179, + -0.04428252950310707, + -0.08324343711137772, + 0.017964668571949005, + -0.09774133563041687, + 0.025531189516186714, + -0.0001804001076379791, + 0.05036093667149544, + -0.010301662608981133, + 0.03837267681956291, + 0.0026127584278583527, + -0.024141522124409676, + 0.09734094887971878, + 0.00926853995770216, + -0.05119933933019638, + 0.05063341557979584, + 0.08790361881256104, + -0.06055726483464241, + -0.06017296388745308, + 0.03249525651335716, + -0.02980079874396324, + -0.06107494235038757, + -0.0600464791059494, + -0.021624669432640076, + -0.0344821996986866, + 0.010948633775115013, + 0.05679447576403618, + 0.037571147084236145, + 0.07377725094556808, + 0.0234407689422369, + -0.017255157232284546, + 0.014155357144773006, + 0.03654135391116142, + -0.054315317422151566, + -0.03860379010438919, + 0.008926932699978352, + 0.04221920669078827, + -0.05323924869298935, + -0.05343284085392952, + 0.013411850668489933, + -0.004473880864679813, + 0.10725313425064087, + 0.001549042877741158, + 0.0027458006516098976, + 0.03252403065562248, + -0.0052298279479146, + 0.06522923707962036, + 0.06830944865942001, + -0.003468107432126999, + -0.03660467267036438, + 0.014264187775552273, + -0.04192430153489113, + 0.045605503022670746, + -0.03244810923933983, + -0.09866473823785782, + 0.08947843313217163, + 0.01785765402019024, + 0.006095601711422205, + -0.01432053092867136, + 0.05239715799689293, + 0.019399914890527725, + 0.011762564070522785, + -0.038197483867406845, + -0.09914852678775787, + -0.10976037383079529, + -0.018758246675133705, + 0.0013668049359694123, + 0.10200678557157516, + 0.015669260174036026, + 0.00040194153552874923, + -0.06383378803730011, + 0.006494428962469101, + -0.027372872456908226, + -0.055134840309619904, + -0.09053300321102142, + 0.031810957938432693, + -0.02706684172153473, + -0.04581537842750549, + -0.04211070388555527, + 8.543898854669404e-34, + 0.10813599824905396, + 0.0027273143641650677, + -0.01752195879817009, + 0.018227770924568176, + 0.07388260215520859, + -0.03769727796316147, + -0.005180543754249811, + 0.02866429090499878, + 0.07771900296211243, + 0.10260262340307236, + -0.007268693298101425, + -0.04376933351159096, + -0.025494985282421112, + -0.04210130497813225, + -0.010672396048903465, + -0.002448019804432988, + -0.050816986709833145, + 0.04213197901844978, + 0.00458925636485219, + 0.019251996651291847, + 0.011392644606530666, + 0.008187565952539444, + -0.038107212632894516, + 0.01889503002166748, + -0.05328847095370293, + 0.04221446439623833, + 0.006530257873237133, + -0.02556627057492733, + -0.09270690381526947, + -0.04143771529197693, + 0.012045091018080711, + -0.06570518016815186, + 0.03408150374889374, + 0.0588558129966259, + -0.1131017804145813, + 0.054649706929922104, + 0.005207413341850042, + -0.08098205924034119, + -0.036238279193639755, + -0.055953092873096466, + 0.05470027029514313, + -0.017727060243487358, + 0.007766913156956434, + 0.04031556472182274, + -0.050309207290410995, + -0.06702343374490738, + -0.04707321524620056, + -0.01701206900179386, + -0.022559145465493202, + 0.03376660868525505, + -0.030442483723163605, + 0.009635783731937408, + -0.02517472766339779, + -0.039840057492256165, + 0.015380659140646458, + -0.011292598210275173, + -0.02470475062727928, + -0.07605107873678207, + -0.025729021057486534, + 0.046606384217739105, + 0.04227086529135704, + 0.052231285721063614, + -0.06334561109542847, + 0.07230806350708008, + -0.0012967250077053905, + -0.056324563920497894, + -0.006500827148556709, + -0.02377018891274929, + -0.001869103405624628, + -0.0021470889914780855, + 0.03063863329589367, + 0.08568534255027771, + -0.04317854344844818, + -0.0736883282661438, + -0.0042455121874809265, + -0.004086129367351532, + -0.014068028889596462, + -0.037848085165023804, + -0.012548067606985569, + 0.010311645455658436, + 0.004989574663341045, + -0.13824553787708282, + -0.01366446167230606, + 0.15032830834388733, + 0.048100173473358154, + -0.017494486644864082, + 0.1113186925649643, + 0.025698237121105194, + -0.02913772314786911, + 0.022575221955776215, + -0.04365863651037216, + 0.07982996851205826, + -0.0056332871317863464, + 0.06111318618059158, + -0.059345927089452744, + -2.2562231194456217e-08, + 0.012217361479997635, + 0.039005380123853683, + -0.14045581221580505, + -0.03452525660395622, + -0.04822767153382301, + -0.0592501275241375, + -0.08834105730056763, + 0.020113380625844002, + -0.055500179529190063, + 0.0159983541816473, + 0.007994540967047215, + 0.09073250740766525, + -0.013661529868841171, + -0.0116907162591815, + 0.020373890176415443, + 0.00980825163424015, + -0.07336948812007904, + 0.04625009000301361, + -0.07823296636343002, + -0.06514398753643036, + -0.038373466581106186, + 0.02990277111530304, + 0.0605008639395237, + -0.04475156217813492, + 0.040392786264419556, + 0.032997939735651016, + -0.04611483961343765, + 0.005309184081852436, + 0.001580559415742755, + 0.09471479058265686, + -0.023761505261063576, + -0.006989475339651108, + 0.028508707880973816, + 0.012067627161741257, + -0.059521399438381195, + -0.009460648521780968, + 0.057128094136714935, + -0.06285838037729263, + 0.03886313736438751, + 0.04591933637857437, + 0.05494207888841629, + -0.08078677207231522, + 0.04036103934049606, + 0.007394151296466589, + -0.023723836988210678, + -0.03468690440058708, + 0.010287653654813766, + 0.019112059846520424, + -0.024933185428380966, + -0.08659835904836655, + 0.054204534739255905, + -0.03495801240205765, + -0.022195514291524887, + 0.009070130065083504, + -0.015399142168462276, + 0.03519327566027641, + 0.026225458830595016, + 0.026928149163722992, + 0.017373941838741302, + 0.03405385464429855, + 0.002894619945436716, + 0.010456770658493042, + 0.1044708862900734, + 0.023420289158821106 + ], + "fish-bold||animals,pets,food,seafood,restaurants,dining": [ + 0.023369919508695602, + -0.019215991720557213, + 0.02792813442647457, + 0.05552567169070244, + -0.07693205773830414, + 0.006797312758862972, + 0.017282508313655853, + -0.11167503148317337, + -0.040710121393203735, + -0.04454607516527176, + 0.06800678372383118, + -0.0897340178489685, + -0.041330039501190186, + 0.00576038658618927, + 0.030140921473503113, + -0.015582991763949394, + 0.13083253800868988, + 0.005956374574452639, + 0.036571625620126724, + 0.012669282034039497, + -0.05689053609967232, + 0.0620490126311779, + 0.039485130459070206, + 0.003024269361048937, + 0.012468889355659485, + 0.0436730831861496, + 0.009980405680835247, + 0.008776185102760792, + -0.02457483485341072, + -0.02102051116526127, + -0.03825962543487549, + 0.03681996092200279, + 0.10756600648164749, + 0.01776144839823246, + 0.0254956241697073, + 0.004078464116901159, + -0.0023310885298997164, + -0.09856060147285461, + 0.06469126790761948, + 0.11361601948738098, + 0.013563892804086208, + -0.009618652984499931, + 0.00825011171400547, + 0.028065454214811325, + -0.0767458900809288, + -0.03998357057571411, + -0.10782001912593842, + -0.038925252854824066, + 0.0018375859363004565, + -0.007931678555905819, + -0.09646155685186386, + -0.035208042711019516, + -0.10360587388277054, + 0.03253375366330147, + 0.05446246266365051, + -0.008372192271053791, + -0.12103190273046494, + -0.06932703405618668, + -0.02891233190894127, + 0.0037961199413985014, + 0.06807631999254227, + -0.00018013062071986496, + 0.0727430135011673, + 0.08070702850818634, + -0.02016153372824192, + -0.0027229352854192257, + -0.061247818171978, + 0.042922306805849075, + -0.029482148587703705, + -0.07032369822263718, + 0.03560980409383774, + -0.011625014245510101, + 0.04429302364587784, + -0.021929144859313965, + -0.09540045261383057, + -0.04549318552017212, + 0.056684352457523346, + -0.0695146769285202, + 0.01672437973320484, + -0.09067241847515106, + -0.11692411452531815, + -0.06944471597671509, + -0.04661623388528824, + -0.0032491576857864857, + 0.05667085573077202, + 0.04687432572245598, + -0.04661998152732849, + -0.04638449475169182, + -0.1045917421579361, + 0.024017753079533577, + -0.05592130869626999, + -0.043548308312892914, + -0.007671289145946503, + -0.06293533742427826, + 0.016149677336215973, + 0.011189492419362068, + 0.05182955041527748, + -0.056336402893066406, + -0.023128628730773926, + 0.03569015860557556, + 0.042761366814374924, + 0.00604280736297369, + 0.040027838200330734, + -0.05225753039121628, + -0.02981709875166416, + -0.02988928183913231, + -0.09485091269016266, + 0.021126359701156616, + 0.01967192441225052, + -0.01592007838189602, + -0.07963686436414719, + -0.01668676733970642, + -0.0016562314704060555, + -0.004318946972489357, + -0.05074327811598778, + 0.02846759371459484, + -0.015556493774056435, + -0.10585400462150574, + 0.13874098658561707, + 0.013787991367280483, + -0.03226471319794655, + -0.000589474686421454, + 0.00404374347999692, + -0.024274108931422234, + -0.024895507842302322, + 0.024980727583169937, + -0.005578957498073578, + -2.9530098682235553e-33, + 0.06012393906712532, + -0.08079363405704498, + -0.041621651500463486, + 0.003976406529545784, + 0.07717033475637436, + -0.016618499532341957, + -0.04685815051198006, + -0.03670022264122963, + -0.009435645304620266, + 0.015601196326315403, + 0.043593283742666245, + 0.08006486296653748, + -0.029521575197577477, + 0.05411113426089287, + 0.06527844816446304, + 0.004887493327260017, + 0.022941317409276962, + -0.020775051787495613, + -0.03251959756016731, + -0.031041372567415237, + -0.01973482221364975, + 0.02339107170701027, + 0.041387684643268585, + -0.028818415477871895, + -0.08849704265594482, + -0.059339165687561035, + -0.02129184454679489, + -0.07801488041877747, + -0.01739911176264286, + 0.06817571073770523, + 0.04776058346033096, + -0.06327506899833679, + 0.011714674532413483, + 0.009882505983114243, + -0.05058352276682854, + -0.012818780727684498, + -0.03408579155802727, + -0.07487567514181137, + -0.04400734603404999, + 0.04811639338731766, + 0.018743019551038742, + -0.02655394747853279, + 0.02150750532746315, + 0.0571124292910099, + 0.018262343481183052, + 0.06552288681268692, + 0.009446082636713982, + -0.015142072923481464, + 0.016172293573617935, + 0.05799625813961029, + 0.013030928559601307, + -0.06319093704223633, + -0.0031548042315989733, + 0.011952206492424011, + -0.06808294355869293, + 0.008703568018972874, + -0.044341202825307846, + 0.02651900425553322, + -0.06791432946920395, + 0.008108600974082947, + -0.03404465690255165, + 0.07632509618997574, + 0.053007885813713074, + -0.07371874153614044, + 0.05517813563346863, + 0.013516135513782501, + -0.0302056185901165, + 0.04397154226899147, + 0.061884649097919464, + 0.01606757566332817, + 0.05437491834163666, + 0.061973653733730316, + 0.05467614904046059, + -0.03029758296906948, + -0.005131804384291172, + 0.039034608751535416, + -0.00042421394027769566, + -0.03073793090879917, + -0.036055583506822586, + -0.017136361449956894, + -0.04294012114405632, + 0.08886710554361343, + 0.01885167509317398, + 0.13017451763153076, + -0.06541663408279419, + 0.11469829082489014, + 0.07817758619785309, + -0.11144597083330154, + 0.07708272337913513, + 0.07953422516584396, + -0.08461347967386246, + -0.0026770897675305605, + 0.013671809807419777, + -0.12055105715990067, + -0.04351548105478287, + 4.788798681356915e-34, + -0.0014295013388618827, + -0.035174835473299026, + -0.06448882818222046, + -0.032889626920223236, + -0.03513341397047043, + -0.040553610771894455, + -0.0039526172913610935, + 0.047926031053066254, + 0.056808941066265106, + -0.01266204472631216, + -0.09645747393369675, + -0.007400817237794399, + -0.0036191903054714203, + -0.08343173563480377, + -0.017080416902899742, + 0.048263270407915115, + 0.010405907407402992, + 0.052163686603307724, + 0.033987775444984436, + -0.04062919318675995, + -0.0632096454501152, + -0.06055082380771637, + -0.008374444209039211, + 0.14639247953891754, + 0.02848011627793312, + 0.11760957539081573, + -0.008748267777264118, + -0.012893954291939735, + -0.075869619846344, + -0.07329610735177994, + -0.02503938600420952, + 0.009588727727532387, + 0.0836050808429718, + 0.026050182059407234, + -0.03504086658358574, + 0.10380091518163681, + -0.02814711444079876, + -0.061495017260313034, + 0.009994658641517162, + -0.004485684912651777, + 0.05409080535173416, + -0.013461175374686718, + 0.029594384133815765, + 0.07483764737844467, + -0.023708384484052658, + 0.06515005230903625, + -0.026478013023734093, + -0.04192217439413071, + -0.06397645175457001, + 0.050449009984731674, + 0.025298409163951874, + 0.0013445873046293855, + -0.006331371609121561, + -0.03609766811132431, + 0.03260966017842293, + 0.03236385062336922, + -0.006800264120101929, + -0.00999979954212904, + -0.009149085730314255, + 0.017450349405407906, + -0.010307292453944683, + 0.07602129876613617, + 0.012524526566267014, + 0.1071566715836525, + 0.023445256054401398, + -0.03200838714838028, + 0.022266754880547523, + -0.08909685909748077, + 0.036662857979536057, + -0.04805086553096771, + 0.003377665765583515, + 0.057082124054431915, + -0.04872690886259079, + 0.008289618417620659, + -0.008363820612430573, + -0.009264339692890644, + 0.034691669046878815, + 0.012735104188323021, + 0.019959507510066032, + 0.0712670162320137, + 0.004563783295452595, + -0.0448044091463089, + -0.04460800811648369, + 0.03629782423377037, + -0.008980211801826954, + 0.028854267671704292, + -0.05024842545390129, + 0.044155631214380264, + 0.009068422950804234, + -0.006082784850150347, + -0.04741857945919037, + 0.044921185821294785, + -0.08999428898096085, + -0.04073932394385338, + 0.050279535353183746, + -1.9786941862776075e-08, + 0.08077932894229889, + -0.02331952191889286, + -0.07640409469604492, + 0.0913587212562561, + 0.03812035173177719, + -0.07793319225311279, + 0.016559934243559837, + -0.025840675458312035, + -0.010053359903395176, + 0.026371870189905167, + 0.018909987062215805, + 0.03032020293176174, + -0.050148945301771164, + -0.014284700155258179, + 0.06643261015415192, + 0.011186789721250534, + 0.034872155636548996, + -0.01213026512414217, + -0.011280774138867855, + -0.006005061790347099, + -0.06521444767713547, + 0.04534832388162613, + -0.016413601115345955, + -0.08328982442617416, + -0.03596824035048485, + 0.016443563625216484, + -0.03289134055376053, + 0.030498377978801727, + 0.1326516717672348, + 0.05101987347006798, + 0.06755290925502777, + 0.030967149883508682, + -0.04140155017375946, + 0.035162657499313354, + 0.011685097590088844, + -0.06212649866938591, + -0.05967560410499573, + -0.08224793523550034, + -0.017527246847748756, + 0.05383087694644928, + -0.01406257413327694, + 0.010761460289359093, + -0.0422128289937973, + -0.011347636580467224, + -0.03298211842775345, + 0.0469868928194046, + 0.08017527312040329, + 0.007612096145749092, + -0.008278021588921547, + -0.048413921147584915, + -0.0907900258898735, + 0.020934803411364555, + 0.07247785478830338, + -0.005771976429969072, + -0.04582306742668152, + 0.0036316204350441694, + 0.05341786891222, + -0.02250296249985695, + -0.005456108134239912, + 0.024255041033029556, + 0.10471000522375107, + 0.06861618161201477, + -0.0030623117927461863, + 0.07727789133787155 + ], + "fish-simple-bold||animals,pets,food,seafood,restaurants,dining": [ + 0.028564438223838806, + 0.004584578797221184, + 0.046030107885599136, + 0.057738397270441055, + -0.07333996146917343, + -0.004589040298014879, + 0.019564175978302956, + -0.07589119672775269, + -0.06453026086091995, + -0.023288292810320854, + 0.07621319591999054, + -0.10776475071907043, + -0.04608285427093506, + 0.02110414206981659, + 0.024098699912428856, + -0.03914979100227356, + 0.0999070554971695, + -0.013102163560688496, + 0.03643049672245979, + 0.013792366720736027, + -0.0719408243894577, + 0.05505060777068138, + -0.008560298942029476, + -0.007166156079620123, + -0.00819470826536417, + 0.07190040498971939, + 0.01029209978878498, + 0.021530477330088615, + 0.0037251098547130823, + -0.024307582527399063, + -0.040064144879579544, + 0.03137502074241638, + 0.09398281574249268, + 0.007712533697485924, + 0.0203243400901556, + 0.0038725552149116993, + 0.02368847280740738, + -0.07953420281410217, + 0.06356538087129593, + 0.08933469653129578, + -0.004202972631901503, + -0.023874429985880852, + 0.002487525111064315, + 0.037959128618240356, + -0.07407370954751968, + -0.04500626027584076, + -0.11372149735689163, + -0.04920392110943794, + -0.004324013367295265, + -0.03657006844878197, + -0.08779184520244598, + -0.03502119332551956, + -0.11872966587543488, + 0.011201179586350918, + 0.06083322688937187, + 0.0022673390340059996, + -0.12986701726913452, + -0.048767197877168655, + -0.030554473400115967, + -0.01363363303244114, + 0.08360257744789124, + -0.044035084545612335, + 0.06581833213567734, + 0.07688058167695999, + -0.01989712193608284, + -0.015509131364524364, + -0.05790510028600693, + 0.03064803034067154, + -0.038258396089076996, + -0.05730738863348961, + 0.02123880200088024, + -0.020259620621800423, + 0.028027955442667007, + 0.0010296740802004933, + -0.07562457770109177, + -0.0710030198097229, + 0.024747492745518684, + -0.057870253920555115, + 0.00518751097843051, + -0.045949745923280716, + -0.15300124883651733, + -0.07760553807020187, + -0.08352276682853699, + 0.019666671752929688, + 0.043312203139066696, + 0.037860386073589325, + -0.032645002007484436, + -0.03336340934038162, + -0.0818711668252945, + 0.018552636727690697, + -0.04101432487368584, + -0.014280473813414574, + 0.040075741708278656, + -0.07607511430978775, + 0.02352742850780487, + 0.010486779734492302, + 0.03878144547343254, + -0.061302270740270615, + -0.059874966740608215, + 0.031149031594395638, + 0.03143274039030075, + 0.02007196471095085, + 0.08677931129932404, + -0.06621849536895752, + -0.004114433191716671, + -0.032814376056194305, + -0.07818572223186493, + 0.0020575951784849167, + 0.027975358068943024, + -0.037195444107055664, + -0.1062421053647995, + -0.012671425938606262, + 0.010767494328320026, + -0.01063715573400259, + -0.03880953788757324, + 0.02262135036289692, + -0.031024454161524773, + -0.12848635017871857, + 0.12873093783855438, + 0.03891829028725624, + -0.030439380556344986, + -0.007908721454441547, + -0.003875509137287736, + -0.008031084202229977, + -0.033274706453084946, + 0.02331121638417244, + 0.02279708720743656, + -3.545810016304304e-33, + 0.07422244548797607, + -0.04712963476777077, + -0.03257475793361664, + 0.008114675991237164, + 0.0787893757224083, + -0.02083943784236908, + -0.05142780393362045, + -0.028194669634103775, + 0.007320756558328867, + 0.015684891492128372, + 0.0593244805932045, + 0.05918917804956436, + -0.03128824383020401, + 0.07101580500602722, + 0.06994206458330154, + 0.0008555201347917318, + 0.044256791472435, + -0.018075253814458847, + 0.0014425023691728711, + -0.04219292849302292, + -0.017678746953606606, + 0.07774461805820465, + 0.05389326065778732, + -0.05812617391347885, + -0.054040081799030304, + -0.05755409598350525, + -0.018787965178489685, + -0.10034170001745224, + -0.016996225342154503, + 0.0594506561756134, + 0.05214163288474083, + -0.061333052814006805, + 0.01077330857515335, + 0.023248450830578804, + -0.058584410697221756, + -0.01871953345835209, + 0.01203274354338646, + -0.06755331158638, + -0.036765825003385544, + 0.014208019711077213, + 0.003215824021026492, + -0.02257019467651844, + 0.04501688480377197, + 0.01940404810011387, + 0.03275405615568161, + 0.07356297969818115, + 0.01357688382267952, + -0.0100351981818676, + 0.007785606663674116, + 0.04044811800122261, + 0.013833236880600452, + -0.04821742698550224, + 0.009892945177853107, + 0.013612860813736916, + -0.05399741977453232, + 0.03426004573702812, + -0.030531883239746094, + 0.026193704456090927, + -0.08271025866270065, + 0.014179249294102192, + -0.027432799339294434, + 0.08856990188360214, + 0.037905190140008926, + -0.05717848986387253, + 0.04805789142847061, + 0.02570583112537861, + -0.03835894539952278, + 0.01965365931391716, + 0.055496230721473694, + 0.036153458058834076, + 0.03201496973633766, + 0.05445864796638489, + 0.03205556422472, + -0.05965135991573334, + 0.04244644567370415, + 0.04513566568493843, + 0.04493870958685875, + -0.08094201236963272, + -0.05574536323547363, + -0.005016330163925886, + -0.031702883541584015, + 0.09913287311792374, + 0.014367032796144485, + 0.13191305100917816, + -0.11326780170202255, + 0.09686022251844406, + 0.07745103538036346, + -0.08281267434358597, + 0.04587886855006218, + 0.08245916664600372, + -0.08447125554084778, + 0.002556589664891362, + 0.006374628748744726, + -0.10807954519987106, + -0.018478024750947952, + 1.1751688858239036e-33, + -0.0236418005079031, + -0.0418846532702446, + -0.07753244042396545, + -0.01975439302623272, + -0.026000170037150383, + -0.019155533984303474, + 0.0177147276699543, + 0.01888587512075901, + 0.06666745990514755, + -0.007362259551882744, + -0.09855268150568008, + -0.006801946554332972, + -0.018080923706293106, + -0.07948378473520279, + -0.01917293295264244, + 0.06632387638092041, + -0.0037327418103814125, + 0.06439820677042007, + 0.06865217536687851, + -0.027791054919362068, + -0.03434445336461067, + -0.0331602618098259, + -0.028370529413223267, + 0.10728932917118073, + 0.04753413051366806, + 0.1308162659406662, + -0.01890973001718521, + -0.009166178293526173, + -0.06842274963855743, + -0.07810420542955399, + -0.009053554385900497, + -0.012444926425814629, + 0.07788453251123428, + -0.00021418223332148045, + -0.024870825931429863, + 0.09341340512037277, + -0.07284341007471085, + -0.0666971206665039, + -0.004248906392604113, + -0.008145776577293873, + 0.03703678399324417, + -0.014617734588682652, + 0.03425879031419754, + 0.05449781194329262, + -0.014047480188310146, + 0.04706811532378197, + -0.004145943094044924, + -0.08220615983009338, + -0.08153307437896729, + 0.022205008193850517, + 0.022299988195300102, + -0.008243302814662457, + -0.02405024878680706, + -0.03752283751964569, + 0.04507520794868469, + 0.05460135638713837, + 0.005215180106461048, + 0.004053597338497639, + 0.022864175960421562, + 0.016849791631102562, + -0.007570398040115833, + 0.07079120725393295, + -0.035283029079437256, + 0.0945267528295517, + 0.006436754483729601, + -0.02795334905385971, + 0.021633150056004524, + -0.08977677673101425, + 0.019836025312542915, + -0.05996270850300789, + 0.018898313865065575, + 0.06659442186355591, + -0.03094700537621975, + -0.024145323783159256, + -0.004966719076037407, + 0.007874074392020702, + 0.025607742369174957, + -0.009833501651883125, + 0.010826470330357552, + 0.03647336736321449, + 0.031657177954912186, + -0.0502031147480011, + -0.04727654159069061, + -0.0073457760736346245, + 0.01416382659226656, + 0.008097267709672451, + -0.04691597819328308, + 0.04063497483730316, + 0.013956339098513126, + 0.03496863692998886, + -0.06416527181863785, + 0.05542908236384392, + -0.048566997051239014, + -0.0034536600578576326, + 0.03957699239253998, + -2.0261481381567137e-08, + 0.07020657509565353, + -0.06990198791027069, + -0.06297346949577332, + 0.07699047774076462, + 0.049514152109622955, + -0.062025249004364014, + 0.017044441774487495, + -0.031125279143452644, + -0.011661973781883717, + 0.057800982147455215, + 0.01703202910721302, + 0.005661510396748781, + -0.0618942491710186, + 0.038980789482593536, + 0.02952422946691513, + 0.06766749173402786, + 0.03493042662739754, + -0.018974242731928825, + 0.004014789592474699, + 0.011192215606570244, + -0.05848485976457596, + 0.03813387081027031, + -0.04060785844922066, + -0.075237937271595, + -0.054414499551057816, + 0.019651062786579132, + -0.02831559255719185, + 0.0488317497074604, + 0.12245394289493561, + 0.04923255741596222, + 0.06730446964502335, + 0.038228102028369904, + -0.03340887650847435, + 0.04821844771504402, + -0.0019812975078821182, + -0.04201817885041237, + -0.054366450756788254, + -0.07793604582548141, + -0.026356268674135208, + 0.018836528062820435, + 0.001921102055348456, + 0.020237447693943977, + -0.04475121945142746, + -0.018773449584841728, + -0.025936350226402283, + 0.053194429725408554, + 0.09006685763597488, + -0.015039592981338501, + -0.004772760905325413, + -0.05850088968873024, + -0.06567917764186859, + 0.026235433295369148, + 0.07682128250598907, + -0.03405575454235077, + -0.0389542281627655, + 0.02435038797557354, + 0.07682469487190247, + -0.015645023435354233, + -0.008283048868179321, + 0.03578609973192215, + 0.08338510990142822, + 0.13343314826488495, + -0.01243335660547018, + 0.06380368769168854 + ], + "flag-bold||country,countries,finished,completed,flags": [ + 0.08928743749856949, + 0.05282609164714813, + -0.05185211822390556, + 0.005554351955652237, + 0.09334634989500046, + -0.06213727593421936, + 0.0781225711107254, + -0.10904660075902939, + -0.038974180817604065, + -0.020705755800008774, + 0.0006880747387185693, + -0.004036779515445232, + -0.03197723627090454, + 0.012350577861070633, + -0.04437148943543434, + 0.028859570622444153, + -0.026212017983198166, + -0.015369532629847527, + -0.006816640961915255, + -0.07643713057041168, + 0.06000100448727608, + 0.009045284241437912, + 0.0639008954167366, + 0.03306834399700165, + -0.01883130706846714, + 0.06660610437393188, + 0.0056888810358941555, + -0.007521762512624264, + 0.014819135889410973, + -0.028139229863882065, + -0.0534496046602726, + -0.009201358072459698, + -0.009163467213511467, + 0.002782252850010991, + 0.06333121657371521, + -0.010409071110188961, + -0.043954066932201385, + -0.029156822711229324, + 0.08348485827445984, + 0.013916745781898499, + 0.025061169639229774, + -0.08301983028650284, + 0.029083872213959694, + 0.0396529920399189, + -0.06888443231582642, + 0.0340757742524147, + -0.008543220348656178, + -0.006572343409061432, + 0.026267074048519135, + -0.004240805748850107, + 0.0962785854935646, + -0.04298778623342514, + -0.05108238384127617, + -0.07765641063451767, + 0.07565422356128693, + 0.03979860618710518, + -0.046896498650312424, + -0.06486637145280838, + -0.029317103326320648, + 0.018273457884788513, + -0.05428327992558479, + 0.06417211890220642, + -0.02542017214000225, + -0.009024064056575298, + 0.09654127061367035, + -0.03441309556365013, + 0.0001589409075677395, + 0.019938210025429726, + -0.04873383790254593, + 0.04290832206606865, + 0.0494350828230381, + -0.06207476183772087, + 0.008969863876700401, + 0.008978105150163174, + -0.07606979459524155, + 0.008632561191916466, + -0.009811833500862122, + 0.06236329302191734, + -0.05670401453971863, + -0.07010851800441742, + -0.03230580687522888, + -0.0554378405213356, + 0.02015739306807518, + 0.0128311263397336, + 0.07781997323036194, + 0.007071941625326872, + -0.08186022937297821, + -0.005584530532360077, + 0.02185755968093872, + -0.010611082427203655, + -0.03949476405978203, + 0.0141199491918087, + 0.06862758100032806, + 0.0664498582482338, + -0.07133915275335312, + 0.02914532832801342, + 0.10746052861213684, + 0.009913291782140732, + -0.06309192627668381, + 0.0787532702088356, + 0.056351542472839355, + 0.057608671486377716, + 0.01718582957983017, + 0.020078469067811966, + -0.04372018203139305, + -0.015588316135108471, + -0.07102707028388977, + 0.020219283178448677, + -0.01667717844247818, + 0.003220194950699806, + -0.028003407642245293, + 0.006152252666652203, + -0.022313786670565605, + -0.07230798900127411, + -0.02264280989766121, + 0.002975036157295108, + -0.01839052140712738, + -0.05973178520798683, + 0.09088089317083359, + 0.0320940800011158, + 0.04093177989125252, + -0.07281458377838135, + -0.07420532405376434, + -0.05986104905605316, + 0.03326615318655968, + 0.026564747095108032, + 0.07470021396875381, + -3.2528084984702485e-33, + 0.08030985295772552, + 0.05337138846516609, + 0.010886937379837036, + 0.09515173733234406, + -0.028678514063358307, + 0.017589125782251358, + -0.05012618005275726, + -0.06313665211200714, + -0.14686442911624908, + 0.040203340351581573, + 0.00881563313305378, + 0.01967809721827507, + -0.04203836992383003, + 0.05229293555021286, + -0.0014020095113664865, + -0.021931130439043045, + 0.05276002362370491, + -0.07610324770212173, + -0.1631053239107132, + 0.06151963025331497, + -0.031225161626935005, + 0.0272620040923357, + -0.027613874524831772, + 0.026308177039027214, + -0.024922547861933708, + -0.007620280142873526, + 0.005842330399900675, + -0.023714974522590637, + -0.03857516124844551, + 0.0368456169962883, + 0.0947515219449997, + -0.04467805102467537, + 0.014585730619728565, + -0.01339464820921421, + -0.04110775887966156, + 0.01763070560991764, + -0.059748221188783646, + -0.033058203756809235, + 0.02993268333375454, + 0.0677020475268364, + 0.007246915251016617, + -0.04674829542636871, + -0.05551275238394737, + 0.03261033818125725, + 0.027722518891096115, + 0.052469201385974884, + 0.0046351030468940735, + -0.037392254918813705, + 0.097031369805336, + 0.08654340356588364, + 0.059529080986976624, + -0.02962956763803959, + 0.0020082821138203144, + -0.06243991106748581, + 0.04649479687213898, + 0.02415095455944538, + -0.0007638208917342126, + 0.07337124645709991, + -0.011307583190500736, + -0.015837213024497032, + 0.02990165911614895, + -0.031126413494348526, + -0.003989752382040024, + 0.013391993008553982, + 0.02609008364379406, + 0.10769050568342209, + -0.007276287768036127, + 0.041337642818689346, + 0.050461411476135254, + -0.07087527215480804, + -0.014771325513720512, + -0.002481703646481037, + 0.09899581223726273, + 0.09119581431150436, + 0.03774531930685043, + 0.07194533199071884, + 0.0010843649506568909, + -0.011677894741296768, + 0.024101532995700836, + -0.02061700075864792, + -0.06996846199035645, + 0.007992186583578587, + -0.08643203973770142, + 0.006143080536276102, + 0.040169067680835724, + 0.0517737939953804, + 0.017919696867465973, + -0.06786080449819565, + -0.07140520960092545, + -0.02588246949017048, + -0.10707984864711761, + 0.06915559619665146, + 0.02664358727633953, + -0.08553598821163177, + -0.11311051994562149, + 1.0845120982591002e-33, + 0.07444752752780914, + -0.02306407503783703, + -0.04402069002389908, + -0.047857243567705154, + -0.01748979277908802, + -0.020602621138095856, + 0.021977294236421585, + -0.006025632377713919, + -0.06374543160200119, + 0.025878548622131348, + 0.03135049715638161, + -0.06801629066467285, + 0.04366055503487587, + 0.054980285465717316, + -0.05364561825990677, + 0.022080156952142715, + -0.026058724150061607, + 0.10549382120370865, + -0.04560468718409538, + 0.0699426606297493, + -0.025834329426288605, + -0.028393913060426712, + -0.028366349637508392, + 0.04484512284398079, + -0.10282237082719803, + -0.012471243739128113, + -0.014773968607187271, + -0.09779664129018784, + 0.013226544484496117, + -0.09127771854400635, + -0.015272221527993679, + -0.07782915234565735, + -0.026701204478740692, + 0.08413107693195343, + -0.047418609261512756, + 0.028125785291194916, + 0.022473054006695747, + -0.026647208258509636, + 0.024736547842621803, + 0.08005576580762863, + -0.09683112055063248, + -0.007992323487997055, + 0.008864752016961575, + 0.045122455805540085, + -0.08331278711557388, + -0.026802416890859604, + -0.08063841611146927, + -0.016470834612846375, + -0.08195001631975174, + -0.024517912417650223, + -0.023994823917746544, + 0.033902719616889954, + -0.006400251295417547, + 0.01719394326210022, + -0.028433002531528473, + -0.045461129397153854, + -0.058022450655698776, + -0.0013051031855866313, + 0.015099343843758106, + 0.03971068933606148, + -0.07102955132722855, + 0.01723630726337433, + 0.03301669657230377, + -0.0013844668865203857, + 0.07412869483232498, + -0.04789198562502861, + 0.04332968592643738, + 0.028539136052131653, + 0.07196024060249329, + 0.0016952918376773596, + 0.08143109083175659, + 0.022746533155441284, + -0.10916557163000107, + 0.02813585102558136, + 0.0661190003156662, + 0.03223584219813347, + 0.04184076935052872, + 0.05935164913535118, + -0.02453724853694439, + 0.012690845876932144, + -0.04339119791984558, + -0.06342548131942749, + -0.07419531792402267, + 0.04693646356463432, + -0.015437941066920757, + 0.05788390338420868, + -0.009341386146843433, + -0.018939757719635963, + 0.021218514069914818, + -0.008881643414497375, + -0.04578530043363571, + 0.08548109233379364, + 0.05015306919813156, + -0.05821428820490837, + -0.03821227326989174, + -1.808615657239443e-08, + 0.0011393226450309157, + -0.04137953370809555, + -0.06777922064065933, + 0.0054018148221075535, + 0.019240885972976685, + 0.06067131087183952, + 0.0493307001888752, + -0.08340516686439514, + -0.03016345389187336, + -0.020046314224600792, + 0.012732930481433868, + -0.028014086186885834, + -0.07723235338926315, + -0.07982839643955231, + -0.04223524034023285, + 0.05744275450706482, + -0.07220439612865448, + 0.15392698347568512, + 0.023529594764113426, + 0.03574281930923462, + -0.003256096737459302, + 0.09145069867372513, + 0.010316193103790283, + -0.06487784534692764, + 0.014964969828724861, + 0.03024797886610031, + -0.007987163960933685, + 0.021423809230327606, + 0.027889227494597435, + 0.04663688689470291, + 0.09967397898435593, + -0.011833757162094116, + 0.09073592722415924, + -0.026142071932554245, + -0.0807250440120697, + -0.04437253251671791, + 0.013368790037930012, + -0.04247785732150078, + 0.010120579972863197, + 0.048891082406044006, + 0.04113507270812988, + 0.05927840620279312, + -0.035850394517183304, + 0.016395632177591324, + 0.014670425094664097, + -0.017651475965976715, + 0.022820474579930305, + -0.007977492175996304, + -0.09354053437709808, + -0.09792443364858627, + -0.030947169288992882, + -0.005362052470445633, + -0.04927114397287369, + 0.04220723360776901, + -0.03319968655705452, + 0.003212959971278906, + 0.030598822981119156, + 0.04436351731419563, + 0.04461570456624031, + 0.06608404964208603, + 0.10121328383684158, + -0.012345841154456139, + -0.044581323862075806, + 0.015223300084471703 + ], + "flag-banner-bold||ribbon,country,countries,finished,completed,flags,swallowtail": [ + 0.07710958272218704, + 0.08509507775306702, + -0.020175302401185036, + -0.023321380838751793, + 0.04768896847963333, + -0.04102737456560135, + 0.08742630481719971, + -0.07800648361444473, + -0.01915796659886837, + -0.01251935213804245, + 0.015105296857655048, + -0.04509918391704559, + -0.038390882313251495, + 0.01663290336728096, + -0.03333830460906029, + 0.027575332671403885, + -0.01223060768097639, + -0.0153289083391428, + -0.017006434500217438, + -0.04272424802184105, + 0.05667181685566902, + 0.003924209624528885, + 0.05310169607400894, + 0.07440438866615295, + -0.0226464681327343, + 0.0696491152048111, + -0.039411723613739014, + -0.01614610105752945, + 0.0219778660684824, + -0.0387587808072567, + -0.03296425938606262, + -0.04271792992949486, + 0.014674186706542969, + 0.021723125129938126, + 0.06633319705724716, + 0.004080252256244421, + -0.005562624428421259, + -0.04014143347740173, + 0.09774909913539886, + 0.01753009855747223, + 0.02778575010597706, + -0.10413284599781036, + -0.007962062954902649, + 0.04557652398943901, + -0.019191721454262733, + 0.05570916458964348, + -0.028501788154244423, + 0.02148071490228176, + 0.006869026925414801, + 0.016952430829405785, + 0.06272648274898529, + -0.09675333648920059, + -0.06592489778995514, + -0.0847911536693573, + 0.05461115390062332, + 0.03387400880455971, + -0.03232176974415779, + -0.06850574165582657, + -0.010226302780210972, + 0.031523484736680984, + -0.0558268204331398, + 0.07406815141439438, + -0.05001126229763031, + 0.05085497722029686, + 0.045743390917778015, + -0.04794708639383316, + -0.016216112300753593, + 0.07073355466127396, + -0.042624581605196, + 0.043215297162532806, + 0.07089235633611679, + -0.07830371707677841, + -0.0057279495522379875, + -0.010274296626448631, + -0.05085141211748123, + -0.06863564252853394, + 0.0042261783964931965, + 0.07404805719852448, + -0.053832244127988815, + -0.06401292979717255, + -0.03062095120549202, + -0.02456391416490078, + 0.0018711533630266786, + 0.006144018843770027, + 0.08178850263357162, + 0.020660215988755226, + -0.06452760100364685, + 0.0014814368914812803, + 0.01839466579258442, + -0.010454284027218819, + -0.04701250046491623, + -0.00888024177402258, + 0.08875920623540878, + 0.04816676676273346, + -0.06665759533643723, + 0.026894498616456985, + 0.06478388607501984, + -0.011099036782979965, + -0.02712293341755867, + 0.10512638092041016, + 0.0360526479780674, + 0.0432167574763298, + 0.05318068340420723, + 0.030522091314196587, + -0.03190464526414871, + -0.000138358780532144, + -0.10576830804347992, + 0.016963040456175804, + 0.020517349243164062, + -0.01863744482398033, + -0.025188518688082695, + -0.019052790477871895, + -0.012793139554560184, + -0.06538167595863342, + -0.01046511810272932, + -0.031038783490657806, + -0.08099554479122162, + -0.06809967011213303, + 0.08168770372867584, + -0.00487165292724967, + 0.0356113463640213, + -0.07980461418628693, + -0.05165261775255203, + -0.09764368087053299, + 0.0209033340215683, + 0.04371507093310356, + 0.01430436410009861, + -4.067356655954998e-33, + 0.07663467526435852, + 0.03427150845527649, + 0.022009050473570824, + 0.08794108778238297, + -0.010930590331554413, + 0.02970867231488228, + -0.03776581957936287, + -0.098489910364151, + -0.148809552192688, + 0.055615462362766266, + 0.018510399386286736, + -0.029462719336152077, + -0.04941500350832939, + 0.09404827654361725, + 0.01897413097321987, + -0.04035589098930359, + 0.019663963466882706, + -0.048145540058612823, + -0.1309267282485962, + 0.06375040858983994, + -0.023238452151417732, + 0.01223418302834034, + -0.03239046409726143, + 0.025570206344127655, + -0.018662529066205025, + 0.00456217722967267, + 0.017303165048360825, + -0.031165461987257004, + -0.051514219492673874, + 0.04962239786982536, + 0.09499479830265045, + -0.039230234920978546, + 0.049901071935892105, + -0.04083840548992157, + -0.05443188548088074, + -0.02601245790719986, + -0.07375802844762802, + -0.07586006075143814, + 0.010133531875908375, + 0.05881490558385849, + -0.010917939245700836, + -0.06512472778558731, + -0.08975476771593094, + 0.06125078350305557, + -0.0018833597423508763, + 0.025722533464431763, + 0.028114642947912216, + -0.019263973459601402, + 0.12559984624385834, + 0.04920881986618042, + 0.07091213017702103, + -0.03708925098180771, + 0.025607170537114143, + -0.06896170973777771, + 0.019907871261239052, + 0.03447268530726433, + -0.020645884796977043, + 0.07203567028045654, + -0.04340074583888054, + -0.053198300302028656, + 0.013658531941473484, + -0.07986068725585938, + 0.006591026205569506, + 0.0080109853297472, + 0.04246513172984123, + 0.1098683774471283, + -0.011291198432445526, + 0.04180515184998512, + 0.07381246984004974, + -0.06292098760604858, + -0.038935862481594086, + 0.02213519811630249, + 0.06316383928060532, + 0.054488714784383774, + 0.04252738878130913, + 0.0527396984398365, + 0.036822423338890076, + -0.0018544918857514858, + 0.04035143554210663, + 0.024184247478842735, + -0.10681262612342834, + -0.006719793193042278, + -0.08345818519592285, + -0.004951691720634699, + 0.05962288752198219, + 0.06015993282198906, + 0.05498848482966423, + -0.09302103519439697, + -0.04795581474900246, + -0.013973980210721493, + -0.10909709334373474, + 0.0836092010140419, + 0.021324798464775085, + -0.05834944546222687, + -0.0970412865281105, + 1.50490019401734e-33, + 0.09264284372329712, + -0.010863314382731915, + -0.0299761351197958, + -0.038251668214797974, + -0.0021198964677751064, + 0.03374107927083969, + 0.035388849675655365, + 0.006166442297399044, + -0.09271062910556793, + 0.033134352415800095, + 0.026463618502020836, + -0.008364922367036343, + 0.004690336994826794, + 0.044511307030916214, + -0.06207922846078873, + 0.0280293021351099, + 0.027903171256184578, + 0.07493947446346283, + -0.048713091760873795, + 0.07563302665948868, + 0.0066658188588917255, + -0.023556696251034737, + -0.026420852169394493, + 0.01612599566578865, + -0.1074770912528038, + 0.008746497333049774, + 0.0005234501441009343, + -0.11366190016269684, + 0.06596538424491882, + -0.09268245100975037, + 0.011762959882616997, + -0.038377001881599426, + -0.04190303012728691, + 0.04665481671690941, + -0.047065336257219315, + 0.007202696520835161, + 0.05637436732649803, + -0.02895333059132099, + -0.018270334228873253, + 0.06112552806735039, + -0.06820724904537201, + 0.026752611622214317, + 0.06090090796351433, + 0.056351419538259506, + -0.06020160764455795, + -0.026857879012823105, + -0.09186037629842758, + 0.00388111243955791, + -0.12306345254182816, + -0.011995879001915455, + -0.034861013293266296, + 0.010941103100776672, + 0.0003040919254999608, + 0.045209191739559174, + -0.035576000809669495, + -0.0388653464615345, + -0.06487642228603363, + -0.004752424079924822, + -0.005239363759756088, + -0.0039383722469210625, + -0.06792033463716507, + 0.01816638559103012, + 0.017276499420404434, + 0.000961572804953903, + 0.06841038167476654, + -0.03623967617750168, + 0.021585028618574142, + 0.0391562320291996, + -0.00294749834574759, + 0.011934145353734493, + 0.04812351614236832, + 0.015688668936491013, + -0.08697173744440079, + -0.006388867739588022, + 0.06917007267475128, + 0.015448798425495625, + 0.02637227065861225, + 0.030875014141201973, + -0.014734804630279541, + 0.013237412087619305, + -0.03232309967279434, + -0.03512874245643616, + -0.07579062134027481, + 0.007678346708416939, + -0.023983042687177658, + 0.003348284400999546, + -0.014829603023827076, + -0.018739568069577217, + 0.025404788553714752, + 0.01841174066066742, + -0.06893904507160187, + 0.09381651133298874, + 0.049179915338754654, + -0.006614332087337971, + -0.0002450745669193566, + -2.300157930790192e-08, + -0.0024267984554171562, + -0.017623305320739746, + -0.037495411932468414, + -0.03057112731039524, + 0.00637474749237299, + 0.02016671560704708, + 0.015529327094554901, + -0.054757244884967804, + -0.04631783813238144, + -0.040808580815792084, + 0.05077888071537018, + -0.004047981929033995, + -0.10155895352363586, + -0.07495222985744476, + -0.05750017985701561, + 0.03148466721177101, + -0.09164256602525711, + 0.12566116452217102, + 0.017355475574731827, + -0.02139020338654518, + -0.0292349886149168, + 0.06981124728918076, + 0.027040623128414154, + -0.060648009181022644, + -0.04716215655207634, + 0.035974711179733276, + -0.00845291092991829, + 0.04536278918385506, + 0.006065207067877054, + 0.00735256215557456, + 0.07201313227415085, + 0.05120128020644188, + 0.0843743085861206, + -0.05265926197171211, + -0.06175082549452782, + -0.03576835244894028, + -0.010424313135445118, + -0.05648401752114296, + 0.020457178354263306, + 0.03736555203795433, + 0.07499272376298904, + 0.030811792239546776, + -0.005810972303152084, + 0.03235122561454773, + 0.0028648297302424908, + 0.005867581348866224, + 0.025708423927426338, + 0.025707313790917397, + -0.06823553144931793, + -0.08612927049398422, + -0.004388190805912018, + -0.007840711623430252, + -0.054913267493247986, + 0.05849653109908104, + -0.04084550216794014, + 0.04569733515381813, + 0.06945516169071198, + 0.056069038808345795, + 0.08208887279033661, + 0.07412058860063553, + 0.12786009907722473, + -0.02439465932548046, + -0.009729520417749882, + 0.009358028881251812 + ], + "flag-banner-fold-bold||*new*,ribbon,country,countries,finished,completed,flags,swallowtail": [ + 0.05144254490733147, + 0.06877575814723969, + -0.017373189330101013, + -0.009311407804489136, + 0.04431518539786339, + -0.024803269654512405, + 0.08121022582054138, + -0.06964018940925598, + -0.03642832115292549, + 0.004665568936616182, + 0.01081489771604538, + -0.04223642125725746, + -0.044218264520168304, + 0.0005304926889948547, + -0.02348121628165245, + 0.05111807957291603, + -0.04535149037837982, + -0.009718633256852627, + -0.034863751381635666, + -0.04078708216547966, + 0.07748686522245407, + -0.017658747732639313, + 0.024546805769205093, + 0.06171942502260208, + -0.013997352682054043, + 0.08734315633773804, + -0.05277237296104431, + -0.02037505805492401, + 0.03785442188382149, + -0.05459243431687355, + -0.02982918545603752, + -0.01775343529880047, + 0.036566656082868576, + 0.02580801025032997, + 0.08145162463188171, + -0.001520007150247693, + -0.005408302880823612, + -0.012198788113892078, + 0.07665860652923584, + 0.021800410002470016, + 0.012769900262355804, + -0.10974524170160294, + -0.016369808465242386, + 0.046031199395656586, + -0.029679127037525177, + 0.055180713534355164, + -0.044838715344667435, + 0.030016005039215088, + 0.015558306127786636, + 0.03263203799724579, + 0.06478670984506607, + -0.09148059785366058, + -0.08032127469778061, + -0.07907213270664215, + 0.06109103932976723, + 0.028304297477006912, + -0.03725961968302727, + -0.08602064847946167, + -0.023200541734695435, + 0.04590481147170067, + -0.03315480798482895, + 0.07690274715423584, + -0.045128267258405685, + 0.05730777606368065, + 0.04130706563591957, + -0.04795491322875023, + -0.043646737933158875, + 0.04173295572400093, + -0.04017340764403343, + 0.034251004457473755, + 0.04360751435160637, + -0.05877912789583206, + -0.013979852199554443, + -0.00987944658845663, + -0.05274955555796623, + -0.07971876859664917, + 0.012300402857363224, + 0.04432239383459091, + -0.05929948389530182, + -0.05774813890457153, + -0.024520711973309517, + -0.005485272966325283, + -0.006876218132674694, + 0.014432543888688087, + 0.06605514883995056, + 0.029092472046613693, + -0.06804487854242325, + -0.008261360228061676, + 0.007371310610324144, + -0.0041121537797153, + -0.0527258925139904, + -0.026445375755429268, + 0.08100201934576035, + 0.06157044693827629, + -0.10387930274009705, + 0.037368327379226685, + 0.06118890270590782, + -0.01944831572473049, + 0.002368053188547492, + 0.11739180982112885, + 0.023422488942742348, + 0.052043043076992035, + 0.07158233970403671, + 0.027474911883473396, + -0.051441941410303116, + -0.014808787032961845, + -0.09149227291345596, + 0.003426517127081752, + -0.0011094948276877403, + 0.007034961599856615, + -0.007978202775120735, + -0.01980791985988617, + -0.009384372271597385, + -0.07786010950803757, + -0.02072768844664097, + -0.007675061468034983, + -0.09144117683172226, + -0.05134020000696182, + 0.07445011287927628, + 0.024094626307487488, + 0.05161360651254654, + -0.06465881317853928, + -0.047315552830696106, + -0.0918857604265213, + -0.00742505444213748, + 0.03563379496335983, + -0.014574235305190086, + -3.1976425485861585e-33, + 0.07180625200271606, + 0.04600412771105766, + 0.0012096728896722198, + 0.11417708545923233, + 0.004084290936589241, + 0.024275248870253563, + -0.055249087512493134, + -0.09192553907632828, + -0.1551688015460968, + 0.07207413762807846, + 0.030436066910624504, + -0.009350543841719627, + -0.03967466577887535, + 0.08531039953231812, + 0.025787513703107834, + -0.04860293120145798, + 0.025624902918934822, + -0.029555674642324448, + -0.11425501108169556, + 0.023529348894953728, + -0.04805480316281319, + 0.04491053894162178, + 0.003325834171846509, + 0.0263080932199955, + -0.00903559010475874, + -0.0030426413286477327, + 0.0205128975212574, + -0.040133681148290634, + -0.058714840561151505, + 0.04975970834493637, + 0.0756436213850975, + -0.03516566380858421, + 0.04599211737513542, + -0.02625739760696888, + -0.03939230740070343, + 0.007950440980494022, + -0.07521454989910126, + -0.07092936336994171, + 0.0029926742427051067, + 0.07419801503419876, + -0.036971960216760635, + -0.07992345094680786, + -0.08332348614931107, + 0.06357065588235855, + 0.016915418207645416, + 0.005378491245210171, + 0.03681129217147827, + 0.0003015875699929893, + 0.10642220824956894, + 0.04114532098174095, + 0.07371658831834793, + -0.026780305430293083, + -0.002733837114647031, + -0.07000990957021713, + 0.0021579721942543983, + 0.017405766993761063, + -0.005840266589075327, + 0.05787593871355057, + -0.02332107536494732, + -0.03594215214252472, + 0.02680848352611065, + -0.04969492182135582, + -0.002691880566999316, + 0.013664034195244312, + 0.037569597363471985, + 0.09418873488903046, + -0.006051450036466122, + 0.019204875454306602, + 0.06224697083234787, + -0.053335148841142654, + -0.06055009365081787, + 0.030126893892884254, + 0.044804491102695465, + 0.0704231858253479, + 0.02850387990474701, + 0.04290865734219551, + 0.05102002993226051, + -0.008216854184865952, + 0.03868317976593971, + 0.011761230416595936, + -0.08742441982030869, + 0.005288692656904459, + -0.06416325271129608, + 0.0036358109209686518, + 0.051608629524707794, + 0.024278154596686363, + 0.06282772868871689, + -0.0838240534067154, + -0.049980416893959045, + -0.049547333270311356, + -0.1338023692369461, + 0.06924952566623688, + 0.025111760944128036, + -0.09559058398008347, + -0.08838210254907608, + 3.1406594038218423e-34, + 0.07729608565568924, + -0.02708512730896473, + -0.03263130784034729, + -0.04367547854781151, + -0.02670438587665558, + 0.027130285277962685, + 0.03904081881046295, + 0.013413656502962112, + -0.0830247774720192, + 0.028637811541557312, + 0.02653706632554531, + 0.005483179818838835, + 0.026124319061636925, + 0.033711988478899, + -0.0391106940805912, + 0.0332215316593647, + 0.02389208972454071, + 0.08610139787197113, + -0.06635504961013794, + 0.09888406097888947, + 0.011508772149682045, + -0.009607008658349514, + -0.06188345327973366, + 0.029249537736177444, + -0.09984257817268372, + -0.009131543338298798, + 0.01238603051751852, + -0.10100692510604858, + 0.10050757974386215, + -0.09367601573467255, + 0.01211689691990614, + -0.08027232438325882, + -0.0368945337831974, + 0.05437609553337097, + -0.056515246629714966, + -0.004247615579515696, + 0.04613381251692772, + -0.043029189109802246, + -0.020648248493671417, + 0.06416429579257965, + -0.07976830750703812, + 0.015684131532907486, + 0.05632644519209862, + 0.05643855035305023, + -0.06380606442689896, + -0.04504205659031868, + -0.11032811552286148, + 0.01769649237394333, + -0.13090592622756958, + -0.01299100462347269, + -0.03642094135284424, + -0.008087779395282269, + -0.024328231811523438, + 0.01592254266142845, + -0.02893449179828167, + -0.0010057671461254358, + -0.06704389303922653, + -0.009305951185524464, + -0.0014028464211151004, + 0.009861379861831665, + -0.053294748067855835, + 0.01565125212073326, + 0.0031616147607564926, + 0.00994886364787817, + 0.07948525249958038, + -0.03915845975279808, + 0.004821963142603636, + 0.016452332958579063, + -0.041524942964315414, + 0.010709576308727264, + 0.04588755965232849, + 0.004226428922265768, + -0.11368304491043091, + -0.04089220240712166, + 0.05975508317351341, + 0.021531876176595688, + 0.02077447436749935, + 0.028006382286548615, + -0.017034105956554413, + 0.0004497952468227595, + -0.022629352286458015, + -0.033555757254362106, + -0.052877265959978104, + 0.013319654390215874, + -0.021285265684127808, + 0.015874473378062248, + -0.007603797595947981, + 0.0006546196527779102, + 0.042733464390039444, + 0.0259380042552948, + -0.054129838943481445, + 0.08145454525947571, + 0.07484866678714752, + 0.03749701753258705, + -0.013200326822698116, + -2.5525759284050764e-08, + -0.0078166788443923, + -0.024637585505843163, + -0.019789939746260643, + -0.012714958749711514, + 0.012030141428112984, + 0.021117424592375755, + 0.018487516790628433, + -0.05794959515333176, + -0.044858649373054504, + -0.03896646201610565, + 0.046010956168174744, + 0.005266352090984583, + -0.10343229025602341, + -0.05058059096336365, + -0.018862692639231682, + 0.028346428647637367, + -0.08108691871166229, + 0.14575529098510742, + 0.0059898123145103455, + -0.02596665546298027, + -0.030514616519212723, + 0.06844806671142578, + 0.036062199622392654, + -0.03991490602493286, + -0.04367419704794884, + 0.016413308680057526, + -0.019999288022518158, + 0.046131908893585205, + 0.010111127980053425, + 0.0041430192068219185, + 0.0634324848651886, + 0.06673970073461533, + 0.06053484231233597, + -0.06430995464324951, + -0.08007758855819702, + -0.019676337018609047, + -0.02402266301214695, + -0.056726954877376556, + 0.030303820967674255, + 0.04564770683646202, + 0.0915297195315361, + 0.04968901351094246, + -0.032101549208164215, + 0.04676758125424385, + -0.01238442026078701, + -0.012216181494295597, + 0.026436129584908485, + 0.009608205407857895, + -0.06069906800985336, + -0.11174459010362625, + -0.008744815364480019, + -0.0009706993587315083, + -0.04167686775326729, + 0.03742285072803497, + -0.020218700170516968, + 0.08632098138332367, + 0.06510920077562332, + 0.07223550230264664, + 0.09148585051298141, + 0.05160590261220932, + 0.09980705380439758, + -0.020093727856874466, + -0.0036451646592468023, + 0.017095694318413734 + ], + "flag-checkered-bold||flags,race,racing,finish line": [ + 0.04694848507642746, + 0.04856819286942482, + -0.0923430398106575, + 0.019723638892173767, + 0.07163570821285248, + 0.031270649284124374, + 0.06618444621562958, + -0.06642235815525055, + -0.03918718174099922, + -0.0390147939324379, + -0.03248511254787445, + -0.028935924172401428, + -0.06742121279239655, + -0.024822041392326355, + -0.06473993510007858, + 0.014857374131679535, + -0.012760461308062077, + -0.014652729965746403, + -0.046736668795347214, + 0.0065802824683487415, + 0.019473817199468613, + -0.021622152999043465, + 0.047443367540836334, + 0.06301485002040863, + -0.08504509925842285, + 0.07744422554969788, + -0.043118666857481, + 0.04015538841485977, + -0.021752700209617615, + -0.09828502684831619, + -0.06549352407455444, + -0.011495663784444332, + 0.01610352098941803, + 0.03653615713119507, + 0.030661867931485176, + -0.07424700260162354, + -0.034724585711956024, + -0.025276022031903267, + 0.002313352655619383, + 0.01395379938185215, + -0.0032740915194153786, + -0.1426834762096405, + -0.06765617430210114, + 0.020927345380187035, + 0.0020636855624616146, + 0.07294028997421265, + -0.026823224499821663, + -0.02152160555124283, + 0.04279631748795509, + -0.03885430097579956, + 0.03942427411675453, + -0.03806139901280403, + -0.013057846575975418, + -0.018698981031775475, + 0.04401284083724022, + 0.05274774134159088, + -0.06864318996667862, + -0.055002856999635696, + 0.004787145648151636, + -0.0096479132771492, + 0.004946297034621239, + 0.05719638243317604, + -0.025448983535170555, + 0.03059370443224907, + 0.003563840640708804, + -0.0325591117143631, + -0.06761341542005539, + 0.011462514288723469, + 0.006977742072194815, + 0.09323063492774963, + 0.048473916947841644, + -0.027871498838067055, + 0.032540831714868546, + -0.037170346826314926, + -0.048264890909194946, + 0.035582978278398514, + 0.014220037497580051, + -0.014314861036837101, + -0.04822106286883354, + -0.10944803804159164, + -0.1107000932097435, + -0.11049164086580276, + -0.01550030056387186, + 0.022203758358955383, + 0.07905247807502747, + 0.02799176052212715, + -0.045711249113082886, + -0.005627019330859184, + 0.004238720051944256, + 0.006574293598532677, + -0.08924069255590439, + 0.03625420480966568, + 0.048966363072395325, + 0.008638148196041584, + -0.04469558224081993, + 0.028499122709035873, + 0.011023555882275105, + 0.00798292551189661, + 0.04412161558866501, + 0.07639562338590622, + 0.03174065425992012, + 0.035360414534807205, + 0.006888349540531635, + 0.04246818646788597, + -0.018034206703305244, + -0.010062160901725292, + -0.012758116237819195, + 0.06163288280367851, + -0.012821268290281296, + -0.014437765814363956, + 0.09689031541347504, + -0.017384376376867294, + 0.053467195481061935, + -0.012038798071444035, + -0.03286723047494888, + 0.02009451389312744, + -0.1054043397307396, + 0.024671729654073715, + 0.09517230838537216, + 0.08384539186954498, + -0.021288597956299782, + -0.0800376832485199, + -0.105728879570961, + -0.0669713243842125, + 0.08118250966072083, + -0.038461584597826004, + 0.11060504615306854, + -2.724155628126849e-33, + 0.05703001841902733, + 0.0009521889733150601, + 0.0012848469195887446, + 0.04468352720141411, + 0.02535410411655903, + 0.04893472045660019, + -0.06475420296192169, + -0.06142975389957428, + -0.13630597293376923, + 0.0921226292848587, + 0.021127769723534584, + 0.02365506812930107, + -0.04224288463592529, + 0.023718934506177902, + 0.06661603599786758, + -0.01659429632127285, + -0.04767067730426788, + -0.08797407895326614, + -0.17453165352344513, + -0.011344351805746555, + -0.03424208238720894, + 0.03865593299269676, + -0.02985035628080368, + -0.00542545598000288, + -0.019144361838698387, + 0.015103836543858051, + 0.0039587197825312614, + -0.02685803547501564, + -0.01950354501605034, + 0.03833959996700287, + -0.01607823371887207, + -0.05137788504362106, + 0.029865920543670654, + 0.05861879140138626, + -0.030187107622623444, + 0.04596993699669838, + -0.036467861384153366, + -0.014472116716206074, + 0.0009124481584876776, + 0.06267530471086502, + -0.01798783428966999, + -0.048446230590343475, + -0.04860807955265045, + -0.02486448921263218, + -0.004874826408922672, + 0.08906114101409912, + 0.05382762849330902, + 0.05063636600971222, + 0.057607606053352356, + 0.07622593641281128, + 0.03131849691271782, + -0.04809387028217316, + 0.06707298010587692, + -0.01681901514530182, + -0.018598729744553566, + 0.009823327884078026, + 0.031493790447711945, + 0.06240420043468475, + -0.09595049917697906, + 0.04666450619697571, + -0.014239166863262653, + 0.029161447659134865, + -0.026155367493629456, + -0.018641170114278793, + -0.028721315786242485, + 0.08850279450416565, + -0.05228286609053612, + 0.01481817476451397, + 0.04201168566942215, + -0.02599940076470375, + -0.041619669646024704, + -0.04401698336005211, + 0.08055150508880615, + 0.08429210633039474, + 0.04937615990638733, + 0.03909290209412575, + 0.01015661284327507, + -0.0019852539990097284, + 0.007585059851408005, + -0.0649920180439949, + -0.00484939431771636, + 0.047642406076192856, + -0.07947312295436859, + 0.021082086488604546, + 0.03743685781955719, + 0.01352705992758274, + 0.02574952132999897, + -0.05681859701871872, + 2.2281314159044996e-05, + 0.0061933607794344425, + -0.062133993953466415, + 0.034747105091810226, + 0.05151044577360153, + -0.06850849092006683, + -0.11411264538764954, + 2.2196940756608244e-35, + 0.0405707061290741, + -0.02718566730618477, + 0.02364802174270153, + 0.029604487121105194, + 0.004626834765076637, + 0.02638537809252739, + 0.066336989402771, + -0.03004131093621254, + 0.007130557671189308, + 0.041534870862960815, + 0.0240829735994339, + -0.03356311097741127, + 0.05244413763284683, + 0.026352088898420334, + -0.03882812336087227, + -0.03871317207813263, + -0.013612627051770687, + 0.10356389731168747, + -0.06189202889800072, + 0.042349331080913544, + 0.027075251564383507, + 0.007308135740458965, + -0.008709713816642761, + 0.028090810403227806, + -0.07731673121452332, + 0.015197633765637875, + 0.032341405749320984, + -0.05631453916430473, + -0.02380530536174774, + -0.04406989738345146, + 0.010479387827217579, + -0.050121404230594635, + 0.00455820607021451, + 0.037849005311727524, + -0.008679941296577454, + 0.04350645840167999, + 0.026530109345912933, + -0.007353995461016893, + -0.02079351246356964, + 0.05203332379460335, + -0.0727510154247284, + -0.014610983431339264, + 0.07588853687047958, + 0.04690472036600113, + -0.03064873069524765, + -0.009420590475201607, + -0.07142182439565659, + -0.0021849023178219795, + -0.14240987598896027, + 0.07861898094415665, + -0.04956967383623123, + 0.01644507609307766, + -0.03225500509142876, + 0.08242455869913101, + -0.051923718303442, + -0.046571362763643265, + -0.027128461748361588, + -0.05944737792015076, + -0.06165754050016403, + 0.1246226504445076, + 0.01682550646364689, + -0.014498654752969742, + 0.00016827079525683075, + 0.030559109523892403, + 0.08678781241178513, + -0.051599860191345215, + 0.009009319357573986, + -0.06248568743467331, + 0.048493169248104095, + 0.010244132950901985, + 0.04211297631263733, + -0.02145089954137802, + -0.08142425864934921, + 0.018745724111795425, + 0.013809245079755783, + 0.006773920729756355, + -0.007623579353094101, + 0.08986572921276093, + -0.014795657247304916, + 0.038579683750867844, + -0.04450594633817673, + -0.09177606552839279, + 0.04568810388445854, + 0.07529294490814209, + -0.023816538974642754, + 0.07912319153547287, + -0.012581270188093185, + 0.00752901379019022, + 0.01825251244008541, + -0.017041858285665512, + 0.03242458403110504, + 0.07346100360155106, + 0.11303960531949997, + -0.007237804587930441, + -0.10618370771408081, + -1.880504996165655e-08, + -0.01565045677125454, + -0.015999050810933113, + -0.03253791108727455, + 0.002155379159376025, + 0.06940710544586182, + 0.055019866675138474, + 0.018421465530991554, + -0.0753198117017746, + -0.07648617029190063, + -0.015026316978037357, + 0.06901958584785461, + -0.006442899815738201, + -0.06072625890374184, + -0.03855916112661362, + -0.012207350693643093, + 0.03081803023815155, + -0.10877666622400284, + 0.05553681030869484, + -0.02425437606871128, + 0.024751022458076477, + 0.0050225770100951195, + 0.07289010286331177, + -0.003118753433227539, + 0.006363199092447758, + 0.021128401160240173, + -0.0027127848006784916, + -0.02144707180559635, + 0.05346705764532089, + 0.013191384263336658, + 0.054138850420713425, + 0.06907043606042862, + 0.04744480922818184, + 0.07497310638427734, + -0.04640663042664528, + -0.03944675624370575, + -0.008070253767073154, + 0.005617890972644091, + 0.07953070849180222, + 0.055016253143548965, + 0.07125363498926163, + -0.007735739927738905, + -0.01674525998532772, + -0.10418953746557236, + 0.011810067109763622, + 0.018161047250032425, + -0.0014247865183278918, + -0.030523767694830894, + 0.00023042151588015258, + -0.10740254819393158, + -0.187330424785614, + 0.005973647814244032, + -0.03872682526707649, + -0.04637574777007103, + 0.03689265623688698, + -0.011810184456408024, + -0.0027019705157727003, + -0.017570188269019127, + 0.08270842581987381, + 0.0025402356404811144, + 0.039162904024124146, + 0.08172009885311127, + 0.009215258993208408, + -0.013983639888465405, + -0.007801204454153776 + ], + "flag-pennant-bold||flags,race,sports,team": [ + 0.02447744645178318, + 0.11799544841051102, + -0.07478677481412888, + -0.019119881093502045, + 0.055579908192157745, + 0.048501331359148026, + 0.04736243188381195, + -0.06539034098386765, + 0.012663048692047596, + -0.0014833707828074694, + -0.0039716074243187904, + -0.04729924723505974, + -0.04792984202504158, + -0.029843386262655258, + -0.02041625790297985, + 0.03306204825639725, + -0.017489811405539513, + -0.001324920100159943, + -0.004994562361389399, + -0.014151041395962238, + 0.03697092458605766, + -0.026674626395106316, + -0.012589899823069572, + 0.028510162606835365, + -0.016302339732646942, + 0.07610845565795898, + -0.05018307641148567, + 0.0800299346446991, + -0.027397744357585907, + -0.06625019758939743, + -0.07134310156106949, + 0.028337379917502403, + 0.034436196088790894, + 0.0645713359117508, + 0.021280089393258095, + -0.05228859931230545, + -0.010016698390245438, + 0.004722888581454754, + 0.06993617117404938, + 0.08701418340206146, + 0.01668628118932247, + -0.08569157868623734, + -0.03592279925942421, + 0.0690385103225708, + -0.07974447309970856, + 0.05175430327653885, + -0.0031627824064344168, + 0.014259278774261475, + 0.017007427290081978, + -0.032572679221630096, + 0.06265255063772202, + 0.004009713884443045, + -0.04445648938417435, + -0.011794115416705608, + 0.11447769403457642, + 0.027541950345039368, + -0.07833126932382584, + -0.03696541115641594, + -0.019814925268292427, + 0.034831009805202484, + 0.026103312149643898, + 0.06348251551389694, + -0.026374954730272293, + 0.047172222286462784, + -0.011959914118051529, + -0.0883304700255394, + -0.051587339490652084, + 0.0574302077293396, + -0.03016149066388607, + 0.00711445277556777, + 0.06894801557064056, + -0.034570448100566864, + -0.019593767821788788, + -0.050723690539598465, + -0.020369617268443108, + 0.06439544260501862, + 0.00221418309956789, + 0.004788356367498636, + -0.05225559324026108, + -0.13045944273471832, + -0.07304792106151581, + -0.07003356516361237, + -0.03331848233938217, + 0.058305755257606506, + 0.07150492817163467, + 0.035003453493118286, + -0.08838476240634918, + 0.04549337178468704, + -0.03621596843004227, + 0.01502548810094595, + -0.10621896386146545, + -0.006225289776921272, + 0.05146981030702591, + 0.00562171870842576, + -0.07685230672359467, + 0.07290589064359665, + 0.03799053281545639, + -0.05932127311825752, + -0.008199225179851055, + 0.09683089703321457, + 0.051384422928094864, + 0.021750129759311676, + -0.009140281938016415, + 0.014668487943708897, + -0.0019435846479609609, + -0.017072195187211037, + -0.07758929580450058, + -0.003064867341890931, + -0.0268434789031744, + 0.01339950505644083, + 0.04359511286020279, + 0.020868070423603058, + -0.09983932226896286, + 0.002161263022571802, + -0.08007954061031342, + -0.022389229387044907, + -0.05199814587831497, + -0.03157615289092064, + 0.07241885364055634, + 0.024977225810289383, + 0.010056025348603725, + -0.04252423346042633, + -0.09351156651973724, + -0.009907558560371399, + 0.03766844421625137, + 0.007218432612717152, + 0.06963995099067688, + -5.1867303350751374e-33, + 0.04101189970970154, + 0.03420574590563774, + -0.006241237744688988, + 0.10123376548290253, + -0.010232114233076572, + 0.02450721524655819, + -0.007959872484207153, + -0.04633185267448425, + -0.12022998929023743, + 0.04896936193108559, + 0.0019524876261129975, + 0.06685354560613632, + -0.0006588065880350769, + 0.01673264242708683, + 0.05831025540828705, + -0.0083139818161726, + -0.07054208219051361, + -0.12382028251886368, + -0.15739905834197998, + -0.011977781541645527, + -0.06359564512968063, + 0.036645229905843735, + -0.012756605632603168, + -0.018244899809360504, + -0.08468063175678253, + -0.04570428282022476, + -0.00661836564540863, + -0.06077507510781288, + -0.015952829271554947, + 0.04996234178543091, + 0.06836926937103271, + -0.04109877720475197, + 0.052075885236263275, + 0.01596403680741787, + 0.008268800564110279, + 0.016727717593312263, + -0.02248169668018818, + -0.04429400712251663, + -0.0046999515034258366, + 0.05379781126976013, + -0.030864695087075233, + -0.05056438222527504, + -0.06220347061753273, + 0.04438439756631851, + 0.0352158285677433, + 0.12759935855865479, + 0.020597754046320915, + -0.012934315018355846, + 0.07835818082094193, + 0.037429455667734146, + 0.10069651901721954, + -0.08536943793296814, + 0.04202019050717354, + -0.03833054378628731, + -0.0028239700477570295, + 0.0025929221883416176, + 0.011127375066280365, + 0.03018467128276825, + -0.06136046350002289, + 0.010251292958855629, + -0.007106510456651449, + 0.004960762802511454, + -0.015527132898569107, + -0.013940947130322456, + 0.0052634174935519695, + 0.09821946918964386, + -0.006254739128053188, + 0.017764510586857796, + 0.0210270918905735, + -0.0601251982152462, + 0.04656248539686203, + 0.009856411255896091, + 0.03580620884895325, + 0.03582024201750755, + 0.01758992113173008, + 0.10447520762681961, + 0.0495150052011013, + 0.05054323375225067, + -0.017344661056995392, + 0.01652083918452263, + -0.08185713738203049, + 0.031328003853559494, + -0.05962066724896431, + -0.00697763916105032, + 0.022008316591382027, + 0.008046667091548443, + 0.04923767223954201, + -0.005352333188056946, + -0.05839206278324127, + 0.009134202264249325, + -0.023940546438097954, + 0.06463762372732162, + 0.04914943873882294, + -0.08797428756952286, + -0.13110068440437317, + 1.3417604962354151e-33, + -0.013765129260718822, + -0.045399121940135956, + 0.015341738238930702, + -0.08305549621582031, + 0.03272181376814842, + 0.006968488451093435, + 0.053649596869945526, + 0.012730501592159271, + -0.05354347079992294, + 0.005274622701108456, + -0.02136232517659664, + -0.034928031265735626, + -0.01950710453093052, + 0.031213965266942978, + -0.047562066465616226, + -0.01712825708091259, + -0.03980512171983719, + 0.1364830881357193, + -0.10845620930194855, + 0.0655815377831459, + 0.006200999952852726, + 0.03575718402862549, + -0.04294783994555473, + 0.08052059262990952, + -0.08380734920501709, + 0.0005025901482440531, + 0.009351994842290878, + -0.07672733068466187, + -0.009154104627668858, + -0.036877911537885666, + 0.012869670055806637, + -0.07973181456327438, + 0.00024461690918542445, + 0.049195386469364166, + -0.019212478771805763, + 0.09759734570980072, + 0.01871761865913868, + -0.043969642370939255, + -0.0023724392522126436, + 0.020348750054836273, + -0.09298241138458252, + -0.02275054156780243, + 0.010690861381590366, + 0.05383872985839844, + -0.020644694566726685, + -0.017613958567380905, + -0.09523576498031616, + -0.010748499073088169, + -0.10195603966712952, + 0.11193911731243134, + -0.03669966757297516, + 0.04589463025331497, + -0.03562476485967636, + 0.06431570649147034, + -0.028435399755835533, + -0.027816545218229294, + -0.07209444791078568, + -0.025706805288791656, + -0.002723813522607088, + 0.038627658039331436, + -0.03449241816997528, + 0.029665211215615273, + -0.05334443598985672, + 0.0688818171620369, + 0.051419854164123535, + -0.029543355107307434, + 0.010773575864732265, + -0.07260385900735855, + -0.015316518023610115, + 0.026862582191824913, + -0.004753141198307276, + 0.009740795008838177, + -0.093362957239151, + -0.025857096537947655, + 0.004023449961096048, + 0.028616447001695633, + -0.001287613995373249, + 0.10687536001205444, + -0.03142239898443222, + 0.08941435068845749, + -0.053074900060892105, + -0.020294683054089546, + -0.03931600973010063, + 0.08728508651256561, + -0.009634571149945259, + 0.018521854653954506, + 0.032000575214624405, + 0.011611677706241608, + 0.027677124366164207, + 0.023520633578300476, + 0.032442446798086166, + 0.07507776468992233, + 0.06599301844835281, + -0.020318487659096718, + -0.006798548623919487, + -1.8450867500519053e-08, + 0.03432214632630348, + 0.0028581423684954643, + -0.04437781870365143, + -0.001661761780269444, + 0.0420747771859169, + 0.060388289391994476, + 0.007989990524947643, + -0.07929443567991257, + 0.004984871484339237, + -0.014037743210792542, + 0.0556802824139595, + -0.017582273110747337, + -0.09586873650550842, + -0.05114120617508888, + -0.004624641966074705, + 0.015387726947665215, + -0.10631923377513885, + 0.03875217214226723, + -0.009510829113423824, + -0.008312361314892769, + -0.016917893663048744, + 0.07094897329807281, + -0.010876565240323544, + -0.006512688938528299, + 0.0017920777900144458, + 0.010061455890536308, + -0.025448812171816826, + -0.03230038285255432, + 0.022478945553302765, + 0.05298766866326332, + 0.07152272760868073, + 0.06385812908411026, + 0.0087148267775774, + -0.010769011452794075, + -0.08082229644060135, + -0.052588000893592834, + -0.005088381003588438, + -0.030710071325302124, + 0.030977467074990273, + 0.03478619456291199, + 0.014133889228105545, + 0.0040428307838737965, + -0.13021552562713623, + 0.019281448796391487, + 0.04692373797297478, + 0.025049926713109016, + 0.04496986046433449, + 0.004994436167180538, + -0.10063643008470535, + -0.14949767291545868, + 0.00623466819524765, + -0.017372140660881996, + -0.045596007257699966, + 0.018152212724089622, + -0.04081575199961662, + 0.009720790199935436, + -0.024099675938487053, + 0.08956876397132874, + 0.03776778653264046, + -0.03540797159075737, + 0.08967892080545425, + 0.042879100888967514, + 0.0025857421569526196, + 0.0434456393122673 + ], + "flame-bold||fire,burning,match,lighter": [ + -0.012868983671069145, + 0.03923213109374046, + -0.009186295792460442, + 0.04419751837849617, + 0.05806969478726387, + 0.02346821501851082, + 0.10662780702114105, + -0.06226552277803421, + 0.055758558213710785, + -0.03357169032096863, + -0.005568403750658035, + -0.016340844333171844, + -0.01974840834736824, + 0.02132224291563034, + 0.044279858469963074, + 0.07271524518728256, + -0.015422598458826542, + 0.017598086968064308, + -0.03518166393041611, + -0.026749584823846817, + 0.03948620706796646, + 0.018408453091979027, + -0.002016932936385274, + 0.04439106211066246, + 0.0037451828829944134, + 0.020038070157170296, + -0.010889341123402119, + 0.041949886828660965, + 0.01396348886191845, + -0.0549350269138813, + 0.05979624390602112, + 0.03969731554389, + -0.00363388960249722, + 0.04923358932137489, + 0.007380395196378231, + -0.05361511930823326, + -0.05321148782968521, + 0.027652930468320847, + -0.03767131268978119, + 0.06700147688388824, + -0.013350180350244045, + -0.05821966752409935, + -0.020290307700634003, + 0.028777146711945534, + -0.06024777516722679, + -0.0050152139738202095, + -0.026730988174676895, + -0.049445778131484985, + -0.02616267465054989, + -0.006253459490835667, + 0.02104565128684044, + -0.05513780191540718, + -0.1175442487001419, + 0.0595044381916523, + 0.0984358936548233, + -0.012074624188244343, + -0.014670374803245068, + -0.0280471034348011, + 0.07328755408525467, + -0.0742795541882515, + 0.01629258506000042, + 0.03180835768580437, + -0.024991005659103394, + 0.030953628942370415, + -0.012081723660230637, + -0.0451439693570137, + 0.059432029724121094, + -0.006194182671606541, + -0.006575496401637793, + 0.04608530551195145, + 0.040327537804841995, + 0.0034341805148869753, + 0.05651507154107094, + -0.014072403311729431, + -0.10273267328739166, + 0.08134394884109497, + 0.008833603002130985, + -0.018712423741817474, + -0.02562197856605053, + -0.055402424186468124, + -0.08034976571798325, + -0.07943858206272125, + -0.05638900026679039, + 0.023956408724188805, + 0.04767482355237007, + 0.08739364147186279, + -0.09388010948896408, + -0.04487455636262894, + -0.01976073905825615, + -0.009701129049062729, + -0.09015513956546783, + 0.019088370725512505, + 0.07215795665979385, + 0.03363606333732605, + -0.05216120555996895, + 0.017768453806638718, + 0.12420745939016342, + 0.04184580221772194, + -0.024405382573604584, + 0.05027351155877113, + 0.039879605174064636, + 0.07580417394638062, + -0.08819058537483215, + -0.012178301811218262, + -0.015248248353600502, + -0.0330418199300766, + -0.05499749258160591, + 0.014497722499072552, + -0.026553131639957428, + -0.04165792465209961, + 0.022625714540481567, + -0.10308566689491272, + -0.006207555998116732, + -0.09522232413291931, + -0.0443291962146759, + -0.008642634376883507, + -0.015718672424554825, + -0.062228575348854065, + 0.04796038195490837, + 0.11868526041507721, + 0.0017597498372197151, + 0.013456074520945549, + -0.024960460141301155, + 0.0015692978631705046, + -0.020445723086595535, + -0.0035365885123610497, + -0.011041378602385521, + -1.401298091243114e-33, + 0.06257659941911697, + 0.09638777375221252, + -0.0870240330696106, + 0.0653146505355835, + 0.01210873294621706, + -0.03173895180225372, + -0.07963630557060242, + -0.03396449610590935, + -0.1432870775461197, + 0.0627347081899643, + 0.004313248209655285, + 0.13963453471660614, + -0.04132937267422676, + 0.021044278517365456, + 0.030304351821541786, + -0.013735280372202396, + 0.01745964214205742, + -0.018816372379660606, + -0.06533360481262207, + -0.05271005257964134, + -0.0941966325044632, + 0.06753277778625488, + -0.03202607482671738, + -0.054233964532613754, + -0.08202265202999115, + 0.0216619074344635, + 0.007667694706469774, + -0.006108944769948721, + -0.03861140087246895, + 0.023786669597029686, + 0.025704698637127876, + -0.015622228384017944, + 0.059608880430459976, + -0.002351564122363925, + 0.0022531715221703053, + 0.029003804549574852, + -0.06265006214380264, + -0.028156980872154236, + -0.06193806231021881, + -0.010825691744685173, + -0.14352525770664215, + 0.005096332170069218, + -0.046486932784318924, + -0.024187108501791954, + 0.04566064476966858, + 0.0855296179652214, + -0.07269011437892914, + 0.011226668953895569, + 0.02248687669634819, + -0.015913086012005806, + -0.017120592296123505, + -0.007491928059607744, + 0.0811462551355362, + 0.06522418558597565, + 0.0024471909273415804, + 0.043974973261356354, + 0.014560281299054623, + 0.015159462578594685, + 0.03274499252438545, + 0.03159031271934509, + 0.01665310375392437, + 0.015910539776086807, + 0.03795291855931282, + -0.0008424359257332981, + 0.016500324010849, + 0.02317258156836033, + -0.04397118464112282, + -0.026225322857499123, + 0.07704775780439377, + -0.025225425139069557, + -0.0030039376579225063, + 0.0884847342967987, + 0.05395103991031647, + 0.030360378324985504, + 0.02842879854142666, + -0.024589434266090393, + 0.02759675309062004, + -0.030455870553851128, + -0.03525018319487572, + -0.03939763456583023, + -0.1412212997674942, + -0.05787724629044533, + -0.029956184327602386, + 0.033014293760061264, + 0.004210610408335924, + -0.031411249190568924, + -0.024615395814180374, + -0.09189321845769882, + -0.055007774382829666, + 0.059839121997356415, + -0.06249513477087021, + -0.0362362302839756, + 0.06363032758235931, + -0.08935025334358215, + -0.04919245094060898, + 7.755645403786595e-34, + 0.034291334450244904, + 0.0494234673678875, + -0.041759323328733444, + 0.029645519331097603, + 0.019825084134936333, + 0.020366743206977844, + 0.008913487195968628, + -0.03239027410745621, + 0.008283820003271103, + 0.03721926361322403, + 0.02721210941672325, + -0.032218609005212784, + 0.0016735824756324291, + -0.05790357291698456, + -0.003095893422141671, + -0.02471078559756279, + 0.01965162344276905, + 0.05085166543722153, + 0.061515551060438156, + 0.03731660917401314, + -0.013594848103821278, + -0.052076030522584915, + -0.12020573019981384, + 0.07019910961389542, + -0.09094692021608353, + 0.04110231250524521, + 0.07034926116466522, + -0.08145079761743546, + -0.09016572684049606, + -0.016297493129968643, + 0.040260400623083115, + 0.0018713705940172076, + -0.021329917013645172, + 0.0415765754878521, + -0.03488298878073692, + 0.013396745547652245, + 0.02821296826004982, + 0.004949529189616442, + 0.0331915058195591, + -0.009935444220900536, + 0.026149660348892212, + 0.04393160715699196, + 0.0027617949526757, + 0.05040993168950081, + -0.06941068172454834, + -0.058686960488557816, + -0.032519709318876266, + -0.0724300816655159, + 0.06113896891474724, + 0.061126530170440674, + 0.0653281956911087, + -0.048488885164260864, + -0.07561697065830231, + 0.03303701430559158, + -0.03623853996396065, + -0.06929038465023041, + 0.007139661815017462, + 0.020518135279417038, + -0.06556304544210434, + 0.12636062502861023, + 0.040012795478105545, + -0.024543404579162598, + 0.006505216937512159, + 0.09506793320178986, + 0.0037142764776945114, + -0.022657936438918114, + -0.006760728545486927, + -0.010036707855761051, + 0.0733785405755043, + 0.02494274638593197, + 0.03571298345923424, + -0.011767305433750153, + -0.04452325031161308, + 0.08129559457302094, + 0.03314943611621857, + -0.07621006667613983, + 0.02267877757549286, + -0.008535084314644337, + -0.005074340384453535, + 0.08792776614427567, + -0.04711597040295601, + 0.02156391367316246, + -0.05337091535329819, + 0.06613543629646301, + 0.01807284727692604, + 0.012269378639757633, + -0.04753187298774719, + 0.06280572712421417, + -0.009914960712194443, + -0.04778100922703743, + -0.0034942610654979944, + 0.07738445699214935, + 0.05013203248381615, + -0.07355241477489471, + -0.052325259894132614, + -1.5724829438568122e-08, + -0.06264618784189224, + -0.015087087638676167, + -0.017720289528369904, + 0.045975394546985626, + 0.0038956119678914547, + 0.00725129246711731, + 0.02470601163804531, + -0.07699073851108551, + -0.0674152672290802, + -0.038104791194200516, + 0.08738776296377182, + 0.04818034544587135, + -0.016739295795559883, + -0.026224462315440178, + 0.04965272918343544, + 0.021906711161136627, + -0.005127809941768646, + -0.015570306219160557, + -0.02978898026049137, + -0.06336954981088638, + -0.047685835510492325, + 0.08525444567203522, + 0.037874866276979446, + -0.032605838030576706, + 0.022016583010554314, + 0.009425275027751923, + -0.028646346181631088, + 0.046795763075351715, + 0.10013392567634583, + 0.12261614948511124, + 0.07660005986690521, + 0.024896221235394478, + -0.006795666646212339, + -0.026992985978722572, + -0.06790941953659058, + -0.007724130991846323, + -0.029110096395015717, + 0.02489602193236351, + -0.012102329172194004, + 0.13213706016540527, + 0.022092588245868683, + -0.0011441686656326056, + -0.020323097705841064, + 7.071068830555305e-05, + -0.026735328137874603, + -0.02239803969860077, + 0.012908576056361198, + -0.07662826776504517, + -0.1105756163597107, + -0.02900194562971592, + 0.07374706864356995, + -0.04398220404982567, + 0.01551003661006689, + 0.04631173610687256, + -0.0024169415701180696, + -0.06662125140428543, + 0.03266157954931259, + 0.11967942863702774, + 0.05329842492938042, + -0.008049161173403263, + 0.16895759105682373, + -0.03343648836016655, + 0.018477970734238625, + -0.01095675304532051 + ], + "flashlight-bold||torch,find,search,locate": [ + -0.02849857322871685, + -0.029127417132258415, + -0.019699247553944588, + 0.09330496191978455, + 0.054066505283117294, + -0.033976975828409195, + 0.053682390600442886, + -0.026408327743411064, + 0.0028177278582006693, + -0.033102117478847504, + 0.08343667536973953, + 0.03468898683786392, + -0.007163270376622677, + 0.029599042609333992, + -0.0019691018387675285, + 0.07765255868434906, + -0.016495127230882645, + 0.006927425507456064, + -0.005794824566692114, + -0.05009418725967407, + 0.10362537205219269, + 0.0016252481145784259, + 0.12053042650222778, + 0.0016200514510273933, + -0.02107221633195877, + 0.056888483464717865, + 0.007177168969064951, + -0.05800490826368332, + 0.03919227793812752, + -0.06147518754005432, + 0.03783402219414711, + 0.005228633992373943, + 0.00865053292363882, + 0.009896006435155869, + 0.06808194518089294, + 0.005648923572152853, + -0.0926566869020462, + -0.010459641925990582, + 0.03475252538919449, + 0.025822067633271217, + 0.021708473563194275, + -0.023249369114637375, + 0.009014351293444633, + -0.011269871145486832, + -0.04451737552881241, + -0.0059211235493421555, + 0.035475898534059525, + -0.011720034293830395, + 0.005455786362290382, + -0.05747870355844498, + 0.002873710822314024, + -0.07824640721082687, + -0.09198063611984253, + 0.06355985999107361, + 0.05925986170768738, + 0.022430816665291786, + -0.04609469324350357, + -0.06587835401296616, + 0.11720657348632812, + -0.08098600804805756, + 0.08182931691408157, + 0.053592249751091, + 0.035304706543684006, + -0.03938766196370125, + 0.030420798808336258, + 0.014466915279626846, + -0.004548928700387478, + -0.05863653123378754, + 0.03573368862271309, + -0.00494353286921978, + 0.05235018581151962, + 0.015573314391076565, + 0.008388806134462357, + 0.03298848867416382, + -0.07008340209722519, + 0.023778587579727173, + 0.08744131028652191, + 0.033691223710775375, + -0.06038649007678032, + -0.037123456597328186, + -0.014623377472162247, + -0.08081309497356415, + 0.02344154193997383, + 0.08360014855861664, + 0.10230650007724762, + 0.0414838008582592, + -0.03731764480471611, + -0.0400099903345108, + 0.01289847120642662, + -0.03497431427240372, + -0.08550464361906052, + -0.05833547189831734, + -0.06608127057552338, + -0.008652390912175179, + -0.08027931302785873, + -0.02871350385248661, + 0.07570626586675644, + -0.00016080084606073797, + -0.1139863058924675, + 0.04003296047449112, + 0.06341931223869324, + 0.016412002965807915, + -0.022009912878274918, + -0.014051316305994987, + -0.05168034881353378, + 0.03560800477862358, + -0.030728349462151527, + 0.07054033130407333, + -0.004820829723030329, + -0.015259463340044022, + 0.09580458700656891, + -0.08063223212957382, + -0.0010307030752301216, + -0.06034793332219124, + -0.014847183600068092, + -0.07711239159107208, + -0.050749246031045914, + -0.003761507337912917, + 0.037412140518426895, + 0.11730583012104034, + 0.04696599021553993, + 0.022396566346287727, + -0.025328630581498146, + 0.02460632473230362, + 0.028461843729019165, + 0.07116658985614777, + 0.0028503532521426678, + -2.1655755899664755e-33, + 0.044427283108234406, + 0.07476788014173508, + -0.12330261617898941, + 0.013672956265509129, + -0.04127936065196991, + 0.012908346951007843, + 0.031641267240047455, + 0.001311004627496004, + -0.11509281396865845, + 0.01346344593912363, + 0.050504837185144424, + 0.07855764776468277, + -0.026613973081111908, + 0.02070002071559429, + -0.003257742617279291, + -0.045712146908044815, + 0.09482228010892868, + -0.0030615583527833223, + -0.08255326002836227, + -0.04401233047246933, + -0.05506579577922821, + 0.05336931347846985, + -0.0538676418364048, + -0.05339275673031807, + -0.02307886630296707, + 0.00976327434182167, + -0.011683965101838112, + -0.09677157551050186, + -0.025818990543484688, + 0.030282195657491684, + -0.007578881457448006, + 0.04715849831700325, + 0.046096865087747574, + 0.04077056795358658, + 0.01954721473157406, + 0.0743984580039978, + -0.014300335198640823, + -0.020430345088243484, + -0.004194334149360657, + -0.0316351093351841, + -0.08861798048019409, + 0.01257297396659851, + -0.009876949712634087, + -0.0468628853559494, + 0.004188417457044125, + 0.06059599295258522, + -0.08939769864082336, + -0.020047517493367195, + -0.007841508835554123, + -0.0010249488987028599, + -0.029962103813886642, + 0.011651215143501759, + 0.01607528328895569, + 0.02265203557908535, + 0.060261402279138565, + 0.04285903647542, + -0.01603836379945278, + 0.06733388453722, + 0.07042158395051956, + -0.05028702691197395, + 0.0694698840379715, + 0.006793465930968523, + 0.010288404300808907, + 0.024265069514513016, + -0.03361240029335022, + -0.008042423985898495, + -0.045919954776763916, + 0.04328368604183197, + 0.03831145167350769, + -0.006821186747401953, + -0.04834875091910362, + 0.05192263051867485, + 0.08648280799388885, + 0.02834884636104107, + -0.005301840137690306, + -0.02729233354330063, + 0.023971451446413994, + -0.046192467212677, + 0.028922703117132187, + -0.09989504516124725, + -0.08896956592798233, + -0.05293852090835571, + 0.0025470363907516003, + 0.06322362273931503, + 0.048454392701387405, + -0.05665852501988411, + -0.043473564088344574, + -0.11320243775844574, + -0.08822563290596008, + 0.04691013693809509, + -0.03227349743247032, + -0.011380542069673538, + -0.04286765307188034, + -0.06662876158952713, + -0.06628942489624023, + 1.6640887614125636e-33, + 0.06987264007329941, + 0.030441274866461754, + 0.008602632209658623, + -0.008995377458631992, + -0.04369255155324936, + 0.019139105454087257, + 0.009462916292250156, + -0.08780523389577866, + -0.05090872198343277, + 0.03662548586726189, + -0.0008041611290536821, + 0.002203852403908968, + -0.1291688233613968, + -0.09876997023820877, + 0.03542914614081383, + 0.07327811419963837, + 0.02893121913075447, + 0.05189824476838112, + 0.029049372300505638, + 0.018885718658566475, + -0.0747821256518364, + -0.004873588215559721, + -0.08307994902133942, + 0.06338563561439514, + -0.06346414238214493, + 0.048803944140672684, + 0.0983225628733635, + -0.022227149456739426, + -0.06984411925077438, + -0.06303822249174118, + -0.01850186102092266, + 0.02232193946838379, + -0.006874512881040573, + 0.03495378419756889, + -0.10434705764055252, + 0.06167231500148773, + 0.029531054198741913, + -0.045825615525245667, + -0.0016885384684428573, + 0.014171071350574493, + 0.026676248759031296, + 0.026041340082883835, + -0.009761388413608074, + 0.012277516536414623, + -0.09321928769350052, + -0.0021368509624153376, + -0.023310402408242226, + 0.024311533197760582, + 0.029688606038689613, + 0.05860831215977669, + 0.07659558951854706, + -0.08079107850790024, + -0.06727549433708191, + -0.019628725945949554, + -0.11141879856586456, + -0.043428823351860046, + -0.016700226813554764, + 0.002954467199742794, + -0.060957517474889755, + 0.046898093074560165, + 0.04694128409028053, + 0.007677764166146517, + 0.03752138838171959, + 0.09550098329782486, + 0.004972546827048063, + -0.02434578537940979, + -0.010185238905251026, + 0.04425957798957825, + 0.039631254971027374, + 0.02979905717074871, + 0.08764571696519852, + 0.024124398827552795, + 0.05818482115864754, + 0.0038594563957303762, + 0.07288292050361633, + -0.018573230132460594, + 0.01412345189601183, + -0.003539268160238862, + -0.010515013709664345, + -0.02610066346824169, + -0.002668674336746335, + 0.025810865685343742, + -0.04865112155675888, + 0.02545887790620327, + -0.015601765364408493, + 0.04473129287362099, + 0.010051614604890347, + 0.084963358938694, + -0.08339149504899979, + -0.11367343366146088, + -0.04599868506193161, + 0.014531399123370647, + 0.054859939962625504, + -0.07550109922885895, + 0.029762068763375282, + -1.4544122350912403e-08, + -0.08891596645116806, + 0.023530665785074234, + -0.04399384558200836, + -0.023405766114592552, + 0.06903064996004105, + 0.026653483510017395, + 0.008355890400707722, + 0.05376450717449188, + -0.03716645762324333, + -0.07018999010324478, + 0.052990250289440155, + -0.03095601685345173, + 0.050302233546972275, + -0.014229413121938705, + 0.030331799760460854, + 0.04059504717588425, + -0.004727429244667292, + -0.03583560883998871, + -0.04668443277478218, + -0.017141912132501602, + -0.03749869018793106, + 0.058476582169532776, + 0.0451764240860939, + 0.018308287486433983, + -0.0018884121673181653, + 0.0507049597799778, + -0.05257540941238403, + 0.03154230862855911, + 0.06744211167097092, + 0.09134697914123535, + 0.07457001507282257, + 0.03449677675962448, + 0.04731021076440811, + 0.051602549850940704, + -0.020928243175148964, + -0.027396492660045624, + -0.027037829160690308, + -0.02323296293616295, + -0.05859573930501938, + 0.08571290224790573, + -0.014081458561122417, + -0.004530365113168955, + 0.007612418383359909, + 0.005138352978974581, + -0.08675863593816757, + 0.054612111300230026, + 0.06795882433652878, + -0.09600632637739182, + -0.07258458435535431, + -0.006768225692212582, + -0.014839735813438892, + 0.004017517436295748, + -0.04521198943257332, + 0.08374941349029541, + -0.013225441798567772, + -0.03059244342148304, + 0.08171297609806061, + 0.03200506791472435, + -0.08765797317028046, + -0.01129237748682499, + 0.13246122002601624, + -0.034976884722709656, + -0.05111062526702881, + 0.027770237997174263 + ], + "flask-bold||beaker,science,chemistry,experiment,erlenmeyer": [ + -0.07497267425060272, + 0.04022004082798958, + -0.055592264980077744, + 0.05271991342306137, + 0.08234432339668274, + -0.11414302885532379, + 0.03242884948849678, + 0.039563700556755066, + -0.005628903862088919, + -0.11439958959817886, + -0.012238871306180954, + -0.05468505993485451, + -0.048083703964948654, + 0.0231619905680418, + -0.05738943815231323, + -0.00018435211677569896, + -0.0005013893241994083, + -0.024269651621580124, + -0.030557040125131607, + -0.009866677224636078, + 0.02536531165242195, + 0.025485869497060776, + 0.11076492816209793, + 0.07739463448524475, + 0.0042394185438752174, + 0.04720241576433182, + 0.019438067451119423, + 0.010273630730807781, + 0.017388008534908295, + -0.04963083565235138, + 0.031065674498677254, + 0.04475896805524826, + 0.024092569947242737, + -0.04802512377500534, + 3.51539310941007e-05, + -0.01166935171931982, + 0.01813783496618271, + -0.02491709031164646, + 0.08784963190555573, + 0.022488638758659363, + 0.029957609251141548, + -0.027908029034733772, + 0.019168172031641006, + 0.023079169914126396, + -0.043666232377290726, + -0.034908827394247055, + 0.0024297935888171196, + 0.00042857753578573465, + 0.030320631340146065, + 0.050369467586278915, + -0.07294607907533646, + -0.06466317176818848, + -0.15615743398666382, + -0.043604377657175064, + 0.007958696223795414, + 0.01687043532729149, + -0.050540320575237274, + -0.10073720663785934, + -0.014381286688148975, + -0.028038231655955315, + 0.10250880569219589, + 0.011563075706362724, + 0.0014010975137352943, + 0.07353375107049942, + 0.006943059153854847, + -0.029623590409755707, + 0.04445396736264229, + 0.019008316099643707, + 0.04679713770747185, + 0.03851669654250145, + 0.041134510189294815, + 0.04443221911787987, + -0.006423438899219036, + -0.01634741574525833, + 0.05556472763419151, + -0.05650300905108452, + 0.027418505400419235, + -0.0005188177456147969, + -0.012311598286032677, + 0.05035318061709404, + -0.06860226392745972, + -0.05195526406168938, + -0.01737274043262005, + 0.05212091654539108, + -0.03586157038807869, + -0.007802051957696676, + -0.03978480398654938, + -0.009034955874085426, + -0.010118911042809486, + -0.03710417449474335, + -0.024317985400557518, + 0.008828669786453247, + -0.07137449085712433, + 0.027119195088744164, + -0.05558929964900017, + 0.05657071992754936, + 0.03219878673553467, + 0.036256104707717896, + -0.009215066209435463, + 0.03270706161856651, + 0.024754228070378304, + -0.017243890091776848, + 0.028639208525419235, + 0.03614025563001633, + 0.005747846327722073, + -0.048258695751428604, + -0.00364116532728076, + -0.04451896995306015, + 0.052745018154382706, + 0.016518503427505493, + 0.0431470088660717, + -0.06449471414089203, + 0.009445499628782272, + 0.03017529658973217, + -0.020563501864671707, + -0.04151386395096779, + -0.04011683911085129, + -0.034075748175382614, + -0.06548239290714264, + 0.0776175856590271, + 0.061697203665971756, + -0.00424603745341301, + -0.043019890785217285, + -0.062254779040813446, + 0.01092048641294241, + 0.03201271593570709, + -0.010355401784181595, + -1.3905017266437882e-33, + 0.001320226234383881, + -0.046672262251377106, + 0.012610478326678276, + 0.05807839706540108, + 0.07508013397455215, + 0.0025336488615721464, + -0.022718828171491623, + -0.022902624681591988, + -0.08681964874267578, + 0.04571749269962311, + 0.020836343988776207, + 0.1102943867444992, + -0.04008827731013298, + 0.05941859260201454, + -0.023969870060682297, + -0.06508419662714005, + 0.01865546405315399, + 0.009558594785630703, + -0.03929039090871811, + -0.056199777871370316, + -0.003352382453158498, + -0.036650851368904114, + -0.07332165539264679, + 0.014667011797428131, + 0.011901688762009144, + 0.053469978272914886, + -0.038417790085077286, + -0.004152725916355848, + -0.06662306189537048, + 0.043671105057001114, + 0.029892131686210632, + -0.008804035373032093, + -0.020005667582154274, + 0.026924865320324898, + -0.02579611912369728, + -0.009033774957060814, + -0.055768001824617386, + -0.036322664469480515, + 0.01742418296635151, + -0.05296885967254639, + -0.04631515219807625, + 0.04358105733990669, + 0.07831287384033203, + 0.06210767477750778, + -0.0036731816362589598, + 0.04494465887546539, + -0.094303660094738, + 0.08758939802646637, + 0.10070290416479111, + 0.04607384279370308, + -0.0670396238565445, + -0.053502392023801804, + 0.11654890328645706, + 0.03510579466819763, + 0.05702994391322136, + -0.00778412539511919, + -0.017552325502038002, + 0.12373259663581848, + -0.029944004490971565, + -0.04920252040028572, + -0.03522614762187004, + 0.06050369143486023, + -0.012157612480223179, + 0.11593238264322281, + 0.04049565643072128, + 0.08243490755558014, + -0.044344156980514526, + 0.033436551690101624, + 0.09128567576408386, + 0.02471207082271576, + -0.04757025092840195, + 0.08165202289819717, + 0.01241774670779705, + 0.014464188367128372, + 0.006967834662646055, + 0.002610868541523814, + 0.006772044580429792, + -0.06783657521009445, + 0.03055253066122532, + -0.048522524535655975, + -0.009968230500817299, + -0.05046093091368675, + -0.07327738404273987, + -0.03945908322930336, + -0.1706918627023697, + 0.02586236782371998, + -0.006699561607092619, + 0.04650687798857689, + 0.06164773553609848, + 0.026153335347771645, + -0.06390129774808884, + -0.08335871994495392, + 0.032426781952381134, + -0.0342356413602829, + -0.09689058363437653, + -7.475925961926373e-34, + 0.009216874837875366, + -0.005538724362850189, + -0.02540462650358677, + 0.019010702148079872, + 0.02693995274603367, + 0.03398645669221878, + 0.06246267259120941, + 0.00675908662378788, + 0.049326393753290176, + 0.018156999722123146, + 0.03237156942486763, + 0.037535183131694794, + -0.05424920842051506, + 0.011878385208547115, + -0.05407094582915306, + 0.0826617032289505, + 0.009920675307512283, + -0.006880339700728655, + -0.009846360422670841, + -0.060063719749450684, + -0.09706731885671616, + 0.04461933299899101, + -0.010309992358088493, + 0.00048525756574235857, + -0.034724511206150055, + 0.04192039370536804, + 0.019097767770290375, + -0.15461398661136627, + -0.07705271989107132, + 0.03974047675728798, + -0.08505465090274811, + -0.062478434294462204, + 0.06106013432145119, + 0.03506059944629669, + -0.0520511157810688, + -0.00591207155957818, + 0.13507534563541412, + -0.030601494014263153, + 0.013523761183023453, + -0.11352545768022537, + 0.06079504266381264, + 0.04165429249405861, + -0.011013374663889408, + 0.014751184731721878, + 0.0072357505559921265, + 0.053167957812547684, + -0.018830031156539917, + -0.015169882215559483, + 0.004075211007148027, + -0.014018994756042957, + -0.05068450793623924, + 0.02394581027328968, + -0.007326042745262384, + 0.017695335671305656, + -0.041279084980487823, + 0.014386024326086044, + 0.01807495579123497, + -0.06989875435829163, + -0.024189505726099014, + 0.044539280235767365, + -0.0211082324385643, + -0.009401313029229641, + -0.013232641853392124, + 0.04722936078906059, + -0.008314656093716621, + -0.06627561151981354, + -0.09165040403604507, + 0.05409090220928192, + 0.07808506488800049, + -0.01411141362041235, + 0.10922564566135406, + 0.060876987874507904, + 0.043445538729429245, + -0.004903512541204691, + 0.057932738214731216, + 0.017828090116381645, + -0.0032074565533548594, + -0.06858094036579132, + -0.10151838511228561, + 0.034930214285850525, + 0.005342592019587755, + -0.0010834805434569716, + -0.00469436589628458, + 0.0839373767375946, + -0.03787651285529137, + -0.16346660256385803, + 0.028789956122636795, + 0.010983285494148731, + -0.013173118233680725, + -0.022795306518673897, + 0.03855514153838158, + -0.0178995281457901, + 0.004084229469299316, + 0.0039769127033650875, + 0.025373365730047226, + -2.0838355041519208e-08, + 0.006746390834450722, + 0.01588580571115017, + 0.02182859182357788, + -0.027111420407891273, + 0.02255585975944996, + 0.059377577155828476, + 0.025095053017139435, + -0.01624048687517643, + -0.04807919263839722, + -0.007217468228191137, + -0.060530006885528564, + 0.05847884714603424, + -0.029660958796739578, + 3.4361283951511723e-07, + 0.07045102119445801, + -0.006263513118028641, + -0.06928057968616486, + 0.037062253803014755, + -0.045329831540584564, + -0.10281255841255188, + 0.010078094899654388, + 0.007295447867363691, + 0.09107167273759842, + -0.03886863589286804, + -0.023689426481723785, + 0.11065170168876648, + -0.031030382961034775, + -0.023526126518845558, + 0.02129010483622551, + 0.027432821691036224, + -0.022381138056516647, + 0.029831133782863617, + 0.009271095506846905, + 0.0960971787571907, + -0.06879786401987076, + -0.06505205482244492, + -0.07643996179103851, + 0.04301247000694275, + -0.04640199616551399, + 0.10467030853033066, + -0.12218542397022247, + -0.0823296383023262, + -0.08149052411317825, + 0.003899898612871766, + 0.011425690725445747, + 0.013787872157990932, + -0.05233817920088768, + 0.010471758432686329, + 0.0034745067823678255, + -0.0028912092093378305, + 0.07268510013818741, + -0.045111145824193954, + 0.0715445876121521, + -0.003349096979945898, + -0.042326487600803375, + 0.002917237812653184, + -0.011678759939968586, + 0.04682129994034767, + -0.08264031261205673, + -0.0613960325717926, + 0.09998103231191635, + 0.08239519596099854, + 0.06570276618003845, + -0.024450723081827164 + ], + "flip-horizontal-bold||*new*,mirror,rotate,invert": [ + -0.018189677968621254, + -0.05208519846200943, + 0.03424989432096481, + -0.009426383301615715, + -0.04825403168797493, + -0.08344406634569168, + -0.03774890676140785, + -0.06615162640810013, + -0.03588017448782921, + 0.03543351590633392, + 0.02348228543996811, + 0.07378082722425461, + -0.0055135516449809074, + -0.07012493163347244, + 0.0322619304060936, + 0.07427295297384262, + 0.014080015011131763, + 0.07778789103031158, + 0.003316460410133004, + 0.03696746006608009, + -0.021674124523997307, + -0.1080922856926918, + -0.04541647434234619, + -0.010084873996675014, + -0.011528890579938889, + 0.0296630859375, + 0.02423791214823723, + 0.008782212622463703, + 0.008177767507731915, + -0.061909522861242294, + -0.004670856520533562, + 0.02761354111135006, + 0.01140363235026598, + -0.03530256822705269, + -0.05316910892724991, + -0.027737237513065338, + -0.009382316842675209, + -0.030397793278098106, + 0.046024713665246964, + -0.00958219263702631, + 0.006221032701432705, + -0.08401665836572647, + -0.007914840243756771, + -0.012171006761491299, + -0.02625374309718609, + -0.018277959898114204, + -0.03309401869773865, + -0.01842157542705536, + 0.11204289644956589, + 0.03225241228938103, + -0.037702083587646484, + -0.05584125220775604, + -0.07857129722833633, + -0.03145059198141098, + 0.032148879021406174, + 0.04747611656785011, + 0.015712900087237358, + -0.01965027116239071, + 0.05309091508388519, + -0.011342066340148449, + 0.12968197464942932, + 9.166678501060233e-05, + 0.06405062228441238, + 0.020879650488495827, + 0.04219892621040344, + -0.0124863525852561, + -0.06125212088227272, + -0.050785984843969345, + -0.03608240187168121, + 0.0729900598526001, + -0.05410328507423401, + -0.012718401849269867, + 0.0009069821680895984, + -0.036291152238845825, + -0.02038978599011898, + -0.021615896373987198, + 0.07670337706804276, + -0.003369051730260253, + -0.05051504820585251, + 0.028470244258642197, + 0.025682102888822556, + -0.005092316307127476, + -0.01711650937795639, + 0.06066572293639183, + 0.06104738265275955, + -0.012223655357956886, + -0.12313571572303772, + -0.014220472425222397, + 0.014375136233866215, + 0.016079118475317955, + -0.05090288817882538, + 0.06334114074707031, + -0.007935275323688984, + -0.018528591841459274, + -0.02304798923432827, + -0.058925431221723557, + 0.0841362327337265, + 0.01677229255437851, + -0.0364355593919754, + 0.1014060452580452, + 0.027165332809090614, + 0.03750070929527283, + 0.028872914612293243, + 0.024949457496404648, + -0.05035004764795303, + -0.025058843195438385, + -0.02367190457880497, + -0.006170869804918766, + -0.06346849352121353, + -0.02436048723757267, + 0.03839205950498581, + -0.039995137602090836, + 0.061988476663827896, + -0.09959986060857773, + -0.04233209043741226, + -0.03953522443771362, + -0.04870540276169777, + 0.012071169912815094, + 0.029220271855592728, + 0.07959245145320892, + 0.05760575085878372, + -0.0360620878636837, + -0.03361070156097412, + -0.003250458976253867, + -0.009660370647907257, + 0.008965346030890942, + -0.014789460226893425, + -1.2461599284059386e-33, + 0.06416307389736176, + 0.08468014001846313, + 0.00719263032078743, + 0.08101419359445572, + 0.007682961877435446, + 0.0924864336848259, + -0.003999709151685238, + 0.027865178883075714, + -0.10315122455358505, + -0.016780966892838478, + 0.13368284702301025, + 0.028286335989832878, + 0.003608197905123234, + -0.010314165614545345, + -0.0904378890991211, + -0.04597035050392151, + 0.022671813145279884, + 0.017401156947016716, + -0.09786713868379593, + -0.1120416522026062, + -0.050821952521800995, + 0.05149434506893158, + -0.03368707373738289, + -0.023564377799630165, + -0.08838565647602081, + -0.07960687577724457, + 0.04913588985800743, + -0.0636473074555397, + -0.12873604893684387, + 0.028328802436590195, + -0.051763977855443954, + -0.019820483401417732, + 0.04828636720776558, + 0.020610082894563675, + -0.03192790597677231, + 0.03923390433192253, + -0.05340789631009102, + -0.05928569659590721, + -0.03391136974096298, + 0.0765962302684784, + -0.030250338837504387, + 0.00943760946393013, + -0.019422853365540504, + -0.05680270493030548, + 0.005538838915526867, + 0.1260853409767151, + -0.021746087819337845, + -0.002058525336906314, + 0.022669242694973946, + -0.013869921676814556, + 0.005649260710924864, + -0.0013008702080696821, + -0.14419324696063995, + -0.008735701441764832, + -0.004519677720963955, + -0.009329298511147499, + 0.014206472784280777, + 0.08069207519292831, + -0.017667770385742188, + 0.007665748242288828, + -0.012801364064216614, + 0.02935413271188736, + 0.013106144033372402, + 0.005008256062865257, + -0.09298437833786011, + 0.04468553513288498, + -0.0293634831905365, + -0.03631420433521271, + 0.03340236097574234, + 0.0333746038377285, + 0.001171646174043417, + 0.053239382803440094, + -0.10312750935554504, + 0.05091611295938492, + 0.017303571105003357, + 0.023642461746931076, + 0.01026113424450159, + -0.01697952300310135, + 0.043474212288856506, + -0.08433426916599274, + -0.03316095843911171, + 0.08430059254169464, + -0.08282342553138733, + -0.03705177828669548, + 0.029138799756765366, + -0.026525571942329407, + -0.002480935538187623, + -0.05520273745059967, + -0.08704345673322678, + -0.007555762305855751, + -0.05451211705803871, + -0.01158800721168518, + -0.052989184856414795, + -0.025288444012403488, + -0.025976980105042458, + -1.344743496821619e-33, + -0.006891104858368635, + -0.017978612333536148, + -0.05218597501516342, + -0.021696021780371666, + -0.07950432598590851, + 0.007921615615487099, + 0.0851413905620575, + 0.07553627341985703, + -0.06000569090247154, + 0.018060294911265373, + 0.08290430158376694, + -0.015538669191300869, + -0.06546057760715485, + 0.03656480088829994, + 0.028760019689798355, + 0.023233376443386078, + 0.05250616744160652, + -0.0009369616745971143, + -0.05535890534520149, + 0.07633757591247559, + 0.05147529020905495, + 0.04866063594818115, + 0.0006172230932861567, + 0.13773128390312195, + -0.02735021524131298, + 0.0008260648464784026, + 0.07009544223546982, + 0.05781922861933708, + 0.04759548604488373, + 0.042380817234516144, + -0.029711909592151642, + -0.02281559444963932, + 0.09693197906017303, + 0.09249570220708847, + -0.06080732122063637, + 0.08375629782676697, + -0.06694615632295609, + -0.03157598152756691, + -0.009867372922599316, + -0.014985056594014168, + -0.028643948957324028, + -0.015129761770367622, + 0.029370469972491264, + -0.008512992411851883, + -0.09385586529970169, + -0.06393269449472427, + -0.02885054238140583, + 0.05449274554848671, + -0.01976296491920948, + 0.03776628151535988, + 0.004557836335152388, + -0.0697791799902916, + 0.014326192438602448, + 0.01818622089922428, + -0.007082049734890461, + 0.00747505109757185, + 0.029243290424346924, + 0.043820276856422424, + 0.04063405469059944, + 0.08171268552541733, + -0.005653121508657932, + 0.05393192172050476, + 0.017808493226766586, + -0.05156005173921585, + 0.019167838618159294, + 0.021439651027321815, + 0.07690632343292236, + -0.11801663786172867, + 0.030479107052087784, + 0.03853526711463928, + 0.05486493557691574, + 0.07556483149528503, + -0.025346117094159126, + -0.05625229701399803, + 0.04048661142587662, + -0.037602320313453674, + 0.028697948902845383, + 0.06077676638960838, + -0.06164006143808365, + 0.011463357135653496, + -0.09669164568185806, + -0.054532069712877274, + 0.07029421627521515, + 0.10951825976371765, + -0.054940756410360336, + -0.04939115419983864, + -0.050255630165338516, + 0.02074352093040943, + 0.020694904029369354, + 0.033186085522174835, + -0.07580140233039856, + 0.05098492279648781, + -0.0048658037558197975, + -0.041030921041965485, + 0.04407739266753197, + -2.1490134116675108e-08, + -0.048268288373947144, + -0.06598669290542603, + 0.030246226117014885, + 0.0757637768983841, + -0.014804436825215816, + -0.013661027885973454, + -0.0036370870657265186, + -0.10380406677722931, + -0.06637053936719894, + -0.05425745248794556, + 0.012903368100523949, + 0.06950889527797699, + 0.023010972887277603, + -0.01077669020742178, + 0.011679232120513916, + 0.02098887786269188, + -0.022025229409337044, + 0.01470042485743761, + -0.02250082604587078, + -0.048364926129579544, + -0.010053761303424835, + -0.002240813337266445, + 0.04439463093876839, + 0.03975757211446762, + 0.058937326073646545, + 0.013700675219297409, + -0.08709634095430374, + 0.011129230260848999, + 0.07678069174289703, + 0.03029421716928482, + 0.007094690576195717, + -0.031389787793159485, + 0.04302302747964859, + -0.01095430739223957, + -0.0803643986582756, + -0.017785144969820976, + -0.07042437791824341, + 0.00945581216365099, + 0.03447249159216881, + 0.05719927325844765, + -0.04757477343082428, + 0.04880885034799576, + -0.024098960682749748, + 0.003139090957120061, + -0.06844841688871384, + -0.006611425429582596, + 0.023670263588428497, + -0.006814715452492237, + -0.047862742096185684, + -0.13072469830513, + 0.06136951223015785, + -0.06282372027635574, + 0.04055739566683769, + 0.08481431752443314, + -0.016741091385483742, + 0.04091721400618553, + 0.05991905927658081, + 0.11018449068069458, + -0.027409270405769348, + 0.05311577022075653, + 0.14646896719932556, + 0.05588759109377861, + 0.013606930151581764, + -0.03892846405506134 + ], + "flip-vertical-bold||*new*,mirror,rotate,invert": [ + -0.019681477919220924, + -0.05161496251821518, + 0.03148619085550308, + -0.01010991632938385, + -0.05326952785253525, + -0.08411255478858948, + -0.046645112335681915, + -0.038422174751758575, + -0.03571708872914314, + 0.027257755398750305, + 0.016541287302970886, + 0.08219532668590546, + -0.005215455777943134, + -0.0835193544626236, + 0.03249862790107727, + 0.09402330964803696, + 0.03242266923189163, + 0.08762478083372116, + -0.00978078693151474, + 0.03215166926383972, + -0.02925485372543335, + -0.09961909055709839, + -0.031151026487350464, + -0.010007284581661224, + 0.0026819766499102116, + 0.02427567169070244, + 0.025760309770703316, + 0.01462870929390192, + 0.01701788417994976, + -0.047772862017154694, + -0.005329891107976437, + 0.026942426338791847, + 0.025820579379796982, + -0.027476297691464424, + -0.05108335241675377, + -0.026323191821575165, + 0.0012275358894839883, + -0.02470947802066803, + 0.03129972144961357, + -0.02009495534002781, + 0.014070529490709305, + -0.09282633662223816, + -0.010185396298766136, + -0.011324441060423851, + -0.02900763601064682, + 0.0012545932549983263, + -0.011617268435657024, + -0.020995453000068665, + 0.0946514904499054, + 0.029976869001984596, + -0.02516746334731579, + -0.06566138565540314, + -0.08395443856716156, + -0.04065241664648056, + 0.03315412998199463, + 0.0658605769276619, + 0.010633991099894047, + -0.03989964351058006, + 0.05863623693585396, + -0.008637633174657822, + 0.13106843829154968, + 0.01117278728634119, + 0.030927687883377075, + 0.03252877667546272, + 0.042434945702552795, + -0.006294792518019676, + -0.06532079726457596, + -0.039200250059366226, + -0.03643744811415672, + 0.07814688235521317, + -0.0503687784075737, + -0.005684072617441416, + 0.006871760357171297, + -0.02859826385974884, + -0.019802123308181763, + -0.020615912973880768, + 0.0745130181312561, + -0.012429182417690754, + -0.04007115587592125, + 0.03359747305512428, + 0.03352690860629082, + -0.022216670215129852, + -0.031881339848041534, + 0.05992967262864113, + 0.058168333023786545, + -0.013652170076966286, + -0.11325427889823914, + -0.022246334701776505, + 0.00449889013543725, + 0.014202142134308815, + -0.04086044803261757, + 0.048046551644802094, + -0.0111690117046237, + -0.01935419999063015, + -0.01963217929005623, + -0.06158948689699173, + 0.0881863385438919, + -0.01672437973320484, + -0.032743703573942184, + 0.10320373624563217, + 0.01823272556066513, + 0.028092537075281143, + 0.039220988750457764, + 0.043141625821590424, + -0.061964746564626694, + -0.03322833031415939, + -0.01655316911637783, + 0.0023405966348946095, + -0.07801079005002975, + -0.014948217198252678, + 0.049566600471735, + -0.052442386746406555, + 0.08816508203744888, + -0.09779492765665054, + -0.0493537038564682, + -0.03187662363052368, + -0.05816640332341194, + -0.003307817503809929, + 0.02928868867456913, + 0.0633423700928688, + 0.047440264374017715, + -0.028668556362390518, + -0.03713715448975563, + -0.003938666544854641, + -0.011994103901088238, + 0.0019749836064875126, + -0.00632828613743186, + -1.1387054184033809e-33, + 0.07842190563678741, + 0.09402548521757126, + 0.012425755150616169, + 0.07976122200489044, + 0.021779704838991165, + 0.10632196813821793, + -0.010716061107814312, + 0.019531134516000748, + -0.10659976303577423, + 0.02130121923983097, + 0.11866870522499084, + 0.02591167576611042, + 0.0067953686229884624, + 0.016438661143183708, + -0.09354814887046814, + -0.03693360090255737, + 0.03811914846301079, + 0.01209232583642006, + -0.10280797630548477, + -0.1245938092470169, + -0.041081398725509644, + 0.04578033462166786, + -0.03836117312312126, + -0.010335666127502918, + -0.09163787215948105, + -0.08662711828947067, + 0.054091908037662506, + -0.06433585286140442, + -0.1435510367155075, + 0.034607790410518646, + -0.0590820237994194, + -0.014628597535192966, + 0.04661862179636955, + 0.007847050204873085, + -0.03813780099153519, + 0.0510108582675457, + -0.054466113448143005, + -0.06590515375137329, + -0.031802982091903687, + 0.07572327554225922, + -0.028598396107554436, + 0.00952130276709795, + -0.011969681829214096, + -0.0436110757291317, + 0.00962521880865097, + 0.1122681275010109, + -0.022113464772701263, + -0.013082082383334637, + 0.0163985975086689, + -0.00034237635554745793, + 0.009076885879039764, + -0.0038533771876245737, + -0.1454847753047943, + -0.013451464474201202, + 0.002673313021659851, + -0.01571667566895485, + 0.007632706314325333, + 0.07649847865104675, + -0.025851093232631683, + 0.011254865676164627, + -0.015389291569590569, + 0.02799970470368862, + -0.010792837478220463, + 0.005917615257203579, + -0.09093238413333893, + 0.047427527606487274, + -0.01916934922337532, + -0.029889263212680817, + 0.03154340386390686, + 0.035240110009908676, + 0.013514292426407337, + 0.05367538332939148, + -0.1073896735906601, + 0.03078119084239006, + 0.00629060436040163, + 0.027011960744857788, + 0.0208671186119318, + -0.021843180060386658, + 0.04541380703449249, + -0.07177774608135223, + -0.017399653792381287, + 0.07562093436717987, + -0.08042089641094208, + -0.034308355301618576, + 0.029340285807847977, + -0.018081985414028168, + 0.002226378535851836, + -0.05974441021680832, + -0.08334312587976456, + -0.0007488804985769093, + -0.06204046308994293, + -0.025122787803411484, + -0.056042686104774475, + -0.02849719300866127, + -0.018601829186081886, + -1.0709152102044365e-33, + -0.0014719462487846613, + -0.010300562717020512, + -0.03528602421283722, + -0.01326796505600214, + -0.07748488336801529, + -0.0021910390350967646, + 0.0759507268667221, + 0.07565401494503021, + -0.07489582151174545, + 0.0007993303588591516, + 0.07096122205257416, + -0.0006194335292093456, + -0.032771237194538116, + 0.03646988794207573, + 0.04490466043353081, + 0.02624848484992981, + 0.019564269110560417, + -0.016576692461967468, + -0.050340257585048676, + 0.07728425413370132, + 0.0597953125834465, + 0.055282317101955414, + 0.012104358524084091, + 0.13512252271175385, + -0.014580629765987396, + -0.023589059710502625, + 0.07624581456184387, + 0.060415904968976974, + 0.049815721809864044, + 0.048535458743572235, + -0.015179001726210117, + -0.02466471679508686, + 0.0889943540096283, + 0.090107761323452, + -0.05886403098702431, + 0.09015848487615585, + -0.04781990870833397, + -0.03570741042494774, + -0.029042387381196022, + -0.02366158738732338, + -0.025950253009796143, + -0.009127097204327583, + 0.02095147594809532, + -0.02223682962357998, + -0.09632288664579391, + -0.05694841966032982, + -0.0344218984246254, + 0.04264828935265541, + -0.013118724338710308, + 0.018683718517422676, + -0.0013527736300602555, + -0.07707489281892776, + 0.02210046537220478, + 0.03715139999985695, + 0.003360267961397767, + 0.010604473762214184, + 0.04891195148229599, + 0.04556404426693916, + 0.04771749675273895, + 0.06466788798570633, + 0.00664941594004631, + 0.03602726012468338, + 0.01830664463341236, + -0.061823539435863495, + 0.026635974645614624, + 0.039150793105363846, + 0.08025967329740524, + -0.09029283374547958, + 0.004603230394423008, + 0.03958304971456528, + 0.03157767653465271, + 0.06855856627225876, + -0.016292551532387733, + -0.05748038366436958, + 0.030437802895903587, + -0.03501903638243675, + 0.035837434232234955, + 0.0672442689538002, + -0.0667811781167984, + 0.027896462008357048, + -0.09992996603250504, + -0.052149444818496704, + 0.06778822839260101, + 0.10972992330789566, + -0.0645405650138855, + -0.03738125041127205, + -0.048281069844961166, + 0.02609955705702305, + 0.02550317719578743, + 0.02739507146179676, + -0.09392708539962769, + 0.04853036627173424, + -0.02122095786035061, + -0.04776681959629059, + 0.04720068350434303, + -2.124165554562296e-08, + -0.061248209327459335, + -0.06177153065800667, + 0.030174046754837036, + 0.07542409747838974, + -0.015172195620834827, + -0.010594780556857586, + -0.004538871347904205, + -0.09225784987211227, + -0.05441336706280708, + -0.0524030365049839, + 0.01454866211861372, + 0.06179950758814812, + 0.025171399116516113, + -0.01805649697780609, + 0.020809514448046684, + 0.02707596682012081, + -0.022958362475037575, + 0.019931254908442497, + -0.026895951479673386, + -0.04615301638841629, + -0.005347397644072771, + 0.015781575813889503, + 0.07455195486545563, + 0.035713259130716324, + 0.05134292319417, + 0.004255404695868492, + -0.09279812127351761, + -0.0018773804185912013, + 0.07896386831998825, + 0.028767310082912445, + 0.015204056166112423, + -0.031363602727651596, + 0.06251160800457001, + -0.03076268546283245, + -0.09160985052585602, + -0.0015964711783453822, + -0.07052634656429291, + 0.0016367066418752074, + 0.02303394302725792, + 0.04287845268845558, + -0.042196739464998245, + 0.03269902244210243, + -0.010938884690403938, + 0.008561799302697182, + -0.07485012710094452, + 0.001983118476346135, + 0.041289396584033966, + -0.0026160995475947857, + -0.04278154671192169, + -0.1289312243461609, + 0.039821937680244446, + -0.059762150049209595, + 0.04852418974041939, + 0.08757298439741135, + -0.02245187573134899, + 0.030195185914635658, + 0.050089143216609955, + 0.11607304960489273, + -0.03346703574061394, + 0.05159430950880051, + 0.14477813243865967, + 0.046033166348934174, + 0.001153259421698749, + -0.05572613328695297 + ], + "floppy-disk-bold||diskette,directory,directories,folders,documents,files,save,write": [ + 0.0003478151047602296, + -0.029222769662737846, + -0.026758868247270584, + 0.0005942113930359483, + 0.008352923206984997, + -0.03206446394324303, + 0.05481790006160736, + 0.04062937945127487, + 0.037218306213617325, + 0.008279477246105671, + 0.06037374585866928, + 0.10867246240377426, + 0.08258052915334702, + -0.04312988370656967, + -0.09919951111078262, + 0.004460299853235483, + -0.05805375799536705, + 0.03196434676647186, + 0.04046575725078583, + 0.04296288266777992, + 0.028143974021077156, + 0.02848879061639309, + 0.10034693777561188, + -0.05234076827764511, + 0.017082596197724342, + -0.02223070152103901, + 0.013499083928763866, + -0.017214903607964516, + 0.02247140184044838, + -0.05930685997009277, + -0.02894357033073902, + 0.043821170926094055, + 0.04929013550281525, + 0.012186532840132713, + 0.107867032289505, + 0.023704668506979942, + 0.021063219755887985, + -0.020381227135658264, + -0.07252025604248047, + -0.042219698429107666, + 0.0688348188996315, + -0.025651734322309494, + 0.006238685920834541, + 0.000136835195007734, + -0.035939771682024, + -0.04775213077664375, + -0.028560727834701538, + -0.06196192279458046, + -0.012206756509840488, + 0.0024702101945877075, + -0.006592289544641972, + -0.047040797770023346, + -0.06233049929141998, + 0.021096086129546165, + 0.023936349898576736, + 0.004735046997666359, + 0.06802988797426224, + 0.04478621110320091, + -0.02095397561788559, + -0.010905194096267223, + -0.012625847943127155, + -0.011056005023419857, + 0.04031907394528389, + -0.04361239820718765, + 0.03795832768082619, + 0.06933347135782242, + -0.00530001288279891, + 0.03949014097452164, + -0.0426827035844326, + -0.04652167111635208, + -0.0177803635597229, + 0.051184192299842834, + -0.03625526279211044, + 0.09177367389202118, + -0.06603758037090302, + -0.023886436596512794, + -0.01434505358338356, + 0.016457004472613335, + -0.0592864491045475, + -0.05928925797343254, + -0.06635258346796036, + -0.023910215124487877, + -0.0018301294185221195, + 0.01692003570497036, + 0.06752076745033264, + 0.08820285648107529, + -0.03975282981991768, + 0.02303873747587204, + -0.061174243688583374, + -0.050867363810539246, + 0.017513148486614227, + -0.06465739756822586, + 0.03566339612007141, + 0.016144614666700363, + -0.15365341305732727, + -0.04766432195901871, + 0.08908071368932724, + -0.002465039724484086, + -0.007327274419367313, + 0.010044755414128304, + -0.0002207810612162575, + 0.017338888719677925, + 0.04883706942200661, + -0.03727952763438225, + -0.05119045823812485, + -0.03611611947417259, + 0.046052221208810806, + -0.07717239856719971, + -0.06217094510793686, + -0.020549189299345016, + -0.06528015434741974, + -0.09426159411668777, + -0.048641666769981384, + 0.023076798766851425, + -0.029880987480282784, + -0.10739946365356445, + -0.09918476641178131, + 0.07877159118652344, + 0.006366488058120012, + 0.05337897688150406, + 0.03511010482907295, + -0.07600586116313934, + -0.01842673495411873, + -0.05051690340042114, + -0.0013569231377914548, + -0.09225761890411377, + 0.0318986214697361, + -1.1864999166818612e-33, + 0.08290800452232361, + 0.06056808680295944, + -0.010181188583374023, + 0.09387020766735077, + 0.05477386340498924, + -0.0033459365367889404, + -0.009099209681153297, + -0.08289394527673721, + -0.032264258712530136, + 0.0453263558447361, + 0.022683804854750633, + 0.036941129714250565, + -0.04015441983938217, + 0.02200980670750141, + 0.06320729851722717, + -0.0763518288731575, + 0.034156087785959244, + 0.026490656659007072, + -0.029174745082855225, + -0.08341191709041595, + 0.007776882033795118, + 0.1328994780778885, + -0.019217245280742645, + -0.08463075011968613, + -0.003993770573288202, + -0.08547698706388474, + -0.030999954789876938, + -0.08356150984764099, + 0.034353144466876984, + 0.027618244290351868, + -0.06944773346185684, + 0.00647255964577198, + 0.043390754610300064, + -0.024287035688757896, + 0.007023445330560207, + 0.010845289565622807, + -0.10210634022951126, + -0.05243360623717308, + -0.023362619802355766, + 0.023182885721325874, + -0.08101851493120193, + -0.09279406070709229, + 0.04083571210503578, + -0.016685765236616135, + 0.026994479820132256, + 0.1123846098780632, + 0.031329214572906494, + 0.0003246924316044897, + 0.016568688675761223, + 0.04608503356575966, + -0.03410395234823227, + -0.016063664108514786, + 0.02235301211476326, + 0.021005889400839806, + -0.008052585646510124, + -0.007349974010139704, + -0.004612318240106106, + -0.08152371644973755, + 0.0059899380430579185, + 0.054436445236206055, + 0.0791201964020729, + 0.07357565313577652, + 0.027892567217350006, + -0.044863197952508926, + -0.10502376407384872, + 0.015135389752686024, + 0.03638720139861107, + -0.017436571419239044, + 0.03200659900903702, + 0.029754342511296272, + 0.004030444659292698, + 0.010464129038155079, + 0.012188373133540154, + 0.05179577320814133, + -0.029541127383708954, + 0.06317931413650513, + -0.021222714334726334, + -0.03812652826309204, + -0.035395897924900055, + -0.09169713407754898, + -0.09445004165172577, + -0.08167029172182083, + -0.15124323964118958, + -0.02153947949409485, + 0.042706675827503204, + 0.04905251786112785, + 0.014953769743442535, + -0.008476052433252335, + -0.00020582115394063294, + -0.017268618568778038, + -0.01956515572965145, + -0.011017702519893646, + -0.013346186839044094, + -0.08142151683568954, + -0.08779066801071167, + -1.0861590760471976e-33, + 0.01174959447234869, + -0.03656037524342537, + -0.030904510989785194, + -0.022193321958184242, + -0.05362125113606453, + 0.03237832337617874, + 0.025018148124217987, + -0.010524041019380093, + -0.031148849055171013, + 0.0034269762691110373, + -0.0713299959897995, + 0.014979682862758636, + -0.02325204759836197, + -0.06931976228952408, + 0.036892764270305634, + 0.07047365605831146, + 0.007240720558911562, + -0.006323785521090031, + 0.012675452046096325, + -0.02498224377632141, + -0.11931537091732025, + -0.06758151203393936, + 0.0005999501445330679, + 0.11333407461643219, + 0.04302629828453064, + 0.018689682707190514, + -0.020647011697292328, + -0.0005573686794377863, + 0.014933556318283081, + 0.07218485325574875, + -0.0010104773100465536, + 0.010492785833775997, + 0.0023622617591172457, + 0.0004133370239287615, + -0.01262994110584259, + -0.05219987407326698, + 0.047765251249074936, + -0.09881255030632019, + -0.00160514866001904, + -0.022776681929826736, + 0.0012608662946149707, + -0.017683828249573708, + 0.03124593198299408, + 0.04562162607908249, + -0.040032606571912766, + -0.021006789058446884, + -0.05653614178299904, + -0.040545232594013214, + 0.04443740099668503, + 0.033315274864435196, + 0.1062927320599556, + 0.003882895689457655, + 0.06014479696750641, + -0.009043964557349682, + 0.013544619083404541, + -0.0059929415583610535, + -0.037444595247507095, + -0.0068443636409938335, + -0.013595454394817352, + 0.014744759537279606, + -0.03795875236392021, + -0.03394397348165512, + -0.047267768532037735, + 0.025284620001912117, + -0.028459861874580383, + -0.08880636841058731, + 0.10891889780759811, + -0.03927430510520935, + -0.09337704628705978, + -0.0026223440654575825, + 0.04028117284178734, + 0.018060922622680664, + 0.07296343147754669, + 0.00714079150930047, + -0.01333299558609724, + -0.0037669430021196604, + -0.03590260446071625, + -0.051759108901023865, + -0.020280804485082626, + 0.04229838773608208, + -0.017526181414723396, + 0.061138078570365906, + -0.038160938769578934, + 0.06527072936296463, + -0.07348200678825378, + -0.035120826214551926, + -0.016649696975946426, + 0.003691517747938633, + 0.05368402227759361, + -0.07817486673593521, + -0.0025231095496565104, + 0.0420016385614872, + 0.05544528737664223, + 0.08226270973682404, + 0.009485889226198196, + -2.175251800906608e-08, + -0.02520187571644783, + -0.049951646476984024, + 0.02865314669907093, + -0.01625489629805088, + 0.05390872806310654, + -0.10523852705955505, + -0.02257910743355751, + 0.05307941511273384, + -0.06508933752775192, + -0.01792118139564991, + 0.09733759611845016, + -0.03800375759601593, + -0.07022807002067566, + -0.05497130751609802, + 0.05876003950834274, + 0.06298989057540894, + 0.03341599553823471, + 0.020982641726732254, + -0.00888118240982294, + -0.00604548305273056, + 0.04930455610156059, + 0.04065367206931114, + 0.03672809526324272, + 0.016064085066318512, + 0.03719270974397659, + 0.04362527281045914, + -0.020952796563506126, + -0.022574407979846, + 0.036203768104314804, + 0.026136141270399094, + 0.08276528120040894, + 0.0031602908857166767, + 0.028821401298046112, + 0.05412162095308304, + -0.036359287798404694, + 0.039250295609235764, + 0.05242681875824928, + 0.09266414493322372, + 0.02237914316356182, + 0.13981084525585175, + 0.012797513976693153, + 0.019267695024609566, + -0.015854353085160255, + 0.019047245383262634, + 0.028184864670038223, + -0.04973779246211052, + -0.018176749348640442, + 0.01745542138814926, + -0.06051347032189369, + -0.08037523180246353, + -0.06377840787172318, + 0.06441591680049896, + -0.009486738592386246, + 0.15283022820949554, + -0.017917053773999214, + -0.07063374668359756, + -0.051032695919275284, + 0.14551682770252228, + 0.002761079464107752, + 0.08680223673582077, + 0.04975702241063118, + 0.05806458368897438, + 0.0845637321472168, + 0.04006029665470123 + ], + "floppy-disk-back-bold||*updated*,diskette,directory,directories,folders,documents,files,save,write": [ + -0.010757350362837315, + -0.017941169440746307, + -0.027189411222934723, + 0.007268450688570738, + 0.017942646518349648, + -0.020311277359724045, + 0.049819618463516235, + 0.01640111207962036, + 0.013467046432197094, + 0.021197739988565445, + 0.058389484882354736, + 0.11755891144275665, + 0.07701703161001205, + -0.07670406997203827, + -0.1048605740070343, + 0.0012950821546837687, + -0.05158520117402077, + 0.06003682687878609, + 0.02787778526544571, + 0.03529030829668045, + -0.02447250857949257, + 0.03869766741991043, + 0.06544816493988037, + -0.017815591767430305, + 0.01726655289530754, + -0.01370447687804699, + 0.0071753547526896, + -0.040991947054862976, + 0.004815778695046902, + -0.06875941902399063, + -0.05094010755419731, + 0.04496422037482262, + 0.049335215240716934, + -0.007307665888220072, + 0.08603014051914215, + 0.04374249652028084, + 0.003551159519702196, + -0.003359650494530797, + -0.0694795772433281, + -0.04350360855460167, + 0.042385779321193695, + -0.02675662562251091, + -0.00046499574091285467, + -0.0025679573882371187, + -0.04227821156382561, + -0.06186309829354286, + -0.022814948111772537, + -0.06412896513938904, + -0.004127960652112961, + 0.00536304572597146, + 0.018441537395119667, + -0.05781984329223633, + -0.07683566957712173, + 0.015978273004293442, + 0.032169368118047714, + 0.016245964914560318, + 0.08019555360078812, + 0.04239781200885773, + -0.03824063390493393, + 0.0013351577799767256, + 0.0055190203711390495, + -0.00464896485209465, + 0.01843731477856636, + -0.03939754143357277, + 0.03757843002676964, + 0.06074918061494827, + -0.0028404968325048685, + 0.00832848809659481, + -0.026716846972703934, + -0.05202155560255051, + -0.01307083573192358, + 0.05979621782898903, + -0.015538472682237625, + 0.0747361034154892, + -0.05952375754714012, + -0.01517060399055481, + 0.009772115387022495, + 0.019833823665976524, + -0.061630040407180786, + -0.057501643896102905, + -0.035317081958055496, + -0.027012420818209648, + -0.007906553335487843, + 0.014885973185300827, + 0.06288828700780869, + 0.07079008966684341, + -0.04368633031845093, + 0.022848283872008324, + -0.053104281425476074, + -0.05369950085878372, + 0.0303279310464859, + -0.08665263652801514, + 0.06208013743162155, + 0.0019356862176209688, + -0.160774827003479, + -0.029023345559835434, + 0.08182750642299652, + -0.0029774585273116827, + 0.008811200968921185, + 0.03187933191657066, + -0.007824087515473366, + 0.028319841250777245, + 0.05083126574754715, + -0.028735671192407608, + -0.02696649171411991, + -0.02637478895485401, + 0.05347544327378273, + -0.06784553080797195, + -0.06894374638795853, + -0.027041012421250343, + -0.07056628912687302, + -0.08635001629590988, + -0.044414110481739044, + 0.01999780163168907, + -0.010563898831605911, + -0.1074620708823204, + -0.09222349524497986, + 0.08163630217313766, + -0.012063105590641499, + 0.03801780566573143, + 0.05161653831601143, + -0.0676150768995285, + 0.004810464568436146, + -0.06366163492202759, + -0.007109465543180704, + -0.08593560755252838, + 0.04743798449635506, + -1.1183689069566745e-33, + 0.07216920703649521, + 0.06393338739871979, + -0.01276407204568386, + 0.08186046034097672, + 0.055971935391426086, + 0.009586118161678314, + 0.0026757449377328157, + -0.09515155851840973, + -0.022311287000775337, + 0.03286705166101456, + 0.044949766248464584, + 0.06798544526100159, + -0.0460011325776577, + 0.029818566516041756, + 0.04714212566614151, + -0.08689150959253311, + 0.032383088022470474, + 0.05760578066110611, + -0.0071677230298519135, + -0.06958910822868347, + 0.01115631964057684, + 0.12930043041706085, + -0.02897932194173336, + -0.08995185792446136, + 0.03337201848626137, + -0.08079151064157486, + -0.006553436163812876, + -0.07272552698850632, + 0.020183982327580452, + 0.01690947450697422, + -0.052464067935943604, + 0.012958329170942307, + 0.06029467657208443, + -0.029688015580177307, + 0.0006769036990590394, + 0.005208869464695454, + -0.1273263394832611, + -0.054876308888196945, + -0.030070733278989792, + 0.014182246290147305, + -0.06199914589524269, + -0.08975572139024734, + -0.0026400417555123568, + -0.020121349021792412, + 0.0458100251853466, + 0.08293657749891281, + 0.01995287835597992, + -0.012398943305015564, + 0.009052085690200329, + 0.02327960915863514, + -0.01380239799618721, + 0.009053871966898441, + -0.00908238347619772, + -0.011006948538124561, + -0.04598849639296532, + -0.03208664059638977, + 0.0069269947707653046, + -0.05272657796740532, + 0.013464617542922497, + 0.06091683357954025, + 0.10512153804302216, + 0.06319664418697357, + 0.02120903506875038, + -0.03933515027165413, + -0.11525697261095047, + 0.0054694111458957195, + 0.04238467663526535, + -0.01890118420124054, + 0.024905100464820862, + 0.041610877960920334, + -0.006593660917133093, + -0.003117145737633109, + -0.011447365395724773, + 0.049101997166872025, + -0.03365037962794304, + 0.047856464982032776, + -0.033579111099243164, + -0.04214688390493393, + -0.036902397871017456, + -0.09644481539726257, + -0.08720820397138596, + -0.09524866938591003, + -0.1579459309577942, + -0.01710575446486473, + 0.06594568490982056, + 0.04907979071140289, + 0.010836822912096977, + -0.014378379099071026, + -0.0009751211619004607, + -0.011473401449620724, + -0.035770997405052185, + -0.014297562651336193, + -0.017403217032551765, + -0.08533929288387299, + -0.0724601075053215, + -1.3469184368771287e-33, + 0.015339018777012825, + -0.04864070937037468, + -0.03312460333108902, + -0.017997538670897484, + -0.0681615024805069, + 0.019385788589715958, + 0.006298330146819353, + 0.03302622586488724, + -0.020182786509394646, + 0.008953687734901905, + -0.04420284181833267, + 0.02187652699649334, + -0.01677773706614971, + -0.070472851395607, + 0.04279335215687752, + 0.09517066180706024, + -0.006041540764272213, + -0.010720288380980492, + -0.013620835728943348, + 0.008561922237277031, + -0.11409509927034378, + -0.061354417353868484, + -0.02047891914844513, + 0.11466030031442642, + 0.028971027582883835, + 0.0036621426697820425, + -0.008821197785437107, + 0.012072389014065266, + 0.030060095712542534, + 0.04370684549212456, + -0.01590362936258316, + -0.019239816814661026, + -0.0037151549477130175, + 0.007085547316819429, + -0.02901800535619259, + -0.03708058223128319, + 0.04111916944384575, + -0.09846934676170349, + -0.03167983889579773, + 0.013967696577310562, + 0.017558284103870392, + 0.0007901471108198166, + 0.023892680183053017, + 0.059182602912187576, + -0.03299926966428757, + -0.010273460298776627, + -0.10129903256893158, + -0.029815511777997017, + 0.03090880997478962, + 0.028308972716331482, + 0.11504033952951431, + -0.01639181189239025, + 0.057718731462955475, + 0.0012336717918515205, + 0.025828108191490173, + 0.007948160171508789, + -0.0027645512018352747, + 0.01628146320581436, + -0.019839683547616005, + 0.029754482209682465, + -0.04226713255047798, + -0.04590911418199539, + -0.029494425281882286, + 0.009775951504707336, + -0.03378940001130104, + -0.05973948538303375, + 0.09341295808553696, + -0.06500042974948883, + -0.11144765466451645, + 0.00014518028183374554, + 0.05371293053030968, + 0.024569764733314514, + 0.039397381246089935, + 0.007836946286261082, + -0.004610456060618162, + -0.024553392082452774, + -0.03113940916955471, + -0.06306398659944534, + -0.023398729041218758, + 0.022109540179371834, + -0.016108257696032524, + 0.0543975755572319, + -0.011181685142219067, + 0.06490684300661087, + -0.06205730140209198, + -0.03429167717695236, + -0.029470061883330345, + 0.014033593237400055, + 0.0520414374768734, + -0.08065295219421387, + -0.015920627862215042, + 0.032958365976810455, + 0.04666756093502045, + 0.0730782076716423, + 0.02207411825656891, + -2.354030392837103e-08, + -0.04368048161268234, + -0.034825585782527924, + 0.03504250571131706, + 0.006763707380741835, + 0.07571028172969818, + -0.10558382421731949, + -0.025316325947642326, + 0.04171615093946457, + -0.06116017326712608, + -0.07245444506406784, + 0.0932769700884819, + -0.045880235731601715, + -0.06291317939758301, + -0.030279649421572685, + 0.06270136684179306, + 0.07314519584178925, + 0.02200509048998356, + 0.030741441994905472, + -0.0008100637933239341, + -0.004636439960449934, + 0.02761562541127205, + 0.048154477030038834, + 0.04993518441915512, + 0.046093426644802094, + 0.05233648791909218, + 0.038327090442180634, + -0.0092308996245265, + 0.009141821414232254, + 0.04620864987373352, + 0.02021618001163006, + 0.1021643728017807, + -0.00910525768995285, + 0.031412314623594284, + 0.04219580441713333, + -0.033537689596414566, + 0.048458535224199295, + 0.05084196850657463, + 0.08845438063144684, + 0.03092304803431034, + 0.16185322403907776, + 0.012586080469191074, + 0.023028869181871414, + -0.011495289392769337, + 0.026050874963402748, + 0.011744911782443523, + -0.0543954111635685, + -0.03250908479094505, + 0.00343720824457705, + -0.07236193120479584, + -0.1166348084807396, + -0.05401216074824333, + 0.03890058770775795, + 0.0014347152318805456, + 0.14024148881435394, + -0.0048716929741203785, + -0.05402552708983421, + -0.04754931479692459, + 0.144215926527977, + -0.0012239032657817006, + 0.0945664644241333, + 0.05322887748479843, + 0.04385387524962425, + 0.07340626418590546, + 0.03444875776767731 + ], + "flow-arrow-bold||*updated*,flowchart,arrowhead": [ + 0.016995294019579887, + -0.04230066016316414, + -0.02281724289059639, + 0.06062105670571327, + 0.014849591068923473, + -0.013673575595021248, + -0.0022951129358261824, + -0.07186733186244965, + 0.06386499106884003, + -0.0326518751680851, + -0.06549196690320969, + 0.04438671097159386, + -0.01767662912607193, + -0.05692224204540253, + 0.005917549133300781, + 0.03538338840007782, + -0.07148435711860657, + 0.009885295294225216, + 0.043805040419101715, + -0.06357936561107635, + -0.03592090308666229, + 0.015434322878718376, + 0.027531271800398827, + 0.05996667966246605, + 0.006829659920185804, + 0.05174051970243454, + -0.0035897137131541967, + 0.009965075179934502, + 0.028925998136401176, + -0.05220773443579674, + 0.0011570841306820512, + -0.010796000249683857, + 0.02411544881761074, + 0.03246811777353287, + -0.09197935461997986, + -0.011859497055411339, + 0.03442879021167755, + 0.06612040847539902, + -0.016350386664271355, + 0.11861680448055267, + 0.041580379009246826, + 0.014515173621475697, + 0.005348161328583956, + -0.03558369353413582, + -0.0116708530113101, + 0.047043778002262115, + -0.1059337705373764, + -0.08064001053571701, + -0.03048396110534668, + 0.07155585289001465, + -0.023257039487361908, + -0.11893349140882492, + -0.044342074543237686, + -0.005558663047850132, + 0.05325010418891907, + -0.0012568641686812043, + -0.014234255999326706, + -0.06368375569581985, + 0.10646948963403702, + -0.0027680392377078533, + 0.01064498070627451, + 0.03187641128897667, + 0.07305001467466354, + 0.04686451330780983, + -0.009507892653346062, + 0.006057530175894499, + -0.014694551937282085, + 0.05608675628900528, + 0.01297930907458067, + 0.02340812049806118, + 0.0799277126789093, + -0.014703495427966118, + -0.00671462481841445, + -0.1113116443157196, + -0.031163783743977547, + -0.025353489443659782, + 0.07294730842113495, + 0.05922155827283859, + -0.05286141857504845, + 0.01827802136540413, + -0.042595136910676956, + -0.03122672624886036, + -0.060391660779714584, + -0.015327869914472103, + 0.0013385799247771502, + 0.10023082047700882, + -0.06688765436410904, + -0.1128532811999321, + -0.07175520807504654, + -0.03152073174715042, + -0.07792910188436508, + 0.018701989203691483, + -0.005393992178142071, + 0.017435824498534203, + 0.10351745039224625, + 0.03181726485490799, + 0.00959300808608532, + -0.01452585682272911, + -0.10099995136260986, + 0.04790972173213959, + 0.04131566733121872, + 0.011414765380322933, + -0.008398197591304779, + 0.034550782293081284, + 0.07949595153331757, + 0.06281478703022003, + 0.004930832888931036, + 0.03808840364217758, + 0.017350884154438972, + -0.010531839914619923, + -0.028718043118715286, + -0.15380333364009857, + 0.048349443823099136, + -0.046587660908699036, + -0.05998443439602852, + 0.0003345830482430756, + -0.09670574218034744, + -0.0319971926510334, + -0.005546435713768005, + 0.07395122200250626, + 0.07945241034030914, + -0.008637456223368645, + -0.06799434125423431, + -0.12453870475292206, + -0.01115153357386589, + -0.01483242493122816, + 0.042744167149066925, + -2.264865373347611e-33, + 0.03244876489043236, + 0.0011913422495126724, + -0.02375689335167408, + 0.05605093017220497, + 0.026080496609210968, + 0.027202989906072617, + -0.025795549154281616, + -0.11454777419567108, + -0.04866926372051239, + 0.03654679283499718, + 0.09146706759929657, + 0.029310984537005424, + -0.12512221932411194, + 0.07053520530462265, + -0.0803767666220665, + -0.09154118597507477, + 0.02925264649093151, + 0.032740768045186996, + -0.09520968794822693, + 0.005932033061981201, + 2.2272250134847127e-05, + -0.042542681097984314, + -0.141012504696846, + -0.06664356589317322, + -0.048520997166633606, + 0.006733286660164595, + 0.032950472086668015, + 0.07244260609149933, + -0.05668400228023529, + 0.019299341365695, + -0.029500029981136322, + 0.03960173949599266, + 0.05128687992691994, + 0.011157232336699963, + -0.07165616005659103, + -0.05664936825633049, + -0.059083178639411926, + -0.006553794723004103, + 0.027169805020093918, + -0.002935871947556734, + -0.019308021292090416, + -0.002474220935255289, + -0.09088745713233948, + 0.01666983775794506, + -0.014179046265780926, + 0.08836868405342102, + -0.07456358522176743, + -0.07126596570014954, + 0.032230623066425323, + -0.009622504934668541, + 0.04335639253258705, + 0.08946531265974045, + -0.004015340935438871, + 0.005514676216989756, + 0.03463384509086609, + -0.05901629105210304, + -0.04016655310988426, + 0.1529199630022049, + -0.010191239416599274, + 0.00023924722336232662, + -0.02277349680662155, + 0.052993860095739365, + -0.005767999216914177, + -0.02396179921925068, + 0.0337115153670311, + 0.11996513605117798, + -0.037439338862895966, + 0.07280679792165756, + 0.01875482127070427, + -0.06835711002349854, + -0.003433298086747527, + 0.03230755031108856, + -0.012447670102119446, + 0.008448092266917229, + 0.033114757388830185, + 0.01929461769759655, + -0.009414395317435265, + 0.03759831190109253, + 0.07678048312664032, + -0.05210331082344055, + -0.09659291058778763, + -0.017813466489315033, + -0.031162379309535027, + 0.12494202703237534, + 0.08183688670396805, + -0.015250938944518566, + 0.020129919052124023, + 0.0055218166671693325, + -0.049425046890974045, + 0.06778956204652786, + -0.020815234631299973, + 0.017655348405241966, + 0.02569456957280636, + -0.010661019012331963, + -0.015773698687553406, + -3.25635973118893e-34, + -0.018054209649562836, + 0.09377460926771164, + -0.0468251034617424, + 0.040335677564144135, + -0.03329521417617798, + 0.008555928245186806, + 0.04701286926865578, + 0.034730806946754456, + 0.02978740818798542, + 0.019444657489657402, + 0.020368365570902824, + 0.043862540274858475, + -0.1087932139635086, + -0.04475003853440285, + 0.0934194028377533, + -0.00589921697974205, + 0.03959520533680916, + 0.017369071021676064, + -0.0648377537727356, + -0.03553412854671478, + -0.004677246790379286, + 0.02116546407341957, + -0.12253432720899582, + 0.01680799014866352, + 0.0046411301009356976, + 0.03270509093999863, + 0.014675597660243511, + -0.008404459804296494, + -0.020412016659975052, + -0.06867610663175583, + 0.013495509512722492, + -0.04862276837229729, + -0.04855956882238388, + 0.042669568210840225, + -0.02033740095794201, + 0.005405701231211424, + 0.05609734356403351, + -0.04414887726306915, + -0.0077068498358130455, + 0.045632146298885345, + -0.018662136048078537, + -0.005050349980592728, + 0.0026582865975797176, + -0.01431577280163765, + 0.008265988901257515, + 0.09292981028556824, + 0.02697807177901268, + -0.07391320168972015, + 0.003695734078064561, + 0.04261239245533943, + 0.001900301082059741, + 0.01573691889643669, + 0.03446194902062416, + 0.028013959527015686, + -0.02388763427734375, + -0.013435112312436104, + 0.08277949690818787, + 0.07031971216201782, + -0.010139712132513523, + -0.0464857816696167, + -0.020765693858265877, + 0.03143223375082016, + 0.03197118267416954, + -0.03265966475009918, + 0.0046814968809485435, + -0.015101080760359764, + 0.030471481382846832, + -0.09721176326274872, + 0.07263872772455215, + -0.03009035438299179, + 0.06785178184509277, + 0.05733455717563629, + 0.0025717539247125387, + 0.037631481885910034, + 0.0926871970295906, + -0.051830366253852844, + 0.017574254423379898, + 0.010864440351724625, + -0.010935159400105476, + 0.029378658160567284, + -0.06464015692472458, + 0.042880069464445114, + 0.05753903090953827, + 0.03641171753406525, + 0.028742045164108276, + 0.005154985934495926, + -0.04263925924897194, + -0.034159813076257706, + 0.0009511685348115861, + -0.03520316258072853, + -0.040191225707530975, + -0.03550449386239052, + -0.06077060475945473, + -0.06880074739456177, + -0.05671229958534241, + -1.952130901372584e-08, + -0.05048366263508797, + -0.0006924568442627788, + -0.055631253868341446, + -0.05025586485862732, + 0.02244008518755436, + -0.01764395274221897, + -0.04204849526286125, + 0.01974186673760414, + -0.00671786954626441, + -0.059940315783023834, + 0.07186862826347351, + 0.07845894992351532, + 0.022965189069509506, + -0.06566193699836731, + 0.045224107801914215, + -0.01648322306573391, + -0.042041029781103134, + 0.020653964951634407, + 0.0030291194561868906, + -0.09352242201566696, + -0.002271615667268634, + 0.07091070711612701, + 0.005710214842110872, + 0.054945845156908035, + -0.03493176028132439, + -0.08928688615560532, + 0.034340374171733856, + 0.05350283160805702, + 0.015631798654794693, + -0.0065490566194057465, + 0.01756977289915085, + 0.010524651035666466, + 0.00964442826807499, + 0.03378044441342354, + -0.004903717897832394, + -0.09089212864637375, + -0.040400758385658264, + 0.043757326900959015, + -0.01990378089249134, + 0.1011882871389389, + -0.028016142547130585, + -0.004130545537918806, + 0.006384664215147495, + -0.044558122754096985, + -0.10549979656934738, + 0.07842627167701721, + -0.005381133873015642, + -0.031089475378394127, + -0.11871851980686188, + -0.04369679465889931, + -0.020231248810887337, + 0.05757574364542961, + 0.008912865072488785, + 0.12615174055099487, + 0.0065025873482227325, + -0.023970099166035652, + 0.008079414255917072, + 0.01345387939363718, + -0.054904378950595856, + -0.0395389087498188, + 0.011457395739853382, + 0.01910565048456192, + 0.08091021329164505, + -0.0055954731069505215 + ], + "flower-bold||plants,green,environmental": [ + 0.007968442514538765, + 0.019660327583551407, + -0.006785515230149031, + -0.004588612820953131, + 0.059383075684309006, + 0.06925055384635925, + 0.03491199016571045, + -0.09937923401594162, + 0.020959891378879547, + -0.021618610247969627, + 0.07666909694671631, + -0.05515717715024948, + -0.0075873942114412785, + -0.0534784309566021, + -0.005311375018209219, + 0.10286591947078705, + -0.017018821090459824, + 0.012637409381568432, + -0.06942145526409149, + 0.05102475360035896, + 0.013176662847399712, + 0.07945088297128677, + 0.03311588615179062, + 0.07785967737436295, + -0.011320929042994976, + 0.020788071677088737, + -0.03251851350069046, + 0.04984952136874199, + -0.004812831524759531, + -0.10933907330036163, + -0.021215097978711128, + 0.08215390890836716, + 0.10679100453853607, + 0.0062135253101587296, + 0.036084290593862534, + 0.010208609513938427, + -0.04703963175415993, + -0.04955984652042389, + 0.04991096258163452, + 0.05583677068352699, + -0.01287198904901743, + -0.05818922072649002, + -0.007489638403058052, + 0.005244490224868059, + -0.051991820335388184, + -0.002467562211677432, + -0.016487883403897285, + 0.01420122105628252, + 0.0246718917042017, + 0.013112125918269157, + -0.03043033741414547, + -0.06757628917694092, + -0.17511452734470367, + 0.024964261800050735, + 0.019183030351996422, + -0.007781876251101494, + -0.013986870646476746, + 0.031907353550195694, + 0.017791295424103737, + 0.0018648880068212748, + 0.07266340404748917, + 0.028250165283679962, + 0.02221706137061119, + 0.06670600175857544, + -0.03516997769474983, + 0.012639262713491917, + -0.08855599910020828, + 0.081999771296978, + 0.06899843364953995, + -0.06454318761825562, + 0.06051891669631004, + 0.03209880739450455, + -0.0315098874270916, + -0.03563974052667618, + -0.0831279307603836, + 0.05638113245368004, + -0.01551580149680376, + 0.025919590145349503, + -0.03833423927426338, + -0.059151485562324524, + -0.030354691669344902, + -0.030319226905703545, + -0.05339347943663597, + 0.01900622621178627, + 0.09433590620756149, + 0.039176300168037415, + -0.0885000079870224, + -0.048518724739551544, + -0.041457224637269974, + -0.049965064972639084, + 0.01217589620500803, + 0.001792260678485036, + -0.016401687636971474, + 0.06160702556371689, + -0.10565011948347092, + 0.07176241278648376, + 0.08045420050621033, + -0.13379865884780884, + -0.019517889246344566, + 0.0022935655433684587, + 0.041851501911878586, + 0.021138567477464676, + 0.030684897676110268, + -0.0026566977612674236, + -0.061358775943517685, + -0.042229630053043365, + -0.048760149627923965, + -0.06691852957010269, + -0.02472071349620819, + -0.013009010814130306, + -0.036598410457372665, + -0.09652907401323318, + -0.058690931648015976, + -0.024760350584983826, + -0.07029790431261063, + -0.020428365096449852, + -0.09089686721563339, + -0.05980801209807396, + 0.0742308720946312, + -0.0026002665981650352, + -0.041897963732481, + -0.07625549286603928, + -0.024427302181720734, + -0.01618964597582817, + -0.051155272871255875, + -0.010772239416837692, + -0.062332455068826675, + -2.368282060255094e-33, + 0.026203392073512077, + 0.018687386065721512, + 0.021076207980513573, + 0.08046764135360718, + 0.020681193098425865, + -0.0607481449842453, + -0.002383200451731682, + -0.08162051439285278, + -0.14502523839473724, + -0.021209770813584328, + -0.002536843763664365, + 0.006004828494042158, + -0.041492559015750885, + 0.03466610983014107, + 0.03407145291566849, + -0.04498741775751114, + -0.0319252647459507, + -0.0452272891998291, + -0.03415553644299507, + 0.06521661579608917, + -0.010714181698858738, + 0.08319909125566483, + -0.12311314791440964, + -0.01517288014292717, + -0.05816134437918663, + -0.08316143602132797, + 0.046723801642656326, + -0.03196394443511963, + -0.03931570425629616, + 0.016547396779060364, + 0.11664262413978577, + -0.02511727064847946, + 0.06548581272363663, + 0.06850015372037888, + -0.01748633198440075, + -0.016697533428668976, + -0.06223783269524574, + -0.053297627717256546, + 0.0064634233713150024, + 0.09924206137657166, + -0.02504711225628853, + 0.022546088322997093, + 0.05677314102649689, + 0.08995568007230759, + 0.05813959240913391, + 0.09227261692285538, + -0.030664924532175064, + -0.016034405678510666, + 0.08211532235145569, + 0.025800907984375954, + -0.040079716593027115, + 0.02034728229045868, + 0.046222057193517685, + 0.0303121879696846, + -0.01626746915280819, + -0.004141912795603275, + -0.0294182151556015, + 0.0862320140004158, + -0.013142058625817299, + -0.0012823754223063588, + 0.007195526733994484, + 0.06029824540019035, + -0.01998179219663143, + -0.08315692842006683, + 0.057402122765779495, + 0.07493974268436432, + -0.1559688299894333, + 0.04851541295647621, + 0.04572036489844322, + 0.0596364289522171, + 0.05446501076221466, + 0.006735611706972122, + 0.029675601050257683, + 0.007057027891278267, + 0.07463478296995163, + 0.07072007656097412, + 0.0597519725561142, + 0.02781090699136257, + 0.026276327669620514, + -0.012091455981135368, + -0.06001148372888565, + 0.01675591804087162, + -0.0653521865606308, + 0.04060186818242073, + -0.051911890506744385, + 0.020253486931324005, + -0.004796729423105717, + -0.02128543145954609, + -0.015287823975086212, + 0.06198827177286148, + 0.00916274357587099, + 0.03510399907827377, + -0.011226956732571125, + -0.08170340955257416, + -0.135502889752388, + -3.938649942773543e-34, + 0.041890550404787064, + 0.06493490934371948, + 0.027744032442569733, + 0.016584031283855438, + 0.016393888741731644, + 0.03438422828912735, + -0.08880725502967834, + 0.004613804165273905, + 0.022733543068170547, + 0.06311687082052231, + -0.05153423547744751, + 0.07328412681818008, + -0.04019879177212715, + -0.03485685959458351, + -0.004006999544799328, + -0.0031644385308027267, + 0.06056329235434532, + 0.05006874352693558, + -0.045399945229291916, + 0.02010439522564411, + -0.11732306331396103, + 0.026662545278668404, + -0.03754422813653946, + -0.003705375362187624, + -0.09085408598184586, + 0.05603020638227463, + 0.012609230354428291, + -0.04477488622069359, + -0.021092675626277924, + -0.04892411455512047, + 0.008905516937375069, + -0.03791136294603348, + -0.056156788021326065, + 0.11832919716835022, + -0.06555399298667908, + 0.027469024062156677, + -0.004347039386630058, + -0.09861695021390915, + 0.038218218833208084, + 0.08062869310379028, + -0.006097358651459217, + -0.02204013429582119, + 0.056852929294109344, + 0.05393601581454277, + 0.038608744740486145, + -0.08903798460960388, + -0.07416606694459915, + 0.03567744791507721, + -0.008615214377641678, + 0.0858018696308136, + 0.018618999049067497, + 0.03363281488418579, + 0.00948744174093008, + 0.027832524850964546, + 0.02525405026972294, + -0.06724773347377777, + 0.031562693417072296, + 0.013159052468836308, + -0.05833813548088074, + 0.023248380050063133, + 0.02963978238403797, + 0.008168820291757584, + -0.035940784960985184, + 0.06242372840642929, + -0.010762135498225689, + -0.01707591488957405, + -0.010783016681671143, + -0.01002210658043623, + 0.011357227340340614, + 0.016242755576968193, + -0.010946869850158691, + 0.05638078600168228, + 0.012324326671659946, + 0.015690350905060768, + 0.0418790765106678, + -0.016799068078398705, + 0.01356138288974762, + -0.005317064467817545, + -0.029854079708456993, + 0.06545785069465637, + -0.049308665096759796, + 0.0019759146962314844, + -0.027688369154930115, + -0.04630601033568382, + -0.009913052432239056, + 0.011271313764154911, + -0.0734427347779274, + -0.002502867951989174, + 0.04750342667102814, + -0.024518072605133057, + -0.029920432716608047, + 0.03741075471043587, + -0.023335346952080727, + -0.010293766856193542, + 0.060392118990421295, + -1.8623037334464243e-08, + 0.05812474340200424, + -0.06337526440620422, + -0.022128937765955925, + -0.0510571226477623, + 0.013431503437459469, + -0.07571354508399963, + -0.03957377001643181, + -0.07961784303188324, + -0.008790956810116768, + 0.0333261713385582, + 0.04581127688288689, + 0.06048869714140892, + -0.052551332861185074, + -0.01760021410882473, + 0.054011620581150055, + -0.06927666068077087, + 0.03983630612492561, + 0.02620435319840908, + -0.028537968173623085, + -0.025970712304115295, + -0.029121143743395805, + 0.04151814430952072, + -0.04641924425959587, + -0.041357509791851044, + 0.033084627240896225, + 0.02301672287285328, + 0.006017756182700396, + -0.03608289361000061, + 0.026980264112353325, + 0.03912317752838135, + 0.0925697311758995, + 0.08639819920063019, + -0.01961478218436241, + -0.006325094029307365, + -0.10681948810815811, + -0.06411998718976974, + 0.021544162184000015, + 0.012627406045794487, + -0.09708259254693985, + 0.04588354751467705, + 0.0296054407954216, + -0.023524755612015724, + 0.003342143725603819, + -0.010634910315275192, + 0.028637271374464035, + -0.02657540887594223, + 0.0811798945069313, + 0.0021011726930737495, + -0.027012014761567116, + -0.002143504098057747, + -0.04083310067653656, + -0.012581895105540752, + 0.034443702548742294, + 0.024057429283857346, + -0.09954015165567398, + -0.0637131854891777, + 0.014436923898756504, + 0.08331840485334396, + -0.000838042120449245, + 0.022356923669576645, + 0.034939058125019073, + 0.012350348755717278, + 0.09094300121068954, + 0.03700001537799835 + ], + "flower-lotus-bold||plants,green,environmental,spirituality": [ + 0.011172558180987835, + 0.017381465062499046, + 0.023049917072057724, + 0.04701361805200577, + 0.023915670812129974, + 0.08868224173784256, + 0.03368344530463219, + -0.10788692533969879, + 0.031094839796423912, + -0.05281298980116844, + 0.07525758445262909, + -0.10046413540840149, + -0.04407403990626335, + -0.06523944437503815, + 0.008657991886138916, + 0.1183132454752922, + -0.016281936317682266, + 0.020501645281910896, + -0.034427665174007416, + 0.03257572278380394, + -0.026774365454912186, + 0.07197918742895126, + 0.036814890801906586, + 0.0571393184363842, + 0.026655206456780434, + 0.025977306067943573, + -0.06883995234966278, + 0.004816977772861719, + 0.014257160015404224, + -0.06171634793281555, + -0.018195541575551033, + 0.0922747403383255, + 0.11530882865190506, + 0.05840763449668884, + 0.0073954570107162, + 0.022380825132131577, + -0.002638362580910325, + -0.05709684267640114, + 0.09607525169849396, + 0.05118553340435028, + -0.007321741431951523, + -0.001889311708509922, + -0.022458668798208237, + -0.008564462885260582, + 0.0004229160840623081, + 0.039433278143405914, + -0.017913926392793655, + -0.014297847636044025, + -0.008897829800844193, + -0.01370424497872591, + -0.060624659061431885, + -0.07148945331573486, + -0.13999085128307343, + 0.06628290563821793, + -0.030857257544994354, + -0.0019028398673981428, + 0.007248815149068832, + 0.09789608418941498, + 0.012876871973276138, + 0.06042586639523506, + 0.03779582679271698, + -0.007061137352138758, + 0.04475189745426178, + 0.08563638478517532, + -0.06778337061405182, + 0.018832329660654068, + -0.09860856086015701, + 0.052710969001054764, + 0.043562233448028564, + -0.051399607211351395, + 0.02538672834634781, + 0.047509923577308655, + 0.016237322241067886, + -0.024533025920391083, + -0.10045724362134933, + 0.03165483474731445, + -0.010325045324862003, + -0.030852317810058594, + -0.08340375125408173, + -0.06125884875655174, + -0.03375159576535225, + 0.07523000985383987, + -0.006675430107861757, + -0.005887828301638365, + 0.029305463656783104, + 0.07721193134784698, + -0.0523877814412117, + -0.021271154284477234, + -0.06701614707708359, + -0.04924338683485985, + 0.0074558500200510025, + -0.027527179569005966, + -0.024792669340968132, + 0.05158479884266853, + -0.09152719378471375, + 0.06417929381132126, + 0.11235788464546204, + -0.12426544725894928, + -0.033743999898433685, + 0.0236873347312212, + 0.02138691395521164, + 0.05993400141596794, + 0.026576776057481766, + -0.010961783118546009, + -0.04336870461702347, + -0.00419826852157712, + -0.0858926996588707, + -0.09913045167922974, + 0.011086726561188698, + -0.0313713513314724, + -0.02113574557006359, + -0.09121255576610565, + -0.045840904116630554, + -0.055992159992456436, + -0.058438610285520554, + -0.05579887330532074, + -0.08111348003149033, + -0.05841241776943207, + 0.04762037470936775, + 0.01621188037097454, + -0.03438293933868408, + -0.11180416494607925, + 0.022283919155597687, + -0.041421905159950256, + -0.0731595903635025, + -0.031616903841495514, + -0.0808502659201622, + -1.0469628597675015e-33, + 0.021514644846320152, + -0.02399393729865551, + 0.05607928708195686, + 0.05788664519786835, + 0.01926216296851635, + -0.056121036410331726, + -0.011131323873996735, + -0.033109668642282486, + -0.11002970486879349, + -0.03842397779226303, + 0.008601533249020576, + 0.016730982810258865, + -0.05769466608762741, + 0.0359790064394474, + 0.04074017331004143, + -0.022069592028856277, + -0.057654377073049545, + -0.026952339336276054, + 0.04963105171918869, + -0.01110195554792881, + -0.0303685050457716, + 0.08543077856302261, + -0.09563539177179337, + -0.04588596522808075, + -0.04556795209646225, + -0.07231734693050385, + 0.10194490104913712, + -0.06134026125073433, + -0.012430842965841293, + 0.007009180262684822, + 0.0678495392203331, + -0.037250224500894547, + 0.07923716306686401, + 0.042438577860593796, + -0.053752362728118896, + -0.006070278584957123, + -0.04646121338009834, + -0.056932296603918076, + -0.021801413968205452, + 0.020435990765690804, + -0.037724100053310394, + 0.048542555421590805, + 0.035305362194776535, + 0.09654697775840759, + 0.02518595941364765, + 0.07988698035478592, + -0.0159130971878767, + -0.029879704117774963, + 0.050178416073322296, + -0.00530746765434742, + -0.09164982289075851, + 0.011895652860403061, + 0.05265410989522934, + 0.04053076356649399, + -0.0043184575624763966, + -0.02184295281767845, + -0.00836488138884306, + 0.09058354794979095, + -0.057221341878175735, + -0.0131605863571167, + -0.02811286970973015, + -0.02328076958656311, + -0.029658466577529907, + -0.07872126251459122, + 0.02411934919655323, + 0.06248508766293526, + -0.16419972479343414, + 0.001825473504140973, + 0.07706676423549652, + 0.032723672688007355, + 0.035826195031404495, + 0.00415900070220232, + 0.06689664721488953, + -0.0026777111925184727, + 0.04090707376599312, + 0.02864564023911953, + 0.04517759010195732, + -0.04156490042805672, + 0.0033702710643410683, + 0.008404173888266087, + -0.0654049962759018, + 0.04583233222365379, + -0.058576785027980804, + 0.04639692232012749, + -0.008311042562127113, + 0.0025324730668216944, + 0.019656065851449966, + -0.012779336422681808, + -0.0324835479259491, + 0.043398622423410416, + 0.007409584242850542, + 0.06874918192625046, + 0.050150107592344284, + -0.07961487025022507, + -0.10583610087633133, + 5.830672959241176e-35, + 0.03176504373550415, + 0.04546457156538963, + -0.008284405805170536, + -0.011414613574743271, + 0.058156803250312805, + 0.008002109825611115, + -0.0987878143787384, + 0.02818744070827961, + 0.002230666344985366, + 0.06109962239861488, + -0.07514701783657074, + 0.01318346243351698, + -0.0276704803109169, + -0.029842786490917206, + -0.035467248409986496, + -0.018797507509589195, + 0.05172533914446831, + 0.06134575605392456, + -0.01467129960656166, + 0.0547911673784256, + -0.06620891392230988, + 0.04883233457803726, + -0.07474986463785172, + 0.008905405178666115, + -0.06011151522397995, + 0.0881144255399704, + 0.005427410360425711, + -0.03497328609228134, + 0.006539708003401756, + -0.015174292959272861, + 0.013687186874449253, + -0.042420435696840286, + -0.0365322008728981, + 0.10151831060647964, + -0.004364970605820417, + 0.0029457062482833862, + -0.061743661761283875, + -0.08587251603603363, + 0.016577258706092834, + 0.05429820343852043, + 0.033807676285505295, + 0.01177931297570467, + 0.058359283953905106, + 0.03502664715051651, + 0.04076644778251648, + -0.06668055057525635, + -0.11220785975456238, + 0.053729210048913956, + -0.03912130370736122, + 0.0520334355533123, + -0.009387505240738392, + -0.017912622541189194, + -0.043137338012456894, + 0.010281065478920937, + 0.0553007535636425, + -0.07372087240219116, + 0.010608178563416004, + 0.0026509719900786877, + -0.04932902380824089, + -0.01044199988245964, + 0.05786820501089096, + 0.028726346790790558, + -0.0004179901152383536, + 0.09470368921756744, + -0.023193897679448128, + 0.026611898094415665, + 0.033166609704494476, + 0.02349080704152584, + -0.02227015420794487, + 0.008508503437042236, + -0.005436621140688658, + 0.01958116702735424, + -0.007461546920239925, + 0.038351643830537796, + 0.03076399303972721, + -0.022529641166329384, + 0.010603399947285652, + -0.05354819446802139, + -0.014305392280220985, + 0.04563894495368004, + -0.03165359050035477, + 0.0008031296893022954, + -0.05131411924958229, + -0.017652038484811783, + 0.01469421572983265, + -0.0019120612414553761, + -0.07033858448266983, + -0.007408780511468649, + 0.050784528255462646, + 0.027517439797520638, + -0.017179187387228012, + 0.06673303246498108, + -0.032806944102048874, + 0.00697180163115263, + 0.07600831240415573, + -1.6546671588457684e-08, + 0.057287223637104034, + -0.09583570063114166, + 0.011716976761817932, + -0.004980649799108505, + 0.022801892831921577, + -0.06733863055706024, + -0.01625419408082962, + -0.013473322615027428, + -0.049591708928346634, + 0.042351335287094116, + 0.07958876341581345, + 0.00927705317735672, + -0.06183292344212532, + 0.02658442221581936, + 0.03412781283259392, + -0.10770996659994125, + 0.06309747695922852, + 0.01886489987373352, + -0.006324875168502331, + -0.04959367215633392, + -0.01529981940984726, + 0.03880230709910393, + 0.0011207361239939928, + -0.04633089900016785, + 0.0035504132974892855, + 0.017262481153011322, + -0.030769016593694687, + -0.009474439546465874, + 0.012447293847799301, + 0.03439643234014511, + 0.07461965829133987, + 0.0936238020658493, + 0.0018368855817243457, + -0.003034890629351139, + -0.06392204016447067, + 0.013843505643308163, + -0.02698400989174843, + -0.009855041280388832, + -0.08092360198497772, + 0.019781915470957756, + 0.05800367519259453, + -0.023499438539147377, + 0.0044905864633619785, + 0.009433400817215443, + 0.04114293307065964, + -0.04852204769849777, + 0.12298862636089325, + 0.025888090953230858, + 0.024540264159440994, + -0.011047226376831532, + 0.0058510820381343365, + -0.0417817160487175, + 0.06500030308961868, + 0.013943946920335293, + -0.11380883306264877, + -0.01637079007923603, + -0.02024412527680397, + 0.1359282284975052, + 0.017063485458493233, + 0.023742135614156723, + 0.06370827555656433, + 0.04625670984387398, + 0.06850366294384003, + 0.04773280769586563 + ], + "flower-tulip-bold||plants,green,environmental": [ + 0.014974278397858143, + -0.011734231375157833, + -0.023412635549902916, + 0.013007188215851784, + 0.06709457188844681, + 0.01697581820189953, + 0.05325479060411453, + -0.11413748562335968, + 0.013012304902076721, + -0.043138016015291214, + 0.08545781672000885, + -0.03775469586253166, + -0.03256108611822128, + -0.08111799508333206, + 0.010744809173047543, + 0.10933716595172882, + -0.010078709572553635, + -0.002520020119845867, + -0.04408711940050125, + -0.009146200492978096, + -0.049438152462244034, + 0.0600435733795166, + 0.030387932434678078, + 0.09499220550060272, + 0.011541103944182396, + 0.009137709625065327, + -0.04749291017651558, + 0.06474938243627548, + -0.06079971045255661, + -0.09896119683980942, + -0.015014685690402985, + 0.07477700710296631, + 0.09843097627162933, + 0.019557947292923927, + 0.038114964962005615, + 0.035658083856105804, + -0.050974857062101364, + -0.016635574400424957, + 0.07313697040081024, + 0.016744527965784073, + 0.0221758671104908, + -0.0948844626545906, + 0.02679024077951908, + 0.007593551650643349, + -0.029654663056135178, + -0.021505430340766907, + -0.042734045535326004, + 0.02963326685130596, + 0.021825246512889862, + 0.01098212506622076, + -0.05180557072162628, + -0.059468772262334824, + -0.1493644267320633, + 0.0011922870762646198, + 0.0058189090341329575, + 0.031446319073438644, + 0.016718856990337372, + -0.008331148885190487, + -0.008622292429208755, + 0.03121303953230381, + 0.05306495353579521, + 0.0040413932874798775, + -0.02728446014225483, + 0.09733445197343826, + -0.07109740376472473, + -0.013977743685245514, + -0.058469902724027634, + 0.030763253569602966, + 0.0716056302189827, + 0.022752361372113228, + 0.04122859612107277, + 0.035772401839494705, + -0.021608272567391396, + -0.05451491102576256, + -0.07812190055847168, + 0.05199722945690155, + 0.014281319454312325, + 0.0333833284676075, + -0.02021239884197712, + -0.041879408061504364, + 0.02238575369119644, + 0.036406777799129486, + -0.018943684175610542, + -0.013579186983406544, + 0.11061692237854004, + 0.0144119244068861, + -0.09355928003787994, + -0.06650712341070175, + -0.05251183733344078, + -0.02265390008687973, + 0.006460672244429588, + 0.017636680975556374, + 0.010391880758106709, + 0.02968338131904602, + -0.09911785274744034, + 0.0051764859817922115, + 0.07350943982601166, + -0.12179969996213913, + -0.0452059805393219, + -0.005627281963825226, + 0.055396270006895065, + 0.016489872708916664, + 0.0633024051785469, + 0.010395990684628487, + -0.005002929363399744, + -0.012678351253271103, + -0.03310427814722061, + -0.07498577982187271, + -0.039425063878297806, + 0.026639215648174286, + -0.036406807601451874, + -0.1258251965045929, + -0.02275974676012993, + -0.035314250737428665, + -0.0487561896443367, + 0.0036423460114747286, + -0.12040581554174423, + -0.07105690985918045, + 0.05332831293344498, + 0.01730257272720337, + -0.05657126381993294, + -0.06860258430242538, + -0.043838173151016235, + -0.04642928019165993, + -0.05175190046429634, + 0.011814869940280914, + -0.05441141873598099, + -1.734861970197712e-33, + 0.03535955026745796, + 0.061560843139886856, + 0.04005126655101776, + 0.05289749428629875, + 0.015682591125369072, + -0.04333433136343956, + -0.01875191368162632, + -0.06329713016748428, + -0.14326533675193787, + 0.015494003891944885, + -0.006166551727801561, + -0.018772564828395844, + -0.04778505861759186, + 0.029254768043756485, + 0.05511833727359772, + -0.0006899652653373778, + -0.01958542689681053, + -0.003715269500389695, + -0.05050284042954445, + 0.03553856164216995, + -0.05689895898103714, + 0.025173066183924675, + -0.16381849348545074, + -0.046651389449834824, + -0.0824902281165123, + -0.09854522347450256, + 0.012337366119027138, + -0.03463524207472801, + -0.037646032869815826, + 0.03694901987910271, + 0.14603611826896667, + 0.01096399500966072, + 0.07252636551856995, + 0.0838162824511528, + -0.04218761622905731, + -0.03954460844397545, + -0.04821326583623886, + -0.04027440771460533, + 0.03269829601049423, + 0.11178617924451828, + -0.023639611899852753, + 0.04616933688521385, + 0.08349132537841797, + 0.07238024473190308, + 0.025317631661891937, + 0.071778304874897, + -0.022805819287896156, + -0.019789177924394608, + 0.09048789739608765, + 0.02452271245419979, + -0.03566521778702736, + -0.010883510112762451, + 0.0468134731054306, + 0.00363119482062757, + 0.03374556824564934, + 0.002552995691075921, + -0.021458322182297707, + 0.10864633321762085, + -0.03599243983626366, + -0.009628639556467533, + -0.0003153467841912061, + 0.023008711636066437, + -0.023870320990681648, + -0.10437949001789093, + 0.01895108073949814, + 0.07016367465257645, + -0.09980974346399307, + -0.018473289906978607, + 0.008825691416859627, + 0.045808445662260056, + 0.06537765264511108, + 0.0025002998299896717, + 0.028824273496866226, + -0.013764845207333565, + 0.07169752568006516, + 0.04023490101099014, + 0.06425192207098007, + 0.02200745977461338, + 0.027540171518921852, + 0.006130112335085869, + -0.05754404515028, + 0.028203405439853668, + -0.04609930142760277, + 0.011944331228733063, + -0.03492773324251175, + -0.018630443140864372, + -0.00017246336210519075, + 0.04203139990568161, + -0.0029070100281387568, + 0.01876107230782509, + -0.0022952293511480093, + 0.026920026168227196, + -0.025666624307632446, + -0.0743192732334137, + -0.0786358043551445, + -5.740024322076657e-34, + 0.011171831749379635, + 0.07828504592180252, + -0.0007621523109264672, + 0.02264099009335041, + -0.02732500620186329, + 0.013825575821101665, + -0.0849427580833435, + 0.0022250681649893522, + 0.021219076588749886, + 0.07718072831630707, + -0.03840067610144615, + 0.04696473106741905, + -0.02333941124379635, + -0.046700239181518555, + 0.04096929356455803, + -0.01338024903088808, + 0.004745492711663246, + 0.029555946588516235, + -0.032199468463659286, + 0.0016166380373761058, + -0.1226656511425972, + 0.0018735986668616533, + 0.016102807596325874, + -0.009289993904531002, + -0.08135547488927841, + 0.06862892955541611, + 0.020169496536254883, + -0.07952367514371872, + -0.00617758696898818, + -0.01853935979306698, + -0.027744414284825325, + -0.037768054753541946, + -0.06362273544073105, + 0.14977781474590302, + -0.0658169537782669, + 0.02654767781496048, + -0.029838692396879196, + -0.11781735718250275, + 0.031929101794958115, + 0.09263765811920166, + 0.018149953335523605, + 0.008656532503664494, + 0.11289841681718826, + 0.021527212113142014, + 0.01843063160777092, + -0.11006151139736176, + -0.044226326048374176, + 0.0663241595029831, + -0.018610477447509766, + 0.023257069289684296, + 0.03633534535765648, + 0.08313347399234772, + -0.010264762677252293, + 0.06988710910081863, + 0.020227577537298203, + 0.005692519713193178, + 0.02694002538919449, + 0.0022879361640661955, + -0.09959869831800461, + -0.03474387526512146, + 0.008737515658140182, + 0.017609978094697, + -0.057616423815488815, + 0.06754113733768463, + 0.00554342707619071, + -0.0014965072041377425, + -0.04085010662674904, + 0.032607629895210266, + -0.012553899548947811, + 0.011835097335278988, + -0.06344892084598541, + 0.06152322143316269, + -0.009880580008029938, + -0.00906165037304163, + 0.05948124825954437, + -0.025408601388335228, + -0.0020710735116153955, + -0.016323557123541832, + -0.0314558707177639, + 0.07966013997793198, + -0.038589026778936386, + -0.017427973449230194, + 0.004664063919335604, + -0.013400097377598286, + -0.020650573074817657, + -0.019795551896095276, + -0.09449484944343567, + -0.011388333514332771, + 0.03556410223245621, + 0.009684909135103226, + -0.022791389375925064, + 0.03369152918457985, + -0.03660637512803078, + 0.04321540892124176, + 0.062289293855428696, + -1.782880332257264e-08, + 0.09915176779031754, + -0.048473864793777466, + -0.012280411086976528, + -0.05648362264037132, + 0.005929563660174608, + -0.048484645783901215, + -0.052868038415908813, + -0.05502930283546448, + -0.011049777269363403, + 0.05423728749155998, + -0.023834990337491035, + 0.07623592019081116, + -0.04058801755309105, + -0.009510629810392857, + 0.0227847620844841, + -0.005616921000182629, + 0.04465848207473755, + 0.017473148182034492, + -0.021928248926997185, + -0.016566026955842972, + 0.00728263147175312, + 0.029738590121269226, + -0.026000777259469032, + -0.023360300809144974, + -0.01723911054432392, + 0.0489046573638916, + 0.0008647532667964697, + -0.014618190936744213, + 0.038505349308252335, + 0.04048238322138786, + 0.06946618109941483, + 0.060288332402706146, + -0.04857209324836731, + 0.012326938100159168, + -0.06104441359639168, + -0.07757078111171722, + -0.007389334961771965, + -0.028170151636004448, + -0.07413885742425919, + 0.061901409178972244, + 0.022907475009560585, + -0.034450288861989975, + -0.01326319482177496, + 0.01381389144808054, + 0.02660430036485195, + 0.011650783009827137, + 0.10345358401536942, + -0.011699214577674866, + -0.03467912971973419, + 0.004164042416960001, + -0.08734867721796036, + -0.00040943140629678965, + 0.03792281821370125, + 0.008943620137870312, + -0.0664079338312149, + -0.06942640244960785, + 0.04507886618375778, + 0.09930956363677979, + 0.03438069298863411, + 0.055322881788015366, + 0.005261742509901524, + 0.045416202396154404, + 0.07787615805864334, + 0.031238241121172905 + ], + "flying-saucer-bold||ufo,space,aliens,extra terrestrial,sci-fi": [ + -0.03917798027396202, + -0.07913538813591003, + -0.022266564890742302, + 0.027647318318486214, + 0.04314476251602173, + -0.06728340685367584, + 0.05245646461844444, + -0.048846177756786346, + -0.017135316506028175, + -0.0615987554192543, + 0.05683353543281555, + -0.04899565130472183, + -0.005227827467024326, + 0.007236151024699211, + -0.03806319832801819, + 0.042367123067379, + 0.010171902365982533, + -0.09201159328222275, + 0.004490899387747049, + -0.018469737842679024, + -0.046496689319610596, + 0.12553288042545319, + -0.0192395206540823, + 0.06883614510297775, + 0.037345658987760544, + 0.027254216372966766, + 0.01676115393638611, + 0.025880757719278336, + -0.05628547444939613, + -0.047048088163137436, + 0.06906657665967941, + 0.1775752305984497, + -0.019670164212584496, + 0.013994116336107254, + 0.0517207607626915, + -0.0017492837505415082, + 0.03421292454004288, + -0.07674607634544373, + 0.06506934016942978, + 0.019713234156370163, + -0.048724446445703506, + -0.09616818279027939, + 0.0919332504272461, + 0.0197385773062706, + -0.0686972439289093, + -0.009469934739172459, + -0.0807189792394638, + 0.0027380858082324266, + 0.11066345125436783, + 0.03175226226449013, + -0.0685906633734703, + -0.012697085738182068, + -0.03183378651738167, + 0.03960041701793671, + 0.09471976011991501, + 0.0052367206662893295, + 0.00784815289080143, + -0.06929190456867218, + -0.03588232398033142, + -0.09185090661048889, + -0.04455871880054474, + 0.017680836841464043, + 0.09651613980531693, + 0.03590209037065506, + -0.04230041801929474, + -0.027471326291561127, + -0.0731327161192894, + 0.008707227185368538, + 0.04166382923722267, + -0.011389368213713169, + -0.05948295444250107, + 0.00470218388363719, + -0.14851143956184387, + 0.05352134630084038, + 0.01086008083075285, + 0.010418038815259933, + 0.08345102518796921, + -0.00799005851149559, + -0.0061337617225945, + -0.09773512184619904, + 0.0182267464697361, + -0.028485793620347977, + -0.09715557098388672, + -0.029351690784096718, + -0.02305552549660206, + 0.013547621667385101, + -0.030687203630805016, + 0.018572241067886353, + -0.019294679164886475, + 0.03678455203771591, + -0.06008876487612724, + -0.11421510577201843, + 0.005890531465411186, + -0.03658769652247429, + -0.0617288239300251, + 0.006653055548667908, + -0.03064715303480625, + -0.09221186488866806, + 0.016292421147227287, + 0.03964553400874138, + 0.05337981507182121, + -0.052517373114824295, + -0.04655399173498154, + 0.048518527299165726, + -0.04298275336623192, + -0.04323331266641617, + 0.05734924226999283, + 0.009341198951005936, + 0.08965584635734558, + -0.0646587461233139, + 0.002392861759290099, + -0.01655159518122673, + -0.06556625664234161, + -0.0678865909576416, + -0.047754038125276566, + 0.025103934109210968, + 0.023456769064068794, + 0.00355823733843863, + -0.004096176940947771, + -0.07869689166545868, + -0.023715412244200706, + 0.001025819219648838, + -0.021373732015490532, + 0.005901138763874769, + -0.002530470723286271, + -0.08288279920816422, + -0.030266182497143745, + -3.021020481613279e-33, + 0.00914694182574749, + 0.010902520269155502, + 0.04311208426952362, + 0.017746221274137497, + 0.04221125692129135, + -0.020892854779958725, + -0.02062840573489666, + 0.10862225294113159, + -0.02841172367334366, + 0.019278304651379585, + -0.03627040982246399, + -0.023787571117281914, + 0.009453077800571918, + -0.027704505249857903, + 0.07299529016017914, + -0.07762391120195389, + -0.009143481962382793, + -0.07216580957174301, + -0.025180457159876823, + -0.03192072734236717, + -0.0396135076880455, + 0.0234842449426651, + -0.026182081550359726, + -0.026122357696294785, + 0.0074480376206338406, + -0.01826636865735054, + -0.025859516113996506, + -0.06619829684495926, + 0.022009219974279404, + 0.03122701309621334, + 0.026067882776260376, + 0.08983686566352844, + 0.01924923062324524, + 0.015624376013875008, + 0.013210716657340527, + -0.028237739577889442, + -0.015301068313419819, + -0.0646439865231514, + -0.0023424106184393167, + 0.0495624914765358, + -0.08659905940294266, + 0.031210537999868393, + -0.011631311848759651, + 0.026357265189290047, + -0.002610159805044532, + 0.06424755603075027, + -0.005724454298615456, + -0.02505819872021675, + 0.026828953996300697, + 0.07756909728050232, + -0.029042759910225868, + 0.005533251445740461, + 0.0067331804893910885, + -0.012264864519238472, + 0.08497153222560883, + -0.001737950718961656, + -0.03866478055715561, + -0.0009920455049723387, + -0.007473286706954241, + -0.057979390025138855, + 0.028551528230309486, + 0.013006121851503849, + -0.04224194586277008, + -0.006559796165674925, + 0.04381532967090607, + 0.06627384573221207, + 0.0682629942893982, + 0.052007611840963364, + 0.001105238450691104, + 0.1443648487329483, + -0.0011152519145980477, + 0.02484632097184658, + -0.0024281542282551527, + 0.020609475672245026, + 0.05465208739042282, + 0.02987474948167801, + -0.06904570758342743, + -0.054907042533159256, + 0.057611703872680664, + 0.0016755317337810993, + -0.021898044273257256, + -0.0008973667863756418, + 0.04176625609397888, + 0.0026033951435238123, + -0.07238440960645676, + 0.03091852366924286, + 0.021633205935359, + -0.0017366547835990787, + 0.08472778648138046, + 0.07113147526979446, + -0.08083794265985489, + -0.040820326656103134, + -0.04126608744263649, + -0.03354224935173988, + -0.14029797911643982, + 4.4451355610543265e-34, + 0.0391562357544899, + 0.01548455934971571, + -0.06465078890323639, + -0.04019766300916672, + -0.01213059015572071, + -0.017294270917773247, + -0.06691823899745941, + 0.044280245900154114, + -0.0073507181368768215, + -0.015192707069218159, + -0.04514239728450775, + 0.04394550994038582, + 0.03727485239505768, + -0.11382683366537094, + 0.038256365805864334, + -0.04629962146282196, + -0.04188259318470955, + 0.0847616046667099, + -0.002937144134193659, + 0.1258496195077896, + 0.035524606704711914, + -0.061480529606342316, + -0.05751064419746399, + -0.047142934054136276, + -0.009709055535495281, + 0.057444214820861816, + 0.06564899533987045, + 0.02488415315747261, + -0.04014253243803978, + -0.013269724324345589, + -0.04390930384397507, + -0.02530551515519619, + 0.02339545637369156, + 0.02230430766940117, + 0.0033537806011736393, + 0.03090216964483261, + 0.058161769062280655, + -0.0005212947144173086, + -0.025025976821780205, + -0.10427112132310867, + -0.06959173083305359, + 0.1580713540315628, + -0.0014674670528620481, + 0.07095001637935638, + -0.03635881096124649, + -0.02604551427066326, + -0.08165667206048965, + 0.09965797513723373, + -0.04035579413175583, + 0.005803781095892191, + -0.057605139911174774, + -0.042870886623859406, + 0.004022960085421801, + -0.00025219330564141273, + -0.05879653990268707, + -0.0020324878860265017, + 0.028769444674253464, + -0.013580935075879097, + 0.06477822363376617, + 0.025918105617165565, + -0.02949855849146843, + 0.007084729615598917, + 0.0008950625779107213, + 0.01440721470862627, + -0.02030634693801403, + -0.04871003329753876, + 0.08869391679763794, + 0.12337852269411087, + -0.04086214303970337, + -0.006539400201290846, + 0.033595792949199677, + -0.11427365988492966, + -0.0651518702507019, + 0.07984491437673569, + 0.011013756506145, + 0.006255917716771364, + 0.0368746779859066, + -0.00908428244292736, + 0.018497925251722336, + 0.07099202275276184, + 0.06972202658653259, + -0.06242753937840462, + 0.022417711094021797, + 0.053081151098012924, + 0.05725329369306564, + 0.059896375983953476, + -0.025804104283452034, + -0.007755327969789505, + -0.013570182956755161, + -0.002131805522367358, + -0.031815119087696075, + 0.011988631449639797, + 0.05066515505313873, + -0.000646013009827584, + 0.05988699570298195, + -2.225247186515844e-08, + 0.04540320485830307, + 0.03893059864640236, + -0.10455586016178131, + -0.011928582563996315, + 0.0601104274392128, + -0.03438730537891388, + -0.03750740364193916, + -0.05216969549655914, + -0.031304653733968735, + -0.04347032308578491, + 0.01926892064511776, + -0.06269267201423645, + 0.01077669020742178, + 0.03961343690752983, + 0.01784055121243, + 0.00304080150090158, + -0.03883394971489906, + -0.012112634256482124, + -0.003927791956812143, + 0.03800739347934723, + -0.045240506529808044, + 0.06487035751342773, + 0.03949230909347534, + -0.14223219454288483, + -0.05373171344399452, + 0.12147350609302521, + -0.0037335169035941362, + -0.003273395821452141, + 0.08120891451835632, + -0.0006024854956194758, + -0.01849140226840973, + 0.059293292462825775, + -0.07139582186937332, + 0.03754968196153641, + -0.06156662851572037, + 0.0008192205568775535, + -0.042160410434007645, + -0.02644685097038746, + 0.042326733469963074, + 0.0025170287117362022, + -0.0051265074871480465, + 0.07297084480524063, + -0.02239156700670719, + 0.021107178181409836, + 0.054133929312229156, + 0.008985154330730438, + 0.04950953647494316, + -0.1107444167137146, + -0.03520899638533592, + -0.01772969961166382, + 0.08818454295396805, + -0.0347418338060379, + 0.0678105354309082, + 0.039626289159059525, + -0.017504841089248657, + 0.04085296019911766, + -0.02143118530511856, + 0.04376637190580368, + -0.03258112818002701, + -0.01774943806231022, + 0.06791752576828003, + 0.019047489389777184, + -0.031223108991980553, + 0.035259924829006195 + ], + "folder-bold||directory,directories,files,folders": [ + 0.02557024545967579, + -0.026766547933220863, + -0.0642145574092865, + 0.07250767201185226, + 0.08234016597270966, + -0.03477006405591965, + 0.09326436370611191, + -0.027250006794929504, + 0.06008422374725342, + -0.0325453020632267, + 0.06042669713497162, + 0.062071293592453, + 0.06174955889582634, + -0.006967880763113499, + -0.020291699096560478, + 0.047137755900621414, + -0.0040847547352313995, + 0.07137733697891235, + -0.023663287982344627, + 0.0017806683899834752, + -0.015249477699398994, + 0.10368896275758743, + 0.056024327874183655, + -0.03653198480606079, + 0.03920809179544449, + 0.0033219638280570507, + 0.015593944117426872, + -0.02689599245786667, + -0.003884176490828395, + -0.04040371999144554, + 0.03141161799430847, + 0.008650032803416252, + 0.1308136135339737, + 0.04753589630126953, + 0.05327774956822395, + 0.03422427549958229, + -0.006319239269942045, + -0.014737610705196857, + 0.0036056560929864645, + 0.071476511657238, + 0.007071223109960556, + 0.020851604640483856, + 0.011842605657875538, + -0.02199721708893776, + -0.12266214191913605, + -0.0894809365272522, + -0.03407282754778862, + -0.039327651262283325, + 0.0002774831955321133, + -0.005389926955103874, + -0.018353234976530075, + -0.05897802114486694, + -0.11928419768810272, + -0.04864907264709473, + 0.0013281430583447218, + 0.018855730071663857, + -0.07118111103773117, + 0.025341136381030083, + 0.009966189973056316, + -0.036613091826438904, + 0.05904614180326462, + 0.018106482923030853, + 0.04815438389778137, + -0.023299455642700195, + 0.06754040718078613, + 0.0031692811753600836, + 0.027965884655714035, + 0.06747833639383316, + -0.031072799116373062, + 0.014514333568513393, + 0.05430539697408676, + 0.01680184341967106, + -0.04996490478515625, + 0.06026976555585861, + -0.016720285639166832, + 0.029536347836256027, + 0.03913616016507149, + 0.05865798518061638, + -0.05153820291161537, + -0.07642370462417603, + -0.04642195627093315, + -0.05618811771273613, + 0.016636840999126434, + -0.015452170744538307, + 0.0763171911239624, + 0.08143322169780731, + -0.0869927629828453, + -0.017766570672392845, + -0.09890338033437729, + -0.038690246641635895, + -0.01383578684180975, + -0.12404706329107285, + -0.0207001231610775, + 0.09112856537103653, + -0.12092234194278717, + 0.013564876280725002, + 0.0632443055510521, + 0.06253404170274734, + -0.002854883437976241, + 0.0344616137444973, + -0.009812619537115097, + 0.021650854498147964, + 0.005963630508631468, + -0.019859956577420235, + -0.05749056488275528, + 0.026642750948667526, + 0.014080476947128773, + -0.04138200730085373, + -0.009706745855510235, + -0.01839718595147133, + -0.03437168151140213, + -0.10198524594306946, + -0.042297814041376114, + -0.08523768931627274, + -0.06468608230352402, + -0.049119725823402405, + -0.018978746607899666, + 0.008027736097574234, + 0.05409130081534386, + 0.12291065603494644, + 0.054596658796072006, + -0.06413248181343079, + -0.023059098049998283, + -0.019117344170808792, + 0.02529364451766014, + -0.013456924818456173, + 0.031229885295033455, + 1.179104289381888e-34, + 0.040038254112005234, + 0.042438965290784836, + -0.0007823151536285877, + 0.09234999865293503, + 0.06230035424232483, + 0.002630959264934063, + -0.023368163034319878, + -0.07296887785196304, + -0.06659863144159317, + 0.06849120557308197, + 0.09399363398551941, + 0.06022762879729271, + -0.05867540091276169, + -0.012602006085216999, + 0.019993077963590622, + -0.037131235003471375, + 0.03052770346403122, + -0.04574866220355034, + -0.0638057067990303, + -0.050577517598867416, + -0.05589747801423073, + 0.08522075414657593, + -0.059796325862407684, + -0.02736448496580124, + -0.031249897554516792, + -0.05278564989566803, + 0.10404837131500244, + 0.0020289707463234663, + -0.027480976656079292, + 0.02079142816364765, + 0.013427096419036388, + 0.021128959953784943, + 0.037743303924798965, + 0.07075199484825134, + -0.06594184041023254, + 0.08311042189598083, + -0.08526116609573364, + 0.015470445156097412, + 0.010730642825365067, + 0.07978464663028717, + -0.09800489246845245, + -0.03244804963469505, + -0.048017408698797226, + -0.02994850091636181, + 0.015856286510825157, + 0.1663174033164978, + 0.007589744869619608, + -0.10982389748096466, + -0.05542143061757088, + 0.04538079723715782, + -0.023876873776316643, + -0.011478498578071594, + 0.037593428045511246, + 0.05246318504214287, + 0.003827763022854924, + -0.004545304458588362, + -0.04538876563310623, + 0.0242218766361475, + 0.018154777586460114, + 0.016078665852546692, + 0.043806154280900955, + 0.0339028425514698, + 0.014672757126390934, + -0.03892887383699417, + -0.07765138149261475, + 0.022926894947886467, + -0.00590912951156497, + 0.01999800093472004, + 0.0800504982471466, + 0.027337895706295967, + -0.01942889764904976, + 0.09132903814315796, + 0.03313823044300079, + 0.054169911891222, + -0.044559918344020844, + 0.03206712380051613, + -0.007062481716275215, + -0.035534512251615524, + 0.029732586815953255, + -0.08386559784412384, + -0.12575273215770721, + -0.03819062560796738, + -0.03818131983280182, + 0.060598984360694885, + 0.02360602281987667, + 0.01112691406160593, + -0.031948287039995193, + 0.002990083070471883, + -0.014788012951612473, + -0.03316405788064003, + -0.01205363404005766, + 0.03812851384282112, + -0.008235923945903778, + -0.10307789593935013, + -0.10078179836273193, + -2.8484872982713376e-33, + 0.10016889870166779, + 0.03707316890358925, + -0.08272074908018112, + -0.022139275446534157, + -0.0476573146879673, + 0.033455196768045425, + -0.012092103250324726, + -0.02014278993010521, + -0.060735322535037994, + -0.010190090164542198, + 0.01803097501397133, + 0.02361128106713295, + -0.022310514003038406, + -0.05204774811863899, + 0.031079785898327827, + 0.01401970162987709, + 0.019775448366999626, + 0.0047170971520245075, + -0.0436290018260479, + -0.026205794885754585, + -0.058680396527051926, + -0.020622991025447845, + -0.030237456783652306, + 0.05817786976695061, + -0.018991902470588684, + -0.016538705676794052, + -0.0474240817129612, + -0.030852576717734337, + -0.004155091941356659, + 0.025520052760839462, + 0.022905414924025536, + 0.0136929452419281, + 0.033992789685726166, + 0.030889689922332764, + -0.04336594417691231, + -0.03275591507554054, + -0.010640612803399563, + -0.050464484840631485, + 0.033426765352487564, + 0.009342867881059647, + -0.03164709731936455, + -0.005697478074580431, + 0.010776301845908165, + 0.04890895634889603, + -0.06224340572953224, + -0.029156645759940147, + 0.0775020495057106, + -0.10714713484048843, + -0.02576419524848461, + 0.022313494235277176, + 0.07301588356494904, + -0.0502450168132782, + -0.02922864630818367, + -0.00437255809083581, + -0.024139106273651123, + -0.003248835913836956, + -0.05979924649000168, + 0.007334242109209299, + -0.01606583409011364, + 0.08609580993652344, + -0.05702100694179535, + 0.04456145316362381, + -0.08866722136735916, + -0.02525617741048336, + -0.034285351634025574, + -0.07640901207923889, + -0.014554601162672043, + -0.026960527524352074, + 0.06542546302080154, + -0.03942587226629257, + 0.06768813729286194, + -0.01757495477795601, + 0.00900330301374197, + 0.07937132567167282, + 0.04523530974984169, + -0.05547738075256348, + 0.05083887651562691, + 0.04036819562315941, + 0.019273247569799423, + 0.01741834171116352, + -0.03078567422926426, + 0.006194720510393381, + -0.044690873473882675, + 0.08661885559558868, + -0.04178023710846901, + 0.007310088723897934, + -0.03543809801340103, + 0.009464644826948643, + 0.006094460375607014, + -0.03812041133642197, + 0.014751564711332321, + 0.049458280205726624, + 0.06828103959560394, + -0.014472334645688534, + -0.02562289871275425, + -1.9327586642248207e-08, + -0.09158455580472946, + -0.06411577016115189, + -0.008169914595782757, + -0.008621042594313622, + 0.04824664816260338, + -0.061531875282526016, + -0.047434013336896896, + 0.027951546013355255, + -0.05531994253396988, + 0.025401437655091286, + 0.05122516304254532, + 0.0017798657063394785, + -0.0930820032954216, + -0.06658657640218735, + 0.008741934783756733, + 0.023947937414050102, + 0.00874293316155672, + 0.04870976507663727, + -0.011875848285853863, + 0.037553075700998306, + -0.019123181700706482, + 0.06780965626239777, + 0.04633496329188347, + 0.049122266471385956, + 0.02534189261496067, + 0.017987769097089767, + -0.049200259149074554, + -0.025267446413636208, + 0.048862211406230927, + 0.030795365571975708, + 0.011051825247704983, + 0.037227749824523926, + -0.028882520273327827, + -0.016861751675605774, + -0.07629222422838211, + -0.0364011786878109, + 0.000841677887365222, + -0.01110816840082407, + -0.017070632427930832, + 0.12840522825717926, + -0.04194960743188858, + -0.03498103842139244, + 0.03232909366488457, + -0.009689665399491787, + -0.046858690679073334, + -0.050196629017591476, + 0.03084835782647133, + 0.013204244896769524, + -0.10737593472003937, + -0.14800719916820526, + -0.0587456040084362, + 0.026386771351099014, + -0.01922043040394783, + 0.12246684730052948, + -0.017461851239204407, + -0.04464495927095413, + 0.005573965609073639, + 0.1764964610338211, + -0.030368732288479805, + 0.02339603751897812, + 0.08120013028383255, + 0.04496508836746216, + -0.015039738267660141, + -0.0071421354077756405 + ], + "folder-dashed-bold||directory,directories,files,folders,missing,temporary,dotted": [ + 0.009867553599178791, + -0.00879263412207365, + 0.013822739943861961, + 0.06502795964479446, + 0.09396924823522568, + -0.031735774129629135, + 0.09382855147123337, + -0.04443618655204773, + 0.03557243198156357, + -0.04484033212065697, + 0.09734317660331726, + 0.04275800287723541, + 0.034920163452625275, + 0.005059870425611734, + -0.020636610686779022, + 0.055845458060503006, + -0.018002714961767197, + -0.027051573619246483, + -0.013344177976250648, + 0.00651068240404129, + -0.09685435891151428, + 0.04018530249595642, + -0.00464112963527441, + 0.0006246757111512125, + 0.05275694280862808, + 0.07041105628013611, + 0.006740775424987078, + -0.01575603522360325, + -0.05285043641924858, + -0.014428776688873768, + 0.01432056538760662, + 0.05646584555506706, + 0.12012993544340134, + -0.019108200445771217, + 0.08040675520896912, + 0.016343556344509125, + 0.006800469011068344, + 0.028416648507118225, + 0.017306920140981674, + 0.04050684720277786, + -0.0008616948034614325, + 0.001272473018616438, + -0.010191157460212708, + -0.010253870859742165, + -0.09861579537391663, + -0.08381972461938858, + -0.017560182139277458, + -0.0390128567814827, + -0.0016645460855215788, + 0.008917246013879776, + -0.01629043184220791, + -0.02010921575129032, + -0.0856805145740509, + -0.058961670845746994, + -0.008209791034460068, + 0.06657646596431732, + -0.02280007302761078, + 0.04776875302195549, + 0.008123533800244331, + 0.00389027688652277, + 0.052294958382844925, + 0.012718490324914455, + -0.019062116742134094, + -0.02889709547162056, + 0.07720731943845749, + -0.03436525911092758, + -0.015625743195414543, + 0.025854667648673058, + -0.00156273297034204, + 0.07380911707878113, + 0.05810854956507683, + 0.02926228754222393, + -0.08748592436313629, + 0.08205106854438782, + 0.0030129135120660067, + 0.038590557873249054, + 0.013921454548835754, + 0.06589014083147049, + -0.028090599924325943, + -0.08566222339868546, + -0.06782013922929764, + -0.02275782637298107, + -0.0034857220016419888, + 0.021588081493973732, + 0.08377015590667725, + 0.07956431806087494, + -0.053812652826309204, + -0.04045414924621582, + -0.09737350791692734, + -0.047983910888433456, + -0.018176734447479248, + -0.12521660327911377, + -0.013520719483494759, + 0.05258691683411598, + -0.10971782356500626, + 0.014025631360709667, + 0.09390271455049515, + 0.07700981944799423, + 0.012836632318794727, + 0.04155199974775314, + -0.014986797235906124, + -0.02508300170302391, + 0.015008710324764252, + -0.010526355355978012, + -0.055304013192653656, + 0.029734311625361443, + -0.008757669478654861, + -0.007015731651335955, + 0.01865198090672493, + -0.031077783554792404, + -0.039205390959978104, + -0.11157897114753723, + -0.012201313860714436, + -0.08129612356424332, + -0.07307326793670654, + -0.07035855948925018, + -0.1191754937171936, + -0.01549814734607935, + 0.07672110944986343, + 0.14159278571605682, + 0.06738978624343872, + -0.04459010437130928, + -0.03553374484181404, + -0.04306003078818321, + 0.040507350116968155, + -0.01659478060901165, + 0.0338173508644104, + -2.2690786022403472e-33, + 0.03342152014374733, + 0.05560754984617233, + 0.02263781428337097, + 0.043695125728845596, + 0.06292185187339783, + 0.003495319513604045, + -0.016405515372753143, + -0.06473799794912338, + -0.04297065734863281, + 0.055690448731184006, + 0.08611556142568588, + 0.05035270377993584, + -0.03242651745676994, + 0.011157490313053131, + -0.01403320487588644, + -0.031265102326869965, + 0.07156945019960403, + -0.05910957604646683, + -0.06688638776540756, + -0.027972694486379623, + -0.030885227024555206, + 0.12533864378929138, + -0.07667604088783264, + -0.04961119964718819, + -0.025782454758882523, + -0.04010160267353058, + 0.08492449671030045, + -0.01814168691635132, + -0.01628527045249939, + 0.0531974621117115, + 0.0021794226486235857, + 0.03214564546942711, + 0.09373465180397034, + 0.013056758791208267, + -0.07995238900184631, + 0.06237420439720154, + -0.10670164227485657, + -0.04393306002020836, + -0.026403222233057022, + 0.05036171153187752, + -0.05271241068840027, + -0.0420914851129055, + -0.04788123816251755, + 0.014760581776499748, + 0.028176963329315186, + 0.14451831579208374, + 0.048946261405944824, + -0.09672074019908905, + -0.08377757668495178, + 0.07131968438625336, + -0.057648807764053345, + 0.0159409511834383, + 0.06251037120819092, + 0.034864820539951324, + -0.006397363264113665, + -0.016713663935661316, + -0.0022856497671455145, + -0.0019999381620436907, + -0.004684390965849161, + 0.008660470135509968, + 0.11794773489236832, + 0.06484317034482956, + -0.024725355207920074, + -0.0743897333741188, + -0.037666212767362595, + -0.011827994138002396, + -0.04000056907534599, + -0.008958560414612293, + 0.063695527613163, + 0.023374240845441818, + -0.034032437950372696, + 0.06830386817455292, + 0.07727374136447906, + 0.10736671835184097, + -0.01947205513715744, + -0.017411304637789726, + -0.005321042612195015, + -0.005401463247835636, + 0.015149393118917942, + -0.09793511033058167, + -0.10167795419692993, + -0.059564121067523956, + -0.02090529538691044, + -0.023646360263228416, + 0.010809499770402908, + -0.03155823051929474, + -0.027957364916801453, + 0.006420878693461418, + -0.10356464982032776, + -0.02918229252099991, + 0.027894657105207443, + 0.04620542377233505, + -0.04506334662437439, + -0.050023142248392105, + -0.11889465898275375, + -6.388601952610412e-34, + 0.056083131581544876, + 0.05326123908162117, + -0.061776284128427505, + -0.017884399741888046, + -0.07841873168945312, + 0.0856461152434349, + 0.031753286719322205, + -0.028708161786198616, + -0.026036636903882027, + -0.011679685674607754, + -0.01019272394478321, + 0.05156056955456734, + 0.006888439413160086, + -0.04349349066615105, + -0.006736093200743198, + 0.0690416619181633, + 0.04897702485322952, + -0.04477766528725624, + -0.0289467703551054, + -0.02004631794989109, + -0.07726917415857315, + -0.014535731635987759, + 0.017655186355113983, + 0.06032675877213478, + -0.0235280841588974, + -0.03125622496008873, + 0.03009420447051525, + -0.0643279030919075, + 0.01241388637572527, + 0.040977638214826584, + -0.001192588941194117, + -0.005335384514182806, + 0.0019126762636005878, + 0.004881826229393482, + -0.027384888380765915, + -0.033335380256175995, + -0.02022700384259224, + -0.04299703240394592, + -0.005839263554662466, + 0.005478243343532085, + -0.04701286181807518, + -0.06145554780960083, + 0.0857616737484932, + 0.03987680748105049, + -0.033686768263578415, + -0.005670556798577309, + 0.03416123613715172, + -0.010261164046823978, + -0.04192689061164856, + 0.04707643389701843, + 0.10099273920059204, + -0.053456321358680725, + 0.002920749131590128, + -0.010703054256737232, + 0.00020737675367854536, + -0.02524985559284687, + -0.06554943323135376, + 0.016530027613043785, + 0.00036658591125160456, + 0.08060688525438309, + -0.05576232075691223, + 0.053708143532276154, + -0.08373770862817764, + 0.00312244426459074, + -0.0533067025244236, + -0.051819488406181335, + -0.0420713946223259, + -0.025494761765003204, + 0.06882096081972122, + -0.09199094027280807, + 0.053174447268247604, + 0.02319646067917347, + -0.028892220929265022, + 0.019856492057442665, + 0.046605076640844345, + -0.015113966539502144, + 0.04484894126653671, + 0.04844199866056442, + 0.013667876832187176, + 0.05963316187262535, + -0.018967049196362495, + 0.010955794714391232, + -0.045390740036964417, + 0.057683464139699936, + -0.02600434422492981, + -5.9381185565143824e-05, + -0.10102007538080215, + 0.037330351769924164, + 0.008366897702217102, + -0.04393668845295906, + 0.037752050906419754, + 0.061040427535772324, + 0.044095899909734726, + 0.042072903364896774, + -0.0019453527638688684, + -2.14656932229218e-08, + -0.05747402831912041, + -0.0508919432759285, + 0.004220898728817701, + -0.02749493718147278, + 0.10151161253452301, + -0.06903970241546631, + 0.005228906869888306, + 0.038075268268585205, + -0.048503976315259933, + 0.005205495748668909, + 0.050961051136255264, + -0.028945302590727806, + -0.12529106438159943, + -0.017303263768553734, + -0.019599368795752525, + 0.016821306198835373, + -0.0015170054975897074, + 0.06156276538968086, + -0.02873222902417183, + 0.020791351795196533, + -0.04042944684624672, + 0.04000524431467056, + 0.026946984231472015, + 0.04046818986535072, + -0.0038093016482889652, + 0.0071878391318023205, + -0.014583759009838104, + -0.025527209043502808, + 0.022939609363675117, + -0.005383695475757122, + -0.012885102070868015, + 0.030332712456583977, + 0.0006986117805354297, + -0.07736256718635559, + -0.04125217720866203, + -0.016550933942198753, + -0.010957447811961174, + 0.0329858660697937, + -0.012957521714270115, + 0.06278733164072037, + -0.014326240867376328, + -0.011251779273152351, + 0.049137264490127563, + -0.023238949477672577, + -0.004955131094902754, + -0.0497409924864769, + 0.03660079464316368, + 0.025734761729836464, + -0.07891098409891129, + -0.17495161294937134, + -0.037572234869003296, + 0.02555140107870102, + -0.032529860734939575, + 0.10918918251991272, + 0.00231366278603673, + -0.04345465824007988, + 0.030025649815797806, + 0.11431054025888443, + 0.005839565768837929, + 0.029449855908751488, + 0.05877460911870003, + 0.026205122470855713, + -0.03908931091427803, + 0.029539307579398155 + ], + "folder-lock-bold||directory,directories,files,folders,private,secure": [ + -0.031126396730542183, + 0.009421093389391899, + -0.10675568878650665, + 0.05560014396905899, + 0.10402943938970566, + 0.044733863323926926, + 0.0918995812535286, + -0.0505056157708168, + 0.04672468826174736, + -0.0005675029824487865, + 0.09801395982503891, + 0.07006124407052994, + 0.07570047676563263, + -0.03710145130753517, + -0.019304417073726654, + 0.021307049319148064, + -0.02349911257624626, + 0.039299070835113525, + -0.05560442805290222, + 0.01786666363477707, + -0.026498926803469658, + 0.02698507346212864, + 0.009391902945935726, + 0.010294193401932716, + -0.0038159405812621117, + -0.005028035957366228, + 0.016772910952568054, + -0.034435126930475235, + -0.033249493688344955, + -0.05563730001449585, + -0.03306303918361664, + -0.028681384399533272, + 0.10837671905755997, + 0.025175418704748154, + 0.013207846321165562, + 0.021543772891163826, + 0.01075009535998106, + -0.027869440615177155, + -0.042945194989442825, + -0.01285620592534542, + -0.053216353058815, + -0.015685006976127625, + -0.03529985621571541, + -0.01308820117264986, + -0.1382673680782318, + -0.07878177613019943, + 0.011822395958006382, + -0.014129254035651684, + -0.05367784947156906, + -0.04719918221235275, + -0.004980006720870733, + 0.02530151791870594, + -0.10829716920852661, + -0.015184049494564533, + -0.03532487526535988, + -0.03170445188879967, + -0.024174083024263382, + 0.002315390622243285, + 0.03326721861958504, + -0.02459307573735714, + 0.10299582034349442, + 0.02993844822049141, + -0.007014112547039986, + 0.025267677381634712, + 0.0702914297580719, + 0.030057113617658615, + 0.01584881916642189, + 0.032693129032850266, + 0.004569529090076685, + 0.02809431590139866, + 0.020121226087212563, + -0.01530835684388876, + -0.022120054811239243, + 0.06439245492219925, + 0.03097722679376602, + 0.00687689334154129, + -0.00940016284584999, + 0.004174681846052408, + -0.036365821957588196, + -0.0958770364522934, + -0.00786515697836876, + -0.08990827202796936, + 0.02801852487027645, + -0.02268548123538494, + 0.007644823286682367, + 0.12741978466510773, + -0.034368887543678284, + 0.012256121262907982, + -0.006898407358676195, + -0.00937119871377945, + 0.02958153560757637, + -0.05593336373567581, + 0.04491056874394417, + 0.031896110624074936, + -0.06637547165155411, + -0.020552830770611763, + 0.028410376980900764, + 0.04387572780251503, + -0.046096090227365494, + 0.005356506444513798, + 0.017663298174738884, + 0.026083773002028465, + 0.007657271809875965, + -0.05231888219714165, + 0.02239052951335907, + 0.0490000881254673, + 0.0786740705370903, + -0.056117329746484756, + -0.05469309538602829, + -0.008317545987665653, + -0.026903344318270683, + -0.04274675250053406, + -0.053498316556215286, + -0.0731462612748146, + -0.05315511301159859, + 0.002038368722423911, + -0.054482750594615936, + 0.020454565063118935, + 0.06035994365811348, + 0.13360802829265594, + 0.046325553208589554, + -0.048692937940359116, + 0.01155107282102108, + -0.033081039786338806, + -0.03471674397587776, + -0.020453916862607002, + -0.029564203694462776, + -1.0629347974238032e-33, + 0.02690403163433075, + 0.013977291993796825, + -0.06015671417117119, + 0.06996411830186844, + 0.06465862691402435, + 0.021597763523459435, + -0.027521923184394836, + -0.0770132839679718, + -0.10086362063884735, + 0.10525523126125336, + 0.14956499636173248, + -0.0034512269776314497, + 0.023301733657717705, + -0.03801035135984421, + 0.09218800812959671, + -0.027189964428544044, + 0.05053992196917534, + -0.01822592318058014, + 0.04467551037669182, + -0.0483877994120121, + 0.016784779727458954, + 0.08826000243425369, + -0.026310721412301064, + 0.0018663943046703935, + 0.01115143671631813, + -0.07974022626876831, + 0.07459951192140579, + -0.033439844846725464, + 0.07234899699687958, + 0.0377490408718586, + -0.01837717927992344, + 0.04425716772675514, + 0.018949270248413086, + 0.04748748987913132, + -0.04717843979597092, + 0.04131562262773514, + -0.09222152829170227, + -0.05230017378926277, + 0.027374831959605217, + -0.026168428361415863, + -0.06072542816400528, + -0.06857988983392715, + -0.0736846849322319, + -0.02234511636197567, + 0.06998376548290253, + 0.10894104838371277, + -0.07189373672008514, + -0.02229577861726284, + -0.07066237926483154, + 0.05743076652288437, + -0.05444435030221939, + 0.021841146051883698, + -0.01887618377804756, + 0.01822332851588726, + -0.023243997246026993, + -0.020956512540578842, + -0.04068826884031296, + 0.039177559316158295, + -0.01351880095899105, + 0.02854170650243759, + 0.02404547668993473, + 0.07467184215784073, + 0.04600287228822708, + -0.06445614993572235, + -0.08132626861333847, + -0.022633550688624382, + -0.005847601685672998, + -0.03328149765729904, + 0.06455950438976288, + 0.04194679856300354, + -0.0773545652627945, + 0.038125328719615936, + 0.03507975488901138, + 0.04661024734377861, + -0.0726107805967331, + 0.00876947958022356, + 0.0252988338470459, + 0.0028852345421910286, + 0.04804721474647522, + -0.06900518387556076, + -0.06624370813369751, + -0.009195877239108086, + -0.03830093890428543, + 0.09877777844667435, + -0.02342255786061287, + -0.025635721161961555, + -0.07601714879274368, + 0.04597678780555725, + -0.016352850943803787, + -0.005206871312111616, + 0.02917720191180706, + 0.03557157889008522, + 0.01864851824939251, + -0.05333581566810608, + -0.1310155987739563, + -1.8138469253783154e-33, + 0.033770907670259476, + -0.04413841292262077, + -0.040990978479385376, + 0.025927266106009483, + -0.009487737901508808, + 0.05083417519927025, + -0.10743732005357742, + -0.02552129700779915, + -0.07523363083600998, + -0.029659196734428406, + -0.006615256890654564, + 0.03863844648003578, + 0.0013451077975332737, + -0.026999861001968384, + 0.07525903731584549, + -0.017844218760728836, + 0.027215439826250076, + 0.022315699607133865, + -0.07458438724279404, + -0.01404503732919693, + -0.032337892800569534, + 0.002145421225577593, + -0.07032249867916107, + 0.14434832334518433, + 0.02064731903374195, + -0.028112109750509262, + -0.11836057156324387, + -0.02643437683582306, + 0.01531517319381237, + 0.07335057854652405, + -0.011701664887368679, + 0.029426945373415947, + -0.020558731630444527, + -0.001335129956714809, + -0.03366854041814804, + -0.09905354678630829, + -0.0034705232828855515, + -0.0017773571889847517, + 0.008538492023944855, + 0.005511571653187275, + -0.01945449411869049, + 0.010550398379564285, + -0.0023829136043787003, + 0.004464918747544289, + -0.07759599387645721, + -0.032868240028619766, + 0.07328712195158005, + -0.08815805613994598, + -0.03850126639008522, + 0.06689814478158951, + 0.0485718697309494, + -0.08183359354734421, + 0.004019192419946194, + -0.06291571259498596, + 0.018568603321909904, + 0.015069550834596157, + -0.027157390490174294, + -0.01277434453368187, + -0.002673516748473048, + 0.1032782569527626, + 0.013829093426465988, + 0.02859540842473507, + -0.058239493519067764, + 0.0708802342414856, + -0.027707135304808617, + -0.05468372255563736, + -0.020516125485301018, + -0.011447327211499214, + 0.019541803747415543, + -0.0035509751178324223, + 0.13148222863674164, + -0.04009941965341568, + 0.019245006144046783, + 0.08893629163503647, + 0.00970360729843378, + -0.06673794239759445, + 0.07661894708871841, + -0.054387159645557404, + -0.03371395170688629, + 0.0526852160692215, + 0.023910747841000557, + 0.01292123831808567, + -0.07465263456106186, + 0.08119025081396103, + 0.02829767018556595, + -0.028365464881062508, + 0.011695493943989277, + -0.06664537638425827, + -0.007221671286970377, + -0.05091216042637825, + -0.014969655312597752, + 0.007932359352707863, + -0.03317435458302498, + -0.012519698590040207, + 0.02321440540254116, + -1.9872954837296675e-08, + -0.008774823509156704, + -0.08857295662164688, + 0.012165564112365246, + 0.007099180482327938, + 0.08368280529975891, + -0.023729320615530014, + -0.05042686313390732, + -0.016405100002884865, + -0.06970629841089249, + 0.0333172045648098, + 0.0839194506406784, + -0.015274707227945328, + -0.07913888990879059, + -0.02476523071527481, + -0.05989838391542435, + 0.0370621420443058, + -0.00836563017219305, + 0.013402462005615234, + -0.017001276835799217, + -0.005077851004898548, + -0.01069306954741478, + 0.02872156724333763, + 0.01775507628917694, + 0.03912108764052391, + 0.0003179321938659996, + 0.04278917983174324, + 0.027550598606467247, + -0.03534317761659622, + 0.056436099112033844, + 0.11176280677318573, + -0.012367394752800465, + -0.026772119104862213, + 0.02243330143392086, + -0.016049442812800407, + -0.0746641755104065, + 0.049798984080553055, + -0.07648348063230515, + 0.021675879135727882, + 0.036730628460645676, + 0.12407997250556946, + 0.006435236427932978, + -0.009431515820324421, + 0.06808386743068695, + 0.018974557518959045, + -0.0554586723446846, + -0.0290670245885849, + 0.023259935900568962, + 0.0037764273583889008, + -0.09005502611398697, + -0.07232442498207092, + -0.06251408904790878, + 0.02938687428832054, + -0.012765184976160526, + 0.1663137674331665, + 0.0016869971295818686, + 0.043368466198444366, + 0.05551747605204582, + 0.12787014245986938, + 0.04661761596798897, + 0.04765964299440384, + 0.039662957191467285, + 0.03023660182952881, + 0.004824777599424124, + -0.019613508135080338 + ], + "folder-minus-bold||directory,directories,files,delete,write,remove,-": [ + 0.02469768188893795, + 0.020647743716835976, + -0.05174120515584946, + 0.06257456541061401, + 0.06958480924367905, + -0.04830373451113701, + 0.10596119612455368, + -0.0273678470402956, + 0.06689302623271942, + -0.0003265238192398101, + 0.09636354446411133, + 0.0521499328315258, + 0.07703927159309387, + 0.012821989133954048, + -0.0607135035097599, + 0.02288585714995861, + -0.01342418696731329, + 0.04588766396045685, + -0.034489598125219345, + -0.014127389527857304, + -0.015137171372771263, + 0.07108979672193527, + 0.01617184840142727, + -0.02243829146027565, + 0.10124320536851883, + 0.021047232672572136, + -0.005360107868909836, + -0.013540261425077915, + -0.0013140791561454535, + -0.03941509127616882, + 0.01091653760522604, + 0.004406046587973833, + 0.15896111726760864, + 0.031140077859163284, + 0.062458209693431854, + 0.04095360264182091, + -0.0024506566114723682, + -0.026554599404335022, + 0.0026021760422736406, + 0.04292282834649086, + 0.009765437804162502, + 0.012806336395442486, + -0.027216540649533272, + -0.0071876877918839455, + -0.11614858359098434, + -0.059960104525089264, + -0.08588077127933502, + -0.050656743347644806, + -0.0034123770892620087, + 0.008299007080495358, + 0.023179957643151283, + -0.021532708778977394, + -0.13729381561279297, + -0.022784877568483353, + 0.02139880135655403, + 0.008816762827336788, + -0.06349941343069077, + 0.01129810232669115, + -0.019142860546708107, + -0.025816505774855614, + 0.08375725150108337, + 0.04004022479057312, + -0.006285050418227911, + -0.028562098741531372, + 0.07397351413965225, + -0.009247295558452606, + 0.0006613549776375294, + 0.03064887225627899, + -0.021275075152516365, + 0.05658961832523346, + 0.02548767440021038, + -0.02412525750696659, + -0.05705467611551285, + 0.04718942195177078, + -0.028367850929498672, + 0.030814947560429573, + 0.02584262378513813, + 0.08646661043167114, + -0.07567998766899109, + -0.04277515411376953, + -0.01427681464701891, + -0.02849380113184452, + 0.007246934808790684, + -0.0023977868258953094, + 0.04618610441684723, + 0.0893329381942749, + -0.06251655519008636, + -0.0024581169709563255, + -0.06056666746735573, + -0.04810280352830887, + -0.029194632545113564, + -0.11685767769813538, + 0.008363288827240467, + 0.05681607872247696, + -0.13351503014564514, + 0.023189930245280266, + 0.049219388514757156, + 0.09734736382961273, + -0.021059241145849228, + 0.04779624938964844, + 0.0006232451414689422, + 0.020701032131910324, + -0.0225196722894907, + -0.037424392998218536, + -0.04221674054861069, + 0.004820880014449358, + 0.0060069989413022995, + -0.04291469603776932, + -0.011831219308078289, + -0.016864342615008354, + -0.0466630645096302, + -0.07988715916872025, + -0.04459461197257042, + -0.06385649740695953, + -0.03245265781879425, + -0.019814781844615936, + -0.011611775495111942, + 0.05716181546449661, + 0.05729616805911064, + 0.10537002980709076, + 0.06667587906122208, + -0.08081039786338806, + -0.038598258048295975, + -0.01977301388978958, + 0.012394879013299942, + -0.01610613986849785, + 0.05632173642516136, + -8.010570983599712e-35, + 0.06611315160989761, + 0.03589795529842377, + 0.01690620929002762, + 0.06537491083145142, + 0.07365243881940842, + 0.0279708169400692, + -0.044355202466249466, + -0.0728815346956253, + -0.06634504348039627, + 0.10205673426389694, + 0.10504348576068878, + 0.05065010488033295, + -0.046893998980522156, + 0.004968972876667976, + 0.042352981865406036, + -0.008229661732912064, + 0.047017231583595276, + -0.09095168858766556, + -0.07833656668663025, + -0.04221311956644058, + -0.012953891418874264, + 0.09258534014225006, + -0.08106569200754166, + -0.02105659991502762, + -0.0061884792521595955, + -0.08444993197917938, + 0.07416737824678421, + -0.02790742926299572, + -0.035506874322891235, + 0.023370927199721336, + -0.010199187323451042, + -0.004535051062703133, + -0.0005074687069281936, + 0.06794695556163788, + -0.05455920100212097, + 0.07737366110086441, + -0.11390722543001175, + -0.01515881810337305, + -0.0066453549079597, + 0.05785379558801651, + -0.11971986293792725, + -0.016054028645157814, + -0.08035038411617279, + -0.04905376210808754, + 0.03501370921730995, + 0.14488866925239563, + 0.0216660276055336, + -0.08691123872995377, + -0.05352936312556267, + 0.0594322606921196, + -0.016686921939253807, + 0.019936351105570793, + 0.05087084695696831, + 0.016974570229649544, + -0.013892168179154396, + -0.0358101986348629, + -0.014276038855314255, + 0.03144622966647148, + 0.018596775829792023, + 0.004334356635808945, + 0.06379908323287964, + 0.04135347902774811, + -0.006233894266188145, + -0.03555511683225632, + -0.06742120534181595, + -0.0003615044988691807, + -0.034770455211400986, + 0.0026986233424395323, + 0.06796268373727798, + 0.022790823131799698, + -0.06573373824357986, + 0.06685372442007065, + 0.047052908688783646, + 0.05467740818858147, + -0.05636133253574371, + 0.014650647528469563, + 0.008438603952527046, + -0.05670152232050896, + 0.05386136472225189, + -0.07046946883201599, + -0.11598368734121323, + -0.015026739798486233, + -0.034588251262903214, + 0.017025744542479515, + 0.023936962708830833, + -0.008577216416597366, + -0.04120415076613426, + -0.0018358384259045124, + -0.013086793944239616, + -0.04472403973340988, + -0.014290476217865944, + 0.03954329714179039, + -0.017249079421162605, + -0.0831773430109024, + -0.10641919821500778, + -2.2918920088539307e-33, + 0.05620579794049263, + 0.014703549444675446, + -0.09976826608181, + -0.010726705193519592, + -0.10586732625961304, + 0.015629688277840614, + 0.016716811805963516, + -0.014443579129874706, + -0.005826564505696297, + -0.014328403398394585, + 0.017810147255659103, + 0.03674649819731712, + -0.04442370682954788, + -0.043771080672740936, + 0.041398122906684875, + 0.006578013766556978, + -0.01858443021774292, + -0.05171124264597893, + -0.05423440784215927, + -0.010223562829196453, + -0.05177487060427666, + 0.00011790040298365057, + -0.009787827730178833, + 0.07971259206533432, + -0.006243215873837471, + -0.04402216523885727, + -0.012861295603215694, + -0.001096138497814536, + 0.004324375186115503, + -0.0010253877844661474, + 0.020233536139130592, + 0.053899314254522324, + 0.05623548850417137, + 0.012054597958922386, + -0.05850371718406677, + -0.06615686416625977, + -0.021736960858106613, + -0.004504159092903137, + 0.010698377154767513, + 0.016541579738259315, + -0.05681762471795082, + -0.014751696959137917, + 0.05236315727233887, + 0.07420343905687332, + -0.0462394542992115, + -0.000686557381413877, + -0.000181720286491327, + -0.10751084238290787, + -0.014323173090815544, + 0.029145967215299606, + 0.08298221230506897, + -0.05193595960736275, + -0.08337648212909698, + -0.00501874228939414, + 0.01634286716580391, + -0.011636702343821526, + -0.0234450064599514, + -0.006791270803660154, + -0.024569539353251457, + 0.06975819170475006, + -0.057625073939561844, + 0.03309626877307892, + -0.043420903384685516, + -0.010049844160676003, + -0.037830669432878494, + -0.03587455302476883, + -0.006988304201513529, + -0.00844667013734579, + 0.04692520946264267, + -0.04352748021483421, + 0.08629849553108215, + 0.007244544103741646, + -0.008525408804416656, + 0.05253863334655762, + 0.0002289687399752438, + -0.0856928750872612, + 0.05076056718826294, + 0.03008817695081234, + 0.0179798174649477, + 0.03595079481601715, + -0.016881542280316353, + 0.010837623849511147, + -0.05767769366502762, + 0.07870972901582718, + -0.05288150906562805, + -0.0074725826270878315, + -0.09507926553487778, + 0.024521727114915848, + -0.02174115739762783, + 0.002073898445814848, + 0.022692270576953888, + 0.05056511238217354, + 0.08293722569942474, + -0.02779560163617134, + -0.016312479972839355, + -2.1920193660207588e-08, + -0.0831964984536171, + -0.08816956728696823, + -0.005319560877978802, + -0.02494719624519348, + 0.05581708252429962, + -0.055227164179086685, + -0.015359590761363506, + 0.03437045216560364, + -0.010709288530051708, + -0.016227830201387405, + 0.09234500676393509, + 0.0134275509044528, + -0.12331290543079376, + -0.09605587273836136, + 0.0007152376929298043, + 0.05399087816476822, + 0.041039712727069855, + 0.05330440774559975, + -0.01494282204657793, + 0.04640569910407066, + 0.0012055994011461735, + 0.060393162071704865, + 0.0174112468957901, + 0.034851670265197754, + 0.03937770053744316, + -0.001964953728020191, + -0.02650206722319126, + 0.04661540314555168, + 0.024668578058481216, + 0.022694729268550873, + 0.05079285055398941, + 0.032332777976989746, + 0.03469179943203926, + -0.01366567611694336, + -0.05053349956870079, + -0.03274112567305565, + 0.0014941188273951411, + 0.02984575368463993, + -0.007222408428788185, + 0.12958954274654388, + -0.04564210772514343, + 0.0070319827646017075, + 0.0444311648607254, + 0.00013796686835121363, + -0.05594833940267563, + -0.0586995966732502, + 0.04045194387435913, + 0.004143127705901861, + -0.08382868021726608, + -0.13931496441364288, + -0.018917394801974297, + 0.05927491933107376, + -0.036466456949710846, + 0.12441909313201904, + -0.022239690646529198, + -0.008984957821667194, + 0.023692993447184563, + 0.12123346328735352, + -0.01798573136329651, + 0.014012008905410767, + 0.08512037992477417, + 0.043274637311697006, + 0.005344579927623272, + -0.02342698909342289 + ], + "folder-open-bold||directory,directories,files,folders,load": [ + 0.04815429076552391, + -0.03237773850560188, + -0.08155078440904617, + 0.09782126545906067, + 0.07308526337146759, + -0.04334423318505287, + 0.04861488938331604, + 0.004013555124402046, + 0.06305151432752609, + -0.026411980390548706, + 0.01941353641450405, + 0.08078331500291824, + 0.0328717902302742, + -0.002732348395511508, + 0.014823289588093758, + 0.06231872737407684, + 0.014061866328120232, + 0.048866529017686844, + -0.0025257612578570843, + 0.04257064685225487, + -0.01050459872931242, + 0.061654869467020035, + 0.027402928099036217, + -0.08245708048343658, + 0.00125414552167058, + -0.02640015445649624, + -0.023364277556538582, + -0.04299483448266983, + -0.013863456435501575, + -0.04155227541923523, + 0.04178948327898979, + -0.005627724342048168, + 0.10552608966827393, + 0.010053963400423527, + 0.06267151981592178, + 0.05860460549592972, + -0.017713161185383797, + -0.05723058059811592, + -0.03075472079217434, + 0.0616137720644474, + 0.04709107056260109, + 0.014095156453549862, + 0.006423597224056721, + -0.0038254421669989824, + -0.14061595499515533, + -0.09752538800239563, + -0.020876022055745125, + -0.053130026906728745, + 0.030662406235933304, + 0.0010495162568986416, + -0.02699379436671734, + -0.04159064218401909, + -0.09326931834220886, + -0.06856966763734818, + 0.0044479975476861, + 0.01007713470607996, + -0.046817149966955185, + 0.008995041251182556, + 0.00419590575620532, + -0.00813224632292986, + 0.020737139508128166, + 0.007525291759520769, + 0.024749048054218292, + -0.011195038445293903, + 0.06088558956980705, + 0.003894674824550748, + 0.005482903216034174, + 0.027058616280555725, + -0.05367685481905937, + -0.023248791694641113, + 0.05553962662816048, + -0.003240998135879636, + -0.04478568211197853, + 0.05849581956863403, + -0.023868465796113014, + -0.005914886947721243, + 0.029836958274245262, + 0.05290739983320236, + -0.05754047632217407, + -0.09000463038682938, + -0.008108883164823055, + -0.07433082163333893, + 0.017955224961042404, + -0.020347582176327705, + 0.11406440287828445, + 0.12946957349777222, + -0.07528933137655258, + -0.05709955841302872, + -0.05351081117987633, + 0.0020098364911973476, + -0.01952475868165493, + -0.11865951120853424, + -0.04772856459021568, + 0.12110935151576996, + -0.09779989719390869, + -0.016000937670469284, + 0.0657859519124031, + 0.07885703444480896, + -0.01341160200536251, + 0.034645214676856995, + -0.01578591763973236, + 0.05565788224339485, + 0.009981938637793064, + -0.004036650527268648, + -0.07860822230577469, + 0.017260931432247162, + 0.027608085423707962, + 0.005223479587584734, + -0.048418398946523666, + -0.0646112933754921, + -0.0195052158087492, + -0.11955271661281586, + 0.010723951272666454, + -0.08330927044153214, + -0.04396628588438034, + -0.05567643418908119, + -0.04324650019407272, + 0.022073302417993546, + 0.021514512598514557, + 0.1431644856929779, + 0.06304411590099335, + -0.0785742774605751, + -0.031701523810625076, + -0.04462331905961037, + 0.009008369408547878, + -0.02772357128560543, + 0.04340004175901413, + -7.06455941796871e-34, + 0.022314561530947685, + 0.007948222570121288, + -0.0015719278017058969, + 0.09443912655115128, + 0.03416524827480316, + -0.019039496779441833, + -0.024851525202393532, + -0.07397449016571045, + -0.107591912150383, + 0.07245536148548126, + 0.12099549919366837, + 0.07286641746759415, + -0.0719527155160904, + 0.0148852514103055, + 0.03179742023348808, + -0.015638019889593124, + 0.032148417085409164, + -0.024481669068336487, + -0.053215086460113525, + -0.0622539259493351, + -0.0367649607360363, + 0.0773409903049469, + -0.09109878540039062, + -0.018332237377762794, + -0.03420776501297951, + -0.035397570580244064, + 0.09392373263835907, + 0.009707296267151833, + -0.01529538445174694, + 0.01510950643569231, + 0.04540254548192024, + -0.012036444619297981, + -0.003367551602423191, + 0.08058176189661026, + -0.0972607210278511, + 0.03300206735730171, + -0.06710603088140488, + 0.03063690848648548, + -0.008961421437561512, + 0.01409170776605606, + -0.0953112542629242, + 0.009354954585433006, + -0.0063242074102163315, + -0.012530148029327393, + -0.007654622662812471, + 0.12882758677005768, + -0.01650637947022915, + -0.06698682904243469, + -0.08147205412387848, + 0.024652067571878433, + -0.027053698897361755, + -0.011371306143701077, + 0.004255515523254871, + 0.08205995708703995, + -0.007280938792973757, + -0.012582073919475079, + -0.09166424721479416, + 0.017065875232219696, + 0.0478585809469223, + 0.03438248857855797, + 0.0676024779677391, + 0.037682294845581055, + -0.0035873358137905598, + -0.026055915281176567, + -0.03513486683368683, + 0.0344107411801815, + 0.019371047616004944, + 0.016947250813245773, + 0.03675492852926254, + 0.057373929768800735, + -0.032311588525772095, + 0.03578050062060356, + 0.06217745319008827, + 0.05347035825252533, + -0.0003854723763652146, + 0.04712764173746109, + 0.011034956201910973, + -0.03528372570872307, + 0.06681584566831589, + -0.06396020203828812, + -0.05503193661570549, + -0.06747875362634659, + -0.0031958541367202997, + 0.060950662940740585, + -0.024125467985868454, + 0.017221342772245407, + -0.0593780055642128, + -0.02104787714779377, + 0.02284826897084713, + -0.016677141189575195, + -0.014132625423371792, + 0.02530081197619438, + -0.018551945686340332, + -0.08267934620380402, + -0.09847740083932877, + -2.4290975461918313e-33, + 0.12516005337238312, + 0.04545331001281738, + -0.05978551134467125, + -0.011423355899751186, + -0.03575308993458748, + 0.03478308767080307, + -0.04400435835123062, + -0.00808620173484087, + -0.05732802301645279, + 0.0028454249259084463, + 0.03249717131257057, + 0.045271437615156174, + 0.013166247867047787, + -0.0012548775412142277, + 0.06470423936843872, + 0.015399032272398472, + 0.03795730322599411, + 0.03535730019211769, + -0.0821976587176323, + -0.016538795083761215, + -0.035099226981401443, + -0.027830706909298897, + -0.014204682782292366, + 0.03604218736290932, + 0.03021237999200821, + -0.020954420790076256, + -0.016922153532505035, + -0.0340743213891983, + -0.024651579558849335, + 0.01942366547882557, + -0.0013071625726297498, + 0.026257343590259552, + 0.01954287476837635, + 0.025697875767946243, + -0.04487304762005806, + 0.020096467807888985, + 0.016734572127461433, + -0.01948699727654457, + 0.024988053366541862, + -0.008178877644240856, + -0.025233477354049683, + -0.013318442739546299, + 0.01139023806899786, + 0.029173927381634712, + -0.08330361545085907, + -0.013842510990798473, + 0.04426898807287216, + -0.09379154443740845, + -0.05963069945573807, + 0.012330641970038414, + 0.07255177944898605, + -0.0415913350880146, + -0.007054389454424381, + -0.05278727412223816, + 0.032150063663721085, + 0.00033461709972471, + -0.016138818114995956, + -0.01869574375450611, + -0.023119693621993065, + 0.06111256033182144, + -0.020962849259376526, + 0.031213629990816116, + -0.12627281248569489, + -0.04675404727458954, + -0.05694155395030975, + -0.09147880971431732, + 0.012084259651601315, + -0.003173630451783538, + 0.05704149231314659, + -0.07769903540611267, + 0.0410715751349926, + -0.022463444620370865, + 0.050733957439661026, + 0.05483623966574669, + 0.03380988538265228, + -0.0648752823472023, + 0.07241538912057877, + -0.02448887564241886, + 0.01818862557411194, + 0.05257825553417206, + 0.008076615631580353, + -0.024008432403206825, + -0.019480980932712555, + 0.021787194535136223, + -0.028944259509444237, + 0.027938522398471832, + -0.024568000808358192, + 0.01670665293931961, + -0.020048754289746284, + -0.01656239479780197, + -0.015612375922501087, + 0.055538009852170944, + 0.11806017905473709, + 0.003053886815905571, + -0.03191211074590683, + -2.143227995077268e-08, + -0.11815629154443741, + -0.09729208797216415, + 0.03338952735066414, + -0.01644580066204071, + 0.051397811621427536, + -0.0438133180141449, + -0.050857096910476685, + 0.057084448635578156, + -0.05475549399852753, + 0.017203109338879585, + 0.05321364849805832, + 0.029049457982182503, + -0.05098634213209152, + -0.06038782373070717, + -0.023029794916510582, + 0.06008618697524071, + 0.04717111960053444, + 0.06862109899520874, + 0.003983904141932726, + 0.013119513168931007, + -0.004252950195223093, + 0.06489595770835876, + 0.08106961846351624, + 0.049013786017894745, + 0.004165617749094963, + 0.013380395248532295, + -0.0583173930644989, + -0.05377303808927536, + 0.03468373417854309, + 0.042353320866823196, + -0.02448454685509205, + 0.04217911884188652, + -0.028663989156484604, + -0.023614078760147095, + -0.11971365660429001, + 0.014000389724969864, + -0.010948056355118752, + 0.008932959288358688, + -0.03605809435248375, + 0.1019042506814003, + -0.012018218636512756, + -0.017627740278840065, + 0.05189402773976326, + -0.014684022404253483, + -0.08391499519348145, + -0.04190942272543907, + 0.002018262166529894, + 0.05192232504487038, + -0.09617475420236588, + -0.12082108855247498, + -0.08348480612039566, + 0.03671051934361458, + -0.03334248811006546, + 0.09535317867994308, + -0.018046392127871513, + -0.029328439384698868, + -0.0020155503880232573, + 0.13097745180130005, + -0.06135889142751694, + 0.05438217893242836, + 0.05425727367401123, + 0.025214003399014473, + 0.0007600035169161856, + -0.0007854820578359067 + ], + "folder-plus-bold||directory,directories,files,save,write,add,new,create,+": [ + 0.016802942380309105, + -0.030302245169878006, + -0.06944382190704346, + 0.08838459849357605, + 0.07787735760211945, + -0.0007235279772430658, + 0.056146495044231415, + -0.01024605706334114, + 0.06134836748242378, + 0.03955129161477089, + 0.09243583679199219, + 0.03671582043170929, + 0.05776684358716011, + -0.03559134900569916, + -0.04331720247864723, + 0.029317736625671387, + -0.059021759778261185, + 0.050261642783880234, + -0.03077608346939087, + -0.07420990616083145, + 0.019701333716511726, + 0.03831363841891289, + 0.05301212891936302, + -0.013110950589179993, + 0.10235133767127991, + 0.00028057568124495447, + -0.028363021090626717, + -0.02840854413807392, + 0.049713004380464554, + -0.024501340463757515, + 0.02464998885989189, + 0.015124061144888401, + 0.14460720121860504, + 0.005421699024736881, + 0.06916292011737823, + 0.054409850388765335, + 0.002962956903502345, + -0.0002158535789931193, + -0.011071344837546349, + -0.004823409952223301, + 0.0057017141953110695, + 0.009442233480513096, + 0.01714283972978592, + -0.011533461511135101, + -0.127291738986969, + -0.09116838127374649, + -0.04308481141924858, + -0.07650458812713623, + 0.02652829699218273, + 0.022942528128623962, + 0.03139587491750717, + -0.047097641974687576, + -0.15435835719108582, + -0.047339048236608505, + 0.04393341392278671, + 0.01651991531252861, + -0.0724242702126503, + 0.026736045256257057, + -0.034103818237781525, + -0.02401568554341793, + 0.08196444064378738, + 0.02374453656375408, + 0.035613615065813065, + -0.030201492831110954, + 0.0388961136341095, + 0.013697394169867039, + -0.029472509399056435, + 0.07626113295555115, + -0.01896844618022442, + 0.03438672423362732, + 0.022812072187662125, + 0.030317503958940506, + -0.07176677137613297, + 0.05616404488682747, + 0.006996364798396826, + 0.0008695918368175626, + 0.04817163571715355, + 0.07564760744571686, + -0.07478640228509903, + -0.05509227514266968, + -0.004421285353600979, + -0.020943179726600647, + 0.00247621675953269, + 0.0023872375022619963, + 0.070147305727005, + 0.08422655612230301, + -0.024493126198649406, + 0.005033071618527174, + -0.08049548417329788, + -0.07504530996084213, + -0.03188882768154144, + -0.10458757728338242, + -0.0174393393099308, + 0.04252363368868828, + -0.13862237334251404, + 0.011239987798035145, + 0.06078373268246651, + 0.0725395679473877, + -0.02491234615445137, + -0.007503591477870941, + -5.087086174171418e-05, + 0.015588410198688507, + -0.008752339519560337, + -0.008381810039281845, + 0.02159985341131687, + -0.00252868072129786, + 0.023007050156593323, + -0.05150609090924263, + -0.03128361329436302, + 0.0023679884616285563, + -0.02003241330385208, + -0.04758527874946594, + -0.03795856237411499, + -0.08355565369129181, + -0.03508330509066582, + -0.018419308587908745, + -0.05717003345489502, + 0.025766447186470032, + 0.058039575815200806, + 0.09514360129833221, + 0.13786445558071136, + -0.06288183480501175, + -0.03542128950357437, + -0.017602361738681793, + -0.01828070729970932, + -0.06572436541318893, + 0.052115410566329956, + -9.04066093061698e-34, + 0.0884237289428711, + 0.04888547211885452, + 0.019600627943873405, + 0.11285005509853363, + 0.07520973682403564, + 0.036157913506031036, + -0.0431537888944149, + -0.03223409131169319, + -0.09980224072933197, + 0.04432234913110733, + 0.07431744784116745, + 0.005812295712530613, + -0.07232584059238434, + 0.04613698273897171, + 0.026302330195903778, + -0.0638914480805397, + 0.0360434390604496, + -0.05966784805059433, + -0.0520605705678463, + -0.0445711649954319, + -0.05580684170126915, + 0.09887982904911041, + -0.05680093541741371, + 0.013059343211352825, + 0.023578772321343422, + -0.03749403357505798, + 0.09631818532943726, + -0.03836663439869881, + -0.033007148653268814, + 0.006775189656764269, + -0.011357884854078293, + -0.0255943201482296, + -0.020086731761693954, + 0.08164013177156448, + -0.07631199806928635, + 0.0947733074426651, + -0.09925265610218048, + 0.010815460234880447, + 0.018001290038228035, + 0.05868447944521904, + -0.10228238254785538, + -0.023489398881793022, + -0.08478614687919617, + -0.047978080809116364, + 0.024520639330148697, + 0.11702306568622589, + -0.03459303081035614, + -0.08631636947393417, + -0.03550194948911667, + 0.019959261640906334, + -0.04108481854200363, + 0.016755973920226097, + 0.025612106546759605, + 0.06470269709825516, + -0.02720595709979534, + -0.005639249924570322, + -0.056719791144132614, + 0.00628416333347559, + 0.013830110430717468, + 0.0012001320719718933, + 0.05878009274601936, + 0.05798573046922684, + -0.015619036741554737, + 0.012363230809569359, + -0.05730745941400528, + 0.0019380096346139908, + 0.04236171022057533, + 0.009373152628540993, + 0.08344211429357529, + 0.03305331617593765, + -0.05323322117328644, + 0.036437880247831345, + -0.024499867111444473, + 0.06340689212083817, + -0.023226244375109673, + -0.006259764079004526, + -0.014987628906965256, + -0.048148948699235916, + 0.011536016128957272, + -0.0724571943283081, + -0.11532718688249588, + -0.04887238144874573, + -0.03030540980398655, + 0.004210796672850847, + 0.03384164348244667, + -0.007076732348650694, + -0.05288272351026535, + 0.026207609102129936, + 0.007697444409132004, + -0.05651049688458443, + -0.014891061931848526, + 0.023524627089500427, + 0.026923486962914467, + -0.08392889052629471, + -0.10127386450767517, + -1.4970115248973686e-33, + 0.06323590129613876, + -0.014590492472052574, + -0.09608642756938934, + -0.011610221117734909, + -0.09555710107088089, + 0.02843587100505829, + -0.022734925150871277, + -0.048931390047073364, + -0.04988584294915199, + -0.0011365482350811362, + -0.007441878318786621, + 0.0463237427175045, + -0.04050328582525253, + -0.020585229620337486, + 0.017520887777209282, + -0.025770867243409157, + -0.031144965440034866, + 0.0018304469995200634, + -0.008590982295572758, + -0.019833646714687347, + -0.025627922266721725, + -0.005201863124966621, + 0.026310771703720093, + 0.06451190263032913, + 0.020977161824703217, + -0.014954202808439732, + -0.04155212640762329, + 0.022293152287602425, + 0.006210808642208576, + -0.032790571451187134, + 0.029934784397482872, + 0.0650099664926529, + 0.004685510881245136, + 0.016180463135242462, + -0.035445887595415115, + -0.05264285206794739, + -0.0010310690850019455, + -0.001655980828218162, + 0.01029263623058796, + 0.045349057763814926, + -0.006834264378994703, + -0.04597805440425873, + 0.0406247042119503, + 0.06460227817296982, + -0.02847091108560562, + -0.031411781907081604, + 0.0451897494494915, + -0.09134789556264877, + -0.04207281023263931, + 0.029173661023378372, + 0.11141712963581085, + -0.07826133072376251, + -0.09637360274791718, + -0.027944359928369522, + 0.030564486980438232, + -0.010953830555081367, + -0.006325143855065107, + -0.013198588974773884, + -0.006231349892914295, + 0.03300453722476959, + -0.06350474804639816, + 0.021464653313159943, + -0.04681383818387985, + -0.0306488536298275, + -0.055035896599292755, + -0.0537974089384079, + 0.014531447552144527, + -0.03808891773223877, + 0.026546690613031387, + -0.044169194996356964, + 0.08544489741325378, + 0.008916795253753662, + -0.026175091043114662, + 0.058437418192625046, + -0.007093721069395542, + -0.06035331264138222, + 0.027650704607367516, + 0.017353655770421028, + 0.02880878746509552, + 0.0093743447214365, + -0.016654135659337044, + 0.0190671905875206, + -0.0032995608635246754, + 0.08028683811426163, + -0.03523978963494301, + -0.0210239477455616, + -0.06510914117097855, + 0.05673739314079285, + -0.0042053512297570705, + -0.02655605971813202, + -0.008393494412302971, + 0.12504157423973083, + 0.03423628211021423, + -0.025271641090512276, + -0.03484419733285904, + -2.3085977574055505e-08, + -0.08360956609249115, + -0.08325473964214325, + -0.06871692836284637, + -0.021244436502456665, + 0.06074534356594086, + -0.07544118911027908, + -0.03818337619304657, + 0.014922132715582848, + -0.03674294799566269, + -0.03807970881462097, + 0.06871523708105087, + 0.010015856474637985, + -0.0849602147936821, + -0.07898401468992233, + -0.03609009459614754, + 0.03929467126727104, + 0.06458146870136261, + 0.032907795161008835, + -0.002284832764416933, + 0.019724112004041672, + 0.025651883333921432, + 0.1032276526093483, + 0.007849160581827164, + 0.03323888033628464, + -0.002855306025594473, + -0.004257552791386843, + -0.00965588353574276, + 0.0057688369415700436, + 0.021861815825104713, + 0.029696663841605186, + 0.07427123934030533, + 0.032074324786663055, + -0.024661896750330925, + 0.009137282148003578, + -0.02832368202507496, + -0.013059360906481743, + 0.0313970185816288, + 0.02374696172773838, + 0.001814119634218514, + 0.08382529765367508, + -0.014520831406116486, + 0.017894452437758446, + 0.058636218309402466, + -0.01613423228263855, + -0.03607385233044624, + -0.08446626365184784, + 0.02545490860939026, + 0.0012914115795865655, + -0.07694127410650253, + -0.1411735713481903, + -0.052530303597450256, + 0.03847000375390053, + 0.04877797141671181, + 0.10852748900651932, + -0.023348746821284294, + -0.013136993162333965, + 0.022796055302023888, + 0.15909701585769653, + 0.037631385028362274, + 0.025296134874224663, + 0.05345740541815758, + 0.008145773783326149, + 0.04253879562020302, + 0.011755203828215599 + ], + "folder-simple-bold||directory,directories,files,folders": [ + 0.03355849161744118, + -0.01390150748193264, + -0.047656286507844925, + 0.08232593536376953, + 0.08803828060626984, + -0.029316099360585213, + 0.07532887905836105, + -0.003361439099535346, + 0.028409048914909363, + -0.021569423377513885, + 0.05738009139895439, + 0.04697748273611069, + 0.0652129128575325, + -0.005728165619075298, + -0.027888784185051918, + 0.04102768376469612, + -0.010738629847764969, + 0.06579858809709549, + -0.01801677606999874, + 0.0001154297569883056, + -0.031576745212078094, + 0.08386675268411636, + 0.04641466587781906, + -0.04072180390357971, + 0.028990015387535095, + 0.002223752439022064, + 0.007097648922353983, + -0.009555608965456486, + 0.00982642825692892, + -0.0409054234623909, + 0.032090552151203156, + 0.004122630227357149, + 0.13402055203914642, + 0.03945811465382576, + 0.053460102528333664, + 0.0276714488863945, + 0.020406117662787437, + -0.0039258613251149654, + -0.008154833689332008, + 0.06318966299295425, + 0.0029709497466683388, + 0.016359427943825722, + 0.01583707518875599, + -0.019740073010325432, + -0.13238389790058136, + -0.09231828898191452, + -0.029683792963624, + -0.0344175323843956, + 0.0033153884578496218, + -0.02449277602136135, + 0.001166673144325614, + -0.05388566851615906, + -0.11730131506919861, + -0.04585280269384384, + 0.011818739585578442, + 0.023172995075583458, + -0.09110121428966522, + 0.027117345482110977, + 0.0030647343955934048, + -0.031454604119062424, + 0.07382490485906601, + -0.006381681188941002, + 0.039504069834947586, + -0.03436418995261192, + 0.054091811180114746, + -0.008472148329019547, + 0.019424617290496826, + 0.07097068428993225, + -0.028607571497559547, + 0.00891382247209549, + 0.04186580702662468, + 0.0033539405558258295, + -0.0682910829782486, + 0.07672178000211716, + -0.025579974055290222, + 0.004968246445059776, + 0.03512353077530861, + 0.08386482298374176, + -0.06567656248807907, + -0.052626654505729675, + -0.05886702612042427, + -0.07413846254348755, + 0.009967116639018059, + 0.011703824624419212, + 0.07462497055530548, + 0.06699462234973907, + -0.09175671637058258, + -0.005830978509038687, + -0.08693703263998032, + -0.05208740383386612, + -0.0043253470212221146, + -0.11079095304012299, + 0.0012071395758539438, + 0.09034132212400436, + -0.10336798429489136, + 0.01912006549537182, + 0.08016366511583328, + 0.06892897188663483, + -0.0393531359732151, + 0.029473939910531044, + -0.015006892383098602, + 0.03323308005928993, + 0.02289767935872078, + -0.05123035982251167, + -0.05539877712726593, + 0.03632304444909096, + 0.020900581032037735, + -0.059536162763834, + -0.007268520537763834, + -0.03230074793100357, + -0.047993410378694534, + -0.10339132696390152, + -0.030169818550348282, + -0.08157142996788025, + -0.04486959055066109, + -0.04641450569033623, + -0.021441854536533356, + 0.01760425604879856, + 0.057483285665512085, + 0.13395991921424866, + 0.05729839205741882, + -0.06626299023628235, + -0.03728552535176277, + -0.003265503328293562, + 0.021552912890911102, + -0.00860871747136116, + 0.03286619111895561, + -1.0798327123878659e-33, + 0.05885649845004082, + 0.06257079541683197, + 0.0010478505864739418, + 0.0957912877202034, + 0.05579754337668419, + -0.001025557518005371, + -0.024342143908143044, + -0.06377038359642029, + -0.05910787731409073, + 0.06627519428730011, + 0.11137615144252777, + 0.02753046527504921, + -0.06033257395029068, + -0.016766883432865143, + 0.01369011215865612, + -0.03444761037826538, + 0.030547935515642166, + -0.05012034997344017, + -0.0686408281326294, + -0.06550055742263794, + -0.06376726180315018, + 0.10835371166467667, + -0.06007763743400574, + -0.03193540498614311, + -0.02776271104812622, + -0.05440206825733185, + 0.10594730824232101, + -0.006697865203022957, + -0.022624555975198746, + 0.014297503046691418, + 0.006183976773172617, + 0.013673006556928158, + 0.036886852234601974, + 0.08702616393566132, + -0.06764044612646103, + 0.07451748102903366, + -0.06254696846008301, + 0.01698455773293972, + 0.007591219153255224, + 0.057668689638376236, + -0.10788369178771973, + -0.013699382543563843, + -0.03544389456510544, + -0.03133188560605049, + 0.02060365304350853, + 0.16251756250858307, + -0.0041632456704974174, + -0.10606247186660767, + -0.04398006200790405, + 0.03258278965950012, + -0.03221958130598068, + 0.0013337793061509728, + 0.01665288209915161, + 0.0681268721818924, + 0.006404276937246323, + 0.005217205733060837, + -0.04769975319504738, + 0.035489488393068314, + 0.023515086621046066, + 0.022580008953809738, + 0.041466906666755676, + 0.05578211322426796, + -0.007499666418880224, + -0.02272690273821354, + -0.08078649640083313, + 0.025642354041337967, + 0.0025301435962319374, + 0.008937239646911621, + 0.06837297230958939, + 0.03471666947007179, + -0.02889612503349781, + 0.0967317745089531, + 0.01899602822959423, + 0.02321035787463188, + -0.020985417068004608, + 0.047800760716199875, + 0.012355240993201733, + -0.05512472614645958, + 0.026659926399588585, + -0.08167122304439545, + -0.1068546324968338, + -0.02093528024852276, + -0.036268819123506546, + 0.06832171976566315, + 0.0006126697408035398, + 0.010026036761701107, + -0.021122761070728302, + 0.019844818860292435, + -0.023429332301020622, + -0.062006715685129166, + -0.01690748706459999, + 0.03973287343978882, + -0.006891806609928608, + -0.11146900057792664, + -0.08052697032690048, + -1.578478426197138e-33, + 0.11572859436273575, + 0.03201127052307129, + -0.07257133722305298, + -0.014014983549714088, + -0.04083976894617081, + 0.04434343799948692, + 0.010784550569951534, + -0.029238685965538025, + -0.051101136952638626, + -0.004325471818447113, + 0.0005783357773907483, + 0.02122621051967144, + -0.039993513375520706, + -0.047274284064769745, + 0.03376016765832901, + 0.0172813031822443, + 0.01089425478130579, + 0.015175565145909786, + -0.022923562675714493, + -0.029869435355067253, + -0.04282427951693535, + -0.014000105671584606, + -0.04431245103478432, + 0.04357907548546791, + -0.0194234661757946, + -0.010555014945566654, + -0.04944475740194321, + -0.019919222220778465, + -0.0032521653920412064, + 0.015848707407712936, + 0.019406819716095924, + 0.0046136812306940556, + 0.03607336804270744, + 0.01318594254553318, + -0.047251004725694656, + -0.025994718074798584, + -0.02914842963218689, + -0.030881065875291824, + 0.03317386284470558, + 0.00436223903670907, + -0.04868430271744728, + -0.00880365539342165, + 0.019801849499344826, + 0.026593785732984543, + -0.05249391868710518, + -0.04241083189845085, + 0.09796297550201416, + -0.1163424476981163, + -0.045347023755311966, + 0.0144647853448987, + 0.07203873246908188, + -0.06977704912424088, + -0.04004022479057312, + 0.003941334784030914, + -0.01217863243073225, + -0.008007989265024662, + -0.03881492838263512, + 0.015347096137702465, + -0.018766552209854126, + 0.09098293632268906, + -0.07446829974651337, + 0.04673708602786064, + -0.09377533197402954, + -0.0314364954829216, + -0.047317054122686386, + -0.06059010699391365, + -0.020151717588305473, + -0.04431254789233208, + 0.04975653439760208, + -0.035907939076423645, + 0.06877151131629944, + -0.009375856257975101, + 0.023533182218670845, + 0.06769513338804245, + 0.04870783910155296, + -0.037140943109989166, + 0.0449327751994133, + 0.03424970433115959, + 0.014299324713647366, + 0.0036959757562726736, + -0.01986509934067726, + 0.001171047450043261, + -0.05517932400107384, + 0.05753008648753166, + -0.018859194591641426, + 0.007917694747447968, + -0.031967584043741226, + -0.007069005165249109, + 0.012189611792564392, + -0.03856075927615166, + 0.010174170136451721, + 0.06787680834531784, + 0.1150246113538742, + -0.008877759799361229, + -0.017009226605296135, + -1.931851478786939e-08, + -0.08785492181777954, + -0.07471185177564621, + -0.009063067846000195, + -0.008652233518660069, + 0.051141656935214996, + -0.05328494310379028, + -0.0478750616312027, + 0.024445369839668274, + -0.04700909182429314, + 0.03269003704190254, + 0.05332343652844429, + -0.010822657495737076, + -0.08722538501024246, + -0.04682782664895058, + -0.009372176602482796, + 0.05177917331457138, + 0.01609679125249386, + 0.047221697866916656, + -0.0061192624270915985, + 0.061505891382694244, + -0.009713700972497463, + 0.06757665425539017, + 0.03786942735314369, + 0.0453592911362648, + 0.019877774640917778, + 0.012430943548679352, + -0.04269807040691376, + 0.0001779962913133204, + 0.05457605794072151, + 0.03127600625157356, + 0.014065100811421871, + 0.03635726869106293, + -0.022168470546603203, + 0.004234264139086008, + -0.08697690814733505, + -0.023333698511123657, + -0.0047219786792993546, + -0.007694111205637455, + -0.0283216405659914, + 0.10636932402849197, + -0.03793219476938248, + -0.027532216161489487, + 0.030469147488474846, + -0.014989208430051804, + -0.03821892663836479, + -0.05954020842909813, + 0.035583484917879105, + -0.004935382399708033, + -0.10332657396793365, + -0.15850688517093658, + -0.060459792613983154, + 0.0190168097615242, + -0.019234271720051765, + 0.10554591566324234, + -0.030068427324295044, + -0.029978346079587936, + 0.020261140540242195, + 0.17554591596126556, + -0.0435267798602581, + 0.030529750511050224, + 0.06695485860109329, + 0.08447963744401932, + -0.028619620949029922, + -0.0023718071170151234 + ], + "folder-simple-dashed-bold||directory,directories,files,folders,missing,temporary,dotted": [ + 0.016905849799513817, + -0.003925012424588203, + 0.009449541568756104, + 0.06963421404361725, + 0.09888879209756851, + -0.028456343337893486, + 0.08225329965353012, + -0.024861019104719162, + 0.0246433038264513, + -0.03609110787510872, + 0.10309257358312607, + 0.030189761891961098, + 0.04146880283951759, + 0.008821920491755009, + -0.026559805497527122, + 0.04766851291060448, + -0.028178222477436066, + -0.02284819260239601, + -0.00833673495799303, + 0.001620274968445301, + -0.10371065884828568, + 0.03160236030817032, + -0.011252210475504398, + -0.005660948343575001, + 0.04733048006892204, + 0.06803219765424728, + -0.000683027261402458, + -0.0034666990395635366, + -0.03783208876848221, + -0.021579908207058907, + 0.013173899613320827, + 0.0487418994307518, + 0.12565355002880096, + -0.021106312051415443, + 0.07976549118757248, + 0.017249373719096184, + 0.02302568033337593, + 0.0363866463303566, + 0.004189062863588333, + 0.03260702267289162, + -0.009256127290427685, + -0.007783534936606884, + -0.002779420232400298, + -0.004882538691163063, + -0.10924700647592545, + -0.0846245288848877, + -0.02100500464439392, + -0.02752731367945671, + -0.0046912929974496365, + -0.0025680935941636562, + -0.010151856578886509, + -0.026340236887335777, + -0.09572597593069077, + -0.05199425667524338, + 0.007315970025956631, + 0.06461306661367416, + -0.04449541121721268, + 0.047564681619405746, + -0.00018280879885423928, + 0.0006385420565493405, + 0.06680815666913986, + 0.001955378334969282, + -0.022455889731645584, + -0.025227151811122894, + 0.0631893202662468, + -0.043005265295505524, + -0.019206291064620018, + 0.031063105911016464, + 0.003961164504289627, + 0.0624353364109993, + 0.044644929468631744, + 0.02268802933394909, + -0.10092829912900925, + 0.09654299169778824, + -0.00047749042278155684, + 0.01906861923635006, + 0.01421444397419691, + 0.08185091614723206, + -0.04477475956082344, + -0.06589726358652115, + -0.07934429496526718, + -0.03268425911664963, + -0.005674423649907112, + 0.0357942171394825, + 0.07916581630706787, + 0.07350190728902817, + -0.055958930402994156, + -0.02101222239434719, + -0.0953802764415741, + -0.05855304375290871, + -0.007922964170575142, + -0.11052267998456955, + -0.005806574132293463, + 0.05114450305700302, + -0.1025191992521286, + 0.02136032097041607, + 0.09781555086374283, + 0.07485661655664444, + -0.007334771100431681, + 0.04444323480129242, + -0.02122838795185089, + -0.02030455879867077, + 0.022551998496055603, + -0.029315290972590446, + -0.054743632674217224, + 0.03769293054938316, + -0.0007464172667823732, + -0.030284738168120384, + 0.016534006223082542, + -0.0323411226272583, + -0.04804361239075661, + -0.11451209336519241, + -0.01314806379377842, + -0.0832981988787651, + -0.05825946852564812, + -0.06984488666057587, + -0.11337031424045563, + -0.003366336924955249, + 0.08138269931077957, + 0.14980244636535645, + 0.06405684351921082, + -0.0492483451962471, + -0.03355405852198601, + -0.0341264009475708, + 0.028255099430680275, + -0.006393478251993656, + 0.03549106419086456, + -2.6963184525314386e-33, + 0.04564736410975456, + 0.06724429130554199, + 0.022699015215039253, + 0.05086967349052429, + 0.06189500167965889, + 0.00010580332309473306, + -0.015785908326506615, + -0.061282772570848465, + -0.03881849721074104, + 0.06501084566116333, + 0.10067526251077652, + 0.03711341693997383, + -0.039472389966249466, + 0.013271338306367397, + -0.0038067956920713186, + -0.035406842827796936, + 0.06909673660993576, + -0.06061435490846634, + -0.07292605936527252, + -0.04445766285061836, + -0.03734070807695389, + 0.14220623672008514, + -0.07607405632734299, + -0.045612722635269165, + -0.015741458162665367, + -0.0455479733645916, + 0.09219043701887131, + -0.021863924339413643, + -0.015158867463469505, + 0.04701840877532959, + 0.0034737272653728724, + 0.02103578671813011, + 0.0907217338681221, + 0.026506027206778526, + -0.08157667517662048, + 0.06579141318798065, + -0.09533973038196564, + -0.03958826884627342, + -0.02712392248213291, + 0.036315035074949265, + -0.06608942896127701, + -0.03234993293881416, + -0.03432702273130417, + 0.007179795764386654, + 0.0376574769616127, + 0.14011427760124207, + 0.03806687146425247, + -0.0963662713766098, + -0.07622136175632477, + 0.06436087191104889, + -0.058221179991960526, + 0.01434730738401413, + 0.04978669807314873, + 0.041122566908597946, + -0.006387928035110235, + -0.007091681007295847, + -0.010694683529436588, + 0.006574646569788456, + -0.005284604616463184, + 0.018438734114170074, + 0.10570306330919266, + 0.07451575249433517, + -0.03359716013073921, + -0.07055606693029404, + -0.04721030592918396, + -0.012809362262487411, + -0.03544970229268074, + -0.02516898512840271, + 0.06239236518740654, + 0.03141939640045166, + -0.04157978668808937, + 0.0724887028336525, + 0.06152896210551262, + 0.0842086523771286, + -0.005918729584664106, + -0.007849195972084999, + 0.0020854987669736147, + -0.021995417773723602, + 0.001597064663656056, + -0.09425053745508194, + -0.09430833160877228, + -0.05506167188286781, + -0.02630823478102684, + -0.014236017130315304, + -0.007292627356946468, + -0.03697039186954498, + -0.021356206387281418, + 0.019399259239435196, + -0.10180065780878067, + -0.048848219215869904, + 0.021018074825406075, + 0.05085793137550354, + -0.03691102936863899, + -0.060329705476760864, + -0.1101694330573082, + -3.997525679360431e-34, + 0.06259596347808838, + 0.047925904393196106, + -0.05855417251586914, + -0.0127783278003335, + -0.07572611421346664, + 0.0918223112821579, + 0.040262699127197266, + -0.031649909913539886, + -0.018453707918524742, + -0.01099406834691763, + -0.019927440211176872, + 0.052715450525283813, + 0.00033180901664309204, + -0.0456680953502655, + -0.0049731978215277195, + 0.07070796191692352, + 0.040322981774806976, + -0.0345255509018898, + -0.01823551207780838, + -0.020012440159916878, + -0.06656919419765472, + -0.006315749604254961, + -0.001147358096204698, + 0.051489099860191345, + -0.021418850868940353, + -0.02641868032515049, + 0.018687734380364418, + -0.05647348612546921, + 0.01388911809772253, + 0.03751574084162712, + -0.002847940195351839, + -0.007873286493122578, + 0.008475983515381813, + 0.001226011081598699, + -0.036769550293684006, + -0.03171780705451965, + -0.028362611308693886, + -0.03875744342803955, + -0.004675482399761677, + 0.0036201660986989737, + -0.056634314358234406, + -0.053218256682157516, + 0.09035255014896393, + 0.0346110574901104, + -0.03202155977487564, + -0.018796687945723534, + 0.04396822303533554, + -0.028847569599747658, + -0.053791679441928864, + 0.03530393913388252, + 0.09351206570863724, + -0.06378180533647537, + -0.012691088952124119, + -0.002964651444926858, + 0.0077288090251386166, + -0.01875387318432331, + -0.05329691246151924, + 0.023117758333683014, + -0.004105840809643269, + 0.08431480824947357, + -0.06656832993030548, + 0.046550311148166656, + -0.0956648662686348, + 7.476854079868644e-05, + -0.062466811388731, + -0.0446397140622139, + -0.04763270914554596, + -0.034237880259752274, + 0.058564476668834686, + -0.08822937309741974, + 0.05715674161911011, + 0.03333396464586258, + -0.01980004832148552, + 0.01001512911170721, + 0.049988389015197754, + -0.012232048436999321, + 0.038494471460580826, + 0.04353920742869377, + 0.011842486448585987, + 0.047040779143571854, + -0.01353179570287466, + 0.012624223716557026, + -0.04904571920633316, + 0.04332638531923294, + -0.015895182266831398, + 0.002361185848712921, + -0.0931784063577652, + 0.022911742329597473, + 0.01113565918058157, + -0.04249399155378342, + 0.0340900756418705, + 0.0794791504740715, + 0.0704415813088417, + 0.0478210486471653, + 0.005364926531910896, + -2.221115735778767e-08, + -0.05570155754685402, + -0.0627799779176712, + 0.007249440066516399, + -0.028086204081773758, + 0.09237910807132721, + -0.06578148156404495, + 0.0010536035988479853, + 0.03859049081802368, + -0.04280853644013405, + 0.011675722897052765, + 0.054646868258714676, + -0.026339326053857803, + -0.1257561594247818, + -0.010063023306429386, + -0.02789442241191864, + 0.0331934317946434, + -0.0017492410261183977, + 0.05964556336402893, + -0.024063637480139732, + 0.03641621768474579, + -0.03370053321123123, + 0.041177935898303986, + 0.022072896361351013, + 0.04249493405222893, + -0.0006807608297094703, + 0.00785448681563139, + -0.014314064756035805, + -0.004603303968906403, + 0.032133493572473526, + 0.0010223690187558532, + -0.008385878056287766, + 0.03171995282173157, + 0.003432474797591567, + -0.06334016472101212, + -0.045927371829748154, + -0.00809487234801054, + -0.02162216231226921, + 0.03698889911174774, + -0.024542536586523056, + 0.05882757902145386, + -0.010574606247246265, + -0.009991525672376156, + 0.046957455575466156, + -0.026778558269143105, + -0.0014851049054414034, + -0.058112822473049164, + 0.03537352755665779, + 0.015386193990707397, + -0.08502946048974991, + -0.1810370832681656, + -0.04048852249979973, + 0.02494886703789234, + -0.03464599326252937, + 0.09995804727077484, + -0.0021123194601386786, + -0.025806207209825516, + 0.03603792563080788, + 0.1250741183757782, + -0.006379408296197653, + 0.035641610622406006, + 0.05215296149253845, + 0.06421490758657455, + -0.04729572683572769, + 0.02914658933877945 + ], + "folder-simple-lock-bold||directory,directories,files,folders,private,secure": [ + -0.020976189523935318, + 0.018706152215600014, + -0.09909677505493164, + 0.05064269155263901, + 0.1068326011300087, + 0.0424579419195652, + 0.07917354255914688, + -0.031160391867160797, + 0.028706446290016174, + 0.00971275381743908, + 0.09757479280233383, + 0.0574510283768177, + 0.08470828831195831, + -0.03835722804069519, + -0.020287370309233665, + 0.01584051363170147, + -0.028445392847061157, + 0.02973325364291668, + -0.04426507651805878, + 0.019295448437333107, + -0.04119328781962395, + 0.010600714944303036, + -0.0036784796975553036, + 0.005244896747171879, + -0.005030662752687931, + -0.004023839253932238, + 0.0061163040809333324, + -0.012249785475432873, + -0.015148748643696308, + -0.05911841616034508, + -0.03267030417919159, + -0.03634980693459511, + 0.10963214188814163, + 0.02240944467484951, + 0.020281195640563965, + 0.015046591870486736, + 0.03161383047699928, + -0.020291045308113098, + -0.05103251338005066, + -0.013136545196175575, + -0.06441935151815414, + -0.01168766338378191, + -0.03144097700715065, + -0.0016163407126441598, + -0.15307408571243286, + -0.068612240254879, + 0.006362634710967541, + -0.010285016149282455, + -0.05331042781472206, + -0.059039581567049026, + 0.008771998807787895, + 0.030872849747538567, + -0.11197396367788315, + -0.008041007444262505, + -0.022589409723877907, + -0.028586775064468384, + -0.04445413872599602, + 0.0035317204892635345, + 0.02748326025903225, + -0.023187683895230293, + 0.11429158598184586, + 0.024875888600945473, + -0.0043907081708312035, + 0.022320803254842758, + 0.05401983857154846, + 0.03116803616285324, + 0.002512139268219471, + 0.029969636350870132, + 0.010723748244345188, + 0.01669643074274063, + 0.007410713471472263, + -0.029586657881736755, + -0.04983687773346901, + 0.0766536295413971, + 0.014629577286541462, + -0.004440292250365019, + -0.01874859258532524, + 0.02923024445772171, + -0.05582118034362793, + -0.06989783048629761, + -0.024833597242832184, + -0.09482724964618683, + 0.02416357956826687, + -0.0010701775318011642, + 0.008073669858276844, + 0.11034271866083145, + -0.037363357841968536, + 0.01937873661518097, + 0.005078868940472603, + -0.013227634131908417, + 0.03561872988939285, + -0.043584320694208145, + 0.05451314523816109, + 0.033198192715644836, + -0.05834018811583519, + -0.012210513465106487, + 0.0407758392393589, + 0.04221641272306442, + -0.07523767650127411, + 0.006784635130316019, + 0.011554581113159657, + 0.021059667691588402, + 0.030653174966573715, + -0.0789031907916069, + 0.022932734340429306, + 0.05460977926850319, + 0.07985427975654602, + -0.07261154055595398, + -0.0531645193696022, + -0.016732357442378998, + -0.038856141269207, + -0.03989720344543457, + -0.04150909185409546, + -0.07653524726629257, + -0.04643524810671806, + 0.00025561562506482005, + -0.059479910880327225, + 0.028587231412529945, + 0.05721449479460716, + 0.1441207230091095, + 0.045420724898576736, + -0.05416407063603401, + 0.0037017841823399067, + -0.025960756465792656, + -0.040586527436971664, + -0.010473762638866901, + -0.026487823575735092, + -1.5237486949197985e-33, + 0.037750862538814545, + 0.030347999185323715, + -0.061344120651483536, + 0.07206705212593079, + 0.062365032732486725, + 0.014518450945615768, + -0.02726583555340767, + -0.0676804929971695, + -0.09815286844968796, + 0.10277958959341049, + 0.1566615253686905, + -0.02205585315823555, + 0.016777919605374336, + -0.03883620351552963, + 0.08535557240247726, + -0.023651931434869766, + 0.05135994777083397, + -0.023884274065494537, + 0.04025973752140999, + -0.05993629992008209, + 0.0035719010047614574, + 0.1076958179473877, + -0.020106876268982887, + -0.00621830066666007, + 0.02105502225458622, + -0.07467477023601532, + 0.07491414994001389, + -0.042544879019260406, + 0.071431465446949, + 0.03154483437538147, + -0.014095478691160679, + 0.03206438571214676, + 0.025101283565163612, + 0.0585363507270813, + -0.04936845228075981, + 0.0383743979036808, + -0.06594471633434296, + -0.05066077411174774, + 0.02563321590423584, + -0.04568319395184517, + -0.07006559520959854, + -0.06375076621770859, + -0.06128627061843872, + -0.027750002220273018, + 0.07586731761693954, + 0.10703472048044205, + -0.0766216367483139, + -0.014359183609485626, + -0.06007376313209534, + 0.05021340027451515, + -0.06025976687669754, + 0.022153500467538834, + -0.030941082164645195, + 0.025424685329198837, + -0.02122848853468895, + -0.016437890008091927, + -0.03957993537187576, + 0.04045121744275093, + -0.014952979050576687, + 0.04236610233783722, + 0.016003673896193504, + 0.08807273209095001, + 0.03572425991296768, + -0.05351965129375458, + -0.07893352955579758, + -0.024675535038113594, + 0.0012947807554155588, + -0.052370745688676834, + 0.059587277472019196, + 0.046639081090688705, + -0.08556608110666275, + 0.04464119300246239, + 0.025907156988978386, + 0.02186766266822815, + -0.05273621529340744, + 0.019799811765551567, + 0.03825566917657852, + -0.013655577786266804, + 0.03803745657205582, + -0.061254289001226425, + -0.05871772766113281, + -0.0017330480040982366, + -0.040949899703264236, + 0.10763169080018997, + -0.045850977301597595, + -0.026036569848656654, + -0.07057499885559082, + 0.058831971138715744, + -0.027370519936084747, + -0.0215217974036932, + 0.031156260520219803, + 0.02996891736984253, + 0.02138998918235302, + -0.06289145350456238, + -0.11583772301673889, + -1.2448659662650725e-33, + 0.04840317741036415, + -0.04539947211742401, + -0.032220155000686646, + 0.03489258885383606, + 0.001216486212797463, + 0.06539911031723022, + -0.08230973035097122, + -0.029958749189972878, + -0.07136069983243942, + -0.021749312058091164, + -0.016417287290096283, + 0.03938959166407585, + -0.013688440434634686, + -0.02585722878575325, + 0.07736995816230774, + -0.01007368229329586, + 0.01621486246585846, + 0.027148915454745293, + -0.0543280728161335, + -0.006990796886384487, + -0.021140584722161293, + 0.01051398552954197, + -0.07881306111812592, + 0.13548733294010162, + 0.027027804404497147, + -0.018119750544428825, + -0.11856299638748169, + -0.012475114315748215, + 0.015601460821926594, + 0.06820833683013916, + -0.02042432688176632, + 0.019749803468585014, + -0.01571221463382244, + -0.012080936692655087, + -0.04285972937941551, + -0.09315389394760132, + -0.01700958050787449, + 0.011883268132805824, + 0.006809106096625328, + 0.0071732597425580025, + -0.025352753698825836, + 0.008245975710451603, + 0.004259610082954168, + -0.008522100746631622, + -0.06986140459775925, + -0.04372045770287514, + 0.0832957923412323, + -0.10333558171987534, + -0.05127682164311409, + 0.05396454408764839, + 0.042396754026412964, + -0.09439565241336823, + -0.0057172877714037895, + -0.04719585180282593, + 0.02496829256415367, + 0.01341207791119814, + -0.015584792010486126, + -0.003719290252774954, + -0.00744687719270587, + 0.10772724449634552, + 0.0039034183137118816, + 0.026370156556367874, + -0.06106646731495857, + 0.06566201895475388, + -0.03844144195318222, + -0.040435388684272766, + -0.029214028269052505, + -0.02679973840713501, + -0.0011870787711814046, + 0.0028488333337008953, + 0.12595783174037933, + -0.03257117047905922, + 0.03547581285238266, + 0.07615024596452713, + 0.01669766940176487, + -0.049204014241695404, + 0.06882741302251816, + -0.06389815360307693, + -0.03188536688685417, + 0.04271336644887924, + 0.021262124180793762, + 0.010787284933030605, + -0.07972297817468643, + 0.06599157303571701, + 0.037436917424201965, + -0.023569801822304726, + 0.009366563521325588, + -0.07344962656497955, + 4.862123205384705e-06, + -0.05031229183077812, + -0.02547314204275608, + 0.028410732746124268, + -0.00014630805526394397, + -0.00858471728861332, + 0.031394265592098236, + -2.0408906564739482e-08, + -0.0020076564978808165, + -0.09665026515722275, + 0.007173328660428524, + -0.0019236929947510362, + 0.08301848918199539, + -0.017342334613204002, + -0.04771674424409866, + -0.01693117991089821, + -0.06368637830018997, + 0.04070718586444855, + 0.09076885879039764, + -0.027267055585980415, + -0.08080418407917023, + -0.008975205942988396, + -0.07217425107955933, + 0.050289515405893326, + -0.015405298210680485, + 0.005788041278719902, + -0.011670555919408798, + 0.012220492586493492, + -0.007891646586358547, + 0.034043893218040466, + 0.012852998450398445, + 0.04142775014042854, + 0.004547304008156061, + 0.03888733312487602, + 0.02780873514711857, + -0.014263325370848179, + 0.05997942015528679, + 0.10693618655204773, + -0.008523865602910519, + -0.03006932884454727, + 0.03149857372045517, + -0.0036102640442550182, + -0.08255655318498611, + 0.06289343535900116, + -0.08051015436649323, + 0.028565945103764534, + 0.027223005890846252, + 0.10859715193510056, + 0.017135728150606155, + -0.010243122465908527, + 0.05517011880874634, + 0.009139994159340858, + -0.05075281113386154, + -0.030327336862683296, + 0.026288334280252457, + -0.016934234648942947, + -0.09405557811260223, + -0.07939181476831436, + -0.061007313430309296, + 0.027005529031157494, + -0.017764637246727943, + 0.15079265832901, + -0.006911540869623423, + 0.0546194463968277, + 0.060912735760211945, + 0.12787629663944244, + 0.036244574934244156, + 0.05498075112700462, + 0.02997712977230549, + 0.06535613536834717, + -0.004910724703222513, + -0.013682798482477665 + ], + "folder-simple-minus-bold||directory,directories,files,delete,write,remove,-": [ + 0.02740294672548771, + 0.02812102995812893, + -0.04118877649307251, + 0.06492619216442108, + 0.07752642780542374, + -0.045433949679136276, + 0.09371146559715271, + -0.009084976278245449, + 0.047707147896289825, + 0.010569351725280285, + 0.09598113596439362, + 0.04350036010146141, + 0.07542555034160614, + 0.015799980610609055, + -0.06624872237443924, + 0.022058038040995598, + -0.02596067450940609, + 0.043726347386837006, + -0.027839167043566704, + -0.020012732595205307, + -0.031168315559625626, + 0.05420272797346115, + 0.006336051970720291, + -0.02410752885043621, + 0.09765054285526276, + 0.02211679331958294, + -0.012420891784131527, + 0.0008060218533501029, + 0.006527076009660959, + -0.045929696410894394, + 0.020976943895220757, + -0.0041527473367750645, + 0.161146342754364, + 0.027316579595208168, + 0.06158551573753357, + 0.03339065611362457, + 0.009308344684541225, + -0.015192517079412937, + -0.01157900970429182, + 0.04221075773239136, + 0.0009602680220268667, + 0.00851273350417614, + -0.021456431597471237, + -0.012634889222681522, + -0.12159372866153717, + -0.06598049402236938, + -0.0812147855758667, + -0.03978780284523964, + -0.003898009890690446, + -0.004409064073115587, + 0.03758351504802704, + -0.023995814844965935, + -0.13860690593719482, + -0.017534656450152397, + 0.034406628459692, + 0.006238414905965328, + -0.0732765942811966, + 0.01049337349832058, + -0.02637648768723011, + -0.022211747244000435, + 0.09489648044109344, + 0.02286849357187748, + -0.00828695297241211, + -0.03917543217539787, + 0.06023961678147316, + -0.014488518238067627, + -0.012167471460998058, + 0.03666450455784798, + -0.017492031678557396, + 0.041173260658979416, + 0.010763396508991718, + -0.03252295032143593, + -0.06971082091331482, + 0.05603025108575821, + -0.032453715801239014, + 0.013766799122095108, + 0.023084713146090508, + 0.10262490808963776, + -0.08977954834699631, + -0.02049601636826992, + -0.023868035525083542, + -0.0384807251393795, + 0.0092281773686409, + 0.01623653993010521, + 0.0428735576570034, + 0.07050575315952301, + -0.06791001558303833, + 0.01456113439053297, + -0.0569043904542923, + -0.0560418963432312, + -0.0186307355761528, + -0.09728370606899261, + 0.027081044390797615, + 0.0481499545276165, + -0.12415517866611481, + 0.02938576601445675, + 0.0586722195148468, + 0.09460782259702682, + -0.04698648676276207, + 0.043317459523677826, + -0.003516669850796461, + 0.02377542480826378, + -0.012324846349656582, + -0.05717024207115173, + -0.0424748919904232, + 0.021640796214342117, + 0.007260821759700775, + -0.0613396018743515, + -0.010596261359751225, + -0.024395456537604332, + -0.06316319853067398, + -0.07693129777908325, + -0.035659655928611755, + -0.06382087618112564, + -0.015424723736941814, + -0.020324937999248505, + -0.015890764072537422, + 0.06569136679172516, + 0.05145568773150444, + 0.1155092716217041, + 0.06996097415685654, + -0.07785522192716599, + -0.046876970678567886, + -0.007714420557022095, + 0.010375451296567917, + -0.0036620942410081625, + 0.05955459550023079, + -6.607337574069438e-34, + 0.07859256118535995, + 0.05720187723636627, + 0.019702229648828506, + 0.08011820167303085, + 0.07053633779287338, + 0.02304944023489952, + -0.03997088596224785, + -0.06321851909160614, + -0.06350993365049362, + 0.10007314383983612, + 0.11639455705881119, + 0.026195475831627846, + -0.04826318472623825, + 0.0017711203545331955, + 0.038296665996313095, + -0.014826036058366299, + 0.043126415461301804, + -0.09314337372779846, + -0.08613201230764389, + -0.06007087603211403, + -0.012562441639602184, + 0.10805226117372513, + -0.0785607174038887, + -0.026043178513646126, + -0.0038126613944768906, + -0.08871515095233917, + 0.07828957587480545, + -0.03954425826668739, + -0.028826933354139328, + 0.01428241841495037, + -0.01241641491651535, + -0.009738849475979805, + 0.0035369019024074078, + 0.08253922313451767, + -0.06033742427825928, + 0.0725632905960083, + -0.09292957186698914, + -0.013481284491717815, + -0.00860163476318121, + 0.04012987017631531, + -0.12770621478557587, + -0.010062436573207378, + -0.07129399478435516, + -0.0460805669426918, + 0.03886433318257332, + 0.14702659845352173, + 0.014302283525466919, + -0.08344527333974838, + -0.041545987129211426, + 0.048447392880916595, + -0.02606973610818386, + 0.021886982023715973, + 0.03304688259959221, + 0.029226209968328476, + -0.008072095923125744, + -0.02098851464688778, + -0.01510694157332182, + 0.033336032181978226, + 0.01983221247792244, + 0.009379581548273563, + 0.0672881081700325, + 0.059202808886766434, + -0.02759919874370098, + -0.02722204476594925, + -0.06977195292711258, + -0.005421649198979139, + -0.01922432892024517, + -0.012418151833117008, + 0.05892796814441681, + 0.03276576101779938, + -0.07212790846824646, + 0.07481392472982407, + 0.04056974872946739, + 0.02594519965350628, + -0.03722831979393959, + 0.018048886209726334, + 0.026265248656272888, + -0.07202955335378647, + 0.03882768750190735, + -0.06565548479557037, + -0.10180793702602386, + -0.009035086259245872, + -0.027340494096279144, + 0.018878726288676262, + 0.005051608197391033, + -0.01837436482310295, + -0.028600189834833145, + 0.014564677141606808, + -0.021349193528294563, + -0.06519576162099838, + -0.01961531490087509, + 0.03663192689418793, + -0.009193400852382183, + -0.08856792002916336, + -0.08744736760854721, + -1.7167435614897095e-33, + 0.06956300139427185, + 0.007099061273038387, + -0.08973564207553864, + -0.00902231503278017, + -0.09367229044437408, + 0.025863440707325935, + 0.024485934525728226, + -0.013797488994896412, + -0.001957573229447007, + -0.00881983619183302, + -0.006866582203656435, + 0.03592616319656372, + -0.05415850505232811, + -0.03945479169487953, + 0.04382205009460449, + 0.007971067912876606, + -0.025071989744901657, + -0.03806588426232338, + -0.045265570282936096, + -0.013461776077747345, + -0.03985677286982536, + 0.015392780303955078, + -0.022428810596466064, + 0.06687726080417633, + -0.005338169634342194, + -0.037934560328722, + -0.019250178709626198, + 0.009316370822489262, + 0.009494458325207233, + -0.002606465946882963, + 0.005940697621554136, + 0.04828047752380371, + 0.06267440319061279, + 2.0441431843210012e-05, + -0.06034036725759506, + -0.05982589349150658, + -0.034995220601558685, + 0.003539316589012742, + 0.0066265808418393135, + 0.010925034061074257, + -0.07681100815534592, + -0.00711025670170784, + 0.05819116160273552, + 0.053652435541152954, + -0.03641287982463837, + -0.015062041580677032, + 0.011220493353903294, + -0.10863491147756577, + -0.030547138303518295, + 0.026783054694533348, + 0.07965454459190369, + -0.07197155058383942, + -0.09841928631067276, + -0.0002585278416518122, + 0.03157470002770424, + -0.005016242153942585, + -0.0067920684814453125, + -0.005053320899605751, + -0.021908678114414215, + 0.07463967800140381, + -0.07134679704904556, + 0.0386829636991024, + -0.04947596415877342, + -0.017273176461458206, + -0.04507250338792801, + -0.02437017299234867, + -0.012726107612252235, + -0.02866857312619686, + 0.029116852208971977, + -0.03905080631375313, + 0.07874932140111923, + 0.018313834443688393, + 0.005447820760309696, + 0.041046228259801865, + 0.016563480719923973, + -0.06869733333587646, + 0.034750085324048996, + 0.02799847349524498, + 0.007650476414710283, + 0.016812607645988464, + -0.009613157249987125, + 0.004693910479545593, + -0.056174881756305695, + 0.06093268841505051, + -0.035714488476514816, + -0.0067129493691027164, + -0.0892401859164238, + 0.01087697222828865, + -0.015777815133333206, + -0.005820510443300009, + 0.011438678950071335, + 0.0655083879828453, + 0.11839518696069717, + -0.02001229301095009, + -0.0015331675531342626, + -2.221237416222266e-08, + -0.07684162259101868, + -0.10342170298099518, + -0.006924259010702372, + -0.02155354991555214, + 0.05363088473677635, + -0.04804962873458862, + -0.014911281876266003, + 0.04029200226068497, + -0.005650542676448822, + -0.013050079345703125, + 0.09222524613142014, + 0.008404050953686237, + -0.12516266107559204, + -0.07821371406316757, + -0.017762571573257446, + 0.06692734360694885, + 0.04105142876505852, + 0.04860539361834526, + -0.007302088662981987, + 0.06125437468290329, + 0.008859326131641865, + 0.05878009647130966, + 0.020788241177797318, + 0.03628736734390259, + 0.0368485189974308, + -0.009382707066833973, + -0.027479209005832672, + 0.0636637732386589, + 0.030037304386496544, + 0.024497229605913162, + 0.05153685063123703, + 0.025098424404859543, + 0.04319605231285095, + 0.0032245838083326817, + -0.054579321295022964, + -0.021285712718963623, + -0.00914489571005106, + 0.03550031781196594, + -0.0197821743786335, + 0.10732385516166687, + -0.033810604363679886, + 0.016232306137681007, + 0.04176456481218338, + -0.00627550994977355, + -0.05202849581837654, + -0.07141479104757309, + 0.03936636820435524, + -0.012117844074964523, + -0.07740595936775208, + -0.14867399632930756, + -0.021389367058873177, + 0.055055294185876846, + -0.03911466896533966, + 0.11243221163749695, + -0.030865220353007317, + 6.819989357609302e-05, + 0.037288863211870193, + 0.12320418655872345, + -0.029574763029813766, + 0.024853987619280815, + 0.07723736017942429, + 0.07556120306253433, + -0.0008851760067045689, + -0.015895294025540352 + ], + "folder-simple-plus-bold||directory,directories,files,save,write,add,new,create,+": [ + 0.024540014564990997, + -0.019971096888184547, + -0.060243893414735794, + 0.09286189079284668, + 0.08298735320568085, + 0.004827564116567373, + 0.03274837136268616, + 0.015963038429617882, + 0.030012216418981552, + 0.048355624079704285, + 0.09242293983697891, + 0.024125756695866585, + 0.0652349516749382, + -0.031155360862612724, + -0.04842187091708183, + 0.026214908808469772, + -0.07423173636198044, + 0.047430116683244705, + -0.02492636814713478, + -0.07350718975067139, + -0.0007912306464277208, + 0.025907911360263824, + 0.0434112474322319, + -0.016647420823574066, + 0.09399276971817017, + 0.0032276203855872154, + -0.024939456954598427, + -0.011303143575787544, + 0.06031212583184242, + -0.024816544726490974, + 0.025072989985346794, + 0.0055120582692325115, + 0.15170709788799286, + 0.0037187060806900263, + 0.07022533565759659, + 0.05018775165081024, + 0.0199404526501894, + 0.015125680714845657, + -0.026374664157629013, + -0.0006529820384457707, + -0.0021956877317279577, + 0.0015361403347924352, + 0.01340619195252657, + -0.011472957208752632, + -0.136247918009758, + -0.0877622738480568, + -0.040127191692590714, + -0.06009864807128906, + 0.028355831280350685, + 0.008046415634453297, + 0.04614469036459923, + -0.04427659884095192, + -0.1454841047525406, + -0.044586844742298126, + 0.05143405869603157, + 0.010859433561563492, + -0.08951443433761597, + 0.028992056846618652, + -0.03427749499678612, + -0.019125856459140778, + 0.09197212010622025, + 0.0015631611458957195, + 0.03328828886151314, + -0.03878411650657654, + 0.03273552656173706, + 0.002221890492364764, + -0.03629680350422859, + 0.07400497049093246, + -0.01409828569740057, + 0.020669547840952873, + 0.00798692274838686, + 0.020401714369654655, + -0.09070973843336105, + 0.06745550036430359, + -0.0002722238714341074, + -0.018107356503605843, + 0.0485200509428978, + 0.0961810052394867, + -0.09024453163146973, + -0.029199782758951187, + -0.015877626836299896, + -0.03403444588184357, + -0.002346570137888193, + 0.015486634336411953, + 0.06849958747625351, + 0.064431332051754, + -0.035782404243946075, + 0.0277455672621727, + -0.0682787224650383, + -0.08089705556631088, + -0.02486659400165081, + -0.08092361688613892, + 0.007590658962726593, + 0.03966430947184563, + -0.12790359556674957, + 0.022079119458794594, + 0.07401818037033081, + 0.07733108848333359, + -0.053149040788412094, + -0.008800245821475983, + -0.00888310931622982, + 0.014973376877605915, + 0.006990392692387104, + -0.029514139518141747, + 0.02586333639919758, + 0.010644646361470222, + 0.032582707703113556, + -0.07111134380102158, + -0.025521505624055862, + -0.007124187890440226, + -0.03956129029393196, + -0.04534560814499855, + -0.02316887304186821, + -0.0811787024140358, + -0.02055956982076168, + -0.02255300246179104, + -0.06751879304647446, + 0.03331184387207031, + 0.04889018461108208, + 0.10986567288637161, + 0.13117600977420807, + -0.06280834227800369, + -0.04206113517284393, + -0.0019977835472673178, + -0.019119180738925934, + -0.045994408428668976, + 0.053730130195617676, + -1.5634150171043273e-33, + 0.10143531113862991, + 0.07136555761098862, + 0.020456524565815926, + 0.12429049611091614, + 0.06598315387964249, + 0.024677127599716187, + -0.03174244239926338, + -0.03250245749950409, + -0.08497770875692368, + 0.041533373296260834, + 0.0917627140879631, + -0.014934055507183075, + -0.06900588423013687, + 0.03877595067024231, + 0.01669223979115486, + -0.05533156171441078, + 0.02506205625832081, + -0.06371890753507614, + -0.05819682404398918, + -0.0577971488237381, + -0.06250938028097153, + 0.1180286705493927, + -0.050653088837862015, + 0.0029261852614581585, + 0.020000986754894257, + -0.04140329360961914, + 0.09339791536331177, + -0.04882147163152695, + -0.03307263180613518, + -0.002469912637025118, + -0.013578774407505989, + -0.03565318137407303, + -0.009935781359672546, + 0.08844777196645737, + -0.07979618012905121, + 0.09041155129671097, + -0.07296375930309296, + 0.01476381253451109, + 0.013745617121458054, + 0.03661814332008362, + -0.11251334100961685, + -0.013836361467838287, + -0.06898712366819382, + -0.040644571185112, + 0.028624150902032852, + 0.11627950519323349, + -0.036332059651613235, + -0.0787082239985466, + -0.02809332124888897, + 0.012240507639944553, + -0.05356927961111069, + 0.01743483357131481, + 0.01105740200728178, + 0.07249163091182709, + -0.02459649369120598, + 0.009527845308184624, + -0.05097926780581474, + 0.0063300300389528275, + 0.013582805171608925, + 0.002471069572493434, + 0.0548136942088604, + 0.07637306302785873, + -0.03385860100388527, + 0.01839817501604557, + -0.0582660473883152, + 0.0014960098778828979, + 0.04939135164022446, + -0.002419212833046913, + 0.07219038158655167, + 0.0471392460167408, + -0.06148364022374153, + 0.04998414218425751, + -0.029892537742853165, + 0.02852354571223259, + -0.0023254670668393373, + 0.008595039136707783, + 0.006351641844958067, + -0.06640014052391052, + 0.0051370179280638695, + -0.06208185851573944, + -0.10381291061639786, + -0.03368179872632027, + -0.027435913681983948, + 0.006860993802547455, + 0.012417618185281754, + -0.012738052755594254, + -0.03728172183036804, + 0.045765526592731476, + -0.00074910675175488, + -0.07878445088863373, + -0.0146646648645401, + 0.025173740461468697, + 0.026288457214832306, + -0.08687696605920792, + -0.0816049799323082, + -7.569058634467596e-34, + 0.07644253969192505, + -0.013822495937347412, + -0.08572207391262054, + -0.0053108446300029755, + -0.08108475804328918, + 0.04602202773094177, + -0.0034606114495545626, + -0.048575371503829956, + -0.04636577516794205, + 0.005718675907701254, + -0.026817310601472855, + 0.036420416086912155, + -0.055924493819475174, + -0.020396169275045395, + 0.027366401627659798, + -0.0225808247923851, + -0.0347469262778759, + 0.015268013812601566, + 0.002809436060488224, + -0.0245344378054142, + -0.010268951766192913, + 0.009272693656384945, + 0.005639985203742981, + 0.05120893940329552, + 0.023699646815657616, + -0.012177054770290852, + -0.044858016073703766, + 0.028795849531888962, + 0.007317789364606142, + -0.03864460811018944, + 0.026314225047826767, + 0.05667182803153992, + 0.016572756692767143, + 0.0041955336928367615, + -0.040732238441705704, + -0.044636450707912445, + -0.021122219040989876, + 0.00450327480211854, + 0.009511835873126984, + 0.04318429157137871, + -0.030923927202820778, + -0.038278862833976746, + 0.04922448471188545, + 0.04368749260902405, + -0.01899215206503868, + -0.041208211332559586, + 0.0616733618080616, + -0.10633747279644012, + -0.06147545948624611, + 0.021582821384072304, + 0.10353127866983414, + -0.09220308065414429, + -0.11355660855770111, + -0.01593964919447899, + 0.04123004153370857, + -0.006710276938974857, + 0.0025064381770789623, + -0.007966607809066772, + -0.008058064617216587, + 0.04830675572156906, + -0.07696550339460373, + 0.020149920135736465, + -0.058922283351421356, + -0.03521479666233063, + -0.06514884531497955, + -0.042231421917676926, + 0.006797152571380138, + -0.05675559490919113, + 0.013701965101063251, + -0.04167202487587929, + 0.07626727223396301, + 0.015028621070086956, + -0.004989262670278549, + 0.046847037971019745, + 0.007594042923301458, + -0.04149135574698448, + 0.011638706550002098, + 0.01486297883093357, + 0.01698538474738598, + -0.00471532205119729, + -0.008499259129166603, + 0.012797670438885689, + -0.009156130254268646, + 0.05791908875107765, + -0.017701100558042526, + -0.018465984612703323, + -0.05153568834066391, + 0.03402457758784294, + 0.0043623680248856544, + -0.028055988252162933, + -0.01979006640613079, + 0.13247555494308472, + 0.07878750562667847, + -0.01797502115368843, + -0.024355053901672363, + -2.3452598085782483e-08, + -0.08112294226884842, + -0.09252650290727615, + -0.062479499727487564, + -0.017447905614972115, + 0.055886175483465195, + -0.06893640756607056, + -0.03789932280778885, + 0.013038641773164272, + -0.03305720537900925, + -0.02511184848845005, + 0.06785718351602554, + 0.002583232941105962, + -0.0852278396487236, + -0.05726125091314316, + -0.0437120757997036, + 0.05188264325261116, + 0.0645633339881897, + 0.03106856532394886, + 0.007067191880196333, + 0.04202938824892044, + 0.03255011886358261, + 0.09579919278621674, + 0.009288744069635868, + 0.03278571739792824, + -0.001311228726990521, + -0.010007315315306187, + -0.007313012145459652, + 0.023028654977679253, + 0.02688412554562092, + 0.025513505563139915, + 0.06899572908878326, + 0.026878293603658676, + -0.00948548223823309, + 0.022070372477173805, + -0.04502687230706215, + -0.0017789627891033888, + 0.018276624381542206, + 0.029474902898073196, + -0.012746033258736134, + 0.06580206006765366, + -0.00785432942211628, + 0.02521023526787758, + 0.04806916415691376, + -0.02619003690779209, + -0.03368932008743286, + -0.08880343288183212, + 0.03146163001656532, + -0.014269278384745121, + -0.07257556915283203, + -0.15696485340595245, + -0.049911677837371826, + 0.03319454565644264, + 0.047070037573575974, + 0.0862949937582016, + -0.029215559363365173, + -0.004733626265078783, + 0.032322317361831665, + 0.1559445708990097, + 0.026527220383286476, + 0.026382235810160637, + 0.041601601988077164, + 0.05193917080760002, + 0.029915669932961464, + 0.013920502737164497 + ], + "folder-simple-star-bold||directory,directories,files,folders,favorite,starred": [ + 0.02117024175822735, + -0.030165154486894608, + -0.04997492581605911, + 0.06993434578180313, + 0.07915753126144409, + 0.020738180726766586, + 0.07356733083724976, + 0.013182700611650944, + 0.01130367536097765, + 0.008777529932558537, + 0.011690333485603333, + 0.06710898876190186, + 0.09531768411397934, + -0.015854721888899803, + -0.04324882850050926, + 0.04104279726743698, + -0.04865030571818352, + 0.024878615513443947, + 0.01693047396838665, + -0.02970665507018566, + -0.05331747233867645, + 0.036663398146629333, + 0.004091020207852125, + -0.023075584322214127, + 0.058821484446525574, + 0.033102795481681824, + -0.016230998560786247, + -0.02352176234126091, + -0.031184613704681396, + -0.059893134981393814, + 0.03322581574320793, + 0.03645743057131767, + 0.10563860088586807, + 0.06494124233722687, + 0.03239850699901581, + -0.006549201440066099, + -0.0060883392579853535, + -0.027629241347312927, + -0.03840120509266853, + 0.018345244228839874, + 0.017895348370075226, + -0.005994766019284725, + 0.001867035636678338, + -0.017180874943733215, + -0.10650822520256042, + -0.06936798244714737, + -0.054765332490205765, + -0.05257558450102806, + -0.005995628423988819, + 0.045260217040777206, + -0.017535869032144547, + -0.06769616901874542, + -0.13172994554042816, + -0.03571884334087372, + 0.07452073693275452, + 0.019488055258989334, + -0.05372783914208412, + -0.024584097787737846, + -0.009575704112648964, + -0.021107973530888557, + 0.07588010281324387, + -0.0226796455681324, + 0.01737452670931816, + -0.031118135899305344, + 0.06629917770624161, + -0.06617354601621628, + -0.021416552364826202, + 0.04252668842673302, + -0.04159187152981758, + -0.0008421165985055268, + 0.012552117928862572, + 0.03332105278968811, + -0.055637527257204056, + 0.06723923236131668, + 0.01713370531797409, + -0.015093446709215641, + 0.04511820152401924, + 0.024370618164539337, + -0.04439125582575798, + -0.039736829698085785, + -0.05950386822223663, + -0.01624358259141445, + 0.01817786507308483, + 0.007069802843034267, + 0.05561360716819763, + 0.041478175669908524, + -0.054337278008461, + -0.015682833269238472, + -0.10240409523248672, + -0.02568364515900612, + -0.022500839084386826, + -0.11993632465600967, + -0.0007059003692120314, + 0.042058009654283524, + -0.10088278353214264, + 0.03639974817633629, + 0.05711379274725914, + -0.04126029089093208, + 0.016847830265760422, + 0.026017379015684128, + -0.029669232666492462, + 0.016814209520816803, + 0.03880473971366882, + -0.03209630027413368, + -0.005957985296845436, + 0.03857298940420151, + 0.04353494942188263, + -0.06538546085357666, + 0.003041013842448592, + -0.015174099244177341, + -0.06857763975858688, + -0.06895489245653152, + -0.028757132589817047, + -0.08947567641735077, + -0.07048224657773972, + -0.006684002000838518, + -0.024425946176052094, + 0.050996679812669754, + 0.0974578857421875, + 0.08135316520929337, + 0.0750180184841156, + -0.07250314950942993, + 0.00821204949170351, + -0.008850987069308758, + -0.051690056920051575, + 0.02196100912988186, + 0.026990892365574837, + -6.007320258016625e-34, + 0.05787038430571556, + 0.05548907071352005, + -0.012925305403769016, + 0.05233803763985634, + 0.02203265391290188, + -0.0034178621135652065, + -0.022367756813764572, + -0.04813753813505173, + -0.05210704356431961, + 0.006975221913307905, + 0.09701304882764816, + 0.04832901805639267, + -0.05583725497126579, + 0.048187125474214554, + 0.03410501405596733, + -0.04032472148537636, + 0.039572153240442276, + -0.0453714095056057, + -0.0795464813709259, + -0.10642866790294647, + -0.06330985575914383, + 0.1408056914806366, + -0.062297191470861435, + -0.04634523391723633, + -0.006731921341270208, + -0.07289708405733109, + 0.10965650528669357, + 0.00025961449136957526, + -0.0032347673550248146, + 0.020527925342321396, + 0.04915829002857208, + -0.03736910969018936, + 0.0626242384314537, + 0.09655940532684326, + -0.06612834334373474, + 0.0990351065993309, + -0.09718092530965805, + 0.010625685565173626, + 0.01763720065355301, + 0.012060998007655144, + -0.05514713376760483, + -0.040148112922906876, + -0.08501899242401123, + -0.02642618864774704, + -0.01548711210489273, + 0.14537346363067627, + -0.029902847483754158, + -0.0914292186498642, + -0.028746582567691803, + -0.009317271411418915, + -0.0017002009553834796, + 0.01584240421652794, + -0.009353873319923878, + 0.05571913346648216, + -0.005777308717370033, + 0.04673760384321213, + -0.014426497742533684, + 0.0016959274653345346, + 0.03312485292553902, + -0.010843507945537567, + 0.019958529621362686, + 0.05468026176095009, + 0.03267483785748482, + -0.04985218122601509, + -0.07073301821947098, + 0.06814498454332352, + 0.06544243544340134, + 0.005867141764611006, + 0.0484187975525856, + 0.062137704342603683, + -0.05112326145172119, + 0.10093559324741364, + 0.04871337115764618, + -0.02452150546014309, + -0.034168146550655365, + 0.03022451139986515, + 0.030043231323361397, + -0.014900670386850834, + 0.0005067597376182675, + -0.06421002745628357, + -0.10747162997722626, + -0.04159003496170044, + -0.006553511135280132, + 0.04205743968486786, + 0.012537072412669659, + -0.0370052307844162, + 0.013779150322079659, + 0.014751370996236801, + -0.032905928790569305, + -0.1040608212351799, + 0.005243378691375256, + 0.06484910100698471, + 0.029760817065835, + -0.09242100268602371, + -0.10837740451097488, + -1.4717685183974293e-33, + 0.09764564782381058, + -0.00011709475802490488, + 0.003683727700263262, + 0.011349904350936413, + -0.012081561610102654, + 0.006750266999006271, + -0.02556728757917881, + -0.038509104400873184, + -0.06135488674044609, + 0.014966780319809914, + -0.03582988679409027, + -0.0044707139022648335, + -0.0343007929623127, + -0.08720867335796356, + 0.10325644165277481, + 0.03470460698008537, + -0.027335017919540405, + 0.03984443470835686, + -0.048571232706308365, + -0.006209087558090687, + -0.02835703082382679, + 0.019620681181550026, + -0.04294339567422867, + 0.05207644775509834, + -0.027625085785984993, + -0.06564309448003769, + -0.05169149488210678, + -0.03497757762670517, + -0.01243808027356863, + -0.03481590375304222, + 0.049114007502794266, + -0.0030154050327837467, + -0.0015021302970126271, + 0.010492111556231976, + -0.03143715858459473, + -0.013919376768171787, + -0.05425267666578293, + -0.015299389138817787, + -0.016538457944989204, + 0.05597987771034241, + -0.03348192572593689, + -0.0202057883143425, + 0.020578695461153984, + 0.053099870681762695, + -0.001637863926589489, + -0.0404755137860775, + 0.08333949744701385, + -0.08563565462827682, + -0.07633156329393387, + 0.044097691774368286, + 0.07888565212488174, + -0.06117312237620354, + -0.01927023194730282, + 0.0046954890713095665, + 0.007910219952464104, + 0.046270254999399185, + 0.014512715861201286, + 0.04652079939842224, + 0.020127683877944946, + 0.07600554823875427, + -0.019070228561758995, + -0.0034969800617545843, + -0.06715966761112213, + -0.03277909755706787, + -0.04405934363603592, + -0.06357956677675247, + -0.011382291093468666, + -0.039731159806251526, + 0.0043326024897396564, + -0.005034445319324732, + 0.04055164009332657, + 0.01946679688990116, + -0.023023398593068123, + 0.03716718405485153, + 0.06331047415733337, + -0.002465891884639859, + 0.02820320427417755, + 0.039397500455379486, + 0.01770796626806259, + 0.005619564093649387, + -0.011056770570576191, + 0.0578264482319355, + -0.03389925882220268, + 0.04909781739115715, + 0.034629032015800476, + 0.0009556559380143881, + -0.02916104719042778, + 0.02096288464963436, + 0.013009038753807545, + -0.045391809195280075, + 0.014343192800879478, + 0.08781261742115021, + 0.11579745262861252, + -0.024851907044649124, + 0.005511496216058731, + -1.9435548281876436e-08, + -0.11507891863584518, + -0.09855004400014877, + -0.028133681043982506, + 0.04327268898487091, + 0.045528147369623184, + -0.025845805183053017, + -0.04669707268476486, + 0.049881063401699066, + -0.035237591713666916, + 0.007678147405385971, + 0.05721035972237587, + -0.00318114529363811, + -0.12200558185577393, + -0.06373140215873718, + -0.005675864405930042, + -0.012049071490764618, + 0.030053656548261642, + 0.060382019728422165, + -0.004359002690762281, + 0.11604312062263489, + -0.00029578135581687093, + 0.09595842659473419, + 0.04877679795026779, + 0.009555526077747345, + -0.01969543658196926, + 0.009408180601894855, + -0.019521409645676613, + 0.0215340256690979, + 0.020489292219281197, + 0.025653261691331863, + 0.030300065875053406, + 0.04622536897659302, + -0.043078694492578506, + -0.04866515100002289, + -0.06809265166521072, + 0.03210729733109474, + 0.017949970439076424, + 0.017164045944809914, + -0.019809536635875702, + 0.12157873064279556, + 0.0692124292254448, + -0.022975390776991844, + 0.05124799534678459, + -0.007027995772659779, + -0.08009768277406693, + -0.02362188883125782, + 0.02316468395292759, + -0.0574919655919075, + -0.050370365381240845, + -0.1501612663269043, + -0.08977346867322922, + -0.00748986704275012, + -0.04356588423252106, + 0.04971644654870033, + -0.03228820860385895, + 0.004694655537605286, + 0.0056770495139062405, + 0.16757206618785858, + 0.007083104457706213, + 0.018721219152212143, + 0.09595231711864471, + 0.08307131379842758, + -0.017722731456160545, + 0.04726611077785492 + ], + "folder-simple-user-bold||directory,directories,files,folders,personal": [ + 0.0494256354868412, + -0.020654799416661263, + -0.048604924231767654, + 0.06426165252923965, + 0.07916800677776337, + -0.017523493617773056, + 0.11794082075357437, + 0.03694439306855202, + -0.014731790870428085, + -0.02989928424358368, + 0.07683990895748138, + 0.014565029181540012, + 0.0738762766122818, + -0.010064270347356796, + -0.030504684895277023, + 0.024384424090385437, + -0.03238888457417488, + 0.06081767752766609, + 0.010018306784331799, + 0.011190855875611305, + -0.05610048398375511, + 0.05934916064143181, + 0.038255512714385986, + -0.04221460223197937, + 0.03013121336698532, + -0.004511688370257616, + -0.007789819501340389, + -0.013176175765693188, + -0.0014538118848577142, + -0.02336990274488926, + 0.051963429898023605, + -0.00023723961203359067, + 0.1559249758720398, + 0.02684730663895607, + 0.04582163318991661, + 0.01985849440097809, + -0.004377070348709822, + 0.007529865950345993, + -0.015339262783527374, + 0.02914396859705448, + -0.030616719275712967, + -0.011981929652392864, + 0.016054408624768257, + 0.003248939523473382, + -0.12428086996078491, + -0.05892985314130783, + -0.014747858047485352, + -0.03865085542201996, + -0.004650062415748835, + 0.00586584722623229, + 0.004858710803091526, + -0.02706684172153473, + -0.11087385565042496, + -0.039723288267850876, + 0.03368386998772621, + 0.013845421373844147, + -0.06490211188793182, + 0.026521040126681328, + 0.0019342198502272367, + -0.015293457545340061, + 0.06152129918336868, + -0.016364101320505142, + 0.005858723074197769, + -0.0059012738056480885, + 0.07751777768135071, + 0.0036247516982257366, + -0.009375921450555325, + 0.03713815286755562, + -0.015644816681742668, + -0.0016525541432201862, + 0.020450778305530548, + -0.012192524038255215, + -0.09047190845012665, + 0.09246817231178284, + -0.006591539364308119, + -0.046538207679986954, + 0.008246926590800285, + 0.08934240788221359, + -0.08844080567359924, + -0.04308665171265602, + -0.060731131583452225, + -0.03151688352227211, + 0.023641256615519524, + -0.009329629130661488, + 0.06110009551048279, + 0.09340504556894302, + -0.0728030577301979, + -0.016157934442162514, + -0.10407783836126328, + -0.03815425559878349, + 0.032208312302827835, + -0.11037587374448776, + 0.051228974014520645, + 0.03163466602563858, + -0.1280042976140976, + 0.0050751701928675175, + 0.05957064777612686, + 0.047029294073581696, + -0.033009521663188934, + 0.032379504293203354, + -0.04390452429652214, + 0.008776156231760979, + 0.028549201786518097, + -0.03413664549589157, + -0.03220072016119957, + 0.05034908652305603, + 0.011297364719212055, + -0.05219286307692528, + -0.03961915895342827, + -0.033094871789216995, + -0.0567472018301487, + -0.11002852767705917, + -0.07460764050483704, + -0.09650375694036484, + 0.0016130459262058139, + -0.05380786582827568, + -0.03401172533631325, + 0.03547046333551407, + 0.05743900313973427, + 0.1456279754638672, + 0.04185756668448448, + -0.06949792057275772, + -0.02438984252512455, + -0.006613575387746096, + -0.009086458943784237, + 0.01557346060872078, + 0.025879135355353355, + -9.178754884544712e-34, + 0.064782053232193, + 0.08299941569566727, + -0.003729063319042325, + 0.10495292395353317, + 0.04886654391884804, + 0.01900908537209034, + -0.041871633380651474, + -0.055885832756757736, + -0.04960702732205391, + 0.04569411277770996, + 0.14182549715042114, + 0.08082690089941025, + -0.058885663747787476, + 0.037210505455732346, + 0.028802063316106796, + 0.0013813732657581568, + 0.019351283088326454, + -0.05047895014286041, + -0.04722214862704277, + -0.06133514642715454, + -0.05598340183496475, + 0.11239608377218246, + -0.0581556037068367, + -0.006474544759839773, + 0.007772714830935001, + -0.06563207507133484, + 0.11243034154176712, + 0.017676979303359985, + -0.001607271726243198, + 0.0012393982615321875, + -0.003585127182304859, + -0.008241795003414154, + 0.06280843913555145, + 0.08430840075016022, + -0.050456445664167404, + 0.06149899214506149, + -0.06895118206739426, + 0.021491868421435356, + -0.016549572348594666, + 0.04648861661553383, + -0.08946401625871658, + -0.007504034787416458, + -0.008890731260180473, + -0.03476623073220253, + -0.01282978244125843, + 0.12447448819875717, + -0.0003138155734632164, + -0.06328357756137848, + -0.036409758031368256, + 0.03292130306363106, + -0.030899597331881523, + 0.009454498998820782, + -0.013447898440063, + 0.06818873435258865, + -0.0028643549885600805, + 0.005471137817949057, + -0.05259016901254654, + 0.027851877734065056, + 0.007974047213792801, + -0.015250460244715214, + 0.055318720638751984, + 0.06660736352205276, + 0.032952770590782166, + -0.02916569635272026, + -0.09239719808101654, + -0.037045177072286606, + 0.007576900999993086, + -0.031095467507839203, + 0.09168872982263565, + 0.04669719934463501, + -0.055600155144929886, + 0.08848674595355988, + 0.026471199467778206, + 0.01883465237915516, + -0.023067981004714966, + 0.027576696127653122, + -0.007718732114881277, + -0.02721361815929413, + -0.005331931635737419, + -0.034220755100250244, + -0.10737457871437073, + -0.0412113256752491, + -0.056597743183374405, + 0.0733642652630806, + -0.03584084287285805, + 0.01249756570905447, + -0.015327216126024723, + 0.011253747157752514, + -0.025078432634472847, + -0.04695146530866623, + -0.025647565722465515, + 0.03725313022732735, + -0.01607309840619564, + -0.07094129174947739, + -0.11822899430990219, + -2.3615721915638066e-33, + 0.09376882761716843, + -0.0079072630032897, + -0.05726556479930878, + -0.02266758866608143, + -0.007100631017237902, + 0.042139168828725815, + 0.049694281071424484, + -0.011432425118982792, + -0.05070246383547783, + -0.025585690513253212, + -0.02230466529726982, + 0.030503738671541214, + -0.014524208381772041, + -0.018369179219007492, + 0.049042958766222, + 0.035623420029878616, + -0.018945565447211266, + 0.010604510083794594, + -0.020788174122571945, + -0.05117540434002876, + -0.06183702126145363, + 0.02951374463737011, + -0.06345464289188385, + 0.04012299329042435, + -0.01048679742962122, + -0.03919124975800514, + -0.03942244127392769, + -0.02120197005569935, + 0.027531789615750313, + 0.017748216167092323, + 0.02268284559249878, + -0.005052825435996056, + -0.006734163034707308, + -0.0410943441092968, + -0.05380930379033089, + -0.03647705540060997, + -0.07895373553037643, + 0.029222695156931877, + 0.02438468672335148, + 0.0445055216550827, + -0.04436824470758438, + 0.017946142703294754, + 0.03090175800025463, + 0.025688722729682922, + -0.05895083770155907, + -0.021341698244214058, + 0.050575342029333115, + -0.15934541821479797, + -0.04912516847252846, + 0.03472660109400749, + 0.05880674719810486, + -0.06859669089317322, + -0.017021527513861656, + -0.006567324977368116, + -0.003809408750385046, + -0.010113188065588474, + 0.020735107362270355, + -0.027519667521119118, + 0.007209939416497946, + 0.08176722377538681, + -0.07752533257007599, + 0.03514112904667854, + -0.07164888083934784, + 0.017265116795897484, + -0.09290768951177597, + -0.05171165242791176, + -0.031516242772340775, + -0.0332394540309906, + -0.0014726085355505347, + -0.0528155080974102, + 0.05761950463056564, + -0.06281442195177078, + 0.00038301415042951703, + 0.03312602639198303, + 0.03678639233112335, + -0.054594360291957855, + 0.04061971977353096, + 0.004930414259433746, + 0.027806507423520088, + -0.009490171447396278, + 0.015682067722082138, + 0.015682877972722054, + -0.07195185124874115, + 0.049737151712179184, + -0.018609004095196724, + -0.038146380335092545, + -0.04059410095214844, + 0.00757354311645031, + 0.0066187637858092785, + -0.02011713944375515, + 0.016335347667336464, + 0.09434936195611954, + 0.037655215710401535, + -0.043167032301425934, + -0.04949168115854263, + -2.074635041537931e-08, + -0.1081290990114212, + -0.08595447987318039, + 0.019379837438464165, + 0.029265401884913445, + 0.0526730976998806, + -0.02989117242395878, + -0.023572629317641258, + 0.0388626791536808, + -0.03495755419135094, + 0.04653674736618996, + 0.050803422927856445, + -0.007423046976327896, + -0.08232343941926956, + -0.025738202035427094, + 0.014832790940999985, + 0.04982903227210045, + 0.006577756721526384, + 0.06290444731712341, + -0.014185580424964428, + 0.05854739621281624, + 0.00816463865339756, + 0.07386622577905655, + 0.025202246382832527, + 0.03221075236797333, + 0.026409035548567772, + 0.07247400283813477, + -0.04654776304960251, + -0.011470931582152843, + 0.019663706421852112, + 0.04758315533399582, + 0.024606354534626007, + 0.0575728677213192, + -5.507611422217451e-05, + -0.011908109299838543, + -0.07080018520355225, + -0.004006269853562117, + -0.05381108820438385, + 0.016774719581007957, + -0.030327308923006058, + 0.07438772916793823, + 0.0030538339633494616, + -0.031077129766345024, + 0.043072961270809174, + 0.010248735547065735, + -0.040315985679626465, + -0.07928352802991867, + 0.058137308806180954, + -0.004140051081776619, + -0.08761567622423172, + -0.13175331056118011, + -0.06749415397644043, + 0.006577163934707642, + -0.016925211995840073, + 0.10179537534713745, + -0.0027226314414292574, + -0.03142773360013962, + 0.045614711940288544, + 0.18575842678546906, + -0.014085894450545311, + -0.000869403884280473, + 0.04001225531101227, + 0.11135168373584747, + -0.054531529545784, + 0.01214662566781044 + ], + "folder-star-bold||directory,directories,files,folders,favorite,starred": [ + 0.014246472157537937, + -0.03807913511991501, + -0.06069004535675049, + 0.06773213297128677, + 0.073496513068676, + 0.010878699831664562, + 0.09792090952396393, + -0.01010962389409542, + 0.031813379377126694, + 0.0005441148532554507, + 0.007082690484821796, + 0.08003844320774078, + 0.09208791702985764, + -0.014440883882343769, + -0.039149027317762375, + 0.04593262821435928, + -0.03701721504330635, + 0.033815737813711166, + 0.010391768999397755, + -0.036115292459726334, + -0.03468503803014755, + 0.056507185101509094, + 0.015236509963870049, + -0.020805370062589645, + 0.0687393993139267, + 0.024658482521772385, + -0.011442785151302814, + -0.039434995502233505, + -0.04623239114880562, + -0.05926017835736275, + 0.034001316875219345, + 0.04509075731039047, + 0.09778066724538803, + 0.07283996790647507, + 0.03275664150714874, + -0.001534854294732213, + -0.024470634758472443, + -0.03845108672976494, + -0.02845066227018833, + 0.026889756321907043, + 0.02496648207306862, + -0.0005117538385093212, + -0.005324395839124918, + -0.01966453716158867, + -0.09881041198968887, + -0.06983794271945953, + -0.062203362584114075, + -0.05863947048783302, + -0.0034108185209333897, + 0.056610096246004105, + -0.0330314114689827, + -0.07677129656076431, + -0.1286095380783081, + -0.03831116855144501, + 0.0668378695845604, + 0.023325972259044647, + -0.03635203465819359, + -0.030276309698820114, + -0.010753354988992214, + -0.019323142245411873, + 0.06589780747890472, + -0.009740587323904037, + 0.02126290649175644, + -0.030761700123548508, + 0.07777096331119537, + -0.05478861182928085, + -0.015426801517605782, + 0.041782230138778687, + -0.04674607515335083, + 0.012171444483101368, + 0.021233344450592995, + 0.03824381157755852, + -0.03665821999311447, + 0.052394069731235504, + 0.021157963201403618, + 0.003265941282734275, + 0.05087735503911972, + 0.011167565360665321, + -0.03333301469683647, + -0.06337273865938187, + -0.048051439225673676, + -0.011952821165323257, + 0.019136685878038406, + -0.010476704686880112, + 0.058686260133981705, + 0.05367225781083107, + -0.0531504787504673, + -0.028145046904683113, + -0.10766782611608505, + -0.018058881163597107, + -0.03742633014917374, + -0.13350039720535278, + -0.017394835129380226, + 0.0436273068189621, + -0.11824563145637512, + 0.03184860199689865, + 0.04270797595381737, + -0.04334349185228348, + 0.04472266510128975, + 0.029368890449404716, + -0.025433678179979324, + 0.017242729663848877, + 0.026437701657414436, + -0.01596069149672985, + -0.007978187873959541, + 0.03151669725775719, + 0.03557151183485985, + -0.053931381553411484, + 0.002667572582140565, + -0.00294803106226027, + -0.05428766459226608, + -0.06813514232635498, + -0.03725554421544075, + -0.08643115311861038, + -0.0793733224272728, + -0.00047476659528911114, + -0.014937830157577991, + 0.04445992410182953, + 0.10219407081604004, + 0.07083892822265625, + 0.08069286495447159, + -0.07219332456588745, + 0.011780320666730404, + -0.01311761885881424, + -0.051480475813150406, + 0.005339317489415407, + 0.03047243505716324, + 2.0077327282744846e-35, + 0.036818668246269226, + 0.03669166564941406, + -0.007531406823545694, + 0.041403207927942276, + 0.02865777723491192, + 0.002247228752821684, + -0.023711644113063812, + -0.05422006547451019, + -0.059875331819057465, + 0.004454557318240404, + 0.0772901326417923, + 0.06494051963090897, + -0.05547351762652397, + 0.046232759952545166, + 0.03185757249593735, + -0.04190976917743683, + 0.03893779590725899, + -0.040279239416122437, + -0.0818672627210617, + -0.08880273252725601, + -0.059553179889917374, + 0.12278014421463013, + -0.07209154963493347, + -0.040956784039735794, + -0.012553197331726551, + -0.08043690770864487, + 0.10648518800735474, + 0.0016086830291897058, + -0.003655750770121813, + 0.028544383123517036, + 0.0492207370698452, + -0.028375962749123573, + 0.0613594688475132, + 0.09404551237821579, + -0.06363177299499512, + 0.10050028562545776, + -0.12440546602010727, + 0.00854243990033865, + 0.015576199628412724, + 0.03273952007293701, + -0.04310460016131401, + -0.048858217895030975, + -0.09627348184585571, + -0.02347474917769432, + -0.025049395859241486, + 0.1494593471288681, + -0.025177152827382088, + -0.09125667065382004, + -0.03590180724859238, + -0.005337150301784277, + 0.013223078101873398, + 0.016284674406051636, + -0.0007640564581379294, + 0.04510026052594185, + -0.004139333963394165, + 0.03533647209405899, + -0.011471062898635864, + -0.0012163936626166105, + 0.035866376012563705, + -0.01840090937912464, + 0.023861560970544815, + 0.0381157211959362, + 0.0456063412129879, + -0.05219777300953865, + -0.07077387720346451, + 0.0702187716960907, + 0.06493024528026581, + 0.023359019309282303, + 0.046345070004463196, + 0.05875958502292633, + -0.04991630092263222, + 0.0962664932012558, + 0.05016164854168892, + -0.0046250768937170506, + -0.05277585610747337, + 0.0128591014072299, + 0.018456971272826195, + 0.002880252432078123, + 0.01333582866936922, + -0.06838014721870422, + -0.1153172105550766, + -0.04930317774415016, + -0.0029982232954353094, + 0.03419000282883644, + 0.030849352478981018, + -0.03861243277788162, + 0.0032498168293386698, + -0.001452467287890613, + -0.027439123019576073, + -0.09074363112449646, + 0.0073964702896773815, + 0.05948333069682121, + 0.03205664083361626, + -0.08796265721321106, + -0.12454644590616226, + -2.3007383385278377e-33, + 0.09770981967449188, + 0.0038254442624747753, + -0.00020053618936799467, + 0.006439657416194677, + -0.023433107882738113, + -0.00951055996119976, + -0.04355669766664505, + -0.03442849591374397, + -0.061501409858465195, + 0.012825322337448597, + -0.027614224702119827, + -0.0067375279031693935, + -0.027139663696289062, + -0.08974527567625046, + 0.10568078607320786, + 0.03087707608938217, + -0.02540113404393196, + 0.03368613123893738, + -0.06382203102111816, + -0.0035600464325398207, + -0.03403669223189354, + 0.009281864389777184, + -0.025833699852228165, + 0.06556776165962219, + -0.03298259153962135, + -0.07617225497961044, + -0.04438921436667442, + -0.03824030980467796, + -0.016388166695833206, + -0.030635954812169075, + 0.05099485442042351, + 0.006139390170574188, + -0.010211767628788948, + 0.0215641800314188, + -0.03021489642560482, + -0.018936166539788246, + -0.03985105827450752, + -0.017123445868492126, + -0.013286286033689976, + 0.06015155464410782, + -0.025964586064219475, + -0.015705570578575134, + 0.011346856132149696, + 0.06558152288198471, + -0.008561438880860806, + -0.025771280750632286, + 0.07143428921699524, + -0.07014303654432297, + -0.06472417712211609, + 0.056908637285232544, + 0.0786939486861229, + -0.04854518547654152, + -0.013035770505666733, + 0.00014591733634006232, + -0.0002860560198314488, + 0.044854842126369476, + 0.004214008338749409, + 0.04105339199304581, + 0.01950141228735447, + 0.06091896444559097, + -0.010427680797874928, + -0.005672917701303959, + -0.054316408932209015, + -0.030422084033489227, + -0.03287750110030174, + -0.07421917468309402, + -0.007011773996055126, + -0.02833114191889763, + 0.02047422155737877, + -0.00888975802809, + 0.04970456659793854, + 0.011675314046442509, + -0.0385281927883625, + 0.053586460649967194, + 0.05357173830270767, + -0.013284645974636078, + 0.044509101659059525, + 0.039540186524391174, + 0.01837190054357052, + 0.012081856839358807, + -0.017008546739816666, + 0.05931432545185089, + -0.022661343216896057, + 0.0664907842874527, + 0.020356560125947, + 0.00433462206274271, + -0.036924563348293304, + 0.03474228084087372, + 0.007415221072733402, + -0.0385904498398304, + 0.02508736588060856, + 0.07094293087720871, + 0.0880400687456131, + -0.03691396489739418, + -0.0005922511336393654, + -1.8958230540988552e-08, + -0.12018141895532608, + -0.08231467753648758, + -0.03101971186697483, + 0.03529883176088333, + 0.040604881942272186, + -0.03016887791454792, + -0.04286715388298035, + 0.05165429785847664, + -0.03900595009326935, + -0.01030702330172062, + 0.053326625376939774, + 0.006574505008757114, + -0.11641702800989151, + -0.0840194970369339, + 0.0007702346774749458, + -0.024951554834842682, + 0.033529747277498245, + 0.06158201023936272, + -0.012799998745322227, + 0.11122312396764755, + -0.0076194582507014275, + 0.09833342581987381, + 0.05013980343937874, + 0.0076891835778951645, + -0.021671950817108154, + 0.012679551728069782, + -0.028679948300123215, + 0.01038337405771017, + 0.021974503993988037, + 0.022624799981713295, + 0.034016434103250504, + 0.04950615018606186, + -0.04739629849791527, + -0.06258854269981384, + -0.0627184510231018, + 0.023864613845944405, + 0.02608749270439148, + 0.01001150906085968, + -0.01125949714332819, + 0.13855402171611786, + 0.06519809365272522, + -0.026362968608736992, + 0.053561147302389145, + -0.002217574743553996, + -0.09176274389028549, + -0.021712196990847588, + 0.0233965702354908, + -0.04246194288134575, + -0.05139486864209175, + -0.1399407982826233, + -0.084011510014534, + 0.0003261219244450331, + -0.047323327511548996, + 0.06513144820928574, + -0.026424933224916458, + -0.0060327667742967606, + -0.0027978145517408848, + 0.16661426424980164, + 0.01293957233428955, + 0.019155800342559814, + 0.10514559596776962, + 0.046523164957761765, + -0.0010298124980181456, + 0.04797985777258873 + ], + "folder-user-bold||directory,directories,files,folders,personal": [ + 0.04919159412384033, + -0.028845414519309998, + -0.061987049877643585, + 0.05865214765071869, + 0.06368759274482727, + -0.023579496890306473, + 0.15228065848350525, + 0.008168882690370083, + 0.007125666830688715, + -0.04419771209359169, + 0.06654104590415955, + 0.023146789520978928, + 0.06277848035097122, + -0.01149660348892212, + -0.027412518858909607, + 0.02690829522907734, + -0.022379623726010323, + 0.07136525958776474, + -0.003987510222941637, + 0.011969262734055519, + -0.03996778279542923, + 0.07439310848712921, + 0.04686560109257698, + -0.0391131266951561, + 0.041261930018663406, + -0.014346323907375336, + 0.0007494727033190429, + -0.029468480497598648, + -0.022822018712759018, + -0.010452081449329853, + 0.050382886081933975, + 0.003788356203585863, + 0.15211111307144165, + 0.029715120792388916, + 0.038712721318006516, + 0.02802973985671997, + -0.03139131888747215, + -0.0002039615937974304, + 0.00193133729044348, + 0.03428449109196663, + -0.024121280759572983, + -0.013488290831446648, + 0.017443040385842323, + 0.007385545410215855, + -0.11493242532014847, + -0.05664071440696716, + -0.017050020396709442, + -0.044191740453243256, + -0.010091690346598625, + 0.025012392550706863, + -0.011602519080042839, + -0.024958277121186256, + -0.10118314623832703, + -0.04425239935517311, + 0.022452976554632187, + 0.01024608127772808, + -0.04320153221487999, + 0.02362850308418274, + 0.0036744424141943455, + -0.022174211218953133, + 0.04488816857337952, + 0.0008342978544533253, + 0.007566620595753193, + -0.0014316914603114128, + 0.09155890345573425, + 0.010226483456790447, + -0.0028596199117600918, + 0.02741696685552597, + -0.022311203181743622, + 0.014375166967511177, + 0.03720841929316521, + -0.010101604275405407, + -0.06826477497816086, + 0.0716591328382492, + 0.0009280781378038228, + -0.030563950538635254, + 0.009993918240070343, + 0.07393617182970047, + -0.07372670620679855, + -0.06467219442129135, + -0.039896443486213684, + -0.017915213480591774, + 0.027444487437605858, + -0.03816285729408264, + 0.06218288093805313, + 0.11801162362098694, + -0.06790352612733841, + -0.03675054386258125, + -0.11640018969774246, + -0.026711348444223404, + 0.026992471888661385, + -0.1175675168633461, + 0.038371551781892776, + 0.02763299271464348, + -0.1449097990989685, + -0.002507086144760251, + 0.036492250859737396, + 0.047200512140989304, + -0.00011478162195999175, + 0.043207522481679916, + -0.04420072212815285, + 0.012265842407941818, + 0.002930089132860303, + -0.007184834219515324, + -0.031893402338027954, + 0.03879349306225777, + -0.003044702112674713, + -0.03081158548593521, + -0.04207197576761246, + -0.021569766104221344, + -0.03750695288181305, + -0.11267013102769852, + -0.08757000416517258, + -0.09095559269189835, + -0.002912656869739294, + -0.05263036862015724, + -0.027676912024617195, + 0.026942178606987, + 0.05746617913246155, + 0.13456624746322632, + 0.041772857308387756, + -0.07070353627204895, + -0.018741140142083168, + -0.011555852368474007, + -0.0028065054211765528, + 0.007267381064593792, + 0.03237377107143402, + 1.507562321379968e-34, + 0.042667925357818604, + 0.0641908049583435, + -0.0011898557422682643, + 0.09558315575122833, + 0.04942351207137108, + 0.03223143890500069, + -0.044972702860832214, + -0.06482380628585815, + -0.049476735293865204, + 0.049531303346157074, + 0.12281879037618637, + 0.1126132383942604, + -0.04712751507759094, + 0.039106335490942, + 0.03143477067351341, + 0.005871407222002745, + 0.018844204023480415, + -0.053681958466768265, + -0.04258517920970917, + -0.0413244366645813, + -0.043512869626283646, + 0.08507804572582245, + -0.060358766466379166, + 0.0048966845497488976, + 0.0029301955364644527, + -0.07518274337053299, + 0.10535571724176407, + 0.025113701820373535, + 0.0010239736875519156, + 0.01090947538614273, + 0.003951834049075842, + 0.002817390253767371, + 0.06160801276564598, + 0.07406847178936005, + -0.04649779573082924, + 0.060099806636571884, + -0.0931018739938736, + 0.022266430780291557, + -0.02117038704454899, + 0.0664411410689354, + -0.06873820722103119, + -0.022228537127375603, + -0.016103435307741165, + -0.03543005883693695, + -0.032567910850048065, + 0.12723658978939056, + 0.011087066493928432, + -0.06541142612695694, + -0.04876392334699631, + 0.04683084413409233, + -0.01714707538485527, + 0.0088929682970047, + -0.0010007511591538787, + 0.04920392110943794, + 0.0028508934192359447, + -0.012692328542470932, + -0.05218257009983063, + 0.026595141738653183, + 0.008075304329395294, + -0.03477621451020241, + 0.056327491998672485, + 0.04185277968645096, + 0.050719961524009705, + -0.04034838452935219, + -0.09564018249511719, + -0.044331103563308716, + -0.005230532959103584, + -0.016018040478229523, + 0.10033391416072845, + 0.04400808736681938, + -0.05140070617198944, + 0.08417526632547379, + 0.033643994480371475, + 0.04711119085550308, + -0.051122408360242844, + 0.012242376804351807, + -0.023989848792552948, + 0.005026899743825197, + 0.010025806725025177, + -0.03342919796705246, + -0.11519043147563934, + -0.05635909363627434, + -0.054649073630571365, + 0.0696147009730339, + -0.011906085535883904, + 0.01885868050158024, + -0.03150547668337822, + -0.009165730327367783, + -0.015121868811547756, + -0.012316363863646984, + -0.02469533309340477, + 0.03237733989953995, + -0.012197337113320827, + -0.05396503210067749, + -0.14504708349704742, + -3.668353833009589e-33, + 0.08366100490093231, + -0.007174148224294186, + -0.06426102668046951, + -0.03328556939959526, + -0.00858000572770834, + 0.02194581925868988, + 0.028427181765437126, + -0.008078884333372116, + -0.05387243255972862, + -0.034391842782497406, + -0.004414633847773075, + 0.027690494433045387, + 0.0009968247031792998, + -0.013874548487365246, + 0.051277242600917816, + 0.027001967653632164, + -0.0176954735070467, + -0.000990184722468257, + -0.04153778403997421, + -0.05769537761807442, + -0.07654958963394165, + 0.018823018297553062, + -0.046541083604097366, + 0.052451636642217636, + -0.015518265776336193, + -0.05309046059846878, + -0.02783617563545704, + -0.031234407797455788, + 0.02591017261147499, + 0.024927956983447075, + 0.022731706500053406, + -0.00020797547767870128, + -0.013852646574378014, + -0.03164727985858917, + -0.056236959993839264, + -0.044538646936416626, + -0.06144759804010391, + 0.02239301986992359, + 0.03058956377208233, + 0.05413777753710747, + -0.03347047045826912, + 0.024126214906573296, + 0.024282101541757584, + 0.04158611223101616, + -0.06913956999778748, + -0.0013621782418340445, + 0.03234141692519188, + -0.15154922008514404, + -0.031269896775484085, + 0.05091358721256256, + 0.06133114919066429, + -0.05500387027859688, + 0.003235799493268132, + -0.014115561731159687, + -0.01097195129841566, + -0.012457938864827156, + 0.009588733315467834, + -0.038855575025081635, + 0.014869989827275276, + 0.07232347130775452, + -0.06747021526098251, + 0.03612563759088516, + -0.051640186458826065, + 0.025833090767264366, + -0.08239125460386276, + -0.05926230922341347, + -0.02474238909780979, + -0.01457307580858469, + 0.014952609315514565, + -0.05713411048054695, + 0.06339127570390701, + -0.0877418965101242, + -0.01705298013985157, + 0.04328319802880287, + 0.02146052196621895, + -0.07978346198797226, + 0.05433669686317444, + 0.004204530734568834, + 0.030594956129789352, + -0.00023593923833686858, + 0.008590362034738064, + 0.01742173731327057, + -0.0636667013168335, + 0.07520601898431778, + -0.04190530255436897, + -0.04418349266052246, + -0.044915903359651566, + 0.01916952058672905, + -0.0051278769969940186, + -0.012332887388765812, + 0.03140448406338692, + 0.07783982157707214, + -0.011201434768736362, + -0.06378309428691864, + -0.0613691471517086, + -2.0466451644551853e-08, + -0.11526674777269363, + -0.07666739076375961, + 0.018508369103074074, + 0.023896953091025352, + 0.05300769582390785, + -0.03529640659689903, + -0.018431423231959343, + 0.032729197293519974, + -0.03705901652574539, + 0.0318593755364418, + 0.050634779036045074, + 0.007951135747134686, + -0.07657469063997269, + -0.0575527548789978, + 0.037565864622592926, + 0.02528328076004982, + 0.0037448115181177855, + 0.06466993689537048, + -0.026299841701984406, + 0.03766007348895073, + 0.00029617472318932414, + 0.07878845185041428, + 0.034246575087308884, + 0.02708282135426998, + 0.027383286505937576, + 0.08741393685340881, + -0.05935446172952652, + -0.031605031341314316, + 0.01651996187865734, + 0.047607917338609695, + 0.023859895765781403, + 0.065405935049057, + 0.004292084835469723, + -0.029966652393341064, + -0.06075189635157585, + -0.02310864068567753, + -0.051609206944704056, + 0.009409204125404358, + -0.019615517929196358, + 0.09611240029335022, + -0.0040216753259301186, + -0.037737153470516205, + 0.047347452491521835, + 0.025289958342909813, + -0.0486522875726223, + -0.07596847414970398, + 0.06134096905589104, + 0.020822221413254738, + -0.09479013830423355, + -0.11592135578393936, + -0.06333400309085846, + 0.01831025816500187, + -0.016324732452630997, + 0.12392418086528778, + 0.003119286149740219, + -0.04948240891098976, + 0.04105596989393234, + 0.1884472817182541, + -0.006612428463995457, + -0.0161201860755682, + 0.05018531158566475, + 0.07268989086151123, + -0.04393160343170166, + 0.010415096767246723 + ], + "folders-bold||directory,directories,files,folders,copy,copied,duplicated": [ + -0.015431149862706661, + -0.050930771976709366, + -0.0415954552590847, + 0.0667608380317688, + 0.0712272971868515, + -0.04158157482743263, + 0.09027841687202454, + -0.051412053406238556, + 0.08301863074302673, + -0.03641197085380554, + 0.09948631376028061, + 0.052599914371967316, + 0.06309600919485092, + -0.029548369348049164, + -0.0467059426009655, + 0.029403213411569595, + -0.00341890100389719, + 0.012332557700574398, + -0.04755089059472084, + -0.0034857336431741714, + -0.009659837000072002, + 0.0813274085521698, + 0.016459180042147636, + 0.007005338091403246, + 0.08860670775175095, + 0.020666418597102165, + -0.01194430235773325, + -0.03792160376906395, + 0.0038128811866045, + -0.06906349211931229, + 0.00989496149122715, + 0.015231928788125515, + 0.11342470347881317, + 0.01582089252769947, + 0.04996312037110329, + 0.06671317666769028, + -0.018282907083630562, + -0.04069226235151291, + 0.017059659585356712, + 0.03338869661092758, + -0.007737352047115564, + -0.010820526629686356, + 0.004256176762282848, + 0.0006335724028758705, + -0.14485131204128265, + -0.0563206821680069, + -0.03940146788954735, + -0.004676791839301586, + 0.014489402063190937, + -0.033123888075351715, + -0.029802367091178894, + -0.0671333372592926, + -0.11983220279216766, + -0.06138014793395996, + 0.05783141404390335, + -0.003978141583502293, + -0.0412214957177639, + 0.03247064724564552, + 0.004708837252110243, + -0.028621770441532135, + 0.020527202636003494, + 0.05538607016205788, + 0.04567310959100723, + 0.01157265342772007, + 0.07116098701953888, + 0.02846168354153633, + 0.0076839616522192955, + 0.06464532017707825, + -0.024098152294754982, + 0.03042079135775566, + 0.06940611451864243, + 0.03811975568532944, + -0.06208706647157669, + 0.12320739030838013, + 0.02790895290672779, + 0.03541379049420357, + 0.014630443416535854, + 0.045111432671546936, + -0.10714641958475113, + -0.08009957522153854, + -0.077733613550663, + -0.07465345412492752, + 0.007848826237022877, + -0.012640813365578651, + 0.06122585013508797, + 0.07429896295070648, + -0.06513661891222, + -0.005813934374600649, + -0.08836634457111359, + -0.04606190696358681, + 0.003543856320902705, + -0.10641129314899445, + 0.0006362852873280644, + 0.08953607082366943, + -0.11811039596796036, + -0.008094409480690956, + 0.037307776510715485, + 0.10203998535871506, + 0.010428724810481071, + 0.03694925457239151, + -0.0027013318613171577, + 0.020146429538726807, + 0.04559919238090515, + 0.02867596223950386, + -0.057251691818237305, + -0.009596467949450016, + 0.02162875048816204, + -0.08081448823213577, + -0.04029949754476547, + -0.006275224965065718, + -0.018538212403655052, + -0.07732262462377548, + -0.034587614238262177, + -0.07221172004938126, + -0.019803768023848534, + -0.07170481979846954, + -0.04203849285840988, + 0.008472044952213764, + 0.008645493537187576, + 0.11587996035814285, + 0.07841278612613678, + -0.06137242540717125, + -0.002389464294537902, + -0.02552659995853901, + -0.0003962415212299675, + -0.005873238202184439, + 0.0310601145029068, + -4.979209939913413e-34, + 0.0563792958855629, + 0.04254893213510513, + 0.00983086321502924, + 0.08002025634050369, + 0.06687875092029572, + -0.008466056548058987, + -0.007273269817233086, + -0.054099585860967636, + -0.072381891310215, + 0.013195913285017014, + 0.08154270797967911, + 0.04442223161458969, + -0.041949495673179626, + 0.02525794506072998, + -0.021628256887197495, + -0.04143469035625458, + 0.05956389755010605, + -0.012403606437146664, + -0.08608219772577286, + -0.026989955455064774, + -0.012669763527810574, + 0.0972542017698288, + -0.02626936137676239, + -0.01658349670469761, + -0.028086336329579353, + -0.04258345440030098, + 0.06054550036787987, + -0.03078291565179825, + 0.01686997152864933, + 0.024295229464769363, + 0.000544890237506479, + 0.013602610677480698, + 0.03109688125550747, + 0.08406037092208862, + -0.06160349026322365, + 0.11119990795850754, + -0.0509931743144989, + 0.0005471415352076292, + 0.008917256258428097, + 0.03378894552588463, + -0.10040425509214401, + -0.04437502101063728, + -0.05242681875824928, + -0.04130153730511665, + 0.049907367676496506, + 0.11167924106121063, + -0.01744849421083927, + -0.09993784129619598, + -0.05756206065416336, + 0.07122248411178589, + -0.027466489002108574, + -0.01773923449218273, + 0.05055740475654602, + 0.04155002906918526, + -0.022531017661094666, + -0.038345761597156525, + -0.030140671879053116, + -0.011796923354268074, + 0.0009091148967854679, + 0.04367884621024132, + 0.07805269956588745, + 0.06632525473833084, + 0.019270457327365875, + -0.018556244671344757, + -0.02291148714721203, + 0.026911679655313492, + 0.01130629051476717, + 0.00985928438603878, + 0.08960429579019547, + 0.035235561430454254, + 0.0011364428792148829, + 0.04717400297522545, + -0.013970267958939075, + 0.05214829370379448, + -0.023007569834589958, + -0.0013430621474981308, + -0.02700818143785, + -0.07074124366044998, + 0.04807525873184204, + -0.0710788443684578, + -0.17378640174865723, + -0.027990074828267097, + -0.05211329460144043, + -0.05259263888001442, + -0.014881512150168419, + 0.019846966490149498, + -0.037355389446020126, + 0.0036656076554208994, + -0.04388045519590378, + 0.005992768798023462, + 0.02350577712059021, + 0.04026566073298454, + -0.009020491503179073, + -0.09717179834842682, + -0.07613106071949005, + -2.326039936074326e-33, + 0.06626109033823013, + 0.022614387795329094, + -0.02993101440370083, + 0.0023319669999182224, + -0.06976407021284103, + 0.019082363694906235, + -0.06635954976081848, + 0.0027234070003032684, + -0.07414857298135757, + -0.010655846446752548, + 0.02907687984406948, + 0.0232126172631979, + -0.024023301899433136, + -0.039298731833696365, + 0.0023500206880271435, + 0.013460605405271053, + 0.06065879762172699, + 0.010148693807423115, + -0.06199077516794205, + -0.04175560176372528, + -0.03225116431713104, + 0.017827484756708145, + -0.007399698719382286, + 0.09100031852722168, + -0.037156280130147934, + -0.035792894661426544, + -0.086383156478405, + -0.06558425724506378, + 0.05194401368498802, + 0.011352410539984703, + 0.050539255142211914, + 0.03888597711920738, + -0.003219407517462969, + 0.011573035269975662, + -0.015409255400300026, + -0.016388189047574997, + 0.016297008842229843, + 0.006276266649365425, + 0.003057225840166211, + 0.0013062858488410711, + -0.056900735944509506, + -0.01631319709122181, + 0.0348319336771965, + 0.029799513518810272, + -0.040991343557834625, + -0.05720642954111099, + 0.03604424372315407, + -0.08874666690826416, + -0.0036234792787581682, + 0.027450866997241974, + 0.08764797449111938, + -0.045083366334438324, + -0.05976714938879013, + -0.033555980771780014, + -0.016605593264102936, + 0.006926195230334997, + -0.039647288620471954, + 0.059039801359176636, + 0.004243241157382727, + 0.054697077721357346, + -0.034530237317085266, + 0.037795089185237885, + -0.09747396409511566, + -0.040267348289489746, + -0.018376080319285393, + -0.07527586072683334, + 0.021996228024363518, + 0.0034457826986908913, + 0.05749104171991348, + -0.00904013216495514, + 0.043315012007951736, + 0.047771282494068146, + -0.010125911794602871, + 0.030130846425890923, + 0.01953825168311596, + -0.07550674676895142, + 0.038889870047569275, + 0.060326654464006424, + -0.0028802077285945415, + 0.02038182131946087, + 0.012057154439389706, + 0.024328548461198807, + -0.009230341762304306, + 0.10905925184488297, + -0.08320252597332001, + 0.004197335802018642, + -0.009071629494428635, + -0.004228885751217604, + 0.0068361153826117516, + -0.04986799135804176, + 0.000811259204056114, + 0.044179972261190414, + 0.02773810736835003, + 0.02747325599193573, + -0.025501122698187828, + -2.2605533445130277e-08, + -0.07777868211269379, + -0.04566313698887825, + -0.029571156948804855, + 0.005488842725753784, + 0.052639592438936234, + -0.1017187088727951, + -0.0768166184425354, + 0.03445432707667351, + -0.07730390876531601, + -0.008060509338974953, + 0.006951571442186832, + 0.013389826752245426, + -0.08953699469566345, + -0.07187113165855408, + -0.003629097482189536, + -0.04023868218064308, + 0.006210396531969309, + 0.014696426689624786, + -0.00022311446082312614, + 0.015376913361251354, + -0.00010976936755469069, + 0.04321320727467537, + 0.05298696085810661, + 0.03906744718551636, + -0.010716067627072334, + 0.0012495724949985743, + -0.048321228474378586, + -0.008671579882502556, + 0.05283445864915848, + 0.023300794884562492, + 0.050140317529439926, + 0.02941141277551651, + -0.016904115676879883, + -0.047289494425058365, + -0.01621312089264393, + -0.04491215944290161, + 0.024016274139285088, + -5.0795377319445834e-05, + -0.03414733707904816, + 0.09401018917560577, + -0.045804888010025024, + -0.038146454840898514, + 0.04867501184344292, + 0.005549615249037743, + -0.0014770333655178547, + -0.04558796435594559, + 0.016630932688713074, + 0.01637956313788891, + -0.07372330129146576, + -0.16857124865055084, + -0.0519728809595108, + 0.047798432409763336, + 0.0041324119083583355, + 0.15123097598552704, + -0.003791311290115118, + -0.04694897308945656, + 0.02695203572511673, + 0.17302678525447845, + 0.020463857799768448, + 0.03105013817548752, + 0.11095239222049713, + 0.03608138486742973, + 0.006613079458475113, + 0.010509512387216091 + ], + "football-bold||sports,american football,nfl": [ + -0.011513748206198215, + -0.06791245192289352, + -0.03249965235590935, + -0.037583474069833755, + 0.07532873749732971, + 0.027016595005989075, + 0.05649491399526596, + -0.03100665472447872, + 0.053791701793670654, + 0.03973810747265816, + -0.09801886230707169, + 0.012094566598534584, + 0.020175522193312645, + -0.03060195967555046, + -0.032712310552597046, + -0.012025811709463596, + 0.006283502094447613, + -0.033175233751535416, + 0.016429761424660683, + -0.012563543394207954, + 0.015418050810694695, + 0.06025448068976402, + 0.01584653928875923, + 0.06062473729252815, + 0.03400081396102905, + -0.012356786988675594, + 0.036689016968011856, + 0.04100719466805458, + -0.07676007598638535, + -0.05628271773457527, + -0.0419287383556366, + -0.010316220112144947, + 0.08801974356174469, + 0.00045554968528449535, + -0.0157054141163826, + 0.021196432411670685, + -0.019998950883746147, + -0.03689323365688324, + 0.005621189717203379, + 0.12010610103607178, + -0.03329196199774742, + -0.11470037698745728, + 0.00014600635040551424, + 0.08774281293153763, + -0.036507464945316315, + 0.027754101902246475, + -0.04412622004747391, + 0.007422180846333504, + 0.010464901104569435, + 0.04904618859291077, + 0.05143105238676071, + 0.0027039602864533663, + -0.06836384534835815, + 0.03928695619106293, + 0.11018859595060349, + 0.047455642372369766, + -0.03541480004787445, + 0.07156474143266678, + -0.046945761889219284, + 0.05081532523036003, + 0.011534598655998707, + -0.0011510535841807723, + 0.039215609431266785, + 0.0619109682738781, + 0.02095874212682247, + -0.009418576955795288, + -0.029242796823382378, + -0.0012363437563180923, + -0.0779571682214737, + 0.02939172461628914, + 0.009704409167170525, + 0.021611137315630913, + -0.03507503122091293, + -0.005804193206131458, + 0.013266627676784992, + 0.031199276447296143, + 0.047206535935401917, + 0.025291020050644875, + -0.024691442027688026, + -0.06648711115121841, + -0.030469903722405434, + -0.1152903214097023, + -0.0721779465675354, + -0.06673303991556168, + 0.002609856193885207, + 0.006705868057906628, + -0.07469002902507782, + -0.02405482903122902, + -0.023003501817584038, + 0.030150657519698143, + -0.12011903524398804, + -0.07157915085554123, + 0.019429843872785568, + 0.011304023675620556, + -8.364243694813922e-05, + 0.052919693291187286, + 0.01425667479634285, + -0.09921759366989136, + -0.07003980875015259, + 0.08845622092485428, + 0.03920784592628479, + 0.03740011155605316, + -0.0212497990578413, + 0.013475451618432999, + 0.018888909369707108, + 0.007763195782899857, + -0.02147931419312954, + 0.04260733723640442, + -0.03912792727351189, + 0.047609057277441025, + 0.07246537506580353, + 0.011935468763113022, + -0.05298273265361786, + 0.07286030054092407, + -0.10564437508583069, + -0.01643507555127144, + -0.03855390101671219, + -0.09948930144309998, + 0.09556131809949875, + 0.04273014888167381, + -0.023016266524791718, + 0.006714996416121721, + -0.03393798694014549, + 0.03147004917263985, + -0.005071417894214392, + -0.011665858328342438, + 0.031785182654857635, + -3.966653891629976e-33, + -0.0026599473785609007, + -0.026642153039574623, + 0.01529664546251297, + 0.08820289373397827, + -0.10553578287363052, + 0.05676602944731712, + 0.0258707944303751, + -0.02745576575398445, + -0.044604964554309845, + 0.015584842301905155, + 0.09091410040855408, + 0.11813123524188995, + -0.02400527521967888, + 0.0030119793955236673, + 0.06883903592824936, + -0.01196642778813839, + -0.08003036677837372, + -0.043408073484897614, + -0.05741501227021217, + 0.05689958110451698, + 0.022795522585511208, + 0.0821307972073555, + -0.0008478235104121268, + -0.0653807744383812, + -0.08549585193395615, + -0.08672238886356354, + -0.07539159059524536, + -0.056762006133794785, + -0.04554727301001549, + 0.024001218378543854, + 0.027162153273820877, + 0.005577487405389547, + -0.01990654319524765, + 0.03209821507334709, + 0.027964219450950623, + -0.06420641392469406, + 0.015598696656525135, + -0.013599265366792679, + -0.00327413622289896, + 0.05932961404323578, + -0.05718958005309105, + -0.025084272027015686, + -0.023242061957716942, + -0.03974422439932823, + 0.043796636164188385, + 0.11159054934978485, + -0.01583184115588665, + -0.06428848952054977, + 0.009126598946750164, + -0.061670027673244476, + 0.025446103885769844, + -0.035043928772211075, + 0.04050769656896591, + -0.09361526370048523, + 0.08398742973804474, + -0.04934914410114288, + 0.01773468405008316, + 0.01775565929710865, + -0.03175653889775276, + -0.007331139873713255, + -0.03653628006577492, + 0.03741299733519554, + 0.05427391454577446, + -0.06901320070028305, + -0.10564326494932175, + 0.02974582463502884, + 0.03924592211842537, + 0.07547464221715927, + 0.021452276036143303, + -0.026454227045178413, + 0.044988781213760376, + 0.06704316288232803, + 0.012958109378814697, + -0.003444798057898879, + -0.00971196312457323, + 0.10898365825414658, + 0.033643368631601334, + 0.019713491201400757, + 0.02225755900144577, + -0.09377846121788025, + -0.05487874895334244, + 0.006849479395896196, + -0.01739274524152279, + 0.02932337298989296, + 0.041159488260746, + 0.1184234544634819, + 0.013359825126826763, + -0.06719084084033966, + 0.0032778626773506403, + 0.02889420837163925, + -0.12056315690279007, + -0.0008862057002261281, + -0.023612793534994125, + -0.06541311740875244, + -0.05198675021529198, + -9.864409719119814e-34, + 0.014735937118530273, + -0.04465203732252121, + -0.002909485949203372, + -0.04839711636304855, + 0.007414776366204023, + -0.019871210679411888, + -0.026376688852906227, + 0.07619176805019379, + 0.06402981281280518, + 0.042559508234262466, + -0.0035364774521440268, + -0.016527503728866577, + -0.08620383590459824, + -0.04726560041308403, + -0.049427248537540436, + -0.07984277606010437, + 0.04160298779606819, + -0.00010153972107218578, + -0.0969812199473381, + 0.03130119666457176, + 0.027460463345050812, + -0.05481627210974693, + -0.05634446069598198, + 0.012305707670748234, + -0.03914497420191765, + -0.009708590805530548, + -0.0544893778860569, + 0.054080985486507416, + -0.057743776589632034, + -0.007503185421228409, + 0.013394099660217762, + -0.024248315021395683, + 0.08340135961771011, + 0.04178091511130333, + -0.05242346599698067, + 0.09574460983276367, + 0.056821059435606, + -0.007749283220618963, + 0.06389455497264862, + -0.09791574627161026, + 0.007595183327794075, + 0.0005697060842067003, + -0.010166283696889877, + 0.018648460507392883, + 0.030382564291357994, + 0.04409864544868469, + -0.09515874087810516, + -0.02779313735663891, + -0.07483498752117157, + 0.081255242228508, + -0.05337446928024292, + -0.0355001725256443, + -0.051644131541252136, + 0.03194564953446388, + -0.09257463365793228, + 0.022958915680646896, + 0.0022543584927916527, + -0.06388083100318909, + -0.014732223935425282, + 0.03845248371362686, + 0.030078556388616562, + 0.12179544568061829, + -0.11078978329896927, + 0.05226021260023117, + 0.015146247111260891, + -0.009158668108284473, + -0.002308555878698826, + -0.00792208407074213, + -0.032306019216775894, + 0.05095549300312996, + -0.0919971689581871, + -0.022388504818081856, + -0.05704054236412048, + 0.005494631826877594, + 0.019032176584005356, + 0.04285674914717674, + 0.027510877698659897, + 0.0716092437505722, + 0.038389772176742554, + 0.0978274866938591, + 0.015569441951811314, + -0.018086643889546394, + -0.08050639927387238, + 0.10224351286888123, + -0.02333916909992695, + 0.10594084858894348, + -0.0009605077211745083, + 0.04450826346874237, + 0.019183918833732605, + -0.03418639674782753, + -0.025546230375766754, + 0.02777888998389244, + -0.02092405967414379, + -0.09325551241636276, + -0.014079083688557148, + -1.9893800384807037e-08, + -0.022122396156191826, + 0.046141479164361954, + -0.08645501732826233, + 0.027805151417851448, + 0.0034566011745482683, + -0.0013260164996609092, + -0.0027391905896365643, + -0.10256314277648926, + 0.01813962124288082, + -0.05692678689956665, + -0.06889186054468155, + -0.005916310474276543, + -0.025948569178581238, + -0.030499232932925224, + 0.05199190601706505, + 0.001435953308828175, + -0.11463716626167297, + 0.05750992149114609, + 0.004788226913660765, + 0.015625901520252228, + -0.005138599779456854, + -0.0040123662911355495, + 0.012106219306588173, + -0.04163592308759689, + 0.03833301365375519, + -0.018376454710960388, + -0.052284300327301025, + -0.04520687460899353, + 0.02579626254737377, + 0.025983838364481926, + 0.02688661217689514, + 0.029606811702251434, + -0.07267023622989655, + 0.020096881315112114, + -0.06093595176935196, + -0.04378613084554672, + 0.046755772083997726, + -0.08181659132242203, + -0.015890544280409813, + -0.015181932598352432, + 0.04213050752878189, + -0.026008566841483116, + -0.005051475018262863, + -0.04043891280889511, + 0.03888149932026863, + 0.0010311600053682923, + 0.08253977447748184, + -0.02619428187608719, + -0.06467378884553909, + -0.07561925053596497, + 0.02804489992558956, + -0.019545255228877068, + 0.050152793526649475, + 0.015890808776021004, + -0.00048589962534606457, + 0.028698941692709923, + 0.02435208670794964, + 0.00366217945702374, + -0.01823412999510765, + -0.05423346161842346, + 0.13756540417671204, + 0.012208065949380398, + 0.112135149538517, + 0.055888257920742035 + ], + "football-helmet-bold||*new*,sports,american football,nfl": [ + -0.005606813356280327, + 0.030029671266674995, + -0.034158509224653244, + -0.08279217034578323, + 0.0878528282046318, + 0.02707481011748314, + 0.10152576863765717, + -0.033026568591594696, + 0.054701559245586395, + 0.055584777146577835, + -0.035468485206365585, + -0.029135452583432198, + 0.037656400352716446, + -0.007966196164488792, + 0.009415222331881523, + -0.011919688433408737, + 0.0019494174048304558, + -0.001981910318136215, + 0.026701364666223526, + -0.03422154486179352, + -0.015367464162409306, + 0.07093752920627594, + -0.044492609798908234, + 0.04450879245996475, + -0.028188714757561684, + 0.02572408691048622, + 0.00615603756159544, + 0.005849884822964668, + -0.0769132673740387, + -0.06937570869922638, + -0.04048771411180496, + -0.03878267854452133, + 0.07819154858589172, + -0.001822932972572744, + -0.05457927659153938, + 0.0005947576137259603, + 0.008954168297350407, + 0.02870238944888115, + 0.0186909306794405, + 0.10981430858373642, + -0.0764165073633194, + -0.08745741844177246, + -0.0551227405667305, + 0.0752573236823082, + -0.011758995242416859, + 0.08144044876098633, + -0.03229803219437599, + 0.011077567003667355, + 0.036593928933143616, + 0.0430629588663578, + 0.05959542840719223, + -0.034925613552331924, + -0.05022360384464264, + -0.010303966701030731, + 0.13511814177036285, + 0.0381508395075798, + -0.07156932353973389, + 0.0408155620098114, + -0.038226209580898285, + 0.0773211270570755, + 0.002889948431402445, + 0.004246704746037722, + 0.05481930077075958, + 0.08491890132427216, + -0.02840266562998295, + -0.06357405334711075, + -0.03946259245276451, + -0.02973156049847603, + -0.06258542090654373, + 0.0652238130569458, + 0.019568832591176033, + 0.02715834230184555, + -0.016990764066576958, + -0.060725562274456024, + -0.010566887445747852, + -0.03926708176732063, + 0.05751127377152443, + 0.013823358342051506, + -0.007799809332937002, + -0.02524968609213829, + -0.057474687695503235, + -0.07269918918609619, + -0.05792633071541786, + -0.04589729756116867, + 0.02754843607544899, + 0.06457458436489105, + -0.11334631592035294, + -0.02532004378736019, + -0.08320805430412292, + 0.04170122370123863, + -0.10117048025131226, + -0.0635673776268959, + 0.04199725762009621, + 0.011984603479504585, + 0.03152237460017204, + 0.028969578444957733, + 0.011345107108354568, + -0.06733188033103943, + -0.02254687249660492, + 0.12651780247688293, + 0.009202125482261181, + -0.015302645973861217, + -0.025127770379185677, + 0.020778849720954895, + 0.02638549730181694, + -0.006050077732652426, + -0.06315941363573074, + 0.04370151460170746, + -0.01974414847791195, + 0.0644846111536026, + 0.08631286770105362, + -0.017612237483263016, + -0.08119117468595505, + 0.024199306964874268, + -0.11285044252872467, + 0.005570050794631243, + -0.08516433835029602, + -0.07097656279802322, + 0.08627285808324814, + 0.08331616222858429, + 0.02791169099509716, + -0.0008832287276163697, + -0.06820876896381378, + -0.03265533596277237, + -0.03269776329398155, + -0.018667958676815033, + 0.0018323507392778993, + -5.555826010341735e-33, + -0.021598249673843384, + 0.017077801749110222, + 0.04467547684907913, + 0.0899488553404808, + -0.06596074253320694, + 0.048960376530885696, + 0.03943232074379921, + -0.01153002679347992, + -0.03862376883625984, + 0.023316022008657455, + 0.08759517967700958, + 0.08668211847543716, + -0.05099165812134743, + 0.03549248352646828, + 0.05875055119395256, + -0.0602765716612339, + -0.0797743871808052, + -0.044597409665584564, + -0.08318284153938293, + 0.010414103046059608, + -0.011494049802422523, + 0.08359979838132858, + -0.009828316979110241, + 0.006450030952692032, + -0.0928606167435646, + -0.023149460554122925, + -0.016572147607803345, + -0.09717459976673126, + -0.02790619619190693, + 0.04404756799340248, + -0.022512279450893402, + -0.018021229654550552, + -0.003868244821205735, + 0.02163843624293804, + 0.023994218558073044, + -0.0018815930234268308, + 0.006163081154227257, + -0.05498366802930832, + -0.03936012089252472, + 0.02231317199766636, + -0.04618057608604431, + -0.0017201314913108945, + -0.08587997406721115, + -0.0023222167510539293, + 0.008182017132639885, + 0.05662872642278671, + 0.0006416881224140525, + -0.008695387281477451, + -0.004130416549742222, + -0.060232046991586685, + 0.05971559137105942, + -0.0232844278216362, + 0.020114479586482048, + -0.11426469683647156, + 0.002570711774751544, + -0.051088906824588776, + -0.03132687509059906, + 0.04921751469373703, + -0.007067787926644087, + -0.04148618131875992, + 0.011935753747820854, + 0.02242990769445896, + 0.03240985795855522, + -0.029513578861951828, + -0.042537130415439606, + 0.02640151046216488, + 0.054954592138528824, + 0.06572889536619186, + 0.014580843038856983, + -0.02400759793817997, + 0.06462769210338593, + 0.0993095263838768, + 0.009393585845828056, + 0.028056329116225243, + -0.006913674995303154, + 0.09759905189275742, + 0.010330737568438053, + 0.03084537759423256, + 0.027800334617495537, + -0.06201392784714699, + -0.05444717034697533, + 0.07765111327171326, + -0.03275171294808388, + 0.008148121647536755, + 0.05162129923701286, + 0.032556742429733276, + 0.026319170370697975, + -0.03544199466705322, + -0.06711272895336151, + -0.012949390336871147, + -0.059280648827552795, + 0.01527121290564537, + -0.0443769134581089, + -0.04617840796709061, + -0.09833859652280807, + -1.170023710316156e-34, + -0.024618854746222496, + -0.04579215124249458, + 0.045585837215185165, + -0.019359350204467773, + 0.015515605919063091, + -0.02782297506928444, + 0.044970013201236725, + 0.08282146602869034, + 0.018412459641695023, + 0.038669317960739136, + 0.019805721938610077, + -0.029647191986441612, + -0.09157098829746246, + -0.028835905715823174, + 0.025208428502082825, + -0.08801963180303574, + -0.015676189213991165, + 0.01606396585702896, + -0.07715553790330887, + 0.06116385757923126, + 0.05683278664946556, + -0.04970116168260574, + -0.047890547662973404, + -0.007529110182076693, + -0.09572096168994904, + -0.012153004296123981, + -0.07694807648658752, + 0.02946397475898266, + -0.06377044320106506, + 0.022104954347014427, + -0.03854312747716904, + -0.039684660732746124, + 0.03985712677240372, + 0.09273188561201096, + -0.015185794793069363, + 0.06766686588525772, + 0.022585855796933174, + -0.025357427075505257, + 0.0075135985389351845, + -0.030268976464867592, + -0.025671035051345825, + -0.04601604491472244, + 0.07020138204097748, + 0.054518040269613266, + 0.031915318220853806, + -0.009628083556890488, + -0.10237298160791397, + -0.023177333176136017, + -0.05382101982831955, + 0.09786799550056458, + -0.021389102563261986, + -0.01893463358283043, + -0.07595121115446091, + -0.0052125947549939156, + -0.10977344214916229, + 0.06470965594053268, + -0.09903824329376221, + -0.024517415091395378, + 0.02359135076403618, + 0.023202085867524147, + 0.04508238658308983, + 0.036925509572029114, + -0.08918328583240509, + 0.09596453607082367, + 0.007147706113755703, + -0.011404648423194885, + -0.023310242220759392, + 0.018801206722855568, + -0.07403863966464996, + 0.060821644961833954, + -0.038927361369132996, + -0.003636065637692809, + -0.060348544269800186, + -0.05648825690150261, + -0.006831477861851454, + -0.018968787044286728, + 0.05045352131128311, + 0.08258698135614395, + 0.037466149777173996, + 0.12076692283153534, + 0.0030946789775043726, + -0.009553617797791958, + -0.06501617282629013, + 0.09259182214736938, + 0.05410003289580345, + 0.036518827080726624, + -0.022606974467635155, + 0.01782933622598648, + -0.013466660864651203, + -0.005085125099867582, + -0.041659966111183167, + 0.06648711115121841, + -0.05898265540599823, + -0.008289586752653122, + -0.030701428651809692, + -2.271807275633364e-08, + 0.005208004266023636, + 0.048217762261629105, + -0.0571897067129612, + -0.015978101640939713, + 0.015981623902916908, + -0.015919679775834084, + -0.06365864723920822, + -0.134525865316391, + -0.026125038042664528, + -0.08751919865608215, + -0.022854028269648552, + -0.014741265214979649, + -0.015606116503477097, + -0.03345679119229317, + 0.007660445757210255, + 0.03899556025862694, + -0.09456511586904526, + 0.08283351361751556, + -0.004361058119684458, + -0.0468263179063797, + -0.0358172282576561, + 0.04248347505927086, + 0.021810956299304962, + -0.016603145748376846, + 0.006129068322479725, + -0.02597738243639469, + -0.05512801557779312, + -0.04366388916969299, + 0.024309810250997543, + 0.06244616582989693, + 0.021218666806817055, + 0.06018398702144623, + -0.09056048840284348, + -0.03700212389230728, + -0.037473756819963455, + -0.07970447838306427, + -0.012243200093507767, + -0.05629276856780052, + 0.021693015471100807, + 0.003938355017453432, + 0.06635086238384247, + -0.005697076208889484, + 0.023297123610973358, + 0.013983746990561485, + 0.032101504504680634, + 0.02480100654065609, + 0.07182914018630981, + -0.015530179254710674, + -0.10833627730607986, + -0.06742959469556808, + 0.07332489639520645, + -0.0291042048484087, + 0.012008258141577244, + 0.039213627576828, + -0.02750578708946705, + 0.06567338854074478, + 0.054706376045942307, + 0.00695023825392127, + -0.013738881796598434, + -0.04990909621119499, + 0.03861640766263008, + 0.02352065034210682, + 0.11920738965272903, + 0.06678924709558487 + ], + "footprints-bold||path,trail,walk,route,hike,hiking": [ + -0.003196777543053031, + -0.02028566040098667, + 0.038027673959732056, + 0.054481010884046555, + 0.08868907392024994, + -0.000643016304820776, + 0.04439208656549454, + -0.0324401780962944, + -0.027058426290750504, + 0.006352864671498537, + 0.04519287124276161, + 0.021503737196326256, + 0.03610343858599663, + 0.016867617145180702, + 0.007699249777942896, + 0.08426433801651001, + -0.03791806474328041, + 0.12380034476518631, + 0.028775159269571304, + -0.003968450706452131, + 0.057907331734895706, + 0.06210935488343239, + 0.01874653249979019, + 0.07138342410326004, + -0.005551957059651613, + 0.020424047484993935, + 0.07005902379751205, + -0.019812485203146935, + 0.02276493050158024, + -0.04080750420689583, + 0.012864242307841778, + 0.04633870720863342, + 0.07568798959255219, + 0.018687237054109573, + 0.06752492487430573, + -0.006744244135916233, + 0.018552983179688454, + 0.0178390983492136, + 0.017296258360147476, + 0.06427468359470367, + 0.01801193878054619, + -0.059705428779125214, + -0.0031885758507996798, + -0.005556859541684389, + 0.0005072873318567872, + -0.07114113867282867, + -0.04994885250926018, + 0.002236804226413369, + -0.0056293257512152195, + 0.04270346462726593, + -0.03669695556163788, + -0.12981706857681274, + -0.15730401873588562, + 0.00741787813603878, + 0.0033177488949149847, + 0.00903226900845766, + -0.04157758876681328, + -0.015574718825519085, + 0.011423193849623203, + -0.040509484708309174, + 0.09822647273540497, + -0.010666878893971443, + -0.029077546671032906, + 0.030612261965870857, + 0.06025584042072296, + -0.039210811257362366, + -0.05797741562128067, + -0.03880339860916138, + -0.00569955725222826, + 0.0489049106836319, + 0.017246520146727562, + -0.0017186218174174428, + 0.017155740410089493, + -0.013619326055049896, + -0.08329866826534271, + 0.0334358885884285, + -0.005904104094952345, + 0.038625333458185196, + -0.05837840586900711, + -0.12251453846693039, + -0.10332304984331131, + -0.0171285979449749, + 0.020086895674467087, + 0.03710842505097389, + 0.0781770572066307, + 0.055987097322940826, + -0.08481527119874954, + -0.04787358641624451, + -0.0542108453810215, + -0.04929905757308006, + -0.04452064633369446, + -0.015970280393958092, + -0.004607218783348799, + -0.02176586724817753, + -0.1252443790435791, + 0.008290321566164494, + 0.06462127715349197, + -0.00886830035597086, + -0.023082144558429718, + 0.03265361115336418, + 0.029373297467827797, + 0.008036807179450989, + 0.032015882432460785, + 0.0485588014125824, + -0.01913454383611679, + -0.030632462352514267, + -0.05789385363459587, + -0.04293716698884964, + 0.03979943320155144, + 0.07081913948059082, + -0.0038397128228098154, + -0.13798825442790985, + -0.014631315134465694, + 0.014033648185431957, + -0.03289922699332237, + -0.06767696887254715, + -0.10258610546588898, + 0.032764747738838196, + 0.10108543932437897, + 0.11738748848438263, + -0.05034295469522476, + -0.01574893854558468, + 0.05522137135267258, + -0.059593576937913895, + -0.05613258108496666, + -0.03908180445432663, + 0.05389842391014099, + -2.3953788580804786e-33, + 0.05619015917181969, + 0.07094588875770569, + -0.012414651922881603, + 0.05681458115577698, + 0.05052030831575394, + -0.012439406476914883, + -0.08517372608184814, + -0.054300565272569656, + -0.1120230108499527, + 0.05956048518419266, + 0.04881918802857399, + 0.07170802354812622, + 0.011160217225551605, + 0.09805791079998016, + 0.04018852487206459, + -0.033420514315366745, + -0.027158042415976524, + -0.0073382961563766, + -0.08122582733631134, + -0.00957085657864809, + 0.005997831467539072, + 0.021291451528668404, + -0.024381516501307487, + -0.020056458190083504, + 0.059642039239406586, + -0.10093915462493896, + 0.005957136396318674, + -0.04569169506430626, + -0.052206769585609436, + 0.02995366044342518, + 0.023477351292967796, + 0.04282544553279877, + 0.06068326532840729, + -0.022408708930015564, + -0.007212331984192133, + 0.007627906743437052, + 0.010916129685938358, + -0.03273923695087433, + -0.022345654666423798, + -0.0008749691187404096, + -0.015599306672811508, + -0.03762276470661163, + 0.04820986092090607, + -0.022669047117233276, + 0.017719540745019913, + 0.16431692242622375, + 0.06447882205247879, + -0.0288358386605978, + -0.020479993894696236, + -0.0042932406067848206, + -0.026071671396493912, + -0.01837529055774212, + 0.03361206874251366, + -0.03414640203118324, + -0.01819980889558792, + -0.07860423624515533, + -0.014570802450180054, + 0.06399568915367126, + -0.004162916447967291, + 0.024565167725086212, + 0.03818802163004875, + 0.05680777132511139, + 0.02692766673862934, + -0.031450074166059494, + -0.047840509563684464, + -0.05979399383068085, + -0.08364861458539963, + 0.01369490660727024, + 0.07482793182134628, + 0.07998079806566238, + 0.01666382886469364, + 0.09316946566104889, + 0.10108920186758041, + 0.004719334654510021, + 0.02460966445505619, + -0.03403026983141899, + -0.023235203698277473, + -0.011888088658452034, + -0.09862448275089264, + -0.090616375207901, + -0.20380379259586334, + -0.021969376131892204, + -0.04762434959411621, + 0.05200200900435448, + 0.039695799350738525, + -0.017704280093312263, + -0.012228135950863361, + -0.08322243392467499, + -0.03328019753098488, + -0.014901156537234783, + -0.07796680182218552, + 0.020120803266763687, + -0.01986677572131157, + -0.04770937189459801, + -0.09062863886356354, + -1.410907642766716e-34, + 0.06959269195795059, + 0.10211934894323349, + 0.09339266270399094, + -0.037517447024583817, + -0.019806548953056335, + 0.01630203053355217, + 0.005357089452445507, + 0.003143112640827894, + 0.051593899726867676, + 0.04872908815741539, + -0.08126451075077057, + 0.006818309426307678, + -0.0009522437467239797, + -0.04053092375397682, + 0.028058573603630066, + 0.005387436132878065, + 0.05431318283081055, + 0.040781889110803604, + -0.028424687683582306, + -0.0001622379495529458, + -0.06255200505256653, + -0.04552873969078064, + -0.10146531462669373, + 0.022423263639211655, + -0.019017109647393227, + 0.025607794523239136, + 0.09124837815761566, + -0.027979174628853798, + -0.0838540717959404, + -0.014068370684981346, + 0.03718120604753494, + -0.026911789551377296, + 0.01712576299905777, + -0.010817460715770721, + -0.10147307068109512, + 0.0594944953918457, + -0.07079688459634781, + -0.03255607932806015, + 0.03243929520249367, + -0.005061941221356392, + 0.022278476506471634, + -0.022554920986294746, + 0.04334793612360954, + 0.03468707576394081, + 0.008038541302084923, + -0.061131156980991364, + -0.030369959771633148, + 0.016993649303913116, + -0.09956135600805283, + 0.0019584924448281527, + 0.05058511346578598, + -0.0022650202736258507, + -0.02052539773285389, + 0.058475714176893234, + 0.0023163692094385624, + -0.019653551280498505, + -0.0554535873234272, + 0.009428538382053375, + -0.021541113033890724, + -0.005445301532745361, + -0.01437316183000803, + 0.06726442277431488, + -0.02711225301027298, + 0.05328450724482536, + 0.006800673436373472, + -0.06023288890719414, + -0.026917072013020515, + -0.036719609051942825, + -0.03985465690493584, + 0.00536201661452651, + -0.046224966645240784, + 0.0008275320869870484, + -0.03267444670200348, + 0.041842058300971985, + 0.042098820209503174, + -0.040093909949064255, + 0.03810063749551773, + 0.0036791737657040358, + -0.027370229363441467, + -0.02008151449263096, + -0.04272060841321945, + -0.06053275242447853, + -0.05025152489542961, + 0.023806411772966385, + 0.017191631719470024, + 0.07834360748529434, + -0.04494510218501091, + 0.013415446504950523, + 0.04352369159460068, + 0.03992154449224472, + 0.004801653791218996, + 0.08236747235059738, + -0.055407166481018066, + 0.0016795690171420574, + -0.07963121682405472, + -1.9295521624940193e-08, + -0.0312705859541893, + 0.049682460725307465, + -0.03725745528936386, + -0.017203129827976227, + 0.029692869633436203, + -0.00960197951644659, + 0.051949482411146164, + 0.04431749880313873, + -0.012155788950622082, + 0.07296769320964813, + 0.048626869916915894, + -0.004423594102263451, + -0.10388678312301636, + 0.056656256318092346, + 0.06866395473480225, + 0.018195314332842827, + -0.030643459409475327, + 0.05219322070479393, + -0.05052242428064346, + -0.01458605658262968, + -0.048653051257133484, + 0.016815582290291786, + 0.033380866050720215, + 0.05724291130900383, + 0.007460552733391523, + -0.019246701151132584, + -0.052906934171915054, + -0.020818736404180527, + 0.0663461983203888, + 0.0700143352150917, + 0.059640608727931976, + 0.08337783068418503, + -0.002907824469730258, + 0.02477145940065384, + -0.04623093083500862, + -0.020802760496735573, + 0.0081441355869174, + -0.001091139973141253, + 0.0224625077098608, + 0.13483403623104095, + 0.011404778808355331, + -0.03291657194495201, + 0.015756793320178986, + -0.012064633890986443, + -0.06695987284183502, + -0.012337529100477695, + 0.05116105079650879, + -0.017052726820111275, + -0.06988973915576935, + -0.1077880859375, + -0.058643512427806854, + -0.03537881001830101, + 0.006106607150286436, + 0.04136711731553078, + 0.04205023869872093, + -0.06429751217365265, + 0.0065553635358810425, + 0.029197007417678833, + 0.003712080419063568, + 0.04801477864384651, + 0.12390848249197006, + -0.04343217611312866, + -0.011553557589650154, + -0.012747613713145256 + ], + "fork-knife-bold||food,meal,eating,restaurants,dining,utensils": [ + 0.03264997527003288, + -0.00292577943764627, + -0.01450326293706894, + 0.02941059321165085, + -0.06076664850115776, + -0.03645596653223038, + 0.09980805218219757, + -0.052274156361818314, + -0.02275356836616993, + 0.002498076530173421, + 0.09548749029636383, + -0.08387194573879242, + 0.012511258013546467, + -0.028379788622260094, + 0.01452628057450056, + -0.07865942269563675, + 0.0870959535241127, + 0.003227712120860815, + 0.03615012392401695, + 0.014068628661334515, + 0.006477860733866692, + 0.08357953280210495, + 0.04430032894015312, + 0.02890237234532833, + 0.08974365144968033, + 0.04228413105010986, + 0.025132309645414352, + 0.0018384138820692897, + -0.03242289647459984, + -0.0477127768099308, + 0.015025616623461246, + 0.007359836716204882, + 0.03945934399962425, + -0.0042543476447463036, + 0.008589326404035091, + 0.004454072564840317, + 0.02446528896689415, + -0.03354508429765701, + 0.03523823246359825, + 0.006642621476203203, + -0.032143112272024155, + -0.0192134790122509, + -0.0025523342192173004, + 0.00046540185576304793, + 0.049770113080739975, + 0.01587822660803795, + -0.1081274002790451, + -0.03144602105021477, + 0.004214183893054724, + 0.0033946854528039694, + -0.06437855213880539, + -0.05443020537495613, + -0.06272771954536438, + -0.03928640857338905, + 0.0668540820479393, + -0.003927335608750582, + -0.06393564492464066, + 0.0036840017419308424, + 0.021670052781701088, + 0.08920259773731232, + 0.06610514968633652, + 0.00493638776242733, + 0.03612636774778366, + 0.04040704295039177, + 0.017043452709913254, + -0.011460809968411922, + -0.017033694311976433, + 0.002828827826306224, + -0.11493826657533646, + 0.014648980461061, + -0.012640601024031639, + -0.04204534366726875, + 0.023036636412143707, + -0.06494221091270447, + -0.004505360499024391, + -0.08830345422029495, + 0.04455959051847458, + -0.04993128776550293, + -0.10289394855499268, + -0.040636077523231506, + -0.16924771666526794, + 0.027653833851218224, + -0.021660463884472847, + -0.016019076108932495, + -0.030781202018260956, + 0.04484788328409195, + -0.06951793283224106, + -0.04520900547504425, + -0.048006705939769745, + 0.03388460353016853, + -0.07997533679008484, + -0.01384858600795269, + 0.013860618695616722, + -0.024089964106678963, + -0.003185185370966792, + 0.023668982088565826, + -0.010964199900627136, + -0.006664312910288572, + -0.014648592099547386, + 0.07574168592691422, + -0.025660261511802673, + 0.018759358674287796, + -0.005139954853802919, + 0.018295234069228172, + -0.02368658035993576, + 0.014746207743883133, + -0.053165778517723083, + -0.05967557430267334, + 0.003232142888009548, + -0.050744082778692245, + -0.004959268029779196, + 0.05319049954414368, + -0.07170086354017258, + -0.06308336555957794, + -0.06440760940313339, + -0.11682159453630447, + -0.019071858376264572, + -0.07400460541248322, + 0.13497325778007507, + 0.07273475080728531, + -0.0005060614203102887, + 0.04581482708454132, + -0.06958601623773575, + -0.02019038051366806, + -0.07231384515762329, + 0.00651678629219532, + 0.06523650884628296, + -2.4515371823360518e-33, + -0.022867240011692047, + -0.006475355010479689, + 0.03589172661304474, + -0.007829075679183006, + 0.08068196475505829, + -0.04967203363776207, + -0.02427196130156517, + 0.0028945801313966513, + -0.032958902418613434, + 0.050401218235492706, + 0.054762594401836395, + -0.04633348062634468, + -0.03550007939338684, + 0.12342007458209991, + 0.07207939028739929, + -0.05907641723752022, + 0.03346896544098854, + 0.025935523211956024, + -0.016549116000533104, + 0.0012146601220592856, + -0.055544108152389526, + 0.028273815289139748, + 0.011563834734261036, + 0.01630375348031521, + 0.0011534902732819319, + -0.01008540764451027, + 0.018071936443448067, + -0.009009300731122494, + 0.01474307756870985, + 0.02736770175397396, + 0.01881263218820095, + 0.014276969246566296, + 0.0488751195371151, + -0.05691494420170784, + -0.07279801368713379, + 0.013119076378643513, + -0.00042262484203092754, + -0.036206476390361786, + -0.05056125670671463, + -0.06313718110322952, + -0.037193454802036285, + -0.01522030495107174, + -0.03294680640101433, + 0.06005429849028587, + -0.027362925931811333, + 0.0696038007736206, + -0.021072130650281906, + 0.06816331297159195, + -0.013962425291538239, + 0.032948706299066544, + -0.0010569414589554071, + -0.037260983139276505, + 0.08685217052698135, + 0.026354728266596794, + -0.061054181307554245, + 0.008191258646547794, + -0.03148908168077469, + 0.07435555011034012, + -0.04435958340764046, + 0.0037005054764449596, + 0.043949373066425323, + 0.03857247158885002, + 0.021621359512209892, + 0.015793006867170334, + -0.021320004016160965, + 0.08291083574295044, + 0.015973547473549843, + -0.0028058162424713373, + 0.09809104353189468, + -0.009880369529128075, + -0.08383471518754959, + 0.05614412575960159, + 0.05034986510872841, + 0.0690905898809433, + 0.02547025866806507, + 0.013264857232570648, + -0.03730315342545509, + -0.049675941467285156, + -0.009674985893070698, + -0.038389500230550766, + -0.024726897478103638, + 0.06916113942861557, + -0.024389898404479027, + 0.0332951694726944, + -0.03237610682845116, + 0.07966730743646622, + 0.0015494589461013675, + -0.13008859753608704, + 0.0649949386715889, + 0.08423759043216705, + -0.13865995407104492, + -0.030082909390330315, + 0.014774485491216183, + -0.014735812321305275, + -0.10763593763113022, + -1.069602398827984e-34, + 0.044625572860240936, + 0.013069395907223225, + -0.069251149892807, + 0.0009802223648875952, + -0.027055932208895683, + -0.04965538904070854, + -0.04538508132100105, + -0.06582284718751907, + -0.06663532555103302, + -0.05829394981265068, + -0.07757411152124405, + -0.028175631538033485, + -0.02442297898232937, + -0.046202320605516434, + -0.0043500191532075405, + 0.039072614163160324, + 0.03741591051220894, + 0.07031496614217758, + 0.055002205073833466, + -0.008746879175305367, + -0.05022624135017395, + -0.013880295678973198, + 0.020399270579218864, + -0.0003151848213747144, + -0.03889858350157738, + 0.055252816528081894, + -0.01585335284471512, + 0.035524167120456696, + -0.08464282751083374, + -0.026055676862597466, + -0.020305883139371872, + -0.08424098789691925, + 0.1265484243631363, + 0.00932010356336832, + -0.06492212414741516, + 0.10395108908414841, + -0.045340992510318756, + -0.07681957632303238, + 0.012903764843940735, + 0.019828062504529953, + 0.02966611087322235, + -0.040667057037353516, + 0.05436307191848755, + 0.11579418182373047, + -0.039052437990903854, + 0.014904608950018883, + -0.020777026191353798, + 0.013274441473186016, + -0.05562124401330948, + 0.03270160034298897, + 0.08091095089912415, + 0.04416407644748688, + -0.022271418944001198, + -0.060044463723897934, + -0.02205515280365944, + 0.015210201032459736, + -0.030736777931451797, + -0.08664485067129135, + 0.003368739504367113, + 0.014737691730260849, + 0.009816315956413746, + 0.045287035405635834, + 0.021132638677954674, + 0.1741587221622467, + 0.11434761434793472, + -0.08216553926467896, + 0.018424993380904198, + -0.06599591672420502, + 0.005868138745427132, + -0.0200398750603199, + 0.03130350261926651, + 0.01567649468779564, + 0.0605773851275444, + -0.017487643286585808, + -0.041272539645433426, + -0.012624363414943218, + 0.008101718500256538, + -0.034171849489212036, + -0.01991407386958599, + 0.09156251698732376, + -0.05490020662546158, + -0.060017094016075134, + -0.008236320689320564, + 0.0888194665312767, + -0.015282933600246906, + -0.018921686336398125, + -0.008543296717107296, + 0.036043472588062286, + -0.016484977677464485, + 0.053922202438116074, + -0.04710237681865692, + 0.028057077899575233, + 0.007596389856189489, + 0.02848389558494091, + 0.040204744786024094, + -2.2932560739263863e-08, + 0.122700996696949, + 0.0013023426290601492, + -0.08569376915693283, + 0.013716191053390503, + 0.010885997675359249, + -0.018751390278339386, + -0.012010614387691021, + -0.0927375927567482, + -0.07620052248239517, + 0.009879247285425663, + 0.010156296193599701, + 0.025280728936195374, + -0.09165892004966736, + -0.010652159340679646, + -0.011805182322859764, + 0.006639828905463219, + 0.03875047713518143, + 0.06473919004201889, + -0.024669412523508072, + -0.003014196641743183, + 0.011942202225327492, + 0.02541159652173519, + 0.042539454996585846, + -0.08111666142940521, + -0.03122573345899582, + 0.02228887751698494, + -0.05224423110485077, + 0.08289849013090134, + 0.059445515275001526, + 0.10828327387571335, + 0.05060857906937599, + 0.03728499636054039, + -0.01589689590036869, + 0.025362487882375717, + -0.012484042905271053, + -0.0456058494746685, + -0.156760111451149, + 0.0022477563470602036, + 0.03697093576192856, + 0.08238042891025543, + -0.04903658479452133, + -0.06847631931304932, + -0.03869552165269852, + 0.02387905865907669, + -0.06896714121103287, + 0.08767089247703552, + 0.00823094043880701, + 0.016807520762085915, + -0.007554511073976755, + -0.04166734218597412, + 0.0029340661130845547, + 0.017341148108243942, + 0.06027444452047348, + 0.019114980474114418, + -0.03439674898982048, + 0.07763481140136719, + 0.11633268743753433, + 0.006283266004174948, + 0.020620185881853104, + 0.002422938821837306, + 0.0678233802318573, + 0.031268201768398285, + -0.033376771956682205, + 0.013503472320735455 + ], + "four-k-bold||*new*,uhd,resolution,video": [ + 0.05619020015001297, + -0.04452921822667122, + 0.007298351265490055, + -0.07028617709875107, + 0.0021641955245286226, + 0.01116353739053011, + -0.01268906332552433, + -0.06597378849983215, + 0.03392685204744339, + 0.029976941645145416, + -0.023693492636084557, + 0.0030370443128049374, + -0.011469146236777306, + -0.009192423895001411, + -0.0678110271692276, + 0.05164690315723419, + 0.026791676878929138, + 0.0583859384059906, + -0.08663339912891388, + 0.003237632568925619, + 0.022289374843239784, + -0.11154426634311676, + 0.037635162472724915, + -0.005054914858192205, + 0.03261960297822952, + 0.03429216518998146, + 0.09336644411087036, + 0.01641436666250229, + 0.053384505212306976, + -0.07484187930822372, + 0.013424686156213284, + 0.04232395812869072, + 0.13603191077709198, + 0.021725023165345192, + 0.015196451917290688, + -0.04785006120800972, + 0.029908236116170883, + -0.03564983233809471, + -0.08883710205554962, + 0.052283842116594315, + 0.05042082071304321, + -0.019754761829972267, + 0.02635139599442482, + 0.024140026420354843, + -0.03594079986214638, + 0.023184018209576607, + -0.04257383197546005, + -0.04572129249572754, + 0.05229882523417473, + -0.08968546241521835, + -0.02973565272986889, + -0.06588996201753616, + -0.12257058918476105, + 0.026293564587831497, + -0.03354921564459801, + -0.008770529180765152, + -0.06670812517404556, + -0.03749001771211624, + 0.09958744049072266, + 0.030492287129163742, + 0.08977009356021881, + -0.0035645088646560907, + 0.06460066139698029, + 0.034028634428977966, + 0.07762089371681213, + 0.02066664583981037, + -0.013098517432808876, + -0.043030381202697754, + -0.035643771290779114, + 0.04885941743850708, + -0.044879551976919174, + 0.034972093999385834, + -0.023302750661969185, + -0.006314077880233526, + -0.03447413444519043, + -0.07325102388858795, + 0.014102412387728691, + -0.04697916656732559, + 0.013740469701588154, + -0.08737162500619888, + 0.05058061704039574, + -0.03174872323870659, + -0.05063408240675926, + -0.044790927320718765, + 0.013499964028596878, + 0.013736093416810036, + -0.05725778266787529, + -0.08279867470264435, + -0.05789946764707565, + -0.06272600591182709, + -0.1222524642944336, + -0.013518979772925377, + -0.07388786971569061, + -0.010485789738595486, + -0.1028810665011406, + -0.031316787004470825, + 0.07608795166015625, + -0.06925925612449646, + 0.02651282213628292, + 0.11795585602521896, + 0.052946850657463074, + -0.013543226756155491, + 0.020525388419628143, + -0.013030671514570713, + -0.051796797662973404, + -0.05436376482248306, + 0.08829689770936966, + 0.0728779286146164, + 0.0020722176413983107, + 0.013299401849508286, + 0.02311895228922367, + -0.04596521705389023, + -0.04763549566268921, + -0.012645401060581207, + 0.0458110086619854, + 0.021622661501169205, + -0.04565783962607384, + -0.02358417585492134, + 0.0487750805914402, + -0.019969794899225235, + -0.015188437886536121, + -0.08774542063474655, + -0.046444036066532135, + -0.06049824878573418, + 0.0034246777649968863, + -0.01411044504493475, + 0.021039964631199837, + -2.0223910108157128e-33, + 0.08426420390605927, + 0.08710765838623047, + -0.007774048019200563, + 0.0544019378721714, + 0.04601755738258362, + -0.014240654185414314, + -0.03917212411761284, + -0.06669209897518158, + -0.05192314088344574, + 0.018008336424827576, + 0.06119375303387642, + -0.0028265148866921663, + -0.03677280992269516, + 0.05532923713326454, + 0.005722688045352697, + -0.05652677267789841, + 0.01861831732094288, + 0.006960328668355942, + -0.035540539771318436, + 0.071392722427845, + 0.01591150462627411, + 0.09405037015676498, + 0.00953326653689146, + 0.03366100415587425, + -0.06677637994289398, + -0.05057579651474953, + 0.017775049433112144, + -0.03986180201172829, + 0.004101796541363001, + 0.03663947433233261, + -0.04493151977658272, + 0.028386740013957024, + 0.005022689234465361, + -0.017305545508861542, + -0.0163083728402853, + -0.003323410637676716, + -0.09841366112232208, + 0.0047121369279921055, + -0.01979719288647175, + 0.012119919061660767, + -0.0876804068684578, + 0.0002713717403821647, + -0.03960814327001572, + -0.047672711312770844, + -0.008550954051315784, + 0.11582710593938828, + 0.016960585489869118, + 0.007834858261048794, + 0.015728194266557693, + 0.031951650977134705, + 0.001443978981114924, + 0.008200486190617085, + -0.005726980976760387, + -0.06747687608003616, + 0.022959014400839806, + 0.0007765987538732588, + 0.050030991435050964, + -0.00991961732506752, + 0.05788213759660721, + -0.03837137669324875, + 0.019554151222109795, + -0.0029592649079859257, + -0.05950532481074333, + 0.051354892551898956, + -0.06490199267864227, + -0.00837534200400114, + 0.06188604608178139, + 0.022021261975169182, + 0.01923047937452793, + 0.03732486814260483, + -0.040972787886857986, + 0.06350331008434296, + 0.07407112419605255, + -0.05518084391951561, + 0.01673835702240467, + 0.029732409864664078, + 0.012081489898264408, + 0.006237747613340616, + 0.006246981676667929, + -0.018163826316595078, + -0.11539518088102341, + 0.01956244371831417, + -0.0023228300269693136, + 0.0004696410906035453, + -0.013712982647120953, + -0.01881067454814911, + -0.007118628825992346, + -0.07488609850406647, + -0.016856718808412552, + 0.0021257081534713507, + -0.14055100083351135, + 0.02338707074522972, + -0.07001891732215881, + -0.05286724865436554, + -0.03252195194363594, + -2.786831701215747e-34, + 0.10264565795660019, + 0.0906604751944542, + -0.03271608427166939, + 0.012200072407722473, + -0.04006422311067581, + 0.06195223703980446, + 0.05064176395535469, + 0.12651440501213074, + 0.04614248499274254, + -0.04632043465971947, + 0.1215679794549942, + -0.06568388640880585, + -0.06386584788560867, + -0.0435577817261219, + 0.0630330741405487, + 0.03909560665488243, + -0.005041580647230148, + -0.05664532259106636, + -0.031182438135147095, + 0.007936439476907253, + 0.022466711699962616, + -0.0346250906586647, + -0.0451628714799881, + 0.05745746195316315, + 0.01240562554448843, + 0.013717224821448326, + 0.060554325580596924, + 0.0344967357814312, + -0.060603756457567215, + -0.019638611003756523, + 0.01976984366774559, + -0.14014272391796112, + 0.006610038224607706, + 0.10609424859285355, + -0.07964873313903809, + 0.006793227046728134, + 0.10455116629600525, + -0.04059620946645737, + -0.07325495779514313, + -1.687233270786237e-05, + 0.01611006073653698, + 0.07341574877500534, + -0.01616843417286873, + 0.039256732910871506, + -0.02608337812125683, + -0.0209945198148489, + -0.013501917012035847, + 0.01321607269346714, + 0.028590450063347816, + -0.01572994887828827, + 0.06208932772278786, + -0.009898941032588482, + -0.03525194898247719, + -0.013607748784124851, + -0.06527838855981827, + -0.042134907096624374, + -0.05035412684082985, + 0.06389163434505463, + 0.011438094079494476, + 0.07256481796503067, + -0.02829061634838581, + -0.08946485817432404, + -0.042791225016117096, + -0.02071189507842064, + -0.006809030193835497, + -0.02491438388824463, + 0.016239067539572716, + -0.028377771377563477, + -0.007792359683662653, + 0.04885502904653549, + 0.06056288257241249, + -0.03957647830247879, + -0.029718177393078804, + 0.022335046902298927, + -0.013139967806637287, + -0.05643700808286667, + -0.02872060425579548, + -0.022825472056865692, + 0.0179761853069067, + 0.054994817823171616, + -0.056414347141981125, + -0.037377066910266876, + 0.0046902974136173725, + 0.07690537720918655, + 0.06830824911594391, + 0.1234460324048996, + 0.06541217118501663, + 0.049659281969070435, + 0.053839974105358124, + -0.014444045722484589, + -0.015995267778635025, + 0.10331415385007858, + -0.016936276108026505, + -0.0150262750685215, + -0.028206681832671165, + -2.2881792460793804e-08, + -0.04360894113779068, + -0.029172826558351517, + -0.09726319462060928, + -0.012685616500675678, + -0.019031234085559845, + -0.07797542959451675, + -0.05341939628124237, + -0.048055876046419144, + 0.027649344876408577, + -0.11234748363494873, + 0.09401864558458328, + -0.016818244010210037, + -0.09214351326227188, + 0.030654391273856163, + 0.039387691766023636, + -0.03179152309894562, + -0.07103531807661057, + 0.049818865954875946, + -0.01983034797012806, + -0.009133954532444477, + -0.025477947667241096, + 0.04650247469544411, + 0.08200027048587799, + -0.03812520205974579, + -0.01630883850157261, + 0.0740753710269928, + -0.0008255913271568716, + -0.00758527684956789, + 0.026530396193265915, + 0.017297716811299324, + 0.09397715330123901, + 0.04516683891415596, + -0.001967614982277155, + -0.07073047012090683, + -0.02719847299158573, + -0.021994227543473244, + -0.03767870366573334, + 0.05424933508038521, + 0.025912756100296974, + 0.08237404376268387, + -0.023163042962551117, + 0.02738855592906475, + -0.005387237295508385, + 0.017802631482481956, + 0.00412806635722518, + 0.06446047872304916, + 0.03138212114572525, + -0.08362475782632828, + -0.062151938676834106, + -0.07106522470712662, + -0.027828069403767586, + 0.03370321914553642, + -0.04820981249213219, + 0.057563088834285736, + 0.03562002629041672, + -0.025177471339702606, + 0.06778588891029358, + 0.06500571221113205, + -0.05840931832790375, + 0.014756403863430023, + 0.1399475336074829, + -0.001267139450646937, + 0.010936013422906399, + 0.05306943506002426 + ], + "frame-corners-bold||expand,fullscreen,maximized,resize,windowed,capture": [ + 0.029542692005634308, + 0.023435251787304878, + -0.058193426579236984, + -0.015572980046272278, + 0.12984365224838257, + 0.0004056470934301615, + 0.06925365328788757, + 0.03612446412444115, + -0.03993217647075653, + -0.04634279012680054, + -0.033197782933712006, + 0.0705198347568512, + -0.028888756409287453, + 0.02420395240187645, + 0.03473198413848877, + -0.027337532490491867, + 0.03316792845726013, + 0.07930805534124374, + -0.04350757598876953, + -0.033088140189647675, + -0.10909808427095413, + -0.10945843160152435, + 0.04592418298125267, + -0.029824957251548767, + -0.018333543092012405, + 0.05502493306994438, + -0.00273958221077919, + 0.025763660669326782, + 0.03279741853475571, + -0.05012626573443413, + 0.025552257895469666, + 0.001873199944384396, + 0.14369744062423706, + 0.027764085680246353, + 0.025558194145560265, + -0.014787225052714348, + -0.06176597252488136, + 0.0015003890730440617, + -0.09413208812475204, + -0.023737691342830658, + -0.037158191204071045, + 0.059725429862737656, + 0.03290795907378197, + 0.10622082650661469, + -0.055146511644124985, + -0.06536881625652313, + -0.07883626222610474, + 0.027114294469356537, + 0.055483318865299225, + -0.02098536677658558, + -0.03369339928030968, + -0.0739864632487297, + -0.08146035671234131, + -0.003290319349616766, + -0.01513143815100193, + -0.0433850958943367, + -0.045892491936683655, + -0.008956555277109146, + 0.089268758893013, + 0.005336566362529993, + -0.03612698242068291, + 0.02579084224998951, + 0.049574997276067734, + 0.06403764337301254, + 0.004297832027077675, + 0.030291175469756126, + -0.04343424364924431, + -0.003289060899987817, + -0.03092610277235508, + -0.01840827241539955, + -0.03466073423624039, + -0.027672160416841507, + -0.02995266579091549, + -0.11535394936800003, + 0.037129830569028854, + -0.11894262582063675, + -0.029568545520305634, + 0.039382122457027435, + -0.0752093493938446, + -0.009749005548655987, + -0.04985939338803291, + -0.040347062051296234, + -0.05482703819870949, + -0.0014854994369670749, + 0.02399427630007267, + 0.027440398931503296, + -0.02490486018359661, + -0.019009051844477654, + 0.029537826776504517, + 0.03670668974518776, + -0.09375156462192535, + 0.021345462650060654, + -0.06295860558748245, + 0.0228893980383873, + -0.07108770310878754, + -0.06667677313089371, + -0.02282859943807125, + -0.07919000834226608, + -0.056106194853782654, + 0.06419029831886292, + 0.05214102566242218, + -0.052968960255384445, + 0.08260945975780487, + 0.029060330241918564, + 0.02884085103869438, + 0.01912868022918701, + -0.03662196546792984, + 0.013549930416047573, + -0.0178331658244133, + -0.004391941707581282, + -0.003645728575065732, + 0.011223427020013332, + 0.05191969498991966, + 0.0061150286346673965, + 0.10246226191520691, + -0.033171605318784714, + -0.05109904706478119, + -2.5426221327506937e-05, + 0.11315158009529114, + -0.027645716443657875, + 0.08371690660715103, + 0.039098553359508514, + -0.0302722230553627, + -0.04895353317260742, + -0.006781619042158127, + 0.05512448400259018, + 0.027045458555221558, + -3.984789932753241e-34, + -0.00829247571527958, + 0.04834515228867531, + -0.016940277069807053, + 0.0920749232172966, + 0.034390877932310104, + 0.034644853323698044, + -0.009201961569488049, + 0.034116677939891815, + -0.018018485978245735, + 0.019033966585993767, + 0.03527693450450897, + -0.0029093842022120953, + -0.004456166177988052, + 0.004470759071409702, + 0.09751474112272263, + -0.07556679099798203, + -0.0358322337269783, + 0.12045636028051376, + -0.08324079215526581, + 0.11583496630191803, + -0.06409116834402084, + 0.03889178857207298, + -0.010828882455825806, + 0.06081956624984741, + -0.028884245082736015, + -0.02199145406484604, + 0.0230803694576025, + 0.07124146074056625, + -0.11094409227371216, + 0.011174658313393593, + -0.08291315287351608, + -0.0571766160428524, + 0.0366518497467041, + 0.010802612639963627, + -0.030362186953425407, + 0.018873708322644234, + -0.02346055395901203, + -0.030450329184532166, + 0.043138615787029266, + 0.06462801247835159, + -0.16981062293052673, + -0.03598116710782051, + -0.04048018530011177, + -0.049221985042095184, + -0.001304185134358704, + 0.0429069921374321, + 0.013688129372894764, + 0.05658671259880066, + -0.05417715758085251, + 0.02030981332063675, + 0.004358741920441389, + -0.04027886316180229, + -0.004600236192345619, + -0.0911630168557167, + -0.07949602603912354, + 0.005887455306947231, + 0.01058824174106121, + 0.07723183184862137, + 0.0371708981692791, + 0.02123899944126606, + 0.028944961726665497, + -0.020164888352155685, + -0.07385686784982681, + -0.029091674834489822, + -0.06457695364952087, + -0.008503752760589123, + 0.009062453173100948, + 0.010382967069745064, + -0.018166370689868927, + -0.013481708243489265, + -0.0008803720120340586, + 0.04968668892979622, + 0.0801616981625557, + 0.06824026256799698, + 0.04778822883963585, + 0.025721708312630653, + 0.05787980929017067, + 0.07874000817537308, + 0.036444272845983505, + -0.005671598017215729, + -0.14060278236865997, + 0.047630488872528076, + 0.01454050000756979, + -0.008089295588433743, + -0.017731770873069763, + -0.05004369840025902, + -0.04388439282774925, + -0.06046381965279579, + 0.02062114328145981, + 0.017221184447407722, + -0.08717424422502518, + -0.005500455386936665, + 0.0008731711423024535, + -0.021249210461974144, + -0.05811985209584236, + -9.517058829674631e-35, + 0.10346142947673798, + 0.014979556202888489, + -0.0714985653758049, + -0.05229806527495384, + -0.029325490817427635, + 0.06407338380813599, + -0.015778798609972, + 0.07499895989894867, + 0.02073107473552227, + -0.06241317465901375, + 0.014637229032814503, + 0.048584405332803726, + -0.011430800892412663, + -0.04734743759036064, + -0.07564589381217957, + 0.039182085543870926, + 0.08018873631954193, + 0.0038455543108284473, + -0.061350733041763306, + -0.021918736398220062, + 0.018415279686450958, + -0.03650716692209244, + -0.06451649218797684, + 0.061008017510175705, + 0.02286672219634056, + 0.04339151084423065, + 0.006908864714205265, + 0.05719706416130066, + 0.06833286583423615, + 0.030070379376411438, + 0.023891514167189598, + -0.03482017666101456, + -0.025553448125720024, + 0.043281856924295425, + 0.042348407208919525, + -0.016335254535079002, + 0.06891137361526489, + -0.03946887329220772, + -0.023797975853085518, + 0.050758957862854004, + -0.041674185544252396, + 0.03588488698005676, + 0.012167866341769695, + 0.05424022302031517, + 0.03935307636857033, + 0.08516993373632431, + 0.03708892688155174, + 0.012651538476347923, + -0.055362243205308914, + 0.03016606532037258, + -0.019332898780703545, + 0.021979203447699547, + 0.031620681285858154, + -0.035988207906484604, + -0.09452559798955917, + -0.05587916821241379, + 0.0296933576464653, + 0.02980954758822918, + 0.0009591400739736855, + 0.021563949063420296, + 0.05265859141945839, + 0.017008686438202858, + -0.12154939770698547, + -0.08970250189304352, + -0.0014311384875327349, + 0.008587386459112167, + 0.004556536208838224, + -0.02114996127784252, + -0.02105029672384262, + -0.013279067352414131, + 0.0421275869011879, + -0.0041509647853672504, + -0.035482008010149, + 0.031021133065223694, + -0.03195925056934357, + 0.03970884904265404, + 0.08731690794229507, + -0.04017248749732971, + 0.07504169642925262, + 0.006930570583790541, + -0.008861792273819447, + -0.009311556816101074, + 0.0572953000664711, + -0.016946913674473763, + 0.00467337341979146, + 0.06849216669797897, + -0.07659273594617844, + 0.04364295303821564, + 0.04790637269616127, + -0.054599579423666, + -0.06782619655132294, + 0.03324934467673302, + 0.0559651143848896, + 0.01842402294278145, + 0.021082451567053795, + -2.440462587571801e-08, + -0.10462677478790283, + 0.016854500398039818, + -0.053575705736875534, + -0.07137101888656616, + -0.04724583774805069, + -0.06511679291725159, + 0.012205312959849834, + -0.0073858886025846004, + 0.033901397138834, + -0.12479066103696823, + 0.013813874684274197, + -0.024310514330863953, + -0.04563437029719353, + 0.01042683981359005, + 0.003470841096714139, + 0.0878177285194397, + -0.01750676892697811, + 0.06589625030755997, + 0.0054527707397937775, + -0.02097886987030506, + 0.03403773158788681, + 0.0071107507683336735, + 0.028712142258882523, + -0.059957318007946014, + -0.06470388174057007, + -0.0747322142124176, + -0.06711574643850327, + 0.09813235700130463, + 0.10503063350915909, + -0.02331341803073883, + -0.02542189508676529, + 0.055001672357320786, + 0.04905161261558533, + -0.027153681963682175, + 0.002875854726880789, + -0.011666309088468552, + -0.04746586084365845, + 0.005919380113482475, + 0.008096737787127495, + 0.03427103906869888, + -0.0632949024438858, + -0.025427423417568207, + -0.021941281855106354, + -0.04243345186114311, + -0.02905300445854664, + 0.051992665976285934, + 0.07702051103115082, + -0.010382496751844883, + -0.08132700622081757, + -0.12872672080993652, + 0.03403845429420471, + -1.2112335753045045e-05, + 0.05482235550880432, + 0.07026521116495132, + 0.0038617325481027365, + -0.012063723057508469, + 0.02137107215821743, + 0.038894277065992355, + 0.050315920263528824, + -0.004984698724001646, + -0.010257400572299957, + 0.07228004932403564, + -0.0010098115308210254, + 0.07738619297742844 + ], + "framer-logo-bold||logos,interface,ui,motion,prototype,prototyping": [ + -0.00779181020334363, + -0.01104254461824894, + -0.0591413788497448, + -0.07874783128499985, + 0.10817394405603409, + -0.048049818724393845, + 0.06277953088283539, + -0.04035894200205803, + 0.01011233776807785, + -0.030675644055008888, + 0.004452718421816826, + 0.02568359114229679, + 0.014666353352367878, + -0.007027189712971449, + 0.011160128749907017, + -0.04068218544125557, + 0.021341480314731598, + 0.029734913259744644, + 0.06823194772005081, + -0.014285032637417316, + 0.0005590899381786585, + -0.029398145154118538, + 0.03385551646351814, + 0.0032451143488287926, + 0.031413935124874115, + 0.061985280364751816, + 0.04639134928584099, + -0.00014616132830269635, + 0.04190982133150101, + -0.08763374388217926, + 0.02168218046426773, + 0.05966807156801224, + 0.0720626711845398, + -0.011383290402591228, + 0.00685140723362565, + -0.027912255376577377, + 0.041573312133550644, + -0.04468589276075363, + -0.037085529416799545, + -0.0044409907422959805, + -0.03414279595017433, + -0.04963785782456398, + 0.011757594533264637, + 0.05380877107381821, + 0.004467090591788292, + 0.056232254952192307, + -0.06464982032775879, + -0.041509781032800674, + -0.008200636133551598, + 0.009039518423378468, + -0.018545836210250854, + -0.11540626734495163, + -0.05711657926440239, + -0.04527990147471428, + -0.017633603885769844, + -0.013631717301905155, + -0.029430875554680824, + -0.011408114805817604, + 0.07352986186742783, + -0.014125979505479336, + -0.009921274147927761, + 0.023314407095313072, + 0.04901028424501419, + 0.08281302452087402, + 0.06992947310209274, + -0.019305646419525146, + -0.0030490572098642588, + 0.024815130978822708, + -0.0023197263944894075, + -0.007286873180419207, + -0.0039760638028383255, + -0.04038248583674431, + 0.007181199267506599, + -0.03115738369524479, + -0.04245632141828537, + -0.05122007057070732, + 0.03311578184366226, + 0.02885950170457363, + -0.031168125569820404, + -0.1056748628616333, + -0.05267683416604996, + -0.0368923656642437, + -0.0349469929933548, + 0.0007019984186626971, + 0.03378436714410782, + 0.11497551202774048, + -0.04097435995936394, + -0.006602814886718988, + -0.0027603015769273043, + 0.06662344932556152, + -0.13353975117206573, + -0.002350131282582879, + 0.02332610823214054, + -0.01580849662423134, + -0.06700120121240616, + -0.006917112041264772, + -0.040065180510282516, + -0.05744841694831848, + -0.03911828622221947, + 0.0829344317317009, + -0.026011765003204346, + -0.03778853267431259, + 0.13273151218891144, + -0.0030383302364498377, + -0.0399278961122036, + 0.03992724418640137, + -0.0594206340610981, + -0.014449840411543846, + 0.03229222074151039, + 0.1052505150437355, + 0.02515777200460434, + -0.01627192460000515, + -0.061216991394758224, + -0.0010937782935798168, + 0.0733243003487587, + -0.04368923604488373, + -0.057841163128614426, + 0.011553747579455376, + 0.19962677359580994, + -0.020439743995666504, + 0.01100187562406063, + 0.01819728873670101, + -0.019007273018360138, + -0.08383285254240036, + 0.014419361017644405, + -0.031118106096982956, + -0.014597536064684391, + -2.9605833579207126e-33, + 0.03149290755391121, + 0.052493009716272354, + 0.013528055511415005, + 0.08651449531316757, + 0.015758655965328217, + -0.007648485712707043, + 0.009192904457449913, + -0.0014568022452294827, + -0.04985157772898674, + 0.057055871933698654, + 0.05206512659788132, + 0.08057650923728943, + -0.02287191152572632, + 0.10931485891342163, + 0.10563714802265167, + -0.11456489562988281, + -0.017282499000430107, + -0.015801765024662018, + -0.08912305533885956, + -0.00408515427261591, + -0.049638781696558, + 0.03954984247684479, + -0.0505671501159668, + 0.009203867986798286, + -0.021693050861358643, + 0.003367916913703084, + 0.019960617646574974, + -0.011269103735685349, + -0.07559168338775635, + -0.0075166551396250725, + -0.004067918751388788, + 0.00968935713171959, + 0.060704030096530914, + 0.035590194165706635, + -0.0013040275080129504, + -0.07020165026187897, + -0.025013983249664307, + -0.0770997479557991, + 0.015792015939950943, + 0.0254693403840065, + -0.1367286890745163, + -0.07758671045303345, + -0.06560647487640381, + 0.022053848952054977, + 0.0200131144374609, + 0.12149638682603836, + 0.0106531186029315, + -0.022789321839809418, + -0.014400816522538662, + 0.05115059018135071, + -0.02605687454342842, + -0.037612974643707275, + 0.03059711866080761, + -0.08826787769794464, + 0.021415604278445244, + -0.05171656236052513, + -0.02318280190229416, + 0.06826785206794739, + 0.011182522401213646, + -0.0006397794932126999, + -0.023605952039361, + 0.06427721679210663, + 0.008449620567262173, + -0.040940962731838226, + -0.03177248686552048, + 0.106978639960289, + -0.00014938689128030092, + 0.008448497392237186, + 0.017066506668925285, + 0.006020500790327787, + -0.024279171600937843, + 0.03247474506497383, + 0.09490671008825302, + 0.04974588006734848, + 0.025006620213389397, + 0.06016484275460243, + -0.031177876517176628, + 0.03843749314546585, + -0.026381373405456543, + 0.007641637232154608, + -0.13109321892261505, + 0.003921232186257839, + -0.06485877931118011, + 0.11045721918344498, + 0.018463553860783577, + -0.00788403395563364, + 0.03000538982450962, + -0.019946163520216942, + -0.002632789546623826, + 0.02915768325328827, + -0.045415010303258896, + -0.041550327092409134, + 0.0012930738739669323, + 0.016836654394865036, + -0.11874867230653763, + -2.516008765648646e-35, + 0.07977231591939926, + 0.011839020997285843, + 0.02319617010653019, + 0.023044783622026443, + -0.03333351016044617, + -0.03215502202510834, + 0.03980645537376404, + 0.046857576817274094, + -0.036016859114170074, + -0.028887856751680374, + 0.10841140896081924, + 0.023598356172442436, + -0.08225014805793762, + -0.05925901606678963, + -0.04324231296777725, + 0.02765040472149849, + 0.0041257236152887344, + 0.03036358766257763, + -0.05743744969367981, + 0.002473782515153289, + 0.018605755642056465, + 0.013866088353097439, + -0.08461228758096695, + 0.029895992949604988, + -0.07642675191164017, + 0.03184241056442261, + 0.058829937130212784, + -0.023666782304644585, + -0.061773426830768585, + 0.017847828567028046, + -0.036973919719457626, + -0.053795069456100464, + 0.06397314369678497, + 0.034137047827243805, + 0.06131300330162048, + -0.004885372705757618, + 0.03826159983873367, + -0.03158382698893547, + -0.016537802293896675, + -0.044864434748888016, + -0.05403031036257744, + 0.053896743804216385, + 0.005276333075016737, + 0.07773441076278687, + -0.02540142647922039, + -0.004702873062342405, + -0.07911848276853561, + -0.04554909095168114, + -0.037220969796180725, + 0.07189805060625076, + -0.02921154536306858, + 0.003816142212599516, + 0.05489311367273331, + -0.07240623980760574, + -0.10195554047822952, + -0.06730062514543533, + 0.05018239840865135, + -0.02972562238574028, + 0.009806109592318535, + 0.09909602254629135, + 0.08613071590662003, + -0.021671859547495842, + -0.056240953505039215, + -0.014491717331111431, + -0.0028538426849991083, + -0.05739050358533859, + -0.03023350238800049, + -0.033960144966840744, + -0.011740163899958134, + 0.013118215836584568, + 0.04857770353555679, + -0.029180878773331642, + 0.048602454364299774, + 0.07645746320486069, + -0.00012894193059764802, + -0.07151123136281967, + 0.12205079942941666, + -0.011462816037237644, + -0.00904651265591383, + 0.01960168220102787, + -0.0325913168489933, + 0.0257987380027771, + -0.008264484815299511, + 0.05902419611811638, + -0.029300479218363762, + 0.0975346565246582, + -0.09067933261394501, + -0.0239805206656456, + 0.08821737766265869, + -0.014459546655416489, + -0.027000781148672104, + 0.14858396351337433, + 0.07403909415006638, + 0.07528677582740784, + -0.036653343588113785, + -2.4189500180682444e-08, + -0.06344988197088242, + -0.01798306033015251, + 0.051000360399484634, + -0.13376355171203613, + -0.009552682749927044, + 0.03671390935778618, + 0.023962268605828285, + -0.09591874480247498, + -0.013602946884930134, + -0.0835571140050888, + 0.016890982165932655, + 0.014824873767793179, + -0.09125463664531708, + 0.006769165396690369, + 0.054983269423246384, + 0.02037387154996395, + -0.06602627038955688, + 0.06565004587173462, + -0.012229221872985363, + -0.04035712406039238, + 0.011988912709057331, + 0.036565035581588745, + 0.04928935691714287, + -0.030989332124590874, + -0.017895139753818512, + -0.0193778146058321, + -0.032635387033224106, + 0.004806095734238625, + 0.022164033725857735, + 0.07735148072242737, + 0.008955228142440319, + 0.08406209945678711, + 0.05315271019935608, + -0.02714686281979084, + -0.02727433852851391, + -0.006266413256525993, + -0.032861724495887756, + -0.02365150861442089, + -0.02104916051030159, + 0.019114073365926743, + -0.02470840886235237, + -0.05825280025601387, + -0.06380666047334671, + -0.030726488679647446, + 0.04583307355642319, + 0.025691354647278786, + 0.018665362149477005, + -0.06732044368982315, + -0.06455118209123611, + -0.10229074209928513, + -0.018903067335486412, + 0.045278407633304596, + -0.04326127469539642, + 0.04253385588526726, + 0.026658078655600548, + -0.05162050575017929, + -0.016073279082775116, + 0.06852517277002335, + 0.05550985783338547, + -0.0059156338684260845, + 0.07939643412828445, + -0.013961142860352993, + 0.024100286886096, + -0.005015763454139233 + ], + "function-bold||mathematics,arithmetic,f-stop": [ + 0.013244700618088245, + 0.040958765894174576, + 0.011679943650960922, + 0.012984240427613258, + 0.03516494110226631, + 0.0043883188627660275, + 0.055535268038511276, + 0.0007549608708359301, + 0.0026633741799741983, + 0.04086929187178612, + -0.007634955924004316, + 0.0339229591190815, + 0.037560541182756424, + -0.05854575335979462, + -0.03768360614776611, + 0.014789481647312641, + -0.027427010238170624, + -0.006991209462285042, + -0.023722246289253235, + 0.0026613371446728706, + 0.05796361342072487, + 0.08984986692667007, + 0.031372103840112686, + 0.05706483870744705, + -0.023368770256638527, + -0.03272917866706848, + 0.01687764748930931, + -0.012081355787813663, + 0.057443805038928986, + -0.05598444119095802, + -0.016330746933817863, + -0.05065913498401642, + 0.07803954929113388, + -0.010254410095512867, + 0.00600251741707325, + 0.025382891297340393, + -0.019187569618225098, + 0.023775041103363037, + 0.02914763242006302, + 0.08119310438632965, + -0.07884026318788528, + -0.10947099328041077, + -0.016859620809555054, + -0.005118230823427439, + -0.022854961454868317, + 0.00311682210303843, + 0.02139091119170189, + 0.01298855897039175, + 0.06047071889042854, + 0.026031622663140297, + 0.01388875674456358, + 0.02641206607222557, + -0.14663736522197723, + 0.0012925073970109224, + 0.07434148341417313, + -0.0011802936205640435, + 0.0034347802866250277, + -0.05675603449344635, + -0.005209275986999273, + -0.05351278930902481, + -0.039288729429244995, + 0.012583638541400433, + 0.057151809334754944, + -0.006949573755264282, + 0.04709600284695625, + 0.020932741463184357, + 0.004414039198309183, + -0.04673824459314346, + -0.006119063589721918, + 0.11758303642272949, + 0.019600795581936836, + 0.039473164826631546, + 0.02857484668493271, + -0.04101060703396797, + -0.025735344737768173, + 0.0027142176404595375, + 0.030100632458925247, + 0.06378855556249619, + -0.024773215875029564, + -0.050536561757326126, + 0.01420754473656416, + -0.09154944121837616, + -0.000695937080308795, + -0.0752880871295929, + 0.012524418532848358, + 0.01828821562230587, + -0.06444431841373444, + -0.05410751700401306, + 0.04608192294836044, + -0.01584041491150856, + -0.05638318136334419, + 0.022449929267168045, + -0.08117730170488358, + 0.030012767761945724, + -0.07876462489366531, + -0.0500415675342083, + 0.04725976288318634, + -0.01610768958926201, + -0.0018419272964820266, + 0.08441594988107681, + -0.03857455775141716, + 0.06682507693767548, + 0.009774298407137394, + -0.025628088042140007, + -0.01348008681088686, + -0.03476322069764137, + 0.048170074820518494, + 0.011449366807937622, + 0.00364470761269331, + 0.010516584850847721, + 0.018369004130363464, + -0.06969863176345825, + 0.008619449101388454, + 0.020394237712025642, + 0.058154549449682236, + -0.040199119597673416, + -0.001768447458744049, + -0.038261644542217255, + 0.08872120827436447, + -0.014817753806710243, + 0.062074098736047745, + -0.012644443660974503, + 0.0015527805080637336, + 0.03738260269165039, + -0.017635859549045563, + -0.016236934810876846, + 0.016997400671243668, + -4.184958988283014e-33, + 0.010107632726430893, + -0.002265523886308074, + -0.04336697980761528, + 0.06243142485618591, + 0.008493631146848202, + 0.005367348436266184, + -0.027186283841729164, + -0.05175314098596573, + -0.07106336206197739, + 0.1387525498867035, + 0.04386415705084801, + 0.10176567733287811, + -0.006278302986174822, + -0.012104355730116367, + 0.08786574006080627, + -0.031369272619485855, + 0.13481293618679047, + -0.10225284099578857, + -0.026746926829218864, + 0.017038613557815552, + 0.04421587660908699, + -0.13289034366607666, + -0.03947069123387337, + 0.042721908539533615, + -0.016523096710443497, + 0.026232047006487846, + 0.00719251437112689, + 0.032840296626091, + -0.04067477211356163, + 0.016500141471624374, + -0.04827141389250755, + 0.017413252964615822, + 0.030056241899728775, + -0.022837942466139793, + 0.040291961282491684, + -0.04218309000134468, + -0.042980123311281204, + -0.013837539590895176, + 0.07642097026109695, + -0.028192095458507538, + -0.08347278088331223, + -0.03197438269853592, + 0.00051707006059587, + -0.010984434746205807, + 0.08150915801525116, + 0.08135362714529037, + -0.001552204368636012, + 0.026726212352514267, + 0.021789604797959328, + 0.05909252166748047, + -0.025431405752897263, + -0.021469609811902046, + 0.0362735390663147, + 0.030116310343146324, + 0.02029816061258316, + -0.04983273893594742, + -0.03774339705705643, + 0.06513995677232742, + -0.028723495081067085, + 0.005101183895021677, + 0.006976685952395201, + -0.023332951590418816, + 0.012699972838163376, + -0.022181464359164238, + -0.14537736773490906, + 0.040641527622938156, + -0.08846305310726166, + 0.07326548546552658, + 0.06653215736150742, + 0.03987260162830353, + 0.019750909879803658, + 0.08954538404941559, + -0.017758268862962723, + -0.009273727424442768, + 0.03044007532298565, + 0.060687195509672165, + -0.03155451640486717, + -0.11596180498600006, + 0.03707286715507507, + -0.040758904069662094, + 0.031001558527350426, + 0.016094986349344254, + -0.02758948504924774, + 0.05104565620422363, + 0.03236778825521469, + -0.0729244127869606, + -0.05454364791512489, + -0.0141826206818223, + 0.009853328578174114, + 0.04735085368156433, + -0.1336832195520401, + 0.0018550051609054208, + 0.040774598717689514, + -0.044317424297332764, + -0.09105253964662552, + 5.773155814025575e-34, + -0.04080790653824806, + 0.08116225153207779, + -0.02833501808345318, + -0.02209792658686638, + -0.07694028317928314, + 0.06640295684337616, + -0.015525586903095245, + 0.01091294176876545, + 0.01335671916604042, + 0.03325897455215454, + 0.04942239448428154, + -0.008220982737839222, + -0.024836208671331406, + -0.06768890470266342, + -0.07025012373924255, + 0.004897525999695063, + -0.028093406930565834, + -0.01656395010650158, + -0.02633066661655903, + -0.025497157126665115, + -0.09329516440629959, + 0.0068237013183534145, + 0.0010282081784680486, + 0.0382627509534359, + -0.0634961798787117, + 0.07250803709030151, + -0.02665087580680847, + -0.0033672142308205366, + -0.024968750774860382, + -0.005049495957791805, + 0.006016002967953682, + -0.027109641581773758, + 0.11158093810081482, + -0.030028361827135086, + -0.05292394012212753, + 0.008457524701952934, + 0.07135224342346191, + -0.047466374933719635, + 0.025832658633589745, + -0.02563212625682354, + 0.0733335018157959, + -0.01664569415152073, + 0.09128778427839279, + -0.08273810148239136, + -0.01406905148178339, + 0.020347069948911667, + 0.03022979013621807, + -0.05359523370862007, + 0.028546229004859924, + 0.06231945380568504, + -0.022291528061032295, + -0.05407312884926796, + -0.014177951030433178, + 0.03786788508296013, + -0.14897434413433075, + -0.011808846145868301, + -0.01804959401488304, + -0.005559845827519894, + -0.037302788347005844, + 0.059358298778533936, + -0.0015591627452522516, + 0.05476129800081253, + 0.03764330968260765, + 0.013744932599365711, + 0.022411707788705826, + -0.06921025365591049, + 0.031141052022576332, + 0.021031377837061882, + 0.05536104738712311, + 0.05703425034880638, + 0.031220994889736176, + 0.019072866067290306, + 0.032838594168424606, + 0.0830015167593956, + -0.10714515298604965, + -0.029847025871276855, + 0.028209708631038666, + 0.008204040117561817, + 0.0676058977842331, + 0.12028752267360687, + 0.059969961643218994, + -0.0016426271758973598, + -0.010484950616955757, + 0.01295399945229292, + -0.14905861020088196, + -0.017861468717455864, + 0.005735907703638077, + -0.019398458302021027, + -0.028041379526257515, + -0.10036619007587433, + -0.022275801748037338, + 0.07152878493070602, + -0.019074056297540665, + -0.13506558537483215, + -0.01450909860432148, + -1.7172091304473724e-08, + -0.0446205660700798, + -0.03936495631933212, + -0.09248791635036469, + -0.07186013460159302, + 0.05710449814796448, + -0.018678555265069008, + -0.051195986568927765, + -0.11201512068510056, + -0.03540176898241043, + -0.04376410320401192, + 0.03973831236362457, + 0.09850277751684189, + -0.009859174489974976, + -0.05090339109301567, + -0.060986753553152084, + 0.054765377193689346, + 0.06803233176469803, + -0.015804706141352654, + 0.0021102691534906626, + -0.06542845070362091, + -0.04786050319671631, + 0.03051608055830002, + 0.009699434973299503, + -0.10008061677217484, + 0.03843597695231438, + -0.03069216012954712, + -0.06124390289187431, + 0.038873687386512756, + 0.05932397395372391, + 0.04464876651763916, + 0.039229411631822586, + 0.04469219967722893, + 0.012065453454852104, + 0.01424652524292469, + -0.10685113072395325, + -0.033165596425533295, + 0.045444026589393616, + 0.022913923487067223, + -0.04283076524734497, + 0.10791680961847305, + -0.05155892297625542, + 0.022795839235186577, + 0.002112314337864518, + -0.025799773633480072, + -0.010727331042289734, + -0.05473834276199341, + 0.035142652690410614, + -0.01595507189631462, + -0.07675979286432266, + -0.0527527816593647, + -0.04951700568199158, + 0.08465158194303513, + 0.009857313707470894, + 0.08297917246818542, + -0.05916346609592438, + -0.11542525887489319, + -0.028179878368973732, + 0.06417414546012878, + -0.07510549575090408, + 0.013111335225403309, + 0.09137944877147675, + 0.013077803887426853, + 0.04957310110330582, + -0.01934659667313099 + ], + "funnel-bold||filters,refine,sorting": [ + -0.0065614706836640835, + -0.023939060047268867, + 0.014902225695550442, + 0.08848996460437775, + 0.011015595868229866, + 0.026536239311099052, + 0.0458345003426075, + -0.08395657688379288, + 0.019247593358159065, + -0.026093434542417526, + -0.06020188704133034, + 0.03133905306458473, + -0.008929519914090633, + -0.027511704713106155, + -0.04438741132616997, + 0.06787148863077164, + -0.015590869821608067, + 0.03349816054105759, + -0.05008146911859512, + -0.11086422950029373, + 0.08249519020318985, + -0.014508907683193684, + -0.012528874911367893, + -0.009838204830884933, + -0.010813671164214611, + 0.02467774786055088, + -0.03302539885044098, + -0.05053303763270378, + 0.060944270342588425, + -0.0828365609049797, + -0.023298397660255432, + 0.05169213190674782, + 0.011764109134674072, + -0.0019642123952507973, + -0.04378010332584381, + -0.07440634816884995, + -0.03616802394390106, + -0.019867338240146637, + 0.005339622963219881, + 0.014239303767681122, + -0.018504485487937927, + 0.04654760658740997, + 0.02280745469033718, + 0.004162278492003679, + -0.04712915048003197, + -0.04455496370792389, + -0.044882290065288544, + -0.01306276023387909, + 0.03631734102964401, + -0.02793223410844803, + -0.042868632823228836, + -0.0454401895403862, + -0.04394149407744408, + 0.054001472890377045, + 0.03995654359459877, + 0.05718555673956871, + -0.12325995415449142, + -0.09683675318956375, + 0.0564228780567646, + -0.050564635545015335, + -0.04333151504397392, + -0.05071728304028511, + 0.04082200303673744, + 0.01430188212543726, + 0.0007140194065868855, + -0.004539138171821833, + -0.014171522110700607, + 0.04557677358388901, + 0.055977124720811844, + 0.06425385922193527, + 0.03632115572690964, + 0.0009547657682560384, + 0.013036834076046944, + -0.07979420572519302, + -0.012980272993445396, + 0.03324763849377632, + 0.04087395220994949, + 0.010108979418873787, + -0.05459493026137352, + 0.025215065106749535, + -0.028971824795007706, + -0.09095810353755951, + -0.036607734858989716, + -0.029208706691861153, + 0.0848856121301651, + -0.02266736514866352, + -0.08669579774141312, + -0.12160367518663406, + 0.02207881398499012, + 0.005473962519317865, + -0.054560255259275436, + 0.008828487247228622, + -0.004767739214003086, + 0.021484505385160446, + -0.04521310329437256, + -0.025761662051081657, + 0.049262046813964844, + 0.02130168490111828, + 0.04439420998096466, + 0.08838681131601334, + -0.023782897740602493, + 0.05938359349966049, + 0.00234321434982121, + -0.01860010251402855, + -0.03194907307624817, + -0.021540630608797073, + 0.016547221690416336, + 0.1160961464047432, + -0.01171787641942501, + 0.01593671552836895, + -0.041110504418611526, + -0.014658789150416851, + 0.06018752232193947, + -0.05427524447441101, + -0.03672749549150467, + 0.015166284516453743, + 0.01870880089700222, + -0.06740348786115646, + 0.03510768711566925, + -0.007238852791488171, + 0.002296618651598692, + 0.06277889013290405, + -0.07153491675853729, + -0.019405759871006012, + 0.05216796696186066, + 0.10087589174509048, + 0.018426185473799706, + -6.606163916428539e-34, + 0.045902837067842484, + 0.06838800013065338, + -0.0426296591758728, + 0.02524833008646965, + -0.009134583175182343, + 0.08064248412847519, + -0.01609085686504841, + -0.08817435801029205, + -0.03405279666185379, + 0.051728472113609314, + 0.053238119930028915, + 0.07832718640565872, + -0.10600972920656204, + 0.019749056547880173, + -0.0043497392907738686, + -0.10944103449583054, + -0.012416740879416466, + 0.04690653085708618, + -0.1974463015794754, + -0.07605773210525513, + -0.08592469990253448, + -0.04075097665190697, + -0.097643181681633, + -0.06753711402416229, + -0.018858756870031357, + -0.05036027356982231, + -0.019621457904577255, + 0.044185299426317215, + -0.05170674994587898, + 0.02414713427424431, + -0.020635180175304413, + 0.0076483432203531265, + 0.0504605695605278, + 0.016677003353834152, + -0.020602189004421234, + 0.054453007876873016, + -0.011978186666965485, + -0.0016284419689327478, + 0.07211489975452423, + 0.05334976315498352, + -0.08075501024723053, + 0.053510647267103195, + 0.04526748135685921, + -0.08862102031707764, + -0.02120860666036606, + 0.07001851499080658, + -0.03891260176897049, + 0.0573338121175766, + 0.06082235649228096, + -0.027892425656318665, + -0.02566101960837841, + 0.009802826680243015, + 0.04613567516207695, + 0.07734207808971405, + 0.01732674054801464, + -0.04545939713716507, + 0.027768611907958984, + 0.11041076481342316, + -0.006360925268381834, + -0.00930775050073862, + 0.04107728227972984, + -0.011663942597806454, + -0.025252921506762505, + 0.034591689705848694, + 0.02420918457210064, + 0.03915981948375702, + 0.00022874526621308178, + 0.07760126143693924, + 0.06362251192331314, + -0.006728088017553091, + -0.009166045114398003, + 0.12659181654453278, + 0.018840592354536057, + 0.04536495730280876, + 0.06921503692865372, + -0.02888527885079384, + 0.08267901837825775, + 0.05185963958501816, + 0.048120398074388504, + -0.11983036249876022, + -0.022446874529123306, + -0.04480753466486931, + -0.028615571558475494, + 0.10721396654844284, + -0.016984689980745316, + 0.09335753321647644, + -0.014444883912801743, + -0.035432118922472, + -0.011498456820845604, + -0.05421719700098038, + -0.03924575075507164, + 0.027817552909255028, + 0.07362598925828934, + -0.013062695972621441, + -0.032105349004268646, + 2.1676903318542536e-34, + -0.015134681016206741, + 0.08754482865333557, + 0.06302084028720856, + -0.007575393188744783, + 0.03433340787887573, + 0.05409485846757889, + 0.03604120761156082, + 0.0015712626045569777, + 0.06589417159557343, + -0.007761223241686821, + -0.016708683222532272, + -0.009406222961843014, + -0.01893923431634903, + -0.07678350806236267, + 0.05028451606631279, + -0.039429500699043274, + 0.03964410722255707, + -0.03877267241477966, + -0.05997725576162338, + -0.032987046986818314, + -0.051747988909482956, + 0.032312434166669846, + -0.056892573833465576, + 0.001969114411622286, + -0.09897954016923904, + 0.0483146607875824, + 0.034705620259046555, + 0.009438058361411095, + 0.008637924678623676, + -0.000504709780216217, + -0.007096363231539726, + -0.04606625437736511, + 0.005232889670878649, + 0.053731609135866165, + -0.029210172593593597, + -0.0036700519267469645, + -0.033762041479349136, + -0.03353799879550934, + 0.03496027737855911, + 0.07779096066951752, + -0.06037458777427673, + 0.018289484083652496, + -0.06082334741950035, + 0.014513605274260044, + 0.008906584233045578, + -0.03735397011041641, + 0.04580344259738922, + -0.06910374015569687, + -0.0016387432115152478, + -0.08374626189470291, + -0.024046778678894043, + 0.06317734718322754, + -0.08231707662343979, + 0.043114159256219864, + -0.09526616334915161, + -0.011643524281680584, + 0.031797632575035095, + -0.014348838478326797, + 0.018739186227321625, + 0.007641665171831846, + -0.054073795676231384, + 0.06632322818040848, + 0.054090291261672974, + -0.01113603264093399, + 0.034424252808094025, + -0.0780489444732666, + 0.025751488283276558, + -0.03834259882569313, + 0.04089105874300003, + -0.034641191363334656, + 0.06851986795663834, + -0.05996297299861908, + 0.02821631357073784, + 0.07813534885644913, + 0.03944006934762001, + -0.09158598631620407, + 0.008027012459933758, + 0.06618709117174149, + 0.030656957998871803, + 0.06651940196752548, + -0.016700543463230133, + 0.052035100758075714, + 0.03555016219615936, + 0.0623939111828804, + 0.007633945904672146, + 0.01889333873987198, + -0.004932214971631765, + -0.013901781290769577, + -0.008432851172983646, + -0.022123370319604874, + -0.04178314656019211, + -0.07366763055324554, + 0.043228473514318466, + -0.011908579617738724, + -0.025378063321113586, + -1.7503362315096638e-08, + 0.0005751274293288589, + -0.041161373257637024, + -0.07377416640520096, + 0.0837879329919815, + 0.03741827234625816, + -0.04025103896856308, + -0.0007237510872073472, + 0.04501889646053314, + -0.09231709688901901, + -0.010735874064266682, + 0.04582276940345764, + 0.12283923476934433, + -0.05834294855594635, + -0.04621823877096176, + 0.014128890819847584, + -0.01604088768362999, + -0.07091353833675385, + 0.015522779896855354, + -0.049681540578603745, + -0.04301059618592262, + -0.0440315343439579, + 0.08185650408267975, + 0.009212996810674667, + -0.005790451541543007, + 0.062013108283281326, + 0.05610410124063492, + -0.012516213580965996, + 0.07225561141967773, + 0.09058094024658203, + 0.11572779715061188, + 0.02751530520617962, + 0.07376422733068466, + 0.028803858906030655, + 0.03142938390374184, + -0.134995698928833, + -0.0050990888848900795, + -0.027706608176231384, + 0.014531714841723442, + -0.09265195578336716, + 0.06361237913370132, + -0.04343896359205246, + -0.040927521884441376, + 0.03738962486386299, + 0.004601308610290289, + -0.02917482517659664, + -0.005371852312237024, + 0.005487203132361174, + -0.07148193567991257, + 0.01643374375998974, + -0.02351309172809124, + 0.0221478920429945, + -0.059278011322021484, + 0.04667000100016594, + 0.020232319831848145, + -0.008076115511357784, + -0.09833592176437378, + -0.038903918117284775, + 0.07898306846618652, + 0.004455838352441788, + -0.04113142937421799, + 0.11514167487621307, + -0.012340154498815536, + 0.037146151065826416, + 0.003922446630895138 + ], + "funnel-simple-bold||filters,refine,sorting": [ + -0.0020866135600954294, + -0.010267968289554119, + 0.025479339063167572, + 0.09495557844638824, + 0.020093532279133797, + 0.02659357152879238, + 0.03454846516251564, + -0.07699110358953476, + 0.0026499663945287466, + -0.024525798857212067, + -0.06038028001785278, + 0.020505687221884727, + -0.011590415611863136, + -0.029619090259075165, + -0.03063143603503704, + 0.0686415582895279, + -0.016271764412522316, + 0.02436303161084652, + -0.049570225179195404, + -0.10690480470657349, + 0.05745882913470268, + -0.027494274079799652, + -0.027962177991867065, + -0.011798192746937275, + -0.011746932752430439, + 0.02415461093187332, + -0.03413485363125801, + -0.04115566238760948, + 0.06624595075845718, + -0.08071712404489517, + -0.01830306462943554, + 0.04624365270137787, + 0.02155100181698799, + -0.007774815894663334, + -0.04416270926594734, + -0.08360546082258224, + -0.025056496262550354, + -0.01742691919207573, + -0.007146231364458799, + 0.010133353993296623, + -0.01742766611278057, + 0.04684634879231453, + 0.027297567576169968, + 0.008845816366374493, + -0.05751727521419525, + -0.049639660865068436, + -0.04422017186880112, + -0.006431025452911854, + 0.035703375935554504, + -0.04650724306702614, + -0.028068145737051964, + -0.04650377482175827, + -0.047783348709344864, + 0.0405610017478466, + 0.052575282752513885, + 0.06509879976511002, + -0.1336679607629776, + -0.0875181332230568, + 0.051234785467386246, + -0.0584711991250515, + -0.029884200543165207, + -0.06192701309919357, + 0.03716123849153519, + 0.011105340905487537, + -0.01122692134231329, + -0.008438700810074806, + -0.021387849003076553, + 0.0341862291097641, + 0.045523323118686676, + 0.05636729672551155, + 0.02696782350540161, + -0.007612848654389381, + 0.0007156707579270005, + -0.06697113066911697, + -0.01576368883252144, + 0.02108769491314888, + 0.03674573823809624, + 0.019276969134807587, + -0.06079695001244545, + 0.039007578045129776, + -0.038823679089546204, + -0.09792941808700562, + -0.047043152153491974, + -0.008006995543837547, + 0.08575698733329773, + -0.02911624126136303, + -0.09269336611032486, + -0.11350634694099426, + 0.026618316769599915, + 0.0008820187067613006, + -0.04397621378302574, + 0.01960398443043232, + 0.002131756627932191, + 0.02029908448457718, + -0.043587490916252136, + -0.027695955708622932, + 0.05040283128619194, + 0.023082664236426353, + 0.019856834784150124, + 0.08611445873975754, + -0.025338590145111084, + 0.062241874635219574, + 0.024454232305288315, + -0.03766874596476555, + -0.03258510306477547, + -0.01959671825170517, + 0.022367339581251144, + 0.10585825890302658, + -0.012774404138326645, + 0.009164617396891117, + -0.04148034751415253, + -0.01603086292743683, + 0.062413498759269714, + -0.048415057361125946, + -0.026898974552750587, + 0.02311907522380352, + 0.009644119068980217, + -0.06991012394428253, + 0.03922462835907936, + 0.013685694895684719, + 0.0008447936270385981, + 0.06568167358636856, + -0.09447018802165985, + -0.0184087585657835, + 0.04386475309729576, + 0.09976335614919662, + 0.022020719945430756, + -1.1959064428823319e-33, + 0.05260340869426727, + 0.08010905236005783, + -0.04597929120063782, + 0.03421091288328171, + -0.008474672213196754, + 0.07255707681179047, + -0.01836170069873333, + -0.09221454709768295, + -0.034605782479047775, + 0.05464663729071617, + 0.06551609933376312, + 0.06373634934425354, + -0.11057031899690628, + 0.020332293584942818, + -0.004269900266081095, + -0.10461944341659546, + -0.007252506446093321, + 0.04598306119441986, + -0.1889777034521103, + -0.08116382360458374, + -0.09359156340360641, + -0.016987500712275505, + -0.08712377399206161, + -0.07681699097156525, + -0.012511477805674076, + -0.04650324210524559, + -0.015066565945744514, + 0.03263232484459877, + -0.04537322744727135, + 0.021818632259964943, + -0.01957462541759014, + 0.01195771899074316, + 0.05300020053982735, + 0.02733505517244339, + -0.024432580918073654, + 0.04264887422323227, + 0.004435701295733452, + -0.0004959571524523199, + 0.06398551911115646, + 0.03413047641515732, + -0.08961450308561325, + 0.0610819086432457, + 0.05566280707716942, + -0.08880939334630966, + -0.021388350054621696, + 0.07360281050205231, + -0.04076080024242401, + 0.052615031599998474, + 0.07268359512090683, + -0.031065048649907112, + -0.03623684495687485, + 0.01701578125357628, + 0.03199409320950508, + 0.07944446802139282, + 0.02085367776453495, + -0.022950921207666397, + 0.024529213085770607, + 0.11305466294288635, + -0.007437861990183592, + -0.011768456548452377, + 0.03538375347852707, + -0.0007609204039908946, + -0.03955793380737305, + 0.03707868605852127, + 0.02139049582183361, + 0.04934290796518326, + -0.0024013074580579996, + 0.06531848758459091, + 0.05406320467591286, + -0.001452461234293878, + -0.009423409588634968, + 0.12988735735416412, + 0.014812272973358631, + 0.02395469881594181, + 0.09012661874294281, + -0.020169565454125404, + 0.10107869654893875, + 0.028937779366970062, + 0.053545285016298294, + -0.11973417550325394, + -0.016569072380661964, + -0.04188629612326622, + -0.031040819361805916, + 0.11242760717868805, + -0.03495607525110245, + 0.09232190996408463, + -0.019405538216233253, + -0.023673616349697113, + -0.023047098889946938, + -0.05648411437869072, + -0.052289362996816635, + 0.0362863764166832, + 0.06382643431425095, + -0.01581927202641964, + -0.026229342445731163, + 4.141210119116782e-34, + -0.012208239175379276, + 0.08670184016227722, + 0.05948570370674133, + -0.0026950452011078596, + 0.03750952333211899, + 0.06629176437854767, + 0.04990608990192413, + 0.003744603833183646, + 0.08051584661006927, + 0.00575107429176569, + -0.019688429310917854, + -0.011032073758542538, + -0.03781646862626076, + -0.07765106856822968, + 0.04896064102649689, + -0.03605186566710472, + 0.030456608161330223, + -0.026831073686480522, + -0.047324132174253464, + -0.03874240815639496, + -0.042794544249773026, + 0.04238297417759895, + -0.07831189781427383, + -0.009888213127851486, + -0.09764015674591064, + 0.04558352380990982, + 0.02090601995587349, + 0.014035657979547977, + 0.009548775851726532, + -0.0010284376330673695, + -0.010877194814383984, + -0.05203505977988243, + 0.007906593382358551, + 0.04414736479520798, + -0.029574330896139145, + 0.0016212952323257923, + -0.044552430510520935, + -0.03193022683262825, + 0.03214280307292938, + 0.07008860260248184, + -0.0631236806511879, + 0.016486331820487976, + -0.051625385880470276, + 0.011770525947213173, + 0.007076987065374851, + -0.04662661626935005, + 0.04877033829689026, + -0.07219844311475754, + -0.013555444777011871, + -0.08630869537591934, + -0.03129898011684418, + 0.04597286880016327, + -0.08626855909824371, + 0.0515785738825798, + -0.09517428278923035, + -0.012666589580476284, + 0.0444321408867836, + -0.009939844720065594, + 0.022619759663939476, + 0.010010959580540657, + -0.06671742349863052, + 0.069048672914505, + 0.02868342027068138, + -0.005658459383994341, + 0.029861807823181152, + -0.07232224941253662, + 0.02798542007803917, + -0.05051793158054352, + 0.03295046091079712, + -0.03286401927471161, + 0.07049348205327988, + -0.05486034229397774, + 0.04256827384233475, + 0.06596783548593521, + 0.03570502996444702, + -0.09199485927820206, + -0.0002807523705996573, + 0.06367833912372589, + 0.026869051158428192, + 0.05394565686583519, + -0.002689631888642907, + 0.047111138701438904, + 0.024212053045630455, + 0.04977833107113838, + 0.023295387625694275, + 0.012185013853013515, + -0.003745559835806489, + -0.018198706209659576, + 0.0006839264533482492, + -0.010498070158064365, + -0.049131620675325394, + -0.05657360702753067, + 0.06071506440639496, + -0.006920236628502607, + -0.02595987357199192, + -1.908962055097163e-08, + 0.003287580329924822, + -0.05139404162764549, + -0.07851137220859528, + 0.08774593472480774, + 0.04107888787984848, + -0.03495654836297035, + 0.003497537225484848, + 0.04572499543428421, + -0.08763805776834488, + 0.00044554012129083276, + 0.04761737957596779, + 0.1118997186422348, + -0.06690790504217148, + -0.03099171817302704, + -0.010507485829293728, + 0.003976605832576752, + -0.07270114123821259, + 0.014879732392728329, + -0.04186704009771347, + -0.03868450969457626, + -0.04225069284439087, + 0.08155179023742676, + 0.0007550084847025573, + -0.007529990281909704, + 0.05368529260158539, + 0.06284894049167633, + -0.014056521467864513, + 0.08537037670612335, + 0.09267260134220123, + 0.11143177002668381, + 0.02519461326301098, + 0.07152357697486877, + 0.03172886371612549, + 0.04208109527826309, + -0.14050784707069397, + 0.004969223402440548, + -0.03977020084857941, + 0.016594475135207176, + -0.10192137211561203, + 0.04904032498598099, + -0.03652222082018852, + -0.031393952667713165, + 0.03823248669505119, + 0.0016716707032173872, + -0.026292890310287476, + -0.005084373522549868, + 0.008876516483724117, + -0.0828835591673851, + 0.016412988305091858, + -0.0329536497592926, + 0.02775171957910061, + -0.06701783835887909, + 0.0451294481754303, + 0.003766779787838459, + -0.014755897223949432, + -0.08452829718589783, + -0.01906551606953144, + 0.08753665536642075, + -0.0023974766954779625, + -0.032295629382133484, + 0.11995460838079453, + 0.020464595407247543, + 0.03076157718896866, + 0.007261292077600956 + ], + "funnel-simple-x-bold||*new*,filters,refine,sorting": [ + -0.009005673229694366, + -0.024376042187213898, + 0.016000844538211823, + 0.09477931261062622, + 0.03377344459295273, + 0.0064444830641150475, + 0.02939658984541893, + -0.07837270945310593, + -0.01325336005538702, + -0.0027495501562952995, + -0.026721255853772163, + 0.024854857474565506, + -0.004824766423553228, + -0.04770219698548317, + -0.00825575366616249, + 0.06368722021579742, + -0.01942598447203636, + 0.0004066918627358973, + -0.04754188656806946, + -0.10106562823057175, + 0.052722036838531494, + -0.04289567098021507, + -0.048201847821474075, + -0.009855867363512516, + 0.0014457697980105877, + 0.03571790084242821, + -0.03997916355729103, + -0.04952377825975418, + 0.08144667744636536, + -0.08700304478406906, + -0.017862727865576744, + 0.04801007732748985, + 0.03972234949469566, + -0.01414188276976347, + -0.01897895708680153, + -0.07417763024568558, + -0.015540799126029015, + 0.00704824086278677, + -0.015773003920912743, + 0.0036193595733493567, + -0.005813374649733305, + 0.028611136600375175, + 0.002679145894944668, + 0.012107137590646744, + -0.054515738040208817, + -0.06170518323779106, + -0.027292311191558838, + -0.012192261405289173, + 0.054211415350437164, + -0.02953081764280796, + -0.0234152190387249, + -0.06156883016228676, + -0.06243988499045372, + 0.041089221835136414, + 0.06761471182107925, + 0.06259451806545258, + -0.12438200414180756, + -0.10806112736463547, + 0.03179705888032913, + -0.06270435452461243, + 0.0012095498386770487, + -0.03638327121734619, + 0.06031185761094093, + 0.020153449848294258, + -0.024723012000322342, + -0.03294887766242027, + -0.047489989548921585, + 0.026879560202360153, + 0.05249108001589775, + 0.06097804382443428, + -0.0021366290748119354, + 0.014960669912397861, + -0.007443500217050314, + -0.05731598287820816, + -0.012138467282056808, + -0.02030547522008419, + 0.04558812081813812, + 0.01532308105379343, + -0.059010934084653854, + 0.03948409482836723, + -0.022002866491675377, + -0.06273014098405838, + -0.0377371646463871, + -0.00990704633295536, + 0.07023832947015762, + -0.00968982931226492, + -0.09573555737733841, + -0.09909684211015701, + 0.002278322586789727, + -0.0015875814715400338, + -0.05750775337219238, + 0.039754755795001984, + -0.029613075777888298, + 0.01852363534271717, + -0.060297779738903046, + -0.03411206603050232, + 0.04907775670289993, + 0.014006737619638443, + 0.04242634400725365, + 0.09872755408287048, + -0.05246511101722717, + 0.050488632172346115, + 0.04684136435389519, + -0.03216750547289848, + -0.03535076975822449, + -0.033895280212163925, + -0.008315175771713257, + 0.10457834601402283, + -0.01421078946441412, + 0.03188199922442436, + -0.02863907814025879, + -0.03461184725165367, + 0.06976362317800522, + -0.044406432658433914, + -0.021492399275302887, + 0.053852636367082596, + -0.008261316455900669, + -0.061892859637737274, + 0.021348055452108383, + 0.0398063063621521, + 0.021900923922657967, + 0.0439675971865654, + -0.0902320072054863, + -0.009735113009810448, + 0.014511254616081715, + 0.09328893572092056, + -0.014969884417951107, + -9.048279603378246e-34, + 0.032619353383779526, + 0.09654483944177628, + -0.050964657217264175, + 0.041831355541944504, + -0.015412687323987484, + 0.0730297714471817, + 0.00013987839338369668, + -0.0747704729437828, + -0.03558900207281113, + 0.060562580823898315, + 0.0643535777926445, + 0.04856478050351143, + -0.12366776913404465, + 0.02836684323847294, + -0.0052275932393968105, + -0.11857981234788895, + -0.0041411216370761395, + 0.0433666817843914, + -0.17866212129592896, + -0.08944375067949295, + -0.11529801040887833, + 0.002908982802182436, + -0.07696767896413803, + -0.07161607593297958, + -0.014478509314358234, + -0.0462346188724041, + 0.00033777308999560773, + -0.00438615120947361, + -0.04907754063606262, + 0.019827520474791527, + -0.034613654017448425, + 0.024513859301805496, + 0.05658303573727608, + 0.047551583498716354, + -0.03050307370722294, + 0.06284569948911667, + 0.019262226298451424, + -0.017071666195988655, + 0.06781978905200958, + 0.021041901782155037, + -0.10181008279323578, + 0.062008507549762726, + 0.049544237554073334, + -0.08176153153181076, + -0.01916639320552349, + 0.06710736453533173, + -0.05828471481800079, + 0.03884493187069893, + 0.06751251220703125, + -0.04442082718014717, + -0.04794446378946304, + 0.017887121066451073, + 0.01381639763712883, + 0.09220036119222641, + -0.0017375110182911158, + -0.017814937978982925, + -0.008424187079071999, + 0.10566447675228119, + 0.007569349370896816, + -0.015036114491522312, + 0.042610906064510345, + -0.007264403160661459, + -0.05293245613574982, + 0.06941553950309753, + 0.013952920213341713, + 0.04780285432934761, + 0.008515054360032082, + 0.05167975649237633, + 0.04392606392502785, + 0.01814204826951027, + -0.02678501605987549, + 0.1163276955485344, + 0.003763170214369893, + 0.014281676150858402, + 0.10871630907058716, + -0.03808913752436638, + 0.10273753106594086, + 0.03571353480219841, + 0.05559680610895157, + -0.12708717584609985, + -0.009905446320772171, + -0.025360558182001114, + -0.02092803455889225, + 0.10715994238853455, + -0.030375776812434196, + 0.08570749312639236, + -0.004206676967442036, + 0.0029466610867530107, + -0.02710440568625927, + -0.06838420033454895, + -0.07171119004487991, + 0.02806842513382435, + 0.027520744130015373, + -0.016772907227277756, + -0.025088515132665634, + -6.74090266050414e-34, + -0.021062098443508148, + 0.08882950246334076, + 0.051289115101099014, + 0.0025062940549105406, + 0.02266787178814411, + 0.07966594398021698, + 0.03909219801425934, + 0.004680396523326635, + 0.08290104568004608, + 0.017184806987643242, + -0.006038442719727755, + 0.00654944870620966, + -0.032127153128385544, + -0.06585338711738586, + 0.0562308095395565, + -0.031940340995788574, + 0.008119501173496246, + -0.02356947399675846, + -0.08614379167556763, + -0.021067749708890915, + -0.03254728391766548, + 0.055327679961919785, + -0.08920395374298096, + -0.02755993790924549, + -0.08322490751743317, + 0.016015490517020226, + 0.04509514570236206, + 0.028898637741804123, + 0.007325674407184124, + -0.01933976076543331, + -0.052411846816539764, + -0.058654554188251495, + 0.011822311207652092, + 0.06438993662595749, + -0.019695093855261803, + -0.010357788763940334, + -0.03953729569911957, + -0.041113536804914474, + 0.031114017590880394, + 0.07023798674345016, + -0.07304956018924713, + -0.0026554097421467304, + -0.04508385434746742, + 0.023023247718811035, + -0.005467037204653025, + -0.05526338517665863, + 0.032524362206459045, + -0.05985575169324875, + -0.008664424531161785, + -0.07229748368263245, + -0.0260610431432724, + 0.021628886461257935, + -0.07864101231098175, + 0.04372907429933548, + -0.10164792090654373, + 0.03213293105363846, + 0.043101754039525986, + -0.0002996311231981963, + 0.022621987387537956, + 0.009149669669568539, + -0.06627816706895828, + 0.06430275738239288, + 0.00929941050708294, + 0.005252421367913485, + 0.03334486857056618, + -0.08820350468158722, + 0.0010626554721966386, + -0.06077933683991432, + 0.010727624408900738, + -0.01977728120982647, + 0.06029032543301582, + -0.02270188368856907, + 0.009753541089594364, + 0.052496980875730515, + 0.014825781807303429, + -0.10420743376016617, + -0.030063053593039513, + 0.033180221915245056, + 0.023746760562062263, + 0.041762083768844604, + -0.002479696413502097, + 0.057652149349451065, + 0.04857650399208069, + 0.030397051945328712, + 0.04372002184391022, + 0.018056489527225494, + 0.0071869404055178165, + 0.003667510114610195, + -0.0005704062059521675, + -0.025129524990916252, + -0.054050132632255554, + -0.044765155762434006, + 0.03583021089434624, + -0.00497570401057601, + -0.023885969072580338, + -2.3540318139225747e-08, + -0.019230790436267853, + -0.05863892287015915, + -0.07415297627449036, + 0.10648208111524582, + 0.05819937214255333, + -0.03236794099211693, + -0.018796516582369804, + 0.03889777138829231, + -0.07421379536390305, + -0.0220411978662014, + 0.05464988201856613, + 0.10761886835098267, + -0.051540110260248184, + -0.02225041203200817, + -0.024606790393590927, + -0.00717501062899828, + -0.037439193576574326, + 0.017792947590351105, + -0.03675542026758194, + -0.06682638078927994, + -0.05679589509963989, + 0.08682622760534286, + 0.012700773775577545, + -0.010286323726177216, + 0.04426302760839462, + 0.039565518498420715, + 5.653010884998366e-05, + 0.07340193539857864, + 0.08614782243967056, + 0.11133076995611191, + 0.03300345689058304, + 0.060894258320331573, + 0.02637762576341629, + 0.05648311227560043, + -0.13158369064331055, + 0.025945086032152176, + -0.07303472608327866, + 0.02754627913236618, + -0.09798864275217056, + 0.028947580605745316, + -0.03570101782679558, + -0.018385298550128937, + 0.04589201137423515, + -0.00047890437417663634, + -0.05200846493244171, + -0.0054253218695521355, + 0.014342313632369041, + -0.10012614727020264, + 0.025386353954672813, + -0.04207504168152809, + 0.049165502190589905, + -0.05106160417199135, + 0.05878163501620293, + -0.01709425449371338, + -0.011854059994220734, + -0.036354999989271164, + -0.004810344893485308, + 0.09243582934141159, + 0.017366280779242516, + -0.02858482114970684, + 0.09830446541309357, + 0.023281583562493324, + 0.05983622372150421, + 0.011838934384286404 + ], + "funnel-x-bold||*new*,filters,refine,sorting": [ + -0.014462213963270187, + -0.032174766063690186, + 0.012175271287560463, + 0.09268349409103394, + 0.024148833006620407, + 0.004633620847016573, + 0.048078157007694244, + -0.08897723257541656, + 0.0034732255153357983, + -0.011715252883732319, + -0.028057748451828957, + 0.02647992968559265, + 0.001808479311875999, + -0.047183696180582047, + -0.012942991219460964, + 0.06957004219293594, + -0.02039029635488987, + 0.010148498229682446, + -0.04831921309232712, + -0.10575210303068161, + 0.0720190703868866, + -0.02681644819676876, + -0.03501906618475914, + -0.0031005789060145617, + 0.00246881484054029, + 0.03704376146197319, + -0.04370836541056633, + -0.0627901628613472, + 0.07674089074134827, + -0.09012547135353088, + -0.023199215531349182, + 0.05128667876124382, + 0.03329341486096382, + -0.009133062325417995, + -0.018167678266763687, + -0.06527899205684662, + -0.024224473163485527, + 0.008069316856563091, + -0.004014860838651657, + 0.002814890816807747, + 0.0006751974578946829, + 0.025136826559901237, + -0.0023729708045721054, + 0.007754843216389418, + -0.044694092124700546, + -0.06457483768463135, + -0.026203205808997154, + -0.01911759190261364, + 0.059291668236255646, + -0.00955774262547493, + -0.033316925168037415, + -0.06485000252723694, + -0.06177724152803421, + 0.047109831124544144, + 0.06011206656694412, + 0.060862138867378235, + -0.11455605924129486, + -0.11716563999652863, + 0.038929715752601624, + -0.059476129710674286, + -0.00680918712168932, + -0.02106325514614582, + 0.06361761689186096, + 0.02416679821908474, + -0.01063488144427538, + -0.023989349603652954, + -0.03904106467962265, + 0.036428675055503845, + 0.06554104387760162, + 0.07687848061323166, + 0.0015208100667223334, + 0.021661924198269844, + 0.009679866023361683, + -0.07605502754449844, + -0.013868418522179127, + -0.006985372398048639, + 0.05518477037549019, + 0.003868058556690812, + -0.05504358932375908, + 0.02839878387749195, + -0.0132478978484869, + -0.05249422416090965, + -0.033356208354234695, + -0.02180127054452896, + 0.06916691362857819, + 0.0007845812360756099, + -0.09055927395820618, + -0.10987675935029984, + -0.0065448409877717495, + -0.00450489018112421, + -0.07357066869735718, + 0.023881494998931885, + -0.04327387735247612, + 0.020455965772271156, + -0.06375941634178162, + -0.03279269114136696, + 0.04758699983358383, + 0.016044678166508675, + 0.07088381797075272, + 0.09731005877256393, + -0.05054069682955742, + 0.04777505621314049, + 0.029048947617411613, + -0.017509762197732925, + -0.040271975100040436, + -0.0385589674115181, + -0.01900332048535347, + 0.11156047880649567, + -0.01827763020992279, + 0.03928627073764801, + -0.026120342314243317, + -0.04001222550868988, + 0.06400877237319946, + -0.04611003026366234, + -0.025960469618439674, + 0.0511104017496109, + 0.0035603174474090338, + -0.05866352096199989, + 0.01819716766476631, + 0.025324378162622452, + 0.026198549196124077, + 0.035516221076250076, + -0.07279925793409348, + -0.007793514523655176, + 0.019076481461524963, + 0.08596040308475494, + -0.017389053478837013, + 3.3512784319388704e-35, + 0.024134377017617226, + 0.08160721510648727, + -0.043405767530202866, + 0.028551574796438217, + -0.015735870227217674, + 0.0758427083492279, + 0.004098758101463318, + -0.07192858308553696, + -0.04303748160600662, + 0.06894121319055557, + 0.05208296701312065, + 0.06032290309667587, + -0.1230282187461853, + 0.0258422140032053, + -0.006269829347729683, + -0.1231316551566124, + -0.003672327846288681, + 0.040980711579322815, + -0.1863512098789215, + -0.07664819061756134, + -0.11295716464519501, + -0.018831593915820122, + -0.09260829538106918, + -0.06427637487649918, + -0.02182391844689846, + -0.0548582524061203, + -0.005642642732709646, + 0.0030442140996456146, + -0.05268404632806778, + 0.020635589957237244, + -0.03627027943730354, + 0.023814953863620758, + 0.05089941993355751, + 0.045397695153951645, + -0.027666177600622177, + 0.07432733476161957, + 0.0024645656812936068, + -0.015568844974040985, + 0.07592591643333435, + 0.03624247387051582, + -0.09393203258514404, + 0.060554906725883484, + 0.03880041092634201, + -0.07756875455379486, + -0.015703953802585602, + 0.056576211005449295, + -0.058473993092775345, + 0.03687610477209091, + 0.0595952533185482, + -0.03707372769713402, + -0.03333360329270363, + 0.009424244984984398, + 0.02024455927312374, + 0.0932365283370018, + -0.006507744546979666, + -0.0399777851998806, + -0.008492516353726387, + 0.11238561570644379, + 0.012158289551734924, + -0.015233492478728294, + 0.047488003969192505, + -0.022253861650824547, + -0.044145017862319946, + 0.06791484355926514, + 0.015052217058837414, + 0.04247552528977394, + 0.013856888748705387, + 0.06385336816310883, + 0.049125827848911285, + 0.015397531911730766, + -0.03131679818034172, + 0.10695718228816986, + 0.001274781534448266, + 0.031403861939907074, + 0.08890387415885925, + -0.04869496449828148, + 0.08024410903453827, + 0.05808380991220474, + 0.06104682758450508, + -0.12550221383571625, + -0.013330436311662197, + -0.032457198947668076, + -0.020747320726513863, + 0.10440463572740555, + -0.009293233044445515, + 0.09015806764364243, + 0.001940689398907125, + -0.008778742514550686, + -0.018123647198081017, + -0.067783422768116, + -0.07034903764724731, + 0.017069557681679726, + 0.033089086413383484, + -0.01886153221130371, + -0.03195885568857193, + -1.4427689809271473e-33, + -0.01929427683353424, + 0.08986096829175949, + 0.054506588727235794, + 0.0018266341648995876, + 0.018181240186095238, + 0.06700489670038223, + 0.02927490510046482, + 0.0013043793151155114, + 0.07371732592582703, + 0.007528010290116072, + -0.001085363095626235, + 0.01232225727289915, + -0.015155307948589325, + -0.06621383130550385, + 0.05189900100231171, + -0.03635638579726219, + 0.0127965547144413, + -0.039761193096637726, + -0.10516850650310516, + -0.014087708666920662, + -0.0470418706536293, + 0.04528237506747246, + -0.059808310121297836, + -0.01126063335686922, + -0.08509108424186707, + 0.01109968964010477, + 0.06242989003658295, + 0.020789334550499916, + 0.005908087827265263, + -0.023135662078857422, + -0.05888648331165314, + -0.04990618675947189, + 0.011366045102477074, + 0.07877077162265778, + -0.021192779764533043, + -0.015237064100801945, + -0.02657325752079487, + -0.04151977598667145, + 0.030980965122580528, + 0.07747229188680649, + -0.0677386224269867, + -0.002175002358853817, + -0.047235582023859024, + 0.029989762231707573, + -0.006343823857605457, + -0.03882370516657829, + 0.026764430105686188, + -0.054361920803785324, + 0.0019449322717264295, + -0.05885068699717522, + -0.016688209027051926, + 0.033622488379478455, + -0.07446543127298355, + 0.040778499096632004, + -0.10913185030221939, + 0.030461510643363, + 0.025743912905454636, + -0.005999871529638767, + 0.013507570140063763, + 0.012839669361710548, + -0.05726582929491997, + 0.05675029009580612, + 0.0306820310652256, + 0.0069638690911233425, + 0.039685528725385666, + -0.0964033454656601, + -0.0018838888499885798, + -0.052395451813936234, + 0.022846980020403862, + -0.018843859434127808, + 0.06977051496505737, + -0.028534816578030586, + -0.008452464826405048, + 0.06727517396211624, + 0.00721977511420846, + -0.11045891791582108, + -0.026423254981637, + 0.030674127861857414, + 0.03342169523239136, + 0.053921207785606384, + -0.014301643706858158, + 0.0631139948964119, + 0.061518553644418716, + 0.04397391900420189, + 0.028108011931180954, + 0.024524148553609848, + 0.0049921185709536076, + 0.017787087708711624, + -0.006626611575484276, + -0.03873647749423981, + -0.04148207604885101, + -0.05822063237428665, + 0.019976602867245674, + -0.020851390436291695, + -0.026569798588752747, + -2.246960129070885e-08, + -0.022200562059879303, + -0.04937916249036789, + -0.0709802508354187, + 0.10468985140323639, + 0.051136564463377, + -0.03693429380655289, + -0.026540491729974747, + 0.03508595749735832, + -0.07362943142652512, + -0.035694193094968796, + 0.05861515551805496, + 0.12014126777648926, + -0.04378562048077583, + -0.04273262619972229, + -0.009183796122670174, + -0.0254212636500597, + -0.030823159962892532, + 0.022969922050833702, + -0.04379115626215935, + -0.0706888809800148, + -0.0595676563680172, + 0.08549951016902924, + 0.01949365995824337, + -0.011161836795508862, + 0.05178454518318176, + 0.030978204682469368, + -0.00125049555208534, + 0.05950986593961716, + 0.08551449328660965, + 0.11592061817646027, + 0.038660164922475815, + 0.05689301714301109, + 0.02319030463695526, + 0.04161032661795616, + -0.12322528660297394, + 0.01123533584177494, + -0.05883730575442314, + 0.027840623632073402, + -0.08321604877710342, + 0.04464302584528923, + -0.0425872802734375, + -0.028489382937550545, + 0.05088413506746292, + 0.0019039075123146176, + -0.05862145870923996, + -0.0035056283231824636, + 0.01187526062130928, + -0.08924100548028946, + 0.025120137259364128, + -0.026363542303442955, + 0.04999905452132225, + -0.04009862244129181, + 0.0539068840444088, + -0.0026264411862939596, + -0.012303336523473263, + -0.04946575313806534, + -0.022445721551775932, + 0.08713976293802261, + 0.024211551994085312, + -0.0396643728017807, + 0.09766171127557755, + -0.008701960556209087, + 0.06944850832223892, + 0.004195686429738998 + ], + "game-controller-bold||gaming,video games,nintendo switch,sony playstation,microsoft xbox": [ + 0.021457407623529434, + -0.0717027485370636, + -0.0923977717757225, + -0.05814572051167488, + 0.03302475064992905, + 0.061697620898485184, + 0.09927047789096832, + 0.01378731057047844, + 0.00013481547648552805, + 0.0914636105298996, + 0.009077131748199463, + 0.030010992661118507, + -0.007746221963316202, + -0.0766904354095459, + 0.04841964319348335, + 0.10354248434305191, + 0.041378144174814224, + 0.023934196680784225, + 0.033723000437021255, + 0.006075980607420206, + 0.02034609392285347, + 0.00033869894105009735, + -0.011034451425075531, + 0.04823079705238342, + -0.035721808671951294, + 0.08972811698913574, + 0.04409627988934517, + 0.04542955011129379, + -0.054665371775627136, + -0.05590933561325073, + -0.07104317843914032, + -0.04436226934194565, + 0.06661897897720337, + 0.0027633607387542725, + -0.0137289734557271, + -0.06365437805652618, + -0.020139826461672783, + -0.09170932322740555, + -0.07301083952188492, + -0.07103553414344788, + -0.022389866411685944, + -0.01386161707341671, + 0.008454381488263607, + 0.03730097413063049, + -0.012002585455775261, + -0.002261171117424965, + -0.08831841498613358, + -0.01753813773393631, + 0.009555703029036522, + 0.02397979609668255, + 0.035512082278728485, + -0.0947466716170311, + 0.002763585187494755, + -0.06376641988754272, + 0.06267654895782471, + -0.0193502064794302, + -0.07923135161399841, + 0.03647414967417717, + 0.08494391292333603, + 0.01690763607621193, + -0.007244735956192017, + -0.015129433013498783, + 0.04130588471889496, + 0.03722173348069191, + 0.008145271800458431, + -0.02390570566058159, + 0.03858116269111633, + -0.025848599150776863, + -0.016299832612276077, + -0.07776985317468643, + -0.054480958729982376, + 0.04313638433814049, + 0.023149941116571426, + -0.05781949684023857, + -0.03919418901205063, + -0.06435420364141464, + -0.0048142592422664165, + -0.02327144891023636, + -0.06319259107112885, + -0.020807886496186256, + -0.009859428741037846, + -0.024585437029600143, + -0.12724193930625916, + -0.003742948640137911, + 0.05237032100558281, + 0.025020407512784004, + -0.09230931103229523, + -0.02168898843228817, + -0.03167938068509102, + 0.007672648411244154, + -0.11721004545688629, + -0.05705014988780022, + 0.11372839659452438, + 0.05053676664829254, + -0.09727493673563004, + -0.03694804757833481, + 0.028758037835359573, + -0.11356496065855026, + -0.06055886670947075, + 0.03709336742758751, + -0.046668440103530884, + 0.05013391748070717, + 0.036077845841646194, + 0.020448192954063416, + -0.018890956416726112, + -0.006291141267865896, + -0.028490275144577026, + 0.022874874994158745, + -0.04017620533704758, + 0.003529897192493081, + -0.06381005048751831, + -0.0650351271033287, + -0.0880802795290947, + 0.007952220737934113, + 0.021794356405735016, + -0.029200220480561256, + -0.020312590524554253, + 0.04302005469799042, + 0.037776049226522446, + 0.04313601925969124, + 0.003669072175398469, + -0.03279906511306763, + -0.005237251054495573, + -0.03285222500562668, + 0.009105152450501919, + 0.013940997421741486, + 0.04923628643155098, + -1.2405961667067028e-33, + 0.04501548036932945, + 0.0820869505405426, + 0.03342878073453903, + 0.0774216502904892, + -0.045289088040590286, + 0.037353452295064926, + 0.06647999584674835, + -0.005362827796489, + 0.0019108690321445465, + 0.10889846086502075, + 0.030093925073742867, + 0.0780109316110611, + -0.07335036993026733, + 0.09140247851610184, + 0.09829525649547577, + -0.06737449020147324, + 0.03373315930366516, + -0.036849070340394974, + -0.0363972969353199, + -0.010522687807679176, + -0.004812273662537336, + 0.13619364798069, + 0.015302486717700958, + -0.06086963042616844, + -0.024368533864617348, + 0.022160274907946587, + -0.06719373166561127, + -0.00033296094625256956, + 0.0545872338116169, + 0.015341640450060368, + 0.01781054399907589, + 0.010094864293932915, + -0.051705095916986465, + -0.0038725361227989197, + 0.08144737035036087, + -0.017392823472619057, + -0.006375737488269806, + -0.054526932537555695, + -0.040169794112443924, + 0.09720510989427567, + -0.10432825982570648, + -0.04010952264070511, + -0.07635292410850525, + -0.055710699409246445, + 0.030683070421218872, + 0.06461867690086365, + 0.03937964141368866, + -0.09537627547979355, + -0.08232245594263077, + 0.03927648812532425, + -0.08633965998888016, + 0.041078053414821625, + 0.002731181913986802, + 0.0026000565849244595, + 0.009660860523581505, + -0.1298961490392685, + 0.018014822155237198, + 0.057676058262586594, + 0.0009905535262078047, + 0.04314985126256943, + 0.04758450388908386, + -0.055733952671289444, + 0.034889400005340576, + -0.038481857627630234, + -0.041747819632291794, + 0.10174265503883362, + 0.09928812086582184, + -0.0282533410936594, + 0.02546856179833412, + -0.03237626701593399, + 0.03791845217347145, + 0.05385100096464157, + 0.05358760803937912, + 0.009952106513082981, + -0.0010479082120582461, + 0.02952728234231472, + -0.06477590650320053, + -0.018402287736535072, + -0.047966714948415756, + -0.09249664843082428, + -0.06328976154327393, + 0.0423659048974514, + -0.07348795980215073, + 0.10549720376729965, + 0.03534378483891487, + -0.004178035072982311, + -0.01574607752263546, + -0.06297082453966141, + -0.05905299633741379, + -0.0007441174820996821, + -0.1437133252620697, + 0.04752641171216965, + 0.023765111342072487, + -0.02407740242779255, + -0.013186515308916569, + -1.8741281123984054e-33, + 0.01092308759689331, + -0.0591236911714077, + 0.008317803032696247, + -0.01207677647471428, + -0.03414217755198479, + -0.013806222938001156, + -0.03617207705974579, + 0.02421122044324875, + -0.011018756777048111, + 0.007043180055916309, + 0.028555860742926598, + 0.016232142224907875, + -0.040311235934495926, + -0.004018931649625301, + -0.011037902906537056, + -0.01527806743979454, + -0.012006388045847416, + 0.04947389289736748, + 0.049262698739767075, + -0.05263790860772133, + 0.013311214745044708, + 0.015073607675731182, + -0.010388514026999474, + 0.026577113196253777, + 0.003233464201912284, + 0.023184530436992645, + 0.04214891418814659, + -0.035048678517341614, + 0.026770681142807007, + 0.0593707375228405, + 0.003653515363112092, + 0.0239883940666914, + 0.10114473849534988, + 0.03848465159535408, + -0.007682477589696646, + 0.04516170918941498, + 0.06867780536413193, + -0.012439182959496975, + -0.027436820790171623, + -0.048746827989816666, + 0.004780309274792671, + -0.019719695672392845, + 0.04387719929218292, + 0.022504132241010666, + 0.002865253482013941, + 0.02667095884680748, + -0.043340180069208145, + -0.014726904220879078, + 0.04332461208105087, + 0.0941273644566536, + 0.010693768970668316, + -0.060405418276786804, + -0.026737656444311142, + -0.05689854547381401, + -0.06774776428937912, + -0.0840149000287056, + -0.07331240922212601, + -0.015484781935811043, + 0.03771011903882027, + 0.03344498202204704, + 0.07125186175107956, + 0.012104113586246967, + -0.10335201770067215, + 0.035848841071128845, + 0.013334164395928383, + 0.004284909926354885, + 0.1519336998462677, + 0.009553435258567333, + 0.1293499618768692, + -0.031309206038713455, + -0.043909039348363876, + -0.023182092234492302, + 0.08794296532869339, + 0.013719606213271618, + -0.012599068693816662, + -0.06340595334768295, + -0.006118993740528822, + 0.02374568209052086, + 0.046233560889959335, + 0.014825396239757538, + 0.01475275494158268, + -0.06668149679899216, + 0.041334763169288635, + 0.04227139428257942, + -0.019726866856217384, + 0.013957436196506023, + 0.0227611493319273, + -0.023058906197547913, + -0.03883245959877968, + -0.06841883808374405, + 5.152327867108397e-05, + 0.07480562478303909, + 0.051225680857896805, + 0.048620518296957016, + -0.04771489277482033, + -2.2166883439922458e-08, + 0.07059895992279053, + -0.006096362601965666, + -0.004551011603325605, + -0.028386371210217476, + 0.04017619043588638, + -0.025286205112934113, + -0.03781154006719589, + -0.09601140767335892, + -0.047600869089365005, + -0.0017676312709227204, + 0.052261002361774445, + -0.001268533756956458, + -0.03006863221526146, + -0.010779538191854954, + 0.06042151153087616, + 0.04488049075007439, + -0.05053836107254028, + 0.07893501222133636, + 0.0014851345913484693, + 0.027791030704975128, + -0.010549829341471195, + 0.05936044827103615, + -0.0038057451602071524, + -0.11185494065284729, + 0.025496361777186394, + -0.005536419339478016, + -0.0941632091999054, + -0.001487272558733821, + 0.06299782544374466, + 0.0842486247420311, + 0.08586517721414566, + 0.003786669811233878, + 0.019324231892824173, + -0.002917700679972768, + -0.06915710121393204, + -0.04572002589702606, + 0.006388050504028797, + 0.0014678335282951593, + 0.028991034254431725, + 0.01844041235744953, + -0.01261897012591362, + -0.04316850006580353, + -0.09970363229513168, + -0.006231956649571657, + -0.026668118312954903, + 0.007708995137363672, + 0.025542601943016052, + -0.06133651360869408, + -0.09939184039831161, + -0.06946154683828354, + -0.0748245120048523, + 0.07323135435581207, + 0.030604109168052673, + 0.033389877527952194, + 0.023294340819120407, + 0.03276180103421211, + 0.021318344399333, + 0.03401893749833107, + -0.025689145550131798, + -0.030961576849222183, + 0.08907715231180191, + -0.010387933813035488, + -0.021260278299450874, + 0.06412757933139801 + ], + "garage-bold||vehicles,automobile,buildings,transportation": [ + 0.018653972074389458, + -0.023600537329912186, + 0.01989840716123581, + 0.020776860415935516, + 0.0033591599203646183, + 0.020399602130055428, + 0.0019559466745704412, + -0.010710987262427807, + -0.06408187747001648, + -0.03033202514052391, + 0.09426893293857574, + -0.013899699784815311, + 0.047511521726846695, + -0.037676118314266205, + 0.027234099805355072, + 0.0764751210808754, + 0.06654685735702515, + 0.03866393119096756, + -0.009258252568542957, + 0.016142942011356354, + -0.0013926252722740173, + 0.054965436458587646, + 0.0106481509283185, + 0.017581457272171974, + 0.042895566672086716, + 0.0988847091794014, + -0.024126581847667694, + 0.07862916588783264, + 0.03087093122303486, + -0.06405289471149445, + -0.05109160393476486, + 0.04823700338602066, + 0.08128264546394348, + 0.02722766622900963, + 0.14456775784492493, + 0.013381215743720531, + 0.02409018576145172, + -0.04398326203227043, + -0.014100596308708191, + -0.039191484451293945, + -0.024527091532945633, + -0.06149544194340706, + 0.011065786704421043, + -0.030052583664655685, + 0.029265521094202995, + -0.01674235612154007, + 0.05348179489374161, + -0.05575895309448242, + 0.053541358560323715, + -0.06362387537956238, + -0.028180215507745743, + -0.037696097046136856, + -0.026885660365223885, + 0.013959288597106934, + -0.03767579048871994, + 0.04494360089302063, + -0.02615862339735031, + 0.013131648302078247, + 0.03478843346238136, + 0.010785981081426144, + 0.05199557915329933, + 0.012427324429154396, + -0.05013173818588257, + 0.022986408323049545, + 0.03847666457295418, + -0.0268382765352726, + -0.028291555121541023, + 0.04736936837434769, + 0.0017442532116547227, + 0.03131648525595665, + 0.10387173295021057, + -0.04591850936412811, + -0.038984596729278564, + 0.022074192762374878, + -0.04312549903988838, + -0.09266562014818192, + 0.06541755795478821, + 0.006383167579770088, + -0.01935107447206974, + -0.10539453476667404, + -0.042183712124824524, + -0.05304253101348877, + -0.007107237819582224, + -0.07472650706768036, + -0.032308824360370636, + 0.021315963938832283, + -0.06414027512073517, + -0.00866513978689909, + 0.004323170054703951, + 0.02471274882555008, + -0.0950879231095314, + -0.10638902336359024, + -0.006323987152427435, + -0.006085893604904413, + -0.06333345919847488, + 0.04276878386735916, + 0.06361084431409836, + -0.08996514230966568, + 0.012357775121927261, + 0.10144301503896713, + 0.05830205976963043, + 0.044169340282678604, + 0.03244750201702118, + -0.002834685379639268, + -0.07411228120326996, + 0.03398692235350609, + -0.02235964685678482, + 0.04142022877931595, + -0.015323569066822529, + 0.02339901588857174, + 0.05250438675284386, + -0.09614892303943634, + -0.03128364309668541, + -0.04813194274902344, + -0.08716358244419098, + -0.08236180245876312, + 0.008948258124291897, + -0.004385997541248798, + 0.12371932715177536, + 0.07557999342679977, + -0.02412164770066738, + -0.07183445245027542, + 0.04585910961031914, + 0.04064527526497841, + -0.008585781790316105, + -0.02107182890176773, + -0.008968664333224297, + -4.791634194136289e-33, + -0.014946645125746727, + -0.007864153943955898, + 0.012689136900007725, + 0.1494731903076172, + 0.07563577592372894, + -0.013651362620294094, + -0.04441748186945915, + 0.06531421095132828, + -0.022182732820510864, + 0.00805053673684597, + 0.08529558032751083, + 0.04061058163642883, + -0.07189112901687622, + 0.029790466651320457, + 0.02684737741947174, + -0.00271613453514874, + -0.08437584340572357, + -0.028361227363348007, + -0.03658955171704292, + -0.0011913535417988896, + -0.08966708928346634, + 0.04580762982368469, + 0.01581788994371891, + -0.02014930546283722, + 0.027197470888495445, + -0.055024635046720505, + 0.022309845313429832, + -0.02635195292532444, + -0.003104378003627062, + 0.06578488647937775, + -0.0048275901935994625, + 0.12408511340618134, + 0.02006574161350727, + 0.016560055315494537, + -0.013483015820384026, + 0.06277685612440109, + -0.08823352307081223, + -0.0628322884440422, + -0.0593586228787899, + 0.011429062113165855, + -0.05882500484585762, + -0.06837186217308044, + -0.0899798721075058, + -0.005616342183202505, + 0.040638409554958344, + 0.12019094079732895, + 0.041197698563337326, + -0.06287696212530136, + 0.00043691881000995636, + 0.001943143899552524, + -0.04534810036420822, + -0.024055447429418564, + -0.07551375776529312, + 0.0005308761610649526, + -0.009678510017693043, + -0.01909181848168373, + -0.02114436961710453, + 0.040513452142477036, + -0.013170391321182251, + 0.011811956763267517, + -0.04737893491983414, + 0.12011584639549255, + 0.045440446585416794, + -0.010342774912714958, + -0.021952491253614426, + 0.02958800084888935, + -0.02497042715549469, + 0.08139248192310333, + 0.09221333265304565, + 0.07454445213079453, + -0.018965989351272583, + -0.0342613086104393, + 0.062381938099861145, + 0.05583474040031433, + 0.06524590402841568, + 0.023547932505607605, + -0.09054107218980789, + 0.03459583967924118, + -0.06931644678115845, + 0.005740420427173376, + -0.08901618421077728, + 0.048336394131183624, + -0.05379953980445862, + 0.11061625927686691, + 0.04953751713037491, + 0.06529127061367035, + 0.03381934016942978, + -0.08920243382453918, + -0.029788531363010406, + 0.02621166966855526, + -0.09970512241125107, + 0.023746715858578682, + -0.016009608283638954, + -0.01857476308941841, + -0.10756373405456543, + -2.189331825701365e-34, + 0.02220419980585575, + 0.03300878778100014, + -0.026852190494537354, + -0.035562723875045776, + -0.015910498797893524, + 0.018396370112895966, + -0.0298833716660738, + -0.05499938130378723, + -0.017741139978170395, + 0.07527352124452591, + -0.06288699805736542, + -0.03949667513370514, + 0.0018153514247387648, + -0.03023800626397133, + 0.023027965798974037, + -0.008214617148041725, + 0.031143050640821457, + -0.057876985520124435, + -0.07646392285823822, + 0.03866395354270935, + -0.04983021318912506, + -0.036608558148145676, + -0.047315213829278946, + 0.10223132371902466, + 0.0005159732536412776, + -0.0046471175737679005, + -0.12891115248203278, + -0.030142247676849365, + 0.003541775979101658, + -0.006825197022408247, + -0.08005272597074509, + -0.04250149056315422, + 0.026744917035102844, + 0.05299292504787445, + -0.05999331548810005, + 0.029927637428045273, + 0.010532827116549015, + -0.017860667780041695, + 5.525978849618696e-06, + -0.020031452178955078, + 0.06595603376626968, + -0.04626915976405144, + -0.0005045550060458481, + 0.07856990396976471, + -0.05416553467512131, + -0.05442609265446663, + -0.09175186604261398, + -0.06467143446207047, + -0.028153853490948677, + 0.015209094621241093, + 0.07436957210302353, + 0.0067700170911848545, + -0.06885281950235367, + -0.004089161287993193, + -0.053315483033657074, + -0.021691106259822845, + 0.06219824403524399, + 0.0030038279946893454, + -0.02957250364124775, + 0.12315740436315536, + 0.019543537870049477, + 0.010591663420200348, + -0.05475892126560211, + 0.0900852307677269, + 0.0208353940397501, + -0.12934958934783936, + 0.01373665314167738, + -0.04304365813732147, + -0.017057929188013077, + -0.03291453793644905, + 0.05295493081212044, + 0.020770827308297157, + 0.012786286883056164, + 0.04557653144001961, + -0.03354857489466667, + -0.017475275322794914, + 0.09608925133943558, + 0.00653844466432929, + -0.006844818592071533, + -0.04673587530851364, + -0.004363654647022486, + -0.029955558478832245, + -0.011789960786700249, + 0.12269647419452667, + -0.042231567203998566, + 0.02152412384748459, + -0.02593165449798107, + 0.005303601734340191, + 0.04943162202835083, + 0.042932264506816864, + 0.006053747609257698, + 0.07385234534740448, + -0.049990214407444, + 0.0004587206058204174, + -0.1282968819141388, + -1.9488291869151908e-08, + -0.019241705536842346, + 0.011284567415714264, + -0.07720139622688293, + -0.03795858845114708, + -0.018636362627148628, + -0.0076371245086193085, + 0.045328378677368164, + 0.013440248556435108, + -0.08163221180438995, + 0.014907872304320335, + 0.023235466331243515, + 0.005314412992447615, + -0.06358152627944946, + 0.08572285622358322, + -0.016956420615315437, + -0.026267142966389656, + -0.05477409437298775, + 0.02003048174083233, + -0.03360522910952568, + -0.06916209310293198, + 0.023975828662514687, + 0.015378034673631191, + -0.011198324151337147, + 0.047382090240716934, + -0.012116997502744198, + -0.022866882383823395, + -0.07208149135112762, + 0.03417449817061424, + 0.10807052999734879, + 0.0026687243953347206, + -0.01971781998872757, + 0.06409785896539688, + -0.005417698062956333, + 0.051512133330106735, + -0.025778746232390404, + -0.054855961352586746, + 0.012269345112144947, + -0.013917515985667706, + -0.06674458086490631, + 0.027601974084973335, + 0.03134366124868393, + -0.058150533586740494, + -0.04844224452972412, + -0.039812296628952026, + 0.04221045598387718, + 0.016899487003684044, + 0.004248379729688168, + -0.023559562861919403, + -0.04836487025022507, + -0.020096322521567345, + -0.03477352485060692, + -0.0313873253762722, + 0.02828442119061947, + 0.11721540242433548, + 0.013896887190639973, + -0.048345230519771576, + -0.02576410211622715, + -0.045483458787202835, + -0.006538167595863342, + -0.018319644033908844, + 0.11756329238414764, + 0.04392337054014206, + -0.006150542292743921, + 0.030142923817038536 + ], + "gas-can-bold||jerrycan,petrol,fuel,gasoline": [ + -0.04768846556544304, + 0.05108944699168205, + -0.08216288685798645, + 0.0008813067688606679, + 0.016529204323887825, + -0.05406460911035538, + 0.08546920865774155, + -0.017893236130475998, + -0.026360321789979935, + -0.0784951001405716, + -0.04545440152287483, + 0.05615299940109253, + 0.03478073701262474, + -0.002191662322729826, + -0.05750535428524017, + -0.05545932427048683, + 0.0622870996594429, + -0.05126020684838295, + 0.04283657297492027, + 0.02345285192131996, + 0.09242545813322067, + 0.05822913348674774, + 0.06938263773918152, + 0.0396527424454689, + -0.015134022571146488, + 0.060577668249607086, + -0.0023455852642655373, + 0.09494631737470627, + 0.024399088695645332, + -0.08254504203796387, + -0.012964180670678616, + 0.035683367401361465, + -0.006302046589553356, + -0.009105215780436993, + 0.04473768547177315, + -0.026981716975569725, + -0.022402558475732803, + 0.017509788274765015, + 0.03293472155928612, + 0.08848503232002258, + -0.06242164596915245, + -0.07913507521152496, + -0.06956207752227783, + 0.002797616645693779, + -0.09791090339422226, + -0.06768367439508438, + -0.01035453099757433, + -0.03516075015068054, + -0.008077091537415981, + -0.02055324800312519, + -0.03576148301362991, + -0.013366611674427986, + -0.056799862533807755, + -0.039522990584373474, + 0.09492257982492447, + -0.0483756884932518, + -0.12134373188018799, + 0.013650831766426563, + -0.01768464967608452, + -0.019333599135279655, + 0.043855469673871994, + 0.03765960782766342, + -0.04139161854982376, + 0.012199697084724903, + 0.004753536079078913, + -0.05379697307944298, + 0.010016508400440216, + 0.038242947310209274, + -0.060366563498973846, + -0.011838539503514767, + 0.009930959902703762, + 0.017342014238238335, + -0.055887334048748016, + -0.06625996530056, + -0.06546890735626221, + 0.013468298129737377, + 0.05103246867656708, + 0.004397412296384573, + 0.0008505951846018434, + -0.06206483766436577, + -0.05936344340443611, + -0.06846711784601212, + -0.07184478640556335, + -0.10127288103103638, + -0.05152454599738121, + 0.0315631628036499, + -0.04959418624639511, + -0.011019013822078705, + 0.027603281661868095, + -0.026664268225431442, + -0.06408102065324783, + -0.060902614146471024, + 0.04386057332158089, + 0.053312793374061584, + -0.033159077167510986, + -0.030430497601628304, + 0.08237714320421219, + -0.01364373229444027, + 0.03775252774357796, + 0.041548196226358414, + 0.05708007514476776, + 0.04212719947099686, + -0.01682565174996853, + -0.0741366371512413, + -0.08700470626354218, + 0.04445112869143486, + -0.02025488018989563, + 0.05684131011366844, + 0.07939864695072174, + 0.01454968936741352, + -0.038588996976614, + -0.022471532225608826, + 0.02559245377779007, + -0.06847508251667023, + -0.14959247410297394, + -0.03385785594582558, + -0.07006042450666428, + -0.11586648970842361, + 0.07424341142177582, + 0.03145664557814598, + -0.04467669129371643, + -0.019258616492152214, + -0.014422843232750893, + 0.042308274656534195, + 0.037337593734264374, + 0.009815968573093414, + -0.02318747714161873, + -4.197343923294881e-33, + -0.06145228445529938, + 0.07261764258146286, + 0.02309979684650898, + 0.05760441720485687, + -0.04463062435388565, + 0.05138033628463745, + -0.0338933989405632, + -0.059955015778541565, + -0.06401775777339935, + 0.04182818531990051, + 0.05116766318678856, + 0.0946122333407402, + -0.08052072674036026, + 0.03591716289520264, + -0.05591776221990585, + 0.014405096881091595, + 0.02999649941921234, + -0.07884204387664795, + -0.06951354444026947, + -0.025005824863910675, + -0.05395984649658203, + 0.13855844736099243, + -0.033006202429533005, + -0.02721860259771347, + -0.06098527833819389, + -0.027777863666415215, + -0.04680468514561653, + -0.01034416165202856, + 0.017869427800178528, + 0.04544807970523834, + 0.06547041237354279, + 0.06337276101112366, + -0.03358909860253334, + 0.04288525879383087, + 0.005246838089078665, + 0.014768815599381924, + 0.011312935501337051, + -0.006167951039969921, + -0.06544296443462372, + -0.04615374282002449, + -0.01830901950597763, + 0.012194043956696987, + -0.013596178963780403, + 0.0341285839676857, + -0.03373486176133156, + 0.13839679956436157, + 0.009980938397347927, + 0.03655101731419563, + 0.025777334347367287, + 0.017477847635746002, + -0.04604768007993698, + 0.03847680613398552, + -0.03287520632147789, + -0.0007348278304561973, + -0.030155427753925323, + 0.02692767046391964, + 0.014739238657057285, + -0.006310978438705206, + 0.00881764106452465, + 0.015607197768986225, + -0.02497975341975689, + 0.10180643200874329, + 0.035297077149152756, + -0.03203563764691353, + -0.03578962758183479, + -0.024779025465250015, + -0.03836202993988991, + 0.05551169067621231, + 0.059239305555820465, + 0.07796980440616608, + -0.012142927385866642, + 0.06309286504983902, + 0.08051581680774689, + 0.04242284223437309, + 0.020821234211325645, + 0.00899225752800703, + 0.013780889101326466, + -0.015145868062973022, + 0.005560912191867828, + -0.0068264855071902275, + -0.03622141480445862, + -0.06402261555194855, + 0.0018629286205396056, + 0.010551859624683857, + -0.017779747024178505, + -0.004539621528238058, + -0.014916514977812767, + -0.09155803918838501, + -0.0016886794473975897, + 0.0912284329533577, + -0.08506041765213013, + -0.02786485105752945, + 0.046458370983600616, + -0.10373495519161224, + -0.042509179562330246, + -3.7707050904083953e-34, + 0.04974933713674545, + 0.048503465950489044, + 0.02109430730342865, + -0.00707717752084136, + 0.08029914647340775, + 0.02194887027144432, + 0.05529497563838959, + -0.0384778268635273, + 0.001764582353644073, + -0.06390616297721863, + 0.017106564715504646, + -0.0244637131690979, + 0.016637029126286507, + -0.042305659502744675, + 0.02510259300470352, + 0.03068246878683567, + -0.02353454940021038, + 0.008509889245033264, + -0.03005336783826351, + -0.014627945609390736, + -0.14273174107074738, + -0.028536370024085045, + -0.11497878283262253, + 0.10742583125829697, + -0.07379181683063507, + 0.046218473464250565, + 0.04199941083788872, + -0.004663980565965176, + -0.06555089354515076, + 0.016337381675839424, + 0.04505360499024391, + -0.027658073231577873, + -0.022625254467129707, + 0.05873934179544449, + -0.06690254807472229, + 0.03846435248851776, + 0.004390808753669262, + -0.004189863335341215, + -0.05831840634346008, + -0.05207967758178711, + -0.03820830211043358, + 0.01344011165201664, + 0.08317551761865616, + 0.06146460026502609, + -0.06799677759408951, + -0.009880449622869492, + 0.0345151424407959, + -0.14808565378189087, + 0.022910794243216515, + 0.10112238675355911, + 0.03964744508266449, + -0.010982719250023365, + -0.02811197191476822, + 0.05602876842021942, + -0.0020211474038660526, + 0.029918644577264786, + 0.043508391827344894, + 0.04677288606762886, + -0.05425148084759712, + 0.028618192300200462, + 0.027638036757707596, + 0.03131565451622009, + 5.014381531509571e-05, + 0.023994985967874527, + 0.030043091624975204, + -0.13636243343353271, + -0.048891350626945496, + -0.09237999469041824, + 0.13842712342739105, + 0.0410286970436573, + 0.009936537593603134, + 0.011692077852785587, + 0.0013087352272123098, + 0.038505226373672485, + -0.006381263490766287, + 0.03552201762795448, + 0.024408146739006042, + -0.021064849570393562, + -0.06551696360111237, + -0.008665609173476696, + 0.013245349749922752, + -0.0051611242815852165, + -0.058775562793016434, + 0.0657232254743576, + 0.04733924940228462, + 0.05292225629091263, + -0.026833800598978996, + -0.03471311554312706, + 0.03308046981692314, + 9.624205267755315e-05, + 0.015889419242739677, + 0.01772693544626236, + -0.028818698599934578, + -0.008105583488941193, + -0.023174135014414787, + -1.769620006086825e-08, + -0.033048104494810104, + -0.06529255211353302, + -0.09684756398200989, + -0.032200008630752563, + 0.014080716297030449, + 0.012728981673717499, + 0.014637401327490807, + -0.03129449114203453, + -0.08112772554159164, + 0.02165599726140499, + 0.13038475811481476, + 0.056797124445438385, + 0.01746102049946785, + -0.023622911423444748, + 0.005760915577411652, + -0.037749867886304855, + -0.0329483337700367, + 0.040921926498413086, + -0.0028380618896335363, + -0.016319984570145607, + -0.0806082934141159, + 0.06040339916944504, + -0.02188355289399624, + -0.04591120406985283, + 0.02266838029026985, + 0.008383289910852909, + 0.006642407272011042, + 0.05287166312336922, + 0.11542655527591705, + 0.049631983041763306, + 0.048931725323200226, + 0.02988375350832939, + -0.015228449366986752, + -0.018992828205227852, + -0.008814431726932526, + -0.09314543753862381, + 0.011433424428105354, + 0.06505962461233139, + -0.0367995910346508, + 0.04085557535290718, + 0.07021843641996384, + 0.025139331817626953, + -0.017378536984324455, + 0.008631606586277485, + -0.013085471466183662, + 0.009963138028979301, + -0.06208696961402893, + -0.006937212776392698, + -0.024507654830813408, + -0.01985638029873371, + 0.011112593114376068, + 0.05066150799393654, + -0.006896698381751776, + 0.07150431722402573, + 0.04140367731451988, + -0.016026392579078674, + -0.08472304046154022, + 0.15049031376838684, + -0.006345192436128855, + -0.025301527231931686, + 0.0752735435962677, + 0.04732766002416611, + 0.06398797035217285, + -0.016299044713377953 + ], + "gas-pump-bold||gas station,petrol,fuel,gasoline": [ + -0.007607134524732828, + 0.002362279687076807, + -0.08918562531471252, + -0.0008521912968717515, + 0.002927575260400772, + 0.005557926371693611, + 0.041810292750597, + 0.018389707431197166, + -0.0632895976305008, + -0.13059718906879425, + -0.00891511607915163, + 0.01743929833173752, + -7.097943921507976e-07, + -0.015056462027132511, + -0.02269969880580902, + 0.01150647271424532, + 0.010184375569224358, + -0.02771894447505474, + 0.032123345881700516, + 0.029633302241563797, + 0.04818476736545563, + 0.006949751637876034, + 0.06086932122707367, + 0.029737206175923347, + 0.017179615795612335, + 0.10271576046943665, + 0.0010380962630733848, + 0.0579865388572216, + -0.00640203757211566, + -0.036791279911994934, + -0.05291643738746643, + -0.03622931241989136, + 0.010291669517755508, + -0.015824539586901665, + 0.0691445916891098, + 0.008698695339262486, + -0.03560192883014679, + 0.03910903260111809, + 0.043111078441143036, + 0.07325233519077301, + 0.004632211290299892, + -0.15001808106899261, + -0.02866709791123867, + 0.0628218874335289, + -0.03635798394680023, + -0.03692442178726196, + 0.005108536686748266, + 0.02306215837597847, + 0.02993607148528099, + -0.0316573828458786, + -0.06878535449504852, + -0.11779487133026123, + -0.07508864253759384, + 0.02160302735865116, + 0.04478958621621132, + 0.016576802358031273, + -0.044326238334178925, + -0.013766346499323845, + 0.044650737196207047, + -0.061994291841983795, + 0.05546485632658005, + 0.048845577985048294, + 0.03811680153012276, + 0.06718319654464722, + 0.006762177683413029, + -0.03195203095674515, + 0.015150648541748524, + 0.033677276223897934, + 0.025807878002524376, + -0.019006362184882164, + -0.0020873991306871176, + -0.00631764717400074, + 0.00810758676379919, + -0.05237734317779541, + -0.055568382143974304, + 0.03560953959822655, + 0.04728323593735695, + -0.012433831579983234, + -0.00748869776725769, + -0.046321332454681396, + 0.0028626671992242336, + -0.07154417037963867, + -0.08001028746366501, + -0.1043282002210617, + -0.05298881605267525, + 0.045645277947187424, + -0.021469684317708015, + -0.08068668097257614, + -0.014309522695839405, + -0.08480432629585266, + -0.07839517295360565, + -0.05190887302160263, + 0.01318606361746788, + 0.054930463433265686, + 0.006380405742675066, + -0.01861765794456005, + 0.02375195175409317, + 0.05141172930598259, + 0.0037827384658157825, + -0.009690647013485432, + 0.09194383770227432, + 0.09884050488471985, + -0.03623044863343239, + -0.015828292816877365, + -0.07329203933477402, + -0.012838475406169891, + -0.042312659323215485, + 0.05443854257464409, + 0.02109604701399803, + -0.047572217881679535, + -0.02151327021420002, + -0.05298999324440956, + -0.020874829962849617, + -0.06759222596883774, + -0.11584794521331787, + 0.0047475118190050125, + -0.0627870038151741, + -0.08528821170330048, + 0.005317718256264925, + 0.13038389384746552, + -0.05820988118648529, + -0.04518294334411621, + -0.028047217056155205, + 0.008007785305380821, + -0.03415494039654732, + 0.007856854237616062, + 0.035882048308849335, + -3.559138285532706e-33, + -0.059372544288635254, + -0.01204906590282917, + 0.031482916325330734, + 0.0600559376180172, + -0.05337952449917793, + 0.11822303384542465, + -0.06879888474941254, + -0.02119283936917782, + -0.06690111011266708, + 0.0935681089758873, + 0.029787959530949593, + 0.058405738323926926, + -0.04928024485707283, + 0.024530671536922455, + -0.07264231890439987, + -0.0515693761408329, + 0.008084005676209927, + 0.0022361327428370714, + -0.07565729320049286, + -0.07583682239055634, + -0.017706288024783134, + 0.14927342534065247, + -0.0712663009762764, + -0.09697819501161575, + -0.02470477484166622, + -0.018359113484621048, + -0.006774505600333214, + -0.017120128497481346, + 0.008257542736828327, + 0.03161478415131569, + 0.07223550975322723, + 0.03935925289988518, + -0.03228858858346939, + 0.022262582555413246, + -0.02345496229827404, + -0.027347417548298836, + -0.0329919196665287, + -0.03383701667189598, + -0.041202377527952194, + -0.01578647829592228, + -0.12775035202503204, + 0.013646222651004791, + 0.0028584683313965797, + -0.0022651441395282745, + -0.005014811176806688, + 0.11268093436956406, + 0.018959371373057365, + -0.020736712962388992, + 0.07360804826021194, + -0.03455072641372681, + -0.04865020141005516, + -0.035506874322891235, + -0.03214847296476364, + 0.015240712091326714, + 0.04897061362862587, + -0.0042652259580791, + -0.01052145380526781, + 0.061809100210666656, + -0.04427819326519966, + -0.002386050997301936, + -0.04100630432367325, + 0.06170300766825676, + -0.0343499593436718, + -0.06500045210123062, + -0.012992720119655132, + 0.030662475153803825, + -0.03600210323929787, + -0.03390313312411308, + 0.11078926175832748, + 0.11206629127264023, + -0.014333636499941349, + 0.019455106928944588, + 0.02596176229417324, + 0.09954999387264252, + 0.05577355995774269, + 0.030921967700123787, + 0.020613359287381172, + 0.0054647065699100494, + -0.08378725498914719, + -0.005002912599593401, + -0.07613854855298996, + -0.06095268204808235, + -0.05413457378745079, + 0.04187348857522011, + 0.00871415063738823, + -0.005881806369870901, + -0.06496084481477737, + -0.06496867537498474, + 0.03451595827937126, + 0.06020904332399368, + -0.09649321436882019, + 0.03611965477466583, + -0.012707950547337532, + -0.058188747614622116, + -0.011115447618067265, + -1.6475549741907674e-34, + 0.010916057974100113, + 0.07894039154052734, + -0.020602835342288017, + -0.05501331761479378, + 0.03338765725493431, + 0.051535043865442276, + 0.07770703732967377, + -0.10846365243196487, + -0.014327028766274452, + 0.07429429143667221, + -0.051363009959459305, + -0.00290153780952096, + 0.03459444269537926, + -0.016907401382923126, + -0.05045860633254051, + 0.04599165916442871, + -0.012299197725951672, + -0.015293958596885204, + -0.03844780847430229, + 0.01702355034649372, + -0.07172674685716629, + 0.020978545770049095, + -0.06215928867459297, + 0.11699382960796356, + -0.06948817521333694, + 0.05055815353989601, + 0.02196626551449299, + -0.06379583477973938, + 0.011247755028307438, + 0.03394836187362671, + 0.026110969483852386, + 0.010632352903485298, + -0.0036354288458824158, + 0.05343019589781761, + -0.11889774352312088, + 0.05319208279252052, + 0.03907079994678497, + 0.018065864220261574, + 0.015856053680181503, + -0.04501163214445114, + -0.042095255106687546, + -0.004684882704168558, + 0.05318637937307358, + 0.026135656982660294, + -0.08222556114196777, + -0.02297966368496418, + 0.03921293094754219, + -0.11896200478076935, + -0.010375993326306343, + 0.07711534947156906, + -0.076824851334095, + -0.048064496368169785, + -0.02515794336795807, + -0.015358653850853443, + 0.010239752009510994, + -0.03158418461680412, + -0.008243273943662643, + 0.0038889655843377113, + -0.015986798331141472, + 0.04432437941431999, + 0.08872373402118683, + 0.016769785434007645, + 0.008693398907780647, + 0.010681201703846455, + -0.05510849505662918, + -0.05116056650876999, + 0.04812649264931679, + -0.06550673395395279, + 0.13234063982963562, + -0.02457326464354992, + -0.0009349162573926151, + 0.09051664918661118, + 0.007766855880618095, + 0.05380693078041077, + -0.05414305627346039, + 0.015269899740815163, + 0.05594085156917572, + 0.04817502945661545, + 0.0036687448155134916, + 0.02097906358540058, + 0.053216543048620224, + -0.0020094485953450203, + -0.002618763828650117, + 0.038309428840875626, + -0.01341958623379469, + 0.013095181435346603, + 0.0164004098623991, + 0.025357916951179504, + 0.06789388507604599, + -0.026138976216316223, + 0.016876952722668648, + 0.0845557227730751, + -0.04636085778474808, + -0.0033760997466742992, + -0.04098230227828026, + -1.8161331993837848e-08, + -0.023398417979478836, + -0.038565825670957565, + -0.0019152365857735276, + -0.00808362103998661, + 0.0010322693269699812, + -0.026357632130384445, + -0.027411028742790222, + 0.0039277286268770695, + -0.06125304102897644, + 0.004415262024849653, + 0.05884818732738495, + 0.029059989377856255, + -0.0010785277700051665, + -0.04823113977909088, + 0.05812866985797882, + -0.01626446098089218, + -0.09208434820175171, + 0.048176269978284836, + 0.027531493455171585, + 0.014880562201142311, + 0.023732470348477364, + 0.04671560972929001, + -0.025944968685507774, + 0.01458996906876564, + 0.06547375023365021, + 0.01687084697186947, + 0.005155542865395546, + 0.051171768456697464, + 0.10158997029066086, + 0.033687714487314224, + 0.12526772916316986, + 0.04572029039263725, + -0.016673646867275238, + -0.026601184159517288, + -0.055954400449991226, + -0.017721274867653847, + -0.014940612018108368, + 0.039005398750305176, + -0.11486358195543289, + 0.10420497506856918, + 0.05023100972175598, + -0.0005707860691472888, + -0.006959500722587109, + -0.008724016137421131, + 0.006183058954775333, + 0.03870102018117905, + -0.023557528853416443, + -0.0011345696402713656, + -0.03056776523590088, + -0.05667755380272865, + -0.03923872485756874, + -0.05673321709036827, + 0.019416065886616707, + 0.11094173789024353, + 0.09373875707387924, + -0.05037332698702812, + -0.077322818338871, + 0.11065325886011124, + 0.0003294203488621861, + 0.019847149029374123, + 0.04651365056633949, + 0.07313518226146698, + 0.04377932474017143, + -0.007639918476343155 + ], + "gauge-bold||dashboard,meter,speed,speedometer,odometer,performance": [ + -0.04842080920934677, + 0.009388050995767117, + -0.0815412625670433, + 0.018921149894595146, + 0.0007550218724645674, + -0.014416427351534367, + 0.029007337987422943, + -0.005258111283183098, + -0.0014547571772709489, + -0.06852581351995468, + 0.02160077542066574, + -0.02306699939072132, + 0.028441669419407845, + -0.0030641767662018538, + -0.06263412535190582, + -0.008303772658109665, + 0.07068357616662979, + 0.013412714935839176, + -0.01580900512635708, + -0.012537799775600433, + 0.009048573672771454, + 0.025047188624739647, + 0.0602833554148674, + 0.07755125313997269, + 0.01349884644150734, + 0.0019193912157788873, + -0.059077419340610504, + 0.05420384556055069, + -0.019210826605558395, + -0.0851917713880539, + -0.02800183743238449, + -0.02972862869501114, + 0.037163347005844116, + 0.006071282550692558, + -0.03290684521198273, + -0.027850287035107613, + 0.04565960541367531, + -0.039891261607408524, + -0.022228291258215904, + 0.03844824805855751, + -0.004082649480551481, + -0.06057677045464516, + 0.002812666352838278, + 0.07093168795108795, + 0.0770018994808197, + 0.05608173459768295, + -0.007089192047715187, + -0.02114199288189411, + -0.011754767969250679, + 0.012003772892057896, + -0.037291038781404495, + -0.013181300833821297, + -0.05616035684943199, + -0.0372668094933033, + 0.014884253032505512, + 0.08808109909296036, + -0.08078079670667648, + 0.014497054740786552, + 0.0720459446310997, + -0.05521552264690399, + -0.0065583656542003155, + -0.028220418840646744, + -0.013607249595224857, + 0.06390578299760818, + 0.03302406892180443, + -0.03456174209713936, + -0.01731066033244133, + 0.04816482588648796, + 0.040182191878557205, + 0.030297553166747093, + 0.04897771030664444, + 0.027112718671560287, + 0.016486449167132378, + -0.012788423337042332, + -0.008069660514593124, + 0.006596362683922052, + -0.007470686454325914, + -0.00175958382897079, + -0.033138640224933624, + -0.06761222332715988, + -0.04737337306141853, + -0.028207240626215935, + -0.054065197706222534, + 0.031020576134324074, + 0.05863843113183975, + 0.0335761159658432, + 0.03760417178273201, + -0.04804478958249092, + -0.022941146045923233, + -0.0739464983344078, + 0.008047744631767273, + -0.0601193830370903, + -0.10481149703264236, + -0.04686973989009857, + -0.019142678007483482, + 0.0794263482093811, + -0.04263240098953247, + 0.00712590990588069, + -0.018535904586315155, + 0.05693014711141586, + 0.05579138174653053, + 0.006212987471371889, + 0.01372806541621685, + 0.13042965531349182, + -0.03528290241956711, + -0.02471206523478031, + 0.002670113928616047, + 0.11409182846546173, + -0.0008218649309128523, + 0.03812780976295471, + 0.09059497714042664, + -0.04358475282788277, + -0.030977079644799232, + -0.06165141612291336, + 0.0066347504034638405, + 0.03136124089360237, + -0.08745462447404861, + 0.05124521255493164, + 0.06740623712539673, + 0.16480521857738495, + 0.0035206805914640427, + -0.038601651787757874, + -0.018015483394265175, + -0.019076216965913773, + 0.04453807324171066, + 0.10018704831600189, + 0.05236614868044853, + -7.014319891440519e-34, + -0.0109572047367692, + -0.0037376147229224443, + 0.00847114622592926, + 0.03968735784292221, + -0.05874260142445564, + 0.03906984627246857, + -0.06784138083457947, + 0.03236516937613487, + 0.01569962501525879, + 0.11211881041526794, + -0.0015770362224429846, + 0.15564610064029694, + -0.05918097123503685, + 0.07748673111200333, + 0.06635788083076477, + -0.06944549083709717, + 0.006270791403949261, + -0.006576203275471926, + -0.04826032370328903, + -0.05429229140281677, + 0.016581060364842415, + -0.006240749731659889, + -0.03305032476782799, + -0.03010890632867813, + 0.049151696264743805, + 0.02608771249651909, + 0.07153954356908798, + 0.07066240161657333, + -0.0982469841837883, + 0.038082968443632126, + 0.018023818731307983, + -0.019638119265437126, + 0.004895713180303574, + 0.0026240756269544363, + -0.015906846150755882, + -0.05618035048246384, + -0.06388285756111145, + -0.04458441212773323, + 0.056420113891363144, + -0.01639639586210251, + -0.039329443126916885, + -0.016534103080630302, + -0.02990148402750492, + -0.03939864784479141, + -0.07926147431135178, + 0.05120895430445671, + 0.00692844158038497, + -0.013578738085925579, + 0.07234328240156174, + 0.038947489112615585, + -0.07333963364362717, + -0.02482815831899643, + 0.0028614404145628214, + -0.023296277970075607, + 0.037076547741889954, + 0.007294034119695425, + -0.0172867514193058, + 0.0108120646327734, + -0.03290378302335739, + 0.03661400452256203, + -0.07631004601716995, + 0.0776660144329071, + 0.009755976498126984, + -0.07356914132833481, + -0.00813234131783247, + 0.031577154994010925, + -0.011134076863527298, + 0.04849489778280258, + 0.032171349972486496, + 0.009256111457943916, + -0.058409497141838074, + -0.0017557743703946471, + 0.016823014244437218, + 0.014937628991901875, + 0.0639423355460167, + 0.04556841030716896, + 0.03231767565011978, + 0.040949106216430664, + -0.04094354808330536, + -0.09813076257705688, + -0.13636595010757446, + 0.005280571058392525, + -0.01981271244585514, + 0.118062824010849, + 0.03279584273695946, + -0.0008612708188593388, + 0.009340571239590645, + -0.0775015652179718, + -0.03313542157411575, + -0.007047135382890701, + -0.054414302110672, + 0.0761079341173172, + -0.08700839430093765, + -0.050520844757556915, + -0.14079900085926056, + -3.376190130406983e-34, + -0.01956307142972946, + 0.06554083526134491, + 0.04016325622797012, + 0.06246815621852875, + 0.045021411031484604, + 0.011722070164978504, + 0.014522730372846127, + 0.019642194733023643, + 0.02668478898704052, + 0.0633263885974884, + 0.025172125548124313, + -0.016897335648536682, + -0.08157455176115036, + 5.4152365009940695e-06, + 0.031855639070272446, + 0.04429316520690918, + -0.07573149353265762, + -0.035163260996341705, + -0.0454469695687294, + 0.0027866775635629892, + -0.06834391504526138, + 0.016038931906223297, + -0.044755659997463226, + -0.0444708913564682, + -0.010190574452280998, + 0.028816238045692444, + -0.003610395360738039, + -0.10269875079393387, + -0.030161678791046143, + -0.05405197665095329, + -0.025120984762907028, + -0.03373344615101814, + 0.0220450758934021, + 0.09537693113088608, + -0.0562732070684433, + -0.021009447053074837, + 0.12904132902622223, + -0.004169394727796316, + -0.03500659763813019, + 0.05837906897068024, + 0.007506541907787323, + 0.06594351679086685, + 0.09191475808620453, + -0.03540443629026413, + -0.061722829937934875, + 0.04697560518980026, + 0.04632064700126648, + -0.06328578293323517, + -0.06927219033241272, + 0.032784461975097656, + 0.014278939925134182, + 0.021040568128228188, + -0.0055052354000508785, + 0.05888114497065544, + -0.10027223080396652, + -0.06377288699150085, + 0.006307091098278761, + -0.03539682924747467, + -0.07717110216617584, + 0.06765546649694443, + 0.09070587158203125, + -0.003924246411770582, + -0.014732812531292439, + 0.09683678299188614, + -0.002473687520250678, + -0.08728227019309998, + 0.019947350025177002, + -0.08114858716726303, + -0.03997363522648811, + 0.06775292009115219, + 0.0067660631611943245, + -0.05249950662255287, + 0.010339920409023762, + -0.03314942866563797, + -0.025418266654014587, + -0.05653182044625282, + -0.004613020457327366, + 0.025581728667020798, + -0.00492152338847518, + 0.02255963906645775, + 0.04216296225786209, + 0.010756419040262699, + -0.012258813716471195, + 0.05778941512107849, + -0.04838300868868828, + 0.060926277190446854, + -0.010303971357643604, + 0.045676492154598236, + 0.06580188125371933, + 0.0369415357708931, + 0.006552307400852442, + 0.06256702542304993, + -0.07029738277196884, + 0.04882029443979263, + -0.09357334673404694, + -2.1211887357708292e-08, + -0.03420485183596611, + 0.017981547862291336, + -0.03679848089814186, + -0.03867575526237488, + 0.01167768519371748, + 0.03662119805812836, + -0.02154555171728134, + 0.041968218982219696, + -0.08811847865581512, + 0.020560406148433685, + 0.11315111815929413, + -0.01951238326728344, + -0.1215287521481514, + -0.043823473155498505, + -0.03501477837562561, + -0.04175162687897682, + -0.048477910459041595, + 0.06640500575304031, + -0.030290113762021065, + -0.008346409536898136, + 0.038874801248311996, + 0.13591766357421875, + -0.004155959468334913, + -0.03801092877984047, + 0.0806863009929657, + -0.03919907659292221, + -0.05800298601388931, + 0.014841478317975998, + 0.05742621421813965, + 0.03615324944257736, + 0.05397343635559082, + 0.04087219759821892, + 0.06164342537522316, + -0.021140651777386665, + -0.07239368557929993, + -0.008652315475046635, + -0.09619949012994766, + 0.07429713755846024, + 0.03849158436059952, + 0.11322300881147385, + -0.04060577601194382, + -0.0030954615212976933, + -0.05223939195275307, + 0.02806081809103489, + 0.05899100378155708, + -0.03345657140016556, + 0.05368543043732643, + -0.06875242292881012, + -0.11038552969694138, + -0.05336286127567291, + -0.05090465024113655, + -0.017826028168201447, + 0.001380756963044405, + 0.05950651317834854, + -0.030678825452923775, + 0.011367824859917164, + 0.0016845258651301265, + -0.05401242896914482, + -0.05587095394730568, + 0.008139475248754025, + 0.05040713772177696, + -0.03305927664041519, + -0.03361493721604347, + -0.019559647887945175 + ], + "gavel-bold||judge,justice,legal,law,court,hammer,government": [ + -0.08898773789405823, + 0.027842210605740547, + -0.02989853546023369, + -0.04957865923643112, + -0.08267875760793686, + 0.023251192644238472, + 0.028104105964303017, + -0.0014183699386194348, + 0.010310882702469826, + 0.033260639756917953, + -0.01657273806631565, + 0.030569879338145256, + 0.047764167189598083, + -0.04648533836007118, + -0.03340323269367218, + 0.08161775022745132, + 0.04758425056934357, + 0.04171888902783394, + -0.06790471076965332, + 0.03441917523741722, + 0.06694644689559937, + 0.0893595889210701, + 0.0002186219790019095, + 0.010416700504720211, + -0.029043415561318398, + 0.0008144201710820198, + -0.09409144520759583, + -0.018043607473373413, + 0.006393611431121826, + -0.1267237663269043, + -0.0036127830389887094, + 0.017208078876137733, + 0.06164742633700371, + 0.0463591068983078, + 0.046860095113515854, + 0.011167344637215137, + 0.03735905885696411, + -0.02763579972088337, + -0.02292662486433983, + -0.019859855994582176, + -0.024949030950665474, + -0.002943644765764475, + -0.048845645040273666, + 0.03291090205311775, + -0.016258927062153816, + 0.0110991932451725, + -0.06194974109530449, + -0.012445521540939808, + -0.005400351248681545, + -0.02105480246245861, + -0.011736797168850899, + -0.04323484003543854, + -0.02438269928097725, + 0.015544349327683449, + 0.03848639875650406, + 0.020585961639881134, + -0.017913291230797768, + -0.0152018703520298, + -0.016761744394898415, + -0.02929799072444439, + 0.03746688738465309, + 0.0612969771027565, + -0.06839066743850708, + 0.047123022377491, + 0.019495513290166855, + 0.004637259989976883, + 0.034926239401102066, + -0.01604175940155983, + -0.054735686630010605, + 0.0008051434997469187, + 0.045420099049806595, + -0.06225872039794922, + 0.08015938103199005, + -0.03684365376830101, + -0.13279354572296143, + -0.051331836730241776, + 0.008346625603735447, + 0.014275975525379181, + 0.009296289645135403, + -0.09704345464706421, + -0.05763830989599228, + -0.06436578929424286, + -0.12191418558359146, + -0.03666543960571289, + -0.012707112357020378, + -0.005811674520373344, + -0.03229895979166031, + -0.03663686662912369, + 0.05242373049259186, + -0.006686893757432699, + -0.04414593055844307, + -0.07378169894218445, + 0.03590487316250801, + 0.035472236573696136, + 0.028242040425539017, + 0.06707201153039932, + 0.06363566964864731, + 0.024061767384409904, + 0.003432957222685218, + 0.12247276306152344, + 0.06585803627967834, + 0.08359938859939575, + 0.03434300050139427, + -0.05734000355005264, + -0.007251709699630737, + -0.04513315483927727, + -0.06401932239532471, + -0.03970189392566681, + -0.05422001704573631, + -0.03529869765043259, + 0.00380837544798851, + -0.06946580857038498, + 0.038956183940172195, + 0.000841835280880332, + 0.04702823981642723, + -0.024563923478126526, + -0.0032075627241283655, + -0.015513797290623188, + 0.03889889270067215, + -0.043360885232686996, + -0.0007465913658961654, + 0.030157428234815598, + -0.09112777560949326, + 0.016274917870759964, + -0.061170320957899094, + 0.03708159923553467, + 0.024020755663514137, + -3.388698584161182e-33, + 0.005935791879892349, + 0.0036002446431666613, + -0.06740746647119522, + 0.02283427119255066, + -0.02956964075565338, + 0.04507282376289368, + 0.014236366376280785, + 0.009509643539786339, + -0.07096795737743378, + 0.08474503457546234, + 0.06942351907491684, + 0.003749463241547346, + 0.010019363835453987, + -0.047455210238695145, + -0.05788044258952141, + 0.03875410556793213, + -0.02744797244668007, + -0.057047825306653976, + -0.04885208234190941, + 0.023905638605356216, + -0.0010176881914958358, + 0.11058814078569412, + -0.030592311173677444, + -0.03505900874733925, + -0.07716837525367737, + -0.04340684041380882, + 0.03427529335021973, + -0.03685235604643822, + 0.04728108271956444, + 0.009405210614204407, + 0.11744927614927292, + 0.04129490256309509, + 0.07892220467329025, + 0.039560191333293915, + 0.0034908324014395475, + 0.07297122478485107, + -0.043313562870025635, + -0.016069980338215828, + 0.04397192969918251, + -0.03034021146595478, + -0.02957179769873619, + -0.01819937862455845, + -0.05161410570144653, + -0.017656516283750534, + 0.0010377314174547791, + 0.061688944697380066, + -0.15143275260925293, + -0.0089127067476511, + -0.021153481677174568, + 0.02207920327782631, + 0.01891184225678444, + 0.006790912710130215, + 0.07048409432172775, + 0.015888674184679985, + 0.024515746161341667, + 0.042417559772729874, + -0.04631597176194191, + 0.166536346077919, + -0.024644171819090843, + 0.0489078164100647, + -0.0020958641543984413, + 0.06815434247255325, + 0.05929454788565636, + 0.04820779338479042, + 0.03380770608782768, + -0.006487466860562563, + -0.07972139865159988, + 0.06795599311590195, + 0.08617541939020157, + -0.0078018405474722385, + -0.013067003339529037, + 0.11630494147539139, + -0.012610395438969135, + 0.12151012569665909, + -0.023977233096957207, + -0.05571094527840614, + 0.013483685441315174, + -0.010463454760611057, + -0.030941739678382874, + -0.03280739113688469, + -0.08599349111318588, + 0.10248453170061111, + -0.06854500621557236, + 0.1567772775888443, + 0.027590841054916382, + -0.02799368090927601, + -0.009945673868060112, + -0.1161700040102005, + -0.024425029754638672, + 0.031208479776978493, + -0.07629416137933731, + -0.07275210320949554, + 0.04318363964557648, + -0.03916699066758156, + -0.03694290295243263, + 3.683039614542198e-34, + 0.043707847595214844, + -0.05657711997628212, + -0.05365666374564171, + 0.07656462490558624, + -0.008334885351359844, + 0.01416681706905365, + -0.10782497376203537, + -0.014107857830822468, + 0.050043556839227676, + 0.04081660136580467, + -0.040886133909225464, + -0.034346286207437515, + 0.02409292757511139, + 0.005006973631680012, + 0.06283345818519592, + -0.025934427976608276, + 0.009525652974843979, + -0.014308401383459568, + -0.020896896719932556, + 0.08994093537330627, + 0.05490715801715851, + 0.04190674051642418, + -0.08902107924222946, + 0.11805698275566101, + 0.0005201812600716949, + 0.05209383741021156, + -0.0008815120672807097, + -0.08729417622089386, + -0.06468440592288971, + 0.0052781174890697, + 0.023535750806331635, + -0.0003987601085100323, + -0.03251280263066292, + 0.019119728356599808, + -0.08862370252609253, + -0.05360778793692589, + 0.11019880324602127, + -0.02626897767186165, + 0.009786268696188927, + -0.016278376802802086, + -0.054822005331516266, + 0.06843209266662598, + 0.032466672360897064, + -0.011210199445486069, + -0.02891039289534092, + -0.013287757523357868, + -0.07305068522691727, + 0.002506509656086564, + 0.00867305789142847, + -0.02880951017141342, + -0.00919344276189804, + -0.04671848565340042, + 0.0039305430836975574, + -0.002914854558184743, + -0.0062067098915576935, + -0.049602068960666656, + 0.02800871431827545, + -0.11285710334777832, + -0.02106883004307747, + 0.05112198367714882, + -0.03398170694708824, + 0.057290151715278625, + -0.05156821385025978, + 0.0481685996055603, + -0.01275947131216526, + -0.03023431822657585, + -0.08617882430553436, + -0.05850975587964058, + -0.01976383663713932, + -0.04445851221680641, + -0.010016939602792263, + -0.07150248438119888, + -0.03955274820327759, + 0.02531483583152294, + 0.05159902572631836, + 0.02491348795592785, + 0.003594067180529237, + 0.028232106938958168, + -0.05921449884772301, + -0.02447611093521118, + 0.04742756858468056, + -0.07988245785236359, + -0.05056098476052284, + 0.03326552361249924, + 0.026878315955400467, + 0.05205255746841431, + 0.02530999295413494, + -0.047589488327503204, + 0.0007903944933786988, + -0.011094940826296806, + -0.02330709435045719, + -0.005751185584813356, + 0.012361506931483746, + -0.004819327965378761, + 0.00696866400539875, + -2.3165613427522658e-08, + 0.018773257732391357, + 0.059509940445423126, + -0.0553850419819355, + -0.0008193491958081722, + -0.034765277057886124, + -0.009678148664534092, + 0.027499809861183167, + -0.016624003648757935, + -0.08165014535188675, + -0.09035944938659668, + 0.07352101057767868, + 0.028792215511202812, + -0.07960349321365356, + -0.05909276753664017, + -0.015942607074975967, + 0.0913025438785553, + 0.019061019644141197, + -0.014499343000352383, + -0.016303889453411102, + -0.008453493937849998, + -0.013256443664431572, + 0.026871364563703537, + 0.058941714465618134, + -0.06223030388355255, + -0.009543712250888348, + 0.009503565728664398, + -0.007915258407592773, + 0.025932926684617996, + 0.05048879608511925, + 0.05052441358566284, + 0.08995115011930466, + 0.08313386142253876, + -0.008689417503774166, + -0.04921101778745651, + -0.008676894940435886, + 0.024648884311318398, + 0.0012321299873292446, + 0.017843885347247124, + 0.049672894179821014, + 0.12729574739933014, + 0.006579953711479902, + 0.04291827976703644, + 0.03242260217666626, + -0.0002662058104760945, + -0.03684859350323677, + -0.06763435155153275, + 0.04263740032911301, + 0.028035853058099747, + 0.018304849043488503, + -0.09577751904726028, + -0.053552187979221344, + -0.05152491480112076, + 0.03259613364934921, + -0.056121740490198135, + 0.01790018565952778, + 0.07878905534744263, + 0.07691548764705658, + 0.100852832198143, + -0.07762672007083893, + 0.02141513116657734, + 0.12491549551486969, + -0.012046776711940765, + 0.055564798414707184, + 0.03703291341662407 + ], + "gear-bold||8,settings,setup,preferences,cogs,gears,machinery,mechanical": [ + -0.03996003046631813, + -0.00813379231840372, + -0.024168381467461586, + 0.027625087648630142, + -0.048274364322423935, + 0.02981892041862011, + 0.023550357669591904, + 0.059869736433029175, + -0.07563043385744095, + -0.03056052140891552, + 0.05036735162138939, + 0.0237826406955719, + 0.054064907133579254, + -0.08289923518896103, + -0.017187247052788734, + 0.025573167949914932, + 0.0594932995736599, + -0.01916264183819294, + -0.025938641279935837, + -0.05281122028827667, + 0.08100661635398865, + 0.034418415278196335, + 0.030153565108776093, + 0.026958538219332695, + 0.028693554922938347, + 0.013766073621809483, + 0.024692002683877945, + 0.08158063888549805, + -0.004070577211678028, + -0.09872189164161682, + -0.05302358418703079, + 0.059840403497219086, + 0.029315773397684097, + -0.0036871088668704033, + 0.006362105254083872, + 0.012496942654252052, + 0.033117882907390594, + -0.06869103014469147, + 0.009658792056143284, + 0.054711584001779556, + 0.0047209132462739944, + -0.04881132021546364, + 0.019448939710855484, + -0.02214062213897705, + 0.013418790884315968, + 0.04679854214191437, + -0.033585645258426666, + -0.04624021053314209, + 0.06308121979236603, + -0.004112916067242622, + -0.011345493607223034, + -0.08690020442008972, + -0.03567057475447655, + 0.018456215038895607, + 0.03445248678326607, + 0.012736578471958637, + -0.06263024359941483, + -0.010420947335660458, + 0.0214003324508667, + -0.03667209669947624, + 0.010078531689941883, + 0.04936690628528595, + -0.008383698761463165, + 0.11042220890522003, + 0.018334155902266502, + 0.03684259206056595, + 0.06511761993169785, + -0.0072543746791779995, + -0.03380123898386955, + 0.03131534159183502, + 0.04881840571761131, + 0.011067775078117847, + -0.003992099314928055, + 0.028133297339081764, + -0.021477313712239265, + -0.020621540024876595, + 0.034549787640571594, + -0.06406687200069427, + -0.04085550829768181, + -0.09178290516138077, + -0.10348741710186005, + 0.03138808533549309, + 0.029260458424687386, + 0.05009227618575096, + 0.050048552453517914, + 0.00026474095648154616, + -0.0178001057356596, + -0.021044818684458733, + 0.009649665094912052, + 0.019203469157218933, + -0.09050282090902328, + -0.06309765577316284, + -0.008919920772314072, + 0.003259918885305524, + -0.03777501732110977, + 0.09999159723520279, + 0.036551423370838165, + -0.009182345122098923, + -0.08779746294021606, + 0.03338877111673355, + 0.03663337603211403, + -0.03605373576283455, + 0.053603123873472214, + 0.07701678574085236, + -0.037200894206762314, + 0.0065321470610797405, + 0.011814628727734089, + 0.03967199847102165, + -0.017543232068419456, + -0.013531849719583988, + 0.002382561331614852, + -5.157409032108262e-05, + -0.005357939284294844, + -0.12310072034597397, + -0.018247883766889572, + -0.011539911851286888, + -0.0798473209142685, + 0.027048133313655853, + 0.07760924100875854, + 0.06703393161296844, + 0.042387962341308594, + -0.06993115693330765, + -0.009295577183365822, + -0.05572717636823654, + 0.026319505646824837, + 0.037410981953144073, + 0.027542199939489365, + -2.9065682904744746e-33, + 0.04386533796787262, + -0.00019294423691462725, + -0.008178772404789925, + 0.0676034688949585, + 0.025311272591352463, + -0.005427797324955463, + -0.03134584426879883, + -0.051955852657556534, + -0.06186174601316452, + 0.04545651003718376, + 0.04615325853228569, + 0.1280435472726822, + -0.09513107687234879, + 0.09410349279642105, + 0.0787031427025795, + -0.08961997181177139, + 0.06449256837368011, + 0.02636249177157879, + -0.03053835965692997, + -0.0861310362815857, + -0.03782488778233528, + 0.03183743730187416, + -0.013882751576602459, + -0.005427327007055283, + 0.0038687363266944885, + 0.03168643265962601, + 0.06679542362689972, + 0.041716255247592926, + -0.10307785123586655, + 0.036694034934043884, + -0.03142852708697319, + 0.05211763083934784, + 0.00521088344976306, + 0.007933667860925198, + -0.010216816328465939, + -0.04224133491516113, + -0.12692169845104218, + -0.03526238352060318, + -0.043372612446546555, + 0.003086226060986519, + 0.006975073833018541, + -0.060230594128370285, + -0.10767857730388641, + -0.06486961990594864, + -0.019271010532975197, + 0.10058236122131348, + 0.025661319494247437, + -0.014135422185063362, + 0.03274686262011528, + 0.0499412901699543, + 0.02000567503273487, + 0.03406694158911705, + 0.04864606633782387, + 0.016426172107458115, + -0.0015975100686773658, + -0.0011303967330604792, + 0.048532791435718536, + 0.01382298395037651, + -0.020663823932409286, + 0.018514906987547874, + 0.01861252821981907, + 0.051343586295843124, + 0.14232808351516724, + -0.006497561000287533, + 0.03847014904022217, + 0.0687432512640953, + -0.018705936148762703, + -0.046589046716690063, + 0.07490316033363342, + -0.01460573635995388, + -0.059012871235609055, + -0.003803200088441372, + -0.017948906868696213, + 0.07923408597707748, + 0.03774869814515114, + 0.04141866788268089, + -0.040548089891672134, + -0.02904372103512287, + -0.007550912443548441, + -0.04970287159085274, + -0.08672399818897247, + 0.04867654666304588, + -0.10903222113847733, + 0.043519746512174606, + 0.04255178943276405, + -0.04727808013558388, + 0.04272492229938507, + 0.006370567250996828, + 0.016602028161287308, + -0.01709677465260029, + -0.03578392043709755, + -0.028921881690621376, + 0.0013086737599223852, + -0.017387190833687782, + -0.11967235058546066, + 5.989082187657129e-34, + -0.004287682007998228, + 0.05220302566885948, + 0.0243203267455101, + 0.03886609524488449, + -0.04143929481506348, + 0.006253783591091633, + 0.09638214856386185, + -0.005968199577182531, + 0.013695111498236656, + 0.07550793141126633, + 0.10827236622571945, + 0.011115352623164654, + -0.05707862600684166, + -0.07244709879159927, + 0.05367892608046532, + 0.030097514390945435, + -0.05526422709226608, + 0.0501939132809639, + 0.008877849206328392, + -0.027617070823907852, + 0.009582813829183578, + -0.05437184497714043, + -0.06405532360076904, + 0.07474531978368759, + 0.006601573899388313, + -0.038084726780653, + -0.05866212397813797, + -0.00107113819103688, + -0.05843256786465645, + -0.03382859379053116, + 0.018965143710374832, + 0.020759979262948036, + 0.020112615078687668, + 0.08524003624916077, + -0.05873405188322067, + 0.006472642067819834, + 0.006982965394854546, + 0.017559006810188293, + -0.03238540142774582, + -0.006679994519799948, + 0.014032170176506042, + -0.023041853681206703, + 0.013923565857112408, + 0.07667379826307297, + -0.10354671627283096, + -0.027495060116052628, + 0.010050397366285324, + -0.1434808373451233, + -0.005075844936072826, + 0.0913994312286377, + 0.0679076611995697, + 0.01933368109166622, + 0.017770767211914062, + -0.047449517995119095, + -0.059590697288513184, + -0.02361386828124523, + -0.062278565019369125, + 0.010893409140408039, + 0.0448983795940876, + 0.06171881780028343, + 0.05635411664843559, + -0.01235650572925806, + -0.04497222974896431, + 0.03609374165534973, + -0.02779516577720642, + -0.05369884520769119, + -0.010574066080152988, + -0.04650820791721344, + -0.024153364822268486, + -0.028253577649593353, + 0.029803812503814697, + -0.0035510060843080282, + 0.0895773321390152, + -0.03943384438753128, + 0.026389559730887413, + -0.10726430267095566, + 0.02661026082932949, + -0.044232726097106934, + -0.006843865849077702, + 0.04649953544139862, + 0.01944592036306858, + -0.04571758583188057, + 0.008236074820160866, + 0.10982371121644974, + -0.1656273603439331, + 0.02503523975610733, + -0.019246328622102737, + 0.06139080598950386, + 0.07047401368618011, + 0.0027992792893201113, + 0.00709539745002985, + 0.03968076780438423, + 0.0010491885477676988, + 0.06513119488954544, + -0.08150497078895569, + -2.03727221759209e-08, + -0.04085560142993927, + -0.05927538126707077, + 0.038995541632175446, + -0.014868614263832569, + 0.04868387430906296, + -0.03837750479578972, + -0.0072941710241138935, + -0.026073945686221123, + -0.07031150907278061, + 0.0021603640634566545, + 0.07401419430971146, + -0.005339005030691624, + -0.0332268662750721, + 0.0019644000567495823, + 0.022555291652679443, + -0.0362369641661644, + -0.06926805526018143, + 0.07940889149904251, + -0.033131662756204605, + -0.09502118825912476, + 0.06132761016488075, + 0.003805967280641198, + 0.06600719690322876, + 0.014360395260155201, + 0.08890946209430695, + -0.0135418139398098, + -0.08072414994239807, + 0.06231260299682617, + 0.054057467728853226, + 0.06752998381853104, + 0.08888746052980423, + 0.0595882274210453, + -0.002427119528874755, + -0.022709805518388748, + -0.08827488869428635, + -0.03340475261211395, + -0.08021281659603119, + 0.1145557165145874, + 0.02052971161901951, + 0.07864528894424438, + -0.05457012727856636, + -0.05881157144904137, + -0.04487874358892441, + 0.009697004221379757, + -0.07055719196796417, + 0.02274341695010662, + -0.015537143684923649, + -0.045030467212200165, + -0.13674896955490112, + -0.11898805946111679, + -0.001720645697787404, + 0.00545575562864542, + 0.04316315799951553, + 0.08019599318504333, + -0.024763938039541245, + -0.05317934975028038, + 0.038332823663949966, + 0.020241789519786835, + -0.055715423077344894, + -0.002658863551914692, + -0.006284244358539581, + -0.011433010920882225, + 0.024460559710860252, + -0.05601329356431961 + ], + "gear-fine-bold||setup,preferences,cogs,gears,machinery,mechanical": [ + -0.022396663203835487, + -0.03068612515926361, + 0.004007135983556509, + 0.011384562589228153, + -0.048740778118371964, + 0.005327969323843718, + 0.051150351762771606, + 0.01821770705282688, + -0.09204425662755966, + -0.015609245747327805, + 0.03813185170292854, + 0.02297867462038994, + 0.0707407221198082, + -0.06377452611923218, + -0.012382716871798038, + 0.01742328517138958, + 0.08454630523920059, + -0.02814985252916813, + -0.0063272444531321526, + -0.03314648196101189, + 0.04740764573216438, + 0.059385377913713455, + 0.014928044751286507, + 0.016026264056563377, + 0.014496884308755398, + 0.013729846104979515, + 0.015229148790240288, + 0.08270512521266937, + 0.03599099814891815, + -0.10914976894855499, + -0.06550609320402145, + 0.07236935198307037, + 0.012271394021809101, + -0.018246043473482132, + -0.015945281833410263, + 0.02529698610305786, + 0.021068787202239037, + -0.06570885330438614, + 0.021205643191933632, + 0.037148021161556244, + 0.005919358693063259, + -0.03637166693806648, + 0.013381526805460453, + -0.004815093707293272, + 0.02009711042046547, + 0.03506481647491455, + -0.025300823152065277, + -0.0557507686316967, + 0.037818148732185364, + 0.0032256103586405516, + -0.041011057794094086, + -0.07887158542871475, + -0.03597244992852211, + 0.0068743047304451466, + 0.03472338244318962, + 0.0508611835539341, + -0.058796174824237823, + -0.007150285877287388, + 0.006731756497174501, + -0.06740719825029373, + 0.01660900004208088, + 0.04908716678619385, + -0.03515412658452988, + 0.08666453510522842, + 0.04761341214179993, + 0.04206027090549469, + 0.03964952006936073, + 0.01969049498438835, + -0.03237273544073105, + 0.034202978014945984, + 0.035161878913640976, + -0.014885474927723408, + -0.006003307178616524, + 0.031674280762672424, + -0.045787397772073746, + -0.012952002696692944, + 0.03195830062031746, + -0.06757311522960663, + -0.051621973514556885, + -0.077821746468544, + -0.1137305498123169, + 0.03826308622956276, + 0.006695633754134178, + 0.027790207415819168, + 0.057097651064395905, + 0.0001867157407104969, + 0.00680533004924655, + -0.031727273017168045, + 0.0030900798738002777, + 0.01696237362921238, + -0.05847441777586937, + -0.06468213349580765, + 0.012585976161062717, + 0.014496913179755211, + 0.0010339791188016534, + 0.11664431542158127, + 0.043096061795949936, + 0.008240042254328728, + -0.08707781136035919, + 0.04192228987812996, + 0.0350281186401844, + -0.006667946465313435, + 0.04748157411813736, + 0.036473315209150314, + -0.05831427872180939, + 0.014295821078121662, + 0.0006336878868751228, + 0.04490954801440239, + -0.0010038833133876324, + 0.008675822988152504, + -0.0013756788102909923, + -0.015200202353298664, + -0.010385334491729736, + -0.09156780689954758, + -0.02132849209010601, + -0.0003590342530515045, + -0.10121805965900421, + 0.00743872532621026, + 0.09090818464756012, + 0.056527476757764816, + 0.03709833323955536, + -0.0701528787612915, + -0.017890578135848045, + -0.041947219520807266, + 0.0269427802413702, + 0.035742271691560745, + 0.05916709080338478, + -3.4366484680991616e-33, + 0.030066734179854393, + 0.014920827001333237, + 0.011180010624229908, + 0.09201943129301071, + 0.02868335135281086, + 0.016237705945968628, + -0.03589843213558197, + -0.04812047258019447, + -0.04930959269404411, + 0.04056567698717117, + 0.06527243554592133, + 0.12555967271327972, + -0.11545845866203308, + 0.12450958043336868, + 0.07182689011096954, + -0.10325819253921509, + 0.0497550405561924, + 0.0018273111199960113, + -0.02320857159793377, + -0.03521890193223953, + -0.02925879694521427, + 0.048980340361595154, + -0.028847169131040573, + -0.007293713744729757, + -0.01658235490322113, + -0.01254180260002613, + 0.0870281308889389, + 0.039725348353385925, + -0.08668013662099838, + 0.05995713546872139, + -0.05605463311076164, + 0.0392804890871048, + 0.05204397812485695, + 0.025922678411006927, + -0.025722183287143707, + -0.01226089522242546, + -0.14743876457214355, + -0.038348354399204254, + -0.043133173137903214, + -0.0002556611434556544, + 0.009597502648830414, + -0.04938855022192001, + -0.0849633440375328, + -0.042685095220804214, + -0.019989551976323128, + 0.12376616895198822, + 0.04136570915579796, + 0.004095478914678097, + -8.922672714106739e-05, + 0.035339806228876114, + -0.020978355780243874, + 0.02749745361506939, + 0.03687788546085358, + 0.023218654096126556, + -0.01996862143278122, + 0.01907612942159176, + 0.02866814099252224, + 0.01508885808289051, + -0.03477005660533905, + 0.020065095275640488, + -0.0017819650238379836, + 0.0706157311797142, + 0.13425588607788086, + 0.03595391660928726, + 0.0547531321644783, + 0.05659554898738861, + -0.007372657768428326, + -0.0472770519554615, + 0.06799900531768799, + -0.026580708101391792, + -0.0584087073802948, + -0.03039388544857502, + -0.033176351338624954, + 0.04823453724384308, + 0.041551996022462845, + 0.046818722039461136, + -0.02728891186416149, + -0.0324418805539608, + 0.005628891289234161, + -0.0768817588686943, + -0.08229494839906693, + 0.06254114210605621, + -0.10212764889001846, + 0.04704643413424492, + 0.025847939774394035, + -0.02257143147289753, + 0.009797463193535805, + 0.008719505742192268, + 0.036971695721149445, + 0.019082671031355858, + -0.036849282681941986, + 0.008378352969884872, + 0.006321351509541273, + -0.021435033529996872, + -0.1293908804655075, + 1.3801981513168462e-33, + 0.03723180666565895, + 0.05320435017347336, + 0.05803268402814865, + 0.0772671326994896, + -0.020751474425196648, + 0.009512080810964108, + 0.0833558589220047, + -0.013702807016670704, + 0.05254797637462616, + 0.067557692527771, + 0.08493482321500778, + -0.023564539849758148, + -0.08328407257795334, + -0.06321284174919128, + 0.06520766019821167, + -0.007563313469290733, + -0.04239371791481972, + 0.024346062913537025, + 0.00985646340996027, + 0.0029779504984617233, + 0.033858589828014374, + -0.05823183432221413, + -0.08916690200567245, + 0.05182727053761482, + 0.016883039847016335, + 0.021095024421811104, + -0.11518413573503494, + -0.013671690598130226, + -0.08799479156732559, + 0.006584327667951584, + -0.014759541489183903, + 0.01633739285171032, + 0.042470891028642654, + 0.038473766297101974, + -0.058415383100509644, + 0.022811681032180786, + 0.0016941007925197482, + 0.04038001969456673, + -0.042068082839250565, + -0.0146708395332098, + 0.01003999449312687, + -0.007346754893660545, + 0.0021140137687325478, + 0.07541998475790024, + -0.06741321086883545, + -0.09516920894384384, + -0.009629319421947002, + -0.1631975769996643, + 0.02132135070860386, + 0.06850561499595642, + 0.028857555240392685, + 0.02583356946706772, + 0.01584729366004467, + -0.050001274794340134, + -0.05182411149144173, + -0.009196721948683262, + -0.06009336933493614, + -0.005024433601647615, + 0.03056473098695278, + 0.05023983493447304, + 0.008483798243105412, + -0.010965774767100811, + -0.04412561655044556, + 0.027457060292363167, + -0.0010997371282428503, + -0.0972483828663826, + 0.007173018995672464, + -0.07907819747924805, + 0.003725995309650898, + -0.03184760734438896, + 0.01727142371237278, + -0.0028858520090579987, + 0.08982188254594803, + -0.07424615323543549, + 0.02863462083041668, + -0.09394114464521408, + 0.026320751756429672, + -0.03128161281347275, + -0.00859105121344328, + 0.056955672800540924, + 0.05525069683790207, + -0.01955767534673214, + -0.021031280979514122, + 0.12502305209636688, + -0.17620334029197693, + 0.007326092571020126, + -0.04582648351788521, + 0.07043372839689255, + 0.04139110818505287, + -0.0017351947026327252, + 0.007492789067327976, + 0.0394229032099247, + -0.000555798877030611, + 0.040987808257341385, + -0.07052073627710342, + -2.1420708762320828e-08, + -0.032252099364995956, + -0.04665154963731766, + 0.004705591127276421, + 0.009469056501984596, + 0.027297243475914, + -0.02061743289232254, + -0.03748941048979759, + -0.022568093612790108, + -0.06509915739297867, + 0.028646644204854965, + 0.04932401329278946, + 0.01463906280696392, + -0.04965316876769066, + -0.003825044957920909, + -0.008969617076218128, + -0.022335965186357498, + -0.10445404052734375, + 0.09589488059282303, + -0.060741882771253586, + -0.08642551302909851, + 0.06544392555952072, + 0.01343102753162384, + 0.06625843048095703, + 0.04436034709215164, + 0.06467747688293457, + 0.005284301470965147, + -0.06359723210334778, + 0.022257858887314796, + 0.06521324813365936, + 0.11352919042110443, + 0.06798336654901505, + 0.032864052802324295, + 2.072063580271788e-05, + -0.015677927061915398, + -0.06909149885177612, + -0.06229162588715553, + -0.0814976617693901, + 0.07794631272554398, + 0.04051697999238968, + 0.06126469001173973, + -0.04632897302508354, + -0.006621201056987047, + -0.01908252015709877, + 0.0020731999538838863, + -0.04215903952717781, + -0.0115873534232378, + -0.024758728221058846, + -0.032995108515024185, + -0.1401599794626236, + -0.1027565747499466, + -0.017154576256871223, + 0.03134952485561371, + 0.038480646908283234, + 0.08302650600671768, + -0.027581090107560158, + -0.009991789236664772, + 0.030835887417197227, + 0.024386422708630562, + -0.04791944473981857, + -0.025650382041931152, + 0.007830127142369747, + -0.010287351906299591, + 0.044117607176303864, + -0.0474357008934021 + ], + "gear-six-bold||6,settings,setup,preferences,cogs,gears,machinery,mechanical": [ + -0.03643347695469856, + -0.032989419996738434, + -0.042050160467624664, + 0.01557200588285923, + -0.05112781003117561, + 0.04751462861895561, + 0.00459874514490366, + 0.003924451768398285, + -0.07319339364767075, + -0.006583497393876314, + 0.03587489575147629, + 0.04560606926679611, + 0.03922032564878464, + -0.11416909843683243, + -0.006338366307318211, + 0.02929215133190155, + 0.016247350722551346, + 0.00326373428106308, + -0.030815187841653824, + -0.014790913090109825, + 0.04106439650058746, + 0.04644222930073738, + 0.03570538014173508, + 0.027271214872598648, + 0.055018991231918335, + -0.01879308559000492, + 0.016910722479224205, + 0.09950603544712067, + 0.009363156743347645, + -0.08975516259670258, + -0.05330922082066536, + 0.09748485684394836, + 0.0009726523421704769, + 0.01580948568880558, + 0.0016662759007886052, + 0.012701470404863358, + 0.035584259778261185, + -0.049911703914403915, + 0.015511246398091316, + 0.04239243268966675, + 0.013936424627900124, + -0.05912056937813759, + 0.03057236783206463, + -0.051205288618803024, + 0.0192093662917614, + 0.045890145003795624, + -0.06731986999511719, + -0.02564483880996704, + 0.08836273103952408, + -0.012018416076898575, + 0.008278300985693932, + -0.11764954030513763, + -0.05020606145262718, + 0.01222447119653225, + 0.027298182249069214, + 0.012250198051333427, + -0.09077273309230804, + -0.036621518433094025, + 0.02587866596877575, + -0.040928248316049576, + 0.009042360819876194, + 0.05679798498749733, + -0.008371593430638313, + 0.11439411342144012, + 0.026757294312119484, + 0.050318941473960876, + 0.059411197900772095, + 0.005147452931851149, + -0.03291034325957298, + 0.015924597159028053, + 0.0003551619010977447, + 0.00011260955943726003, + 0.0304889976978302, + -0.002026480156928301, + -0.03872197866439819, + -0.033039700239896774, + 0.007571460213512182, + -0.09355174005031586, + -0.034646354615688324, + -0.09628979861736298, + -0.10311976075172424, + 0.026820015162229538, + 0.0018834065413102508, + 0.06938788294792175, + 0.03070480190217495, + -0.005401859525591135, + 0.017182916402816772, + -0.024012191221117973, + -0.016074078157544136, + 0.01921072229743004, + -0.05161450803279877, + -0.057403553277254105, + -0.0037423199974000454, + -0.020942194387316704, + -0.07743249088525772, + 0.10431908816099167, + 0.016982754692435265, + 0.022945968434214592, + -0.053080398589372635, + 0.026807742193341255, + 0.05444123223423958, + -0.022565752267837524, + 0.05208795517683029, + 0.032674390822649, + -0.0050760856829583645, + 0.010820123367011547, + -0.014512887224555016, + 0.06963150948286057, + -0.010094966739416122, + -0.01390546653419733, + -0.02109883353114128, + -0.005633876658976078, + -0.0009773634374141693, + -0.08815354108810425, + -0.011218457482755184, + -0.002010117284953594, + -0.08217959105968475, + 0.020775076001882553, + 0.08275457471609116, + 0.061383459717035294, + 0.05971316248178482, + -0.044657595455646515, + -0.0032445613760501146, + -0.049723781645298004, + 0.019973477348685265, + 0.025452714413404465, + 0.06371509283781052, + -3.146656215803211e-33, + 0.022974707186222076, + -0.0003085832577198744, + 0.037626560777425766, + 0.07739102095365524, + 0.03039686195552349, + 0.006467380560934544, + -0.03771476820111275, + -0.0588218979537487, + -0.09246931225061417, + 0.05464782565832138, + 0.05616479739546776, + 0.11933986097574234, + -0.09355320036411285, + 0.08903791010379791, + 0.11887982487678528, + -0.0856914296746254, + 0.0701032504439354, + 0.027762731537222862, + -0.02790183573961258, + -0.0645134225487709, + -0.027935568243265152, + 0.03708712384104729, + -0.024837763980031013, + -0.01686127297580242, + -0.013964217156171799, + 0.058222219347953796, + 0.06793893128633499, + 0.04516647011041641, + -0.1113705039024353, + 0.04416775703430176, + -0.04289430379867554, + 0.07450942695140839, + 0.04518885537981987, + 0.018652964383363724, + -0.009855459444224834, + -0.022865381091833115, + -0.1381712108850479, + -0.020062368363142014, + -0.037558168172836304, + -0.007077076006680727, + 0.02083606831729412, + -0.06373564153909683, + -0.15665319561958313, + -0.03212905675172806, + -0.013859392143785954, + 0.0920197069644928, + 0.06757726520299911, + -0.013368213549256325, + 0.02506135031580925, + 0.03604700788855553, + -0.013446294702589512, + 0.010215964168310165, + 0.0697474330663681, + 0.011509417556226254, + 0.029330313205718994, + 0.0034083090722560883, + 0.027417980134487152, + 0.028118789196014404, + -0.016224317252635956, + 0.03642795979976654, + 0.008800989016890526, + 0.038961753249168396, + 0.11354755610227585, + 0.04780774563550949, + 0.0373799093067646, + 0.047137126326560974, + -0.002593179000541568, + -0.03291032835841179, + 0.047544583678245544, + 0.014411971904337406, + -0.07654859870672226, + -0.004752837121486664, + -0.02078045904636383, + 0.0737704262137413, + 0.02825998328626156, + 0.041871633380651474, + -0.022461075335741043, + -0.05011977627873421, + -0.043893370777368546, + -0.0765257179737091, + -0.06534704566001892, + 0.056113310158252716, + -0.08195169270038605, + 0.04242987558245659, + 0.029660968109965324, + -0.013161100447177887, + 0.010271862149238586, + -0.008224423043429852, + 0.008523242548108101, + 0.0030376422218978405, + -0.0021473898086696863, + -0.048354461789131165, + -0.03284898400306702, + -0.012564032338559628, + -0.10268042981624603, + 6.323850121801854e-34, + 0.0270336102694273, + 0.0506795197725296, + 0.039891406893730164, + 0.043270330876111984, + -0.022871240973472595, + 0.012090727686882019, + 0.13721658289432526, + -0.004618896637111902, + 0.005992121994495392, + 0.051368892192840576, + 0.09328904002904892, + 0.023176074028015137, + -0.06488186120986938, + -0.060813695192337036, + 0.03807520866394043, + 0.03965499997138977, + -0.023108385503292084, + 0.04105021432042122, + 0.042169276624917984, + -0.004120397847145796, + 0.0032661515288054943, + -0.08700781315565109, + -0.11229895800352097, + 0.039693914353847504, + 0.00833040103316307, + 0.01762605458498001, + -0.02640981785953045, + -0.03695760667324066, + -0.05291277542710304, + -0.03871108591556549, + -0.01068578939884901, + 0.009950577281415462, + 0.05019425228238106, + 0.04675064608454704, + -0.04268760234117508, + 0.021448440849781036, + 0.0004970011650584638, + 0.022270461544394493, + -0.04845137894153595, + 0.01612153649330139, + -0.007520058657974005, + -0.0007334777619689703, + 0.007964477874338627, + 0.04913189262151718, + -0.06499707698822021, + -0.09505927562713623, + 0.007106000557541847, + -0.10931810736656189, + -0.021434107795357704, + 0.09607796370983124, + 0.06688237935304642, + -0.024017170071601868, + 0.008794565685093403, + -0.023838484659790993, + -0.054076679050922394, + -0.04925395920872688, + -0.032696984708309174, + -0.032418057322502136, + 0.009340382181107998, + 0.07646653056144714, + 0.03586667776107788, + -0.005480541381984949, + -0.06561966240406036, + 0.020597675815224648, + -0.028520368039608, + -0.05535995587706566, + 0.03498997911810875, + -0.029467463493347168, + -0.030877938494086266, + -0.03508009389042854, + 0.03715227544307709, + 0.006805732846260071, + 0.07542945444583893, + -0.08963222056627274, + 0.020760657265782356, + -0.10028097778558731, + 0.025199217721819878, + -0.02042112685739994, + 0.005650283303111792, + 0.053919874131679535, + 0.00113629677798599, + -0.031253375113010406, + -0.03925146535038948, + 0.1442464143037796, + -0.14626654982566833, + 0.014909476041793823, + 0.02090003713965416, + 0.08379314094781876, + 0.04240311682224274, + -0.004045859444886446, + 0.005827383138239384, + 0.03257372975349426, + 0.007809371221810579, + 0.03799491375684738, + -0.06960798054933548, + -2.0473498452133754e-08, + -0.016824742779135704, + -0.08692879229784012, + 0.03859123960137367, + -0.023829234763979912, + 0.0620209202170372, + -0.021145464852452278, + -0.015663141384720802, + -0.014162165112793446, + -0.10060204565525055, + 0.008739582262933254, + 0.08453402668237686, + -0.007116788998246193, + -0.015561535954475403, + -0.027698805555701256, + 0.0028527022805064917, + -0.0425344817340374, + -0.10364589095115662, + 0.0803968757390976, + -0.054103072732686996, + -0.09156764298677444, + 0.04744270443916321, + -0.008602428250014782, + 0.04750622808933258, + 0.02255709283053875, + 0.09571091085672379, + -0.018916325643658638, + -0.06981778889894485, + 0.05978082865476608, + 0.06104820594191551, + 0.07055582106113434, + 0.07241509109735489, + 0.019086236134171486, + -0.021744688972830772, + -0.023142540827393532, + -0.06620122492313385, + -0.012287722900509834, + -0.05830501765012741, + 0.0651470497250557, + 0.020722799003124237, + 0.06030654162168503, + -0.05137148126959801, + -0.07000052183866501, + -0.029792917892336845, + -0.001258554751984775, + -0.07715081423521042, + 0.03380861505866051, + -0.02286144345998764, + -0.06045110523700714, + -0.13734070956707, + -0.08785225450992584, + -0.01065774355083704, + 0.005834904965013266, + 0.03325265645980835, + 0.08375219255685806, + -0.01073358952999115, + -0.009942453354597092, + 0.04658754914999008, + 0.005220943596214056, + -0.05813596025109291, + 0.005000509321689606, + 0.0006948551163077354, + -0.012368854135274887, + 0.03370135650038719, + -0.038941945880651474 + ], + "gender-female-bold||woman,feminine,venus": [ + 0.03852049261331558, + -0.0428558774292469, + 0.0035079624503850937, + 0.03452131897211075, + -0.025304414331912994, + -0.03972825035452843, + 0.022500380873680115, + -0.10573042929172516, + -0.03886593133211136, + 0.0398259311914444, + -0.029453208670020103, + -0.053711339831352234, + -0.04421558231115341, + -0.05956029146909714, + -0.0015165215590968728, + 0.056579120457172394, + 0.034361232072114944, + 0.049756769090890884, + 0.06684308499097824, + 0.11151780188083649, + 0.006941420957446098, + -0.03764701634645462, + 0.03735644370317459, + 0.011548934504389763, + -0.02829941175878048, + -0.007079001050442457, + -0.02832251414656639, + 0.05831179395318031, + -0.033310797065496445, + 0.014699004590511322, + -0.02857186459004879, + 0.05684353783726692, + 0.04029528796672821, + 0.012355695478618145, + -0.03010895475745201, + -0.000794112856965512, + -0.10148701071739197, + -0.009074353612959385, + 0.06905072182416916, + 0.09920966625213623, + -0.007367413491010666, + -0.09416035562753677, + -0.023992301896214485, + 0.0495963990688324, + -0.008370175957679749, + 0.014332403428852558, + -0.04493420571088791, + 0.09346877038478851, + -0.007650574203580618, + -0.036812908947467804, + -0.03957858681678772, + -0.09140122681856155, + -0.14271089434623718, + 0.028005659580230713, + -0.06294148415327072, + -0.027363328263163567, + -0.012432007119059563, + -0.024394238367676735, + 0.06357979029417038, + -0.04733363538980484, + 0.03035653755068779, + 0.013163136318325996, + 0.014767388813197613, + 0.09661905467510223, + 0.043260060250759125, + -0.03676493838429451, + -0.010465539991855621, + 0.020743876695632935, + -0.028816910460591316, + 0.057851146906614304, + 0.03294677659869194, + 0.07773036509752274, + -0.1055033951997757, + 0.024417579174041748, + -0.06476401537656784, + 0.058534543961286545, + 0.06471899896860123, + -0.01595075987279415, + -0.02432863786816597, + 0.015021378174424171, + -0.07561597973108292, + -0.06589976698160172, + -0.04483570158481598, + 0.07597802579402924, + -0.012126026675105095, + 0.023280294612050056, + -0.062234167009592056, + -0.044125355780124664, + -0.06000097468495369, + -0.012098468840122223, + -0.10897752642631531, + -0.007243058178573847, + 0.07596597820520401, + 0.028859542682766914, + -0.021718990057706833, + 0.05281529948115349, + 0.06826207041740417, + -0.03916770964860916, + 0.007379756309092045, + 0.041532620787620544, + 0.02169366180896759, + 0.07196307182312012, + -0.026468873023986816, + 0.05780290812253952, + -0.05697609856724739, + -0.029180606827139854, + -0.028823597356677055, + -0.015408185310661793, + -0.03849640488624573, + -0.030615121126174927, + -0.02903105318546295, + -0.0701768696308136, + -0.03778496012091637, + -0.04387155920267105, + -0.050763364881277084, + -0.06425955891609192, + 0.004905687645077705, + 0.0056528630666434765, + 0.07794062793254852, + -0.004226563032716513, + -0.06866228580474854, + -0.050017450004816055, + 0.015139453113079071, + -0.05142052471637726, + 0.03341333195567131, + 0.02507667988538742, + -0.05776705965399742, + -2.871659781674899e-33, + 0.03309934213757515, + 0.025719549506902695, + 0.07013704627752304, + 0.1042187362909317, + 0.014966213144361973, + 0.05027083680033684, + 0.01948004774749279, + -0.008447336964309216, + -0.03230317682027817, + -0.01716320589184761, + -0.05067012459039688, + 0.001569426734931767, + -0.05600642040371895, + -0.05309970676898956, + -0.012095723301172256, + 0.03661850839853287, + 0.09053613990545273, + -0.05244753882288933, + -0.08227337151765823, + 0.018285026773810387, + 0.026688018813729286, + 0.15645582973957062, + -0.03284686058759689, + -0.01138578075915575, + -0.006639011669903994, + -0.07199179381132126, + 0.08877857029438019, + -0.04279061034321785, + -0.06554962694644928, + 0.018896738067269325, + 0.06159109249711037, + -0.04040972515940666, + 0.052175600081682205, + 0.04303994029760361, + -0.0054627228528261185, + -0.07012119889259338, + -0.03214484080672264, + -0.01165303960442543, + 0.05032261833548546, + 0.038899995386600494, + -0.0451822504401207, + -0.05722447484731674, + 0.07446528226137161, + 0.04160076752305031, + -0.07539209723472595, + 0.06796771287918091, + 0.009155228734016418, + 0.007599717006087303, + 0.01171597559005022, + 0.06893342733383179, + -0.10638248920440674, + 0.036588676273822784, + -0.026811303570866585, + 0.02147911861538887, + -0.030107324942946434, + 0.0039618671871721745, + 0.020341096445918083, + 0.07095924764871597, + -0.045259989798069, + -0.04912770166993141, + 0.03070538304746151, + 0.0048509929329156876, + 0.054695162922143936, + -0.05314617604017258, + -0.014830461703240871, + 0.06382786482572556, + -0.03550165519118309, + 0.010490726679563522, + 0.09413491189479828, + 0.05494574084877968, + -0.055247288197278976, + 0.06659509986639023, + 0.09295357763767242, + 0.09782896190881729, + 0.053506843745708466, + 0.12393316626548767, + 0.027740439400076866, + -0.10122821480035782, + 0.04598407447338104, + -0.06020176410675049, + -0.10395818948745728, + 0.10248827189207077, + -0.03291894495487213, + 0.014186166226863861, + -0.0026824576780200005, + -0.04928794503211975, + -0.0065630460157990456, + -0.08105938136577606, + 0.0622209832072258, + 0.1034068614244461, + -0.00581919914111495, + -0.05233655124902725, + 0.013789829798042774, + -0.08069354295730591, + -0.04452946409583092, + 6.026379796889255e-34, + 0.01084304228425026, + -0.015592308714985847, + -0.01425325870513916, + -0.035580482333898544, + 0.057179100811481476, + -0.019036445766687393, + -0.05281371995806694, + 0.04625255614519119, + 0.012882276438176632, + 0.04849208891391754, + -0.02589792013168335, + -0.10198191553354263, + -0.04420324042439461, + -0.0490981787443161, + 0.07204553484916687, + -0.020287971943616867, + -0.01522501278668642, + -0.0686463713645935, + -0.07636220008134842, + 0.02414846420288086, + -0.04143301770091057, + -0.004072003066539764, + 0.008324475027620792, + -0.01572250761091709, + -0.021436162292957306, + 0.05478204786777496, + 0.11974826455116272, + -0.04987679049372673, + -0.008598766289651394, + 0.04092463105916977, + -0.030474593862891197, + -0.028866339474916458, + -0.04364895075559616, + 0.06919019669294357, + 0.013282349333167076, + -0.0009883488528430462, + -0.024032359942793846, + -0.03231952711939812, + 0.1085600033402443, + 0.016336902976036072, + -0.026639891788363457, + 0.05599042400717735, + -0.00503584137186408, + 0.001009688014164567, + 0.06035280227661133, + 0.0020956166554242373, + 0.009173152036964893, + 0.005005285143852234, + 0.022389773279428482, + 0.010026739910244942, + -0.07272448390722275, + -0.04558394476771355, + -0.011905312538146973, + 0.02018781192600727, + 0.06820645928382874, + -0.09791052341461182, + 0.060306366533041, + 0.019992776215076447, + 0.003861426142975688, + 0.11893177032470703, + 0.029318850487470627, + 0.024124011397361755, + -0.10466330498456955, + 0.019300319254398346, + -0.09801746159791946, + -0.0470186285674572, + -0.013342291116714478, + -0.004927590489387512, + -0.020277254283428192, + 0.03654847666621208, + 0.017480766400694847, + -0.11215834319591522, + -0.052096493542194366, + 0.09253276139497757, + 0.05940151587128639, + 0.015448251739144325, + -0.0279176477342844, + -0.01849876530468464, + -0.00739925354719162, + 0.03384101018309593, + -0.047423455864191055, + 0.014068775810301304, + -0.008734684437513351, + 0.047612063586711884, + 0.030981767922639847, + 0.053177766501903534, + -0.009230694733560085, + 0.03727084770798683, + 0.0034863902255892754, + -0.0315924733877182, + -0.03815853223204613, + 0.05359232798218727, + -0.04289913922548294, + -0.04882369562983513, + -0.0010938318446278572, + -1.5937184016934225e-08, + 0.013914561830461025, + 0.04708581045269966, + -0.004092803690582514, + -0.04877299815416336, + 0.022438690066337585, + -0.016245819628238678, + -0.01212751679122448, + -0.04718004912137985, + -0.046985428780317307, + 0.024483732879161835, + 0.004567967262119055, + -0.007239382714033127, + 0.031990524381399155, + -0.03682243078947067, + 0.09301253408193588, + -0.007014582399278879, + 0.04785558208823204, + 0.031895771622657776, + -0.01232156902551651, + -0.10516093671321869, + 0.08395929634571075, + -0.039822254329919815, + -0.0037817603442817926, + -0.06444741785526276, + -0.04613535851240158, + 0.0049551487900316715, + -0.007077456451952457, + -0.012863140553236008, + -0.015809444710612297, + 0.015037618577480316, + 0.010925333946943283, + 0.10314963757991791, + -0.045597564429044724, + 0.004421237390488386, + -0.07053956389427185, + 0.0460301898419857, + 0.02023383229970932, + -0.02222548797726631, + 0.049719247967004776, + 0.062033336609601974, + 0.060504693537950516, + -0.06742697209119797, + -0.014200757257640362, + 0.02962099388241768, + 0.030936263501644135, + 0.051057714968919754, + 0.1039203554391861, + -0.016012776643037796, + -0.03347187861800194, + -0.007083738222718239, + 0.015807155519723892, + -0.001899688271805644, + 0.07458065450191498, + 0.015109111554920673, + -0.06809332221746445, + -0.0969163104891777, + -0.049985822290182114, + 0.09507104009389877, + -0.013246357440948486, + -0.004544652532786131, + 0.07249676436185837, + -0.0495959147810936, + 0.013208390213549137, + -0.04761717468500137 + ], + "gender-intersex-bold||transgender,non-binary": [ + -0.0017236268613487482, + -0.022958826273679733, + 0.023491181433200836, + 0.02225816249847412, + -0.057503607124090195, + -0.07440789043903351, + 0.10003793239593506, + -0.04324496164917946, + 0.012940706685185432, + -0.0026833550073206425, + -0.050008390098810196, + -0.04994692653417587, + 0.013618129305541515, + -0.0192804504185915, + 0.013097584247589111, + 0.060936905443668365, + 0.011701266281306744, + 0.036026593297719955, + 0.035267263650894165, + 0.05483267083764076, + 0.04528934508562088, + -0.004408535081893206, + 0.06745071709156036, + -0.020529409870505333, + -0.04861065372824669, + -0.07167517393827438, + -0.011716794222593307, + 0.002559275832027197, + 0.005400041118264198, + -0.002004423178732395, + -0.04590173438191414, + 0.016818618401885033, + 0.006475416012108326, + -0.003425451461225748, + 0.007785145193338394, + 0.018116842955350876, + -0.014112541452050209, + -0.04688771069049835, + 0.11768912523984909, + 0.040455929934978485, + 0.03035689890384674, + -0.08555945754051208, + -0.022899409756064415, + 0.032327160239219666, + -0.004489777609705925, + 0.03576257452368736, + -0.016059745103120804, + -0.027953051030635834, + -0.08450740575790405, + -0.006588145159184933, + 0.04057808592915535, + -0.124331533908844, + -0.00874952133744955, + 0.10964168608188629, + -0.01886972412467003, + 0.01890816166996956, + -0.05343526974320412, + -0.023692049086093903, + 0.046310264617204666, + 0.0054804738610982895, + -0.028680559247732162, + -0.005707086995244026, + 0.012589155696332455, + 0.08106637746095657, + 0.022206483408808708, + 0.02682017907500267, + 0.017558543011546135, + -0.006103075575083494, + -0.01674477942287922, + 0.007740416098386049, + 0.06901053339242935, + 0.033904969692230225, + -0.08609237521886826, + 0.06303872913122177, + -0.005797208286821842, + 4.542547321761958e-05, + 0.0900261253118515, + 0.02170010842382908, + 0.004404467064887285, + -0.016125965863466263, + -0.09585724025964737, + -0.04302842170000076, + 0.05418895557522774, + 0.01095112506300211, + 0.013857574202120304, + -0.008489979431033134, + -0.01786334440112114, + -0.03414670005440712, + -0.13693226873874664, + 0.09067422151565552, + -0.1347329318523407, + 0.031009653583168983, + 0.09790073335170746, + -0.03559029847383499, + 0.08378797769546509, + 0.006858368404209614, + 0.009717660956084728, + 0.02156429924070835, + -0.02096552774310112, + 0.0749877542257309, + -0.0058991736732423306, + 0.08379801362752914, + 0.023604106158018112, + 0.03187203034758568, + -0.08821176737546921, + -0.10375159233808517, + -0.007966934703290462, + -0.00668351212516427, + -0.03642448037862778, + -0.038093917071819305, + -0.005323612131178379, + -0.1021588072180748, + 0.00444507971405983, + -0.027942437678575516, + -0.02333729900419712, + -0.03334940969944, + 0.04649025574326515, + -0.006399079225957394, + 0.14694920182228088, + -0.02658783458173275, + -0.09289240837097168, + -0.043498530983924866, + -0.05240808427333832, + 0.005249676760286093, + 0.0020502833649516106, + 0.04611167311668396, + -0.015516877174377441, + -2.9715665159192237e-33, + -0.04946579411625862, + 0.008780146017670631, + 0.005951952654868364, + 0.055532947182655334, + -0.023352883756160736, + 0.07997732609510422, + 0.010128948837518692, + -0.07923182100057602, + -0.09416702389717102, + -0.019283577799797058, + -0.014944486320018768, + 0.0783543735742569, + -0.035392239689826965, + 0.045944441109895706, + -0.012285161763429642, + 0.012449618428945541, + 0.039881590753793716, + -0.01899557374417782, + -0.06081368029117584, + 0.05180680379271507, + 0.052044786512851715, + 0.15308906137943268, + -0.07469753921031952, + -0.02122815139591694, + 0.024413229897618294, + -0.03862249106168747, + 0.03395868465304375, + -0.060086995363235474, + -0.02307301200926304, + 0.01794835738837719, + -0.04223479703068733, + 0.006876309402287006, + 0.04788161441683769, + 0.008113320916891098, + -0.019046859815716743, + 0.013863899745047092, + 0.03990849107503891, + -0.0022696417290717363, + -0.03444650024175644, + 0.06490511447191238, + 0.042365919798612595, + -0.03204330429434776, + -0.0030941611621528864, + -0.05233685299754143, + -0.026038939133286476, + 0.037482850253582, + 0.0407814085483551, + -0.06569570302963257, + -0.01049013901501894, + 0.011113421060144901, + -0.05947788432240486, + 0.07763296365737915, + -0.04634707421064377, + -0.016487600281834602, + -0.01444778498262167, + -0.021462321281433105, + 0.02225494757294655, + 0.0027213948778808117, + -0.031712498515844345, + -0.013185124844312668, + 0.08320929855108261, + -0.0006194168236106634, + 0.06091882288455963, + -0.04291645810008049, + -0.05729552358388901, + 0.005126390140503645, + 0.020322443917393684, + -0.03469632565975189, + 0.009098741225898266, + -0.0011783241061493754, + -0.12413826584815979, + 0.053320713341236115, + 0.12266647070646286, + 0.036454010754823685, + -0.0039091263897717, + 0.03268817067146301, + -0.03213492035865784, + -0.031598787754774094, + 0.07710567861795425, + -0.07512735575437546, + 0.021980922669172287, + 0.02109185978770256, + -0.07021690905094147, + -0.001981726149097085, + 0.010451599024236202, + -0.07728659361600876, + -0.020255496725440025, + 0.00479569286108017, + -0.04390789195895195, + 0.08435024321079254, + 0.038904786109924316, + 0.0329214371740818, + -0.05937996879220009, + -0.04058941453695297, + -0.062329500913619995, + 8.606751527417414e-35, + -0.0074753654189407825, + -0.050575245171785355, + -0.0014446647837758064, + -0.018957968801259995, + 0.004851617384701967, + -0.012193307280540466, + 0.04732109233736992, + 0.02008090913295746, + 0.1236138865351677, + 0.08837166428565979, + 0.10731872171163559, + -0.07891014963388443, + 0.023520104587078094, + -0.06129968538880348, + -0.021675962954759598, + -0.032602548599243164, + -0.05509697645902634, + 0.03132861107587814, + -0.03204634040594101, + 0.011934272013604641, + -0.011107007972896099, + 0.10275839269161224, + -0.02593568153679371, + 0.059008654206991196, + -0.00037992786383256316, + 0.06961901485919952, + 0.10728148370981216, + 0.02642800658941269, + -0.008069593459367752, + 0.006369626149535179, + -0.0597149096429348, + -0.06593699753284454, + 0.002201368100941181, + -0.00017210659279953688, + 0.026911532506346703, + -0.019874049350619316, + -0.04945363104343414, + 0.04282483085989952, + 0.07529062777757645, + -0.04167504608631134, + -0.006621751002967358, + -0.004286032170057297, + -0.07856304943561554, + 0.06314722448587418, + 0.03314024955034256, + 0.07732847332954407, + -0.06385759264230728, + 0.02844027616083622, + 0.08784762769937515, + 0.04884716123342514, + -0.03855913132429123, + -0.013450540602207184, + -0.018302522599697113, + -0.067765973508358, + -0.012806709855794907, + -0.14390717446804047, + -0.06390047818422318, + 0.007820283994078636, + -0.05062948167324066, + 0.11142502725124359, + 0.0007558239158242941, + 0.04335775971412659, + -0.008596064522862434, + 0.010860857553780079, + -0.0415898859500885, + -0.03152918443083763, + -0.05130091309547424, + -0.11469380557537079, + -0.012785780243575573, + 0.07077037543058395, + 0.08603423833847046, + -0.0704590454697609, + -0.06932297348976135, + 0.022931771352887154, + 0.053444139659404755, + -0.0856696292757988, + -0.03583679348230362, + -0.015482697635889053, + -0.049652669578790665, + 0.030115030705928802, + -0.036289166659116745, + -0.03931501880288124, + 0.008194204419851303, + 0.08082237094640732, + 0.05659112334251404, + 0.05936599150300026, + -0.009404245764017105, + 0.05688848719000816, + -0.015498138964176178, + -0.001871759188361466, + -0.04172983020544052, + 0.05408460646867752, + -0.1057429388165474, + -0.0839305892586708, + -0.018721429631114006, + -1.7762198822879327e-08, + 0.021165966987609863, + -0.028879772871732712, + -0.09128676354885101, + -0.05596171319484711, + 0.008307000622153282, + 0.0631684958934784, + -0.06989281624555588, + -0.10698649287223816, + -0.011184203438460827, + 0.027088899165391922, + -0.0018405863083899021, + 0.0037258928641676903, + -0.012029159814119339, + -0.035281818360090256, + 0.056119948625564575, + -0.02086879126727581, + 0.009510000236332417, + 0.04667402058839798, + 0.012148546986281872, + -0.07898761332035065, + 0.011358978226780891, + -0.022331085056066513, + -0.02209891565144062, + -0.03304929658770561, + 0.01345100812613964, + 0.05359234660863876, + 0.0485585518181324, + -0.027094069868326187, + -0.0746198520064354, + -0.006920337677001953, + 0.07819292694330215, + 0.037929438054561615, + -0.06565220654010773, + 0.03839369863271713, + -0.09420865029096603, + 0.03253217786550522, + -0.00706473458558321, + 0.05988823622465134, + 0.06457160413265228, + 0.044481247663497925, + 0.025848913937807083, + -0.03693343326449394, + -0.017729241400957108, + 0.0011298436438664794, + -0.05148174613714218, + 0.031462300568819046, + 0.0877828523516655, + -0.007653015200048685, + -0.025385966524481773, + 0.002102641621604562, + 0.03869512677192688, + -0.021270284429192543, + -0.022157270461320877, + 0.037655893713235855, + -0.02436622977256775, + -0.035623613744974136, + 0.017534438520669937, + 0.10936805605888367, + -0.009328749030828476, + 0.06178658455610275, + 0.10838901996612549, + -0.04859413951635361, + 0.054281026124954224, + -0.04141130670905113 + ], + "gender-male-bold||man,masculine,mars": [ + 0.0794207826256752, + 0.008654397912323475, + -0.0038526509888470173, + 0.05443355441093445, + 0.02356615848839283, + -0.08317156881093979, + 0.047033730894327164, + -0.12859225273132324, + -0.02963866852223873, + 0.0740351751446724, + -0.03071429580450058, + -0.04886336252093315, + -0.031784240156412125, + -0.03288121148943901, + 0.040279582142829895, + -0.010439937002956867, + -0.023980846628546715, + 0.04045230150222778, + 0.03436914458870888, + 0.07391573488712311, + 0.0020357882604002953, + 0.01700553484261036, + 0.01642857864499092, + -0.011616083793342113, + -0.05596883222460747, + 0.014235754497349262, + 0.01153924036771059, + 0.08600620925426483, + -0.006906380411237478, + 0.032331161201000214, + -0.007477972656488419, + 0.05157928168773651, + 0.11415055394172668, + -0.033865101635456085, + 0.009942916221916676, + 0.052594851702451706, + -0.07806209474802017, + -0.018972832709550858, + 0.04218386858701706, + 0.06840728223323822, + 0.004827433731406927, + -0.10757394880056381, + 0.05160604417324066, + 0.03962448239326477, + 0.008515605702996254, + 0.03432999923825264, + -0.016551485285162926, + -0.011288606561720371, + -0.002295164857059717, + 0.05933770909905434, + -0.022041013464331627, + -0.08749662339687347, + -0.046436578035354614, + 0.05751185119152069, + -0.09557522088289261, + -0.011317454278469086, + -0.026244452223181725, + -0.013167012482881546, + 0.015275690704584122, + -0.02767409011721611, + -0.04500431567430496, + -0.02862987294793129, + -0.015690231695771217, + 0.04586033523082733, + 0.08731500804424286, + -0.02964666858315468, + -0.031329911202192307, + 0.015758389607071877, + -0.03472721576690674, + 0.10785003006458282, + 0.08281081914901733, + 0.022726600989699364, + -0.09624231606721878, + 0.020043881610035896, + -0.06340240687131882, + 0.021726692095398903, + 0.07312329113483429, + -0.04551154747605324, + 0.004988646600395441, + -0.038253720849752426, + 0.0004564329283311963, + -0.0511372834444046, + -0.08562713861465454, + 0.040262430906295776, + -0.04778057709336281, + -0.03217007964849472, + -0.04571651294827461, + -0.05691114068031311, + -0.08522170782089233, + 0.048725780099630356, + -0.14705052971839905, + -0.016805998980998993, + 0.05511624738574028, + 0.026191825047135353, + -0.050587039440870285, + 0.045924630016088486, + 0.010615861974656582, + 0.034003838896751404, + -0.08298873156309128, + 0.05754505470395088, + 0.06252802163362503, + 0.04436453804373741, + -0.03055625595152378, + 0.02379729598760605, + -0.025373881682753563, + -0.08847181499004364, + -0.0016447240486741066, + 0.016528116539120674, + -0.01769294962286949, + -0.04133681580424309, + -0.015372483059763908, + -0.10673516988754272, + -0.055044956505298615, + -0.05048010125756264, + 0.02458237111568451, + -0.12309139966964722, + 0.022983942180871964, + -0.01173620205372572, + 0.05487729609012604, + 0.03025778755545616, + -0.017049621790647507, + -0.022345514968037605, + 0.014524992555379868, + -0.03491860255599022, + 0.020169105380773544, + 0.008591157384216785, + -0.03693465143442154, + -4.0467403217514985e-33, + 0.02700996771454811, + 0.014523821882903576, + 0.011497041210532188, + 0.09125140309333801, + 0.02601599507033825, + 0.01894092746078968, + 0.03351089358329773, + -0.053313225507736206, + -0.009357248432934284, + -0.054883990436792374, + -0.01680712029337883, + 0.028408801183104515, + -0.07206398248672485, + 0.0022890090476721525, + -0.06586215645074844, + 0.047953203320503235, + 0.0941154733300209, + -0.10041653364896774, + -0.1252468079328537, + 0.02717495523393154, + 0.0026180159766227007, + 0.1484273225069046, + -0.0750141516327858, + -0.07584966719150543, + 0.08366762101650238, + -0.09694632142782211, + 0.03011779673397541, + -0.08922409266233444, + -0.03615939989686012, + 0.01463853195309639, + 0.033487290143966675, + 0.0704314336180687, + 0.02882431074976921, + 0.06801412254571915, + 0.0058407592587172985, + 0.0004194301145616919, + -0.0398525707423687, + 0.06414441764354706, + -0.006672233808785677, + 0.045727189630270004, + -0.04717389494180679, + -0.06148156896233559, + -0.004205453675240278, + 0.01721496507525444, + -0.04398251324892044, + 0.0761827826499939, + -0.01216906774789095, + 0.019315365701913834, + 0.01973116211593151, + 0.056317172944545746, + -0.023414015769958496, + 0.042353395372629166, + -0.021752772852778435, + -0.0028798491694033146, + 0.03509549796581268, + -0.04055352136492729, + 0.013049273751676083, + 0.07926548272371292, + -0.06329306215047836, + -0.01823384128510952, + 0.04816530644893646, + -0.01659516803920269, + 0.12252865731716156, + -0.0039462861604988575, + -0.03915388882160187, + -0.0002733338042162359, + -0.017477499321103096, + -0.008974162861704826, + 0.022754522040486336, + 0.07675996422767639, + -0.04298797622323036, + 0.07573704421520233, + 0.060391079634428024, + 0.06878896802663803, + -0.01111344899982214, + 0.07740823179483414, + -0.029093625023961067, + -0.027156688272953033, + 0.018486827611923218, + -0.018350590020418167, + -0.08381873369216919, + 0.09070312231779099, + -0.033319469541311264, + 0.0008816985064186156, + -0.05106402933597565, + -0.036427564918994904, + 0.020848019048571587, + -0.09797508269548416, + 0.07794452458620071, + 0.0383627787232399, + -0.06758148223161697, + -0.043707363307476044, + 0.014239936135709286, + -0.05295690521597862, + -0.06897605955600739, + 5.49061518572338e-34, + -0.007967816665768623, + -0.00014089210890233517, + -0.003292940091341734, + -0.001514384406618774, + 0.03770497441291809, + -0.01063129398971796, + 0.004616310819983482, + 0.026873627677559853, + 0.016297589987516403, + 0.07066847383975983, + -0.051399197429418564, + -0.08770480006933212, + 0.003945068456232548, + -0.05233223736286163, + 0.11943904310464859, + -0.04439639300107956, + -0.02136882208287716, + -0.02264978177845478, + -0.018356915563344955, + 0.05546306073665619, + 0.017966972663998604, + 0.022642390802502632, + -0.0036777607165277004, + 0.006711479742079973, + -0.019335733726620674, + 0.0027033325750380754, + 0.10297692567110062, + -0.03203137591481209, + -0.002542178612202406, + 0.021819205954670906, + -0.057021524757146835, + -0.024989083409309387, + -0.061364661902189255, + 0.05728083476424217, + 0.010319497436285019, + 0.04449079930782318, + -0.06016014143824577, + 0.016778280958533287, + 0.07424245029687881, + 0.02310911938548088, + 5.0739548896672204e-05, + 0.04837821051478386, + -0.019230132922530174, + 0.026097677648067474, + 0.0075302571058273315, + -0.01207051146775484, + 0.02139369212090969, + 0.014855409041047096, + -0.026669688522815704, + 0.03350258991122246, + -0.051101312041282654, + -0.040193066000938416, + -0.08253000676631927, + -0.01910504698753357, + 0.02185257337987423, + -0.062230635434389114, + -0.0029304351191967726, + 0.007251560688018799, + -0.03042018972337246, + 0.11886309087276459, + -0.0368972010910511, + 0.004736837465316057, + -0.09281650930643082, + 0.03184271231293678, + -0.10961439460515976, + -0.06793752312660217, + 0.00869103241711855, + -0.006121867336332798, + -0.025407036766409874, + 0.08283886313438416, + 0.053521689027547836, + -0.12250370532274246, + -0.029988789930939674, + 0.036860838532447815, + 0.06481316685676575, + 0.03912445530295372, + 0.0039491900242865086, + -0.014271998777985573, + -0.005581705830991268, + -0.04590083658695221, + -0.00025311156059615314, + -0.03781725838780403, + 0.004546190146356821, + 0.11895661056041718, + -0.0009706565178930759, + 0.09921611100435257, + -0.029195908457040787, + 0.056891344487667084, + -0.015340138226747513, + 0.02461938001215458, + -0.03813811391592026, + -0.025762103497982025, + -0.060255926102399826, + -0.02167331427335739, + -0.06132601946592331, + -1.7285969988733996e-08, + -0.008978529833257198, + -0.009232647716999054, + -0.0820920392870903, + -0.004876395221799612, + 0.014485745690762997, + 0.06432696431875229, + 0.0017668020445853472, + -0.10392017662525177, + -0.0174410343170166, + 0.08446687459945679, + -0.03861469775438309, + 0.016537275165319443, + 0.007001062855124474, + -0.02761608362197876, + 0.023450655862689018, + -0.00476948544383049, + 0.015033410862088203, + 0.04174390807747841, + -0.019711492583155632, + -0.08286770433187485, + 0.04016996920108795, + 0.012415410950779915, + -0.028415586799383163, + -0.04076997935771942, + -0.03445819765329361, + 0.0828738659620285, + -0.017255205661058426, + -0.019425172358751297, + -0.05116764083504677, + 0.0021886362228542566, + 0.04022486135363579, + 0.07145585864782333, + -0.10021252185106277, + 0.004064892418682575, + -0.024860436096787453, + 0.017165346071124077, + 0.02024535834789276, + 0.01899499073624611, + 0.054663076996803284, + 0.0376097746193409, + 0.06047455966472626, + -0.03325000777840614, + -0.006583704147487879, + 0.006063470151275396, + -0.007692559156566858, + 0.05601033195853233, + 0.09380844980478287, + 0.0022600730881094933, + -0.08656945079565048, + 0.017980052158236504, + 0.004630320705473423, + 0.017395107075572014, + 0.07218411564826965, + 0.030241867527365685, + 0.006838007364422083, + -0.08581038564443588, + -0.008651339448988438, + 0.14483888447284698, + -0.03715798631310463, + 0.0007787224021740258, + 0.11473056674003601, + -0.028295934200286865, + -0.025048241019248962, + -0.06755751371383667 + ], + "gender-neuter-bold||agender,non-binary,asexual": [ + 0.053411707282066345, + 0.004993926268070936, + -0.021545926108956337, + 0.07760172337293625, + -0.0342739038169384, + -0.05386270582675934, + 0.01865030825138092, + -0.05755665525794029, + -0.060071542859077454, + 0.02371072955429554, + 0.04011157527565956, + -0.09652435034513474, + -0.03326021507382393, + 0.01969168335199356, + 0.014920087531208992, + 0.02761230245232582, + 0.03382602334022522, + -0.02266521565616131, + 0.035689979791641235, + 0.045264389365911484, + 0.024105897173285484, + 0.02911561168730259, + 0.06812606006860733, + -0.05169341340661049, + -0.028951527550816536, + -0.09979821741580963, + -0.04917769134044647, + -0.025493808090686798, + -0.012863692827522755, + -0.0269728172570467, + 0.0005827028653584421, + 0.015007372945547104, + 0.08332033455371857, + 0.0064709181897342205, + 0.04808242246508598, + -0.00795047264546156, + -0.04048104211688042, + 0.0066200015135109425, + 0.05462804436683655, + 0.10904427617788315, + -0.0007894618320278823, + -0.11250722408294678, + -0.08185674250125885, + 0.021295079961419106, + -0.004586741328239441, + 0.03519408032298088, + -0.0768771693110466, + -0.012272492982447147, + -0.044566310942173004, + 0.0021926970221102238, + -0.024588843807578087, + -0.100737564265728, + -0.059158068150281906, + 0.08896590769290924, + -0.038178037852048874, + -0.01681557670235634, + -0.04205302521586418, + -0.08897305279970169, + 0.021532488986849785, + -0.01728670485317707, + -0.013054805807769299, + 0.02892749384045601, + -0.012262252159416676, + 0.047877442091703415, + 0.02206425555050373, + -0.021624326705932617, + 0.03270883113145828, + -0.023453783243894577, + 0.00563857750967145, + 0.06996934860944748, + 0.09869744628667831, + 0.0019596205092966557, + -0.039589378982782364, + 0.06227076053619385, + -0.03375367820262909, + -0.03895523399114609, + 0.05099786818027496, + 0.028214486315846443, + 0.050776686519384384, + -0.0613429993391037, + -0.09735313802957535, + -0.03627273440361023, + 0.0337168425321579, + 0.007159498054534197, + 0.02251415327191353, + -0.009795572608709335, + -0.027148352935910225, + -0.04412358999252319, + -0.11449665576219559, + 0.0673951506614685, + -0.15731753408908844, + 0.003653815248981118, + 0.06659799069166183, + -0.008870052173733711, + 0.06780322641134262, + 0.014196901582181454, + 0.04924378544092178, + -0.0015783685958012938, + -0.03280271962285042, + 0.06181534752249718, + -0.057873934507369995, + 0.07241345942020416, + -0.03773828223347664, + 0.09778230637311935, + -0.07197042554616928, + -0.07183483242988586, + -0.009960880503058434, + -0.04663114622235298, + -0.009225591085851192, + 0.004899288527667522, + 0.0065089259296655655, + -0.09204036742448807, + 0.004754493944346905, + -0.056027479469776154, + -0.018216144293546677, + -0.07744003087282181, + 0.004818153101950884, + 0.021642865613102913, + 0.09225404262542725, + -0.004603054840117693, + -0.017551984637975693, + -0.008939179591834545, + -0.036632414907217026, + 0.009466501884162426, + 0.04817182198166847, + 0.0385957695543766, + 0.03798697143793106, + -1.8789630676001314e-33, + -0.004238693974912167, + -0.010153713636100292, + -0.0342729389667511, + 0.06145099550485611, + 0.002797993365675211, + 0.10208622366189957, + -0.005658947397023439, + -0.07113543897867203, + -0.0692429319024086, + -0.039328593760728836, + 0.004749458748847246, + -0.011531482450664043, + -0.06176608055830002, + 0.011780865490436554, + -0.008854464627802372, + 0.02914232388138771, + 0.027140842750668526, + -0.011607645079493523, + -0.04609076678752899, + 0.06729314476251602, + -0.006512863095849752, + 0.14575739204883575, + -0.06271494179964066, + -0.026547932997345924, + 0.041287992149591446, + -0.12175344675779343, + -0.009636320173740387, + -0.038368768990039825, + -0.06881017237901688, + 0.019323192536830902, + 0.027795009315013885, + -0.033748991787433624, + 0.022676419466733932, + 0.05077335610985756, + -0.022515445947647095, + -0.05441916733980179, + -0.018222041428089142, + -0.009870636276900768, + -0.0257016159594059, + 0.07653361558914185, + -0.031729236245155334, + -0.02915872260928154, + -0.022959623485803604, + -0.03906667232513428, + -0.06891759485006332, + 0.05472646281123161, + 0.049932800233364105, + -0.06030283123254776, + -0.015093740075826645, + 0.017188969999551773, + -0.04779483750462532, + 0.08442217111587524, + -0.0020710218232125044, + -0.012190259993076324, + 0.00841313973069191, + 0.029876364395022392, + 0.009153487160801888, + 0.036981336772441864, + -0.06338302046060562, + 0.007994511164724827, + 0.09839700907468796, + 0.029625359922647476, + 0.08941937983036041, + -0.10914450138807297, + -0.05265907198190689, + 0.013015390373766422, + -0.00010123802348971367, + -0.012682202272117138, + 0.057291846722364426, + 0.0354866161942482, + -0.10695629566907883, + 0.07826150208711624, + 0.0914216935634613, + 0.04351222515106201, + -0.014103391207754612, + 0.06160654127597809, + 0.03177934139966965, + -0.06246040016412735, + 0.05979513004422188, + -0.10862812399864197, + -0.010560967028141022, + 0.07548855990171432, + -0.07668460160493851, + 0.013766370713710785, + -0.009056827053427696, + -0.060131072998046875, + 0.00935994740575552, + -0.04989832639694214, + 0.014876989647746086, + 0.05077444016933441, + 0.033392518758773804, + -0.03198401629924774, + -0.04679422080516815, + -0.094814233481884, + -0.0017068604938685894, + -1.0378754619161798e-33, + -0.03155321627855301, + -0.036999378353357315, + -0.04432537406682968, + -0.006809458136558533, + -0.038971781730651855, + 0.021911021322011948, + 0.018758485093712807, + 0.030522694811224937, + 0.052458252757787704, + 0.042295508086681366, + 0.049960773438215256, + -0.021427977830171585, + 0.009535645134747028, + -0.04755360633134842, + 0.05640455707907677, + 0.030155351385474205, + -0.08725572377443314, + 0.08022603392601013, + -0.0060213105753064156, + 0.002962816273793578, + 0.005911123473197222, + 0.09812939167022705, + -0.048402510583400726, + 0.054196733981370926, + 0.016569307073950768, + 0.04741176590323448, + 0.0827711820602417, + -0.022916939109563828, + -0.027340460568666458, + 0.0180046409368515, + -0.007143410854041576, + -0.017234476283192635, + -0.011531637981534004, + -0.008712518960237503, + 0.030357468873262405, + -0.01579611748456955, + -0.07270348072052002, + 0.0153008121997118, + 0.06025628000497818, + -0.06392236799001694, + 0.007227820809930563, + 0.05033530667424202, + -0.05481760948896408, + 0.03463885560631752, + 0.020113904029130936, + 0.04560752585530281, + -0.03056107833981514, + 0.026706891134381294, + 0.0811399444937706, + 0.005637101363390684, + -0.03370903804898262, + -0.0251734908670187, + -0.027423882856965065, + -0.05955158919095993, + -0.07290378212928772, + -0.07681870460510254, + -0.013742991723120213, + -0.014321565628051758, + 0.016743894666433334, + 0.13653884828090668, + 0.010444726794958115, + 0.0006020648870617151, + -0.02179013565182686, + 0.04306940361857414, + -0.08985013514757156, + -0.04281312972307205, + -0.03918943554162979, + -0.046516209840774536, + -0.008949635550379753, + 0.05144147574901581, + 0.05251573026180267, + -0.05031083896756172, + -0.028569670394062996, + 0.010044916532933712, + 0.02759409323334694, + -0.13591060042381287, + -0.016819022595882416, + -0.005350805819034576, + -0.02444630116224289, + 0.05263878405094147, + -0.045284055173397064, + -0.015091318637132645, + -0.0012250242289155722, + 0.11474864184856415, + -0.012958603911101818, + 0.004651446361094713, + -0.027008678764104843, + -0.002280771965160966, + 0.0039054269436746836, + -0.006242723669856787, + -0.055017516016960144, + 0.022529734298586845, + -0.11538563668727875, + -0.006436408497393131, + 0.0053954655304551125, + -2.093602446961995e-08, + 0.031614743173122406, + -0.007520175538957119, + -0.04438920319080353, + -0.0624510683119297, + 0.06541378051042557, + 0.013389920815825462, + -0.08117504417896271, + -0.13150514662265778, + -0.005926444660872221, + 0.03372403606772423, + 0.0037665541749447584, + 0.04863826185464859, + 0.0256338007748127, + -0.03978613764047623, + 0.10908334702253342, + 0.02251320146024227, + 0.048151809722185135, + 0.10142790526151657, + -0.0027798330411314964, + -0.024694819003343582, + 0.0799894854426384, + 0.009303119964897633, + -0.03979121893644333, + -0.018197908997535706, + -0.050828490406274796, + 0.03658058121800423, + 0.05680622160434723, + 0.01825394667685032, + -0.027112098410725594, + -0.020575517788529396, + 0.10014917701482773, + 0.0999537780880928, + -0.03301594406366348, + 0.0409105084836483, + -0.05224592983722687, + 0.007695410866290331, + -0.022503668442368507, + 0.04783368855714798, + 0.033503457903862, + 0.09906646609306335, + 0.03765273466706276, + -0.04419928044080734, + -0.015633953735232353, + 0.02636834979057312, + -0.041035424917936325, + 0.03938440605998039, + 0.04283779487013817, + -0.03313201665878296, + -0.06829892098903656, + 0.06220584735274315, + 0.020677486434578896, + 0.03734305128455162, + 0.014347266405820847, + 0.09041202813386917, + -0.020847640931606293, + -0.06739175319671631, + -0.023125769570469856, + 0.042658109217882156, + -0.036596570163965225, + 0.0834171324968338, + 0.0976695790886879, + -0.05793681740760803, + 0.10064518451690674, + -0.04708707705140114 + ], + "gender-nonbinary-bold||intersex,non-binary": [ + 0.022157078608870506, + -0.017903249710798264, + 0.015445912256836891, + 0.028889277949929237, + -0.03781254589557648, + -0.0935920774936676, + 0.0755610466003418, + -0.06241433694958687, + 0.0020569025073200464, + -0.022955158725380898, + -0.04327163100242615, + -0.06025736406445503, + 0.042506828904151917, + -0.02331440895795822, + 0.002161171520128846, + 0.05058276653289795, + -0.006789506413042545, + 0.030582813546061516, + 0.0014925360446795821, + 0.07250308245420456, + 0.038444649428129196, + -0.022782837972044945, + 0.048100635409355164, + -0.01834235154092312, + -0.04752791300415993, + -0.05201337859034538, + 0.026457717642188072, + 0.017472993582487106, + 0.043197326362133026, + -0.04557078331708908, + -0.009458075277507305, + 0.02715529128909111, + 0.0858391523361206, + 0.02235253155231476, + 0.04563278332352638, + 0.02543940581381321, + 0.019219642505049706, + -0.053304631263017654, + 0.07332202047109604, + 0.03837492689490318, + 0.033625874668359756, + -0.06403316557407379, + -0.007724599447101355, + 0.021906118839979172, + -0.005550816655158997, + 0.03861340507864952, + -0.01161914598196745, + 0.03419308736920357, + -0.07323034852743149, + -0.030168280005455017, + 0.017307275906205177, + -0.08236881345510483, + -0.06873098760843277, + 0.10333464294672012, + -0.029666002839803696, + 0.006372132804244757, + -0.0758720263838768, + -0.04901920258998871, + 0.043131954967975616, + -0.01162105705589056, + -0.05768907442688942, + -0.0043595233000814915, + 0.006832296494394541, + 0.07147082686424255, + 0.02825574018061161, + 0.03419877588748932, + -0.006494325120002031, + 0.04038165882229805, + -0.023567600175738335, + 0.006828651763498783, + 0.07887909561395645, + 0.01979801617562771, + -0.12574881315231323, + 0.07412217557430267, + -0.013746569864451885, + 0.04262714460492134, + 0.11324267834424973, + -0.0038184451404958963, + -0.0009958273731172085, + -0.02308863028883934, + -0.14928856492042542, + -0.10789191722869873, + 0.06471876800060272, + 0.05759940668940544, + 0.05427856743335724, + -0.0033148671500384808, + -0.04422219097614288, + -0.026003142818808556, + -0.10717200487852097, + 0.05917494744062424, + -0.11591017246246338, + 0.01844533532857895, + 0.082553431391716, + -0.006250132340937853, + 0.051878489553928375, + 0.001441426225937903, + 0.0863889679312706, + 0.002937892684713006, + -0.0022771935909986496, + 0.09277360886335373, + -0.004043953493237495, + 0.05666303634643555, + -0.011886263266205788, + 0.020992422476410866, + -0.093082495033741, + -0.054258737713098526, + 0.03390541672706604, + -0.005858323071151972, + -0.01876692660152912, + -0.04678011313080788, + 0.008110451512038708, + -0.05629551783204079, + -0.016562456265091896, + -0.04624273255467415, + -0.08460777997970581, + -0.037115950137376785, + 0.01465146616101265, + 0.0034909117966890335, + 0.13649721443653107, + -0.061688780784606934, + -0.04505135118961334, + -0.046068258583545685, + -0.05534189194440842, + -8.154041279340163e-05, + -0.0028483185451477766, + -0.008932719007134438, + -0.017386745661497116, + -8.620097520896574e-34, + -0.059554457664489746, + 0.005872074980288744, + 0.020456913858652115, + 0.050466470420360565, + -0.03566044196486473, + 0.0741593986749649, + -0.019537823274731636, + -0.11073050647974014, + -0.12581661343574524, + 0.00020968915487173945, + -0.008733442984521389, + 0.06482716649770737, + -0.02042689360678196, + 0.011251321993768215, + 0.035099372267723083, + -9.850691640167497e-06, + 0.024367526173591614, + -0.010472994297742844, + -0.02417256496846676, + 0.08283731341362, + 9.360758122056723e-05, + 0.13764826953411102, + -0.08120305836200714, + -0.0009467683848924935, + 0.026397546753287315, + -0.07235646992921829, + 0.047743480652570724, + -0.08240500092506409, + -0.0017195219406858087, + 0.031465236097574234, + -0.01181046012789011, + -0.017925022169947624, + 0.040003012865781784, + -0.007114870008081198, + -0.010185320861637592, + 0.022948846220970154, + -0.009713844396173954, + -0.00785784237086773, + -0.002635131822898984, + 0.11566399037837982, + 0.0322246290743351, + -0.023242920637130737, + 0.06479927152395248, + -0.07607190310955048, + 0.005709017161279917, + 0.03520142287015915, + 0.027503233402967453, + -0.037257540971040726, + -0.011005187407135963, + 0.011977700516581535, + -0.055679939687252045, + 0.06604278087615967, + 0.019414793699979782, + 0.010211171582341194, + 0.0334780253469944, + 0.006699686404317617, + 0.07428069412708282, + 0.02093314193189144, + -0.03234446048736572, + 0.013633253052830696, + 0.03027386963367462, + 0.024827826768159866, + 0.05960066244006157, + -0.027094585821032524, + -0.0627940222620964, + 0.04398680850863457, + 0.003982304595410824, + -0.04045402258634567, + 0.014356628991663456, + -0.022380083799362183, + -0.09487564116716385, + 0.10304718464612961, + 0.10306581109762192, + 0.01760740391910076, + -0.01696218177676201, + 0.04898502677679062, + -0.024449476972222328, + -0.0397399477660656, + 0.11333687603473663, + -0.07783056050539017, + 0.03063308261334896, + 0.0009536966099403799, + -0.04985186830163002, + -0.008544040843844414, + -0.047677941620349884, + -0.03742721304297447, + -0.044349122792482376, + 0.0004194746434222907, + -0.07318051904439926, + 0.05676199495792389, + 0.04705582931637764, + -0.013486314564943314, + -0.05222731828689575, + -0.03961722180247307, + -0.05075046792626381, + -9.140594480826182e-34, + -0.03508654981851578, + -0.0470043309032917, + -0.01468109805136919, + -0.00757061829790473, + -0.037880320101976395, + -0.004629659466445446, + 0.07439400255680084, + -0.019628329202532768, + 0.10145609080791473, + 0.05856682360172272, + 0.13945730030536652, + -0.055202584713697433, + -0.01807824708521366, + -0.04622010141611099, + -0.013313809409737587, + -0.012961301952600479, + -0.03968479856848717, + 0.0696549266576767, + 0.0013857840094715357, + -0.02364189550280571, + -0.0222056545317173, + 0.06866452842950821, + 0.015345356427133083, + 0.05788438767194748, + 0.02746126428246498, + 0.07290428876876831, + 0.029961353167891502, + 0.07672993838787079, + -0.022855322808027267, + 0.0024837609380483627, + -0.04728606715798378, + -0.06580501794815063, + -0.0040117367170751095, + -0.022946681827306747, + -0.005093086045235395, + -0.026383427903056145, + -0.03607733175158501, + 0.024986527860164642, + 0.07831713557243347, + -0.07785609364509583, + 0.005778315477073193, + 0.04391469061374664, + -0.07800465822219849, + 0.07130137830972672, + 0.027696289122104645, + 0.05627076327800751, + -0.06444310396909714, + 0.018933357670903206, + 0.10756013542413712, + 0.030085695907473564, + -0.02694731391966343, + 0.001344785443507135, + -0.009566249325871468, + -0.039956413209438324, + -0.02022329717874527, + -0.12027745693922043, + -0.05007399991154671, + 0.041735947132110596, + -0.010820180177688599, + 0.07975350320339203, + -0.0062650577165186405, + 0.01482084859162569, + -0.0021383168641477823, + 0.01613272912800312, + -0.025144824758172035, + -0.06171160936355591, + -0.04865501448512077, + -0.0695912167429924, + -0.0175530593842268, + 0.021235760301351547, + 0.07527771592140198, + -0.02970157191157341, + -0.06073453277349472, + 0.019271794706583023, + 0.058364707976579666, + -0.05088723450899124, + -0.005943978670984507, + -0.01668216474354267, + -0.0013699029805138707, + 0.030609890818595886, + -0.038784172385931015, + 0.005179811269044876, + -0.008602229878306389, + 0.10738803446292877, + 0.052437882870435715, + 0.03958522155880928, + 8.095407247310504e-05, + 0.030505875125527382, + 0.013045543804764748, + -0.024746567010879517, + -0.040619559586048126, + 0.05284983664751053, + -0.03882819414138794, + -0.05934109166264534, + 0.013386249542236328, + -1.8010528179956964e-08, + 0.020372282713651657, + -0.08348406851291656, + -0.11639316380023956, + -0.09100878983736038, + 0.018966885283589363, + 0.016405798494815826, + -0.09068771451711655, + -0.1594378650188446, + -4.208199607091956e-05, + -0.0018719868967309594, + 0.032690756022930145, + 0.0005874717026017606, + -0.029801461845636368, + -0.06722898781299591, + 0.088636115193367, + -0.037205420434474945, + 0.027950581163167953, + -0.026648560538887978, + -0.003559872740879655, + -0.0813286229968071, + 0.06389909237623215, + 0.016588527709245682, + -0.013882541097700596, + -0.01987331360578537, + -0.009173279628157616, + 0.050215382128953934, + 0.03281125798821449, + -0.05135267972946167, + -0.01022702269256115, + -0.020524300634860992, + 0.049350325018167496, + 0.0395868718624115, + -0.055371370166540146, + 0.05801408365368843, + -0.0898369774222374, + 0.04607204347848892, + -0.021991532295942307, + 0.07242359220981598, + 0.021965377032756805, + 0.037003278732299805, + 0.0013847859809175134, + -0.043840039521455765, + -0.061726782470941544, + -0.0025371629744768143, + 0.019067298620939255, + 0.020508132874965668, + 0.07557608187198639, + 0.04181729629635811, + -0.006127959117293358, + -0.0044180662371218204, + 0.002581225009635091, + -0.001863492070697248, + 0.004649390932172537, + 0.03313211351633072, + -0.0794004574418068, + -0.07286544144153595, + -0.05195635184645653, + 0.09134022891521454, + 0.008488737046718597, + 0.04514337703585625, + 0.11973955482244492, + -0.07937910407781601, + 0.039844706654548645, + -0.04981871694326401 + ], + "gender-transgender-bold||intersex,non-binary": [ + -0.00787785742431879, + -0.025692345574498177, + 0.02404196932911873, + 0.024117697030305862, + -0.058718178421258926, + -0.07261654734611511, + 0.10507015138864517, + -0.04583973065018654, + 0.010037194006145, + -0.003996172919869423, + -0.05653049424290657, + -0.05107792839407921, + 0.01101737655699253, + -0.01358739472925663, + 0.02223004586994648, + 0.07093801349401474, + 0.013324176892638206, + 0.04075152054429054, + 0.035696808248758316, + 0.05373554304242134, + 0.045607827603816986, + -0.00971196684986353, + 0.052573155611753464, + -0.013836570084095001, + -0.04294424131512642, + -0.06427323073148727, + -0.014408950693905354, + -0.0010197765659540892, + 0.004533206578344107, + -0.004973953124135733, + -0.050777602940797806, + 0.01873689703643322, + -0.004434579983353615, + -0.008399823680520058, + 0.003277338109910488, + 0.021827077493071556, + -0.011143144220113754, + -0.053918782621622086, + 0.11611349880695343, + 0.03926428034901619, + 0.027467742562294006, + -0.08890487253665924, + -0.021537089720368385, + 0.02788267470896244, + -0.004192250780761242, + 0.040790095925331116, + -0.010789833962917328, + -0.031037701293826103, + -0.08819351345300674, + -0.015929218381643295, + 0.038890622556209564, + -0.11604662239551544, + -0.00702465046197176, + 0.11200784891843796, + -0.022157831117510796, + 0.025211699306964874, + -0.04767583683133125, + -0.022348027676343918, + 0.04643593728542328, + -0.0005646567442454398, + -0.026595141738653183, + -0.005162132903933525, + 0.010538196191191673, + 0.08171230554580688, + 0.017161574214696884, + 0.014718128368258476, + 0.012194107286632061, + -0.008340366184711456, + -0.013692488893866539, + 0.01716974936425686, + 0.06580011546611786, + 0.022475332021713257, + -0.08226000517606735, + 0.05553298071026802, + 0.002630094764754176, + -0.006582043133676052, + 0.09341178089380264, + 0.024684114381670952, + 0.013605840504169464, + -0.012440319173038006, + -0.09886017441749573, + -0.04368443414568901, + 0.04837523773312569, + 0.012215109542012215, + 0.005679330322891474, + -0.008839433081448078, + -0.020051484927535057, + -0.03456827998161316, + -0.13745389878749847, + 0.08627311140298843, + -0.139173686504364, + 0.03614332526922226, + 0.1076374426484108, + -0.037702400237321854, + 0.0899689719080925, + 0.007947203703224659, + 0.007135402411222458, + 0.016247913241386414, + -0.01957101933658123, + 0.07260985672473907, + 0.008600037544965744, + 0.09215632826089859, + 0.019633343443274498, + 0.027774566784501076, + -0.09740684181451797, + -0.11038140207529068, + -0.01078833919018507, + 0.005459292326122522, + -0.042304594069719315, + -0.033539917320013046, + -0.009368465282022953, + -0.10408855229616165, + -0.000133515743073076, + -0.03266916051506996, + -0.03076252155005932, + -0.031635455787181854, + 0.04311168193817139, + -0.0026636170223355293, + 0.14334410429000854, + -0.023887988179922104, + -0.0876867026090622, + -0.04390214756131172, + -0.05723531171679497, + 0.008240178227424622, + -0.004506376106292009, + 0.050280503928661346, + -0.011045101098716259, + -3.336336555645788e-33, + -0.04464208334684372, + 0.010329753160476685, + -0.0037927094381302595, + 0.0567009337246418, + -0.02024131454527378, + 0.07683670520782471, + 0.007821287959814072, + -0.0727989450097084, + -0.1003340482711792, + -0.019535087049007416, + -0.02259695902466774, + 0.07501524686813354, + -0.029111795127391815, + 0.049285683780908585, + -0.009772739373147488, + 0.0012085248017683625, + 0.04373545199632645, + -0.023876287043094635, + -0.05123225599527359, + 0.04408177360892296, + 0.05457770824432373, + 0.15776441991329193, + -0.08051510155200958, + -0.02236894518136978, + 0.020602451637387276, + -0.031735099852085114, + 0.03476788476109505, + -0.06279530376195908, + -0.0163505207747221, + 0.013830102980136871, + -0.039725612848997116, + 0.011588751338422298, + 0.049042847007513046, + 0.0006345802103169262, + -0.008030816912651062, + 0.013777344487607479, + 0.03985130041837692, + -0.0043373750522732735, + -0.03430511802434921, + 0.059468090534210205, + 0.03994327783584595, + -0.034828949719667435, + -0.0078068263828754425, + -0.05039221793413162, + -0.01957850530743599, + 0.03921759873628616, + 0.04170069098472595, + -0.05643914267420769, + -0.0034211340826004744, + 0.0076962243765592575, + -0.06584704667329788, + 0.07348711043596268, + -0.04503736272454262, + -0.008417271077632904, + -0.009366129525005817, + -0.021603040397167206, + 0.027691859751939774, + 0.000559710490051657, + -0.027876585721969604, + -0.02509547583758831, + 0.08506511896848679, + 0.006849320605397224, + 0.06551063805818558, + -0.045145049691200256, + -0.05703458935022354, + 0.0039046083111315966, + 0.018824469298124313, + -0.034401703625917435, + 0.014813130721449852, + -0.0012091478565707803, + -0.12510362267494202, + 0.05640976503491402, + 0.12255331128835678, + 0.04453121870756149, + -2.0670930098276585e-05, + 0.035392627120018005, + -0.0378725528717041, + -0.03114011138677597, + 0.0752979964017868, + -0.06798949837684631, + 0.0177148524671793, + 0.015790216624736786, + -0.06548113375902176, + -0.008691337890923023, + 0.014547174796462059, + -0.07861919701099396, + -0.028490185737609863, + -0.011052645742893219, + -0.04285157471895218, + 0.09040025621652603, + 0.03847350925207138, + 0.03146015852689743, + -0.06350626051425934, + -0.036885816603899, + -0.04805805906653404, + 2.7315292837843664e-34, + -0.0016289211343973875, + -0.053974736481904984, + 0.000696625909768045, + -0.009169402532279491, + 0.01074336376041174, + -0.020443014800548553, + 0.04506535083055496, + 0.015026023611426353, + 0.13445445895195007, + 0.08818977326154709, + 0.1028909906744957, + -0.07533571869134903, + 0.023193079978227615, + -0.061964306980371475, + -0.02254500426352024, + -0.03247131407260895, + -0.057275474071502686, + 0.02150639146566391, + -0.025686930865049362, + 0.01659049279987812, + -0.011361156590282917, + 0.10473230481147766, + -0.025753628462553024, + 0.06298071891069412, + -0.004424042999744415, + 0.07217057794332504, + 0.11280553042888641, + 0.025122201070189476, + 0.006107528693974018, + 0.007595565170049667, + -0.06102593615651131, + -0.07410095632076263, + -0.0040161800570786, + 0.00301651144400239, + 0.027909886091947556, + -0.015428104437887669, + -0.05082038417458534, + 0.04381030052900314, + 0.07091468572616577, + -0.03743891417980194, + -0.006452625151723623, + -0.006120225414633751, + -0.0761071965098381, + 0.06342492997646332, + 0.04573745280504227, + 0.0671897605061531, + -0.07293524593114853, + 0.023739617317914963, + 0.08693879842758179, + 0.04592499881982803, + -0.029103048145771027, + -0.01279438380151987, + -0.02816343680024147, + -0.07105707377195358, + -0.0019364893669262528, + -0.13981252908706665, + -0.06656371802091599, + 0.008015008643269539, + -0.045394331216812134, + 0.10247556865215302, + 0.003897066693753004, + 0.04695826396346092, + 0.0032250387594103813, + 0.007466087583452463, + -0.043486081063747406, + -0.026288937777280807, + -0.04645650461316109, + -0.11582809686660767, + -0.008630389347672462, + 0.06435491889715195, + 0.08850309997797012, + -0.06133285164833069, + -0.06834530085325241, + 0.02312472090125084, + 0.057587943971157074, + -0.08727666735649109, + -0.023275624960660934, + -0.012435603886842728, + -0.044805530458688736, + 0.02165440283715725, + -0.03941041976213455, + -0.03653326258063316, + 0.005893603898584843, + 0.0743187889456749, + 0.05163489654660225, + 0.06453081965446472, + -0.014370710588991642, + 0.06449712812900543, + -0.02331240475177765, + -0.007573921233415604, + -0.039534151554107666, + 0.06036270409822464, + -0.10451961308717728, + -0.07676617801189423, + -0.020080946385860443, + -1.777021729765238e-08, + 0.02515234984457493, + -0.029831958934664726, + -0.09654612094163895, + -0.05191094055771828, + 0.0026104068383574486, + 0.0611107274889946, + -0.06259053200483322, + -0.11369249224662781, + -0.013393049128353596, + 0.027254357933998108, + -0.00820053182542324, + 0.0075510102324187756, + -0.006737185176461935, + -0.030507875606417656, + 0.050852738320827484, + -0.01602889969944954, + 0.009567168541252613, + 0.04722096025943756, + 0.012144393287599087, + -0.08036073297262192, + 0.011813068762421608, + -0.0217464417219162, + -0.025697775185108185, + -0.03545909747481346, + 0.016107991337776184, + 0.05570252612233162, + 0.04403063654899597, + -0.0204145684838295, + -0.07822262495756149, + -0.012976745143532753, + 0.0806686282157898, + 0.04363606870174408, + -0.0663762018084526, + 0.03920279070734978, + -0.09793789684772491, + 0.03126608580350876, + -0.00023985642474144697, + 0.05584033206105232, + 0.054723694920539856, + 0.04067021235823631, + 0.02853459119796753, + -0.038546040654182434, + -0.022308457642793655, + 0.0036890669725835323, + -0.04866591468453407, + 0.03643584996461868, + 0.09035839140415192, + -0.007633507717400789, + -0.02304754965007305, + 8.82078347785864e-06, + 0.04047682508826256, + -0.017543215304613113, + -0.022319326177239418, + 0.028041897341609, + -0.023101838305592537, + -0.038567621260881424, + 0.018128404393792152, + 0.10591821372509003, + -0.012072150595486164, + 0.06636893004179001, + 0.10247192531824112, + -0.04753055050969124, + 0.04945392534136772, + -0.04362383112311363 + ], + "ghost-bold||pac-man,spirit,scary,halloween": [ + -0.0075334482826292515, + -0.022963428869843483, + -0.009172162041068077, + 0.023969080299139023, + 0.014346176758408546, + 0.03568132966756821, + 0.019193051382899284, + -0.11706547439098358, + 0.02513127215206623, + -0.041573915630578995, + -0.016829369589686394, + -0.049486126750707626, + 0.008248423226177692, + -0.01835312880575657, + 0.009663555771112442, + -0.001953728264197707, + 0.003351574530825019, + 0.09416691958904266, + 0.07570312172174454, + 0.018895959481596947, + 0.03826875612139702, + 0.0106591135263443, + -0.05758325755596161, + 0.07540356367826462, + 0.03746524453163147, + -0.024430209770798683, + 0.0004955762415193021, + -0.06640012562274933, + -0.007999748922884464, + -0.11532474309206009, + -0.014514004811644554, + -0.01545598916709423, + 0.03726702928543091, + -0.07825508713722229, + 0.027212930843234062, + 0.016735460609197617, + -0.03296146169304848, + 0.007868966087698936, + 0.0032171360217034817, + 0.058697283267974854, + -0.02149655483663082, + 0.05196322873234749, + 0.02683587744832039, + 0.013117438182234764, + -0.06800065189599991, + -0.07957445830106735, + -0.06329260021448135, + -0.025257891044020653, + 0.02185153029859066, + 0.025693833827972412, + 0.03745444864034653, + -0.06142101436853409, + -0.03516503423452377, + 0.0983036458492279, + -0.05965659022331238, + -0.021978959441184998, + -0.0030765365809202194, + 0.00553850457072258, + 0.01691797934472561, + -0.04534909874200821, + -0.011639024131000042, + 0.013345496729016304, + 0.04173441231250763, + 0.043457429856061935, + 0.015677839517593384, + -0.04221300780773163, + 0.03043261356651783, + 0.02405235916376114, + 0.0346439927816391, + 0.03558024764060974, + -0.043252602219581604, + 0.023738618940114975, + 0.07788359373807907, + -0.06961717456579208, + -0.0517100915312767, + 0.0024637712631374598, + 0.03165781870484352, + -0.06226467713713646, + -0.010434473864734173, + -0.019795583561062813, + 0.05414736270904541, + -0.05882943049073219, + -0.05660321190953255, + -0.0938110277056694, + 0.018174145370721817, + 0.09415749460458755, + -0.08786965161561966, + 0.018236719071865082, + -0.04300194978713989, + 0.06337379664182663, + -0.0674748346209526, + 0.0007622410776093602, + -0.002672996371984482, + 0.06753994524478912, + 0.04142532870173454, + -0.015443263575434685, + -0.012658734805881977, + 0.03541190177202225, + -0.055982690304517746, + 0.08677226305007935, + -0.026308635249733925, + -0.03330327197909355, + 0.001257541123777628, + -0.04394407197833061, + 0.04213978722691536, + -0.02835097722709179, + -0.06001253053545952, + -0.06419741362333298, + 0.016972584649920464, + 0.04335940629243851, + 6.037378261680715e-05, + -0.043058816343545914, + -0.04731317609548569, + -0.04992251843214035, + 0.05604038015007973, + 0.0025215852074325085, + 0.024022523313760757, + -0.09156488627195358, + -0.00358418095856905, + 0.006513372994959354, + 0.12416389584541321, + 0.014624540694057941, + 0.06141765043139458, + -0.0020642203744500875, + 0.013600357808172703, + -0.024838265031576157, + 0.048054806888103485, + -3.719112413762065e-33, + 0.08153220266103745, + 0.01779804192483425, + -0.008156769908964634, + 0.011253632605075836, + 0.06952830404043198, + -0.027035577222704887, + -0.01732792891561985, + -0.03456055745482445, + -0.09164262562990189, + 0.06882583349943161, + -0.02500840835273266, + 0.05509686842560768, + -0.03573864698410034, + 0.03582006320357323, + 0.0013846788788214326, + 0.047395553439855576, + -0.04904855787754059, + -0.014710753224790096, + -0.038901399821043015, + -0.03401753678917885, + -0.06572633981704712, + 0.17776592075824738, + -0.08092492818832397, + -0.009296543896198273, + 0.03060520999133587, + 0.039544664323329926, + 0.007209093309938908, + -0.012089689262211323, + -0.002765033859759569, + 0.01978214643895626, + 0.04576902836561203, + -0.01975410245358944, + 0.022442344576120377, + 0.034834783524274826, + 0.003459633095189929, + -0.005834544543176889, + -0.04736872389912605, + -0.02885298989713192, + -0.028842054307460785, + -0.005629152059555054, + 0.0037301837000995874, + 0.001091030309908092, + -0.028895417228341103, + -0.058278024196624756, + -0.005516122095286846, + 0.04718226566910744, + 0.031606171280145645, + -0.03471978381276131, + -0.05707675218582153, + 0.061856210231781006, + 0.010121941566467285, + 0.02618572488427162, + -0.0455671027302742, + 0.044142208993434906, + 0.021887512877583504, + -0.07377874106168747, + 0.0038082064129412174, + -0.009629426524043083, + 0.0060380143113434315, + -0.03662076219916344, + 0.06486812233924866, + -0.010468968190252781, + 0.06689590215682983, + -0.06440766155719757, + -0.08098773658275604, + 0.002679420867934823, + 0.04401148110628128, + 0.057080987840890884, + 0.12783309817314148, + -0.057657383382320404, + -0.026616303250193596, + -0.03854994475841522, + -0.03716551139950752, + -0.019766002893447876, + 0.02617545798420906, + 0.003965707030147314, + -0.004322494845837355, + 0.052689019590616226, + -0.07264824211597443, + -0.003848067717626691, + -0.08721557259559631, + 0.02006665989756584, + 0.0037616421468555927, + 0.11740802973508835, + 0.011526813730597496, + 0.03154074028134346, + 0.011838268488645554, + -0.08433432132005692, + -0.0716198980808258, + -0.016592053696513176, + -0.06535369902849197, + 0.013227800838649273, + 0.03484663739800453, + 0.035000041127204895, + -0.014919541776180267, + 9.756317503431935e-34, + 0.034135665744543076, + -0.058404937386512756, + 0.04611455276608467, + -0.0334133617579937, + -0.007061521057039499, + -0.03244978189468384, + -0.05620367452502251, + 0.06818922609090805, + 0.04756123945116997, + -0.06318599730730057, + -0.06280364096164703, + 0.02311503328382969, + 0.020085038617253304, + 0.02016495354473591, + 0.0742436945438385, + -0.039594780653715134, + 0.05403492599725723, + 0.018105532974004745, + 0.002486416371539235, + 0.07739873975515366, + 0.04593810811638832, + 0.028311090543866158, + -0.1543893665075302, + 0.018691979348659515, + -0.015051637776196003, + 0.048654112964868546, + 0.07391496747732162, + 0.011830448172986507, + 0.05110245943069458, + -0.005919427610933781, + -0.029798075556755066, + -0.022636208683252335, + 0.026854194700717926, + 0.05715850368142128, + -0.025845861062407494, + 0.039522528648376465, + -0.01983516849577427, + 0.02859165519475937, + -0.030915124341845512, + -0.049546461552381516, + -0.041744060814380646, + 0.09336072951555252, + 0.03050246275961399, + -0.007979394868016243, + -0.04444945231080055, + 0.06738962978124619, + -0.00039238767931237817, + 0.032409366220235825, + -0.023410627618432045, + 0.06992994993925095, + -0.005306873470544815, + -0.04661022499203682, + -0.09386442601680756, + 0.00695787975564599, + -0.12666954100131989, + -0.039203327149152756, + -0.04131827503442764, + -0.04055655747652054, + 0.012206844985485077, + 0.07124069333076477, + -0.02541559934616089, + 0.05422340705990791, + -0.060152359306812286, + -0.03918410837650299, + -0.04115886241197586, + 0.0264878049492836, + -0.02470824308693409, + -0.007974489592015743, + -0.05135165899991989, + 0.015460148453712463, + 0.028461456298828125, + 0.03384770080447197, + -0.06036094203591347, + 0.12630830705165863, + 0.014722309075295925, + -0.002335448283702135, + 0.0005080916453152895, + -0.042907144874334335, + 0.057381898164749146, + 0.0019430563552305102, + -0.040373701602220535, + 0.00741039402782917, + -0.07912866026163101, + 0.11174938082695007, + 0.02722303755581379, + 0.11351700872182846, + 0.012829884886741638, + 0.04978197440505028, + -0.00506139500066638, + -0.002429123967885971, + -0.036146875470876694, + 0.06226060912013054, + 0.05229486897587776, + -0.0010069304844364524, + -0.06369052082300186, + -1.7763388981961725e-08, + 0.03441043198108673, + -0.014645904302597046, + -0.041625458747148514, + -0.04182903468608856, + -0.014197573997080326, + 0.04255728796124458, + -0.004451855551451445, + -0.08157460391521454, + -0.08099411427974701, + 0.020312916487455368, + 0.04012108966708183, + 0.03764781355857849, + -0.003968450706452131, + 0.01404986809939146, + 0.01513003371655941, + 0.013794481754302979, + -0.09997741878032684, + 0.009148608893156052, + -0.05160440132021904, + -0.12225469946861267, + -0.08048606663942337, + 0.038963329046964645, + 0.050731755793094635, + -0.09072341024875641, + 0.04832248389720917, + 0.023762214928865433, + -0.04630300775170326, + -0.042478013783693314, + 0.05477239936590195, + 0.11750052869319916, + 0.06314799189567566, + 0.0962296798825264, + -0.04255324974656105, + -0.03064354881644249, + -0.08581819385290146, + 0.08211234211921692, + 0.016719862818717957, + -0.022992098703980446, + 0.03852251172065735, + 0.011659235693514347, + 0.0882033035159111, + -0.0879429429769516, + 0.10099896788597107, + -0.05379326269030571, + -0.050969529896974564, + -0.09893891215324402, + 0.09790901839733124, + -0.15011878311634064, + 0.016561849042773247, + -0.06861918419599533, + 0.02747499570250511, + -0.004359743092209101, + -0.061923474073410034, + 0.03548909351229668, + 0.03834833949804306, + -0.04645228385925293, + 0.003559461794793606, + 0.06242913380265236, + 0.03684983402490616, + -0.022121267393231392, + 0.13597333431243896, + -0.10547483712434769, + 0.019044054672122, + 0.0465007983148098 + ], + "gif-bold||gifs,.gif,giphy": [ + -0.020209182053804398, + -0.04821125417947769, + -0.01127691101282835, + 0.01657901331782341, + 0.09542346745729446, + -0.07913597673177719, + 0.08361122012138367, + -0.05112802982330322, + 0.09984742850065231, + 0.001049682148732245, + 0.03590315207839012, + 0.04444568604230881, + 0.04950697347521782, + 0.02154998667538166, + -0.006211628206074238, + 0.013515000231564045, + -0.017257805913686752, + 0.025828011333942413, + -0.05114941671490669, + 0.02333027683198452, + -0.024230770766735077, + 0.050831388682127, + 0.01914975233376026, + 0.008004570379853249, + 0.09189683943986893, + 0.020462600514292717, + 0.0076335640624165535, + -0.03786252439022064, + -0.013527370989322662, + -0.006455731578171253, + 0.0030441423878073692, + -0.015935299918055534, + 0.08872076869010925, + 0.03985109180212021, + 0.06458547711372375, + 0.08389823138713837, + -0.05644071102142334, + -0.05254798382520676, + 0.010605019517242908, + 0.060413118451833725, + 0.007111253682523966, + -0.03471175581216812, + 0.05822223052382469, + 0.03741823136806488, + -0.02372179552912712, + 0.019996916875243187, + -0.03332796320319176, + -0.05550269037485123, + 0.039362359791994095, + -0.04240845516324043, + -0.08097405731678009, + -0.06108514219522476, + -0.09547058492898941, + -0.027302252128720284, + 0.052833762019872665, + -0.010533950291574001, + 0.0002476282825227827, + -0.05770057067275047, + 0.0331118069589138, + 0.0007800797466188669, + -0.019445644691586494, + 0.03195410594344139, + 0.07228433340787888, + 0.07566884160041809, + 0.06282974779605865, + 0.005942428018897772, + -0.0017275341087952256, + 0.06043252721428871, + -0.04179597645998001, + 0.01505249086767435, + 0.07965008914470673, + -0.023212958127260208, + -0.10895641893148422, + -0.007798516657203436, + -0.07142099738121033, + 0.014970785938203335, + 0.019075915217399597, + 0.015697333961725235, + -0.03543270006775856, + -0.06964975595474243, + -0.05189662054181099, + -0.10801396518945694, + -0.0005177503917366266, + -0.006329293362796307, + 0.07186606526374817, + 0.08024342358112335, + -0.002021810505539179, + -0.07326407730579376, + -0.0699680969119072, + 0.012250935658812523, + -0.10398649424314499, + 0.04117751121520996, + -0.0065575530752539635, + 0.12872569262981415, + -0.10746019333600998, + -0.03216056153178215, + 0.04759165644645691, + -0.013648844324052334, + -0.07962653040885925, + 0.13535568118095398, + 0.06174064427614212, + 0.020758043974637985, + 0.09358822554349899, + -0.04745784401893616, + 0.011719755828380585, + 0.007587979547679424, + 0.025862587615847588, + 0.04414728283882141, + 0.0068556275218725204, + 0.03216317296028137, + 0.008449116721749306, + -0.09078940749168396, + -0.035788338631391525, + -0.0450030192732811, + -0.061257749795913696, + 0.019577352330088615, + -0.023627452552318573, + -0.02396702580153942, + 0.07674180716276169, + -0.041906774044036865, + 0.059861887246370316, + -0.01878521777689457, + -0.04154827445745468, + -0.036065928637981415, + -0.01919783093035221, + -0.019445231184363365, + 0.01620558276772499, + 1.4387405250526808e-33, + 0.08205912262201309, + -0.004083927255123854, + 0.04409652575850487, + 0.09541859477758408, + 0.04399606212973595, + 0.03319026157259941, + -0.11831629276275635, + -0.1328584849834442, + -0.08831480145454407, + 0.05442962422966957, + 0.040733784437179565, + 0.11922575533390045, + -0.054708123207092285, + 0.00865795649588108, + -0.00029124686261639, + -0.06590200215578079, + -0.012115267105400562, + -0.07226091623306274, + 0.0075531634502112865, + 0.058558013290166855, + -0.050647884607315063, + 0.042731139808893204, + -0.04184763878583908, + 0.01324011106044054, + -0.06409592181444168, + -0.08338533341884613, + 0.03569960221648216, + -0.07027421146631241, + -0.07094711810350418, + 0.03166840970516205, + -0.008144977502524853, + 0.0019723637960851192, + 0.0028372297529131174, + -0.04177428409457207, + -0.01172893401235342, + -0.01828640140593052, + -0.042878612875938416, + 0.040112826973199844, + -0.01042160764336586, + 0.037437230348587036, + -0.0654519721865654, + -0.02955055981874466, + -0.014749795198440552, + 0.01053668837994337, + 0.054155878722667694, + 0.0718776062130928, + 0.009344573132693768, + -0.003247129265218973, + 0.021517502143979073, + 0.07849019765853882, + 0.06371293216943741, + 0.0016129198484122753, + 0.009925199672579765, + -0.004794937092810869, + -0.012051120400428772, + -0.01558680459856987, + 0.007579447701573372, + 0.01852688565850258, + 0.012136537581682205, + 0.03749336302280426, + 0.02218053676187992, + -0.02164074033498764, + 0.03961964696645737, + -0.07683081179857254, + -0.06076971814036369, + 0.009631200693547726, + -0.08904749155044556, + 0.0038971975445747375, + 0.03634267300367355, + -0.020572589710354805, + -0.023644940927624702, + 0.04719597473740578, + -0.006917950231581926, + 0.0032256264239549637, + -0.08856184035539627, + -0.03384114429354668, + 0.017062483355402946, + 0.03172963112592697, + 0.014975997619330883, + -0.05443844199180603, + -0.09617243707180023, + -0.03690240904688835, + 0.01753559522330761, + 0.04501194506883621, + -0.01183495856821537, + 0.08269919455051422, + -0.04278773441910744, + -0.0770200565457344, + -0.05645979195833206, + 0.0829823687672615, + -0.012969776056706905, + 0.05400412902235985, + -0.00960867665708065, + -0.03393172100186348, + -0.08016330748796463, + -3.0785594607180913e-33, + 0.07714468240737915, + 0.005921305622905493, + -0.1076258048415184, + 0.02142423205077648, + 0.007218332961201668, + -0.012256716378033161, + 0.0016571811866015196, + 0.03044118545949459, + -0.0075331623665988445, + 0.05262308567762375, + 0.017405644059181213, + 0.011953220702707767, + -0.04906060919165611, + -0.06403268873691559, + 0.05315525084733963, + -0.016751615330576897, + 0.050812557339668274, + 0.018195737153291702, + -0.0455101802945137, + 0.06284760683774948, + 0.01613304205238819, + -0.07405500113964081, + 0.050720229744911194, + 0.11421030014753342, + -0.07655096799135208, + 0.05865926668047905, + 0.06546679139137268, + -0.001336769200861454, + -0.10653822869062424, + -0.07284723222255707, + 0.004275166895240545, + -0.02642362378537655, + -0.01656547747552395, + -0.03211226314306259, + 0.013109304010868073, + 0.02371775358915329, + 0.016696318984031677, + -0.06473519653081894, + 0.0103392843157053, + 0.010859690606594086, + 0.00029955178615637124, + 0.04296578839421272, + 0.018229860812425613, + 0.05007816106081009, + -0.018080750480294228, + 0.025846874341368675, + 0.05509231239557266, + -0.0643167719244957, + 0.04006465524435043, + 0.0960027277469635, + -0.052156705409288406, + -0.0305308997631073, + 0.0027097028214484453, + -0.015886323526501656, + -0.038202445954084396, + -0.07091962546110153, + 0.02049972489476204, + 0.0536443255841732, + -0.03844320774078369, + 0.045329365879297256, + -0.042758580297231674, + -0.01678621768951416, + -0.0415167436003685, + 0.019321979954838753, + -0.00401465967297554, + -0.07326161116361618, + -0.006600134540349245, + -0.06568332016468048, + 0.029912875965237617, + -0.013487085700035095, + 0.09546758979558945, + 0.019728928804397583, + -0.01714179292321205, + 0.06987273693084717, + -0.016190459951758385, + -0.012611867859959602, + 0.03390469774603844, + 0.08161800354719162, + -0.024578826501965523, + 0.035741835832595825, + -0.021075433120131493, + -0.03272749111056328, + -0.07662376016378403, + 0.019125280901789665, + -0.05684404820203781, + 0.04840295761823654, + -0.028700662776827812, + -0.024142559617757797, + -0.012207784689962864, + -0.056030143052339554, + -0.07763566076755524, + 0.029054921120405197, + 0.02160072512924671, + -0.0251529011875391, + 0.020856181159615517, + -2.3330006371224954e-08, + -0.03313293680548668, + -0.008720297366380692, + -0.11741481721401215, + -0.08295691013336182, + -0.012331591919064522, + -0.005912044085562229, + -0.029044192284345627, + -0.07427828013896942, + -0.05996128171682358, + -0.052954912185668945, + 0.11592671275138855, + 0.10967966914176941, + 0.019584424793720245, + 0.009302817285060883, + 0.006036878097802401, + 0.02840367890894413, + -0.028866970911622047, + 0.01825409196317196, + -0.01414448767900467, + 0.006610696204006672, + -0.042256005108356476, + -0.02043513022363186, + -0.029902437701821327, + -0.013741758652031422, + -0.024584336206316948, + 0.015048149973154068, + -0.045423723757267, + 0.1041497215628624, + -0.07624626904726028, + 0.08750617504119873, + 0.08074601739645004, + 0.011045812629163265, + -0.09638803452253342, + -0.028562216088175774, + -0.12466439604759216, + -0.055625636130571365, + -0.0013887345558032393, + -0.0052726129069924355, + 0.03081878088414669, + 0.0706438347697258, + -0.06407412141561508, + 0.04222964867949486, + 0.027007412165403366, + -0.027410713955760002, + -0.040977008640766144, + -0.004777420777827501, + 0.11792558431625366, + -0.04401559755206108, + -0.019268613308668137, + -0.028544791042804718, + -0.021501032635569572, + -0.028088128194212914, + 0.01139755267649889, + 0.08487251400947571, + 0.04596228152513504, + -0.04957631602883339, + 0.046960342675447464, + 0.10781989246606827, + -0.015047305263578892, + 0.06050250306725502, + 0.07241691648960114, + 0.019255276769399643, + 0.06523579359054565, + 0.01117218378931284 + ], + "gift-bold||presents,holiday,birthday": [ + -0.07155616581439972, + 0.10182653367519379, + 0.007928001694381237, + 0.009747165255248547, + -0.03263704851269722, + 0.017288513481616974, + 0.10191698372364044, + -0.03526049479842186, + -0.03546299785375595, + 0.0027644988149404526, + 0.02696898765861988, + -0.025135032832622528, + -0.010121270082890987, + -0.033970702439546585, + 0.02590123750269413, + 0.0614386610686779, + -0.014953606761991978, + 0.023391839116811752, + 0.029713518917560577, + -0.011040013283491135, + 0.0065771229565143585, + 0.013052273541688919, + 0.008796598762273788, + 0.04167178273200989, + 0.03641907125711441, + 0.03610340133309364, + -0.011955234222114086, + -0.021842041984200478, + -0.016257693991065025, + -0.03855427727103233, + 0.04657629877328873, + 0.0367327518761158, + 0.005757007282227278, + -0.008740045130252838, + 0.0440673865377903, + 0.032470498234033585, + -0.04007939249277115, + 0.013782805763185024, + 0.005423195660114288, + 0.034671299159526825, + -0.02863938733935356, + -0.0680319145321846, + 0.024490423500537872, + 0.07690902054309845, + -0.008557157590985298, + -0.048834387212991714, + 0.01529855839908123, + 0.06046915054321289, + 0.011289140209555626, + 0.04540671035647392, + -0.03747508302330971, + -0.046551112085580826, + -0.055655766278505325, + 0.02246013656258583, + -0.008755919523537159, + 0.002582256216555834, + -0.053547728806734085, + -0.06645084172487259, + 0.03805283457040787, + -0.02704581990838051, + -0.06621298938989639, + 0.004446346312761307, + 0.08101892471313477, + -0.008834807202219963, + -0.0187141764909029, + -0.08844389766454697, + 0.036136139184236526, + 0.01919683814048767, + -0.06403089314699173, + 0.02616361528635025, + 0.04413860663771629, + 0.04756281152367592, + 0.039267975836992264, + 0.02208811044692993, + -0.007370282430201769, + 0.009979886002838612, + -0.009700281545519829, + 0.019663048908114433, + -0.06075466051697731, + -0.031594835221767426, + -0.0772276371717453, + -0.1049717366695404, + -0.04054246097803116, + -0.05380574241280556, + 0.0023692469112575054, + 0.05091358348727226, + -0.061546750366687775, + -0.032764505594968796, + -0.09000390022993088, + -0.005714705679565668, + -0.10820354521274567, + -0.018734751269221306, + 0.020447760820388794, + -0.004568514414131641, + -0.11581773310899734, + -0.008017235435545444, + 0.051796674728393555, + -0.01750749722123146, + -0.06092473864555359, + 0.09505859017372131, + 0.019275136291980743, + 0.14265242218971252, + 0.06573967635631561, + 0.04760003089904785, + 0.019895631819963455, + -0.008620232343673706, + -0.06331278383731842, + -0.026680277660489082, + -0.030603665858507156, + -0.045908670872449875, + -0.05534365773200989, + 0.0035880301147699356, + -0.012971760705113411, + -0.048928290605545044, + -0.041457489132881165, + 0.020049558952450752, + -0.05410575121641159, + -0.01730840653181076, + 0.11167950928211212, + -0.02643498219549656, + 0.04421522840857506, + 0.008001870475709438, + 0.043795306235551834, + 0.018991848453879356, + -0.14547820389270782, + -0.014960183762013912, + 0.10195004940032959, + -2.7727512992738116e-33, + -0.005066313780844212, + 0.08532023429870605, + -0.045112885534763336, + 0.12991701066493988, + 0.035972919315099716, + 0.03325783833861351, + -0.03724737837910652, + -0.0504765547811985, + -0.09918580949306488, + -0.0025798864662647247, + -0.025626737624406815, + 0.046795375645160675, + 0.03480573371052742, + 0.05019914358854294, + 0.030135786160826683, + 0.060049980878829956, + -0.07441271096467972, + -0.01887071691453457, + -0.00182101980317384, + -0.014464050531387329, + 0.030300011858344078, + 0.05895914509892464, + -0.021003253757953644, + -0.04363492876291275, + 0.01802534982562065, + -0.05874282866716385, + 0.055888351052999496, + 0.04486829787492752, + -0.019485773518681526, + -0.014382226392626762, + 0.07439908385276794, + 0.005208225920796394, + 0.12192852050065994, + -0.04723692312836647, + -0.05687759071588516, + -0.02595570683479309, + -0.03958725184202194, + -0.057701628655195236, + 0.038578763604164124, + 0.02406560815870762, + -0.051197923719882965, + -0.0668986588716507, + -0.019118258729577065, + 0.05437815934419632, + -0.05185791105031967, + 0.0978582575917244, + 0.09670218080282211, + -0.006681252736598253, + 0.04656209051609039, + 0.004069535061717033, + -0.002246767980977893, + -0.0721057876944542, + -0.027147457003593445, + 0.008237236179411411, + -0.011920210905373096, + -0.08224548399448395, + 0.008463812991976738, + 0.006017687264829874, + 0.05032755434513092, + -0.09250006079673767, + 0.07246813178062439, + -0.04682482033967972, + 0.03137991577386856, + -0.04334837943315506, + -0.06205878034234047, + 0.006778432987630367, + 0.044604819267988205, + 0.04305487871170044, + 0.08851054310798645, + 0.03915244713425636, + 0.007205725647509098, + 0.09216570109128952, + -0.002694659400731325, + -0.11856018006801605, + -0.012864953838288784, + 0.05454735830426216, + 0.07843384891748428, + -0.03167863190174103, + 0.03578696399927139, + -0.08267560601234436, + -0.1089281514286995, + 0.05247069150209427, + 0.03065222129225731, + 0.11586804687976837, + -0.06428688019514084, + 0.04160375893115997, + -0.024198826402425766, + -0.03235070779919624, + -0.057906776666641235, + 0.0648229718208313, + 0.023073941469192505, + -0.017514195293188095, + 0.03752971813082695, + -0.04979483038187027, + -0.007654775865375996, + -5.172804675944228e-34, + 0.032301951199769974, + 0.018795566633343697, + -0.0121608292683959, + 0.006677679717540741, + 0.030408261343836784, + -0.004938552156090736, + -0.0653577372431755, + 0.06177513673901558, + -0.01874714531004429, + 0.0003930878883693367, + -0.04769451171159744, + 0.003658246947452426, + -0.015132222324609756, + -0.019886000081896782, + 0.04256473109126091, + 0.011096261441707611, + 0.087424136698246, + 0.08013428002595901, + 0.02512933500111103, + 0.003083550138399005, + 0.017502861097455025, + 0.15166518092155457, + -0.09767335653305054, + -0.008980885148048401, + -0.02482258901000023, + 0.04735581576824188, + 0.04010241851210594, + -0.05021165311336517, + -0.06351442635059357, + -0.05908028781414032, + -0.05316945165395737, + -0.04291803762316704, + -0.008319146931171417, + -0.0065771834924817085, + 0.014042278751730919, + 0.0719948559999466, + -0.008086060173809528, + -0.08935363590717316, + 0.05113659054040909, + 0.054739534854888916, + 0.011177198961377144, + 0.048244915902614594, + -0.043907713145017624, + 0.10321756452322006, + 0.06252426654100418, + -0.03345891460776329, + -0.10060498863458633, + 0.006718061398714781, + 0.11405858397483826, + 0.06595784425735474, + -0.042534198611974716, + -0.005190483294427395, + -0.008038334548473358, + -0.031916745007038116, + -0.0657043531537056, + 0.0005641906755045056, + -0.04630579426884651, + -0.06096584349870682, + 0.06997464597225189, + 0.05671999230980873, + -0.04161068797111511, + -0.0013481583446264267, + -0.05746642127633095, + -0.035062432289123535, + -0.07153137773275375, + -0.056453220546245575, + 0.07813173532485962, + -0.009374594315886497, + 0.04330955445766449, + 0.018875213339924812, + 0.026447124779224396, + 0.033599432557821274, + -0.06417334824800491, + 0.004445790313184261, + 0.0009938289877027273, + -0.011324997991323471, + 0.04918321594595909, + 0.048889607191085815, + 0.010868719778954983, + 3.803275103564374e-05, + -0.07357720285654068, + 0.09223785251379013, + -0.022045757621526718, + 0.05095810443162918, + -0.02336731180548668, + -0.06824105978012085, + 0.005511734168976545, + -0.04743696004152298, + -0.010575471445918083, + -0.047197677195072174, + -0.007617877796292305, + 0.047142285853624344, + -0.03240545466542244, + -0.025508487597107887, + 0.022437062114477158, + -1.8463129691781432e-08, + 0.0998440831899643, + 0.07185596227645874, + -0.12307009845972061, + -0.0390954352915287, + 0.039894018322229385, + -0.005674702115356922, + -0.07121721655130386, + -0.09992937743663788, + -0.055804669857025146, + 0.035201795399188995, + 0.016909535974264145, + 0.04560769349336624, + -0.040005873888731, + -0.07213635742664337, + 0.024918083101511, + -0.003923137206584215, + -0.053761422634124756, + 0.08155886828899384, + -0.02107761986553669, + -0.08543331921100616, + 0.07858171314001083, + 0.009988437406718731, + 0.06969650089740753, + -0.013709037564694881, + -0.0439448207616806, + -0.019493265077471733, + -0.0028265626169741154, + -0.011609641835093498, + 0.03474388271570206, + -0.004922778811305761, + -0.0024466325994580984, + 0.05993731692433357, + 0.003070285078138113, + 0.03094794973731041, + -0.020028645172715187, + -0.014998775906860828, + -0.06408721953630447, + -0.050939131528139114, + -0.01522589661180973, + 0.05651235580444336, + 0.06093554571270943, + -0.0739925429224968, + -0.05535857379436493, + -0.0307017769664526, + -0.0930512547492981, + 0.02423759177327156, + 0.037208978086709976, + -0.12729308009147644, + -0.0759129747748375, + 0.03523249924182892, + -0.038461241871118546, + -0.04966162145137787, + 0.005691151600331068, + 0.03425329923629761, + -0.03660501912236214, + 0.0030719880014657974, + -0.007565404288470745, + 0.01814410835504532, + 0.022124692797660828, + -0.01752745918929577, + 0.0919552892446518, + -0.00785105861723423, + -0.03004414029419422, + 0.013538054190576077 + ], + "git-branch-bold||*updated*,github,vcs,source control,version control,versioning,branches": [ + 0.04748830199241638, + -0.062349021434783936, + -0.02761402167379856, + 0.037497930228710175, + 0.06896978616714478, + -0.032719917595386505, + -0.006945415399968624, + 0.00014522118726745248, + 0.0376448929309845, + 0.05865131691098213, + -0.006331007461994886, + 0.054139744490385056, + 0.022676631808280945, + -0.05813133344054222, + -0.000250346987741068, + 0.025141939520835876, + -0.02806331217288971, + 0.09203986078500748, + -0.012478756718337536, + -0.026486752554774284, + -0.04490229859948158, + 0.06708688288927078, + -0.003189513925462961, + 0.06795892119407654, + 0.07625837624073029, + -0.051794152706861496, + -0.018876587972044945, + -0.009111891500651836, + 2.0558913092827424e-05, + -0.07797809690237045, + -0.03942273557186127, + 0.023219963535666466, + 0.08303084224462509, + 0.03638791665434837, + -0.01870398037135601, + 0.05739607661962509, + 0.01795445755124092, + -0.020272407680749893, + -0.0030884044244885445, + 0.07246352732181549, + 0.02108737826347351, + 0.05375352501869202, + 0.007224371191114187, + -0.013876164332032204, + -0.019979381933808327, + 0.005169228184968233, + -0.03436974808573723, + -0.07092543691396713, + -0.052857235074043274, + -0.03469395264983177, + 0.028630102053284645, + -0.16630753874778748, + -0.07116041332483292, + 0.006745542865246534, + 0.017484042793512344, + -0.02733093686401844, + 0.01837928406894207, + -0.010024135001003742, + 0.0721968337893486, + -0.039194658398628235, + 0.03148973733186722, + 0.0643419399857521, + -0.025038661435246468, + -0.007064801175147295, + -0.003413589671254158, + -0.006353224627673626, + 0.04186886176466942, + 0.06518322229385376, + 0.034953486174345016, + -0.05938488990068436, + 0.02043420635163784, + -0.04597669839859009, + -0.07338421046733856, + -0.04122934490442276, + -0.036264218389987946, + -0.04203178733587265, + 0.021017977967858315, + 0.07071629911661148, + -0.002416443545371294, + -0.08743849396705627, + -0.03316663205623627, + -0.06754063814878464, + -0.007989848963916302, + 0.004457778763025999, + -0.02424841746687889, + 0.08107541501522064, + 0.03573383763432503, + 0.0491945818066597, + 0.013956212438642979, + 0.048714715987443924, + -0.0662357285618782, + -0.025189096108078957, + 0.12019175291061401, + -0.04537954553961754, + -0.07477253675460815, + -0.003504522144794464, + 0.03148386999964714, + -0.010459278710186481, + 0.0026949120219796896, + 0.06827317923307419, + 0.05079568922519684, + 0.024923784658312798, + 0.07608193159103394, + -0.009519807994365692, + 0.02675921842455864, + 0.03928519785404205, + 0.07635881751775742, + 0.02858550287783146, + 0.010499881580471992, + -0.028180718421936035, + 0.021673278883099556, + -0.04157886654138565, + -0.037393223494291306, + -0.08461786806583405, + -0.015088094398379326, + 0.03192024305462837, + 0.01334422081708908, + -0.025022724643349648, + 0.0032522063702344894, + 0.07856426388025284, + 0.050922561436891556, + -0.06684461236000061, + 0.017772365361452103, + -0.03421858325600624, + -0.06418748944997787, + 0.009787335991859436, + -0.012383990921080112, + -3.8604189570163965e-34, + 0.11084424704313278, + 0.038963139057159424, + -0.042481258511543274, + 0.028281254693865776, + 0.06593216955661774, + 0.08267534524202347, + -0.07123316079378128, + -0.13468006253242493, + -0.08347044140100479, + 0.010927981697022915, + 0.08666352927684784, + 0.042022865265607834, + -0.083709716796875, + 0.047932762652635574, + 0.03409634158015251, + -0.11065710335969925, + -0.06306831538677216, + 7.67538949730806e-05, + -0.04291463643312454, + 0.07309766858816147, + -0.05302344635128975, + -0.014641444198787212, + -0.07491198182106018, + -0.030250245705246925, + 0.1055457666516304, + -0.13001559674739838, + 0.03189742937684059, + 0.04138197749853134, + -0.06376692652702332, + -0.022904949262738228, + -0.00034210889134556055, + 0.021198173984885216, + 0.04559832066297531, + 0.03141956403851509, + -0.04099888354539871, + 0.0021061517763882875, + -0.08504237234592438, + -0.05378330498933792, + 0.0394483245909214, + 0.03470296040177345, + 0.00010126192501047626, + -0.023267384618520737, + -0.05157386139035225, + -0.01698441244661808, + 0.14829136431217194, + 0.11872951686382294, + -0.012648004107177258, + -0.08262863755226135, + 0.06240369752049446, + 0.02998908795416355, + 0.020776880905032158, + 0.0732843279838562, + 0.027628067880868912, + -0.02776145190000534, + -0.00472146924585104, + 0.0039239306934177876, + -0.008220786228775978, + 0.05395837128162384, + 0.01798999309539795, + 0.0475289411842823, + 0.020065583288669586, + -0.019401267170906067, + -0.007350034546107054, + -0.012832047417759895, + -0.017501825466752052, + 0.09953581541776657, + -0.053630806505680084, + 0.039896294474601746, + 0.08693068474531174, + -0.036955393850803375, + -0.11941259354352951, + 0.03805716708302498, + -0.004771558102220297, + 0.027320941910147667, + -0.08849304914474487, + -0.013982596807181835, + -0.045101914554834366, + 0.03356671333312988, + 0.049168456345796585, + -0.06759379059076309, + -0.12179218232631683, + 0.011386330239474773, + -0.06527484208345413, + 0.07650133967399597, + 0.030899174511432648, + 0.06885405629873276, + 0.027866005897521973, + 0.03841502219438553, + -0.06024138256907463, + 0.039071694016456604, + -0.022350329905748367, + 0.053145963698625565, + -0.022527774795889854, + -0.035886261612176895, + -0.047340165823698044, + -1.6036172912444342e-33, + -0.017879707738757133, + -0.06448371708393097, + -0.05240488052368164, + 0.046204712241888046, + -0.0610743910074234, + -0.010081116110086441, + -0.0796598345041275, + -0.0647585317492485, + 0.001155200763605535, + -0.04417060315608978, + 0.07840017229318619, + -0.006296876352280378, + -0.09587964415550232, + -0.030739357694983482, + 0.007502428255975246, + -0.027903400361537933, + 0.0069604553282260895, + -0.0023064110428094864, + 0.0008586194599047303, + 0.050387486815452576, + 0.0006378183607012033, + 0.025014571845531464, + -0.0267795380204916, + 0.06456644833087921, + -0.04571564495563507, + 0.02582632377743721, + -0.03726518526673317, + -0.018376542255282402, + 0.07595805823802948, + -0.06960917264223099, + -0.0037460345774888992, + 0.00914470199495554, + -0.00885749887675047, + -0.02036791667342186, + -0.04583149403333664, + -0.02016325294971466, + 0.03202660381793976, + -0.01200762577354908, + -0.01712564378976822, + 0.0418267585337162, + 0.030190683901309967, + 0.025203751400113106, + -0.012650806456804276, + -0.0203663632273674, + -0.06984271854162216, + 0.03992224484682083, + 0.0016347989439964294, + -0.007596301846206188, + -0.07501749694347382, + -0.00300981686450541, + 0.01929444633424282, + -0.06632135808467865, + -0.014107045717537403, + 0.01760912500321865, + -0.023033209145069122, + -0.050306059420108795, + 0.02852439135313034, + 0.1074952632188797, + -0.04910464584827423, + -0.004328350070863962, + -0.06427424401044846, + 0.013083582744002342, + 0.0224333256483078, + 0.0030436019878834486, + -0.06747543066740036, + -0.06224995106458664, + 0.011227606795728207, + -0.01795109547674656, + 0.04018610343337059, + 0.0067344484850764275, + 0.023652827367186546, + -0.01336989738047123, + -0.03235076367855072, + -0.03200339525938034, + 0.027370359748601913, + -0.040613655000925064, + 0.020905204117298126, + -0.028857940807938576, + -0.0036683641374111176, + -0.013245577923953533, + -0.05728013440966606, + 0.09211456030607224, + -0.0174061581492424, + 0.018539555370807648, + -0.02509125880897045, + 0.039237335324287415, + -0.046844687312841415, + 0.03516117483377457, + 0.08490566909313202, + -0.03656059876084328, + -0.05849316716194153, + -0.02146589383482933, + 0.01943773776292801, + -0.0057004159316420555, + -0.04314817115664482, + -2.3226585099678232e-08, + 0.017412178218364716, + 0.036081552505493164, + -0.06334389746189117, + 0.018347041681408882, + 0.024102067574858665, + -0.06262791156768799, + 0.007451339159160852, + -0.02720140665769577, + -0.05120061710476875, + -0.03710705041885376, + 0.02399624139070511, + 0.07876630127429962, + -0.06918199360370636, + -0.05400873348116875, + 0.10173290967941284, + 0.046279504895210266, + -0.04326816648244858, + 0.051998283714056015, + -0.004046821501106024, + -0.02164687216281891, + -0.06737298518419266, + 0.06375414878129959, + 0.0613868311047554, + 0.007928846403956413, + 0.004040720406919718, + 0.018581843003630638, + -0.010371727868914604, + 0.09280256181955338, + 0.003100232919678092, + 0.04315453767776489, + 0.17222462594509125, + 0.06813280284404755, + -0.09203268587589264, + -0.041953783482313156, + 0.003500692779198289, + -0.07642671465873718, + -0.05993857607245445, + -0.007853254675865173, + 0.054794132709503174, + 0.11961393058300018, + -0.030009280890226364, + -0.0671514943242073, + 0.019328182563185692, + 0.03488883748650551, + -0.09428438544273376, + -0.004659760743379593, + 0.041678208857774734, + 0.011686609126627445, + -0.04381675645709038, + -0.1453409641981125, + -0.0317867137491703, + 0.029315337538719177, + -0.02555900067090988, + 0.08950668573379517, + -0.009746539406478405, + 0.06894998997449875, + 0.04912610724568367, + 0.06118813529610634, + 0.019440166652202606, + -0.030927220359444618, + 0.06641564518213272, + -0.07197147607803345, + 0.053829897195100784, + -0.006842430215328932 + ], + "git-commit-bold||github,vcs,source control,version control,versioning,commits": [ + 0.02844640053808689, + -0.08569927513599396, + -0.028163019567728043, + 0.07619442045688629, + 0.08240266889333725, + 0.02612479031085968, + -0.02060534618794918, + -0.03665662556886673, + 0.054837897419929504, + 0.054000210016965866, + 0.02451096475124359, + 0.02669895440340042, + 0.03099016286432743, + -0.06494348496198654, + -0.0038655141834169626, + -0.01894475892186165, + 0.007220412138849497, + 0.05076860636472702, + -0.006954962853342295, + 0.00805647112429142, + -0.032608818262815475, + 0.050372350960969925, + 0.02784697897732258, + 0.0699930414557457, + 0.08094657212495804, + -0.027955910190939903, + 0.0142982117831707, + 0.017880495637655258, + 0.007339125964790583, + -0.06536246091127396, + -0.020203031599521637, + 0.01393658947199583, + 0.09309598058462143, + 0.06629841774702072, + -0.03793340176343918, + 0.05606028810143471, + -0.010916635394096375, + -0.01272831205278635, + -0.01418577041476965, + 0.06486725062131882, + 0.019185293465852737, + 0.04704466089606285, + 0.025950565934181213, + 0.006965696811676025, + -0.006196245551109314, + 0.01874786987900734, + -0.022068005055189133, + -0.08853315562009811, + -0.04991433396935463, + -0.03619687631726265, + 0.014106214977800846, + -0.12014150619506836, + -0.07289709150791168, + 0.006636882666498423, + 0.028261203318834305, + -0.04950284585356712, + 0.0014700680039823055, + 0.014125265181064606, + 0.07608091086149216, + -0.022867510095238686, + 0.04455690458416939, + 0.06836537271738052, + -0.04728133976459503, + -0.013408154249191284, + 0.012281468138098717, + -0.005829170346260071, + 0.044013068079948425, + 0.09249618649482727, + -0.008762955665588379, + -0.06373297423124313, + 0.0073157912120223045, + -0.03418480604887009, + -0.06895069777965546, + -0.059762440621852875, + -0.03643935173749924, + -0.013910074718296528, + -0.04235472157597542, + 0.04371540993452072, + -0.02372596226632595, + -0.09715350717306137, + -0.026439877226948738, + -0.06634119898080826, + -0.0014200708828866482, + 0.010639558546245098, + -0.04226699844002724, + 0.07804423570632935, + 0.030695663765072823, + 0.043173059821128845, + 0.05239894986152649, + 0.0208856463432312, + -0.060845762491226196, + -0.02988973818719387, + 0.14490272104740143, + -0.04494776949286461, + -0.04648594930768013, + -0.026501113548874855, + 0.017994191497564316, + -0.02849794551730156, + 0.0006074890843592584, + 0.0333484522998333, + 0.05990302935242653, + 0.026233108714222908, + 0.023281507194042206, + -0.010026040486991405, + 0.05233081430196762, + 0.019281556829810143, + 0.06685885787010193, + -0.011138319969177246, + 0.01661182940006256, + -0.013231082819402218, + 0.028936097398400307, + -0.01740865781903267, + -0.02948026731610298, + -0.08471209555864334, + 0.011366908438503742, + 0.04065994918346405, + -0.03032504767179489, + -0.036687590181827545, + 0.050543420016765594, + 0.011041756719350815, + 0.045659519731998444, + -0.05893401429057121, + -0.012972299009561539, + -0.0641026645898819, + -0.08813589066267014, + -0.02259025163948536, + -0.023994021117687225, + 4.9738980026240796e-36, + 0.15348024666309357, + -0.0024257320910692215, + -0.06312420964241028, + 0.05869228392839432, + 0.06526287645101547, + 0.08295237272977829, + -0.055233485996723175, + -0.11808964610099792, + -0.08652471750974655, + -0.0011391642037779093, + 0.12883616983890533, + 0.009627717547118664, + -0.08435767143964767, + 0.0890401303768158, + 0.01406813133507967, + -0.06897219270467758, + -0.05811164155602455, + 0.019740397110581398, + -0.07702937722206116, + 0.09244342893362045, + -0.05062326416373253, + 0.02664841152727604, + -0.042235590517520905, + -0.029516564682126045, + 0.09119812399148941, + -0.11320193856954575, + -0.003901829244568944, + 0.03988640010356903, + -0.10046499222517014, + -0.036084920167922974, + -0.009068611077964306, + 0.0434318408370018, + 0.03327151760458946, + 0.05153098702430725, + -0.025712955743074417, + 0.031274620443582535, + -0.07416687160730362, + -0.04071579873561859, + 0.04907846078276634, + 0.038488905876874924, + -0.03344746679067612, + 0.0012336596846580505, + -0.08826353400945663, + -0.0531265027821064, + 0.15768121182918549, + 0.13247042894363403, + 0.028264019638299942, + -0.08655590564012527, + 0.08694068342447281, + 0.0558997318148613, + 0.03868074342608452, + 0.07468749582767487, + 0.05714169517159462, + -0.04029032588005066, + 0.028488900512456894, + 0.025325115770101547, + 0.018865983933210373, + 0.023647433146834373, + -0.013778588734567165, + 0.04776272922754288, + -0.010036569088697433, + -0.016939634457230568, + 0.013839665800333023, + -0.046210382133722305, + -0.00918811559677124, + 0.10753080993890762, + -0.07445993274450302, + 0.055059924721717834, + 0.07745232433080673, + 0.008389592170715332, + -0.08629646897315979, + 0.05152234435081482, + -0.036908674985170364, + 0.0016184872947633266, + -0.07867337018251419, + -0.0046262964606285095, + -0.025162214413285255, + 0.02269558794796467, + 0.012657592073082924, + -0.05001102760434151, + -0.12850376963615417, + 0.006455053575336933, + -0.06688541173934937, + 0.05288028344511986, + -0.003604371100664139, + 0.08545784652233124, + 0.008268545381724834, + 0.030334800481796265, + -0.04653831943869591, + 0.04146275296807289, + -0.006009373348206282, + 0.05147842317819595, + 0.013280093669891357, + -0.05745772644877434, + -0.07537105679512024, + -1.937852946853428e-33, + -0.05013216286897659, + -0.04567632079124451, + -0.06731811165809631, + 0.05765090882778168, + -0.04355764016509056, + -0.002066176850348711, + -0.0559893436729908, + -0.06075860932469368, + 0.01457183063030243, + -0.018234170973300934, + 0.0596885122358799, + -0.043009646236896515, + -0.06554213166236877, + -0.05318138375878334, + -0.00200803205370903, + -0.04620123282074928, + 0.0032894632313400507, + 0.011912286281585693, + 0.012308151461184025, + 0.013088429346680641, + -0.010694996453821659, + 0.02032502368092537, + 0.026433145627379417, + 0.042749084532260895, + -0.014028603211045265, + 0.007509827613830566, + -0.04609447717666626, + 0.004279941786080599, + 0.03469056636095047, + -0.0726824551820755, + 0.008942482993006706, + 0.00837843306362629, + -0.02334449626505375, + -0.020153965801000595, + -0.05625869333744049, + -0.026178017258644104, + -0.021579088643193245, + 0.02638648822903633, + -0.045079197734594345, + 0.021105684340000153, + 0.006080761551856995, + -0.0021529197692871094, + -0.03279345855116844, + 0.03171244263648987, + -0.07757017016410828, + 0.025394311174750328, + -0.01134564820677042, + -0.0047578997910022736, + -0.024045305326581, + 0.022259484976530075, + 0.009629341773688793, + -0.07694151252508163, + 0.011025537736713886, + 0.004475992638617754, + -0.015515684150159359, + -0.07643654197454453, + 0.03436965122818947, + 0.09174849092960358, + -0.040266357362270355, + 0.005391049198806286, + -0.04091677442193031, + 0.03468618541955948, + 0.03286975249648094, + 0.02171475440263748, + -0.04567674174904823, + -0.033994656056165695, + 0.030786143615841866, + 0.011213792487978935, + 0.021189892664551735, + 0.028279243037104607, + 0.052743565291166306, + -0.027284827083349228, + 0.035618461668491364, + -0.02952870912849903, + 0.04739437997341156, + -0.03551129624247551, + 0.0022660614922642708, + -0.03221837058663368, + -0.031233174726366997, + -0.00322911748662591, + -0.04863132908940315, + 0.0735992044210434, + 0.0018892234656959772, + 0.010987753979861736, + -0.03859064355492592, + 0.03917722404003143, + -0.05369764193892479, + 0.02487315610051155, + 0.08042584359645844, + -0.018190588802099228, + -0.07759872078895569, + -0.019294001162052155, + 0.048426248133182526, + -0.03884941339492798, + -0.028779856860637665, + -2.120256326065828e-08, + 0.024751368910074234, + 0.022855279967188835, + -0.08791378140449524, + -0.021440939977765083, + 0.005850610788911581, + -0.05296965688467026, + -0.005201983731240034, + -0.0278464462608099, + -0.0182387325912714, + 0.00852981023490429, + 0.025303859263658524, + 0.05594749376177788, + -0.06457430869340897, + -0.077914297580719, + 0.07584817707538605, + 0.007200032938271761, + -0.03819035738706589, + 0.019924592226743698, + -0.012016331776976585, + -0.021014977246522903, + -0.046578023582696915, + 0.03348086029291153, + 0.05226171016693115, + -0.006593554280698299, + 0.018846265971660614, + 0.043958939611911774, + -0.005531684495508671, + 0.13534703850746155, + -0.014031881466507912, + 0.07613489031791687, + 0.1619984358549118, + 0.01636892557144165, + -0.07095234841108322, + -0.050817783921957016, + 0.015295122750103474, + -0.0698813796043396, + -0.029798248782753944, + -0.014230524189770222, + 0.0757618173956871, + 0.09502151608467102, + -0.06395142525434494, + -0.05519598722457886, + -0.0015248333802446723, + 0.04118243604898453, + -0.1075260192155838, + 0.016741733998060226, + 0.037962283939123154, + -0.021512022241950035, + -0.02567005716264248, + -0.14770928025245667, + -0.041709717363119125, + 0.014432930387556553, + -0.012727356515824795, + 0.1122155487537384, + 0.0033308761194348335, + 0.0478125624358654, + 0.06109130382537842, + 0.1018851101398468, + 0.028991717845201492, + -0.04902631416916847, + 0.05204435810446739, + -0.025209398940205574, + 0.058179426938295364, + -0.008599775843322277 + ], + "git-diff-bold||*updated*,github,vcs,source control,version control,versioning,difference,compare": [ + -0.00896176602691412, + -0.05003024637699127, + -0.0029106871224939823, + -0.004507395438849926, + 0.10429537296295166, + -0.09082340449094772, + -0.006600853521376848, + -6.75110932206735e-05, + 0.056602396070957184, + 0.03627820685505867, + 0.022411039099097252, + 0.0409923754632473, + -0.0049605476669967175, + -0.06598282605409622, + -0.014801684767007828, + -0.030598357319831848, + -0.01929633505642414, + 0.03182239457964897, + -0.03182182088494301, + 0.0013722137082368135, + -0.08265506476163864, + 0.036200542002916336, + -0.025337552651762962, + 0.07091829925775528, + 0.12523317337036133, + 0.026582768186926842, + -0.013121326453983784, + 0.048837095499038696, + -0.00040231941966339946, + -0.05130232498049736, + -0.03665870055556297, + 0.022269556298851967, + 0.05709417164325714, + 0.021792083978652954, + -0.014147918671369553, + 0.06617501378059387, + 0.005668547470122576, + 0.0009200528729707003, + 0.017840340733528137, + 0.06480424106121063, + -0.01642337068915367, + 0.08438678830862045, + 0.006775179877877235, + -0.014121055603027344, + -0.011597886681556702, + 0.009911103174090385, + -0.07977476716041565, + -0.04307316243648529, + -0.05362651124596596, + -0.04428619518876076, + -0.0007718638516962528, + -0.11577015370130539, + -0.08234265446662903, + -0.023909224197268486, + 0.06259874254465103, + -0.05215417221188545, + 0.03793110325932503, + 0.052507247775793076, + 0.025086168199777603, + -0.038625285029411316, + -0.019481178373098373, + 0.07441792637109756, + -0.041779063642024994, + 0.008590469136834145, + 0.005721054505556822, + -0.011687672697007656, + 0.06885569542646408, + 0.031163910403847694, + 0.03770161792635918, + -0.06472893804311752, + -0.03018416091799736, + 0.018235735595226288, + -0.03284841775894165, + -0.014504247345030308, + -0.050042614340782166, + -0.01264676172286272, + 0.011957946233451366, + 0.07911898195743561, + -0.016007404774427414, + -0.08743250370025635, + 0.017256228253245354, + -0.05505562201142311, + 0.013707855716347694, + 0.022071829065680504, + -0.048472385853528976, + 0.08082304894924164, + 0.06482086330652237, + 0.024729490280151367, + 0.015939980745315552, + 0.007962638512253761, + -0.015384085476398468, + 0.024801483377814293, + 0.11279579997062683, + -0.02066478133201599, + -0.05067421495914459, + 0.0033889859914779663, + -0.011508224532008171, + 0.0356266126036644, + 0.04039694368839264, + 0.08581747114658356, + 0.02598038874566555, + -0.03727388754487038, + 0.03748453035950661, + -0.03450532630085945, + 0.02685348130762577, + 0.04759891703724861, + 0.08710402250289917, + -0.009974652901291847, + -0.0005714124417863786, + -0.01771032251417637, + 0.01896386407315731, + -0.05794550105929375, + -0.027685226872563362, + -0.06626660376787186, + 0.018021000549197197, + 0.002109765075147152, + 0.036181822419166565, + -0.011030619964003563, + 0.01998964324593544, + 0.01640717126429081, + 0.09721990674734116, + -0.09464648365974426, + 0.029092682525515556, + -0.053278401494026184, + -0.09689481556415558, + 0.01124109048396349, + 0.008527944795787334, + 1.2983440715652747e-34, + 0.08820454031229019, + -0.03610648587346077, + -0.0355570949614048, + 0.035842347890138626, + 0.08982250839471817, + 0.06597912311553955, + -0.07521738857030869, + -0.11453066766262054, + -0.06535886973142624, + -0.021875306963920593, + 0.09433605521917343, + 0.10882534831762314, + -0.10320170223712921, + 0.03553945571184158, + 0.00818215124309063, + -0.07420577108860016, + -0.03843265771865845, + 0.014432081021368504, + -0.0801338329911232, + 0.06663530319929123, + -0.028127601370215416, + -0.010775028727948666, + -0.06833700090646744, + -0.008298785425722599, + 0.09408780187368393, + -0.11809971928596497, + 0.02382051944732666, + 0.050557758659124374, + -0.04878030717372894, + -0.05286361649632454, + -0.00010157941142097116, + -0.010084250941872597, + 0.057802487164735794, + 0.058698005974292755, + -0.03201582655310631, + -0.007227483671158552, + -0.0604247972369194, + -0.06071861460804939, + -0.0012901619775220752, + 0.0004171447071712464, + 0.0009950208477675915, + -0.0012838405091315508, + -0.06106962263584137, + -0.046101514250040054, + 0.157595694065094, + 0.11833425611257553, + -0.01892879232764244, + -0.09685800224542618, + 0.06952057778835297, + 0.025271084159612656, + 0.03328988328576088, + 0.09487909078598022, + 0.009028298780322075, + -0.041660040616989136, + -0.02807837910950184, + -0.0034831997472792864, + 0.042911868542432785, + 0.012665219604969025, + 0.0579894483089447, + 0.04520012065768242, + -0.0034116331953555346, + 0.015239221975207329, + 0.02927066758275032, + -0.02632151171565056, + 0.03542090579867363, + 0.08107791095972061, + -0.059223249554634094, + 0.04622828587889671, + 0.06211666762828827, + 0.03409687802195549, + -0.07834465056657791, + 0.021525103598833084, + -0.01160089299082756, + 0.020082667469978333, + -0.04440616816282272, + -0.054612308740615845, + -0.057176779955625534, + 0.057436540722846985, + 0.009055528789758682, + -0.1039745882153511, + -0.11401181668043137, + 0.01707378588616848, + -0.06759500503540039, + 0.005553412716835737, + -0.04699249193072319, + 0.054951731115579605, + 0.009335617534816265, + 0.07843530923128128, + -0.030158130452036858, + 0.0513615757226944, + 0.020413605496287346, + 0.0862523689866066, + -0.026010187342762947, + -0.05094875022768974, + -0.002491472288966179, + -1.770136351613981e-33, + -0.054410338401794434, + -0.02791936695575714, + -0.021324943751096725, + 0.08639530837535858, + -0.06377777457237244, + -0.000829943222925067, + -0.04796701669692993, + -0.013533959165215492, + 0.09459832310676575, + -0.0122695192694664, + 0.06531563401222229, + -0.026517555117607117, + -0.08910367637872696, + -0.048882488161325455, + -0.0061357528902590275, + 0.0046837725676596165, + 0.020745769143104553, + -0.047586750239133835, + -0.015829961746931076, + 0.044870324432849884, + 0.01493073720484972, + 0.06520532071590424, + 0.0003627481637522578, + 0.015703056007623672, + -0.05963645130395889, + 0.005138204898685217, + -0.034737974405288696, + -0.014033769257366657, + 0.045454878360033035, + -0.11552844196557999, + 0.02787817269563675, + 0.04324325919151306, + -0.03790696710348129, + -0.014381368644535542, + -0.06264879554510117, + -0.03905981034040451, + -0.0010470766574144363, + -0.007409592159092426, + -0.037670742720365524, + 0.038799185305833817, + -0.031656667590141296, + 0.014323638752102852, + -0.013631997630000114, + 0.005776724778115749, + -0.024981418624520302, + 0.04102572053670883, + -0.03769225627183914, + -0.017273716628551483, + -0.0030601131729781628, + -0.02143268659710884, + 0.05714499205350876, + -0.036465685814619064, + 0.004866993986070156, + 0.019860493019223213, + -0.01588008739054203, + -0.06330449134111404, + 0.02894572727382183, + 0.09956306219100952, + -0.08847711235284805, + 0.029856670647859573, + -0.019646842032670975, + -0.019521841779351234, + 0.010402870364487171, + 0.014736776240170002, + -0.07857400923967361, + -0.0029842655640095472, + -0.03017646260559559, + 0.0011652244720607996, + 0.08022043853998184, + 0.01780826784670353, + 0.00024114140251185745, + -0.025822611525654793, + -0.011434215120971203, + -0.07512935996055603, + -0.0005894734058529139, + -0.048047732561826706, + 0.03635089099407196, + 0.004706811159849167, + 0.006504620425403118, + 0.026815634220838547, + -0.03405385464429855, + 0.06297939270734787, + -0.0035245162434875965, + -0.0009486558265052736, + -0.09734997153282166, + 0.09518898278474808, + -0.06181061267852783, + 0.022112799808382988, + 0.04632265865802765, + 0.021415721625089645, + -0.03870808705687523, + -0.060724738985300064, + 0.018303241580724716, + -0.010382414795458317, + -0.009941549971699715, + -2.346552108178912e-08, + 0.020628681406378746, + -0.014863082207739353, + -0.07512694597244263, + 0.016319144517183304, + -0.01697280816733837, + -0.03947554528713226, + -0.014756175689399242, + -0.01633352041244507, + -0.026759417727589607, + -0.02830519713461399, + 0.026882078498601913, + 0.05914267525076866, + -0.09208192676305771, + -0.02345125377178192, + 0.0547199472784996, + 0.054010406136512756, + -0.0517415851354599, + 0.03573838248848915, + 0.005846482701599598, + -0.00097574049141258, + -0.061108458787202835, + 0.05743379890918732, + 0.03331172466278076, + 0.016701623797416687, + -0.01464027538895607, + 0.018753675743937492, + -0.012724126689136028, + 0.08924484997987747, + -0.050765734165906906, + 0.021712400019168854, + 0.16055212914943695, + 0.045812319964170456, + -0.08487529307603836, + -0.11063358187675476, + 0.03699387609958649, + -0.07072088867425919, + -0.03633103147149086, + 0.008895840495824814, + 0.08611591905355453, + 0.11335724592208862, + -0.033990226686000824, + -0.05461736395955086, + 0.008482883684337139, + 0.03932912275195122, + -0.10642305761575699, + -0.03781868517398834, + 0.04701746255159378, + -0.03905520215630531, + -0.0415148064494133, + -0.1389811635017395, + 0.024676203727722168, + 0.014761571772396564, + -0.029185503721237183, + 0.028110971674323082, + 0.00036977804847992957, + 0.02107209712266922, + 0.035285212099552155, + 0.08850312978029251, + 0.03459173068404198, + -0.011107847094535828, + 0.046751003712415695, + -0.08173009753227234, + 0.11892452090978622, + 0.03505674749612808 + ], + "git-fork-bold||*updated*,github,vcs,source control,version control,versioning,split": [ + 0.024134377017617226, + -0.0752243921160698, + 0.021021701395511627, + 0.004342973232269287, + 0.07847564667463303, + -0.05205615237355232, + 0.005712044425308704, + 0.020594146102666855, + 0.01757318340241909, + 0.04010237008333206, + 0.01790766417980194, + 0.0148159209638834, + -0.005027347709983587, + -0.08267969638109207, + 0.023851700127124786, + -0.004757211077958345, + -0.02552506886422634, + 0.0684121623635292, + 0.016040075570344925, + -0.03457324206829071, + -0.053823377937078476, + 0.05067121982574463, + -0.01676725037395954, + 0.07056683301925659, + 0.11926721036434174, + -0.010482518002390862, + -0.04099738225340843, + -0.01069730892777443, + 0.002698474796488881, + -0.0660574734210968, + -0.008092462085187435, + 0.0074754259549081326, + 0.02435290440917015, + -0.00673849880695343, + 0.0076579260639846325, + 0.077945776283741, + -0.016881588846445084, + -0.01686171442270279, + -0.016161495819687843, + 0.04865476116538048, + 0.025914214551448822, + 0.05744152516126633, + 0.004095769952982664, + -0.026797328144311905, + -0.03938945382833481, + 0.005222912412136793, + -0.03180648759007454, + -0.07094446569681168, + -0.03657006844878197, + -0.04043230786919594, + 0.03280860185623169, + -0.16235551238059998, + -0.0639147236943245, + 0.0026843135710805655, + 0.054240308701992035, + -0.055035416036844254, + 0.02531338483095169, + 0.029124518856406212, + 0.06129828095436096, + 0.0018823652062565088, + 0.013179639354348183, + 0.07307924330234528, + -0.030752774327993393, + -0.0029877196066081524, + 0.04293554276227951, + -0.020594986155629158, + 0.06446883827447891, + 0.052414439618587494, + 0.002817193977534771, + -0.06006377935409546, + 0.011937013827264309, + -0.032786041498184204, + -0.047876495867967606, + -0.04666890203952789, + -0.04124191030859947, + -0.03769228607416153, + 0.014599225483834743, + 0.06786154210567474, + -0.03602328151464462, + -0.05137046426534653, + -0.031121015548706055, + -0.043119728565216064, + 0.019544918090105057, + -0.009629013016819954, + -0.0409134142100811, + 0.07947202026844025, + 0.04033822938799858, + 0.04744016379117966, + 0.0392962209880352, + 0.07045959681272507, + -0.0656246691942215, + -0.003560468088835478, + 0.17495347559452057, + -0.012520219199359417, + -0.046615514904260635, + -0.017663022503256798, + 0.016388801857829094, + -0.017497465014457703, + 0.023831719532608986, + 0.096861831843853, + 0.00022433287813328207, + -0.001023990218527615, + 0.05567709729075432, + -0.007730239070951939, + 0.058841995894908905, + 0.035728272050619125, + 0.053379178047180176, + 0.0009711605380289257, + -0.001317958696745336, + -0.04888080805540085, + 0.016982408240437508, + -0.023095138370990753, + -0.035402994602918625, + -0.1044808179140091, + -0.01632660999894142, + -0.0012806837912648916, + 0.03707924485206604, + -0.02481158822774887, + 0.015230211429297924, + 0.028453854843974113, + 0.06222505867481232, + -0.06614207476377487, + -0.005232953932136297, + -0.04509076476097107, + -0.06303390860557556, + 0.024012794718146324, + 0.0013753133825957775, + -5.476663996324539e-34, + 0.11055424809455872, + 0.022176994010806084, + -0.02341092936694622, + 0.018990378826856613, + 0.08354832231998444, + 0.07069788128137589, + -0.06175268813967705, + -0.10378512740135193, + -0.11494489014148712, + -0.018924662843346596, + 0.12818719446659088, + 0.009820482693612576, + -0.07956936955451965, + 0.09390172362327576, + 0.011893343180418015, + -0.1372542828321457, + -0.026582390069961548, + 0.025201288983225822, + -0.044949546456336975, + 0.06300850957632065, + -0.06025191396474838, + -0.007597409188747406, + -0.08564554899930954, + 0.02807106077671051, + 0.06658525764942169, + -0.11416967213153839, + 0.01043294370174408, + 0.009847292676568031, + -0.03599915653467178, + -0.028757208958268166, + -0.028324561193585396, + 0.044402651488780975, + 0.03872617334127426, + 0.02196800708770752, + -0.039185430854558945, + -0.011744585819542408, + -0.09514869004487991, + -0.040516823530197144, + 0.004996748175472021, + 0.03796064481139183, + 0.020893428474664688, + -0.0033682123757898808, + -0.05256899818778038, + -0.04075480252504349, + 0.15304800868034363, + 0.08905081450939178, + -0.04656634107232094, + -0.057541586458683014, + 0.06371590495109558, + 0.014200572855770588, + 0.04949692636728287, + 0.07014352083206177, + 0.03673183545470238, + -0.004876420833170414, + -0.013022584840655327, + 0.01729615218937397, + -0.045065704733133316, + 0.027626171708106995, + 0.05673621967434883, + 0.04935373365879059, + 0.0017565765883773565, + -0.00039968040073290467, + 0.016108885407447815, + 0.010632921010255814, + -0.0033420564141124487, + 0.13181611895561218, + -0.03385208919644356, + 0.033896952867507935, + 0.080839142203331, + 0.00356176495552063, + -0.10231182724237442, + 0.026696495711803436, + -0.011750665493309498, + 0.04800155758857727, + -0.06342482566833496, + -0.03297527879476547, + -0.0497029684484005, + 0.03335697203874588, + 0.0251960139721632, + -0.06625808030366898, + -0.07751741260290146, + 0.03335486352443695, + -0.053813010454177856, + 0.027393290773034096, + 0.027449067682027817, + 0.07782579958438873, + -0.003334413282573223, + 0.010761258192360401, + -0.0656820610165596, + 0.060004234313964844, + -0.037248771637678146, + 0.030358698219060898, + -0.007699435576796532, + -0.03488764539361, + -0.08054468780755997, + -1.167370766503144e-33, + -0.001166537287645042, + -0.07141013443470001, + -0.0704103335738182, + 0.032421331852674484, + -0.06617647409439087, + -0.04070316255092621, + -0.04208800941705704, + -0.025862829759716988, + -0.027804752811789513, + -0.024574842303991318, + 0.06067032366991043, + -0.0050542098470032215, + -0.10177334398031235, + -0.0011119891423732042, + -0.03824307769536972, + -0.020323965698480606, + 0.04171055927872658, + -0.007927329279482365, + 0.039432089775800705, + 0.058625478297472, + -0.015965070575475693, + 0.012366456910967827, + -0.026958948001265526, + 0.06339827924966812, + -0.0026164453011006117, + -0.009100531227886677, + -0.07014375925064087, + 0.008028093725442886, + 0.03805764019489288, + -0.08898308873176575, + -0.033771440386772156, + -0.00619548000395298, + 0.0065469457767903805, + -0.044795043766498566, + -0.05767745524644852, + 0.0272999107837677, + -0.013959299772977829, + 0.0013442020863294601, + -0.023424264043569565, + 0.061829302459955215, + -0.0031543520744889975, + -0.011121689341962337, + -0.04059220105409622, + 0.0026324577629566193, + -0.03749130293726921, + 0.04993510618805885, + 0.008431127294898033, + 0.024219313636422157, + -0.08827999234199524, + 0.005983232520520687, + 0.048946693539619446, + -0.03632926195859909, + 0.022689174860715866, + 0.005697230808436871, + -0.0054880776442587376, + -0.07519016414880753, + 0.059937842190265656, + 0.10323499143123627, + -0.06396254897117615, + 0.0014058203669264913, + -0.019063390791416168, + -0.02228679321706295, + 0.02072986774146557, + 0.013769560493528843, + -0.02929823286831379, + -0.08038915693759918, + 0.010054626502096653, + -0.04235778748989105, + 0.038464371114969254, + -0.014777066186070442, + 0.041010621935129166, + -0.009266972541809082, + 0.000760846131015569, + -0.07688674330711365, + 0.015914980322122574, + -0.03634336590766907, + 0.020393528044223785, + -0.029760386794805527, + 0.0021961131133139133, + 0.006167751736938953, + -0.07121696323156357, + 0.0557834692299366, + 0.030885305255651474, + 0.012789851054549217, + -0.04838966205716133, + 0.02902531996369362, + -0.02344934269785881, + -0.0026226965710520744, + 0.08119968324899673, + -0.02196735329926014, + -0.07242915034294128, + -0.041984058916568756, + 0.06363477557897568, + 0.021746573969721794, + -0.009090026840567589, + -2.39084343434115e-08, + 0.08709321171045303, + 0.040989480912685394, + -0.09824927896261215, + 0.03095480613410473, + 0.035867176949977875, + -0.010680459439754486, + -0.003725057002156973, + -0.051319774240255356, + -0.05062950775027275, + -0.0441741980612278, + 0.015453542582690716, + 0.0580659918487072, + -0.06523942202329636, + -0.023592017590999603, + 0.07551534473896027, + 0.02605811320245266, + -0.016219984740018845, + 0.0969880074262619, + -0.01987927034497261, + -0.021816877648234367, + -0.09910283237695694, + 0.06331612914800644, + 0.05124777555465698, + -0.003093334147706628, + -0.02529592253267765, + -0.0032086221035569906, + 0.02474372647702694, + 0.1046738252043724, + -0.015460429713129997, + 0.0265934020280838, + 0.13331815600395203, + 0.028494203463196754, + -0.09408186376094818, + -0.07357189804315567, + 0.029469091445207596, + -0.05785909667611122, + -0.1021411344408989, + 0.02821383997797966, + 0.09674989432096481, + 0.1067216694355011, + -0.031752150505781174, + -0.030438493937253952, + 0.02731061913073063, + 0.041771333664655685, + -0.11331945657730103, + -0.004623572342097759, + 0.009855326265096664, + -0.01902533695101738, + -0.041676461696624756, + -0.13067474961280823, + 0.023979615420103073, + 0.038456063717603683, + -0.020975494757294655, + 0.08513287454843521, + 0.015714533627033234, + 0.0727500170469284, + 0.06010923534631729, + 0.09094870090484619, + -0.013849381357431412, + -0.02072283998131752, + 0.03549918904900551, + -0.06538049876689911, + 0.08402714133262634, + -0.007865932770073414 + ], + "git-merge-bold||*updated*,github,vcs,source control,version control,versioning,split": [ + 0.020637812092900276, + -0.07349181175231934, + 0.0014023560797795653, + 0.02937188185751438, + 0.08013113588094711, + -0.026117069646716118, + 0.0010856027947738767, + -0.002256642561405897, + 0.027665071189403534, + 0.03581136465072632, + 0.03224632143974304, + 0.046098493039608, + 0.004990852903574705, + -0.07739270478487015, + 0.01163535751402378, + 0.03260316699743271, + -0.04341324046254158, + 0.09432823956012726, + -0.03921900689601898, + -0.020032618194818497, + -0.09181354939937592, + 0.0711837038397789, + -0.01442719530314207, + 0.06827323883771896, + 0.10843074321746826, + 0.016558201983571053, + -0.017051808536052704, + -0.001730328076519072, + -0.010799015872180462, + -0.06429243087768555, + 0.006441818550229073, + 0.003361223265528679, + 0.06723732501268387, + 0.04015006497502327, + 0.0015932315727695823, + 0.07484070956707001, + -0.011293323710560799, + 0.009931101463735104, + 0.01611224003136158, + 0.040278032422065735, + -0.006838314700871706, + 0.038710106164216995, + -0.0027974038384854794, + -0.008415560238063335, + -0.05610436201095581, + 0.011780185624957085, + -0.055175650864839554, + -0.06858324259519577, + -0.012995418161153793, + -0.034384388476610184, + 0.012311446480453014, + -0.15887872874736786, + -0.09016519784927368, + 0.007710557896643877, + 0.037369757890701294, + -0.03148086741566658, + -0.018623383715748787, + 0.00787123292684555, + 0.029507843777537346, + -0.029821665957570076, + 0.022247307002544403, + 0.09079749137163162, + -0.037526484578847885, + 0.003311770735308528, + 0.02913048304617405, + -0.04196491464972496, + 0.07134613394737244, + 0.09495968371629715, + 0.0005430730525404215, + -0.06379567086696625, + 0.004255723673850298, + 0.020785093307495117, + -0.058184195309877396, + -0.04310594126582146, + -0.05558968335390091, + 0.005390831734985113, + -0.0022796785924583673, + 0.04671718552708626, + -0.02470766007900238, + -0.04380860552191734, + 0.0032185292802751064, + -0.05820014700293541, + -0.016979286447167397, + -0.01041747909039259, + -0.01752646267414093, + 0.07664567977190018, + 0.02316463179886341, + 0.03720244765281677, + -0.0007125808042474091, + -0.003187971655279398, + -0.061698541045188904, + -0.02057790197432041, + 0.15069697797298431, + -0.037610094994306564, + -0.023369167000055313, + -0.0060688466764986515, + 0.030792083591222763, + -0.01779823750257492, + 0.038451116532087326, + 0.0704197883605957, + -0.004390657413750887, + -0.005533195100724697, + 0.06169901788234711, + -0.042882468551397324, + 0.04173051565885544, + 0.01944599486887455, + 0.05619670823216438, + 0.019972912967205048, + 0.030546441674232483, + -0.030428817495703697, + 0.02767268754541874, + -0.07036770135164261, + -0.03916711360216141, + -0.10607985407114029, + -0.013921107165515423, + 0.04783286899328232, + 0.018551256507635117, + -0.02437036857008934, + 0.019065815955400467, + 0.017617344856262207, + 0.048592403531074524, + -0.0713714137673378, + -0.013071308843791485, + -0.03502938523888588, + -0.07064568996429443, + 0.018651532009243965, + -0.0029289701487869024, + -4.857213370929734e-34, + 0.08771376311779022, + 0.026216652244329453, + -0.029594125226140022, + 0.05713184177875519, + 0.0777808129787445, + 0.07400096952915192, + -0.07133684307336807, + -0.13892097771167755, + -0.11358120292425156, + -0.014069718308746815, + 0.09482213109731674, + 0.046740736812353134, + -0.09065600484609604, + 0.04784177616238594, + -0.01339629478752613, + -0.1260913759469986, + -0.021426066756248474, + 0.06554475426673889, + -0.07138186693191528, + 0.07219357043504715, + -0.049231335520744324, + 0.043638676404953, + -0.05861951783299446, + 0.03372461721301079, + 0.05745771899819374, + -0.13302525877952576, + 0.028441980481147766, + 0.043987952172756195, + -0.05296606570482254, + -0.04075497016310692, + -0.03923941031098366, + 0.04591178148984909, + 0.031733427196741104, + 0.057190801948308945, + -0.03645749017596245, + 0.017369037494063377, + -0.07485195994377136, + -0.04988037049770355, + 0.008032448589801788, + 0.05124073103070259, + -0.005336861591786146, + -0.006515515968203545, + -0.058852486312389374, + -0.07794520258903503, + 0.17261117696762085, + 0.0854172483086586, + -0.03057672455906868, + -0.04658118262887001, + 0.12443999946117401, + 0.011598678305745125, + 0.025398051366209984, + 0.059524066746234894, + 0.013433110900223255, + -0.009752781130373478, + -0.03297179564833641, + 0.005827934015542269, + -0.02180960774421692, + 0.011567525565624237, + 0.038223735988140106, + 0.02338152751326561, + -0.0200082678347826, + -0.008592106401920319, + -0.00010818971350090578, + -0.01001992728561163, + 0.026056060567498207, + 0.09853818267583847, + 0.0003534807765390724, + 0.058124616742134094, + 0.09259431809186935, + -0.013857468962669373, + -0.07092077285051346, + 0.022716112434864044, + -0.02282143197953701, + 0.024592136964201927, + -0.058091506361961365, + -0.03716070577502251, + -0.03438274562358856, + 0.04769960418343544, + 0.061063192784786224, + -0.08870501071214676, + -0.07290685176849365, + 0.031009245663881302, + -0.0408109687268734, + 0.028710799291729927, + 0.027407370507717133, + 0.0875103622674942, + -0.01925423927605152, + 0.058797914534807205, + -0.09915299713611603, + 0.05293960124254227, + -0.030485771596431732, + 0.053787898272275925, + -0.012179505079984665, + -0.06125423312187195, + -0.01815764792263508, + -1.1172959928550607e-33, + 0.0019469152903184295, + -0.04946250468492508, + -0.04958418011665344, + 0.036980003118515015, + -0.07009699940681458, + -0.010385111905634403, + -0.04448206350207329, + -0.043935153633356094, + -0.004324602894484997, + -0.012300862930715084, + 0.0663832277059555, + -0.025447992607951164, + -0.06314950436353683, + -0.058445241302251816, + -0.06554027646780014, + -0.012218617834150791, + 0.05356026813387871, + -0.013884935528039932, + 0.02934490516781807, + 0.0503513440489769, + 0.012183521874248981, + 0.015499508939683437, + 0.020905060693621635, + 0.04956557974219322, + 0.011864437721669674, + 0.0019008934032171965, + -0.05495723336935043, + -0.0020787264220416546, + 0.08759476989507675, + -0.07897036522626877, + 0.013388928025960922, + -0.03198692202568054, + -0.019111214205622673, + -0.03265061229467392, + -0.03622985631227493, + -0.007868821732699871, + 0.009458808228373528, + -0.00896210502833128, + -0.016354242339730263, + 0.04493054002523422, + -0.026936614885926247, + -0.010742600075900555, + -0.037563927471637726, + 0.008807051926851273, + -0.00610547699034214, + 0.020402520895004272, + -0.01587526686489582, + -0.0007521245279349387, + -0.0824952945113182, + -0.03427228331565857, + 0.020414598286151886, + -0.058243684470653534, + -0.016604334115982056, + -0.013483605347573757, + -0.015329953283071518, + -0.07766110450029373, + 0.08567491918802261, + 0.1337631493806839, + -0.0785115584731102, + -0.031127436086535454, + -0.014654036611318588, + 0.011037131771445274, + 0.03236101195216179, + -0.003868548898026347, + -0.05309169739484787, + -0.03721054270863533, + 0.005939184688031673, + -0.014002840034663677, + 0.013803736306726933, + 0.010248727165162563, + 0.034466322511434555, + -0.00012116712605347857, + -0.007472849916666746, + -0.058424096554517746, + 0.04068905860185623, + -0.048067837953567505, + 0.044154103845357895, + -0.02980874292552471, + 0.024869542568922043, + -0.013933952897787094, + -0.07517741620540619, + 0.03954309970140457, + 0.04258091375231743, + -0.006998252589255571, + -0.06816743314266205, + 0.03838285431265831, + -0.04816434532403946, + 0.03651810064911842, + 0.08690289407968521, + -0.033911414444446564, + -0.09581200033426285, + -0.03858896344900131, + 0.09724709391593933, + -0.0009600617922842503, + -0.057064615190029144, + -2.3540295046586834e-08, + 0.05115153640508652, + 0.0679890513420105, + -0.10994966328144073, + 0.011584251187741756, + 0.016286835074424744, + -0.028876494616270065, + -0.026729483157396317, + -0.03184862807393074, + -0.0011158795095980167, + -0.036325424909591675, + 0.005963955540210009, + 0.04836229607462883, + -0.07904930412769318, + -0.010756878182291985, + 0.06039067357778549, + 0.010213230736553669, + -0.04188213124871254, + 0.052917078137397766, + 0.00302266632206738, + -0.030862383544445038, + -0.06268786638975143, + 0.05938148498535156, + 0.0685187429189682, + 0.015821512788534164, + 0.023677345365285873, + 0.024819908663630486, + -0.021371807903051376, + 0.1181124672293663, + -0.013872950337827206, + 0.01852150447666645, + 0.15014402568340302, + 0.020444562658667564, + -0.09828483313322067, + -0.05125373229384422, + 0.019645391032099724, + -0.06434283405542374, + -0.016499431803822517, + 0.035505570471286774, + 0.04645485430955887, + 0.09654458612203598, + -0.03162222355604172, + -0.03306558355689049, + 0.013813014142215252, + 0.048333145678043365, + -0.09027887880802155, + -0.03279362991452217, + 0.03730083629488945, + -0.04554198682308197, + -0.03499900922179222, + -0.12093979120254517, + 0.00841586571186781, + 0.028788737952709198, + -0.011703702621161938, + 0.06539174169301987, + -0.006254076026380062, + 0.048864733427762985, + 0.05343220382928848, + 0.12406899034976959, + 0.02733909711241722, + -0.03954783454537392, + 0.03600512444972992, + -0.061020176857709885, + 0.04200831800699234, + 0.017708757892251015 + ], + "git-pull-request-bold||*updated*,github,vcs,source control,version control,versioning,merge request": [ + -0.0265103317797184, + -0.060118045657873154, + -0.002095903502777219, + 0.025488434359431267, + 0.058417197316884995, + -0.04347517713904381, + -0.00660476041957736, + -0.004275644663721323, + 0.03714893013238907, + 0.051065027713775635, + -0.016716716811060905, + 0.03768843784928322, + -0.024805735796689987, + -0.06823050230741501, + 0.026596609503030777, + 0.03701607882976532, + 0.0026159542612731457, + 0.08737325668334961, + -0.001057957299053669, + 0.015681549906730652, + -0.06367088109254837, + 0.07508259266614914, + 0.02091127261519432, + 0.06394810229539871, + 0.07285337150096893, + -0.04077479988336563, + -0.046850595623254776, + 0.0034247483126819134, + -0.0022877578157931566, + -0.03378252312541008, + -0.0024373987689614296, + 0.0012614212464541197, + 0.034267526119947433, + 0.04026719555258751, + 0.009442826732993126, + 0.0828222706913948, + -0.017612274736166, + -0.015704141929745674, + 0.014984541572630405, + 0.07870212942361832, + 0.022418614476919174, + 0.018795311450958252, + 0.015417922288179398, + -0.009629426524043083, + -0.08444617688655853, + -0.0030866677407175303, + -0.043027956038713455, + -0.07026585936546326, + -0.044378504157066345, + -0.03192342817783356, + -0.002185640623793006, + -0.14344628155231476, + -0.08021014928817749, + -0.007710284553468227, + 0.03351135924458504, + -0.06538108736276627, + -0.001352925319224596, + 0.020146211609244347, + 0.06544654071331024, + -0.022897766903042793, + -0.0020276105497032404, + 0.03608013689517975, + -0.025927165523171425, + 0.012313773855566978, + 0.008758293464779854, + -0.010120450519025326, + 0.04003981500864029, + 0.07446666806936264, + 0.017375517636537552, + -0.0809326320886612, + 0.019887827336788177, + -0.02021363191306591, + -0.13031725585460663, + -0.06611760705709457, + -0.042580727487802505, + -0.006986910477280617, + -0.024881238117814064, + 0.050460148602724075, + -0.04704763740301132, + -0.08004385977983475, + -0.00857424084097147, + -0.035802919417619705, + 0.019558805972337723, + 0.031058060005307198, + -0.0141875259578228, + 0.09724133461713791, + 0.031179795041680336, + 0.0513908825814724, + 0.03892379626631737, + 0.040273815393447876, + -0.03965208679437637, + -0.044336941093206406, + 0.07984429597854614, + 0.03360261768102646, + -0.04769667237997055, + 0.006505733355879784, + 0.02644730545580387, + -0.07127640396356583, + -0.0003884075558744371, + 0.06905189156532288, + 0.03763134777545929, + 0.005513675976544619, + 0.0625641867518425, + -0.04131819307804108, + 0.04220779612660408, + 0.03158621862530708, + 0.044669050723314285, + 0.047659847885370255, + -0.0019649642053991556, + -0.009418286383152008, + 0.004928112495690584, + -0.07121877372264862, + -0.05428910627961159, + -0.1201167181134224, + -0.04177411273121834, + 0.03335097059607506, + 0.029656223952770233, + -0.012396869249641895, + -0.030114470049738884, + 0.02195996604859829, + 0.08146785199642181, + -0.06772281229496002, + -0.022249793633818626, + -0.061497557908296585, + -0.05880987271666527, + 0.0035125799477100372, + -0.004503526259213686, + -5.180047282348728e-34, + 0.10131346434354782, + 0.04397904500365257, + -0.013387206941843033, + 0.05054912716150284, + 0.037954654544591904, + 0.0484699085354805, + -0.013680754229426384, + -0.14558671414852142, + -0.07412111759185791, + -0.03590068221092224, + 0.10643748939037323, + 0.06695419549942017, + -0.07269801944494247, + 0.05636044591665268, + -0.03224141523241997, + -0.10419148951768875, + -0.013830035924911499, + 0.029988741502165794, + -0.02716803550720215, + 0.10649461299180984, + -0.035876668989658356, + 0.017121493816375732, + -0.06515412032604218, + 0.026963146403431892, + 0.07957431674003601, + -0.10356289893388748, + 0.005122208967804909, + 0.07732238620519638, + -0.083041712641716, + -0.043067168444395065, + 0.03122750110924244, + 0.01194313820451498, + 0.05143846571445465, + 0.013680100440979004, + -0.018672723323106766, + -0.019331572577357292, + -0.05157886818051338, + -0.039801906794309616, + 0.007143351249396801, + 0.020297842100262642, + 0.014963204972445965, + -0.016146259382367134, + -0.08997024595737457, + -0.06976918876171112, + 0.15051104128360748, + 0.05722924321889877, + -0.019324246793985367, + -0.09717820584774017, + 0.10423645377159119, + 0.03990539163351059, + 0.03914583474397659, + 0.06590472161769867, + 0.03150887414813042, + -0.03337705135345459, + -0.009447063319385052, + -0.012512067332863808, + -0.032395102083683014, + 0.019692502915859222, + 0.021559258922934532, + 0.03482726588845253, + 0.009465614333748817, + -0.028790540993213654, + 0.0531582310795784, + -0.05009125918149948, + 0.010509228333830833, + 0.11461634188890457, + -0.027355412021279335, + 0.04980962350964546, + 0.05887282267212868, + -0.011559750884771347, + -0.08370111137628555, + 0.04552009701728821, + -0.01326238177716732, + 0.008600105531513691, + -0.04644955322146416, + -0.05362562835216522, + -0.05310753732919693, + 0.037289850413799286, + 0.10787174105644226, + -0.07998968660831451, + -0.07114755362272263, + -0.012172501534223557, + -0.04779535531997681, + 0.051691457629203796, + 0.026793187484145164, + 0.12272042781114578, + -0.019963761791586876, + 0.0062013836577534676, + -0.045857422053813934, + 0.05562032759189606, + -0.020777961239218712, + 0.061177972704172134, + -0.057198017835617065, + -0.04619377851486206, + -0.058516357094049454, + -1.566255489000494e-33, + 0.016414228826761246, + -0.08757240325212479, + -0.07401404529809952, + 0.05392705649137497, + -0.04438959062099457, + -0.021442819386720657, + -0.06293882429599762, + -0.01158697996288538, + 0.038149088621139526, + 0.013229369185864925, + 0.07825087755918503, + -0.01605493202805519, + -0.08373536914587021, + -0.057916197925806046, + -0.00730616319924593, + -0.016955828294157982, + 0.011406310833990574, + -0.0063225566409528255, + 0.01590198092162609, + 0.037932030856609344, + -0.011480429209768772, + 0.021356642246246338, + -0.0007579505909234285, + 0.03717697411775589, + -0.017658187076449394, + 0.012635748833417892, + -0.04885001480579376, + -0.03574220463633537, + 0.08859611302614212, + -0.08961120247840881, + -0.0019400949822738767, + -0.02857658825814724, + -0.057335466146469116, + -0.004021630622446537, + -0.023476505652070045, + 0.012422979809343815, + 0.013619079254567623, + 0.059898000210523605, + -0.02636357955634594, + 0.07464415580034256, + -0.0007651973864994943, + -0.011468023993074894, + 0.010804149322211742, + 0.01889726147055626, + -0.036373384296894073, + 0.029736913740634918, + -0.008859429508447647, + -0.010142757557332516, + -0.06399655342102051, + -0.035088833421468735, + 0.05630991607904434, + -0.030508719384670258, + 0.012807602994143963, + 0.030814841389656067, + -0.0010238102404400706, + -0.04977012053132057, + 0.04786317050457001, + 0.09620656073093414, + -0.054145149886608124, + -0.004704570863395929, + -0.012243911623954773, + 0.030272511765360832, + -0.026071324944496155, + -0.008849645964801311, + -0.03025481291115284, + -0.045997753739356995, + 0.020722055807709694, + -0.06349728256464005, + 0.028794463723897934, + -0.0014962306013330817, + 0.04006402567028999, + -0.07211252301931381, + -0.004236966837197542, + -0.05759001523256302, + 0.0771254375576973, + -0.05631275847554207, + 0.030571356415748596, + -0.058772843331098557, + 0.0146560650318861, + 0.018371686339378357, + -0.0485403835773468, + 0.065103679895401, + 0.010628203861415386, + 0.03223232924938202, + -0.03793332353234291, + 0.027611352503299713, + -0.09195031225681305, + 0.03864886984229088, + 0.07030142098665237, + -0.04858934134244919, + -0.06285721063613892, + -0.05578380823135376, + 0.07611464709043503, + 0.010613227263092995, + -0.05367803946137428, + -2.561693257518982e-08, + 0.03526768460869789, + 0.033246755599975586, + -0.07162836939096451, + 0.01525388564914465, + 0.03524615615606308, + -0.001465810346417129, + -0.03900206834077835, + -0.02856619656085968, + -0.016991088166832924, + -0.04740624502301216, + 0.02688273787498474, + 0.05466359853744507, + -0.031677283346652985, + 0.0008519474067725241, + 0.07433316856622696, + -0.0009213616140186787, + -0.0433652326464653, + 0.0530075877904892, + -0.00047319309669546783, + -0.07279001921415329, + -0.11856677383184433, + 0.04827355965971947, + 0.07785185426473618, + -0.030458366498351097, + 0.025063883513212204, + 0.03534955531358719, + 0.017281172797083855, + 0.1336914300918579, + -0.04367852583527565, + 0.0233980230987072, + 0.11274058371782303, + 0.024973366409540176, + -0.07566897571086884, + -0.05179125815629959, + 0.018962517380714417, + -0.024222450330853462, + -0.06828787922859192, + 0.016755500808358192, + 0.060008518397808075, + 0.10254282504320145, + -0.038106463849544525, + -0.008588220924139023, + 0.006011873949319124, + 0.046337567269802094, + -0.10818320512771606, + 0.007477318402379751, + 0.03613456338644028, + -0.05374882370233536, + -0.05977907031774521, + -0.1467427909374237, + -0.011134456843137741, + -0.009441814385354519, + -0.02032693661749363, + 0.1082874983549118, + -0.01843094453215599, + 0.06187388300895691, + 0.05014200136065483, + 0.08289795368909836, + 0.022156355902552605, + -0.014585708267986774, + 0.06915118545293808, + -0.03752434253692627, + 0.029829567298293114, + 0.052548278123140335 + ], + "github-logo-bold||octocat,vcs,source control,version control,versioning,branches": [ + 0.03223572298884392, + -0.0396791510283947, + -0.061486583203077316, + 0.007524785585701466, + 0.1154826357960701, + -0.03702728822827339, + -0.019308341667056084, + 0.00034122835495509207, + 0.09148307144641876, + 0.03973477706313133, + 0.0007226929301396012, + 0.0696900263428688, + -0.0019519435008987784, + -0.06985829770565033, + -0.005833020433783531, + -0.015813028439879417, + -0.04993302747607231, + 0.02080160565674305, + 0.031080737709999084, + -0.02659502811729908, + 0.022887296974658966, + 0.018530193716287613, + 0.006489291321486235, + 0.0136681217700243, + 0.09029608964920044, + 0.011146096512675285, + -0.036170147359371185, + 0.02510945312678814, + 0.03533662110567093, + -0.11017226427793503, + -0.014866108074784279, + 0.055273301899433136, + 0.09987622499465942, + 0.0026114678476005793, + 0.014783193357288837, + 0.09270919114351273, + 0.039760831743478775, + -0.02616662159562111, + 0.02374131605029106, + 0.06328374892473221, + 0.011978467926383018, + 0.037713561207056046, + 0.028445111587643623, + 0.004659172613173723, + -0.05921704322099686, + 0.03325783088803291, + -0.03218768537044525, + -0.06332603842020035, + -0.06498865783214569, + -0.02695760689675808, + 0.07830178737640381, + -0.1907900869846344, + -0.08320828527212143, + -0.026602329686284065, + 0.009423559531569481, + -0.08041633665561676, + -0.012559904716908932, + -0.002630532020702958, + 0.05027538165450096, + -0.010014825500547886, + 0.04778089001774788, + 0.05461782589554787, + -0.046311311423778534, + 0.04374809190630913, + 0.06136054918169975, + -0.005777196027338505, + 0.023621171712875366, + 0.052694447338581085, + -0.004001838620752096, + -0.048291947692632675, + 0.029400408267974854, + -0.016275504603981972, + -0.049389876425266266, + -0.010951829142868519, + -0.03199811279773712, + -0.04301077499985695, + 0.01272355206310749, + 0.04872730001807213, + 0.04609905183315277, + -0.11438286304473877, + -0.01596006006002426, + -0.028036901727318764, + 0.008093059994280338, + 0.06999742984771729, + -0.009574398398399353, + 0.1116361990571022, + 0.03187903016805649, + 0.03288303315639496, + 0.05690949410200119, + 0.06155213713645935, + -0.06492346525192261, + -0.006837851833552122, + 0.14554160833358765, + -0.034250207245349884, + -0.045395370572805405, + -0.012991850264370441, + -0.00043134146835654974, + -0.013899335637688637, + -0.02589290961623192, + 0.07628661394119263, + 0.01264085341244936, + -0.01029022503644228, + 0.10228157043457031, + -0.02829449437558651, + 0.05702701210975647, + 0.0515655092895031, + 0.04375292733311653, + 0.0352853424847126, + 0.02754906751215458, + 0.012272113934159279, + 0.0010146362474188209, + -0.0038969230372458696, + -0.08122684806585312, + -0.0720815435051918, + -0.011502320878207684, + -0.011623297818005085, + 0.0038398534525185823, + -0.034809596836566925, + 0.04958024621009827, + 0.032358407974243164, + 0.03368178755044937, + -0.04142047092318535, + -0.017729774117469788, + -0.07582534104585648, + -0.06337357312440872, + -0.014311020262539387, + -0.021578006446361542, + -1.3529570799269974e-33, + 0.08402625471353531, + 0.06022784858942032, + -0.03524669259786606, + 0.01114228181540966, + 0.05471965670585632, + 0.04394910857081413, + -0.04149951413273811, + -0.12923817336559296, + -0.14210408926010132, + 0.03381086140871048, + 0.06703735888004303, + 0.05764290690422058, + -0.06377538293600082, + 0.11210472136735916, + 0.06783469021320343, + -0.09066279232501984, + -0.07004722207784653, + 0.02049415558576584, + -0.07799241691827774, + 0.018829861655831337, + -0.03169386833906174, + -0.019062167033553123, + -0.08783084899187088, + -0.009387191385030746, + 0.09568828344345093, + -0.09475259482860565, + 0.05941840261220932, + 0.027470339089632034, + -0.06009135767817497, + -0.035021182149648666, + 0.013183319941163063, + 0.051215093582868576, + 0.03093883953988552, + 0.015874989330768585, + -0.027227921411395073, + -0.04528121277689934, + -0.049807727336883545, + -0.05241922661662102, + 0.027927357703447342, + 0.05052858963608742, + 0.03251144289970398, + -0.026258938014507294, + -0.06958414614200592, + 0.014070806093513966, + 0.11998256295919418, + 0.13456374406814575, + 0.010974198579788208, + -0.09331163763999939, + 0.12339723110198975, + -0.00208592158742249, + 0.01410143356770277, + 0.06552339345216751, + 0.044789351522922516, + -0.03251415118575096, + -0.017655346542596817, + -0.03726278617978096, + -0.024082142859697342, + 0.02972118929028511, + 0.008692881092429161, + 0.01013113372027874, + 0.004088343121111393, + -0.0024658001493662596, + 0.061905428767204285, + -0.0070794448256492615, + -0.013871422968804836, + 0.109755739569664, + -0.08773750811815262, + 0.024759512394666672, + 0.07282821834087372, + -0.03611990809440613, + -0.09157471358776093, + -0.003263301681727171, + 0.01994188129901886, + 0.011133241467177868, + -0.08285415917634964, + 0.005641554482281208, + -0.03469107300043106, + 0.05896078795194626, + 0.021637888625264168, + -0.0027874268125742674, + -0.09220033138990402, + -0.01733173429965973, + -0.03224904090166092, + 0.02334771864116192, + 0.004266217350959778, + 0.05851373076438904, + 0.010233392007648945, + 0.017138777300715446, + -0.05653822794556618, + 0.035325199365615845, + 0.023968294262886047, + 0.005172449629753828, + 0.0004603663401212543, + -0.024483444169163704, + -0.09676982462406158, + -3.6052979971852035e-35, + -0.036083564162254333, + -0.05214916542172432, + 0.015691395848989487, + 0.032148271799087524, + -0.03968743234872818, + 0.04063046723604202, + -0.06270167231559753, + -0.02800658345222473, + -0.03902320936322212, + -0.037537582218647, + 0.07207203656435013, + 0.06502696126699448, + -0.09859286993741989, + -0.023963861167430878, + 0.0017378056654706597, + -0.005162687506526709, + 0.044792503118515015, + 0.010649807751178741, + -0.009783386252820492, + -0.00811454001814127, + -0.015257436782121658, + 0.019572071731090546, + -0.025087622925639153, + 0.04073362424969673, + -0.01170183066278696, + 0.03905550017952919, + -0.024601545184850693, + -0.022657254710793495, + 0.0791916623711586, + -0.06165394186973572, + -0.012154361233115196, + -0.0016446521040052176, + -0.02114088088274002, + 0.0032364611979573965, + -0.0034856912679970264, + -0.028026476502418518, + -0.011411820538341999, + -0.007027546409517527, + -0.028631525114178658, + 0.03429781273007393, + 0.00022143064416013658, + -0.024847418069839478, + -0.043261926621198654, + 0.005722586531192064, + -0.038107894361019135, + -0.007423697039484978, + -0.017084073275327682, + -0.01591944694519043, + -0.0715140700340271, + 0.00932217389345169, + 0.018685679882764816, + -0.0452091246843338, + 0.028368832543492317, + 0.028386609628796577, + -0.03155848756432533, + -0.04628140479326248, + -0.01294456422328949, + 0.11301612108945847, + -0.013051332905888557, + 0.019275903701782227, + -0.03762640431523323, + -0.022276153787970543, + 0.004341237246990204, + -0.02371196635067463, + -0.07224425673484802, + -0.0209296066313982, + -0.01150302030146122, + 0.028736868873238564, + -0.03699781000614166, + 0.0490645095705986, + 0.018501341342926025, + -0.018725061789155006, + -0.026815343648195267, + -0.03955809026956558, + 0.017183559015393257, + -0.04975369572639465, + 0.07158193737268448, + -0.013250738382339478, + -0.043177153915166855, + 0.03534276783466339, + -0.08726237714290619, + 0.07834590971469879, + -0.02269785851240158, + 0.07347308099269867, + -0.008621776476502419, + 0.02269858866930008, + -0.030261225998401642, + 0.045937005430459976, + 0.08783846348524094, + -0.009782328270375729, + -0.07512069493532181, + 0.01932971365749836, + 0.052254147827625275, + 0.027957335114479065, + -0.005332576110959053, + -2.2220472573053485e-08, + -0.004861657507717609, + 0.002214315813034773, + -0.012373633682727814, + -0.011085591278970242, + 0.0051484256982803345, + -0.0045385765843093395, + 0.02017834596335888, + -0.051728542894124985, + -0.031276971101760864, + -0.022161899134516716, + -0.00921877846121788, + 0.022657599300146103, + -0.08441296964883804, + -0.04233211651444435, + 0.059894464910030365, + 0.016709119081497192, + -0.05034542456269264, + 0.10449932515621185, + 0.0003319985989946872, + -0.03684386983513832, + -0.08044443279504776, + 0.0424884557723999, + 0.08370957523584366, + -0.012886250391602516, + -0.008277331478893757, + 0.02744961343705654, + 0.021155375987291336, + 0.08638221770524979, + -0.0312996543943882, + 0.041459955275058746, + 0.11675377190113068, + 0.130814790725708, + -0.08232513070106506, + -0.09984356164932251, + -0.003519810037687421, + -0.04200773686170578, + -0.038161225616931915, + -0.003930998034775257, + 0.02595444582402706, + 0.04224134609103203, + -0.026944398880004883, + -0.055045075714588165, + 0.01945537142455578, + 0.047276198863983154, + -0.08910475671291351, + 0.00212616054341197, + 0.043142169713974, + 0.005492058116942644, + -0.04374958202242851, + -0.1410760134458542, + 0.0032149872276932, + 0.03751198947429657, + -0.09131278097629547, + 0.11018700897693634, + -0.03378590568900108, + -0.01153033971786499, + 0.017416303977370262, + 0.07018878310918808, + 0.049149565398693085, + -0.0116577772423625, + 0.05611718073487282, + -0.08077898621559143, + 0.055048950016498566, + -0.04421650990843773 + ], + "gitlab-logo-bold||vcs,source control,version control,versioning,branches": [ + -0.001803338760510087, + -0.010696855373680592, + -0.02952568605542183, + 0.0001690655917627737, + 0.053505536168813705, + -0.07863378524780273, + 0.011037738993763924, + -0.015430050902068615, + 0.06477995961904526, + 0.06222918629646301, + 0.0036787830758839846, + 0.04437915235757828, + 0.06299733370542526, + -0.04818255081772804, + 0.03090822882950306, + -0.06921741366386414, + -0.005467526149004698, + 0.04812189191579819, + 0.02662641741335392, + -0.04003056511282921, + 0.005000394769012928, + 0.034967243671417236, + 0.023945776745676994, + 0.0629943385720253, + 0.07525672763586044, + -0.050937145948410034, + -0.004903903231024742, + 0.01622171141207218, + 0.012623567134141922, + -0.10881593078374863, + -0.040836118161678314, + 0.036880359053611755, + 0.07353571802377701, + 0.04519568011164665, + -0.03442409262061119, + 0.09869375079870224, + -0.0005473210476338863, + -0.017503494396805763, + -0.038412608206272125, + 0.047043390572071075, + -0.008962840773165226, + 0.040875524282455444, + -0.0032464617397636175, + -0.03902822360396385, + -0.04269494488835335, + -0.00011593036470003426, + -0.05040520802140236, + -0.08284679055213928, + -0.03701736778020859, + 0.012391314841806889, + 0.04610786959528923, + -0.18140719830989838, + -0.06042392924427986, + -0.05621728301048279, + 0.07637830823659897, + -0.05347301438450813, + -0.013060951605439186, + 0.01046416163444519, + 0.05590461567044258, + 0.03952339291572571, + 0.004608459770679474, + 0.06069483608007431, + -0.06311105936765671, + 0.0047492990270257, + 0.025759657844901085, + -0.007012645713984966, + 0.07248396426439285, + 0.0810273289680481, + -0.0018541021272540092, + -0.06936631351709366, + 0.028459841385483742, + -0.06417261064052582, + -0.07751297205686569, + -0.055605269968509674, + -0.04951515048742294, + -0.027098694816231728, + 0.026459116488695145, + 0.056042302399873734, + 0.022538574412465096, + -0.1437212973833084, + -0.010459702461957932, + -0.0405743345618248, + -0.01803003065288067, + 0.06742130219936371, + -0.02605370432138443, + 0.08967583626508713, + 0.05864500626921654, + 0.037649281322956085, + 0.08741480857133865, + 0.079837866127491, + -0.03404479846358299, + 0.040250275284051895, + 0.14899152517318726, + -0.027290580794215202, + -0.040638335049152374, + 0.006864658556878567, + -0.014236913993954659, + 0.000959724944550544, + 0.007274703588336706, + 0.08240275084972382, + 0.04812873527407646, + -0.012486414983868599, + 0.1257311850786209, + -0.02944641374051571, + 0.041094109416007996, + 0.027378132566809654, + 0.10391324758529663, + -0.001576689537614584, + -0.023593010380864143, + -0.015877215191721916, + -0.0007393715204671025, + 0.013379556126892567, + -0.10121580958366394, + -0.059142883867025375, + 0.008731888607144356, + 0.039719585329294205, + -0.013081123121082783, + -0.020152296870946884, + 0.02789749950170517, + 0.005484900437295437, + 0.007204820867627859, + -0.0005513760261237621, + 0.016192203387618065, + -0.028688007965683937, + -0.0364394374191761, + -0.019957855343818665, + -0.004345017950981855, + -1.604527932024337e-33, + 0.03922906890511513, + 0.05277841165661812, + -0.06313207745552063, + 0.04202191159129143, + 0.0169020164757967, + 0.06016163155436516, + -0.06139320507645607, + -0.16450119018554688, + -0.16634592413902283, + -0.012956189922988415, + 0.0514964759349823, + 0.06693517416715622, + -0.099215567111969, + 0.12524577975273132, + 0.0706048384308815, + -0.07331684231758118, + -0.0468348003923893, + -0.010117633268237114, + -0.04492165148258209, + -0.004996024072170258, + -0.050318643450737, + -0.0348961278796196, + -0.08445189893245697, + -0.01648777537047863, + 0.07358915358781815, + -0.06470593065023422, + 0.02569444850087166, + 0.011647325940430164, + -0.05145673453807831, + -0.01638212613761425, + 0.05911710113286972, + -0.008738124743103981, + 0.05909125134348869, + 0.042048074305057526, + -0.027307290583848953, + 0.013551013544201851, + -0.04657682031393051, + -0.0171023141592741, + 0.001054499763995409, + 0.07913718372583389, + 0.011612022295594215, + -0.04948198422789574, + -0.05825578793883324, + 0.01058644987642765, + 0.06126195192337036, + 0.0946749672293663, + -0.027912747114896774, + -0.05723061412572861, + 0.05899989232420921, + 0.03411945700645447, + 0.03633223474025726, + 0.08243803679943085, + 0.05046738684177399, + -0.023001648485660553, + -0.016851529479026794, + 0.01596873626112938, + 0.0014590210048481822, + 0.030608082190155983, + 0.03282610699534416, + -0.01566900499165058, + -0.011055836454033852, + 0.015112719498574734, + 0.010301711969077587, + 0.013278262689709663, + 0.04914725199341774, + 0.10734639316797256, + -0.04743724316358566, + 0.011313678696751595, + 0.06303488463163376, + -0.046524953097105026, + -0.0672755166888237, + 0.010732356458902359, + 0.022224469110369682, + 0.023245204240083694, + -0.03264457732439041, + -0.020211229100823402, + -0.06240345537662506, + 0.07661187648773193, + -0.03565501794219017, + 0.01960538886487484, + -0.12204233556985855, + -0.011291580274701118, + -0.04770763963460922, + 0.05902208760380745, + 0.029005657881498337, + 0.07058528065681458, + 0.11136999726295471, + 0.005428801756352186, + -0.07279544323682785, + 0.05147166922688484, + 0.023444565013051033, + 0.020548256114125252, + 0.03405814245343208, + -0.030310772359371185, + -0.03451952338218689, + 7.34009850804382e-34, + 0.02150738425552845, + 0.008339527063071728, + 0.0054594362154603004, + 0.04247104749083519, + -0.05810421332716942, + -0.04613245278596878, + 0.02939629554748535, + -0.042976394295692444, + -0.05767715349793434, + -0.04404144734144211, + 0.0954357236623764, + 0.0017423114040866494, + -0.10702130198478699, + -0.0317845344543457, + -0.027981562539935112, + -0.01317739300429821, + 0.038986869156360626, + 0.008076879195868969, + -0.027962205931544304, + -0.0018807165324687958, + -0.053118254989385605, + 0.04102350026369095, + -0.008269301615655422, + 0.06684153527021408, + -0.022544965147972107, + 0.0062654586508870125, + -0.006396475713700056, + 0.03348678722977638, + -0.025527382269501686, + -0.08856122195720673, + -0.02483181096613407, + -0.026631543412804604, + 0.00505103962495923, + -0.007387776859104633, + -0.019131503999233246, + -0.044107191264629364, + 0.002085675485432148, + 0.01217478048056364, + -0.03763915225863457, + 0.05410566180944443, + -0.026907095685601234, + 0.004080672282725573, + -0.03358924016356468, + -0.01599923148751259, + -0.04371100664138794, + 0.04638674855232239, + 0.03775627538561821, + -0.038772180676460266, + -0.09411458671092987, + -0.013687179423868656, + 0.07235169410705566, + -0.025038408115506172, + 0.054531995207071304, + 0.014881878159940243, + 0.019193677231669426, + -0.05837414786219597, + 0.01794864982366562, + 0.09716270118951797, + -0.030324792489409447, + -0.0038631476927548647, + 0.0045736972242593765, + -0.023519907146692276, + 0.01771607995033264, + -0.0172075554728508, + -0.03877773880958557, + -0.03579135984182358, + 0.004403446801006794, + -0.007633645087480545, + -0.0048093185760080814, + -0.0003841258294414729, + 0.01646709442138672, + -0.05966806784272194, + -0.026941636577248573, + -0.07951107621192932, + 0.021639954298734665, + -0.030969586223363876, + 0.008182486519217491, + 0.007143576629459858, + -0.014407506212592125, + -0.022699901834130287, + -0.029689118266105652, + 0.05764365568757057, + -0.04023667424917221, + 0.0287302415817976, + 0.028785722330212593, + 0.008281180635094643, + -0.063722163438797, + 0.05446425452828407, + 0.13006415963172913, + 0.0024870058987289667, + -0.08600576221942902, + 0.030672628432512283, + 0.0239176657050848, + 0.010662967339158058, + 0.022500140592455864, + -2.1059353372265832e-08, + -0.019808843731880188, + 0.043842364102602005, + -0.04031902924180031, + 0.003963399678468704, + 0.03725559636950493, + 0.022338708862662315, + -0.00228644791059196, + -0.041968926787376404, + -0.04407443851232529, + -0.018096446990966797, + -0.03262840956449509, + 0.05317768082022667, + -0.11615455150604248, + -0.0012956989230588078, + 0.03227181360125542, + 0.0222842488437891, + -0.01286257989704609, + 0.1016707718372345, + 0.0015662297373637557, + -0.05207756534218788, + -0.10321229696273804, + 0.06752565503120422, + 0.00762136047706008, + -0.018833616748452187, + -0.039325207471847534, + 0.03405827656388283, + 0.008272022940218449, + 0.0480811782181263, + 0.01781206950545311, + -0.004238814581185579, + 0.14247144758701324, + 0.09181902557611465, + -0.07224728167057037, + -0.07118995487689972, + -0.003045204561203718, + -0.028688687831163406, + -0.049965474754571915, + 0.052020955830812454, + 0.06926842778921127, + 0.09869951009750366, + -0.019153252243995667, + -0.06525064259767532, + 0.015616713091731071, + 0.015731370076537132, + -0.10785099118947983, + -0.00016179389785975218, + 0.050721753388643265, + -0.015592667274177074, + -0.038648832589387894, + -0.07439401000738144, + 0.013402012176811695, + 0.028831984847784042, + -0.041110653430223465, + 0.08125194907188416, + -0.024974020197987556, + -0.011590068228542805, + 0.08577269315719604, + 0.05860515311360359, + 0.014858288690447807, + -0.01191796362400055, + 0.05233459919691086, + -0.09127648919820786, + 0.05219614878296852, + -0.028775189071893692 + ], + "gitlab-logo-simple-bold||vcs,source control,version control,versioning,branches": [ + -0.002404003171250224, + -0.00482872873544693, + -0.021708136424422264, + -0.005807054229080677, + 0.054993800818920135, + -0.0769679844379425, + 0.0017109587788581848, + -0.004083049483597279, + 0.04822421446442604, + 0.07360165566205978, + 0.006118765566498041, + 0.036970436573028564, + 0.057497598230838776, + -0.04761788249015808, + 0.03040691465139389, + -0.07324758172035217, + -0.01368135679513216, + 0.03740625083446503, + 0.0323648639023304, + -0.03889920562505722, + -0.010129082016646862, + 0.02304072119295597, + 0.009556437842547894, + 0.05939487740397453, + 0.06798151880502701, + -0.03789004683494568, + -0.009838095866143703, + 0.02351001650094986, + 0.025675879791378975, + -0.11500170826911926, + -0.03544570505619049, + 0.03410215303301811, + 0.08401324599981308, + 0.04046362638473511, + -0.03854871168732643, + 0.09581892937421799, + 0.014973964542150497, + -0.012868508696556091, + -0.04809441789984703, + 0.040476858615875244, + -0.018387705087661743, + 0.03930876776576042, + -0.002070743590593338, + -0.02839934453368187, + -0.04609496891498566, + -0.0038776227738708258, + -0.0585143119096756, + -0.08018124848604202, + -0.031185762956738472, + 0.007590498775243759, + 0.04304301366209984, + -0.18492332100868225, + -0.0661131963133812, + -0.05868830159306526, + 0.08125784248113632, + -0.04869380593299866, + -0.02835768088698387, + 0.018393687903881073, + 0.05592494457960129, + 0.030116533860564232, + 0.013078136369585991, + 0.05287846550345421, + -0.06608974933624268, + 0.009039484895765781, + 0.024986322969198227, + -0.027949772775173187, + 0.0700540766119957, + 0.08235080540180206, + 0.004605808295309544, + -0.07128617912530899, + 0.01650218293070793, + -0.06536388397216797, + -0.08917698264122009, + -0.04496355727314949, + -0.05384239926934242, + -0.037103235721588135, + 0.024401148781180382, + 0.06256946176290512, + 0.013379769399762154, + -0.13623379170894623, + -0.018293464556336403, + -0.043142687529325485, + -0.023629678413271904, + 0.07873687893152237, + -0.0350472591817379, + 0.0855160504579544, + 0.05630132555961609, + 0.04097772017121315, + 0.09748151153326035, + 0.07311782240867615, + -0.027838027104735374, + 0.0464916005730629, + 0.1617732048034668, + -0.030441956594586372, + -0.038384951651096344, + 0.010667650029063225, + -0.007422544527798891, + -0.0034025521017611027, + -0.011162549257278442, + 0.08953819423913956, + 0.04340462386608124, + -0.011947283521294594, + 0.13763144612312317, + -0.04512855038046837, + 0.042591482400894165, + 0.02711801789700985, + 0.09792698919773102, + -0.008198593743145466, + -0.022536488249897957, + -0.01929294876754284, + -0.007153455168008804, + 0.016504667699337006, + -0.10728239268064499, + -0.059122562408447266, + 0.015162373892962933, + 0.035504572093486786, + -0.01786571554839611, + -0.02585688978433609, + 0.033042166382074356, + 0.012705991044640541, + 0.002253566402941942, + -0.003333449363708496, + 0.006745237857103348, + -0.02600185014307499, + -0.04643210768699646, + -0.017868513241410255, + -0.009456505067646503, + -1.8614981602827892e-33, + 0.046761054545640945, + 0.06086970865726471, + -0.0664818063378334, + 0.049374330788850784, + 0.019247757270932198, + 0.051486749202013016, + -0.0633416399359703, + -0.16061662137508392, + -0.17290037870407104, + -0.00813340675085783, + 0.05882285535335541, + 0.060268279165029526, + -0.10221467167139053, + 0.13549168407917023, + 0.07462287694215775, + -0.07610537111759186, + -0.043469347059726715, + -0.015126055106520653, + -0.046387020498514175, + -0.015818072482943535, + -0.05095566809177399, + -0.025746917352080345, + -0.08070708811283112, + -0.02227245643734932, + 0.07954051345586777, + -0.0556618757545948, + 0.03364377096295357, + 0.007601242978125811, + -0.04377410188317299, + -0.017140643671154976, + 0.05456024035811424, + -0.012089306488633156, + 0.05543217808008194, + 0.042107630521059036, + -0.027792247012257576, + 0.009835910052061081, + -0.03183569386601448, + -0.02011016197502613, + 0.0034024077467620373, + 0.06349176168441772, + 0.004719894379377365, + -0.04649323970079422, + -0.053873930126428604, + 0.010772145353257656, + 0.0745694488286972, + 0.09224557131528854, + -0.027962975203990936, + -0.054691772907972336, + 0.06619498878717422, + 0.033743299543857574, + 0.02294686995446682, + 0.07713619619607925, + 0.04441293329000473, + -0.020994456484913826, + -0.017746631056070328, + 0.017731135711073875, + -0.004265679512172937, + 0.03372988477349281, + 0.027209997177124023, + -0.0037917732261121273, + -0.00862732995301485, + 0.027424145489931107, + -0.0002766544930636883, + 0.018235323950648308, + 0.04868944734334946, + 0.10703258216381073, + -0.05057552829384804, + -0.0003737260994967073, + 0.06657178699970245, + -0.04184935986995697, + -0.07670796662569046, + 0.00748846773058176, + 0.028863122686743736, + 0.01760246604681015, + -0.021617401391267776, + -0.009485425427556038, + -0.05112384632229805, + 0.0653216615319252, + -0.04018372669816017, + 0.027488142251968384, + -0.12345492094755173, + -0.011503461748361588, + -0.04999126121401787, + 0.06737135350704193, + 0.022553587332367897, + 0.06841644644737244, + 0.11405254155397415, + 0.01683921180665493, + -0.07134058326482773, + 0.04073229059576988, + 0.012296952307224274, + 0.022691071033477783, + 0.03366129472851753, + -0.028380462899804115, + -0.026557782664895058, + 8.893327407420791e-34, + 0.01573430746793747, + 0.00247434270568192, + 0.007066407240927219, + 0.047400668263435364, + -0.05578400939702988, + -0.032715197652578354, + 0.030032634735107422, + -0.05145878344774246, + -0.055342163890600204, + -0.041261788457632065, + 0.07921349257230759, + 0.005094580352306366, + -0.1051207184791565, + -0.030762633308768272, + -0.024549786001443863, + -0.016988011077046394, + 0.032577384263277054, + 0.0075027369894087315, + -0.026439860463142395, + 0.0034469147212803364, + -0.049741096794605255, + 0.052995115518569946, + -0.0234439168125391, + 0.05933237448334694, + -0.01393885351717472, + 0.008253499865531921, + -0.007110218983143568, + 0.04064958170056343, + -0.02417430281639099, + -0.08605725318193436, + -0.029621552675962448, + -0.037820663303136826, + 0.009021219797432423, + -0.011743169277906418, + -0.017434032633900642, + -0.04311322793364525, + 0.0008378595812246203, + 0.015471922233700752, + -0.039179131388664246, + 0.049384742975234985, + -0.03080187924206257, + -0.0023131086491048336, + -0.024262646213173866, + -0.02450227551162243, + -0.039672546088695526, + 0.04223402962088585, + 0.037163231521844864, + -0.04179072007536888, + -0.10266676545143127, + -0.01609008200466633, + 0.06680452078580856, + -0.0343012809753418, + 0.054176751524209976, + 0.017158741131424904, + 0.022079620510339737, + -0.061179257929325104, + 0.02466597780585289, + 0.10564592480659485, + -0.026385117322206497, + 0.005625335033982992, + -0.0040677012875676155, + -0.025038929656147957, + 0.013935500755906105, + -0.021828114986419678, + -0.04082769900560379, + -0.030120473355054855, + -0.0030111349187791348, + -0.010197008959949017, + -0.020054854452610016, + -0.0009688589489087462, + 0.005288357846438885, + -0.05407015234231949, + -0.019631819799542427, + -0.0887238010764122, + 0.027334583923220634, + -0.026387149468064308, + 0.00772184319794178, + 0.0032720563467592, + -0.012284360826015472, + -0.03090665675699711, + -0.021658383309841156, + 0.062444351613521576, + -0.04581601545214653, + 0.02335258387029171, + 0.04417509585618973, + 0.007188992574810982, + -0.05736074224114418, + 0.046286385506391525, + 0.12743845582008362, + 0.006822141353040934, + -0.09211361408233643, + 0.04537924751639366, + 0.04203656688332558, + 0.030492080375552177, + 0.020650101825594902, + -2.215420025208914e-08, + -0.01449421513825655, + 0.03521563112735748, + -0.037023112177848816, + 0.0038020785432308912, + 0.042639508843421936, + 0.031212231144309044, + -0.0022772070951759815, + -0.04805738851428032, + -0.042518723756074905, + -0.010047683492302895, + -0.03569173440337181, + 0.04759654030203819, + -0.11823116987943649, + 0.013515091501176357, + 0.02387532778084278, + 0.03173496574163437, + -0.01637526974081993, + 0.10714353621006012, + 0.006944227032363415, + -0.04728955775499344, + -0.09451912343502045, + 0.06599177420139313, + 0.012936865910887718, + -0.022424334660172462, + -0.036143891513347626, + 0.03607328608632088, + 0.017844146117568016, + 0.05861884355545044, + 0.011310459114611149, + -0.003368526231497526, + 0.1381763219833374, + 0.0985865667462349, + -0.0670795738697052, + -0.05742555484175682, + -0.00015378241369035095, + -0.026534046977758408, + -0.04843275994062424, + 0.05904441699385643, + 0.05979164317250252, + 0.07931618392467499, + -0.009887399151921272, + -0.060615573078393936, + 0.01855742745101452, + 0.012024539522826672, + -0.1029047816991806, + 0.00048514726222492754, + 0.052507322281599045, + -0.02245345152914524, + -0.03910292312502861, + -0.07562075555324554, + 0.011174625717103481, + 0.02550078183412552, + -0.03490578755736351, + 0.06893983483314514, + -0.02427876554429531, + 0.004752056207507849, + 0.08618272095918655, + 0.05138604715466499, + 0.013453816063702106, + -0.0040715825743973255, + 0.055931344628334045, + -0.06528947502374649, + 0.04098232463002205, + -0.02455945871770382 + ], + "globe-bold||world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography,internet": [ + 0.06555463373661041, + -0.013549832627177238, + 0.01911916397511959, + -0.027878256514668465, + 0.03888202831149101, + -0.08744106441736221, + 0.013148723170161247, + 0.007930498570203781, + 0.03932829573750496, + -0.003945263102650642, + 0.0064004710875451565, + -0.008686156012117863, + -0.008962743915617466, + 0.050730541348457336, + 0.00370276952162385, + -0.06978008896112442, + -0.06215876340866089, + 0.018274256959557533, + -0.050477683544158936, + -0.049376606941223145, + 0.06349373608827591, + 0.035977382212877274, + 0.07716847956180573, + 0.09846378117799759, + 0.026301059871912003, + 0.04804982990026474, + 0.07796970754861832, + -0.029492396861314774, + -0.015858637169003487, + -0.0022124687675386667, + -0.04285849258303642, + 0.055582188069820404, + 0.0963829830288887, + 0.03001822903752327, + -0.019477514550089836, + 0.026491574943065643, + -0.05012041702866554, + 0.001698338077403605, + 0.0573885552585125, + 0.06641553342342377, + 0.0002873136254493147, + -0.08941961079835892, + 0.08165530115365982, + 0.005806836765259504, + -0.005439510103315115, + 0.017317546531558037, + -0.0855274647474289, + 0.07458027452230453, + -0.0508500374853611, + 0.03242660313844681, + -0.02441295236349106, + -0.10031533986330032, + -0.13977394998073578, + -0.02380274422466755, + 0.026744401082396507, + -5.1554034143919125e-05, + 0.0053331367671489716, + -0.03526121750473976, + 0.038405317813158035, + 0.021116087213158607, + -0.01562437042593956, + -0.019031556323170662, + 0.046123895794153214, + 0.10514381527900696, + 0.06530267745256424, + 0.025417979806661606, + 0.0229958463460207, + 0.06057403236627579, + -0.06370262801647186, + -0.009478874504566193, + 0.008555100299417973, + -0.010203645564615726, + -0.0014614132232964039, + 0.024996180087327957, + -0.03571191430091858, + -0.035257428884506226, + -0.03625109791755676, + 0.016728725284337997, + -0.05616104602813721, + -0.001996477134525776, + 0.06465544551610947, + 0.0594581700861454, + 0.04459814727306366, + 0.02861175686120987, + 0.027969997376203537, + -0.01888950541615486, + -0.051941510289907455, + -0.04602415859699249, + -0.011356241069734097, + -0.05919543653726578, + -0.06044594198465347, + -0.062457747757434845, + 0.06173703446984291, + 0.0717492327094078, + -0.07130173593759537, + 0.039792049676179886, + 0.0449632853269577, + -0.06886234879493713, + -0.04032708331942558, + 0.03486056253314018, + 0.08645953238010406, + 0.004218284506350756, + 0.054260093718767166, + 0.04046904668211937, + -0.056550562381744385, + -0.04602315276861191, + -0.026278074830770493, + -0.025974106043577194, + 0.006073820870369673, + -0.04597942531108856, + -0.10738857090473175, + -0.057748980820178986, + -0.03136986866593361, + -0.09604236483573914, + -0.056817177683115005, + -0.03962608426809311, + 0.008964533917605877, + 0.015455910935997963, + 0.0953732579946518, + 0.011455888859927654, + -0.08635397255420685, + -0.025236526504158974, + 0.006566082593053579, + 0.02362186647951603, + -0.034729160368442535, + 0.07101699709892273, + 0.03957931324839592, + -2.6459114180582558e-33, + 0.07406003773212433, + 0.041836872696876526, + 0.005705715157091618, + 0.07621455192565918, + -0.07156301289796829, + -0.023233138024806976, + -0.01217249408364296, + -0.04519586265087128, + -0.04075983539223671, + -0.0156636293977499, + 0.033527664840221405, + 0.06748779118061066, + 0.011062226258218288, + 0.05733887478709221, + 0.06824882328510284, + 0.021875692531466484, + 0.12154648452997208, + 0.04154427722096443, + -0.050504252314567566, + 0.09596420079469681, + -0.045258890837430954, + 0.03922753781080246, + 0.04345162957906723, + -0.05760887637734413, + -0.02111731842160225, + -0.03982246294617653, + 0.0031999005004763603, + -0.044981420040130615, + -0.04786927253007889, + 0.018257003277540207, + 0.08316882699728012, + -0.02565082721412182, + -0.01704368367791176, + 0.009206163696944714, + 0.01897536776959896, + -0.01883780024945736, + -0.007849439047276974, + -0.055525362491607666, + -0.000880326668266207, + -0.016506461426615715, + -0.07123082131147385, + -0.01817614585161209, + -0.04417213052511215, + 0.04242861270904541, + 0.07490670680999756, + 0.09034361690282822, + -0.02920302376151085, + -0.054573167115449905, + 0.05165570229291916, + 0.054663561284542084, + -0.07281355559825897, + -0.019500747323036194, + -0.04612087085843086, + -0.05334903672337532, + 0.08594566583633423, + 0.07799699902534485, + 0.02633012644946575, + 0.05190339311957359, + -0.015772871673107147, + -0.004177993629127741, + 0.02018303982913494, + -0.023693766444921494, + 0.047991834580898285, + -0.030764499679207802, + 0.06085974723100662, + 0.03289082646369934, + -0.05232149362564087, + -0.03786034882068634, + 0.007298053242266178, + -0.04656634479761124, + -0.023111490532755852, + 0.05139584094285965, + 0.05207495763897896, + 0.1454947143793106, + 0.02831324376165867, + 0.05684352666139603, + 0.0474877655506134, + -0.04724270850419998, + 0.0057142446748912334, + 0.04312586784362793, + -0.1534794270992279, + 0.031299468129873276, + -0.0278057511895895, + -0.040497150272130966, + -0.015992892906069756, + -0.027851415798068047, + 0.05427006632089615, + -0.041653767228126526, + 0.07659120857715607, + 0.008485016413033009, + -0.09947909414768219, + -0.018775342032313347, + 0.012408766895532608, + -0.0403125137090683, + -0.14735624194145203, + -4.256729358364883e-35, + -0.06622230261564255, + -0.03642679378390312, + -0.08346419781446457, + 0.01949101872742176, + -0.06778398156166077, + -0.04446651414036751, + -0.044505149126052856, + 0.0858212262392044, + 0.0026960058603435755, + 0.05457617715001106, + 0.01841222122311592, + -0.045022040605545044, + 0.032435834407806396, + -0.032545581459999084, + 0.03743334859609604, + -0.027974674478173256, + 0.04787694662809372, + 0.010304867289960384, + -0.0370185449719429, + 0.10344580560922623, + 0.010118518024682999, + -0.11552295088768005, + -0.09092821925878525, + 0.017003793269395828, + -0.04571790620684624, + 0.04077858105301857, + 0.02647358737885952, + -0.05698474869132042, + -0.0621902160346508, + 0.06859302520751953, + -0.08371180295944214, + -0.023129763081669807, + 0.0005190244410187006, + 0.04755410552024841, + -0.1323610246181488, + 0.021759850904345512, + -0.0005649679806083441, + -0.09385133534669876, + -0.030034255236387253, + -0.016241509467363358, + -0.048212457448244095, + 0.049963872879743576, + 0.04298075661063194, + 0.010402189567685127, + -0.06473330408334732, + -0.06608864665031433, + -0.07860836386680603, + 0.053787123411893845, + -0.07079436630010605, + 0.012443983927369118, + 0.02857160195708275, + 0.03434121236205101, + 0.0073955780826509, + -0.030925996601581573, + 0.020321540534496307, + -0.0336594432592392, + -0.05585898831486702, + 0.011120636947453022, + -0.001185583882033825, + -0.02959267795085907, + -0.02310914173722267, + -0.01263788528740406, + -0.023520125076174736, + 0.05266543850302696, + -0.02124313823878765, + -0.10849708318710327, + 0.014071639627218246, + 0.039671070873737335, + 0.030735980719327927, + -0.016972463577985764, + 0.02390025369822979, + 0.008728516288101673, + -0.07551993429660797, + -0.002264301525428891, + 0.055855028331279755, + 0.031196855008602142, + 0.056205980479717255, + 0.01773284561932087, + -0.045695919543504715, + 0.003980389330536127, + 0.01638217642903328, + 0.030739163979887962, + -0.011424586176872253, + 0.046670008450746536, + 0.03323020040988922, + 0.023184388875961304, + -0.025855226442217827, + 0.006656471639871597, + 0.0044443947263062, + 0.0009280515951104462, + -0.039158888161182404, + 0.03821321204304695, + -0.10868413001298904, + 0.03638772666454315, + -0.02422287128865719, + -2.879601623817507e-08, + 0.004294235724955797, + 0.01712094619870186, + -0.014074624516069889, + 0.05400604382157326, + -0.022707004100084305, + -0.07985381036996841, + 0.05176752433180809, + -0.05032194033265114, + -0.07028289884328842, + -0.004414582625031471, + -0.005141258705407381, + 0.011154786683619022, + -0.05876999720931053, + -0.043440237641334534, + 0.04448922723531723, + -0.03076833114027977, + -0.06361830979585648, + 0.11260588467121124, + 0.03328666836023331, + 0.07380937039852142, + 0.010110035538673401, + 0.08297819644212723, + 0.024140024557709694, + -0.0811043307185173, + 0.02671288512647152, + 0.03142882138490677, + -0.03447623550891876, + -0.0026805608067661524, + -0.019356394186615944, + -0.12512259185314178, + 0.03423977270722389, + 0.00821738876402378, + -0.01701594702899456, + 0.03523188829421997, + -0.11387446522712708, + -0.02715139277279377, + -0.026558995246887207, + 0.01996525563299656, + -0.03704207390546799, + 0.07119257748126984, + 0.04903522506356239, + 0.02748948521912098, + -0.013456214219331741, + 0.0026327427476644516, + 0.04665681719779968, + 0.030508557334542274, + 0.04391460865736008, + 0.010424003005027771, + -0.06171765178442001, + -0.0867425799369812, + -0.13882604241371155, + 0.010384582914412022, + 0.013600101694464684, + 0.014918424189090729, + 0.07155245542526245, + 0.010336052626371384, + 0.04305567592382431, + 0.02120252326130867, + 0.008064322173595428, + 0.10656197369098663, + 0.04073804244399071, + -0.04000091925263405, + -0.05207919329404831, + -0.022937972098588943 + ], + "globe-hemisphere-east-bold||world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography,europe,africa,asia,australia": [ + 0.10502456873655319, + 0.028286701068282127, + 0.057316914200782776, + -0.06557014584541321, + -0.0075232540257275105, + -0.038944944739341736, + -0.03689673915505409, + -0.0003799443074967712, + 0.044346533715724945, + 0.031051412224769592, + 0.001377164968289435, + -0.03603154793381691, + -0.008599036373198032, + 0.0640372633934021, + 0.010376114398241043, + -0.08591495454311371, + -0.05920042097568512, + -0.04211967810988426, + -0.044893957674503326, + -0.04199296608567238, + 0.02378375455737114, + 0.02756773866713047, + 0.056302670389413834, + 0.11299955099821091, + 0.01001111138612032, + 0.07774791866540909, + 0.07573976367712021, + -0.005098070949316025, + -0.030263571068644524, + 0.03686295822262764, + -0.03529803082346916, + 0.0441385880112648, + 0.04273810237646103, + 0.011875087395310402, + -0.0004352698742877692, + -0.015897387638688087, + -0.031576968729496, + -0.03148761764168739, + 0.09702271968126297, + 0.02671169862151146, + 0.023802045732736588, + -0.023121193051338196, + 0.04997163638472557, + -0.00031163025414571166, + -0.03106324002146721, + 0.020221518352627754, + -0.04397755488753319, + 0.08301785588264465, + -0.047280073165893555, + 0.043309539556503296, + 0.042070526629686356, + -0.04346209764480591, + -0.1271461397409439, + -0.03290952742099762, + 0.0029835973400622606, + 0.052243951708078384, + 0.03076096624135971, + -0.03704242408275604, + 0.02440437115728855, + 0.033022113144397736, + -0.03565940260887146, + -0.04366728663444519, + 0.010342561639845371, + 0.065435029566288, + 0.06418059766292572, + -0.014681410044431686, + -0.017334256321191788, + 0.039525073021650314, + -0.102937251329422, + -0.020315615460276604, + -0.008367042057216167, + -0.03510906547307968, + -0.017544390633702278, + -0.014269496314227581, + 0.026629071682691574, + -0.00594537565484643, + -0.027004260569810867, + 0.011380389332771301, + -0.05691168084740639, + -0.028248442336916924, + 0.11625239253044128, + 0.08362551033496857, + 0.04412246495485306, + 0.02507663145661354, + 0.027567902579903603, + -0.04631395637989044, + -0.04664133861660957, + -0.02661013975739479, + -0.014462941326200962, + -0.08389279991388321, + -0.046584274619817734, + -0.09364443272352219, + 0.05221101641654968, + 0.03860754147171974, + -0.026196610182523727, + 0.03663652390241623, + -0.02473769709467888, + -0.03147962689399719, + -0.04017706215381622, + -0.009228779003024101, + 0.09011328220367432, + -0.045341506600379944, + 0.03808804973959923, + 0.0045874291099607944, + -0.018451230600476265, + -0.012439105659723282, + -0.012110535986721516, + 0.0008472849149256945, + 0.0055520967580378056, + -0.07799169421195984, + -0.12702888250350952, + -0.0398586243391037, + -0.018169932067394257, + -0.050180766731500626, + -0.025204617530107498, + -0.023378945887088776, + 0.04008257016539574, + 0.07435136288404465, + 0.032516930252313614, + -0.014726107940077782, + -0.09919292479753494, + -0.03811773657798767, + 0.03154253587126732, + 0.03753845393657684, + -0.013695372268557549, + 0.031222904101014137, + 0.004833276849240065, + -3.924316993217173e-33, + 0.0863552987575531, + -0.007607920560985804, + 0.0564858503639698, + 0.0897144004702568, + -0.06923813372850418, + -0.04094085469841957, + 0.007581616751849651, + -0.008951219730079174, + 0.006182936951518059, + -0.032821085304021835, + 0.0214576106518507, + 0.05851590260863304, + 0.014690614305436611, + 0.04134300351142883, + 0.014530654065310955, + 0.03425229713320732, + 0.09719530493021011, + 0.06675868481397629, + -0.07417791336774826, + 0.07415855675935745, + -0.029628008604049683, + 0.0171109139919281, + 0.06484363973140717, + -0.05649767816066742, + -0.04117733612656593, + -0.044633518904447556, + -0.00562400883063674, + -0.08325523883104324, + -0.035765640437603, + 0.01241312175989151, + 0.06116412580013275, + -0.036778755486011505, + -0.023465994745492935, + 0.012189457193017006, + -0.006158316042274237, + 0.012394650839269161, + 0.0666186660528183, + -0.02616744302213192, + -0.010935802012681961, + -0.02418532781302929, + -0.05646519362926483, + -0.006358940154314041, + -0.0293178241699934, + 0.014865095727145672, + 0.05574197322130203, + 0.030643343925476074, + -0.013095682486891747, + -0.037506554275751114, + 0.04768126830458641, + 0.08757638931274414, + -0.0775514468550682, + -0.04422838240861893, + -0.001521349768154323, + -0.06710492819547653, + 0.08157391101121902, + 0.07650250941514969, + 0.0022586416453123093, + 0.06372668594121933, + -0.004513458348810673, + 0.00046454183757305145, + 0.052390094846487045, + -0.017982399091124535, + -0.007752976380288601, + -0.03612939268350601, + 0.05510169267654419, + 0.02392411418259144, + -0.00829063169658184, + -0.06805474311113358, + -0.010028219781816006, + -0.0367145761847496, + 0.011126327328383923, + 0.026824740692973137, + 0.054011985659599304, + 0.15695542097091675, + 0.035350438207387924, + 0.06574153900146484, + 0.05667104572057724, + -0.0038631735369563103, + 0.0012784542050212622, + 0.04737737774848938, + -0.10808571428060532, + 0.04957874119281769, + -0.0574110746383667, + -0.06364970654249191, + -0.006428468506783247, + -0.046136222779750824, + 0.033774614334106445, + -0.008693710900843143, + 0.09971501678228378, + -0.016238806769251823, + -0.07756974548101425, + -0.02846970595419407, + 0.06312046945095062, + -0.015999501571059227, + -0.13019724190235138, + -6.680986427745782e-35, + -0.05928291007876396, + -0.04716600850224495, + -0.11082194745540619, + 6.693418072245549e-06, + -0.03099057450890541, + -0.036892812699079514, + -0.03784501180052757, + 0.1219387874007225, + -0.046075135469436646, + 0.02085765078663826, + 0.017638985067605972, + -0.00756797194480896, + 0.07211416959762573, + -0.007760572712868452, + 0.0568796806037426, + -0.04812544956803322, + 0.04880712553858757, + 0.03068106435239315, + -0.010631708428263664, + 0.07358314096927643, + 0.029893506318330765, + -0.11748294532299042, + -0.058984674513339996, + 0.014572307467460632, + -0.03430479019880295, + 0.03193085640668869, + 0.009576836600899696, + -0.02079632133245468, + -0.04357265308499336, + 0.06336215138435364, + -0.11832746863365173, + 0.025305917486548424, + -0.0023995095398277044, + 0.0239266324788332, + -0.15791435539722443, + 0.006283596158027649, + -0.0521211214363575, + -0.08928146958351135, + -0.053587328642606735, + 0.00185119709931314, + -0.08801713585853577, + 0.06477373093366623, + 0.07558360695838928, + 0.027320632711052895, + -0.04435962811112404, + -0.10021064430475235, + -0.05950549244880676, + 0.05629430711269379, + -0.0239114910364151, + 0.06551908701658249, + -0.01613340899348259, + 0.020838866010308266, + -0.0007160803070291877, + -0.017184428870677948, + -0.004381622653454542, + -0.01594788208603859, + -0.07411623001098633, + 0.02419999986886978, + -0.004010892007499933, + -0.02783084288239479, + -0.038408104330301285, + 0.04316217452287674, + -0.009318044409155846, + 0.01356036402285099, + -0.021010225638747215, + -0.08436489850282669, + 0.03541426360607147, + 0.007803503889590502, + 0.05482855066657066, + 0.00397736020386219, + -0.013109489344060421, + 0.023816414177417755, + -0.0874364897608757, + -0.022517947480082512, + 0.1014571338891983, + 0.08216739445924759, + 0.030004121363162994, + -0.036003708839416504, + -0.046337295323610306, + -0.00619782879948616, + -0.05650784447789192, + -0.0027007623575627804, + -0.020184269174933434, + 0.09236331284046173, + 0.01277876365929842, + 0.008305688388645649, + -0.04386189579963684, + -0.03243182599544525, + -0.006595688406378031, + -0.00609851349145174, + -0.014597195200622082, + -0.015414337627589703, + -0.08683385699987411, + 0.04418469965457916, + -0.014398735016584396, + -2.9329051187687583e-08, + 0.026720579713582993, + 0.03419880568981171, + -0.007031209301203489, + 0.0712730810046196, + -0.0976707711815834, + -0.03295004367828369, + 0.051521044224500656, + -0.04731430485844612, + -0.012275611981749535, + -0.0010668212780728936, + 0.001181055442430079, + -0.015158426016569138, + -0.007893012836575508, + -0.04799241945147514, + 0.00044691929360851645, + -0.043158795684576035, + -0.07702086120843887, + 0.12384811043739319, + 0.03720185533165932, + 0.02454969473183155, + -0.01512693241238594, + 0.049191318452358246, + 0.06458961218595505, + -0.0615428201854229, + 0.04088529199361801, + 0.011145256459712982, + -0.015987776219844818, + -0.027081497013568878, + -0.05694740265607834, + -0.11615446209907532, + 0.017379965633153915, + 0.01662031188607216, + -0.023288637399673462, + 0.005850910674780607, + -0.11268874257802963, + -0.06076931208372116, + -0.02784333936870098, + 0.06349066644906998, + -0.07482846081256866, + 0.021933147683739662, + 0.05237581953406334, + -0.00546024227514863, + -0.014619147405028343, + 0.0008628179202787578, + 0.0512220598757267, + 0.009320808574557304, + 0.10380170494318008, + 0.054163169115781784, + -0.08157574385404587, + -0.07559920102357864, + -0.12558947503566742, + 0.04462523013353348, + -0.002603459171950817, + -0.02803778648376465, + 0.05719682574272156, + 0.06875134259462357, + 0.05501825734972954, + -0.04068482294678688, + 0.052093543112277985, + 0.07287045568227768, + 0.020479803904891014, + -0.022895680740475655, + -0.072391577064991, + -0.03798751160502434 + ], + "globe-hemisphere-west-bold||world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography,north america,south america": [ + 0.13522520661354065, + -0.017147088423371315, + 0.01967756077647209, + -0.07346754521131516, + 0.01839802972972393, + -0.052148982882499695, + -0.0282190702855587, + 0.00816372036933899, + 0.04437137767672539, + 0.025933293625712395, + 0.000548927637282759, + -0.011618548072874546, + 0.006323023699223995, + 0.050151608884334564, + 0.0008029958116821945, + -0.06082721799612045, + -0.053200289607048035, + -0.036150410771369934, + -0.010757137089967728, + -0.021328499540686607, + 0.037628576159477234, + 0.019779015332460403, + 0.04969416558742523, + 0.13749857246875763, + 0.01829781010746956, + 0.0645880177617073, + 0.06660614907741547, + -0.012988688424229622, + -0.05191534385085106, + 0.03383280709385872, + -0.044964857399463654, + 0.03637556731700897, + 0.06199900433421135, + 0.028393110260367393, + -0.03975934162735939, + -0.029292983934283257, + -0.02000044472515583, + -0.021419653668999672, + 0.07341258972883224, + 0.03405828773975372, + -0.014939462766051292, + -0.030357809737324715, + 0.05786563456058502, + 0.02135344408452511, + -0.044995326548814774, + -0.0005447472212836146, + -0.06743403524160385, + 0.1083417758345604, + -0.03111930377781391, + 0.05399342626333237, + 0.05444134399294853, + -0.05791487544775009, + -0.14359013736248016, + -0.012885358184576035, + -0.02416728436946869, + 0.07872911542654037, + 0.030482156202197075, + -0.025308439508080482, + 0.04099772498011589, + 0.07866910099983215, + -0.0538688600063324, + -0.03477249667048454, + 0.007498373277485371, + 0.06429951637983322, + 0.08156808465719223, + -0.014308804646134377, + -0.01888866350054741, + 0.04466622322797775, + -0.09869742393493652, + -0.038700170814991, + 0.024986466392874718, + -0.014746434055268764, + -0.022911978885531425, + -0.01071692444384098, + 0.006170999724417925, + 0.004932049196213484, + -0.051494114100933075, + 0.03527107089757919, + -0.048259202390909195, + -0.023364171385765076, + 0.11004184931516647, + 0.08666308224201202, + 0.06361814588308334, + 0.026902247220277786, + 0.02450878545641899, + -0.027843672782182693, + -0.07250086218118668, + -0.017659423872828484, + -0.008024467155337334, + -0.08677872270345688, + -0.05605245381593704, + -0.08030175417661667, + 0.025904830545186996, + 0.053832199424505234, + -0.03633281961083412, + 0.057976752519607544, + -0.015051829628646374, + -0.027409708127379417, + -0.040620990097522736, + -0.018965857103466988, + 0.09389371424913406, + -0.04372423142194748, + 0.05857251584529877, + -0.019255055114626884, + -0.01618487946689129, + -0.026377350091934204, + -0.005559980403631926, + -0.009901979006826878, + -0.007532298099249601, + -0.08201651275157928, + -0.11770066618919373, + -0.016685059294104576, + -0.004188545513898134, + -0.03879699110984802, + -0.029768412932753563, + -0.03483567386865616, + 0.04981385916471481, + 0.06185869127511978, + 0.015378722921013832, + -0.03613133355975151, + -0.10194476693868637, + -0.015091095119714737, + 0.022287216037511826, + 0.01629852131009102, + -0.002087970497086644, + 0.006785370409488678, + 0.049056705087423325, + -2.9728748043974904e-33, + 0.09491082280874252, + 0.0008319840999320149, + 0.035315051674842834, + 0.09099212288856506, + -0.054015446454286575, + -0.02634873241186142, + 0.01960652507841587, + -0.008412028662860394, + 0.008167821913957596, + -0.004726774990558624, + 0.024150794371962547, + 0.03513398766517639, + 0.004369026515632868, + 0.044746868312358856, + 0.025942087173461914, + 0.03851590305566788, + 0.08827842026948929, + 0.05025065690279007, + -0.07494612038135529, + 0.05314798653125763, + -0.03370514139533043, + 0.04835398495197296, + 0.05924554914236069, + -0.05639322102069855, + -0.03953070193529129, + -0.05149264261126518, + -0.044286489486694336, + -0.08316810429096222, + -0.04547428712248802, + 0.020216669887304306, + 0.05131075903773308, + -0.011592928320169449, + 0.01621476747095585, + 0.01529958937317133, + 0.025322647765278816, + -0.0028252401389181614, + 0.05593707039952278, + -0.02106168307363987, + -0.018217267468571663, + -0.027464987710118294, + -0.05354481562972069, + 0.012643581256270409, + -0.03578965738415718, + 0.038138773292303085, + 0.05854571983218193, + 0.007621352560818195, + 0.008317681960761547, + 0.0022312866058200598, + 0.03352857008576393, + 0.06455667316913605, + -0.08478157967329025, + -0.04835725575685501, + 0.0025355953257530928, + -0.08788122981786728, + 0.07988583296537399, + 0.07562917470932007, + 0.014063914306461811, + 0.06736292690038681, + -0.004349731840193272, + 0.011720745824277401, + 0.04308071359992027, + -0.018081866204738617, + 0.008765751495957375, + -0.03712569549679756, + 0.04124366119503975, + 0.013461756519973278, + -0.026035280898213387, + -0.0493563748896122, + 0.015663810074329376, + -0.03121398761868477, + 0.02189422771334648, + 0.011119795963168144, + 0.053287919610738754, + 0.14923258125782013, + 0.04880376532673836, + 0.06469810009002686, + 0.07792104780673981, + -0.006956721656024456, + 0.0004296031256671995, + 0.03949553892016411, + -0.1300167739391327, + 0.06735876947641373, + -0.030403845012187958, + -0.03783586621284485, + 0.002061612205579877, + -0.03541277348995209, + 0.04576040059328079, + -0.01964431442320347, + 0.07677631825208664, + -0.0073621547780931, + -0.0913241058588028, + -0.022547798231244087, + 0.05341879278421402, + -0.03392621874809265, + -0.10135903209447861, + -5.92722409333251e-34, + -0.08759426325559616, + -0.05740784481167793, + -0.08861344307661057, + 0.004545949399471283, + -0.03332788869738579, + -0.05214131623506546, + -0.05360490456223488, + 0.12587793171405792, + -0.027434123679995537, + -0.01422420796006918, + 0.02237568236887455, + -0.03399788215756416, + 0.05228926241397858, + 0.012006415985524654, + 0.05143510177731514, + -0.03847910091280937, + 0.03899935260415077, + 0.0175300482660532, + -0.04479366913437843, + 0.08963826298713684, + 0.002564584370702505, + -0.09408996999263763, + -0.047930989414453506, + 0.001139380387030542, + -0.01909811981022358, + 0.009879188612103462, + 0.01818982884287834, + -0.012929422780871391, + -0.03225984424352646, + 0.06903385370969772, + -0.0948382318019867, + 0.00927701685577631, + 0.02579433098435402, + 0.029177086427807808, + -0.16747787594795227, + 0.014272327534854412, + -0.046794209629297256, + -0.07848527282476425, + -0.03396603837609291, + -0.012891529127955437, + -0.06304210424423218, + 0.05707719549536705, + 0.08130766451358795, + 0.006305828224867582, + -0.04304783418774605, + -0.10028614103794098, + -0.05076533183455467, + 0.020437687635421753, + -0.0444473922252655, + 0.055671241134405136, + -0.011846771463751793, + -0.015338942408561707, + -0.003400166053324938, + -0.0039480398409068584, + 0.012591138482093811, + -0.048773784190416336, + -0.07756658643484116, + 0.027767635881900787, + -0.0016199476085603237, + -0.03532504290342331, + -0.05779048427939415, + 0.04347475990653038, + -0.015222325921058655, + 0.02580387331545353, + -0.01046756748110056, + -0.08101027458906174, + 0.021512512117624283, + 0.007468962576240301, + 0.07555759698152542, + -0.001928852521814406, + 0.000930792826693505, + 0.05327675864100456, + -0.09332346171140671, + -0.02910955622792244, + 0.08237062394618988, + 0.055849283933639526, + 0.0057559809647500515, + -0.024667907506227493, + -0.05587340146303177, + 0.00042696218588389456, + -0.045853450894355774, + 0.0010092273587360978, + -0.008452578447759151, + 0.07243432104587555, + 0.019845739006996155, + 0.00724070705473423, + -0.05866413190960884, + -0.027103396132588387, + -0.01700781099498272, + 0.029909741133451462, + -0.008415023796260357, + 0.0024329808074980974, + -0.09569137543439865, + 0.019868070259690285, + -0.023754337802529335, + -2.8585676048464848e-08, + 0.03633633628487587, + 0.04264746233820915, + -0.01759926602244377, + 0.06205948814749718, + -0.07700667530298233, + -0.03884080797433853, + 0.03811343014240265, + -0.048553477972745895, + -0.035394322127103806, + 0.00633535860106349, + -0.01018289104104042, + -0.03191006928682327, + -0.00027524243341758847, + -0.07975718379020691, + -0.009670838713645935, + -0.05609738081693649, + -0.0671473890542984, + 0.14336076378822327, + 0.027650509029626846, + 0.014196052215993404, + 0.001925711170770228, + 0.06542462855577469, + 0.06741015613079071, + -0.04097362607717514, + 0.056111786514520645, + 0.01843612641096115, + -0.0391218401491642, + -0.030747175216674805, + -0.038468703627586365, + -0.11951398104429245, + 0.04708017036318779, + 0.012083232402801514, + -0.024107251316308975, + -0.012833641842007637, + -0.11101844161748886, + -0.06778167188167572, + -0.04978042095899582, + 0.059552911669015884, + -0.06653211265802383, + 0.021726133301854134, + 0.05987674742937088, + 0.0044460054486989975, + -0.03482862934470177, + 0.0026872509624809027, + 0.03810732066631317, + -0.00034445393248461187, + 0.08804763108491898, + 0.061141256242990494, + -0.0685330256819725, + -0.04268088564276695, + -0.1264781653881073, + 0.0035367757081985474, + 0.003432665951550007, + -0.031411170959472656, + 0.10200951993465424, + 0.06832984834909439, + 0.08022669702768326, + -0.03943024203181267, + 0.03610561043024063, + 0.056076642125844955, + -0.008173548616468906, + -0.011427205987274647, + -0.056126918643713, + -0.05668488144874573 + ], + "globe-simple-bold||world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography": [ + 0.07799744606018066, + 0.005483964458107948, + 0.027366358786821365, + -0.013085735961794853, + 0.03956224024295807, + -0.08961491286754608, + 0.013753722421824932, + 0.010600194334983826, + 0.028759125620126724, + 0.004700219724327326, + 0.0022192199248820543, + -0.03112650103867054, + -0.018076319247484207, + 0.04869795963168144, + -0.00028628690051846206, + -0.08208011835813522, + -0.07280410081148148, + 0.0061201308853924274, + -0.03912436217069626, + -0.04049378260970116, + 0.053555648773908615, + 0.045679688453674316, + 0.0746455118060112, + 0.10690664499998093, + 0.017574939876794815, + 0.05660232901573181, + 0.07852204889059067, + -0.008208222687244415, + 0.010281359776854515, + 0.005389798432588577, + -0.03732442110776901, + 0.05229530483484268, + 0.08921253681182861, + 0.021823812276124954, + -0.004804760683327913, + 0.023235663771629333, + -0.04790938273072243, + 0.003985731862485409, + 0.058121055364608765, + 0.05724724382162094, + -0.002329788636416197, + -0.08812499791383743, + 0.08329722285270691, + 0.01429271511733532, + -0.025129511952400208, + 0.011874967254698277, + -0.08786875009536743, + 0.0675337016582489, + -0.05363309010863304, + 0.028420358896255493, + -0.007942677475512028, + -0.10498619824647903, + -0.15619239211082458, + -0.04316264018416405, + 0.03006897307932377, + 0.013065190054476261, + 0.0017600238788872957, + -0.02997772768139839, + 0.04276435077190399, + 0.011212209239602089, + -0.010335211642086506, + -0.04566435143351555, + 0.042025841772556305, + 0.09789440035820007, + 0.06937988847494125, + 0.016018422320485115, + 0.024142010137438774, + 0.05650150030851364, + -0.08100728690624237, + -0.008671367540955544, + 0.013295142911374569, + -0.015813205391168594, + -0.012033486738801003, + 0.019704129546880722, + -0.02826213464140892, + -0.03788987174630165, + -0.056948527693748474, + 0.026667218655347824, + -0.07183007895946503, + 0.000178847141796723, + 0.049733374267816544, + 0.043501175940036774, + 0.016063248738646507, + 0.043737515807151794, + 0.02236994542181492, + -0.012973034754395485, + -0.052599187940359116, + -0.05647032707929611, + -0.007307472173124552, + -0.056894876062870026, + -0.04555307328701019, + -0.059895340353250504, + 0.059301313012838364, + 0.07269201427698135, + -0.06907276809215546, + 0.0495821051299572, + 0.041902001947164536, + -0.05767308548092842, + -0.05346433073282242, + 0.03324170783162117, + 0.0863267332315445, + 0.010346926748752594, + 0.07636717706918716, + 0.034542717039585114, + -0.050031911581754684, + -0.05659039691090584, + -0.025890862569212914, + -0.04267795756459236, + -0.0005936493980698287, + -0.05098225548863411, + -0.11171736568212509, + -0.05811526998877525, + -0.03089192323386669, + -0.07943591475486755, + -0.055839113891124725, + -0.031625356525182724, + 0.01166460569947958, + 0.007851696573197842, + 0.07725299894809723, + 0.030552705749869347, + -0.08024661988019943, + -0.022241435945034027, + 0.005018347874283791, + 0.031223023310303688, + -0.040991876274347305, + 0.07348942011594772, + 0.048266392201185226, + -3.123951909759063e-33, + 0.08465576171875, + 0.04973340779542923, + 0.014718322083353996, + 0.08195613324642181, + -0.07833169400691986, + -0.02978607825934887, + -0.018332017585635185, + -0.03676591068506241, + -0.022534707561135292, + -0.005363259464502335, + 0.039242882281541824, + 0.051882728934288025, + 0.017711326479911804, + 0.06814458966255188, + 0.0600704550743103, + 0.03490101173520088, + 0.12248074263334274, + 0.03746480494737625, + -0.05946037918329239, + 0.08360640704631805, + -0.0365360863506794, + 0.06694041192531586, + 0.03897273913025856, + -0.07079509645700455, + -0.023547934368252754, + -0.028044233098626137, + 0.01246192492544651, + -0.04772746190428734, + -0.058838143944740295, + 0.01415687520056963, + 0.08853022009134293, + -0.026363473385572433, + -0.008429043926298618, + 0.020842192694544792, + 0.02033798024058342, + -0.0163474902510643, + 0.012521942146122456, + -0.046208687126636505, + -0.0035090965684503317, + -0.02978464402258396, + -0.07656731456518173, + -0.0148862199857831, + -0.02562243863940239, + 0.030338149517774582, + 0.09294458478689194, + 0.09906080365180969, + -0.02295590378344059, + -0.049066442996263504, + 0.03583298996090889, + 0.0542403981089592, + -0.07922050356864929, + -0.013017496094107628, + -0.04399164766073227, + -0.052135203033685684, + 0.10034261643886566, + 0.06957343965768814, + 0.01876312866806984, + 0.06703465431928635, + -0.030541682615876198, + -0.0028733075596392155, + 0.019000472500920296, + -0.007152252364903688, + 0.04035625234246254, + -0.00972369872033596, + 0.05607888847589493, + 0.044782791286706924, + -0.06640199571847916, + -0.04028041660785675, + 0.017314011231064796, + -0.04199359193444252, + -0.020821647718548775, + 0.0523533970117569, + 0.048354681581258774, + 0.13382963836193085, + 0.05074724555015564, + 0.05011191964149475, + 0.0752391368150711, + -0.059991125017404556, + 0.0009748699376359582, + 0.04544771835207939, + -0.15467776358127594, + 0.04219282791018486, + -0.04347395896911621, + -0.025026634335517883, + -0.034636273980140686, + -0.029861750081181526, + 0.05397079512476921, + -0.03067023493349552, + 0.06504328548908234, + 0.00917908363044262, + -0.09218326210975647, + -0.02456550858914852, + 0.014768093824386597, + -0.04729797691106796, + -0.14404010772705078, + 2.369438223233975e-34, + -0.06533797830343246, + -0.036186132580041885, + -0.08873345702886581, + 0.009210295043885708, + -0.059776268899440765, + -0.03413483127951622, + -0.04492202773690224, + 0.08245198428630829, + -0.0006982382037676871, + 0.05390100181102753, + 0.01873737759888172, + -0.044259753078222275, + 0.034166235476732254, + -0.021715575829148293, + 0.04258411005139351, + -0.020471330732107162, + 0.03926199674606323, + 0.030253270640969276, + -0.016694102436304092, + 0.1040775403380394, + 0.016356144100427628, + -0.09938527643680573, + -0.08888173848390579, + 9.804316505324095e-05, + -0.04632214456796646, + 0.04675566032528877, + 0.005338607355952263, + -0.05232948437333107, + -0.06403370946645737, + 0.07484344393014908, + -0.08904751390218735, + -0.019572921097278595, + -0.005693398881703615, + 0.0370413139462471, + -0.1324208676815033, + 0.01097138412296772, + -0.026300139725208282, + -0.10598918050527573, + -0.040171679109334946, + -0.017261400818824768, + -0.06464467197656631, + 0.04065761715173721, + 0.05833509564399719, + 0.008777562528848648, + -0.04931914433836937, + -0.07581119239330292, + -0.047383129596710205, + 0.025467732921242714, + -0.0788339227437973, + -0.0021874187514185905, + 0.010214142501354218, + 0.025828028097748756, + 0.008050411008298397, + -0.019558226689696312, + 0.02302919328212738, + -0.023829802870750427, + -0.04274803027510643, + 0.019833654165267944, + 0.0011730396654456854, + -0.02898941934108734, + -0.020104562863707542, + 0.006482954137027264, + -0.03166212886571884, + 0.0389314703643322, + -0.02649104595184326, + -0.09997594356536865, + 0.009399817325174809, + 0.034232351928949356, + 0.030820850282907486, + -0.01756664179265499, + 0.0036778138019144535, + 0.02240772917866707, + -0.06948328018188477, + -0.01828869618475437, + 0.05608537420630455, + 0.03588052839040756, + 0.04663894325494766, + -0.008963502943515778, + -0.04410693421959877, + -0.014816642738878727, + 0.0283059012144804, + 0.02530374936759472, + -0.02063201181590557, + 0.038338616490364075, + 0.038980916142463684, + 0.013916058465838432, + -0.033248309046030045, + -0.002199735725298524, + 0.005568972788751125, + 0.021823767572641373, + -0.042669083923101425, + 0.04933014139533043, + -0.08908171951770782, + 0.0378723181784153, + -0.031089775264263153, + -2.8259755424642208e-08, + 0.006753271911293268, + 0.012552307918667793, + -0.016184544190764427, + 0.04337907209992409, + -0.025926535949110985, + -0.07624822109937668, + 0.042273472994565964, + -0.052988938987255096, + -0.07476533204317093, + 0.015666062012314796, + -0.008553358726203442, + 0.00971356499940157, + -0.04810382053256035, + -0.025909677147865295, + 0.02026624232530594, + -0.015752971172332764, + -0.05888800323009491, + 0.12176413834095001, + 0.029765808954834938, + 0.08043541759252548, + 0.013577157631516457, + 0.07257741689682007, + 0.022994188591837883, + -0.08931490033864975, + 0.014684422872960567, + 0.029992150142788887, + -0.0223255455493927, + 0.006219583097845316, + -0.01327091921120882, + -0.12091890722513199, + 0.03928990289568901, + 0.011115286499261856, + -0.023890607059001923, + 0.04674045741558075, + -0.12781868875026703, + -0.032376978546381, + -0.027387702837586403, + 0.021681154146790504, + -0.03906162455677986, + 0.05132979154586792, + 0.04081737622618675, + 0.030585918575525284, + -0.023188067600131035, + 0.0032623971346765757, + 0.04318327456712723, + 0.02989354357123375, + 0.052273303270339966, + 0.007159771863371134, + -0.06973763555288315, + -0.08206259459257126, + -0.13664564490318298, + 0.0066641285084187984, + 0.015330429188907146, + 0.014659854583442211, + 0.07348359376192093, + 0.015642553567886353, + 0.044890183955430984, + 0.030382907018065453, + -0.008746913634240627, + 0.1010732427239418, + 0.039168037474155426, + -0.015045377425849438, + -0.059096671640872955, + -0.025766490027308464 + ], + "globe-simple-x-bold||*new*,world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography,internet": [ + 0.07131845504045486, + -0.009747770614922047, + 0.02141455188393593, + -0.03933725133538246, + 0.040357425808906555, + -0.09455578774213791, + 0.025817451998591423, + 0.008804150857031345, + 0.006301628891378641, + 0.02168666012585163, + 0.030831623822450638, + -0.03260800614953041, + -0.004633364267647266, + 0.0365823470056057, + 0.005171152297407389, + -0.07209839671850204, + -0.06751586496829987, + -0.003109234618023038, + -0.03550317883491516, + -0.03672117739915848, + 0.06111354008316994, + 0.03247084468603134, + 0.05071830376982689, + 0.09690354764461517, + 0.035137955099344254, + 0.081364706158638, + 0.043332137167453766, + -0.007828137837350368, + 0.02291383035480976, + -0.004182425327599049, + -0.06065918505191803, + 0.05496695265173912, + 0.11271987110376358, + 0.03169792890548706, + 0.0011940181721001863, + 0.03095526434481144, + -0.04198610410094261, + 0.01571919023990631, + 0.028839150443673134, + 0.05679189786314964, + -0.021868549287319183, + -0.10781113803386688, + 0.07076577842235565, + 0.02581530064344406, + -0.025363652035593987, + 0.011671272106468678, + -0.09465159475803375, + 0.0554194301366806, + -0.03206436708569527, + 0.039077747613191605, + -0.013194156810641289, + -0.10756868124008179, + -0.16410985589027405, + -0.03346126154065132, + 0.06504558771848679, + -0.00043580663623288274, + -0.01240983884781599, + -0.04055577889084816, + 0.025550348684191704, + -0.0116432411596179, + -0.0023887353017926216, + -0.028834477066993713, + 0.04705987125635147, + 0.12316983193159103, + 0.04864140599966049, + 0.015973664820194244, + 0.000845772388856858, + 0.04291759431362152, + -0.05543109029531479, + -0.00532550411298871, + -0.017645634710788727, + 0.0025489875115454197, + -0.029466168954968452, + 0.026646357029676437, + -0.03556482493877411, + -0.05238454043865204, + -0.03282659128308296, + 0.022348882630467415, + -0.07655143737792969, + -0.0010498861083760858, + 0.035104211419820786, + 0.051190245896577835, + 0.013602161779999733, + 0.0502503477036953, + 0.0149818891659379, + -0.0021827297750860453, + -0.056729480624198914, + -0.042126305401325226, + -0.009431270882487297, + -0.047333117574453354, + -0.0616934634745121, + -0.06393670290708542, + 0.06377047300338745, + 0.09282460808753967, + -0.09323274344205856, + 0.05081829056143761, + 0.05988772213459015, + -0.06678415089845657, + -0.03712186589837074, + 0.04685373976826668, + 0.06841857731342316, + 0.009407667443156242, + 0.08320576697587967, + 0.025117916986346245, + -0.062137775123119354, + -0.059382691979408264, + -0.025626691058278084, + -0.02858550101518631, + -0.0029359578620642424, + -0.03956802189350128, + -0.1040322333574295, + -0.0816611722111702, + -0.03449023514986038, + -0.09515873342752457, + -0.043769314885139465, + -0.015562162734568119, + 0.012192627415060997, + 0.016303541138768196, + 0.09068931639194489, + 0.034801408648490906, + -0.05494651198387146, + -0.04188287630677223, + -0.015529733151197433, + 0.02343841642141342, + -0.06131857633590698, + 0.06203397363424301, + 0.030046885833144188, + -2.995038934053237e-33, + 0.07293626666069031, + 0.0702131986618042, + 0.005216424819082022, + 0.0821705162525177, + -0.05651788413524628, + -0.030996182933449745, + -0.021442187950015068, + -0.020342344418168068, + -0.047546278685331345, + 0.02205709181725979, + 0.04296707734465599, + 0.06011278182268143, + 0.005620872136205435, + 0.0525871105492115, + 0.07582702487707138, + 0.02826225385069847, + 0.1250554323196411, + 0.03362395986914635, + -0.04537500441074371, + 0.0693458542227745, + -0.048939768224954605, + 0.08053026348352432, + 0.05025826022028923, + -0.056346770375967026, + -0.02356611005961895, + -0.041444383561611176, + 0.007974822074174881, + -0.0758306011557579, + -0.06089547276496887, + 0.013388541527092457, + 0.07325500249862671, + -0.03641318529844284, + -0.005013057962059975, + 0.04601472616195679, + 0.027681371197104454, + -0.00024683010997250676, + 0.006695413030683994, + -0.057075925171375275, + -0.0035531094763427973, + -0.03208841383457184, + -0.10769812762737274, + -0.009975841268897057, + -0.03885616734623909, + 0.014550820924341679, + 0.08870403468608856, + 0.09043861925601959, + -0.033678509294986725, + -0.05560332164168358, + 0.04641341045498848, + 0.050740115344524384, + -0.0776004046201706, + -0.004020006861537695, + -0.059597790241241455, + -0.028705254197120667, + 0.08778606355190277, + 0.06345103681087494, + 0.010467489250004292, + 0.07655306160449982, + -0.01935138739645481, + -0.01232084445655346, + 0.022635547444224358, + -0.007659646216779947, + 0.04416342452168465, + -0.007218868937343359, + 0.04907042905688286, + 0.039410218596458435, + -0.05330903083086014, + -0.06512489914894104, + 0.008984087035059929, + -0.01182445790618658, + -0.06623668223619461, + 0.04124319925904274, + 0.04429535195231438, + 0.11844149231910706, + 0.05614297464489937, + 0.031630128622055054, + 0.056634120643138885, + -0.0656927078962326, + -0.006158977746963501, + 0.026427755132317543, + -0.12934251129627228, + 0.03571576252579689, + -0.042223770171403885, + 0.00295912753790617, + -0.0457846038043499, + -0.03765425458550453, + 0.059460800141096115, + -0.008078908547759056, + 0.03981563448905945, + -0.025183193385601044, + -0.1222643181681633, + -0.02370380237698555, + -0.01984982192516327, + -0.059756312519311905, + -0.1423218697309494, + -3.766052474584291e-34, + -0.08409702032804489, + -0.04704909399151802, + -0.09597214311361313, + 0.028792360797524452, + -0.08970171213150024, + -0.02755151316523552, + -0.02073642425239086, + 0.07313636690378189, + 0.029243923723697662, + 0.05240514129400253, + 0.027733834460377693, + -0.03736822307109833, + 0.021501904353499413, + -0.019948897883296013, + 0.04736325889825821, + -0.015524647198617458, + 0.02970215678215027, + 0.014050669968128204, + -0.04928601160645485, + 0.1246902272105217, + 0.009020156227052212, + -0.08109456300735474, + -0.10867421329021454, + -0.0036023303400725126, + -0.01905079185962677, + 0.028341278433799744, + 0.02624255046248436, + -0.050046827644109726, + -0.054792020469903946, + 0.04372311010956764, + -0.09699658304452896, + -0.031139513477683067, + -0.00582985719665885, + 0.06738962233066559, + -0.13575613498687744, + 0.005923745688050985, + -0.013069375418126583, + -0.0869688093662262, + -0.045293498784303665, + 0.011184410192072392, + -0.05067995935678482, + 0.02767285332083702, + 0.07411138713359833, + 0.02491782046854496, + -0.044213008135557175, + -0.06494788825511932, + -0.08277367800474167, + 0.02336716465651989, + -0.06838923692703247, + 0.029376206919550896, + 0.03442971035838127, + 0.0021479681599885225, + -0.007651256863027811, + -0.02989439107477665, + 0.03129338473081589, + -0.0020264785271137953, + -0.04637175798416138, + 0.02223694697022438, + -0.003138674655929208, + -0.02130287140607834, + -0.01613682322204113, + -0.028310637921094894, + -0.03499254956841469, + 0.05537434294819832, + -0.03002193011343479, + -0.10306046158075333, + -0.020139779895544052, + 0.019086377695202827, + -0.00012378640531096607, + -0.009899560362100601, + 0.028174515813589096, + 0.016908954828977585, + -0.10564885288476944, + -0.030262883752584457, + 0.019216394051909447, + 0.012423930689692497, + 0.045916974544525146, + 0.002163579221814871, + -0.045152075588703156, + -0.004298266023397446, + 0.03703849017620087, + 0.03591463714838028, + 0.004838895983994007, + 0.04424745589494705, + 0.05125892162322998, + 0.021329181268811226, + -0.009950296953320503, + 0.03598989546298981, + -0.006264882627874613, + 0.000957854965236038, + -0.03563273325562477, + 0.06740210950374603, + -0.08399198204278946, + 0.04443027079105377, + -0.03372415155172348, + -2.9679021906758862e-08, + -0.022177599370479584, + -0.006488751620054245, + -0.028980640694499016, + 0.038676682859659195, + -0.0013883353676646948, + -0.05818723514676094, + 0.03269563615322113, + -0.05701894313097, + -0.05509733036160469, + 0.003444580128416419, + 0.027466338127851486, + 0.009042978286743164, + -0.05317939817905426, + -0.0020688632503151894, + 0.021310485899448395, + -0.0015554287238046527, + -0.0306966882199049, + 0.11248919367790222, + 0.024733547121286392, + 0.06494871526956558, + 0.005702883005142212, + 0.07275203615427017, + 0.022280806675553322, + -0.08294260501861572, + 0.020522259175777435, + 0.010570749640464783, + -0.015715038403868675, + 0.006527299992740154, + 0.005230841226875782, + -0.10374618321657181, + 0.029172083362936974, + 0.017001817002892494, + -0.015708044171333313, + 0.026215169578790665, + -0.11520157009363174, + 0.00034981564385816455, + -0.05266454070806503, + 0.02996019646525383, + -0.021507665514945984, + 0.030283741652965546, + 0.0396445207297802, + 0.046084001660346985, + -0.01704801619052887, + 0.008663182146847248, + 0.04775006324052811, + 0.023755667731165886, + 0.062134530395269394, + -0.005817382130771875, + -0.05767875537276268, + -0.10660885274410248, + -0.10923285782337189, + 0.03193412348628044, + 0.011078555136919022, + -0.019499564543366432, + 0.0714985653758049, + 0.040880680084228516, + 0.038877956569194794, + 0.032039474695920944, + 0.009939577430486679, + 0.09077093005180359, + 0.02750636637210846, + 0.001741057145409286, + -0.04903353005647659, + -0.016986778005957603 + ], + "globe-stand-bold||world,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography": [ + 0.05899091064929962, + 0.034306757152080536, + 0.01243001688271761, + -0.02097991667687893, + 0.049147721379995346, + -0.042793866246938705, + -0.003110261866822839, + 0.036139730364084244, + 0.04992099851369858, + 0.0005726358504034579, + -0.009138102643191814, + -0.0026300454046577215, + -0.01615794375538826, + 0.03841017931699753, + -0.016781358048319817, + -0.05973850563168526, + -0.08570761978626251, + 0.02454497292637825, + -0.020652730017900467, + -0.037132639437913895, + 0.04724416881799698, + 0.04174450784921646, + 0.08730342984199524, + 0.11898231506347656, + 0.01497510727494955, + 0.06433925777673721, + 0.07103246450424194, + -0.0008627441711723804, + 0.01812557317316532, + 0.011737937107682228, + -0.039397433400154114, + 0.04196732118725777, + 0.08156254142522812, + 0.031906187534332275, + -0.023972133174538612, + 0.029554476961493492, + -0.03397223353385925, + -0.00881333276629448, + 0.05262031778693199, + 0.06091206893324852, + 0.005180642940104008, + -0.0877855122089386, + 0.08079560846090317, + -0.023242879658937454, + 0.006948905065655708, + 0.02583610638976097, + -0.07677736133337021, + 0.07446686178445816, + -0.05611725151538849, + 0.03702922910451889, + -0.00916880089789629, + -0.12395661324262619, + -0.13092179596424103, + -0.043018046766519547, + 0.02988371253013611, + 0.025635669007897377, + 0.03199005126953125, + -0.06184802204370499, + 0.05255822837352753, + 0.008234629407525063, + 0.002771624131128192, + -0.024189062416553497, + 0.017835168167948723, + 0.09584694355726242, + 0.03079858236014843, + 0.02463093027472496, + 0.01780131831765175, + 0.055180683732032776, + -0.08482053130865097, + -0.007819883525371552, + -0.012635559774935246, + -0.011528249830007553, + -0.0008845209958963096, + 0.016773629933595657, + -0.017804497852921486, + -0.03190641850233078, + -0.04249842092394829, + -0.003262546146288514, + -0.03600285202264786, + -0.016986064612865448, + 0.06394899636507034, + 0.06990792602300644, + 0.03423462435603142, + 0.03579334914684296, + 0.017584962770342827, + -0.03072340413928032, + -0.02639656327664852, + -0.033595990389585495, + -0.010425479151308537, + -0.07038849592208862, + -0.08036132156848907, + -0.043197907507419586, + 0.04755186662077904, + 0.07551394402980804, + -0.09387880563735962, + 0.03184010460972786, + 0.03242263197898865, + -0.06902309507131577, + -0.021674538031220436, + 0.018650123849511147, + 0.09952239692211151, + 0.00883508287370205, + 0.0796341523528099, + 0.05029008537530899, + -0.05884823203086853, + -0.06904377788305283, + -0.03034897707402706, + -0.043968215584754944, + 0.014574841596186161, + -0.037726279348134995, + -0.09261136502027512, + -0.051560044288635254, + -0.045968472957611084, + -0.056420356035232544, + -0.060543376952409744, + -0.013198576867580414, + 0.013706334866583347, + 0.00868168193846941, + 0.07248085737228394, + -0.0132760526612401, + -0.03735554590821266, + -0.022223591804504395, + 0.01321436744183302, + -0.008071746677160263, + -0.04245185852050781, + 0.07037108391523361, + 0.04173707589507103, + -3.0921746240364905e-33, + 0.0640626773238182, + 0.04290930926799774, + 0.012930378317832947, + 0.10113520175218582, + -0.040840182453393936, + -0.044765256345272064, + -0.01717020571231842, + -0.016128074377775192, + -0.04747655987739563, + 0.0006733033224008977, + 0.02684519626200199, + 0.05687088891863823, + 0.025883663445711136, + 0.03672439232468605, + 0.04701055586338043, + -0.0073377336375415325, + 0.15189073979854584, + 0.023469937965273857, + -0.06366194784641266, + 0.08044937252998352, + -0.038600191473960876, + 0.030860304832458496, + 0.03381998464465141, + -0.04131247475743294, + -0.013627664186060429, + 0.0030485629104077816, + -0.012397455051541328, + -0.0319850891828537, + -0.06250467896461487, + 0.017650872468948364, + 0.09565756469964981, + -0.026491552591323853, + -0.02895728498697281, + -0.01318505872040987, + 0.043347373604774475, + -0.04858914762735367, + -0.0019342019222676754, + -0.060170501470565796, + -0.010751294903457165, + -0.030558794736862183, + -0.0837269276380539, + -0.019137464463710785, + -0.03222624585032463, + 0.036919966340065, + 0.0740014910697937, + 0.08000792562961578, + -0.040513552725315094, + -0.039294127374887466, + 0.040003836154937744, + 0.05861968919634819, + -0.08123559504747391, + 0.016431303694844246, + -0.05969305336475372, + -0.053627826273441315, + 0.09016098082065582, + 0.04729118198156357, + 0.009639240801334381, + 0.06788363307714462, + -0.03230702131986618, + -0.01821969263255596, + -0.014455190859735012, + 0.010397703386843204, + 0.029367422685027122, + -0.004339581821113825, + 0.0628843605518341, + 0.04140309616923332, + -0.07734309881925583, + -0.05267968773841858, + 0.0014484081184491515, + -0.038823217153549194, + 0.003570478642359376, + 0.01805015839636326, + 0.05365806445479393, + 0.16032178699970245, + 0.008728942833840847, + 0.048335444182157516, + 0.04911335930228233, + -0.02096298523247242, + 0.013656877912580967, + 0.03430665656924248, + -0.16114576160907745, + 0.03804566338658333, + -0.016983266919851303, + -0.06656306236982346, + -0.005281147081404924, + -0.04027659073472023, + 0.0659385696053505, + -0.05593300610780716, + 0.07904753088951111, + -0.002569768810644746, + -0.11656253039836884, + -0.021706460043787956, + 0.022857295349240303, + -0.04828635975718498, + -0.143902987241745, + 2.9435638986774848e-34, + -0.03400062769651413, + -0.03511796519160271, + -0.07116777449846268, + 0.008094710297882557, + -0.048829153180122375, + -0.03737380728125572, + -0.039467789232730865, + 0.07016593217849731, + -0.016647513955831528, + 0.04318540543317795, + 0.012711347080767155, + -0.04250846058130264, + 0.04557301849126816, + -0.004458051174879074, + 0.03867769241333008, + -0.02550450526177883, + 0.05098884180188179, + -0.002824134426191449, + -0.03261088952422142, + 0.10031836479902267, + 0.020501719787716866, + -0.10215872526168823, + -0.09108487516641617, + 0.0006926108617335558, + -0.06157689541578293, + 0.05333226919174194, + 0.034920092672109604, + -0.06502125412225723, + -0.07067064195871353, + 0.05337165296077728, + -0.09628999978303909, + -0.04256706312298775, + -0.00690534757450223, + 0.043708331882953644, + -0.1265312135219574, + 0.0010125639382749796, + -0.04220157489180565, + -0.12839269638061523, + -0.04868363216519356, + -0.007758738938719034, + -0.046687450259923935, + 0.038196299225091934, + 0.04313268885016441, + -0.0062955026514828205, + -0.03865274414420128, + -0.07186231762170792, + -0.06875000894069672, + 0.059498053044080734, + -0.06344613432884216, + -0.017925921827554703, + -0.015983225777745247, + 0.05609810724854469, + 0.021567372605204582, + -0.009149872697889805, + 0.02224985510110855, + -0.028009245172142982, + -0.039905671030282974, + 0.017959455028176308, + -0.004627905786037445, + -0.03250310197472572, + -0.0026176453102380037, + -0.012302083894610405, + -0.028644682839512825, + 0.029493791982531548, + -0.0012788412859663367, + -0.07835335284471512, + 0.02637549303472042, + 0.047179993242025375, + 0.04286716878414154, + -0.01423282828181982, + 0.024112310260534286, + 0.022180544212460518, + -0.046930816024541855, + -0.0002067591849481687, + 0.038500577211380005, + 0.055078476667404175, + 0.047377292066812515, + 0.010386460460722446, + -0.022802377119660378, + -0.009036820381879807, + 0.01601063273847103, + 0.014393055811524391, + -0.017286336049437523, + 0.029940655454993248, + 0.042460523545742035, + 0.032213106751441956, + -0.02706211805343628, + 0.010129040107131004, + 0.007736496161669493, + 0.014137189835309982, + -0.021725518628954887, + 0.06908644735813141, + -0.1229645237326622, + 0.03863115981221199, + -0.007133647799491882, + -2.6842135625315677e-08, + -0.014136995188891888, + 0.027003057301044464, + -0.014225699007511139, + 0.04667334258556366, + -0.04182838648557663, + -0.07507090270519257, + 0.05286790430545807, + -0.08460833132266998, + -0.08114523440599442, + -0.005415770690888166, + -0.011157614178955555, + 0.015191180631518364, + -0.029123684391379356, + -0.02007014863193035, + 0.0075774663127958775, + 0.0030136278364807367, + -0.08827074617147446, + 0.12188791483640671, + 0.0217243954539299, + 0.07251107692718506, + 0.016336746513843536, + 0.06956516951322556, + 0.04346109926700592, + -0.10370577871799469, + -0.006735794246196747, + 0.03202208876609802, + -0.025511227548122406, + 0.0011314332950860262, + -0.03511664643883705, + -0.1368870735168457, + 0.03650040179491043, + 0.039440494030714035, + -0.016490528360009193, + 0.029704751446843147, + -0.06756597012281418, + -0.03425171971321106, + -0.01945902220904827, + 0.022672517225146294, + -0.003609140170738101, + 0.046460941433906555, + 0.05725787207484245, + 0.031034013256430626, + -0.019043996930122375, + 0.03008165769279003, + 0.04447632282972336, + 0.07243940979242325, + 0.04380445182323456, + 0.05567927286028862, + -0.07128264755010605, + -0.0770920142531395, + -0.14555488526821136, + -0.00656804908066988, + 0.021633010357618332, + 0.0237567238509655, + 0.06287950277328491, + 0.023937813937664032, + 0.06282126158475876, + 0.033795066177845, + 0.0010527849663048983, + 0.08426053076982498, + 0.013628823682665825, + -0.06722085922956467, + -0.06066976860165596, + -0.013744397088885307 + ], + "globe-x-bold||*new*,world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography,internet": [ + 0.0692826434969902, + -0.007185396738350391, + 0.021301375702023506, + -0.047112442553043365, + 0.030644504353404045, + -0.09055157005786896, + 0.03784535080194473, + -0.0027656988240778446, + 0.02690774016082287, + 0.0009126242366619408, + 0.028941037133336067, + -0.016330750659108162, + 0.006008968222886324, + 0.03969007357954979, + 0.0003143821668345481, + -0.05669191852211952, + -0.06377482414245605, + 0.011881910264492035, + -0.04956067353487015, + -0.037030644714832306, + 0.07360392808914185, + 0.031375885009765625, + 0.061376556754112244, + 0.10489887744188309, + 0.05149983614683151, + 0.07514876872301102, + 0.052635304629802704, + -0.033732254058122635, + 0.0020909891463816166, + 0.0070814997889101505, + -0.05715009942650795, + 0.054562028497457504, + 0.11170676350593567, + 0.0359288714826107, + -0.00448829960078001, + 0.03625207766890526, + -0.03867987170815468, + 0.007494951598346233, + 0.03673863783478737, + 0.060263410210609436, + -0.010735921561717987, + -0.1095765009522438, + 0.07166614383459091, + 0.018977107480168343, + -0.01333623006939888, + 0.019002536311745644, + -0.093869149684906, + 0.07155007123947144, + -0.023902280256152153, + 0.05342107638716698, + -0.031011516228318214, + -0.10507515072822571, + -0.156780406832695, + -0.02044242061674595, + 0.0651295855641365, + 0.007461828179657459, + -0.006155497394502163, + -0.05004463344812393, + 0.022498844191432, + -0.012443446554243565, + -0.015198834240436554, + 0.005117571447044611, + 0.04844477027654648, + 0.12481270730495453, + 0.0537358894944191, + 0.02219109609723091, + 0.005933371372520924, + 0.03709336370229721, + -0.0532439686357975, + 0.00229875766672194, + -0.018758276477456093, + 0.010462458245456219, + -0.013060580007731915, + 0.0176232997328043, + -0.04710811749100685, + -0.033521026372909546, + -0.01686999388039112, + 0.004402498714625835, + -0.058036744594573975, + -0.019877854734659195, + 0.06002824008464813, + 0.07255592197179794, + 0.028337910771369934, + 0.04113169014453888, + 0.018667560070753098, + 0.0025922758504748344, + -0.05271546542644501, + -0.042323291301727295, + -0.02142680622637272, + -0.0540853850543499, + -0.06567788124084473, + -0.07865413278341293, + 0.06463288515806198, + 0.0866866409778595, + -0.09341641515493393, + 0.03960060700774193, + 0.052396707236766815, + -0.0590086504817009, + -0.013329833745956421, + 0.04379230737686157, + 0.0727367028594017, + 0.0027710876893252134, + 0.058324407786130905, + 0.03983570262789726, + -0.07986598461866379, + -0.06323521584272385, + -0.032330337911844254, + -0.02232283540070057, + -0.009495886042714119, + -0.028216375038027763, + -0.09136378020048141, + -0.08434335887432098, + -0.040753040462732315, + -0.08979327231645584, + -0.05449352413415909, + -0.013857281766831875, + 0.021644936874508858, + 0.027251025661826134, + 0.09382869303226471, + 0.01575479656457901, + -0.07007859647274017, + -0.04688943549990654, + -0.009112273342907429, + 0.025848520919680595, + -0.05812817066907883, + 0.06399594247341156, + 0.028326822444796562, + -2.2533387328828367e-33, + 0.051879867911338806, + 0.05961253494024277, + 0.0019117459887638688, + 0.06974232941865921, + -0.060095082968473434, + -0.027806947007775307, + -0.00915100984275341, + -0.01970527693629265, + -0.05708297714591026, + 0.025044748559594154, + 0.020650092512369156, + 0.07847804576158524, + 0.009594370611011982, + 0.04225320369005203, + 0.07185594737529755, + 0.019443454220891, + 0.12694938480854034, + 0.03418094292283058, + -0.049460336565971375, + 0.09388578683137894, + -0.04109114408493042, + 0.056712742894887924, + 0.036213699728250504, + -0.03764713928103447, + -0.031076062470674515, + -0.05076440051198006, + 0.0005904246354475617, + -0.06183755397796631, + -0.05462132394313812, + 0.014403821900486946, + 0.06362108141183853, + -0.028766905888915062, + -0.012587678618729115, + 0.029655367136001587, + 0.028713451698422432, + 0.003268215339630842, + -0.00877400953322649, + -0.06431490182876587, + 0.0014419445069506764, + -0.018083730712532997, + -0.10275023430585861, + -0.00808277539908886, + -0.04327375441789627, + 0.02666604518890381, + 0.07315243035554886, + 0.08248108625411987, + -0.040004245936870575, + -0.06530233472585678, + 0.052494749426841736, + 0.05413487181067467, + -0.07257454842329025, + -0.012824165634810925, + -0.056800518184900284, + -0.030743874609470367, + 0.0762367695569992, + 0.04749419167637825, + 0.014391499571502209, + 0.06748946756124496, + -0.012482485733926296, + -0.015267537906765938, + 0.018372338265180588, + -0.024805113673210144, + 0.055319517850875854, + -0.0162346251308918, + 0.05516733229160309, + 0.02860073745250702, + -0.051342252641916275, + -0.059867992997169495, + 0.003630533814430237, + -0.020006921142339706, + -0.06234787777066231, + 0.03407876938581467, + 0.055464886128902435, + 0.1320338100194931, + 0.036360424011945724, + 0.037392757833004, + 0.023004349321126938, + -0.04754418879747391, + 0.007957479916512966, + 0.018382351845502853, + -0.13389211893081665, + 0.027975862845778465, + -0.030267883092164993, + -0.014477749355137348, + -0.015309247188270092, + -0.030175523832440376, + 0.05604910850524902, + -0.02286125347018242, + 0.056754518300294876, + -0.033734288066625595, + -0.12041860073804855, + -0.0292511023581028, + -0.01469812449067831, + -0.055070504546165466, + -0.14557351171970367, + -1.0904586303063224e-33, + -0.08475184440612793, + -0.03399932384490967, + -0.08570073544979095, + 0.02849903143942356, + -0.08930280804634094, + -0.04690456762909889, + -0.022822802886366844, + 0.08198794722557068, + 0.02456049621105194, + 0.042595136910676956, + 0.0384158231317997, + -0.04176221042871475, + 0.021891390904784203, + -0.028244897723197937, + 0.04788084328174591, + -0.02510613389313221, + 0.04657391086220741, + -0.0024502689484506845, + -0.07181403785943985, + 0.11327701061964035, + -0.004239408299326897, + -0.08953311294317245, + -0.09545860439538956, + 0.011407827958464622, + -0.027849601581692696, + 0.018580066040158272, + 0.05427571013569832, + -0.05661983788013458, + -0.05137224867939949, + 0.036590076982975006, + -0.09938745945692062, + -0.029217589646577835, + 0.005653134547173977, + 0.07453729957342148, + -0.14025606215000153, + 0.0006908158538863063, + 0.009525726549327374, + -0.0776500329375267, + -0.042437948286533356, + 0.007962816394865513, + -0.03907947242259979, + 0.03429052606225014, + 0.07179291546344757, + 0.03754236549139023, + -0.05177082121372223, + -0.06000543013215065, + -0.09734591841697693, + 0.03911339119076729, + -0.05610479414463043, + 0.04265217483043671, + 0.033661410212516785, + 0.009460032917559147, + -0.002217268804088235, + -0.031198596581816673, + 0.020130962133407593, + -0.017562249675393105, + -0.0637492910027504, + 0.013836750760674477, + -0.0025586686097085476, + -0.027746453881263733, + -0.018533481284976006, + -0.037667956203222275, + -0.008162315934896469, + 0.06280909478664398, + -0.02765703573822975, + -0.11756152659654617, + -0.016860758885741234, + 0.020274214446544647, + 0.015332954935729504, + -0.008854134008288383, + 0.038756001740694046, + 0.004098276142030954, + -0.11037573218345642, + -0.009099114686250687, + 0.0022072289139032364, + 0.0101352883502841, + 0.05605233460664749, + 0.008089009672403336, + -0.035867951810359955, + 0.01615854725241661, + 0.025296526029706, + 0.03554874286055565, + 0.008080664090812206, + 0.06845853477716446, + 0.031038060784339905, + 0.032887160778045654, + -0.005153690930455923, + 0.03863527625799179, + -0.007848871871829033, + -0.007871408946812153, + -0.023178108036518097, + 0.05996397137641907, + -0.10018116235733032, + 0.02685626782476902, + -0.02377224899828434, + -2.9428951719978613e-08, + -0.022220227867364883, + 0.008684525266289711, + -0.03359730914235115, + 0.044361915439367294, + -0.00887457374483347, + -0.06092425808310509, + 0.025676680728793144, + -0.06080291420221329, + -0.047937747091054916, + -0.009666349738836288, + 0.03472340106964111, + 0.017307205125689507, + -0.06390327215194702, + -0.0361408032476902, + 0.03081708960235119, + -0.017048101872205734, + -0.0295910332351923, + 0.11161775887012482, + 0.021665023639798164, + 0.06211860850453377, + 0.0028464451897889376, + 0.07977712154388428, + 0.0355108343064785, + -0.07809731364250183, + 0.022860849276185036, + 0.006921387743204832, + -0.03213965520262718, + -0.004976614378392696, + -0.004994859918951988, + -0.1166049987077713, + 0.022464750334620476, + 0.01450828742235899, + -0.009977249428629875, + 0.024423114955425262, + -0.1034984439611435, + -0.011710655875504017, + -0.04798472672700882, + 0.03322528302669525, + -0.011588655412197113, + 0.0541427843272686, + 0.038154032081365585, + 0.028543978929519653, + -0.01423049345612526, + 0.012202491983771324, + 0.052622951567173004, + 0.023306550458073616, + 0.058939527720212936, + -0.00027103550382889807, + -0.06488023698329926, + -0.10091841965913773, + -0.10899403691291809, + 0.04039909690618515, + 0.00300521869212389, + -0.01479900348931551, + 0.06531641632318497, + 0.030628863722085953, + 0.03303967043757439, + 0.026503603905439377, + 0.019633684307336807, + 0.08968733251094818, + 0.02497148886322975, + -0.025294644758105278, + -0.049921274185180664, + -0.024138156324625015 + ], + "goggles-bold||swim,swimming,sports,exercise,olympics,aquatics": [ + -0.015669524669647217, + -0.01291006151586771, + 0.01697598025202751, + -0.011001665145158768, + 0.02680271863937378, + -0.017742743715643883, + 0.12176733464002609, + -0.06389691680669785, + -0.08807692676782608, + 0.03694754093885422, + 0.04225751385092735, + -0.0637570321559906, + -0.031497225165367126, + 0.033053919672966, + 0.04138404130935669, + -0.031199553981423378, + -0.021794624626636505, + 0.054944708943367004, + -0.03311172127723694, + -0.03897790610790253, + 0.05360576510429382, + -0.017146984115242958, + 0.020887967199087143, + 0.1039641797542572, + -0.05031837522983551, + 0.07664701342582703, + -0.01501326821744442, + -0.03284407779574394, + -0.05820976197719574, + 0.009945595636963844, + -0.11472787708044052, + -0.02811146154999733, + 0.025685491040349007, + -0.031091559678316116, + -0.02850516140460968, + -0.0523567758500576, + -0.042427483946084976, + -0.024120651185512543, + -0.07925882190465927, + 0.1282118856906891, + -0.0504443533718586, + -0.02272108383476734, + -0.055166225880384445, + 0.04662926867604256, + 0.044975701719522476, + 0.10023504495620728, + 0.04976620525121689, + 0.003679240820929408, + -0.017567850649356842, + 0.044013168662786484, + -0.03754157945513725, + -0.033248577266931534, + -0.060474347323179245, + -0.031950484961271286, + 0.1020415723323822, + 0.004865045193582773, + -0.17710377275943756, + -0.043754830956459045, + 0.016803991049528122, + 0.01035032793879509, + 0.06685589253902435, + -0.01314703468233347, + -0.019645288586616516, + 0.0954369530081749, + -0.04159678518772125, + 0.013013484887778759, + -0.031703680753707886, + 0.007562822196632624, + 0.06942673772573471, + 0.00859273411333561, + 0.010905305854976177, + 0.0064275795593857765, + 0.030653856694698334, + -0.026559019461274147, + -0.08211692422628403, + 0.025587832555174828, + 0.0891994833946228, + -0.027289584279060364, + -0.025362495332956314, + 0.03632379323244095, + -0.017074832692742348, + -0.0990484207868576, + 0.05440022051334381, + 0.003527194494381547, + 0.04849688336253166, + 0.015535376965999603, + -0.12480339407920837, + -0.06274296343326569, + -0.04879079386591911, + 0.010042858310043812, + -0.07369981706142426, + -0.026153435930609703, + -0.021425163373351097, + 0.011121264658868313, + 0.02018984779715538, + 0.027140505611896515, + -0.03482326492667198, + -0.04020475968718529, + -0.010744133964180946, + 0.030177267268300056, + 0.07175706326961517, + -0.05354688689112663, + 0.08843390643596649, + 0.09463489055633545, + 0.03756490349769592, + -0.041724253445863724, + 0.01565355248749256, + 0.06024565547704697, + 0.09251968562602997, + 0.08596514910459518, + 0.00427186768501997, + -0.008348856121301651, + 0.06363537162542343, + -0.03426594287157059, + -0.1005610004067421, + 0.0006118371384218335, + -0.03493892773985863, + 0.0033889117185026407, + 0.08889779448509216, + 0.06340628117322922, + -0.033957019448280334, + 0.006283480674028397, + 0.01804480515420437, + -0.01900784857571125, + 0.018215656280517578, + 0.010615666396915913, + -0.03614186868071556, + -2.9335991504136177e-33, + 0.017341721802949905, + 0.0030446688178926706, + -0.0058393580839037895, + 0.05865682661533356, + -0.09479700773954391, + 0.0026427502743899822, + 0.041992660611867905, + -0.10680707544088364, + -0.08641133457422256, + 0.01004339661449194, + -0.018337508663535118, + 0.09108297526836395, + -0.07349187880754471, + 0.06434687972068787, + 0.061140552163124084, + 0.011546269059181213, + -0.02567642740905285, + 0.012822557240724564, + -0.09034188836812973, + 0.01318623311817646, + 0.056164201349020004, + 0.01042337529361248, + -0.01834065094590187, + 0.055361248552799225, + 0.032305166125297546, + -0.020404480397701263, + 0.0026198907289654016, + -0.08746439218521118, + -0.06321442872285843, + 0.03331968933343887, + 0.020499706268310547, + 0.03323628008365631, + 0.01577945426106453, + -0.019176358357071877, + 0.03946356102824211, + -0.020314980298280716, + -0.0032992130145430565, + -0.07358443737030029, + 0.022290818393230438, + 0.00252212630584836, + -0.017794109880924225, + 0.015115046873688698, + 0.013439257629215717, + -0.023724444210529327, + 0.047523826360702515, + 0.07756127417087555, + -0.03877043351531029, + 0.09635169804096222, + -0.01394782867282629, + -0.016521286219358444, + 0.006601570174098015, + -0.027683502063155174, + -0.06500016897916794, + -0.07677644491195679, + -0.0037300786934792995, + -0.0009184496593661606, + -0.03788025677204132, + 0.06867251545190811, + -0.06986598670482635, + 0.014694870449602604, + -0.014846502803266048, + 0.04926805570721626, + -0.03465399146080017, + -0.03103579208254814, + -0.005272333975881338, + 0.009687840938568115, + 0.016840368509292603, + 0.008628210052847862, + -0.011082355864346027, + -0.056105632334947586, + 0.005827237851917744, + 0.08672827482223511, + 0.020307371392846107, + 0.007890469394624233, + 0.0026519489474594593, + 0.024886323139071465, + 0.04587005823850632, + -0.005965400952845812, + -0.01834866963326931, + -0.00022477697348222136, + -0.03340659663081169, + 0.06705541163682938, + -0.03182781860232353, + 0.0871632769703865, + 0.0019154022447764874, + 0.04375917837023735, + -0.007688933052122593, + -0.05445359647274017, + -0.0026084391865879297, + -0.03974347189068794, + -0.008982432074844837, + -0.01184089109301567, + 0.01271828543394804, + -0.06815039366483688, + -0.11259466409683228, + -7.977326964469407e-36, + -0.002140754135325551, + -0.06119357421994209, + 0.03452442213892937, + -0.007083056028932333, + 0.07364954799413681, + 0.03525560349225998, + 0.040298983454704285, + 0.032670773565769196, + 0.09112892299890518, + 0.023372028023004532, + -0.014221370220184326, + -0.04376964643597603, + -0.05115658789873123, + -0.11012233793735504, + -0.04704634100198746, + -0.016852281987667084, + 0.02055104821920395, + 0.08292380720376968, + 0.01660531386733055, + 0.036290574818849564, + 0.034816209226846695, + -0.03322841599583626, + 0.008933172561228275, + -0.014134415425360203, + -0.03784791752696037, + 0.04646913334727287, + 0.010762181133031845, + -0.03145501762628555, + -0.05676338076591492, + -0.0037417009007185698, + -0.03272058442234993, + 0.027929972857236862, + 0.03428436815738678, + 0.07652223110198975, + 0.008218489587306976, + 0.07783262431621552, + -0.036833733320236206, + -0.02002362161874771, + 0.01159240584820509, + -0.004867078270763159, + 0.017686042934656143, + -0.07312814146280289, + 0.13565008342266083, + 0.0387541837990284, + 0.006657129619270563, + 0.008096430450677872, + -0.07761679589748383, + 0.00865256693214178, + -0.08879463374614716, + -0.006308626849204302, + -0.07082001119852066, + -0.05448288843035698, + -0.04651397094130516, + 0.03906484320759773, + -0.04725980758666992, + -0.05026368424296379, + -0.01498427800834179, + -0.042434148490428925, + -0.03654079511761665, + 0.03629940748214722, + 0.029166018590331078, + 0.0230066180229187, + -0.08130233734846115, + 0.10209504514932632, + -0.04327933490276337, + 0.022205214947462082, + -0.031606338918209076, + 0.0002594219404272735, + -0.040730319917201996, + -0.029856616631150246, + 0.023010458797216415, + -0.1165909692645073, + 0.010577010922133923, + -0.02674032375216484, + -0.043324436992406845, + -0.08864424377679825, + 0.0018037535483017564, + 0.11039535701274872, + -0.007288054563105106, + 0.12265709787607193, + 0.009562126360833645, + 0.03581108897924423, + -0.03855908662080765, + 0.1342308670282364, + 0.044784657657146454, + 0.09497522562742233, + 0.026049932464957237, + 0.01963437907397747, + -0.029486337676644325, + 0.019758405163884163, + -0.056879524141550064, + 0.011319203302264214, + -0.007649648003280163, + 0.02015944942831993, + 0.018952330574393272, + -1.992883014168001e-08, + 0.05815696716308594, + 0.0925428494811058, + 0.0036236546002328396, + -0.03259546682238579, + -0.008014806546270847, + -0.0016160954255610704, + -0.09165981411933899, + 0.029367264360189438, + -0.07039077579975128, + -0.0572001188993454, + -0.00946904718875885, + -0.006030184216797352, + 0.0025306905154138803, + -0.011622154153883457, + 0.061819348484277725, + 0.008482077158987522, + -0.04283340275287628, + 0.13748814165592194, + -0.021731052547693253, + -0.05789024755358696, + -0.06223059445619583, + -0.04361829534173012, + 0.013101672753691673, + 0.04717843234539032, + -0.008810729719698429, + -0.005391834769397974, + -0.060980670154094696, + -0.017915969714522362, + 0.033385444432497025, + 0.0836714431643486, + 0.037987589836120605, + -0.0027802553959190845, + 0.006423473823815584, + 0.04017416015267372, + -0.10074355453252792, + -0.023139068856835365, + 0.03168502077460289, + -0.0369887612760067, + -0.0644548088312149, + 0.056012000888586044, + -0.07830515503883362, + -0.05067330598831177, + 0.07634757459163666, + 0.06647475063800812, + -0.015660014003515244, + -0.03512486815452576, + 0.10009536892175674, + -0.09363070130348206, + -0.021523868665099144, + -0.06121693179011345, + -0.00016603237600065768, + -0.02256709709763527, + -0.031977273523807526, + 0.06493820250034332, + -0.09943345189094543, + 0.04217744618654251, + 0.05742008239030838, + -0.03808347508311272, + -0.06448067724704742, + 0.027935147285461426, + 0.05584851652383804, + -0.037427984178066254, + -0.021826311945915222, + 0.06327439099550247 + ], + "golf-bold||*new*,sports,pga,tee,ball": [ + 0.05955279618501663, + -0.036967672407627106, + -0.022313302382826805, + 0.043966446071863174, + 0.034891169518232346, + -0.006559926550835371, + 0.046580392867326736, + -0.057659778743982315, + 0.030873041599988937, + 0.048755984753370285, + -0.004808962345123291, + 0.03422138839960098, + -0.06362655758857727, + 0.0006968080997467041, + 0.042431410402059555, + 0.025000279769301414, + 0.03262322023510933, + 0.01879899576306343, + 0.009033449925482273, + -0.042325034737586975, + 0.02029210329055786, + 0.06141237914562225, + 0.023056330159306526, + 0.021148141473531723, + 0.013315821997821331, + -0.0006720245582982898, + 0.013153845444321632, + 0.06827551871538162, + -0.04929076507687569, + -0.057114485651254654, + -0.0817965716123581, + -0.023648470640182495, + 0.11338166147470474, + 0.07919875532388687, + 0.011770873330533504, + -0.01448884978890419, + -0.000511904654558748, + -0.01846793107688427, + -0.009536387398838997, + 0.01760445348918438, + 0.009490936994552612, + -0.1515175998210907, + -0.013629544526338577, + 0.05861678719520569, + -0.028035039082169533, + 0.06315256655216217, + -0.0955577939748764, + 0.024556975811719894, + 0.05547754094004631, + 0.0625256821513176, + 0.010621612891554832, + -0.09130988270044327, + -0.09602834284305573, + -0.012128771282732487, + 0.11394506692886353, + 0.02929759956896305, + -0.027564050629734993, + 0.012060596607625484, + -0.006307379808276892, + -0.03296775370836258, + 0.01196249108761549, + -0.0507429763674736, + -0.04312458261847496, + 0.07266121357679367, + 0.00041036581387743354, + -0.07003478705883026, + -0.02261190488934517, + 0.04735194891691208, + -0.035919930785894394, + 0.06518123298883438, + 0.03906673565506935, + 0.06578613072633743, + -0.060649871826171875, + 0.0112069733440876, + -0.004530409816652536, + 0.028250012546777725, + 0.010089374147355556, + 0.052580732852220535, + -0.0017340127378702164, + -0.0035518098156899214, + -0.07632380723953247, + -0.058432403951883316, + -0.05354653298854828, + -0.005588478408753872, + 0.001605330384336412, + 0.028699176385998726, + -0.07501347362995148, + -0.07095801830291748, + -0.007900157943367958, + 0.005029618740081787, + -0.13806138932704926, + -0.04040247201919556, + 0.02404647320508957, + 0.04802617430686951, + -0.10475245863199234, + 0.07015430182218552, + 0.01657864823937416, + -0.04426167905330658, + -0.006887801457196474, + 0.09144523739814758, + -7.812086550984532e-06, + 0.06296707689762115, + 0.05981222912669182, + 0.019572485238313675, + -0.027480894699692726, + 0.034763239324092865, + -0.05613017827272415, + 0.04828004539012909, + 0.013455280102789402, + -0.004886340349912643, + 0.035863786935806274, + -0.06162938103079796, + 0.03259154409170151, + -0.05641738697886467, + -0.10828498750925064, + 0.006793277338147163, + -0.06265538185834885, + 0.024924766272306442, + 0.08365347981452942, + 0.12071949988603592, + 0.014219673350453377, + -0.007479769643396139, + -0.034519728273153305, + -0.041524458676576614, + -0.08965428918600082, + 0.020911047235131264, + 0.07176897674798965, + -3.888152909514125e-33, + 0.019593428820371628, + 0.014318644069135189, + -0.01133651938289404, + 0.11812777072191238, + -0.03498291224241257, + 0.0051851700991392136, + -0.05161771550774574, + -0.04012032225728035, + -0.05849682539701462, + 0.00746751856058836, + 0.056949205696582794, + 0.043130915611982346, + -0.01122810784727335, + 0.02324838936328888, + 0.1174532100558281, + -0.06491803377866745, + -0.005773407407104969, + -0.03851471468806267, + -0.03351980075240135, + 0.03489368408918381, + -0.08061042428016663, + 0.053427718579769135, + 0.053470250219106674, + -0.04856003820896149, + -0.0645558163523674, + 0.0030109668150544167, + 0.06485778838396072, + -0.10908906161785126, + -0.05807849392294884, + 0.03009551577270031, + 0.043492093682289124, + -0.02098672278225422, + 0.02352828159928322, + 0.004042515996843576, + 0.028320537880063057, + 0.03319190442562103, + -0.001391880796290934, + -0.04141780734062195, + -0.01884940080344677, + -0.0018611347768455744, + -0.059995345771312714, + -0.04556463286280632, + -0.02886158972978592, + -0.037097178399562836, + -0.006621997337788343, + 0.04293385520577431, + -0.04715708643198013, + -0.02517854794859886, + -0.03995304927229881, + 0.048022326081991196, + 0.05522793158888817, + 0.01463468000292778, + 0.08487705141305923, + 0.011716693639755249, + -0.0016818862641230226, + -0.07027620822191238, + 0.030323410406708717, + 0.028760002925992012, + -0.014572462998330593, + -0.04295762628316879, + 0.06703589856624603, + 0.04944739118218422, + 0.04955652728676796, + 0.04378439858555794, + -0.056673843413591385, + 0.05522264912724495, + -0.0036310660652816296, + 0.004440473858267069, + 0.02261325530707836, + 0.04169098660349846, + -0.002809955971315503, + 0.08017990738153458, + -0.026851845905184746, + 0.04420768842101097, + -0.02181486040353775, + 0.045796141028404236, + 0.012877989560365677, + 0.0004871439014095813, + 0.041456956416368484, + -0.07829136401414871, + -0.08344268798828125, + 0.019716979935765266, + -0.082459956407547, + 0.059911977499723434, + -0.06669338792562485, + 0.040586017072200775, + -0.025924453511834145, + -0.1050620898604393, + -0.007316400296986103, + -0.017892558127641678, + -0.17157292366027832, + 0.011231701821088791, + 0.006598711479455233, + -0.039881110191345215, + -0.01537498738616705, + -2.622614910817133e-34, + -0.0008110566413961351, + 0.025356914848089218, + -0.04103816673159599, + 0.005643289536237717, + -0.02372303605079651, + 0.05244241654872894, + -0.0016797317657619715, + -0.020663635805249214, + 0.006689073517918587, + 0.0385940819978714, + 0.01904795691370964, + -0.019929923117160797, + -0.0755387544631958, + -0.06727281212806702, + 0.027601134032011032, + 0.01817423291504383, + -0.055142324417829514, + 0.04734567925333977, + -0.06404602527618408, + 0.0076345051638782024, + 0.017673974856734276, + -0.014110694639384747, + -0.035630133002996445, + 0.0263857152312994, + 0.036403194069862366, + -0.021136997267603874, + 0.014872592873871326, + 0.0038032825104892254, + -0.09854261577129364, + 0.010060998611152172, + 0.012192940339446068, + -3.0345684081112267e-06, + 0.07527949661016464, + 0.09125751256942749, + -0.0687226802110672, + 0.02981223352253437, + 0.08027061820030212, + -0.029371649026870728, + 0.0520203560590744, + 0.027487395331263542, + 0.07281610369682312, + 0.008805915713310242, + 0.030820736661553383, + 0.05518506094813347, + -0.03044825606048107, + -0.026113884523510933, + -0.06744316220283508, + -0.05521093308925629, + -0.030194252729415894, + 0.09127434343099594, + -0.018787050619721413, + -0.025178521871566772, + -0.08504228293895721, + 0.018721742555499077, + -0.051010578870773315, + -0.010567689314484596, + -0.04093785956501961, + -0.013142320327460766, + -0.09729114919900894, + 0.02372591756284237, + -0.05944979190826416, + 0.07542543113231659, + -0.026466699317097664, + 0.0675453469157219, + 0.03020014427602291, + -0.004453511442989111, + -0.04906460642814636, + -0.027793731540441513, + -0.06561311334371567, + -0.041468407958745956, + -0.05858800560235977, + 0.020181089639663696, + -0.06464528292417526, + -0.0056739021092653275, + -0.037982020527124405, + -0.01431023795157671, + 0.08252087980508804, + 0.0623924620449543, + -0.07001706212759018, + 0.06625377386808395, + 0.004096191376447678, + -0.02126023918390274, + -0.03229371830821037, + 0.08457276225090027, + 0.06247396394610405, + 0.037259649485349655, + -0.006145738065242767, + 0.0024912268854677677, + -0.02499539591372013, + 0.035353515297174454, + 0.024405324831604958, + 0.09136568754911423, + 0.03196316212415695, + -0.013698709197342396, + -0.11939648538827896, + -2.0409851586578043e-08, + -0.07387575507164001, + 0.029684077948331833, + -0.07030487060546875, + 0.015374384820461273, + 0.04037750884890556, + 0.015646854415535927, + -0.06468664854764938, + -0.09260095655918121, + -0.05865836143493652, + -0.04898766428232193, + 0.010063464753329754, + -0.022954341024160385, + -0.043327245861291885, + -0.03641918674111366, + 0.05743281915783882, + 0.048282019793987274, + -0.05429093539714813, + 0.05907003954052925, + -0.07642009109258652, + 0.025752361863851547, + -0.03464999422430992, + 0.05247056111693382, + 0.03424034267663956, + 0.03930963948369026, + -0.03663739562034607, + -0.058385059237480164, + -0.07624063640832901, + -0.06222466006875038, + 0.06257922947406769, + 0.029671473428606987, + 0.05021577700972557, + 0.10403742641210556, + -0.00301796430721879, + -0.020103318616747856, + -0.0993877649307251, + 0.013996688649058342, + 0.035587962716817856, + -0.0025882211048156023, + -0.017957637086510658, + 0.13269080221652985, + -0.07094147801399231, + -0.023378731682896614, + -0.061559487134218216, + -0.033691518008708954, + -0.03166282922029495, + -0.0408717542886734, + 0.02524823509156704, + -0.052264630794525146, + -0.12771320343017578, + -0.02773118205368519, + -0.020939012989401817, + 0.04638027027249336, + 0.05984225869178772, + 0.04117579385638237, + 0.007709104102104902, + 0.04398377984762192, + 0.008344711735844612, + 0.03513913229107857, + -0.009467310272157192, + -0.01368632446974516, + 0.12907454371452332, + -0.04808364808559418, + 0.0896632969379425, + 0.03855416551232338 + ], + "goodreads-logo-bold||*updated*,reading,books,social media,logos": [ + 0.01008994597941637, + -0.012960139662027359, + -0.0063351597636938095, + 0.020145365968346596, + 0.05581367388367653, + 0.0022502476349473, + 0.015399615280330181, + -0.06024644523859024, + 0.0578182190656662, + 0.010593186132609844, + 0.01705988124012947, + 0.11250777542591095, + 0.045195672661066055, + -0.06730547547340393, + -0.049976300448179245, + -0.021551067009568214, + -0.016638318076729774, + 0.019788259640336037, + 0.026407459750771523, + -0.04960407316684723, + -0.02575729601085186, + 0.06443864107131958, + 0.0628572329878807, + 0.04364282265305519, + -0.017249779775738716, + 0.021143972873687744, + -0.04860580712556839, + -0.06544287502765656, + -0.03205240145325661, + -0.09038961678743362, + -0.03662640228867531, + -0.03446287289261818, + 0.06963656097650528, + -0.026967907324433327, + 0.026027580723166466, + 0.003520902479067445, + 0.037559013813734055, + 0.0191128458827734, + 0.0375010147690773, + 0.019679944962263107, + 0.01408304926007986, + -0.0850914791226387, + -0.01496168877929449, + 0.06674935668706894, + -0.029244020581245422, + -0.0007530968287028372, + -0.06482532620429993, + -0.009215435944497585, + 0.01091962680220604, + 0.05407547578215599, + -0.06915362179279327, + -0.11888325959444046, + -0.12475722283124924, + -0.07393264770507812, + 0.013691690750420094, + -0.0009641073411330581, + -0.038154397159814835, + -0.035718776285648346, + 0.006416223477572203, + -0.07406941056251526, + 0.03397645056247711, + -0.010590686462819576, + 0.008701332844793797, + 0.0931566134095192, + 0.09166411310434341, + -0.013080471195280552, + -0.02223379537463188, + 0.06680997461080551, + -0.04804738610982895, + 0.008934025652706623, + 0.007963387295603752, + 0.029878459870815277, + 0.013570353388786316, + 0.029988184571266174, + -0.048286862671375275, + 0.0016993433237075806, + 0.03511182963848114, + -0.04797707498073578, + 0.01871773973107338, + -0.08664099872112274, + -0.03593041002750397, + -0.019780615344643593, + 0.018512995913624763, + 0.013549442403018475, + 0.05028574913740158, + 0.07349984347820282, + -0.0455072857439518, + -0.08101152628660202, + 0.008247713558375835, + 0.023681266233325005, + -0.021738750860095024, + -0.029868416488170624, + 0.050909776240587234, + 0.02761917933821678, + -0.12505879998207092, + 0.03874564170837402, + -0.008417834527790546, + -0.029538201168179512, + -0.07369890809059143, + 0.11170372366905212, + 0.02375197969377041, + 0.11030683666467667, + 0.08620956540107727, + -0.06216854974627495, + -0.007178825791925192, + 0.016418883576989174, + -0.00722084566950798, + 0.031366825103759766, + -0.0002077684475807473, + 0.03818981721997261, + 0.008344444446265697, + 0.0028468670789152384, + -0.08386149257421494, + -0.007816141471266747, + -0.031112216413021088, + -0.07194656133651733, + 0.032036617398262024, + -0.03000783547759056, + 0.12012897431850433, + 0.052324987947940826, + -0.0031347351614385843, + 0.020186016336083412, + -0.07658028602600098, + -0.04560075327754021, + -0.04255170002579689, + -0.043932780623435974, + -0.019342295825481415, + -1.2546276203291862e-33, + 0.019685743376612663, + 0.09291940927505493, + -0.029738835990428925, + 0.07717356830835342, + -0.010828218422830105, + 0.012084631249308586, + -0.0667041465640068, + -0.061359867453575134, + -0.14670267701148987, + -0.029043179005384445, + 0.0631629228591919, + 0.10326255857944489, + -0.05658487603068352, + 0.12485119700431824, + -0.02070567198097706, + -0.05543236806988716, + -0.03395609185099602, + -0.0055703469552099705, + -0.028873689472675323, + -0.05950991064310074, + -0.07659175246953964, + -0.020097794011235237, + -0.025877613574266434, + -0.0318952314555645, + -0.014020555652678013, + -0.04865759611129761, + 0.023582782596349716, + 0.005711533594876528, + -0.02712971717119217, + 0.013354483991861343, + 0.027193447574973106, + -0.0026259750593453646, + -0.004957602825015783, + -0.03647974133491516, + -0.017458045855164528, + -0.04799889400601387, + -0.028715314343571663, + -0.06151050701737404, + 0.029518647119402885, + 0.019745463505387306, + -0.044242601841688156, + -0.034594543278217316, + -0.026213113218545914, + 0.025638941675424576, + 0.00775093724951148, + 0.16092945635318756, + -0.03639904037117958, + -0.055464763194322586, + 0.07362422347068787, + -0.03151969984173775, + -0.004941247869282961, + -0.05725065991282463, + -0.058133356273174286, + -0.06918669492006302, + -0.022771606221795082, + -0.04553363472223282, + -0.029004834592342377, + 0.07637719810009003, + 0.05146551877260208, + -0.06349164247512817, + 0.08583811670541763, + 0.03274538740515709, + 0.07721801847219467, + -0.018703659996390343, + -0.02562388777732849, + 0.05908871814608574, + -0.005365429446101189, + 0.02131100930273533, + 0.02630631998181343, + -0.043294940143823624, + -0.03755791485309601, + 0.025577036663889885, + 0.08582107722759247, + 0.04588768258690834, + -0.08182041347026825, + 0.0023451566230505705, + -0.06431495398283005, + -0.013000406324863434, + 0.006804295815527439, + 0.014552416279911995, + -0.016482993960380554, + -0.0314699187874794, + -0.04575637727975845, + 0.04950764775276184, + 0.02488667517900467, + 0.006062135100364685, + 0.013444030657410622, + -0.08756384998559952, + -0.03380335494875908, + 0.010166359134018421, + -0.06059869006276131, + 0.02980692684650421, + -0.013778329826891422, + -0.0359659418463707, + -0.11436817049980164, + -1.1403110702182072e-33, + 0.020226268097758293, + -0.030817190185189247, + 0.01847919635474682, + 0.040921762585639954, + -0.06337111443281174, + -0.0010472636204212904, + -0.04691401124000549, + 0.09704233705997467, + 0.03689062222838402, + 0.019876647740602493, + 0.06976394355297089, + 0.007903540506958961, + -0.1128259003162384, + -0.008160416968166828, + 0.01008899137377739, + -0.004553277511149645, + 0.09748521447181702, + 0.0003813705698121339, + -0.09973122179508209, + 0.012418055906891823, + -0.030621303245425224, + 0.002502152696251869, + -0.09593603760004044, + 0.07583262771368027, + 0.05055222660303116, + 0.044696398079395294, + 0.018422849476337433, + -0.01710963062942028, + -0.09563504904508591, + -0.03363990783691406, + -0.03454751521348953, + -0.022055497393012047, + 0.023814324289560318, + 0.08409714698791504, + -0.04275016114115715, + 0.022512998431921005, + 0.029885102063417435, + -0.10403032600879669, + -0.03945809602737427, + 0.0545383021235466, + 0.0730244442820549, + 0.030716821551322937, + 0.05090254545211792, + 0.010564967058598995, + -0.04193439334630966, + -0.007805871777236462, + -0.10470433533191681, + -0.05747809261083603, + -0.019306931644678116, + 0.10812941193580627, + 0.020940644666552544, + -0.03359866887331009, + 0.01197069976478815, + 0.013109466060996056, + -0.05629521235823631, + 0.037500087171792984, + 0.02169159986078739, + 0.02323678322136402, + 0.019893674179911613, + 0.021143564954400063, + -0.02156675048172474, + 0.04114436358213425, + -0.11999534070491791, + -0.005501489620655775, + 0.016164815053343773, + -0.09723015874624252, + 0.009230786003172398, + -0.03541091829538345, + -0.06037416681647301, + 0.042717598378658295, + 0.025970812886953354, + -0.029929144307971, + -0.0331452302634716, + -0.03298129886388779, + 0.00025370041839778423, + -0.01153865922242403, + 0.1250058263540268, + 0.022725477814674377, + -0.0683903694152832, + 0.053207285702228546, + -0.020878953859210014, + 0.025514768436551094, + -0.05828394368290901, + 0.12481525540351868, + 0.05944247543811798, + 0.011276176199316978, + -0.012982113286852837, + -0.0034507757518440485, + 0.00676537211984396, + 0.0006014870596118271, + 0.0035372981801629066, + 0.02992754988372326, + 0.06181298568844795, + 0.07212921231985092, + -0.038289397954940796, + -2.3064258058980158e-08, + -0.04378131404519081, + -0.0563025176525116, + -0.01945972815155983, + 0.01639441028237343, + 0.051110636442899704, + -0.004672113806009293, + -0.03832409158349037, + -0.06764740496873856, + -0.045126061886548996, + -0.021014736965298653, + 0.0019945723470300436, + -0.022826924920082092, + -0.07965967059135437, + -0.027435610070824623, + 0.04277881234884262, + -0.02323419786989689, + -0.04467310383915901, + 0.06603184342384338, + -0.012648184783756733, + -0.05388697236776352, + 0.024023428559303284, + 0.07247395068407059, + 0.05074469745159149, + 0.002048992784693837, + 0.03746999427676201, + 0.08910853415727615, + -0.020441459491848946, + -0.03754814714193344, + 0.005139562766999006, + 0.031765345484018326, + 0.02776884287595749, + 0.1072593703866005, + 0.015096182934939861, + -0.035726502537727356, + -0.05269134044647217, + 0.009862338192760944, + 0.016132352873682976, + 0.01692700758576393, + 0.0017289189854636788, + 0.09592641890048981, + 0.04398038983345032, + -0.0245707705616951, + 0.04814489185810089, + 0.01037406176328659, + -0.006835148669779301, + -0.003139326348900795, + 0.06003032997250557, + 0.035159576684236526, + -0.019169766455888748, + -0.0729055404663086, + 0.011093098670244217, + -0.009557271376252174, + 0.10498800128698349, + 0.017872698605060577, + -0.06936309486627579, + -0.06099498271942139, + 0.06809023767709732, + 0.09992596507072449, + -0.002588198985904455, + 0.029280150309205055, + 0.15751339495182037, + -0.04140234366059303, + -0.02884977124631405, + 0.0027227771934121847 + ], + "google-cardboard-logo-bold||virtual reality,vr,logos": [ + 0.002640441292896867, + 0.03511611372232437, + 0.021865472197532654, + -0.06255894154310226, + 0.055299513041973114, + -0.048394132405519485, + 0.015351387672126293, + -0.09971163421869278, + 0.008804288692772388, + -0.010116355493664742, + 0.011287580244243145, + 0.03348033130168915, + -0.01954255811870098, + -0.04863936826586723, + 0.021613506600260735, + -0.08097319304943085, + 0.08452839404344559, + 0.08886570483446121, + 0.0678369328379631, + 0.11655186861753464, + -0.015732964500784874, + 0.012347538955509663, + -0.011018582619726658, + 0.0025314611848443747, + 0.021764421835541725, + 0.07620075345039368, + 0.007339458912611008, + -0.030499693006277084, + 0.00658196397125721, + -0.07375453412532806, + -0.037375375628471375, + -0.025063350796699524, + 0.04602644219994545, + 0.034512825310230255, + 0.0711696669459343, + -0.02567877247929573, + -0.00562671385705471, + -0.08875533938407898, + -0.04041922464966774, + 0.005426752381026745, + -0.03365502879023552, + -0.11200045794248581, + 0.0046073077246546745, + 0.017089582979679108, + 0.03497849404811859, + 0.011558495461940765, + -0.00433035334572196, + -0.046683020889759064, + 0.07164978235960007, + -0.012484770268201828, + -0.00997095461934805, + -0.13952280580997467, + -0.05630296468734741, + -0.10759348422288895, + -0.06583096832036972, + -0.024814140051603317, + -0.0029684167820960283, + 0.0014335153391584754, + 0.02683771401643753, + 0.01793028973042965, + 0.09149878472089767, + 0.07157669961452484, + -0.011663666926324368, + 0.08890948444604874, + 0.05756378173828125, + -0.008513576351106167, + 0.04794696718454361, + -0.007830560207366943, + -0.08175544440746307, + -0.015109040774405003, + 0.023593014106154442, + 0.06812229007482529, + -0.018788134679198265, + -0.12292070686817169, + 0.008274214342236519, + -0.012263376265764236, + -0.008792766369879246, + -0.006936761550605297, + 0.047407981008291245, + 0.0022303862497210503, + 0.023156357929110527, + -0.01564989611506462, + -0.03512090817093849, + -0.0024105494376271963, + -0.030217858031392097, + 0.04061919450759888, + -0.01857280544936657, + 0.003915709443390369, + -0.02065378986299038, + -0.020376870408654213, + -0.11143060028553009, + 0.014545472338795662, + 0.014353321865200996, + 0.04547823593020439, + -0.06862077116966248, + -0.07305994629859924, + -0.02433505281805992, + -0.06029777228832245, + -0.005950345657765865, + 0.06624417006969452, + -0.014208861626684666, + 0.007527956273406744, + 0.12291182577610016, + -0.00555740762501955, + 0.03671526908874512, + 0.03629232943058014, + -0.026322411373257637, + -0.011015621945261955, + 0.05284864827990532, + 0.025668729096651077, + -0.06659188866615295, + -0.005291413515806198, + -0.0431353859603405, + -0.027446985244750977, + -0.0525064580142498, + 0.03252807632088661, + -0.028977738693356514, + -0.028667988255620003, + 0.12630252540111542, + -0.051570139825344086, + 0.04656504839658737, + -0.02380172535777092, + 0.037232790142297745, + -0.03214438632130623, + -0.03135773539543152, + -0.06642048060894012, + -0.010764382779598236, + -5.118038485974914e-33, + -0.027126489207148552, + 0.06719470769166946, + 0.05009220913052559, + 0.03645751625299454, + 0.07740354537963867, + 0.05988139659166336, + -0.038094568997621536, + -0.05426822602748871, + -0.07970225811004639, + 0.0502353198826313, + 0.049923673272132874, + 0.06911955773830414, + -0.02144915796816349, + 0.13868604600429535, + 0.06335274875164032, + -0.027308987453579903, + -0.08996863663196564, + -0.03052307292819023, + -0.10586074739694595, + -0.034953851252794266, + -0.03604178875684738, + -0.021043643355369568, + -2.617772224766668e-05, + 0.0289430133998394, + -0.04712275415658951, + 0.0426599495112896, + 0.006881792563945055, + -0.00812315009534359, + -0.028827372938394547, + 0.03199291601777077, + 0.045795802026987076, + -0.046222392469644547, + -0.0033029685728251934, + -0.0302890632301569, + -0.05776912346482277, + -0.008724295534193516, + -0.02341386489570141, + -0.048552680760622025, + -0.05275968462228775, + 0.07390308380126953, + -0.01628967560827732, + -0.0405740924179554, + -0.06055578216910362, + -0.0019603436812758446, + 0.023769911378622055, + 0.12919779121875763, + 0.07688269764184952, + -0.0925198644399643, + -0.007159159053117037, + 0.0003036529815290123, + 0.00644025020301342, + -0.04312484711408615, + -0.12771035730838776, + -0.09257108718156815, + -0.055149197578430176, + -0.11840203404426575, + 0.03980337828397751, + 0.08571246266365051, + -0.04420117661356926, + -0.05442209914326668, + 0.01626576855778694, + 0.009637433104217052, + 0.030389681458473206, + -0.012450829148292542, + -0.10580035299062729, + 0.032099027186632156, + 0.03497716784477234, + 0.007574948947876692, + 0.04221871867775917, + -0.00902563240379095, + 0.01836308091878891, + 0.019746962934732437, + 0.07023768872022629, + -0.07315357029438019, + -0.06745678186416626, + 0.0035700236912816763, + -0.0008748671971261501, + 0.014007415622472763, + -0.03825237601995468, + 0.007535905577242374, + -0.05154234543442726, + 0.005614511203020811, + 0.011197357438504696, + -0.0009861444123089314, + 0.013094539754092693, + -0.010434345342218876, + -0.0031166234984993935, + -0.0607970729470253, + -0.021213294938206673, + 0.01383290346711874, + -0.1128823459148407, + -0.002492952859029174, + 0.03684649243950844, + -0.018794020637869835, + -0.0907682403922081, + 2.4109108118746873e-33, + -0.028953999280929565, + 0.02583394944667816, + 0.05592599883675575, + 0.03275418281555176, + 0.00024041454889811575, + -0.046878084540367126, + 0.09479875862598419, + 0.08115150034427643, + 0.00749590527266264, + 0.013459254987537861, + 0.005130527541041374, + -0.012179995886981487, + -0.049939513206481934, + 0.0520048663020134, + 0.005970889702439308, + 0.01139331515878439, + 0.06396187096834183, + -0.07053547352552414, + -0.06628634035587311, + 0.03843928501009941, + 0.021361621096730232, + -0.0019312944496050477, + -0.004212896805256605, + 0.10129785537719727, + -0.010454175062477589, + 0.04280691221356392, + 0.05486246198415756, + -0.025784218683838844, + -0.019691938534379005, + 0.028219833970069885, + -0.026378083974123, + -0.01789933070540428, + 0.04045829549431801, + 0.05372949689626694, + 0.08433400839567184, + 0.04390082135796547, + 0.041143111884593964, + 0.01540374755859375, + -0.002228450495749712, + -0.0877801701426506, + -0.02639276161789894, + -0.016432663425803185, + 0.01098727062344551, + -0.030979830771684647, + -0.012130404822528362, + 0.027576327323913574, + -0.049264442175626755, + -0.05538583919405937, + -0.008644085377454758, + 0.06892099231481552, + 0.050918884575366974, + 0.025137338787317276, + -0.031824495643377304, + -0.00019603371038101614, + -0.08255526423454285, + -0.0252717062830925, + -0.10594122111797333, + 0.03167005255818367, + 0.08314202725887299, + 0.05120423808693886, + 0.0624234564602375, + 0.009670776315033436, + -0.07222452014684677, + -0.05152905359864235, + 0.02113277092576027, + 0.04746301472187042, + 0.015483136288821697, + 0.03410623222589493, + 0.02576628141105175, + 0.0382070317864418, + 6.60041332594119e-05, + 0.033978432416915894, + 0.005054933950304985, + 0.059348516166210175, + -0.062185414135456085, + -0.028577232733368874, + 0.07450131326913834, + 0.015561528503894806, + 0.04053983464837074, + 0.01781913824379444, + -0.04170253127813339, + -0.02922939509153366, + -0.008592457510530949, + 0.08924531191587448, + 0.06277665495872498, + 0.04419439658522606, + -0.04008134454488754, + -0.00703542260453105, + -0.016812654212117195, + 0.028539685532450676, + -0.03347043693065643, + 0.08878534287214279, + -0.0022521151695400476, + 0.05784452706575394, + -0.04069206863641739, + -1.6875640440616735e-08, + 0.028506359085440636, + -0.025013942271471024, + 0.027343476191163063, + -0.06299373507499695, + 0.013906915672123432, + -0.004176588729023933, + 0.04323611781001091, + -0.10005473345518112, + 0.015714701265096664, + -0.06232931837439537, + -0.0462874136865139, + -0.04737396910786629, + -0.05831723287701607, + 0.11245498806238174, + 0.049549832940101624, + 0.05779886618256569, + -0.17580634355545044, + 0.09202997386455536, + -0.014314946718513966, + -0.0008308854303322732, + -0.019522013142704964, + 0.07924839854240417, + 0.08837249875068665, + -0.0404367670416832, + -0.041396237909793854, + 0.0007132755126804113, + 0.0023834609892219305, + -0.004028113093227148, + 0.07777091860771179, + 0.044413283467292786, + 0.012931948527693748, + 0.07356792688369751, + -0.035819318145513535, + -0.048465050756931305, + -0.07973545789718628, + -0.08561121672391891, + -0.008188983425498009, + 0.012105700559914112, + -0.009926754049956799, + -0.023672617971897125, + 0.019882382825016975, + -0.0731341689825058, + 0.07680553197860718, + -0.03764701262116432, + 0.008126320317387581, + -0.016337018460035324, + 0.09290901571512222, + -0.024603931233286858, + -0.010797251015901566, + 0.011809105984866619, + -0.01906614564359188, + 0.018007012084126472, + -0.05373391881585121, + 0.0800013318657875, + 0.02498072385787964, + -0.09560548514127731, + 0.07303081452846527, + 0.07396882027387619, + 0.04330053925514221, + 0.0026255694683641195, + 0.0790545642375946, + 0.005735532846301794, + 0.010730496607720852, + 0.05353180691599846 + ], + "google-chrome-logo-bold||web browsers,internet": [ + -0.028874775394797325, + 0.01895890384912491, + 0.01593071036040783, + -0.0071792942471802235, + 0.05499420315027237, + -0.09639342874288559, + 0.03265275061130524, + -0.05977070331573486, + -0.022986827418208122, + -0.0541229322552681, + -0.015216398052871227, + 0.04317374527454376, + -0.01499903667718172, + -0.05743953213095665, + 0.07765902578830719, + -0.04905972257256508, + 0.0018482686718925834, + 0.00648809177801013, + 0.06046080216765404, + -0.0003101765760220587, + -0.015768790617585182, + -0.05162188410758972, + 0.025496887043118477, + -0.01632029563188553, + 0.005547693464905024, + 0.05219096690416336, + 0.03181765601038933, + -0.030587466433644295, + 0.009773013181984425, + -0.09112710505723953, + -0.05305571109056473, + -0.06377187371253967, + 0.05787867680191994, + -0.014773068949580193, + -0.019208084791898727, + -0.0324736125767231, + -0.009266544133424759, + 0.03510352224111557, + -0.02876797318458557, + 0.0639948695898056, + 0.0702139288187027, + -0.034720562398433685, + 0.06829359382390976, + -0.012722109444439411, + -0.04636365547776222, + -0.04307309538125992, + -0.030520809814333916, + 0.01713578589260578, + 0.04392625391483307, + -0.07049926370382309, + 0.03372684493660927, + -0.0761835128068924, + -0.07675006240606308, + -0.0388120599091053, + -0.057347532361745834, + -0.029569676145911217, + -0.01524484995752573, + -0.026234962046146393, + 0.05539877712726593, + 0.017073925584554672, + 0.008148289285600185, + 0.024703441187739372, + 0.054131221026182175, + 0.07844607532024384, + 0.07243243604898453, + 0.09858512133359909, + 0.0635211318731308, + 0.015508465468883514, + -0.10899953544139862, + 0.055508147925138474, + 0.08132234960794449, + 0.025341860949993134, + -0.06042435020208359, + -0.03517022356390953, + -0.03531758114695549, + 0.0030671830754727125, + 0.06991194188594818, + 0.07913058996200562, + -0.01821143552660942, + -0.005241642240434885, + -0.0900549590587616, + -0.0913628488779068, + 0.027295393869280815, + 0.029517775401473045, + 0.09726380556821823, + 0.03598226234316826, + -0.07626228779554367, + -0.07618306577205658, + 0.03271831199526787, + -0.0001849693217081949, + -0.09672977775335312, + -0.032018739730119705, + 0.0310821495950222, + 0.02937472052872181, + -0.050320833921432495, + -0.023394133895635605, + 0.039790622889995575, + -0.017072176560759544, + -0.04039664566516876, + 0.06920991837978363, + 0.02873636595904827, + 0.07854676246643066, + 0.10110130906105042, + -0.05605977401137352, + -0.01380893960595131, + 0.09307024627923965, + 0.0005103701842017472, + 0.09533524513244629, + 0.04907921329140663, + 0.0438162200152874, + 0.00534196849912405, + -0.03603794053196907, + -0.012133985757827759, + -0.03232109546661377, + -0.07302659749984741, + -0.048239510506391525, + -0.06248985230922699, + -0.04934331774711609, + 0.1478704810142517, + 0.04008672758936882, + -0.00878024473786354, + 0.008171366527676582, + -0.040940821170806885, + -0.04609137400984764, + 0.06685721129179001, + -0.04588746652007103, + 0.04530443251132965, + -3.939898538179307e-33, + 0.028956638649106026, + 0.012689497321844101, + -0.060437947511672974, + 0.004334582947194576, + 0.04030105099081993, + 0.025649378076195717, + -0.008751736022531986, + -0.07172081619501114, + -0.10157706588506699, + 0.006502309814095497, + 0.10790690034627914, + 0.12825120985507965, + -0.015448651276528835, + 0.06070525571703911, + 0.03565650060772896, + 0.033612582832574844, + 0.008999143727123737, + -0.028450898826122284, + -0.03779296949505806, + -0.060214702039957047, + -0.015172765590250492, + 0.014836284331977367, + -0.055513445287942886, + -0.06881912797689438, + -0.06978370249271393, + -0.042972128838300705, + -0.009239702485501766, + 0.01504258718341589, + -0.10322286933660507, + 0.03621242940425873, + 0.02928316593170166, + -0.013690376654267311, + 0.007047515828162432, + 0.05658422037959099, + -0.009416554123163223, + 0.01967707835137844, + -0.020237775519490242, + 0.015952492132782936, + -0.0012644779635593295, + 0.04800903797149658, + -0.03169675171375275, + -0.05538486689329147, + -0.027524305507540703, + 0.003619935130700469, + -0.054511088877916336, + 0.08087053894996643, + 0.012963586486876011, + -0.15570934116840363, + 0.02863185852766037, + 0.02584485150873661, + -0.017300806939601898, + -0.04470288008451462, + -0.03723675385117531, + -0.0556669719517231, + -0.02799154818058014, + -0.002296816324815154, + -0.0237872414290905, + 0.06044308841228485, + -0.025354018434882164, + -0.023310812190175056, + 0.06790527701377869, + 0.01291584875434637, + -0.011844119057059288, + -0.009843110106885433, + -0.021017521619796753, + 0.022825608029961586, + -0.025380583480000496, + 0.1139875128865242, + -0.030269809067249298, + -0.06965024024248123, + 0.032599177211523056, + -0.004569340497255325, + 0.12364838272333145, + 0.016476953402161598, + -0.0784202516078949, + -0.014407248236238956, + 0.020926939323544502, + 0.0014591466169804335, + -0.004129292443394661, + 0.0437358058989048, + 0.02411087602376938, + 0.01228699367493391, + -0.02217760682106018, + 0.0353754386305809, + -0.04026377201080322, + 0.009272461757063866, + 0.035445686429739, + -0.03071940504014492, + -0.04222340136766434, + 0.03987820819020271, + -0.04255429655313492, + -0.009652440436184406, + -0.0008864937699399889, + 0.011391746811568737, + -0.14034128189086914, + 2.1484041888948543e-34, + -0.021206382662057877, + 0.05029946193099022, + 0.013644504360854626, + 0.009979302063584328, + -0.08611380308866501, + 0.08005022257566452, + 0.1282522976398468, + 0.04733910784125328, + -0.03506145998835564, + 0.025545857846736908, + 0.10424619168043137, + 0.03971773013472557, + -0.08528262376785278, + -0.004852396436035633, + -0.003922850359231234, + 0.0321701318025589, + 0.01629866100847721, + -0.012132436968386173, + -0.0769403800368309, + -0.02981375716626644, + -0.039997369050979614, + -0.04241503030061722, + -0.06387501209974289, + 0.09475645422935486, + 0.052013691514730453, + 0.0229191854596138, + 0.004282630048692226, + -0.006601270753890276, + -0.09010734409093857, + -0.022543247789144516, + -0.060481589287519455, + 0.06044473871588707, + 0.019719557836651802, + 0.028686363250017166, + 0.008385607041418552, + 0.03750268742442131, + -0.021502846851944923, + -0.03689546138048172, + 0.0766851156949997, + -0.03733741119503975, + -0.0443132147192955, + 0.010441935621201992, + 0.0685235932469368, + 0.05585269257426262, + 0.004678001161664724, + 0.04589568078517914, + -0.04951871559023857, + -0.08323325216770172, + -0.05704488232731819, + 0.10593003779649734, + 0.0704210102558136, + 0.011722227558493614, + 0.009671389125287533, + 0.004121432080864906, + -0.06309320032596588, + -0.03008347563445568, + -0.044549036771059036, + 0.020292656496167183, + -0.034708887338638306, + 0.049049656838178635, + 0.007589982356876135, + -0.039484258741140366, + -0.07730303704738617, + 0.013432623818516731, + -0.0174199640750885, + 0.03355317562818527, + 0.004415315110236406, + 0.0127871073782444, + 0.010118087753653526, + 0.044501177966594696, + -0.014525489881634712, + -0.029184529557824135, + 0.039216116070747375, + 0.01702827960252762, + -0.01696748286485672, + -0.08861137181520462, + 0.1300821602344513, + 0.04076382890343666, + -0.1038595661520958, + -0.01191281620413065, + 0.02682967111468315, + 0.0047720810398459435, + -0.07784347981214523, + 0.02156614512205124, + -0.007771999575197697, + -0.033071331679821014, + -0.05933472141623497, + 0.027654387056827545, + 0.005075803957879543, + -0.045535627752542496, + -0.0830230787396431, + 0.030361181125044823, + -0.03377727419137955, + -0.026325678452849388, + -0.04526371508836746, + -1.868405519189764e-08, + 0.022056853398680687, + 0.02250618115067482, + -0.021353350952267647, + 0.04605063050985336, + 0.08391664177179337, + -0.025212043896317482, + -0.02734629064798355, + -0.11001470685005188, + -0.04437211528420448, + -0.05916162207722664, + -0.05450170487165451, + 0.03131154552102089, + -0.04933866485953331, + 0.006951858755201101, + 0.020549092441797256, + 0.019776063039898872, + -0.10321956127882004, + 0.045410413295030594, + 0.012440995313227177, + -0.060707878321409225, + -0.044264618307352066, + 0.00886246096342802, + 0.06799982488155365, + 0.028752068057656288, + 0.07335217297077179, + 0.05566004663705826, + -0.01977219618856907, + 0.0011577298864722252, + 0.058454692363739014, + 0.12337058782577515, + -0.09826145321130753, + 0.02729433961212635, + -0.05679955706000328, + -0.05754689872264862, + -0.03053252398967743, + -0.09082460403442383, + -0.01287035271525383, + -0.016539936885237694, + -0.0172848179936409, + 0.005639503709971905, + 0.013319709338247776, + 0.04012249410152435, + -0.001628568978048861, + -0.014830687083303928, + 0.016901757568120956, + 0.036400552839040756, + 0.012892189435660839, + 0.07766279578208923, + 0.01673598773777485, + -0.054179996252059937, + -0.02903221920132637, + -0.020023059099912643, + 0.028239548206329346, + 0.046320244669914246, + -0.04520423710346222, + -0.11353407055139542, + 0.06083390489220619, + 0.029386764392256737, + -0.03264428302645683, + 0.025663020089268684, + 0.13777585327625275, + -0.0014300198527052999, + 0.021269798278808594, + -0.009675572626292706 + ], + "google-drive-logo-bold||cloud,storage,backup,logos": [ + 0.006673287134617567, + 0.03184734657406807, + 0.028133176267147064, + -0.021178854629397392, + 0.08607105910778046, + -0.014768810011446476, + 0.030252018943428993, + -0.08933348208665848, + 0.07138050347566605, + 0.014777770265936852, + 0.002678880002349615, + 0.07690577208995819, + 0.11026285588741302, + -0.07616765052080154, + -0.021871518343687057, + -0.025829270482063293, + 0.009250986389815807, + -0.0006471717497333884, + 0.011143522337079048, + 0.038754627108573914, + -0.042378414422273636, + 0.01693069376051426, + 0.023665383458137512, + -0.01284907665103674, + 0.005962057504802942, + 0.023094944655895233, + 0.04310893267393112, + -0.0264324638992548, + -0.004604011308401823, + -0.08266884833574295, + -0.018712978810071945, + -0.06332103163003922, + 0.03310203552246094, + 0.05041416361927986, + 0.04385554417967796, + 0.04580764099955559, + -0.018370937556028366, + 0.012060342356562614, + 0.01106017455458641, + -0.03567429259419441, + 0.04494360834360123, + -0.12052806466817856, + 0.0060791936703026295, + -0.029375096783041954, + -0.035295527428388596, + 0.03356338292360306, + -0.03268818557262421, + -0.035309527069330215, + 0.04070363938808441, + -0.03808867186307907, + 0.021867213770747185, + -0.09700457751750946, + -0.13469669222831726, + -0.05774915963411331, + -0.045544009655714035, + -0.005320090800523758, + -0.018922334536910057, + 0.05517115071415901, + 0.051079053431749344, + 0.03916582465171814, + 0.024843016639351845, + -0.017872117459774017, + 0.021772241219878197, + 0.042345527559518814, + 0.11540888994932175, + 0.06169060990214348, + 0.017442578449845314, + 0.03321172297000885, + -0.12924893200397491, + 0.05148552730679512, + 0.10676548629999161, + 0.07033994048833847, + -0.04854658618569374, + -0.046839263290166855, + -0.02762049436569214, + 0.023361630737781525, + 0.03901100531220436, + 0.05376826599240303, + -0.046798206865787506, + -0.05381055548787117, + -0.047767046838998795, + -0.007574732881039381, + -0.0005952597130089998, + 0.08404044061899185, + 0.0259486623108387, + -0.013547906652092934, + -0.07842399924993515, + -0.026759883388876915, + -0.011732746846973896, + -0.021747833117842674, + -0.023364407941699028, + -0.010298240929841995, + 0.06303362548351288, + 0.017618661746382713, + -0.08551513403654099, + 0.007031191140413284, + -0.029950492084026337, + -0.013888247311115265, + 0.015753546729683876, + 0.02221386320888996, + -0.02672455459833145, + 0.08535971492528915, + 0.11879409104585648, + -0.09217599034309387, + -0.01200044248253107, + 0.04590995982289314, + -0.016525495797395706, + -0.006620706990361214, + 0.012930667027831078, + -0.006856753956526518, + 0.02751506119966507, + 0.0003327453159727156, + -0.09850375354290009, + 0.02755880169570446, + -0.04351244494318962, + -0.056550875306129456, + -0.09046952426433563, + -0.04226110875606537, + 0.07118383795022964, + -0.020039360970258713, + 0.03440599888563156, + -0.04650946706533432, + 0.013668986968696117, + -0.10177358239889145, + -0.036958519369363785, + -0.03354240581393242, + -0.02423255331814289, + -4.7607980385783434e-33, + 0.005111939739435911, + 0.04277033358812332, + 0.02209876850247383, + 0.008685225620865822, + 0.020785508677363396, + 0.052959639579057693, + -0.039626594632864, + -0.052181389182806015, + -0.11367861181497574, + -0.004939055535942316, + 0.06714603304862976, + 0.12073467671871185, + -0.030993524938821793, + 0.09621433168649673, + 0.02268430031836033, + 0.016879977658391, + -0.015252750366926193, + 0.024074016138911247, + -0.03720362111926079, + -0.12051881849765778, + -0.029315285384655, + 0.05054561048746109, + -0.0425739660859108, + -0.047274596989154816, + -0.02938607893884182, + -0.03964858129620552, + 0.10032705962657928, + -0.029910951852798462, + 0.0063632396049797535, + -0.011411524377763271, + 0.010247888043522835, + 0.0066278912127017975, + 0.04569772258400917, + 0.05658869072794914, + -0.006100431550294161, + 0.01790238916873932, + -0.11344050616025925, + -0.006105647422373295, + -0.01437240932136774, + 0.06143835559487343, + 0.017309103161096573, + -0.07267862558364868, + -0.021420886740088463, + -0.011263751424849033, + -0.03451259061694145, + 0.11602140963077545, + 0.04787769168615341, + -0.1793123185634613, + 0.030393186956644058, + 0.021594025194644928, + -0.01589958183467388, + -0.03254026174545288, + -0.05752519518136978, + -0.07564650475978851, + -0.03425939381122589, + -0.04781050980091095, + -0.009185566566884518, + 0.0007738156127743423, + -0.0030012321658432484, + -0.07085692137479782, + 0.031995438039302826, + 0.025992462411522865, + 0.0890188068151474, + -0.011908471584320068, + -0.07075858861207962, + 0.03654439374804497, + 0.01537477970123291, + 0.0575089305639267, + 0.03944752737879753, + -0.01916118711233139, + 0.07243865728378296, + -0.02806709334254265, + 0.06614512205123901, + 0.006680015008896589, + -0.008207415230572224, + -0.015677042305469513, + 0.001302147749811411, + 0.023359013721346855, + -0.05110934376716614, + 0.03445522114634514, + -0.07512815296649933, + -0.08473114669322968, + -0.06639043241739273, + 0.08360052108764648, + -0.023281749337911606, + 0.04443960636854172, + 0.05684298649430275, + -0.011583545245230198, + -0.03711186349391937, + 0.019838083535432816, + -0.09427464753389359, + -0.023631377145648003, + 0.01771317422389984, + -0.05615442618727684, + -0.1153852716088295, + 1.5147060209551058e-33, + 0.0640307366847992, + -0.0273054838180542, + 0.07627411931753159, + 0.035751741379499435, + -0.02066490240395069, + 0.005852943751960993, + 0.07389768213033676, + 0.07701779156923294, + -0.0610312819480896, + 0.042916808277368546, + 0.053934209048748016, + 0.02861054614186287, + -0.07116056978702545, + -0.041207849979400635, + -0.04096003994345665, + 0.009143349714577198, + 0.057685453444719315, + -0.04568637162446976, + -0.10108233243227005, + -0.017236484214663506, + -0.06450542062520981, + -8.29964701551944e-05, + -0.006052536889910698, + 0.11563939601182938, + -0.013325955718755722, + 0.03124033473432064, + 0.01764954999089241, + 0.019075438380241394, + -0.01690685749053955, + 0.0003532207920216024, + -0.05695628002285957, + 0.026228981092572212, + 0.009479586035013199, + 0.0478406623005867, + 0.010310291312634945, + -0.028659729287028313, + -0.019129285588860512, + -0.03398948907852173, + -0.03219316899776459, + -0.00873970240354538, + -0.07660567760467529, + -0.0674629732966423, + 0.06908371299505234, + 0.0156831294298172, + 0.013634718954563141, + -0.03925492241978645, + -0.032170370221138, + -0.08323423564434052, + -0.0676698163151741, + 0.0856517031788826, + 0.07546523958444595, + 0.01024006400257349, + -0.026418078690767288, + 0.03684083744883537, + -0.02002853900194168, + -0.01459982618689537, + 0.001388407195918262, + 0.07296817004680634, + -0.016995420679450035, + 0.06066479906439781, + 0.041598401963710785, + -0.05553816258907318, + -0.003874667454510927, + -0.04988698661327362, + -0.07902006804943085, + -2.9752831324003637e-05, + 0.04159729182720184, + -0.031880442053079605, + -0.08470693975687027, + 0.05389402061700821, + -0.047639697790145874, + -0.0427849143743515, + 0.01432816032320261, + 0.029779136180877686, + -0.04703067988157272, + -0.06341192126274109, + 0.08402314782142639, + -0.01790044642984867, + 0.00446257833391428, + 0.005858653225004673, + 0.0008242956828325987, + 0.03904193267226219, + -0.07071556150913239, + 0.0785866379737854, + 0.05290082097053528, + -0.05609331652522087, + -0.05375116690993309, + 0.02660652995109558, + 0.042007964104413986, + 0.01000090129673481, + -0.09090190380811691, + 0.08629649132490158, + 0.02695164829492569, + 0.05734900012612343, + -0.04310920834541321, + -1.7965792409313508e-08, + -0.03036624938249588, + 0.022607600316405296, + 0.06846301257610321, + 0.019731363281607628, + 0.022125069051980972, + -0.06630465388298035, + 0.046907324343919754, + 0.007500567473471165, + -0.01174925547093153, + -0.044481463730335236, + 0.0042328680865466595, + -0.11246700584888458, + -0.0672573447227478, + 0.0035964951384812593, + -0.04514998197555542, + 0.04283583536744118, + -0.06395325064659119, + 0.0230159442871809, + 0.0187726691365242, + -0.04934746026992798, + -0.043041810393333435, + 0.05262509733438492, + 0.06714240461587906, + 0.03964213281869888, + 0.0509735643863678, + 0.040474165230989456, + 0.01880032941699028, + -0.025806980207562447, + 0.004921832587569952, + 0.0055133383721113205, + 0.013980154879391193, + 0.04684952273964882, + 0.030476555228233337, + -0.013825176283717155, + -0.01597101241350174, + -0.026115242391824722, + 0.008805393241345882, + 0.03151572495698929, + -0.0005403816467151046, + 0.04568177089095116, + 0.017455779016017914, + 0.012449489906430244, + 0.020901352167129517, + -0.025517795234918594, + 0.0031959780026227236, + -0.0012894492829218507, + 0.058725107461214066, + 0.10693490505218506, + -0.07324985414743423, + 0.0342111736536026, + -0.031410593539476395, + -0.04370652139186859, + -0.04805220291018486, + 0.09215115755796432, + 0.012299071997404099, + -0.1104234904050827, + 0.026173584163188934, + 0.07636681944131851, + 0.03382613882422447, + 0.08307880908250809, + 0.14431379735469818, + -0.013431201688945293, + 0.009227564558386803, + -0.014862208627164364 + ], + "google-logo-bold||logos,search engine,phone,mobile,android": [ + -0.03405027464032173, + 0.046313874423503876, + -0.004025793168693781, + -0.028964225202798843, + 0.08021864295005798, + -0.06505785137414932, + 0.026466306298971176, + -0.07066289335489273, + 0.019653715193271637, + -0.032061316072940826, + 0.038978107273578644, + 0.06543600559234619, + 0.08371894806623459, + -0.059603653848171234, + 0.0574822872877121, + -0.04001987352967262, + 0.020706096664071083, + 0.02439948357641697, + 0.023211564868688583, + -0.037500713020563126, + 0.045272257179021835, + 0.035682860761880875, + 0.055188342928886414, + -0.019291678443551064, + 0.02746931090950966, + 0.0010541456285864115, + 0.008156375959515572, + -0.049320902675390244, + 0.02039378508925438, + -0.0986204743385315, + -0.04018166661262512, + 0.02289622277021408, + 0.10169568657875061, + 0.07229091227054596, + -0.008539650589227676, + -0.033959027379751205, + -0.012011861428618431, + 0.024130910634994507, + 0.005939763505011797, + 0.06363264471292496, + 0.017374105751514435, + -0.07693708688020706, + 0.036914724856615067, + 0.028511343523859978, + -0.032219089567661285, + 0.025193452835083008, + -0.0828532725572586, + -0.023300282657146454, + 0.03642915189266205, + -0.022396208718419075, + 0.0034676215145736933, + -0.09130707383155823, + -0.11297770589590073, + -0.04980531707406044, + -0.05229274183511734, + -0.033511850982904434, + -0.0346008762717247, + 0.024881167337298393, + 0.06139056757092476, + 0.0057083540596067905, + 0.041781943291425705, + 0.06437558680772781, + 0.009016782976686954, + 0.11480727046728134, + 0.08439773321151733, + 0.024284103885293007, + 0.03716317191720009, + -0.007003732491284609, + -0.05991470441222191, + -0.006948153953999281, + 0.10020200908184052, + -0.017935344949364662, + -0.03454802930355072, + -0.03769050911068916, + -0.030111175030469894, + 0.048867952078580856, + 0.06569011509418488, + 0.042611345648765564, + -0.03969733417034149, + -0.06094380095601082, + -0.08473039418458939, + -0.06650105118751526, + 0.0014573134249076247, + 0.04636432230472565, + 0.06774440407752991, + 0.02015732228755951, + -0.062117211520671844, + -0.050224386155605316, + 0.021147342398762703, + -0.011113205924630165, + -0.08865687996149063, + 0.001531464047729969, + 0.024990763515233994, + 0.010957877151668072, + -0.09622567147016525, + 0.036690399050712585, + -0.04383869469165802, + -0.06258966773748398, + -0.06011851504445076, + 0.054540932178497314, + 0.0009865573374554515, + 0.06731163710355759, + 0.08582135289907455, + -0.028620850294828415, + -0.0252889022231102, + 0.06322413682937622, + -0.02538800798356533, + -0.009431511163711548, + 0.06121618673205376, + 0.06637465208768845, + 0.02217801846563816, + -0.033900950103998184, + -0.03480317071080208, + -0.058267343789339066, + -0.06266089528799057, + -0.058935392647981644, + -0.06443427503108978, + -0.05044230446219444, + 0.16074714064598083, + 0.022801216691732407, + -0.03721984103322029, + -0.01250955555588007, + -0.07385370880365372, + -0.13086120784282684, + 0.007146965246647596, + 0.019689105451107025, + -0.06621300429105759, + -3.680970928155743e-33, + 0.06641791760921478, + 0.05413725599646568, + -0.008879350498318672, + 0.0342525951564312, + -0.04373828321695328, + 0.053112782537937164, + -0.03424009308218956, + -0.034711599349975586, + -0.12058612704277039, + -0.00037264652200974524, + 0.06525398045778275, + 0.115163654088974, + -0.050248872488737106, + 0.08247488737106323, + 0.061385106295347214, + -0.022813009098172188, + -0.0024196808226406574, + -0.0442085936665535, + -0.06103367358446121, + -0.03567269816994667, + -0.032566241919994354, + 0.0171465203166008, + -0.04270477220416069, + -0.04109863564372063, + -0.03273707255721092, + -0.019492847844958305, + 0.03800429403781891, + -0.04060617834329605, + -0.05838429182767868, + 0.021098656579852104, + 0.01611664518713951, + -0.008317036554217339, + 0.011032886803150177, + 0.033253710716962814, + -0.05924141779541969, + -0.01097546610981226, + -0.08129842579364777, + -0.024513330310583115, + 0.013917431235313416, + 0.03187583386898041, + -0.10835818946361542, + -0.05845601111650467, + -0.047326862812042236, + 0.0005343743832781911, + 0.0046563404612243176, + 0.14704366028308868, + -0.04344234988093376, + -0.16151249408721924, + 0.06121308356523514, + 0.010174569673836231, + 0.019083917140960693, + -0.01914968155324459, + -0.02366321161389351, + -0.08178852498531342, + -0.009201621636748314, + 0.005094416439533234, + -0.0051321894861757755, + 0.0645369365811348, + -0.03978218510746956, + -0.019986849278211594, + 0.03102232702076435, + 0.014157398603856564, + 0.034728363156318665, + 0.013879794627428055, + -0.01922907680273056, + 0.056666698306798935, + 0.0035701391752809286, + 0.03967827558517456, + 0.01267574355006218, + 0.009176908992230892, + 0.038072362542152405, + -0.014255727641284466, + 0.13455618917942047, + 0.04045436531305313, + -0.07510391622781754, + 1.3474550542014185e-06, + 0.03934762626886368, + -0.019424552097916603, + -0.03473229333758354, + 0.014992667362093925, + -0.04783403128385544, + -0.032801553606987, + -0.01697664149105549, + 0.044012196362018585, + 0.01823156513273716, + 0.014032309874892235, + 0.017061693593859673, + -0.10415258258581161, + -0.04072405397891998, + 0.03969227522611618, + -0.10254640877246857, + 0.007528110407292843, + -0.0019356602570042014, + 0.006455897353589535, + -0.1461048424243927, + 3.6143168168797693e-35, + 0.0022710536140948534, + -0.01112081203609705, + 0.0515965111553669, + -0.009249895811080933, + -0.024793127551674843, + 0.014386221766471863, + 0.09554854780435562, + 0.05436640977859497, + -0.07322832196950912, + 0.06116809695959091, + 0.09146872907876968, + 0.03329070284962654, + -0.04806964471936226, + -0.05519228056073189, + -0.06143864244222641, + 0.04393470287322998, + 0.05491860583424568, + -0.007443801034241915, + -0.09735576808452606, + 0.021814396604895592, + -0.05854235962033272, + 0.02089623361825943, + -0.04403693974018097, + 0.1235341727733612, + -0.0067083342000842094, + -0.009961193427443504, + 0.016591569408774376, + -0.017105167731642723, + -0.07453121244907379, + -0.03179115429520607, + -0.013567723333835602, + -0.00722697377204895, + 0.03148207813501358, + 0.0650143101811409, + 0.009235220961272717, + 0.019274236634373665, + -0.014014182612299919, + -0.0697096735239029, + 0.03229910880327225, + 0.023540589958429337, + -0.04097435995936394, + 0.009167891927063465, + 0.0671149492263794, + 0.007002931088209152, + 0.0025693830102682114, + -0.022142427042126656, + -0.05853581428527832, + -0.08306704461574554, + -0.05457017943263054, + 0.07458274811506271, + 0.06682559847831726, + 0.018876202404499054, + 0.004484835546463728, + -0.012556752189993858, + -0.054164256900548935, + -0.02447275072336197, + 0.001532016322016716, + 0.030545450747013092, + -0.016189374029636383, + 0.05462965369224548, + 0.04415292292833328, + -0.038982540369033813, + -0.07337361574172974, + 0.041888970881700516, + -0.05495725944638252, + 0.018124066293239594, + 0.07442104816436768, + -0.0038745414931327105, + -0.03090685047209263, + 0.03914051130414009, + 0.023467689752578735, + -0.03060017339885235, + 0.026339860633015633, + 0.06804659217596054, + -0.04359623044729233, + -0.03120977245271206, + 0.07155508548021317, + 0.051376309245824814, + -0.03534410148859024, + 0.008289244957268238, + 0.018591227009892464, + 0.036989010870456696, + -0.06939205527305603, + 0.07948343455791473, + 0.02182743325829506, + -0.008317568339407444, + -0.0626274049282074, + 0.03158964589238167, + 0.018978441134095192, + -0.023089980706572533, + -0.08699189871549606, + 0.05760643258690834, + -0.0012939369771629572, + 0.009305658750236034, + -0.05816935747861862, + -1.9834038411659094e-08, + 0.0387597493827343, + -0.029828855767846107, + 0.053787220269441605, + -0.017395203933119774, + 0.057765938341617584, + -0.027253756299614906, + -0.008020326495170593, + -0.07213449478149414, + -0.006560789421200752, + -0.06307248026132584, + -0.018013495951890945, + -0.015380744822323322, + -0.1041409969329834, + 0.0437050387263298, + 0.04346482455730438, + 0.006994533818215132, + -0.06607375293970108, + 0.04215824231505394, + 0.009954364970326424, + -0.0320592038333416, + -0.054169487208127975, + 0.0859370306134224, + 0.015686310827732086, + -0.0004876758612226695, + 0.04248075187206268, + 0.03174097090959549, + -0.04724039509892464, + -0.02410097047686577, + 0.0758737176656723, + 0.06220032274723053, + -0.015390207059681416, + 0.061147548258304596, + 0.009711370803415775, + -0.0733003318309784, + -0.040432728826999664, + -0.010861164890229702, + 0.010589895769953728, + -0.06767793744802475, + -0.024755695834755898, + 0.050491299480199814, + 0.04946333169937134, + 0.016338862478733063, + 0.03401312977075577, + -0.011348983272910118, + -0.013847299851477146, + 0.019317584112286568, + 0.0960741937160492, + 0.03766946867108345, + -0.02339913509786129, + -0.04266359657049179, + -0.03950414061546326, + -0.0012509542284533381, + -0.022224601358175278, + 0.02996841073036194, + -0.014358622953295708, + -0.13431598246097565, + 0.011392605490982533, + 0.02689366042613983, + 0.033451005816459656, + 0.01569298841059208, + 0.16705898940563202, + -0.0027387316804379225, + 0.0027393356431275606, + -0.014359768480062485 + ], + "google-photos-logo-bold||album,pictures,photography": [ + -0.00436432147398591, + 0.05638354644179344, + 1.635990702197887e-05, + 0.03286099061369896, + 0.07505622506141663, + -0.041172418743371964, + 0.05597885698080063, + -0.055454034358263016, + 0.04598947614431381, + -0.0071908230893313885, + 0.04421688988804817, + 0.05550728738307953, + 0.07002049684524536, + -0.048876550048589706, + 0.04071573540568352, + -0.005907431244850159, + 0.008011923171579838, + 0.029100781306624413, + -0.005740234162658453, + -0.009768540039658546, + -0.05396939069032669, + 0.005141213536262512, + 0.07396923005580902, + -0.0031549797859042883, + 0.006097817327827215, + 0.008769291453063488, + 0.016631392762064934, + -0.048660773783922195, + 0.02125510200858116, + -0.1013413667678833, + -0.028454650193452835, + -0.008198688738048077, + 0.07994575053453445, + 0.05914522334933281, + 0.040239445865154266, + 0.017406536266207695, + -0.010797778144478798, + 0.019212516024708748, + 0.004382080398499966, + 0.053341176360845566, + 0.0337788462638855, + -0.07618197053670883, + -0.0030497326515614986, + -0.005086589604616165, + -0.044146474450826645, + 0.01371619664132595, + -0.041269708424806595, + -0.02067456766963005, + 0.036182232201099396, + 0.0007561275851912796, + -0.0019977688789367676, + -0.09997477382421494, + -0.1516156643629074, + -0.05893830582499504, + -0.008837454952299595, + -0.05172574147582054, + -0.07448021322488785, + -0.005288457032293081, + 0.06970366090536118, + 0.018730243667960167, + 0.02940315380692482, + 0.026406481862068176, + -0.008104627951979637, + 0.08884845674037933, + 0.11255847662687302, + 0.052680689841508865, + 0.022599607706069946, + -0.01889471709728241, + -0.05619603767991066, + -0.022755736485123634, + 0.10072703659534454, + 0.03569125011563301, + -0.044238656759262085, + -0.029973626136779785, + -0.04203439876437187, + -0.014473766088485718, + 0.02697923220694065, + 0.00665281992405653, + -0.02699809893965721, + -0.07117799669504166, + -0.003713828045874834, + -0.028092388063669205, + 0.019611550495028496, + 0.005139895714819431, + 0.06868729740381241, + -0.02185842953622341, + -0.08192725479602814, + -0.06560216099023819, + -0.0491001233458519, + -0.06310132145881653, + -0.11278577893972397, + -0.02617349848151207, + 0.005979579873383045, + -0.008940540254116058, + -0.10403139889240265, + 0.03465524688363075, + -0.004292611964046955, + -0.07743842899799347, + -0.04669884592294693, + 0.05630851164460182, + 0.023002227768301964, + 0.09329961240291595, + 0.08208386600017548, + -0.037933673709630966, + -0.0206470787525177, + 0.03146328404545784, + -0.04336537793278694, + 0.008213427849113941, + 0.02971646375954151, + 0.04737180098891258, + 0.012288065627217293, + -0.0006422020378522575, + -0.07744218409061432, + -0.040129952132701874, + -0.03804958611726761, + -0.09353809058666229, + -0.06833051890134811, + -0.06183455139398575, + 0.13879476487636566, + -0.045749224722385406, + 0.012858841568231583, + -0.03638460487127304, + -0.061550967395305634, + -0.07422644644975662, + -0.06285148113965988, + -0.022684235125780106, + -0.007437816821038723, + -4.572231479633171e-33, + 0.052039168775081635, + 0.01612205058336258, + 0.027717771008610725, + 0.056943535804748535, + 0.03573695942759514, + 0.021287597715854645, + -0.059824202209711075, + -0.03920726478099823, + -0.1600944846868515, + 0.014617827720940113, + 0.07180611044168472, + 0.08485327661037445, + -0.023219101130962372, + 0.09434091299772263, + 0.057748306542634964, + 0.04603758081793785, + -0.03376741707324982, + -0.022994190454483032, + -0.032450444996356964, + -0.04412506893277168, + -0.07316990941762924, + -0.011805831454694271, + -0.024755077436566353, + 0.00023492012405768037, + 0.0026006747502833605, + -0.040722109377384186, + 0.09716694802045822, + -0.05525198206305504, + -0.05152921378612518, + 0.00455992016941309, + 0.0010043951915577054, + 0.024406149983406067, + 0.04123300686478615, + 0.02125987596809864, + 0.0014690031530335546, + -0.00856150221079588, + -0.08845708519220352, + -0.012748531065881252, + 0.03801186755299568, + 0.020296776667237282, + -0.036575548350811005, + -0.022984130308032036, + -0.04984264820814133, + 0.019841516390442848, + 0.005267753731459379, + 0.2072291523218155, + -0.029924282804131508, + -0.09603322297334671, + 0.04324491322040558, + 0.03116115927696228, + 0.050122711807489395, + -0.04144533351063728, + -0.06798403710126877, + -0.019625607877969742, + -0.029987426474690437, + -0.02717340551316738, + -0.02672651596367359, + 0.043862130492925644, + -0.026392772793769836, + -0.03281402215361595, + 0.07862751185894012, + 0.05407322943210602, + 0.023327110335230827, + -0.014599790796637535, + -0.02171867899596691, + 0.08958330750465393, + -0.005909433122724295, + 0.04865729436278343, + 0.04511253535747528, + 0.009833376854658127, + -0.01570015586912632, + 0.022532936185598373, + 0.09275925159454346, + 0.0007361329044215381, + 0.006056374870240688, + 0.025279827415943146, + 0.028070420026779175, + -0.029576383531093597, + -0.01617392897605896, + 0.06263402104377747, + -0.07565987855195999, + -0.015436222776770592, + -0.026269374415278435, + 0.0881328284740448, + -0.038114890456199646, + 0.016547370702028275, + 0.025114677846431732, + -0.03634842857718468, + -0.06080455332994461, + 0.024050651118159294, + -0.09318241477012634, + 0.060782454907894135, + 0.000205297939828597, + 0.019555650651454926, + -0.13385942578315735, + 1.4503168485208764e-33, + 0.06078984588384628, + 0.0084255151450634, + 0.027025941759347916, + -0.026638034731149673, + -0.007769906893372536, + 0.0008016673964448273, + 0.06784867495298386, + 0.07852333784103394, + -0.035873763263225555, + 0.05542789772152901, + 0.08604574203491211, + -0.011037989519536495, + -0.10648157447576523, + -0.046680063009262085, + -0.05828253924846649, + -0.028069373220205307, + 0.053722649812698364, + -0.01009383238852024, + -0.13682545721530914, + 0.020214857533574104, + -0.04377119988203049, + 0.03540949523448944, + -0.016941683366894722, + 0.08943559974431992, + -0.04480037838220596, + 0.05860982462763786, + 0.06145324185490608, + -0.009156975895166397, + -0.036118604242801666, + -0.010150783695280552, + -0.01192872691899538, + -0.012676316313445568, + 0.05468565225601196, + 0.019695181399583817, + -0.008004260249435902, + 0.00869210809469223, + 0.036453306674957275, + -0.06483890116214752, + 0.02985871210694313, + 0.03313031047582626, + -0.0690358579158783, + 0.020256977528333664, + 0.032270707190036774, + 0.028592417016625404, + 0.005569871980696917, + -0.0662936419248581, + -0.024972422048449516, + -0.07007438689470291, + -0.05030636489391327, + 0.08077230304479599, + 0.009454354643821716, + -0.01963886246085167, + -0.00879000872373581, + 0.05126295983791351, + -0.048530906438827515, + -0.030293388292193413, + -0.04142088070511818, + 0.00524669187143445, + 0.037499282509088516, + 0.06136597320437431, + 0.023871105164289474, + -0.01109375897794962, + -0.06828074902296066, + 0.0034872752148658037, + -0.06889915466308594, + -0.020528722554445267, + 0.013985938392579556, + -0.04751437157392502, + -0.04669683799147606, + 0.09470145404338837, + -0.014419681392610073, + -0.007710755802690983, + 0.06302601099014282, + 0.07217220216989517, + -0.016567928716540337, + -0.029136594384908676, + 0.07836366444826126, + 0.03605882450938225, + -0.0014176757540553808, + -0.013103090226650238, + -0.023814242333173752, + -0.013892073184251785, + -0.06642287969589233, + 0.09821124374866486, + 0.05664586275815964, + 0.0038778611924499273, + -0.024267107248306274, + -0.0426177941262722, + 0.033182527869939804, + -0.047311749309301376, + -0.05815369263291359, + 0.03727113828063011, + 0.003550022840499878, + 0.025203077122569084, + -0.03120986744761467, + -1.7977376032263237e-08, + 0.013433579355478287, + -0.009063953533768654, + 0.03592479228973389, + -0.024752849712967873, + 0.06492900103330612, + -0.012076042592525482, + 0.00448555126786232, + -0.0470602847635746, + -0.010378173552453518, + -0.06700494885444641, + 0.033178649842739105, + -0.028264913707971573, + -0.10230357199907303, + 0.018841352313756943, + -0.00556639488786459, + 0.012358161620795727, + -0.06767871975898743, + 0.07015626132488251, + 0.012531991116702557, + -0.037767525762319565, + -0.07142680138349533, + 0.016252240166068077, + 0.06194058433175087, + -0.019101833924651146, + 0.031430669128894806, + 0.009992549195885658, + -0.018672946840524673, + -0.036969661712646484, + 0.04499742016196251, + 0.024282272905111313, + 0.00268696341663599, + 0.08255200833082199, + 0.05148519203066826, + 0.0151336919516325, + -0.03716535493731499, + -0.07005610316991806, + -0.022897804155945778, + -0.04755126312375069, + -0.07902709394693375, + -0.002672136528417468, + 0.009932320564985275, + 0.013470401987433434, + 0.02451472170650959, + 0.016554072499275208, + 0.0194372721016407, + 0.03285602480173111, + 0.17464187741279602, + 0.059746578335762024, + -0.06209194287657738, + -0.0073218089528381824, + -0.05436643213033676, + -0.027834594249725342, + 0.005333792883902788, + 0.07803047448396683, + -0.024576686322689056, + -0.14443370699882507, + 0.03614949807524681, + 0.054071567952632904, + 0.01579378917813301, + 0.05012530833482742, + 0.13496683537960052, + -0.021668506786227226, + -0.035706907510757446, + -0.0028456123545765877 + ], + "google-play-logo-bold||logos,games,apps,applications,play store,app store,phone,mobile,android": [ + 0.0021188431419432163, + 0.01794521138072014, + -0.015237598679959774, + -0.11130934208631516, + 0.06319841742515564, + 0.005726275499910116, + 0.08099311590194702, + -0.04140695929527283, + 0.02451816201210022, + 0.04172690585255623, + 0.03606439009308815, + 0.03777020424604416, + 0.07986846566200256, + -0.04756264016032219, + 0.08407778292894363, + -0.03025839850306511, + 0.00864742323756218, + 0.04317548871040344, + 0.036228593438863754, + -0.04329932853579521, + 0.025372106581926346, + -0.0015317947836592793, + 0.019148189574480057, + 0.01376224122941494, + 0.005646782461553812, + 0.02146989293396473, + 0.030595995485782623, + -0.0022496532183140516, + -0.00970589928328991, + -0.10517119616270065, + -0.03833981603384018, + 0.022648416459560394, + 0.12460874021053314, + 0.034954629838466644, + 0.006512219551950693, + -0.0392138734459877, + -0.010877464897930622, + -0.030013006180524826, + -0.013267229311168194, + 0.003995323088020086, + 0.024127904325723648, + -0.07478787750005722, + 0.026621850207448006, + 0.043463241308927536, + -0.0365326926112175, + 0.016056550666689873, + -0.10126317292451859, + -0.028719212859869003, + 0.031083861365914345, + 0.040140096098184586, + 0.03371201455593109, + -0.08370345830917358, + -0.13316667079925537, + -0.05047863721847534, + -0.0376741923391819, + -0.003258382435888052, + -0.029728839173913002, + 0.05937102809548378, + 0.07545178383588791, + 0.058945268392562866, + 0.03426225483417511, + 0.017269419506192207, + 0.0064779892563819885, + 0.13790373504161835, + 0.042482201009988785, + 0.006063932087272406, + 0.015634378418326378, + -0.011021819896996021, + -0.08613019436597824, + -0.05201695114374161, + 0.04910250008106232, + 0.011329030618071556, + -0.011797496117651463, + -0.05232103168964386, + -0.06216634809970856, + 0.0029469341970980167, + 0.03364242985844612, + 0.0012500848388299346, + -0.07244749367237091, + -0.08735311776399612, + -0.06784845143556595, + -0.035058364272117615, + -0.02611462026834488, + 0.032241787761449814, + 0.048423558473587036, + 0.019571010023355484, + -0.059313517063856125, + -0.06677103787660599, + 0.006760930176824331, + -0.0068028774112463, + -0.15931342542171478, + -0.0005043779965490103, + 0.06058410555124283, + 0.0072975922375917435, + -0.09736450761556625, + 0.05717881768941879, + -0.04094431921839714, + -0.07490074634552002, + -0.065247543156147, + 0.051873959600925446, + -0.028854629024863243, + 0.058864809572696686, + 0.12206675112247467, + -0.030741101130843163, + -0.01445965189486742, + 0.01185267698019743, + -0.07724490016698837, + -0.017827153205871582, + 0.02812081016600132, + 0.07613351941108704, + -0.023077724501490593, + -0.04432475194334984, + -0.041052043437957764, + -0.05242874100804329, + -0.07224409282207489, + -0.013835999183356762, + -0.054032012820243835, + -0.024591941386461258, + 0.14987212419509888, + 0.05060213804244995, + -0.009161831811070442, + -0.006146745756268501, + -0.039019763469696045, + -0.11735198646783829, + -0.03434447571635246, + 0.025372622534632683, + -0.04048990458250046, + -3.0970602724320956e-33, + 0.04848679155111313, + 0.02256915532052517, + 0.024138426408171654, + 0.02763381041586399, + -0.051359690725803375, + 0.020324014127254486, + -0.0034986636601388454, + -0.04335687682032585, + -0.12020394951105118, + 0.022218987345695496, + 0.04706411063671112, + 0.11648374050855637, + -0.04058106988668442, + 0.10691992938518524, + 0.10412271320819855, + 0.006158765405416489, + -0.029384121298789978, + -0.018983572721481323, + -0.026845717802643776, + -0.03160770982503891, + -0.05738675594329834, + 0.016328560188412666, + -0.018950721248984337, + -0.0006707768188789487, + -0.017837347462773323, + -0.004243471194058657, + 0.040697790682315826, + -0.04140188544988632, + -0.029258830472826958, + 0.0001281187287531793, + 0.06085018813610077, + -0.04037357121706009, + 0.027185598388314247, + -0.0020226791966706514, + -0.015217417851090431, + -0.017438264563679695, + -0.06592472642660141, + -0.049083396792411804, + 0.0040716673247516155, + 0.004342854488641024, + -0.07931371033191681, + -0.07479109615087509, + -0.08030328899621964, + 0.04071514680981636, + 0.04117858409881592, + 0.09309102594852448, + -0.028080733492970467, + -0.14833252131938934, + 0.054248884320259094, + 0.02448134869337082, + 0.004918798804283142, + -0.008898796513676643, + -0.0279221348464489, + -0.0816504955291748, + -0.04362565279006958, + -0.04944595694541931, + -0.02376606874167919, + 0.02253226563334465, + -0.02542416751384735, + -0.02741061896085739, + 0.06050395220518112, + -0.00867670401930809, + 0.027220813557505608, + 0.004401140846312046, + -0.017885001376271248, + 0.07001210749149323, + 0.04284821078181267, + -0.032592032104730606, + 0.015318549238145351, + -0.010122240521013737, + 0.018051419407129288, + -0.0019878929015249014, + 0.13854075968265533, + 0.0460968054831028, + -0.08753202855587006, + 0.01881936937570572, + 0.018758704885840416, + 0.00402637617662549, + -0.08825825154781342, + -0.003923437092453241, + -0.05613147094845772, + -0.04472630098462105, + -0.05808060243725777, + 0.07621423155069351, + -0.009197935461997986, + 0.031177695840597153, + 0.02937876246869564, + -0.11504241079092026, + -0.06614987552165985, + -0.005792560521513224, + -0.12851370871067047, + 0.018897373229265213, + 0.007420654874294996, + 0.0033953003585338593, + -0.09696296602487564, + -1.6231771499001324e-33, + 0.01700371503829956, + -0.03359423577785492, + 0.028651857748627663, + -0.02807055413722992, + -0.027678238227963448, + -0.030779585242271423, + 0.07007630169391632, + 0.07157790660858154, + -0.02895636484026909, + 0.05548648536205292, + 0.04130179062485695, + 0.028505360707640648, + -0.03510033339262009, + -0.04672175645828247, + -0.057326048612594604, + 0.037910096347332, + 0.06953047960996628, + 0.053108617663383484, + -0.05974039435386658, + 0.002035279758274555, + -0.07580056041479111, + -0.00612616166472435, + -0.027803534641861916, + 0.09360776841640472, + 0.004718830343335867, + -0.037268366664648056, + 0.03648262470960617, + -0.057621072977781296, + -0.06358087062835693, + -0.02762926183640957, + 0.022477198392152786, + -0.02749907784163952, + 0.040068332105875015, + 0.05577943101525307, + 0.006254144944250584, + 0.0003014543908648193, + -0.004305718932300806, + -0.06435473263263702, + 0.0021668365225195885, + -0.01707514002919197, + -0.023879563435912132, + 0.015667855739593506, + 0.05797528475522995, + 0.042401280254125595, + 0.008298088796436787, + 0.017436832189559937, + -0.057259004563093185, + -0.10447639971971512, + -0.07621553540229797, + 0.06890681385993958, + 0.04034106805920601, + 0.0021597053855657578, + -0.01789436675608158, + -0.062335558235645294, + -0.01966024562716484, + 0.015734469518065453, + 0.024748502299189568, + 0.027044301852583885, + -0.005793226417154074, + 0.004720746073871851, + 0.08050365746021271, + -0.02092835307121277, + -0.07705270498991013, + 0.02061123214662075, + -0.028465546667575836, + 0.02392539754509926, + 0.059527985751628876, + 0.00913908053189516, + -0.0429011769592762, + 0.04829378426074982, + -0.015345513820648193, + -0.03384528309106827, + -0.021230805665254593, + 0.018227901309728622, + -0.11441631615161896, + -0.020409781485795975, + 0.06574735045433044, + 0.05312090739607811, + -0.055533308535814285, + 0.012810252606868744, + 0.034030526876449585, + 0.01786554604768753, + -0.033636730164289474, + 0.05319153144955635, + 0.02122916653752327, + -0.033688757568597794, + -0.021786674857139587, + 0.005981991998851299, + 0.004387876950204372, + -0.01589367538690567, + -0.06234605237841606, + 0.13104821741580963, + 0.03301604092121124, + 0.0025986735709011555, + -0.06160922348499298, + -2.401464804790976e-08, + 0.022610025480389595, + -0.04518464207649231, + 0.03475513681769371, + -0.0021137113217264414, + 0.03009757772088051, + -0.005758963525295258, + 0.00694673927500844, + -0.045530300587415695, + 0.05184800550341606, + -0.06818803399801254, + -0.013203551061451435, + -0.04171403869986534, + -0.1118936762213707, + 0.021661587059497833, + 0.05790400505065918, + 0.04205253720283508, + -0.05469410866498947, + 0.06898897886276245, + 0.011143060401082039, + 0.03496794030070305, + -0.07160178571939468, + 0.10851821303367615, + 0.028631186112761497, + -0.014899514615535736, + 0.00018580367031972855, + 0.01171479094773531, + -0.022780142724514008, + -0.026587437838315964, + 0.10890316218137741, + 0.07992082089185715, + 0.042797040194272995, + 0.05658607557415962, + 0.03410564735531807, + -0.10451095551252365, + -0.042619477957487106, + 0.010954738594591618, + 0.050800617784261703, + -0.014037150889635086, + 0.008574116043746471, + 0.06262177973985672, + 0.01393955573439598, + -0.031266625970602036, + 0.003807750763371587, + -0.012877427041530609, + -0.03295120969414711, + 0.00902497861534357, + 0.07226576656103134, + 0.01799389347434044, + -0.009239153936505318, + -0.006345524452626705, + -0.0695606917142868, + 0.06445074826478958, + -0.037847187370061874, + -0.012175913900136948, + 0.016032354906201363, + -0.05572795495390892, + 0.011958775110542774, + -0.013292312622070312, + 0.05375443771481514, + -0.022572636604309082, + 0.12823806703090668, + 0.013033976778388023, + 0.019549239426851273, + 0.051719315350055695 + ], + "google-podcasts-logo-bold||audio": [ + -0.0024924036115407944, + 0.002243561204522848, + -0.030349858105182648, + -0.06895890086889267, + 0.09856395423412323, + 0.010205326601862907, + 0.04785914719104767, + -0.0919497013092041, + 0.021848611533641815, + -0.02787606045603752, + -0.0916038528084755, + 0.05380236729979515, + -0.0019776879344135523, + -0.026381200179457664, + 0.0073951780796051025, + -0.08243001252412796, + 0.015552853234112263, + 0.013742988929152489, + 0.06631070375442505, + -0.019114989787340164, + -0.00789832603186369, + 0.0833233892917633, + 0.08826742321252823, + 0.022828565910458565, + 0.05441223457455635, + -0.014848671853542328, + 0.004688432440161705, + -0.050103649497032166, + 0.03095812164247036, + -0.04966538026928902, + 0.036328960210084915, + -0.011102594435214996, + 0.17661148309707642, + -0.005117100663483143, + -0.010810797102749348, + -0.03253708779811859, + -0.0020718895830214024, + 0.00711333192884922, + -0.00789334625005722, + 0.06664218753576279, + 0.0586581826210022, + -0.01436506025493145, + 0.012347493320703506, + -0.09926605224609375, + -0.0903104841709137, + -0.05120665580034256, + -0.05392635986208916, + -0.08548808842897415, + 0.07651225477457047, + 0.07654806971549988, + -0.0023827720433473587, + -0.13016386330127716, + -0.059039559215307236, + -0.04556003585457802, + -0.05267474055290222, + 5.693706953024957e-06, + 0.002156180562451482, + 0.061311446130275726, + 0.061971265822649, + -0.017692385241389275, + 0.02193068340420723, + -0.04750300198793411, + 0.01329006440937519, + 0.060221344232559204, + 0.09552284330129623, + 0.03363136574625969, + 0.03080415539443493, + 0.041869666427373886, + -0.06768837571144104, + 0.03501017764210701, + -0.005500278901308775, + 0.05275825038552284, + 0.009216496720910072, + -0.047185368835926056, + -0.03292372077703476, + 0.021568091586232185, + 0.08329325914382935, + 0.018023956567049026, + -0.07004359364509583, + -0.009544466622173786, + -0.06860838085412979, + -0.07642525434494019, + 0.018168218433856964, + -0.03054780885577202, + 0.06631632894277573, + 0.032869257032871246, + 0.01555525604635477, + -0.1295093446969986, + -0.02413156069815159, + -0.011823768727481365, + -0.1730499416589737, + 0.01958352141082287, + 0.035129595547914505, + 0.0067087626084685326, + -0.01780756004154682, + 0.048073191195726395, + -0.011893046088516712, + 0.0018010415369644761, + -0.0012683445820584893, + 0.051754552870988846, + 0.039667047560214996, + 0.029548048973083496, + 0.04230485111474991, + -0.08433983474969864, + -0.02243645302951336, + -0.020440850406885147, + -0.08247256278991699, + -0.0026738501619547606, + 0.04777288809418678, + 0.05423687770962715, + 0.018371934071183205, + 0.0006254178588278592, + 0.003198950784280896, + -0.040271904319524765, + -0.0033341103699058294, + 0.02696746215224266, + 0.007801602594554424, + -0.06290717422962189, + 0.059844568371772766, + 0.02186577022075653, + 0.053913068026304245, + -0.03845527768135071, + -0.0623227022588253, + -0.0668511614203453, + -0.007780192885547876, + -0.005486595910042524, + 0.012759742327034473, + -5.0706502679314365e-33, + -0.004874285310506821, + 0.005087963305413723, + 0.000985940219834447, + 0.019342778250575066, + 0.08367204666137695, + 0.02476445399224758, + -0.05880660563707352, + -0.02790900506079197, + -0.09910327196121216, + 0.013226076029241085, + 0.05473441630601883, + 0.09861839562654495, + -0.015233318321406841, + -0.0034214789047837257, + -0.03871513903141022, + 0.03300565853714943, + -0.0948357954621315, + 0.019532274454832077, + -0.10724640637636185, + -0.07411390542984009, + -0.013699984177947044, + 0.010272537358105183, + -0.030865026637911797, + 0.009354273788630962, + 0.028988802805542946, + 0.005760728847235441, + 0.10878295451402664, + -0.08367861062288284, + 0.03844154253602028, + 0.031579576432704926, + -0.0290365032851696, + -0.05370883643627167, + -0.00548548623919487, + -0.020110245794057846, + 0.008039195090532303, + 0.021532656624913216, + -0.0521719865500927, + 0.04324622079730034, + 0.04032367095351219, + -0.01263031829148531, + 0.011300235986709595, + -0.10181920975446701, + -0.04758743569254875, + -0.021620159968733788, + -0.010272305458784103, + 0.11342807114124298, + 0.06219659000635147, + -0.0663677379488945, + 0.027719099074602127, + 0.006792353466153145, + 0.021638326346874237, + -0.016713924705982208, + -0.0478154756128788, + -0.08088833093643188, + 0.015359943732619286, + -0.08369636535644531, + 0.05375058948993683, + 0.07670077681541443, + -0.005334220826625824, + -0.039726804941892624, + 0.03854671120643616, + 0.040639396756887436, + 0.10928429663181305, + -0.030154157429933548, + -0.011769031174480915, + 0.08056017756462097, + 0.034435711801052094, + 0.053329773247241974, + 0.06437604129314423, + -0.027796698734164238, + 0.054217781871557236, + 0.010676381178200245, + 0.07133574038743973, + 0.01132358331233263, + -0.11227177083492279, + 0.004348567686975002, + 0.03196270391345024, + -0.04353010281920433, + 0.017979541793465614, + 0.08923846483230591, + -0.0465170256793499, + 0.010132724419236183, + -0.047782257199287415, + 0.015339912846684456, + -0.015623034909367561, + 0.016603706404566765, + 0.03833348676562309, + -0.04941534250974655, + -0.06755544245243073, + -0.01223625149577856, + -0.07278627902269363, + 0.0430438406765461, + -0.019623711705207825, + -0.020642951130867004, + -0.06264416873455048, + 1.8309931635239893e-33, + 0.023121614009141922, + 0.0878230631351471, + 0.011238631792366505, + -0.03141559660434723, + -0.010529775172472, + 0.0023584363516420126, + 0.12002633512020111, + 0.12017825990915298, + -0.040324196219444275, + -0.00784038845449686, + 0.08807838708162308, + -0.045405976474285126, + -0.10296771675348282, + 0.01193178165704012, + -0.054160818457603455, + -0.04979530721902847, + -0.0042115612886846066, + -0.008388674817979336, + -0.07430093735456467, + -0.010026463307440281, + 0.013256342150270939, + -0.01423759013414383, + -0.01747198961675167, + 0.1348264217376709, + -0.005790460854768753, + -0.01250469870865345, + 0.027486037462949753, + 0.042700015008449554, + -0.04225929453969002, + -0.005390803795307875, + -0.029066557064652443, + 0.012498747557401657, + -0.06993211060762405, + -0.00829350110143423, + 0.046236149966716766, + 0.026936832815408707, + 0.03239395469427109, + -0.023170234635472298, + 0.03263470157980919, + -0.10242193192243576, + -0.06877873837947845, + 0.01396777294576168, + 0.040549710392951965, + -0.0630713701248169, + 0.00763508677482605, + -0.06275008618831635, + -0.04875786975026131, + 0.0015284244436770678, + -0.034438733011484146, + 0.04400714114308357, + 0.06972043216228485, + -0.04207503795623779, + 0.06969421356916428, + 0.038534972816705704, + -0.05591065064072609, + -0.01655476912856102, + -0.046429507434368134, + 0.013234942220151424, + 0.016574056819081306, + 0.02125202864408493, + -0.009444987401366234, + -0.01469321921467781, + -0.04038189724087715, + -0.08608023822307587, + -0.012949460186064243, + 0.015457646921277046, + 0.07104431092739105, + -0.0040842462331056595, + -0.004392064642161131, + 0.055511683225631714, + 0.0072757829912006855, + -0.02166423574090004, + 0.06036386638879776, + 0.08027049899101257, + -0.02892022207379341, + 0.05404280126094818, + 0.0508168488740921, + -0.010534998029470444, + -0.0841732919216156, + -0.013077130541205406, + -0.026895254850387573, + 0.015310266986489296, + -0.025741474702954292, + 0.016915595158934593, + 0.05711057409644127, + 0.04118459299206734, + 0.058837391436100006, + 0.017238285392522812, + -0.01467789988964796, + 0.04563530534505844, + -0.029773607850074768, + 0.06429515033960342, + 0.018434131518006325, + 0.022813981398940086, + -0.035820454359054565, + -1.558062301398877e-08, + -0.024775199592113495, + 0.01084250956773758, + 0.036813102662563324, + -0.03815220668911934, + 0.0020049014128744602, + -0.0030821245163679123, + -0.009456295520067215, + -0.12718014419078827, + 0.013884331099689007, + -0.0789872482419014, + -0.02596663497388363, + -0.06650682538747787, + 0.009505702182650566, + 0.07359228283166885, + 0.025392409414052963, + 0.005475847981870174, + -0.12590515613555908, + 0.09880201518535614, + -0.027482686564326286, + -0.12940633296966553, + -0.025492722168564796, + 0.06381446868181229, + 0.07355614006519318, + 0.00039652339182794094, + 0.02048407681286335, + 0.006742080673575401, + 0.01842554658651352, + -0.04408564791083336, + 0.04631702974438667, + 0.0017048473237082362, + -0.09055769443511963, + 0.07355345040559769, + -0.05816461890935898, + -0.02796568162739277, + -0.06794153153896332, + -0.06486259400844574, + -0.012329986318945885, + 0.005550605710595846, + -0.04595579952001572, + 0.028603238984942436, + -0.001647843630053103, + -0.032207243144512177, + 0.051102980971336365, + -0.03401415795087814, + -0.07810188829898834, + 0.010249867103993893, + 0.11661849915981293, + 0.031471434980630875, + -0.012892063707113266, + 0.001891677500680089, + -0.010813525877892971, + 0.018249915912747383, + 0.0369388647377491, + 0.0015774057246744633, + 0.005975422449409962, + -0.07608471810817719, + 0.004929536022245884, + 0.06891705095767975, + -0.043288812041282654, + -0.015148150734603405, + 0.06458622962236404, + 0.025655779987573624, + 0.020964056253433228, + 0.03233036398887634 + ], + "gps-bold||*new*,geolocation,location,navigation": [ + 0.0413004569709301, + -0.051605552434921265, + -0.008377812802791595, + -0.03118968941271305, + 0.010910476557910442, + -0.06098276376724243, + 0.03929857537150383, + -0.08383253961801529, + -0.05221296474337578, + 0.0046048653312027454, + 0.018801478669047356, + 0.058202508836984634, + 0.05887896195054054, + -0.01328917033970356, + -0.0116246547549963, + 0.016194121912121773, + 0.04612860828638077, + 0.08644556254148483, + 0.006447745021432638, + -0.002598351798951626, + 0.004426905885338783, + 0.02288985066115856, + 0.00982572790235281, + 0.07245028764009476, + 0.05074194446206093, + 0.0071153417229652405, + 0.10646606236696243, + -0.026257341727614403, + 0.023468445986509323, + -0.008712458424270153, + -0.04500478506088257, + -0.015130032785236835, + 0.05855967849493027, + 0.032268840819597244, + 0.006212601438164711, + 0.008928547613322735, + -0.008585292845964432, + -0.018330905586481094, + -0.04287422075867653, + 0.0038545997813344, + 0.05094350501894951, + -0.03657888248562813, + 0.028203614056110382, + 0.07346921414136887, + -0.020577793940901756, + -0.01862647384405136, + 0.024487659335136414, + 0.029354095458984375, + 0.08756325393915176, + -0.02095768228173256, + -0.05101873725652695, + -0.09072985500097275, + -0.13275089859962463, + -0.08531728386878967, + 0.00958783645182848, + 0.0748114138841629, + -0.10032164305448532, + -0.016172362491488457, + 0.04457050561904907, + -0.03347424417734146, + 0.06672514230012894, + 0.013646064326167107, + 0.018821697682142258, + 0.03516298905014992, + 0.053207382559776306, + -0.014202892780303955, + -0.05665118619799614, + 0.01570863276720047, + 0.011553053744137287, + 0.02183285728096962, + 0.035209622234106064, + 0.03246397525072098, + 0.000842079462017864, + -0.0014130870113149285, + -0.027541402727365494, + -0.018366103991866112, + -0.012692652642726898, + 0.02573222853243351, + -0.06544189155101776, + -0.05348169431090355, + 0.009898374788463116, + -0.03573067858815193, + 0.012669970281422138, + 0.006569222547113895, + 0.08454140275716782, + -0.03095312789082527, + -0.06360774487257004, + -0.06918276101350784, + 0.005762121174484491, + -0.08964003622531891, + 0.027632523328065872, + -0.002386497799307108, + -0.06721871346235275, + -0.014269078150391579, + -0.09105616062879562, + 0.005968013312667608, + -0.017063917592167854, + -0.011184695176780224, + 0.01254688948392868, + 0.06526381522417068, + 0.02483067475259304, + 0.04169638082385063, + 0.02291560173034668, + 0.10095897316932678, + -0.035555027425289154, + -0.025432374328374863, + -0.019780119881033897, + 0.03913087025284767, + -0.046422772109508514, + 0.08247149735689163, + 0.007735267747193575, + -0.042902786284685135, + -0.021823590621352196, + -0.06932363659143448, + -0.11596549302339554, + 0.04274148494005203, + -0.07632555812597275, + 0.022252852097153664, + 0.067086361348629, + 0.09665883332490921, + -0.05031291022896767, + -0.08578159660100937, + -0.004321375861763954, + -0.024072621017694473, + -0.019918739795684814, + 0.03603952005505562, + 0.04840151593089104, + -1.3979956868012726e-33, + 0.034271325916051865, + 0.07323111593723297, + -0.0037169777788221836, + 0.1390429586172104, + -0.04164049029350281, + 0.07505630701780319, + -0.10374736785888672, + -0.03832925856113434, + -0.017117682844400406, + 0.04203953593969345, + 0.0766260102391243, + 0.0812370702624321, + -0.01267771702259779, + 0.04892626032233238, + 0.09810377657413483, + -0.05005674436688423, + 0.015889916568994522, + -0.0268691498786211, + -0.0690491646528244, + 0.024762220680713654, + -0.04965722933411598, + 0.03602893278002739, + -0.035962335765361786, + -0.0234561525285244, + 0.000761901494115591, + 0.025757484138011932, + 0.02105475589632988, + -1.5911746231722645e-05, + -0.11744000017642975, + 0.05141046270728111, + -0.020084213465452194, + -0.03636910021305084, + -0.028364716097712517, + 0.045554183423519135, + 0.019127266481518745, + 0.0539582297205925, + -0.059198327362537384, + -0.03880805894732475, + 0.011757142841815948, + 0.02685646526515484, + -0.06441965699195862, + -0.026783552020788193, + -0.08501824736595154, + -0.02076541818678379, + 0.021012596786022186, + 0.06783158332109451, + -0.06695651262998581, + -0.07869357615709305, + 0.042323507368564606, + 0.09317498654127121, + -0.06205514445900917, + -0.0017487709410488605, + -0.1076318770647049, + -0.02835998870432377, + -0.030846338719129562, + 0.008711395785212517, + -0.04137347638607025, + 0.05410396680235863, + 0.06948822736740112, + -0.0337664969265461, + 0.009313474409282207, + 0.027074482291936874, + 0.06657532602548599, + -0.017270216718316078, + 0.041569843888282776, + -0.03078262321650982, + -0.015686890110373497, + 0.045190054923295975, + 0.06396060436964035, + -0.001515843439847231, + 0.013226811774075031, + 0.006045255810022354, + 0.08371950685977936, + 0.11675229668617249, + -0.025779254734516144, + 0.02831428125500679, + -0.0003843235317617655, + 0.013542406260967255, + 0.03286512941122055, + -0.11718465387821198, + -0.0856533944606781, + -0.018595710396766663, + -0.0456632599234581, + 0.1459621638059616, + 0.02890833280980587, + -0.019290942698717117, + -0.02205984853208065, + -0.06104461848735809, + -0.003775336779654026, + 0.04747902229428291, + -0.1374196708202362, + 0.008030561730265617, + -0.11172638833522797, + -0.04596121609210968, + -0.08311557024717331, + -2.4103981861351334e-33, + 0.02946333959698677, + -0.013505153357982635, + 0.00862161722034216, + -0.06893997639417648, + -0.13378305733203888, + -0.04150140658020973, + 0.0362904816865921, + 0.06660399585962296, + 0.0035501851234585047, + 0.04677858576178551, + 0.0023450362496078014, + -0.016514983028173447, + 0.017433589324355125, + 0.019933389499783516, + -0.02549082227051258, + 0.06920844316482544, + 0.017720242962241173, + 0.022348539903759956, + -0.10692986100912094, + 0.0571715421974659, + -0.07814619690179825, + -0.031529929488897324, + -0.09742771089076996, + 0.021887199953198433, + 0.04963340982794762, + 0.0020364797674119473, + 0.06805811822414398, + 0.029081111773848534, + -0.051774729043245316, + -0.03011702559888363, + -0.03454401716589928, + -0.026826603338122368, + 0.04348583519458771, + 0.05140173062682152, + -0.05726661905646324, + 0.062709279358387, + 0.03670547530055046, + -0.020701132714748383, + 0.012628496624529362, + 0.02652370184659958, + 0.015271556563675404, + 0.016340048983693123, + 0.06362941116094589, + -0.032806530594825745, + -0.04984504356980324, + 0.02892892248928547, + 0.05203261971473694, + 0.02838599868118763, + -0.0491960272192955, + 0.006354748271405697, + 0.09182935953140259, + -0.020827915519475937, + -0.00045986135955899954, + 0.05862591415643692, + -0.0233235452324152, + 0.02969507686793804, + 0.015248636715114117, + -0.004344488959759474, + -0.0042619225569069386, + 0.016684383153915405, + 0.00262311939150095, + 0.014388879761099815, + -0.06672283262014389, + 0.026804549619555473, + 0.02590884268283844, + -0.07507893443107605, + 0.023574091494083405, + -0.020255083218216896, + -0.005012453068047762, + 0.013563435524702072, + 0.021325314417481422, + -0.05474492162466049, + -0.0737798735499382, + -0.02723957784473896, + -0.015686655417084694, + -0.002725575352087617, + 0.04517596215009689, + 0.05063524842262268, + -0.045621056109666824, + -0.06699161976575851, + 0.004021152388304472, + -0.014585592783987522, + -0.06821829825639725, + 0.016276538372039795, + 0.019355030730366707, + 0.10097186267375946, + -0.019548539072275162, + -0.013400034047663212, + 0.009328274987637997, + -0.02543434500694275, + -0.07745660096406937, + 0.09288144111633301, + -0.13049954175949097, + -0.002170692663639784, + -0.18176892399787903, + -2.130059861826794e-08, + -0.05856627598404884, + 0.025451982393860817, + -0.03822272643446922, + 0.05776110291481018, + -0.009195680730044842, + -0.03116988204419613, + -0.027958417311310768, + -0.034090567380189896, + -0.02879829704761505, + -0.008166383020579815, + 0.024041416123509407, + -0.007808036636561155, + -0.08742854744195938, + -0.01910628378391266, + 0.023348774760961533, + 0.03514935448765755, + -0.020831841975450516, + 0.044428400695323944, + -0.047282882034778595, + 0.013292920775711536, + -0.016535835340619087, + 0.11328835785388947, + 0.06898104399442673, + 0.005985724739730358, + 0.04373800382018089, + -0.003686880227178335, + -0.050053779035806656, + -0.019722625613212585, + 0.09974044561386108, + 0.019129784777760506, + 0.07348204404115677, + 0.053444910794496536, + -0.004245138727128506, + 0.020829500630497932, + -0.10486762970685959, + -0.03638177365064621, + -0.056977175176143646, + 0.04674762859940529, + 0.017263902351260185, + 0.02389587089419365, + -0.025492727756500244, + 0.005780036561191082, + -0.043631672859191895, + 0.03829805180430412, + -0.041470352560281754, + -0.011434854008257389, + 0.1001606434583664, + -0.0728461816906929, + -0.0539795383810997, + -0.08884263038635254, + -0.09806566685438156, + -0.011679943650960922, + -0.022649331018328667, + 0.07745109498500824, + 0.02324354089796543, + 0.006579080130904913, + 0.030667994171380997, + -0.007406485266983509, + 0.02015393227338791, + 0.025926154106855392, + 0.0035131056793034077, + -0.01572408154606819, + -0.05505086109042168, + 0.000983315403573215 + ], + "gps-fix-bold||*new*,geolocation,location,navigation": [ + 0.03554309904575348, + -0.02763364464044571, + 0.04481033608317375, + -0.012302360497415066, + 0.0017191930674016476, + -0.07068542391061783, + 0.032358478754758835, + -0.10787555575370789, + -0.08718089014291763, + 0.015562341548502445, + 0.01995331048965454, + 0.05766492709517479, + 0.04645031318068504, + -0.0230040792375803, + -0.02625291422009468, + 0.015168030746281147, + 0.02971624583005905, + 0.090115025639534, + 0.004539422690868378, + 0.01735898107290268, + -0.03718103468418121, + 0.0351177453994751, + 0.03361629322171211, + 0.09262058883905411, + 0.036850959062576294, + 0.017405280843377113, + 0.07250814139842987, + -0.022326292470097542, + -0.011536057107150555, + -0.020420413464307785, + -0.06607925891876221, + 0.0007603707490488887, + 0.029149925336241722, + 0.016388526186347008, + 0.02745874412357807, + 0.03253752365708351, + -0.02076594904065132, + -0.018979763612151146, + -0.018354235216975212, + -0.012436449527740479, + 0.051375798881053925, + -0.02786945179104805, + 0.03426540270447731, + 0.05358949676156044, + -0.03795481100678444, + -0.012783080339431763, + 0.03768755868077278, + 0.02923182211816311, + 0.09682469815015793, + -0.0334273986518383, + -0.05501759052276611, + -0.07446830719709396, + -0.11040828377008438, + -0.0931534692645073, + 0.018335843458771706, + 0.08476641029119492, + -0.08716151863336563, + 0.02165767177939415, + 0.05635051801800728, + -0.012861231341958046, + 0.09254030138254166, + 0.03629942238330841, + 0.020113205537199974, + 0.02638937160372734, + 0.0514424629509449, + 0.009401310235261917, + -0.0400528721511364, + -0.002885217545554042, + -0.017775582149624825, + 0.05586271360516548, + 0.05769500508904457, + 0.029645130038261414, + -0.0037683506961911917, + 0.0037604586686939, + -0.014413508586585522, + 0.004039606545120478, + -0.03477095440030098, + 0.030288659036159515, + -0.04396313428878784, + -0.02004169672727585, + 0.003275549504905939, + -0.03853936865925789, + 0.010477911680936813, + 0.01098889671266079, + 0.12421806156635284, + -0.03597726300358772, + -0.049324922263622284, + -0.09634239971637726, + 0.020742295309901237, + -0.08928830176591873, + 0.01930820196866989, + -0.04310052841901779, + -0.024202914908528328, + -0.002660544356331229, + -0.09558991342782974, + -0.00506549933925271, + -0.01896709017455578, + 0.01679372414946556, + 0.0020549106411635876, + 0.045924678444862366, + 0.029549701139330864, + 0.03978889063000679, + 0.03697891905903816, + 0.09627564996480942, + -0.04441086947917938, + -0.012713734060525894, + -0.015865804627537727, + 0.07960195094347, + -0.06935172528028488, + 0.06650171428918839, + 0.02719847671687603, + -0.05001102015376091, + -0.014685872942209244, + -0.04627219960093498, + -0.12017238885164261, + 0.030100731179118156, + -0.0824679285287857, + 0.010479684919118881, + 0.04943866655230522, + 0.09277679771184921, + -0.05976725369691849, + -0.07663989812135696, + -0.022715823724865913, + -0.03106527402997017, + -0.003291316330432892, + 0.0391475148499012, + 0.05457349494099617, + -2.3843758636147974e-33, + 0.02876596711575985, + 0.06691937148571014, + 0.00927523523569107, + 0.12006059288978577, + 0.0010485027451068163, + 0.055720794945955276, + -0.12280484288930893, + -0.04546637833118439, + -0.02422221377491951, + 0.04606219008564949, + 0.11873585730791092, + 0.04202529415488243, + -0.02333371713757515, + 0.029792020097374916, + 0.05891731381416321, + -0.04539110139012337, + 0.025849901139736176, + -0.028815660625696182, + -0.08292937278747559, + 0.023047111928462982, + -0.04016786068677902, + 0.022439226508140564, + -0.04785626381635666, + -0.0505872517824173, + -0.03982583060860634, + 0.04494857415556908, + 0.03368540108203888, + 0.021216629073023796, + -0.101636603474617, + 0.04101661965250969, + -0.027149885892868042, + -0.005868047010153532, + 0.013251624070107937, + 0.06310688704252243, + -0.013636268675327301, + 0.029682230204343796, + -0.026710158213973045, + -0.03665517643094063, + -0.00840276200324297, + 0.019931858405470848, + -0.07873357087373734, + -0.0036651932168751955, + -0.08291967958211899, + -0.02618294768035412, + 0.07374385744333267, + 0.07954671233892441, + -0.042300995439291, + -0.07900168001651764, + 0.04486546292901039, + 0.07155441492795944, + -0.07301545888185501, + 0.028655068948864937, + -0.10042707622051239, + -0.041960764676332474, + -0.058717310428619385, + -0.010743889026343822, + -0.028398113325238228, + 0.06277891248464584, + 0.05477654188871384, + -0.05238409340381622, + 0.0285575520247221, + -0.0057871718890964985, + 0.055729832500219345, + -0.027673274278640747, + 0.06379617750644684, + -0.04153117910027504, + 0.011339005082845688, + 0.06594095379114151, + 0.043972406536340714, + -0.022525960579514503, + 0.004022521432489157, + 0.000997078139334917, + 0.08754105120897293, + 0.14539392292499542, + -0.05316177010536194, + 0.020708944648504257, + 0.00780079048126936, + -0.007674836553633213, + 0.02984154410660267, + -0.10605383664369583, + -0.07268901914358139, + -0.029165929183363914, + -0.04470459371805191, + 0.12139285355806351, + 0.026213428005576134, + -0.03852057829499245, + -0.020758073776960373, + -0.02093476429581642, + -0.0019568384159356356, + 0.07070609927177429, + -0.10741590708494186, + -0.0044607860036194324, + -0.10985825210809708, + -0.04530847445130348, + -0.09662792831659317, + -1.9368512052613365e-33, + 0.047660037875175476, + -0.041474029421806335, + 0.004288955125957727, + -0.053359515964984894, + -0.1280178725719452, + -0.03624039888381958, + 0.04235174506902695, + 0.07707450538873672, + 0.03931739181280136, + 0.023436468094587326, + 0.003352580824866891, + -0.023859070613980293, + -0.0029985595028847456, + 0.02089439518749714, + -0.03777000308036804, + 0.06888139992952347, + 0.017122402787208557, + 0.032865971326828, + -0.11408647894859314, + 0.06582009047269821, + -0.06009187176823616, + -0.030079759657382965, + -0.08493978530168533, + 0.06321264058351517, + 0.06231587007641792, + 0.0006613574805669487, + 0.0707017108798027, + 0.027667229995131493, + -0.028061669319868088, + -0.007459916640073061, + -0.011449519544839859, + -0.014248945750296116, + 0.03300471976399422, + 0.04684310778975487, + -0.02710018679499626, + 0.06089584156870842, + 0.014627501368522644, + -0.037285223603248596, + -0.010991629213094711, + 0.02310529537498951, + 0.02153847925364971, + 0.007514905650168657, + 0.039687272161245346, + -0.015330539084970951, + -0.014727841131389141, + 0.007987111806869507, + 0.05778547003865242, + -0.007925084792077541, + -0.06762447208166122, + 0.0027690022252500057, + 0.09072685241699219, + -0.04764774441719055, + 0.002452292712405324, + 0.032541945576667786, + -0.015471307560801506, + 0.04542141035199165, + 0.024568483233451843, + -0.009919489733874798, + -0.04274798929691315, + 0.017934704199433327, + -0.013311545364558697, + 0.033337078988552094, + -0.0540049709379673, + -0.011951296590268612, + 0.026915421709418297, + -0.043117817491292953, + 0.033598583191633224, + -0.00426517566666007, + 0.022638048976659775, + 0.011055472306907177, + 0.034363340586423874, + -0.04739295691251755, + -0.08147202432155609, + -0.05373220518231392, + -0.004584348760545254, + -0.015145275741815567, + 0.043212346732616425, + 0.057641759514808655, + -0.046977460384368896, + -0.056015435606241226, + 0.025279417634010315, + -0.032604821026325226, + -0.06231948360800743, + 0.009667905047535896, + 0.0043287998996675014, + 0.07736829668283463, + -0.01236429251730442, + 0.0114690400660038, + -0.014576797373592854, + -0.032597921788692474, + -0.0999208390712738, + 0.07111851871013641, + -0.09998825192451477, + -0.013044120743870735, + -0.19795140624046326, + -2.234647844545634e-08, + -0.04851313307881355, + 0.02539152093231678, + -0.07076029479503632, + 0.06935577094554901, + 0.011872685514390469, + -0.04328592121601105, + -0.06401797384023666, + -0.020194465294480324, + -0.02669932134449482, + -0.013455774635076523, + -0.018830029293894768, + 0.006879083812236786, + -0.05418187752366066, + -0.027808239683508873, + 0.0008982660947367549, + 0.0034419787116348743, + -0.06567603349685669, + 0.09585773944854736, + -0.05719750002026558, + 0.006479065399616957, + -0.027017129585146904, + 0.1087178960442543, + 0.07243452221155167, + -0.014687491580843925, + 0.03886167332530022, + -0.012103094719350338, + -0.05774201825261116, + -0.0167926587164402, + 0.09858451783657074, + -0.0006680184742435813, + 0.048413604497909546, + 0.020902913063764572, + 0.011164819821715355, + 0.012509540654718876, + -0.09909727424383163, + -0.057307902723550797, + -0.015375654213130474, + 0.052391063421964645, + 0.014607156626880169, + -0.003931259270757437, + -0.034276995807886124, + 0.012488758191466331, + -0.02856339141726494, + 0.04325408488512039, + -0.07967770099639893, + -0.021265584975481033, + 0.09489838033914566, + -0.030182166025042534, + -0.06127680838108063, + -0.08796165883541107, + -0.07937035709619522, + 0.022505879402160645, + -0.02935619279742241, + 0.07931865006685257, + 0.02586253173649311, + -0.004696620162576437, + 0.042141225188970566, + -0.0051599484868347645, + 0.014630952849984169, + 0.01838202401995659, + -0.010352704674005508, + -0.005711556877940893, + -0.05652817338705063, + -0.012149603106081486 + ], + "gps-slash-bold||*new*,geolocation,location,navigation,disabled": [ + 0.02547830156981945, + -0.05024094134569168, + -0.004988326691091061, + -0.01747363992035389, + -0.01748499646782875, + -0.05580195039510727, + -0.023489901795983315, + -0.08393750339746475, + -0.03738929331302643, + 0.019733229652047157, + 0.049621809273958206, + 0.06735873222351074, + 0.02621869184076786, + 0.039185184985399246, + -0.04319261759519577, + 0.024066917598247528, + 0.058968786150217056, + 0.06695560365915298, + 0.010946052148938179, + 0.03981209546327591, + -0.037070173770189285, + 0.050381988286972046, + 0.00509277917444706, + 0.07976973801851273, + 0.07151913642883301, + -0.029813189059495926, + 0.047315098345279694, + -0.0031441336032003164, + -0.0004870488482993096, + -0.0032272543758153915, + -0.04628000780940056, + -0.04437847435474396, + 0.04334104806184769, + 0.029494693502783775, + 0.043096594512462616, + 0.02522946521639824, + 0.013966144062578678, + -0.04250567778944969, + -0.01881272718310356, + -0.04033024609088898, + 0.04266403988003731, + -0.05370465666055679, + 0.011141553521156311, + 0.01621197536587715, + -0.042221833020448685, + -0.04125715792179108, + 0.04720749706029892, + -0.005372947547584772, + 0.08064370602369308, + -0.028213199228048325, + -0.04213663190603256, + -0.05240464583039284, + -0.12238188832998276, + -0.09672549366950989, + 0.054661113768815994, + 0.05044752359390259, + -0.087734155356884, + 0.05704805254936218, + 0.06944232434034348, + -0.01348541583865881, + 0.0502813458442688, + 0.01003761775791645, + 0.018809868022799492, + 0.0019668005406856537, + 0.014894437976181507, + -0.0034647600259631872, + -0.047276221215724945, + -0.009048492647707462, + -0.02285686507821083, + 0.034306228160858154, + 0.048077404499053955, + 0.044178713113069534, + -0.02899276092648506, + -0.0074321976862847805, + 0.011320277117192745, + -0.02019399031996727, + -0.023506635800004005, + 0.02340092882514, + -0.03771211951971054, + -0.0556924007833004, + 0.02979402430355549, + -0.04804001376032829, + 0.025143472477793694, + 0.048516977578401566, + 0.07411529868841171, + -0.020472057163715363, + -0.045645177364349365, + -0.07966220378875732, + 0.022870665416121483, + -0.10309170186519623, + 0.03738221898674965, + -0.02213098295032978, + -0.02638031356036663, + -0.02168421261012554, + -0.07722539454698563, + -0.04414431005716324, + -0.042132116854190826, + 0.025272293016314507, + -0.04896729812026024, + 0.04303957149386406, + 0.04221273958683014, + 0.023025237023830414, + -0.015670597553253174, + 0.11213543266057968, + 0.007183244451880455, + 0.002699292032048106, + 0.026074495166540146, + 0.026427270844578743, + -0.07812339067459106, + 0.06862848252058029, + 0.026610294356942177, + -0.011701141484081745, + -0.010265382938086987, + -0.04812900349497795, + -0.14294113218784332, + 0.02116599678993225, + -0.1149807721376419, + -0.004082976840436459, + 0.055536989122629166, + 0.1385667324066162, + -0.05821676179766655, + -0.08934099227190018, + -0.023043282330036163, + -0.059039462357759476, + 0.0005399816436693072, + 0.040177661925554276, + 0.08333337306976318, + -3.2540412981706734e-33, + 0.06755427271127701, + 0.058526068925857544, + 0.00926944985985756, + 0.08060804754495621, + 0.000236334148212336, + 0.0433419905602932, + -0.10895077884197235, + -0.011580322869122028, + -0.031557146459817886, + 0.01331874169409275, + 0.11016052216291428, + 0.03278348594903946, + 0.00444393465295434, + 0.028903594240546227, + 0.0738971084356308, + -0.03187209367752075, + 0.06472866982221603, + -0.05921768397092819, + -0.05848688259720802, + 0.01690128818154335, + -0.02550303190946579, + 0.055340319871902466, + -0.048665665090084076, + 0.0038829422555863857, + -0.02442787028849125, + 0.06242234632372856, + -0.007156501058489084, + 0.012316088192164898, + -0.062430284917354584, + 0.06803744286298752, + -0.03483908995985985, + -0.018875913694500923, + -0.018359607085585594, + 0.04790351539850235, + -0.015007806941866875, + 0.08374243229627609, + -0.022963957861065865, + -0.009479809552431107, + -0.0151304816827178, + 0.027520576491951942, + -0.06448932737112045, + -0.06088988482952118, + -0.11931800097227097, + -0.03052682615816593, + 0.017654316499829292, + 0.04544263333082199, + -0.024623535573482513, + -0.11562909930944443, + 0.01608256995677948, + 0.08745232969522476, + -0.07902123034000397, + 0.02779669687151909, + -0.06098002567887306, + -0.022654805332422256, + -0.039839569479227066, + -0.009788816794753075, + -0.06388630717992783, + 0.03644723817706108, + 0.05100772902369499, + -0.042898405343294144, + -0.004691168665885925, + 0.040103159844875336, + 0.056780144572257996, + -0.015210878103971481, + 0.016344785690307617, + -0.031180813908576965, + -0.01679159328341484, + 0.07613133639097214, + 0.037373363971710205, + -0.01689871959388256, + 0.002488517900928855, + -0.013832105323672295, + 0.09707586467266083, + 0.09830231964588165, + -0.06857532262802124, + 0.005456948187202215, + -0.00797890406101942, + -0.016987262293696404, + 0.026797663420438766, + -0.09400904923677444, + -0.1117885485291481, + -0.04548872262239456, + -0.01076219230890274, + 0.1326598823070526, + 0.09427854418754578, + -0.047905486077070236, + -0.025320840999484062, + -0.017051473259925842, + 0.014860880561172962, + 0.0533231757581234, + -0.059002701193094254, + 0.004420957062393427, + -0.12667837738990784, + -0.04761488735675812, + -0.0836993008852005, + -9.218765773510826e-34, + 0.04008230194449425, + 0.012529808096587658, + -0.015629921108484268, + -0.055831409990787506, + -0.1527453362941742, + -0.0580352358520031, + 0.03568771481513977, + 0.06266522407531738, + -0.025688737630844116, + 0.028251562267541885, + 0.023528696969151497, + 0.02089899405837059, + 0.03585629165172577, + 0.0065322089940309525, + -0.002486326266080141, + 0.06992238759994507, + -0.0233339574187994, + 0.01748991385102272, + -0.10442141443490982, + 0.0697016790509224, + -0.0762200653553009, + -0.01426786184310913, + -0.06339731067419052, + 0.053707875311374664, + 0.015480111353099346, + 0.014075844548642635, + 0.07832863181829453, + 0.024122094735503197, + -0.006726105231791735, + -0.00015968430670909584, + 0.01281646452844143, + 0.0356149896979332, + -0.014904987066984177, + 0.009176366031169891, + -0.021563434973359108, + 0.08135245740413666, + -0.044185571372509, + 0.022211968898773193, + -0.01597251556813717, + -0.02896346151828766, + 0.021052541211247444, + 0.019608743488788605, + 0.06864042580127716, + 0.012343084439635277, + -0.018619641661643982, + 0.024497762322425842, + 0.061303041875362396, + -0.02442297711968422, + -0.03591449186205864, + 0.009040658362209797, + 0.09834513068199158, + -0.021296022459864616, + 0.02947278879582882, + 0.04466255381703377, + -0.024901119992136955, + 0.018881333991885185, + 0.004652532748878002, + 0.012380626983940601, + -0.05297796055674553, + 0.06043372303247452, + 0.03550001606345177, + 0.013631375506520271, + -0.10245100408792496, + 0.00415010517463088, + 0.04960572347044945, + -0.05451603978872299, + 0.024447089061141014, + 0.047917675226926804, + 0.034416768699884415, + 0.012161234393715858, + 0.019629765301942825, + -0.009151285514235497, + -0.0365416519343853, + -0.055414482951164246, + 0.006376804318279028, + 0.028578627854585648, + -0.004113607574254274, + 0.06283211708068848, + -0.04043876752257347, + -0.02626120112836361, + 0.024274934083223343, + 0.0007595117785967886, + -0.08487049490213394, + -0.039217509329319, + 0.0319482646882534, + 0.04985186457633972, + -0.06008483096957207, + 0.05510079115629196, + -0.015042710117995739, + -0.04534561187028885, + -0.07057014107704163, + 0.06286223232746124, + -0.14474649727344513, + 0.034473661333322525, + -0.2095041573047638, + -2.266090604052806e-08, + -0.04421427845954895, + 0.009161846712231636, + -0.05228136107325554, + 0.04396764934062958, + 0.023844121024012566, + -0.023787694051861763, + -0.02403230033814907, + -0.04191410169005394, + -0.021610109135508537, + 0.005260211415588856, + 0.015091083943843842, + -0.030105946585536003, + -0.07278628647327423, + -0.014738410711288452, + 0.019637029618024826, + 0.013230121694505215, + -0.04932691901922226, + 0.09191390872001648, + -0.04263949766755104, + 0.036352988332509995, + -0.034222234040498734, + 0.08140197396278381, + 0.05630369856953621, + 0.003485884517431259, + 0.06190604716539383, + -0.04413601756095886, + -0.04523669555783272, + -0.041402269154787064, + 0.09886467456817627, + 0.0012352555058896542, + 0.04565202817320824, + 0.04833069071173668, + -0.02714693360030651, + 0.015229480341076851, + -0.11299419403076172, + -0.03038100153207779, + -0.014631411992013454, + 0.075180783867836, + 0.021725546568632126, + -0.03012583591043949, + -0.007994571700692177, + -0.030727654695510864, + -0.03378169983625412, + 0.028073128312826157, + -0.06711643189191818, + 0.00951671227812767, + 0.10995583236217499, + -0.007123011164367199, + -0.039341263473033905, + -0.059776775538921356, + -0.09250199049711227, + 0.023400919511914253, + -0.013807941228151321, + 0.06870537251234055, + 0.04107813909649849, + 0.016004936769604683, + 0.031067416071891785, + 0.0026099744718521833, + 0.0002952953800559044, + 0.005973378196358681, + 0.021126434206962585, + -0.02722320705652237, + -0.06894046813249588, + -0.021773243322968483 + ], + "gradient-bold||fade,ombre,opacity": [ + -0.016471030190587044, + -0.041535310447216034, + -0.0036624050699174404, + 0.06076385825872421, + 0.02708965167403221, + -0.0220355074852705, + 0.07390357553958893, + -0.036051973700523376, + 0.02382124774158001, + -0.050140682607889175, + -0.025961540639400482, + 0.024057259783148766, + -0.007650416344404221, + -0.029811594635248184, + 0.049163781106472015, + 0.11469286680221558, + 0.021669642999768257, + 0.06203850358724594, + -0.030287493020296097, + -0.04089370369911194, + -0.02924545295536518, + -0.006837211083620787, + 0.0009100847528316081, + 0.01811092719435692, + -0.004114001989364624, + 0.01617828570306301, + 0.03625797852873802, + -0.014471810311079025, + 0.0601084940135479, + -0.06687252968549728, + 0.0495130755007267, + -0.08546341210603714, + 0.10709527879953384, + 0.031353775411844254, + -0.09810380637645721, + -0.04220760241150856, + 0.02361786924302578, + 0.012631544843316078, + -0.017519230023026466, + 0.060182683169841766, + 0.02064415253698826, + 0.014765343628823757, + -0.040584079921245575, + 0.02170174941420555, + -0.00830902624875307, + -0.04120253026485443, + 0.018443355336785316, + -0.03203411400318146, + 0.0011148587800562382, + -0.02016262523829937, + 0.02525860071182251, + -0.15770748257637024, + -0.05677053704857826, + -0.002967044012621045, + -0.020077791064977646, + 0.05152517557144165, + -0.06029512360692024, + -0.05060683190822601, + 0.05295528843998909, + -0.041816141456365585, + -0.07368391752243042, + -0.020140061154961586, + 0.03645244613289833, + 0.009530401788651943, + 0.0646056979894638, + -0.0053810058161616325, + 0.060804784297943115, + -0.02997971884906292, + 0.01980302482843399, + 0.0715160220861435, + 0.02381950430572033, + 0.009082644246518612, + -0.023996615782380104, + -0.008541950955986977, + -0.021416693925857544, + 0.07479561865329742, + 0.07210446149110794, + 0.06113027036190033, + -0.009905687533318996, + 0.004421562887728214, + 0.007470596116036177, + -0.07750335335731506, + -0.04649697616696358, + -0.02997475676238537, + 0.016929978504776955, + 0.01332965400069952, + -0.08573251217603683, + -0.08343298733234406, + -0.03371373564004898, + 0.02497386559844017, + -0.04020592197775841, + 0.04989641532301903, + -0.13963398337364197, + 0.0008594691171310842, + 0.0037587236147373915, + 0.0051899254322052, + 0.042927198112010956, + -0.027959831058979034, + -0.005611111409962177, + 0.07764728367328644, + -0.033951323479413986, + -0.01657509058713913, + -0.007682806812226772, + 0.05686201900243759, + -0.07627031207084656, + 0.026115840300917625, + 0.06203782558441162, + 0.029313484206795692, + -0.017555052414536476, + 0.04049694538116455, + 0.018113819882273674, + -0.08193524181842804, + 0.017530880868434906, + -0.07742508500814438, + -0.06005365774035454, + -0.015563828870654106, + -0.011687301099300385, + 0.04954182729125023, + 0.0591275580227375, + 0.0326155461370945, + 0.020754480734467506, + 0.010710279457271099, + -0.012895620428025723, + 0.02658054232597351, + -0.01525804866105318, + -0.013533872552216053, + 0.0859324112534523, + -1.1387654788178682e-33, + 0.03279652073979378, + -0.00902448408305645, + -0.10622833669185638, + 0.09633268415927887, + 0.04543043673038483, + 0.008395316079258919, + -0.005734529811888933, + -0.0655004233121872, + -0.13603012263774872, + -0.010567505843937397, + 0.02074953354895115, + 0.07027839869260788, + -0.09639149904251099, + 0.04195858910679817, + 0.026050319895148277, + -0.05532076209783554, + 0.108266182243824, + -0.028759723529219627, + -0.006363415624946356, + 0.026291493326425552, + 0.030042629688978195, + 0.016673116013407707, + -0.051316872239112854, + 0.021625269204378128, + -0.03103064000606537, + -0.03468630835413933, + 0.04512954503297806, + -0.02949238009750843, + -0.055400434881448746, + 0.04641812667250633, + 0.010457677766680717, + -0.04693865031003952, + 0.0009079099982045591, + -0.004158101975917816, + -0.015496719628572464, + 0.07838078588247299, + -0.06294380128383636, + 0.0027864540461450815, + 0.0888262689113617, + 0.00047996555804274976, + -0.07415857166051865, + 0.027777094393968582, + -0.011313162744045258, + 0.016120200976729393, + -0.02729460969567299, + 0.11733047664165497, + 0.035073406994342804, + 0.06084749102592468, + -0.012657455168664455, + 0.07939463108778, + -0.046170588582754135, + -0.0008879650267772377, + -0.06623375415802002, + 0.014411219395697117, + 0.010733203031122684, + 0.030288657173514366, + 0.0032512620091438293, + 0.07359999418258667, + 0.08182848989963531, + -0.01952539011836052, + 0.0644596591591835, + 0.10518644750118256, + 0.016066357493400574, + -0.04620563983917236, + -0.018214093521237373, + 0.037618737667798996, + -0.08927198499441147, + 0.03865382820367813, + -0.004159208852797747, + 0.00874128844588995, + 0.039477333426475525, + 0.035294510424137115, + -0.0021195635199546814, + 0.004746147897094488, + 0.005454650614410639, + 0.07922633737325668, + 0.0061003463342785835, + -0.0006305429851636291, + 0.14130033552646637, + -0.10713021457195282, + -0.06298485398292542, + 0.017337461933493614, + -0.0781407356262207, + 0.041315607726573944, + -0.03234295919537544, + 0.08834750205278397, + 0.0008322162902913988, + -0.02134856767952442, + -0.08492168039083481, + 0.03913826495409012, + -0.07875428348779678, + -0.019348595291376114, + 0.022184982895851135, + -0.043309345841407776, + -0.05424075201153755, + -5.857341872531087e-34, + 0.015277424827218056, + 0.06511273980140686, + -0.02931172586977482, + 0.05325136333703995, + 0.002313131233677268, + 0.08204157650470734, + -0.025079647079110146, + 0.056758102029561996, + -0.06630172580480576, + 0.07529772818088531, + 0.07892883569002151, + -0.02213463932275772, + -0.05186084285378456, + -0.027048956602811813, + -0.027572209015488625, + -0.035760339349508286, + -0.004248888697475195, + 0.05643247067928314, + -0.022140726447105408, + 0.030035285279154778, + -0.056986019015312195, + 0.04125293344259262, + -0.060816992074251175, + 0.059232208877801895, + -0.026879677549004555, + 0.029590044170618057, + 0.0404256172478199, + 0.019370080903172493, + -0.0867634192109108, + 0.010501831769943237, + -0.057609401643276215, + 0.04119705408811569, + 0.04092048853635788, + -0.033751264214515686, + -0.09054424613714218, + 0.08511822670698166, + 0.04133705422282219, + -0.02643616497516632, + -3.195694807800464e-05, + 0.01254996843636036, + -0.027580060064792633, + -0.055667828768491745, + 0.018816374242305756, + -0.07409615069627762, + -0.02718217857182026, + 0.06789618730545044, + -0.027746759355068207, + -0.02256452478468418, + 0.07259409874677658, + 0.03067299723625183, + 0.03375554084777832, + 0.04029444605112076, + -0.023181194439530373, + 0.0632265955209732, + -0.08472666144371033, + -0.096605584025383, + 0.007127996068447828, + -0.025401460006833076, + 0.0037356168031692505, + 0.014032013714313507, + -0.02124488539993763, + 0.02990392968058586, + -0.005252201110124588, + 0.029960572719573975, + 0.04803124815225601, + -0.03720158711075783, + 0.05214596912264824, + -0.04746545851230621, + 0.038121528923511505, + -0.0033907853066921234, + 0.06094229966402054, + 0.02861393429338932, + 0.015692047774791718, + 0.01607450842857361, + 0.07972672581672668, + -0.029630200937390327, + 0.0244438536465168, + -0.06652271747589111, + -0.00630164286121726, + 0.058427415788173676, + -0.011223383247852325, + -0.020285630598664284, + 0.009544670581817627, + 0.041699621826410294, + -0.058348044753074646, + 0.011941023170948029, + -0.01611185260117054, + 0.06060653179883957, + 0.03144661337137222, + 0.011089671403169632, + -0.052184753119945526, + -0.006676641292870045, + -0.042900729924440384, + -0.13416774570941925, + 0.0030736238695681095, + -2.0055729521573085e-08, + -0.032636094838380814, + -0.03677942976355553, + 0.0013717868132516742, + -0.020658962428569794, + -0.019289862364530563, + -0.06348783522844315, + 0.00417985487729311, + -0.07507240772247314, + -0.039103809744119644, + -0.046905793249607086, + 0.054987888783216476, + 0.05087749660015106, + -0.056598372757434845, + -0.03717954829335213, + -0.035631194710731506, + 0.04430181160569191, + -0.034759510308504105, + 0.035962026566267014, + 0.004041390959173441, + -0.013950175605714321, + -0.08995924890041351, + 0.05558175966143608, + 0.07402602583169937, + -0.030977420508861542, + 0.04211428016424179, + -0.05316608026623726, + -0.009341860190033913, + 0.04991224408149719, + 0.10328979045152664, + -0.012604525312781334, + -0.0009526282665319741, + 0.003539325902238488, + 0.030797671526670456, + -0.006482059136033058, + -0.12254850566387177, + -0.01628846861422062, + 0.008082370273768902, + -0.010926682502031326, + -0.09248986840248108, + 0.10519006848335266, + -0.09846101701259613, + -0.04739067703485489, + 0.042164403945207596, + -0.027875274419784546, + -0.01555537898093462, + 0.05703569948673248, + 0.02006513625383377, + -0.04586165398359299, + -0.12723705172538757, + -0.0449770912528038, + 0.02966364286839962, + -0.05497446283698082, + -0.026352401822805405, + 0.12472869455814362, + -0.03458224982023239, + -0.14809735119342804, + -0.07115969061851501, + 0.0705861747264862, + -0.07750093191862106, + -0.015318633057177067, + 0.10928744822740555, + -0.008937145583331585, + 0.07373601943254471, + -0.06411296129226685 + ], + "graduation-cap-bold||classroom,teacher,education,school,college,university,degree,graduate,hat": [ + 0.04170083999633789, + 0.030113525688648224, + 0.073426254093647, + -0.014170339331030846, + 0.1017882451415062, + 0.030204640701413155, + -0.01719805970788002, + -0.0028963128570467234, + -0.013928698375821114, + 0.05215632542967796, + 0.06404063105583191, + -0.001945627387613058, + -0.002030319767072797, + -0.018116706982254982, + -0.04342758283019066, + 0.025809666141867638, + -0.04086211696267128, + -0.0315915122628212, + 0.024477358907461166, + -0.06081197038292885, + -0.01213405653834343, + 0.07372075319290161, + 0.0329606793820858, + 0.08231803774833679, + 0.12378280609846115, + 0.05639445036649704, + 0.01871338300406933, + -0.011823751032352448, + -0.03321439027786255, + -0.019273050129413605, + -0.02678769640624523, + -0.0470472015440464, + 0.06980980187654495, + -0.0018236867617815733, + 0.05132836103439331, + 0.06309890747070312, + 0.037249159067869186, + 0.025653205811977386, + 0.06859327107667923, + 0.006382394582033157, + -0.03372231498360634, + -0.053988777101039886, + -0.012870576232671738, + 0.07293357700109482, + 0.05609354376792908, + -0.09090349823236465, + -0.049557875841856, + -0.06015496328473091, + -0.0036016295198351145, + 0.009792161174118519, + 0.048680003732442856, + -0.08380357921123505, + -0.07146234065294266, + -0.027298513799905777, + -0.02276158519089222, + 0.1474185287952423, + -0.03470872342586517, + -0.06329122185707092, + -0.01997365988790989, + -0.0009831483475863934, + -0.12542465329170227, + -0.016046486794948578, + 0.008657044731080532, + 0.029153646901249886, + 0.06110076233744621, + -0.05749410018324852, + -0.008074826560914516, + 0.04357617720961571, + -0.02892385795712471, + 0.08737027645111084, + 0.0031869630329310894, + -0.00771661102771759, + -0.051604121923446655, + 0.015498775988817215, + -0.0105729466304183, + -0.02908996492624283, + -0.02344009280204773, + 0.06927791982889175, + 0.022886691614985466, + 0.014606555923819542, + -0.011434757150709629, + -0.07294715940952301, + -0.06856421381235123, + -0.03868457302451134, + -0.045605093240737915, + -0.010046271607279778, + -0.06945156306028366, + -0.04459026828408241, + -0.03101993352174759, + -0.06036262586712837, + -0.09562414139509201, + -0.05326537787914276, + -0.0066042630933225155, + 0.053086020052433014, + -0.08935519307851791, + 0.015764707699418068, + -0.054919805377721786, + -0.03130161762237549, + 0.07412217557430267, + 0.06372027844190598, + -0.09825056046247482, + -0.000763390155043453, + -0.021129600703716278, + -0.0577639564871788, + -0.026062365621328354, + -0.03380540758371353, + 0.002607896225526929, + -0.04412803053855896, + -0.021251218393445015, + -0.0419580414891243, + 0.02115536667406559, + -0.08041535317897797, + -0.04171154648065567, + 0.03137326240539551, + 0.04788557440042496, + 0.08394669741392136, + -0.012627576477825642, + 0.005429072305560112, + 0.08986222743988037, + 0.0708480179309845, + 0.00963310245424509, + 0.04850361496210098, + -0.029867826029658318, + -0.0555589497089386, + -0.16739214956760406, + -0.0694328024983406, + 0.01783905178308487, + -4.219267260279701e-33, + 0.05925915017724037, + 0.012145823799073696, + -0.022254476323723793, + 0.14488519728183746, + 0.0014765418600291014, + 0.004240482114255428, + -0.0729970633983612, + -0.04228484258055687, + -0.05978197604417801, + 0.034176673740148544, + 0.024213047698140144, + 0.021888552233576775, + 0.015305626206099987, + 0.03811769559979439, + 0.09792561084032059, + 0.00602310337126255, + 0.010111906565725803, + 0.048260461539030075, + -0.03354634717106819, + 0.05169083550572395, + 0.0030217301100492477, + 0.02456515282392502, + 0.006332670338451862, + -0.04742834344506264, + 0.04708845913410187, + 0.014196844771504402, + -0.049895141273736954, + -0.002599170431494713, + 0.05240235477685928, + 0.025818506255745888, + 0.04730089008808136, + 0.06010252237319946, + -0.024099355563521385, + -0.0473276749253273, + 0.02361379750072956, + -0.010476073250174522, + 0.010695220902562141, + -0.050193239003419876, + 0.03261241316795349, + -0.01087125577032566, + -0.03745562955737114, + -0.04909843951463699, + 0.03937732055783272, + 0.013291565701365471, + 0.02708824723958969, + 0.06533285230398178, + 0.03085477091372013, + -0.016211306676268578, + 0.08334451168775558, + 0.03398570045828819, + -0.041953280568122864, + -0.06364569813013077, + -0.0311831533908844, + -0.05882470682263374, + 0.047802288085222244, + 0.033802878111600876, + -0.06190989166498184, + 0.09240563958883286, + -0.027070816606283188, + -0.002302435226738453, + -0.018980534747242928, + 0.06305669993162155, + -0.045256972312927246, + 0.016701538115739822, + 0.020730629563331604, + 0.057320453226566315, + -0.0580596849322319, + 0.02985912188887596, + 0.1729830950498581, + -0.037985894829034805, + 0.0017878677463158965, + 0.009458865970373154, + -0.04131900146603584, + 0.036241333931684494, + 0.06360998749732971, + 0.004170512314885855, + -0.021325109526515007, + -0.0203810203820467, + 0.06633215397596359, + -0.042265258729457855, + -0.06327272206544876, + -0.010913432575762272, + -0.02473989687860012, + -0.08026435226202011, + 0.1236400231719017, + 0.02878507226705551, + 0.02063143625855446, + -0.04191833734512329, + 0.04922008886933327, + 0.07065939903259277, + -0.03182278946042061, + -0.02022884599864483, + 0.012215180322527885, + 0.05150287598371506, + -0.10286659002304077, + 4.815320313469862e-34, + 0.126750186085701, + 0.0628461241722107, + -0.058200567960739136, + -0.022001322358846664, + 0.018848838284611702, + 0.00030517831328324974, + 0.015208960510790348, + 0.012742100283503532, + -0.04381000995635986, + -0.02578679472208023, + -0.004488655831664801, + -0.027516139671206474, + -0.01998324505984783, + 0.04589054733514786, + -0.044852644205093384, + -0.054942574352025986, + 0.06476326286792755, + -0.04942755773663521, + -0.0616508387029171, + -0.0025305477902293205, + -0.0010054617887362838, + -0.048823095858097076, + -0.041017595678567886, + -0.015881579369306564, + -0.004252770449966192, + -0.0408783033490181, + -0.02487981505692005, + -0.02541733905673027, + -0.07750643789768219, + 0.004772805143147707, + -0.014539689756929874, + 0.013282215222716331, + -0.011815167032182217, + 0.013484080322086811, + -0.03794809803366661, + 0.03548010066151619, + 0.0033353259786963463, + -0.06703368574380875, + -0.02753221057355404, + 0.0720275416970253, + -0.02439844235777855, + -0.10909433662891388, + 0.020565064623951912, + 0.026660654693841934, + 0.033991824835538864, + -0.024217627942562103, + -0.05813024565577507, + -0.008058814331889153, + 0.0002721984055824578, + 0.05667620152235031, + -0.07554749399423599, + -0.007221851032227278, + 0.010151478461921215, + -0.01930408738553524, + 0.05247417464852333, + -0.02601591683924198, + 0.01245003379881382, + -0.052512675523757935, + -0.038129743188619614, + 0.04072519391775131, + 0.055928654968738556, + -0.03849724680185318, + 0.0066421194933354855, + 0.07804913073778152, + 0.029489221051335335, + -0.08775090426206589, + 0.020375791937112808, + 0.04356296733021736, + -0.06255360692739487, + 0.06931617110967636, + 0.05913965404033661, + 0.01293896697461605, + -0.038861896842718124, + -0.03928668051958084, + -0.055450886487960815, + -0.020968502387404442, + 0.0228284765034914, + 0.04037642106413841, + -0.005564841441810131, + 0.007975167594850063, + -0.10601036995649338, + -0.06013083457946777, + -0.06093599647283554, + 0.057390447705984116, + -0.009508258663117886, + -0.09754553437232971, + 0.0035504361148923635, + -0.0494643859565258, + 0.1092202290892601, + -0.05754534527659416, + 0.0046403431333601475, + -0.03864199295639992, + -0.031209025532007217, + -0.08049508929252625, + -0.027232542634010315, + -2.8472387114675257e-08, + -0.04036419466137886, + 0.05746542289853096, + -0.10154235363006592, + -0.015959426760673523, + 0.06763625890016556, + 0.04625219106674194, + -0.036147840321063995, + -0.08903474360704422, + 0.012019772082567215, + 0.008422317914664745, + -0.057093728333711624, + 0.07408454269170761, + -0.08184117078781128, + -0.026280000805854797, + 0.01710844598710537, + 0.08236224949359894, + -0.029194939881563187, + 0.09937998652458191, + 0.025628767907619476, + -0.1089414581656456, + -0.003430912271142006, + 0.018383152782917023, + 0.05989505350589752, + -0.01180349662899971, + -0.05939069390296936, + 0.036267880350351334, + 0.010785681195557117, + 0.08125583827495575, + 0.012179912067949772, + 0.05273344740271568, + 0.007571469992399216, + 0.004604917019605637, + 0.004828509874641895, + -0.044625863432884216, + 0.06522118300199509, + 0.014779430814087391, + 0.03455577418208122, + -0.017276402562856674, + 0.04301683232188225, + 0.1129961907863617, + -0.018671827390789986, + -0.07717856019735336, + 0.05322976037859917, + -0.0014393067685887218, + 0.020421411842107773, + 0.03935443237423897, + 0.0009436032851226628, + 0.11162146180868149, + -0.009865663945674896, + -0.014151698909699917, + 0.008477755822241306, + -0.051775865256786346, + -0.07392868399620056, + -0.01660759374499321, + 0.008950878866016865, + 0.022224148735404015, + 0.0316309817135334, + 0.0023987700697034597, + -0.1375093013048172, + -0.03962353989481926, + 0.12349245697259903, + 0.00021626646048389375, + 0.00012419713311828673, + 0.014608370140194893 + ], + "grains-bold||wheat,gluten,farm,farming,agriculture": [ + 0.018732914701104164, + -0.03214816004037857, + -0.009930477477610111, + 0.0420759916305542, + 0.07052167505025864, + -0.001957327127456665, + 0.0071128313429653645, + -0.06784404814243317, + -0.06312479823827744, + -0.02652405947446823, + 0.09618530422449112, + -0.0518442764878273, + 0.0009214676101692021, + -0.09354457259178162, + -0.055527202785015106, + -0.01072890404611826, + 0.08150383085012436, + 0.03684169799089432, + -0.06159180402755737, + -0.07654425501823425, + 0.06292567402124405, + 0.08743676543235779, + 0.029421065002679825, + 0.008048910647630692, + 0.11105082184076309, + 0.023027686402201653, + -0.01465374231338501, + -0.03747384995222092, + -0.021918771788477898, + -0.05460133031010628, + -0.06217094138264656, + 0.05883465334773064, + 0.08594430238008499, + 0.008213927038013935, + 0.0533917136490345, + -0.0015134626301005483, + 0.013775399886071682, + -0.06586106866598129, + 0.026625998318195343, + -0.006316071376204491, + 0.0028529611881822348, + -0.10392476618289948, + 0.022759009152650833, + -0.023175816982984543, + -0.07364792376756668, + 0.018118727952241898, + 0.030233198776841164, + -0.01078306045383215, + 0.02496572583913803, + 0.03942102938890457, + 0.03961692377924919, + -0.04292318969964981, + -0.10564500838518143, + 0.028055189177393913, + 0.06255535036325455, + 0.021153409034013748, + -0.1080390140414238, + -0.016750970855355263, + -0.02612515725195408, + 0.056737035512924194, + -0.012807673774659634, + 0.01309359259903431, + -0.025378843769431114, + 0.0002178278227802366, + 0.038614124059677124, + 0.061227768659591675, + -0.03534265607595444, + 0.04038504883646965, + -0.032779499888420105, + -0.061068881303071976, + 0.0618007518351078, + -0.042636528611183167, + 0.0006551099359057844, + 0.03449993580579758, + -0.07327314466238022, + 0.015635082498192787, + 0.03974084183573723, + -0.042926449328660965, + 0.044515322893857956, + -0.08111213892698288, + -0.05352207273244858, + -0.0006266727577894926, + 0.05245278403162956, + -0.04172118380665779, + -0.03311203792691231, + 0.02164873667061329, + -0.07452419400215149, + 0.01025846041738987, + 0.0708465576171875, + -0.07158667594194412, + -0.03873581811785698, + -0.08007100969552994, + -0.01380430068820715, + 0.06285879760980606, + 0.02259371615946293, + 0.026386374607682228, + 0.02881484106183052, + -0.0729234516620636, + -0.05650467798113823, + 0.005893884692341089, + 0.05484367907047272, + -0.028073929250240326, + 0.10651229321956635, + -0.018192384392023087, + -0.09581713378429413, + 0.017326876521110535, + -0.10742440819740295, + -0.032065216451883316, + -0.008787248283624649, + 0.03799108415842056, + -0.009904081001877785, + 0.023386569693684578, + -0.10118735581636429, + -0.005020852666348219, + -0.051920995116233826, + -0.046639587730169296, + 0.01372981071472168, + -0.07314009219408035, + 0.008264066651463509, + -0.025433775037527084, + -0.014637515880167484, + 0.0026472134049981833, + -0.009323585778474808, + -0.05334310978651047, + 0.032477375119924545, + 0.006513230036944151, + -0.007784589193761349, + -4.680372184463021e-34, + -0.01797598786652088, + -0.013614412397146225, + 0.0160831306129694, + 0.04885607957839966, + -0.0427350178360939, + -0.023712022230029106, + -0.05260162055492401, + -0.10082077980041504, + 0.015311473049223423, + -0.009302068501710892, + -0.03653248772025108, + 0.06945741921663284, + -0.011227874085307121, + 0.05909749120473862, + 0.040550656616687775, + -0.03596889600157738, + -0.005136499647051096, + -0.059306550770998, + 0.0005424920818768442, + 0.06784017384052277, + -0.11210066080093384, + 0.09006547927856445, + -0.07077781111001968, + 0.014706607908010483, + -0.03628791496157646, + -0.07115332782268524, + 0.07330965250730515, + -0.06506787985563278, + -0.04785919189453125, + 0.016730457544326782, + 0.0819309800863266, + 0.005934454500675201, + 0.010452079586684704, + -0.0041244905441999435, + -0.04229921102523804, + 0.06023161858320236, + -0.07187251001596451, + -0.04654205963015556, + -0.028603462502360344, + 0.0731450691819191, + -0.0333821177482605, + -0.006386640015989542, + 0.06573468446731567, + 0.006025215610861778, + 0.0656827911734581, + 0.07930894196033478, + 0.02640710584819317, + -0.0021928984206169844, + 0.0032385457307100296, + 0.03179371729493141, + 0.042398080229759216, + -0.006056601647287607, + -0.023358400911092758, + 0.008045362308621407, + 0.04258088022470474, + 0.016376687213778496, + -0.03302115201950073, + 0.08599866181612015, + 0.0013195768697187304, + 0.05633210390806198, + -0.002151887398213148, + 0.02402997948229313, + -0.0030019369442015886, + -0.03649409860372543, + 0.007738207001239061, + 0.04730844870209694, + -0.09576304256916046, + 0.052200719714164734, + -0.00016533122106920928, + 0.09106044471263885, + 0.004005866125226021, + 0.023577231913805008, + 0.024062272161245346, + 0.06219252198934555, + 0.003772433614358306, + 0.04554644972085953, + 0.030400684103369713, + 0.04635964706540108, + -0.023141033947467804, + -0.0348716638982296, + 0.013496026396751404, + -0.04730967432260513, + -0.03680940344929695, + 0.06640572845935822, + -0.1287013590335846, + 0.10809021443128586, + -0.0908290445804596, + -0.05178786441683769, + 0.07561914622783661, + -0.041714102029800415, + -0.04354916885495186, + 0.08419287949800491, + -0.027759969234466553, + -0.04424574598670006, + -0.12072616070508957, + -1.465637121496441e-33, + 0.05681734159588814, + 0.006674379575997591, + -0.03217203915119171, + 0.07881807535886765, + -0.0024296175688505173, + -0.007732401601970196, + 0.03147505596280098, + -0.037938736379146576, + 0.05242108181118965, + 0.058855436742305756, + 0.020634585991501808, + 0.040218956768512726, + -0.046495430171489716, + -0.06880068778991699, + -0.046431101858615875, + 0.047992851585149765, + 0.0004869414842687547, + 0.11329734325408936, + 0.023471863940358162, + 0.02347707748413086, + -0.11442109197378159, + 0.0585942342877388, + -0.030460024252533913, + 0.011553969234228134, + -0.0019145568367093801, + 0.007158360909670591, + -0.023017270490527153, + -0.007052723318338394, + -0.06765034794807434, + -0.08047498017549515, + 0.012092933058738708, + -0.12249468266963959, + 0.08299652487039566, + -0.005020226817578077, + -0.04440324753522873, + 0.03244958072900772, + 0.058914441615343094, + -0.07374179363250732, + 0.021460821852087975, + 0.0010859343456104398, + -0.029335906729102135, + 0.061106808483600616, + 0.04764755815267563, + 0.018915170803666115, + -0.06500602513551712, + 0.004701758734881878, + -0.01571141928434372, + -0.017360035330057144, + -0.05062335729598999, + 0.062437377870082855, + 0.038404323160648346, + 0.057409074157476425, + -0.0032666793558746576, + -0.04860490560531616, + -0.014781639911234379, + -0.0521819107234478, + 0.03563068062067032, + 0.019444923847913742, + -0.06201740726828575, + 0.02697301283478737, + -0.05009420961141586, + 0.11079193651676178, + 0.047887831926345825, + 0.021786866709589958, + 0.10645325481891632, + -0.07968880981206894, + -0.04935264214873314, + -0.05266321450471878, + 0.0063688140362501144, + 0.030053624883294106, + 0.02383771911263466, + -0.02734011970460415, + 0.027424084022641182, + 0.044707104563713074, + 0.031279075890779495, + -0.013705356977880001, + 0.018795398995280266, + 0.028328323736786842, + -0.0008643765468150377, + 0.017194494605064392, + 0.03187639266252518, + -0.09334691613912582, + 0.02707098238170147, + 0.11635836213827133, + 0.00045837086508981884, + 0.09135927259922028, + -0.016199633479118347, + 0.036484383046627045, + 0.13639014959335327, + 0.029444193467497826, + -0.06343690305948257, + -0.029535096138715744, + 0.044072579592466354, + 0.0284323301166296, + 0.06305243074893951, + -1.932703952434167e-08, + 0.03886986896395683, + -0.03648873418569565, + -0.0960458517074585, + -0.003904324257746339, + 0.010382900014519691, + -0.020910779014229774, + 0.003150401171296835, + -0.026082394644618034, + 0.022010663524270058, + 0.060959815979003906, + -0.02607567422091961, + 0.12269428372383118, + -0.12325812876224518, + -0.026130208745598793, + 0.010195164009928703, + -0.014578170143067837, + -0.047153305262327194, + 0.04794351011514664, + -0.018954826518893242, + -0.006704952567815781, + -0.008002253249287605, + 0.03202211856842041, + -0.04965074360370636, + -0.03422868624329567, + 0.03601381182670593, + 0.007710914593189955, + 0.008082237094640732, + 0.029882000759243965, + 0.10315806418657303, + 0.05403492599725723, + 0.03788003325462341, + 0.05805104970932007, + -0.020574452355504036, + -0.06293977797031403, + -0.1330234557390213, + 0.006961417384445667, + -0.022777212783694267, + 0.02516070567071438, + 0.014014923945069313, + 0.10500497370958328, + -0.058080725371837616, + 0.0012300144881010056, + 0.03941549360752106, + -0.05492030084133148, + -0.016869284212589264, + -0.010228661820292473, + -0.04155563563108444, + 0.018481861799955368, + -0.012987406924366951, + -0.06298583745956421, + -0.04794060066342354, + 0.03172352910041809, + 0.042737726122140884, + 0.03772502392530441, + -0.039120450615882874, + -0.08312799781560898, + 0.0176681037992239, + -0.04832778498530388, + 0.06163347512483597, + -0.02084476128220558, + 0.08189418911933899, + -0.04800376296043396, + 0.02062881551682949, + 0.01764395460486412 + ], + "grains-slash-bold||gluten-free,wheat,gluten,farm,farming,agriculture": [ + -0.00374454609118402, + -0.0479305125772953, + 0.009185804054141045, + 0.04023260995745659, + 0.03565709665417671, + -0.003960753325372934, + 0.0027549071237444878, + -0.02575940079987049, + -0.023583516478538513, + -0.03299020603299141, + 0.11053087562322617, + -0.05206359922885895, + -0.007836392149329185, + -0.06333000212907791, + -0.09101054817438126, + -0.008054185658693314, + 0.08957613259553909, + 0.04197873920202255, + -0.06356289237737656, + -0.05419611185789108, + 0.057240866124629974, + 0.12219875305891037, + 0.010136128403246403, + 0.0250169076025486, + 0.12863720953464508, + 0.0024375098291784525, + -0.01101270318031311, + -0.029385391622781754, + -0.03559049963951111, + -0.05756548047065735, + -0.0400712750852108, + 0.015444889664649963, + 0.09342482686042786, + 0.005387780722230673, + 0.07899042963981628, + 0.006323294714093208, + 0.03685363382101059, + -0.0827258750796318, + 0.05785566568374634, + -0.03254609555006027, + 0.004363180138170719, + -0.12226640433073044, + -0.009287010878324509, + -0.019903890788555145, + -0.0811581239104271, + 0.010297599248588085, + 0.03367853909730911, + -0.03654465824365616, + -0.008855514228343964, + 0.07003294676542282, + 0.055823732167482376, + -0.03222028538584709, + -0.12836411595344543, + 0.025572678074240685, + 0.08503298461437225, + 0.011683891527354717, + -0.11317723244428635, + 0.03176574036478996, + -0.0070050666108727455, + 0.07261963933706284, + -0.022597387433052063, + 0.0033141570165753365, + -0.0486811064183712, + -0.004107808694243431, + 0.0035260445438325405, + 0.053487036377191544, + -0.026900731027126312, + 0.046506963670253754, + -0.03663603588938713, + -0.08626043796539307, + 0.028072865679860115, + -0.05557664483785629, + -0.004649742040783167, + 0.022868670523166656, + -0.06719883531332016, + -0.003030159045010805, + 0.024755556136369705, + -0.006175884511321783, + 0.0539417564868927, + -0.10582659393548965, + -0.010515410453081131, + 0.007021763361990452, + 0.0631403923034668, + 0.0032005556859076023, + -0.021250516176223755, + 0.035239025950431824, + -0.07016971707344055, + 0.022096555680036545, + 0.07514440268278122, + -0.10816401243209839, + -0.03799006715416908, + -0.10342775285243988, + 0.008206360042095184, + 0.06332071870565414, + 0.008222298696637154, + 0.020108448341488838, + -0.019335782155394554, + -0.048475466668605804, + -0.045765336602926254, + 0.019944146275520325, + 0.06567839533090591, + -0.005248256493359804, + 0.031213337555527687, + -0.021523429080843925, + -0.06922457367181778, + 0.03613220527768135, + -0.08874040096998215, + -0.0032412393484264612, + 0.007671038620173931, + 0.031454987823963165, + 0.02098638191819191, + 0.03191797435283661, + -0.08476792275905609, + -0.03473639115691185, + -0.06925851851701736, + -0.047038838267326355, + -0.005688538774847984, + -0.1026335135102272, + 0.03321627900004387, + 0.020720887929201126, + -0.04373369738459587, + -0.010565663687884808, + -0.007613795809447765, + -0.056831374764442444, + 0.03544559329748154, + -0.0004924119566567242, + 0.012637323699891567, + -1.5404111436717121e-33, + 0.007601445075124502, + 0.015678884461522102, + 0.04951748624444008, + -0.010911143384873867, + -0.008016198873519897, + -0.036060430109500885, + -0.0757351815700531, + -0.04780621826648712, + -0.0025266672018915415, + 0.005632051732391119, + -0.03653953969478607, + 0.03900853917002678, + -0.013293125666677952, + 0.059732019901275635, + 0.027207128703594208, + -0.021812625229358673, + 0.016815634444355965, + -0.08973848074674606, + 0.00926954299211502, + 0.04070986434817314, + -0.11393925547599792, + 0.1383797526359558, + -0.0614670068025589, + 0.04342345520853996, + -0.022636212408542633, + -0.11020442843437195, + 0.037659842520952225, + -0.06868401169776917, + -0.018766049295663834, + 0.023801740258932114, + 0.048360712826251984, + 0.010290668345987797, + 0.02418540045619011, + -0.009359733201563358, + -0.0491609051823616, + 0.09177319705486298, + -0.044468555599451065, + -0.05169350281357765, + -0.07599383592605591, + 0.0706520527601242, + -0.04359329491853714, + -0.021968010812997818, + 0.017354167997837067, + 0.014339286834001541, + 0.05479240417480469, + 0.04678259417414665, + 0.020971616730093956, + -0.06526061147451401, + -0.010739766061306, + 0.05314787104725838, + 0.03409237787127495, + 0.006659363862127066, + 0.006273659411817789, + 0.019132785499095917, + 0.021893590688705444, + -0.02036109007894993, + -0.04814113304018974, + 0.07843531668186188, + 0.0336596705019474, + 0.05452730879187584, + -0.0074076843447983265, + 0.04316036030650139, + -0.02915186993777752, + -0.030032064765691757, + -0.049855928868055344, + 0.041727595031261444, + -0.09260088205337524, + 0.04595082253217697, + -0.02332722395658493, + 0.085368312895298, + -0.02165105566382408, + 0.016608962789177895, + 0.040049958974123, + 0.0649644210934639, + -0.03068424202501774, + 0.029643945395946503, + -0.02044200338423252, + 0.05435938760638237, + 0.006638114340603352, + -0.03624211251735687, + -0.014308678917586803, + -0.04643085226416588, + -0.00033955482649616897, + 0.04728661850094795, + -0.1149834617972374, + 0.09252329170703888, + -0.09333855658769608, + -0.04185127839446068, + 0.07684791088104248, + -0.04262247681617737, + -0.011076871305704117, + 0.09360728412866592, + -0.06539824604988098, + -0.04354657605290413, + -0.0668623223900795, + -4.92677738173697e-34, + 0.0897357165813446, + 0.029922418296337128, + -0.05312037467956543, + 0.08204180002212524, + -0.013723007403314114, + -0.03560150787234306, + 0.02920910343527794, + -0.03281152993440628, + 0.055306315422058105, + 0.03524818643927574, + 0.030574847012758255, + 0.07189815491437912, + -0.027000047266483307, + -0.06846103817224503, + -0.023781392723321915, + 0.022017134353518486, + -0.035853311419487, + 0.0661868005990982, + 0.022962849587202072, + 0.030505036935210228, + -0.10950031876564026, + 0.04343178868293762, + 0.001109811826609075, + 0.01922469399869442, + -0.006839947309345007, + 0.015469753183424473, + 0.005304251331835985, + -0.0050077131018042564, + -0.02730514109134674, + -0.05477728694677353, + 0.021983269602060318, + -0.10392875969409943, + 0.048152562230825424, + -0.04226529225707054, + -0.04696455970406532, + 0.03893326595425606, + -0.015170509926974773, + -0.01783875748515129, + 0.008925061672925949, + -0.05178248882293701, + -0.04529229551553726, + 0.04774053394794464, + 0.05304967239499092, + 0.05516604706645012, + -0.04982170835137367, + -0.000592381926253438, + -0.03195713832974434, + -0.038319312036037445, + -0.009114867076277733, + 0.05188552290201187, + 0.022843314334750175, + 0.07715790718793869, + 0.007561251521110535, + -0.046130675822496414, + -0.012149326503276825, + -0.047619085758924484, + -0.009331468492746353, + 0.02346305176615715, + -0.10555730015039444, + 0.04381820932030678, + -0.03039734810590744, + 0.09985353797674179, + 0.01688562147319317, + 0.03275787830352783, + 0.12786290049552917, + -0.06609543412923813, + -0.04739489033818245, + -0.04053136706352234, + 0.036669421941041946, + 0.043013252317905426, + 0.04328344389796257, + -0.006485442165285349, + 0.029042815789580345, + 0.031481314450502396, + 0.047929901629686356, + -0.03514277935028076, + -0.009817871265113354, + 0.04008571058511734, + 0.004542306065559387, + 0.03217381238937378, + 0.060812368988990784, + -0.07668901979923248, + -0.004119523335248232, + 0.12883426249027252, + -0.0024023184087127447, + 0.039869774132966995, + -0.043122272938489914, + 0.07422181963920593, + 0.1130262166261673, + -0.0013009256217628717, + -0.03644699230790138, + -0.01955810748040676, + 0.04532911255955696, + 0.04621713235974312, + 0.0375860333442688, + -2.153360867396259e-08, + 0.038348786532878876, + -0.04810826852917671, + -0.10158590227365494, + 0.01577412337064743, + 0.03655282035470009, + 0.006514908745884895, + -0.0038131345063447952, + -0.018190082162618637, + 0.041990578174591064, + 0.09524022787809372, + -0.007525062188506126, + 0.08889415115118027, + -0.1606486290693283, + -0.025750406086444855, + -0.008425243198871613, + 0.014532319270074368, + -0.027184510603547096, + 0.0633421316742897, + -0.013689129613339901, + 0.03284565359354019, + -0.048825155943632126, + 0.0390862375497818, + -0.03660847619175911, + -0.01605527102947235, + 0.027778703719377518, + -0.025493867695331573, + 0.013234746642410755, + 0.032027535140514374, + 0.09545896202325821, + 0.05210238695144653, + 0.03767598047852516, + 0.06524830311536789, + -0.05025981366634369, + -0.06318645924329758, + -0.11944150179624557, + 0.01943003199994564, + -0.010188966058194637, + 0.05268743261694908, + 0.03244613856077194, + 0.08207689970731735, + -0.05133643001317978, + -0.02285079099237919, + 0.05443699285387993, + -0.06450636684894562, + -0.032443925738334656, + -0.013209875673055649, + -0.025893015787005424, + 0.027742119506001472, + -0.018251923844218254, + -0.039893146604299545, + -0.02498777024447918, + 0.055924270302057266, + 0.027324683964252472, + 0.02904442511498928, + -0.04279939830303192, + -0.046313490718603134, + 0.028921572491526604, + -0.02804873324930668, + 0.05410812422633171, + -0.03665227070450783, + 0.06728300452232361, + -0.06984355300664902, + 0.03207648545503616, + 0.01854134351015091 + ], + "graph-bold||nodes,tree": [ + 0.020207056775689125, + 0.04423535615205765, + -0.006056296639144421, + 0.059864021837711334, + 0.07631465047597885, + -0.05021362379193306, + 0.009202703833580017, + -0.0548124723136425, + -0.0072851162403821945, + 0.0825527086853981, + 0.001654357765801251, + 0.023630574345588684, + 0.04795718565583229, + -0.031010286882519722, + 0.04254162684082985, + 0.09213078022003174, + -0.014589129015803337, + 0.04179850593209267, + 0.0587761327624321, + -0.08020757883787155, + 0.02745523676276207, + 0.031252894550561905, + 0.007008488290011883, + 0.013707240112125874, + 0.06576119363307953, + -0.021525291725993156, + -0.0146616967394948, + -0.0013218483654782176, + 0.05965372174978256, + -0.03590662404894829, + -0.011715742759406567, + -0.043946005403995514, + 0.09188983589410782, + 0.08035296201705933, + -0.03439832478761673, + -0.004129779990762472, + 0.0036166126374155283, + -0.05158937722444534, + 0.03357546776533127, + 0.11479248851537704, + 0.05480450019240379, + 0.04193120077252388, + -0.005463375244289637, + -0.006553121842443943, + -0.05243690311908722, + 0.012994591146707535, + -0.11312888562679291, + 0.0200069360435009, + 0.025033632293343544, + 0.00012458133278414607, + 0.006932054180651903, + -0.09333991259336472, + -0.10928527265787125, + -0.059363968670368195, + 0.028606802225112915, + 0.04039566218852997, + -0.07713612914085388, + -0.050516821444034576, + 0.05521373450756073, + 0.025608090683817863, + 0.06226087361574173, + 0.016401097178459167, + 0.038880325853824615, + -0.013950097374618053, + 0.06448009610176086, + 0.06528464704751968, + 0.006228990852832794, + 0.026143940165638924, + -0.02387954108417034, + 0.05945776775479317, + 0.09578419476747513, + 0.004122690297663212, + -0.06121541187167168, + 0.009359416551887989, + -0.03613300994038582, + 0.06784694641828537, + 0.09176968783140182, + 0.04063435271382332, + -0.0807361900806427, + -0.05414154753088951, + -0.10322067886590958, + -0.0279234666377306, + -0.053701773285865784, + -0.022351153194904327, + -0.03022787719964981, + 0.06910427659749985, + -0.1301671266555786, + -0.06768187880516052, + -0.03658456727862358, + 0.039166029542684555, + -0.10988392680883408, + 0.005902179516851902, + -0.0445362888276577, + 0.0700928121805191, + -0.09293826669454575, + 0.03405625745654106, + 0.12292935699224472, + -0.014436597935855389, + -0.07423735409975052, + 0.07052431255578995, + 0.009347861632704735, + 0.04108019545674324, + 0.023490970954298973, + -0.0543401725590229, + -0.0828709751367569, + 0.03172723948955536, + -0.05538174510002136, + -0.03956659883260727, + -0.0020968986209481955, + 0.005527882371097803, + -0.008107656612992287, + -0.02646920084953308, + -0.041165485978126526, + 0.026534978300333023, + -0.07985621690750122, + -0.0906388983130455, + -0.009447508491575718, + -0.05866802856326103, + 0.029362430796027184, + 0.05528247356414795, + 0.03129396587610245, + -0.008671843446791172, + -0.04949226975440979, + -0.02952880598604679, + 0.04322310909628868, + -0.04905029386281967, + 0.0015168635873124003, + -2.2541452322100962e-33, + 0.06670690327882767, + 0.03556741401553154, + 0.013613237999379635, + 0.03982960805296898, + 0.054603561758995056, + 0.0433277003467083, + -0.07975985109806061, + -0.08442991971969604, + -0.08457469195127487, + 0.010418753139674664, + -0.033664602786302567, + 0.015129754319787025, + 0.010708639398217201, + -0.022417375817894936, + 0.029937321320176125, + -0.027306387200951576, + 0.03079199604690075, + -0.06326871365308762, + -0.05363414064049721, + -0.03586450219154358, + -0.033218953758478165, + -0.002787339501082897, + -0.04921731352806091, + 0.019593587145209312, + -0.008506161160767078, + -0.030785758048295975, + 0.014566480182111263, + 0.011161180213093758, + 0.01455316785722971, + 0.009669412858784199, + -0.03876619040966034, + 0.016654061153531075, + 0.05638982728123665, + 0.00898494478315115, + -0.03443272039294243, + 0.022007236257195473, + -0.002211527433246374, + -0.020555270835757256, + 0.022273628041148186, + 0.0011346560204401612, + -0.04422464966773987, + 0.014365134760737419, + 0.06733109802007675, + -0.017466166988015175, + 0.03101809322834015, + 0.13403405249118805, + -0.016283463686704636, + -0.09223075956106186, + -0.012347455136477947, + 0.011602248065173626, + -0.026752779260277748, + 0.007306776009500027, + 0.06659053266048431, + 0.05545410141348839, + -0.0023230507504194975, + 0.01690375618636608, + 0.07494177669286728, + 0.1057194322347641, + 0.0005097329849377275, + 0.05961071699857712, + 0.048130664974451065, + -0.027123404666781425, + 0.06725852191448212, + -0.0035144626162946224, + -0.04483480378985405, + 0.1258784383535385, + -0.08638297766447067, + 0.005830133333802223, + 0.0801362469792366, + -0.039875008165836334, + 0.012940122745931149, + 0.12765927612781525, + -0.0015228968113660812, + -0.04285705089569092, + -0.04652387648820877, + 0.028106406331062317, + -0.03696193918585777, + -0.0016363553004339337, + -1.0158555596717633e-05, + -0.04596419259905815, + -0.12667053937911987, + -0.07271039485931396, + -0.01035704929381609, + 0.048149801790714264, + 0.06378496438264847, + -0.060933999717235565, + -0.00037031894316896796, + 0.03265378251671791, + 0.006868896074593067, + 0.0167606920003891, + -0.02733587846159935, + 0.0032374279107898474, + 0.025330526754260063, + -0.024634884670376778, + -0.019091445952653885, + 5.3408186345202346e-34, + 0.01781255006790161, + 0.08533915877342224, + 0.03625171631574631, + -0.008232291787862778, + -0.004472135100513697, + -0.010249505750834942, + -0.06543276458978653, + -0.008726178668439388, + -0.05721482262015343, + 0.08605702966451645, + 0.046128880232572556, + -0.010255655273795128, + -0.05804373323917389, + -0.048646293580532074, + 0.03309741988778114, + -0.01622314192354679, + 0.011281147599220276, + 0.0635555312037468, + -0.07124160975217819, + 0.020357569679617882, + -0.03239808231592178, + 0.03235127031803131, + -0.05504865199327469, + 0.05500464141368866, + 0.05554801598191261, + -0.009318028576672077, + -0.029968993738293648, + 0.015539445914328098, + -0.06399646401405334, + -0.046362292021512985, + -0.03132729232311249, + -0.035015057772397995, + 0.0489988811314106, + -0.002460298128426075, + 0.016435593366622925, + 0.028968101367354393, + 0.016411192715168, + -0.08942274749279022, + 0.05520220845937729, + 0.025497915223240852, + -0.0029861205257475376, + 0.023344075307250023, + -0.06583940237760544, + -0.005777629557996988, + -0.04037542641162872, + 0.06943238526582718, + 0.034875065088272095, + -0.03237740322947502, + -0.042023591697216034, + 0.043639879673719406, + 0.003871532389894128, + -0.0060448674485087395, + 0.060982756316661835, + 0.01971409097313881, + -0.059167131781578064, + -0.09795469790697098, + 0.012435484677553177, + 0.11307983100414276, + -0.002912696683779359, + -0.005942071322351694, + -0.06203211098909378, + 0.0006846871110610664, + -0.06245317682623863, + -0.010543358512222767, + 0.0034318696707487106, + -0.05683217942714691, + 0.006093269679695368, + -0.08194977045059204, + 0.0424451120197773, + 0.021531149744987488, + 0.033589303493499756, + 0.04683010280132294, + -0.032721519470214844, + 0.054439693689346313, + 0.07334930449724197, + -0.05819156765937805, + -0.010576460510492325, + 0.06826034933328629, + -0.03447333350777626, + 0.03765108436346054, + -0.08821681141853333, + 0.0004176070215180516, + -0.03780536726117134, + 0.08664486557245255, + 0.0011748782126232982, + 0.001221482758410275, + 0.008575819432735443, + 0.06872179359197617, + 0.0013667999301105738, + -0.005748126655817032, + -0.03829982504248619, + -0.00014275687863118947, + -0.03661279007792473, + -0.030528845265507698, + 0.0025739199481904507, + -1.4799807601661996e-08, + -0.13486255705356598, + 0.004944165702909231, + -0.03901413455605507, + -0.009742875583469868, + 0.0657159686088562, + -0.026990192010998726, + 0.09197182208299637, + 0.005409561097621918, + -0.05900362879037857, + 0.0469474270939827, + 0.04494267702102661, + 0.007316455245018005, + -0.04369336739182472, + -0.07441007345914841, + 0.006509918253868818, + -0.017138462513685226, + -0.021157754585146904, + 0.0297236330807209, + 0.014249566942453384, + 0.04875849932432175, + -0.02411735989153385, + 0.024555297568440437, + -0.00396770192310214, + 0.09889143705368042, + 0.03048556298017502, + -0.07237222790718079, + -0.052584320306777954, + -0.009574216790497303, + 0.020581291988492012, + 0.09807151556015015, + -0.022734617814421654, + 0.019231779500842094, + 0.020644458010792732, + 0.07048168033361435, + -0.1230602040886879, + -0.0460650697350502, + 0.013529228046536446, + 0.05566013604402542, + -0.03248470649123192, + 0.1454516351222992, + -0.07554402202367783, + 0.031867168843746185, + -0.024708976969122887, + -0.031586822122335434, + -0.07885963469743729, + 0.022815454751253128, + 0.04234270006418228, + 0.03457094356417656, + 0.00590690691024065, + -0.12200372666120529, + -0.029692867770791054, + -0.03867989033460617, + -0.017882950603961945, + -0.00885421596467495, + -0.03294913098216057, + -0.08335784077644348, + -0.054486338049173355, + 0.08120860159397125, + -0.04134641960263252, + 0.021926769986748695, + 0.13430890440940857, + -0.06539180874824524, + 0.05481867864727974, + -0.029393531382083893 + ], + "graphics-card-bold||*new*,graphics card,microchip,computer,circuit": [ + -0.02712697722017765, + -0.001123742200434208, + -0.02323904074728489, + 0.014202138409018517, + 0.0522797554731369, + -0.09024177491664886, + 0.04593883082270622, + 0.008759916760027409, + -0.01911802962422371, + -0.05123202130198479, + 0.02071499265730381, + -0.0198513176292181, + 0.002719826065003872, + -0.013624439015984535, + -0.03351970389485359, + 0.026775652542710304, + 0.010773853398859501, + 0.00376513390801847, + 0.033825527876615524, + 0.02730334736406803, + 0.011556359939277172, + -0.03815152123570442, + -0.039443179965019226, + 0.037117090076208115, + 0.04421829432249069, + 0.08690567314624786, + 0.1333465874195099, + -0.011975137516856194, + -0.03126373142004013, + -0.04060579091310501, + -0.04416554793715477, + 0.04843556508421898, + 0.15247656404972076, + -0.00047557143261656165, + 0.0954713374376297, + 0.010527384467422962, + -0.017024219036102295, + -0.06489614397287369, + 0.007038687821477652, + -0.06343338638544083, + -0.02912219613790512, + -0.03533477708697319, + 0.044598132371902466, + 0.0868682786822319, + 0.009916093200445175, + -0.0024519851431250572, + -0.027465710416436195, + -0.03778848052024841, + -0.008486021310091019, + -0.04905463755130768, + -0.04036044329404831, + -0.0680902749300003, + -0.08929360657930374, + -0.05667926371097565, + -0.053225722163915634, + 0.029992498457431793, + -0.057778146117925644, + -0.08202950656414032, + 0.010682700201869011, + 0.005085846874862909, + 0.05329646170139313, + -0.05611557513475418, + 0.05556584522128105, + 0.09723194688558578, + 0.002123142359778285, + -0.013801367953419685, + 0.031134624034166336, + -0.05217425897717476, + 0.031462520360946655, + -0.007191055454313755, + 0.07359954714775085, + 0.025755349546670914, + -0.0576830618083477, + -0.014569725841283798, + -0.02894783765077591, + -0.009765561670064926, + 0.01085172314196825, + 0.02419932745397091, + 0.05929497256875038, + -0.06363123655319214, + -0.03202991932630539, + -0.07503102719783783, + -0.014536455273628235, + -0.025526905432343483, + 0.0755632296204567, + 0.057544536888599396, + -0.03757026419043541, + -0.03388892859220505, + -0.042087018489837646, + -0.09106847643852234, + -0.09836322069168091, + 0.014857767149806023, + 0.030114898458123207, + 0.05388188362121582, + -0.05127958208322525, + -0.02436191216111183, + 0.026200532913208008, + -0.06434449553489685, + -0.038153886795043945, + 0.09058717638254166, + -0.022849325090646744, + 0.053996793925762177, + 0.09967838227748871, + 0.08262903243303299, + 0.01190222054719925, + 0.026495113968849182, + -0.03529622033238411, + 0.05632084608078003, + -0.046322766691446304, + 0.000535199826117605, + -0.01443460863083601, + -0.0015051609370857477, + -0.06440538167953491, + -0.006638250779360533, + -0.005479091312736273, + 0.0008544098236598074, + -0.07671894878149033, + 0.03619936853647232, + 0.1009070873260498, + 0.1195835992693901, + -0.03644360974431038, + -0.07691815495491028, + -0.061199482530355453, + -0.057632677257061005, + -0.007857291027903557, + 0.0014267918886616826, + -0.023895571008324623, + -2.634814016702524e-33, + 0.05297137051820755, + 0.032172102481126785, + -0.01797848753631115, + 0.07082921266555786, + 0.008359139785170555, + 0.07662393897771835, + -0.01460288092494011, + -0.08962814509868622, + 0.02283749170601368, + 0.052771493792533875, + 0.0577569417655468, + 0.054362017661333084, + 0.033268410712480545, + 0.1721218079328537, + 0.08057796210050583, + -0.0794314444065094, + 0.005094741936773062, + -0.0037795454263687134, + 0.02234966866672039, + 0.004982810467481613, + -0.04244748130440712, + 0.0955551490187645, + 0.027905557304620743, + -0.06512627005577087, + 0.005791542585939169, + 0.01821734756231308, + -0.06078284606337547, + -0.01657315343618393, + 0.0056273434311151505, + 0.013928809203207493, + 0.06188472360372543, + -0.0051157521083951, + 0.01668766513466835, + 0.004306407645344734, + 0.0034857727587223053, + 0.06898894906044006, + 0.004895451012998819, + -0.056406497955322266, + -0.03006627969443798, + 0.057323556393384933, + -0.11423460394144058, + 0.04738914221525192, + -0.05156313627958298, + -0.10437114536762238, + 0.05375853180885315, + 0.09685152024030685, + -0.029032565653324127, + -0.053195465356111526, + -0.017577199265360832, + 0.07877808064222336, + -0.10097939521074295, + -0.014693817123770714, + 0.06940563768148422, + -0.004891837947070599, + -0.010217375122010708, + -0.10526173561811447, + -0.02623129077255726, + 0.06214118003845215, + 0.07002484053373337, + 0.011038707569241524, + -0.04865659028291702, + 0.021006595343351364, + -0.013493023812770844, + 0.031762804836034775, + -0.02945048175752163, + 0.08241691440343857, + -0.025137072429060936, + 0.03288118168711662, + -0.020317332819104195, + 0.05003395304083824, + 0.00047556086792610586, + 0.018049346283078194, + -0.025286931544542313, + 0.025874631479382515, + -0.001087915850803256, + 0.02339291386306286, + -0.06470419466495514, + -0.04127759858965874, + -0.06383737176656723, + -0.043592970818281174, + -0.083900086581707, + -0.004156564828008413, + -0.09277454018592834, + 0.05980107560753822, + -0.024120500311255455, + 0.07520938664674759, + -0.026943987235426903, + 0.004644614178687334, + 0.04518534243106842, + 0.05456221476197243, + -0.07062047719955444, + 0.008583524264395237, + 0.013130852952599525, + 0.014840560965240002, + -0.028546703979372978, + -3.188592481864025e-34, + -0.037067051976919174, + -0.020114341750741005, + -0.007146286778151989, + 0.03179098293185234, + -0.08293423056602478, + -0.0009255156037397683, + 0.011809608899056911, + -0.011375128291547298, + 0.015889184549450874, + -0.04847278445959091, + 0.06581041216850281, + 0.06834739446640015, + -0.05170832574367523, + -0.08294478803873062, + -0.03114078938961029, + -0.012809332460165024, + 0.0005892678746022284, + 0.0006265607662498951, + -0.007475565187633038, + 0.02457132749259472, + 0.008462795056402683, + 0.028060726821422577, + -0.11223793029785156, + 0.011647912673652172, + 0.057352084666490555, + 0.07840750366449356, + 0.010712582617998123, + -0.03915359824895859, + 0.005316520109772682, + -0.053177691996097565, + -0.014839062467217445, + -0.011572440154850483, + 0.06429173052310944, + 0.1439102292060852, + 0.05279907211661339, + 0.003609516192227602, + 0.0894898772239685, + -0.021701516583561897, + 0.027354935184121132, + -0.02324105240404606, + 0.02340887114405632, + 0.014304662123322487, + 0.02117520198225975, + 0.10477858781814575, + -0.03222464397549629, + 0.0301450714468956, + -0.011070497334003448, + -0.09860383719205856, + 0.002604220760986209, + 0.024854879826307297, + -0.0519108809530735, + -0.1211608424782753, + 0.031339894980192184, + -0.06167781352996826, + -0.0839848592877388, + -0.06522095203399658, + -0.017063021659851074, + 0.06726139783859253, + 0.01624709740281105, + -0.021712973713874817, + 0.06044681742787361, + 0.012199418619275093, + -0.046511486172676086, + -0.055457551032304764, + -0.022056542336940765, + -0.06190430000424385, + 0.0235954187810421, + 0.00565704982727766, + 0.045395974069833755, + -0.013885609805583954, + -0.027350537478923798, + 0.000907976645976305, + -0.019820624962449074, + -0.009596738964319229, + -0.0329737551510334, + -0.026077909395098686, + 0.036192234605550766, + -0.004817054606974125, + 0.03035595640540123, + -0.002319495426490903, + 0.06213277578353882, + -0.06665729731321335, + -0.008097490295767784, + 0.04610703885555267, + 0.006669622380286455, + -0.017044683918356895, + -0.01103423535823822, + -0.0565042570233345, + 0.004365583416074514, + -0.08680610358715057, + -0.0869826003909111, + 0.09415024518966675, + -0.0057435291819274426, + 0.03270209953188896, + -0.11205995827913284, + -2.293349155024771e-08, + 0.05766542628407478, + -0.06325048953294754, + -0.05628922954201698, + 0.016313903033733368, + 0.11044607311487198, + -0.0674239918589592, + -0.029728936031460762, + -0.08552023768424988, + -0.035294242203235626, + -0.05773543193936348, + 0.048645298928022385, + 0.0191802941262722, + -0.033276110887527466, + -0.04284711554646492, + 0.08812917768955231, + 0.015560202300548553, + -0.054060306400060654, + 0.0007813735282979906, + -0.007785588037222624, + -0.0034886121284216642, + -0.05784802883863449, + 0.0496390126645565, + 0.06539616733789444, + -0.026541542261838913, + -0.02014489471912384, + -0.0032881537918001413, + 0.038893621414899826, + -0.013415426947176456, + 0.06381714344024658, + 0.0807330384850502, + 0.06818731874227524, + 0.053171947598457336, + 0.06878044456243515, + 0.02123650349676609, + 0.012607603333890438, + -0.05042783170938492, + -0.005763230845332146, + 0.062135305255651474, + 0.09205355495214462, + -0.006311521399766207, + -0.07598500698804855, + -0.008549070917069912, + -0.03596082702279091, + -0.04646117240190506, + -0.024717159569263458, + -0.04766806215047836, + -0.020335175096988678, + -0.06036694720387459, + -0.05450107529759407, + -0.03768754005432129, + -0.07872072607278824, + 0.0377405621111393, + -0.042365483939647675, + 0.09797604382038116, + -0.034308046102523804, + -0.05153096467256546, + 0.005792390089482069, + 0.05059468746185303, + 0.03173862025141716, + 0.002736555179581046, + 0.045546095818281174, + -0.057060357183218, + 0.04686075821518898, + -0.03652419149875641 + ], + "greater-than-bold||*new*,>,greater than,gt,comparison,mathematics,arithmetic,calculator": [ + -0.008045976981520653, + -0.00692458963021636, + -0.025477807968854904, + -0.015435008332133293, + -0.049113597720861435, + -0.07661259919404984, + -0.05745740979909897, + 0.00809601042419672, + -0.021350538358092308, + 0.033558253198862076, + 0.024261847138404846, + 0.01794581301510334, + 0.08779242634773254, + 0.0015795829240232706, + 0.017651675269007683, + 0.012922456488013268, + 0.015946827828884125, + -0.0003248299180995673, + -0.05902785807847977, + -0.04383492469787598, + 0.02824278362095356, + 0.006981780286878347, + -0.044274698942899704, + 0.10968325287103653, + 0.05673645809292793, + -0.05831616744399071, + -0.00919432658702135, + -0.012206172570586205, + 0.10631619393825531, + -0.003885922022163868, + -0.08555130660533905, + 0.01582537777721882, + 0.15354852378368378, + 0.03168574720621109, + -0.010181572288274765, + -0.000611889932770282, + 0.021232912316918373, + -0.015340492129325867, + -0.012341408990323544, + 0.015313813462853432, + -0.0887453630566597, + -0.11027123779058456, + 0.053656257688999176, + 0.04992379620671272, + -0.060818206518888474, + 0.017254646867513657, + -0.09346850216388702, + -0.024663889780640602, + -0.0059737819246947765, + -0.005730274133384228, + -0.06931706517934799, + -0.016681447625160217, + -0.12078333646059036, + -0.03385830670595169, + 0.01069595105946064, + 0.04497898370027542, + -0.0637921616435051, + -0.1054055318236351, + -0.03279000148177147, + -0.0680798664689064, + -0.019073061645030975, + -0.003267914755269885, + 0.05835356563329697, + -0.03032185137271881, + 0.033688984811306, + 0.012799300253391266, + -0.008984865620732307, + 0.01013430766761303, + -0.011700170114636421, + 0.14057868719100952, + -0.005613389890640974, + -0.006088288500905037, + -0.04767804220318794, + 0.0453353114426136, + -0.03582152724266052, + -0.015175134874880314, + 0.00861439574509859, + 0.027115631848573685, + -0.026961520314216614, + -0.02686323970556259, + -0.029869433492422104, + -0.023217888548970222, + -0.057032499462366104, + 0.002655436284840107, + 0.032123927026987076, + 0.01065833680331707, + 0.016412250697612762, + -0.05295714735984802, + 0.03891727700829506, + -0.0032811728306114674, + -0.03159581497311592, + -0.014803091064095497, + 0.014402861706912518, + 0.08169886469841003, + -0.04793852940201759, + 0.0055711898021399975, + 0.07295630127191544, + -0.0308933574706316, + 0.018699325621128082, + 0.08283691853284836, + 0.027494624257087708, + 0.01356595754623413, + 0.025774536654353142, + -0.03047719970345497, + -0.019775159657001495, + -0.0756242498755455, + 0.004762876313179731, + -0.016181154176592827, + 0.04833158478140831, + -0.058387789875268936, + 0.04667532816529274, + -0.06746450066566467, + 0.040728602558374405, + -0.03375658020377159, + -0.006269048433750868, + -0.009411398321390152, + -0.01783468760550022, + 0.037359774112701416, + 0.058095384389162064, + 0.039442773908376694, + 0.022968389093875885, + -0.02522687427699566, + -0.0421818383038044, + 0.018403271213173866, + -0.021869976073503494, + -0.011613656766712666, + -0.04883437976241112, + -1.6580301900600286e-33, + 0.039520978927612305, + 0.042283523827791214, + -0.00924768578261137, + 0.06703083962202072, + -0.003942625131458044, + 0.05163375660777092, + -0.08690259605646133, + -0.04845721647143364, + -0.06573647260665894, + 0.08568065613508224, + 0.06313774734735489, + 0.1413576751947403, + -0.004085962660610676, + 0.06475471705198288, + 0.10791604220867157, + -0.06206212192773819, + -0.03628559038043022, + -0.08498029410839081, + -0.06910328567028046, + -0.07293921709060669, + -0.03980899602174759, + -0.0500621497631073, + -0.07073536515235901, + 0.04755402356386185, + 0.003661575261503458, + -0.0070838313549757, + 0.013366902247071266, + -0.05307828634977341, + -0.04286839812994003, + -0.0048402235843241215, + -0.0002946948807220906, + -0.02625318057835102, + 0.024573054164648056, + 0.04194203391671181, + 0.035456836223602295, + 0.015699367970228195, + -0.022434288635849953, + -0.029410794377326965, + 0.06741892546415329, + 0.0005741058848798275, + -0.14640380442142487, + -0.024952461943030357, + -0.0019077785545960069, + -0.06431782990694046, + 0.11152153462171555, + 0.03240083158016205, + -0.023635532706975937, + 0.026823947206139565, + 0.006619196385145187, + -0.03165422007441521, + -0.03834547474980354, + 0.020869167521595955, + -0.023832740262150764, + 0.02906862087547779, + 0.05386682227253914, + -0.011189300566911697, + 0.007294698618352413, + 0.10111381113529205, + 0.0014489491004496813, + 0.03557588905096054, + -0.012004354037344456, + 0.040348850190639496, + 0.06357613950967789, + -0.06771263480186462, + -0.08667398989200592, + 0.019087929278612137, + -0.10411877930164337, + -0.012452826835215092, + 0.09952043741941452, + 0.06435073912143707, + -0.021785583347082138, + 0.0651959776878357, + -0.04187871143221855, + 0.03621148318052292, + 0.028944242745637894, + 0.021504275500774384, + 0.01726067066192627, + -0.0023105426225811243, + 0.035125743597745895, + -0.09108249843120575, + -0.09144427627325058, + 0.01220982801169157, + 0.02250516228377819, + 0.047414038330316544, + 0.005513228476047516, + 0.006717980373650789, + 0.0091615691781044, + -0.041555821895599365, + 0.01504075899720192, + -0.02887117862701416, + -0.13159896433353424, + -0.02655060961842537, + 0.014763700775802135, + -0.06946459412574768, + -0.06714296340942383, + -1.862969732273225e-33, + -0.008464050479233265, + 0.0234904233366251, + -0.04409174993634224, + 0.03909416124224663, + -0.051421694457530975, + 0.01636512577533722, + 0.05015202984213829, + -0.06477677822113037, + -0.004540374036878347, + -0.07599113136529922, + 0.057863857597112656, + 0.061682529747486115, + 0.01716507039964199, + -0.04769035801291466, + 0.05963549762964249, + 0.020942343398928642, + -0.008572359569370747, + -0.008660651743412018, + -0.10412465035915375, + 0.004729375243186951, + -0.02608867920935154, + 0.04506692290306091, + -0.029095815494656563, + 0.07745152711868286, + -0.0021830161567777395, + -0.03209224343299866, + 0.034597765654325485, + 0.01252707839012146, + -0.023792345076799393, + -0.05638166144490242, + -0.029229339212179184, + -0.022304240614175797, + 0.08971922099590302, + 0.039060574024915695, + -0.0630144327878952, + -0.023295670747756958, + 0.11895237863063812, + -0.062391433864831924, + -0.02022998221218586, + 0.02569192461669445, + 0.01678941212594509, + -0.01759970933198929, + 0.1266944408416748, + 0.01990317367017269, + -0.009785961359739304, + 0.029139311984181404, + -0.029779424890875816, + -0.05145454406738281, + 0.038656700402498245, + 0.041273050010204315, + 0.04193681851029396, + -0.06449583917856216, + -0.021517841145396233, + 0.04515441134572029, + -0.06129275634884834, + -0.058181118220090866, + 0.031152473762631416, + -0.010584449395537376, + -0.030963798984885216, + 0.08899984508752823, + -0.017289482057094574, + 0.03612908348441124, + 0.021400002762675285, + 0.04907163232564926, + -0.08621847629547119, + -0.09545872360467911, + -0.015920381993055344, + 0.03331737220287323, + 0.034006860107183456, + -0.023381797596812248, + 0.0641099140048027, + 0.038866668939590454, + 0.014375478960573673, + -0.036030691117048264, + -0.07562083750963211, + -0.06322452425956726, + 0.032838571816682816, + 0.08278714120388031, + 0.01677701063454151, + -0.03169311210513115, + 0.01033093873411417, + 0.06244780495762825, + 0.04665575176477432, + 0.019354626536369324, + -0.10256057232618332, + 0.07635205239057541, + 0.000383360922569409, + 0.015955787152051926, + 0.020164363086223602, + -0.04124359041452408, + -0.09806903451681137, + 0.05238047242164612, + -0.013870292343199253, + -0.10755228251218796, + -0.03281395509839058, + -2.659259656923041e-08, + -0.019497154280543327, + -0.043633174151182175, + -0.061356279999017715, + -0.0547974519431591, + 0.04528436064720154, + 0.06626872718334198, + -0.057028450071811676, + -0.04856646806001663, + -0.03181513026356697, + -0.007893122732639313, + 0.0558781735599041, + 0.03919138386845589, + -0.07931233197450638, + -0.04102662205696106, + 0.03380637615919113, + 0.009757393971085548, + 0.03498063609004021, + -0.022345829755067825, + 0.0011442075483500957, + -0.07772926986217499, + -0.025507980957627296, + 0.05926249548792839, + 0.07597324997186661, + 0.0003776209196075797, + 0.03139234706759453, + 0.014248990453779697, + -0.08700961619615555, + 0.042604099959135056, + 0.03526321053504944, + 0.05545223131775856, + 0.10810742527246475, + 0.07040514796972275, + 0.013436280190944672, + -0.05362013727426529, + -0.006644246634095907, + 0.01358962431550026, + -0.01298292726278305, + 0.09398356825113297, + -0.010423505678772926, + 0.027677632868289948, + -0.051366522908210754, + -0.03232937306165695, + -0.046400852501392365, + -0.011509186588227749, + 0.045754849910736084, + -0.038558874279260635, + 0.035821281373500824, + -0.052495136857032776, + -0.005884335841983557, + -0.09991631656885147, + -0.0034730597399175167, + 0.0773136168718338, + 0.044538598507642746, + 0.05241335183382034, + -0.02712338976562023, + -0.02854343317449093, + -0.0296956654638052, + 0.09485632926225662, + -0.08255696296691895, + -0.01233950350433588, + 0.17846879363059998, + -0.0036834394559264183, + 0.05091699957847595, + 0.006010810378938913 + ], + "greater-than-or-equal-bold||*new*,\u2265,greater than or equal,gte,comparison,mathematics,arithmetic,calculator": [ + -0.026545511558651924, + -0.007645417936146259, + -0.001998881809413433, + -0.01747448369860649, + -0.06590106338262558, + -0.06354448199272156, + -0.04660430923104286, + 0.028838399797677994, + -0.03442688286304474, + 0.04948176071047783, + 0.0029415511526167393, + -0.020091721788048744, + 0.1036394014954567, + 0.003212164156138897, + 0.03308357670903206, + 0.03934329003095627, + 0.0008506716112606227, + 0.013810562901198864, + -0.04590906575322151, + -0.046370476484298706, + 0.03587636724114418, + -0.007074249908328056, + -0.04892943054437637, + 0.10644242912530899, + 0.057497538626194, + -0.06785576045513153, + -0.0022330160718411207, + -0.023031234741210938, + 0.10867719352245331, + 0.004103091079741716, + -0.08706564456224442, + 0.0037029890809208155, + 0.14889179170131683, + 0.04288458451628685, + -0.02582760900259018, + -0.02424130029976368, + 0.048957500606775284, + -0.034097135066986084, + -0.005596899427473545, + 0.025085773319005966, + -0.08880133926868439, + -0.11650683730840683, + 0.04009857773780823, + 0.019716503098607063, + -0.057172153145074844, + 0.05344949662685394, + -0.08895162492990494, + -0.013595803640782833, + -4.4448202970670536e-05, + -0.032117974013090134, + -0.05090839043259621, + -0.028931865468621254, + -0.12979745864868164, + -0.048963841050863266, + 0.026052061468362808, + 0.052484139800071716, + -0.05759595334529877, + -0.07396745681762695, + -0.012780312448740005, + -0.06269274652004242, + -0.028745267540216446, + -0.020868996158242226, + 0.037797585129737854, + 0.009892654605209827, + 0.022828415036201477, + 0.020568829029798508, + -0.020853931084275246, + 0.01790258288383484, + -0.014025021344423294, + 0.10329712927341461, + -0.01569625549018383, + -0.007763019297271967, + -0.07941655069589615, + 0.06637995690107346, + -0.047704067081213, + -0.0004024823138024658, + 0.04218387231230736, + 0.015071391128003597, + -0.02060181088745594, + -0.029880192130804062, + -0.0541258342564106, + -0.03136679530143738, + -0.04021991416811943, + -0.002807566663250327, + 0.0640852227807045, + -0.007510707248002291, + 0.02134530618786812, + -0.042633745819330215, + 0.07478824257850647, + -0.012985960580408573, + -0.03413499891757965, + 0.008249985054135323, + 0.02856716327369213, + 0.07475084066390991, + -0.030603935942053795, + 0.0034117104951292276, + 0.056026700884103775, + -0.03179440647363663, + 0.014992139302194118, + 0.09530498087406158, + 0.02037779614329338, + 0.027042130008339882, + 0.020039627328515053, + -0.012622065842151642, + -0.0163767971098423, + -0.09099684655666351, + 0.047815363854169846, + -0.029062537476420403, + 0.04281729832291603, + -0.08076038956642151, + 0.05215310677886009, + -0.05365392193198204, + 0.07049833238124847, + -0.03608817607164383, + -0.02206074260175228, + 0.010230711661279202, + -0.007019422482699156, + 0.0386420376598835, + 0.07084844261407852, + 0.004649007692933083, + 0.002755003748461604, + -0.030399609357118607, + -0.021166475489735603, + 0.016346294432878494, + -0.02173260971903801, + -0.018476806581020355, + -0.051256924867630005, + -1.0154547438841679e-33, + 0.018330680206418037, + 0.03209145739674568, + 0.0018891964573413134, + 0.04973985254764557, + -0.008621109649538994, + 0.054169751703739166, + -0.08862552791833878, + -0.05829033628106117, + -0.03889697045087814, + 0.07928595691919327, + 0.0599064975976944, + 0.13987170159816742, + -0.0026907515712082386, + 0.06753316521644592, + 0.10115979611873627, + -0.06714992225170135, + -0.027289004996418953, + -0.06168443337082863, + -0.087535060942173, + -0.09201497584581375, + -0.027421768754720688, + -0.069388747215271, + -0.05685979500412941, + 0.07124955207109451, + 0.016098756343126297, + -0.01980258896946907, + 0.03182891011238098, + -0.05779411271214485, + -0.016541341319680214, + -0.011212176643311977, + 0.006181138101965189, + -0.023521404713392258, + 0.019540637731552124, + 0.03058520331978798, + 0.015774976462125778, + 0.013068558648228645, + -0.033201441168785095, + -0.029949529096484184, + 0.05974041670560837, + 0.012488003820180893, + -0.14203767478466034, + -0.01832929253578186, + 0.031106185168027878, + -0.08935019373893738, + 0.11456931382417679, + 0.01036419253796339, + -0.057985659688711166, + 0.027300313115119934, + 0.01935752108693123, + -0.027478646486997604, + -0.028668394312262535, + 0.013149573467671871, + -0.026840217411518097, + 0.03017720766365528, + 0.05537533387541771, + 0.017251860350370407, + 0.018340758979320526, + 0.1049560010433197, + 0.013119284994900227, + 0.034704774618148804, + -0.002588280476629734, + 0.052628401666879654, + 0.06650685518980026, + -0.10338454693555832, + -0.08799203485250473, + 0.03859228640794754, + -0.09932249784469604, + -0.03732342645525932, + 0.08371951431035995, + 0.05777933821082115, + -0.023923305794596672, + 0.044185176491737366, + -0.039360471069812775, + 0.025413844734430313, + 0.038538362830877304, + 0.014342430047690868, + 0.013666096143424511, + 0.015740294009447098, + 0.03364786133170128, + -0.08958452939987183, + -0.09136752784252167, + 0.007666447199881077, + 0.006303627975285053, + 0.01280483603477478, + 0.00339042441919446, + -0.009157347492873669, + 0.0143646951764822, + -0.04165707901120186, + -0.014327309094369411, + -0.017550434917211533, + -0.10743717104196548, + -0.01890556886792183, + 0.043204523622989655, + -0.040475789457559586, + -0.041192200034856796, + -1.4790323388015417e-33, + -0.025245875120162964, + 0.02577420324087143, + -0.04191320389509201, + 0.04611138254404068, + -0.035442352294921875, + 0.010837361216545105, + 0.06911097466945648, + -0.06947336345911026, + 0.035879381000995636, + -0.06608452647924423, + 0.06040965020656586, + 0.04337836802005768, + 0.018086517229676247, + -0.038602229207754135, + 0.0202769935131073, + 0.011135892942547798, + -0.019457627087831497, + 0.006463736295700073, + -0.0816061794757843, + 0.019521525129675865, + -0.021105581894516945, + 0.07141491025686264, + -0.0281880721449852, + 0.07738708704710007, + 0.030675793066620827, + -0.030777275562286377, + 0.012960626743733883, + 0.01679600402712822, + -0.023333292454481125, + -0.06155254691839218, + -0.02733132429420948, + -0.031462181359529495, + 0.07180143892765045, + 0.04043442755937576, + -0.04562055692076683, + -0.054167307913303375, + 0.15752501785755157, + -0.06979357451200485, + -0.022080177441239357, + 0.031958311796188354, + 0.008519510738551617, + -0.03176859766244888, + 0.1330687552690506, + 0.04968096688389778, + -0.007940675131976604, + 0.03629952669143677, + -0.033104438334703445, + -0.058868952095508575, + 0.02615346573293209, + 0.02128797583281994, + 0.052567191421985626, + -0.0572432316839695, + -0.041336916387081146, + 0.045317307114601135, + -0.0515451654791832, + -0.06425436586141586, + 0.009374456480145454, + -0.009232842363417149, + -0.04195110872387886, + 0.07178497314453125, + -0.02374572679400444, + 0.03781767562031746, + 0.01406885962933302, + 0.08343792706727982, + -0.09818736463785172, + -0.09055296331644058, + -0.0292816124856472, + 0.0542525090277195, + 0.001081074122339487, + -0.010656746104359627, + 0.04746017977595329, + 0.009954389184713364, + 0.012801270931959152, + -0.06037195771932602, + -0.06286977231502533, + -0.05647323280572891, + 0.04915163293480873, + 0.07845613360404968, + 0.027905520051717758, + -0.03618704527616501, + 0.007345426362007856, + 0.06515343487262726, + 0.019350819289684296, + 0.024767838418483734, + -0.10133299231529236, + 0.06532765179872513, + 0.017595713958144188, + -0.0023989395704120398, + 0.018411634489893913, + -0.02864835038781166, + -0.10780434310436249, + 0.05808699131011963, + 0.0011596443364396691, + -0.0827883630990982, + -0.015969036146998405, + -2.9898696851660134e-08, + 0.0062241703271865845, + -0.02705448493361473, + -0.04562918469309807, + -0.058165449649095535, + 0.04665445536375046, + 0.02508660778403282, + -0.05191878229379654, + -0.07221777737140656, + -0.04037567600607872, + -0.011908388696610928, + 0.04613923281431198, + 0.05162033811211586, + -0.07779010385274887, + -0.0402924045920372, + 0.022671645507216454, + 0.010283317416906357, + 0.01807236112654209, + -0.00972095038741827, + 0.003432168858125806, + -0.04190406575798988, + 0.018370360136032104, + 0.06238609179854393, + 0.07461659610271454, + -0.0038375447038561106, + 0.024257583543658257, + 0.022084685042500496, + -0.0799361914396286, + 0.017936788499355316, + 0.024512363597750664, + 0.034419190138578415, + 0.09684038162231445, + 0.07583662867546082, + 0.0450475811958313, + -0.06841331720352173, + 0.01277719996869564, + 0.04054059833288193, + -0.01347805093973875, + 0.09651355445384979, + -0.02628367580473423, + 0.028187435120344162, + -0.05567168444395065, + -0.04911629855632782, + -0.01962193474173546, + -0.03318027779459953, + 0.08661571145057678, + 1.9557473933673464e-05, + 0.04614811763167381, + -0.02493228390812874, + -0.025278916582465172, + -0.09230431914329529, + -0.01888614147901535, + 0.044546499848365784, + 0.06081460043787956, + 0.02163546346127987, + -0.029811769723892212, + -0.02786961756646633, + -0.02773117646574974, + 0.08774309605360031, + -0.053671035915613174, + -0.012623255141079426, + 0.17518912255764008, + -0.02041473612189293, + 0.07347770035266876, + 0.009739479050040245 + ], + "grid-four-bold||4,apps,applications,squares,tiles,cells,tables,tabular,spreadsheets,excel": [ + 0.030006594955921173, + 0.0055130827240645885, + -0.0948435440659523, + 0.006217875983566046, + 0.018482040613889694, + 0.0025791379157453775, + -0.005958368070423603, + -0.02058662660419941, + 0.024339817464351654, + 0.056464120745658875, + -0.016322895884513855, + 0.002289567608386278, + 0.04009656608104706, + -0.008438742719590664, + -0.013658258132636547, + 0.027461567893624306, + 0.034949369728565216, + 0.047874316573143005, + -0.05483411252498627, + 0.017922254279255867, + 0.010423284024000168, + -0.04592262953519821, + 0.05002631992101669, + -0.0442257784307003, + 0.09491345286369324, + 0.032114554196596146, + -0.020525433123111725, + 0.04554785415530205, + 0.03753266856074333, + -0.06898389756679535, + -0.03711453825235367, + 0.028959298506379128, + 0.10561107844114304, + 0.09733349829912186, + 0.015242593362927437, + 0.0030235459562391043, + 0.0021135599818080664, + -0.021121757104992867, + 0.007347477599978447, + 0.06978243589401245, + 0.02994524873793125, + -0.08209525793790817, + -0.006809169426560402, + 0.03589434176683426, + -0.04777447134256363, + -0.07072041928768158, + -0.0704149380326271, + -0.07221027463674545, + 0.02292683534324169, + 0.004912801086902618, + -0.08513065427541733, + -0.06731311231851578, + -0.09324493259191513, + -0.012907351367175579, + -0.00435310835018754, + -0.04341724514961243, + -0.035644713789224625, + -0.02073119580745697, + 0.10806374251842499, + 0.045748449862003326, + 0.026626991108059883, + 0.012614543549716473, + 0.012607892043888569, + 0.09782198816537857, + -0.026464197784662247, + 0.08039446920156479, + -0.05045327544212341, + 0.020970413461327553, + -0.023365749046206474, + -0.038135822862386703, + 0.020076554268598557, + 0.034792836755514145, + 0.002810189500451088, + -0.016674499958753586, + -0.03835931047797203, + -0.02676146663725376, + 0.003622662043198943, + -0.05176548659801483, + -0.03630660101771355, + -0.04441336542367935, + -0.04130498319864273, + 0.03249575197696686, + -0.05979622155427933, + 0.10491681843996048, + 0.013256968930363655, + 0.03213972970843315, + -0.03554503992199898, + -0.043281588703393936, + -0.004464565776288509, + -0.024141278117895126, + -0.032807376235723495, + -0.010378931649029255, + 0.05720416083931923, + 0.09432706981897354, + -0.14575347304344177, + 0.02951928786933422, + 0.10107839107513428, + -0.07254067808389664, + -0.04283319413661957, + 0.05177672579884529, + -0.002580936998128891, + -0.020025966688990593, + 0.08701662719249725, + 0.02141820453107357, + 0.000994582660496235, + -0.07392628490924835, + 0.07509449124336243, + -0.06763212382793427, + 0.010205657221376896, + 0.0003299550444353372, + -0.02465829625725746, + -0.12890903651714325, + -0.08415054529905319, + -0.08714959770441055, + -0.04183123633265495, + -0.07669434696435928, + -0.06376384943723679, + -0.07403838634490967, + 0.10551397502422333, + 0.044602956622838974, + 0.01772875338792801, + -0.04164421558380127, + -0.01986497826874256, + -0.10001695156097412, + 0.03802547603845596, + 0.05786149948835373, + -0.0513380728662014, + -7.741406310107298e-34, + 0.025757011026144028, + 0.05566105991601944, + 0.026559513062238693, + 0.09286091476678848, + 0.12078176438808441, + -0.047508399933576584, + -0.06175818294286728, + -0.09399815648794174, + -0.06010182946920395, + 0.06694057583808899, + 0.036831844598054886, + 0.11342010647058487, + -0.10422106832265854, + 0.09656299650669098, + 0.08217313140630722, + -0.0057159424759447575, + 0.026751765981316566, + 0.010580994188785553, + -0.053354907780885696, + -0.023212628439068794, + -0.08097652345895767, + 0.004844721406698227, + -0.008063258603215218, + -0.0009757551015354693, + -0.014815093018114567, + 0.013740762136876583, + 0.04255515709519386, + -0.009787465445697308, + 0.0019703402649611235, + 0.02952798642218113, + 0.049726150929927826, + 0.05953076109290123, + -0.023041222244501114, + -0.027485189959406853, + -0.04967806860804558, + -0.028113940730690956, + -0.07100833207368851, + -0.003005399601534009, + 0.08057102560997009, + 0.06276222318410873, + -0.15982891619205475, + -0.026146849617362022, + 0.0390176884829998, + -0.02286696620285511, + 0.11687557399272919, + 0.049877725541591644, + -0.020156044512987137, + -0.03150251880288124, + 0.04371984675526619, + -0.005148277617990971, + 0.034497104585170746, + 0.02125554345548153, + 0.017471369355916977, + 0.02256270870566368, + -0.016236528754234314, + -0.05275699868798256, + -0.028539888560771942, + 0.0776030570268631, + 0.036567460745573044, + 0.0640440285205841, + -0.047000281512737274, + -0.009965046308934689, + -0.0296736191958189, + 0.00015016330871731043, + -0.034741517156362534, + 0.01796906441450119, + -0.007375667802989483, + -0.04283956438302994, + 0.006286739371716976, + -0.02753092162311077, + 0.02172735519707203, + 0.005183687433600426, + 0.06597349047660828, + 0.010591719299554825, + -0.007434504572302103, + -0.03532745689153671, + 0.01132545992732048, + -0.012759866192936897, + -0.020646847784519196, + -0.12234709411859512, + -0.05853471904993057, + -0.010487998835742474, + -0.07900378853082657, + 0.011058049276471138, + -0.09377048909664154, + 0.0030667008832097054, + 0.05336271971464157, + -0.061115603893995285, + -0.018431104719638824, + -0.01315397396683693, + -0.10429511964321136, + 0.030191460624337196, + -0.01677422784268856, + -0.03095998987555504, + -0.09819991141557693, + -2.0541207257512757e-33, + 0.012153222225606441, + 0.0618768148124218, + -0.11301128566265106, + 0.018916994333267212, + 0.011689084582030773, + 0.054543521255254745, + 0.05938449501991272, + 0.01572916842997074, + 0.027718551456928253, + 0.07266990840435028, + 0.1111646369099617, + 0.014884034171700478, + -0.04220673441886902, + -0.021027717739343643, + -0.04694870114326477, + 0.06045113503932953, + 0.0043869540095329285, + 0.025083569809794426, + -0.11069303005933762, + -0.045155033469200134, + -0.06677649915218353, + 0.00803303811699152, + -0.03747883811593056, + 0.10491212457418442, + 0.071178138256073, + -0.01087233517318964, + 0.01972036622464657, + -0.061670880764722824, + -0.02680804952979088, + 0.011303989216685295, + -0.02736358344554901, + -0.006431839894503355, + 0.03492892533540726, + 0.029133597388863564, + -0.028933830559253693, + -0.007259034086018801, + 0.024490749463438988, + -0.06263943761587143, + -0.007009623106569052, + 0.006431854795664549, + -0.011547919362783432, + -0.009988968260586262, + 0.09543860703706741, + 0.043405406177043915, + -0.03746194392442703, + 0.0374465174973011, + 0.0012676373589783907, + 0.0010427033994346857, + -0.03361217677593231, + 0.04075596481561661, + 0.0003989195392932743, + -0.005218772683292627, + -0.04530968889594078, + -0.022098848596215248, + 0.014728039503097534, + -0.03674480319023132, + 0.02659631334245205, + 0.056155819445848465, + -0.09349683672189713, + -0.007524802815169096, + -0.07265707850456238, + 0.022362079471349716, + 0.024644047021865845, + 0.058509036898612976, + 0.058487456291913986, + -0.026030920445919037, + -0.020080825313925743, + -0.06411603838205338, + -0.02609456330537796, + 0.035824842751026154, + 0.04401630908250809, + 0.00852768775075674, + -0.06794263422489166, + -0.02515001781284809, + -0.015820477157831192, + -0.016567153856158257, + 0.00732236634939909, + 0.008370242081582546, + -0.0901942253112793, + 0.014376455917954445, + 0.021839357912540436, + 0.031582556664943695, + 0.021740801632404327, + -0.025527149438858032, + -0.05704241618514061, + -0.020611129701137543, + 0.03809639811515808, + 0.03607083112001419, + -0.006582384463399649, + 0.02977009490132332, + -0.003225057851523161, + 0.019923502579331398, + 0.018504077568650246, + 0.04180889204144478, + -0.07066695392131805, + -2.1882504697146032e-08, + -0.008663899265229702, + 0.011493106372654438, + 0.0026805957313627005, + -0.06002248823642731, + -0.017733728513121605, + -0.08663440495729446, + -0.002483675954863429, + 0.02951396070420742, + 0.0021126214414834976, + 0.004206099081784487, + 0.06354323029518127, + 0.03797045350074768, + -0.09115483611822128, + -0.012679396197199821, + 0.08463616669178009, + 0.03488074988126755, + -0.034353893250226974, + 0.0157699566334486, + -0.025033144280314445, + -0.0574270635843277, + -0.00601884676143527, + 0.06421143561601639, + -0.034166235476732254, + 0.0848497524857521, + 0.04341641068458557, + 0.007871003821492195, + -0.13475485146045685, + -0.0025530655402690172, + 0.08086954057216644, + 0.06288105994462967, + 0.09403736889362335, + 0.03698877617716789, + 0.09202525019645691, + -0.028722910210490227, + -0.04407419264316559, + 0.0309242345392704, + 0.00018045143224298954, + -0.01015272457152605, + -0.016736390069127083, + 0.06349668651819229, + -0.02534518577158451, + -0.12469206005334854, + -0.03714102879166603, + -0.05474039912223816, + -0.043427884578704834, + 0.06275355070829391, + 0.007495851721614599, + -0.005133149214088917, + -0.030646489933133125, + -0.09145201742649078, + -0.02213456854224205, + 0.001877089962363243, + 0.0039779068902134895, + 0.040532343089580536, + -0.03499123454093933, + 0.005013803485780954, + -0.010136275552213192, + 0.0639919713139534, + 0.09094815701246262, + -0.026278963312506676, + 0.08006057888269424, + 0.07491232454776764, + -0.01650264672935009, + 0.03173315152525902 + ], + "grid-nine-bold||9,apps,applications,squares,tiles,cells,tables,tabular,spreadsheets,excel": [ + -0.014847327023744583, + -0.023444557562470436, + -0.09628506749868393, + -0.001572926645167172, + 0.04959817975759506, + 0.02625342272222042, + 0.006020949687808752, + 0.021562796086072922, + -0.011592223308980465, + 0.013073750771582127, + -0.010211464948952198, + 0.018354017287492752, + 0.008694276213645935, + -0.020548701286315918, + -0.007806687615811825, + -0.013892286457121372, + 0.03528560325503349, + 0.036985401064157486, + -0.04924197867512703, + 0.01537329237908125, + 0.02700566127896309, + 0.0006923654000274837, + 0.06460416316986084, + -0.039317939430475235, + 0.10905375331640244, + 0.02158363349735737, + -0.014079200103878975, + 0.05821039155125618, + 0.03147852420806885, + -0.07315030694007874, + -0.04808689281344414, + 0.013081643730401993, + 0.09088273346424103, + 0.12492100149393082, + 0.02003338932991028, + -0.011164071969687939, + -0.016497943550348282, + -0.007581205107271671, + -0.01629777066409588, + 0.07760743796825409, + 0.025640632957220078, + -0.09413520991802216, + 0.008736911229789257, + 0.018427841365337372, + -0.03327728062868118, + -0.07557480037212372, + -0.05927807465195656, + -0.052001431584358215, + -0.015980254858732224, + 0.03586539998650551, + -0.09918471425771713, + -0.06837163120508194, + -0.07990654557943344, + -0.002777637215331197, + 0.028203940019011497, + -0.06464393436908722, + -0.00413271551951766, + -0.05067823454737663, + 0.0797099620103836, + 0.003004793543368578, + 0.0073701441287994385, + 0.0348520390689373, + 0.01637551747262478, + 0.08854277431964874, + -0.021630210801959038, + 0.07531484961509705, + -0.05553185194730759, + -0.005083286669105291, + -0.030003102496266365, + -0.026888644322752953, + 0.06613554060459137, + 0.021226083859801292, + -0.03095283731818199, + -0.034540142863988876, + -0.05005154758691788, + 0.0012357294326648116, + -0.010237356647849083, + -0.05605435371398926, + -0.0523257851600647, + -0.03538276255130768, + -0.020433079451322556, + 0.04071534425020218, + -0.028028598055243492, + 0.13726268708705902, + 0.007796750403940678, + 0.009514983743429184, + -0.013783873990178108, + 0.020237289369106293, + -0.03542264923453331, + -0.02865997888147831, + -0.0431002713739872, + 0.007810043636709452, + 0.06449177861213684, + 0.08988405019044876, + -0.17330588400363922, + 0.036532312631607056, + 0.09740839153528214, + -0.048643238842487335, + -0.08623375743627548, + 0.052026744931936264, + 0.003596927272155881, + -0.006603511516004801, + 0.09276793897151947, + 0.04322846233844757, + 0.0007666475139558315, + -0.05723299831151962, + 0.08064431697130203, + -0.049991510808467865, + 0.018700428307056427, + -0.0273753572255373, + -0.013246187940239906, + -0.11727220565080643, + -0.0890614464879036, + -0.10741925984621048, + -0.04248501732945442, + -0.10425576567649841, + -0.05551564693450928, + -0.06729936599731445, + 0.11519879102706909, + 0.0715460255742073, + 0.018410174176096916, + -0.060007426887750626, + -0.03075498342514038, + -0.08150533586740494, + 0.009813965298235416, + 0.08162067085504532, + -0.05985306575894356, + -7.6672642998165864e-34, + -0.004335509147495031, + 0.024899546056985855, + 0.011333524249494076, + 0.06999243795871735, + 0.11919926106929779, + -0.0540681816637516, + -0.09794461727142334, + -0.06538182497024536, + -0.0701603963971138, + 0.05940962955355644, + 0.013471593149006367, + 0.10643503814935684, + -0.10568024218082428, + 0.08898521959781647, + 0.0919189453125, + -0.020710334181785583, + 0.017239226028323174, + 0.03545685485005379, + -0.05649564415216446, + -0.040423836559057236, + -0.06782963871955872, + -0.0016355850966647267, + -0.004752247594296932, + -0.012800860218703747, + -0.005103744566440582, + 0.01870441809296608, + 0.02648940123617649, + 0.03545111045241356, + -0.01088422629982233, + 0.0056356401182711124, + 0.06881304830312729, + 0.06267867237329483, + -0.018456604331731796, + -0.012348359450697899, + -0.014202031306922436, + -0.006639521569013596, + -0.04331750422716141, + -0.005395668558776379, + 0.09365443885326385, + 0.04768477752804756, + -0.1303974837064743, + -0.028689319267868996, + 0.0424351841211319, + -0.037307459861040115, + 0.14048826694488525, + 0.03737636283040047, + -0.005038723349571228, + -0.02708558924496174, + 0.05201827362179756, + -0.033243294805288315, + 0.04620497673749924, + 0.03214121609926224, + 0.010651109740138054, + 0.04001470282673836, + 0.007935571484267712, + -0.07056298851966858, + -0.0007652920321561396, + 0.09477847069501877, + 0.022712497040629387, + 0.06969158351421356, + -0.018249189481139183, + -0.04365988075733185, + -0.008894742466509342, + -0.015148648992180824, + -0.04868925362825394, + 0.027536965906620026, + -0.00062205595895648, + -0.031791072338819504, + 0.04571714997291565, + -0.05048997700214386, + 0.010980334132909775, + 0.003469930961728096, + 0.05879485234618187, + 0.01278812624514103, + 0.0034648883156478405, + -0.004289296455681324, + 0.033172301948070526, + -0.0009389948099851608, + -0.007844148203730583, + -0.11441085487604141, + -0.020750118419528008, + -0.024871354922652245, + -0.10875749588012695, + 0.016109706833958626, + -0.08219759166240692, + 0.013475718908011913, + 0.02549765072762966, + -0.058996424078941345, + -0.046395059674978256, + -0.017598982900381088, + -0.06593693047761917, + 0.018458515405654907, + -0.018721401691436768, + -0.04026925936341286, + -0.10146845877170563, + -1.8035677782933514e-33, + -0.014234432950615883, + 0.03495084494352341, + -0.13219062983989716, + 0.006528130266815424, + -0.005168869625777006, + 0.04137382283806801, + 0.05344682186841965, + -0.0047243316657841206, + 0.005482229869812727, + 0.035766225308179855, + 0.0830979123711586, + 0.006478370167315006, + -0.01876748725771904, + -0.07463310658931732, + -0.04693448543548584, + 0.038788311183452606, + 0.02100740745663643, + 0.07594646513462067, + -0.09614531695842743, + -0.05402150750160217, + -0.05592140927910805, + 0.013901786878705025, + -0.040252164006233215, + 0.09421313554048538, + 0.037115439772605896, + -0.008715313859283924, + 0.013652367517352104, + -0.03022368624806404, + 0.012861856259405613, + 0.011893232353031635, + -0.036347195506095886, + -0.00695920642465353, + -0.003355733584612608, + 0.0422610379755497, + -0.03471973165869713, + -0.013851374387741089, + 0.034488555043935776, + -0.06767097115516663, + 0.005207308102399111, + -0.003200491424649954, + 0.01904653199017048, + -0.02350105158984661, + 0.07494814693927765, + 0.03827991709113121, + -0.032623838633298874, + 0.06028318032622337, + -0.003846737090498209, + -0.008508935570716858, + -0.05397091433405876, + 0.05311444774270058, + 0.010592764243483543, + 0.0016982617089524865, + -0.037730537354946136, + -0.0021241724025458097, + 0.011601855047047138, + -0.0036056945100426674, + 0.034118879586458206, + 0.062216732650995255, + -0.05640626698732376, + -0.0015303477412089705, + -0.062442995607852936, + 0.06907717138528824, + -0.0050508263520896435, + 0.06097232550382614, + 0.022354288026690483, + 0.0029662162996828556, + -0.012010439299046993, + -0.0418996699154377, + -0.030604207888245583, + -0.00451522646471858, + 0.0399552546441555, + 0.02051280066370964, + -0.05102824047207832, + -0.01580681838095188, + -0.0260881669819355, + -0.04017549380660057, + 0.025136347860097885, + 0.046797171235084534, + -0.04797891154885292, + 0.02200489304959774, + 0.0399203784763813, + 0.014123145490884781, + 0.010965166613459587, + -0.008381348103284836, + -0.02687711827456951, + -0.008406899869441986, + 0.03960509970784187, + 0.03900916874408722, + 0.00694415345788002, + 0.0291236974298954, + 0.002346814377233386, + 0.029740331694483757, + 0.0003591414715629071, + 0.014637044630944729, + -0.0659341886639595, + -2.1103863545590684e-08, + -0.0013816443970426917, + -0.032374076545238495, + 0.025224408134818077, + -0.08816570043563843, + 0.009588796645402908, + -0.08695920556783676, + 0.02161087840795517, + 0.016260279342532158, + -0.025614222511649132, + 0.02850344590842724, + 0.08225346356630325, + 0.009109226055443287, + -0.10400842875242233, + -0.01474022027105093, + 0.07602010667324066, + 0.015199290588498116, + 0.007385819219052792, + 0.026135198771953583, + -0.010568947531282902, + -0.03806569427251816, + -0.05759325623512268, + 0.06447729468345642, + 0.009804612025618553, + 0.07124634832143784, + 0.026667336001992226, + 0.011470110155642033, + -0.16743183135986328, + 0.0034134425222873688, + 0.1083754375576973, + 0.06359132379293442, + 0.09188808500766754, + 0.04328938573598862, + 0.05573594942688942, + -0.03289063274860382, + -0.04426112025976181, + 0.023115213960409164, + 0.022803712636232376, + -0.00455910200253129, + 0.002617585239931941, + 0.038993753492832184, + -0.02273891121149063, + -0.12811632454395294, + -0.04648855701088905, + -0.04641884192824364, + -0.04503108561038971, + 0.055952541530132294, + 0.004268998745828867, + 0.00894959643483162, + -0.0437241829931736, + -0.1029241681098938, + 0.013198786415159702, + -0.00385112501680851, + -0.005157639738172293, + 0.022974366322159767, + -0.06312009692192078, + -0.04348733648657799, + 0.005665107164531946, + 0.041307736188173294, + 0.05308402329683304, + 0.03387510031461716, + 0.09406016021966934, + 0.09034495055675507, + -0.014091412536799908, + -0.0018328333972021937 + ], + "guitar-bold||music,instrument": [ + 0.0018473840318620205, + 0.0034301907289773226, + -0.031129859387874603, + -0.020044976845383644, + -0.04743111506104469, + -0.02403019741177559, + 0.08904238790273666, + -0.04120871052145958, + 0.0395982526242733, + 0.027034765109419823, + -0.0006614511366933584, + 0.0016090231947600842, + 0.03131874278187752, + -0.07142972946166992, + -0.0020897076465189457, + 0.048544254153966904, + 0.05954127758741379, + 0.04286817088723183, + 0.030603034421801567, + 0.03181523457169533, + -0.02410571463406086, + 0.10453250259160995, + -0.014285779558122158, + 0.010810409672558308, + 0.0025598544161766768, + 0.04280206933617592, + 0.05000139772891998, + 0.09761103987693787, + 0.03137882053852081, + -0.05844208225607872, + -0.0035036036279052496, + 0.010978282429277897, + 0.05644212290644646, + -0.027648726478219032, + 0.02272220514714718, + 0.01427760161459446, + -0.10061682760715485, + -0.04487233608961105, + -0.04084087535738945, + 0.03702511265873909, + 0.04215119034051895, + -0.03317767381668091, + 0.014029694721102715, + -0.016662754118442535, + -0.0814344584941864, + -0.09825164079666138, + -0.06744153052568436, + -0.0317048579454422, + -0.01116244774311781, + -0.0195634663105011, + -0.011141876690089703, + -0.10292386263608932, + -0.06838025897741318, + -0.025738457217812538, + -0.02203715220093727, + 0.02964707277715206, + -0.06470009684562683, + 0.024712007492780685, + 0.05193331465125084, + -0.004938381724059582, + 0.01933167688548565, + 0.01859038881957531, + 0.05473359301686287, + 0.04623134061694145, + 0.04656006023287773, + 0.006932489573955536, + 0.05721591040492058, + 0.003271759720519185, + -0.08615023642778397, + 0.06308262795209885, + 0.04797793924808502, + -0.0407770499587059, + -0.017531415447592735, + -0.057190146297216415, + 0.023589566349983215, + 0.02864857017993927, + 0.04999502748250961, + -0.010982459411025047, + -0.03287500888109207, + -0.046493176370859146, + -0.042619504034519196, + -0.0936766192317009, + -0.050928112119436264, + -0.0710652768611908, + 0.028244994580745697, + 0.04271114990115166, + -0.03206321597099304, + -0.03467080742120743, + -0.07033496350049973, + -0.036268312484025955, + -0.06806271523237228, + 0.004790464416146278, + -0.0526379719376564, + 0.02230871096253395, + -0.0735078975558281, + 0.027557749301195145, + 0.05475574731826782, + 0.0038670101203024387, + -0.053132545202970505, + 0.0729539543390274, + 0.04070211574435234, + 0.024838577955961227, + 0.10969803482294083, + 0.06846688687801361, + -0.052990272641181946, + -0.02030961588025093, + -0.00034575865720398724, + 0.04907044768333435, + -0.00045213126577436924, + -0.09952592104673386, + 0.02250073105096817, + -0.0706346407532692, + -0.04371234402060509, + 0.001479926286265254, + -0.0046820566058158875, + -0.028114700689911842, + -0.05020161345601082, + 0.013958234339952469, + 0.08082027733325958, + 0.07818421721458435, + 0.035268161445856094, + -0.04754536226391792, + -0.07760225236415863, + 0.007932469248771667, + 0.012709476985037327, + 0.05339328199625015, + 0.037976182997226715, + -3.0743594561368018e-33, + 0.1005636602640152, + 0.036227669566869736, + -0.005316066090017557, + 0.028665846213698387, + 0.05298817530274391, + -0.0684780403971672, + -0.08472425490617752, + 0.037226393818855286, + -0.0378885343670845, + 0.09239457547664642, + 0.0631362795829773, + 0.08628100901842117, + 0.014845715835690498, + 0.03644723817706108, + 0.06701916456222534, + -0.024888353422284126, + 0.004771050531417131, + -0.06533192843198776, + -0.05354905501008034, + 0.01750512607395649, + -0.08511847257614136, + 0.0488014854490757, + -0.029149899259209633, + -0.02073022536933422, + 0.0013353023678064346, + -0.028541482985019684, + 0.06416632235050201, + -0.024248074740171432, + -0.058313097804784775, + 0.020390057936310768, + 0.04037089645862579, + -0.014870978891849518, + 0.04497813805937767, + -0.024373840540647507, + -0.02087678760290146, + 0.04834914207458496, + -0.04083273187279701, + 0.04574405029416084, + 0.018899425864219666, + 0.028767313808202744, + -0.07743513584136963, + -0.04001030698418617, + -0.004254159051924944, + -0.004926806315779686, + -0.0009594691800884902, + 0.09558747708797455, + -0.015408835373818874, + -0.018832571804523468, + 0.046792201697826385, + 0.05281878635287285, + 0.051567770540714264, + -0.03025347925722599, + 0.0536155067384243, + 0.04790102317929268, + -0.0036223242059350014, + 0.0015564541099593043, + 0.004927242174744606, + 0.09483903646469116, + -0.00245601125061512, + -0.031069187447428703, + 0.024570437148213387, + -0.0130907092243433, + 0.07447103410959244, + -0.01206559594720602, + -0.026121243834495544, + 0.08838706463575363, + 0.01747494377195835, + -0.048767805099487305, + 0.1191902831196785, + -0.012824573554098606, + -0.05660007521510124, + 0.04881109669804573, + 0.055971793830394745, + 0.03667731210589409, + -0.05064594745635986, + 0.01550343818962574, + -0.0175947193056345, + -0.0664965957403183, + 0.0560067854821682, + -0.09304411709308624, + -0.09111850708723068, + 0.04199710115790367, + -0.07684220373630524, + 0.0827881395816803, + 0.001496118726208806, + 0.03523661568760872, + -0.02347639948129654, + -0.10043856501579285, + 0.030403204262256622, + 0.06652893126010895, + -0.08406837284564972, + 0.0032156384550035, + -0.0795072615146637, + -0.06906192004680634, + -0.06044476106762886, + 5.5675590970018725e-34, + 0.08205260336399078, + 0.05144476145505905, + -0.015286161564290524, + 0.005197400692850351, + 0.016155384480953217, + 0.05180319771170616, + 0.04852581024169922, + 0.07496258616447449, + -0.03394067659974098, + 0.027800049632787704, + 0.06560968607664108, + 0.0078029027208685875, + -0.016785986721515656, + -0.13094760477542877, + 0.013057835400104523, + 0.023150458931922913, + -0.08217664062976837, + 0.0625649094581604, + 0.016343187540769577, + -0.016210034489631653, + -0.06906721740961075, + -0.061818040907382965, + 0.06359735131263733, + 0.050513897091150284, + -0.00424529192969203, + 0.003200107952579856, + 0.010967785492539406, + -0.02723347209393978, + -0.07849660515785217, + -0.053874943405389786, + -0.00956856831908226, + -0.015100792050361633, + 0.04719546064734459, + -0.041189517825841904, + -0.06551936268806458, + 0.0731646940112114, + 0.06403109431266785, + -0.04545613378286362, + 0.04192953184247017, + 0.0028734663501381874, + -0.03867416828870773, + 0.03443833813071251, + 0.018341679126024246, + 0.061375703662633896, + -0.06456049531698227, + 0.01996062882244587, + 0.030193181708455086, + 0.003861888311803341, + -0.0011069061001762748, + 0.06476666778326035, + 0.0406002514064312, + 0.002956313779577613, + 0.08137683570384979, + -0.011140888556838036, + -0.09348557889461517, + -0.013945186510682106, + -0.034093402326107025, + -0.07207762449979782, + -0.030299566686153412, + 0.10065840184688568, + -0.029644474387168884, + 0.09397907555103302, + -0.05619373545050621, + -0.0206085667014122, + 0.07837612181901932, + -0.016859574243426323, + 0.022327622398734093, + -0.03371955454349518, + 0.05464214086532593, + 0.012589159421622753, + 0.015273088589310646, + 0.013143242336809635, + -0.04147331044077873, + 0.06353698670864105, + 0.013472246006131172, + -0.059398241341114044, + -0.027408385649323463, + -0.029613440856337547, + -0.004443706013262272, + 0.04460648074746132, + 0.04736723378300667, + -0.0008065073634497821, + -0.0625394806265831, + -0.008441021665930748, + -0.028923310339450836, + 0.018572406843304634, + 0.023891620337963104, + 0.03431239724159241, + -0.031250424683094025, + -0.015014607459306717, + 0.005401697475463152, + 0.07862494885921478, + -0.05473676323890686, + -0.05064045637845993, + -0.032778479158878326, + -1.477387812087727e-08, + -0.020794585347175598, + 0.04214077815413475, + -0.06058330088853836, + -0.021755453199148178, + 0.04505733773112297, + -0.021605828776955605, + 0.03093552216887474, + -0.14169541001319885, + -0.03053959459066391, + -0.010035461746156216, + 0.007024313788861036, + -0.030213788151741028, + -0.06825278699398041, + -0.01993994228541851, + -0.030937926843762398, + 0.04019780829548836, + -0.10541795194149017, + 0.049422550946474075, + -0.0590398870408535, + -0.04058999940752983, + 0.014248018153011799, + 0.04104091599583626, + 0.05535992980003357, + -0.07854906469583511, + 0.014459742233157158, + 0.010781561955809593, + -0.061630770564079285, + 0.01110992580652237, + 0.05360381677746773, + 0.11250627040863037, + 0.02380111813545227, + 0.045826345682144165, + 0.023432008922100067, + 0.019955208525061607, + -0.101016104221344, + -0.04920288175344467, + -0.02569284476339817, + -0.0341525636613369, + -0.036907684057950974, + 0.11906846612691879, + -0.0336398109793663, + 0.045836012810468674, + -0.053232572972774506, + -0.03417643532156944, + -0.08057432621717453, + -0.016445375978946686, + 0.11731880903244019, + -0.03232728689908981, + -0.07470311224460602, + -0.07016857713460922, + -0.046061672270298004, + -0.0585053414106369, + -0.007129848003387451, + 0.05182889848947525, + -0.07414393126964569, + -0.04600443318486214, + 0.008723573759198189, + 0.18332511186599731, + -0.09166630357503891, + 0.004750439897179604, + 0.07033862173557281, + -0.012072824873030186, + 0.03994670510292053, + -0.010773002170026302 + ], + "hair-dryer-bold||*new*,blow dryer,beauty,grooming,salon": [ + -0.018078060820698738, + -0.07214473187923431, + 0.05723753944039345, + 0.025222737342119217, + 0.027142085134983063, + -0.013443686068058014, + 0.022585026919841766, + -0.04828878119587898, + -0.05427752807736397, + -0.010434489697217941, + 0.07946206629276276, + -0.041281405836343765, + -0.013068717904388905, + -0.03607972711324692, + 0.025822516530752182, + 0.04221959784626961, + 0.006906452123075724, + 0.0401587150990963, + -0.03666060045361519, + 0.003978066146373749, + 0.046374883502721786, + 0.0724046379327774, + 0.005267859436571598, + 0.09467554837465286, + 0.06066440790891647, + -0.01896022818982601, + 0.048790428787469864, + 0.020885666832327843, + -0.05728118494153023, + -0.0829501748085022, + 0.014968957751989365, + 0.04029599577188492, + 0.059306107461452484, + 0.03226892277598381, + 0.02166251838207245, + -0.0278998501598835, + -0.026500770822167397, + -0.010851679369807243, + -0.004396285396069288, + 0.06550870835781097, + 0.01705099269747734, + -0.11000198870897293, + -0.045451585203409195, + -0.015509732998907566, + -0.0007734947721473873, + -0.04051903262734413, + -0.0036049960181117058, + 0.05005389451980591, + 0.013311129994690418, + 0.08468639105558395, + 0.01054453942924738, + -0.11438661813735962, + -0.05965034291148186, + 0.015194150619208813, + -0.01161241065710783, + 0.014500112272799015, + -0.045681096613407135, + -0.05216161534190178, + -0.03557223081588745, + 0.012171472422778606, + -0.015248400159180164, + 0.041323453187942505, + 0.02086815983057022, + 0.07118399441242218, + 0.042065802961587906, + -0.008278518915176392, + -0.029129547998309135, + 0.015802918002009392, + -0.027202678844332695, + -0.06900166720151901, + -0.06432273238897324, + -0.043296314775943756, + -0.07629954069852829, + 0.10107887536287308, + -0.0609365776181221, + -0.04981909319758415, + 0.04729253426194191, + 0.010666566900908947, + -0.05443078279495239, + -0.06331634521484375, + 0.013227688148617744, + -0.10864118486642838, + 0.012227295897901058, + 0.010269357822835445, + -0.02565755881369114, + 0.045592762529850006, + -0.08116684854030609, + -0.09518110007047653, + -0.017673203721642494, + -0.029587171971797943, + -0.09001173824071884, + -0.002938289428129792, + 0.002817211439833045, + 0.045687854290008545, + -0.014886729419231415, + 0.03097357042133808, + 0.018795587122440338, + 0.057046517729759216, + 0.011975003406405449, + 0.07660508900880814, + -0.029681816697120667, + -0.04270821809768677, + 0.04758262261748314, + -0.0006663305684924126, + -0.10277101397514343, + -0.06988757848739624, + -0.07025385648012161, + -0.03408521041274071, + -0.051659632474184036, + -0.024282226338982582, + 0.005512543022632599, + -0.01627695932984352, + -0.005959784146398306, + -0.08686951547861099, + 0.03452344238758087, + -0.066984623670578, + -0.018774157389998436, + -0.0021467837505042553, + 0.08003115653991699, + 0.03239389881491661, + -0.005519567988812923, + 0.03819722309708595, + 0.005602440796792507, + -0.04787223041057587, + -0.09714837372303009, + -0.017016788944602013, + 0.010593589395284653, + -1.8962354877175263e-33, + 0.04197174683213234, + 0.03138962760567665, + 0.026662910357117653, + 0.1263914853334427, + -0.07607126235961914, + 0.07515744864940643, + -0.018582753837108612, + -0.004455475136637688, + -0.04386521875858307, + 0.010274247266352177, + 0.03627452626824379, + 0.09969494491815567, + -0.06955581158399582, + 0.06016950681805611, + 0.023908598348498344, + -0.011229965835809708, + 0.06283099949359894, + 0.018248194828629494, + -0.012926831841468811, + -0.02014887146651745, + -0.04253797233104706, + 0.12848258018493652, + -0.03991064056754112, + 0.0018030875362455845, + -0.07612908631563187, + -0.07020854949951172, + 0.007773325312882662, + -0.08636748790740967, + -0.060837194323539734, + 0.003214515745639801, + 0.057801540940999985, + -0.03126145899295807, + 0.11334491521120071, + -0.036512069404125214, + -0.06579641252756119, + 0.020605262368917465, + -0.05808050557971001, + -0.07210678607225418, + 0.005008721258491278, + -0.026742855086922646, + -0.09025624394416809, + -0.035936228930950165, + -0.02460346557199955, + 0.06712786108255386, + 0.008007005788385868, + 0.07212679088115692, + -0.08016561716794968, + -0.005991232581436634, + 0.015356451272964478, + 0.0710655078291893, + 0.0038433452136814594, + 0.010449212975800037, + 0.011232813820242882, + 0.07863497734069824, + 0.03259314224123955, + -0.05256526544690132, + 1.4398480743693653e-05, + 0.013858617283403873, + -0.003576419549062848, + 0.03381674364209175, + 0.026011310517787933, + 0.10975190252065659, + -0.054718274623155594, + -0.08051618933677673, + -0.029558438807725906, + -0.019010726362466812, + 0.05491417646408081, + 0.08355008810758591, + 0.0397002175450325, + 0.058575619012117386, + -0.048414647579193115, + 0.07991360872983932, + 0.04077554866671562, + 0.04164019972085953, + 0.041105978190898895, + -0.01206260360777378, + -0.02821956016123295, + 0.004289302509278059, + -0.03339289128780365, + -0.050671666860580444, + -0.023137155920267105, + 0.08037130534648895, + -0.08694305270910263, + 0.10468225181102753, + -0.021608851850032806, + 0.04003558307886124, + -0.020982103422284126, + -0.00873648002743721, + -0.0094052255153656, + 0.03035016357898712, + -0.059392496943473816, + 0.03169417008757591, + 0.07168691605329514, + 0.004313739947974682, + -0.018534032627940178, + -2.1183504717641747e-33, + 0.05553152412176132, + -0.039472904056310654, + -0.05688582733273506, + 0.14056691527366638, + 0.03307783603668213, + 0.04923329874873161, + -0.011392679065465927, + -0.006510715465992689, + -0.03220437094569206, + 0.029759258031845093, + 0.07613896578550339, + -0.04005017504096031, + -0.03261246904730797, + -0.08736227452754974, + 0.06399482488632202, + 0.0652848482131958, + -0.04330195114016533, + 0.0033550234511494637, + -0.033561110496520996, + 0.01936722733080387, + 0.03697679191827774, + 0.05697250738739967, + -0.05859697237610817, + 0.01771860010921955, + -0.09938487410545349, + -0.03159988299012184, + -0.01790161244571209, + 0.013517661951482296, + 0.020356880500912666, + 0.02001303993165493, + -0.009870347566902637, + -0.020015671849250793, + 0.04025614634156227, + 0.0875520333647728, + -0.07592425495386124, + 0.04063230752944946, + -0.014662460424005985, + -0.046979691833257675, + 0.037787456065416336, + 0.05027664080262184, + -0.030245965346693993, + -0.06133584305644035, + 0.06900835037231445, + 0.0675894245505333, + -0.02195584960281849, + -0.03997887298464775, + -0.04798303544521332, + -0.13506188988685608, + -0.03418838977813721, + 0.03594643250107765, + 0.0229246374219656, + -0.017511578276753426, + -0.048614099621772766, + 0.0068305376917123795, + -0.04485299065709114, + 0.009673094376921654, + -0.0035457932390272617, + -0.06790392845869064, + -0.06403844803571701, + 0.0919409766793251, + -0.029136022552847862, + 0.0032332090195268393, + -0.006034421734511852, + 0.08204134553670883, + -0.08974707126617432, + -0.10409998893737793, + -0.02127237431704998, + -0.02793639339506626, + -0.017764052376151085, + -0.037201885133981705, + -0.004177782218903303, + 0.0070815058425068855, + -0.027224596589803696, + -0.018545396625995636, + -0.030331507325172424, + -0.04665656015276909, + 0.005851734429597855, + -0.008081289008259773, + -0.031234808266162872, + 0.06118934229016304, + -0.09608009457588196, + -0.037435270845890045, + -0.009563806466758251, + 0.0432957261800766, + 0.06160355359315872, + -0.016084689646959305, + -0.03290260583162308, + -0.027682865038514137, + 0.047919269651174545, + -0.0128256157040596, + -0.02470974624156952, + 0.009455698542296886, + -0.019854523241519928, + -0.010558337904512882, + -0.05604865029454231, + -2.4950034926973785e-08, + -0.005003075115382671, + 0.005200799088925123, + 0.009549738839268684, + -0.0006923995679244399, + 0.08117614686489105, + -0.03331861272454262, + -0.03074570931494236, + 0.0045322529040277, + -0.05164394900202751, + -0.004635841120034456, + 0.06455168128013611, + 0.01848873309791088, + -0.06677503883838654, + 0.052421048283576965, + 0.1560886651277542, + -0.03511380776762962, + 0.035615235567092896, + 0.12851545214653015, + 0.0020061242394149303, + -0.09753283113241196, + 0.025457432493567467, + 0.06822536885738373, + -0.002816176740452647, + -0.04130936414003372, + 0.023830240592360497, + 0.040807757526636124, + -0.049162935465574265, + 0.034548185765743256, + 0.013187240809202194, + 0.10250949114561081, + 0.07235533744096756, + 0.05679923668503761, + -0.050671420991420746, + -0.030680175870656967, + -0.1090320572257042, + -0.009870411828160286, + -0.05655260384082794, + -0.053160473704338074, + -0.06399484723806381, + 0.08652200549840927, + -0.03839680552482605, + -0.035838689655065536, + -0.037248410284519196, + 0.03907611221075058, + 0.0183095745742321, + -0.06799512356519699, + 0.12474232912063599, + -0.08369900286197662, + -0.04543615132570267, + -0.045439399778842926, + -0.03091452829539776, + -0.048923082649707794, + 0.07436811923980713, + 0.03699246793985367, + 0.012661527842283249, + 0.019397271797060966, + 0.00016476814926136285, + 0.04362199455499649, + 0.0400167778134346, + 0.015722962096333504, + 0.05918688699603081, + -0.03892822563648224, + 0.007623948156833649, + 0.02804955653846264 + ], + "hamburger-bold||fast food,party,places,locations,restaurants,food,dining": [ + 0.024236442521214485, + -0.01935512199997902, + 0.019674431532621384, + 0.027938149869441986, + -0.043067775666713715, + 0.03136502206325531, + 0.007668409030884504, + -0.07826503366231918, + -0.030240457504987717, + 0.016508111730217934, + 0.1061258539557457, + -0.011467572301626205, + 0.015177609398961067, + -0.05723396688699722, + 0.026001643389463425, + -0.10854986310005188, + 0.151374951004982, + 0.012781633995473385, + 0.09167660772800446, + -0.012497208081185818, + -0.04639673978090286, + -0.020457196980714798, + 0.008117404766380787, + 0.05133641138672829, + 0.03341645374894142, + 0.024273047223687172, + 0.03064040280878544, + 0.008822103962302208, + -0.061781201511621475, + -0.0707806646823883, + -0.029484998434782028, + -0.04713664948940277, + 0.019288688898086548, + 0.030633224174380302, + 0.01335019152611494, + -0.017307603731751442, + 0.08061886578798294, + -0.07032579928636551, + 0.008104979991912842, + 0.05063287913799286, + -0.007774748373776674, + -0.034181077033281326, + 0.0342911072075367, + -0.019985556602478027, + 0.049247562885284424, + -0.0013812894467264414, + -0.12124589085578918, + 0.024113649502396584, + -0.0011106346501037478, + 0.02647876739501953, + -0.008349473588168621, + -0.007763600442558527, + -0.07945345342159271, + 0.01383254211395979, + 0.10282684862613678, + 0.025671042501926422, + -0.08120987564325333, + -0.036974139511585236, + 0.03733022138476372, + 0.11708191782236099, + -0.005637130234390497, + 0.005027782171964645, + 0.009688686579465866, + 0.05890263244509697, + 0.009763149544596672, + -0.0947573184967041, + -0.06799571216106415, + 0.06252890825271606, + -0.0828748568892479, + 0.01770160347223282, + 0.04219937324523926, + -0.017969876527786255, + 0.07479727268218994, + -0.010771101340651512, + -0.04081122949719429, + -0.10237909853458405, + 0.03519608825445175, + -0.01524632889777422, + -0.020025352016091347, + -0.030737875029444695, + -0.07205809652805328, + -0.03414345905184746, + -0.06802141666412354, + -0.036091722548007965, + -0.07097586989402771, + -0.011734943836927414, + -0.07717152684926987, + -0.05436599999666214, + 0.00421217642724514, + -0.036915283650159836, + -0.051550865173339844, + -0.04834415763616562, + -0.024092625826597214, + -0.061102494597435, + -0.027257902547717094, + -0.004653542302548885, + 0.009998885914683342, + -0.026049261912703514, + 0.007638951763510704, + 0.0436144657433033, + 0.012677478604018688, + 0.06164858862757683, + 0.06463207304477692, + -0.02671370655298233, + -0.006620094645768404, + -0.02441486530005932, + -0.08124477416276932, + 0.06316279619932175, + 0.03937056288123131, + 0.050582390278577805, + 0.006138259544968605, + 0.0494062639772892, + -0.01373120304197073, + -0.05373841151595116, + -0.046793367713689804, + -0.034558553248643875, + 0.029126442968845367, + -0.14366096258163452, + 0.08788945525884628, + -0.024842949584126472, + -0.07016802579164505, + 0.09579040110111237, + 0.03697369992733002, + -0.01816871017217636, + -0.0741683766245842, + 0.06239500269293785, + 0.046916764229536057, + -4.070077925377152e-33, + -0.01784558594226837, + -0.06815209984779358, + -0.030348360538482666, + 0.06198811158537865, + 0.05669822543859482, + -0.0030080548021942377, + -0.00503509072586894, + -0.06066294386982918, + -0.0511205680668354, + 0.04560631513595581, + 0.0879906490445137, + -0.04860938340425491, + -0.04065629467368126, + 0.07330328226089478, + 0.07342109084129333, + 0.004682943690568209, + -0.013767554424703121, + -0.014798779040575027, + -0.08064615726470947, + -0.047158483415842056, + -0.0284414105117321, + 0.020230621099472046, + 0.02893475629389286, + -0.018182242289185524, + 0.0008126505417749286, + -0.050626665353775024, + 0.0045519135892391205, + -0.05426297336816788, + -0.030147036537528038, + 0.0282788947224617, + 0.021160796284675598, + 0.052024077624082565, + 0.00847539585083723, + -0.08198951929807663, + 0.01920487731695175, + -0.033971913158893585, + 0.03260238841176033, + -0.05839544162154198, + -0.008013959042727947, + -0.024818185716867447, + -0.0410575233399868, + -0.029911110177636147, + -0.08366621285676956, + 0.056167904287576675, + -0.0009253552416339517, + 0.10905992984771729, + 0.03944256529211998, + -0.014498942531645298, + 0.03223225101828575, + -0.01504881214350462, + 2.420092096144799e-05, + -0.0823666900396347, + -0.011095420457422733, + 0.009172577410936356, + -0.04615167900919914, + 0.07717782258987427, + 0.0014812498120591044, + -0.024073462933301926, + 0.06289491057395935, + -0.02356983721256256, + 0.039245471358299255, + 0.08564968407154083, + 0.012557489797472954, + -0.06655647605657578, + -0.012425711378455162, + 0.007965553551912308, + 0.02339617721736431, + 0.014734418131411076, + 0.13348270952701569, + 0.011477443389594555, + 0.07382066547870636, + -0.027801645919680595, + 0.07703998684883118, + -0.022129390388727188, + 0.04997725039720535, + 0.05113587528467178, + -0.07371751219034195, + 0.049574531614780426, + -0.03287932276725769, + -0.034354254603385925, + -0.0035497380886226892, + 0.0011139719281345606, + -0.027874760329723358, + 0.1278008073568344, + 0.04729349538683891, + 0.054881613701581955, + 0.03434381261467934, + -0.1420561671257019, + -0.0005800013896077871, + 0.04163096472620964, + -0.10291354358196259, + 0.036222029477357864, + 0.01619817689061165, + -0.07539530098438263, + -0.08409179002046585, + 5.987590779199523e-34, + 0.04641318321228027, + -0.0628620833158493, + -0.013858051970601082, + -0.011469501070678234, + 0.03179267421364784, + -0.08303800970315933, + -0.06178906559944153, + -0.010046158917248249, + 0.010913534089922905, + -0.02648508921265602, + -0.10341707617044449, + 0.02074502222239971, + -0.022738557308912277, + -0.07125940173864365, + 0.0467073880136013, + 0.06457076221704483, + 0.013365812599658966, + 0.10860121250152588, + -0.0022745339665561914, + 0.039439789950847626, + -0.00325440289452672, + -0.08635538816452026, + -0.031051039695739746, + 0.11322157829999924, + 0.00276428135111928, + 0.04139339178800583, + -0.0011066533625125885, + 0.0006438308046199381, + -0.09119544923305511, + -0.06975776702165604, + -0.09649252891540527, + -0.031524766236543655, + 0.07578422129154205, + 0.01144849881529808, + -0.05664458125829697, + 0.08692234754562378, + -0.04039328172802925, + -0.020494259893894196, + 0.013861081562936306, + -0.018829338252544403, + 0.06761515140533447, + -0.01318370271474123, + 0.015332343056797981, + 0.0924232080578804, + -0.01615879125893116, + 0.049474701285362244, + -0.06717503070831299, + -0.059871185570955276, + -0.061746373772621155, + 0.06356439739465714, + 0.031126877292990685, + -0.05101463198661804, + -0.03143655136227608, + 0.027517694979906082, + -0.028364509344100952, + 0.015097795985639095, + -0.029828986153006554, + -0.0315074659883976, + -0.017011871561408043, + 0.03233559429645538, + -0.011526037007570267, + 0.038896530866622925, + -0.0011700564064085484, + 0.09671366214752197, + 0.10608706623315811, + -0.06673427671194077, + 0.0069617717526853085, + -0.06984932720661163, + 0.013724586926400661, + -0.022732701152563095, + -0.04502720385789871, + 0.016049157828092575, + 0.016840575262904167, + 0.0439264290034771, + -0.04808174818754196, + -0.037702545523643494, + 0.051427435129880905, + 0.062566377222538, + -0.013365283608436584, + 0.0469181165099144, + -0.0010010863188654184, + -0.028459174558520317, + -0.012906626798212528, + 0.02554335817694664, + 0.00080200529191643, + 0.04919843375682831, + 0.011819273233413696, + -0.0023663698229938745, + -0.03434257581830025, + 0.07429233193397522, + -0.041840553283691406, + 0.07840684056282043, + 0.0023511620238423347, + -0.041617169976234436, + -0.026704663410782814, + -2.1906835456775298e-08, + 0.048781868070364, + 0.02349996380507946, + -0.07325387001037598, + 0.03587968274950981, + 0.018121059983968735, + -0.0776735171675682, + -0.021337095648050308, + -0.030501052737236023, + 0.002201566006988287, + 0.05211501196026802, + -0.0440552644431591, + 0.07190486043691635, + -0.031103510409593582, + 0.020919708535075188, + -0.01932913437485695, + 0.011112561449408531, + -0.0025633324403315783, + 0.024795211851596832, + -0.0352526530623436, + 0.02919156663119793, + -0.029025180265307426, + 0.11534737050533295, + -0.0019293572986498475, + -0.044177595525979996, + 0.005163691937923431, + 0.027762603014707565, + -0.049533482640981674, + 0.04299817606806755, + 0.10522888600826263, + 0.01494547538459301, + -0.01684516668319702, + 0.048245787620544434, + -0.08594337105751038, + -0.012718332931399345, + -0.012639876455068588, + -0.027168450877070427, + -0.07107352465391159, + -0.07262098044157028, + -0.013027251698076725, + -0.016643524169921875, + -0.05840635299682617, + -0.028981942683458328, + 0.007792198099195957, + -0.013876221142709255, + -0.048759542405605316, + 0.06513091176748276, + 0.006289100274443626, + 0.04018484055995941, + -0.05035858228802681, + 0.03351663053035736, + -0.10817646235227585, + 0.03755403310060501, + 0.025549666956067085, + -0.049608759582042694, + -0.009629136882722378, + 0.0057328566908836365, + 0.03537265583872795, + -0.025023704394698143, + 0.09093481302261353, + -0.0024015221279114485, + 0.1495535671710968, + 0.03121025301516056, + -0.000617136771325022, + 0.06748416274785995 + ], + "hammer-bold||tools,carpentry,construction": [ + -0.053283318877220154, + 0.028452947735786438, + 0.00602534506469965, + 0.032256707549095154, + -0.08144019544124603, + -0.08642078936100006, + 0.055777937173843384, + -0.05158909037709236, + -0.036632832139730453, + 0.032278917729854584, + -0.029376238584518433, + -0.0009232750162482262, + 0.054925817996263504, + -0.050348296761512756, + -0.06155754625797272, + 0.045587554574012756, + 0.02168656513094902, + -0.01320669800043106, + 0.012751203030347824, + 0.07413943111896515, + 0.00033645390067249537, + 0.06330899149179459, + 0.030906539410352707, + 0.022713452577590942, + 0.02488957904279232, + 0.09648696333169937, + -0.029083363711833954, + 0.045210838317871094, + 0.04355248436331749, + -0.052853669971227646, + 0.025315305218100548, + 0.006812498904764652, + -0.004870756529271603, + 0.0003268014988861978, + 0.05532357096672058, + 0.06847672164440155, + 0.01453630905598402, + 0.006232773419469595, + 0.015780260786414146, + 0.02115103416144848, + -0.03784120827913284, + -0.055755823850631714, + 0.023844430223107338, + -0.008876536041498184, + -0.0052611869759857655, + -0.0058640381321311, + -0.05032509192824364, + -0.0561051070690155, + -0.014688491821289062, + 0.004660326987504959, + -0.02602173388004303, + -0.09208910912275314, + -0.05894073098897934, + -0.013718965463340282, + 0.041267137974500656, + 0.0644013062119484, + -0.03906300291419029, + -0.04001648351550102, + 0.06161918863654137, + 0.0010462227510288358, + 0.07722992449998856, + 0.08569877594709396, + -0.041432201862335205, + 0.045525938272476196, + 0.014479083009064198, + -0.000931849586777389, + 0.02188357710838318, + 0.004271847195923328, + -0.10472926497459412, + 0.061225999146699905, + 0.07413709163665771, + -0.013578187674283981, + -0.0028090353589504957, + -0.011968763545155525, + 0.04265474155545235, + -0.04722227901220322, + -0.008545556105673313, + 0.025568116456270218, + 0.002120175864547491, + -0.10894868522882462, + -0.11303393542766571, + -0.015378652140498161, + -0.05468040704727173, + -0.009348197840154171, + 0.036977216601371765, + 0.061154983937740326, + -0.014047501608729362, + -0.016556845977902412, + 0.03929661959409714, + -0.008546926081180573, + -0.048821382224559784, + -0.016757860779762268, + -0.053357772529125214, + 0.05870391055941582, + 0.009487572126090527, + -0.024213790893554688, + 0.03908535838127136, + 0.029877543449401855, + -0.05891645699739456, + 0.08811663836240768, + -0.002014402998611331, + 0.05333961546421051, + 0.035240016877651215, + -0.09407500922679901, + -0.016154348850250244, + 0.014860561117529869, + -0.1114516407251358, + -0.017448358237743378, + -0.062076471745967865, + -0.017372244969010353, + 0.06872092932462692, + -0.12103813886642456, + -0.05739240720868111, + -0.06471972912549973, + -0.04278721287846565, + -0.08116582036018372, + -0.05294692516326904, + -0.04362037777900696, + 0.05475353077054024, + 0.006272780243307352, + 0.06168071925640106, + -0.008045313879847527, + -0.06301981955766678, + -0.07649724930524826, + -0.030583133921027184, + 0.026058170944452286, + 0.03142814338207245, + -3.2856635655757314e-33, + 0.048769645392894745, + -0.020768750458955765, + -0.07415242493152618, + 0.0182088203728199, + 0.037020113319158554, + 0.030605684965848923, + 0.023271599784493446, + 0.004965900909155607, + -0.02708236314356327, + 0.0711897611618042, + 0.10503796488046646, + 0.006317951250821352, + -0.030152790248394012, + 0.05646846443414688, + 0.07269395887851715, + -0.0418425090610981, + 0.02826113812625408, + 0.001707141986116767, + -0.0784255862236023, + 0.02472827024757862, + -0.0860002264380455, + 0.05530543625354767, + -0.045013152062892914, + -0.013298651203513145, + 0.018878353759646416, + -0.0431138314306736, + 0.09165381640195847, + -0.06077525019645691, + -0.06673555076122284, + 0.0403505377471447, + -0.016006669029593468, + 0.05988284572958946, + 0.05500905588269234, + 0.010992711409926414, + -0.06453590840101242, + 0.04943995550274849, + -0.06294421851634979, + -0.10111109167337418, + -0.030206924304366112, + -0.04295787215232849, + -0.0102107347920537, + -0.04270697757601738, + -0.015508611686527729, + -0.05377250164747238, + 0.028902459889650345, + 0.0771583616733551, + 0.011274375952780247, + 0.00239629577845335, + -0.036709245294332504, + 0.014777143485844135, + 0.01924348622560501, + 0.06414780020713806, + 0.1037767082452774, + 0.09640049189329147, + -0.015575048513710499, + -0.004876116756349802, + -0.021508120000362396, + 0.058834683150053024, + 0.03925937041640282, + 0.018977781757712364, + -0.0438990592956543, + 0.052844054996967316, + 0.037423938512802124, + 0.056887030601501465, + 0.008919309824705124, + -0.010039746761322021, + 0.02579558826982975, + 0.06932811439037323, + 0.10172799974679947, + 0.00031308498000726104, + 0.004063963890075684, + -0.01705484837293625, + -0.012277903035283089, + 0.0685805082321167, + -0.05548931285738945, + 0.015204927884042263, + 0.00983091164380312, + -0.00902240164577961, + 0.04475834220647812, + -0.04517219960689545, + -0.09723624587059021, + 0.10772345215082169, + -0.03210968151688576, + 0.05882107466459274, + 0.012785078957676888, + 0.03383016213774681, + 0.010447009466588497, + -0.08486979454755783, + -0.03971854969859123, + 0.06289633363485336, + -0.12247315794229507, + -0.06643744558095932, + -0.06223894655704498, + -0.033171646296978, + -0.11122581362724304, + -2.3135762980422518e-34, + 0.05857730656862259, + 0.016481108963489532, + -0.05472944304347038, + 0.051370467990636826, + -0.02189973182976246, + 0.02496735006570816, + -0.05277632549405098, + -0.09473041445016861, + -0.05679052323102951, + -0.008333913050591946, + 0.01471339724957943, + 0.032878633588552475, + -0.052962712943553925, + -0.022749241441488266, + 0.1023487001657486, + 0.004841476678848267, + 0.005446228198707104, + -0.010061098262667656, + -0.032072968780994415, + 0.05425632745027542, + 0.060116931796073914, + -0.019940903410315514, + -0.017622152343392372, + 0.0712188258767128, + -0.03885919973254204, + -0.015529363416135311, + -0.046979259699583054, + -0.07706671208143234, + -0.08527030050754547, + -0.008868038654327393, + -0.03091898187994957, + -0.05091448128223419, + -0.01005350798368454, + -0.002035734010860324, + -0.09278328716754913, + 0.008991911076009274, + 0.05515548959374428, + 0.006164753343909979, + 0.04935990646481514, + 0.002723441692069173, + 0.0554715134203434, + 0.04695647582411766, + 0.05775696784257889, + 0.05756956711411476, + -0.10993746668100357, + -0.01474023051559925, + -0.01730676367878914, + -0.03720138594508171, + -0.06632445752620697, + 0.09540022164583206, + 0.06067556515336037, + 0.040070176124572754, + 0.019605211913585663, + -0.061508577316999435, + -0.05263271555304527, + -0.068685382604599, + 0.011388844810426235, + -0.1268506795167923, + -0.04638577252626419, + 0.1145143136382103, + -0.0003144575748592615, + 0.03992253169417381, + 0.029838355258107185, + 0.09808816760778427, + 0.04031706228852272, + -0.04395899549126625, + -0.014648905955255032, + -0.04855877533555031, + -0.06803405284881592, + -0.011036182753741741, + 0.02378850430250168, + 0.06510982662439346, + 0.04491816461086273, + 0.01363435573875904, + 0.07608813047409058, + -0.05970515310764313, + 0.07381704449653625, + -0.010138588026165962, + 0.022048942744731903, + -0.014223149046301842, + 0.037198204547166824, + -0.03913045674562454, + 0.025094324722886086, + 0.0674743726849556, + -0.08075862377882004, + 0.014109286479651928, + -0.04084079712629318, + 0.01727435737848282, + 0.01535867527127266, + -0.03931432589888573, + 0.029171451926231384, + 0.0068862526677548885, + -0.03522108122706413, + -0.04954084753990173, + -0.04903004318475723, + -1.925684856018961e-08, + -0.01239682361483574, + 0.049685731530189514, + -0.06844837963581085, + -0.07173147052526474, + -0.02005949057638645, + 0.03340664505958557, + 0.006952992640435696, + 0.029351001605391502, + -0.04367636516690254, + -0.039264779537916183, + 0.09821201860904694, + -0.03271276876330376, + -0.057808730751276016, + 0.03883698582649231, + -0.035878460854291916, + -0.0027266093529760838, + -0.040589578449726105, + -0.01065815519541502, + -0.09086201339960098, + -0.10801489651203156, + 0.03688220679759979, + 0.003885481972247362, + 0.10130693763494492, + 0.024666478857398033, + -0.014669114723801613, + -0.0019047980895265937, + -0.11477590352296829, + -0.023950714617967606, + 0.06857527047395706, + 0.08946128189563751, + 0.03602175414562225, + 0.09023533761501312, + 0.00449488777667284, + -0.005426309537142515, + 0.022000253200531006, + -0.05092373862862587, + -0.0056327758356928825, + 0.031000901013612747, + -0.008044913411140442, + 0.10955240577459335, + -0.059762295335531235, + 0.01189775113016367, + -0.026340538635849953, + -0.033932868391275406, + -0.030147718265652657, + 0.02365049161016941, + -0.04480520635843277, + 0.04505973681807518, + -0.07083801925182343, + -0.06735970824956894, + -0.03825009614229202, + 0.03100644052028656, + 0.08396545797586441, + 0.017210545018315315, + 0.008789675310254097, + 0.014548338018357754, + 0.027585327625274658, + 0.03530426695942879, + -0.01401690486818552, + 0.014719679020345211, + 0.12113913893699646, + -0.02369740791618824, + 0.006522258743643761, + 0.08168894052505493 + ], + "hand-bold||pointers,cursors,emoji,backhand": [ + -0.03688402473926544, + -0.09543982148170471, + 0.039998408406972885, + -0.010187259875237942, + -0.04030327498912811, + -0.047618571668863297, + 0.09059381484985352, + -0.018733568489551544, + 0.04547034576535225, + 0.009115793742239475, + 0.020171239972114563, + 0.026494452729821205, + 0.05180634185671806, + -0.004105654079467058, + 0.019378842785954475, + 0.015301826409995556, + -0.0018236764008179307, + 0.030532170087099075, + -0.011024492792785168, + 0.057189468294382095, + -0.01513997558504343, + 0.02379715070128441, + 0.0145303038880229, + -0.021112192422151566, + -0.0072743333876132965, + 0.02631363272666931, + 0.01100559439510107, + -0.05647297203540802, + 0.04929475858807564, + -0.07892987132072449, + -0.08311144262552261, + -0.025050222873687744, + 0.06089329347014427, + 0.04451868310570717, + -0.040298037230968475, + 0.06183287873864174, + -0.025749530643224716, + -0.06094618886709213, + -0.03958490490913391, + 0.017121946439146996, + -0.007389620877802372, + -0.056571464985609055, + 0.04784562811255455, + 0.07305776327848434, + 0.06745073944330215, + 0.006393133196979761, + -0.04280277341604233, + -0.0055774482898414135, + 0.01717015728354454, + 0.012066208757460117, + 0.0016018610913306475, + -0.06729772686958313, + -0.022954586893320084, + -0.030232230201363564, + 0.027939796447753906, + -0.016217196360230446, + -0.015719164162874222, + -0.030165662989020348, + 0.04488683491945267, + 0.025389568880200386, + -0.010285289026796818, + 0.012543787248432636, + 0.014430382288992405, + -0.0015638672048225999, + 0.043183062225580215, + -0.019694775342941284, + 0.05475496128201485, + 0.00046472137910313904, + -0.015093760564923286, + 0.048781853169202805, + 0.01804276742041111, + -0.006923142354935408, + -0.0739004909992218, + 0.015331506729125977, + -0.05457746982574463, + 0.0686984583735466, + 0.011031036265194416, + -0.047572679817676544, + -0.0017371643334627151, + -0.06023450568318367, + -0.031151989474892616, + -0.05107075721025467, + -0.05037606135010719, + 0.03613349050283432, + 0.06532764434814453, + 0.0627492368221283, + -0.0677073746919632, + -0.0634404644370079, + -0.01813557930290699, + 0.04739447310566902, + -0.0412101075053215, + -0.08502312749624252, + -0.012787571176886559, + -0.036641135811805725, + -0.07546193152666092, + -0.04033078998327255, + 0.10681359469890594, + -0.05292750522494316, + -0.09952078014612198, + 0.10231730341911316, + 0.0035115734208375216, + 0.05332677438855171, + 0.11364461481571198, + -0.020018313080072403, + -0.06348860263824463, + 0.01207638718187809, + -0.0035317351575940847, + -0.13799825310707092, + -0.09203540533781052, + -0.010021689347922802, + -0.022572483867406845, + -0.09261872619390488, + -0.07735009491443634, + -0.05430864915251732, + -0.009332961402833462, + -0.08124324679374695, + -0.060903385281562805, + -0.001139368279837072, + 0.18953615427017212, + 0.030997950583696365, + -0.012495569884777069, + 0.0016200696118175983, + -0.08558201044797897, + 0.010873799212276936, + 0.0004776419955305755, + -0.0054902876727283, + -0.020742518827319145, + 4.2225970316993975e-34, + 0.04634229838848114, + 0.051022835075855255, + -0.025606753304600716, + 0.041190389543771744, + -0.010205354541540146, + 0.010526065714657307, + -0.08330341428518295, + -0.022509025409817696, + -0.08462938666343689, + -0.01685178466141224, + 0.09620215743780136, + -0.008478718809783459, + 0.006803431548178196, + 0.10758908092975616, + 0.11289283633232117, + -0.04967539757490158, + 0.010937543585896492, + 0.025729572400450706, + -0.07992669194936752, + -0.0056824591010808945, + 0.0009298434015363455, + 0.06642495840787888, + -0.03509137034416199, + -0.04457233473658562, + -0.07083205133676529, + -0.03594651445746422, + 0.02653389610350132, + 0.0008925516740418971, + -0.012420409359037876, + 0.005293435882776976, + -0.02638481743633747, + 0.02413788065314293, + -0.01103853527456522, + -0.05432703346014023, + -0.02029717154800892, + 0.033901799470186234, + -0.03585446998476982, + -0.04473615437746048, + 0.0447571687400341, + -0.015987126156687737, + -0.04394574463367462, + -0.031662825495004654, + -0.07060183584690094, + -0.03959670290350914, + 0.0029995818622410297, + 0.09624969214200974, + -0.04336705058813095, + -0.06392908841371536, + -0.011875642463564873, + -0.06989310681819916, + -0.0035914499312639236, + 0.0013990894658491015, + -0.017550790682435036, + -0.027798425406217575, + 0.04688364639878273, + -0.07124773412942886, + 0.009856400080025196, + 0.021665086969733238, + -0.0015489617362618446, + 0.0655403882265091, + 0.034165382385253906, + 0.05979541689157486, + 0.022356165573000908, + 0.03530711308121681, + -0.08907722681760788, + 0.053545109927654266, + -0.08212189376354218, + 0.027812210842967033, + 0.11372234672307968, + -0.010124626569449902, + 0.021271493285894394, + 0.026295797899365425, + 0.08099005371332169, + 0.03740926831960678, + -0.057287055999040604, + 0.035045549273490906, + 0.004099908284842968, + -0.031480852514505386, + 0.007974077947437763, + -0.007116539403796196, + -0.03532879054546356, + -0.002753580454736948, + -0.02735314518213272, + 0.06661637127399445, + 0.04806630685925484, + -0.07335879653692245, + -0.010058145970106125, + -0.0785393938422203, + -0.04617587476968765, + 0.0672740489244461, + -0.03297891467809677, + -0.057104699313640594, + 0.004217877052724361, + -0.062197245657444, + -0.12299394607543945, + -2.5054572918792624e-33, + -0.02352047711610794, + 0.05553517863154411, + -0.02788587100803852, + 0.03551482781767845, + -0.10286008566617966, + 0.010058668442070484, + 0.02964734472334385, + 0.052566371858119965, + -0.021887242794036865, + -0.012913976795971394, + 0.0065440889447927475, + 0.04672260954976082, + 0.0004714842652902007, + -0.06976331770420074, + 0.06109350919723511, + 0.07884758710861206, + 0.0035087927244603634, + 0.0808163434267044, + -0.00011279181489953771, + -0.0015354736242443323, + 0.006011852063238621, + -0.02650202438235283, + 0.023524954915046692, + 0.08148236572742462, + -0.012789476662874222, + 0.005695837549865246, + 0.019842298701405525, + -0.03479379042983055, + -0.12142875045537949, + -0.029785647988319397, + -0.015502222813665867, + 0.0007681366405449808, + 0.06492232531309128, + 0.09315437078475952, + -0.03680914267897606, + -0.041398074477910995, + -0.00751978624612093, + -0.019481470808386803, + 0.05036621168255806, + 0.02885926514863968, + 0.13501101732254028, + 0.011594345793128014, + 0.0932813510298729, + 0.08083856850862503, + -0.0024603998754173517, + 0.019634699448943138, + -0.1495443433523178, + -0.026044806465506554, + 0.05257084220647812, + 0.05089249089360237, + 0.025295168161392212, + -0.005240128841251135, + -0.026301397010684013, + -0.0892733484506607, + -0.08186236768960953, + -0.08389096707105637, + 0.08791796118021011, + -0.04446355625987053, + 0.02022600546479225, + 0.06520998477935791, + -0.043451834470033646, + -0.033506326377391815, + -0.025505132973194122, + 0.018898747861385345, + 0.06204571947455406, + -0.030568063259124756, + 0.016385501250624657, + 0.003862524637952447, + -0.010676475241780281, + -0.042648471891880035, + 0.08787858486175537, + 0.052531056106090546, + 0.040287695825099945, + 0.017971625551581383, + 0.009549384005367756, + 0.020065154880285263, + 0.020718669518828392, + -0.006297560408711433, + -0.015318547375500202, + 0.006391455885022879, + -0.02227764017879963, + -0.003178458195179701, + -0.028482802212238312, + 0.06654434651136398, + -0.01714104413986206, + 0.12698957324028015, + -0.02803025208413601, + 0.010272701270878315, + -0.018932918086647987, + -0.0013325121253728867, + -0.022851772606372833, + 0.10801403224468231, + 0.060307588428258896, + 0.030352404341101646, + 0.017290323972702026, + -2.162699708208038e-08, + -0.009663056582212448, + -0.020265158265829086, + 0.02123989351093769, + -0.023775385692715645, + 0.032887622714042664, + -0.017875157296657562, + -0.04817390441894531, + -0.056942641735076904, + -0.0014749609399586916, + -0.031693436205387115, + 0.017424670979380608, + -0.014831751585006714, + -0.046221181750297546, + -0.06024797633290291, + 0.10076131671667099, + 0.046130381524562836, + -0.012040453962981701, + 0.055620379745960236, + -0.03684920445084572, + -0.048103492707014084, + 0.04373982921242714, + 0.09526827186346054, + 0.039447858929634094, + 0.019414657726883888, + -0.031528033316135406, + -0.0061991652473807335, + -0.06986489146947861, + 0.054429855197668076, + -0.018200842663645744, + 0.016380630433559418, + 0.11452961713075638, + 0.014499655924737453, + 0.0007061943761073053, + -0.01908622682094574, + -0.08170543611049652, + 0.00814723689109087, + 0.004457170609384775, + -0.059430621564388275, + -0.010964738205075264, + 0.141696035861969, + -0.03585398197174072, + -0.03235459700226784, + -0.03375466912984848, + -0.003908371552824974, + -0.056717246770858765, + 0.034991804510354996, + 0.02211098000407219, + -0.03541692718863487, + -0.0458797924220562, + -0.11703358590602875, + -0.03194326162338257, + 0.02143518440425396, + 0.03356628119945526, + 0.06222847104072571, + 0.011368516832590103, + -0.0270082987844944, + -0.04110364615917206, + 0.07842136919498444, + -0.028569137677550316, + 0.08223829418420792, + 0.12478823214769363, + 0.06115765869617462, + -0.022205660119652748, + 0.0785561203956604 + ], + "hand-arrow-down-bold||*new*,take,receive,remove,withdraw,emoji": [ + -0.02071206644177437, + -0.017673393711447716, + 0.01515752263367176, + 0.041322171688079834, + 0.01895247958600521, + -0.05167112872004509, + 0.13049742579460144, + -0.07635776698589325, + 0.10733575373888016, + -0.015058417804539204, + 0.05111191049218178, + 0.05821628123521805, + 0.03581392019987106, + -0.010246115736663342, + -0.006211119703948498, + 0.04336532950401306, + 0.00805676355957985, + 0.03903340548276901, + -0.00023726718791294843, + 0.001680296380072832, + 0.015332438983023167, + -0.012332879938185215, + -0.022057658061385155, + 0.012533911503851414, + 0.029829101637005806, + 0.01345182117074728, + -0.05850563943386078, + 0.019144969061017036, + 0.02277318574488163, + -0.07928851246833801, + -0.0445295125246048, + -0.00616869842633605, + 0.10933560878038406, + 0.067851722240448, + -0.07358299940824509, + 0.028667576611042023, + -0.00886579230427742, + 0.02597709931433201, + 0.0014731729170307517, + 0.049039993435144424, + -0.006160962861031294, + -0.083947092294693, + -0.019415773451328278, + -0.0019805727060884237, + 0.020181799307465553, + 0.014886732213199139, + -0.08962846547365189, + -0.039290547370910645, + 0.02513529732823372, + 0.06735651195049286, + -0.02265092544257641, + -0.11153067648410797, + -0.0900445431470871, + 0.03875482827425003, + 0.058047711849212646, + -0.046663086861371994, + -0.004816059954464436, + -0.09539306163787842, + 0.0628412738442421, + -0.009685313329100609, + 0.004084086511284113, + 0.026348231360316277, + 0.019893605262041092, + 0.043665435165166855, + 0.004942994564771652, + 0.009157104417681694, + 0.014166354201734066, + -0.018811287358403206, + -0.03382876515388489, + 0.08191347867250443, + 0.02474733628332615, + -0.052220478653907776, + -0.0709528997540474, + -0.03747473284602165, + -0.0642198994755745, + -0.007486766669899225, + 0.03509470075368881, + 0.005379364360123873, + -0.0035842175129801035, + 0.03330916166305542, + -0.023593662306666374, + -0.03181705251336098, + -0.05566442385315895, + 0.04746854677796364, + 0.02706388384103775, + 0.09392763674259186, + -0.07629826664924622, + -0.04816771671175957, + -0.03233189508318901, + -0.030235672369599342, + -0.12185589224100113, + -0.016961174085736275, + 0.05954612046480179, + 0.009907636791467667, + -0.04575087130069733, + -0.04130496084690094, + 0.06644873321056366, + -0.05538132041692734, + -0.12814632058143616, + 0.11625687032938004, + 0.0018276670016348362, + 0.045998744666576385, + 0.0049545797519385815, + -0.07026948779821396, + -0.03386448696255684, + -0.03252742439508438, + 0.026921337470412254, + -0.07721461355686188, + -0.014096243306994438, + 0.011412578634917736, + -0.04650440067052841, + -0.07193155586719513, + -0.02239912562072277, + -0.040571603924036026, + -0.03185542672872543, + 0.03661298751831055, + -0.10393461585044861, + 0.00948110967874527, + 0.12330005317926407, + 0.09286530315876007, + 0.04422568902373314, + -0.0476447232067585, + -0.11765531450510025, + -0.04751427844166756, + -0.044799234718084335, + 0.022311288863420486, + 0.005364811513572931, + -2.706565824534732e-33, + 0.07140155136585236, + 0.04904789477586746, + -0.00681413896381855, + 0.05561298504471779, + 0.03167533501982689, + 0.005947469267994165, + -0.09437600523233414, + -0.04081186652183533, + -0.111563540995121, + -0.013875626027584076, + 0.07380624115467072, + 0.013913650065660477, + -0.027902837842702866, + 0.10042192041873932, + 0.03531639277935028, + -0.08787807077169418, + 0.07980752736330032, + -0.039727695286273956, + 0.01639421656727791, + -0.06240709871053696, + 0.013024833984673023, + 0.040185797959566116, + -0.0431940034031868, + 0.02437121979892254, + -0.047669705003499985, + 0.013867874629795551, + 0.010703551582992077, + -0.0005226678913459182, + -0.034011319279670715, + 0.04399123415350914, + -0.018765797838568687, + 0.011312659829854965, + -0.019033901393413544, + -0.02945505827665329, + -0.033650126308202744, + 0.032125700265169144, + -0.048988811671733856, + 0.01202868390828371, + 0.0012092478573322296, + -0.024380629882216454, + -0.0521383136510849, + -0.048119399696588516, + -0.146328404545784, + 0.015875259414315224, + 0.014624238014221191, + 0.06904840469360352, + -0.03724067658185959, + -0.10050971806049347, + -0.0020784924272447824, + -0.029863353818655014, + -0.020887386053800583, + -0.02190539985895157, + -0.007724515628069639, + 0.004424235317856073, + -0.014239098876714706, + -0.06950712203979492, + -0.03072289563715458, + 0.07559902220964432, + -0.021335389465093613, + -0.00044514110777527094, + -0.008870402351021767, + 0.05183092877268791, + 0.07810904085636139, + 0.06560739874839783, + -0.015459121204912663, + 0.03749964013695717, + -0.12067653238773346, + -0.001033262349665165, + 0.014649840071797371, + 0.0047076730988919735, + -0.05286535248160362, + 0.04724055156111717, + 0.03942139446735382, + 0.03991721197962761, + -0.02703133597970009, + -0.02721242420375347, + 0.014954406768083572, + -0.06942123919725418, + 0.10700817406177521, + -0.02730470709502697, + -0.06214297562837601, + -0.005405577830970287, + -0.050786424428224564, + 0.0354621484875679, + 0.11455444246530533, + -0.02012566290795803, + 0.007210473529994488, + -0.11581087112426758, + -0.02111915685236454, + 0.04137471318244934, + -0.11140552908182144, + -0.02528950944542885, + 0.019187089055776596, + -0.029186438769102097, + -0.016462981700897217, + 5.187933196403815e-34, + 0.022599810734391212, + 0.06268201023340225, + -0.049913447350263596, + 0.03774644806981087, + -0.09871659427881241, + 0.02246430143713951, + 0.07753974944353104, + 0.08115194737911224, + 0.049157727509737015, + 0.04193403571844101, + 0.009237837977707386, + 0.028580062091350555, + -0.008932770229876041, + -0.0668005719780922, + 0.07463671267032623, + 0.018427975475788116, + 0.061806920915842056, + 0.06532365828752518, + -0.03495952486991882, + 0.05712050944566727, + -0.000979309668764472, + -0.029205171391367912, + -0.03838313743472099, + 0.033747799694538116, + -0.01878352276980877, + 0.029063014313578606, + 0.0958426371216774, + 0.0248576533049345, + -0.04367830976843834, + -0.08039122074842453, + -0.04901985079050064, + -0.005083457566797733, + 0.0388183519244194, + 0.09686503559350967, + -0.06435311585664749, + -0.009967002086341381, + -0.022723253816366196, + 0.02302406169474125, + 0.013016678392887115, + 0.051644496619701385, + 0.02189462259411812, + -8.554489613743499e-05, + 0.059990473091602325, + 0.11093278974294662, + -0.01705024763941765, + 0.02320292219519615, + -0.10682976245880127, + -0.036755338311195374, + 0.044742900878190994, + 0.012498094700276852, + 0.049709342420101166, + -0.04438764601945877, + -0.07224057614803314, + -0.03719364479184151, + -0.012476759031414986, + 0.0008638218278065324, + 0.062433525919914246, + 0.03242487460374832, + -0.03430374711751938, + 0.00021906793699599802, + -0.03244975581765175, + -0.03571762144565582, + 0.002138469833880663, + 0.03532162681221962, + 0.048037055879831314, + -0.0570342019200325, + 0.02226601541042328, + 0.04576646536588669, + -0.01582280360162258, + -0.039065953344106674, + 0.09547707438468933, + 0.04550279676914215, + 0.0031677717342972755, + -0.0037643678952008486, + 0.048034731298685074, + -0.07517202198505402, + -0.01061338372528553, + -0.0021610348485410213, + -0.03634355589747429, + -0.018001288175582886, + -0.04304419457912445, + -0.0017281604232266545, + -0.022715231403708458, + 0.02518574707210064, + -0.02980366349220276, + 0.042907118797302246, + -0.041645362973213196, + 0.053458321839571, + -0.004628884606063366, + -0.002440490061417222, + -0.030715428292751312, + 0.0814080610871315, + 0.07319892942905426, + 0.01615089736878872, + -0.007802525069564581, + -2.4427889044886797e-08, + -0.028952760621905327, + -0.05662670359015465, + 0.024977240711450577, + -0.014968980103731155, + 0.035253532230854034, + 0.004271076526492834, + -0.07986442744731903, + -0.04560882970690727, + 0.004023188259452581, + -0.09608849883079529, + 0.07590675354003906, + 0.11634624749422073, + -0.04991088807582855, + -0.034961502999067307, + 0.02302810549736023, + 0.025792140513658524, + -0.010796346701681614, + 0.03380724787712097, + 0.009034696966409683, + -0.07131277024745941, + -0.0004630553594324738, + 0.058774638921022415, + 0.06232645362615585, + 0.039332322776317596, + -0.04755529388785362, + -0.04103361442685127, + -0.04528586193919182, + 0.05039501190185547, + -0.01296018436551094, + -0.020104875788092613, + 0.05098931863903999, + 0.02613932266831398, + -0.0053847189992666245, + -0.03426498919725418, + -0.08592882752418518, + 0.009453480131924152, + -0.029493175446987152, + -0.0031642739195376635, + 0.025587134063243866, + 0.08225812017917633, + 0.0588463731110096, + -0.03902869671583176, + -0.06390267610549927, + -0.002793763531371951, + -0.16088418662548065, + 0.035944994539022446, + 0.06309863924980164, + -0.06562694162130356, + -0.05532074347138405, + -0.09063640236854553, + 0.03684700280427933, + -0.020174840465188026, + 0.03491101786494255, + 0.07680357992649078, + 0.030806802213191986, + 0.03408727049827576, + 0.03732702136039734, + 0.027147138491272926, + -0.002461799420416355, + 0.011093974113464355, + 0.11256175488233566, + 0.0509798489511013, + -0.018199199810624123, + 0.02793521247804165 + ], + "hand-arrow-up-bold||*new*,give,insert,deposit,donation,emoji": [ + -0.03940994292497635, + -0.038408368825912476, + -0.007226922549307346, + 0.05717020854353905, + 0.009139543399214745, + -0.03652236610651016, + 0.09371325373649597, + -0.04655396565794945, + 0.07711057364940643, + -0.00310221454128623, + 0.03906191512942314, + 0.02187540754675865, + 0.02596817910671234, + -0.013057753443717957, + 0.004832813981920481, + 0.04715464264154434, + -0.006228435784578323, + 0.015238086692988873, + -0.015271894633769989, + 0.0063715907745063305, + 0.00782571267336607, + -0.0364239364862442, + 0.0132835628464818, + 0.00020504812709987164, + 0.05374494567513466, + -0.023751726374030113, + -0.06428294628858566, + 0.0014190584188327193, + 0.03282354772090912, + -0.060523975640535355, + -0.03433668240904808, + -0.019860388711094856, + 0.0892144963145256, + 0.03579797223210335, + 0.0012865080498158932, + 0.07274438440799713, + -0.005321755073964596, + 0.02629699930548668, + -0.025332855060696602, + 0.04676030948758125, + -0.03602128475904465, + -0.11288949847221375, + -0.010627783834934235, + 0.02563069388270378, + 0.021647540852427483, + 0.0073182047344744205, + -0.036769721657037735, + 0.014599756337702274, + 0.03779861703515053, + 0.06641563028097153, + 2.210076490882784e-05, + -0.14087963104248047, + -0.07922732084989548, + 0.01495357882231474, + 0.014839000068604946, + -0.03245832398533821, + -0.002689835149794817, + -0.12599590420722961, + 0.037391722202301025, + -0.026541192084550858, + 0.024881431832909584, + 0.07175932079553604, + 0.048600681126117706, + 0.04375559464097023, + 0.052791669964790344, + -0.03223312273621559, + -0.0353524312376976, + 0.04121997579932213, + -0.07046101242303848, + 0.06633805483579636, + 0.07403454184532166, + -0.03623417392373085, + -0.07409580051898956, + -0.029955539852380753, + -0.036512184888124466, + 0.002228460041806102, + 0.0036126775667071342, + 0.029826005920767784, + 0.023210804909467697, + 0.006244531832635403, + -0.04886690527200699, + -0.021502859890460968, + -0.04688870161771774, + 0.02612518146634102, + 0.02215142920613289, + 0.13079972565174103, + -0.05327794700860977, + -0.04683876410126686, + -0.03528300300240517, + -0.03441380709409714, + -0.08985666185617447, + 0.009027755819261074, + 0.03034617379307747, + -0.009153815917670727, + -0.04105575755238533, + -0.03389420732855797, + 0.0838407501578331, + -0.0399540476500988, + -0.12847962975502014, + 0.10025758296251297, + 0.029531510546803474, + 0.06405548006296158, + 0.019299812614917755, + -0.05745137482881546, + 0.023059111088514328, + -0.005404536612331867, + 0.012790070846676826, + -0.05509668216109276, + 0.020447606220841408, + -0.007988338358700275, + -0.04922504350543022, + -0.06595595926046371, + -0.011923848651349545, + -0.05961766839027405, + -0.05284159630537033, + 0.0018517985008656979, + -0.1533152163028717, + -0.020566336810588837, + 0.12276163697242737, + 0.06466972827911377, + 0.0689588412642479, + -0.04403313249349594, + -0.13304004073143005, + -0.09814372658729553, + -0.07835981249809265, + -0.007066764868795872, + -0.004186774604022503, + -2.836293013749495e-33, + 0.06834843754768372, + 0.06865954399108887, + 0.007378351408988237, + 0.05664646252989769, + 0.02913392148911953, + 0.004776173271238804, + -0.09064526110887527, + -0.009586343541741371, + -0.17192646861076355, + 0.017472313717007637, + 0.07377266138792038, + 0.02184661105275154, + -0.019302695989608765, + 0.12290628254413605, + -0.02099902741611004, + -0.06877892464399338, + 0.053043756633996964, + -0.014667803421616554, + 0.02132287621498108, + -0.03180691599845886, + 0.019232099875807762, + 0.012287628836929798, + -0.02989841252565384, + 0.0011245012283325195, + -0.007690987549722195, + 0.000823836075142026, + 0.004945438355207443, + 0.00612466037273407, + -0.013349122367799282, + 0.03321613743901253, + 0.0038627656176686287, + 0.004149699583649635, + 0.040062014013528824, + -0.0514332577586174, + -0.07158191502094269, + 0.011959809809923172, + -0.032437391579151154, + -0.0285546462982893, + 0.01069127582013607, + -0.021837275475263596, + -0.01910327933728695, + -0.05241234600543976, + -0.08836505562067032, + 0.03269563242793083, + -0.005414467770606279, + 0.10192228853702545, + -0.01729748025536537, + -0.08170347660779953, + 0.0011134386295452714, + -0.020012788474559784, + -0.02915721945464611, + -0.0038826223462820053, + -0.05470156669616699, + 0.01672140136361122, + -0.03761876001954079, + -0.060917697846889496, + -0.03880120441317558, + 0.058593038469552994, + -0.03629125654697418, + -0.07266896218061447, + -0.008139575831592083, + 0.02690933085978031, + 0.062149424105882645, + 0.0719926580786705, + -0.05487598106265068, + 0.0011984424199908972, + -0.07387491315603256, + 0.017893129959702492, + 0.07631833851337433, + 0.03979852795600891, + -0.04424983263015747, + 0.06436841934919357, + -0.004490478429943323, + 0.08506276458501816, + -0.05297939479351044, + -0.052718859165906906, + 0.0033258304465562105, + -0.0796755850315094, + 0.08217479288578033, + -0.018598461523652077, + -0.06766422837972641, + -0.05218890309333801, + -0.05307181179523468, + 0.03225363418459892, + 0.0787074863910675, + -0.013889659196138382, + 0.005703189875930548, + -0.08422224223613739, + -0.010491186752915382, + 0.018269669264554977, + -0.07907571643590927, + -0.01644825004041195, + 0.0324406772851944, + -0.08309164643287659, + -0.043252356350421906, + 3.463600533182601e-34, + 0.02770940214395523, + 0.014217664487659931, + -0.044371556490659714, + 0.04632183909416199, + -0.06267597526311874, + 0.040020570158958435, + 0.06820721924304962, + 0.023790132254362106, + 0.08458354324102402, + 0.0662757158279419, + -0.03329230472445488, + 0.06383328139781952, + 0.015529378317296505, + -0.050033751875162125, + 0.028650769963860512, + 0.02635827101767063, + 0.032470934092998505, + 0.08188813924789429, + -0.0006473202956840396, + 0.039989110082387924, + 0.018267309293150902, + -0.022516746073961258, + -0.02032911591231823, + 0.04132518917322159, + 0.005364647135138512, + 0.0252385251224041, + 0.04989483952522278, + 0.01772923953831196, + -0.06273504346609116, + -0.05938902124762535, + -0.007791704498231411, + -0.013504567556083202, + 0.013884307816624641, + 0.08098698407411575, + -0.04194159060716629, + -0.03387898951768875, + 0.04741152003407478, + -0.03915232792496681, + 0.04785660654306412, + 0.059192534536123276, + 0.05886531248688698, + 0.002462594071403146, + 0.03359267860651016, + 0.10151049494743347, + 0.0014154621167108417, + -0.011617195792496204, + -0.12246774137020111, + -0.03772866353392601, + 0.0868300050497055, + 0.010927224531769753, + 0.030864225700497627, + -0.080812968313694, + -0.06340476125478745, + -0.026727406308054924, + -0.00272156298160553, + 0.04177997633814812, + 0.044370200484991074, + 0.03077700547873974, + -0.002746404381468892, + -0.002796872751787305, + -0.06971780955791473, + -0.026452001184225082, + 0.022824248299002647, + 0.045995332300662994, + 0.024829493835568428, + -0.07002253830432892, + 0.06744956970214844, + 0.02459549903869629, + -0.04212777316570282, + -0.03860795497894287, + 0.08691257238388062, + 0.061939358711242676, + -0.016132885590195656, + 0.015362727455794811, + 0.013119115494191647, + -0.03146207705140114, + 0.04916651174426079, + 0.005844929721206427, + -0.018494613468647003, + -0.04774083197116852, + -0.04583455249667168, + 0.0035266319755464792, + -0.009790881536900997, + 0.04456552118062973, + 0.0009042120655067265, + 0.02026990056037903, + 0.032468199729919434, + 0.051749907433986664, + -0.02212466485798359, + -0.014464234933257103, + -0.0629924088716507, + 0.07089409232139587, + 0.044107209891080856, + 0.01983337476849556, + -0.03031150996685028, + -2.39020412351465e-08, + -0.011867006309330463, + -0.01702841743826866, + -0.009214784950017929, + -0.04144920036196709, + 0.05441223829984665, + -0.050240591168403625, + -0.056054405868053436, + -0.034213028848171234, + 0.0038512484170496464, + -0.09955871105194092, + 0.06962992250919342, + 0.10255646705627441, + -0.08491615206003189, + -0.05823767930269241, + 0.046689473092556, + 0.018279777839779854, + -0.029129555448889732, + -0.0024185695219784975, + -0.02751394733786583, + -0.09562867134809494, + 0.028225144371390343, + 0.09959899634122849, + 0.040469709783792496, + 0.018230976536870003, + -0.07002668082714081, + -0.019569577649235725, + -0.028307782486081123, + 0.07203355431556702, + -0.0275258868932724, + 0.008790874853730202, + 0.05376351997256279, + 0.011761946603655815, + -0.030760306864976883, + -0.03710341826081276, + -0.06668561697006226, + 0.029748056083917618, + -0.013463764451444149, + -0.015111448243260384, + -0.009346405044198036, + 0.07518625259399414, + 0.06183722987771034, + -0.03562039136886597, + -0.03393898159265518, + -0.04582427442073822, + -0.13964468240737915, + 0.03749190270900726, + 0.030170483514666557, + -0.04073416814208031, + -0.06829331815242767, + -0.1342121958732605, + 0.010482609272003174, + -0.02758367918431759, + 0.0615912526845932, + 0.04685787856578827, + 0.04480675235390663, + 0.039179425686597824, + 0.03929852321743965, + 0.060803331434726715, + 0.07172343879938126, + -0.0036980779841542244, + 0.10916557908058167, + 0.04654686525464058, + 0.019455306231975555, + 0.016802161931991577 + ], + "hand-coins-bold||donation,payment,money,paying,purchase": [ + -0.04728458449244499, + 0.0563049390912056, + -0.005618434399366379, + -0.010402549989521503, + -0.003353393403813243, + -0.009162547066807747, + 0.1508263498544693, + 6.234423199202865e-05, + 0.03265688568353653, + -0.004793963395059109, + 0.04927148297429085, + -0.05538933351635933, + 0.007584587670862675, + -0.027487557381391525, + 0.005194544326514006, + -0.011045210994780064, + 0.010421311482787132, + 0.0047599258832633495, + 0.017344817519187927, + 0.07940702885389328, + -0.0027272491715848446, + -0.04445173963904381, + -0.011479233391582966, + 0.019032564014196396, + 0.06056256592273712, + 0.024973133578896523, + -0.008538147434592247, + -0.008700425736606121, + 0.044556643813848495, + -0.07088754326105118, + 0.0006484625628218055, + 0.053711459040641785, + 0.0943666324019432, + -0.040726207196712494, + 0.002727333689108491, + -0.00741621246561408, + 0.013538564555346966, + 0.009693636558949947, + -0.0522206574678421, + 0.03029213286936283, + -0.009624645113945007, + -0.12001663446426392, + -0.004421655088663101, + 0.01519040111452341, + -0.007048675790429115, + 0.042742807418107986, + 0.023774225264787674, + 0.08772557973861694, + 0.025970706716179848, + 0.0070746480487287045, + 0.09810522943735123, + -0.09627499431371689, + -0.05919874832034111, + 0.025710364803671837, + 0.008564313873648643, + 0.0075772046111524105, + -0.024256374686956406, + -0.056291092187166214, + 0.012564243748784065, + -0.03544670715928078, + 0.06223990395665169, + 0.07438953220844269, + -0.06503703445196152, + 0.034251969307661057, + 0.03502807766199112, + 0.023483656346797943, + -0.00636788597330451, + 0.0019060499034821987, + -0.09668467938899994, + 0.006753085646778345, + 0.10404463857412338, + -0.002265844028443098, + 0.023411301895976067, + -0.09173685312271118, + -0.025704653933644295, + 0.01071370579302311, + 0.0698072537779808, + -0.0759359672665596, + -0.058768536895513535, + -0.056008584797382355, + -0.10457748174667358, + -0.02342899702489376, + -0.02100987359881401, + -0.028898200020194054, + -0.0007482802029699087, + 0.07403600960969925, + -0.04381963238120079, + -0.001780281774699688, + 0.014569456689059734, + -0.06028677523136139, + -0.10914409905672073, + 0.003984580747783184, + -0.004170047119259834, + -0.09176859259605408, + 0.005545600783079863, + 0.0336432121694088, + 0.06806216388940811, + -0.019331714138388634, + -0.02029075287282467, + 0.08955875784158707, + 0.08836572617292404, + 0.05773349478840828, + 0.049217961728572845, + -0.056018467992544174, + 0.07013148069381714, + 0.020294765010476112, + -0.07352934777736664, + -0.022144952788949013, + 0.01846703700721264, + 0.022996798157691956, + -0.05413096770644188, + -0.03751131147146225, + 0.01123212929815054, + -0.03557875007390976, + -0.03227187693119049, + 0.015775803476572037, + -0.14073233306407928, + -0.021718144416809082, + 0.09823974221944809, + 0.006380932405591011, + 0.06931190937757492, + 0.053989216685295105, + -0.09917629510164261, + -0.12400240451097488, + -0.06680698692798615, + -0.011609101668000221, + 0.06967587769031525, + -4.4506093239673274e-33, + -0.017454899847507477, + 0.021210510283708572, + -0.012739293277263641, + 0.022854706272482872, + 0.008522785268723965, + 0.030123159289360046, + 0.009844212792813778, + -0.023737896233797073, + -0.11033976823091507, + 0.05276627466082573, + 0.08771506696939468, + 0.014089848846197128, + 0.07391808927059174, + 0.13870665431022644, + -0.048183899372816086, + -0.05091862007975578, + -0.02168160118162632, + -0.024834467098116875, + 0.04310005530714989, + 0.025242086499929428, + 0.002675170311704278, + 0.024028845131397247, + -0.02130887657403946, + 0.06075574457645416, + 0.02791954204440117, + -0.037706006318330765, + -0.028643907979130745, + 0.012125440873205662, + 0.10532014816999435, + 0.005024629179388285, + 0.05221322178840637, + 0.018927715718746185, + 0.056068237870931625, + -0.03658842295408249, + -0.08065831661224365, + 0.012120498344302177, + 0.011540163308382034, + -0.05780744180083275, + 0.06065382435917854, + -0.10725890845060349, + -0.035677120089530945, + -0.06431563943624496, + -0.08419743180274963, + -0.011804664507508278, + -0.0762028768658638, + 0.11970799416303635, + 0.01706201769411564, + -0.03921206295490265, + -0.0029165823943912983, + -0.020137691870331764, + -0.04714536294341087, + -0.029275739565491676, + -0.05665924400091171, + -0.006099684629589319, + -0.002036286983639002, + -0.07938368618488312, + -0.02434702403843403, + 0.05331945791840553, + -0.08610474318265915, + -0.07517465949058533, + 0.03988606110215187, + 0.023872284218668938, + 0.00046546594239771366, + -0.0011309083783999085, + -0.08066170662641525, + 0.08723749220371246, + -0.054607540369033813, + -0.006606512703001499, + 0.05202729254961014, + 0.04469860717654228, + -0.06937664747238159, + 0.09608706086874008, + -0.004863299895077944, + 0.0867549479007721, + 0.04825515300035477, + -0.01506292074918747, + 0.05615243315696716, + 0.01886172406375408, + 0.06220386177301407, + 0.051491063088178635, + -0.07295814901590347, + 0.036504197865724564, + 0.0013047531247138977, + 0.10323508828878403, + 0.06199037283658981, + 0.07207291573286057, + -0.015308867208659649, + -0.11563235521316528, + -0.03623155131936073, + -0.055973902344703674, + -0.02055816724896431, + -0.06713548302650452, + 0.01789158210158348, + -0.08835437148809433, + -0.0595460869371891, + 1.4409108733333826e-33, + -0.03387041389942169, + 0.03678938001394272, + 0.016286179423332214, + 0.058389581739902496, + -0.006510378792881966, + 0.048460703343153, + -0.014005163684487343, + -0.004440234042704105, + 0.029398636892437935, + 0.009039790369570255, + -0.05464021861553192, + 0.0339537188410759, + -0.044833868741989136, + -0.019972076639533043, + 0.03387700393795967, + -0.06884478777647018, + 0.0009109444799833, + 0.04669757932424545, + 0.035980574786663055, + 0.010046586394309998, + -0.045839011669158936, + 0.06200204789638519, + 0.013830280862748623, + -0.017418699339032173, + -0.014576015062630177, + -0.019051479175686836, + -0.024211671203374863, + -0.021575717255473137, + -0.01297307014465332, + 0.03770207241177559, + -0.014914220198988914, + -0.011764894239604473, + 0.011726351454854012, + 0.007547618821263313, + -0.06339443475008011, + -0.0101358937099576, + 0.0434480756521225, + 0.03432152420282364, + 0.0573502816259861, + 0.010802219621837139, + -0.0027688404079526663, + -0.08682775497436523, + 0.05861778184771538, + 0.041978128254413605, + -0.02527952380478382, + -0.09776075929403305, + -0.11072175204753876, + -0.039800696074962616, + 0.051089491695165634, + 0.03180011734366417, + -0.02193550579249859, + -0.015636824071407318, + -0.041968151926994324, + 0.00749426893889904, + -0.08429021388292313, + 0.08139794319868088, + 0.04573781415820122, + -0.06970265507698059, + 0.10240144282579422, + 0.014986932277679443, + -0.06217614561319351, + 0.013438447378575802, + 0.01779322698712349, + 0.07610850036144257, + -0.002143972320482135, + -0.016832957044243813, + 0.039565760642290115, + 0.020796701312065125, + 0.036625687032938004, + -0.007000333163887262, + -0.004626816604286432, + 0.0413551852107048, + 0.04963819682598114, + -0.036534421145915985, + 0.03913018852472305, + 0.03856143727898598, + -0.0060181948356330395, + 0.03717653080821037, + 0.07891255617141724, + -0.019412951543927193, + -0.007388809230178595, + -0.034236159175634384, + 0.05133403465151787, + 0.06979363411664963, + 0.009592276066541672, + -0.03294293209910393, + -0.005128373857587576, + -0.03565674275159836, + -0.04546612873673439, + -0.004920863080769777, + -0.059446170926094055, + 0.0728173702955246, + 0.07957316935062408, + 0.04402746632695198, + 0.008608833886682987, + -2.1874972944146975e-08, + 0.04253949224948883, + -0.010884922929108143, + 0.03395654261112213, + -0.05003591626882553, + 0.05385870113968849, + 0.03332136943936348, + -0.035900939255952835, + -0.05755370482802391, + -0.03029494546353817, + 0.03475815802812576, + -0.02432793378829956, + 0.03955833986401558, + -0.07287492603063583, + -0.10505406558513641, + -0.03656794875860214, + 0.02117696776986122, + -0.032444871962070465, + -0.03184664249420166, + -0.08095090836286545, + -0.0576915442943573, + 0.02539415843784809, + 0.04685857519507408, + 0.04683379828929901, + -0.008616598322987556, + -0.0016777438577264547, + -0.004748021252453327, + 0.03789718076586723, + 0.09253393113613129, + 0.0007288946653716266, + 0.03290361166000366, + 0.021490242332220078, + 0.0783582553267479, + -0.0429241806268692, + -0.04191259667277336, + -0.011197268962860107, + -0.04899653419852257, + -0.06101952865719795, + 0.023900682106614113, + 0.010714254342019558, + 0.08989829570055008, + -0.020191391929984093, + -0.06922933459281921, + -0.10634879767894745, + -0.009882445447146893, + 0.024213433265686035, + 0.013829964213073254, + -0.05076373368501663, + -0.061087049543857574, + -0.05196124315261841, + -0.1358073502779007, + -0.02531290426850319, + 0.0016832988476380706, + 0.06730207055807114, + 0.06084982305765152, + -0.018060659989714622, + 0.009768295101821423, + 0.0320320799946785, + 0.061413489282131195, + 0.08324252814054489, + -0.001260348130017519, + 0.07207630574703217, + -0.05624031275510788, + 0.024534720927476883, + -0.007409350946545601 + ], + "hand-deposit-bold||*new*,give,insert,donation,atm,emoji": [ + -0.027863938361406326, + -0.004958342295140028, + 0.021023757755756378, + 0.03631046786904335, + 0.003827844513580203, + -0.030453303828835487, + 0.13439711928367615, + -0.06104088947176933, + 0.07612620294094086, + -0.03374692425131798, + 0.026129117235541344, + -0.01347369235008955, + 0.021164895966649055, + 0.0009681474766694009, + -0.011933282017707825, + 0.009232213720679283, + -0.001290748594328761, + -0.019334271550178528, + -0.018874749541282654, + 0.0679284855723381, + 0.010376784019172192, + -0.02160084992647171, + 0.012458423152565956, + -0.03241223469376564, + 0.07465698570013046, + -0.006436899770051241, + -0.07850369065999985, + -0.015439790673553944, + 0.050973232835531235, + -0.07974615693092346, + -0.011926415376365185, + 0.021787071600556374, + 0.08787096291780472, + 0.0017879388760775328, + 0.06473920494318008, + 0.07988925278186798, + -0.05022171884775162, + 0.01207437738776207, + -0.01338273100554943, + 0.025439878925681114, + -0.046702075749635696, + -0.13341514766216278, + 0.01807919517159462, + 0.04567452147603035, + 0.009921848773956299, + 0.018016941845417023, + 0.0046844687312841415, + 0.04289272055029869, + 0.030316965654492378, + 0.03386567905545235, + 0.025449048727750778, + -0.15007318556308746, + -0.03496884927153587, + 0.011035501956939697, + -0.011666395701467991, + -0.05777396634221077, + 0.0336129292845726, + -0.08406834304332733, + -0.018919186666607857, + -0.023199817165732384, + 0.014607961289584637, + 0.08479009568691254, + 0.01357131078839302, + 0.013089596293866634, + 0.06582482159137726, + -0.044715072959661484, + -0.02565564215183258, + 0.039738189429044724, + -0.05660497024655342, + 0.051014494150877, + 0.07352172583341599, + -0.01763417012989521, + -0.07660616934299469, + -0.03059650957584381, + -0.04214689880609512, + 0.03125636279582977, + -0.01818181946873665, + 0.020547078922390938, + -0.006721366662532091, + -0.01606571488082409, + -0.041175492107868195, + -0.06556884944438934, + -0.016949035227298737, + -0.012272712774574757, + -0.014905932359397411, + 0.09719453752040863, + -0.061152923852205276, + -0.028330044820904732, + -0.027720380574464798, + -0.035756729543209076, + -0.0797615647315979, + 0.042188841849565506, + 0.01744983159005642, + -0.04146752506494522, + -0.03638539835810661, + -0.03381754830479622, + 0.04351547360420227, + 0.025422951206564903, + -0.10987745970487595, + 0.09102977812290192, + 0.07468368113040924, + 0.10905221104621887, + -0.018913403153419495, + -0.0328855998814106, + 0.05216569826006889, + 0.010142846032977104, + 0.007422614376991987, + -0.08084587007761002, + 0.03814222291111946, + -0.03234817460179329, + -0.05889046937227249, + -0.020888006314635277, + 0.006770482752472162, + -0.0551261268556118, + -0.05215170234441757, + -0.0019946559332311153, + -0.1490548700094223, + -0.004567974712699652, + 0.09554325044155121, + 0.06628595292568207, + 0.0397341363132, + -0.007738038897514343, + -0.12164372205734253, + -0.0961308553814888, + -0.06946711987257004, + -0.025108838453888893, + 0.019891848787665367, + -3.285434344177321e-33, + 0.02800079621374607, + 0.10230261087417603, + -0.0321941114962101, + 0.09890855103731155, + 0.02635062113404274, + 0.003838737029582262, + -0.06755834817886353, + 5.1341681682970375e-05, + -0.15418797731399536, + 0.009523536078631878, + 0.030423438176512718, + 0.0013735633110627532, + 0.016862306743860245, + 0.13402745127677917, + -0.029905207455158234, + -0.04386473074555397, + 0.042167358100414276, + -0.026352722197771072, + 0.05395538732409477, + -0.012164869345724583, + 0.017775360494852066, + 0.03222780302166939, + -0.01938091404736042, + 0.015894273295998573, + 0.009530927054584026, + -0.03215916454792023, + -0.012892480008304119, + -0.01687663048505783, + 0.05862836539745331, + 0.031503770500421524, + 0.01148461177945137, + -0.000604034576099366, + 0.04213456064462662, + -0.03807542473077774, + -0.06792863458395004, + 0.001462399261072278, + -0.008851828053593636, + -0.01766779273748398, + -0.0029404903762042522, + -0.05726839229464531, + -0.022891240194439888, + -0.01839470863342285, + -0.08477717638015747, + 0.020960208028554916, + -0.02975134365260601, + 0.10997696965932846, + 0.0003448419156484306, + -0.04710526019334793, + -0.013255292549729347, + -0.03065209835767746, + -0.04018445312976837, + -0.005291096866130829, + -0.07713212072849274, + 0.04248172044754028, + -0.034837812185287476, + -0.08785330504179001, + -0.003782730083912611, + 0.013401460833847523, + -0.05216304212808609, + -0.07775448262691498, + 0.033667515963315964, + 0.04943303018808365, + 0.02932014688849449, + 0.04344400390982628, + -0.0592108853161335, + -0.017028138041496277, + -0.03203968703746796, + 0.008624983951449394, + 0.08887766301631927, + 0.06898576766252518, + -0.04533104971051216, + 0.06746086478233337, + 0.013988683000206947, + 0.09958968311548233, + -0.04285058751702309, + -0.04691684618592262, + 0.016426336020231247, + -0.020233552902936935, + 0.05154169350862503, + -0.007284690625965595, + -0.050370555371046066, + -0.05600086599588394, + -0.01906944438815117, + 0.04296507686376572, + 0.04941771179437637, + 0.004105483181774616, + 0.020499978214502335, + -0.11024942994117737, + -0.002071373164653778, + 0.00017824387759901583, + -0.09193378686904907, + -0.04533841088414192, + 0.040088996291160583, + -0.09766758233308792, + -0.05072065815329552, + 7.951296336576387e-34, + 0.030423400923609734, + -0.010704508051276207, + -0.01903456449508667, + 0.05909978225827217, + -0.044539403170347214, + 0.042690034955739975, + 0.06216035783290863, + 0.024874692782759666, + 0.08881248533725739, + 0.0675954818725586, + -0.06565793603658676, + 0.04394404590129852, + 0.0407881923019886, + -0.024506403133273125, + -0.008167288266122341, + -0.017056545242667198, + -0.002122308360412717, + 0.05205463618040085, + -0.008523009717464447, + 0.05614427477121353, + -0.0010993140749633312, + 0.01908520981669426, + 0.023780731484293938, + 0.07777974754571915, + 0.02276795543730259, + 0.0154115604236722, + 0.02397097833454609, + -0.024787241593003273, + -0.09442329406738281, + -0.02407359518110752, + -0.04854902997612953, + -0.003713314887136221, + 0.013887118548154831, + 0.06172122061252594, + -0.04507025331258774, + -0.0499453991651535, + 0.08030765503644943, + -0.0033436643425375223, + 0.01755080558359623, + 0.06336473673582077, + 0.05983169376850128, + 0.008754735812544823, + 0.0217265821993351, + 0.08737384527921677, + -0.01752447709441185, + -0.04923689365386963, + -0.15992313623428345, + -0.04061576724052429, + 0.07714980095624924, + 0.029922937974333763, + 0.03811696544289589, + -0.0819762572646141, + -0.0475640743970871, + -0.003023414872586727, + 0.025839369744062424, + 0.03964732214808464, + 0.03861262649297714, + -0.04400504007935524, + 0.011141587980091572, + 0.03994598612189293, + -0.05394100025296211, + -0.0015914163086563349, + 0.003416315419599414, + 0.026999570429325104, + 0.043301839381456375, + -0.0761265680193901, + 0.039995260536670685, + 0.05023995041847229, + -0.019347839057445526, + -0.037606317549943924, + 0.05684805288910866, + 0.03614658862352371, + -0.004571552388370037, + 0.04932943731546402, + 0.002552652033045888, + 0.030599841848015785, + 0.053746506571769714, + -0.02196570858359337, + -0.012518148869276047, + -0.02705938182771206, + -0.04562179744243622, + 0.005953328218311071, + -0.020681822672486305, + 0.054883163422346115, + 0.0534786619246006, + 0.022370778024196625, + 0.060517117381095886, + -0.015881216153502464, + -0.047750089317560196, + -0.02382938750088215, + -0.07297581434249878, + 0.0849786251783371, + 0.07403632253408432, + 0.03141723573207855, + -0.039535753428936005, + -2.391823450409447e-08, + -0.01110991183668375, + -0.018859559670090675, + 0.01549842581152916, + -0.022923199459910393, + 0.06448251008987427, + -0.0378827266395092, + -0.06005456671118736, + -0.04997572675347328, + 0.02060684747993946, + -0.056124936789274216, + 0.037852369248867035, + 0.05282854661345482, + -0.09304246306419373, + -0.0899660512804985, + -0.0003980957844760269, + -0.015909438952803612, + -0.04148698225617409, + -0.032689355313777924, + -0.0402691476047039, + -0.09296607226133347, + 0.05187160149216652, + 0.09803988039493561, + 0.04647262766957283, + -0.027958523482084274, + -0.0536654107272625, + -0.035183101892471313, + 0.0046159448102116585, + 0.06410830467939377, + -0.046725839376449585, + -0.011233081109821796, + 0.05393842235207558, + 0.02079097181558609, + -0.026038814336061478, + -0.04659075662493706, + -0.09469795227050781, + 0.03722319379448891, + 0.03047194518148899, + -0.018374275416135788, + -0.003953817766159773, + 0.09217892587184906, + 0.023578951135277748, + -0.03715372830629349, + -0.04143000394105911, + -0.0621248334646225, + -0.08811045438051224, + 0.0034915474243462086, + 0.013960433192551136, + -0.03162265941500664, + -0.04291291907429695, + -0.11377788335084915, + 0.01482169795781374, + -0.021628517657518387, + 0.07660084217786789, + 0.08818643540143967, + 0.08579463511705399, + 0.005755752325057983, + 0.014600479044020176, + 0.07766607403755188, + 0.10023233294487, + -0.011210853233933449, + 0.12398170679807663, + 0.03354774788022041, + 0.015183676965534687, + -0.006675550248473883 + ], + "hand-eye-bold||*updated*,emoji,hamsa,evil eye": [ + -0.014651237055659294, + -0.02137940004467964, + 0.01772117428481579, + -0.0335104875266552, + 0.01436897087842226, + -0.09645719826221466, + 0.10789290070533752, + -0.07041474431753159, + 0.047642387449741364, + 0.03287528082728386, + 0.032132621854543686, + -0.009564071893692017, + 0.032197292894124985, + -0.03170403465628624, + -0.04982290789484978, + 0.009478587657213211, + -0.0068680113181471825, + 0.009706309996545315, + -0.029858531430363655, + 0.05690937489271164, + -0.01098370086401701, + -0.017511125653982162, + 0.016918281093239784, + -0.019489679485559464, + -0.0178817268460989, + 0.06292203068733215, + -0.03775515779852867, + -0.0037809961941093206, + -0.0035798035096377134, + -0.08043286949396133, + -0.12642896175384521, + 0.023555053398013115, + 0.06511163711547852, + 0.03041885420680046, + -0.04027285799384117, + 0.030597394332289696, + 0.031809210777282715, + 0.013348952867090702, + -0.016628514975309372, + 0.042318761348724365, + -0.02854747697710991, + -0.024334970861673355, + -0.037221748381853104, + 0.03276228532195091, + 0.007653495762497187, + 0.021319005638360977, + -0.023520393297076225, + -0.036578185856342316, + -0.0323856920003891, + -0.00944681279361248, + -0.0690784901380539, + -0.14910930395126343, + -0.021668890491127968, + -0.011334498412907124, + 0.013247031718492508, + -0.056727971881628036, + -0.09145824611186981, + -0.051683466881513596, + 0.07798615097999573, + 0.03113085962831974, + -0.005950663238763809, + 0.020688621327280998, + 0.03913745656609535, + 0.02767176739871502, + -0.02603217028081417, + -0.06242857873439789, + 0.060092777013778687, + -0.03880227729678154, + -0.026538841426372528, + 0.027943648397922516, + 0.00961797870695591, + 0.0066306982189416885, + -0.04911692813038826, + -0.07996393740177155, + -0.16852036118507385, + 0.038052164018154144, + 0.09491881728172302, + -0.09615030139684677, + 0.0889434963464737, + -0.02972518838942051, + 0.006902819499373436, + -0.026344656944274902, + 0.020134510472416878, + -0.006234354339540005, + 0.05343236029148102, + 0.0720762386918068, + -0.10360796004533768, + -0.08388037234544754, + -0.01798374578356743, + 0.042298875749111176, + -0.07815161347389221, + -0.042371269315481186, + 0.05045189708471298, + -0.001973128644749522, + -0.04190928488969803, + -0.014238853938877583, + 0.05958377197384834, + -0.005384469870477915, + -0.14862416684627533, + 0.13341030478477478, + 0.008638408966362476, + 0.017253169789910316, + 0.05722292885184288, + -0.05603459104895592, + 0.026344045996665955, + -0.006496443413197994, + 0.02438100427389145, + -0.004350166767835617, + 0.009381276555359364, + 0.0024689948186278343, + -0.07164456695318222, + -0.05585290864109993, + -0.08431083709001541, + -0.11129646003246307, + -0.047265104949474335, + 0.005558414850383997, + -0.07450225204229355, + 0.005543029401451349, + 0.11421611905097961, + 0.028710776939988136, + 0.06882292032241821, + 0.00908060371875763, + 0.0055521526373922825, + 0.007143643219023943, + -0.01408711913973093, + -0.013284794054925442, + 0.002009368035942316, + -2.1923250659453905e-33, + 0.03966931253671646, + 0.06865015625953674, + 0.002432608976960182, + -0.008034284226596355, + 0.01585320383310318, + -0.02750663459300995, + -0.07157014310359955, + 0.01867099478840828, + -0.10321947932243347, + -0.01797819882631302, + 0.011528353206813335, + 0.0555826872587204, + -0.03686264157295227, + 0.1160411685705185, + 0.03297059237957001, + -0.01895163580775261, + 0.03629530221223831, + -0.030782511457800865, + -0.035493090748786926, + -0.03300156816840172, + -0.05399518460035324, + -0.0028610911685973406, + 0.023268800228834152, + -0.04702141880989075, + -0.043499816209077835, + -0.08011046797037125, + 0.07066254317760468, + 0.023857587948441505, + 0.005043274722993374, + 0.037383414804935455, + 0.026656579226255417, + 0.07067374885082245, + 0.05304976552724838, + -0.01631191559135914, + 0.011878610588610172, + 0.002674728399142623, + -0.06054803729057312, + -0.011177652515470982, + -0.02669929713010788, + 0.013600067235529423, + -0.013207804411649704, + -0.0005059303366579115, + -0.06914569437503815, + -0.051747165620326996, + 0.06887535005807877, + 0.10825273394584656, + -0.05019471049308777, + 0.0106998635455966, + 0.0001905464450828731, + -0.023248860612511635, + -0.004614258650690317, + 0.018842250108718872, + -0.03770541399717331, + 0.01710698753595352, + -0.024217892438173294, + -0.023342395201325417, + 0.031225554645061493, + 0.05636337399482727, + -0.048799119889736176, + -0.004213504493236542, + 0.0029716119170188904, + -0.008441999554634094, + 0.058600734919309616, + -0.0001556224888190627, + -0.003716269740834832, + 0.0010818603914231062, + -0.07546702772378922, + 0.04266746714711189, + 0.031249839812517166, + 0.007235944736748934, + -0.014005082659423351, + 0.060020867735147476, + 0.04600276052951813, + 0.0686420276761055, + -0.052103638648986816, + -0.0384480245411396, + 0.0005722568021155894, + 0.007670075166970491, + 0.019823025912046432, + 0.021046223118901253, + 0.000638035882730037, + 0.02213163673877716, + -0.0006184842786751688, + 0.021949412301182747, + 0.05072501674294472, + 0.020157121121883392, + 0.01684495061635971, + -0.0647079274058342, + -0.07012061029672623, + 0.03569794446229935, + 0.0032963501289486885, + -0.031446050852537155, + -0.01795371063053608, + -0.06500513106584549, + -0.08986390382051468, + -6.415355469351158e-34, + 0.0013535526813939214, + -0.02427634410560131, + -0.049834296107292175, + -0.009684933349490166, + -0.08169321715831757, + 0.014785106293857098, + 0.04109855741262436, + 0.08289668709039688, + 0.030892062932252884, + -0.020310403779149055, + 0.012334899045526981, + 0.00425735441967845, + -0.002142144599929452, + -0.0007461351924575865, + 0.01836959272623062, + -0.00511540099978447, + 0.013199415989220142, + 0.07059922069311142, + 0.0038277669809758663, + 0.0646519809961319, + 0.018611878156661987, + -0.04078841954469681, + -0.04452979937195778, + 0.036856722086668015, + 0.012977062724530697, + 0.019983304664492607, + 0.09093081951141357, + -0.007796336896717548, + -0.13859698176383972, + -0.030640214681625366, + -0.03434372320771217, + -0.030818482860922813, + 0.01193281915038824, + 0.050998058170080185, + 0.030049199238419533, + 0.011139437556266785, + -0.012557106092572212, + -0.11207088828086853, + 0.030365711078047752, + 0.031706180423498154, + 0.02756122127175331, + 0.044347137212753296, + 0.07475579530000687, + 0.052956145256757736, + 0.014868579804897308, + 0.03705701604485512, + -0.15199525654315948, + 0.03323805332183838, + -0.0018439695704728365, + 0.010574307292699814, + 0.01909119077026844, + -0.06636872887611389, + -0.021610289812088013, + 0.00847521610558033, + -0.013438859023153782, + -0.061701614409685135, + 0.004028843715786934, + 0.009087516926229, + -0.0204900112003088, + 0.043967243283987045, + -0.007264725863933563, + -0.026524093002080917, + -0.019490404054522514, + 0.03470767289400101, + 0.0336570106446743, + -0.01245971955358982, + 0.015478120185434818, + -0.0028067580424249172, + 0.06990239769220352, + -0.01789090223610401, + 0.09545154124498367, + 0.01904178224503994, + -0.10243372619152069, + 0.011948943138122559, + 0.015007629059255123, + -0.04752679914236069, + 0.08113522827625275, + 0.023522745817899704, + -0.011515678837895393, + 0.0026478562504053116, + -0.006042822729796171, + 0.0027916200924664736, + -0.014622991904616356, + 0.10762669146060944, + -0.031091095879673958, + 0.09618567675352097, + 0.05438638851046562, + 0.08012675493955612, + -0.021446267142891884, + 0.017173856496810913, + -0.06343501061201096, + 0.08698661625385284, + -0.007024767808616161, + 0.037135589867830276, + 0.011578558012843132, + -2.2168203273054132e-08, + 0.0007184992427937686, + -0.04600037261843681, + -0.03724253922700882, + -0.029499974101781845, + 0.050648387521505356, + -0.002577698789536953, + -0.09043314307928085, + -0.09184625744819641, + -0.07524989545345306, + -0.0608130544424057, + 0.052380118519067764, + 0.14326581358909607, + -0.018377196043729782, + -0.006292825099080801, + 0.021816283464431763, + -0.02171737141907215, + -0.011603393591940403, + 0.10140585899353027, + 0.0029873608145862818, + -0.07042224705219269, + 0.023235851898789406, + 0.07376398891210556, + 0.06334514170885086, + 0.001122166751883924, + 0.02791304886341095, + -0.02793457917869091, + -0.05641043931245804, + 0.02260456420481205, + -0.05685779079794884, + 0.01618289016187191, + 0.13988298177719116, + 0.039278749376535416, + -0.0018155176658183336, + -0.0802140086889267, + -0.1434093415737152, + 0.02223891392350197, + -0.05031493678689003, + 0.014090178534388542, + -0.0048300232738256454, + 0.08300036191940308, + 0.06736138463020325, + -0.004324985668063164, + 0.022383801639080048, + -0.019626257941126823, + -0.07915165275335312, + -0.037935372442007065, + 0.06108842045068741, + -0.06963936984539032, + -0.06740564107894897, + -0.1283332258462906, + -0.004254857078194618, + 0.01942504569888115, + 0.04981805011630058, + 0.07111842185258865, + -0.007201096508651972, + -0.08708775788545609, + 0.023572612553834915, + 0.08372966200113297, + 0.02918948605656624, + 0.040735453367233276, + 0.13938069343566895, + -0.01780473254621029, + -0.03584504500031471, + 0.023868804797530174 + ], + "hand-fist-bold||emoji,power,protest,blm": [ + -0.00627583172172308, + -0.009066623635590076, + 0.004984267521649599, + 0.0018732030875980854, + 0.06762176752090454, + -0.01588613912463188, + 0.10132532566785812, + -0.05004047229886055, + 0.10441984236240387, + -0.004746296443045139, + 0.04324611276388168, + 0.02326732687652111, + 0.08309327811002731, + -0.03543170168995857, + 0.03920451179146767, + 0.09050832688808441, + 0.039186086505651474, + -0.014858318492770195, + -0.06149611249566078, + 0.05064723640680313, + 0.01280293520539999, + 0.09878519922494888, + 0.04716077074408531, + 0.06330690532922745, + -0.07203222811222076, + 0.0005526978056877851, + -0.011520409025251865, + -0.00757585559040308, + 0.042934004217386246, + -0.031015928834676743, + -0.03538936376571655, + 0.023322945460677147, + 0.06817295402288437, + 0.03593911975622177, + 0.01604742370545864, + -0.0035195359960198402, + 0.049422260373830795, + 0.009892310947179794, + 0.021854307502508163, + 0.05407778173685074, + 0.010046100243926048, + -0.12854218482971191, + 0.0421198308467865, + -0.042892057448625565, + 0.09095726162195206, + 0.03760414198040962, + 0.00623658299446106, + 0.05244212597608566, + 0.000486444856505841, + -0.021213633939623833, + 0.07395889610052109, + -0.10670071840286255, + -0.009705942124128342, + -0.0297015942633152, + 0.040768831968307495, + -0.13801568746566772, + -0.03132772445678711, + -0.03998437151312828, + 0.07874953001737595, + 0.0033663229551166296, + 0.022618908435106277, + 0.012373077683150768, + 0.007844948209822178, + 0.020281091332435608, + 0.015981188043951988, + -0.021661508828401566, + 0.09168101102113724, + 0.004836136009544134, + -0.04855196177959442, + 0.08941173553466797, + 0.03220685198903084, + -0.0689690038561821, + 0.005928223952651024, + -0.03072304278612137, + -0.04523540660738945, + 0.045772161334753036, + 0.03169390559196472, + -0.04182643070816994, + 0.004423013888299465, + -0.07360444962978363, + 0.007845883257687092, + -0.05357003211975098, + -0.047064851969480515, + 0.05151386186480522, + -0.0020607546903192997, + 0.039452556520700455, + -0.05245284363627434, + 0.01612222194671631, + -0.03856314346194267, + 0.027781620621681213, + -0.15409572422504425, + 0.0020464295521378517, + 0.08525315672159195, + -0.023958563804626465, + -0.07663321495056152, + -0.0699734017252922, + 0.043114833533763885, + -0.06472057104110718, + -0.1314309686422348, + 0.11861781775951385, + -0.03492976725101471, + 0.02713463455438614, + 0.03931554779410362, + -0.05337213724851608, + -0.015683790668845177, + -0.07731282711029053, + -0.019280675798654556, + -0.07097367197275162, + 0.024838512763381004, + 0.004260438960045576, + 0.006918057333678007, + -0.07388997822999954, + -0.03778597712516785, + -0.0361228846013546, + 0.05231968313455582, + -0.08472611010074615, + -0.08275578171014786, + 0.026768747717142105, + 0.084401935338974, + 0.055280160158872604, + 0.004519538953900337, + -0.03300585225224495, + -0.126221165060997, + -0.030515555292367935, + 0.055381882935762405, + -0.025093037635087967, + -0.04406342655420303, + -2.5659553943412777e-33, + 0.07470253109931946, + 0.04599379003047943, + -0.0075692664831876755, + 0.07056983560323715, + 0.07340652495622635, + -0.005003150086849928, + -0.07781446725130081, + -0.08945542573928833, + -0.08597461134195328, + 0.03920929133892059, + 0.07143449783325195, + 0.07903134822845459, + 0.0570041686296463, + 0.08083707094192505, + 0.04590122774243355, + -0.03450792655348778, + -0.018583308905363083, + -0.07824848592281342, + -0.04088941216468811, + -0.026206105947494507, + 0.04090173542499542, + 0.025451859459280968, + -0.044719863682985306, + 0.00674625625833869, + -0.04086931794881821, + -0.022013962268829346, + 0.06339417397975922, + 0.026808271184563637, + 0.0438174270093441, + 0.026650214567780495, + -0.011819131672382355, + 0.09230943024158478, + 0.022723538801074028, + -0.009569036774337292, + 0.00478603970259428, + -0.004015794955193996, + 0.017835015431046486, + -0.030991874635219574, + -0.05692106485366821, + -0.011870399117469788, + -0.02572585642337799, + -0.016248395666480064, + -0.11160516738891602, + -0.016297241672873497, + 0.04521423578262329, + 0.08671488612890244, + 0.0025096971075981855, + -0.11835062503814697, + 0.05566827207803726, + -0.050712235271930695, + -0.014361923560500145, + 0.01579091139137745, + 0.0005062639247626066, + 0.015068411827087402, + 0.020269006490707397, + -0.0917181521654129, + -0.07625486701726913, + 0.04893030226230621, + 0.016275225207209587, + -0.019663942977786064, + -0.026268551126122475, + 0.03032824955880642, + 0.03735335171222687, + 0.03274039179086685, + -0.04368593916296959, + 0.02136061154305935, + -0.10424450784921646, + -0.009073786437511444, + 0.042329780757427216, + -0.014419790357351303, + 0.05284421518445015, + 0.03463110700249672, + 0.07117978483438492, + 0.019388828426599503, + -0.06851214915513992, + -0.0023660114966332912, + -0.017783571034669876, + 0.00013659006799571216, + 0.011542735621333122, + 0.02801731787621975, + -0.030697545036673546, + -0.05821181833744049, + 0.01386229507625103, + 0.04779621213674545, + 0.08181999623775482, + -0.07877355813980103, + 0.01273980550467968, + -0.08901747316122055, + -0.06063985452055931, + -0.008808665908873081, + -0.15256142616271973, + -0.06412447243928909, + 0.03935612365603447, + 0.014818663708865643, + -0.11665624380111694, + 1.1600692017101105e-33, + 0.01779121346771717, + 0.02167011983692646, + 0.002665749052539468, + 0.07638223469257355, + 0.04198458418250084, + -0.02926122024655342, + 0.028010401874780655, + 0.01719815842807293, + 0.022554827854037285, + 0.005842037033289671, + 0.030174164101481438, + -0.03734271973371506, + -0.018037671223282814, + 0.010151314549148083, + 0.08876661211252213, + -0.02520257793366909, + 0.04062621295452118, + 0.030110731720924377, + -0.010665412060916424, + 0.05762152373790741, + 0.018550822511315346, + -0.02980545349419117, + -0.005460886284708977, + 0.022679073736071587, + -0.004119497258216143, + 0.06756509840488434, + 0.03736017644405365, + 0.01478582713752985, + -0.07867797464132309, + -0.04421505331993103, + -0.06316577643156052, + 0.01945403218269348, + 0.012972169555723667, + 0.027980295941233635, + -0.0769771933555603, + 0.0491754449903965, + -0.02411777712404728, + -0.022394681349396706, + 0.02757696807384491, + 0.0008817791240289807, + 0.021291734650731087, + -0.004743874538689852, + 0.016503283753991127, + 0.0609859824180603, + -0.01564742624759674, + 0.03134584799408913, + -0.1279798001050949, + -0.04010134935379028, + 0.05780860409140587, + -0.009440168738365173, + 0.05832141637802124, + 0.007851704023778439, + -0.002990050008520484, + 0.0053085386753082275, + 0.026386015117168427, + -0.06375065445899963, + 0.043966732919216156, + -0.03271980956196785, + -0.08095131814479828, + 0.05134303867816925, + -0.03820240497589111, + -0.0018416834063827991, + -0.011612056754529476, + 0.04490998014807701, + 0.0205400213599205, + -0.03202810883522034, + 0.04896879568696022, + -0.005386168137192726, + 0.06831812113523483, + -0.017086300998926163, + 0.0619618184864521, + 0.019323095679283142, + -0.040779802948236465, + 0.042855966836214066, + 0.010515931062400341, + -0.04724825173616409, + 0.0011248375521972775, + 0.0028694369830191135, + -0.012875506654381752, + 0.01226034015417099, + -0.04466356709599495, + -0.06678519397974014, + -0.06959813833236694, + 0.07609571516513824, + -0.004477722570300102, + 0.0972953736782074, + -0.013562417589128017, + 0.02602788805961609, + 0.01660294458270073, + 0.052465490996837616, + -0.0066215237602591515, + 0.08696401864290237, + 0.06535176187753677, + 0.034084320068359375, + 0.04564341530203819, + -2.0515663834430597e-08, + 0.009319365955889225, + -0.020739620551466942, + -0.02398977242410183, + -0.01822226494550705, + 0.05156775191426277, + 0.03645094484090805, + -0.0477520227432251, + -0.15394000709056854, + 0.02886027656495571, + -0.0148936090990901, + 0.03673640266060829, + -0.013156497851014137, + -0.05466668680310249, + -0.03369452431797981, + -0.043665289878845215, + 0.01908227801322937, + -0.03444432094693184, + -0.0634121522307396, + -0.033269669860601425, + -0.04730451852083206, + -0.002708673244342208, + 0.01558239571750164, + 0.0244865994900465, + -0.06534562259912491, + -0.02615804225206375, + -0.0035481471568346024, + -0.07251821458339691, + -0.035535331815481186, + -0.09145959466695786, + 0.05005830526351929, + 0.027273938059806824, + 0.012993577867746353, + -0.08476027101278305, + -0.05002542957663536, + -0.09484821557998657, + 0.00947392638772726, + -0.0036797404754906893, + -0.026516065001487732, + 0.021988291293382645, + 0.06615585088729858, + 0.0300997756421566, + -0.02040456421673298, + 0.013860339298844337, + -0.013422361575067043, + -0.05125974863767624, + -0.016559654846787453, + 0.006629945710301399, + -0.04088490456342697, + -0.06065765395760536, + -0.10327230393886566, + 0.06063187122344971, + -0.05050129070878029, + 0.027624601498246193, + 0.07202354818582535, + 0.01981368660926819, + 0.03568854555487633, + 0.013652518391609192, + 0.10555792599916458, + -0.0033495586831122637, + 0.0698261559009552, + 0.11524505168199539, + -0.002084770007058978, + -0.042733632028102875, + -0.019121462479233742 + ], + "hand-grabbing-bold||pointers,cursors,emoji,drag,hold": [ + -0.06881793588399887, + -0.0673176497220993, + 0.049107521772384644, + 0.016526836901903152, + 0.007713859900832176, + -0.02802276611328125, + 0.09325303882360458, + -0.020183736458420753, + 0.06615117937326431, + -0.013660414144396782, + 0.03070448525249958, + 0.035323113203048706, + 0.014442630112171173, + 0.01115957647562027, + -0.0012237649643793702, + 0.02391129359602928, + -0.02969254180788994, + 0.028026169165968895, + -0.015404871664941311, + 0.08930203318595886, + 0.017432278022170067, + -0.0004375576099846512, + 0.01439689565449953, + -0.01697971299290657, + 0.006323535926640034, + 0.038828495889902115, + -0.04518663510680199, + -0.04607871547341347, + 0.0918625071644783, + -0.0655042827129364, + -0.07359889894723892, + -0.0041148173622787, + 0.05673304945230484, + 0.05197962746024132, + -0.036409083753824234, + 0.06066540256142616, + -0.02281988225877285, + -0.06354702264070511, + -0.03356272354722023, + 0.037340160459280014, + 0.0034632824826985598, + -0.06632745265960693, + 0.05899379402399063, + 0.034427348524332047, + 0.03851631283760071, + 0.008106338791549206, + -0.04199424386024475, + 0.023012282326817513, + 0.027936723083257675, + 0.03928077220916748, + -0.042908456176519394, + -0.07164745777845383, + -0.008612182922661304, + -0.0034118688199669123, + 0.04303327575325966, + 0.02559448592364788, + 0.023762067779898643, + -0.053748950362205505, + 0.06661070138216019, + 0.012704292312264442, + -0.008273526094853878, + 0.030385145917534828, + 0.009289304725825787, + 0.01249193586409092, + 0.03120938129723072, + -0.011573008261620998, + 0.03867097944021225, + 0.019377894699573517, + -0.026487132534384727, + 0.016843220219016075, + 0.02572799287736416, + -0.03467521443963051, + -0.04721762239933014, + 0.046630822122097015, + -0.02111310511827469, + 0.04272814840078354, + -0.02652541734278202, + -0.02844300866127014, + -0.0220109261572361, + -0.03503000736236572, + -0.030399855226278305, + -0.060728322714567184, + -0.04591486230492592, + 0.06382080167531967, + 0.05516029894351959, + 0.10607767105102539, + -0.056414756923913956, + -0.04678913578391075, + -0.012316213920712471, + 0.050234753638505936, + -0.06962917000055313, + -0.07913610339164734, + -0.020164314657449722, + -0.04274781048297882, + -0.07264425605535507, + -0.06648213416337967, + 0.09343741089105606, + -0.05719294771552086, + -0.11929883062839508, + 0.07867614179849625, + 0.033233899623155594, + 0.0910724624991417, + 0.08612994849681854, + -0.02003360539674759, + -0.09873881936073303, + -0.0174376480281353, + -0.0032531472388654947, + -0.15783607959747314, + -0.09992130845785141, + 0.027644120156764984, + 0.0008354266756214201, + -0.08825605362653732, + -0.058928389102220535, + -0.03851564973592758, + -0.0020948152523487806, + -0.04482350870966911, + -0.11237917840480804, + 0.015647312626242638, + 0.16031266748905182, + 0.030490366742014885, + 0.011001708917319775, + 0.0012416888494044542, + -0.08340959995985031, + 0.009278240613639355, + -0.009016461670398712, + 0.012247515842318535, + -0.009996701031923294, + -1.101871578426853e-33, + 0.056540101766586304, + 0.022820215672254562, + -0.04344848543405533, + 0.034665241837501526, + -0.04605884104967117, + -0.03247258812189102, + -0.07364591211080551, + -0.03770865127444267, + -0.11352091282606125, + -0.03230324015021324, + 0.11815784871578217, + 0.007731981575489044, + 0.007756258826702833, + 0.10328463464975357, + 0.08910743147134781, + -0.06422387063503265, + 0.03224650025367737, + 0.05483350530266762, + -0.06954243779182434, + 0.011382385157048702, + -0.0017241068417206407, + 0.03744366019964218, + -0.027721820399165154, + -0.028789957985281944, + -0.012575752101838589, + -0.012919366359710693, + -0.015540225431323051, + 0.045635420829057693, + 0.02609928324818611, + 0.009145226329565048, + -0.02218444086611271, + 0.033098794519901276, + 0.0037829959765076637, + -0.06301097571849823, + -0.03728729858994484, + 0.010450517758727074, + -0.019345903769135475, + -0.05507460981607437, + 0.0734080895781517, + -0.04124078527092934, + -0.04811069369316101, + -0.03269493952393532, + -0.046674471348524094, + -0.05131557211279869, + -0.01691795140504837, + 0.060424480587244034, + -0.04090699553489685, + -0.06176850199699402, + -0.06757300347089767, + -0.06967853754758835, + 0.010166550986468792, + -0.0029291771352291107, + -0.022862182930111885, + -0.006541024427860975, + 0.04156387969851494, + -0.0642089918255806, + -0.006165445316582918, + 0.05706131085753441, + -0.003983770497143269, + 0.05783491209149361, + 0.00823080725967884, + 0.09508444368839264, + 0.03676798194646835, + 0.026279272511601448, + -0.034900885075330734, + 0.060375504195690155, + -0.07832115143537521, + 0.05595497041940689, + 0.10327056050300598, + 0.007805046625435352, + 0.0023731617256999016, + -0.0010308690834790468, + 0.06510572880506516, + 0.034732215106487274, + -0.02228475734591484, + -0.0052912053652107716, + -0.00012104029883630574, + -0.0735216811299324, + 0.023713387548923492, + -0.018890902400016785, + -0.027798553928732872, + -0.03365062177181244, + -0.0036182019393891096, + 0.029806701466441154, + 0.03692528232932091, + -0.08152484148740768, + -0.00619046576321125, + -0.10080034285783768, + -0.02969158999621868, + 0.03597981855273247, + -0.06348106265068054, + -0.05816859379410744, + -0.015490837395191193, + -0.037207432091236115, + -0.10570767521858215, + -9.375425191341859e-34, + 0.052163440734148026, + 0.04856254160404205, + -0.013164232484996319, + 0.0335763655602932, + -0.09292864799499512, + 0.0020394164603203535, + 0.010893039405345917, + 0.022469494491815567, + -0.025945667177438736, + -0.0477379746735096, + -0.020884135738015175, + 0.05436503887176514, + -0.016619333997368813, + -0.0569903701543808, + 0.07150417566299438, + 0.08938808739185333, + 0.013495093211531639, + 0.05169744789600372, + -0.018793994560837746, + -0.01457651611417532, + 0.013653402216732502, + -0.07619158178567886, + 0.01824670471251011, + 0.07153653353452682, + -0.05766936019062996, + 0.0021284185349941254, + 0.028890330344438553, + -0.05335143581032753, + -0.0862267017364502, + -0.04817228764295578, + -0.019799157977104187, + -0.004089927300810814, + 0.015416789799928665, + 0.07222511619329453, + -0.0026531657204031944, + -0.05373900383710861, + 0.01854577288031578, + 0.0036459483671933413, + 0.07473207265138626, + 0.037284351885318756, + 0.11840575188398361, + 0.01791689544916153, + 0.0931844636797905, + 0.06550982594490051, + 0.0013803915353491902, + 0.02121296152472496, + -0.12856344878673553, + 0.024499818682670593, + 0.01736609824001789, + 0.032018184661865234, + 0.02333137020468712, + -0.0005582192679867148, + -0.04084951430559158, + -0.09910202026367188, + -0.060733355581760406, + -0.02516760304570198, + 0.07984277606010437, + -0.043078672140836716, + 0.0041822511702775955, + 0.03207791596651077, + -0.06300950795412064, + -0.024117397144436836, + -0.08643049746751785, + 0.022617721930146217, + 0.0519738644361496, + -0.033784545958042145, + 0.03343285620212555, + 0.01788598857820034, + -0.041944339871406555, + -0.023752370849251747, + 0.06882879883050919, + 0.06867758929729462, + 0.08005833625793457, + -0.01549829263240099, + 0.03134629875421524, + 0.015274939127266407, + 0.030543049797415733, + 0.01961008831858635, + 0.0062610674649477005, + -0.018124815076589584, + -0.003998233005404472, + 0.02146836929023266, + 0.009381740354001522, + 0.04799181595444679, + -0.03180208057165146, + 0.15492913126945496, + -0.03543577343225479, + 0.02351389452815056, + -0.038017094135284424, + -0.04416017234325409, + -0.06040860712528229, + 0.08802976459264755, + 0.0878010168671608, + 0.04403833672404289, + -0.022577309980988503, + -2.1596093802145333e-08, + -0.0333925224840641, + -0.026203198358416557, + 0.05192066729068756, + -0.03691543638706207, + 0.0418705940246582, + 0.014900384470820427, + -0.07363931089639664, + -0.023662783205509186, + 0.02260425128042698, + -0.026258883997797966, + -0.009736818261444569, + -0.018034812062978745, + -0.05345688387751579, + -0.04052083566784859, + 0.05585085228085518, + 0.015965471044182777, + 0.0063728406094014645, + 0.0501372367143631, + -0.02940446138381958, + -0.06608058512210846, + 0.06724072247743607, + 0.06473713368177414, + 0.09737452119588852, + 0.029525628313422203, + -0.04946594685316086, + -0.041229184716939926, + -0.08956234902143478, + 0.050703927874565125, + 0.0039003214333206415, + -0.0015994830755516887, + 0.09147878736257553, + 0.036382630467414856, + 0.003614039858803153, + -0.011503910645842552, + -0.00739935552701354, + 0.011336920782923698, + -0.008616367354989052, + -0.048355624079704285, + 0.015027550049126148, + 0.11045791208744049, + 0.00680459663271904, + -0.014696956612169743, + -0.03956695273518562, + -0.021923432126641273, + -0.09405580908060074, + 0.044953275471925735, + 0.04881630837917328, + -0.058265261352062225, + -0.04021063819527626, + -0.08181852102279663, + -0.04510614648461342, + 0.009509846568107605, + 0.010290708392858505, + 0.11709951609373093, + 0.021920816972851753, + -0.0273564662784338, + -0.03793805092573166, + 0.05110860988497734, + 0.0028892189729958773, + 0.08901166915893555, + 0.09188215434551239, + 0.02190314047038555, + -0.04581184685230255, + 0.11422888189554214 + ], + "hand-heart-bold||donation,care,emoji": [ + -0.04698216915130615, + 0.0244278647005558, + 0.05179941654205322, + 0.006933392956852913, + 0.04670068621635437, + -0.04187924414873123, + 0.11482460051774979, + -0.04870111867785454, + 0.0896923616528511, + -0.05238329619169235, + 0.030131787061691284, + -0.028994088992476463, + 0.025837376713752747, + -0.04211800917983055, + 0.0024226168170571327, + 0.039918363094329834, + -0.0006070391391403973, + -0.020264308899641037, + -0.0801684781908989, + 0.0791909322142601, + -0.01621587574481964, + 0.02749403566122055, + 0.06001826748251915, + 0.02597901225090027, + 0.015660645440220833, + 0.01558793056756258, + -0.05672571063041687, + -0.05638512223958969, + 0.030794400721788406, + -0.03355444222688675, + -0.009190874174237251, + -0.013432505540549755, + 0.0775919258594513, + 0.05165509507060051, + -0.02195093221962452, + 0.08739451318979263, + 0.015888415277004242, + 0.00487951934337616, + -0.06417427211999893, + 0.05824223533272743, + -0.0006296539213508368, + -0.10241837799549103, + 0.026790473610162735, + 0.07885860651731491, + 0.06193182244896889, + 0.03244286775588989, + -0.00844272505491972, + 0.005397719331085682, + 0.011854666285216808, + 0.019726574420928955, + -0.042184412479400635, + -0.11338935792446136, + -0.07324106991291046, + -0.019734976813197136, + 0.036712080240249634, + -0.02024550549685955, + -0.04553069919347763, + -0.11186564713716507, + -0.00817174930125475, + -0.01873232051730156, + 0.01999422162771225, + 0.06519965827465057, + 0.03744347393512726, + -0.0011271197581663728, + -0.002544999122619629, + -0.056541651487350464, + 0.04468464478850365, + 0.05566924810409546, + -0.0709485188126564, + 0.056353431195020676, + 0.11674078553915024, + -0.020687248557806015, + 0.010435032658278942, + -0.02409496158361435, + -0.044634971767663956, + 0.0947137176990509, + 0.013194309547543526, + -0.08229076117277145, + -0.013612624257802963, + -0.022893616929650307, + -0.057965733110904694, + -0.03838862478733063, + -0.05000137910246849, + 0.0032226131297647953, + -0.07714711129665375, + 0.09107929468154907, + -0.06444092839956284, + -0.056070756167173386, + -0.030680684372782707, + -0.013140615075826645, + -0.08438988029956818, + -0.004276239778846502, + 0.04184068739414215, + -0.029693786054849625, + -0.057994771748781204, + -0.033929020166397095, + 0.05692049488425255, + -0.041770145297050476, + -0.15779003500938416, + 0.12596489489078522, + 0.021973848342895508, + 0.0455506257712841, + 0.061112627387046814, + -0.03963956609368324, + 0.034431811422109604, + -0.019303595647215843, + -0.065296471118927, + -0.02714907005429268, + 0.010544799268245697, + 0.013986017554998398, + -0.0029284704942256212, + -0.01669624075293541, + -0.008212746120989323, + -0.04603375867009163, + 0.012279880233108997, + 0.005559573881328106, + -0.08894655853509903, + -0.073264479637146, + 0.11519017815589905, + 0.08345214277505875, + 0.006696315016597509, + -0.02014964260160923, + -0.0727166011929512, + -0.06854851543903351, + -0.023708822205662727, + -0.003524074098095298, + 0.007209018804132938, + -3.500208182332092e-33, + 0.09258292615413666, + 0.06030365079641342, + 0.04706999287009239, + 0.06843592971563339, + 0.049540601670742035, + 0.009207747876644135, + -0.05050957575440407, + -0.044333480298519135, + -0.14242185652256012, + 0.0018875477835536003, + 0.03951144963502884, + 0.05478466674685478, + 0.004880390129983425, + 0.08144965022802353, + -0.05431302636861801, + -0.09471780061721802, + -0.060665734112262726, + -0.0607808455824852, + -0.003004880156368017, + 0.01682194694876671, + 0.02944067493081093, + -0.025586383417248726, + -0.0465528704226017, + 0.05010073632001877, + -0.06724405288696289, + -0.0684891939163208, + 0.009731252677738667, + 0.029393771663308144, + 0.06807638704776764, + 0.012510683387517929, + -0.005647275131195784, + 0.04943478852510452, + 0.06027732789516449, + -0.11352141946554184, + -0.07033659517765045, + -0.008912745863199234, + -0.03379777818918228, + 0.002748219994828105, + -0.015500558540225029, + -0.020414674654603004, + 0.023629626259207726, + -0.033661942929029465, + -0.06140802428126335, + -0.003127077594399452, + 0.029646091163158417, + 0.06664106249809265, + 0.03317812457680702, + -0.1012413427233696, + 0.032755084335803986, + -0.08914998173713684, + -0.002726804930716753, + -0.03433753177523613, + -0.026633745059370995, + -0.0007323652389459312, + -0.020525401458144188, + -0.07419758290052414, + 0.013467198237776756, + 0.09666966646909714, + -0.06609474122524261, + -0.0751083567738533, + 0.02630661241710186, + -0.012177740223705769, + 0.07725973427295685, + -0.0044321282766759396, + -0.049595415592193604, + 0.023553013801574707, + -0.04951772093772888, + -0.02233673259615898, + 0.006494779139757156, + 0.04566166177392006, + 0.0033777367789298296, + 0.07196895033121109, + 0.0003773324133362621, + 0.050895579159259796, + -0.07600916922092438, + -0.0012513960245996714, + 0.01852269284427166, + -0.028655029833316803, + 0.05427980422973633, + -0.0035627868492156267, + -0.054467614740133286, + 0.03240279108285904, + -0.0037354754749685526, + 0.07997341454029083, + 0.12985476851463318, + -0.015335890464484692, + -0.026469888165593147, + -0.0829203873872757, + -0.07778309285640717, + 0.011594275943934917, + -0.09803753346204758, + 0.005704076029360294, + 0.046576742082834244, + -0.1279895156621933, + -0.07111674547195435, + 7.233328264323135e-34, + 0.01432015560567379, + -0.0024299519136548042, + 0.05394255369901657, + 0.047482654452323914, + 0.04259496182203293, + -0.02592303790152073, + -0.01755639724433422, + 0.04309072345495224, + 0.07079224288463593, + 0.06341222673654556, + -0.004974827636033297, + -0.011343538761138916, + 0.029938576743006706, + -0.028563089668750763, + 0.020250147208571434, + 0.032955802977085114, + 0.04007015377283096, + -0.009452249854803085, + -0.013918477110564709, + 0.06633506715297699, + -0.02737567014992237, + 0.02244083769619465, + -0.005530321970582008, + 0.08553546667098999, + -0.0499550923705101, + 0.03215153515338898, + 0.018044622614979744, + -0.0032975696958601475, + -0.015297736041247845, + -0.11738132685422897, + 0.001886271871626377, + -0.045789044350385666, + -0.0011282500345259905, + 0.040727417916059494, + -0.06501564383506775, + 0.022592701017856598, + -0.0050608753226697445, + 0.011257476173341274, + 0.01863667368888855, + 0.040474168956279755, + 0.03291943669319153, + -0.02079714462161064, + 0.009800037369132042, + 0.10084258764982224, + -0.02424251101911068, + -0.01696178875863552, + -0.11466234177350998, + -0.07838769257068634, + 0.05300717428326607, + 0.006419635843485594, + -0.015485144220292568, + -0.027116352692246437, + -0.021799877285957336, + 0.014004490338265896, + 0.0046399603597819805, + 0.01694447360932827, + 0.03268525004386902, + 0.004913119599223137, + -0.019551146775484085, + 0.02045728638768196, + -0.024802472442388535, + -0.0436844602227211, + -0.020080426707863808, + -0.008086152374744415, + -0.005327865481376648, + -0.008965644985437393, + 0.08177133649587631, + 0.017277272418141365, + -0.04351765662431717, + 0.01935596577823162, + 0.1076001226902008, + 0.07369551062583923, + -0.07080111652612686, + 0.020735464990139008, + -0.022980114445090294, + -0.004354089964181185, + 0.023062335327267647, + 0.054989878088235855, + 0.00730173010379076, + -0.0036722547374665737, + -0.022099625319242477, + -0.05847392603754997, + -0.02144329808652401, + 0.03337978199124336, + 0.024987418204545975, + 0.016810311004519463, + 0.07459405809640884, + 0.022496314719319344, + -0.04501260817050934, + 0.007956854067742825, + -0.08898165822029114, + 0.09347165375947952, + 0.03830858692526817, + 0.013109361752867699, + 0.0037819750141352415, + -1.924982662160346e-08, + 0.05896151810884476, + -0.009387282654643059, + -0.060328613966703415, + -0.045741066336631775, + 0.015149639919400215, + -0.017735231667757034, + -0.07037459313869476, + -0.10577201843261719, + 0.015215513296425343, + 0.018069321289658546, + 0.03375045582652092, + 0.06430168449878693, + -0.06697385758161545, + -0.03147115558385849, + 0.02567637339234352, + -0.0448564775288105, + -0.06661603599786758, + 0.025169625878334045, + -0.023267535492777824, + -0.09435070306062698, + 0.07098987698554993, + 0.056811314076185226, + 0.025459636002779007, + -0.011295555159449577, + -0.025879068300127983, + -0.010135242715477943, + -0.013754257000982761, + 0.009263800457119942, + -0.0650312751531601, + 0.02419106848537922, + 0.05397598445415497, + 0.01947331801056862, + -0.04209046810865402, + -0.00920814834535122, + -0.03354455530643463, + -0.019505152478814125, + 0.026509135961532593, + -0.06895647943019867, + 8.803349919617176e-05, + 0.1119161918759346, + 0.09856802970170975, + 0.009281851351261139, + -0.055702537298202515, + -0.02817114070057869, + -0.06257645785808563, + 0.03815148398280144, + 0.06502404808998108, + -0.021115625277161598, + -0.046815186738967896, + -0.08326699584722519, + 0.027179796248674393, + -0.009695371612906456, + 0.01984097622334957, + 0.04110792651772499, + -0.022775255143642426, + 0.01885782554745674, + 0.028091605752706528, + 0.1420532464981079, + 0.0593845508992672, + 0.04409044235944748, + 0.12083061784505844, + 0.0003438452258706093, + -0.014435771852731705, + 0.0023261052556335926 + ], + "hand-palm-bold||pointers,cursors,emoji,palm,stop,wait,hamsa,5": [ + -0.0430167019367218, + -0.03901506960391998, + 0.002850963734090328, + -0.03445805236697197, + 0.027485376223921776, + -0.052082572132349014, + 0.09461318701505661, + -0.0399785190820694, + 0.05652545392513275, + 0.021614015102386475, + 0.06534366309642792, + 0.01213948242366314, + -0.004841227550059557, + -0.016071777790784836, + 0.014123206958174706, + -0.007552076131105423, + -0.0030698103364557028, + 0.01917230524122715, + -0.0021827188320457935, + 0.02753276564180851, + 0.02617020532488823, + 0.04510204493999481, + 0.035519715398550034, + -0.005475244484841824, + -0.030302757397294044, + 0.03895564749836922, + -0.027421606704592705, + -0.032727036625146866, + 0.032053057104349136, + -0.0802326649427414, + -0.09574107080698013, + 0.038690149784088135, + 0.0916571170091629, + 0.038983024656772614, + -0.03640958294272423, + 0.03774859383702278, + 0.03103790245950222, + -0.018310338258743286, + -0.025274040177464485, + 0.027135146781802177, + 0.03244803473353386, + -0.10532252490520477, + 0.020175090059638023, + 0.03275024890899658, + 0.06039896979928017, + 0.0012189206900075078, + -0.05526210740208626, + 0.012334203347563744, + 0.04344334825873375, + 0.04660860821604729, + -0.03879745677113533, + -0.11496450006961823, + -0.03347248584032059, + -0.02852778322994709, + 0.06362919509410858, + -0.0014604621101170778, + 0.014085053466260433, + -0.0542391836643219, + 0.03649763762950897, + 0.06034452095627785, + -0.022010700777173042, + 0.0085506746545434, + -0.03154696896672249, + 0.03216930106282234, + 0.026150202378630638, + -0.03797735646367073, + 0.06746281683444977, + -0.03895029053092003, + -0.024344906210899353, + 0.0562288835644722, + -0.01544328685849905, + -0.023562148213386536, + -0.03925599530339241, + 0.030088789761066437, + -0.09216321259737015, + 0.04059482738375664, + 0.008779915049672127, + -0.0693323090672493, + 0.042635634541511536, + -0.06881195306777954, + -0.06558681279420853, + -0.008465918712317944, + -0.016652438789606094, + 0.020365992560982704, + 0.029833007603883743, + 0.06978324800729752, + -0.05149577930569649, + -0.026387488469481468, + -0.015696151182055473, + -0.010429480113089085, + -0.07904141396284103, + -0.08417859673500061, + -0.043581023812294006, + -0.02481072023510933, + -0.15094535052776337, + -0.03417433798313141, + 0.08962025493383408, + -0.07974971830844879, + -0.1271098107099533, + 0.07194019109010696, + 0.025485659018158913, + 0.036169636994600296, + 0.09332393854856491, + -0.0540352389216423, + -0.04508320242166519, + -0.011520732194185257, + -0.01167423464357853, + -0.09187277406454086, + -0.04821845516562462, + 0.046206843107938766, + -0.07278893887996674, + -0.06213992461562157, + -0.11415288597345352, + -0.08672495186328888, + -0.041562654078006744, + -0.023621447384357452, + -0.1050315871834755, + -0.008622023276984692, + 0.16537505388259888, + 0.024576501920819283, + 0.013999100774526596, + -0.009740712121129036, + -0.07655274122953415, + -0.03496675193309784, + -0.037776872515678406, + -0.011118609458208084, + 0.015689268708229065, + -2.115577407122188e-33, + 0.011977952904999256, + 0.014346550218760967, + 0.0031023905612528324, + 0.032589517533779144, + 0.014202753081917763, + -0.02565906196832657, + -0.0735786184668541, + -0.0263107568025589, + -0.09018965810537338, + 0.019515998661518097, + 0.07537388056516647, + -0.05710763856768608, + -0.019783081486821175, + 0.07848092168569565, + 0.11929735541343689, + -0.03983256220817566, + 0.029669620096683502, + -0.017416102811694145, + -0.08008529990911484, + -0.03733832389116287, + 0.004789343103766441, + 0.07402153313159943, + 0.001759365200996399, + -0.029264314100146294, + -0.008445804007351398, + -0.017116157338023186, + 0.017348947003483772, + -0.015614291653037071, + 0.05234850198030472, + 0.032071854919195175, + 0.019294777885079384, + 0.03993812948465347, + -0.019514404237270355, + -0.0582142136991024, + -0.03288992494344711, + 0.030332332476973534, + -0.026970522478222847, + -0.04470068961381912, + 0.02856098860502243, + -0.051213495433330536, + -0.05053108558058739, + -0.056596703827381134, + -0.060911573469638824, + -0.061409842222929, + 0.014679871499538422, + 0.07739652693271637, + -0.015147649683058262, + -0.05728921294212341, + -0.008005528710782528, + -0.046477992087602615, + -0.011095482856035233, + 0.035469118505716324, + -0.023977696895599365, + 0.01181124523282051, + 0.018448296934366226, + -0.057759542018175125, + 0.031735245138406754, + 0.03912008926272392, + -0.07197315245866776, + 0.06527185440063477, + -0.007309046108275652, + 0.0106942905113101, + 0.041785988956689835, + 0.020142801105976105, + -0.049943577498197556, + 0.045184578746557236, + -0.1216772198677063, + -0.010156574659049511, + 0.087693952023983, + 0.03975728154182434, + 0.030530110001564026, + 0.014223400503396988, + 0.11149874329566956, + 0.0938088595867157, + -0.07182656228542328, + 0.017784325405955315, + 0.02094574086368084, + 0.0007190019823610783, + -0.034736692905426025, + 0.0009157001622952521, + -0.021219313144683838, + 0.009818034246563911, + -0.02843479812145233, + 0.059299860149621964, + 0.0393073596060276, + -0.019821980968117714, + 0.0046959612518548965, + -0.06840793788433075, + -0.05719618499279022, + 0.02604672871530056, + -0.04262401908636093, + -0.024350015446543694, + 0.0058449916541576385, + -0.04421963170170784, + -0.13487273454666138, + -1.221300426937955e-33, + 0.03069179691374302, + 0.03596770390868187, + -0.018927445635199547, + 0.020071299746632576, + -0.06585537642240524, + 0.0006724601262249053, + 0.041999172419309616, + 0.05834786593914032, + -0.05414670705795288, + -0.037216249853372574, + 0.00685332203283906, + 0.04449812322854996, + 0.005534597206860781, + -0.04342104122042656, + 0.04698271304368973, + 0.0774141177535057, + 0.039011113345623016, + 0.0954241082072258, + 0.026769177988171577, + 0.030964046716690063, + 0.049335744231939316, + -0.06333322077989578, + 0.014652789570391178, + 0.09999724477529526, + -0.004435102455317974, + -0.028753742575645447, + 0.04889510199427605, + -0.04004957154393196, + -0.11166916787624359, + -0.013911697082221508, + -0.0013664192520081997, + -0.0004197594535071403, + 0.05590590462088585, + 0.0730285570025444, + 0.0013486844254657626, + -0.06106128916144371, + -0.030310189351439476, + -0.045085061341524124, + -0.006272056605666876, + 0.058112479746341705, + 0.11297499388456345, + 0.0044032493606209755, + 0.10181539505720139, + 0.0466339997947216, + -0.009401447139680386, + -0.012918983586132526, + -0.15837916731834412, + -0.01397068053483963, + -0.024302829056978226, + 0.06772839277982712, + 0.04891307279467583, + -0.00010657715029083192, + -0.03410479426383972, + -0.0689854547381401, + -0.04715781286358833, + -0.06766455620527267, + 0.06131626293063164, + -0.051100265234708786, + 0.009173008613288403, + 0.04365656152367592, + -0.04985412582755089, + -0.007730505429208279, + -0.0314682200551033, + 0.013368871062994003, + 0.11800462752580643, + -0.03048255667090416, + 0.010511268861591816, + 0.032974015921354294, + -0.005382602568715811, + -0.02967088110744953, + 0.07410027086734772, + 0.08161735534667969, + -0.02019253559410572, + 0.02818780392408371, + -0.04183891415596008, + -0.01829630509018898, + 0.0189200472086668, + -0.038358621299266815, + -0.020067712292075157, + -0.019420044496655464, + 0.00621888367459178, + -0.03918612003326416, + -0.025480007752776146, + 0.08789330720901489, + -0.014088520780205727, + 0.1308983564376831, + 0.0019883494824171066, + 0.03523808717727661, + -0.01634148322045803, + 0.021141963079571724, + -0.0011728840181604028, + 0.1333681046962738, + 0.017679203301668167, + 0.04377199709415436, + -0.0196590106934309, + -2.4974919909936943e-08, + -0.03548061102628708, + -0.05602927878499031, + 0.0267003383487463, + -0.04508543387055397, + 0.017117366194725037, + 0.0020530831534415483, + -0.03647802770137787, + -0.06015841290354729, + 0.015597589313983917, + -0.02586156129837036, + 0.034864045679569244, + 0.027888385578989983, + -0.0003115466970484704, + -0.0018518732395023108, + 0.06340570002794266, + 0.026048308238387108, + -0.012733527459204197, + 0.05574990063905716, + -0.006464085541665554, + -0.05629672110080719, + 0.02448643371462822, + 0.06860645860433578, + 0.02353740483522415, + -0.005776678677648306, + -0.011394527740776539, + -0.01518225483596325, + -0.05584583804011345, + 0.08236350119113922, + 0.0028483907226473093, + 0.01165221631526947, + 0.09185192734003067, + 0.028529640287160873, + 0.0010938612977042794, + -0.041707418859004974, + -0.021768411621451378, + 0.05056747421622276, + 0.017905723303556442, + -0.05983851104974747, + -0.007960302755236626, + 0.10906465351581573, + 0.004081946797668934, + -0.02822795882821083, + -0.02117878943681717, + -0.000124389334814623, + -0.07778449356555939, + -0.006248497404158115, + 0.039815813302993774, + -0.032675568014383316, + -0.05119352042675018, + -0.1334262192249298, + -0.02303648553788662, + 0.018357206135988235, + 0.05674433335661888, + 0.04316252842545509, + 0.02442857436835766, + -0.03924141451716423, + -0.034332726150751114, + 0.057423628866672516, + 0.033498603850603104, + 0.07647031545639038, + 0.1413121372461319, + 0.02589663304388523, + -0.041986048221588135, + 0.08705104887485504 + ], + "hand-peace-bold||*new*,emoji,victory": [ + -0.032801054418087006, + 0.04589332267642021, + 0.05225130915641785, + -0.035473380237817764, + 0.022415535524487495, + -0.016849780455231667, + 0.09424867480993271, + -0.0905081108212471, + 0.0860651284456253, + -0.012945374473929405, + 0.0012731339083984494, + 0.0062238844111561775, + 0.05769186466932297, + -0.05464964359998703, + 0.011021383106708527, + 0.062411725521087646, + 0.011991442181169987, + 0.02721361629664898, + -0.017113810405135155, + 0.029592912644147873, + -0.005046242848038673, + 0.044393766671419144, + 0.012487366795539856, + 0.025785984471440315, + -0.010206140577793121, + 0.038711126893758774, + -0.057802051305770874, + 0.04704633355140686, + 0.04551928862929344, + -0.019263068214058876, + -0.022226613014936447, + -0.048624664545059204, + 0.07334495335817337, + 0.056144390255212784, + 0.006802984047681093, + 0.047395698726177216, + -0.003513077273964882, + -0.003772422205656767, + -0.032729532569646835, + 0.011463388800621033, + -0.0008446670835837722, + -0.07766552269458771, + -6.984133506193757e-05, + 0.043855201452970505, + 0.044953420758247375, + 0.062442947179079056, + -0.03691697120666504, + -0.030362671241164207, + 0.042870331555604935, + -0.015926461666822433, + 0.020978838205337524, + -0.09243285655975342, + -0.04653548076748848, + -0.042718660086393356, + 0.05886276066303253, + -0.0639960914850235, + -0.03349843621253967, + -0.03752749413251877, + 0.04128041863441467, + -0.005623892415314913, + -0.017231479287147522, + 0.04082942381501198, + 0.04403454065322876, + 0.014267637394368649, + 0.018303198739886284, + -0.08333368599414825, + 0.08877430111169815, + 0.033701393753290176, + -0.10238615423440933, + 0.09479615837335587, + 0.03997332602739334, + 0.002839466789737344, + 0.025476986542344093, + -0.007647735066711903, + -0.09178476780653, + 0.04081921651959419, + -0.01847604662179947, + -0.017898181453347206, + -0.0031294189393520355, + -0.00022516351600643247, + -0.004999332129955292, + -0.04236901178956032, + -0.08665698021650314, + 0.005090547725558281, + 0.021240346133708954, + 0.04933692142367363, + -0.05742949619889259, + -0.055785417556762695, + 0.05269079655408859, + 0.00030846078880131245, + -0.12097713351249695, + -0.0018166224472224712, + 0.044571131467819214, + 0.03212545067071915, + -0.051278602331876755, + 0.005013694055378437, + 0.07380548864603043, + -0.03158906102180481, + -0.12564994394779205, + 0.13040150701999664, + 0.02040891908109188, + 0.027839254587888718, + -0.017154138535261154, + -0.07044948637485504, + 0.032349083572626114, + 0.002896137535572052, + -0.05666409060359001, + -0.08045429736375809, + -0.020648229867219925, + 0.00021690393623430282, + 0.015584899112582207, + -0.10053031146526337, + -0.02616295963525772, + -0.05518975481390953, + -0.008048824034631252, + 0.01151139847934246, + -0.12269724160432816, + -0.006722851190716028, + 0.10641644895076752, + 0.09511824697256088, + -0.00680732075124979, + -0.08005979657173157, + -0.10460281372070312, + -0.02740870974957943, + -0.014111054129898548, + -0.012162718921899796, + -0.005610366351902485, + -3.0010403837271617e-33, + 0.07985074073076248, + 0.054063569754362106, + 0.00013763636525254697, + 0.08986969292163849, + 0.012956707738339901, + 0.015985965728759766, + -0.05363054201006889, + -0.05644231289625168, + -0.13829651474952698, + -0.022044099867343903, + 0.02194184437394142, + 0.04609289765357971, + 0.011566761881113052, + 0.03404049947857857, + 0.031095968559384346, + -0.0692291110754013, + -0.022933870553970337, + -0.04594546929001808, + -0.026368655264377594, + 0.006623428780585527, + -0.017517078667879105, + 0.02777589112520218, + -0.003471556818112731, + 0.0005619288422167301, + -0.04219910874962807, + -0.05269040912389755, + 0.09142740815877914, + 0.00545913353562355, + 0.010419191792607307, + 0.02342701517045498, + -0.040640462189912796, + 0.025875190272927284, + 0.0265684574842453, + -0.027253810316324234, + -0.018500840291380882, + 0.10351580381393433, + -0.04055500403046608, + -0.0033039958216249943, + -0.026471273973584175, + -0.003871519584208727, + -0.031427524983882904, + -0.027892624959349632, + -0.09094754606485367, + -0.0154872452840209, + 0.023569591343402863, + 0.044379763305187225, + -0.05345112830400467, + -0.0531122200191021, + 0.014275741763412952, + -0.039547670632600784, + -0.052845314145088196, + -0.037201669067144394, + -0.05703427270054817, + 0.01872713677585125, + -0.009780477732419968, + -0.06954385340213776, + -0.006800699047744274, + 0.07490883022546768, + -0.02030838094651699, + -0.04749968275427818, + -0.04421669989824295, + 0.002788639161735773, + 0.06114703416824341, + 0.02884211577475071, + 0.009378957562148571, + 0.03771607205271721, + -0.08540888875722885, + -0.006344475317746401, + 0.03250079229474068, + -0.01620316505432129, + 0.024783195927739143, + 0.014043612405657768, + 0.048429328948259354, + 0.039564572274684906, + -0.010645073838531971, + 0.005543779116123915, + 0.010061646811664104, + 0.006726216059178114, + 0.03903348743915558, + -0.006960954982787371, + -0.018517499789595604, + 0.014017301611602306, + -0.015336980111896992, + 0.049114376306533813, + 0.09752849489450455, + -0.08679565787315369, + 0.00698382593691349, + -0.09706062823534012, + -0.0921829491853714, + 0.044753387570381165, + -0.10725589841604233, + -0.0686945766210556, + 0.06302565336227417, + -0.0030605746433138847, + -0.13797825574874878, + 1.1172722074615558e-33, + 0.035623472183942795, + 0.036385562270879745, + -0.026337390765547752, + 0.04938787966966629, + -0.035202108323574066, + 0.001800826983526349, + 0.03353238105773926, + 0.07671704143285751, + -0.06039169430732727, + 0.014030341058969498, + 0.05273978412151337, + -0.011046556755900383, + 0.03235911205410957, + 0.0007924414821900427, + 0.027568576857447624, + 0.01860654354095459, + 0.06858089566230774, + 0.06572102010250092, + 0.017959844321012497, + 0.07227449119091034, + 0.02543606050312519, + -0.020237332209944725, + -0.04179226607084274, + 0.048184920102357864, + 0.005044323392212391, + 0.008267637342214584, + 0.09247324615716934, + 0.005731232464313507, + -0.10883887112140656, + -0.07034312933683395, + 0.013636513613164425, + -0.06554380059242249, + -0.0081917280331254, + 0.07068219035863876, + 0.004328375682234764, + 0.017132138833403587, + 0.03007431887090206, + -0.08550005406141281, + 0.07871157675981522, + 0.04550841823220253, + 0.02343163639307022, + -0.003876254428178072, + 0.025774262845516205, + 0.10626454651355743, + -0.03806154802441597, + -0.0010477175237610936, + -0.1769983321428299, + -0.01867988333106041, + 0.03588772192597389, + 0.0058245169930160046, + 0.08634279668331146, + -0.05298187583684921, + -0.04195211082696915, + -0.010540486313402653, + 0.02394011616706848, + 0.003718986175954342, + -0.03423513472080231, + 0.0037521454505622387, + -0.08315256237983704, + 0.09343429654836655, + -0.030131610110402107, + -0.011751646175980568, + -0.03580295294523239, + 0.0255446694791317, + -0.010072538629174232, + 0.010796620510518551, + -0.012769409455358982, + 0.030513249337673187, + 0.015560099855065346, + 0.05656957998871803, + 0.025585535913705826, + 0.08884429931640625, + -0.07103760540485382, + -0.01022682897746563, + 0.023472260683774948, + -0.016267001628875732, + 0.016053950414061546, + 0.06903684884309769, + -0.010391739197075367, + 0.03324665129184723, + -0.0761536955833435, + -0.032096683979034424, + -0.08184453099966049, + 0.03909372538328171, + -0.009611153043806553, + 0.0759011059999466, + 0.023100486025214195, + 0.043562330305576324, + -0.022959742695093155, + 0.027025923132896423, + -0.023057270795106888, + 0.04942180588841438, + 0.03608759865164757, + 0.037381336092948914, + 0.032005008310079575, + -2.0218237750668777e-08, + 0.0011276722652837634, + 0.003856958355754614, + -0.029532676562666893, + -0.024832595139741898, + 0.02471001259982586, + 0.04113299027085304, + -0.028717337176203728, + -0.14676082134246826, + 0.0007800551829859614, + -0.024785852059721947, + 0.06320390850305557, + 0.026138469576835632, + -0.049077846109867096, + -0.005858461372554302, + -0.024154307320713997, + 0.0312504842877388, + 0.015808362513780594, + -0.02220245636999607, + -0.027817999944090843, + -0.10105346888303757, + 0.060381580144166946, + 0.022705107927322388, + 0.02934122085571289, + -0.016641251742839813, + -0.029009053483605385, + 0.00055446702754125, + -0.06735441088676453, + -0.03848494589328766, + -0.12754704058170319, + 0.03694518283009529, + 0.05568477511405945, + 0.0034912314731627703, + -0.0840231403708458, + -0.04750095680356026, + -0.08333014696836472, + 0.03996746242046356, + -0.05463333800435066, + -0.04940838739275932, + 0.05307767167687416, + 0.09123608469963074, + 0.016066834330558777, + 0.10776965320110321, + 0.012020334601402283, + -0.02730422653257847, + -0.059836726635694504, + 0.040766164660453796, + 0.059681087732315063, + -0.02654867246747017, + -0.10625863820314407, + -0.09910940378904343, + 0.051251426339149475, + -0.007798430044203997, + 0.008645652793347836, + 0.040669530630111694, + 0.02450593374669552, + 0.05342739447951317, + 0.05311635881662369, + 0.12643197178840637, + 0.0036484072916209698, + 0.055341936647892, + 0.10778044164180756, + -0.017468934878706932, + -0.006554560735821724, + 0.045193590223789215 + ], + "hand-pointing-bold||pointers,cursors,emoji,fingers,clicks,mouse": [ + -0.03905172646045685, + -0.1155519038438797, + 0.026672866195440292, + -0.03442488610744476, + 0.011519436724483967, + -0.06805547326803207, + 0.11652418226003647, + -0.020646901801228523, + 0.026944635435938835, + -0.0074069201946258545, + 0.013656780123710632, + 0.03755218908190727, + 0.044039878994226456, + 0.020141545683145523, + 0.031043613329529762, + 0.01945127733051777, + -0.022903909906744957, + 0.018466997891664505, + 0.010085729882121086, + 0.05229701101779938, + 0.004849283955991268, + -0.005855660419911146, + -0.005630709230899811, + -0.01298439595848322, + -0.00464783888310194, + 0.0038622203283011913, + 0.0029208410996943712, + -0.05487487465143204, + 0.03119388222694397, + -0.07971569150686264, + -0.06411093473434448, + 0.019013600423932076, + 0.06390777230262756, + 0.030789203941822052, + -0.03808322548866272, + 0.011203672736883163, + -0.02633075974881649, + -0.060771696269512177, + -0.036041948944330215, + 0.008800195530056953, + -0.0022515885066241026, + -0.06655734032392502, + 0.06248325854539871, + 0.041968997567892075, + 0.05552051588892937, + 0.0007109688012860715, + -0.04560619965195656, + -0.014330286532640457, + 0.02712627314031124, + 0.03726580739021301, + -0.05489000305533409, + -0.08660397678613663, + -0.016691695898771286, + -0.01684659533202648, + 0.030373362824320793, + -0.007383107673376799, + -0.009647450409829617, + -0.037059418857097626, + 0.06399620324373245, + 0.017630282789468765, + -0.007715397980064154, + 0.020259318873286247, + 0.01630532182753086, + 0.026572445407509804, + 0.05357600748538971, + -0.00599324656650424, + 0.04835636913776398, + -0.027112355455756187, + -0.020035548135638237, + 0.03835209086537361, + 0.004520215559750795, + -0.010697784833610058, + -0.028600554913282394, + 0.029289469122886658, + -0.02876826748251915, + 0.025052033364772797, + -0.024656157940626144, + -0.03682528808712959, + -0.003099631518125534, + -0.05578457564115524, + -0.055637896060943604, + -0.030072122812271118, + -0.038074225187301636, + 0.027174808084964752, + 0.09684541076421738, + 0.06961027532815933, + -0.07785911113023758, + -0.03527222201228142, + -0.03166269510984421, + 0.02524629980325699, + -0.0902005061507225, + -0.09161726385354996, + -0.022508876398205757, + -0.05602187290787697, + -0.04556480795145035, + -0.032411783933639526, + 0.1127457246184349, + -0.05717278644442558, + -0.1063295379281044, + 0.08176998049020767, + 0.016007235273718834, + 0.050526343286037445, + 0.08333905041217804, + -0.03142795339226723, + -0.054071374237537384, + -0.003299440024420619, + -0.007111739367246628, + -0.09161356091499329, + -0.09398403763771057, + 0.0005510062328539789, + -0.04389126971364021, + -0.11401813477277756, + -0.07447180896997452, + -0.06927504390478134, + -0.02297837659716606, + -0.07609226554632187, + -0.08837290853261948, + -0.00754789263010025, + 0.1884077489376068, + 0.017211444675922394, + 0.021302536129951477, + -0.015482309274375439, + -0.09321720898151398, + -0.00095563312061131, + 0.002931159920990467, + 0.006770884618163109, + -0.025448402389883995, + -9.792384976193024e-34, + 0.05432462692260742, + 0.04268861189484596, + -0.018737155944108963, + 0.0004621337866410613, + -0.00464798416942358, + 0.00500869657844305, + -0.07700744271278381, + -0.029463481158018112, + -0.09909471869468689, + -0.026192164048552513, + 0.1088789626955986, + -0.0018981772009283304, + -0.014843711629509926, + 0.09912935644388199, + 0.10815678536891937, + -0.057228896766901016, + 0.015512959100306034, + 0.058508891612291336, + -0.09696409851312637, + -0.025452326983213425, + 0.02586148865520954, + 0.08425469696521759, + -0.03727509826421738, + -0.03287295252084732, + -0.03062044084072113, + -0.014492979273200035, + 0.0031218796502798796, + 0.009343399666249752, + -0.020143164321780205, + 0.01182763185352087, + -0.007827096618711948, + 0.02805270254611969, + -0.02159745618700981, + -0.05980612710118294, + -0.03446465730667114, + 0.0044095683842897415, + -0.053343985229730606, + -0.04740898683667183, + 0.049467459321022034, + -0.009332330897450447, + -0.02710406295955181, + -0.0531548447906971, + -0.051449064165353775, + -0.029688270762562752, + -0.004087445326149464, + 0.15762269496917725, + -0.05282437801361084, + -0.06226149946451187, + -0.018590815365314484, + -0.05581482872366905, + -0.0086757130920887, + 0.0002161607117159292, + -0.01830230839550495, + -0.025061430409550667, + 0.057735417038202286, + -0.03500548377633095, + -0.0004926101537421346, + 0.026200268417596817, + -0.023229403421282768, + 0.045098964124917984, + 0.022430650889873505, + 0.0358218252658844, + 0.01982356794178486, + -0.008440027013421059, + -0.0672823041677475, + 0.05225425958633423, + -0.07229636609554291, + 0.0463872030377388, + 0.11863203346729279, + 0.01930846832692623, + 0.011785122565925121, + 0.015134450048208237, + 0.07737816870212555, + 0.05592987686395645, + -0.0474325455725193, + 0.011553844437003136, + -0.0026658300776034594, + -0.054122187197208405, + 0.023885726928710938, + -0.008934464305639267, + -0.03399289399385452, + -0.019581303000450134, + -0.043771740049123764, + 0.05225411430001259, + 0.03225220739841461, + -0.09003033488988876, + -0.02643262781202793, + -0.08278930187225342, + -0.07758977264165878, + 0.030261611565947533, + -0.006288362201303244, + -0.024018283933401108, + -0.04573427513241768, + -0.03976646065711975, + -0.15963010489940643, + -2.1460397922107707e-33, + -0.01823725365102291, + 0.04962524026632309, + -0.020986387506127357, + 0.06957434862852097, + -0.13571159541606903, + 0.03185180202126503, + 0.04455602169036865, + 0.0072708032093942165, + -0.007318773306906223, + -0.002892044372856617, + 0.021276773884892464, + 0.04884296655654907, + 0.0113364951685071, + -0.03542255982756615, + 0.02322210557758808, + 0.08649001270532608, + 0.006767562124878168, + 0.08096080273389816, + -0.004092600662261248, + -0.017640370875597, + 0.003945985343307257, + -0.04222210496664047, + 0.004410691559314728, + 0.08053334057331085, + 0.011477195657789707, + -0.023054732009768486, + 0.04731779918074608, + -0.05734245479106903, + -0.07044610381126404, + -0.024008342996239662, + -0.013859165832400322, + 0.04030783474445343, + 0.04967305809259415, + 0.04912739619612694, + 0.019319454208016396, + -0.02743571810424328, + 0.01271103136241436, + -0.0520700067281723, + 0.036952584981918335, + 0.04327047988772392, + 0.12271758913993835, + 0.013955537229776382, + 0.11352521926164627, + 0.0449632853269577, + -0.0011182891903445125, + 0.02847066894173622, + -0.12782643735408783, + 0.008550292812287807, + 0.019978012889623642, + 0.06640647351741791, + 0.008582795038819313, + -0.030827868729829788, + -0.014506339095532894, + -0.12592492997646332, + -0.08072485774755478, + -0.054723065346479416, + 0.06700054556131363, + -0.03517277538776398, + 0.02719654142856598, + 0.03573789447546005, + -0.04583938047289848, + -0.024110838770866394, + -0.03776063397526741, + 0.0637269914150238, + 0.031986054033041, + -0.04147248715162277, + 0.022566374391317368, + 0.013389029540121555, + -0.0004058824561070651, + -0.017187269404530525, + 0.10608761012554169, + 0.056933898478746414, + 0.04255440831184387, + -0.01603999361395836, + 0.0021677117329090834, + -0.00011338198964949697, + 0.03847761079668999, + 0.013293701224029064, + -0.012690679170191288, + -0.04870322346687317, + 0.007540909107774496, + 0.003570386441424489, + 0.004061026964336634, + 0.04651269689202309, + -0.03026070073246956, + 0.1127815917134285, + -0.033583369106054306, + 0.02026553824543953, + -0.017504267394542694, + 0.010995102114975452, + -0.03559697046875954, + 0.1052752360701561, + 0.03144828602671623, + 0.030983060598373413, + -0.037508148699998856, + -2.3609549870684532e-08, + -0.03491843864321709, + -0.0262765996158123, + 0.03533008322119713, + -0.032583266496658325, + 0.03843221440911293, + -0.01805744133889675, + -0.015929237008094788, + 0.007947970181703568, + 0.006925040390342474, + -0.012773171998560429, + -0.007109395228326321, + -0.00011033051850972697, + -0.05680280178785324, + -0.036916427314281464, + 0.1263335943222046, + 0.06003521755337715, + -0.028510164469480515, + 0.07108873128890991, + -0.022423064336180687, + -0.043580714613199234, + 0.04097135737538338, + 0.07896389812231064, + 0.028328651562333107, + 0.037942346185445786, + -0.028905821964144707, + -0.000669157481752336, + -0.038761284202337265, + 0.09783801436424255, + 0.013931306079030037, + 0.0053056227043271065, + 0.09583352506160736, + 0.0356089286506176, + -0.03889574110507965, + -0.04058618098497391, + -0.08394170552492142, + 0.01920219138264656, + -0.007910085842013359, + -0.04958847537636757, + 0.0003622399817686528, + 0.10154487192630768, + -0.04200417920947075, + -0.012445801869034767, + -0.03219601511955261, + -0.015386171638965607, + -0.05934460833668709, + 0.026100097224116325, + 0.011342828162014484, + -0.02152012288570404, + -0.048040617257356644, + -0.13498333096504211, + -0.03649558499455452, + 0.06376470625400543, + 0.03996589779853821, + 0.0684034675359726, + 0.03387954831123352, + -0.00287427450530231, + -0.03160432353615761, + 0.05871431529521942, + -0.0018074787221848965, + 0.07418585568666458, + 0.13331963121891022, + 0.0827212929725647, + -0.021974096074700356, + 0.08894795924425125 + ], + "hand-soap-bold||dispenser,pump,sanitizer,disinfectant,lotion,bottle": [ + -0.059640925377607346, + -0.002130703302100301, + 0.021095819771289825, + -0.030441517010331154, + 0.052668407559394836, + -0.012812557630240917, + 0.09976190328598022, + 0.06249060109257698, + -0.00035231056972406805, + -0.07247596234083176, + 0.09233514219522476, + -0.022594604641199112, + 0.000498530687764287, + 0.05509663745760918, + 0.0016010457184165716, + 0.017054585739970207, + -0.02875482849776745, + -0.005733097903430462, + -0.0315045602619648, + 0.05283127725124359, + 0.05163799226284027, + 0.08075734227895737, + -0.030474375933408737, + -0.0023794942535459995, + -0.03324105218052864, + 0.08109985291957855, + -0.014478541910648346, + -0.020971836522221565, + 0.062985859811306, + -0.05345508083701134, + 0.02825494110584259, + 0.05092761293053627, + 0.05864224210381508, + -0.05186977609992027, + -0.006156557705253363, + 0.024084657430648804, + -0.0037727283779531717, + -0.048772167414426804, + 0.07386874407529831, + 0.08828263729810715, + 0.03406877815723419, + -0.07255645096302032, + -0.05041138455271721, + 0.08120222389698029, + 0.007603945676237345, + 0.03371810168027878, + 0.06130073219537735, + 0.03868331387639046, + 0.05157950147986412, + 0.011045403778553009, + -0.018667180091142654, + -0.04893285408616066, + -0.04774884134531021, + 0.0841466635465622, + 0.031882405281066895, + -0.07979258894920349, + -0.05090963467955589, + -0.031178254634141922, + -0.04798179119825363, + 0.047932788729667664, + 0.012888727709650993, + 0.06671132147312164, + 0.01699378713965416, + 0.07998941838741302, + -0.0701727345585823, + 0.02229003980755806, + 0.011597572825849056, + 0.04201200604438782, + 0.024657614529132843, + 0.00066552305361256, + -0.06840183585882187, + 0.011383923701941967, + 0.02462106943130493, + 0.08698883652687073, + 0.008081584237515926, + 0.013876852579414845, + 0.07626520097255707, + -0.054481811821460724, + -0.0032958558294922113, + -0.04155318811535835, + -0.01796095259487629, + -0.051930420100688934, + -0.05495871230959892, + 0.07402313500642776, + 0.007013031747192144, + 0.08509092777967453, + -0.025868583470582962, + -0.10825887322425842, + 0.03476038947701454, + -0.04290037602186203, + -0.0990157499909401, + -0.04354768618941307, + 0.014419999904930592, + -0.049452319741249084, + 0.0009475416736677289, + 0.022851094603538513, + -0.052497368305921555, + 0.0007933929446153343, + -0.0528181791305542, + 0.0724005401134491, + -0.03915787488222122, + 0.015612953342497349, + -0.013780812732875347, + -0.0680333599448204, + -0.015868615359067917, + -0.0702517181634903, + -0.03234408423304558, + -0.0402822270989418, + 0.01194934081286192, + 0.059783536940813065, + -0.028939535841345787, + -0.02633587084710598, + -0.019122758880257607, + -0.050466395914554596, + -0.03265409544110298, + -0.08996257930994034, + -0.0005113584920763969, + -0.03964199870824814, + 0.04268801212310791, + -0.014133973978459835, + -0.010318132117390633, + -0.07494701445102692, + -0.021079637110233307, + -0.10313120484352112, + -0.05006004869937897, + -0.001407211646437645, + 0.10381771624088287, + -1.145480788762303e-34, + -0.03188873827457428, + 0.0016498997574672103, + 0.013755052350461483, + 0.02959459275007248, + 0.03313383460044861, + 0.04857584461569786, + -0.012407617643475533, + -0.01314217783510685, + -0.020282352343201637, + 0.029789431020617485, + 0.043167732656002045, + 0.013810953125357628, + -0.07743795216083527, + 0.11726744472980499, + 0.049480389803647995, + -0.002041395753622055, + 0.034145645797252655, + -0.004563512746244669, + -0.012306447140872478, + -0.10249879956245422, + 0.021593214944005013, + 0.1369512379169464, + -0.10227704793214798, + 0.00533959548920393, + -0.08404327183961868, + -0.011274067685008049, + -0.008323506452143192, + 0.03399478271603584, + 0.06752348691225052, + -0.019396785646677017, + 0.04415714740753174, + -0.031377073377370834, + 0.04104073345661163, + 0.018398957327008247, + -0.09405964612960815, + -0.03084908053278923, + -0.12640748918056488, + -0.073767751455307, + 0.03238101676106453, + -0.10681074857711792, + -0.09889930486679077, + 0.03433426469564438, + 0.03048156574368477, + 0.07185772061347961, + 0.01747441664338112, + 0.061202313750982285, + -0.1335178166627884, + -0.006159973330795765, + 0.03139633312821388, + -0.04510487616062164, + -0.03178146854043007, + 0.033868543803691864, + -0.003184432862326503, + 0.02034984901547432, + -0.03642138093709946, + -0.022048696875572205, + -0.048584531992673874, + 0.046204522252082825, + -0.0698937252163887, + 0.05290788784623146, + -0.040131401270627975, + 0.07254970818758011, + -0.03192765265703201, + 0.029295027256011963, + 0.019511688500642776, + -0.02040083147585392, + 0.0024329619482159615, + 0.02559122070670128, + 0.08909792453050613, + 0.028716281056404114, + -0.06597036868333817, + 0.10773555189371109, + -0.04220515862107277, + 0.037731170654296875, + -0.0014232384273782372, + -0.02905851975083351, + 0.06846524775028229, + 0.0029924807604402304, + 0.0024662595242261887, + -0.02285536378622055, + -0.05322340130805969, + -0.02177773416042328, + 0.014661367982625961, + 0.1406223177909851, + -0.08445898443460464, + 0.043522659689188004, + -0.03171027451753616, + -0.03545694053173065, + 0.006548031233251095, + -0.06241655349731445, + -0.009599174372851849, + 0.0022391679231077433, + -0.04649282246828079, + -0.017598016187548637, + -0.12578415870666504, + -2.578896301446885e-33, + 0.004064369481056929, + -0.01246530283242464, + 0.013469058088958263, + 0.06894032657146454, + 0.0065193939954042435, + 0.036907631903886795, + 0.05876850336790085, + 0.0005308501422405243, + -0.027891259640455246, + 0.006261595990508795, + -0.05731527507305145, + -0.032799214124679565, + -0.025148026645183563, + -0.014770878478884697, + -0.04858902841806412, + 0.08692086488008499, + 0.057137250900268555, + 0.016904527321457863, + -0.038727011531591415, + 0.028607923537492752, + 0.015808116644620895, + 0.08075609803199768, + -0.002531159669160843, + 0.04923827573657036, + -0.008312143385410309, + -0.022731121629476547, + 0.012984046712517738, + -0.0017987033352255821, + -0.010318055748939514, + 0.018324483186006546, + 0.0373469777405262, + -0.0005748278927057981, + 0.08210966736078262, + -0.0368732325732708, + -0.13558179140090942, + -0.033408258110284805, + 0.06317254155874252, + -0.11302546411752701, + -0.01848524436354637, + -0.0026695108972489834, + 0.03463549166917801, + -0.0448598749935627, + 0.031268276274204254, + 0.07687665522098541, + -0.03203222155570984, + 0.05411927402019501, + -0.0943559855222702, + -0.04857325926423073, + 0.02985997125506401, + 0.08092869073152542, + -0.061831194907426834, + -0.015054321847856045, + -0.07874932885169983, + 0.017904074862599373, + -0.015160685405135155, + -0.00940186157822609, + 0.0006546282675117254, + -0.09724292159080505, + 0.008843927644193172, + 0.026785537600517273, + 0.013372721150517464, + 0.0028851835522800684, + -0.06030695140361786, + -0.0038391458801925182, + -0.0025806135963648558, + -0.05010005831718445, + 0.04613358527421951, + 0.03105316311120987, + 0.010037340223789215, + -0.07026544958353043, + 0.07214099913835526, + 0.04009280353784561, + 0.05066243186593056, + -0.06625405699014664, + -0.021737275645136833, + -0.054010335355997086, + 0.003558078082278371, + -0.044903796166181564, + 0.005995192099362612, + 0.06033797189593315, + -0.014602492563426495, + -0.07780764251947403, + -0.043151382356882095, + 0.1197991594672203, + -0.033962979912757874, + -0.046043794602155685, + 0.035778436809778214, + -0.014484656043350697, + -0.008992783725261688, + 0.0012179946061223745, + -0.06681909412145615, + 0.07303005456924438, + -0.052486684173345566, + 0.08515091240406036, + 0.06165694817900658, + -2.3815447391939415e-08, + 0.04245942085981369, + -0.03280723839998245, + 0.04203111305832863, + -0.05489795655012131, + 0.003845548490062356, + 0.01640627346932888, + -0.04982364550232887, + 0.08286966383457184, + -0.021406453102827072, + -0.0009795487858355045, + 0.04571942985057831, + 0.05491466075181961, + -0.11499042063951492, + -0.029235152527689934, + 0.034905076026916504, + 0.037803519517183304, + -0.04646024480462074, + -0.014921587891876698, + -0.03894071280956268, + -0.09339422732591629, + -0.00636107986792922, + -0.001798027427867055, + 0.03403763473033905, + -0.02798205055296421, + 0.06561083346605301, + -0.004452732857316732, + -0.013572845607995987, + 0.060734353959560394, + -0.025217806920409203, + 0.06525646150112152, + 0.03401586785912514, + 0.009149945341050625, + -0.0321071557700634, + -0.06382134556770325, + -0.08200512081384659, + 0.053597480058670044, + -0.06101147457957268, + -0.048483800143003464, + 0.0022244323045015335, + 0.10029412806034088, + 0.029960807412862778, + -0.03485448285937309, + -0.06863263994455338, + 0.06589212268590927, + 0.04648224264383316, + -0.04199964553117752, + 0.013147063553333282, + 0.036677129566669464, + -0.002554276492446661, + -0.11061529070138931, + 0.027677584439516068, + -0.0006632853182964027, + 0.054677292704582214, + 0.014852105639874935, + -0.025362152606248856, + -0.046657271683216095, + -0.04127420112490654, + 0.024386027827858925, + 0.06491415947675705, + 0.07218406349420547, + 0.06302373111248016, + -0.00031755620148032904, + 0.08233168721199036, + 0.03929736092686653 + ], + "hand-swipe-left-bold||pointers,cursors,gesture": [ + -0.012370754033327103, + -0.12158128619194031, + 0.021550465375185013, + -0.03789026290178299, + -0.0071116783656179905, + -0.059128452092409134, + 0.06911047548055649, + -0.024458182975649834, + 0.014697104692459106, + 0.014901428483426571, + 0.010579263791441917, + 0.02274164929986, + 0.017687341198325157, + 0.03712032735347748, + -0.010602233931422234, + 0.0012844435404986143, + -0.0015301635721698403, + 0.04025900363922119, + 0.03777395561337471, + 0.09080285578966141, + -0.006467468570917845, + -0.021864689886569977, + -0.0060068052262067795, + -0.020421426743268967, + 0.03112541139125824, + 0.053002722561359406, + 0.051809605211019516, + -0.10284850001335144, + 0.04495716467499733, + -0.07045895606279373, + -0.03641332685947418, + 0.0647985190153122, + 0.05857400223612785, + 0.029560251161456108, + -0.060382649302482605, + -0.020700784400105476, + -0.022826656699180603, + -0.06994296610355377, + -0.02540978230535984, + 0.030330372974276543, + -0.013460980728268623, + -0.05692688003182411, + 0.08196759223937988, + 0.02257397025823593, + 0.04147610440850258, + -0.01556138601154089, + -0.048249922692775726, + -0.007911128923296928, + 0.04277700558304787, + 0.04761955514550209, + -0.0008758995099924505, + -0.08081308752298355, + -0.0002379375946475193, + 0.024164820089936256, + 0.041786130517721176, + 0.02214101143181324, + 0.01677367277443409, + -0.023023268207907677, + 0.05040629580616951, + 7.084685785230249e-05, + 0.031086573377251625, + -0.009168017655611038, + 0.03020310029387474, + -0.010282025672495365, + 0.0345783457159996, + -0.009530507028102875, + 0.042551152408123016, + -0.03033788502216339, + 0.016437217593193054, + 0.04096287488937378, + -0.024953363463282585, + -0.016811847686767578, + -0.010346378199756145, + -0.03226222097873688, + -0.049495451152324677, + 0.006168659310787916, + 0.02518082968890667, + 0.004735847003757954, + -0.030697133392095566, + -0.09704131633043289, + -0.033337365835905075, + -0.05042334645986557, + -0.07083671540021896, + 0.026607148349285126, + 0.08644331246614456, + 0.02501082606613636, + -0.10546812415122986, + -0.020497985184192657, + 0.020505432039499283, + 0.022442718967795372, + -0.08069030195474625, + -0.05099167674779892, + -0.061483126133680344, + -0.09713942557573318, + -0.11903749406337738, + -0.0657021626830101, + 0.08973907679319382, + -0.0446990467607975, + -0.07215274125337601, + 0.0824083760380745, + 0.015613434836268425, + 0.07408329844474792, + 0.09649261087179184, + 0.001930944505147636, + -0.07258360087871552, + -0.0017643793253228068, + -0.02513141930103302, + -0.10713603347539902, + -0.10586048662662506, + 0.040732234716415405, + 0.0080973319709301, + -0.08094122260808945, + -0.058496978133916855, + -0.04911801964044571, + 0.012900729663670063, + -0.07336858659982681, + -0.07289119064807892, + 0.033961765468120575, + 0.14636845886707306, + 0.02807951346039772, + -0.042532600462436676, + 0.0013651341432705522, + -0.06204991042613983, + -0.014038782566785812, + 0.009814112447202206, + 0.03354210406541824, + -0.04563271254301071, + -8.851107874772078e-34, + 0.019426966086030006, + -0.01161829475313425, + -0.035532210022211075, + 0.012514895759522915, + -0.004891630262136459, + -0.012409297749400139, + -0.051567018032073975, + -0.015265695750713348, + -0.05623074993491173, + -0.023911628872156143, + 0.1372101604938507, + -0.013055827468633652, + 0.03404616564512253, + 0.059632573276758194, + 0.06167097017168999, + -0.04243391752243042, + -0.039988838136196136, + 0.03321874141693115, + -0.08758604526519775, + 0.03442276269197464, + -0.022730955854058266, + 0.08623172342777252, + -0.0446033850312233, + -0.05569550767540932, + -0.020628908649086952, + -0.04462280869483948, + -0.0008713972638361156, + -0.03602997213602066, + -0.003615942783653736, + 0.006968365516513586, + -0.014692540280520916, + 0.06779218465089798, + 0.03547445684671402, + -0.05776652693748474, + -0.00368608720600605, + 0.008185056038200855, + -0.05066053569316864, + -0.0758541077375412, + 0.07111113518476486, + -0.030797528102993965, + -0.037033531814813614, + -0.05437004938721657, + -0.02345176599919796, + -0.09075326472520828, + 0.009049668908119202, + 0.11604821681976318, + -0.0016601087991148233, + -0.033821091055870056, + 0.004695413168519735, + -0.043148934841156006, + 0.025265147909522057, + -0.019927021116018295, + -0.05865311250090599, + -0.027330497279763222, + 0.04344344511628151, + -0.07032840698957443, + -0.015028353780508041, + 0.07036615908145905, + -0.0019472299609333277, + 0.07619190216064453, + -0.02447962947189808, + 0.060394544154405594, + -0.0006457142299041152, + -0.03430107608437538, + -0.0930168479681015, + 0.0510861873626709, + -0.08086410164833069, + 0.06183285638689995, + 0.10693690180778503, + -0.007810818497091532, + -0.009554760530591011, + 0.032550252974033356, + 0.07223207503557205, + 0.059134047478437424, + -0.034972041845321655, + 0.019580863416194916, + 0.031946759670972824, + -0.011442623101174831, + -0.005633853841573, + -0.019253751263022423, + -0.06101914495229721, + 0.015403293073177338, + -0.011659864336252213, + 0.05822426825761795, + -0.0053431265987455845, + -0.056706514209508896, + -0.012150516733527184, + -0.0952543392777443, + -0.07591404020786285, + 0.050502970814704895, + -0.0713706985116005, + -0.03724284842610359, + -0.03184094652533531, + -0.04424215480685234, + -0.11478925496339798, + -2.186040579272307e-33, + 0.0021864844020456076, + 0.05752066522836685, + -0.04932146891951561, + 0.04208274930715561, + -0.15379635989665985, + 0.007583359256386757, + 0.02958635240793228, + 0.032805345952510834, + -0.025844300165772438, + -0.00816241092979908, + 0.01805317960679531, + 0.05746503174304962, + -0.0337972566485405, + -0.049217116087675095, + 0.035188939422369, + 0.0933297798037529, + 0.026425860822200775, + 0.05243624001741409, + 0.014443141408264637, + -0.02096291072666645, + 0.006089412607252598, + 0.0033023899886757135, + 0.039682116359472275, + 0.06606040894985199, + -0.04383111745119095, + 0.014404000714421272, + 0.04717283323407173, + -0.05238619074225426, + -0.09063706547021866, + -0.0068789259530603886, + -0.0054422770626842976, + -0.0038557422813028097, + 0.04563719034194946, + 0.052436329424381256, + -0.011041644960641861, + -0.05528080835938454, + -0.031797461211681366, + -0.00626383488997817, + 0.05800020694732666, + 0.01165375579148531, + 0.11464530974626541, + 0.014749162830412388, + 0.11962904036045074, + 0.03825768083333969, + -0.00020708105876110494, + 0.00805202592164278, + -0.0932944044470787, + 0.047269366681575775, + -0.01795429363846779, + 0.03231466934084892, + 0.0022266553714871407, + 0.003217328106984496, + -0.0055421567521989346, + -0.09503310918807983, + -0.07369760423898697, + -0.06273259222507477, + 0.08860985189676285, + -0.07396846264600754, + 0.05752428621053696, + 0.042557694017887115, + -0.026008928194642067, + 0.032148100435733795, + -0.0749233067035675, + 0.018049178645014763, + 0.07432880252599716, + -0.013789102435112, + 0.03157868981361389, + 0.00082219677278772, + 0.017840232700109482, + -0.024341030046343803, + 0.08653905987739563, + 0.03183615580201149, + 0.08957505226135254, + 0.009241589345037937, + 0.0455915667116642, + 0.033860959112644196, + 0.03133018687367439, + -0.03704366087913513, + -0.003525980282574892, + -0.02872530370950699, + -0.04194190353155136, + -0.008618118241429329, + 0.045242708176374435, + 0.05655455216765404, + -0.028456976637244225, + 0.13601799309253693, + -0.11821744590997696, + -0.030410096049308777, + 0.04655912518501282, + -0.007768928539007902, + -0.06575403362512589, + 0.08268072456121445, + 0.06991232931613922, + -0.029805922880768776, + 0.007645375560969114, + -2.1629176671922323e-08, + -0.032711777836084366, + -0.029780957847833633, + 0.03931623324751854, + -0.04014156013727188, + 0.026618296280503273, + -0.018658528104424477, + -0.04211486876010895, + 0.0012050076620653272, + -0.01184820756316185, + 0.004802296403795481, + -0.0020680103916674852, + -0.015401528216898441, + -0.04282816872000694, + -0.026322532445192337, + 0.11699758470058441, + 0.0567227303981781, + -0.013002051040530205, + 0.05656478926539421, + -0.07336241751909256, + -0.041240569204092026, + 0.01864577643573284, + 0.023635366931557655, + 0.04056863859295845, + 0.027592098340392113, + 0.00874574389308691, + -0.0005708353710360825, + -0.054484155029058456, + 0.08112990111112595, + 0.0168495811522007, + 0.004462395794689655, + 0.08713656663894653, + 0.020747581496834755, + 0.01347718108445406, + -0.002543902024626732, + -0.011881476268172264, + -0.002694430062547326, + -0.011040355078876019, + -0.03984999284148216, + 0.021390454843640327, + 0.12813736498355865, + -0.08600954711437225, + 0.00838919635862112, + -0.04857378825545311, + -0.020719490945339203, + -0.06574847549200058, + 0.017113132402300835, + 0.0024899356067180634, + -0.022738436236977577, + -0.016181236132979393, + -0.06632965058088303, + -0.029595566913485527, + 0.030050411820411682, + 0.027593785896897316, + 0.10290854424238205, + 0.012843563221395016, + -0.04063662141561508, + -0.044083546847105026, + 0.023881079629063606, + 0.008314138278365135, + 0.0617949403822422, + 0.13391123712062836, + 0.06848923861980438, + -0.026413975283503532, + 0.09975305199623108 + ], + "hand-swipe-right-bold||pointers,cursors,gesture": [ + -0.010235621593892574, + -0.12295177578926086, + 0.011097732931375504, + -0.03580816462635994, + -0.009168288670480251, + -0.05151814967393875, + 0.06939192116260529, + -0.023804865777492523, + 0.014250447042286396, + 0.01850065588951111, + 0.01642823964357376, + 0.028411347419023514, + 0.017009615898132324, + 0.03418031707406044, + -0.0030282330699265003, + -0.004844496957957745, + -0.0035658671986311674, + 0.03894985839724541, + 0.041825465857982635, + 0.08076058328151703, + 0.008271772414445877, + -0.022448493167757988, + -0.0005781490472145379, + -0.016156530007719994, + 0.03290276974439621, + 0.05615813285112381, + 0.050467442721128464, + -0.10159409046173096, + 0.048113610595464706, + -0.07095923274755478, + -0.03886278346180916, + 0.06433459371328354, + 0.059981171041727066, + 0.02767306938767433, + -0.053868554532527924, + -0.016337236389517784, + -0.025884000584483147, + -0.07091499119997025, + -0.027536937966942787, + 0.026098070666193962, + -0.015372121706604958, + -0.06444720178842545, + 0.076344333589077, + 0.01612650416791439, + 0.0362924225628376, + -0.011241180822253227, + -0.042888130992650986, + -0.011848727241158485, + 0.03842361271381378, + 0.04913913086056709, + -0.006092528812587261, + -0.08615010231733322, + -0.0027700457721948624, + 0.018918365240097046, + 0.05013975501060486, + 0.02810746803879738, + 0.012490755878388882, + -0.020550519227981567, + 0.05441254749894142, + 0.0013161184033378959, + 0.021865183487534523, + -0.010924387723207474, + 0.03215046972036362, + 0.0018281105440109968, + 0.036895688623189926, + 0.0005694029969163239, + 0.03416178375482559, + -0.035466570407152176, + 0.015376743860542774, + 0.03958137705922127, + -0.02638130821287632, + -0.01602226309478283, + -0.002655543154105544, + -0.027508193626999855, + -0.0464639812707901, + 0.0006244507385417819, + 0.02260315604507923, + 0.00653682928532362, + -0.041089411824941635, + -0.09717477858066559, + -0.03508216515183449, + -0.05414135381579399, + -0.07443427294492722, + 0.034053195267915726, + 0.08548242598772049, + 0.027228575199842453, + -0.10484123229980469, + -0.020090587437152863, + 0.017588960006833076, + 0.02289108745753765, + -0.07840211689472198, + -0.057493261992931366, + -0.06422524154186249, + -0.08679360896348953, + -0.1254788488149643, + -0.06050720438361168, + 0.0866180881857872, + -0.05144090950489044, + -0.07579027116298676, + 0.07585294544696808, + 0.013427898287773132, + 0.07354619354009628, + 0.09855829179286957, + 0.0006780083058401942, + -0.07085170596837997, + -0.00788975041359663, + -0.025097914040088654, + -0.10169656574726105, + -0.10225175321102142, + 0.05029323697090149, + 0.008693823590874672, + -0.08366850763559341, + -0.0621633306145668, + -0.04139678552746773, + 0.008903107605874538, + -0.0685294046998024, + -0.07628077268600464, + 0.032142315059900284, + 0.14792472124099731, + 0.032410796731710434, + -0.03744494915008545, + 0.01322020124644041, + -0.0643654391169548, + -0.022030552849173546, + 0.004324309062212706, + 0.029794160276651382, + -0.042972251772880554, + -7.86223610911229e-34, + 0.02174527943134308, + -0.014637869782745838, + -0.0330699123442173, + 0.011936862021684647, + -0.0065400004386901855, + -0.018620742484927177, + -0.047207944095134735, + -0.020996997132897377, + -0.05946740135550499, + -0.016659246757626534, + 0.13849002122879028, + -0.013456783257424831, + 0.034830499440431595, + 0.06676508486270905, + 0.06524182856082916, + -0.035666659474372864, + -0.046767983585596085, + 0.03743060678243637, + -0.08224508166313171, + 0.03321031853556633, + -0.02163328416645527, + 0.08857004344463348, + -0.041767243295907974, + -0.059130627661943436, + -0.014394683763384819, + -0.04393766075372696, + 0.0015927944332361221, + -0.03394799679517746, + -0.005598396062850952, + 0.00881233997642994, + -0.016664627939462662, + 0.06399126350879669, + 0.03906385600566864, + -0.05488034710288048, + -0.004432751797139645, + 0.001775388140231371, + -0.05001235008239746, + -0.07724334299564362, + 0.07091006636619568, + -0.030541928485035896, + -0.03387129679322243, + -0.05797237902879715, + -0.028542982414364815, + -0.08957841992378235, + 0.019117634743452072, + 0.11758071184158325, + -0.007324723526835442, + -0.0319737046957016, + 0.00862170197069645, + -0.039641618728637695, + 0.027528198435902596, + -0.014881210401654243, + -0.056255538016557693, + -0.017895784229040146, + 0.040625184774398804, + -0.06973375380039215, + -0.01625211164355278, + 0.08642959594726562, + -0.006520182825624943, + 0.07573537528514862, + -0.027254154905676842, + 0.0583428218960762, + 0.004838563036173582, + -0.04059547930955887, + -0.0940970778465271, + 0.060196537524461746, + -0.08152797818183899, + 0.06381350010633469, + 0.10860693454742432, + -0.0073933349922299385, + -0.012275279499590397, + 0.034319330006837845, + 0.0702115073800087, + 0.06383467465639114, + -0.03421756252646446, + 0.014021031558513641, + 0.02709234692156315, + -0.012304160743951797, + -0.002161808544769883, + -0.015281395055353642, + -0.06906528025865555, + 0.01737556792795658, + -0.021283449605107307, + 0.060523003339767456, + -0.014189408160746098, + -0.05873489007353783, + -0.011682801879942417, + -0.09359686076641083, + -0.069644033908844, + 0.051599420607089996, + -0.07518819719552994, + -0.02707120217382908, + -0.03185608983039856, + -0.0436033196747303, + -0.11975928395986557, + -2.4751528638440716e-33, + 0.007953142747282982, + 0.055902160704135895, + -0.04286373034119606, + 0.04521681368350983, + -0.15792395174503326, + 0.006374464835971594, + 0.024349765852093697, + 0.0323268324136734, + -0.02882218174636364, + -0.0014821916120126843, + 0.018908601254224777, + 0.05417398735880852, + -0.03286447748541832, + -0.05183606222271919, + 0.033232130110263824, + 0.08911619335412979, + 0.0253407321870327, + 0.05430103838443756, + 0.02028477191925049, + -0.02069205977022648, + 0.0012007049517706037, + 0.0014601994771510363, + 0.040739718824625015, + 0.06261293590068817, + -0.04184545949101448, + 0.009527326561510563, + 0.05013308674097061, + -0.05005018413066864, + -0.08186333626508713, + -0.01041275542229414, + -0.002313587348908186, + -0.011358940973877907, + 0.030345918610692024, + 0.05459749698638916, + -0.010736299678683281, + -0.05496957153081894, + -0.03422508388757706, + -0.005045455414801836, + 0.05701666325330734, + 0.013724437914788723, + 0.11694255471229553, + 0.007074101362377405, + 0.11404357850551605, + 0.03584787994623184, + -0.0023644922766834497, + 0.014614778570830822, + -0.095630943775177, + 0.041673582047224045, + -0.021423541009426117, + 0.024303138256072998, + 0.0032027855049818754, + -0.0009094026172533631, + -0.0012794025242328644, + -0.09527545422315598, + -0.07098467648029327, + -0.0565255731344223, + 0.09398055076599121, + -0.0806649774312973, + 0.04860610142350197, + 0.04154437780380249, + -0.018118103966116905, + 0.030177658423781395, + -0.08282814174890518, + 0.02285861223936081, + 0.06979536265134811, + -0.014380576089024544, + 0.028626946732401848, + -0.004357655066996813, + 0.017641734331846237, + -0.020578745752573013, + 0.07843632251024246, + 0.021208275109529495, + 0.09187885373830795, + 0.014057422988116741, + 0.03945833817124367, + 0.0185540821403265, + 0.03540773689746857, + -0.035976942628622055, + -0.0009237076155841351, + -0.03888273984193802, + -0.03234468773007393, + 0.002435488859191537, + 0.042931027710437775, + 0.055990561842918396, + -0.032634835690259933, + 0.13707372546195984, + -0.11960289627313614, + -0.028612585738301277, + 0.0497906357049942, + -0.008359456434845924, + -0.06736094504594803, + 0.08394037932157516, + 0.05764093995094299, + -0.023858055472373962, + 0.001430912408977747, + -2.1714948061912764e-08, + -0.03933433070778847, + -0.02332998625934124, + 0.046793513000011444, + -0.035614870488643646, + 0.029884453862905502, + -0.024088265374302864, + -0.046211209148168564, + -0.000300304323900491, + -0.009534412994980812, + 0.0035379519686102867, + -0.00421130983158946, + -0.022289184853434563, + -0.04975799843668938, + -0.02201901003718376, + 0.12743964791297913, + 0.053517572581768036, + -0.009740631096065044, + 0.05580459535121918, + -0.0705978199839592, + -0.04821859672665596, + 0.01119169034063816, + 0.02048374153673649, + 0.04238605499267578, + 0.030518535524606705, + 0.014998391270637512, + 0.0007562665268778801, + -0.05553066357970238, + 0.07962317764759064, + 0.00933790486305952, + 0.008706118911504745, + 0.08377041667699814, + 0.018946751952171326, + 0.013475054875016212, + -0.00306769204325974, + -0.007457333616912365, + -0.003132415469735861, + -0.011846114881336689, + -0.044004399329423904, + 0.03547222167253494, + 0.12364210188388824, + -0.08507221937179565, + 0.008482642471790314, + -0.04359683021903038, + -0.019620634615421295, + -0.06701584160327911, + 0.01586136966943741, + 0.006071103271096945, + -0.02311154268682003, + -0.01938536949455738, + -0.07393892109394073, + -0.03461160138249397, + 0.02992735430598259, + 0.02796918712556362, + 0.10031691193580627, + 0.010592988692224026, + -0.03431801125407219, + -0.04360702633857727, + 0.012473924085497856, + 0.01404520869255066, + 0.05488104373216629, + 0.14101338386535645, + 0.06671927869319916, + -0.027446754276752472, + 0.09807401150465012 + ], + "hand-tap-bold||pointers,cursors,gesture": [ + -0.037976667284965515, + -0.1120227798819542, + 0.024352263659238815, + -0.04123026505112648, + -0.02453881874680519, + -0.07003884762525558, + 0.094874307513237, + -0.034188248217105865, + 0.036115992814302444, + 0.017678575590252876, + -0.01565546914935112, + 0.019693827256560326, + -0.0013716650428250432, + 0.021772567182779312, + 0.021344009786844254, + 0.016758732497692108, + -0.028965512290596962, + 0.021741600707173347, + 0.0045544784516096115, + 0.06893681734800339, + 0.006384074222296476, + -0.00795904640108347, + 0.04034772515296936, + -0.027811873704195023, + 0.04710499942302704, + 0.024386778473854065, + 0.040602900087833405, + -0.09406645596027374, + 0.04869323968887329, + -0.04760328307747841, + -0.04685984179377556, + 0.050750210881233215, + 0.04185755178332329, + 0.03394857048988342, + -0.05034085363149643, + -0.01750243455171585, + -0.03558065742254257, + -0.07194608449935913, + -0.04541019722819328, + 0.03976242616772652, + 0.04593764618039131, + -0.020147232338786125, + 0.0625123381614685, + 0.04276805743575096, + -0.0031098704785108566, + 0.03857700899243355, + -0.044326137751340866, + -0.0014306707307696342, + 0.056145794689655304, + 0.03466803953051567, + 0.0021756060887128115, + -0.07150638103485107, + 0.04112456366419792, + -0.017147740349173546, + 0.06561111658811569, + 0.02818649262189865, + -0.009864887222647667, + -0.013381999917328358, + 0.06505114585161209, + 0.009322780184447765, + 0.020567672327160835, + 0.017777254804968834, + 0.004401407670229673, + -0.01425267942249775, + 0.0870264396071434, + 0.017845556139945984, + 0.05640387162566185, + 0.024702437222003937, + 0.010899711400270462, + 0.00859796442091465, + 0.009481953456997871, + -0.010923493653535843, + 0.04653945192694664, + -0.022690558806061745, + -0.023157110437750816, + 0.011091434396803379, + 0.001271182089112699, + 0.025940364226698875, + -0.06175027787685394, + -0.06787092983722687, + -0.034350525587797165, + -0.07552133500576019, + -0.06149350479245186, + 0.01631029322743416, + 0.06231416389346123, + 0.07748144865036011, + -0.0680512860417366, + -0.05106784403324127, + -0.013460169546306133, + 0.024540351703763008, + -0.07841765135526657, + -0.028420191258192062, + -0.10137131065130234, + -0.0821942538022995, + -0.04395195096731186, + -0.0449271984398365, + 0.07802040129899979, + -0.06118803098797798, + -0.10837262123823166, + 0.07052244991064072, + 0.05710843950510025, + 0.07151132822036743, + 0.08412071317434311, + -0.008569403551518917, + -0.049067944288253784, + 0.01633359119296074, + -0.047092195600271225, + -0.0991731584072113, + -0.11370886862277985, + 0.04449526593089104, + 0.052812784910202026, + -0.10125134140253067, + -0.03177468478679657, + -0.04487870633602142, + -0.01609180122613907, + -0.07988151162862778, + -0.0591651014983654, + 0.0007221015985123813, + 0.13743169605731964, + -0.0020479722879827023, + -0.023026224225759506, + -0.023009775206446648, + -0.10279186069965363, + -0.00897958967834711, + -0.020105959847569466, + 0.05059829354286194, + -0.04191514849662781, + -1.644507229579772e-33, + 0.010692122392356396, + 0.03087029419839382, + -0.05394715443253517, + -0.044989410787820816, + -0.03252630680799484, + -0.014237212017178535, + -0.037429191172122955, + -0.051624756306409836, + -0.046903129667043686, + 0.0017146350583061576, + 0.11353400349617004, + -0.058635056018829346, + 0.00886579044163227, + 0.04164954647421837, + 0.07028068602085114, + -0.04548272490501404, + -0.043184008449316025, + 0.034488480538129807, + -0.11135754734277725, + 0.015459664165973663, + 0.003702701535075903, + 0.07383397966623306, + -0.06769906729459763, + -0.01639278419315815, + -0.02871507592499256, + -0.04064931347966194, + 0.02913644164800644, + -0.021457700058817863, + -0.0040411436930298805, + -0.007574661169201136, + 0.016436954960227013, + 0.06354749947786331, + 0.031830962747335434, + -0.05032087117433548, + -0.03583314269781113, + -0.00017831155855674297, + -0.03387797996401787, + -0.06777620315551758, + 0.07106448709964752, + -0.019579263404011726, + -0.001067532692104578, + -0.045397739857435226, + 0.0023270214442163706, + -0.0493178516626358, + -0.021081745624542236, + 0.10813470929861069, + -0.03627860173583031, + -0.08063207566738129, + -0.028965817764401436, + -0.05138877034187317, + 0.022005906328558922, + -0.04039311781525612, + -0.048388395458459854, + -0.03250420466065407, + 0.0566626600921154, + -0.06744568794965744, + -0.033384039998054504, + 0.028398042544722557, + 0.0007492839358747005, + 0.07556343078613281, + -0.013718409463763237, + 0.011911129578948021, + -0.010277047753334045, + 0.02791941538453102, + -0.07784215360879898, + 0.10620845854282379, + -0.07576800882816315, + 0.07141526788473129, + 0.1272774040699005, + -0.02480563521385193, + -0.011512997560203075, + 0.022840112447738647, + 0.020416120067238808, + 0.06047748401761055, + -0.0060608843341469765, + 0.0029420803766697645, + 0.024536482989788055, + -0.010728755034506321, + 0.045977383852005005, + -0.03238510340452194, + -0.04096768796443939, + 0.010211342945694923, + -0.022942988201975822, + 0.11687877029180527, + 0.014828731305897236, + -0.04797755926847458, + -0.008882272057235241, + -0.12936605513095856, + -0.07107396423816681, + 0.07303258031606674, + -0.05673647299408913, + -0.018111612647771835, + -0.048377182334661484, + -0.06261218339204788, + -0.12771201133728027, + -1.5406422936155418e-33, + 0.014081430621445179, + 0.08084500581026077, + -0.04538305103778839, + 0.07465434074401855, + -0.119025319814682, + 6.457480048993602e-05, + 0.02176576480269432, + 0.047146618366241455, + -0.023549146950244904, + -0.006562970113009214, + 0.033906251192092896, + 0.07434726506471634, + -0.0291488878428936, + -0.049468252807855606, + 0.028036367148160934, + 0.08061470836400986, + -0.0002666286891326308, + 0.06411539018154144, + -0.011918975971639156, + 0.0021133068948984146, + 0.02193485014140606, + -0.03949914500117302, + 0.05957024544477463, + 0.06463979929685593, + -0.038084980100393295, + -0.012351918034255505, + 0.050633274018764496, + -0.051711585372686386, + -0.05473180487751961, + -0.04418707638978958, + -0.0005173638346605003, + 0.03828250244259834, + 0.02081989496946335, + 0.061003487557172775, + -0.028697283938527107, + -0.0328853614628315, + 0.03627987578511238, + -0.023872194811701775, + 0.05182875320315361, + 0.030261853709816933, + 0.10921156406402588, + 0.018636304885149002, + 0.10767441987991333, + 0.006292026489973068, + -0.06155616417527199, + 0.031469810754060745, + -0.0658857524394989, + 0.03299820423126221, + -0.06502959132194519, + 0.03577094152569771, + 0.016091881319880486, + 0.02313198149204254, + -0.003842453472316265, + -0.06953193992376328, + -0.10385037958621979, + -0.04534251615405083, + 0.1276654154062271, + -0.08576808869838715, + -0.0013471907004714012, + 0.06534699350595474, + -0.015498245134949684, + 0.013732202351093292, + -0.02787732519209385, + -0.003726100781932473, + 0.08733653277158737, + -0.015908878296613693, + 0.04276926815509796, + 0.0036283545196056366, + 0.03580331802368164, + -0.0010638402309268713, + 0.07399583607912064, + -0.00026764749782159925, + 0.10844554007053375, + 0.005056160502135754, + 0.04565735533833504, + 0.015550106763839722, + 0.010343487374484539, + -0.027734976261854172, + 0.013432088308036327, + -0.04271076247096062, + -0.022132322192192078, + 0.017767103388905525, + 0.021859684959053993, + 0.06321623176336288, + 0.02221585065126419, + 0.15144039690494537, + -0.05081729218363762, + -0.01428950298577547, + 0.007246466353535652, + 0.041174035519361496, + -0.054412174969911575, + 0.03882215917110443, + 0.04245966672897339, + -0.001282515935599804, + 0.011118064634501934, + -1.9747227852917604e-08, + -0.026067299768328667, + 0.04092133417725563, + 0.013166778720915318, + -0.058720700442790985, + 0.010999509133398533, + -0.012062229216098785, + -0.05909772589802742, + 0.0016088244738057256, + 0.0016462465282529593, + 0.0020634192042052746, + -0.024813028052449226, + -0.021828357130289078, + -0.055087555199861526, + -0.03306734561920166, + 0.08065827190876007, + 0.047083400189876556, + -0.02108565904200077, + 0.04265843331813812, + -0.07746989279985428, + -0.021666930988430977, + -0.030420657247304916, + 0.043320853263139725, + 0.02109677344560623, + 0.03118833154439926, + -0.014315935783088207, + 0.003848001128062606, + -0.06954637914896011, + 0.08941429853439331, + 0.03976751118898392, + 0.007591488771140575, + 0.08508579432964325, + 0.031517405062913895, + -0.009493631310760975, + -0.030285321176052094, + -0.07855821400880814, + -0.0006107056979089975, + -0.009260186925530434, + -0.04785165935754776, + 0.009516828693449497, + 0.11116454005241394, + -0.11032478511333466, + -0.00944665726274252, + -0.044403888285160065, + -0.01056794822216034, + -0.07289356738328934, + -0.013649022206664085, + 0.016543572768568993, + -0.02656625397503376, + -0.04335345700383186, + -0.039541095495224, + -0.02744409255683422, + 0.06566762924194336, + 0.021953456103801727, + 0.06252449750900269, + 0.013978751376271248, + -0.03734517842531204, + -0.05114191398024559, + 0.034943338483572006, + 0.0019387820502743125, + 0.07062637805938721, + 0.1386437565088272, + 0.030992619693279266, + -0.022777900099754333, + 0.0999842956662178 + ], + "hand-waving-bold||emoji,palm,wave,hello,goodbye": [ + -0.020584912970662117, + -0.018703121691942215, + 0.061826519668102264, + -0.028203148394823074, + 0.03764403238892555, + -0.13199694454669952, + 0.0906936302781105, + -0.06649262458086014, + 0.014608421362936497, + -0.053245771676301956, + 0.06110209971666336, + 0.016738027334213257, + 0.005175007972866297, + -0.012173901312053204, + 0.054587118327617645, + 0.06376616656780243, + 0.022871440276503563, + 0.029526254162192345, + -0.06901387870311737, + 0.034870609641075134, + 0.05218052864074707, + 0.06979157030582428, + 0.035176973789930344, + -0.028124913573265076, + -0.01654207333922386, + 0.015168016776442528, + 0.0043518985621631145, + 0.009393151849508286, + 0.06878303736448288, + -0.020769290626049042, + -0.0372655913233757, + 0.06217195466160774, + 0.08191721886396408, + 0.04234742745757103, + -0.01653638482093811, + 0.0634673461318016, + -0.013898156583309174, + -0.019526546820998192, + -0.007720314431935549, + 0.019949108362197876, + -0.01951049268245697, + -0.0649394616484642, + 0.008597374893724918, + 0.037156712263822556, + 0.04774108901619911, + 0.017990197986364365, + -0.06457249075174332, + -0.0021445222664624453, + 0.026091434061527252, + 0.007485486101359129, + -0.007176575250923634, + -0.11231433600187302, + -0.039793018251657486, + 0.023829380050301552, + 0.04146822541952133, + -0.0174514502286911, + -0.025110403075814247, + -0.05698808282613754, + 0.042085956782102585, + 0.0455603152513504, + -0.027938872575759888, + 0.03331195190548897, + 0.031901564449071884, + 0.003963182680308819, + 0.026477282866835594, + -0.0528501532971859, + 0.05714085325598717, + -0.0056700315326452255, + -0.03284413740038872, + 0.08900731056928635, + 0.017783835530281067, + -0.05259955674409866, + -0.020908396691083908, + 0.06361396610736847, + -0.10144545882940292, + 0.06112280115485191, + 0.0451657697558403, + -0.036234620958566666, + -0.016902001574635506, + -0.0031943011563271284, + -0.04113975167274475, + -0.10317546874284744, + -0.05466752499341965, + -0.030683819204568863, + -0.005032433662563562, + 0.0649159699678421, + -0.06634917110204697, + -0.05827907472848892, + -0.026293322443962097, + 0.03873177245259285, + -0.152459055185318, + -0.03129800781607628, + -0.00874622818082571, + -0.010443744249641895, + -0.0935472920536995, + -0.052967146039009094, + 0.07232169806957245, + 0.009874233044683933, + -0.1634788066148758, + 0.11462953686714172, + -0.000415109156165272, + 0.05170799046754837, + 0.03214246407151222, + 0.0005573006346821785, + -0.055175941437482834, + -0.046570178121328354, + -0.03387657180428505, + -0.06916192919015884, + 0.010577808134257793, + 0.0017733832355588675, + -0.03709839656949043, + -0.087090864777565, + -0.03758763521909714, + -0.09310037642717361, + -0.011814206838607788, + -0.045438747853040695, + -0.11524957418441772, + 0.0165861826390028, + 0.1365973800420761, + 0.052738774567842484, + 0.029483649879693985, + -0.03052578680217266, + -0.07862315326929092, + 0.026696421205997467, + -0.003762328764423728, + -0.010155211202800274, + 0.005645404104143381, + -2.96325338313601e-33, + 0.11381707340478897, + 0.10421140491962433, + 0.011764580383896828, + 0.0685376524925232, + 0.040895234793424606, + -0.019860371947288513, + -0.06289226561784744, + -0.03931389003992081, + -0.07406685501337051, + -0.00427172239869833, + 0.05829700455069542, + 0.08721372485160828, + -0.021947497501969337, + 0.051432326436042786, + 0.04397992789745331, + -0.02662486769258976, + 0.002864757552742958, + -0.04642810299992561, + -0.052769631147384644, + 0.002631374169141054, + 0.015777863562107086, + 0.04710271954536438, + -0.00279935821890831, + -0.016944680362939835, + -0.041063807904720306, + -0.06884806603193283, + 0.046513352543115616, + -0.006654415745288134, + 0.051698293536901474, + 0.028470490127801895, + 0.01920877769589424, + 0.02130306139588356, + 0.01375986821949482, + -0.030092554166913033, + 0.0028958856128156185, + 0.013341679237782955, + -0.039822112768888474, + -0.027732757851481438, + -0.03992382809519768, + -0.0133579196408391, + -0.052597545087337494, + -0.02909032255411148, + -0.05250488966703415, + -0.020710764452815056, + 0.016505569219589233, + 0.021776320412755013, + -0.02338828518986702, + -0.061235714703798294, + 0.032046493142843246, + -0.0529877133667469, + 0.010887368582189083, + -0.04420403018593788, + -0.030205830931663513, + 0.06486935913562775, + -0.005062738433480263, + -0.058970604091882706, + 0.013517839834094048, + -0.005974979139864445, + -0.079154834151268, + -0.005704454146325588, + -0.015660198405385017, + -0.008844809606671333, + 0.06721384823322296, + 0.04687266796827316, + 0.0037410063669085503, + 0.0412389412522316, + -0.10194630175828934, + 0.024938328191637993, + 0.07092466205358505, + 0.00019899880862794816, + 0.04301966726779938, + 0.03862825781106949, + 0.02287265472114086, + 0.06601519137620926, + -0.06085681542754173, + 0.0008743237121962011, + 0.04572654142975807, + 0.03081452287733555, + 0.03953848406672478, + 0.0277718398720026, + 0.02227323316037655, + 0.054066795855760574, + -0.04374219849705696, + 0.021371040493249893, + 0.1014900729060173, + -0.0007508927374146879, + -0.038190290331840515, + -0.12369023263454437, + -0.11195532232522964, + 0.0409402921795845, + -0.12021642178297043, + -0.0028712863568216562, + 0.08738351613283157, + -0.024979619309306145, + -0.11065157502889633, + -6.905075369864598e-35, + 0.049614518880844116, + 0.07007376104593277, + -0.03442377969622612, + 0.006877457723021507, + -0.05544495955109596, + 0.03851351514458656, + 0.07108010351657867, + 0.11612677574157715, + -0.06515778601169586, + -0.01377299427986145, + 0.016833221539855003, + -0.04517408460378647, + 0.04237337037920952, + -0.031077496707439423, + -0.01010670606046915, + 0.04204025864601135, + 0.0923943743109703, + 0.07506684213876724, + 0.002594358753412962, + 0.041612427681684494, + -0.01330429594963789, + -0.046308182179927826, + -0.007021000143140554, + 0.09037111699581146, + -0.016318129375576973, + -0.012917517684400082, + 0.056751951575279236, + -0.047962747514247894, + -0.12532082200050354, + -0.093234583735466, + -0.023456038907170296, + 0.00629204697906971, + 0.07105281203985214, + 0.07900939136743546, + -0.029044650495052338, + 0.0172573272138834, + -0.02451147325336933, + -0.029991742223501205, + 0.039347611367702484, + -0.010916396975517273, + 0.050921082496643066, + 0.054818879812955856, + 0.07575420290231705, + 0.031181007623672485, + -0.02189251221716404, + 0.043406493961811066, + -0.13093791902065277, + -0.01841110549867153, + -0.013833817094564438, + 0.013641716912388802, + 0.08054381608963013, + -0.037415266036987305, + -0.011068974621593952, + -0.03501153364777565, + -0.002268889918923378, + -0.058202147483825684, + 0.07632021605968475, + -0.017515774816274643, + -0.03921443223953247, + 0.009793835692107677, + 0.011384375393390656, + -0.016713909804821014, + 0.011190158315002918, + -0.011070755310356617, + 0.016979189589619637, + 0.015614261850714684, + 0.030573124065995216, + 0.05089417099952698, + 0.029811102896928787, + -0.06689672917127609, + 0.04764753207564354, + 0.023089580237865448, + -0.058738477528095245, + 0.03209112957119942, + -0.008223708719015121, + -0.036187537014484406, + 0.005404680036008358, + -0.04716033488512039, + -0.04303424060344696, + 0.003570452332496643, + -0.06745664775371552, + -0.010282623581588268, + -0.09202701598405838, + 0.035177186131477356, + -0.04636818915605545, + 0.0215385090559721, + -0.019665101543068886, + -0.008650985546410084, + 0.006357712671160698, + 0.06295674294233322, + -0.005130125675350428, + 0.1100616380572319, + 0.025256192311644554, + 0.005826350301504135, + 0.017685793340206146, + -2.1199323185783214e-08, + -0.00017916812794283032, + -0.011626520194113255, + -0.0027458686381578445, + -0.08275146782398224, + 0.030749771744012833, + 0.008688447996973991, + 0.01138688251376152, + -0.0919472873210907, + -0.008628896437585354, + -0.07772989571094513, + 0.025078367441892624, + 0.024005252867937088, + -0.06005864217877388, + -0.014594493433833122, + 0.025544648990035057, + -0.007763441652059555, + 0.00033393639023415744, + 0.02463439293205738, + 0.003913932014256716, + -0.07090900838375092, + 0.00802519265562296, + 0.033934883773326874, + -0.0006084669730626047, + 0.055797722190618515, + -0.03352251648902893, + -0.00901777483522892, + -0.04550943523645401, + -0.011611907742917538, + -0.04200179502367973, + 0.016240693628787994, + 0.010947720147669315, + 0.02305903658270836, + -0.021124470978975296, + -0.040870022028684616, + -0.13340401649475098, + 0.026612695306539536, + -0.009763628244400024, + -0.08213752508163452, + 0.016425559297204018, + 0.13147953152656555, + 0.023802684620022774, + 0.05120587721467018, + -0.027368193492293358, + -0.018627911806106567, + -0.02143680863082409, + -0.019801020622253418, + 0.11225374042987823, + -0.07194890826940536, + -0.07946282625198364, + -0.047612514346838, + 0.049597278237342834, + 0.013995527289807796, + 0.027375778183341026, + 0.03445744886994362, + 0.023406505584716797, + 0.011896542273461819, + -0.03263065591454506, + 0.08156705647706985, + -0.01036043930798769, + 0.022356726229190826, + 0.16677795350551605, + 0.0014456778299063444, + -0.02877740003168583, + 0.04338240623474121 + ], + "hand-withdraw-bold||*new*,take,remove,withdrawal,atm,emoji": [ + -0.006127350032329559, + 0.019523439928889275, + 0.023567844182252884, + 0.024016546085476875, + 0.007791102398186922, + -0.03202008828520775, + 0.17541900277137756, + -0.08034732192754745, + 0.11816244572401047, + -0.041430745273828506, + 0.06615298986434937, + 0.04178819805383682, + 0.01313642505556345, + -0.015837298706173897, + 0.015847772359848022, + -0.00027556344866752625, + 0.008210893720388412, + -0.004439413081854582, + 0.011875968426465988, + 0.05424897000193596, + 0.018849574029445648, + -0.008398392237722874, + -0.03450567275285721, + 0.012201434001326561, + 0.0714217945933342, + 0.02918180637061596, + -0.06087041273713112, + 0.024166084825992584, + 0.038858331739902496, + -0.07727297395467758, + -0.013353000394999981, + 0.03505381941795349, + 0.09515318274497986, + 0.017775824293494225, + -0.0032052788883447647, + 0.016822172328829765, + -0.058237455785274506, + 0.02878388576209545, + 0.00952395610511303, + 0.021531470119953156, + -0.03036629594862461, + -0.1143692210316658, + -0.01295656431466341, + 0.01173393428325653, + 0.03446962311863899, + 0.0146876759827137, + -0.07429146766662598, + -0.0012121337931603193, + 0.03904097527265549, + 0.05579153075814247, + 0.003529677167534828, + -0.11435548216104507, + -0.07158157974481583, + 0.00464458717033267, + 0.035917509347200394, + -0.05806148052215576, + 0.03969058021903038, + -0.07362765818834305, + 0.03757081180810928, + -0.005891383625566959, + -0.02643769048154354, + 0.04731219261884689, + -0.018222209066152573, + 0.04090873897075653, + 0.012393638491630554, + 0.03688431903719902, + 0.03486566245555878, + -0.04073251038789749, + -0.005416883155703545, + 0.06833270937204361, + -0.00029497325886040926, + -0.06819426268339157, + -0.07989471405744553, + -0.05107119306921959, + -0.07827276736497879, + 0.004452682100236416, + 0.03125475347042084, + -0.011155728250741959, + -0.023989500477910042, + 0.020557468757033348, + -0.0309330765157938, + -0.07911066710948944, + -0.026323482394218445, + 0.00877249427139759, + 0.0035461222287267447, + 0.07229475677013397, + -0.09666724503040314, + -0.04938641935586929, + -0.020636416971683502, + -0.04125135391950607, + -0.11303070187568665, + 0.007893734611570835, + 0.06766339391469955, + -0.045013707131147385, + -0.013263242319226265, + -0.06637682765722275, + 0.01715264655649662, + -0.009861337020993233, + -0.11867191642522812, + 0.09576494246721268, + 0.0449550598859787, + 0.09889181703329086, + -0.041508354246616364, + -0.056066274642944336, + 0.00041989481542259455, + -0.017066065222024918, + 0.03757992386817932, + -0.11317014694213867, + 0.014264068566262722, + -0.022056924179196358, + -0.07084629684686661, + 0.0034071740228682756, + 0.008009116165339947, + -0.03937405347824097, + -0.02568400464951992, + 0.038252703845500946, + -0.09643367677927017, + 0.017143482342362404, + 0.1043737605214119, + 0.11923763900995255, + 0.004989578854292631, + -0.006223244592547417, + -0.08411215990781784, + -0.03463603928685188, + -0.04121643304824829, + 0.023771218955516815, + 0.02510838396847248, + -3.518314836096586e-33, + 0.014472095295786858, + 0.06266604363918304, + -0.04363628849387169, + 0.09843315929174423, + 0.019271038472652435, + -0.002089476678520441, + -0.0643036961555481, + -0.044345516711473465, + -0.0757267028093338, + -0.019569044932723045, + 0.031410619616508484, + 0.00398033345118165, + -0.004288898780941963, + 0.12489236891269684, + 0.06357169896364212, + -0.07503010332584381, + 0.07917936891317368, + -0.03511722758412361, + 0.06687155365943909, + -0.049892716109752655, + 0.01792370155453682, + 0.0250413678586483, + -0.026139579713344574, + 0.05971105396747589, + -0.0485185869038105, + -0.008645541965961456, + -0.01086392905563116, + -0.008577682077884674, + 0.04777569696307182, + 0.05148671939969063, + -0.009833207353949547, + -0.015166640281677246, + -0.045748014003038406, + -0.009413555264472961, + -0.03725401684641838, + 0.018838653340935707, + -0.013918918557465076, + -0.0005693085840903223, + 0.0013951277360320091, + -0.051736023277044296, + -0.07210665196180344, + -0.00011543885193532333, + -0.1298297941684723, + -0.003195497440174222, + -0.013008994981646538, + 0.08779102563858032, + -0.058936744928359985, + -0.07132485508918762, + 0.02907024696469307, + -0.05273110792040825, + -0.029460987076163292, + -0.01057471428066492, + -0.0023593788500875235, + 0.007042812183499336, + -0.033816345036029816, + -0.11151209473609924, + 0.0036979252472519875, + 0.016631100326776505, + -0.019466692581772804, + -0.011635282076895237, + 0.0074065374210476875, + 0.07692203670740128, + 0.030902735888957977, + 0.0733243003487587, + -0.03211446851491928, + 0.04861919581890106, + -0.1030803993344307, + -0.014334247447550297, + -0.021905679255723953, + 0.03676914423704147, + -0.06924641132354736, + 0.0319930836558342, + 0.04698385298252106, + 0.0610346794128418, + -0.019107230007648468, + -0.02828630618751049, + 0.014462724328041077, + -0.00953075010329485, + 0.07043041288852692, + -0.0057271928526461124, + -0.037369031459093094, + -0.00023155515373218805, + -0.01441191602498293, + 0.032604578882455826, + 0.09686393290758133, + -0.00467972457408905, + 0.0063987718895077705, + -0.15927645564079285, + -0.01676681637763977, + 0.017781438305974007, + -0.0975605845451355, + -0.02090928889811039, + 0.022769499570131302, + -0.03603794425725937, + -0.014704275876283646, + 9.87777086545584e-34, + 0.007057876326143742, + 0.051085036247968674, + -0.001950982492417097, + 0.023913996294140816, + -0.05749865248799324, + 0.028300495818257332, + 0.08611742407083511, + 0.09164461493492126, + 0.07361649721860886, + 0.006803036667406559, + -0.01613977551460266, + 0.022097554057836533, + 0.008621742948889732, + -0.04715714603662491, + 0.0647677406668663, + -0.03776925057172775, + 0.02055145986378193, + 0.06727373600006104, + -0.05870287865400314, + 0.08178268373012543, + -0.02507508173584938, + 0.007572844624519348, + 0.015407362952828407, + 0.04508430138230324, + -0.014212487265467644, + 0.02948436141014099, + 0.03208034113049507, + -0.0023166844621300697, + -0.06602209061384201, + -0.06888829171657562, + -0.08204544335603714, + 0.01681032031774521, + 0.0361870676279068, + 0.0970587357878685, + -0.04732660949230194, + -0.016874060034751892, + -0.01387777365744114, + 0.05021318793296814, + -0.03431478887796402, + 0.053321078419685364, + 0.017583973705768585, + -0.014366178773343563, + 0.036762479692697525, + 0.10473880916833878, + -0.033085454255342484, + -0.009059655480086803, + -0.12460283190011978, + -0.07560388743877411, + 0.020786236971616745, + 0.03347146511077881, + 0.06564044952392578, + -0.03761359304189682, + -0.04280061274766922, + 0.008175153285264969, + -0.0003806289460044354, + -0.01780080795288086, + 0.054400958120822906, + -0.05905977636575699, + 0.0010404374916106462, + 0.017103921622037888, + -0.0032404258381575346, + -0.004231689032167196, + -0.0069905794225633144, + 0.022093255072832108, + 0.06494783610105515, + -0.10130193829536438, + 0.001874550711363554, + 0.07507546991109848, + -0.004602933768182993, + -0.0566357783973217, + 0.07324496656656265, + 0.004099362529814243, + 0.02280089631676674, + 0.03034801036119461, + 0.013142362236976624, + -0.00600627064704895, + -0.03082321584224701, + -0.04599899798631668, + -0.023069441318511963, + -0.02549152262508869, + -0.04044773802161217, + 0.0010774178663268685, + -0.033317744731903076, + 0.04818422719836235, + -0.017062518745660782, + 0.030587900429964066, + -0.011556927114725113, + -0.027730971574783325, + -0.03261668607592583, + -0.01562844030559063, + -0.022915668785572052, + 0.06810200214385986, + 0.08317593485116959, + 0.06063605099916458, + 0.006428025662899017, + -2.320837744207438e-08, + -0.02527366764843464, + -0.05714999884366989, + 0.07396060973405838, + 0.015531472861766815, + 0.06436637043952942, + 0.006063893903046846, + -0.09231220930814743, + -0.07225833833217621, + -0.004598642233759165, + -0.05988094583153725, + 0.06783969700336456, + 0.09302884340286255, + -0.04317865148186684, + -0.06430691480636597, + -0.04841289296746254, + 0.0036062016151845455, + -0.01963554508984089, + 0.023697441443800926, + 0.0022244781721383333, + -0.054924312978982925, + 0.010518006980419159, + 0.07125274091959, + 0.09433373063802719, + -0.01754191890358925, + -0.03356023505330086, + -0.02657860517501831, + -0.003330645617097616, + 0.0558428056538105, + -0.009122715331614017, + -0.02468661405146122, + 0.049796368926763535, + 0.014881232753396034, + 0.004358918871730566, + -0.025874696671962738, + -0.141177698969841, + 0.023869603872299194, + -0.00012980368046555668, + 0.01665716990828514, + 0.022101642563939095, + 0.09156345576047897, + 0.027530087158083916, + -0.07472316920757294, + -0.0835752934217453, + -0.00665747607126832, + -0.13693247735500336, + -0.0032231216318905354, + 0.031148439273238182, + -0.04443857818841934, + -0.04082310199737549, + -0.06365740299224854, + 0.02295917272567749, + -0.019723553210496902, + 0.06392423808574677, + 0.10000771284103394, + 0.07259730249643326, + -0.005158528685569763, + 0.016994496807456017, + 0.04845631122589111, + 0.025901731103658676, + 0.0025567831471562386, + 0.14554235339164734, + 0.03155693784356117, + -0.0235624797642231, + -0.004448064602911472 + ], + "handbag-bold||suitcases,valises,baggage,purses": [ + -0.0004056855686940253, + 0.07274157553911209, + -0.05476047098636627, + 0.07491017132997513, + 0.05511670932173729, + -0.04598360136151314, + 0.15999636054039001, + -0.017657369375228882, + 0.022392719984054565, + -0.05136285722255707, + 0.03554488718509674, + 0.03402479737997055, + 0.04148441180586815, + 0.0010219014948233962, + -0.002906916430220008, + 0.018655473366379738, + 0.02674763835966587, + 0.025314316153526306, + -0.06349319219589233, + 0.10336625576019287, + -0.01346531044691801, + 0.05319571495056152, + -0.008480203337967396, + 0.011601807549595833, + 0.004649130627512932, + 0.05278988927602768, + 0.021474165841937065, + -0.03286626935005188, + 0.0498141385614872, + -0.04738052934408188, + -0.010846132412552834, + 0.03142348304390907, + 0.06573524326086044, + 0.06552013009786606, + 0.02240670658648014, + 0.02994537726044655, + 0.02050200290977955, + -0.031669311225414276, + -0.02434353530406952, + 0.050968196243047714, + -0.005241778679192066, + -0.0632677972316742, + -0.013956844806671143, + 0.05655619129538536, + -0.01834329403936863, + -0.011631597764790058, + -0.002696146024391055, + 0.0320289321243763, + 0.008757492527365685, + 0.01324814185500145, + 0.0022130461875349283, + -0.08492039889097214, + -0.11229114234447479, + 0.04243412986397743, + -0.005199025850743055, + -0.029270555824041367, + -0.0588114894926548, + -0.060292404145002365, + -0.011111672967672348, + -0.04845954105257988, + 0.010379709303379059, + 0.1060316413640976, + -0.029745476320385933, + 0.08410532772541046, + -0.0030315970070660114, + -0.009513188153505325, + 0.04490846395492554, + 0.018642608076334, + -0.10888752341270447, + 0.0403432622551918, + 0.04412919655442238, + 0.02603338658809662, + -0.061034318059682846, + 0.014879371970891953, + -0.02189406380057335, + 0.02618403360247612, + 0.03933988884091377, + -0.04584570974111557, + -0.023441042751073837, + -0.011506074108183384, + -0.12807483971118927, + -0.03925973176956177, + -0.07993140071630478, + 0.018468255177140236, + -0.014058045111596584, + -0.004973874427378178, + -0.06866563856601715, + -0.06718182563781738, + -0.008737640455365181, + -0.009683681651949883, + -0.07679161429405212, + -0.07109007984399796, + 0.014323988929390907, + 0.037126313894987106, + -0.13820621371269226, + 0.06738340854644775, + 0.03090735524892807, + 0.055437665432691574, + -0.06985269486904144, + 0.054486293345689774, + 0.03964471444487572, + 0.0828588530421257, + 0.0623868927359581, + 0.06648125499486923, + -0.020545316860079765, + -0.030991101637482643, + 0.026595376431941986, + -0.09739451110363007, + -0.05411563068628311, + 0.0013907760148867965, + -0.04557302966713905, + -0.041484251618385315, + -0.0022938167676329613, + -0.10353747755289078, + -0.03620490804314613, + -0.036118872463703156, + -0.029254551976919174, + 0.060933422297239304, + 0.04920611158013344, + 0.03613073378801346, + -0.037652965635061264, + 0.0037742345593869686, + 0.04093440622091293, + -0.03199067711830139, + -0.02994845062494278, + -0.0066201332956552505, + 0.014525352045893669, + -8.89489595769517e-34, + -0.04108087718486786, + 0.026610827073454857, + 0.003246025647968054, + 0.16945402324199677, + -0.029116863384842873, + -0.05491826683282852, + -0.08019598573446274, + -0.028914522379636765, + -0.06355193257331848, + 0.11014571785926819, + 0.03982134535908699, + 0.044380005449056625, + -0.014437860809266567, + 0.04518613591790199, + 0.12044301629066467, + 0.033872172236442566, + -0.03268107771873474, + -0.04598429054021835, + 0.03503843769431114, + -0.0039045102894306183, + -0.081211619079113, + -0.010939744301140308, + 0.06922049075365067, + -0.044776152819395065, + -0.01740184612572193, + -0.0001456215395592153, + 0.08397988229990005, + -0.020353417843580246, + 0.00812384020537138, + 0.0446973480284214, + 0.009551300667226315, + 0.05442710593342781, + 0.05831164866685867, + 0.03285599499940872, + -0.09847168624401093, + 0.06295853108167648, + -0.05962158367037773, + -0.006466521415859461, + -0.01585477776825428, + 0.05892227590084076, + -0.02587810531258583, + -0.0677427351474762, + -0.036117587238550186, + 0.03633181378245354, + 0.008295991457998753, + 0.0587540939450264, + 0.0412181057035923, + 0.01608332246541977, + 0.006398643832653761, + -0.012544197030365467, + -0.054951585829257965, + -0.03306272625923157, + 0.009636089205741882, + 0.01137473527342081, + -0.044002290815114975, + -0.02871634066104889, + 0.013997950591146946, + 0.05583467707037926, + -0.03368246182799339, + -0.022859150543808937, + 0.03599316626787186, + 0.05284406617283821, + 0.054497260600328445, + 0.04313446208834648, + 0.05247052386403084, + 0.005403283517807722, + 0.007785886526107788, + -0.026287592947483063, + 0.08301036059856415, + 0.014233953319489956, + -0.06859438121318817, + 0.07196080684661865, + 0.04922611266374588, + 0.07872340083122253, + 0.0315040722489357, + 0.0020993368234485388, + 0.09593219310045242, + 0.0266521405428648, + 0.02934119664132595, + -0.08768070489168167, + -0.06660354137420654, + 0.0057318368926644325, + 0.03902566432952881, + 0.1387045532464981, + -0.01586386375129223, + -0.00610385974869132, + 0.017832161858677864, + -0.06015847995877266, + -0.031152185052633286, + 0.03378445655107498, + -0.10662247985601425, + -0.011769691482186317, + -0.01517304964363575, + -0.13654585182666779, + -0.040021564811468124, + -8.727226382229755e-34, + 0.10273177921772003, + -0.006645641289651394, + -0.035484008491039276, + -0.014549441635608673, + 0.04279132932424545, + -0.03428327664732933, + -0.052913516759872437, + 0.009657341055572033, + -0.032215870916843414, + 0.01838146522641182, + -0.05803220346570015, + -0.09784698486328125, + -0.0333726592361927, + -0.01016818918287754, + 0.054227881133556366, + 0.01663457229733467, + 0.0368652269244194, + -0.030684038996696472, + -0.04072616994380951, + -0.022363130003213882, + -0.04714052006602287, + 0.0005056046647951007, + -0.015468396246433258, + 0.0430629588663578, + -0.11084511131048203, + -0.005171239376068115, + -0.02010175958275795, + -0.01900172419846058, + -0.10654905438423157, + -0.0018902415176853538, + 0.002191535197198391, + -0.0037555519957095385, + 0.0710761770606041, + 0.10832887887954712, + -0.0858900174498558, + -0.015880536288022995, + -0.007068227045238018, + -0.011774208396673203, + 0.08766761422157288, + 0.014370220713317394, + -0.005482678767293692, + -0.008568164892494678, + -0.009773307479918003, + 0.00016431444964837283, + -0.021969333291053772, + -0.0818573385477066, + -0.07105160504579544, + -0.0602768249809742, + 0.07067548483610153, + -0.015106317587196827, + 0.016477227210998535, + 0.021147096529603004, + -0.11782664060592651, + 0.05970088019967079, + -0.025375455617904663, + 0.009643711149692535, + -0.05589329078793526, + -0.07548415660858154, + 0.10860199481248856, + 0.004035042133182287, + -0.02115124650299549, + 0.1008288711309433, + -0.0380164310336113, + -0.034665074199438095, + 0.002885394962504506, + -0.021234851330518723, + -0.020406236872076988, + -0.00688143027946353, + -0.06515892595052719, + 0.048339467495679855, + 0.04168062284588814, + -0.04473614692687988, + 0.030771620571613312, + 0.01370770949870348, + 0.07877784967422485, + -0.003671579761430621, + 0.05728190019726753, + 0.020381124690175056, + 0.06635528802871704, + -0.01668459363281727, + -0.014167385175824165, + -0.10245790332555771, + -0.0501963309943676, + 0.09978323429822922, + 0.0002776779583655298, + 0.02628684788942337, + -0.030404075980186462, + 0.008649544790387154, + -0.007924453355371952, + -0.009088689461350441, + -0.004435116425156593, + 0.04356717690825462, + -0.0173538438975811, + 0.032548729330301285, + 0.022585175931453705, + -2.0015239243775795e-08, + 0.012659511528909206, + 0.008727633394300938, + -0.04277261346578598, + 0.000638333207461983, + -0.04727175086736679, + 0.015442336909472942, + -0.03385746479034424, + -0.02995399199426174, + -0.0397079698741436, + 0.028455810621380806, + 0.018082696944475174, + 0.0036845405120402575, + -0.08000767230987549, + -0.027119170874357224, + -0.05709860846400261, + 0.07136122137308121, + -0.059179726988077164, + 0.035165198147296906, + -0.07066575437784195, + -0.0703640878200531, + 0.035200927406549454, + 0.045916128903627396, + 0.05654092878103256, + -0.019649624824523926, + 0.0029111222829669714, + 0.0016273047076538205, + -0.10614475607872009, + -0.04836910963058472, + 0.03978727012872696, + 0.08971372991800308, + 0.07926523685455322, + 0.0561152920126915, + -0.05670323595404625, + -0.05681926757097244, + -0.030401455238461494, + -0.020430469885468483, + 0.00832423660904169, + -0.05052446946501732, + 0.08291395753622055, + 0.14570941030979156, + 0.018325040116906166, + -0.09390132874250412, + -0.06462171673774719, + -0.003349409205839038, + -0.013762664049863815, + 0.03004235215485096, + 0.006447296589612961, + 0.01387476921081543, + -0.08284633606672287, + -0.0036499961279332638, + 0.013911066576838493, + -0.04028860479593277, + 0.025678468868136406, + 0.05050870403647423, + -0.019749082624912262, + -0.055555976927280426, + 0.01081755105406046, + 0.03933867812156677, + 0.0037865303456783295, + 0.05491319298744202, + 0.03726915270090103, + -0.028332538902759552, + -0.013777483254671097, + 0.022529983893036842 + ], + "handbag-simple-bold||suitcases,valises,baggage,purses": [ + 0.010228270664811134, + 0.07580693811178207, + -0.04600753262639046, + 0.08233104646205902, + 0.060715753585100174, + -0.05029356852173805, + 0.14558792114257812, + -0.006134305149316788, + 0.008834347128868103, + -0.03789727762341499, + 0.03314586356282234, + 0.028143959119915962, + 0.038906075060367584, + 0.0029665632173419, + 7.86028103902936e-05, + 0.011041923426091671, + 0.015617313794791698, + 0.01225923653692007, + -0.05912011116743088, + 0.10611005872488022, + -0.026537705212831497, + 0.03979916125535965, + -0.019590171054005623, + 0.011537534184753895, + -0.001971802208572626, + 0.05264931917190552, + 0.02211660146713257, + -0.01855701394379139, + 0.06396438181400299, + -0.04850368946790695, + -0.00526398466899991, + 0.033372264355421066, + 0.0734073743224144, + 0.057166583836078644, + 0.018360480666160583, + 0.022847002372145653, + 0.02722233161330223, + -0.02092507854104042, + -0.03375885635614395, + 0.04746348410844803, + -0.015791919082403183, + -0.06595419347286224, + -0.014501835219562054, + 0.06827988475561142, + -0.02338406816124916, + -0.0163749847561121, + -0.008551453240215778, + 0.03584090620279312, + 0.009865367785096169, + -0.00038820054032839835, + 0.009761298075318336, + -0.08650901168584824, + -0.11695249378681183, + 0.028256582096219063, + -0.010496416129171848, + -0.02329430915415287, + -0.07397641986608505, + -0.05116542428731918, + -0.00875391811132431, + -0.055306583642959595, + 0.025327131152153015, + 0.09013835340738297, + -0.03190293163061142, + 0.07887134701013565, + -0.0015661786310374737, + -0.009561614133417606, + 0.03893476724624634, + 0.01239884365350008, + -0.10253148525953293, + 0.0361069031059742, + 0.04181665554642677, + 0.01799962855875492, + -0.071326345205307, + 0.028525425121188164, + -0.020072810351848602, + 0.007824543863534927, + 0.029941575601696968, + -0.033110346645116806, + -0.032034434378147125, + -0.0012138563906773925, + -0.14125484228134155, + -0.040900819003582, + -0.09292323887348175, + 0.0362362302839756, + -0.013659672811627388, + -0.004487986676394939, + -0.06605487316846848, + -0.06014404818415642, + -0.00041760780732147396, + -0.009574299678206444, + -0.06525524705648422, + -0.049808453768491745, + 0.023304061964154243, + 0.0351904071867466, + -0.1343688666820526, + 0.06367242336273193, + 0.04499942809343338, + 0.0620301254093647, + -0.09120672196149826, + 0.056770581752061844, + 0.039704762399196625, + 0.08729710429906845, + 0.08245003968477249, + 0.054989106953144073, + -0.01969706080853939, + -0.029034553095698357, + 0.028847839683294296, + -0.10754270851612091, + -0.05707566812634468, + -0.00751853222027421, + -0.053121790289878845, + -0.04825623333454132, + -0.0021923743188381195, + -0.09952662140130997, + -0.03969772532582283, + -0.03330431878566742, + -0.036616913974285126, + 0.052289608865976334, + 0.05072920396924019, + 0.05519232153892517, + -0.03210243210196495, + 0.008668901398777962, + 0.031604308634996414, + -0.03125167638063431, + -0.032009057700634, + 0.00660916231572628, + 0.022715745493769646, + -1.2676567813466012e-33, + -0.0362737663090229, + 0.04139408841729164, + -0.0019947439432144165, + 0.17693880200386047, + -0.029446814209222794, + -0.06564830243587494, + -0.08166328072547913, + -0.026091061532497406, + -0.06613678485155106, + 0.11621056497097015, + 0.06111079826951027, + 0.037285588681697845, + -0.012660844251513481, + 0.05199713259935379, + 0.13051386177539825, + 0.02682536281645298, + -0.025015175342559814, + -0.043233033269643784, + 0.031863048672676086, + -0.013417751528322697, + -0.08476193994283676, + 0.01908499002456665, + 0.07415907084941864, + -0.061638928949832916, + -0.00983012281358242, + 0.0007422864437103271, + 0.08758802711963654, + -0.025262851268053055, + 0.01450322289019823, + 0.041930705308914185, + 0.019970623776316643, + 0.04947414621710777, + 0.053193315863609314, + 0.035764653235673904, + -0.10247395187616348, + 0.05272877216339111, + -0.04441634193062782, + -0.009068307466804981, + -0.01490369439125061, + 0.04500950500369072, + -0.038664840161800385, + -0.0664479210972786, + -0.0284255500882864, + 0.030766578391194344, + 0.020732196047902107, + 0.06511467695236206, + 0.039046913385391235, + 0.010156904347240925, + 0.008126470260322094, + -0.014415199868381023, + -0.060372404754161835, + -0.02986552193760872, + 0.0026516825892031193, + 0.01774652674794197, + -0.036585669964551926, + -0.017330117523670197, + 0.013949085026979446, + 0.056834302842617035, + -0.040442802011966705, + -0.0181568693369627, + 0.03554807975888252, + 0.0640440285205841, + 0.041415296494960785, + 0.04812389612197876, + 0.045229680836200714, + 0.015073730610311031, + 0.0007500244537368417, + -0.02940317802131176, + 0.0855451226234436, + 0.014675663784146309, + -0.06520561873912811, + 0.07218945771455765, + 0.047818031162023544, + 0.060562003403902054, + 0.047760091722011566, + 0.011906815692782402, + 0.11767599731683731, + 0.009885523468255997, + 0.024350564926862717, + -0.08058823645114899, + -0.06246211379766464, + 0.01406626682728529, + 0.032632213085889816, + 0.147084042429924, + -0.03566059097647667, + -0.00936422310769558, + 0.018620023503899574, + -0.042730361223220825, + -0.04182880371809006, + 0.030164742842316628, + -0.11266998946666718, + -0.0051442598924040794, + -0.014835186302661896, + -0.13440537452697754, + -0.03313928842544556, + -3.3821759680465607e-34, + 0.10110514611005783, + -0.01463238149881363, + -0.03881242498755455, + -0.014276075176894665, + 0.04131613299250603, + -0.02481137029826641, + -0.04793184995651245, + 0.0009812646312639117, + -0.023882627487182617, + 0.024804946035146713, + -0.06427577883005142, + -0.09699582308530807, + -0.0404023602604866, + -0.005510272923856974, + 0.0551130585372448, + 0.026398487389087677, + 0.029274020344018936, + -0.017358077690005302, + -0.03404080122709274, + -0.022369178012013435, + -0.03681543096899986, + 0.015093051828444004, + -0.032362695783376694, + 0.024691348895430565, + -0.10309578478336334, + -0.0028986812103539705, + -0.030788753181695938, + -0.007405994459986687, + -0.101093590259552, + -0.004842639900743961, + -0.0010170076275244355, + -0.012588896788656712, + 0.0760868713259697, + 0.09290129691362381, + -0.08739637583494186, + -0.011982973664999008, + -0.02523197792470455, + -0.0027534470427781343, + 0.08970390260219574, + 0.008211253210902214, + -0.023424407467246056, + -0.008823267184197903, + 0.010309643112123013, + -0.016180530190467834, + -0.011857171542942524, + -0.08568713068962097, + -0.06950803101062775, + -0.07363578677177429, + 0.05327093228697777, + -0.024713583290576935, + 0.012340907007455826, + 0.01271907240152359, + -0.12010202556848526, + 0.05649512633681297, + -0.019617993384599686, + 0.015271972864866257, + -0.04345196858048439, + -0.07161807268857956, + 0.1061587780714035, + 0.007646918762475252, + -0.02358575537800789, + 0.1000111922621727, + -0.05733625218272209, + -0.0271756649017334, + -0.0004129183362238109, + -0.01976798288524151, + -0.02447100542485714, + -0.014881381765007973, + -0.07093558460474014, + 0.041057031601667404, + 0.03388802334666252, + -0.04098157584667206, + 0.041975151747465134, + 0.00094793172320351, + 0.08092507719993591, + -0.008967152796685696, + 0.056604914367198944, + 0.01914108172059059, + 0.07122234255075455, + -0.02653362974524498, + 0.0022253193892538548, + -0.10280998051166534, + -0.05214577540755272, + 0.08105085045099258, + 0.002945199841633439, + 0.030863791704177856, + -0.03136482462286949, + 0.004025974776595831, + -0.003771834308281541, + 0.00451322179287672, + -0.012669083662331104, + 0.05209202319383621, + -0.004965265281498432, + 0.04631366208195686, + 0.018257878720760345, + -2.1020920115688568e-08, + 0.014792591333389282, + -0.010868234559893608, + -0.03941376134753227, + 0.0014151926152408123, + -0.04410814493894577, + 0.012647991999983788, + -0.02706565149128437, + -0.033337242901325226, + -0.0372995026409626, + 0.03939366340637207, + 0.007465312723070383, + -0.005386399105191231, + -0.08437091112136841, + -0.004751955159008503, + -0.07081679999828339, + 0.08735550194978714, + -0.059027690440416336, + 0.040783658623695374, + -0.06303568929433823, + -0.07214649021625519, + 0.03844241797924042, + 0.041876085102558136, + 0.04455044865608215, + -0.016909290105104446, + 0.001041423063725233, + 0.00543175358325243, + -0.10840525478124619, + -0.03117525577545166, + 0.04684022068977356, + 0.0825580433011055, + 0.07449039071798325, + 0.06350306421518326, + -0.05592154711484909, + -0.04544874653220177, + -0.03742558881640434, + -0.014845054596662521, + 0.0014958688989281654, + -0.05246806517243385, + 0.06636439263820648, + 0.12790732085704803, + 0.028854699805378914, + -0.0817486047744751, + -0.06738775223493576, + -0.010487467981874943, + -0.007007858250290155, + 0.03200855106115341, + 0.005843448918312788, + 0.0029413884039968252, + -0.08060799539089203, + -0.004242075607180595, + 0.014062314294278622, + -0.041811179369688034, + 0.031391944736242294, + 0.0408191904425621, + -0.018445756286382675, + -0.04372352361679077, + 0.02054532989859581, + 0.043499041348695755, + -0.004065375309437513, + 0.057936012744903564, + 0.04284880682826042, + 0.006563493981957436, + -0.02147671766579151, + 0.023572901263833046 + ], + "hands-clapping-bold||emoji,clap,applause": [ + -0.05243905261158943, + -0.032569337636232376, + 0.04873647168278694, + -0.028059620410203934, + 0.016508592292666435, + -0.04332045465707779, + 0.11688026785850525, + -0.07284072786569595, + 0.08498887717723846, + -0.065606489777565, + 0.02008986286818981, + -0.009494462050497532, + 0.038023270666599274, + -0.007690283004194498, + -0.032927144318819046, + 0.022275051102042198, + 0.006925448775291443, + 0.028663313016295433, + -0.0016610519960522652, + 0.03580472990870476, + -0.01241201814264059, + 0.08491359651088715, + 0.015814265236258507, + 0.012684263288974762, + 0.03256562724709511, + -0.006293572019785643, + -0.014723921194672585, + -0.009141645394265652, + 0.03131677210330963, + 0.0076223695650696754, + -0.05710527300834656, + -0.03214167058467865, + 0.07797539979219437, + 0.03964606672525406, + -0.012013881467282772, + 0.06453905999660492, + -0.009960909374058247, + -0.024920588359236717, + -0.035967402160167694, + 0.08267968893051147, + 0.013268779963254929, + -0.11988988518714905, + 0.04142192378640175, + -0.006000397726893425, + 0.08640424907207489, + 0.03700028732419014, + -0.02966843731701374, + -0.036632467061281204, + 0.036639608442783356, + 0.031018933281302452, + -0.023204442113637924, + -0.09411846846342087, + -0.005407965276390314, + -0.05405847355723381, + 0.04556597024202347, + -0.01690891571342945, + -0.020763790234923363, + -0.03845662623643875, + 0.0694262906908989, + -0.002342663938179612, + 0.013598822988569736, + 0.0187421515583992, + 0.03386158496141434, + 0.01998807117342949, + 0.01521854754537344, + -0.03839845955371857, + 0.0730476900935173, + 0.04668291285634041, + -0.058055002242326736, + 0.11036662757396698, + 0.03769773989915848, + -0.005778371822088957, + 0.02482309564948082, + -0.007800917141139507, + -0.04660043492913246, + 0.032274678349494934, + -0.005073742941021919, + -0.04696924611926079, + -0.032952457666397095, + -0.0459723174571991, + -0.009859870187938213, + -0.10315631330013275, + -0.09595073759555817, + -0.06863194704055786, + -0.027657318860292435, + 0.05722305551171303, + -0.05326090753078461, + -0.017178568989038467, + -0.07054852694272995, + -0.0011154592502862215, + -0.16616560518741608, + -0.043747249990701675, + -0.026528747752308846, + 0.019843844696879387, + -0.03612016141414642, + -0.01744008995592594, + 0.07571886479854584, + -0.07600297033786774, + -0.13323481380939484, + 0.07194442301988602, + 0.003032475244253874, + 0.06511352211236954, + 0.02621513418853283, + -0.06262671202421188, + 0.022386997938156128, + -0.020942891016602516, + -0.09075181186199188, + -0.030623270198702812, + -0.033253878355026245, + -0.00626996299251914, + 0.004666440654546022, + -0.09563035517930984, + -0.032845497131347656, + -0.052118297666311264, + 0.005437612533569336, + -0.05943230912089348, + -0.14765281975269318, + -0.05694346874952316, + 0.0642356425523758, + 0.041116755455732346, + 0.04997456446290016, + -0.03293963894248009, + -0.09132936596870422, + -0.004087299108505249, + 0.021961478516459465, + -0.03963535279035568, + -0.033639322966337204, + -2.2833915316585547e-33, + 0.09199594706296921, + 0.0749174952507019, + 0.03156135231256485, + 0.031017353758215904, + 0.06309240311384201, + 0.03811482712626457, + -0.043171029537916183, + -0.05810164287686348, + -0.11264604330062866, + 0.03376993536949158, + 0.03367108851671219, + 0.0650155246257782, + 0.02069569192826748, + 0.020375773310661316, + 0.04069393873214722, + -0.017828745767474174, + 0.0215473510324955, + -0.006616837345063686, + -0.047135837376117706, + -0.01698884554207325, + 0.008238867856562138, + 0.09150772541761398, + -0.015093944035470486, + 0.018117045983672142, + -0.04349548742175102, + -0.108138307929039, + 0.08035764843225479, + 0.012897750362753868, + 0.03088293969631195, + 0.01587718166410923, + 0.04909292981028557, + 0.02723577432334423, + 0.038198813796043396, + -0.04892003908753395, + 0.012049137614667416, + -0.023591794073581696, + -0.03655717149376869, + -0.013431464321911335, + -0.018529918044805527, + 0.005292816553264856, + -0.026550104841589928, + -0.022042283788323402, + -0.0578899048268795, + 0.02090933732688427, + 0.0024049500934779644, + 0.11275316774845123, + -0.015170224942266941, + -0.07339747995138168, + 0.05921201407909393, + -0.08185436576604843, + -0.017714157700538635, + 0.0069808089174330235, + 0.03329319879412651, + 0.016278577968478203, + 0.0545462928712368, + -0.044775161892175674, + 0.050391945987939835, + 0.07542893290519714, + -0.03526218235492706, + -0.02095809206366539, + -0.06059646233916283, + -0.0020104649011045694, + 0.06863682717084885, + -0.034530531615018845, + -0.11710555106401443, + 0.08971057832241058, + -0.08872968703508377, + -0.024600086733698845, + 0.08534640818834305, + -0.004098454024642706, + 0.05378284305334091, + 0.05450974404811859, + 0.009294295683503151, + 0.07008108496665955, + -0.03629426285624504, + 0.017931481823325157, + 0.00379926897585392, + 0.003113415325060487, + 0.047067783772945404, + 0.02079620771110058, + -0.02529195137321949, + -0.0024544738698750734, + -0.022901048883795738, + 0.03374612703919411, + 0.12292349338531494, + 0.0033556718844920397, + -0.0341823473572731, + -0.044025711715221405, + -0.09901003539562225, + 0.06223049387335777, + -0.08789484947919846, + -0.024951361119747162, + 0.04932713508605957, + -0.042682211846113205, + -0.11889451742172241, + -2.4816164297346633e-34, + 0.0600125715136528, + 0.07014043629169464, + -0.06351689249277115, + 0.026459364220499992, + -0.04340121150016785, + 0.012725165113806725, + -0.03210959956049919, + 0.06684398651123047, + -0.051500387489795685, + -0.017631830647587776, + 0.038914769887924194, + 0.005217409692704678, + 0.003005302743986249, + -0.03678102418780327, + -0.02721867337822914, + 0.05031922832131386, + 0.05262245237827301, + 0.03924274817109108, + 5.883698759134859e-05, + 0.0591808520257473, + -0.0030362068209797144, + -0.03197472169995308, + 0.07920072227716446, + 0.09871181100606918, + -0.06638097018003464, + -0.01562568172812462, + 0.043140385299921036, + -0.02525247260928154, + -0.06718843430280685, + -0.08432640135288239, + -0.017291799187660217, + -0.053039245307445526, + -0.039244960993528366, + -0.01588360220193863, + -0.040738578885793686, + 0.015481188893318176, + 0.01862669736146927, + -0.06440763920545578, + 0.05836312845349312, + -0.002174781169742346, + 0.023364724591374397, + 0.005836731754243374, + 0.06463183462619781, + 0.07524549961090088, + 0.0261676125228405, + 0.06595863401889801, + -0.14791087806224823, + -0.013745111413300037, + 0.009693841449916363, + 0.012965498492121696, + -0.03218543156981468, + -0.05268923193216324, + -0.01195664145052433, + 0.00010159017256228253, + -0.007312319707125425, + -0.017636306583881378, + 0.060786716639995575, + -0.016893278807401657, + 0.0017113647190853953, + -0.0040623839013278484, + -0.01711941696703434, + -0.01270096842199564, + 0.02609337866306305, + 0.026604505255818367, + 0.017341136932373047, + 0.02340659871697426, + 0.05639038607478142, + 0.03511890769004822, + 0.04516088590025902, + 0.038386858999729156, + 0.07569057494401932, + 0.07529142498970032, + -0.024990813806653023, + 0.07268201559782028, + -0.012098601087927818, + 0.00010174519411521032, + 0.0018781917169690132, + 0.052454378455877304, + -6.972395931370556e-05, + -0.04083302244544029, + -0.09099239856004715, + -0.05228766053915024, + -0.0771254450082779, + 0.07268676906824112, + -0.05265698954463005, + 0.043339990079402924, + 0.07509671896696091, + 0.013676573522388935, + -0.0006790684419684112, + 0.03923647478222847, + -0.04170247167348862, + 0.08711478859186172, + 0.08032041043043137, + -0.03340914845466614, + 0.06272012740373611, + -1.90469418015482e-08, + 0.026094822213053703, + 0.019953753799200058, + -0.03333553671836853, + -0.07405392080545425, + 0.037173815071582794, + -0.0008996945689432323, + -0.022580208256840706, + -0.06006373465061188, + 0.009612759575247765, + -0.06334604322910309, + 0.014187894761562347, + 0.05039333552122116, + -0.01748555712401867, + -0.007378879934549332, + 0.02893599309027195, + 0.033698853105306625, + -0.03660404682159424, + 0.013529234565794468, + -0.004031181335449219, + -0.0997316837310791, + 0.05686170235276222, + 0.014847866259515285, + 0.038245201110839844, + 0.0478634312748909, + -0.008656011894345284, + -0.02787431888282299, + -0.054809678345918655, + 0.021548045799136162, + -0.10182958841323853, + -0.04126695543527603, + 0.027250247076153755, + -0.04997607693076134, + -0.10258281975984573, + -0.04420744627714157, + -0.09338897466659546, + 0.057992804795503616, + -0.009300556033849716, + -0.036666519939899445, + 0.06165459007024765, + 0.07200097292661667, + -0.011374203488230705, + -0.00821768119931221, + -0.007394293323159218, + -0.005401984788477421, + -0.0735745057463646, + 0.002865366404876113, + 0.08490531891584396, + -0.033160045742988586, + -0.04174228385090828, + -0.0888616219162941, + 0.018037859350442886, + 0.00039607062353752553, + -0.013920423574745655, + 0.02171303704380989, + 0.042678847908973694, + 0.041101954877376556, + -0.004173512104898691, + 0.08021630346775055, + 0.044712357223033905, + 0.04299258440732956, + 0.12440796196460724, + 0.04222473129630089, + -0.07087169587612152, + 0.03152662515640259 + ], + "hands-praying-bold||emoji,religion,worship,prayer,thanks,thank you": [ + -0.04651057720184326, + 0.03107520006597042, + 0.0510762482881546, + -0.048812612891197205, + 0.007351549807935953, + -0.062752366065979, + 0.07786330580711365, + -0.12549751996994019, + 0.11267227679491043, + -0.06406395137310028, + -0.005383973941206932, + -0.0030652806162834167, + 0.03438492491841316, + -0.022970927879214287, + -0.004456039518117905, + 0.059054579585790634, + -0.04297143220901489, + 0.046458423137664795, + -0.000910350470803678, + 0.04608911648392677, + -0.05831792578101158, + 0.07245832681655884, + 0.04165513440966606, + 0.0010236214147880673, + 0.009579021483659744, + 0.031995922327041626, + -0.05003573000431061, + -0.026907803490757942, + 0.02461472526192665, + -0.04297869652509689, + -0.06063193082809448, + -0.009644903242588043, + 0.06353256851434708, + 0.01908821053802967, + -0.03846307098865509, + 0.0850621685385704, + -0.0020811245776712894, + 0.026376036927103996, + 0.0059739514254033566, + 0.011297858320176601, + 0.015855593606829643, + -0.07445524632930756, + -0.014813504181802273, + -0.001637062057852745, + 0.017812566831707954, + 0.022111430764198303, + -0.03957813233137131, + -0.0032702949829399586, + 0.03554369881749153, + -0.028077002614736557, + -0.028507573530077934, + -0.09162290394306183, + -0.012230231426656246, + 0.04999338090419769, + 0.02479313127696514, + -0.03565121069550514, + -0.0463847890496254, + -0.0637483075261116, + 0.013891004957258701, + 0.026513418182730675, + 0.012479632161557674, + 0.028593452647328377, + 0.059459708631038666, + 0.04853704571723938, + -0.0020076935179531574, + -0.09591981768608093, + 0.06540291011333466, + -0.004591475706547499, + -0.07820579409599304, + 0.0452144481241703, + -0.007794566918164492, + -0.03420814499258995, + 0.0018575787544250488, + -0.01726990006864071, + -0.07099348306655884, + 0.025973180308938026, + -0.0014870068989694118, + -0.13315817713737488, + -0.02680268883705139, + -0.03294680640101433, + -0.05636953189969063, + -0.055830925703048706, + -0.03183269873261452, + -0.013004705309867859, + -0.029653076082468033, + 0.0458025187253952, + -0.039778176695108414, + -0.026131240651011467, + -0.007877317257225513, + -0.02865300327539444, + -0.07235611230134964, + 0.007712187711149454, + -0.04439987614750862, + -0.007069058250635862, + -0.028904687613248825, + 0.017995765432715416, + 0.07084482908248901, + -0.07881941646337509, + -0.16121742129325867, + 0.10188057273626328, + 0.030233046039938927, + 0.04868701845407486, + 0.04726897552609444, + -0.015279743820428848, + 0.01752454601228237, + -3.695738996611908e-05, + -0.10129109025001526, + -0.07275056838989258, + -0.056382425129413605, + -0.03979101404547691, + 0.049208398908376694, + -0.045557811856269836, + -0.07115355879068375, + -0.0785471722483635, + -0.05990444868803024, + -0.04223596677184105, + -0.10564828664064407, + -0.04235401377081871, + 0.08174677193164825, + 0.07219500839710236, + -0.021614503115415573, + -0.03888152912259102, + -0.03776419162750244, + -0.025475485250353813, + -0.0010491445427760482, + -0.012674317695200443, + -0.02004091814160347, + -2.871819024425237e-33, + 0.10608256608247757, + 0.04988657310605049, + 0.0729990154504776, + 0.04399844631552696, + 0.07061762362718582, + 0.031062429770827293, + -0.07181292027235031, + -0.04728924483060837, + -0.12299070507287979, + -0.02672937884926796, + 0.060896389186382294, + 0.05011620372533798, + 0.012073799036443233, + 0.057660095393657684, + 0.008388184942305088, + -0.07168691605329514, + 0.02124229446053505, + -0.04361242055892944, + -0.021716836839914322, + 0.015061219222843647, + 0.005434586200863123, + -0.0002664704225026071, + -0.042014915496110916, + 0.016006791964173317, + 0.007192875724285841, + -0.047510646283626556, + 0.05801612138748169, + -0.00044762654579244554, + 0.08430667221546173, + 0.03967828303575516, + 0.0045550731010735035, + 0.020565545186400414, + 0.046435218304395676, + -0.022627651691436768, + -0.021463599056005478, + 0.039157718420028687, + -0.04097145423293114, + -0.016569843515753746, + -0.01921555958688259, + -0.053403351455926895, + 0.06892417371273041, + -0.05131416395306587, + -0.021547777578234673, + 0.03552963584661484, + -0.030192412436008453, + 0.05860218033194542, + -0.004823334515094757, + -0.06775671988725662, + 0.02220332995057106, + 0.0009635500609874725, + -0.005475532729178667, + -0.0030143563635647297, + 0.011364681646227837, + -0.0500418022274971, + -0.00998739805072546, + -0.0918627679347992, + 0.02202429249882698, + 0.07573482394218445, + -0.02904585190117359, + -0.002463645301759243, + -0.06961505860090256, + -0.05686569958925247, + 0.02012329362332821, + -0.02147398330271244, + -0.01903594844043255, + 0.0030908307526260614, + -0.06594901531934738, + 0.027950681746006012, + 0.07328379154205322, + 0.03299250453710556, + 0.012345029041171074, + 0.04637802019715309, + 0.09909872710704803, + 0.0903206393122673, + -0.03700300306081772, + 0.015755482017993927, + 0.031042449176311493, + -0.035014405846595764, + 0.06126290187239647, + 0.014191375114023685, + 0.004815520253032446, + 0.06970057636499405, + -0.03274250403046608, + 0.07435150444507599, + 0.11179161816835403, + -0.06691589206457138, + -0.0066497111693024635, + -0.07877420634031296, + -0.10279028117656708, + 0.030631642788648605, + -0.033683475106954575, + 0.06701545417308807, + 0.09516352415084839, + -0.11764349043369293, + -0.17131876945495605, + 1.0172555461283299e-33, + 0.04854894429445267, + 0.04705860838294029, + -0.026579199358820915, + 0.03772420436143875, + -0.02121403068304062, + -0.04843801259994507, + -0.005090467166155577, + 0.1015402302145958, + 0.023528022691607475, + 0.016759200021624565, + 0.034817520529031754, + 0.0033171186223626137, + 0.0004856013401877135, + -0.036514684557914734, + -0.07304941862821579, + 0.03429890051484108, + 0.027450470253825188, + 0.09070942550897598, + 0.0019783952739089727, + 0.0337996631860733, + 0.021432040259242058, + 0.020891912281513214, + 0.018355196341872215, + 0.07248714566230774, + -0.07555697858333588, + 0.007841472513973713, + 0.02624768577516079, + -0.03095613792538643, + -0.04129378870129585, + -0.05852590501308441, + -0.0406760536134243, + -0.016946518793702126, + 0.004198690410703421, + 0.036553144454956055, + -0.03676086291670799, + 0.003064613789319992, + 0.012747670523822308, + -0.03631383553147316, + 0.07519001513719559, + 0.0147358113899827, + 0.05892753228545189, + 0.028580667451024055, + 0.08629695326089859, + 0.03917057812213898, + 0.011376111768186092, + 0.001093170023523271, + -0.12263945490121841, + 0.03954940661787987, + 0.005452440585941076, + -0.01214304193854332, + 0.002421959536150098, + -0.08640477806329727, + -0.02567264810204506, + -0.027851831167936325, + 0.0324026457965374, + -0.02149316295981407, + -0.03305881470441818, + -0.02895422838628292, + -0.012029032222926617, + 0.04846295714378357, + 0.010455206967890263, + 0.04545607790350914, + 0.002610655501484871, + 0.06216345354914665, + -0.003570032771676779, + 0.04049494490027428, + 0.014849798753857613, + 0.024371441453695297, + -0.009510309435427189, + 0.05683040991425514, + 0.012726819142699242, + 0.048553790897130966, + -0.042300865054130554, + 0.019902369007468224, + 0.014045383781194687, + 7.308418571483344e-05, + 0.04990190267562866, + -0.01633516326546669, + 0.01989404298365116, + 0.003115779720246792, + 0.00023760070325806737, + -0.058126505464315414, + -0.11872188746929169, + 0.01779739186167717, + 0.061602406203746796, + -0.0023436082992702723, + -0.015126124024391174, + 0.0358230397105217, + -0.021542595699429512, + 0.03464796766638756, + -0.06903906911611557, + 0.12751954793930054, + 0.03400982916355133, + 0.03710348904132843, + 0.038930494338274, + -2.0324108618297032e-08, + 0.06531068682670593, + -0.03756897151470184, + 0.015056314878165722, + -0.04160013422369957, + 0.12039971351623535, + 0.009657717309892178, + 0.03538208082318306, + -0.14147429168224335, + -0.019658276811242104, + -0.059897683560848236, + 0.03216266632080078, + 0.04277535155415535, + -0.0506320558488369, + -0.02201884612441063, + 0.02822217158973217, + 0.03232308849692345, + -0.019753366708755493, + 0.017937354743480682, + 0.0025699164252728224, + -0.11599843204021454, + 0.04602062329649925, + 0.08809330314397812, + 0.06167873367667198, + -0.01426522433757782, + 0.03198206424713135, + 0.01281294971704483, + -0.09346923232078552, + 0.053464945405721664, + -0.10751888900995255, + 0.03012738563120365, + 0.08218499273061752, + -0.008478052914142609, + -0.039153289049863815, + -0.02175973914563656, + -0.06761928647756577, + -0.007729686331003904, + -0.07096108049154282, + -0.06326272338628769, + 0.03281581029295921, + 0.055639784783124924, + 0.07977155596017838, + -0.015114914625883102, + -0.020870530977845192, + -0.013654966838657856, + -0.07158660888671875, + 0.0052839722484350204, + 0.06055369973182678, + 0.0158823411911726, + -0.06233328580856323, + -0.06656798720359802, + 0.044771917164325714, + -0.02016800455749035, + 0.04454655572772026, + -0.0029554911889135838, + -0.019723085686564445, + 0.03485977277159691, + 0.03125260770320892, + 0.09359242022037506, + 0.0731937438249588, + -0.021559732034802437, + 0.11514658480882645, + 0.04508974030613899, + -0.02968958392739296, + 0.04219421371817589 + ], + "handshake-bold||emoji,deal,agreement": [ + -0.06418497115373611, + 0.04477168992161751, + 0.04304687678813934, + -0.015570113435387611, + -0.013105359859764576, + -0.07408083230257034, + 0.13002289831638336, + -0.015205932781100273, + 0.11036551743745804, + -0.030579568818211555, + -0.010543376207351685, + -0.02199285849928856, + 0.024707147851586342, + 0.022888708859682083, + 0.03272789344191551, + 0.005738330539315939, + -0.011056953109800816, + -0.01015007309615612, + -0.050172824412584305, + 0.05305684357881546, + -0.0407542921602726, + 0.010921087116003036, + 0.017915690317749977, + -0.05546386167407036, + 0.006228807847946882, + -0.015324421226978302, + -0.0023741922341287136, + 0.006400155834853649, + 0.04069575294852257, + -0.043083470314741135, + -0.05204131081700325, + -0.0017036827048286796, + 0.12916924059391022, + 0.07895082235336304, + -0.025689147412776947, + 0.05485449358820915, + 0.02401239611208439, + -0.03984420746564865, + -0.010461000725626945, + 0.034595832228660583, + -0.03204687684774399, + -0.07361064106225967, + 0.011685638688504696, + 0.03398708254098892, + 0.015348881483078003, + 0.06553592532873154, + -0.038371309638023376, + 0.04061596468091011, + -0.04526720941066742, + -0.01070922426879406, + 0.015878809615969658, + -0.04373357445001602, + -0.04392146319150925, + -0.004355840850621462, + 0.02779453434050083, + 0.015694433823227882, + -0.08894027024507523, + -0.0431562177836895, + 0.03894080966711044, + 0.01955418474972248, + -0.012474806979298592, + -0.009551476687192917, + 0.044435396790504456, + 0.041861359030008316, + 0.05984347686171532, + -0.06290905922651291, + 0.09854914993047714, + 0.021845176815986633, + -0.08947105705738068, + 0.0806024819612503, + 0.02775309607386589, + -0.04264155775308609, + -0.02478066086769104, + -0.028715619817376137, + -0.0594218373298645, + 0.06738888472318649, + 0.026334181427955627, + -0.057470932602882385, + -0.003911167848855257, + -0.0403013713657856, + -0.05241170898079872, + -0.09186147898435593, + -0.05733382701873779, + -0.013979600742459297, + 0.015033631585538387, + -0.0041150595061481, + -0.06437601149082184, + -0.045239001512527466, + 0.030130930244922638, + 0.008227515034377575, + -0.14521582424640656, + -0.012799089774489403, + 0.018459023907780647, + -0.05098390579223633, + -0.014548894949257374, + 0.04336366429924965, + 0.04528161510825157, + 0.03698068857192993, + -0.14310698211193085, + 0.10595610737800598, + 0.007977699860930443, + 0.07916674017906189, + 0.007874645292758942, + -0.08914711326360703, + -0.013893119059503078, + -0.0014942472334951162, + -0.03781060501933098, + -0.08264358341693878, + 0.026150880381464958, + 0.024775920435786247, + -0.08345751464366913, + -0.07966683059930801, + 0.012316158041357994, + -0.014855625107884407, + -0.0052053602412343025, + -0.01170374546200037, + -0.05196768045425415, + -0.025806592777371407, + 0.10916119813919067, + -0.04741426929831505, + 0.023568425327539444, + -0.026597242802381516, + -0.11625701189041138, + -0.009328553453087807, + -0.060641832649707794, + -0.035787783563137054, + 0.040485773235559464, + -2.1661835409510414e-33, + 0.050624486058950424, + 0.06943666189908981, + -0.027324452996253967, + 0.04895421117544174, + 0.02968405745923519, + 0.051089752465486526, + -0.05312024801969528, + -0.05079040303826332, + -0.1559741050004959, + 0.06287690997123718, + 0.03843807429075241, + 0.06370246410369873, + 0.0544501468539238, + 0.050948355346918106, + 0.00914529524743557, + 0.00148290756624192, + 0.02681955136358738, + -0.03916293755173683, + -0.014128795824944973, + -0.02274058759212494, + 0.035082120448350906, + 0.008783809840679169, + 0.012051613070070744, + 0.04356375336647034, + -0.06684540957212448, + -0.061024438589811325, + 0.08785653859376907, + 0.0264126043766737, + 0.06344133615493774, + -0.022616645321249962, + -0.024943828582763672, + 0.04769858717918396, + 0.024358443915843964, + -0.001481924089603126, + 0.038485120981931686, + 0.026760034263134003, + -0.0068992446176707745, + -0.02569996379315853, + -0.021259697154164314, + 0.004805796314030886, + -0.07400920242071152, + 0.0009223516099154949, + -0.12254621088504791, + -0.01532907597720623, + -0.0018958061700686812, + 0.08190540224313736, + -0.050316549837589264, + -0.0810973197221756, + 0.0384226031601429, + -0.03612467646598816, + -0.0450340174138546, + -0.0006033809040673077, + -0.028711752966046333, + -0.0068363165482878685, + 0.028326168656349182, + -0.07531078159809113, + -0.0015310380840674043, + 0.04333307966589928, + -0.07156039029359818, + 0.02872553840279579, + -0.0010318452259525657, + -0.04390247166156769, + 0.03418207913637161, + -0.0025614562910050154, + -0.002135949209332466, + 0.06906624883413315, + -0.11041592061519623, + 0.032387424260377884, + 0.05570663511753082, + -0.03516487404704094, + 0.05062538757920265, + 0.05150634050369263, + 0.03921077400445938, + 0.07220059633255005, + -0.016422806307673454, + 0.011682453565299511, + 0.026843173429369926, + 0.09142530709505081, + 0.06784390658140182, + -0.0009520960738882422, + -0.026170864701271057, + 0.011135959066450596, + 0.006935360375791788, + 0.05126526206731796, + 0.04351171851158142, + -0.01374528743326664, + -0.007726704701781273, + -0.039753884077072144, + -0.03588098660111427, + 0.127329021692276, + -0.09839478880167007, + -0.03665420413017273, + 0.11229430139064789, + 0.007671547122299671, + 0.0017227923963218927, + -2.1739512096301766e-36, + 0.022237468510866165, + 0.07181082665920258, + -0.039774615317583084, + 0.05833636224269867, + -0.0024112574756145477, + 0.01961740106344223, + 0.03920639306306839, + 0.07866036891937256, + 0.037677764892578125, + 0.032771140336990356, + 0.05603088438510895, + -0.021142352372407913, + 0.022088520228862762, + -0.07055000215768814, + 0.03183111175894737, + -0.03426565229892731, + 0.061292797327041626, + 0.05398455262184143, + 0.04138241708278656, + 0.05725358799099922, + 0.029115598648786545, + -0.0716995894908905, + -0.00802212581038475, + 0.06828414648771286, + -0.006892706733196974, + 0.030773505568504333, + 0.04768433794379234, + -0.07188025861978531, + -0.1540166735649109, + -0.029861843213438988, + -0.03677031397819519, + -0.040763597935438156, + -0.015835076570510864, + 0.05152999609708786, + -0.0030364040285348892, + -0.02983294241130352, + 0.02124120108783245, + -0.053840868175029755, + 0.061933089047670364, + 0.00549343042075634, + 0.058420486748218536, + -0.019368471577763557, + -0.009608236141502857, + 0.09360898286104202, + 0.02997787855565548, + 0.0029011634178459644, + -0.13602569699287415, + -0.06339742243289948, + 0.03253959119319916, + -0.016123076900839806, + 0.07579135149717331, + 0.005769647657871246, + -0.04478607699275017, + -0.11193403601646423, + -0.0036192883271723986, + -0.0013687434839084744, + 0.026574011892080307, + -0.00198752642609179, + 0.008554606698453426, + 0.01446363516151905, + 0.030621830374002457, + -0.025324268266558647, + 0.036077044904232025, + -0.008297977969050407, + 0.00864037498831749, + 0.04258111119270325, + 0.03596198186278343, + 0.04014214500784874, + 0.081348717212677, + 0.05523279681801796, + 0.028588812798261642, + -0.020382767543196678, + -0.01897403597831726, + 0.03618185594677925, + 0.12509186565876007, + -0.07130809873342514, + -0.022397449240088463, + -0.043557606637477875, + 0.018344752490520477, + 0.022608976811170578, + -0.09747781604528427, + 0.03219687193632126, + -0.03298546001315117, + 0.06189099699258804, + 0.02199563942849636, + 0.04775163158774376, + -0.010083755478262901, + 0.034920427948236465, + -0.007144702132791281, + 0.01276052463799715, + -0.0003165555535815656, + 0.06654874980449677, + 0.06754948198795319, + 0.0008020996465347707, + 0.07417257875204086, + -1.9073086221510493e-08, + 0.022937869653105736, + -0.03229855000972748, + -0.03724811226129532, + -0.08915839344263077, + 0.03597395867109299, + 0.03732674568891525, + -0.06764152646064758, + -0.11677905172109604, + 0.01016448438167572, + 0.02002609334886074, + 0.016111087054014206, + 0.044780537486076355, + -0.09439492970705032, + -0.055753253400325775, + -0.04090527072548866, + 0.014873174019157887, + -0.06540621072053909, + -0.025301726534962654, + -0.03511704504489899, + -0.0431850366294384, + 0.018352964892983437, + 0.05381311476230621, + 0.02189980447292328, + 0.052484672516584396, + -0.038754478096961975, + -0.04398370906710625, + -0.01104545034468174, + 0.07293112576007843, + -0.14695680141448975, + -0.028358226642012596, + -0.00466661062091589, + -0.036548811942338943, + -0.048441480845212936, + -0.0723530724644661, + -0.06390406936407089, + -0.014121021144092083, + -0.038257863372564316, + -0.07028555870056152, + 0.06973492354154587, + 0.08511213958263397, + 0.015553079545497894, + 0.003950738348066807, + -0.02727106399834156, + -0.000604282773565501, + -0.03395463153719902, + 0.0496007539331913, + 0.002030567731708288, + -0.011006062850356102, + -0.10821964591741562, + -0.06049133092164993, + -0.0012631688732653856, + -0.026142112910747528, + 0.02626587264239788, + 0.012154593132436275, + 0.012317133136093616, + -0.03625728562474251, + -0.005547218956053257, + 0.05428525432944298, + 0.027502885088324547, + 0.00716405687853694, + 0.09355511516332626, + 0.0010518948547542095, + -0.07370763272047043, + -0.03252043575048447 + ], + "hard-drive-bold||saved,saving,archived,archiving,archival,hard disk,storage,hdd,servers,databases": [ + -0.03015054762363434, + -0.015003967098891735, + -0.0541209913790226, + 0.008618388324975967, + 0.03270412236452103, + -0.02337541989982128, + -0.0026725383941084146, + 0.0013206034200266004, + 0.004670124500989914, + 0.019920622929930687, + 0.011812783777713776, + 0.07982122898101807, + 0.08516540378332138, + -0.029266638681292534, + -0.09928026050329208, + 0.0274734478443861, + -0.04830846190452576, + -0.025983968749642372, + 0.014634473249316216, + 0.05707094073295593, + -0.004542461596429348, + 0.04990570992231369, + 0.012293508276343346, + 0.03207642212510109, + 0.07333750277757645, + -0.005517748650163412, + 0.015974845737218857, + -0.0141638508066535, + 0.012177687138319016, + -0.08326447010040283, + -0.05507903918623924, + -0.026747962459921837, + 0.05816774070262909, + 0.06532998383045197, + 0.06857433170080185, + 0.018177002668380737, + 0.015551767311990261, + 0.012797468341886997, + -0.009065024554729462, + -0.10417567938566208, + 0.032395925372838974, + -0.04011647403240204, + -0.038334935903549194, + 0.05997174605727196, + -0.02179005555808544, + 0.029375335201621056, + -0.0017218285938724875, + -0.0375930480659008, + -3.655976979644038e-05, + -0.0012071302626281977, + 0.00016526352555956692, + -0.05679890885949135, + -0.10870518535375595, + 0.09271840751171112, + 0.04747224599123001, + 0.05401676520705223, + 0.030764684081077576, + 0.004126181825995445, + -0.0429534874856472, + 0.029801197350025177, + 0.026973869651556015, + -0.05125381052494049, + 0.029570087790489197, + 0.015559247694909573, + 0.037869229912757874, + 0.047160692512989044, + 0.01669689081609249, + 0.02724020928144455, + -0.037740930914878845, + -0.03763730078935623, + -0.023897038772702217, + 0.006090867333114147, + -0.07245588302612305, + 0.06681821495294571, + -0.028078662231564522, + -0.029129963368177414, + 0.05822164937853813, + -0.0020491001196205616, + -0.0738556757569313, + -0.03146838769316673, + -0.0383559949696064, + -0.053410373628139496, + -0.03413648158311844, + 0.022728197276592255, + -0.022638043388724327, + 0.029543733224272728, + -0.07055598497390747, + -0.07393930107355118, + -0.04605361074209213, + -0.1062503308057785, + -0.009665796533226967, + -0.05104420334100723, + 0.11277735233306885, + -0.0027424627915024757, + -0.12468905746936798, + -0.0099813062697649, + 0.12169251590967178, + 0.008862112648785114, + 0.03298395872116089, + 0.0275708194822073, + 0.013184004463255405, + 0.038243722170591354, + 0.06185458227992058, + -0.043837737292051315, + -0.09683801978826523, + -0.09356170147657394, + 0.049739643931388855, + 0.01421897578984499, + -0.055861663073301315, + -0.04381495714187622, + -0.03676842153072357, + -0.0485735647380352, + -0.08079251646995544, + 0.002476972294971347, + -0.03183583542704582, + -0.08412743359804153, + -0.13519525527954102, + 0.018661540001630783, + 0.021912982687354088, + -0.009962505660951138, + 0.04583146423101425, + -0.05556660145521164, + 0.05877203866839409, + -0.06770484894514084, + 0.019899802282452583, + -0.05747254937887192, + 0.03950968757271767, + 5.613779328246338e-35, + 0.0892791897058487, + 0.016428140923380852, + -0.04278922826051712, + 0.045249804854393005, + -0.017951343208551407, + 0.03231726214289665, + -0.06441999971866608, + -0.03457454591989517, + -0.07657846063375473, + 0.028110984712839127, + 0.08695506304502487, + 0.12625378370285034, + -0.051388710737228394, + 0.04927954077720642, + 0.10291633009910583, + 0.0038327444344758987, + 0.00395014276728034, + 0.03456230089068413, + -0.021024296060204506, + -0.05619683489203453, + -0.006798901595175266, + 0.12321565300226212, + -0.01626570150256157, + -0.033452242612838745, + 0.057914964854717255, + -0.0781594067811966, + 0.029775653034448624, + -0.0802234634757042, + -0.005934669636189938, + 0.002971390262246132, + -0.027689971029758453, + -0.031036335974931717, + 0.03446808457374573, + -0.01629730314016342, + 0.03057584911584854, + 0.06679641455411911, + -0.07199348509311676, + -0.026216086000204086, + -0.014995540492236614, + -0.014487187378108501, + -0.0476410835981369, + -0.003606657264754176, + 0.014953897334635258, + -0.02674727886915207, + 0.0441463403403759, + 0.07916691154241562, + -0.010390185751020908, + -0.027150887995958328, + -0.024482209235429764, + 0.06587270647287369, + -0.04786115139722824, + -0.0017733403947204351, + 0.04491346701979637, + 0.00652321195229888, + -0.01916823536157608, + 0.022938281297683716, + 0.029149046167731285, + 0.00015044445171952248, + 0.030968783423304558, + 0.047158051282167435, + 0.0054295300506055355, + 0.009053261019289494, + 0.0868021696805954, + -0.016900941729545593, + -0.049491025507450104, + 0.047429461032152176, + 0.027553044259548187, + 0.004068042617291212, + 0.06207611411809921, + 0.020509863272309303, + -0.018012866377830505, + -0.017474839463829994, + 0.009128211066126823, + -0.0023929253220558167, + 0.017248081043362617, + 0.0022730783093720675, + -0.04407140240073204, + -0.046472202986478806, + -0.06732853502035141, + -0.0859483927488327, + -0.09927878528833389, + -0.10056919604539871, + -0.09814441204071045, + 0.09257085621356964, + -0.0025554727762937546, + 0.06521675735712051, + 0.0045367018319666386, + -0.06014847755432129, + -0.021842310205101967, + -0.013578999787569046, + -0.05088861286640167, + 0.027714787051081657, + 0.01840725727379322, + -0.036473941057920456, + -0.09538111090660095, + -1.9721266887035594e-33, + 0.01249661948531866, + -0.053762227296829224, + -0.01975998841226101, + 0.042115163058042526, + -0.02594592422246933, + 0.026069652289152145, + -0.04789779707789421, + 0.052786409854888916, + -0.03685210272669792, + 0.01765221171081066, + 0.003948448225855827, + 0.002214774489402771, + -0.041283927857875824, + -0.07997269928455353, + -0.011782714165747166, + 0.040522731840610504, + 0.016305988654494286, + -0.08264455199241638, + -0.026475587859749794, + 0.04054757580161095, + -0.05614433065056801, + 0.002804896328598261, + -0.030123667791485786, + 0.0596374049782753, + 0.0450931154191494, + 0.03395021706819534, + -0.0696847066283226, + 0.012400559149682522, + 0.005914555862545967, + 0.005140309687703848, + -0.025027725845575333, + -0.03190900385379791, + 0.019958756864070892, + -0.031813837587833405, + -0.06676213443279266, + -0.030817493796348572, + 0.08064756542444229, + -0.03552661091089249, + -0.06774100661277771, + 0.01644876040518284, + 0.01338269654661417, + 0.044597916305065155, + 0.006316028535366058, + 0.02490459755063057, + -0.03166286647319794, + -0.018719132989645004, + -0.10751950740814209, + -0.04282388463616371, + 0.019733063876628876, + 0.023504028096795082, + 0.09958834946155548, + -0.0586070753633976, + 0.02385055273771286, + -0.006563847418874502, + 0.044586580246686935, + 0.0012581461342051625, + 0.01200249046087265, + 0.09589987248182297, + 0.0027597672306001186, + 0.019195467233657837, + -0.02799905464053154, + -0.0221160426735878, + -0.016820941120386124, + 0.026677774265408516, + -0.0868818536400795, + -0.06616996973752975, + 0.08937139064073563, + -0.061191000044345856, + -0.15650254487991333, + 0.01354386005550623, + 0.04270059987902641, + 0.011229542084038258, + 0.02007548324763775, + 0.025778191164135933, + -0.007084609474986792, + -0.03957261145114899, + 0.03898930549621582, + -0.02045130357146263, + 0.009195386432111263, + 0.032322801649570465, + -0.018658475950360298, + 0.059605423361063004, + -0.019315194338560104, + 0.08286245912313461, + -0.017821362242102623, + -0.08732098340988159, + -0.06289245933294296, + -0.05602751672267914, + -0.023609736934304237, + -0.0859084501862526, + -0.03942963108420372, + 0.03292788565158844, + -0.049433134496212006, + 0.024869749322533607, + -0.005016829818487167, + -2.2350327810727322e-08, + -0.007003741338849068, + -0.038479793816804886, + -0.01841595768928528, + 0.024099301546812057, + 0.07104761898517609, + -0.13873443007469177, + 0.00566345639526844, + 0.12535016238689423, + -0.03517486900091171, + -0.04856213927268982, + 0.1236715018749237, + -0.07093094289302826, + -0.07442168146371841, + -0.046535566449165344, + 0.012037062086164951, + 0.07374513894319534, + 0.02484760992228985, + 0.006612987723201513, + -0.0277726911008358, + 0.03832767531275749, + 0.036746758967638016, + 0.03931222856044769, + 0.07518632709980011, + 0.007020800374448299, + 0.08280803263187408, + -0.014744910411536694, + -0.009392844513058662, + 0.010916045866906643, + 0.06794968247413635, + 0.04236743226647377, + 0.08012686669826508, + 0.05779218673706055, + 0.07591503858566284, + 0.01852160319685936, + -0.02022113837301731, + 0.021119169890880585, + 0.016091685742139816, + 0.08670389652252197, + 0.033827655017375946, + 0.14161841571331024, + -0.004816368687897921, + -0.04654012620449066, + 0.004273576196283102, + 0.01684410125017166, + -0.020965788513422012, + -0.061230555176734924, + -0.048267897218465805, + 0.024617018178105354, + -0.017589431256055832, + -0.03679386526346207, + -0.0806552842259407, + -0.028615251183509827, + 0.02696702815592289, + 0.06130635738372803, + -0.014816458337008953, + -0.003877910552546382, + 0.04002846032381058, + 0.08525829017162323, + 0.02502753958106041, + 0.06188075616955757, + 0.18097032606601715, + -2.6705196432885714e-05, + 0.016044331714510918, + 0.022737912833690643 + ], + "hard-drives-bold||saved,saving,archived,archiving,archival,hard disk,storage,hdd,servers,databases": [ + -0.024704696610569954, + -0.020055687054991722, + -0.05193065479397774, + 0.013744139112532139, + 0.02154310792684555, + -0.025045830756425858, + -0.010272453539073467, + 0.00032178344554267824, + -0.002480172784999013, + 0.015964370220899582, + 0.010159417986869812, + 0.08699341118335724, + 0.09476450830698013, + -0.023385068401694298, + -0.09466063976287842, + 0.022159559652209282, + -0.04643707349896431, + -0.033428408205509186, + 0.01317755226045847, + 0.06799820810556412, + -0.0036388151347637177, + 0.03621196374297142, + 0.010280407965183258, + 0.03099684603512287, + 0.06877072900533676, + -0.003367064520716667, + 0.01383933238685131, + -0.01617427170276642, + 0.019242677837610245, + -0.07588808983564377, + -0.059395816177129745, + -0.026279490441083908, + 0.04817171022295952, + 0.06769927591085434, + 0.0657009705901146, + 0.012770697474479675, + 0.020043449476361275, + 0.00793111976236105, + -0.013167919591069221, + -0.11008930951356888, + 0.04213661327958107, + -0.04066367447376251, + -0.03281846269965172, + 0.05832071602344513, + -0.01893243007361889, + 0.03135837987065315, + -0.002141892910003662, + -0.04605161398649216, + -0.012895984575152397, + -0.00872605387121439, + 0.0005650022649206221, + -0.057972852140665054, + -0.09785385429859161, + 0.09437192976474762, + 0.045760735869407654, + 0.041935086250305176, + 0.02451198920607567, + 0.002115441020578146, + -0.038293443620204926, + 0.03088960237801075, + 0.028673741966485977, + -0.055893585085868835, + 0.030194498598575592, + 0.004867786541581154, + 0.03209172189235687, + 0.047016315162181854, + 0.0270534735172987, + 0.03507731109857559, + -0.03456513211131096, + -0.030320443212985992, + -0.02565738931298256, + 0.009855443611741066, + -0.06716319173574448, + 0.07373657822608948, + -0.020991327241063118, + -0.02601272240281105, + 0.05482901260256767, + -0.01696009561419487, + -0.08260977268218994, + -0.04060749337077141, + -0.04371068626642227, + -0.0597078874707222, + -0.039262693375349045, + 0.01772530935704708, + -0.022932812571525574, + 0.027768809348344803, + -0.07578706741333008, + -0.06208482012152672, + -0.04877413436770439, + -0.10765929520130157, + 0.006933144293725491, + -0.04699011519551277, + 0.10952809453010559, + -0.0034362180158495903, + -0.11828010529279709, + -0.015135291963815689, + 0.10705041140317917, + 0.011335428804159164, + 0.03885887190699577, + 0.020010851323604584, + 0.015400368720293045, + 0.031096864491701126, + 0.06797110289335251, + -0.03379673883318901, + -0.1079574003815651, + -0.09383000433444977, + 0.03611593320965767, + 0.008085601031780243, + -0.06285956501960754, + -0.040992721915245056, + -0.048654019832611084, + -0.03608495742082596, + -0.07759120315313339, + 0.0019958477932959795, + -0.03840503469109535, + -0.0890350416302681, + -0.13624368607997894, + 0.013139735907316208, + 0.012192605063319206, + -0.023993831127882004, + 0.03552849963307381, + -0.06052350252866745, + 0.0631052553653717, + -0.06673112511634827, + 0.020896784961223602, + -0.05313665419816971, + 0.024943431839346886, + 7.802584821760348e-35, + 0.08642875403165817, + 0.020182432606816292, + -0.043119221925735474, + 0.04532649740576744, + -0.027835989370942116, + 0.0270254984498024, + -0.06524260342121124, + -0.03644920885562897, + -0.045104220509529114, + 0.029302004724740982, + 0.08184364438056946, + 0.13424240052700043, + -0.04075952619314194, + 0.044892750680446625, + 0.11385144293308258, + -0.001541069126687944, + 0.012305745854973793, + 0.03787827119231224, + -0.023398661985993385, + -0.05503668636083603, + -0.009933811612427235, + 0.12425784021615982, + 0.0021454498637467623, + -0.026656419038772583, + 0.06277759373188019, + -0.0684167742729187, + 0.021897301077842712, + -0.07954089343547821, + -0.011115165427327156, + 0.00442036846652627, + -0.02195901796221733, + -0.025356361642479897, + 0.03892089053988457, + -0.002699288772419095, + 0.04548204317688942, + 0.0753648430109024, + -0.07432504743337631, + -0.025536974892020226, + -0.01575406827032566, + -0.027691129595041275, + -0.04690355807542801, + -0.0045804898254573345, + 0.011739988811314106, + -0.01937471330165863, + 0.03665686026215553, + 0.0813436433672905, + -0.015855150297284126, + -0.016469107940793037, + -0.022931043058633804, + 0.06254364550113678, + -0.05212422087788582, + 0.008342612534761429, + 0.030779682099819183, + 0.0007564191473647952, + 0.0010972389718517661, + 0.03532499447464943, + 0.025672195479273796, + -0.010026495903730392, + 0.019608136266469955, + 0.047667909413576126, + -0.0017727555241435766, + 0.0039034176152199507, + 0.08322324603796005, + -0.028092671185731888, + -0.055794987827539444, + 0.05939857289195061, + 0.02636634185910225, + 0.0009819860570132732, + 0.05714179947972298, + 0.023173779249191284, + -0.00946649257093668, + -0.018013983964920044, + -0.004209755454212427, + -0.002832520753145218, + 0.030507506802678108, + 0.009537294507026672, + -0.048473093658685684, + -0.04862869530916214, + -0.06094272434711456, + -0.08036104589700699, + -0.09078984707593918, + -0.09411295503377914, + -0.11138874292373657, + 0.09871458262205124, + -0.00881960615515709, + 0.06985554844141006, + 0.009912621229887009, + -0.06742206960916519, + -0.012175948359072208, + -0.01707030087709427, + -0.04918885976076126, + 0.0238944161683321, + 0.027237193658947945, + -0.03969482704997063, + -0.1031024232506752, + -2.1314643969445436e-33, + 0.008060507476329803, + -0.04002779722213745, + -0.02831847593188286, + 0.042765386402606964, + -0.028254544362425804, + 0.02562037855386734, + -0.0470496229827404, + 0.04916612431406975, + -0.026688432320952415, + 0.008511269465088844, + -0.0016374087426811457, + 0.003344173077493906, + -0.05301731079816818, + -0.08593137562274933, + -0.021913131698966026, + 0.03294917196035385, + 0.024409998208284378, + -0.08439699560403824, + -0.014598118141293526, + 0.025395996868610382, + -0.047666702419519424, + 0.009683715179562569, + -0.02663356438279152, + 0.06180045008659363, + 0.038816601037979126, + 0.03946048393845558, + -0.07622609287500381, + 0.005629995372146368, + 0.009634609334170818, + 0.010436730459332466, + -0.021317843347787857, + -0.029435670003294945, + 0.023576870560646057, + -0.022503366693854332, + -0.06360679864883423, + -0.03372882306575775, + 0.08184650540351868, + -0.024801105260849, + -0.06602564454078674, + 0.009357511065900326, + 0.018753325566649437, + 0.04630207270383835, + 0.0108876284211874, + 0.02906818874180317, + -0.042818643152713776, + -0.018311452120542526, + -0.11165596544742584, + -0.03772130236029625, + 0.026661895215511322, + 0.020013026893138885, + 0.09133102744817734, + -0.05581493675708771, + 0.030868183821439743, + -0.017676765099167824, + 0.04774823784828186, + -0.01187776867300272, + 0.01824321784079075, + 0.08701768517494202, + 0.008827047422528267, + 0.027097364887595177, + -0.03155573830008507, + -0.027319729328155518, + -0.014190870337188244, + 0.03191055729985237, + -0.09907261282205582, + -0.06480596959590912, + 0.10018295049667358, + -0.06892118602991104, + -0.1466446965932846, + 0.011755239218473434, + 0.048804719001054764, + -0.0013046450912952423, + 0.02728656865656376, + 0.01199753675609827, + -0.0202688816934824, + -0.03893394395709038, + 0.024439189583063126, + -0.020304083824157715, + 0.013808278366923332, + 0.02505216747522354, + -0.02742518112063408, + 0.05530600994825363, + -0.01086550485342741, + 0.0899740606546402, + -0.017986176535487175, + -0.08882734179496765, + -0.05861475318670273, + -0.06817933917045593, + -0.015056938864290714, + -0.08265198767185211, + -0.02692740596830845, + 0.02800963819026947, + -0.03269701078534126, + 0.04244387149810791, + -0.007466871291399002, + -2.2017591305711903e-08, + 0.0022245903965085745, + -0.03576786443591118, + -0.018122952431440353, + 0.01894964836537838, + 0.05586910992860794, + -0.14577975869178772, + -0.00045109211350791156, + 0.1382375806570053, + -0.03995540365576744, + -0.03735964000225067, + 0.13363116979599, + -0.06939233839511871, + -0.06351875513792038, + -0.04457774758338928, + 0.02423221617937088, + 0.0750671848654747, + 0.02892959490418434, + 0.011159470304846764, + -0.031529128551483154, + 0.039768654853105545, + 0.032282762229442596, + 0.037713997066020966, + 0.07621870934963226, + 0.016489660367369652, + 0.08734545856714249, + -0.014292293228209019, + -0.01424853689968586, + -0.004035383928567171, + 0.062268976122140884, + 0.05528848618268967, + 0.08496195822954178, + 0.05460025742650032, + 0.0839371383190155, + 0.025844117626547813, + -0.015200209803879261, + 0.023864973336458206, + 0.023522619158029556, + 0.07845223695039749, + 0.03857613727450371, + 0.13606323301792145, + -0.010590652003884315, + -0.0590926855802536, + 0.0004377985605970025, + 0.018550937995314598, + -0.010114599019289017, + -0.057182442396879196, + -0.06152234971523285, + 0.029645010828971863, + -0.021787220612168312, + -0.025677712634205818, + -0.08674899488687515, + -0.01842692866921425, + 0.025847556069493294, + 0.0532430075109005, + -0.021996673196554184, + -0.007207573391497135, + 0.038637299090623856, + 0.08173906803131104, + 0.0325746051967144, + 0.058093663305044174, + 0.1711207777261734, + 0.002361307619139552, + 0.018172435462474823, + 0.020212644711136818 + ], + "hard-hat-bold||*new*,safety,construction,industry,helmet,ppe": [ + -0.05295167490839958, + 0.008002599701285362, + 0.025883056223392487, + -0.008453731425106525, + 0.10182562470436096, + 0.0603172741830349, + 0.08967813104391098, + 0.05335221067070961, + -0.08138152956962585, + 0.06532474607229233, + -0.0008857663488015532, + -0.0051112850196659565, + 0.04817277938127518, + 0.009013833478093147, + -0.016408279538154602, + 0.00954440888017416, + 0.01608404889702797, + -0.011172104626893997, + 0.0324489064514637, + -0.021544890478253365, + 0.002695163944736123, + 0.07082030922174454, + -0.017309915274381638, + 0.04473065957427025, + -0.02870907261967659, + 0.03318607062101364, + -0.0005079798283986747, + 0.06542778015136719, + -0.004664529114961624, + -0.09480635076761246, + -0.07352019101381302, + -0.02312011457979679, + 0.10736404359340668, + 0.011909544467926025, + 0.04099992662668228, + 0.025192977860569954, + 0.031963277608156204, + 0.0334356464445591, + 0.006790127605199814, + 0.07740200310945511, + -0.01728883385658264, + -0.054314080625772476, + -0.05853217467665672, + -0.033889565616846085, + 0.017351951450109482, + 0.04802698642015457, + 0.006558671593666077, + -0.029184503480792046, + -0.010686902329325676, + 0.04208933562040329, + 0.06685318797826767, + -0.08149990439414978, + -0.0027983917389065027, + -0.047505248337984085, + 0.0459783673286438, + 0.001157982973381877, + -0.05408447980880737, + 0.01980569399893284, + 0.004162516910582781, + -0.01391717791557312, + 0.0047699217684566975, + -0.01810779608786106, + -0.0077189733274281025, + 0.06732236593961716, + 0.05149810016155243, + -0.016270840540528297, + -0.0297539159655571, + -0.01379365287721157, + -0.05850570648908615, + 0.013869297690689564, + -0.01543007418513298, + -0.01685298979282379, + -0.08316297829151154, + -0.026857104152441025, + -0.0375467948615551, + -0.05145261809229851, + 0.01260637678205967, + -0.06390219926834106, + -0.0017414198955520988, + -0.04730292782187462, + -0.04803800210356712, + -0.05128797888755798, + -0.012266956269741058, + 1.3689491424884181e-05, + 0.010153920389711857, + 0.07805315405130386, + -0.06341905891895294, + 0.007270223461091518, + -0.03703149035573006, + -0.05708865448832512, + -0.07699142396450043, + -0.046708300709724426, + 0.04660623520612717, + 0.06821316480636597, + 0.04739183560013771, + 0.0497148334980011, + -0.02815234661102295, + 0.006711199413985014, + -0.0349564366042614, + 0.12104388326406479, + 0.01020844653248787, + -0.04098040610551834, + -0.03873042017221451, + -0.033962346613407135, + -0.0333222858607769, + -0.054230522364377975, + -0.035049330443143845, + 0.0067344424314796925, + -0.016998548060655594, + 0.05976436659693718, + 0.0025783535093069077, + -0.03157668188214302, + -0.027885695919394493, + -0.046294644474983215, + -0.0746287927031517, + -0.024229394271969795, + -0.12095050513744354, + 0.011542800813913345, + 0.047183435410261154, + 0.06784629821777344, + 0.033186666667461395, + 0.0020252724643796682, + -0.025724561884999275, + -0.06248443201184273, + -0.04661562293767929, + -0.06154575198888779, + 0.0016989537980407476, + -3.4560489003335296e-33, + -0.0001358259323751554, + 0.05804617330431938, + -0.01192842423915863, + 0.08378573507070541, + 0.0011256325524300337, + 0.035813044756650925, + -0.035212475806474686, + -0.009205291047692299, + -0.020633146166801453, + 0.09423381835222244, + 0.025652194395661354, + 0.10285055637359619, + -0.05326494202017784, + 0.03595978021621704, + 0.10486800968647003, + -0.04955786466598511, + -0.031670961529016495, + 0.010881726630032063, + -0.12835294008255005, + -0.031128225848078728, + -0.10909347236156464, + 0.057663917541503906, + -0.014620977453887463, + 0.04452576860785484, + 0.001084508141502738, + 0.02208641730248928, + 0.07447078824043274, + -0.019577035680413246, + -0.036379143595695496, + 0.04412570968270302, + -0.029314380139112473, + 0.016056016087532043, + 0.029331836849451065, + 0.019337480887770653, + -0.02892170287668705, + 0.012144997715950012, + -0.05924768000841141, + -0.08776986598968506, + -0.06249174475669861, + 0.019493022933602333, + -0.04973805695772171, + -0.02167884260416031, + -0.034402601420879364, + 0.03186443820595741, + 0.036108121275901794, + 0.059364963322877884, + -0.024560511112213135, + 0.017647303640842438, + -0.02340732328593731, + -0.0026307886000722647, + -0.021244889125227928, + 0.03311872109770775, + 0.017008842900395393, + -0.03348945453763008, + -0.03678607940673828, + 0.017953133210539818, + -0.06512762606143951, + 0.08544706553220749, + 0.05176805332303047, + 0.008490445092320442, + 0.02510131523013115, + 0.08438187092542648, + 0.021226732060313225, + -0.027358943596482277, + -0.006125524640083313, + 0.04938346520066261, + -0.023770583793520927, + 0.030655989423394203, + 0.07279525697231293, + -0.0062662530690431595, + 0.024843869730830193, + 0.07313454896211624, + 0.023643016815185547, + 0.023693474009633064, + 0.0602288581430912, + 0.023338714614510536, + -0.00428116787225008, + 0.09431571513414383, + 0.04750692471861839, + -0.0912403017282486, + -0.11568190157413483, + 0.09782149642705917, + -0.023319264873862267, + 0.03506051376461983, + 0.05710902437567711, + -0.025075852870941162, + 0.03784831985831261, + -0.008854640647768974, + -0.06982584297657013, + 0.009772835299372673, + -0.032823722809553146, + -0.04060504585504532, + -0.07759541273117065, + 0.004404245410114527, + -0.08861696720123291, + 1.3556162685537482e-33, + -0.020941808819770813, + 0.034619156271219254, + 0.0031469950918108225, + 0.023312414065003395, + 0.012827601283788681, + -0.014587854035198689, + 0.011096489615738392, + -0.008017693646252155, + 0.06092453375458717, + 0.026682119816541672, + 0.025631865486502647, + -0.01391647569835186, + -0.029790425673127174, + 0.013251693919301033, + 0.07477295398712158, + -0.0410282127559185, + -0.04970817640423775, + 0.04198340326547623, + -0.053678736090660095, + 0.027967551723122597, + 0.10766872018575668, + -0.019231360405683517, + -0.10337119549512863, + 0.03845428302884102, + -0.03862208500504494, + 0.011863305233418941, + -0.06574077904224396, + -0.02975478582084179, + -0.054094552993774414, + 0.017513522878289223, + -0.06167148798704147, + -0.008274946361780167, + -0.04091322422027588, + 0.142687126994133, + -0.08531592786312103, + 0.0052281515672802925, + -0.0003789204347413033, + 0.021306119859218597, + -0.033347100019454956, + -0.029817547649145126, + -0.02821059711277485, + -0.05239168927073479, + 0.09102129936218262, + 0.025354336947202682, + -0.03199414908885956, + -0.06619182229042053, + -0.037494707852602005, + -0.09781422466039658, + -0.012747193686664104, + 0.03543664515018463, + 0.013285730965435505, + 0.006352389696985483, + -0.004632832482457161, + -0.017799735069274902, + -0.04167689010500908, + 0.018645357340574265, + -0.08760393410921097, + -0.022548343986272812, + -0.042232055217027664, + 0.017364615574479103, + 0.07551981508731842, + 0.026485776528716087, + -0.04097414016723633, + 0.18203037977218628, + 0.023064667358994484, + -0.06787516176700592, + -0.08561453968286514, + -0.06600897014141083, + -0.039904482662677765, + 0.024631163105368614, + 0.0478893518447876, + 0.0016595509368926287, + -0.0364220105111599, + -0.015203711576759815, + -0.06801935285329819, + -0.07819212228059769, + 0.04486067220568657, + 0.0768289789557457, + 0.03565018251538277, + 0.08399561792612076, + 0.018500080332159996, + -0.04538800194859505, + -0.06675966084003448, + 0.12332691997289658, + 0.0601767897605896, + 0.012284071184694767, + 0.016476275399327278, + -0.03745754808187485, + 0.03052714839577675, + -0.033849384635686874, + -0.10119958221912384, + 0.08210058510303497, + -0.04344618320465088, + 0.03777947276830673, + -0.07526922225952148, + -2.3371521606918577e-08, + 0.04609941691160202, + 0.023214643821120262, + -0.0626566931605339, + -0.010903888382017612, + 0.030573805794119835, + -0.0702996701002121, + -0.06904130429029465, + -0.04995545744895935, + -0.07906894385814667, + -0.051811106503009796, + 0.01584472507238388, + -0.025981253013014793, + -0.033020857721567154, + 0.023565983399748802, + 0.003349179867655039, + 0.058678243309259415, + -0.06470565497875214, + 0.1263611614704132, + -0.05385534092783928, + -0.1125602200627327, + 0.003648625686764717, + 0.09260029345750809, + 0.05474375560879707, + 0.011190482415258884, + -0.03085949644446373, + 0.02998410537838936, + 0.002329504583030939, + 0.0018077726708725095, + 0.04446740821003914, + 0.1577395796775818, + 0.03562670946121216, + 0.07516001164913177, + -0.07982727885246277, + -0.0640827864408493, + -0.03353691101074219, + 0.003638593479990959, + -0.01731283590197563, + 0.016597971320152283, + 0.012963071465492249, + 0.054624494165182114, + -0.0019394729752093554, + -0.012507891282439232, + 0.05253126844763756, + 0.04123692214488983, + 0.02030782774090767, + 0.02069210633635521, + -0.004507327452301979, + -0.026754818856716156, + -0.054199934005737305, + -0.09773117303848267, + 0.07286134362220764, + -0.03108089044690132, + 0.015020220540463924, + 0.0430821068584919, + -0.07790091633796692, + 0.07308217883110046, + 0.05744670331478119, + -0.009348281659185886, + -0.07288085669279099, + -0.025839844718575478, + 0.02815728634595871, + -0.025662660598754883, + 0.11004729568958282, + 0.05549466237425804 + ], + "hash-bold||hashtag,octothorpe,pound sign,number sign,tic-tac-toe,symbol": [ + 0.04051077738404274, + -0.024792414158582687, + -0.02758023515343666, + -0.0021193637512624264, + 0.000387201172998175, + -0.03406958281993866, + 0.08987437188625336, + -0.010556275025010109, + 0.05681328848004341, + -0.026587534695863724, + 0.02894173003733158, + -0.02246273308992386, + 0.06149871647357941, + -0.04647241160273552, + -0.009443494491279125, + 0.007911001332104206, + -0.021358292549848557, + -0.002296590246260166, + -0.05703578144311905, + -0.010703385807573795, + 0.027646733447909355, + -0.02196231111884117, + 0.04063773900270462, + 0.023791629821062088, + 0.01680287905037403, + 0.059826821088790894, + 0.01482668798416853, + 0.056401535868644714, + 0.06606844812631607, + -0.07411515712738037, + 0.009155109524726868, + 0.010722245089709759, + 0.06957928836345673, + -0.002698080614209175, + 0.03960570693016052, + 0.04676147177815437, + 0.006702475715428591, + -0.012906299903988838, + 0.026219729334115982, + 0.015380209311842918, + 0.009208747185766697, + -0.092009536921978, + -0.04219741374254227, + 0.004750711843371391, + -0.05698186531662941, + 0.10385660082101822, + -0.07291046530008316, + 0.04614681750535965, + -0.06690739840269089, + 0.027280157431960106, + 0.082318015396595, + -0.12219167500734329, + -0.11295537650585175, + 0.049315616488456726, + 0.051205746829509735, + -0.040922291576862335, + -0.06543853878974915, + -0.07401224225759506, + 0.039664920419454575, + -0.03789598494768143, + -0.04176434502005577, + 0.09809938818216324, + 0.047724176198244095, + 0.005307979881763458, + 0.06972803920507431, + 0.0002879248932003975, + 0.01715310476720333, + -0.010226820595562458, + -0.003491113893687725, + 0.039274416863918304, + 0.05719158425927162, + -0.056537676602602005, + -0.033811505883932114, + 0.02633950673043728, + -0.03453196585178375, + 0.023290270939469337, + 0.020965874195098877, + -0.04781915619969368, + 0.02781045250594616, + -0.030291685834527016, + -0.17984525859355927, + -0.045617036521434784, + 0.002189531922340393, + 0.024496061727404594, + 0.04671711102128029, + 0.05810977518558502, + -0.05814313143491745, + -0.018474387004971504, + 0.017360782250761986, + 0.009350494481623173, + -0.04200771450996399, + 0.021125929430127144, + 0.054236676543951035, + 0.005076027940958738, + 0.019756602123379707, + 0.03601355850696564, + 0.0754716694355011, + 0.0781603679060936, + -0.10380340367555618, + 0.1007775291800499, + 0.03375684469938278, + 0.07078565657138824, + -0.012881715781986713, + -0.02423093467950821, + 0.034364499151706696, + 0.0026934025809168816, + -0.01803092285990715, + -0.012541343457996845, + 0.03619987145066261, + -0.018005874007940292, + 0.029605086892843246, + -0.055129487067461014, + -0.007759782951325178, + -0.07575824856758118, + -0.06979002058506012, + -0.06162005290389061, + -0.03636447712779045, + -0.042657520622015, + 0.08690240979194641, + 0.004726734012365341, + -0.024386735633015633, + -0.06858772784471512, + -0.06722594052553177, + -0.09423528611660004, + -0.06611113995313644, + -0.02080652303993702, + -0.045808497816324234, + -3.597500589589539e-34, + 0.03587384149432182, + 0.07598955184221268, + -0.013743233866989613, + 0.012303234077990055, + -0.01468433067202568, + 0.03169259801506996, + -0.07107969373464584, + -0.038789331912994385, + -0.04452879726886749, + 0.08322600275278091, + 0.023357683792710304, + 0.06217590719461441, + 0.006047401577234268, + 0.0338820181787014, + 0.05269848555326462, + -0.03934670612215996, + 0.04301108419895172, + -0.059067822992801666, + -0.10065881162881851, + -0.016763409599661827, + -0.01859257183969021, + 0.011257940903306007, + -0.006945336703211069, + -0.031670983880758286, + 0.0012021667789667845, + 0.03639818727970123, + 0.033579546958208084, + -0.06203369051218033, + 0.031490568071603775, + 0.03628251329064369, + 0.0843898355960846, + 0.02406129613518715, + -0.0017549587646499276, + -0.044178687036037445, + -0.03293866291642189, + -0.058961182832717896, + -0.04136674106121063, + -0.029732611030340195, + -0.018071547150611877, + -0.014990750700235367, + 0.016974633559584618, + -0.07770134508609772, + -0.0495695024728775, + -0.044240765273571014, + 0.02006665989756584, + 0.10326505452394485, + 0.003431944642215967, + -0.055578771978616714, + 0.059930168092250824, + -0.028575759381055832, + 0.03509017080068588, + -0.011672379449009895, + 0.003273529000580311, + -0.022942669689655304, + -0.002838204149156809, + -0.09176306426525116, + -0.012240593321621418, + 0.01927814818918705, + -0.04515423998236656, + 0.021692568436264992, + -0.03273695707321167, + 0.00863646436482668, + 0.13938003778457642, + 0.008392510935664177, + -0.03438339754939079, + -0.03295593336224556, + -0.0630350261926651, + 0.011846056208014488, + 0.05417545139789581, + 0.022701572626829147, + -0.07283517718315125, + 0.055993661284446716, + 0.053954627364873886, + 0.01498931273818016, + -0.01713382638990879, + -0.007945905439555645, + -0.007606831379234791, + -0.05115196853876114, + 0.02246309258043766, + 0.03719279170036316, + -0.08032038062810898, + -0.019066963344812393, + -0.010258827358484268, + 0.03682982549071312, + 0.042245522141456604, + 0.041166193783283234, + 0.009669368155300617, + -0.15311676263809204, + -0.05489684268832207, + -0.013454855419695377, + -0.06067529320716858, + -0.018117841333150864, + -0.04961627349257469, + -0.08321122080087662, + -0.09327620267868042, + -1.257779781899313e-33, + 0.018663277849555016, + 0.049192026257514954, + -0.06618320941925049, + 0.05220675468444824, + -0.025749381631612778, + -0.04746101051568985, + 0.046451594680547714, + 0.006595470476895571, + -0.029542675241827965, + 0.004245104268193245, + 0.07245371490716934, + 0.020540742203593254, + -0.08960047364234924, + 7.4882414082821924e-06, + 0.05658786743879318, + 0.03622728958725929, + -0.0006304514827206731, + 0.07926549762487411, + -0.010681843385100365, + 0.006705653853714466, + -0.03194315731525421, + -0.07355372607707977, + -0.09124108403921127, + 0.0790080726146698, + 0.007424607872962952, + 0.030812295153737068, + 0.07508759200572968, + -0.048510171473026276, + 0.05974014848470688, + -0.01373288594186306, + 0.0013774094404652715, + 0.05056842416524887, + 0.08233710378408432, + 0.04279503598809242, + -0.07746923714876175, + -0.029757600277662277, + 0.06988125294446945, + -0.028646860271692276, + 0.02197338081896305, + 0.050049107521772385, + 0.07491838932037354, + -0.00224664737470448, + 0.06417524814605713, + 0.035378631204366684, + -0.07426317781209946, + -0.010658248327672482, + -0.0034552409779280424, + 0.030291279777884483, + 0.002282277913764119, + 0.04258660972118378, + 0.13502679765224457, + -0.07122883945703506, + -0.04093443229794502, + 0.00789481308311224, + -0.04778451845049858, + -0.005615381058305502, + -0.030548689886927605, + 0.015016032382845879, + -0.10972969233989716, + 0.04858003184199333, + -0.023003220558166504, + 0.033149708062410355, + 0.09375378489494324, + 0.06677566468715668, + -0.04284578189253807, + -0.012136553414165974, + -0.031574796885252, + -0.03657041862607002, + -0.009321758523583412, + -0.0008296900196000934, + 0.00490233302116394, + -0.002597606275230646, + -0.009528834372758865, + 0.04599537327885628, + 0.04436824843287468, + -0.08389416337013245, + 0.07371899485588074, + 0.07179203629493713, + 0.039852388203144073, + -0.001613632426597178, + -0.06238630414009094, + 0.01249704696238041, + -0.05232882499694824, + 0.06079043447971344, + 0.034499093890190125, + 0.023504162207245827, + -0.011323542334139347, + 0.09480204433202744, + -0.014794999733567238, + -0.017768073827028275, + -0.04824576899409294, + 0.0935761108994484, + 0.012534753419458866, + 0.013960336335003376, + -0.02070940099656582, + -2.6024736143881455e-08, + -0.05982345715165138, + -0.0399186909198761, + -0.0013559175422415137, + -0.0425894670188427, + 0.05638645589351654, + 0.08289648592472076, + -0.002302563516423106, + -0.12157062441110611, + -0.03507772833108902, + 0.022288016974925995, + 0.06428950279951096, + 0.025996951386332512, + -0.11699391156435013, + -0.10527461767196655, + 6.206721445778385e-05, + 0.05132961645722389, + -0.06446053087711334, + 0.03731576353311539, + -0.01806812360882759, + -0.0497942790389061, + -0.0462970957159996, + 0.08455969393253326, + 0.029047517105937004, + -0.03916604444384575, + -0.0027838307432830334, + 0.027951115742325783, + -0.04925725609064102, + 0.06427805125713348, + -0.007843024097383022, + 0.047019023448228836, + 0.09152954816818237, + 0.054850053042173386, + 0.03569234162569046, + -0.13228297233581543, + -0.03363870829343796, + 0.022615624591708183, + -0.005471914075314999, + -0.009794841520488262, + 0.005542720668017864, + 0.09087491780519485, + -0.005287725944072008, + 0.005242170300334692, + -0.04706552252173424, + -0.04902612790465355, + -0.01982276327908039, + -0.03412016108632088, + -0.008982415311038494, + 0.03490353375673294, + -0.08263722062110901, + -0.06375886499881744, + -0.019806841388344765, + 0.04262358322739601, + 0.019921716302633286, + 0.039968959987163544, + -0.04245234653353691, + -0.012669424526393414, + 0.005633371416479349, + -0.008692110888659954, + 0.024049395695328712, + 0.024152854457497597, + 0.18124578893184662, + -0.0490715317428112, + 0.004247898235917091, + -0.05207493528723717 + ], + "hash-straight-bold||hashtag,octothorpe,pound sign,number sign,tic-tac-toe,symbol": [ + 0.036571331322193146, + -0.014987924136221409, + -0.024818681180477142, + -0.005886305123567581, + -0.010821787640452385, + -0.029802285134792328, + 0.08720847964286804, + -0.010217429138720036, + 0.0456860288977623, + -0.02382661961019039, + 0.04488670453429222, + -0.01628100499510765, + 0.044197287410497665, + -0.045261356979608536, + -0.007386361714452505, + 0.000329080707160756, + -0.03737001121044159, + 0.001964833587408066, + -0.04427938163280487, + -0.0016136898193508387, + 0.019714344292879105, + -0.026999063789844513, + 0.04055649787187576, + 0.03135000541806221, + 0.007885207422077656, + 0.06529722362756729, + 0.03717318922281265, + 0.05347917228937149, + 0.06858816742897034, + -0.08068430423736572, + -0.0037126969546079636, + 0.03943788260221481, + 0.053286485373973846, + 0.003261383157223463, + 0.014280508272349834, + 0.028842991217970848, + 0.007410254329442978, + 0.00018115344573743641, + 0.03328700363636017, + 0.002066465327516198, + 0.013445088639855385, + -0.10156648606061935, + -0.03681768849492073, + 0.014853376895189285, + -0.056609150022268295, + 0.09761565178632736, + -0.053822100162506104, + 0.05185761675238609, + -0.0712924674153328, + 0.03545142710208893, + 0.08837631344795227, + -0.13146816194057465, + -0.11663392931222916, + 0.04116569831967354, + 0.0462491437792778, + -0.01929338462650776, + -0.06427253782749176, + -0.05282575637102127, + 0.04576345533132553, + -0.0224453117698431, + -0.00896622333675623, + 0.08903240412473679, + 0.03762533888220787, + 0.0009397651883773506, + 0.05034603551030159, + 0.003391578095033765, + 0.007783015724271536, + 0.0024232075084000826, + 0.012672645971179008, + 0.042271874845027924, + 0.05605955421924591, + -0.05747126415371895, + -0.03189855068922043, + 0.01635025069117546, + -0.025216419249773026, + -0.004992515780031681, + 0.013829953037202358, + -0.03873240947723389, + 0.039953142404556274, + -0.030160978436470032, + -0.1811038851737976, + -0.07199852168560028, + 0.0054305256344377995, + 0.021997207775712013, + 0.037372153252363205, + 0.051496196538209915, + -0.03866313770413399, + -0.025891268625855446, + 0.017400316894054413, + 0.0009267154964618385, + -0.04187121242284775, + 0.02414824441075325, + 0.06117699667811394, + -0.019510168582201004, + 0.031028592959046364, + 0.02803228050470352, + 0.057818543165922165, + 0.0670756846666336, + -0.11753096431493759, + 0.09439941495656967, + 0.04446960613131523, + 0.06441574543714523, + -0.014027053490281105, + -0.020139571279287338, + 0.04441642388701439, + 0.002330928109586239, + -0.027701856568455696, + -0.000824866583570838, + 0.033214498311281204, + -0.017079712823033333, + 0.030822115018963814, + -0.0435699000954628, + 0.009558090940117836, + -0.06677800416946411, + -0.07022599875926971, + -0.06165912002325058, + -0.05411255359649658, + -0.045710865408182144, + 0.07863792777061462, + -0.006904645822942257, + -0.0445089116692543, + -0.05257141962647438, + -0.07790401577949524, + -0.09888928383588791, + -0.07998346537351608, + -0.004748446401208639, + -0.04205870255827904, + -7.73882114089045e-34, + 0.030461499467492104, + 0.08713653683662415, + -0.008010256104171276, + 0.0026565133593976498, + -0.01625390723347664, + 0.024692561477422714, + -0.07923763245344162, + -0.033479757606983185, + -0.0475396066904068, + 0.11219272762537003, + 0.03178132697939873, + 0.05270474776625633, + -0.011251352727413177, + 0.05376274883747101, + 0.05144786089658737, + -0.043598223477602005, + 0.053987521678209305, + -0.06795396655797958, + -0.09525546431541443, + -0.01571621373295784, + -0.025049587711691856, + 0.016058823093771935, + -0.00676677655428648, + -0.05325326696038246, + -0.0024437850806862116, + 0.03333624079823494, + 0.037097398191690445, + -0.0567995049059391, + 0.04226810857653618, + 0.03856571018695831, + 0.07915633916854858, + 0.03942479193210602, + 0.008240269497036934, + -0.05950436741113663, + -0.021888231858611107, + -0.07025206089019775, + -0.041691914200782776, + -0.036099232733249664, + -0.014183721505105495, + -0.025345725938677788, + 0.014075035229325294, + -0.08287305384874344, + -0.043927013874053955, + -0.046138908714056015, + 0.03110075555741787, + 0.10871745645999908, + 0.009977717883884907, + -0.04868245869874954, + 0.061086371541023254, + -0.014853627420961857, + 0.030367136001586914, + 0.004287099465727806, + -0.006764560472220182, + -0.002421555109322071, + -0.020124588161706924, + -0.0981760174036026, + -0.012924510054290295, + 0.03627168759703636, + -0.05791126936674118, + 0.023448742926120758, + -0.03494976833462715, + 0.01568431220948696, + 0.1303412914276123, + -0.011313626542687416, + -0.05040566995739937, + -0.027193401008844376, + -0.06848057359457016, + 0.015550867654383183, + 0.06114644184708595, + 0.04371132329106331, + -0.07193850725889206, + 0.047434695065021515, + 0.04212740436196327, + -0.006310552824288607, + -0.0004953484167344868, + -0.013767778873443604, + -0.024420948699116707, + -0.03906918689608574, + 0.021299319341778755, + 0.05783071741461754, + -0.07145840674638748, + -0.008745883591473103, + -0.021744223311543465, + 0.004869561642408371, + 0.02497033216059208, + 0.02862006239593029, + 0.006487261038273573, + -0.15302374958992004, + -0.047179728746414185, + -0.005395492073148489, + -0.07401539385318756, + -0.0015985671197995543, + -0.0402635857462883, + -0.05795155093073845, + -0.0812840685248375, + -1.1102394451657768e-33, + 0.023869525641202927, + 0.03772870823740959, + -0.06754213571548462, + 0.06648123264312744, + -0.004196763504296541, + -0.04598347097635269, + 0.044307198375463486, + 0.007684551645070314, + -0.015257027931511402, + 0.007240100298076868, + 0.09070998430252075, + 0.014773089438676834, + -0.09690877795219421, + 0.011408225633203983, + 0.08282280713319778, + 0.033895112574100494, + -0.009074180386960506, + 0.06989044696092606, + -0.011472429148852825, + 0.017195308580994606, + -0.03090810962021351, + -0.08097925782203674, + -0.09109305590391159, + 0.072574682533741, + 0.015987981110811234, + 0.030552875250577927, + 0.08460157364606857, + -0.04570556432008743, + 0.06348548829555511, + -0.0011467558797448874, + 8.925270958570763e-05, + 0.04399329051375389, + 0.0664251521229744, + 0.015547392889857292, + -0.07865265011787415, + -0.05651771277189255, + 0.07462207973003387, + 0.005254663992673159, + 0.013128598220646381, + 0.03614649176597595, + 0.07605352997779846, + -0.018027527257800102, + 0.07099782675504684, + 0.04952266067266464, + -0.07179335504770279, + -0.015365866012871265, + -0.00578791880980134, + 0.031065817922353745, + -0.014237279072403908, + 0.051051463931798935, + 0.1186707392334938, + -0.0634879544377327, + -0.035949964076280594, + 0.014735694974660873, + -0.04718475043773651, + -0.009800691157579422, + -0.06453149765729904, + 0.014475084841251373, + -0.1261909008026123, + 0.05182760953903198, + -0.038548894226551056, + 0.009162395261228085, + 0.0917067676782608, + 0.04531192407011986, + -0.027476700022816658, + -0.008624221198260784, + -0.031029781326651573, + -0.0490800105035305, + -0.015466297045350075, + 0.013225668109953403, + -0.012141944840550423, + 0.014712231233716011, + -0.019794447347521782, + 0.05165832117199898, + 0.037760891020298004, + -0.08833003044128418, + 0.07784993946552277, + 0.06041627377271652, + 0.05049993470311165, + 0.008306059055030346, + -0.053381599485874176, + 0.012243415229022503, + -0.05929171293973923, + 0.05123398080468178, + 0.03191710636019707, + -0.006846234668046236, + -0.019025012850761414, + 0.09459703415632248, + -0.004453661385923624, + -0.00552093330770731, + -0.04334776848554611, + 0.08897069841623306, + 0.006930260453373194, + -0.01138500776141882, + -0.01489535253494978, + -2.6763348870417758e-08, + -0.06640592217445374, + -0.04656253010034561, + 0.006193783599883318, + -0.02554433047771454, + 0.06040337309241295, + 0.10060568153858185, + -0.013606741093099117, + -0.1109093427658081, + -0.03815615922212601, + 0.00764079624786973, + 0.055116310715675354, + 0.034862786531448364, + -0.12089937925338745, + -0.09059078246355057, + -0.006252278573811054, + 0.0441538505256176, + -0.08422955125570297, + 0.05495112016797066, + -0.009029845707118511, + -0.035217586904764175, + -0.04511819779872894, + 0.07525064796209335, + 0.03262809291481972, + -0.03338633105158806, + -0.026877501979470253, + 0.03894428536295891, + -0.03438161686062813, + 0.04704756289720535, + -0.01342049241065979, + 0.04573697969317436, + 0.09849530458450317, + 0.05764387547969818, + 0.038456711918115616, + -0.13564801216125488, + -0.03416292369365692, + 0.016774248331785202, + -0.001060641836374998, + -0.0017648340435698628, + 0.022923020645976067, + 0.06909410655498505, + 0.0024122342001646757, + 0.019635818898677826, + -0.02551032230257988, + -0.04052109271287918, + -0.02242397330701351, + -0.0548420250415802, + 0.020321128889918327, + 0.04021225497126579, + -0.07692815363407135, + -0.054673757404088974, + -0.026920294389128685, + 0.05523468181490898, + 0.02454797923564911, + 0.03391966223716736, + -0.03752630949020386, + -0.011243320070207119, + 0.0005334422457963228, + -0.020183229818940163, + 0.008117130026221275, + 0.04316385090351105, + 0.17710986733436584, + -0.05627565085887909, + 0.006267756223678589, + -0.059791114181280136 + ], + "head-circuit-bold||*new*,automaton,artificial intelligence,ai": [ + -0.07390930503606796, + 0.012575452215969563, + -0.010796090587973595, + -0.019884640350937843, + 0.023977141827344894, + -0.007044692989438772, + 0.062007442116737366, + 0.007545517757534981, + -0.046311669051647186, + 0.048300404101610184, + 0.04344810172915459, + -0.09243178367614746, + 0.025136688724160194, + -0.024230731651186943, + -0.06019366905093193, + 0.05619898810982704, + -0.035532306879758835, + -0.02947428822517395, + -0.012911508791148663, + -0.06280555576086044, + 0.010445676743984222, + 0.05589292198419571, + -0.02777506411075592, + -0.01022204291075468, + 0.0034547788091003895, + 0.10739947110414505, + 0.004356471821665764, + -0.0638195127248764, + -0.028259392827749252, + -0.09881222993135452, + -0.033966872841119766, + -0.03293561935424805, + 0.07786917686462402, + -0.014293227344751358, + -0.024906139820814133, + 0.032460544258356094, + -0.04445306584239006, + 0.03046005219221115, + 0.03811342641711235, + -0.012997245416045189, + -0.002198742935433984, + -0.055297210812568665, + 0.03063596598803997, + -0.026061616837978363, + 0.0645643100142479, + 0.06667739897966385, + -0.06968992948532104, + -0.07504546642303467, + 0.06271112710237503, + -0.07181785255670547, + -0.08098703622817993, + -0.08103332668542862, + 0.02772057242691517, + -0.007914019748568535, + 0.010791821405291557, + 0.06151198223233223, + 0.030467389151453972, + 0.00036117577110417187, + -0.01755274087190628, + 0.013883572071790695, + 0.027518128976225853, + -0.03647638112306595, + 0.0695822611451149, + 0.03921607509255409, + 0.0813276544213295, + 0.01801013946533203, + -0.07549310475587845, + -0.015895605087280273, + -0.010363588109612465, + 0.04469982907176018, + 0.014884958043694496, + 0.0012633774895220995, + -0.03928343206644058, + -0.07828501611948013, + 0.05119207128882408, + -0.061996132135391235, + -0.02154145948588848, + -0.017643142491579056, + 0.06506746262311935, + -0.06180816516280174, + -0.06750810146331787, + -0.0824837014079094, + -0.06260845065116882, + 0.024674566462635994, + -0.0072028436698019505, + 0.07321206480264664, + -0.0924970731139183, + -0.03810449689626694, + -0.03597170487046242, + -0.0017892640316858888, + -0.07221625745296478, + -0.09672652930021286, + 0.00868744682520628, + 0.00039113470120355487, + 0.018026748672127724, + 0.03211905434727669, + -0.020883403718471527, + -0.041222989559173584, + 0.003936811815947294, + 0.10710767656564713, + 0.05015481635928154, + -0.03628365695476532, + 0.0025626644492149353, + -0.02631562575697899, + -0.021047255024313927, + 0.047175489366054535, + 0.039295997470617294, + 0.02143828757107258, + 0.051554176956415176, + -0.08086956292390823, + 0.022901061922311783, + -0.016523761674761772, + -0.010245366021990776, + -0.04509744048118591, + 0.007315483409911394, + 0.010412510484457016, + -0.015284457243978977, + 0.05762437731027603, + 0.0745203047990799, + 0.03726693615317345, + 0.03156218305230141, + -0.026634085923433304, + -0.07851700484752655, + 0.00027023968868888915, + 0.07972349226474762, + -0.02600039541721344, + -0.06375105679035187, + -2.721712069245077e-33, + -0.017700744792819023, + 0.04956701397895813, + -0.01194648165255785, + 0.029334018006920815, + 0.03795689344406128, + 0.0043684639967978, + -0.0012420574203133583, + 0.0033920989371836185, + -0.049222107976675034, + 0.05837714672088623, + -0.027096064761281013, + 0.04902515932917595, + -0.0674675852060318, + 0.07914520055055618, + 0.0026496455539017916, + -0.12297288328409195, + -0.029611263424158096, + -0.008919469080865383, + -0.0460892952978611, + -0.05986562371253967, + 0.07021219283342361, + 0.05145594850182533, + -0.019976727664470673, + -0.018940117210149765, + -0.0015497469576075673, + 0.015398525632917881, + 0.015451240353286266, + -0.02947021648287773, + -0.021679043769836426, + 0.026606347411870956, + -0.047922417521476746, + 0.12128303945064545, + 0.00730236666277051, + 0.003936579450964928, + -0.026652097702026367, + 0.06692109256982803, + -0.01617705449461937, + -0.05032568797469139, + 0.0034262314438819885, + 0.051341596990823746, + -0.014461252838373184, + 0.058816295117139816, + -0.023083647713065147, + 0.008384744636714458, + -0.03191066160798073, + 0.0444636233150959, + -0.024155139923095703, + 0.01939490996301174, + 0.0334569588303566, + 0.03573712334036827, + -0.07634570449590683, + -0.017305631190538406, + 0.06367965042591095, + -0.02959577366709709, + 0.09000227600336075, + 0.03626128286123276, + -0.06052756682038307, + 0.14529700577259064, + 0.10636221617460251, + 0.04067878797650337, + 0.020386960357427597, + 0.09812994301319122, + -0.057049933820962906, + 0.04676493629813194, + -0.04332331568002701, + 0.13798101246356964, + 0.03093281015753746, + -0.020209165289998055, + 0.0641363114118576, + 0.024865180253982544, + 0.014319590292870998, + 0.021385306492447853, + -0.05553457885980606, + 0.03575243428349495, + 0.010423729196190834, + 0.019448313862085342, + -0.012962566688656807, + -0.06625159084796906, + 0.03218785300850868, + -0.11145216226577759, + -0.0774935856461525, + 0.02622395195066929, + -0.04807149991393089, + 0.04258675128221512, + 0.07452116161584854, + 0.03284403309226036, + -0.0350533090531826, + -0.05362233519554138, + -0.06711211800575256, + 0.03961729630827904, + -0.02199818566441536, + -3.4688996493059676e-06, + 0.006945696193724871, + 0.03015788085758686, + -0.08238199353218079, + 1.0034360717898533e-34, + -0.006263871677219868, + -0.019676191732287407, + -0.03699953481554985, + 0.03399386629462242, + -0.006376619916409254, + 0.038181815296411514, + -0.021081164479255676, + -0.024038171395659447, + 0.025913406163454056, + 0.05439068377017975, + 0.07929456233978271, + 0.036396171897649765, + -0.035826969891786575, + 0.000742124451790005, + 0.06015949323773384, + -0.0558755025267601, + -0.04153340309858322, + -0.039506133645772934, + 0.03630576655268669, + 0.09891273826360703, + 0.02317940630018711, + 0.08471181243658066, + -0.14987732470035553, + 0.022736873477697372, + -0.0014775493182241917, + 0.023732300847768784, + -0.08794678747653961, + 0.0521734245121479, + -0.03598157688975334, + 0.03171081840991974, + -0.06961651146411896, + -0.008906562812626362, + -0.022707808762788773, + 0.11337663233280182, + -0.020482880994677544, + 0.07118924707174301, + 0.04832623898983002, + -0.02713673934340477, + -0.0062104640528559685, + 0.013013881631195545, + -0.013699010014533997, + -0.02620166540145874, + 0.00971650518476963, + -0.0006960278260521591, + -0.043702270835638046, + -0.010358186438679695, + -0.10387398302555084, + 0.03640357777476311, + -0.05299409106373787, + 0.05774387717247009, + -0.06665521115064621, + -0.07779158651828766, + -0.003436105092987418, + -0.06529145687818527, + -0.1364956945180893, + 0.04119716212153435, + -0.00975073967128992, + 0.04919537156820297, + 0.010926851071417332, + 0.027540739625692368, + -0.015665525570511818, + -0.10879384726285934, + 0.0017529185861349106, + 0.013397173024713993, + -0.03554615378379822, + -0.030897196382284164, + -0.023778343573212624, + 0.05921783670783043, + 0.07254034280776978, + -0.08029565960168839, + 0.050209250301122665, + 0.053848959505558014, + 0.016537396237254143, + -0.003602760611101985, + -0.03877661004662514, + -0.03656981885433197, + -0.0744497999548912, + -0.041952114552259445, + 0.03864091634750366, + 0.014353415928781033, + -0.018362360075116158, + 0.027071719989180565, + -0.019034849479794502, + 0.05188820883631706, + -0.029367467388510704, + 0.06146131083369255, + -0.016136784106492996, + 0.02241714671254158, + -0.026886064559221268, + 0.0034418744035065174, + -0.0794653445482254, + 0.09663590043783188, + -0.021408511325716972, + 0.040970154106616974, + -0.16170328855514526, + -2.355660022601569e-08, + 0.05060639604926109, + 0.012336323037743568, + 0.016283029690384865, + -0.027081402018666267, + 0.07165290415287018, + -0.06242585927248001, + -0.0459081195294857, + -0.07532085478305817, + -0.06348548084497452, + -0.07141483575105667, + 0.07119905948638916, + 0.005677011329680681, + 0.035097185522317886, + -0.008208193816244602, + 0.009323066100478172, + 0.07747538387775421, + -0.07127022743225098, + 0.09817928075790405, + -0.01874818094074726, + -0.048061553388834, + 0.02867789939045906, + 0.08131386339664459, + 0.03293886035680771, + -0.012124157510697842, + 0.02055978588759899, + 0.00956640299409628, + 0.0019470002735033631, + 0.04806267470121384, + -0.06786870211362839, + 0.05906347930431366, + 0.009556311182677746, + 0.10054340958595276, + -0.030486589297652245, + -0.027658481150865555, + 0.03878747299313545, + 0.03567799925804138, + -0.025242352858185768, + -0.042347896844148636, + -0.02499120496213436, + -0.04097045585513115, + -0.04624250531196594, + 0.022930899634957314, + -0.07944551110267639, + -0.026690632104873657, + 0.0006908231880515814, + -0.031746819615364075, + 0.022375909611582756, + -0.07856569439172745, + -0.02062424086034298, + -0.06039305776357651, + 0.03064592368900776, + 0.03832898661494255, + -0.027030935510993004, + 0.08723583817481995, + 0.07727939635515213, + 0.037642404437065125, + 0.03450349345803261, + -0.014497465454041958, + -0.09719046205282211, + 0.0457470566034317, + 0.0653587356209755, + 0.050834476947784424, + 0.1190236285328865, + -0.05512597784399986 + ], + "headlights-bold||brights,high beams": [ + 0.010406083427369595, + 0.004158656578511, + 0.008037588559091091, + 0.045915134251117706, + 0.021529976278543472, + -0.04096275195479393, + 0.09942752122879028, + -0.007927200756967068, + -0.03334629908204079, + -0.015705952420830727, + 0.03799603506922722, + 0.042709995061159134, + 0.019620848819613457, + -0.04681647941470146, + -0.018140874803066254, + 0.08655733615159988, + 0.05041249096393585, + 0.04018673673272133, + -0.03283688798546791, + 3.003587517014239e-05, + 0.04645553231239319, + -0.06137169525027275, + -0.0167434960603714, + 0.06907709687948227, + 0.007310306187719107, + 0.052260443568229675, + 0.04098138585686684, + 0.024780893698334694, + -0.0372803770005703, + -0.004738994408398867, + 0.004060058388859034, + 0.010025153867900372, + 0.012799344025552273, + 0.01692650280892849, + 0.018521897494792938, + -0.025667967274785042, + -0.015829237177968025, + -0.024026192724704742, + -0.011738145723938942, + 0.03511163592338562, + 0.0008376329788006842, + -0.09001981467008591, + -0.03330347687005997, + 0.021409321576356888, + -0.03694078326225281, + -0.012044885195791721, + 0.02517639473080635, + -0.024233024567365646, + -0.004302347078919411, + -0.06468985974788666, + -0.04335983842611313, + -0.04424495995044708, + -0.0362715870141983, + -0.01753825694322586, + 0.04492007568478584, + 0.07768707722425461, + -0.11093399673700333, + 0.042844243347644806, + 0.06800772249698639, + -0.015478991903364658, + 0.005594243295490742, + 0.04580485820770264, + 0.03556935116648674, + -0.012188275344669819, + 0.051974620670080185, + 0.015476219356060028, + -0.05123496428132057, + 0.017575286328792572, + -0.020405719056725502, + 0.06857050955295563, + 0.02058609016239643, + 0.03950591757893562, + 0.013982485979795456, + -0.050129134207963943, + -0.06453443318605423, + -0.019293682649731636, + 0.03636229783296585, + -0.014494085684418678, + -0.06537527590990067, + -0.040133580565452576, + -0.04410654678940773, + -0.06252026557922363, + -0.024627143517136574, + -0.015137349255383015, + 0.07184793800115585, + 0.01570265367627144, + -0.0835457444190979, + 0.005368539597839117, + -0.0591704435646534, + 0.06016245856881142, + -0.08125485479831696, + -0.08949209749698639, + 0.013800550252199173, + 0.01597283035516739, + -0.027177445590496063, + -0.033491622656583786, + 0.03018827922642231, + -0.08322865515947342, + 0.0006996982265263796, + 0.08323413133621216, + 0.051640234887599945, + 0.009642990306019783, + -0.01782485842704773, + 0.006515067536383867, + -0.06157297641038895, + 0.05162746459245682, + 0.017987577244639397, + 0.10145819932222366, + -0.04118400067090988, + 0.006398898549377918, + 0.06482084840536118, + -0.07985581457614899, + 0.0004193094209767878, + -0.007825776934623718, + -0.09057965874671936, + -0.09173635393381119, + -0.05352702736854553, + -0.0020362986251711845, + 0.08262510597705841, + -0.003332132939249277, + 0.06516814976930618, + -0.023497115820646286, + 0.023536887019872665, + -0.02116486243903637, + 0.0103278374299407, + -0.018291762098670006, + 0.002655618591234088, + -2.474907295727345e-33, + 0.00965710636228323, + 0.07466278970241547, + -0.04572310671210289, + 0.0688140019774437, + -0.0421048142015934, + -0.027407608926296234, + -0.002087787026539445, + -0.00991820264607668, + -0.06928148120641708, + 0.0023935020435601473, + 0.048305362462997437, + 0.09339015930891037, + 0.024650562554597855, + 0.014625199139118195, + 0.04073690250515938, + -0.05091625452041626, + 0.058117177337408066, + -0.017999013885855675, + -0.08864577859640121, + 0.06431648880243301, + -0.08301860839128494, + 0.05639923736453056, + -0.044797588139772415, + -0.060645245015621185, + -0.03623638302087784, + -0.05976651981472969, + 0.017745034769177437, + -0.040739476680755615, + -0.09151410311460495, + 0.04348364472389221, + 0.02255498431622982, + 0.04512214660644531, + 0.10005388408899307, + 0.05822594463825226, + -0.008147336542606354, + 0.11981604248285294, + -0.0690222904086113, + -0.033780451864004135, + -0.0003288595180492848, + 0.014212517067790031, + -0.06570375710725784, + 0.014065669849514961, + 0.007292374037206173, + 0.031243201345205307, + 0.058575402945280075, + 0.19172103703022003, + -0.07888484746217728, + 0.01068281289190054, + 0.005731192883104086, + 0.023647472262382507, + -0.021061427891254425, + -0.06130608171224594, + -0.03254467621445656, + -0.019405681639909744, + 0.029133327305316925, + 0.06257274746894836, + -0.03924659267067909, + 0.05877767503261566, + 0.05153040587902069, + -0.027300383895635605, + -0.010650185868144035, + -0.005934113636612892, + -0.03957260027527809, + -0.06527287513017654, + -0.056750521063804626, + -0.00804903358221054, + -0.03746887668967247, + 0.0625024363398552, + -0.04191071540117264, + 0.03864480182528496, + 0.0028960329946130514, + 0.06486083567142487, + 0.0245071854442358, + 0.078012615442276, + 0.025027746334671974, + 0.037155117839574814, + 0.04622318223118782, + 0.03303594887256622, + 0.029765555635094643, + -0.051906295120716095, + -0.05889517068862915, + 0.004555887077003717, + -0.026920853182673454, + -0.005301270168274641, + 0.07880250364542007, + 0.056511327624320984, + -0.10257327556610107, + -0.011818094179034233, + -0.10579638183116913, + 0.039736825972795486, + 0.024257240816950798, + 0.017113586887717247, + 0.005715666338801384, + -0.07964148372411728, + -0.11344265192747116, + 9.423894129504123e-34, + 0.08801432698965073, + 0.04323940724134445, + -0.054806843400001526, + -0.03483942523598671, + 0.019818218424916267, + 0.058639831840991974, + -0.02399413473904133, + -0.043712954968214035, + -0.08733267337083817, + 0.03344269469380379, + 0.06383513659238815, + -0.02375292405486107, + -0.09105841815471649, + -0.04375207796692848, + 0.013838448561728, + -0.10519319027662277, + 0.08952421694993973, + 0.03646823391318321, + -0.050659794360399246, + -0.002904960885643959, + 0.003116188570857048, + 0.04551783576607704, + -0.029259972274303436, + 0.045041996985673904, + -0.09830615669488907, + 0.008607468567788601, + -0.01928107813000679, + -0.0155984191223979, + -0.09779424965381622, + -0.010221803560853004, + -0.053316354751586914, + -0.027560167014598846, + -0.04086897149682045, + 0.044265687465667725, + -0.05136490240693092, + 0.06663253158330917, + -0.011501056142151356, + -0.10816574096679688, + -0.012049873359501362, + 0.01934525929391384, + -0.03252284601330757, + 0.014961574226617813, + 0.0597749724984169, + -0.013645214028656483, + -0.058897241950035095, + 0.0027436434756964445, + 0.0019335575634613633, + -0.028254147619009018, + -0.005113303195685148, + 0.00546737527474761, + 0.0030405449215322733, + -0.04435461759567261, + -0.020037313923239708, + 0.07585582882165909, + -0.1067962571978569, + -0.1053696945309639, + 0.03581160306930542, + 0.005070871207863092, + -0.0025076568126678467, + 0.027959873899817467, + 0.03460238501429558, + 0.040734920650720596, + -0.013503331691026688, + 0.04681558161973953, + -0.004116504918783903, + -0.09579289704561234, + -0.007446951698511839, + -0.01935785822570324, + 0.03928394243121147, + -0.009579037316143513, + 0.03964615613222122, + -0.08836963027715683, + 0.01224302314221859, + 0.04822579771280289, + 0.014844555407762527, + -0.08396781235933304, + -0.012633333913981915, + 0.06937235593795776, + 0.056617021560668945, + 0.01631382666528225, + -0.01886700466275215, + -0.014344981871545315, + -0.025769678875803947, + 0.13594260811805725, + -0.02861051820218563, + 0.028842512518167496, + -0.020796893164515495, + -0.007486185058951378, + 0.013458789326250553, + -0.019519787281751633, + 0.0016322025330737233, + 0.09237665683031082, + 0.059430595487356186, + -0.04948217421770096, + -0.02024538628757, + -1.585689979322069e-08, + 0.021955085918307304, + -0.00906707625836134, + -0.12091640383005142, + -0.05147838592529297, + 0.015984080731868744, + 0.006587077863514423, + -0.05093061923980713, + 0.019562477245926857, + -0.09103003144264221, + -0.07698903977870941, + 0.03509591892361641, + -0.02950487658381462, + -0.006498580798506737, + -0.010098254308104515, + 0.022723406553268433, + 0.03225259482860565, + -0.04663362354040146, + 0.05671647563576698, + -0.025394290685653687, + -0.03841492533683777, + -0.043412432074546814, + 0.0643702894449234, + 0.051311202347278595, + 0.07089471817016602, + 0.04013388231396675, + 0.061794959008693695, + -0.01691088266670704, + 0.031060272827744484, + 0.037674881517887115, + 0.08081954717636108, + 0.031671635806560516, + 0.06979628652334213, + -0.010425008833408356, + -0.024278074502944946, + -0.04335771128535271, + -0.008162157610058784, + -0.035518381744623184, + 0.034078020602464676, + 0.02108793891966343, + 0.06432727724313736, + -0.046597253531217575, + -0.03708750009536743, + 0.032790713012218475, + 0.029150772839784622, + 0.03837946429848671, + 0.05625993013381958, + 0.08436480909585953, + -0.011957257054746151, + -0.10706250369548798, + -0.10475772619247437, + 0.006856003310531378, + 0.012802137061953545, + -0.02918625809252262, + 0.09042718261480331, + -0.08546285331249237, + -0.07267305254936218, + 0.06769955158233643, + 0.06249432638287544, + -0.045144934207201004, + -0.05801885202527046, + 0.20219792425632477, + 0.05642322823405266, + -0.002547988435253501, + 0.03580503165721893 + ], + "headphones-bold||music,audio,listening": [ + 0.014118417166173458, + -0.032699745148420334, + -0.05335676297545433, + -0.02873770147562027, + 0.017518291249871254, + -0.005488744005560875, + 0.0973711609840393, + -0.07726999372243881, + -0.00529065215960145, + 0.011861179023981094, + 0.030746329575777054, + 0.004124511033296585, + 0.009205884300172329, + -0.08775513619184494, + 0.014386102557182312, + 0.03594842553138733, + -0.009163901209831238, + 0.022454744204878807, + 0.012529183179140091, + 0.029572805389761925, + -0.04428422451019287, + 0.07080664485692978, + -0.010162469930946827, + 0.0766037106513977, + 0.01287190243601799, + 0.049941286444664, + 0.06101933494210243, + -0.010407880879938602, + 0.016816629096865654, + -0.05202484875917435, + 0.05880874767899513, + 0.003557695308700204, + 0.11884622275829315, + 0.005300527438521385, + -0.05255238339304924, + -0.0478144995868206, + -0.03127024322748184, + -0.05334077402949333, + -0.04992983117699623, + 0.019086929038167, + 0.036749016493558884, + -0.013034160248935223, + -0.01588786207139492, + -0.020200278609991074, + -0.08913794159889221, + -0.07850345969200134, + -0.06682968884706497, + -0.07290644198656082, + 0.002588423201814294, + -0.046522852033376694, + 0.025738859549164772, + -0.10845685005187988, + -0.013013052754104137, + 0.008076217025518417, + -0.04675690084695816, + -0.0064164940267801285, + -0.054496295750141144, + 0.05035674571990967, + 0.03494903817772865, + 0.018603745847940445, + 0.052702538669109344, + -0.006312998477369547, + 0.04850124195218086, + 0.006201094947755337, + 0.037422239780426025, + 0.0648956447839737, + -0.016371479257941246, + 0.04966830834746361, + -0.021247796714305878, + 0.05542914941906929, + -0.013819780200719833, + 0.019239628687500954, + -0.02648080326616764, + -0.07378654181957245, + -0.0009236945188604295, + 0.040665119886398315, + 0.01533898338675499, + -0.05664591118693352, + -0.03746761009097099, + -0.029901182278990746, + -0.1327851265668869, + -0.09729105979204178, + -0.03276354819536209, + -0.030531225726008415, + 0.0686442032456398, + 0.05581037700176239, + -0.07857760041952133, + -0.03274669125676155, + -0.07931666076183319, + -0.005855321418493986, + -0.12494217604398727, + 0.008485921658575535, + -0.01215557660907507, + 0.021224593743681908, + 0.02445809915661812, + 0.00953812524676323, + 0.056551266461610794, + -0.028675273060798645, + 0.057309381663799286, + 0.06569840759038925, + 0.10049431771039963, + 0.053721506148576736, + 0.007510032504796982, + 0.01854661852121353, + -0.05450953170657158, + -0.051360007375478745, + -0.051339104771614075, + 0.006062095053493977, + -0.03481321781873703, + 0.022761279717087746, + 0.002866149414330721, + -0.0894542708992958, + -0.04761407524347305, + -0.027023766189813614, + -0.03344135731458664, + 0.014103087596595287, + 0.016755562275648117, + 0.06917877495288849, + 0.0890166163444519, + -0.010256718844175339, + -0.028781088069081306, + 0.006704125553369522, + -0.05546469986438751, + -0.07782714813947678, + 0.03901568427681923, + -0.014612475410103798, + -0.01459356490522623, + -1.7649423196222773e-33, + 0.08447492122650146, + -0.012172707356512547, + -0.028941452503204346, + 0.08484688401222229, + -0.007783025968819857, + -0.011858646757900715, + -0.03154851496219635, + -0.023744530975818634, + -0.017763808369636536, + 0.09871469438076019, + 0.03446943312883377, + 0.10577535629272461, + -0.01202551182359457, + 0.004192412830889225, + 0.015267007984220982, + -0.056306030601263046, + -0.04369937628507614, + 0.03449602425098419, + -0.10590792447328568, + 0.007684115320444107, + -0.028058188036084175, + 0.020220469683408737, + -0.008765527047216892, + 0.0030809021554887295, + 0.041567813605070114, + -0.0030796919018030167, + 0.010341782122850418, + -0.025074435397982597, + -0.020988164469599724, + 0.012192116118967533, + 0.008246787823736668, + 0.026555709540843964, + 0.02364947833120823, + -0.03721499815583229, + 0.01104224193841219, + 0.07461719959974289, + -0.04975798353552818, + 0.07973529398441315, + 0.013338136486709118, + 0.007061338517814875, + -0.05699582397937775, + -0.03810843080282211, + -0.034753937274217606, + -0.03974412754178047, + 0.02024279162287712, + 0.15845152735710144, + -0.022977424785494804, + -0.02397782728075981, + 0.02882619947195053, + 0.00946993101388216, + -0.04519450664520264, + -0.0009533861302770674, + -0.009795578196644783, + 0.029801635071635246, + 0.019601449370384216, + -0.01750180497765541, + 0.00939045287668705, + 0.12970058619976044, + 0.07657136768102646, + -0.003643428673967719, + 0.0665750727057457, + 0.04271065443754196, + 0.049692582339048386, + -0.11555847525596619, + -0.006512098480015993, + 0.09769295901060104, + 0.0585896372795105, + 0.0595974437892437, + 0.03868568688631058, + -0.027150405570864677, + 0.03498352691531181, + 0.06854232400655746, + 0.04830114170908928, + 0.08352334052324295, + -0.030126197263598442, + 0.029481517150998116, + 0.004847036208957434, + -0.06535926461219788, + 0.050090473145246506, + -0.048694852739572525, + -0.011488779447972775, + 0.06686532497406006, + -0.032246582210063934, + 0.13087978959083557, + 0.00925016775727272, + 0.0183703675866127, + -0.07458116859197617, + -0.11180958151817322, + -0.09740252792835236, + 0.023562980815768242, + -0.06346104294061661, + 0.041548386216163635, + -0.021152149885892868, + -0.1004822701215744, + -0.11277789622545242, + -1.1576661422821444e-33, + 0.06601893901824951, + 0.016293121501803398, + -0.019829098135232925, + -0.06246542930603027, + -0.004257786553353071, + 0.06046381965279579, + 0.0456860288977623, + 0.070284403860569, + -0.004336162004619837, + 0.05397718399763107, + 0.08447765558958054, + -0.029257159680128098, + -0.04831269755959511, + -0.010877576656639576, + -0.031883470714092255, + -0.03904728591442108, + -0.02070240117609501, + 0.04562535881996155, + 0.04369174316525459, + 0.02088816463947296, + -0.048350319266319275, + -0.0005304973456077278, + 0.015925411134958267, + 0.03927691653370857, + -0.06314902752637863, + -0.007763323839753866, + -0.039569202810525894, + 0.012062947265803814, + -0.05111101269721985, + -0.01385804545134306, + 4.5827935537090525e-05, + -0.006578755099326372, + -0.035436276346445084, + -0.06195928901433945, + 0.023983098566532135, + 0.0155413206666708, + -0.004935259465128183, + 0.02441706508398056, + 0.0652635470032692, + -0.02151522785425186, + -0.08720901608467102, + 0.04915346950292587, + 0.0792275220155716, + -0.0371437668800354, + 0.008912655524909496, + -0.07453382015228271, + -0.07432994246482849, + -0.011386262252926826, + -0.043190401047468185, + 0.05834447592496872, + 0.06279684603214264, + 0.027405353263020515, + 0.038194362074136734, + -0.03204936161637306, + -0.1273685246706009, + -0.009341456927359104, + -0.0734810158610344, + -0.026758793741464615, + 0.025808263570070267, + 0.0497208833694458, + -0.00249845371581614, + -0.001914982683956623, + -0.05643342062830925, + -0.002805280964821577, + -0.03754726052284241, + 0.03335148096084595, + 0.04132279381155968, + -0.03497844561934471, + 0.09909611940383911, + -0.0021471967920660973, + 0.017913447692990303, + 0.003483251202851534, + 0.021392319351434708, + 0.05522129684686661, + 0.02330746129155159, + -0.04976620525121689, + -0.0858987495303154, + -0.032800473272800446, + 0.05738736689090729, + 0.0646267905831337, + 0.043092112988233566, + 0.03697912395000458, + -0.002111783716827631, + 0.02465629018843174, + -0.028672443702816963, + 0.05634453520178795, + 0.02070421166718006, + -0.017492521554231644, + -0.04679761454463005, + -0.03707820549607277, + -0.01799289882183075, + 0.04617565497756004, + -0.03840046375989914, + 0.058271732181310654, + -0.08483586460351944, + -1.609855715400954e-08, + 0.024435343220829964, + -0.006978617515414953, + 0.013063296675682068, + -0.02657454088330269, + -0.013168678618967533, + -0.06121189892292023, + -0.044659316539764404, + -0.0932275727391243, + -0.030258698388934135, + -0.039396483451128006, + 0.05096307769417763, + -0.060876261442899704, + -0.05133957415819168, + 0.05051640421152115, + 0.04628029093146324, + 0.030577505007386208, + -0.07962517440319061, + 0.09025127440690994, + -0.041069258004426956, + -0.13178260624408722, + -0.014557601884007454, + 0.0917099267244339, + 0.0751778781414032, + -0.02686387673020363, + 0.10618573427200317, + 0.020843517035245895, + -0.0035665351897478104, + 0.03575599193572998, + 0.064751036465168, + 0.05479937419295311, + -0.005187619011849165, + 0.07908894866704941, + -0.046642594039440155, + -0.04781133681535721, + -0.08864932507276535, + -0.06790842860937119, + -0.019792180508375168, + -0.05608072504401207, + -0.048849962651729584, + 0.07762521505355835, + -0.03435236215591431, + -0.047818027436733246, + -0.03795153647661209, + 0.005612890236079693, + -0.005896303802728653, + -0.029165275394916534, + 0.1415783017873764, + 0.01810336858034134, + -0.08892197906970978, + -0.07068149745464325, + -0.02649802342057228, + 0.058706026524305344, + 0.03395181894302368, + 0.05077014118432999, + 0.01074178609997034, + -0.04801921918988228, + -0.012091764248907566, + 0.06272459775209427, + -0.10276205837726593, + -0.019497521221637726, + 0.021916544064879417, + -0.02444317750632763, + 0.053786374628543854, + 0.03568097576498985 + ], + "headset-bold||music,audio,listening,gaming,voice chat,microphone,headphones,support,customer-service,call-center": [ + -0.03504952788352966, + -0.038614608347415924, + -0.03710396587848663, + -0.07209616154432297, + 0.010874485597014427, + -0.022114478051662445, + 0.11966457217931747, + -0.007588671520352364, + -0.008650213479995728, + -0.00021277421910781413, + 0.009230200201272964, + 0.0009842542931437492, + -0.025014959275722504, + -0.08521845191717148, + 0.05335260555148125, + -0.032748520374298096, + 0.05023026093840599, + -0.013266119174659252, + -0.0029831326100975275, + 0.03336154296994209, + -0.019714804366230965, + 0.08580577373504639, + 0.038189079612493515, + 0.09482595324516296, + 0.017399005591869354, + 0.017014922574162483, + 0.02352079376578331, + 0.0681188777089119, + 0.010223628021776676, + -0.09617527574300766, + 0.0309525765478611, + 0.0483345203101635, + 0.14988315105438232, + 0.04336487129330635, + -0.0648428350687027, + 0.012429965659976006, + 0.031830959022045135, + -0.044818464666604996, + -0.0714530423283577, + -0.004235337022691965, + -0.023296600207686424, + -0.03737891837954521, + -0.009003846906125546, + 0.02783680334687233, + -0.0017578322440385818, + -0.024028748273849487, + -0.12588296830654144, + -0.04829975962638855, + 0.0018952639074996114, + -0.011987817473709583, + 0.038472793996334076, + -0.11872608959674835, + -0.029231661930680275, + 0.04545919969677925, + -0.04336313530802727, + 0.04248291999101639, + -0.05276777967810631, + 0.062257714569568634, + 0.04358686879277229, + 0.037272859364748, + 0.0040284134447574615, + -0.026079310104250908, + 0.02527650259435177, + 0.0849604532122612, + -0.0640597939491272, + 0.058417338877916336, + -0.034918203949928284, + 0.018584104254841805, + -0.02328460104763508, + -0.03530055284500122, + -0.04868387058377266, + 0.035554274916648865, + -0.003956629894673824, + -0.05308467894792557, + -0.02032635174691677, + 0.053596846759319305, + 0.059230539947748184, + -0.11135198920965195, + 0.005932008847594261, + -0.03147212043404579, + -0.05972186103463173, + -0.06822195649147034, + -0.008306771516799927, + -0.00940762273967266, + 0.04540829360485077, + 0.019441379234194756, + -0.08280140906572342, + -0.04887310415506363, + -0.09815838187932968, + -0.03893958404660225, + -0.16846232116222382, + 0.0074332160875201225, + 0.0014196884585544467, + 0.015358410775661469, + -0.05708812549710274, + 0.0524955615401268, + 0.04333364591002464, + -0.08023883402347565, + -0.011023803614079952, + 0.07911443710327148, + 0.025287561118602753, + 0.022243229672312737, + 0.02557685412466526, + 0.017236365005373955, + -0.039217252284288406, + -0.06777580082416534, + -0.0642906203866005, + 0.006799663882702589, + 0.01757463626563549, + 0.0029570870101451874, + -0.08858202397823334, + -0.08992613106966019, + -0.08250348269939423, + -0.05139194056391716, + 0.023464873433113098, + -0.02417554147541523, + -0.03977102041244507, + 0.05684507638216019, + 0.1396891176700592, + -0.03518011048436165, + 0.018636805936694145, + 0.022494155913591385, + -0.01966000348329544, + -0.10073041170835495, + -0.014532244764268398, + 0.0009324640268459916, + 0.020269818603992462, + -2.0764170985214897e-33, + 0.027790116146206856, + 0.01943254843354225, + 0.0252238642424345, + 0.03625219315290451, + -0.010902708396315575, + 0.01703040488064289, + -0.05267835780978203, + -0.0489354208111763, + -0.015834243968129158, + 0.0979425385594368, + 0.008273959159851074, + 0.060945551842451096, + -0.0434325709939003, + 0.036631736904382706, + 0.10081242024898529, + -0.05312010645866394, + -0.03550323098897934, + 0.06602361053228378, + -0.03822905197739601, + -0.024509722366929054, + -0.029567178338766098, + 0.08405555784702301, + 0.021646276116371155, + 0.04188285395503044, + 0.1004100888967514, + -0.011363884434103966, + 0.009745883755385876, + -0.012631699442863464, + -0.007804225664585829, + -0.0027906678151339293, + 0.021774275228381157, + 0.032149266451597214, + 0.010410886257886887, + -0.02829085849225521, + 0.04453989863395691, + 0.06636503338813782, + -0.057809293270111084, + -0.03186925873160362, + -0.020707717165350914, + -0.018695509061217308, + -0.08760877698659897, + -0.04575151577591896, + -0.11875900626182556, + -0.05492309108376503, + 0.05293136462569237, + 0.0937553197145462, + -0.05963445082306862, + -0.030378343537449837, + 0.041684698313474655, + 0.040237996727228165, + -0.11418206989765167, + 0.018965089693665504, + -0.0202955212444067, + 0.045961834490299225, + 0.03247992321848869, + -0.04750014469027519, + 0.01861644722521305, + 0.08948007971048355, + 0.045870594680309296, + 0.014924934133887291, + 0.03646507114171982, + -0.009831557981669903, + 0.01865045353770256, + -0.09184141457080841, + -0.012547802180051804, + 0.06313144415616989, + 0.017342019826173782, + -0.028907015919685364, + 0.015499863773584366, + -0.011359337717294693, + 0.038768112659454346, + 0.10572274774312973, + 0.06314269453287125, + 0.0888715535402298, + -0.06613145023584366, + 0.07150113582611084, + -0.05006960406899452, + -0.0043246145360171795, + -0.022968672215938568, + 0.01241273246705532, + -0.038067545741796494, + 0.03313545137643814, + -0.04666261374950409, + 0.10487712174654007, + 0.059665508568286896, + 0.008604113943874836, + -0.014166552573442459, + -0.11554320156574249, + -0.05277630686759949, + 0.027692604809999466, + -0.10054679214954376, + 0.06388698518276215, + -0.06438174098730087, + -0.028644856065511703, + -0.13860663771629333, + -5.463259228127838e-34, + -0.012675384990870953, + 0.04516831785440445, + -0.0263125691562891, + 0.04054505378007889, + -0.011123254895210266, + 0.029361817985773087, + 0.06772240996360779, + 0.055381495505571365, + 0.014306257478892803, + 0.024924295023083687, + 0.033231355249881744, + -0.0024904883466660976, + -0.004418646916747093, + -0.048051174730062485, + -0.03668079897761345, + 0.010289456695318222, + -0.028664086014032364, + -0.002905003959313035, + 0.03468159958720207, + 0.027757519856095314, + 0.016939261928200722, + -0.03404836356639862, + -0.05161784589290619, + 0.06166883185505867, + -0.032772619277238846, + -0.035667918622493744, + -0.07255693525075912, + -0.03325889632105827, + 0.0064798337407410145, + -0.03089883364737034, + 0.009896374307572842, + -0.0007300396100617945, + 0.016012363135814667, + 0.01646425388753414, + 0.057077255100011826, + 0.005112779792398214, + 0.09244641661643982, + 0.03947336971759796, + -0.016362430527806282, + -0.02656373754143715, + 0.001839325064793229, + 0.02188214473426342, + 0.09702557325363159, + -0.012958608567714691, + 0.05142316222190857, + -0.04998263344168663, + -0.06959627568721771, + -0.026618266478180885, + -0.07554665952920914, + 0.03609812259674072, + 0.025040728971362114, + -0.05113712698221207, + 0.05190818011760712, + 0.03934059664607048, + -0.06816258281469345, + -0.02434571273624897, + -0.005566720850765705, + -0.029266448691487312, + 0.0021983738988637924, + 0.023752547800540924, + 0.07432989776134491, + -0.03563869372010231, + -0.059117767959833145, + 0.053315356373786926, + 0.0060006678104400635, + 0.00043784768786281347, + 0.056104615330696106, + -0.027873115614056587, + 0.0325152613222599, + 0.001112711033783853, + 0.0400802381336689, + -0.017935004085302353, + 0.016983775421977043, + 0.03440573439002037, + -0.02814185433089733, + -0.03816218301653862, + -0.08943489193916321, + -0.05639456957578659, + -0.012048403732478619, + 0.06949477642774582, + 0.05300814285874367, + 0.01002517156302929, + 0.02444032020866871, + 0.017363496124744415, + 0.03138280659914017, + 0.008452489040791988, + 0.03738468512892723, + -0.005213809199631214, + -0.022909317165613174, + -0.0589798241853714, + -0.03662402555346489, + 0.056934792548418045, + -0.0750245600938797, + 0.04598081484436989, + -0.059258315712213516, + -2.5406160730767624e-08, + 0.017833299934864044, + -0.09248794615268707, + 0.018751095980405807, + -0.08641093224287033, + 0.021511781960725784, + -0.07821260392665863, + 0.038822006434202194, + -0.07670485228300095, + 0.01008632592856884, + -0.012565795332193375, + 0.03780164197087288, + -0.035828083753585815, + -0.048036057502031326, + 0.021955596283078194, + 0.07535861432552338, + 0.034729912877082825, + -0.05000526085495949, + 0.09542328119277954, + 0.010131671093404293, + -0.1212034672498703, + 0.013568607158958912, + 0.06738439947366714, + 0.0315982848405838, + -0.062452077865600586, + 0.08702421933412552, + -0.004844691138714552, + -0.02439732477068901, + 0.11273347586393356, + 0.05411572754383087, + 0.047738976776599884, + 0.010529749095439911, + 0.06784752011299133, + 0.005218989681452513, + -0.09070678800344467, + -0.06545624881982803, + -0.020077211782336235, + -0.0574687160551548, + -0.03422309458255768, + 0.01287267729640007, + 0.09607784450054169, + -0.002384352497756481, + -0.03458971530199051, + -0.01588958501815796, + -0.001977830659598112, + 0.030116237699985504, + -0.0025526280514895916, + 0.05337028205394745, + -0.03286709636449814, + -0.05328727886080742, + -0.10901817679405212, + -0.04849620535969734, + 0.08873317390680313, + 0.035572029650211334, + 0.016866134479641914, + -0.004438971634954214, + -0.0024138411972671747, + 0.04754887893795967, + 0.054385796189308167, + 0.018231093883514404, + -0.0023989484179764986, + 0.013583961874246597, + 0.03435760363936424, + 0.031150290742516518, + 0.06370411068201065 + ], + "heart-bold||wellness,love,healthy,like,favorites,favorited,suits,cards,gambling,casino,gaming,emoji": [ + -0.021998213604092598, + 0.02717842347919941, + -0.0027317169588059187, + 0.040270693600177765, + 0.002968220040202141, + 0.009885000064969063, + 0.07387179136276245, + -0.06805326044559479, + 0.041877325624227524, + -0.056933410465717316, + 0.006780738942325115, + -0.02343394234776497, + 0.009803486987948418, + -0.07411356270313263, + 0.08501826971769333, + 0.016742177307605743, + 0.048835285007953644, + 0.012014648877084255, + -0.02491241693496704, + 0.06104928255081177, + -0.0424119234085083, + 0.03101525828242302, + 0.022865889593958855, + 0.05709736794233322, + -0.002309480682015419, + 0.035711243748664856, + 0.019151801243424416, + -0.002983834594488144, + -0.055546388030052185, + -0.010662185028195381, + 0.023883679881691933, + 0.02102017216384411, + 0.1267588585615158, + 0.04934658482670784, + -0.008528433740139008, + 0.03373927250504494, + -0.06061713770031929, + -0.00825471431016922, + -0.050066880881786346, + 0.034858785569667816, + -0.01446747500449419, + -0.07807855308055878, + -0.002917712088674307, + 0.05362281948328018, + 0.011859877035021782, + -0.06483886390924454, + -0.043269041925668716, + -0.003837806638330221, + -0.004805495031177998, + 0.08898236602544785, + -0.08509603142738342, + -0.06378953158855438, + -0.10951787978410721, + 0.022346429526805878, + 0.06495800614356995, + -0.018125439062714577, + -0.10848406702280045, + -0.06595981866121292, + -0.008545647375285625, + 0.00710911164060235, + 0.05444875732064247, + 0.010915640741586685, + 0.06902779638767242, + 0.03605315089225769, + -0.05017771199345589, + -0.06831946223974228, + 0.025693600997328758, + 0.06490758806467056, + -0.052464671432971954, + 0.0151424715295434, + 0.06271423399448395, + -0.036516036838293076, + -0.00672589847818017, + -0.03054664470255375, + -0.05394592508673668, + 0.08893779665231705, + 0.02162327617406845, + -0.1251586526632309, + 0.004289538133889437, + -0.015584389679133892, + -0.07922805845737457, + -0.055164676159620285, + -0.04400496929883957, + -0.014661164954304695, + 0.003456440521404147, + 0.062424227595329285, + -0.06357380747795105, + -0.06690487265586853, + -0.05741371586918831, + -0.004730490036308765, + -0.0734524205327034, + -0.057517386972904205, + 0.04386671632528305, + 0.030073542147874832, + -0.013715555891394615, + 0.00016844591300468892, + 0.030984673649072647, + -0.08162999153137207, + -0.09509152173995972, + 0.05865384638309479, + 0.04183065891265869, + 0.08018927276134491, + 0.00866839848458767, + 0.04690634459257126, + 0.011575770564377308, + -0.018427187576889992, + -0.026723099872469902, + -0.010416471399366856, + 0.044372063130140305, + -0.0008003104594536126, + -0.054769910871982574, + -0.04438164085149765, + 0.06485535949468613, + -0.08023924380540848, + 0.02083217352628708, + 0.041309211403131485, + -0.062359102070331573, + -0.028860319405794144, + 0.11009804159402847, + 0.17165623605251312, + 0.013003111816942692, + -0.005344868637621403, + 0.009480307810008526, + -0.04918411746621132, + -0.09471976011991501, + -0.003943135961890221, + 0.028151849284768105, + -2.6069213724674344e-33, + 0.02802608534693718, + 0.03641412407159805, + 0.0352914072573185, + 0.07288399338722229, + 0.010834856890141964, + -0.0036643703933805227, + -0.05165361240506172, + -0.03818118944764137, + -0.08713339269161224, + -0.0031977894250303507, + -0.008973645977675915, + 0.10600520670413971, + -0.05073435232043266, + 0.14028018712997437, + 0.003702180227264762, + -0.05826600268483162, + -0.06450337171554565, + -0.03229375556111336, + -0.024373145774006844, + -0.007787066046148539, + -0.03799350559711456, + 0.012298842892050743, + -0.013036456890404224, + -0.00880461186170578, + -0.08639195561408997, + -0.06071261316537857, + 0.027193870395421982, + -0.0018618997419252992, + 0.009669885970652103, + 0.024831222370266914, + 0.0058712949976325035, + 0.002394932322204113, + 0.034984979778528214, + -0.06040104106068611, + -0.002482728799805045, + 0.03859955444931984, + -0.05808050557971001, + 0.014641080051660538, + -0.047340720891952515, + 0.0369432158768177, + -0.03352103754878044, + -0.02026265859603882, + -0.06927303969860077, + -0.012090953066945076, + 0.007731761317700148, + 0.08896580338478088, + 0.024913931265473366, + -0.04727775603532791, + -0.00775605533272028, + -0.05572597309947014, + -0.010877455584704876, + -0.051383670419454575, + -0.0032429492566734552, + -0.005493537988513708, + -0.06839235872030258, + -0.052851010113954544, + 0.024074964225292206, + 0.0540851466357708, + -0.056705549359321594, + -0.046014413237571716, + -0.019844237715005875, + -0.011866234242916107, + 0.09095162153244019, + -0.09533105045557022, + -0.0707460343837738, + 0.07265089452266693, + -0.033837974071502686, + -0.07446418702602386, + -0.020024852827191353, + 0.07770247012376785, + 0.08660326898097992, + 0.12914659082889557, + 0.003062277566641569, + -0.029666900634765625, + 0.002671792171895504, + 0.03698341175913811, + 0.002181628718972206, + -0.00572943827137351, + -0.03353365883231163, + -0.03978262469172478, + -0.07482784986495972, + 0.009191351942718029, + -0.03736656904220581, + 0.09653851389884949, + 0.06907544285058975, + 0.009047271683812141, + -0.01603570394217968, + -0.09761470556259155, + 0.01058610063046217, + 0.03339275345206261, + -0.07713613659143448, + 0.03709179535508156, + 0.08135157078504562, + -0.06271116435527802, + -0.09282439947128296, + 1.3320814022823475e-33, + -0.033140379935503006, + -0.02714509516954422, + 0.019403399899601936, + 0.03458114713430405, + 0.03932210057973862, + -0.03146412596106529, + -0.0414949506521225, + 0.054029904305934906, + 0.08358833938837051, + 0.011473451741039753, + -0.0038450032006949186, + -0.055384550243616104, + -0.024289075285196304, + -0.06735534220933914, + 0.016068389639258385, + 0.03169833868741989, + 0.04429865628480911, + 0.07132694870233536, + -0.017450839281082153, + 0.0781792476773262, + -0.007042678538709879, + -0.023448193445801735, + -0.11236677318811417, + 0.09401143342256546, + 0.00021756859496235847, + 0.0768638476729393, + 0.026179607957601547, + -0.0721721425652504, + -0.005011533387005329, + -0.05760268494486809, + 0.03614836186170578, + -0.015393375419080257, + -0.0023744171485304832, + 0.05426512286067009, + -0.03284594789147377, + 0.06323465704917908, + -0.0115196006372571, + -0.018910791724920273, + -0.05586867779493332, + 0.0033287061378359795, + 0.01214226521551609, + 0.025454774498939514, + 0.022506698966026306, + 0.08809153735637665, + 0.009983843192458153, + -0.021787846460938454, + -0.06580597907304764, + -0.03638322651386261, + -0.006868284195661545, + 0.06404837965965271, + 0.020841361954808235, + -0.044456642121076584, + -0.06662784516811371, + 0.044646356254816055, + -0.02514621615409851, + 0.0008827611454762518, + 0.01689959689974785, + 0.06631488353013992, + -0.07927746325731277, + -0.021262990310788155, + -0.009253008291125298, + 0.014151232317090034, + 0.02520844154059887, + 0.04975002631545067, + -0.010521411895751953, + -0.025785164907574654, + 0.04381180182099342, + -0.039098598062992096, + -0.06766926497220993, + -0.016817770898342133, + -0.021152643486857414, + 0.02358260378241539, + -0.08023051917552948, + 0.020540839061141014, + -0.015067710541188717, + -0.06869333982467651, + -0.015197337605059147, + -0.016156841069459915, + -0.0030312996823340654, + 0.03686264902353287, + -0.016325851902365685, + -0.03216487541794777, + -0.04006340354681015, + -0.007963258773088455, + -0.026041485369205475, + 0.04152391478419304, + 0.00671601016074419, + 0.02983868308365345, + -0.017638208344578743, + 0.01563459262251854, + 0.014960051514208317, + 0.07604507356882095, + -0.04926959052681923, + 0.016813481226563454, + -0.0014245095662772655, + -2.7590870033122883e-08, + 0.0181442704051733, + -0.06965664774179459, + -0.08207288384437561, + -0.009753609076142311, + -0.019011015072464943, + -0.022378092631697655, + 0.0059200068935751915, + -0.06633244454860687, + 0.030945774167776108, + -0.008618336170911789, + 0.06345687806606293, + 0.12116991728544235, + -0.07503806799650192, + -0.08810484409332275, + 0.05984487384557724, + -0.03710125386714935, + -0.003432891331613064, + 0.048474133014678955, + 0.017895272001624107, + -0.03907936066389084, + 0.10287211835384369, + 0.08400843292474747, + 0.03967581316828728, + -0.04637417569756508, + -0.0024190873373299837, + -0.012290610931813717, + -0.008240614086389542, + -0.06070590391755104, + 0.02994733490049839, + 0.056925009936094284, + 0.1043672114610672, + 0.026020271703600883, + 0.042936187237501144, + -0.03963787481188774, + -0.04139861464500427, + 0.020839719101786613, + 0.060744758695364, + -0.05281185731291771, + -0.008585434406995773, + 0.12877435982227325, + 0.07527143508195877, + -0.021707355976104736, + -0.001789644593372941, + -0.04650653153657913, + -0.08032359182834625, + -0.047872159630060196, + 0.08594206720590591, + -0.007898610085248947, + 0.018469996750354767, + -0.09362208098173141, + 0.009979495778679848, + 0.005248840432614088, + 0.037038952112197876, + 0.002836243947967887, + -0.018422404304146767, + -0.0015186216915026307, + 0.030665162950754166, + 0.10939443111419678, + 0.032499760389328, + -0.03172782436013222, + 0.17244727909564972, + 0.05080939084291458, + 0.017147483304142952, + 0.013867857865989208 + ], + "heart-break-bold||love,hate,crack,split,divorce,emoji": [ + -0.07913174480199814, + -0.039866652339696884, + 0.09624538570642471, + 0.00921686552464962, + 0.08004236221313477, + 0.006255630869418383, + 0.004711879882961512, + -0.08212096989154816, + 0.09702350199222565, + -0.0610651858150959, + -0.01903333142399788, + -0.01543001551181078, + 0.012006408534944057, + -0.049756672233343124, + 0.05346233397722244, + 0.07697705924510956, + -0.002584846457466483, + -0.0006108387024141848, + -0.03314775973558426, + 0.0295582115650177, + -0.031164899468421936, + 0.026731321588158607, + -0.029753558337688446, + 0.0100243603810668, + 0.011024286039173603, + 0.0620199479162693, + -0.004437736235558987, + 0.03352014720439911, + -0.038915373384952545, + -0.013739575631916523, + 0.0674116313457489, + -0.010213509202003479, + 0.0796969085931778, + 0.07773183286190033, + 0.0030540726147592068, + -0.02287960797548294, + -0.07762503623962402, + 0.07789218425750732, + 0.0030510968063026667, + 0.029730970039963722, + -0.041438791900873184, + -0.03759034350514412, + 0.01495951134711504, + 0.00921896193176508, + 0.023906609043478966, + -0.010746517218649387, + -0.02438870258629322, + -0.04673856869339943, + 0.02421216107904911, + 0.07369927316904068, + -0.09228941798210144, + -0.029953230172395706, + -0.08677937090396881, + 0.10796115547418594, + 0.030864251777529716, + -0.043397411704063416, + -0.015357914380729198, + 0.019763080403208733, + 0.03937431424856186, + 0.03396608680486679, + 0.04339040443301201, + 0.026005884632468224, + 0.06841487437486649, + -0.02774764783680439, + 0.03463899344205856, + 2.605123518151231e-05, + 0.061113391071558, + 0.04480544105172157, + -0.046269867569208145, + 0.11264211684465408, + -0.018831340596079826, + -0.030839428305625916, + -0.04242702201008797, + -0.01791800931096077, + -0.09928800165653229, + 0.06937944889068604, + -0.026378383859992027, + -0.09060332179069519, + -0.01089871022850275, + -0.06143439561128616, + -0.08292852342128754, + -0.06660672277212143, + -0.10265646874904633, + -0.06096690893173218, + -0.030129818245768547, + 0.045224111527204514, + -0.03647971153259277, + -0.05450774356722832, + -0.05843065306544304, + -0.014158462174236774, + -0.07603776454925537, + -0.016355374827980995, + 0.0798620656132698, + -0.0040941606275737286, + -0.014334679581224918, + 0.011309160850942135, + -0.025321530178189278, + -0.05337149277329445, + -0.09882199764251709, + 0.08434515446424484, + 0.010343107394874096, + 0.04005155339837074, + -0.005568850785493851, + -0.02735734172165394, + 0.028373677283525467, + -0.08702004700899124, + 0.0138158043846488, + 0.012112855911254883, + 0.020474648103117943, + 0.005915036424994469, + 0.018206709995865822, + -0.04530790075659752, + -0.003212197218090296, + -0.09936203062534332, + 0.0517299547791481, + 0.00037880081799812615, + 0.011412498541176319, + -0.00892600603401661, + 0.14431115984916687, + 0.1793529987335205, + 0.007055741734802723, + -0.043349720537662506, + -0.08771956712007523, + -0.025731557980179787, + -0.08245624601840973, + -0.014339259825646877, + -0.03128424286842346, + -2.0170006345332233e-33, + 0.03464509919285774, + 0.003086102893576026, + -0.0188039131462574, + 0.10789276659488678, + 0.05224578455090523, + -0.011033236049115658, + -0.10201268643140793, + -0.006059907376766205, + -0.07097802311182022, + 0.020732944831252098, + -0.03503142297267914, + 0.06055683642625809, + -0.030355650931596756, + -0.004945254418998957, + 0.06547797471284866, + -0.04163661599159241, + -0.03257615119218826, + -0.046556998044252396, + -0.009888331405818462, + 0.0457904152572155, + -0.0674695074558258, + 0.02657404914498329, + 0.045571159571409225, + 0.008985467255115509, + -0.09398207813501358, + -0.0863657146692276, + 0.02019960805773735, + 0.02375405840575695, + -0.002955758012831211, + 0.008905965834856033, + -0.04931715130805969, + 0.02118896134197712, + 0.09554525464773178, + 0.013986376114189625, + 0.02665248140692711, + -0.02362452633678913, + -0.10307279229164124, + 0.03659021481871605, + -0.05917821452021599, + 0.032341886311769485, + -0.09605372697114944, + -0.032611094415187836, + -0.010497946292161942, + -0.02147490158677101, + 0.03811885416507721, + 0.06294383853673935, + -0.060068171471357346, + 0.008475854992866516, + 0.05090294033288956, + -0.01838594861328602, + 0.027482107281684875, + -0.029025962576270103, + -0.019784772768616676, + 0.04387104511260986, + -0.04957612231373787, + -0.026305081322789192, + 0.005537394899874926, + -0.0023133899085223675, + 0.011092975735664368, + 0.03369519114494324, + -0.0185087900608778, + -0.02139301784336567, + 0.10134580731391907, + -0.033769212663173676, + -0.020864246413111687, + 0.041945938020944595, + -0.019420485943555832, + 0.0016801833407953382, + -0.0017898300429806113, + 0.04646185413002968, + -0.023463236168026924, + 0.0745493695139885, + -0.014418527483940125, + 0.01862032525241375, + -0.028363237157464027, + 0.0030868162866681814, + 0.013336759060621262, + 0.025645703077316284, + 0.055904172360897064, + 0.00047622123383916914, + -0.03006264753639698, + -0.04922175034880638, + 0.029416635632514954, + 0.03919369354844093, + 0.014723677188158035, + 0.014489362947642803, + -0.053588662296533585, + -0.10553943365812302, + -0.042742930352687836, + 0.016564320772886276, + -0.0695846825838089, + 0.01658957079052925, + 0.060275349766016006, + -0.08568284660577774, + -0.002213250147178769, + 7.920323897142143e-34, + 0.04128093644976616, + -0.018296530470252037, + 0.00711237546056509, + -0.028563708066940308, + 0.0775897204875946, + 0.025345543399453163, + -0.03854314610362053, + 0.10001713037490845, + 0.04984046518802643, + 0.06544490158557892, + 0.016089346259832382, + -0.12869133055210114, + -0.016646822914481163, + 0.008858551271259785, + -0.018799250945448875, + -0.042225487530231476, + 0.09597308188676834, + -0.010485691018402576, + 0.03095307946205139, + 0.07899566739797592, + -0.07229263335466385, + 0.005611106753349304, + -0.04383501410484314, + 0.09605614840984344, + 0.03248019888997078, + 0.03249559551477432, + 0.06875365227460861, + 0.00038646263419650495, + -0.017903639003634453, + -0.0365770049393177, + -0.021257640793919563, + -0.010247427970170975, + -0.006646776106208563, + 0.09558606892824173, + -0.04170805588364601, + 0.061820387840270996, + -0.07463948428630829, + -0.00528462091460824, + -0.02918444760143757, + -0.017156047746539116, + 0.0036921740975230932, + 0.03933518007397652, + -0.023309702053666115, + 0.1021001785993576, + 0.004328940529376268, + -0.008420374244451523, + -0.07349884510040283, + 0.03410080075263977, + -0.05204388126730919, + 0.05027886480093002, + 0.04614424705505371, + -0.03775690123438835, + -0.0501653328537941, + 0.011414771899580956, + 0.0005813788156956434, + -0.04126472771167755, + 0.01725139282643795, + 0.07963483035564423, + -0.1481599062681198, + 0.007861495018005371, + -0.06954045593738556, + 0.031280290335416794, + 0.019999422132968903, + 0.04198051616549492, + 0.011937499046325684, + -0.018047448247671127, + 0.06394952535629272, + -0.01897478476166725, + -0.047401063144207, + -0.019107405096292496, + 0.0075112562626600266, + -0.006319568958133459, + -0.054762084037065506, + -0.023613115772604942, + 0.004237894434481859, + -0.031219087541103363, + -0.04245232418179512, + -0.08223698288202286, + -0.058450400829315186, + 0.017803702503442764, + -0.030008457601070404, + -0.03016597405076027, + -0.06541182845830917, + 0.0761202722787857, + -0.04358154535293579, + 0.012165225110948086, + 0.01269232202321291, + 0.06123901158571243, + 0.01068457867950201, + -0.006570326630026102, + 0.021210817620158195, + 0.06200127303600311, + -0.01187518797814846, + 0.016227347776293755, + 0.007861752063035965, + -2.0279442125570313e-08, + -0.0076029482297599316, + -0.010703117586672306, + -0.1149449497461319, + -0.06103306636214256, + 0.020900243893265724, + 0.013328570872545242, + 0.01994771510362625, + -0.10115791112184525, + 0.006361545063555241, + 0.003574869129806757, + 0.04263148829340935, + 0.09435775876045227, + -0.07423745095729828, + -0.007729885634034872, + -0.07463718205690384, + -0.015636226162314415, + 0.005873597227036953, + 0.033124491572380066, + 0.03012113831937313, + -0.050268661230802536, + 0.017187807708978653, + 0.03627703711390495, + 0.06832034885883331, + -0.02633279375731945, + -0.031900323927402496, + 0.015774795785546303, + -0.023068401962518692, + -0.062075112015008926, + 0.0010360605083405972, + 0.009299101307988167, + 0.09366041421890259, + -0.04101205989718437, + 0.008511175401508808, + -0.028756005689501762, + -0.08224296569824219, + 0.05650997906923294, + 0.022763654589653015, + -0.025350110605359077, + 0.003443513298407197, + 0.11154990643262863, + 0.07303564250469208, + 0.07220548391342163, + 0.03808462619781494, + -0.05691412091255188, + -0.10668428242206573, + -0.025470584630966187, + 0.06551925092935562, + 0.015208717435598373, + -0.05196409672498703, + -0.06931103765964508, + 0.010995619930326939, + 0.01418249774724245, + -0.004372854251414537, + -0.0024446325842291117, + 0.050429344177246094, + 0.04624338075518608, + 0.019972100853919983, + 0.13426949083805084, + -0.025747038424015045, + 0.03831767290830612, + 0.16171321272850037, + 0.027339331805706024, + 0.05566458776593208, + -0.00048512258217670023 + ], + "heart-half-bold||wellness,love,healthy,like,favorites,favorited": [ + -0.020521266385912895, + 0.033785488456487656, + 0.03714393824338913, + 0.08477722108364105, + 0.028367480263113976, + 0.03409478813409805, + 0.045984841883182526, + -0.0375230573117733, + 0.01391495019197464, + -0.038221992552280426, + 0.008771924301981926, + -0.04440032318234444, + -0.007076121401041746, + -0.09710174798965454, + 0.0698174238204956, + 0.02366396225988865, + 0.02717890962958336, + -0.04149242863059044, + -0.04328636825084686, + 0.05195411667227745, + -0.07618088275194168, + 0.021776266396045685, + 0.013451414182782173, + 0.10210639238357544, + 0.004945431370288134, + 0.06961238384246826, + 0.04090581461787224, + -0.03187241405248642, + -0.06565181165933609, + -0.018701640889048576, + 0.016243906691670418, + 0.020384522154927254, + 0.10916781425476074, + 0.00700339674949646, + -0.03617885708808899, + 0.009237436577677727, + 0.006621377542614937, + 0.009794645942747593, + -0.026129620149731636, + -0.013263017870485783, + -0.010615614242851734, + -0.09436801075935364, + 0.006246533244848251, + 0.0698314905166626, + -0.046145182102918625, + -0.0628373920917511, + -0.03946143761277199, + 0.006634571589529514, + 0.016095619648694992, + 0.1015472486615181, + -0.09442552924156189, + -0.05616714805364609, + -0.12441056966781616, + 0.04897338151931763, + 0.08678383380174637, + 0.03418794274330139, + -0.10679874569177628, + -0.04978382587432861, + -0.014091973192989826, + 0.01794477365911007, + 0.040381770581007004, + -0.010690799914300442, + 0.044484466314315796, + 0.026463983580470085, + 0.0009168525575660169, + -0.0969230905175209, + -0.02425498515367508, + 0.03444787114858627, + -0.0797959715127945, + 0.01493509765714407, + 0.04718150198459625, + 0.009985195472836494, + 0.027001839131116867, + -0.04213842749595642, + -0.017109263688325882, + 0.04819588363170624, + 0.01014651544392109, + -0.13513866066932678, + -0.010274838656187057, + -0.036713410168886185, + -0.07925295829772949, + -0.02541368082165718, + -0.04723059758543968, + -0.009392485953867435, + -0.0361781120300293, + 0.02301138825714588, + -0.025235384702682495, + -0.0550248883664608, + -0.0670894980430603, + -0.018807506188750267, + -0.053751349449157715, + -0.03529731184244156, + 0.03534528985619545, + 0.01847681775689125, + 0.0018176342127844691, + 0.040101293474435806, + 0.03357929363846779, + -0.07493569701910019, + -0.08002989739179611, + 0.05308103561401367, + 0.027733001857995987, + 0.07952115684747696, + 0.015289845876395702, + 0.029619574546813965, + -0.00672712828963995, + -0.05567082762718201, + -0.06634096056222916, + 0.05529315769672394, + 0.05843984708189964, + -0.002002227120101452, + -0.009309611283242702, + -0.03335528075695038, + 0.03373095393180847, + -0.03722112253308296, + 0.05957242101430893, + -0.030696691945195198, + 0.008932645432651043, + -0.05402076616883278, + 0.10113056749105453, + 0.12272967398166656, + 0.024016840383410454, + -0.030924148857593536, + 0.054317962378263474, + -0.053075533360242844, + -0.11910543590784073, + -0.0040405322797596455, + 0.05658432096242905, + -2.7989561907605097e-33, + -0.011756635271012783, + 0.016544636338949203, + 0.035150326788425446, + 0.086517833173275, + -0.02256205677986145, + -0.0004020538181066513, + -0.07092557847499847, + -0.00801247637718916, + -0.10299693793058395, + -0.01601959951221943, + -0.01120334304869175, + 0.08899074047803879, + -0.04651709273457527, + 0.1094292625784874, + -0.022433361038565636, + -0.09235401451587677, + -0.0932435393333435, + -0.02774246782064438, + -0.02833057940006256, + -0.00845729187130928, + -0.07229240238666534, + 0.0651860311627388, + -0.02494700253009796, + 0.0005797042394988239, + -0.039069317281246185, + -0.09824268519878387, + 0.027795029804110527, + -0.00597988348454237, + -0.03160462900996208, + 0.03621797636151314, + 0.017328906804323196, + 0.020705338567495346, + 0.01840836927294731, + -0.07119212299585342, + -0.03186611458659172, + 0.00696710916236043, + -0.04185067117214203, + 0.011399773880839348, + -0.014862185344099998, + 0.052337706089019775, + -0.005634680390357971, + -0.025538405403494835, + -0.004493365064263344, + -0.009137863293290138, + 0.014752776362001896, + 0.061945535242557526, + 0.038597214967012405, + 0.05129321664571762, + 0.01870645210146904, + -0.08706019818782806, + -0.003102022921666503, + -0.044576145708560944, + -0.0012581368209794164, + -0.011123273521661758, + -0.06510075181722641, + -0.020890705287456512, + 0.026604095473885536, + 0.07257901877164841, + -0.028903380036354065, + -0.027963168919086456, + 0.040865808725357056, + 0.02370814047753811, + 0.06266201287508011, + -0.1388966292142868, + -0.07741280645132065, + 0.046015381813049316, + -0.032871123403310776, + -0.07318393141031265, + -0.0011374081950634718, + 0.08338885754346848, + 0.055153630673885345, + 0.09531103819608688, + 0.002420146716758609, + -0.013537786900997162, + 0.01735355705022812, + 0.016503717750310898, + 0.03741667792201042, + 0.030577490106225014, + -0.018790679052472115, + -0.06362461298704147, + -0.0740218386054039, + 0.026204433292150497, + -0.009302052669227123, + 0.10836390405893326, + 0.03029201552271843, + 0.008986251428723335, + -0.034715212881565094, + -0.11009349673986435, + -0.015819862484931946, + 0.028540676459670067, + -0.06740948557853699, + 0.049071814864873886, + 0.06530902534723282, + -0.04312385991215706, + -0.10262719541788101, + 5.799255462033676e-34, + -0.016432758420705795, + -0.007493729703128338, + 0.02047402411699295, + 0.05766117572784424, + 0.05303929001092911, + -0.05473776161670685, + -0.05235404893755913, + 0.06606154143810272, + 0.059692177921533585, + 0.058019787073135376, + 0.04436337575316429, + -0.07740215957164764, + -0.04026161506772041, + -0.06172705814242363, + 0.018466269597411156, + 0.06395252048969269, + 0.06558104604482651, + 0.026017174124717712, + -0.012074006721377373, + 0.05569513887166977, + -0.023250145837664604, + -0.002325309906154871, + -0.07710623741149902, + 0.07540689408779144, + -0.015006950125098228, + 0.09094353020191193, + 0.03567315265536308, + -0.031460996717214584, + -0.0071664974093437195, + -0.04515654966235161, + 0.03114284947514534, + -0.05125776305794716, + -0.02444017305970192, + -0.017169717699289322, + -0.05812521278858185, + 0.04907736927270889, + -0.0859910175204277, + -0.03218606486916542, + -0.06331507116556168, + 0.04421742632985115, + 0.0081393513828516, + 0.012730714865028858, + -0.00018945682677440345, + 0.10607629269361496, + 0.01058351993560791, + -0.05384817346930504, + 0.02008890174329281, + 0.0034391500521451235, + -0.05942023918032646, + 0.06028025969862938, + 0.016084667295217514, + -0.014866211451590061, + -0.06110277771949768, + 0.10072850435972214, + 0.003733900375664234, + -0.004295797552913427, + 0.03756074234843254, + 0.07217387855052948, + -0.04182446748018265, + -0.022261759266257286, + -0.01978534646332264, + 0.04618735611438751, + 0.002697633346542716, + 0.03411766514182091, + 0.010038696229457855, + -0.03196828067302704, + 0.045459989458322525, + -0.05526713281869888, + -0.07310033589601517, + -0.009555761702358723, + -0.025304531678557396, + 0.014375393278896809, + -0.038133520632982254, + -0.02902539260685444, + -0.005895098205655813, + -0.03730801120400429, + -0.026461299508810043, + -0.051513828337192535, + 0.003793023293837905, + 0.07335600256919861, + -0.05275912210345268, + -0.02311304211616516, + -0.04863378778100014, + -0.04003027454018593, + -0.043839000165462494, + 0.0069137997925281525, + -0.015182667411863804, + 0.039555106312036514, + -0.006713589187711477, + -0.00018755649216473103, + 0.005776650737971067, + 0.03339661285281181, + -0.10222390294075012, + 0.024653738364577293, + 0.040852904319763184, + -2.1792365245687506e-08, + 0.06713435053825378, + -0.07613939046859741, + -0.07895509898662567, + -0.0281826201826334, + -0.023013634607195854, + -0.012904828414320946, + -0.024539809674024582, + -0.06086775287985802, + 0.007627737708389759, + 0.06229814141988754, + 0.022475726902484894, + 0.11596132069826126, + -0.06864450871944427, + -0.06270148605108261, + 0.0416611023247242, + -0.03883013501763344, + 0.013036680407822132, + 0.08300033956766129, + -0.01700461469590664, + -0.04461111128330231, + 0.06954202800989151, + 0.010477548465132713, + 0.04603886604309082, + -0.07555070519447327, + 0.022148944437503815, + 0.0014381592627614737, + -0.02997555024921894, + -0.06518390774726868, + 0.023985737934708595, + 0.019325295463204384, + 0.11416594684123993, + 0.0687098428606987, + 0.04283276945352554, + -0.006458548828959465, + -0.009484411217272282, + 0.00038046936970204115, + 0.043043121695518494, + -0.023822788149118423, + -0.03720596432685852, + 0.10300788283348083, + 0.04908401519060135, + -0.040167275816202164, + 0.001557889743708074, + -0.00234678341075778, + -0.060084328055381775, + -0.06523999571800232, + 0.1203623041510582, + 0.015278371050953865, + -0.004676428623497486, + -0.053982481360435486, + 0.015529387630522251, + -0.002303127432242036, + 0.062127403914928436, + 0.009662485681474209, + -0.06540285795927048, + 0.012458101846277714, + 0.011740203946828842, + 0.07884246110916138, + -0.018617110326886177, + -0.024465523660182953, + 0.1751263290643692, + 0.06923246383666992, + 0.02322336658835411, + 0.005471224896609783 + ], + "heart-straight-bold||wellness,love,healthy,like,favorites,favorited,suits,cards,gambling,casino,gaming,emoji": [ + -0.016022948548197746, + 0.026237333193421364, + -0.005237541161477566, + 0.05230853334069252, + -0.005217148456722498, + 0.009686851873993874, + 0.06413441896438599, + -0.0805656835436821, + 0.04258115589618683, + -0.045330557972192764, + 0.028189318254590034, + -0.014309349469840527, + -0.01597132906317711, + -0.0646311491727829, + 0.09595794230699539, + 0.011010156013071537, + 0.01878540590405464, + 0.00975488405674696, + -0.008633486926555634, + 0.07335764914751053, + -0.03739598020911217, + 0.03161127492785454, + 0.017355868592858315, + 0.055445585399866104, + -0.020734824240207672, + 0.032499365508556366, + 0.05586573854088783, + -0.021812301129102707, + -0.04106663167476654, + -0.010104546323418617, + 0.011366291902959347, + 0.047983765602111816, + 0.09904112666845322, + 0.04100150242447853, + -0.04560667648911476, + -0.007912268862128258, + -0.06961147487163544, + -0.016306176781654358, + -0.029940038919448853, + 0.039886392652988434, + -0.003972805105149746, + -0.09257045388221741, + 0.014945980161428452, + 0.05792340263724327, + 0.017698412761092186, + -0.05850784853100777, + -0.0013144509866833687, + 0.008826524019241333, + -0.03064057044684887, + 0.09055588394403458, + -0.050277892500162125, + -0.07876980304718018, + -0.11125773936510086, + 0.008193276822566986, + 0.04623878374695778, + 0.005420523229986429, + -0.11461387574672699, + -0.025029705837368965, + 0.007804451510310173, + 0.027848051860928535, + 0.07710543274879456, + -0.0007148487493395805, + 0.050572484731674194, + 0.021204780787229538, + -0.06799013912677765, + -0.04129720851778984, + 0.014108860865235329, + 0.07660432159900665, + -0.008130332455039024, + 0.019283315166831017, + 0.053770761936903, + -0.03866676241159439, + 5.393713217927143e-05, + -0.049105141311883926, + -0.03736898675560951, + 0.038644589483737946, + 0.014667456969618797, + -0.09758276492357254, + 0.011682028882205486, + -0.032648056745529175, + -0.060906536877155304, + -0.0979885533452034, + -0.048052795231342316, + -0.020873136818408966, + -0.01843850128352642, + 0.0640871673822403, + -0.03624700754880905, + -0.06915248185396194, + -0.08008551597595215, + -0.004954795818775892, + -0.06974431872367859, + -0.054882604628801346, + 0.049907904118299484, + -0.007985490374267101, + -0.0002911992487497628, + -0.004305065143853426, + 0.011677474714815617, + -0.08087099343538284, + -0.11363031715154648, + 0.04311342537403107, + 0.05809005722403526, + 0.08070144057273865, + 9.42630140343681e-05, + 0.04622094705700874, + 0.020120762288570404, + -0.014651584438979626, + -0.037113022059202194, + 0.0028070996049791574, + 0.055859606713056564, + 0.0014616328990086913, + -0.05188165605068207, + -0.05245952680706978, + 0.08374326676130295, + -0.06624288856983185, + 0.011276178993284702, + 0.035002537071704865, + -0.0632070004940033, + -0.02278894931077957, + 0.10065996646881104, + 0.16987815499305725, + -0.028238100931048393, + 0.005532443057745695, + 0.008490297012031078, + -0.05400603637099266, + -0.10505663603544235, + 0.024783922359347343, + 0.03432898968458176, + -3.387275133970733e-33, + 0.019421139732003212, + 0.03903696686029434, + 0.02703806944191456, + 0.05205663666129112, + -0.004968211520463228, + 0.0015573635464534163, + -0.046068694442510605, + -0.032751478254795074, + -0.08373881131410599, + 0.0394783616065979, + -0.0100025599822402, + 0.10481923818588257, + -0.07724062353372574, + 0.1526671051979065, + 0.01814071461558342, + -0.07494349032640457, + -0.03706352785229683, + -0.03864630311727524, + -0.009788540191948414, + 0.001046162680722773, + -0.04223628342151642, + 0.036594465374946594, + -0.023047758266329765, + -0.031222548335790634, + -0.09130261093378067, + -0.06405407190322876, + 0.01291960384696722, + -0.003183759981766343, + 0.01786443404853344, + 0.025624198839068413, + -0.01010232325643301, + 0.037853047251701355, + 0.0442686453461647, + -0.06359229981899261, + 0.017502496019005775, + 0.029986314475536346, + -0.035171039402484894, + 0.016905035823583603, + -0.03986252099275589, + 0.0279682669788599, + -0.04000183194875717, + -0.030063750222325325, + -0.05213422328233719, + -0.023177126422524452, + 0.012514295987784863, + 0.09333394467830658, + 0.015902908518910408, + -0.04615935683250427, + 0.005591873079538345, + -0.03183489665389061, + -0.010892574675381184, + -0.018146062269806862, + -0.007579301483929157, + 0.04079592227935791, + -0.08334951102733612, + -0.0627220869064331, + 0.00920490175485611, + 0.07865606993436813, + -0.05987431854009628, + -0.025514882057905197, + -0.024856209754943848, + 0.0052833566442132, + 0.08545888215303421, + -0.11104296147823334, + -0.10559259355068207, + 0.08124686777591705, + -0.04583413898944855, + -0.07152044773101807, + 7.455818558810279e-05, + 0.09994278848171234, + 0.07682221382856369, + 0.11106906831264496, + -0.013208392076194286, + -0.06059303879737854, + 0.03446238860487938, + 0.03542625531554222, + -0.027642985805869102, + 0.026320617645978928, + -0.03514095023274422, + -0.029631072655320168, + -0.06421064585447311, + 0.02045009657740593, + -0.027776438742876053, + 0.04004350304603577, + 0.03267470374703407, + -0.002017563208937645, + -0.022253690287470818, + -0.08220605552196503, + 0.01932387612760067, + 0.035372111946344376, + -0.09392780065536499, + 0.05583515018224716, + 0.07703874260187149, + -0.03598856180906296, + -0.0640711858868599, + 1.7105176658631746e-33, + -0.02503059059381485, + -0.03468701243400574, + 0.013564740307629108, + 0.04145365580916405, + 0.06922193616628647, + -0.028185924515128136, + -0.03695463761687279, + 0.04414331912994385, + 0.09164919704198837, + 0.025578446686267853, + 0.028791991993784904, + -0.07141458243131638, + -0.024614520370960236, + -0.04183939844369888, + 0.049794286489486694, + 0.028644699603319168, + 0.03040333092212677, + 0.05137357860803604, + -0.010143391788005829, + 0.09257939457893372, + -0.021089116111397743, + -0.038535911589860916, + -0.09512539952993393, + 0.08232128620147705, + 0.022566020488739014, + 0.07780285179615021, + 0.03053072839975357, + -0.06379258632659912, + 0.02713804878294468, + -0.033289335668087006, + 0.02617936208844185, + -0.02597595565021038, + -0.019325878471136093, + 0.016264574602246284, + -0.032254818826913834, + 0.015383674763143063, + -0.010031062178313732, + 0.05152174457907677, + -0.06748443841934204, + -0.024691743776202202, + 0.014783275313675404, + -0.005516323260962963, + 0.01785973832011223, + 0.10653205215930939, + 0.020098209381103516, + -0.03058684431016445, + -0.04994046315550804, + -0.034794557839632034, + -0.01812703162431717, + 0.06612585484981537, + -0.008489555679261684, + -0.027660198509693146, + -0.06155244633555412, + 0.04221343994140625, + -0.019731182605028152, + -0.017225056886672974, + -0.029158685356378555, + 0.06518010795116425, + -0.10342083126306534, + -0.0028904627542942762, + -0.024110279977321625, + -0.01570083573460579, + 0.04423872381448746, + 0.01640571653842926, + 0.01604663021862507, + -0.016584062948822975, + 0.054860081523656845, + -0.06442108750343323, + -0.061323024332523346, + 0.01985815539956093, + -0.042655058205127716, + 0.03352588787674904, + -0.08969895541667938, + 0.031147398054599762, + -0.023664891719818115, + -0.07365378737449646, + -0.017772208899259567, + -0.03817899152636528, + 0.004898217506706715, + 0.050719600170850754, + -0.003503156127408147, + -0.034293610602617264, + -0.04863612353801727, + -0.009340778924524784, + -0.031824544072151184, + 0.009618723765015602, + 0.0106499707326293, + 0.023057665675878525, + 0.010013061575591564, + 0.019421711564064026, + 0.005910271778702736, + 0.058785080909729004, + -0.07145554572343826, + -0.025137336924672127, + 0.002154366346076131, + -2.791949782476877e-08, + -0.003866578219458461, + -0.0948207750916481, + -0.091081902384758, + 0.003948200959712267, + -0.01741918735206127, + 0.0014156978577375412, + -0.006650487892329693, + -0.05777868628501892, + 0.023354720324277878, + -0.022331800311803818, + 0.05870755389332771, + 0.12453179061412811, + -0.07275043427944183, + -0.07918193936347961, + 0.046556878834962845, + -0.04742886498570442, + -0.02665300853550434, + 0.05926941707730293, + 0.03429889678955078, + -0.03212030977010727, + 0.10257594287395477, + 0.06148792430758476, + 0.02891496568918228, + -0.034580476582050323, + -0.03767077997326851, + 0.006128381937742233, + 0.014936828054487705, + -0.08886316418647766, + 0.02692914567887783, + 0.05705168470740318, + 0.11483212560415268, + 0.0206402987241745, + 0.04067934304475784, + -0.019048577174544334, + -0.055099986493587494, + 0.011692219413816929, + 0.07796177268028259, + -0.02807646244764328, + 0.001957016298547387, + 0.10263282060623169, + 0.08501361310482025, + -0.011676697991788387, + 0.007746384013444185, + -0.0419611893594265, + -0.07488244771957397, + -0.06504366546869278, + 0.13877886533737183, + -0.003198648104444146, + 0.019139263778924942, + -0.0752737820148468, + 0.004578433930873871, + 0.040270160883665085, + 0.02791869454085827, + 0.006553464103490114, + -0.011486374773085117, + -0.009864711202681065, + -0.0059974011965096, + 0.0978107899427414, + 0.0003906339406967163, + 0.002171778818592429, + 0.15112130343914032, + 0.04564103111624718, + 0.02437058463692665, + -0.008126333355903625 + ], + "heart-straight-break-bold||love,hate,crack,split,divorce,emoji": [ + -0.07812856882810593, + -0.03846867382526398, + 0.08964803814888, + 0.01138702780008316, + 0.06484301388263702, + 0.016132425516843796, + 0.00931072048842907, + -0.08097972720861435, + 0.10295681655406952, + -0.047311946749687195, + -0.002572273602709174, + -0.012309635058045387, + 0.011225210502743721, + -0.04281690716743469, + 0.05258402228355408, + 0.07554485648870468, + -0.008393471129238605, + 0.004390099551528692, + -0.027382846921682358, + 0.031903225928545, + -0.030428709462285042, + 0.021091794595122337, + -0.027192380279302597, + 0.009639410302042961, + 0.007375110872089863, + 0.06102723628282547, + 0.004082591738551855, + 0.03205464407801628, + -0.026902470737695694, + -0.014757674187421799, + 0.04817209765315056, + 0.007139168679714203, + 0.08086112141609192, + 0.08205483853816986, + -0.01670503430068493, + -0.03258330747485161, + -0.07528474181890488, + 0.07505953311920166, + 0.013422164134681225, + 0.03600957989692688, + -0.04131583496928215, + -0.04849735274910927, + 0.016000686213374138, + 0.02130538411438465, + 0.033617302775382996, + -0.011824223212897778, + -0.013400465250015259, + -0.034954577684402466, + 0.010669568553566933, + 0.07307364791631699, + -0.0711107850074768, + -0.03477228060364723, + -0.0872798040509224, + 0.10059431195259094, + 0.02798628620803356, + -0.03676588833332062, + -0.03134055808186531, + 0.030652545392513275, + 0.04488715901970863, + 0.042495448142290115, + 0.052999529987573624, + 0.011680168099701405, + 0.05896720662713051, + -0.02516755647957325, + 0.003003497142344713, + -0.0021082654129713774, + 0.05192752182483673, + 0.050451718270778656, + -0.020429927855730057, + 0.1094530001282692, + -0.024426493793725967, + -0.030426673591136932, + -0.03273782134056091, + -0.019439833238720894, + -0.09454866498708725, + 0.048414282500743866, + -0.01693440042436123, + -0.08774114400148392, + -0.006737595424056053, + -0.06207574903964996, + -0.09085230529308319, + -0.08279002457857132, + -0.09025058895349503, + -0.052969809621572495, + -0.04387952759861946, + 0.043960362672805786, + -0.03803425282239914, + -0.04584484174847603, + -0.06514949351549149, + -0.014002082869410515, + -0.08158440887928009, + -0.021868983283638954, + 0.08853599429130554, + -0.025719964876770973, + -0.012220693752169609, + 0.006705352105200291, + -0.02362927980720997, + -0.05856117606163025, + -0.11255726218223572, + 0.08391302824020386, + 0.02422596700489521, + 0.03693649172782898, + -0.008444022387266159, + -0.02879541926085949, + 0.021251069381833076, + -0.07011424750089645, + 0.008041935041546822, + 0.010126653127372265, + 0.021090950816869736, + 0.008158829994499683, + 0.013629990629851818, + -0.055285461246967316, + 0.012256146408617496, + -0.0961952656507492, + 0.0537123903632164, + 0.0009648031555116177, + -0.0005241725011728704, + -0.005181584507226944, + 0.14557583630084991, + 0.1699678599834442, + -0.01061079278588295, + -0.03231111168861389, + -0.08031871169805527, + -0.031241850927472115, + -0.09115232527256012, + -0.011084727942943573, + -0.01691768504679203, + -2.4640626256570402e-33, + 0.03285764530301094, + 0.0033441316336393356, + -0.020504362881183624, + 0.10158523917198181, + 0.037823885679244995, + -0.0028259637765586376, + -0.09660758823156357, + 0.0003431090444792062, + -0.07587949186563492, + 0.04096207022666931, + -0.02230845019221306, + 0.08158499002456665, + -0.042539533227682114, + 0.0225287564098835, + 0.06919337809085846, + -0.05256154015660286, + -0.023665422573685646, + -0.05367758497595787, + -0.008118310011923313, + 0.03433749079704285, + -0.05991395562887192, + 0.03238195553421974, + 0.03940952941775322, + -0.005455770529806614, + -0.1012737900018692, + -0.08744239807128906, + 0.01770639233291149, + 0.020685525611042976, + -0.0004539011570159346, + 0.01326318085193634, + -0.05946654453873634, + 0.03656146302819252, + 0.09606459736824036, + -0.0008949829498305917, + 0.03449993580579758, + -0.01981552504003048, + -0.09024729579687119, + 0.030721625313162804, + -0.054666727781295776, + 0.030101101845502853, + -0.09286152571439743, + -0.045300763100385666, + -0.011065850965678692, + -0.027227353304624557, + 0.04659204185009003, + 0.07395009696483612, + -0.061389390379190445, + 0.0031207986176013947, + 0.06244422867894173, + -0.008456534706056118, + 0.016268646344542503, + -0.02249019965529442, + -0.02671131119132042, + 0.05946413427591324, + -0.0560029037296772, + -0.019369222223758698, + -0.0052361567504704, + 0.003101896494626999, + 0.005153792444616556, + 0.035901498049497604, + -0.022017428651452065, + -0.0027242943178862333, + 0.09982065856456757, + -0.053960688412189484, + -0.0375785268843174, + 0.05334490165114403, + -0.03133799880743027, + -0.008311590179800987, + 0.006936522666364908, + 0.05923204496502876, + -0.016642237082123756, + 0.0692329928278923, + -0.017023159191012383, + 0.0023245394695550203, + -0.00841679610311985, + 0.006692756433039904, + 0.005976482294499874, + 0.028509359806776047, + 0.045660220086574554, + 0.0120863551273942, + -0.03761104866862297, + -0.05247444659471512, + 0.019820332527160645, + 0.015892760828137398, + -0.00030402146512642503, + 0.008642295375466347, + -0.04251841828227043, + -0.10377141088247299, + -0.039234694093465805, + 0.015078218653798103, + -0.07961444556713104, + 0.02166404016315937, + 0.07554027438163757, + -0.07390432059764862, + -0.0035213250666856766, + 1.3695265911567991e-33, + 0.03964456543326378, + -0.02760477364063263, + 0.010679101571440697, + -0.01859232597053051, + 0.08419162034988403, + 0.020139072090387344, + -0.026645736768841743, + 0.0860024094581604, + 0.06191382184624672, + 0.07667705416679382, + 0.02923843450844288, + -0.12407815456390381, + -0.015564175322651863, + 0.0015016497345641255, + -0.0034140541683882475, + -0.030011765658855438, + 0.09355275332927704, + -0.005697830114513636, + 0.031078927218914032, + 0.09285721182823181, + -0.05738091468811035, + 0.00244504539296031, + -0.060548823326826096, + 0.10886861383914948, + 0.040314752608537674, + 0.040574200451374054, + 0.06631176173686981, + 0.0019187588477507234, + -0.005751926451921463, + -0.018968721851706505, + -0.019658172503113747, + -0.0161597840487957, + -0.01197589561343193, + 0.06671950966119766, + -0.043078355491161346, + 0.024919215589761734, + -0.0666138157248497, + 0.015142395161092281, + -0.037512507289648056, + -0.024295706301927567, + 0.008629138581454754, + 0.010708344168961048, + -0.007255649194121361, + 0.11649039387702942, + 0.011335118673741817, + -0.015491886995732784, + -0.08812223374843597, + 0.022644173353910446, + -0.05464904010295868, + 0.047677189111709595, + 0.033023953437805176, + -0.02982342056930065, + -0.05637907609343529, + 0.023255808278918266, + 0.013917287811636925, + -0.05616777390241623, + -0.002003489760681987, + 0.08084230124950409, + -0.15100620687007904, + 0.018971199169754982, + -0.07028456032276154, + 0.012573597021400928, + 0.032029323279857635, + 0.033328939229249954, + 0.024488771334290504, + -0.0208898838609457, + 0.06663907319307327, + -0.03148988261818886, + -0.052698537707328796, + -0.01150901522487402, + 7.981539965840057e-06, + 0.0054349335841834545, + -0.07047978043556213, + -0.0201362706720829, + 0.006151428911834955, + -0.04549350216984749, + -0.045849014073610306, + -0.08743483573198318, + -0.04749084636569023, + 0.029898660257458687, + -0.037607088685035706, + -0.029121121391654015, + -0.06935097277164459, + 0.07615897059440613, + -0.04664000868797302, + -0.006027548108249903, + 0.011757319793105125, + 0.0578790046274662, + 0.03009648248553276, + -0.0008709017420187593, + 0.01365046575665474, + 0.0587487667798996, + -0.016786163672804832, + 0.003939969465136528, + 0.020993126556277275, + -2.110396835064421e-08, + -0.02850102260708809, + -0.021200966089963913, + -0.10228172689676285, + -0.05460329353809357, + 0.01537814736366272, + 0.015321291983127594, + 0.00502240052446723, + -0.08463777601718903, + 0.005755280610173941, + -0.005607136059552431, + 0.05885365605354309, + 0.09848517924547195, + -0.08656834810972214, + -0.009820600971579552, + -0.048387471586465836, + -0.022391103208065033, + 0.00022847957734484226, + 0.04822635278105736, + 0.040398772805929184, + -0.05924909934401512, + 0.03685041517019272, + 0.04387909173965454, + 0.061276476830244064, + -0.019937792792916298, + -0.045467812567949295, + 0.02850288152694702, + -0.004358536098152399, + -0.07225233316421509, + 0.007802294567227364, + 0.01576460897922516, + 0.08927163481712341, + -0.04160739853978157, + -0.0021398537792265415, + -0.03682394698262215, + -0.10269399732351303, + 0.058203551918268204, + 0.030259042978286743, + -0.02576501853764057, + 0.005409214645624161, + 0.10441967099905014, + 0.081965371966362, + 0.07105118781328201, + 0.03640853241086006, + -0.05191580951213837, + -0.11006492376327515, + -0.031213849782943726, + 0.07196532934904099, + 0.01377544179558754, + -0.05019524693489075, + -0.082858145236969, + 0.005917830392718315, + 0.027467362582683563, + -0.0032775059808045626, + 0.0008137416443787515, + 0.05457333102822304, + 0.03240610659122467, + 0.009689563885331154, + 0.11666897684335709, + -0.03891192749142647, + 0.05343465879559517, + 0.1577291637659073, + 0.03438064455986023, + 0.05349206551909447, + -0.011565434746444225 + ], + "heartbeat-bold||wellness,healthy,ecg,ekg,vitals,monitor": [ + -0.0009314162307418883, + 0.007299469318240881, + -0.020773643627762794, + 0.03970155492424965, + 0.030349234119057655, + 0.011244338005781174, + -0.02472914196550846, + -0.06936376541852951, + -0.0074061499908566475, + -0.057087142020463943, + 0.023927301168441772, + -0.07336155325174332, + -0.006381514016538858, + -0.08857258409261703, + -0.006150435656309128, + -0.010967671871185303, + 0.029646607115864754, + -0.006202967371791601, + -0.029685435816645622, + 0.05839207395911217, + -0.05159739404916763, + 0.04734782502055168, + 0.021966509521007538, + 0.07525432109832764, + 0.005582330748438835, + 0.031197691336274147, + 0.005439701955765486, + -0.0018751701572909951, + 0.003327075159177184, + -0.049858056008815765, + 0.04027692228555679, + -0.04838601499795914, + 0.12639909982681274, + 0.04965852200984955, + -0.028567852452397346, + 0.021947897970676422, + 0.07413218170404434, + -0.0165716502815485, + -0.10310275852680206, + 0.021639008074998856, + 0.042047061026096344, + -0.08902342617511749, + 0.008875509724020958, + 0.016293810680508614, + 0.005240435246378183, + -0.027666443958878517, + -0.08323173969984055, + -0.07741670310497284, + -0.004351205658167601, + 0.015070685185492039, + -0.10649236291646957, + -0.08756613731384277, + -0.048942603170871735, + 0.07156597822904587, + 0.07362516969442368, + 0.02620622329413891, + -0.09425418078899384, + -0.04636097699403763, + -0.013304012827575207, + -0.04586810618638992, + 0.022303810343146324, + 0.02650112472474575, + 0.06077568605542183, + 0.04173843935132027, + 0.0032899202778935432, + 0.008128475397825241, + -0.007839392870664597, + 0.057157039642333984, + 0.0010929318377748132, + 0.02360204979777336, + -0.002008848125115037, + -0.06817220896482468, + 0.031346797943115234, + -0.04347910359501839, + -0.049218881875276566, + 0.04872370511293411, + -0.0012766263680532575, + -0.07286054641008377, + -0.029970955103635788, + -0.04028128460049629, + -0.05948170647025108, + -0.030049225315451622, + -0.08123744279146194, + 0.0010367495706304908, + 0.054428864270448685, + 0.0525103397667408, + -0.035961661487817764, + -0.06217316910624504, + -0.0810697004199028, + -0.039744600653648376, + 0.014365419745445251, + -0.02416250854730606, + 0.04852248355746269, + 0.05003974214196205, + 0.007684755604714155, + 0.04896528273820877, + 0.0027417344972491264, + -0.01503758318722248, + 0.02323480136692524, + -0.010310099460184574, + 0.04246000945568085, + 0.06279245764017105, + -0.0007866289233788848, + 0.10521800816059113, + -0.01448741089552641, + -0.034174658358097076, + -0.05375891551375389, + -0.00023169731139205396, + 0.048374954611063004, + 0.04348625987768173, + 0.041340894997119904, + -0.0058954632841050625, + 0.039647091180086136, + 0.02273840457201004, + 0.10394221544265747, + 0.07496238499879837, + -0.058246396481990814, + 0.009259412996470928, + 0.09070521593093872, + 0.1224258616566658, + 0.03577457740902901, + -0.0814632847905159, + 0.03263721615076065, + -0.07577276974916458, + 0.010397793725132942, + 0.051350075751543045, + 0.006232613697648048, + -1.5972374793263386e-33, + 0.04472950100898743, + 0.013548520393669605, + 0.04420659691095352, + 0.08401810377836227, + -0.011591585353016853, + 0.01757686212658882, + -0.048699989914894104, + -0.04148125648498535, + 0.028254201635718346, + 0.06858361512422562, + -0.023422403261065483, + 0.1212509423494339, + -0.0015935117844492197, + 0.10081950575113297, + -0.035036440938711166, + -0.08838608860969543, + -0.09069683402776718, + 0.001525725587271154, + -0.0268703605979681, + 0.012396763078868389, + -0.047321539372205734, + -0.04683125764131546, + -0.06339562684297562, + 0.010359853506088257, + 0.028198324143886566, + 0.02932167425751686, + 0.05501937121152878, + 0.04297582060098648, + -0.04253333806991577, + -0.010671229101717472, + -0.0031733678188174963, + 0.022041955962777138, + -0.013859357684850693, + -0.054254911839962006, + -0.03883801028132439, + 0.024825111031532288, + -0.06897127628326416, + 0.03513394668698311, + -0.035565149039030075, + 0.01293912436813116, + -0.02183559350669384, + -0.022679883986711502, + -0.028756633400917053, + -0.017404666170477867, + 0.0732169970870018, + 0.060089342296123505, + 0.003009456442669034, + -0.012258299626410007, + 0.04113338515162468, + -0.03823625668883324, + -0.07903710752725601, + -0.08647691458463669, + 0.04483702406287193, + -0.09781396389007568, + -0.005252253729850054, + 0.02781626209616661, + 0.017768817022442818, + 0.07057509571313858, + -0.09243575483560562, + 0.03918830677866936, + 0.0008918570820242167, + 0.028970755636692047, + 0.03589295595884323, + -0.08336169272661209, + -0.013834474608302116, + 0.08511334657669067, + -0.06840802729129791, + -0.04508597031235695, + 0.004883041605353355, + 0.06586922705173492, + 0.055100489407777786, + 0.08599139750003815, + 0.04502353444695473, + -0.006549153942614794, + 0.04084232449531555, + 0.05357963591814041, + -0.07035879790782928, + 0.05376700311899185, + -0.07799724489450455, + -0.0756218358874321, + -0.047986604273319244, + 0.040803201496601105, + -0.012914322316646576, + 0.14314240217208862, + 0.05462659150362015, + -0.04345302656292915, + -0.03855322301387787, + -0.02102077193558216, + -0.07189400494098663, + 0.04797867685556412, + -0.06727278232574463, + 0.0954345166683197, + 0.03032842092216015, + -0.019696827977895737, + -0.14506375789642334, + -1.3365216485215864e-33, + 0.0038900708314031363, + 0.07527391612529755, + -0.012925432994961739, + -0.01481233723461628, + 0.048731446266174316, + -0.00043177331099286675, + 0.0385894700884819, + 0.04496544599533081, + 0.03815414756536484, + 0.022578243166208267, + 0.08089879155158997, + -0.056722309440374374, + -0.08793333917856216, + -0.0272388756275177, + -0.035392820835113525, + 0.03507370501756668, + -0.045721787959337234, + -0.03680579364299774, + -0.01036430336534977, + 0.05925710126757622, + -0.054776474833488464, + -0.031136037781834602, + -0.0378786101937294, + 0.07242581248283386, + 0.03453519195318222, + 0.07329666614532471, + -0.011390645056962967, + -0.02000204287469387, + -0.00871443934738636, + -0.07825912535190582, + -0.012823657132685184, + -0.02913689985871315, + 0.003984693903476, + 0.04171707481145859, + -0.036690760403871536, + -6.385139568010345e-05, + 0.018149856477975845, + -0.0031132898293435574, + -0.018281379714608192, + -0.02840547449886799, + 0.0443202443420887, + 0.11922713369131088, + 0.018720131367444992, + 0.037711117416620255, + -0.018559429794549942, + 0.00809935200959444, + -9.471975499764085e-05, + -0.018329648301005363, + -0.09901727735996246, + 0.040016476064920425, + -0.003446856513619423, + -0.06267480552196503, + -0.05110064148902893, + 0.08026725053787231, + -0.0435546338558197, + 0.023253532126545906, + -0.015319878235459328, + 0.036024946719408035, + -0.0548320934176445, + -0.025902265682816505, + -0.004648236092180014, + -0.027923380956053734, + -0.0419488400220871, + 0.047527071088552475, + -0.032559510320425034, + -0.0030403875280171633, + 0.05183224752545357, + -0.06156431883573532, + -0.02030431479215622, + -0.024244628846645355, + 0.02238192968070507, + -0.041859667748212814, + -0.030499055981636047, + -0.04082779958844185, + 0.003046449739485979, + -0.04306149482727051, + -0.052002619951963425, + -0.05747416988015175, + -0.040417324751615524, + -0.007427371107041836, + -0.012385591864585876, + -0.07183186709880829, + -0.002122420584782958, + -0.043581604957580566, + -0.03736730292439461, + 0.03796098008751869, + 0.02437247335910797, + -0.03547490015625954, + 0.033538639545440674, + 0.024088827893137932, + -0.056372515857219696, + 0.06946305930614471, + -0.13958978652954102, + 0.006224226206541061, + -0.03937223181128502, + -2.0422412205789442e-08, + 0.06856484711170197, + -0.03889429196715355, + -0.029212476685643196, + -0.05231272429227829, + -0.02692662924528122, + -0.06867077946662903, + -0.009412121959030628, + -0.028142502531409264, + -0.021595599129796028, + 0.05673110857605934, + 0.00010996225319104269, + 0.010933390818536282, + -0.08441416919231415, + -0.07484910637140274, + 0.07422149181365967, + -0.07183525711297989, + -0.08121299743652344, + 0.09999339282512665, + -0.012889533303678036, + -0.029261479154229164, + 0.05614667013287544, + 0.03685441613197327, + -0.013017267920076847, + 0.005639014299958944, + 0.11368370056152344, + -0.02709159627556801, + 0.01370399072766304, + -0.0175444558262825, + 0.0678277462720871, + 0.02391788735985756, + 0.06651986390352249, + 0.0462939478456974, + 0.08577747642993927, + -0.024792322888970375, + -0.04314040392637253, + -0.04009152203798294, + -0.03350359573960304, + -0.04452049359679222, + -0.007466671988368034, + 0.14567101001739502, + -0.025013186037540436, + -0.07785066962242126, + -0.08110997080802917, + -0.012660348787903786, + 0.0029885410331189632, + -0.09448960423469543, + 0.0528915673494339, + -0.015885356813669205, + 0.03583034500479698, + -0.0408182330429554, + 0.05069992318749428, + -0.056049562990665436, + 0.10025887191295624, + -0.021518448367714882, + -0.05460437014698982, + 0.005385756492614746, + 0.029300859197974205, + 0.05110277608036995, + -0.029763707891106606, + 0.030015861615538597, + 0.13196386396884918, + -0.005660998169332743, + 0.06340823322534561, + -0.009490502066910267 + ], + "hexagon-bold||6,shapes,polygons": [ + 0.08156442642211914, + 0.018757173791527748, + -0.07759851962327957, + 0.036049507558345795, + -0.04334825277328491, + 0.017108634114265442, + 7.518372513004579e-06, + -0.032633550465106964, + -0.018039174377918243, + 0.018514512106776237, + -0.028138158842921257, + -0.005336611066013575, + -0.0075282445177435875, + -0.0576004795730114, + 0.04349293187260628, + -0.026049572974443436, + -0.04630818963050842, + 0.008232906460762024, + -0.06292646378278732, + 0.023407649248838425, + 0.007099450565874577, + -0.03093717247247696, + 0.01738489791750908, + 0.007977734319865704, + 0.036237575113773346, + 0.028243931010365486, + 0.06966833770275116, + 0.016635464504361153, + 0.05542049929499626, + -0.09337128698825836, + -0.017765652388334274, + 0.06846906244754791, + 0.07725600153207779, + -0.039000462740659714, + 0.005908775608986616, + -0.012476547621190548, + -0.026511382311582565, + 0.044795118272304535, + 0.015982164070010185, + 0.0696483701467514, + 0.0005911673069931567, + -0.03509332239627838, + 0.06600182503461838, + -0.0093891192227602, + -0.06269226968288422, + -0.012770047411322594, + -0.12629055976867676, + 0.0656537339091301, + 0.06914401799440384, + -0.0978272408246994, + 0.014580714516341686, + -0.13865472376346588, + -0.07240720838308334, + -0.024334685876965523, + 0.018824221566319466, + -0.022013111039996147, + -0.1303895115852356, + -0.10779941082000732, + 0.0776260644197464, + -0.07436741143465042, + 0.04829299449920654, + 0.024960877373814583, + 0.0661708414554596, + 0.07129824906587601, + 0.017830150201916695, + 0.06445139646530151, + 0.01803755573928356, + -0.025008313357830048, + -0.045714788138866425, + 0.03135029599070549, + -0.00917067937552929, + 0.09434245526790619, + -0.00391525449231267, + -0.08624619245529175, + -0.027270987629890442, + -0.013285426422953606, + -0.022793708369135857, + -0.0393124558031559, + 0.014464064501225948, + -0.07006045430898666, + -0.13817819952964783, + 0.01527654193341732, + 0.010390633717179298, + 0.059415630996227264, + -0.033899936825037, + 0.09723572432994843, + -0.06284436583518982, + -0.04329299554228783, + -0.03404439240694046, + 0.02665344998240471, + -0.005022492725402117, + 0.050767019391059875, + -0.00350937875919044, + -0.03397805243730545, + -0.07661591470241547, + 0.0337662398815155, + 0.06430672854185104, + 0.055657390505075455, + -0.010781840421259403, + 0.03702063485980034, + 0.14890307188034058, + 0.01025906391441822, + 0.02205478772521019, + -0.00107105472125113, + 0.021648865193128586, + 0.06619899719953537, + -0.014748209156095982, + 0.044886525720357895, + 0.02614947222173214, + 0.04389280080795288, + -0.05671823397278786, + -0.05290261283516884, + -0.025868622586131096, + -0.10224071890115738, + -0.06200621277093887, + -0.004898133222013712, + -0.05602790787816048, + -0.029413767158985138, + 0.055451035499572754, + 0.06952163577079773, + 0.01025073416531086, + 0.019661394879221916, + 0.00971598643809557, + 0.03053450770676136, + 0.04219920188188553, + -0.031152447685599327, + -0.02389601245522499, + -2.199480704135029e-33, + -0.009616821072995663, + 0.04068475961685181, + 0.045469559729099274, + 0.08818986266851425, + 0.0011803406523540616, + -0.05533621087670326, + 0.015728600323200226, + -0.0852653756737709, + -0.042508769780397415, + 0.06625989079475403, + -0.07964152097702026, + 0.10939319431781769, + -0.016006361693143845, + 0.006565458606928587, + 0.11297422647476196, + -0.0520494282245636, + 0.017678074538707733, + -0.012623308226466179, + -0.11087176203727722, + -0.03421492502093315, + 0.0027833960484713316, + 0.032039131969213486, + -0.03239554911851883, + -0.06281096488237381, + -0.044723980128765106, + 0.009014985524117947, + 0.017216483131051064, + 0.03193271905183792, + -0.09226664155721664, + 0.033848024904727936, + -0.008080868981778622, + 0.03344370052218437, + 0.031325049698352814, + 0.07695434242486954, + -0.022719252854585648, + 0.0010140315862372518, + -0.04871061071753502, + -0.007431409787386656, + 0.002415197901427746, + 0.013461071066558361, + 0.06598614901304245, + -0.014975786209106445, + -0.000509639095980674, + 0.032981932163238525, + 0.053546350449323654, + 0.09231773763895035, + 0.054535940289497375, + -0.08524247258901596, + 0.02994135022163391, + 0.026084398850798607, + 0.008525733835995197, + 0.06330610066652298, + 0.02573193423449993, + -0.030288096517324448, + 0.024782275781035423, + -0.036334309726953506, + -0.0026315401773899794, + 0.10569599270820618, + -0.0012210076674818993, + 0.1248774603009224, + 0.02145952731370926, + 0.01965336874127388, + -0.022325435653328896, + 0.07365893572568893, + -0.08676716685295105, + -0.007981663569808006, + -0.022302940487861633, + 0.051318276673555374, + 0.0009009242639876902, + -0.04949735105037689, + -0.01065327599644661, + 0.07169491052627563, + 0.027836250141263008, + 0.028491878882050514, + -0.019455771893262863, + 0.019147809594869614, + -0.056022386997938156, + -0.012465184554457664, + -0.012825267389416695, + -0.047043610364198685, + 0.01568128913640976, + -0.03213997185230255, + -0.10811580717563629, + -0.053874384611845016, + -0.00993603840470314, + 0.046488162130117416, + 0.00878220796585083, + -0.05162432789802551, + -0.07176902890205383, + 0.03318294137716293, + -0.019127247855067253, + -0.08475437760353088, + 0.03142120689153671, + -0.03983132541179657, + 0.011931726709008217, + -1.09722203909187e-33, + -0.10017738491296768, + 0.026734204962849617, + -0.026063555851578712, + -0.049566347151994705, + -0.010305813513696194, + 0.05793309956789017, + 0.10919436812400818, + 0.05042386054992676, + -0.07334277033805847, + -0.027392951771616936, + 0.031730566173791885, + 0.045366209000349045, + -0.008174038492143154, + -0.09096767008304596, + -0.07062924653291702, + 0.010256902314722538, + 0.046953655779361725, + 0.010211411863565445, + -0.020260198041796684, + -0.04943167045712471, + -0.06692192703485489, + -0.05540355294942856, + -0.13657547533512115, + 0.03039519302546978, + -0.02358398586511612, + 0.09866879880428314, + -0.002350712427869439, + -0.08002391457557678, + 0.019289329648017883, + 0.04466645419597626, + -0.004452457185834646, + -0.0728725865483284, + 0.03268943727016449, + 0.08626163005828857, + -0.052925750613212585, + -0.08688975125551224, + -0.015075922943651676, + -0.06098303198814392, + 0.08975402265787125, + -0.014118822291493416, + 0.007887852378189564, + -0.037703562527894974, + 0.06785047054290771, + 0.046449460089206696, + -0.007444378919899464, + 0.04426372051239014, + -0.04134628549218178, + -0.01307593658566475, + -0.0095840934664011, + 0.06512214988470078, + -0.05969170108437538, + -0.01111624762415886, + 0.02100447006523609, + 0.06880871951580048, + 0.013411103747785091, + -0.028016667813062668, + -0.02128315530717373, + -0.01522366888821125, + -0.026774806901812553, + 0.10168192535638809, + -0.05799942836165428, + 0.0505586713552475, + 0.019220227375626564, + 0.06980763375759125, + 0.026695841923356056, + 0.016087278723716736, + 0.038425806909799576, + -0.06893553584814072, + -0.04129258915781975, + 0.041444841772317886, + 0.0357690155506134, + 0.00922214612364769, + -0.0628068819642067, + -0.03418997302651405, + 0.036978963762521744, + -0.010269825346767902, + 0.05481927841901779, + 0.04616966471076012, + -0.020171334967017174, + 0.05930943787097931, + -0.05899835005402565, + -0.04190202057361603, + -0.021385302767157555, + 0.05381619930267334, + -0.006665079388767481, + -0.0367097370326519, + 0.0816466435790062, + 0.015352916903793812, + -0.0002652298426255584, + 0.05427560210227966, + 0.017614029347896576, + 0.030361056327819824, + 0.02143855392932892, + -0.0391414649784565, + 0.0017482441617175937, + -1.6942850677992283e-08, + 0.01926567405462265, + -0.11372622102499008, + -0.01569739170372486, + -0.08875524997711182, + 0.06539341807365417, + -0.02487006038427353, + -0.030161980539560318, + -0.09102893620729446, + -0.09468179941177368, + 0.00669420650228858, + 0.08025845140218735, + -0.024514254182577133, + -0.05379781872034073, + -0.020938629284501076, + -0.007922074757516384, + -0.08183091878890991, + -0.006066471338272095, + 0.040424998849630356, + 0.004389546811580658, + -0.11669828742742538, + -0.0487927682697773, + -0.02148982137441635, + 0.05229939520359039, + -0.0023961111437529325, + 0.04126483201980591, + 0.015041605569422245, + -0.01932908035814762, + -0.007543602492660284, + 0.0910198986530304, + 0.05850115418434143, + -0.026347976177930832, + 0.01948929764330387, + -0.0034354571253061295, + -0.00492472667247057, + -0.0433877594769001, + 0.040060460567474365, + -0.0067900316789746284, + -0.029038069769740105, + -0.0257814172655344, + 0.057078875601291656, + 0.021557951346039772, + -0.05454331636428833, + 0.045182712376117706, + -0.06888070702552795, + 0.03087710402905941, + 0.07193457335233688, + 0.03074456937611103, + 0.010404261760413647, + -0.058524321764707565, + -0.08014426380395889, + -0.10771030187606812, + 0.0015014532255008817, + 0.0037755260709673166, + 0.04891632869839668, + -0.0071279932744801044, + -0.03882904723286629, + 0.03329019621014595, + 0.006124792620539665, + 0.013985650613904, + 0.023238230496644974, + 0.07939217984676361, + -0.012428329326212406, + 0.01956619881093502, + -0.009187744930386543 + ], + "high-definition-bold||*new*,hd,resolution,video": [ + 0.028168916702270508, + -0.10626917332410812, + -0.010996387340128422, + -0.0634835734963417, + 0.06317181885242462, + -0.030851680785417557, + -0.008478986099362373, + 0.0009973504347726703, + -0.03060917742550373, + -0.0002958744880743325, + -0.05098142474889755, + 0.022306693717837334, + -0.011644207872450352, + -0.011548819951713085, + 0.009502990171313286, + 0.015473966486752033, + 0.08422695100307465, + 0.007521673105657101, + -0.03750240430235863, + 0.018622837960720062, + 0.042025770992040634, + -0.05828049033880234, + 0.003545655170455575, + 0.026377815753221512, + 0.048484452068805695, + -0.006020403932780027, + 0.0684380754828453, + 0.036805685609579086, + 0.03184954822063446, + -0.0637185201048851, + 0.0034423316828906536, + 0.051858432590961456, + 0.168023943901062, + 0.026331303641200066, + 0.03617249056696892, + -0.001661641406826675, + 0.018288640305399895, + -0.06708818674087524, + -0.07903111726045609, + -0.022365324199199677, + 0.044848937541246414, + -0.010085122659802437, + 0.008023625239729881, + 0.04543361812829971, + -0.03075757622718811, + -0.03420495241880417, + 0.021880287677049637, + -0.06206121668219566, + 0.004129929933696985, + -0.08032537251710892, + -0.05296913906931877, + -0.028133535757660866, + -0.11784371733665466, + -0.03997926041483879, + 0.011136801913380623, + 0.012751363217830658, + -0.03215518966317177, + -0.03533115237951279, + 0.07963825017213821, + -0.0130391176789999, + -0.012594948522746563, + -0.004436790477484465, + 0.06416309624910355, + 0.06299110502004623, + 0.06581374257802963, + 0.01481146551668644, + -0.007896214723587036, + -0.027249841019511223, + -0.0029310735408216715, + 0.04256296530365944, + -0.11429339647293091, + 0.03642234206199646, + -0.004975527059286833, + 0.023625312373042107, + -0.05907782167196274, + -0.0789799764752388, + 0.00418443838134408, + 0.0003509718517307192, + -0.004317817743867636, + -0.0469706766307354, + -0.017030442133545876, + -0.04264262691140175, + -0.035191819071769714, + 0.003518613986670971, + 0.06953785568475723, + 0.058612845838069916, + -0.033253174275159836, + -0.08419656753540039, + -0.06966812163591385, + -0.05485855042934418, + -0.11878911405801773, + -0.048863403499126434, + -0.019978895783424377, + 0.038770679384469986, + -0.10486498475074768, + -0.04497610032558441, + 0.08900509029626846, + -0.1405441164970398, + 0.02179792895913124, + 0.11328199505805969, + 0.06997460871934891, + -0.014011083170771599, + 0.057883162051439285, + 0.0005100522539578378, + -0.042383432388305664, + -0.04187387228012085, + 0.08525896817445755, + 0.08041638135910034, + -0.018833594396710396, + 0.023781059309840202, + 0.009495828300714493, + -0.0518152229487896, + -0.024895094335079193, + -0.06762925535440445, + 0.04312662035226822, + 0.028521494939923286, + -0.048019133508205414, + -0.02125343307852745, + 0.08549930155277252, + -0.031242264434695244, + -0.006154194939881563, + -0.0953725278377533, + -0.01699010096490383, + -0.08992896974086761, + 0.020875489339232445, + -0.021952897310256958, + -0.0117403045296669, + -1.753830591929145e-33, + 0.041857581585645676, + 0.0672641396522522, + -0.07012894749641418, + 0.13197605311870575, + 0.001917029614560306, + 0.057926394045352936, + -0.005602831952273846, + -0.0268043652176857, + -0.03201279789209366, + 0.06916721165180206, + 0.10404730588197708, + 0.09879329800605774, + -0.07243141531944275, + 0.12173044681549072, + 0.055074866861104965, + -0.039200689643621445, + -0.02655765227973461, + 0.06100403890013695, + -0.03889946639537811, + 0.042516011744737625, + -0.04098125919699669, + 0.07493579387664795, + 0.004578042309731245, + -0.03840942308306694, + -0.04748392850160599, + -0.05218735709786415, + 0.039079830050468445, + -0.025205284357070923, + -0.0439094603061676, + 0.01619509793817997, + -0.015204540453851223, + -0.02004038728773594, + 0.07923777401447296, + -0.0005332764703780413, + 0.0037520681507885456, + 0.0005698395543731749, + -0.08062589168548584, + -0.004540658555924892, + -0.03925932198762894, + 0.009904618375003338, + -0.07192213833332062, + 0.02730337530374527, + -0.03659454360604286, + -0.05352262407541275, + -0.00524043058976531, + 0.1577933430671692, + 0.0016261795535683632, + -0.016662444919347763, + -0.04292416200041771, + 0.010854892432689667, + 0.012279852293431759, + -0.027696019038558006, + 0.02072431519627571, + -0.06152528524398804, + -0.019410600885748863, + -0.0084197036921978, + 0.009127450175583363, + 0.022569378837943077, + 0.06931225955486298, + 0.021603649482131004, + -0.0020834673196077347, + -0.004913583397865295, + -0.03573101758956909, + 0.06071988865733147, + -0.09348376095294952, + 0.009048009291291237, + 0.03807632252573967, + 0.04396508261561394, + 0.016971107572317123, + 0.025162886828184128, + 0.008786531165242195, + 0.05149614065885544, + 0.01603846624493599, + -0.007011124398559332, + 0.02093454822897911, + 0.030405880883336067, + 0.0027723663952201605, + 0.010695203207433224, + 0.022466333582997322, + -0.008095156401395798, + -0.11182945966720581, + 0.045668456703424454, + -8.24217640911229e-05, + 0.02571619674563408, + -0.022312438115477562, + -0.008552656508982182, + -0.03668173402547836, + -0.07109537720680237, + -0.05971590057015419, + 0.03005935251712799, + -0.12728768587112427, + -0.00604242691770196, + -0.01593918539583683, + -0.09462302923202515, + -0.05319175496697426, + 1.328115647092883e-34, + 0.06364991515874863, + 0.042994678020477295, + -0.028368903324007988, + -0.021200815215706825, + -0.046331584453582764, + 0.027230553328990936, + -0.02018149383366108, + 0.08933737128973007, + 0.04958019778132439, + -0.04002508521080017, + 0.0889119952917099, + -0.06273021548986435, + -0.030485007911920547, + -0.057408981025218964, + -0.009377853013575077, + -0.03462628647685051, + -0.0040696472860872746, + -0.07014055550098419, + -0.043326154351234436, + 0.035645462572574615, + 0.0071903131902217865, + 0.005057116970419884, + -0.0335146002471447, + 0.043619729578495026, + -0.000658094824757427, + 0.01661493442952633, + -0.012059551663696766, + 0.11143810302019119, + -0.03180120512843132, + -0.04311211779713631, + 0.015798114240169525, + -0.07301709055900574, + 0.03637723624706268, + 0.05206955596804619, + -0.058697644621133804, + 0.004925891291350126, + 0.11307387799024582, + -0.0487070307135582, + -0.044545289129018784, + -0.02449655346572399, + 0.022878913208842278, + 0.029804222285747528, + -0.028160307556390762, + -0.0036657825112342834, + -0.024561071768403053, + 0.006592134013772011, + -0.026201283559203148, + -0.0807192251086235, + 0.04700875282287598, + 0.03985602781176567, + 0.013248289003968239, + -0.02999584749341011, + 0.03315119445323944, + 0.01254869531840086, + -0.06331431120634079, + -0.07625828683376312, + -0.04951346665620804, + 0.07065848261117935, + 0.01574864611029625, + 0.04771004989743233, + 0.031031640246510506, + 0.004020705819129944, + -0.11476214975118637, + 0.010724268853664398, + 0.013303550891578197, + -0.033405087888240814, + -0.004606503993272781, + -0.027302762493491173, + -0.03695472329854965, + 0.06758169084787369, + -0.018671374768018723, + -0.056433647871017456, + -0.006482524331659079, + 0.0467306524515152, + -0.014117293059825897, + -0.06909333169460297, + 0.02110668271780014, + 0.012099496088922024, + 0.0758293941617012, + 0.021882083266973495, + -0.02646164782345295, + 0.009799323976039886, + 0.0009752673213370144, + 0.09443755447864532, + 0.05001986771821976, + 0.08642765879631042, + 0.0003557111485861242, + -0.02568051777780056, + 0.023419437929987907, + -0.007876124233007431, + -0.03696596622467041, + 0.09568354487419128, + -0.08300179243087769, + 0.0306363757699728, + -0.05268946662545204, + -2.123751485783032e-08, + -0.01939152553677559, + -0.03246760740876198, + -0.08843816071748734, + -0.022581350058317184, + -0.02474762313067913, + -0.059414204210042953, + -0.03640370070934296, + -0.05718957260251045, + 0.0309411883354187, + -0.08297863602638245, + 0.041610684245824814, + -0.036466848105192184, + -0.04865433648228645, + 0.036723412573337555, + 0.04147084802389145, + -0.021553922444581985, + -0.025325970724225044, + 0.06356379389762878, + -0.03423215448856354, + -0.009170765057206154, + -0.012799554504454136, + 0.05910252407193184, + 0.09443944692611694, + -0.017546996474266052, + 0.0560334138572216, + -0.019157815724611282, + -0.00578418280929327, + -0.03554080054163933, + 0.05646532401442528, + 0.04757282882928848, + 0.022441316395998, + 0.07325856387615204, + -0.016104597598314285, + -0.0026173775549978018, + -0.008973796851933002, + 0.013349332846701145, + -0.043968502432107925, + 0.07096925377845764, + 0.052218738943338394, + 0.10210437327623367, + -0.027067024260759354, + 0.009094287641346455, + -0.026023121550679207, + -0.03172280639410019, + 0.02483355440199375, + 0.01874273456633091, + -0.012573103420436382, + -0.0391184464097023, + -0.05253022909164429, + -0.07409713417291641, + -0.026081876829266548, + 0.08171496540307999, + -0.0017046080902218819, + 0.03640653192996979, + 0.0037592980079352856, + -0.03309052437543869, + 0.0659983679652214, + 0.11293932050466537, + -0.04480564594268799, + 0.05178336426615715, + 0.19597026705741882, + -0.03201063349843025, + 0.04390028119087219, + 0.04799309000372887 + ], + "high-heel-bold||*updated*,pumps,clothes,clothing,shoes": [ + -0.07255060970783234, + -0.04101214185357094, + 0.016445711255073547, + 0.003543795784935355, + 0.028287110850214958, + -0.04556267336010933, + 0.023747654631733894, + -0.026925455778837204, + -0.07995903491973877, + -0.015301834791898727, + 0.02728063426911831, + 0.04791910573840141, + -0.012265919707715511, + -0.06338495016098022, + 0.006474795751273632, + 0.042828187346458435, + 0.05055061727762222, + 0.06052786484360695, + -0.02014632150530815, + -0.03758181259036064, + -0.018004657700657845, + 0.028765439987182617, + 0.02493237890303135, + 0.11064498871564865, + -0.06854461133480072, + -0.026746023446321487, + -0.008168688975274563, + -0.0026592158246785402, + -0.06247742846608162, + -0.05854807049036026, + -0.07065259665250778, + -0.002728201448917389, + 0.10109652578830719, + 0.020562702789902687, + -0.023662758991122246, + 0.0032297014258801937, + 0.029160980135202408, + -0.023887787014245987, + -0.04060517996549606, + 0.12240348756313324, + 0.03680715337395668, + -0.1572713702917099, + -0.07009384781122208, + 0.08030673861503601, + -0.007719079963862896, + -0.022987160831689835, + -0.00809216033667326, + 0.008310219272971153, + -0.06908684223890305, + 0.07306312024593353, + -0.07261542975902557, + -0.09921392798423767, + -0.03967496380209923, + 0.03228895366191864, + 0.0341317318379879, + 0.028590548783540726, + -0.03430983051657677, + -0.037620604038238525, + 0.08638083934783936, + -0.06582865864038467, + 0.07511311024427414, + 0.08865644782781601, + -0.008422983810305595, + 0.07230570912361145, + 0.013822085224092007, + -0.053146593272686005, + -0.0169694721698761, + -0.009378612041473389, + -0.03494063392281532, + 0.07118738442659378, + 0.010408638045191765, + -0.00811739731580019, + 0.005419896915555, + 0.012116468511521816, + -0.061833299696445465, + 0.003242919920012355, + 0.03921036794781685, + -0.0354536697268486, + -0.009699797257781029, + -0.008954066783189774, + -0.017468156293034554, + -0.10730838030576706, + -0.041602879762649536, + -0.04993290826678276, + 0.008622637018561363, + 0.019130636006593704, + -0.05194326862692833, + -0.05390997976064682, + -0.08402159065008163, + -0.05623002350330353, + -0.06219680607318878, + -0.07851292937994003, + 0.006832877639681101, + 0.008121890015900135, + -0.0364377386868, + 0.021192049607634544, + -0.007632315158843994, + -0.021854214370250702, + -0.040202267467975616, + 0.08150044083595276, + 0.022371917963027954, + 0.019195983186364174, + -0.013267982751131058, + 0.031622689217329025, + -0.04043896123766899, + -0.07710573077201843, + 0.0013480987399816513, + 0.1040821447968483, + 0.0077214911580085754, + 0.06527503579854965, + -0.022073866799473763, + -0.07180952280759811, + -0.05300082266330719, + -0.04511185362935066, + -0.0498414970934391, + -0.018897609785199165, + -0.045130655169487, + 0.02523522637784481, + 0.03710188344120979, + 0.10598810017108917, + 0.013484450988471508, + -0.02044805698096752, + 0.040743470191955566, + -0.10424437373876572, + -0.0941658467054367, + 0.002471005544066429, + -0.0052857245318591595, + -2.140610845019895e-33, + 0.026840856298804283, + 0.05583830922842026, + -0.03595036640763283, + 0.05029967799782753, + -0.04290822148323059, + 0.03375984728336334, + -0.030912185087800026, + -0.06754181534051895, + -0.06901446729898453, + 0.10314548760652542, + 0.0034030291717499495, + 0.14157000184059143, + -0.07966185361146927, + 0.07767922431230545, + -0.025486072525382042, + -0.03329479321837425, + 0.03059341572225094, + 0.025241205468773842, + -0.03728317841887474, + -0.011205772869288921, + 0.008257567882537842, + 0.09774051606655121, + -0.03796539083123207, + -0.0366080217063427, + 0.021813582628965378, + -0.05048302188515663, + -0.010202029719948769, + -0.04838701710104942, + -0.021852241829037666, + 0.024666892364621162, + 0.06510397046804428, + -0.03807099163532257, + 0.09824427962303162, + 0.0003712494217325002, + -0.04844391345977783, + -0.011185618117451668, + -0.040674857795238495, + -0.08331607282161713, + 0.023788994178175926, + 0.0012082741595804691, + 0.007814167067408562, + -0.02721405029296875, + 0.06090982258319855, + -0.015117986127734184, + 0.008877092972397804, + 0.14012178778648376, + -0.004641269333660603, + -0.01464060228317976, + -0.0038822353817522526, + -0.014184900559484959, + 0.008972013369202614, + 0.02989654242992401, + -0.027280224487185478, + -0.03765016421675682, + 0.005438086576759815, + -0.050837162882089615, + 0.013311470858752728, + 0.08610706031322479, + 0.011433929204940796, + -0.010310734622180462, + -0.004356925375759602, + 0.03272328898310661, + 0.02954765409231186, + -0.06925908476114273, + -0.05745353177189827, + -0.012084247544407845, + 0.002480824012309313, + 0.0006321430555544794, + 0.00687585910782218, + 0.05723923072218895, + -0.005215764045715332, + 0.04632019251585007, + 0.020883938297629356, + 0.08111453801393509, + -0.003791944356635213, + 0.008022711612284184, + -0.003023966681212187, + 0.018511539325118065, + -0.01252650748938322, + -0.09267744421958923, + -0.112263023853302, + -0.023115502670407295, + -0.022572673857212067, + 0.13511639833450317, + 0.044417355209589005, + 0.025022724643349648, + -0.07698535174131393, + -0.02016589045524597, + 0.017964551225304604, + 0.05595343932509422, + -0.06384322792291641, + 0.048990003764629364, + -0.07048121094703674, + -0.07300981879234314, + -0.043982017785310745, + -1.1545507149104807e-33, + 0.06303412467241287, + 0.08713681250810623, + 0.007944242097437382, + 0.02937179058790207, + 0.0009704192052595317, + 0.011484626680612564, + -0.03237146884202957, + 0.0445142462849617, + 0.03258205205202103, + 0.0027358520310372114, + 0.04654233530163765, + -0.039992693811655045, + -0.0472356416285038, + -0.06231531500816345, + 0.018333658576011658, + 0.04677374288439751, + 0.03285398706793785, + 0.027332331985235214, + 0.0032553437631577253, + 0.005940805654972792, + 0.008153948001563549, + 0.01641392521560192, + -0.07571522891521454, + 0.07187075912952423, + -0.06097495183348656, + -0.000903898966498673, + 0.06334070861339569, + 0.01413548644632101, + -0.08945093303918839, + -0.024917960166931152, + -0.009437168948352337, + -0.07414305955171585, + 0.0012298362562432885, + 0.08066534250974655, + -0.12120387703180313, + 0.08201893419027328, + -0.06756755709648132, + -0.01431731041520834, + 0.002623619046062231, + 0.022620443254709244, + 0.014997005462646484, + -0.07233421504497528, + 0.05215597525238991, + 0.0659170001745224, + -0.029777640476822853, + -0.06270712614059448, + -0.08586451411247253, + -0.06273774057626724, + -0.0004769617517013103, + 0.032729946076869965, + -0.03496876358985901, + 0.0013716814573854208, + 0.005844299215823412, + 0.04896649718284607, + -0.06000259518623352, + -0.005105488933622837, + -0.053172700107097626, + 0.0019546954426914454, + -0.06092896685004234, + 0.04268582537770271, + 0.01975061185657978, + 0.0680503323674202, + -0.01947903446853161, + -0.020678453147411346, + 0.03377306088805199, + -0.00921742431819439, + 0.005355692934244871, + -0.10097759962081909, + -0.03450245410203934, + -0.01057682279497385, + 0.04579216241836548, + -0.04018424078822136, + -0.019580433145165443, + 0.06936312466859818, + -0.0713745504617691, + -0.07142998278141022, + 0.026482436805963516, + 0.029627550393342972, + 0.044719841331243515, + 0.027059897780418396, + -0.05312830209732056, + -0.03792081028223038, + -0.0222515556961298, + 0.10095317661762238, + 0.006783560384064913, + 0.1339544653892517, + -0.01503522414714098, + 0.05644460767507553, + 0.08313126862049103, + -0.027047989889979362, + -0.0046004136092960835, + 0.07963656634092331, + -0.06867324560880661, + -0.031519416719675064, + -0.06212592124938965, + -2.1649638526355375e-08, + 0.04146401584148407, + 0.0378933884203434, + -0.021776728332042694, + 0.02980644255876541, + 0.011124529875814915, + 0.017702346667647362, + -0.05552984029054642, + -0.016283735632896423, + -0.00181129842530936, + -0.02356209233403206, + -0.027203375473618507, + 0.0566067099571228, + 0.008227801881730556, + 0.01946384459733963, + 0.10616575181484222, + 0.005751925986260176, + -0.06689511239528656, + 0.10700830817222595, + -0.03182971104979515, + -0.07557133585214615, + -0.029219191521406174, + 0.03289804235100746, + 0.06480371206998825, + 0.04202194884419441, + 0.04533969983458519, + -0.05418859049677849, + 0.0006503499462269247, + 0.016871389001607895, + 0.019266635179519653, + 0.10955079644918442, + 0.08174244314432144, + 0.011901714839041233, + -0.016021186485886574, + -0.0012378705432638526, + -0.03344784677028656, + 0.06631003320217133, + -0.01139659620821476, + -0.01589166186749935, + -0.006912672892212868, + 0.09148411452770233, + -0.0195050947368145, + -0.046264998614788055, + 0.008812406100332737, + 0.02069077081978321, + -0.05243939161300659, + -0.029970165342092514, + 0.00494786910712719, + 0.012462705373764038, + -0.08280164003372192, + -0.051497384905815125, + -0.006323469802737236, + -0.036898236721754074, + 0.044418759644031525, + 0.07433737814426422, + -0.014345112256705761, + -0.022033875808119774, + 0.0057827867567539215, + 0.08269820362329483, + 0.01569962128996849, + 0.03613194823265076, + 0.13611607253551483, + -0.13028761744499207, + -0.010511116124689579, + 0.010141660459339619 + ], + "highlighter-bold||*new*,marker,write,writing,editing": [ + -0.0381842702627182, + -0.06880373507738113, + 0.010750897228717804, + 0.1088218241930008, + 0.09288844466209412, + 0.03278544172644615, + 0.026560205966234207, + -0.03157603368163109, + -0.007005980703979731, + 0.01280335895717144, + -0.01297228503972292, + 0.03780628368258476, + 0.012481766752898693, + -0.04194922372698784, + 0.06063280999660492, + 0.0740441381931305, + -0.02379273623228073, + 0.0016666847513988614, + -0.008027782663702965, + -0.047883857041597366, + 0.011586496606469154, + 0.018989665433764458, + 0.01649639569222927, + 0.02652035839855671, + -0.012212410569190979, + -0.00732811912894249, + 0.05363646149635315, + -0.017043836414813995, + 0.03236601874232292, + -0.035317759960889816, + -0.024454744532704353, + -0.07181446999311447, + 0.11264705657958984, + 0.059412483125925064, + 0.03880370035767555, + 0.03787541389465332, + -0.00535608222708106, + 0.029564879834651947, + -0.005067015532404184, + -0.001898067770525813, + 0.022122498601675034, + -0.11279942840337753, + -0.0461420863866806, + 0.06479693949222565, + 0.0006002367008477449, + -0.07966699451208115, + 0.008984221145510674, + -0.013717403635382652, + 0.007299009710550308, + 0.009268266148865223, + 0.025756359100341797, + -0.12846997380256653, + -0.08381509780883789, + -0.05839727818965912, + 0.030396629124879837, + 0.004598671104758978, + -0.02849782630801201, + -0.03655238822102547, + 0.018583962693810463, + -0.10888534784317017, + -0.016087094321846962, + 0.0793537124991417, + 0.08406830579042435, + -0.028539985418319702, + 0.041052430868148804, + -0.027499714866280556, + 0.006316360551863909, + 0.010220627300441265, + -0.02170220948755741, + 0.007412353064864874, + 0.005684752482920885, + 0.01826891116797924, + 0.03184982389211655, + -0.013907085172832012, + -0.016451716423034668, + -0.009180543012917042, + -0.008062366396188736, + 0.026734106242656708, + -0.046021830290555954, + -0.058163974434137344, + -0.004249353893101215, + -0.06335824728012085, + 0.002696314360946417, + 0.021539976820349693, + 0.07370993494987488, + 0.06310256570577621, + -0.06406605243682861, + -0.08123764395713806, + -0.006553345825523138, + 0.011726976372301579, + -0.03043736331164837, + -0.024730823934078217, + -0.026058228686451912, + -0.0010302502196282148, + -0.10829427093267441, + -0.025716785341501236, + 0.04380550980567932, + -0.00160874892026186, + 0.0017980864504352212, + 0.07161196321249008, + 0.00020383181981742382, + -0.01551315002143383, + 0.018069887533783913, + 0.029518596827983856, + -0.01039404422044754, + -0.013958840630948544, + -0.007149168290197849, + -0.050529930740594864, + -0.06863418221473694, + 0.011696482077240944, + 0.05918976664543152, + -0.045186661183834076, + -0.009653964079916477, + -0.036644939333200455, + -0.03702651336789131, + -0.016376353800296783, + -0.041984282433986664, + -0.021234650164842606, + 0.09471295028924942, + 0.11374523490667343, + 0.08748998492956161, + -0.04396297410130501, + -0.05881891027092934, + -0.033783670514822006, + -0.040942490100860596, + 0.02485581301152706, + 0.04329638555645943, + -1.8820147611374614e-33, + 0.10204320400953293, + 0.07406493276357651, + -0.081658735871315, + 0.08073966205120087, + -0.011952881701290607, + 0.033295899629592896, + -0.0687774047255516, + -0.046758491545915604, + -0.1102488711476326, + -0.05838922783732414, + 0.1400042176246643, + -0.015501540154218674, + 0.038863714784383774, + 0.14778797328472137, + 0.026121314615011215, + -0.015178191475570202, + 0.01572979986667633, + 0.007959687151014805, + -0.09491768479347229, + 0.030418526381254196, + -0.10825572162866592, + 0.03849451616406441, + -0.040656086057424545, + -0.028716303408145905, + -0.038897838443517685, + 0.0220353826880455, + 0.014075578190386295, + -0.04770854860544205, + -0.06781430542469025, + -0.010187073610723019, + -0.03143822401762009, + -0.049522630870342255, + 0.07102242112159729, + 0.04225452244281769, + -0.05679206922650337, + 0.05771563574671745, + -0.04988054558634758, + -0.06140090152621269, + 0.05751466751098633, + -0.011850174516439438, + -0.057610899209976196, + -0.058119840919971466, + -0.005381908733397722, + -0.03917829319834709, + 0.04137038812041283, + 0.10786552727222443, + -0.08668465912342072, + 0.015634220093488693, + -0.00036775783519260585, + -0.026071956381201744, + 0.012457269243896008, + 0.03426649421453476, + -0.053855810314416885, + 0.018870670348405838, + -0.007362114265561104, + 0.001161410822533071, + -0.015008661895990372, + 0.027735507115721703, + 0.08663377165794373, + -0.008757389150559902, + 0.012906043790280819, + 0.09291629493236542, + 0.008793624117970467, + 0.025304455310106277, + -0.031639374792575836, + 0.0702202096581459, + -0.011513199657201767, + 0.045877739787101746, + 0.06944940984249115, + -0.0020840207580477, + -0.0060613094829022884, + 0.05145077407360077, + 0.03239970654249191, + 0.06558715552091599, + -0.0036157001741230488, + -0.029594246298074722, + 0.0192885622382164, + -0.060661353170871735, + 0.07479648292064667, + -0.08935047686100006, + -0.06884286552667618, + -0.019877130165696144, + -0.04729210585355759, + 0.025690637528896332, + -0.024667995050549507, + -0.0530276820063591, + 0.0008606403134763241, + -0.006184437777847052, + -0.022747641429305077, + -0.0493888184428215, + 0.005503055639564991, + 0.010930773802101612, + -0.0558963418006897, + -0.07903575152158737, + -0.08986879885196686, + -8.417596578448357e-34, + 0.06237899512052536, + 0.05986681953072548, + -0.04182427376508713, + 0.05640063062310219, + -0.0818418487906456, + 0.005347265396267176, + -0.017786430194973946, + 0.023207824677228928, + 0.025554973632097244, + 0.013623721897602081, + 0.045130886137485504, + -0.012278835289180279, + -0.05311114713549614, + -0.002820104593411088, + -0.03700250759720802, + 0.021828245371580124, + -0.07755882292985916, + 0.11280453205108643, + -0.059190381318330765, + -0.013686882331967354, + 0.019197216257452965, + -0.044511403888463974, + -0.03942016512155533, + 0.06440354883670807, + -0.011330652981996536, + -0.05313121899962425, + -0.026417572051286697, + 0.027243776246905327, + -0.06590909510850906, + -0.039635371416807175, + -0.028097761794924736, + -0.018238646909594536, + 0.038415197283029556, + 0.0164303258061409, + -0.02245580404996872, + -0.02916765958070755, + 0.03589954227209091, + -0.050666891038417816, + 0.03443080931901932, + 0.0717487782239914, + 0.0390421524643898, + -0.022763574495911598, + 0.04206966236233711, + 0.03685898333787918, + -0.05430378019809723, + 0.033775243908166885, + -0.05592028796672821, + 0.02240440435707569, + -0.014636270701885223, + 0.04516620188951492, + -0.003989852033555508, + -0.07300522923469543, + -0.002212485298514366, + -0.04496220871806145, + -0.06327960640192032, + 0.009330598637461662, + 0.05534816160798073, + -0.05162402614951134, + -0.0037849165964871645, + 0.07408379018306732, + -0.07124952226877213, + 0.06246425211429596, + -0.027053698897361755, + 0.06563625484704971, + 0.07244889438152313, + -0.11515642702579498, + 0.06854695081710815, + -0.025476057082414627, + 0.02892868034541607, + 0.006303071975708008, + 0.06969830393791199, + 0.040688108652830124, + -0.012246672064065933, + 0.01733204536139965, + 0.06372828781604767, + -0.012698187492787838, + 0.002026183996349573, + -0.021778112277388573, + -0.026264367625117302, + -0.026640374213457108, + -0.019756849855184555, + -0.031466297805309296, + 0.015957821160554886, + 0.02089553140103817, + -0.013224631547927856, + 0.09463215619325638, + -0.012222710996866226, + 0.032438524067401886, + -0.021384645253419876, + -0.07788598537445068, + -0.037544891238212585, + 0.06538493931293488, + 0.05469836667180061, + -0.04815950244665146, + -0.10250259935855865, + -2.141975841141175e-08, + -0.07332770526409149, + -0.006486056372523308, + -0.04857267066836357, + -0.04909210279583931, + 0.03986745700240135, + -0.055718716233968735, + 0.008588301949203014, + -0.051208898425102234, + -0.001310364343225956, + 0.0033881147392094135, + 0.047359898686409, + -0.01701442152261734, + -0.0978403389453888, + -0.06326460093259811, + 0.041301511228084564, + 0.028924385085701942, + 0.05083633214235306, + 0.04426874965429306, + -0.055512722581624985, + -0.047342449426651, + -0.0429961159825325, + 0.10723646730184555, + 0.005272446665912867, + -0.02102016471326351, + 0.019067203626036644, + 0.01877763867378235, + -0.00600916612893343, + 0.07676660269498825, + 0.021012790501117706, + 0.10503099113702774, + 0.04086863622069359, + 0.05737227573990822, + 0.04654199257493019, + 0.03493448719382286, + -0.043595001101493835, + 0.01789393648505211, + -0.0021428954787552357, + 0.00843790452927351, + 0.013704145327210426, + 0.1651953160762787, + 0.0030956261325627565, + -0.012698350474238396, + -0.03927640616893768, + -0.05932788923382759, + -0.007774174213409424, + -0.026819352060556412, + -0.010445273481309414, + -0.09176790714263916, + -0.0687888115644455, + -0.16500258445739746, + 0.005008102394640446, + -0.015792643651366234, + 0.027998438104987144, + 0.057653892785310745, + -0.06000683084130287, + -0.014427642337977886, + 0.0012444721069186926, + 0.14904847741127014, + 0.00790175050497055, + -0.045532867312431335, + 0.15387028455734253, + 0.03136727213859558, + 0.04069368913769722, + 0.05005989596247673 + ], + "highlighter-circle-bold||write,writing,editing,drawing": [ + -0.020492395386099815, + -0.046659402549266815, + -0.041672561317682266, + 0.10797544568777084, + 0.0855800211429596, + 0.013190621510148048, + 0.027999289333820343, + -0.011976232752203941, + 0.0504283644258976, + -0.024786684662103653, + -0.05012732744216919, + 0.0699927806854248, + 0.04514328017830849, + -0.029115833342075348, + 0.06605575978755951, + 0.03303563594818115, + -0.051869478076696396, + -0.016324596479535103, + -0.010556979104876518, + -0.07548046112060547, + 8.628082287032157e-05, + -0.0024210892152041197, + 0.061598602682352066, + 0.04074830561876297, + -0.03433806821703911, + 0.017931398004293442, + 0.07722841203212738, + -0.006380679085850716, + 0.019521430134773254, + -0.06274790316820145, + -0.07041119784116745, + -0.017393337562680244, + 0.10186810046434402, + 0.024335727095603943, + 0.0045129768550395966, + 0.04823729395866394, + -0.060523707419633865, + 0.07140878587961197, + -0.017246076837182045, + -0.0314771868288517, + 0.03682975098490715, + -0.08663910627365112, + 0.016836872324347496, + 0.026178980246186256, + -0.020471330732107162, + -0.071199432015419, + -0.07471291720867157, + -0.016842031851410866, + -0.019179997965693474, + 0.022152509540319443, + 0.02577020414173603, + -0.1368887722492218, + -0.09180834144353867, + -0.07712263613939285, + 0.04549895599484444, + -0.005318093113601208, + -0.024220723658800125, + -0.027469871565699577, + 0.059790611267089844, + -0.10668228566646576, + -0.005237647332251072, + 0.0499376505613327, + 0.08123043924570084, + 0.002558831125497818, + 0.0075361039489507675, + 0.002779182279482484, + 0.021817168220877647, + 0.00980156846344471, + -0.04338349029421806, + -0.04369248449802399, + 0.038445960730314255, + 0.007995461113750935, + 0.004773788154125214, + -0.04128985479474068, + 0.010715092532336712, + 0.034349050372838974, + -0.032853975892066956, + 0.028685064986348152, + -0.09350062161684036, + -0.0906112939119339, + -0.015133712440729141, + -0.009840782731771469, + 0.008105098269879818, + 0.09079106897115707, + 0.055350590497255325, + 0.09417443722486496, + -0.02763509936630726, + -0.092912457883358, + -0.0005491893389262259, + 0.022600529715418816, + -0.01704060286283493, + 0.010214576497673988, + -0.04756365343928337, + -0.01704000122845173, + -0.1354520469903946, + -0.03725377470254898, + 0.03880906105041504, + -0.044451821595430374, + -0.08260957896709442, + 0.07342030853033066, + 0.04178556427359581, + -0.03138558939099312, + 0.06079588085412979, + 0.0002533631050027907, + 0.0006291060126386583, + -0.03992559760808945, + 0.02616903744637966, + -0.04206758365035057, + -0.0814371332526207, + 0.011952362954616547, + 0.043044958263635635, + -0.06351523101329803, + -0.01130290050059557, + -0.01289280503988266, + -0.020463379099965096, + -0.03252926841378212, + -0.009650738909840584, + -0.029163718223571777, + 0.10930266976356506, + 0.11000272631645203, + 0.06520228087902069, + 0.011296981945633888, + -0.07790727913379669, + -0.03106924146413803, + -0.043116483837366104, + -0.011316860094666481, + 0.03777560219168663, + -2.4567824585346116e-33, + 0.10773970186710358, + 0.09226192533969879, + -0.07048349827528, + 0.0609898641705513, + -0.014560007490217686, + -0.005905255675315857, + -0.035313550382852554, + -0.05655214190483093, + -0.052814874798059464, + -0.06883255392313004, + 0.09139279276132584, + -0.005137276835739613, + 0.04577760770916939, + 0.12960827350616455, + 0.02105707861483097, + -0.03355035185813904, + 0.044767554849386215, + 0.008876916021108627, + -0.11446928232908249, + 0.01801922358572483, + -0.09550637006759644, + 0.007776121608912945, + -0.0716681182384491, + -0.05238761007785797, + -0.0684974417090416, + 0.0428045317530632, + -0.0023133682552725077, + -0.04103609174489975, + -0.058484259992837906, + -0.0016289911000058055, + -0.03489470109343529, + -0.008198877796530724, + 0.05403148755431175, + 0.04319111257791519, + -0.0554957240819931, + 0.03481012210249901, + -0.03753514587879181, + -0.054510340094566345, + 0.04894661903381348, + 0.006778105162084103, + -0.06149051710963249, + -0.06083633750677109, + 0.015187676064670086, + -0.012803824618458748, + 0.04260260984301567, + 0.14246466755867004, + -0.05031945928931236, + 0.0144495302811265, + -0.02017444372177124, + -0.00036182839539833367, + 0.00018099683802574873, + 0.06575646996498108, + -0.0012235554168000817, + -0.024342020973563194, + 0.02169732376933098, + -0.042731523513793945, + 0.0283729899674654, + 0.0035847912076860666, + 0.04093564301729202, + 0.0035174782387912273, + 0.04311932995915413, + 0.11503784358501434, + -0.04284212738275528, + 0.011816308833658695, + -0.06269529461860657, + 0.0933939591050148, + -0.08733342587947845, + -0.012194685637950897, + 0.06059693172574043, + -0.07328452169895172, + -0.003620929317548871, + 0.05527009442448616, + 0.07087744772434235, + 0.0699494257569313, + -0.021055584773421288, + -0.0030021986458450556, + 0.023348987102508545, + -0.047600917518138885, + 0.08165179938077927, + -0.05890483036637306, + -0.07322637736797333, + -0.013991860672831535, + -0.06539497524499893, + -0.035020142793655396, + -0.016396041959524155, + -0.04271477833390236, + 0.03294367343187332, + 0.0006954714190214872, + -0.024270227178931236, + 0.003562695113942027, + -0.004236472770571709, + 0.032823316752910614, + 0.029233628883957863, + -0.04431735351681709, + -0.09700863063335419, + 5.009385247241006e-34, + 0.036080166697502136, + 0.06646464765071869, + 0.0008853674517013133, + 0.0634617730975151, + -0.04464418813586235, + 0.023260794579982758, + -0.018120357766747475, + 0.003710684133693576, + 0.016905566677451134, + 0.006942450534552336, + -0.000534092599991709, + -0.0121301906183362, + -0.04758242890238762, + 0.00024773486074991524, + -0.01002726424485445, + 0.01729748398065567, + -0.0147171039134264, + 0.1022692546248436, + -0.06369961053133011, + -0.015131360851228237, + -0.016937188804149628, + -0.04668810963630676, + -0.04399547353386879, + 0.058750927448272705, + -0.036651596426963806, + 0.010185487568378448, + -0.0024440675042569637, + -0.014503994956612587, + -0.05414481833577156, + -0.0046130889095366, + -0.06524788588285446, + -0.05614319443702698, + 0.04541737586259842, + 0.03395654261112213, + -0.01570711098611355, + -0.06295239925384521, + 0.02726796641945839, + -0.07897242158651352, + -0.02152804471552372, + 0.0019008942181244493, + 0.015534362755715847, + -0.025577178224921227, + 0.041999030858278275, + 0.051704078912734985, + -0.04092906415462494, + 0.014569728635251522, + -0.024776147678494453, + 0.028527477756142616, + -0.046109043061733246, + 0.05419797822833061, + -0.019127056002616882, + -0.028068935498595238, + 0.04566285386681557, + -0.023131582885980606, + -0.05032098665833473, + -0.023538609966635704, + 0.06479310989379883, + -0.032923705875873566, + 0.021924344822764397, + 0.0609564445912838, + -0.06666833907365799, + 0.04915184527635574, + -0.03216801583766937, + 0.0736016035079956, + 0.06769835948944092, + -0.07658214867115021, + 0.09523279964923859, + -0.028115486726164818, + 0.013077598065137863, + 0.04897752031683922, + 0.04081805422902107, + 0.05793364718556404, + 0.020777855068445206, + 0.009185057133436203, + 0.09614849835634232, + 0.0059098596684634686, + 0.05958707630634308, + -0.016095779836177826, + -0.02946510724723339, + -0.009023211896419525, + -0.034698471426963806, + 0.007383350748568773, + 0.00014824174286331981, + 0.0221503097563982, + -0.008499862626194954, + 0.060365669429302216, + -0.002285398542881012, + 0.026758696883916855, + -0.006394118536263704, + -0.05700773000717163, + -0.01783972606062889, + 0.05241701751947403, + 0.07146433740854263, + -0.023320021107792854, + -0.005516208708286285, + -1.8113331279323575e-08, + -0.04779181256890297, + -0.0045386021956801414, + -0.02705400064587593, + -0.03145132213830948, + 0.07256077229976654, + -0.08489106595516205, + 0.038350269198417664, + -0.08970337361097336, + -0.016318168491125107, + 0.00367878214456141, + 0.03547234460711479, + -0.021311482414603233, + -0.10502418130636215, + -0.07143670320510864, + 0.054609645158052444, + 0.0588558167219162, + 0.05511634424328804, + 0.06829617917537689, + -0.031466107815504074, + -0.03705810755491257, + -0.014814207330346107, + 0.03679952397942543, + 0.02114725671708584, + -0.05007398501038551, + 0.002301120664924383, + 0.011194541119039059, + -0.025999171659350395, + 0.08031430095434189, + -0.008194235153496265, + 0.03615904971957207, + 0.012674924917519093, + 0.039573606103658676, + 0.05794723331928253, + 0.06963558495044708, + -0.014515514485538006, + -0.05260873958468437, + 0.008138741366565228, + 0.014034876599907875, + -0.003467570524662733, + 0.15405625104904175, + 0.00038308853982016444, + 0.0022579249925911427, + 0.0007577433134429157, + -0.049279578030109406, + 0.017080746591091156, + -0.00945143960416317, + 0.01998303458094597, + -0.09082005172967911, + -0.10506285727024078, + -0.11974756419658661, + -0.05565686523914337, + -0.013394824229180813, + 0.08234462887048721, + 0.06832993775606155, + -0.06138087809085846, + -0.06749039888381958, + 0.03861282393336296, + 0.14217603206634521, + -0.04962911456823349, + 0.005701773799955845, + 0.1043180450797081, + 0.06958276778459549, + 0.012927412986755371, + 0.0420810729265213 + ], + "hockey-bold||*new*,sports,nhl,stick,puck": [ + 0.006676160264760256, + -0.027628758922219276, + -0.041326023638248444, + -0.004881688859313726, + 0.08494872599840164, + 0.03468271344900131, + 0.08697422593832016, + -0.006867146585136652, + 0.05171658471226692, + 0.0821116492152214, + -0.05617952346801758, + 0.025155477225780487, + -0.022909412160515785, + 0.019925691187381744, + 0.02277151308953762, + -0.00724228098988533, + 0.058751195669174194, + 0.05163874477148056, + 0.01918562687933445, + -0.006901392247527838, + 0.024904927238821983, + 0.022520989179611206, + 0.0152481934055686, + 0.013656536117196083, + 0.07677320390939713, + 0.06982310861349106, + 0.0048769088461995125, + 0.02913161739706993, + 0.030411235988140106, + -0.020190341398119926, + -0.07307826727628708, + 0.003055824665352702, + 0.10830364376306534, + 0.04375051334500313, + 0.07331224530935287, + -0.006577582564204931, + -0.056337449699640274, + 0.0022932402789592743, + 0.0005418840446509421, + 0.08022455871105194, + 0.04182916507124901, + -0.05678965896368027, + -0.026773715391755104, + 0.05621352791786194, + 0.04118960350751877, + 0.0682305172085762, + -0.06212051585316658, + -0.027660949155688286, + 0.025130435824394226, + 0.02920798771083355, + -0.03441513702273369, + -0.06205699220299721, + -0.05719263106584549, + -0.02941804938018322, + 0.12371562421321869, + 0.01400388777256012, + -0.04708476364612579, + -0.010215324349701405, + 0.06434247642755508, + -0.0253018569201231, + 0.006732020992785692, + -0.03392815589904785, + 0.08035344630479813, + 0.06653488427400589, + -0.022005461156368256, + -0.03975711017847061, + -0.08959829062223434, + 0.009304978884756565, + -0.06526993215084076, + 0.03362491354346275, + -0.010537310503423214, + 0.07163552194833755, + -0.03813571110367775, + 0.0177697092294693, + -0.044853661209344864, + -0.015412649139761925, + -0.023969411849975586, + 0.004472406581044197, + -0.07260216772556305, + -0.014507919549942017, + -0.01317695714533329, + -0.08749973773956299, + -0.03508761152625084, + -0.0022867016959935427, + -0.0029242599848657846, + -0.0074653527699410915, + -0.024182043969631195, + -0.06853188574314117, + -0.06198945641517639, + 0.014820951968431473, + -0.12615345418453217, + 0.02240351028740406, + 0.10336264967918396, + 0.04889398440718651, + -0.10869225114583969, + 0.04117254167795181, + 0.005566081032156944, + -0.018391793593764305, + -0.01704179123044014, + 0.10994040220975876, + -0.00839250348508358, + -0.007345285266637802, + -0.0013363673351705074, + 0.02574855461716652, + 0.008172445930540562, + -0.01381130050867796, + -0.04575173556804657, + -0.03265111520886421, + 0.012652776204049587, + 0.07093767821788788, + -0.03319494053721428, + -0.0565110519528389, + -0.07154812663793564, + -0.011517282575368881, + 0.006041311658918858, + -0.032211609184741974, + -0.05966166779398918, + -0.00472073070704937, + 0.07722475379705429, + 0.05822678655385971, + 0.038987185806035995, + -0.026114100590348244, + 0.015035332180559635, + -0.044480130076408386, + -0.028256867080926895, + 0.02110670879483223, + 0.07514618337154388, + -3.540801308343847e-33, + 0.017062589526176453, + 0.028413614258170128, + -0.02108980342745781, + 0.11342322826385498, + -0.06314609199762344, + -0.033449217677116394, + 0.017366008833050728, + -0.09929828345775604, + -0.019353697076439857, + 0.07263880223035812, + 0.037989139556884766, + 0.09798378497362137, + -0.0508372001349926, + 0.05802924185991287, + 0.07669556885957718, + -0.022663554176688194, + 0.011776699684560299, + -0.06035821884870529, + -0.04625047370791435, + 0.0546303428709507, + -0.02389267273247242, + 0.07058645784854889, + 0.01964235119521618, + -0.02556362934410572, + -0.0651271790266037, + -0.043684832751750946, + 0.05678733065724373, + -0.11945314705371857, + -0.04717567563056946, + 0.01615358144044876, + -0.015103500336408615, + 0.010269411839544773, + 0.025425666943192482, + 0.034567490220069885, + 0.05415946617722511, + -0.009330501779913902, + 0.011890672147274017, + -0.04124058410525322, + -0.04965939000248909, + -0.01959984563291073, + -0.06960045546293259, + -0.08475590497255325, + -0.105934739112854, + -0.014212594367563725, + 0.052888624370098114, + 0.12536238133907318, + -0.017204372212290764, + -0.013946215622127056, + -0.008416775614023209, + -0.03904560208320618, + 0.05393899604678154, + -0.008679079823195934, + -0.02846049889922142, + 0.01984231360256672, + -0.004910449497401714, + -0.02971021644771099, + -0.012276017107069492, + 0.015062924474477768, + -0.0013053282164037228, + -0.06024080142378807, + -0.007802658248692751, + -0.03368295729160309, + 0.03776615858078003, + -0.03899632766842842, + 0.015138384886085987, + 0.10305660963058472, + 0.0008929809555411339, + 0.021286867558956146, + 0.09165363013744354, + -0.048050325363874435, + 0.028029298409819603, + 0.032047711312770844, + -0.04653487727046013, + 0.062333181500434875, + 0.04804971441626549, + 0.050549477338790894, + -0.01246036309748888, + 0.01803405024111271, + -0.038524825125932693, + -0.07138841599225998, + -0.05461602658033371, + 0.03227676823735237, + -0.07383779436349869, + 0.08369585871696472, + -0.007940626703202724, + -0.04325588047504425, + 0.008350139483809471, + -0.04729371890425682, + -0.034800782799720764, + -0.036358218640089035, + -0.11199074983596802, + -0.03684455528855324, + 0.03772961348295212, + 0.01234058104455471, + -0.12392465770244598, + 1.0792273327971924e-34, + 0.016727864742279053, + -0.0279230959713459, + -0.03771662339568138, + 0.010876797139644623, + -0.012573502957820892, + -0.049718454480171204, + -0.0035118190571665764, + 0.0755329504609108, + 0.0672840103507042, + 0.03221997246146202, + 0.020131461322307587, + -0.09609252214431763, + -0.0728456974029541, + 0.015362006612122059, + -0.008455890230834484, + -0.015413668937981129, + -0.03598857298493385, + 0.11717785894870758, + -0.04936458170413971, + -0.023499492555856705, + 0.029782215133309364, + -0.07612526416778564, + -0.07486512511968613, + 0.05108549818396568, + -0.024376317858695984, + 0.10259499400854111, + 0.027460703626275063, + -0.02412032149732113, + -0.12996141612529755, + 0.013448203913867474, + -0.040740955621004105, + 0.028171777725219727, + 0.0609482005238533, + 0.07022154331207275, + -0.05169212073087692, + 0.07438182085752487, + 0.06843852996826172, + -0.08989737182855606, + -0.05777784436941147, + -0.04536685720086098, + -0.01014180388301611, + -0.07971610873937607, + 0.048610620200634, + 0.01243410725146532, + -0.03666179999709129, + -0.07654830068349838, + -0.03681839257478714, + 0.030709143728017807, + -0.015193337574601173, + 0.08882293850183487, + 0.0010614644270390272, + 0.04662586376070976, + -0.04067249596118927, + -0.01300218515098095, + -0.04968236759305, + 0.005666095297783613, + -0.008139017038047314, + -0.06775332242250443, + -0.013537826016545296, + -0.002653158502653241, + 0.009246706031262875, + 0.037654466927051544, + -0.09478743374347687, + 0.11861661821603775, + 0.06994632631540298, + 0.009871471673250198, + 0.033292945474386215, + -0.08832306414842606, + -0.01489272341132164, + -0.01984025165438652, + -0.019821608439087868, + 0.025440679863095284, + -0.02706746757030487, + 0.013300635851919651, + 0.05346355214715004, + -0.001286644022911787, + 0.023335227742791176, + 0.03786975145339966, + 0.019493695348501205, + 0.04735719412565231, + -0.06431901454925537, + -0.0642852932214737, + -0.06738054007291794, + 0.08953645825386047, + -0.03860322758555412, + 0.00961905624717474, + 0.0367426723241806, + -0.05416208505630493, + -0.03511000797152519, + 0.0068432483822107315, + 0.0007949417340569198, + 0.0502220056951046, + -0.006715007591992617, + 0.05599012225866318, + -0.019776051864027977, + -1.9893784397595482e-08, + -0.012608299031853676, + 0.11555854976177216, + -0.08027546852827072, + -0.0009214520105160773, + 0.03173506259918213, + -0.04068693891167641, + -0.1327546387910843, + -0.11435230076313019, + -0.03117620199918747, + -0.07508440315723419, + -0.005675124935805798, + 0.04608031362295151, + -0.01993882656097412, + -0.009633954614400864, + 0.06598033010959625, + 0.05452930927276611, + -0.07981928437948227, + 0.0025313799269497395, + -0.04233859106898308, + -0.06227327138185501, + -0.025905421003699303, + 0.013185757212340832, + -0.011630899272859097, + -0.03604051470756531, + -0.013816204853355885, + -0.060336530208587646, + -0.08539773523807526, + 0.005268121138215065, + 0.052263934165239334, + 0.05787898227572441, + 0.06322214752435684, + 0.05893000215291977, + 0.011827877722680569, + -0.019541241228580475, + -0.04095832258462906, + -0.01457170955836773, + 0.013127721846103668, + -0.057585567235946655, + 0.03643576800823212, + 0.07073825597763062, + -0.06039692088961601, + 0.03805455565452576, + -0.0032616297248750925, + -0.02385946549475193, + -0.05095299333333969, + 0.007911750115454197, + 0.02721136249601841, + -0.0352642685174942, + -0.08653882890939713, + -0.13063311576843262, + -0.01076702494174242, + 0.003909019287675619, + 0.0024805390276014805, + 0.022214924916625023, + 0.0026546164881438017, + 0.06176187843084335, + 0.011585702188313007, + 0.09159842133522034, + -0.016280947253108025, + -0.005890144035220146, + 0.04908668249845505, + -0.009899069555103779, + 0.06298577040433884, + 0.07408443093299866 + ], + "hoodie-bold||clothes,clothing,sweatshirt": [ + -0.053930386900901794, + 0.05916149169206619, + -0.02432531677186489, + 0.049187757074832916, + 0.11935237050056458, + -0.006871973630040884, + 0.11257576197385788, + -0.049216128885746, + -0.0033766815904527903, + -0.024172630161046982, + 0.04126351699233055, + -0.052718326449394226, + 0.041826870292425156, + -0.0675998404622078, + 0.052056290209293365, + -0.031079676002264023, + 0.04525594413280487, + 0.048691749572753906, + -0.027600077912211418, + -0.06580527126789093, + -0.05917865037918091, + -0.0008488339371979237, + 0.05735642462968826, + 0.09136833250522614, + -0.004054661374539137, + -0.05090223625302315, + 0.01584826037287712, + 0.014269350096583366, + -0.03045235015451908, + -0.0734681561589241, + 0.020907025784254074, + -0.018713360652327538, + 0.04319872334599495, + 0.03554435819387436, + -0.008742664940655231, + -0.020072123035788536, + 0.05934431776404381, + -0.023373480886220932, + -0.06415744870901108, + 0.05980969965457916, + -0.009179490618407726, + -0.08507967740297318, + -0.08457549661397934, + -0.004354136064648628, + 0.025425149127840996, + -0.003524207742884755, + -0.019696783274412155, + 0.10075801610946655, + 0.017875760793685913, + 0.01276310347020626, + -0.007092833984643221, + -0.07635993510484695, + -0.132449209690094, + 0.04735704883933067, + -0.03299182280898094, + 0.021411148831248283, + -0.020992819219827652, + -0.028868602588772774, + 0.04157950356602669, + -0.004955790471285582, + -0.03023296222090721, + 0.012107383459806442, + -0.0113283172249794, + 0.12808886170387268, + 0.06041629984974861, + -0.01765558496117592, + 0.005774481222033501, + 0.05280249938368797, + -0.01713256537914276, + 0.040255945175886154, + 0.05284016206860542, + -0.015921466052532196, + -0.07040440291166306, + 0.009621700271964073, + -0.036280557513237, + -0.012027070857584476, + 0.04954084753990173, + -0.01216758694499731, + -0.03479229286313057, + 0.0017181825824081898, + -0.10238542407751083, + -0.0038889478892087936, + 0.034331005066633224, + -0.0035334452986717224, + 0.0069258445873856544, + 0.015292408876121044, + -0.10575637221336365, + -0.05559740588068962, + -0.051961421966552734, + -0.007838517427444458, + -0.0827760249376297, + -0.027523983269929886, + 0.008022435009479523, + 0.016739949584007263, + -0.044938698410987854, + 0.05882915109395981, + 0.09950865060091019, + -0.04188666492700577, + 0.008209535852074623, + 0.08344998955726624, + -0.03006274625658989, + -0.03643510863184929, + 0.08160066604614258, + 0.021132607012987137, + -0.03032846748828888, + -0.058708734810352325, + 0.024961255490779877, + 0.034106507897377014, + 0.01891997642815113, + -0.017640208825469017, + -0.05837837979197502, + -0.06332991272211075, + -0.04471254348754883, + -0.027078745886683464, + 0.023843858391046524, + -0.08746030926704407, + 0.0522758848965168, + 0.02646527998149395, + 0.07337650656700134, + 0.02476922981441021, + -0.0340435653924942, + -0.02258136495947838, + 0.01357918418943882, + -0.09000127017498016, + -0.05906412750482559, + 0.00031787293846718967, + 0.06688633561134338, + -1.0407843512569842e-33, + 0.02982448786497116, + -0.004778183996677399, + 0.012970736250281334, + 0.14459854364395142, + -6.675443728454411e-05, + 0.04796728864312172, + -0.0002685775689315051, + -0.05336106941103935, + -0.05940108373761177, + 0.12939879298210144, + 0.051206205040216446, + 0.04041774570941925, + -0.08556117862462997, + 0.12726278603076935, + 0.11775409430265427, + -0.0068508777767419815, + -0.012271407060325146, + -0.04570432007312775, + -0.03890768438577652, + -0.03446203097701073, + -0.06061069294810295, + 0.04642564803361893, + -0.018695011734962463, + -0.027423467487096786, + 0.042583268135786057, + -0.0711282342672348, + 0.029595352709293365, + 0.008890452794730663, + -0.07805491238832474, + 0.018664289265871048, + 0.02764502540230751, + -0.004437961149960756, + 0.06609906256198883, + -0.03400317206978798, + -0.03308762609958649, + 0.017581595107913017, + -0.13964317739009857, + -0.029851146042346954, + 0.061527837067842484, + 0.02081063948571682, + 0.006089566741138697, + 0.01973462849855423, + -0.006194862071424723, + -0.014260070398449898, + -0.01245426107198, + 0.16451919078826904, + 0.0033934300299733877, + 0.006619499530643225, + -0.002663947409018874, + 0.02221297100186348, + 0.02772544138133526, + -0.0197893176227808, + 0.002598199527710676, + -0.028010625392198563, + -0.04513654485344887, + 0.04923015832901001, + 0.01240260899066925, + 0.05214180052280426, + 0.005000624805688858, + -0.013317440636456013, + 0.06773306429386139, + 0.05681169033050537, + 0.049068257212638855, + -0.08983856439590454, + 0.03230603039264679, + 0.014070678502321243, + -0.011216522194445133, + 0.02810772694647312, + 0.010715221986174583, + -0.006480983924120665, + -0.057025644928216934, + 0.09998885542154312, + 0.06021948903799057, + 0.04000066593289375, + 0.09527770429849625, + 0.034872472286224365, + 0.01046440377831459, + -0.005168341100215912, + 0.010570686310529709, + -0.09330043196678162, + -0.07293584942817688, + 0.03679181635379791, + -0.019461069256067276, + 0.13708169758319855, + 0.0007849485264159739, + 0.043186355382204056, + -0.009965231642127037, + -0.015688663348555565, + -0.012545114383101463, + 0.009121383540332317, + -0.00271356082521379, + 0.013666168786585331, + -0.04950695112347603, + -0.0391651913523674, + -0.07881724834442139, + -1.4360100720809114e-33, + 0.07716445624828339, + 0.029415341094136238, + 0.025191258639097214, + -0.02282402664422989, + 0.072760671377182, + 0.02068255841732025, + -0.03606981784105301, + 0.04341191425919533, + -0.03571013733744621, + 0.06978064775466919, + 0.06371090561151505, + -0.03196254372596741, + -0.12280892580747604, + -0.04164893552660942, + 0.026833586394786835, + 0.07940925657749176, + 0.004716995172202587, + -0.009889064356684685, + -0.027179444208741188, + 0.0005795861361548305, + -0.059735897928476334, + -0.06316621601581573, + -0.019722269847989082, + -0.003293449291959405, + -0.07963081449270248, + -0.012430925853550434, + 0.0024563241750001907, + 0.04337545484304428, + -0.055602237582206726, + -0.03342636674642563, + -0.05043354630470276, + -0.007226957008242607, + 0.019717970862984657, + 0.10705592483282089, + 0.017893420532345772, + -0.016712769865989685, + 0.0160481296479702, + -0.031168058514595032, + 0.03269420191645622, + 0.0010685394518077374, + -0.0046927472576498985, + -0.009389531798660755, + 0.0061532314866781235, + 0.04495728015899658, + 0.025425294414162636, + -0.04975220561027527, + -0.02877427078783512, + -0.09008710831403732, + -0.020768556743860245, + 0.02198929898440838, + -0.036851827055215836, + -0.029930833727121353, + -0.005689078941941261, + 0.11854510754346848, + -0.07236435264348984, + -0.012448504567146301, + -0.03566567599773407, + 0.032081156969070435, + 0.014697687700390816, + 0.021862931549549103, + 0.00464148074388504, + 0.07059303671121597, + -0.07159073650836945, + 0.01391673181205988, + 0.024818677455186844, + -0.09478650987148285, + -0.05026539787650108, + -0.08153551816940308, + -0.02280954085290432, + -0.007848379202187061, + 0.03148680925369263, + -0.05732743814587593, + 0.02339376136660576, + -0.00808042660355568, + -0.05662000924348831, + -0.07493963092565536, + 0.04487275704741478, + 0.004005002323538065, + -0.014426429755985737, + 0.04562893509864807, + 0.007066745776683092, + -0.008925252594053745, + -0.08189146965742111, + 0.06945287436246872, + 0.030110429972410202, + 0.07311750948429108, + -0.020587950944900513, + 0.004397618118673563, + 0.05717318132519722, + -0.033528346568346024, + -0.027636121958494186, + 0.08393339067697525, + -0.0433020293712616, + 0.05075429379940033, + -0.030747998505830765, + -1.6261768820413636e-08, + -0.002818172099068761, + 0.042728181928396225, + -0.004533257335424423, + 0.02672559767961502, + -0.014291096478700638, + 0.0016527024563401937, + -0.07144481688737869, + -0.1363595873117447, + -0.038645870983600616, + 0.030726207420229912, + 0.04169679060578346, + 0.051066476851701736, + -0.04869387298822403, + -0.0061189355328679085, + -0.08793771266937256, + -0.003040912328287959, + -0.09329984337091446, + 0.04572011157870293, + 0.01212134025990963, + -0.03801155090332031, + 0.039598945528268814, + 0.03732898086309433, + 0.027455909177660942, + 0.038292042911052704, + 0.05501185730099678, + -0.016316650435328484, + -0.0344906710088253, + 0.019814029335975647, + 0.04084180295467377, + 0.11559971421957016, + 0.05666216462850571, + 0.03174380585551262, + -0.029447179287672043, + 0.012434592470526695, + -0.07502265274524689, + -0.06822725385427475, + -0.0663420632481575, + -0.057690802961587906, + -0.0010793959954753518, + 0.03182322159409523, + 0.03729518502950668, + -0.09595239907503128, + 0.012599699199199677, + -0.03247257322072983, + 0.03605811670422554, + -0.01860165223479271, + 0.05241897702217102, + -0.023188263177871704, + -0.0804971233010292, + -0.0216713547706604, + 0.004113802220672369, + -0.10421792417764664, + 0.009085285477340221, + 0.09569840133190155, + -0.05885257571935654, + -0.09838404506444931, + 0.006650389172136784, + 0.07068181782960892, + 0.03050941415131092, + -0.0008840724476613104, + 0.05144299939274788, + -0.08967170119285583, + -0.0030937984120100737, + -0.03618501126766205 + ], + "horse-bold||animals,equestrian,chess,knight,sports": [ + 0.044561803340911865, + 0.006045978050678968, + -0.02479313686490059, + 0.0247955285012722, + -0.005596109665930271, + 0.05203692615032196, + 0.010382434353232384, + -0.057326629757881165, + 0.040660761296749115, + 0.01911577209830284, + -0.026168957352638245, + -0.053344231098890305, + 0.047636330127716064, + -0.020105738192796707, + -0.05764879658818245, + 0.019961189478635788, + 0.07889041304588318, + 0.08111025393009186, + 0.003974783234298229, + 0.009431639686226845, + -0.04203786700963974, + -0.03245144337415695, + 0.0262970719486475, + 0.05247526243329048, + -0.020624946802854538, + -0.06001974269747734, + -0.010447866283357143, + 0.029870493337512016, + -0.08644362539052963, + -0.033698778599500656, + -0.05708283558487892, + -0.017643120139837265, + 0.06517083197832108, + -0.001907282043248415, + -0.057774465531110764, + 0.03774344548583031, + -0.030337871983647346, + 0.007268739864230156, + 0.019934244453907013, + 0.0924631804227829, + 0.04808822274208069, + -0.0640198141336441, + -0.024386301636695862, + 0.0753311961889267, + 0.07040276378393173, + 0.06755059957504272, + -0.06397639960050583, + -0.04802779108285904, + 0.004128147382289171, + 0.05007430538535118, + -0.059565771371126175, + -0.05113181844353676, + -0.09660367667675018, + 0.03824228793382645, + 0.007584064733237028, + -0.027239495888352394, + -0.11340228468179703, + 0.022563468664884567, + 0.02990511618554592, + -0.026516934856772423, + 0.003985658288002014, + 0.07466942816972733, + 0.08351300656795502, + 0.10340036451816559, + -0.06579628586769104, + 0.012317941524088383, + -0.07829316705465317, + 0.04390623793005943, + -0.07712087035179138, + 0.008561018854379654, + 0.046863995492458344, + -0.032952938228845596, + -0.01869344338774681, + -0.13692501187324524, + -0.10631770640611649, + 0.05532948300242424, + -0.026535585522651672, + -0.00307119800709188, + 0.037412066012620926, + -0.06579439342021942, + -0.08385099470615387, + -0.11013572663068771, + -0.050789788365364075, + -0.0031094406731426716, + 0.04909972473978996, + 0.029109889641404152, + -0.022972863167524338, + -0.1127268373966217, + -0.0894903615117073, + -0.03259987756609917, + -0.06362120807170868, + -0.04205913096666336, + 0.06395149976015091, + 0.08589505404233932, + 0.05455787852406502, + 0.06226794794201851, + 0.06110716611146927, + 0.011895484291017056, + -0.030150214210152626, + 0.04846012964844704, + 0.0020087468437850475, + 0.02152395248413086, + 0.03558652848005295, + 0.014402579516172409, + -0.040252793580293655, + 0.002359201433137059, + -0.06486078351736069, + 0.006936012767255306, + 0.014079316519200802, + -0.020862935110926628, + -0.07720977067947388, + -0.06797488033771515, + -0.007530708331614733, + -0.004157877992838621, + 0.020692842081189156, + 0.03836660832166672, + -0.09078434854745865, + -0.033574432134628296, + 0.03018283285200596, + 0.05973634868860245, + 0.05267373099923134, + 0.035878077149391174, + 0.0219033844769001, + -0.058554213494062424, + 0.021326769143342972, + -0.0052016605623066425, + 0.04563767462968826, + -3.332505546088061e-33, + 0.022388089448213577, + -0.05356364697217941, + -0.017538204789161682, + 0.010185066610574722, + -0.050089240074157715, + -0.05683146417140961, + 0.0014922544360160828, + -0.06593330949544907, + -0.06456798315048218, + 0.06471476703882217, + 0.031355880200862885, + 0.09512579441070557, + -0.03076307103037834, + -0.003607182763516903, + 0.06894777715206146, + 0.026090240105986595, + 0.04067053273320198, + -0.07492074370384216, + -0.004943493288010359, + 0.03343401849269867, + -0.01772969961166382, + 0.11968790739774704, + 0.010116858407855034, + -0.02220528945326805, + -0.03782111033797264, + -0.07802888751029968, + -0.00483302865177393, + -0.1277202069759369, + -0.03209393471479416, + 0.04059240221977234, + 0.02200457826256752, + -0.04966707155108452, + -0.030648665502667427, + -0.01711345836520195, + -0.06695130467414856, + -0.03627736493945122, + -0.04720015823841095, + -0.08089911937713623, + 0.02113458327949047, + 0.07742415368556976, + 0.03049631230533123, + -0.09291646629571915, + 0.015037675388157368, + -0.011433298699557781, + -0.008655264973640442, + 0.1210385337471962, + -0.01793128065764904, + 0.016104336827993393, + -0.04417978599667549, + -0.034664612263441086, + 0.023924002423882484, + -0.01702410727739334, + 0.06225431337952614, + -0.008479803800582886, + 0.004402561113238335, + -0.0013744805473834276, + -0.004300775472074747, + 0.05776292458176613, + -0.11915121972560883, + 0.007147240452468395, + 0.055137090384960175, + 0.03305777162313461, + 0.06370197981595993, + -0.030598308891057968, + -0.009800819680094719, + -0.04242251068353653, + -0.07684710621833801, + 0.07052028924226761, + 0.026410851627588272, + -0.020275402814149857, + 0.03135628625750542, + 0.09268656373023987, + 0.043256424367427826, + -0.05588003620505333, + 0.024308159947395325, + 0.027300404384732246, + 0.00970926508307457, + -0.06241033226251602, + -0.032570939511060715, + -0.10127629339694977, + -0.08877106755971909, + 0.06577776372432709, + -0.10803800821304321, + 0.07418926805257797, + 0.030721144750714302, + 0.08694420754909515, + 0.005221127532422543, + -0.11595868319272995, + 0.052539993077516556, + 0.07358400523662567, + -0.056361015886068344, + -0.007316076662391424, + -0.06961607933044434, + -0.06132229045033455, + -0.05024844780564308, + 4.589485348980342e-34, + -0.0024598550517112017, + -0.009074010886251926, + 0.01819591037929058, + 0.05275300145149231, + 0.0662478655576706, + 0.006486836355179548, + -0.0016844291239976883, + 0.029750030487775803, + 0.03207571059465408, + 0.0708250030875206, + -0.046763867139816284, + -0.02806037850677967, + -0.05638391524553299, + -0.08818744868040085, + 0.017139583826065063, + -0.06863290071487427, + -0.0031596366316080093, + 0.053227804601192474, + 0.014194006100296974, + -0.04939338564872742, + 0.011256229132413864, + -0.03908525034785271, + -0.01194838248193264, + -0.011083418503403664, + -0.004896723665297031, + 0.09928944706916809, + -0.06574727594852448, + 0.021595684811472893, + -0.029928598552942276, + 0.030681075528264046, + -0.06013088673353195, + -0.018263231962919235, + 0.061543483287096024, + 0.05226718261837959, + -0.03515617921948433, + 0.11615844070911407, + 0.026811273768544197, + -0.08320944756269455, + 0.01675768569111824, + -0.012768945656716824, + 0.036363422870635986, + -0.0844944417476654, + -0.006526084151118994, + 0.031192375347018242, + 0.07042903453111649, + 0.018266694620251656, + -0.011589042842388153, + 0.04071393981575966, + 0.02661389298737049, + 0.042707815766334534, + 0.05055534839630127, + 0.027163159102201462, + -0.0023568354081362486, + -0.01250308845192194, + 0.01633397489786148, + 0.026803823187947273, + -0.006961948703974485, + -0.061891745775938034, + -0.003429720178246498, + 0.029772130772471428, + 0.016732219606637955, + 0.06654836237430573, + -0.056726425886154175, + 0.0851883739233017, + -0.04212511330842972, + -0.02485756203532219, + -0.04772196337580681, + -0.02629871666431427, + 0.017237642779946327, + -0.06554481387138367, + -0.019464198499917984, + 0.02220693603157997, + -0.012212107889354229, + 0.02979235351085663, + 0.04124167561531067, + 0.048955608159303665, + 0.03575430437922478, + 0.05679367110133171, + 0.1050056517124176, + 0.05490150302648544, + -0.08171040564775467, + -0.025111738592386246, + -0.006714018061757088, + 0.03302294388413429, + 0.03874358907341957, + 0.07431286573410034, + -0.07256780564785004, + 0.046695973724126816, + 0.04107508063316345, + -0.0523335263133049, + 0.052460283041000366, + 0.053588222712278366, + 0.03628222644329071, + -0.04390076920390129, + -0.00961605366319418, + -1.8153670566789515e-08, + 0.012396796606481075, + 0.06017284840345383, + -0.036620352417230606, + -0.01755591481924057, + 0.005377193912863731, + -0.04234671965241432, + -0.036832913756370544, + -0.08846074342727661, + -0.05582975223660469, + 0.01967654563486576, + 0.043830592185258865, + 0.020845824852585793, + -0.027973266318440437, + -0.04061209037899971, + 0.0463361032307148, + 0.036646969616413116, + 0.026405617594718933, + 0.005188626237213612, + -0.00134474434889853, + -0.021791962906718254, + 0.0017646917840465903, + 0.006565488409250975, + -0.016889352351427078, + -0.0631946325302124, + -0.059468645602464676, + -0.09238351136445999, + -0.08432614803314209, + -0.020596228539943695, + 0.028520533815026283, + 0.09348129481077194, + 0.07292843610048294, + 0.053846266120672226, + 0.010193554684519768, + -0.0851704552769661, + -0.002162644639611244, + 0.021303292363882065, + -0.05795798823237419, + -0.04455477371811867, + 0.024928173050284386, + 0.02054230496287346, + -0.041459567844867706, + -0.02200993150472641, + 0.052928466349840164, + -0.01147418562322855, + 0.0543481819331646, + -0.007743045222014189, + 0.09542659670114517, + -0.051331158727407455, + -0.0302871186286211, + -0.12973949313163757, + -0.09029398113489151, + -0.01148483157157898, + 0.08433505147695541, + 0.03869347646832466, + -0.04183116927742958, + 0.031288888305425644, + 0.02465062402188778, + 0.0365092009305954, + -0.021117722615599632, + -0.018847055733203888, + 0.06279607117176056, + -0.03168841451406479, + 0.03598034381866455, + 0.03170601278543472 + ], + "hospital-bold||*new*,places,locations,medical,medicine,emergency,doctor,buildings": [ + 0.04982234165072441, + -0.004346990957856178, + -0.0019437683513388038, + 0.012431574054062366, + -0.02753124199807644, + -0.009387202560901642, + -0.03701801970601082, + 0.012657511048018932, + -0.009318217635154724, + -0.004486558493226767, + 0.009264006279408932, + 0.015396302565932274, + 0.021013692021369934, + -0.030915455892682076, + -0.03521425276994705, + -0.04993630200624466, + 0.06561402976512909, + -0.01957152597606182, + 0.012570960447192192, + 0.05127260833978653, + -0.0014041728572919965, + 0.06851711869239807, + 0.03659242391586304, + 0.029533611610531807, + 0.021625855937600136, + 0.017642347142100334, + -0.019785389304161072, + -0.02337118238210678, + 0.01076094526797533, + -0.028350524604320526, + 0.006961937062442303, + -0.031124774366617203, + 0.10432882606983185, + -0.027817677706480026, + 0.09797029942274094, + 0.02641870081424713, + 0.009666536003351212, + 0.019694246351718903, + -0.014795579016208649, + 0.09051650017499924, + -0.02262895740568638, + -0.002680204575881362, + 0.02443018928170204, + 0.039910245686769485, + 0.0307493694126606, + -0.014123033732175827, + -0.041065119206905365, + -0.016775360330939293, + 0.06642856448888779, + -0.010299161076545715, + -0.02049023099243641, + -0.08100603520870209, + -0.07205449044704437, + 0.07428794354200363, + -0.02077248878777027, + 0.022798437625169754, + -0.04976900294423103, + -0.06433124840259552, + -0.10730007290840149, + -0.0007369714439846575, + 0.006553740706294775, + 0.037012502551078796, + 0.08494710177183151, + 0.04442073777318001, + -0.0016013587592169642, + -0.010645494796335697, + 0.022674161940813065, + 0.004586569033563137, + 0.0395938865840435, + -0.05653058737516403, + 0.02017834037542343, + -0.04763677343726158, + 0.0635799691081047, + 0.05129743367433548, + -0.061649419367313385, + -0.02170487493276596, + 0.022696956992149353, + 0.03017813339829445, + -0.012164819985628128, + -0.03707505762577057, + 0.03317948803305626, + -0.11571889370679855, + -0.01820111647248268, + -0.007267777808010578, + -0.05526617169380188, + 0.03913383558392525, + -0.06720297038555145, + -0.03176074102520943, + -0.04893402010202408, + -0.08611094206571579, + -0.00294065335765481, + -0.035404305905103683, + 0.000980240642093122, + -0.029463542625308037, + 0.016179488971829414, + 0.0009570700349286199, + -0.014000124298036098, + -0.041853491216897964, + 0.005431370809674263, + 0.03147082030773163, + 0.019854314625263214, + -0.003213318297639489, + 0.08321946114301682, + 0.05240746587514877, + -0.011729314923286438, + -0.04968449845910072, + -0.07792387157678604, + -0.005474439822137356, + -0.05108743906021118, + 0.0013029287802055478, + 0.01883157342672348, + -0.002498554065823555, + 0.010892361402511597, + -0.06298874318599701, + -0.03618516027927399, + 0.03843708336353302, + -0.014623289927840233, + -0.08097713440656662, + 0.04048781469464302, + 0.13334868848323822, + -0.03242650255560875, + -0.0456266850233078, + -0.08681300282478333, + -0.05860772728919983, + -0.06139003485441208, + 0.03744000196456909, + -0.027535710483789444, + -5.0526402251089005e-33, + 0.030544448643922806, + -0.0016435313737019897, + 0.01315802801400423, + 0.0822451263666153, + 0.046826642006635666, + 0.01128946803510189, + -0.07501590996980667, + -0.02325502596795559, + 0.028507672250270844, + -0.005413539241999388, + 0.03249446675181389, + 0.006801364943385124, + 0.06316649913787842, + -0.03188081458210945, + -0.0600367896258831, + 0.01346136350184679, + 0.006908756215125322, + 0.026714550331234932, + -0.09305258095264435, + 0.06700399518013, + -0.039060644805431366, + -0.001655147410929203, + -0.06376338750123978, + 0.03850354999303818, + -0.021722229197621346, + 0.009575199335813522, + -0.04372256621718407, + -0.0015307149151340127, + 0.06905797123908997, + -0.00449763610959053, + -0.022216519340872765, + 0.03491923213005066, + 0.01553340908139944, + -0.017790716141462326, + 0.009963314048945904, + 0.051187802106142044, + -0.038599830120801926, + -0.02141880989074707, + -0.019607478752732277, + -0.023283477872610092, + -0.06242130696773529, + 0.008037552237510681, + -0.01942841336131096, + 0.08842240273952484, + 0.11649023741483688, + 0.10267949104309082, + -0.025272849947214127, + -0.057711925357580185, + 0.07228294014930725, + -0.04902680590748787, + -0.03652368485927582, + -0.03179985657334328, + -0.15410470962524414, + 0.027966273948550224, + 0.03973282873630524, + 0.018653640523552895, + -0.036541398614645004, + 0.06900368630886078, + 0.07308107614517212, + 0.05730943754315376, + 0.07386680692434311, + 0.0685524195432663, + -0.002971024950966239, + -0.017390040680766106, + 0.011361977085471153, + -0.05777314305305481, + -0.024753324687480927, + -0.01732698641717434, + 0.08660635352134705, + 0.008037470281124115, + -0.02030608057975769, + 0.04653359204530716, + 0.03955410420894623, + 0.0931929424405098, + -0.011762052774429321, + 0.03704845532774925, + -0.07655303925275803, + -0.0059034633450210094, + -0.043018680065870285, + -0.031664516776800156, + -0.07313863933086395, + 0.036778178066015244, + -0.029059793800115585, + 0.19237440824508667, + 0.07545492798089981, + -0.0038261425215750933, + 0.00433176476508379, + 0.00572539446875453, + -0.1238228902220726, + -0.03494061157107353, + -0.12205632776021957, + 0.061661142855882645, + 0.010888776741921902, + 0.0028178503271192312, + -0.05067994445562363, + 1.6365871756789887e-34, + 0.0501844622194767, + -0.0658012330532074, + -0.06574692577123642, + -0.03861522674560547, + -0.036360304802656174, + 0.014768862165510654, + -0.05790755897760391, + 0.01096512470394373, + 0.07175318896770477, + 0.05182261765003204, + -0.033454954624176025, + -0.005337563343346119, + -0.004152197856456041, + -0.028889793902635574, + -0.03643331304192543, + 0.024129508063197136, + -0.003627685597166419, + -0.047709740698337555, + -0.10495059192180634, + 0.10176336020231247, + -0.00011541473213583231, + -0.012501639313995838, + -0.08680461347103119, + 0.053927451372146606, + -0.008346625603735447, + 0.0738275945186615, + -0.03540603816509247, + -0.026059679687023163, + -0.04983492195606232, + -0.10958682000637054, + -0.133208766579628, + -0.0170462466776371, + 0.004419588949531317, + 0.06517183780670166, + -0.07568053156137466, + 0.056785255670547485, + 0.04220075532793999, + -0.06737401336431503, + -0.0016272523207589984, + 0.00869875680655241, + 0.060020994395017624, + -0.05334773287177086, + 0.02958082966506481, + 0.06411568820476532, + 0.02602566033601761, + -0.001981219742447138, + -0.09081282466650009, + -0.047752972692251205, + 0.03012457676231861, + -0.003935114946216345, + 0.0012616801541298628, + -0.07530514150857925, + -0.06752370297908783, + 0.008734975010156631, + -0.0177388247102499, + 0.004151113331317902, + -0.06952397525310516, + -0.062375083565711975, + -0.03892812877893448, + 0.013850726187229156, + 0.0727381780743599, + 0.01301772240549326, + -0.11286301165819168, + 0.12323223054409027, + -0.08869168162345886, + -0.05439995974302292, + 0.043925099074840546, + -0.020923713222146034, + -0.03279829025268555, + 0.01230443362146616, + -0.01799398846924305, + -0.02282561920583248, + -0.035163763910532, + 0.0030436336528509855, + 0.03378615155816078, + -0.024607814848423004, + 0.06341547518968582, + -0.010829081758856773, + -0.03718253970146179, + 0.011714115738868713, + 0.018733443692326546, + -0.06922069936990738, + -0.0692950189113617, + 0.08843051642179489, + -0.015144212171435356, + 0.006375409662723541, + 0.07052627205848694, + -0.07622702419757843, + 0.013629700057208538, + -0.041666653007268906, + -0.0645526573061943, + 0.015040328726172447, + -0.10868299007415771, + -0.06944314390420914, + -0.058390721678733826, + -2.6667782648814864e-08, + 0.012257817201316357, + 0.040674202144145966, + -0.03261253610253334, + 0.017713073641061783, + -0.017228614538908005, + -0.15095053613185883, + -0.03098757565021515, + 0.08932768553495407, + -0.028495358303189278, + 0.07028379291296005, + -0.06446748971939087, + 0.09094913303852081, + -0.028414739295840263, + -0.021411117166280746, + 0.03390904888510704, + 0.05359053611755371, + -0.09607439488172531, + 0.019298437982797623, + 0.002700715558603406, + -0.057427454739809036, + -0.06204421445727348, + 0.012511491775512695, + 0.039079923182725906, + -0.025294311344623566, + 0.04167090728878975, + 0.0521346814930439, + -0.023542633280158043, + -0.05455445125699043, + 0.05274486914277077, + 0.02908310666680336, + 0.017681773751974106, + 0.06474782526493073, + 0.007974139414727688, + 0.027858072891831398, + -0.06027434021234512, + -0.03338651359081268, + 0.06508147716522217, + -0.03599958494305611, + -0.007128988392651081, + 0.006396240089088678, + 0.04590274393558502, + -0.07778215408325195, + 0.012118079699575901, + -0.0013515061000362039, + 0.01416535209864378, + -0.05080420896410942, + 0.09721669554710388, + 0.03225834295153618, + 0.02871076390147209, + -0.12802740931510925, + 0.017650732770562172, + 0.0009187165414914489, + 0.08554265648126602, + -0.004932654555886984, + 0.0008806824334897101, + 0.04723282530903816, + 0.0504431314766407, + 0.00479978509247303, + -0.02522904984652996, + 0.08719008415937424, + 0.10097986459732056, + 0.012511651031672955, + 0.011066331528127193, + 0.04472069442272186 + ], + "hourglass-bold||times,timer,alarms,clock,schedule,events,waiting,progress": [ + 0.024993713945150375, + 0.01786770485341549, + 0.0015900763683021069, + -0.006390451453626156, + -0.0018046278273686767, + 0.019027451053261757, + 0.08619780093431473, + -0.05506674945354462, + 0.0005132469232194126, + -0.03248883783817291, + -0.04458644613623619, + -0.01557214092463255, + -0.019641026854515076, + 0.04994257912039757, + -0.03431202471256256, + 0.008348275907337666, + 0.007012499496340752, + -0.025649067014455795, + 0.013592574745416641, + 0.011625093407928944, + 0.07007036358118057, + -0.024374064058065414, + 0.028842736035585403, + 0.054287899285554886, + 0.06256208568811417, + 0.020122671499848366, + 0.011107334867119789, + 0.0046344962902367115, + 0.02709301747381687, + -0.06354432553052902, + -0.06901486963033676, + -0.050074733793735504, + 0.15231743454933167, + -0.015629079192876816, + 0.02674791030585766, + -0.004252161830663681, + 0.030558500438928604, + 0.0036143336910754442, + -0.018606459721922874, + 0.032032132148742676, + -0.0011865155538544059, + -0.09361177682876587, + -0.05861764773726463, + 0.036325711756944656, + -0.00969783402979374, + -0.025773296132683754, + -0.011769394390285015, + -0.07086813449859619, + -0.039401132613420486, + 0.09568396955728531, + -0.036438874900341034, + -0.04782514274120331, + -0.07821221649646759, + -0.07030471414327621, + 0.07972961664199829, + 0.10046521574258804, + 0.022009417414665222, + -0.011808005161583424, + 0.050181008875370026, + -0.012930814176797867, + 0.003501133993268013, + 0.04465144872665405, + -0.07327165454626083, + 0.09559205919504166, + 0.031243352219462395, + 0.03216012194752693, + -0.04078315943479538, + 0.057535089552402496, + 0.04341699182987213, + -0.03852644935250282, + -0.021032987162470818, + 0.012683765962719917, + 0.025890173390507698, + 0.0014977852115407586, + -0.009701655246317387, + -0.03885580226778984, + 0.07853824645280838, + -0.030496850609779358, + -0.020803961902856827, + -0.09255444258451462, + -0.09105531871318817, + -0.06918966770172119, + -0.03513757511973381, + 0.04688214138150215, + 0.07060489058494568, + 0.025217607617378235, + -0.010525294579565525, + 0.038757018744945526, + -0.02723149210214615, + -0.08234090358018875, + -0.05243123695254326, + -0.032690130174160004, + -0.029217753559350967, + -0.009395799599587917, + 0.010653706267476082, + 0.04008974879980087, + 0.04334724321961403, + 0.030321793630719185, + -0.06574125587940216, + 0.05289332941174507, + 0.024753425270318985, + -0.013796030543744564, + -0.020380817353725433, + 0.005524457432329655, + -0.0011809690622612834, + -0.07108534872531891, + -0.03618403151631355, + -0.015809208154678345, + -0.043878842145204544, + 0.03846805542707443, + -0.02842063084244728, + -0.07650400698184967, + 0.007152846083045006, + -0.01843666099011898, + 0.05213003605604172, + 0.012797830626368523, + -0.08797284215688705, + 0.0068739946000278, + 0.13294728100299835, + 0.09150117635726929, + 0.09840856492519379, + 0.012892169877886772, + 0.017482252791523933, + -0.06936844438314438, + -0.012124616652727127, + 0.031591154634952545, + 0.0534115768969059, + -2.4773703237343024e-33, + 0.03212066739797592, + -0.005312910303473473, + -0.05763190984725952, + 0.09997402131557465, + 0.0860147774219513, + 0.01396835595369339, + -0.07421422004699707, + -0.02280869148671627, + -0.0028815732803195715, + 0.04729318991303444, + -0.024352919310331345, + 0.022290857508778572, + -0.03725067153573036, + 0.007344075478613377, + 0.02952352538704872, + -0.05211259052157402, + 0.07677094638347626, + 0.06313218921422958, + -0.03678058087825775, + -0.03646234795451164, + -0.063384048640728, + 0.03947730362415314, + -0.0789635106921196, + 0.017506152391433716, + 0.01745503582060337, + 0.007150639779865742, + 0.040572021156549454, + -0.0125611312687397, + -0.047343987971544266, + 0.04194315895438194, + 0.08837829530239105, + -0.04177883639931679, + -0.003849110333248973, + 0.026483207941055298, + 0.06014490872621536, + -0.030415108427405357, + -0.012455045245587826, + -0.023352235555648804, + 0.028826765716075897, + -0.022508760914206505, + -0.12778425216674805, + -0.05611516162753105, + -0.035823021084070206, + -0.056121088564395905, + 0.05104554072022438, + 0.02581888809800148, + -0.026744231581687927, + 0.05993596091866493, + -0.027888571843504906, + 0.04955869913101196, + 0.013434689491987228, + 0.02749382145702839, + -0.00839434377849102, + -0.0893387421965599, + -0.007346785627305508, + 0.014734790660440922, + 0.015193325467407703, + 0.05017613619565964, + -0.026161322370171547, + 0.04438795521855354, + 0.020158568397164345, + 0.044299669563770294, + 0.044841866940259933, + -0.05372421070933342, + -0.0630473867058754, + 0.10188434273004532, + -0.05572376027703285, + -0.020416464656591415, + 0.08889796584844589, + 0.033381249755620956, + -0.007015369366854429, + 0.023784488439559937, + 0.05701693892478943, + 0.017322443425655365, + -0.015493232756853104, + 0.022571826353669167, + 0.06890341639518738, + -0.03255366161465645, + -0.0819283127784729, + -0.01798168011009693, + -0.0829208567738533, + -0.03205573931336403, + -0.011463929899036884, + 0.004106330219656229, + 0.05671613663434982, + -0.040135521441698074, + 0.06054358929395676, + -0.047105539590120316, + -0.031105512753129005, + 0.02299496717751026, + -0.04079707711935043, + -0.04319571331143379, + 0.010352225974202156, + -0.033947475254535675, + -0.12333273887634277, + 1.275237066870474e-33, + 0.04814140498638153, + -0.04843830317258835, + -0.028336405754089355, + -0.03892574831843376, + 0.031854722648859024, + -0.018745088949799538, + 0.004654665011912584, + 0.04958931729197502, + 0.04238196462392807, + 0.060257747769355774, + 0.02341364696621895, + 0.02163785696029663, + -0.08428803831338882, + -0.07352271676063538, + -0.02214246802031994, + 0.0406189039349556, + 0.12221593409776688, + -0.007699767127633095, + 0.012628120370209217, + 0.056988708674907684, + 0.011579242534935474, + 0.0012178572360426188, + -0.14886869490146637, + -0.00038861215580254793, + 0.02696037106215954, + 0.03739554062485695, + 0.05110418424010277, + -0.0029240441508591175, + -0.022246429696679115, + 0.012020103633403778, + -0.05522669851779938, + -0.06622251868247986, + 0.03431832045316696, + 0.07773608714342117, + -0.051599107682704926, + 0.03598374128341675, + 0.11293023824691772, + -0.07639486342668533, + -0.10249150544404984, + -0.055834319442510605, + 0.023555345833301544, + -0.02530946396291256, + 0.010828024707734585, + 0.006056015845388174, + -0.051637522876262665, + 0.06945449113845825, + -0.061917759478092194, + 0.008512858301401138, + -0.0940813422203064, + 0.03898421674966812, + 0.04744904488325119, + -0.08770624548196793, + 0.030467502772808075, + 0.03617386519908905, + -0.04407258331775665, + -0.008753912523388863, + 0.004031802993267775, + -0.03966808691620827, + 0.022895870730280876, + 0.07465659826993942, + -0.019002044573426247, + -0.00475296750664711, + -0.024292293936014175, + 0.019670801237225533, + 0.030004026368260384, + -0.008443393744528294, + -0.011307195760309696, + -0.05311121791601181, + -0.0658828616142273, + -0.035366445779800415, + 0.10259245336055756, + -0.001153340213932097, + -0.07588382065296173, + 0.014323252253234386, + -0.05462943762540817, + -0.010510804131627083, + 0.010995226912200451, + 0.026714343577623367, + -0.07852771878242493, + 0.015240021049976349, + -0.044878117740154266, + -0.012815977446734905, + 0.01004980318248272, + 0.08203433454036713, + -0.08393174409866333, + 0.006258772220462561, + 0.06744803488254547, + 0.05258743092417717, + 0.022437717765569687, + 0.0011498884996399283, + -0.02252979949116707, + 0.1097920760512352, + -0.050732046365737915, + 0.14900122582912445, + 0.019930677488446236, + -2.0757623175882145e-08, + -0.01873183436691761, + 0.013569947332143784, + 0.01829877309501171, + -0.10678749531507492, + 0.027997681871056557, + -0.07604438811540604, + 0.005566650535911322, + -0.025450926274061203, + -0.03039627894759178, + -0.04371672496199608, + 0.05354537069797516, + 0.012202786281704903, + -0.037999339401721954, + -0.06886668503284454, + 0.08699961006641388, + -0.03211195766925812, + -0.006314538884907961, + 0.01777258887887001, + -0.054790351539850235, + -0.08815129101276398, + 0.08950550854206085, + 0.029211178421974182, + 0.04105363041162491, + -0.019476085901260376, + -0.005103271454572678, + 0.035633623600006104, + -0.08087547868490219, + 0.02657366916537285, + 0.11462297290563583, + 0.06668620556592941, + 0.039263948798179626, + 0.07374925166368484, + 0.020003216341137886, + 0.028097745031118393, + -0.08911460638046265, + -0.04057958722114563, + -0.06664277613162994, + 0.00880765076726675, + 0.029398439452052116, + 0.09842643141746521, + 0.04938352853059769, + -0.1464606523513794, + -0.04058239236474037, + 0.03197262063622475, + 0.036343034356832504, + -0.025067239999771118, + -0.015515193343162537, + -0.09623463451862335, + -0.053354088217020035, + -0.1059633418917656, + -0.001338668866083026, + 0.014372401870787144, + 0.08353928476572037, + 0.04124068468809128, + -0.02071382850408554, + 0.028494786471128464, + 0.07127907872200012, + -0.03335413336753845, + 0.018759354948997498, + 0.03221118450164795, + 0.035661641508340836, + 0.06518202275037766, + 0.007727995049208403, + 0.0049848053604364395 + ], + "hourglass-high-bold||times,timer,alarms,clock,schedule,events,waiting,progress": [ + 0.027527784928679466, + 0.014530014246702194, + 0.007758139632642269, + -0.010905385948717594, + -0.019646544009447098, + 0.0032450994476675987, + 0.0868372693657875, + -0.03844346106052399, + -0.0032642483711242676, + -0.03135650232434273, + -0.04723746329545975, + -0.003587255487218499, + -0.0225832462310791, + 0.04173692315816879, + -0.024960879236459732, + 0.007891341112554073, + 0.04434315115213394, + -0.027545932680368423, + 0.009516758844256401, + 0.009201913140714169, + 0.05228842422366142, + -0.03129304572939873, + 0.030677607282996178, + 0.0720767080783844, + 0.06338099390268326, + 0.0013336444972082973, + 0.004313020966947079, + 0.010652582161128521, + 0.0026199370622634888, + -0.06329227238893509, + -0.07638534158468246, + -0.030751178041100502, + 0.15944422781467438, + -0.024698566645383835, + 0.0072616636753082275, + 0.006142760161310434, + 0.02992391586303711, + -0.004862210247665644, + -0.020568007603287697, + 0.03476414829492569, + 0.005309896543622017, + -0.08949781954288483, + -0.04222385957837105, + 0.04612385854125023, + -0.02197502739727497, + -0.022419800981879234, + -0.004958072677254677, + -0.06736908107995987, + -0.050967130810022354, + 0.07872249186038971, + -0.04091423749923706, + -0.04219583794474602, + -0.060112226754426956, + -0.07020962983369827, + 0.07725197821855545, + 0.10053819417953491, + 0.016099760308861732, + -0.007125903386622667, + 0.0632265955209732, + -0.011172604747116566, + -0.01673990674316883, + 0.04910818859934807, + -0.07475947588682175, + 0.09044896811246872, + 0.035402216017246246, + 0.03331109136343002, + -0.039450641721487045, + 0.03963861241936684, + 0.03545811399817467, + -0.031258393079042435, + -0.007239982020109892, + 0.008684485219419003, + 0.026257425546646118, + 0.0011565074091777205, + -0.010198590345680714, + -0.05566319450736046, + 0.07210475951433182, + -0.03364955261349678, + -0.01521017774939537, + -0.08962837606668472, + -0.06874851137399673, + -0.060370948165655136, + -0.04209108650684357, + 0.035303883254528046, + 0.06865327805280685, + 0.023747596889734268, + -0.00590522401034832, + 0.03772670403122902, + -0.04176350310444832, + -0.0898207426071167, + -0.0416049025952816, + -0.032190270721912384, + -0.0297017190605402, + 0.00016451699775643647, + -0.003328730585053563, + 0.029945405200123787, + 0.050996486097574234, + 0.011146950535476208, + -0.07320671528577805, + 0.060055408626794815, + 0.03685566037893295, + -0.02939373068511486, + -0.022229665890336037, + 0.01129054743796587, + -0.00032696450944058597, + -0.07498955726623535, + -0.020948797464370728, + 0.014780146069824696, + -0.04036398604512215, + 0.03708348795771599, + -0.03318619728088379, + -0.07444792985916138, + 0.011028571054339409, + -0.019229348748922348, + 0.04460378363728523, + 0.018213722854852676, + -0.08693311363458633, + 0.007025476545095444, + 0.11159439384937286, + 0.08314322680234909, + 0.09524258226156235, + 0.0017994171939790249, + 0.012942926026880741, + -0.07734383642673492, + -0.005721227265894413, + 0.03579719737172127, + 0.047039810568094254, + -2.662355665671298e-33, + 0.038421232253313065, + 0.01486959308385849, + -0.053397782146930695, + 0.0942009687423706, + 0.0868503674864769, + -0.002398080425336957, + -0.09069527685642242, + -0.03195471316576004, + -0.0018712843302637339, + 0.06415269523859024, + -0.020536556839942932, + 0.04458840191364288, + -0.047500211745500565, + 0.032434698194265366, + 0.02532392181456089, + -0.061163224279880524, + 0.07235252857208252, + 0.06668750941753387, + -0.03931272029876709, + -0.03590605407953262, + -0.07903073728084564, + 0.040452636778354645, + -0.07452598959207535, + 0.00822734460234642, + 0.014148162677884102, + 0.0027730052825063467, + 0.03929349407553673, + -0.019037285819649696, + -0.04247894883155823, + 0.04797916114330292, + 0.09237145632505417, + -0.052095573395490646, + 0.011796172708272934, + 0.017877859994769096, + 0.03884240984916687, + -0.02925851009786129, + -0.022242410108447075, + -0.026937028393149376, + 0.022269094362854958, + -0.01646639034152031, + -0.12272121757268906, + -0.039439767599105835, + -0.025412729009985924, + -0.03638511523604393, + 0.06238240376114845, + 0.047067999839782715, + -0.028113868087530136, + 0.048706281930208206, + -0.05165461078286171, + 0.05372994393110275, + 0.0033796958159655333, + 0.015615595504641533, + -0.0040364922024309635, + -0.08464580774307251, + -0.023413069546222687, + 0.02806435525417328, + 0.03286059945821762, + 0.04607163742184639, + -0.01883670687675476, + 0.05593320354819298, + 0.022649390622973442, + 0.044640813022851944, + 0.03027363121509552, + -0.04049854725599289, + -0.06003379449248314, + 0.08314534276723862, + -0.0491035170853138, + -0.011798598803579807, + 0.08069343864917755, + 0.04448288679122925, + 0.012149034067988396, + 0.018303586170077324, + 0.06559077650308609, + 0.02266191691160202, + -0.0200820229947567, + 0.03133740276098251, + 0.07358811050653458, + -0.02202511951327324, + -0.057846277952194214, + -0.02489483915269375, + -0.07886538654565811, + -0.04038546606898308, + -0.005918978713452816, + -0.01563866063952446, + 0.03843928501009941, + -0.039412353187799454, + 0.03643088787794113, + -0.05111401528120041, + -0.03832084313035011, + 0.03271641954779625, + -0.047867074608802795, + -0.025839487090706825, + 0.030331017449498177, + -0.04721233993768692, + -0.13334694504737854, + 1.8053521419837012e-33, + 0.046603668481111526, + -0.04796664044260979, + -0.020666474476456642, + -0.029079392552375793, + 0.033969562500715256, + -0.005091565661132336, + -0.006394155789166689, + 0.06259288638830185, + 0.023866094648838043, + 0.056252360343933105, + 0.049037862569093704, + 0.002588850911706686, + -0.07360583543777466, + -0.07592551410198212, + -0.002912816358730197, + 0.0177480336278677, + 0.13456560671329498, + -0.00748155452311039, + 0.01406546588987112, + 0.05078040808439255, + 0.024831032380461693, + -0.009030433371663094, + -0.15227070450782776, + -0.004107256419956684, + 0.020537521690130234, + 0.027692127972841263, + 0.027953118085861206, + -0.0006896693957969546, + -0.0223546102643013, + 0.01297842524945736, + -0.07909815013408661, + -0.07299588620662689, + 0.04603414982557297, + 0.07632329314947128, + -0.06310466676950455, + 0.04756125062704086, + 0.11082690954208374, + -0.07551856338977814, + -0.11811912059783936, + -0.05922674387693405, + 0.005843164399266243, + -0.025081763043999672, + 0.020448723807930946, + 0.004794699605554342, + -0.05207587778568268, + 0.07602304965257645, + -0.08722299337387085, + 0.0012153947027400136, + -0.07899060100317001, + 0.04685017466545105, + 0.03705551475286484, + -0.09118126332759857, + 0.045787982642650604, + 0.05653411149978638, + -0.05022604763507843, + -0.02851163223385811, + -0.004127750173211098, + -0.0330008789896965, + 0.00270463852211833, + 0.07385804504156113, + 0.006329254247248173, + -0.0003610926796682179, + -0.047534458339214325, + 0.021502142772078514, + 0.04227161779999733, + 0.0011655149282887578, + -0.0053856768645346165, + -0.06080949679017067, + -0.06314483284950256, + -0.017689241096377373, + 0.09429997950792313, + -0.011863034218549728, + -0.06168830022215843, + 0.023471085354685783, + -0.06759817898273468, + -0.03487420827150345, + 0.010448778048157692, + 0.03313104435801506, + -0.0633092001080513, + 0.007638704031705856, + -0.0379570834338665, + -0.005960078909993172, + -0.0005278727039694786, + 0.09932003170251846, + -0.08777231723070145, + 0.004312573000788689, + 0.05134487897157669, + 0.05370079353451729, + 0.03364194184541702, + 0.00776667520403862, + -0.015823375433683395, + 0.1099761351943016, + -0.06863567233085632, + 0.1359771341085434, + 0.020757179707288742, + -2.1478410161535066e-08, + -0.006539804395288229, + 0.011308681219816208, + 0.0114405807107687, + -0.11019216477870941, + 0.033996131271123886, + -0.07919738441705704, + 0.00981238391250372, + -0.0021952579263597727, + -0.020463310182094574, + -0.049781061708927155, + 0.03986267372965813, + 0.007750918157398701, + -0.029972286894917488, + -0.0745123028755188, + 0.104297935962677, + -0.04470202326774597, + -0.011467727832496166, + 0.043184544891119, + -0.056060805916786194, + -0.09968773275613785, + 0.09127022325992584, + 0.043248604983091354, + 0.06335531920194626, + -0.03050609864294529, + 0.004828400909900665, + 0.038778677582740784, + -0.08281512558460236, + 0.037828605622053146, + 0.10402892529964447, + 0.0625254437327385, + 0.027354571968317032, + 0.07298588752746582, + 0.0026524863205850124, + 0.012994385324418545, + -0.07175806164741516, + -0.025273144245147705, + -0.08998462557792664, + 0.011462770402431488, + 0.030880622565746307, + 0.08316890150308609, + 0.03461912274360657, + -0.14052358269691467, + -0.03047397918999195, + 0.03561972826719284, + 0.044501811265945435, + -0.034585095942020416, + -0.0072224619798362255, + -0.08109671622514725, + -0.03854435309767723, + -0.09818923473358154, + 0.007793664466589689, + 0.029224993661046028, + 0.09815292805433273, + 0.03487693890929222, + -0.031046254560351372, + 0.033501289784908295, + 0.06132831424474716, + -0.02325502224266529, + 0.004391875118017197, + 0.017696861177682877, + 0.08932860940694809, + 0.05314548686146736, + -0.014231116510927677, + 0.025234997272491455 + ], + "hourglass-low-bold||times,timer,alarms,clock,schedule,events,waiting,progress": [ + 0.043810419738292694, + 0.027643272653222084, + 0.006734269671142101, + 0.0013498271582648158, + -0.014911184087395668, + 0.004059710074216127, + 0.07671996206045151, + -0.026541193947196007, + 0.00558193726465106, + -0.03429482504725456, + -0.03453012555837631, + -0.023096594959497452, + -0.01397830992937088, + 0.04962419718503952, + -0.03217371925711632, + 0.011623132042586803, + 0.03945361077785492, + -0.021126657724380493, + 0.006379658821970224, + 0.011292403563857079, + 0.050282083451747894, + -0.030893424525856972, + 0.023853205144405365, + 0.05610528588294983, + 0.05644022300839424, + -0.006466011516749859, + 0.00572471646592021, + 0.004716620314866304, + 0.0188295841217041, + -0.06097298115491867, + -0.07497163861989975, + -0.041225530207157135, + 0.16960087418556213, + -0.026153696700930595, + 0.022097889333963394, + -0.0020904988050460815, + 0.05263036862015724, + 0.011251690797507763, + -0.021526111289858818, + 0.039820458739995956, + 0.006970849819481373, + -0.08030242472887039, + -0.06011241674423218, + 0.05180572345852852, + -0.025885814800858498, + -0.021879419684410095, + -0.012041092850267887, + -0.0714058205485344, + -0.06522655487060547, + 0.07333893328905106, + -0.03157929331064224, + -0.030402272939682007, + -0.08126479387283325, + -0.06682329624891281, + 0.0770212933421135, + 0.09538909047842026, + 0.005537860561162233, + -0.005453021265566349, + 0.06092257425189018, + -0.017908133566379547, + 0.004565991461277008, + 0.0319356732070446, + -0.08357784897089005, + 0.08507932722568512, + 0.034297846257686615, + 0.03587700054049492, + -0.039981670677661896, + 0.03643101453781128, + 0.04131859540939331, + -0.032537419348955154, + -0.01879856549203396, + 0.005615533329546452, + 0.025943748652935028, + 0.017020821571350098, + -0.02865118347108364, + -0.05115731805562973, + 0.07342670112848282, + -0.027615614235401154, + -0.02136719785630703, + -0.09271976351737976, + -0.07928051799535751, + -0.0672556608915329, + -0.055949099361896515, + 0.028303248807787895, + 0.0584615133702755, + 0.02272610180079937, + 0.000792089500464499, + 0.03695254400372505, + -0.035511359572410583, + -0.08266708254814148, + -0.04022972658276558, + -0.02143697254359722, + -0.02799897827208042, + -0.003709934651851654, + -0.0007712981314398348, + 0.033765412867069244, + 0.06742367893457413, + 0.028778361156582832, + -0.0797034427523613, + 0.07463587075471878, + 0.024740319699048996, + -0.020392440259456635, + -0.022477170452475548, + -0.0018306862330064178, + -0.005780249834060669, + -0.06995049864053726, + -0.02545144036412239, + -0.003481772029772401, + -0.05378028750419617, + 0.03314139321446419, + -0.023855483159422874, + -0.07624074816703796, + 0.009401096031069756, + -0.03236889839172363, + 0.04415110871195793, + 0.008554807864129543, + -0.09162664413452148, + 0.01377159170806408, + 0.11249037086963654, + 0.10135708004236221, + 0.08718865364789963, + 0.0005053158383816481, + 0.007783690467476845, + -0.07072731107473373, + -0.008715888485312462, + 0.04611942544579506, + 0.03259933739900589, + -2.4681601418246175e-33, + 0.05523458495736122, + 0.0023794788867235184, + -0.06053638458251953, + 0.0821446031332016, + 0.09243558347225189, + 0.004284240771085024, + -0.08938094973564148, + -0.04148080572485924, + 0.0032755807042121887, + 0.07109291851520538, + -0.0046661775559186935, + 0.03445885702967644, + -0.043911322951316833, + 0.015387044288218021, + 0.035617876797914505, + -0.06379852443933487, + 0.08183809369802475, + 0.05232568457722664, + -0.018848653882741928, + -0.035716455429792404, + -0.07766099274158478, + 0.04554925858974457, + -0.07508926838636398, + 0.009651686064898968, + 0.020902544260025024, + 0.0006367989117279649, + 0.04470384865999222, + -0.03247896954417229, + -0.05077449604868889, + 0.046141404658555984, + 0.08068745583295822, + -0.049321986734867096, + 0.010608939453959465, + 0.012686656787991524, + 0.055157970637083054, + -0.03049403801560402, + -0.02824258990585804, + -0.018990812823176384, + 0.015253406018018723, + -0.02925751730799675, + -0.1258680671453476, + -0.048538148403167725, + -0.03606385365128517, + -0.054377924650907516, + 0.06704021990299225, + 0.02227702923119068, + -0.010844516567885876, + 0.040253445506095886, + -0.044756416231393814, + 0.052741680294275284, + 0.010398750193417072, + 0.02146749384701252, + -0.012688150629401207, + -0.0825996920466423, + -0.010243469849228859, + 0.023096172139048576, + 0.026736486703157425, + 0.03731290251016617, + -0.030381707474589348, + 0.056981541216373444, + 0.025902695953845978, + 0.04471414536237717, + 0.029659267514944077, + -0.05881599336862564, + -0.050149381160736084, + 0.08332018554210663, + -0.05615228787064552, + -0.02956048771739006, + 0.0733746662735939, + 0.029350871220231056, + 0.003675966989248991, + 0.023390959948301315, + 0.06783466041088104, + 0.02346324920654297, + -0.0019558409694582224, + 0.03903812915086746, + 0.08587972819805145, + -0.03746442124247551, + -0.05976409837603569, + -0.03403579071164131, + -0.06495608389377594, + -0.0327911376953125, + -0.01553606241941452, + -0.0007806236390024424, + 0.04435791075229645, + -0.04345279186964035, + 0.044770464301109314, + -0.025529561564326286, + -0.04708746820688248, + 0.017508625984191895, + -0.0661124587059021, + -0.040575213730335236, + 0.001711442368105054, + -0.04120578616857529, + -0.11868354678153992, + 1.4494130954031856e-33, + 0.03978899121284485, + -0.045044906437397, + -0.02250448241829872, + -0.015255182981491089, + 0.028232557699084282, + -0.0058089387603104115, + 0.021220613270998, + 0.05170077085494995, + 0.04761219024658203, + 0.07447167485952377, + 0.046117257326841354, + 0.011569839902222157, + -0.06784626841545105, + -0.07014809548854828, + -0.0072099980898201466, + 0.02453312650322914, + 0.1242121160030365, + -0.012869566679000854, + 0.03220891207456589, + 0.0586024709045887, + 0.01802022010087967, + 0.016757961362600327, + -0.15502315759658813, + -5.545240583160194e-06, + 0.03231200948357582, + 0.029537690803408623, + 0.02728651463985443, + 0.007829469628632069, + -0.036272648721933365, + -0.0032454319298267365, + -0.06598778814077377, + -0.06214817985892296, + 0.05399380996823311, + 0.06661475449800491, + -0.06861183047294617, + 0.04345492646098137, + 0.1020590290427208, + -0.06656688451766968, + -0.11565285176038742, + -0.058056775480508804, + 0.012447810731828213, + -0.009082467295229435, + 0.017087707296013832, + 7.538162026321515e-05, + -0.06432904303073883, + 0.07226791232824326, + -0.08050116896629333, + -0.008341614156961441, + -0.08037414401769638, + 0.0334007553756237, + 0.03802580013871193, + -0.09950082004070282, + 0.03871197998523712, + 0.06934970617294312, + -0.04229510948061943, + -0.022968219593167305, + 0.0012866905890405178, + -0.027666525915265083, + 0.017189938575029373, + 0.09119082242250443, + -0.0022804071195423603, + -0.006491758860647678, + -0.030790802091360092, + 0.013413015753030777, + 0.041313041001558304, + 0.0009945780038833618, + -0.007946052588522434, + -0.04227074608206749, + -0.06244987994432449, + -0.03305674344301224, + 0.10863908380270004, + -0.004999931901693344, + -0.056099504232406616, + 0.004427426028996706, + -0.06108236312866211, + -0.0322733074426651, + 0.0048705716617405415, + 0.02835959941148758, + -0.07085425406694412, + 0.013350672088563442, + -0.03768076375126839, + -0.008525567129254341, + -0.004159144591540098, + 0.0908728539943695, + -0.08144901692867279, + 0.009428984485566616, + 0.0508994422852993, + 0.050103381276130676, + 0.027401044964790344, + 0.021493587642908096, + -0.023421093821525574, + 0.11509940773248672, + -0.03599518537521362, + 0.14789053797721863, + 0.012490721419453621, + -2.155372236245512e-08, + -0.01540702860802412, + 0.0015739744994789362, + 0.03024652600288391, + -0.10405802726745605, + 0.03900675103068352, + -0.07663079351186752, + 0.00024644460063427687, + -0.021515890955924988, + -0.01877654902637005, + -0.03922858461737633, + 0.04947211965918541, + 0.00678767217323184, + -0.04237214848399162, + -0.0772709995508194, + 0.10507387667894363, + -0.029115645214915276, + -0.009845789521932602, + 0.03346189484000206, + -0.05831781029701233, + -0.10359100252389908, + 0.08949155360460281, + 0.03932321444153786, + 0.04645349830389023, + -0.03004472702741623, + 0.011412570253014565, + 0.02003525197505951, + -0.06180211901664734, + 0.03134401515126228, + 0.10513436794281006, + 0.04958294704556465, + 0.029339032247662544, + 0.08674055337905884, + 0.018571851775050163, + 0.004072288982570171, + -0.08474487066268921, + -0.014533184468746185, + -0.0875997245311737, + 0.02212693728506565, + 0.01769052818417549, + 0.09097303450107574, + 0.03246340528130531, + -0.14400187134742737, + -0.03932461887598038, + 0.03165053948760033, + 0.03385395556688309, + -0.03623192757368088, + -0.015088420361280441, + -0.08850128948688507, + -0.04280567169189453, + -0.09703856706619263, + 0.01562168076634407, + 0.029616035521030426, + 0.08960406482219696, + 0.040023207664489746, + -0.037427157163619995, + 0.03991418331861496, + 0.0689503476023674, + -0.02677231840789318, + -9.54755159909837e-05, + 0.013758975081145763, + 0.06035761162638664, + 0.06115226075053215, + -0.007249098736792803, + 0.009456930682063103 + ], + "hourglass-medium-bold||times,timer,alarms,clock,schedule,events,waiting,progress": [ + 0.04876136779785156, + 0.0052361260168254375, + 0.005852183792740107, + 0.003858259879052639, + -0.0012727181892842054, + 0.009902619756758213, + 0.08473654836416245, + -0.04313356801867485, + -0.006953079253435135, + -0.020856602117419243, + -0.03820701688528061, + -0.029607124626636505, + -0.019111093133687973, + 0.06373830884695053, + -0.03820580989122391, + 0.004602858796715736, + 0.028171492740511894, + -0.028855733573436737, + 0.008869498036801815, + 0.017544720321893692, + 0.06307201832532883, + -0.022588619962334633, + 0.027767593041062355, + 0.04096895456314087, + 0.06421640515327454, + -0.0019184990087524056, + -0.011564759537577629, + -0.005835242569446564, + 0.021482238546013832, + -0.06846963614225388, + -0.0756201297044754, + -0.021124407649040222, + 0.15268687903881073, + -0.011074496433138847, + 0.015108184888958931, + -0.0012773557100445032, + 0.029726233333349228, + 0.00023081035760696977, + -0.03025263175368309, + 0.04083941876888275, + 0.011175621300935745, + -0.10102679580450058, + -0.049732401967048645, + 0.045493923127651215, + -0.029434671625494957, + -0.021123439073562622, + -0.012384448200464249, + -0.04492710158228874, + -0.06188228353857994, + 0.0879114419221878, + -0.04384796693921089, + -0.048871029168367386, + -0.09093622863292694, + -0.04493938013911247, + 0.06865306943655014, + 0.09509475529193878, + 0.01903006248176098, + 0.006163434125483036, + 0.05061231553554535, + -0.026264013722538948, + -0.016315370798110962, + 0.04016401246190071, + -0.082917220890522, + 0.09137832373380661, + 0.04519686847925186, + 0.04806332290172577, + -0.04502322897315025, + 0.06909217685461044, + 0.03162044659256935, + -0.039208319038152695, + 0.008159077726304531, + 0.012941358610987663, + 0.026576057076454163, + 0.019262367859482765, + 0.007058913819491863, + -0.06877725571393967, + 0.07875598967075348, + -0.02682049572467804, + -0.029566748067736626, + -0.07128813117742538, + -0.08072428405284882, + -0.05152720585465431, + -0.04365020617842674, + 0.029430944472551346, + 0.06142029911279678, + 0.02699083462357521, + -0.009117165580391884, + 0.03621559962630272, + -0.02927015908062458, + -0.08648988604545593, + -0.048223767429590225, + -0.02952847070991993, + -0.05645737051963806, + -0.01417996920645237, + 0.02619641087949276, + 0.025724872946739197, + 0.038121238350868225, + 0.014930260367691517, + -0.047443509101867676, + 0.05009966343641281, + 0.02708486281335354, + -0.021743739023804665, + -0.015697844326496124, + 0.004002969712018967, + -0.01340905949473381, + -0.09509462863206863, + -0.035153068602085114, + 0.003771161427721381, + -0.02888655476272106, + 0.03378399834036827, + -0.017071327194571495, + -0.06926784664392471, + -0.0003161379136145115, + -0.018117595463991165, + 0.07273917645215988, + 0.016391940414905548, + -0.0828234851360321, + 0.0206346083432436, + 0.13399018347263336, + 0.0803878903388977, + 0.09635980427265167, + 0.018046541139483452, + 0.008873485028743744, + -0.07863935083150864, + -0.011371100321412086, + 0.03168787062168121, + 0.05738425627350807, + -2.6175127602393355e-33, + 0.025443796068429947, + -0.00938770268112421, + -0.06804979592561722, + 0.09908812493085861, + 0.08750434219837189, + 0.008759968914091587, + -0.0707249790430069, + -0.03575507178902626, + 0.0011379197239875793, + 0.03338856250047684, + -0.024451719596982002, + 0.06563819944858551, + -0.06077912822365761, + 0.023642126470804214, + 0.0389082133769989, + -0.051312461495399475, + 0.08916700631380081, + 0.0878242775797844, + -0.018445119261741638, + -0.03541293740272522, + -0.06744768470525742, + 0.05440612882375717, + -0.07787471264600754, + 0.01723608560860157, + 0.014149464666843414, + -0.013741042464971542, + 0.04206826537847519, + -0.018066950142383575, + -0.04713300243020058, + 0.03916298225522041, + 0.07578281313180923, + -0.04338666796684265, + 0.013608786277472973, + 0.01134899165481329, + 0.052517905831336975, + -0.020521368831396103, + -0.019565818831324577, + -0.01935667358338833, + 0.03939558193087578, + -0.04075406491756439, + -0.1084953024983406, + -0.03973231464624405, + -0.03595906123518944, + -0.0456366240978241, + 0.04339698329567909, + 0.02991555631160736, + -0.02674468792974949, + 0.052614688873291016, + -0.05036505311727524, + 0.03332683444023132, + 0.022681154310703278, + 0.012378865852952003, + 0.009238820523023605, + -0.09331438690423965, + 0.012873570434749126, + 0.023741889744997025, + 0.02963583916425705, + 0.04421870782971382, + -0.02568049356341362, + 0.046413861215114594, + 0.037586819380521774, + 0.028984885662794113, + 0.04954342544078827, + -0.042199037969112396, + -0.036420490592718124, + 0.0918908417224884, + -0.06891340762376785, + -0.021273115649819374, + 0.09325038641691208, + 0.028591951355338097, + -0.011020760051906109, + 0.0254504457116127, + 0.054348692297935486, + 0.03809313476085663, + -0.01465726550668478, + 0.020705929026007652, + 0.06704994291067123, + -0.03655795007944107, + -0.07533232122659683, + -0.00235785823315382, + -0.09827275574207306, + -0.016898255795240402, + -0.034798648208379745, + 0.0033256341703236103, + 0.023273007944226265, + -0.03291473537683487, + 0.05761691927909851, + -0.04605817049741745, + -0.04479561373591423, + 0.005639049224555492, + -0.07152397185564041, + -0.021503642201423645, + 0.019674083217978477, + -0.03692048415541649, + -0.12605135142803192, + 1.3321753499949171e-33, + 0.02183619886636734, + -0.05439566820859909, + -0.04428308457136154, + 0.0005567541811615229, + 0.04239216819405556, + -0.020934879779815674, + -0.0008253601845353842, + 0.06394322961568832, + 0.04677962139248848, + 0.05548659712076187, + 0.03645443171262741, + -0.013732477091252804, + -0.09918445348739624, + -0.08164715021848679, + -0.018447229638695717, + 0.029846902936697006, + 0.11820781975984573, + -0.013015398755669594, + 0.030621852725744247, + 0.05886399745941162, + 0.0030150178354233503, + -0.02734168991446495, + -0.13239000737667084, + 0.010921175591647625, + 0.019854692742228508, + 0.024458065629005432, + 0.04478432983160019, + -0.0019103139638900757, + -0.054776813834905624, + 0.008628702722489834, + -0.05248178914189339, + -0.07694414258003235, + 0.05191468074917793, + 0.07526019215583801, + -0.048269882798194885, + 0.03863813728094101, + 0.1313660889863968, + -0.07693284004926682, + -0.11115560680627823, + -0.05744493007659912, + 0.036658916622400284, + -0.01703258790075779, + 0.009136020205914974, + -0.010339634492993355, + -0.05913934111595154, + 0.06089247763156891, + -0.05583559721708298, + -0.02747688814997673, + -0.08940544724464417, + 0.02784912660717964, + 0.0752963051199913, + -0.08477366715669632, + 0.04749405384063721, + 0.02015502378344536, + -0.04970569163560867, + -0.011544188484549522, + -0.006637379992753267, + -0.030105724930763245, + 0.01325837429612875, + 0.07616914808750153, + 0.000915062555577606, + -0.016104206442832947, + -0.0310172401368618, + 0.0054662637412548065, + 0.03318431228399277, + -0.011305698193609715, + -0.006784502882510424, + -0.06385532766580582, + -0.09253934770822525, + -0.012597865425050259, + 0.10223890095949173, + 0.0053464146330952644, + -0.06584038585424423, + 0.026335399597883224, + -0.05969831719994545, + -0.04195576161146164, + 0.005106654483824968, + 0.023580174893140793, + -0.08717826753854752, + 0.02429543435573578, + -0.042529504746198654, + 0.0007893639849498868, + -0.0029201372526586056, + 0.07994206994771957, + -0.07311495393514633, + 0.006887092255055904, + 0.06851053982973099, + 0.03367970511317253, + 0.02410971373319626, + 0.018347395583987236, + -0.013684291392564774, + 0.09909223765134811, + -0.055507004261016846, + 0.12382060289382935, + 0.009636720642447472, + -2.1001973493639525e-08, + -0.010186632163822651, + 0.003234725445508957, + 0.00808989442884922, + -0.09775091707706451, + 0.014142771251499653, + -0.08116407692432404, + 0.009008234366774559, + -0.03920198231935501, + -0.011078786104917526, + -0.04594048857688904, + 0.04122883081436157, + -0.0003723724512383342, + -0.03375843167304993, + -0.05248161777853966, + 0.11049377918243408, + -0.04590604454278946, + 0.0010761602316051722, + 0.013859692960977554, + -0.06415459513664246, + -0.10137104243040085, + 0.10469342023134232, + 0.03879218176007271, + 0.03639813885092735, + -0.026345476508140564, + 0.014957780949771404, + 0.03914685547351837, + -0.07271073758602142, + 0.024720799177885056, + 0.11262167990207672, + 0.07502233982086182, + 0.023993542417883873, + 0.07234810292720795, + 0.0035258226562291384, + 0.026187408715486526, + -0.10560602694749832, + -0.017338477075099945, + -0.06814321875572205, + 0.011448235251009464, + 0.02365400828421116, + 0.09576548635959625, + 0.04275728762149811, + -0.13406965136528015, + -0.03190099075436592, + 0.024879127740859985, + 0.04937956854701042, + -0.03153606504201889, + -0.0029374556615948677, + -0.06601271778345108, + -0.04812770336866379, + -0.07790855318307877, + 0.01571029983460903, + 0.031936660408973694, + 0.08773540705442429, + 0.03876552730798721, + -0.02226041443645954, + 0.025215942412614822, + 0.07310821861028671, + -0.01852823607623577, + 0.015037826262414455, + 0.021432967856526375, + 0.042965225875377655, + 0.05268676578998566, + 0.01275076437741518, + 0.02956237643957138 + ], + "hourglass-simple-bold||times,timer,alarms,clock,schedule,events,waiting,progress": [ + 0.027408841997385025, + 0.028548985719680786, + -0.0006254999316297472, + -0.0019966219551861286, + -0.004877383355051279, + 0.015671389177441597, + 0.07633746415376663, + -0.04447765275835991, + -0.006079629994928837, + -0.024917447939515114, + -0.04269058629870415, + -0.024766989052295685, + -0.010481473058462143, + 0.04954984039068222, + -0.031379684805870056, + 0.0021127359941601753, + 0.000109316453745123, + -0.034065354615449905, + 0.014347475953400135, + 0.00951969064772129, + 0.061551567167043686, + -0.037727583199739456, + 0.021631790325045586, + 0.05176432803273201, + 0.05732456222176552, + 0.020235802978277206, + 0.01329760067164898, + 0.013666498474776745, + 0.04498458653688431, + -0.06384360045194626, + -0.06752067804336548, + -0.05526985228061676, + 0.14988556504249573, + -0.02114933170378208, + 0.02294176071882248, + -0.008356761187314987, + 0.040335699915885925, + 0.016594426706433296, + -0.032125554978847504, + 0.026930853724479675, + -0.00235534505918622, + -0.09451495856046677, + -0.05835748091340065, + 0.038771793246269226, + -0.01969357766211033, + -0.02773466892540455, + -0.01881842315196991, + -0.06998491287231445, + -0.034690309315919876, + 0.08148280531167984, + -0.027132801711559296, + -0.04525432363152504, + -0.08583419770002365, + -0.07756415009498596, + 0.08150588721036911, + 0.09793213754892349, + 0.009753418155014515, + -0.0010558034991845489, + 0.050713006407022476, + -0.022110573947429657, + 0.00834092777222395, + 0.036319516599178314, + -0.06924788653850555, + 0.09016616642475128, + 0.02651338465511799, + 0.028696944937109947, + -0.044887837022542953, + 0.05581400915980339, + 0.04008432477712631, + -0.03363056108355522, + -0.02249099127948284, + 0.004528889432549477, + 0.016303041949868202, + 0.011280616745352745, + -0.009987188503146172, + -0.05503925681114197, + 0.07334040105342865, + -0.017531435936689377, + -0.03138395771384239, + -0.07887916266918182, + -0.10708153247833252, + -0.073928102850914, + -0.03864578157663345, + 0.05978808552026749, + 0.0701737031340599, + 0.030623214319348335, + -0.009645641781389713, + 0.0468156598508358, + -0.016361087560653687, + -0.08456116169691086, + -0.03912223130464554, + -0.02076558582484722, + -0.019914252683520317, + -0.009585217572748661, + 0.016036154702305794, + 0.038362178951501846, + 0.05300296097993851, + 0.03331087902188301, + -0.0817839577794075, + 0.05650731176137924, + 0.014688050374388695, + -0.01514789555221796, + -0.0056793540716171265, + -0.0054445089772343636, + -0.001981615088880062, + -0.06470060348510742, + -0.033136602491140366, + -0.027574831619858742, + -0.042143914848566055, + 0.03302338719367981, + -0.0313284806907177, + -0.08122451603412628, + 0.010870659723877907, + -0.01584681123495102, + 0.05792638286948204, + 0.014226056635379791, + -0.09321870654821396, + 0.009647680446505547, + 0.13137076795101166, + 0.10100917518138885, + 0.1036495789885521, + 0.016262536868453026, + 0.0062253838405013084, + -0.06275239586830139, + -0.014770777896046638, + 0.03525518998503685, + 0.05517430976033211, + -2.5944591119678027e-33, + 0.0404747873544693, + 0.004535221494734287, + -0.05864572525024414, + 0.10819463431835175, + 0.0868503600358963, + 0.010668283328413963, + -0.07501403242349625, + -0.015582945197820663, + -0.00024641340132802725, + 0.05141055956482887, + -0.0018811776535585523, + 0.016217269003391266, + -0.036875031888484955, + 0.011949962005019188, + 0.029012052342295647, + -0.04645721986889839, + 0.08012153953313828, + 0.05554083362221718, + -0.03450526297092438, + -0.04373503476381302, + -0.06630673259496689, + 0.05233102664351463, + -0.07544659078121185, + 0.009174862876534462, + 0.014070143923163414, + 0.014718283899128437, + 0.04974506050348282, + -0.012667338363826275, + -0.04908695071935654, + 0.03728807717561722, + 0.09079676866531372, + -0.046749573200941086, + -0.007411169819533825, + 0.03185538575053215, + 0.0566372312605381, + -0.028303878381848335, + -0.0007582048419862986, + -0.014547633938491344, + 0.02577684260904789, + -0.03675781562924385, + -0.13343599438667297, + -0.053746841847896576, + -0.02962569333612919, + -0.05663517117500305, + 0.063390351831913, + 0.024830764159560204, + -0.026427006348967552, + 0.04773113876581192, + -0.027658285573124886, + 0.04010145366191864, + 0.008387269452214241, + 0.03224142640829086, + -0.009386874735355377, + -0.08832874894142151, + -0.004828025121241808, + 0.01828327775001526, + 0.014261160977184772, + 0.06297136098146439, + -0.029899585992097855, + 0.04668600112199783, + 0.013735638000071049, + 0.052440181374549866, + 0.03157207369804382, + -0.044939134269952774, + -0.06279293447732925, + 0.11028535664081573, + -0.06446435302495956, + -0.021376991644501686, + 0.09025968611240387, + 0.0320056788623333, + -0.008708967827260494, + 0.03056810051202774, + 0.050051845610141754, + 0.00690075196325779, + -0.0032616429962217808, + 0.023320358246564865, + 0.08692396432161331, + -0.05258604884147644, + -0.08241356164216995, + -0.024563606828451157, + -0.07470948994159698, + -0.03224195912480354, + -0.018384190276265144, + 0.012945981696248055, + 0.035114724189043045, + -0.042062047868967056, + 0.05822885408997536, + -0.03097112849354744, + -0.03726077079772949, + 0.013432423584163189, + -0.04667002335190773, + -0.03834417089819908, + 0.011483541689813137, + -0.03981660306453705, + -0.11832825839519501, + 1.3447427621376497e-33, + 0.044840678572654724, + -0.04651816934347153, + -0.03200668469071388, + -0.031283486634492874, + 0.031927067786455154, + -0.008026093244552612, + 0.011810577474534512, + 0.0444527305662632, + 0.045004818588495255, + 0.06587681174278259, + 0.02754354104399681, + 0.019247889518737793, + -0.09592621773481369, + -0.06927300989627838, + -0.016815871000289917, + 0.04566001147031784, + 0.10973060876131058, + -0.00023127479653339833, + 0.013937799260020256, + 0.05006180331110954, + 0.003495374694466591, + 0.011446105316281319, + -0.15648674964904785, + -0.014785796403884888, + 0.03253800421953201, + 0.03779938817024231, + 0.035099096596241, + 0.0050244866870343685, + -0.020455602556467056, + 0.013398976065218449, + -0.051177673041820526, + -0.07179680466651917, + 0.0376003235578537, + 0.0686957910656929, + -0.05666688084602356, + 0.0344327948987484, + 0.09548501670360565, + -0.07178115099668503, + -0.09515275061130524, + -0.056354474276304245, + 0.013051346875727177, + -0.029002191498875618, + 0.018630193546414375, + -0.0019339113496243954, + -0.05231017619371414, + 0.06992636620998383, + -0.049171146005392075, + -0.009287627413868904, + -0.10237210243940353, + 0.027489935979247093, + 0.04687881842255592, + -0.09831710904836655, + 0.027765056118369102, + 0.03228658065199852, + -0.03765164688229561, + -0.011136556044220924, + 0.019098840653896332, + -0.03468717262148857, + 0.022518228739500046, + 0.08135847002267838, + -0.025277255102992058, + -0.00018468586495146155, + -0.03206111863255501, + 0.02273651584982872, + 0.024273458868265152, + -0.003951979335397482, + -0.018063396215438843, + -0.060051172971725464, + -0.0670221596956253, + -0.039693936705589294, + 0.0934356302022934, + 0.007786114234477282, + -0.06172628328204155, + 0.007249826565384865, + -0.0522775799036026, + -0.011445902287960052, + 0.012682038359344006, + 0.02147284708917141, + -0.07853297889232635, + 0.007948528975248337, + -0.03593907505273819, + -0.015956822782754898, + 0.007599818520247936, + 0.06596675515174866, + -0.08585089445114136, + 0.00578678073361516, + 0.06899213790893555, + 0.05061127617955208, + 0.018572509288787842, + 0.007761239539831877, + -0.02184935286641121, + 0.12535633146762848, + -0.032363664358854294, + 0.15737390518188477, + 0.017501436173915863, + -2.1402355443456145e-08, + -0.018419265747070312, + -0.0024561635218560696, + 0.02181239053606987, + -0.10353108495473862, + 0.025386566296219826, + -0.07200140506029129, + 0.009437577798962593, + -0.030299223959445953, + -0.02675575204193592, + -0.03629704937338829, + 0.047850653529167175, + 0.007396428380161524, + -0.03730816766619682, + -0.05098145455121994, + 0.07440979033708572, + -0.023974167183041573, + -0.00595891522243619, + 0.023023076355457306, + -0.051383595913648605, + -0.08131031692028046, + 0.08996644616127014, + 0.02487354353070259, + 0.02936444617807865, + -0.01687800884246826, + -0.004485863260924816, + 0.03331243246793747, + -0.08060099929571152, + 0.03573869168758392, + 0.11480392515659332, + 0.07265763729810715, + 0.03674822300672531, + 0.0764564499258995, + 0.025032341480255127, + 0.03969569876790047, + -0.09525194764137268, + -0.040013737976551056, + -0.07554313540458679, + 0.015397914685308933, + 0.020569533109664917, + 0.09250810742378235, + 0.04789198935031891, + -0.13048036396503448, + -0.044129397720098495, + 0.026145808398723602, + 0.040894895792007446, + -0.026888776570558548, + -0.014221900142729282, + -0.10838225483894348, + -0.06077931448817253, + -0.10268639028072357, + -0.0021865812595933676, + 0.01531730592250824, + 0.09148379415273666, + 0.03147902339696884, + -0.020766116678714752, + 0.03209410235285759, + 0.07365774363279343, + -0.03309088200330734, + 0.01028342917561531, + 0.037674643099308014, + 0.033402230590581894, + 0.08538943529129028, + 0.003360383678227663, + 0.0021399976685643196 + ], + "hourglass-simple-high-bold||times,timer,alarms,clock,schedule,events,waiting,progress": [ + 0.029001597315073013, + 0.018651636317372322, + 0.006961754057556391, + -0.010258981958031654, + -0.023649394512176514, + 0.0024640141054987907, + 0.08177649974822998, + -0.028307795524597168, + -0.0077229333110153675, + -0.024494141340255737, + -0.03909223526716232, + -0.01932339556515217, + -0.011693277396261692, + 0.050980620086193085, + -0.02912472002208233, + 0.0021055969409644604, + 0.032331306487321854, + -0.029258698225021362, + 0.010048678144812584, + 0.006006018258631229, + 0.04981783777475357, + -0.04377669841051102, + 0.01717638596892357, + 0.06316472589969635, + 0.05792411416769028, + 0.009924443438649178, + 0.0009289149893447757, + 0.013061978854238987, + 0.021263115108013153, + -0.06446805596351624, + -0.07239457964897156, + -0.0372130423784256, + 0.15876245498657227, + -0.026114514097571373, + 0.0069506666623055935, + -0.002653553383424878, + 0.0359688401222229, + 0.0046752686612308025, + -0.03069516457617283, + 0.02595462277531624, + -0.008148199878633022, + -0.09696009010076523, + -0.040705058723688126, + 0.04795331507921219, + -0.02067899890244007, + -0.02694351226091385, + -0.006437284406274557, + -0.06354989856481552, + -0.04869477078318596, + 0.07466186583042145, + -0.038118813186883926, + -0.0404912605881691, + -0.07355712354183197, + -0.06966535747051239, + 0.08133073896169662, + 0.09703946858644485, + 0.010000851936638355, + 0.0002817119238898158, + 0.058203354477882385, + -0.018354644998908043, + -0.007685236167162657, + 0.038054682314395905, + -0.07511038333177567, + 0.09124521166086197, + 0.02788221277296543, + 0.027442244812846184, + -0.047551918774843216, + 0.045853085815906525, + 0.0380854606628418, + -0.02743879146873951, + -0.015407557599246502, + 0.004078590776771307, + 0.013969890773296356, + 0.0172248687595129, + -0.0068044099025428295, + -0.06955662369728088, + 0.06764870882034302, + -0.027600592002272606, + -0.02348393015563488, + -0.07910487800836563, + -0.09016142040491104, + -0.0607323981821537, + -0.044993385672569275, + 0.045898061245679855, + 0.06349937617778778, + 0.02352009154856205, + -0.001662090071476996, + 0.051616519689559937, + -0.03069944679737091, + -0.09185242652893066, + -0.032783642411231995, + -0.020972367376089096, + -0.018706751987338066, + -0.008876239880919456, + 0.007494411896914244, + 0.03166980668902397, + 0.05654419958591461, + 0.00909677054733038, + -0.0769537016749382, + 0.06187659874558449, + 0.02767019532620907, + -0.02813681960105896, + -0.009946235455572605, + 0.0038448104169219732, + -0.0030423300340771675, + -0.07336601614952087, + -0.02430460974574089, + -0.0011968114413321018, + -0.03919088840484619, + 0.03368517756462097, + -0.0396796353161335, + -0.0813014954328537, + 0.010843212716281414, + -0.02291356399655342, + 0.05239146575331688, + 0.015015104785561562, + -0.09038443863391876, + 0.007537235505878925, + 0.11457648128271103, + 0.09666553884744644, + 0.09650404006242752, + 0.012075735256075859, + 0.011486039496958256, + -0.07133861631155014, + -0.013711108826100826, + 0.04065104201436043, + 0.047280844300985336, + -2.883736884103644e-33, + 0.04025644063949585, + 0.016817230731248856, + -0.05814680457115173, + 0.10271943360567093, + 0.08567145466804504, + -0.004572547972202301, + -0.08489551395177841, + -0.024145115166902542, + 0.005965123884379864, + 0.07009859383106232, + -0.008846450597047806, + 0.04128070920705795, + -0.04550347104668617, + 0.03659776970744133, + 0.037416934967041016, + -0.05301051586866379, + 0.07250379770994186, + 0.06441830098628998, + -0.03397953137755394, + -0.04085257649421692, + -0.08055243641138077, + 0.05447220802307129, + -0.06476174294948578, + 0.007627006620168686, + 0.02199045941233635, + 0.0017077750526368618, + 0.04281425103545189, + -0.02405613288283348, + -0.042934589087963104, + 0.04145437479019165, + 0.09360834211111069, + -0.05310604348778725, + 0.005921457894146442, + 0.020958974957466125, + 0.04081941023468971, + -0.02994958870112896, + -0.007613193243741989, + -0.024516109377145767, + 0.024818407371640205, + -0.030982133001089096, + -0.12706176936626434, + -0.045445144176483154, + -0.022869175300002098, + -0.03839385509490967, + 0.07335492223501205, + 0.03797866404056549, + -0.02834354341030121, + 0.044965263456106186, + -0.04767121747136116, + 0.0478128120303154, + 0.00017724887584336102, + 0.018064109608530998, + -0.004666214343160391, + -0.08703138679265976, + -0.018473047763109207, + 0.03293643519282341, + 0.02896595560014248, + 0.0490671806037426, + -0.03421427682042122, + 0.06482727080583572, + 0.020058637484908104, + 0.053506217896938324, + 0.02356233075261116, + -0.0410897321999073, + -0.06228245794773102, + 0.09001751244068146, + -0.05670400336384773, + -0.021635649725794792, + 0.0852457731962204, + 0.04473753646016121, + 0.0026589364279061556, + 0.02230984903872013, + 0.05766923725605011, + 0.012390801683068275, + -0.005134088918566704, + 0.03227905184030533, + 0.09010720252990723, + -0.043312352150678635, + -0.07516904920339584, + -0.022311275824904442, + -0.07883024960756302, + -0.04009253904223442, + -0.013194619677960873, + -0.004555507563054562, + 0.02051461488008499, + -0.038455601781606674, + 0.041973184794187546, + -0.04189899191260338, + -0.047327619045972824, + 0.0202074833214283, + -0.049803510308265686, + -0.026212798431515694, + 0.027828874066472054, + -0.044432371854782104, + -0.12087608873844147, + 1.8643397342049098e-33, + 0.040747836232185364, + -0.046924982219934464, + -0.026074020192027092, + -0.017992697656154633, + 0.037169959396123886, + -5.58740139240399e-05, + -0.003259618068113923, + 0.05079204589128494, + 0.030618933960795403, + 0.05980603024363518, + 0.03209356218576431, + 0.006779479794204235, + -0.07562199234962463, + -0.07016615569591522, + -0.0060787866823375225, + 0.026927607133984566, + 0.1189982146024704, + -0.0041798935271799564, + 0.017607292160391808, + 0.054539285600185394, + 0.02003769762814045, + 0.006950614973902702, + -0.1616426259279251, + -0.016619088128209114, + 0.029792025685310364, + 0.03396466746926308, + 0.014459734782576561, + -0.0014463532716035843, + -0.020787127315998077, + 0.014734091237187386, + -0.07148271054029465, + -0.07876402139663696, + 0.05092316120862961, + 0.06975006312131882, + -0.06326616555452347, + 0.04206924885511398, + 0.10757165402173996, + -0.07271251827478409, + -0.10996218770742416, + -0.0619780458509922, + 0.008054457604885101, + -0.02880048006772995, + 0.030126653611660004, + 0.0008320685010403395, + -0.04789924621582031, + 0.07303021103143692, + -0.08097849786281586, + -0.007921054027974606, + -0.09084075689315796, + 0.03267734497785568, + 0.036763496696949005, + -0.09722685813903809, + 0.03546794876456261, + 0.04660983011126518, + -0.040482573211193085, + -0.024557312950491905, + 0.0054991887882351875, + -0.033635400235652924, + 0.011601734906435013, + 0.07851451635360718, + -0.003707231255248189, + -0.003555910661816597, + -0.04636823385953903, + 0.0317157581448555, + 0.026924172416329384, + 0.00046189798740670085, + -0.01438581757247448, + -0.06450679898262024, + -0.0727967619895935, + -0.028190916404128075, + 0.08990942686796188, + 0.0011986715253442526, + -0.05554254353046417, + 0.008987820707261562, + -0.061972759664058685, + -0.02573615312576294, + 0.007890571840107441, + 0.022771382704377174, + -0.0680273249745369, + 0.0019030486000701785, + -0.03639380633831024, + -0.008119727484881878, + 0.004816148430109024, + 0.08231643587350845, + -0.08936057239770889, + 0.004815174266695976, + 0.05411520227789879, + 0.04866120591759682, + 0.03171375021338463, + 0.011522091925144196, + -0.017393775284290314, + 0.1199108213186264, + -0.053663890808820724, + 0.1507510095834732, + 0.021568521857261658, + -2.2473521710253408e-08, + -0.00434465566650033, + 0.0008130710339173675, + 0.019085735082626343, + -0.10864037275314331, + 0.03346569836139679, + -0.07409975677728653, + 0.013876643031835556, + -0.006792317610234022, + -0.018337732180953026, + -0.040635935962200165, + 0.03942973539233208, + 0.006230933591723442, + -0.03300798311829567, + -0.056433357298374176, + 0.0950625017285347, + -0.030421825125813484, + -0.005380806978791952, + 0.042241692543029785, + -0.051104478538036346, + -0.08744505792856216, + 0.09685491770505905, + 0.03891179710626602, + 0.04435044527053833, + -0.023481760174036026, + -0.002917391946539283, + 0.03350783884525299, + -0.07835135608911514, + 0.047268036752939224, + 0.10962750017642975, + 0.06857157498598099, + 0.029098790138959885, + 0.0767054632306099, + 0.004613096360117197, + 0.02007264457643032, + -0.07964914292097092, + -0.02465721219778061, + -0.0887928456068039, + 0.013332702219486237, + 0.018269158899784088, + 0.07720169425010681, + 0.0422651544213295, + -0.13018031418323517, + -0.0406348742544651, + 0.02986159175634384, + 0.04870455339550972, + -0.03168372064828873, + -0.01340231578797102, + -0.09606572985649109, + -0.044039856642484665, + -0.09560764580965042, + 0.008098887279629707, + 0.029914315789937973, + 0.09954728186130524, + 0.025229336693882942, + -0.0253503005951643, + 0.043176356703042984, + 0.06490792334079742, + -0.028193820267915726, + 0.00022761909349355847, + 0.02545231766998768, + 0.07850334793329239, + 0.08079737424850464, + -0.011148207820951939, + 0.018824119120836258 + ], + "hourglass-simple-low-bold||times,timer,alarms,clock,schedule,events,waiting,progress": [ + 0.039237093180418015, + 0.026913806796073914, + 0.007181746419519186, + -0.0022136960178613663, + -0.018831806257367134, + 0.003811293514445424, + 0.07454843074083328, + -0.024291036650538445, + -0.0017692967085167766, + -0.027141505852341652, + -0.03347819671034813, + -0.03174996003508568, + -0.006704262457787991, + 0.05739257112145424, + -0.03470243141055107, + 0.005921900738030672, + 0.030054761096835136, + -0.023935668170452118, + 0.009415380656719208, + 0.009302309714257717, + 0.04681851714849472, + -0.04257964715361595, + 0.014551154337823391, + 0.051654085516929626, + 0.0537133626639843, + 0.0040376256220042706, + 0.0027355102356523275, + 0.007159703876823187, + 0.03141621872782707, + -0.0622837208211422, + -0.07074376195669174, + -0.04587035998702049, + 0.1646454632282257, + -0.02682921662926674, + 0.017266007140278816, + -0.009473217651247978, + 0.051455799490213394, + 0.01653086394071579, + -0.031944405287504196, + 0.030956752598285675, + -0.005496119614690542, + -0.08868206292390823, + -0.05441147834062576, + 0.04918424412608147, + -0.022503992542624474, + -0.028565427288413048, + -0.01127624697983265, + -0.06807836890220642, + -0.05665328726172447, + 0.07092832773923874, + -0.03195603936910629, + -0.03214015066623688, + -0.08579664677381516, + -0.06895646452903748, + 0.07985000312328339, + 0.09359531849622726, + 0.003833555616438389, + 0.0015264310641214252, + 0.05463658645749092, + -0.022845257073640823, + 0.008512708358466625, + 0.027041219174861908, + -0.08002061396837234, + 0.08600690960884094, + 0.026463041082024574, + 0.031746987253427505, + -0.047196146100759506, + 0.04406611993908882, + 0.04284907132387161, + -0.029546117410063744, + -0.023128889501094818, + 0.0017325702356174588, + 0.014538532122969627, + 0.027497218921780586, + -0.020208606496453285, + -0.06339387595653534, + 0.07085052877664566, + -0.02356649562716484, + -0.027500314638018608, + -0.08065041154623032, + -0.09590103477239609, + -0.06598575413227081, + -0.053059227764606476, + 0.04106059670448303, + 0.05860838294029236, + 0.020865950733423233, + 0.0022992698941379786, + 0.05086706578731537, + -0.0277862586081028, + -0.08566287904977798, + -0.03339772671461105, + -0.01237665768712759, + -0.019446471706032753, + -0.012273073196411133, + 0.010134924203157425, + 0.03290921449661255, + 0.06636866182088852, + 0.022189248353242874, + -0.08208508044481277, + 0.0701771005988121, + 0.0190962553024292, + -0.021846171468496323, + -0.011309990659356117, + -0.004851568024605513, + -0.005188153125345707, + -0.06829311698675156, + -0.0281174685806036, + -0.013162799179553986, + -0.04962242394685745, + 0.03155161067843437, + -0.031150145456194878, + -0.08092326670885086, + 0.009685946628451347, + -0.029454831033945084, + 0.05122524872422218, + 0.00836670771241188, + -0.09431231021881104, + 0.013369637541472912, + 0.11485143005847931, + 0.10915352404117584, + 0.09089316427707672, + 0.010676223784685135, + 0.006942031905055046, + -0.06614230573177338, + -0.013931910507380962, + 0.046567402780056, + 0.036680806428194046, + -2.7802281780290106e-33, + 0.05021816864609718, + 0.006858279928565025, + -0.061815083026885986, + 0.09416739642620087, + 0.088742196559906, + 0.0030329839792102575, + -0.08404339104890823, + -0.030372606590390205, + 0.010148778557777405, + 0.07278258353471756, + -0.00019735841488000005, + 0.031520359218120575, + -0.04254749044775963, + 0.02281922474503517, + 0.041483502835035324, + -0.05561783164739609, + 0.07842300087213516, + 0.054688356816768646, + -0.020586112514138222, + -0.03906095772981644, + -0.07801166921854019, + 0.0548032745718956, + -0.06677927821874619, + 0.009207252413034439, + 0.024257030338048935, + 0.002505666809156537, + 0.04797733947634697, + -0.030878454446792603, + -0.04651035740971565, + 0.03956693410873413, + 0.08392012119293213, + -0.05022389441728592, + 0.00460567232221365, + 0.01623014733195305, + 0.05177048221230507, + -0.0317128486931324, + -0.01343540195375681, + -0.018963174894452095, + 0.020008046180009842, + -0.0391993373632431, + -0.1294354647397995, + -0.04975719004869461, + -0.030727572739124298, + -0.05208662524819374, + 0.07433725148439407, + 0.02175259403884411, + -0.015670163556933403, + 0.040613070130348206, + -0.0434095598757267, + 0.0468980073928833, + 0.006042621098458767, + 0.02201145887374878, + -0.012456481344997883, + -0.08511624485254288, + -0.010086511261761189, + 0.028138168156147003, + 0.023719269782304764, + 0.043568722903728485, + -0.04125002399086952, + 0.06501106917858124, + 0.020209526643157005, + 0.053366344422101974, + 0.023053795099258423, + -0.053161781281232834, + -0.05442582815885544, + 0.09084732830524445, + -0.061023615300655365, + -0.03241932392120361, + 0.07872074097394943, + 0.03273163363337517, + -0.0007337426068261266, + 0.026171814650297165, + 0.060609642416238785, + 0.0120159350335598, + 0.005672747269272804, + 0.036552734673023224, + 0.09707006812095642, + -0.05220933258533478, + -0.07675497978925705, + -0.02778606303036213, + -0.06608772277832031, + -0.0356803759932518, + -0.01709449291229248, + 0.004384866449981928, + 0.02698471210896969, + -0.04103817790746689, + 0.04858877882361412, + -0.024025052785873413, + -0.05188050866127014, + 0.01122569665312767, + -0.06023222208023071, + -0.03791463002562523, + 0.00906323455274105, + -0.03894951194524765, + -0.11239803582429886, + 1.6920581801224414e-33, + 0.03830299898982048, + -0.04560814052820206, + -0.025249602273106575, + -0.010443159379065037, + 0.03505294770002365, + -0.0017352771246805787, + 0.015587610192596912, + 0.046109914779663086, + 0.04659687355160713, + 0.07282422482967377, + 0.03241268917918205, + 0.013125952333211899, + -0.07320098578929901, + -0.0666302815079689, + -0.01010070089250803, + 0.03293319046497345, + 0.11289790272712708, + -0.00821397453546524, + 0.029835861176252365, + 0.05878198891878128, + 0.015322210267186165, + 0.024647951126098633, + -0.16213789582252502, + -0.013092904351651669, + 0.03708072006702423, + 0.03556293994188309, + 0.014356493949890137, + 0.005766304209828377, + -0.030039820820093155, + 0.006210682447999716, + -0.06252337992191315, + -0.06923086196184158, + 0.05617768317461014, + 0.061461564153432846, + -0.06434209644794464, + 0.04017852246761322, + 0.10112618654966354, + -0.06660827249288559, + -0.10890215635299683, + -0.060915835201740265, + 0.011520200408995152, + -0.018893565982580185, + 0.024802155792713165, + -0.004583390429615974, + -0.055983345955610275, + 0.07020705193281174, + -0.07503171265125275, + -0.011222812347114086, + -0.0931277945637703, + 0.024818794801831245, + 0.037620965391397476, + -0.10213112831115723, + 0.03013579733669758, + 0.055051594972610474, + -0.03561399132013321, + -0.022410746663808823, + 0.00963867548853159, + -0.028305944055318832, + 0.0215284526348114, + 0.09110062569379807, + -0.013226703740656376, + -0.006736017297953367, + -0.03459450602531433, + 0.02325308695435524, + 0.02656063251197338, + 0.0013567751739174128, + -0.015112913213670254, + -0.05228963494300842, + -0.07274468243122101, + -0.03782908618450165, + 0.10016456991434097, + 0.005769365932792425, + -0.053448211401700974, + -0.00265986449085176, + -0.05583975836634636, + -0.02272181771695614, + 0.0025765057653188705, + 0.020652107894420624, + -0.07293801009654999, + 0.0066492618061602116, + -0.03607505187392235, + -0.010978157632052898, + 0.00395266804844141, + 0.07877334207296371, + -0.083676278591156, + 0.009392263367772102, + 0.054776210337877274, + 0.04437582194805145, + 0.025394868105649948, + 0.02124047838151455, + -0.024071918800473213, + 0.12370619922876358, + -0.030830269679427147, + 0.15763679146766663, + 0.018053244799375534, + -2.2503733987377927e-08, + -0.009262745268642902, + -0.00455046072602272, + 0.030986608937382698, + -0.10485471785068512, + 0.03670980781316757, + -0.07350778579711914, + 0.00841625314205885, + -0.019397564232349396, + -0.01766248792409897, + -0.03329677879810333, + 0.04542410746216774, + 0.0053492882288992405, + -0.0409030020236969, + -0.058250173926353455, + 0.09371168166399002, + -0.021736890077590942, + -0.002284266520291567, + 0.03463713824748993, + -0.052328288555145264, + -0.09042774140834808, + 0.09690435230731964, + 0.03519706055521965, + 0.03427235782146454, + -0.02263178490102291, + 0.0015661383513361216, + 0.022008465602993965, + -0.06478963047266006, + 0.03987164795398712, + 0.11068625748157501, + 0.058774467557668686, + 0.029962820932269096, + 0.08361797034740448, + 0.01699085719883442, + 0.015914330258965492, + -0.08704262226819992, + -0.017905712127685547, + -0.0852074921131134, + 0.019658491015434265, + 0.01021619699895382, + 0.08211399614810944, + 0.04049719497561455, + -0.13293316960334778, + -0.04560720548033714, + 0.027103843167424202, + 0.041195835918188095, + -0.03448474779725075, + -0.01770656369626522, + -0.10192091017961502, + -0.046729594469070435, + -0.09311865270137787, + 0.014667181298136711, + 0.027152132242918015, + 0.09346307069063187, + 0.028680654242634773, + -0.030391093343496323, + 0.044369667768478394, + 0.06973592191934586, + -0.029159212484955788, + -0.001875789137557149, + 0.02537648379802704, + 0.057727884501218796, + 0.08385065197944641, + -0.00672954460605979, + 0.007948515005409718 + ], + "hourglass-simple-medium-bold||times,timer,alarms,clock,schedule,events,waiting,progress": [ + 0.04421424865722656, + 0.01392937358468771, + 0.006262754090130329, + 0.0010327260242775083, + -0.00399614404886961, + 0.007401162758469582, + 0.07761547714471817, + -0.030329080298542976, + -0.01473319809883833, + -0.018488256260752678, + -0.031205231323838234, + -0.036360614001750946, + -0.010685563087463379, + 0.0627361387014389, + -0.03657935932278633, + -0.00289313611574471, + 0.021601393818855286, + -0.032697644084692, + 0.010997537523508072, + 0.011010618880391121, + 0.0522947832942009, + -0.035105906426906586, + 0.014876882545650005, + 0.04238029941916466, + 0.060100093483924866, + 0.011425171047449112, + -0.011503394693136215, + 0.007783790118992329, + 0.034682173281908035, + -0.06845515966415405, + -0.07404625415802002, + -0.030509961768984795, + 0.15426813066005707, + -0.016530171036720276, + 0.01671469956636429, + -0.010458960197865963, + 0.03833581134676933, + 0.005028668791055679, + -0.037777360528707504, + 0.031059011816978455, + -0.0035627312026917934, + -0.10522637516260147, + -0.04915948584675789, + 0.048755235970020294, + -0.02705206722021103, + -0.023580795153975487, + -0.013103672303259373, + -0.05239259824156761, + -0.05647417530417442, + 0.08201294392347336, + -0.03485310077667236, + -0.04519473761320114, + -0.09167803823947906, + -0.05499890819191933, + 0.07475119084119797, + 0.09035442024469376, + 0.00994203146547079, + 0.013076133094727993, + 0.05018501356244087, + -0.024630878120660782, + -0.0066109150648117065, + 0.03077748417854309, + -0.07922208309173584, + 0.09553336352109909, + 0.03098204731941223, + 0.03524996340274811, + -0.05098939314484596, + 0.06563333421945572, + 0.03577357530593872, + -0.03622709587216377, + -0.004900339990854263, + 0.005931115709245205, + 0.011200406588613987, + 0.03284068405628204, + 0.0030294102616608143, + -0.07842046767473221, + 0.07210426777601242, + -0.020978771150112152, + -0.03423749655485153, + -0.0643288865685463, + -0.10235507786273956, + -0.05588303878903389, + -0.04507162421941757, + 0.041235439479351044, + 0.06003102287650108, + 0.026551244780421257, + -0.0048668719828128815, + 0.05062361806631088, + -0.019934045150876045, + -0.08892307430505753, + -0.039652690291404724, + -0.018743570894002914, + -0.03534757345914841, + -0.017718158662319183, + 0.02629925310611725, + 0.02704385668039322, + 0.04968704283237457, + 0.014394795522093773, + -0.06536594033241272, + 0.05197890102863312, + 0.021595237776637077, + -0.020989419892430305, + 0.002838980173692107, + -0.0059815580025315285, + -0.010557206347584724, + -0.08434208482503891, + -0.03168527036905289, + -0.010455363430082798, + -0.02627745270729065, + 0.028338097035884857, + -0.03272688761353493, + -0.07363058626651764, + 0.0067090243101119995, + -0.02346801944077015, + 0.07300439476966858, + 0.015617316588759422, + -0.09309463948011398, + 0.014292256906628609, + 0.13469424843788147, + 0.09553591161966324, + 0.09290175884962082, + 0.01987711898982525, + 0.007379858288913965, + -0.07373997569084167, + -0.018488718196749687, + 0.035658322274684906, + 0.056263528764247894, + -2.9275020081526963e-33, + 0.03442353010177612, + 0.005468752235174179, + -0.06979696452617645, + 0.10713686048984528, + 0.08403792232275009, + 0.0018841031705960631, + -0.0714932531118393, + -0.027538374066352844, + 0.010663462802767754, + 0.049182355403900146, + -0.004311128053814173, + 0.05572786182165146, + -0.05534644052386284, + 0.029334373772144318, + 0.045933354645967484, + -0.04091516137123108, + 0.08465154469013214, + 0.07460352033376694, + -0.017992010340094566, + -0.039982158690690994, + -0.07208266854286194, + 0.0679326131939888, + -0.06647235155105591, + 0.01449586171656847, + 0.02156243473291397, + -0.007454782258719206, + 0.04738491773605347, + -0.02249917946755886, + -0.04928997531533241, + 0.03499525040388107, + 0.08358738571405411, + -0.04905080795288086, + 0.009861812926828861, + 0.017728865146636963, + 0.05301469564437866, + -0.025486495345830917, + -0.0030620398465543985, + -0.01803518831729889, + 0.03129693120718002, + -0.04925147444009781, + -0.11845514178276062, + -0.043726325035095215, + -0.033076778054237366, + -0.04821820557117462, + 0.05993541702628136, + 0.029675405472517014, + -0.027238622307777405, + 0.045954231172800064, + -0.03898858278989792, + 0.032103281468153, + 0.010937133803963661, + 0.015127359889447689, + 0.000878586433827877, + -0.09254211187362671, + 0.007836500182747841, + 0.033825233578681946, + 0.025239838287234306, + 0.04934592545032501, + -0.03958021476864815, + 0.05540475994348526, + 0.02937513217329979, + 0.0445406548678875, + 0.03602256625890732, + -0.045476581901311874, + -0.04453808814287186, + 0.09665586799383163, + -0.06893067061901093, + -0.02496088109910488, + 0.09113243222236633, + 0.0344964973628521, + -0.014354360289871693, + 0.02515019290149212, + 0.050545211881399155, + 0.02140161767601967, + 0.0003845693718176335, + 0.02737272158265114, + 0.08752872794866562, + -0.05670073255896568, + -0.08430629223585129, + -0.002643018262460828, + -0.09162824600934982, + -0.021619262173771858, + -0.03235088288784027, + 0.011280483566224575, + 0.007124160882085562, + -0.034794557839632034, + 0.05486297979950905, + -0.03595741093158722, + -0.05234818905591965, + 0.0019944566302001476, + -0.0666668489575386, + -0.02228880114853382, + 0.017323125153779984, + -0.037905339151620865, + -0.11711709946393967, + 1.5873208987802063e-33, + 0.022221041843295097, + -0.05441633611917496, + -0.041043058037757874, + 0.002954968949779868, + 0.041846953332424164, + -0.012318256311118603, + 0.005233769305050373, + 0.05459379777312279, + 0.05383766070008278, + 0.06024669483304024, + 0.025996051728725433, + -0.0054746391251683235, + -0.09691289067268372, + -0.0768851563334465, + -0.018032770603895187, + 0.03709859400987625, + 0.10290050506591797, + -0.002822514157742262, + 0.03108794242143631, + 0.06335107237100601, + 0.005821780301630497, + -0.006285353098064661, + -0.14714868366718292, + -0.007369384169578552, + 0.03286370635032654, + 0.030823616310954094, + 0.02675562910735607, + -0.000427057413617149, + -0.04235382005572319, + 0.008821130730211735, + -0.04986328259110451, + -0.08101595193147659, + 0.051120784133672714, + 0.06905372440814972, + -0.05289554223418236, + 0.03846391290426254, + 0.11368745565414429, + -0.07465339452028275, + -0.10938506573438644, + -0.059429410845041275, + 0.025594353675842285, + -0.02256537415087223, + 0.021762171760201454, + -0.010199147276580334, + -0.053554367274045944, + 0.06100161001086235, + -0.05931814759969711, + -0.036100149154663086, + -0.09886591881513596, + 0.019494595006108284, + 0.06529198586940765, + -0.09257683157920837, + 0.03575871139764786, + 0.023283623158931732, + -0.038087569177150726, + -0.014584364369511604, + 0.005340465810149908, + -0.02904808335006237, + 0.015013785101473331, + 0.07985807955265045, + -0.006218612659722567, + -0.011968937702476978, + -0.04137463867664337, + 0.017491448670625687, + 0.018325086683034897, + -0.006895020138472319, + -0.011994150467216969, + -0.06785369664430618, + -0.0923069417476654, + -0.02711484767496586, + 0.0971231684088707, + 0.009884126484394073, + -0.0578588992357254, + 0.012044290080666542, + -0.05820184201002121, + -0.03111296147108078, + 0.001340557006187737, + 0.013976657763123512, + -0.08642475306987762, + 0.00856767687946558, + -0.034886717796325684, + -0.005694002844393253, + -5.768684422946535e-05, + 0.06877516210079193, + -0.0754653811454773, + 0.0069015673361718655, + 0.06528232246637344, + 0.03393959254026413, + 0.026537537574768066, + 0.018530013039708138, + -0.01568375714123249, + 0.11266521364450455, + -0.04191838204860687, + 0.1456107199192047, + 0.007410524412989616, + -2.205827165369101e-08, + -0.008658486418426037, + -0.007560831028968096, + 0.016323057934641838, + -0.10025540739297867, + 0.02099156565964222, + -0.07591697573661804, + 0.009302336722612381, + -0.03231792151927948, + -0.012583372183144093, + -0.03467782959342003, + 0.042608872056007385, + -2.3168160623754375e-05, + -0.03816930949687958, + -0.037001244723796844, + 0.09551475197076797, + -0.024978788569569588, + 0.0009422241128049791, + 0.02432934008538723, + -0.05365035682916641, + -0.0856517031788826, + 0.10032178461551666, + 0.036154620349407196, + 0.025755316019058228, + -0.020047003403306007, + 0.005048184655606747, + 0.03339419141411781, + -0.06781032681465149, + 0.040425557643175125, + 0.11902125924825668, + 0.0757567286491394, + 0.02657758817076683, + 0.07528471946716309, + 0.009740605019032955, + 0.02644302137196064, + -0.1047094315290451, + -0.016549741849303246, + -0.07353959232568741, + 0.012864473275840282, + 0.011948587372899055, + 0.08581919968128204, + 0.04896120727062225, + -0.12461245805025101, + -0.039121247828006744, + 0.020795058459043503, + 0.049065493047237396, + -0.028217868879437447, + -0.009331820532679558, + -0.08279098570346832, + -0.04953794181346893, + -0.08895255625247955, + 0.01516089215874672, + 0.02939763478934765, + 0.09106975048780441, + 0.025950608775019646, + -0.020550040528178215, + 0.03892846778035164, + 0.07671253383159637, + -0.02464369125664234, + 0.014098427258431911, + 0.025970911607146263, + 0.04319126158952713, + 0.08206009119749069, + 0.008422051556408405, + 0.018134336918592453 + ], + "house-bold||homes,buildings,places,locations": [ + 0.08539269864559174, + -0.05461065471172333, + 0.0009010187932290137, + 0.04385805502533913, + 0.004731674678623676, + -0.029307475313544273, + -0.025631915777921677, + -0.08629931509494781, + -0.08586585521697998, + -0.012658479623496532, + 0.02033558301627636, + -0.0005418008076958358, + 0.06490585952997208, + -0.04741591215133667, + 0.027591878548264503, + 0.0038743012119084597, + 0.07232187688350677, + 0.048181090503931046, + 0.08528638631105423, + 0.015665465965867043, + 0.028418973088264465, + 0.05289078876376152, + 0.06444630026817322, + 0.04634076729416847, + 0.1138528510928154, + 0.04403705522418022, + 0.047015849500894547, + 0.05306437984108925, + -0.0032771520782262087, + -0.050523579120635986, + -0.00022290038759820163, + -0.005627810023725033, + 0.09036258608102798, + 0.017019284889101982, + 0.0779394879937172, + 0.029049737378954887, + 0.0045896125957369804, + 0.0004226962337270379, + 0.03804667666554451, + 0.02869807928800583, + 0.017001120373606682, + -0.0024061910808086395, + 0.08704936504364014, + -0.02485477924346924, + -0.05370756611227989, + -0.013916282914578915, + -0.036859821528196335, + -0.0692916139960289, + 0.034656327217817307, + 0.020673271268606186, + -0.025435972958803177, + 0.0036979829892516136, + -0.10631134361028671, + 0.03492656722664833, + 0.013607007451355457, + 0.05003367364406586, + -0.08479214459657669, + -0.010071644559502602, + 0.05112423747777939, + -0.01959385722875595, + 0.0986490473151207, + 0.027880873531103134, + -0.008236506953835487, + 0.04036616161465645, + 0.06025230512022972, + -0.03162848576903343, + -0.04647267609834671, + 0.07276353985071182, + 0.008675174787640572, + -0.06768832355737686, + 0.049801841378211975, + -0.0007868328830227256, + 0.039326637983322144, + -0.010122274048626423, + -0.032801561057567596, + -0.05680614337325096, + 0.021992243826389313, + -0.016394097357988358, + -0.07208755612373352, + -0.07048545777797699, + -0.05156471207737923, + -0.07007557898759842, + -0.03056551143527031, + 0.0125860795378685, + -0.04361500218510628, + 0.03582534193992615, + -0.07126591354608536, + -0.010269379243254662, + 0.012865191325545311, + -0.043171048164367676, + 0.00851732213050127, + -0.06817717105150223, + -0.027553023770451546, + 0.009644869714975357, + -0.06253324449062347, + -0.018455134704709053, + 0.014873337931931019, + -0.013981662690639496, + -0.03189026564359665, + 0.08069390803575516, + -0.002992207184433937, + -0.009108193218708038, + 0.03544895723462105, + 0.010065872222185135, + -0.05223039910197258, + -0.02115221880376339, + -0.05430819094181061, + 0.050369758158922195, + -0.0624103881418705, + -0.012506269849836826, + -0.051249805837869644, + -0.07540084421634674, + -0.019483555108308792, + -0.029442595317959785, + -0.013004736974835396, + -0.05122595652937889, + 0.02241334319114685, + -0.06321292370557785, + 0.11335841566324234, + -0.0019463470671325922, + -0.019095107913017273, + -0.04706509783864021, + 0.009632445871829987, + -0.05194810777902603, + -0.016045300289988518, + 0.033237624913454056, + 0.021789120510220528, + -2.368254693277239e-33, + 0.04393555968999863, + 0.02164255641400814, + -0.05609725043177605, + 0.12138735502958298, + 0.028717661276459694, + -0.024428190663456917, + -0.044068798422813416, + -0.007033411879092455, + -0.051870036870241165, + 0.08573099225759506, + 0.16159486770629883, + 0.008004060946404934, + -0.05001581460237503, + 0.03503306210041046, + 0.0511503666639328, + 0.04218534007668495, + -0.023273905739188194, + -0.021076666191220284, + -0.09415493160486221, + 0.009244544431567192, + -0.017355265095829964, + 0.07319621741771698, + -0.04943494871258736, + 0.014566315338015556, + -0.054304834455251694, + -0.14527522027492523, + 0.0354282520711422, + 0.010739250108599663, + -0.08617522567510605, + 0.044798023998737335, + 0.046710435301065445, + 0.04052169993519783, + 0.04507182165980339, + -0.014419006183743477, + -0.020504219457507133, + 0.04162517189979553, + -0.08695431053638458, + -0.09345094859600067, + -0.03161830082535744, + 0.029399987310171127, + -0.019786661490797997, + -0.02959948033094406, + 0.005508074536919594, + 0.07330457121133804, + 0.0777427926659584, + 0.1397177129983902, + -0.021299786865711212, + -0.0539560429751873, + 0.04720548167824745, + 0.029231030493974686, + -0.013234160840511322, + -0.01836526393890381, + -0.16305769979953766, + 0.03975341469049454, + 0.033282384276390076, + 0.03813057765364647, + -0.04207155108451843, + 0.029632994905114174, + 0.05916159227490425, + 0.012000888586044312, + 0.012799144722521305, + 0.020480580627918243, + 0.012432873249053955, + -0.034217219799757004, + -0.012749812565743923, + -0.004059755243360996, + 0.020234188064932823, + 0.04781007021665573, + 0.04099198430776596, + 0.020621782168745995, + 0.024976542219519615, + 0.001419405685737729, + 0.03916265442967415, + 0.012398110702633858, + 0.013822151347994804, + 0.05451374500989914, + -0.07319395244121552, + 0.024106208235025406, + -0.02907843329012394, + -0.010595682077109814, + -0.0918501615524292, + 0.0463121198117733, + -0.04350515455007553, + 0.191198468208313, + 0.061555035412311554, + -0.029558347538113594, + 0.03858030587434769, + -0.08898480236530304, + -0.05252135172486305, + 0.03809230774641037, + -0.0736946165561676, + 0.008430423215031624, + -0.004527331795543432, + -0.12515367567539215, + -0.11916445940732956, + -3.507217802082839e-34, + -0.017896044999361038, + -0.05540149658918381, + -0.031126387417316437, + -0.05037211999297142, + -0.053537674248218536, + 0.010603879578411579, + -0.07596313953399658, + 0.013388063758611679, + 0.07545429468154907, + 0.01051197201013565, + -0.08180125802755356, + -0.0025013298727571964, + 0.06323521584272385, + -0.038590703159570694, + -0.04895668476819992, + -0.005277379881590605, + 0.06887573003768921, + -0.018208375200629234, + -0.01865159533917904, + 0.06509501487016678, + -0.00034645365667529404, + -0.017016401514410973, + -0.10279658436775208, + 0.05612898990511894, + 0.015233422629535198, + 0.01970915123820305, + -0.08758522570133209, + -0.0012733093462884426, + -0.04808162897825241, + -0.03530837967991829, + -0.09603490680456161, + -0.06530928611755371, + 0.025312958285212517, + 0.09721657633781433, + -0.09080222994089127, + 0.09289764612913132, + 0.041298892349004745, + -0.04549747332930565, + -0.016076942905783653, + 0.006407621316611767, + 0.03223089501261711, + 0.011339130811393261, + 0.049383968114852905, + 0.048663027584552765, + -0.01822352036833763, + 0.022673165425658226, + -0.09939364343881607, + -0.03574391081929207, + -0.020641157403588295, + 0.05994776636362076, + 0.04071437567472458, + 0.05306767299771309, + -0.03032664582133293, + 0.02148517221212387, + -0.014281959272921085, + -0.015373465605080128, + 0.02857374958693981, + 0.016720537096261978, + -0.020162276923656464, + 0.13296836614608765, + -0.013098797760903835, + 0.08130249381065369, + -0.08405869454145432, + 0.10682442784309387, + -0.024003466591238976, + -0.03963938727974892, + -0.07140378654003143, + -0.04214734211564064, + 0.028066318482160568, + -0.0012139884056523442, + -0.04178754240274429, + -0.04100083187222481, + -0.020950715988874435, + 0.013177020475268364, + 0.0019514326704666018, + 0.0032941012177616358, + 0.06240092217922211, + 0.05631557106971741, + -0.004571118857711554, + 0.01244044117629528, + -0.014242574572563171, + -0.02244492806494236, + -0.09830126911401749, + 0.0841623917222023, + 0.016935167834162712, + 0.022899623960256577, + -0.0556977316737175, + -0.03207574039697647, + 0.06603745371103287, + 0.010619410313665867, + -0.03567633032798767, + 0.028685610741376877, + -0.06042055785655975, + -0.07206644117832184, + -0.030453654006123543, + -2.069876003929494e-08, + 0.037769120186567307, + 0.03391963243484497, + -0.02484274096786976, + 0.00029591270140372217, + -0.026189366355538368, + -0.05648435652256012, + 0.0954478532075882, + 0.023466255515813828, + -0.04812970757484436, + 0.051075272262096405, + -0.009396231733262539, + 0.0021972917020320892, + -0.03885035216808319, + -0.03383177891373634, + 0.00591131579130888, + -0.048607222735881805, + -0.0035234484821558, + 0.02363358438014984, + -0.046450961381196976, + 0.0007829057285562158, + 0.021738911047577858, + 0.03906489163637161, + 0.017562340945005417, + -0.006318933330476284, + -0.023128075525164604, + -0.02452171966433525, + -0.010697788558900356, + -0.03472542390227318, + 0.0568588562309742, + 0.03506729379296303, + 0.005032801069319248, + 0.0826469138264656, + -0.030919896438717842, + 0.03705070912837982, + -0.06272189319133759, + -0.00305577483959496, + -0.009831149131059647, + -0.01538744755089283, + -0.04750742390751839, + 0.02969626523554325, + -0.0027544465847313404, + -0.09933112561702728, + -0.034161798655986786, + -0.04325728490948677, + 0.019603950902819633, + 0.024498600512742996, + 0.07047456502914429, + -0.06248733028769493, + -0.022121896967291832, + -0.09833589196205139, + -0.0881476178765297, + -4.101356807950651e-06, + 0.0039355140179395676, + 0.021112047135829926, + -0.005827635060995817, + -0.0018543705809861422, + 0.0019713961519300938, + -0.009357954375445843, + 0.02971796691417694, + 0.0027963370084762573, + 0.13849344849586487, + 0.007000736892223358, + -0.03364503011107445, + 0.06517057120800018 + ], + "house-line-bold||*updated*,homes,buildings,places,locations": [ + -0.00023419696663040668, + -0.030255896970629692, + 0.013504449278116226, + 0.028462164103984833, + 0.006374555639922619, + -0.020493991672992706, + -0.02803565375506878, + -0.06375354528427124, + -0.08737695962190628, + -0.027234531939029694, + 0.006474414840340614, + 0.041663896292448044, + 0.011372688226401806, + -0.06837911903858185, + -0.012604252435266972, + 0.038567543029785156, + 0.028986919671297073, + 0.018127579241991043, + 0.036199960857629776, + 0.029167845845222473, + -0.01133039128035307, + 0.08961890637874603, + 0.025630095973610878, + 0.05723109841346741, + 0.09244058281183243, + 0.0537516288459301, + 0.04845911264419556, + 0.05259418487548828, + -0.04763016849756241, + -0.06870320439338684, + -0.04988004267215729, + 0.03201356157660484, + 0.09914182871580124, + 0.02392091229557991, + 0.09238684922456741, + 0.0022370065562427044, + 0.047216787934303284, + 0.014849263243377209, + 0.033349137753248215, + 0.036364149302244186, + 0.03573460876941681, + -0.06699838489294052, + 0.024713387712836266, + -0.002707313746213913, + -0.03880720213055611, + -0.0353693962097168, + -0.05624262988567352, + -0.07896699756383896, + 0.05190691351890564, + 0.030220072716474533, + -0.02406655065715313, + -0.02795560657978058, + -0.11750902235507965, + 0.026804840192198753, + 0.0045480080880224705, + 0.05340348184108734, + -0.0289560966193676, + -0.0017186172772198915, + 0.04894502833485603, + -0.010190777480602264, + 0.08734313398599625, + 0.03249009698629379, + -0.007332339882850647, + 0.05358255282044411, + 0.041686952114105225, + -0.026757769286632538, + -0.055398017168045044, + 0.07181275635957718, + 0.01401694305241108, + -0.06048790365457535, + 0.0092738913372159, + -0.0008262771880254149, + -0.000762208248488605, + -0.0406930036842823, + -0.00974133051931858, + -0.01760641485452652, + 0.034264497458934784, + 0.010139323770999908, + -0.015178868547081947, + -0.08742842078208923, + -0.044916845858097076, + -0.07887498289346695, + -0.03145585581660271, + 0.031197991222143173, + -0.011548066511750221, + 0.056305449455976486, + -0.047711171209812164, + -0.04072481021285057, + 0.041270505636930466, + -0.05888242647051811, + -0.008051262237131596, + -0.07605990767478943, + 0.01547614112496376, + 0.012087509967386723, + -0.14195670187473297, + 0.010588868521153927, + -0.01564815081655979, + -0.06815027445554733, + -0.05529556795954704, + 0.08798559755086899, + 0.020967332646250725, + 0.021938825026154518, + 0.03613269701600075, + 0.03600955009460449, + -0.04349501430988312, + -0.012125064618885517, + 0.0053024375811219215, + 0.07851502299308777, + -0.03888333588838577, + -0.005940500646829605, + -0.017109835520386696, + -0.10624507814645767, + -0.05088448524475098, + -0.08156861364841461, + -0.04775220528244972, + -0.06776463240385056, + 0.027279751375317574, + -0.04388292878866196, + 0.1152070164680481, + 0.029283734038472176, + 0.004516524262726307, + -0.06617502868175507, + -0.03365657851099968, + -0.042883068323135376, + -0.015132847242057323, + 0.03858461603522301, + 0.08757531642913818, + -2.4104859808694605e-33, + 0.03889884054660797, + 0.058719076216220856, + 0.012812737375497818, + 0.10832230001688004, + 0.061293765902519226, + -0.002643163315951824, + -0.11174400895833969, + -0.008409768342971802, + -0.04619021713733673, + 0.10439394414424896, + 0.11163116246461868, + -0.04508817195892334, + -0.03633686527609825, + 0.062061857432127, + 0.027803517878055573, + -0.03297777473926544, + -0.011071247048676014, + -0.030053909868001938, + -0.0609675869345665, + 0.06210627779364586, + -0.052487924695014954, + 0.029182031750679016, + -0.03614227473735809, + -0.020099902525544167, + 0.006046753842383623, + -0.11350546777248383, + 0.013338790275156498, + 0.04079359769821167, + -0.05993200093507767, + 0.03744792938232422, + 0.06764199584722519, + 0.020449236035346985, + 0.06778094917535782, + -0.006159018725156784, + -0.08007185906171799, + 0.040241532027721405, + -0.10062690079212189, + -0.10657192766666412, + -0.039378099143505096, + 0.024442190304398537, + -0.030914844945073128, + -0.020792221650481224, + -0.011441157199442387, + 0.040883466601371765, + 0.09152992069721222, + 0.11707349866628647, + -0.020297477021813393, + -0.04626166447997093, + 0.0420735664665699, + 0.050404515117406845, + -0.05487266555428505, + 0.029568340629339218, + -0.1293463110923767, + 0.019081229344010353, + 0.03128964826464653, + -0.009323007427155972, + -0.02797011472284794, + 0.038742922246456146, + 0.06016514450311661, + -0.0190868116915226, + 0.044659510254859924, + -0.008291646838188171, + -0.01013953611254692, + -0.012585796415805817, + 0.007199798244982958, + 0.0002756399044301361, + 0.023597629740834236, + 0.03256438672542572, + 0.03845134377479553, + 0.03055708110332489, + -0.036387328058481216, + 8.435697964159772e-05, + 0.05432981625199318, + 0.06612983345985413, + -0.004974871873855591, + 0.006848270073533058, + -0.1254086047410965, + 0.029654303565621376, + 0.043440673500299454, + -0.027584334835410118, + -0.07325945049524307, + 0.0143481669947505, + -0.0321739986538887, + 0.15043336153030396, + 0.11257732659578323, + -0.03366445004940033, + 0.04547669738531113, + -0.09085948765277863, + -0.05993228405714035, + 0.0564064122736454, + -0.0828256607055664, + 0.02127302996814251, + -0.04611188545823097, + -0.05858897045254707, + -0.10203932225704193, + -8.066424987979891e-34, + -0.019331717863678932, + -0.02879961207509041, + -0.04989473521709442, + -0.030016057193279266, + -0.07410307228565216, + -0.0011471995385363698, + -0.046345293521881104, + 0.016530783846974373, + 0.12257593125104904, + 0.05216486006975174, + -0.021058592945337296, + 0.04116320610046387, + 0.030421677976846695, + -0.035655587911605835, + 0.004049890674650669, + 0.03255663067102432, + 0.03335481882095337, + -0.033479370176792145, + -0.02723275125026703, + 0.048605673015117645, + -0.024009454995393753, + -0.07139004021883011, + -0.0862526148557663, + 0.06793404370546341, + 0.0042210896499454975, + -0.0014974195510149002, + -0.012930269353091717, + -0.007993068546056747, + -0.04478209838271141, + -0.03084014728665352, + -0.12333272397518158, + -0.07064533978700638, + -0.006422772072255611, + 0.0983586460351944, + -0.09665031731128693, + 0.08821278810501099, + 0.0669659748673439, + -0.0022069562692195177, + -0.013013526797294617, + 0.020751476287841797, + 0.03265254199504852, + 0.03455256298184395, + 0.06449145823717117, + 0.006362969055771828, + -0.054840900003910065, + 0.022021541371941566, + -0.11135054379701614, + -0.009622847661376, + -0.06337147951126099, + 0.08647728711366653, + 0.02585371769964695, + 0.06718806177377701, + -0.05552646145224571, + 0.04480835795402527, + -0.037214554846286774, + 0.013235858641564846, + 0.000241354267927818, + 0.042051710188388824, + -0.04735349118709564, + 0.0859653577208519, + 0.0007491516298614442, + 0.05830753222107887, + -0.09222077578306198, + 0.07370232045650482, + 0.023694390431046486, + -0.037157874554395676, + -0.020384402945637703, + -0.07706734538078308, + 0.039779502898454666, + 0.019925003871321678, + 0.027847273275256157, + -0.02447506971657276, + -0.08061136305332184, + -0.008910218253731728, + -0.034413017332553864, + -0.02450069971382618, + 0.09849066287279129, + 0.030056454241275787, + -0.025263305753469467, + 0.01290841307491064, + 0.0192391499876976, + -0.012231871485710144, + -0.08423744887113571, + 0.08038778603076935, + 0.02440696395933628, + 0.006770405452698469, + -0.03503027930855751, + 0.03054163046181202, + 0.05628998950123787, + 0.014781225472688675, + -0.060102738440036774, + 0.028522556647658348, + -0.10484018176794052, + -0.03142610937356949, + -0.08062054961919785, + -2.281741195986342e-08, + 0.025984499603509903, + 0.020399171859025955, + -0.03634779155254364, + -0.022325271740555763, + 0.03280458599328995, + -0.03799806162714958, + 0.06411803513765335, + -0.009558986872434616, + -0.0536673404276371, + -0.01028921827673912, + 0.027302240952849388, + 0.0494929738342762, + -0.07884052395820618, + 0.015057787299156189, + 0.04252013564109802, + -0.021756114438176155, + -0.0508904829621315, + 0.020848462358117104, + -0.05917617306113243, + -0.011166163720190525, + -0.003622401272878051, + 0.05572633817791939, + 0.021695245057344437, + 0.009449084289371967, + 0.0003117065061815083, + -0.0006625672685913742, + -0.01956865005195141, + 0.03836260363459587, + 0.044580455869436264, + 0.032650742679834366, + 0.027997339144349098, + 0.06791534274816513, + 0.001503333100117743, + 0.007124224212020636, + -0.031152550131082535, + -0.030008085072040558, + -0.011370529420673847, + 0.018134359270334244, + -0.007327532395720482, + 0.06981756538152695, + -0.0036938413977622986, + -0.09094464033842087, + -0.00837231520563364, + -0.03009394183754921, + 0.03972812741994858, + 0.0010122753446921706, + 0.020827816799283028, + -0.05435442924499512, + -0.06800305843353271, + -0.1118280440568924, + -0.0739973708987236, + -0.004185302183032036, + 0.01581309363245964, + 0.004419720731675625, + -0.017481805756688118, + -0.02454335056245327, + 0.02458348125219345, + -0.012860486283898354, + 0.018456535413861275, + 0.0293011162430048, + 0.09098434448242188, + -0.006572568789124489, + -0.043047402054071426, + 0.04525686427950859 + ], + "house-simple-bold||homes,buildings,places,locations": [ + 0.09541924297809601, + -0.01910332776606083, + 0.0162309892475605, + 0.0404311940073967, + 0.022671222686767578, + -0.04095839709043503, + -0.00421818858012557, + -0.05045172944664955, + -0.11112403124570847, + -0.0038109831511974335, + 0.0327216237783432, + -0.015120923519134521, + 0.05693158879876137, + -0.04021971672773361, + 0.02061975933611393, + -0.02002326026558876, + 0.04027700424194336, + 0.031475793570280075, + 0.07188398391008377, + 0.02259431965649128, + -0.0013158586807549, + 0.058596111834049225, + 0.02035212144255638, + 0.045442067086696625, + 0.09684278070926666, + 0.08131569623947144, + 0.034063804894685745, + 0.07050119340419769, + 0.03332126885652542, + -0.05752010643482208, + 0.00014695584832224995, + 0.001009634928777814, + 0.09634166210889816, + 0.011263541877269745, + 0.07782649993896484, + 0.016477201133966446, + 0.02654617466032505, + 0.013660375960171223, + 0.03899932652711868, + 0.018955914303660393, + -0.0019013345008715987, + -0.024621104821562767, + 0.08806545287370682, + -0.007258218247443438, + -0.056976303458213806, + -0.01703755557537079, + -0.024392468854784966, + -0.0794295072555542, + 0.025562148541212082, + 0.0056525771506130695, + -0.01091180182993412, + -0.0038045148830860853, + -0.1260785013437271, + 0.018516773357987404, + 0.035442955791950226, + 0.06696446239948273, + -0.09021254628896713, + 0.0022509670816361904, + 0.05910559743642807, + -0.03458321839570999, + 0.10383075475692749, + -0.015515793114900589, + -0.005237495992332697, + 0.0488923117518425, + 0.05252822861075401, + -0.038036465644836426, + -0.040260083973407745, + 0.07494357973337173, + -0.0012438305420801044, + -0.050421446561813354, + 0.03733139485120773, + -0.005473542958498001, + 0.0036855016369372606, + 0.027365464717149734, + -0.02095312811434269, + -0.0827648937702179, + -0.01065498311072588, + -0.016676709055900574, + -0.06773918867111206, + -0.03318781778216362, + -0.08808063715696335, + -0.07617494463920593, + -0.05488904193043709, + 0.03616388514637947, + -0.047542233020067215, + 0.02836061827838421, + -0.04221440106630325, + -0.01650995947420597, + 0.042587295174598694, + -0.05553648620843887, + 0.012098477222025394, + -0.042791321873664856, + 0.017790542915463448, + 0.002866289811208844, + -0.06385618448257446, + -0.022082459181547165, + 0.03597665950655937, + -0.027191543951630592, + -0.07432600855827332, + 0.08018428832292557, + -0.015639416873455048, + 0.004773729480803013, + 0.08466644585132599, + -0.008633112534880638, + -0.038250312209129333, + -0.034936849027872086, + -0.04036237299442291, + 0.030622243881225586, + -0.04714879021048546, + -0.03143342584371567, + -0.07506581395864487, + -0.08112231642007828, + -0.003388411598280072, + -0.05292832851409912, + -0.00981527753174305, + -0.05709770694375038, + 0.009553680196404457, + -0.08880764991044998, + 0.11393602192401886, + 0.026502378284931183, + -0.016915932297706604, + -0.04543493688106537, + -0.0024662911891937256, + -0.044476523995399475, + -0.014681375585496426, + 0.02811025269329548, + 0.045137133449316025, + -3.190613092368241e-33, + 0.07063045352697372, + 0.06853780150413513, + -0.03804543614387512, + 0.12125501036643982, + 0.038919221609830856, + -0.027763551101088524, + -0.06739626824855804, + 0.00463043712079525, + -0.02800998091697693, + 0.08492415398359299, + 0.18176236748695374, + -0.012812494300305843, + -0.05110304430127144, + 0.06629013270139694, + 0.06416790187358856, + 0.04311781004071236, + 0.013719146139919758, + -0.012428110465407372, + -0.07458806782960892, + -0.001789771136827767, + -0.023095643147826195, + 0.12495692819356918, + -0.045455824583768845, + 0.0005305677768774331, + -0.04474871605634689, + -0.14288513362407684, + 0.04189063236117363, + -0.0029053930193185806, + -0.08337574452161789, + 0.0317639596760273, + 0.058331578969955444, + 0.04245520010590553, + 0.05469313636422157, + -0.006711007561534643, + -0.02915581315755844, + 0.01746085099875927, + -0.0348970852792263, + -0.07464592903852463, + -0.030367830768227577, + -0.011558584868907928, + -0.05573926866054535, + -0.02621127851307392, + 0.028612611815333366, + 0.03756022825837135, + 0.1023799404501915, + 0.13565385341644287, + -0.02377363294363022, + -0.06155349314212799, + 0.0355006605386734, + 0.010757336392998695, + -0.030282171443104744, + -0.0015230909921228886, + -0.1332588642835617, + 0.06264906376600266, + 0.043666210025548935, + 0.05020815134048462, + -0.022806653752923012, + 0.02794342301785946, + 0.034074816852808, + 0.019610291346907616, + 0.016675084829330444, + 0.03319346904754639, + 0.0009682251838967204, + -0.029223397374153137, + -0.02023431472480297, + -0.0012419716222211719, + 0.006908827926963568, + 0.020642578601837158, + 0.043269820511341095, + 0.043011050671339035, + -0.012417273595929146, + 0.01902034319937229, + 0.019624078646302223, + -0.01431596465408802, + 0.04687250033020973, + 0.06144694238901138, + -0.024373192340135574, + -0.03199020400643349, + -0.04951150715351105, + -0.0028367822524160147, + -0.06872882694005966, + 0.043579865247011185, + -0.05116279423236847, + 0.178988978266716, + 0.012264844961464405, + -0.032747529447078705, + 0.025566335767507553, + -0.07313195616006851, + -0.07751501351594925, + 0.043842826038599014, + -0.0791947990655899, + 0.013077063485980034, + -0.00651889992877841, + -0.10553878545761108, + -0.11079543083906174, + 6.5744338341509916e-34, + -0.036995623260736465, + -0.06295599788427353, + -0.05012096092104912, + -0.014444025233387947, + -0.03715469688177109, + 0.02659907564520836, + -0.0394430086016655, + -0.013565247878432274, + 0.07984180748462677, + 0.027222570031881332, + -0.08028962463140488, + -0.012433748692274094, + 0.03509674593806267, + -0.03382148966193199, + -0.03372592851519585, + 0.012820088304579258, + 0.04082097113132477, + -0.0004933105665259063, + 0.007728175725787878, + 0.08014369755983353, + 0.0032053671311587095, + -0.009164401330053806, + -0.11532871425151825, + 0.023341964930295944, + 0.041563671082258224, + 0.034983810037374496, + -0.08508084714412689, + 0.0015170027036219835, + -0.04113355651497841, + -0.028545649722218513, + -0.08032388240098953, + -0.08249273896217346, + 0.018952881917357445, + 0.06858190149068832, + -0.08813473582267761, + 0.08669548481702805, + -0.02054247073829174, + -0.05264294147491455, + -0.04296742379665375, + 0.009435400366783142, + 0.009550950489938259, + 0.007432983256876469, + 0.053436245769262314, + 0.02342362515628338, + -0.007251581642776728, + 0.0009192529832944274, + -0.08599839359521866, + -0.08825653046369553, + -0.05452446639537811, + 0.029640406370162964, + 0.03747178614139557, + 0.03657332435250282, + -0.052443522959947586, + 0.010449164547026157, + -0.0015650637215003371, + -0.002718826988711953, + 0.04025816544890404, + 0.03953961282968521, + 0.001979248598217964, + 0.1250467598438263, + -0.018114829435944557, + 0.07560673356056213, + -0.1084316149353981, + 0.09849495440721512, + -0.03400858864188194, + -0.031750671565532684, + -0.06547048687934875, + -0.04169069230556488, + -0.004490971099585295, + -0.0018236958421766758, + -0.02022511698305607, + -0.023659013211727142, + -0.020049210637807846, + -0.018748247995972633, + 0.0014985974412411451, + 0.015491044148802757, + 0.06378275901079178, + 0.032327402383089066, + -0.018544526770710945, + -0.02318633906543255, + 0.01686786115169525, + -0.03350143879652023, + -0.10302896052598953, + 0.03967059776186943, + 0.03793337941169739, + -0.0018926931079477072, + -0.06810590624809265, + -0.020106516778469086, + 0.05791163817048073, + 0.05167686194181442, + -0.054742030799388885, + 0.057334281504154205, + -0.0091311726719141, + -0.029328394681215286, + -0.034605905413627625, + -2.0682689338968885e-08, + 0.021151091903448105, + -0.02336967922747135, + -0.012046308256685734, + -0.024443138390779495, + -0.008137409575283527, + -0.04742469638586044, + 0.08575308322906494, + 0.0017574143130332232, + -0.046057190746068954, + 0.07102853059768677, + -0.001549437060020864, + -0.001279404736123979, + -0.050986383110284805, + 0.025675678625702858, + -0.026948101818561554, + 0.009897644631564617, + -0.01419610995799303, + 0.02279316633939743, + -0.03079688549041748, + 0.010417453944683075, + 0.030166400596499443, + 0.0356421172618866, + -0.013169591315090656, + 0.004128723405301571, + -0.05027921497821808, + -0.019437743350863457, + -0.006137145683169365, + 0.01086457446217537, + 0.05178714916110039, + 0.03749499469995499, + 0.025292374193668365, + 0.08303459733724594, + -0.023432571440935135, + 0.05159372463822365, + -0.08029089868068695, + 0.019436607137322426, + -0.001860206131823361, + -0.01696024462580681, + -0.05088670551776886, + 0.002575453370809555, + -0.004959434270858765, + -0.10124513506889343, + -0.043462686240673065, + -0.052807390689849854, + 0.017461484298110008, + 0.02620401792228222, + 0.09421276301145554, + -0.07344289124011993, + -0.02345144934952259, + -0.11478404700756073, + -0.06515280902385712, + 0.0045420825481414795, + 0.01193584781140089, + -0.0021769681479781866, + -0.004560322966426611, + 0.018091190606355667, + 0.024949857965111732, + 0.013217752799391747, + 0.020705867558717728, + 0.01684887893497944, + 0.12220152467489243, + 0.0882764384150505, + -0.04751088097691536, + 0.05241074413061142 + ], + "hurricane-bold||*new*,meteorology,cyclone,storm,disaster,wind": [ + -0.0035418567713350058, + -0.036195848137140274, + 0.030800839886069298, + 0.08667900413274765, + 0.054450709372758865, + -0.015045554377138615, + -0.029850861057639122, + -0.07682272791862488, + 0.008285625837743282, + -0.027804862707853317, + 0.013246644288301468, + 0.0062960232608020306, + 0.04022994637489319, + -0.0714326873421669, + -0.023698430508375168, + 0.031099973246455193, + -0.031831659376621246, + -0.04784800112247467, + 0.00799987930804491, + 0.03197883442044258, + -0.0064137778244912624, + 0.1188054233789444, + -0.10693580657243729, + 0.04321475699543953, + 0.09000521898269653, + 0.0549321249127388, + -0.04268725961446762, + 0.04763104394078255, + -0.007906094193458557, + -0.02575119212269783, + -0.007301263511180878, + 0.031468939036130905, + 0.03954445570707321, + 0.03412126749753952, + 0.05878197401762009, + 0.001546160434372723, + -0.03649001941084862, + 0.01656321994960308, + -0.054933298379182816, + 0.09789606183767319, + 0.016034316271543503, + -0.04020073637366295, + 0.02185838669538498, + 0.008017892017960548, + 0.005731548182666302, + -0.03830520436167717, + -0.09553558379411697, + 0.0018009534105658531, + 0.028660709038376808, + -0.005041331052780151, + -0.03994949162006378, + -0.08954033255577087, + -0.11475252360105515, + -0.04209969937801361, + 0.06186285614967346, + 0.009431935846805573, + -0.04607696831226349, + -0.07080608606338501, + 0.0426439493894577, + -0.03180878981947899, + 0.005220998544245958, + 0.07912764698266983, + -0.03502609208226204, + 0.08128240704536438, + 0.050216324627399445, + -0.029451757669448853, + -0.03610702231526375, + 0.07637952268123627, + 0.040569860488176346, + 0.03419220447540283, + -0.0013084153179079294, + 0.011032146401703358, + 0.04019040986895561, + 0.015141383744776249, + -0.012471375986933708, + -0.05309372767806053, + 0.07977131009101868, + 0.012288526631891727, + -0.042615097016096115, + -0.044066570699214935, + -0.021723944693803787, + -0.06660080701112747, + 0.008258877322077751, + -0.10168889164924622, + 0.015802733600139618, + 0.09443489462137222, + -0.09975729882717133, + -0.024992741644382477, + -0.01895359344780445, + 0.008518524467945099, + -0.049122169613838196, + -0.07251424342393875, + 0.07043424993753433, + 0.06666331738233566, + -0.05810648947954178, + 0.0930180475115776, + 0.039050888270139694, + -0.10474738478660583, + 0.007695494219660759, + 0.09220841526985168, + -0.0023101044353097677, + -0.0500359833240509, + 0.024620437994599342, + 0.07699532806873322, + -0.007817302830517292, + -0.025140371173620224, + -0.003423223039135337, + -0.03776463493704796, + -0.046848464757204056, + 0.0362551249563694, + -0.01708867773413658, + -0.03195671737194061, + -0.010153689421713352, + -0.1100342720746994, + 0.018839433789253235, + -0.04633105918765068, + -0.09963661432266235, + -0.04890543594956398, + 0.008891331031918526, + 0.0579693503677845, + -0.004421878606081009, + -0.0333184152841568, + -0.0457940474152565, + -0.025743968784809113, + 0.00010232171916868538, + 0.04721972346305847, + 0.05116662755608559, + -2.904993311715365e-33, + 0.13871295750141144, + 0.010091520845890045, + -0.008526590652763844, + 0.14650952816009521, + 0.05987902358174324, + 0.03192507103085518, + -0.06367675215005875, + -0.06080019846558571, + -0.03775355592370033, + 0.04033033922314644, + 0.03891795128583908, + 0.09025808423757553, + -0.02945573441684246, + 0.08531475067138672, + 0.00613043550401926, + -0.02610851638019085, + -0.008064505644142628, + -0.004331429488956928, + -0.08836330473423004, + 0.028159083798527718, + -0.09595775604248047, + 0.06591814011335373, + 0.00791333056986332, + -0.0818207785487175, + -0.020889604464173317, + -0.03425212576985359, + 0.04471198096871376, + -0.024874122813344002, + -0.052967727184295654, + 0.04624079912900925, + 0.02113041840493679, + 0.07357212901115417, + 0.053956516087055206, + 0.010988819412887096, + -0.0550495870411396, + 0.01825556345283985, + -0.07718773931264877, + -0.053426023572683334, + 0.021906958892941475, + 0.02473343536257744, + -0.08114048093557358, + -0.0038871190045028925, + -0.12039944529533386, + 0.0687972754240036, + 0.10792720317840576, + 0.06939814239740372, + 0.024987561628222466, + -0.02609175071120262, + -0.013788033276796341, + -0.00759794469922781, + -0.00984430406242609, + -0.01743769645690918, + -0.013679251074790955, + 0.010921671986579895, + 0.007677777204662561, + 0.05417976900935173, + 0.0429917611181736, + 0.024731693789362907, + 0.024348150938749313, + -0.024904809892177582, + -0.0070934840478003025, + 0.02953946217894554, + 0.06858614087104797, + -0.1116655170917511, + 0.0764092355966568, + 0.05271567776799202, + 0.04801540821790695, + 0.0765049085021019, + 0.025922376662492752, + -0.0335422158241272, + -0.027307551354169846, + 0.004686337895691395, + -0.011815106496214867, + 0.058422189205884933, + 0.05994805693626404, + 0.01078975573182106, + -0.00828602910041809, + -0.01060457807034254, + -0.005909929517656565, + 0.0005076974630355835, + -0.11000951379537582, + 0.005316613707691431, + 0.04935232922434807, + 0.06885730475187302, + 0.026722783222794533, + 0.0033028372563421726, + -0.0061324527487158775, + -0.05316881835460663, + -0.05404728278517723, + 0.014136409386992455, + -0.0772099643945694, + 0.05196394771337509, + 0.10439056903123856, + -0.023091133683919907, + -0.05743832141160965, + -5.528088200753168e-34, + -0.014720702543854713, + 0.01785334199666977, + -0.09470126777887344, + -0.04086582735180855, + -0.04542336240410805, + 0.0011146054603159428, + -0.06399909406900406, + 0.006663938518613577, + -0.008384891785681248, + -0.012225503101944923, + -0.049938544631004333, + -0.0040206508710980415, + -0.046110451221466064, + -0.09012904763221741, + 0.047134947031736374, + -0.0042162686586380005, + -0.023123476654291153, + 0.06180621683597565, + -0.09544271975755692, + 0.036680251359939575, + 0.0013877467717975378, + -0.04796384647488594, + -0.1329529583454132, + 0.009485245682299137, + -0.0030351108871400356, + 0.005529089365154505, + 0.038301318883895874, + -0.035565368831157684, + -0.03424606844782829, + -0.05758389085531235, + -0.056295689195394516, + 0.010014752857387066, + 0.006008290220052004, + 0.06769891083240509, + -0.05596832558512688, + 0.12137836217880249, + 0.06931901723146439, + -0.12254058569669724, + -0.0065943594090640545, + -0.04890276491641998, + -0.01589502952992916, + 0.05677451193332672, + 0.08342591673135757, + -0.028567826375365257, + -0.026778265833854675, + 0.06156536191701889, + 0.013602440245449543, + 0.018288346007466316, + -0.02710876800119877, + 0.024658851325511932, + -0.002927541732788086, + -0.05178055167198181, + -0.06351646780967712, + 0.11756836622953415, + -0.01170987170189619, + -0.015323837287724018, + 0.028853675350546837, + -0.05715348944067955, + -0.05708622559905052, + 0.007964852266013622, + -0.03862195089459419, + 0.020753489807248116, + -0.06508685648441315, + 0.03944142535328865, + 0.03329914063215256, + -0.06378877907991409, + 0.02009335719048977, + -0.050157759338617325, + 0.0054380204528570175, + 0.014618594199419022, + -0.02695446088910103, + 0.03066025860607624, + -0.11655650287866592, + -0.010300164110958576, + 0.051937513053417206, + -0.03792329505085945, + -0.0056403521448373795, + 0.014671661891043186, + -0.07522259652614594, + 0.03912729769945145, + -0.03621672838926315, + -0.017951738089323044, + -0.059553470462560654, + 0.03787793591618538, + -0.01175044383853674, + 0.011405287310481071, + 0.10145501047372818, + -0.06487046182155609, + 0.03980069234967232, + 0.0402701161801815, + -0.03854510560631752, + 0.03009476698935032, + -0.02082430198788643, + -0.009279623627662659, + -0.027539901435375214, + -2.1493365309765977e-08, + 0.03273146227002144, + 0.052325550466775894, + -0.05800231546163559, + -0.026870479807257652, + 0.05085873603820801, + -0.014009164646267891, + -0.04169190302491188, + -0.018064886331558228, + -0.05170212686061859, + 0.009720508009195328, + 0.029059510678052902, + 0.07120916247367859, + -0.015047636814415455, + -0.030926132574677467, + 0.06204250827431679, + -0.03408355265855789, + -0.04600254446268082, + -0.017225176095962524, + -0.05392545461654663, + -0.09651339799165726, + 0.05544469878077507, + 0.07708144187927246, + -0.049640972167253494, + -0.011500425636768341, + 0.10848327726125717, + -0.01614033244550228, + -0.041526909917593, + 0.007771148346364498, + 0.04038587212562561, + 0.015184245072305202, + -0.009036923758685589, + 0.037010081112384796, + -0.09349686652421951, + -0.042554937303066254, + -0.08531131595373154, + 0.028633853420615196, + 0.05422123149037361, + -0.012770607136189938, + 0.02476729266345501, + 0.034506820142269135, + 0.018795223906636238, + 0.010635186918079853, + 0.002653866307809949, + 0.01480162050575018, + -0.056343864649534225, + 0.004327796399593353, + 0.024154093116521835, + -0.05665108561515808, + -0.008605447597801685, + -0.1354869157075882, + 0.03412747383117676, + -0.026981906965374947, + 0.05031045153737068, + 0.031138040125370026, + 0.05749892070889473, + 0.024462779983878136, + 0.01350189745426178, + 0.058593668043613434, + 0.047064170241355896, + -0.006760295946151018, + 0.06719831377267838, + -0.040728095918893814, + -0.007527300156652927, + 0.055948786437511444 + ], + "ice-cream-bold||food,dessert,cone": [ + 0.02209990657866001, + -0.03162674605846405, + 0.015483725816011429, + 0.08289773762226105, + -0.002138450974598527, + 0.019473599269986153, + 0.1165781319141388, + 0.003555849427357316, + 0.016592008993029594, + -0.03217507526278496, + 0.004064793232828379, + -0.05971914529800415, + 0.011106987483799458, + -0.09693948924541473, + -0.006196002475917339, + -0.010893737897276878, + 0.0793503150343895, + -0.0251848716288805, + 0.014305932447314262, + -0.05958017706871033, + 0.0666237398982048, + 0.0006453205132856965, + -0.004307243507355452, + 0.06298130750656128, + -0.0052464911714196205, + 0.06904839724302292, + 0.050745412707328796, + -0.04544740915298462, + -0.036907635629177094, + -0.014398093335330486, + -0.07683619111776352, + -0.03889678418636322, + 0.046153053641319275, + -0.014780348166823387, + 0.04609561339020729, + -0.05481146275997162, + 0.03825502470135689, + -0.08514413982629776, + 0.010481993667781353, + 0.07013364136219025, + 0.024045798927545547, + 0.026924513280391693, + -0.0015374362701550126, + 0.012560189701616764, + -0.02617545612156391, + 0.06065874174237251, + -0.06563547253608704, + 0.016497299075126648, + -0.012436963617801666, + 0.02959609031677246, + -0.0723595917224884, + -0.0037986550014466047, + -0.08088111877441406, + 0.0065496014431118965, + 0.06382700055837631, + 0.0504029244184494, + -0.10542789846658707, + -0.03412332385778427, + 0.04010713845491409, + 0.04376092553138733, + 0.002568316413089633, + 0.017434993758797646, + 0.09323747456073761, + 0.008199436590075493, + 0.05018700659275055, + -0.08729669451713562, + -0.05893610790371895, + 0.009825863875448704, + -0.05327789485454559, + 0.03778091073036194, + 0.016244249418377876, + 0.06231776997447014, + -0.04009411484003067, + -0.051766615360975266, + -0.04748418927192688, + -0.009236926212906837, + 0.0275209192186594, + -0.07968545705080032, + -0.07391658425331116, + 0.00938792061060667, + -0.019058801233768463, + -0.01558662299066782, + 0.0016007358208298683, + -0.030840719118714333, + -0.05407232791185379, + -0.02182656340301037, + -0.0367722325026989, + -0.05163806304335594, + -0.007452185265719891, + -0.050732288509607315, + -0.052825409919023514, + -0.060896046459674835, + -0.024439996108412743, + -0.0030303390230983496, + -0.03904694318771362, + -0.011333322152495384, + -0.01585378684103489, + -0.08275206387042999, + -0.018075326457619667, + 0.07458758354187012, + 0.007937422953546047, + -0.003626677207648754, + -0.03591066971421242, + -0.028211230412125587, + -0.06852225214242935, + -0.0056776744313538074, + -0.0769517794251442, + -0.03064761497080326, + 0.07470593601465225, + 0.10641064494848251, + 0.033812545239925385, + -0.09934888780117035, + -0.06789950281381607, + -0.025547822937369347, + -0.017858799546957016, + -0.03678329288959503, + -0.04637990891933441, + -0.08942478150129318, + 0.07895158231258392, + -0.000913637806661427, + -0.0470765121281147, + 0.015215469524264336, + -0.028251133859157562, + 0.08734264969825745, + -0.028904786333441734, + 0.018335329368710518, + 0.0613284558057785, + -3.621493485398028e-33, + -0.04411649703979492, + 0.012258611619472504, + 0.004526547156274319, + 0.04095030203461647, + 0.05274505913257599, + -0.005652100779116154, + 0.039811164140701294, + -0.002000844106078148, + 0.004012555815279484, + 0.06024879962205887, + 0.0013689574552699924, + 0.044078752398490906, + -0.05104807764291763, + 0.047127917408943176, + 0.015366720966994762, + -0.01817815564572811, + 0.0330115370452404, + -0.02811545319855213, + -0.0736129879951477, + 0.045042894780635834, + -0.0505187064409256, + 0.0768309161067009, + -0.02864319644868374, + 0.0244912076741457, + -0.06801184266805649, + -0.011516191065311432, + -0.051698632538318634, + -0.056035369634628296, + 0.03759510815143585, + -0.013144039548933506, + 0.10212697833776474, + 0.006215526722371578, + 0.035020846873521805, + 0.04753395915031433, + 0.015850013121962547, + 0.017595842480659485, + -0.014223112724721432, + 0.01918499357998371, + -0.027368711307644844, + -0.003946376498788595, + -0.08452814817428589, + -0.030900511890649796, + 0.04951620474457741, + 0.04848182946443558, + -0.07289561629295349, + 0.06755447387695312, + 0.02693178504705429, + -0.05221841111779213, + -0.006519216112792492, + -0.07348331063985825, + -0.03230565786361694, + 0.055080994963645935, + 0.006113765295594931, + 0.006079806014895439, + 0.0006381960702128708, + -0.06467786431312561, + -0.026406312361359596, + 0.0767446979880333, + 0.042868830263614655, + -0.029428906738758087, + -0.0009151452104561031, + -0.016322044655680656, + 0.005908152554184198, + -0.057311851531267166, + -0.038701314479112625, + 0.08952658623456955, + -0.05283556878566742, + 0.026864735409617424, + 0.10695096850395203, + 0.054516732692718506, + 0.009805655106902122, + 0.03560567647218704, + 0.07755433768033981, + -0.006082380656152964, + 0.0181003175675869, + 0.06029447540640831, + -0.06790226697921753, + 0.006696616765111685, + -0.01203420851379633, + -0.02483980543911457, + -0.12384719401597977, + -0.030581356957554817, + -0.02451060712337494, + 0.08563432097434998, + -0.049785878509283066, + 0.03462367132306099, + -0.03455168381333351, + -0.015320677310228348, + 0.08879180252552032, + 0.12439538538455963, + -0.14440608024597168, + -0.026304321363568306, + 0.03675742819905281, + 0.06980016827583313, + -0.12604168057441711, + 1.1285055712693493e-34, + 0.0015069720102474093, + -0.04734295234084129, + -0.049001745879650116, + -0.023456212133169174, + -0.015472814440727234, + 0.023354794830083847, + -0.058252234011888504, + 0.01033798512071371, + -0.020619746297597885, + -0.05063226819038391, + -0.017929939553141594, + -0.045549262315034866, + -0.004643822554498911, + -0.024560673162341118, + 0.024177296087145805, + 0.06563054025173187, + 0.012560327537357807, + 0.1181752160191536, + 0.02363724634051323, + 0.08164117485284805, + -0.06031200289726257, + 0.028988976031541824, + -0.12257418781518936, + 0.07111035287380219, + -0.014550437219440937, + 0.06470645219087601, + 0.12896302342414856, + -0.04199662432074547, + -0.03733430430293083, + -0.08400499075651169, + -0.08138839900493622, + -0.09456934034824371, + 0.04724007844924927, + -0.027157209813594818, + -0.07451263815164566, + 0.13210953772068024, + -0.013654190115630627, + -0.09148623794317245, + -0.09734049439430237, + 0.02981281653046608, + 0.011749131605029106, + -0.029636170715093613, + 0.025746138766407967, + 0.13667388260364532, + 0.01210405770689249, + 0.004053124692291021, + -0.037157218903303146, + 0.0027578731533139944, + 0.02873064950108528, + 0.08785545825958252, + 0.016285963356494904, + -0.06505261361598969, + -0.007819492369890213, + -0.0014573113294318318, + 0.0007758689462207258, + 0.010833417065441608, + -0.08901123702526093, + 0.03750480338931084, + -0.05534437298774719, + -0.020455963909626007, + -0.024544628337025642, + -0.0026407891418784857, + 0.018800580874085426, + 0.020276987925171852, + 0.08373263478279114, + -0.021780524402856827, + -0.009045162238180637, + -0.08333174139261246, + 0.04560829699039459, + 0.009016827680170536, + 0.0146451061591506, + 0.05039164796471596, + 0.06363173574209213, + 0.02394515462219715, + 0.031554799526929855, + -0.054605789482593536, + 0.04488709941506386, + -0.02521880902349949, + -0.010751601308584213, + 0.013127245008945465, + -0.06149787828326225, + -0.026400050148367882, + 0.013025447726249695, + 0.08624016493558884, + 0.059920091181993484, + 0.05260009691119194, + 0.042394984513521194, + 0.008328312076628208, + -0.04838194698095322, + 0.04105066508054733, + -0.03501876816153526, + 0.031893227249383926, + 0.008519535884261131, + -0.010376130230724812, + -0.027623964473605156, + -1.8128197609712515e-08, + 0.07003195583820343, + 0.008961525745689869, + -0.11872494220733643, + 0.025540754199028015, + 0.03250797465443611, + -0.10147015750408173, + -0.015542987734079361, + -0.055446282029151917, + -0.12478071451187134, + -0.015773117542266846, + -0.04327792301774025, + 0.05072537809610367, + -0.014074713923037052, + 0.012619064189493656, + -9.728909935802221e-05, + 0.01402460690587759, + -0.006786610931158066, + 0.05533020570874214, + 0.015191060490906239, + -0.0010397034930065274, + -0.0667320117354393, + -0.01218478474766016, + 0.06322281062602997, + -0.10397055745124817, + -0.03458888828754425, + 0.05355318635702133, + 0.049764759838581085, + 0.010491185821592808, + 0.0913248136639595, + 0.039889492094516754, + -0.038785140961408615, + 0.022264396771788597, + -0.0006036321283318102, + 0.09495998173952103, + 0.05658958852291107, + -0.047267306596040726, + -0.07112619280815125, + -0.03405158594250679, + -0.028626829385757446, + -0.0020158851984888315, + -0.029125839471817017, + 0.04820377007126808, + 0.014178301207721233, + -0.004410060588270426, + -0.01618405058979988, + 0.021758683025836945, + -0.02061326615512371, + -0.013784818351268768, + 0.02259037084877491, + 0.07981560379266739, + -0.09272502362728119, + 0.009661749005317688, + -0.002795988693833351, + 0.04320140928030014, + 0.027159646153450012, + -0.013985943980515003, + 0.05675111711025238, + -0.015123087912797928, + -0.06526976823806763, + 0.06250562518835068, + 0.10318844020366669, + 0.048383940011262894, + 0.01826504059135914, + -0.0450013093650341 + ], + "identification-badge-bold||license,credentials,nametag,user,verification": [ + -0.07033094018697739, + 0.01693066954612732, + -0.09998060017824173, + -0.040370043367147446, + 0.04930712282657623, + 0.029850874096155167, + 0.11806666105985641, + -0.04693904519081116, + -0.016689177602529526, + -0.09038993716239929, + -0.012224751524627209, + -0.01243169978260994, + 0.09766685217618942, + -0.038655150681734085, + -0.0901034027338028, + 0.029808782041072845, + 0.0028688120655715466, + 0.03442330285906792, + -0.02214355207979679, + -0.018800828605890274, + -0.03025713749229908, + 0.0013930887216702104, + -0.011359796859323978, + 0.03727720305323601, + -0.023325836285948753, + -0.02577725239098072, + 0.017717812210321426, + 0.08874654024839401, + 0.032599788159132004, + -0.04913865774869919, + 0.08549117296934128, + -0.029999539256095886, + 0.11812383681535721, + 0.02389746904373169, + 0.039199959486722946, + -0.010915216989815235, + 0.04046134278178215, + 0.0202141385525465, + -0.010099015198647976, + -0.03880554065108299, + 0.011743198148906231, + -0.13053785264492035, + -0.08054634183645248, + 0.12965162098407745, + 0.0009669294231571257, + 0.05454235151410103, + -0.023939060047268867, + 0.01464973296970129, + -0.006606831680983305, + 0.03503558039665222, + 0.001946625648997724, + -0.059768449515104294, + -0.04670526832342148, + 0.020332463085651398, + -0.04513471573591232, + -0.010411357507109642, + -0.0432179793715477, + -0.017528191208839417, + 0.0037586225662380457, + 0.04459073394536972, + 0.04354057461023331, + 0.02531825564801693, + 0.024224137887358665, + 0.12012221664190292, + 0.021066341549158096, + 0.034810081124305725, + -0.05106956511735916, + -0.039045944809913635, + -0.00048406809219159186, + -0.09317640215158463, + 0.05838838219642639, + -0.02333070896565914, + -0.04176829382777214, + -0.04605579003691673, + 0.004220906645059586, + -0.03188985213637352, + -0.010910754092037678, + 0.026102840900421143, + 0.02038019336760044, + -0.06705504655838013, + -0.10837193578481674, + -0.002208258956670761, + -0.08246424794197083, + 0.03999459743499756, + 0.057263679802417755, + 0.06148900091648102, + -0.08781861513853073, + -0.023831067606806755, + -0.07085631787776947, + 0.021035758778452873, + 0.030849702656269073, + -0.018567552790045738, + 0.04789344221353531, + -0.05006938800215721, + 0.0008110966882668436, + 0.06206654757261276, + 0.02467566542327404, + 4.222615098115057e-05, + -0.0032834403682500124, + 0.10012312233448029, + -0.06526762247085571, + 0.022497089579701424, + -0.03898227959871292, + -0.005605876911431551, + 0.03000691719353199, + 0.0261821448802948, + 0.008243964053690434, + 0.01268454547971487, + 0.046796105802059174, + 0.00792253389954567, + 0.017854467034339905, + -0.03629336878657341, + -0.03611501306295395, + -0.02794119156897068, + 0.009505132213234901, + 0.032712336629629135, + -0.06722065061330795, + 0.013415859080851078, + 0.05751437693834305, + 0.031160034239292145, + -0.021978219971060753, + -0.047455377876758575, + -0.030087634921073914, + -0.11955364048480988, + -0.03683268278837204, + -0.00042419726378284395, + 0.016623424366116524, + -2.864604978860042e-33, + 7.926164107630029e-05, + 0.07722047716379166, + -0.04318852350115776, + 0.1407855749130249, + 0.013413227163255215, + 0.017740851268172264, + -0.06050433591008186, + -0.09366055577993393, + -0.11482734978199005, + 0.08373396098613739, + 0.0886244997382164, + 0.13417725265026093, + -0.013074100948870182, + 0.07403287291526794, + 0.06839115172624588, + 0.044445913285017014, + -0.005508494097739458, + 0.040128324180841446, + -0.013467266224324703, + 0.0019229274475947022, + 0.023552998900413513, + -0.0648767501115799, + 0.0009798899991437793, + 0.05708461254835129, + 0.01174451969563961, + 0.047700054943561554, + 0.04679800570011139, + 0.039381638169288635, + 0.09171660989522934, + 0.04854239895939827, + 0.02776343934237957, + -0.02899288386106491, + 0.01741602271795273, + -0.005219513550400734, + 0.06023208424448967, + 0.02352321334183216, + 0.004187623504549265, + -0.06311473995447159, + -0.011357538402080536, + -0.020764365792274475, + -0.02422248013317585, + -0.03334468603134155, + -0.0537884384393692, + -0.009768691845238209, + -0.08071890473365784, + 0.048857398331165314, + 0.05856138467788696, + -0.01203862950205803, + 0.10729306936264038, + 0.07174796611070633, + -0.02763974666595459, + -0.036771826446056366, + -0.029398998245596886, + -0.04366495832800865, + -0.07639418542385101, + -0.05465418100357056, + -0.07254911214113235, + 0.06321442127227783, + -0.09903884679079056, + -0.08266695588827133, + -0.03459674119949341, + 0.013663572259247303, + -0.016309238970279694, + -0.015051783062517643, + 0.07339956611394882, + -0.0509357750415802, + -0.012631729245185852, + -0.03597261756658554, + 0.07463151216506958, + -0.034279704093933105, + 0.047066785395145416, + 0.025572774931788445, + 0.0017836211482062936, + 0.015945523977279663, + -0.007457119878381491, + -0.012592499144375324, + 0.029736502096056938, + 0.02328924648463726, + -0.024478618055582047, + 0.06728159636259079, + -0.10631415992975235, + 0.035950422286987305, + -0.10074598342180252, + 0.022525491192936897, + 0.013409034349024296, + 0.07695432007312775, + 0.05340224876999855, + -0.044602956622838974, + -0.07219734787940979, + 0.022652147337794304, + -0.001647902186959982, + 0.04668612405657768, + 0.025553235784173012, + 0.02896041050553322, + -0.1453840583562851, + 4.954570017116743e-34, + -0.048736609518527985, + -0.038128241896629333, + 0.019008411094546318, + -0.015360329300165176, + 0.031031409278512, + 0.014827189035713673, + 0.021000755950808525, + 0.061171356588602066, + -0.05060061439871788, + -0.0009384633740410209, + 0.09328840672969818, + -0.030887221917510033, + -0.10307040810585022, + -0.002243068302050233, + 0.04476020112633705, + 0.011324683204293251, + 0.026150662451982498, + 0.08886521309614182, + -0.05406186729669571, + 0.04457230865955353, + -0.009848245419561863, + 0.08413448929786682, + -0.07297457009553909, + 0.07182259112596512, + -0.009486477822065353, + 0.02129419706761837, + -0.04836752265691757, + 0.031835105270147324, + -0.009703966788947582, + 0.015874935314059258, + 0.06715020537376404, + 0.07352424412965775, + -0.08675606548786163, + 0.041155751794576645, + -0.11928556114435196, + -0.053845882415771484, + 0.06976718455553055, + -0.016573769971728325, + 0.020970327779650688, + 0.021075095981359482, + 0.019557524472475052, + 0.05733376368880272, + -0.024714531376957893, + 0.05149947106838226, + -0.048581719398498535, + -0.052580248564481735, + -0.02709028497338295, + -0.07486000657081604, + 0.00388560863211751, + 0.041535601019859314, + 0.015583506785333157, + -0.05067051947116852, + 0.009148691780865192, + 0.016858039423823357, + -0.037962790578603745, + -0.022255685180425644, + 0.030069449916481972, + 0.05741291865706444, + -0.01727762259542942, + -0.004558170214295387, + 0.03797765448689461, + 0.06617262214422226, + -0.058183543384075165, + 0.0934966579079628, + -0.01699252985417843, + -0.08475545048713684, + 0.01831643097102642, + 0.021517010405659676, + -0.07138330489397049, + 0.006434966344386339, + 0.013351289555430412, + -0.025296637788414955, + -0.0037716561928391457, + -0.02386191301047802, + 0.012724178843200207, + -0.0485825315117836, + 0.041378140449523926, + 0.0302437711507082, + -0.04023415222764015, + -0.008362830616533756, + 0.0048088934272527695, + 0.03067127615213394, + -0.027721839025616646, + 0.08560650050640106, + -0.014374825172126293, + -0.07363095879554749, + 0.0379706472158432, + 0.017560450360178947, + 0.058546580374240875, + -0.017817450687289238, + -0.020165348425507545, + 0.03063025511801243, + -0.07857050746679306, + -0.02865557000041008, + -0.05673551559448242, + -2.1429551466667363e-08, + -0.04559335112571716, + 0.025280462577939034, + -0.04445289075374603, + -0.039019905030727386, + -0.0026103470008820295, + 0.04852861166000366, + -0.07942137122154236, + -0.05854010954499245, + -0.05622415244579315, + -0.080642469227314, + 0.08428772538900375, + -0.01393836922943592, + -0.09229741990566254, + -0.08769603073596954, + -0.012520396150648594, + -0.048860058188438416, + -0.08451396971940994, + 0.045271534472703934, + 0.01588810794055462, + -0.03599652275443077, + -0.021025991067290306, + 0.03073136880993843, + 0.03927294537425041, + -0.0038492470048367977, + -0.006451451685279608, + 0.008144709281623363, + -0.002177355345338583, + -0.017742114141583443, + -0.02481270581483841, + 0.03282798081636429, + 0.0029063750989735126, + 0.062315456569194794, + 0.08047711849212646, + -0.04089932143688202, + 0.025017686188220978, + -0.03851231187582016, + -0.020642219111323357, + -0.037384405732154846, + -0.03221439570188522, + 0.08449871838092804, + 0.0029343569185584784, + 0.01813139207661152, + -0.0053349449299275875, + -0.03518754243850708, + -0.050289034843444824, + 0.060034431517124176, + -0.0045710070990026, + -0.024336466565728188, + -0.050210993736982346, + -0.016864599660038948, + 0.01731417328119278, + -0.0882587730884552, + 0.006070552859455347, + 0.07888993620872498, + -0.10589897632598877, + -0.022917544469237328, + 0.0533461757004261, + 0.09923996776342392, + 0.02309809811413288, + -0.02220141515135765, + 0.10635789483785629, + 0.05516049638390541, + 0.02880113758146763, + -0.05775504559278488 + ], + "identification-card-bold||license,badge,credentials,nametag,user,verification": [ + -0.049709681421518326, + 0.030537767335772514, + -0.10544455796480179, + -0.02815118059515953, + 0.03835679590702057, + 0.01692124828696251, + 0.10833773016929626, + -0.03638837859034538, + -0.011649325489997864, + -0.12065251916646957, + -0.00881052017211914, + -0.03338226303458214, + 0.05300404503941536, + -0.04720794036984444, + -0.08966311067342758, + 0.01087422575801611, + 0.01202672254294157, + 0.02204284816980362, + -0.01242708321660757, + 0.032671548426151276, + -0.03093525394797325, + 0.011772632598876953, + -0.013185855001211166, + 0.04429331421852112, + -0.031259935349226, + -0.02318631298840046, + 0.03559676930308342, + 0.07823722064495087, + 0.023770103231072426, + -0.053044289350509644, + 0.08983436226844788, + 0.004137665964663029, + 0.14221151173114777, + 0.039738576859235764, + 0.07643581926822662, + -0.04213520139455795, + 0.022508464753627777, + 0.013332909904420376, + -0.008525385521352291, + -0.045875489711761475, + 0.030781403183937073, + -0.12042456120252609, + -0.07146189361810684, + 0.12171915173530579, + 0.013896016404032707, + 0.041651830077171326, + -0.022258995100855827, + 0.036998409777879715, + -0.01658334583044052, + 0.03505866602063179, + -0.00514552416279912, + -0.03798626735806465, + -0.07432617992162704, + 0.0038363307248800993, + -0.05100838094949722, + -0.009975994937121868, + -0.04908916726708412, + -0.012790294364094734, + -0.006612575612962246, + 0.029375296086072922, + 0.03906344622373581, + 0.020947083830833435, + 0.029462436214089394, + 0.1361672282218933, + 0.0004426369268912822, + 0.020669884979724884, + -0.02412250265479088, + -0.04779430851340294, + 0.007605984341353178, + -0.09345501661300659, + 0.06541609764099121, + -0.008272822014987469, + -0.05537296459078789, + -0.03825406730175018, + -0.00039051863132044673, + -0.015558643266558647, + -0.0034239604137837887, + 0.008047076873481274, + 0.016946636140346527, + -0.06292062997817993, + -0.11022493243217468, + -0.024654367938637733, + -0.062046442180871964, + 0.014950822107493877, + 0.05779993534088135, + 0.059132155030965805, + -0.08443944901227951, + -0.009473119862377644, + -0.07731465250253677, + -0.041740480810403824, + 0.021865978837013245, + 0.0015508010983467102, + 0.041697047650814056, + -0.041240353137254715, + 0.0034394243266433477, + 0.05639956519007683, + 0.041175149381160736, + -0.020231781527400017, + -0.03292795643210411, + 0.10542741417884827, + -0.0329880490899086, + 0.04127255827188492, + -0.028255945071578026, + 0.013369823805987835, + 0.024783967062830925, + 0.03978044167160988, + 0.015385174192488194, + 0.020320894196629524, + 0.03029804863035679, + 0.0008976477547548711, + 0.004743656609207392, + -0.04291253536939621, + -0.04396631568670273, + -0.033498089760541916, + -0.0021199146285653114, + 0.05012158304452896, + -0.06625213474035263, + 0.018828783184289932, + 0.06586407124996185, + 0.05241173133254051, + -0.03911552205681801, + -0.08090820908546448, + -0.04147662967443466, + -0.11848776787519455, + -0.04991321265697479, + -0.004695316776633263, + 0.04200170561671257, + -2.5649531017362094e-33, + -0.00027694611344486475, + 0.06647096574306488, + -0.04842604696750641, + 0.13768887519836426, + 0.014164755120873451, + 0.017293669283390045, + -0.03817373886704445, + -0.10240998864173889, + -0.09503393620252609, + 0.09635217487812042, + 0.08278701454401016, + 0.11218147724866867, + -0.012821894139051437, + 0.09483451396226883, + 0.06337850540876389, + 0.039113812148571014, + -0.030871447175741196, + 0.04042324051260948, + -0.0035770803224295378, + 0.027728693559765816, + 0.008830220438539982, + -0.03496835380792618, + 0.014538180083036423, + 0.01448165811598301, + 0.02202698029577732, + 0.0533939003944397, + 0.020929647609591484, + 0.006920371670275927, + 0.10921034961938858, + 0.039645642042160034, + 0.04938525706529617, + -0.029282158240675926, + 0.02276371233165264, + -0.0016737653641030192, + 0.051077455282211304, + 0.048516809940338135, + -0.008350579999387264, + -0.05610329285264015, + -0.021197523921728134, + -0.0064216600731015205, + -0.035767946392297745, + -0.021153518930077553, + -0.044109735637903214, + -0.04930781573057175, + -0.0574071891605854, + 0.04556872695684433, + 0.0693734660744667, + -0.007997674867510796, + 0.07488325238227844, + 0.10529544204473495, + -0.06461876630783081, + -0.018154026940464973, + -0.03227155655622482, + -0.06063219904899597, + -0.06322158873081207, + -0.0680474042892456, + -0.05864267796278, + 0.08717543631792068, + -0.0789535865187645, + -0.10155429691076279, + -0.048258572816848755, + -0.017718130722641945, + -0.027081642299890518, + -0.021558431908488274, + 0.04384886845946312, + -0.04307424649596214, + -0.02397751621901989, + -0.05548051372170448, + 0.05018606409430504, + -0.013708217069506645, + 0.030694201588630676, + 0.03594422712922096, + 0.001203835941851139, + 0.02960115112364292, + -0.01565418392419815, + 0.005653399042785168, + 0.007748536299914122, + 0.01737242564558983, + -0.044569309800863266, + 0.05724118649959564, + -0.12170257419347763, + 0.03639286383986473, + -0.11381468921899796, + 0.043195124715566635, + -0.004760159645229578, + 0.07595895975828171, + 0.07001558691263199, + -0.03875560313463211, + -0.04660006985068321, + 0.048368167132139206, + -0.011778181418776512, + 0.04960726201534271, + 0.028704417869448662, + 0.00176357408054173, + -0.09596171975135803, + -5.672352007695905e-35, + -0.06101926043629646, + -0.03819678723812103, + 0.0018257221672683954, + -0.01782912202179432, + 0.009076975286006927, + -0.00900463480502367, + 0.033501096069812775, + 0.07108986377716064, + -0.023404836654663086, + -0.033049244433641434, + 0.0815695971250534, + -0.018875321373343468, + -0.08784202486276627, + -0.012175874784588814, + 0.029420262202620506, + 0.0029381096828728914, + 0.027859190478920937, + 0.09277301281690598, + -0.02416546456515789, + 0.03865538910031319, + -0.015700075775384903, + 0.0769021287560463, + -0.0753183662891388, + 0.08601444959640503, + 0.009356187656521797, + 0.03917098417878151, + -0.020162295550107956, + -0.008959537371993065, + -0.01430690847337246, + -0.018408840522170067, + 0.05426022410392761, + 0.04792797192931175, + -0.056502245366573334, + 0.09101276844739914, + -0.11700145900249481, + -0.04013541340827942, + 0.07073751837015152, + 0.01925903931260109, + 0.03891595080494881, + 0.005532755050808191, + -0.0181229580193758, + 0.05643192678689957, + -0.01545324269682169, + 0.05607059970498085, + -0.06267130374908447, + -0.07068633288145065, + -0.012372072786092758, + -0.08414541184902191, + 0.015369923785328865, + 0.04047039896249771, + -0.004795990884304047, + -0.05738009139895439, + 0.012400846928358078, + 0.016307685524225235, + -0.04614713788032532, + -0.007415929809212685, + 0.0534256212413311, + 0.04402903467416763, + -0.012011144310235977, + -0.01449081115424633, + 0.03347283974289894, + 0.07409723103046417, + -0.051740895956754684, + 0.06532666087150574, + -0.004125745501369238, + -0.08461320400238037, + 0.007816017605364323, + -0.006810029968619347, + -0.04010927304625511, + 0.00600762665271759, + -0.0006009968346916139, + -0.03594204783439636, + -0.01527758501470089, + 0.009172830730676651, + 0.0015919619472697377, + -0.05391056835651398, + 0.04202044755220413, + 0.030252080410718918, + -0.029549503698945045, + -0.027140149846673012, + 0.011410512030124664, + -0.004741078242659569, + -0.0444774255156517, + 0.09392241388559341, + -0.009740780107676983, + -0.07230963557958603, + 0.03730836510658264, + -0.002836623229086399, + 0.04870244115591049, + -0.040853481739759445, + -0.03222639113664627, + 0.0387575738132, + -0.08076216280460358, + -0.01811150461435318, + -0.08333229273557663, + -2.256207842776803e-08, + -0.05021173134446144, + 0.0063119069673120975, + -0.06133301556110382, + -0.007000760640949011, + -0.0018772712210193276, + 0.030982213094830513, + -0.06424736976623535, + -0.07502792775630951, + -0.06639273464679718, + -0.08842306584119797, + 0.08206258714199066, + -0.00295932381413877, + -0.10003528743982315, + -0.10111883282661438, + 0.008358131162822247, + -0.04337678477168083, + -0.08011258393526077, + 0.024328799918293953, + 0.013857856392860413, + -0.024870039895176888, + -0.016831953078508377, + 0.036179255694150925, + 0.04910777881741524, + -0.009928920306265354, + -0.0015016472898423672, + 0.04407195374369621, + 0.02043272741138935, + -0.00985364243388176, + 0.008698824793100357, + 0.048218511044979095, + 0.03107522614300251, + 0.06985364854335785, + 0.09254151582717896, + -0.030255887657403946, + 0.02778298780322075, + -0.0377507321536541, + -0.008189067244529724, + -0.007300651166588068, + -0.01213565468788147, + 0.08573061972856522, + 0.004146343097090721, + 0.017172841355204582, + -0.030512234196066856, + -0.06911546736955643, + -0.029449759051203728, + 0.03180988132953644, + -0.02040332369506359, + -0.027262359857559204, + -0.042566318064928055, + -0.020924098789691925, + -0.008548321202397346, + -0.08627568930387497, + 0.009534971788525581, + 0.08876010775566101, + -0.096769779920578, + -0.021808424964547157, + 0.05859966576099396, + 0.10297539830207825, + 0.031163081526756287, + -0.01760883443057537, + 0.11162975430488586, + 0.07421913743019104, + 0.02862834371626377, + -0.047881994396448135 + ], + "image-bold||*updated*,pictures,photographs,photography,wallpapers,gallery,landscape": [ + 0.02330884337425232, + -0.00746860122308135, + -0.035907771438360214, + 0.02114582061767578, + 0.08268885314464569, + -0.049929141998291016, + -0.0005122824222780764, + -0.04373626038432121, + -0.015817485749721527, + 0.0032155050430446863, + 0.04212525486946106, + 0.03814928978681564, + 0.07761791348457336, + -0.017168033868074417, + -0.000569869123864919, + 0.015354728326201439, + -0.010087949223816395, + 0.03995953127741814, + -0.02852640114724636, + 0.020621582865715027, + -0.054404791444540024, + 0.0422922745347023, + 0.04815606027841568, + -0.00016989029245451093, + 0.0650097206234932, + 0.016041044145822525, + 0.024266276508569717, + 0.004545822273939848, + 0.014928297139704227, + -0.12335850298404694, + -0.033191513270139694, + 0.05946251004934311, + 0.14842744171619415, + 0.036197058856487274, + 0.03230826184153557, + 0.04235607385635376, + -0.011142773553729057, + 0.008207597769796848, + -0.01056306529790163, + 0.059879183769226074, + -0.016810057684779167, + -0.06615079939365387, + 0.004898452665656805, + 0.01556275226175785, + -0.0018705450929701328, + -0.019372642040252686, + -0.06002722308039665, + -0.043961431831121445, + -0.000818441214505583, + -0.01670154556632042, + -0.07025714218616486, + -0.09691639244556427, + -0.1778118759393692, + -0.009355196729302406, + 0.034345593303442, + -0.02788718231022358, + -0.012659466825425625, + -0.012983975000679493, + 0.0635489821434021, + -0.027458416298031807, + 0.05679110065102577, + 0.043985798954963684, + 0.01453769113868475, + 0.07903998345136642, + 0.05541760474443436, + 0.04090845212340355, + -0.04054915904998779, + -0.04864654317498207, + 0.011440358124673367, + -0.058669645339250565, + 0.03218018263578415, + 0.04104010760784149, + -0.01326010376214981, + -0.02542024664580822, + -0.05611224099993706, + -0.05270187184214592, + 0.013902377337217331, + -0.012462007813155651, + -0.005843086168169975, + -0.11345024406909943, + -0.0059568206779658794, + -0.06219368055462837, + -0.011698763817548752, + 0.0020899400115013123, + 0.07380647957324982, + 0.026101626455783844, + -0.09489759057760239, + -0.06461787223815918, + -0.05240032821893692, + -0.053582388907670975, + -0.04553467780351639, + -0.04899261146783829, + -0.06264769285917282, + 0.02913837321102619, + -0.11248928308486938, + 0.018287135288119316, + 0.03551802039146423, + -0.09534839540719986, + -0.059891942888498306, + 0.08856900781393051, + 0.04893683269619942, + 0.006219201721251011, + 0.05223430320620537, + 0.03741592913866043, + -0.0103571442887187, + -0.032959967851638794, + 0.0017756172455847263, + 0.005898417439311743, + 0.014371774159371853, + 0.012918767519295216, + -0.019643127918243408, + -0.08477336913347244, + -0.09149010479450226, + -0.10566968470811844, + -0.0165746808052063, + -0.07982957363128662, + -0.022610556334257126, + -0.021886300295591354, + 0.10801296681165695, + 0.005580475553870201, + 0.022867048159241676, + -0.007758670020848513, + -0.02603679522871971, + -0.07282836735248566, + -0.03913656994700432, + -0.020695630460977554, + -0.0053832922130823135, + 4.576421749651868e-34, + 0.06493062525987625, + 0.02636701613664627, + 0.0005206107161939144, + 0.11328848451375961, + 0.04164671152830124, + 0.00926294270902872, + -0.07657857984304428, + -0.07353061437606812, + -0.07180581241846085, + -0.007098928093910217, + 0.07522274553775787, + 0.11475914716720581, + -0.06638279557228088, + 0.1218741238117218, + 0.054736170917749405, + -0.010405094362795353, + 0.02892185188829899, + 0.017977003008127213, + -0.048308856785297394, + 0.019405856728553772, + -0.07240808010101318, + 0.024615388363599777, + -0.019544675946235657, + 0.019960347563028336, + -0.021191081032156944, + -0.05255411937832832, + 0.06316371262073517, + -0.03290954604744911, + -0.06327737122774124, + 0.02658393606543541, + -0.004572746809571981, + 0.03023027442395687, + 0.026963340118527412, + -0.0032891284208744764, + -0.03261035308241844, + 0.003677771659567952, + -0.1136588305234909, + -0.031883977353572845, + 0.022597039118409157, + 0.015651363879442215, + -0.08295749127864838, + 0.0019571753218770027, + -0.044174522161483765, + -0.004455113783478737, + 0.04251087084412575, + 0.15832675993442535, + -0.041309110820293427, + -0.03003074787557125, + 0.02657034434378147, + 0.053117819130420685, + 0.025325246155261993, + 0.014302867464721203, + -0.045582935214042664, + -0.01012702938169241, + -0.00934141781181097, + -0.03743781894445419, + -0.014624666422605515, + 0.04010230302810669, + 0.025543086230754852, + -0.018665624782443047, + 0.08241090923547745, + 0.0160825178027153, + -0.00041146992589347064, + -0.0236040111631155, + -0.010406842455267906, + 0.0657300278544426, + -0.025749994441866875, + 0.04281475022435188, + 0.008022955618798733, + 0.030950212851166725, + -0.04303102567791939, + 0.07902242988348007, + 0.04476691037416458, + 0.03949975222349167, + -0.029566660523414612, + 0.02252889610826969, + -0.024537455290555954, + -0.0019561885856091976, + -0.01728428155183792, + -0.021580003201961517, + -0.12201829254627228, + 0.024948235601186752, + -0.058148398995399475, + 0.05049462616443634, + -0.06562649458646774, + 0.021621467545628548, + 0.028547698631882668, + -0.0673966035246849, + -0.0064378660172224045, + 0.03433982655405998, + -0.10009126365184784, + 0.06912747025489807, + -0.028550613671541214, + -0.0435972586274147, + -0.13079632818698883, + -2.8438374834298662e-33, + 0.014189157634973526, + 0.025872884318232536, + -0.0558101050555706, + -0.0056014214642345905, + -0.028003640472888947, + 0.010377021506428719, + 0.01611774042248726, + 0.08320596069097519, + 0.054446738213300705, + 0.02584051340818405, + 0.05002500116825104, + -0.0073927538469433784, + -0.0988137349486351, + -0.08641210198402405, + -0.04517662152647972, + -0.008260666392743587, + 0.03129551559686661, + -0.01433663908392191, + -0.11772330850362778, + 0.08372311294078827, + -0.04085507616400719, + 0.04891248047351837, + -0.07417338341474533, + 0.08517368882894516, + -0.035346899181604385, + 0.07209121435880661, + 0.027818091213703156, + -0.03569575399160385, + -0.023395000025629997, + -0.03742583841085434, + -0.028546042740345, + -0.09006588160991669, + 0.04247463867068291, + 0.05756780877709389, + -0.042028989642858505, + 0.04422040656208992, + 0.08241463452577591, + -0.09458910673856735, + -0.04368056729435921, + 0.06626254320144653, + 0.012552418746054173, + 0.05199979618191719, + 0.027116600424051285, + 0.05008866265416145, + -0.031349822878837585, + -0.07479944080114365, + -0.055280234664678574, + -0.03002081625163555, + -0.015705756843090057, + 0.09158697724342346, + 0.04052869230508804, + -0.02021135576069355, + 0.005114228930324316, + 0.026203488931059837, + -0.019034702330827713, + -0.051191311329603195, + -0.015313009731471539, + 0.04517912119626999, + 0.025817638263106346, + 0.06572093814611435, + -0.02546273171901703, + 0.021625181660056114, + -0.10281949490308762, + -0.00012320477981120348, + -0.04779089242219925, + -0.036888159811496735, + -0.02515570819377899, + -0.0702843889594078, + -0.03915165364742279, + 0.03998111933469772, + 0.03849262744188309, + -0.002925616456195712, + -0.014580905437469482, + 0.02953280135989189, + 0.020552530884742737, + -0.05537307634949684, + 0.10177594423294067, + 0.03941726312041283, + 0.017304357141256332, + -0.030642172321677208, + -0.03717475384473801, + -0.007336959708482027, + -0.03269733861088753, + 0.08202371746301651, + -0.0016582929529249668, + 0.07122199237346649, + -0.053138189017772675, + -0.059436410665512085, + 0.07955995202064514, + -0.04667219892144203, + -0.03774280101060867, + 0.03446339815855026, + -0.009607288986444473, + 0.0032663345336914062, + -0.00032956403447315097, + -2.4119326980098776e-08, + -0.022826602682471275, + -0.02233262173831463, + -0.006440808530896902, + -0.009607789106667042, + 0.02787265181541443, + -0.07242688536643982, + 0.03784159570932388, + -0.021129628643393517, + -0.02693558856844902, + -0.07186268270015717, + 0.09102930128574371, + 0.015929071232676506, + -0.08986891061067581, + -0.01995638944208622, + 0.06290705502033234, + 0.018721656873822212, + 0.005434744525700808, + 0.050256457179784775, + 0.006633915938436985, + -0.05604927986860275, + -0.01427474059164524, + 0.034461479634046555, + 0.02070997655391693, + -0.024398073554039, + 0.03398517519235611, + 0.01566922478377819, + -0.0839981958270073, + -0.014560560695827007, + 0.03976927325129509, + 0.01863432489335537, + 0.07738079875707626, + 0.04665834829211235, + 0.02734396606683731, + -0.018610814586281776, + -0.03558815270662308, + 0.0059542530216276646, + -0.019985945895314217, + -0.03567296266555786, + -0.06590867042541504, + 0.07924076914787292, + 0.002207684563472867, + -0.04076831787824631, + 0.023150146007537842, + 0.0003905169141944498, + 0.02919933572411537, + 0.05453122407197952, + 0.09632514417171478, + -0.008887438103556633, + -0.059927936643362045, + -0.07661601901054382, + -0.05498926714062691, + -0.02450365200638771, + 0.0627407655119896, + 0.10161034017801285, + -0.009817840531468391, + -0.07028631120920181, + 0.062178563326597214, + 0.06540948897600174, + 0.05832500755786896, + 0.07011891156435013, + 0.12237202376127243, + -0.017269082367420197, + -0.03541869670152664, + 0.022793805226683617 + ], + "image-broken-bold||*new*,pictures,photographs,photography,wallpapers,gallery,landscape,missing,error,404": [ + 0.010123373940587044, + -0.012408075854182243, + 0.019310683012008667, + 0.02814178168773651, + 0.09713537991046906, + -0.08076983690261841, + -0.08144094794988632, + -0.045880019664764404, + -0.03295707702636719, + 0.0010631575714796782, + 0.06381460279226303, + 0.0632672905921936, + 0.044178493320941925, + -0.0019035196164622903, + 0.06426381319761276, + 0.02114173024892807, + -0.051259733736515045, + 0.011490351520478725, + -0.04417461156845093, + 0.08544757962226868, + -0.12049287557601929, + 0.04319743439555168, + -0.00010285029566148296, + 0.0002435562782920897, + 0.07272490113973618, + 0.012455031275749207, + -0.054776668548583984, + -0.018503930419683456, + -0.02225818857550621, + -0.1354382187128067, + 0.024541761726140976, + 0.007677016314119101, + 0.07688360661268234, + 0.0037418855354189873, + 0.13959142565727234, + 0.09821532666683197, + -0.02947908267378807, + -0.06182355433702469, + -0.022151567041873932, + 0.03909432515501976, + 0.011356111615896225, + -0.0035334404092282057, + 0.03616145998239517, + -0.005390607751905918, + -0.04746226966381073, + -0.03703846037387848, + 0.004285298753529787, + -0.03626225143671036, + 0.07401523739099503, + -0.022891459986567497, + -0.10214421153068542, + -0.017545269802212715, + -0.08982784301042557, + -0.04514225944876671, + 0.052602123469114304, + -0.03499864786863327, + -0.05020536854863167, + 0.05749835819005966, + 0.04132597893476486, + 0.012846098281443119, + 0.07368003576993942, + 0.024989327415823936, + 0.045827221125364304, + 0.0007170802564360201, + 0.04242661967873573, + 0.037854306399822235, + -0.0480399988591671, + -0.0944211333990097, + 0.01083655096590519, + -0.0021616604644805193, + 0.004035227466374636, + 0.03301863744854927, + -0.08349676430225372, + 0.04322144389152527, + -0.024877013638615608, + -0.041347209364175797, + 0.010410541668534279, + -0.004927817732095718, + -0.0018074044492095709, + -0.04787164553999901, + 0.012000072747468948, + -0.06580973416566849, + -0.004276716616004705, + -0.007924985140562057, + 0.14363518357276917, + 0.02364395000040531, + -0.09513825178146362, + -0.0727275162935257, + -0.011461151763796806, + -0.03818811848759651, + -0.027531756088137627, + -0.06308898329734802, + -0.027778375893831253, + 0.07672113925218582, + -0.043754950165748596, + -0.022298088297247887, + 0.029383612796664238, + -0.04785308986902237, + -0.088448166847229, + 0.0994177833199501, + -0.017429672181606293, + -0.007079847622662783, + 0.07194282114505768, + 0.025766896083950996, + -0.006676051765680313, + 0.03604179620742798, + 0.021603723987936974, + 0.04740940406918526, + -0.018851518630981445, + -0.01725376769900322, + 0.00925987958908081, + -0.0847490131855011, + -0.05352059751749039, + -0.08972308039665222, + -0.03249726817011833, + -0.10163398832082748, + -0.05275852605700493, + -0.07207928597927094, + 0.0037533766590058804, + 0.02888498082756996, + -0.002058361889794469, + -0.045414917171001434, + -0.03794698044657707, + -0.07731655240058899, + -0.0007862838683649898, + -0.025599155575037003, + 0.03198116645216942, + -1.1226561552593142e-33, + 0.01650429144501686, + 0.015645498409867287, + 0.007742125075310469, + 0.09086224436759949, + 0.0878848135471344, + -0.038268979638814926, + -0.05251144617795944, + -0.06645593047142029, + -0.06861819326877594, + -0.05163469910621643, + 0.08936459571123123, + 0.015330811962485313, + -0.041205428540706635, + 0.09134762734174728, + 0.024281887337565422, + 0.001685830415226519, + 0.0885816216468811, + -0.024507425725460052, + -0.03140811249613762, + -0.0018637918401509523, + -0.05744462460279465, + 0.03794592246413231, + -0.05326484888792038, + 0.01676606573164463, + -0.10303834080696106, + 0.03241826221346855, + 0.08287553489208221, + 0.006869045551866293, + -0.025046974420547485, + 0.0073851183988153934, + -0.0042210235260427, + 0.03222237527370453, + 0.06473574787378311, + 0.020389845594763756, + -0.045781005173921585, + -0.01937028206884861, + -0.015413260087370872, + 0.00023109644826035947, + -0.05640479549765587, + 0.04040250927209854, + -0.09134864062070847, + 0.007765160873532295, + -0.04193517193198204, + 0.014618541114032269, + 0.04609929025173187, + 0.13067151606082916, + -0.02172580361366272, + -0.05194071680307388, + 0.017031438648700714, + 0.05777623504400253, + -0.06044386699795723, + 0.0056031146086752415, + -0.021041573956608772, + 0.03712385520339012, + -0.05632553622126579, + 0.00014119951811153442, + -0.07480127364397049, + 0.009262514300644398, + 0.024731114506721497, + -0.05554185435175896, + 0.1318865567445755, + 0.017760301008820534, + -0.016478294506669044, + 0.0015918324934318662, + 0.021150032058358192, + 0.020844267681241035, + -0.01455626729875803, + 0.09409849345684052, + 0.010945327579975128, + 0.007909945212304592, + 0.0030679963529109955, + 0.016253063455224037, + 0.03648864105343819, + 0.08554355055093765, + -0.008326327428221703, + 0.00344274053350091, + 0.016105905175209045, + -0.03638312220573425, + 0.04237421974539757, + -0.018102996051311493, + -0.09972883760929108, + 0.0047145504504442215, + -0.021201692521572113, + 0.004966283217072487, + -0.06753990799188614, + 0.0542546845972538, + 0.0271709356456995, + 0.001060177106410265, + 0.021926816552877426, + 0.09549030661582947, + -0.01661696285009384, + 0.06324037909507751, + -0.05954853817820549, + -0.044253844767808914, + -0.09763069450855255, + -1.5355250360986262e-33, + -0.00389308063313365, + 0.023359376937150955, + -0.07751787453889847, + -0.056923411786556244, + -0.03170166164636612, + -0.003929279278963804, + 0.002541137859225273, + 0.051050398498773575, + 0.05452689900994301, + -0.0038086059503257275, + 0.04334324970841408, + 0.02855537459254265, + -0.031289033591747284, + -0.041420552879571915, + -0.05529255419969559, + -0.0329582653939724, + 0.022925052791833878, + -0.047008294612169266, + -0.087624691426754, + 0.059615831822156906, + 0.006526981480419636, + 0.08347418904304504, + -0.04654841870069504, + 0.07858044654130936, + -0.05959037318825722, + 0.09938948601484299, + 0.03318513184785843, + -0.02905367501080036, + -0.018215596675872803, + -0.025892367586493492, + 0.02577904798090458, + -0.027978040277957916, + 0.033483512699604034, + 0.1050594300031662, + 0.06104184314608574, + 0.04519401118159294, + 0.013091697357594967, + -0.05455964431166649, + -0.053145602345466614, + -0.05248214304447174, + 0.03869956359267235, + 0.009210352785885334, + 0.03922551870346069, + 0.005621365271508694, + -0.015459971502423286, + -0.08263576775789261, + 0.005184960551559925, + -0.07101918756961823, + 0.0035565258003771305, + 0.09618798643350601, + 0.06916972994804382, + -0.07929141819477081, + 0.060200948268175125, + -0.024485385045409203, + -0.05029775947332382, + -0.017495108768343925, + -0.004122341517359018, + 0.05923258513212204, + 0.008005787618458271, + 0.06801299750804901, + -0.012361841276288033, + 0.062489431351423264, + -0.12999585270881653, + -0.010908040218055248, + -0.0116500835865736, + -0.023942481726408005, + -0.023151442408561707, + 0.006052406504750252, + 0.012522073462605476, + 0.01682937517762184, + -0.07267934828996658, + 0.05192195996642113, + 0.043592941015958786, + -0.002477274276316166, + 0.07156536728143692, + 0.00048390388838015497, + 0.015850575640797615, + 0.07030848413705826, + 0.017144981771707535, + -0.007313442416489124, + 0.018724707886576653, + -0.0221552774310112, + -0.07317957282066345, + 0.003906962461769581, + 0.013032328337430954, + 0.006046248599886894, + -0.01859840750694275, + -0.03199922665953636, + 0.01377316378057003, + -0.09937243908643723, + -0.03341277316212654, + -0.0013298658886924386, + 0.010851291008293629, + 0.04679040238261223, + 0.006460612639784813, + -2.650915575941326e-08, + -0.023298010230064392, + -0.00738156633451581, + -0.06381751596927643, + -0.012656292878091335, + 0.11867405474185944, + -0.10701003670692444, + 0.016550568863749504, + -0.051697082817554474, + -0.013266358524560928, + -0.024946482852101326, + -0.009348316118121147, + -0.011832394637167454, + -0.045447781682014465, + -0.022812340408563614, + -0.020857682451605797, + -0.07685180753469467, + -0.05675419420003891, + 0.1057094931602478, + 0.0117717906832695, + -0.08823101222515106, + -0.06876132637262344, + -0.016920899972319603, + 0.028516123071312904, + -0.07728949189186096, + 0.04332900419831276, + 0.008566068485379219, + -0.054553840309381485, + -0.04171690717339516, + 0.014846562407910824, + -0.016965080052614212, + 0.021598605439066887, + 0.041832879185676575, + 0.033889781683683395, + -0.045787785202264786, + -0.03950021043419838, + -0.02233140729367733, + 0.014192909002304077, + -0.010868924669921398, + -0.07486087828874588, + -0.036860689520835876, + 0.015775196254253387, + 0.027446605265140533, + 0.06711932271718979, + -0.04931061714887619, + -0.02734844572842121, + -0.010366973467171192, + 0.08865895867347717, + 0.06854408979415894, + -0.019463757053017616, + -0.04821574687957764, + -0.019416451454162598, + 0.0009936660062521696, + 0.0471641831099987, + 0.07652170956134796, + -0.0023767175152897835, + -0.09417261183261871, + 0.06049714982509613, + 0.10078398138284683, + 0.020875325426459312, + 0.05449918285012245, + 0.1349271535873413, + -0.035048797726631165, + -0.0380706861615181, + 0.04800618812441826 + ], + "image-square-bold||pictures,photographs,photography,wallpapers,gallery,landscape": [ + 0.05954311788082123, + 0.01373233087360859, + -0.02534993179142475, + 0.03781644627451897, + 0.021765001118183136, + -0.018968332558870316, + -0.0011884570121765137, + -0.02603922039270401, + 0.007235696539282799, + -0.02686021849513054, + 0.05512799322605133, + 0.05430483818054199, + 0.10326258838176727, + 0.020140869542956352, + -0.02255776710808277, + 0.0175222996622324, + -0.022124258801341057, + 0.028738824650645256, + -0.004346930887550116, + 0.029821909964084625, + -0.031732574105262756, + 0.008140099234879017, + 0.02577391266822815, + -0.010359053499996662, + 0.03711015731096268, + 0.005254827905446291, + 0.04747490584850311, + 0.04565209522843361, + 0.03377266600728035, + -0.11118990927934647, + -0.009178820066154003, + 0.06218147277832031, + 0.1150728091597557, + 0.03072196990251541, + 0.014175862073898315, + 0.06244935095310211, + -0.021622149273753166, + 0.028109747916460037, + 0.010496044531464577, + 0.05294882878661156, + -0.0009619525517337024, + -0.08974264562129974, + 0.028124887496232986, + 0.00800380390137434, + 0.00803464837372303, + -0.04036800190806389, + -0.03059539943933487, + -0.021535174921154976, + 0.005937227979302406, + -0.046171221882104874, + -0.05620535835623741, + -0.09379688650369644, + -0.17157518863677979, + -0.014853117987513542, + 0.05071353167295456, + -0.03364984691143036, + -0.002447212114930153, + -0.01957165077328682, + 0.09012307971715927, + -0.008745810016989708, + 0.05973533168435097, + 0.026212448254227638, + -0.011973923072218895, + 0.07701781392097473, + 0.015632670372724533, + 0.05555858835577965, + -0.05176011845469475, + -0.026933664456009865, + -0.007150901947170496, + -0.05140259861946106, + 0.05183996632695198, + 0.06775803118944168, + -0.0186019204556942, + -0.018999973312020302, + -0.023381369188427925, + -0.10266079008579254, + -0.010206242091953754, + -0.03390350192785263, + -0.011800934560596943, + -0.06237373873591423, + -0.015200777910649776, + -0.02990015223622322, + -0.03921588510274887, + 0.011179015971720219, + 0.02374275028705597, + 0.023422440513968468, + -0.06108950078487396, + -0.07297457754611969, + -0.043356359004974365, + -0.08050772547721863, + -0.06655384600162506, + -0.029564669355750084, + -0.058326222002506256, + 0.05514977127313614, + -0.08340205252170563, + -0.017337484285235405, + 0.056970905512571335, + -0.09181570261716843, + -0.06360674649477005, + 0.054529719054698944, + 0.07461702823638916, + -0.02108146622776985, + 0.05797604098916054, + 0.0056783040054142475, + 0.03589573875069618, + -0.04926079139113426, + 0.04597453400492668, + -0.018776940181851387, + 0.04008594900369644, + -0.008857771754264832, + -0.022941455245018005, + -0.09112904220819473, + -0.07418420910835266, + -0.04797283187508583, + -0.025277938693761826, + -0.06955808401107788, + -0.027657393366098404, + -0.04885578900575638, + 0.12990647554397583, + -0.016462840139865875, + 0.02014889568090439, + 0.01265120692551136, + -0.018905503675341606, + -0.08172785490751266, + -0.024349169805645943, + -0.0017014360055327415, + -0.02674567885696888, + -8.350569523222486e-34, + 0.047536492347717285, + 0.07120093703269958, + 0.03744278848171234, + 0.12774775922298431, + 0.06414119154214859, + -0.03275658190250397, + -0.0681653544306755, + -0.07532581686973572, + -0.016527485102415085, + 0.022066714242100716, + 0.04973963275551796, + 0.04984162375330925, + -0.09817562997341156, + 0.14491280913352966, + 0.09842872619628906, + -0.00015310762682929635, + 0.05049145221710205, + 0.027099695056676865, + -0.0295761376619339, + 0.009982001967728138, + -0.07314373552799225, + 0.048137664794921875, + -0.027390453964471817, + 0.044280871748924255, + -0.024795519188046455, + -0.03894863650202751, + 0.06873296946287155, + -0.050284530967473984, + -0.01095714420080185, + 0.04921018332242966, + 0.030485132709145546, + 0.07587984204292297, + 0.010699283331632614, + -0.023692641407251358, + -0.01700732111930847, + -0.0033686787355691195, + -0.05802781507372856, + -0.011236133985221386, + 0.03993899002671242, + 0.023302463814616203, + -0.0743788555264473, + 0.01893131621181965, + -0.021499844267964363, + -0.012023277580738068, + 0.07318475097417831, + 0.1253032237291336, + 0.019047748297452927, + -0.022278085350990295, + -0.006726513616740704, + 0.03966602683067322, + 0.011772407218813896, + -0.010068172588944435, + -0.0432925671339035, + 0.021977774798870087, + 0.03924058750271797, + -0.05743061751127243, + -0.0501236692070961, + 0.03012319840490818, + 0.020086485892534256, + 0.02284458838403225, + 0.06907927244901657, + 0.007880707271397114, + -0.015304185450077057, + -0.03064810298383236, + -0.029445817694067955, + 0.042681191116571426, + -0.049079108983278275, + -0.007380228023976088, + -0.039943259209394455, + 0.048279352486133575, + -0.03429991006851196, + 0.04184066504240036, + 0.06380905210971832, + 0.013977555558085442, + -0.0058726598508656025, + 0.039784688502550125, + -0.010179269127547741, + -0.003638587426394224, + -0.011680533178150654, + -0.033065661787986755, + -0.14987771213054657, + 0.06710315495729446, + -0.07621516287326813, + -0.022795120254158974, + -0.09016410261392593, + -0.007672138512134552, + 0.0220748633146286, + -0.08877445012331009, + -0.0013114833272993565, + 0.007467258255928755, + -0.10766743868589401, + 0.0834038183093071, + -0.008272550068795681, + -0.004732372704893351, + -0.1428098827600479, + -1.1690365705679537e-33, + -0.010488760657608509, + 0.060974761843681335, + -0.0630083903670311, + 0.003865651786327362, + -0.0019910524133592844, + 0.008173796348273754, + 0.03923848643898964, + 0.03577691689133644, + 0.03398548439145088, + 0.03336089104413986, + 0.01930287852883339, + -0.018281778320670128, + -0.09512627124786377, + -0.09937003254890442, + -0.021048160269856453, + -0.007540421560406685, + 0.07990752905607224, + -0.033784668892621994, + -0.13243091106414795, + 0.042007025331258774, + -0.03158773109316826, + 0.019784647971391678, + -0.023703062906861305, + 0.061879824846982956, + -0.04279296472668648, + 0.11419548094272614, + 0.019823044538497925, + -0.04707859829068184, + -0.008148216642439365, + 0.04164841026067734, + -0.041448112577199936, + -0.0911664366722107, + 0.05823089927434921, + 0.03791249543428421, + -0.06889364123344421, + 0.01911894604563713, + 0.04850328341126442, + -0.10136796534061432, + -0.040027469396591187, + 0.02216237410902977, + 0.0179958026856184, + 0.01344175636768341, + 0.0316750667989254, + 0.08087407797574997, + -0.014041325077414513, + -0.07594171166419983, + -0.007403955794870853, + -0.04188620299100876, + 0.00035209752968512475, + 0.044513750821352005, + -0.011504551395773888, + -0.01615406759083271, + 0.0014249818632379174, + 0.04035959020256996, + -0.03286204859614372, + -0.06736446171998978, + -0.025832677260041237, + 0.06853363662958145, + 0.027238765731453896, + 0.10152600705623627, + -0.02363472431898117, + 0.0009385933517478406, + -0.11779456585645676, + -0.009337211027741432, + -0.07569334656000137, + -0.011932837776839733, + -0.005855245050042868, + -0.023079518228769302, + -0.03892115131020546, + 0.10697434842586517, + 0.019814087077975273, + 0.04779058322310448, + 0.0025688051246106625, + 0.017016585916280746, + -0.014380902983248234, + -0.018340930342674255, + 0.04705363139510155, + 0.02865932323038578, + -0.0022208276204764843, + 0.019371377304196358, + -0.025519847869873047, + -0.008417992852628231, + -0.04054907336831093, + 0.045277997851371765, + -0.0011181095615029335, + 0.0345970056951046, + -0.05482068285346031, + -0.02792487107217312, + 0.06278083473443985, + -0.038035836070775986, + -0.004577307030558586, + 0.04066018760204315, + -0.04372372478246689, + 0.0010423270286992192, + 0.025266457349061966, + -2.171463719946587e-08, + -0.027035219594836235, + -0.019113978371024132, + 0.026078926399350166, + -0.05277525261044502, + -0.009453164413571358, + -0.10825134813785553, + 0.04120194539427757, + -0.003011836903169751, + -0.02312874048948288, + -0.05184624344110489, + 0.05204390361905098, + 0.024035828188061714, + -0.10757406800985336, + -0.02707797661423683, + 0.04921593889594078, + 0.020909354090690613, + -0.004643856082111597, + 0.04340864345431328, + 0.0069674281403422356, + -0.041825320571660995, + -0.004504306707531214, + -0.020601728931069374, + -0.005313037429004908, + -0.008297277614474297, + -0.04720411077141762, + 0.02001442201435566, + -0.08338480442762375, + -0.01473432406783104, + 0.04157385602593422, + 0.037116196006536484, + 0.091387078166008, + 0.07515238225460052, + 0.02246326394379139, + -0.008559362962841988, + -0.03654983267188072, + -0.052179720252752304, + -0.02419450879096985, + -0.03944455459713936, + -0.09108904004096985, + 0.030873792245984077, + 0.016614394262433052, + -0.07561934739351273, + 0.055717337876558304, + 7.21889446140267e-05, + 0.07606157660484314, + 0.08121243864297867, + 0.143229678273201, + 0.02513105422258377, + -0.04649362713098526, + -0.055318914353847504, + -0.06327693909406662, + -0.022603485733270645, + 0.047039058059453964, + 0.11139077693223953, + -0.025470376014709473, + -0.07245505601167679, + 0.03433562442660332, + 0.041698817163705826, + 0.03773725777864456, + 0.045361753553152084, + 0.09820665419101715, + 0.007542103063315153, + -0.06198221072554588, + 0.02970988303422928 + ], + "images-bold||*updated*,pictures,photographs,photography,wallpapers,gallery,landscape,album": [ + 0.02515507861971855, + -0.003596022492274642, + -0.035609643906354904, + 0.03224699944257736, + 0.06000500172376633, + -0.042299509048461914, + 0.009180838242173195, + -0.0359693318605423, + 0.007997497916221619, + 0.011187783442437649, + 0.050565436482429504, + 0.03890503570437431, + 0.08227277547121048, + -0.02138315699994564, + -0.011454339139163494, + 0.02590903826057911, + -0.0010168091394007206, + 0.03994886949658394, + -0.027339139953255653, + 0.03927784040570259, + -0.05327845737338066, + 0.04488284885883331, + 0.06524805724620819, + 0.017795367166399956, + 0.05441468581557274, + 0.014423432759940624, + -0.0007266775937750936, + -0.001672418205998838, + 0.007026600185781717, + -0.11737708002328873, + -0.03458094969391823, + 0.04838620871305466, + 0.13200441002845764, + 0.03011806309223175, + 0.046856243163347244, + 0.03888920694589615, + -0.01287579070776701, + 0.008811180479824543, + -0.021507298573851585, + 0.056895431131124496, + -0.0033644705545157194, + -0.059998881071805954, + -0.009861565195024014, + 0.0205952450633049, + -0.00944683887064457, + -0.022165771573781967, + -0.05358678475022316, + -0.04619370400905609, + -0.026476258412003517, + 0.0018700435757637024, + -0.06951668858528137, + -0.0785345807671547, + -0.17685173451900482, + -0.015321627259254456, + 0.034665025770664215, + -0.04783398658037186, + -0.03489922359585762, + -0.002280203392729163, + 0.05945883318781853, + -0.009506936185061932, + 0.07339994609355927, + 0.030018547549843788, + 0.01705552637577057, + 0.07663043588399887, + 0.03881814330816269, + 0.040213946253061295, + -0.029576191678643227, + -0.03022884763777256, + 0.007780071813613176, + -0.05579860880970955, + 0.049049001187086105, + 0.04991166293621063, + -0.012839782983064651, + -0.0004991519381292164, + -0.05412258207798004, + -0.05947011709213257, + 0.015309278853237629, + -0.015094994567334652, + -0.028527211397886276, + -0.10530639439821243, + -0.01486213319003582, + -0.06729832291603088, + -0.009598332457244396, + -0.021798470988869667, + 0.05616088584065437, + 0.005100058391690254, + -0.09024052321910858, + -0.06470735371112823, + -0.07789458334445953, + -0.07726716995239258, + -0.05064237117767334, + -0.050064388662576675, + -0.0419730618596077, + 0.020682156085968018, + -0.10950122773647308, + 0.009893440641462803, + 0.045822177082300186, + -0.08105862885713577, + -0.0629134252667427, + 0.08666549623012543, + 0.055259108543395996, + 0.03235958516597748, + 0.05638309568166733, + 0.0379798524081707, + -0.020119700580835342, + -0.041982632130384445, + -0.008271891623735428, + -0.002555662300437689, + 0.0026243869215250015, + 0.02059541456401348, + -0.02489680051803589, + -0.08509036898612976, + -0.09317462146282196, + -0.10876031965017319, + -0.012706201523542404, + -0.09408936649560928, + -0.03605138882994652, + -0.007411646656692028, + 0.11223696172237396, + -0.013757102191448212, + 0.015119180083274841, + -0.013528131879866123, + -0.010678906925022602, + -0.07448257505893707, + -0.055310189723968506, + -0.03338385000824928, + -0.004089931957423687, + 4.75469878410101e-34, + 0.06504856050014496, + 0.017265155911445618, + -0.007061404176056385, + 0.10690110176801682, + 0.04512179642915726, + -0.015228891745209694, + -0.0759548470377922, + -0.059444792568683624, + -0.06303400546312332, + 0.004041638225317001, + 0.07089879363775253, + 0.11014730483293533, + -0.056363530457019806, + 0.11896030604839325, + 0.07039373368024826, + -0.00010930105054285377, + 0.023216107860207558, + 0.01754443533718586, + -0.018899211660027504, + 0.001543834456242621, + -0.08044153451919556, + 0.015353146940469742, + -0.005226484499871731, + 0.02825162746012211, + -0.012722144834697247, + -0.05651561915874481, + 0.05627089738845825, + -0.05071282014250755, + -0.05671766400337219, + 0.02349192276597023, + -0.013994087465107441, + 0.032094016671180725, + 0.03854616731405258, + -0.01656288281083107, + -0.01400769967585802, + 0.01598854921758175, + -0.111149363219738, + -0.03525596857070923, + 0.0213927049189806, + -0.0021468119230121374, + -0.05765019357204437, + 0.0006801264826208353, + -0.057843130081892014, + 0.009071464650332928, + 0.03862537816166878, + 0.16987332701683044, + -0.046886272728443146, + -0.02737930603325367, + 0.03629172593355179, + 0.03412698209285736, + 0.033893950283527374, + 0.011839941143989563, + -0.060057248920202255, + 0.0005968577461317182, + 0.010274255648255348, + -0.030831357464194298, + -0.025859348475933075, + 0.030783938243985176, + 0.02704753167927265, + -0.012820020318031311, + 0.08559306710958481, + 0.030415156856179237, + 0.007331377826631069, + -0.01882036402821541, + -0.015256359241902828, + 0.07079920917749405, + -0.00807760190218687, + 0.0330486036837101, + 0.013021367602050304, + 0.027893759310245514, + -0.057051755487918854, + 0.06824134290218353, + 0.03754940629005432, + 0.023611469194293022, + -0.020606717094779015, + 0.020456312224268913, + -0.027260195463895798, + -0.016047900542616844, + -0.027806829661130905, + -0.012153233401477337, + -0.1291891634464264, + 0.022489406168460846, + -0.05481822043657303, + 0.06496545672416687, + -0.06361918151378632, + 0.030348187312483788, + 0.02316497452557087, + -0.07405415177345276, + -0.005045521538704634, + 0.03310266137123108, + -0.09898513555526733, + 0.0823139026761055, + -0.015541721135377884, + -0.05225304886698723, + -0.1330556869506836, + -3.172442521098421e-33, + 0.02780594862997532, + 0.016685692593455315, + -0.05979080870747566, + -0.008677876554429531, + -0.016920417547225952, + 0.016304800286889076, + 0.015439692884683609, + 0.09698058664798737, + 0.05144273117184639, + 0.02237609215080738, + 0.02484082244336605, + -0.016234630718827248, + -0.10992871969938278, + -0.09387700259685516, + -0.06259281188249588, + -0.026601089164614677, + 0.05080017074942589, + -0.011673036031425, + -0.10910157114267349, + 0.059718962758779526, + -0.04158255457878113, + 0.04147849604487419, + -0.0657128393650055, + 0.09457659721374512, + -0.02433071658015251, + 0.0740923061966896, + 0.035705991089344025, + -0.043668001890182495, + -0.01857324317097664, + -0.03069630078971386, + -0.013577638193964958, + -0.09608910977840424, + 0.04458966851234436, + 0.04705987498164177, + -0.03757404163479805, + 0.0416274331510067, + 0.08777665346860886, + -0.0703837126493454, + -0.05178479477763176, + 0.06655576825141907, + -0.0051087625324726105, + 0.05802793800830841, + 0.02705874852836132, + 0.06470756977796555, + -0.009249420836567879, + -0.09504476934671402, + -0.0673232302069664, + -0.022252852097153664, + -0.0141340596601367, + 0.08176909387111664, + 0.03987585008144379, + -0.03761515021324158, + 0.008959267288446426, + 0.005728254560381174, + -0.012485701590776443, + -0.04553352668881416, + -0.027258416637778282, + 0.02690694108605385, + 0.0418412871658802, + 0.07061389833688736, + -0.027980243787169456, + 0.011229684576392174, + -0.10912857204675674, + -0.0027329805307090282, + -0.07539410889148712, + -0.04466995224356651, + -0.02087702602148056, + -0.06436388939619064, + -0.04743959754705429, + 0.04738423228263855, + 0.03164596110582352, + -0.007120579015463591, + -0.016694802790880203, + 0.040617719292640686, + 0.022043639793992043, + -0.052075307816267014, + 0.10028854012489319, + 0.03695787489414215, + 0.01592981442809105, + -0.033574581146240234, + -0.041956473141908646, + 0.0003670263395179063, + -0.025852451100945473, + 0.08255840092897415, + 0.018383508548140526, + 0.05392434448003769, + -0.04905496537685394, + -0.07667985558509827, + 0.07152729481458664, + -0.033481668680906296, + -0.007101096212863922, + 0.01699836552143097, + -0.005759180523455143, + 0.019216271117329597, + 0.0022189246956259012, + -2.5118186641748252e-08, + -0.009739026427268982, + -0.004963024519383907, + -0.005439486354589462, + -0.015351084992289543, + 0.029664253816008568, + -0.0664350762963295, + 0.0260385200381279, + -0.015873102471232414, + -0.03302674740552902, + -0.06948788464069366, + 0.09549088031053543, + 0.0035169704351574183, + -0.09414149820804596, + 8.221142343245447e-05, + 0.05139036849141121, + 0.02242310158908367, + 0.011917942203581333, + 0.045264970511198044, + 0.01541128009557724, + -0.06370680779218674, + -0.01746019721031189, + 0.025065995752811432, + 0.03838095813989639, + -0.04465596377849579, + 0.030615275725722313, + 0.014982417225837708, + -0.07861966639757156, + -0.02102903090417385, + 0.03137838840484619, + 0.022038234397768974, + 0.06516935676336288, + 0.05256328359246254, + 0.0341622494161129, + -0.004958833567798138, + -0.026984771713614464, + -0.01775362715125084, + -0.01170402579009533, + -0.033063314855098724, + -0.08522845804691315, + 0.0621744841337204, + 0.010960327461361885, + -0.03953559324145317, + 0.03352782502770424, + 0.0037202651146799326, + 0.021643932908773422, + 0.049354419112205505, + 0.0996583104133606, + 0.0040052505210042, + -0.06666292995214462, + -0.06775276362895966, + -0.06263742595911026, + -0.02646062523126602, + 0.07600963115692139, + 0.09403440356254578, + -0.012171818874776363, + -0.06324225664138794, + 0.059710901230573654, + 0.08261901885271072, + 0.05086822062730789, + 0.06651895493268967, + 0.1229061484336853, + -0.024902787059545517, + -0.023407673463225365, + 0.023096755146980286 + ], + "images-square-bold||pictures,photographs,photography,wallpapers,gallery,landscape,album": [ + 0.06282288581132889, + 0.018780073150992393, + -0.027908366173505783, + 0.052219320088624954, + 0.002828279510140419, + -0.015433522872626781, + 0.011185365729033947, + -0.025808602571487427, + 0.0401529036462307, + -0.01823999360203743, + 0.06115725263953209, + 0.0529327392578125, + 0.10786928236484528, + 0.013474010862410069, + -0.0385940857231617, + 0.021236594766378403, + -0.02383948676288128, + 0.023342551663517952, + -0.005544751882553101, + 0.044352248311042786, + -0.03256265074014664, + 0.008111833594739437, + 0.03420233353972435, + 0.00323017337359488, + 0.02589564211666584, + 0.010067550465464592, + 0.016418732702732086, + 0.05166707560420036, + 0.026999585330486298, + -0.10209353268146515, + -0.005133397411555052, + 0.046082597225904465, + 0.10179097950458527, + 0.027232704684138298, + 0.028751632198691368, + 0.06407488882541656, + -0.026864707469940186, + 0.03634587302803993, + 0.00980151817202568, + 0.05511054769158363, + 0.01090193074196577, + -0.0798281878232956, + 0.008861007168889046, + 0.0108686164021492, + -0.006514439824968576, + -0.04222240298986435, + -0.034529320895671844, + -0.02537420019507408, + -0.012139815837144852, + -0.037553053349256516, + -0.053023673593997955, + -0.07472134381532669, + -0.17067494988441467, + -0.026345716789364815, + 0.04547755792737007, + -0.04666205123066902, + -0.007916092872619629, + -0.011503005400300026, + 0.08383107930421829, + 0.010841578245162964, + 0.06702356785535812, + 0.009107357822358608, + -0.004746300168335438, + 0.07037695497274399, + -0.004815088585019112, + 0.06948719173669815, + -0.04011233150959015, + -0.013939200900495052, + -0.008088412694633007, + -0.050254181027412415, + 0.07241514325141907, + 0.08236803859472275, + -0.013754311949014664, + 0.0011574833188205957, + -0.018706437200307846, + -0.116838738322258, + -0.009350256994366646, + -0.039550818502902985, + -0.02317332662642002, + -0.04818115383386612, + -0.02790386602282524, + -0.03799561411142349, + -0.03265339136123657, + -0.0053159091621637344, + 0.012419409118592739, + 0.014194181188941002, + -0.05220593512058258, + -0.07449401170015335, + -0.07111577689647675, + -0.10541820526123047, + -0.07274340093135834, + -0.028488315641880035, + -0.03659890219569206, + 0.05141912028193474, + -0.0823071077466011, + -0.014952307567000389, + 0.07450616359710693, + -0.07177316397428513, + -0.0689859539270401, + 0.05305824056267738, + 0.08602150529623032, + 0.0006662925588898361, + 0.05382406711578369, + 0.011344841681420803, + 0.023762580007314682, + -0.05542046204209328, + 0.043737396597862244, + -0.023319724947214127, + 0.032343488186597824, + -0.006388150155544281, + -0.028384195640683174, + -0.08904280513525009, + -0.07433991879224777, + -0.0463508777320385, + -0.026853162795305252, + -0.08015294373035431, + -0.04427695274353027, + -0.045139994472265244, + 0.12403307855129242, + -0.031693533062934875, + 0.022644778713583946, + 0.002775799483060837, + -0.0038837306201457977, + -0.07557635009288788, + -0.03206641599535942, + -0.010163241997361183, + -0.022311314940452576, + -1.0093721116316395e-33, + 0.03997315093874931, + 0.0594245083630085, + 0.03970973938703537, + 0.11319538205862045, + 0.06914612650871277, + -0.05888127535581589, + -0.06663406640291214, + -0.07064305245876312, + -0.00034926499938592315, + 0.03499947488307953, + 0.03574610501527786, + 0.042518243193626404, + -0.09362683445215225, + 0.13845738768577576, + 0.1063317209482193, + 0.006518174894154072, + 0.05633349344134331, + 0.03442131727933884, + -0.0008729242254048586, + -0.016952548176050186, + -0.08082885295152664, + 0.03804294019937515, + -0.010745425708591938, + 0.051317788660526276, + -0.013294151984155178, + -0.03927537053823471, + 0.062151361256837845, + -0.06211472675204277, + -0.007271236274391413, + 0.04636583477258682, + 0.03460311517119408, + 0.07428541779518127, + 0.021240193396806717, + -0.030071068555116653, + -0.0028726235032081604, + 0.004600332584232092, + -0.05659358948469162, + 0.0026389947161078453, + 0.03612488880753517, + 0.002328533912077546, + -0.047506775707006454, + 0.014683227054774761, + -0.027774889022111893, + -0.003504423890262842, + 0.06873499602079391, + 0.13324783742427826, + 0.006776112597435713, + -0.021094046533107758, + -0.0008265666547231376, + 0.012606947682797909, + 0.012868923135101795, + -0.008104948326945305, + -0.056751687079668045, + 0.0262144822627306, + 0.060604725033044815, + -0.05514046922326088, + -0.055412229150533676, + 0.03333591669797897, + 0.022632166743278503, + 0.029031721875071526, + 0.07337400317192078, + 0.017947837710380554, + -0.005665060598403215, + -0.02978830598294735, + -0.033424269407987595, + 0.045264601707458496, + -0.03288548067212105, + -0.0274112056940794, + -0.032713793218135834, + 0.04578925296664238, + -0.050747837871313095, + 0.03072013519704342, + 0.06158983334898949, + 0.0036934297531843185, + 0.002717965980991721, + 0.03368352726101875, + -0.007548938971012831, + -0.0066693807020783424, + -0.019996277987957, + -0.025255857035517693, + -0.14539317786693573, + 0.05931615084409714, + -0.06992246955633163, + -0.019853368401527405, + -0.08790063858032227, + -0.004035043530166149, + 0.02457045204937458, + -0.08854487538337708, + -0.003244915045797825, + 0.008030734956264496, + -0.10139164328575134, + 0.1037825271487236, + -0.010787813924252987, + -0.012999949045479298, + -0.1427428126335144, + -1.1682411833357294e-33, + 0.0003673975879792124, + 0.057192523032426834, + -0.07347223162651062, + 0.004092341288924217, + 0.007703306153416634, + 0.014096357859671116, + 0.02629166468977928, + 0.04790053516626358, + 0.031519945710897446, + 0.03269978240132332, + 0.0044547682628035545, + -0.031528737396001816, + -0.11025243252515793, + -0.1130266860127449, + -0.04019109159708023, + -0.01746118813753128, + 0.09980463981628418, + -0.03436099365353584, + -0.11939041316509247, + 0.02274874597787857, + -0.039195504039525986, + 0.010192963294684887, + -0.015879247337579727, + 0.07180166244506836, + -0.026040351018309593, + 0.1095641627907753, + 0.03056788630783558, + -0.051791682839393616, + 0.007178808096796274, + 0.05374123156070709, + -0.023006746545433998, + -0.09188791364431381, + 0.04903239756822586, + 0.03296342492103577, + -0.05942121520638466, + 0.002850495744496584, + 0.05222673714160919, + -0.09000647068023682, + -0.04885656386613846, + 0.024481792002916336, + -0.0024046546313911676, + 0.024884510785341263, + 0.03125082328915596, + 0.09278354793787003, + 0.013139241375029087, + -0.10001266747713089, + -0.008826329372823238, + -0.037621911615133286, + 0.0033512304071336985, + 0.034759461879730225, + -0.0028299347031861544, + -0.03872067853808403, + 0.005505010485649109, + 0.025462022051215172, + -0.022053612396121025, + -0.04887869954109192, + -0.0423537939786911, + 0.05784057825803757, + 0.04390892758965492, + 0.09837803989648819, + -0.02393294870853424, + -0.0025284180883318186, + -0.1165081188082695, + -0.015743354335427284, + -0.0940307155251503, + -0.017980560660362244, + -0.006971848197281361, + -0.017347870394587517, + -0.049456637352705, + 0.11872240900993347, + 0.005690802354365587, + 0.03599397465586662, + -0.009167411364614964, + 0.025514068081974983, + -0.0061138891614973545, + -0.02164338529109955, + 0.03216800466179848, + 0.025591250509023666, + -0.0041967821307480335, + 0.02149231918156147, + -0.02630820870399475, + 0.007522192783653736, + -0.034281741827726364, + 0.042989496141672134, + 0.015464105643332005, + 0.016403095796704292, + -0.03956985846161842, + -0.026397159323096275, + 0.054368965327739716, + -0.02425757609307766, + 0.019405292347073555, + 0.025301799178123474, + -0.038628797978162766, + 0.016674596816301346, + 0.026127448305487633, + -2.2191974480278986e-08, + -0.019591884687542915, + -0.0052334037609398365, + 0.02437167428433895, + -0.058009032160043716, + 0.0001357954606646672, + -0.11025135219097137, + 0.02960912324488163, + 0.0012391002383083105, + -0.03750072792172432, + -0.05895541235804558, + 0.061481691896915436, + 0.01788562349975109, + -0.11728505790233612, + -0.009940416552126408, + 0.033282894641160965, + 0.018028929829597473, + -0.007784409914165735, + 0.0407986119389534, + 0.01871855929493904, + -0.047350578010082245, + -0.008667947724461555, + -0.02318916656076908, + 0.005587317980825901, + -0.019831569865345955, + -0.04680502414703369, + 0.018914230167865753, + -0.07939178496599197, + -0.023857111111283302, + 0.025391673669219017, + 0.03705157712101936, + 0.08012491464614868, + 0.07572155445814133, + 0.03361319378018379, + 0.005365114193409681, + -0.0210771132260561, + -0.06998647004365921, + -0.01931503228843212, + -0.03312211483716965, + -0.10637234151363373, + 0.015466975048184395, + 0.03279620409011841, + -0.0775313675403595, + 0.05825575813651085, + -0.0007373857661150396, + 0.06703750044107437, + 0.06989958882331848, + 0.13725242018699646, + 0.04130019247531891, + -0.04801682382822037, + -0.053451161831617355, + -0.06079620122909546, + -0.026527561247348785, + 0.052942655980587006, + 0.1054668128490448, + -0.031867481768131256, + -0.07041133940219879, + 0.03122767060995102, + 0.053247321397066116, + 0.030773106962442398, + 0.03501790761947632, + 0.09518628567457199, + 0.008838944137096405, + -0.050278712064027786, + 0.02032431773841381 + ], + "infinity-bold||infinite,lemniscate,figure-eight,mathematics,arithmetic,calculator,\u221e": [ + -0.034385599195957184, + 0.03642160817980766, + -0.022140227258205414, + 0.017949895933270454, + -0.02204255759716034, + -0.020260117948055267, + 0.0019411593675613403, + 0.0721939206123352, + 0.0017574268858879805, + 0.01598145067691803, + -0.01506454311311245, + -0.04150785878300667, + 0.0762510672211647, + -0.024739954620599747, + -0.026917854323983192, + -0.01776469498872757, + 0.015025828033685684, + -0.08092999458312988, + -0.020611753687262535, + 0.009275587275624275, + 0.1572342813014984, + 0.008315451443195343, + 0.002484599594026804, + 0.06526423245668411, + 0.05768398940563202, + -0.013117950409650803, + 0.022566858679056168, + -0.05544303357601166, + 0.06397193670272827, + -0.0408720001578331, + -0.11282295733690262, + -0.0008365624235011637, + 0.08211204409599304, + 0.05301714688539505, + 0.06145372614264488, + 0.07232238352298737, + 0.03911759331822395, + 0.027647608891129494, + 0.03901083022356033, + 0.05879632383584976, + -0.07510709762573242, + -0.042219795286655426, + 0.006992361042648554, + 0.02503475360572338, + -0.04478215053677559, + -0.08075427263975143, + -0.06289222836494446, + 0.009844806976616383, + 0.04346749931573868, + 0.003868516068905592, + -0.05632014572620392, + -0.02167750895023346, + -0.12987251579761505, + -0.01681828498840332, + 0.04074244573712349, + -0.03887360915541649, + -0.0845627412199974, + -0.0778457373380661, + 0.003907056991010904, + -0.08356479555368423, + -0.021783553063869476, + 0.017334911972284317, + 0.06127157434821129, + 0.029977982863783836, + 0.002323048422113061, + 0.010756346397101879, + 0.004011653829365969, + 0.007014590781182051, + -0.06146727129817009, + 0.11922378838062286, + 0.009102461859583855, + 0.03634333983063698, + -0.03459559381008148, + 0.0511065274477005, + 0.004175527021288872, + -0.005037430673837662, + -0.05331825464963913, + 0.025664495304226875, + -0.037411369383335114, + -0.013314995914697647, + -0.012263418175280094, + -0.08645797520875931, + -0.006405825261026621, + -0.04308634623885155, + -0.012111062183976173, + 0.06384750455617905, + -0.05373739078640938, + -0.0220785029232502, + 0.04571281373500824, + -0.042853400111198425, + -0.01878751441836357, + -0.052180252969264984, + -0.027698976919054985, + 0.06183987110853195, + -0.030266173183918, + 0.006836686749011278, + 0.023719850927591324, + -0.002053098054602742, + 0.011971459724009037, + 0.07664687186479568, + 0.03785412013530731, + -0.03917738050222397, + -0.004694680217653513, + -0.0179824810475111, + -0.04029989615082741, + -0.04357423260807991, + 0.03652689605951309, + -0.05004477500915527, + 0.0546879842877388, + -0.0092316884547472, + 0.043417856097221375, + -0.21267801523208618, + 0.04373525455594063, + 0.011630838736891747, + -0.027934947982430458, + -0.053241197019815445, + -0.017226465046405792, + -0.056999608874320984, + 0.015357373282313347, + 0.05440656840801239, + 0.007451486773788929, + 0.07823223620653152, + 0.0594380646944046, + 0.06589160114526749, + -0.058060068637132645, + 0.059078630059957504, + -0.019009334966540337, + -1.862103172531478e-33, + 0.03676325082778931, + 0.03699129819869995, + -0.021502580493688583, + 0.040376849472522736, + 0.01700638420879841, + 0.016167156398296356, + -0.00034948947723023593, + 0.03800816088914871, + -0.05776097998023033, + 0.10492908954620361, + 0.052820026874542236, + 0.1664334088563919, + -0.003272515721619129, + 0.06488420814275742, + 0.13867607712745667, + -0.016972525045275688, + 0.14242707192897797, + -0.010647434741258621, + -0.03192395716905594, + -0.021647650748491287, + 0.0060544852167367935, + 0.0036688046529889107, + -0.04284290596842766, + 0.024693012237548828, + -0.0233930516988039, + 0.04054517671465874, + 0.05077293515205383, + 0.08841001987457275, + 0.01564837619662285, + 0.011547871865332127, + -0.014964167959988117, + 0.009374055080115795, + 0.008156578987836838, + -0.03849055990576744, + -0.022002771496772766, + -0.030380552634596825, + 0.013039200566709042, + -0.018434077501296997, + 0.01674688421189785, + -0.0049600545316934586, + -0.10102248936891556, + -0.016718098893761635, + -0.011519670486450195, + -0.03974572941660881, + 0.019852273166179657, + 0.03709954395890236, + 0.007011381443589926, + -0.002989743137732148, + 0.04482172429561615, + -0.030798867344856262, + -0.025951078161597252, + 0.014753627590835094, + -0.09010183811187744, + -0.010172153823077679, + 0.023840120062232018, + 0.0021745755802839994, + -0.08264143764972687, + 0.06723044067621231, + -0.005525161046534777, + 0.0058344341814517975, + 0.02786867879331112, + -0.017516188323497772, + 0.0635666474699974, + -0.048494867980480194, + -0.08918846398591995, + 0.029616132378578186, + -0.1569521427154541, + -0.0031693328637629747, + 0.07043994218111038, + 0.01997142843902111, + 0.02471264824271202, + 0.005469632335007191, + 0.04068214073777199, + 0.07718893885612488, + 0.04626809433102608, + 0.02752871997654438, + -0.06599686294794083, + -0.08262383192777634, + -0.10414184629917145, + 0.018759192898869514, + 0.009114696644246578, + -0.012926017865538597, + 0.03275858983397484, + 0.04890862852334976, + -0.007678012829273939, + -0.02486746571958065, + 0.04731646925210953, + -0.027723293751478195, + -0.009670295752584934, + 0.0016177206998690963, + -0.11648905277252197, + 0.004187355749309063, + 0.06518495082855225, + -0.08328855782747269, + -0.12169831246137619, + -1.882925952930341e-33, + -0.008770630694925785, + 0.04851185157895088, + -0.05911081284284592, + 0.006233721971511841, + 0.021174756810069084, + 0.09637220203876495, + -0.03135937452316284, + 0.012876598164439201, + -0.019902154803276062, + -0.05045675113797188, + 0.034086696803569794, + 0.02112370729446411, + 0.020796213299036026, + -0.028517751023173332, + -0.03072403371334076, + -0.06268943101167679, + -0.0046106441877782345, + -0.04830588027834892, + -0.03589889779686928, + -0.04284997284412384, + -0.013078405521810055, + -0.03417658060789108, + 0.006686055101454258, + 0.05674012005329132, + -0.009372740052640438, + 0.02610478363931179, + -0.006984397303313017, + 0.009290352463722229, + -0.03898408263921738, + 0.09521898627281189, + 0.02267911098897457, + -0.05226650461554527, + 0.02820485830307007, + 0.029724884778261185, + -0.07558071613311768, + -0.0102421585470438, + 0.10346619039773941, + 0.009702049195766449, + -0.00717278104275465, + -0.031422119587659836, + 0.02516222558915615, + -0.06445956230163574, + 0.09394562989473343, + 0.00930775236338377, + -0.009368477389216423, + -0.04475179687142372, + 0.0016582993557676673, + -0.01653182879090309, + 0.03362040966749191, + 0.06311695277690887, + -0.04938610643148422, + -0.04031451418995857, + 0.05685897916555405, + 0.01716446690261364, + -0.08354749530553818, + -0.04951091483235359, + -0.007536244112998247, + 0.012871073558926582, + 0.016449609771370888, + 0.04047984257340431, + 0.0044951289892196655, + 0.056081876158714294, + 0.005830838810652494, + 0.018749281764030457, + 0.004270656034350395, + -0.01212855614721775, + -0.054046884179115295, + -0.03453170508146286, + -0.02415735460817814, + -0.02316289208829403, + 0.004252072423696518, + -0.028113622218370438, + -0.04631809517741203, + 0.061814479529857635, + 0.008838068693876266, + 0.012126082554459572, + -0.003250031266361475, + -0.01863664761185646, + 0.05514151230454445, + 0.0013711050851270556, + -0.007329256739467382, + 0.011772946454584599, + -0.02427469752728939, + 0.04136848822236061, + -0.07248666137456894, + -0.007537084631621838, + 0.06377693265676498, + 0.02069004252552986, + -0.019852647557854652, + -0.01625315099954605, + -0.020770326256752014, + -0.004062261898070574, + -0.035718418657779694, + -0.11206516623497009, + 0.03441726043820381, + -2.2917561182111967e-08, + -0.03256486728787422, + -0.002459796844050288, + -0.024164685979485512, + -0.06300106644630432, + 0.03935723006725311, + -0.04219154641032219, + -0.026333944872021675, + -0.05749763548374176, + -0.007278141565620899, + -0.0737801268696785, + 0.017817558720707893, + 0.06221652403473854, + -0.06947934627532959, + 0.007560856640338898, + 0.023027708753943443, + -0.00768010038882494, + 0.0443699024617672, + 0.0255386121571064, + 0.02234300598502159, + -0.004743190482258797, + -0.09747655689716339, + 0.00825788825750351, + 0.09263265877962112, + -0.14910675585269928, + 0.01706879958510399, + -0.009029926732182503, + -0.09330596774816513, + 0.05422218143939972, + 0.007712172344326973, + 0.05304978787899017, + 0.02086007408797741, + 0.08474946022033691, + 0.034593869000673294, + 0.04905013367533684, + -0.045694056898355484, + -0.0778236985206604, + -0.035356443375349045, + 0.10675078630447388, + -0.04771187901496887, + 0.07052676379680634, + -0.023401552811264992, + -0.011682787910103798, + 0.022934239357709885, + -0.03524680808186531, + 0.034796953201293945, + -0.06419476121664047, + 0.04235029220581055, + 0.019603822380304337, + -0.029292812570929527, + -0.09038887172937393, + -0.10942542552947998, + 0.12369831651449203, + -0.012159938924014568, + 0.03713615983724594, + -0.002604847541078925, + -0.060547858476638794, + -0.02653026580810547, + 0.03783910721540451, + -0.12348990887403488, + 0.0865711122751236, + 0.12477858364582062, + -0.03233928233385086, + -0.03155314922332764, + -0.01703125797212124 + ], + "info-bold||information,help,support": [ + 0.015675630420446396, + 0.03501541167497635, + -0.008691973052918911, + 0.07702118903398514, + 0.07986260950565338, + -0.002632786752656102, + 0.11853592842817307, + -0.009288698434829712, + -0.03505631163716316, + -0.002836831146851182, + -0.02130509726703167, + 0.05998222529888153, + 0.0452788844704628, + -0.04465257376432419, + -0.004341471008956432, + 0.09866273403167725, + 0.0333377979695797, + 0.01425133366137743, + -0.11984146386384964, + 0.02568681165575981, + 0.0539061464369297, + 0.04592036083340645, + 0.006479232106357813, + 0.039669282734394073, + 0.03566359728574753, + 0.02750617265701294, + 0.03211922198534012, + 0.00690951943397522, + 0.016384480521082878, + -0.10470418632030487, + -0.014741307124495506, + -0.009626335464417934, + 0.1226501315832138, + 0.029140545055270195, + 0.026867685839533806, + -0.004261275287717581, + -0.0328139029443264, + 0.052927181124687195, + -0.007737549487501383, + 0.052756715565919876, + -0.009541277773678303, + -0.057105064392089844, + -0.0010408391244709492, + 0.068365678191185, + -0.011559923179447651, + 0.02783861942589283, + -0.0760100707411766, + -0.017237132415175438, + -0.00405696639791131, + 0.030906571075320244, + -0.05441587045788765, + -0.06831468641757965, + -0.04544719308614731, + -0.03590479493141174, + 0.02525065839290619, + 0.006854400038719177, + -0.09225014597177505, + -0.06010645255446434, + 0.016703270375728607, + 0.0006043968023732305, + 0.039103224873542786, + 0.03821462392807007, + 0.05675617605447769, + 0.03323984891176224, + 0.0623745396733284, + 0.044602565467357635, + -0.002940260572358966, + -0.001362758339382708, + -0.07363157719373703, + 0.02645455114543438, + 0.01062622107565403, + 0.021253397688269615, + -0.018104154616594315, + -0.007173785474151373, + -0.019809316843748093, + 0.010144258849322796, + -0.006506552919745445, + 0.04219507798552513, + -0.022653745487332344, + -0.0589044913649559, + -0.03574275225400925, + -0.0022680906113237143, + -0.06285875290632248, + 0.06534524261951447, + 0.0645187646150589, + 0.01880873367190361, + -0.06737776100635529, + -0.03009662963449955, + 0.01047691609710455, + -0.05269793048501015, + -0.043572068214416504, + -0.09557673335075378, + 0.027876978740096092, + 0.053793810307979584, + -0.033510472625494, + 0.01791416108608246, + 0.020021142438054085, + -0.09000466018915176, + -0.05351695418357849, + 0.08747795224189758, + -0.010548549704253674, + 0.06284719705581665, + 0.0017410946311429143, + -0.01813892088830471, + -0.055813297629356384, + -0.07011224329471588, + 0.00829430390149355, + 0.02623007632791996, + -0.022502476349473, + 0.0440172404050827, + -0.0020750209223479033, + -0.03316689655184746, + -0.08846104890108109, + -0.09373790770769119, + 0.004085982218384743, + -0.10346253961324692, + 0.01232143398374319, + 0.011685903184115887, + 0.08582670986652374, + 0.02609027735888958, + 0.029360687360167503, + -0.026402663439512253, + -0.038255754858255386, + -0.03499194607138634, + -0.025566864758729935, + -0.0023373253643512726, + -0.024749573320150375, + -3.213937104340463e-33, + 0.02328116074204445, + 0.04663350433111191, + -0.02298491820693016, + 0.14044316112995148, + -0.006650441791862249, + 0.04010126739740372, + -0.11803993582725525, + -0.061341434717178345, + -0.107772096991539, + 0.092131108045578, + 0.08374115079641342, + 0.09456697851419449, + 0.01243725884705782, + -0.0052064647898077965, + -0.013482961803674698, + -0.0044016228057444096, + -0.025732800364494324, + 0.05329756811261177, + -0.07949583232402802, + -0.013888489454984665, + -0.02209814451634884, + 0.03656652942299843, + -0.07729203253984451, + -0.026124771684408188, + 0.0357031524181366, + -0.013629215769469738, + 0.04197736084461212, + -0.007901695556938648, + -0.08404270559549332, + -0.01249001082032919, + -0.011694570071995258, + -0.0127888647839427, + 0.0770854726433754, + -0.08535948395729065, + 0.03584228828549385, + 0.020707616582512856, + -0.06448418647050858, + -0.03573078662157059, + 0.006940426304936409, + 0.04146252200007439, + -0.019752221181988716, + 0.014055641368031502, + -0.017025310546159744, + -0.046620868146419525, + -0.002313790377229452, + 0.12581579387187958, + 0.010838243179023266, + -0.09990976005792618, + 0.03977113217115402, + -0.04435458034276962, + -0.042002029716968536, + -0.011547866277396679, + -0.010932797566056252, + 0.01935143582522869, + 0.03705669939517975, + -0.008978046476840973, + -0.04268176108598709, + 0.057146135717630386, + 0.006947344169020653, + -0.030112510547041893, + 0.0035531981848180294, + -0.016184817999601364, + 0.04765455052256584, + -0.056115396320819855, + -0.05609085038304329, + 0.06195039302110672, + -0.07112068682909012, + -0.009855630807578564, + 0.10684671998023987, + -0.043611809611320496, + -0.013647820800542831, + 0.08116959780454636, + 0.05201020464301109, + 0.040850911289453506, + -0.03746812045574188, + 0.07464819401502609, + -0.024822324514389038, + -0.019424593076109886, + 0.043640363961458206, + -0.05163563787937164, + -0.03555908054113388, + -0.11240387707948685, + 0.002640272257849574, + 0.0969221293926239, + 0.03915147855877876, + 0.04930729791522026, + 0.03813543543219566, + -0.022515270859003067, + -0.04655374959111214, + 0.061073802411556244, + -0.011491125449538231, + -0.011614554561674595, + -0.12656816840171814, + -0.09988030046224594, + -0.05155762657523155, + -3.1886234763439784e-34, + 0.025927357375621796, + 0.03055633418262005, + -0.03261489048600197, + -0.07249031215906143, + -0.0008605938637629151, + 0.015517064370214939, + -0.045977190136909485, + -0.007872140035033226, + 0.02793453447520733, + 0.010591809637844563, + 0.01484176330268383, + -0.031114611774683, + -0.07838298380374908, + -0.06903830915689468, + -0.019456516951322556, + 0.08316609263420105, + -0.0036748999264091253, + 0.04210864380002022, + -0.012390282936394215, + 0.04683706909418106, + -0.08907926082611084, + -0.030038699507713318, + -0.06872181594371796, + 0.09935645759105682, + -0.013346577994525433, + 0.04640879109501839, + 0.044847168028354645, + 0.04642539843916893, + 0.005767507944256067, + -0.02277480624616146, + -0.03245921805500984, + -0.05825992673635483, + 0.023774150758981705, + 0.030466578900814056, + -0.07948751002550125, + 0.007387098856270313, + 0.0333343967795372, + -0.011642245575785637, + 0.00898546539247036, + 0.004128614440560341, + 0.09988792985677719, + 0.06865949928760529, + -0.021898139268159866, + -0.020072488114237785, + -0.07388004660606384, + -0.02757548727095127, + -0.005637563299387693, + -0.05621630698442459, + 0.05060609430074692, + 0.039283160120248795, + 0.07034207880496979, + -0.09334400296211243, + -0.011759979650378227, + 0.03667789697647095, + -0.060944948345422745, + -0.03556832671165466, + -0.005171004217118025, + 0.013774095103144646, + -0.06617189943790436, + 0.06829522550106049, + -0.04314066469669342, + 0.07091706246137619, + -0.07285512238740921, + 0.05766842141747475, + 0.035562220960855484, + -0.05816476047039032, + -0.009873047471046448, + -0.06685959547758102, + 0.021959785372018814, + -0.05767732858657837, + 0.03883852809667587, + -0.057125113904476166, + -0.02878800965845585, + -0.03412897512316704, + 0.09587453305721283, + 0.003497591009363532, + 0.04351067915558815, + 0.010935856960713863, + -0.02615240588784218, + 0.062010426074266434, + 0.03534839674830437, + 0.01183431688696146, + 0.02999316155910492, + 0.03803332895040512, + -0.008031596429646015, + 0.07628566771745682, + 0.02904849871993065, + 0.0711948573589325, + 0.03346754610538483, + -0.10134247690439224, + -0.08074139803647995, + 0.011116953566670418, + -0.05139762535691261, + -0.03691927716135979, + -0.0946216881275177, + -1.795817361482932e-08, + -0.004700142424553633, + -0.05982888489961624, + -0.03463694453239441, + -0.004485510289669037, + -0.0065079922787845135, + 0.0034283259883522987, + -0.07878817617893219, + -0.05409140884876251, + -0.05277129262685776, + 0.03381640836596489, + 0.03791134059429169, + 0.056375835090875626, + -0.06771731376647949, + -0.03364422917366028, + 0.06499266624450684, + -0.003410035977140069, + -0.07192319631576538, + 0.0393841378390789, + -0.010541392490267754, + -0.05784162878990173, + -0.00972179789096117, + 0.007731979247182608, + 0.018952753394842148, + 0.0019379694713279605, + 0.0667959675192833, + 0.02613271214067936, + -0.05437790974974632, + 0.020068826153874397, + 0.03208306059241295, + 0.08143545687198639, + 0.03598622977733612, + 0.030423708260059357, + 0.0012523394543677568, + 0.05610499531030655, + -0.008855062536895275, + -0.05787034332752228, + -0.005156992003321648, + -0.064720518887043, + 0.020477261394262314, + 0.12539559602737427, + -0.027024339884519577, + -0.044523436576128006, + -0.04911335930228233, + 0.018705781549215317, + 0.0433281809091568, + 0.07348021119832993, + 0.0014970729826018214, + -0.10965190827846527, + -0.05993609130382538, + -0.12168789654970169, + 0.02873455546796322, + -0.008926493115723133, + 0.05506143718957901, + 0.11806321889162064, + -0.047420158982276917, + -0.06954151391983032, + 0.026146238669753075, + 0.13153119385242462, + -0.0012306171702221036, + -0.004608440678566694, + 0.08062475174665451, + -0.009154930710792542, + 0.041389498859643936, + 0.021119916811585426 + ], + "instagram-logo-bold||logos,social media,photography,camera": [ + 0.006598661653697491, + 0.0165209099650383, + -0.03212505206465721, + -0.004336971323937178, + 0.1049787849187851, + -0.08156860619783401, + 0.07887512445449829, + -0.025158004835247993, + 0.08828895539045334, + 0.03873884305357933, + 0.08683878928422928, + 0.04425656050443649, + 0.055841561406850815, + -0.021658457815647125, + 0.0527578704059124, + -0.028579073026776314, + 0.023019999265670776, + -0.014787797816097736, + 0.007785350549966097, + -0.029147930443286896, + -0.04105876386165619, + -0.029363930225372314, + 0.007130622863769531, + 0.0321279875934124, + -0.01822805218398571, + 0.0029837677720934153, + 0.02775169163942337, + -0.0018703335663303733, + -0.0033966670744121075, + -0.07814006507396698, + -0.057135652750730515, + 0.015495012514293194, + 0.031666986644268036, + 0.03536762297153473, + -0.0073441448621451855, + 0.00589629914611578, + 0.022631442174315453, + -0.06502392888069153, + 0.020273922011256218, + 0.02019316516816616, + 0.017968691885471344, + -0.04889032989740372, + 0.011773275211453438, + 0.0328487828373909, + -0.03389553725719452, + 0.034039631485939026, + -0.040105823427438736, + 0.03546668961644173, + -0.04506945610046387, + -0.020908258855342865, + -0.027113739401102066, + -0.07835635542869568, + -0.06303965300321579, + -0.04119325056672096, + -0.0046662078239023685, + -0.03719032183289528, + -0.06517630815505981, + -0.020711757242679596, + 0.05523384362459183, + 0.043538253754377365, + 0.06609045714139938, + 0.02653355523943901, + 0.035067588090896606, + 0.12396812438964844, + 0.09471976011991501, + -0.017033662647008896, + 0.025788791477680206, + 0.06230425462126732, + -0.034444887191057205, + 0.027046138420701027, + 0.0823703184723854, + 0.031721360981464386, + -0.08106757700443268, + -0.00685814069584012, + -0.02317201904952526, + -0.023053353652358055, + 0.02428397908806801, + -0.04576794430613518, + -0.03135247528553009, + -0.07001809030771255, + 0.005178208462893963, + -0.033972714096307755, + 0.010456416755914688, + -0.009333314374089241, + 0.0679606944322586, + 0.005359141621738672, + -0.09750223159790039, + -0.05966907739639282, + -0.06117960438132286, + 0.01795792393386364, + -0.11938311904668808, + 0.05323852598667145, + -0.029956098645925522, + -0.0436471663415432, + -0.0942290872335434, + 0.0366002693772316, + -0.06060494855046272, + -0.07205666601657867, + -0.10180946439504623, + 0.08119627833366394, + -0.02384905517101288, + 0.0852847471833229, + 0.06597017496824265, + 0.033150430768728256, + -0.005558387842029333, + 0.027846336364746094, + 0.00010632522753439844, + 0.001299927942454815, + 0.040403369814157486, + 0.10754679143428802, + -0.01143612526357174, + -0.05349097028374672, + -0.07264456152915955, + -0.003809218294918537, + 0.017784493044018745, + -0.06110886484384537, + -0.05440216511487961, + 0.020092032849788666, + 0.1482776254415512, + -0.039700817316770554, + -0.009881574660539627, + 0.014754260890185833, + -0.039807289838790894, + -0.053556304425001144, + -0.040058158338069916, + 0.012895702384412289, + -0.023227045312523842, + -3.425695064801406e-33, + 0.04313141107559204, + 0.09181651473045349, + 0.012881322763860226, + 0.04921633005142212, + 0.007745590526610613, + 0.0325222983956337, + -0.0323612280189991, + -0.012264354154467583, + -0.12894296646118164, + 0.0037551443092525005, + 0.06579387187957764, + 0.04860147833824158, + -0.021348226815462112, + 0.10138588398694992, + 0.09199856966733932, + -0.017733672633767128, + -0.029934430494904518, + -0.007605142891407013, + -0.06663966178894043, + -0.011964483186602592, + 0.026385555043816566, + -0.006921194028109312, + -0.04658777266740799, + 0.03672131896018982, + 0.0025380656588822603, + -0.0780840665102005, + 0.0989529937505722, + -0.025346919894218445, + -0.06245571747422218, + 0.0035857504699379206, + 0.023848028853535652, + 0.09842857718467712, + 0.05415056645870209, + -0.026494449004530907, + 0.04316730797290802, + -0.09211607277393341, + 0.02181221731007099, + -0.05101311579346657, + 0.05182921513915062, + 0.05499495193362236, + -0.03190256282687187, + -0.018097076565027237, + -0.054650094360113144, + -0.007457029074430466, + -0.01491965726017952, + 0.20622794330120087, + -0.010033117607235909, + -0.037308067083358765, + 0.07601970434188843, + 0.02113327570259571, + 0.017177212983369827, + -0.04735158383846283, + -0.0184909850358963, + -0.058040034025907516, + -0.03764190897345543, + -0.015555291436612606, + -0.05594136193394661, + 0.00589517829939723, + -0.0005895803915336728, + -0.056828271597623825, + 0.02114652283489704, + 0.011189661920070648, + 0.009809603914618492, + -0.006998820696026087, + -0.019066086038947105, + 0.08863615244626999, + -0.02615387551486492, + 0.0630086213350296, + 0.05190994590520859, + 0.0031326133757829666, + -0.02325281873345375, + 0.03064890392124653, + 0.05216524749994278, + -0.009870320558547974, + -0.007596478331834078, + 0.00994121003895998, + -0.05551980435848236, + -0.028124449774622917, + -0.026872053742408752, + 0.07511382550001144, + -0.07582120597362518, + 0.012928943149745464, + 0.0008250321261584759, + 0.057407379150390625, + 0.018247950822114944, + 0.037480201572179794, + -0.0198819637298584, + -0.03295823931694031, + 0.001386670977808535, + 0.06452378630638123, + -0.03619091957807541, + 0.05015300586819649, + 0.04027827829122543, + 0.02145463414490223, + -0.1785145401954651, + 6.6140351368042405e-34, + -0.0007459577755071223, + 0.0071816458366811275, + 0.022932061925530434, + -0.02246096543967724, + 0.02020064741373062, + -0.017314346507191658, + 0.02462286688387394, + 0.09618151932954788, + 0.04659252241253853, + 0.06460706144571304, + 0.040692634880542755, + -0.031290680170059204, + -0.153912752866745, + -0.05703948065638542, + -0.013903754763305187, + -0.01046072319149971, + 0.06587109714746475, + -0.025998743250966072, + -0.09732326865196228, + 0.03314491733908653, + -0.008534163236618042, + -0.03768245130777359, + 0.016911102458834648, + 0.06708575040102005, + -0.018547100946307182, + 0.036500606685876846, + 0.09180056303739548, + 0.03181152790784836, + -0.019186345860362053, + -0.030290087684988976, + -0.024150267243385315, + -0.03537672013044357, + 0.07147061079740524, + 0.028807397931814194, + -0.03173453360795975, + 0.03905487433075905, + -0.03683250769972801, + -0.09170050173997879, + -0.00698215514421463, + 0.006668807938694954, + 0.00012034285464324057, + 0.0166415236890316, + 0.023983951658010483, + 0.052124302834272385, + -0.013436209410429, + -0.021702053025364876, + -0.0715203583240509, + -0.08299288153648376, + -0.06899489462375641, + 0.05841180682182312, + -0.005037111230194569, + -0.019823843613266945, + 0.03325699269771576, + 0.06845328956842422, + -0.09841902554035187, + -0.08993533253669739, + -0.0025639745872467756, + 0.040428951382637024, + -0.011182034388184547, + 0.0834101140499115, + 0.022044207900762558, + 0.030934127047657967, + -0.05604693666100502, + -0.0014199709985405207, + -0.05713020637631416, + -0.05816756933927536, + 0.04274345561861992, + -0.017281843349337578, + -0.03665008023381233, + 0.04370143637061119, + 0.015335798263549805, + -0.019595611840486526, + 0.0023329551331698895, + 0.042835917323827744, + -0.015747524797916412, + -0.06287452578544617, + 0.038522474467754364, + 0.016963763162493706, + -0.042579732835292816, + 0.03674177825450897, + -0.06651230901479721, + -0.02817673608660698, + -0.09537409245967865, + 0.06327331811189651, + 0.05710930377244949, + 0.04160519316792488, + -0.04710155352950096, + -0.006761034484952688, + 0.04281271994113922, + 0.013509385287761688, + -0.021515902131795883, + 0.07143180817365646, + 0.006509046070277691, + -0.032133281230926514, + -0.022359101101756096, + -1.9287881514173932e-08, + -0.0168023481965065, + -0.04819534718990326, + 0.04738306626677513, + 0.020464682951569557, + 0.03987804800271988, + -0.034460753202438354, + -0.0012183613143861294, + -0.07111157476902008, + 0.031934309750795364, + -0.05344681069254875, + -0.021839920431375504, + 0.03310070559382439, + -0.06124170869588852, + -0.0259644016623497, + -0.005408613942563534, + -0.06048973649740219, + -0.07795319706201553, + 0.05116039142012596, + 0.02411811426281929, + -0.04175732284784317, + -0.05604783073067665, + 0.005537449382245541, + 0.0012273452011868358, + -0.06849070638418198, + 0.006813338026404381, + -0.003918166738003492, + -0.02863849699497223, + -0.08207405358552933, + 0.05136610567569733, + 0.01843688264489174, + 0.016032511368393898, + 0.03638004884123802, + 0.043562863022089005, + 0.0032079194206744432, + -0.10517831891775131, + -0.04107008874416351, + -0.0009708346333354712, + -0.0657547116279602, + -0.06194010004401207, + -0.031325578689575195, + 0.03959246352314949, + 0.009581614285707474, + 0.029942594468593597, + -0.004594192840158939, + -0.033151306211948395, + 0.027541743591427803, + 0.09046483039855957, + 0.006039208732545376, + 0.006085118744522333, + -0.07784859091043472, + -0.09594669193029404, + -0.03255000337958336, + -0.003357274690642953, + 0.07653762400150299, + -0.002565956674516201, + -0.10063545405864716, + 0.031130950897932053, + 0.0728076621890068, + 0.05179179459810257, + 0.07247556746006012, + 0.1760815978050232, + -0.05735737085342407, + -0.03918454051017761, + 0.010326257906854153 + ], + "intersect-bold||round,join,union,merge,combine,intersecting,intersection": [ + 0.08210283517837524, + -0.008856230415403843, + -0.02484518103301525, + 0.04604283347725868, + 0.02520274743437767, + -0.043686643242836, + 0.058428239077329636, + -0.011746331118047237, + -0.042907554656267166, + -0.031112032011151314, + -0.009346142411231995, + -0.04408184066414833, + 0.011475334875285625, + -0.021449031308293343, + -0.01860532909631729, + 0.05740143358707428, + -0.06783713400363922, + -0.010613331571221352, + -0.013786581344902515, + 0.022929862141609192, + -0.03647622466087341, + -0.043647266924381256, + 0.02494630217552185, + 0.03276053071022034, + 0.05483059957623482, + 0.0400225929915905, + 0.05448798090219498, + 0.008731690235435963, + 0.040838975459337234, + -0.0693054050207138, + -0.03535347431898117, + 0.04464057832956314, + 0.08242331445217133, + 0.026032201945781708, + 0.003588467836380005, + -0.1250876635313034, + 0.024627914652228355, + 0.05078320577740669, + 0.09303157031536102, + 0.04524102807044983, + -0.02121063508093357, + -0.05059410631656647, + 0.11156901717185974, + -0.01906072348356247, + -0.025239204987883568, + 0.04571977257728577, + -0.11850802600383759, + 0.05179769918322563, + 0.006161242723464966, + -0.037768542766571045, + 0.009242027997970581, + -0.0880599319934845, + -0.10251878947019577, + -0.010458783246576786, + 0.03894997015595436, + 0.05323127284646034, + -0.10082276910543442, + -0.06337019801139832, + 0.05368637293577194, + 0.05186496675014496, + -0.04998401179909706, + -0.05568784475326538, + -0.010433074086904526, + 0.018123948946595192, + 0.03187748044729233, + -0.00940027553588152, + 0.024452609941363335, + 0.07575410604476929, + -0.0419439896941185, + 0.04403432086110115, + -0.014998811297118664, + 0.10422471165657043, + -0.0881812572479248, + -0.06927558034658432, + -0.03493960201740265, + 0.04743834212422371, + 0.02875707671046257, + 0.0012493295362219214, + -0.029714811593294144, + 0.040854312479496, + -0.17963886260986328, + -0.01682198978960514, + -0.037723831832408905, + 0.012880399823188782, + 0.08046242594718933, + -0.018001951277256012, + -0.08242225646972656, + -0.08269128948450089, + -0.028061000630259514, + -0.05859105661511421, + -0.06773701310157776, + 0.06578168272972107, + -0.025155285373330116, + -0.015253475867211819, + 0.001703915884718299, + 0.057670220732688904, + 0.1093355119228363, + 0.016833901405334473, + 0.03470192104578018, + 0.06887007504701614, + -0.016993818804621696, + 0.023048104718327522, + -0.036812085658311844, + -0.0825565904378891, + -0.021860677748918533, + 0.05556628480553627, + 0.036990467458963394, + -0.020720038563013077, + 0.037341706454753876, + -0.0610177218914032, + 0.052873000502586365, + -0.08830636739730835, + 0.0754236951470375, + -0.05873328819870949, + -0.006708226166665554, + 0.05889607220888138, + -0.004943347070366144, + -0.0389813631772995, + 0.1288236826658249, + -0.06292401999235153, + -0.02480493113398552, + 0.0077628036960959435, + -0.016727352514863014, + -0.022784816101193428, + -0.0048080324195325375, + 2.7793710614787415e-05, + 0.04163657873868942, + -2.267278810186643e-33, + -0.006452417001128197, + -0.014138777740299702, + -0.040476784110069275, + 0.08208155632019043, + 0.025320054963231087, + -0.039397094398736954, + -0.07172442227602005, + -0.12609650194644928, + -0.0858210101723671, + 0.07609216123819351, + 0.017913566902279854, + 0.09135877341032028, + 0.07732360810041428, + -0.037331126630306244, + 0.10919803380966187, + -0.03328463435173035, + 0.08900005370378494, + 0.01990116760134697, + -0.16067759692668915, + 0.04690725356340408, + -0.06347246468067169, + 0.01356414146721363, + -0.0036118740681558847, + 0.08514390140771866, + 0.030474264174699783, + 0.048493579030036926, + 0.008275194093585014, + -0.014576851390302181, + 0.01854073256254196, + 0.03144536167383194, + -0.011944531463086605, + 0.10839318484067917, + 0.03025241568684578, + 0.10201933234930038, + 0.0050097438506782055, + 0.04325376823544502, + 0.007801722269505262, + -0.017512496560811996, + 0.024300139397382736, + 0.06175145134329796, + -0.05344348028302193, + -0.019979387521743774, + 0.04009883850812912, + -0.07394710183143616, + 0.0617981031537056, + 0.04700635373592377, + -0.047742344439029694, + 0.00893353670835495, + 0.04825815558433533, + 0.08414313942193985, + -0.006591740529984236, + 0.043150171637535095, + 0.004350601229816675, + 0.010952182114124298, + 0.011821692809462547, + 0.028441594913601875, + -0.026551876217126846, + 0.06182090565562248, + 0.0040010991506278515, + 0.116876520216465, + -0.015611104667186737, + 0.033612363040447235, + -0.025597522035241127, + 0.010865920223295689, + -0.07459412515163422, + 0.06282486766576767, + -0.03194398432970047, + 0.009933911263942719, + 0.07994091510772705, + -0.02199004776775837, + 0.006492969114333391, + 0.04315507039427757, + -0.028017137199640274, + 0.08159623295068741, + 0.02047170139849186, + -0.018430808559060097, + 0.023573385551571846, + 0.03267597779631615, + 0.07689972966909409, + -0.04867423325777054, + -0.021236198022961617, + 0.037433233112096786, + -0.06901843100786209, + -0.05676185339689255, + -0.024370674043893814, + -0.004792473278939724, + 0.003795822151005268, + -0.02073695883154869, + -0.010703343898057938, + -0.0007644725264981389, + -0.12154477089643478, + 0.00791082065552473, + 0.08361881971359253, + -0.037042953073978424, + -0.03653296083211899, + 2.8477356247352845e-34, + 0.08231738954782486, + 0.0017529650358483195, + -0.046966552734375, + -0.05233649164438248, + -0.03531772643327713, + -0.010324104689061642, + 0.06419308483600616, + -0.09800412505865097, + 0.0030601033940911293, + 0.02610619366168976, + 0.03765503317117691, + 0.03434932231903076, + -0.07332830131053925, + -0.06084877625107765, + 0.006187907420098782, + -0.039104484021663666, + 0.028017407283186913, + -0.023894045501947403, + -0.04487276077270508, + -0.04542075842618942, + -0.02358940802514553, + -0.03704245761036873, + 0.03507402539253235, + -0.006363855674862862, + -0.02898005209863186, + 0.0187299232929945, + -0.021827658638358116, + -0.052849121391773224, + -0.023862583562731743, + 0.03817490488290787, + -0.034468408674001694, + -0.08245369791984558, + 0.05755365267395973, + 0.003564614336937666, + -0.0498826801776886, + -0.01674482971429825, + 0.07666762173175812, + -0.1113252192735672, + 0.0467306524515152, + -0.10060231387615204, + 0.03708704933524132, + -0.04832633212208748, + 0.018760522827506065, + 0.10947424918413162, + 0.015304876491427422, + -0.01898566633462906, + -0.04564785584807396, + -0.0016486317617818713, + -0.09461874514818192, + -0.037259019911289215, + -0.03457367420196533, + 0.04929937794804573, + 0.02186783030629158, + -0.017319075763225555, + -0.028703978285193443, + -0.02225860208272934, + 0.03427363187074661, + -0.027364131063222885, + -0.00873836874961853, + 0.04306690767407417, + 0.012452200055122375, + 0.020153088495135307, + 0.017166834324598312, + 0.08421844989061356, + 0.05173620581626892, + -0.06805804371833801, + -0.05080476775765419, + -0.04835961386561394, + -0.05569984391331673, + 0.025785453617572784, + 0.03645609691739082, + -0.0031704481225460768, + 0.004001811146736145, + 0.0208427757024765, + -0.03828791156411171, + 0.03374926373362541, + 0.0547504685819149, + 0.013943355530500412, + 0.020050231367349625, + 0.058841291815042496, + -0.08551309257745743, + 0.002323137829080224, + 0.029740290716290474, + 0.07029365003108978, + -0.05554593354463577, + 0.0030412536580115557, + -0.0359819233417511, + 0.052453022450208664, + -0.0121010085567832, + -0.009576637297868729, + -0.05520383641123772, + -0.021642088890075684, + 0.060215894132852554, + -0.016497092321515083, + 0.0151522196829319, + -2.0649787657589513e-08, + 0.019005222246050835, + -0.07459227740764618, + -0.09866809099912643, + -0.02820889838039875, + 0.0439780056476593, + 0.03859730064868927, + -0.06444530189037323, + -0.05373109132051468, + -0.052494119852781296, + -0.007262759376317263, + 0.08293045312166214, + 0.07653290033340454, + -0.12675698101520538, + -0.037003643810749054, + 0.005399420857429504, + -0.029303237795829773, + -0.018558979034423828, + 0.0034640436060726643, + -0.06025237590074539, + -0.03992146998643875, + -0.0701238214969635, + 0.01816418580710888, + 0.011449350044131279, + -0.011903785169124603, + -0.024651510640978813, + 0.028148436918854713, + -0.048864174634218216, + 0.0948435366153717, + 0.025691956281661987, + 0.0017308430979028344, + -0.0006158096948638558, + 0.017371080815792084, + -0.02657441422343254, + 0.03603406995534897, + 0.0021649522241204977, + -0.0402492880821228, + -0.019245002418756485, + 0.054172903299331665, + 0.006752791814506054, + 0.04456746578216553, + -0.05862702429294586, + -0.008023921400308609, + -0.003291685599833727, + -0.06117665395140648, + 0.061397746205329895, + 0.005000072531402111, + -0.01324540376663208, + -0.010908345691859722, + 0.007836276665329933, + -0.031011182814836502, + -0.11160077154636383, + 0.01604904979467392, + 0.05846676975488663, + 0.05398865416646004, + -0.08011668920516968, + -0.016621628776192665, + -0.00033749963040463626, + 0.06462670862674713, + 0.00012269848957657814, + -0.00566233741119504, + 0.05817214772105217, + 0.014223259873688221, + 0.020827416330575943, + 0.023105889558792114 + ], + "intersect-square-bold||venn-diagram,join,intersection": [ + 0.10711812973022461, + -0.003508327528834343, + 0.028975114226341248, + 0.08766941726207733, + 0.019012663513422012, + -0.01745549961924553, + 0.0488743893802166, + -0.054571788758039474, + -0.050743088126182556, + -0.07096011936664581, + -0.010989890433847904, + 0.003495147917419672, + 0.046940308064222336, + 0.0076589519158005714, + -0.072441466152668, + 0.0923694595694542, + -0.023989126086235046, + 0.012484592385590076, + -0.0012594887521117926, + 0.009035023860633373, + -0.05884474888443947, + -0.05438118055462837, + 0.07520373910665512, + -0.02262181229889393, + 0.04734548553824425, + -0.005888712592422962, + 0.044911354780197144, + 0.055681247264146805, + 0.05459078401327133, + -0.04825117066502571, + 0.012478657998144627, + -0.038052238523960114, + 0.08517192304134369, + 0.05354812741279602, + -0.008507942780852318, + -0.08759158104658127, + -0.0062467618845403194, + 0.03801429271697998, + 0.06353338062763214, + 0.014619307592511177, + -0.000505788077134639, + -0.0652577355504036, + 0.09906201809644699, + -0.037000998854637146, + 0.03168511018157005, + 0.0877046138048172, + -0.10320351272821426, + 0.05379949137568474, + 0.01143648661673069, + -0.010849038138985634, + -0.013158678077161312, + -0.11091824620962143, + -0.0559295192360878, + -0.05334170162677765, + 0.03316349536180496, + 0.06293302029371262, + -0.09047786891460419, + -0.03866708278656006, + 0.03697023168206215, + 0.04423842951655388, + -0.018224889412522316, + -0.03579716384410858, + 0.028684668242931366, + 0.0029230285435914993, + -0.002391758607700467, + 0.027773365378379822, + -0.03325358405709267, + 0.10445988178253174, + -0.04916783422231674, + 0.0552971251308918, + 0.04754697531461716, + 0.06818883866071701, + -0.07853449881076813, + -0.06144202873110771, + -0.05181310698390007, + 0.01717003807425499, + 0.08621816337108612, + 0.012295274063944817, + -0.009685561992228031, + -0.032753679901361465, + -0.08286035060882568, + -0.03392120450735092, + -0.07310319691896439, + 0.03539818152785301, + 0.027536524459719658, + -0.013772379606962204, + -0.14442569017410278, + -0.07359550148248672, + -0.083640918135643, + -0.06132353097200394, + -0.04698196053504944, + 0.021700771525502205, + 0.006681828759610653, + 0.002714505884796381, + 0.009584590792655945, + 0.07277476042509079, + 0.10420843958854675, + 0.020510785281658173, + -0.040870025753974915, + 0.08656588941812515, + 0.007945300079882145, + 0.015406833961606026, + -0.01064762007445097, + -0.08517394214868546, + 0.02942376770079136, + 0.07149166613817215, + 0.07243558764457703, + 0.00795099325478077, + 0.027701864019036293, + -0.11433205008506775, + 0.027535347267985344, + -0.05218631774187088, + 0.0655198022723198, + 0.004605915863066912, + -0.015495997853577137, + 0.07028789818286896, + 0.0177153330296278, + 0.03597598895430565, + 0.14390045404434204, + -0.05062422156333923, + -0.04736714065074921, + 0.040167395025491714, + -0.006672604940831661, + -0.01810893416404724, + -0.008851504884660244, + -0.05177195742726326, + -0.03594362363219261, + -1.4863242608674786e-33, + 0.0445738285779953, + -0.029541289433836937, + -0.01976761221885681, + 0.07860203832387924, + 0.05531363934278488, + -0.01743951626121998, + -0.06737391650676727, + -0.11046645790338516, + -0.05195188149809837, + 0.06679520756006241, + -0.027072099968791008, + 0.02632760815322399, + 0.024180874228477478, + -0.014680524356663227, + 0.0807342678308487, + 0.015081942081451416, + 0.07415098696947098, + -0.009822624735534191, + -0.12761402130126953, + 0.010919352993369102, + -0.03848996013402939, + -0.02382924035191536, + -0.05592033639550209, + 0.08371628075838089, + 0.0244282316416502, + 0.025121038779616356, + 0.022932089865207672, + -0.0072578564286231995, + 0.08190738409757614, + 0.02167750895023346, + -0.015295060351490974, + 0.14496906101703644, + 0.00788039993494749, + 0.06744630634784698, + 0.01252023782581091, + 0.007931636646389961, + 0.03613927215337753, + 0.005384454969316721, + 0.0242646224796772, + 0.046636201441287994, + 0.02448994293808937, + -0.004554419312626123, + 0.025369886308908463, + -0.05269235745072365, + 0.06372714787721634, + 0.022431934252381325, + -0.02298523485660553, + 0.007585689891129732, + 0.017993824556469917, + 0.10089309513568878, + -0.006116480100899935, + 0.016653580591082573, + -0.032399438321590424, + -0.027789607644081116, + 0.02188725769519806, + -0.05731220170855522, + -0.01244129054248333, + 0.08224587887525558, + 0.03951069712638855, + 0.09995026886463165, + -0.008273919112980366, + 0.007584135979413986, + -0.01992115192115307, + 0.026242271065711975, + -0.029470419511198997, + 0.07298330962657928, + -0.09912287443876266, + -0.029094934463500977, + 0.07325928658246994, + -0.0497468076646328, + -0.005752298049628735, + 0.041133396327495575, + 0.01159635279327631, + 0.0023361281491816044, + -0.0004675351665355265, + -0.002971274545416236, + -0.05702071636915207, + 0.02531038410961628, + 0.07285500317811966, + -0.06811624765396118, + -0.004232729785144329, + 0.014281409792602062, + -0.1010996550321579, + -0.07164683938026428, + 0.0013297471450641751, + -0.01582779735326767, + -0.032774489372968674, + -0.0635882094502449, + 0.02726600132882595, + 0.03687528148293495, + -0.09251619875431061, + 0.012590517289936543, + 0.013371080160140991, + 0.009651842527091503, + -0.006130164954811335, + 4.15483988427907e-34, + 0.01583303138613701, + 0.0915522649884224, + -0.07076744735240936, + -0.06726815551519394, + -0.00135809404309839, + -0.0725339874625206, + 0.04907187446951866, + -0.08473899215459824, + -0.012778633274137974, + 0.04255594685673714, + 0.01769639365375042, + -0.03476425260305405, + -0.08035125583410263, + -0.05436338856816292, + 0.05272240936756134, + -0.0018711972516030073, + 0.031295374035835266, + 0.03030802123248577, + -0.03506772220134735, + -0.05237980931997299, + -0.05209996923804283, + -0.005091081373393536, + 0.030810130760073662, + 0.008460414595901966, + -0.02484857477247715, + 0.04990221560001373, + 0.013272655196487904, + 0.003985617775470018, + -0.05416731536388397, + 0.052337147295475006, + -0.06864890456199646, + -0.06402303278446198, + 0.017947953194379807, + 0.06123281642794609, + -0.024970175698399544, + 0.012996257282793522, + -0.015033327043056488, + -0.13234540820121765, + 0.055413056164979935, + -0.13022546470165253, + 0.07810312509536743, + -0.037504859268665314, + -0.042511872947216034, + 0.09733583778142929, + -0.02485649287700653, + 0.05492452159523964, + -0.015996253117918968, + -0.050871122628450394, + 0.0057665565982460976, + -0.07622267305850983, + -0.026936056092381477, + -0.030227363109588623, + 0.01248172391206026, + -0.025346914306282997, + -0.0006770319305360317, + -0.008621513843536377, + 0.03085375390946865, + 0.03579600155353546, + -0.008375435136258602, + 0.030898181721568108, + 0.012169761583209038, + -0.0033480264246463776, + 0.0006841213908046484, + 0.0698605552315712, + 0.010420205071568489, + -0.028149046003818512, + 0.007142064161598682, + 0.054513707756996155, + 0.010359693318605423, + 0.0502808578312397, + 0.019847767427563667, + -0.004192960448563099, + 0.003584602614864707, + 0.023686952888965607, + -0.035182368010282516, + 0.051607172936201096, + -0.004461033269762993, + -0.00026145298033952713, + -0.019205518066883087, + 0.030776048079133034, + -0.12370233237743378, + -0.02449190430343151, + 0.04258212819695473, + 0.058901939541101456, + -0.023745812475681305, + 0.03108699433505535, + -0.04370000585913658, + 0.08085868507623672, + -0.002618761733174324, + 0.014869673177599907, + -0.018158268183469772, + 0.014609153382480145, + 0.02695082686841488, + -0.004698594566434622, + 0.03301671892404556, + -1.6673048719439976e-08, + -0.01637723110616207, + -0.0023508744779974222, + -0.11524022370576859, + -0.008928898721933365, + 0.07425374537706375, + -0.014273416250944138, + -0.04613732174038887, + -0.023614240810275078, + -0.08470084518194199, + 0.03318192437291145, + 0.024054231122136116, + 0.06481447070837021, + -0.11693025380373001, + -0.07646331191062927, + -0.013051078654825687, + 0.021331846714019775, + -0.026193130761384964, + 0.028703607618808746, + -0.020765205845236778, + -0.0060052573680877686, + -0.019841685891151428, + -0.03672636300325394, + 0.027343513444066048, + 0.08204371482133865, + -0.04782096669077873, + 0.009906481951475143, + -0.054629016667604446, + 0.09141736477613449, + 0.04622022435069084, + 0.03822688013315201, + 0.012938992120325565, + -0.06205722689628601, + -0.0381455235183239, + 0.02477925270795822, + 0.022090261802077293, + -0.0811166912317276, + -0.11760146915912628, + -0.008179045282304287, + 0.022400783374905586, + 0.05151640251278877, + -0.020473195239901543, + 0.010914772748947144, + 0.02811383828520775, + -0.033679813146591187, + 0.04421231150627136, + 0.003310334635898471, + 0.02832968160510063, + -0.07012992352247238, + -0.0016298333648592234, + -0.03497996926307678, + -0.10179532319307327, + -0.06693796068429947, + 0.015419766306877136, + 0.04047105088829994, + -0.08538620918989182, + -0.04340227693319321, + -0.02487386390566826, + 0.10685039311647415, + 0.001766387838870287, + 0.006515203509479761, + 0.042560067027807236, + 0.07317012548446655, + -0.022863397374749184, + -0.0007047370891086757 + ], + "intersect-three-bold||venn-diagram,join,intersection,gender,pronouns": [ + 0.08517487347126007, + -0.049498967826366425, + 0.0004548331198748201, + 0.0403713583946228, + 0.01835155487060547, + -0.03810425475239754, + 0.07038271427154541, + -0.10017836838960648, + -0.04080939665436745, + -0.033789265900850296, + 0.007275378331542015, + -0.06823324412107468, + 0.007600948214530945, + -0.005884842947125435, + 0.004556434229016304, + 0.07389780879020691, + -0.04271458834409714, + 0.031835269182920456, + -0.008220231160521507, + -0.014161915518343449, + -0.021442532539367676, + -0.06026887148618698, + 0.09695935994386673, + -0.029723217710852623, + 0.01402396522462368, + -0.0035603067371994257, + 0.027124246582388878, + 0.018956059589982033, + 0.01222827099263668, + -0.043740589171648026, + 0.00363191612996161, + -0.010692397132515907, + 0.09216675907373428, + 0.043708886951208115, + 0.012189831584692001, + -0.06523387879133224, + -0.009154705330729485, + 0.029338236898183823, + 0.05732444301247597, + 0.0549621507525444, + -0.03343183174729347, + -0.09091036021709442, + 0.05905383080244064, + -0.041789181530475616, + 0.05906105786561966, + 0.08808762580156326, + -0.1389811635017395, + 0.04233391582965851, + -0.013019632548093796, + -0.016714096069335938, + 0.006062627770006657, + -0.10023953020572662, + -0.06344924867153168, + 0.03014708124101162, + 0.0045215361751616, + 0.03247454762458801, + -0.08046690374612808, + -0.013147281482815742, + 0.0072077540680766106, + 0.05436190962791443, + -0.051578689366579056, + -0.013436105102300644, + 0.02959219366312027, + 0.033904507756233215, + 0.07744688540697098, + 0.013730812817811966, + -0.0213308185338974, + 0.05458652600646019, + -0.037305135279893875, + 0.10001957416534424, + 0.05022439733147621, + 0.03924056142568588, + -0.08836425095796585, + -0.0443519689142704, + -0.031185617670416832, + 0.03182592615485191, + 0.09640137851238251, + -0.012104928493499756, + -0.0007075979956425726, + -0.050479184836149216, + -0.07727834582328796, + -0.02171582169830799, + -0.041779860854148865, + 0.08086380362510681, + 0.03288496285676956, + -0.018287578597664833, + -0.15265044569969177, + -0.07867631316184998, + -0.12354250252246857, + -0.0013980980729684234, + -0.10209914296865463, + 0.020065240561962128, + 0.06209631264209747, + -0.0022467912640422583, + 0.03771163523197174, + 0.097773477435112, + 0.08377038687467575, + -0.001808895613066852, + -0.019094383344054222, + 0.10302306711673737, + -0.00919109582901001, + 0.06001859903335571, + 0.017535317689180374, + -0.04518849402666092, + -0.025585994124412537, + 0.021923165768384933, + 0.02071213535964489, + -0.04288555681705475, + -0.02366391196846962, + -0.09870952367782593, + 0.023280402645468712, + -0.06723235547542572, + 0.014030542224645615, + -0.03717784211039543, + -0.025771452113986015, + 0.04760034754872322, + 0.0611041784286499, + 0.0374394990503788, + 0.15574820339679718, + -0.04744231328368187, + -0.07335946708917618, + 0.028823193162679672, + 0.020512139424681664, + -0.029446637257933617, + 0.0033239906188100576, + -0.013798419386148453, + -0.04908714443445206, + -2.0795701784465782e-33, + 0.02184365503489971, + -0.04097011312842369, + -0.0475040040910244, + 0.08249747008085251, + 0.04504048451781273, + 0.029808050021529198, + -0.05955234915018082, + -0.09337926656007767, + -0.09357178211212158, + 0.01853601075708866, + -0.01663251779973507, + 0.0156264565885067, + 0.022434407845139503, + -0.0415174625813961, + 0.08267414569854736, + 0.029694626107811928, + 0.05249098315834999, + 0.0004520612128544599, + -0.16052056849002838, + 0.04733983427286148, + 0.011296465992927551, + 0.04774477332830429, + -0.05516200140118599, + 0.06208494305610657, + 0.04233242943882942, + 0.025950103998184204, + 0.029350532218813896, + -0.024325426667928696, + 0.061998967081308365, + 0.015131236985325813, + 0.002674609422683716, + 0.10908912867307663, + 0.017812753096222878, + 0.06014350429177284, + -0.0026942789554595947, + 0.00035183390718884766, + 0.01370200701057911, + -0.016546130180358887, + -0.0008478033123537898, + 0.09069786965847015, + 0.0012594223953783512, + -0.02970917895436287, + 0.04865468665957451, + -0.038287434726953506, + 0.011614549905061722, + 0.038273245096206665, + -0.01829221472144127, + 0.024540742859244347, + 0.01718994416296482, + 0.1080634668469429, + -0.022993003949522972, + 0.061734262853860855, + -0.013786240480840206, + -0.04597634822130203, + 0.01300733257085085, + -0.03177787363529205, + 0.0020271465182304382, + 0.08568140864372253, + 0.02315233275294304, + 0.056880734860897064, + 0.016587572172284126, + 0.03441379964351654, + -0.0018637155881151557, + 0.019667722284793854, + -0.025764845311641693, + 0.07335734367370605, + -0.11379684507846832, + -0.0067846160382032394, + 0.14502033591270447, + -0.015224671922624111, + -0.04508421942591667, + 0.0699860155582428, + 0.02046162635087967, + 0.06123560294508934, + -0.010056081227958202, + 0.04177309200167656, + -0.04755682870745659, + 0.03169751167297363, + 0.04103165119886398, + -0.03288153186440468, + -0.0024127971846610308, + 0.012248396873474121, + -0.06780935823917389, + -0.0034900608006864786, + -0.004686719737946987, + -0.03857718035578728, + -0.02625187672674656, + -0.09353327751159668, + 0.04172297939658165, + 0.042783744633197784, + -0.0448613278567791, + 0.033912595361471176, + 0.0348111167550087, + -0.01438929047435522, + -0.01260062400251627, + -1.6292991107038905e-34, + 0.028618626296520233, + 0.05339011922478676, + -0.0635785236954689, + -0.0927187129855156, + 0.015530979260802269, + -0.08881700038909912, + 0.0707680955529213, + -0.09417500346899033, + 0.02924182265996933, + 0.02995341084897518, + 0.018774094060063362, + -0.05219525098800659, + -0.04635224863886833, + -0.047951895743608475, + 0.072761170566082, + -0.007919899187982082, + -0.015269131399691105, + -0.013474766165018082, + -0.009685095399618149, + -0.001275597489438951, + -0.0402304083108902, + 0.011273389682173729, + -0.004339899402111769, + 0.024062858894467354, + -0.016934197396039963, + 0.03666321560740471, + 0.06514918804168701, + -0.05418308824300766, + -0.03899506852030754, + 0.060825005173683167, + -0.07849517464637756, + -0.09615851938724518, + 0.016353167593479156, + 0.06669190526008606, + 0.006744433660060167, + 0.0009528017253614962, + -0.06499936431646347, + -0.09280172735452652, + 0.06477247178554535, + -0.09082786738872528, + 0.04978004842996597, + -0.005819720681756735, + -0.04830867797136307, + 0.0841376855969429, + -0.006656473968178034, + 0.059743642807006836, + -0.049236029386520386, + -0.006644205655902624, + -0.01705899089574814, + -0.026510827243328094, + -0.08316367119550705, + -0.06881262362003326, + 0.0008027851581573486, + -0.08067870885133743, + 0.018283266574144363, + -0.04367194324731827, + 0.07527989894151688, + -0.06936269253492355, + -0.001918997149914503, + 0.10110776871442795, + 0.0012410166673362255, + 0.0006909557268954813, + 0.015022657811641693, + 0.08009167015552521, + -0.04463459178805351, + -0.060471996665000916, + -0.048695724457502365, + -0.015338869765400887, + -0.019940020516514778, + 0.0010197799419984221, + 0.05567567050457001, + -0.0582246296107769, + -0.006269065663218498, + 0.010433840565383434, + -0.030625808984041214, + 0.021829459816217422, + -0.01462423987686634, + 0.0479060597717762, + -0.013210609555244446, + 0.0004083184467162937, + -0.09499666094779968, + -0.018183231353759766, + 0.023647671565413475, + 0.08178188651800156, + -0.023895662277936935, + 0.02881254255771637, + -0.03331156075000763, + 0.08687757700681686, + 0.016460269689559937, + 0.0006216642213985324, + -0.018725212663412094, + 0.02938329428434372, + -0.01087258756160736, + 0.003668537363409996, + -0.020922038704156876, + -1.9596294364987443e-08, + 0.01961583085358143, + 0.0151221239939332, + -0.09568730741739273, + 0.011483925394713879, + 0.046195417642593384, + 0.018482012674212456, + -0.030293934047222137, + -0.06993028521537781, + -0.05797537416219711, + 0.032479073852300644, + 0.036906272172927856, + 0.08569671213626862, + -0.09281463921070099, + -0.07195093482732773, + 0.0600898303091526, + -0.019446110352873802, + 0.006591705605387688, + 0.05726485326886177, + -0.035535167902708054, + -0.04053892567753792, + -0.0029338127933442593, + -0.031682390719652176, + 0.008126972243189812, + 0.025648443028330803, + -0.009055634029209614, + 0.039381444454193115, + -0.05054705590009689, + 0.07170843333005905, + -0.02923772856593132, + 0.015485001727938652, + 0.0029450703877955675, + -0.018345266580581665, + -0.06877762079238892, + 0.05397625267505646, + 0.014570760540664196, + -0.04449189454317093, + -0.11429435014724731, + -0.011529517360031605, + 0.027550168335437775, + 0.041617251932621, + 0.030742766335606575, + 0.005915672518312931, + -0.023839570581912994, + -0.002245246898382902, + 0.04070794954895973, + 0.0012313163606449962, + 0.016493652015924454, + -0.08053138107061386, + -0.010785870254039764, + -0.004288861528038979, + -0.10448139905929565, + -0.07227773219347, + 0.03244650363922119, + 0.057140350341796875, + -0.026840923354029655, + -0.04070499911904335, + -0.012470100075006485, + 0.08738383650779724, + -0.02715071104466915, + 0.01889149472117424, + 0.060101788491010666, + 0.04652025178074837, + -0.004445215687155724, + -0.01618886925280094 + ], + "intersection-bold||*new*,\u2229,intersection,set,member,mathematics,arithmetic,calculator": [ + 0.030254116281867027, + -0.020374558866024017, + -0.008145280182361603, + 0.0388137586414814, + -0.011244704946875572, + -0.05700555071234703, + 0.11076986789703369, + -0.026996521279215813, + -0.06431819498538971, + -0.010326137766242027, + 0.0030811820179224014, + -0.07145614922046661, + 0.05648180842399597, + -0.057577017694711685, + -0.018436573445796967, + 0.03936637192964554, + -0.06812629103660583, + 0.0028128281701356173, + -0.010409057140350342, + 0.01159794069826603, + 0.028778066858649254, + -0.012951882556080818, + -0.004985238425433636, + 0.03756371885538101, + 0.04283545911312103, + 0.04401146247982979, + 0.05099998414516449, + 0.0059065138921141624, + 0.08622591942548752, + 0.00041924911784008145, + -0.04803219810128212, + -0.03132016956806183, + 0.1286405771970749, + -0.008328468538820744, + 0.012857656925916672, + -0.0630769208073616, + 0.023114314302802086, + 0.043191973119974136, + 0.055230092257261276, + 0.07036382704973221, + -0.06119054555892944, + -0.09550390392541885, + 0.032431818544864655, + 0.021915029734373093, + 0.00804303027689457, + 0.04543671756982803, + -0.051451440900564194, + 0.01863485388457775, + 0.03323455899953842, + -0.06456147134304047, + 0.0002604889450594783, + -0.07795305550098419, + -0.10483969002962112, + -0.06352584064006805, + 0.07074721157550812, + 0.07101566344499588, + -0.05657852068543434, + -0.0291308406740427, + 0.04015231132507324, + -0.010757462121546268, + -0.03892532363533974, + -0.031063904985785484, + 0.05140571668744087, + 0.010518800467252731, + 0.05388246849179268, + 0.01660161465406418, + -0.00657117273658514, + 0.05508348345756531, + -0.01679883897304535, + 0.06489069014787674, + -0.08532734960317612, + 0.09668915718793869, + -0.03710964322090149, + -0.00469424482434988, + -0.10390225052833557, + 0.02388940565288067, + 0.06575959175825119, + 0.03811458498239517, + -0.013204286806285381, + 0.07647351175546646, + -0.08577107638120651, + -0.05022452399134636, + -0.05249195173382759, + 0.00972296204417944, + 0.05677250027656555, + 0.024508044123649597, + -0.06432836502790451, + -0.1027885377407074, + -0.02921629324555397, + -0.06314069777727127, + -0.04590407758951187, + -0.007102236617356539, + -0.003530435264110565, + 0.04702425375580788, + -0.047146789729595184, + 0.05321311205625534, + 0.0865117684006691, + 0.022632934153079987, + 0.01851247064769268, + 0.08391404151916504, + -0.013919553719460964, + 0.06657592207193375, + -0.014982436783611774, + 0.004125491715967655, + -0.018781589344143867, + 0.020861277356743813, + 0.03017685003578663, + -0.04632428288459778, + -0.04518985003232956, + -0.07513812184333801, + 0.07415183633565903, + -0.1011558249592781, + -0.016535449773073196, + -0.030532823875546455, + 0.01847555674612522, + 0.053178366273641586, + 0.03567073494195938, + -0.003450938733294606, + 0.10620702058076859, + -0.0026558768004179, + -0.026380112394690514, + -0.00939945038408041, + 0.012353923171758652, + -0.045768532902002335, + -0.025215907022356987, + -0.006602367386221886, + -0.05459139123558998, + -2.2872150107055965e-33, + -0.004049182403832674, + 0.005417765583842993, + -0.08955410122871399, + 0.060520973056554794, + -0.03740892559289932, + -0.004136617295444012, + -0.06562356650829315, + -0.04985395818948746, + -0.08580294996500015, + 0.0693972036242485, + 0.09260357916355133, + 0.06562606990337372, + 0.07775387167930603, + 0.023007718846201897, + 0.1590953916311264, + -0.016046905890107155, + 0.0767797976732254, + -0.07165488600730896, + -0.062197986990213394, + -0.0010133064351975918, + -0.06393816322088242, + 0.03172684833407402, + -0.06522715091705322, + 0.046538837254047394, + 0.008261759765446186, + 0.105000801384449, + 0.04500270262360573, + -0.033533383160829544, + 0.038537297397851944, + 0.006253398954868317, + -0.04289088770747185, + 0.10633430629968643, + 0.05632195249199867, + 0.06792256236076355, + 0.02953903190791607, + 0.051647771149873734, + -0.017767420038580894, + -0.0366264283657074, + 0.02410707250237465, + -0.01921340636909008, + -0.030386095866560936, + -0.021065641194581985, + 0.07447107881307602, + -0.029781034216284752, + 0.062903493642807, + 0.05903184041380882, + -0.08484948426485062, + 0.015224236063659191, + 0.08445089310407639, + 0.07576614618301392, + -0.041678231209516525, + 0.0341014601290226, + -0.02305186539888382, + -0.015128731727600098, + -0.030351312831044197, + -0.013453556224703789, + -0.03430601954460144, + 0.10657288134098053, + 0.034493107348680496, + 0.10299527645111084, + -0.020428558811545372, + 0.013203876093029976, + 0.0229767058044672, + 0.053143080323934555, + -0.12903083860874176, + 0.09944619238376617, + -0.0766906663775444, + 0.011518431827425957, + 0.0886249989271164, + 0.019147345796227455, + -0.020931143313646317, + 0.07190632075071335, + -0.04188581556081772, + 0.08819109946489334, + 0.060736775398254395, + -0.010114729404449463, + 0.03447752445936203, + -0.010798251256346703, + -0.0022635934874415398, + -0.05250195786356926, + 0.017372218891978264, + 0.021595196798443794, + -0.03434630483388901, + 0.02474234625697136, + 0.015848811715841293, + -0.04600013047456741, + -0.014151668176054955, + 0.00029661619919352233, + 0.01265848707407713, + -0.0007140833185985684, + -0.11882482469081879, + 0.00013356126146391034, + 0.020713528618216515, + -0.06685729324817657, + -0.06369800865650177, + -1.55387790082832e-33, + 0.05194660276174545, + 0.00939115695655346, + -0.07926686108112335, + -0.0700061097741127, + -0.08092241734266281, + -0.036200206726789474, + 0.06615398079156876, + -0.08248307555913925, + -0.025051407516002655, + -0.0224104393273592, + 0.015118890441954136, + 0.053899943828582764, + -0.06547727435827255, + -0.06373000890016556, + -0.006063200533390045, + -0.0323113352060318, + -0.062373898923397064, + -0.028930889442563057, + -0.07143743336200714, + -0.05029626563191414, + -0.06613750755786896, + 0.015678836032748222, + 0.012791439890861511, + -0.04501522332429886, + 0.0023014170583337545, + -0.016017107293009758, + -1.0145507189918135e-07, + 0.020470913499593735, + -0.059233445674180984, + 0.0019208570010960102, + -0.056510068476200104, + -0.06735404580831528, + 0.040739480406045914, + 0.050084151327610016, + -0.06757234036922455, + 0.004945272114127874, + 0.07336729764938354, + -0.11667114496231079, + 0.05991241708397865, + -0.0721733421087265, + 0.01358744129538536, + -0.07009879499673843, + 0.08391514420509338, + 0.08619020879268646, + 0.008610219694674015, + 0.00944298692047596, + -0.028612609952688217, + -0.02176119014620781, + -0.03431527689099312, + 0.017140571027994156, + 0.012010224163532257, + -0.0631801187992096, + 0.07128540426492691, + -0.007090755272656679, + -0.03902481496334076, + 0.03901508450508118, + 0.023902712389826775, + -0.04836972802877426, + -0.00949123501777649, + 0.0642583817243576, + 0.019360432401299477, + 0.027666281908750534, + 0.00579996919259429, + 0.11316526681184769, + -0.010857146233320236, + -0.0916372761130333, + -0.05058743804693222, + -0.02358812279999256, + -0.04430475831031799, + 0.004144633188843727, + 0.010677201673388481, + -0.04169522225856781, + -0.029561806470155716, + -0.0015987275401130319, + -0.08145591616630554, + 0.012704727239906788, + 0.025785554200410843, + 0.03133536875247955, + -0.02998119778931141, + 0.011645465157926083, + -0.027334803715348244, + 0.03776945546269417, + -0.015633108094334602, + -0.0007446195231750607, + -0.06785597652196884, + 0.03536849096417427, + 0.007429416757076979, + -0.011803723871707916, + -0.027631931006908417, + -0.06622415035963058, + -0.03815362602472305, + -0.009077769704163074, + -0.04854471981525421, + -0.013177748769521713, + -0.07409556955099106, + -2.3152804118353743e-08, + 0.020243791863322258, + -0.03544051945209503, + -0.05204286426305771, + -0.0073102605529129505, + 0.06135311350226402, + 0.04637164995074272, + -0.05930263176560402, + -0.10167760401964188, + -0.08027511090040207, + -0.0008494271314702928, + 0.04346514865756035, + 0.09385289251804352, + -0.11182081699371338, + -0.008609342388808727, + -0.021786952391266823, + -0.005859443452209234, + 0.030870674178004265, + 0.02077776938676834, + -0.045853614807128906, + -0.01899079792201519, + -0.058852363377809525, + 0.02595195546746254, + 0.09529434889554977, + 0.0013617490185424685, + -0.016835931688547134, + 0.009824042208492756, + -0.025003211572766304, + 0.06398823112249374, + 0.04626819118857384, + 0.0026407584082335234, + 0.06377975642681122, + 0.007066468242555857, + -0.009237688966095448, + 0.016379835084080696, + -0.0025688554160296917, + -0.018958257511258125, + -0.07191288471221924, + 0.0439123809337616, + -0.0031043265480548143, + 0.08792603015899658, + -0.05042208358645439, + -0.01166670024394989, + -0.01712900400161743, + -0.02050129510462284, + 0.035540759563446045, + -0.003126101568341255, + -0.05071217939257622, + -0.04939280450344086, + 0.022738268598914146, + -0.03169841319322586, + -0.09168970584869385, + 0.03039591759443283, + 0.0280319731682539, + 0.013645376078784466, + -0.06366975605487823, + -0.018997706472873688, + -0.039075639098882675, + 0.10468887537717819, + -0.04235115647315979, + 0.01760871708393097, + 0.06241166219115257, + 0.01590900868177414, + 0.03862866386771202, + 0.02857356332242489 + ], + "invoice-bold||*new*,receipt,expense,bill": [ + -0.07319369167089462, + 0.06005380302667618, + -0.026731112971901894, + -0.012302938848733902, + -0.040121208876371384, + -0.02624661475419998, + 0.007881296798586845, + -0.014371403492987156, + 0.030233193188905716, + 0.036581169813871384, + 0.046648383140563965, + -0.04100789502263069, + 0.01923082396388054, + -0.0583510622382164, + -0.028939878568053246, + 0.02725573256611824, + 0.04585253447294235, + 0.019698135554790497, + -0.01722351647913456, + 0.04166729375720024, + 0.06828509271144867, + 0.07831272482872009, + -0.05214100331068039, + 0.022252770140767097, + 0.0772293359041214, + 0.03322834521532059, + -0.008350491523742676, + -0.015030702576041222, + 0.011551573872566223, + -0.1117616593837738, + 0.005212808959186077, + -0.03214491903781891, + 0.10441990941762924, + -0.012454013340175152, + 0.14278779923915863, + 0.02164141833782196, + 0.029128702357411385, + 0.04513714089989662, + 0.0513409823179245, + 0.017279865220189095, + 0.02051706239581108, + -0.09630697965621948, + -0.045821256935596466, + -0.009275167249143124, + -0.015309136360883713, + 0.0008968505426310003, + -0.004560510627925396, + 0.011388873681426048, + 0.06735613942146301, + 0.05401702970266342, + -0.025042518973350525, + -0.05053478851914406, + -0.08410744369029999, + 0.060132354497909546, + 0.03952140361070633, + -0.036532897502183914, + 0.020059892907738686, + -0.06648055464029312, + -0.03481479734182358, + -0.09138627350330353, + -0.040144406259059906, + 0.05947661027312279, + 0.026420757174491882, + 0.02156423218548298, + -0.0030835308134555817, + 0.040425658226013184, + -0.0416332446038723, + 0.07584986090660095, + -0.12155787646770477, + 0.04191476106643677, + 0.018982529640197754, + 0.047700390219688416, + -0.01794498786330223, + -0.013178561814129353, + -0.008359749801456928, + -0.021935338154435158, + 0.09759964048862457, + 0.001961290603503585, + -0.09283800423145294, + -0.038679201155900955, + -0.01646953448653221, + -0.001959071261808276, + -0.05785883963108063, + -0.008329024538397789, + 0.07703693211078644, + 0.030863367021083832, + -0.049286652356386185, + -0.049755897372961044, + 0.011757622472941875, + -0.02391488291323185, + -0.02704891748726368, + -0.011152873747050762, + 0.00666771037504077, + -0.026850081980228424, + -0.03427547961473465, + 0.027786334976553917, + 0.06339568644762039, + -0.04355258122086525, + 0.06561970710754395, + 0.08018018305301666, + 0.025162387639284134, + 0.030442578718066216, + 0.0647573322057724, + -0.001759301871061325, + -0.01445614080876112, + -0.02242356352508068, + 0.028521399945020676, + -0.03509011119604111, + 0.0063958014361560345, + 0.00716658728197217, + 0.030768144875764847, + -0.10744622349739075, + -0.019678257405757904, + -0.09850270301103592, + -0.0006243071984499693, + 0.013238772749900818, + -0.04276881739497185, + -0.00706632761284709, + 0.0945768803358078, + -0.008144460618495941, + 0.041785553097724915, + -0.0013967390405014157, + -0.04269246757030487, + -0.027450770139694214, + -0.08285783976316452, + -0.009668096899986267, + 0.0846962258219719, + -2.267429971413319e-33, + -0.04001498594880104, + 0.028136830776929855, + -0.03236575424671173, + 0.028236540034413338, + 0.010784911923110485, + 0.08215980231761932, + 0.007071748375892639, + 0.02912428230047226, + -0.04798172414302826, + -0.02867404744029045, + 0.03746329993009567, + 0.05452112853527069, + -0.005883623845875263, + 0.05698037147521973, + -0.08702993392944336, + -0.024719035252928734, + -0.02528034895658493, + 0.059413373470306396, + -0.014897119253873825, + 0.026913946494460106, + -0.12972117960453033, + -0.013719872571527958, + 0.005978819448500872, + 0.05705302208662033, + -0.003358094021677971, + -0.02520972490310669, + 0.0796651616692543, + -0.0208218265324831, + -0.08179067820310593, + 0.01566127873957157, + 0.08423800021409988, + 0.009774290025234222, + 0.07842688262462616, + 0.057245440781116486, + -0.04226700961589813, + 0.08112815767526627, + -0.0356515496969223, + -0.0209535900503397, + 0.07094193249940872, + -0.029213156551122665, + -0.05442259833216667, + -0.011566625908017159, + 0.026215935125947, + -0.02747964672744274, + -0.09152714908123016, + 0.08682727068662643, + -0.02071685530245304, + -0.04825970530509949, + 0.03284461051225662, + -0.004438331350684166, + -0.027368882670998573, + -0.03309822827577591, + -0.032286111265420914, + 0.0010708480840548873, + 0.0001585139980306849, + -0.03409166261553764, + 0.017932606860995293, + 0.03974321857094765, + 0.05798133462667465, + -0.09186578541994095, + 0.03736855089664459, + 0.07166392356157303, + 0.06678014993667603, + 0.03638662025332451, + -0.06729985773563385, + -0.02191038429737091, + -0.025882931426167488, + 0.015494778752326965, + 0.098505400121212, + -0.021085789427161217, + -0.048545096069574356, + 0.02068311721086502, + -0.048376403748989105, + 0.02309054136276245, + 0.0012564894277602434, + 0.05189996212720871, + 0.029960134997963905, + -0.04477008059620857, + 0.07515175640583038, + -0.07001031190156937, + -0.08016609400510788, + 0.007935506291687489, + 0.013504785485565662, + 0.12991389632225037, + 0.018466729670763016, + 0.10757166147232056, + 0.014232729561626911, + -0.04439100623130798, + -0.03662116825580597, + -0.023194387555122375, + -0.03594724461436272, + -0.008581102825701237, + -0.06563051044940948, + -0.0278459545224905, + 0.04684048518538475, + -7.501795562016599e-34, + 0.06003285199403763, + 0.087181456387043, + 0.004989525303244591, + -0.020657025277614594, + -0.07934751361608505, + 0.06744562089443207, + 0.003493116470053792, + -0.014274477027356625, + -0.023219240829348564, + 0.07360132038593292, + 0.013537663966417313, + -0.007276901043951511, + -0.16647671163082123, + -0.04852113872766495, + 0.08153563737869263, + -0.03165102377533913, + 0.013333006761968136, + 0.020372403785586357, + 0.03161882609128952, + 0.011140679009258747, + -0.03346690535545349, + 0.06804807484149933, + -0.06572749465703964, + 0.0772034153342247, + -0.041171278804540634, + 0.02510235831141472, + -0.039018433541059494, + -0.048422034829854965, + -0.025660688057541847, + 0.006594410166144371, + -0.05167114734649658, + -0.0059158895164728165, + 0.022163046523928642, + 0.10112875699996948, + -0.05881485715508461, + -0.0030898377299308777, + 0.0466577485203743, + -0.018809400498867035, + 0.058206234127283096, + -0.010630901902914047, + 0.04226541146636009, + 0.016502931714057922, + 0.08638237416744232, + 0.03630001097917557, + -0.03341641649603844, + -0.10959911346435547, + -0.016198275610804558, + -0.06816289573907852, + 0.01773647964000702, + 0.04123178869485855, + -0.02111234702169895, + -0.01832541450858116, + -0.051627736538648605, + 0.03850063681602478, + -0.11237166076898575, + 0.08106536418199539, + 0.038479793816804886, + -0.03447449952363968, + 0.02582058496773243, + -0.02473369613289833, + -0.09251333773136139, + 0.05212785676121712, + 0.02368270792067051, + 0.004275812301784754, + -0.005276611540466547, + -0.04361356422305107, + 0.052791863679885864, + -0.08857003599405289, + 0.05111394077539444, + -0.027209876105189323, + -0.0295877642929554, + -0.026392130181193352, + -0.044880036264657974, + -0.07262297719717026, + 0.03542070835828781, + -0.021350480616092682, + -0.031240997835993767, + -0.04124639928340912, + -0.0385337769985199, + 0.027717575430870056, + -0.008112755604088306, + 0.017335237935185432, + -0.005444299429655075, + 0.04205619543790817, + -0.11274301260709763, + -0.04101527854800224, + 0.008455999195575714, + -0.01641216315329075, + 0.014756926335394382, + 0.013934950344264507, + -0.08192741125822067, + 0.06893020123243332, + -0.0006167206447571516, + 0.024736961349844933, + -0.09559809416532516, + -2.089823247786171e-08, + -0.02296377904713154, + 0.003503477666527033, + 0.0011490097967907786, + -0.009497430175542831, + 0.0292346253991127, + -0.14120319485664368, + -0.05083540827035904, + -0.018791720271110535, + -0.05402029678225517, + 0.009329386986792088, + 0.04148457944393158, + -0.028369737789034843, + -0.021359752863645554, + -0.0831533893942833, + 0.006071289069950581, + 0.03587320074439049, + 0.002879780950024724, + -0.06269107758998871, + -0.050791122019290924, + -0.04142099246382713, + -0.0016809788066893816, + 0.07490802556276321, + -0.034705277532339096, + -0.012511302717030048, + 0.014245269820094109, + -0.04482321813702583, + -0.05224873125553131, + 0.06462220847606659, + 0.07374405115842819, + 0.035240836441516876, + 0.055484265089035034, + 0.09836326539516449, + 0.014845765195786953, + -0.015921104699373245, + -0.06539469212293625, + -0.07146356254816055, + -0.023916123434901237, + 0.0015513626858592033, + 0.020006727427244186, + 0.105863556265831, + 0.004000912886112928, + -0.011664415709674358, + -0.06953854113817215, + -0.022224493324756622, + -0.0088748037815094, + -0.007525808643549681, + -0.05787931755185127, + -0.10215072333812714, + -0.09637013077735901, + -0.10517623275518417, + -0.027651796117424965, + -0.002296794205904007, + 0.042700912803411484, + 0.0746014341711998, + -0.05832051858305931, + -0.03872639313340187, + 0.03991438448429108, + 0.04688611254096031, + 0.036703627556562424, + 0.0029780759941786528, + 0.16471613943576813, + -0.03808111697435379, + 0.07611575722694397, + -0.009949897415935993 + ], + "island-bold||*new*,geography,beach,ocean,tropical,palm,vacation,trip,locations,places": [ + 0.11956925690174103, + -0.05612939968705177, + -0.022211484611034393, + 0.04037683084607124, + 0.03927160054445267, + -0.04416988044977188, + -0.029610825702548027, + -0.09725779294967651, + -0.06712757050991058, + 0.029767414554953575, + 0.11933029443025589, + -0.054455507546663284, + -0.023747624829411507, + -0.03151269629597664, + 0.08695876598358154, + 0.01095721684396267, + 0.03556551784276962, + -0.0171964094042778, + 0.038689810782670975, + 0.001220534322783351, + 0.09256763756275177, + 0.04773721098899841, + 0.022638119757175446, + 0.04019761085510254, + 0.00873891543596983, + 0.01006611343473196, + 0.10541319102048874, + 0.011739515699446201, + -0.04437542334198952, + -0.05028840899467468, + -0.05444885045289993, + 0.11173481494188309, + 0.032055869698524475, + 0.051341503858566284, + 0.049350082874298096, + 0.05822642147541046, + -0.041639674454927444, + -0.039863765239715576, + 0.03816673904657364, + 0.027599316090345383, + -0.08446173369884491, + -0.04198843613266945, + 0.10311955213546753, + 0.02528824657201767, + -0.032349176704883575, + -0.04815778508782387, + -0.012310352176427841, + 0.0010243803262710571, + 0.054869383573532104, + -0.0357331819832325, + -0.0015930155059322715, + -0.03201707825064659, + -0.09544581174850464, + -0.0681532546877861, + -0.022264642640948296, + 0.00948703195899725, + -0.0476890429854393, + -0.06361884623765945, + 0.055994439870119095, + -0.016750117763876915, + 0.04164823144674301, + 0.017222750931978226, + -0.00019575170881580561, + 0.08933664113283157, + 0.04275699704885483, + -0.011452553793787956, + -0.05486859753727913, + 0.02113925665616989, + -0.024948017671704292, + -0.07752371579408646, + -0.017881963402032852, + 0.012888719327747822, + 0.025491463020443916, + -0.010640750639140606, + -0.08717965334653854, + -0.061996325850486755, + -0.005927356891334057, + 0.04263024777173996, + -0.0758647695183754, + 0.006741820834577084, + -0.05258626863360405, + -0.01556426752358675, + 0.05220896005630493, + 0.01050722599029541, + 0.029078340157866478, + 0.04850999265909195, + -0.04390440508723259, + -0.0639839917421341, + 0.002677235985174775, + -0.04537476971745491, + -0.005020408425480127, + -0.027297258377075195, + 0.01177901029586792, + 0.02721383050084114, + -0.0639307051897049, + 0.05688967555761337, + -0.020181668922305107, + -0.017046470195055008, + -0.040598832070827484, + 0.04141120985150337, + 0.0777457132935524, + 0.03418709710240364, + 0.009318804368376732, + 0.0470174103975296, + -0.030628176406025887, + 0.037624191492795944, + 0.009114607237279415, + -0.046286217868328094, + 0.03753548860549927, + 0.04375161975622177, + -0.08308949321508408, + -0.047461818903684616, + -0.020269490778446198, + -0.05536792054772377, + -0.013015419244766235, + 0.002920492785051465, + 0.02513466402888298, + 0.012036112137138844, + 0.08012867718935013, + 0.026004372164607048, + -0.011082153767347336, + -0.07876008749008179, + -0.0083243353292346, + -0.03748919442296028, + -0.03670568764209747, + 0.04864281788468361, + -0.001835807110182941, + -3.1433350769201535e-33, + 0.07270295917987823, + 0.01577647216618061, + -0.010652612894773483, + 0.10137113183736801, + 0.07024657726287842, + -0.03451868146657944, + -0.013987574726343155, + -0.11659740656614304, + -0.06063775718212128, + 0.030075984075665474, + 0.06572329252958298, + 0.03595250844955444, + -0.059717465192079544, + 0.04168936237692833, + 0.06222003698348999, + 0.028782999143004417, + 0.027361813932657242, + -0.0198090597987175, + -0.05892721191048622, + -0.013720614835619926, + -0.028905006125569344, + 0.013606606051325798, + -0.002604855690151453, + -0.0759212076663971, + -0.07671086490154266, + -0.07459748536348343, + -0.020711621269583702, + -0.07077640295028687, + -0.02662261761724949, + 0.0407070629298687, + -0.04261528328061104, + 0.03175625205039978, + 0.029502777382731438, + -0.021274052560329437, + -0.044431645423173904, + -0.015134035609662533, + -0.015493690967559814, + -0.06254266947507858, + 0.021666493266820908, + 0.033326905220746994, + -0.06917665898799896, + -0.024009348824620247, + -0.01645982451736927, + 0.10776041448116302, + 0.03439377620816231, + 0.027943719178438187, + 0.021854186430573463, + -0.034312352538108826, + 0.10754655301570892, + 0.05483661964535713, + -0.07844696938991547, + -0.08598178625106812, + -0.08863773196935654, + -0.07226887345314026, + 0.00125009601470083, + 0.013987981714308262, + -0.06574832648038864, + 0.03044058009982109, + 0.024091672152280807, + 0.06315378844738007, + 0.017487650737166405, + 0.008080043829977512, + 0.057912517338991165, + -0.07523467391729355, + -0.011662005446851254, + 0.06572268903255463, + 0.003810692112892866, + 0.02449183166027069, + 0.029605785384774208, + -0.05210636183619499, + -0.021351434290409088, + -0.01986159384250641, + 0.09558574110269547, + 0.04106975719332695, + 0.059483375400304794, + 0.021252231672406197, + 0.016486259177327156, + -0.005728363525122404, + -0.03714960068464279, + -0.01542156282812357, + -0.08358031511306763, + 0.020757805556058884, + -0.0768132358789444, + 0.13064324855804443, + -0.03916841745376587, + -0.02263248711824417, + -0.0005599826690740883, + -0.10190875083208084, + 0.07273980230093002, + -0.03307156264781952, + -0.09467340260744095, + -0.03171514719724655, + 0.010304884053766727, + -0.05956649035215378, + -0.05414261296391487, + -5.784936930650203e-34, + -0.01811865344643593, + -0.054427992552518845, + 0.003247132059186697, + -0.0786031112074852, + -0.043500009924173355, + -0.04902518913149834, + -0.01745399460196495, + 0.040639325976371765, + -0.020376941189169884, + -0.06028237193822861, + -0.2113129198551178, + -0.014481722377240658, + 0.01475757546722889, + -0.053254131227731705, + -0.07004043459892273, + 0.04221455752849579, + 0.07869046181440353, + 0.010084637440741062, + -0.06155756488442421, + 0.07855921238660812, + 0.03461730480194092, + -0.014364579692482948, + -0.04037566855549812, + 0.029235729947686195, + 0.07785659283399582, + 0.05268048122525215, + 0.005345208570361137, + -0.025205951184034348, + -0.033262692391872406, + -0.0812390148639679, + -0.015903538092970848, + 0.00911235623061657, + 0.06246719881892204, + 0.03437025472521782, + -0.15741027891635895, + 0.04290750250220299, + 0.022039789706468582, + -0.045283954590559006, + 0.02375072054564953, + 0.02695397473871708, + 0.05604401230812073, + -0.09620575606822968, + 0.03265231475234032, + 0.0037534376606345177, + -0.04005521908402443, + -0.005313506815582514, + -0.03770413622260094, + 0.0029208974447101355, + 0.02750370278954506, + -0.02469056472182274, + 0.003088080557063222, + 0.034483399242162704, + -0.013033856637775898, + 0.07951448112726212, + 0.07152874767780304, + -0.006643110886216164, + -0.027848361060023308, + 0.0621829517185688, + -0.02010810747742653, + -0.004212408326566219, + -0.0506315715610981, + 0.032988857477903366, + -0.0789402425289154, + 0.10728465020656586, + 0.05235249921679497, + -0.02328532561659813, + -0.007217172533273697, + -0.031944938004016876, + 0.018625516444444656, + 0.012307271361351013, + -0.13120794296264648, + 0.019070466980338097, + -0.04697512462735176, + 0.00997336208820343, + 0.04667312279343605, + -0.03565732762217522, + 0.023928558453917503, + -0.0827827900648117, + -0.030387943610548973, + 0.03827333077788353, + -0.03614113852381706, + -0.03266218304634094, + -0.08734007179737091, + 0.039541199803352356, + -0.007569476496428251, + 0.057146523147821426, + 0.058531418442726135, + -0.06311892718076706, + 0.019093742594122887, + -0.03755119815468788, + -0.018015412613749504, + 0.05395445600152016, + -0.10947246849536896, + -0.025910405442118645, + -0.050458092242479324, + -2.359003836716056e-08, + 0.10610050708055496, + 0.02497277222573757, + 0.021820327267050743, + -0.0025643203407526016, + -0.03827587887644768, + -0.04582582414150238, + 0.07479067146778107, + 0.06540244072675705, + -0.01690736785531044, + 0.06886041164398193, + -0.030980832874774933, + 0.010419419966638088, + 0.05417158827185631, + -0.04294871538877487, + 0.03180057927966118, + -0.0028758919797837734, + 0.054608382284641266, + 0.07874315977096558, + -0.0029614949598908424, + -0.06641245633363724, + -0.005250169429928064, + 0.05763468146324158, + 0.028569238260388374, + -0.018752725794911385, + -0.019754206761717796, + 0.029068458825349808, + 0.028018100187182426, + 0.025561155751347542, + 0.06746991723775864, + 0.002503783907741308, + -0.019358795136213303, + 0.013453228399157524, + -0.0327826589345932, + 0.028513381257653236, + -0.06423413753509521, + -0.05002797394990921, + -0.0709715336561203, + -0.060361139476299286, + -0.07380791753530502, + 0.008622949942946434, + -0.009461472742259502, + 0.0050717564299702644, + 0.010369831696152687, + 0.03378431871533394, + -0.0036876657977700233, + 0.025310756638646126, + 0.06707725673913956, + 0.026134153828024864, + 0.003900485346093774, + -0.05292411148548126, + -0.06256872415542603, + 0.01770223304629326, + 0.0340852290391922, + 0.015306909568607807, + 0.05487585812807083, + 0.021164553239941597, + 0.013078957796096802, + 0.056931283324956894, + 0.029760001227259636, + 0.1084393858909607, + 0.11217015236616135, + -0.045142244547605515, + -0.05263637751340866, + 0.02053808979690075 + ], + "jar-bold||*new*,mason jar,kitchen,pantry,canning,preserves,food,condiments": [ + -0.0074922991916537285, + -0.019809022545814514, + -0.003588613122701645, + 0.011446677148342133, + 0.03735789656639099, + -0.011380976065993309, + 0.03541067615151405, + -0.07312621176242828, + -0.02717585489153862, + -0.019826360046863556, + 0.09719236940145493, + -0.0635640025138855, + -0.0001729524665279314, + -0.033477723598480225, + -0.008227948099374771, + -0.07245991379022598, + 0.09828410297632217, + 0.06114298477768898, + -0.04523927718400955, + -0.053328629583120346, + 0.07132876664400101, + 0.0857825055718422, + 0.06595755368471146, + 0.010601788759231567, + 0.06207779794931412, + 0.06310678273439407, + 0.03234357759356499, + -0.036837778985500336, + -0.021643979474902153, + -0.10530942678451538, + -0.026591714471578598, + 0.02638348750770092, + 0.038056470453739166, + -0.0394798144698143, + 0.05354860797524452, + 0.03688732162117958, + 0.016041820868849754, + -0.02075434848666191, + 0.10259153693914413, + -0.014202522113919258, + -0.025781705975532532, + -0.0430593341588974, + -0.0015573481796309352, + 0.0634501650929451, + -0.09700475633144379, + -0.04185933247208595, + -0.0014032862382009625, + -0.021280042827129364, + 0.03593694791197777, + -0.022759925574064255, + -0.04875975102186203, + 0.00792744755744934, + -0.08895725756883621, + -0.01865740679204464, + 0.08169541507959366, + -0.006604993715882301, + -0.03958059847354889, + -0.044884804636240005, + -0.017918428406119347, + 0.06464909762144089, + 0.036968816071748734, + 0.004594398196786642, + 0.017869120463728905, + 0.02851632609963417, + -0.023707078769803047, + -0.045428067445755005, + -0.0019564698450267315, + 0.05290474370121956, + 0.017388764768838882, + -0.003648117184638977, + -0.06974444538354874, + 0.022512368857860565, + 0.029050307348370552, + 0.06881217658519745, + -0.028747791424393654, + -0.004981201607733965, + 0.05745333060622215, + -0.04488903284072876, + -0.030801815912127495, + -0.01891855150461197, + -0.055570609867572784, + 0.022534113377332687, + -0.040742743760347366, + -0.0031876692082732916, + -0.04031120613217354, + -0.008932560682296753, + -0.044423315674066544, + -0.030771557241678238, + 0.038940515369176865, + 0.016886547207832336, + -0.05217232182621956, + -0.07145162671804428, + 0.05307585000991821, + -0.05361868813633919, + -0.07411196827888489, + 0.06301455944776535, + -0.032057907432317734, + 0.0029886483680456877, + -0.004137679934501648, + 0.07432149350643158, + -0.012793038040399551, + 0.002512035658583045, + 0.08117489516735077, + -0.016823723912239075, + -0.030428672209382057, + -0.024880683049559593, + -0.08189713209867477, + -0.025535564869642258, + 0.06320255249738693, + 0.08478523790836334, + -0.01018923707306385, + -0.02651580423116684, + -0.049921657890081406, + -0.084333136677742, + -0.02003910206258297, + 0.006506382487714291, + 0.0681738555431366, + -0.07382073253393173, + 0.04776645824313164, + 0.002580104861408472, + 0.022782402113080025, + -0.09397474676370621, + -0.00016002371557988226, + -0.05915317311882973, + -0.06980939954519272, + 0.08230797946453094, + 0.04646998271346092, + -1.7898539836520786e-33, + -0.03758282959461212, + 0.014536971226334572, + 0.030380528420209885, + 0.12913672626018524, + 0.011652004905045033, + -0.03918633237481117, + -0.03483181446790695, + -0.058107033371925354, + -0.0756993517279625, + -0.010697402060031891, + 0.013524382375180721, + 0.07106618583202362, + -0.09558989107608795, + 0.0986386239528656, + 0.018588649109005928, + -0.06605706363916397, + 0.03368626534938812, + 0.015619656071066856, + 0.01322461012750864, + -0.03484409675002098, + -0.0684175118803978, + 0.08215190470218658, + -0.037248119711875916, + 0.023407235741615295, + -0.021621953696012497, + -0.032945893704891205, + 0.09021876007318497, + -0.015584580600261688, + -0.030416622757911682, + -0.0008735486771911383, + 0.08548043668270111, + -0.002553425030782819, + 0.034697551280260086, + 0.00812555756419897, + -0.04242216423153877, + 0.019382912665605545, + -0.05809280648827553, + -0.04201829805970192, + 0.03642864525318146, + -0.09242118149995804, + -0.08519662916660309, + 0.024601707234978676, + 0.01393077988177538, + 0.09837230294942856, + 0.0030998345464468002, + 0.03239564597606659, + -0.09209603071212769, + 0.009106852114200592, + 0.021767660975456238, + 0.03009449504315853, + 0.012887926772236824, + 0.031646572053432465, + 0.050258517265319824, + 0.02569221518933773, + -0.021782074123620987, + 0.00953874085098505, + -0.0230716522783041, + 0.08597511798143387, + 0.04088786244392395, + -0.00019331439398229122, + 0.021588057279586792, + 0.08512597531080246, + -0.06015685200691223, + 0.07418052852153778, + 0.010376370511949062, + 0.059100329875946045, + -0.07998333126306534, + 0.032220110297203064, + 0.07125882804393768, + 0.03645933419466019, + -0.06197483837604523, + 0.07384282350540161, + 0.006689728237688541, + 0.052959028631448746, + 0.03982287645339966, + 0.00010864892828976735, + 0.031994786113500595, + 0.023029327392578125, + 0.015191120095551014, + -0.08116331696510315, + 0.023278607055544853, + -0.01934206672012806, + -0.060837697237730026, + 0.1010361984372139, + -0.12697671353816986, + 0.03259046748280525, + -0.08392776548862457, + 0.014385026879608631, + 0.08900146931409836, + -0.01428196020424366, + -0.05083240941166878, + 0.01860795170068741, + -0.027565211057662964, + 0.03063577599823475, + -0.1643289476633072, + -1.2973013713418969e-33, + 0.06391093134880066, + 0.00017046868742909282, + -0.016194459050893784, + 0.043154045939445496, + -0.013155043125152588, + 0.00835767388343811, + -0.0484904870390892, + -0.025707144290208817, + -0.02313077636063099, + -0.08467350900173187, + -0.038625579327344894, + -0.030614955350756645, + 0.01426200196146965, + -0.019164033234119415, + -0.031061144545674324, + 0.031631991267204285, + 0.02731960639357567, + 0.05880360305309296, + 0.023886162787675858, + 0.07789047062397003, + -0.04287712648510933, + 0.054164305329322815, + -0.06324906647205353, + 0.019527312368154526, + -0.06628196686506271, + -0.023893238976597786, + 0.022898724302649498, + 0.03757871687412262, + -0.09247452765703201, + -0.04543150216341019, + 0.04167262837290764, + -0.10169662535190582, + 0.10460039228200912, + -0.012008585035800934, + -0.0841408297419548, + -0.058923229575157166, + 0.01922343671321869, + -0.11353619396686554, + -0.024232229217886925, + 0.019902966916561127, + 0.009122229181230068, + 0.043266937136650085, + 0.018615147098898888, + 0.07922883331775665, + -0.024623524397611618, + 0.0016135253245010972, + -0.05911245569586754, + -0.02507815696299076, + 0.007025089114904404, + 0.043498214334249496, + -0.0029384044464677572, + -0.013434811495244503, + -0.044287532567977905, + -0.08598672598600388, + -0.038861148059368134, + 0.02124512940645218, + -0.042804088443517685, + 0.02007087878882885, + -0.013352186419069767, + 0.07974717020988464, + -0.01010583620518446, + 0.04258032515645027, + 0.0027806302532553673, + 0.04209151118993759, + 0.07225886732339859, + -0.04166490212082863, + -0.025648919865489006, + -0.004458523355424404, + -0.04531112685799599, + -0.004394785966724157, + 0.08181387186050415, + 0.04640769958496094, + 0.004975263960659504, + -0.025085216388106346, + 0.08764109015464783, + -0.04392102733254433, + -0.0015266401460394263, + -0.056537654250860214, + -0.08217155933380127, + 0.062248412519693375, + -0.02252470701932907, + -0.024608366191387177, + -0.08264613896608353, + 0.06818399578332901, + 0.0014654239639639854, + -0.008654551580548286, + 0.04643341526389122, + 3.291682151029818e-05, + 1.2420054190442897e-05, + 0.05119205266237259, + -0.0781756043434143, + 0.01896125078201294, + -0.03493141010403633, + 0.0626324936747551, + 0.06416445970535278, + -2.514899755112765e-08, + 0.06775256991386414, + 0.0182466022670269, + -0.07230566442012787, + -0.0028267938178032637, + 0.001752710435539484, + 0.012370451353490353, + 0.040718503296375275, + -0.0527680367231369, + -0.02452886663377285, + -0.012095709331333637, + -0.03061085194349289, + 0.08680937439203262, + -0.09549802541732788, + -0.0014751601265743375, + 0.027386605739593506, + -0.01010896172374487, + -0.03492341190576553, + 0.0605633370578289, + -0.03719758242368698, + -0.018192574381828308, + -0.003617765149101615, + 0.044594328850507736, + 0.0715954452753067, + -0.018343612551689148, + 0.009665315970778465, + 0.041689883917570114, + 0.030393479391932487, + 0.008685949258506298, + 0.0693829208612442, + 0.04909951612353325, + 0.012589003890752792, + 0.05861267074942589, + -0.019424429163336754, + 0.012292159721255302, + -0.16085758805274963, + -0.011791900731623173, + -0.15094025433063507, + -0.002637712052091956, + -0.008591904304921627, + 0.11094972491264343, + -0.062164969742298126, + -0.039375752210617065, + -0.07264259457588196, + -0.0015474027022719383, + -0.09031341969966888, + 0.029687635600566864, + -0.04630676284432411, + 0.059694238007068634, + -0.03932470083236694, + -0.05196680873632431, + 0.0038480041548609734, + 0.04745425283908844, + 0.04968236759305, + -0.05457218363881111, + -0.03638077527284622, + -0.009116812609136105, + 0.02367081493139267, + 0.03082316368818283, + 0.03577612340450287, + -0.02737130969762802, + 0.12771151959896088, + -0.0740472823381424, + 0.030930956825613976, + 0.006831260398030281 + ], + "jar-label-bold||*new*,mason jar,kitchen,pantry,canning,preserves,food,condiments": [ + -0.004964491352438927, + 0.00195949780754745, + -0.04569053277373314, + 0.006435398943722248, + 0.0509398877620697, + 0.012587128207087517, + 0.0633850246667862, + -0.04862985759973526, + 0.003471462521702051, + -0.05386266112327576, + 0.11115410178899765, + -0.07085485011339188, + 0.004753803368657827, + -0.05266688019037247, + -0.02149101532995701, + -0.05192018300294876, + 0.09383072704076767, + 0.06365053355693817, + -0.036478109657764435, + -0.05578334629535675, + 0.0775546059012413, + 0.09454453736543655, + 0.07013296335935593, + 0.030193280428647995, + 0.0550336018204689, + 0.06718576699495316, + 0.011364811100065708, + -0.026270132511854172, + -0.03039221279323101, + -0.09116028994321823, + -0.03274375945329666, + 0.027338379994034767, + 0.037906713783741, + -0.02829013764858246, + 0.06487329304218292, + 0.031876951456069946, + -0.012628410011529922, + -0.014401126652956009, + 0.1173480749130249, + -0.01843673549592495, + -0.005691180471330881, + -0.05722575634717941, + -0.009889891371130943, + 0.05313563719391823, + -0.09887517988681793, + -0.006136005278676748, + 0.011881870217621326, + -0.028087763115763664, + 0.0150875523686409, + 0.00848046038299799, + -0.05145520344376564, + -0.01083808857947588, + -0.09254282712936401, + -0.044953566044569016, + 0.055482082068920135, + 0.0027400755789130926, + -0.018702395260334015, + -0.06866809725761414, + -0.016438530758023262, + 0.10019512474536896, + 0.026585692539811134, + 0.01794956438243389, + 0.0015348312444984913, + 0.04801565781235695, + -0.01946042850613594, + -0.022097762674093246, + 0.02228965051472187, + 0.05812079459428787, + -0.007288013584911823, + -0.005554415285587311, + -0.03975313901901245, + 0.018621619790792465, + 0.03916962444782257, + 0.047967493534088135, + -0.017470402643084526, + -0.022413000464439392, + 0.035731710493564606, + -0.032966312021017075, + -0.016802925616502762, + -0.014008095487952232, + -0.04216563701629639, + 0.03737707436084747, + -0.023598726838827133, + 0.016275977715849876, + -0.02012876234948635, + 0.009044244885444641, + -0.02708791382610798, + -0.03173433616757393, + 0.01828998327255249, + -0.007831973023712635, + -0.06340954452753067, + -0.06477148085832596, + 0.049338266253471375, + -0.04958703741431236, + -0.09559433162212372, + 0.06679247319698334, + -0.03790207952260971, + -0.0028800375293940306, + 0.0068121557123959064, + 0.061120904982089996, + -0.02217683754861355, + -0.006118185818195343, + 0.05781547352671623, + -0.007637458387762308, + -0.04658649116754532, + -0.032787684351205826, + -0.06150604411959648, + -0.029160430654883385, + 0.07727016508579254, + 0.08231460303068161, + -0.008407911285758018, + -0.01816859468817711, + -0.0549563504755497, + -0.07831112295389175, + -0.0392640121281147, + 0.008551739156246185, + 0.05830772966146469, + -0.071476049721241, + 0.06749611347913742, + -0.016459966078400612, + -0.00111014349386096, + -0.08802273869514465, + -0.007264867424964905, + -0.07043726742267609, + -0.05682253837585449, + 0.09700559079647064, + 0.04341587796807289, + -2.579315989664327e-33, + -0.03311869129538536, + 0.008448682725429535, + 0.04970763251185417, + 0.09442507475614548, + 0.009885438717901707, + -0.038313139230012894, + -0.04702366515994072, + -0.06248945742845535, + -0.0504256933927536, + 0.006896679289638996, + 0.035505954176187515, + 0.05009168013930321, + -0.07670412212610245, + 0.08339140564203262, + -0.005276213400065899, + -0.0745316818356514, + 0.03473006561398506, + 0.03259836137294769, + 0.0062013124115765095, + -0.04794517159461975, + -0.09239377826452255, + 0.07587993890047073, + -0.03879019245505333, + 0.009698157198727131, + -0.012647484429180622, + -0.04827209934592247, + 0.05925291031599045, + -0.01430019922554493, + -0.023874403908848763, + -0.00653810054063797, + 0.10562106221914291, + -0.016447266563773155, + 0.05747129023075104, + -0.008855716325342655, + -0.03257562220096588, + 0.015400282107293606, + -0.05667761713266373, + -0.021651271730661392, + 0.0367770716547966, + -0.08875329047441483, + -0.08337593078613281, + 0.01852767914533615, + 0.01742052659392357, + 0.07999270409345627, + 0.013340803794562817, + 0.05285237729549408, + -0.09002735465765, + -0.0013781621819362044, + 0.023029843345284462, + 0.008827351033687592, + 0.005680364090949297, + 0.007959267124533653, + 0.05179540812969208, + 0.014641452580690384, + -0.02546149305999279, + -0.00017201399896293879, + -0.015640368685126305, + 0.09445057809352875, + 0.00996848102658987, + -0.013876036740839481, + 0.016559801995754242, + 0.07539723068475723, + -0.05136971175670624, + 0.0698990523815155, + 0.023206034675240517, + 0.06014655902981758, + -0.056249018758535385, + 0.032897595316171646, + 0.08743862807750702, + 0.031131409108638763, + -0.05791348218917847, + 0.06329788267612457, + 0.003289910964667797, + 0.06567536294460297, + 0.037797313183546066, + -0.01607055962085724, + -0.0016710148192942142, + 0.021528949961066246, + 0.012036052532494068, + -0.0584445483982563, + 0.0007338860305026174, + -0.028631530702114105, + -0.0628618448972702, + 0.09183786809444427, + -0.10499850660562515, + 0.04548317566514015, + -0.07564452290534973, + 0.0026032112073153257, + 0.0801277682185173, + -0.005320245400071144, + -0.05607130005955696, + 0.02848172001540661, + -0.05276579409837723, + 0.0418996587395668, + -0.1563362330198288, + -8.83951823515694e-34, + 0.04668491333723068, + -0.01366512943059206, + 0.0048677860759198666, + 0.04441315308213234, + -0.014105153270065784, + -0.00804870668798685, + -0.019917212426662445, + -0.0010635382495820522, + -0.005679924972355366, + -0.05733141303062439, + -0.006014333572238684, + -0.020045287907123566, + -0.02213001810014248, + -0.01706264168024063, + -0.03909756615757942, + 0.02405359409749508, + 0.01372611615806818, + 0.07540030032396317, + 0.018827637657523155, + 0.08268900960683823, + -0.048206720501184464, + 0.05545901134610176, + -0.050847165286540985, + 0.04383952170610428, + -0.05546550825238228, + -0.023083636537194252, + 0.06626161932945251, + 0.017499802634119987, + -0.06352399289608002, + -0.05266273766756058, + 0.025964146479964256, + -0.11665278673171997, + 0.12043944746255875, + 0.0021943459287285805, + -0.07852465659379959, + -0.04594637081027031, + 0.04491892457008362, + -0.1220320388674736, + -0.051699284464120865, + 0.025980662554502487, + -0.004721358418464661, + 0.06025495380163193, + -0.007229440379887819, + 0.07843291014432907, + -0.03290562331676483, + -0.0040932330302894115, + -0.051102206110954285, + -0.04405822604894638, + -0.004536180291324854, + 0.051826778799295425, + -0.020331168547272682, + -0.01664700359106064, + -0.055973686277866364, + -0.08590444177389145, + -0.0473678857088089, + 0.013440730050206184, + -0.07286520302295685, + 0.023615755140781403, + -0.015917936339974403, + 0.06097855791449547, + -0.014892017468810081, + 0.060346998274326324, + -0.01007684413343668, + 0.034247249364852905, + 0.07465891540050507, + -0.05360846221446991, + -0.023368660360574722, + -0.002499321009963751, + -0.026752246543765068, + 0.002588608767837286, + 0.10671349614858627, + 0.057634495198726654, + -0.008779006078839302, + -0.014792975038290024, + 0.03827013075351715, + -0.05900414288043976, + -0.0009660319774411619, + -0.044387757778167725, + -0.0918995589017868, + 0.05916940048336983, + 0.013335112482309341, + -0.028772076591849327, + -0.09084485471248627, + 0.10522591322660446, + -0.019818833097815514, + -0.033677998930215836, + 0.05285745486617088, + 0.008565443567931652, + -0.0010208425810560584, + 0.03688275068998337, + -0.05706005543470383, + 0.024563618004322052, + -0.04575502872467041, + 0.09349977970123291, + 0.03028327226638794, + -2.4967517830987163e-08, + 0.07978374511003494, + 0.0032238231506198645, + -0.06044771522283554, + -0.012714230455458164, + -0.009293285198509693, + 0.023261629045009613, + 0.040353793650865555, + -0.059017132967710495, + -0.030012257397174835, + 0.0067382012493908405, + -0.0044598933309316635, + 0.08283142745494843, + -0.14414380490779877, + -0.008981875143945217, + 0.010418098419904709, + -0.006629541981965303, + -0.040622200816869736, + 0.07791421562433243, + -0.022974768653512, + 0.007041688542813063, + -0.0282308217138052, + 0.03513116016983986, + 0.07448863238096237, + -0.03058355487883091, + 0.01818615384399891, + 0.018035346642136574, + 0.03271748125553131, + 0.019869839772582054, + 0.06852845847606659, + 0.029832759872078896, + 0.02636520005762577, + 0.05933109670877457, + -0.03278125822544098, + 0.02500063180923462, + -0.14011739194393158, + -0.017819875851273537, + -0.1721239686012268, + -0.004353117197751999, + 0.034089118242263794, + 0.12392721325159073, + -0.07402469217777252, + -0.03633365407586098, + -0.07442114502191544, + -0.00420764647424221, + -0.06972573697566986, + 0.0559416338801384, + -0.042063333094120026, + 0.06055060774087906, + -0.03381907194852829, + -0.0666511207818985, + -0.018480312079191208, + 0.02163766324520111, + 0.048212189227342606, + -0.047296877950429916, + -0.05565161630511284, + -0.007910866290330887, + 0.031555723398923874, + 0.04049350321292877, + 0.03273305296897888, + -0.01802201382815838, + 0.11878104507923126, + -0.04600672423839569, + 0.036752186715602875, + 0.0008268191595561802 + ], + "jeep-bold||*updated*,vehicles,automobile,suv,cars,trucks,wrangler,off-road,transit,transportation,traveling": [ + -0.019670547917485237, + -0.09130078554153442, + 0.01814834587275982, + 0.05746816471219063, + 0.013907424174249172, + -0.017778847366571426, + 0.02304987423121929, + -0.04557901620864868, + -0.0816461443901062, + 0.010869129560887814, + 0.017174525186419487, + 0.05930192768573761, + 0.060061015188694, + -0.00579625042155385, + 0.011513618752360344, + 0.012526045553386211, + 0.11571133136749268, + 0.00099507300183177, + 0.0010497368639335036, + -0.08726276457309723, + -0.027351077646017075, + 0.03961355239152908, + 0.07029355317354202, + 0.061698343604803085, + 0.020244119688868523, + -0.011045717634260654, + 0.06183302402496338, + 0.050710927695035934, + -0.0434839092195034, + -0.017362456768751144, + -0.10352431982755661, + 0.038953397423028946, + 0.021231042221188545, + -0.020231002941727638, + -0.029634954407811165, + -0.05836646258831024, + -0.018933052197098732, + -0.0005399633664637804, + 0.027490828186273575, + -0.026863539591431618, + 0.012074626050889492, + -0.06025782227516174, + 0.0003850829671137035, + 0.013493375852704048, + 0.009105815552175045, + -0.08114754408597946, + -0.02871481515467167, + -0.005292149260640144, + 0.0319594144821167, + -0.031660161912441254, + 0.01552555151283741, + -0.053321871906518936, + -0.1604929119348526, + 0.036438360810279846, + -0.029129376634955406, + -0.07845615595579147, + -0.10988878458738327, + 0.03821974992752075, + 0.019803479313850403, + 0.019666025415062904, + 0.013120683841407299, + 0.022540830075740814, + 0.04150448366999626, + 0.041634444147348404, + 0.027839219197630882, + -0.018486876040697098, + -0.04425157606601715, + -0.003191829426214099, + -0.028815044090151787, + 0.022581662982702255, + 0.05342520773410797, + 0.06102031096816063, + -0.004340763203799725, + -0.0030121959280222654, + -0.0788910761475563, + -0.07794931530952454, + 0.09692513197660446, + 0.06733250617980957, + -0.010932447388768196, + -0.062226302921772, + -0.03350099176168442, + 0.005477332044392824, + 0.008120918646454811, + -0.038360346108675, + -0.04154624789953232, + 0.023649869486689568, + -0.13182243704795837, + -0.01183912344276905, + -0.05903422459959984, + 0.008340055122971535, + -0.04285178333520889, + -0.08695116639137268, + 0.027707943692803383, + -0.007712515536695719, + -0.12239692360162735, + 0.024915512651205063, + 0.024711811915040016, + -0.03111514076590538, + 0.021334106102585793, + 0.04262508824467659, + 0.05187072232365608, + 0.022831061854958534, + 0.05305897817015648, + 0.04206836223602295, + -0.07396408170461655, + 0.049151670187711716, + -0.01251418050378561, + 0.04926639422774315, + -0.01476437970995903, + 0.016338352113962173, + -0.012846359051764011, + 0.011440718546509743, + -0.03411893546581268, + -0.015237808227539062, + -0.16941995918750763, + -0.061184998601675034, + -0.058287810534238815, + 0.012530926614999771, + 0.09981473535299301, + 0.10125288367271423, + -0.05997704342007637, + -0.023447740823030472, + 0.03852757066488266, + -0.04754912853240967, + -0.014041448943316936, + -0.012366106733679771, + 0.00034826589399017394, + -2.7679448130758946e-33, + -0.029933486133813858, + -0.0012576604494825006, + 0.08202816545963287, + 0.10462797433137894, + -0.08197156339883804, + 0.003418584354221821, + -0.06293223798274994, + -0.0785599797964096, + -0.047088127583265305, + 0.03308017924427986, + -0.007878070697188377, + 0.0638570487499237, + 0.005074122454971075, + -0.03226625546813011, + 0.0869181677699089, + -0.004598123487085104, + -0.07250496000051498, + -0.0011673772241920233, + -0.055901262909173965, + -0.011649023741483688, + -0.053367916494607925, + 0.06340638548135757, + -0.0654769092798233, + -0.03274253383278847, + -0.004007657989859581, + -0.03444566950201988, + 0.012278987094759941, + -0.02736099623143673, + -0.0680902823805809, + 0.062353141605854034, + 0.004301568493247032, + 0.06548750400543213, + 0.00777260959148407, + 0.03257099911570549, + -0.04546831175684929, + -0.06046130880713463, + -0.07613763958215714, + -0.09708723425865173, + -0.03395351395010948, + -0.06005188822746277, + -0.007310925982892513, + -0.06419262290000916, + -0.14164815843105316, + 0.0864093229174614, + 0.060053322464227676, + 0.10936689376831055, + 0.024487141519784927, + -0.014853555709123611, + 0.025724511593580246, + 0.04537123441696167, + -0.09371896833181381, + 0.008891845121979713, + -0.02751726098358631, + -0.08149852603673935, + -0.05320289731025696, + 0.00731838122010231, + 0.0827321708202362, + 0.029783684760332108, + 0.06158498674631119, + 0.05292047560214996, + -0.02699027955532074, + -0.016506778076291084, + 0.014898614026606083, + -0.09790289402008057, + -0.004209068138152361, + -0.011977841146290302, + -0.002767121186479926, + 0.00852194707840681, + 0.02503945492208004, + 0.014164472930133343, + 0.02740301564335823, + 0.015452714636921883, + 0.02706654742360115, + 0.0865846499800682, + 0.06751734018325806, + 0.02877720631659031, + -0.005929943639785051, + 0.0004912810982204974, + -0.006958245765417814, + -0.028997378423810005, + -0.09796015918254852, + 0.004308976233005524, + -0.07608995586633682, + 0.07721927762031555, + 0.11793133616447449, + 0.02299996092915535, + -0.06911159306764603, + -0.08824620395898819, + 0.017065921798348427, + 0.05730652064085007, + -0.05971027538180351, + 0.03432202711701393, + -0.0911894366145134, + -0.002739794086664915, + -0.0059828427620232105, + -1.4959037133072148e-33, + 0.02374289743602276, + 0.06112465634942055, + -0.0500129833817482, + -0.02688850648701191, + 0.011595952324569225, + -0.07124815881252289, + -0.01870512031018734, + 0.023780938237905502, + 0.06775930523872375, + 0.02387274242937565, + -0.018959147855639458, + -0.01851983554661274, + -0.030340630561113358, + -0.01887761428952217, + -0.018848776817321777, + 0.009923093020915985, + 0.053883254528045654, + -0.026350324973464012, + -0.04701859876513481, + 0.07416480034589767, + -0.08845699578523636, + -0.004288092255592346, + -0.0356791615486145, + 0.0026579780969768763, + -0.04237589240074158, + 0.058531928807497025, + -0.06836328655481339, + 0.04391685500741005, + -0.011789240874350071, + 0.06006547063589096, + -0.022647839039564133, + -0.09357853978872299, + 0.07444480061531067, + 0.07968542724847794, + -0.050779230892658234, + -0.016976244747638702, + 0.03905076906085014, + -0.08631379902362823, + -0.013943247497081757, + -0.021288547664880753, + 0.06442736834287643, + -0.016910424456000328, + 0.06981837004423141, + 0.08594594150781631, + 0.05824506655335426, + -0.013837683945894241, + -0.05306468904018402, + -0.025270741432905197, + -0.044940609484910965, + -0.006883970461785793, + 0.0422024205327034, + 0.027340585365891457, + -0.05139040946960449, + 0.09080234915018082, + -0.0092316884547472, + 0.006108174566179514, + 0.03184005618095398, + 0.02857246994972229, + -0.0019911581184715033, + 0.04032337665557861, + 0.03681424260139465, + 0.03627598658204079, + 0.0017878786893561482, + 0.07223402708768845, + 0.018319282680749893, + -0.0866696760058403, + 0.06227986142039299, + -0.016909252852201462, + 0.045941196382045746, + -0.07069090753793716, + 0.016037197783589363, + -0.06277592480182648, + -0.03694365173578262, + -0.01845446228981018, + 0.02794201858341694, + -0.0034746183082461357, + 0.07213406264781952, + 0.06106950342655182, + -0.02045624703168869, + 0.038512084633111954, + -0.03308107331395149, + -0.01632131263613701, + -0.005552418064326048, + 0.09675668179988861, + -0.036105088889598846, + 0.05399295687675476, + -0.04154622554779053, + -0.014312481507658958, + 0.044202663004398346, + 0.03071616031229496, + 0.014268518425524235, + 0.04535997658967972, + -0.03915774077177048, + 0.04760205000638962, + -0.1408783495426178, + -2.4607242465890522e-08, + -0.0038347109220921993, + 0.06449713557958603, + -0.03609423711895943, + 0.017450833693146706, + 0.008872265927493572, + -0.014309311285614967, + -0.017771253362298012, + 0.010834145359694958, + -0.07201483100652695, + 0.05244802311062813, + 0.030057379975914955, + -0.00017366920656058937, + -0.026541955769062042, + 0.03177835792303085, + 0.019596099853515625, + 0.031920816749334335, + -0.050163913518190384, + 0.08016979694366455, + -0.01911017671227455, + -0.09097027033567429, + -0.03269243612885475, + 0.036170925945043564, + 0.06341884285211563, + 0.04166310280561447, + 0.0292519461363554, + -0.006196980830281973, + -0.039136964827775955, + -0.01569892279803753, + 0.12799303233623505, + 0.008242626674473286, + -0.031227989122271538, + 0.04991369694471359, + -0.03638805076479912, + 0.010233127512037754, + -0.0529392808675766, + -0.06261921674013138, + 0.014739475212991238, + 0.022553561255335808, + 0.05109824985265732, + 0.06904501467943192, + 0.02062360756099224, + -0.00834679789841175, + -0.012793954461812973, + 0.018579090014100075, + 0.05739985778927803, + 0.051805149763822556, + -0.0058906543999910355, + -0.05909434333443642, + -0.07635185122489929, + -0.13006410002708435, + -0.055439237505197525, + -0.02720683254301548, + -0.0528094507753849, + 0.060767170041799545, + 0.0012208905536681414, + -0.03325679153203964, + -0.01914958469569683, + 0.0009584741783328354, + 0.0025199325755238533, + -0.03198252245783806, + 0.1096828356385231, + 0.0031069915276020765, + -0.011765394359827042, + 0.05109688639640808 + ], + "joystick-bold||*new*,gaming,game controller,video games,arcade game,atari": [ + 0.02179790288209915, + -0.06914890557527542, + -0.05964938551187515, + -0.07211117446422577, + -0.0037838537245988846, + 0.04992033913731575, + 0.0823630690574646, + 0.006504808086901903, + -0.035852957516908646, + 0.09423276036977768, + 0.052957683801651, + 0.00821726955473423, + 0.030594324693083763, + -0.09534032642841339, + 0.04788202419877052, + 0.05353764444589615, + 0.03990292549133301, + -0.009163673035800457, + 0.03325668349862099, + -0.0218687504529953, + 0.02816007286310196, + 0.03488419950008392, + 0.007524426560848951, + 0.05043802037835121, + -0.03729771822690964, + 0.12835344672203064, + 0.049972690641880035, + 0.030499735847115517, + 0.0065260292030870914, + -0.03803876042366028, + -0.07590050995349884, + -0.007929774932563305, + 0.10753042250871658, + -0.0028070081025362015, + -0.027251118794083595, + -0.055400144308805466, + -0.020133132115006447, + -0.1049056127667427, + -0.0542491115629673, + -0.05364002287387848, + -0.03297385945916176, + -0.010647800751030445, + 0.030992873013019562, + 0.029055530205368996, + 0.04173175245523453, + 0.03729397803544998, + -0.037081070244312286, + -0.014068596065044403, + 0.03657875582575798, + 0.009922328405082226, + 0.029872078448534012, + -0.058549556881189346, + -0.027985241264104843, + -0.07591790705919266, + 0.074554443359375, + -0.011559825390577316, + -0.031090734526515007, + -0.005944325588643551, + 0.012578776106238365, + 0.06755854189395905, + -0.07123291492462158, + 0.013307292945683002, + 0.08609247207641602, + 0.049713168293237686, + -0.002280269982293248, + -0.042486969381570816, + 0.01062862854450941, + 0.006745210848748684, + -0.007116375956684351, + -0.015289397910237312, + -0.07309695333242416, + 0.05218081921339035, + 0.013207420706748962, + -0.025847865268588066, + -0.04328594356775284, + -0.05129760503768921, + -0.04288078844547272, + -0.0023582379799336195, + -0.03919436037540436, + -0.07802572846412659, + -0.03521931543946266, + -0.08495251089334488, + -0.08528920263051987, + -0.015073887072503567, + 0.010848790407180786, + 0.03782941401004791, + -0.0959070473909378, + -0.03948504105210304, + -0.013063776306807995, + -0.005982999224215746, + -0.13123339414596558, + -0.04144494608044624, + 0.0678136795759201, + 0.04295880347490311, + -0.04521613568067551, + -0.01793566159904003, + 0.020305244252085686, + -0.07687334716320038, + -0.07062605023384094, + 0.032751791179180145, + -0.022141411900520325, + 0.040788959711790085, + 0.05332553759217262, + 0.013280091807246208, + -0.031890928745269775, + 0.03173632547259331, + -0.007957221008837223, + -0.007127746473997831, + -0.008197137154638767, + 0.016279013827443123, + -0.0811961442232132, + -0.09037696570158005, + -0.02281678281724453, + -0.012399600818753242, + 0.0256777536123991, + -0.03083820827305317, + -0.059849321842193604, + 0.03614697605371475, + 0.01550762727856636, + 0.09923136234283447, + 0.038298118859529495, + -0.05378308519721031, + 0.015667609870433807, + -0.020615262910723686, + -0.030829481780529022, + 0.011326521635055542, + -0.01731634885072708, + -1.1063252326485309e-33, + 0.018991313874721527, + 0.0658063292503357, + 0.03034946881234646, + 0.10201790928840637, + -0.02740035019814968, + 0.018262585625052452, + 0.04737939313054085, + -0.01887197606265545, + 0.0011790794087573886, + 0.09117232263088226, + 0.009114904329180717, + 0.05607376620173454, + -0.09705626219511032, + 0.08822987228631973, + 0.11875151842832565, + -0.0680340901017189, + -0.042845238000154495, + -0.03409169986844063, + -0.01942950300872326, + -0.01473510917276144, + -0.017343934625387192, + 0.09206303209066391, + 0.008657298050820827, + -0.06060576066374779, + -0.040579989552497864, + 0.022663135081529617, + -0.057313963770866394, + 0.01429762039333582, + 0.019283676519989967, + 0.011640626937150955, + -0.006616188678890467, + 0.014676823280751705, + -0.03523895889520645, + -0.049471959471702576, + 0.09310219436883926, + 0.009060448966920376, + 0.0024536768905818462, + -0.08356238901615143, + -0.06292321532964706, + 0.07546260207891464, + -0.07871590554714203, + -0.017799951136112213, + -0.07239972800016403, + -0.019631613045930862, + 0.0463738888502121, + 0.0627322569489479, + 0.0222313329577446, + -0.0539642870426178, + -0.0072069005109369755, + 0.02019336260855198, + -0.10386735945940018, + 0.03089747205376625, + 0.019838903099298477, + -0.06296175718307495, + -0.0167146697640419, + -0.09631138294935226, + 0.016402246430516243, + 0.0693667083978653, + -0.023976095020771027, + 0.04233301430940628, + -0.013317033648490906, + -0.011161219328641891, + 0.05132168158888817, + -0.014215709641575813, + -0.040875885635614395, + 0.14695526659488678, + 0.05191485583782196, + -0.008540794253349304, + 0.03412708267569542, + 0.03586204722523689, + 0.05156126618385315, + 0.0590941458940506, + -0.011917437426745892, + -0.0014342335052788258, + -0.009247171692550182, + 0.04876044765114784, + -0.07205627113580704, + -0.04917424917221069, + -0.08003877848386765, + -0.1325058490037918, + -0.056658510118722916, + 0.02599267289042473, + -0.11213245242834091, + 0.12229040265083313, + 0.021857604384422302, + 0.0038090706802904606, + 0.0415356308221817, + -0.029622487723827362, + -0.029201025143265724, + -0.005673371255397797, + -0.1275080144405365, + -0.010964049957692623, + 0.025563856586813927, + -0.04863040894269943, + -0.028986647725105286, + -2.4722007199845768e-33, + -0.044262032955884933, + -0.014773317612707615, + -0.03129592910408974, + -0.029438689351081848, + -0.032933559268713, + 0.020190870389342308, + -0.04227820411324501, + 0.01649508811533451, + 0.020376479253172874, + -0.018458323553204536, + 0.02116820216178894, + 0.028420817106962204, + 0.009090960025787354, + -0.01302962563931942, + -0.033588707447052, + 0.028363853693008423, + -0.03372414410114288, + 0.03220639377832413, + 0.04576228931546211, + -0.023070400580763817, + 0.025904301553964615, + -0.023022014647722244, + -0.04296353831887245, + -0.0022937022149562836, + 0.02925245836377144, + 0.05269983410835266, + -0.002729414263740182, + -0.02865147590637207, + -0.010076458565890789, + 0.05457372963428497, + -0.002294827252626419, + -0.00748814269900322, + 0.11093265563249588, + 0.07666092365980148, + -0.0019875015132129192, + -0.018012847751379013, + 0.136959508061409, + -0.06406260281801224, + -0.08357620239257812, + -0.09886055439710617, + 0.03664000704884529, + -0.023862285539507866, + 0.07043352723121643, + 0.0650138333439827, + -0.02772611379623413, + 0.015042107552289963, + -0.09249164164066315, + -0.03293854370713234, + 0.021745678037405014, + 0.1029970794916153, + -0.02358029969036579, + -0.08843076229095459, + -0.019293077290058136, + -0.09401296824216843, + -0.10180459171533585, + -0.06064404174685478, + -0.030157044529914856, + -0.0010832708794623613, + 0.02821754664182663, + 0.0432848297059536, + -0.00042846277938224375, + 0.010157761164009571, + -0.11170852184295654, + 0.057899508625268936, + 0.021605143323540688, + -0.06586473435163498, + 0.10306629538536072, + 0.05095146596431732, + 0.038345836102962494, + -0.05197863653302193, + -0.007276715245097876, + 0.050096701830625534, + 0.04948766902089119, + 0.0042685866355896, + -0.03175456076860428, + -0.040325406938791275, + 0.003363673109561205, + 0.03320591151714325, + 0.014751077629625797, + 0.008392058312892914, + 0.02390230819582939, + -0.041097402572631836, + 0.026192329823970795, + 0.050230588763952255, + -0.08933324366807938, + 0.05381636694073677, + 0.006945292465388775, + 0.01621314324438572, + -0.00799708254635334, + -0.06997131556272507, + 0.005974453873932362, + 0.07545485347509384, + 0.009090314619243145, + 0.048925161361694336, + -0.10416356474161148, + -2.252813402492393e-08, + 0.019183045253157616, + 0.02513566054403782, + 0.012682082131505013, + -0.01843200996518135, + 0.05462351441383362, + 0.0006985249929130077, + -0.05557293817400932, + -0.04464650899171829, + -0.07503915578126907, + -0.015587273053824902, + 0.007878737524151802, + 0.04259411245584488, + 0.02395140752196312, + -0.00884241983294487, + 0.09396890550851822, + 0.047047559171915054, + -0.029002703726291656, + 0.08003699779510498, + -0.002909453585743904, + 0.002126591745764017, + 0.05517922714352608, + 0.034540873020887375, + 0.047460176050662994, + -0.1104411631822586, + -0.01664935238659382, + -0.023725036531686783, + -0.08651138842105865, + -0.0612339973449707, + 0.06617499887943268, + 0.1034063771367073, + 0.0899355411529541, + -0.018222130835056305, + 0.030391592532396317, + -0.025053560733795166, + -0.05290887504816055, + -0.02523612603545189, + 0.01429541315883398, + 0.0022712526842951775, + 0.004221711307764053, + 0.03797979652881622, + -0.024662069976329803, + -0.030905665829777718, + -0.07011031359434128, + -0.017446380108594894, + 0.0013810844393447042, + 0.018376486375927925, + 0.012638591229915619, + -0.06482204794883728, + -0.033445440232753754, + -0.05821899324655533, + -0.05943162366747856, + 0.06975557655096054, + 0.03707039728760719, + 0.03746803477406502, + 0.0329502709209919, + -0.012373359873890877, + -0.007784056011587381, + 0.0641842857003212, + -0.029708782210946083, + -0.039198603481054306, + 0.06971282511949539, + 0.04483288526535034, + 0.033649519085884094, + 0.09968143701553345 + ], + "kanban-bold||scheduling,tasks,project management,process,lean,agile": [ + 0.010442378930747509, + -0.054730452597141266, + -0.017368249595165253, + 0.04860473796725273, + 0.027694517746567726, + -0.024588489904999733, + -0.0285525843501091, + 4.668317160394508e-06, + -0.03147607669234276, + 0.014648721553385258, + 0.024421844631433487, + -0.0021045247558504343, + 0.004942901898175478, + 0.009425895288586617, + 0.057246286422014236, + 0.006400949787348509, + 0.049284592270851135, + -0.04087703302502632, + 0.04252872243523598, + -0.03514409810304642, + 0.05212721228599548, + 0.039395835250616074, + 0.006081864703446627, + 0.06806430220603943, + -0.004587571136653423, + 0.006445453502237797, + -0.006039578467607498, + -0.03984363377094269, + 0.007335309404879808, + -0.07745571434497833, + -0.048227459192276, + 0.015879712998867035, + 0.14532138407230377, + 0.0372244231402874, + 0.04675261676311493, + 0.09480559080839157, + 0.00025314188678748906, + -0.02289009653031826, + 0.009399871341884136, + -0.04634293541312218, + -0.08319442719221115, + -0.061519064009189606, + -0.0048440746031701565, + -0.014268007129430771, + 0.031594421714544296, + -0.0431147962808609, + -0.03223526105284691, + -0.09139730781316757, + -0.07851077616214752, + 0.03866593912243843, + -0.036339208483695984, + -0.12420753389596939, + -0.047261424362659454, + -0.03541453555226326, + 0.04676200449466705, + 0.07257599383592606, + 0.02664239890873432, + -0.05917774513363838, + 0.08861386030912399, + -0.03438827767968178, + -0.008514476008713245, + 0.021678205579519272, + -0.018247133120894432, + 0.0029286451172083616, + 0.030329357832670212, + -0.02499924786388874, + 0.012713968753814697, + 0.10924295336008072, + 0.02074092999100685, + 0.023946305736899376, + 0.07941652089357376, + -0.059503454715013504, + -0.035275060683488846, + -0.050784528255462646, + -0.011434623040258884, + -0.021871868520975113, + -0.0014058634405955672, + -0.009794020093977451, + 0.005449389573186636, + -0.09920775890350342, + -0.09505657106637955, + -0.008256706409156322, + -0.022780761122703552, + -0.010908219963312149, + -0.0075955805368721485, + 0.013644696213304996, + -0.03975874185562134, + -0.04939763620495796, + 0.058791451156139374, + 0.028342921286821365, + 0.01677342876791954, + -0.019508380442857742, + 0.011539540253579617, + 0.01623658649623394, + -0.07973195612430573, + 0.02105672098696232, + 0.0637132078409195, + 0.028354192152619362, + 0.028537670150399208, + 0.039525147527456284, + 0.02216794528067112, + 0.03269524127244949, + 0.04280555993318558, + -0.04565827548503876, + -0.08532990515232086, + -0.04026666656136513, + 0.06849943101406097, + -0.04541926831007004, + -0.030407171696424484, + -0.011897102929651737, + -0.010855691507458687, + -0.027534279972314835, + -0.00733330799266696, + -0.05611231178045273, + 0.004760145675390959, + -0.02377023920416832, + -0.005823370534926653, + -0.005188380368053913, + 0.0012482987949624658, + 0.14541591703891754, + 0.03746115416288376, + 0.04323875531554222, + 0.06193482503294945, + -0.019813355058431625, + -0.0846852958202362, + 0.013967162929475307, + 0.030954357236623764, + -2.4517456489123304e-33, + 0.03126184642314911, + 0.00011759679910028353, + -0.0654992163181305, + 0.022237660363316536, + 0.10451540350914001, + -0.08951287716627121, + -0.05196674168109894, + -0.05451667308807373, + -0.06206497922539711, + -0.04082897678017616, + 0.04922327771782875, + 0.05690349265933037, + -0.035506024956703186, + 0.09196571260690689, + 0.051935549825429916, + -0.12210027873516083, + -0.021367594599723816, + 0.059439767152071, + -0.027868421748280525, + 0.03431735932826996, + -0.023737173527479172, + -0.007470022886991501, + 0.0014057043008506298, + -0.012783841229975224, + 0.08010873943567276, + -0.03651323541998863, + 0.1268179714679718, + 0.0024849886540323496, + -0.05587359890341759, + 0.049230579286813736, + 0.03146224096417427, + 0.01120863575488329, + -0.003913253080099821, + 0.019343366846442223, + 0.003118519438430667, + 0.008187343366444111, + -0.023353490978479385, + -0.016989141702651978, + -0.0015402708668261766, + 0.01929445192217827, + -0.06739360839128494, + -0.03384190797805786, + -0.10548657178878784, + -0.03817238658666611, + 0.0902780145406723, + 0.03666448965668678, + 0.02613864466547966, + 0.018256116658449173, + 0.013547743670642376, + 0.0013063163496553898, + -0.023021260276436806, + -0.03617521747946739, + 0.08644997328519821, + -0.0015167410019785166, + 0.07073303312063217, + -0.03023856319487095, + 0.053349047899246216, + 0.01997191086411476, + 0.03529816120862961, + 0.05093188211321831, + -0.03211994841694832, + -0.0008645518682897091, + -0.02030196785926819, + -0.024134496226906776, + 0.001182598527520895, + 0.057761549949645996, + -0.05255869776010513, + 0.017566055059432983, + 0.1514708548784256, + -0.08186563104391098, + -0.006838977336883545, + 0.03416780009865761, + 0.0627787709236145, + 0.0955314189195633, + -0.031796183437108994, + 0.026779543608427048, + -0.03055597096681595, + -0.0083627263084054, + -0.11126816272735596, + 0.029846901074051857, + -0.11605194211006165, + 0.05811638757586479, + -0.04476017504930496, + 0.020849477499723434, + 0.04087803512811661, + 0.026242300868034363, + 0.0036209500394761562, + -0.020846139639616013, + -0.052593592554330826, + 0.05122555047273636, + -0.05334893614053726, + 0.01381717249751091, + 0.0004800589522346854, + 0.007509182207286358, + -0.014340524561703205, + 1.4573913041319111e-33, + 0.030543655157089233, + 0.02476932480931282, + -0.0609789676964283, + 0.0235991682857275, + 0.07060728967189789, + 0.007073014974594116, + 0.009866654872894287, + -0.06206085532903671, + 0.07006081938743591, + 0.01639273762702942, + -0.06040092185139656, + -0.022262301295995712, + -0.08948372304439545, + -0.004104998894035816, + -0.01328395213931799, + 0.037105437368154526, + 0.04902271553874016, + -0.04058865085244179, + -0.031785864382982254, + 0.04302634298801422, + -0.07468985766172409, + 0.04928550869226456, + -0.09614156186580658, + 0.03523244708776474, + 0.040266253054142, + 0.11244150251150131, + -0.08334395289421082, + -0.006296924781054258, + -0.014073962345719337, + 0.00010367903450969607, + 0.0011269142851233482, + -0.09830563515424728, + 0.04707515612244606, + 0.030389679595828056, + -0.06857892870903015, + -0.002728416118770838, + 0.017205387353897095, + 0.03030099719762802, + 0.01614467427134514, + 0.04359274357557297, + 0.0907355546951294, + 0.0058654253371059895, + -0.0056831794790923595, + -0.04321255534887314, + -0.08067014813423157, + 0.0321989543735981, + 0.010255131870508194, + -0.08551366627216339, + -0.09621088206768036, + -0.07085780799388885, + 0.037178825587034225, + -0.014340774156153202, + -0.03580031916499138, + -0.0230728592723608, + 0.05729198828339577, + -0.06326835602521896, + 0.08026198297739029, + -0.025943143293261528, + -0.030337760224938393, + 0.030470119789242744, + 0.022628681734204292, + -0.0056267729960381985, + 0.10588064789772034, + 0.037973158061504364, + 0.021124359220266342, + -0.035794347524642944, + 0.09805628657341003, + -0.08180485665798187, + -0.04882586747407913, + -0.0713309571146965, + -0.00285847089253366, + 0.07020941376686096, + 0.011960502713918686, + 0.049499694257974625, + -0.02749030478298664, + -0.00865018367767334, + -0.0277466531842947, + 0.01042928732931614, + -0.042312368750572205, + -0.02610008604824543, + -0.04207645356655121, + -0.05918744578957558, + -0.04273255169391632, + 0.022710565477609634, + -0.07328654080629349, + 0.016791697591543198, + -0.02375977858901024, + 0.04750268906354904, + 0.05519953742623329, + -0.014748269692063332, + -0.059548791497945786, + -0.06590545922517776, + -0.014555181376636028, + 0.056627921760082245, + 0.048937179148197174, + -2.066762583297077e-08, + 0.03486085310578346, + -0.033027537167072296, + -0.017803914844989777, + -0.03140697628259659, + 0.04582446068525314, + -0.042225781828165054, + -0.025504615157842636, + 0.009450373239815235, + 0.024592557922005653, + 0.01699954643845558, + 0.07583216577768326, + 0.055319417268037796, + -0.06488664448261261, + 0.029572276398539543, + 0.04637794941663742, + -0.0354267954826355, + 0.010524498298764229, + 0.06693052500486374, + -0.043282557278871536, + -0.14848768711090088, + 0.024254193529486656, + 0.09171492606401443, + -0.04359408840537071, + -0.014689571224153042, + 0.01196739450097084, + -0.023466993123292923, + -0.09703280031681061, + 0.07008390128612518, + 0.0792115181684494, + -0.038795653730630875, + 0.058736883103847504, + 0.08713828027248383, + -0.042835988104343414, + -0.01683581992983818, + -0.0529731884598732, + -0.03742652013897896, + 0.010885238647460938, + 0.010609245859086514, + 0.00615639379248023, + 0.12549054622650146, + -0.03287035971879959, + 0.015303293243050575, + -0.008378914557397366, + 0.01568552292883396, + -0.009488886222243309, + 0.03760769963264465, + -0.07234228402376175, + 0.002439565258100629, + -0.06838993728160858, + -0.14709074795246124, + -0.07009072601795197, + 0.03364945203065872, + 0.021233510226011276, + 0.12448039650917053, + -0.014079693704843521, + 0.06668175756931305, + 0.047070492058992386, + -0.0433562695980072, + -0.06776335090398788, + -0.03237427771091461, + 0.1319662183523178, + -0.030177267268300056, + 0.03448766469955444, + 0.011902566999197006 + ], + "key-bold||padlock,security,secured,authentication,authenticated,login,locked,encrypted,encryption": [ + -0.02855946123600006, + -0.027521533891558647, + -0.08013737946748734, + -0.022626787424087524, + 0.017044872045516968, + 0.03823455050587654, + 0.11312906444072723, + -0.048259150236845016, + 0.03538355976343155, + -0.013058694079518318, + 0.06319869309663773, + 0.03340007737278938, + 0.051630426198244095, + -0.025216909125447273, + -0.013206888921558857, + 0.019674230366945267, + -0.012987518683075905, + -0.015226294286549091, + -0.04234324023127556, + 0.030175577849149704, + 0.016070954501628876, + -0.01621333695948124, + 0.007375173736363649, + 0.029098957777023315, + 0.02357882261276245, + -0.01006428524851799, + 0.07022690773010254, + 0.03176945447921753, + -0.004839111585170031, + -0.07785248011350632, + -0.045740652829408646, + -0.010414362885057926, + 0.08619502186775208, + 0.07154109328985214, + -0.009602135978639126, + -0.028659261763095856, + 0.05769973248243332, + 0.023992665112018585, + -0.033807095140218735, + -0.019582463428378105, + -0.08598595857620239, + -0.12299663573503494, + -0.0319768525660038, + 0.0827033519744873, + 0.001522346050478518, + 0.005147215910255909, + -0.04952426999807358, + -0.0012230825377628207, + -0.07118726521730423, + -0.015074684284627438, + 0.0057986024767160416, + -0.005373260006308556, + -0.11762699484825134, + 0.08267135918140411, + -0.04767884314060211, + -0.060449231415987015, + -0.07094139605760574, + 0.00787244364619255, + 0.06688272207975388, + 0.0009965809294953942, + 0.004171312320977449, + 0.07002652436494827, + -0.011275552213191986, + 0.08855696022510529, + 0.026179086416959763, + 0.03730204701423645, + -0.0472879484295845, + -0.06885398179292679, + 0.021759947761893272, + 0.003637629095464945, + -0.020670803263783455, + -0.06556259095668793, + -0.05769418179988861, + -0.021862534806132317, + -0.050628598779439926, + -0.0004924011882394552, + -0.020332252606749535, + -0.039009612053632736, + 0.003130437806248665, + -0.06294403970241547, + -0.0564141646027565, + -0.06019715592265129, + -0.03212989494204521, + 0.03968607634305954, + 0.0026177268009632826, + 0.0751129612326622, + -0.07548130303621292, + -0.05732322111725807, + -0.022558413445949554, + -0.02446725405752659, + -0.009765704162418842, + -0.01037895493209362, + 0.04210653156042099, + -0.035725317895412445, + -0.012276563793420792, + 0.004231650847941637, + 0.045288216322660446, + -0.031355809420347214, + -0.06538580358028412, + 0.060348991304636, + 0.0075006200931966305, + 0.028582222759723663, + -0.0016091953730210662, + -0.053682614117860794, + 0.035194527357816696, + 0.009067518636584282, + 0.046981170773506165, + -0.06536660343408585, + -0.025271620601415634, + 0.036069802939891815, + -0.02280438505113125, + -0.035417865961790085, + -0.03577161580324173, + -0.04603009670972824, + -0.0027835757937282324, + 0.03090253472328186, + -0.10194124281406403, + 0.025340082123875618, + 0.14621520042419434, + 0.0877661481499672, + 0.005906835198402405, + -0.0014762080973014235, + 0.007312385831028223, + -0.07795380055904388, + -0.06309358030557632, + -0.046142976731061935, + -0.010390223935246468, + -7.490199493916729e-34, + 0.03934743255376816, + 0.04392853379249573, + -0.07470418512821198, + 0.06749800592660904, + 0.015798909589648247, + 0.032933589071035385, + -0.03327855467796326, + -0.09410207718610764, + -0.09612438827753067, + 0.08033811300992966, + 0.05054933577775955, + 0.05823526531457901, + 0.01697569340467453, + 0.04614011570811272, + 0.12765060365200043, + 0.03594328835606575, + -0.012928135693073273, + 0.03563817963004112, + 0.024415696039795876, + 0.018433600664138794, + 0.016182150691747665, + 0.10380305349826813, + 0.05468488484621048, + 0.04486462473869324, + 0.04010886698961258, + -0.07021128386259079, + 0.022272128611803055, + -0.037730082869529724, + -0.011641011573374271, + 0.034330856055021286, + 0.00015299995720852166, + 0.018614424392580986, + -0.005035498645156622, + -0.02784927748143673, + 0.00894653145223856, + 0.03668000176548958, + 0.026967497542500496, + -0.08698203414678574, + 0.00966559536755085, + -0.07930579781532288, + -0.10966441035270691, + -0.07824515551328659, + -0.05021378770470619, + -0.04573243856430054, + 0.05473564937710762, + 0.04584314674139023, + -0.039934977889060974, + 0.01600034348666668, + 0.03434671834111214, + 0.055572956800460815, + -0.08454181253910065, + -0.009094001725316048, + -0.03358563408255577, + -0.05978812277317047, + -0.046980034559965134, + -0.06482898443937302, + -0.0013804234331473708, + 0.09267152100801468, + -0.021379539743065834, + 0.07773972302675247, + -0.04757850244641304, + 0.01631307043135166, + 0.05013545975089073, + -0.09430481493473053, + -0.02816387079656124, + -0.015670381486415863, + -0.03544441983103752, + -0.026785563677549362, + 0.06251642853021622, + 0.019335351884365082, + -0.06121060252189636, + 0.02488052099943161, + 0.07118847221136093, + 0.055280257016420364, + -0.04143526405096054, + 0.0007972336024977267, + 0.02884197235107422, + 0.016568422317504883, + 0.03838831186294556, + -0.01762744039297104, + -0.06830242276191711, + 0.04446000978350639, + -0.04310168698430061, + 0.13512031733989716, + -0.0715482160449028, + 0.07314684242010117, + -0.025395004078745842, + -0.0293711069971323, + -0.0638655349612236, + 0.020722689107060432, + -0.023011228069663048, + 0.011764817871153355, + 0.06632812321186066, + -0.033466216176748276, + -0.0965847373008728, + -2.613401652418327e-33, + -0.01918128877878189, + -0.0204163771122694, + -0.05454854667186737, + 0.06242232024669647, + 0.004638204351067543, + 0.06077855825424194, + -0.04927796497941017, + 0.013013736344873905, + -0.00790824182331562, + -0.03482569009065628, + 0.050480689853429794, + 0.009107816033065319, + 0.03444942831993103, + -0.04154118150472641, + 0.00606168620288372, + -0.016686968505382538, + -0.004438249859958887, + 0.04836585000157356, + -0.0007151806494221091, + 0.04685748368501663, + -0.010717806406319141, + -0.02777031995356083, + -0.07413475960493088, + 0.12092474848031998, + 0.05229484662413597, + 0.043084874749183655, + -0.06398182362318039, + -2.3425071049132384e-05, + -0.03396547585725784, + 0.02866394817829132, + 0.017413074150681496, + 0.03136497735977173, + 0.017221201211214066, + 0.04773561656475067, + -0.06967797875404358, + -0.05516482889652252, + 0.09869023412466049, + -0.022040212526917458, + -0.02664528600871563, + -0.026459425687789917, + 0.05035487189888954, + -0.009949673898518085, + 0.06069936975836754, + 0.01053908932954073, + -0.04552982747554779, + -0.0427359864115715, + -0.0053648315370082855, + -0.07602635025978088, + -0.027975987643003464, + 0.055733487010002136, + 0.0709737166762352, + -0.06300770491361618, + -0.006395397707819939, + -0.010753843933343887, + -0.06408511847257614, + 0.016362324357032776, + -0.007527265232056379, + 0.01661125011742115, + 0.012784424237906933, + 0.05150087922811508, + 0.03254660591483116, + 0.0377153679728508, + 0.054172489792108536, + 0.12658891081809998, + 0.0032782303169369698, + -0.08062227070331573, + -0.0068167573772370815, + 0.01613539457321167, + -0.10967113077640533, + -0.01526512298732996, + 0.07550451159477234, + -0.07249920070171356, + 0.04186597838997841, + 0.04797735810279846, + 0.05198436230421066, + -0.10589825361967087, + 0.006968699861317873, + -0.07549166679382324, + -0.07501032948493958, + 0.04011363163590431, + 0.03162103891372681, + 0.008792774751782417, + -0.11070311069488525, + 0.05729017034173012, + -0.011130801402032375, + 0.023211847990751266, + 0.04037108272314072, + -0.027982566505670547, + 0.004934580530971289, + -0.03722332417964935, + -0.050497010350227356, + 0.026877185329794884, + -0.09367765486240387, + 0.010235699824988842, + 0.031967826187610626, + -2.3917754887747833e-08, + 0.05172095447778702, + -0.012077639810740948, + -0.005778882186859846, + -0.06000356003642082, + 0.06907961517572403, + -0.006764007266610861, + -0.019412757828831673, + -0.025581011548638344, + -0.03184128180146217, + -0.04122782126069069, + 0.08735847473144531, + 0.03271167725324631, + -0.10077836364507675, + -0.083048976957798, + -0.023783603683114052, + 0.0257494505494833, + -0.08614231646060944, + 0.007016372866928577, + 0.008747722022235394, + -0.0761031061410904, + 0.02016391232609749, + 0.020339999347925186, + -0.0016287757316604257, + -0.03891365975141525, + 0.029828794300556183, + 0.08274877071380615, + -0.008929126895964146, + 0.0776027962565422, + 0.08909985423088074, + 0.09444915503263474, + 0.012012268416583538, + -0.0008468701271340251, + 0.07131066173315048, + -0.05502772703766823, + -0.13598382472991943, + 0.04340557008981705, + -0.023881511762738228, + -0.032686274498701096, + 0.014701890759170055, + 0.06399360299110413, + 0.0035481234081089497, + -0.05488433316349983, + -0.015371131710708141, + -0.025313688442111015, + -0.0727887749671936, + 0.03341764211654663, + 0.014610799960792065, + 0.041026920080184937, + -0.04667992144823074, + -0.05850937217473984, + -0.04774215444922447, + -0.010311008431017399, + 0.018044250085949898, + 0.08658911287784576, + -0.01917278580367565, + 0.07243383675813675, + 0.03118225187063217, + 0.046629972755908966, + 0.11408515274524689, + -0.03378351405262947, + 0.1257239580154419, + 0.0010302822338417172, + 0.001881064148619771, + -0.009427904151380062 + ], + "key-return-bold||keyboard,enter": [ + 0.019395919516682625, + -0.048689551651477814, + -0.022958429530262947, + 0.1013157069683075, + -0.010453982278704643, + 0.012974703684449196, + 0.039391566067934036, + -0.058453042060136795, + 0.03287465497851372, + 0.035347431898117065, + 0.011707138270139694, + 0.020856574177742004, + 0.09851083904504776, + -0.08089933544397354, + 0.031981416046619415, + -0.015517517924308777, + -0.00428916746750474, + 0.007462420500814915, + -0.011089431121945381, + 0.009532355703413486, + -0.022238805890083313, + -0.03622838109731674, + 0.0673644170165062, + -0.0022180071100592613, + -0.04376094788312912, + -0.024296555668115616, + 0.04924662038683891, + -0.011245019733905792, + 0.004459788557142019, + -0.06257624924182892, + -0.04690426588058472, + -0.03158155083656311, + 0.06398278474807739, + 0.02004147320985794, + -0.0054403673857450485, + 0.09365588426589966, + -0.014732899144291878, + -0.060028888285160065, + -0.0471239797770977, + 0.01778782531619072, + -0.06404981762170792, + -0.05682801082730293, + 0.025843635201454163, + 0.04704122617840767, + 0.0281760822981596, + -0.015189288184046745, + -0.08038567751646042, + -0.04254882410168648, + 0.02886056713759899, + 0.0064773960039019585, + 0.004508773796260357, + 0.015901954844594002, + -0.030476253479719162, + -0.005187892820686102, + -0.019263217225670815, + 0.028097758069634438, + -0.06430016458034515, + -0.032605066895484924, + 0.07300687581300735, + -0.03620453551411629, + -0.01650196686387062, + -0.01081944815814495, + 0.028223278000950813, + -0.019871443510055542, + 0.01637362688779831, + 0.07200216501951218, + -0.017329152673482895, + -0.044906482100486755, + -0.09045971930027008, + 0.008785316720604897, + 0.0743286982178688, + -0.07162556052207947, + -0.041628800332546234, + -0.05207256227731705, + -0.05678941309452057, + 0.03372083604335785, + -0.013138328678905964, + 0.027638958767056465, + -0.021286094561219215, + 0.07222975045442581, + -0.030881056562066078, + -0.06762845069169998, + -0.06516584753990173, + 0.030404292047023773, + 0.08875022828578949, + 0.08925698697566986, + -0.07620590925216675, + -0.061487287282943726, + -0.02242046780884266, + 0.0465313158929348, + -0.04334979131817818, + -0.053251974284648895, + 0.045682236552238464, + 0.0763038694858551, + -0.06082100048661232, + -0.035465702414512634, + 0.11695495992898941, + -0.017590655013918877, + -0.042880360037088394, + 0.058832451701164246, + 0.024289410561323166, + 0.10725023597478867, + -0.023240352049469948, + -0.051680754870176315, + 0.0028681019321084023, + 0.002951322589069605, + 0.09205278754234314, + -0.02766595035791397, + -0.023282218724489212, + -0.042014364153146744, + -0.016552874818444252, + -0.09547016024589539, + 0.049312811344861984, + 0.026448488235473633, + -0.05240054428577423, + 0.028034020215272903, + -0.017231840640306473, + -0.013459931127727032, + 0.08561711758375168, + 0.09899844974279404, + 0.008935629390180111, + -0.06590799987316132, + -0.11866611987352371, + -0.02812524139881134, + -0.020321374759078026, + -0.04719563201069832, + 0.04396314173936844, + -3.533221573832951e-33, + 0.041450053453445435, + 0.05241894721984863, + -0.04467616602778435, + 0.04240749403834343, + -0.029765790328383446, + 0.041680335998535156, + -0.033386897295713425, + -0.02302255481481552, + -0.10363251715898514, + -0.021799419075250626, + 0.05117471143603325, + -0.005649196915328503, + -0.00018642273789737374, + 0.008911170065402985, + 0.014031214639544487, + -0.006829326506704092, + 0.013331656344234943, + 0.04931489750742912, + -0.08274837583303452, + -0.010969236493110657, + -0.013832177966833115, + 0.01968306116759777, + -0.018565423786640167, + 0.007002318277955055, + 0.03225364536046982, + 0.012883735820651054, + 0.002240800065919757, + -0.004211606923490763, + -0.015532227233052254, + 0.01933075115084648, + 0.0464526042342186, + 0.0043119206093251705, + -0.038599830120801926, + -0.0007219659746624529, + -0.046386681497097015, + 0.023109285160899162, + 0.021536925807595253, + 0.04114649444818497, + 0.003986790310591459, + -0.021416785195469856, + -0.11244620382785797, + -0.052168894559144974, + -0.0314522385597229, + -0.05006919056177139, + 0.02027600258588791, + 0.023649374023079872, + 0.024014517664909363, + -0.05358971655368805, + -0.0020033966284245253, + -0.02147640287876129, + -0.019534733146429062, + 0.03593214228749275, + -0.038676436990499496, + 0.030573725700378418, + -0.006871326360851526, + -0.03135889768600464, + 0.007101673167198896, + 0.09274657815694809, + 0.03333066403865814, + 0.0472583994269371, + 0.0034342920407652855, + 0.0190180204808712, + 0.07220301032066345, + 0.05073772370815277, + -0.05076811462640762, + 0.021807678043842316, + -0.0282922200858593, + 0.03012216091156006, + 0.010683545842766762, + -0.05326050519943237, + 0.038256991654634476, + -0.007145591080188751, + -0.042820144444704056, + 0.0329701229929924, + -0.05874808132648468, + 0.0071482607163488865, + 0.014438759535551071, + -0.13561704754829407, + 0.0997457504272461, + -0.14272841811180115, + -0.013390880078077316, + 0.015025669708848, + -0.06809370219707489, + 0.08851178735494614, + 0.032141197472810745, + 0.06610222905874252, + -0.04081246256828308, + -0.0923677459359169, + 0.030034037306904793, + 0.01607409305870533, + -0.027499491348862648, + -0.06238773465156555, + -0.027328133583068848, + -0.09802397340536118, + -0.07409922778606415, + 4.986466321642337e-34, + 0.09415163844823837, + 0.05614246428012848, + -0.05267159268260002, + -0.01679207757115364, + -0.0574396476149559, + 0.051616646349430084, + 0.015388166531920433, + 0.024064168334007263, + 0.0206040870398283, + -0.0006839545676484704, + 0.05217629671096802, + 0.07959180325269699, + 0.051549363881349564, + -0.03795476630330086, + 0.010497460141777992, + 0.05782076716423035, + 0.01581190712749958, + 0.08404172211885452, + -0.015332970768213272, + 0.0020767482928931713, + -0.03776415437459946, + -0.13036546111106873, + -0.04846867546439171, + 0.09561188519001007, + -0.03916286304593086, + 0.0702003464102745, + 0.02048318088054657, + 0.10059116780757904, + -0.08966217190027237, + -0.009635607711970806, + -0.012605271302163601, + 0.07366756349802017, + -0.007727526128292084, + 0.0741269439458847, + -0.042611584067344666, + -0.0008627657080069184, + 0.011324824765324593, + -0.01582893542945385, + -0.012838613241910934, + 0.049994371831417084, + 0.06998354196548462, + 0.013889431953430176, + 0.05176708102226257, + 0.005498318932950497, + -0.07485169917345047, + 0.008434249088168144, + 0.022892888635396957, + -0.07653969526290894, + 0.0623774491250515, + 0.036054130643606186, + 0.09968560189008713, + -0.023223550990223885, + -0.03204863891005516, + -0.044105447828769684, + -0.08777502179145813, + 0.0007396383443847299, + -0.024872126057744026, + 0.03141157701611519, + -0.049205318093299866, + 0.03665073961019516, + -0.02055724337697029, + 0.036263007670640945, + 0.08925408869981766, + 0.0682242140173912, + 0.060950424522161484, + -0.12795498967170715, + 0.06400938332080841, + 0.044103436172008514, + 0.07348311692476273, + -0.03336571902036667, + 0.1037193164229393, + 0.05273657664656639, + 0.06258857995271683, + 0.08055870234966278, + 0.07471539080142975, + -0.04130888730287552, + 0.009464184753596783, + -0.011093586683273315, + -0.03699224069714546, + 0.04517834261059761, + 0.00533934123814106, + 0.026399467140436172, + 0.028505638241767883, + 0.008742943406105042, + -0.04712079465389252, + 0.060155320912599564, + -0.02382930926978588, + 0.03922933340072632, + -0.05447528511285782, + -0.01111314445734024, + -0.03493008762598038, + -0.02025645412504673, + -0.0008856722270138562, + -0.05249779671430588, + 0.017685623839497566, + -1.6446938033709557e-08, + -0.010525869205594063, + -0.00810197927057743, + 0.007207829970866442, + -0.006089968606829643, + -0.002479841932654381, + -0.06841082125902176, + -0.059400297701358795, + -0.0910932794213295, + -0.019133608788251877, + -0.06367964297533035, + -0.02778249979019165, + 0.044603295624256134, + 0.0029164720326662064, + -0.0730508416891098, + 0.020182356238365173, + 0.025883307680487633, + -0.04050067067146301, + 0.015201752074062824, + -0.009768776595592499, + -0.03738368675112724, + 0.026783520355820656, + 0.005159012041985989, + 0.07573036104440689, + -0.013099106959998608, + 0.009303959086537361, + 0.02826976403594017, + -0.11350512504577637, + 0.06380560994148254, + 0.0822095200419426, + -0.025833621621131897, + 0.028933437541127205, + 0.03282450512051582, + 0.02410259284079075, + -0.013405644334852695, + -0.1370050460100174, + -0.06024402752518654, + 0.05202368274331093, + -0.0016067478572949767, + 0.010037382133305073, + 0.08658278733491898, + -0.03101322054862976, + -0.012331032194197178, + -0.08246059715747833, + -0.0663042888045311, + -0.17348916828632355, + 0.07742432504892349, + 0.08181045949459076, + 0.033667393028736115, + -0.0505954772233963, + -0.0647612065076828, + -0.042574770748615265, + 0.004380345344543457, + 0.005483292043209076, + 0.04081882908940315, + -0.054114390164613724, + -0.01121586374938488, + -0.015938974916934967, + 0.10448099672794342, + -0.01602361351251602, + -0.05724899098277092, + 0.12925980985164642, + -0.012684877961874008, + -0.019441675394773483, + -0.03611120954155922 + ], + "keyboard-bold||typing,type,keys,input": [ + -0.005686703138053417, + -0.09703170508146286, + -0.018715279176831245, + 0.03524553403258324, + -0.00999535247683525, + 0.022419052198529243, + 0.10060109943151474, + -0.016879133880138397, + 0.026772515848279, + 0.0252973809838295, + 0.03998109698295593, + 0.056103259325027466, + 0.10220653563737869, + -0.05169154703617096, + 0.0058794389478862286, + 0.006904218345880508, + -0.01789885386824608, + -0.025079648941755295, + -0.010797490365803242, + 0.0006446484476327896, + -0.01891694962978363, + 0.003949144389480352, + 0.01175022404640913, + 0.004111109301447868, + -0.011389117687940598, + 0.0215921588242054, + 0.05182734876871109, + -0.033570799976587296, + 0.01639178767800331, + -0.07371950149536133, + -0.09105494618415833, + -0.044771671295166016, + 0.09062120318412781, + 0.030020054429769516, + -0.020900996401906013, + 0.026605967432260513, + -0.016003688797354698, + -0.03536475822329521, + -0.07881905138492584, + -0.002306492766365409, + -0.05084311589598656, + -0.13020916283130646, + 0.03529491648077965, + 0.06026403605937958, + 0.011520951054990292, + -0.02683171257376671, + -0.06880683451890945, + -0.06103774532675743, + -0.015715334564447403, + -0.00027266741381026804, + -0.01172600593417883, + -0.051758792251348495, + -0.014654166996479034, + 0.0240091010928154, + -0.0023682848550379276, + -0.011341028846800327, + -0.06492311507463455, + -0.0029699767474085093, + 0.07891768217086792, + -0.02042583003640175, + -0.03817379102110863, + 0.03333626687526703, + 0.029003841802477837, + -0.011040790937840939, + 0.04494631662964821, + 0.0889878123998642, + 0.02300005406141281, + 0.0069715906865894794, + -0.0348060168325901, + 0.00472532631829381, + 0.036998458206653595, + -0.012970608659088612, + -0.061159584671258926, + -0.06225869432091713, + -0.030260447412729263, + 0.021787095814943314, + 0.011165070347487926, + -0.0035978895612061024, + -0.007567529566586018, + 0.01320731732994318, + -0.10116326808929443, + -0.048926033079624176, + -0.04229665547609329, + 0.03252794221043587, + 0.06409341096878052, + 0.0920950174331665, + -0.07294177263975143, + -0.03358690068125725, + -0.008830716833472252, + 0.01727699674665928, + -0.05744004249572754, + -0.04374793916940689, + 0.04016994312405586, + 0.06923262774944305, + -0.06341131031513214, + 0.007488860283046961, + 0.1045760065317154, + 0.002422263380140066, + -0.050840411335229874, + 0.09026244282722473, + 0.018587004393339157, + 0.07500462979078293, + 0.04045626521110535, + -0.018512658774852753, + -0.0038305812049657106, + 0.0020024008117616177, + 0.02644757367670536, + -0.04591675102710724, + -0.02504207193851471, + -0.05179959163069725, + -0.01794043369591236, + -0.14044439792633057, + -0.055918630212545395, + -0.01710609160363674, + -0.08198550343513489, + -0.016052912920713425, + -0.004443769343197346, + -0.0005579694989137352, + 0.10655729472637177, + 0.0878601148724556, + -0.010117770172655582, + -0.019888045266270638, + -0.10270626097917557, + -0.042629797011613846, + 0.011399581097066402, + -0.001403079484589398, + 0.010385186411440372, + -1.9427143506780473e-33, + 0.07362328469753265, + 0.06088345870375633, + -0.030738208442926407, + 0.1035824716091156, + -0.031303271651268005, + 0.05212704837322235, + -0.05688559263944626, + -0.02806061878800392, + -0.06707793474197388, + -0.02577081508934498, + 0.03634212538599968, + 0.04032999649643898, + -0.03834451735019684, + 0.03785320743918419, + 0.050854235887527466, + -0.0302866380661726, + 0.023531775921583176, + 0.039069876074790955, + -0.10767845809459686, + -0.017047157511115074, + 0.017437763512134552, + 0.08485071361064911, + -0.033180397003889084, + 0.01640729047358036, + 0.001629356760531664, + 0.010232637636363506, + 0.02285204641520977, + 0.0022246793378144503, + -0.0335625521838665, + 0.019094061106443405, + 0.029382091015577316, + -0.003418077016249299, + -0.0401642732322216, + -0.026319239288568497, + -0.03615602105855942, + 0.02057664468884468, + 0.00640596030279994, + 0.021466873586177826, + 0.016346756368875504, + -0.01545034535229206, + -0.0727774053812027, + -0.0421115979552269, + -0.004793241154402494, + -0.06003137677907944, + 0.0592617429792881, + 0.08791887760162354, + -0.004951402544975281, + -0.020594138652086258, + -0.011926387436687946, + -0.009111510589718819, + -0.023837773129343987, + -0.008305086754262447, + 0.0025962628424167633, + 0.033321354538202286, + 0.034738220274448395, + -0.027287665754556656, + -0.009913756512105465, + 0.11594801396131516, + 0.07965897023677826, + 0.08337602764368057, + -0.007458518259227276, + 0.02089580148458481, + 0.09676751494407654, + 0.0025492312852293253, + -0.06460262835025787, + 0.018686452880501747, + -0.050760459154844284, + 0.019830914214253426, + 0.07887954264879227, + -0.06383811682462692, + 0.02870071306824684, + 0.03952706232666969, + -0.02010689489543438, + 0.06036762148141861, + -0.05099301040172577, + -0.011626163497567177, + -0.016100995242595673, + -0.09033273160457611, + 0.005196250509470701, + -0.07220793515443802, + -0.034956205636262894, + 0.005324050318449736, + -0.029901953414082527, + 0.09201119840145111, + 0.012859418988227844, + 0.03136125206947327, + -0.04648561775684357, + -0.09397159516811371, + -0.007565111853182316, + 0.018134938552975655, + -0.06810406595468521, + 0.014428583905100822, + -0.044468287378549576, + -0.1324809342622757, + -0.11631492525339127, + -1.9883027766678203e-34, + 0.026823263615369797, + 0.03940461575984955, + -0.06441152840852737, + 0.0283823199570179, + -0.06995723396539688, + 0.04143287613987923, + -0.0020937335211783648, + 0.020631911233067513, + 0.022105159237980843, + -0.0069975173100829124, + 0.050874218344688416, + 0.041206225752830505, + 0.031845204532146454, + -0.07355954498052597, + -0.033155620098114014, + 0.047128479927778244, + -0.024069610983133316, + 0.0743221715092659, + 0.010189851745963097, + -0.00510930921882391, + -0.07353699952363968, + -0.11544642597436905, + -0.05448739975690842, + 0.13740801811218262, + -0.03732925280928612, + 0.058911070227622986, + -0.011615374125540257, + 0.08247830718755722, + -0.09325341135263443, + 0.03271776810288429, + -0.011323043145239353, + 0.052920930087566376, + 0.0012852658983319998, + 0.057676851749420166, + -0.06517145037651062, + -0.011802153661847115, + 0.007897915318608284, + 0.03350256755948067, + 0.020370187237858772, + 0.03246810659766197, + 0.040632277727127075, + 0.025655150413513184, + 0.050641003996133804, + 0.02314542979001999, + -0.06151557341217995, + 0.02007039077579975, + -0.01697690598666668, + -0.09919389337301254, + 0.049278177320957184, + 0.03218012675642967, + 0.08095023036003113, + -0.028340362012386322, + -0.04649382457137108, + -0.028224816545844078, + -0.10821765661239624, + -0.03654617443680763, + 0.02496500127017498, + 0.029116608202457428, + -0.034501299262046814, + 0.06043699383735657, + -0.0279247909784317, + 0.010820046067237854, + 0.059706781059503555, + 0.047969747334718704, + 0.0339960902929306, + -0.10879732668399811, + 0.0660538524389267, + -0.01636396162211895, + 0.045308250933885574, + -0.018267741426825523, + 0.10431826859712601, + 0.04167313128709793, + 0.053994227200746536, + 0.06310635805130005, + 0.029523009434342384, + -0.06349734961986542, + 0.054162416607141495, + -0.002345520770177245, + -0.002428370760753751, + 0.01700493134558201, + 0.010056528262794018, + 0.014503238722682, + 0.017774559557437897, + 0.041056204587221146, + -0.08701962232589722, + 0.11237356811761856, + 0.004501946270465851, + 0.02703757770359516, + -0.02116408199071884, + -0.002368306275457144, + -0.0379302054643631, + 0.05690941587090492, + -0.026473499834537506, + -0.03385673090815544, + -0.032329168170690536, + -1.7678836172763113e-08, + 0.06360453367233276, + -0.008514130488038063, + -0.050538912415504456, + 0.0023741337936371565, + -0.022471465170383453, + -0.05768929421901703, + -0.0421798974275589, + -0.08284256607294083, + 0.0012608150718733668, + -0.04168577492237091, + -0.01214631088078022, + 0.01858036033809185, + -0.055225253105163574, + -0.08979542553424835, + 0.09959668666124344, + 0.05715547502040863, + -0.04050791636109352, + 0.048198919743299484, + -0.055019594728946686, + -0.05612771585583687, + 0.058594778180122375, + 0.028230326250195503, + 0.0477365143597126, + 0.006735189817845821, + 0.0544261559844017, + 0.020200025290250778, + -0.08338287472724915, + 0.07123611867427826, + 0.11134900152683258, + 0.017611678689718246, + 0.048710476607084274, + 0.03661215305328369, + 0.011051872745156288, + -0.03275801241397858, + -0.09640040993690491, + -0.03850476071238518, + 0.009913197718560696, + -0.0027207520324736834, + -0.021644648164510727, + 0.09052453935146332, + -0.03156978264451027, + -0.043345823884010315, + -0.09587909281253815, + -0.07479703426361084, + -0.080115906894207, + 0.04190048575401306, + 0.07574522495269775, + 0.006586448755115271, + -0.07829161733388901, + -0.08940041810274124, + -0.03980771452188492, + 0.049536705017089844, + 0.051579419523477554, + 0.0886273980140686, + -0.061294540762901306, + 0.017286721616983414, + -0.003194084158167243, + 0.08012156933546066, + 0.016826070845127106, + -0.051866788417100906, + 0.1345135122537613, + -0.01985985040664673, + -0.0009670020081102848, + -0.0022029513493180275 + ], + "keyhole-bold||lock,security,secured,authentication,authenticated,login,locked,encrypted,encryption,privacy,private": [ + 0.0051420642994344234, + -0.03420931473374367, + -0.07745261490345001, + -0.0010779468575492501, + -0.015437119640409946, + 0.013094828464090824, + 0.0870586633682251, + -0.04365639016032219, + 0.04147779569029808, + -0.01540122926235199, + 0.0695452094078064, + 0.01603063941001892, + 0.04284866899251938, + -0.018768969923257828, + 0.01770952343940735, + 0.04382537677884102, + -0.059601254761219025, + -0.015380640514194965, + -0.03085608221590519, + 0.0142618827521801, + 0.027413256466388702, + -0.016830042004585266, + -0.03144625201821327, + 0.019178293645381927, + 0.02401573397219181, + -0.004374269396066666, + 0.06229349970817566, + 0.012128572911024094, + -0.025750236585736275, + -0.03907991200685501, + -0.070510134100914, + -0.01858179271221161, + 0.0681433230638504, + 0.04845733940601349, + 0.03612909093499184, + -0.044804323464632034, + 0.0288750771433115, + 0.06275155395269394, + -0.04402752220630646, + -0.040585488080978394, + -0.10443092882633209, + -0.11401882767677307, + -0.027961771935224533, + 0.055891864001750946, + -0.02146383933722973, + 0.0035956830251961946, + -0.05541374534368515, + 0.006594360340386629, + -0.058586910367012024, + -0.0139550119638443, + 0.0056294710375368595, + -0.0263077300041914, + -0.12486574053764343, + 0.08209054917097092, + -0.04693431407213211, + -0.04826117306947708, + -0.045664332807064056, + -0.029757484793663025, + 0.0408891998231411, + -0.0016158364014700055, + 0.0585910826921463, + 0.032610028982162476, + -0.013821497559547424, + 0.09017714112997055, + 0.009166248142719269, + -0.0055825673043727875, + -0.03897358477115631, + -0.07918937504291534, + 0.022354045882821083, + -0.00923147238790989, + -0.03773285076022148, + -0.04730905219912529, + -0.07948346436023712, + -0.02711305022239685, + 0.003516505239531398, + 0.0025249100290238857, + -0.02663796953856945, + -0.03797908127307892, + 0.018354319036006927, + -0.05629904940724373, + -0.02070816047489643, + -0.038874611258506775, + -0.011381437070667744, + 0.03469492867588997, + 0.0013475061859935522, + 0.07420875132083893, + -0.039370425045490265, + -0.052448924630880356, + -0.012010804377496243, + -0.0043700085952878, + -0.03622429072856903, + -0.03633549436926842, + 0.030361395329236984, + -0.033584147691726685, + -0.0036184394266456366, + -0.010591699741780758, + 0.04417254403233528, + -0.02617545612156391, + -0.050258077681064606, + 0.05167124792933464, + -0.003083071205765009, + 0.017534367740154266, + -0.018099524080753326, + -0.07325433939695358, + 0.05448481813073158, + 0.09203647077083588, + 0.03420694172382355, + -0.03407764062285423, + 0.028045915067195892, + 0.03358461335301399, + -0.024997608736157417, + -0.05900346860289574, + -0.013756527565419674, + -0.06664206832647324, + -0.03075861744582653, + 0.027669640257954597, + -0.1074984148144722, + 0.015339381992816925, + 0.12603208422660828, + 0.11574189364910126, + -0.021186742931604385, + 0.018648069351911545, + -0.0024278652854263783, + -0.08970990031957626, + -0.07639366388320923, + -0.04523477330803871, + -0.015147991478443146, + -1.3628517117895479e-33, + 0.02450966089963913, + 0.033197879791259766, + -0.0851936936378479, + 0.0330829918384552, + 0.03014199063181877, + 0.02355652116239071, + -0.03733721375465393, + -0.06939850747585297, + -0.112615205347538, + 0.08016325533390045, + 0.03262380138039589, + 0.0020578664261847734, + 0.015622940845787525, + 0.025022653862833977, + 0.12597325444221497, + 0.029509704560041428, + 0.020077666267752647, + 0.02066482976078987, + 0.06876519322395325, + 0.03086039237678051, + -0.006705482956022024, + 0.07685896009206772, + 0.03190945088863373, + 0.02752774953842163, + 0.05049675703048706, + -0.03912357613444328, + 0.03195956349372864, + -0.039608877152204514, + -0.006891077384352684, + 0.03541078045964241, + 0.013994530774652958, + 0.020170679315924644, + 0.01813719980418682, + -0.020177705213427544, + 0.03713742271065712, + 0.033531028777360916, + 0.07427692413330078, + -0.07774224132299423, + 0.01091846451163292, + -0.07872092723846436, + -0.10975682735443115, + -0.0917324349284172, + -0.0718013122677803, + 0.0025812769308686256, + 0.042560867965221405, + 0.03240228444337845, + -0.043511830270290375, + 0.04070839658379555, + 0.040927257388830185, + 0.040785837918519974, + -0.07475631684064865, + 0.04388340935111046, + -0.0727495551109314, + -0.036059774458408356, + -0.057941023260354996, + -0.05689426138997078, + -0.02076234109699726, + 0.08592088520526886, + -0.031780216842889786, + 0.07873550057411194, + -0.046285480260849, + 0.07424667477607727, + 0.043693944811820984, + -0.09519658237695694, + -0.0071497634053230286, + -0.026462145149707794, + 0.004500316455960274, + -0.006838551722466946, + 0.04769517853856087, + 0.003337278962135315, + -0.04756655916571617, + 0.03901335224509239, + 0.02778816409409046, + 0.08989602327346802, + -0.057036835700273514, + -0.022167181596159935, + 0.03485073521733284, + 0.05255867913365364, + 0.046077147126197815, + -0.011520749889314175, + -0.07965429872274399, + 0.028310412541031837, + -0.06104837730526924, + 0.12043862044811249, + -0.08559002727270126, + 0.054691243916749954, + -0.021135980263352394, + -0.0467575304210186, + -0.034127164632081985, + -0.02057262696325779, + -0.05520024523139, + 0.012081218883395195, + 0.03257720544934273, + -0.010943294502794743, + -0.11827075481414795, + -2.342888076199471e-33, + -0.04399887099862099, + -0.02051674574613571, + -0.05915705859661102, + 0.07188914716243744, + 0.025381198152899742, + 0.06146928668022156, + -0.03795991465449333, + -0.020229026675224304, + 0.022860726341605186, + 0.044307537376880646, + 0.042677540332078934, + 0.03446062654256821, + 0.05967990309000015, + -0.09814253449440002, + 0.02651578187942505, + -0.04365120455622673, + -0.01875421032309532, + 0.03397023677825928, + -0.04933813214302063, + 0.08969877660274506, + -0.028784023597836494, + -0.0373544842004776, + -0.09729889780282974, + 0.07608965039253235, + 0.06108460575342178, + 0.037088748067617416, + -0.047497283667325974, + -0.01978190243244171, + -0.02182774990797043, + 0.05430009588599205, + 0.013591833412647247, + 0.05923110246658325, + -0.018546979874372482, + 0.024040084332227707, + -0.061895985156297684, + -0.050889719277620316, + 0.07719700038433075, + -0.005407487042248249, + -0.03287691995501518, + -0.04928618669509888, + 0.047345567494630814, + 0.015091176144778728, + 0.04633092135190964, + 0.03255113214254379, + -0.047312114387750626, + -0.020433714613318443, + -0.035796135663986206, + -0.04101581871509552, + -0.036852188408374786, + 0.04909280687570572, + 0.06453405320644379, + -0.0708736851811409, + 0.02678130753338337, + 0.014234120026230812, + -0.0705319494009018, + 0.0672794058918953, + -0.03839753568172455, + 0.005461879074573517, + 0.023083724081516266, + 0.035642359405756, + 0.057418230921030045, + 0.02213737741112709, + 0.03889777883887291, + 0.15313680469989777, + 0.02192770503461361, + -0.08605723828077316, + -0.03893493860960007, + 0.046852439641952515, + -0.12624721229076385, + -0.018995150923728943, + 0.060307055711746216, + -0.0664849579334259, + 0.021287566050887108, + 0.04188956320285797, + 0.059688352048397064, + -0.07113734632730484, + 0.003021182958036661, + -0.0693647637963295, + -0.08944391459226608, + 0.05713750422000885, + 0.0845382809638977, + 0.017657160758972168, + -0.0720299780368805, + 0.011679625138640404, + 0.06519931554794312, + -0.016441350802779198, + 0.028330447152256966, + -0.01610921509563923, + 0.0008826237171888351, + -0.011882545426487923, + -0.04884624481201172, + 0.059829000383615494, + -0.11373263597488403, + -0.016821010038256645, + 0.03241115063428879, + -2.5360634481330635e-08, + 0.06439558416604996, + -0.004501071758568287, + -0.017410287633538246, + -0.06372300535440445, + 0.052689358592033386, + -0.06245879828929901, + -0.03702303767204285, + -0.0324702151119709, + -0.03919109329581261, + -0.032369740307331085, + 0.0642930343747139, + 0.02970186248421669, + -0.1168413981795311, + -0.04296395555138588, + -0.031456828117370605, + 0.0399368554353714, + -0.09357374906539917, + 0.005504957400262356, + 0.01770949363708496, + -0.044332463294267654, + -0.03985898196697235, + -0.0057770428247749805, + -0.025144241750240326, + -0.03846190869808197, + 0.01152075082063675, + 0.0637727677822113, + 0.0025650484021753073, + 0.05157395079731941, + 0.053736377507448196, + 0.07638078182935715, + 0.025479888543486595, + 0.020858323201537132, + 0.06514167040586472, + -0.04102044552564621, + -0.11156772077083588, + 0.08527245372533798, + -0.014578213915228844, + -0.04125161096453667, + -0.03162010759115219, + 0.08083391934633255, + 0.003907127771526575, + -0.06601665914058685, + 0.018184315413236618, + -0.027351774275302887, + -0.09335900098085403, + 0.01944429613649845, + 0.03642599657177925, + 0.056969285011291504, + -0.025303976610302925, + -0.03551095724105835, + -0.052580054849386215, + -0.0177024994045496, + -0.002734322799369693, + 0.051474083214998245, + 0.028684189543128014, + 0.08789380639791489, + 0.05108772963285446, + 0.03915306553244591, + 0.09186805784702301, + -0.024748854339122772, + 0.08821523934602737, + 0.05830478295683861, + 0.036499686539173126, + -0.010245650075376034 + ], + "knife-bold||tools,food,meal,eating,restaurants,dining,utensils": [ + 0.00019725302990991622, + 0.005884803365916014, + -0.03737769275903702, + 0.06154473125934601, + -0.05567273125052452, + -0.0548040047287941, + 0.0783856064081192, + -0.08691742271184921, + -0.017186779528856277, + 0.014356975443661213, + 0.08179902285337448, + -0.07419660687446594, + -0.00853593461215496, + -0.007263110484927893, + 0.0024164943024516106, + -0.05994661524891853, + 0.08689825236797333, + 0.006328582298010588, + 0.018424728885293007, + 0.030227890238165855, + -0.0067103710025548935, + 0.06770256906747818, + 0.07380720227956772, + 0.03607214614748955, + 0.08438585698604584, + 0.0433209091424942, + 0.02965576760470867, + 0.0017562570283189416, + -0.022145334631204605, + -0.036869604140520096, + 0.02861264906823635, + -0.007370701525360346, + 0.07378118485212326, + 0.04351385682821274, + 0.040492258965969086, + 0.013438569381833076, + 0.032181791961193085, + -0.050233595073223114, + 0.02801082655787468, + 0.01867137849330902, + -0.044489786028862, + -0.006293890066444874, + 0.012226156890392303, + 0.0027142849285155535, + 0.07307020574808121, + -0.042610615491867065, + -0.09016701579093933, + -0.036001287400722504, + 0.006625968497246504, + -0.023564768955111504, + -0.087901771068573, + -0.05730746313929558, + -0.11900480836629868, + -0.054078567773103714, + 0.04462016373872757, + -5.5125583457993343e-05, + -0.03415939211845398, + -0.021539932116866112, + 0.0249350406229496, + 0.054367322474718094, + 0.0843423381447792, + 0.043855614960193634, + 0.011766665615141392, + 0.05117464065551758, + -0.02959715761244297, + 0.004278332926332951, + -0.009165138937532902, + -0.01033471804112196, + -0.10665085911750793, + 0.016593752428889275, + 0.002600552747026086, + -0.028541242703795433, + 0.0034974203445017338, + -0.030847858637571335, + -0.003691689111292362, + -0.09098108112812042, + 0.017718521878123283, + -0.04552437737584114, + -0.0665331557393074, + -0.0645885169506073, + -0.13482816517353058, + 0.04556123539805412, + -0.034876588732004166, + 0.0184421855956316, + -0.00954408198595047, + 0.03578031808137894, + -0.03839803487062454, + -0.03275571018457413, + -0.01229575090110302, + 0.01459208969026804, + -0.04130133241415024, + -0.024232350289821625, + -0.02716739848256111, + 0.0011022784747183323, + -0.024656077846884727, + 0.006525016855448484, + 0.010573440231382847, + 0.023504463955760002, + -0.048722777515649796, + 0.05884554609656334, + -0.012411232106387615, + 0.006067999638617039, + -0.004847333300858736, + -0.016326606273651123, + -0.03482893109321594, + 0.042673900723457336, + -0.04345480725169182, + -0.04873458668589592, + 0.006240962538868189, + -0.028321238234639168, + -0.010670061223208904, + 0.04390117898583412, + -0.09269877523183823, + -0.062136925756931305, + -0.03405824303627014, + -0.09795479476451874, + -0.032990407198667526, + -0.05771753191947937, + 0.1263406127691269, + 0.09546403586864471, + 0.0031117661856114864, + 0.012704572640359402, + -0.06184381619095802, + -0.01592734269797802, + -0.040094565600156784, + 0.04064096510410309, + 0.08807990700006485, + -2.0810891375530314e-33, + 0.013482984155416489, + 0.01930893212556839, + -0.00463038869202137, + 0.016292283311486244, + 0.04172337427735329, + -0.052368637174367905, + -0.014605909585952759, + -0.022476237267255783, + -0.05080361291766167, + 0.068255215883255, + 0.05441548302769661, + -0.02321944199502468, + -0.07110119611024857, + 0.12640024721622467, + 0.12014679610729218, + -0.06700286269187927, + 0.02990199625492096, + 0.004756633657962084, + 0.005402936600148678, + 0.004793569445610046, + -0.06822489202022552, + 0.0169820599257946, + -0.01046557817608118, + 0.0195588618516922, + 0.024181406944990158, + -0.0036562359891831875, + 0.03447040170431137, + -0.01994767040014267, + -0.006282690912485123, + 0.03378750756382942, + 0.016335373744368553, + 0.00023000233341008425, + 0.051165465265512466, + -0.02696846053004265, + -0.10605940222740173, + 0.03380272909998894, + -0.015387597493827343, + -0.06037706136703491, + -0.03440799191594124, + -0.043677255511283875, + -0.022845029830932617, + -0.0027706653345376253, + -0.046699754893779755, + 0.03700176998972893, + 0.007491421420127153, + 0.04864077270030975, + -0.016153763979673386, + 0.08406684547662735, + -0.010946899652481079, + 0.018847787752747536, + -0.012581922113895416, + 0.009800788015127182, + 0.12210016697645187, + 0.030758792534470558, + -0.08435798436403275, + -0.014017928391695023, + 0.01437265146523714, + 0.07120439410209656, + -0.01348918117582798, + 0.006534785032272339, + 0.04887809976935387, + 0.027480516582727432, + 0.009878658689558506, + 0.03116648644208908, + 0.0007612687186338007, + 0.0301249697804451, + 0.02719525434076786, + 0.0016544245881959796, + 0.08441030234098434, + 0.004353633150458336, + -0.1045767068862915, + 0.04896009713411331, + 0.04844922944903374, + 0.02991444244980812, + -0.017590785399079323, + 0.00419383030384779, + -0.004781202878803015, + -0.03857461363077164, + 0.006512559484690428, + -0.07054204493761063, + -0.04962411895394325, + 0.06894666701555252, + -0.01095231156796217, + 0.022988812997937202, + -0.0640357956290245, + 0.07908384501934052, + -0.0030194311402738094, + -0.09926525503396988, + 0.06599868088960648, + 0.0604802630841732, + -0.1491706520318985, + -0.029396001249551773, + -0.022594287991523743, + -0.022559212520718575, + -0.10621964931488037, + -8.196996696417323e-34, + 0.02126266248524189, + 0.003381493501365185, + -0.05264993757009506, + 0.027643566951155663, + -0.03816007077693939, + -0.013862831518054008, + -0.09911032766103745, + -0.06997188925743103, + -0.039989128708839417, + -0.06265518814325333, + -0.08767736703157425, + -0.03729112446308136, + 0.0008326046518050134, + -0.06904803961515427, + 0.023621944710612297, + 0.01992233283817768, + 0.007684269454330206, + 0.038955312222242355, + 0.029486700892448425, + -0.015815135091543198, + -0.047671083360910416, + -0.01570175215601921, + 0.0584850050508976, + -0.006039907224476337, + -0.03309829160571098, + 0.05837289243936539, + -0.007095430977642536, + -0.007070627529174089, + -0.10546271502971649, + -0.01848345808684826, + 0.01810811646282673, + -0.08710534870624542, + 0.09459986537694931, + 0.011957555077970028, + -0.07925371080636978, + 0.06975717842578888, + -0.022221874445676804, + -0.06736790388822556, + 0.021065667271614075, + 0.032882727682590485, + 0.0371476449072361, + -0.022692278027534485, + 0.03611181676387787, + 0.13332143425941467, + -0.06575486809015274, + 0.012347929179668427, + -0.017430659383535385, + -0.00827901903539896, + -0.02417425997555256, + 0.052404239773750305, + 0.07736211270093918, + 0.0583031140267849, + -0.027157016098499298, + -0.04663464054465294, + -0.04447111859917641, + 0.013624433428049088, + -0.08267347514629364, + -0.1237502172589302, + 0.005479944404214621, + 0.04412633925676346, + -0.008673527278006077, + 0.06651848554611206, + 0.018809841945767403, + 0.1623498648405075, + 0.11069844663143158, + -0.053517721593379974, + 0.015222606249153614, + -0.020147258415818214, + -0.021867776289582253, + -0.006824253126978874, + 0.058039966970682144, + 0.03910357132554054, + 0.044176843017339706, + -0.009439137764275074, + -0.02001476287841797, + -0.01173366792500019, + 0.010579750873148441, + -0.05706498771905899, + -0.046917930245399475, + 0.08965536952018738, + 0.00022286617604549974, + -0.072837233543396, + -0.011770484037697315, + 0.05300915613770485, + -0.04196314886212349, + -0.0045819031074643135, + -0.0436127595603466, + 0.05261356011033058, + -0.008888759650290012, + 0.03273851424455643, + -0.04508731886744499, + 0.012426529079675674, + 0.006015428341925144, + 0.009992914274334908, + 0.006401780527085066, + -2.354365591372698e-08, + 0.07533971220254898, + 0.011647935025393963, + -0.06881140917539597, + 0.005183034110814333, + 0.00418389867991209, + -0.014709393493831158, + -0.027023205533623695, + -0.04943977668881416, + -0.03956468030810356, + 0.02741132490336895, + 0.021405844017863274, + -0.0013497067848220468, + -0.10742014646530151, + -0.0022803505416959524, + -0.0021225200034677982, + -0.004023979417979717, + 0.018400181084871292, + 0.05290119722485542, + -0.014871636405587196, + -0.027938587591052055, + 0.04903414472937584, + 0.012641394510865211, + 0.06699587404727936, + -0.08721275627613068, + -0.027514448389410973, + 0.03253994509577751, + -0.11431261897087097, + 0.05627516284584999, + 0.05857823044061661, + 0.16167710721492767, + 0.0700145959854126, + 0.030517863109707832, + 0.029752040281891823, + 0.0667596384882927, + -0.01615685410797596, + -0.061278149485588074, + -0.1258145421743393, + 0.012103690765798092, + 0.014596228487789631, + 0.10390997678041458, + -0.04579319432377815, + -0.07976958155632019, + -0.05221010744571686, + -0.0012548515805974603, + -0.09973912686109543, + 0.08533213287591934, + 0.009108495898544788, + 0.006915835663676262, + -0.026563601568341255, + -0.04042275249958038, + -0.014458089135587215, + -0.005042321514338255, + 0.06721746176481247, + 0.013033111579716206, + -0.03750035911798477, + 0.07275240123271942, + 0.10928358137607574, + 0.012853418476879597, + 0.05267208069562912, + -0.004915046971291304, + 0.04985538125038147, + -0.02465924248099327, + -0.043475572019815445, + 0.04539605602622032 + ], + "ladder-bold||stairs,steps,climbing": [ + -0.07834646850824356, + -0.01384008675813675, + -0.02234848588705063, + -0.006472067441791296, + -0.029832838103175163, + -0.00036526372423395514, + -0.03427360579371452, + 0.01674921251833439, + -0.026598090305924416, + 0.03834659233689308, + -0.009524902328848839, + -0.0034246710129082203, + 0.060810212045907974, + -0.01249153446406126, + -0.0036990016233175993, + 0.14192873239517212, + -0.054184142500162125, + 0.10815487802028656, + 0.007257386110723019, + -0.002509720390662551, + 0.004925996530801058, + -0.034459035843610764, + 0.022785885259509087, + 0.09115442633628845, + -0.028194153681397438, + 0.013404910452663898, + 0.04658079892396927, + 0.04305572807788849, + 0.03296088054776192, + -0.08880412578582764, + -0.02489665523171425, + 0.02379659377038479, + -0.00856302585452795, + 0.051216010004282, + 0.03516412526369095, + 0.027900803834199905, + 0.00919270608574152, + -0.04223289340734482, + -0.016117271035909653, + 0.029518693685531616, + 0.03179476782679558, + -0.041048239916563034, + -0.01798650063574314, + 0.013025945983827114, + -0.042563144117593765, + -0.001481853425502777, + -0.03063013218343258, + -0.08861532062292099, + -0.02559921145439148, + 0.03734581917524338, + -0.06567150354385376, + -0.03867601230740547, + -0.04652330279350281, + 0.024507761001586914, + 0.025818340480327606, + 0.08804598450660706, + 0.0037244115956127644, + -0.058671120554208755, + 0.10630524158477783, + -0.013901065103709698, + 0.00012732624600175768, + -0.00684437807649374, + -0.009677610360085964, + 0.010736878961324692, + 0.014625967480242252, + -0.0029223242308944464, + -0.03003755770623684, + 0.011044682003557682, + 0.0174204483628273, + 0.07649393379688263, + 0.03472178056836128, + -0.04633079841732979, + 0.0418471023440361, + -0.035013552755117416, + -0.06028910353779793, + 0.004878835286945105, + 0.032926272600889206, + 0.002706616884097457, + -0.07405149936676025, + -0.047159213572740555, + -0.15684524178504944, + -0.04350306838750839, + -0.04504640772938728, + -0.00263124518096447, + 0.026764383539557457, + 0.05386517196893692, + -0.04477375000715256, + -0.050782229751348495, + -0.031151672825217247, + -0.006454089656472206, + -0.024286553263664246, + -0.05927489325404167, + 0.004777651280164719, + 0.004844422452151775, + -0.008802386000752449, + -0.01767582632601261, + 0.035695988684892654, + -0.0702538788318634, + -0.051062390208244324, + 0.04907064139842987, + 0.01552267000079155, + 0.07030688226222992, + 0.04649432376027107, + 0.0066340588964521885, + -0.05336173251271248, + -0.06770431250333786, + 0.05879763886332512, + 0.05233700945973396, + 0.032877836376428604, + 0.045310407876968384, + -0.01715720072388649, + -0.16276493668556213, + 0.08699086308479309, + 0.008158266544342041, + -0.05024104192852974, + -0.05530350282788277, + -0.033769287168979645, + -0.07243293523788452, + 0.029422737658023834, + 0.084808848798275, + 0.09230121225118637, + 0.0027448120526969433, + 0.03092769719660282, + -0.05559463053941727, + -0.08579757809638977, + -0.01602325215935707, + 0.009973653592169285, + -3.2904210116187e-33, + 0.08381471037864685, + 0.08420806378126144, + 0.010371441021561623, + 0.02270388975739479, + 0.09004586935043335, + 0.02005901373922825, + -0.07245156168937683, + -0.04438561573624611, + -0.042635124176740646, + 0.10849667340517044, + -0.012734558433294296, + 0.06942494213581085, + -0.06953325122594833, + 0.040928371250629425, + -0.0003145712544210255, + -0.04847273603081703, + 0.02521015889942646, + -0.03272225707769394, + -0.11279112100601196, + 0.005779997445642948, + 0.021797997877001762, + 0.0064049046486616135, + -0.0270675215870142, + -0.022410057485103607, + -0.005615099798887968, + -0.06726739555597305, + 0.03659963235259056, + 0.0007628714083693922, + -0.08709543943405151, + 0.03779369592666626, + 0.06775235384702682, + -0.013405561447143555, + -0.06635114550590515, + -0.016622981056571007, + 0.05121506750583649, + 0.05477897822856903, + -0.0028422630857676268, + -0.020906781777739525, + -0.013988452032208443, + 0.05542725697159767, + -0.07697265595197678, + -0.07381779700517654, + 0.05012821778655052, + -0.006456821691244841, + 0.01617123745381832, + 0.09621091187000275, + 0.022626634687185287, + -0.031294986605644226, + -0.04994957521557808, + 0.014599533751606941, + -0.00882610771805048, + 0.027398623526096344, + 0.0395851694047451, + -0.0408673919737339, + 0.0683453306555748, + 0.004235143307596445, + -0.005134741775691509, + 0.04937824234366417, + 0.015496290288865566, + 0.03248158097267151, + -0.004438497591763735, + 0.01878388784825802, + -0.0033709388226270676, + 0.019896019250154495, + -0.044989317655563354, + -0.0077254935167729855, + -0.06362476199865341, + 0.05215771868824959, + 0.10702638328075409, + -0.016464462503790855, + -0.006928111892193556, + 0.038789257407188416, + 0.07978107035160065, + 0.06262765824794769, + -0.009655316360294819, + 0.03372557461261749, + -0.049172889441251755, + -0.0831238254904747, + 0.08634940534830093, + -0.14898580312728882, + -0.11268971860408783, + 0.000681063742376864, + -0.08668030053377151, + 0.04743567854166031, + 0.1142243817448616, + 0.03011189214885235, + -0.04350201413035393, + -0.09345059841871262, + -0.09494107216596603, + 0.07862900197505951, + -0.08078539371490479, + -0.018549125641584396, + 0.000470038183266297, + -0.04294266179203987, + -0.05546337738633156, + 6.493818339736103e-34, + 0.031382154673337936, + 0.07470317929983139, + 0.007101479917764664, + -0.08312464505434036, + 0.0061438060365617275, + 0.02834811620414257, + 0.011150398291647434, + -0.006037319079041481, + 0.04099283739924431, + 0.06244023144245148, + -0.005116040352731943, + 0.027809301391243935, + -0.04452650621533394, + -0.046359769999980927, + 0.12680858373641968, + 0.009933292865753174, + 0.06870906054973602, + 0.03476159647107124, + 0.03936341032385826, + 0.044768884778022766, + 0.01819705218076706, + -0.013121487572789192, + -0.15306507050991058, + 0.1180010735988617, + -0.00024341860262211412, + 0.02745608054101467, + 0.0763816311955452, + 0.010261247865855694, + 0.04648970440030098, + -0.036848898977041245, + -0.004777484107762575, + -0.03136974945664406, + 0.006150015164166689, + 0.021037869155406952, + -0.03672059252858162, + 0.03615688905119896, + 0.02473095990717411, + -0.02782338485121727, + 0.043835315853357315, + -0.01973755657672882, + 0.04192233085632324, + 0.01890045590698719, + 0.08785104751586914, + 0.030862312763929367, + -0.013493664562702179, + -0.00887687224894762, + -0.03676586225628853, + -0.004045622888952494, + -0.0957438200712204, + -0.04738490656018257, + -0.03414415568113327, + -0.007405945099890232, + -0.019155854359269142, + 0.01665814220905304, + -0.030978035181760788, + -0.04968451336026192, + -0.038999687880277634, + 0.012699155136942863, + -0.0689636841416359, + 0.0024553455878049135, + 0.006607935298234224, + 0.06631438434123993, + 0.010990911163389683, + 0.06438347697257996, + 0.018554089590907097, + -0.05036305636167526, + -0.005632009357213974, + -0.04920945316553116, + -0.09932386130094528, + -0.0016866953810676932, + 0.01565023884177208, + 0.0049507226794958115, + 0.04091012477874756, + -0.021580770611763, + 0.027257844805717468, + -0.11749698966741562, + 0.0039061037823557854, + 0.03019237332046032, + 0.037504322826862335, + -0.044199537485837936, + 0.022123178467154503, + -0.06233467534184456, + -0.03894452005624771, + -0.009518940933048725, + -0.05603936314582825, + 0.02021535485982895, + 0.0011109852930530906, + 0.06198863685131073, + 0.03261135518550873, + -0.05215267464518547, + -0.022046659141778946, + 0.01949862390756607, + -0.04431699588894844, + -0.030996005982160568, + -0.028452424332499504, + -1.5204371095478564e-08, + -0.015564724802970886, + -0.00823178980499506, + -0.04196755215525627, + -0.05370223522186279, + 0.026434065774083138, + -0.011919694021344185, + -0.03815816715359688, + 0.039614543318748474, + -0.06451035290956497, + -0.026080166921019554, + 0.06653174012899399, + 0.08644625544548035, + -0.004507780075073242, + 0.050957951694726944, + 0.029073692858219147, + 0.04202685132622719, + -0.07153410464525223, + 0.06774789839982986, + -0.031198499724268913, + -0.0250654648989439, + -0.04889506474137306, + 0.019505700096488, + 0.035633351653814316, + 0.0390283465385437, + -0.03263372927904129, + -0.007507590111345053, + -0.06823442876338959, + -0.04938265308737755, + 0.06382308900356293, + 0.08147038519382477, + 0.0992286428809166, + 0.08368735015392303, + -0.008297843858599663, + 0.04271069914102554, + -0.10944432765245438, + -0.0006922075408510864, + 0.05502291023731232, + -0.01809348724782467, + 0.008037976920604706, + 0.04404895380139351, + -0.018700918182730675, + -0.04353265464305878, + 0.0013313069939613342, + 0.004936572629958391, + -0.06600672006607056, + -0.006666206289082766, + 0.031061330810189247, + -0.01645600236952305, + -0.10467663407325745, + -0.09103032201528549, + -0.029853807762265205, + 0.005621291231364012, + 0.0062951818108558655, + 0.10548467934131622, + -0.01129130832850933, + -0.023319726809859276, + 0.04415944963693619, + 0.027531679719686508, + -0.04830008000135422, + 0.037812672555446625, + 0.18711353838443756, + -0.002082008868455887, + 0.041214149445295334, + -8.603461174061522e-05 + ], + "ladder-simple-bold||stairs,steps,climbing": [ + -0.06579829007387161, + -0.005872893147170544, + -0.009529649280011654, + 0.00024593915441073477, + -0.021622762084007263, + -0.0002356935292482376, + -0.04784175381064415, + 0.02732226252555847, + -0.04197356477379799, + 0.05669490993022919, + -0.013043842278420925, + -0.0034403454046696424, + 0.06644320487976074, + -0.009447057731449604, + -0.005945722572505474, + 0.13367125391960144, + -0.06803495436906815, + 0.09595631808042526, + 0.00651010824367404, + 0.0052856989204883575, + -0.012046074494719505, + -0.04636678844690323, + 0.004114888608455658, + 0.08374034613370895, + -0.032787472009658813, + 0.0166813675314188, + 0.04694899544119835, + 0.05565396696329117, + 0.04748033732175827, + -0.09070629626512527, + -0.01970727927982807, + 0.015452047809958458, + -0.00048429504386149347, + 0.047717321664094925, + 0.03847210854291916, + 0.017682239413261414, + 0.025369569659233093, + -0.03533010929822922, + -0.019614987075328827, + 0.02321900613605976, + 0.027622750028967857, + -0.04704158008098602, + -0.014981882646679878, + 0.02213059738278389, + -0.053131651133298874, + 0.0002494998916517943, + -0.03151810169219971, + -0.08500982820987701, + -0.024452753365039825, + 0.022435827180743217, + -0.04431995376944542, + -0.030731264501810074, + -0.045076459646224976, + 0.010553753934800625, + 0.0308800358325243, + 0.08980266749858856, + -0.00712313549593091, + -0.04681624099612236, + 0.10142100602388382, + -0.022524496540427208, + 0.008542250841856003, + -0.029294772073626518, + -0.012068947777152061, + -0.0020140844862908125, + 0.0045658983290195465, + -0.007170160301029682, + -0.03412328660488129, + 0.007085747551172972, + 0.017343390733003616, + 0.06978361308574677, + 0.033005133271217346, + -0.05188493803143501, + 0.02787897363305092, + -0.01993018202483654, + -0.06261492520570755, + -0.016423281282186508, + 0.023756153881549835, + 0.01301442738622427, + -0.08072217553853989, + -0.02776358462870121, + -0.17322048544883728, + -0.05335351452231407, + -0.0637311190366745, + 0.014754191040992737, + 0.029145220294594765, + 0.047537632286548615, + -0.045870207250118256, + -0.03993027284741402, + -0.02270103245973587, + -0.01087239384651184, + -0.010601628571748734, + -0.040898460894823074, + 0.015673374757170677, + 0.0050041889771819115, + -0.010104160755872726, + -0.014506058767437935, + 0.04254631698131561, + -0.06423935294151306, + -0.07476875931024551, + 0.05237609148025513, + 0.0013741806615144014, + 0.07417748868465424, + 0.07294251769781113, + -0.013219824060797691, + -0.05191454663872719, + -0.06431502103805542, + 0.058033537119627, + 0.03872068598866463, + 0.03331153839826584, + 0.03697356954216957, + -0.029716776683926582, + -0.1622014045715332, + 0.08848506957292557, + 0.009557513520121574, + -0.03937473148107529, + -0.04641198739409447, + -0.04030374437570572, + -0.07847276329994202, + 0.029888058081269264, + 0.09318076819181442, + 0.0960569903254509, + 0.00818704254925251, + 0.025724289938807487, + -0.0495055727660656, + -0.0893363505601883, + -0.01638147234916687, + 0.01582810841500759, + -3.820027501754204e-33, + 0.09137196093797684, + 0.09193436056375504, + 0.00784583855420351, + 0.03606871888041496, + 0.0913085862994194, + 0.018470212817192078, + -0.08266204595565796, + -0.04900846630334854, + -0.03749949485063553, + 0.1076265424489975, + 0.016152242198586464, + 0.0567895844578743, + -0.0643945187330246, + 0.043899331241846085, + -0.006117694079875946, + -0.044879671186208725, + 0.038529835641384125, + -0.0265043992549181, + -0.10787611454725266, + -0.006519253831356764, + 0.013994967564940453, + 0.03070305846631527, + -0.01634558103978634, + -0.029248949140310287, + -0.0037863750476390123, + -0.06395168602466583, + 0.03533216565847397, + -0.0007398545858450234, + -0.09318213164806366, + 0.031362149864435196, + 0.0693790391087532, + -0.015158449299633503, + -0.0619448646903038, + -0.003959221299737692, + 0.042065467685461044, + 0.044835228472948074, + 0.02307998202741146, + -0.013437715359032154, + -0.01052173599600792, + 0.030675193294882774, + -0.08356577903032303, + -0.06532406061887741, + 0.06907165795564651, + -0.01641237922012806, + 0.022522125393152237, + 0.10373330116271973, + 0.01918439008295536, + -0.040905315428972244, + -0.040597062557935715, + 0.008238574489951134, + -0.020293081179261208, + 0.03650989755988121, + 0.03547409921884537, + -0.03031444363296032, + 0.07535703480243683, + 0.02204296737909317, + -0.008214084431529045, + 0.05269922688603401, + 0.018410000950098038, + 0.03288380801677704, + -0.003920269198715687, + 0.03541204333305359, + -0.018697885796427727, + 0.030937600880861282, + -0.042285047471523285, + 0.004678945057094097, + -0.07018234580755234, + 0.04578937217593193, + 0.0999068021774292, + -0.01879298686981201, + -0.006901408080011606, + 0.046785175800323486, + 0.0697648674249649, + 0.03542805835604668, + 0.012806758284568787, + 0.04743892699480057, + -0.023818083107471466, + -0.11005917191505432, + 0.08336346596479416, + -0.141093909740448, + -0.09990130364894867, + 0.004532224033027887, + -0.08695288002490997, + 0.054848458617925644, + 0.08651333302259445, + 0.02771233394742012, + -0.043995119631290436, + -0.06317812949419022, + -0.10025302320718765, + 0.07274004817008972, + -0.09328167140483856, + -0.012319195084273815, + 0.0050455741584300995, + -0.045508284121751785, + -0.04298434406518936, + 1.0527541898262168e-33, + 0.027432629838585854, + 0.06630820035934448, + 0.0012610461562871933, + -0.07464350014925003, + 0.0006996050360612571, + 0.0357842817902565, + 0.022737327963113785, + -0.014056417159736156, + 0.04758729785680771, + 0.07325851172208786, + -0.005662092939019203, + 0.02647385187447071, + -0.06469568610191345, + -0.040445804595947266, + 0.11987916380167007, + 0.017054036259651184, + 0.06381059437990189, + 0.05099768564105034, + 0.05259272828698158, + 0.039032258093357086, + 0.024893464520573616, + 0.0018521052552387118, + -0.16940167546272278, + 0.09966342151165009, + 0.006127229891717434, + 0.025091156363487244, + 0.05393179506063461, + 0.02169179357588291, + 0.04589110612869263, + -0.03312516212463379, + 0.0014577984111383557, + -0.043654125183820724, + 0.009824434295296669, + 0.009359884075820446, + -0.03912440314888954, + 0.032463669776916504, + 0.0008049134048633277, + -0.0229564867913723, + 0.04222901538014412, + -0.02324742265045643, + 0.031219566240906715, + 0.016462234780192375, + 0.09831102937459946, + 0.01061585359275341, + -0.002301570726558566, + -0.020474931225180626, + -0.027121787890791893, + -0.021218733862042427, + -0.10334360599517822, + -0.05990276485681534, + -0.04545668512582779, + -0.019753918051719666, + -0.023965971544384956, + 0.017549818381667137, + -0.021597011014819145, + -0.04572046175599098, + -0.017576223239302635, + 0.02087554521858692, + -0.06669425964355469, + 0.0029755444265902042, + -0.0031021758913993835, + 0.07763521373271942, + -0.013295297510921955, + 0.05946173518896103, + 0.012008368037641048, + -0.04646935313940048, + -0.0052525377832353115, + -0.061838410794734955, + -0.10138372331857681, + -0.0042337216436862946, + 0.009965098462998867, + 0.008501146920025349, + 0.05302968993782997, + -0.03555705025792122, + 0.031249428167939186, + -0.11774931848049164, + 0.0032826412934809923, + 0.0312742181122303, + 0.038292620331048965, + -0.06613779813051224, + 0.043362054973840714, + -0.06568332761526108, + -0.047704413533210754, + -0.02839597687125206, + -0.0476396307349205, + 0.015557002276182175, + 0.0033246043603867292, + 0.048447590321302414, + 0.03077078051865101, + -0.04778493195772171, + -0.03433588519692421, + 0.030076446011662483, + -0.021832074970006943, + -0.021232858300209045, + -0.034996289759874344, + -1.638603563947072e-08, + -0.01507983822375536, + -0.030253473669290543, + -0.0402497872710228, + -0.05285769701004028, + 0.028588421642780304, + -0.012599731795489788, + -0.02583865262567997, + 0.0342056006193161, + -0.06185562536120415, + -0.01859806850552559, + 0.06796260923147202, + 0.07458695769309998, + -0.013471570797264576, + 0.07331974804401398, + 0.004122833255678415, + 0.057890500873327255, + -0.07314174622297287, + 0.060881953686475754, + -0.020208124071359634, + -0.01830660179257393, + -0.04976968467235565, + 0.020687244832515717, + 0.023837409913539886, + 0.04060286283493042, + -0.029927384108304977, + -0.007698461879044771, + -0.0635279044508934, + -0.033773455768823624, + 0.06508409231901169, + 0.07652271538972855, + 0.09270486235618591, + 0.08172743767499924, + -0.007940503768622875, + 0.049660902470350266, + -0.1175609678030014, + 0.0016695831436663866, + 0.04183454066514969, + -0.017843864858150482, + -0.0033239603508263826, + 0.02919846773147583, + -0.017574379220604897, + -0.03163373842835426, + -0.002180688548833132, + -0.004249067045748234, + -0.06062782183289528, + -0.007073243148624897, + 0.027833513915538788, + -0.026126118376851082, + -0.09389691799879074, + -0.10121865570545197, + -0.027634186670184135, + 0.003473055548965931, + 0.018368791788816452, + 0.08869215846061707, + -0.013579672202467918, + -0.016787927597761154, + 0.048824165016412735, + 0.03978719934821129, + -0.05138130113482475, + 0.038551799952983856, + 0.19245891273021698, + 0.04001578688621521, + 0.03464363142848015, + -0.0023482192773371935 + ], + "lamp-bold||light,furniture,appliances": [ + 0.010815287008881569, + -0.009941251017153263, + -0.016221387311816216, + 0.009259927086532116, + 0.028301507234573364, + -0.008869586512446404, + 0.07231119275093079, + -0.07596538960933685, + -0.005489211529493332, + 0.04195692762732506, + 0.07086927443742752, + -0.03364388272166252, + 0.03322220966219902, + -0.012913300655782223, + 0.032270919531583786, + 0.03501265496015549, + 1.5049603462102823e-05, + -0.05578644201159477, + 0.011121440678834915, + 0.0504172258079052, + 0.048753850162029266, + 0.02508099563419819, + 0.002108210464939475, + -0.007620471529662609, + 0.05398993566632271, + 0.04703325778245926, + 0.016717595979571342, + 0.04343518987298012, + 0.010271894745528698, + -0.06053837016224861, + 0.05993330478668213, + 0.03005506657063961, + -0.03207102045416832, + 0.02169964462518692, + 0.027869073674082756, + 0.02564702183008194, + -0.07397416979074478, + -0.07499831169843674, + 0.027058517560362816, + 0.05846948176622391, + -0.056097958236932755, + -0.09733064472675323, + -0.014903419651091099, + -0.0045374431647360325, + -0.042652662843465805, + -0.06082846596837044, + -0.007874076254665852, + -0.06217543035745621, + -0.024525178596377373, + -0.08428098261356354, + -0.023609107360243797, + -0.04160340502858162, + -0.06009763479232788, + 0.07923568785190582, + 0.04351717606186867, + 0.04389528930187225, + -0.04908931255340576, + 0.03725394606590271, + 0.06633046269416809, + -0.014387654140591621, + 0.05218349024653435, + 0.04564892500638962, + 0.0789174884557724, + 0.0339379757642746, + -0.004807834513485432, + 0.03792477399110794, + -0.07574958354234695, + -0.02554880827665329, + -0.04735196754336357, + -0.014732154086232185, + -0.028749557211995125, + -0.01799904741346836, + 0.03683909773826599, + 0.011817826889455318, + -0.029277099296450615, + -0.006714927963912487, + 0.03536012023687363, + -0.08040770143270493, + -0.05291270092129707, + -0.042645037174224854, + -0.10457850247621536, + -0.04119863361120224, + -0.10459785163402557, + 0.08666955679655075, + 0.0325307659804821, + 0.04348888620734215, + 0.01875215955078602, + 0.007558720652014017, + -0.0718482956290245, + -0.03606367111206055, + -0.06835220009088516, + 0.006814433261752129, + 0.004405188839882612, + 0.019557978957891464, + -0.060914333909749985, + 0.005734327249228954, + 0.07703258842229843, + -0.024020502343773842, + -0.01889524981379509, + 0.08318821340799332, + 0.04952859506011009, + 0.03747275844216347, + 0.012360488064587116, + 0.03252851590514183, + -0.11311226338148117, + -0.07052148878574371, + -0.005473917815834284, + 0.056057535111904144, + -0.0037604586686939, + -0.06315401196479797, + 0.024696219712495804, + -0.07778295129537582, + -0.09238163381814957, + -0.019533053040504456, + -0.0706893727183342, + -0.10957982391119003, + 0.047565147280693054, + -0.04656422138214111, + 0.0988587886095047, + 0.053390998393297195, + 0.06008818373084068, + -0.01328260451555252, + -0.012179559096693993, + 0.01742069609463215, + 0.016344044357538223, + 0.04749397933483124, + 0.062219858169555664, + -2.8063482135172587e-33, + 0.026667600497603416, + 0.03527318313717842, + -0.022378602996468544, + -0.005634296219795942, + 0.03649184852838516, + 0.030195901170372963, + -0.005708278156816959, + 0.10309427231550217, + -0.0405588336288929, + 0.05780186131596565, + 0.11013638973236084, + 0.08661062270402908, + 0.00917214248329401, + 0.051809586584568024, + 0.027447635307908058, + -0.042586490511894226, + 0.07318589836359024, + -0.03174975514411926, + -0.0419001467525959, + -0.0007071231375448406, + -0.057683613151311874, + 0.08908025920391083, + 0.015765879303216934, + 0.010079102590680122, + -0.05094447731971741, + -0.0825129970908165, + -0.02427397109568119, + -0.014431980438530445, + -0.0583852082490921, + 0.027640540152788162, + 0.06195199117064476, + 0.061579618602991104, + 0.06197478249669075, + 0.006075368728488684, + -0.06817109137773514, + -0.003738438244909048, + -0.03556780144572258, + -0.0398799367249012, + 0.004013868980109692, + -0.012755615636706352, + -0.09808449447154999, + 0.052131615579128265, + 0.0387168750166893, + 0.08474696427583694, + 0.038749366998672485, + 0.1534806489944458, + -0.07532121241092682, + -0.011625227518379688, + 0.019865920767188072, + 0.004271178040653467, + -0.08544456958770752, + -0.008609775453805923, + 0.008875363506376743, + 0.07237330079078674, + 0.024022921919822693, + -0.006546214688569307, + -0.043653424829244614, + 0.041236311197280884, + 0.06988218426704407, + -0.07470075786113739, + 0.021569373086094856, + 0.018156979233026505, + 3.409666987863602e-06, + -0.06772936135530472, + -0.015060799196362495, + -0.02283981442451477, + 0.0218696016818285, + 0.08962153643369675, + 0.03198229894042015, + -0.03863389790058136, + -0.053458258509635925, + 0.04821357876062393, + 0.013869834132492542, + 0.03338591009378433, + 0.02330116555094719, + 0.013158764690160751, + -0.019791780039668083, + -0.02668405883014202, + 0.013621296733617783, + -0.06888218969106674, + -0.08432482182979584, + 0.03758830577135086, + -0.017291074618697166, + 0.027485735714435577, + 0.0015604528598487377, + 0.010544512420892715, + -0.0044969115406274796, + -0.05299179255962372, + -0.08477190881967545, + 0.06477104872465134, + -0.0011125127784907818, + 0.04825355112552643, + -0.019034484401345253, + -0.09292731434106827, + -0.1152430921792984, + 4.372112107106819e-34, + 0.05718444660305977, + -0.01956317014992237, + -0.10413025319576263, + 0.0003648166893981397, + 0.06577208638191223, + -0.00101634138263762, + -0.03771739453077316, + -0.03745461255311966, + -0.05395589396357536, + 0.024798693135380745, + 0.07000871002674103, + -0.0353311263024807, + -0.0740005150437355, + -0.08550943434238434, + 0.0030708624981343746, + 0.03663727268576622, + -0.03552699834108353, + 0.013124744407832623, + 0.026134656742215157, + 0.07891429960727692, + 0.0035290918312966824, + 0.04722590744495392, + -0.04348412901163101, + 0.02395767532289028, + -0.0764031708240509, + 0.04150211438536644, + 0.030208995565772057, + -0.01473834365606308, + -0.09872328490018845, + 0.008310538716614246, + -0.07692652940750122, + -0.049836527556180954, + 0.013750503771007061, + 0.04376344382762909, + -0.04982195049524307, + 0.06602628529071808, + 2.8823809770983644e-05, + -0.08985820412635803, + -0.04105217382311821, + 0.038697756826877594, + 0.05275300517678261, + 0.005159155000001192, + 0.05167417228221893, + 0.03943239152431488, + -0.09439212828874588, + -0.062417518347501755, + -0.08757742494344711, + -0.05608746036887169, + -0.001461586682125926, + 0.04910380393266678, + 0.04960326850414276, + -0.030709587037563324, + -0.023205339908599854, + -0.03717480227351189, + -0.06182119995355606, + -0.03361711651086807, + -0.023164693266153336, + -0.018753988668322563, + -0.0020633286330848932, + 0.10465561598539352, + 0.03405700996518135, + 0.05156700313091278, + -0.0019729554187506437, + 0.09766309708356857, + 0.0005863976548425853, + -0.000508339493535459, + 0.03495502099394798, + -0.009912515059113503, + 0.09239634871482849, + -0.04572061821818352, + 0.07508520781993866, + -0.005470734089612961, + -0.005592833738774061, + 0.01831335946917534, + 0.027768228203058243, + -0.0511803925037384, + 0.05529535934329033, + 0.03338725492358208, + 0.012915723957121372, + 0.018872564658522606, + 0.010470378212630749, + 0.01715010032057762, + -0.02742435596883297, + 0.032143209129571915, + -0.011426001787185669, + -0.08662065118551254, + -0.04197114706039429, + -0.021729514002799988, + -0.03784584254026413, + -0.01581684872508049, + -0.0629572942852974, + 0.11076565086841583, + -0.044846151024103165, + -0.05265525355935097, + 0.035239480435848236, + -1.7004323282776568e-08, + -0.03891168162226677, + -0.01643076166510582, + -0.03410279378294945, + -0.027188865467905998, + 0.046789899468421936, + -0.09996956586837769, + 0.0436495877802372, + -0.03481757640838623, + -0.06754927337169647, + -0.03517153859138489, + 0.08935483545064926, + -0.007950756698846817, + 0.02314099110662937, + 0.03672481328248978, + 0.04191593453288078, + 0.028944596648216248, + -0.035376355051994324, + 0.03722573071718216, + -0.03553781285881996, + 0.01553307194262743, + -0.016294656321406364, + 0.006503453943878412, + 0.038791827857494354, + -0.052528880536556244, + 0.06053134426474571, + 0.04109933227300644, + -0.06421869993209839, + 0.03795628249645233, + 0.05608072131872177, + 0.114133320748806, + 0.07184659689664841, + 0.02895280346274376, + 0.043066881597042084, + 0.012747428379952908, + -0.05567717179656029, + -0.0035672346130013466, + -0.1265319585800171, + -0.07873442769050598, + -0.05552547797560692, + 0.04360959678888321, + -0.04754414036870003, + -0.07954555749893188, + -0.07980139553546906, + -0.0036843193229287863, + 0.042480047792196274, + -0.03642626106739044, + 0.02492571622133255, + -0.03947868570685387, + -0.05170754715800285, + 0.01224853191524744, + -0.0009631431312300265, + -0.05435110628604889, + 0.04861554875969887, + 0.024176618084311485, + -0.0519232340157032, + -0.09234333783388138, + 0.08727730065584183, + 0.09340686351060867, + -0.03426056355237961, + -0.001872858963906765, + 0.14874999225139618, + 0.04008983075618744, + 0.019529500976204872, + -0.007581925485283136 + ], + "lamp-pendant-bold||*new*,light,furniture,appliances": [ + 0.014419827610254288, + 0.02036745473742485, + -0.018108434975147247, + 0.007694462314248085, + 0.01219091098755598, + -0.023442495614290237, + 0.03811418637633324, + -0.0860113799571991, + 0.002696939744055271, + 0.03696869686245918, + 0.06565283238887787, + -0.010282065719366074, + -0.006684141233563423, + -0.023763077333569527, + 0.05591437220573425, + 0.04040825739502907, + -0.01822616159915924, + -0.024977751076221466, + -0.006446535233408213, + 0.04867178201675415, + 0.04146644100546837, + 0.012966537848114967, + 0.0019120106007903814, + 0.017132623121142387, + 0.05643628537654877, + 0.01619623228907585, + 0.03970160335302353, + 0.019915856420993805, + 0.03474970906972885, + -0.0546969398856163, + 0.028839020058512688, + 0.0686652734875679, + -0.033740174025297165, + 0.018979310989379883, + 0.002342918189242482, + 0.02050582319498062, + -0.043727755546569824, + -0.031945906579494476, + 0.010517577640712261, + 0.030606698244810104, + -0.05157605558633804, + -0.09211397916078568, + -0.027553504332900047, + 0.013519727624952793, + -0.02974420227110386, + -0.05752972140908241, + 0.005088400561362505, + -0.029390450567007065, + -0.031025445088744164, + -0.06550170481204987, + 0.03605120629072189, + -0.05603625625371933, + -0.059978287667036057, + 0.05719013512134552, + 0.04378936439752579, + 0.07202103734016418, + -0.03628646582365036, + 0.003934946842491627, + 0.0694432407617569, + -0.019657164812088013, + 0.07728839665651321, + 0.05305595323443413, + 0.05717168748378754, + 0.03272353485226631, + -0.05188726633787155, + 0.011808425188064575, + -0.06346188485622406, + -0.004727007355540991, + -0.0672190934419632, + -0.015085482969880104, + -0.003784458851441741, + -0.0370669960975647, + 0.01214204914867878, + 0.012318572960793972, + -0.004413275048136711, + -0.029499828815460205, + 0.03717971593141556, + -0.05257733166217804, + -0.08267398178577423, + 0.007319919299334288, + -0.06453552097082138, + -0.01299811340868473, + -0.0855378732085228, + 0.07289795577526093, + 0.022534547373652458, + 0.06890349090099335, + -0.02045452408492565, + 0.02036954276263714, + -0.1024760976433754, + -0.06393513828516006, + -0.04575841501355171, + 0.01902349293231964, + -0.053473614156246185, + -0.009423640556633472, + -0.08851026743650436, + 0.030612437054514885, + 0.03561584651470184, + -0.03709414228796959, + -0.03782116621732712, + 0.0900721475481987, + 0.03578941896557808, + 0.05324919521808624, + 0.024772122502326965, + 0.06646896153688431, + -0.08023867756128311, + -0.02618788182735443, + -0.01485343649983406, + 0.07769730687141418, + 0.026733165606856346, + -0.021785199642181396, + 0.023370929062366486, + -0.05697905272245407, + -0.08768752962350845, + -0.04437264800071716, + -0.07885567843914032, + -0.07088633626699448, + 0.007544651627540588, + -0.023988239467144012, + 0.08769886940717697, + 0.11798316240310669, + 0.09329238533973694, + -0.0008079790859483182, + -0.022774595767259598, + 0.012244016863405704, + -0.04075266048312187, + 0.02867252379655838, + 0.04079516604542732, + -3.266393539745908e-33, + 0.013543311506509781, + 0.10014714300632477, + 0.011666899546980858, + 0.02089027315378189, + 0.0408882200717926, + -0.013304481282830238, + -0.0069253104738891125, + 0.08697201311588287, + -0.02696363627910614, + 0.04065200313925743, + 0.09273236989974976, + 0.042596541345119476, + 0.014584643766283989, + 0.03281993418931961, + 0.04240741208195686, + -0.06876224279403687, + 0.07365283370018005, + -0.04623338580131531, + -0.008619205094873905, + -0.014844216406345367, + -0.07921154797077179, + 0.06800094991922379, + 0.024470815435051918, + 0.021828668192029, + -0.02677750773727894, + -0.06574543565511703, + 0.014660632237792015, + 0.014731897041201591, + -0.06120889261364937, + 0.01905979961156845, + 0.04640084132552147, + 0.03680885210633278, + 0.10206283628940582, + 0.03587450832128525, + -0.0679316595196724, + 0.011330896057188511, + -0.009316622279584408, + -0.04345119744539261, + 0.01194537803530693, + -0.03345692530274391, + -0.07383400201797485, + 0.04038655012845993, + 0.02086857706308365, + 0.10221897810697556, + 0.03135088086128235, + 0.08481483161449432, + -0.05071062967181206, + -0.020069735124707222, + 0.02013583481311798, + 0.016392022371292114, + -0.08759203553199768, + 0.007071171421557665, + -0.025622913613915443, + 0.08268632739782333, + -0.008331197313964367, + -0.04748132452368736, + -0.06519115716218948, + 0.03643194958567619, + 0.07191617041826248, + -0.13767856359481812, + 0.03075386956334114, + -0.0009458812419325113, + -0.021980663761496544, + -0.008269483223557472, + -0.014137360267341137, + -0.003143101232126355, + -0.005213409662246704, + 0.04309466481208801, + 0.0088820680975914, + -0.0655888020992279, + -0.09807047247886658, + 0.06246396526694298, + -0.008620812557637691, + 0.059646978974342346, + 0.014085798524320126, + 0.025677639991044998, + -0.013035733252763748, + 0.01258596871048212, + 0.07064612209796906, + -0.06297575682401657, + -0.11351898312568665, + 0.06482616066932678, + -0.017368178814649582, + 0.0753651037812233, + 0.05303221568465233, + -0.03569689393043518, + 0.04973543435335159, + -0.057542648166418076, + -0.08332547545433044, + 0.047518156468868256, + -0.006359370891004801, + 0.06548579782247543, + -0.026587877422571182, + -0.07114697992801666, + -0.0545831061899662, + 5.111166986810388e-34, + 0.04102126136422157, + -0.011360636912286282, + -0.0568024180829525, + -0.018108630552887917, + 0.0541086383163929, + -0.02971898764371872, + -0.0918794497847557, + -0.028244810178875923, + -0.05471709743142128, + 0.0024039025884121656, + 0.06618442386388779, + -0.008345186710357666, + -0.06529708951711655, + -0.08098221570253372, + 0.02242981269955635, + 0.013911455869674683, + -0.008356662467122078, + 0.04298632964491844, + 0.033787745982408524, + 0.08243066817522049, + 0.042336057871580124, + 0.07800240069627762, + -0.07316280901432037, + -0.07351779192686081, + -0.08126398921012878, + 0.006646624766290188, + 0.06741351634263992, + -0.028122005984187126, + -0.062408387660980225, + -0.018154282122850418, + -0.06623551994562149, + -0.04902701452374458, + 0.03809550777077675, + 0.08809345215559006, + -0.02840115875005722, + 0.05114447697997093, + 0.037954702973365784, + -0.10455012321472168, + -0.04497865214943886, + 0.03647933155298233, + 0.04689627140760422, + 0.005190207157284021, + 0.044487953186035156, + 0.037926800549030304, + -0.07092410326004028, + -0.12753133475780487, + -0.09472388029098511, + -0.05090053379535675, + 0.0205802321434021, + 0.004829243756830692, + 0.06159010902047157, + -0.02706608921289444, + -0.004995851311832666, + -0.04262833669781685, + -0.05659625306725502, + -0.015279765240848064, + 0.0009530506213195622, + -0.01913655921816826, + 0.03843463212251663, + 0.0597103051841259, + 0.024767020717263222, + 0.07524368166923523, + -0.00792586151510477, + 0.08928491175174713, + 0.046681374311447144, + 0.007652631960809231, + 0.019652342423796654, + -0.005153608042746782, + 0.010364512912929058, + 0.000760386697947979, + 0.018467839807271957, + 0.045154716819524765, + -0.046026017516851425, + 0.017386067658662796, + 0.021374911069869995, + -0.09179031103849411, + 0.03385539725422859, + -0.012859784997999668, + 0.0203982163220644, + -0.000678132870234549, + 0.004034063313156366, + -0.002727643121033907, + -0.03651579096913338, + -0.013388670049607754, + 0.013543466106057167, + -0.1398085057735443, + -0.023481760174036026, + -0.01256623212248087, + -0.056848179548978806, + -0.013661189936101437, + -0.07221318036317825, + 0.09210426360368729, + -0.05558966472744942, + -0.01382527407258749, + 0.03177240490913391, + -2.0531244260268977e-08, + -0.036929722875356674, + 0.014942743815481663, + -0.10185907036066055, + -0.06921220570802689, + 0.0659259781241417, + -0.07695754617452621, + 0.004556700587272644, + -0.07314321398735046, + -0.07473395764827728, + -0.06572079658508301, + 0.0935204029083252, + 0.02495306171476841, + 0.03386087343096733, + 0.01924503594636917, + 0.03889801725745201, + 0.000415492249885574, + -0.005430601071566343, + -0.006643586326390505, + -0.03635731711983681, + 0.00892544537782669, + 0.01923380047082901, + 0.04052594304084778, + 0.0402035228908062, + -0.08751719444990158, + 0.03140292316675186, + 0.016869522631168365, + -0.0385962538421154, + 0.04178454726934433, + 0.02187015675008297, + 0.1086287721991539, + 0.059362392872571945, + 0.04482138901948929, + 0.056423112750053406, + 0.03939815238118172, + -0.08282098174095154, + -0.021652352064847946, + -0.1363597810268402, + -0.06658834964036942, + -0.03985387086868286, + 0.01836644858121872, + -0.023388978093862534, + -0.08522596210241318, + -0.09973374754190445, + 0.012022801674902439, + 0.03153768926858902, + -0.055700309574604034, + 0.06698630005121231, + -0.034896839410066605, + -0.04926280304789543, + -0.007834849879145622, + 0.015039878897368908, + -0.06465277820825577, + 0.055767811834812164, + -0.014454671181738377, + -0.06791088730096817, + -0.03391660749912262, + 0.11245154589414597, + 0.11059441417455673, + -0.02018154412508011, + -0.029334314167499542, + 0.10868769139051437, + 0.01802833192050457, + 0.026181858032941818, + -0.007255053613334894 + ], + "laptop-bold||computer,notebook,pc,macbook": [ + 0.012035761028528214, + -0.043606095016002655, + -0.018510406836867332, + 0.0025206294376403093, + 0.06773138046264648, + -0.0023534514475613832, + -0.002777120331302285, + -0.042396485805511475, + 0.06771357357501984, + -0.04693669080734253, + 0.05248737335205078, + 0.0318569615483284, + 0.06527108699083328, + -0.040218230336904526, + 0.07401909679174423, + -0.0029228017665445805, + -0.0026269194204360247, + -0.02350785955786705, + 0.04374198988080025, + 0.017100412398576736, + 0.03208031505346298, + 0.022201066836714745, + 0.013934261165559292, + -0.011591563932597637, + 0.05160006508231163, + -0.027161022648215294, + 0.13444706797599792, + 0.0032496179919689894, + -0.0733381137251854, + -0.027183858677744865, + -0.03164708986878395, + -0.023160303011536598, + 0.05538935959339142, + 0.07771629840135574, + 0.05669873207807541, + -0.07035024464130402, + -0.00883136224001646, + -0.007888324558734894, + -0.0047447350807487965, + -0.05946693569421768, + -0.007094494998455048, + -0.07896415144205093, + 0.09114601463079453, + 0.040222443640232086, + 0.020350350067019463, + -0.049714550375938416, + -0.05001085251569748, + -0.007102828938513994, + 0.05536743253469467, + -0.04149153083562851, + 0.01428768876940012, + -0.0735965222120285, + -0.11271851509809494, + 0.020339416339993477, + -0.03291166201233864, + 0.023838892579078674, + -0.011055869981646538, + 0.015257845632731915, + 0.08293789625167847, + -0.013796688057482243, + -0.004544956609606743, + -0.024683985859155655, + 0.038485296070575714, + 0.02346893399953842, + 0.011411911807954311, + -0.052011698484420776, + 0.0198124460875988, + 0.01686885580420494, + -0.038386885076761246, + 0.03638819232583046, + 0.08515617251396179, + 0.001178344595246017, + 0.012960593216121197, + 0.012577148154377937, + -0.0932268425822258, + -0.005327801685780287, + -0.0008213258115574718, + 0.006034321617335081, + -0.024677325040102005, + -0.013672910630702972, + -0.09359073638916016, + -0.0066035445779562, + -0.038759637624025345, + 0.06293327361345291, + 0.08110702037811279, + 0.012268152087926865, + -0.12299516052007675, + -0.07490216940641403, + -0.11041459441184998, + -0.01874711364507675, + -0.027746103703975677, + -0.08512704074382782, + 0.015322594903409481, + 0.017734846100211143, + -0.14977873861789703, + -0.06863313168287277, + 0.12887658178806305, + -0.007518496830016375, + -0.013176856562495232, + 0.06630896031856537, + -0.004845323506742716, + 0.01753855124115944, + 0.11960189789533615, + -0.014657829888164997, + -0.040784917771816254, + -0.029782040044665337, + 0.028359971940517426, + -0.015367826446890831, + -0.009009956382215023, + -0.024937406182289124, + -0.014282233081758022, + -0.1141766607761383, + -0.07891348004341125, + -0.018928997218608856, + -0.030922584235668182, + -0.011551338247954845, + -0.015735069289803505, + 0.028847217559814453, + 0.11654852330684662, + 0.06420614570379257, + -0.06425370275974274, + -0.054513510316610336, + 0.03166837990283966, + -0.06096893921494484, + 0.05914517864584923, + 0.01962609775364399, + 0.009925215505063534, + -1.8016898342324167e-34, + 0.06565667688846588, + 0.0002491334453225136, + -0.01790446788072586, + 0.06387312710285187, + 0.024446699768304825, + 0.008753505535423756, + -0.050828367471694946, + -0.08226985484361649, + -0.05480546876788139, + 0.028650755062699318, + 0.05605600029230118, + 0.052238792181015015, + -0.016036557033658028, + 0.03590558096766472, + 0.035612594336271286, + -0.037039607763290405, + 0.030935198068618774, + -0.016179271042346954, + -0.10027341544628143, + 0.02089836820960045, + -0.01481201034039259, + 0.04330528900027275, + 0.023572323843836784, + -0.08503410220146179, + -0.048073910176754, + -0.0150850098580122, + -0.02427060715854168, + 0.010111905634403229, + -0.024299902841448784, + 0.042475804686546326, + 0.020295163616538048, + 0.037735309451818466, + -0.008899026550352573, + -0.06941406428813934, + -0.09463442116975784, + -0.009356357157230377, + -0.014886287972331047, + -0.036742307245731354, + 0.0626167356967926, + 0.03681447356939316, + -0.13571690022945404, + 0.008802398107945919, + 0.016332723200321198, + -0.0946650356054306, + 0.06270088255405426, + 0.14828239381313324, + -0.02383248880505562, + 0.0020082006230950356, + -0.036981455981731415, + 0.04533633962273598, + -0.029416987672448158, + -0.04871046543121338, + 0.07759474217891693, + 0.014987092465162277, + -0.030810894444584846, + 0.002703414997085929, + 0.03901879861950874, + 0.048827145248651505, + 0.07456250488758087, + 0.025356844067573547, + 0.029624760150909424, + 0.03298978880047798, + 0.04889915883541107, + -0.003869804320856929, + -0.02501744031906128, + 0.10051281005144119, + 0.07299404591321945, + 0.03604273498058319, + -0.010553093627095222, + -0.023769181221723557, + 0.015246251598000526, + -0.010477889329195023, + 0.02914435602724552, + 0.00956954900175333, + -0.023265432566404343, + -0.005048464983701706, + -0.08365771919488907, + 0.014789257198572159, + -0.057668160647153854, + -0.06324654817581177, + -0.08655134588479996, + 0.001731939846649766, + -0.04433772712945938, + 0.0650160163640976, + -0.01074199192225933, + 0.08527210354804993, + -0.06553585082292557, + -0.059919290244579315, + -0.02421184442937374, + 0.0819891020655632, + -0.03553609177470207, + 0.04686589166522026, + -0.043295346200466156, + -0.037391502410173416, + -0.09354200214147568, + -2.4571479638093204e-33, + 0.013545319437980652, + 0.007425311952829361, + -0.03757813572883606, + -0.02796565741300583, + -0.02731701359152794, + 0.041291382163763046, + 0.03179064393043518, + -0.00818734709173441, + -0.0594351552426815, + -0.01258971355855465, + 0.08881537616252899, + 0.019847234711050987, + -0.08039718866348267, + -0.06469599157571793, + 0.022482039406895638, + 0.07585402578115463, + 0.0001362818875350058, + 0.10808458179235458, + -0.04017753154039383, + -0.023142991587519646, + -0.08653993159532547, + -0.1007133424282074, + -0.012948919087648392, + 0.038977958261966705, + 0.0567370280623436, + 0.0006244687247090042, + -0.06010953336954117, + 0.010285346768796444, + -0.009542876854538918, + 0.01639142818748951, + -0.04090861231088638, + 0.05688293278217316, + 0.020944006741046906, + 0.06548672169446945, + 0.02907148189842701, + -0.024057531729340553, + -0.03853817284107208, + -0.05222181975841522, + 0.02435246668756008, + 0.028313221409916878, + 0.050177089869976044, + 0.06298453360795975, + -0.023297008126974106, + 0.04523438587784767, + -0.020678840577602386, + -0.009191078133881092, + -0.056586313992738724, + -0.08111561089754105, + 0.022646425291895866, + -0.025207770988345146, + 0.0538829043507576, + -0.03848261758685112, + 0.001967004965990782, + -0.03059295564889908, + -0.05711999163031578, + -0.05021213740110397, + 0.0013625947758555412, + 0.062247443944215775, + -0.0007139691733755171, + 0.03626585751771927, + -0.037874385714530945, + -0.02953942120075226, + -0.041168294847011566, + -0.02361367456614971, + -0.004660297650843859, + -0.05144554004073143, + 0.057713478803634644, + 0.06715460866689682, + 0.048398371785879135, + -0.02841218374669552, + 0.012878775596618652, + 0.0018628512043505907, + 0.029028993099927902, + 0.03818131983280182, + 0.0031786111649125814, + -0.01977449283003807, + 0.04082230105996132, + -0.001946017611771822, + -0.019731415435671806, + 0.03675902634859085, + 0.04279199242591858, + 0.03087504766881466, + -0.06492293626070023, + 0.038059793412685394, + -0.07405485957860947, + 0.0034886293578892946, + 0.01901399902999401, + 0.014609551057219505, + -0.019747624173760414, + -0.016532115638256073, + -0.018642406910657883, + 0.025477148592472076, + 0.022409025579690933, + -0.027980122715234756, + -0.1312224119901657, + -1.8053910366688797e-08, + -0.053340647369623184, + -0.04755255952477455, + 0.014661004766821861, + 0.03058621473610401, + -0.035643283277750015, + -0.04588727653026581, + 0.009655717760324478, + -0.0642407089471817, + 0.034422870725393295, + 0.030347630381584167, + 0.028553087264299393, + -0.05076085403561592, + -0.03871893510222435, + 0.010497133247554302, + 0.02941899374127388, + 0.05945771560072899, + -0.03545910492539406, + 0.11560317128896713, + -0.008249083533883095, + -0.01764984428882599, + -0.015757111832499504, + 0.05223710089921951, + 0.06609466671943665, + 0.06228719651699066, + 0.05050787702202797, + 0.014854059554636478, + -0.08372674882411957, + 0.01671152003109455, + 0.06782068312168121, + 0.08193539083003998, + -0.04670175909996033, + 0.027799377217888832, + -0.04923998937010765, + 0.05104243382811546, + -0.04142305627465248, + -0.044712819159030914, + -0.011744587682187557, + 0.014288336038589478, + 0.0774022564291954, + 0.12196559458971024, + -0.09846232086420059, + -0.12248007953166962, + -0.08777979761362076, + -0.04855974763631821, + 0.03166995197534561, + -0.019709283486008644, + 0.0244174562394619, + -0.012114059180021286, + -0.11201094835996628, + -0.04999738186597824, + 0.010957103222608566, + 0.033467765897512436, + 0.044140227138996124, + 0.05978149548172951, + -0.06963717192411423, + -0.08930705487728119, + -0.017767541110515594, + 0.06980178505182266, + -0.013134893961250782, + 0.00243499712087214, + 0.16095376014709473, + 0.00024790121824480593, + 0.02022922970354557, + 0.009848274290561676 + ], + "lasso-bold||*new*,select,selection,loop,rope,cowboy": [ + -0.01899593509733677, + -0.08986732363700867, + -0.03079688921570778, + 0.09537289291620255, + 0.06321767717599869, + -0.003066764445975423, + 0.06523660570383072, + -0.04709933325648308, + -0.039036694914102554, + 0.04635274410247803, + 0.06976203620433807, + 0.055860165506601334, + -0.035171061754226685, + -0.05022541061043739, + -0.0025039375759661198, + 0.16234223544597626, + 0.03917469084262848, + 0.02299230359494686, + -0.017888257279992104, + -0.0017130061751231551, + 0.010220891796052456, + 0.07171018421649933, + -0.009946225211024284, + 0.06590583175420761, + 0.01377864833921194, + -0.04123510420322418, + 0.0575810931622982, + 0.04152185469865799, + 0.017333563417196274, + -0.07009680569171906, + -0.08073881268501282, + 0.015399621799588203, + 0.08629106730222702, + -0.030202677473425865, + 0.03476712480187416, + 0.011782716028392315, + -0.019124697893857956, + -0.03215331584215164, + 0.004986705724149942, + 0.07041062414646149, + 0.00300391111522913, + -0.07206150144338608, + -0.046081844717264175, + 0.01752929948270321, + 0.041884392499923706, + -0.059973664581775665, + -0.046548992395401, + 0.011582447215914726, + 0.10439126938581467, + -0.018102137371897697, + -0.007963688112795353, + -0.09943331032991409, + -0.07518913596868515, + -0.004550511483103037, + -0.0019514368614181876, + -0.034064773470163345, + -0.08810112625360489, + -0.09173677861690521, + 0.008472038432955742, + -0.03543592989444733, + 0.04600102826952934, + -0.002989039523527026, + -0.012174965813755989, + 0.08538326621055603, + 0.08178859204053879, + 0.022410547360777855, + -0.012460014782845974, + -0.012998486869037151, + 0.012246478348970413, + 0.024377349764108658, + -0.03517158329486847, + -0.0041908929124474525, + -0.0645667240023613, + 0.046446382999420166, + 0.008344350382685661, + 0.006612625904381275, + 0.11992785334587097, + 0.01721837930381298, + 0.06264612823724747, + 0.01722627878189087, + -0.07584130764007568, + -0.003838928649201989, + 0.009594655595719814, + -0.06444982439279556, + 0.05644959211349487, + 0.06400477886199951, + -0.05631602182984352, + -0.06143257021903992, + 0.04770534113049507, + -0.030444905161857605, + -0.06832815706729889, + -0.004803486634045839, + -0.08057358860969543, + -0.0017066390719264746, + -0.12848033010959625, + 0.019277725368738174, + 0.019934045150876045, + -0.03155653551220894, + -0.020204607397317886, + 0.10557491332292557, + 0.027890054509043694, + -0.08006329834461212, + 0.007025500759482384, + 0.04357515648007393, + -0.01728103496134281, + -0.019735367968678474, + 0.03448684886097908, + 0.047176577150821686, + -0.015255892649292946, + -0.04549676179885864, + 0.0039020951371639967, + 0.004160142038017511, + 0.06801697611808777, + 0.014268559403717518, + -0.0025567691773176193, + -0.006681959610432386, + -0.007394782267510891, + 0.06076257675886154, + 0.04449531435966492, + 0.04929669573903084, + 0.09423612058162689, + -0.01952402852475643, + 0.043359674513339996, + -0.053752005100250244, + -0.0356907956302166, + 0.008613873273134232, + -0.005628537852317095, + -1.5338524362071007e-33, + 0.04703805595636368, + 0.002755032619461417, + 0.00838860310614109, + 0.014507582411170006, + -0.051244501024484634, + 0.0380995012819767, + -0.10696642845869064, + -0.027592971920967102, + -0.053400568664073944, + 0.049320288002491, + -0.0012023072922602296, + -0.03882736340165138, + 0.008573472499847412, + 0.0508783720433712, + 0.0711141899228096, + -0.04825471341609955, + 0.03435606136918068, + 0.018316667526960373, + 0.005540825426578522, + -0.016131509095430374, + -0.07511215656995773, + 0.06142549216747284, + 0.012698959559202194, + -0.06983496993780136, + -0.08402781188488007, + -0.015846190974116325, + 0.05206163972616196, + -0.062025342136621475, + -0.09541758894920349, + 0.03625880926847458, + -0.050873298197984695, + -1.0722508704930078e-05, + 0.03174193203449249, + 0.055598996579647064, + -0.008930128999054432, + 0.041719015687704086, + 0.006705143488943577, + -0.04423628747463226, + 0.05507133901119232, + 0.11824578791856766, + -0.011477818712592125, + -0.0020904119592159986, + 0.03674449026584625, + -0.05408994480967522, + -0.03418299928307533, + 0.018593985587358475, + 0.02272186614573002, + 0.031295545399188995, + -0.08100155740976334, + 0.03922097757458687, + -0.03307729586958885, + 0.02540598250925541, + 0.02081049606204033, + 0.04655693471431732, + -0.018366435542702675, + -0.0016163537511602044, + -0.007539867889136076, + 0.02359405718743801, + 0.017756633460521698, + 0.016711657866835594, + -0.014431350864470005, + -0.020127512514591217, + -0.005953512620180845, + -0.06421578675508499, + -0.05858461558818817, + 0.018196461722254753, + 0.008819296024739742, + 0.0243766438215971, + 0.043550554662942886, + 0.0037114114966243505, + -0.015993457287549973, + 0.07110970467329025, + -0.008757324889302254, + -0.0010741397272795439, + 0.04249074310064316, + -0.03661249950528145, + 0.11043338477611542, + 0.012325156480073929, + 0.0857352539896965, + -0.11061743646860123, + -0.09599186480045319, + -0.019068961963057518, + -0.07777797430753708, + 0.08901392668485641, + -0.02172793820500374, + 0.05878104269504547, + 0.05213696509599686, + -0.09761922806501389, + 0.025446061044931412, + -0.0528705008327961, + -0.0943574532866478, + 0.057626329362392426, + -0.009896802715957165, + -0.08145786821842194, + 0.076462022960186, + -8.526924899914522e-34, + 0.08756492286920547, + 0.033694785088300705, + 0.03092467412352562, + -0.011265741661190987, + 0.014012410305440426, + -0.00949507299810648, + -0.001754959113895893, + -0.03314954787492752, + -0.03176674246788025, + -0.08001850545406342, + 0.051885612308979034, + 0.003743640147149563, + -0.07615522295236588, + -0.0537729412317276, + 0.1273268759250641, + 0.0480177216231823, + -0.09941752254962921, + -0.028368886560201645, + -0.06529238820075989, + 0.007848908193409443, + -0.030137309804558754, + 0.0054505011066794395, + -0.058447107672691345, + -0.008810948580503464, + 0.011314869858324528, + -0.04679250344634056, + -0.040413692593574524, + 0.006877332925796509, + 0.017476223409175873, + -0.00922622811049223, + -0.031916189938783646, + -0.024567682296037674, + -0.00035039952490478754, + 0.0761740654706955, + -0.03749043866991997, + 0.10189655423164368, + 0.03541313111782074, + 0.003881663316860795, + -0.021449485793709755, + 0.059429824352264404, + 0.014595446176826954, + 0.003206932218745351, + -0.01461850292980671, + 0.0008995737298391759, + -0.042323194444179535, + -0.002089866902679205, + -0.04278441518545151, + -0.057900313287973404, + -0.04161705821752548, + 0.05425064638257027, + 0.01957160234451294, + -0.001042059389874339, + -0.05587594211101532, + 0.04762864112854004, + -0.10079768300056458, + -0.030819369480013847, + 0.007010592147707939, + -0.028144681826233864, + -0.012499077245593071, + 0.046722520142793655, + -0.07333933562040329, + 0.02642900124192238, + -0.0391315259039402, + 0.018957775086164474, + 0.1233583465218544, + -0.1018819734454155, + 0.05845823884010315, + -0.03695925697684288, + -0.07672613859176636, + -0.03572183847427368, + 0.043519098311662674, + -0.0379774235188961, + -0.0017128835897892714, + -0.008935281075537205, + 0.04376363754272461, + -0.052448570728302, + -0.03463388606905937, + -0.0360274501144886, + 0.0018275806214660406, + 0.0702495202422142, + 0.014974216930568218, + -0.007696670945733786, + 0.05398614704608917, + 0.043280795216560364, + -0.059343304485082626, + 0.11935227364301682, + 0.01923118531703949, + 0.04167206212878227, + 0.01907101832330227, + -0.08336089551448822, + 0.01756979525089264, + 0.0012834187364205718, + 0.005218136589974165, + 0.0017092319903895259, + -0.03277626633644104, + -2.1518996362601683e-08, + -0.0816367045044899, + 0.011575032025575638, + -0.08923827111721039, + -0.015419929288327694, + 0.06663720309734344, + 0.019263703376054764, + -0.06451483070850372, + -0.01956947334110737, + -0.01135411486029625, + -0.01774105429649353, + 0.06200050935149193, + 0.07888548076152802, + -0.01264269556850195, + 0.02173830196261406, + -0.059529852122068405, + -0.03366896137595177, + -0.05989392101764679, + 0.10038817673921585, + -0.013844117522239685, + -0.021143192425370216, + -0.04083496704697609, + 0.03784710913896561, + -0.011141865514218807, + -0.05464375764131546, + 0.024703074246644974, + -0.0984184592962265, + -0.08727065473794937, + 0.039001528173685074, + 0.1103605329990387, + 0.11962874978780746, + 0.024188481271266937, + 0.033465441316366196, + 0.02166345901787281, + 0.024637578055262566, + -0.046332404017448425, + 0.038500647991895676, + -0.07507666200399399, + 0.001323282951489091, + -0.03237195685505867, + 0.12493681907653809, + -0.050669413059949875, + 0.013514414429664612, + 0.0028813108801841736, + -0.036764681339263916, + -0.052754487842321396, + -0.03638878092169762, + 0.07150215655565262, + -0.112219899892807, + 0.006498773116618395, + -0.07734134048223495, + 0.029173469170928, + -0.05306202918291092, + 0.07838140428066254, + 0.027555357664823532, + 0.03354622423648834, + -0.013284938409924507, + 0.013738630339503288, + 0.06709694117307663, + -0.014001136645674706, + -0.026620283722877502, + 0.003487083362415433, + -0.10441752523183823, + -0.003573470050469041, + -0.01985008269548416 + ], + "lastfm-logo-bold||*new*,scrobble,music,social media": [ + 0.013773046433925629, + -0.03116224706172943, + -0.02103990875184536, + -0.014881307259202003, + 0.14378100633621216, + 0.04367617890238762, + 0.040594808757305145, + -0.05590275675058365, + -0.002614126540720463, + -0.008529098704457283, + 0.0009118211455643177, + 0.05297904461622238, + 0.03501984104514122, + -0.04745430499315262, + -0.02190149575471878, + -0.026299308985471725, + -0.022874001413583755, + -0.01016699057072401, + 0.034476153552532196, + -0.04978305101394653, + -0.033215757459402084, + 0.02981947921216488, + 0.001165270688943565, + 0.026324518024921417, + 0.04836198687553406, + 0.08870484679937363, + -0.06086202338337898, + 0.013357661664485931, + 0.016206424683332443, + -0.06608939170837402, + 0.003473194781690836, + 0.09143315255641937, + 0.173029363155365, + 0.0020183981396257877, + 0.06500215083360672, + -0.026943184435367584, + -0.006294437684118748, + -0.02009408548474312, + 0.009405507706105709, + 0.018721865490078926, + -0.015438934788107872, + -0.06755303591489792, + 0.014979371801018715, + 0.03034478984773159, + -0.06123992055654526, + -0.016343949362635612, + -0.041803665459156036, + -0.038467779755592346, + 0.03601963445544243, + 0.058186955749988556, + -0.04033501818776131, + -0.1377197504043579, + -0.07178147882223129, + -0.027005068957805634, + 0.0179553534835577, + -0.03813259303569794, + -0.0047960178926587105, + 0.0028422456234693527, + 0.036000851541757584, + -0.00487448088824749, + 0.037341587245464325, + -0.03290412202477455, + 0.00019601576786953956, + 0.06202734261751175, + 0.1192522943019867, + -0.04209765046834946, + -0.04561770707368851, + 0.03647308424115181, + -0.026633819565176964, + 0.07242615520954132, + 0.03784017264842987, + 0.0033503551967442036, + -0.004854317754507065, + 0.032797571271657944, + -0.042328670620918274, + -0.02205827087163925, + 0.03848117217421532, + -0.022473754361271858, + -0.036462169140577316, + -0.07776297628879547, + -0.046143870800733566, + -0.055706024169921875, + -0.02325829118490219, + -0.06207279488444328, + 0.08862197399139404, + 0.0715235248208046, + -0.09645292907953262, + -0.07784631103277206, + -0.04058431461453438, + 0.023273970931768417, + -0.10803009569644928, + 0.015303844586014748, + 0.02564913034439087, + 0.015421712771058083, + -0.1101425513625145, + 0.02569427154958248, + -0.0023376550525426865, + -0.038776930421590805, + -0.022408930584788322, + 0.12857681512832642, + -0.013427929021418095, + 0.06382691860198975, + 0.111385777592659, + -0.06818188726902008, + 0.047998156398534775, + 0.012063522823154926, + -0.005821799393743277, + 0.05130726844072342, + -0.015185579657554626, + 0.08973419666290283, + -0.027052205055952072, + -0.022811569273471832, + -0.06724921613931656, + -0.015703756362199783, + 0.007321143057197332, + -0.04755444824695587, + -0.015609304420650005, + -0.0016163570107892156, + 0.11497323960065842, + 0.05521201342344284, + 0.06517423689365387, + -0.027796560898423195, + -0.10679452866315842, + -0.0685364380478859, + -0.026439953595399857, + 0.03676966205239296, + -0.02186417579650879, + 2.5954954296241975e-34, + 0.04881901293992996, + 0.05548269301652908, + -0.037914469838142395, + 0.08061755448579788, + 0.02885235659778118, + 0.02048884704709053, + -0.04754719138145447, + -0.005795011296868324, + -0.08611377328634262, + 0.04963626340031624, + 0.06751818209886551, + 0.10686132311820984, + -0.012447557412087917, + 0.051237791776657104, + 0.00042211200343444943, + -0.07188064604997635, + -0.05998300388455391, + -0.036483004689216614, + -0.061747290194034576, + -0.03864922747015953, + -0.03319653496146202, + 0.016452506184577942, + -0.03331519290804863, + -0.047667495906353, + 0.012165861204266548, + -0.05524217337369919, + 0.05876009166240692, + -0.06575707346200943, + -0.0011925104772672057, + 0.03782721981406212, + 0.004327285569161177, + 0.013742508366703987, + 0.03259959816932678, + 0.002010395284742117, + -0.02584981918334961, + -0.013915776275098324, + -0.04171861335635185, + -0.048996180295944214, + -0.0003899217408616096, + -0.013126851059496403, + 0.0003574724541977048, + -0.06438492238521576, + -0.07405669242143631, + 0.02170300856232643, + -0.015154852531850338, + 0.10156349092721939, + -0.005350940860807896, + -0.024037471041083336, + 0.11547932773828506, + -0.01752663031220436, + 0.021363399922847748, + -0.05407204478979111, + -0.045416880398988724, + 0.0020482453983277082, + -0.022599468007683754, + -0.057713501155376434, + -0.04252178966999054, + 0.022758472710847855, + 0.017421862110495567, + -0.03414927050471306, + 0.0536576472222805, + 0.05044441297650337, + 0.07383128255605698, + -0.037522826343774796, + -0.016242343932390213, + 0.038015298545360565, + 0.03479212149977684, + 0.0210412610322237, + -0.00022601224191021174, + -0.04633120447397232, + -0.014956061728298664, + -0.024785855785012245, + 0.08051586151123047, + 0.04224212467670441, + -0.11392263323068619, + -0.0022721702698618174, + 0.028418170288205147, + -0.02973155491054058, + 0.003666139440611005, + 0.02958887256681919, + -0.020601866766810417, + -0.0005599079304374754, + -0.06833945214748383, + 0.02890629507601261, + 0.06693941354751587, + 0.021717477589845657, + 0.052177540957927704, + -0.10615100711584091, + -0.0658349022269249, + -0.0398886576294899, + -0.10041432827711105, + -0.023178530856966972, + 0.01603037305176258, + -0.007258239667862654, + -0.13149623572826385, + -1.6885102075638736e-33, + -0.0038516779895871878, + 0.03175497427582741, + 0.05110567808151245, + -0.0028975463937968016, + -0.038603123277425766, + 0.016179561614990234, + 0.043168626725673676, + 0.05537202209234238, + -0.0030549403745681047, + 0.04499528184533119, + 0.08526841551065445, + -0.010736530646681786, + -0.06850054860115051, + -0.06631431728601456, + 0.01011319737881422, + 0.025633983314037323, + 0.07255218178033829, + -0.0059524234384298325, + -0.05287406966090202, + -0.01649620570242405, + -0.04457731172442436, + -0.026319922879338264, + -0.09246142953634262, + 0.08275284618139267, + 0.007042954675853252, + 0.02501070126891136, + 0.06884332001209259, + 0.019727954640984535, + -0.07399607449769974, + -0.003361952258273959, + 0.002706971950829029, + -0.0857539176940918, + -0.0166766494512558, + 0.04002876952290535, + 0.004335031844675541, + 0.023119909688830376, + -0.014157094061374664, + -0.016967711970210075, + 0.004808273632079363, + 0.03175071254372597, + 0.007636520080268383, + 0.03439858555793762, + 0.014804239384829998, + 0.08365856856107712, + -0.053894203156232834, + -0.0083828279748559, + -0.1285003274679184, + -0.021905332803726196, + -0.02857060730457306, + 0.06372657418251038, + 0.09296441823244095, + -0.05256497487425804, + 0.031827718019485474, + -0.030431268736720085, + -0.07040494680404663, + 0.025773370638489723, + -0.003837993135675788, + 0.0385260209441185, + -0.02032674476504326, + -0.0004924620734527707, + 0.0268267709761858, + 0.04525463655591011, + -0.1003948524594307, + 0.0004283188027329743, + 0.011449090205132961, + -0.04077959433197975, + 0.01061890460550785, + -0.006304556503891945, + -0.11029026657342911, + 0.050725679844617844, + 0.023731999099254608, + 0.04067978262901306, + -0.05864731967449188, + 0.010671691969037056, + -0.07903008908033371, + 0.028251133859157562, + 0.07886375486850739, + 0.016493234783411026, + -0.08964747935533524, + 0.01139518991112709, + 0.020687028765678406, + 0.026612667366862297, + -0.03888639435172081, + 0.0441017709672451, + 0.02836512215435505, + 0.05414213612675667, + -0.03874402865767479, + 0.032578080892562866, + 0.03818240016698837, + -0.005596197675913572, + -0.0349627360701561, + 0.04686528816819191, + 0.010462077334523201, + 0.033738646656274796, + -0.02470429800450802, + -2.2695873624911655e-08, + -0.0894898846745491, + -0.07682380080223083, + -0.019821884110569954, + -0.03839569911360741, + 0.06993771344423294, + 0.034613799303770065, + -0.007359564304351807, + -0.13689377903938293, + 0.006676681339740753, + -0.038714002817869186, + 0.016507862135767937, + -0.04435646906495094, + -0.051193442195653915, + -0.0035933591425418854, + 0.002731932094320655, + -0.01610841229557991, + -0.06455481052398682, + 0.053274981677532196, + -0.009415310807526112, + -0.07323012501001358, + -0.03564206138253212, + 0.06896249204874039, + 0.03201799467206001, + -0.04130176827311516, + -0.016820203512907028, + 0.07095866650342941, + 0.0023218041751533747, + 0.012972925789654255, + 0.04739588871598244, + 0.019378339871764183, + 0.03076537884771824, + 0.08319568634033203, + -0.012965637259185314, + -0.034842684864997864, + -0.08628188073635101, + -0.02912324108183384, + 0.00011110334889963269, + -0.019196413457393646, + -0.1063251793384552, + 0.08379057049751282, + 0.0417402908205986, + 0.0026065942365676165, + 0.008900467306375504, + -0.004992298316210508, + -0.10171348601579666, + -0.0014727669768035412, + 0.07307567447423935, + 0.03189505264163017, + 0.009175899438560009, + -0.10335220396518707, + 0.004354497417807579, + -0.004141601268202066, + 0.007726868614554405, + 0.07380460202693939, + 0.009613052010536194, + -0.023641956970095634, + 0.0016502138460054994, + 0.18461529910564423, + 0.012059795670211315, + 0.05454234406352043, + 0.053307659924030304, + 0.0008353445446118712, + 0.006486134137958288, + 0.05033086985349655 + ], + "layout-bold||wireframe,sidebar,ui,interface": [ + -0.061396338045597076, + -0.0033927171025425196, + -0.03318236768245697, + 0.08441291004419327, + 0.05013379454612732, + 0.011222543194890022, + 0.023626670241355896, + -0.0231756791472435, + -0.04199851304292679, + -0.025216588750481606, + -0.010768462903797626, + 0.05542006343603134, + 0.01009354181587696, + -0.03292013332247734, + -0.0015267642447724938, + -0.05912960320711136, + 0.035489778965711594, + -0.011151096783578396, + 0.03487549349665642, + 0.026634803041815758, + -0.05111738666892052, + 0.014949060045182705, + 0.04687374085187912, + -0.02390529401600361, + 0.01965494267642498, + 0.05766992270946503, + 0.10337751358747482, + 0.016012396663427353, + -0.003780423430725932, + -0.06841494888067245, + 0.006775968242436647, + 0.02382902055978775, + 0.04852184280753136, + 0.01548762433230877, + -0.05460743233561516, + -0.03516094759106636, + -0.0006016137776896358, + -0.01687965728342533, + -0.01560777984559536, + 0.009611045010387897, + -0.06482177972793579, + -0.015276473946869373, + -0.026629352942109108, + 0.04190373793244362, + -0.032995209097862244, + -0.09910908341407776, + -0.06755883991718292, + -0.06357286125421524, + 0.021942492574453354, + -0.029967045411467552, + 0.07073812931776047, + -0.01944722980260849, + -0.03223990648984909, + 0.04683208093047142, + 0.044471077620983124, + 0.008013032376766205, + -0.08143942803144455, + 0.03832826018333435, + 0.07197324186563492, + 0.02489049732685089, + 0.007689821999520063, + 0.004822287708520889, + 0.08952300995588303, + 0.012113151140511036, + 0.06574537605047226, + 0.031648874282836914, + -0.024788247421383858, + 0.05409432575106621, + -0.03744925558567047, + -0.061814576387405396, + 0.05890268459916115, + -0.00441324058920145, + -0.009429723024368286, + -0.08554819971323013, + 0.02737383358180523, + -0.05934593081474304, + 0.07186036556959152, + -0.00011947183520533144, + -0.06548634171485901, + -0.046419769525527954, + -0.08117630332708359, + 0.03179179131984711, + -0.004942877683788538, + 0.01375151239335537, + 0.038931045681238174, + 0.015813050791621208, + -0.02085272967815399, + -0.06282984465360641, + -0.047283876687288284, + 0.011380436830222607, + -0.027646085247397423, + 0.050129517912864685, + 0.0023338929750025272, + 0.007667705416679382, + -0.030335497111082077, + 0.04295700415968895, + -0.051554422825574875, + -0.07347467541694641, + -0.12164029479026794, + 0.06371598690748215, + 0.04985087737441063, + -0.03295808285474777, + 0.06782224029302597, + 0.027995308861136436, + 0.05782029405236244, + 0.09211833775043488, + 0.010116709396243095, + -0.0033669082913547754, + -0.053279027342796326, + 0.04748794436454773, + 0.026806524023413658, + -0.05606411024928093, + -0.06284572184085846, + -0.01480999868363142, + 0.045079294592142105, + -0.0540032759308815, + -0.025189800187945366, + 0.0343472845852375, + 0.08260312676429749, + 0.0418471097946167, + -0.01261515449732542, + 0.05017811805009842, + -0.037009112536907196, + -0.06447111815214157, + 0.02193712815642357, + 0.03252090513706207, + 0.03917596861720085, + -7.74001224727562e-34, + 0.016176162287592888, + 0.03801212087273598, + -0.1081443578004837, + 0.14601702988147736, + 0.022698381915688515, + 0.011280923150479794, + -0.03652709349989891, + 0.03435753658413887, + -0.05563681200146675, + 0.04785068333148956, + 0.05203870311379433, + 0.09234842658042908, + -0.06293510645627975, + 0.063829205930233, + 0.042135436087846756, + -0.11301462352275848, + -0.009301784448325634, + 0.0038690415676683187, + -0.06073497608304024, + -0.014092960394918919, + -0.049645163118839264, + -0.03452165052294731, + -0.016901254653930664, + -0.045411352068185806, + -0.012046183459460735, + -0.016308866441249847, + 0.06151701137423515, + 0.01283474825322628, + -0.1122465506196022, + -0.010264933109283447, + -0.03468813747167587, + 0.02748584933578968, + 0.13803118467330933, + -0.004593004006892443, + -0.03559781238436699, + -0.03761320188641548, + 0.014299949631094933, + -0.018816377967596054, + -0.005821520928293467, + 0.0561458021402359, + -0.0985289216041565, + 0.002377663739025593, + 0.012462738901376724, + -0.04782480373978615, + 0.030987974256277084, + 0.23063655197620392, + 0.056094150990247726, + 0.001083209877833724, + 0.006050510331988335, + 0.025967223569750786, + -0.054744504392147064, + -0.019945397973060608, + 0.07317999005317688, + 0.013208280317485332, + 0.030189281329512596, + -0.039765406399965286, + -0.06522313505411148, + 0.11476729810237885, + 0.11874119192361832, + 0.015567487105727196, + 0.0038339963648468256, + 0.0893353745341301, + -0.06972907483577728, + 0.010763650760054588, + -0.07670050114393234, + 0.07529311627149582, + -0.018369192257523537, + 0.0002496975939720869, + -0.01292093563824892, + -0.13730907440185547, + -0.04777519032359123, + 0.034614577889442444, + 0.06204044073820114, + 0.10263097286224365, + 0.04653216898441315, + -0.008606554009020329, + -0.050808243453502655, + -0.0024960199370980263, + 0.06129716709256172, + -0.05407814309000969, + -0.059302762150764465, + -0.016247883439064026, + -0.03555474057793617, + 0.08054550737142563, + 0.062346041202545166, + -0.03863844648003578, + 0.049550801515579224, + -0.03057245910167694, + 0.016715701669454575, + 0.059754226356744766, + -0.051329996436834335, + -0.000871195865329355, + 0.039176732301712036, + -0.03763901814818382, + -0.022875037044286728, + -5.311435867524485e-34, + 0.05957777798175812, + 0.003278940450400114, + -0.04150506854057312, + -0.11045265197753906, + -0.046773217618465424, + 0.007229891140013933, + 0.020287202671170235, + 0.04673583060503006, + -0.026084212586283684, + 0.054572585970163345, + 0.10156166553497314, + 0.00798862800002098, + -0.05169493332505226, + -0.0929335504770279, + 0.008406444452702999, + 0.020842717960476875, + -0.03809648007154465, + 0.046768877655267715, + -0.027420585975050926, + -0.03536356985569, + -0.06251484900712967, + 0.01118035800755024, + -0.1414938122034073, + 0.019772570580244064, + 0.002464746357873082, + 0.04008777439594269, + 0.0001762659230735153, + 0.05149456113576889, + -0.00036270247073844075, + 0.012877474538981915, + -0.04237975925207138, + -0.04045046865940094, + 0.02189279906451702, + 0.06831047683954239, + 0.014353221282362938, + 0.06619451195001602, + 0.018147576600313187, + -0.013284360989928246, + -0.013108435086905956, + -0.05928001552820206, + -0.05267473682761192, + 0.010579816997051239, + -0.015296979807317257, + 0.05069144442677498, + -0.07657114416360855, + 0.028306107968091965, + -0.039111580699682236, + -0.05772818252444267, + -0.08222322911024094, + -0.019480416551232338, + -0.009587854146957397, + 0.047495096921920776, + 0.023993054404854774, + -0.02899753674864769, + -0.033867936581373215, + -0.07977700233459473, + 0.0014977124519646168, + 0.018159393221139908, + -0.026465794071555138, + 0.07186165452003479, + 0.05729955434799194, + 0.034274645149707794, + -0.03796692192554474, + 0.0048523228615522385, + 0.03901779651641846, + -0.0755779966711998, + -0.005227007903158665, + -0.10144948214292526, + 0.09066472202539444, + 0.013703295029699802, + 0.07372689992189407, + -0.0405074767768383, + 0.02819482982158661, + -0.04021300747990608, + 0.06271205842494965, + 0.015014175325632095, + 0.11204508692026138, + 0.004928578622639179, + 0.02892662025988102, + 0.020708976313471794, + 0.025717630982398987, + -0.003547623986378312, + -0.028033491224050522, + 0.03207993507385254, + -0.04937697574496269, + 0.0065468610264360905, + -0.011918561533093452, + 0.031897448003292084, + 0.03728757053613663, + -0.0007527534617111087, + -0.06934881210327148, + -0.02141345664858818, + 0.036680176854133606, + 0.04232606664299965, + -0.005621993448585272, + -2.0089609975570966e-08, + -0.011401000432670116, + -0.03296855464577675, + 0.01990092173218727, + -0.06830951571464539, + -0.014258068054914474, + 0.003958877641707659, + -0.01794295385479927, + -0.09382005035877228, + -0.070791095495224, + -0.028965888544917107, + 0.006010833196341991, + 0.03721322491765022, + -0.10490219295024872, + 0.020452171564102173, + 0.0091168861836195, + 0.046603258699178696, + -0.10784907639026642, + 0.09320982545614243, + 0.004169750958681107, + -0.03056911565363407, + -0.002024942310526967, + 0.033032651990652084, + 0.037264540791511536, + 0.010847139172255993, + 0.042584870010614395, + 0.015527669340372086, + -0.0005253995768725872, + 0.017047280445694923, + 0.039619576185941696, + 0.09241903573274612, + -0.004884515423327684, + -0.047325026243925095, + 0.01567724719643593, + 0.03289071097970009, + -0.042349427938461304, + -0.029629508033394814, + -0.0985608771443367, + 0.03218633681535721, + -0.01352053601294756, + 0.02343904785811901, + -0.050637345761060715, + -0.11421307921409607, + -0.0017705889185890555, + -0.03859609737992287, + 0.062245309352874756, + 0.033696141093969345, + 0.010524410754442215, + 0.04682554677128792, + -0.043875906616449356, + -0.15146897733211517, + -0.05277241766452789, + -0.0222919974476099, + -0.01619352586567402, + 0.038432709872722626, + -0.01025259681046009, + -0.005735562648624182, + -0.0030961085576564074, + 0.06705567240715027, + 0.020738529041409492, + -0.07670193165540695, + 0.026297062635421753, + 0.05929573252797127, + -0.005273838527500629, + -0.02026672288775444 + ], + "leaf-bold||plants,trees,branches,leaves,nodes,green,environmental": [ + 0.040331777185201645, + 0.009640677832067013, + -0.0244008619338274, + 0.03655484691262245, + 0.12571342289447784, + 0.008027490228414536, + 0.035216234624385834, + -0.03784140944480896, + 0.02080605737864971, + 0.02631325274705887, + 0.08768098801374435, + -0.05029531940817833, + 0.03317995369434357, + -0.06773602962493896, + -0.013200645335018635, + 0.06468288600444794, + -0.05849176645278931, + 0.0693780705332756, + -0.051051732152700424, + -0.016967717558145523, + 0.025751786306500435, + 0.10192568600177765, + 0.015522179193794727, + 0.028966164216399193, + 0.06703787297010422, + -0.004395610187202692, + -0.07516434043645859, + 0.04912231117486954, + 0.05922596529126167, + -0.09888191521167755, + -0.05797688663005829, + 0.061776481568813324, + 0.11654416471719742, + 0.05631434917449951, + -0.006523133721202612, + 0.02622179128229618, + -0.00841045007109642, + -0.09915558993816376, + 0.005625644698739052, + 0.04599003866314888, + 0.026339106261730194, + -0.00023115944350138307, + -0.001990082673728466, + -0.011780123226344585, + -0.04111441597342491, + 0.01231863908469677, + -0.07002332806587219, + -0.0020215772092342377, + -0.015535055659711361, + -0.03027181327342987, + -0.01062052696943283, + -0.1290716975927353, + -0.14809706807136536, + -0.00961836613714695, + 0.00609339214861393, + 0.03454338386654854, + -0.014478848315775394, + -0.04519209638237953, + 0.10086365044116974, + 0.04552937299013138, + 0.08821979910135269, + 0.01684456504881382, + 0.017702311277389526, + 0.04537765681743622, + 0.04125097393989563, + 0.08712439984083176, + -0.07340594381093979, + 0.027731753885746002, + 0.02521841786801815, + -0.04589317739009857, + 0.05206931382417679, + -0.009601744823157787, + -0.04030263051390648, + 0.035779427736997604, + -0.057924218475818634, + 0.03843091428279877, + 0.006349190603941679, + 0.056724436581134796, + -0.05595395714044571, + -0.06846964359283447, + -0.08356251567602158, + -0.007756788749247789, + -0.06567072868347168, + 0.010311898775398731, + 0.0013025570660829544, + 0.08541136234998703, + -0.09610196948051453, + -0.026702629402279854, + -0.06939581036567688, + -0.002532920567318797, + -0.06455069035291672, + -0.035533156245946884, + -0.010473313741385937, + 0.043492622673511505, + -0.1714291125535965, + 0.09573021531105042, + 0.11809760332107544, + -0.06742818653583527, + -0.030857888981699944, + 0.02367180958390236, + 0.0046045673079788685, + 0.007377658039331436, + 0.0323377288877964, + -0.05341091379523277, + -0.12269126623868942, + -0.06867971271276474, + -0.06528647989034653, + -0.09539997577667236, + 0.003664561314508319, + -0.023586750030517578, + -0.031165137887001038, + -0.06552963703870773, + -0.09882368892431259, + -0.03878217563033104, + -0.06305377930402756, + -0.09291485697031021, + 0.006939709186553955, + -0.03220313414931297, + 0.10772041231393814, + 0.07103436440229416, + -0.00692105432972312, + -0.02782711759209633, + -3.910497616743669e-05, + -0.020926879718899727, + 0.006474402267485857, + -0.036903440952301025, + -0.016127517446875572, + -1.8879357629167517e-33, + 0.06374336034059525, + 0.019644832238554955, + 0.017611179500818253, + 0.05067147687077522, + 0.06456327438354492, + -0.037425197660923004, + -0.055508390069007874, + -0.09665881842374802, + -0.07434221357107162, + 0.010517827235162258, + -0.05190214887261391, + 0.026245495304465294, + -0.06284508854150772, + 0.008723357692360878, + 0.044522956013679504, + 0.007098549045622349, + -0.01839030161499977, + -0.06623049825429916, + -0.047295015305280685, + 0.031188873574137688, + -0.052230577915906906, + 0.039805326610803604, + -0.0736180916428566, + -0.00620937580242753, + -0.0010667217429727316, + -0.07713709771633148, + 0.05434127524495125, + -0.05852016806602478, + -0.012514262460172176, + 0.004827259574085474, + 0.06977774947881699, + 0.011257859878242016, + 0.0452210009098053, + 0.043854016810655594, + -0.002911294810473919, + 0.002765464363619685, + -0.0575128011405468, + -0.018868165090680122, + -0.0002325240202480927, + 0.030416393652558327, + -0.08183315396308899, + 0.026162978261709213, + 0.030573751777410507, + 0.030381036922335625, + 0.0826835110783577, + 0.0857604369521141, + -0.041073136031627655, + -0.03492925688624382, + 0.043195974081754684, + 0.04596956446766853, + -0.028238683938980103, + 0.03803274780511856, + 0.0820481926202774, + 0.016419176012277603, + 0.0037488420493900776, + 0.03915271535515785, + 0.039213038980960846, + 0.13164719939231873, + -0.05441417545080185, + 0.09165835380554199, + 0.034862030297517776, + 0.04254714772105217, + 0.03621229901909828, + -0.04335711896419525, + 0.025410693138837814, + 0.12041743099689484, + -0.14656072854995728, + -0.008475197479128838, + 0.06704725325107574, + -0.02845948375761509, + -0.03397603705525398, + 0.027751712128520012, + 0.036735136061906815, + 0.011307008564472198, + 0.01996699720621109, + 0.03515660762786865, + -0.01834561675786972, + -0.0036780773662030697, + -0.02260945737361908, + -0.01249612681567669, + -0.11730703711509705, + -0.002689908491447568, + -0.027551518753170967, + 0.014512855559587479, + -0.010374492034316063, + -0.009980864822864532, + -0.01581566594541073, + -0.036223165690898895, + 0.012463942170143127, + 0.02937198430299759, + 0.004528405610471964, + 0.06837885826826096, + -0.01189148984849453, + -0.06395842880010605, + -0.06581562757492065, + -1.2189588972924147e-33, + 0.016197219491004944, + 0.041925594210624695, + 0.011422296054661274, + 0.014716175384819508, + -0.011801199056208134, + -0.013151783496141434, + -0.11794976145029068, + -0.039737481623888016, + 0.004721204750239849, + 0.045126188546419144, + 0.032909195870161057, + 0.07164238393306732, + -0.0724928006529808, + -0.018636679276823997, + -0.009623601101338863, + 0.003941145725548267, + 0.054166633635759354, + 0.09102249890565872, + -0.04133254289627075, + 0.02154078707098961, + -0.11864184588193893, + 0.019032569602131844, + -0.05192232504487038, + 0.0351492278277874, + -0.029026631265878677, + 0.009068386629223824, + -0.0013917143223807216, + -0.023898757994174957, + -0.030312053859233856, + -0.05731465667486191, + 0.015814153477549553, + -0.020767750218510628, + 0.028361033648252487, + 0.04324627295136452, + -0.05983162671327591, + -0.05083164945244789, + 0.02160211093723774, + -0.10222138464450836, + 0.05945583060383797, + 0.06737863272428513, + 0.006219767965376377, + -0.0027971018571406603, + 0.055211346596479416, + -0.013489039614796638, + -0.03300761803984642, + -0.07008779793977737, + -0.03870392218232155, + -0.03269142284989357, + -0.058065470308065414, + 0.07771922647953033, + 0.05526378005743027, + 0.025754094123840332, + -0.011944059282541275, + 0.02097001112997532, + 0.014445402659475803, + -0.04798273369669914, + 0.011865145526826382, + 0.06436501443386078, + -0.0029516115318983793, + -0.006030253600329161, + -0.019664937630295753, + -0.0011111933272331953, + -0.07903735339641571, + 0.06668830662965775, + 0.004142608027905226, + -0.07028117030858994, + -0.03366554528474808, + -0.02875003218650818, + 0.015757298097014427, + -0.009524250403046608, + -0.007506797555834055, + 0.04054596647620201, + -0.031668003648519516, + 0.014447790570557117, + 0.009710565209388733, + -0.029433300718665123, + 0.04073355719447136, + -0.009756753221154213, + -0.05601758882403374, + 0.04513171315193176, + -0.05560440942645073, + 0.034019578248262405, + -0.06663001328706741, + 0.044797226786613464, + 0.01531229168176651, + 0.0005178349674679339, + -0.05730876699090004, + 0.015421165153384209, + 0.04207601770758629, + -0.01767728663980961, + 0.010704969987273216, + 0.048807233572006226, + -0.05463209003210068, + 0.020079053938388824, + 0.04032294824719429, + -2.0454473670383777e-08, + -0.052172861993312836, + -0.009730077348649502, + -0.05292560160160065, + -0.008912899531424046, + 0.047651056200265884, + -0.0670691505074501, + 0.05309482663869858, + -0.020066959783434868, + -0.0419011116027832, + 0.014004980213940144, + 0.043924666941165924, + 0.05892478674650192, + -0.06671538203954697, + -0.04185919836163521, + 0.09980399906635284, + -0.04931247979402542, + 0.009325390681624413, + 0.042220328003168106, + 0.004482741933315992, + 0.07011782377958298, + -0.02344714291393757, + 0.011950749903917313, + -0.03721219673752785, + 0.04891362413764, + 0.047272030264139175, + -0.028891174122691154, + -0.004249014426022768, + 0.021519247442483902, + 0.05668986588716507, + 0.07642019540071487, + 0.09055798500776291, + 0.08418556302785873, + -0.016226306557655334, + 0.005710592493414879, + -0.09241314977407455, + -0.01601528748869896, + -0.0024624685756862164, + 0.010447999462485313, + -0.06940211355686188, + 0.10712315887212753, + 0.010115827433764935, + -0.03067573718726635, + -0.043922875076532364, + -0.013192676939070225, + -0.020464053377509117, + 0.0005878073861822486, + 0.05759386345744133, + 0.04262514412403107, + 0.002928196918219328, + -0.07558495551347733, + -0.030060114338994026, + -0.030216973274946213, + 0.03510499373078346, + 0.014384242706000805, + -0.06488428264856339, + -0.05562068149447441, + 0.025956040248274803, + 0.05981873720884323, + -0.012732655741274357, + 0.013161885552108288, + 0.06556184589862823, + -0.001187627320177853, + 0.07369238883256912, + 0.013182589784264565 + ], + "lectern-bold||*new*,lecture,podium,pulpit,stand,speech,presentation,keynote": [ + -0.0399654358625412, + -0.029407188296318054, + 0.008246300742030144, + -0.050297677516937256, + -0.00579471280798316, + 0.03623677045106888, + -0.04070596024394035, + 0.046463798731565475, + 0.058400820940732956, + 0.039955828338861465, + -0.003186636371538043, + 0.01877439022064209, + 0.008489011786878109, + 0.05602992698550224, + -0.004029004368931055, + -0.005780983716249466, + -0.02782929502427578, + 0.03988108038902283, + -0.0026305741630494595, + 0.07417832314968109, + 0.11020692437887192, + 0.20181196928024292, + 0.026582133024930954, + 0.026981551200151443, + 0.053716398775577545, + 0.010724781081080437, + -0.01354194711893797, + -0.02041209675371647, + 0.10959412157535553, + -0.06125446781516075, + 0.0010989338625222445, + -0.06272342801094055, + 0.13194260001182556, + 0.014978763647377491, + 0.05371593311429024, + 0.005203640554100275, + 0.02398439310491085, + 3.1664010748500004e-05, + 0.10307411104440689, + 0.07655748724937439, + -0.007857782766222954, + 0.013182239606976509, + -0.02162702940404415, + -0.011443903669714928, + 0.03288983553647995, + -0.02807389572262764, + -0.06707744300365448, + 0.011518621817231178, + 0.014443191699683666, + -0.008272742852568626, + -0.06013091281056404, + -0.1326596587896347, + -0.055264912545681, + 0.06623636186122894, + -0.02167927660048008, + 0.027711767703294754, + -0.048370372503995895, + -0.08344995975494385, + 0.056073401123285294, + -0.021060241386294365, + 0.009325632825493813, + -4.274412276572548e-05, + 0.03051185980439186, + 0.0660245269536972, + -0.03420036658644676, + 0.004466810263693333, + 0.023434462025761604, + 0.058161597698926926, + -0.014782106503844261, + 0.09746859222650528, + -0.014594552107155323, + -0.007382332347333431, + 0.008533423766493797, + 0.020969493314623833, + -0.023091690614819527, + -0.07497898489236832, + 0.060072269290685654, + -0.05358096957206726, + -0.013016223907470703, + -0.030664078891277313, + -0.008053910918533802, + -0.03199400380253792, + -0.05247609317302704, + 0.03130115568637848, + -0.022765884175896645, + -0.0019557771738618612, + -0.02417670749127865, + -0.02927207574248314, + -0.10185582935810089, + -0.0441305972635746, + -0.09405448287725449, + -0.09383971244096756, + -0.013962045311927795, + -0.05204905942082405, + -0.08200617134571075, + 0.027163725346326828, + 0.019773513078689575, + -0.06239553913474083, + 0.06718789041042328, + 0.1007261648774147, + -0.06273669004440308, + 0.000767517602071166, + 0.05621633306145668, + -0.01936406083405018, + -0.07844851911067963, + -0.09793390333652496, + -0.05294344201683998, + -0.04265725612640381, + 0.007008958607912064, + -0.038513436913490295, + 0.028239982202649117, + -0.05121917650103569, + -0.08003167808055878, + -0.0354173481464386, + 0.005855237599462271, + -0.02855578251183033, + -0.0290986318141222, + -0.06267158687114716, + 0.021393414586782455, + 0.0765623152256012, + 0.02993899956345558, + -0.058122407644987106, + 0.061100732535123825, + -0.018905946984887123, + -0.05102792754769325, + -0.024631967768073082, + -0.03354216739535332, + -2.8204387173637717e-33, + 0.08811727166175842, + -0.009641478769481182, + -0.06317733973264694, + 0.07003937661647797, + 0.03832806646823883, + 0.03965817019343376, + -0.03915035352110863, + 0.011832494288682938, + -0.0848320946097374, + -0.026036715134978294, + 0.029634399339556694, + 0.010119082406163216, + 0.02263236790895462, + 0.07767742872238159, + -0.0709158182144165, + 0.0076841991394758224, + 0.010854450985789299, + 0.030835796147584915, + -0.0795840322971344, + -0.01833067461848259, + 0.003369542071595788, + 0.10941346734762192, + 0.044657833874225616, + 0.009125507436692715, + 0.04208971932530403, + -0.03690958395600319, + 0.08315317332744598, + -0.028622714802622795, + -0.05871163681149483, + 0.0034449463710188866, + 0.004787469282746315, + -0.02532876841723919, + 0.03651382774114609, + 0.011673398315906525, + 0.07092759758234024, + -0.012627323158085346, + -0.03747561573982239, + -0.08714867383241653, + 0.06171444058418274, + -0.02777247689664364, + -0.051896266639232635, + 0.038197681307792664, + 0.009285442531108856, + 0.01682007871568203, + 0.06992634385824203, + 0.1459657996892929, + -0.0364595428109169, + -0.007163427770137787, + 0.04162396118044853, + 0.027666347101330757, + 0.01943296007812023, + 0.03475792706012726, + 0.01128380000591278, + -0.022707870230078697, + 0.038191236555576324, + -0.04721429571509361, + -0.019971685484051704, + 0.09954790771007538, + 0.01820293255150318, + -0.05418136343359947, + 0.038450174033641815, + 0.09520260989665985, + -0.022382546216249466, + 0.02160399593412876, + 0.007785591296851635, + 0.03759227320551872, + -0.16569504141807556, + 0.02381911501288414, + 0.15384311974048615, + -0.026202106848359108, + 0.00028478584135882556, + 0.021656451746821404, + -0.04359923303127289, + 0.04107465222477913, + -0.00370033155195415, + 0.015336541458964348, + -0.03098616562783718, + -0.00833201501518488, + 0.03739481791853905, + -0.03496862202882767, + -0.11027674376964569, + 0.009041179902851582, + -0.05186346545815468, + 0.024784471839666367, + -0.06799495965242386, + -0.01194851379841566, + -0.007696633227169514, + -0.06468378007411957, + 0.013001939281821251, + 0.013729815371334553, + -0.04279123246669769, + -0.02029583230614662, + -0.027436837553977966, + -0.023731974884867668, + -0.075716033577919, + -2.915633510053474e-34, + 0.046014655381441116, + 0.04916542395949364, + -0.057703856378793716, + 0.09188917279243469, + -0.01971125230193138, + 0.061040397733449936, + -0.01786002330482006, + 0.07997763901948929, + -0.020152945071458817, + 0.0035291032399982214, + 0.0895158052444458, + 0.030890772119164467, + -0.012324155308306217, + -0.05428486689925194, + 0.08076168596744537, + 0.01015075296163559, + 0.016497662290930748, + 0.014860032126307487, + -0.02496195398271084, + 0.07356581836938858, + 0.041142698377370834, + -0.015604391694068909, + -0.06490375101566315, + -0.012069872580468655, + 0.015157978050410748, + 0.005710684694349766, + 0.03823862969875336, + -0.019220832735300064, + -0.03422411158680916, + -0.022677669301629066, + -0.045769643038511276, + 0.020990734919905663, + -0.08451712131500244, + 0.036947429180145264, + -0.04205680266022682, + 0.046129316091537476, + 0.05799144133925438, + -0.07989964634180069, + -0.04041177034378052, + -0.0676482692360878, + 0.05754101276397705, + -0.007033397443592548, + 0.07397475093603134, + 0.07900078594684601, + -0.009350384585559368, + -0.02494191564619541, + -0.061628442257642746, + -0.0026852034498006105, + 0.05015576258301735, + 0.04200536757707596, + -0.060957957059144974, + -0.07010086625814438, + 0.0015123775228857994, + -0.06350702792406082, + -0.053624507039785385, + -0.06432240456342697, + -0.002643205923959613, + -0.018435364589095116, + -0.019708365201950073, + 0.01790665090084076, + -0.0013477684697136283, + -0.047225650399923325, + -0.04864301159977913, + -0.013545195572078228, + 0.023903200402855873, + -0.017848320305347443, + -0.016780918464064598, + 0.022209320217370987, + 0.015606262721121311, + -0.03595470264554024, + 0.060203567147254944, + -0.0027737615164369345, + 0.024974802508950233, + -0.06285249441862106, + -0.012716771103441715, + 0.020641086623072624, + -0.04468640312552452, + -0.15642738342285156, + -0.06840699911117554, + 0.012145256623625755, + -0.021011410281062126, + -0.04261898249387741, + -0.080792635679245, + -0.013556993566453457, + 0.010944431647658348, + 0.054878849536180496, + 0.03873905912041664, + 0.025509227067232132, + -0.04155408963561058, + 0.012944856658577919, + -0.050771575421094894, + 0.06610047817230225, + 0.027541060000658035, + -0.037750087678432465, + 0.019718032330274582, + -2.3612287236574048e-08, + -0.04451911523938179, + -0.01848493702709675, + 0.0016910401172935963, + -0.029503872618079185, + 0.032029300928115845, + -0.12790164351463318, + -0.025266950950026512, + -0.09712046384811401, + -0.008846255950629711, + -0.0024514570832252502, + 0.015275396406650543, + 0.046524886041879654, + -0.0584513358771801, + -0.009136517532169819, + 0.06106617674231529, + 0.050775788724422455, + -0.08692295104265213, + -0.0038497557397931814, + -0.027441035956144333, + -0.09072374552488327, + -0.01210037712007761, + 0.012671010568737984, + 0.06090930476784706, + -0.0021056083496659994, + 0.0003401277936063707, + -0.002929770154878497, + -0.0027811764739453793, + 0.05327296629548073, + 0.013474540784955025, + 0.018842319026589394, + 0.06036563962697983, + 0.10484693199396133, + -0.08655854314565659, + 0.007195582147687674, + -0.022874290123581886, + 0.02407762035727501, + -0.07113280892372131, + -0.029466494917869568, + 0.05875503644347191, + 0.08923708647489548, + 0.041495438665151596, + -0.044276244938373566, + -0.041543908417224884, + 0.03736706078052521, + -0.029316844418644905, + 0.0263975877314806, + 0.010974349454045296, + 0.059409867972135544, + -0.04310400411486626, + -0.124409519135952, + 0.005984058137983084, + -0.06589753180742264, + 0.0010833832202479243, + 0.02598840370774269, + -0.05692953243851662, + 0.016876311972737312, + 0.10287083685398102, + 0.02587149851024151, + -0.011457365937530994, + 0.008953134529292583, + 0.09432393312454224, + 0.01650269329547882, + 0.049179915338754654, + 0.02354387193918228 + ], + "lego-bold||*new*,toys,blocks,bricks": [ + -0.08293315023183823, + -0.016822172328829765, + 0.004008950665593147, + -0.020088940858840942, + -0.003965839743614197, + -0.007344851270318031, + -0.007958107627928257, + -0.04024134576320648, + -0.029668215662240982, + 0.025769894942641258, + -0.004008445888757706, + 0.023057447746396065, + 0.004571903496980667, + -0.005356754641979933, + 0.039150871336460114, + 0.040980271995067596, + 0.074361652135849, + 0.025050301104784012, + 0.02503073588013649, + -0.03469650447368622, + 0.024979764595627785, + -0.03384701907634735, + -0.006276690401136875, + 0.013936617411673069, + 0.025961551815271378, + 0.06971602886915207, + 0.01600170135498047, + -0.03511720523238182, + 0.048844579607248306, + -0.07684698700904846, + 0.001209491048939526, + 0.012219094671308994, + 0.06023027002811432, + 0.026324903592467308, + 0.12157237529754639, + 0.022862745448946953, + 0.00551165034994483, + -0.03644594922661781, + -0.014765935949981213, + -0.030443551018834114, + 0.03433890640735626, + -0.018227925524115562, + -0.04659220203757286, + 0.03501981869339943, + -0.03069077990949154, + 0.017394689843058586, + -0.03988097980618477, + -0.06920074671506882, + 0.025636859238147736, + 0.02912512980401516, + -0.01802556961774826, + -0.08114071935415268, + -0.040684476494789124, + -0.03583536669611931, + 0.06062701717019081, + -0.03285248950123787, + 0.01895133964717388, + -0.06280288845300674, + 0.045876454561948776, + -0.012675454840064049, + 0.0033440280240029097, + 0.016985710710287094, + 0.11919933557510376, + -0.01260228268802166, + 0.04298042133450508, + -0.07114043831825256, + -0.08099549263715744, + 0.07371629774570465, + -0.026465175673365593, + 0.06871457397937775, + 0.041784368455410004, + 0.07577993720769882, + 0.07374286651611328, + 0.03230231627821922, + -3.4912925912067294e-05, + -0.05555396527051926, + -0.007677955087274313, + 0.020086992532014847, + -0.0632830411195755, + -0.018690992146730423, + -0.11163295805454254, + -0.07632125914096832, + -0.08799941837787628, + -0.09739325940608978, + -0.031098049134016037, + 0.06766564399003983, + -0.04075374826788902, + -0.0040988614782691, + -0.06719116121530533, + 0.012422795407474041, + -0.0995384231209755, + -0.03910345956683159, + 0.016529064625501633, + 0.12734882533550262, + -0.06008536368608475, + -0.022102775052189827, + 0.04982854053378105, + -0.05845380574464798, + -0.06316304951906204, + 0.0402463860809803, + -0.0025859258603304625, + 0.05169394612312317, + 0.057172711938619614, + 0.013278120197355747, + -0.024834023788571358, + -0.05159440264105797, + -0.07242422550916672, + -0.026920555159449577, + 0.016551870852708817, + 0.052326519042253494, + -0.03005165420472622, + -0.10031905770301819, + -0.0030956491827964783, + -0.026358505710959435, + -0.1251564621925354, + -0.11050864309072495, + -0.05219326168298721, + -0.05605878680944443, + 0.09066622704267502, + 0.08522453159093857, + 0.12491456419229507, + -0.00809155497699976, + 0.05213365703821182, + -0.03433797135949135, + -0.051873184740543365, + -0.02409036085009575, + -0.0310943853110075, + -3.8400524153624465e-33, + 0.03803827986121178, + 0.0585031658411026, + -0.017218777909874916, + 0.13524645566940308, + -0.015047539956867695, + 0.008813073858618736, + 0.03541099652647972, + -0.0027602571062743664, + -0.024779485538601875, + 0.07148118317127228, + -0.002970787463709712, + 0.010263937525451183, + -0.05389918386936188, + 0.053826481103897095, + -0.014981837011873722, + -0.08604185283184052, + -0.07576023787260056, + -0.0735456719994545, + -0.042575228959321976, + 0.04613806679844856, + -0.07835891097784042, + 0.10496095567941666, + 0.015021510422229767, + 0.04106488823890686, + -0.001121043344028294, + -0.039791129529476166, + 0.031626541167497635, + -0.0568542517721653, + -0.06336351484060287, + 0.04236071556806564, + 0.009779144078493118, + 0.03018125332891941, + 0.05603518337011337, + 0.03928311541676521, + 0.016710501164197922, + 0.07146015763282776, + -0.004866012372076511, + -0.061547793447971344, + -0.02417430840432644, + -0.004067586734890938, + -0.011266245506703854, + -0.0671904906630516, + -0.05594949424266815, + 0.01366307120770216, + 0.006228856276720762, + 0.06948088109493256, + 0.005157824605703354, + -0.04910959303379059, + -0.00971628911793232, + 0.007379297167062759, + -0.001131461700424552, + 0.0077036297880113125, + -0.07110245525836945, + -0.037317633628845215, + 0.003690420649945736, + -0.12103285640478134, + -0.02835630252957344, + 0.0003938706067856401, + 0.056839220225811005, + -0.03978230804204941, + 0.0761902779340744, + 0.029840625822544098, + 0.010561779141426086, + 0.060626320540905, + -0.08009320497512817, + 0.10951372236013412, + 0.036067187786102295, + 0.05265699326992035, + 0.06662613153457642, + 0.0334358811378479, + 0.000839962565805763, + 0.021953027695417404, + -0.003818520111963153, + 0.027123145759105682, + -0.0004890328273177147, + -0.016006186604499817, + -0.03381970152258873, + 0.024159951135516167, + -0.04789483919739723, + -0.05515434220433235, + 0.007518909405916929, + 0.06785588711500168, + -0.06056253984570503, + 0.07820380479097366, + 0.012706732377409935, + -0.010203754529356956, + -0.008487685583531857, + -0.027539005503058434, + -0.012634635902941227, + 0.05656999349594116, + -0.07134276628494263, + -0.07533552497625351, + -0.03461192175745964, + -0.048356104642152786, + -0.03292340412735939, + -8.163046605814526e-35, + 0.02418961375951767, + -0.03478693589568138, + 0.01224069856107235, + -0.03857780247926712, + -0.006523871794342995, + -0.03098698891699314, + -0.027432959526777267, + 0.05050879716873169, + 0.03356292098760605, + 0.08398643136024475, + -0.017698051407933235, + 0.0014988150214776397, + -0.016081035137176514, + -0.02751508355140686, + 0.04622888192534447, + 0.03299551457166672, + 0.021467110142111778, + 0.008908867835998535, + 0.05656616389751434, + 1.076721673598513e-05, + -0.022026168182492256, + -0.010835330933332443, + -0.12166600674390793, + 0.06788323819637299, + -0.029177583754062653, + 0.055959440767765045, + -0.021397627890110016, + -0.030557051301002502, + -0.015020382590591908, + -0.018756546080112457, + -0.03637285903096199, + -0.08103451132774353, + 0.001628766767680645, + 0.14881309866905212, + -0.029629042372107506, + -0.03025565668940544, + 0.0062330602668225765, + -0.04151800274848938, + 0.05986650660634041, + -0.12444088608026505, + 0.0022910914849489927, + -0.003220026381313801, + 0.005233901087194681, + 0.0895296186208725, + -0.018900789320468903, + -0.03987707942724228, + -0.022570502012968063, + 0.007027031853795052, + 0.004345776978880167, + 0.06721722334623337, + 0.019379034638404846, + -0.007982817478477955, + 0.002280266024172306, + -0.11874444037675858, + -0.04633307084441185, + 0.01916712149977684, + -0.04085033759474754, + -1.7241438399651088e-05, + 0.08319266885519028, + 0.09392660111188889, + 0.041280344128608704, + 0.032915424555540085, + -0.01883801817893982, + 0.056081242859363556, + -0.05764526501297951, + -0.03671296313405037, + 0.03562276437878609, + -0.04423365369439125, + 0.016941435635089874, + -0.008355308324098587, + 0.008964955806732178, + 0.15669050812721252, + -0.022827796638011932, + -0.030105916783213615, + -0.01806962490081787, + -0.01161397248506546, + -0.005179760977625847, + 0.058561772108078, + 0.01582524925470352, + -0.028070293366909027, + -0.03329802677035332, + -0.007925107143819332, + 0.002799908397719264, + 0.06323694437742233, + 0.014554898254573345, + 0.04931332916021347, + -0.03678107261657715, + 0.052500467747449875, + -0.019379058852791786, + -0.04599745571613312, + -0.007859659381210804, + 0.05441142991185188, + -0.008059779182076454, + 0.01838015578687191, + -0.02898932807147503, + -1.9371929838030155e-08, + -0.010424565523862839, + 0.00510705541819334, + -0.08983655273914337, + -0.07970680296421051, + -0.008022786118090153, + -0.03597603738307953, + -0.07188935577869415, + -0.025286490097641945, + -0.04864710941910744, + -0.02187005802989006, + 0.0957266315817833, + 0.04080349951982498, + -0.04941575974225998, + 0.016448767855763435, + 0.023408683016896248, + 0.026248810812830925, + -0.03854222223162651, + 0.06409164518117905, + -0.0035547418519854546, + 0.00410870648920536, + -0.017127929255366325, + 0.058580197393894196, + 0.041113995015621185, + 0.05483481287956238, + -0.05817573890089989, + 0.026999959722161293, + -0.06335081160068512, + -0.08408176153898239, + 0.09310413151979446, + 0.037011343985795975, + 0.08484449982643127, + 0.020850934088230133, + 0.026747215539216995, + 0.02170243300497532, + -0.05839511752128601, + -0.04847235232591629, + -0.04566109925508499, + 0.02818414755165577, + -0.011383562348783016, + 0.04330527037382126, + 0.056672319769859314, + -0.04658041521906853, + -0.014182577840983868, + -0.05518520623445511, + -0.08878161758184433, + -0.00391929317265749, + -0.09831546992063522, + -0.07718253135681152, + -0.10749460011720657, + -0.07697734236717224, + -0.02335147187113762, + 0.019945023581385612, + -0.05800364539027214, + 0.05066794902086258, + 0.0723646730184555, + 0.007119129411876202, + 0.010875508189201355, + 0.012686124071478844, + 0.026626449078321457, + -0.02303575538098812, + 0.12464548647403717, + -0.03518475592136383, + 0.09660350531339645, + 0.11970552057027817 + ], + "lego-smiley-bold||*new*,face,emoji,toys,blocks,bricks": [ + -0.08367440849542618, + -0.012116075493395329, + 0.04302462935447693, + -0.020154302939772606, + 0.02249099686741829, + -0.042103253304958344, + 0.048394206911325455, + -0.051667843014001846, + 0.002375137060880661, + -0.0028849225491285324, + 0.059695787727832794, + -0.018585050478577614, + 0.04003172740340233, + 0.001847142935730517, + 0.062123946845531464, + 0.04071144014596939, + 0.04161197319626808, + 0.013682170771062374, + 0.007537452038377523, + -0.01951570436358452, + 0.0017539820400997996, + -0.06131955608725548, + -8.30454591778107e-05, + 0.005315323825925589, + 0.027810027822852135, + 0.05968550965189934, + -0.024453923106193542, + 0.0006497763097286224, + 0.04237450659275055, + -0.09043800830841064, + -0.006176306400448084, + -0.015760336071252823, + 0.09040414541959763, + 0.04175175353884697, + 0.08198413997888565, + 0.04497865214943886, + -0.009384880773723125, + -0.004325331188738346, + -0.005423294845968485, + -0.037315014749765396, + -0.03355454280972481, + -0.08267956227064133, + -0.06119128316640854, + 0.04992379620671272, + 0.02791683003306389, + 0.017352646216750145, + -0.023931119590997696, + -0.07276993989944458, + -0.0005270725814625621, + 0.02921675145626068, + -0.014838124625384808, + -0.11567637324333191, + -0.041379138827323914, + -0.03891976177692413, + 0.04179203882813454, + -0.04042384400963783, + 0.019233739003539085, + -0.07306510955095291, + 0.06783521920442581, + 0.029578274115920067, + -0.023087704554200172, + 0.008629112504422665, + 0.12636491656303406, + 0.004623000510036945, + -0.013806073926389217, + -0.07873979955911636, + -0.045873384922742844, + 0.017623642459511757, + -0.04051881656050682, + 0.0761880874633789, + 0.05957750976085663, + 0.028784457594156265, + 0.01088695228099823, + 0.027422653511166573, + -0.02140192873775959, + -0.028773318976163864, + 0.021182065829634666, + -0.025044551119208336, + -0.02413097955286503, + 0.015642108395695686, + -0.09560617059469223, + -0.04504336044192314, + -0.08580518513917923, + -0.04870767146348953, + 0.016235224902629852, + 0.08009354025125504, + -0.059479258954524994, + -0.014947797171771526, + -0.07512766867876053, + 0.03141914680600166, + -0.10979502648115158, + -0.04604798182845116, + 0.09582340717315674, + 0.08329261839389801, + -0.04799651727080345, + -0.02415350265800953, + 0.06753380596637726, + -0.0605754479765892, + -0.091226726770401, + 0.08348765224218369, + -0.023633357137441635, + 0.026902541518211365, + 0.03714560717344284, + 0.006320783868432045, + 0.031957969069480896, + -0.04365246742963791, + -0.05709855258464813, + -0.05375588312745094, + 0.03767422214150429, + 0.014784401282668114, + -0.045599013566970825, + -0.09900486469268799, + -0.013577702455222607, + -0.05427456274628639, + -0.07500334084033966, + -0.09646286815404892, + -0.06842269003391266, + -0.01124382670968771, + 0.13467586040496826, + 0.07244580239057541, + 0.11562912166118622, + -0.021941909566521645, + 0.008589016273617744, + -0.03828989341855049, + -0.04178828373551369, + 0.003297516843304038, + -0.036694690585136414, + -2.5881713192168573e-33, + 0.05098531022667885, + 0.07276874035596848, + -0.01157173328101635, + 0.10674118250608444, + 0.0009204221423715353, + 0.003180721076205373, + -0.0209303330630064, + -0.0034703966230154037, + -0.07467778027057648, + 0.010532661341130733, + 0.008868727833032608, + 0.04521967098116875, + -0.07308589667081833, + 0.1083301305770874, + -0.006459936033934355, + -0.07214170694351196, + -0.03433855623006821, + -0.07054582983255386, + -0.025638215243816376, + -0.00011658552830340341, + -0.04499771445989609, + 0.030018504709005356, + 0.013501804322004318, + 0.045026592910289764, + -0.03159775957465172, + -0.030887186527252197, + 0.06686322391033173, + -0.03641291335225105, + -0.037482697516679764, + 0.030347775667905807, + -0.009301654063165188, + 0.03958747163414955, + 0.06707734614610672, + -0.004871457815170288, + 0.0487930104136467, + 0.0429081916809082, + -0.009093630127608776, + -0.065559521317482, + -0.039567168802022934, + -0.00268433871679008, + 0.004544110968708992, + -0.06701821833848953, + -0.09888840466737747, + 0.002465606899932027, + 0.01793304830789566, + 0.07767040282487869, + -0.0021277836058288813, + -0.033073388040065765, + 0.03097641095519066, + -0.031063716858625412, + -0.008115652948617935, + 0.014229952357709408, + -0.06456313282251358, + -0.04042431712150574, + -0.02490190789103508, + -0.14141875505447388, + -0.02916455641388893, + -0.035886187106370926, + 0.0009904775070026517, + -0.0374508872628212, + 0.0014291312545537949, + 0.006577409338206053, + 0.062163691967725754, + 0.0013715150998905301, + -0.06336236745119095, + 0.060899123549461365, + 0.006123050581663847, + 0.03344893828034401, + 0.029443208128213882, + 0.04201412945985794, + 0.03136291727423668, + 0.08177059143781662, + 0.012589825317263603, + -0.004884670488536358, + -0.057904209941625595, + -0.014958874322474003, + -0.013844361528754234, + 0.0572836771607399, + -0.04138202220201492, + -0.002007456496357918, + 0.0021548038348555565, + 0.03722666576504707, + -0.08480160683393478, + 0.02451859414577484, + 0.055393464863300323, + -0.028520142659544945, + -0.001168154994957149, + -0.07867511361837387, + -0.04330507665872574, + 0.0568988136947155, + -0.06631381064653397, + -0.07171570509672165, + -0.008984535932540894, + -0.03161190450191498, + -0.09307201951742172, + -4.135028958856313e-35, + -0.020069992169737816, + -0.04348123446106911, + -0.024274956434965134, + -0.008832331746816635, + -0.02088278718292713, + -0.021949147805571556, + 0.03200511634349823, + 0.07940766960382462, + 0.027698233723640442, + 0.0934966579079628, + -0.023834431543946266, + 0.021656963974237442, + -0.013168328441679478, + -0.06586037576198578, + 0.05096512660384178, + 0.04516126215457916, + 0.04496736451983452, + 0.016013575717806816, + 0.041324734687805176, + 0.018685808405280113, + -0.042906783521175385, + -0.03256845846772194, + -0.094851553440094, + 0.08137643337249756, + 0.0003442312008701265, + 0.08241666108369827, + -0.008127476088702679, + -0.03147512674331665, + -0.02111796848475933, + -0.022730795666575432, + -0.03347714617848396, + -0.04430248215794563, + 0.02600129507482052, + 0.11068243533372879, + -0.002730816137045622, + -0.054463889449834824, + -0.020463895052671432, + -0.045044366270303726, + 0.018194371834397316, + -0.07541441917419434, + 0.03492531180381775, + 0.004915028344839811, + 0.027870044112205505, + 0.12997858226299286, + 0.010645586997270584, + -0.018413951620459557, + -0.08375810086727142, + -0.03705643489956856, + 0.0053955805487930775, + 0.0792185589671135, + 0.06777558475732803, + -0.05312677472829819, + -0.026118194684386253, + -0.08323363214731216, + -0.03046424314379692, + 0.002445152262225747, + -0.03417488932609558, + 0.04086457937955856, + 0.049065545201301575, + 0.07116551697254181, + 0.0415809340775013, + -0.014483838342130184, + 0.008208518847823143, + 0.07566872984170914, + -0.07708626985549927, + -0.02309964783489704, + 0.05726976320147514, + -0.022176111117005348, + -0.011803739704191685, + -0.03517887741327286, + 0.07190242409706116, + 0.13841579854488373, + -0.021371914073824883, + -0.04453728348016739, + -0.004876235965639353, + -0.030532363802194595, + 0.006698059383779764, + 0.06270208954811096, + -0.017817601561546326, + 0.001406228169798851, + -0.0361979678273201, + 0.010563677176833153, + -0.007623435463756323, + 0.05681217834353447, + -0.013427800498902798, + 0.016408095136284828, + -0.029111405834555626, + 0.09772168099880219, + -0.01381424069404602, + -0.006461134180426598, + -0.015409420244395733, + 0.13942641019821167, + 0.012885818257927895, + 0.04829207435250282, + 0.003932301886379719, + -2.1718253861990888e-08, + -0.005791548639535904, + -0.0355595126748085, + -0.059485115110874176, + -0.08899564296007156, + 0.004564756061881781, + -0.010998017154633999, + -0.033293917775154114, + -0.057746563106775284, + -0.031973619014024734, + -0.038769111037254333, + 0.11970476806163788, + 0.056085120886564255, + -0.08098441362380981, + 0.004201279953122139, + 0.018479876220226288, + 0.03159616142511368, + -0.06218736246228218, + 0.0860152393579483, + 0.03491926193237305, + -0.027780376374721527, + -0.014828198589384556, + 0.10147461295127869, + 0.0189211443066597, + 0.04083549231290817, + -0.06464426964521408, + -0.02067686803638935, + -0.04555710777640343, + -0.037371642887592316, + 0.017663531005382538, + 0.012467896565794945, + 0.06419575214385986, + -0.006439617834985256, + 0.039900071918964386, + -0.049059927463531494, + -0.054175131022930145, + -0.02202490344643593, + -0.03902636840939522, + -0.035314835608005524, + 0.020002543926239014, + 0.07537529617547989, + 0.09764482080936432, + -0.030272673815488815, + 0.010991213843226433, + -0.05438786372542381, + -0.11002176254987717, + 0.004146541003137827, + -0.042309828102588654, + -0.06730267405509949, + -0.07565690577030182, + -0.08724228292703629, + -0.016272669658064842, + 0.010352483950555325, + -0.06225474923849106, + 0.060105517506599426, + 0.046438511461019516, + 0.015053990297019482, + 0.029065219685435295, + 0.0351279079914093, + 0.048042211681604385, + 0.0004662327410187572, + 0.1450275033712387, + -0.000574846810195595, + 0.06665627658367157, + 0.09037097543478012 + ], + "less-than-bold||*new*,<,less than,lt,comparison,mathematics,arithmetic,calculator": [ + 0.01584901101887226, + 0.019734561443328857, + -0.019521141424775124, + -0.019416697323322296, + -0.03484387695789337, + -0.04949202761054039, + -0.08339379727840424, + 0.018944332376122475, + -0.007373138330876827, + 0.043420545756816864, + 0.015129294246435165, + -0.0012660813517868519, + 0.08801800012588501, + -0.0041440618224442005, + 0.022433795034885406, + 0.0037041804753243923, + 0.03291284665465355, + 0.015085887163877487, + -0.03920099511742592, + -0.026983587071299553, + 0.014898525550961494, + 0.026744641363620758, + -0.05348440632224083, + 0.09900572150945663, + 0.06193297728896141, + -0.05518219992518425, + 0.013378098607063293, + -0.027019288390874863, + 0.08924390375614166, + -0.003695169696584344, + -0.06868340075016022, + 0.01720854453742504, + 0.12258561700582504, + 0.0038597031962126493, + -0.006287090014666319, + -0.000967644969932735, + 0.021662253886461258, + 0.008102896623313427, + -0.007905298843979836, + 0.032210227102041245, + -0.09557253122329712, + -0.08778275549411774, + 0.05619509145617485, + 0.07837937772274017, + -0.0902571901679039, + 0.0009828945621848106, + -0.10313323140144348, + -0.05320115014910698, + -0.024295063689351082, + -0.02555396966636181, + -0.080234594643116, + -0.0003067469806410372, + -0.12127169221639633, + -0.05142407864332199, + -0.0175715871155262, + -0.00492148008197546, + -0.056149255484342575, + -0.08488830924034119, + -0.018268847838044167, + -0.07340773195028305, + 0.01479342021048069, + -0.014805284328758717, + 0.051789313554763794, + -0.00889174547046423, + 0.01642979308962822, + 0.01242924202233553, + -0.01484253816306591, + 0.0005007292493246496, + -0.0016334560932591558, + 0.11979497969150543, + -0.02341829054057598, + 0.019439365714788437, + -0.0400095209479332, + 0.06021590903401375, + -0.0389474481344223, + -0.028476634994149208, + 0.03771577030420303, + 0.011472933925688267, + -0.014710848219692707, + -0.03444197028875351, + -0.059685252606868744, + -0.02060152404010296, + -0.07627755403518677, + 0.01177011989057064, + 0.033218543976545334, + 0.005851483903825283, + 0.021617475897073746, + -0.07544058561325073, + 0.05001171678304672, + -0.05510841682553291, + -0.003023284487426281, + 0.013759554363787174, + -0.023665355518460274, + 0.07142700254917145, + -0.05973031371831894, + -0.0008664039778523147, + 0.07668960094451904, + -0.03886521980166435, + -0.004659550730139017, + 0.10471183061599731, + 0.023172475397586823, + 0.05176519230008125, + 0.03320848196744919, + -0.03834568336606026, + -0.008389229886233807, + -0.0766819566488266, + 0.015936115756630898, + -0.050474680960178375, + 0.05112641677260399, + -0.04587763175368309, + 0.05799461528658867, + -0.07795561105012894, + -0.018843287602066994, + -0.023807872086763382, + 0.008590906858444214, + -0.04583853483200073, + 0.006474100984632969, + -0.009781336411833763, + 0.07028661668300629, + 0.05446981266140938, + 0.007976857014000416, + -0.013688459061086178, + -0.03193549066781998, + 0.021167073398828506, + -0.002060452476143837, + -0.017076456919312477, + -0.06243805214762688, + -1.7330592394081305e-33, + 0.05360514298081398, + 0.04497898742556572, + -0.019295303151011467, + 0.06089261546730995, + 0.01882387511432171, + 0.030942954123020172, + -0.07854574918746948, + -0.07254339754581451, + -0.0715012401342392, + 0.07694132626056671, + 0.0827675610780716, + 0.13656380772590637, + -4.903757871943526e-05, + 0.04974871501326561, + 0.13882414996623993, + -0.08816925436258316, + -0.018552113324403763, + -0.0733882412314415, + -0.024598533287644386, + -0.04755091667175293, + -0.06360379606485367, + -0.041357457637786865, + -0.0561893954873085, + 0.03632115572690964, + -0.029643824324011803, + -0.0069940113462507725, + 0.03213950991630554, + -0.02907964028418064, + -0.060355786234140396, + -0.0055099972523748875, + -0.012057616375386715, + -0.008280382491648197, + 0.04262230917811394, + 0.006382898427546024, + 0.06279198825359344, + 0.011017649434506893, + -0.052293047308921814, + -0.019921865314245224, + 0.09484490007162094, + -0.01768406480550766, + -0.11501330137252808, + -0.021092554554343224, + 0.021433886140584946, + -0.063386932015419, + 0.12471941113471985, + 0.02916702814400196, + 0.00039582548197358847, + 0.03637747839093208, + 0.02075817622244358, + -0.042407549917697906, + -0.0420013852417469, + 0.01691264845430851, + -0.031143752858042717, + 0.02825995720922947, + 0.04269736260175705, + -0.03815845027565956, + -0.015296862460672855, + 0.06318137049674988, + 0.011903938837349415, + 0.05057128518819809, + -0.04128023982048035, + 0.05250302702188492, + 0.057823944836854935, + -0.07660391181707382, + -0.0767105370759964, + 0.003629963845014572, + -0.10222078114748001, + -0.024452360346913338, + 0.09476934373378754, + 0.07634446024894714, + -0.03785369172692299, + 0.06450355052947998, + -0.02446855418384075, + 0.04932165518403053, + 0.047378525137901306, + 0.055732592940330505, + 0.045026808977127075, + -0.03139495477080345, + 0.06706134974956512, + -0.10132274031639099, + -0.05827966704964638, + 0.009647713042795658, + 0.03290810063481331, + 0.03010351024568081, + 0.008689722046256065, + -0.017431028187274933, + 0.02861536666750908, + 0.00041452154982835054, + 0.005441083572804928, + -0.03886678069829941, + -0.09575043618679047, + -0.046808380633592606, + -0.013273999094963074, + -0.07443009316921234, + -0.0459982305765152, + -2.019795188681311e-33, + -0.02703327126801014, + 0.031416621059179306, + -0.02817307785153389, + 0.04658583551645279, + -0.05802120268344879, + 0.015474560670554638, + 0.06871861964464188, + -0.046655867248773575, + 0.02495872788131237, + -0.036986663937568665, + 0.05451033636927605, + 0.032642874866724014, + 0.03222194314002991, + -0.05368027463555336, + 0.03276780992746353, + 0.050558578222990036, + -0.002355927834287286, + -0.039904262870550156, + -0.06415055692195892, + 0.02207663282752037, + -0.009473595768213272, + 0.07338522374629974, + -0.028299503028392792, + 0.06914865225553513, + -0.03146054223179817, + -0.026573020964860916, + 0.03310081735253334, + 0.042220018804073334, + -0.05342695489525795, + -0.0890299528837204, + -0.02940516173839569, + -0.04252825677394867, + 0.0871085375547409, + -0.007278741337358952, + -0.0782894566655159, + -0.027053454890847206, + 0.10252109169960022, + -0.04107440263032913, + -0.0037327196914702654, + 0.017538508400321007, + 0.016366278752684593, + -0.005653014872223139, + 0.09987104684114456, + -0.002782420953735709, + -0.021052086725831032, + 0.01629544608294964, + -0.039676982909440994, + -0.06901353597640991, + 0.0032929610460996628, + 0.04030034691095352, + 0.02751835435628891, + -0.06171850487589836, + -0.02599843218922615, + 0.04445477947592735, + -0.07450542598962784, + -0.04045318439602852, + 0.01182512752711773, + 0.034654129296541214, + -0.005480601917952299, + 0.09128342568874359, + -0.028334015980362892, + 0.038846455514431, + 0.03665516898036003, + 0.04684724658727646, + -0.0436561219394207, + -0.08058037608861923, + -0.011003302410244942, + 0.054524026811122894, + 0.004753678105771542, + -0.010564855299890041, + 0.059681642800569534, + 0.04377761483192444, + 0.03131868690252304, + -0.03644030541181564, + -0.06399379670619965, + -0.08514173328876495, + 0.03526495024561882, + 0.05463064834475517, + 0.004028682131320238, + 0.002359027974307537, + 0.032074686139822006, + 0.050953201949596405, + 0.023860154673457146, + -0.004748888313770294, + -0.08350103348493576, + 0.0845116525888443, + -0.009480594657361507, + -0.0005614554393105209, + 0.005295350216329098, + -0.03099735453724861, + -0.08670627325773239, + 0.06606178730726242, + 0.008585567586123943, + -0.10942962020635605, + -0.016714492812752724, + -2.7823135795301823e-08, + -0.01125992089509964, + -0.04751027002930641, + -0.036101944744586945, + -0.04916451871395111, + 0.04084491357207298, + 0.043080009520053864, + -0.036052122712135315, + -0.06846794486045837, + -0.047719571739435196, + 0.0013005497166886926, + 0.07844478636980057, + 0.03762400895357132, + -0.06704524159431458, + -0.021431639790534973, + 0.034873317927122116, + 0.030671941116452217, + 0.02383732981979847, + -0.042089421302080154, + -0.00022707429889123887, + -0.07863946259021759, + -0.02043865993618965, + 0.04429391399025917, + 0.06163569912314415, + -0.011149675585329533, + 0.034984298050403595, + 0.014128108508884907, + -0.06720330566167831, + 0.0659639984369278, + 0.03209981322288513, + 0.02498709224164486, + 0.11051958799362183, + 0.075892373919487, + 0.024084826931357384, + -0.060355860739946365, + -0.03725237026810646, + 0.04711442068219185, + 0.004294632468372583, + 0.07697097957134247, + -0.025026580318808556, + 0.04852842539548874, + -0.10412688553333282, + -0.031093450263142586, + -0.055802129209041595, + 0.0040308465249836445, + 0.06781956553459167, + -0.04662669822573662, + 0.024249695241451263, + -0.05735218897461891, + -0.006352426018565893, + -0.13963641226291656, + 0.0053160828538239, + 0.08089553564786911, + 0.03465981408953667, + 0.02611703984439373, + -0.037653885781764984, + -0.05557253211736679, + -0.04170120134949684, + 0.10017096251249313, + -0.09090037643909454, + -0.002563610440120101, + 0.15688087046146393, + -0.022440409287810326, + 0.05461250618100166, + 0.0034839147701859474 + ], + "less-than-or-equal-bold||*new*,\u2264,less than or equal,lte,comparison,mathematics,arithmetic,calculator": [ + -0.009377576410770416, + 0.010061084292829037, + 0.00879333820194006, + -0.035383787006139755, + -0.0548517070710659, + -0.06616160273551941, + -0.05432736873626709, + 0.05462976172566414, + 0.004898781888186932, + 0.018198570236563683, + 0.001295709516853094, + -0.009880506433546543, + 0.10889256745576859, + -0.006447328720241785, + 0.04034694656729698, + 0.00610626395791769, + 0.02057671919465065, + -0.006507608108222485, + -0.053364526480436325, + -0.05109991133213043, + 0.04111276939511299, + 0.0002662836923263967, + -0.05394646152853966, + 0.06888756155967712, + 0.10406989604234695, + -0.07034284621477127, + 0.015877615660429, + -0.025803737342357635, + 0.09551431238651276, + -0.019903473556041718, + -0.05116656795144081, + -0.005146977957338095, + 0.13669158518314362, + 0.03201570734381676, + -0.06413162499666214, + -0.04728927090764046, + 0.022045588120818138, + -0.05002887174487114, + 0.017648912966251373, + 0.026259813457727432, + -0.09369588643312454, + -0.09886017441749573, + 0.0524640828371048, + 0.054448507726192474, + -0.0858035683631897, + 0.00814292673021555, + -0.07766314595937729, + -0.02223055437207222, + -0.010363415814936161, + -0.06585638970136642, + -0.0036483227740973234, + -0.008986747823655605, + -0.11719625443220139, + -0.030696459114551544, + 0.0016938098706305027, + 0.010072443634271622, + -0.07675540447235107, + -0.014516484923660755, + 0.01214634533971548, + -0.00843617133796215, + -0.011246244423091412, + -0.007718958891928196, + 0.028212949633598328, + 0.044089652597904205, + 0.026031408458948135, + 0.022134236991405487, + -0.02155110612511635, + 0.030544012784957886, + -0.01783071644604206, + 0.08535885810852051, + -0.049690209329128265, + 0.014069848693907261, + -0.08165742456912994, + 0.06760365515947342, + -0.023510269820690155, + -0.011764817871153355, + 0.048465874046087265, + 0.025711433961987495, + 0.003007864812389016, + -0.01445617526769638, + -0.053532764315605164, + -0.04533814266324043, + -0.06070094555616379, + -0.01597287505865097, + 0.0761088952422142, + -0.011881527490913868, + 0.039726532995700836, + -0.05034444481134415, + 0.08628997206687927, + -0.06262671202421188, + -0.036107391119003296, + 0.06248995661735535, + -0.022540826350450516, + 0.08404472470283508, + -0.06167461723089218, + 0.005465014837682247, + 0.03980289399623871, + -0.055845387279987335, + -0.02508450858294964, + 0.1356518268585205, + 0.01645045168697834, + 0.04931383207440376, + 0.012110196053981781, + -0.015003002248704433, + -0.016461046412587166, + -0.07511438429355621, + 0.0569879487156868, + -0.022884972393512726, + 0.042377132922410965, + -0.056031011044979095, + 0.0552937313914299, + -0.046094026416540146, + 0.016000408679246902, + -0.019877556711435318, + -0.010896526277065277, + -0.009900597855448723, + 0.0077123199589550495, + 0.025130804628133774, + 0.09747276455163956, + -0.0009249895811080933, + -0.03309769555926323, + -0.035677470266819, + -0.016520708799362183, + 0.0219712071120739, + 0.017341241240501404, + -0.019788235425949097, + -0.060589391738176346, + -5.974991867481608e-34, + 0.020494218915700912, + 0.043423429131507874, + -0.027242591604590416, + 0.03553559631109238, + 0.021128488704562187, + 0.05169752985239029, + -0.0958518460392952, + -0.057706259191036224, + -0.056700631976127625, + 0.07371088862419128, + 0.045980893075466156, + 0.12956254184246063, + -0.00367288407869637, + 0.03068568743765354, + 0.1366671323776245, + -0.0884326621890068, + -0.027361759915947914, + -0.03234143927693367, + -0.026519762352108955, + -0.06110725924372673, + -0.033280499279499054, + -0.09155593067407608, + -0.05712926387786865, + 0.03784875199198723, + -0.007494476158171892, + -0.021349286660552025, + 0.029854409396648407, + -0.04474411532282829, + -0.0014408794231712818, + -0.006098218262195587, + -0.013633566908538342, + -0.015444866381585598, + 0.0234827883541584, + 0.0009272385505028069, + 0.04294614493846893, + 0.004666513297706842, + -0.028030162677168846, + -0.02689749002456665, + 0.06762721389532089, + 0.011858389712870121, + -0.1299651563167572, + -0.015667812898755074, + 0.009422696195542812, + -0.09813739359378815, + 0.09899011999368668, + -0.013584212400019169, + -0.034275542944669724, + 0.012457937933504581, + 0.04932353273034096, + -0.003913538996130228, + -0.05188020318746567, + -0.0005433335900306702, + -0.016220005229115486, + 0.008597838692367077, + 0.05850154906511307, + -0.004086836241185665, + 0.004318599123507738, + 0.07750184088945389, + 0.0671532079577446, + 0.07046031206846237, + -0.0414789579808712, + 0.0430075041949749, + 0.04991450533270836, + -0.08448079973459244, + -0.07533438503742218, + 0.035790856927633286, + -0.09638499468564987, + -0.05477232486009598, + 0.08674540370702744, + 0.08115796744823456, + -0.016873838379979134, + 0.0023019807413220406, + 0.008628618903458118, + 0.026680350303649902, + 0.058311671018600464, + 0.033220063894987106, + 0.02083522267639637, + -0.0017662920290604234, + 0.04949906840920448, + -0.07641155272722244, + -0.06283813714981079, + 0.005223941523581743, + 0.019238412380218506, + 0.0056265913881361485, + 0.01757516898214817, + -0.03634221851825714, + 0.009334620088338852, + -0.032920267432928085, + -0.013339131139218807, + 0.017819471657276154, + -0.09861587733030319, + -0.015963304787874222, + -0.014631180092692375, + -0.034482140094041824, + -0.03320978209376335, + -8.034962146996163e-34, + -0.046112194657325745, + 0.04989214241504669, + -0.01388958003371954, + 0.0598423108458519, + -0.028056511655449867, + -0.019242072477936745, + 0.08085398375988007, + -0.036075152456760406, + 0.057315800338983536, + -0.023160191252827644, + 0.08454844355583191, + 0.010895109735429287, + -0.004780406132340431, + -0.0481736958026886, + 0.017010224983096123, + 0.005880550015717745, + -0.0032495881896466017, + -0.04224494844675064, + -0.05179084837436676, + 0.03282666951417923, + -0.02242990769445896, + 0.06676062196493149, + -0.026004459708929062, + 0.07445689290761948, + 0.021659132093191147, + -0.013793702237308025, + -0.008131194859743118, + 0.0666716918349266, + -0.042957331985235214, + -0.098097063601017, + -0.0493810698390007, + -0.06277327984571457, + 0.06425536423921585, + 0.031657785177230835, + -0.045505277812480927, + -0.018613500520586967, + 0.1525139957666397, + -0.015058597549796104, + 0.008053265511989594, + 0.03726774826645851, + 0.0472157783806324, + -0.025806479156017303, + 0.0764399915933609, + 0.009317582473158836, + -0.0074504972435534, + 0.01113981381058693, + -0.055985450744628906, + -0.0399632565677166, + 0.0029738000594079494, + -0.00023107606102712452, + 0.09638845920562744, + -0.045602913945913315, + -0.019208896905183792, + 0.059952422976493835, + -0.07270501554012299, + -0.04209890961647034, + 0.02017851732671261, + 0.02096986025571823, + -0.013146432116627693, + 0.0737457200884819, + -0.02591799944639206, + 0.00576611515134573, + 0.013448810204863548, + 0.07733893394470215, + -0.06206623837351799, + -0.09584463387727737, + -0.023014575242996216, + 0.07172658294439316, + -0.00022571819135919213, + 0.011029791086912155, + 0.0536988191306591, + 0.008243655785918236, + 0.02244090475142002, + -0.061321672052145004, + -0.0376921109855175, + -0.08843673020601273, + 0.05240662768483162, + 0.05116230621933937, + 0.012908931821584702, + 0.011807361617684364, + -0.0017611923394724727, + 0.09261482954025269, + -0.0018264652462676167, + -0.02240093983709812, + -0.08724977821111679, + 0.08348996192216873, + 0.010908743366599083, + -0.016497185453772545, + -0.014132012613117695, + -0.028884021565318108, + -0.11140841990709305, + 0.08805743604898453, + -0.020098188892006874, + -0.06872066855430603, + -0.03226976841688156, + -3.09730552316978e-08, + -0.012504738755524158, + -0.053376611322164536, + -0.0287732295691967, + -0.037580352276563644, + 0.07691508531570435, + 0.007389005273580551, + -0.024207506328821182, + -0.08969450742006302, + -0.004724845755845308, + -0.01614321395754814, + 0.04939045384526253, + 0.026490312069654465, + -0.09005618095397949, + -0.01267204899340868, + 0.01639842428267002, + 0.03736226260662079, + -0.02033533714711666, + -0.038252029567956924, + -0.015025063417851925, + -0.045784614980220795, + 0.03735116496682167, + 0.06270408630371094, + 0.0693625956773758, + -0.021339308470487595, + 0.06954590976238251, + 0.0221867635846138, + -0.06583268940448761, + 0.07765994220972061, + 0.02539077214896679, + 0.0346791073679924, + 0.0744616761803627, + 0.07861021161079407, + 0.038768891245126724, + -0.08076367527246475, + -0.008426565676927567, + 0.043650832027196884, + 0.00442916713654995, + 0.07135554403066635, + -0.044154368340969086, + 0.07429349422454834, + -0.09683240950107574, + -0.026720790192484856, + -0.026547260582447052, + -0.009576968848705292, + 0.10693954676389694, + -0.018433544784784317, + 0.047092266380786896, + -0.027807777747511864, + -0.0033328277058899403, + -0.14202164113521576, + 0.011359321884810925, + 0.05154760926961899, + 0.02404559776186943, + -0.029537487775087357, + -0.041055914014577866, + -0.09210870414972305, + -0.0202751774340868, + 0.0634152963757515, + -0.06678028404712677, + 0.02304442785680294, + 0.1343105137348175, + -0.013851668685674667, + 0.07487299293279648, + -0.00765941571444273 + ], + "letter-circle-h-bold||*new*,hospital,letter,glyph,character": [ + 0.008254078216850758, + -0.008275067433714867, + -0.030507177114486694, + 0.03345392644405365, + -0.029111580923199654, + -0.03239746391773224, + 0.05402819439768791, + -0.02343200333416462, + 0.0198378749191761, + -0.0680827721953392, + 0.07192528992891312, + -0.0057771955616772175, + 0.043673932552337646, + -0.04847452789545059, + -0.029355274513363838, + 0.01842489279806614, + -0.018078135326504707, + -0.026541484519839287, + -0.04299716651439667, + -0.019469840452075005, + -0.017338691279292107, + 0.056703317910432816, + 0.024154741317033768, + 0.047735922038555145, + 0.001976203639060259, + 0.06371086835861206, + -0.010828263126313686, + -0.025483595207333565, + 0.012627837248146534, + -0.09475607424974442, + -0.07596372067928314, + -0.005888292100280523, + 0.0949975997209549, + 0.007329962216317654, + 0.05042356997728348, + 0.06919655948877335, + -0.017147378996014595, + 0.024640655145049095, + 0.02935970574617386, + -0.002973603317514062, + 0.011547262780368328, + -0.09487204253673553, + 0.0010438777972012758, + 0.09070438891649246, + 0.003999502398073673, + 0.022665828466415405, + -0.05797918885946274, + 0.04254167526960373, + -0.03275265917181969, + 0.03135090693831444, + -0.030707525089383125, + -0.11777051538228989, + -0.14118480682373047, + 0.04661095514893532, + 0.022950872778892517, + 0.03433142602443695, + -0.03962685167789459, + -0.06782186776399612, + -0.03421545401215553, + -0.04433820769190788, + -0.050640709698200226, + 0.0021381000988185406, + 0.09208334982395172, + 0.05428566783666611, + -0.007680860348045826, + -0.026439694687724113, + 0.03331104665994644, + -0.04978582262992859, + -0.02554350160062313, + -0.015470996499061584, + 0.026845702901482582, + -0.023157941177487373, + -0.030908869579434395, + -0.011954703368246555, + -0.06831046938896179, + 0.01913638226687908, + 0.0022180264350026846, + -0.06357511878013611, + 0.06612017750740051, + -0.022058891132473946, + -0.04281439259648323, + -0.055731236934661865, + 0.02348540723323822, + 0.09319069236516953, + 0.007487533148378134, + 0.08773718774318695, + -0.07592470198869705, + -0.119461789727211, + -0.10926731675863266, + -0.023859672248363495, + -0.046455055475234985, + -0.06462312489748001, + 0.024463975802063942, + -0.018419738858938217, + -0.1125197634100914, + 0.006816360168159008, + 0.0497063584625721, + -0.04338706657290459, + -0.07671967893838882, + 0.10263678431510925, + -0.012282087467610836, + 0.008589453063905239, + 0.09916376322507858, + -0.00753044942393899, + -0.042749322950839996, + -0.05697186291217804, + 0.013468055054545403, + -0.07926491647958755, + 0.02280477248132229, + -0.0016260703559964895, + -0.02760046161711216, + -0.044726595282554626, + -0.019985657185316086, + -0.08437441289424896, + -0.01668134517967701, + 0.015384452417492867, + -0.057265058159828186, + -0.007521113380789757, + 0.11008641868829727, + 0.11504711210727692, + 0.01865939237177372, + -0.052810538560152054, + -0.048691216856241226, + -0.022217562422156334, + -0.11779095232486725, + 0.014611423946917057, + -0.0368284173309803, + -1.5943804770408634e-33, + 0.04084567353129387, + 0.10686134546995163, + -0.016938835382461548, + 0.036378342658281326, + -0.03200080618262291, + -0.013232479803264141, + -0.07235302776098251, + -0.0140488650649786, + 0.004958055447787046, + -0.019154410809278488, + 0.01119606476277113, + 0.03785325586795807, + -0.013746912591159344, + 0.058440931141376495, + -0.006044833455234766, + -0.005146866198629141, + 0.04854821786284447, + -0.04685187712311745, + -0.080835722386837, + -0.01710573211312294, + -0.025248106569051743, + 0.08181758970022202, + -0.06288252770900726, + 0.01323574036359787, + -0.040152668952941895, + -0.04089181870222092, + -0.0013613776536658406, + -0.039817601442337036, + 0.008082719519734383, + 0.03326455503702164, + 0.02177284099161625, + 0.012303302995860577, + 0.04482574388384819, + 0.013333256356418133, + -0.03065747767686844, + 0.022999366745352745, + -0.06915800273418427, + -0.048074714839458466, + 0.014697735197842121, + 0.02739708498120308, + -0.027585167437791824, + -0.014227879233658314, + -0.03450734168291092, + 0.0012468433706089854, + 0.061822403222322464, + 0.12507082521915436, + 0.02962084487080574, + -0.055550672113895416, + -0.021443497389554977, + -0.026702098548412323, + 0.012377490289509296, + -0.014119117520749569, + -0.047301605343818665, + 0.021077129989862442, + -0.0075447955168783665, + -0.025517215952277184, + -0.003753405762836337, + 0.04909041151404381, + -0.003106908407062292, + 0.05021372810006142, + 0.07299353927373886, + 0.08148263394832611, + 0.09318116307258606, + 0.026019249111413956, + -0.021306850016117096, + -0.07419449836015701, + -0.1324956864118576, + -0.0410863421857357, + 0.04936671629548073, + 0.0033748187124729156, + -0.0002460380201227963, + 0.06352727860212326, + 0.09325340390205383, + 0.09069453179836273, + -0.07286670058965683, + 0.012304363772273064, + 0.01028330996632576, + -0.025946766138076782, + -0.01479529868811369, + -0.06274206191301346, + -0.06144264340400696, + 0.028551876544952393, + -0.05605481564998627, + 0.02153615839779377, + 0.02888263761997223, + -0.022199315950274467, + 0.03377612680196762, + -0.0774882510304451, + -0.0828075185418129, + -0.024061456322669983, + -0.10220934450626373, + 0.03820386528968811, + 0.033572085201740265, + -0.033236656337976456, + -0.0883495882153511, + -2.0189964035357288e-33, + 0.017928563058376312, + -0.02128875069320202, + -0.04664856195449829, + -0.009727819822728634, + -0.004880026448518038, + 0.010237641632556915, + 0.007333035115152597, + 0.02527955360710621, + 0.03084232099354267, + 0.06220018118619919, + -0.012740978971123695, + 0.057350754737854004, + 0.014986153692007065, + -0.07019368559122086, + 0.08248092979192734, + 0.029534559696912766, + 0.04435049369931221, + 0.026792922988533974, + -0.015663964673876762, + 0.055355992168188095, + -0.06169914826750755, + -0.015506948344409466, + -0.10235728323459625, + 0.037943873554468155, + 0.03683006763458252, + 0.04316191002726555, + 0.06856852769851685, + -0.07106103003025055, + -0.04579805210232735, + 0.0034798593260347843, + -0.09098721295595169, + -0.002606575842946768, + 0.04895339533686638, + 0.10522455722093582, + -0.06656073033809662, + -0.017295612022280693, + 0.02181142568588257, + -0.1048286110162735, + -0.03735698387026787, + -0.03394237905740738, + 0.025036539882421494, + -0.037903062999248505, + 0.06304442137479782, + 0.08951589465141296, + 0.017100531607866287, + -0.032853733748197556, + -0.011794233694672585, + -0.03385685011744499, + 0.024313442409038544, + 0.06288503110408783, + 0.02293694205582142, + -0.05890258774161339, + -0.02242208644747734, + 0.009994544088840485, + -0.059763822704553604, + 0.048256345093250275, + -0.03010145016014576, + -0.0011321337660774589, + -0.03629620745778084, + 0.04426001384854317, + -0.02250054106116295, + -0.032349083572626114, + -0.0211722943931818, + 0.10582900047302246, + -0.007470381446182728, + -0.06638382375240326, + 0.021884093061089516, + -0.036630574613809586, + -0.026386449113488197, + 0.00817085336893797, + 0.01975608430802822, + 0.053643520921468735, + -0.01614469103515148, + 0.04902276396751404, + 0.019757891073822975, + -0.03250935673713684, + 0.007159981410950422, + -0.07947613298892975, + -0.08407409489154816, + 0.003568831831216812, + -0.05204733833670616, + -0.013763577677309513, + -0.04082009568810463, + 0.08642350137233734, + 0.01287221908569336, + -0.03830982744693756, + -0.005140587221831083, + 0.0263519287109375, + 0.03238982334733009, + -0.03301290422677994, + -0.007272273302078247, + 0.08147156983613968, + -0.04744452238082886, + -0.028015393763780594, + -0.01394624263048172, + -2.3268631466066836e-08, + -0.00177475914824754, + -0.07007602602243423, + -0.01070829201489687, + -0.024710338562726974, + 0.055804409086704254, + -0.0632682740688324, + -0.05740181729197502, + -0.09213946759700775, + -0.03420991450548172, + 0.02024845778942108, + 0.026663638651371002, + 0.09651999920606613, + -0.07937059551477432, + -0.09132585674524307, + 0.0615871325135231, + 0.02663671225309372, + -0.0497145876288414, + 0.08502552658319473, + -0.01614038646221161, + -0.04932774603366852, + 0.030629754066467285, + 0.03355323150753975, + 0.047045886516571045, + -0.05476151034235954, + -0.02694535069167614, + 0.019671941176056862, + 0.006843881215900183, + -0.011510523967444897, + -0.026937546208500862, + 0.05153532698750496, + 0.1090998575091362, + 0.08313435316085815, + 0.040566932410001755, + -0.04444831237196922, + -0.06336762011051178, + -0.02778066135942936, + 0.056251637637615204, + 0.026755178347229958, + 0.0008380403160117567, + 0.12882499396800995, + 0.1015939936041832, + -0.014132185839116573, + -0.0015662750229239464, + 0.009074670262634754, + 0.010636781342327595, + -0.022517040371894836, + 0.07140247523784637, + -0.0007389722741208971, + -0.010568466037511826, + -0.1128121018409729, + 0.036892712116241455, + 0.024659786373376846, + 0.046981651335954666, + 0.06034336984157562, + -0.05859747901558876, + 0.004205992445349693, + 0.08729548752307892, + 0.12910297513008118, + -0.030564704909920692, + 0.02907208539545536, + 0.08732077479362488, + 0.050122831016778946, + 0.04538444057106972, + -0.016066161915659904 + ], + "letter-circle-p-bold||*new*,parking lot,valet,vehicles,letter,glyph,character": [ + 0.007818327285349369, + -0.012644809670746326, + -0.0019108259584754705, + -0.009562534280121326, + -0.04380752146244049, + -0.017780093476176262, + 0.10550569742918015, + -0.04124188423156738, + -0.003608197206631303, + -0.058649081736803055, + 0.07139191031455994, + 0.044772014021873474, + 0.07626713812351227, + -0.03229210898280144, + -0.002347260946407914, + 0.03802148252725601, + 0.01749294251203537, + -0.01704975962638855, + -0.012584315612912178, + -0.021183039993047714, + -0.006925750058144331, + 0.029754983261227608, + 0.03582131862640381, + 0.025371171534061432, + -0.04537493363022804, + 0.09009212255477905, + 0.00036062474828213453, + 0.018140729516744614, + -0.0115475719794631, + -0.0844709500670433, + -0.08571846783161163, + 0.05735749751329422, + 0.09478285163640976, + 0.011587096378207207, + 0.0630403384566307, + 0.06747068464756012, + -0.02377256564795971, + 0.030356425791978836, + 0.026380004361271858, + -0.03526037931442261, + -0.0008836087072268128, + -0.12319168448448181, + 0.006733568385243416, + 0.0654611736536026, + -0.017339259386062622, + 0.023990148678421974, + -0.03175158053636551, + 0.03793000057339668, + 0.00864230003207922, + -0.015228083357214928, + 0.007403995376080275, + -0.058495454490184784, + -0.10360291600227356, + -0.025800038129091263, + 0.007913175038993359, + 0.01581331342458725, + -0.020623674616217613, + -0.04863500967621803, + 0.010876825079321861, + -0.057406164705753326, + -0.0017161379801109433, + 0.0022588290739804506, + 0.03250071406364441, + 0.05587184429168701, + -0.016128966584801674, + -0.03420165553689003, + -0.01490418054163456, + -0.054442398250103, + -0.011839053593575954, + -0.008340003900229931, + 0.025771157816052437, + 0.023663347586989403, + -0.05906786024570465, + -0.06065407767891884, + -0.06331939250230789, + 0.018917908892035484, + -0.021536480635404587, + -0.07074621319770813, + 0.01620878279209137, + -0.07780343294143677, + -0.05519275367259979, + -0.05307896062731743, + 0.005783110857009888, + 0.058297049254179, + 0.011637195013463497, + 0.07924222946166992, + -0.06620299071073532, + -0.09454218298196793, + -0.07778508961200714, + -0.002231769496574998, + -0.09224750846624374, + -0.11179497092962265, + 0.042669717222452164, + 0.008346321061253548, + -0.11949732154607773, + 0.036221008747816086, + 0.03459899500012398, + -0.0934886485338211, + -0.09099532663822174, + 0.09969198703765869, + 0.024372613057494164, + 0.02460477314889431, + 0.07424109429121017, + -0.014531360939145088, + -0.039316028356552124, + -0.01404243241995573, + -0.005027168430387974, + -0.07275214791297913, + 0.0022198986262083054, + 0.02539294958114624, + -0.024110523983836174, + -0.09180023521184921, + -0.004274364560842514, + -0.08180991560220718, + -0.06944170594215393, + -0.008283507078886032, + -0.07522629201412201, + 0.014818554744124413, + 0.08915919810533524, + 0.12879450619220734, + 0.02136095240712166, + -0.03313087299466133, + -0.049357932060956955, + 0.004245952237397432, + -0.09963042289018631, + 0.0033584970515221357, + 0.02175278589129448, + -2.3311676628378035e-33, + 0.01580253802239895, + 0.11341066658496857, + -0.0021160480100661516, + 0.047761719673871994, + 0.016734274104237556, + 0.0077360342256724834, + -0.04363241419196129, + 0.02712603658437729, + -0.029749508947134018, + 0.01205874141305685, + 0.04680781066417694, + 0.02401622384786606, + -0.039134085178375244, + 0.08119957149028778, + 0.02873889170587063, + 0.01313722226768732, + 0.05265866965055466, + -0.047738321125507355, + -0.05116289108991623, + -0.07904604077339172, + -0.038642894476652145, + 0.07651615887880325, + -0.02431732974946499, + 0.025078725069761276, + -0.017547421157360077, + -0.003872825065627694, + 0.020656153559684753, + -0.009676302783191204, + 0.031305138021707535, + 0.05714012682437897, + 0.01748831197619438, + 0.048468414694070816, + 0.040675874799489975, + 0.050406791269779205, + -0.024399131536483765, + -0.0058290972374379635, + -0.0961257815361023, + -0.09308484941720963, + -0.002906902227550745, + 0.013511685654520988, + -0.07793799787759781, + -0.06809141486883163, + -0.08141457289457321, + -0.01576969027519226, + 0.01223551295697689, + 0.11365078389644623, + 0.04410921037197113, + -0.03224330022931099, + -0.03447127342224121, + 0.02561234124004841, + -0.015398988500237465, + 0.01264050230383873, + -0.05845794826745987, + 0.0385320782661438, + -0.06400961428880692, + -0.07037664949893951, + 0.0011962789576500654, + 0.021315157413482666, + -0.013851476833224297, + -0.002037663012742996, + 0.05887198820710182, + 0.14974109828472137, + 0.11542923748493195, + 0.003932875115424395, + -0.020792808383703232, + -0.07578780502080917, + -0.07971442490816116, + -0.011057717725634575, + 0.047269657254219055, + 0.04660801962018013, + 0.028978437185287476, + 0.03577693924307823, + 0.081840381026268, + 0.1175740659236908, + -0.037113748490810394, + 0.029505113139748573, + 0.005915668793022633, + 0.01566976308822632, + -0.02753489278256893, + -0.04969412088394165, + -0.09857450425624847, + 0.04250187426805496, + -0.06097745522856712, + 0.01773892715573311, + 0.03726761043071747, + -0.008229940198361874, + 0.06591623276472092, + -0.12055234611034393, + -0.028472276404500008, + -0.012969708070158958, + -0.10673236101865768, + 0.012817571870982647, + -0.034312259405851364, + -0.01284556370228529, + -0.11254029721021652, + -1.4793413652461134e-33, + 0.013442831113934517, + -0.0248991958796978, + -0.003444779198616743, + -0.025065477937459946, + -0.020176038146018982, + -0.020708613097667694, + 0.034301936626434326, + -0.023954540491104126, + 0.01320473849773407, + 0.07617661356925964, + -0.10582344979047775, + 0.08479557186365128, + 0.0750606432557106, + -0.07631815969944, + 0.11043963581323624, + 0.007968406192958355, + 0.06846462190151215, + 0.040250036865472794, + -0.021428225561976433, + 0.062237247824668884, + -0.05127651244401932, + -0.049604691565036774, + -0.10339199751615524, + 0.06123505160212517, + -0.000489857280626893, + 0.022610055282711983, + 0.04713910073041916, + -0.09575317800045013, + -0.05743876472115517, + 0.039183299988508224, + -0.06434184312820435, + -0.003677697153761983, + 0.022176168859004974, + 0.09445138275623322, + -0.07507423311471939, + -0.03381410613656044, + 0.04230218753218651, + -0.07315388321876526, + -0.05937622860074043, + -0.010808718390762806, + 0.025559797883033752, + -0.022398095577955246, + 0.10489727556705475, + 0.06754585355520248, + 0.010044553317129612, + -0.07435153424739838, + -0.023756586015224457, + -0.04726476967334747, + 0.00758407125249505, + 0.03311699628829956, + 0.0472034253180027, + -0.01280828658491373, + -0.027324741706252098, + 0.023622745648026466, + -0.031653933227062225, + 0.07461154460906982, + -0.00616302527487278, + 0.008803612552583218, + -0.0006905015907250345, + 0.04811669513583183, + -0.018768897280097008, + -0.02151269093155861, + -0.002233662875369191, + 0.09559907019138336, + 0.019770551472902298, + -0.10820121318101883, + -0.013158787041902542, + -0.049897804856300354, + -0.017850687727332115, + -0.016601432114839554, + 0.03759835287928581, + 0.0664711520075798, + -0.024138811975717545, + 0.044493015855550766, + -0.025279002264142036, + 0.022795801982283592, + 0.04067743942141533, + -0.028083572164177895, + -0.04660916328430176, + -0.005514590535312891, + -0.034661728888750076, + -0.03500999137759209, + -0.02880600281059742, + 0.0984848365187645, + 0.006477150600403547, + -0.04464605823159218, + -0.011461657471954823, + 0.047368064522743225, + 0.0451669916510582, + -0.0069394418969750404, + -0.011849881149828434, + 0.10783248394727707, + -0.038828086107969284, + 0.025079254060983658, + -0.04706201329827309, + -2.24614566946002e-08, + -0.027776913717389107, + -0.04402583837509155, + -0.011940830387175083, + -0.03868294134736061, + 0.049173448234796524, + -0.05733299255371094, + -0.023821771144866943, + -0.0788319930434227, + -0.07148668169975281, + -0.006704014725983143, + 0.05422075092792511, + 0.03356625512242317, + -0.05746651813387871, + -0.033454302698373795, + 0.03706756979227066, + 0.03323199227452278, + -0.007921824231743813, + 0.04577343538403511, + -0.03183627873659134, + -0.03968031331896782, + 0.05451035499572754, + 0.04535021632909775, + 0.0044019464403390884, + -0.03796900808811188, + -0.05729156732559204, + 0.010242930613458157, + -0.007350251544266939, + -0.014025803655385971, + -0.020970629528164864, + 0.03348112851381302, + 0.09372105449438095, + 0.04277437925338745, + 0.03905366733670235, + -0.06354980915784836, + -0.019377073273062706, + -0.007522516418248415, + 0.005222110543400049, + 0.03400757163763046, + 0.01232797373086214, + 0.10719360411167145, + 0.08224941790103912, + -0.019247127696871758, + -0.01983027160167694, + 0.023794448003172874, + 0.013401943258941174, + 0.026438599452376366, + 0.030476367101073265, + -0.04727642983198166, + -0.06251158565282822, + -0.0909099280834198, + -0.01291998103260994, + 0.018998004496097565, + 0.02124333381652832, + 0.07503055781126022, + 0.0044138808734714985, + 0.0018789221066981554, + 0.05741221457719803, + 0.0719134509563446, + -0.009423227980732918, + -0.008955346420407295, + 0.060752540826797485, + 0.05760230869054794, + -0.02390308491885662, + -0.006174635607749224 + ], + "letter-circle-v-bold||*new*,vegan,letter,glyph,character": [ + 0.0007621612166985869, + -0.055919110774993896, + -0.022971471771597862, + 0.05457831174135208, + 0.01205037347972393, + -0.03283995762467384, + 0.018961459398269653, + -0.04729088023304939, + 0.018697312101721764, + -0.04194643720984459, + 0.09022491425275803, + -0.0267543476074934, + -0.0549781396985054, + -0.02794959396123886, + 0.006697755306959152, + 0.03136064112186432, + 0.004166746977716684, + 0.045831434428691864, + -0.035211049020290375, + 0.013862445950508118, + -0.0027255876921117306, + 0.028264010325074196, + 0.05396929755806923, + 0.06891149282455444, + 0.014840382151305676, + 0.0639578178524971, + -0.002566104056313634, + -0.015034457668662071, + 0.029911598190665245, + -0.09583210945129395, + -0.05999235063791275, + 0.017149165272712708, + 0.08054114133119583, + 0.011240234598517418, + 0.014608202502131462, + 0.06772112101316452, + -0.0410955585539341, + -0.010737382806837559, + 0.05000903457403183, + -0.03369858115911484, + 0.028983544558286667, + -0.12043406069278717, + 0.02167697064578533, + 0.056657083332538605, + -0.0032235030084848404, + 0.048452261835336685, + -0.05016547068953514, + 0.033188290894031525, + -0.013543878681957722, + -0.004519259091466665, + -0.028468189761042595, + -0.13095322251319885, + -0.130525603890419, + -0.02989153191447258, + 0.011641385965049267, + -0.01198196318000555, + -0.0535542257130146, + -0.061532534658908844, + 0.01260268036276102, + -0.052940733730793, + 0.04549751430749893, + -0.008732346817851067, + 0.027555758133530617, + 0.06943326443433762, + -0.030366845428943634, + -0.04582197219133377, + 0.031413815915584564, + -0.022759640589356422, + -0.039048802107572556, + -0.028466740623116493, + 0.023421045392751694, + 0.013452760875225067, + -0.06933137774467468, + -0.009979065507650375, + -0.057550158351659775, + 0.063414067029953, + 0.02785308286547661, + -0.05588392913341522, + 0.11213954538106918, + -0.02909623458981514, + -0.03114469163119793, + -0.010656599886715412, + -0.006372158881276846, + 0.12050210684537888, + 0.019443051889538765, + 0.10066666454076767, + -0.04893238842487335, + -0.07291087508201599, + -0.0952426865696907, + -0.01306863408535719, + -0.04252983629703522, + -0.04243320971727371, + 0.07257016748189926, + -0.010868263430893421, + -0.09382468461990356, + 0.026984674856066704, + 0.05499710515141487, + -0.053292956203222275, + -0.06396040320396423, + 0.08720025420188904, + -0.023722641170024872, + 0.0022774480748921633, + 0.044737834483385086, + -0.02684825286269188, + -0.04548943415284157, + -0.013038471341133118, + -0.03782465308904648, + -0.065286785364151, + 0.02925979346036911, + 0.02077372930943966, + -0.03793370723724365, + -0.006356540136039257, + -0.028065161779522896, + -0.0823185071349144, + -0.06590080261230469, + 0.0633419007062912, + -0.04713866859674454, + -0.010556901805102825, + 0.10605579614639282, + 0.07177264988422394, + -0.02679278515279293, + -0.029328498989343643, + -0.009361105039715767, + 0.018618611618876457, + -0.09231577813625336, + -0.0393131859600544, + -0.005133811850100756, + -1.429551924484593e-33, + 0.017126580700278282, + 0.11981969326734543, + -0.0019407131476327777, + 0.02754932828247547, + -0.023192422464489937, + -0.0065285866148769855, + -0.06576608121395111, + -0.051014892756938934, + -0.05229847878217697, + -0.04005097597837448, + 0.0001741874875733629, + 0.02293184958398342, + -0.010277552530169487, + 0.13382379710674286, + -0.0025256872177124023, + -0.037857238203287125, + 0.05215035378932953, + -0.09728031605482101, + -0.06066584214568138, + -0.06053993105888367, + -0.03677326813340187, + 0.09312819689512253, + -0.02608191780745983, + 0.03397258743643761, + -0.07887717336416245, + -0.06789734214544296, + 0.021616721525788307, + -0.06162409111857414, + -0.05308256670832634, + 0.029768208041787148, + 0.03064635768532753, + -0.04866370931267738, + 0.033824339509010315, + 0.062156613916158676, + -0.037696171551942825, + 0.016749398782849312, + -0.0403684601187706, + -0.07739633321762085, + 0.013159289956092834, + 0.056948501616716385, + 0.04317481443285942, + 0.005217053461819887, + -0.011558332480490208, + 0.013685429468750954, + 0.018821507692337036, + 0.12086166441440582, + 0.009447845630347729, + -0.051570694893598557, + -0.02482609637081623, + 0.03213381767272949, + -0.029865402728319168, + 0.01917145773768425, + -0.0027370827738195658, + -0.021412687376141548, + -0.03299272060394287, + -0.032764870673418045, + 0.038347821682691574, + 0.036643367260694504, + -0.06534603983163834, + -0.014235168695449829, + 0.018340954557061195, + 0.09221674501895905, + 0.10467781871557236, + -0.020285287871956825, + -0.056886937469244, + -0.025641245767474174, + -0.14364434778690338, + -0.04517727345228195, + 0.0723361074924469, + 0.001595284091308713, + 0.017464812844991684, + 0.048196613788604736, + 0.07457994669675827, + 0.0265533197671175, + -0.055990979075431824, + 0.020288528874516487, + 0.010159152559936047, + -0.02916565351188183, + 0.015065213665366173, + -0.04612985625863075, + -0.05878816545009613, + 0.05250146985054016, + -0.0847601518034935, + -0.0287832822650671, + -0.04094190523028374, + 0.003256670432165265, + -0.006134184543043375, + -0.11285018920898438, + 0.0121223796159029, + -0.02695966325700283, + -0.06155124679207802, + -0.0008247937075793743, + 0.009198843501508236, + -0.09388910233974457, + -0.11242140084505081, + -1.4510782566195223e-33, + -0.04245975241065025, + 0.005600736942142248, + -0.00921056978404522, + 0.062197014689445496, + -0.03252795338630676, + -0.022070996463298798, + 0.01474603172391653, + 0.04674386605620384, + 0.03658296912908554, + 0.02826375886797905, + -0.013097012415528297, + 0.04513535648584366, + 0.02381729893386364, + -0.044311489909887314, + 0.08159875869750977, + 0.08833871781826019, + 0.011814232915639877, + 0.07568133622407913, + 0.021400485187768936, + 0.019628366455435753, + -0.08101103454828262, + 0.016862235963344574, + -0.09182969480752945, + 0.05953747034072876, + 0.07706009596586227, + 0.04240945354104042, + 0.09572251886129379, + -0.03630256652832031, + -0.018914349377155304, + -0.015461436472833157, + -0.05145661532878876, + -0.05051169544458389, + 0.03235591575503349, + 0.08167088031768799, + -0.0050711012445390224, + -0.011154512874782085, + 0.030179515480995178, + -0.07595178484916687, + -0.025066645815968513, + -0.009911307133734226, + -0.0005820969818159938, + -0.02952154539525509, + 0.012700707651674747, + 0.0728500485420227, + 0.010065475478768349, + -0.02274799719452858, + -0.0009423243463970721, + 0.010084876790642738, + 0.024572042748332024, + 0.061711978167295456, + 0.061044108122587204, + -0.02882409282028675, + 0.025704381987452507, + 0.03667024150490761, + -0.030405275523662567, + 0.045131321996450424, + 0.0060448674485087395, + 0.04605227708816528, + -0.028770944103598595, + 0.041069306433200836, + -0.043741460889577866, + -0.03166050836443901, + 0.01897735334932804, + 0.04900191351771355, + 0.007970266044139862, + -0.03690347820520401, + -0.045767538249492645, + -0.04723282530903816, + 0.026830850169062614, + -0.03367694839835167, + 0.04125795513391495, + 0.058294422924518585, + -0.021591678261756897, + 0.018727025017142296, + 0.024611758068203926, + -0.02455773577094078, + 0.020663054659962654, + -0.09382598847150803, + -0.05364133417606354, + 0.012787452898919582, + -0.08697989583015442, + -0.011096433736383915, + 0.0004907012917101383, + 0.07023538649082184, + 0.0635504350066185, + 0.004375454504042864, + -0.04095415025949478, + 0.04322945699095726, + 0.05677846074104309, + 0.027914365753531456, + -0.0214855894446373, + 0.05381018668413162, + -0.018128855153918266, + 0.029659174382686615, + 0.04882608726620674, + -2.3285487316115905e-08, + 0.0446971170604229, + -0.10970427840948105, + -0.012153995223343372, + -0.021708426997065544, + 0.08246460556983948, + -0.017931971698999405, + -0.04134286195039749, + -0.1638077348470688, + -0.04850027710199356, + 0.044414788484573364, + 0.018558098003268242, + 0.11365972459316254, + -0.10067299008369446, + -0.017439646646380424, + 0.05833275988698006, + 0.04622397944331169, + 0.0016545513644814491, + 0.07177665829658508, + -0.04635712131857872, + -0.00027493605739437044, + -0.00244258064776659, + 0.07537443935871124, + -0.019944876432418823, + -0.08578384667634964, + -0.014280781149864197, + -0.0029324304778128862, + -0.01882416568696499, + 0.004475900903344154, + -0.01456895936280489, + 0.023545492440462112, + 0.12508027255535126, + 0.07856784015893936, + -0.007611589506268501, + -0.07829153537750244, + -0.076182059943676, + -0.003118413733318448, + -0.053434211760759354, + 0.029854219406843185, + 0.036175113171339035, + 0.11969654262065887, + 0.03840648755431175, + 0.024932941421866417, + -0.0017296482110396028, + 0.016020281240344048, + -0.028542984277009964, + 0.00834304466843605, + 0.030426155775785446, + -0.01635996624827385, + -0.05322665721178055, + -0.06865532696247101, + 0.0034566610120236874, + 0.047179099172353745, + -0.004594063386321068, + 0.04380134120583534, + -0.09580397605895996, + -0.034603942185640335, + 0.05087294429540634, + 0.09000731259584427, + 0.018309326842427254, + -0.019896166399121284, + 0.07578014582395554, + -0.006331834942102432, + 0.07577245682477951, + -0.05090811848640442 + ], + "lifebuoy-bold||lifebelt,lifesaver,safety,help,support,nautical,boats,ships": [ + -0.017722513526678085, + 0.08253694325685501, + -0.06860078871250153, + 0.009019250050187111, + 0.06229139119386673, + -0.0021971422247588634, + 0.03137039393186569, + -0.029345685616135597, + -0.11677094548940659, + -0.01291066873818636, + 0.11979027837514877, + -0.0601411908864975, + 0.005427203606814146, + 0.04792161285877228, + -0.021004224196076393, + 0.07071074843406677, + 0.007191794458776712, + -0.03577665984630585, + -0.0371667742729187, + 0.10186216235160828, + -0.03242746740579605, + 0.11146251112222672, + 0.004012856632471085, + 0.055981919169425964, + -0.1058143898844719, + -0.014752195216715336, + -0.08741600066423416, + 0.017260856926441193, + -0.02287188358604908, + -0.025667523965239525, + -0.024848995730280876, + 0.012924030423164368, + -0.01708081178367138, + -0.04519134387373924, + 0.020797353237867355, + 0.05921078100800514, + 0.04653171822428703, + -0.04764008894562721, + -0.05910539999604225, + 0.11312006413936615, + -0.06813871115446091, + -0.016856655478477478, + -0.015417657792568207, + 0.04007233306765556, + 0.026695622131228447, + -0.02320878766477108, + -0.08063476532697678, + -0.04347051680088043, + 0.049335233867168427, + 0.05503318831324577, + -0.08116291463375092, + -0.11967656016349792, + -0.007422581315040588, + 0.0007472255965694785, + 0.0523090586066246, + -0.00430342135950923, + -0.0968661680817604, + 0.04571385309100151, + 0.029703961685299873, + -0.01081598550081253, + 0.05108261480927467, + 0.034817200154066086, + 0.07599801570177078, + 0.025493184104561806, + 0.015276615507900715, + -0.016186783090233803, + -0.048399172723293304, + 0.04816180840134621, + 0.010717342607676983, + -0.016057182103395462, + -0.009161995723843575, + -0.03504999354481697, + -0.05040476471185684, + 0.09753900021314621, + -0.006882632616907358, + -0.012196344323456287, + 0.06426364928483963, + 0.03436080366373062, + 0.014784621074795723, + -0.048906274139881134, + -0.03363129869103432, + -0.07270897924900055, + -0.10699412971735, + 0.012144822627305984, + 0.025110838934779167, + 0.031093528494238853, + -0.023839527741074562, + 0.0030399435199797153, + 0.0281064435839653, + 0.07689397782087326, + -0.024105437099933624, + -0.02808349020779133, + 0.04430514574050903, + -0.0177689827978611, + -0.06217193976044655, + 0.05687417834997177, + -0.07488683611154556, + -4.156229260843247e-05, + -0.12718024849891663, + -0.017598452046513557, + 0.05402367189526558, + -0.09948410838842392, + -0.022811274975538254, + 0.04191981628537178, + 0.02626396343111992, + 0.03530774638056755, + -0.08283695578575134, + 0.012052338570356369, + 0.06913241744041443, + 0.04594368487596512, + -0.04009629786014557, + 0.011533313430845737, + -0.019776564091444016, + -0.03628446161746979, + -0.05673036724328995, + -0.0026849042624235153, + -0.1535673439502716, + -0.004262832459062338, + 0.04533303529024124, + 0.0033170210663229227, + 0.07352644205093384, + -0.0013488774420693517, + 0.08965377509593964, + -0.06848383694887161, + 0.03915081173181534, + -0.02882741577923298, + 0.017598919570446014, + -2.5506690086637954e-33, + 0.02225794643163681, + -0.03893344849348068, + 0.021844426169991493, + 0.07502083480358124, + -0.020102504640817642, + -0.07230527698993683, + -0.07205219566822052, + -0.04287702217698097, + 0.02597464993596077, + 0.04556836560368538, + -0.029281843453645706, + -0.0006409732159227133, + -0.022759169340133667, + -0.0051892478950321674, + 0.059662435203790665, + -0.06751051545143127, + -0.12523505091667175, + -0.0544082373380661, + -0.03566103056073189, + -0.012311582453548908, + -0.06709906458854675, + 0.03922436013817787, + 0.007666343357414007, + -0.046677105128765106, + 0.018576785922050476, + -0.017633216455578804, + 0.04779636859893799, + -0.046449314802885056, + -0.06454493850469589, + 0.07271190732717514, + 0.009616583585739136, + 0.023550989106297493, + 0.013890614733099937, + -0.0419723205268383, + -0.02931436337530613, + 0.01949068158864975, + -0.027727536857128143, + -0.09239006787538528, + -0.11143071204423904, + 0.01738394796848297, + -0.059623196721076965, + -0.01635546237230301, + 0.019185345619916916, + 0.1097862720489502, + -0.012702017091214657, + 0.01748976856470108, + 0.09709692001342773, + 0.032015200704336166, + 0.07027628272771835, + -0.005730359349399805, + -0.045270051807165146, + -0.07240252941846848, + -0.010128539055585861, + -0.01299662422388792, + -0.07829049229621887, + 0.05343455448746681, + -0.02228102833032608, + 0.09177958220243454, + -0.023386703804135323, + -0.03469675034284592, + -0.06188098341226578, + -0.03961241617798805, + 0.10016388446092606, + -0.00017155638488475233, + 0.08017723262310028, + 0.05606655031442642, + 0.00999414548277855, + -0.09536710381507874, + 0.039610445499420166, + -0.051142334938049316, + -0.04731596261262894, + -0.01951012574136257, + 0.04782963916659355, + 0.03201647102832794, + -0.013056362979114056, + 0.04944707080721855, + -0.011740674264729023, + -0.007647696882486343, + -0.07246200740337372, + -0.026169490069150925, + -0.027499649673700333, + 0.040015436708927155, + -0.001033081323839724, + 0.1314772069454193, + 0.1080794706940651, + -0.0314093641936779, + 0.01481859665364027, + -0.02811604179441929, + -0.03518544137477875, + 0.04012103006243706, + -0.04416119307279587, + -0.017318710684776306, + 0.05612801015377045, + -0.03963686153292656, + -0.027126917615532875, + 1.521740068947831e-33, + 0.011472144164144993, + 0.017327798530459404, + -0.010754486545920372, + -0.010090569965541363, + 0.04426617547869682, + -0.02898542210459709, + -0.06406156718730927, + 0.0054116202518343925, + -0.03613898530602455, + 0.04095660522580147, + -0.08260723203420639, + 0.014075339771807194, + -0.026227809488773346, + 0.010916908271610737, + 0.07954290509223938, + -0.004781683441251516, + 0.00021625876252073795, + 0.042954351752996445, + 0.012585042044520378, + -0.03925248980522156, + 0.013447586447000504, + -0.05368602275848389, + -0.06884617358446121, + 0.08285150676965714, + 0.01852845773100853, + 0.13533321022987366, + -0.005985882133245468, + 0.0023957511875778437, + 0.04296673461794853, + -0.05506620556116104, + -0.024611113592982292, + 0.03501768037676811, + 0.030326630920171738, + 0.069411501288414, + -0.025529522448778152, + 0.028300853446125984, + 0.04030879959464073, + -0.05105138197541237, + -0.0316864475607872, + -0.09940948337316513, + 0.004959811456501484, + 0.03649119287729263, + 0.035091448575258255, + 0.014516406692564487, + -0.058623239398002625, + 0.006033030338585377, + -0.0058134254068136215, + -0.029025595635175705, + -0.030757468193769455, + 0.07144825905561447, + -0.015195416286587715, + -0.00013433561252895743, + -0.02435198239982128, + -0.00920652411878109, + -0.013939935714006424, + -0.03153353929519653, + -0.05421881005167961, + -0.050407830625772476, + -0.033782560378313065, + -0.00939988438040018, + 0.11428479850292206, + 0.07847913354635239, + -0.05089964345097542, + 0.12798956036567688, + -0.006030241958796978, + 0.04319130629301071, + 0.0394989512860775, + 0.00284216133877635, + -0.11777378618717194, + -0.03273340314626694, + 0.04339451342821121, + -0.010314482264220715, + -0.031370989978313446, + -0.014920971356332302, + -0.009159540757536888, + -0.05061716586351395, + -0.03262973576784134, + -0.04439961910247803, + 0.0072474186308681965, + 0.11863748729228973, + -0.005526731256395578, + -0.06107494980096817, + 0.022749070078134537, + 0.08150622248649597, + 0.06434930860996246, + -0.03911925107240677, + -0.08153033256530762, + 0.07247504591941833, + 0.06809072196483612, + -0.0060375952161848545, + 0.007128903642296791, + 0.04537103697657585, + -0.07112905383110046, + 0.06326358020305634, + -0.02767573483288288, + -2.368778062589172e-08, + 0.07097843289375305, + 0.04343189299106598, + -0.015480829402804375, + -0.02363961562514305, + -0.034807659685611725, + -0.012788617983460426, + -0.014616340398788452, + -0.017098063603043556, + -0.01173872034996748, + 0.006505115423351526, + 0.0390392504632473, + 0.011973075568675995, + -0.021966466680169106, + 0.018362605944275856, + -0.0010670926421880722, + -0.04812135547399521, + -0.07944995909929276, + 0.046409159898757935, + -0.07618933916091919, + -0.041329361498355865, + 0.0009974072454497218, + -0.01337104570120573, + 0.007546816021203995, + -0.03968052193522453, + -0.0334315150976181, + 0.006644877605140209, + 0.003185351612046361, + 0.06681559979915619, + 0.1099262461066246, + 0.012304458767175674, + -0.009911568835377693, + 0.012814952060580254, + -0.02709360420703888, + 0.04719148576259613, + -0.04396598041057587, + -0.003121008863672614, + -0.03400811553001404, + 0.04933416098356247, + 0.00962736550718546, + 0.11915884912014008, + -0.03963574022054672, + -0.01597309298813343, + 0.017964722588658333, + 0.04337536543607712, + 0.05399235337972641, + 0.042271777987480164, + 0.004718070384114981, + -0.0225569736212492, + -0.026573272421956062, + -0.07204592227935791, + 0.012583984062075615, + -0.04357609897851944, + 0.0353412851691246, + 0.06179465726017952, + -0.020689547061920166, + 0.10484292358160019, + 0.020316289737820625, + 0.03904575854539871, + 0.010924793779850006, + 0.03312397748231888, + -0.03134850040078163, + 0.0011086022714152932, + 0.08400119096040726, + 0.10933990031480789 + ], + "lightbulb-bold||flashlight,bulbs,lighting,led,energy,idea": [ + -0.008288639597594738, + -0.026683384552598, + -0.04895626753568649, + 0.08262887597084045, + 0.0021115876734256744, + -0.009262136183679104, + 0.07692969590425491, + 0.01136369165033102, + -0.008655967190861702, + 0.017566300928592682, + 0.06762109696865082, + -0.008408961817622185, + 0.020576484501361847, + 0.008105001412332058, + 0.016024015843868256, + 0.06126745417714119, + -0.015813004225492477, + -0.035879265516996384, + -0.022861303761601448, + 0.007430694997310638, + 0.09271727502346039, + -0.01886082999408245, + 0.02710726484656334, + 0.02402380108833313, + 0.04126821458339691, + 0.04980785772204399, + 0.0263065118342638, + 0.007866570726037025, + 0.00036811319296248257, + -0.03127075359225273, + 0.051694490015506744, + -0.037305817008018494, + 0.0032851682044565678, + -0.013321202248334885, + 0.013065651059150696, + 0.010108893737196922, + -0.05936434864997864, + 0.008195475675165653, + 0.013854381628334522, + 0.036234185099601746, + -0.04531179368495941, + -0.0971841961145401, + 0.030297137796878815, + 0.03929387032985687, + -0.060481373220682144, + 0.008942331187427044, + -0.008342483080923557, + -0.052884604781866074, + -0.04442207142710686, + -0.07779749482870102, + 0.04798406735062599, + -0.10585331916809082, + -0.09133412688970566, + 0.09305956959724426, + 0.08984153717756271, + -0.00303711649030447, + -0.08305150270462036, + 0.001391617232002318, + 0.09504848718643188, + -0.04949772357940674, + 0.020402098074555397, + 0.056323032826185226, + 0.03836547210812569, + 0.009312932379543781, + 0.039347123354673386, + 0.0521695539355278, + -0.05466135963797569, + 0.027626648545265198, + 0.004851917270570993, + 0.006458359770476818, + 0.011323136277496815, + -0.018532434478402138, + 0.011527168564498425, + -0.013727323152124882, + -0.04800141602754593, + -0.026374025270342827, + 0.028965836390852928, + 0.031592581421136856, + -0.07025253027677536, + -0.009117718786001205, + -0.08164255321025848, + -0.06277132779359818, + -0.05629009008407593, + 0.11219202727079391, + 0.11281311511993408, + 0.08306779712438583, + -0.0016014898428693414, + -0.0111051294952631, + -0.055731698870658875, + -0.007563484366983175, + -0.13878126442432404, + -0.033574119210243225, + 0.042059581726789474, + 0.04387129470705986, + -0.0003451838856562972, + -0.0008478742092847824, + 0.039695292711257935, + -0.08932311087846756, + -0.09936156868934631, + 0.0396425798535347, + 0.040323030203580856, + 0.025098491460084915, + 0.02038790099322796, + -0.02808934450149536, + -0.019839728251099586, + -0.06418357789516449, + -0.027906926348805428, + 0.03291010484099388, + 0.00041117274668067694, + -0.0003992339188698679, + 0.08246811479330063, + -0.09293774515390396, + -0.05263807252049446, + -0.008213459514081478, + -0.03858252987265587, + -0.11272848397493362, + 0.000944426457863301, + 0.009646700695157051, + 0.052656687796115875, + 0.07192989438772202, + 0.06365015357732773, + 0.04946267977356911, + 0.049032412469387054, + 0.02393961139023304, + 0.012308300472795963, + -0.016985291615128517, + -0.008068687282502651, + -1.9634844175021155e-33, + -0.014749942347407341, + 0.004059506580233574, + -0.06938457489013672, + 0.05155012384057045, + 0.021410910412669182, + -0.013154230080544949, + 0.007738032378256321, + -0.004199892748147249, + -0.03853286802768707, + -0.01782119832932949, + 0.1057790145277977, + 0.1129026785492897, + 0.07548364251852036, + 0.07853187620639801, + 0.0703771635890007, + -0.08034960180521011, + 0.06754253804683685, + 0.02155585214495659, + 0.011189660988748074, + -0.018492845818400383, + -0.0639970526099205, + 0.05582617223262787, + 0.016414709389209747, + -0.03455893322825432, + -0.050294484943151474, + 0.008151359856128693, + 0.00428029615432024, + -0.04076630249619484, + -0.06582054495811462, + 0.017089547589421272, + 0.015795450657606125, + 0.07656329870223999, + 0.0419219508767128, + 0.04077005758881569, + -0.024191245436668396, + 0.0160355381667614, + 0.016190027818083763, + -0.08987750858068466, + 0.01768890768289566, + -0.0424322709441185, + -0.08411602675914764, + 0.02762492746114731, + -0.030551474541425705, + 0.018779145553708076, + 0.08681154996156693, + 0.12328634411096573, + -0.058287639170885086, + 0.0002598572464194149, + 0.0032283207401633263, + 0.037836216390132904, + -0.046932730823755264, + -0.07896297425031662, + 0.053415361791849136, + 0.02759111486375332, + 0.02876961976289749, + -0.017599355429410934, + -0.09619143605232239, + 0.09977331012487411, + 0.09847413748502731, + -0.053914427757263184, + -0.022574180737137794, + 0.08798958361148834, + 0.02662670984864235, + -0.055293045938014984, + -0.035010699182748795, + 0.006144456099718809, + -0.04356392100453377, + 0.04299767315387726, + -0.027222037315368652, + -0.031196603551506996, + -0.038408104330301285, + 0.02858259528875351, + 0.004457633476704359, + 0.02202315255999565, + 0.04795439913868904, + 0.027346810325980186, + 0.00019501574570313096, + -0.033598482608795166, + -0.022561969235539436, + -0.035966165363788605, + -0.0797441229224205, + -0.030003303661942482, + -0.03471078351140022, + -0.021442808210849762, + 0.0072154030203819275, + 0.0009114585700444877, + -0.030274871736764908, + -0.06512393057346344, + -0.10639169812202454, + 0.03148346394300461, + 0.02698795683681965, + 0.030742226168513298, + 0.0021708530839532614, + -0.06453882157802582, + -0.08315424621105194, + 7.621663843376817e-34, + 0.029031429439783096, + 0.007594299502670765, + -0.07969622313976288, + 0.008432806469500065, + 0.09084966778755188, + 0.017443440854549408, + -0.052786316722631454, + -0.1626650094985962, + -0.012521544471383095, + 0.06526479125022888, + 0.026549456641077995, + -0.033595409244298935, + -0.16004882752895355, + -0.06164431571960449, + 0.043236128985881805, + -0.011308656074106693, + 0.0179285891354084, + 0.029567185789346695, + 0.025643710047006607, + -0.0015790070174261928, + -0.004119572229683399, + 0.050411373376846313, + -0.11920569092035294, + 0.02302301861345768, + -0.02782893367111683, + 0.10335361212491989, + 0.04354295879602432, + -0.018865082412958145, + -0.06713597476482391, + -0.03612329065799713, + -0.05927162617444992, + -0.01595410518348217, + 0.019867537543177605, + 0.036117132753133774, + -0.08437348902225494, + 0.04931735619902611, + 0.07614770531654358, + -0.048532307147979736, + -0.0067085567861795425, + -0.03445666283369064, + 0.0628548413515091, + 0.006838682573288679, + 0.04797527566552162, + -0.036357514560222626, + -0.10335680842399597, + -0.02401840314269066, + -0.05343354493379593, + -0.014510122127830982, + -0.02128034643828869, + 0.035592082887887955, + 0.06863576173782349, + -0.03297668322920799, + -0.06295143812894821, + -0.012507922947406769, + -0.10422688722610474, + -0.06880823522806168, + 0.014896553941071033, + -0.000615803524851799, + 0.0122308898717165, + 0.03205379471182823, + 0.04985503479838371, + -0.006855235435068607, + 0.05619741976261139, + 0.09652820229530334, + -0.0601264163851738, + -0.06773483753204346, + 0.018848842009902, + -0.018801085650920868, + 0.05900320038199425, + -0.04292440414428711, + 0.07468098402023315, + 0.00939090270549059, + 0.04685881361365318, + -0.006459781434386969, + 0.02643124759197235, + -0.032262228429317474, + 0.07777010649442673, + -0.027654938399791718, + -0.008635344915091991, + -0.02902645617723465, + -0.004060498438775539, + 0.02358873002231121, + 0.02198324166238308, + -0.0026004179380834103, + -0.01800736039876938, + -0.04549612104892731, + -0.04857928305864334, + 0.03708263114094734, + -0.04240591824054718, + -0.04084933176636696, + -0.00827819760888815, + 0.11149919033050537, + 0.035448335111141205, + 0.019221656024456024, + 0.04280031472444534, + -1.9545932872233607e-08, + -0.0338708721101284, + 0.005931192543357611, + -0.04487846419215202, + -0.03277047723531723, + 0.03628645837306976, + -0.014112652279436588, + -0.011751260608434677, + -0.024495473131537437, + -0.02161499299108982, + -0.04323356971144676, + 0.0939134955406189, + -0.024736277759075165, + 0.026395166292786598, + -0.009420132264494896, + 0.04680590704083443, + 0.0485723540186882, + -0.030583897605538368, + -0.017360849305987358, + -0.034354068338871, + -0.005887193139642477, + -0.040466245263814926, + 0.009395231492817402, + 0.011915951035916805, + -0.025302788242697716, + 0.0460776761174202, + 0.06556510925292969, + -0.0016401807079091668, + 0.05927228182554245, + 0.07335316389799118, + 0.07328301668167114, + 0.07158776372671127, + 0.08163352310657501, + 0.012646579183638096, + -0.01502824854105711, + -0.08022570610046387, + -0.05426166579127312, + -0.08492923527956009, + -0.028844159096479416, + -0.03634759783744812, + 0.12846079468727112, + -0.04174889251589775, + -0.042440786957740784, + -0.010138794779777527, + 0.024590134620666504, + -0.03264111652970314, + 0.007836388424038887, + 0.02152811549603939, + -0.043101292103528976, + -0.09636949747800827, + 0.03198758512735367, + -0.03576469048857689, + 0.025555185973644257, + 0.013661299832165241, + 0.018700407817959785, + -0.06039098650217056, + -0.004941399209201336, + 0.03921264782547951, + 0.02271954156458378, + -0.07561153918504715, + -0.06570980697870255, + 0.13544444739818573, + -0.010404344648122787, + 0.015069936402142048, + 0.10597827285528183 + ], + "lightbulb-filament-bold||flashlight,bulbs,lighting,led,energy,idea": [ + -0.009436141699552536, + -0.02471439354121685, + -0.037634190171957016, + 0.06250335276126862, + -0.017009401693940163, + -0.005358591675758362, + 0.11079122126102448, + 0.030561769381165504, + -0.017186595126986504, + 0.023653632029891014, + 0.08267554640769958, + -0.021607395261526108, + -0.004466707352548838, + 0.020690971985459328, + -0.00028823554748669267, + 0.047900889068841934, + -0.04248642548918724, + -0.0512450747191906, + -0.017968494445085526, + 0.03753547742962837, + 0.12268497049808502, + -0.007513702847063541, + 0.04246734827756882, + 0.03521335870027542, + 0.06399285048246384, + 0.06842663884162903, + 0.013102439232170582, + 0.022667553275823593, + -0.006590608973056078, + -0.04963637888431549, + 0.03362944349646568, + -0.005736712832003832, + 0.0074347760528326035, + 0.003499838523566723, + 0.058300744742155075, + -0.021342623978853226, + -0.08064451813697815, + 0.0021055538672953844, + 0.02811896614730358, + 0.029318781569600105, + -0.030762773007154465, + -0.10838209837675095, + 0.028791416436433792, + 0.023980941623449326, + -0.0517590269446373, + 0.007919668219983578, + 0.006936282385140657, + -0.03994853049516678, + -0.062330860644578934, + -0.0371600016951561, + 0.028306638821959496, + -0.10711488872766495, + -0.08500201255083084, + 0.12407505512237549, + 0.10701623558998108, + 0.023444177582859993, + -0.055422745645046234, + -0.013220462948083878, + 0.0534132719039917, + -0.05419911444187164, + 0.019164688885211945, + 0.04456820711493492, + 0.011494089849293232, + 0.035295430570840836, + 0.03732858970761299, + 0.03676240146160126, + -0.042266253381967545, + 0.018534626811742783, + 0.025624122470617294, + 0.0067105828784406185, + 0.02278461493551731, + -0.012405121698975563, + -0.02713507041335106, + -0.003991337493062019, + 0.012272149324417114, + -0.04833681508898735, + 0.033685483038425446, + 0.05462094396352768, + -0.07810908555984497, + -0.011107658967375755, + -0.05000299960374832, + -0.023990750312805176, + -0.02036736160516739, + 0.09311694651842117, + 0.08964887261390686, + 0.06892953813076019, + 0.03659272938966751, + -0.0018278881907463074, + -0.058858323842287064, + -0.022402774542570114, + -0.1323573738336563, + -0.03234197944402695, + -0.009535839781165123, + 0.034219857305288315, + 0.02172142267227173, + 0.021729547530412674, + 0.01861119270324707, + -0.07782579213380814, + -0.06921850144863129, + 0.039807818830013275, + 0.04913966357707977, + -0.017189322039484978, + 0.031381458044052124, + -0.03868158534169197, + -0.04802107438445091, + -0.06184712052345276, + -0.00679543474689126, + 0.057727158069610596, + -0.0018116352148354053, + -0.015136580914258957, + 0.0662725567817688, + -0.09626925736665726, + -0.06717986613512039, + 0.007280569523572922, + -0.012569925747811794, + -0.10697872191667557, + -0.014363501220941544, + 0.02626756764948368, + 0.0848873034119606, + 0.05794011056423187, + 0.06311459094285965, + 0.04694313555955887, + 0.039901718497276306, + 0.020049313083291054, + -0.0299429539591074, + -0.006968225818127394, + -0.053770218044519424, + -1.9465444418808125e-33, + -0.0016617352375760674, + -0.006644648965448141, + -0.0595678873360157, + 0.023890066891908646, + -0.0003298504452686757, + -0.02398247830569744, + 0.01861579716205597, + -0.022508997470140457, + -0.03252563625574112, + -0.018972106277942657, + 0.08767879009246826, + 0.10727748274803162, + 0.05927062779664993, + 0.10054736584424973, + 0.05864729359745979, + -0.08383957296609879, + 0.04773449897766113, + 0.02872653305530548, + 0.02442936971783638, + -0.014571882784366608, + -0.021890966221690178, + 0.11060060560703278, + 0.03901578113436699, + -0.04234606772661209, + -0.02896156907081604, + -0.03237180784344673, + -0.03205304592847824, + -0.027477307245135307, + -0.09125705808401108, + 0.022301001474261284, + 0.029619956389069557, + 0.0779402032494545, + 0.050419874489307404, + 0.005946795921772718, + -0.00655448529869318, + 0.043932002037763596, + -0.01357109472155571, + -0.09264538437128067, + -0.01255398616194725, + -0.029664644971489906, + -0.08492546528577805, + 0.018331585451960564, + -0.031902674585580826, + 0.03181842714548111, + 0.07642870396375656, + 0.12116368860006332, + -0.09975993633270264, + 0.009492517448961735, + 0.01835677959024906, + 0.06491465866565704, + -0.04946542903780937, + -0.06759902089834213, + 0.07744462788105011, + -0.004119989462196827, + 0.025750625878572464, + 0.0059794350527226925, + -0.09534788131713867, + 0.08250488340854645, + 0.06968211382627487, + -0.07239028066396713, + -0.015018470585346222, + 0.06765229254961014, + 0.015143653377890587, + -0.07257978618144989, + -0.048618134111166, + 0.0008688070811331272, + -0.010457370430231094, + 0.06132114306092262, + -0.004693430848419666, + -0.025333398953080177, + -0.07738341391086578, + 0.04145258665084839, + -0.004966928623616695, + 0.04210812225937843, + 0.049326106905937195, + -0.0015417169779539108, + -0.009983645752072334, + -0.047806207090616226, + -0.03671758249402046, + -0.016114354133605957, + -0.09196945279836655, + -0.020020555704832077, + -0.04155536741018295, + -0.038678836077451706, + -0.01353949960321188, + 0.008305564522743225, + -0.002672901377081871, + -0.048286113888025284, + -0.06192347779870033, + 0.016040047630667686, + 0.031085794791579247, + 0.038043417036533356, + 0.017660457640886307, + -0.05384735390543938, + -0.07974163442850113, + 5.233277431809304e-34, + 0.024353865534067154, + -0.0033353338949382305, + -0.06950035691261292, + 0.019013725221157074, + 0.08437421172857285, + 0.011505424976348877, + -0.030590415000915527, + -0.12571585178375244, + -0.0009460464934818447, + 0.06984136253595352, + 0.039555154740810394, + -0.017267605289816856, + -0.16430358588695526, + -0.08165600150823593, + 0.03390132263302803, + -0.007785840425640345, + -0.0035621565766632557, + 0.016040239483118057, + 0.04347613453865051, + 0.014387758448719978, + 0.003698062850162387, + 0.03540852293372154, + -0.08567860722541809, + 0.028812048956751823, + -0.02233758009970188, + 0.0829991027712822, + 0.035229891538619995, + -0.03713225573301315, + -0.047203727066516876, + -0.04803204908967018, + -0.05926893278956413, + -0.024135293439030647, + 0.02992301434278488, + 0.03973674401640892, + -0.10855886340141296, + 0.0275968536734581, + 0.08046183735132217, + -0.05304792523384094, + 0.0009886021725833416, + -0.03899659588932991, + 0.051986534148454666, + 0.03180704638361931, + 0.08507093042135239, + -0.03823890909552574, + -0.11499237269163132, + -0.03743506595492363, + -0.03787234053015709, + -0.025873487815260887, + -0.04399576410651207, + 0.032471343874931335, + 0.04471634328365326, + -0.026574159041047096, + -0.051674939692020416, + -0.027023594826459885, + -0.07792497426271439, + -0.07247211039066315, + -0.005302051547914743, + 0.0008548568584956229, + -0.010062151588499546, + 0.0531424805521965, + 0.024517737329006195, + -0.03723546117544174, + 0.059072285890579224, + 0.07660971581935883, + -0.010006369091570377, + -0.07471219450235367, + 0.004252600949257612, + -0.02311110682785511, + 0.019187485799193382, + -0.02840256132185459, + 0.09231480956077576, + 0.0014035411877557635, + -0.003839097684249282, + 0.004201443400233984, + 0.05571939796209335, + -0.04794265702366829, + 0.042430926114320755, + -0.030214691534638405, + -0.022976499050855637, + -0.01657712832093239, + 0.019510963931679726, + 0.023565541952848434, + -0.007495572324842215, + 0.014382480643689632, + -0.01405359711498022, + -0.060395848006010056, + -0.025151418522000313, + 0.02602536417543888, + -0.028522923588752747, + -0.029712937772274017, + -0.009515797719359398, + 0.11182358115911484, + 0.04016880318522453, + 0.031266361474990845, + 0.026641923934221268, + -2.1917307080343562e-08, + -0.029399819672107697, + 0.014841107651591301, + -0.06553907692432404, + -0.037368569523096085, + 0.059202831238508224, + -0.01993505097925663, + -0.0050910464487969875, + -0.01997465454041958, + -0.03090834803879261, + -0.057272475212812424, + 0.10260998457670212, + -0.007088506128638983, + 0.019636571407318115, + -0.011961597017943859, + 0.05780608206987381, + 0.011258693411946297, + -0.07718439400196075, + 0.0024809285532683134, + -0.038002822548151016, + -0.022410664707422256, + -0.07023459672927856, + 0.017036136239767075, + -0.023594608530402184, + -0.004643499851226807, + 0.03400840237736702, + 0.09884294867515564, + -0.007170193362981081, + 0.06479979306459427, + 0.06210798770189285, + 0.06798520684242249, + 0.057470858097076416, + 0.09532062709331512, + 0.007309988606721163, + -0.03150166943669319, + -0.13353581726551056, + -0.04983934387564659, + -0.04907431825995445, + -0.05088576301932335, + -0.05179207772016525, + 0.10514596104621887, + -0.012870152480900288, + -0.051315177232027054, + 0.027148855850100517, + 0.005888764746487141, + -0.0023470285814255476, + 0.0034032228868454695, + 0.05265742167830467, + -0.024524541571736336, + -0.11563611030578613, + 0.0117630735039711, + -0.031688373535871506, + 0.026997165754437447, + -0.0006216128822416067, + 0.034208744764328, + -0.083032988011837, + -0.005525777582079172, + 0.04052785038948059, + 0.03763273358345032, + -0.051329053938388824, + -0.08510784059762955, + 0.12093149870634079, + 0.019236229360103607, + 0.06595185399055481, + 0.09833580255508423 + ], + "lighthouse-bold||buildings,nautical,navigation,boats,ships,safety": [ + 0.039036162197589874, + -0.0007458520703949034, + -0.026862552389502525, + 0.043201327323913574, + 0.016155309975147247, + -0.034461237490177155, + 0.002233222359791398, + -0.06696043908596039, + -0.10255247354507446, + 0.02294880338013172, + 0.02460123784840107, + -0.025215135887265205, + 0.011081332340836525, + -0.012196747586131096, + 0.006717895157635212, + 0.047936417162418365, + 0.012350810691714287, + 0.01324897725135088, + 0.02658895030617714, + 0.05434045195579529, + 0.049570534378290176, + 0.02680906280875206, + -0.005056301597505808, + -0.010127952322363853, + 0.031982745975255966, + 0.03238938748836517, + 0.0420050173997879, + 0.029051238670945168, + -0.00467515317723155, + -0.033976782113313675, + -0.055462758988142014, + -0.0008012411999516189, + 0.028382817283272743, + -0.023370372131466866, + 0.0408608503639698, + 0.06522571295499802, + 0.06056730076670647, + -0.08041759580373764, + 0.011082774959504604, + 0.012142907828092575, + -0.07091505080461502, + -0.02287978306412697, + 0.0033910081256181, + 0.058889783918857574, + -0.04269364848732948, + -0.06515611708164215, + -0.02391577698290348, + -0.09704925864934921, + -0.018421918153762817, + -0.04117996245622635, + -0.008313565514981747, + -0.06979164481163025, + -0.1168380156159401, + -0.026074111461639404, + -0.0010074262972921133, + -0.03584020212292671, + -0.0500895120203495, + 0.01118843350559473, + 0.059464357793331146, + -0.013473489321768284, + 0.08745700120925903, + 0.04187020659446716, + -0.014275901950895786, + 0.019078318029642105, + 0.031032463535666466, + 0.021747661754488945, + -0.1088201031088829, + 0.0007003189530223608, + 0.027522096410393715, + -0.038146380335092545, + 0.04169285669922829, + -0.06075544282793999, + 0.05463932454586029, + -0.06923557072877884, + -0.029613809660077095, + -0.026456298306584358, + -0.008720473386347294, + -0.02148144505918026, + -0.08127006143331528, + -0.04855748265981674, + -0.0282222218811512, + -0.05687561258673668, + -0.03274645656347275, + 0.06920178979635239, + 0.04720968008041382, + 0.035919997841119766, + -0.03562327101826668, + 0.01897360570728779, + 0.02218928560614586, + -0.014297722838819027, + -0.012547393329441547, + -0.06322987377643585, + -0.029625531286001205, + 0.023945940658450127, + -0.010111350566148758, + 0.025089984759688377, + -0.03825877979397774, + -0.023803886026144028, + -0.06529106944799423, + 0.018968746066093445, + 0.08013278245925903, + 0.021196914836764336, + -0.009042502380907536, + 0.05620493367314339, + -0.0320345014333725, + -0.05767533928155899, + -0.03810283914208412, + 0.029832180589437485, + 0.0035932024475187063, + -0.039641372859478, + 0.005349322687834501, + -0.015510784462094307, + -0.053258173167705536, + 0.002327691065147519, + -0.0802474096417427, + -0.04490970820188522, + -0.06797182559967041, + -0.06774315237998962, + 0.12232537567615509, + 0.0779198482632637, + 0.05114738643169403, + -0.0035740439780056477, + 0.08326409012079239, + 0.051921866834163666, + -0.03475544974207878, + 0.007090565282851458, + 0.04178944230079651, + -4.2171972881963e-33, + -0.003721661865711212, + 0.0850861445069313, + -0.03823890537023544, + 0.09500370919704437, + 0.09039407223463058, + -0.019870679825544357, + -0.031121041625738144, + 0.01822943426668644, + -0.09383692592382431, + 0.05710909143090248, + 0.06433729082345963, + 0.09924351423978806, + -0.01888684183359146, + 0.08208229392766953, + 0.12564358115196228, + -0.035770200192928314, + 0.035591527819633484, + -0.029510105028748512, + -0.07262781262397766, + -0.03498576208949089, + 0.010528636164963245, + -0.018790587782859802, + -0.012413321062922478, + -0.0571422278881073, + 0.010557305999100208, + -0.060364045202732086, + -0.05093786492943764, + 0.013928213156759739, + -0.12006035447120667, + 0.06261897087097168, + 0.012305893935263157, + 0.01984894648194313, + 0.05775957927107811, + -0.00889013335108757, + 0.03625308349728584, + -0.002393806353211403, + 0.007376776076853275, + -0.04177673161029816, + -0.10965792834758759, + -0.03124481625854969, + -0.09648401290178299, + 0.016387885436415672, + -0.02034234069287777, + 0.10964661091566086, + 0.07357211410999298, + 0.07672681659460068, + -0.047980837523937225, + 0.013124777004122734, + 0.06194934993982315, + 0.028767472133040428, + -0.033081524074077606, + -0.04472671076655388, + -0.13786765933036804, + 0.008177348412573338, + 0.020143387839198112, + 0.019314322620630264, + -0.013070054352283478, + 0.05391070619225502, + 0.00346585875377059, + -0.016173716634511948, + -0.061565812677145004, + -0.007998434826731682, + 0.04660854488611221, + -0.041213132441043854, + 0.017849743366241455, + 0.043575722724199295, + -0.026205135509371758, + 0.02964068204164505, + 0.04600004479289055, + -0.02391660585999489, + -0.07217660546302795, + 0.0020332171116024256, + 0.07119753211736679, + 0.06437135487794876, + 0.010716384276747704, + 0.05896051228046417, + -0.013268323615193367, + 0.030028225854039192, + 0.006975328084081411, + 0.016559036448597908, + -0.11664388328790665, + 0.1161380410194397, + -0.024136904627084732, + 0.05694929510354996, + 0.06993299722671509, + -0.0519912913441658, + 0.027014467865228653, + -0.03248157724738121, + -0.0513744056224823, + 0.0662447065114975, + -0.041044507175683975, + 0.08390176296234131, + 0.039995551109313965, + -0.08089149743318558, + -0.16777373850345612, + 1.0399835457304865e-33, + -0.024655094370245934, + -0.028887366876006126, + -0.08663760870695114, + -0.10741608589887619, + -0.047548841685056686, + -0.01744520664215088, + -0.03706737607717514, + -0.050635114312171936, + 0.043392524123191833, + 0.046160634607076645, + -0.07411723583936691, + -0.08276282995939255, + 0.01664913073182106, + 0.029805056750774384, + -0.06683439016342163, + -0.049107976257801056, + 0.04783662408590317, + 0.050630830228328705, + -0.01300762128084898, + 0.02910439856350422, + 0.04098726809024811, + -0.02218959666788578, + -0.07039675861597061, + 0.03625661879777908, + -0.007297326810657978, + 0.0673462301492691, + -0.007836628705263138, + -0.073626808822155, + -0.055517956614494324, + -0.02606452815234661, + -0.048507120460271835, + 0.05636119097471237, + 0.0834357887506485, + 0.09171250462532043, + -0.08793270587921143, + 0.10341199487447739, + 0.07253359258174896, + -0.010683586820960045, + -0.015819646418094635, + 0.01340880524367094, + 0.04727557674050331, + -0.005098006688058376, + 0.06736091524362564, + -0.02025774121284485, + -0.057997096329927444, + -0.039782337844371796, + -0.03402736783027649, + 0.014105993323028088, + -0.06948994845151901, + 0.02877073734998703, + -0.009230324998497963, + -0.07638740539550781, + -0.0034880535677075386, + 0.016916941851377487, + -0.03770960122346878, + -0.03594200685620308, + -0.0133433872833848, + -0.0022732438519597054, + 0.02720535174012184, + 0.07015474885702133, + 0.08542997390031815, + 0.025594228878617287, + -0.04942678287625313, + 0.15301765501499176, + 0.04025769606232643, + -0.010733634233474731, + -0.01362035982310772, + -0.04303517937660217, + -0.022967999801039696, + 0.01392461359500885, + -0.002075170399621129, + -0.009540868923068047, + -0.05655786767601967, + 0.03340798243880272, + -0.03534151613712311, + -0.061410848051309586, + 0.020656822249293327, + 0.035131484270095825, + -0.07830680906772614, + 0.04267873615026474, + -0.00043917662696912885, + -0.02327497862279415, + -0.08539373427629471, + 0.05220581963658333, + -0.025745606049895287, + -0.06348735094070435, + 0.054532766342163086, + -0.0470866821706295, + 0.02050609700381756, + -0.012086763046681881, + -0.03007330372929573, + 0.07672444730997086, + -0.08820189535617828, + -0.040913403034210205, + 0.004259986337274313, + -1.9685556296167306e-08, + 0.01757729984819889, + 0.029641803354024887, + -0.06771872937679291, + -0.007083669770509005, + -0.005844513885676861, + -0.06520142406225204, + 0.026406727731227875, + -0.05293036252260208, + -0.07854646444320679, + -0.05506841093301773, + 0.0044271801598370075, + -0.011602789163589478, + -0.035628415644168854, + -0.010542231611907482, + 0.036507945507764816, + -0.03431776911020279, + 0.0014252798864617944, + -0.009195063263177872, + -0.01999163068830967, + -0.042635366320610046, + 0.029956424608826637, + 0.04259912297129631, + 0.010341826826334, + -0.0465649850666523, + -1.9124643586110324e-05, + 0.05535705387592316, + 0.02214956283569336, + 0.0458931028842926, + 0.09707509726285934, + 0.07923045009374619, + 0.08082437515258789, + 0.030312681570649147, + -0.03179241344332695, + 0.07936982810497284, + -0.09898415952920914, + -0.012423200532793999, + 0.014129997231066227, + -0.04951817914843559, + -0.03667336329817772, + 0.06793935596942902, + -0.015987122431397438, + 0.01275943499058485, + -0.05248448625206947, + 0.035534679889678955, + 0.0669516772031784, + 0.09574658423662186, + 0.06910405308008194, + -0.012639164924621582, + 0.004051498137414455, + -0.03315494582056999, + -0.005025169812142849, + -0.025810914114117622, + 0.04472031444311142, + 0.048423781991004944, + 0.01631857268512249, + 0.06660126894712448, + 0.07115606218576431, + 0.03852235525846481, + -0.03632138669490814, + -0.03746061399579048, + 0.1122625470161438, + 0.05723462253808975, + 0.04057227820158005, + 0.04917091876268387 + ], + "lightning-bold||meteorology,stormy,thunderstorm,thunderbolt,charged,charger,charging,power,electricity,flash": [ + -0.0350382924079895, + -0.014143522828817368, + 0.049395155161619186, + 0.08525363355875015, + 0.0483664907515049, + -0.0219293050467968, + 0.05851796641945839, + -0.036594849079847336, + 0.028655894100666046, + -0.0403607115149498, + 0.05888959765434265, + -0.010668623261153698, + 0.020156389102339745, + 0.004315139260143042, + -0.046319037675857544, + 0.032211557030677795, + -0.009796717204153538, + -0.06822805851697922, + -0.015132690779864788, + 0.07385816425085068, + 0.0026869429275393486, + 0.03607501834630966, + -0.04865078255534172, + 0.00851412396878004, + 0.09433084726333618, + 0.06691062450408936, + 0.008711174130439758, + -0.016414843499660492, + -0.040988266468048096, + -0.07987567782402039, + 0.01423614751547575, + -0.005311611108481884, + 0.010093708522617817, + 0.05590728670358658, + 0.0046877386048436165, + 0.01838657818734646, + 0.0026118969544768333, + 0.02331763692200184, + -0.003584716934710741, + 0.05923091992735863, + 0.030809931457042694, + -0.106041818857193, + 0.02767440490424633, + -0.030950376763939857, + -0.0006389757618308067, + 0.010812634602189064, + -0.015090707689523697, + -0.019145313650369644, + -0.005675299093127251, + -0.014275719411671162, + -0.019264571368694305, + -0.1018950492143631, + -0.10836608707904816, + 0.07169550657272339, + 0.05071503669023514, + -0.006456253584474325, + -0.049781784415245056, + -0.06539261341094971, + 0.09399431943893433, + -0.026126578450202942, + -0.039247334003448486, + 0.06202897056937218, + -0.018351852893829346, + 0.06870217621326447, + 0.027313441038131714, + -0.005371066275984049, + -0.024518679827451706, + 0.10888545215129852, + 0.00190566829405725, + 0.020626457408070564, + 0.060623958706855774, + 0.0572379007935524, + 0.015909729525446892, + -0.028328925371170044, + -0.019773732870817184, + -0.01470501534640789, + 0.036076877266168594, + 0.0037736904341727495, + -0.05158418044447899, + -0.037877582013607025, + -0.0076959263533353806, + -0.037305768579244614, + -0.11285385489463806, + 0.02427738904953003, + 0.049643777310848236, + 0.07137896120548248, + -0.04394332692027092, + -0.052016839385032654, + -0.03876166418194771, + -0.025898726657032967, + -0.0708780512213707, + -0.045306429266929626, + 0.03328433632850647, + 0.04387950524687767, + -0.08325959742069244, + 0.08196178078651428, + 0.06747327744960785, + -0.11267256736755371, + -0.021919429302215576, + 0.06237010285258293, + 0.013399822637438774, + -0.05220608785748482, + 0.0002079177793348208, + 0.025730624794960022, + -0.002496947068721056, + -0.042882040143013, + -0.056633125990629196, + -0.03230217844247818, + -0.018310995772480965, + -0.0025615247432142496, + 0.05402888357639313, + -0.07603447884321213, + -0.09334263205528259, + -0.09222185611724854, + 0.05638492852449417, + -0.07657049596309662, + -0.1325806826353073, + 0.037817634642124176, + 0.06769842654466629, + 0.06511692702770233, + 0.01208388339728117, + -0.0025006053037941456, + 0.028669258579611778, + -0.004617409314960241, + 0.03269314765930176, + 0.0429217629134655, + 0.07256050407886505, + -2.383744402743215e-33, + 0.04906904697418213, + -0.007997578009963036, + -0.027567798271775246, + 0.0717436745762825, + 0.06048520281910896, + -0.01543889008462429, + 0.00945543684065342, + 0.03622918576002121, + -0.04331739991903305, + 0.07320370525121689, + -0.0009311288595199585, + 0.09958203881978989, + 0.04284198209643364, + 0.06304220110177994, + 0.04131762683391571, + -0.061581309884786606, + 0.019865993410348892, + -0.018269632011651993, + -0.037928350269794464, + 0.03677068650722504, + -0.02512899413704872, + 0.02450982853770256, + 0.007501510437577963, + -0.03226853907108307, + -0.03875306621193886, + -0.043404534459114075, + 0.04363721236586571, + -0.03784850984811783, + -0.0031253702472895384, + 0.0243826974183321, + 0.029597464948892593, + 0.0922924131155014, + 0.09467091411352158, + 0.04859457165002823, + -0.03260768949985504, + 0.06038813665509224, + -0.018198100849986076, + -0.06427045911550522, + -0.0008679688908159733, + -0.027425087988376617, + -0.09829112142324448, + -0.07383202016353607, + -0.1472543627023697, + 0.001881311764009297, + 0.08366381376981735, + 0.034834783524274826, + 0.026232846081256866, + -0.07901167869567871, + 0.006920583080500364, + -0.01915670558810234, + -0.04879540950059891, + -0.03391150012612343, + 0.018018951639533043, + 0.026190461590886116, + 0.07632450014352798, + 0.06048576161265373, + -0.029592838138341904, + 0.04424603283405304, + 0.0826176255941391, + 0.02171560376882553, + -0.045728955417871475, + 0.0036180021706968546, + 0.044187553226947784, + -0.12223020195960999, + -0.022154035046696663, + -0.013129064813256264, + 0.0066052088513970375, + 0.008095991797745228, + 0.002400324447080493, + 0.005113288760185242, + 0.009225779213011265, + 0.0007475300808437169, + 0.028917016461491585, + 0.03251390904188156, + 0.03755796700716019, + 0.016208820044994354, + -0.041972242295742035, + 0.03739973157644272, + 0.009493421763181686, + -0.023227086290717125, + -0.1880980134010315, + -0.057862527668476105, + 0.03183464705944061, + 0.12927168607711792, + 0.028874991461634636, + 0.02842526137828827, + -0.009798095561563969, + -0.0014420555671676993, + -0.04781274497509003, + 0.07535497844219208, + -0.024664487689733505, + 0.056818120181560516, + 0.05245926231145859, + -0.09455268085002899, + -0.05755137279629707, + 1.548157054512906e-34, + 0.0503108985722065, + 0.0348711721599102, + -0.11705758422613144, + 0.027853798121213913, + -0.007170281372964382, + 0.0432765893638134, + -0.05985456332564354, + 0.03390940651297569, + -0.04386145994067192, + 0.037214647978544235, + -0.0020470446906983852, + 0.029704201966524124, + -0.10820450633764267, + -0.12352560460567474, + 0.05042432248592377, + -0.009443766437470913, + 0.002635626820847392, + 0.0567149743437767, + -0.01843877136707306, + 0.07180441170930862, + 0.011253281496465206, + -0.03699977695941925, + -0.05075458437204361, + 0.029368098825216293, + -0.022517632693052292, + 0.05245785787701607, + 0.07886836677789688, + -0.008807780221104622, + -0.010665174573659897, + 0.011737576685845852, + -0.0424032136797905, + 0.01252147275954485, + 0.023444510996341705, + 0.043300919234752655, + -0.05640105530619621, + 0.06386931240558624, + 0.08160477131605148, + -0.07279085367918015, + -0.0055859885178506374, + -0.09735007584095001, + 0.032716698944568634, + 0.07146928459405899, + 0.12390179932117462, + -0.00398098723962903, + -0.03718585893511772, + -0.01880212314426899, + -0.08964897692203522, + 0.03629597648978233, + -0.0009285224950872362, + 0.03815113380551338, + -0.008313685655593872, + -0.06693216413259506, + -0.06648412346839905, + 0.06977930665016174, + -0.09353892505168915, + -0.086777463555336, + 0.035046134144067764, + -0.06028318405151367, + -0.001444193534553051, + 0.0042998939752578735, + -0.0055726561695337296, + -0.0436927005648613, + 0.05045578256249428, + 0.04390476271510124, + -0.02178952470421791, + -0.12668943405151367, + 0.02018483728170395, + -0.015863504260778427, + -0.025400137528777122, + 0.015440667048096657, + 0.08158370852470398, + 0.002042379230260849, + -0.02218722738325596, + -0.04066513851284981, + 0.03345714136958122, + -0.0354958213865757, + 0.017640236765146255, + 0.009510986506938934, + -0.028661448508501053, + -0.05819648504257202, + 0.06479174643754959, + 0.04963640496134758, + -0.07378136366605759, + -0.020464709028601646, + -0.047341734170913696, + -0.03252346068620682, + 0.07897544652223587, + 0.01075611263513565, + 0.029860490933060646, + 0.010749664157629013, + -0.04228758439421654, + 0.07159844785928726, + -0.005597308278083801, + -0.007940571755170822, + 0.00808016862720251, + -2.469758797474242e-08, + -0.011166822165250778, + 0.06521467119455338, + -0.043291229754686356, + -0.06469464302062988, + 0.0495486706495285, + -0.024922508746385574, + 0.011241561733186245, + 0.0316428579390049, + -0.019081346690654755, + -0.05694321170449257, + 0.05216556787490845, + -0.020372895523905754, + -0.0003799196856562048, + -0.026739828288555145, + 0.04512162134051323, + 0.033431071788072586, + -0.06447827816009521, + -0.01571107842028141, + -0.06518903374671936, + -0.03691009432077408, + -0.0019709295593202114, + 0.09129820019006729, + -0.03257196396589279, + -0.01991252973675728, + 0.10646012425422668, + 0.05005840212106705, + 0.019699791446328163, + -0.007149863056838512, + 0.06208651140332222, + -0.05772307887673378, + -0.04942374676465988, + 0.04332862049341202, + -0.03310205042362213, + 0.010230629704892635, + -0.07103420048952103, + 0.032844822853803635, + 0.00037865605554543436, + -0.037639979273080826, + -0.00023495855566579849, + 0.0420113205909729, + -0.036432407796382904, + -0.09326325356960297, + -0.023949746042490005, + -0.03383433446288109, + -0.06396766752004623, + 0.008962592110037804, + 0.004397796466946602, + -0.07902172952890396, + -0.025398649275302887, + 0.02760813944041729, + -0.02345346100628376, + -0.0003120659966953099, + 0.02711421065032482, + -0.013506563380360603, + -0.02626502700150013, + 0.045920778065919876, + -0.006298110354691744, + -0.002178643364459276, + -0.02513701096177101, + -0.0648723766207695, + 0.13069412112236023, + -0.03649408370256424, + -0.03866678103804588, + 0.09046810120344162 + ], + "lightning-a-bold||flash,auto": [ + -0.02565455436706543, + -0.07104640454053879, + -0.03269399330019951, + 0.10129348188638687, + 0.050832681357860565, + -0.023590881377458572, + 0.04700252786278725, + -0.049540985375642776, + 0.060250505805015564, + -0.004325902555137873, + 0.02331259287893772, + 0.07079292833805084, + -0.05592360720038414, + -0.002226501703262329, + 0.03193935751914978, + 0.020100990310311317, + -0.020886264741420746, + -0.0004741664743050933, + 0.0007385571952909231, + -0.02002142369747162, + 0.01375564094632864, + -0.07912813872098923, + 0.0668216422200203, + -0.010358233936131, + 0.02344711683690548, + 0.0019891869742423296, + 0.021900659427046776, + -0.04463792219758034, + 0.01443928387016058, + -0.07745296508073807, + 0.027820464223623276, + -0.021745670586824417, + 0.052114516496658325, + 0.068729467689991, + 0.006682402919977903, + -0.024932071566581726, + -0.0627804845571518, + -0.00018169412214774638, + 0.0065325298346579075, + 0.07419728487730026, + 0.06598582118749619, + -0.062307681888341904, + 0.05270139127969742, + -0.020071828737854958, + -0.0438469722867012, + -0.007351020351052284, + -0.047307148575782776, + -0.021577108651399612, + 0.022787563502788544, + -0.000985324732027948, + 0.014944844879209995, + -0.05380501598119736, + -0.027898957952857018, + -0.020335940644145012, + 0.03146594762802124, + 0.056017111986875534, + -0.016837315633893013, + -0.019839530810713768, + 0.09102760255336761, + -0.02049342729151249, + -0.009801271371543407, + 0.06375373154878616, + 0.06408420205116272, + 0.011524476110935211, + 0.06914664059877396, + 0.035128720104694366, + 0.008320811204612255, + -0.03425082936882973, + -0.03309999033808708, + 0.0822141095995903, + 0.06471234560012817, + -0.04132421687245369, + 0.020499708130955696, + -0.015885964035987854, + -0.05482259392738342, + 0.017245084047317505, + 0.012069066986441612, + 0.04958302527666092, + -0.10271178185939789, + 0.033026210963726044, + 0.029112080112099648, + -0.09248518198728561, + -0.03914456069469452, + 0.0695188045501709, + 0.08483944833278656, + 0.06366685032844543, + -0.05534296855330467, + -0.07841174304485321, + -0.030049487948417664, + 0.05745318904519081, + -0.09372106194496155, + -0.007157951593399048, + 0.014452059753239155, + 0.08367416262626648, + -0.07790353149175644, + 0.04090490564703941, + 0.10054183006286621, + -0.06778233498334885, + -0.13099217414855957, + 0.05217656120657921, + 0.005900869611650705, + 0.01186270359903574, + 0.024258403107523918, + 0.03720555454492569, + -0.04065223038196564, + -0.02787751704454422, + -0.06299454718828201, + 0.012698727659881115, + -0.024306409060955048, + 0.03938809782266617, + 0.0691901296377182, + -0.09225510060787201, + -0.03623959794640541, + -0.06023003160953522, + -0.01931474171578884, + -0.04875889793038368, + -0.09526240825653076, + 0.010879581794142723, + 0.1237802729010582, + 0.05662159249186516, + 0.07738940417766571, + 0.0063177538104355335, + -0.02662450633943081, + 0.0017127719474956393, + 0.0944145917892456, + 0.015896309167146683, + 0.03750571981072426, + -3.203108597317482e-33, + 0.041619673371315, + 0.026627011597156525, + -0.12990102171897888, + 0.05502232164144516, + -0.0070968130603432655, + -0.0525846928358078, + 0.013857143931090832, + -0.05713128671050072, + -0.0868520513176918, + -0.015867894515395164, + 0.07296815514564514, + 0.08513600379228592, + -0.028521262109279633, + 0.02464304305613041, + 0.02433648332953453, + -0.023201387375593185, + 0.05169107764959335, + -0.058662332594394684, + -0.034866753965616226, + -0.003231196664273739, + -0.014844046905636787, + 0.01738491840660572, + -0.04270612820982933, + -0.041308898478746414, + -0.08314212411642075, + -0.007805064786225557, + 0.04766172915697098, + -0.02630767598748207, + -0.028783028945326805, + 0.050591446459293365, + -0.009473945945501328, + 0.03357696533203125, + 0.0766790583729744, + 0.008635902777314186, + 0.028288867324590683, + 0.024527540430426598, + -0.09342134743928909, + -0.020594974979758263, + 0.005474433768540621, + 0.02983529306948185, + -0.06703527271747589, + -0.03454415872693062, + -0.09669678658246994, + -0.04471215605735779, + 0.027054764330387115, + 0.1319286823272705, + 0.016177842393517494, + -0.023778680711984634, + -0.013823969289660454, + 0.013231190852820873, + 0.01783052459359169, + -0.04009460285305977, + -0.029211867600679398, + 0.03251991420984268, + 0.042573459446430206, + 0.032030247151851654, + -0.08582661300897598, + 0.09212548285722733, + 0.08923255652189255, + 0.0031440930906683207, + -0.015175007283687592, + -0.00567195238545537, + 0.017590627074241638, + 0.012602554634213448, + -0.07536929845809937, + 0.055325139313936234, + -0.05730491504073143, + 0.037914592772722244, + 0.04929288849234581, + -0.03342645987868309, + 0.03844946250319481, + -0.010377725586295128, + 0.032523013651371, + 0.033707551658153534, + -0.03277815505862236, + 0.0232674740254879, + 0.02580527774989605, + -0.017209546640515327, + 0.0567934513092041, + -0.09353987127542496, + -0.08690068125724792, + -0.028252698481082916, + 0.004804689437150955, + 0.1078171581029892, + 0.07476099580526352, + -0.02901078760623932, + -0.026043012738227844, + -0.0036207304801791906, + -0.07111434638500214, + -0.011051913723349571, + 0.0341840460896492, + -0.01632118411362171, + 0.034379273653030396, + -0.07598383724689484, + -0.06119488179683685, + 1.0116047243787364e-34, + 0.08781332522630692, + 0.026218200102448463, + -0.11690180003643036, + 0.03158207982778549, + -0.05308797210454941, + 0.056383177638053894, + -0.010059424676001072, + 0.038363222032785416, + -0.004461151547729969, + 0.04182902351021767, + 0.02599395252764225, + 0.03526008874177933, + -0.1005806252360344, + -0.06656172126531601, + 0.021051112562417984, + -0.022656427696347237, + 0.012152871116995811, + 0.043510694056749344, + -0.01452480349689722, + 0.06475751847028732, + -0.014474828727543354, + -0.061286911368370056, + 0.00290948455221951, + 0.08462678641080856, + 0.002382570179179311, + -0.0012650175485759974, + 0.057110339403152466, + 0.05704079940915108, + -0.07745017856359482, + -0.04531024023890495, + 0.059969063848257065, + 0.0658394917845726, + -0.003474028781056404, + 0.03457285091280937, + -0.07800548523664474, + 0.028440464287996292, + -0.030813725665211678, + -0.047578584402799606, + 0.00266241910867393, + 0.019651899114251137, + 0.04243311285972595, + -0.009723720140755177, + 0.015131168067455292, + -0.08430656790733337, + -0.04259677231311798, + 0.030205892398953438, + -0.041868824511766434, + -0.024134553968906403, + 0.07580780237913132, + 0.06508469581604004, + 0.0237696822732687, + -0.044426314532756805, + 0.01086393278092146, + 0.012366223149001598, + -0.12142074108123779, + -0.08438025414943695, + 0.04086141288280487, + 0.02622939646244049, + -0.04714462161064148, + 0.060651957988739014, + 0.04186078533530235, + -0.019164754077792168, + 0.023689838126301765, + -0.018068213015794754, + 0.018759258091449738, + -0.05214434117078781, + 0.02273326925933361, + -0.005732900928705931, + 0.022650571539998055, + 0.00839276984333992, + 0.11725703626871109, + 0.02304653450846672, + 0.024261143058538437, + 0.0729181095957756, + 0.021550234407186508, + -0.09483305364847183, + 0.03712170943617821, + -0.029462814331054688, + 0.020076027140021324, + -0.059579212218523026, + -0.0354691818356514, + 0.04828473553061485, + -0.08418165147304535, + 0.029691867530345917, + -0.11408747732639313, + 0.038677167147397995, + -0.01576956734061241, + 0.06399214267730713, + -0.020695863291621208, + 0.003522285260260105, + -0.03137736767530441, + 0.032148558646440506, + 0.027731165289878845, + -0.04928295314311981, + -0.047986291348934174, + -1.6646806599851516e-08, + -0.06567821651697159, + 0.03196549788117409, + 0.007557965815067291, + -0.017843691632151604, + 0.04470786079764366, + -0.04282376170158386, + -0.027868803590536118, + -0.02536586858332157, + 0.007374469190835953, + -0.13927151262760162, + -0.012002646923065186, + 0.031236067414283752, + 0.040502361953258514, + -0.005374613218009472, + 0.0006552684353664517, + 0.04819824546575546, + -0.03060794807970524, + 0.029452085494995117, + -0.06520976126194, + -0.04425586387515068, + -0.07702765613794327, + 0.053514789789915085, + 0.008184438571333885, + 0.004597600549459457, + 0.028424549847841263, + 0.008966569788753986, + -0.05249128118157387, + -0.004016767255961895, + 0.08117091655731201, + 0.05562673509120941, + -0.03276665508747101, + 0.020080789923667908, + 0.05132988467812538, + -0.023065468296408653, + -0.11814110726118088, + 0.004626487381756306, + 0.060657620429992676, + -0.07104508578777313, + -0.03200014308094978, + 0.04657559096813202, + -0.05823514237999916, + -0.04703762009739876, + 0.012158744037151337, + -0.0589972659945488, + -0.1308368295431137, + 0.023892736062407494, + 0.01911388337612152, + -0.07423876225948334, + -0.026777472347021103, + -0.011055990122258663, + -0.004026469308882952, + -0.021336091682314873, + -0.07574091106653214, + 0.06570418924093246, + -0.019384248182177544, + -0.07237355411052704, + 0.009678928181529045, + 0.058645203709602356, + -0.05534430220723152, + -0.0752243623137474, + 0.12094831466674805, + -0.038684695959091187, + 0.002054367447271943, + 0.08198371529579163 + ], + "lightning-slash-bold||thunderbolt,charged,charger,charging,power,electricity,disabled,flash": [ + -0.05142032355070114, + -0.012881106697022915, + 0.0012716827914118767, + 0.08978807181119919, + 0.04558038339018822, + -0.004066600929945707, + 0.04564957693219185, + -0.023596443235874176, + 0.02400854602456093, + -0.015945496037602425, + 0.10874556750059128, + 0.005921606440097094, + -0.03783233091235161, + 0.06057575345039368, + -0.07614382356405258, + 0.04049515724182129, + 0.026994485408067703, + -0.034329164773225784, + 0.008892117068171501, + 0.0634036734700203, + -0.004346014000475407, + 0.001625745091587305, + -0.011884046718478203, + -0.00710291275754571, + 0.03247997537255287, + 0.023357689380645752, + 0.047676581889390945, + -0.0223800428211689, + -0.051822759211063385, + -0.10423777252435684, + 0.02187507227063179, + -0.02536374144256115, + 0.05555430054664612, + 0.07097703218460083, + 0.012508392333984375, + -0.01855136640369892, + 0.05139121040701866, + -0.02253122813999653, + 0.005434851627796888, + -0.03304436802864075, + 0.019822534173727036, + -0.10612237453460693, + -0.004033835604786873, + -0.028505397960543633, + -0.007309766951948404, + 0.03373327851295471, + 0.0017306765075773, + -0.04354120045900345, + -0.02385825850069523, + 0.0015589543618261814, + 0.0528317391872406, + -0.06733416020870209, + -0.1083756610751152, + 0.056247010827064514, + 0.07575073093175888, + 0.01930982992053032, + -0.05306779965758324, + 0.0015098538715392351, + 0.13452038168907166, + -0.04127278923988342, + -0.02513650804758072, + 0.0126102976500988, + -0.0009870961075648665, + 0.04289453104138374, + 0.001967574004083872, + -0.010831385850906372, + -0.012004787102341652, + 0.032251518219709396, + -0.04736698046326637, + 0.026953907683491707, + 0.07277189940214157, + 0.015393214300274849, + -0.027551954612135887, + -0.04166921228170395, + -0.030636033043265343, + -0.000771486375015229, + 0.00033388129668310285, + 0.01262733619660139, + -0.06301436573266983, + -0.02999577485024929, + -0.02237713150680065, + -0.013813057914376259, + -0.09298969060182571, + 0.10286154597997665, + 0.0651775449514389, + 0.061513643711805344, + -0.057541608810424805, + -0.057389434427022934, + -0.026946835219860077, + -0.06612113863229752, + -0.04850698634982109, + -0.02313435822725296, + 0.06438618898391724, + 0.015594585798680782, + -0.08736901730298996, + 0.05001908540725708, + 0.03766030818223953, + -0.09147664904594421, + -0.09092691540718079, + 0.04957610368728638, + 0.04333851858973503, + 0.022098857909440994, + -0.009219003841280937, + -0.018651539459824562, + 0.014332554303109646, + -0.03993019089102745, + -0.0465957373380661, + 0.01444579940289259, + -0.01729908026754856, + 0.0014894952764734626, + 0.0905723124742508, + -0.0795983150601387, + -0.09055663645267487, + -0.038585081696510315, + 0.056289318948984146, + -0.07973320037126541, + -0.10659530013799667, + 0.030474424362182617, + 0.12795491516590118, + 0.06078953295946121, + 0.01957976631820202, + -0.018762988969683647, + 0.0024355007335543633, + -0.08005408197641373, + -0.025329001247882843, + 0.002463555196300149, + 0.05893032252788544, + -2.6945838636800065e-33, + 0.07761812955141068, + 0.005297275260090828, + -0.05627565458416939, + -0.0044937958009541035, + 0.063845194876194, + -0.02826392836868763, + 0.03388383239507675, + 0.026663070544600487, + -0.07877549529075623, + 0.042395539581775665, + 0.020871601998806, + 0.07383964955806732, + 0.05047713965177536, + 0.027444038540124893, + 0.054378774017095566, + -0.03948869928717613, + 0.02858625166118145, + -0.03956630825996399, + -0.023449478670954704, + 0.03127177432179451, + 0.03719871863722801, + 0.10111239552497864, + 0.016202852129936218, + -0.0210772305727005, + -0.006659191567450762, + -0.02268785983324051, + 0.030725881457328796, + -0.02687734179198742, + 0.019458694383502007, + 0.02771715633571148, + -0.004997775424271822, + 0.06146293506026268, + 0.09700728952884674, + 0.04103080928325653, + -0.028704458847641945, + 0.10065945982933044, + 0.015531321056187153, + -0.05179844796657562, + -0.018923738971352577, + -0.0030948896892368793, + -0.08304214477539062, + -0.10165722668170929, + -0.1750643253326416, + -0.02149369940161705, + 0.023014571517705917, + 0.039851363748311996, + 0.03096456453204155, + -0.12342856079339981, + -0.011821833439171314, + 0.02586979605257511, + -0.0701940506696701, + -0.05777937173843384, + 0.08799553662538528, + 0.015551102347671986, + 0.029972326010465622, + -0.012642983347177505, + -0.09007306396961212, + 0.07118511199951172, + 0.12240105867385864, + 0.02319358102977276, + -0.016054559499025345, + -0.01635953038930893, + 0.01816694065928459, + -0.06397444009780884, + -0.09439341723918915, + 0.02404019422829151, + -0.03397437557578087, + 0.01607499085366726, + -0.002151108579710126, + -0.014417021535336971, + -0.028511235490441322, + -0.011984645389020443, + 0.06677976250648499, + 0.028616122901439667, + -0.01071311067789793, + 0.022938933223485947, + -0.0742340162396431, + 0.025198956951498985, + -0.013234381563961506, + -0.036443304270505905, + -0.17543986439704895, + -0.03280035778880119, + 0.013622894883155823, + 0.1636090874671936, + 0.05540347844362259, + 0.011676685884594917, + -0.035808175802230835, + 0.018679503351449966, + -0.044217854738235474, + 0.04643594101071358, + -0.0012356516672298312, + 0.027617933228611946, + -0.013035999611020088, + -0.08698462694883347, + -0.02116416022181511, + 8.632915919450306e-34, + 0.06533098965883255, + 0.01033701654523611, + -0.10412261635065079, + 0.028773566707968712, + -0.06163794547319412, + 0.02026626095175743, + -0.05054793879389763, + 0.008941513486206532, + -0.024897515773773193, + 0.02228238619863987, + 0.035675693303346634, + 0.05056888237595558, + -0.05726785212755203, + -0.09741688519716263, + 0.05438848212361336, + -0.003718275111168623, + -0.03284275159239769, + 0.00890975259244442, + 0.004145016893744469, + 0.06514519453048706, + -0.00478309066966176, + -0.0026467186398804188, + -0.004636265337467194, + 0.06243792548775673, + -0.042569857090711594, + 0.07874498516321182, + 0.10458637773990631, + -0.0010036082239821553, + 0.008721188642084599, + 0.001166917267255485, + 0.024209681898355484, + 0.02137177810072899, + 0.03030562400817871, + 0.030661566182971, + -0.05602321773767471, + 0.03444917872548103, + -0.023749465122818947, + 0.01946663297712803, + 0.0045935665257275105, + -0.07422041893005371, + 0.03269705921411514, + 0.04976880922913551, + 0.062380000948905945, + 0.05816638469696045, + -0.02083960361778736, + -0.04107564687728882, + -0.052821673452854156, + -0.037993524223566055, + 0.01461556926369667, + 0.04937263950705528, + 0.0068728132173419, + -0.06052522361278534, + -0.03732755780220032, + 0.06551545858383179, + -0.09484388679265976, + -0.09142780303955078, + 0.026171661913394928, + 0.0331353023648262, + -0.024076811969280243, + 0.03204865753650665, + 0.05023328214883804, + -0.024530399590730667, + 0.040635332465171814, + 0.020598821341991425, + 0.0023414602037519217, + -0.09911619126796722, + 0.03205089643597603, + 0.010782255791127682, + 0.013192256912589073, + 0.002477281726896763, + 0.04692486301064491, + 0.028030140325427055, + 0.05487745255231857, + -0.030707858502864838, + 0.053396567702293396, + -0.06578806042671204, + -0.01565411128103733, + -0.0365331768989563, + 0.013331826776266098, + -0.01522541232407093, + 0.040985871106386185, + 0.04163316637277603, + -0.06425772607326508, + -0.013147401623427868, + -0.07423678040504456, + -0.039928726851940155, + 0.011249233968555927, + 0.1128174215555191, + 0.0377827025949955, + -0.04009805619716644, + -0.05481618642807007, + 0.04161088168621063, + -0.01421238575130701, + 0.03402992710471153, + -0.0730254203081131, + -2.1261557847651602e-08, + -0.034623198211193085, + 0.04187069088220596, + -0.014226228930056095, + -0.005712996236979961, + 0.0407540388405323, + -0.039454102516174316, + 0.008150407113134861, + 0.013788305222988129, + 0.002760235220193863, + -0.07183420658111572, + 0.07158376276493073, + -0.04735098034143448, + -0.0222929697483778, + -0.027637211605906487, + 0.04093948006629944, + 0.10031404346227646, + -0.03377967327833176, + 0.0355217419564724, + -0.05317306146025658, + -0.005192774347960949, + -0.03876248747110367, + 0.0679577887058258, + -0.0010761619778349996, + 0.00841701589524746, + 0.07503583282232285, + 0.010592611506581306, + 0.021838517859578133, + -0.005673029460012913, + 0.06041289120912552, + -0.04711342602968216, + -0.03465649113059044, + 0.04235921800136566, + 0.0026766331866383553, + 0.02906937710940838, + -0.08598287403583527, + 0.004024605732411146, + -0.015239403583109379, + -0.01800118200480938, + 0.05207936838269234, + 0.017686009407043457, + -0.05797562003135681, + -0.137834370136261, + 0.0038956429343670607, + -0.03646352142095566, + -0.08345521241426468, + 0.029528271406888962, + 0.017824264243245125, + -0.025006979703903198, + -0.06785736232995987, + 0.007007315754890442, + -0.044108495116233826, + 0.034664466977119446, + -0.03357616439461708, + 0.018584802746772766, + -0.021890921518206596, + 0.03390223905444145, + 0.015948401764035225, + -0.005851358640938997, + -0.04068596288561821, + -0.05594464763998985, + 0.16622452437877655, + -0.04979271441698074, + 0.011771691963076591, + 0.0632479339838028 + ], + "line-segment-bold||shapes,drawing,path,pen,vector": [ + 0.017936665564775467, + -0.023968366906046867, + -0.028228122740983963, + 0.024287529289722443, + 0.014938615262508392, + -0.058439645916223526, + 0.05013313889503479, + -0.03437105193734169, + 0.016263969242572784, + -0.03113114833831787, + -0.04397505149245262, + 0.05153606832027435, + -0.0010838371235877275, + 0.025627730414271355, + -0.021800605580210686, + 0.02348678559064865, + -0.043770115822553635, + 0.010435568168759346, + 0.015216394327580929, + 0.03371553495526314, + 0.03452549874782562, + 0.025211459025740623, + 0.029647579416632652, + -0.011262095533311367, + 0.03485719859600067, + 0.028511639684438705, + 0.1209757998585701, + -0.03149747475981712, + 0.030403370037674904, + -0.06904751807451248, + -0.022034110501408577, + 0.00034853536635637283, + 0.09313303232192993, + 0.030689232051372528, + 0.034985627979040146, + -0.032902851700782776, + 0.020281760022044182, + 0.012283574789762497, + 0.013280071318149567, + 0.02925623208284378, + 0.01662731170654297, + -0.03323511779308319, + -0.02729222923517227, + 0.017170056700706482, + 0.04750850424170494, + -0.022935636341571808, + -0.08512093126773834, + -0.03137717396020889, + 0.00911368615925312, + 0.02010069414973259, + -0.013763083145022392, + -0.1361890435218811, + -0.1269160807132721, + 0.003719463013112545, + 0.03364570438861847, + -0.0017269308445975184, + -0.021398313343524933, + -0.01243665162473917, + 0.06925273686647415, + -0.08571884036064148, + 0.035252392292022705, + -0.000165633944561705, + 0.041790615767240524, + 0.02291126362979412, + -0.016444597393274307, + 0.013934374786913395, + -0.011932794004678726, + 0.04425714537501335, + 0.014161871746182442, + 0.00908361654728651, + 0.017131604254245758, + 0.02752711810171604, + -0.024404237046837807, + -0.06750179082155228, + -0.0023742537014186382, + 0.023615222424268723, + 0.02929544821381569, + 0.07687842100858688, + -0.03854843229055405, + -0.0845266580581665, + -0.07904346287250519, + -0.03963082283735275, + -0.028785351663827896, + 0.06804681569337845, + 0.06849948316812515, + 0.09965605288743973, + -0.061360497027635574, + -0.12151596695184708, + 0.007805736269801855, + 0.04512820392847061, + -0.029121389612555504, + 0.09376011788845062, + -0.07526686787605286, + 0.013593670912086964, + -0.06661670655012131, + -0.03157351538538933, + 0.06252018362283707, + -0.010832380503416061, + -0.04105479642748833, + 0.0554017648100853, + 0.08338461816310883, + 0.011088171973824501, + 0.03355752304196358, + 0.013654816895723343, + -0.010898763313889503, + 0.03726457431912422, + 0.026309432461857796, + -0.07929638028144836, + 0.018748492002487183, + 0.018045390024781227, + 0.007681256625801325, + -0.1114615947008133, + -0.011188723146915436, + -0.04824863374233246, + -0.005393905099481344, + -0.09276679903268814, + -0.07077562063932419, + 0.017209624871611595, + 0.11370247602462769, + 0.1221073567867279, + -0.019119031727313995, + 0.03807093948125839, + -0.059353407472372055, + 0.040567945688962936, + -0.0005844375118613243, + 0.010818002745509148, + 0.030568769201636314, + -3.347212817126771e-33, + 0.016737673431634903, + 0.018717285245656967, + 0.020459076389670372, + 0.06136271730065346, + 0.032980963587760925, + 0.013429227285087109, + -0.04731497913599014, + -0.036589812487363815, + -0.0557434968650341, + -0.011283387430012226, + 0.0035602902062237263, + -0.07777136564254761, + 0.010723413899540901, + 0.1050681620836258, + 0.08112315088510513, + -0.07559157907962799, + 0.057866357266902924, + -0.039767615497112274, + -0.07450789958238602, + 0.0468849316239357, + -0.0564439631998539, + -0.02614266239106655, + -0.059141531586647034, + -0.041415680199861526, + -0.007275041658431292, + -0.04227660596370697, + 0.011009030044078827, + -0.01069887075573206, + -0.04565344750881195, + 0.039069004356861115, + -0.042381949722766876, + 0.013459831476211548, + 0.0634010061621666, + 0.016400324180722237, + -0.13806748390197754, + 0.03859326243400574, + -0.0029722985345870256, + -0.03859034180641174, + 0.008090145885944366, + 0.003883285913616419, + 0.010186679661273956, + -0.04144662991166115, + 0.05093060061335564, + -0.0173026192933321, + 0.0055393981747329235, + 0.14409463107585907, + -0.022971272468566895, + 0.020899804309010506, + -0.06229483708739281, + 0.05614852160215378, + -0.05474939942359924, + -0.015401354059576988, + 0.0780770480632782, + -0.02442549541592598, + 0.03328128531575203, + -0.07082539796829224, + -0.04934588074684143, + 0.07285863906145096, + -0.030382519587874413, + 0.009115765802562237, + 0.013958041556179523, + 0.10636922717094421, + -0.020297886803746223, + 0.027630625292658806, + -0.08107422292232513, + 0.011011510156095028, + -0.049637552350759506, + 0.027068715542554855, + 0.054714564234018326, + 0.010585840791463852, + -0.06509751081466675, + 0.06923422962427139, + 0.00759631535038352, + -0.015794675797224045, + -0.025533435866236687, + 0.008915943093597889, + -0.03963588550686836, + 0.015832435339689255, + 0.054918546229600906, + -0.06147203966975212, + -0.1273663192987442, + -0.01944396086037159, + -0.06493838876485825, + -0.04500684142112732, + 0.032551851123571396, + 0.019230373203754425, + 0.07908357679843903, + -0.07629550248384476, + -0.02922997623682022, + 0.04626323655247688, + -0.09724870324134827, + -0.018369050696492195, + 0.015610495582222939, + 0.02083168923854828, + -0.07659787684679031, + 1.5702455576375664e-33, + -0.0027186318766325712, + 0.0795731469988823, + 0.012414732947945595, + 0.020441822707653046, + -0.08814995735883713, + 0.013097679242491722, + -0.02200094237923622, + -0.005605971906334162, + 0.003956807777285576, + 0.08088447898626328, + 0.0001498547353548929, + 0.02430548705160618, + -0.04789011925458908, + -0.05224732309579849, + 0.040964603424072266, + -0.01773213967680931, + -0.04005290940403938, + -0.016016941517591476, + -0.017415791749954224, + -0.03091992624104023, + -0.07801325619220734, + -0.042443517595529556, + -0.015378838405013084, + 0.006844693329185247, + -0.06757368892431259, + 0.03599110245704651, + 0.037860605865716934, + -0.023078640922904015, + -0.08009197562932968, + -0.016460616141557693, + -0.01568710058927536, + -0.0517592690885067, + 0.011716467328369617, + 0.060781873762607574, + -0.059803854674100876, + 0.03540468215942383, + 0.04260199889540672, + -0.060483865439891815, + 0.09307744354009628, + -0.03687868267297745, + 0.004597616381943226, + 0.0075489007867872715, + 0.03886003792285919, + -0.02780219353735447, + -0.12290827184915543, + 0.047314975410699844, + 0.03470012918114662, + 0.04396524280309677, + -0.06772629171609879, + 0.043105944991111755, + -0.03543194383382797, + 0.05678557604551315, + 0.008116810582578182, + 0.060029223561286926, + -0.04854410141706467, + -0.03923086076974869, + -0.0382247194647789, + -0.028964288532733917, + -0.017582891508936882, + 0.03728724271059036, + -0.02365737408399582, + 0.05210818350315094, + -0.07167066633701324, + 0.047972261905670166, + 0.11756119132041931, + -0.035346776247024536, + 0.059252042323350906, + -0.03749540075659752, + 0.051416460424661636, + 0.021633533760905266, + 0.07934775203466415, + 0.12049848586320877, + 0.0548606738448143, + 0.05669676885008812, + 0.022147946059703827, + -0.024703722447156906, + 0.04498513042926788, + 0.00806537363678217, + 0.008040698245167732, + 0.0335465706884861, + -0.02060500532388687, + -0.04959908127784729, + 0.0016731423093006015, + 0.10582365840673447, + -0.04965838044881821, + 0.04843403398990631, + -0.04950354993343353, + 0.013795368373394012, + 0.021689869463443756, + 0.016784541308879852, + -0.038866933435201645, + 0.03770121559500694, + -0.031076347455382347, + 0.010805811733007431, + -0.005368394311517477, + -1.9441687371113403e-08, + -0.02431926690042019, + -0.03223225101828575, + -0.0404776930809021, + -0.06793873757123947, + 0.08352390676736832, + -0.019439909607172012, + -0.0066865780390799046, + -0.05875318497419357, + -0.060277365148067474, + 0.025772185996174812, + 0.05504501238465309, + -0.009831495583057404, + -0.11956778168678284, + -0.0473768375813961, + 0.014778057113289833, + 0.00856764242053032, + 0.018063722178339958, + 0.025730974972248077, + -0.016089793294668198, + -0.0336826853454113, + -0.047601278871297836, + 0.01310295145958662, + 0.007752143312245607, + 0.017475314438343048, + 0.03709235414862633, + -0.04010545834898949, + -0.03359433636069298, + 0.07351698726415634, + 0.08897550404071808, + 0.016475338488817215, + 0.03180311620235443, + 0.04075520858168602, + 0.0800928920507431, + 0.08044677972793579, + -0.020472342148423195, + -0.09657783061265945, + -0.060027070343494415, + 0.05892019718885422, + -0.02368534542620182, + 0.15746374428272247, + -0.0005094616790302098, + 0.018620016053318977, + 0.07596245408058167, + -0.08247710019350052, + -0.0011839403305202723, + 0.00803997740149498, + 0.07758011668920517, + -0.01229121070355177, + -0.10315995663404465, + -0.05113692581653595, + -0.10117827355861664, + 0.05901553854346275, + 0.03682089224457741, + 0.09847576916217804, + -0.06139345467090607, + -0.10362661629915237, + -0.02218068391084671, + 0.07390815019607544, + -0.02896173857152462, + 0.048197221010923386, + 0.06057490408420563, + 0.03667708858847618, + -0.034703999757766724, + -0.03146178275346756 + ], + "line-segments-bold||shapes,drawing,path,pen,vector": [ + 0.004151416942477226, + -0.009672646410763264, + -0.018344398587942123, + 0.015922361984848976, + -0.004177845548838377, + -0.05762609839439392, + 0.03103102557361126, + -0.026600416749715805, + 0.019219819456338882, + -0.0344572439789772, + -0.036763355135917664, + 0.05921956151723862, + 0.0041720010340213776, + 0.02176286093890667, + -0.006421428173780441, + 0.02032504975795746, + -0.05857563391327858, + 0.013846480287611485, + 0.00015451876970473677, + 0.03481981158256531, + 0.03656097501516342, + 0.025286952033638954, + 0.01827416941523552, + 0.00012226158287376165, + 0.029657645151019096, + 0.03176891803741455, + 0.11131547391414642, + -0.02492915466427803, + 0.03426884859800339, + -0.0673503577709198, + -0.022449394688010216, + 0.008443200960755348, + 0.07918160408735275, + 0.03159232437610626, + 0.03894570469856262, + -0.04639805853366852, + 0.023869896307587624, + 0.021023262292146683, + 0.015499711036682129, + 0.028414588421583176, + 0.028456799685955048, + -0.031285107135772705, + -0.027452463284134865, + 0.03186848387122154, + 0.026498224586248398, + -0.017664875835180283, + -0.09106580913066864, + -0.029759326949715614, + -0.0024569614324718714, + 0.018233072012662888, + -0.027408594265580177, + -0.13563098013401031, + -0.13273461163043976, + -0.00020423416572157294, + 0.04011816903948784, + -0.010429956950247288, + -0.03247394785284996, + -0.010488263331353664, + 0.06458231806755066, + -0.06574875116348267, + 0.05423525348305702, + -0.004613305442035198, + 0.023842714726924896, + 0.026485221460461617, + -0.03131083399057388, + 0.02264677919447422, + -0.005772873759269714, + 0.045210275799036026, + 0.017787063494324684, + 0.019950877875089645, + 0.00757096940651536, + 0.04080747812986374, + -0.03173230215907097, + -0.06272893399000168, + -0.004498899914324284, + 0.022740276530385017, + 0.018493056297302246, + 0.06638766080141068, + -0.05042852833867073, + -0.09446760267019272, + -0.08692790567874908, + -0.047907400876283646, + -0.026476414874196053, + 0.07110927999019623, + 0.060637686401605606, + 0.0986035093665123, + -0.058394964784383774, + -0.12440292537212372, + -0.0011546214809641242, + 0.03408322483301163, + -0.020648974925279617, + 0.07381955534219742, + -0.0636284202337265, + 0.012276014313101768, + -0.07125042378902435, + -0.023635108023881912, + 0.06561357527971268, + -0.017604438588023186, + -0.027233634144067764, + 0.05760708823800087, + 0.08384905010461807, + -0.0013128111604601145, + 0.03808281943202019, + 0.016025662422180176, + -0.012163223698735237, + 0.041642893105745316, + 0.016325168311595917, + -0.06979449093341827, + 0.013170058839023113, + 0.03201955929398537, + 0.004558524116873741, + -0.10792124271392822, + -0.004381934180855751, + -0.04970464110374451, + -0.017177952453494072, + -0.09835391491651535, + -0.07810896635055542, + 0.013397603295743465, + 0.13182967901229858, + 0.12242364138364792, + -0.009928343817591667, + 0.035528793931007385, + -0.04649866744875908, + 0.0434131845831871, + -0.006498443428426981, + 0.008170600980520248, + 0.028844384476542473, + -3.312759812388139e-33, + 0.015433003194630146, + 0.027114437893033028, + 0.037784695625305176, + 0.0743827298283577, + 0.019591137766838074, + 0.012731347233057022, + -0.04696733132004738, + -0.029811451211571693, + -0.04298163950443268, + -0.0017741109477356076, + -0.00254627363756299, + -0.05698028951883316, + 0.015596221201121807, + 0.10612282156944275, + 0.09144452214241028, + -0.08678840845823288, + 0.06319385021924973, + -0.041399985551834106, + -0.07596219331026077, + 0.036428265273571014, + -0.06373730301856995, + -0.03264479711651802, + -0.043897595256567, + -0.047278858721256256, + -0.006270061247050762, + -0.030012890696525574, + 0.007957260124385357, + -0.006741535849869251, + -0.0628657341003418, + 0.03923744708299637, + -0.034439608454704285, + 0.013881274498999119, + 0.0596756711602211, + 0.02298380807042122, + -0.13052181899547577, + 0.04589740186929703, + -0.020446831360459328, + -0.03290776535868645, + 0.004152074921876192, + 0.01445312611758709, + 0.004916870500892401, + -0.04327767714858055, + 0.05154326185584068, + 0.000552471203263849, + 0.002037494909018278, + 0.1597220003604889, + -0.02536950260400772, + 0.020513547584414482, + -0.06571430712938309, + 0.057227857410907745, + -0.05017527937889099, + 0.00598937040194869, + 0.0802329033613205, + -0.042292580008506775, + 0.04515821486711502, + -0.07346782088279724, + -0.05258173495531082, + 0.0684543251991272, + -0.04609144479036331, + 0.014110011048614979, + 0.009897728450596333, + 0.10731323808431625, + -0.031120233237743378, + 0.021205205470323563, + -0.08646798133850098, + 0.021466480568051338, + -0.050655655562877655, + 0.03654032200574875, + 0.057213425636291504, + 0.003945987205952406, + -0.08077563345432281, + 0.05638335272669792, + 0.016746917739510536, + -0.019111743196845055, + -0.027765536680817604, + -0.00257428758777678, + -0.0360596738755703, + 0.015928730368614197, + 0.06420929729938507, + -0.06363731622695923, + -0.117405004799366, + -0.01273313257843256, + -0.06127011775970459, + -0.04720526933670044, + 0.03578842431306839, + 0.01058827992528677, + 0.08679715543985367, + -0.07282229512929916, + -0.03108092211186886, + 0.04265512153506279, + -0.10452410578727722, + -0.0026979180984199047, + 0.016610467806458473, + 0.022686252370476723, + -0.06227297708392143, + 1.3025099133419935e-33, + 0.002665288047865033, + 0.07590542733669281, + 0.006459781900048256, + 0.014019744470715523, + -0.07450959831476212, + 0.01696498692035675, + -0.012590520083904266, + 0.0068239388056099415, + 0.005795453209429979, + 0.07347142696380615, + -0.0028936504386365414, + 0.02738133631646633, + -0.0538397915661335, + -0.06034531816840172, + 0.02764764428138733, + -0.03344355523586273, + -0.023981740698218346, + -0.025133894756436348, + -0.01468117255717516, + -0.026364045217633247, + -0.0633099153637886, + -0.04085423797369003, + -0.029975516721606255, + -0.0015625610249117017, + -0.05782100930809975, + 0.030688628554344177, + 0.04063864052295685, + -0.04627405107021332, + -0.07428011298179626, + -0.005993364844471216, + -0.003824535757303238, + -0.06997346132993698, + 0.013555951416492462, + 0.05422856658697128, + -0.06177063286304474, + 0.025973787531256676, + 0.03350885584950447, + -0.05243569612503052, + 0.09712626039981842, + -0.05081068351864815, + 0.006532172206789255, + 0.008790673688054085, + 0.05586131662130356, + -0.022892538458108902, + -0.12153767794370651, + 0.043577153235673904, + 0.02808414027094841, + 0.03578600659966469, + -0.09162092208862305, + 0.04110531136393547, + -0.05939259007573128, + 0.06398805975914001, + 0.005180651787668467, + 0.044214993715286255, + -0.03742608800530434, + -0.05425728112459183, + -0.033798106014728546, + -0.03236408531665802, + -0.009546876884996891, + 0.042883798480033875, + -0.02792838029563427, + 0.05318663269281387, + -0.07206957042217255, + 0.047198522835969925, + 0.12399912625551224, + -0.036186669021844864, + 0.06028231978416443, + -0.04593471437692642, + 0.050638597458601, + 0.01543019525706768, + 0.0762571468949318, + 0.1109888032078743, + 0.03835126385092735, + 0.03877098113298416, + 0.015532438643276691, + -0.028445281088352203, + 0.02860126830637455, + 0.01096677128225565, + 0.003556349314749241, + 0.03187261149287224, + -0.005541464779525995, + -0.056062500923871994, + -0.0010329785291105509, + 0.09190569818019867, + -0.041785866022109985, + 0.04728646203875542, + -0.034543246030807495, + 0.021522706374526024, + 0.033158622682094574, + 0.026278739795088768, + -0.030551716685295105, + 0.03578537330031395, + -0.02323361299932003, + 0.03173873573541641, + 0.005544400308281183, + -1.9157264219415993e-08, + -0.009887698106467724, + -0.031015116721391678, + -0.04070989042520523, + -0.063618965446949, + 0.07801857590675354, + -0.02323005720973015, + -0.020934971049427986, + -0.045105982571840286, + -0.06903630495071411, + 0.033034514635801315, + 0.07357385754585266, + -0.0036104880273342133, + -0.12464172393083572, + -0.026388300582766533, + 0.018082477152347565, + 0.004235635045915842, + 0.012501592747867107, + 0.024202940985560417, + -0.02270960435271263, + -0.028904885053634644, + -0.06350488215684891, + 0.02877645380795002, + 0.008729764260351658, + 0.023394884541630745, + 0.04320116713643074, + -0.02550099417567253, + -0.030801964923739433, + 0.059167008846998215, + 0.07701147347688675, + 0.010526284575462341, + 0.028969500213861465, + 0.037981998175382614, + 0.08774369955062866, + 0.09052553027868271, + -0.021876705810427666, + -0.09669714421033859, + -0.0683898851275444, + 0.06345350295305252, + -0.014481136575341225, + 0.15099312365055084, + -0.00857098214328289, + -0.00904127024114132, + 0.07565364241600037, + -0.06823746114969254, + 0.019591616466641426, + 0.014889795333147049, + 0.07881546020507812, + 0.002628854475915432, + -0.12574711441993713, + -0.053472790867090225, + -0.10534438490867615, + 0.06706855446100235, + 0.04416162148118019, + 0.08388227224349976, + -0.06644681096076965, + -0.09789182245731354, + -0.005323861725628376, + 0.07458095252513885, + -0.025468522682785988, + 0.045221958309412, + 0.05506616085767746, + 0.03787880018353462, + -0.025330109521746635, + -0.035531364381313324 + ], + "line-vertical-bold||*new*,bar,pipe,|,divider. symbol": [ + -0.03600924462080002, + 0.0034632582683116198, + -0.04289489611983299, + 0.00680850213393569, + -0.03435433655977249, + -0.03755220025777817, + -0.04200238361954689, + 0.027386806905269623, + 0.02983155846595764, + -0.01973612606525421, + -0.011961184442043304, + 0.03337729722261429, + 0.0429973229765892, + -0.05154737830162048, + -0.008970675058662891, + 0.06718502938747406, + -0.06359125673770905, + 0.010092184878885746, + -0.048794522881507874, + -0.03245018422603607, + -0.026267673820257187, + 0.03049706295132637, + -0.016906889155507088, + 0.04654616490006447, + 0.03764531761407852, + 0.052171431481838226, + 0.07832027971744537, + -0.004580231383442879, + 0.0891202986240387, + -0.06218744441866875, + -0.016104277223348618, + -0.014256225898861885, + 0.0932813212275505, + 0.03931952640414238, + 0.02102578617632389, + -0.035215891897678375, + 0.11733955889940262, + 0.006328546442091465, + 0.050273261964321136, + 0.013479049317538738, + 0.05652368813753128, + -0.10857803374528885, + -0.07634471356868744, + 0.00464235246181488, + -0.0399571917951107, + 0.0015739891678094864, + -0.016157396137714386, + -0.0588969811797142, + 0.03892461210489273, + 0.04446766525506973, + -0.0068548936396837234, + -0.08622939139604568, + -0.09911874681711197, + 0.04463149979710579, + 0.06696698069572449, + 0.003613236593082547, + -0.03495087847113609, + -0.081877201795578, + 0.08111400902271271, + -0.07216288149356842, + 0.010097113437950611, + 0.05015091970562935, + 0.06721385568380356, + 0.023632144555449486, + 0.04190429300069809, + -0.002611626172438264, + -0.05514691397547722, + 0.10329532623291016, + 0.03527629375457764, + 0.04416170343756676, + -0.003961415495723486, + 0.016478443518280983, + -0.08522885292768478, + -0.08717303723096848, + -0.048406943678855896, + -0.02161623165011406, + 0.05000665411353111, + 0.05216429382562637, + 0.0166376531124115, + 0.028010820969939232, + -0.0948457345366478, + -0.04996037110686302, + -0.036460328847169876, + 0.055424854159355164, + -0.019522840157151222, + 0.08250262588262558, + -0.09357915073633194, + -0.10735264420509338, + -0.0040067280642688274, + -0.027617383748292923, + -0.06575725972652435, + 0.04362328350543976, + -0.009525269269943237, + 0.06421704590320587, + -0.06075059995055199, + 0.0004952120361849666, + 0.020505063235759735, + -0.03579920530319214, + -0.07150667160749435, + 0.09299588948488235, + -0.02179534174501896, + 0.06797754019498825, + 0.04717634618282318, + -0.0074364133179187775, + -0.03745105117559433, + -0.01814652420580387, + 0.055144309997558594, + -0.027886686846613884, + 0.003504473250359297, + 0.031978633254766464, + 0.04069729521870613, + -0.10157644003629684, + -0.0074256546795368195, + -0.046800240874290466, + -0.04758987948298454, + -0.005776010919362307, + -0.09121964126825333, + -0.03800623118877411, + 0.044995877891778946, + 0.03568365052342415, + 0.017244068905711174, + 0.0021864089649170637, + -0.06313382089138031, + 0.005811492446810007, + 0.02917841449379921, + 0.03548857942223549, + 0.048933178186416626, + -2.6722206346685894e-33, + -0.00541742704808712, + 0.015610466711223125, + 0.05139969661831856, + 0.1008448675274849, + 0.0691511258482933, + 0.045907244086265564, + -0.07771959155797958, + -0.02069556713104248, + -0.07411452382802963, + 0.047068577259778976, + 0.06943497061729431, + -0.014499235898256302, + -0.007812247145920992, + 0.05151020362973213, + 0.017112474888563156, + -0.12818917632102966, + 0.031696394085884094, + -0.08175445348024368, + -0.10787354409694672, + -0.04168953001499176, + -0.0877852737903595, + 0.0021348237060010433, + -0.045044269412755966, + -0.007135837338864803, + -0.005477285012602806, + -0.08257581293582916, + 0.05643167346715927, + -0.014836945571005344, + -0.10439141094684601, + 0.037283144891262054, + -0.017499838024377823, + -0.029100436717271805, + 0.06506454944610596, + -0.004037613980472088, + -0.05067406967282295, + 0.06162767484784126, + -0.03295904025435448, + 0.028767580166459084, + 0.006876153871417046, + 0.05178464949131012, + -0.03000313974916935, + -0.06711480021476746, + 0.010952554643154144, + 0.008646316826343536, + 0.0495101734995842, + 0.07744485884904861, + -0.038221247494220734, + -0.042675431817770004, + -0.02442372404038906, + 0.010481658391654491, + -0.016694650053977966, + 0.07635381072759628, + 0.03200957551598549, + 0.014359491877257824, + 0.06195986270904541, + -0.07414039969444275, + -0.04786801338195801, + 0.1333010494709015, + 0.0013103893725201488, + -0.030094964429736137, + -0.03485821187496185, + 0.0907258689403534, + -0.002310357056558132, + 0.10261696577072144, + -0.01584155671298504, + 0.035835668444633484, + -0.02463831566274166, + 0.07306938618421555, + 0.08300880342721939, + 0.017260801047086716, + -0.036957841366529465, + 0.0405789390206337, + -0.005189692601561546, + 0.0387599915266037, + -0.023699799552559853, + 0.0014931003097444773, + -0.04091164097189903, + 0.009812253527343273, + 0.07626432180404663, + -0.0774310976266861, + -0.012479613535106182, + 0.005544520448893309, + 0.02435465157032013, + 0.007234586868435144, + 0.03195395693182945, + -0.011502508074045181, + 0.07676900923252106, + -0.011950790882110596, + -0.044938817620277405, + 0.01582949236035347, + -0.10091724991798401, + -0.04469435289502144, + 0.018764697015285492, + -0.03800002858042717, + -0.008689978159964085, + -3.7060992780387292e-34, + 0.045363761484622955, + 0.034421421587467194, + 0.0008655951241962612, + -0.02566356211900711, + -0.07237746566534042, + -0.03191347047686577, + 0.02319328486919403, + -0.016649065539240837, + -0.04106038436293602, + 0.08088316768407822, + 0.04334879294037819, + 0.07825315743684769, + -0.05611535534262657, + -0.01231978926807642, + 0.060145001858472824, + 0.03481360152363777, + -0.07327403128147125, + 0.00686135096475482, + 0.0029130715411156416, + -0.04619297757744789, + -0.01930011622607708, + -0.0508686825633049, + -0.0345674566924572, + 0.0700049102306366, + -0.05741648003458977, + -0.008547595702111721, + 0.05804121494293213, + 0.001729065552353859, + -0.024085236713290215, + -0.03238164633512497, + -0.025492727756500244, + -0.03431367874145508, + 0.0496617816388607, + -0.035690099000930786, + -0.06933705508708954, + -0.002199552021920681, + 0.027462277561426163, + -0.015518413856625557, + 0.09155096858739853, + -0.06435108929872513, + -0.039328157901763916, + 0.025703756138682365, + 0.08249948173761368, + -0.04710038751363754, + -0.07302338629961014, + 0.04920120909810066, + 0.06285784393548965, + -0.06554993242025375, + -0.03825562074780464, + 0.00803445652127266, + -0.0038461191579699516, + 0.02699320949614048, + 0.02543637901544571, + 0.08517594635486603, + -0.005355083849281073, + 0.011621187441051006, + -0.02140469290316105, + 0.03523166850209236, + -0.10115491598844528, + 0.03657836467027664, + -0.023861320689320564, + 0.0008076516096480191, + -0.01728181540966034, + -0.036664918065071106, + 0.06880614906549454, + -0.0161542110145092, + 0.03276577219367027, + -0.018436690792441368, + 0.031154276803135872, + -0.008395700715482235, + 0.05547751486301422, + 0.04876978322863579, + -0.029475681483745575, + 0.03711245581507683, + -0.015285798348486423, + -0.06822316348552704, + 0.048713598400354385, + 0.029311399906873703, + -0.043006300926208496, + 0.0775422751903534, + -0.0712159126996994, + -0.05100828409194946, + -0.028765223920345306, + 0.0708983913064003, + -0.06651367247104645, + -0.05296661704778671, + -0.0056807189248502254, + 0.06822402030229568, + 0.03138742223381996, + -0.05833950266242027, + -0.08089406788349152, + 0.01402393076568842, + -0.09810946881771088, + -0.028155356645584106, + 0.00567970797419548, + -2.4506258355927457e-08, + -0.06939999014139175, + -0.07424398511648178, + -0.02454041689634323, + -0.0214726272970438, + 0.05119067057967186, + 0.04249430075287819, + -0.07386405020952225, + -0.08909504115581512, + -0.028231408447027206, + -0.035362839698791504, + 0.06218058988451958, + 0.07926435023546219, + -0.09724048525094986, + -0.06548172980546951, + 0.04446465149521828, + -0.013356668874621391, + -0.009269878268241882, + 0.023942073807120323, + -0.010654225014150143, + -0.07600420713424683, + 0.020825723186135292, + 0.05239322781562805, + 0.10745886713266373, + 0.01001343596726656, + -0.02663593180477619, + -0.013290180824697018, + -0.05449298024177551, + 0.007583004888147116, + 0.04630647599697113, + 0.02246382087469101, + 0.05588261038064957, + 0.05798353627324104, + 0.07080726325511932, + -0.05347000062465668, + 0.012965270318090916, + -0.06493014842271805, + -0.02266174554824829, + 0.016943983733654022, + 0.04644947499036789, + 0.07850579172372818, + 8.248761878348887e-05, + -0.03140446916222572, + 0.02109021134674549, + -0.0405503511428833, + -0.04527660831809044, + 0.0022388051729649305, + 0.024740761145949364, + 0.045561619102954865, + -0.08964640647172928, + -0.0776096060872078, + -0.03248218074440956, + 0.05740109086036682, + 0.06926625221967697, + 0.058111973106861115, + -0.09277065843343735, + -0.02583828568458557, + -0.024803806096315384, + 0.08975577354431152, + -0.06037844344973564, + -0.02600114792585373, + 0.12548403441905975, + 0.056118473410606384, + -0.02905406430363655, + -0.027943985536694527 + ], + "link-bold||*updated*,anchor,hyperlink,hypertext,chains,chained": [ + -0.034583620727062225, + -0.02207009494304657, + -0.001328794052824378, + 0.07398185133934021, + 0.0726098120212555, + -0.04091770946979523, + 0.004282291512936354, + -0.07753605395555496, + 0.003997976426035166, + 0.05194143205881119, + 0.014440498314797878, + 0.07919402420520782, + 0.060698918998241425, + -0.07286135107278824, + -0.005575520917773247, + 0.12115859240293503, + -0.001975198509171605, + 0.07678785920143127, + -0.020150404423475266, + 0.007588024251163006, + 0.019381506368517876, + 0.02213786542415619, + 0.01492718793451786, + 0.04618556424975395, + -0.01346898078918457, + -0.048192113637924194, + 0.02450265735387802, + -0.022516360506415367, + 0.028970276936888695, + -0.09867382794618607, + -0.013775219209492207, + -0.03802787885069847, + -0.04696837440133095, + -0.02243559993803501, + 0.023649483919143677, + 0.032143767923116684, + 0.006690928712487221, + -0.06402171403169632, + 0.05418539047241211, + 0.08004450052976608, + 0.05673745647072792, + -0.04050078243017197, + -0.013066552579402924, + 0.003339518094435334, + -0.06732945144176483, + -0.02322366088628769, + -0.07475793361663818, + -0.03314492478966713, + -0.038813598453998566, + 0.02023354358971119, + -0.055862680077552795, + -0.08392694592475891, + -0.07500140368938446, + -0.02330971322953701, + 0.05683608725667, + -0.0031157019548118114, + -0.06858521699905396, + -0.04571088030934334, + 0.051903169602155685, + -0.018673010170459747, + 0.0865417867898941, + 0.013400845229625702, + 0.027317499741911888, + -0.009423159062862396, + 0.06955660879611969, + -0.005045201163738966, + 0.026825353503227234, + 0.014384327456355095, + -0.041933998465538025, + 0.031222427263855934, + -0.009412266314029694, + -0.017766622826457024, + 0.036522574722766876, + 0.01644556038081646, + -0.039454393088817596, + -0.0030977942515164614, + 0.011239161714911461, + 0.05345200002193451, + -0.050003793090581894, + -0.03152916952967644, + -0.02927468717098236, + -0.07146770507097244, + -0.021021604537963867, + -0.03539906442165375, + 0.08437803387641907, + 0.06325417757034302, + -0.04067045822739601, + -0.05413031578063965, + -0.06288853287696838, + 0.005722804460674524, + 0.027879057452082634, + -0.03324185311794281, + 0.044966403394937515, + -0.01994701288640499, + -0.010439814068377018, + 0.0378018282353878, + 0.02736784890294075, + 0.017589308321475983, + -0.06323497742414474, + 0.0724387839436531, + 0.06805625557899475, + 0.08692377805709839, + 0.025792421773076057, + 0.007038522977381945, + -0.010156826116144657, + 0.011897494085133076, + -0.0005594584508799016, + 0.10449037700891495, + -0.019581705331802368, + 0.001438405248336494, + -0.029653307050466537, + -0.09839791804552078, + -0.05028939247131348, + -0.09354155510663986, + -0.10311394184827805, + -0.04631335288286209, + 0.03947332873940468, + -0.009889413602650166, + 0.11268653720617294, + 0.04932115972042084, + 0.08636803179979324, + -0.011166190728545189, + 0.03239046782255173, + -0.04333600401878357, + -0.0646120086312294, + -0.04258379712700844, + 0.03504716232419014, + -1.999691480217365e-33, + 0.08651899546384811, + 0.053863849490880966, + -0.06397295743227005, + 0.008263598196208477, + 0.02767082117497921, + 0.04584305360913277, + -0.06115236133337021, + -0.1168610155582428, + -0.08329540491104126, + -0.007054505404084921, + 0.028444455936551094, + 0.05490163713693619, + -0.030123086646199226, + 0.030688751488924026, + -0.0012750639580190182, + -0.07404886186122894, + 0.028293009847402573, + 0.04303929954767227, + -0.041904840618371964, + -0.013204635120928288, + -0.07596157491207123, + 0.06027098372578621, + -0.026533253490924835, + -0.03993038460612297, + -0.041206326335668564, + 0.0002078600082313642, + 0.03147070109844208, + 0.020281491801142693, + -0.0906892791390419, + 0.021530909463763237, + 0.013317354954779148, + 0.03365520015358925, + 0.016634028404951096, + 0.05084732547402382, + 0.0026395355816930532, + 0.04105145111680031, + -0.0734105259180069, + -0.04857628792524338, + -0.010504252277314663, + -0.03160382807254791, + -0.054921988397836685, + -0.042580440640449524, + 0.032755449414253235, + -0.04938070476055145, + -0.010941998101770878, + 0.11955874413251877, + -0.07068079710006714, + -0.03895530477166176, + -0.039614565670490265, + -0.020876964554190636, + -0.011941833421587944, + 0.03092862293124199, + -0.007397988811135292, + -0.03714320436120033, + -0.013560906052589417, + -0.01684640347957611, + -0.07816574722528458, + 0.062102824449539185, + 0.030848737806081772, + 0.06600427627563477, + 0.023915061727166176, + -0.005349719896912575, + 0.014551001600921154, + -0.04737621918320656, + -0.06139208748936653, + 0.11704055219888687, + -0.048943378031253815, + 0.04545458406209946, + 0.08148660510778427, + -0.009190544486045837, + 0.021440576761960983, + 0.07223591953516006, + 0.04118107631802559, + 0.09781959652900696, + -0.02595915086567402, + -0.00047582521801814437, + -0.13834138214588165, + -0.08043479174375534, + 0.06105894222855568, + -0.07753541320562363, + -0.04793122783303261, + -0.05379154905676842, + -0.011751847341656685, + 0.1282353550195694, + 0.013442466035485268, + -0.028489623218774796, + -0.061951931565999985, + -0.020618848502635956, + -0.06561464816331863, + 0.021073557436466217, + 0.023063670843839645, + 0.01406831108033657, + 0.007347417995333672, + -0.07108841091394424, + -0.03315477445721626, + -1.4192458695992548e-33, + 0.08719362318515778, + 0.0778011679649353, + -0.0035955391358584166, + -0.022231359034776688, + -0.05204427242279053, + 0.05608169734477997, + -0.005453797057271004, + -0.00046765172737650573, + -0.01898108422756195, + 0.04366317763924599, + 0.10039890557527542, + 0.030669815838336945, + -0.09960485249757767, + -0.03141305223107338, + 0.01849900744855404, + 0.08830996602773666, + 0.027932416647672653, + -0.0020496374927461147, + -0.04272487759590149, + -0.005709594115614891, + 0.04973135516047478, + 0.0015075550181791186, + -0.06616416573524475, + 0.12616804242134094, + 0.016625739634037018, + -0.021523108705878258, + 0.07907241582870483, + 0.012510857544839382, + 0.01671724021434784, + -0.038920532912015915, + 0.023756299167871475, + -0.002596400212496519, + 0.0003037617716472596, + 0.01985168270766735, + -0.010409601964056492, + 0.06796596944332123, + 0.044001076370477676, + -0.022105813026428223, + 0.050343237817287445, + -0.006360772531479597, + 0.08170858025550842, + -0.005038159899413586, + 0.029842127114534378, + -0.001782911829650402, + 0.00293678417801857, + -0.0024962392635643482, + -0.10384760051965714, + -0.038481298834085464, + -0.034079231321811676, + 0.0027045579627156258, + -0.01890205778181553, + -0.04270429536700249, + 0.06070098280906677, + -0.05716037377715111, + -0.08234056085348129, + -0.011596458964049816, + -0.02719431184232235, + 0.09261038154363632, + -0.05495389550924301, + 0.0384984016418457, + -0.041523102670907974, + 0.04965897649526596, + -0.005816109944134951, + 0.07661570608615875, + -0.00981080997735262, + -0.06036367267370224, + -0.0018312775064259768, + -0.12645883858203888, + -0.03375634178519249, + -0.01666005328297615, + 0.05867082625627518, + 0.018011704087257385, + -0.016809789463877678, + -0.026349987834692, + 0.04507376253604889, + -0.0998900905251503, + 0.040679991245269775, + 0.005570811219513416, + 0.00020740507170557976, + -0.0518740676343441, + 0.03140847012400627, + -0.01849222369492054, + 0.005792084150016308, + 0.011577657423913479, + -0.04713321849703789, + 0.018812639638781548, + 0.04665837436914444, + 0.03101395070552826, + -0.015301029197871685, + -0.08892957121133804, + -0.05126455798745155, + -0.03272343799471855, + -0.09001921862363815, + -0.005331636872142553, + -0.06139166280627251, + -2.2457619763827097e-08, + -0.01175557542592287, + -0.03241472691297531, + -0.0678030401468277, + -0.016851816326379776, + 0.003957496955990791, + 0.05384732782840729, + -0.021125009283423424, + -0.013319502584636211, + -0.06624162197113037, + -0.012565634213387966, + 0.03760385885834694, + 0.09919408708810806, + -0.04640301689505577, + -0.02386438101530075, + -0.013742112554609776, + 0.03269731253385544, + -0.08090011030435562, + 0.009579939767718315, + 0.013487211428582668, + -0.007861900143325329, + -0.047769684344530106, + 0.05821222811937332, + 0.01585412584245205, + 0.07229778915643692, + 0.09133687615394592, + -0.01894458197057247, + -0.03661251813173294, + 0.0627017468214035, + 0.09007574617862701, + 0.07475659996271133, + 0.08412013947963715, + 0.026790844276547432, + -0.06927818059921265, + 0.028848763555288315, + -0.1382439136505127, + -0.007279958110302687, + -0.021179961040616035, + -0.020211536437273026, + 0.011804232373833656, + 0.14269012212753296, + -0.025532016530632973, + 0.021669382229447365, + -0.010092122480273247, + -0.01761353388428688, + -0.012274338863790035, + -0.014700300060212612, + -0.0698411837220192, + -0.0173800066113472, + -0.07953178882598877, + -0.09553306549787521, + 0.004790100734680891, + 0.011211026459932327, + 0.026830149814486504, + 0.014140046201646328, + -0.017705677077174187, + -0.0571788027882576, + 0.035752665251493454, + 0.07613787055015564, + -0.0362444706261158, + 0.04238947480916977, + 0.14506451785564423, + -0.015463844873011112, + 0.055223751813173294, + 0.019503455609083176 + ], + "link-break-bold||anchor,hyperlink,hypertext,chains,chained,errors,broken": [ + -0.0321517288684845, + -0.022256694734096527, + 0.05621075630187988, + 0.07041619718074799, + 0.10265021026134491, + -0.04484955966472626, + -0.022027183324098587, + -0.05511433258652687, + -0.05160244181752205, + 0.05231126770377159, + 0.025462975725531578, + 0.058884911239147186, + 0.062089595943689346, + -0.07835516333580017, + 0.009099542163312435, + 0.11052513122558594, + -0.019724391400814056, + 0.04546168074011803, + -0.02980002947151661, + 0.04723495617508888, + 0.005736215505748987, + 0.010651133954524994, + -0.0024389626923948526, + 0.0762854516506195, + -0.008148291148245335, + -0.04216621071100235, + -0.021559400483965874, + -0.0027541338931769133, + 0.00295630912296474, + -0.12315691262483597, + -0.003123115049675107, + -0.07835385203361511, + -0.06091279536485672, + -0.008581972680985928, + 0.08254387229681015, + 0.05575915426015854, + -0.008005456067621708, + -0.08089710026979446, + 0.023479988798499107, + 0.029478145763278008, + 0.04079064726829529, + -0.02571040764451027, + 0.012251867912709713, + 0.030360210686922073, + -0.041067566722631454, + -0.03029143437743187, + -0.04967140033841133, + -0.019566195085644722, + 0.00023107361630536616, + 0.04653565213084221, + -0.11093239486217499, + 0.010307250544428825, + -0.011737484484910965, + 0.009196478873491287, + 0.0584639348089695, + -0.010923675261437893, + -0.09827139973640442, + -0.013259032741189003, + 0.058222390711307526, + 0.038204628974199295, + 0.08507131785154343, + 0.058082934468984604, + -0.003447089111432433, + -0.015054658055305481, + 0.0929228663444519, + 0.010346970520913601, + 0.0012826750753447413, + 0.018731556832790375, + -0.06285762786865234, + 0.07475430518388748, + -0.042955432087183, + -0.048657745122909546, + -0.031557515263557434, + 0.09179312735795975, + -0.023315560072660446, + 0.017416460439562798, + -0.05049483850598335, + 0.024950282648205757, + -0.04066001623868942, + -0.03270675987005234, + -0.040868811309337616, + -0.06484746187925339, + -0.012767880223691463, + -0.016521044075489044, + 0.1234840378165245, + 0.10263200104236603, + -0.016679605469107628, + -0.05335632711648941, + -0.016779879108071327, + -0.021595921367406845, + 0.026940789073705673, + -0.03314915671944618, + 0.07323559373617172, + 0.018070681020617485, + 0.057019125670194626, + -0.0003639304777607322, + 0.019983889535069466, + -0.012473972514271736, + -0.058930061757564545, + 0.050570592284202576, + 0.031283654272556305, + 0.06467214971780777, + 0.06396929919719696, + -0.01753203570842743, + -0.03744404390454292, + -0.041148677468299866, + 0.02633020654320717, + 0.11391976475715637, + -0.009090947918593884, + -0.009022653102874756, + -0.00014398903294932097, + -0.051737017929553986, + -0.05322850123047829, + -0.10077197104692459, + -0.05873219296336174, + -0.06566011905670166, + 0.00641847588121891, + -0.031942274421453476, + 0.10416214913129807, + 0.059411052614450455, + 0.04835374280810356, + -0.026930145919322968, + -0.004954182542860508, + -0.044550344347953796, + -0.04111389070749283, + -0.050436656922101974, + 0.03560266271233559, + -2.592159183802022e-33, + 0.06143118813633919, + 0.03005222976207733, + -0.07857955992221832, + 0.021498149260878563, + 0.057825345546007156, + 0.047188352793455124, + -0.08774679154157639, + -0.0848730057477951, + -0.08790726214647293, + 0.008508372120559216, + 0.041269540786743164, + -0.026899687945842743, + -0.016520418226718903, + -0.01896342821419239, + 0.06634584814310074, + -0.02943468652665615, + 0.04734719917178154, + 0.008284969255328178, + -0.05962458252906799, + -0.012542755343019962, + -0.07877396047115326, + 0.03466707468032837, + 0.0029173940420150757, + -0.020173292607069016, + -0.07675589621067047, + 0.07057983428239822, + 0.009528485126793385, + 0.015039630234241486, + -0.05419541150331497, + 0.02174447849392891, + -0.004054746590554714, + -0.0042779711075127125, + 0.030051114037632942, + 0.05419785529375076, + 0.010077234357595444, + 0.004232259001582861, + -0.05975399911403656, + -0.02192043513059616, + -0.04231962934136391, + -0.021254850551486015, + -0.13585643470287323, + -0.038316115736961365, + 0.05628547444939613, + -0.0035452721640467644, + 0.01730392314493656, + 0.06446371972560883, + -0.033325232565402985, + -0.014040720649063587, + -0.0475357361137867, + -0.003870444605126977, + -0.05167703330516815, + 0.043204937130212784, + 0.02958158403635025, + -0.007644886616617441, + -0.03706255182623863, + -0.0033778767101466656, + -0.06516845524311066, + 0.054229676723480225, + 0.023585272952914238, + 0.07833125442266464, + 0.01200281735509634, + -0.0023640745785087347, + 0.00291011156514287, + -0.06677958369255066, + -0.05101728066802025, + 0.038546122610569, + -0.07635827362537384, + 0.06331714242696762, + 0.05465700849890709, + -0.03478427603840828, + 0.0029917696956545115, + 0.029567789286375046, + 0.05172250419855118, + 0.11706650257110596, + -0.022634588181972504, + 0.014485730789601803, + -0.10643148422241211, + -0.08214224129915237, + 0.09448359906673431, + -0.08133990317583084, + -0.037381935864686966, + -0.07218125462532043, + 0.03191415220499039, + 0.06961911171674728, + -0.020414290949702263, + -0.010107241570949554, + -0.09538640826940536, + -0.0722154825925827, + -0.052499882876873016, + 0.039797499775886536, + 0.0667824074625969, + 0.026047037914395332, + 0.01128366868942976, + -0.07759879529476166, + -0.04649651423096657, + -1.2484229387022638e-33, + 0.05053427815437317, + 0.05847923457622528, + 0.012833339162170887, + -0.004540093243122101, + -0.04684015363454819, + 0.058286234736442566, + 0.01260128989815712, + 0.01979394257068634, + -0.01703120954334736, + 0.02468126453459263, + 0.0871640294790268, + 0.01091923750936985, + -0.10235732048749924, + -0.0006825012969784439, + -0.010968542657792568, + 0.019336624071002007, + 0.05287110432982445, + -0.0008099999977275729, + 0.002835465595126152, + -0.010314478538930416, + 0.058826249092817307, + 0.016986828297376633, + -0.054870832711458206, + 0.12957735359668732, + -0.000286134600173682, + 0.010787613689899445, + 0.11008788645267487, + -0.027149392291903496, + 0.003676544176414609, + -0.02966148778796196, + 0.04824703186750412, + 0.04169420525431633, + -0.0012697303900495172, + 0.08329087495803833, + 0.004585989285260439, + 0.06557676941156387, + -0.015568685717880726, + 0.0014736612793058157, + 0.029473302885890007, + -0.019635852426290512, + 0.11499632894992828, + -0.0186501145362854, + 0.015067575499415398, + -0.005617160350084305, + 0.014674640260636806, + -0.05990252643823624, + -0.11453940719366074, + -0.045232176780700684, + -0.018107013776898384, + 0.009141095913946629, + -0.015147454105317593, + -0.0706084817647934, + 0.0886533111333847, + -0.0927799865603447, + -0.06967264413833618, + -0.024602359160780907, + -0.03192605450749397, + 0.08082374185323715, + -0.10697490721940994, + 0.03446822240948677, + -0.08631132543087006, + 0.04875614494085312, + -0.014955509454011917, + 0.1058882400393486, + 0.02773391269147396, + -0.08366984128952026, + -0.015490967780351639, + -0.04622902721166611, + -0.014853809028863907, + -0.01655673235654831, + 0.040440984070301056, + 0.010146274231374264, + 0.00683075375854969, + -0.04829675331711769, + 0.008029833436012268, + -0.04659590870141983, + 0.024005897343158722, + 0.017883233726024628, + -0.000957858341280371, + -0.0016927985707297921, + 0.0881693884730339, + -0.0493493527173996, + -0.0058736070059239864, + -0.013716340996325016, + -0.03458848223090172, + -0.030682645738124847, + 0.03553510457277298, + 0.03114684857428074, + -0.07032491266727448, + -0.08970659971237183, + -0.03142128512263298, + -0.02017342485487461, + -0.06516827642917633, + 0.04216857999563217, + -0.05309738963842392, + -2.1931505500560888e-08, + -0.005446333438158035, + -0.02318342588841915, + -0.07506706565618515, + -0.02914012409746647, + 0.021317889913916588, + 0.05772341415286064, + -0.016742713749408722, + -0.010627451352775097, + -0.05356386676430702, + 0.033991970121860504, + -0.013041073456406593, + 0.08757519721984863, + -0.055910151451826096, + 0.014654472470283508, + -0.07342061400413513, + -0.014253431931138039, + -0.07739823311567307, + 0.04836423322558403, + -0.004645994398742914, + -0.017255328595638275, + -0.0645659789443016, + 0.03420669585466385, + 0.017051391303539276, + 0.030347784981131554, + 0.04983093962073326, + -0.02827315777540207, + -0.05942868813872337, + 0.07526455074548721, + 0.054387446492910385, + 0.047108087688684464, + 0.05295440927147865, + 0.028170933946967125, + -0.0527045913040638, + -0.01982332393527031, + -0.13985317945480347, + 0.023417409509420395, + -0.017771735787391663, + -0.012663155794143677, + 0.025798197835683823, + 0.07227347791194916, + -0.018505621701478958, + 0.08162150532007217, + 0.020616093650460243, + -0.012955861166119576, + -0.013190110214054585, + -0.001055220142006874, + -0.04303119331598282, + 0.037170834839344025, + -0.021106230095028877, + -0.0763421431183815, + 0.009220462292432785, + 0.019992664456367493, + 0.0008028465090319514, + -0.022571789100766182, + -0.035789262503385544, + -0.0664297416806221, + 0.048948828130960464, + 0.09464887529611588, + -0.040607158094644547, + 0.03488955646753311, + 0.13307887315750122, + -0.012932217679917812, + 0.05295411869883537, + 0.05325035750865936 + ], + "link-simple-bold||anchor,hyperlink,hypertext,chains,chained": [ + -0.012296552769839764, + -0.020267067477107048, + 0.012232311069965363, + 0.06569714099168777, + 0.07472261041402817, + -0.024932589381933212, + 0.0041467538103461266, + -0.045701902359724045, + -0.010686228983104229, + 0.03791339322924614, + 0.01320253312587738, + 0.059793341904878616, + 0.0769193023443222, + -0.05094911530613899, + 0.006804418750107288, + 0.11343058198690414, + -0.0038482656236737967, + 0.0673612505197525, + -0.015567000024020672, + 0.024912428110837936, + 0.02560923807322979, + -0.011422784067690372, + 0.017702709883451462, + 0.0249446090310812, + -0.03378325328230858, + -0.07929453998804092, + 0.04153525456786156, + 0.005308188032358885, + 0.04076587036252022, + -0.09433499723672867, + -0.014124879613518715, + -0.04981523007154465, + -0.058983687311410904, + -0.011886575259268284, + 0.02616315521299839, + 0.042577631771564484, + 0.024338051676750183, + -0.07059651613235474, + 0.03389374539256096, + 0.0665363147854805, + 0.05427400395274162, + -0.027576755732297897, + 0.0142267607152462, + 0.01176460087299347, + -0.08276370912790298, + -0.017692076042294502, + -0.060359302908182144, + -0.014737864956259727, + -0.030739830806851387, + 0.008380701765418053, + -0.031823985278606415, + -0.04658079147338867, + -0.05579685419797897, + -0.016129592433571815, + 0.059987086802721024, + 0.020724646747112274, + -0.12063400447368622, + -0.047400880604982376, + 0.04281289502978325, + 0.003578061005100608, + 0.07169725000858307, + -0.007230593357235193, + 3.8700040022376925e-05, + -0.018872596323490143, + 0.07134425640106201, + -0.004872686695307493, + 0.02315712347626686, + 0.054925478994846344, + -0.07576995342969894, + 0.028396695852279663, + -0.017940714955329895, + -0.05560830235481262, + 0.009509365074336529, + 0.06235579401254654, + -0.040384691208601, + -0.00359493400901556, + -0.013551464304327965, + 0.057214897125959396, + -0.07864922285079956, + -0.0027683766093105078, + -0.062189847230911255, + -0.05642473325133324, + -0.041734740138053894, + -0.00429838290438056, + 0.0764244869351387, + 0.07842840254306793, + -0.039747968316078186, + -0.05478318780660629, + -0.034396737813949585, + 0.016871176660060883, + 0.028315776959061623, + -0.00569080701097846, + 0.06793352216482162, + -0.007413208484649658, + 0.04071766883134842, + 0.008588854223489761, + 0.053840529173612595, + 0.01905890554189682, + -0.092226542532444, + 0.04996258765459061, + 0.06701365858316422, + 0.09759649634361267, + 0.05616474151611328, + -0.04225827381014824, + -0.02139093540608883, + 0.009901533834636211, + 0.005459297448396683, + 0.08032561838626862, + -0.026414964348077774, + -0.012199930846691132, + -0.01774408295750618, + -0.08230176568031311, + -0.03127504140138626, + -0.07750209420919418, + -0.08790673315525055, + -0.051570601761341095, + 0.01570821739733219, + -0.029818786308169365, + 0.1348448246717453, + 0.031239045783877373, + 0.04915718734264374, + 0.002586920512840152, + 0.006161419674754143, + -0.05105259642004967, + -0.05104610696434975, + -0.0406213216483593, + 0.02745937742292881, + -2.7327097372519812e-33, + 0.09455353766679764, + 0.06684785336256027, + -0.056303855031728745, + 0.009098992682993412, + 0.02552223764359951, + 0.03955386206507683, + -0.0795184001326561, + -0.10345500707626343, + -0.09131840616464615, + 0.008555491454899311, + 0.028571046888828278, + 0.00816782284528017, + -0.01838616281747818, + 0.006436097901314497, + 0.005792911164462566, + -0.04035370424389839, + 0.03584526106715202, + 0.029859399423003197, + -0.04465559124946594, + -0.02590067684650421, + -0.06620727479457855, + 0.09843084961175919, + -0.01666763611137867, + -0.04865320771932602, + -0.04075483977794647, + -0.00046256440691649914, + 0.03763532638549805, + -0.009263850748538971, + -0.07863939553499222, + 0.02875387668609619, + 0.009992431849241257, + 0.02667997218668461, + 0.010487077757716179, + 0.05230400711297989, + 0.017452429980039597, + 0.04762464761734009, + -0.01925252191722393, + -0.021646913141012192, + -0.022824322804808617, + -0.02423747256398201, + -0.06363160163164139, + -0.022127604112029076, + 0.08345411717891693, + -0.04135787859559059, + -0.028268424794077873, + 0.13094143569469452, + -0.03294261917471886, + -0.046257685869932175, + -0.039084143936634064, + -0.005059133283793926, + -0.020302429795265198, + 0.014727271161973476, + 0.017147686332464218, + -0.01991679146885872, + 0.01919531635940075, + -0.007795954588800669, + -0.08141224086284637, + 0.057667698711156845, + 0.01920204795897007, + 0.08468987792730331, + -0.00429383572191, + 0.02296469174325466, + 0.0010192904155701399, + -0.028373748064041138, + -0.058629535138607025, + 0.10097885131835938, + -0.07158154249191284, + 0.03626997396349907, + 0.06169568747282028, + -0.0244507547467947, + 0.03425911068916321, + 0.07206258177757263, + 0.02146437205374241, + 0.04442410171031952, + 0.0037093719001859426, + 0.04181303828954697, + -0.10094407200813293, + -0.11992436647415161, + 0.06604502350091934, + -0.07805455476045609, + -0.06320995837450027, + -0.03777752444148064, + 0.008658824488520622, + 0.11484766006469727, + -0.03369921073317528, + -0.03027154505252838, + -0.07163265347480774, + -0.03726211562752724, + -0.07368256896734238, + 0.035049960017204285, + 0.017476752400398254, + 0.005196787882596254, + 0.026650073006749153, + -0.05974312871694565, + -0.03230925649404526, + -2.7087145914738366e-34, + 0.06891719996929169, + 0.06998038291931152, + 0.04016784578561783, + -0.015616397373378277, + -0.028772668913006783, + 0.0723426416516304, + 0.039296507835388184, + -0.0178231094032526, + -0.04485669732093811, + 0.06938806176185608, + 0.09011682122945786, + 0.02431531436741352, + -0.11015750467777252, + -0.02126878872513771, + 0.028203407302498817, + 0.068716861307621, + 0.041609857231378555, + 0.02261521853506565, + -0.008341860957443714, + -0.02088329568505287, + 0.07950244098901749, + -0.007811067625880241, + -0.07106377184391022, + 0.11035270243883133, + 0.01536588929593563, + 0.009716560132801533, + 0.08697924762964249, + 0.02496849000453949, + 0.008163382299244404, + -0.03369854763150215, + 0.038128890097141266, + -0.008424419909715652, + 0.010770552791655064, + -0.00026956788497045636, + -0.038004156202077866, + 0.08608236908912659, + 0.008588969707489014, + 0.006087668240070343, + 0.06400689482688904, + -0.03672941029071808, + 0.07801046222448349, + -0.025300471112132072, + 0.01922178454697132, + -0.02449468895792961, + -0.009577852673828602, + -0.02432478964328766, + -0.0764685794711113, + -0.06348083168268204, + -0.02040199190378189, + -0.016303112730383873, + -0.04297923296689987, + -0.0455341562628746, + 0.07046864181756973, + -0.05673439800739288, + -0.10122884809970856, + -0.03352859243750572, + -0.005388951860368252, + 0.09693995863199234, + -0.04805834963917732, + 0.034585047513246536, + -0.05099320039153099, + 0.040428899228572845, + -0.03108988329768181, + 0.0793241634964943, + -0.007165888790041208, + -0.0662885531783104, + 0.020882604643702507, + -0.1296805888414383, + -0.05618505924940109, + -0.004041861277073622, + 0.05500747635960579, + 0.03627442196011543, + 0.026989798992872238, + -0.03234827145934105, + 0.035180043429136276, + -0.06769473105669022, + 0.03366053104400635, + 0.012357501313090324, + -0.018487796187400818, + -0.05481170490384102, + 0.07295975089073181, + -0.04602346941828728, + -0.025502530857920647, + -0.007490025833249092, + -0.014442048035562038, + 0.006991409230977297, + 0.055343374609947205, + 0.0023260319139808416, + -0.02007722295820713, + -0.04537054896354675, + -0.04713493213057518, + -0.01497378759086132, + -0.07273421436548233, + 0.0011906629661098123, + -0.04456718638539314, + -1.9663874084585586e-08, + -0.011790427379310131, + -0.0613483265042305, + -0.059519682079553604, + -0.03538218513131142, + -0.0252296794205904, + 0.0686945915222168, + -0.0018010468920692801, + -0.01640731282532215, + -0.054269563406705856, + 0.0431327261030674, + 0.019499994814395905, + 0.07971662282943726, + -0.0734279453754425, + 0.003983197268098593, + -0.040556952357292175, + 0.05101998895406723, + -0.0741884633898735, + 0.0014114276273176074, + 0.012494710274040699, + 0.006630517076700926, + -0.05687360092997551, + 0.04564465954899788, + 0.0113730039447546, + 0.07612805813550949, + 0.0622035451233387, + -0.00823566410690546, + -0.024742327630519867, + 0.08935333788394928, + 0.10684001445770264, + 0.08576181530952454, + 0.05821411684155464, + 0.03544113412499428, + -0.0797736719250679, + 0.027487676590681076, + -0.1730952262878418, + -0.006077298894524574, + -0.04179409146308899, + -0.02770243212580681, + -0.009966586716473103, + 0.09418635070323944, + -0.03518856316804886, + 0.043598007410764694, + -0.013578373938798904, + -0.03127371519804001, + -0.0018049145583063364, + -0.018423279747366905, + -0.0649147778749466, + -0.0018483921885490417, + -0.05664582923054695, + -0.08723898977041245, + 0.004723929800093174, + -0.0211821049451828, + 0.01688503473997116, + -0.016286293044686317, + -0.016325457021594048, + -0.06782633811235428, + 0.053726185113191605, + 0.08735859394073486, + -0.07064622640609741, + 0.05690697953104973, + 0.1538511961698532, + 0.029708359390497208, + 0.04219375178217888, + 0.013351334258913994 + ], + "link-simple-break-bold||anchor,hyperlink,hypertext,chains,chained,errors,broken": [ + -0.029133988544344902, + -0.020530832931399345, + 0.058045387268066406, + 0.06784030795097351, + 0.10499343276023865, + -0.03716707229614258, + -0.03281772509217262, + -0.04148878902196884, + -0.07046961784362793, + 0.0596596896648407, + 0.02699815109372139, + 0.05000895634293556, + 0.06125530228018761, + -0.07210584729909897, + 0.002831914694979787, + 0.1032944843173027, + -0.021370677277445793, + 0.035312797874212265, + -0.02435954473912716, + 0.050838276743888855, + -0.007697528228163719, + -0.0029503379482775927, + -0.010812223888933659, + 0.07170836627483368, + -0.004105909261852503, + -0.04341006278991699, + -0.025798777118325233, + 0.017329636961221695, + 0.013573044911026955, + -0.11982649564743042, + 0.0003922779578715563, + -0.07507442682981491, + -0.055543798953294754, + -0.01671026088297367, + 0.07701776176691055, + 0.05326470360159874, + 0.004601387772709131, + -0.07224761694669724, + 0.01727548986673355, + 0.03455374389886856, + 0.039661575108766556, + -0.026535755023360252, + 0.013284007087349892, + 0.03608856350183487, + -0.06225331127643585, + -0.02826634608209133, + -0.05145232379436493, + -0.020724471658468246, + 3.0583601073885802e-06, + 0.032143041491508484, + -0.10045228153467178, + 0.010250112973153591, + -0.018404310569167137, + -9.461944864597172e-05, + 0.06231776624917984, + -0.003134217346087098, + -0.11676729470491409, + -0.003479563631117344, + 0.050228893756866455, + 0.03308381140232086, + 0.09240848571062088, + 0.04128643125295639, + -0.0026637064293026924, + -0.015424075536429882, + 0.08085522055625916, + 0.0044907764531672, + -0.00781704019755125, + 0.01969551481306553, + -0.06719046086072922, + 0.05949724093079567, + -0.04653867334127426, + -0.05450509861111641, + -0.04463404789566994, + 0.10202305763959885, + -0.030417462810873985, + 0.0008730953559279442, + -0.05264990031719208, + 0.0377117358148098, + -0.05336548760533333, + -0.011400275863707066, + -0.051722217351198196, + -0.06915514916181564, + -0.017642615363001823, + 0.005213303957134485, + 0.12735910713672638, + 0.08776220679283142, + -0.017027458176016808, + -0.04273129999637604, + -0.0076191602274775505, + -0.01813400723040104, + 0.038793228566646576, + -0.022068414837121964, + 0.08687654137611389, + 0.014060303568840027, + 0.05998726189136505, + 0.003179867286235094, + 0.02947487123310566, + -0.012481232173740864, + -0.08113657683134079, + 0.05272660031914711, + 0.029090287163853645, + 0.06337742507457733, + 0.07758823037147522, + -0.029979411512613297, + -0.03564632683992386, + -0.03081033192574978, + 0.031403061002492905, + 0.10987615585327148, + -0.009396779350936413, + -0.015713077038526535, + -0.007463078014552593, + -0.052051182836294174, + -0.047340989112854004, + -0.09964579343795776, + -0.052538592368364334, + -0.060388416051864624, + -0.0010440424084663391, + -0.036336615681648254, + 0.10187063366174698, + 0.0636773630976677, + 0.043817490339279175, + -0.021032780408859253, + -0.01388214249163866, + -0.038406532257795334, + -0.04968351870775223, + -0.04006892815232277, + 0.041693225502967834, + -3.201559516168289e-33, + 0.07030858844518661, + 0.04806441441178322, + -0.07451815903186798, + 0.02510448358952999, + 0.055555444210767746, + 0.03562254458665848, + -0.09311000257730484, + -0.0828360915184021, + -0.08855876326560974, + 0.0031560601200908422, + 0.055571720004081726, + -0.02832886576652527, + -0.020273558795452118, + -0.013346564956009388, + 0.054332178086042404, + -0.02637401781976223, + 0.04678074270486832, + 0.007804174441844225, + -0.05375535786151886, + -0.027062440291047096, + -0.08024107664823532, + 0.04986204579472542, + 0.007060194853693247, + -0.0313299223780632, + -0.07143343240022659, + 0.07613798975944519, + 0.016243761405348778, + 0.011496014893054962, + -0.050735972821712494, + 0.01886531338095665, + 0.002316997619345784, + -0.0061811781488358974, + 0.0333111546933651, + 0.05566491559147835, + 0.010616069659590721, + 0.0016186540015041828, + -0.04015990346670151, + -0.02318219467997551, + -0.04611538350582123, + -0.036513712257146835, + -0.13995906710624695, + -0.034046828746795654, + 0.05987631157040596, + -0.013345584273338318, + 0.019875286146998405, + 0.07115433365106583, + -0.039917390793561935, + -0.017859723418951035, + -0.041789907962083817, + -0.007830503396689892, + -0.05898527428507805, + 0.04097871482372284, + 0.021733883768320084, + 0.0005636029527522624, + -0.03227650746703148, + 0.009113650768995285, + -0.06798700988292694, + 0.057268302887678146, + 0.016395224258303642, + 0.07670382410287857, + 0.014364348724484444, + 0.010203066281974316, + -0.010023452341556549, + -0.06074124947190285, + -0.04751219600439072, + 0.052726875990629196, + -0.07251826673746109, + 0.04677782207727432, + 0.05195704847574234, + -0.029770569875836372, + 0.0014463672414422035, + 0.03775429353117943, + 0.04489433392882347, + 0.09669829905033112, + -0.009336516261100769, + 0.019226934760808945, + -0.08719334006309509, + -0.10432461649179459, + 0.08330735564231873, + -0.07527261972427368, + -0.036193013191223145, + -0.06701413542032242, + 0.03244859725236893, + 0.07682160288095474, + -0.04164619743824005, + -0.020121360197663307, + -0.08685716986656189, + -0.051579080522060394, + -0.06470205634832382, + 0.034043215215206146, + 0.061567120254039764, + 0.025894759222865105, + 0.008196632377803326, + -0.07887584716081619, + -0.03966047242283821, + -5.847757460974558e-34, + 0.05004003271460533, + 0.05756894126534462, + 0.015242479741573334, + -0.0011802153894677758, + -0.04020974412560463, + 0.07335222512483597, + 0.02899066172540188, + 0.02043183147907257, + -0.007421741262078285, + 0.033857133239507675, + 0.08177923411130905, + 0.009013158269226551, + -0.10971862822771072, + -0.0013765214243903756, + -0.0041739786975085735, + 0.0286166463047266, + 0.039721760898828506, + 0.009617573581635952, + 0.00875716470181942, + -0.011222952045500278, + 0.06620211154222488, + 0.02643691375851631, + -0.06914997100830078, + 0.1140502318739891, + 0.00521891750395298, + 0.018070995807647705, + 0.09951303899288177, + -0.020865220576524734, + 0.005504640284925699, + -0.033656299114227295, + 0.04938357695937157, + 0.02961329184472561, + -0.002624722197651863, + 0.0649375170469284, + 0.005317704752087593, + 0.07146751880645752, + -0.028436873108148575, + 0.00128428905736655, + 0.030439522117376328, + -0.02416553534567356, + 0.10728007555007935, + -0.02023623138666153, + 0.023776458576321602, + -0.01847674883902073, + 0.021571779623627663, + -0.07113251090049744, + -0.10660897940397263, + -0.0512600876390934, + -0.032920196652412415, + 0.0016185587737709284, + -0.020796038210392, + -0.08536329120397568, + 0.08590773493051529, + -0.08553186058998108, + -0.06781739741563797, + -0.019260898232460022, + -0.018267447128891945, + 0.08907056599855423, + -0.10103914886713028, + 0.04013863950967789, + -0.08939877152442932, + 0.04980974644422531, + -0.03631218895316124, + 0.10263537615537643, + 0.016647562384605408, + -0.07775838673114777, + -0.01837329939007759, + -0.05729532614350319, + -0.020752716809511185, + -0.019784774631261826, + 0.035450927913188934, + 0.01665250025689602, + 0.016700617969036102, + -0.06135215237736702, + 0.020232155919075012, + -0.04190870374441147, + 0.019989311695098877, + 0.01968693546950817, + -0.004495479632169008, + -0.017232723534107208, + 0.09439283609390259, + -0.0430271178483963, + -0.00738572096452117, + -0.02412719838321209, + -0.020140690729022026, + -0.028320414945483208, + 0.03955113887786865, + 0.022518238052725792, + -0.0668465793132782, + -0.08418972045183182, + -0.04263448342680931, + -0.004642820451408625, + -0.0522029772400856, + 0.05813230201601982, + -0.05087008327245712, + -2.278755673046362e-08, + -0.0026850008871406317, + -0.0317656472325325, + -0.07413339614868164, + -0.030155057087540627, + 0.02176997810602188, + 0.059478744864463806, + -0.011223402805626392, + -0.01208479143679142, + -0.048902761191129684, + 0.04421933367848396, + -0.013308742083609104, + 0.07346627861261368, + -0.06063977628946304, + 0.03256133198738098, + -0.07647228240966797, + -0.0021720302756875753, + -0.08938059210777283, + 0.045580729842185974, + -0.0018795626237988472, + -0.0188664011657238, + -0.06107037514448166, + 0.03619113191962242, + 0.01865372620522976, + 0.027964849025011063, + 0.04778499901294708, + -0.024783523753285408, + -0.05391398072242737, + 0.09773482382297516, + 0.05401679500937462, + 0.046308185905218124, + 0.04962272569537163, + 0.03246498480439186, + -0.050979938358068466, + -0.013005939312279224, + -0.14571481943130493, + 0.03376664221286774, + -0.02550322748720646, + -0.009451009333133698, + 0.013835754245519638, + 0.05588904395699501, + -0.011367984116077423, + 0.08349338173866272, + 0.012678694911301136, + -0.016038110479712486, + -0.0033368731383234262, + -0.0008893824415281415, + -0.0378417931497097, + 0.017922254279255867, + -0.026914430782198906, + -0.08418930321931839, + 0.010432739742100239, + 0.012777252122759819, + 0.005538915283977985, + -0.03593084588646889, + -0.034544892609119415, + -0.056312162429094315, + 0.05842374265193939, + 0.09682662039995193, + -0.04982329532504082, + 0.04234948754310608, + 0.13710817694664001, + 0.024240057915449142, + 0.04264387488365173, + 0.06005394086241722 + ], + "link-simple-horizontal-bold||anchor,hyperlink,hypertext,chains,chained": [ + -0.018492434173822403, + -0.01116479467600584, + 0.009130284190177917, + 0.0399024598300457, + 0.051123544573783875, + -0.017212510108947754, + -0.016697702929377556, + -0.04473161697387695, + -0.009222473949193954, + 0.041903357952833176, + 0.022580955177545547, + 0.0748257040977478, + 0.08173223584890366, + -0.02353176288306713, + -0.0030967332422733307, + 0.10006783157587051, + -0.0006542094051837921, + 0.07352729141712189, + -0.010083856992423534, + 0.025645960122346878, + 0.02593289688229561, + -0.03723294287919998, + 0.0012746104039251804, + 0.021577950567007065, + -0.04169449955224991, + -0.05612216517329216, + 0.036171384155750275, + 0.012202674522995949, + 0.04866737127304077, + -0.11360114812850952, + -0.019344689324498177, + -0.0359480157494545, + -0.07251504063606262, + -0.0161832794547081, + 0.017383461818099022, + 0.029453519731760025, + 0.024777915328741074, + -0.07586628943681717, + 0.04163581505417824, + 0.07980359345674515, + 0.04479524865746498, + -0.03821980208158493, + 0.0035741610918194056, + 0.025459302589297295, + -0.08376666158437729, + -0.03406532108783722, + -0.07213792949914932, + -0.01868060790002346, + -0.022042416036128998, + 0.02317327819764614, + -0.046222370117902756, + -0.04384307563304901, + -0.05611363798379898, + 0.011715948581695557, + 0.06828106194734573, + 0.013198531232774258, + -0.09998555481433868, + -0.043389659374952316, + 0.04854530468583107, + -0.003406971227377653, + 0.08485561609268188, + -0.0015786965377628803, + 0.011454645544290543, + -0.018853187561035156, + 0.07112869620323181, + -0.007540812250226736, + 0.0014898254303261638, + 0.05790077522397041, + -0.07652629166841507, + 0.032255228608846664, + -0.026279885321855545, + -0.06868741661310196, + 0.004172046203166246, + 0.048023827373981476, + -0.03557886928319931, + -0.006366663612425327, + -0.014723625965416431, + 0.05272885039448738, + -0.07975547015666962, + -0.01467138808220625, + -0.04333631694316864, + -0.021012427285313606, + -0.04330376535654068, + 0.013346520252525806, + 0.0597558468580246, + 0.07461477816104889, + -0.034244295209646225, + -0.04132378473877907, + -0.03602217882871628, + 0.016985082998871803, + 0.026204081252217293, + 0.0025811500381678343, + 0.07385876774787903, + -0.013479385524988174, + 0.030914664268493652, + -0.00012612332648131996, + 0.03652114048600197, + 0.004021515604108572, + -0.09103751927614212, + 0.044458091259002686, + 0.06823566555976868, + 0.07976679503917694, + 0.0497119165956974, + -0.04936879500746727, + -0.013251055032014847, + 0.0037279268726706505, + -0.005716059356927872, + 0.07756640762090683, + -0.011292221955955029, + -0.0063091604970395565, + -0.03933211788535118, + -0.0530739352107048, + -0.05208113044500351, + -0.07229550182819366, + -0.07882246375083923, + -0.04861216992139816, + 0.011829112656414509, + -0.00933900848031044, + 0.12801183760166168, + 0.02813715487718582, + 0.04827962815761566, + 0.004660610109567642, + 0.006652747746556997, + -0.05022978410124779, + -0.051572535187006, + -0.020243223756551743, + 0.017334064468741417, + -3.211856111997523e-33, + 0.08714394271373749, + 0.042180392891168594, + -0.031119409948587418, + 0.021819937974214554, + 0.0375048890709877, + 0.028729770332574844, + -0.08810410648584366, + -0.08335407823324203, + -0.09784004837274551, + 0.0030460944399237633, + 0.03221870958805084, + 0.021671248599886894, + -0.035367682576179504, + 0.01284151989966631, + 0.01238777581602335, + -0.06940412521362305, + 0.022570906206965446, + 0.03367851302027702, + -0.06706532090902328, + -0.02690115198493004, + -0.06947386264801025, + 0.08171172440052032, + 0.006550090853124857, + -0.056267689913511276, + -0.02629108913242817, + -0.006669291295111179, + 0.029648233205080032, + -0.013514152728021145, + -0.07613804936408997, + 0.029392456635832787, + 0.003276438219472766, + 0.015906935557723045, + 0.02096041664481163, + 0.030908577144145966, + 0.0157936904579401, + 0.05173362419009209, + -0.029183633625507355, + -0.022586649283766747, + -0.02663230709731579, + -0.02350695990025997, + -0.07796382158994675, + -0.03342154994606972, + 0.06813780218362808, + -0.057747311890125275, + -0.015712914988398552, + 0.13317640125751495, + -0.028718262910842896, + -0.04281044378876686, + -0.04537361487746239, + -0.012005411088466644, + -0.018628470599651337, + 0.024445129558444023, + 0.011334966868162155, + -0.03346633538603783, + 0.03127485141158104, + -0.013036332093179226, + -0.08395656943321228, + 0.07399857044219971, + 0.007592730224132538, + 0.08645686507225037, + -0.006227005738765001, + 0.02063802443444729, + -0.0006705575506202877, + -0.026745295152068138, + -0.05042433738708496, + 0.08995091170072556, + -0.09141853451728821, + 0.020580867305397987, + 0.07466572523117065, + -0.020421236753463745, + 0.03783869743347168, + 0.06268680095672607, + 0.0156418327242136, + 0.05561143904924393, + -0.0055317748337984085, + 0.03754410892724991, + -0.120389424264431, + -0.10385841131210327, + 0.07255222648382187, + -0.0731668770313263, + -0.05862480401992798, + -0.025989186018705368, + 0.02804291620850563, + 0.07474647462368011, + -0.03651740401983261, + -0.03768239542841911, + -0.0705188736319542, + -0.024450309574604034, + -0.06576511263847351, + 0.020638789981603622, + 0.003663113806396723, + 0.014177024364471436, + 0.05098985135555267, + -0.059162940829992294, + -0.02592167630791664, + -2.802790414560602e-34, + 0.05390610173344612, + 0.06055610626935959, + 0.031234927475452423, + -0.032881371676921844, + -0.03301189839839935, + 0.08677157014608383, + 0.042188860476017, + -0.014197413809597492, + -0.06464160978794098, + 0.08929542452096939, + 0.09473364800214767, + 0.02325298823416233, + -0.13751806318759918, + -0.024951456114649773, + 0.029287125915288925, + 0.07240644842386246, + 0.05221756547689438, + 0.014376629143953323, + -0.004499460570514202, + -0.01708088256418705, + 0.08531318604946136, + -0.005098414141684771, + -0.0817127451300621, + 0.11822964251041412, + 0.02304345928132534, + 0.017011994495987892, + 0.09776130318641663, + 0.02197122946381569, + 0.01630256511271, + -0.03005899302661419, + 0.04113677516579628, + -0.01674478128552437, + 0.020906157791614532, + -0.014898406341671944, + -0.041015833616256714, + 0.06221592798829079, + 0.00528311962261796, + 0.008289412595331669, + 0.0729014128446579, + -0.04755239561200142, + 0.07471100986003876, + -0.026741165667772293, + 0.05782482773065567, + -0.024955838918685913, + -0.010185791179537773, + -0.028838057070970535, + -0.09904845803976059, + -0.037580009549856186, + -0.019081218168139458, + -0.012743998318910599, + -0.05105416849255562, + -0.039587751030921936, + 0.06527847796678543, + -0.05959786847233772, + -0.09871646761894226, + -0.04227806627750397, + -0.032086651772260666, + 0.09537127614021301, + -0.05045345798134804, + 0.03457411006093025, + -0.05301214009523392, + 0.03659981116652489, + -0.03425433859229088, + 0.08258743584156036, + -0.010279693640768528, + -0.05113179236650467, + 0.020950572565197945, + -0.1474684774875641, + -0.06208530813455582, + -0.012061545625329018, + 0.05471433326601982, + 0.057068005204200745, + 0.01804358884692192, + -0.04629901051521301, + 0.034833382815122604, + -0.07321742177009583, + 0.035688549280166626, + 0.017495278269052505, + -0.020213020965456963, + -0.0772293210029602, + 0.0567580871284008, + -0.0540926456451416, + -0.020447837188839912, + 0.010712956078350544, + -0.026795029640197754, + -0.008380822837352753, + 0.04489210247993469, + 0.012758773751556873, + -0.003632208565250039, + -0.04727370664477348, + -0.044168077409267426, + -0.021843746304512024, + -0.0796525701880455, + 0.006247905548661947, + -0.02510310709476471, + -2.087116435234293e-08, + -0.004391093272715807, + -0.0798833966255188, + -0.0534358024597168, + -0.03195992484688759, + -0.037660758942365646, + 0.09050679206848145, + 0.005745407659560442, + -0.00993636716157198, + -0.037100911140441895, + 0.03685345500707626, + 0.018026992678642273, + 0.08948716521263123, + -0.06737003475427628, + 0.014900978654623032, + -0.041050221771001816, + 0.035398781299591064, + -0.0684528574347496, + 0.02244696393609047, + 0.029809024184942245, + 0.004756334237754345, + -0.040292300283908844, + 0.03428787365555763, + 0.007547847460955381, + 0.09757191687822342, + 0.06527413427829742, + 0.007196421269327402, + -0.036573100835084915, + 0.09961535036563873, + 0.10762856155633926, + 0.07986021786928177, + 0.05071862041950226, + 0.046460576355457306, + -0.08332154154777527, + 0.01809282973408699, + -0.14750011265277863, + -0.011689506471157074, + -0.03864356130361557, + -0.008269520476460457, + -0.0036766312550753355, + 0.07519214600324631, + -0.029830966144800186, + 0.04923165962100029, + -0.013291115872561932, + -0.03003743849694729, + 0.02987722121179104, + -0.03210270032286644, + -0.07368876785039902, + 0.021442776545882225, + -0.04971243813633919, + -0.08042750507593155, + -0.0002895070647355169, + -0.01789284683763981, + 0.03614512085914612, + -0.020462915301322937, + -0.0005497797974385321, + -0.050388481467962265, + 0.04905783385038376, + 0.06424975395202637, + -0.0754309818148613, + 0.046255629509687424, + 0.16491615772247314, + 0.04346970468759537, + 0.03814932703971863, + 0.018555982038378716 + ], + "link-simple-horizontal-break-bold||anchor,hyperlink,hypertext,chains,chained,errors,broken": [ + -0.03164080157876015, + -0.011499227955937386, + 0.05575360730290413, + 0.04134882614016533, + 0.08425631374120712, + -0.027391908690333366, + -0.04865771159529686, + -0.034677617251873016, + -0.06373114883899689, + 0.06119772791862488, + 0.03762829676270485, + 0.06317485868930817, + 0.0650646984577179, + -0.05071074515581131, + -0.010267390869557858, + 0.09363291412591934, + -0.028421083465218544, + 0.04237876087427139, + -0.03013436123728752, + 0.0428595133125782, + -0.008165880106389523, + -0.025958996266126633, + -0.031015781685709953, + 0.06678818166255951, + -0.017113687470555305, + -0.019065894186496735, + -0.02870943583548069, + 0.027475601062178612, + 0.02573510631918907, + -0.1399470567703247, + -0.012683931738138199, + -0.055533088743686676, + -0.06722377240657806, + -0.013324903324246407, + 0.064018614590168, + 0.036961331963539124, + 0.007009397726505995, + -0.07654134929180145, + 0.02196769043803215, + 0.04193515330553055, + 0.02552165277302265, + -0.04271339625120163, + 0.008282561786472797, + 0.05675545334815979, + -0.06217615678906441, + -0.042778562754392624, + -0.06151427701115608, + -0.02164328470826149, + 0.007218759041279554, + 0.04325709864497185, + -0.11148367822170258, + 0.008273682557046413, + -0.01832445152103901, + 0.03076697513461113, + 0.07304965704679489, + -0.010718293488025665, + -0.10265401005744934, + -0.0036050144117325544, + 0.05660359561443329, + 0.01724725030362606, + 0.10704498738050461, + 0.04107416421175003, + 0.009645857848227024, + -0.01583987846970558, + 0.0795193612575531, + -0.0026295259594917297, + -0.028954066336154938, + 0.025016354396939278, + -0.06495144963264465, + 0.062262892723083496, + -0.05219767987728119, + -0.06622941046953201, + -0.046689845621585846, + 0.08420699089765549, + -0.027933405712246895, + -0.007244354113936424, + -0.05350002273917198, + 0.032725006341934204, + -0.053825244307518005, + -0.01966279186308384, + -0.04642990231513977, + -0.04027119651436806, + -0.02528265118598938, + 0.02046315185725689, + 0.10717272758483887, + 0.08785958588123322, + -0.016547761857509613, + -0.028474770486354828, + -0.008603155612945557, + -0.01786608248949051, + 0.035385675728321075, + -0.00772521086037159, + 0.09234554320573807, + 0.005072068888694048, + 0.05154899135231972, + -0.004064424894750118, + 0.016458595171570778, + -0.028509914875030518, + -0.08212282508611679, + 0.05451071634888649, + 0.03220164775848389, + 0.0535157211124897, + 0.07635470479726791, + -0.0346398763358593, + -0.030669182538986206, + -0.028246425092220306, + 0.020389074459671974, + 0.09896698594093323, + 0.0030779859516769648, + -0.004850091878324747, + -0.0296022929251194, + -0.02512708678841591, + -0.06580018252134323, + -0.09200159460306168, + -0.04500909522175789, + -0.0671396553516388, + -0.00928495917469263, + -0.02440425008535385, + 0.0979430302977562, + 0.05494008958339691, + 0.03719126060605049, + -0.01862034946680069, + -0.01176068652421236, + -0.04254980757832527, + -0.050761666148900986, + -0.025387657806277275, + 0.028602035716176033, + -3.335852031568058e-33, + 0.06329190731048584, + 0.026359209790825844, + -0.054886531084775925, + 0.03791993111371994, + 0.06420045346021652, + 0.031559646129608154, + -0.10116521269083023, + -0.06434205174446106, + -0.09191342443227768, + 0.0009801118867471814, + 0.05276169255375862, + -0.013490021228790283, + -0.03342040255665779, + -0.00815485417842865, + 0.06117485463619232, + -0.050940077751874924, + 0.040518082678318024, + 0.012755895033478737, + -0.07991822808980942, + -0.026186954230070114, + -0.0785548985004425, + 0.04519294574856758, + 0.025025930255651474, + -0.04041396453976631, + -0.05460108071565628, + 0.066914401948452, + 0.010321524925529957, + 0.0069942716509103775, + -0.059010326862335205, + 0.01876819133758545, + -0.0017259364249184728, + -0.017570974305272102, + 0.038603659719228745, + 0.037138573825359344, + 0.014142459258437157, + 0.006792106665670872, + -0.04757115617394447, + -0.0215659998357296, + -0.051691293716430664, + -0.03733031079173088, + -0.15326157212257385, + -0.04965287074446678, + 0.04829578101634979, + -0.028922580182552338, + 0.032970063388347626, + 0.0763905867934227, + -0.029117973521351814, + -0.01318623311817646, + -0.03962058201432228, + -0.013002506457269192, + -0.056661978363990784, + 0.04856795445084572, + 0.020800471305847168, + -0.013055115006864071, + -0.019639570266008377, + 0.003283175639808178, + -0.0700453668832779, + 0.07734709233045578, + 0.005661491770297289, + 0.076071597635746, + 0.012551630847156048, + 0.011397994123399258, + -0.014048224315047264, + -0.06419077515602112, + -0.04233234375715256, + 0.044443126767873764, + -0.08913762867450714, + 0.03624330833554268, + 0.06883051991462708, + -0.0266706719994545, + 0.0037240544334053993, + 0.025134876370429993, + 0.04341871663928032, + 0.1074550449848175, + -0.01473686471581459, + 0.017329057678580284, + -0.10569509863853455, + -0.08870000392198563, + 0.08249378204345703, + -0.07096575200557709, + -0.039830125868320465, + -0.057136986404657364, + 0.04929254204034805, + 0.045413050800561905, + -0.04329867660999298, + -0.029634641483426094, + -0.08329177647829056, + -0.03696994110941887, + -0.056655243039131165, + 0.027197450399398804, + 0.039790406823158264, + 0.0323745422065258, + 0.03260955587029457, + -0.0723419338464737, + -0.03062441013753414, + -6.4084563277022885e-34, + 0.025655068457126617, + 0.051233988255262375, + 0.004481090232729912, + -0.013123554177582264, + -0.046952974051237106, + 0.08941265940666199, + 0.03982660546898842, + 0.01832420751452446, + -0.02221660315990448, + 0.05053361877799034, + 0.0785781666636467, + 0.008311750367283821, + -0.13157084584236145, + -0.0013075153110548854, + -0.004529210738837719, + 0.03718521073460579, + 0.04398752748966217, + 0.0010519757634028792, + 0.009517448954284191, + 0.0010437314631417394, + 0.07352422922849655, + 0.02841051295399666, + -0.07739891111850739, + 0.12534719705581665, + 0.012106605805456638, + 0.03060915507376194, + 0.10918167233467102, + -0.023260202258825302, + 0.008379561826586723, + -0.029740680009126663, + 0.05253249406814575, + 0.019043855369091034, + 0.0080115282908082, + 0.05091114342212677, + 0.0019570060539990664, + 0.04846974089741707, + -0.02446424588561058, + 0.004455850459635258, + 0.049094561487436295, + -0.03402389585971832, + 0.09937531501054764, + -0.01542571373283863, + 0.0577457919716835, + -0.01735716313123703, + 0.02027696743607521, + -0.07155653834342957, + -0.11691897362470627, + -0.02779971994459629, + -0.03451107069849968, + 0.0006100216996856034, + -0.0291944220662117, + -0.06965338438749313, + 0.07623457908630371, + -0.08741879463195801, + -0.06158774718642235, + -0.021258290857076645, + -0.04428192973136902, + 0.09078960120677948, + -0.09126852452754974, + 0.04023204371333122, + -0.09162462502717972, + 0.0500744953751564, + -0.03736685961484909, + 0.10721050202846527, + 0.02078346535563469, + -0.062326058745384216, + -0.019150706008076668, + -0.07931602001190186, + -0.035319868475198746, + -0.02476438507437706, + 0.03204401955008507, + 0.037827227264642715, + 0.008867895230650902, + -0.07449541985988617, + 0.02374293841421604, + -0.045182373374700546, + 0.02776312455534935, + 0.024200087413191795, + -0.005598997697234154, + -0.03758765757083893, + 0.07849843055009842, + -0.04744008556008339, + -0.0019427853403612971, + -0.01602625474333763, + -0.030484143644571304, + -0.03151674568653107, + 0.03433554247021675, + 0.03424747660756111, + -0.04639667645096779, + -0.08477417379617691, + -0.04188428446650505, + -0.006111061200499535, + -0.061740197241306305, + 0.0635279044508934, + -0.035850927233695984, + -2.3900250667452383e-08, + -0.0019004597561433911, + -0.05136128142476082, + -0.06647735834121704, + -0.030851278454065323, + 0.014287644065916538, + 0.07687149941921234, + -0.00479348236694932, + -0.006479214411228895, + -0.03329826518893242, + 0.039821382611989975, + -0.011327953077852726, + 0.08136165887117386, + -0.06876979768276215, + 0.03820570930838585, + -0.06442420929670334, + -0.01116044633090496, + -0.08574269711971283, + 0.06339187175035477, + 0.012115478515625, + -0.018718279898166656, + -0.03927615284919739, + 0.02493365667760372, + 0.01583002880215645, + 0.050370339304208755, + 0.049929097294807434, + -0.014228906482458115, + -0.06159588322043419, + 0.10585334897041321, + 0.06222990155220032, + 0.04011199623346329, + 0.050699230283498764, + 0.04211229458451271, + -0.04761971905827522, + -0.019566994160413742, + -0.12347420305013657, + 0.031017163768410683, + -0.01957143098115921, + 0.006655065808445215, + 0.01579412631690502, + 0.04202066734433174, + -0.005346073303371668, + 0.0829453095793724, + 0.012298394925892353, + -0.019400862976908684, + 0.020691657438874245, + -0.009650145657360554, + -0.04926900193095207, + 0.030185356736183167, + -0.023715097457170486, + -0.08534722030162811, + 0.002059899503365159, + 0.012157062999904156, + 0.027819862589240074, + -0.03876308724284172, + -0.02653321623802185, + -0.04099027439951897, + 0.05885075777769089, + 0.06967726349830627, + -0.04904894158244133, + 0.02948731929063797, + 0.14740712940692902, + 0.04171034321188927, + 0.03973237797617912, + 0.06235692277550697 + ], + "linkedin-logo-bold||logos,jobs,employment,social media": [ + -0.022209402173757553, + -0.009592878632247448, + -0.003126240335404873, + 0.030919775366783142, + 0.08755925297737122, + -0.025303468108177185, + 0.036257680505514145, + -0.07206574827432632, + -0.01319275051355362, + -0.02952190302312374, + 0.015576819889247417, + 0.06458233296871185, + 0.04013636335730553, + -0.029547784477472305, + -0.003125299233943224, + -0.0026845145039260387, + -0.018036577850580215, + 0.02847464010119438, + 0.06157604232430458, + -0.05620932579040527, + 0.00276139285415411, + 0.03561040759086609, + 0.008470438420772552, + -0.022533709183335304, + 0.024162376299500465, + -0.08833622187376022, + -0.021436570212244987, + 0.022157898172736168, + -0.012737502343952656, + -0.07539533823728561, + -0.038587018847465515, + 0.0567246675491333, + -0.03720378503203392, + -0.0011610424844548106, + 0.04461554437875748, + -0.00591907138004899, + -0.018445026129484177, + 0.042238928377628326, + 0.03310491889715195, + 0.026741480454802513, + 0.03882930427789688, + -0.12062299996614456, + 0.029366865754127502, + 0.018454190343618393, + -0.041299790143966675, + 0.0269578006118536, + -0.019910605624318123, + -0.003526963759213686, + 0.02810969576239586, + -0.009778168052434921, + -0.019053706899285316, + -0.1026742085814476, + -0.011705242097377777, + -0.008923996239900589, + 0.020838521420955658, + -0.036365680396556854, + -0.03024917282164097, + -0.031903479248285294, + -0.07075871527194977, + 0.005263104103505611, + -0.0031383433379232883, + -0.02099759876728058, + 0.04435505345463753, + 0.04791063070297241, + 0.09311388432979584, + -0.0008883504197001457, + -0.03690620884299278, + 0.07751810550689697, + -0.0653412714600563, + -0.03556778281927109, + 0.073607437312603, + -0.035436082631349564, + -0.0890045166015625, + 0.008686553686857224, + -0.02061290107667446, + 0.007717103697359562, + 0.027768932282924652, + 0.03231753781437874, + -0.01913679577410221, + -0.0990498885512352, + -0.059732139110565186, + -0.011292948387563229, + -0.018963532522320747, + 0.008957640267908573, + 0.018137691542506218, + 0.08034717291593552, + -0.041593436151742935, + -0.0731794461607933, + -0.0347265899181366, + 0.07507751137018204, + -0.03654136136174202, + 0.016701413318514824, + 0.0626390352845192, + -0.03517366573214531, + -0.0395573191344738, + -0.0016172974137589335, + 0.014451781287789345, + -0.028714081272482872, + -0.02639187127351761, + 0.05196903273463249, + -0.06326734274625778, + 0.044130101799964905, + 0.06768784672021866, + -0.01891503296792507, + 0.0025693045463413, + 0.043091416358947754, + 0.0064872996881604195, + 0.08624255657196045, + 0.06255693733692169, + 0.06339485198259354, + -0.009868863970041275, + -0.018150629475712776, + -0.08814424276351929, + 0.006374523043632507, + -0.05475649982690811, + -0.09385871142148972, + -0.031428638845682144, + -0.008271386846899986, + 0.14340238273143768, + 0.01871614158153534, + 0.014303280040621758, + 0.04432903602719307, + -0.06247897446155548, + -0.05556828901171684, + -0.07663868367671967, + -0.033141471445560455, + 0.012545976787805557, + -2.8571936706491e-33, + 0.10760457068681717, + 0.11507175862789154, + -0.023322470486164093, + 0.02130146324634552, + 0.01701672561466694, + 0.04396938160061836, + -0.13184258341789246, + -0.04776012897491455, + -0.11977619677782059, + 0.027290841564536095, + -0.07108772546052933, + 0.09608859568834305, + 0.00175995915196836, + 0.12765677273273468, + -0.0007661238196305931, + -0.06754164397716522, + 0.014526237733662128, + 0.05770183354616165, + -0.05841013789176941, + -0.051534004509449005, + -0.015627292916178703, + 0.0802716314792633, + -0.09971768409013748, + 0.03222841024398804, + -0.015453208237886429, + -0.006573618855327368, + 0.036216434091329575, + -0.005344800651073456, + 0.0009835106320679188, + 0.008815930224955082, + -0.011225207708775997, + 0.052645277231931686, + 0.02746119722723961, + 0.0015934738330543041, + 0.02925705537199974, + -0.03115512803196907, + -0.07814358174800873, + -0.03484036773443222, + 0.004827871453016996, + 0.03276427462697029, + -0.001347448443993926, + -0.031920235604047775, + 0.03053540736436844, + 0.04098230600357056, + 0.014835543930530548, + 0.1653938591480255, + 0.03165297210216522, + -0.062038589268922806, + 0.04617758095264435, + 0.043335556983947754, + 0.036550652235746384, + -0.02358398213982582, + -0.020339880138635635, + 0.020321939140558243, + -0.010712441056966782, + -0.04318195581436157, + -0.05303981900215149, + 0.052922509610652924, + 0.020255252718925476, + -0.060551825910806656, + 0.056658901274204254, + -0.007575761992484331, + 0.03304635360836983, + -0.02703893557190895, + -0.05787726119160652, + 0.025883138179779053, + -0.010273441672325134, + 0.028538420796394348, + 0.054843682795763016, + -0.005583763122558594, + 0.044265128672122955, + 0.1306537687778473, + 0.09180562198162079, + 0.02274521440267563, + -0.03648043051362038, + 0.03824653849005699, + -0.00993903074413538, + 0.022636907175183296, + -0.017976442351937294, + 0.0367526076734066, + 0.0019668221939355135, + 0.008400890976190567, + -0.06153525039553642, + 0.02610415406525135, + 0.08789078891277313, + 0.06320381164550781, + 0.02859550341963768, + -0.07039065659046173, + -0.021621810272336006, + 0.07326783984899521, + -0.028924738988280296, + 0.04819194972515106, + -0.003086142474785447, + 0.008922809734940529, + -0.15402764081954956, + 6.092219878327284e-34, + -0.00591473001986742, + -0.03422440215945244, + 0.11501368880271912, + -0.02682654559612274, + -0.0401863195002079, + 0.008728240616619587, + 0.07321985810995102, + 0.03160654753446579, + -0.01765812188386917, + 0.0542340949177742, + 0.10213252156972885, + -0.04440918192267418, + -0.06995075941085815, + -0.04249497503042221, + -0.07041021436452866, + 0.008575908839702606, + 0.04822979494929314, + 0.03121969848871231, + -0.08952344208955765, + 0.011190862394869328, + -0.008006555028259754, + -0.04365986958146095, + -0.07752407342195511, + 0.10754360258579254, + 0.0972941592335701, + 0.00939682126045227, + 0.027401087805628777, + -0.025424640625715256, + -0.0504801869392395, + 0.019049685448408127, + -0.03825683891773224, + -0.00622957106679678, + -0.00552006158977747, + 0.024029502645134926, + -0.0012862939620390534, + 0.05833388864994049, + -0.022868145257234573, + -0.048805736005306244, + 0.047748737037181854, + 0.00914470199495554, + -0.0075657907873392105, + -0.029606999829411507, + -0.009900388307869434, + 0.06712730973958969, + -0.018781354650855064, + -0.0411192961037159, + -0.14099310338497162, + -0.08834046870470047, + -0.07818995416164398, + 0.06682358682155609, + 0.02146962098777294, + -0.01460034679621458, + 0.05027073249220848, + -0.011184446513652802, + -0.07063110917806625, + -0.04601770266890526, + 0.03081190027296543, + 0.03469645977020264, + -0.013161653652787209, + 0.042427919805049896, + 0.040118202567100525, + -0.021676715463399887, + -0.026524681597948074, + 0.0790214091539383, + -0.037238460034132004, + -0.1003984734416008, + 0.028981393203139305, + -0.022954916581511497, + -0.09293261915445328, + 0.00036105394246988, + 0.06765244156122208, + -0.03402988985180855, + 0.008309372700750828, + -0.011465920135378838, + -0.031983111053705215, + -0.05321940779685974, + 0.08815394341945648, + 0.007421991787850857, + -0.10160886496305466, + 0.04685075581073761, + -0.04184882342815399, + -0.016182320192456245, + -0.025029554963111877, + 0.03772478178143501, + 0.03164925426244736, + 0.03579738363623619, + 0.0076174382120370865, + 0.04920509457588196, + -0.00866867508739233, + -0.048492513597011566, + -0.07397583872079849, + -0.020790396258234978, + -0.012853497639298439, + 0.03747761622071266, + -0.09674100577831268, + -1.7674215868623833e-08, + -0.010964637622237206, + -0.02370292879641056, + 0.01862114667892456, + -0.001162555068731308, + 0.03697127103805542, + 0.028195882216095924, + 0.01563141494989395, + -0.04980400949716568, + -0.0395921990275383, + -0.010911581106483936, + -0.06466364860534668, + 0.01117350347340107, + -0.11994282901287079, + -0.010989862494170666, + 0.051836270838975906, + 0.009303941391408443, + -0.08390016108751297, + -0.0099483048543334, + 0.03606907278299332, + -0.05452292785048485, + -0.047756947576999664, + 0.07253660261631012, + -0.05304388329386711, + 0.02115514688193798, + -0.013540332205593586, + 0.05135662108659744, + -0.042255476117134094, + 0.042236704379320145, + 0.05059300363063812, + 0.003507286310195923, + 0.028431423008441925, + 0.06773626059293747, + 0.01353063341230154, + -0.03156865015625954, + -0.09125695377588272, + -0.0034690836910158396, + -0.010212367400527, + -0.043253328651189804, + -0.038882240653038025, + 0.035808779299259186, + 0.048155177384614944, + 0.01856911927461624, + 0.0177090335637331, + -0.03687228262424469, + -0.012418189086019993, + -0.005611651111394167, + 0.07674314081668854, + 0.06254666298627853, + -0.04191674292087555, + -0.1285923719406128, + 0.004877198021858931, + 0.035114094614982605, + 0.018281608819961548, + 0.05185626447200775, + -0.0355105884373188, + -0.1011209562420845, + 0.08657173067331314, + 0.07185428589582443, + -0.006038056220859289, + 0.03780347481369972, + 0.14040324091911316, + -0.07532833516597748, + -0.016942033544182777, + 0.01745915412902832 + ], + "linktree-logo-bold||*new*,social media,links": [ + 0.01342677604407072, + -0.014858358539640903, + -0.0017342317150905728, + 0.04684503376483917, + 0.15874414145946503, + -0.04596659913659096, + -0.011250441893935204, + -0.04383600130677223, + 0.013815103098750114, + 0.045619282871484756, + 0.009123115800321102, + 0.09532696008682251, + 0.02315509133040905, + -0.06064716726541519, + 0.02822243608534336, + 0.027231262996792793, + -0.04447266831994057, + 0.047298986464738846, + 0.05065425857901573, + -0.05298198014497757, + -0.00444707740098238, + -0.02378823049366474, + -0.01826532930135727, + 0.010091032832860947, + 0.029926419258117676, + -0.06728116422891617, + -0.008270997554063797, + -0.01054111123085022, + 0.007892834953963757, + -0.0860758125782013, + 0.01375586912035942, + 0.01878678798675537, + 0.04365997016429901, + -3.891031155944802e-05, + 0.027296533808112144, + -0.0043249838054180145, + 0.02000107429921627, + -0.0539647676050663, + 0.004187895450741053, + 0.05614771693944931, + 0.05664783716201782, + -0.0384102538228035, + 0.021988337859511375, + 0.007036470342427492, + -0.07193262875080109, + 0.043276283890008926, + -0.06159735098481178, + 0.00947853084653616, + -0.0025115394964814186, + 0.02054661512374878, + -0.0048498231917619705, + -0.11804082244634628, + -0.07705281674861908, + -0.08457653969526291, + 0.015550388023257256, + -0.007814331911504269, + -0.04792403057217598, + -0.05340670049190521, + 0.023598235100507736, + 0.022163022309541702, + 0.10207217931747437, + -0.0053397309966385365, + 0.029081767424941063, + 0.038626644760370255, + 0.10164225846529007, + 0.011631224304437637, + -0.033880509436130524, + 0.10529220849275589, + -0.04526931419968605, + 0.014644792303442955, + 0.03981432318687439, + -0.016677547246217728, + -0.03267062082886696, + 0.03556148707866669, + -0.02203185483813286, + -0.03298252820968628, + 0.03340158611536026, + 0.04343297332525253, + -0.03616320714354515, + -0.021981507539749146, + -0.06173022836446762, + -0.01407638844102621, + -0.03925999626517296, + -0.03897706791758537, + 0.09115710109472275, + 0.08830186724662781, + -0.08731135725975037, + -0.011231418699026108, + -0.06918124854564667, + 0.04696263372898102, + -0.033184945583343506, + 0.042330726981163025, + -0.0007685208693146706, + -0.017517132684588432, + -0.09292422980070114, + 0.02621360868215561, + -0.019706619903445244, + -0.06293149292469025, + -0.05893617868423462, + 0.0768829956650734, + -0.05100848525762558, + 0.08214769512414932, + 0.10914169251918793, + -0.04045778140425682, + 0.019493097439408302, + 0.06476414203643799, + 0.0052885557524859905, + 0.10088521987199783, + 0.02168409153819084, + 0.10383323580026627, + 0.014688231982290745, + -0.030922027304768562, + -0.11558139324188232, + -0.026119042187929153, + -0.042424313724040985, + -0.07199183106422424, + -0.033867247402668, + -0.036692097783088684, + 0.11985664814710617, + 0.015784496441483498, + 0.06352835893630981, + -0.0011296805460005999, + -0.046675268560647964, + -0.06895484775304794, + -0.046313099563121796, + -0.0038382341153919697, + -0.05784444510936737, + -2.3432131738558702e-33, + 0.0781431570649147, + 0.10947853326797485, + -0.03694041818380356, + 0.04492449015378952, + 0.023983310908079147, + 0.04119938239455223, + -0.06638052314519882, + -0.08333035558462143, + -0.12275499105453491, + 0.015100858174264431, + -0.014304936863481998, + 0.037772681564092636, + -0.004825965501368046, + 0.027004463598132133, + 0.01412953995168209, + -0.080705925822258, + -0.025368675589561462, + -0.015164928510785103, + -0.0877012386918068, + -0.05745076388120651, + -0.03458131477236748, + 0.07195740938186646, + -0.04908156767487526, + -0.0006449613720178604, + -0.015906278043985367, + -0.060158517211675644, + 0.07292089611291885, + -0.03730614110827446, + -0.021854540333151817, + 0.013861721381545067, + 0.013753191567957401, + 0.03740163519978523, + 0.013126863166689873, + 0.045146554708480835, + -0.01125663984566927, + -0.015241014771163464, + -0.03640560805797577, + -0.04709658771753311, + -0.015025587752461433, + 0.012015014886856079, + -0.01970754563808441, + -0.038545671850442886, + 0.018901264294981956, + 0.039437197148799896, + -0.015558217652142048, + 0.11851736903190613, + 0.029869018122553825, + -0.10268828272819519, + 0.012893970124423504, + -0.034831106662750244, + 0.0021077694837003946, + -0.00813458114862442, + -0.03773527219891548, + -0.009631987661123276, + -0.052992645651102066, + -0.0241361316293478, + -0.07163218408823013, + 0.06092550605535507, + 0.058660075068473816, + -0.009426470845937729, + 0.09260616451501846, + -0.030305985361337662, + 0.04691988229751587, + -0.019611425697803497, + -0.04388014227151871, + 0.11167635023593903, + 0.005774002056568861, + 0.03999871015548706, + -0.0019026747904717922, + -0.04217934608459473, + 0.03931112959980965, + 0.01690327748656273, + 0.06234753131866455, + 0.0450153648853302, + -0.05927182734012604, + 0.00939620565623045, + -0.040753837674856186, + -0.011494128964841366, + 0.008940107189118862, + 0.00494930287823081, + -0.06541147083044052, + -0.048963580280542374, + -0.005358896218240261, + 0.07249566167593002, + 0.08520282059907913, + -0.017311833798885345, + 0.04890388622879982, + -0.04205036535859108, + -0.05046502500772476, + -0.013639912009239197, + -0.03455296903848648, + 0.019451402127742767, + 0.024157820269465446, + 0.016486363485455513, + -0.08832278102636337, + 2.2140853662259379e-35, + 0.05907910317182541, + 0.00907927192747593, + 0.0821564793586731, + -0.05942118167877197, + -0.07190746068954468, + 0.058514490723609924, + 0.004484358709305525, + -0.0019467344973236322, + -0.03350447490811348, + 0.04808235913515091, + 0.11723869293928146, + 0.03449644148349762, + -0.09983588755130768, + -0.06138838082551956, + 0.002461700001731515, + 0.008482993580400944, + 0.10759516060352325, + 0.0273560993373394, + -0.10220881551504135, + 0.03066965565085411, + 0.03170377016067505, + 0.007539710495620966, + -0.052956417202949524, + 0.05753857269883156, + -0.005049176514148712, + -0.03209783136844635, + 0.11433393508195877, + -0.0032114649657160044, + -0.027910122647881508, + -0.0446012057363987, + -0.0020670685917139053, + -0.0026539932005107403, + 0.01764572039246559, + 0.019458960741758347, + 0.02136465534567833, + 0.07246503978967667, + -0.030482318252325058, + -0.05173974484205246, + 0.04926709458231926, + 0.002543204464018345, + 0.04750779643654823, + -0.01680903322994709, + -0.015763483941555023, + 0.04010452330112457, + -0.04837232083082199, + -0.040920451283454895, + -0.1388031393289566, + -0.08377455174922943, + -0.10609129816293716, + 0.053276531398296356, + 0.04196694493293762, + -0.03685151785612106, + 0.07653038203716278, + -0.03563622012734413, + -0.09656711667776108, + -0.0030680077616125345, + -0.04644925147294998, + 0.08818704634904861, + -0.031075576320290565, + 0.059956252574920654, + 0.0025385143235325813, + 0.012142905034124851, + -0.10314369201660156, + 0.026388371363282204, + -0.005323558580130339, + -0.05434326082468033, + -0.026630349457263947, + -0.027808835729956627, + -0.0752001404762268, + 0.055857103317976, + 0.029118018224835396, + 0.043422624468803406, + -0.046393562108278275, + 0.012839129194617271, + -0.004925352521240711, + -0.09098505973815918, + 0.06112699955701828, + 0.029406141489744186, + -0.025876756757497787, + -0.008359862491488457, + -0.035617392510175705, + 0.004959930200129747, + -0.03479456156492233, + 0.027946431189775467, + 0.04625112935900688, + -0.02720971591770649, + 0.019254911690950394, + 0.05737302452325821, + 0.014687033370137215, + -0.04791705310344696, + -0.05733242630958557, + 0.006844442803412676, + 0.0057588620111346245, + 0.0712604969739914, + -0.06757452338933945, + -1.9956321040126568e-08, + -0.0506107434630394, + 0.005203329026699066, + -0.0011618051212280989, + 0.030162297189235687, + 0.06634373962879181, + 0.04509268328547478, + -0.03522191941738129, + -0.02855166606605053, + -0.04475363343954086, + -0.0017230709781870246, + -0.03834301233291626, + 0.024894408881664276, + -0.08185818791389465, + 0.03907233104109764, + 0.009715037420392036, + -0.008625886403024197, + -0.11037283390760422, + 0.04250770062208176, + 0.017007621005177498, + 0.003575368784368038, + -0.055347245186567307, + 0.05927395075559616, + 0.00824673194438219, + 0.055722955614328384, + 0.031038854271173477, + 0.03742296248674393, + -0.01732180081307888, + -0.018176421523094177, + 0.04914923012256622, + 0.04912562295794487, + 0.009556361474096775, + 0.07012595981359482, + -0.04125455021858215, + -0.00854097306728363, + -0.12177424132823944, + 0.02774205058813095, + -0.056249748915433884, + -0.0009770432952791452, + -0.06130770221352577, + 0.038716308772563934, + 0.04129703715443611, + 0.007765354588627815, + 0.02300126850605011, + -0.019823163747787476, + -0.07332608848810196, + -0.0035579372197389603, + 0.043841492384672165, + 0.06193184480071068, + -0.0283765010535717, + -0.08692865073680878, + 0.037906479090452194, + 0.0246528722345829, + -0.001863995217718184, + 0.004946191795170307, + -0.023059219121932983, + -0.05787736549973488, + 0.04186190292239189, + 0.09328973293304443, + 0.03613519296050072, + 0.020857246592640877, + 0.1586986780166626, + -0.05685654282569885, + 0.0018445716705173254, + 0.014533132314682007 + ], + "linux-logo-bold||penguin,computer,animals": [ + 0.034327998757362366, + 0.006975249852985144, + -0.019128933548927307, + -0.009619939140975475, + 0.11762242019176483, + -0.0793125256896019, + 0.008696313947439194, + 0.006088231690227985, + 0.04504680633544922, + -0.028651319444179535, + -0.0017675579292699695, + 0.02807534672319889, + -0.030073897913098335, + -0.04000116512179375, + 0.03889648616313934, + -0.04643004387617111, + -0.04461407661437988, + 0.005403502844274044, + 0.10611079633235931, + -0.009498992003500462, + -0.015072433277964592, + -0.0216229185461998, + 0.028328683227300644, + 0.0017195971449837089, + -0.009465054608881474, + 0.017673825845122337, + 0.0027781992685049772, + 0.008517494425177574, + 0.004924669396132231, + -0.06695294380187988, + 0.0005163290770724416, + 0.0454159677028656, + 0.10698183625936508, + 0.056063901633024216, + 0.028188124299049377, + 0.06702607870101929, + 0.02341192401945591, + -0.09423892945051193, + 0.00017675348499324173, + 0.009863954037427902, + 0.030362514778971672, + -0.030095849186182022, + 0.050309933722019196, + 0.018466897308826447, + -0.025397704914212227, + 0.041296184062957764, + -0.08059591799974442, + -0.0056733423843979836, + 0.07066281139850616, + -0.04417794197797775, + -0.02666393667459488, + -0.12234330177307129, + -0.04436270147562027, + -0.08466531336307526, + -0.009834948927164078, + -0.011293708346784115, + -0.02619835175573826, + -0.07514690607786179, + 0.06420061737298965, + -0.04614568501710892, + 0.005447732284665108, + 0.002254647435620427, + 0.01952682062983513, + 0.11125349253416061, + 0.07239483296871185, + -0.020084060728549957, + -0.03781856596469879, + -0.0005319936317391694, + -0.06288807839155197, + 0.02606756053864956, + 0.07234855741262436, + -0.017566246911883354, + 0.020260604098439217, + -0.011859995312988758, + -0.10407105088233948, + 0.03633401542901993, + 0.034320440143346786, + 0.023460334166884422, + 0.030453957617282867, + -0.08510581403970718, + -0.035492416471242905, + 0.0006830395432189107, + -0.03428935259580612, + 0.0626143291592598, + 0.12852734327316284, + 0.10075465589761734, + -0.0858624055981636, + -0.07420796900987625, + -0.06694523990154266, + 0.009724786505103111, + -0.06916847079992294, + -0.047411393374204636, + 0.048291128128767014, + 0.0013009908143430948, + -0.07563690096139908, + -0.0078058443032205105, + 0.0878920704126358, + -0.025231631472706795, + -0.07023400068283081, + 0.08436762541532516, + -0.05221739783883095, + 0.03871181607246399, + 0.11383423209190369, + -0.06411141902208328, + 0.036192480474710464, + 0.012210623361170292, + 0.025266628712415695, + -0.01906939409673214, + 0.03909757733345032, + 0.036541897803545, + -0.056353066116571426, + -0.05953871086239815, + -0.05906302109360695, + 0.01894039660692215, + 0.011015565134584904, + -0.027297871187329292, + -0.02517218142747879, + -0.030408764258027077, + 0.08223485946655273, + 0.02806347981095314, + 0.021846232935786247, + -0.051582884043455124, + -0.07640635967254639, + -0.030351122841238976, + 0.029058054089546204, + 0.01504461094737053, + 0.0055536231957376, + -3.8114713722481564e-33, + 0.03862955421209335, + 0.014782783575356007, + -0.04441755264997482, + 0.025069892406463623, + 0.06227124109864235, + 0.02479485794901848, + -0.011210968717932701, + -0.1145751029253006, + -0.13765962421894073, + 0.0550604909658432, + 0.04757799208164215, + 0.07610280066728592, + -0.04218105226755142, + 0.09284364432096481, + 0.05266205221414566, + -0.0743304193019867, + 0.04392845928668976, + -0.0303469467908144, + -0.02370086871087551, + -0.04742240533232689, + 0.0062459614127874374, + 0.028039056807756424, + -0.06008137762546539, + -0.041985634714365005, + -0.009852945804595947, + -0.027640003710985184, + -0.03947282209992409, + -0.04230288043618202, + 0.01244277786463499, + 0.020862938836216927, + 0.02680768445134163, + 0.01644177734851837, + -0.02198614738881588, + 0.01760699599981308, + -0.09704789519309998, + -0.09488070756196976, + -0.0433926023542881, + -0.07743419706821442, + -0.014636801555752754, + 0.06317335367202759, + -0.005641903728246689, + -0.0489821657538414, + 0.011390755884349346, + -0.02873540297150612, + 0.047362908720970154, + 0.13646896183490753, + 0.006451274733990431, + -0.09744621813297272, + 0.03108152002096176, + 0.012020916678011417, + -0.009644067846238613, + -0.0072568925097584724, + 0.05413652956485748, + -0.0543319508433342, + -0.021888405084609985, + -0.05644191429018974, + 0.009038825519382954, + 0.0572417676448822, + -0.04885987192392349, + -0.008653729222714901, + 0.0012494769180193543, + 0.03938440978527069, + 0.08918152749538422, + -0.03859001770615578, + 0.05133279785513878, + 0.0711582824587822, + -0.016689034178853035, + 0.06483327597379684, + -0.029730716720223427, + 0.006165338214486837, + 0.02740473672747612, + -0.03748297318816185, + 0.07499983161687851, + -0.007007736712694168, + -0.09738587588071823, + 0.03398099169135094, + 0.006440028082579374, + -0.002013587625697255, + -0.01531295571476221, + -0.025650950148701668, + -0.06902732700109482, + 0.0495443195104599, + -0.05131226032972336, + 0.0329715795814991, + 0.07208844274282455, + 0.0363374799489975, + 0.054717157036066055, + -0.00823496375232935, + -0.06734193861484528, + 0.007208927534520626, + 0.00798825267702341, + -0.017645159736275673, + 0.04224708303809166, + 0.007270445115864277, + -0.157314732670784, + 1.0347792281632132e-33, + -0.040584832429885864, + 0.022994443774223328, + 0.02979298308491707, + -0.01602352224290371, + -0.10645554959774017, + 0.07742717862129211, + 0.040642086416482925, + 0.04272729530930519, + -0.04050600156188011, + 0.001300093368627131, + 0.023273052647709846, + 0.045239031314849854, + -0.06259843707084656, + -0.061993055045604706, + 0.038679640740156174, + 0.024519916623830795, + 0.01949373260140419, + 0.09001652151346207, + -0.062429796904325485, + -0.04751640930771828, + -0.11033108830451965, + -0.018345726653933525, + -0.023136574774980545, + 0.0925762802362442, + 0.039841681718826294, + 0.07394354790449142, + 0.05846200883388519, + 0.01990453153848648, + -0.047856979072093964, + -0.06986548751592636, + -0.021231582388281822, + 0.03993271291255951, + -0.005984665360301733, + 0.04734161123633385, + 0.09463957697153091, + 0.021078389137983322, + -0.021639123558998108, + -0.02359890751540661, + -0.041987400501966476, + -0.001408069976605475, + 0.01933557167649269, + -0.01610216684639454, + -0.047372665256261826, + 0.030091043561697006, + 0.00998909305781126, + -0.027922429144382477, + -0.07577256113290787, + -0.08571262657642365, + -0.04992704838514328, + 0.10254035890102386, + 0.06129244342446327, + -0.06152798607945442, + 0.04036320000886917, + -0.0005010665627196431, + -0.044028423726558685, + -0.030417129397392273, + -0.03491877391934395, + 0.07434950023889542, + 0.0384417399764061, + 0.014639174565672874, + -0.02838752418756485, + -0.03728229179978371, + -0.0717763900756836, + 0.04214194416999817, + -0.029284287244081497, + -0.053619757294654846, + -0.05935688689351082, + 0.038102105259895325, + -0.00162681401707232, + 0.04227273166179657, + 0.021330775693058968, + 0.08229225128889084, + -0.01833738572895527, + 0.04471955820918083, + 0.006720982026308775, + 0.03347489610314369, + 0.13120630383491516, + -0.020105959847569466, + -0.05510199815034866, + 0.059240154922008514, + -0.02940971590578556, + 0.025848302990198135, + -0.08716614544391632, + 0.10913200676441193, + -0.016237489879131317, + -0.028596527874469757, + -0.03197479620575905, + 0.04934493452310562, + 0.020253051072359085, + -0.02987203374505043, + 0.00017665272753220052, + 0.08841387182474136, + 0.07062946259975433, + 0.03798314556479454, + -0.01495768316090107, + -1.640404434510856e-08, + -0.01665283553302288, + -0.04850761592388153, + 0.04966171085834503, + 0.02903284691274166, + 0.09290540218353271, + -0.026838786900043488, + -0.017203645780682564, + -0.18009139597415924, + -0.07450179010629654, + 0.005210075527429581, + -0.03132012113928795, + -0.04335872828960419, + -0.018111824989318848, + -0.01647835038602352, + 0.05670151486992836, + 0.03657928481698036, + -0.06358357518911362, + 0.05980553850531578, + -0.007184116635471582, + -0.025926383212208748, + -0.06008679047226906, + 0.025225263088941574, + 0.023517662659287453, + 0.016292164102196693, + -0.00038260172004811466, + -0.030304402112960815, + 0.021060220897197723, + -0.02361035719513893, + -1.0212583219981752e-05, + 0.055262502282857895, + -0.03034520335495472, + 0.06112711876630783, + -0.015375892631709576, + 0.03904801607131958, + 0.008930337615311146, + -0.044677428901195526, + -0.05603672191500664, + -0.008501073345541954, + -0.003097731387242675, + 0.042422812432050705, + -0.032252728939056396, + 0.019155588001012802, + -0.010424154810607433, + -0.04525664821267128, + -0.03938661143183708, + -0.003066195407882333, + 0.04078661650419235, + 0.006136230658739805, + -0.012318558059632778, + -0.05985618755221367, + -0.019408125430345535, + 0.01879175938665867, + -0.008270718157291412, + 0.05489761754870415, + -0.038081709295511246, + -0.11287122219800949, + -0.01389335561543703, + 0.10549196600914001, + 0.029162028804421425, + 0.03467538580298424, + 0.05784992873668671, + -0.030082374811172485, + 0.009889679029583931, + 0.017306510359048843 + ], + "list-bold||*updated*,hamburger menu,overflow menu,sidebar,3,ul,ol,unordered list,ordered list,checklist,lines": [ + -0.0808316022157669, + 0.009752216748893261, + -0.033817850053310394, + 0.07372528314590454, + 0.09525614976882935, + -0.03473476693034172, + 0.02631436660885811, + -0.03135111555457115, + -0.030040716752409935, + 0.055215947329998016, + -0.02837982587516308, + 0.05443941429257393, + 0.03706570714712143, + -0.09597281366586685, + 0.002636668272316456, + -0.021676426753401756, + 0.023781955242156982, + 0.020606594160199165, + -0.011135544627904892, + -0.03557837754487991, + -0.007704634219408035, + 0.04217810928821564, + 0.0004917483893223107, + 0.05352358892560005, + -0.03258620947599411, + 0.03218181058764458, + 0.05045852065086365, + -0.04029478132724762, + -0.049153026193380356, + -0.12171663343906403, + -0.04274410009384155, + -0.04039420187473297, + 0.10679145902395248, + 0.024918776005506516, + 0.03891458734869957, + -0.048451825976371765, + 0.04520208761096001, + -0.00820506364107132, + -0.06393903493881226, + 0.06045093759894371, + -0.04478921741247177, + -0.04397131875157356, + -0.00795428641140461, + 0.0003466593334451318, + -0.03164592385292053, + -0.03850316256284714, + -0.09048934280872345, + -0.06493090093135834, + 0.006896722596138716, + 0.009576883167028427, + -0.026050390675663948, + -0.07215088605880737, + -0.09649287164211273, + -0.021459707990288734, + -0.008448505774140358, + 0.019339175894856453, + -0.054048433899879456, + -0.06627146154642105, + 0.04738018661737442, + 0.01635606214404106, + 0.012334216386079788, + 0.04375392943620682, + 0.021120209246873856, + 0.012502782978117466, + 0.02176981419324875, + 0.0042550284415483475, + -0.004841288086026907, + -0.00034253462217748165, + -0.07429778575897217, + 0.042559850960969925, + 0.07394839078187943, + -0.011797485873103142, + 0.007132987957447767, + -0.0324268564581871, + -0.004891142714768648, + -0.040429286658763885, + 0.062223341315984726, + -0.03627399355173111, + -0.05873037874698639, + -0.00769682927057147, + -0.08396321535110474, + -0.03283301368355751, + -0.04182330146431923, + -0.008005425333976746, + 0.01994313858449459, + 0.03027072362601757, + -0.06744600832462311, + -0.05351879075169563, + -0.05250829458236694, + 0.00874467846006155, + -0.020511852577328682, + -0.05726122483611107, + 0.022249549627304077, + -0.0013946285471320152, + -0.043168287724256516, + 0.06671378761529922, + 0.047367531806230545, + -0.03284966200590134, + -0.091058149933815, + 0.04832461103796959, + -0.0313200019299984, + 0.061256781220436096, + 0.06389918178319931, + 0.0255197212100029, + 0.004488516598939896, + 0.027131471782922745, + 0.04581049829721451, + -0.032692380249500275, + -0.016257451847195625, + 0.026710262522101402, + 0.021832751110196114, + -0.09123337268829346, + -0.024548741057515144, + -0.14116981625556946, + -0.059061694890260696, + -0.059382885694503784, + -0.035336025059223175, + -0.03162524104118347, + 0.04045320302248001, + 0.1004868745803833, + 0.06468601524829865, + -0.0076017663814127445, + -0.026067525148391724, + -0.037530701607465744, + 0.019718963652849197, + 0.050041500478982925, + 0.04700922593474388, + -3.7598838843073588e-34, + 0.005986843723803759, + -0.029147744178771973, + -0.018811920657753944, + 0.09258869290351868, + 0.04994242638349533, + -0.004284402821213007, + -0.07121174037456512, + -0.06757913529872894, + -0.10611789673566818, + 0.03982534259557724, + 0.1392258107662201, + 0.08725588023662567, + -0.051954109221696854, + 0.09673323482275009, + 0.060969267040491104, + -0.06282290071249008, + 0.03573324903845787, + 0.01719837263226509, + -0.08311777561903, + -0.029538480564951897, + -0.06947308033704758, + -0.006805539131164551, + -0.011000605300068855, + -0.06617390364408493, + 0.0003281989193055779, + 0.022265328094363213, + -0.006243609823286533, + 0.03048798441886902, + -0.12328030914068222, + 0.003998178523033857, + 0.01905275136232376, + 0.009234169498085976, + 0.028084300458431244, + -0.01984747126698494, + -0.07413162291049957, + 0.03225983306765556, + -0.08936306089162827, + -0.03576778247952461, + 0.059750474989414215, + -0.03790959715843201, + -0.07529380172491074, + -0.046730779111385345, + -0.05801345035433769, + -0.021093644201755524, + 0.08234218508005142, + 0.12774395942687988, + -0.0210439283400774, + -0.023501981049776077, + 0.09735465049743652, + 0.021166333928704262, + 0.011228690855205059, + 0.025309445336461067, + -0.0652511864900589, + 0.008969500660896301, + -0.06458798050880432, + 0.012682994827628136, + 0.02520243637263775, + 0.0754450261592865, + 0.0636790469288826, + 0.06802071630954742, + 0.01754533313214779, + 0.054158929735422134, + -0.0011204382171854377, + -0.02328178659081459, + -0.014658681116998196, + 0.041034650057554245, + -0.027167150750756264, + 0.07168637961149216, + 0.08402558416128159, + -0.041288819164037704, + 0.008972923271358013, + -0.008501024916768074, + 0.14411808550357819, + 0.10660004615783691, + -0.04025757312774658, + 0.019756946712732315, + -0.019067320972681046, + -0.0782587081193924, + 0.01866256818175316, + -0.11113744229078293, + 0.019407212734222412, + -0.07552249729633331, + -0.01811227947473526, + 0.13745248317718506, + 0.03374628350138664, + -0.007387582678347826, + 0.005167193245142698, + 0.008044227957725525, + 0.005279709119349718, + 0.023574430495500565, + -0.0877736508846283, + 0.03494375944137573, + 0.04736065864562988, + -0.08196885883808136, + -0.11919548362493515, + -3.784895649027972e-33, + 0.0951862707734108, + 0.025433195754885674, + -0.07396496832370758, + -0.025476550683379173, + -0.023838907480239868, + 0.02508176490664482, + -0.04535286873579025, + 0.06934338063001633, + -0.006222608033567667, + 0.01740887574851513, + 0.09378577023744583, + 0.053714968264102936, + -0.0393701046705246, + -0.10978562384843826, + 0.042209796607494354, + 0.06244824826717377, + -0.014551407657563686, + 0.04461035877466202, + -0.03404520824551582, + -0.03186221793293953, + 0.013155809603631496, + -0.015475902706384659, + -0.0319574810564518, + 0.07795573025941849, + -0.0021516908891499043, + -0.04841851443052292, + 0.004656661301851273, + -0.0014056009240448475, + 0.028632696717977524, + -0.0032556778751313686, + 0.022849317640066147, + 0.016025105491280556, + 0.07807227969169617, + 0.0429353304207325, + -0.022861842066049576, + -0.024595191702246666, + 0.03664453327655792, + 0.027296556159853935, + -0.0034256575163453817, + 0.038604315370321274, + -0.002807923359796405, + 0.050912316888570786, + 0.051131684333086014, + -0.030029283836483955, + -0.05004167556762695, + 0.011137590743601322, + -0.02061931975185871, + -0.039781298488378525, + -0.026173681020736694, + 0.058561526238918304, + 0.04184092581272125, + -0.008575035259127617, + -0.019899364560842514, + 0.00941950362175703, + -0.009373682551085949, + 0.026119288057088852, + -0.046140968799591064, + 0.03762388601899147, + 0.02036796137690544, + 0.07081229239702225, + -0.021134674549102783, + 0.0775715783238411, + 0.01433152612298727, + -0.02070889063179493, + 0.07227205485105515, + -0.020329009741544724, + -0.0546734593808651, + -0.08664756268262863, + 0.0044134389609098434, + -0.01719735749065876, + 0.00678540114313364, + -0.059506967663764954, + -0.06376257538795471, + -0.032411590218544006, + 0.0033492676448076963, + -0.0703488439321518, + 0.06585908681154251, + 0.014905114658176899, + -0.028026359155774117, + 0.023149782791733742, + -0.0041459957137703896, + -0.02383083663880825, + 0.014446559362113476, + -0.0001925428514368832, + -0.05204859748482704, + 0.008976729586720467, + -0.008697666227817535, + 0.03804205730557442, + 0.055133044719696045, + 0.003997925668954849, + -0.08762463182210922, + -0.03349680081009865, + 0.06422705948352814, + -0.016918357461690903, + -0.06497695297002792, + -2.9697702075281995e-08, + -0.07962166517972946, + -0.07771603763103485, + 0.01315662357956171, + -0.0024251847062259912, + 0.05660785362124443, + -0.04342411831021309, + -0.03162292018532753, + -0.03202527388930321, + -0.008828023448586464, + -0.008445141837000847, + 0.02667912095785141, + 0.047397226095199585, + -0.06811118870973587, + 0.01640058495104313, + 0.054485537111759186, + 0.05509188026189804, + -0.07471372187137604, + 0.06431445479393005, + 0.012765645049512386, + -0.03462173417210579, + -0.059619687497615814, + 0.053485576063394547, + 0.035351675003767014, + 0.00694128405302763, + 0.0024253351148217916, + 0.021695420145988464, + -0.08522478491067886, + 0.0004917331389151514, + 0.08806147426366806, + 0.08815554529428482, + 0.02846330776810646, + 0.011452656239271164, + 0.03089556284248829, + -0.08220896869897842, + 0.0036098025739192963, + -0.05075234919786453, + -0.03528589755296707, + -0.030143294483423233, + 0.00675203837454319, + 0.07266008108854294, + -0.06608874350786209, + -0.04182252287864685, + -0.004911900497972965, + -0.01056872121989727, + -0.03587767481803894, + -0.01162104494869709, + -0.02102472260594368, + 0.011694780550897121, + -0.10735807567834854, + -0.13630680739879608, + -0.04279249906539917, + 0.03648947551846504, + 0.03732606768608093, + -0.0034871564712375402, + -0.03039887361228466, + -0.023069262504577637, + 0.0017488452140241861, + 0.09110671281814575, + 0.06367624551057816, + -0.014888533391058445, + 0.15127013623714447, + 0.027399307116866112, + 0.019270548596978188, + 0.06553281098604202 + ], + "list-bullets-bold||*updated*,ul,unordered list,bulleted list,checklist": [ + -0.02214537374675274, + 0.021152934059500694, + -0.06482963263988495, + 0.09830516576766968, + 0.11943678557872772, + -0.008100129663944244, + 0.06525105237960815, + -0.07730615884065628, + -0.04086439311504364, + 0.04182501509785652, + -0.005179832223802805, + 0.037894777953624725, + 0.00886574201285839, + -0.07429169863462448, + 0.00019741126743610948, + -0.023303743451833725, + 0.04553128778934479, + 0.03174366429448128, + -0.022376589477062225, + -0.07163066416978836, + -0.02281242422759533, + 0.02637619711458683, + 0.037102848291397095, + 0.04621628671884537, + -0.00543065182864666, + 0.03293481841683388, + 0.06212524697184563, + -0.05202088505029678, + -0.04783100262284279, + -0.1026809960603714, + -0.020310699939727783, + -0.1036817878484726, + 0.05529683828353882, + 0.03229626268148422, + 0.058905329555273056, + -0.04802996665239334, + 0.033816542476415634, + 0.0422244593501091, + -0.06900550425052643, + 0.025421755388379097, + 0.031796377152204514, + -0.09689117223024368, + -0.049292705953121185, + -0.022920096293091774, + -0.055907994508743286, + -0.007250151596963406, + -0.09005594998598099, + -0.05099889636039734, + -0.023935921490192413, + 0.03451451659202576, + -0.026838203892111778, + -0.07647870481014252, + -0.09732198715209961, + -0.016281194984912872, + 0.0008495981455780566, + -0.0031744567677378654, + -0.020856523886322975, + -0.024528272449970245, + 0.06177939474582672, + -0.07128746807575226, + 0.007252101320773363, + 0.02238437347114086, + -0.002731154439970851, + 0.005534477531909943, + 0.0009181229397654533, + 0.006073266267776489, + 0.014389156363904476, + -0.02505858801305294, + -0.059140466153621674, + 0.06622996926307678, + 0.09200301021337509, + 0.015610035508871078, + 0.030087264254689217, + -0.029247699305415154, + -0.01369941234588623, + 0.02150345779955387, + 0.06240847334265709, + -0.041236016899347305, + -0.04540587216615677, + 0.044034719467163086, + -0.05345676839351654, + -0.00015196633466985077, + -0.023791033774614334, + -0.042357854545116425, + -0.011020834557712078, + 0.0011073282221332192, + -0.06200743094086647, + -0.024050641804933548, + -0.08526954799890518, + -0.06639424711465836, + 0.010181833058595657, + -0.004151280038058758, + 0.024784013628959656, + -0.004310093820095062, + 0.0019174793269485235, + 0.06824547797441483, + 0.05463917925953865, + 0.038439296185970306, + -0.08304811269044876, + 0.04960144683718681, + -0.027288513258099556, + 0.03965238854289055, + -0.02400246076285839, + 0.009814882650971413, + 0.012834380380809307, + 0.0018697933992370963, + 0.00476620439440012, + -0.023380398750305176, + -0.043271567672491074, + 0.016090132296085358, + 0.009190449491143227, + -0.09009955823421478, + 0.010053600184619427, + -0.10460701584815979, + -0.0462871752679348, + -0.061553705483675, + -0.03492587059736252, + -0.00838721264153719, + 0.05629860237240791, + 0.08219771087169647, + 0.0909067839384079, + -0.023816945031285286, + -0.03317123278975487, + -0.015956778079271317, + 0.043933287262916565, + 0.01677381806075573, + 0.049391571432352066, + -1.7491372470624947e-33, + 0.03113352507352829, + -0.030659150332212448, + -0.016765883192420006, + 0.0630950927734375, + 0.0038201753050088882, + -0.040864359587430954, + -0.06923525035381317, + -0.07466445863246918, + -0.06860795617103577, + 0.013268211856484413, + 0.13276082277297974, + 0.08517053723335266, + -0.052626583725214005, + 0.09013006836175919, + 0.05944564566016197, + -0.04411757364869118, + 0.05296352505683899, + 0.027830028906464577, + -0.020167773589491844, + 0.0015593655407428741, + -0.0887923613190651, + -0.025294851511716843, + -0.03820134326815605, + -0.05896821245551109, + -0.05746423080563545, + 0.0404939129948616, + -0.003995744977146387, + 0.030530046671628952, + -0.10406897962093353, + 0.0027267877012491226, + 0.005437767598778009, + 0.032663967460393906, + 0.03749120980501175, + 0.00585236307233572, + -0.05363154038786888, + 0.0642656534910202, + -0.10327756404876709, + -0.03325873240828514, + 0.002149279462173581, + -0.0972069576382637, + 0.023881983011960983, + -0.022674135863780975, + -0.038184527307748795, + -0.028124870732426643, + 0.06387647986412048, + 0.10213032364845276, + -0.0965660959482193, + -0.026272928342223167, + 0.0656210258603096, + 0.005997674074023962, + 0.06864209473133087, + 0.014464856125414371, + -0.06864450126886368, + 0.011352813802659512, + -0.039049096405506134, + -0.0009960331954061985, + -0.021005036309361458, + 0.02934299036860466, + 0.07438117265701294, + 0.03560463339090347, + 0.05997052043676376, + 0.05747145041823387, + 0.03702310100197792, + -0.010749169625341892, + 0.011739956215023994, + 0.0720035582780838, + -0.050310857594013214, + 0.099721759557724, + 0.08100289851427078, + -0.016649577766656876, + -0.005297746509313583, + 0.012951090931892395, + 0.11634715646505356, + 0.07009036839008331, + -0.054417043924331665, + 0.037391286343336105, + 0.002650973154231906, + -0.07118488848209381, + 0.03732417896389961, + -0.1103273257613182, + 0.016541194170713425, + -0.03610637038946152, + -0.030787505209445953, + 0.13744866847991943, + 0.02054433710873127, + -0.05737015977501869, + -0.06919898837804794, + 0.027453185990452766, + -0.03880830109119415, + -0.02934003248810768, + -0.03994646295905113, + 0.02826657146215439, + 0.019882941618561745, + -0.04264066368341446, + -0.09399048984050751, + -2.7184480520406298e-33, + 0.14785051345825195, + 0.05213272571563721, + -0.03666159138083458, + 0.0013662100536748767, + -0.044819969683885574, + 0.039718225598335266, + -0.04359586164355278, + 0.033973634243011475, + 0.03994183614850044, + 0.060076743364334106, + 0.07100796699523926, + -0.03906929865479469, + -0.03771086037158966, + -0.08428209275007248, + 0.06499534845352173, + 0.015280934982001781, + -0.010507704690098763, + 0.01973544806241989, + -0.023392345756292343, + -0.017834719270467758, + 0.021408291533589363, + 0.03353952616453171, + -0.018632903695106506, + 0.06951989978551865, + -0.006226362194865942, + -0.0541825108230114, + -0.026250319555401802, + -0.04395051673054695, + -0.027252741158008575, + 0.014845754019916058, + 0.061171505600214005, + 0.05087895318865776, + 0.05919382721185684, + 0.047043576836586, + -0.025361135601997375, + -0.03396086022257805, + 0.03268050029873848, + 0.03581520915031433, + 0.03836378827691078, + 0.034487150609493256, + 0.018094487488269806, + 0.057354334741830826, + 0.02695322409272194, + -0.02786644734442234, + -0.0013042523059993982, + -0.030566269531846046, + 0.007092434447258711, + 0.006564090494066477, + 0.02095632627606392, + 0.06663613766431808, + 0.01780860126018524, + -4.2609819502104074e-05, + -0.0629969984292984, + -0.00015696670743636787, + -0.014369064010679722, + 0.050641320645809174, + -0.049009423702955246, + 0.002615595469251275, + 0.027645070105791092, + 0.04093938320875168, + -0.05992035195231438, + 0.04794737324118614, + 0.059698157012462616, + -0.021179810166358948, + 0.03611024096608162, + -0.005099250003695488, + -0.06762263923883438, + -0.09729370474815369, + 0.029881929978728294, + 0.004984935745596886, + 0.042353902012109756, + 0.002180374227464199, + -0.03637078404426575, + -0.028094766661524773, + 0.006283935625106096, + -0.118600994348526, + 0.06174521520733833, + 0.03309457749128342, + -0.04123253747820854, + 0.010095152072608471, + -0.036638256162405014, + -0.022990496829152107, + -0.022764693945646286, + 0.01297700684517622, + -0.07592492550611496, + 0.009178629145026207, + 0.007903479039669037, + 0.011886412277817726, + 0.046657536178827286, + -0.03471047803759575, + -0.06621219962835312, + -0.08612728118896484, + 0.08910201489925385, + -0.05028166621923447, + -0.09020962566137314, + -2.2094289064966688e-08, + -0.09601844847202301, + -0.018618622794747353, + -0.05486692860722542, + 0.033122718334198, + 0.0015051678055897355, + -0.025042563676834106, + -0.0707322284579277, + -0.06433410942554474, + -0.0026259170845150948, + -0.019892500713467598, + 0.04277956858277321, + -0.002821642206981778, + -0.04486744478344917, + -0.025852959603071213, + 0.0590047687292099, + 0.049470555037260056, + -0.06929366290569305, + 0.04114493355154991, + 0.007777845021337271, + 0.025675170123577118, + -0.03000335581600666, + 0.03367048129439354, + 0.05360909551382065, + 0.03664848208427429, + -0.00971232820302248, + 0.016278337687253952, + -0.09857761859893799, + -0.044636070728302, + 0.07958829402923584, + 0.1076873317360878, + 0.0481349341571331, + 0.009686158038675785, + 0.04577862471342087, + -0.0402834452688694, + 0.010699987411499023, + -0.06534707546234131, + 0.02003735676407814, + -0.011410141363739967, + 0.06905978918075562, + 0.10785242915153503, + -0.07479970157146454, + -0.05018771067261696, + -0.031371261924505234, + -0.0017964147264137864, + -0.05785244330763817, + 0.001239319914020598, + -0.02350729890167713, + -0.023577027022838593, + -0.1218741238117218, + -0.09382740408182144, + -0.014198397286236286, + 0.041212890297174454, + -0.0013463471550494432, + -0.045098476111888885, + 0.019265344366431236, + -0.028788689523935318, + 0.041282929480075836, + 0.06917821615934372, + 0.054618846625089645, + -0.018596507608890533, + 0.1715480536222458, + -0.04932912811636925, + 0.03131972253322601, + 0.06173107028007507 + ], + "list-checks-bold||*updated*,checklist,todo": [ + -0.004854389000684023, + 0.0058294846676290035, + -0.051870137453079224, + 0.047948066145181656, + 0.11625060439109802, + -0.053510431200265884, + 0.13925930857658386, + -0.06201107054948807, + -0.05366740748286247, + 0.04258059710264206, + -0.002301849890500307, + 0.008513696491718292, + 0.0016273465007543564, + -0.05476491153240204, + -0.01264801062643528, + 0.011319253593683243, + 0.03168274834752083, + 0.04187645763158798, + -0.02134181186556816, + -0.06437812000513077, + -0.0346451997756958, + 0.04462800547480583, + 0.04647605121135712, + 0.07163234800100327, + -0.01384192705154419, + 0.0006752681802026927, + 0.045799996703863144, + -0.05581771209836006, + -0.0797472894191742, + -0.09122131764888763, + -0.024555157870054245, + 0.0021253626327961683, + 0.09056052565574646, + 0.0001214407675433904, + 0.0784861147403717, + 0.04175563529133797, + 0.003871077438816428, + -0.01034177653491497, + 0.0029705411288887262, + 0.003911762498319149, + -0.027262818068265915, + -0.04691845923662186, + -0.06907778233289719, + -0.03422506898641586, + -0.054795119911432266, + 0.0014542918652296066, + -0.06399594247341156, + -0.04514078050851822, + 0.03602910414338112, + -0.05617184937000275, + 0.023714760318398476, + -0.06648293882608414, + -0.07305177301168442, + -0.07240884751081467, + -0.01043742150068283, + 0.026941170915961266, + -0.03617706149816513, + 0.0037161933723837137, + -0.00249603483825922, + -0.07745438069105148, + 0.036355793476104736, + 0.020728781819343567, + 0.02980152890086174, + -0.010174307972192764, + 0.021457700058817863, + 0.01704525761306286, + -0.00713267782703042, + -0.022132959216833115, + -0.01890779286623001, + 0.04608876258134842, + 0.024872874841094017, + 0.03918784484267235, + 0.061953138560056686, + -0.0684826597571373, + -0.07710783928632736, + 0.001465555396862328, + 0.09007351845502853, + -0.012464280240237713, + -0.04679803177714348, + -0.037262462079524994, + -0.11175493150949478, + -0.07439638674259186, + -0.04764916002750397, + -0.04507282376289368, + 0.04366514831781387, + -0.0079780463129282, + -0.06669838726520538, + -0.032498717308044434, + -0.037333644926548004, + -0.0570932999253273, + 0.007980328053236008, + 0.0010390368988737464, + 0.02812068536877632, + -0.01185406930744648, + -0.052062347531318665, + 0.057889316231012344, + 0.03693995252251625, + 0.06505458056926727, + -0.05304507166147232, + 0.08033168315887451, + -0.005002923775464296, + 0.06994736939668655, + -0.04168304428458214, + -0.01293360535055399, + 0.08074784278869629, + 0.023339293897151947, + -0.00017251486133318394, + 0.01662716083228588, + -0.00491385767236352, + -0.025054581463336945, + -0.009367352351546288, + -0.07640369981527328, + 0.04276873543858528, + -0.06953108310699463, + -0.04838695004582405, + -0.04111030697822571, + 0.03381209447979927, + 0.021382397040724754, + -0.030149782076478004, + 0.09494718909263611, + 0.14967165887355804, + -0.047572340816259384, + -0.038776103407144547, + -0.04855523630976677, + 0.01491814386099577, + -0.03183833137154579, + 0.03164375573396683, + -2.4506318680149263e-33, + 0.07697159051895142, + 0.027636775746941566, + 0.0202499907463789, + 0.05070047825574875, + 0.001489601912908256, + 0.0015758360968902707, + -0.052366264164447784, + -0.04899541661143303, + -0.04505933076143265, + 0.026548711583018303, + 0.11031527817249298, + 0.06169688701629639, + -0.06610099971294403, + 0.028991878032684326, + 0.029420817270874977, + -0.02369510941207409, + -0.0019043078646063805, + 0.01628679223358631, + -0.04810814559459686, + 0.03278379142284393, + -0.04478367045521736, + -0.06478729844093323, + -0.03232249245047569, + -0.046395331621170044, + -0.06240615248680115, + -0.0027349023148417473, + 0.011243474669754505, + 0.05589377135038376, + -0.08483009040355682, + 0.009540938772261143, + -0.009171349927783012, + 0.006818824447691441, + 0.07518555223941803, + 0.076725535094738, + -0.04226990044116974, + 0.014220381155610085, + -0.09610042721033096, + -0.04079882800579071, + -0.020989779382944107, + -0.03457387909293175, + 0.03341967239975929, + -0.008048221468925476, + -0.02547374926507473, + -0.04297886788845062, + 0.07623615115880966, + 0.09794087707996368, + -0.07563386857509613, + 0.01666574738919735, + 0.10816767066717148, + 0.001450171577744186, + 0.04225096479058266, + 0.03637304529547691, + -0.08544094115495682, + -0.019588463008403778, + -0.04265059530735016, + -0.04410054534673691, + 0.016165049746632576, + 0.04217890650033951, + 0.03413178026676178, + 0.04292074590921402, + 0.016536304727196693, + 0.021177014335989952, + -0.030850302428007126, + -0.02747262828052044, + -0.03957759216427803, + 0.09249034523963928, + -0.03346100449562073, + 0.08352025598287582, + 0.06436967849731445, + -0.0010891023557633162, + -0.02138342149555683, + 0.05208172649145126, + 0.061146873980760574, + 0.10668794810771942, + -0.02021859958767891, + 0.0107585359364748, + 0.008463817648589611, + -0.062292154878377914, + 0.05752703920006752, + -0.08095452934503555, + 0.04918856918811798, + -0.05897390469908714, + -0.10487082600593567, + 0.14019639790058136, + 0.043871618807315826, + 0.008474600501358509, + 0.0007773877587169409, + 0.005455034784972668, + -0.03796793892979622, + 0.046000827103853226, + -0.04903792962431908, + 0.008800585754215717, + 0.0008142513688653708, + -0.10328275710344315, + -0.06108127906918526, + -1.9215481055235535e-33, + 0.11839217692613602, + 0.011760124936699867, + -0.06585103273391724, + -0.04229187220335007, + -0.0369754433631897, + -0.006853765808045864, + -0.0545039139688015, + 0.026381840929389, + 0.053930919617414474, + -0.009822443127632141, + 0.02525213733315468, + -0.03704243525862694, + -0.012135162949562073, + -0.031314678490161896, + -0.013015003874897957, + 0.03283737972378731, + 0.006656617391854525, + -0.0024043931625783443, + -0.08750679343938828, + 0.01899748481810093, + -0.0027320575900375843, + 0.04574717953801155, + -0.015816548839211464, + 0.08624321967363358, + -0.020449310541152954, + -0.03175618499517441, + -0.04489714652299881, + -0.04274235665798187, + 0.012775937095284462, + 0.015022527426481247, + 0.016248658299446106, + 0.024517416954040527, + 0.018169881775975227, + 0.0692148506641388, + 0.025970034301280975, + -0.021230056881904602, + 0.065155528485775, + -0.0026012519374489784, + -0.004917931742966175, + 0.09033628553152084, + -0.009858216159045696, + 0.02498902752995491, + 0.04364658147096634, + -0.03577233850955963, + -0.03902614861726761, + -0.013033571653068066, + -0.035313207656145096, + 0.04604438319802284, + -0.06368129700422287, + 0.06974723935127258, + 0.05162297934293747, + -0.05777707323431969, + -0.040393199771642685, + 0.02721400372684002, + 0.021215209737420082, + 0.020700840279459953, + -0.03838365152478218, + -0.029789110645651817, + 0.007069176994264126, + 0.06152602657675743, + -0.07654859125614166, + 0.012438264675438404, + 0.013267421163618565, + 0.022769710049033165, + 0.02268248423933983, + -0.018544340506196022, + -0.029124349355697632, + -0.07027777284383774, + 0.10060688108205795, + 0.026227375492453575, + 0.04603435471653938, + -0.07369878888130188, + -0.07401321828365326, + -0.022120703011751175, + 0.016742024570703506, + -0.09512404352426529, + -0.00907750241458416, + -0.018306225538253784, + -0.0159494299441576, + 0.011230790056288242, + -0.02395092137157917, + -0.05494189262390137, + 0.039946988224983215, + -0.0010446164524182677, + -0.06237125024199486, + -0.02922023832798004, + -0.0348692424595356, + 0.009829608723521233, + 0.0086723193526268, + -0.025378543883562088, + -0.05051344633102417, + -0.04859535023570061, + 0.06448347121477127, + -0.037158746272325516, + -0.08300696313381195, + -2.110074071026702e-08, + -0.08029566705226898, + -0.06082084774971008, + -0.09171150624752045, + 0.02645312249660492, + 0.08475008606910706, + -0.04125684127211571, + -0.09565079212188721, + -0.09473809599876404, + -0.014733687043190002, + -0.03412972763180733, + 0.049107689410448074, + 0.027552984654903412, + -0.021725958213210106, + -0.04905792325735092, + 0.07630360126495361, + 0.021712932735681534, + -0.05841744318604469, + 0.0457017756998539, + -0.01701567880809307, + 0.008077910169959068, + -0.06170226261019707, + 0.045326896011829376, + -0.01991131715476513, + 0.003539411351084709, + 0.06252444535493851, + 0.006007845979183912, + -0.07394304126501083, + 0.022252097725868225, + 0.04026101157069206, + 0.11357169598340988, + 0.09001672267913818, + 0.006164113059639931, + 0.02672596275806427, + -0.0009269044385291636, + 0.006671736016869545, + -0.04671432822942734, + 0.02525816671550274, + 0.01095421239733696, + 0.04144047200679779, + 0.1666666567325592, + 0.0009508693474344909, + 0.031985681504011154, + -0.08604001253843307, + 0.034873541444540024, + -0.05921746417880058, + -0.03950915485620499, + -0.017588134855031967, + -0.04355691745877266, + -0.09309745579957962, + -0.13043072819709778, + -0.012569607235491276, + 0.03608797490596771, + 0.04441962018609047, + 0.0034205729607492685, + -0.04077260568737984, + -0.00608920119702816, + 0.06273941695690155, + 0.08195861428976059, + 0.06196020543575287, + -0.0007860533078201115, + 0.13179761171340942, + -0.03498838096857071, + 0.09425844997167587, + 0.025531472638249397 + ], + "list-dashes-bold||*updated*,ul,unordered list,dashed list,checklist": [ + -0.05341506376862526, + 0.03233139589428902, + -0.041510436683893204, + 0.06560763716697693, + 0.08584422618150711, + -0.030184511095285416, + 0.09546191990375519, + -0.06664253771305084, + -0.04386720061302185, + 0.026963282376527786, + 0.027669381350278854, + 0.037973176687955856, + 0.031643759459257126, + -0.07511328160762787, + -0.015973225235939026, + 0.015105785802006721, + 0.0453658401966095, + -0.0017655047122389078, + -0.01665661111474037, + -0.05583132430911064, + -0.047610629349946976, + 0.01834302581846714, + -0.019394516944885254, + 0.05526207759976387, + -0.00895742978900671, + 0.07600744068622589, + 0.035620324313640594, + -0.04476479813456535, + -0.058532413095235825, + -0.08359336853027344, + -0.02686399035155773, + -0.041291266679763794, + 0.08615098893642426, + -0.006671843584626913, + 0.05559095740318298, + -0.048411913216114044, + 0.040648989379405975, + 0.04232535511255264, + -0.03269781544804573, + 0.033791374415159225, + -0.0006043125176802278, + -0.09345755726099014, + -0.08075585961341858, + -0.037715353071689606, + -0.04990546405315399, + -0.021131915971636772, + -0.06696594506502151, + -0.07007358968257904, + -0.006031055003404617, + -0.023695647716522217, + -0.0021714374888688326, + -0.014881710521876812, + -0.08210291713476181, + -0.04761756211519241, + -0.02562948316335678, + 0.056899622082710266, + -0.01353725977241993, + -0.005882856901735067, + 0.04813779890537262, + -0.059000350534915924, + 0.017872100695967674, + 0.04298315569758415, + -0.004901493899524212, + -0.018791882321238518, + -0.008833959698677063, + -0.016298120841383934, + -0.01206947211176157, + -0.035572074353694916, + -0.03954453766345978, + 0.11278851330280304, + 0.05896607041358948, + 0.009146984666585922, + 0.0046815574169158936, + -0.07137730717658997, + -0.021420830860733986, + 0.047904614359140396, + 0.06391745805740356, + -0.027346599847078323, + -0.047732993960380554, + -0.046639297157526016, + -0.060311127454042435, + -0.02318723499774933, + -0.02611549198627472, + -0.019540434703230858, + 0.046804144978523254, + 0.0332731232047081, + -0.06119449809193611, + -0.020892618224024773, + -0.11224277317523956, + -0.03225240856409073, + -0.01650693267583847, + -0.06611321121454239, + 0.031708382070064545, + -0.032461073249578476, + -0.051148973405361176, + 0.05891798436641693, + 0.11670708656311035, + 0.03556838631629944, + -0.0436704084277153, + 0.06354089826345444, + -0.0022103108931332827, + 0.0324556790292263, + -0.004629000090062618, + 0.012625091709196568, + -0.004339547362178564, + 0.0017829997232183814, + -0.016342850401997566, + 0.02692491002380848, + -0.0014004455879330635, + -0.010136902332305908, + -0.004433974623680115, + -0.09675072133541107, + 0.0006785375298932195, + -0.10736111551523209, + -0.09265214949846268, + -0.03996308892965317, + -0.0658981055021286, + -0.0546589195728302, + 0.06664582341909409, + 0.1368122696876526, + 0.10741084069013596, + -0.026178231462836266, + -0.031707458198070526, + 0.009903786703944206, + 0.061926309019327164, + -0.013925299048423767, + 0.044110964983701706, + -1.7777750445134103e-33, + 0.019016824662685394, + 0.013411316089332104, + -0.002843228867277503, + 0.020147889852523804, + -0.017596639692783356, + -0.005030044354498386, + -0.0841456726193428, + -0.05976923927664757, + -0.07035514712333679, + 0.030786218121647835, + 0.12964999675750732, + 0.12701676785945892, + -0.014339393936097622, + 0.05875225365161896, + 0.01620226725935936, + 0.019502107053995132, + 0.0500948540866375, + -0.01989714242517948, + -0.06621099263429642, + -0.017040016129612923, + -0.05500536412000656, + 0.009030362591147423, + -0.031128518283367157, + -0.08109124004840851, + -0.04051966220140457, + -0.025017425417900085, + 0.0037042212206870317, + 0.007910259068012238, + -0.08154548704624176, + 0.027986112982034683, + -0.007045908365398645, + 0.028986694291234016, + 0.10254285484552383, + 0.004528549965471029, + -0.0406416654586792, + 0.07653910666704178, + -0.10027360171079636, + -0.05931045487523079, + -0.013056959956884384, + -0.059610214084386826, + 0.02704456076025963, + -0.024048609659075737, + -0.04842899739742279, + 0.0188714861869812, + 0.09655853360891342, + 0.1098075732588768, + -0.044349122792482376, + 0.0010175291681662202, + 0.03557571768760681, + 0.029338736087083817, + 0.02324317954480648, + 0.03641258552670479, + -0.07483435422182083, + 0.006020198110491037, + -0.03481516242027283, + -0.027256175875663757, + 0.021144187077879906, + 0.04682609438896179, + 0.04357283189892769, + 0.0514494851231575, + 0.039522815495729446, + 0.06326829642057419, + -0.028792833909392357, + -0.05778650566935539, + 0.0006702832761220634, + 0.07732274383306503, + -0.06095344200730324, + 0.07783374935388565, + 0.046345945447683334, + 0.00021205861412454396, + -0.02228989265859127, + 0.03684994950890541, + 0.13533489406108856, + 0.1211942806839943, + -0.05573204904794693, + 0.010172870941460133, + 0.014887689612805843, + -0.05724633112549782, + 0.029935354366898537, + -0.09706458449363708, + 0.03575633466243744, + -0.038994062691926956, + -0.028015144169330597, + 0.11440449953079224, + 0.013708941638469696, + -0.05116862803697586, + -0.020568400621414185, + 0.04854508861899376, + -0.08892761915922165, + -0.025412501767277718, + -0.041722048074007034, + 0.03296402469277382, + 0.004704671911895275, + -0.04936566203832626, + -0.10037019848823547, + -2.8030307480540475e-33, + 0.12578389048576355, + 0.06875016540288925, + -0.055389631539583206, + -0.0010520713403820992, + -0.0413094088435173, + 0.05189811810851097, + 0.003324029501527548, + 0.018826870247721672, + 0.009469044394791126, + 0.03082204982638359, + 0.06934437155723572, + 0.0009711240418255329, + 0.0004701470024883747, + -0.07731787860393524, + 0.01879582554101944, + 0.03410713002085686, + -0.026098707690835, + 0.01256545353680849, + -0.0498557910323143, + 0.012048598378896713, + -0.03707502409815788, + 0.03966454789042473, + 0.016353312879800797, + 0.08493831008672714, + 0.001570998691022396, + -0.06599338352680206, + 0.02954782173037529, + -0.061624206602573395, + 0.004499526694417, + 0.02384621649980545, + 0.011669675819575787, + 0.019250402227044106, + 0.04011063277721405, + 0.05827905982732773, + -0.030093489214777946, + -0.007634359411895275, + 0.0066380733624100685, + 0.04936419427394867, + -0.006547991652041674, + 0.04159463196992874, + -0.021692398935556412, + -0.0031320785637944937, + 0.08317658305168152, + -0.015276833437383175, + 0.016442369669675827, + -0.008212054148316383, + -0.03253733366727829, + 0.05435851588845253, + -0.03137598931789398, + 0.06412432342767715, + 0.057117123156785965, + -0.02022763155400753, + -0.03263642266392708, + 0.022560011595487595, + 0.040458109229803085, + 0.005346323829144239, + -0.03342210501432419, + -0.007516855839639902, + -0.005893435794860125, + 0.07334394007921219, + -0.058794546872377396, + 0.05481104925274849, + 0.056624144315719604, + 0.01587810553610325, + 0.01295381411910057, + -0.05629711225628853, + -0.09000623226165771, + -0.11090680211782455, + 0.04992077127099037, + -0.034069936722517014, + 0.02106800116598606, + -0.026779780164361, + -0.0756475105881691, + -0.04866034910082817, + 0.003265110310167074, + -0.0835304856300354, + 0.052718549966812134, + 0.034301672130823135, + -0.023857003077864647, + 0.038532186299562454, + -0.07627815753221512, + -0.043832745403051376, + 0.007579359691590071, + 0.027890894562005997, + -0.08999358117580414, + 0.010538634844124317, + -0.03674057126045227, + 0.06745132058858871, + 0.0662321075797081, + -0.048216935247182846, + -0.046432651579380035, + -0.04622143507003784, + 0.05605904757976532, + -0.0529240146279335, + -0.07708372920751572, + -2.2481287942355266e-08, + -0.059219397604465485, + -0.04369281232357025, + -0.030752427875995636, + 0.03937945142388344, + 0.04578451067209244, + -0.018231553956866264, + -0.02633044682443142, + -0.07580072432756424, + -0.01438440103083849, + -0.024102289229631424, + 0.035585034638643265, + 0.009893221780657768, + -0.07253727316856384, + -0.006002416368573904, + 0.04340013489127159, + 0.07937867194414139, + -0.013450122438371181, + 0.05600358173251152, + 0.017860861495137215, + 0.02361082099378109, + -0.08081504702568054, + 0.04117667302489281, + 0.032643839716911316, + 0.016144637018442154, + 0.016138335689902306, + -0.01490560919046402, + -0.07860177755355835, + -0.06014983355998993, + 0.05540298670530319, + 0.07487614452838898, + 0.02844853699207306, + -0.009536194615066051, + 0.024378636851906776, + -0.0652332752943039, + 0.021716970950365067, + -0.0660628229379654, + -0.02838393673300743, + 0.030584266409277916, + 0.06194421276450157, + 0.09439996629953384, + -0.048035573214292526, + 0.013042925857007504, + -0.030475007370114326, + 0.01414749026298523, + -0.009832707233726978, + 0.004747016355395317, + 0.014263988472521305, + -0.025192100554704666, + -0.10065176337957382, + -0.1544790267944336, + -0.02050245925784111, + 0.004885478876531124, + 0.007227616850286722, + -0.05400766432285309, + -0.01161671057343483, + -0.013692307285964489, + 0.05457876995205879, + 0.02956128679215908, + 0.059295300394296646, + -0.003224871354177594, + 0.15602418780326843, + -0.03897335007786751, + 0.003465916495770216, + 0.06634391099214554 + ], + "list-heart-bold||*new*,favorites,wishlist,liked": [ + -0.03485126793384552, + 0.0150475287809968, + -0.0016818956937640905, + 0.04979463294148445, + 0.09044529497623444, + -0.0013060654746368527, + 0.05809624493122101, + -0.05265374109148979, + 0.03386097773909569, + 0.0010975843761116266, + -0.03125639632344246, + 0.027437787503004074, + 0.02621721476316452, + -0.030223822221159935, + 0.024323316290974617, + 0.05397168546915054, + -0.022336838766932487, + -0.016283173114061356, + -0.01838615909218788, + -0.0424199253320694, + -0.01748495176434517, + 0.040858011692762375, + -0.030779879540205002, + 0.023566560819745064, + 0.011381980963051319, + 0.026568718254566193, + 0.04091348499059677, + -0.05433003604412079, + -0.02449175901710987, + -0.03647470474243164, + 0.035917285829782486, + -0.022284530103206635, + 0.10698335617780685, + 0.0508253239095211, + 0.03680608794093132, + 0.0037549766711890697, + -0.06672963500022888, + -0.0060876947827637196, + -0.02165284752845764, + 0.011217841878533363, + 0.017264902591705322, + -0.05035768076777458, + -0.019277026876807213, + 0.027089929208159447, + -0.08189384639263153, + -0.017359204590320587, + -0.008801756426692009, + -0.07817979902029037, + 0.030139412730932236, + 0.032683245837688446, + -0.02735467441380024, + -0.09366673231124878, + -0.1391778588294983, + -0.04340801388025284, + 0.06819697469472885, + 0.016782265156507492, + -0.0979582667350769, + -0.06913979351520538, + -0.0027020347770303488, + -0.04090654477477074, + 0.04474833607673645, + -0.02454073168337345, + 0.08707030117511749, + -0.03488517180085182, + -0.01375390775501728, + -0.08475769311189651, + -0.039161648601293564, + 0.047896724194288254, + -0.019703006371855736, + 0.031766027212142944, + 0.06011169031262398, + 0.03555656969547272, + -0.013822851702570915, + -0.031103532761335373, + -0.0011577475816011429, + 0.026062648743391037, + 0.014714853838086128, + -0.054892122745513916, + -0.07495252788066864, + 0.032399650663137436, + -0.10206617414951324, + -0.07756075263023376, + -0.06031520664691925, + -0.05348563939332962, + 0.021784987300634384, + 0.022741055116057396, + -0.07944664359092712, + -0.0573187917470932, + -0.08256876468658447, + -0.01551057118922472, + -0.05748644471168518, + -0.006307664327323437, + -0.007136405911296606, + 0.010725659318268299, + -0.05627148598432541, + 0.1034659668803215, + 0.0325491763651371, + -0.07548172771930695, + -0.0931888297200203, + 0.07445496320724487, + 0.01775360479950905, + 0.045257214456796646, + -0.0074238465167582035, + 0.018251167610287666, + 0.05659966543316841, + 0.00214606081135571, + -0.028190338984131813, + 0.011953074485063553, + -0.045834947377443314, + -0.025815198197960854, + -0.046652961522340775, + -0.03804149106144905, + 0.021723581477999687, + -0.08768830448389053, + -0.06446673721075058, + -0.03239716589450836, + 0.022315314039587975, + 0.023125028237700462, + 0.08189695328474045, + 0.16391634941101074, + 0.13069087266921997, + -0.03094816394150257, + 0.005060034804046154, + -0.045938119292259216, + -0.10306724905967712, + 0.03241081163287163, + 0.004569136071950197, + -3.121494254128631e-36, + 0.040753062814474106, + 0.03463416546583176, + -0.032980579882860184, + 0.03464987874031067, + 0.0071468111127614975, + 0.0001799119490897283, + -0.044404156506061554, + -0.0290224589407444, + -0.0821717381477356, + -0.04079946130514145, + 0.08105000853538513, + 0.07601167261600494, + -0.031536247581243515, + 0.09863448143005371, + -0.014143526554107666, + -0.08284737914800644, + -0.02854016236960888, + -0.015337076969444752, + -0.03112923353910446, + -0.05313415080308914, + -0.10311459004878998, + 0.07278645038604736, + -0.0163651742041111, + -0.04515942558646202, + -0.06536050885915756, + -0.04995584487915039, + 0.05438528582453728, + -0.005210265051573515, + -0.04383482038974762, + 0.01054455991834402, + 0.04691446200013161, + -0.02739362046122551, + 0.055932726711034775, + 0.0060364678502082825, + -0.022632889449596405, + 0.10136224329471588, + -0.0593046210706234, + 0.010936863720417023, + 0.011556750163435936, + 0.01567714847624302, + 0.040907010436058044, + -0.0038497664500027895, + -0.058129895478487015, + -0.038215868175029755, + -0.010765242390334606, + 0.11793097108602524, + 0.008424191735684872, + 0.02455117739737034, + 0.03540750592947006, + -0.04506047070026398, + 0.0488637313246727, + -0.06205132603645325, + -0.10150882601737976, + 0.06733337044715881, + -0.08016324043273926, + -0.02717951498925686, + 0.01012706384062767, + 0.08933452516794205, + 0.09240242838859558, + -0.049041297286748886, + 0.005762889981269836, + 0.009816543199121952, + 0.07945915311574936, + -0.08290824294090271, + -0.0043015494011342525, + 0.09309135377407074, + -2.3782666175975464e-05, + 0.03849100321531296, + 0.0024388583842664957, + 0.03402385488152504, + 0.0349552221596241, + 0.06785247474908829, + 0.018724093213677406, + -0.037757109850645065, + -0.06820616871118546, + 0.0018084055045619607, + -0.021519042551517487, + -0.027542434632778168, + 0.05405210331082344, + -0.0984944999217987, + -0.004494032356888056, + -0.024415018036961555, + -0.06229788810014725, + 0.10896551609039307, + 0.04393230751156807, + -0.004705280531197786, + 0.020151615142822266, + -0.07992293685674667, + -0.0454871840775013, + 0.00032440232462249696, + -0.03733457997441292, + 0.034793417900800705, + 0.039672575891017914, + -0.06471191346645355, + -0.09603013098239899, + -2.3013433507765265e-33, + 0.07746189832687378, + 0.01547093503177166, + -0.01393035426735878, + -0.013923444785177708, + 0.04145818203687668, + 0.00423420500010252, + -0.03606009855866432, + 0.049402255564928055, + 0.0359341986477375, + 0.03394380956888199, + 0.006465710233896971, + -0.07583477348089218, + -0.013870631344616413, + -0.029557885602116585, + 0.0408075712621212, + 0.045512404292821884, + 0.0012566362274810672, + 0.05915399640798569, + -0.057703930884599686, + -0.028574027121067047, + -0.07676998525857925, + -0.0010581623064354062, + -0.07636617124080658, + 0.06806886196136475, + -0.023066673427820206, + -0.036952223628759384, + 0.027297381311655045, + -0.037063878029584885, + -0.04216396436095238, + -0.08899708092212677, + 0.04938099533319473, + -0.004898165352642536, + -0.06155611202120781, + 0.09183300286531448, + 0.010232833214104176, + 0.03353901579976082, + -0.05019703134894371, + 0.02210512012243271, + -0.016547713428735733, + 0.06061598286032677, + -0.023343544453382492, + -0.002269966062158346, + 0.0012115002609789371, + 0.003135666251182556, + -0.034845348447561264, + -0.0007141659152694046, + 0.013235370628535748, + -0.003986573312431574, + 0.03355758637189865, + 0.08738864213228226, + 0.0481022484600544, + 0.009896245785057545, + -0.007568282540887594, + 0.04073547199368477, + -0.009027319960296154, + 0.03308425098657608, + 0.004364572931081057, + 0.06372472643852234, + 0.04105758294463158, + -0.004374268930405378, + -0.05985623598098755, + -0.0262763649225235, + -0.0026414559688419104, + -0.038393158465623856, + 0.0407097302377224, + -0.047612741589546204, + -0.003762500360608101, + -0.05758772790431976, + -0.041047245264053345, + -0.02500598318874836, + 0.009366046637296677, + 0.008837787434458733, + -0.07050846517086029, + -0.02158825471997261, + 0.02133934199810028, + -0.0789688229560852, + 0.01435000728815794, + -0.028308292850852013, + -0.005840400233864784, + 0.04515120014548302, + -0.031607892364263535, + 0.05750751867890358, + -0.026886317878961563, + -0.059551626443862915, + -0.018381591886281967, + 0.01640736497938633, + -0.019659873098134995, + 0.08618364483118057, + -0.019991302862763405, + -0.011475934647023678, + 0.0007805963978171349, + 0.02834673412144184, + 0.04876426234841347, + -0.0023712851107120514, + -0.016422146931290627, + -2.020291489657211e-08, + -0.11790208518505096, + -0.11887294799089432, + -0.05777394399046898, + 0.061675649136304855, + 0.004445891827344894, + 0.014318292960524559, + -0.04681450128555298, + -0.054724253714084625, + -0.008938358165323734, + -0.0165973212569952, + 0.07880376279354095, + 0.04527635872364044, + -0.06706541776657104, + -0.03840576112270355, + 0.05616701394319534, + 0.008327433839440346, + 0.007204574532806873, + 0.051881223917007446, + 0.031414322555065155, + -0.02489861659705639, + 0.00047961805830709636, + 0.03344736248254776, + 0.0681295171380043, + -0.06303482502698898, + 0.04587544500827789, + 0.02659764140844345, + -0.03928966447710991, + -0.025875819846987724, + 0.003897028509527445, + 0.1631200909614563, + 0.07648534327745438, + 0.003163898829370737, + 0.04142182320356369, + -0.04370126873254776, + 0.007289922330528498, + -0.0012008099583908916, + -0.04270987585186958, + -0.048873040825128555, + 0.004816601984202862, + 0.0967896580696106, + 0.10625288635492325, + 0.03688574954867363, + -0.0005529984482564032, + 0.0037499757017940283, + -0.09529654681682587, + -0.044758327305316925, + 0.09549475461244583, + -0.0589270293712616, + 0.009253756143152714, + -0.08709192276000977, + 0.0035860210191458464, + 0.00986984558403492, + 0.02484939433634281, + -0.00036312732845544815, + -0.02136857993900776, + 0.02261495403945446, + 0.03795980289578438, + 0.1051379069685936, + 0.03811686486005783, + -0.018679264932870865, + 0.15486487746238708, + 0.05205428600311279, + 0.0156384389847517, + 0.10514440387487411 + ], + "list-magnifying-glass-bold||search,find,locate,query,inspect": [ + 0.01810624822974205, + 0.031567420810461044, + -0.04072914645075798, + 0.07275379449129105, + 0.07473107427358627, + -0.028848912566900253, + 0.11415701359510422, + -0.0096817621961236, + -0.06648745387792587, + 0.0014611374353989959, + -0.004459285642951727, + 0.035679690539836884, + 0.07570217549800873, + 0.0009294321644119918, + -0.06560908257961273, + 0.008586875163018703, + -0.034451842308044434, + 0.04461090266704559, + 0.019530555233359337, + -0.01621084474027157, + 0.07946498692035675, + 0.0384863018989563, + 0.05164295434951782, + -0.013029908761382103, + 0.04499002546072006, + 0.033943090587854385, + -0.03752635791897774, + -0.06789106130599976, + -0.008425572887063026, + -0.08949558436870575, + -0.0339491032063961, + 0.024213304743170738, + 0.12739546597003937, + 0.0435788668692112, + 0.05390872806310654, + 0.027732782065868378, + -0.03785029798746109, + 0.0041932398453354836, + 0.01250759232789278, + -0.016276337206363678, + -0.04535841569304466, + -0.03540336713194847, + -0.017446408048272133, + -0.0028315496165305376, + -0.0013449449324980378, + -0.03288763388991356, + -0.01557895727455616, + -0.0360720194876194, + 0.051040541380643845, + -0.04976166412234306, + -0.13527992367744446, + -0.066116102039814, + -0.1678869128227234, + -0.016227537766098976, + 0.027089113369584084, + 0.04967136308550835, + -0.043759535998106, + -0.07043099403381348, + 0.06591132283210754, + 0.003662602975964546, + 0.026302065700292587, + 0.06466233730316162, + 0.026540333405137062, + 0.07059680670499802, + 0.0383918434381485, + 0.004837518557906151, + 0.07086846232414246, + -0.05003417655825615, + 0.04484601318836212, + -0.07046930491924286, + 0.042128968983888626, + 0.026988917961716652, + -0.016873449087142944, + 0.027851972728967667, + -0.009453924372792244, + 0.053941503167152405, + 0.053430356085300446, + -0.0354321226477623, + -0.06179644167423248, + 0.011006666347384453, + -0.062014997005462646, + -0.033073123544454575, + 0.01066090352833271, + 0.07592470198869705, + 0.041293900460004807, + -0.014742373488843441, + -0.037930138409137726, + -0.09311765432357788, + 0.048492878675460815, + -0.056178562343120575, + -0.03216366842389107, + -0.05939577892422676, + -0.08382239192724228, + -0.010621887631714344, + -0.0633343905210495, + -0.005096990615129471, + 0.05884908139705658, + 0.008255627006292343, + -0.08989988267421722, + 0.02739025093615055, + 0.02131672017276287, + 0.02481866255402565, + 0.04112650826573372, + -0.022925956174731255, + -0.08420208096504211, + 0.02297760359942913, + 0.020307498052716255, + -0.03434287756681442, + 0.035389307886362076, + -0.043364692479372025, + -0.016029493883252144, + -0.05475211516022682, + -0.036712922155857086, + -0.1309354156255722, + 0.027927163988351822, + -0.041113026440143585, + 0.01756753772497177, + -0.042541079223155975, + 0.05698903277516365, + 0.05308368057012558, + 0.06204163655638695, + -0.014705254696309566, + -0.06288521736860275, + -0.07073517888784409, + 0.02627994492650032, + 0.08835892379283905, + -0.0565890371799469, + -1.4727265462933494e-33, + 0.09355129301548004, + -0.003582311561331153, + 0.014678084291517735, + 0.06046448275446892, + -0.003325532888993621, + 0.05041942000389099, + -0.02395481988787651, + 0.020885735750198364, + -0.09317812323570251, + 0.03671461343765259, + 0.10938911139965057, + 0.06984302401542664, + -0.03071490302681923, + 0.005944416858255863, + 0.06204355135560036, + -0.01671292446553707, + 0.02086552418768406, + 0.06339582055807114, + -0.13809791207313538, + -0.04418346285820007, + -0.07071776688098907, + 0.004553033970296383, + -0.039228666573762894, + 0.03704829514026642, + 0.017413631081581116, + 0.00592007115483284, + 0.021492304280400276, + -0.03153439238667488, + -0.0755557119846344, + 0.039785031229257584, + 0.0006230164435692132, + 0.015484828501939774, + -0.008240032941102982, + 0.041354935616254807, + -0.017379004508256912, + 0.03741496801376343, + -0.053300682455301285, + -0.007466290146112442, + 0.06364269554615021, + -0.0020831674337387085, + -0.07765012979507446, + -0.026770809665322304, + 0.03266633301973343, + -0.04988671839237213, + 0.03410546854138374, + 0.05234692618250847, + -0.1401885747909546, + 0.02144157886505127, + -0.030813150107860565, + 0.02819642797112465, + 0.025146424770355225, + 0.04252482205629349, + -0.04484527185559273, + 0.009147405624389648, + -0.0027553471736609936, + 0.05684848874807358, + 0.025514444336295128, + 0.07892600446939468, + 0.04960928484797478, + -0.0025688004679977894, + 0.04469338059425354, + -0.017631826922297478, + -0.007629738189280033, + 0.025917312130331993, + 0.011774883605539799, + 0.03476570174098015, + -0.032192181795835495, + 0.039803266525268555, + 0.034429315477609634, + 0.03665146976709366, + -0.002622043015435338, + 0.03343980386853218, + 0.09070564061403275, + 0.05285372585058212, + -0.007421079091727734, + -0.052661068737506866, + 0.02064860798418522, + -0.10254699736833572, + 0.037912629544734955, + -0.07969610393047333, + -0.02804163284599781, + -0.07277059555053711, + -0.030418360605835915, + 0.042604509741067886, + -0.03797334432601929, + -0.049368567764759064, + 0.012522395700216293, + -0.08302231878042221, + -0.0009523056796751916, + -0.023902058601379395, + -0.019196491688489914, + 0.0332086905837059, + -0.05438033863902092, + -0.08587513118982315, + -0.13353699445724487, + -5.412992610128281e-34, + 0.11501988768577576, + -0.07337531447410583, + -0.011557113379240036, + -0.04019511118531227, + -0.03509608656167984, + -0.0034513112623244524, + 0.02574777603149414, + -0.009702231734991074, + 0.03589918091893196, + -0.01552573312073946, + 0.039695315062999725, + 0.004820355214178562, + -0.07627831399440765, + -0.1068347841501236, + -0.054679907858371735, + 0.10049886256456375, + 0.06922940164804459, + 0.010419444181025028, + -0.06916583329439163, + 0.07288070768117905, + -0.0467885322868824, + 0.02656867913901806, + -0.06424680352210999, + 0.04228873923420906, + -0.038939230144023895, + -0.03443750739097595, + 0.040605299174785614, + -0.05898291990160942, + -0.02865201234817505, + 0.018881987780332565, + 0.005730872508138418, + 0.011120808310806751, + 0.02764841541647911, + 0.07130738347768784, + -0.09979637712240219, + 0.047711193561553955, + 0.047480374574661255, + -0.08097135275602341, + -0.018713273108005524, + 0.033715132623910904, + 0.020381562411785126, + 0.035895273089408875, + 0.022215312346816063, + -0.016017036512494087, + -0.039393339306116104, + -0.04871685430407524, + -0.077363982796669, + 0.045859213918447495, + 0.028974207118153572, + 0.06451258063316345, + 0.05151795595884323, + -0.031284037977457047, + -0.0501212477684021, + -0.02351417951285839, + -0.07329834997653961, + -0.005518734455108643, + -0.020563781261444092, + 0.05781594663858414, + -0.000947454827837646, + 0.031215714290738106, + -0.031323131173849106, + 0.06992591172456741, + -0.04522352293133736, + 0.025917474180459976, + -0.0028320334386080503, + -0.005441876593977213, + -0.04697457328438759, + 0.012694958597421646, + -0.011949477717280388, + -0.03570683300495148, + 0.05810363218188286, + -0.03940817341208458, + 0.004653192590922117, + 0.02398601360619068, + 0.0300669576972723, + -0.03668491542339325, + 0.007988967932760715, + 0.04318234696984291, + -0.04948299005627632, + 0.018451077863574028, + 0.04946751892566681, + 0.02966504730284214, + 0.054643552750349045, + 0.040875691920518875, + -0.06068730354309082, + 0.001890997402369976, + -0.02107889950275421, + 0.09215889871120453, + -0.050640977919101715, + -0.10136323422193527, + -0.07955529540777206, + -0.05034900829195976, + 0.02227875404059887, + 0.006244117394089699, + 0.008002707734704018, + -2.0523200916500173e-08, + -0.07324099540710449, + -0.003760396735742688, + -0.014098208397626877, + -0.024959947913885117, + 0.06745944172143936, + 0.006474439520388842, + -0.01976964809000492, + 0.08674726635217667, + -0.010808644816279411, + -0.053182732313871384, + 0.05407334864139557, + 0.01942697912454605, + -0.014639484696090221, + -0.04039414972066879, + 0.1249648779630661, + -0.012240405194461346, + 0.013302098028361797, + 0.027482924982905388, + -0.05292690545320511, + -0.02881569042801857, + -0.01863742060959339, + 0.020999742671847343, + 0.0524260513484478, + 0.06550240516662598, + -0.007455224636942148, + 0.051679085940122604, + -0.1367897391319275, + 0.024349447339773178, + 0.07229096442461014, + 0.1393200159072876, + 0.0419175960123539, + 0.05076773464679718, + 0.007715188432484865, + 0.014004562050104141, + 0.012773094698786736, + -0.01760135591030121, + -0.061125319451093674, + -0.040136732161045074, + -0.055843450129032135, + 0.0830400362610817, + 0.0041141631081700325, + -0.07705749571323395, + -0.003258742159232497, + 0.04072786867618561, + -0.06819149851799011, + -0.01162508875131607, + 0.05628234148025513, + -0.07211708277463913, + -0.0066763111390173435, + -0.06333731859922409, + 0.03966763988137245, + 0.017634255811572075, + 0.03497309237718582, + 0.03273104503750801, + -0.04304061084985733, + -0.02897513285279274, + 0.10473756492137909, + 0.06215666979551315, + -0.036352746188640594, + 0.009684053249657154, + 0.09611589461565018, + 0.005885427817702293, + 0.017073489725589752, + 0.05780639499425888 + ], + "list-numbers-bold||*updated*,ol,ordered list,numbered list,checklist": [ + -0.024519408121705055, + -0.01280423253774643, + -0.048975322395563126, + 0.0600908063352108, + 0.09341204911470413, + -0.010448729619383812, + 0.07825469970703125, + -0.046961139887571335, + -0.002863015281036496, + 0.006603815592825413, + -0.015284653753042221, + 0.07742574065923691, + 0.0011944430880248547, + -0.08007964491844177, + -0.018043380230665207, + -0.008695026859641075, + 0.014837786555290222, + -0.00016272086941171438, + 0.004900757223367691, + -0.03379811346530914, + -0.01390543207526207, + 0.07499244064092636, + 0.023812519386410713, + 0.0544612742960453, + 0.009481973014771938, + -0.04935920611023903, + 0.02940400317311287, + 0.008638064377009869, + 0.000276491540716961, + -0.10254338383674622, + -0.05282188951969147, + -0.03410765156149864, + 0.1048620417714119, + -0.007048866245895624, + 0.06309335678815842, + -0.037513963878154755, + 0.021888144314289093, + -0.0213350597769022, + -0.05481242388486862, + 0.07911059260368347, + 0.0025757031980901957, + -0.06605283915996552, + -0.02306509204208851, + -0.05105375498533249, + -0.026815196499228477, + 0.00672628078609705, + -0.06655845791101456, + -0.036626216024160385, + -0.0031916890293359756, + -0.03318499028682709, + -0.010731307789683342, + -0.05751442164182663, + -0.11911419034004211, + -0.027680469676852226, + -0.012787560001015663, + 0.006460125092417002, + -0.03921263664960861, + -0.0581568218767643, + 0.019870860502123833, + -0.03874751180410385, + 0.02847309596836567, + 0.021984128281474113, + 0.0457540862262249, + -0.03783714771270752, + -0.0010954951867461205, + 0.027473920956254005, + -0.012102458626031876, + -0.027066871523857117, + -0.036299269646406174, + 0.06359658390283585, + 0.031882841140031815, + 0.04335279390215874, + 0.08338966220617294, + -0.05999135226011276, + -0.061796244233846664, + 0.030893467366695404, + 0.09267035126686096, + -0.05447690933942795, + -0.026963485404849052, + 0.003328077495098114, + -0.0778886079788208, + -0.08883952349424362, + -0.04893350973725319, + -0.010656874626874924, + 0.00989850889891386, + -0.015645351260900497, + 1.5682140656281263e-05, + -0.008686496876180172, + -0.0867520272731781, + -0.024245673790574074, + -0.0017017633654177189, + 0.0199267640709877, + 0.027802126482129097, + 0.006340679246932268, + -0.03816251456737518, + 0.07356341928243637, + 0.07946409285068512, + 0.06413495540618896, + -0.08422302454710007, + 0.038163624703884125, + -0.023685095831751823, + 0.042945824563503265, + -0.03833732753992081, + 0.006752758752554655, + 0.022705521434545517, + 0.03991922363638878, + 0.06254129111766815, + -0.02478707768023014, + -0.010695895180106163, + -0.009692532941699028, + 0.006113741546869278, + -0.10794556140899658, + 0.02060629054903984, + -0.11312667280435562, + -0.06672853231430054, + -0.07619811594486237, + -0.004689889494329691, + -0.013518002815544605, + 0.03231408819556236, + 0.04892471060156822, + 0.11867161095142365, + -0.033407218754291534, + -0.0017007332062348723, + -0.023099660873413086, + -0.026999101042747498, + 0.03041209653019905, + 0.044755544513463974, + -1.986240335095104e-33, + 0.03757840394973755, + -0.0011932109482586384, + 0.054845742881298065, + 0.04160861298441887, + 0.024337908253073692, + -0.018277708441019058, + -0.036324214190244675, + -0.06861104816198349, + -0.07172313332557678, + 0.0464511439204216, + 0.0875726267695427, + 0.105308398604393, + -0.014877909794449806, + 0.05074154585599899, + 0.027662720531225204, + -0.05606858804821968, + 0.060357727110385895, + 0.012832947075366974, + -0.05245932191610336, + -0.02849740907549858, + -0.055038683116436005, + -0.06328700482845306, + -0.05467074364423752, + -0.05265067145228386, + -0.02955501154065132, + 0.008576634339988232, + -0.03606506064534187, + 0.04279356449842453, + -0.0712122917175293, + 0.002378955017775297, + 0.019481996074318886, + 0.031123925000429153, + 0.029830889776349068, + 0.020151877775788307, + -0.026912299916148186, + 0.030857674777507782, + -0.06105170026421547, + -0.01764489710330963, + 0.06258711963891983, + -0.056001272052526474, + 0.02453715167939663, + 0.0014570034109055996, + -0.021111179143190384, + 0.0006206926191225648, + 0.06900297850370407, + 0.11086604744195938, + -0.03744778037071228, + 0.06401950865983963, + 0.10797753185033798, + 0.011473159305751324, + -0.01312985923141241, + 0.011841920204460621, + -0.10671581327915192, + -0.01442629098892212, + -0.05295310914516449, + -0.06877114623785019, + 0.05072486028075218, + 0.050907526165246964, + 0.033960774540901184, + 0.059906963258981705, + -0.030422670766711235, + 0.06923478096723557, + -0.0052691977471113205, + -0.044884808361530304, + -0.051487889140844345, + 0.10067544132471085, + -0.03486523777246475, + 0.07319813221693039, + 0.07212912291288376, + -0.0038793638814240694, + -0.0018632112769410014, + 0.04588664323091507, + 0.07196404039859772, + 0.067405104637146, + -0.03888291120529175, + 0.047917261719703674, + 0.03467598930001259, + -0.09435881674289703, + 0.015261088497936726, + -0.07061930000782013, + 0.06663604080677032, + -0.025968633592128754, + -0.053253814578056335, + 0.1457442194223404, + 0.021711714565753937, + 0.006688939407467842, + -0.013941442593932152, + 0.05376366525888443, + 0.004246634431183338, + 0.03820061683654785, + -0.023843396455049515, + -0.023036934435367584, + 0.009927944280207157, + -0.07521993666887283, + -0.12060634046792984, + -1.924762347889083e-33, + 0.08200915902853012, + 0.048009876161813736, + -0.0491417795419693, + -0.03721135854721069, + -0.038169052451848984, + -0.012298141606152058, + -0.028989406302571297, + 0.035412296652793884, + 0.04032575711607933, + -0.0011975315865129232, + 0.07727017253637314, + -0.006412617862224579, + -0.012278939597308636, + -0.07109083980321884, + 0.003236462827771902, + -0.02170071005821228, + -0.06585134565830231, + 0.00017952478083316237, + -0.05709633603692055, + -0.03445563092827797, + 0.018551452085375786, + 0.06957904249429703, + -0.05147619545459747, + 0.09390581399202347, + -0.03517550602555275, + -0.0008693283307366073, + -0.0030959672294557095, + -0.03384385630488396, + 0.010290631093084812, + 0.019916541874408722, + 0.05241516977548599, + 0.0001862206554505974, + 0.0807696133852005, + 0.07800241559743881, + -0.03554074093699455, + 0.009861879050731659, + 0.12163961678743362, + -0.011354489251971245, + -0.009673081338405609, + 0.042491983622312546, + -0.025652075186371803, + 0.025175729766488075, + 0.03896918520331383, + -0.053539298474788666, + -0.029167233034968376, + 0.00978136993944645, + -0.023699704557657242, + 0.03253380209207535, + -0.03822029381990433, + 0.058423321694135666, + 0.026071518659591675, + 0.053068000823259354, + -0.09988731890916824, + 0.0414501428604126, + -0.03693723678588867, + 0.04026027023792267, + -0.05771702155470848, + 0.019164804369211197, + 0.025125736370682716, + 0.050165604799985886, + -0.05165478587150574, + 0.01760527677834034, + 0.041153840720653534, + -0.02867099642753601, + 0.023114006966352463, + -0.012088987044990063, + -0.05457964166998863, + -0.11765637993812561, + 0.06746598333120346, + -0.03933200240135193, + -0.0006756767979823053, + -0.030408265069127083, + -0.026848016306757927, + -0.01587255299091339, + -0.05819051340222359, + -0.1226000040769577, + -0.00023781313211657107, + 0.04311525821685791, + -0.026914099231362343, + 0.07603590190410614, + -0.02151767536997795, + -0.022372320294380188, + 0.04248453304171562, + 0.015811804682016373, + -0.09704615920782089, + 0.013414411805570126, + 0.04671716317534447, + -0.0005355023895390332, + 0.04562264308333397, + -0.05281005799770355, + -0.10670262575149536, + -0.07042554020881653, + 0.04646708443760872, + -0.04852555692195892, + -0.044121239334344864, + -2.2379868624966548e-08, + -0.05450495332479477, + -0.08525162190198898, + -0.011827067472040653, + 0.032688550651073456, + 0.0376320444047451, + -0.026871664449572563, + -0.06950098276138306, + -0.08834069222211838, + 0.02248203381896019, + 0.009262556210160255, + 0.0379009023308754, + 0.031879592686891556, + -0.04288928955793381, + -0.06641319394111633, + 0.0724688470363617, + 0.026927346363663673, + -0.01640288718044758, + 0.005232198629528284, + 0.02725823037326336, + -0.01487017422914505, + -0.05428652465343475, + 0.037051212042570114, + 0.047820206731557846, + 0.003550984663888812, + 0.056231044232845306, + -0.019568832591176033, + -0.06656592339277267, + 0.010791237466037273, + 0.06507423520088196, + 0.13052180409431458, + 0.07763104140758514, + 0.002354389289394021, + 0.028133422136306763, + -0.011383099481463432, + -0.033070821315050125, + -0.047601427882909775, + -0.023280223831534386, + 0.00929222721606493, + 0.007150382734835148, + 0.0755145400762558, + -0.05926918983459473, + -0.021946027874946594, + -0.08865348994731903, + 0.022884026169776917, + -0.010546778328716755, + -0.03196541219949722, + -0.03192758932709694, + -0.07225140929222107, + -0.09277506917715073, + -0.15769821405410767, + -0.008550621569156647, + 0.008650862611830235, + 0.05684372037649155, + 0.004785503726452589, + -0.015879202634096146, + -0.07705702632665634, + -0.03669339790940285, + 0.1113300770521164, + 0.022257691249251366, + 0.01751289889216423, + 0.13502122461795807, + -0.04817246273159981, + 0.07557497918605804, + 0.015758583322167397 + ], + "list-plus-bold||*updated*,ul,ol,unordered list,ordered list,checklist,add,+": [ + -0.05191674828529358, + 0.0049002827145159245, + -0.05084964260458946, + 0.10305735468864441, + 0.09675190597772598, + -0.0032170270569622517, + 0.05865572392940521, + -0.06672219932079315, + -0.01588304340839386, + 0.05779537558555603, + 0.012180058285593987, + 0.05537455528974533, + 0.02112763561308384, + -0.08713468909263611, + -0.022323623299598694, + 0.00888129323720932, + 0.036605097353458405, + 0.035642240196466446, + -0.014085732400417328, + -0.09097923338413239, + -0.007802658714354038, + 0.020156117156147957, + 0.01235165260732174, + 0.03852012753486633, + 0.01873895339667797, + 0.01911391317844391, + 0.012919619679450989, + -0.028246993198990822, + -0.002337411744520068, + -0.09114497900009155, + -0.03739456459879875, + -0.06840869039297104, + 0.11386919021606445, + 0.0064844246953725815, + 0.033187903463840485, + -0.05125325173139572, + 0.01572195254266262, + 0.02089836448431015, + -0.05133490636944771, + 0.024918418377637863, + -0.012689828872680664, + -0.07415474951267242, + -0.019524268805980682, + -0.02207307144999504, + -0.05856236815452576, + -0.02832595631480217, + -0.06583987176418304, + -0.09589099138975143, + 0.013720662333071232, + -0.0014285329962149262, + 0.01259678229689598, + -0.05595400556921959, + -0.11122597754001617, + -0.009469907730817795, + 0.012003099545836449, + 0.022003820165991783, + -0.058026671409606934, + -0.04324876517057419, + 0.0201907679438591, + -0.060327738523483276, + 0.034597013145685196, + 0.018436437472701073, + 0.03624987602233887, + -0.00021154619753360748, + 0.0021803267300128937, + 0.025876913219690323, + 0.0009031139779835939, + 0.01744762994349003, + -0.0520012304186821, + 0.08594927936792374, + 0.058826278895139694, + 0.017633307725191116, + 0.03785959631204605, + -0.03669922426342964, + -0.014216480776667595, + 0.01831061765551567, + 0.09114284068346024, + -0.06635845452547073, + -0.0372994989156723, + 0.024978915229439735, + -0.07957843691110611, + -0.02512938715517521, + -0.04348253831267357, + -0.013437764719128609, + 0.019273463636636734, + 0.010308458469808102, + -0.033941369503736496, + -0.028380876407027245, + -0.08835484832525253, + -0.048526331782341, + -0.01591409742832184, + -0.013807257637381554, + -0.015437391586601734, + -0.01752474717795849, + -0.013022206723690033, + 0.06496237218379974, + 0.07634996622800827, + 0.037065159529447556, + -0.14317432045936584, + 0.042514070868492126, + -0.004560219123959541, + 0.0834992453455925, + -0.02733706869184971, + 0.0033927876502275467, + 0.04049406573176384, + -0.013690989464521408, + 0.014877540990710258, + -0.03442157432436943, + -0.05632634088397026, + 0.023975765332579613, + 0.012870494276285172, + -0.08892164379358292, + 0.010472841560840607, + -0.12973204255104065, + -0.07526134699583054, + -0.029874751344323158, + -0.02349594421684742, + -0.03192388266324997, + 0.06160798296332359, + 0.054390668869018555, + 0.12465580552816391, + -0.03918898478150368, + -0.01926657184958458, + 0.001994191901758313, + 0.01424853503704071, + 0.006507317069917917, + 0.05914836749434471, + -1.3460194592052381e-33, + 0.023490041494369507, + 0.009129359386861324, + 0.002056596800684929, + 0.02720489539206028, + 0.023715145885944366, + 0.0020871933083981276, + -0.11837343871593475, + -0.07025416940450668, + -0.11852068454027176, + 0.04297025501728058, + 0.13107238709926605, + 0.08884058147668839, + -0.03726286441087723, + 0.08654028922319412, + 0.041956834495067596, + -0.037730149924755096, + 0.07696663588285446, + 0.00850160513073206, + -0.05015106499195099, + -0.018219411373138428, + -0.08139485865831375, + -0.003244609571993351, + -0.025438666343688965, + -0.020115913823246956, + -0.023873792961239815, + 0.014211812056601048, + -0.0072965482249855995, + 0.012369494885206223, + -0.1040872186422348, + 0.007212892174720764, + 0.021989118307828903, + 0.0037188453134149313, + 0.00039173130062408745, + 0.03036014549434185, + -0.04113619402050972, + 0.0751083642244339, + -0.0784078910946846, + -0.04206150770187378, + 0.05324587598443031, + -0.05381438881158829, + 0.0008386110421270132, + -0.01461178157478571, + -0.04240896925330162, + -0.03023838996887207, + 0.07923895865678787, + 0.10648303478956223, + -0.08845464140176773, + -0.012728942558169365, + 0.08863579481840134, + 0.015549966134130955, + 0.01641412079334259, + 0.0013611225876957178, + -0.09048165380954742, + 0.010338163003325462, + -0.07638093084096909, + -0.007638219278305769, + 0.0007574316114187241, + 0.04943519085645676, + 0.061295900493860245, + 0.07665656507015228, + -0.012252296321094036, + 0.04333209991455078, + 0.026510370895266533, + -0.010715320706367493, + -0.023361841216683388, + 0.045005809515714645, + -0.03986918926239014, + 0.0666208416223526, + 0.07182956486940384, + -0.01927812211215496, + -0.01045590452849865, + 0.030130505561828613, + 0.08643177896738052, + 0.10399023443460464, + -0.04108210653066635, + 0.03384602069854736, + -0.013990642502903938, + -0.09418215602636337, + 0.0471164733171463, + -0.07750730216503143, + 0.035322848707437515, + -0.04734230414032936, + 0.0016914524603635073, + 0.12523183226585388, + 0.013910929672420025, + -0.0017017876962199807, + -0.06370817869901657, + 0.08431229740381241, + 0.00665119057521224, + -0.009634992107748985, + -0.05660981684923172, + 0.01548346783965826, + 0.04248299077153206, + -0.06192666292190552, + -0.09803667664527893, + -2.7320332769872814e-33, + 0.09487850219011307, + 0.02084081806242466, + -0.05593540892004967, + -0.029718343168497086, + -0.023764530196785927, + 0.016487712040543556, + -0.05597451329231262, + 0.012316259555518627, + 0.027177540585398674, + 0.018524620682001114, + 0.10800712555646896, + -0.017101703211665154, + -0.01715000905096531, + -0.08195362985134125, + 0.04664638638496399, + 0.004665094427764416, + -0.07018564641475677, + 0.024623656645417213, + -0.009272166527807713, + -0.0023800935596227646, + 0.03437386080622673, + 0.01328418217599392, + -0.004288320429623127, + 0.08560764789581299, + -0.01798245869576931, + -0.02672651596367359, + -0.015421909280121326, + -0.0047160969115793705, + -0.021509358659386635, + 0.001329405582509935, + 0.051906418055295944, + 0.05501473322510719, + 0.05271028354763985, + 0.06955192238092422, + -0.03200753778219223, + -0.0075688352808356285, + 0.05516419932246208, + 0.04447007551789284, + -0.013385993428528309, + 0.0531328059732914, + -0.02289549633860588, + 0.03298959881067276, + 0.0390329584479332, + -0.03882824629545212, + 0.001201645820401609, + -0.005152958910912275, + -0.025207171216607094, + 0.0008572327787987888, + -0.010561523959040642, + 0.03403860703110695, + 0.04180850461125374, + 0.022366341203451157, + -0.09225229173898697, + 0.014519373886287212, + -0.0022021736949682236, + 0.03234469145536423, + -0.05854449421167374, + 0.020169932395219803, + 0.018220914527773857, + 0.031125178560614586, + -0.057615261524915695, + 0.03986962139606476, + 0.06843409687280655, + -0.04654566943645477, + 0.015225311741232872, + -0.003576194401830435, + -0.06598249077796936, + -0.09942695498466492, + 0.017322996631264687, + -0.028630899265408516, + 0.03867436945438385, + 0.017202800139784813, + -0.07131464034318924, + -0.028685588389635086, + -0.024211382493376732, + -0.1105663925409317, + 0.05678505450487137, + 0.03280280902981758, + -0.010539183393120766, + 0.029452091082930565, + -0.04463804513216019, + -0.02937299571931362, + 0.03818519413471222, + 0.01641968823969364, + -0.08740529417991638, + 0.0038309080991894007, + 0.0013812633696943521, + 0.06749008595943451, + 0.04782473295927048, + -0.0627777948975563, + -0.07791119813919067, + -0.03333820030093193, + 0.021842634305357933, + -0.06770143657922745, + -0.0729738101363182, + -2.5159886618553173e-08, + -0.09165262430906296, + -0.08876842260360718, + -0.044488780200481415, + -0.0080862483009696, + 0.04078708589076996, + -0.04582342877984047, + -0.038639504462480545, + -0.0706193670630455, + -0.012362346984446049, + -0.024952519685029984, + 0.0336284302175045, + 0.053786322474479675, + -0.03965619206428528, + -0.03919397294521332, + 0.050464797765016556, + 0.0667460560798645, + -0.020196828991174698, + 0.025671355426311493, + 0.01852947100996971, + -0.009670112282037735, + -0.02309253066778183, + 0.056948404759168625, + 0.036569204181432724, + 0.007533498108386993, + -0.0011741621419787407, + 0.008792486973106861, + -0.061112139374017715, + -0.044946927577257156, + 0.08510655909776688, + 0.12024206668138504, + 0.08695623278617859, + 0.0027267595287412405, + 0.0077419946901500225, + -0.012800376862287521, + 0.00963562447577715, + -0.03966892883181572, + 0.00981141161173582, + -0.0008843879331834614, + 0.025535987690091133, + 0.10670150816440582, + -0.08351285755634308, + -0.02566431276500225, + -0.010815273970365524, + 0.013099133968353271, + -0.02057480998337269, + -0.024895941838622093, + -0.029283665120601654, + -0.044593311846256256, + -0.10406363010406494, + -0.14435644447803497, + 0.006452792324125767, + 0.019740048795938492, + 0.055361222475767136, + -0.03401351347565651, + -0.015670010820031166, + -0.040847938507795334, + 0.00816558487713337, + 0.09218701720237732, + 0.03566568344831467, + 0.016096314415335655, + 0.14928385615348816, + -0.08483120799064636, + 0.045097142457962036, + 0.052952785044908524 + ], + "list-star-bold||*new*,favorites,wishlist,liked": [ + -0.04524748772382736, + -0.007184259127825499, + -0.014907840639352798, + 0.06962766498327255, + 0.07959231734275818, + 0.0020640790462493896, + 0.09148033708333969, + -0.031726524233818054, + 0.002947108121588826, + 0.01902817003428936, + -0.061996977776288986, + 0.0421573668718338, + 0.04360267147421837, + -0.049163468182086945, + -0.011868970468640327, + 0.04481470584869385, + -0.025621172040700912, + -0.017091764137148857, + -0.0009262335952371359, + -0.05284332111477852, + -0.012842689640820026, + 0.037837881594896317, + -0.024900497868657112, + 0.02587694302201271, + 0.040279049426317215, + 0.02968580648303032, + 0.022857069969177246, + -0.03897085040807724, + -0.027360355481505394, + -0.05673946067690849, + 0.012539428658783436, + 0.0069526927545666695, + 0.06384103745222092, + 0.061709076166152954, + 0.033113885670900345, + -0.02404560148715973, + -0.06450366228818893, + -0.023536061868071556, + -0.02377428486943245, + 0.0014199564466252923, + 0.03166945278644562, + -0.04883212223649025, + -0.038421813398599625, + 0.011041618883609772, + -0.1010991632938385, + -0.015499676577746868, + -0.025936784222722054, + -0.08710934966802597, + 0.04160436987876892, + 0.05332981050014496, + -0.015994928777217865, + -0.09758522361516953, + -0.11339624226093292, + -0.060137636959552765, + 0.08060816675424576, + 0.028009777888655663, + -0.07750174403190613, + -0.07345657795667648, + -0.01234038732945919, + -0.03708361089229584, + 0.023453637957572937, + -0.021529657766222954, + 0.07770060747861862, + -0.031953562051057816, + 0.023973572999238968, + -0.09618580341339111, + -0.06227521970868111, + 0.028841467574238777, + -0.03976195305585861, + 0.019692501053214073, + 0.01870192028582096, + 0.076449453830719, + -0.027199096977710724, + -0.007685619872063398, + 0.008103248663246632, + 0.001960480585694313, + 0.04279154911637306, + -0.04087154567241669, + -0.05477486550807953, + 0.02285199984908104, + -0.07848095148801804, + -0.06784676015377045, + -0.04677592217922211, + -0.03760751336812973, + 0.03769977390766144, + -0.0017475386848673224, + -0.06500041484832764, + -0.0398835651576519, + -0.08069548010826111, + -0.00013192399637773633, + -0.06759948283433914, + 0.006425994914025068, + -0.03694090619683266, + -0.01754334196448326, + -0.0682668536901474, + 0.08767543733119965, + 0.036028437316417694, + -0.11219733208417892, + -0.04429054260253906, + 0.09536737948656082, + 0.004714536480605602, + 0.04121917113661766, + 0.013179712928831577, + 0.02112201601266861, + 0.04382206127047539, + 0.007562454789876938, + -0.012174070812761784, + -0.021580770611763, + -0.04548517242074013, + -0.017772071063518524, + -0.03942486271262169, + -0.01911482959985733, + -0.003346394281834364, + -0.09653022885322571, + -0.08521974086761475, + -0.038466498255729675, + 0.020713336765766144, + 0.031221337616443634, + 0.09762157499790192, + 0.07899714261293411, + 0.11172123998403549, + -0.024846399202942848, + 0.013687608763575554, + -0.02764664776623249, + -0.09800134599208832, + 0.042657870799303055, + 0.02224765531718731, + 3.1710372084184635e-35, + 0.04023833945393562, + 0.024387603625655174, + -0.03649317845702171, + 0.03168826177716255, + -0.011911041103303432, + 0.014693083241581917, + -0.050263017416000366, + -0.03218398988246918, + -0.06679891049861908, + -0.0653260350227356, + 0.09787874668836594, + 0.06375144422054291, + -0.011819912120699883, + 0.11184062063694, + 0.02095101587474346, + -0.057027436792850494, + 0.026039063930511475, + -0.028831571340560913, + -0.07623128592967987, + -0.05399855598807335, + -0.08311701565980911, + 0.08665113896131516, + -0.022989440709352493, + -0.05408722534775734, + -0.04490964114665985, + -0.06714361160993576, + 0.05304824933409691, + 0.0090815220028162, + -0.04586571455001831, + 0.012588093988597393, + 0.06419546157121658, + -0.02892162837088108, + 0.07517839223146439, + 0.030971769243478775, + -0.030588362365961075, + 0.09296266734600067, + -0.058940235525369644, + -0.00317954714410007, + 0.028627626597881317, + -0.021525181829929352, + 0.03631244972348213, + -0.014677327126264572, + -0.06362976878881454, + -0.03189201280474663, + -0.03888404369354248, + 0.13653646409511566, + 7.481779903173447e-05, + 0.022972309961915016, + 0.039169713854789734, + -0.032765019685029984, + 0.03854891285300255, + -0.043545953929424286, + -0.12315095961093903, + 0.03892900049686432, + -0.06682490557432175, + -0.0038946515414863825, + 0.007121068891137838, + 0.061998363584280014, + 0.10666615515947342, + -0.0443548820912838, + 0.0028584073297679424, + 0.02289675921201706, + 0.06662943959236145, + -0.06843825429677963, + -0.0010366979986429214, + 0.13507629930973053, + 0.02617350034415722, + 0.07913662493228912, + 0.016940400004386902, + 0.03657950833439827, + -0.003619637805968523, + 0.0685916468501091, + 0.046027861535549164, + -0.04092606529593468, + -0.0831444039940834, + 0.01072921697050333, + 0.0026153132785111666, + -0.026164313778281212, + 0.06014039367437363, + -0.09306298196315765, + 0.02255849726498127, + -0.0437309704720974, + -0.031132912263274193, + 0.08822449296712875, + 0.03432814031839371, + -0.030479835346341133, + 0.03048120066523552, + -0.0519537627696991, + -0.03073851391673088, + -0.013309083878993988, + -0.013711863197386265, + 0.022438785061240196, + 0.047689907252788544, + -0.050354115664958954, + -0.131194069981575, + -3.02094205409956e-33, + 0.07926526665687561, + 0.017170099541544914, + -0.003737929742783308, + -0.006650497671216726, + 0.044924039393663406, + -0.002211636397987604, + -0.05440047010779381, + 0.03179045394062996, + -0.004270337522029877, + 0.029884614050388336, + -0.013199190609157085, + -0.07331936061382294, + -0.043249670416116714, + -0.06883425265550613, + 0.07193588465452194, + 0.031706999987363815, + -0.03122854232788086, + 0.07559816539287567, + -0.07655235379934311, + -0.007033830508589745, + -0.04527744650840759, + 0.03270784020423889, + -0.06678090989589691, + 0.058670103549957275, + -0.03064928576350212, + -0.08053404092788696, + 0.004628004971891642, + -0.03631933033466339, + -0.07575154304504395, + -0.0737842544913292, + 0.03448823094367981, + -0.00506256241351366, + -0.041456762701272964, + 0.08709152042865753, + 0.020486924797296524, + 0.014651322737336159, + -0.033271051943302155, + -0.009690194390714169, + -0.013276450335979462, + 0.07808411866426468, + -0.01830325461924076, + -0.009793187491595745, + -0.0031276424415409565, + 0.0003351229534018785, + -0.0199221670627594, + 0.004047406371682882, + 0.0022614949848502874, + 0.0008794708992354572, + 0.02103385142982006, + 0.09530362486839294, + 0.04927476868033409, + 0.0149659663438797, + -0.0005907274316996336, + 0.04825696349143982, + -0.00048036326188594103, + 0.010749592445790768, + 0.010273615829646587, + 0.036715444177389145, + 0.06882511079311371, + 0.015628740191459656, + -0.05603233352303505, + -0.035240817815065384, + -0.014821700751781464, + -0.02175118960440159, + 0.04862020164728165, + -0.08565500378608704, + 0.012440585531294346, + -0.05146985501050949, + -0.0208219513297081, + -0.010051093064248562, + 0.009466511197388172, + -0.0016627763397991657, + -0.05750342085957527, + -0.012758609838783741, + 0.051610153168439865, + -0.05023965239524841, + 0.002313554286956787, + -0.004849259275943041, + -0.008202679455280304, + 0.044352348893880844, + -0.03309768810868263, + 0.058142561465501785, + -0.009226629510521889, + -0.044174935668706894, + 0.012319865636527538, + 0.019146312028169632, + -0.026753045618534088, + 0.08073030412197113, + 0.0003631288418546319, + -0.02056494541466236, + 0.004383446183055639, + 0.005617677234113216, + 0.06175897642970085, + -0.005476298276335001, + -0.00979979895055294, + -2.0981572035339013e-08, + -0.11918845027685165, + -0.09685614705085754, + -0.06529653817415237, + 0.08452179282903671, + 0.029349805787205696, + 0.004490875173360109, + -0.0645669475197792, + -0.028580857440829277, + -0.006608107592910528, + -0.026392539963126183, + 0.05337822809815407, + 0.02000502683222294, + -0.07281659543514252, + -0.053253088146448135, + 0.055495403707027435, + -0.0037665856070816517, + -0.00037030535168014467, + 0.06033496558666229, + 0.019747061654925346, + 0.036919742822647095, + -0.046156276017427444, + 0.04687218368053436, + 0.070709727704525, + -0.06954304873943329, + 0.026974640786647797, + 0.028332114219665527, + -0.05649134889245033, + 0.008409619331359863, + -0.008147732354700565, + 0.12708565592765808, + 0.06016545370221138, + 0.030457204207777977, + -0.005694711115211248, + -0.045122962445020676, + -0.014760635793209076, + 0.02776324190199375, + -0.03108324110507965, + -0.023410286754369736, + 0.01733325608074665, + 0.12405885010957718, + 0.09379703551530838, + 0.038020651787519455, + 0.02524612843990326, + 0.014937261119484901, + -0.1036800742149353, + -0.005363983102142811, + 0.06992007791996002, + -0.08856556564569473, + 0.007774903438985348, + -0.10819390416145325, + -0.016736581921577454, + -0.00792988296598196, + 0.001226432854309678, + -0.006410857662558556, + -0.03611593320965767, + 0.02688484825193882, + 0.002770340535789728, + 0.11381343007087708, + 0.04100111126899719, + -0.010808554477989674, + 0.16550599038600922, + 0.017466425895690918, + 0.006202177610248327, + 0.11081184446811676 + ], + "lock-bold||padlock,security,secured,authentication,authenticated,login,locked,encrypted,encryption,privacy,private": [ + -0.031843673437833786, + -0.03461672365665436, + -0.08547007292509079, + -0.017638221383094788, + 0.019389210268855095, + 0.05527961999177933, + 0.1085716187953949, + -0.05417057126760483, + 0.03614852577447891, + -0.014057054184377193, + 0.08466498553752899, + 0.026398051530122757, + 0.029396025463938713, + -0.014490202069282532, + 0.009579653851687908, + 0.024408861994743347, + -0.020819230005145073, + -0.008608166128396988, + -0.04785525053739548, + 0.04772576317191124, + 0.02548041194677353, + -0.006495590787380934, + 0.00027026698808185756, + 0.0492401123046875, + 0.023877181112766266, + -0.007671164348721504, + 0.05443302541971207, + 0.004123151767998934, + -0.011255990713834763, + -0.06322652101516724, + -0.07965967059135437, + -0.013828037306666374, + 0.0819680318236351, + 0.04737682640552521, + 0.008971813134849072, + -0.053836122155189514, + 0.02831111289560795, + 0.0424688458442688, + -0.04642891138792038, + -0.03784773498773575, + -0.1071116104722023, + -0.1113094612956047, + -0.03525810316205025, + 0.04480043798685074, + -0.022885890677571297, + 0.0007626918377354741, + -0.03408489376306534, + 0.012162989936769009, + -0.06292345374822617, + -0.02389976568520069, + -0.004813084378838539, + -0.004486928693950176, + -0.11526735872030258, + 0.0862433984875679, + -0.012415846809744835, + -0.049200523644685745, + -0.02954532951116562, + -0.019433006644248962, + 0.05176529660820961, + 0.012903675436973572, + 0.006986328866332769, + 0.06869179755449295, + -0.017142733559012413, + 0.1093597337603569, + 0.0458722785115242, + 0.030067117884755135, + -0.043046385049819946, + -0.03627987578511238, + 0.039020612835884094, + -0.013932406902313232, + -0.03153747692704201, + -0.04436380788683891, + -0.032252389937639236, + 1.2828048056690022e-05, + -0.003119931323453784, + 0.009984818287193775, + -0.022148698568344116, + -0.011757472530007362, + 0.012033701874315739, + -0.07778163254261017, + -0.0639725998044014, + -0.06296359747648239, + -0.019958684220910072, + 0.03562435880303383, + -0.01850951462984085, + 0.07436740398406982, + -0.05451027303934097, + -0.034504182636737823, + -0.001438263338059187, + -0.026770250871777534, + -0.014628250151872635, + -0.0034379654098302126, + 0.012878818437457085, + -0.051511019468307495, + -0.03748241066932678, + -0.004509321879595518, + 0.03145532310009003, + -0.0057202414609491825, + -0.07823100686073303, + 0.030929582193493843, + 0.026827026158571243, + 0.030376696959137917, + 0.021201806142926216, + -0.03719988092780113, + 0.02873064950108528, + 0.033964935690164566, + 0.03894558548927307, + -0.07618360966444016, + -0.010251088999211788, + 0.024273458868265152, + -0.016095533967018127, + -0.043187275528907776, + -0.03597446531057358, + -0.05178787559270859, + -0.019205644726753235, + 0.01056696567684412, + -0.13327717781066895, + 0.003113203914836049, + 0.1506952941417694, + 0.10479473322629929, + -0.01039078552275896, + 0.006997581105679274, + 0.025358252227306366, + -0.07538261264562607, + -0.056121982634067535, + -0.034713782370090485, + -0.049749623984098434, + -1.1225260243612583e-33, + 0.024352869018912315, + 0.017691241577267647, + -0.08443611860275269, + 0.05513216182589531, + 0.007113249972462654, + 0.03170473873615265, + -0.06962348520755768, + -0.0944158062338829, + -0.10712577402591705, + 0.10229189693927765, + 0.07663572579622269, + 0.02353561483323574, + 0.043874591588974, + 0.0351475328207016, + 0.12692220509052277, + 0.036338888108730316, + 0.015168871730566025, + 0.011921615339815617, + 0.07505160570144653, + 0.016810813918709755, + 0.028264326974749565, + 0.1175919696688652, + 0.03677358850836754, + 0.050140850245952606, + 0.04524771869182587, + -0.09207017719745636, + 0.0338716097176075, + -0.055729158222675323, + -0.008697640150785446, + 0.04082116484642029, + 0.011148362420499325, + 0.009120854549109936, + 0.02537216804921627, + -0.008214311674237251, + 0.021553631871938705, + 0.017036300152540207, + 0.03850206360220909, + -0.09816446155309677, + 0.02363736368715763, + -0.09991979598999023, + -0.10238195210695267, + -0.1023130938410759, + -0.06040693074464798, + -0.01600254699587822, + 0.0732334703207016, + 0.04549877345561981, + -0.0760577917098999, + 0.022827791050076485, + 0.030532320961356163, + 0.02751750312745571, + -0.06771239638328552, + 0.009464285336434841, + -0.048145800828933716, + -0.056910157203674316, + -0.04948718473315239, + -0.06576644629240036, + 0.004016892984509468, + 0.09698014706373215, + -0.03195122256875038, + 0.07360675185918808, + -0.05236046388745308, + 0.0619984045624733, + 0.047919124364852905, + -0.11819373816251755, + -0.028758270666003227, + -0.022550934925675392, + -0.028321780264377594, + -0.03288763016462326, + 0.06493647396564484, + 0.020994503051042557, + -0.06772202253341675, + 0.011199739761650562, + 0.060849569737911224, + 0.06723938882350922, + -0.0314495824277401, + -0.013920309022068977, + 0.023947641253471375, + 0.03497534617781639, + 0.012735395692288876, + 0.00037366239121183753, + -0.07278724014759064, + 0.04757719114422798, + -0.05097469314932823, + 0.14888662099838257, + -0.07107491791248322, + 0.02029639668762684, + -0.017969639971852303, + 0.00611235573887825, + -0.050314657390117645, + 0.015526027418673038, + -0.010729503817856312, + 0.006939111277461052, + 0.06036979332566261, + -0.017730847001075745, + -0.10749644041061401, + -2.295858751274979e-33, + -0.03812514245510101, + -0.030468756332993507, + -0.05520270764827728, + 0.055839214473962784, + 0.022356661036610603, + 0.03279859200119972, + -0.051981765776872635, + 0.006122415419667959, + -0.005844850558787584, + -0.023222850635647774, + 0.0474286787211895, + 0.021714501082897186, + 0.0020753268618136644, + -0.01975526474416256, + 0.022499386221170425, + -0.00846447516232729, + -0.00046749846660532057, + 0.04342520609498024, + -0.013093018904328346, + 0.07447798550128937, + 8.099264960037544e-05, + -0.032686952501535416, + -0.06554068624973297, + 0.13596618175506592, + 0.06173672154545784, + 0.018593892455101013, + -0.0717407837510109, + 0.00344287627376616, + -0.0073630912229418755, + 0.027086427435278893, + 0.0024622876662760973, + 0.015860557556152344, + 0.005367868579924107, + 0.055196452885866165, + -0.050969790667295456, + -0.06432723253965378, + 0.09540407359600067, + -0.025959201157093048, + -0.0446690171957016, + -0.04062129557132721, + 0.03481438383460045, + 0.0017804378876462579, + 0.03277148678898811, + -0.0043596443720161915, + -0.04161463677883148, + -0.02865416556596756, + -0.02485254965722561, + -0.09002004563808441, + -0.0406181737780571, + 0.059198055416345596, + 0.04251713305711746, + -0.0463692843914032, + 0.0026511503383517265, + -0.013308308087289333, + -0.04670044407248497, + 0.010045639239251614, + -0.003312102984637022, + -0.014902830123901367, + 0.014048491604626179, + 0.04386834800243378, + 0.05229457840323448, + 0.018985498696565628, + 0.02997136302292347, + 0.1118118017911911, + 0.011980948969721794, + -0.06816691905260086, + -0.019977135583758354, + 0.026600675657391548, + -0.13206659257411957, + -0.0042457738891243935, + 0.0850653201341629, + -0.06903452426195145, + 0.01738647371530533, + 0.05561527982354164, + 0.016913477331399918, + -0.06500732153654099, + 0.031247777864336967, + -0.10003206133842468, + -0.08858522772789001, + 0.050231900066137314, + 0.04093169420957565, + -0.00734740449115634, + -0.10118401795625687, + 0.04072071611881256, + 0.011091838590800762, + 0.004472305066883564, + 0.04870636388659477, + -0.036142293363809586, + -0.006388894282281399, + -0.042803313583135605, + -0.04419739171862602, + 0.015442539006471634, + -0.0984266921877861, + 0.0026140937115997076, + 0.01765565387904644, + -2.3171725871407034e-08, + 0.04911719262599945, + -0.03337886556982994, + 0.01265182439237833, + -0.049032196402549744, + 0.0886610895395279, + -0.005551556590944529, + -0.01732644997537136, + -0.04570182040333748, + -0.04221741855144501, + -0.01347506232559681, + 0.0719095766544342, + 0.031257662922143936, + -0.09697060286998749, + -0.05558368191123009, + -0.018108900636434555, + 0.022243911400437355, + -0.07233357429504395, + 0.00013702898286283016, + 0.021940084174275398, + -0.06598678976297379, + 0.0033246271777898073, + 0.006586755625903606, + -0.024553872644901276, + -0.02573632076382637, + 0.021690411493182182, + 0.05606876313686371, + -0.0014188064960762858, + 0.020318327471613884, + 0.10337603837251663, + 0.09718596190214157, + 0.015183158218860626, + -0.01651318557560444, + 0.07268412411212921, + -0.05538322031497955, + -0.11302623152732849, + 0.08119934052228928, + -0.034997448325157166, + -0.020336443558335304, + 0.05328203737735748, + 0.059585027396678925, + 0.021604662761092186, + -0.059997305274009705, + 0.00951994676142931, + -0.01655370555818081, + -0.04011676833033562, + 0.010395780205726624, + 0.02829093299806118, + 0.013652071356773376, + -0.028749598190188408, + -0.06120206043124199, + -0.03616051375865936, + -0.0058525847271084785, + 0.028275812044739723, + 0.07355626672506332, + 0.01848667301237583, + 0.08213084191083908, + 0.04784080758690834, + 0.031925518065690994, + 0.11987894028425217, + -0.01958945393562317, + 0.1065678521990776, + 0.03820864483714104, + 0.017255455255508423, + -0.012662029825150967 + ], + "lock-key-bold||padlock,security,secured,authentication,authenticated,login,locked,encrypted,encryption,privacy,private": [ + -0.031331226229667664, + -0.027894277125597, + -0.08018691092729568, + -0.012321501970291138, + 0.022537769749760628, + 0.055635370314121246, + 0.11524525284767151, + -0.062106527388095856, + 0.03171701729297638, + -0.007183878682553768, + 0.08664952963590622, + 0.01835242472589016, + 0.03436747565865517, + -0.027327513322234154, + 0.008089831098914146, + 0.02426900528371334, + -0.035324279218912125, + -0.01474637258797884, + -0.04773693531751633, + 0.042079608887434006, + 0.019036894664168358, + -0.009059221483767033, + 0.0030789838638156652, + 0.04907666891813278, + 0.02079703100025654, + -0.002938683610409498, + 0.06860064715147018, + 0.026790572330355644, + -0.013016645796597004, + -0.05984927713871002, + -0.06545849144458771, + -0.01708824560046196, + 0.07709747552871704, + 0.04765405133366585, + 0.00618163775652647, + -0.04807864502072334, + 0.025087470188736916, + 0.04430870711803436, + -0.04314309358596802, + -0.031360846012830734, + -0.10380377620458603, + -0.10870669782161713, + -0.0301459152251482, + 0.05127532780170441, + -0.011877191253006458, + 0.004169770050793886, + -0.05173247680068016, + 0.003339750925078988, + -0.058954834938049316, + -0.013774589635431767, + -0.012108930386602879, + -0.012064841575920582, + -0.12830989062786102, + 0.07143136113882065, + -0.020159278064966202, + -0.03801455721259117, + -0.0434432215988636, + -0.01142500713467598, + 0.05695028975605965, + 0.012085597962141037, + 0.01014735922217369, + 0.06391150504350662, + -0.013785026036202908, + 0.0950169637799263, + 0.03211494907736778, + 0.03715567663311958, + -0.05552709102630615, + -0.06189486011862755, + 0.029786033555865288, + -0.018306134268641472, + -0.02546180598437786, + -0.0608818344771862, + -0.031536757946014404, + -0.022411227226257324, + -0.015091082081198692, + -0.0004773547116201371, + -0.024465816095471382, + -0.013652671128511429, + 0.004902518354356289, + -0.06658843904733658, + -0.05853181704878807, + -0.06713974475860596, + -0.03135687857866287, + 0.031328849494457245, + -0.015062637627124786, + 0.08662212640047073, + -0.05164780840277672, + -0.045601971447467804, + -0.012087336741387844, + -0.017501432448625565, + -0.020977821201086044, + -0.009930916130542755, + 0.019655581563711166, + -0.04143068194389343, + -0.027596745640039444, + 0.007877685129642487, + 0.03530801460146904, + -0.010046795941889286, + -0.0769725888967514, + 0.030414307489991188, + 0.018769223242998123, + 0.0320320688188076, + 0.012091197073459625, + -0.040594350546598434, + 0.03929409012198448, + 0.03898095712065697, + 0.03505850210785866, + -0.06345261633396149, + -0.01678716205060482, + 0.01934855431318283, + -0.013057032600045204, + -0.03576716408133507, + -0.038409702479839325, + -0.04459715634584427, + -0.030320601537823677, + 0.030712634325027466, + -0.12516088783740997, + 0.008793584071099758, + 0.15592516958713531, + 0.10880686342716217, + -0.002864588052034378, + -0.0022640235256403685, + 0.006413052789866924, + -0.08187364786863327, + -0.06954167783260345, + -0.03846360743045807, + -0.03340940922498703, + -1.344606937438832e-33, + 0.02169133722782135, + 0.019661318510770798, + -0.08128746598958969, + 0.04227697476744652, + 0.0009012974333018064, + 0.02558329701423645, + -0.05655429884791374, + -0.09673722088336945, + -0.10951916873455048, + 0.10080890357494354, + 0.07679443806409836, + 0.01286090724170208, + 0.02493543177843094, + 0.03559006378054619, + 0.12259338796138763, + 0.03873388096690178, + 0.01845102198421955, + 0.022142941132187843, + 0.05378803238272667, + 0.01031024381518364, + 0.03077220730483532, + 0.1131870374083519, + 0.03714630752801895, + 0.04651183634996414, + 0.04035579040646553, + -0.08375652134418488, + 0.03788566216826439, + -0.048723891377449036, + -0.010221047326922417, + 0.03477798029780388, + 0.012286427430808544, + 0.020493829622864723, + 0.0020041239913553, + -0.026456691324710846, + 0.012978766113519669, + 0.011979340575635433, + 0.0344979390501976, + -0.08561185002326965, + 0.013629009015858173, + -0.10494452714920044, + -0.1095941960811615, + -0.09502241760492325, + -0.06453005224466324, + -0.028347305953502655, + 0.06597816944122314, + 0.04938387870788574, + -0.05930834263563156, + 0.016182364895939827, + 0.0371549092233181, + 0.03972047194838524, + -0.08016052842140198, + 0.004343315027654171, + -0.0448266975581646, + -0.05217874050140381, + -0.05019142106175423, + -0.0689208060503006, + 0.0047171334736049175, + 0.10551092773675919, + -0.02449341118335724, + 0.07553233206272125, + -0.05111326277256012, + 0.04454157501459122, + 0.05319132283329964, + -0.10515595972537994, + -0.01887962780892849, + -0.022877443581819534, + -0.02040793187916279, + -0.018722135573625565, + 0.06457818299531937, + 0.02913530543446541, + -0.0595480278134346, + 0.009519940242171288, + 0.0618131086230278, + 0.06978476792573929, + -0.029681773856282234, + -0.007038878742605448, + 0.027231315150856972, + 0.030461424961686134, + 0.021480737254023552, + -0.005219312384724617, + -0.06750893592834473, + 0.06406314671039581, + -0.061755284667015076, + 0.13567595183849335, + -0.07305682450532913, + 0.053377650678157806, + -0.03559732809662819, + 0.0007571170572191477, + -0.03866061195731163, + 0.017327046021819115, + -0.02173425629734993, + 0.018906619399785995, + 0.04595514386892319, + -0.015876268967986107, + -0.11163948476314545, + -2.3200304048767392e-33, + -0.01931280642747879, + -0.025634685531258583, + -0.056238990277051926, + 0.058444272726774216, + 0.02469753473997116, + 0.04915113374590874, + -0.06285738199949265, + 0.005073621869087219, + -0.002684744307771325, + -0.015750333666801453, + 0.05170886218547821, + 0.021285751834511757, + 0.015119260177016258, + -0.030939415097236633, + 0.025225846096873283, + -0.008383750915527344, + -0.006665406748652458, + 0.04746574908494949, + -0.01841903105378151, + 0.07296157628297806, + -0.016823792830109596, + -0.03987715765833855, + -0.06922312080860138, + 0.13633295893669128, + 0.05710902810096741, + 0.013641458004713058, + -0.06501396745443344, + 0.015395129099488258, + 0.0025364356115460396, + 0.03245335817337036, + 0.0018540220335125923, + 0.023312818259000778, + 0.011735139414668083, + 0.05472462251782417, + -0.051540862768888474, + -0.06356357038021088, + 0.08273361623287201, + -0.029911838471889496, + -0.03525824472308159, + -0.026339281350374222, + 0.03281688317656517, + -0.010780748911201954, + 0.05569499731063843, + -0.00840055476874113, + -0.04553909972310066, + -0.028168462216854095, + -0.012271911837160587, + -0.09437864273786545, + -0.04731747880578041, + 0.058800119906663895, + 0.05999321863055229, + -0.05885124206542969, + -0.0075772348791360855, + -0.02284318208694458, + -0.0549541637301445, + 0.01661613956093788, + -0.005694284103810787, + 0.006972036324441433, + 0.004003883805125952, + 0.03683660551905632, + 0.05676158517599106, + 0.01898881234228611, + 0.0399223156273365, + 0.12295383214950562, + 0.006683855317533016, + -0.06736474484205246, + -0.012674651108682156, + 0.015220553614199162, + -0.11501296609640121, + -0.009325292892754078, + 0.07883182168006897, + -0.05697418749332428, + 0.03475066274404526, + 0.06409444659948349, + 0.0197923444211483, + -0.09274747222661972, + 0.015240504406392574, + -0.09428538382053375, + -0.07481172680854797, + 0.040604930371046066, + 0.05769113451242447, + 0.0004536174237728119, + -0.09486713260412216, + 0.03998073190450668, + 0.0007983795367181301, + 0.009688450954854488, + 0.04653794318437576, + -0.02512507513165474, + -0.011886282823979855, + -0.03673315793275833, + -0.04131268337368965, + 0.020941127091646194, + -0.10068867355585098, + -0.002475449815392494, + 0.025067033246159554, + -2.4522465835730145e-08, + 0.060239680111408234, + -0.030661454424262047, + 0.003204218577593565, + -0.04643239080905914, + 0.07652461528778076, + -0.01342080719769001, + -0.01949935033917427, + -0.034687381237745285, + -0.02877080626785755, + -0.02249728888273239, + 0.07118798792362213, + 0.027930710464715958, + -0.0974292904138565, + -0.05768359825015068, + -0.04132310673594475, + 0.02292327582836151, + -0.08656380325555801, + 0.009685319848358631, + 0.031460292637348175, + -0.06794200837612152, + 0.010507834143936634, + 0.005022835452109575, + -0.006454257760196924, + -0.03270633518695831, + 0.020849131047725677, + 0.06923815608024597, + -0.0021950658410787582, + 0.04267815127968788, + 0.11310341209173203, + 0.08028809726238251, + 0.015980897471308708, + -0.01581352762877941, + 0.07492809742689133, + -0.06583663076162338, + -0.11551022529602051, + 0.05830942094326019, + -0.03156774863600731, + -0.025726182386279106, + 0.038087423890829086, + 0.06041846424341202, + 0.02561173401772976, + -0.052691321820020676, + 0.0009820436825975776, + -0.02007187530398369, + -0.0712166279554367, + 0.01771395467221737, + 0.03466983512043953, + 0.01966686360538006, + -0.032407186925411224, + -0.05031956732273102, + -0.03564206138253212, + -0.010893206112086773, + 0.019330332055687904, + 0.07836204022169113, + 0.007126308046281338, + 0.10221371799707413, + 0.04430457577109337, + 0.03391009196639061, + 0.1217905580997467, + -0.03161068260669708, + 0.12117507308721542, + 0.031570982187986374, + 0.003984549082815647, + -0.0076220971532166 + ], + "lock-key-open-bold||padlock,security,unsecured,authentication,unauthenticated,login,unlocked,unencrypted,encryption,privacy": [ + -0.03687004745006561, + -0.025623571127653122, + -0.08501076698303223, + -0.008295563980937004, + 0.031429290771484375, + 0.06336118280887604, + 0.08776143938302994, + -0.06910081207752228, + 0.03838130086660385, + -0.010598599910736084, + 0.09851756691932678, + 0.026904871687293053, + 0.008963403292000294, + -0.028195908293128014, + 0.027432693168520927, + 0.011475210078060627, + -0.025886066257953644, + -0.019834265112876892, + -0.035360753536224365, + 0.044670555740594864, + 0.0015714337350800633, + -0.005535703618079424, + -0.012405852787196636, + 0.004197305999696255, + -0.0027010722551494837, + -0.016792837530374527, + 0.06090753152966499, + 0.01736561208963394, + -0.01897377148270607, + -0.0606994554400444, + -0.04921879991889, + -0.01832159049808979, + 0.06562290340662003, + 0.0408812016248703, + 0.026624225080013275, + -0.044189125299453735, + 0.05020446330308914, + 0.042059194296598434, + -0.06938421726226807, + -0.04197998717427254, + -0.08214560151100159, + -0.09382688254117966, + -0.0274229496717453, + 0.07635177671909332, + -0.015163694508373737, + -0.023516304790973663, + -0.049464523792266846, + -0.009205370210111141, + -0.041618697345256805, + -0.029992209747433662, + -0.02342650666832924, + -0.006047606002539396, + -0.12432380765676498, + 0.07135897129774094, + -0.01745009794831276, + -0.05045737698674202, + -0.04178633168339729, + -0.013351020403206348, + 0.048873767256736755, + -0.0016381858149543405, + 0.011619988828897476, + 0.06599856168031693, + -0.03060198202729225, + 0.09321676939725876, + 0.013020302169024944, + 0.04071926698088646, + -0.06704994291067123, + -0.05677720531821251, + 0.03118101693689823, + -0.019177919253706932, + -0.027689456939697266, + -0.05639299377799034, + -0.0424284003674984, + -0.026670681312680244, + -0.016216905787587166, + 0.011197238229215145, + -0.04229319840669632, + -0.026848789304494858, + 0.01418836135417223, + -0.053309760987758636, + -0.034129150211811066, + -0.06217414140701294, + -0.03994222730398178, + 0.019519608467817307, + -0.005793896969407797, + 0.09238629788160324, + -0.055359650403261185, + -0.040627337992191315, + 0.0055528245866298676, + -0.010546695441007614, + -0.018288107588887215, + 0.0005880112294107676, + 0.009238296188414097, + -0.053122635930776596, + -0.025720881298184395, + -0.021265124902129173, + 0.048436105251312256, + -0.03168509155511856, + -0.09312910586595535, + 0.04907618835568428, + 0.019544942304491997, + 0.03800975903868675, + 0.011597301810979843, + -0.02059982717037201, + 0.03366313874721527, + 0.046009425073862076, + 0.0582524910569191, + -0.06320544332265854, + -0.017542580142617226, + 0.019294723868370056, + 0.0019086680840700865, + -0.05040169134736061, + -0.007124975323677063, + -0.057665374130010605, + -0.021789370104670525, + 0.020107785239815712, + -0.12971588969230652, + 0.003487725043669343, + 0.13540351390838623, + 0.11467374116182327, + -0.0113310432061553, + -0.006694429088383913, + 0.009352699853479862, + -0.07372242212295532, + -0.07572245597839355, + -0.036141667515039444, + -0.032747965306043625, + 1.0979101624645818e-33, + 0.013741021044552326, + 0.036947134882211685, + -0.07492643594741821, + 0.038329754024744034, + 0.03322487324476242, + 0.01740155927836895, + -0.04675610736012459, + -0.09247251600027084, + -0.10964568704366684, + 0.11896346509456635, + 0.06383536756038666, + 0.02910984680056572, + 0.010499059222638607, + 0.051704369485378265, + 0.13420426845550537, + 0.03939786180853844, + 0.01748199202120304, + 0.04359160736203194, + 0.05174446105957031, + 0.014548533596098423, + 0.03928902745246887, + 0.09715946763753891, + 0.051862552762031555, + 0.045623261481523514, + 0.03906024247407913, + -0.0785847157239914, + 0.02611456997692585, + -0.05710022523999214, + 0.016140662133693695, + 0.037929411977529526, + 0.0144640589132905, + 0.021463632583618164, + 0.007565771695226431, + -0.0034384666942059994, + -0.002757611218839884, + 0.018941650167107582, + 0.013189500197768211, + -0.09174967557191849, + 0.028498483821749687, + -0.12121563404798508, + -0.11985741555690765, + -0.09432842582464218, + -0.06095927953720093, + -0.03419545665383339, + 0.0760943740606308, + 0.028459666296839714, + -0.06106991693377495, + 0.002327017718926072, + 0.026485178619623184, + 0.04487086459994316, + -0.08767521381378174, + 0.009593239054083824, + -0.06403657793998718, + -0.059379566460847855, + -0.0770278126001358, + -0.06488274782896042, + -0.005874358117580414, + 0.10267120599746704, + -0.018140355125069618, + 0.08095789700746536, + -0.0425197072327137, + 0.05274702608585358, + 0.027939114719629288, + -0.13382978737354279, + -0.027313850820064545, + -0.025954177603125572, + -0.002231227932497859, + -0.04985243082046509, + 0.0554673969745636, + 0.05955670401453972, + -0.07684984058141708, + -0.00928910356014967, + 0.05265717953443527, + 0.07277388125658035, + -0.05260850116610527, + 0.0188137236982584, + 0.02605617232620716, + 0.025961043313145638, + 0.04784409701824188, + -0.016245529055595398, + -0.03091578558087349, + 0.047006525099277496, + -0.04261961951851845, + 0.13822537660598755, + -0.09439066052436829, + 0.06605960428714752, + -0.036229439079761505, + 0.0059339129365980625, + -0.033361200243234634, + 0.027515318244695663, + -0.010595475323498249, + 0.03142067417502403, + 0.04570669308304787, + -0.029907917603850365, + -0.09283740073442459, + -4.001945538119523e-33, + -0.017194468528032303, + -0.036944951862096786, + -0.048761047422885895, + 0.0354398749768734, + 0.02825557254254818, + 0.05076209083199501, + -0.06567452847957611, + 0.016956981271505356, + 0.007721581496298313, + -0.017998024821281433, + 0.0570838525891304, + 0.02758246287703514, + 0.06049119308590889, + -0.03158276155591011, + 0.039239946752786636, + -0.008528724312782288, + -0.00315589876845479, + 0.049000151455402374, + -0.041253019124269485, + 0.07612963765859604, + -0.010877883061766624, + -0.03557705506682396, + -0.06470204889774323, + 0.1126059964299202, + 0.0714886486530304, + 0.025093724951148033, + -0.06450968980789185, + -0.001505600637756288, + -0.008071254938840866, + 0.029744401574134827, + -0.0013087771367281675, + 0.021099217236042023, + 0.009051973931491375, + 0.05589855834841728, + -0.058240532875061035, + -0.042525921016931534, + 0.08737935870885849, + -0.013811568729579449, + -0.038596685975790024, + -0.03268227353692055, + 0.0397355780005455, + -0.010735487565398216, + 0.055980462580919266, + -0.007145435083657503, + -0.061187297105789185, + -0.023250287398695946, + -0.03444133698940277, + -0.07800837606191635, + -0.0585622563958168, + 0.04818611592054367, + 0.05451953411102295, + -0.06222499534487724, + -0.0007209047325886786, + -0.0249170009046793, + -0.03640179708600044, + 0.032101698219776154, + 0.01767275109887123, + -0.018785201013088226, + 0.030463896691799164, + 0.03541986271739006, + 0.04764940217137337, + 0.015593853779137135, + 0.027789415791630745, + 0.1126788780093193, + 0.016331439837813377, + -0.05904197692871094, + -0.0068887826055288315, + 0.044826846569776535, + -0.11789370328187943, + -0.024678995832800865, + 0.07646091282367706, + -0.04874461889266968, + 0.04614944010972977, + 0.024434002116322517, + 0.021461205556988716, + -0.06773637235164642, + 0.019706929102540016, + -0.08909856528043747, + -0.0876600593328476, + 0.037440501153469086, + 0.051599714905023575, + -0.002809773897752166, + -0.09407971054315567, + 0.03438041731715202, + 0.011250185780227184, + 0.008831925690174103, + 0.05949148163199425, + -0.02467706985771656, + -0.005280700046569109, + -0.01894478313624859, + -0.06909019500017166, + 0.028345324099063873, + -0.08183164149522781, + 0.02060043439269066, + 0.04925065115094185, + -2.6508677919423462e-08, + 0.051617179065942764, + -0.05939015373587608, + 0.011359691619873047, + -0.049246158450841904, + 0.06513413041830063, + 0.0022163712419569492, + -0.0196585264056921, + -0.02636088617146015, + -0.036351799964904785, + -0.01566958986222744, + 0.0756944790482521, + 0.03631442040205002, + -0.08384814113378525, + -0.05406305193901062, + -0.06093958020210266, + 0.052726417779922485, + -0.07430405169725418, + 0.01842397265136242, + 0.02605561539530754, + -0.06591776758432388, + 0.016780732199549675, + 0.018109694123268127, + 0.0061585018411278725, + -0.025607619434595108, + 0.01821868121623993, + 0.052570633590221405, + -0.009019485674798489, + 0.049967870116233826, + 0.10072949528694153, + 0.08724910765886307, + -0.008569760248064995, + -0.019832288846373558, + 0.06541036069393158, + -0.0662241131067276, + -0.11838898807764053, + 0.08045386523008347, + -0.05298842862248421, + -0.015858033671975136, + 0.01428934745490551, + 0.02548309601843357, + 0.021796969696879387, + -0.04065714403986931, + 0.002260589739307761, + -0.014845740981400013, + -0.08320953696966171, + 0.005837791133671999, + 0.028587568551301956, + 0.02246207371354103, + -0.038015782833099365, + -0.033557094633579254, + -0.04813527688384056, + 0.0014516821829602122, + 0.01749010942876339, + 0.073052778840065, + 0.010106660425662994, + 0.09827779233455658, + 0.03997727110981941, + 0.013515426777303219, + 0.09139709174633026, + -0.00315477536059916, + 0.11510377377271652, + 0.013139104470610619, + 0.02203831635415554, + -0.008401019498705864 + ], + "lock-laminated-bold||padlock,security,secured,authentication,authenticated,login,locked,encrypted,encryption,privacy,private": [ + -0.04885588958859444, + 0.010535395704209805, + -0.09608980268239975, + 0.0022577706258744, + 0.02599659562110901, + 0.041415270417928696, + 0.10887905210256577, + -0.04195210337638855, + 0.01966305822134018, + -0.01562527008354664, + 0.09009914845228195, + 0.01268810871988535, + 0.00011041624384233728, + -0.014097515493631363, + -0.02286721207201481, + 0.004595499485731125, + -0.0034010845702141523, + -0.0208295788615942, + -0.03955690935254097, + 0.0752396211028099, + 0.000703571829944849, + 0.005405989475548267, + 1.504836563981371e-05, + 0.06414525210857391, + -0.009085241705179214, + 0.027296021580696106, + 0.024188349023461342, + -0.0032183921430259943, + 0.011077196337282658, + -0.08368206769227982, + -0.04385519400238991, + -0.005888304207473993, + 0.09012148529291153, + 0.041730575263500214, + 0.04634794965386391, + -0.046625204384326935, + 0.019592467695474625, + 0.03820464760065079, + -0.052208226174116135, + -0.05127403885126114, + -0.07070224732160568, + -0.10946397483348846, + -0.02491743490099907, + 0.04725247621536255, + -0.006861098576337099, + -0.007378910202533007, + -0.02645428478717804, + 0.025665726512670517, + -0.07632731646299362, + -0.022292472422122955, + -0.00551155349239707, + -0.01217030081897974, + -0.1013801321387291, + 0.08122768998146057, + -0.020194273442029953, + -0.011915815062820911, + -0.01448545977473259, + -0.007581145968288183, + 0.029728978872299194, + 0.012791475281119347, + -0.007644242607057095, + 0.054123442620038986, + -0.03109591081738472, + 0.12052806466817856, + 0.034566473215818405, + 0.03542143851518631, + -0.04828246310353279, + -0.04990104213356972, + 0.026809511706233025, + -0.016920553520321846, + 0.013551686890423298, + -0.04233415797352791, + -0.023852741345763206, + 0.0052564991638064384, + 0.01660555601119995, + -0.011059868149459362, + -0.005984058137983084, + -0.02277461811900139, + 0.012010655365884304, + -0.07333488762378693, + -0.06894110888242722, + -0.06394590437412262, + -0.034072600305080414, + 0.025652021169662476, + -0.01794145442545414, + 0.06473832577466965, + -0.032612480223178864, + -0.019849328324198723, + -0.004675809759646654, + -0.04782355576753616, + 0.008087724447250366, + 0.03149450197815895, + 0.0029616444371640682, + -0.06429534405469894, + -0.045255549252033234, + 0.0036460699047893286, + 0.015038575977087021, + 0.004513701889663935, + -0.040712643414735794, + 0.04019543528556824, + 0.011707697995007038, + 0.009084017015993595, + 0.04029427468776703, + -0.023445742204785347, + -0.0022266386076807976, + 0.017258603125810623, + 0.04052518680691719, + -0.04315268248319626, + -0.028342753648757935, + 0.00469751562923193, + -0.030420269817113876, + -0.030821990221738815, + -0.0491107739508152, + -0.04806193709373474, + -0.021074838936328888, + -0.043821804225444794, + -0.09808146953582764, + -0.0057372753508389, + 0.15185102820396423, + 0.0976082980632782, + -0.0067964112386107445, + 0.008251436054706573, + 0.03756606578826904, + -0.09444993734359741, + -0.05871569365262985, + -0.03434604033827782, + -0.059647031128406525, + -1.4218892625206664e-33, + 0.013943776488304138, + -0.0010484408121556044, + -0.08673045039176941, + 0.04656323790550232, + 0.023896006867289543, + 0.022590503096580505, + -0.043718233704566956, + -0.11370128393173218, + -0.0798463448882103, + 0.12045703828334808, + 0.08611397445201874, + 0.0005920701078139246, + 0.014087757095694542, + 0.06776415556669235, + 0.15584899485111237, + 0.03592471778392792, + -0.009703021496534348, + -0.0028885717038065195, + 0.08155806362628937, + -0.021833287551999092, + 0.0229268167167902, + 0.1361818015575409, + 0.05187562480568886, + 0.03279151767492294, + 0.04220093414187431, + -0.11950322985649109, + 0.019638609141111374, + -0.08707629889249802, + -0.02005990967154503, + 0.05333200842142105, + 0.031146958470344543, + 0.024886464700102806, + 0.018151236698031425, + 0.006394392345100641, + -0.008393320254981518, + 0.049454208463430405, + 0.011511208489537239, + -0.11244424432516098, + 0.022900395095348358, + -0.07104127109050751, + -0.0860910639166832, + -0.105606310069561, + -0.015370296314358711, + -0.0018074415856972337, + 0.06187388673424721, + 0.036774516105651855, + -0.04873361438512802, + 0.02914532646536827, + 0.018595509231090546, + 0.035610880702733994, + -0.048854656517505646, + 0.0029198515694588423, + -0.03855742886662483, + -0.0667790099978447, + -0.06252705305814743, + -0.05428072810173035, + 0.016579026356339455, + 0.09303151071071625, + -0.02629125863313675, + 0.056922219693660736, + -0.06786902248859406, + 0.06505598872900009, + 0.01036146841943264, + -0.1196640208363533, + -0.007825825363397598, + -0.0360511839389801, + -0.0181302297860384, + -0.018925242125988007, + 0.0845598578453064, + -0.01661565713584423, + -0.07681941241025925, + -0.0005784007953479886, + 0.057817310094833374, + 0.06446553021669388, + -0.02077632211148739, + -0.012178272008895874, + -0.007872707210481167, + 0.013201458379626274, + 0.033707067370414734, + -0.009096462279558182, + -0.06285502016544342, + 0.06724969297647476, + -0.05680941417813301, + 0.1362447589635849, + -0.0738336369395256, + 0.029765455052256584, + 0.011018635705113411, + 0.021466989070177078, + -0.03629348799586296, + 0.017613304778933525, + -0.0010879255132749677, + -0.010595661588013172, + 0.0556468665599823, + -0.026741214096546173, + -0.08237586170434952, + -1.8174119793391686e-33, + -0.035712335258722305, + -0.028969209641218185, + -0.05349722132086754, + 0.08383067697286606, + 0.049940403550863266, + -0.006174223031848669, + -0.08644801378250122, + 0.02554433047771454, + -0.012080667540431023, + -0.03609231486916542, + 0.05791711434721947, + 0.01741144433617592, + -0.008020075038075447, + 0.0010892982827499509, + 0.022144168615341187, + 0.003755171550437808, + -0.01616307720541954, + 0.010390328243374825, + 0.0004992678877897561, + 0.043188173323869705, + 0.005857143551111221, + -0.05670898035168648, + -0.0553971603512764, + 0.14526867866516113, + 0.06292031705379486, + 0.019723976030945778, + -0.06720532476902008, + -0.021456755697727203, + 0.05782894417643547, + 0.03607954829931259, + -0.051152005791664124, + 0.008780287578701973, + 0.035566505044698715, + 0.06455567479133606, + -0.06240968406200409, + -0.06594321131706238, + 0.08753960579633713, + -0.041919443756341934, + -0.024810155853629112, + -0.06463804841041565, + 0.044621407985687256, + 0.0056104110553860664, + 0.05220421403646469, + -0.02157943695783615, + -0.03990726172924042, + -0.016076428815722466, + -0.007117230445146561, + -0.0744151696562767, + -0.03860284388065338, + 0.048128657042980194, + 0.021786615252494812, + -0.03213682398200035, + 0.004910544492304325, + 0.006371007766574621, + -0.028444861993193626, + -0.013083262369036674, + -0.006346681620925665, + -0.014155562967061996, + -0.01745903305709362, + 0.04915691167116165, + 0.05931667611002922, + 0.04561570659279823, + 0.029717206954956055, + 0.08364108949899673, + 0.050992246717214584, + -0.06397920846939087, + -0.03028448484838009, + -0.03400440886616707, + -0.15065768361091614, + -0.028198858723044395, + 0.0814083144068718, + -0.03859757259488106, + 0.032762542366981506, + 0.018152864649891853, + 0.021768387407064438, + -0.1059008538722992, + 0.028143029659986496, + -0.07601864635944366, + -0.045496173202991486, + 0.04969709739089012, + 0.03691980987787247, + 0.00594199588522315, + -0.09943266212940216, + 0.06267368048429489, + 0.03012550249695778, + -0.005201835185289383, + 0.030534980818629265, + -0.05005670338869095, + -0.002527054864913225, + -0.0684560239315033, + -0.05117369443178177, + 0.023815501481294632, + -0.09865535795688629, + 0.0415857769548893, + 0.025441791862249374, + -2.368792095808203e-08, + 0.04736379161477089, + -0.019065700471401215, + -0.0009038889547809958, + -0.0559280626475811, + 0.08041303604841232, + -0.010457680560648441, + 0.0067272307351231575, + -0.06125687062740326, + -0.02405039593577385, + -0.014761335216462612, + 0.08661811798810959, + 0.010877950116991997, + -0.09466619789600372, + -0.038417063653469086, + -0.03124113194644451, + 0.03464466705918312, + -0.10236974060535431, + 0.0007194471545517445, + 0.010987715795636177, + -0.09618977457284927, + 0.020685862749814987, + 0.01027402002364397, + -0.006428954657167196, + -0.004950253758579493, + -0.004849941469728947, + 0.06338350474834442, + -0.030929824337363243, + -0.011678244918584824, + 0.13011622428894043, + 0.09319473803043365, + -0.0015638332115486264, + 0.009734043851494789, + 0.0816328153014183, + -0.030057262629270554, + -0.09164807200431824, + 0.07130494713783264, + -0.01928287371993065, + -0.04197783023118973, + 0.07102510333061218, + 0.04588502272963524, + 0.015329127199947834, + -0.044686853885650635, + 0.02724134735763073, + -0.021472645923495293, + 0.0010140001541003585, + 0.005829274654388428, + 0.018066201359033585, + 0.035816363990306854, + -0.05701574310660362, + -0.04827244579792023, + -0.024577775970101357, + -0.026682280004024506, + 0.02555731125175953, + 0.0789031982421875, + -0.019068799912929535, + 0.0589204803109169, + 0.051327988505363464, + 0.01417835708707571, + 0.11970968544483185, + -0.009000798687338829, + 0.08863839507102966, + 0.0028348800260573626, + 0.041207924485206604, + 0.018075134605169296 + ], + "lock-laminated-open-bold||padlock,security,unsecured,authentication,unauthenticated,login,unlocked,unencrypted,encryption,privacy,private": [ + -0.0499897301197052, + 0.0044121649116277695, + -0.1020943745970726, + 0.0017384964739903808, + 0.02763889916241169, + 0.04929674044251442, + 0.08977290987968445, + -0.0475240983068943, + 0.036384277045726776, + -0.01568816602230072, + 0.11090897768735886, + 0.02322121150791645, + -0.011627484112977982, + -0.014242907054722309, + -0.003275188384577632, + -0.0082153445109725, + -0.00578122865408659, + -0.03471352159976959, + -0.03662421926856041, + 0.07790862768888474, + -0.005540772806853056, + 0.004810434300452471, + -0.016596131026744843, + 0.02485291287302971, + -0.02339244820177555, + 0.017741922289133072, + 0.024161754176020622, + -0.011922123841941357, + 0.0052168164402246475, + -0.0826258435845375, + -0.03651861473917961, + -0.002003604546189308, + 0.0761425569653511, + 0.03487664833664894, + 0.07018820941448212, + -0.04804028198122978, + 0.03377524018287659, + 0.038042258471250534, + -0.07320700585842133, + -0.06524991989135742, + -0.06601165235042572, + -0.10274868458509445, + -0.022102663293480873, + 0.066243976354599, + -0.013615140691399574, + -0.024646339938044548, + -0.027724994346499443, + 0.023405063897371292, + -0.05513283982872963, + -0.041527505964040756, + -0.019787762314081192, + -0.006322961300611496, + -0.10059501975774765, + 0.08281350880861282, + -0.01577863283455372, + -0.024788647890090942, + -0.00938650593161583, + -0.018009744584560394, + 0.027467450127005577, + 0.00025036680744960904, + 0.002395906252786517, + 0.05447430536150932, + -0.046141091734170914, + 0.11712604016065598, + 0.026210859417915344, + 0.0348287969827652, + -0.059377413243055344, + -0.04566837102174759, + 0.029638277366757393, + -0.01471883524209261, + 0.006678603123873472, + -0.04045842960476875, + -0.03674573451280594, + 0.005392600782215595, + 0.025121541693806648, + -0.0028685275465250015, + -0.02326580509543419, + -0.027490727603435516, + 0.01983465999364853, + -0.05449764430522919, + -0.05407792702317238, + -0.059641700237989426, + -0.036917898803949356, + 0.01884913630783558, + -0.01823379285633564, + 0.07275030761957169, + -0.035969655960798264, + -0.01472705788910389, + 0.006893729325383902, + -0.041292548179626465, + 0.00390067882835865, + 0.0354289673268795, + -0.0029901950620114803, + -0.06872516125440598, + -0.04052551090717316, + -0.025464102625846863, + 0.028302641585469246, + -0.017245039343833923, + -0.06763096153736115, + 0.056981682777404785, + 0.0178834218531847, + 0.017755145207047462, + 0.04364721104502678, + -0.011263726279139519, + 0.0050578005611896515, + 0.0339236706495285, + 0.06184207648038864, + -0.05175245180726051, + -0.027912788093090057, + 0.007314225193113089, + -0.016165841370821, + -0.04832526296377182, + -0.028675077483057976, + -0.05314972251653671, + -0.013797061517834663, + -0.04737892001867294, + -0.10812825709581375, + -0.008961634710431099, + 0.12656496465206146, + 0.09503950923681259, + -0.009145066142082214, + 0.008692853152751923, + 0.03017088770866394, + -0.08033183217048645, + -0.07428346574306488, + -0.035685427486896515, + -0.059149716049432755, + 6.251577882212919e-34, + 0.0036596041172742844, + 0.006114746909588575, + -0.07714753597974777, + 0.038027480244636536, + 0.047361381351947784, + 0.02243039570748806, + -0.04556199535727501, + -0.10931099206209183, + -0.08705242723226547, + 0.13478775322437286, + 0.07261097431182861, + 0.01347784698009491, + 0.01144369039684534, + 0.07221180945634842, + 0.16672423481941223, + 0.0322803258895874, + -0.007784978486597538, + 0.01815437525510788, + 0.08739935606718063, + -0.009347019717097282, + 0.03581124171614647, + 0.1225169375538826, + 0.05882064253091812, + 0.01874108612537384, + 0.04360289126634598, + -0.11287526041269302, + 0.011677268892526627, + -0.09559278190135956, + 0.006527940277010202, + 0.05326316878199577, + 0.03201160952448845, + 0.028504831716418266, + 0.022733209654688835, + 0.019363097846508026, + -0.00550678838044405, + 0.04908674955368042, + 0.006451214198023081, + -0.1139722391963005, + 0.03735323250293732, + -0.08331096172332764, + -0.09584828466176987, + -0.10808753222227097, + -0.023761823773384094, + -0.007520725019276142, + 0.07646336406469345, + 0.0191594660282135, + -0.04593466594815254, + 0.015291942283511162, + 0.006054040044546127, + 0.0442981980741024, + -0.0552283450961113, + 0.008628780953586102, + -0.0536334253847599, + -0.06618686765432358, + -0.0840742364525795, + -0.05217566341161728, + 0.008259955793619156, + 0.09359133243560791, + -0.023533182218670845, + 0.06642589718103409, + -0.05356893688440323, + 0.0739184096455574, + -0.005533318966627121, + -0.13317371904850006, + -0.01501481793820858, + -0.04026566445827484, + -0.010591167956590652, + -0.04165776073932648, + 0.08095643669366837, + 0.004277304746210575, + -0.08597970008850098, + -0.009923353791236877, + 0.048984840512275696, + 0.06642533093690872, + -0.04584342986345291, + -0.0010216707596555352, + -0.010403038002550602, + 0.018418477848172188, + 0.04168109595775604, + -0.00913358572870493, + -0.042228177189826965, + 0.051984500139951706, + -0.043411895632743835, + 0.1423799991607666, + -0.08724517375230789, + 0.04047594219446182, + 0.0038814274594187737, + 0.026002660393714905, + -0.03079373575747013, + 0.030361361801624298, + 0.0016286910977214575, + -0.0010812029941007495, + 0.059230588376522064, + -0.03618400916457176, + -0.06614365428686142, + -3.406293530541084e-33, + -0.03942199423909187, + -0.03914738446474075, + -0.04980938136577606, + 0.0580357201397419, + 0.05291738733649254, + -0.0018690618453547359, + -0.07966642826795578, + 0.031005583703517914, + -0.0033669399563223124, + -0.027908705174922943, + 0.056613218039274216, + 0.02258867397904396, + 0.037017811089754105, + -0.002933323383331299, + 0.04403579235076904, + 0.003141162684187293, + -0.012473592534661293, + 0.019017817452549934, + -0.021390382200479507, + 0.056095320731401443, + 0.00877099484205246, + -0.04704327508807182, + -0.04747314378619194, + 0.1345204859972, + 0.08096025884151459, + 0.029740599915385246, + -0.06621025502681732, + -0.028041349723935127, + 0.0319315530359745, + 0.03822953626513481, + -0.04358436167240143, + 0.012732567265629768, + 0.02023068629205227, + 0.06726113706827164, + -0.06615035980939865, + -0.056925371289253235, + 0.09092630445957184, + -0.028938710689544678, + -0.02895444445312023, + -0.0725637674331665, + 0.046188291162252426, + 0.006955727934837341, + 0.042753204703330994, + -0.023449884727597237, + -0.052312664687633514, + -0.015917344018816948, + -0.020830323919653893, + -0.06812423467636108, + -0.04910741373896599, + 0.03655504807829857, + 0.008558319881558418, + -0.035296730697155, + 0.015191180631518364, + -0.0005723633803427219, + -0.017750034108757973, + -0.004109856206923723, + 0.006279163062572479, + -0.027847139164805412, + 0.01766413077712059, + 0.04506455734372139, + 0.060702692717313766, + 0.0383911095559597, + 0.014411639422178268, + 0.08094655722379684, + 0.0549364872276783, + -0.06941325217485428, + -0.024945931509137154, + 0.005678465124219656, + -0.15401805937290192, + -0.04175405949354172, + 0.06683328747749329, + -0.034575145691633224, + 0.03287198394536972, + -0.013807890005409718, + 0.02765708416700363, + -0.0748673602938652, + 0.029698364436626434, + -0.07646521925926208, + -0.06009247153997421, + 0.04383307695388794, + 0.028772223740816116, + 0.0005668161902576685, + -0.09700325131416321, + 0.045549992471933365, + 0.041205015033483505, + -0.012498353607952595, + 0.0520767979323864, + -0.0570979118347168, + -0.006111135706305504, + -0.048910532146692276, + -0.06413411349058151, + 0.026017937809228897, + -0.08334177732467651, + 0.04977664351463318, + 0.044543590396642685, + -2.5895541710951875e-08, + 0.046123944222927094, + -0.04678279533982277, + 0.012645631097257137, + -0.054599545896053314, + 0.07602769881486893, + -0.008912141434848309, + -0.0013092166045680642, + -0.06010211631655693, + -0.03214288130402565, + -0.009507980197668076, + 0.08249637484550476, + 0.010702002793550491, + -0.08120913803577423, + -0.03101557120680809, + -0.0446280911564827, + 0.057225123047828674, + -0.09616298973560333, + 0.0030202148482203484, + 0.00836896151304245, + -0.08778677880764008, + 0.022128669545054436, + 0.011146546341478825, + -0.0024279106874018908, + 0.001280425931327045, + -0.010024541057646275, + 0.05273020267486572, + -0.027466192841529846, + -0.01168937236070633, + 0.11812659353017807, + 0.09765370935201645, + -0.012215053662657738, + 0.004652969539165497, + 0.07068507373332977, + -0.03713146969676018, + -0.09761711955070496, + 0.08852284401655197, + -0.03454939275979996, + -0.018489358946681023, + 0.05093954876065254, + 0.016172543168067932, + 0.014521677047014236, + -0.04051709547638893, + 0.02552781067788601, + -0.017070474103093147, + -0.015158278867602348, + -0.006026287097483873, + 0.01469480525702238, + 0.02938077412545681, + -0.05137708783149719, + -0.040827054530382156, + -0.03131205216050148, + -0.010615612380206585, + 0.027742771431803703, + 0.07057709991931915, + -0.0023576829116791487, + 0.06347889453172684, + 0.05002482980489731, + 0.009791799820959568, + 0.0940590351819992, + 0.01842361129820347, + 0.0897887572646141, + 0.0030356685165315866, + 0.04311126843094826, + 0.010621147230267525 + ], + "lock-open-bold||padlock,security,unsecured,authentication,unauthenticated,login,unlocked,unencrypted,encryption,privacy": [ + -0.034337785094976425, + -0.029193267226219177, + -0.0909741222858429, + -0.008927241899073124, + 0.0325024388730526, + 0.05361340939998627, + 0.08172725141048431, + -0.06861542910337448, + 0.04249301552772522, + -0.014407056383788586, + 0.08488437533378601, + 0.03582700341939926, + 0.004771032370626926, + -0.01718573458492756, + 0.026356276124715805, + 0.015809768810868263, + -0.01125604659318924, + -0.013046501204371452, + -0.02852889522910118, + 0.045495375990867615, + 0.006288472097367048, + 0.00066604238236323, + -0.013275247998535633, + -0.0011546065798029304, + -0.0087406225502491, + -0.022652514278888702, + 0.041816748678684235, + -0.0028744605369865894, + -0.01808224618434906, + -0.07003416121006012, + -0.05915125086903572, + -0.018760357052087784, + 0.06873543560504913, + 0.041754551231861115, + 0.03475075960159302, + -0.04573214054107666, + 0.04967884346842766, + 0.03428548201918602, + -0.07488072663545609, + -0.045923467725515366, + -0.07512134313583374, + -0.09465371072292328, + -0.03211406245827675, + 0.07755671441555023, + -0.033891890197992325, + -0.03697334602475166, + -0.036573510617017746, + -0.006778418086469173, + -0.036728568375110626, + -0.04050628840923309, + -0.014429092407226562, + -0.002615074161440134, + -0.11718479543924332, + 0.07611201703548431, + -0.01293760072439909, + -0.05400341749191284, + -0.027638906612992287, + -0.017204243689775467, + 0.043166644871234894, + -4.172302215010859e-05, + 0.010412275791168213, + 0.06882447004318237, + -0.03109108656644821, + 0.10201209038496017, + 0.02621295489370823, + 0.033972036093473434, + -0.053874384611845016, + -0.03234407678246498, + 0.033393483608961105, + -0.017321612685918808, + -0.03654703125357628, + -0.03891035541892052, + -0.04403175041079521, + -0.00973307341337204, + -0.012765812687575817, + 0.02618107758462429, + -0.03841742128133774, + -0.03144936263561249, + 0.015949156135320663, + -0.06503228098154068, + -0.03104458935558796, + -0.06330297142267227, + -0.03541168197989464, + 0.02874145843088627, + -0.004797443747520447, + 0.08412406593561172, + -0.05670429393649101, + -0.03599904477596283, + 0.02031201310455799, + -0.01933623105287552, + -0.017019720748066902, + 0.007775245700031519, + 0.004656282719224691, + -0.04904837906360626, + -0.03784250095486641, + -0.030466828495264053, + 0.04765239357948303, + -0.02147873304784298, + -0.09942752122879028, + 0.05639880523085594, + 0.023116551339626312, + 0.04183369129896164, + 0.021005144342780113, + -0.015714453533291817, + 0.021103838458657265, + 0.03539061173796654, + 0.06356196850538254, + -0.06924808025360107, + -0.014249265193939209, + 0.017321404069662094, + -0.0006994438008405268, + -0.05908874049782753, + 0.0015809631440788507, + -0.06183649227023125, + -0.01370200514793396, + -0.0009931413223966956, + -0.13500618934631348, + -0.0022386403288692236, + 0.12937554717063904, + 0.11561732739210129, + -0.009093644097447395, + -0.002151370979845524, + 0.02111450582742691, + -0.07521673291921616, + -0.059507086873054504, + -0.03503727167844772, + -0.03504863753914833, + 1.38416691411881e-33, + 0.01760624535381794, + 0.03336693346500397, + -0.07918617129325867, + 0.05052272230386734, + 0.043462321162223816, + 0.016415376216173172, + -0.0564085990190506, + -0.08934072405099869, + -0.11874310672283173, + 0.11775755137205124, + 0.06545761227607727, + 0.029236983507871628, + 0.021563438698649406, + 0.05327374115586281, + 0.1368701010942459, + 0.03100953996181488, + 0.023100661113858223, + 0.03174107149243355, + 0.06651802361011505, + 0.013334165327250957, + 0.03162353113293648, + 0.10314395278692245, + 0.048165541142225266, + 0.043186645954847336, + 0.036525070667266846, + -0.08459466695785522, + 0.015690525993704796, + -0.05999362841248512, + 0.01940547674894333, + 0.04417278617620468, + 0.012727939523756504, + 0.010543342679738998, + 0.02450510859489441, + 0.018654976040124893, + -0.0016188875306397676, + 0.02174975909292698, + 0.012221998535096645, + -0.10032929480075836, + 0.03902459517121315, + -0.1209278255701065, + -0.11654744297266006, + -0.0936972051858902, + -0.058001164346933365, + -0.027411723509430885, + 0.08411836624145508, + 0.02776842936873436, + -0.07680964469909668, + 0.0009428320336155593, + 0.016107890754938126, + 0.03630654886364937, + -0.07387956231832504, + 0.009582105092704296, + -0.06476792693138123, + -0.0590815432369709, + -0.07953431457281113, + -0.06746488809585571, + -0.009484625421464443, + 0.09513669461011887, + -0.02327745407819748, + 0.08003003150224686, + -0.04196816310286522, + 0.061357516795396805, + 0.019905786961317062, + -0.13820144534111023, + -0.03512907400727272, + -0.021552743390202522, + -0.007630111183971167, + -0.05523611605167389, + 0.05104517191648483, + 0.05665590614080429, + -0.0873047485947609, + -0.008562194183468819, + 0.05330365523695946, + 0.07624489068984985, + -0.05494498834013939, + 0.015145412646234035, + 0.026338325813412666, + 0.028284788131713867, + 0.04892440885305405, + -0.021252870559692383, + -0.03123546577990055, + 0.027067039161920547, + -0.03657966107130051, + 0.14909513294696808, + -0.09215691685676575, + 0.03771325945854187, + -0.021074730902910233, + 0.011120433919131756, + -0.041494663804769516, + 0.033636730164289474, + -0.009256353601813316, + 0.020216170698404312, + 0.062306758016347885, + -0.035372041165828705, + -0.09103195369243622, + -4.006816125493758e-33, + -0.02869155816733837, + -0.04499739781022072, + -0.04648858681321144, + 0.03069513849914074, + 0.024487348273396492, + 0.03934887796640396, + -0.059367574751377106, + 0.016157323494553566, + 0.005686141084879637, + -0.020709577947854996, + 0.06296681612730026, + 0.03291449695825577, + 0.05334906652569771, + -0.01412888988852501, + 0.037324901670217514, + -0.009701092727482319, + 0.0059389276430010796, + 0.05035388097167015, + -0.03995709866285324, + 0.08388122171163559, + 0.0024152088444679976, + -0.030908362939953804, + -0.06468015909194946, + 0.11158061027526855, + 0.07788367569446564, + 0.02831125259399414, + -0.06233053281903267, + -0.00887414813041687, + -0.014981360174715519, + 0.023556867614388466, + -0.010226380079984665, + 0.016917580738663673, + 0.004871932789683342, + 0.054916031658649445, + -0.054433099925518036, + -0.040493886917829514, + 0.09498214721679688, + -0.013488192111253738, + -0.04884079471230507, + -0.04122920334339142, + 0.04393840581178665, + 0.0016373987309634686, + 0.029941139742732048, + -0.005880530457943678, + -0.05899442359805107, + -0.018604418262839317, + -0.04637625068426132, + -0.07455067336559296, + -0.0565907247364521, + 0.04856325313448906, + 0.039212532341480255, + -0.053475383669137955, + 0.009445184841752052, + -0.023040570318698883, + -0.028172487393021584, + 0.021069705486297607, + 0.02262725867331028, + -0.030137374997138977, + 0.03218810632824898, + 0.04572970047593117, + 0.049792610108852386, + 0.017968088388442993, + 0.01712256483733654, + 0.09810738265514374, + 0.02292824164032936, + -0.057577405124902725, + -0.009548679925501347, + 0.056706782430410385, + -0.12931475043296814, + -0.01935962587594986, + 0.08416103571653366, + -0.05506657809019089, + 0.031087156385183334, + 0.019145125523209572, + 0.017216013744473457, + -0.04996294155716896, + 0.03680978715419769, + -0.10100334137678146, + -0.09594687074422836, + 0.04921489953994751, + 0.03282162919640541, + -0.005022251047194004, + -0.09995295107364655, + 0.03192053735256195, + 0.02225533314049244, + 0.0031779150012880564, + 0.059784285724163055, + -0.02622486650943756, + -0.0017240766901522875, + -0.02109186165034771, + -0.07365482300519943, + 0.03422867879271507, + -0.07051200419664383, + 0.022921737283468246, + 0.03904496878385544, + -2.5817726623245107e-08, + 0.0373765267431736, + -0.06659121066331863, + 0.019018176943063736, + -0.03927268832921982, + 0.08072393387556076, + 0.013878955505788326, + -0.021762380376458168, + -0.03792254254221916, + -0.042415719479322433, + -0.010645369999110699, + 0.07950464636087418, + 0.03483906388282776, + -0.08452995121479034, + -0.05235721170902252, + -0.043306805193424225, + 0.05517102777957916, + -0.06543375551700592, + 0.010451976209878922, + 0.01495587732642889, + -0.06424436718225479, + 0.010025134310126305, + 0.028674978762865067, + 0.0008753558504395187, + -0.02103470265865326, + 0.020303932949900627, + 0.0386614054441452, + -0.010078019462525845, + 0.026849830523133278, + 0.09106777608394623, + 0.10549283772706985, + -0.002867247210815549, + -0.017342986539006233, + 0.06260489672422409, + -0.05635378882288933, + -0.11299854516983032, + 0.10363902896642685, + -0.062182217836380005, + -0.003811319824308157, + 0.026235030964016914, + 0.028075339272618294, + 0.017472729086875916, + -0.044452518224716187, + 0.013565868139266968, + -0.010690554045140743, + -0.059589821845293045, + -0.0012344527058303356, + 0.020603979006409645, + 0.018988601863384247, + -0.036498356610536575, + -0.04594188556075096, + -0.049082644283771515, + 0.007521019782871008, + 0.020928852260112762, + 0.06989692151546478, + 0.01891322247684002, + 0.07855688035488129, + 0.04215637221932411, + 0.009677475318312645, + 0.08386426419019699, + 0.009411000646650791, + 0.10613112151622772, + 0.010973047465085983, + 0.0334499292075634, + -0.014639987610280514 + ], + "lock-simple-bold||padlock,security,secured,authentication,authenticated,login,locked,encrypted,encryption,privacy,private": [ + -0.024379193782806396, + -0.024559738114476204, + -0.08150210976600647, + -0.016141753643751144, + 0.029793759807944298, + 0.05671175941824913, + 0.09604503959417343, + -0.0471782349050045, + 0.01713905669748783, + 0.00042817607754841447, + 0.08516469597816467, + 0.012988625094294548, + 0.03170743212103844, + -0.0176982544362545, + 0.01286968681961298, + 0.01607774756848812, + -0.03148513287305832, + -0.01934552937746048, + -0.04482026398181915, + 0.04855973646044731, + 0.016902925446629524, + -0.023249125108122826, + -0.023113200441002846, + 0.04372883215546608, + 0.021914392709732056, + -0.0016737655969336629, + 0.04300014674663544, + 0.019697170704603195, + 0.0037376314867287874, + -0.06909247487783432, + -0.07963554561138153, + -0.01910911127924919, + 0.07520196586847305, + 0.04124791920185089, + 0.00948404148221016, + -0.06056530401110649, + 0.030591458082199097, + 0.039954833686351776, + -0.0421479158103466, + -0.03700226917862892, + -0.11745808273553848, + -0.09791040420532227, + -0.03000943921506405, + 0.04273640364408493, + -0.0376892015337944, + -0.004881595727056265, + -0.03995068743824959, + 0.013391971588134766, + -0.05629098042845726, + -0.04103011637926102, + 0.0069001768715679646, + 0.003561374032869935, + -0.1277715265750885, + 0.08234735578298569, + -0.005753418896347284, + -0.04180419072508812, + -0.03932027146220207, + -0.006938010919839144, + 0.05099397525191307, + 0.008546543307602406, + 0.014215756207704544, + 0.059202082455158234, + -0.014150705188512802, + 0.09943598508834839, + 0.03578021004796028, + 0.026267655193805695, + -0.060242991894483566, + -0.038913168013095856, + 0.03840525820851326, + -0.01407652534544468, + -0.03633289784193039, + -0.06011345982551575, + -0.04560866579413414, + 0.0001553717302158475, + -0.00937636848539114, + 0.00426772516220808, + -0.032246753573417664, + 0.0003980721812695265, + -0.003138582920655608, + -0.056741464883089066, + -0.07740537822246552, + -0.07013610005378723, + -0.02898554317653179, + 0.04553992673754692, + -0.01896836794912815, + 0.062067560851573944, + -0.04921683296561241, + -0.02097494527697563, + 0.01424002181738615, + -0.027005067095160484, + -0.007308014202862978, + 0.014751467853784561, + 0.03241334855556488, + -0.043848562985658646, + -0.03144842013716698, + -0.0006959253805689514, + 0.04125359654426575, + -7.77342647779733e-05, + -0.10373061895370483, + 0.028695160523056984, + 0.024991704151034355, + 0.038173407316207886, + 0.04688424617052078, + -0.05566290393471718, + 0.0327112190425396, + 0.028217509388923645, + 0.039687514305114746, + -0.08483407646417618, + -0.01811002381145954, + 0.009088244289159775, + -0.015207231044769287, + -0.03389164060354233, + -0.023907041177153587, + -0.048713333904743195, + -0.019848385825753212, + 0.015074880793690681, + -0.13429483771324158, + 0.0006868002819828689, + 0.14351259171962738, + 0.11853545904159546, + -0.009624769911170006, + -0.0001212854404002428, + 0.01623128168284893, + -0.07337063550949097, + -0.06041484326124191, + -0.029165277257561684, + -0.04231934994459152, + -1.1344237720660068e-33, + 0.02695859968662262, + 0.021323062479496002, + -0.08811947703361511, + 0.059561096131801605, + 0.007868497632443905, + 0.025466587394475937, + -0.07373135536909103, + -0.0860375314950943, + -0.10469047725200653, + 0.10062560439109802, + 0.0979006439447403, + -0.003081223927438259, + 0.037258002907037735, + 0.036276623606681824, + 0.11709611862897873, + 0.035680536180734634, + 0.030015254393219948, + 0.004124866798520088, + 0.06374683976173401, + 0.007477406412363052, + 0.023903625085949898, + 0.13960258662700653, + 0.03757932409644127, + 0.0437820702791214, + 0.047320686280727386, + -0.08642130345106125, + 0.03426574170589447, + -0.06301596760749817, + -0.009819753468036652, + 0.035988688468933105, + 0.011865601874887943, + 0.008865710347890854, + 0.022442776709794998, + 0.011842983774840832, + 0.004228444769978523, + 0.009523424319922924, + 0.05408018082380295, + -0.09145095944404602, + 0.020866837352514267, + -0.12260567396879196, + -0.11248671263456345, + -0.09818185865879059, + -0.04950866475701332, + -0.03038182482123375, + 0.08842603862285614, + 0.05322668328881264, + -0.06978864222764969, + 0.01871519908308983, + 0.027508120983839035, + 0.024884896352887154, + -0.07011520862579346, + 0.010641091503202915, + -0.049431104212999344, + -0.04925457015633583, + -0.046861521899700165, + -0.05266715958714485, + 0.0010772744426503778, + 0.09594635665416718, + -0.032685548067092896, + 0.0837312713265419, + -0.04854246601462364, + 0.06631885468959808, + 0.038440998643636703, + -0.10017620027065277, + -0.023923607543110847, + -0.013969983905553818, + -0.027997039258480072, + -0.04592007026076317, + 0.06360512226819992, + 0.032373081892728806, + -0.07644703984260559, + 0.011701218783855438, + 0.05067303776741028, + 0.05084514990448952, + -0.015678053721785545, + -0.003179624443873763, + 0.04563501849770546, + 0.01146317645907402, + 0.0029545885045081377, + -0.002556408988311887, + -0.063682422041893, + 0.054970499128103256, + -0.05304499343037605, + 0.15364961326122284, + -0.09220301359891891, + 0.020629309117794037, + -0.031370170414447784, + 0.028094468638300896, + -0.04845564067363739, + 0.010218901559710503, + -0.010386970825493336, + 0.00816173106431961, + 0.05758409947156906, + -0.023662900552153587, + -0.09094565361738205, + -2.2837372004660934e-33, + -0.028097424656152725, + -0.03631812706589699, + -0.05245240032672882, + 0.05949673429131508, + 0.03508784621953964, + 0.04481429234147072, + -0.04707243666052818, + -0.0010826829820871353, + -0.003532196395099163, + -0.02115970104932785, + 0.03943328559398651, + 0.025041772052645683, + -0.016670260578393936, + -0.008779988624155521, + 0.022790731862187386, + 0.0008929531904868782, + -0.0110007394105196, + 0.05426184833049774, + -0.007539275102317333, + 0.08002742379903793, + 0.004739341326057911, + -0.023778652772307396, + -0.07675344496965408, + 0.12402292340993881, + 0.06497300416231155, + 0.025196276605129242, + -0.07933815568685532, + 0.009782049804925919, + -0.0003478638827800751, + 0.03124828077852726, + -0.009064065292477608, + 0.006000128574669361, + 0.015548729337751865, + 0.04658026993274689, + -0.04820425063371658, + -0.05716771259903908, + 0.07026894390583038, + -0.027905084192752838, + -0.05019139498472214, + -0.03740572929382324, + 0.024416422471404076, + -0.0007964380783960223, + 0.04269900172948837, + -0.01688465103507042, + -0.0362362340092659, + -0.030139120295643806, + -0.009234217926859856, + -0.10840781778097153, + -0.050986386835575104, + 0.05109177902340889, + 0.0307156965136528, + -0.05484585836529732, + -0.005530807189643383, + -0.013606385327875614, + -0.035094231367111206, + 0.0035585062578320503, + 0.007734216284006834, + -0.01139609981328249, + 0.0039237551391124725, + 0.05303681641817093, + 0.04599154740571976, + 0.02124171331524849, + 0.021018169820308685, + 0.10771975666284561, + 0.0047685327008366585, + -0.04964859038591385, + -0.02428322844207287, + 0.011638336814939976, + -0.13949598371982574, + -0.001581226708367467, + 0.08599583804607391, + -0.05245529115200043, + 0.03448862582445145, + 0.04822026193141937, + 0.014942425303161144, + -0.058850113302469254, + 0.025423115119338036, + -0.10367992520332336, + -0.0820402130484581, + 0.03453638404607773, + 0.04367602616548538, + -0.005411275662481785, + -0.10528021305799484, + 0.026413392275571823, + 0.014157179743051529, + 0.005209718830883503, + 0.04792558029294014, + -0.03758206591010094, + -0.004228879231959581, + -0.04304676502943039, + -0.05261610075831413, + 0.028051981702446938, + -0.074885793030262, + 0.004702734760940075, + 0.015871195122599602, + -2.354839345741766e-08, + 0.05071352422237396, + -0.05370541661977768, + 0.010370041243731976, + -0.04681311547756195, + 0.09106600284576416, + 0.005455763079226017, + -0.015394972637295723, + -0.04324829578399658, + -0.03506900742650032, + -0.0018870084313675761, + 0.07144097983837128, + 0.020255789160728455, + -0.0942627564072609, + -0.03648053854703903, + -0.040124062448740005, + 0.038780272006988525, + -0.07472050189971924, + -9.331286855740473e-05, + 0.02569328434765339, + -0.05680065602064133, + 0.009232264943420887, + 0.008988531306385994, + -0.022396523505449295, + -0.026567408815026283, + 0.021959107369184494, + 0.057485468685626984, + 0.0028953852597624063, + 0.03172531723976135, + 0.10501442104578018, + 0.09749206155538559, + 0.014758088625967503, + -0.020248902961611748, + 0.0703965276479721, + -0.043131038546562195, + -0.115920290350914, + 0.08241677284240723, + -0.04566304385662079, + -0.007602246478199959, + 0.04988975077867508, + 0.05266411229968071, + 0.03375128284096718, + -0.053967878222465515, + 0.006022784858942032, + -0.02475915104150772, + -0.03768298029899597, + 0.010492783039808273, + 0.02924608625471592, + -0.006092282943427563, + -0.03347659856081009, + -0.06275922060012817, + -0.0382017083466053, + 0.0009012052323669195, + 0.024597931653261185, + 0.06724821776151657, + 0.016583504155278206, + 0.09427662938833237, + 0.053715091198682785, + 0.031100545078516006, + 0.10749548673629761, + -0.00970245897769928, + 0.1098312959074974, + 0.05729128420352936, + 0.010928570292890072, + -0.009721087291836739 + ], + "lock-simple-open-bold||padlock,security,unsecured,authentication,unauthenticated,login,unlocked,unencrypted,encryption,privacy,private": [ + -0.028193868696689606, + -0.026228688657283783, + -0.08904105424880981, + -0.008619023486971855, + 0.03192795440554619, + 0.06526638567447662, + 0.0726475939154625, + -0.055249832570552826, + 0.028599951416254044, + 0.0013090330176055431, + 0.09686675667762756, + 0.022991174831986427, + 0.012283731251955032, + -0.019142339006066322, + 0.03183355554938316, + 0.007600714452564716, + -0.023374410346150398, + -0.02618112973868847, + -0.03458208963274956, + 0.05284295976161957, + 0.006054460536688566, + -0.01739327795803547, + -0.03174135088920593, + 0.00664928276091814, + 0.00113734882324934, + -0.013362603262066841, + 0.03848474472761154, + 0.008643856272101402, + -0.0028253013733774424, + -0.06597739458084106, + -0.06438697874546051, + -0.020529573783278465, + 0.0669737309217453, + 0.030633987858891487, + 0.04054270312190056, + -0.058522410690784454, + 0.04269476607441902, + 0.03930271789431572, + -0.07200321555137634, + -0.04552607238292694, + -0.0975116416811943, + -0.08653299510478973, + -0.02697286754846573, + 0.06385521590709686, + -0.043967366218566895, + -0.029182983562350273, + -0.041192058473825455, + 0.00608418183401227, + -0.035394370555877686, + -0.05845772475004196, + -0.006678483448922634, + 0.008422359824180603, + -0.12520992755889893, + 0.07623028010129929, + -0.002527137054130435, + -0.05275533348321915, + -0.03883418068289757, + -0.014971141703426838, + 0.04624658823013306, + -0.0039252047426998615, + 0.018467364832758904, + 0.0633406937122345, + -0.02748267538845539, + 0.09198562800884247, + 0.020712045952677727, + 0.03529958799481392, + -0.0665019080042839, + -0.03234701231122017, + 0.040179815143346786, + -0.01231299713253975, + -0.04149703308939934, + -0.05561451613903046, + -0.0519949346780777, + 0.00017599912825971842, + -0.009862037375569344, + 0.012103342451155186, + -0.04483604058623314, + -0.011378695257008076, + -0.00286785583011806, + -0.04301905259490013, + -0.05870380625128746, + -0.06879336386919022, + -0.035262562334537506, + 0.03298378363251686, + -0.011252569034695625, + 0.07324843853712082, + -0.05078868567943573, + -0.020795488730072975, + 0.026988521218299866, + -0.02053169719874859, + -0.010283263400197029, + 0.023810461163520813, + 0.014828931540250778, + -0.04927623271942139, + -0.026950230821967125, + -0.02231612801551819, + 0.05349457263946533, + -0.020734179764986038, + -0.11878710240125656, + 0.04723374918103218, + 0.02787785790860653, + 0.04392766207456589, + 0.047889482229948044, + -0.038201216608285904, + 0.03291656821966171, + 0.0430840365588665, + 0.05980352312326431, + -0.0870123952627182, + -0.019623173400759697, + 0.010554257780313492, + -0.003456990933045745, + -0.0527108833193779, + -0.0026008994318544865, + -0.059336062520742416, + -0.016673410311341286, + 0.005254924297332764, + -0.13779889047145844, + 0.001059114234521985, + 0.1243538036942482, + 0.12102417647838593, + -0.009126029908657074, + -0.0017402051016688347, + 0.016786307096481323, + -0.06302561610937119, + -0.0729881301522255, + -0.031019974499940872, + -0.038711607456207275, + 1.0079259780736396e-33, + 0.018602129071950912, + 0.02978852204978466, + -0.07829318940639496, + 0.0492357574403286, + 0.03599116578698158, + 0.019668249413371086, + -0.0653611496090889, + -0.07886992394924164, + -0.11135376244783401, + 0.11303941160440445, + 0.0840676799416542, + 0.007842114195227623, + 0.02665957622230053, + 0.04497921094298363, + 0.12705926597118378, + 0.03073042258620262, + 0.03406665101647377, + 0.02352534607052803, + 0.06545676290988922, + 0.005872218869626522, + 0.031632814556360245, + 0.12295639514923096, + 0.04515956714749336, + 0.03350835293531418, + 0.04639874026179314, + -0.08306903392076492, + 0.025161506608128548, + -0.06802570074796677, + 0.01803293451666832, + 0.03728950768709183, + 0.01907774806022644, + 0.012244286015629768, + 0.019031131640076637, + 0.02353891357779503, + -0.0007383634219877422, + 0.012618198990821838, + 0.03177540749311447, + -0.0928855612874031, + 0.04015132412314415, + -0.13155189156532288, + -0.1208256259560585, + -0.09630100429058075, + -0.04804109036922455, + -0.03182530775666237, + 0.09636476635932922, + 0.034630563110113144, + -0.0733087882399559, + 0.009805048815906048, + 0.016507212072610855, + 0.03126973658800125, + -0.0724574401974678, + 0.01530512236058712, + -0.06760554015636444, + -0.050004202872514725, + -0.0713382437825203, + -0.05325183644890785, + -0.005070437677204609, + 0.09693033993244171, + -0.029079033061861992, + 0.08914715051651001, + -0.03880774602293968, + 0.07551462948322296, + 0.01843954436480999, + -0.11844400316476822, + -0.026971423998475075, + -0.016766885295510292, + -0.017684288322925568, + -0.06562233716249466, + 0.05342148616909981, + 0.049910612404346466, + -0.08427169919013977, + 0.0016949779819697142, + 0.044108796864748, + 0.05349034070968628, + -0.037746816873550415, + 0.013909230008721352, + 0.04124602675437927, + 0.014476475305855274, + 0.023388508707284927, + -0.011932778172194958, + -0.03505869209766388, + 0.04360296577215195, + -0.04306929558515549, + 0.15675488114356995, + -0.10964459180831909, + 0.03483862429857254, + -0.030367884784936905, + 0.033632099628448486, + -0.03812410682439804, + 0.024872468784451485, + -0.00494332006201148, + 0.014017979614436626, + 0.059966541826725006, + -0.03889777138829231, + -0.07726976275444031, + -3.858255680068899e-33, + -0.024194518104195595, + -0.03945080563426018, + -0.047110434621572495, + 0.03910312056541443, + 0.04095741733908653, + 0.04327642545104027, + -0.053692396730184555, + 0.010534361004829407, + 0.004757163114845753, + -0.011495149694383144, + 0.04569072276353836, + 0.03266488015651703, + 0.031953226774930954, + -0.014335986226797104, + 0.043275654315948486, + 0.0030067043844610453, + -0.004800447262823582, + 0.05499015375971794, + -0.03396526724100113, + 0.08439049124717712, + 0.0091862166300416, + -0.015271923504769802, + -0.06844085454940796, + 0.10973405838012695, + 0.07849210500717163, + 0.029577288776636124, + -0.07785336673259735, + 0.0007137306383810937, + -0.014408144168555737, + 0.03224077820777893, + -0.014395329169929028, + 0.013040384277701378, + 0.005495712626725435, + 0.047619886696338654, + -0.055297333747148514, + -0.046424347907304764, + 0.07765460014343262, + -0.009835856035351753, + -0.05038703978061676, + -0.04439907893538475, + 0.030958447605371475, + -0.000963853788562119, + 0.036352433264255524, + -0.017816567793488503, + -0.04918825253844261, + -0.02433685027062893, + -0.027646595612168312, + -0.09288738667964935, + -0.062057238072156906, + 0.041101790964603424, + 0.021145040169358253, + -0.05946265161037445, + 0.002514885738492012, + -0.01796025037765503, + -0.025997087359428406, + 0.013901879079639912, + 0.022189727053046227, + -0.027850601822137833, + 0.03128096088767052, + 0.049255236983299255, + 0.04648163914680481, + 0.013663438148796558, + 0.005548491142690182, + 0.0987241119146347, + 0.014842761680483818, + -0.056703321635723114, + -0.01546096708625555, + 0.03994747996330261, + -0.13779020309448242, + -0.02191922999918461, + 0.07300396263599396, + -0.04592254012823105, + 0.03869420662522316, + 0.00940010603517294, + 0.0171239972114563, + -0.03466373309493065, + 0.030444001778960228, + -0.10102188587188721, + -0.09106451272964478, + 0.03456585854291916, + 0.03809582442045212, + -0.0040427083149552345, + -0.09661256521940231, + 0.013772586360573769, + 0.024645769968628883, + 0.003579074516892433, + 0.06381471455097198, + -0.04120128974318504, + -0.005242008715867996, + -0.025918295606970787, + -0.06841728836297989, + 0.034332334995269775, + -0.056015852838754654, + 0.02263815514743328, + 0.038396820425987244, + -2.5792026292492665e-08, + 0.05102197453379631, + -0.07410881668329239, + 0.01739386096596718, + -0.04263395816087723, + 0.08230413496494293, + 0.007718723267316818, + -0.023050816729664803, + -0.04226645082235336, + -0.043584223836660385, + 0.001865064725279808, + 0.06974852085113525, + 0.019966186955571175, + -0.08055111020803452, + -0.0321664959192276, + -0.0576120987534523, + 0.058992404490709305, + -0.06658264994621277, + 0.0007246778113767505, + 0.020806588232517242, + -0.05450005456805229, + 0.012960681691765785, + 0.016149234026670456, + -0.009356729686260223, + -0.013713257387280464, + 0.013749129138886929, + 0.043386511504650116, + 0.0032185232266783714, + 0.02508619986474514, + 0.09429589658975601, + 0.10662872344255447, + 0.0008478990057483315, + -0.024472180753946304, + 0.06628970056772232, + -0.04485052078962326, + -0.11635211110115051, + 0.09919926524162292, + -0.06105423346161842, + 0.008404160849750042, + 0.02285781316459179, + 0.02313804067671299, + 0.029453979805111885, + -0.05119830369949341, + 0.003568633459508419, + -0.02043485827744007, + -0.05077604949474335, + -0.0027474837843328714, + 0.02315625734627247, + -0.010429036803543568, + -0.035629674792289734, + -0.04835869371891022, + -0.04593784362077713, + 0.012976963073015213, + 0.023267943412065506, + 0.05900952219963074, + 0.023995816707611084, + 0.09513135254383087, + 0.05114979296922684, + 0.018349837511777878, + 0.07944189012050629, + 0.01478511281311512, + 0.10156593471765518, + 0.04321650415658951, + 0.01709972694516182, + -0.008340932428836823 + ], + "lockers-bold||locker room,gym,storage": [ + -0.04873361811041832, + 0.00657991785556078, + -0.02439650148153305, + 0.0236931461840868, + 0.040881890803575516, + 0.015666289255023003, + 0.10330826789140701, + -0.008117019198834896, + 0.054943908005952835, + 0.029071172699332237, + 0.017620256170630455, + 0.0712064802646637, + 0.06787307560443878, + -0.009198748506605625, + 0.0466945618391037, + 0.015463488176465034, + 0.04868298023939133, + 0.04306541755795479, + -0.06377172470092773, + 0.024973874911665916, + -0.01118980161845684, + -0.03032933920621872, + 0.010099743492901325, + 0.04219481721520424, + -0.022208672016859055, + 0.034433066844940186, + -0.07271920144557953, + 0.004038510378450155, + 0.02631642296910286, + -0.06044868379831314, + -0.08556841313838959, + -0.09929773211479187, + 0.10336076468229294, + 0.040702130645513535, + 0.043798938393592834, + 0.0491354763507843, + -0.008865104988217354, + -0.03255150094628334, + -0.0025762361474335194, + 0.05456161871552467, + -0.06577186286449432, + -0.007264803163707256, + -0.026751713827252388, + 0.0955251008272171, + -0.035590365529060364, + 0.05168898031115532, + -0.001354257226921618, + -0.035313550382852554, + 0.00034847931237891316, + -0.01838327758014202, + 0.01642405055463314, + -0.007705847267061472, + -0.0016061242204159498, + 0.08134087175130844, + -0.009371931664645672, + 0.1114497259259224, + -0.005870137829333544, + -0.07053980231285095, + 0.055702924728393555, + 0.041457802057266235, + 0.08554834872484207, + 0.043874289840459824, + 0.03373830020427704, + 0.0502859465777874, + 0.03958655521273613, + 0.017262034118175507, + -0.004340190440416336, + 0.1389118731021881, + 0.00541722634807229, + -0.04877597466111183, + 0.05831008777022362, + 0.028583010658621788, + -0.022196317091584206, + -0.0034630398731678724, + 0.0033626481890678406, + 0.04563269019126892, + -0.027038756757974625, + 0.0238755252212286, + 0.026199841871857643, + -0.030766546726226807, + -0.08647888898849487, + -0.1421656459569931, + -0.019130529835820198, + -0.0025942721404135227, + -0.06755776703357697, + 0.019372422248125076, + -0.04132445901632309, + -0.07515653222799301, + -0.030414843931794167, + -0.0008438663207925856, + -0.05813930928707123, + 0.0059776813723146915, + -0.022271065041422844, + 0.0105788828805089, + -0.0663684830069542, + 0.02988155372440815, + -0.03680787235498428, + 0.0014888436999171972, + -0.06185634061694145, + 0.050963737070560455, + 0.038769133388996124, + 0.10297571867704391, + 0.1171615794301033, + -0.02375410683453083, + -0.023016123101115227, + -0.1403329223394394, + -0.030412718653678894, + 0.0059297471307218075, + -0.03454422578215599, + 0.028384758159518242, + -0.013889579102396965, + -0.07465668767690659, + -0.002953575924038887, + 0.022335434332489967, + -0.00024623723584227264, + 0.018211597576737404, + 0.02626127563416958, + 0.0034053181298077106, + 0.02115819603204727, + 0.09187953919172287, + 0.06401999294757843, + -0.030616477131843567, + 0.05435962229967117, + -0.06856474280357361, + -0.08199714124202728, + 0.002964939456433058, + -0.04301214963197708, + -3.352759313752729e-33, + 0.03713547810912132, + -0.010666139423847198, + -0.08543311059474945, + 0.10840664803981781, + 0.0010743819875642657, + -0.011044077575206757, + -0.015410627238452435, + -0.024983834475278854, + -0.051864419132471085, + 0.05875173956155777, + 0.03149665892124176, + 0.02164740301668644, + -0.023530734702944756, + 0.002527036238461733, + 0.07963352650403976, + 0.00642439816147089, + -0.01791580766439438, + 0.0054083652794361115, + 0.003975714091211557, + 0.017729422077536583, + 0.018936311826109886, + 0.05599488317966461, + 0.018787378445267677, + 0.0005639571463689208, + -0.008619832806289196, + 0.007845538668334484, + 0.004220142960548401, + -0.03650086745619774, + -0.04023971036076546, + 0.0224554892629385, + -0.02665381319820881, + -0.015939034521579742, + 0.03420161083340645, + 0.010779546573758125, + 0.012898582033813, + -0.018786059692502022, + 0.0561605766415596, + -0.022876257076859474, + 0.021207408979535103, + -0.09304242581129074, + -0.03922214359045029, + -0.04166734218597412, + 0.006575006991624832, + -0.03579119220376015, + 0.049856871366500854, + 0.09042055904865265, + 0.011769578792154789, + -0.052314382046461105, + 0.007786640897393227, + -0.02174588292837143, + -0.024571336805820465, + 0.04453543573617935, + -0.028478842228651047, + -0.039605990052223206, + -0.005756656173616648, + -0.11537396162748337, + 0.006985647138208151, + 0.021243955940008163, + 0.01625644601881504, + 0.020464148372411728, + 0.050860997289419174, + 0.12814964354038239, + 0.03889868035912514, + 0.04729726165533066, + -0.016675086691975594, + -0.011534246616065502, + -0.01590791344642639, + 0.00032500934321433306, + 0.09784868359565735, + -0.029356198385357857, + -0.014620760455727577, + -0.0061421869322657585, + -0.0024609887041151524, + 0.08396628499031067, + 0.02099868655204773, + -0.030755171552300453, + -0.028186703100800514, + 0.044277191162109375, + -0.03362298011779785, + -0.11978507786989212, + -0.020393382757902145, + -0.010169856250286102, + -0.024310745298862457, + 0.2023029774427414, + -0.07906831055879593, + 0.010085532441735268, + -0.012110582552850246, + 0.029937434941530228, + 0.0072051300667226315, + 0.0922594666481018, + -0.04594657942652702, + -0.004850473254919052, + -0.03456686809659004, + -0.036542072892189026, + -0.08195475488901138, + 4.928092466041952e-34, + 0.07511045038700104, + -0.02559022791683674, + -0.0705309733748436, + -0.024582738056778908, + 0.035375747829675674, + 0.007614546921104193, + -0.08658337593078613, + 0.01983305811882019, + 0.017504338175058365, + 0.045290492475032806, + -0.020296692848205566, + -0.0231181588023901, + -0.03698276728391647, + -0.012522297911345959, + 0.05606457591056824, + 0.02387906052172184, + 0.07957419753074646, + -0.05822325497865677, + -0.031164737418293953, + 0.015064259059727192, + 0.026629004627466202, + -0.04614608362317085, + -0.06991828978061676, + 0.11213736981153488, + -0.056526318192481995, + 0.04053519293665886, + -0.06497354060411453, + 0.04409923404455185, + -0.05621445178985596, + 0.026039816439151764, + -0.0917954370379448, + -0.027910683304071426, + 0.02134603261947632, + 0.09123122692108154, + -0.05018578842282295, + -0.09056972712278366, + 0.02066922001540661, + -0.008318143896758556, + -0.0036555493716150522, + -0.04012799263000488, + 0.06611664593219757, + -0.05610183626413345, + -0.06733716279268265, + 0.01112943235784769, + 0.008502521552145481, + 0.002043560380116105, + -0.057488199323415756, + -0.08562842756509781, + 0.014641042798757553, + 0.01588897407054901, + -0.014023778028786182, + -0.06109682098031044, + -0.07075012475252151, + -0.11081154644489288, + -0.041042350232601166, + 0.004378222860395908, + -0.04795652627944946, + -0.006612989120185375, + 0.030107052996754646, + 0.06547463685274124, + -0.011670016683638096, + 0.0075871869921684265, + -0.05056467652320862, + 0.01622413657605648, + -0.045164499431848526, + -0.0601620227098465, + 0.0023837187327444553, + -0.023056263104081154, + -0.1196436807513237, + 0.04408181458711624, + 0.055829618126153946, + 0.014234844595193863, + 0.08797598630189896, + 0.06784308701753616, + -0.0021763418335467577, + 0.006266267970204353, + 0.07017116248607635, + -0.015515053644776344, + 0.02573288045823574, + -0.021016636863350868, + -0.0749988928437233, + -0.013819738291203976, + -0.04550565406680107, + 0.025789456441998482, + 0.06629662215709686, + 0.0457739531993866, + 0.03363834321498871, + 0.09203323721885681, + -0.05457025021314621, + -0.13453878462314606, + 0.007084960583597422, + -0.007398600690066814, + -0.05352390930056572, + -0.0443686842918396, + 0.05027447268366814, + -1.691401152470462e-08, + 0.026055019348859787, + 0.05931071192026138, + 0.020588276907801628, + -0.002153214067220688, + -0.021937664598226547, + 0.0012354010250419378, + 0.01989130489528179, + 0.029775893315672874, + 0.03569979965686798, + 0.023363711312413216, + 0.05468958988785744, + 0.03636136278510094, + -0.025329362601041794, + -0.0031485091894865036, + -0.08299946039915085, + 0.08630457520484924, + -0.13912640511989594, + 0.04450148344039917, + -0.0461311861872673, + -0.04465220868587494, + 0.0339416041970253, + -0.008541014976799488, + 0.09677322208881378, + 0.03164272755384445, + 0.03160828724503517, + -0.06893540918827057, + -0.07347417622804642, + -0.02450583502650261, + 0.017874961718916893, + 0.0567336305975914, + 0.0780661329627037, + -0.03167570009827614, + 0.0269183162599802, + -0.009440700523555279, + -0.04983864724636078, + 0.037104468792676926, + -0.0007934675086289644, + -0.044601764529943466, + 0.011042551137506962, + 0.06607747077941895, + -0.15441575646400452, + -0.16303440928459167, + -0.06538727134466171, + -0.002091790782287717, + -0.002673259237781167, + 0.02026074379682541, + 0.014728175476193428, + 0.02088560350239277, + -0.06996416300535202, + -0.021405886858701706, + -0.04088233411312103, + -0.06371799111366272, + -9.90932821878232e-05, + 0.038493163883686066, + 0.05342371389269829, + 0.0029606090392917395, + -0.012159926816821098, + 0.02355649322271347, + -0.010707293637096882, + 0.020523294806480408, + 0.03267987444996834, + -0.027938740327954292, + -0.06242647394537926, + 0.014529574662446976 + ], + "log-bold||*new*,tree,stump,stick,branch": [ + 0.03167328983545303, + -0.024279894307255745, + 0.016779163852334023, + 0.04412496089935303, + 0.10390567034482956, + -0.08271102607250214, + 0.04764324426651001, + -0.0030840823892503977, + -0.0004307716153562069, + 0.0769362598657608, + 0.03328933194279671, + -0.004336073994636536, + 0.02286403812468052, + 0.005045745521783829, + -0.002584925154224038, + 0.05978336185216904, + -0.09831856191158295, + 0.04921414330601692, + -0.017558054998517036, + -0.016736941412091255, + 0.09394381940364838, + 0.10615279525518417, + -0.023308362811803818, + 0.06977293640375137, + 0.04806026443839073, + -0.033769432455301285, + -0.025072548538446426, + -0.0578799694776535, + 0.04972907900810242, + -0.1036372184753418, + -0.022829608991742134, + 0.003878635121509433, + 0.0890655592083931, + 0.09828992187976837, + 0.04401393234729767, + -0.016573801636695862, + -0.0029701765161007643, + -0.06281662732362747, + 0.04922221601009369, + 0.021771268919110298, + 0.02396806888282299, + -0.0019275926752015948, + -0.012194469571113586, + -0.0471210815012455, + 0.0035775324795395136, + -0.01944725215435028, + -0.09824931621551514, + 0.004274605307728052, + 0.027787428349256516, + -0.011194306425750256, + 0.0261211097240448, + -0.11656133085489273, + -0.06140851229429245, + -0.0153010543435812, + -0.013166381977498531, + 0.02614721842110157, + -0.01318665873259306, + -0.08540067076683044, + 0.0818677693605423, + -0.00022079955670051277, + 0.04860632121562958, + 0.07120531052350998, + 0.030475901439785957, + -0.011459961533546448, + 0.041897695511579514, + -0.04453227296471596, + -0.04289749264717102, + 0.029570823535323143, + 0.010134696960449219, + 0.1250630021095276, + -0.03890416771173477, + 0.01370660774409771, + -0.03930232673883438, + -0.017153486609458923, + -0.009118936955928802, + 6.0504553403006867e-05, + 0.04090508073568344, + 0.07090625166893005, + -0.05043334886431694, + -0.07180770486593246, + -0.15239866077899933, + -0.034320708364248276, + -0.04537298530340195, + 0.022019006311893463, + -0.007731747347861528, + 0.06329906731843948, + -0.07977499067783356, + 0.05462604761123657, + -0.009754381142556667, + -0.02382308803498745, + -0.10423953086137772, + 0.0033106666523963213, + -0.0005868017906323075, + 0.041754815727472305, + -0.11937166005373001, + 0.03543771058320999, + 0.06432119756937027, + 0.05804161727428436, + -0.011947378516197205, + 0.09823403507471085, + -0.001962308306246996, + 0.0931529775261879, + 0.06330059468746185, + -0.07768542319536209, + -0.09335774928331375, + -0.02254292741417885, + -0.06625695526599884, + -0.03287123143672943, + 0.002466566627845168, + -0.002124031772837043, + 0.05119951441884041, + -0.03880718722939491, + -0.02998550608754158, + 0.01692156307399273, + 0.0178888700902462, + -0.0282505601644516, + -0.02057557739317417, + -0.10975878685712814, + -0.015538973733782768, + 0.10409152507781982, + 0.0829993486404419, + -0.04302816092967987, + -0.015809834003448486, + -0.028095688670873642, + -0.0006070457166060805, + 0.0072641754522919655, + 0.04964951053261757, + -1.2069301003346487e-33, + 0.06596492230892181, + 0.10272835195064545, + -0.06245991215109825, + 0.02058345451951027, + 0.060621440410614014, + 0.07016290724277496, + -0.08435317128896713, + -0.06686028838157654, + -0.10241775214672089, + 0.12157908827066422, + -0.04247409850358963, + 0.023337053135037422, + -0.0022283357102423906, + -0.017349326983094215, + 0.03327836096286774, + -0.05477650836110115, + -0.03358708694577217, + -0.05310589075088501, + -0.0883844718337059, + 0.04787085950374603, + -0.0861966460943222, + 0.0654153898358345, + -0.06689788401126862, + -0.05601494014263153, + 0.007905603386461735, + -0.04141656309366226, + 0.05581260100007057, + -0.08275285363197327, + -0.029515067115426064, + 0.03216898813843727, + 0.01753794029355049, + 0.0041581084951758385, + 0.037128746509552, + 0.0060927909798920155, + 0.013516844250261784, + 0.011642125435173512, + -0.002702426863834262, + -0.04108177125453949, + -0.04265940189361572, + 0.01776672527194023, + -0.01837041601538658, + -0.022970451042056084, + -0.013492543250322342, + 0.029498834162950516, + 0.04360165819525719, + 0.05300763249397278, + -0.03684157505631447, + 0.024195082485675812, + 0.012774080969393253, + -0.019390808418393135, + 0.027207981795072556, + 0.05613616853952408, + 0.0418131984770298, + -0.03057522512972355, + 0.005246235989034176, + -0.026644378900527954, + 0.015440505929291248, + 0.04959690570831299, + 0.012688728049397469, + 0.034577615559101105, + 0.08618529140949249, + -0.022586781531572342, + 0.02739289216697216, + 0.015371954068541527, + -0.05009893327951431, + 0.05946410074830055, + 0.04309331998229027, + 0.0702652856707573, + 0.04875403642654419, + -0.04670855775475502, + -0.03364097699522972, + -0.0014670031378045678, + 0.015029408037662506, + 0.02907545678317547, + -0.034779585897922516, + 0.033489469438791275, + 0.026585251092910767, + 0.06603047996759415, + 0.02556569315493107, + -0.04476912319660187, + -0.08035510033369064, + -0.02685411460697651, + -0.049531545490026474, + 0.035189997404813766, + 0.048242583870887756, + -0.04640240967273712, + 0.023678667843341827, + -0.015149984508752823, + -0.07307803630828857, + 0.013478652574121952, + -0.06832107156515121, + 0.031118130311369896, + 0.011633255518972874, + -0.06370409578084946, + 0.001617205678485334, + -9.064582240656213e-34, + -0.024629678577184677, + 0.05824226886034012, + -0.0009217890910804272, + -0.03488760069012642, + -0.0619097575545311, + -0.01861228421330452, + -0.048104412853717804, + -0.053891438990831375, + 0.00588354142382741, + -0.04168733209371567, + 0.014877875335514545, + 0.01650870591402054, + -0.03511388972401619, + 0.0035106290597468615, + 0.05698182061314583, + 0.03844229504466057, + -0.04707719385623932, + 0.08695199340581894, + -0.04006032273173332, + 0.018161237239837646, + 0.015866070985794067, + 0.016260385513305664, + -0.07545864582061768, + 0.08283556997776031, + -0.03884914889931679, + 0.028373997658491135, + 0.04524103179574013, + 0.030301621183753014, + -0.03459024801850319, + -0.05916857346892357, + 0.00554003706201911, + -0.05741749331355095, + 0.015569489449262619, + -0.016242865473031998, + -0.019690237939357758, + -0.027966078370809555, + 0.014105000533163548, + -0.06560742855072021, + 0.052876051515340805, + 0.006857412401586771, + 0.0025434826966375113, + 0.03854140266776085, + 0.020377378910779953, + 0.010217119939625263, + -0.09502367675304413, + -0.022824624553322792, + -0.0007542315870523453, + -0.04577283561229706, + -0.012013173662126064, + 0.03871795907616615, + 0.029113322496414185, + -0.039590902626514435, + 0.0461018830537796, + 0.00811841432005167, + -0.06452863663434982, + 0.0014392260927706957, + -0.009862272068858147, + 0.006938122678548098, + -0.057032510638237, + 0.012765773572027683, + -0.07869905978441238, + 0.031648747622966766, + -0.005460732150822878, + 0.05454593896865845, + 0.03676794096827507, + -0.14535103738307953, + -0.013872668147087097, + -0.05839715525507927, + -0.07647018134593964, + -0.062373142689466476, + 0.011099029332399368, + 0.024185003712773323, + -0.05950206518173218, + 0.06986542046070099, + 0.0422239825129509, + 0.003928887192159891, + -0.02412540651857853, + -0.048559803515672684, + -0.050882041454315186, + 0.04655985161662102, + -0.10028820484876633, + 0.0330178327858448, + -0.07028371095657349, + 0.02440551109611988, + 0.011005209758877754, + -0.018849294632673264, + -0.03428741171956062, + 0.07052479684352875, + 0.023408537730574608, + -0.0636293813586235, + -0.05394262075424194, + 0.07701844722032547, + 0.016935128718614578, + -0.006160141434520483, + -0.050531938672065735, + -1.8370947429957596e-08, + -0.08455462753772736, + -0.015016000717878342, + -0.04008134827017784, + -0.008478706702589989, + 0.12868832051753998, + 0.006481366232037544, + -0.04829392954707146, + -0.018852097913622856, + -0.12495848536491394, + -0.06217261776328087, + 0.02934972755610943, + 0.055643562227487564, + -0.06579508632421494, + -0.01754336804151535, + 0.03602069616317749, + -0.01694566011428833, + -0.019064592197537422, + 0.02584180049598217, + -0.032232072204351425, + -0.028028998523950577, + -0.030395904555916786, + 0.051195405423641205, + 0.058336250483989716, + 0.015334605239331722, + -0.041040245443582535, + -0.04060617834329605, + 0.02674085460603237, + 0.07304079830646515, + 0.01167916040867567, + 0.06876368075609207, + 0.10972478240728378, + 0.1196354329586029, + -0.0154207032173872, + 0.019367484375834465, + -0.09168815612792969, + -0.0074914381839334965, + 0.017729176208376884, + 0.026141079142689705, + -0.021985122933983803, + 0.1181013211607933, + -0.023320769891142845, + -0.031233234331011772, + 0.011273439042270184, + -0.021886710077524185, + -0.11474525183439255, + -0.035903822630643845, + 0.014042224735021591, + 0.0004125358536839485, + 0.023075884208083153, + -0.08220374584197998, + -0.01378223393112421, + 0.003145664930343628, + -0.010640859603881836, + 0.06656002998352051, + 0.00045178356231190264, + -0.042770396918058395, + 0.06558901816606522, + 0.05135883018374443, + 0.059342220425605774, + 0.016246985644102097, + 0.12702178955078125, + -0.07661809027194977, + 0.07545395940542221, + 0.04477359727025032 + ], + "magic-wand-bold||selection,wizard,games": [ + 0.0041524916887283325, + -0.019701706245541573, + -0.008226396515965462, + 0.018406998366117477, + 0.004144057631492615, + 0.050808291882276535, + 0.12290827929973602, + -0.06596723198890686, + 0.00048093977966345847, + 0.003578826319426298, + -0.0331626832485199, + 0.004773267544806004, + -0.018657557666301727, + -0.07978678494691849, + -0.010582641698420048, + 0.039766665548086166, + 0.019941654056310654, + 0.03258633241057396, + -0.012177400290966034, + -0.021036751568317413, + 0.0397057980298996, + 0.01961646042764187, + 0.057509470731019974, + 0.039420388638973236, + -0.037076685577631, + -0.013737568631768227, + 0.016012929379940033, + 0.035787079483270645, + -0.01898191124200821, + -0.09672731906175613, + -0.02454359643161297, + -0.010390781797468662, + 0.020307790488004684, + -0.012660626322031021, + -0.06039805710315704, + 0.019780341535806656, + -0.11847833544015884, + -0.00938483513891697, + 0.028240349143743515, + -0.005347683560103178, + 0.027925603091716766, + -0.08175364881753922, + -0.093324214220047, + 0.049262192100286484, + -0.059458404779434204, + 0.011197428219020367, + -0.05452544987201691, + -0.036618154495954514, + 0.030453162267804146, + 0.05022687092423439, + -0.02304966375231743, + -0.07711822539567947, + -0.043119605630636215, + 0.009131488390266895, + 0.05369921773672104, + 0.031107261776924133, + -0.023182837292551994, + -0.04585607349872589, + 0.02047673426568508, + 0.023194115608930588, + -0.029049590229988098, + 0.03824244439601898, + 0.014006875455379486, + 0.08383974432945251, + 0.06847263872623444, + -0.02313222549855709, + 0.02002900093793869, + 0.02350766398012638, + -0.05524026229977608, + -0.06770549714565277, + 0.030858507379889488, + -0.03754468262195587, + -0.012289394624531269, + 0.008144067600369453, + 0.003654591739177704, + 0.041755300015211105, + -0.04095092788338661, + -0.03809114918112755, + -0.009067893028259277, + -0.02739175409078598, + -0.06592153012752533, + -0.03947867080569267, + -0.037052448838949203, + 0.09695751965045929, + 0.09205645322799683, + 0.06445112079381943, + -0.047526050359010696, + -0.042951926589012146, + 0.03853177651762962, + -0.029253894463181496, + -0.05775139480829239, + -0.020788731053471565, + 0.06020711362361908, + 0.09938425570726395, + 0.0004056270990986377, + 0.020632972940802574, + 0.042302198708057404, + -0.07996325939893723, + -0.08052767813205719, + 0.07208173722028732, + 0.003793321317061782, + 0.03925784304738045, + 0.07283809781074524, + -0.01728900708258152, + -0.021409574896097183, + 0.007654231041669846, + -0.03879271820187569, + -0.10899970680475235, + -0.02249148115515709, + -0.02068225108087063, + 0.01753952167928219, + -0.13089601695537567, + -0.004633674398064613, + -0.07565276324748993, + -0.004705347586423159, + -0.002114012371748686, + -0.040023352950811386, + 0.011249497532844543, + 0.011340624652802944, + 0.03684539347887039, + 0.08151368796825409, + -0.0374845415353775, + -0.040781810879707336, + -0.05592947080731392, + 0.001317853108048439, + 0.01614355854690075, + -0.008637375198304653, + -3.61858707561562e-33, + 0.02227458916604519, + -0.04387087747454643, + -0.0003708528238348663, + 0.09788848459720612, + -0.042774494737386703, + 0.057210031896829605, + 8.80894367583096e-06, + -0.04904545843601227, + -0.08020270615816116, + 0.06289777159690857, + 0.035994935780763626, + 0.042866747826337814, + -0.08374041318893433, + 0.06066630408167839, + 0.059547118842601776, + -0.056676074862480164, + 0.0026499496307224035, + 0.02254679426550865, + -0.07726909220218658, + 0.020217854529619217, + -0.06013030558824539, + 0.11254148930311203, + -0.08805695921182632, + -0.05867212638258934, + -0.06758561730384827, + 0.030739914625883102, + -0.06872668117284775, + -0.01746152527630329, + -0.02077130228281021, + 0.050392549484968185, + 0.001791265676729381, + 0.0015217945910990238, + -0.022376660257577896, + -0.07524374127388, + -0.03574556112289429, + 0.03277554735541344, + -0.0781111940741539, + -0.06617844849824905, + 0.02578227035701275, + 0.06411750614643097, + -0.056281279772520065, + -0.044974882155656815, + -0.007552729919552803, + 0.00936313346028328, + -0.023913010954856873, + 0.07814357429742813, + -0.043409764766693115, + -0.07899099588394165, + -0.03423202782869339, + 0.06830823421478271, + 0.011721180751919746, + -0.015880264341831207, + 0.04450348764657974, + -0.032964132726192474, + -0.002009045332670212, + -0.046449314802885056, + -0.04914290830492973, + 0.09462982416152954, + 0.04240299388766289, + 0.028505999594926834, + 0.001851772191002965, + -0.021918823942542076, + 0.013911969028413296, + 0.07018144428730011, + 0.0013267331523820758, + 0.04773423448204994, + 0.0052959066815674305, + 0.03322381526231766, + 0.10978158563375473, + -0.001606899662874639, + 0.015195757150650024, + 0.08163464814424515, + 0.021429389715194702, + -0.03582799807190895, + 0.024859881028532982, + -0.05919292941689491, + 0.020751643925905228, + -0.0034496483858674765, + 0.030540766194462776, + -0.10494085401296616, + -0.05689959228038788, + 0.01940012164413929, + -0.1417268067598343, + 0.05913296341896057, + 0.039305735379457474, + -0.010920367203652859, + 0.011723866686224937, + -0.040065716952085495, + -0.02753339894115925, + 0.001998554915189743, + 0.0030853450298309326, + 0.08906791359186172, + 0.014860523864626884, + -0.08664517104625702, + -0.05370350554585457, + 4.1059443702371515e-34, + 0.09080293029546738, + -0.01269010454416275, + 0.013409553095698357, + 0.05600450932979584, + -0.003721209242939949, + 0.05103559419512749, + 0.04543457552790642, + 0.023034755140542984, + -0.029757821932435036, + 0.011410902254283428, + 0.02283583953976631, + 0.08981743454933167, + -0.02261568233370781, + -0.017113231122493744, + 0.029423195868730545, + 0.017772438004612923, + -0.036779724061489105, + 0.04913002997636795, + 0.01279287040233612, + 0.07178498804569244, + 0.0264461487531662, + -0.011456441134214401, + -0.05905435234308243, + 0.021642372012138367, + -0.05228571593761444, + -0.01125379092991352, + -0.012873556464910507, + -0.02360486052930355, + 0.023066967725753784, + 0.004905838053673506, + -0.0010288452031090856, + 0.03438971936702728, + -0.02798410877585411, + 0.08420687168836594, + -0.07854937762022018, + 0.011192815378308296, + 0.08112291246652603, + -0.014025960117578506, + -0.05441579595208168, + 0.0022817892022430897, + 0.015046792104840279, + -0.01906079240143299, + 0.03274311125278473, + 8.336896280525252e-05, + -0.06084547936916351, + 0.014687660150229931, + -0.013139852322638035, + 0.002260889858007431, + 0.05419657379388809, + 0.08228228986263275, + -0.03152830898761749, + 0.02308063395321369, + -0.0991889014840126, + -0.04496840015053749, + -0.06522484868764877, + -0.018617315217852592, + -0.015521148219704628, + -0.07856275141239166, + 0.0007399841560982168, + 0.0980510264635086, + -0.0548706129193306, + 0.02855128049850464, + 0.013691117987036705, + 0.003924318589270115, + 0.011719007976353168, + 0.029434800148010254, + 0.05324258655309677, + 0.04991518333554268, + 0.020629961043596268, + -0.07044710218906403, + 0.022343449294567108, + 0.044328395277261734, + 0.07897542417049408, + -0.02998192422091961, + 0.019846905022859573, + 0.02040880359709263, + 0.044916316866874695, + 0.013623370788991451, + 0.03805750608444214, + 0.008110607042908669, + 0.041931234300136566, + 0.011454862542450428, + -0.019995832815766335, + -0.009426155127584934, + -0.036791834980249405, + 0.04586314409971237, + -0.034639690071344376, + 0.0062565067782998085, + -0.05242857336997986, + -0.10320373624563217, + 0.019419576972723007, + 0.04625490680336952, + 0.13879930973052979, + -0.04678220674395561, + -0.05224418267607689, + -1.7942612728916174e-08, + -0.03124455362558365, + 0.03997233882546425, + 0.06855140626430511, + -0.06072337552905083, + 0.10526737570762634, + -0.012266687117516994, + -0.09636230766773224, + -0.01576610468327999, + -0.03693750128149986, + 0.006808320991694927, + 0.0857953429222107, + 0.06808855384588242, + 0.037513963878154755, + 0.002452998422086239, + 0.11095170676708221, + 0.025842711329460144, + -0.058394867926836014, + 0.0531679131090641, + -0.050174959003925323, + -0.00276886485517025, + -0.00965800229460001, + 0.04662230238318443, + 0.0281490758061409, + -0.03254665806889534, + -0.020603885874152184, + 0.015338136814534664, + -0.1757339984178543, + 0.00028154064784757793, + 0.06226776912808418, + 0.09452494233846664, + 0.12772206962108612, + 0.03457944840192795, + 0.09111805260181427, + 0.01312978658825159, + -0.06764562427997589, + -0.07788877189159393, + -0.09075083583593369, + -0.020118221640586853, + 0.012911079451441765, + 0.006587523967027664, + -0.010396200232207775, + -0.12394849210977554, + 0.004131551366299391, + -0.05282315984368324, + -0.0867769718170166, + -0.009775921702384949, + 0.08299550414085388, + -0.1092417985200882, + -0.08617829531431198, + -0.0377996489405632, + -0.03122446872293949, + -0.021553456783294678, + 0.07208830863237381, + 0.008117930963635445, + 0.04427981376647949, + -0.03983527794480324, + 0.022430535405874252, + 0.10764151811599731, + -0.03664615377783775, + -0.03190336748957634, + 0.08953581005334854, + 0.006177056115120649, + -0.013363759033381939, + 0.04904863238334656 + ], + "magnet-bold||magnetism,science,physics": [ + -0.038805779069662094, + -0.036305349320173264, + -0.07168173044919968, + 0.03391729295253754, + 0.03099101223051548, + -0.024952152743935585, + 0.034191083163022995, + -0.020997555926442146, + -0.043875135481357574, + -0.041036516427993774, + -0.05735557898879051, + 0.05568321421742439, + 0.03637901321053505, + -0.04321346431970596, + -0.023276885971426964, + 0.019399041309952736, + 0.0047285850159823895, + -0.030930476263165474, + -0.014156675897538662, + 0.0783950537443161, + -0.03168192133307457, + -0.02608705870807171, + 0.07643785327672958, + 0.020236702635884285, + 0.0015423436416313052, + 0.02979261241853237, + 0.05983153358101845, + -0.03555469587445259, + -0.0394231416285038, + -0.062180425971746445, + 0.03250214830040932, + 0.004709672182798386, + 0.014278563670814037, + 0.019637715071439743, + -0.014598308131098747, + 0.019954776391386986, + -0.03906380757689476, + 0.002439990872517228, + 0.012130910530686378, + 0.06391096860170364, + 0.012842758558690548, + -0.05322922766208649, + 0.07463221251964569, + 0.0017048653680831194, + 0.012802846729755402, + 0.00463461596518755, + 0.05527256801724434, + 0.010421299375593662, + 0.06215487793087959, + 0.011018441058695316, + -0.09366778284311295, + -0.09579060226678848, + -0.11493582278490067, + 0.025490371510386467, + 0.021348943933844566, + 0.06401097029447556, + 0.02997269481420517, + -0.03128853067755699, + -0.010665303096175194, + -0.035752054303884506, + 0.05681104212999344, + 0.01829594187438488, + 0.011132019571959972, + 0.05798547714948654, + 0.10885491967201233, + 0.01917753368616104, + 0.007976456545293331, + 0.031772442162036896, + 0.013825529254972935, + 0.02067253179848194, + 0.10499222576618195, + -0.009369525127112865, + -0.07514984905719757, + -0.046524617820978165, + -0.019364845007658005, + 0.010107485577464104, + 0.06939314305782318, + 0.03395799919962883, + 0.02990240417420864, + -0.0643698126077652, + -0.13995680212974548, + -0.08884003013372421, + -0.08912067860364914, + -0.04405606538057327, + 0.013459417037665844, + 0.04767676815390587, + -0.05621696263551712, + -0.0974620133638382, + -0.05507051944732666, + -0.013182824477553368, + 0.04893587529659271, + -0.005059034563601017, + -0.11258465051651001, + 0.05498533695936203, + -0.00026450594305060804, + 0.016613347455859184, + 0.007780309300869703, + -0.011222487315535545, + -0.04531840980052948, + 0.06329832226037979, + 0.0816403478384018, + 0.04784876108169556, + -0.03127748519182205, + 0.07750190794467926, + -0.04397943615913391, + 0.03905200585722923, + 0.07414711266756058, + -0.010935069993138313, + -0.005989867728203535, + 0.0320780873298645, + 0.0424838587641716, + -0.04211993142962456, + -0.02738867700099945, + -0.054849859327077866, + -0.024724140763282776, + -0.05770765617489815, + 0.015206506475806236, + 0.051393646746873856, + -0.015277775935828686, + 0.0864286944270134, + 0.07450347393751144, + 0.03568699583411217, + -0.002599777653813362, + -0.025771746411919594, + -0.012251908890902996, + 0.029463045299053192, + -0.002351274248212576, + -3.756544194654077e-33, + 0.053061604499816895, + 0.026252109557390213, + 0.027573084458708763, + 0.13737007975578308, + 0.008189700543880463, + 0.015205683186650276, + 0.016372237354516983, + -0.0003544119535945356, + -0.016357246786355972, + 0.08073025196790695, + 0.051043231040239334, + 0.1329350769519806, + 0.03593853861093521, + 0.006699264980852604, + -0.06582526862621307, + -0.09141718596220016, + 0.04348386451601982, + -0.0972786694765091, + -0.06742902845144272, + -0.01027548685669899, + 0.021641209721565247, + 0.11577924340963364, + -0.06565830111503601, + -0.036180075258016586, + -0.050476912409067154, + -0.04532507434487343, + 0.03950812667608261, + 0.027276037260890007, + -0.06595035642385483, + 0.04987994208931923, + 0.02198837324976921, + 0.027004336938261986, + -0.034835513681173325, + -0.04508412256836891, + -0.04437244310975075, + 0.0024736172053962946, + -0.04129364714026451, + -0.050257112830877304, + 0.01932823471724987, + -0.06666775792837143, + -0.08382990956306458, + -0.036431729793548584, + -0.035783980041742325, + 0.03493410721421242, + 0.007223349064588547, + 0.06650905311107635, + 0.07162677496671677, + -0.0644550547003746, + 0.0609363354742527, + -0.007283772807568312, + 0.011757934466004372, + -0.084211066365242, + 0.005942423827946186, + 0.0010544788092374802, + 0.05336623638868332, + -0.04970601946115494, + -0.04107286036014557, + 0.07178956270217896, + -0.012144754640758038, + -0.04169926792383194, + 0.058271490037441254, + 0.021286608651280403, + 0.06507246941328049, + 0.022519733756780624, + -0.05915875360369682, + 0.017839673906564713, + -0.019558215513825417, + 0.03778824955224991, + 0.10881593078374863, + -0.0006220734212547541, + 0.03153855353593826, + 0.06137661263346672, + 0.034252818673849106, + 0.06150934100151062, + 0.008751993998885155, + 0.0355173796415329, + -0.005566907115280628, + -0.04548134654760361, + 0.10850854218006134, + -0.024440867826342583, + -0.09122826159000397, + 0.0004472413857001811, + -0.05243959277868271, + 0.03852201998233795, + -0.06096947565674782, + 0.10568038374185562, + -0.05252256616950035, + -0.050984688103199005, + 0.030193444341421127, + 0.06524517387151718, + -0.09241892397403717, + 0.0003128632379230112, + 0.019002974033355713, + -0.10640131682157516, + -0.08746470510959625, + -3.648313858379977e-34, + -0.0774855986237526, + -0.001674835686571896, + -0.04033293202519417, + -0.022074908018112183, + -0.056352052837610245, + 0.03386326879262924, + -0.021441562101244926, + 0.04966117814183235, + -0.07177834212779999, + 0.04371744021773338, + 0.03956048563122749, + -0.07989445328712463, + -0.03255174681544304, + -0.12814633548259735, + -0.0043416572734713554, + -0.011951843276619911, + -0.039561621844768524, + 0.013140423223376274, + -0.03297248110175133, + 0.06585700809955597, + 0.00027157922158949077, + -0.01139037124812603, + -0.026618096977472305, + 0.06498681753873825, + 0.03393838182091713, + 0.031176641583442688, + -0.062547966837883, + -0.07078833132982254, + 0.0031345849856734276, + 0.034797314554452896, + -0.0033097092527896166, + -0.03305473178625107, + 0.0030864474829286337, + 0.04220444709062576, + -0.03777212277054787, + 0.015430448576807976, + 0.01266810018569231, + -0.028895346447825432, + 0.07122423499822617, + -0.09453117847442627, + -0.04700257629156113, + 0.044255368411540985, + 0.0879485160112381, + -0.030327100306749344, + 0.022791871801018715, + -0.021587343886494637, + -0.03072616271674633, + 0.031764157116413116, + 0.012656687758862972, + 0.08363277465105057, + -0.019259249791502953, + -0.07842876017093658, + 0.02680233307182789, + 0.011431681923568249, + -0.08344096690416336, + -0.05533073469996452, + -0.009041300974786282, + -0.04504268988966942, + 0.023311741650104523, + 0.10924091935157776, + 0.01843194290995598, + 0.03309386596083641, + 0.0026688564103096724, + 0.01384068001061678, + -0.0325920395553112, + -0.06487216055393219, + 0.04311541095376015, + 0.028537141159176826, + 0.07224865257740021, + -0.023027490824460983, + 0.06117626652121544, + 0.06510286033153534, + 0.022404873743653297, + 0.003103647381067276, + 0.016649888828396797, + -0.005463538225740194, + 0.09940057247877121, + 0.007491089403629303, + -0.03502707928419113, + 0.008577086962759495, + 0.016930045560002327, + 0.061344828456640244, + -0.05915750190615654, + -0.01819125935435295, + -0.07004183530807495, + -0.030111249536275864, + 0.02884112112224102, + -0.04249846935272217, + -0.0026495466008782387, + -0.03185521066188812, + -0.037047479301691055, + 0.03293386101722717, + 0.033944886177778244, + -0.11132864654064178, + -0.03593315929174423, + -1.8807266854992122e-08, + 0.019208518788218498, + -0.0010221839183941483, + 0.00412640068680048, + -0.036471493542194366, + 0.03546762466430664, + 0.005404185503721237, + -0.09534592181444168, + -0.1170753538608551, + -0.04194856062531471, + -0.020561233162879944, + 0.047014784067869186, + 0.015846727415919304, + -0.06459497660398483, + -0.01991679146885872, + -0.014512034133076668, + 0.01979036070406437, + -0.05938047915697098, + -0.009257023222744465, + -0.006115326192229986, + 0.019312649965286255, + 0.02239171601831913, + 0.04468172416090965, + 0.07616347074508667, + -0.030982868745923042, + 0.08265625685453415, + 0.09076058119535446, + -0.07969541102647781, + -0.017901921644806862, + 0.06414395570755005, + -0.023027725517749786, + -0.004257917404174805, + -0.037616197019815445, + 0.054967619478702545, + 0.009245223365724087, + -0.11544022709131241, + -0.02523202635347843, + -0.05237977206707001, + -0.007106279954314232, + -0.042733196169137955, + 0.08077947050333023, + -0.03418147936463356, + -0.010814957320690155, + 0.030787622556090355, + -0.03525308147072792, + -0.05046122521162033, + -0.005061302799731493, + -0.08578866720199585, + -0.042955294251441956, + -0.0914732813835144, + -0.04814039170742035, + -0.045696455985307693, + -0.031306296586990356, + 0.08765378594398499, + 0.06097991764545441, + -0.0075715212151408195, + -0.01836872473359108, + -0.03472573682665825, + 0.09151220321655273, + -0.0356588214635849, + -0.04021226987242699, + 0.1439010202884674, + 0.02239733561873436, + -0.03858990967273712, + 0.03020828776061535 + ], + "magnet-straight-bold||magnetism,science,physics": [ + -0.04719829559326172, + -0.017257533967494965, + -0.07746364921331406, + 0.029943984001874924, + 0.01571267656981945, + -0.005002796649932861, + 0.017906485125422478, + -0.01998724415898323, + -0.0675860345363617, + -0.033472731709480286, + -0.03713875263929367, + 0.06494635343551636, + 0.015009353868663311, + -0.03711647167801857, + -0.022805694490671158, + 0.024797838181257248, + -0.03341200202703476, + -0.022517798468470573, + 0.013431121595203876, + 0.09838235378265381, + -0.03073214367032051, + -0.025233281776309013, + 0.07829353958368301, + 0.02601049467921257, + -0.016461525112390518, + 0.034992195665836334, + 0.11114329099655151, + -0.03659716621041298, + -0.03560628741979599, + -0.06817718595266342, + 0.01557883806526661, + 0.029610008001327515, + -0.0015183379873633385, + 0.03459390252828598, + -0.03129731863737106, + -0.014596672728657722, + -0.03328203037381172, + 0.01097402349114418, + 0.015245207585394382, + 0.04893079772591591, + 0.016478218138217926, + -0.06903761625289917, + 0.06638888269662857, + 0.01594971865415573, + 0.01486329548060894, + -0.00016942457295954227, + 0.08248984068632126, + 0.01677487976849079, + 0.054826728999614716, + 0.018364019691944122, + -0.07378190755844116, + -0.10229243338108063, + -0.13324907422065735, + 0.021803967654705048, + 0.017183348536491394, + 0.07862529158592224, + 0.024485556408762932, + -0.002245771000161767, + -0.004565796349197626, + -0.023677607998251915, + 0.08627749234437943, + -0.011246332898736, + -0.00013950199354439974, + 0.04681327939033508, + 0.06667032837867737, + 0.037612106651067734, + -0.004889131523668766, + 0.03634008765220642, + 0.040214672684669495, + 0.0007619420066475868, + 0.08797987550497055, + -0.012347675859928131, + -0.07040338218212128, + -0.07026924937963486, + -0.024255340918898582, + -0.009412702172994614, + 0.07936341315507889, + 0.04851080849766731, + 0.042912840843200684, + -0.06682480126619339, + -0.14411385357379913, + -0.1292293518781662, + -0.09542731195688248, + -0.019508998841047287, + 0.007431160658597946, + 0.04185082018375397, + -0.05335274338722229, + -0.10843319445848465, + -0.05087559297680855, + -0.013422896154224873, + 0.06802649050951004, + -0.011679502204060555, + -0.09115562587976456, + 0.009066648781299591, + 0.012606344185769558, + 0.00936595257371664, + 0.005607579369097948, + -0.032075900584459305, + -0.059372786432504654, + 0.048758670687675476, + 0.08874862641096115, + 0.03512948378920555, + -0.02597401849925518, + 0.09237221628427505, + -0.027911214157938957, + 0.0371304489672184, + 0.05753501132130623, + -0.00811222568154335, + -0.019386498257517815, + 0.03193766251206398, + 0.03162822872400284, + -0.01921623758971691, + -0.011589172296226025, + -0.05310991778969765, + -0.020019643008708954, + -0.05028758570551872, + -0.007576179690659046, + 0.02951870672404766, + -0.019252439960837364, + 0.07579217851161957, + 0.042456962168216705, + 0.05723101273179054, + -0.013074823655188084, + -0.03257292881608009, + -0.026224030181765556, + 0.047729793936014175, + 0.012672892771661282, + -4.607837938203547e-33, + 0.035836439579725266, + 0.04951178655028343, + 0.051698919385671616, + 0.11533296853303909, + 0.0035071440506726503, + 0.004615296609699726, + 0.001991846365854144, + 0.01871936023235321, + -0.01755484752357006, + 0.10116192698478699, + 0.05555426701903343, + 0.09603177011013031, + 0.014069624245166779, + 0.038936056196689606, + -0.06788879632949829, + -0.09826705604791641, + 0.06173022836446762, + -0.09241155534982681, + -0.05976468697190285, + 0.011818538419902325, + 0.012921367771923542, + 0.1221824660897255, + -0.06335113942623138, + -0.0525042898952961, + -0.05368261784315109, + -0.04294247180223465, + 0.027271121740341187, + 0.03503577411174774, + -0.0633680447936058, + 0.04769787937402725, + 0.01056285947561264, + 0.03837716579437256, + -0.024777952581644058, + -0.050416894257068634, + -0.02510135807096958, + -0.01418866217136383, + -0.03373386338353157, + -0.05796661227941513, + 0.025533467531204224, + -0.07078329473733902, + -0.09284961968660355, + -0.03288555145263672, + -0.01366853341460228, + 0.03295372426509857, + 0.010771275497972965, + 0.07327192276716232, + 0.05801363289356232, + -0.06200931593775749, + 0.07690533995628357, + 0.01573530212044716, + 0.0039649466052651405, + -0.05769361928105354, + -0.01255920808762312, + 0.01985488273203373, + 0.049278903752565384, + -0.06190783157944679, + -0.036110229790210724, + 0.10158408433198929, + -0.03303186595439911, + -0.03864237666130066, + 0.056476760655641556, + 0.044820353388786316, + 0.04870043322443962, + 0.0023361817002296448, + -0.0793047696352005, + 0.0032369187101721764, + -0.024440644308924675, + 0.044525861740112305, + 0.1169198676943779, + 0.01343449018895626, + 0.03392372652888298, + 0.053356848657131195, + 0.029825463891029358, + 0.026967110112309456, + 0.024891043081879616, + 0.04198897257447243, + -0.029899070039391518, + -0.03877462446689606, + 0.12114759534597397, + -0.008383920416235924, + -0.07324641942977905, + 0.010671851225197315, + -0.06339085102081299, + -0.0074607632122933865, + -0.0785980224609375, + 0.10670939832925797, + -0.04502515494823456, + -0.04874253645539284, + 0.04140507057309151, + 0.08515229821205139, + -0.10724170506000519, + 0.03144161030650139, + 0.023323766887187958, + -0.0708480179309845, + -0.06820455193519592, + 2.7854700103964645e-34, + -0.07243425399065018, + -0.019637662917375565, + -0.04172368347644806, + -0.005042058415710926, + -0.029215753078460693, + 0.04648095741868019, + -0.011703708209097385, + 0.05320930480957031, + -0.04006889462471008, + 0.04988401383161545, + 0.06341700255870819, + -0.08589054644107819, + -0.05335608869791031, + -0.10154639929533005, + 0.01893169991672039, + -0.007574594113975763, + -0.052919622510671616, + 0.0017144721932709217, + -0.021729163825511932, + 0.07931938767433167, + -0.0033309224527329206, + -0.01318464707583189, + -0.023169828578829765, + 0.04422207549214363, + 0.04662609472870827, + 0.034591298550367355, + -0.0487874299287796, + -0.0631990060210228, + 0.007577791810035706, + 0.04774708300828934, + 0.013903184793889523, + -0.02837766706943512, + -0.027997098863124847, + 0.00461266003549099, + -0.04122992977499962, + -0.026580868288874626, + 0.01054732408374548, + 0.016021965071558952, + 0.0684104934334755, + -0.0992385596036911, + -0.04773610830307007, + 0.022913672029972076, + 0.08923300355672836, + -0.009536842815577984, + 0.017116814851760864, + -0.03435555472970009, + -0.03139374032616615, + 0.021761789917945862, + -0.0009964338969439268, + 0.0856451541185379, + -0.046913180500268936, + -0.05819728597998619, + 0.028637077659368515, + 0.02852894552052021, + -0.07459773123264313, + -0.07485704869031906, + -0.05139489471912384, + -0.055807895958423615, + 0.007796436548233032, + 0.11616253852844238, + -0.010121465660631657, + 0.008425780571997166, + 0.004652648698538542, + -0.00794905424118042, + -0.014645806513726711, + -0.04898744821548462, + 0.04696225747466087, + 0.005914201959967613, + 0.05460227653384209, + -0.018487049266695976, + 0.048737626522779465, + 0.08796514570713043, + -0.0007385383942164481, + 0.008470258675515652, + 0.011308077722787857, + -0.0060106427408754826, + 0.09693332761526108, + -0.00537170609459281, + -0.0005360555369406939, + 0.017097637057304382, + 0.035933200269937515, + 0.05391068011522293, + -0.05195758119225502, + -0.024849092587828636, + -0.08919471502304077, + -0.06698978692293167, + 0.014880270697176456, + -0.03457903116941452, + 0.011586961336433887, + -0.01274183765053749, + -0.0368223637342453, + 0.018412452191114426, + 0.021122336387634277, + -0.13558489084243774, + -0.023306719958782196, + -1.961327633637211e-08, + -0.00039922029827721417, + -0.03445075824856758, + 0.0017689953092485666, + -0.013560716062784195, + 0.03740060701966286, + 0.018787257373332977, + -0.10990140587091446, + -0.09982184320688248, + -0.03987979143857956, + -0.04237008094787598, + 0.035395219922065735, + 0.0323009267449379, + -0.0690445750951767, + 0.0026733579579740763, + -0.029401419684290886, + 0.01715269312262535, + -0.06040376424789429, + 0.015731632709503174, + 0.006067190784960985, + 0.04186616092920303, + 0.02676919661462307, + 0.03810581937432289, + 0.07093804329633713, + -0.035045452415943146, + 0.05088629573583603, + 0.09916248917579651, + -0.0599108450114727, + -0.026894286274909973, + 0.06079433485865593, + -0.0214237030595541, + -0.008681378327310085, + -0.03830130770802498, + 0.04549869894981384, + 0.004103192128241062, + -0.11287383735179901, + -0.03143908083438873, + -0.044755131006240845, + -0.002192552899941802, + -0.025217313319444656, + 0.063651442527771, + -0.011428894475102425, + 0.009335282258689404, + 0.047033946961164474, + -0.02534983679652214, + -0.044508595019578934, + -0.025167733430862427, + -0.054214317351579666, + -0.023166025057435036, + -0.08443134278059006, + -0.047971080988645554, + -0.06362505257129669, + -0.017261041328310966, + 0.09787660092115402, + 0.07227159291505814, + 0.00850511435419321, + -0.023696783930063248, + -0.03092632256448269, + 0.07569532096385956, + -0.051649805158376694, + -0.03340335190296173, + 0.12924212217330933, + 0.02307332120835781, + -0.034927431493997574, + 0.008817139081656933 + ], + "magnifying-glass-bold||search,find,locate,query,inspect": [ + 0.045706138014793396, + 0.02685481868684292, + -0.024643627926707268, + 0.0588453970849514, + 0.04976487159729004, + -0.0625239685177803, + 0.10059565305709839, + -0.03405655920505524, + -0.0607861764729023, + -0.012031148187816143, + -0.027377042919397354, + 0.027857040986418724, + 0.052269432693719864, + 0.02072921209037304, + -0.06930924206972122, + 0.000932199414819479, + -0.05066686496138573, + 0.029563210904598236, + -0.012905037961900234, + 0.022219162434339523, + 0.056437019258737564, + -0.0019713544752448797, + 0.07516255974769592, + -0.024154428392648697, + 0.05813587084412575, + 0.015074251219630241, + -0.042639195919036865, + -0.04059915617108345, + -0.006512607913464308, + -0.07063128799200058, + -0.014615126885473728, + 0.03424394875764847, + 0.1108073741197586, + 0.010450809262692928, + 0.03339410200715065, + 0.03434494882822037, + -0.07120943069458008, + -0.00706847757101059, + 0.0457083024084568, + -0.01966177299618721, + -0.04318496584892273, + -0.029269864782691002, + -0.003667023964226246, + 0.010463939048349857, + 0.00802108645439148, + -0.0467357337474823, + 0.004039075691252947, + -0.009718279354274273, + 0.0558033213019371, + -0.024063296616077423, + -0.1301506608724594, + -0.0940614864230156, + -0.15711940824985504, + -0.016326528042554855, + 0.030968347564339638, + 0.05941818282008171, + -0.01903219148516655, + -0.06244037672877312, + 0.09003717452287674, + 0.01951524056494236, + 0.02232947386801243, + 0.06537220627069473, + 0.014177536591887474, + 0.07429433614015579, + 0.07237013429403305, + 0.006228110287338495, + 0.07366260886192322, + -0.0796085074543953, + 0.04148275777697563, + -0.07104188203811646, + 0.04437157139182091, + 0.009029297158122063, + 0.005782687105238438, + 0.04685673117637634, + -0.011612461879849434, + 0.05266194045543671, + 0.04292738810181618, + -0.01242552325129509, + -0.030584409832954407, + 0.017465196549892426, + -0.04591609165072441, + -0.04279837757349014, + 0.006520408671349287, + 0.09593506902456284, + 0.05565676465630531, + -0.0002219384623458609, + -0.04154689610004425, + -0.11762049049139023, + 0.07213108986616135, + -0.05902060121297836, + -0.02935083955526352, + -0.02968679741024971, + -0.11687862128019333, + -0.0009600069024600089, + -0.05833252891898155, + -0.056324996054172516, + 0.03915858268737793, + 0.0008053798228502274, + -0.08124696463346481, + 0.053377315402030945, + 0.040235117077827454, + 0.007134261541068554, + 0.06268221884965897, + -0.027312880381941795, + -0.06080690026283264, + 0.036239802837371826, + 0.0007308119093067944, + 0.004487185273319483, + 0.050522979348897934, + -0.021971892565488815, + -0.007921908982098103, + -0.050905756652355194, + -0.02544698677957058, + -0.10782689601182938, + 0.034971725195646286, + -0.010162957943975925, + 0.025787603110074997, + -0.04636530950665474, + 0.0668380931019783, + 0.024580026045441628, + 0.04007378965616226, + 0.006171120330691338, + -0.08218013495206833, + -0.05455440282821655, + 0.034675873816013336, + 0.08558761328458786, + -0.033904097974300385, + -1.2757844982630719e-33, + 0.10544410347938538, + 0.018842658028006554, + 0.011492082849144936, + 0.07377196103334427, + 0.013308955356478691, + 0.0688774436712265, + -0.004923696629703045, + 0.020503481850028038, + -0.09916000068187714, + 0.020708812400698662, + 0.07528740167617798, + 0.07087074220180511, + -0.033116720616817474, + -0.012990564107894897, + 0.060562051832675934, + -0.04596695676445961, + 0.04107559472322464, + 0.06532265990972519, + -0.1343301236629486, + -0.02120179869234562, + -0.05243799462914467, + 0.010525097139179707, + -0.055554430931806564, + 0.04251544922590256, + 0.014980103820562363, + -0.006074767559766769, + 0.042851269245147705, + -0.03213019296526909, + -0.06061790883541107, + 0.04330584406852722, + 0.00541819678619504, + 0.02371445670723915, + -0.015288691967725754, + 0.03160528093576431, + -0.044004835188388824, + 0.0021259551867842674, + -0.04382757470011711, + 0.014617683365941048, + 0.06424430012702942, + 0.007623952813446522, + -0.08475174754858017, + -0.018937725573778152, + 0.06317510455846786, + -0.05007869005203247, + 0.0013828802620992064, + 0.0644536241889, + -0.13158276677131653, + 0.008994683623313904, + -0.05824815109372139, + 0.008140742778778076, + 0.021749038249254227, + 0.01868785358965397, + -0.011240040883421898, + -0.0025616625789552927, + 0.0018856172682717443, + 0.06741206347942352, + 0.016399716958403587, + 0.07379679381847382, + 0.043677352368831635, + -0.05173118785023689, + 0.07253331691026688, + -0.03926151245832443, + 0.0035769029054790735, + 0.05070570856332779, + 0.00889104325324297, + 0.024318493902683258, + -0.03179371356964111, + 0.03425419703125954, + 0.030165471136569977, + 0.04405707120895386, + -0.02017325349152088, + 0.0373125895857811, + 0.07306123524904251, + 0.027722371742129326, + 0.016653867438435555, + -0.031595975160598755, + 0.02103152871131897, + -0.05330291762948036, + 0.05047149583697319, + -0.06947813928127289, + -0.0548304058611393, + -0.035600680857896805, + -0.02835792303085327, + -0.004592142999172211, + -0.040677838027477264, + -0.03767021372914314, + -0.004918417427688837, + -0.0875040665268898, + -0.004514407366514206, + -0.008813759312033653, + -0.01067271176725626, + 0.012160585261881351, + -0.08836007863283157, + -0.07486812025308609, + -0.11610293388366699, + 4.5478650429440595e-34, + 0.07284083962440491, + -0.09778141975402832, + -0.005843256134539843, + -0.019421663135290146, + -0.04353288933634758, + 0.013082116842269897, + 0.025762120261788368, + -0.014894424937665462, + 0.01991637796163559, + -0.023886708542704582, + 0.035514917224645615, + 0.0012374884681776166, + -0.0769590362906456, + -0.09118184447288513, + -0.06956520676612854, + 0.10273022949695587, + 0.07366341352462769, + -0.0035295938141644, + -0.05340234562754631, + 0.0925552025437355, + -0.031236466020345688, + 0.031117349863052368, + -0.07249834388494492, + 0.029739320278167725, + -0.03387264162302017, + -0.015494873747229576, + 0.05421314388513565, + -0.044276848435401917, + -0.03801186382770538, + 0.012733826413750648, + -0.02956894412636757, + -0.011644383892416954, + 0.009396412409842014, + 0.05708640068769455, + -0.09599142521619797, + 0.05718933790922165, + 0.04348549246788025, + -0.125172957777977, + -0.0052074710838496685, + 0.014608906581997871, + 0.018274422734975815, + 0.03221943601965904, + 0.00855052750557661, + -0.003807296510785818, + -0.03305058181285858, + -0.03050350770354271, + -0.040810760110616684, + 0.04875650256872177, + 0.00845418032258749, + 0.0597270131111145, + 0.027057358995079994, + -0.04279977083206177, + -0.03454705327749252, + -0.032370857894420624, + -0.0948614701628685, + -0.022367266938090324, + -0.018823182210326195, + 0.04695865139365196, + -0.008296797052025795, + 0.03201720491051674, + 0.005797258578240871, + 0.06504861265420914, + -0.06949768960475922, + 0.013578002341091633, + -0.030440837144851685, + 0.0133300069719553, + -0.0031735384836792946, + 0.026822170242667198, + 0.004088270012289286, + -0.006611701101064682, + 0.08553879708051682, + -0.046554647386074066, + 0.0442323237657547, + 0.04267790913581848, + 0.05378185212612152, + -0.002598539227619767, + 0.020941978320479393, + 0.06671515852212906, + -0.05000746250152588, + 0.004502450581640005, + 0.0717926025390625, + 0.03608248382806778, + 0.04066934064030647, + 0.08718093484640121, + -0.034134067595005035, + 0.0004936560872010887, + -0.00250248028896749, + 0.07133971899747849, + -0.08486221730709076, + -0.10873303562402725, + -0.08656272292137146, + -0.012990307062864304, + 0.0014135368401184678, + -0.007630822714418173, + 0.00889586005359888, + -1.891180012592031e-08, + -0.02318391762673855, + 0.04261886700987816, + -0.04505833238363266, + -0.02061307802796364, + 0.0781550481915474, + -0.00840938650071621, + -0.005982920527458191, + 0.07896603643894196, + -0.03386876732110977, + -0.07933991402387619, + 0.03428911790251732, + 0.02122386172413826, + -0.01064610481262207, + -0.05043686926364899, + 0.08577850461006165, + -0.03201623260974884, + 0.004938623867928982, + 0.02954142913222313, + -0.06053688004612923, + -0.05403142049908638, + 0.009166724048554897, + 0.03154221549630165, + 0.06384090334177017, + 0.0722375139594078, + -0.013660036958754063, + 0.06833059340715408, + -0.1422455906867981, + 0.019419893622398376, + 0.07339122891426086, + 0.09948229789733887, + 0.040130361914634705, + 0.05808945745229721, + 0.012682086788117886, + 0.04918873310089111, + -0.018341198563575745, + -0.0025250252801924944, + -0.06942087411880493, + -0.02261398173868656, + -0.05642332509160042, + 0.05585816502571106, + 0.0063496846705675125, + -0.1017228290438652, + 0.028887392953038216, + 0.010819743387401104, + -0.1033334732055664, + 0.018109632655978203, + 0.08580665290355682, + -0.08128193765878677, + -0.023267993703484535, + -0.036709632724523544, + 0.04606654867529869, + 0.007543147075921297, + 0.04209265857934952, + 0.06371133774518967, + -0.052272979170084, + -0.04039383679628372, + 0.10531797260046005, + 0.05381465703248978, + -0.07249253243207932, + 0.03766857460141182, + 0.0794767364859581, + -0.006279480177909136, + -0.010561184026300907, + 0.020212503150105476 + ], + "magnifying-glass-minus-bold||search,find,locate,query,inspect,zoom out,-": [ + 0.04423397034406662, + 0.03226309269666672, + -0.034325145184993744, + 0.048090431839227676, + 0.05632399395108223, + -0.07044327259063721, + 0.098531574010849, + -0.02499455399811268, + -0.059956539422273636, + 0.0016279807314276695, + -0.0038871574215590954, + 0.0268439669162035, + 0.0535304956138134, + 0.01606505736708641, + -0.07916857302188873, + -0.0021278467029333115, + -0.052559446543455124, + 0.03669174760580063, + -0.029050815850496292, + 0.018214892596006393, + 0.051157381385564804, + -0.02191271260380745, + 0.04637328162789345, + -0.016947010532021523, + 0.09896548837423325, + 0.01531270146369934, + -0.05388922989368439, + -0.025053024291992188, + -0.003609274048358202, + -0.07320747524499893, + -0.023929905146360397, + 0.03608331456780434, + 0.11498653888702393, + -0.010115873999893665, + 0.018744412809610367, + 0.02871205471456051, + -0.056231044232845306, + -0.008921077474951744, + 0.03764533996582031, + -0.018890386447310448, + -0.030949413776397705, + -0.019258791580796242, + -0.01635780930519104, + 0.011587989516556263, + -0.007438949774950743, + -0.05688006430864334, + -0.014845874160528183, + -0.02804003842175007, + 0.05742117762565613, + -0.008561158552765846, + -0.1132984459400177, + -0.08738785237073898, + -0.18358011543750763, + -0.0037937844172120094, + 0.033069685101509094, + 0.061617858707904816, + -0.03538179025053978, + -0.05629609152674675, + 0.08223487436771393, + 0.029443150386214256, + 0.014418224804103374, + 0.05229633301496506, + 0.0017500376561656594, + 0.09009947627782822, + 0.06152508780360222, + 0.011447262950241566, + 0.0711117759346962, + -0.10201358795166016, + 0.0286126546561718, + -0.06362840533256531, + 0.035085178911685944, + -0.005137127358466387, + 0.006967789027839899, + 0.0263510812073946, + -0.000559606880415231, + 0.028530245646834373, + 0.02828229032456875, + 0.004587473347783089, + -0.027902618050575256, + 0.0292974840849638, + -0.029798684641718864, + -0.03266452997922897, + -0.0008499662508256733, + 0.09884370863437653, + 0.059040367603302, + 0.007364299613982439, + -0.04318219795823097, + -0.11824116110801697, + 0.08166805654764175, + -0.060261838138103485, + -0.06382323056459427, + -0.04840856045484543, + -0.0970475822687149, + 0.010876452550292015, + -0.09010668098926544, + -0.06707780063152313, + 0.045994143933057785, + -0.002153972163796425, + -0.07446988672018051, + 0.05911792442202568, + 0.03946133702993393, + 0.01667453534901142, + 0.06564149260520935, + -0.03975702077150345, + -0.05351835861802101, + 0.029150953516364098, + -0.0022350724320858717, + -0.004255384672433138, + 0.03716239333152771, + -0.005296957679092884, + -0.006047375500202179, + -0.04147758707404137, + -0.017041407525539398, + -0.10701499879360199, + 0.027622833847999573, + 0.007979822345077991, + 0.027462774887681007, + -0.028626376762986183, + 0.08046110719442368, + 0.015476224943995476, + 0.0240461528301239, + 0.012802879326045513, + -0.07798641920089722, + -0.055400460958480835, + 0.03463619947433472, + 0.08609719574451447, + -0.031787194311618805, + -2.09205227541338e-33, + 0.10602863132953644, + -3.2498872315045446e-05, + 0.011879119090735912, + 0.07503624260425568, + 0.042015593498945236, + 0.061595890671014786, + -0.020305311307311058, + 0.004871412180364132, + -0.11083483695983887, + 0.033990755677223206, + 0.09198383241891861, + 0.07669367641210556, + -0.03372783958911896, + -0.006003526039421558, + 0.08037795126438141, + -0.02813146635890007, + 0.0553034283220768, + 0.043989915400743484, + -0.12458217144012451, + -0.033813800662755966, + -0.045353151857852936, + 0.01804262399673462, + -0.06191601976752281, + 0.055278629064559937, + 0.030897166579961777, + -0.002387415152043104, + 0.04216666892170906, + -0.02868640050292015, + -0.07511235773563385, + 0.049288179725408554, + 0.014011557213962078, + 0.02558475360274315, + -0.024959107860922813, + 0.027636025100946426, + -0.03797442466020584, + -0.0017894142074510455, + -0.05291565880179405, + 0.012787857092916965, + 0.06990458816289902, + -0.0018172168638557196, + -0.11262644827365875, + -0.02737746387720108, + 0.01632644422352314, + -0.06224961206316948, + 0.005220877006649971, + 0.053368255496025085, + -0.09305058419704437, + -0.0019250541226938367, + -0.04359513893723488, + -0.009574001654982567, + 0.022146904841065407, + 0.0019810083322227, + -0.013847027905285358, + -0.005920699331909418, + -0.018007254227995872, + 0.04603436216711998, + 0.0257781483232975, + 0.08368974179029465, + 0.030968371778726578, + -0.04537949338555336, + 0.0754915177822113, + -0.043886590749025345, + -0.008115245960652828, + 0.05146338418126106, + 0.019068438559770584, + 0.024069368839263916, + -0.03854161873459816, + 0.030776051804423332, + 0.01695959083735943, + 0.03682228922843933, + -0.024246439337730408, + 0.038189247250556946, + 0.08948127180337906, + 0.03946148231625557, + 0.008478387258946896, + -0.039105743169784546, + 0.01873834989964962, + -0.052911125123500824, + 0.05651261284947395, + -0.04082392901182175, + -0.06278164684772491, + -0.013546086847782135, + -0.04000275209546089, + -0.005454484838992357, + -0.04837169498205185, + -0.04727040231227875, + 0.00608360581099987, + -0.07461513578891754, + 0.003299516160041094, + -0.03582184389233589, + -0.047158751636743546, + 0.022843599319458008, + -0.08093143999576569, + -0.09283749014139175, + -0.12184683233499527, + 7.247698223584457e-34, + 0.051598671823740005, + -0.08473988622426987, + -0.027838805690407753, + -0.006173728033900261, + -0.0641368180513382, + 0.030587514862418175, + 0.06839089840650558, + -0.012863890267908573, + 0.027274057269096375, + -0.029501236975193024, + 0.03971167281270027, + 0.00607639504596591, + -0.07271695137023926, + -0.10294795036315918, + -0.06902068853378296, + 0.09865724295377731, + 0.04311012476682663, + -0.009416193701326847, + -0.06769198179244995, + 0.09158152341842651, + -0.026840457692742348, + 0.00699252262711525, + -0.06277631968259811, + 0.04458339139819145, + -0.017495090141892433, + -0.032403282821178436, + 0.058613263070583344, + -0.028180401772260666, + -0.03082684986293316, + -0.020870693027973175, + -0.00560982059687376, + -0.0020777685567736626, + 0.02064262144267559, + 0.043717436492443085, + -0.10257755219936371, + 0.04804534092545509, + 0.03182176500558853, + -0.10663927346467972, + -0.009072662331163883, + 0.024398701265454292, + 0.0021953375544399023, + 0.024545004591345787, + 0.04045701026916504, + 0.004566575866192579, + -0.027325745671987534, + -0.019240563735365868, + -0.0339275598526001, + 0.03283757343888283, + 0.009653422050178051, + 0.05254880711436272, + 0.011763578280806541, + -0.03608505055308342, + -0.04336077719926834, + -0.027969781309366226, + -0.0872470885515213, + -0.022522617131471634, + -0.01639365963637829, + 0.05752510577440262, + -0.003896733047440648, + 0.02330663427710533, + 0.02480681799352169, + 0.04885771870613098, + -0.06781820207834244, + 0.01629933901131153, + -0.051114246249198914, + 0.03148113936185837, + -0.007077756337821484, + 0.03823449835181236, + 0.002315114252269268, + -0.0017099638935178518, + 0.09318888187408447, + -0.0436275452375412, + 0.053687915205955505, + 0.028491294011473656, + 0.03899752348661423, + -0.023160552605986595, + 0.027266649529337883, + 0.06253238767385483, + -0.023708127439022064, + -0.0035301288589835167, + 0.08653707057237625, + 0.04410360008478165, + 0.03323270380496979, + 0.07319322228431702, + -0.036371368914842606, + 0.012248832732439041, + -0.016291573643684387, + 0.07462387531995773, + -0.0761156678199768, + -0.0895066037774086, + -0.08246669918298721, + -0.0042897798120975494, + 0.008572248741984367, + -0.004653907380998135, + 0.008222286589443684, + -2.106522245526321e-08, + -0.013632831163704395, + 0.03811284154653549, + -0.053015537559986115, + -0.02549687959253788, + 0.07358647137880325, + -0.011135850101709366, + -0.007811008952558041, + 0.09331077337265015, + -0.0253472700715065, + -0.07299157977104187, + 0.048096347600221634, + 0.00958776380866766, + -0.03181610256433487, + -0.03868435323238373, + 0.09923365712165833, + -0.011284123174846172, + 0.023694053292274475, + 0.06408307701349258, + -0.043907880783081055, + -0.05514545738697052, + 0.0011550096096470952, + 0.03054327517747879, + 0.04452752321958542, + 0.06647472828626633, + -0.0007487928378395736, + 0.04771852120757103, + -0.15325675904750824, + 0.04042857885360718, + 0.06994116306304932, + 0.08215122669935226, + 0.04211089015007019, + 0.05577628314495087, + 0.012198887765407562, + 0.03478482738137245, + -0.030881831422448158, + -0.0009497295832261443, + -0.06936313211917877, + -0.014330966398119926, + -0.04915985092520714, + 0.04710694029927254, + 0.014858575537800789, + -0.09517557919025421, + 0.040352992713451385, + 0.02046087197959423, + -0.11052585393190384, + 0.03256095200777054, + 0.10628006607294083, + -0.0770023986697197, + -0.02643525041639805, + -0.03977827727794647, + 0.062086958438158035, + 0.013010356575250626, + 0.04336262494325638, + 0.05730786919593811, + -0.061518870294094086, + -0.013785358518362045, + 0.10251208394765854, + 0.025833643972873688, + -0.06932216137647629, + 0.03643447533249855, + 0.06691978126764297, + 0.014770136214792728, + -0.02984756790101528, + 0.019809745252132416 + ], + "magnifying-glass-plus-bold||search,find,locate,query,inspect,zoom in,+": [ + 0.037771884351968765, + 0.016551073640584946, + -0.030391691252589226, + 0.044587500393390656, + 0.06431899964809418, + -0.05210310220718384, + 0.09138243645429611, + -0.017317073419690132, + -0.06453673541545868, + 0.009589862078428268, + -0.004980771336704493, + 0.02350006438791752, + 0.04846210032701492, + 0.022402433678507805, + -0.0703328549861908, + -0.002467041602358222, + -0.05624455586075783, + 0.046705905348062515, + -0.027912652119994164, + 0.0004970756126567721, + 0.0673735961318016, + -0.028121665120124817, + 0.059207674115896225, + -0.015086114406585693, + 0.08904485404491425, + 0.022109204903244972, + -0.05544878542423248, + -0.03130534291267395, + 0.012629915960133076, + -0.06776227802038193, + -0.026501992717385292, + 0.037186406552791595, + 0.11120902746915817, + -0.005554707255214453, + 0.0058064814656972885, + 0.029628783464431763, + -0.06226901337504387, + -0.010853640735149384, + 0.033739008009433746, + -0.03929723799228668, + -0.03695613145828247, + -0.013400278054177761, + -4.294905124879733e-07, + 0.012618276290595531, + -0.0014459164813160896, + -0.0694575086236, + -0.0036310874857008457, + -0.025591211393475533, + 0.06891198456287384, + -0.005582794547080994, + -0.11566612124443054, + -0.09480471909046173, + -0.1733638495206833, + -0.005884516052901745, + 0.03527975082397461, + 0.05512846261262894, + -0.03963116556406021, + -0.06808952242136002, + 0.08600771427154541, + 0.02697969786822796, + 0.016577014699578285, + 0.04963642731308937, + 0.022309279069304466, + 0.07800418883562088, + 0.05398077890276909, + 0.013557622209191322, + 0.07068020850419998, + -0.08143642544746399, + 0.027929559350013733, + -0.06530706584453583, + 0.03068488836288452, + 0.0018422477878630161, + 0.01237734779715538, + 0.03816589340567589, + -0.007892736233770847, + 0.022306187078356743, + 0.020548654720187187, + -0.016995524987578392, + -0.029232194647192955, + 0.026264753192663193, + -0.04036123678088188, + -0.03551732748746872, + 0.0005730488919652998, + 0.1011645570397377, + 0.07146438211202621, + 9.629566193325445e-05, + -0.04618963599205017, + -0.12506166100502014, + 0.08600156009197235, + -0.06723423302173615, + -0.05267531797289848, + -0.03839492052793503, + -0.11203927546739578, + 0.009582783095538616, + -0.07865207642316818, + -0.07665598392486572, + 0.036487072706222534, + -0.019547799602150917, + -0.0770653486251831, + 0.04517557471990585, + 0.03768443316221237, + 0.01787809282541275, + 0.06419659405946732, + -0.029474563896656036, + -0.03630874678492546, + 0.0325397253036499, + 0.00048757565673440695, + -0.004888539668172598, + 0.036041755229234695, + -0.004934315104037523, + -0.0020136733073741198, + -0.03245723620057106, + -0.012133104726672173, + -0.11385314911603928, + 0.03136080503463745, + 0.012686842121183872, + 0.025540791451931, + -0.04101746529340744, + 0.08743556588888168, + 0.00797921884804964, + 0.03899203613400459, + 0.015812918543815613, + -0.08016185462474823, + -0.05648971349000931, + 0.03228465095162392, + 0.07753836363554001, + -0.03453586995601654, + -1.3945120909255115e-33, + 0.10990039259195328, + 0.0020834095776081085, + 0.004511984996497631, + 0.08656720072031021, + 0.031154153868556023, + 0.07642194628715515, + -0.018071690574288368, + 0.02384807914495468, + -0.12081944197416306, + 0.009106992743909359, + 0.08236078917980194, + 0.0631442666053772, + -0.03755689784884453, + 0.004850700497627258, + 0.07746053487062454, + -0.04711386188864708, + 0.05368821322917938, + 0.05683162808418274, + -0.1281401664018631, + -0.028551891446113586, + -0.05657273158431053, + 0.0014403313398361206, + -0.05654264613986015, + 0.07467987388372421, + 0.044161103665828705, + 0.006232250947505236, + 0.04938303679227829, + -0.01907932385802269, + -0.06010710820555687, + 0.04620392248034477, + 0.012381515465676785, + 0.025435708463191986, + -0.03480583056807518, + 0.03546740859746933, + -0.039607126265764236, + 0.013931022956967354, + -0.05019597336649895, + 0.01721511036157608, + 0.07512187212705612, + -0.001626949873752892, + -0.09706730395555496, + -0.02917310781776905, + 0.016152972355484962, + -0.07097882032394409, + -0.000771949824411422, + 0.046917010098695755, + -0.11615495383739471, + 0.01661570928990841, + -0.04567673057317734, + -0.021758709102869034, + 0.03170695900917053, + -0.000143702287459746, + -0.024116799235343933, + 0.001773280673660338, + -0.01727517694234848, + 0.05594022572040558, + 0.015888765454292297, + 0.08398029953241348, + 0.028792019933462143, + -0.03151576593518257, + 0.06293407827615738, + -0.04221217706799507, + -0.0029213582165539265, + 0.06408123672008514, + 0.01866907812654972, + 0.02082226611673832, + -0.020022684708237648, + 0.03495042398571968, + 0.02202026918530464, + 0.03804832324385643, + -0.012371224351227283, + 0.04052112251520157, + 0.08134528994560242, + 0.04369798302650452, + 0.022807493805885315, + -0.044672973453998566, + 0.01099441573023796, + -0.0532761849462986, + 0.04240546002984047, + -0.03536008670926094, + -0.05806124210357666, + -0.031635209918022156, + -0.0285988450050354, + -0.004263198934495449, + -0.04647992551326752, + -0.040840234607458115, + -0.005278096068650484, + -0.07507948577404022, + -0.002019723178818822, + -0.04365379363298416, + -0.05135169252753258, + 0.012577088549733162, + -0.0623408742249012, + -0.0801372155547142, + -0.12144970893859863, + 5.747209531296058e-34, + 0.06169477477669716, + -0.09267960488796234, + -0.010707358829677105, + -0.016129033640027046, + -0.048296622931957245, + 0.029335418716073036, + 0.05023021250963211, + -0.021992629393935204, + 0.022717949002981186, + -0.037614624947309494, + 0.034232284873723984, + 0.0029391187708824873, + -0.06665945798158646, + -0.09688238054513931, + -0.07393060624599457, + 0.106488436460495, + 0.04231338948011398, + -0.00045976281398907304, + -0.052705105394124985, + 0.09451594203710556, + -0.021136127412319183, + 7.576994539704174e-05, + -0.0503123514354229, + 0.049940165132284164, + -0.02214776910841465, + -0.022281412035226822, + 0.04900822788476944, + -0.027706187218427658, + -0.037065569311380386, + -0.019113291054964066, + -0.008358622901141644, + 0.005978069268167019, + 0.01341511681675911, + 0.04723268002271652, + -0.09165376424789429, + 0.049991507083177567, + 0.039866574108600616, + -0.1140202134847641, + 0.0009576318552717566, + 0.031083397567272186, + 0.02474602684378624, + 0.015047768130898476, + 0.0363195575773716, + -0.002936342963948846, + -0.02280845306813717, + -0.028884589672088623, + -0.020390799269080162, + 0.03829648345708847, + -0.0012722789542749524, + 0.044896647334098816, + 0.013322055339813232, + -0.04098671302199364, + -0.04598888382315636, + -0.030529174953699112, + -0.08476538956165314, + -0.026226701214909554, + -0.016890212893486023, + 0.061705268919467926, + 0.00942081306129694, + 0.012557539157569408, + 0.017150789499282837, + 0.04588136821985245, + -0.06482773274183273, + 0.022014347836375237, + -0.047413598746061325, + 0.02486645244061947, + -0.013969057239592075, + 0.0203986968845129, + -0.0045374310575425625, + 0.00024916650727391243, + 0.09345729649066925, + -0.041617073118686676, + 0.05377219244837761, + 0.034871406853199005, + 0.029915306717157364, + -0.012337170541286469, + 0.030438827350735664, + 0.0619456022977829, + -0.012695793062448502, + -0.006158515345305204, + 0.08779748529195786, + 0.0447869598865509, + 0.04526868090033531, + 0.0744800865650177, + -0.03417941927909851, + 0.021593360230326653, + -0.008275468833744526, + 0.08576726168394089, + -0.07382971793413162, + -0.0952676460146904, + -0.09555069357156754, + -0.0013423995114862919, + -0.0009632744477130473, + -0.01598253846168518, + 0.004202479030936956, + -2.1206895794989578e-08, + -0.011993546970188618, + 0.04153577983379364, + -0.06043068692088127, + -0.027017949149012566, + 0.0808212161064148, + -0.00980231910943985, + -0.0075807417742908, + 0.09341666102409363, + -0.036410361528396606, + -0.0669969767332077, + 0.04311436042189598, + 0.008718637749552727, + -0.02401057630777359, + -0.039168987423181534, + 0.09260006994009018, + -0.026005016639828682, + 0.024931220337748528, + 0.052123431116342545, + -0.043127309530973434, + -0.05183221027255058, + 0.00530407577753067, + 0.04163326323032379, + 0.055016931146383286, + 0.06939157098531723, + -0.022124258801341057, + 0.04438994824886322, + -0.15156802535057068, + 0.02585444226861, + 0.08608532696962357, + 0.08672627061605453, + 0.04203936457633972, + 0.051423754543066025, + 0.0026506460271775723, + 0.048456065356731415, + -0.021969368681311607, + 0.00655369320884347, + -0.06569086760282516, + -0.018339890986680984, + -0.053874801844358444, + 0.049084585160017014, + 0.016901914030313492, + -0.09395793080329895, + 0.044485922902822495, + 0.010544112883508205, + -0.10231571644544601, + 0.033514656126499176, + 0.09691007435321808, + -0.08609189093112946, + -0.022349469363689423, + -0.028247103095054626, + 0.04952753335237503, + -0.0014023631811141968, + 0.05617618188261986, + 0.05439319834113121, + -0.07483519613742828, + -0.013552122749388218, + 0.10087914764881134, + 0.026157794520258904, + -0.06101641431450844, + 0.04473854973912239, + 0.055842287838459015, + -0.0017471595201641321, + -0.02764100208878517, + 0.029640035703778267 + ], + "mailbox-bold||*new*,email,letters,messaging,post": [ + 0.022435767576098442, + -0.04239285737276077, + 0.007768634706735611, + 0.09084004163742065, + 0.07133594900369644, + -0.019751833751797676, + 0.02781578339636326, + -0.10288037359714508, + 0.016933482140302658, + -0.006505418568849564, + -0.010979031212627888, + 0.04093072935938835, + 0.010797427035868168, + -0.03251650184392929, + 0.020564544945955276, + 0.038388434797525406, + -0.0003613540029618889, + -0.007431270554661751, + -0.02330016903579235, + 0.02613643929362297, + -0.02472359873354435, + 0.030860863626003265, + 0.02839193120598793, + -0.00028474247665144503, + 0.0003623955708462745, + 0.011617232114076614, + -0.020145606249570847, + -0.011996308341622353, + -0.03880838677287102, + -0.08976433426141739, + 0.03446566313505173, + -0.044924844056367874, + 0.14083647727966309, + 0.07821381092071533, + 0.048416342586278915, + 0.038471344858407974, + 0.03042677603662014, + 0.02816670387983322, + 0.0197941605001688, + 0.0003091862890869379, + -0.0457732155919075, + -0.09813016653060913, + -0.017539357766509056, + 0.03328477218747139, + -0.007989714853465557, + -0.03741775453090668, + -0.018805475905537605, + -0.043427422642707825, + -0.03658728674054146, + -0.021801717579364777, + 0.04595131054520607, + -0.10551263391971588, + -0.08604402840137482, + 0.0357104167342186, + 0.025301920250058174, + -0.008815738372504711, + -0.0939079225063324, + -0.028790853917598724, + 0.010912870056927204, + -0.012148176319897175, + 0.003811574075371027, + 0.055547647178173065, + 0.048034269362688065, + 0.007310975342988968, + 0.04151789844036102, + -0.007665758021175861, + -0.03720225766301155, + -0.0022572751622647047, + -0.03040880709886551, + -0.0038579050451517105, + -0.019788218662142754, + 0.030426660552620888, + -0.04514487460255623, + 0.035991039127111435, + -0.05206809565424919, + 0.0037489605601876974, + 0.006528252735733986, + -0.01281915046274662, + -0.01113247498869896, + 0.07449609786272049, + -0.08936461806297302, + -0.03313788026571274, + -0.039564698934555054, + 0.012798764742910862, + 0.10608776658773422, + 0.06870624423027039, + -0.10850837826728821, + -0.05121751129627228, + -0.07789334654808044, + 0.011206844821572304, + -0.020550711080431938, + -0.034677453339099884, + -0.010697780176997185, + 0.08967795968055725, + -0.13963206112384796, + -0.01972227543592453, + 0.001847956096753478, + -0.002692987909540534, + -0.09079059958457947, + 0.09773202240467072, + 0.06528455018997192, + 0.023904120549559593, + 0.042269282042980194, + -0.0006939267623238266, + 0.02216014266014099, + -0.0763467326760292, + -0.0010547590209171176, + -0.05914797633886337, + -0.039032332599163055, + 0.035915523767471313, + -0.006518935784697533, + -0.07980003952980042, + -0.04663275554776192, + -0.11333902180194855, + -0.016021573916077614, + -0.039190541952848434, + -0.07836709171533585, + 0.02626766450703144, + 0.13663624227046967, + 0.07369972765445709, + 0.03973035514354706, + -0.09599054604768753, + -0.08092519640922546, + -0.06345175951719284, + -0.0488986112177372, + -0.024376774206757545, + 0.03322649002075195, + -2.699180230262714e-34, + 0.04068173095583916, + 0.05453056842088699, + 0.009121469222009182, + 0.1276308298110962, + 0.018137456849217415, + 0.04536141827702522, + -0.08608342707157135, + 0.0021990109235048294, + -0.05687360465526581, + -0.03626704216003418, + 0.04809829220175743, + 0.054177843034267426, + 0.037525806576013565, + 0.05807611718773842, + -0.04064236581325531, + -0.06641046702861786, + -0.017604053020477295, + -0.00512930192053318, + -0.018188338726758957, + -0.019908394664525986, + -0.07344038039445877, + 0.06220005080103874, + -0.017208626493811607, + 0.05635297670960426, + -0.024336015805602074, + -0.014243326149880886, + 0.09944240748882294, + -0.042979951947927475, + -0.09030582755804062, + 0.04453238844871521, + -0.012355495244264603, + -0.01488056406378746, + 0.05831257253885269, + 0.10415118932723999, + -0.02220953442156315, + 0.048618342727422714, + -0.03980397805571556, + -0.04084918648004532, + 0.03064122423529625, + 0.1118743047118187, + -0.061374396085739136, + -0.059619463980197906, + -0.0015616492601111531, + -0.013946269638836384, + 0.007084665820002556, + 0.13879451155662537, + 0.0022283236030489206, + -0.00607055751606822, + 0.024789959192276, + -0.05737278610467911, + 0.037894148379564285, + -0.020025335252285004, + -0.041891131550073624, + 0.010564559139311314, + 0.019717596471309662, + -0.050860460847616196, + -0.03510049358010292, + 0.0629095584154129, + 0.0796542689204216, + 0.00025548157282173634, + 0.018046606332063675, + 0.017233973369002342, + 0.06968092173337936, + -0.009526309557259083, + -0.018949924036860466, + 0.02554631233215332, + -0.1028667539358139, + 0.0007188026211224496, + 0.024146070703864098, + -0.01726105809211731, + 0.05256285518407822, + 0.02894587442278862, + -0.024226633831858635, + 0.0899994894862175, + -0.04603346437215805, + -0.02474759891629219, + 0.05314801633358002, + -0.023362385109066963, + 0.07451782375574112, + -0.05575168505311012, + -0.042617566883563995, + 0.01812395639717579, + -0.06545484066009521, + 0.05115719139575958, + 0.015014891512691975, + 0.004925434477627277, + 0.014268912374973297, + -0.009009924717247486, + -0.05693354457616806, + 0.026831937953829765, + -0.07616391777992249, + -0.032720837742090225, + -0.010529030114412308, + -0.043893951922655106, + -0.023506516590714455, + -2.6852026840764754e-33, + 0.037225209176540375, + 0.005166036542505026, + -0.13661232590675354, + -0.017938535660505295, + -0.029592102393507957, + 0.07122108340263367, + 0.06777867674827576, + 0.038878440856933594, + 0.07013804465532303, + 0.05338412523269653, + -0.017279956489801407, + 0.011127769947052002, + -0.0500154048204422, + 0.013721594586968422, + -0.018982773646712303, + 0.023316120728850365, + 0.014376504346728325, + 0.07254227250814438, + -0.03267180547118187, + 0.01010420173406601, + -0.05323627218604088, + 0.03631316125392914, + -0.10681841522455215, + 0.07104648649692535, + -0.04763524979352951, + -0.017221244052052498, + 0.020903900265693665, + 0.004841829650104046, + -0.024283159524202347, + -0.0345628596842289, + -0.000196347595192492, + 0.006431057117879391, + 0.04105730354785919, + 0.11206624656915665, + -0.06870246678590775, + -0.010094214230775833, + 0.0374445766210556, + -0.07339856028556824, + 0.06241768226027489, + 0.08090406656265259, + 0.02076956257224083, + 0.032607004046440125, + 0.006563279312103987, + 0.05465782806277275, + -0.020674824714660645, + -0.047121308743953705, + -0.08185764402151108, + -0.05440628156065941, + 0.01559368520975113, + 0.09883532673120499, + 0.01592067815363407, + -0.07784435153007507, + 0.007541775703430176, + -0.024131495505571365, + -0.09765104949474335, + 0.02018011547625065, + -0.03952030837535858, + 0.018659330904483795, + 0.06127752736210823, + 0.04076767340302467, + -0.07027482986450195, + 0.008438066579401493, + 0.0110614113509655, + -0.0021460815332829952, + 0.04415152221918106, + -0.07786257565021515, + 0.06443233788013458, + -0.007071088533848524, + 0.019016530364751816, + -0.06560952216386795, + 0.072050079703331, + -0.02261725440621376, + -0.06493688374757767, + -0.02112191542983055, + 0.06916780769824982, + -0.04724652320146561, + -0.00030769288423471153, + 0.02660560980439186, + -0.05710320174694061, + 0.020145097747445107, + -0.03728093206882477, + -0.019875897094607353, + -0.012703604064881802, + 0.01956501416862011, + -0.04602297767996788, + -0.005042683333158493, + -0.017460554838180542, + 0.01597997546195984, + 0.0013595663476735353, + -0.02569134160876274, + -0.016290554776787758, + 0.042323723435401917, + 0.028907515108585358, + 0.022245876491069794, + -0.13348497450351715, + -2.1328220967120615e-08, + -0.018740372732281685, + -0.07981277257204056, + -0.014248593710362911, + 0.036023154854774475, + 0.026401467621326447, + -0.006021447945386171, + 0.0026880037039518356, + -0.05869225785136223, + 0.0076152910478413105, + -0.06674785166978836, + 0.024185316637158394, + 0.017578864470124245, + -0.06888099014759064, + -0.07137060910463333, + 0.07701031863689423, + 0.010127066634595394, + -0.05420566350221634, + 0.011366755701601505, + -0.03354092687368393, + -0.05108378082513809, + 0.052210450172424316, + 0.07964222878217697, + 0.02590383030474186, + 0.0011415022891014814, + 0.024905577301979065, + 0.03372296318411827, + -0.0487564355134964, + 0.024123793467879295, + -0.016278300434350967, + 0.0807817205786705, + 0.010595506988465786, + 0.010482355952262878, + -0.004824554082006216, + -0.04768066108226776, + -0.11179038137197495, + 0.003287141676992178, + -0.020609572529792786, + -0.07835668325424194, + 0.0201673936098814, + 0.10931423306465149, + 0.054306674748659134, + -0.0899868905544281, + -0.028446974232792854, + -0.03606516867876053, + -0.057458363473415375, + 0.006855808664113283, + 0.02083486318588257, + -0.07857635617256165, + -0.04729751870036125, + -0.11924900859594345, + 0.038461897522211075, + 0.03595586121082306, + 0.02571096085011959, + 0.11302739381790161, + -0.04575372487306595, + -0.032606374472379684, + 0.05349738523364067, + 0.05663330852985382, + 0.05331244692206383, + 0.0027181198820471764, + 0.08738397061824799, + 0.0682394877076149, + 0.03376800939440727, + 0.007999159395694733 + ], + "map-pin-bold||maps,places,markers,pins,locations,poi,point of interest": [ + 0.06011068448424339, + -0.017205972224473953, + -0.02797490358352661, + -0.019535865634679794, + 0.06980860233306885, + -0.032735440880060196, + 0.07820037752389908, + -0.05965640768408775, + -0.02495461143553257, + -0.04288817569613457, + 0.0754941925406456, + 0.049657683819532394, + -0.004881217610090971, + -0.03757716715335846, + -0.02571832947432995, + 0.06714273989200592, + -0.008316353894770145, + 0.024365529417991638, + 0.04479608312249184, + 0.001567490049637854, + 0.04098421335220337, + -0.028833739459514618, + 0.03113589622080326, + 0.04779016226530075, + 0.010238050483167171, + 0.0299757719039917, + 0.05083784833550453, + 0.038103871047496796, + -0.026559650897979736, + -0.06744028627872467, + -0.01247020810842514, + 0.023811152204871178, + 0.09340433776378632, + 0.026254914700984955, + 0.0699063315987587, + 0.056997522711753845, + 0.004272786434739828, + -0.0474686324596405, + 0.02254427783191204, + -0.009401940740644932, + 0.018479160964488983, + -0.06585105508565903, + 0.033112600445747375, + 0.05437759682536125, + 0.037397149950265884, + 0.020111922174692154, + 0.039893556386232376, + -0.022847430780529976, + -0.005095824133604765, + 0.052954960614442825, + 0.002627453999593854, + -0.04525943472981453, + -0.07815830409526825, + -0.058992184698581696, + 0.04862939938902855, + 0.018360931426286697, + -0.073516845703125, + -0.1050204262137413, + 0.08593220263719559, + -0.051532138139009476, + 0.08893442153930664, + 0.03923112526535988, + 0.035268668085336685, + 0.02276686578989029, + 0.07172541320323944, + -0.01711192913353443, + -0.01462923176586628, + 0.005007353611290455, + 0.02500275708734989, + -0.08049692213535309, + 0.0497569777071476, + -0.04206614941358566, + 0.009011258371174335, + -0.06871014088392258, + 0.019077476114034653, + 0.028922799974679947, + -0.07844240218400955, + -0.006255418062210083, + -0.022705359384417534, + -0.06371628493070602, + -0.07002835720777512, + -0.0504535436630249, + 0.03139672428369522, + 0.10715179145336151, + 0.013787614181637764, + 0.03717933967709541, + -0.07610878348350525, + -0.06862132251262665, + 0.016112597659230232, + -0.05716543644666672, + -0.07376740872859955, + -0.0733863040804863, + -0.034326184540987015, + 0.02776823565363884, + -0.01965395361185074, + -0.017687752842903137, + 0.01788174733519554, + -0.02974024787545204, + -0.028916802257299423, + 0.06942060589790344, + 0.0488935150206089, + 0.07143861055374146, + 0.0200960636138916, + -0.06544818729162216, + -0.006234711967408657, + -0.0012854294618591666, + -0.06419206410646439, + -0.03577343001961708, + -0.04160184785723686, + -0.013018249534070492, + -0.04391900822520256, + -0.07822348922491074, + -0.013822258450090885, + -0.06683773547410965, + -0.08078393340110779, + -0.040937285870313644, + -0.04513094946742058, + 0.04039815440773964, + 0.14351268112659454, + 0.05625500902533531, + 0.006577219348400831, + -0.06573552638292313, + -0.060625895857810974, + -0.026944749057292938, + -0.08047542721033096, + 0.022476421669125557, + -0.06718061864376068, + -1.9666523747775816e-33, + 0.06765768676996231, + 0.018760746344923973, + -0.01506637129932642, + 0.05131714418530464, + 0.004680856596678495, + -0.019152257591485977, + -0.08358974754810333, + -0.11812089383602142, + -0.08287525177001953, + 0.06126667186617851, + 0.08869760483503342, + -0.0024878818076103926, + -0.01847756654024124, + 0.1061793863773346, + 0.08308792114257812, + -0.03653900697827339, + 0.04371543228626251, + -0.015083701349794865, + -0.1105266585946083, + 0.009589257650077343, + -0.05831398069858551, + 0.016030386090278625, + -0.10082835704088211, + -0.07905212789773941, + 0.08173047006130219, + 0.06938187777996063, + -0.0399787575006485, + 0.024012256413698196, + -0.04618767276406288, + 0.03601405397057533, + 0.05364847555756569, + -0.013035321608185768, + 0.045343443751335144, + -0.04161829128861427, + 0.022671492770314217, + -0.003321561962366104, + -0.06791412085294724, + -0.027067137882113457, + -0.023693175986409187, + 0.013249150477349758, + -0.003084574593231082, + -0.08552424609661102, + -0.0942983478307724, + -0.03095383383333683, + 0.04526602104306221, + 0.05748557671904564, + -0.06078920513391495, + -0.0073372540064156055, + 0.0350874662399292, + 0.043476399034261703, + 0.00038640154525637627, + -0.010603653267025948, + -0.08370929956436157, + -0.020826222375035286, + -0.02157079428434372, + -0.08463592082262039, + -0.06054386869072914, + 0.0617816336452961, + 0.05680430680513382, + 0.01414194144308567, + -0.05696660652756691, + 0.005289826076477766, + 0.014646832831203938, + -0.04479613155126572, + -0.03515005484223366, + 0.01611761748790741, + 0.004119857680052519, + 0.013549515046179295, + 0.017826711758971214, + 0.05872466042637825, + -0.03718062862753868, + 0.06339120119810104, + 0.04619596526026726, + 0.0245524775236845, + -0.046522822231054306, + -0.009679710492491722, + -0.059941984713077545, + 0.0090479189530015, + 0.0011790866265073419, + -0.05711930990219116, + -0.15054956078529358, + -0.07954254001379013, + -0.06844208389520645, + 0.06177962198853493, + 0.0032826384995132685, + -0.032833490520715714, + 0.03411206975579262, + -0.08529358357191086, + -0.02875216118991375, + -0.0009474074468016624, + -0.08202707767486572, + 0.05355074629187584, + -0.09149724245071411, + -0.07548689097166061, + -0.08598415553569794, + -1.0501435821769336e-33, + 0.018836217001080513, + -0.020434599369764328, + -0.013082529418170452, + 0.0002464876160956919, + -0.08195549249649048, + -0.03429470583796501, + 0.05169469863176346, + -0.016019416972994804, + 0.04645797610282898, + 0.08216908574104309, + -0.061330072581768036, + 0.022441083565354347, + -0.004952686373144388, + -0.009604445658624172, + 0.002809995785355568, + 0.09028147161006927, + -0.01084695104509592, + 0.09229737520217896, + -0.012261307798326015, + 0.010692356154322624, + -0.05704270303249359, + -0.011835199780762196, + -0.009887362830340862, + 0.02127840369939804, + -0.0125149330124259, + 0.04098822548985481, + 0.034319862723350525, + -0.054457634687423706, + -0.08660388737916946, + -0.04589960724115372, + -0.02946925349533558, + -0.0222562775015831, + 0.019825197756290436, + 0.03890645503997803, + -0.07713999599218369, + 0.03175770863890648, + 0.058474525809288025, + 0.014014163054525852, + 0.01924125850200653, + 0.03833644464612007, + -0.03755717724561691, + -0.01883157342672348, + 0.041638098657131195, + 0.010417393408715725, + -0.07318440824747086, + 0.03482472896575928, + 0.019489558413624763, + 0.01633351482450962, + -0.0026377029716968536, + 0.08352772891521454, + 0.05552945286035538, + 0.03559771552681923, + 0.03209337219595909, + -0.01704966090619564, + -0.04288985952734947, + 0.01595371589064598, + -0.017969585955142975, + -0.016729317605495453, + 0.0027747186832129955, + 0.0022671110928058624, + -0.03374149277806282, + -0.058559831231832504, + -0.0021855428349226713, + 0.13650821149349213, + 0.055278949439525604, + -0.053589168936014175, + 0.0060630496591329575, + -0.03626474365592003, + -0.010409687645733356, + 0.023025577887892723, + 0.04594225063920021, + 0.030995426699519157, + 0.003012828528881073, + 0.055545736104249954, + 0.02727835811674595, + -0.0005931290215812624, + 0.045864082872867584, + 0.0621914267539978, + 0.06321963667869568, + -0.008865300565958023, + -0.010365216992795467, + -0.015979347750544548, + -0.050538454204797745, + 0.10177971422672272, + 0.07443593442440033, + 0.10065459460020065, + -0.024951811879873276, + 0.02169598825275898, + 0.016023458912968636, + -0.03685362637042999, + -0.007138701155781746, + 0.10299264639616013, + -0.04898581653833389, + -0.03127497434616089, + -0.09074604511260986, + -2.1201710609375368e-08, + -0.05886412411928177, + -0.018625831231474876, + -0.05462745577096939, + -0.004932839423418045, + -0.009104439988732338, + 0.02463398687541485, + 0.01574941724538803, + 0.04367583245038986, + -0.02552974969148636, + 0.0007256779936142266, + 0.06108060106635094, + 0.045055072754621506, + -0.11828556656837463, + -0.08565278351306915, + 0.08612151443958282, + -0.013057074509561062, + -0.024393929168581963, + 0.04339519515633583, + -0.0484326109290123, + 0.01461397111415863, + -0.0236604455858469, + 0.10260608047246933, + 0.03729694336652756, + 0.02488621510565281, + -0.04377324879169464, + 0.026887964457273483, + 0.07663030177354813, + 0.0754622220993042, + 0.034591998904943466, + 0.01385608222335577, + 0.10373618453741074, + 0.04292614012956619, + 0.057766858488321304, + 0.004163677338510752, + -0.05583278462290764, + -0.0136698167771101, + -0.03273637220263481, + 0.019442306831479073, + -0.04121806472539902, + 0.11928407102823257, + -0.015890013426542282, + -0.06291324645280838, + -0.01718701794743538, + -0.045692961663007736, + 0.011445409618318081, + 0.05154537782073021, + 0.07919448614120483, + -0.011555434204638004, + -0.07901764661073685, + -0.07686560600996017, + -0.09426262229681015, + 0.04230929911136627, + -0.00839324202388525, + 0.08983709663152695, + -0.043326351791620255, + -0.01087763998657465, + 0.029200349003076553, + 0.028752287849783897, + 0.019735969603061676, + 0.025516053661704063, + 0.056897662580013275, + 0.047906406223773956, + -0.05989567190408707, + -0.014867985621094704 + ], + "map-pin-area-bold||*new*,maps,places,markers,pins,locations,poi,point of interest": [ + 0.0655352845788002, + -0.022597260773181915, + -0.026713902130723, + -0.0037765945307910442, + 0.06403416395187378, + -0.0664844885468483, + 0.06892693787813187, + -0.05874579772353172, + -0.035968199372291565, + -0.024742545560002327, + 0.07605893164873123, + 0.042598627507686615, + -0.0160369910299778, + -0.03760834410786629, + -0.017756987363100052, + 0.056830570101737976, + -0.01412684191018343, + 0.035391490906476974, + 0.03385155275464058, + -0.007085609249770641, + 0.03890052065253258, + -0.021937165409326553, + 0.04462559148669243, + 0.038199491798877716, + 0.018804803490638733, + 0.03237181156873703, + 0.04026258364319801, + 0.05076681450009346, + -0.016779711470007896, + -0.07482697069644928, + -0.019831033423542976, + 0.04435822367668152, + 0.12952110171318054, + 0.016192976385354996, + 0.08846192806959152, + 0.03881443664431572, + 0.010119611397385597, + -0.011744442395865917, + 0.021268710494041443, + -0.0065270233899354935, + 0.00787105318158865, + -0.057558685541152954, + 0.03214668482542038, + 0.071713887155056, + 0.028044288977980614, + 0.028634143993258476, + 0.028672896325588226, + -0.009451021440327168, + 0.024295909330248833, + 0.04042783007025719, + 0.013570645824074745, + -0.08245816081762314, + -0.0845673531293869, + -0.05925317853689194, + 0.043056972324848175, + 0.02005104348063469, + -0.04899683594703674, + -0.09571865200996399, + 0.06309780478477478, + -0.06376086920499802, + 0.10111262649297714, + 0.04462074488401413, + 0.03455236181616783, + 0.03357464447617531, + 0.04973646625876427, + -0.017981568351387978, + -0.04046257957816124, + 0.00013792930985800922, + 0.011986281722784042, + -0.07981264591217041, + 0.02855357527732849, + -0.019047744572162628, + -0.0036243109498173, + -0.06633663177490234, + 0.013330991379916668, + -0.00611663656309247, + -0.09537521749734879, + 0.012193231843411922, + -0.018516240641474724, + -0.053268902003765106, + -0.06184465065598488, + -0.021132919937372208, + 0.018407128751277924, + 0.10505549609661102, + -0.007055106107145548, + 0.047205839306116104, + -0.0643647089600563, + -0.06755712628364563, + 0.016035255044698715, + -0.06569467484951019, + -0.06601589173078537, + -0.06146961450576782, + -0.06374694406986237, + 0.009811753407120705, + -0.04215708747506142, + -0.01746237836778164, + 0.019483249634504318, + -0.07229836285114288, + -0.026337547227740288, + 0.06657607108354568, + 0.047180671244859695, + 0.042278703302145004, + 0.022450488060712814, + -0.06871753931045532, + -0.016733236610889435, + 0.003623137716203928, + -0.07046999037265778, + -0.004082355182617903, + -0.024619009345769882, + 0.034623052924871445, + -0.021373357623815536, + -0.06021929159760475, + -0.026044001802802086, + -0.06714702397584915, + -0.04930984228849411, + -0.02806650474667549, + -0.032080866396427155, + 0.026313113048672676, + 0.12779222428798676, + 0.06923358887434006, + 0.022815778851509094, + -0.05370451509952545, + -0.0747298076748848, + -0.015446959994733334, + -0.08477640897035599, + 0.025095263496041298, + -0.08249243348836899, + -2.0568928720383008e-33, + 0.062266089022159576, + 0.017608799040317535, + -0.019203146919608116, + 0.07491404563188553, + -0.0021407422609627247, + -0.014914295636117458, + -0.05156254768371582, + -0.10981059819459915, + -0.053240206092596054, + 0.05733586847782135, + 0.08032388240098953, + 0.010617841966450214, + -0.014922254718840122, + 0.10683228075504303, + 0.09785617887973785, + -0.042397305369377136, + 0.03450988978147507, + 0.0023322294000536203, + -0.08932947367429733, + -0.02393210679292679, + -0.0922451987862587, + 0.03628142178058624, + -0.0790577158331871, + -0.057986948639154434, + 0.08628872036933899, + 0.05422041192650795, + -0.022932151332497597, + 0.006790635176002979, + -0.05139658972620964, + 0.03450220823287964, + 0.023885633796453476, + -0.009203626774251461, + 0.046182721853256226, + -0.029009856283664703, + 0.008527260273694992, + 0.00473379110917449, + -0.07469874620437622, + -0.04201390594244003, + -0.02107509784400463, + 0.015490839257836342, + -0.00751831429079175, + -0.08089585602283478, + -0.07858434319496155, + -0.04190186783671379, + 0.04436102136969566, + 0.05498802289366722, + -0.05268995091319084, + -0.01733420416712761, + 0.045228973031044006, + 0.027622168883681297, + -0.003975281026214361, + 0.004063977859914303, + -0.06876333057880402, + -0.044235412031412125, + -0.027096586301922798, + -0.08372986316680908, + -0.07077212631702423, + 0.05613182857632637, + 0.06825677305459976, + 0.01147435512393713, + -0.031867943704128265, + 0.020259764045476913, + 0.019000303000211716, + -0.024650216102600098, + -0.042767755687236786, + -0.0002463452110532671, + 0.02310315892100334, + 0.009982901625335217, + -0.005018262658268213, + 0.05984974279999733, + -0.05173543095588684, + 0.04779702425003052, + 0.04837906360626221, + 0.05807901918888092, + -0.0506054125726223, + -0.0113734295591712, + -0.05813557282090187, + 0.02712676115334034, + -0.015309787355363369, + -0.0722399652004242, + -0.14441411197185516, + -0.09275738149881363, + -0.08477897197008133, + 0.0553584098815918, + 0.025764454156160355, + -0.04529103264212608, + 0.06376036256551743, + -0.07768744975328445, + -0.037343427538871765, + -0.042444538325071335, + -0.11175636947154999, + 0.033690981566905975, + -0.08018843084573746, + -0.07547246664762497, + -0.092288076877594, + -1.2831345521980767e-33, + 0.0039609698578715324, + -0.02642974629998207, + -0.0243038609623909, + -0.01825808919966221, + -0.1035197451710701, + -0.033638063818216324, + 0.03097780980169773, + 0.0043939887546002865, + 0.06297322362661362, + 0.08145757764577866, + -0.06615554541349411, + 0.03996012359857559, + 0.00953796599060297, + -0.027323782444000244, + 0.004826837219297886, + 0.06427595019340515, + -0.021237434819340706, + 0.09334054589271545, + -0.013860480859875679, + 0.032261401414871216, + -0.039656590670347214, + -0.007549070753157139, + -0.022355491295456886, + 0.013858195394277573, + -0.01993641071021557, + 0.018158694729208946, + 0.011430607177317142, + -0.061449531465768814, + -0.08077241480350494, + -0.04430758208036423, + -0.05757074058055878, + -0.047160420566797256, + 0.03156212717294693, + 0.07121441513299942, + -0.09212744981050491, + -0.004435149487107992, + 0.08715938776731491, + 0.009411731734871864, + 0.01868363283574581, + 0.04139048978686333, + -0.031199190765619278, + -0.033926334232091904, + 0.06830815225839615, + 0.01580115221440792, + -0.09102832525968552, + 0.0173810925334692, + -0.0007919463096186519, + 0.03964957967400551, + -0.031028207391500473, + 0.07806947827339172, + 0.0434587225317955, + 0.02038702927529812, + 0.034384071826934814, + -0.02815205417573452, + -0.02312992326915264, + 0.06142893433570862, + -0.008744017221033573, + -0.011055734939873219, + 0.007961641065776348, + 0.007166542578488588, + -0.041563451290130615, + -0.05026210844516754, + -0.030682295560836792, + 0.1369766891002655, + 0.05876363441348076, + -0.04663335904479027, + -0.01581135019659996, + -0.051964741200208664, + -0.034631501883268356, + 0.03895401582121849, + 0.04628676176071167, + 0.05971634015440941, + -0.03447013348340988, + 0.03629380092024803, + 0.011039014905691147, + 0.011128387413918972, + 0.042644478380680084, + 0.07035455852746964, + 0.049881093204021454, + -0.006058354862034321, + -0.009556207805871964, + -0.01623147912323475, + -0.04415053129196167, + 0.08661559969186783, + 0.09606851637363434, + 0.10007429867982864, + -0.028714897111058235, + 0.030527198687195778, + 0.01268440205603838, + -0.04360876977443695, + -0.040568314492702484, + 0.10624094307422638, + -0.0474117249250412, + -0.011630494147539139, + -0.08291120827198029, + -2.3389242542748434e-08, + -0.044027406722307205, + -0.007567938882857561, + -0.06032608076930046, + -0.008898843079805374, + 0.011875217780470848, + 0.012043806724250317, + -0.006241822615265846, + 0.058594297617673874, + -0.03135913982987404, + 0.009752432815730572, + 0.06537311524152756, + 0.044885970652103424, + -0.12420037388801575, + -0.06508376449346542, + 0.06444796919822693, + -0.006691677030175924, + -0.014498758129775524, + 0.04272811859846115, + -0.04913918301463127, + -0.026952899992465973, + -0.0049027190543711185, + 0.10319468379020691, + 0.0502193309366703, + 0.011594315990805626, + -0.013346531428396702, + 0.00949818640947342, + 0.06553910672664642, + 0.07021172344684601, + 0.02454124204814434, + -0.0016178026562556624, + 0.10853196680545807, + 0.027779771015048027, + 0.05201459303498268, + 0.01093636080622673, + -0.03929923102259636, + -0.012531435117125511, + -0.05056927725672722, + 0.028066283091902733, + -0.03565271198749542, + 0.09342741966247559, + -0.007055653724819422, + -0.03846967965364456, + 0.012803614139556885, + -0.047409962862730026, + 0.015514387749135494, + 0.03537402302026749, + 0.0901321992278099, + -0.010312889702618122, + -0.0625525712966919, + -0.08322001993656158, + -0.08678470551967621, + 0.0487331822514534, + -0.002040795050561428, + 0.08487523347139359, + -0.038290273398160934, + 0.01662589982151985, + 0.02899322286248207, + 0.03357256203889847, + 0.03471342846751213, + 0.040891680866479874, + 0.06623291969299316, + 0.0686340257525444, + -0.06239231303334236, + 0.003559280652552843 + ], + "map-pin-line-bold||maps,places,markers,pins,locations,poi,point of interest": [ + 0.03521633893251419, + -0.011685686185956001, + -0.038551293313503265, + -0.014776227995753288, + 0.047130197286605835, + -0.030824922025203705, + 0.06971636414527893, + -0.05496717616915703, + -0.025946035981178284, + -0.04578239470720291, + 0.06004897132515907, + 0.05100545659661293, + -0.021095845848321915, + -0.050301145762205124, + -0.031684815883636475, + 0.08330725878477097, + -0.02327282726764679, + 0.010766273364424706, + 0.044349025934934616, + 0.009937676601111889, + 0.034858666360378265, + -0.03006349876523018, + 0.012354683130979538, + 0.04594947770237923, + 0.0024260454811155796, + 0.03270675987005234, + 0.07081391662359238, + 0.045892901718616486, + -0.039642542600631714, + -0.07231705635786057, + -0.03362580016255379, + 0.023514840751886368, + 0.08718417584896088, + 0.03137856721878052, + 0.07564942538738251, + 0.051237042993307114, + 0.03402506560087204, + -0.03671827167272568, + 0.012843037024140358, + -0.015403512865304947, + 0.024112137034535408, + -0.06609710305929184, + 0.017191868275403976, + 0.04308011010289192, + 0.04435410723090172, + 0.00838721077889204, + 0.03425509110093117, + -0.04172159731388092, + 0.003301492426544428, + 0.06055545434355736, + -0.002732452703639865, + -0.04079950973391533, + -0.0848795473575592, + -0.047391846776008606, + 0.05098191276192665, + 0.02679479494690895, + -0.055180665105581284, + -0.0916975736618042, + 0.08561483770608902, + -0.05605177581310272, + 0.07953254878520966, + 0.04345646873116493, + 0.029392141848802567, + 0.01989636942744255, + 0.05634094029664993, + -0.01667647436261177, + -0.022122610360383987, + 0.019272148609161377, + 0.03405085951089859, + -0.07362179458141327, + 0.0339069701731205, + -0.0529034323990345, + 0.010530420579016209, + -0.0762951597571373, + 0.024587711319327354, + 0.02687571570277214, + -0.07264512032270432, + 0.004251354373991489, + -0.02347796969115734, + -0.06020381301641464, + -0.06895583868026733, + -0.039590947329998016, + 0.027721453458070755, + 0.10760779678821564, + -4.5989809223101474e-06, + 0.04955776780843735, + -0.07844994217157364, + -0.08671645820140839, + 0.03611576929688454, + -0.04871366173028946, + -0.06941329687833786, + -0.059357888996601105, + -0.032912563532590866, + 0.025243904441595078, + -0.03496078774333, + -0.013820701278746128, + 0.010737926699221134, + -0.04624088108539581, + -0.034299831837415695, + 0.06633757799863815, + 0.05161665007472038, + 0.06936570256948471, + 0.02470294199883938, + -0.03921817988157272, + -0.009369446896016598, + 0.0047416468150913715, + -0.04576817527413368, + -0.03240564838051796, + -0.0463348850607872, + -0.016909347847104073, + -0.028483862057328224, + -0.09247326850891113, + -0.01989426091313362, + -0.065883569419384, + -0.07084820419549942, + -0.045897383242845535, + -0.043186165392398834, + 0.046571485698223114, + 0.14579497277736664, + 0.0645308643579483, + 0.0008190873195417225, + -0.061878472566604614, + -0.0738590806722641, + -0.019834289327263832, + -0.06665298342704773, + 0.031352441757917404, + -0.03258748725056648, + -2.0399113867727343e-33, + 0.06788647174835205, + 0.01662958413362503, + 0.010741113685071468, + 0.04988476261496544, + 0.01970970258116722, + -0.01709509827196598, + -0.10642387717962265, + -0.10860302299261093, + -0.07473739981651306, + 0.08280425518751144, + 0.09003095328807831, + -0.04877172037959099, + -0.018435630947351456, + 0.10725177079439163, + 0.07627375423908234, + -0.043756380677223206, + 0.03425883501768112, + -0.031612854450941086, + -0.1134226843714714, + 0.029342008754611015, + -0.08147167414426804, + 0.009886425919830799, + -0.08975844085216522, + -0.08255273103713989, + 0.08968989551067352, + 0.054657720029354095, + -0.03290762007236481, + 0.02482125163078308, + -0.05398904159665108, + 0.029254142194986343, + 0.05982483923435211, + -0.02908949740231037, + 0.05611436441540718, + -0.039697229862213135, + -0.012184297665953636, + 0.014666714705526829, + -0.0687265619635582, + -0.030850902199745178, + -0.025641614571213722, + 0.026801085099577904, + 0.004457277245819569, + -0.07187975943088531, + -0.07568906247615814, + -0.019173577427864075, + 0.04304247722029686, + 0.0628662109375, + -0.0638495609164238, + 0.0030218539759516716, + 0.02484465390443802, + 0.048595428466796875, + -0.022227248176932335, + -0.0038773464038968086, + -0.06508996337652206, + -0.02610369399189949, + -0.005728946998715401, + -0.08650091290473938, + -0.06338287889957428, + 0.07379496842622757, + 0.05000481754541397, + 0.009529832750558853, + -0.04493812471628189, + -0.0010699289850890636, + 0.001057892106473446, + -0.03165608271956444, + -0.013315267860889435, + 0.024535926058888435, + 0.005678918212652206, + 0.020665626972913742, + 0.023042326793074608, + 0.0512055940926075, + -0.054730210453271866, + 0.05283629149198532, + 0.048537857830524445, + 0.033711791038513184, + -0.04251899570226669, + -0.014308108016848564, + -0.07378572970628738, + 0.01765952818095684, + 0.03106926567852497, + -0.05859394744038582, + -0.13905233144760132, + -0.07048646360635757, + -0.06047496944665909, + 0.06548306345939636, + 0.010160088539123535, + -0.024929333478212357, + 0.04233274236321449, + -0.09170784056186676, + -0.0247969850897789, + 0.011518462561070919, + -0.08638826012611389, + 0.05523771792650223, + -0.09520354866981506, + -0.06246133893728256, + -0.08625215291976929, + -9.857617565823969e-34, + 0.016889994964003563, + -0.01083237025886774, + -0.007917781360447407, + 0.00408159289509058, + -0.07716892659664154, + -0.02538548782467842, + 0.043166983872652054, + -0.005522171501070261, + 0.06782123446464539, + 0.11170415580272675, + -0.04977584257721901, + 0.03064548224210739, + -0.010393830016255379, + -0.004845546558499336, + 0.01422435138374567, + 0.08077113330364227, + -0.020191093906760216, + 0.07975414395332336, + 0.0029690840747207403, + -0.003109081881120801, + -0.05034460127353668, + -0.033704280853271484, + -0.0013960457872599363, + 0.01680433563888073, + -0.01724831573665142, + 0.019900787621736526, + 0.03466251492500305, + -0.045982155948877335, + -0.08544029295444489, + -0.038370151072740555, + -0.028070583939552307, + -0.0286758691072464, + 0.013663416728377342, + 0.026860104873776436, + -0.0749458596110344, + 0.042851854115724564, + 0.055985622107982635, + 0.034624483436346054, + 0.024780021980404854, + 0.02839936502277851, + -0.04726872220635414, + -0.0073575046844780445, + 0.05354984104633331, + -0.027088752016425133, + -0.08177830278873444, + 0.043997786939144135, + 0.014647663570940495, + 0.02655795030295849, + -0.020545542240142822, + 0.09900620579719543, + 0.028864452615380287, + 0.05900885537266731, + 0.026875311508774757, + 0.0034874053671956062, + -0.05484293773770332, + 0.008830557577311993, + -0.017242595553398132, + -0.012879965826869011, + -0.016442565247416496, + -0.0010858566965907812, + -0.029510514810681343, + -0.060709498822689056, + -0.02689741924405098, + 0.12474869191646576, + 0.07338652014732361, + -0.038602668792009354, + 0.02155883237719536, + -0.05237741768360138, + 0.005904688499867916, + 0.02360754832625389, + 0.05302383378148079, + 0.04015868157148361, + -0.0077521465718746185, + 0.0570303313434124, + 0.019519271329045296, + -0.005870511289685965, + 0.048666518181562424, + 0.060137104243040085, + 0.062225986272096634, + -0.0031404849141836166, + -0.0008514533983543515, + -0.029726795852184296, + -0.049830883741378784, + 0.10829032212495804, + 0.0662199854850769, + 0.10655097663402557, + -0.021144790574908257, + 0.03519108518958092, + 0.02515099197626114, + -0.036144107580184937, + -0.00806227046996355, + 0.09243269264698029, + -0.07634776085615158, + -0.026715891435742378, + -0.09529754519462585, + -2.156657430418818e-08, + -0.05364286154508591, + -0.022195633500814438, + -0.0424828976392746, + -0.01032860204577446, + 0.001471472904086113, + 0.030642271041870117, + 0.026581689715385437, + 0.03362381458282471, + -0.027289776131510735, + -0.010613152757287025, + 0.0596209317445755, + 0.06570850312709808, + -0.12614883482456207, + -0.07683292031288147, + 0.08438143879175186, + -0.012279456481337547, + -0.027104612439870834, + 0.035661276429891586, + -0.05187484994530678, + 0.011861752718687057, + -0.030681217089295387, + 0.09067320823669434, + 0.025771288201212883, + 0.02959931083023548, + -0.03984452039003372, + 0.025420431047677994, + 0.07451736181974411, + 0.09029766172170639, + 0.022743280977010727, + 0.015554254874587059, + 0.1015847846865654, + 0.040096819400787354, + 0.06635484844446182, + 0.000444044271716848, + -0.0428401418030262, + -0.03960846737027168, + -0.03260309249162674, + 0.026031188666820526, + -0.0372464656829834, + 0.11497975885868073, + -0.017791060730814934, + -0.04578322917222977, + -0.002751932479441166, + -0.05326203629374504, + 0.023192433640360832, + 0.038977280259132385, + 0.06795881688594818, + -0.011285730637609959, + -0.09675592184066772, + -0.07824809104204178, + -0.09682309627532959, + 0.04700873792171478, + -0.0015716718044131994, + 0.06549031287431717, + -0.06271965056657791, + -0.01952396333217621, + 0.04088706150650978, + 0.02795753814280033, + -0.0005863789119757712, + 0.02542952261865139, + 0.05803513526916504, + 0.04764418303966522, + -0.0498577244579792, + -0.023430710658431053 + ], + "map-pin-plus-bold||*new*,maps,places,markers,pins,locations,add,point of interest": [ + 0.053936123847961426, + -0.052428118884563446, + -0.02589765563607216, + 0.020588025450706482, + 0.07929941266775131, + -9.168265023618005e-06, + 0.06176874414086342, + -0.05807340890169144, + -0.039189960807561874, + 0.023153796792030334, + 0.07011128216981888, + 0.04471571743488312, + -0.010096720419824123, + -0.04130344092845917, + -0.007240405306220055, + 0.05693527311086655, + -0.020812973380088806, + 0.03337084874510765, + 0.026794953271746635, + -0.047979239374399185, + 0.02247318997979164, + -0.04824476316571236, + 0.021858081221580505, + 0.0596555732190609, + 0.0740351676940918, + 0.0339234322309494, + 0.03214811533689499, + 0.015019928105175495, + -0.006681601516902447, + -0.05235619470477104, + -0.003002586541697383, + 0.01724941097199917, + 0.09745636582374573, + 0.039140261709690094, + 0.0663132518529892, + 0.05391116440296173, + -0.006926316302269697, + -0.01110315602272749, + -0.008309924975037575, + -0.04442788287997246, + 0.015825124457478523, + -0.07189646363258362, + 0.028376463800668716, + 0.07380960136651993, + -0.00723266089335084, + 0.002287685638293624, + 0.026023389771580696, + -0.03113790974020958, + 0.05254232883453369, + 0.07082442939281464, + 0.027537371963262558, + -0.05764888599514961, + -0.11754883825778961, + -0.05673731863498688, + 0.05463409423828125, + 0.028433628380298615, + -0.08339013904333115, + -0.09009071439504623, + 0.04959904029965401, + -0.0601808987557888, + 0.10237080603837967, + 0.036692678928375244, + 0.07473008334636688, + 0.020202402025461197, + 0.057987362146377563, + -0.035104457288980484, + -0.05463418364524841, + 0.03747187554836273, + 0.03971930220723152, + -0.03430596739053726, + 0.04344083368778229, + -0.019044391810894012, + 0.02516712248325348, + -0.05081607773900032, + 0.025179889053106308, + -0.015037325210869312, + -0.08337809890508652, + 0.0008619982982054353, + -0.032853107899427414, + -0.04402809590101242, + -0.057162851095199585, + -0.05021281540393829, + 0.030361702665686607, + 0.09368664026260376, + 0.0205142330378294, + 0.031687889248132706, + -0.06601569801568985, + -0.0715261772274971, + -0.006501474883407354, + -0.06517968326807022, + -0.07369815558195114, + -0.07344546169042587, + -0.038163986057043076, + 0.008255630731582642, + -0.05067695677280426, + -0.0167410708963871, + 0.0036221679765731096, + -0.0355389229953289, + -0.043997135013341904, + 0.06250259280204773, + 0.0405455157160759, + 0.08983461558818817, + 0.007689037825912237, + -0.06207013130187988, + 0.022071707993745804, + 0.01576431468129158, + -0.07199662923812866, + -0.03185107931494713, + -0.08210886269807816, + 0.006535332649946213, + -0.02129807136952877, + -0.05798335745930672, + -0.02122657187283039, + -0.06723376363515854, + -0.08693752437829971, + 0.0017137291142717004, + -0.040158238261938095, + 0.02116568014025688, + 0.12120440602302551, + 0.08462435007095337, + 0.07658573985099792, + -0.06152438372373581, + -0.037785209715366364, + -0.049295686185359955, + -0.12430322915315628, + 0.03424197807908058, + -0.07028400897979736, + -2.104385598876406e-33, + 0.07512100785970688, + 0.02602691948413849, + -0.04202457517385483, + 0.0789484903216362, + 0.005679434165358543, + -0.008731028065085411, + -0.07172051072120667, + -0.0736030712723732, + -0.11939523369073868, + 0.051618508994579315, + 0.1030554249882698, + -0.006129859015345573, + -0.013601514510810375, + 0.13308581709861755, + 0.06348828226327896, + -0.03618982434272766, + 0.03507182374596596, + -0.027007801458239555, + -0.08935357630252838, + -0.0038808034732937813, + -0.09788479655981064, + 0.023180581629276276, + -0.09143314510583878, + -0.04251568019390106, + 0.0934625193476677, + 0.05675704404711723, + -0.03929664194583893, + 0.030449341982603073, + -0.060447439551353455, + 0.02661285363137722, + 0.035953324288129807, + -0.02491101250052452, + 0.025564704090356827, + -0.00813799723982811, + 0.02534976601600647, + 0.02295638434588909, + -0.06009869650006294, + -0.03680887818336487, + 0.011069441214203835, + 0.0008759790216572583, + 0.00788687914609909, + -0.09883454442024231, + -0.12330836802721024, + -0.05312488228082657, + 0.046005554497241974, + 0.06665565073490143, + -0.05618881806731224, + -0.027886386960744858, + 0.020243743434548378, + 0.022567767649888992, + 0.012476084753870964, + 0.0015109088271856308, + -0.08626604080200195, + -0.023608939722180367, + -0.053175341337919235, + -0.08206295967102051, + -0.08320197463035583, + 0.05410689488053322, + 0.06918515264987946, + 0.0010433123679831624, + -0.04785185307264328, + 0.00790491048246622, + 0.0005959720583632588, + -0.00540820462629199, + -0.023095637559890747, + 0.014439833350479603, + 0.04652988538146019, + 0.03678729385137558, + 0.013746749609708786, + 0.038765449076890945, + -0.056626494973897934, + 0.05163256824016571, + 0.020897328853607178, + 0.049143776297569275, + -0.05181111767888069, + -0.02948644757270813, + -0.05221083015203476, + -0.010192046873271465, + -0.01731189712882042, + -0.07107040286064148, + -0.11442497372627258, + -0.07822366803884506, + -0.04426233842968941, + 0.06663501262664795, + 0.009114788845181465, + -0.04565177112817764, + 0.03403959050774574, + -0.087032251060009, + 0.00016255935770459473, + -0.029577426612377167, + -0.10205948352813721, + 0.03910718113183975, + -0.10286947339773178, + -0.07584887742996216, + -0.09298742562532425, + -1.3003480139269382e-33, + 0.01334631722420454, + -0.022715309634804726, + -0.03482718765735626, + 0.007512298878282309, + -0.09735337644815445, + -0.02850666083395481, + 0.062027283012866974, + -0.034306589514017105, + 0.062126290053129196, + 0.05974861979484558, + -0.04312786087393761, + 0.022430920973420143, + 0.00025266120792366564, + -0.024704772979021072, + 0.014506162144243717, + 0.08596378564834595, + -0.060805633664131165, + 0.07933556288480759, + 0.0019509789999574423, + 0.002016664482653141, + -0.04780219495296478, + -0.0018781381659209728, + 0.0011468887096270919, + 0.00591373210772872, + 0.014895995147526264, + 0.011220570653676987, + 0.026611870154738426, + -0.02980303391814232, + -0.06198698654770851, + -0.05938882380723953, + -0.0052047609351575375, + -0.001477814861573279, + 0.029102997854351997, + 0.03807228431105614, + -0.05065576732158661, + 0.04051761329174042, + 0.072929248213768, + 0.014248576946556568, + 0.016731582581996918, + 0.056327756494283676, + -0.04331928864121437, + -0.019746387377381325, + 0.04112847149372101, + 0.00346240121871233, + -0.053937509655952454, + 0.025200719013810158, + 0.0223114974796772, + 0.021952522918581963, + -0.009222106076776981, + 0.06558975577354431, + 0.06484536826610565, + -0.0038903483655303717, + -0.018796700984239578, + -0.030690178275108337, + -0.029555603861808777, + 0.03935027867555618, + 0.00403392082080245, + 0.010052262805402279, + 0.026719987392425537, + -0.01048711221665144, + -0.04242774844169617, + -0.0657099038362503, + -0.013677000999450684, + 0.09554465115070343, + 0.06250594556331635, + -0.06494582444429398, + -0.029500387609004974, + -0.056500863283872604, + -0.04194400832056999, + 0.018911393359303474, + 0.0548042468726635, + 0.04717866703867912, + -0.02574329450726509, + 0.04819966107606888, + -0.00448611518368125, + -0.027825236320495605, + 0.054307565093040466, + 0.050395410507917404, + 0.03750527277588844, + -0.02635151520371437, + -0.009377007372677326, + -0.0031130306888371706, + -0.01210999209433794, + 0.0678204819560051, + 0.06214108318090439, + 0.07916880398988724, + -0.031142057850956917, + 0.06056613847613335, + -0.025308771058917046, + -0.04465920850634575, + -0.03866672143340111, + 0.11330351233482361, + -0.061599764972925186, + -0.008704600855708122, + -0.10297872126102448, + -2.4269084519801254e-08, + -0.07306494563817978, + -0.0001508342393208295, + -0.06533852219581604, + -0.002153464127331972, + 0.024566594511270523, + 0.020832156762480736, + 0.003319414099678397, + 0.05540081486105919, + -0.03518848121166229, + -0.016505397856235504, + 0.03788655251264572, + 0.0605572946369648, + -0.09333213418722153, + -0.05620834603905678, + 0.06661718338727951, + -0.002047981135547161, + -0.004223630763590336, + 0.04811378940939903, + -0.04499027505517006, + 0.006306185387074947, + -0.005699132569134235, + 0.11512798815965652, + 0.030992764979600906, + 0.007855608128011227, + -0.045063842087984085, + 0.0235180351883173, + 0.08008681237697601, + 0.0632721558213234, + 0.043847598135471344, + 0.025123845785856247, + 0.0974036231637001, + 0.03496040403842926, + 0.05335724726319313, + 0.017755987122654915, + -0.05386704206466675, + -0.023464057594537735, + -0.05321802571415901, + 0.02784959226846695, + -0.039689816534519196, + 0.1170358881354332, + -0.0005246889195404947, + -0.019718941301107407, + -0.00852766539901495, + -0.03333156555891037, + -0.018102778121829033, + 0.004459329415112734, + 0.0736970528960228, + -0.02696499228477478, + -0.0854441225528717, + -0.09056179225444794, + -0.0644243136048317, + 0.03841422498226166, + 0.029928244650363922, + 0.052914559841156006, + -0.021272199228405952, + 0.016796620562672615, + 0.035304486751556396, + 0.07029060274362564, + 0.04779910296201706, + 0.02142893150448799, + 0.031621210277080536, + 0.04481453076004982, + -0.03430243954062462, + -0.007303041405975819 + ], + "map-pin-simple-bold||*new*,maps,places,markers,pins,locations,poi,point of interest": [ + 0.04618607461452484, + -0.02205415442585945, + -0.0238734632730484, + -0.013216125778853893, + 0.05941691994667053, + -0.038091402500867844, + 0.06544651836156845, + -0.05549908056855202, + -0.04345381259918213, + -0.0115811787545681, + 0.07935293763875961, + 0.03400326147675514, + -0.017940251156687737, + -0.042471256107091904, + -0.01829645223915577, + 0.07085610181093216, + -0.02085747756063938, + 0.02952243573963642, + 0.044939130544662476, + -0.0040152911096811295, + 0.023511335253715515, + -0.03856602683663368, + 0.015516640618443489, + 0.052168820053339005, + 0.016481898725032806, + 0.030814142897725105, + 0.05789436027407646, + 0.03145292401313782, + -0.013448052108287811, + -0.07459214329719543, + -0.011861382983624935, + 0.021729936823248863, + 0.10704147815704346, + 0.025535007938742638, + 0.07903093099594116, + 0.05751422420144081, + 0.02935618907213211, + -0.02682756446301937, + -0.000873307348228991, + -0.023462826386094093, + 0.0036787441931664944, + -0.07048789411783218, + 0.023425092920660973, + 0.06475113332271576, + 0.025905726477503777, + 0.011946940794587135, + 0.04471995681524277, + -0.02452012151479721, + 0.012532278895378113, + 0.048901040107011795, + -0.004716035444289446, + -0.058994486927986145, + -0.09237702935934067, + -0.06713436543941498, + 0.062172889709472656, + 0.02132730558514595, + -0.06763114035129547, + -0.10763281583786011, + 0.06456732004880905, + -0.06457080692052841, + 0.09988632053136826, + 0.03441176563501358, + 0.04335005581378937, + 0.024358466267585754, + 0.0520683228969574, + -0.03441952168941498, + -0.028521843254566193, + 0.0009030647925101221, + 0.03971703723073006, + -0.07780061662197113, + 0.01663392223417759, + -0.03945760056376457, + -0.0013096568873152137, + -0.051270246505737305, + 0.015265815891325474, + -0.0056883967481553555, + -0.09003257751464844, + 0.007337069138884544, + -0.03089085966348648, + -0.05063780024647713, + -0.0708238035440445, + -0.04498065635561943, + 0.020003091543912888, + 0.1192813515663147, + 0.006646406836807728, + 0.037320345640182495, + -0.0799691453576088, + -0.05309901386499405, + 0.01383855752646923, + -0.06502577662467957, + -0.0694139301776886, + -0.06286368519067764, + -0.03627976030111313, + 0.020693665370345116, + -0.033041466027498245, + -0.004130108281970024, + 0.024089910089969635, + -0.05150236561894417, + -0.0321216806769371, + 0.08530857414007187, + 0.038231298327445984, + 0.07341247797012329, + 0.03336422145366669, + -0.06771881133317947, + -0.009019517339766026, + 0.0032698423601686954, + -0.07053489983081818, + -0.04407598078250885, + -0.05498938634991646, + -0.0003601110656745732, + -0.04177287220954895, + -0.07617292553186417, + -0.027436506003141403, + -0.06935039907693863, + -0.05545801296830177, + -0.0262298621237278, + -0.06101962551474571, + 0.0330597423017025, + 0.1321374624967575, + 0.09487563371658325, + 0.027546139433979988, + -0.06386960297822952, + -0.06974079459905624, + -0.022554412484169006, + -0.10935400426387787, + 0.03409788757562637, + -0.08018794655799866, + -1.750208048947697e-33, + 0.08091695606708527, + 0.0394844189286232, + -0.018993979319930077, + 0.07288162410259247, + 0.0018577281152829528, + -0.028346898034214973, + -0.06631027162075043, + -0.10259535908699036, + -0.07612799853086472, + 0.056979503482580185, + 0.10008707642555237, + -0.015127099119126797, + -0.021313760429620743, + 0.11776896566152573, + 0.07462606579065323, + -0.05019412562251091, + 0.036803822964429855, + -0.01622355543076992, + -0.08125241845846176, + -0.008931268937885761, + -0.0782356709241867, + 0.05030188336968422, + -0.09404806792736053, + -0.07721831649541855, + 0.0912344753742218, + 0.06250651925802231, + -0.026086250320076942, + 0.008204737678170204, + -0.05197889730334282, + 0.0266579482704401, + 0.050383370369672775, + -0.019616900011897087, + 0.05469333752989769, + -0.022965317592024803, + 0.014071943238377571, + -0.003501082770526409, + -0.06478918343782425, + -0.03656452149152756, + -0.018780874088406563, + -0.0014907482545822859, + -0.004142596386373043, + -0.08286916464567184, + -0.08297467231750488, + -0.025790471583604813, + 0.05276798456907272, + 0.06026959791779518, + -0.06675291061401367, + -0.00648996839299798, + 0.03942602127790451, + 0.026668233796954155, + -0.010689940303564072, + -0.003874195972457528, + -0.09309856593608856, + -0.012723701074719429, + -0.034954734146595, + -0.0831182673573494, + -0.07040559500455856, + 0.06560023128986359, + 0.06354683637619019, + 0.006065521854907274, + -0.04612455889582634, + 0.035491980612277985, + 0.002103291219100356, + -0.014082559384405613, + -0.037079837173223495, + 0.02039584144949913, + 0.008985946886241436, + 0.00010745172039605677, + 0.01766083762049675, + 0.0726800337433815, + -0.05800122395157814, + 0.062053460627794266, + 0.024896660819649696, + 0.022281430661678314, + -0.04060018062591553, + -0.010351712815463543, + -0.041364457458257675, + -0.014155574142932892, + -0.013289440423250198, + -0.06905598193407059, + -0.13986137509346008, + -0.07318006455898285, + -0.06691201776266098, + 0.08059729635715485, + -0.008776240050792694, + -0.04661552235484123, + 0.04625442996621132, + -0.06819488853216171, + -0.020420243963599205, + -0.018752045929431915, + -0.1088012158870697, + 0.0481228344142437, + -0.10097991675138474, + -0.08157484978437424, + -0.0701265037059784, + -1.569719891257558e-33, + 0.020230352878570557, + -0.0258737001568079, + -0.019323887303471565, + 0.0026777787134051323, + -0.08364704996347427, + -0.02612711861729622, + 0.040438517928123474, + -0.011870336718857288, + 0.05820970982313156, + 0.07988426089286804, + -0.0597262866795063, + 0.02327316254377365, + 0.008522813208401203, + -0.0100493673235178, + 0.022385932505130768, + 0.08666897565126419, + -0.040063049644231796, + 0.0915539413690567, + -0.003367246361449361, + 0.02147914655506611, + -0.04438282921910286, + 0.013189993798732758, + -0.034345757216215134, + -0.005608481355011463, + 0.001585142221301794, + 0.024595146998763084, + 0.029095645993947983, + -0.038993529975414276, + -0.07160445302724838, + -0.043575406074523926, + -0.03935248404741287, + -0.028374454006552696, + 0.029830943793058395, + 0.05751479044556618, + -0.07475307583808899, + 0.03574756532907486, + 0.06788070499897003, + 0.013139248825609684, + 0.015071315690875053, + 0.03695216402411461, + -0.04576173797249794, + -0.017326772212982178, + 0.061481766402721405, + 0.005286280531436205, + -0.06696218997240067, + 0.02490696869790554, + 0.010217477567493916, + 0.01733511872589588, + -0.015325822867453098, + 0.07369726151227951, + 0.051005009561777115, + 0.008870365098118782, + 0.02557956613600254, + -0.03640345484018326, + -0.02883758582174778, + 0.03600049391388893, + 0.000378705735784024, + -0.011780927889049053, + 0.005294181406497955, + 0.004561471752822399, + -0.04874885082244873, + -0.058859970420598984, + -0.021546456962823868, + 0.1369796097278595, + 0.04562883824110031, + -0.06264184415340424, + -0.014958495274186134, + -0.049765296280384064, + -0.03739865869283676, + 0.020300593227148056, + 0.0317748598754406, + 0.04536237195134163, + -0.017041321843862534, + 0.029998039826750755, + 0.028016185387969017, + -0.00963787641376257, + 0.03271320462226868, + 0.06079208105802536, + 0.048899609595537186, + -0.02104189433157444, + 0.0026306905783712864, + -0.006176029331982136, + -0.04874223470687866, + 0.07937366515398026, + 0.0902322456240654, + 0.0990394726395607, + -0.022777656093239784, + 0.03216523304581642, + 0.012712501920759678, + -0.03326556459069252, + -0.029180046170949936, + 0.11453596502542496, + -0.04363944008946419, + -0.008141902275383472, + -0.0887972041964531, + -2.3945467830799316e-08, + -0.06168961524963379, + -0.024284543469548225, + -0.0517687164247036, + 0.0008245221106335521, + 0.010665769688785076, + 0.023249657824635506, + 0.006040437147021294, + 0.03198589012026787, + -0.029314717277884483, + -0.0029809747356921434, + 0.05659990385174751, + 0.0540161058306694, + -0.10555263608694077, + -0.057310979813337326, + 0.06274551153182983, + 0.003967165946960449, + -0.009358701296150684, + 0.04513240233063698, + -0.03756062686443329, + 0.008810341358184814, + -0.014086296781897545, + 0.1073821410536766, + 0.03605973720550537, + 0.02580767497420311, + -0.04373469203710556, + 0.025102566927671432, + 0.07868095487356186, + 0.06913293898105621, + 0.033737845718860626, + 0.022254962474107742, + 0.10219934582710266, + 0.04499507322907448, + 0.05291889235377312, + 0.006449646782130003, + -0.06124943494796753, + -0.006896262057125568, + -0.053494032472372055, + 0.03054816834628582, + -0.042331308126449585, + 0.1018117219209671, + -0.00024081530864350498, + -0.025483867153525352, + -0.017885543406009674, + -0.05058770254254341, + 0.002047566929832101, + 0.0317540168762207, + 0.06464424729347229, + -0.031078781932592392, + -0.07947463542222977, + -0.08727234601974487, + -0.08241887390613556, + 0.04618271067738533, + 0.005808371119201183, + 0.06369157135486603, + -0.03944527730345726, + 0.03243790566921234, + 0.033136654645204544, + 0.048035651445388794, + 0.028817953541874886, + 0.01941804215312004, + 0.05973918363451958, + 0.07779167592525482, + -0.046383973211050034, + -0.0009894344257190824 + ], + "map-pin-simple-area-bold||*new*,maps,places,markers,pins,locations,poi,point of interest": [ + 0.06777802854776382, + -0.021101603284478188, + -0.023330798372626305, + -0.0073480019345879555, + 0.06353189796209335, + -0.059795159846544266, + 0.06037061661481857, + -0.045300308614969254, + -0.04580884426832199, + -0.021062402054667473, + 0.08635066449642181, + 0.036053188145160675, + -0.021021077409386635, + -0.040194522589445114, + -0.013706852681934834, + 0.058938030153512955, + -0.021023862063884735, + 0.027297450229525566, + 0.030781831592321396, + -0.0046464488841593266, + 0.03363502770662308, + -0.03192644193768501, + 0.033221110701560974, + 0.03698614239692688, + 0.012506661005318165, + 0.03661525994539261, + 0.04529310762882233, + 0.059781502932310104, + -0.0014834933681413531, + -0.07396289706230164, + -0.01912689581513405, + 0.040639590471982956, + 0.12848025560379028, + 0.01480835024267435, + 0.08261433988809586, + 0.03238450363278389, + 0.01783747784793377, + -0.004600972402840853, + 0.012385464273393154, + -0.010303284041583538, + 0.0012713073519989848, + -0.06403035670518875, + 0.036037325859069824, + 0.07627330720424652, + 0.028462832793593407, + 0.028009973466396332, + 0.0356719084084034, + -0.010525637306272984, + 0.02172505296766758, + 0.03394407033920288, + 0.016742007806897163, + -0.07739407569169998, + -0.08138729631900787, + -0.05449938774108887, + 0.045688193291425705, + 0.02171839028596878, + -0.05813876911997795, + -0.08469901233911514, + 0.06278976798057556, + -0.06460998207330704, + 0.10276982933282852, + 0.03638150915503502, + 0.03717046603560448, + 0.03059440478682518, + 0.04729641228914261, + -0.02824810892343521, + -0.04609139636158943, + -0.004686072468757629, + 0.013905255123972893, + -0.08099421858787537, + 0.017105411738157272, + -0.02630697749555111, + -0.00825186911970377, + -0.06377200782299042, + 0.019184404984116554, + -0.01434171199798584, + -0.0992714986205101, + 0.018559198826551437, + -0.017740854993462563, + -0.040924035012722015, + -0.07844030857086182, + -0.027774298563599586, + 0.010984346270561218, + 0.11203407496213913, + -0.013767054304480553, + 0.04933607950806618, + -0.06365355104207993, + -0.059989508241415024, + 0.020966963842511177, + -0.06598745286464691, + -0.058754682540893555, + -0.052804816514253616, + -0.06047508865594864, + 0.005578626412898302, + -0.032623521983623505, + -0.01837010495364666, + 0.02590353786945343, + -0.08034208416938782, + -0.04018280282616615, + 0.0708891972899437, + 0.04545629769563675, + 0.03589319810271263, + 0.03026934154331684, + -0.07653836905956268, + -0.014246951788663864, + -0.00018898378766607493, + -0.06822022050619125, + -0.010130781680345535, + -0.026616143062710762, + 0.030305268242955208, + -0.026617301627993584, + -0.06276454776525497, + -0.021950438618659973, + -0.06566650420427322, + -0.05119572952389717, + -0.03204307705163956, + -0.04050973802804947, + 0.020118247717618942, + 0.12208022177219391, + 0.07578825950622559, + 0.019148392602801323, + -0.051605816930532455, + -0.08184036612510681, + -0.016390852630138397, + -0.09764882177114487, + 0.026695214211940765, + -0.08571863174438477, + -2.422495859715018e-33, + 0.06954845786094666, + 0.023030932992696762, + -0.021923666819930077, + 0.08371907472610474, + -0.001446810201741755, + -0.01835126057267189, + -0.05266886204481125, + -0.10798349231481552, + -0.04250645637512207, + 0.05939771980047226, + 0.08954141288995743, + 0.0006932848482392728, + -0.012941642664372921, + 0.11275067925453186, + 0.0996871367096901, + -0.044675130397081375, + 0.033391714096069336, + 0.00216796831227839, + -0.08914875239133835, + -0.033821363002061844, + -0.09242653846740723, + 0.052160102874040604, + -0.07259628176689148, + -0.06279166787862778, + 0.09671533107757568, + 0.06900416314601898, + -0.01937462016940117, + 0.009509469382464886, + -0.0551002062857151, + 0.0304024126380682, + 0.02829119563102722, + -0.016024406999349594, + 0.04487911984324455, + -0.01849394291639328, + 0.010985070839524269, + 0.0027078946586698294, + -0.058769166469573975, + -0.0439603365957737, + -0.02172650583088398, + 0.0015668536070734262, + -0.01219609659165144, + -0.083934485912323, + -0.06695254892110825, + -0.045150451362133026, + 0.05504690483212471, + 0.05124257504940033, + -0.05350087583065033, + -0.008494903333485126, + 0.049276191741228104, + 0.03049004077911377, + -0.00908364076167345, + 0.00610576244071126, + -0.06465475261211395, + -0.04232516512274742, + -0.023425254970788956, + -0.07349883019924164, + -0.07541058957576752, + 0.05966372787952423, + 0.061309535056352615, + 0.021262221038341522, + -0.042297832667827606, + 0.03090764209628105, + 0.011641801334917545, + -0.018008863553404808, + -0.04092305153608322, + 0.004680843558162451, + 0.021482093259692192, + 0.002954359631985426, + -0.002642874140292406, + 0.05968102440237999, + -0.05029221996665001, + 0.04777832701802254, + 0.045882757753133774, + 0.05276094749569893, + -0.0421416275203228, + -0.010145921260118484, + -0.04909756779670715, + 0.011438864283263683, + -0.02600199356675148, + -0.06903067976236343, + -0.14416790008544922, + -0.08645299822092056, + -0.08894968777894974, + 0.05767509341239929, + 0.010454829782247543, + -0.041423022747039795, + 0.05954541265964508, + -0.06455584615468979, + -0.03561897575855255, + -0.04458851367235184, + -0.11201240122318268, + 0.03979236260056496, + -0.08017610013484955, + -0.07414890080690384, + -0.07702130824327469, + -7.793492648463226e-34, + -0.0023837462067604065, + -0.021896714344620705, + -0.026547851040959358, + -0.01277286745607853, + -0.09867814928293228, + -0.022875329479575157, + 0.04068279266357422, + -0.0037457565777003765, + 0.06336073577404022, + 0.08493351191282272, + -0.0773967057466507, + 0.040065210312604904, + 0.007926803082227707, + -0.023468585684895515, + 0.0113326171413064, + 0.06705193966627121, + -0.03222993016242981, + 0.10277029871940613, + -0.0013268833281472325, + 0.03531421720981598, + -0.03299221396446228, + 0.004627281334251165, + -0.03195186331868172, + 0.0051953149959445, + -0.018324874341487885, + 0.023821741342544556, + 0.0032790573313832283, + -0.05541328713297844, + -0.07522032409906387, + -0.03601168841123581, + -0.05324822664260864, + -0.055418711155653, + 0.033294517546892166, + 0.06615139544010162, + -0.086595319211483, + -0.007209619507193565, + 0.08143994212150574, + 0.011467475444078445, + 0.019630679860711098, + 0.034143686294555664, + -0.03644738346338272, + -0.038635168224573135, + 0.07741361856460571, + 0.005758202169090509, + -0.08648806810379028, + 0.01399361714720726, + 0.0022276362869888544, + 0.02756645530462265, + -0.04038731008768082, + 0.06899462640285492, + 0.04171432927250862, + 0.012147716246545315, + 0.024806665256619453, + -0.026168979704380035, + -0.01993401162326336, + 0.06357455253601074, + 0.0007333289249800146, + -0.007970615290105343, + 0.011616053991019726, + 0.00826624408364296, + -0.04607747867703438, + -0.052302099764347076, + -0.027747351676225662, + 0.1396917998790741, + 0.05538409948348999, + -0.041707951575517654, + -0.018174706026911736, + -0.058958906680345535, + -0.03968820348381996, + 0.03221870958805084, + 0.037896133959293365, + 0.06990353018045425, + -0.02585425414144993, + 0.021560445427894592, + 0.02013348415493965, + 0.009130162186920643, + 0.033678337931632996, + 0.06837375462055206, + 0.046152129769325256, + -0.014938157983124256, + -0.006097616162151098, + -0.01918804831802845, + -0.04779158905148506, + 0.07742106169462204, + 0.10410857945680618, + 0.1000266745686531, + -0.025250930339097977, + 0.02988368086516857, + 0.01226857677102089, + -0.04277251288294792, + -0.0430741086602211, + 0.11594396829605103, + -0.043508026748895645, + 0.004114973824471235, + -0.0846666544675827, + -2.4066778792075638e-08, + -0.0433475524187088, + -0.012211013585329056, + -0.05576686933636665, + -0.012355295941233635, + 0.014158782549202442, + 0.016602210700511932, + -0.004082922358065844, + 0.05081908404827118, + -0.02915358543395996, + 0.020105579867959023, + 0.06622730940580368, + 0.04524655267596245, + -0.12069523334503174, + -0.05567902326583862, + 0.06327012926340103, + 0.0008825418190099299, + -0.017393067479133606, + 0.04111509397625923, + -0.044932521879673004, + -0.02839215099811554, + -0.003324518445879221, + 0.09759750217199326, + 0.04623463749885559, + 0.018394963815808296, + -0.007885386236011982, + 0.010078278370201588, + 0.0699232742190361, + 0.07979198545217514, + 0.026782378554344177, + 0.002306761220097542, + 0.10958726704120636, + 0.02729180082678795, + 0.053222257643938065, + 0.018740693107247353, + -0.04824485257267952, + -0.008631830103695393, + -0.04956740885972977, + 0.023903917521238327, + -0.03982618451118469, + 0.08273792266845703, + -0.004429168999195099, + -0.03334621340036392, + 0.005409314297139645, + -0.0556342713534832, + 0.01953764632344246, + 0.03656941279768944, + 0.0848839282989502, + -0.019373735412955284, + -0.06419878453016281, + -0.08166541159152985, + -0.08471041172742844, + 0.052123088389635086, + 0.002497113076969981, + 0.07157161086797714, + -0.04039433225989342, + 0.02709226682782173, + 0.03451770544052124, + 0.02945663221180439, + 0.032312244176864624, + 0.039265669882297516, + 0.06412605941295624, + 0.09709053486585617, + -0.06212173402309418, + 2.4649338229210116e-05 + ], + "map-pin-simple-line-bold||*new*,maps,places,markers,pins,locations,poi,point of interest": [ + 0.023204810917377472, + -0.016986964270472527, + -0.03506581112742424, + -0.013373234309256077, + 0.041255731135606766, + -0.03352391719818115, + 0.04992375522851944, + -0.04892626032233238, + -0.04702790826559067, + -0.015203697606921196, + 0.06892130523920059, + 0.03634032607078552, + -0.03372255712747574, + -0.057560596615076065, + -0.02471936121582985, + 0.08977147191762924, + -0.038500335067510605, + 0.014556636102497578, + 0.04007736220955849, + 0.0007441291236318648, + 0.018624955788254738, + -0.036612898111343384, + -0.003569728694856167, + 0.04742800071835518, + 0.0037954358849674463, + 0.03667629137635231, + 0.07900140434503555, + 0.040410131216049194, + -0.024027429521083832, + -0.07791350036859512, + -0.035376060754060745, + 0.024108290672302246, + 0.10136684775352478, + 0.03688506782054901, + 0.08382891118526459, + 0.046854279935359955, + 0.06029995158314705, + -0.016226036474108696, + -0.010115101002156734, + -0.03023996576666832, + 0.01193233486264944, + -0.07772166281938553, + 0.010949957184493542, + 0.05781389772891998, + 0.04088979586958885, + 0.0030153796542435884, + 0.03815107047557831, + -0.04010135680437088, + 0.02106039971113205, + 0.05692823976278305, + -0.006346312817186117, + -0.050754278898239136, + -0.09627986699342728, + -0.05117064714431763, + 0.06473544985055923, + 0.02638147957623005, + -0.049785811454057693, + -0.09534860402345657, + 0.06314471364021301, + -0.06979996711015701, + 0.08924231678247452, + 0.03775244206190109, + 0.04090544953942299, + 0.016912100836634636, + 0.0426209457218647, + -0.03233627602458, + -0.041077956557273865, + 0.019183756783604622, + 0.04966018721461296, + -0.07050053030252457, + -0.000795110419858247, + -0.04779311642050743, + -0.0022967446129769087, + -0.058942560106515884, + 0.020403077825903893, + -0.0030795761849731207, + -0.08167009055614471, + 0.014819271862506866, + -0.025327257812023163, + -0.04339392110705376, + -0.07525187730789185, + -0.03805985301733017, + 0.01868245378136635, + 0.11408686637878418, + -0.007201756350696087, + 0.05125158652663231, + -0.07960629463195801, + -0.07009497284889221, + 0.0314052514731884, + -0.05596308782696724, + -0.0622052401304245, + -0.045845258980989456, + -0.03734740987420082, + 0.012992579489946365, + -0.04843579977750778, + -0.0029469293076545, + 0.018913930281996727, + -0.06885212659835815, + -0.03907915949821472, + 0.08339481800794601, + 0.042513586580753326, + 0.06610684096813202, + 0.03661710023880005, + -0.04374740272760391, + -0.01511039026081562, + 0.011463666334748268, + -0.04735003039240837, + -0.03878289833664894, + -0.0555693693459034, + -0.0042817783541977406, + -0.023739509284496307, + -0.08888720721006393, + -0.030597249045968056, + -0.06839645653963089, + -0.049766167998313904, + -0.03547688201069832, + -0.059847891330718994, + 0.03797915577888489, + 0.13303637504577637, + 0.09441357105970383, + 0.018919045105576515, + -0.060370948165655136, + -0.07859498262405396, + -0.016974085941910744, + -0.0951816514134407, + 0.040860455483198166, + -0.04350511357188225, + -1.8296644875655755e-33, + 0.08115449547767639, + 0.03797866404056549, + 0.002795255510136485, + 0.07044560462236404, + 0.017291998490691185, + -0.019644558429718018, + -0.09110371768474579, + -0.09348926693201065, + -0.06491830199956894, + 0.07447514683008194, + 0.09481841325759888, + -0.05941671505570412, + -0.011942471377551556, + 0.11926767975091934, + 0.0714341476559639, + -0.05580778419971466, + 0.027881581336259842, + -0.03389665484428406, + -0.08507321774959564, + 0.013100042939186096, + -0.10321426391601562, + 0.03896750509738922, + -0.07649672031402588, + -0.07739567756652832, + 0.09931857138872147, + 0.05117613077163696, + -0.024286337196826935, + 0.011092951521277428, + -0.058472856879234314, + 0.020748496055603027, + 0.0582624152302742, + -0.038480017334222794, + 0.0612337663769722, + -0.0195042472332716, + -0.0193156898021698, + 0.014521024189889431, + -0.06524265557527542, + -0.04215501993894577, + -0.02114109694957733, + 0.010920332744717598, + 0.006764762103557587, + -0.07271643728017807, + -0.06791015714406967, + -0.016100488603115082, + 0.05083748698234558, + 0.06131194904446602, + -0.06765665858983994, + 0.005471155513077974, + 0.029580948874354362, + 0.03601168468594551, + -0.028101693838834763, + 0.002588381292298436, + -0.07072178274393082, + -0.021510273218154907, + -0.016282206401228905, + -0.08513251692056656, + -0.07043318450450897, + 0.07568956166505814, + 0.054181311279535294, + 0.0074226390570402145, + -0.0403185673058033, + 0.026931483298540115, + -0.010860401205718517, + -0.000148475039168261, + -0.013223416171967983, + 0.026864362880587578, + 0.012268595397472382, + 0.01327180489897728, + 0.02142307721078396, + 0.05901387706398964, + -0.0694190040230751, + 0.047833871096372604, + 0.02987750805914402, + 0.032487042248249054, + -0.040782380849123, + -0.015348926186561584, + -0.056099783629179, + -0.00637303851544857, + 0.01579904556274414, + -0.06985081732273102, + -0.13051265478134155, + -0.06158589944243431, + -0.0578862726688385, + 0.07235229760408401, + -0.0008750124834477901, + -0.0337039940059185, + 0.051734279841184616, + -0.076424241065979, + -0.01819341443479061, + -0.005048669409006834, + -0.10850758850574493, + 0.050663240253925323, + -0.10386479645967484, + -0.06634639948606491, + -0.06339141726493835, + -1.3559571619154867e-33, + 0.016866814345121384, + -0.010506906546652317, + -0.011680257506668568, + 0.004829795099794865, + -0.07643744349479675, + -0.016764668747782707, + 0.036288533359766006, + -0.00324487267062068, + 0.07869627326726913, + 0.10865548253059387, + -0.05250517651438713, + 0.036994028836488724, + 3.05433313769754e-05, + -0.004616149235516787, + 0.03816981613636017, + 0.07995117455720901, + -0.05311250314116478, + 0.08313187211751938, + 0.012843984179198742, + 0.010649045929312706, + -0.03654463589191437, + -0.008029980584979057, + -0.01981501281261444, + -0.004102213773876429, + -0.00547703867778182, + 0.008449508808553219, + 0.0362810418009758, + -0.03036614879965782, + -0.07526393234729767, + -0.03560861945152283, + -0.032911546528339386, + -0.036862749606370926, + 0.021697819232940674, + 0.044234126806259155, + -0.06809590756893158, + 0.0403052382171154, + 0.06659522652626038, + 0.03685629367828369, + 0.024553989991545677, + 0.030359992757439613, + -0.05266377329826355, + -0.004665406420826912, + 0.06790187209844589, + -0.033254723995923996, + -0.0782640129327774, + 0.03267962113022804, + 0.006750076077878475, + 0.02338155172765255, + -0.03455249220132828, + 0.08870131522417068, + 0.028163542971014977, + 0.036265913397073746, + 0.020953254774212837, + -0.010831945575773716, + -0.04249050095677376, + 0.026601191610097885, + -0.002559565706178546, + -0.004758341703563929, + -0.007070992607623339, + -0.00028075254522264004, + -0.046438492834568024, + -0.06363695859909058, + -0.04305366426706314, + 0.1279602348804474, + 0.07036203891038895, + -0.047874435782432556, + 0.0028226657304912806, + -0.06394121795892715, + -0.02365214005112648, + 0.0219775028526783, + 0.04114978015422821, + 0.05583467707037926, + -0.0275617353618145, + 0.034134481102228165, + 0.023368222638964653, + -0.014216450974345207, + 0.03273005038499832, + 0.053459204733371735, + 0.04338567703962326, + -0.011635053902864456, + 0.007905571721494198, + -0.021330172196030617, + -0.04475630074739456, + 0.08650990575551987, + 0.08033084869384766, + 0.10585157573223114, + -0.01714111864566803, + 0.04421981796622276, + 0.027023781090974808, + -0.03743133693933487, + -0.02830422669649124, + 0.10360977798700333, + -0.07712552696466446, + -0.0034718040842562914, + -0.09579073637723923, + -2.4254914521293358e-08, + -0.05791400372982025, + -0.027556024491786957, + -0.040720134973526, + -0.003816009033471346, + 0.0208726953715086, + 0.03079035133123398, + 0.016794444993138313, + 0.016328979283571243, + -0.03126118332147598, + -0.01463019847869873, + 0.059541888535022736, + 0.07104121148586273, + -0.11738147586584091, + -0.048751041293144226, + 0.0673043504357338, + 0.0008413679315708578, + -0.015065540559589863, + 0.03572647646069527, + -0.04296928644180298, + 0.005809492897242308, + -0.021828709170222282, + 0.09616655111312866, + 0.026018986478447914, + 0.03129526600241661, + -0.04121476039290428, + 0.019576814025640488, + 0.07564175128936768, + 0.08098793029785156, + 0.02479815110564232, + 0.021660640835762024, + 0.1061718612909317, + 0.03935893625020981, + 0.06833614408969879, + 0.003756285645067692, + -0.047659099102020264, + -0.03468010574579239, + -0.04642633721232414, + 0.031987644731998444, + -0.037919919937849045, + 0.09936956316232681, + -0.0043054367415606976, + -0.009274548850953579, + -0.011975507251918316, + -0.061256445944309235, + 0.010319514200091362, + 0.01810145191848278, + 0.05156217887997627, + -0.03135271370410919, + -0.09635654091835022, + -0.09012074768543243, + -0.0827588140964508, + 0.05008179694414139, + 0.012122786603868008, + 0.040016282349824905, + -0.061434097588062286, + 0.01731530949473381, + 0.0437919981777668, + 0.046018507331609726, + 0.012994466349482536, + 0.020654849708080292, + 0.056442826986312866, + 0.0737372413277626, + -0.03573468327522278, + -0.01696910336613655 + ], + "map-trifold-bold||maps,places,locations,cartography,geography": [ + 0.097971610724926, + -0.013170750811696053, + -0.014245527796447277, + -0.02455776184797287, + -0.004103620536625385, + -0.03286101296544075, + 0.009963645599782467, + -0.013101144693791866, + -0.07175233215093613, + 0.0006354375509545207, + 0.10805562883615494, + -0.03186263144016266, + 0.020653771236538887, + -0.029420312494039536, + -0.020818689838051796, + 0.036290742456912994, + -0.014708307571709156, + 0.042623214423656464, + 0.03152661770582199, + -0.003607609309256077, + -0.001728783710859716, + 0.0309434961527586, + 0.043644268065690994, + 0.01062819454818964, + 0.016132408753037453, + 0.04146311804652214, + 0.08576587587594986, + -0.022867068648338318, + -0.022982386872172356, + -0.055868856608867645, + -0.008786113001406193, + 0.03567017987370491, + 0.09866578131914139, + 0.019584039226174355, + 0.07015591859817505, + 0.07790885865688324, + -0.012260573916137218, + -0.010962571017444134, + 0.047600921243429184, + 0.04838724806904793, + -0.021919261664152145, + -0.058148760348558426, + 0.031826332211494446, + 0.05068735033273697, + -0.012255783192813396, + 0.03341279178857803, + -0.012540276162326336, + 0.004156121984124184, + -0.010599452070891857, + 0.05588330328464508, + -0.02703782171010971, + -0.04111827537417412, + -0.12819573283195496, + -0.07177339494228363, + -0.007714830804616213, + 0.0706416517496109, + -0.0891883447766304, + -0.021652892231941223, + 0.020334392786026, + 0.0026646223850548267, + 0.07243363559246063, + -0.016886821016669273, + 0.03822975605726242, + 0.05262817069888115, + 0.08368393033742905, + 0.08205319195985794, + -0.000542028690688312, + 0.038797978311777115, + -0.019771652296185493, + -0.018699176609516144, + 0.0584966316819191, + -0.01836693286895752, + -0.04959980398416519, + -0.08987116813659668, + -0.029877441003918648, + -0.02582068182528019, + -0.05439230427145958, + -0.011578818783164024, + -0.062262728810310364, + -0.1181594654917717, + -0.031087229028344154, + -0.001421590568497777, + 0.03082730434834957, + 0.051291704177856445, + 0.014919823035597801, + 0.012562036514282227, + -0.07531220465898514, + -0.1340562105178833, + -0.013097365386784077, + -0.08374162018299103, + 0.019227348268032074, + -0.08853767067193985, + -0.013811646960675716, + 0.08271036297082901, + -0.07784508168697357, + 0.010080436244606972, + 0.01917114295065403, + 0.04797515273094177, + 0.019590765237808228, + -0.004760558716952801, + 0.06183944270014763, + 0.02510993368923664, + -0.004305626265704632, + -0.03709516301751137, + -0.04825500026345253, + -0.05096200853586197, + -0.011308507062494755, + -0.04728987067937851, + -0.0034123696386814117, + 0.009698697365820408, + -0.03516949713230133, + -0.08389167487621307, + -0.04010729119181633, + -0.08010062575340271, + -0.08449827879667282, + -0.012011757120490074, + 0.003654642030596733, + 0.02590608410537243, + 0.11513402312994003, + 0.08934588730335236, + -0.02092568203806877, + -0.06643306463956833, + 0.003195701166987419, + -0.006996252574026585, + -0.0725734531879425, + -0.0332324355840683, + -0.011897972784936428, + -1.2482554307572716e-33, + 0.03327558934688568, + 0.07410439848899841, + 0.0029476676136255264, + 0.12290024012327194, + 0.028563572093844414, + -0.02857699804008007, + -0.03891763091087341, + -0.10233795642852783, + -0.14270928502082825, + 0.05185331031680107, + 0.07552070170640945, + 0.07125424593687057, + -0.015478893183171749, + 0.06730036437511444, + 0.020279010757803917, + 0.026428231969475746, + 0.043959904462099075, + -0.03956132382154465, + -0.1444970816373825, + -0.04677348956465721, + -0.07701749354600906, + 0.10118556767702103, + -0.05380202829837799, + -0.036274198442697525, + 0.02402688004076481, + 0.02866298519074917, + 0.025635335594415665, + 0.04569520056247711, + -0.05030713230371475, + 0.03669324889779091, + 0.012246784754097462, + -0.022559503093361855, + 0.052570439875125885, + 0.004759001079946756, + 0.06681907176971436, + 0.07055839151144028, + -0.052225057035684586, + -0.02885548584163189, + -0.04358064383268356, + 0.09782832115888596, + -0.08876381069421768, + -0.056665945798158646, + -0.040047187358140945, + 0.004246943164616823, + 0.05279845744371414, + 0.024120451882481575, + -0.001443191897124052, + 0.006096307188272476, + 0.027690904214978218, + 0.028539279475808144, + -0.003405571449548006, + 0.007224987260997295, + -0.04556789621710777, + 0.027435891330242157, + -0.028509456664323807, + -0.038962472230196, + -0.08005321025848389, + 0.07011771202087402, + 0.05340293049812317, + 0.05482856556773186, + 0.015767419710755348, + 0.03430713340640068, + 0.039524879306554794, + -0.009436341002583504, + -0.05575522407889366, + 0.002056877827271819, + -0.039080407470464706, + -0.03599203750491142, + 0.048597875982522964, + 0.04406902194023132, + -0.013923500664532185, + 0.10253767669200897, + 0.04894807189702988, + 0.089764803647995, + 0.004684163723140955, + 0.05101655051112175, + -0.038433436304330826, + -0.004193664528429508, + 0.0024722544476389885, + -0.03889719769358635, + -0.15625602006912231, + -0.05059339106082916, + -0.044384460896253586, + 0.04438113421201706, + -0.005264450795948505, + -0.06835649162530899, + 0.0003855991817545146, + -0.042839739471673965, + 0.03404281288385391, + -0.013145631179213524, + -0.10964509844779968, + 0.07196525484323502, + -0.07021887600421906, + -0.1208357885479927, + -0.05111100897192955, + -1.5542217329259355e-33, + 0.010412569157779217, + -0.015366078354418278, + -0.05267162248492241, + -0.03720494732260704, + -0.07503420859575272, + -0.013684206642210484, + 0.052102286368608475, + -0.044717125594615936, + 0.0015680044889450073, + 0.05353681370615959, + -0.041756872087717056, + -0.01368173211812973, + 0.045007918030023575, + -0.049803610891103745, + -0.008086216636002064, + 0.031775929033756256, + 0.0746900662779808, + 0.008283213712275028, + -0.07159154117107391, + 0.02324972301721573, + -0.04012422636151314, + -0.030400918796658516, + -0.07605114579200745, + 0.0396532379090786, + -0.030740806832909584, + 0.06350784748792648, + -0.05070194974541664, + -0.07671894878149033, + 0.003338974667713046, + 0.027373572811484337, + -0.033681727945804596, + -0.06114042177796364, + 0.03665665537118912, + 0.012934999540448189, + -0.10659123957157135, + 0.05669974908232689, + 0.04568693786859512, + 0.0016135330079123378, + 0.011487611569464207, + -0.029849449172616005, + -0.04003679379820824, + -0.0312382522970438, + 0.06606516987085342, + 0.02633659355342388, + -0.05144912004470825, + 0.0023836828768253326, + 0.04948584362864494, + 0.004127565771341324, + -0.06003778055310249, + 0.05866779014468193, + 0.07388284057378769, + 0.0014523371355608106, + 0.006829594261944294, + 0.009332158602774143, + 0.024522649124264717, + 0.005415326450020075, + -0.07971713691949844, + -0.005847751162946224, + -0.040433984249830246, + 0.020836014300584793, + 0.002329783281311393, + 0.0031231429893523455, + -0.0322878323495388, + 0.040694475173950195, + 0.03773723915219307, + -0.05942969396710396, + -0.026854516938328743, + -0.04385433346033096, + 0.008739972487092018, + -0.009227318689227104, + 0.003985637798905373, + 0.024250967428088188, + -0.06029302999377251, + -0.010377909988164902, + -0.029094615951180458, + 0.009268984198570251, + 0.05497759208083153, + 0.06412263959646225, + 0.03782564774155617, + -0.014312941581010818, + 0.01590922102332115, + -0.022939039394259453, + -0.05218110233545303, + 0.13588741421699524, + 0.024008024483919144, + 0.09679988771677017, + -0.00311667681671679, + -0.005822597537189722, + 0.048537176102399826, + -0.06549403816461563, + -0.0077440328896045685, + 0.026043947786092758, + -0.12221074104309082, + 0.03687579557299614, + -0.05654436722397804, + -1.9937482775844728e-08, + 0.0032583512365818024, + 0.015926944091916084, + -0.006603441201150417, + -0.004470872227102518, + -0.032418277114629745, + -0.02751695178449154, + 0.10629145056009293, + 0.04725872352719307, + -0.0705961212515831, + 0.0669763833284378, + 0.03633745759725571, + 0.0399308055639267, + -0.09013340622186661, + -0.07551836222410202, + 0.09088465571403503, + 0.005821609869599342, + 0.02171078883111477, + 0.0820113942027092, + -0.0285326037555933, + 0.03071168251335621, + -0.011091941967606544, + 0.05612504109740257, + 0.04512268677353859, + 0.012298652902245522, + -0.015024871565401554, + 0.0350118987262249, + 0.01408082339912653, + -0.0415191575884819, + 0.041303601115942, + -0.05693633854389191, + 0.05142116919159889, + 0.025495639070868492, + -0.0021555479615926743, + 0.042294859886169434, + -0.09470903128385544, + -0.05488453432917595, + -0.02131633274257183, + 0.017261814326047897, + -0.05736897140741348, + 0.08441849797964096, + -0.059558991342782974, + 0.019962117075920105, + 0.006558385211974382, + 0.03163233771920204, + 0.0045035239309072495, + 0.007202073931694031, + 0.10982786864042282, + -0.0007530597504228354, + -0.020738428458571434, + -0.04208582639694214, + -0.1455446034669876, + 0.025127217173576355, + 0.006217190530151129, + 0.08464909344911575, + 0.002156595466658473, + 0.010339312255382538, + 0.03908400610089302, + 0.04633075371384621, + -0.022536177188158035, + 0.04462263360619545, + 0.024619070813059807, + -0.00675580371171236, + -0.03555388003587723, + -0.025253159925341606 + ], + "markdown-logo-bold||*new*,markup,editor,.md": [ + 0.013683397322893143, + 0.07737839967012405, + -0.03100750967860222, + 0.06787098199129105, + 0.10020364075899124, + -0.006307939998805523, + -0.01735560968518257, + -0.0405459851026535, + 0.053141169250011444, + 0.0770520344376564, + -0.04508189111948013, + 0.06668998301029205, + 0.03770432621240616, + -0.049353472888469696, + 0.053645167499780655, + 0.00869709998369217, + -0.03548799455165863, + 0.013913239352405071, + 0.029528040438890457, + 0.026932353153824806, + 0.025627510622143745, + 0.0227960217744112, + 0.011541953310370445, + 0.03122141771018505, + 0.020172301679849625, + -0.0016866838559508324, + 0.0606415756046772, + -0.020536839962005615, + -0.0204152949154377, + -0.04241587221622467, + -0.0318632498383522, + -0.04242779314517975, + 0.09008407592773438, + -0.035495609045028687, + 0.07918056845664978, + 0.07769279181957245, + 0.042482975870370865, + 0.027916276827454567, + 0.04602007195353508, + 0.021236835047602654, + 0.016727369278669357, + -0.07713338732719421, + 0.041001588106155396, + -0.01937667652964592, + -0.0453563928604126, + -0.04824777692556381, + -0.02258399873971939, + -0.02993830293416977, + 0.012107432819902897, + 0.01374867744743824, + 0.02235674113035202, + -0.14120590686798096, + -0.11932431906461716, + -0.0443827360868454, + 0.0004670522757805884, + 0.0028248096350580454, + -0.09335360676050186, + -0.07819558680057526, + -0.014629507437348366, + -0.06658681482076645, + -0.012700924649834633, + 0.09530647099018097, + 0.027962924912571907, + 0.057924654334783554, + 0.12479159235954285, + 0.00884502287954092, + -0.01573154516518116, + 0.012367050163447857, + -0.07709509134292603, + 0.03281312435865402, + 0.0018559949239715934, + -0.04770908132195473, + 0.010951274074614048, + 0.010164587758481503, + -0.04771178588271141, + 0.008780021220445633, + 0.06914150714874268, + 0.08458397537469864, + 0.024753717705607414, + -0.06351973861455917, + -0.03333810344338417, + -0.01640758290886879, + -0.057293616235256195, + 0.00804251991212368, + 0.03259900212287903, + 0.06293264031410217, + -0.039063796401023865, + -0.06887269020080566, + 0.013691989704966545, + 0.03433298319578171, + -0.0239160917699337, + 0.024466099217534065, + 0.0032985948491841555, + 0.018390174955129623, + -0.08460897207260132, + -0.019485510885715485, + -0.008657513186335564, + 0.0169635321944952, + -0.03100961074233055, + 0.08658955991268158, + -0.022030755877494812, + 0.03333538398146629, + 0.0752188190817833, + -0.058129746466875076, + 0.03448987752199173, + 0.04569166153669357, + 0.026729732751846313, + -0.058111097663640976, + -0.018624383956193924, + 0.04080941528081894, + 0.020925339311361313, + -0.018353743478655815, + -0.07580643147230148, + -0.0237178485840559, + -0.00875873677432537, + -0.010901027359068394, + 0.004495580215007067, + -0.054974403232336044, + 0.049297451972961426, + 0.04206530377268791, + 0.0493830069899559, + -0.03197287395596504, + -0.06531137228012085, + -0.07197093963623047, + -0.025661274790763855, + 0.017221305519342422, + 0.0019775712862610817, + -4.729244831466396e-33, + 0.09641022235155106, + 0.045787520706653595, + -0.0357079915702343, + 0.0723416656255722, + 0.05722722411155701, + 0.06464637815952301, + -0.07500749081373215, + -0.09898558259010315, + -0.12799784541130066, + 0.02931082807481289, + 0.09532627463340759, + -0.003061888040974736, + 0.00696219690144062, + 0.10973353683948517, + 0.0059923576191067696, + -0.014068659394979477, + 0.01977418176829815, + -0.025053203105926514, + -0.08693313598632812, + -0.0474017895758152, + -0.10886979103088379, + 0.05136937275528908, + -0.10919457674026489, + -0.007161581423133612, + -0.030950482934713364, + 0.039719026535749435, + 0.029374506324529648, + -0.015204374678432941, + -0.03831558674573898, + 0.0006898590363562107, + 0.01623532362282276, + -0.023303385823965073, + 0.005234715528786182, + 0.00048558597336523235, + -0.038829904049634933, + 0.054564666002988815, + -0.03730355203151703, + -0.026683226227760315, + 0.05652470141649246, + -0.04299592226743698, + 0.00020840269280597568, + -0.035878341645002365, + -0.0037438443396240473, + 0.019191371276974678, + -0.025709018111228943, + 0.1065438836812973, + -0.023929527029395103, + -0.08990146219730377, + 0.025192424654960632, + -0.06264961510896683, + -0.0056784856133162975, + -0.024629555642604828, + -1.2373307981761172e-05, + -0.009387677535414696, + -0.03910018131136894, + -0.026461534202098846, + -0.06921681761741638, + 0.08005690574645996, + 0.08342727273702621, + 0.03415555879473686, + 0.014286089688539505, + 0.018537349998950958, + 0.0354757085442543, + 0.0797075554728508, + -0.018695874139666557, + 0.08077817410230637, + 0.025674734264612198, + 0.03467648848891258, + 0.023089511319994926, + -0.023881342262029648, + -0.008551019243896008, + 0.03066057711839676, + 0.06234724074602127, + 0.06371315568685532, + 0.01783614046871662, + -0.01873861253261566, + 0.023119138553738594, + -0.05527409911155701, + 0.0488203689455986, + -0.006680045276880264, + -0.08130162209272385, + -0.026759592816233635, + -0.07170816510915756, + 0.019828660413622856, + 0.04597708582878113, + 0.00927177257835865, + 0.022027162835001945, + -0.010089395567774773, + 0.011474424041807652, + -0.06795450299978256, + -0.023381078615784645, + -0.07197657227516174, + 0.02482660673558712, + -0.03286071494221687, + -0.08975575864315033, + 9.36586970796662e-34, + 0.06433644145727158, + 0.019849730655550957, + 0.02633972279727459, + -0.0013871868140995502, + -0.1202799528837204, + 0.012277534231543541, + 0.006438584066927433, + 0.03833511099219322, + -0.07295724004507065, + 6.155721052891749e-07, + 0.10804477334022522, + 0.03156255558133125, + -0.099040687084198, + -0.057258591055870056, + -0.05520189553499222, + 0.004925265908241272, + 0.03564734756946564, + 0.011204253882169724, + -0.04050859436392784, + -0.017367908731102943, + 0.017470257356762886, + -0.03497235104441643, + -0.07031319290399551, + 0.08732082694768906, + -0.015121947973966599, + -0.007599912118166685, + 0.016936685889959335, + 0.049446988850831985, + -0.05523811653256416, + -0.060596585273742676, + -0.0789695456624031, + 0.01585722342133522, + 0.009628881700336933, + 0.021042974665760994, + -0.03208715096116066, + 0.0014338729670271277, + 0.010639325715601444, + -0.03393293172121048, + -0.013522233814001083, + 0.0438455231487751, + 0.025334231555461884, + -0.018962716683745384, + 0.01305919885635376, + 0.07811950892210007, + -0.027954190969467163, + 1.4767097127332818e-05, + -0.06301403045654297, + -0.06642231345176697, + -0.007625749800354242, + 0.09969982504844666, + -0.02737533487379551, + -0.09370439499616623, + 0.04418271780014038, + 0.030141646042466164, + -0.07133752852678299, + -0.0028111243154853582, + 0.0007187285227701068, + 0.026459241285920143, + -0.03995887562632561, + 0.07910620421171188, + -0.04105981066823006, + 0.03230619058012962, + -0.030514907091856003, + 0.037178635597229004, + 0.039336659014225006, + -0.010947741568088531, + 0.00013580881932284683, + 0.004828611388802528, + -0.061133429408073425, + 0.04922298714518547, + 0.02064572460949421, + -0.0218149833381176, + 0.026870694011449814, + 0.005683294963091612, + 0.019609440118074417, + -0.07894780486822128, + 0.07068607211112976, + -0.03077436238527298, + -0.0616997666656971, + 0.010572829283773899, + 0.0007493949378840625, + -0.0015410510823130608, + -0.0850999727845192, + 0.03109043836593628, + -0.0457271970808506, + 0.035138536244630814, + -0.029682129621505737, + 0.035435594618320465, + -0.028575023636221886, + -0.03846873715519905, + -0.09394315630197525, + 0.0727337971329689, + 0.07367611676454544, + 0.040041256695985794, + -0.09619692713022232, + -2.33065282628786e-08, + -0.04963818937540054, + -0.03257140889763832, + 0.033540207892656326, + -0.05301300436258316, + 0.022552359849214554, + 0.07619521021842957, + -0.06964021176099777, + -0.10597522556781769, + 0.01787959598004818, + -0.046760156750679016, + -0.011826845817267895, + -0.008825181052088737, + -0.06488196551799774, + -0.04460040479898453, + -0.05686822906136513, + 0.01266710925847292, + -0.07986196875572205, + 0.10860991477966309, + -0.009731553494930267, + -0.05141669884324074, + -0.08361110836267471, + 0.08561461418867111, + 0.023372899740934372, + 0.02712400257587433, + 0.05152251571416855, + 0.051002610474824905, + -0.025843603536486626, + 0.002531506586819887, + -0.04177747666835785, + 0.12330721318721771, + 0.03991006314754486, + 0.12367655336856842, + 0.08580636978149414, + 0.03771519660949707, + -0.05742894113063812, + -0.025952018797397614, + 0.020930485799908638, + 0.017577480524778366, + -0.010088316164910793, + 0.061590682715177536, + -0.014704317785799503, + -0.003345493460074067, + -0.05663872882723808, + -0.07913503795862198, + -0.04256157949566841, + -0.02342722751200199, + 0.034966953098773956, + 0.04986853152513504, + -0.03060849942266941, + -0.12954789400100708, + 0.038599949330091476, + 0.019803842529654503, + 0.009154162369668484, + 0.00826447643339634, + -0.067109614610672, + -0.07667488604784012, + 0.0188100878149271, + 0.1280844360589981, + 0.04656527191400528, + -0.0072096167132258415, + 0.10005873441696167, + -0.09813037514686584, + 0.04614845663309097, + 0.029408831149339676 + ], + "marker-circle-bold||write,writing,editing,drawing": [ + 0.027710698544979095, + -0.04028578847646713, + -0.03036043792963028, + 0.08290081471204758, + 0.08090461790561676, + -0.027973122894763947, + 0.05012253299355507, + -0.0009259323705919087, + 0.029515353962779045, + -0.03147903457283974, + -0.01655641756951809, + 0.059700366109609604, + 0.015706731006503105, + -0.0533592626452446, + 0.0646626353263855, + 0.033046286553144455, + -0.029909437522292137, + -0.0030194513965398073, + 0.020620213821530342, + -0.053418390452861786, + 0.027701452374458313, + -0.01150263100862503, + 0.06921801716089249, + 0.09835660457611084, + 0.023656673729419708, + 0.028650742024183273, + 0.027642259374260902, + -0.003464925568550825, + 0.04167313501238823, + -0.05911106616258621, + -0.09153886884450912, + -0.020126424729824066, + 0.059269607067108154, + 0.002716242568567395, + 0.021937690675258636, + 0.039988186210393906, + -0.004638270940631628, + 0.03776174038648605, + 0.012713370844721794, + -0.06231312453746796, + 0.03190114349126816, + -0.05956170707941055, + 0.0062530129216611385, + 0.050033099949359894, + -0.0008230081875808537, + -0.006239295471459627, + -0.07821649312973022, + -0.0038630575872957706, + -0.04303760081529617, + 0.07769784331321716, + 0.02500074915587902, + -0.13273388147354126, + -0.12478239089250565, + -0.06009406968951225, + 0.03316232189536095, + -0.01152203418314457, + -0.04348510876297951, + -0.014235977083444595, + 0.07026293873786926, + -0.0766991600394249, + 0.032780978828668594, + 0.05012233182787895, + 0.0709601566195488, + 0.013749838806688786, + 0.010397879406809807, + -0.007503833156079054, + -0.006208332721143961, + -0.005691599100828171, + -0.016312653198838234, + -0.03472326323390007, + 0.03396828472614288, + -0.018110772594809532, + 0.008343650959432125, + -0.06475188583135605, + 0.008598587475717068, + 0.04167938232421875, + -0.038345541805028915, + 0.018497571349143982, + -0.07503674924373627, + -0.07612253725528717, + -0.0295279361307621, + -0.043812524527311325, + -0.00803025159984827, + 0.10802444070577621, + 0.05067873001098633, + 0.07169868052005768, + -0.038035500794649124, + -0.07510508596897125, + -0.019224105402827263, + 0.002463315613567829, + -0.028926949948072433, + 0.03825961425900459, + -0.049838513135910034, + -0.01351392362266779, + -0.09283097833395004, + -0.0476737879216671, + 0.06178472563624382, + -0.005720922257751226, + -0.06222701072692871, + 0.0870957225561142, + 0.06470388919115067, + 0.023675542324781418, + 0.008684033527970314, + -0.02357233315706253, + 0.025187863036990166, + -0.03286879137158394, + -0.021204642951488495, + -0.11167212575674057, + -0.0644041895866394, + -0.01420603971928358, + 0.0017622360028326511, + -0.06257721781730652, + -0.01573823019862175, + -0.007083630654960871, + -0.03796004503965378, + -0.03691212087869644, + -0.05527404695749283, + -0.014216382056474686, + 0.06955466419458389, + 0.07247702032327652, + 0.04698672518134117, + -0.0014883090043440461, + -0.0892215147614479, + -0.024349546059966087, + -0.05978229641914368, + 0.00765032134950161, + 0.0041249413043260574, + -3.346246340365204e-33, + 0.10437231510877609, + 0.09267602115869522, + 0.0017602210864424706, + 0.04999874159693718, + -0.010502735152840614, + 0.0001865933882072568, + -0.046119995415210724, + -0.04948149621486664, + -0.044671665877103806, + -0.030777567997574806, + 0.10064753890037537, + -0.052500490099191666, + 0.03980733081698418, + 0.15744717419147491, + 0.06063460931181908, + -0.0029265398625284433, + 0.062473323196172714, + -0.047186367213726044, + -0.10603385418653488, + 0.0021583859343081713, + -0.0732915997505188, + 0.010215372778475285, + -0.1278163194656372, + -0.054091304540634155, + -0.03670685738325119, + 0.08916542679071426, + -0.0281473807990551, + 0.033166203647851944, + -0.0514279268682003, + 0.02174280397593975, + -0.0023361595813184977, + -0.029637392610311508, + 0.03692476078867912, + 0.010579180903732777, + -0.018570713698863983, + 0.00444276025518775, + -0.034282051026821136, + -0.050966598093509674, + 0.02167133055627346, + -0.005144239868968725, + -0.020355092361569405, + -0.04432705044746399, + -0.04832183197140694, + -0.031200217083096504, + 0.001730612595565617, + 0.13143490254878998, + -0.034215979278087616, + 0.02149989642202854, + -0.007595574948936701, + -0.013246545568108559, + -0.03791318088769913, + 0.066726453602314, + -0.017800292000174522, + -0.034963030368089676, + 0.029032325372099876, + -0.06711147725582123, + 0.006590739358216524, + -0.013356262817978859, + -0.024671006947755814, + -0.005328926723450422, + 0.0011174250394105911, + 0.07099045068025589, + -0.021219586953520775, + 0.024978548288345337, + -0.057823218405246735, + 0.09180739521980286, + -0.06499172002077103, + -0.0021357941441237926, + 0.08716373890638351, + -0.09561015665531158, + -0.029609600082039833, + 0.05458303540945053, + 0.058858685195446014, + 0.04078320041298866, + -0.05298735201358795, + 0.011235027574002743, + -0.008871718309819698, + -0.01998905837535858, + 0.04144725203514099, + -0.03801778331398964, + -0.10512131452560425, + 0.00990727823227644, + -0.04469263553619385, + -0.018505694344639778, + 0.04039686545729637, + -0.1074485331773758, + 0.023028569296002388, + -0.02013211138546467, + -0.04725387319922447, + -0.0019583397079259157, + -0.007988346740603447, + 0.032306864857673645, + 0.04787203297019005, + -0.022308701649308205, + -0.12187723070383072, + 1.1764142669873021e-33, + 0.0061526973731815815, + 0.05570264533162117, + -0.029892731457948685, + 0.04952099546790123, + -0.052954405546188354, + -0.01676737517118454, + 0.00709547009319067, + 0.001373101258650422, + 0.04795783758163452, + 0.04947613179683685, + -0.04273286461830139, + -0.0455440990626812, + -0.06576397269964218, + 0.024913650006055832, + 0.005400571972131729, + -0.003192747477442026, + 0.0006371413473971188, + 0.10373911261558533, + -0.012973448261618614, + -0.03153776004910469, + -0.039703335613012314, + -0.02099749445915222, + 0.01060518343001604, + 0.06772440671920776, + -0.013193558901548386, + 0.02611158974468708, + -0.021516287699341774, + -0.05489407107234001, + -0.09422794729471207, + -0.006791963707655668, + -0.07538555562496185, + -0.044657398015260696, + 0.09942613542079926, + 0.017762038856744766, + 0.0030994501430541277, + -0.07892290502786636, + 0.052502457052469254, + -0.08665625005960464, + -0.020112130790948868, + 0.010464617051184177, + -0.0024123520124703646, + -0.030227957293391228, + 0.05014542117714882, + 0.02269141934812069, + -0.0176096074283123, + 0.02033432200551033, + -0.014985834248363972, + 0.03639597073197365, + -0.0275112297385931, + 0.09019508212804794, + 0.028789296746253967, + -0.026885515078902245, + 0.023069478571414948, + -0.048630911856889725, + -0.02661046013236046, + -0.016008583828806877, + 0.025372108444571495, + -0.012816090136766434, + 0.03676595166325569, + 0.050982385873794556, + -0.04652170091867447, + -0.0028327126055955887, + -0.030000220984220505, + 0.08584923297166824, + 0.10105257481336594, + -0.0335206501185894, + 0.07522044330835342, + -0.03598058596253395, + 0.012879769317805767, + 0.05827649310231209, + 0.038042016327381134, + 0.0514553003013134, + 0.041011493653059006, + 0.04044872522354126, + 0.0755128487944603, + -0.016611415892839432, + 0.062203649431467056, + 0.004098472185432911, + -0.019908364862203598, + 0.0002717689494602382, + -0.05065343156456947, + -0.026289137080311775, + -0.013013896532356739, + 0.10029730945825577, + -0.0038221979048103094, + 0.07718171924352646, + -0.03960472717881203, + -0.0012474332470446825, + -0.03768293932080269, + -0.006421707104891539, + -0.025472568348050117, + 0.07867283374071121, + 0.03717675805091858, + 0.016258204355835915, + -0.015871316194534302, + -1.7158875209588587e-08, + -0.02584046684205532, + -0.014278971590101719, + -0.01164576318114996, + -0.0261565912514925, + 0.059133078902959824, + -0.02233239635825157, + 0.020621545612812042, + -0.06600680947303772, + -0.03440214693546295, + -0.0033205419313162565, + 0.03408651426434517, + -0.0033087581396102905, + -0.0860755443572998, + -0.08651206642389297, + 0.02577146887779236, + -0.01939741149544716, + 0.01787274144589901, + 0.041615184396505356, + -0.05258980765938759, + -0.05065849795937538, + -0.02084393799304962, + 0.04068872332572937, + -0.008018651977181435, + -0.05545119196176529, + 0.007044577971100807, + -0.0164155475795269, + 0.030789893120527267, + 0.08941632509231567, + 0.000703029683791101, + 0.04644329845905304, + 0.019927041605114937, + 0.031560931354761124, + 0.08100523799657822, + 0.06509429961442947, + -0.06611699610948563, + -0.10902527719736099, + 0.0016714722150936723, + 0.03617678955197334, + 0.021621190011501312, + 0.18143576383590698, + 0.004561389330774546, + 0.050186678767204285, + 0.011653508991003036, + -0.04271069914102554, + 0.06443557888269424, + 0.026865094900131226, + 0.0725599005818367, + -0.07379215210676193, + -0.11068322509527206, + -0.11000791192054749, + -0.0835873931646347, + -0.014645746909081936, + 0.07357947528362274, + 0.06023813784122467, + -0.012289087288081646, + -0.06366764008998871, + 0.03946569561958313, + 0.14705488085746765, + -0.04257829487323761, + -0.01167482603341341, + 0.09689346700906754, + 0.0665275976061821, + 0.035522688180208206, + 0.004148588981479406 + ], + "martini-bold||glass,drinks,beverages,cocktails,places,locations,bars,restaurants,food,dining": [ + 0.006952961906790733, + -0.043648406863212585, + -0.011615730822086334, + 0.02317035384476185, + -0.1248687133193016, + 0.041030969470739365, + 0.12126421183347702, + -0.0775926262140274, + -0.006661850493401289, + -0.04396219179034233, + -0.03599023073911667, + 0.013107188045978546, + -0.02690057083964348, + 0.016006439924240112, + -7.520911458414048e-05, + 0.007680930662900209, + 0.10978198051452637, + -0.032782867550849915, + 0.07761932164430618, + 0.04271974787116051, + 0.043237119913101196, + 0.011247833259403706, + 0.08492586761713028, + 0.027039367705583572, + 0.06613937765359879, + 0.055713191628456116, + -0.024254392832517624, + 0.07953409105539322, + -0.0020199448335915804, + -0.014120316132903099, + -0.009657819755375385, + 0.08717554062604904, + 0.06707675009965897, + -0.004803077317774296, + -0.026764491572976112, + -0.0261487178504467, + 0.0008129378547891974, + -0.011292688548564911, + 0.07353564351797104, + 0.08431141823530197, + 0.019575780257582664, + 0.023046215996146202, + -0.016651872545480728, + 0.028107013553380966, + 0.020145850256085396, + -0.04683893918991089, + -0.0655481144785881, + 0.020905235782265663, + 0.03473705053329468, + -0.034913744777441025, + -0.10982096940279007, + -0.04912252724170685, + -0.048914697021245956, + 0.011001980863511562, + 0.08368100970983505, + -0.020088061690330505, + -0.04906759038567543, + -0.0335712730884552, + 0.03039843775331974, + 0.054430074989795685, + 0.006792061030864716, + 0.014765042811632156, + -0.04612595960497856, + 0.0754949226975441, + -0.0008671557297930121, + -0.027678880840539932, + -0.03458912670612335, + 0.0925614982843399, + 0.034841228276491165, + -0.05755459889769554, + 0.021143270656466484, + -0.008723224513232708, + 0.011484471149742603, + -0.008730249479413033, + -0.11921790987253189, + -0.07309648394584656, + 0.08604129403829575, + -0.004575781058520079, + -0.07776080071926117, + 0.0167704951018095, + -0.07306606322526932, + -0.054411519318819046, + -0.03195001929998398, + 0.03551730141043663, + -0.03569790720939636, + 0.012852379120886326, + -0.01991722173988819, + -0.07177270203828812, + -0.04248286411166191, + -0.016149956732988358, + -0.10209346562623978, + -0.02631203457713127, + -0.0333540253341198, + -0.07957959175109863, + 0.014653586782515049, + -0.0020702024921774864, + 0.021374084055423737, + -0.011868423782289028, + -0.013439717702567577, + 0.04093203321099281, + 0.029634561389684677, + 0.09442973881959915, + 0.031260836869478226, + -0.03514566272497177, + -0.0027121996972709894, + -0.01873864233493805, + -0.04446077346801758, + 0.01969466544687748, + 0.029842423275113106, + -0.00675650080665946, + -0.05997570976614952, + -0.03316884487867355, + 0.03517792746424675, + -0.04272589832544327, + -0.06041989102959633, + 0.0027697598561644554, + 0.0066511621698737144, + -0.03778987377882004, + 0.08901548385620117, + 0.05247768759727478, + -0.0582040436565876, + 0.011860533617436886, + 0.01401715911924839, + -0.007860133424401283, + -0.10160457342863083, + 0.07786598056554794, + 0.020989203825592995, + -4.1890298721567055e-33, + 0.05828320235013962, + -0.04131017625331879, + -0.00809509214013815, + 0.12008185684680939, + 0.05866418778896332, + 0.012811064720153809, + -0.007457200903445482, + -0.07446455210447311, + -0.08846794813871384, + -0.04323851317167282, + 0.06228133291006088, + -0.018995918333530426, + -0.014859096147119999, + 0.05498172715306282, + 0.09108235687017441, + 0.009632338769733906, + 0.04074418917298317, + 0.00609337305650115, + -0.029777050018310547, + -0.10056111961603165, + -0.05792532488703728, + 0.033909376710653305, + -0.0259287990629673, + 0.06703483313322067, + -0.0805954784154892, + -0.04189180210232735, + 0.08185464888811111, + 0.02541271410882473, + -0.02618631348013878, + 0.0191174428910017, + 0.009727546945214272, + 0.09407703578472137, + 0.02837180346250534, + 0.0185574758797884, + -0.023481888696551323, + 0.010864554904401302, + -0.0435137040913105, + -0.03096463531255722, + 0.04116633161902428, + -0.015552747063338757, + -0.05097797140479088, + 0.0014917196240276098, + 0.005457749590277672, + 0.0553477443754673, + -0.011341718956828117, + 0.03924151137471199, + -0.08029422909021378, + -0.022821227088570595, + 0.012443997897207737, + 0.05557447299361229, + -0.036166250705718994, + -0.025082146748900414, + 0.031499575823545456, + 0.09050104022026062, + -0.140122652053833, + 0.02270394191145897, + 0.02043571136891842, + 0.03637992590665817, + 0.020190570503473282, + -0.05603933334350586, + 0.0033389602322131395, + 0.033163413405418396, + -0.0018858532421290874, + -0.04669790714979172, + 0.002369767753407359, + 0.032807644456624985, + -0.07805858552455902, + -0.01597774773836136, + 0.05796713009476662, + 0.024942347779870033, + 0.0024787478614598513, + 0.04390532523393631, + 0.0624455101788044, + 0.023958154022693634, + 0.04913132265210152, + 0.01958930864930153, + -0.03910518437623978, + -0.016892123967409134, + 0.04154083505272865, + -0.0361926294863224, + -0.050206780433654785, + 0.007320546079427004, + -0.012155533768236637, + 0.15117955207824707, + -0.0036611733958125114, + -0.010217140428721905, + 0.06960905343294144, + -0.09105071425437927, + 0.020239202305674553, + 0.030938565731048584, + -0.1520678699016571, + -0.053739797323942184, + 0.013957037590444088, + -0.026441968977451324, + -0.09563155472278595, + -5.937500026175108e-35, + 0.06014401093125343, + -0.05860888212919235, + -0.011728501878678799, + 0.008943051099777222, + -0.013102743774652481, + -0.004997733514755964, + -0.009793218225240707, + -0.018653668463230133, + 0.04643648862838745, + -0.01622588001191616, + -0.04810936003923416, + 0.03677663579583168, + 0.04435247182846069, + -0.032171379774808884, + -0.04021424055099487, + 0.0629948228597641, + 0.025404050946235657, + 0.04864129424095154, + -0.03681138902902603, + 0.056285325437784195, + 0.009326761588454247, + -0.061354875564575195, + 0.00954349059611559, + 0.06287930905818939, + -0.014106852002441883, + -0.00035573201603256166, + 0.06933704018592834, + -0.06213963404297829, + -0.107513926923275, + -0.05086689069867134, + 0.015500754117965698, + -0.02948649600148201, + 0.014423482120037079, + -0.0001975519408006221, + -0.07966771721839905, + 0.10625074803829193, + -0.003361490787938237, + -0.10863903164863586, + -0.009782077744603157, + 0.022506067529320717, + 0.02543429471552372, + -0.07482994347810745, + 0.07374311238527298, + 0.051733702421188354, + 0.06366349011659622, + -0.020376957952976227, + -0.09493907541036606, + -0.06702565401792526, + -0.052796971052885056, + -0.001561171724461019, + 0.012952146120369434, + 0.030662287026643753, + -0.05764386057853699, + 0.092457614839077, + -0.03730306029319763, + -0.08717751502990723, + -0.004542180802673101, + -0.01361554954200983, + -0.08313019573688507, + 0.04985252022743225, + -0.009661195799708366, + 0.09638451039791107, + 0.00305151822976768, + 0.03356005996465683, + 0.029831862077116966, + -0.11641359329223633, + -0.016514377668499947, + 0.004454353358596563, + 0.011332658119499683, + -0.06390557438135147, + 0.054209254682064056, + -0.015900352969765663, + 0.02226691134274006, + 0.06224370375275612, + 0.0045531210489571095, + -0.0670318603515625, + -0.02131955325603485, + -0.01869547925889492, + -0.03597593680024147, + 0.051216501742601395, + -0.005406953860074282, + -0.016186146065592766, + -0.041403815150260925, + 0.09458262473344803, + -0.00626629451289773, + -0.06208009272813797, + 0.10733361542224884, + 0.01101161539554596, + -0.0317220538854599, + -0.020513873547315598, + 0.01842227205634117, + 0.04346273094415665, + -0.09340174496173859, + -0.06826222687959671, + 0.029726451262831688, + -2.3752507516405785e-08, + 0.04315701872110367, + 0.03879242390394211, + -0.01522524282336235, + 0.12178515642881393, + -0.0010902562644332647, + -0.09385397285223007, + -0.0010762085439637303, + -0.019481562077999115, + -0.04998030886054039, + -0.006411945912986994, + 0.0336766391992569, + -0.01227898895740509, + -0.02107602171599865, + -0.061959341168403625, + -0.0038323625922203064, + -0.022957883775234222, + -0.03180835023522377, + 0.05054742470383644, + -0.016720550134778023, + -0.008219167590141296, + 0.01708242855966091, + 0.016480445861816406, + 0.05934194102883339, + 0.00579236913472414, + -0.02817494235932827, + -0.021725572645664215, + -0.028013626113533974, + -0.047533344477415085, + 0.061251115053892136, + 0.016861019656062126, + 0.032199885696172714, + 0.05365883931517601, + -0.017090873792767525, + 0.06278820335865021, + -0.10921049863100052, + -0.00845823809504509, + -0.020632101222872734, + -0.0016450166003778577, + -0.020527763292193413, + 0.06054394692182541, + -0.06790250539779663, + -0.16415326297283173, + -0.08250060677528381, + -0.005730316508561373, + -0.033803656697273254, + 0.03776348754763603, + 0.03982531279325485, + 0.028580529615283012, + -0.0520603246986866, + 0.00422950554639101, + 0.030338920652866364, + 0.06156523525714874, + 0.07813741266727448, + -0.02434934489428997, + -0.02437892183661461, + 0.01205957867205143, + -0.04110457003116608, + 0.029945597052574158, + 0.02916322462260723, + -0.019906966015696526, + 0.12725278735160828, + 0.0225484911352396, + -0.08566898852586746, + 0.019500739872455597 + ], + "mask-happy-bold||theater,costume,smile,smiling,thalia": [ + 0.030456094071269035, + -0.01863125152885914, + -0.02878992259502411, + -0.009571327827870846, + -0.0022573659662157297, + -0.0018541327444836497, + 0.10920019447803497, + -0.0795011967420578, + -0.00801717210561037, + -0.036037079989910126, + 0.07967109233140945, + -0.08869567513465881, + 0.015364951454102993, + 0.006073721684515476, + 0.04917663708329201, + -0.016757331788539886, + 0.027464009821414948, + 0.0479782372713089, + 0.032286807894706726, + -0.04105214774608612, + 0.06000842899084091, + 0.001962171168997884, + -0.0049686068668961525, + 0.03427409753203392, + -0.027855999767780304, + -0.04422719031572342, + -0.0007262375438585877, + -0.009522042237222195, + -0.00995477195829153, + -0.0480978824198246, + -0.03962364420294762, + -0.03919924423098564, + 0.13802583515644073, + 0.04490146040916443, + -0.02025153860449791, + 0.02616932988166809, + -0.09204672276973724, + -0.020519709214568138, + 0.01689951680600643, + 0.03472171723842621, + -0.09814220666885376, + -0.0065291402861475945, + -0.09525508433580399, + 0.01861022226512432, + -0.02662784233689308, + -0.05543431267142296, + 0.016121022403240204, + 0.0366499200463295, + -0.03112933039665222, + 0.03703097999095917, + -0.0531938411295414, + -0.06923884898424149, + -0.10611975938081741, + 0.029482873156666756, + -0.023981699720025063, + -0.018448473885655403, + -0.03747466579079628, + -0.03802010416984558, + 0.04919952154159546, + 0.019624484702944756, + -0.026284389197826385, + 0.02973075956106186, + 0.06584015488624573, + 0.05583960935473442, + -0.01155258808284998, + -0.060579776763916016, + -0.046854183077812195, + -0.028231868520379066, + -0.060485608875751495, + 0.0583517886698246, + -0.04380426183342934, + -0.05373174697160721, + 0.01087119523435831, + -0.07761046290397644, + -0.04703560099005699, + -0.01800236850976944, + 0.05506040155887604, + -0.0929640457034111, + 0.017543768510222435, + 0.05273287743330002, + 0.08121620863676071, + -0.06304718554019928, + -0.04719795286655426, + -0.03563585504889488, + 0.002760298317298293, + -0.046740226447582245, + -0.10766018182039261, + -0.019805220887064934, + -0.07994196563959122, + -0.027832211926579475, + -0.12222383171319962, + -0.002768733538687229, + -0.00550868920981884, + -0.0014975381782278419, + -0.01623718999326229, + -0.0407865084707737, + -0.040559202432632446, + 0.04573524743318558, + 0.012929574586451054, + 0.06860969215631485, + -0.004556106403470039, + -0.0633290559053421, + -0.009669636376202106, + -0.04284598305821419, + -0.007199807558208704, + -0.04665696620941162, + -0.004605533555150032, + -0.010057204402983189, + 0.030486134812235832, + -0.0933259055018425, + -0.05011218413710594, + -0.053059566766023636, + 0.04322853311896324, + -0.06629160046577454, + 0.05826142057776451, + 0.04625698924064636, + -0.043011125177145004, + -0.006389412563294172, + 0.06414394080638885, + 0.031080681830644608, + 0.07251992076635361, + 0.01629866659641266, + 0.030912114307284355, + -0.018073121085762978, + -0.013030878268182278, + 0.006960035767406225, + -0.03579535335302353, + -2.1080520392250176e-33, + 0.048739321529865265, + 0.0599377267062664, + -0.012094034813344479, + 0.059243448078632355, + 0.023599831387400627, + -0.027894016355276108, + 0.03433409705758095, + -0.04478394240140915, + -0.14874663949012756, + 0.09046190977096558, + 0.03334638476371765, + -0.01505746878683567, + -0.1016494408249855, + 0.05484809726476669, + -0.06517227739095688, + 0.023962512612342834, + 0.017329487949609756, + -0.02830626629292965, + -0.049846235662698746, + 0.03972667083144188, + -0.06618712842464447, + 0.09599758684635162, + -0.0228454377502203, + 0.011296640150249004, + 0.022386131808161736, + 0.01306079886853695, + 0.02771971933543682, + -0.03204266354441643, + 0.0153934545814991, + 0.02725568599998951, + 0.021860415115952492, + 0.03116470016539097, + 0.07509665191173553, + 0.008889035321772099, + 0.09793227910995483, + 0.014040354639291763, + -0.02570844255387783, + -0.05141305923461914, + -0.03076421096920967, + 0.017204418778419495, + -0.048813726752996445, + 0.05200860649347305, + -0.05409783869981766, + 0.007599842734634876, + -0.04683349281549454, + 0.07361889630556107, + -0.018753375858068466, + 0.039261508733034134, + 0.01160166971385479, + 0.07453598827123642, + 0.03583275154232979, + 0.05443113297224045, + -0.04504445567727089, + -0.04141244664788246, + -0.045006874948740005, + -0.05591069534420967, + -0.02407677471637726, + 0.06847739219665527, + 0.05627462640404701, + -0.03853220120072365, + 0.012664111331105232, + -0.0314786359667778, + 0.03287727013230324, + -0.10505717247724533, + 0.025215083733201027, + 0.10564249008893967, + 0.025050438940525055, + -0.03472816199064255, + 0.07118482887744904, + 0.023575879633426666, + 0.00864328257739544, + 0.07787179201841354, + 0.0006609862321056426, + -0.04894055426120758, + -0.03285939618945122, + 0.02420123480260372, + -0.011649047024548054, + 0.0164182186126709, + -0.0603768564760685, + -0.04257050156593323, + -0.08124440908432007, + 0.052214834839105606, + -0.0827423557639122, + 0.056730736047029495, + -0.03148035705089569, + -0.06703074276447296, + 0.02136126160621643, + -0.05922325327992439, + -0.03290652483701706, + 0.054631307721138, + 0.03928317874670029, + -0.008514683693647385, + 0.010467426851391792, + -0.025845227763056755, + -0.044336073100566864, + 1.2442186178526548e-33, + 0.0960870012640953, + 0.003402959555387497, + -0.11060436815023422, + -0.02002943493425846, + -0.025514986366033554, + 0.025115342810750008, + 0.009161191061139107, + 0.05550123378634453, + 0.007752109318971634, + 0.05018863081932068, + -0.041872844099998474, + -0.06780499219894409, + -0.021332476288080215, + -0.10283894836902618, + 0.027600733563303947, + -0.010568249970674515, + 0.12404637038707733, + 0.021420912817120552, + 0.015513908118009567, + 0.05511458218097687, + -0.0515633150935173, + 0.03268607333302498, + -0.05796061083674431, + -0.01227023545652628, + -0.059028539806604385, + 0.07886362075805664, + 0.036552004516124725, + 0.014926016330718994, + -0.03967776149511337, + -0.0022599673829972744, + -0.07272577285766602, + 0.015408863313496113, + -0.01734011247754097, + 0.0503186471760273, + -0.03560353070497513, + 0.026800066232681274, + -0.02815757878124714, + -0.05301828682422638, + -0.05136902630329132, + -0.02007458545267582, + -0.04811006039381027, + -0.038981035351753235, + 0.06665297597646713, + 0.16283205151557922, + 0.020622147247195244, + -0.054504554718732834, + -0.020720187574625015, + 0.004637358244508505, + 0.00045505916932597756, + 0.03956885635852814, + -0.00549577409401536, + -0.01963076740503311, + -0.06173728033900261, + -0.03653069958090782, + -0.013357614167034626, + 0.0571175292134285, + -0.102451853454113, + -0.02738875150680542, + 0.015988025814294815, + 0.012567257508635521, + -0.03833264112472534, + -0.01509893499314785, + -0.03718045353889465, + -0.011877580545842648, + 0.011266465298831463, + 0.002987496554851532, + -0.007322050165385008, + -0.003643633797764778, + 0.04357031360268593, + 0.03166896477341652, + 0.08119729161262512, + -0.015418203547596931, + -0.003355965716764331, + 0.046110767871141434, + -0.06829217821359634, + -0.03310808539390564, + -0.007162588648498058, + 0.05911942198872566, + 0.005388290621340275, + 0.13631457090377808, + -0.0798928439617157, + -0.029873570427298546, + -0.015340063720941544, + 0.06823007762432098, + 0.056305669248104095, + 0.09788054972887039, + -0.017099449411034584, + 0.07420243322849274, + -0.03897474706172943, + 0.00837362464517355, + -0.007673249114304781, + 0.06996022164821625, + 0.024129975587129593, + -0.05051038786768913, + 0.02506694756448269, + -1.8957697633936732e-08, + 0.01078970730304718, + -0.03830045461654663, + -0.09887556731700897, + -0.07222674041986465, + -0.02809322066605091, + -0.009477464482188225, + -0.004495828878134489, + -0.077564537525177, + -0.062064625322818756, + 0.016803067177534103, + 0.07771845161914825, + 0.0679766908288002, + 0.03704439476132393, + -0.018110832199454308, + 0.015848681330680847, + 0.04335333779454231, + -0.03425745293498039, + 0.09347286820411682, + -0.006925441324710846, + -0.01007843017578125, + -0.018150368705391884, + 0.03128601238131523, + 0.028571320697665215, + -0.04088345542550087, + -0.03407799080014229, + 0.028305083513259888, + 0.031693004071712494, + -0.031566280871629715, + -0.03713606670498848, + 0.14112453162670135, + 0.0008066801819950342, + 0.06346537172794342, + -0.008079244755208492, + -0.017678484320640564, + 0.0019606882706284523, + -0.009865925647318363, + -0.0002271592675242573, + -0.030943242833018303, + 0.024256236851215363, + 0.07874609529972076, + 0.10374490171670914, + 0.021739806979894638, + 0.08736007660627365, + 0.022606438025832176, + -0.02350490354001522, + 0.07645364105701447, + 0.15238387882709503, + -0.07361820340156555, + 0.03927517309784889, + -0.03567755967378616, + -0.0029294637497514486, + -0.07462083548307419, + -0.08818467706441879, + 0.06984122097492218, + -0.013039303943514824, + -0.003130996134132147, + 0.06216272711753845, + 0.14706210792064667, + 0.004257882945239544, + 0.03561289235949516, + 0.07875178009271622, + 0.03981146588921547, + 0.027508534491062164, + -0.023886483162641525 + ], + "mask-sad-bold||theater,costume,cry,crying,melpomene": [ + 0.05270766839385033, + -0.005380771588534117, + 0.031711358577013016, + -0.004896184895187616, + 0.023225629702210426, + 0.07673366367816925, + 0.034042421728372574, + -0.05619017407298088, + 0.00938382651656866, + -0.040766820311546326, + -0.007383734453469515, + -0.08687518537044525, + 0.0009880269644781947, + 0.02751847915351391, + 0.010300219990313053, + 0.007923210971057415, + 0.029502887278795242, + 0.08114223927259445, + 0.040854327380657196, + -0.05238701403141022, + 0.10581493377685547, + 0.016985775902867317, + -0.027524905279278755, + 0.034914497286081314, + 0.009307979606091976, + -0.006242287810891867, + 0.00025980055215768516, + -0.008747384883463383, + -0.04670706018805504, + -0.03377135843038559, + -0.030979380011558533, + -0.08111356943845749, + 0.11265995353460312, + 0.054972730576992035, + 0.010247230529785156, + -0.018604494631290436, + -0.07735449820756912, + -0.006288283504545689, + -0.04364741966128349, + 0.020325103774666786, + -0.0556163489818573, + 0.041978586465120316, + -0.07110267132520676, + -0.025852534919977188, + 0.010962611064314842, + -0.07097446918487549, + -0.034145668148994446, + 0.012855984270572662, + -0.011093633249402046, + -0.007513377815485001, + -0.03568430617451668, + -0.06627260148525238, + -0.04137924686074257, + 0.028183812275528908, + 0.012816568836569786, + -0.039178166538476944, + -0.009078940376639366, + -0.038641661405563354, + 0.06762509047985077, + -0.019528580829501152, + -0.04470363259315491, + -0.014972297474741936, + 0.039781391620635986, + 0.030926384031772614, + 0.010627438314259052, + -0.03273855894804001, + -0.01699806936085224, + -0.010453575290739536, + -0.014324897900223732, + 0.1089123785495758, + -0.10528227686882019, + -0.03896494209766388, + 0.016529511660337448, + -0.05058439075946808, + -0.09010811150074005, + 0.02457396686077118, + 0.03993254527449608, + -0.12053307145833969, + 0.004304145462810993, + 0.002737842034548521, + 0.08209055662155151, + -0.05386479198932648, + -0.0475248247385025, + -0.03670451417565346, + -0.04150071367621422, + -0.013044686056673527, + -0.02159297838807106, + -0.05034476891160011, + -0.06046675145626068, + 0.049246303737163544, + -0.09425556659698486, + -0.03169426694512367, + -0.010544801130890846, + 0.06043994426727295, + 0.017545517534017563, + -0.02857879549264908, + -0.07637541741132736, + 0.09742005914449692, + -0.008561915718019009, + 0.06731689721345901, + -0.023591753095388412, + -0.048456158488988876, + -0.02758144773542881, + -0.09030226618051529, + 0.011338003911077976, + -0.10249914228916168, + -0.021218622103333473, + -0.04107467457652092, + -0.046855803579092026, + -0.0691547691822052, + -0.0634203627705574, + -0.040184054523706436, + 0.018109485507011414, + -0.04257313534617424, + 0.06131596118211746, + 0.00168633705470711, + -0.0062738810665905476, + -0.02753981575369835, + 0.05713367462158203, + 0.10256752371788025, + 0.05269492790102959, + 0.036321427673101425, + -0.011186937801539898, + -0.03484620526432991, + 0.022747274488210678, + 0.02053859829902649, + -0.04487191140651703, + -8.194887235070574e-34, + 0.10694015771150589, + 0.009416860528290272, + -0.023180615156888962, + 0.09721057862043381, + 0.003378384280949831, + -0.023537272587418556, + 0.014599589630961418, + -0.0232213344424963, + -0.08183352649211884, + 0.0459708496928215, + 0.0375002957880497, + -0.027900181710720062, + -0.10073104500770569, + 0.03648556023836136, + -0.033302001655101776, + 3.1224142730934545e-05, + 0.028829799965023994, + -0.024467162787914276, + -0.026620954275131226, + -0.02727561816573143, + -0.11283835023641586, + 0.14092645049095154, + -0.044539324939250946, + -0.022390710189938545, + -0.028462473303079605, + 0.0031618678476661444, + -0.008676787838339806, + -0.03254951536655426, + 0.0006934008561074734, + 0.032616354525089264, + 0.010836220346391201, + 0.05026322603225708, + 0.08241094648838043, + 0.06064644455909729, + 0.07327849417924881, + -0.012873709201812744, + -0.007981386967003345, + -0.053522754460573196, + -0.027504675090312958, + 0.022435598075389862, + -0.07136490941047668, + 0.02568831853568554, + -0.04414884373545647, + -0.005529520567506552, + -0.0397287979722023, + 0.058498721569776535, + -0.037835493683815, + 0.044018615037202835, + 0.048172205686569214, + 0.13292904198169708, + 0.09644853323698044, + 0.06319580972194672, + -0.03261910751461983, + -0.0547756552696228, + 0.015304076485335827, + -0.02200397290289402, + -0.03599722683429718, + -0.015612696297466755, + 0.05222337320446968, + -0.03896521404385567, + 0.03591407462954521, + 0.007001877296715975, + 0.05811138078570366, + -0.08183501660823822, + 0.0018125666538253427, + 0.05785568431019783, + 0.0331852063536644, + -0.05848729982972145, + 0.0306722242385149, + -0.031646762043237686, + -0.024855170398950577, + 0.024725327268242836, + 0.04223189130425453, + -0.01136228907853365, + 0.01219656690955162, + 0.007945659570395947, + -0.010557981207966805, + 0.022957075387239456, + -0.07407290488481522, + -0.09090305864810944, + -0.12625181674957275, + 0.03888225182890892, + -0.0796884149312973, + 0.07215351611375809, + -0.017343128100037575, + -0.033568598330020905, + -0.010280219838023186, + -0.05519527196884155, + -0.019564926624298096, + 0.01455770805478096, + -0.020268326625227928, + -0.024541236460208893, + -0.028602810576558113, + -0.05047144740819931, + -0.03546497970819473, + -5.693339747604742e-34, + 0.10089361667633057, + -0.02456645667552948, + -0.060415077954530716, + -0.004333814140409231, + 0.024716947227716446, + -0.013232828117907047, + -0.05918904393911362, + 0.03736216202378273, + 0.0517096109688282, + 0.06721261888742447, + -0.06108752638101578, + -0.09289471805095673, + 0.003402597736567259, + -0.03880864009261131, + 0.03356471285223961, + -0.030857432633638382, + 0.10339874774217606, + 0.021153075620532036, + -0.004747543018311262, + 0.025634974241256714, + -0.067902572453022, + 0.05670078843832016, + -0.024343034252524376, + -0.03511765971779823, + -0.019013796001672745, + 0.035745639353990555, + 0.03737008571624756, + 0.061915073543787, + -0.02306327223777771, + -0.04602492228150368, + -0.03278879076242447, + 0.03358042985200882, + -0.03264009207487106, + 0.10773102939128876, + -0.029343804344534874, + 0.07102051377296448, + 0.017551880329847336, + -0.06559821218252182, + -0.04766479879617691, + -0.030117493122816086, + -0.07045889645814896, + -8.798501221463084e-05, + 0.025721339508891106, + 0.13107676804065704, + 0.038930051028728485, + -0.02832336351275444, + 0.025685206055641174, + -0.002099706092849374, + 0.03317245841026306, + 0.03720409795641899, + -0.039752356708049774, + -0.015963414683938026, + -0.026969289407134056, + -0.04121006652712822, + -0.020586036145687103, + 0.030765684321522713, + -0.09407699108123779, + -0.057105183601379395, + -0.03314880281686783, + 0.04781175032258034, + -0.011245428584516048, + -0.0121772401034832, + -0.05632874369621277, + -0.012008488178253174, + -0.005738910753279924, + 0.004861475899815559, + 0.009959805756807327, + -0.02740015834569931, + 0.003162670647725463, + 0.04075472801923752, + 0.09712209552526474, + -0.054090552031993866, + -0.03218700736761093, + 0.06094598025083542, + -0.044242702424526215, + -0.024234207347035408, + -0.0054482449777424335, + 0.08974365144968033, + -0.007131402846425772, + 0.07562687993049622, + -0.030594540759921074, + -0.009532970376312733, + -0.015545760281383991, + 0.09704624116420746, + 0.0756344124674797, + 0.11486661434173584, + -0.004429604858160019, + 0.09802297502756119, + -0.04943593218922615, + 0.03219851478934288, + -0.02613719366490841, + 0.06451316177845001, + 0.07594724744558334, + -0.023971902206540108, + 0.01541096344590187, + -2.0499799191497914e-08, + 0.02833162434399128, + -0.033232271671295166, + -0.10036656260490417, + -0.0631091445684433, + -0.016145721077919006, + -0.007876485586166382, + -0.01716693863272667, + -0.08511944115161896, + -0.06109641119837761, + 0.07494232803583145, + 0.027883704751729965, + 0.018181992694735527, + -0.013772906735539436, + 0.02565312385559082, + -0.025573279708623886, + 0.05086623504757881, + -0.02558630146086216, + 0.04912152141332626, + -0.028193123638629913, + -0.006310529541224241, + -0.06388648599386215, + 0.021014481782913208, + 0.03646712377667427, + -0.025203226134181023, + 0.019628487527370453, + 0.03405166417360306, + 0.011785273440182209, + -0.06292858719825745, + -0.04094062000513077, + 0.17964504659175873, + 0.051004067063331604, + 0.08933605253696442, + -0.018796278163790703, + -0.025390250608325005, + -0.05232798680663109, + 0.01947079971432686, + 0.004807333927601576, + -0.010172722861170769, + 0.010932624340057373, + 0.07026957720518112, + 0.07005554437637329, + -0.03585683926939964, + 0.11078411340713501, + 0.008157369680702686, + 0.014432128518819809, + 0.05095024034380913, + 0.1193036288022995, + -0.05788160115480423, + -0.040099598467350006, + -0.033882610499858856, + 0.004434887319803238, + -0.0372590534389019, + -0.09071626514196396, + 0.08640091866254807, + 0.039973802864551544, + -0.018519781529903412, + 0.05323641747236252, + 0.15293408930301666, + 0.01317544374614954, + 0.012705034576356411, + 0.07463867217302322, + 0.020216798409819603, + 0.017447184771299362, + -0.005987722892314196 + ], + "mastodon-logo-bold||*new*,fediverse,social media,decentralized": [ + 0.021861838176846504, + -0.003152890596538782, + 0.06333783268928528, + 0.008295326493680477, + 0.04706867039203644, + -0.037762802094221115, + 0.010011493228375912, + 0.029059937223792076, + -0.04414260759949684, + 0.03967959061264992, + 0.012685634195804596, + -0.0069218408316373825, + -0.0292249396443367, + 0.02938510663807392, + -0.03188927099108696, + -0.023145020008087158, + 0.02356555685400963, + -0.03366493061184883, + 0.03652702644467354, + 0.0014864896656945348, + 0.02573961392045021, + 0.019989371299743652, + 0.00028706545708701015, + 0.03919665142893791, + 0.0066164094023406506, + 0.016498779878020287, + -0.07602328807115555, + -0.05157587304711342, + 0.0029439579229801893, + -0.06945688277482986, + -0.01630781963467598, + 0.022924935445189476, + 0.12401743233203888, + -0.048574481159448624, + -0.0026260993909090757, + -0.018227528780698776, + 0.05140776187181473, + -0.02522660419344902, + 0.029371729120612144, + 0.03242514282464981, + 0.036164600402116776, + -0.06443444639444351, + 0.030820617452263832, + 0.01824871450662613, + -0.040582891553640366, + -0.004708216991275549, + -0.030538611114025116, + 0.03913632407784462, + 0.012519583106040955, + -0.01302396971732378, + -0.03490138053894043, + -0.16100341081619263, + 0.0020649468060582876, + -0.04453624412417412, + -0.026255087926983833, + -0.002694751601666212, + -0.02762291021645069, + -0.06899338215589523, + 0.06865271925926208, + 0.048152461647987366, + 0.06040123105049133, + 0.01949935406446457, + -0.031821902841329575, + 0.09838087856769562, + 0.09062042087316513, + -0.013697957620024681, + -0.0029653238598257303, + 0.0987466424703598, + -0.025714589282870293, + 0.012753638438880444, + 0.09361832588911057, + -0.044027626514434814, + 0.01865992695093155, + 0.023771213367581367, + -0.009900640696287155, + -0.025474611669778824, + 0.06331493705511093, + 0.01005593966692686, + 0.015209821052849293, + -0.03818141669034958, + -0.03781258687376976, + -0.016463104635477066, + -0.020791085436940193, + -0.02799057774245739, + -0.0004217195964884013, + 0.05662720650434494, + -0.06239459291100502, + -0.006995155476033688, + -0.037588052451610565, + -0.036435775458812714, + -0.09206978231668472, + 0.06275584548711777, + -0.003123505273833871, + -0.018878646194934845, + -0.08367754518985748, + 0.02517109550535679, + -0.048385344445705414, + 0.0006063938490115106, + -0.08695599436759949, + 0.1347557008266449, + -0.03407007083296776, + 0.06515491008758545, + 0.037589360028505325, + -0.06714405864477158, + 0.006068377289921045, + 0.03449464961886406, + -0.08122745901346207, + 0.08142063766717911, + 0.046133168041706085, + 0.05235355719923973, + -0.017934998497366905, + 0.017072994261980057, + -0.08933588862419128, + 0.02350604720413685, + 4.215625813230872e-05, + -0.06295827031135559, + -0.04610390588641167, + -0.036674730479717255, + 0.11232630163431168, + 0.0016324545722454786, + 0.01087651401758194, + -0.034474268555641174, + -0.054829493165016174, + -0.11738557368516922, + 0.017278796061873436, + -0.050699632614851, + -0.03661488741636276, + -2.0169273498072892e-33, + 0.03509855270385742, + 0.08512147516012192, + -0.003496651304885745, + 0.021373851224780083, + 0.03060215525329113, + 0.01829327642917633, + -0.07227092981338501, + -0.05386281758546829, + -0.15058362483978271, + 0.061965394765138626, + 0.08511416614055634, + 0.07516416907310486, + -0.028469115495681763, + 0.07137629389762878, + 0.049888383597135544, + -0.11402171105146408, + -0.007871964015066624, + -0.013472722843289375, + -0.0054785325191915035, + -0.05465283244848251, + -0.037182509899139404, + 0.09644439816474915, + -0.053482361137866974, + 0.027920503169298172, + -0.04898678511381149, + -0.04734465852379799, + 0.04201110079884529, + -0.03664259985089302, + 0.03838176280260086, + 0.033505555242300034, + 0.03294918313622475, + 0.02239592745900154, + 0.046267069876194, + -0.0006665674154646695, + 0.019725725054740906, + -0.06772002577781677, + 0.014164465479552746, + -0.1369984745979309, + -0.02444244734942913, + -0.026623981073498726, + 0.010989203117787838, + 0.00852746982127428, + -0.04482316970825195, + 0.09784215688705444, + -0.04028384014964104, + 0.09857717156410217, + 0.038899872452020645, + -0.0858205184340477, + 0.11234911531209946, + -0.013002202846109867, + 0.023529382422566414, + -0.02576315775513649, + -0.02387019246816635, + -0.009282391518354416, + -0.03720942884683609, + -0.02294907718896866, + -0.07479457557201385, + 0.040842898190021515, + -0.005231800489127636, + -0.09503680467605591, + 0.051557403057813644, + -0.07904795557260513, + 0.05229050666093826, + 0.01652129366993904, + -0.007856146432459354, + 0.05809624865651131, + -0.03051292896270752, + 0.03984265401959419, + 0.04965933412313461, + 0.031400974839925766, + -0.014993005432188511, + 0.032887835055589676, + 0.02417805790901184, + 0.05087419971823692, + -0.030446551740169525, + 0.049262966960668564, + 0.02629966475069523, + 0.0730089470744133, + -0.0350651852786541, + 0.03276316076517105, + -0.04621713235974312, + -0.012836068868637085, + -0.07499616593122482, + 0.0804472267627716, + 0.09234678000211716, + 0.061598941683769226, + 0.03582164645195007, + 0.0005805915570817888, + 0.03751701861619949, + 0.0489644818007946, + -0.07278934866189957, + 0.033920418471097946, + 0.005920665338635445, + 0.0181526318192482, + -0.09760193526744843, + 1.5737407018269694e-34, + -0.01708448864519596, + 0.002411416731774807, + 0.030182376503944397, + -0.007818186655640602, + -0.06137000769376755, + 0.0162044670432806, + -0.04322874918580055, + 0.05992596596479416, + -0.04421146586537361, + 0.012531090527772903, + 0.0651351660490036, + 0.006821992341428995, + -0.005664949771016836, + -0.034498851746320724, + -0.06648321449756622, + 0.029889218509197235, + 0.10858090966939926, + -0.01270236074924469, + -0.09893984347581863, + -0.029063893482089043, + -0.02337263524532318, + 0.020566623657941818, + -0.08674857020378113, + 0.07178785651922226, + -0.00268576736561954, + 0.0676371306180954, + -0.03581346198916435, + -0.009861662983894348, + -0.036764323711395264, + -0.0143121387809515, + -0.0364481545984745, + 0.01679070293903351, + -0.011660688556730747, + 0.016401616856455803, + -0.041010115295648575, + 0.06778428703546524, + -0.043818045407533646, + -0.04330234229564667, + 0.005172113422304392, + 0.001663767732679844, + -0.026868807151913643, + 0.005467697978019714, + 0.020109878852963448, + 0.04947681725025177, + 0.002753421664237976, + -0.04720057174563408, + -0.13587625324726105, + -0.059142425656318665, + -0.05297021567821503, + 0.1221214085817337, + -0.006804211065173149, + 0.011764835566282272, + 0.06598018109798431, + -0.06523747742176056, + -0.05944785475730896, + -0.016159236431121826, + 0.0018929109210148454, + -0.02233167178928852, + -0.0033101290464401245, + 0.05869802087545395, + 0.02009296417236328, + -0.011748737655580044, + -0.06776560842990875, + 0.012173847295343876, + 0.033651113510131836, + -0.05131939426064491, + 0.017963899299502373, + -0.02200595661997795, + -0.06783038377761841, + 0.07615924626588821, + 0.07127714902162552, + -0.004595509264618158, + -0.0719049721956253, + -0.001531972549855709, + -0.04541335254907608, + 0.008596495725214481, + 0.072223000228405, + -0.007578882854431868, + -0.11682780832052231, + 0.08791171759366989, + 0.016698887571692467, + 0.013726525008678436, + -0.04115132614970207, + 0.04474779590964317, + 0.0420079343020916, + -0.019906245172023773, + 0.020721185952425003, + 0.020011669024825096, + 0.04050039127469063, + 0.0111583536490798, + -0.060851048678159714, + 0.06525301188230515, + -0.033572159707546234, + -0.0006011713412590325, + -0.004433892201632261, + -2.366552998012139e-08, + 0.005753118544816971, + 0.0080554885789752, + -0.05459139868617058, + 0.037438951432704926, + 0.05538668856024742, + 0.02677798457443714, + -0.09260862320661545, + -0.11470732092857361, + -0.0430549755692482, + -0.012984857894480228, + -0.06549384444952011, + 0.006740357261151075, + -0.09890083223581314, + 0.033649101853370667, + 0.005729102063924074, + -0.03672384098172188, + -0.06783353537321091, + 0.03640805929899216, + -0.029390990734100342, + -0.04472652077674866, + -0.06974650174379349, + 0.02102932333946228, + 0.06602402776479721, + -0.020511386916041374, + -0.0750223770737648, + 0.048858918249607086, + 0.0444922000169754, + 0.023298900574445724, + 0.002105076564475894, + 0.06071045994758606, + 0.03862921893596649, + 0.12078485637903214, + -0.041193585842847824, + -0.02219773270189762, + -0.08801418542861938, + 0.018643831834197044, + -0.05904589965939522, + -0.015718281269073486, + -0.0374714657664299, + 0.013279411010444164, + 0.06918419152498245, + 0.03068036586046219, + 0.027463974431157112, + 0.030178338289260864, + -0.06477264314889908, + 0.013425200246274471, + 0.04299550503492355, + 0.07843858003616333, + 0.04308732971549034, + -0.08715447038412094, + -0.0003929070371668786, + 0.0019792034290730953, + -0.04769624397158623, + 0.02933579683303833, + -0.02520121820271015, + -0.03901562839746475, + 0.042660485953092575, + 0.0863698199391365, + 0.03818894550204277, + 0.03589727357029915, + 0.09188201278448105, + -0.13219937682151794, + 0.012652922421693802, + -0.008631300181150436 + ], + "math-operations-bold||addition,sum,subtraction,difference,multiply,multiplication,product,divide,division,divisor,dividend,quotient,equals,equality,mathematics,arithmetic,calculator,+,-,\u00b1,\u00d7,\u00f7,=": [ + -0.02839789167046547, + -0.015954934060573578, + -0.03130727261304855, + 0.02621816284954548, + -0.05473651364445686, + -0.09990713000297546, + 0.05795596167445183, + -0.026883570477366447, + -0.009910904802381992, + -0.003561321645975113, + -0.0015625316882506013, + -0.0021403555292636156, + 0.07266920804977417, + -0.008797981776297092, + -0.010541628114879131, + 0.04538782685995102, + -0.03164833411574364, + 0.0743284747004509, + -0.060499515384435654, + -0.03795752301812172, + 0.038857243955135345, + -0.016572345048189163, + 0.0020762374624609947, + 0.09423445165157318, + 0.11223394423723221, + 0.022707000374794006, + 0.007141138892620802, + -0.05468036234378815, + 0.09210364520549774, + -0.038816627115011215, + -0.05504220724105835, + -0.041192032396793365, + 0.1987813115119934, + -0.02935260906815529, + -0.015499123372137547, + 0.033210404217243195, + -0.005182603374123573, + 0.0020923486445099115, + 0.014562378637492657, + 0.0969335064291954, + -0.057650767266750336, + -0.10248495638370514, + -0.009039044380187988, + 0.016349822282791138, + -0.06171531602740288, + -0.023135125637054443, + -0.04294418916106224, + -0.04125941917300224, + 0.05998196080327034, + -0.008303508162498474, + 0.0035914555191993713, + 0.00034794892417266965, + -0.20160897076129913, + 0.02966991811990738, + 0.04015624150633812, + 0.012999098747968674, + -0.04107028990983963, + 0.04503694176673889, + 0.01813124492764473, + -0.06303858757019043, + -0.03877878934144974, + 0.00277483812533319, + 0.07177835702896118, + 0.0034793305676430464, + 0.031852882355451584, + 0.025146642699837685, + 0.01614709012210369, + -0.004618962295353413, + -0.02659309096634388, + 0.07590444386005402, + 0.010056945495307446, + 0.004686008673161268, + -0.035467762500047684, + -0.028300385922193527, + -0.04380972683429718, + 0.035575248301029205, + 0.049909818917512894, + 0.033966947346925735, + -0.04785412549972534, + 0.007357291877269745, + -0.08256246149539948, + -0.06948713958263397, + -0.038585513830184937, + 0.0017182151786983013, + 0.045634474605321884, + 0.03716663271188736, + -0.03554277494549751, + -0.07219195365905762, + 0.043075770139694214, + -0.06226659193634987, + -0.0503094345331192, + -0.02311047725379467, + -0.004479696508497, + 0.009601346217095852, + -0.0390135757625103, + 0.003937268629670143, + 0.004112313501536846, + 0.02480900287628174, + -0.0347692109644413, + 0.06295597553253174, + 0.02426811493933201, + 0.05497602000832558, + -0.0584493987262249, + -0.011119253933429718, + 0.0063919974491000175, + -0.034237585961818695, + 0.04111437872052193, + -0.05424589291214943, + 0.013042422942817211, + 0.02286800928413868, + 0.006258074659854174, + -0.06447291374206543, + -0.010804552584886551, + -0.0074742515571415424, + -0.03477509319782257, + -0.006788393948227167, + -0.01757092773914337, + -0.0037163204979151487, + 0.08914249390363693, + 0.017377585172653198, + 0.06287151575088501, + 0.015606023371219635, + 0.032789018005132675, + -0.021988634020090103, + 0.037159521132707596, + 0.005939848721027374, + 0.014291956089437008, + -1.5407950160456525e-33, + 0.006491780746728182, + -0.003493240103125572, + -0.0070531731471419334, + 0.1143072172999382, + -0.04147021844983101, + 0.008680107071995735, + -0.055457159876823425, + -0.038795266300439835, + -0.04378587752580643, + 0.08241050690412521, + 0.06373735517263412, + 0.13243693113327026, + 0.055720966309309006, + 0.024334488436579704, + 0.10111762583255768, + 0.014397431164979935, + 0.06440629810094833, + -0.050128791481256485, + -0.006777992006391287, + 0.010628541931509972, + -0.00012997942394576967, + 0.010286559350788593, + -0.0906546413898468, + 0.05964108183979988, + 0.027596432715654373, + 0.00047748786164447665, + 0.051623597741127014, + 0.010136178694665432, + -0.030898964032530785, + 0.014709537848830223, + 0.015711896121501923, + 0.03288909047842026, + -0.009000435471534729, + -0.008976110257208347, + 0.054048869758844376, + 0.03451080620288849, + -0.018661530688405037, + 0.0006519982707686722, + 0.07446695119142532, + -0.012972447089850903, + -0.15938836336135864, + -0.06423575431108475, + -0.01645374670624733, + -0.07037863880395889, + 0.021841518580913544, + 0.10712740570306778, + -0.04050708934664726, + 0.0021499083377420902, + 0.08114917576313019, + 0.03383881598711014, + -0.09907343983650208, + -0.030436847358942032, + 0.07979390025138855, + -0.0014941563131287694, + -0.023039598017930984, + 0.016659125685691833, + 0.007172330282628536, + 0.07935157418251038, + 0.014546233229339123, + 0.043350301682949066, + -0.06464993208646774, + 0.04043065011501312, + 0.030620411038398743, + -0.03077838197350502, + -0.1541798710823059, + 0.03166290745139122, + -0.1476006954908371, + 0.02964680641889572, + 0.06883876025676727, + 0.036419305950403214, + -0.05115737393498421, + 0.09295160323381424, + -0.031967997550964355, + 0.055758897215127945, + 0.06821383535861969, + -0.003863194026052952, + 0.0319463312625885, + -0.07886888086795807, + 0.00757218012586236, + -0.032158516347408295, + -0.03827979043126106, + 0.02987731620669365, + 0.030064858496189117, + 0.028717752546072006, + 0.005721742752939463, + 0.012069465592503548, + -0.031372904777526855, + -0.01818636618554592, + -0.026306118816137314, + 0.04296014830470085, + -0.08884772658348083, + -0.012731865979731083, + 0.029388470575213432, + -0.051848482340574265, + -0.08825401961803436, + -2.347539360408881e-33, + -0.060613203793764114, + 0.02847249060869217, + -0.0739462599158287, + -0.020062580704689026, + -0.062240120023489, + 0.03356782719492912, + 0.027909502387046814, + -0.048176348209381104, + 0.03588426113128662, + 0.00862034410238266, + 0.048672035336494446, + 0.013908876106142998, + -0.09719181060791016, + -0.06549282371997833, + -0.09212732315063477, + -0.03116060048341751, + -0.050696488469839096, + 0.021943330764770508, + -0.033250197768211365, + 0.0021195183508098125, + -0.07334719598293304, + 0.05067017301917076, + -0.032028619199991226, + -0.005465972237288952, + 0.008703880943357944, + 0.023741699755191803, + -0.008137905970215797, + 0.003701238427311182, + 0.0128431161865592, + -0.02099517360329628, + -0.011864340864121914, + -0.05316096544265747, + 0.07770562916994095, + -2.4585856408521067e-06, + -0.08113443851470947, + 0.013442953117191792, + 0.10537058115005493, + -0.024063920602202415, + 0.036440011113882065, + -0.08348190784454346, + -0.009000075049698353, + -0.08310211449861526, + 0.12042456865310669, + 0.04897446185350418, + 0.02892204001545906, + -0.03543350100517273, + -0.022240638732910156, + -0.044019486755132675, + -0.025583989918231964, + 0.07291169464588165, + 0.00965611170977354, + -0.028867008164525032, + -0.04531754180788994, + 0.05580045282840729, + -0.040132783353328705, + -0.0033212907146662474, + -0.004946039989590645, + 0.01620587334036827, + -0.0208234004676342, + 0.10630033910274506, + -0.05386197566986084, + 0.0649871677160263, + 0.01935638301074505, + 0.05626280605792999, + -0.0766800194978714, + -0.03244173526763916, + 0.018311306834220886, + -0.0026944875717163086, + 0.02187439426779747, + -0.03201957046985626, + 0.058077000081539154, + 0.023173565044999123, + 0.02286507934331894, + 0.02519635669887066, + -0.03411570191383362, + -0.05059915408492088, + 0.051382411271333694, + 0.05205776169896126, + 0.009960265830159187, + 0.03472677618265152, + 0.07103566080331802, + 0.003207363421097398, + -0.007372328545898199, + -0.02448120526969433, + -0.1395430564880371, + 0.042719513177871704, + 0.08389992266893387, + 0.023476364091038704, + -0.035475004464387894, + -0.06668025255203247, + -0.0905069038271904, + 0.050606563687324524, + -0.0668824166059494, + -0.035429034382104874, + -0.014107166789472103, + -3.538935544611377e-08, + -0.021167758852243423, + -0.008456382900476456, + -0.03600728139281273, + -0.057620059698820114, + 0.0453462153673172, + -0.039248161017894745, + 0.020874617621302605, + -0.0850251242518425, + -0.06007407233119011, + -0.019537698477506638, + 0.010297377593815327, + 0.08632243424654007, + -0.09879575669765472, + -0.08779583126306534, + -0.007308643311262131, + 0.04136816784739494, + 0.04061213880777359, + -0.02008395828306675, + -0.019085116684436798, + -0.06465619057416916, + -0.003250874113291502, + 0.00748018454760313, + 0.07462963461875916, + 0.007018508855253458, + 0.034665752202272415, + 0.042128272354602814, + -0.051746122539043427, + 0.016599932685494423, + 0.05770573765039444, + 0.0108518460765481, + 0.08348333090543747, + 0.044110339134931564, + 0.008914466947317123, + 0.016115183010697365, + -0.05896935611963272, + -0.035449087619781494, + 0.025828320533037186, + 0.04220593720674515, + 0.015534760430455208, + 0.07814271748065948, + -0.10499568283557892, + -0.0390331968665123, + 0.01504499837756157, + -0.02575085684657097, + 0.023667143657803535, + 0.0199697595089674, + -0.0034200306981801987, + -0.03755943104624748, + -0.08374710381031036, + -0.1293163001537323, + -0.0052152471616864204, + 0.028621384873986244, + -0.001276640803553164, + 0.03428173437714577, + -0.03851860761642456, + -0.0575733557343483, + -0.02286568284034729, + 0.020148130133748055, + -0.0076286098919808865, + 0.01166710164397955, + 0.0836465135216713, + -0.04309552535414696, + 0.034188412129879, + -0.02004644274711609 + ], + "matrix-logo-bold||*new*,matrix protocol,brands,logos": [ + 0.026915518566966057, + 0.03123064525425434, + -0.12051042169332504, + -0.042668767273426056, + 0.04679633677005768, + -0.032606348395347595, + 0.02436736598610878, + -0.10818369686603546, + 0.008786196820437908, + 0.010794289410114288, + 0.05293106287717819, + 0.06463196128606796, + 0.06657814979553223, + -0.005006373394280672, + 0.05080542713403702, + 0.030139276757836342, + 0.027985021471977234, + 0.03336744382977486, + 0.045872434973716736, + 0.04093834385275841, + 0.01204603724181652, + -0.078352190554142, + -0.015413045883178711, + -0.02405816689133644, + -0.053865183144807816, + 0.06149887666106224, + 0.09998742491006851, + 0.009287073276937008, + -0.006255059503018856, + -0.07229359447956085, + -0.02887694537639618, + 0.06576041877269745, + 0.07185036689043045, + 0.013189749792218208, + 0.0137018458917737, + 0.043541207909584045, + 0.06155829131603241, + 0.003022169228643179, + 0.028077105060219765, + 0.04558509588241577, + 0.07458648085594177, + -0.02552328258752823, + -0.025047622621059418, + 0.053883299231529236, + 0.01928674802184105, + -0.007245661225169897, + -0.034608740359544754, + -0.0009801103733479977, + 0.01671704277396202, + 0.01322941668331623, + -0.03477505221962929, + -0.07862046360969543, + -0.05369982123374939, + -0.09096258133649826, + -0.026389311999082565, + -0.10585657507181168, + -0.0638483315706253, + -0.031381744891405106, + 0.03547262027859688, + -0.030171941965818405, + 0.04909544065594673, + -0.03781714662909508, + -0.00267639453522861, + 0.06392575055360794, + 0.09738441556692123, + -0.046461321413517, + -0.05767889693379402, + 0.02633286826312542, + -0.08128409832715988, + 0.05021629482507706, + -0.02969953417778015, + -0.026926511898636818, + -0.00837945006787777, + 0.007986084558069706, + -0.06949096918106079, + 0.030491769313812256, + 0.07794370502233505, + -0.012127592228353024, + 0.021874213591217995, + -0.024135040119290352, + -0.01888749748468399, + -0.01521241944283247, + -0.03947595879435539, + 0.03276723250746727, + 0.036993518471717834, + 0.05517473444342613, + -0.06160517409443855, + 0.022343063727021217, + -0.026242295280098915, + -0.030439062044024467, + -0.08523533493280411, + 0.006303000263869762, + -0.008156667463481426, + -0.011467080563306808, + -0.08432793617248535, + -0.013628018088638783, + -0.009699610061943531, + -0.017829760909080505, + -0.04859323427081108, + 0.10656478255987167, + -0.010843167081475258, + 0.019368793815374374, + 0.029335172846913338, + 0.023900482803583145, + -0.02152164652943611, + 0.04342145100235939, + 0.0011751169804483652, + 0.030186470597982407, + 0.04351504147052765, + 0.07104026526212692, + -0.010239573195576668, + 0.004695447161793709, + -0.11477784067392349, + -0.03275366872549057, + -0.06780470907688141, + 0.012877206318080425, + -0.037587154656648636, + -0.0038882873486727476, + 0.14974933862686157, + -0.0010184475686401129, + -0.0076077040284872055, + -0.05064869672060013, + 0.03344731777906418, + -0.07064512372016907, + -0.0016890306724235415, + 0.02759101800620556, + -0.08548387140035629, + -2.28366318105619e-33, + -0.0544549934566021, + 0.10778173059225082, + 0.01956120692193508, + 0.09648189693689346, + 0.003433947218582034, + 0.015042933635413647, + -0.01085926778614521, + -0.12497486174106598, + -0.048222336918115616, + -0.0007146502030082047, + 0.05805147811770439, + 0.11018561571836472, + -0.023484691977500916, + 0.09923160821199417, + -0.003884584177285433, + -0.047403547912836075, + 0.036236006766557693, + -0.05190739780664444, + -0.08179762959480286, + -0.09734015166759491, + -0.038487788289785385, + 0.050646208226680756, + -0.03525826707482338, + -0.004151986446231604, + -0.006640756502747536, + -0.05620775371789932, + 0.039376694709062576, + -0.02433447539806366, + 0.027255604043602943, + 0.017292113974690437, + 0.06048228219151497, + 0.029478739947080612, + 0.025423238053917885, + 0.026417933404445648, + -0.019615383818745613, + 0.02304765023291111, + -0.01976761780679226, + -0.06286560744047165, + 0.0861072763800621, + -0.04140248894691467, + -0.040744002908468246, + -0.03281490504741669, + -0.013737037777900696, + -0.009113016538321972, + -0.06072438135743141, + 0.1195550262928009, + -0.07366885244846344, + -0.06399042904376984, + 0.024399733170866966, + -0.02839500829577446, + -0.003454903606325388, + -0.03319186717271805, + -0.022357024252414703, + -0.047228895127773285, + -0.03993416577577591, + -0.11480292677879333, + -0.028558047488331795, + 0.030724093317985535, + 0.05721048265695572, + 0.0015160655602812767, + -0.0007716743275523186, + -0.020020872354507446, + 0.023192398250102997, + -0.0035886296536773443, + -0.015881365165114403, + 0.08670135587453842, + 0.016891300678253174, + 0.018726106733083725, + 0.024341579526662827, + 0.03317958489060402, + 0.049062035977840424, + 0.03778701648116112, + 0.06057184189558029, + -0.00833161361515522, + -0.06683505326509476, + -0.0048471796326339245, + 0.0071235778741538525, + 0.0740511491894722, + 0.011578069068491459, + 0.02764047123491764, + -0.05152881518006325, + 0.023906834423542023, + -0.05428425967693329, + 0.059323810040950775, + -0.02078566886484623, + 0.008262690156698227, + 0.006358083337545395, + -0.06193871051073074, + -0.01216446328908205, + 0.05953188240528107, + -0.05704069510102272, + -0.00886963028460741, + 0.012469669803977013, + 0.038595229387283325, + -0.056719958782196045, + 2.2055210461415765e-34, + 0.037249721586704254, + 0.01944601908326149, + 0.06826243549585342, + 0.0059174601919949055, + -0.02149730548262596, + -0.08763675391674042, + 0.05253916233778, + 0.054475732147693634, + -0.05917217582464218, + 0.009588788263499737, + 0.1284116953611374, + -0.002812402555719018, + -0.11586842685937881, + -0.010636711493134499, + 0.02458847500383854, + 6.089611633797176e-05, + 0.013092528097331524, + 0.020177705213427544, + -0.04953310266137123, + -0.07132025063037872, + -0.012136628851294518, + 0.03341839835047722, + -0.02772623673081398, + 0.040275439620018005, + -0.03267432749271393, + 0.019605152308940887, + 0.049182165414094925, + 0.02925032004714012, + -0.034959178417921066, + -0.03264505788683891, + -0.08175259828567505, + -0.042378250509500504, + 0.025096561759710312, + 0.11919219046831131, + 0.046253155916929245, + 0.09970374405384064, + -0.016872968524694443, + -0.004195780027657747, + 0.01385172177106142, + 0.012720853090286255, + -0.054170068353414536, + -0.047940850257873535, + -0.07605410367250443, + 0.06615327298641205, + -0.009114409796893597, + -0.05691760033369064, + -0.016669612377882004, + -0.05254707485437393, + -0.012323291972279549, + 0.001403069938533008, + 0.022943684831261635, + -0.014405271969735622, + 0.028471728786826134, + 0.033191338181495667, + -0.11788962036371231, + 0.0072453198954463005, + 0.023865200579166412, + 0.07616253197193146, + 0.00495830737054348, + 0.08496913313865662, + 0.007903767749667168, + -0.029569774866104126, + -0.0911671444773674, + -0.02909059077501297, + 0.015238994732499123, + -0.05526633560657501, + -0.008430751971900463, + -0.021190378814935684, + 0.012678563594818115, + 0.09007880836725235, + -0.001599702751263976, + 0.019374031573534012, + -0.03126109391450882, + 0.030130628496408463, + 0.03294336050748825, + -0.07261664420366287, + 0.009532236494123936, + 0.0010133740724995732, + -0.036508187651634216, + 0.05295107886195183, + -0.05351946875452995, + 0.04033290967345238, + -0.053543608635663986, + 0.14960364997386932, + 0.05409323424100876, + 0.09520777314901352, + 0.0135421147570014, + -0.012810258194804192, + -0.025056909769773483, + -0.0342729352414608, + -0.0001982222602237016, + 0.030193010345101357, + 0.061473436653614044, + 0.06240164488554001, + -0.09881801158189774, + -1.882984612677774e-08, + -0.10386893153190613, + -0.03542998060584068, + 0.05648401752114296, + -0.05347757041454315, + 0.03228772431612015, + 0.0018479762366041541, + -0.039633940905332565, + -0.13328634202480316, + 0.033408720046281815, + 0.008079844526946545, + -0.022517211735248566, + -8.481503027724102e-05, + -0.0759931281208992, + -0.005789283663034439, + -0.036328595131635666, + -0.012598685920238495, + -0.07405878603458405, + 0.048872873187065125, + 0.006470854394137859, + -0.06543158739805222, + -0.06752213090658188, + 0.08671518415212631, + 0.03864733502268791, + 0.05761341378092766, + -0.03852102532982826, + -0.008669150993227959, + -0.021992025896906853, + -0.0025573885068297386, + 0.07822319120168686, + 0.08810009062290192, + -0.01685292087495327, + 0.01725086010992527, + 0.0944635346531868, + 0.01433122344315052, + -0.08846330642700195, + -0.008604543283581734, + -0.005410211626440287, + 0.0058466908521950245, + -0.025883039459586143, + -0.013389866799116135, + 0.010580331087112427, + -0.031849171966314316, + -0.006205703131854534, + -0.02121993526816368, + 0.00800433848053217, + 0.057449594140052795, + -0.0009901021840050817, + 0.021926399320364, + -0.06192312017083168, + -0.05861026048660278, + 0.031340550631284714, + 0.024119874462485313, + -0.03107394278049469, + 0.0285347793251276, + -0.04056666046380997, + -0.1494586169719696, + -0.03337851166725159, + 0.07839088141918182, + 0.10404141992330551, + 0.06664403527975082, + 0.12478625029325485, + -0.05902513489127159, + 0.01863393373787403, + -0.011229109950363636 + ], + "medal-bold||ribbons,winning,victory,awards,rosette": [ + -0.03997793793678284, + 0.07908490300178528, + 0.008563564158976078, + -0.030985070392489433, + -0.03505134582519531, + 0.10872874408960342, + 0.08566951006650925, + -0.030847178772091866, + -0.027356071397662163, + -0.01576736383140087, + -0.09518515318632126, + -0.02104148641228676, + 0.00597020098939538, + -0.009755526669323444, + -0.09630680084228516, + 0.0888080894947052, + 0.022355742752552032, + 0.06807983666658401, + -0.0014312057755887508, + -0.030848389491438866, + 0.08155782520771027, + -0.019483378157019615, + 0.001325412536971271, + 0.08567427843809128, + -0.011381765827536583, + 0.00823607575148344, + -0.09140748530626297, + 0.034537423402071, + -0.03855679929256439, + -0.035880379378795624, + -0.045516274869441986, + -0.09274840354919434, + 0.020094500854611397, + 0.06510297954082489, + -0.04881857708096504, + 0.04645264893770218, + 0.019730769097805023, + -0.011155030690133572, + -0.001344276242889464, + 0.07150208204984665, + 0.002440262585878372, + -0.07709722965955734, + 0.01050034910440445, + 0.05731913447380066, + 0.09091175347566605, + -0.013339001685380936, + -0.038934122771024704, + -0.026276983320713043, + -0.047834306955337524, + 0.02073514275252819, + -0.016420474275946617, + -0.023819642141461372, + -0.04428495094180107, + -0.06403661519289017, + 0.0332145169377327, + 0.019092220813035965, + 0.021654870361089706, + -0.06059187650680542, + 0.008416326716542244, + -0.029426103457808495, + 0.027321171015501022, + -0.022646913304924965, + -0.03321712464094162, + 0.0800580382347107, + -0.06553490459918976, + -0.061010826379060745, + 0.013548728078603745, + 0.12707547843456268, + 0.0018983245827257633, + 0.017594939097762108, + 0.09723300486803055, + 0.013964036479592323, + 0.005190851166844368, + -0.08628847450017929, + 0.014865837059915066, + -0.003682143287733197, + 0.03572080284357071, + 0.054076116532087326, + 0.012976710684597492, + 0.03689447417855263, + -0.06071306765079498, + -0.03838298097252846, + 0.044659730046987534, + 0.016856180503964424, + 0.09162666648626328, + 0.023554660379886627, + -0.04514603689312935, + -0.06883101910352707, + -0.015156879089772701, + -0.03912070393562317, + -0.07830338180065155, + 0.009929136373102665, + 0.054482705891132355, + 0.04311651363968849, + -0.055159397423267365, + -0.008100496605038643, + 0.0068666147999465466, + -0.03557034581899643, + -0.029355492442846298, + 0.09203323721885681, + 0.04127439484000206, + 0.04832864925265312, + -0.02067270316183567, + 0.03167284280061722, + 0.0504101887345314, + 0.0003347950696479529, + -0.04056335985660553, + -0.026839107275009155, + 0.005886388942599297, + 0.005860855337232351, + 0.060565926134586334, + -0.03810456395149231, + 0.035394612699747086, + 0.010392848402261734, + -0.05591244623064995, + 0.03988022357225418, + -0.10145771503448486, + -0.02806517668068409, + 0.04935472458600998, + 0.03730584681034088, + 0.002047168090939522, + -0.05736371874809265, + 0.011756140738725662, + -0.08772642910480499, + -0.04260836914181709, + -0.015308081172406673, + 0.05247143283486366, + -2.5379676085321683e-33, + 0.05123816430568695, + 0.005306050181388855, + 0.055321477353572845, + 0.08408554643392563, + -0.0287008136510849, + -0.01482335850596428, + -0.004063109867274761, + -0.05533025786280632, + -0.094436414539814, + -0.028778759762644768, + -0.07036089897155762, + 0.13299977779388428, + 0.0033797314390540123, + 0.018055586144328117, + 0.0048243580386042595, + -0.052310798317193985, + -0.03565133363008499, + -0.05549372360110283, + -0.04498768597841263, + 0.0010351118398830295, + -0.003670761128887534, + 0.04451512172818184, + -0.019343983381986618, + -0.004378385376185179, + 0.004177797120064497, + -0.03575753793120384, + 0.004228069446980953, + -0.01967703178524971, + -0.05386237055063248, + 0.05260626599192619, + 0.057777341455221176, + -0.06854891031980515, + 0.09318233281373978, + 0.0030057437252253294, + -0.07403108477592468, + 0.013167742639780045, + -0.057822853326797485, + -0.04251930117607117, + 0.09584170579910278, + 0.046881306916475296, + -0.007219056598842144, + -0.021950842812657356, + -0.021391095593571663, + 0.02231631986796856, + -0.010930320248007774, + 0.07808031141757965, + 0.04098377376794815, + -0.002381520112976432, + 0.08937440812587738, + 0.03827792778611183, + -0.006083162035793066, + -0.048942677676677704, + 0.03384916111826897, + -0.0008231321116909385, + -0.013735465705394745, + 0.037044402211904526, + -0.016887478530406952, + 0.10243743658065796, + -0.03834005445241928, + -0.07415661215782166, + -0.017935484647750854, + -0.010157456621527672, + 0.06619448214769363, + -0.016129637137055397, + -0.036028534173965454, + 0.061415642499923706, + -0.0018864092417061329, + 0.017744045704603195, + 0.07537452131509781, + -0.02287941798567772, + -0.019061380997300148, + 0.07576693594455719, + 0.008398642763495445, + -0.07955595850944519, + 0.027190694585442543, + 0.02912369929254055, + 0.03824147582054138, + -0.014777441509068012, + 0.017485203221440315, + -0.07207431644201279, + -0.09639868140220642, + 0.009648890234529972, + -0.04946698993444443, + 0.024329813197255135, + 0.07903507351875305, + 0.042293958365917206, + 0.012499972246587276, + -0.06631714850664139, + -0.05976763740181923, + 0.08347338438034058, + 0.012441303580999374, + -0.008508829399943352, + 0.076936274766922, + -0.06284897774457932, + -0.10612965375185013, + 2.0586831132004047e-33, + 0.028788281604647636, + 0.0490541011095047, + 0.019563017413020134, + -0.01711021177470684, + 0.07347018271684647, + 0.040005769580602646, + -0.011735813692212105, + 0.07015253603458405, + -0.06229202821850777, + 0.05937981978058815, + 0.04862534627318382, + -0.013691888190805912, + -0.001893225242383778, + -0.04554225131869316, + -0.050250884145498276, + -0.006261003203690052, + 0.0239020437002182, + 0.07415689527988434, + -0.037753671407699585, + 0.00013422234042081982, + 0.04054775834083557, + 0.0422019436955452, + -0.049890950322151184, + -0.03855203092098236, + -0.07432053238153458, + 0.045917779207229614, + 0.018877657130360603, + -0.09200552105903625, + 0.029433291405439377, + -0.06870903074741364, + 0.06732229888439178, + -0.036734409630298615, + -0.08897197991609573, + 0.03937321528792381, + -0.019213562831282616, + 0.0689624473452568, + 0.06477087736129761, + -0.09698938578367233, + 0.05425174906849861, + 0.037719547748565674, + -0.013819999061524868, + -0.05810966342687607, + -0.013825220055878162, + 0.13462825119495392, + 0.049019888043403625, + -0.044398196041584015, + -0.13517896831035614, + -0.0017395917093381286, + -0.018901793286204338, + 0.021473174914717674, + -0.10519403964281082, + -0.04885599762201309, + 0.0009627561667002738, + 0.07978425920009613, + -0.06904972344636917, + -0.013801070861518383, + -0.012048414908349514, + -0.04231290891766548, + -0.06377557665109634, + 0.08722802251577377, + -0.07643295079469681, + 0.010170352645218372, + -0.06322740763425827, + 0.08467824757099152, + 0.0597466416656971, + -0.05896312743425369, + 0.01096890214830637, + 0.02484012395143509, + -0.11415800452232361, + 0.06016958877444267, + 0.03822406381368637, + 0.09695425629615784, + -0.006333145312964916, + 0.0036336472257971764, + 0.033806461840867996, + -0.005311962682753801, + -0.04054559767246246, + 0.09485664963722229, + -0.024177754297852516, + 0.035569120198488235, + -0.0895330011844635, + 0.011008098721504211, + -0.0021564820781350136, + 0.026231639087200165, + -0.032789986580610275, + -0.0386616587638855, + 0.11247238516807556, + -0.02732287347316742, + 0.03850666806101799, + 0.024082178249955177, + 0.03551892936229706, + 0.0009554016287438571, + 0.08631899952888489, + -0.06534183770418167, + 0.05037510022521019, + -1.825204343219866e-08, + 0.02656962163746357, + 0.05611831322312355, + -0.09794743359088898, + -0.05247120559215546, + -0.06444045156240463, + 0.05798405036330223, + -0.06985943019390106, + -0.03826116770505905, + -0.06849361211061478, + -0.008042510598897934, + 0.09637176990509033, + 0.05827763304114342, + -0.0873304232954979, + -0.0858830139040947, + 0.003425848437473178, + -0.04987591877579689, + -0.042897939682006836, + 0.010959501378238201, + -0.01952255144715309, + -0.07338424026966095, + 0.07782018184661865, + 0.003977019339799881, + 0.0460720956325531, + -0.04416598752140999, + -0.05757744237780571, + 0.014235714450478554, + -0.05209335684776306, + -0.013521679677069187, + -0.043036989867687225, + 0.027616528794169426, + 0.019132541492581367, + 0.03009374998509884, + 0.023385224863886833, + 0.02330203913152218, + -0.035082872956991196, + 0.01866317167878151, + 0.005151714198291302, + -0.03659219667315483, + 0.02315148338675499, + 0.04557519406080246, + 0.006455549970269203, + -0.042792800813913345, + 0.012294045649468899, + 0.013079938478767872, + -0.015698103234171867, + 0.03865194693207741, + 0.060406770557165146, + -0.017067335546016693, + 0.010158108547329903, + -0.04573943465948105, + -0.004331518430262804, + -0.06032277271151543, + -0.06693752110004425, + -0.0022056472953408957, + -0.07044873386621475, + 0.014430343173444271, + 0.056840721517801285, + 0.04912581294775009, + 0.03651900589466095, + 0.04533783346414566, + 0.089775949716568, + -0.05863569676876068, + 0.0042121512815356255, + 0.051455650478601456 + ], + "medal-military-bold||ribbons,winning,victory,awards,military": [ + -0.06255750358104706, + 0.06835993379354477, + 0.011098066344857216, + -0.013902224600315094, + -0.04934772849082947, + 0.07667435705661774, + 0.08137660473585129, + -0.04754604026675224, + -0.050363291054964066, + 0.023393677547574043, + -0.03280841186642647, + -0.012706845998764038, + 0.05513594672083855, + 0.026357179507613182, + -0.07959660142660141, + 0.07119210064411163, + 0.028725428506731987, + 0.026091700419783592, + 0.005491804797202349, + -0.018294241279363632, + 0.059237606823444366, + 0.02788323163986206, + 0.02996428683400154, + 0.09996365755796432, + -0.017741762101650238, + 0.029277123510837555, + -0.07681416720151901, + 0.01651609130203724, + -0.06697738170623779, + -0.017340926453471184, + -0.06397996842861176, + -0.09662841260433197, + 0.018174970522522926, + 0.06227000057697296, + 0.0008081988780759275, + 0.04691319540143013, + 0.020792368799448013, + 0.01218157634139061, + 0.0012778983218595386, + 0.08706651628017426, + -0.04182549938559532, + -0.08977624773979187, + 0.06294334679841995, + 0.05086340010166168, + 0.07931321859359741, + -0.009913153015077114, + -0.039056446403265, + -0.06708293408155441, + 0.004319049417972565, + 0.06890200823545456, + 0.011580479331314564, + -0.04394946247339249, + -0.04354212433099747, + -0.02914617769420147, + 0.04067368432879448, + 0.0117690060287714, + -0.005664355121552944, + -0.06754861027002335, + -0.0007151680765673518, + 0.004737383686006069, + -0.027331829071044922, + 0.015561390668153763, + -0.032093968242406845, + 0.06525207310914993, + -0.044101689010858536, + -0.05249863490462303, + 0.03327953442931175, + 0.09750469028949738, + -0.012068299576640129, + 0.01065331231802702, + 0.09037506580352783, + 0.030356915667653084, + 0.013770891353487968, + -0.03761986270546913, + -0.01349053718149662, + 0.0243733711540699, + 0.034153055399656296, + 0.056412432342767715, + 0.011157593689858913, + -0.02046046033501625, + -0.01039065606892109, + -0.03818638250231743, + 0.005845017731189728, + 0.014002891257405281, + 0.053360771387815475, + 0.01686747744679451, + -0.049901608377695084, + -0.06645743548870087, + 0.011659771203994751, + 0.010324394330382347, + -0.041448913514614105, + -0.021500611677765846, + 0.06034402549266815, + 0.027293266728520393, + -0.04146173223853111, + 0.025648197159171104, + 0.010432325303554535, + -0.01714419573545456, + -0.054978303611278534, + 0.08325736969709396, + 0.04017969220876694, + 0.0287362989038229, + -0.008688898757100105, + 0.020593464374542236, + 0.04297367483377457, + 0.011998777277767658, + -0.04074918478727341, + -0.0041862535290420055, + -0.026820378378033638, + -0.022266721352934837, + 0.06572403013706207, + -0.01741916500031948, + -0.024097299203276634, + -0.012303508818149567, + -0.07512357085943222, + 0.0715380609035492, + -0.12617425620555878, + -0.04099886119365692, + 0.07845640182495117, + 0.07582233846187592, + -0.0015864070737734437, + -0.0627346858382225, + -0.01738874800503254, + -0.06617475301027298, + -0.039739757776260376, + 0.027125917375087738, + 0.04691733047366142, + -4.163815885673552e-33, + 0.0367840901017189, + -0.02640395797789097, + 0.04329291358590126, + 0.08652826398611069, + -0.06384918838739395, + -0.009414823725819588, + -0.008776114322245121, + -0.07654045522212982, + -0.09498918801546097, + -0.00524798221886158, + -0.08782309293746948, + 0.1422361433506012, + 0.0006433319649659097, + 0.047707755118608475, + 0.029792189598083496, + -0.054257169365882874, + -0.07494673877954483, + -0.03801750764250755, + -0.005920426920056343, + 0.020898982882499695, + 0.004633150529116392, + 0.0643983781337738, + -0.03688201680779457, + -0.013209742493927479, + 0.06428460031747818, + -0.0466851145029068, + -0.021737700328230858, + 0.02887118048965931, + -0.06222072243690491, + 0.04366834834218025, + 0.05522464960813522, + -0.02147660031914711, + 0.08231239765882492, + -0.07183856517076492, + -0.041186753660440445, + -0.02070416696369648, + -0.03356442600488663, + -0.06699841469526291, + 0.021973425522446632, + 0.01976931467652321, + 0.00031852087704464793, + -0.02737335115671158, + -0.08472304046154022, + 0.056399084627628326, + 0.014346431009471416, + 0.07402306795120239, + 0.034613050520420074, + -0.024197405204176903, + 0.05490565299987793, + 0.01350947842001915, + 0.011040918529033661, + -0.006397391203790903, + -0.015857916325330734, + -0.04334639385342598, + 0.0020301244221627712, + 0.03261870518326759, + -0.009648577310144901, + 0.08732179552316666, + -0.055600181221961975, + -0.0753762274980545, + -0.01598200760781765, + -0.010864906944334507, + 0.06162091717123985, + -0.015460879541933537, + -0.022603316232562065, + 0.018608752638101578, + -0.014735832810401917, + 0.029919704422354698, + 0.05034337937831879, + -0.04028841480612755, + -0.03885809704661369, + 0.04095280170440674, + 0.031644586473703384, + -0.08418802171945572, + 0.03478950634598732, + 0.02252180501818657, + 0.0321173369884491, + -0.03237826004624367, + -0.005422208923846483, + -0.07431783527135849, + -0.14396794140338898, + 0.02755407802760601, + -0.024492181837558746, + 0.07050436735153198, + 0.08610125631093979, + 0.06068621575832367, + 0.027251480147242546, + -0.12690392136573792, + -0.05423751473426819, + 0.025467373430728912, + -0.029034288600087166, + -0.002328817965462804, + 0.05573827400803566, + -0.021237842738628387, + -0.11694476008415222, + 2.1752741530447286e-33, + 0.05165370926260948, + 0.04904300346970558, + 0.03529605269432068, + -0.012017043307423592, + 0.04740328714251518, + 0.030446786433458328, + 0.00866884458810091, + 0.06065697595477104, + -0.0863400399684906, + 0.07935594767332077, + 0.06121407076716423, + 0.01984560675919056, + -0.025530213490128517, + -0.038419209420681, + -0.00023702149337623268, + -0.016331279650330544, + 0.00430176081135869, + 0.09034284204244614, + -0.021993448957800865, + 0.025450915098190308, + 0.09425831586122513, + 0.03955445438623428, + 0.011942666955292225, + -0.04395277053117752, + -0.025183776393532753, + 0.03836902976036072, + -0.006976617965847254, + -0.053037263453006744, + 0.024358035996556282, + -0.06148454546928406, + 0.0837608203291893, + -0.06039516627788544, + -0.043094050139188766, + 0.062496259808540344, + -0.002944716950878501, + 0.055210623890161514, + 0.02969248592853546, + -0.0971427857875824, + 0.041200190782547, + 0.03418814018368721, + -0.032080359756946564, + -0.019982807338237762, + -0.025172274559736252, + 0.10791446268558502, + -0.01842254400253296, + -0.07533387839794159, + -0.11469203978776932, + -0.02015802450478077, + -0.04923105984926224, + -0.010716664604842663, + -0.10542134195566177, + -0.05134313181042671, + -0.0069457958452403545, + 0.05703854560852051, + -0.05982908606529236, + 0.016287263482809067, + -0.0685858502984047, + -0.029780825600028038, + -0.060935866087675095, + 0.11175058037042618, + -0.0366617850959301, + 0.006104267202317715, + -0.04580940678715706, + 0.07098767906427383, + 0.011216025799512863, + -0.07217997312545776, + 0.05674922466278076, + 0.054685987532138824, + -0.10775772482156754, + 0.07026471197605133, + 0.038988713175058365, + 0.05415993183851242, + -0.01343526691198349, + 0.016560710966587067, + 0.04476794973015785, + -0.020617371425032616, + -0.013860601931810379, + 0.06782428920269012, + -0.03131167218089104, + 0.03267480432987213, + -0.05000381916761398, + -0.005566655192524195, + -0.04428249970078468, + 0.034404389560222626, + -0.04503236711025238, + -0.0249222069978714, + 0.1050734594464302, + 0.007487788796424866, + 0.03499792143702507, + 0.04110414907336235, + 0.006256959401071072, + -0.03765816241502762, + 0.09430307894945145, + -0.049006152898073196, + 0.04230506718158722, + -1.8625756936785365e-08, + 0.0016597247449681163, + 0.09796667844057083, + -0.09369126707315445, + 0.006367967929691076, + -0.0623139813542366, + 0.003904510522261262, + -0.09929987788200378, + -0.07416374236345291, + -0.04863879829645157, + -0.027465831488370895, + 0.08094723522663116, + 0.02919687144458294, + -0.14448821544647217, + -0.053482718765735626, + -0.020523175597190857, + -0.04252136871218681, + -0.09728377312421799, + 0.008518588729202747, + -0.028109995648264885, + -0.08366219699382782, + 0.03201558068394661, + -0.018687143921852112, + 0.02219134382903576, + -0.02845400758087635, + -0.0810232162475586, + 0.05200284719467163, + -0.036852285265922546, + 0.011212046258151531, + 0.011570222675800323, + 0.08897648006677628, + 0.017489051446318626, + 0.017680970951914787, + 0.0033832204062491655, + 0.005971595179289579, + -0.00879047904163599, + 0.012225945480167866, + -0.001060645328834653, + -0.08005490899085999, + 0.008608064614236355, + 0.0407569482922554, + 0.009600023739039898, + -0.028962653130292892, + 0.053673043847084045, + 0.01105260755866766, + -0.002213012892752886, + 0.07748208940029144, + 0.05804399773478508, + -0.012835211120545864, + -0.04488188400864601, + -0.04097192361950874, + 0.05621114373207092, + -0.052155401557683945, + -0.08677399903535843, + 0.06452954560518265, + -0.0826834961771965, + 0.036548830568790436, + 0.08291582018136978, + 0.051333341747522354, + 0.024596668779850006, + 0.04212512820959091, + 0.05703657120466232, + -0.07615520060062408, + -0.021699657663702965, + 0.038795966655015945 + ], + "medium-logo-bold||logos,reading,writing,news,social media": [ + 0.08278597146272659, + -0.024502547457814217, + -0.027240779250860214, + 0.0072288899682462215, + 0.10759594291448593, + -0.01516092661768198, + 0.05631306394934654, + -0.01675550453364849, + 0.04625992104411125, + 0.010715426877140999, + 0.013370811007916927, + 0.0779159665107727, + 0.04364447295665741, + -0.011946670711040497, + 0.023015661165118217, + -0.02154764160513878, + 0.01763453520834446, + 0.005805740598589182, + 0.03617582470178604, + -0.04160047322511673, + 0.0026888842694461346, + 0.016901176422834396, + 0.03769392520189285, + 0.020476043224334717, + 0.015583045780658722, + -0.0033477190881967545, + -0.022173810750246048, + -0.045987069606781006, + 0.00044162815902382135, + -0.10057991743087769, + -0.05341805890202522, + 0.026781637221574783, + 0.08658098429441452, + 0.022540008649230003, + -0.008959216065704823, + 7.055834430502728e-05, + 0.022166742011904716, + 0.005136278923600912, + 0.019331928342580795, + 0.04140368849039078, + 0.02475997619330883, + -0.10377577692270279, + 0.014058074913918972, + 0.043451063334941864, + -0.013787358067929745, + 0.010100807063281536, + -0.07528311014175415, + 0.06674904376268387, + -0.03469597548246384, + 0.010264690034091473, + -0.034926336258649826, + -0.12325946986675262, + -0.09712646156549454, + -0.0247245654463768, + 0.006230984348803759, + -0.06318774819374084, + -0.0657835379242897, + 0.008389427326619625, + 0.05207322537899017, + -0.02895786613225937, + 0.011558877304196358, + -0.0036041950806975365, + -0.013613597489893436, + 0.0855160728096962, + 0.11324521154165268, + 0.001841475605033338, + -0.02016439475119114, + 0.06709499657154083, + -0.06487487256526947, + 0.01246059499680996, + 0.06364017724990845, + 0.024919167160987854, + -0.014610988087952137, + 0.0009611744899302721, + -0.02254011668264866, + -0.03537409380078316, + 0.07055477052927017, + -0.018436802551150322, + -0.0070327636785805225, + -0.0680251270532608, + -0.045429084450006485, + -0.010690134018659592, + -0.02729228511452675, + -0.012648298405110836, + 0.054669883102178574, + 0.04258061945438385, + -0.09167200326919556, + -0.04000360518693924, + 0.003617660142481327, + 0.022320834919810295, + -0.0968107357621193, + 0.019816530868411064, + -0.0004585121350828558, + -0.008931362070143223, + -0.07788307219743729, + 0.0007524125394411385, + -0.003195765195414424, + -0.060816261917352676, + -0.051392801105976105, + 0.09371857345104218, + -0.016215795651078224, + 0.06655283272266388, + 0.09980715066194534, + -0.027560194954276085, + 0.011893424205482006, + -0.017691509798169136, + -0.014233384281396866, + 0.016708122566342354, + 0.022377897053956985, + 0.06269478052854538, + 0.007176726125180721, + 0.0008066517184488475, + -0.091958187520504, + -0.016468539834022522, + 0.011194725520908833, + -0.08031761646270752, + -0.007346472702920437, + -0.01679181680083275, + 0.1543920487165451, + -0.00019683274149429053, + -0.017604317516088486, + 0.03810364753007889, + -0.06977073103189468, + -0.08909187465906143, + -0.024906424805521965, + 0.0007634315406903625, + -0.01604510471224785, + -2.2320431833497525e-33, + 0.04267924651503563, + 0.10034840553998947, + -0.029185615479946136, + 0.10928419232368469, + -0.02187378704547882, + 0.06837796419858932, + -0.05020630732178688, + -0.08420553058385849, + -0.10427423566579819, + -0.002501530572772026, + 0.030664030462503433, + 0.14253738522529602, + -0.04124273732304573, + 0.12337169051170349, + 0.046675797551870346, + -0.04562152922153473, + -0.01780332624912262, + 0.007435591425746679, + -0.07374313473701477, + -0.04312453046441078, + -0.015460499562323093, + 0.04690532758831978, + -0.04595457389950752, + -0.002061103470623493, + -0.013550518080592155, + -0.08128061145544052, + 0.040327757596969604, + -0.06582129746675491, + -0.029826708137989044, + 0.017978038638830185, + 0.010425319895148277, + 0.01087616290897131, + 0.020887093618512154, + -0.0167315062135458, + -0.011667706072330475, + -0.042865604162216187, + -0.046718891710042953, + -0.049957387149333954, + 0.04206317290663719, + 0.012187839485704899, + -0.0421522818505764, + -0.022681312635540962, + -0.02783638797700405, + 0.035003773868083954, + -0.01692279428243637, + 0.16860966384410858, + -0.010046496987342834, + -0.07456084340810776, + 0.039023421704769135, + -0.033670537173748016, + 0.024629665538668633, + -0.0594380721449852, + -0.01693587936460972, + -0.052596691995859146, + 0.017831068485975266, + -0.02153613045811653, + -0.0034523899666965008, + 0.021744538098573685, + 0.029286623001098633, + -0.026850102469325066, + 0.059830017387866974, + 0.006317525170743465, + 0.06554899364709854, + 0.009601235389709473, + -0.0011404837714508176, + 0.07236965745687485, + -0.051508717238903046, + 0.024274468421936035, + 0.046856388449668884, + -0.02844187431037426, + 0.02111898921430111, + 0.0328572615981102, + 0.06590961664915085, + 0.013207422569394112, + -0.08171891421079636, + 0.035471267998218536, + 0.010400607250630856, + -0.01291270274668932, + -0.01935933344066143, + 0.08699654787778854, + -0.047442492097616196, + 0.0020248570945113897, + -0.03378476947546005, + 0.057066354900598526, + 0.03209907189011574, + 0.03311193734407425, + 0.029863553121685982, + -0.07204174995422363, + -0.0560077540576458, + 0.006780700292438269, + -0.09670597314834595, + 0.035223495215177536, + 0.05225633084774017, + -0.016286591067910194, + -0.13133306801319122, + 4.5383926706928434e-34, + -0.022923504933714867, + 0.0008076896192505956, + 0.03929600492119789, + 0.03400075435638428, + -0.030842093750834465, + -0.0013985080877318978, + 0.01099264994263649, + 0.06945379078388214, + -0.01730062998831272, + 0.016074899584054947, + 0.08006864041090012, + -0.04251943901181221, + -0.14060670137405396, + -0.02404087968170643, + -0.03086543269455433, + -0.012237200513482094, + 0.08085183799266815, + 0.021613599732518196, + -0.07601621747016907, + 0.030921664088964462, + -0.019002117216587067, + -0.05412178859114647, + -0.07606389373540878, + 0.10730831325054169, + -0.009176394902169704, + 0.017403168603777885, + 0.01869453489780426, + -0.013321478851139545, + -0.1360420435667038, + -0.02070963941514492, + -0.044573020190000534, + -0.019326141104102135, + 0.07336363196372986, + 0.06514626741409302, + -0.01889980025589466, + 0.033874593675136566, + 0.003711187979206443, + -0.057822953909635544, + -0.018940497189760208, + 0.021634744480252266, + 0.03093075193464756, + 0.013017067685723305, + 0.010786006227135658, + 0.03582722693681717, + -0.05121864750981331, + -0.007658551447093487, + -0.10314107686281204, + -0.11212614923715591, + -0.0640353187918663, + 0.10087859630584717, + 0.03172631934285164, + -0.014865570701658726, + 0.02876519225537777, + 0.015407515689730644, + -0.10046421736478806, + -0.03963553160429001, + -0.018852125853300095, + 0.02913510799407959, + 0.004796169698238373, + 0.0638604462146759, + 0.018288282677531242, + 0.010877908207476139, + -0.0831938311457634, + -0.013410312123596668, + -0.0017501628026366234, + -0.07947433739900589, + 0.027115963399410248, + -0.0322515033185482, + -0.09088292717933655, + 0.07161302864551544, + 0.061024010181427, + 0.0024307160638272762, + -0.002655562711879611, + 0.008325113914906979, + -0.04359564557671547, + -0.030368704348802567, + 0.06795891374349594, + 0.037725623697042465, + -0.06995496898889542, + 0.06866198033094406, + -0.03682519868016243, + 0.020413856953382492, + -0.08797008544206619, + 0.09558010846376419, + 0.05062869191169739, + 0.07788334041833878, + -0.029036754742264748, + -0.035725466907024384, + 0.011586672626435757, + 0.020979944616556168, + -0.007755288854241371, + 0.04948762431740761, + 0.023470254614949226, + 0.0029942563269287348, + -0.05291840434074402, + -1.8988643546435924e-08, + -0.04993617907166481, + -0.0772077664732933, + -0.0029021857772022486, + -0.015922538936138153, + 0.029232071712613106, + 0.0011487907031551003, + 0.008932109922170639, + -0.12072214484214783, + -0.013446676544845104, + -0.003032062901183963, + -0.014473849907517433, + -0.021536625921726227, + -0.08966800570487976, + -0.0011411509476602077, + 0.05151550471782684, + -0.028317134827375412, + -0.05354843661189079, + 0.0297661442309618, + 0.0017039991216734052, + -0.06082304194569588, + -0.0014699543826282024, + 0.06924731284379959, + 0.01601361483335495, + -0.011419389396905899, + 0.04323294013738632, + 0.0413084402680397, + -0.021520370617508888, + -0.035112686455249786, + 0.03684593737125397, + 0.05028583109378815, + 0.021552637219429016, + 0.07817234098911285, + -0.01974250003695488, + -0.01772807538509369, + -0.0956825390458107, + 0.0070823184214532375, + 0.03626402094960213, + -0.02246090956032276, + -0.045112721621990204, + 0.08517753332853317, + 0.07352942228317261, + -0.012957872822880745, + 0.028904296457767487, + -0.02889673039317131, + -0.0032724454067647457, + 0.028541376814246178, + 0.06832442432641983, + 0.04454030841588974, + -0.010228754952549934, + -0.07736843079328537, + -0.001338212052360177, + 0.019204167649149895, + 0.04408350959420204, + 0.03197185695171356, + -0.040700431913137436, + -0.08564076572656631, + 0.0342661589384079, + 0.1201176717877388, + 0.038766734302043915, + 0.03011428192257881, + 0.15939468145370483, + -0.05376095324754715, + -0.027643058449029922, + 0.007850156165659428 + ], + "megaphone-bold||bullhorn,announcements,loudspeaker,broadcast": [ + 0.014316459186375141, + -0.03087093122303486, + 0.06919167935848236, + -0.07276878505945206, + -0.020859245210886, + -0.003842312376946211, + 0.08027036488056183, + -0.004235806409269571, + 0.02448839694261551, + 0.006330769509077072, + -0.062272101640701294, + 0.0469224713742733, + 0.05628993362188339, + -0.05600605905056, + 0.0008234935230575502, + 0.009494451805949211, + 0.09699508547782898, + -0.05065932124853134, + 0.02793646790087223, + 0.014704303815960884, + 0.1081114336848259, + 0.10803322494029999, + -0.032124392688274384, + 0.06443316489458084, + 0.07757876068353653, + -0.014173298142850399, + -0.001273216214030981, + 0.06824702769517899, + -0.0050445254892110825, + -0.04381320998072624, + -0.012684337794780731, + 0.03478403389453888, + 0.19876332581043243, + -0.020515235140919685, + -0.029985880479216576, + -0.004998072050511837, + 0.007117225788533688, + -0.005551404785364866, + -0.040925201028585434, + 0.07813018560409546, + 0.0375773161649704, + -0.033992841839790344, + 0.02601579949259758, + -0.041963860392570496, + -0.04850449785590172, + -0.06552714109420776, + -0.07840022444725037, + -0.018929865211248398, + -0.025286151096224785, + 0.03361597657203674, + 0.011643104255199432, + -0.14010776579380035, + -0.012937947176396847, + 0.053956642746925354, + 0.019487682729959488, + 0.022321710363030434, + -0.071047343313694, + 0.037757668644189835, + 0.11267250031232834, + 0.05506373569369316, + -0.033708926290273666, + 0.06970816850662231, + -0.028054429218173027, + 0.03233493119478226, + 0.011271987110376358, + 0.0493742898106575, + -0.00022795546101406217, + 0.037826839834451675, + -0.004250082653015852, + 0.014528904110193253, + 0.03591112047433853, + 0.037515848875045776, + 0.03373095765709877, + -0.06136303022503853, + -0.03451326861977577, + 0.02595381811261177, + 0.00847688876092434, + -0.05424948036670685, + -0.024125197902321815, + -0.020874276757240295, + -0.04895874857902527, + -0.13796260952949524, + -0.0967668741941452, + -0.09659231454133987, + 0.06382299959659576, + 0.02728174440562725, + -0.05249762907624245, + 0.00259833293966949, + -0.0810808539390564, + -0.041947536170482635, + -0.1160300150513649, + -0.04155343770980835, + -0.027988960966467857, + 0.049017533659935, + -0.05727294832468033, + -0.00324441259726882, + -0.012226040475070477, + -0.08179250359535217, + -0.01856112852692604, + 0.10239355266094208, + 0.014885352924466133, + 0.002208652440458536, + 0.04142949357628822, + -0.06696812808513641, + -0.012913987040519714, + -0.0750185027718544, + -0.07392411679029465, + 0.04036913812160492, + 0.008536537177860737, + -0.011915521696209908, + -0.02976149134337902, + -0.09106263518333435, + 6.382521860359702e-06, + 0.021984484046697617, + -0.006185264326632023, + 0.004492097534239292, + -0.05927778407931328, + 0.03841078281402588, + 0.02659362182021141, + -0.029665406793355942, + 0.02686254121363163, + -0.03670920431613922, + -0.011100726202130318, + -0.0365791954100132, + -0.013313411734998226, + 0.06818082183599472, + -0.03995509073138237, + -8.336308389024111e-34, + 0.05727860704064369, + 0.04960917308926582, + -0.021683888509869576, + 0.0914018377661705, + 0.03200286626815796, + 0.002915259450674057, + -0.06721990555524826, + -0.005095047876238823, + 0.002443055622279644, + 0.04547840729355812, + 0.031600795686244965, + 0.11322122812271118, + 0.011782915331423283, + -0.041311752051115036, + 0.06093178689479828, + -0.07968340814113617, + 0.03118813969194889, + 0.008695223368704319, + -0.047073956578969955, + -0.011744081974029541, + -0.054045420140028, + 0.06032690033316612, + -0.03323785588145256, + -0.01628202386200428, + 0.09786079823970795, + -0.011291817761957645, + 0.07836666703224182, + -0.0733150914311409, + 0.005367339588701725, + 0.057385895401239395, + -0.024180686101317406, + -0.020514411851763725, + 0.059733398258686066, + -0.021167170256376266, + 0.028198525309562683, + -0.038384221494197845, + -0.06266048550605774, + -0.06817756593227386, + -0.0362582691013813, + -0.04978630691766739, + -0.061060622334480286, + -0.05569349229335785, + -0.14554563164710999, + 0.01083927322179079, + 0.03823632746934891, + 0.1413729339838028, + -0.06424250453710556, + 0.0005208944203332067, + 0.059983059763908386, + 0.01443629339337349, + 0.026286425068974495, + 0.011921306140720844, + -0.05758805200457573, + 0.0008128922199830413, + 0.041270311921834946, + -0.032014112919569016, + 0.0048500592820346355, + 0.019819015637040138, + 0.031806137412786484, + -0.031651850789785385, + 0.04742490127682686, + 0.07333451509475708, + 0.08739550411701202, + -0.025538818910717964, + 0.01670127734541893, + 0.024544037878513336, + -0.03242556378245354, + -0.00786574650555849, + 0.03845687583088875, + -0.012504889629781246, + 0.05689339339733124, + 0.03000161238014698, + 0.04898694157600403, + 0.06783080101013184, + -0.005014670547097921, + 0.029225366190075874, + -0.03746050223708153, + 0.020790869370102882, + 0.022954341024160385, + -0.024209769442677498, + -0.02649715542793274, + -0.011887703090906143, + -0.03036465123295784, + 0.07552632689476013, + 0.0693282037973404, + 0.07129776477813721, + 0.03775259479880333, + -0.09297813475131989, + -0.057898230850696564, + 0.07041677087545395, + -0.09312741458415985, + -0.013453870080411434, + -0.056117989122867584, + -0.01669050194323063, + -0.0820528119802475, + -4.283024788171356e-34, + 0.001975870691239834, + 0.07760490477085114, + -0.008892378769814968, + -0.028482850641012192, + -0.0397675596177578, + 0.04275898635387421, + 0.046772751957178116, + 0.07370098680257797, + -0.03178898245096207, + -0.01606879010796547, + -0.018722323700785637, + 0.017284976318478584, + -0.004361383616924286, + -0.06077301502227783, + 0.012530462816357613, + -0.04226230829954147, + 0.04918403923511505, + 0.009890415705740452, + -0.0032211390789598227, + 0.02555220015347004, + 0.04505469650030136, + -0.06540703773498535, + -0.04610764980316162, + 0.1062273159623146, + -0.04427351430058479, + -0.0057933516800403595, + -0.047574482858181, + 0.004529990255832672, + -0.009669089689850807, + -0.011493584141135216, + -0.05757974460721016, + 0.019691770896315575, + -0.025701936334371567, + -0.05741797015070915, + -0.00970433559268713, + 0.08424998819828033, + 0.11531570553779602, + 0.02599492110311985, + 0.03904082253575325, + -0.06630633771419525, + -0.03413292393088341, + 0.0017290014075115323, + 0.08753952383995056, + -0.01364990696310997, + -0.013751452788710594, + -0.025397799909114838, + -0.038942597806453705, + 0.011253822594881058, + -0.02846440300345421, + 0.019388439133763313, + 0.032014813274145126, + -0.04864697903394699, + 0.018191741779446602, + 0.0174652561545372, + -0.08363619446754456, + -0.040185511112213135, + -0.025885917246341705, + -0.07069797813892365, + -0.017037730664014816, + -0.010501870885491371, + 0.013713914901018143, + -0.04020002484321594, + -0.03723200783133507, + -0.001000898191705346, + -0.014954094775021076, + -0.0062925079837441444, + 0.09713602066040039, + -0.05232451483607292, + 0.04730233550071716, + 0.023126251995563507, + 0.052515096962451935, + -0.020152263343334198, + -0.01361687108874321, + 0.046393465250730515, + -0.012346751987934113, + 0.020931923761963844, + -0.0994906947016716, + -0.011125248856842518, + -0.005483160726726055, + 0.03659043461084366, + 0.023687560111284256, + 0.08734926581382751, + -0.011322823353111744, + 0.040791891515254974, + 0.023966088891029358, + 0.00974150002002716, + 0.10676036775112152, + 0.07228436321020126, + 0.006881948094815016, + 0.0060119591653347015, + -0.0112081253901124, + 0.10213099420070648, + 0.016985014081001282, + -0.02879227139055729, + 0.004630459006875753, + -1.9667849571192164e-08, + 0.04034963250160217, + -0.023649141192436218, + -0.03989248722791672, + -0.09116041660308838, + 0.014954465441405773, + -0.07635907828807831, + -0.037725288420915604, + -0.11337997764348984, + 0.042279504239559174, + -0.08205179125070572, + 0.021747741848230362, + -0.038316767662763596, + -0.0735158771276474, + 0.03941506892442703, + 0.026922430843114853, + 0.03589567169547081, + -0.03806421905755997, + 0.0179271399974823, + -0.05070553719997406, + -0.05578562989830971, + -0.00956796109676361, + 0.06287870556116104, + 0.059709712862968445, + -0.025759834796190262, + 0.06151210144162178, + -0.03686826303601265, + -0.005102329887449741, + 0.02152213640511036, + -0.009320669807493687, + 0.08923467993736267, + -0.01286622229963541, + 0.04489436000585556, + -0.15000753104686737, + -0.018624043092131615, + -0.07539252191781998, + 0.03471548855304718, + -0.03893421217799187, + -0.03157799690961838, + 0.1019546315073967, + 0.059712570160627365, + 0.0036061592400074005, + -0.09489135444164276, + -0.0032250776421278715, + 0.05966753140091896, + 0.017644064500927925, + -0.0411766842007637, + 0.05046605318784714, + -0.08122007548809052, + -0.07101870328187943, + -0.07218336313962936, + -0.05475950241088867, + 0.026273399591445923, + 0.012567213736474514, + -0.013031397946178913, + 0.00889243558049202, + 0.01895817555487156, + 0.034944843500852585, + 0.019580362364649773, + -0.040870651602745056, + -0.002726613776758313, + 0.06156449764966965, + 0.03699275106191635, + -0.02058549039065838, + 0.03509293124079704 + ], + "megaphone-simple-bold||bullhorn,announcements,loudspeaker,broadcast": [ + 0.018863068893551826, + -0.02642093412578106, + 0.0718398317694664, + -0.07362468540668488, + -0.02159206010401249, + -0.011979584582149982, + 0.07347557693719864, + 0.009687311016023159, + 0.01170593686401844, + 0.01450874749571085, + -0.055687617510557175, + 0.04054225608706474, + 0.059702642261981964, + -0.05150310695171356, + 0.003497212426736951, + -0.0006315268110483885, + 0.08546954393386841, + -0.058947574347257614, + 0.025108404457569122, + 0.025757059454917908, + 0.1009911522269249, + 0.09471139311790466, + -0.04272087663412094, + 0.05704622343182564, + 0.07143884152173996, + -0.014169451780617237, + -0.0029806597158312798, + 0.08503632247447968, + 0.014267979189753532, + -0.046661291271448135, + -0.00685963174328208, + 0.038648564368486404, + 0.20929394662380219, + -0.019320059567689896, + -0.027935123071074486, + -0.012202408164739609, + 0.01897290162742138, + 0.0028017291333526373, + -0.04808319732546806, + 0.06816545873880386, + 0.027819281443953514, + -0.035512398928403854, + 0.02375774271786213, + -0.03636688366532326, + -0.055442363023757935, + -0.06944333016872406, + -0.08218687772750854, + -0.017152590677142143, + -0.031096531078219414, + 0.014979771338403225, + 0.015856828540563583, + -0.14218439161777496, + -0.029143204912543297, + 0.04758819192647934, + 0.021685581654310226, + 0.024158088490366936, + -0.08884859085083008, + 0.04752536118030548, + 0.11556041240692139, + 0.043121449649333954, + -0.026705490425229073, + 0.05651024356484413, + -0.0262971930205822, + 0.027447465807199478, + 0.00903590489178896, + 0.04421428591012955, + -0.007878019474446774, + 0.027562078088521957, + -0.002534205559641123, + 0.006066367495805025, + 0.030951835215091705, + 0.03297257795929909, + 0.018763132393360138, + -0.04888968542218208, + -0.043812260031700134, + 0.009090889245271683, + 0.005286127794533968, + -0.04416544735431671, + -0.03525702655315399, + -0.0069283656775951385, + -0.07125937193632126, + -0.1397155523300171, + -0.10718280076980591, + -0.07165899127721786, + 0.06484860181808472, + 0.028293009847402573, + -0.05399195849895477, + 0.008719172328710556, + -0.07533181458711624, + -0.047730445861816406, + -0.10325625538825989, + -0.0298403799533844, + -0.023419151082634926, + 0.045058123767375946, + -0.05965851992368698, + -0.0032078835647553205, + -0.000461378920590505, + -0.07489537447690964, + -0.04347657412290573, + 0.09804683923721313, + 0.015564613975584507, + 0.0011500631226226687, + 0.05404277518391609, + -0.07367769628763199, + -0.010553066618740559, + -0.0762726292014122, + -0.07104139029979706, + 0.02983159013092518, + 0.01174902729690075, + -0.01710462011396885, + -0.040203072130680084, + -0.10212107747793198, + 0.007053201086819172, + 0.01824219338595867, + -0.0049465252086520195, + 0.009952488355338573, + -0.06617539376020432, + 0.03463588282465935, + 0.036726802587509155, + -0.017767885699868202, + 0.022903166711330414, + -0.03574617579579353, + -0.019427098333835602, + -0.038822513073682785, + -0.02392979897558689, + 0.07662811130285263, + -0.02856845036149025, + -1.3614011701277324e-33, + 0.06705304980278015, + 0.062390413135290146, + -0.023245500400662422, + 0.09767225384712219, + 0.024928390979766846, + -0.003978139255195856, + -0.0714789479970932, + 5.010332097299397e-05, + 0.004454315174371004, + 0.046389155089855194, + 0.04953276365995407, + 0.10130748897790909, + 0.013817581348121166, + -0.03246721625328064, + 0.06656808406114578, + -0.07284452766180038, + 0.04411470144987106, + -0.0016737179830670357, + -0.04297683387994766, + -0.018317261710762978, + -0.05406437814235687, + 0.07877548784017563, + -0.028593288734555244, + -0.023714274168014526, + 0.10027294605970383, + -0.008860446512699127, + 0.0853918194770813, + -0.07741757482290268, + 0.008917211554944515, + 0.05419521778821945, + -0.02376939170062542, + -0.026150424033403397, + 0.0540972501039505, + -0.008173229172825813, + 0.02444632351398468, + -0.0407961905002594, + -0.05160010978579521, + -0.0667547881603241, + -0.03352760151028633, + -0.0670219287276268, + -0.07251613587141037, + -0.05045584589242935, + -0.1418103575706482, + 0.0024552629329264164, + 0.04673140123486519, + 0.14296676218509674, + -0.06603289395570755, + -0.003820427693426609, + 0.06803238391876221, + 0.014589675702154636, + 0.021750038489699364, + 0.018551485612988472, + -0.06312587112188339, + 0.007763558067381382, + 0.042215291410684586, + -0.01746947504580021, + -0.0005885958671569824, + 0.024501418694853783, + 0.020236298441886902, + -0.023317597806453705, + 0.046263664960861206, + 0.08051091432571411, + 0.07467476278543472, + -0.018245860934257507, + 0.012212528847157955, + 0.03206562623381615, + -0.0399610660970211, + -0.011467077769339085, + 0.03613501042127609, + -0.007493820507079363, + 0.054519664496183395, + 0.034652262926101685, + 0.05243406072258949, + 0.0579473040997982, + 0.0069313314743340015, + 0.04396938160061836, + -0.013510223478078842, + 0.008605740033090115, + 0.023455074056982994, + -0.01661681942641735, + -0.030153758823871613, + -0.004153468646109104, + -0.031029993668198586, + 0.08792676031589508, + 0.048262640833854675, + 0.06436024606227875, + 0.04040997475385666, + -0.07611433416604996, + -0.0637127086520195, + 0.06931932270526886, + -0.09576800465583801, + -0.012225755490362644, + -0.058782488107681274, + -0.019040562212467194, + -0.08011778444051743, + -2.622071302077063e-35, + -0.006233386695384979, + 0.0756530687212944, + -0.010697131976485252, + -0.02594527043402195, + -0.042699191719293594, + 0.049299005419015884, + 0.05350155383348465, + 0.06538336724042892, + -0.02820255234837532, + -0.004965290427207947, + -0.0249882023781538, + 0.014443418011069298, + -0.008231841959059238, + -0.0611380860209465, + 0.014222251251339912, + -0.029871126636862755, + 0.034913334995508194, + 0.01704493537545204, + 0.0017560834530740976, + 0.028854286298155785, + 0.04929617792367935, + -0.05363548919558525, + -0.06298591941595078, + 0.09202906489372253, + -0.04124801978468895, + -0.005322957411408424, + -0.05810923129320145, + 0.011079885065555573, + -0.009708039462566376, + -0.015907179564237595, + -0.052173737436532974, + 0.019339600577950478, + -0.020321397110819817, + -0.061911772936582565, + -0.017812330275774002, + 0.07825805991888046, + 0.09475624561309814, + 0.022485867142677307, + 0.04718047007918358, + -0.0674809142947197, + -0.04293527454137802, + -0.002607363276183605, + 0.09673053026199341, + -0.025959856808185577, + -0.010710490867495537, + -0.03485674038529396, + -0.03315086290240288, + -0.006180727854371071, + -0.0333491675555706, + 0.013355967588722706, + 0.032054558396339417, + -0.05549810454249382, + 0.01515563391149044, + 0.02007284015417099, + -0.07452303916215897, + -0.04284849762916565, + -0.012256532907485962, + -0.0640668198466301, + -0.012486975640058517, + -0.007726545445621014, + 0.010735584422945976, + -0.04527314379811287, + -0.05023413896560669, + 0.00374418287537992, + -0.021328380331397057, + -0.000618366408161819, + 0.09571024775505066, + -0.05849776789546013, + 0.040531594306230545, + 0.013966578058898449, + 0.04720225930213928, + -0.017178447917103767, + 0.004633740987628698, + 0.039844054728746414, + -0.006091773509979248, + 0.021015405654907227, + -0.10088024288415909, + -0.01603292115032673, + -0.00036625456414185464, + 0.021914023905992508, + 0.03428506478667259, + 0.09688080102205276, + -0.013323602266609669, + 0.02478848397731781, + 0.030614450573921204, + 0.0077087911777198315, + 0.10224445164203644, + 0.0691101998090744, + 0.0007361660245805979, + 0.01016119122505188, + -0.017270559445023537, + 0.11734214425086975, + 0.03362112119793892, + -0.01590326614677906, + 0.0003849900094792247, + -2.065883464297258e-08, + 0.039389584213495255, + -0.047299571335315704, + -0.03327740728855133, + -0.09197685122489929, + 0.0172427911311388, + -0.06885846704244614, + -0.027258938178420067, + -0.11682941019535065, + 0.04930058866739273, + -0.06861687451601028, + 0.014864002354443073, + -0.04687230661511421, + -0.07635536789894104, + 0.05294831842184067, + 0.014649788849055767, + 0.045451562851667404, + -0.03529342636466026, + 0.016930127516388893, + -0.043802328407764435, + -0.05246763676404953, + -0.007035416550934315, + 0.06049878150224686, + 0.052121445536613464, + -0.018882468342781067, + 0.060941874980926514, + -0.035955797880887985, + -0.0032843593508005142, + 0.036931149661540985, + -0.00791595783084631, + 0.08790027350187302, + -0.01634077914059162, + 0.048318203538656235, + -0.1426377147436142, + -0.013086609542369843, + -0.08464989811182022, + 0.03844670206308365, + -0.03927091509103775, + -0.036737941205501556, + 0.09102492034435272, + 0.05195517838001251, + 0.016597550362348557, + -0.08436023443937302, + -0.007760303560644388, + 0.0520184151828289, + 0.02345716767013073, + -0.04111294448375702, + 0.04978923127055168, + -0.09632956981658936, + -0.07328171283006668, + -0.06799442321062088, + -0.05097175016999245, + 0.028472106903791428, + 0.020051026716828346, + -0.01763094961643219, + 0.005027491599321365, + 0.023723997175693512, + 0.03863263130187988, + 0.023807594552636147, + -0.04206443578004837, + 0.006669978611171246, + 0.06907264143228531, + 0.06618499010801315, + -0.029003219678997993, + 0.03896600753068924 + ], + "member-of-bold||*new*,\u2208,is element of,set,member,mathematics,arithmetic,calculator": [ + -0.0037866104394197464, + 0.015716342255473137, + -0.0030842451378703117, + 0.03923775255680084, + -0.043236151337623596, + -0.03739221766591072, + 0.11273209750652313, + -0.03540034592151642, + -0.03110402822494507, + -0.018175765872001648, + -0.023478902876377106, + -0.0382409393787384, + 0.10924415290355682, + -0.1243852749466896, + 0.02844712883234024, + 0.012193736620247364, + -0.015616276301443577, + -0.002369869267567992, + -0.01850173994898796, + 0.0009450684883631766, + 0.0072917151264846325, + -0.009536582045257092, + -0.04317693039774895, + 0.08344373852014542, + 0.06311814486980438, + 0.040155746042728424, + 0.019409701228141785, + -0.07386079430580139, + 0.09317973256111145, + 0.014655259437859058, + -0.10470955073833466, + -0.02804115228354931, + 0.10746739059686661, + 0.05016911402344704, + 0.035199299454689026, + 0.026870165020227432, + 0.08794483542442322, + -0.0036488028708845377, + 0.0008555432432331145, + 0.07181897014379501, + -0.021157559007406235, + -0.049481943249702454, + -0.004006537143141031, + 0.05324713513255119, + -0.046943530440330505, + 0.05319182202219963, + -0.012425745837390423, + -0.03143785148859024, + 0.008505262434482574, + -0.05414596572518349, + -0.014631558209657669, + -0.04990445822477341, + -0.12203783541917801, + 0.022419344633817673, + 0.04281997308135033, + 0.09286757558584213, + -0.010163813829421997, + -0.023569943383336067, + -0.034492187201976776, + -0.10277754813432693, + 0.00015904575411695987, + -0.006966023240238428, + 0.09637745469808578, + -0.005762085784226656, + -0.021177168935537338, + -0.007364154793322086, + -0.020210416987538338, + 0.0007137734210118651, + -0.01846160739660263, + -0.011574629694223404, + 0.03636280074715614, + 0.013707363046705723, + 0.04024418443441391, + 0.06773035228252411, + -0.07702219486236572, + -0.009065869264304638, + 0.09168282151222229, + 0.03196753188967705, + 0.018336663022637367, + 0.041077956557273865, + -0.026363803073763847, + -0.04562370479106903, + -0.06629837304353714, + -0.011728010140359402, + 0.08415708690881729, + 0.019788343459367752, + -0.014148646965622902, + -0.14435076713562012, + -0.09991232305765152, + -0.022126857191324234, + -0.03682607412338257, + 0.017770808190107346, + -0.004345491528511047, + 0.053883809596300125, + -0.017613118514418602, + 0.035890642553567886, + 0.04471604526042938, + 0.056186843663454056, + -0.03232282027602196, + 0.09201779216527939, + -0.003930096514523029, + 0.11912140250205994, + 0.013315610587596893, + 0.009402553550899029, + -0.10342146456241608, + -0.02155175432562828, + 0.007793400902301073, + -0.07375402003526688, + 0.005270740017294884, + -0.005415998864918947, + 0.023864904418587685, + -0.13262304663658142, + -0.03316054865717888, + -0.05110391229391098, + -0.02364620566368103, + -0.00509285181760788, + -0.0593411959707737, + 0.002778510795906186, + 0.0431785024702549, + 0.04704447090625763, + 0.05329989641904831, + -0.04473588615655899, + -0.006419162731617689, + -0.007737309206277132, + 0.02000124379992485, + -0.03695107623934746, + -0.047752745449543, + -2.4242045509565335e-33, + 0.020597055554389954, + 0.047883231192827225, + -0.07314536720514297, + 0.04773908108472824, + -0.06899824738502502, + 0.04001470282673836, + -0.023283090442419052, + -0.017926592379808426, + -0.07335074990987778, + 0.004567011725157499, + 0.07941403239965439, + 0.035761598497629166, + 0.025650905445218086, + 0.06233089044690132, + 0.11403816193342209, + -0.043468307703733444, + 0.06148814037442207, + -0.10106901824474335, + -0.018296288326382637, + -0.04479820281267166, + -0.042875755578279495, + 0.0707058534026146, + -0.07819443941116333, + 0.010444531217217445, + -0.04494795948266983, + 0.006353805307298899, + 0.06317342072725296, + -0.05206867679953575, + -0.09851985424757004, + 0.020418502390384674, + -0.019262228161096573, + 0.0409373939037323, + 0.031500376760959625, + 0.05547703430056572, + 0.0068116565234959126, + 0.019736168906092644, + 0.0055123865604400635, + -0.017036179080605507, + 0.02682846039533615, + -0.09187131375074387, + -0.038638319820165634, + -0.013365753926336765, + 0.06224871054291725, + -0.024513311684131622, + 0.0365055613219738, + 0.08105188608169556, + -0.08120380342006683, + -0.02387244999408722, + 0.04787428677082062, + -0.01785505749285221, + -0.03819907084107399, + -0.021188102662563324, + -0.0007397316512651742, + 0.014278247021138668, + -0.028697652742266655, + -0.024551022797822952, + -0.03919989988207817, + 0.10432586818933487, + 0.029077818617224693, + 0.02041465789079666, + -0.008126135915517807, + 0.05967175215482712, + 0.032415226101875305, + 0.060235150158405304, + -0.18634819984436035, + 0.03530529513955116, + -0.13202643394470215, + 0.018964821472764015, + 0.09227177500724792, + 0.037492021918296814, + -0.011783603578805923, + 0.08711466193199158, + -0.028891919180750847, + 0.0805860385298729, + 0.005614250898361206, + -0.006394377443939447, + 0.04206562787294388, + -0.03224708512425423, + -0.026532230898737907, + -0.002883071545511484, + -0.0712115541100502, + 0.030313555151224136, + -0.016138022765517235, + 0.10037606209516525, + 0.053054776042699814, + -0.01649431698024273, + 0.004639525897800922, + -0.0028724134899675846, + 0.006631168536841869, + 0.03926365450024605, + -0.08451727777719498, + -0.028469383716583252, + 0.01323441881686449, + -0.0289381742477417, + -0.09127026051282883, + -2.6936807534107888e-33, + 0.018887866288423538, + 0.004126051906496286, + -0.028110476210713387, + -0.05776035040616989, + -0.051678627729415894, + -0.03159370273351669, + 0.02842060662806034, + -0.03497160226106644, + -0.01785176247358322, + 0.025103574618697166, + 0.03696488216519356, + 0.04745853692293167, + -0.05709286406636238, + -0.05732032284140587, + -0.0004979235818609595, + 0.0007274820236489177, + -0.050109125673770905, + -0.05468865856528282, + -0.026105286553502083, + -0.0013450175756588578, + -0.030608126893639565, + -0.005186253227293491, + 0.005914578679949045, + 0.023164788261055946, + 0.03944353386759758, + -0.03872210532426834, + 0.008913950063288212, + 0.046754781156778336, + -0.026058336719870567, + -0.03715679049491882, + -0.002189269522204995, + -0.06297734379768372, + 0.026424551382660866, + 0.03166224807500839, + -0.07964465022087097, + -0.008511640131473541, + 0.08535220474004745, + -0.12054421752691269, + 0.02900543436408043, + -0.027288367971777916, + 0.02760353870689869, + -0.03266074135899544, + 0.06728746742010117, + 0.06724001467227936, + 0.01881391368806362, + -0.02737923339009285, + 0.07276343554258347, + -0.05157618969678879, + -0.04563632607460022, + 0.050006184726953506, + 0.022812262177467346, + -0.11434490978717804, + 0.07546161115169525, + 0.022603170946240425, + 0.0019335895776748657, + 0.04610401391983032, + -0.01513458788394928, + 0.04672429338097572, + 0.0048440988175570965, + 0.06532076001167297, + 0.009345374070107937, + 0.060776159167289734, + 0.007091555744409561, + 0.09499702602624893, + -0.013240656815469265, + -0.07017090171575546, + -0.049374766647815704, + 0.058969754725694656, + -0.004713990725576878, + -0.0009734788327477872, + 0.0022069818805903196, + 0.014956772327423096, + -0.04407908767461777, + 0.058457210659980774, + -0.09590619802474976, + -0.08344419300556183, + -0.01698889210820198, + 0.016915634274482727, + -0.018573438748717308, + 0.0040984065271914005, + -0.007537847850471735, + -0.015804721042513847, + -0.07478351891040802, + -0.020772064104676247, + -0.04106124863028526, + -0.016988299787044525, + 0.07863915711641312, + 0.01857350394129753, + -0.029724717140197754, + -0.07401899993419647, + -0.028257885947823524, + -0.005547671113163233, + -0.09123744815587997, + -0.06258317083120346, + -0.08628509193658829, + -2.760577189064861e-08, + -0.07821612805128098, + -0.07347317785024643, + -0.023169519379734993, + 0.0016408928204327822, + 0.08310184627771378, + -0.06746315211057663, + 0.0007094187894836068, + -0.07865642011165619, + -0.03506563976407051, + -0.01754498854279518, + 0.07221359014511108, + 0.05744846165180206, + -0.04446335881948471, + -0.08369915932416916, + 0.02044806070625782, + -0.008011647500097752, + -0.008266018703579903, + 0.010556859895586967, + -0.033601339906454086, + 0.005742589011788368, + 0.007370202336460352, + 0.03786047175526619, + 0.08784476667642593, + -0.020575353875756264, + -0.004850887227803469, + 0.005855648312717676, + -0.005909002851694822, + 1.600191717443522e-05, + 0.05791003257036209, + 0.03554200381040573, + 0.0335252471268177, + 0.07828941196203232, + 0.03592079505324364, + 0.01256890594959259, + -0.04008307680487633, + -0.002178673632442951, + -0.017054123803973198, + 0.030924968421459198, + 0.012161036022007465, + 0.09183369576931, + -0.0609390065073967, + -0.006399957463145256, + -0.020930463448166847, + -0.01950933411717415, + -0.00045813637552782893, + -0.04603252559900284, + -0.05266030505299568, + -0.029570823535323143, + 0.007316237781196833, + -0.10245008021593094, + -0.051833804696798325, + 0.08909692615270615, + 0.002363360719755292, + 0.04985406994819641, + -0.06279002875089645, + -0.04901617020368576, + -0.07191533595323563, + 0.06428813934326172, + -0.047663647681474686, + -0.051339905709028244, + 0.05938401818275452, + -0.0017920099198818207, + 0.08240939676761627, + 0.04346152022480965 + ], + "memory-bold||*new*,ram,microchip,computer,circuit,electronics": [ + -0.003220836166292429, + -0.019717978313565254, + -0.08889496326446533, + 0.02312379702925682, + -0.018253058195114136, + -0.018730411306023598, + 0.05872011184692383, + 0.02061903290450573, + -0.017572298645973206, + 0.017905153334140778, + 0.08367690443992615, + 0.05096174031496048, + 0.06906523555517197, + -0.031532205641269684, + -0.00642727455124259, + 0.05939074233174324, + -0.013270428404211998, + -0.0010073730954900384, + 0.0073669967241585255, + -0.008999285288155079, + 0.07561545819044113, + 0.011505777016282082, + -0.022049257531762123, + 0.03193488344550133, + 0.02555795945227146, + 0.08680032193660736, + 0.051054492592811584, + -0.04353281110525131, + 0.026393743231892586, + -0.09242422133684158, + 0.0002883091219700873, + 0.05786459520459175, + 0.07965651899576187, + 0.05257842689752579, + 0.11680509150028229, + 0.030235860496759415, + -0.04061282426118851, + -0.06857441365718842, + 0.006249408237636089, + -0.052284885197877884, + -0.004284512251615524, + -0.008319410495460033, + 0.020938705652952194, + 0.07754445821046829, + 0.04267783463001251, + 0.061826784163713455, + -0.008054164238274097, + -0.05528385192155838, + -0.027228374034166336, + -0.07436744123697281, + -0.020931372418999672, + -0.014464364387094975, + -0.09883628040552139, + 0.04875694587826729, + -0.02612902969121933, + 0.017697377130389214, + -0.0031275523360818624, + -0.0430600643157959, + -0.03008979558944702, + 0.02382858283817768, + -0.011573655530810356, + -0.031523820012807846, + 0.05180032551288605, + 0.04079156368970871, + -0.02857457473874092, + 0.0008485171711072326, + 0.0374031737446785, + 0.018464943394064903, + 0.024264879524707794, + 0.05243299528956413, + 0.01943245902657509, + -0.028281034901738167, + -0.030369997024536133, + 0.029097968712449074, + -0.045998916029930115, + -0.030904917046427727, + 0.026345418766140938, + 0.0013528669951483607, + 0.027372201904654503, + -0.11300239711999893, + -0.05384061858057976, + -0.11630848795175552, + -0.06162847951054573, + -0.033479075878858566, + 0.062243640422821045, + 0.05404388904571533, + -0.03690626472234726, + -0.07477248460054398, + -0.052764661610126495, + -0.08993957936763763, + -0.06285643577575684, + -0.05406676605343819, + -0.009821533225476742, + 0.026022080332040787, + -0.05973464250564575, + 0.0008101086714304984, + 0.048221487551927567, + -0.04233171045780182, + 0.002607121132314205, + 0.06508756428956985, + 0.05309256911277771, + 0.12271933257579803, + 0.06363674998283386, + 0.050090476870536804, + -0.06002659723162651, + -0.038832470774650574, + 0.007359293755143881, + 0.05000464618206024, + -0.030069243162870407, + -0.011182038113474846, + -0.007821989245712757, + -0.0027164591010659933, + -0.032579854130744934, + 0.003913529217243195, + 0.013528814539313316, + -0.0945553109049797, + -0.07399913668632507, + 0.004137478303164244, + 0.08542576432228088, + 0.09126531332731247, + -0.0006226638215593994, + -0.03531859070062637, + -0.06784006208181381, + -0.026068026199936867, + -0.08366506546735764, + -0.01771973818540573, + -0.06495174765586853, + -2.465092468910956e-33, + 0.025707313790917397, + 0.0020200922153890133, + -0.0679883286356926, + 0.06114697456359863, + -0.005176607519388199, + 0.041849587112665176, + -0.040413808077573776, + -0.044519711285829544, + -0.018627716228365898, + 0.046428583562374115, + 0.0788629800081253, + 0.011336983181536198, + 0.010462136939167976, + 0.13330280780792236, + 0.09967336803674698, + -0.07836658507585526, + -0.06103651598095894, + -0.012134487740695477, + 0.052438195794820786, + -0.03571881353855133, + -0.07799984514713287, + 0.13273672759532928, + 0.02794550359249115, + -0.04661965370178223, + 0.06661839038133621, + -0.06658036261796951, + -0.014623516239225864, + -0.024073725566267967, + -0.017016960307955742, + 0.023170698434114456, + 0.006400392856448889, + 0.05130356177687645, + -0.009722530841827393, + -0.025934871286153793, + 0.036480870097875595, + 0.041884154081344604, + -0.003509374801069498, + -0.11795889586210251, + 0.011003143154084682, + -0.05980540066957474, + -0.0446874238550663, + 0.0330481119453907, + -0.029563216492533684, + -0.08070040494203568, + -0.0007399487658403814, + 0.05710708722472191, + 0.0057975854724645615, + -0.0034977018367499113, + 0.03287111595273018, + 0.02268780581653118, + -0.08083955198526382, + -0.015641191974282265, + 0.018569378182291985, + -0.01625322550535202, + 0.03581724688410759, + -0.036885008215904236, + -0.03700040653347969, + 0.027655022218823433, + 0.0771997720003128, + 0.107973113656044, + -0.06212838366627693, + 0.06067967414855957, + -0.00017464777920395136, + 0.0005426294519566, + -0.005125443451106548, + 0.11101113259792328, + 0.007981717586517334, + 0.07861264050006866, + -0.006609365809708834, + 0.008286435157060623, + 0.009069224819540977, + -0.027257539331912994, + -0.03627306595444679, + 0.052809495478868484, + -0.04438835382461548, + 0.046870823949575424, + -0.011458028107881546, + -0.05009198933839798, + -0.07661957293748856, + -0.07083272188901901, + -0.007496747653931379, + -0.02287794090807438, + -0.0733892172574997, + 0.09597180038690567, + -0.04563479125499725, + 0.06901703029870987, + 0.04120466113090515, + -0.06547259539365768, + 0.004690532572567463, + 0.03354306146502495, + -0.04199983552098274, + -0.01326941791921854, + 0.033913854509592056, + -0.011609508655965328, + -0.13309796154499054, + -1.8846410726565876e-33, + -0.04240195453166962, + 0.008280852809548378, + -0.07178959250450134, + 0.059284839779138565, + -0.06076008081436157, + -0.024665022268891335, + -0.012198678217828274, + -0.02611471340060234, + -0.041265279054641724, + -0.021472208201885223, + 0.03345942497253418, + 0.015227779746055603, + -0.04038528352975845, + -0.06323768943548203, + -0.020470276474952698, + -0.0066537377424538136, + -0.03708828240633011, + -0.0010912801371887326, + 0.04022606834769249, + 0.05575866624712944, + -0.0142585514113307, + 0.06877029687166214, + -0.037104278802871704, + 0.021675515919923782, + 0.01706474833190441, + 0.06924012303352356, + -0.060391489416360855, + 0.0035737797152251005, + -0.032690249383449554, + 0.003403369802981615, + -0.01144171692430973, + -0.04820450022816658, + 0.053909722715616226, + 0.12053317576646805, + -0.04519716277718544, + -0.04188087582588196, + 0.0955459401011467, + -0.07478503882884979, + 0.059399962425231934, + -0.07544147968292236, + 0.10469439625740051, + 0.05123496428132057, + 0.0060352119617164135, + 0.027514001354575157, + -0.030322497710585594, + -0.0009409688645973802, + -0.09260369092226028, + -0.01949533261358738, + 0.018738282844424248, + -0.004174304194748402, + -0.008040136657655239, + -0.05582305043935776, + 0.023560283705592155, + -0.06503351032733917, + -0.049204472452402115, + -0.05432707443833351, + -0.00042830841266550124, + 0.013031595386564732, + 0.07350865751504898, + -0.02233351208269596, + 0.011762539856135845, + -0.05232233181595802, + -0.025628695264458656, + -0.06937810033559799, + -0.01685049757361412, + -0.07812702655792236, + 0.05335794389247894, + 0.019909679889678955, + -0.016938384622335434, + -0.036393702030181885, + 0.07861989736557007, + 0.02672572433948517, + -0.03344326838850975, + -0.030805004760622978, + -0.05745001509785652, + -0.019289521500468254, + -0.040413230657577515, + -0.02691567689180374, + -0.02975877933204174, + -0.0032398647163063288, + -0.0035019482020288706, + 0.04402463883161545, + -0.02858821302652359, + 0.06382162123918533, + -0.03280261158943176, + -0.014492339454591274, + -0.04317305237054825, + -0.032290078699588776, + -0.04585643857717514, + -0.09498646855354309, + -0.06912082433700562, + 0.014054346829652786, + -0.03612818568944931, + 0.03890810161828995, + -0.09789691865444183, + -2.3127451953541822e-08, + 0.033995307981967926, + -0.08000712096691132, + 0.022378897294402122, + -0.015059655532240868, + 0.1294231414794922, + -0.13649412989616394, + -0.06116635352373123, + -0.02636721171438694, + 0.03956460580229759, + -0.017482731491327286, + 0.10489045828580856, + -0.017704900354146957, + -0.07485852390527725, + -0.005919092800468206, + 0.10509014129638672, + 0.041635993868112564, + -0.04313593730330467, + 0.039869122207164764, + -0.010909928940236568, + -0.07432392984628677, + -0.02726704813539982, + 0.06579598039388657, + 0.05198988690972328, + 0.0161263570189476, + 0.09064581245183945, + 0.01643621362745762, + 0.04091288894414902, + 0.015975574031472206, + 0.06704398989677429, + 0.07656176388263702, + 0.04792752116918564, + 0.03913087025284767, + 0.04198841005563736, + -0.02183612249791622, + 0.01853615790605545, + -0.020740874111652374, + 0.01229950226843357, + 0.024481825530529022, + 0.053833555430173874, + 0.014593701809644699, + -0.08545109629631042, + -0.05394955351948738, + -0.033037733286619186, + 0.0471046082675457, + 0.00526981009170413, + -0.05187779292464256, + -0.046453807502985, + -0.046313583850860596, + -0.08427491039037704, + -0.05817723274230957, + -0.0471634566783905, + 0.06670352816581726, + 0.03160551190376282, + 0.0814695656299591, + -0.0224356260150671, + -0.04328267276287079, + -0.03977685421705246, + 0.02841419354081154, + -0.02316628023982048, + 0.034997593611478806, + 0.12250962853431702, + -0.014345325529575348, + 0.04195121303200722, + 0.022642701864242554 + ], + "messenger-logo-bold||logos,facebook,social media": [ + 0.022986965253949165, + 0.041045624762773514, + -0.018710823729634285, + 0.006011133547872305, + 0.11025005578994751, + -0.05947120115160942, + 0.0585213340818882, + -0.045455776154994965, + 0.08332858234643936, + -0.00012762764526996762, + 0.03304624557495117, + 0.05987701192498207, + 0.017378628253936768, + 0.01169395912438631, + 0.09311404079198837, + -0.024281075224280357, + -0.02922838181257248, + -0.028843555599451065, + 0.034447599202394485, + -0.023208625614643097, + -0.031627949327230453, + -0.010143857449293137, + 0.019475650042295456, + 0.02040126919746399, + 0.014937199652194977, + -0.01791876181960106, + -0.02796303667128086, + -0.00900675356388092, + 0.010070856660604477, + -0.060760773718357086, + -0.0029709613882005215, + 0.010272316634654999, + 0.0949542373418808, + 0.043649353086948395, + -0.006054969038814306, + 0.007112530525773764, + 0.042015254497528076, + -0.01054268330335617, + 0.019068563356995583, + 0.016531845554709435, + 0.013128209859132767, + -0.0856897309422493, + 0.04108269885182381, + 0.0687812864780426, + -0.04105794057250023, + 0.03601910546422005, + -0.04565016180276871, + 0.023533739149570465, + -0.008557146415114403, + 0.01089601218700409, + -0.0021029843483120203, + -0.12296757847070694, + -0.12335071712732315, + 0.005209601484239101, + 0.011502214707434177, + 0.0015589991817250848, + -0.06388977915048599, + 0.025509074330329895, + 0.04499398171901703, + 0.016199612990021706, + 0.01583484746515751, + -0.00819567870348692, + 0.0437072291970253, + 0.06944072246551514, + 0.08885089308023453, + 0.03461866080760956, + -0.00926465168595314, + 0.02081657014787197, + -0.08470984548330307, + 0.036073680967092514, + 0.06017770990729332, + -0.008334679529070854, + -0.047810979187488556, + -0.016486337408423424, + -0.016693785786628723, + -0.014985715039074421, + 0.04833706468343735, + 0.024552498012781143, + -0.030510857701301575, + -0.07566457241773605, + -0.04432250186800957, + -0.01939578168094158, + 0.0006096576107665896, + -0.03396431356668472, + 0.06587634235620499, + 0.04178762063384056, + -0.1137441024184227, + -0.08741381764411926, + -0.02297998033463955, + 0.0429154708981514, + -0.11376100033521652, + 0.03172164410352707, + 0.020433932542800903, + 0.032998062670230865, + -0.1081356331706047, + -0.008569004945456982, + -0.020094191655516624, + -0.013917564414441586, + -0.05953679978847504, + 0.08823379874229431, + -0.013620242476463318, + 0.07483000308275223, + 0.08467801660299301, + -0.044191088527441025, + 0.04709009453654289, + 0.04946638271212578, + 0.01661471091210842, + -0.034872256219387054, + 0.045197490602731705, + 0.08074028044939041, + -0.013881822116672993, + -0.025881385430693626, + -0.04938986897468567, + -0.018894551321864128, + -0.013712048530578613, + -0.07977793365716934, + -0.025710178539156914, + -0.01738572306931019, + 0.1359167844057083, + -0.009650187566876411, + 0.006365298759192228, + -0.019802125170826912, + -0.058417193591594696, + -0.06230291351675987, + -0.020901896059513092, + 0.014269035309553146, + -0.035759471356868744, + -2.8229724587027706e-33, + 0.0213122870773077, + 0.07964654266834259, + -0.017793970182538033, + 0.11041869223117828, + 0.014456563629209995, + 0.055574655532836914, + -0.048555612564086914, + -0.09990579634904861, + -0.10820819437503815, + -0.006260165944695473, + 0.04732607305049896, + 0.056631822139024734, + -0.01009764801710844, + 0.10682716220617294, + 0.07154833525419235, + -0.05412440747022629, + 0.008167410269379616, + -0.02849881537258625, + -0.06975455582141876, + -0.05750121548771858, + -0.019600624218583107, + -0.00758063979446888, + -0.090700164437294, + 0.011547975242137909, + 0.014457201585173607, + 0.011727215722203255, + 0.11127573251724243, + -0.014424092136323452, + 0.006863682996481657, + 0.004423181526362896, + 0.01386741641908884, + 0.06486506760120392, + 0.02019426040351391, + 0.021860742941498756, + 0.03760790824890137, + -0.017379119992256165, + -0.013974792324006557, + -0.032912544906139374, + 0.00016050226986408234, + 0.029665632173419, + -0.013702725060284138, + -0.02339162304997444, + -0.07274582237005234, + 0.008772239089012146, + -0.01242086198180914, + 0.13688434660434723, + -0.03759584203362465, + -0.11902476102113724, + 0.05601784214377403, + -0.04822142422199249, + -0.015580213628709316, + -0.05861814320087433, + -0.025584721937775612, + 0.017290746793150902, + -0.014811335131525993, + -0.07116655260324478, + -0.042964719235897064, + 0.04124312102794647, + -0.02042035013437271, + -0.03288889676332474, + 0.0043245768174529076, + -0.03393183648586273, + 0.04969513416290283, + -0.007855905219912529, + 0.007519551552832127, + 0.0684804692864418, + 0.0019156149355694652, + 0.05187462270259857, + 0.005482734180986881, + -0.055013399571180344, + 0.02981821447610855, + 0.06070326268672943, + 0.06761116534471512, + -0.0030106715857982635, + -0.11798722296953201, + 0.026937438175082207, + -0.006949489936232567, + 0.031715914607048035, + -0.02339952066540718, + 0.06431058794260025, + -0.05044718086719513, + 0.0071164085529744625, + -0.043155428022146225, + 0.02924605831503868, + 0.029568441212177277, + 0.006299562752246857, + 0.03621086850762367, + -0.0805969387292862, + -0.036753054708242416, + 0.040492039173841476, + -0.07940954715013504, + 0.05419468507170677, + 0.05913188308477402, + 0.03630126640200615, + -0.16642984747886658, + 1.044737410189105e-33, + 0.009131873026490211, + 0.046370379626750946, + 0.06046000495553017, + -0.027063051238656044, + -0.029253879562020302, + 0.0012283559190109372, + 0.11355260014533997, + 0.06294123083353043, + -0.049704816192388535, + 0.035688869655132294, + 0.03191577270627022, + -0.05042615160346031, + -0.11353974044322968, + -0.024729236960411072, + -0.00997832976281643, + 0.04512453079223633, + 0.08209769427776337, + 0.015855921432375908, + -0.10747887939214706, + -0.016710609197616577, + -0.019681381061673164, + -0.024191049858927727, + -0.05893465504050255, + 0.092722587287426, + 0.032708704471588135, + 0.016365965828299522, + 0.02501087449491024, + 0.01801247149705887, + -0.04763675481081009, + -0.02937930077314377, + -0.01562649942934513, + -0.00025847984943538904, + 0.0140850143507123, + -0.00020721675537060946, + 0.028332678601145744, + 0.027673816308379173, + -0.011663401499390602, + -0.04825936630368233, + 0.0128360940143466, + -0.02690378576517105, + 0.0425499826669693, + 0.0005253306590020657, + -0.059863340109586716, + 0.06696334481239319, + -0.019507616758346558, + 0.025259699672460556, + -0.07643913477659225, + -0.12732964754104614, + -0.09940048307180405, + 0.09984942525625229, + 0.06558819860219955, + -0.06999930739402771, + 0.03542739525437355, + 0.013818075880408287, + -0.11569409817457199, + -0.05474783107638359, + 0.017596902325749397, + 0.05039410665631294, + 0.0017075655050575733, + 0.022851018235087395, + 0.05806693807244301, + -0.008599470369517803, + -0.07474703341722488, + -0.03272347152233124, + -0.021465862169861794, + -0.013131784275174141, + 0.04999785125255585, + 0.04093564301729202, + -0.024344608187675476, + 0.08755047619342804, + 0.037817928940057755, + -0.007263511884957552, + -0.0297885462641716, + 0.050971753895282745, + -0.0180156622081995, + -0.009187808260321617, + 0.10179216414690018, + 0.008711440488696098, + -0.08232485502958298, + 0.048431433737277985, + -0.03353271260857582, + 0.007946692407131195, + -0.06795991957187653, + 0.07418487966060638, + 0.01851709373295307, + 0.0014121324056759477, + -0.026744762435555458, + 0.03468341752886772, + -0.02912335842847824, + -0.002414429560303688, + -0.029771799221634865, + 0.03563886508345604, + 0.017584076151251793, + 0.044191036373376846, + 0.0030022170394659042, + -1.5776116413235286e-08, + -0.06336010247468948, + -0.10329584777355194, + 0.017181377857923508, + -0.01148376613855362, + 0.03573505952954292, + 0.04338334500789642, + -0.04538213089108467, + -0.10955961048603058, + 0.03533629700541496, + -0.021157242357730865, + -0.09815685451030731, + -0.014450717717409134, + -0.07687878608703613, + -0.018663674592971802, + 0.012046575546264648, + -0.034198351204395294, + -0.11712156236171722, + 0.03879736736416817, + 0.02728842757642269, + -0.0305043775588274, + -0.04993980750441551, + 0.07484393566846848, + -0.012553713284432888, + 0.0015975465066730976, + 0.007458948530256748, + -0.006789067760109901, + -0.036139216274023056, + 0.006255391985177994, + -0.017380129545927048, + 0.023631928488612175, + -0.011331348679959774, + 0.06506378203630447, + 0.0525888092815876, + -0.04874201491475105, + -0.05709981173276901, + -0.024510180577635765, + -0.009718948975205421, + -0.03230370581150055, + -0.007857988588511944, + 0.04505368694663048, + 0.08840928226709366, + -0.01743650995194912, + 0.014321600086987019, + -0.03597480431199074, + -0.050973545759916306, + 0.018158776685595512, + 0.05968152731657028, + 0.01582343876361847, + -0.041322071105241776, + -0.07211215794086456, + -0.020212801173329353, + 0.017179664224386215, + 0.013616814278066158, + 0.032707829028367996, + -0.05809449404478073, + -0.09813244640827179, + 0.03965422511100769, + 0.11321502923965454, + 0.052348580211400986, + 0.029300278052687645, + 0.15200577676296234, + -0.02145949937403202, + -0.009692346677184105, + -0.02420387975871563 + ], + "meta-logo-bold||*updated*,facebook,logos,social media,logos": [ + 0.03268265724182129, + 0.04546838998794556, + -0.0426114983856678, + 0.005053650122135878, + 0.12820009887218475, + -0.05424770340323448, + 0.033355046063661575, + -0.06683795154094696, + 0.025218984112143517, + 0.014969533309340477, + -0.005506584420800209, + 0.07580852508544922, + 0.003992943558841944, + -0.05919037386775017, + 0.03991173207759857, + -0.013038117438554764, + -0.009169884957373142, + 0.018971223384141922, + 0.010079792700707912, + -0.03642261400818825, + -0.022220121696591377, + 0.009093907661736012, + 0.03547099232673645, + 0.032995663583278656, + -0.007038813084363937, + 0.03628310561180115, + -0.034370772540569305, + -0.019443899393081665, + -0.01813909411430359, + -0.0971357673406601, + -0.018868472427129745, + 0.03548702225089073, + 0.0668143779039383, + 0.00412027956917882, + 0.022275876253843307, + -0.006603003945201635, + 0.024951864033937454, + 0.0349455326795578, + 0.015752876177430153, + 0.040942076593637466, + 0.027600090950727463, + -0.08976036310195923, + 0.02186514064669609, + 0.03888583183288574, + -0.04278581961989403, + 0.024697251617908478, + -0.07965555042028427, + -0.024553611874580383, + 0.004814311861991882, + 0.006537822540849447, + -0.02248380146920681, + -0.12228221446275711, + -0.12409839034080505, + -0.009393845684826374, + 0.023891320452094078, + -0.0245394017547369, + -0.004750164225697517, + -0.0374738983809948, + 0.03300069645047188, + -0.01715746894478798, + 0.04812043532729149, + 0.02691606990993023, + 0.049052245914936066, + 0.07706612348556519, + 0.08924657106399536, + 0.027273952960968018, + -0.02139497920870781, + -0.011953931301832199, + -0.057554472237825394, + 0.012042365036904812, + 0.07834595441818237, + 0.03929981589317322, + -0.04418838024139404, + -0.022109562531113625, + -0.013803699985146523, + 0.053694628179073334, + 0.04379788413643837, + 0.035197146236896515, + 0.01431160420179367, + -0.06255155056715012, + -0.028182396665215492, + -0.022630121558904648, + -0.018100440502166748, + -0.02535819448530674, + 0.06414905935525894, + 0.025940895080566406, + -0.0863056480884552, + -0.07113476097583771, + -0.020642906427383423, + 0.002973232651129365, + -0.07141696661710739, + 0.019552428275346756, + 0.047126997262239456, + 0.03889889270067215, + -0.14797207713127136, + 0.05180251970887184, + -0.013332707807421684, + -0.042573437094688416, + -0.06717805564403534, + 0.1298927515745163, + -0.013809286057949066, + 0.06848827749490738, + 0.05798505246639252, + 0.0001549115841044113, + 0.021301433444023132, + 0.0662427544593811, + 0.007436986546963453, + 0.04694074019789696, + -0.003452789969742298, + 0.09105265140533447, + 0.024268493056297302, + -0.03765719756484032, + -0.0637349858880043, + -0.06331615895032883, + -0.04922815039753914, + -0.04716747999191284, + -0.009431544691324234, + -0.01706930436193943, + 0.13780546188354492, + 0.0037957930471748114, + 0.027353864163160324, + -0.01367793045938015, + -0.05199751257896423, + -0.07344767451286316, + 0.008526948280632496, + 0.0049494244158267975, + -0.05630455166101456, + -2.0084129136164972e-33, + 0.04057089239358902, + 0.09691419452428818, + 0.004976552911102772, + 0.0847824439406395, + 0.020260058343410492, + 0.03319698944687843, + -0.04900488629937172, + -0.11083822697401047, + -0.09931803494691849, + -0.0029723045881837606, + 0.08961492776870728, + 0.10635365545749664, + -0.0362727977335453, + 0.08018307387828827, + 0.01922207698225975, + -0.07227455824613571, + -0.004025113768875599, + -0.0350928008556366, + -0.07549087703227997, + -0.038812652230262756, + 0.006327765993773937, + -0.00045573327224701643, + -0.07449033856391907, + -0.008568624965846539, + -0.040174663066864014, + -0.04618915170431137, + 0.040409136563539505, + -0.010067945346236229, + -0.040186457335948944, + 0.022945869714021683, + 0.02298976667225361, + 0.03788995370268822, + 0.07177798449993134, + 0.019675983116030693, + -0.020485475659370422, + -0.04763827845454216, + -0.02533540315926075, + -0.039163246750831604, + 0.014428895898163319, + -0.0038655854295939207, + -0.02350172959268093, + -0.03594932705163956, + -0.05588292330503464, + 0.01641923561692238, + 0.01368101965636015, + 0.1288130283355713, + -0.056334931403398514, + -0.0963451936841011, + 0.06939775496721268, + -0.007856970652937889, + 0.011139366775751114, + -0.03388817980885506, + -0.06125647947192192, + -0.04311566427350044, + -0.04016810655593872, + -0.03453223034739494, + -0.044240791350603104, + 0.07948966324329376, + 0.008902554400265217, + -0.03896191343665123, + 0.07300161570310593, + -0.05094541609287262, + 0.028811542317271233, + 0.013482397422194481, + -0.02361925132572651, + 0.09590969234704971, + -0.007253084797412157, + 0.05850277841091156, + 0.01488578598946333, + -0.037961747497320175, + -0.0021069657523185015, + 0.06719724833965302, + 0.07235032320022583, + 0.010774287395179272, + -0.1263347864151001, + 0.005145106464624405, + -0.0016650790348649025, + -0.03863712400197983, + -0.02925838716328144, + 0.0448717325925827, + -0.019643163308501244, + -0.0008011020254343748, + -0.10133462399244308, + 0.08036191761493683, + 0.0346948578953743, + 0.020518621429800987, + 0.015004129149019718, + -0.033960163593292236, + -0.02029809169471264, + -0.00567969074472785, + -0.05764797702431679, + 0.015402133576571941, + 0.028577495366334915, + -0.004687555134296417, + -0.16204455494880676, + -5.675204533000943e-34, + 0.042131513357162476, + 0.021432025358080864, + 0.048896148800849915, + -0.004331887699663639, + -0.03713982552289963, + 0.005260222591459751, + 0.022165436297655106, + 0.051204241812229156, + -0.029724515974521637, + 0.02015598490834236, + 0.06047189235687256, + 0.010002757422626019, + -0.12115658819675446, + -0.05116935819387436, + -0.026622900739312172, + 0.054376278072595596, + 0.0815059095621109, + 0.007803925313055515, + -0.09486842900514603, + 0.06222321093082428, + -0.017092028632760048, + -0.008209058083593845, + -0.08125418424606323, + 0.11033335328102112, + -0.019871223717927933, + 0.005117828957736492, + 0.027741974219679832, + 0.006634794641286135, + -0.048350989818573, + -0.019608519971370697, + -0.026240911334753036, + -0.029101094231009483, + 0.017526382580399513, + 0.010451925918459892, + 0.015019734390079975, + 0.04738442972302437, + -0.0048485929146409035, + -0.09576217085123062, + -0.0009504343615844846, + 0.049917273223400116, + -0.013634503819048405, + -0.0031810991931706667, + 0.009052986279129982, + 0.042688705027103424, + -0.02820785529911518, + -0.001707251649349928, + -0.09819231182336807, + -0.10680835694074631, + -0.049956515431404114, + 0.072364941239357, + 0.0344366580247879, + -0.04759979248046875, + -0.008546651341021061, + 0.012990414164960384, + -0.06774653494358063, + -0.03737086057662964, + -0.005263704806566238, + 0.07331763207912445, + -0.013010154478251934, + 0.0913906991481781, + 0.0255020372569561, + 0.007080390118062496, + -0.09202705323696136, + -0.029744314029812813, + -0.02951507829129696, + 0.008275092579424381, + 0.0129750557243824, + -0.0600852407515049, + -0.03381047770380974, + 0.07062172889709473, + 0.06883088499307632, + 0.01168336533010006, + -0.06165141612291336, + 0.01950373500585556, + -0.002551657147705555, + -0.0425124391913414, + 0.09344527870416641, + 0.03659484162926674, + -0.07638384401798248, + 0.05147390812635422, + -0.0289034154266119, + 0.028330335393548012, + -0.05572694167494774, + 0.03122911974787712, + -0.004471343941986561, + 0.016348643228411674, + -0.05148451775312424, + 0.0433555506169796, + -0.008420545607805252, + -0.02036099135875702, + -0.06406556814908981, + 0.027764616534113884, + 0.03178451210260391, + 0.00890443380922079, + -0.053846608847379684, + -2.1063648603103502e-08, + -0.025165187194943428, + -0.035466231405735016, + 0.0029412892181426287, + 0.03127086162567139, + 0.059551458805799484, + 0.007447133772075176, + -0.013967235572636127, + -0.12653879821300507, + 0.0013522307854145765, + -0.0618785060942173, + -0.026422176510095596, + 0.015861010178923607, + -0.047633782029151917, + 0.03609524667263031, + 0.035927366465330124, + 0.0011830024886876345, + -0.09344521909952164, + 0.07117601484060287, + 0.007576725911349058, + -0.058201614767313004, + -0.08865717053413391, + 0.09035276621580124, + 0.02444951981306076, + -0.0384594090282917, + 0.05945675075054169, + 0.011444068513810635, + -0.052745141088962555, + -0.023726124316453934, + 0.05252062529325485, + 0.08494299650192261, + 0.023395482450723648, + 0.059329625219106674, + 0.04060051217675209, + -0.027669383212924004, + -0.05585396662354469, + -0.033365894109010696, + -0.03935584798455238, + -0.005837148055434227, + -0.05647098645567894, + 0.034148912876844406, + 0.06671185791492462, + 0.0038484048563987017, + 0.008713525719940662, + -0.017224330455064774, + -0.06720926612615585, + 0.031220486387610435, + 0.034458715468645096, + 0.04791487753391266, + -0.0842888280749321, + -0.1000908687710762, + 0.006465032231062651, + 0.015388945117592812, + -0.003655475564301014, + 0.056694965809583664, + -0.047019269317388535, + -0.05781904608011246, + 0.014148813672363758, + 0.11617466807365417, + 0.06337927281856537, + 0.0005285022198222578, + 0.16316936910152435, + -0.03933084011077881, + -0.018369561061263084, + -0.026438839733600616 + ], + "meteor-bold||*new*,astronomy,asteroid,fireball": [ + -0.004547619726508856, + -0.010915197432041168, + 0.06261325627565384, + 0.03336590155959129, + 0.07752818614244461, + -0.04594970494508743, + 0.008331842720508575, + -0.02371199056506157, + 0.009008387103676796, + 0.022243304178118706, + -0.04381541162729263, + -0.0043765828013420105, + -0.05083036795258522, + -0.05113237351179123, + 0.03463972732424736, + 0.011867459863424301, + 0.02943572588264942, + -0.04133470728993416, + 0.012905091047286987, + 0.041368383914232254, + -0.038457196205854416, + 0.0630403608083725, + -0.0340200811624527, + 0.07099811732769012, + 0.07628574967384338, + 0.08621200919151306, + 0.021361559629440308, + -0.0035101533867418766, + -0.03957236558198929, + -0.07268653064966202, + 0.030283451080322266, + -0.004570300690829754, + 0.03810100629925728, + 0.01913098432123661, + 0.07770539075136185, + 0.004831140860915184, + -0.06591691076755524, + -0.029149256646633148, + -0.06035136431455612, + 0.013075311668217182, + 0.009335027076303959, + -0.07328018546104431, + 0.01385259535163641, + 0.010666047222912312, + -0.06627750396728516, + -0.03639872372150421, + -0.08763962984085083, + -0.02988920547068119, + 0.053828898817300797, + 0.058042943477630615, + -0.045297954231500626, + -0.15743042528629303, + -0.1216336339712143, + 0.01239531859755516, + 0.11272764205932617, + 0.024085525423288345, + -0.04257605969905853, + -0.05870344862341881, + 0.04280896857380867, + -0.07903623580932617, + -0.008492144756019115, + 0.03504154831171036, + -0.009950459003448486, + 0.03221607580780983, + 0.03723358362913132, + -0.04129965230822563, + -0.00029537375667132437, + -0.015929779037833214, + 0.00780600868165493, + 0.047901201993227005, + 0.022978419438004494, + 0.0907418355345726, + 0.02648700773715973, + -0.03709952533245087, + -0.03559425473213196, + -0.01151829119771719, + 0.08059438318014145, + 0.02436729520559311, + -0.005696778651326895, + -0.027537187561392784, + -0.005012333393096924, + -0.06504982709884644, + -0.1126747727394104, + -0.09647330641746521, + 0.04690021649003029, + 0.11172604560852051, + -0.11015171557664871, + -0.017350109294056892, + -0.03957280144095421, + -0.009459707885980606, + -0.054384347051382065, + -0.0426427461206913, + 0.01915723830461502, + 0.06960630416870117, + -0.15470941364765167, + 0.03197764605283737, + 0.05470426008105278, + -0.042494967579841614, + 0.03477313742041588, + 0.0593392588198185, + 0.03398710861802101, + 0.016318779438734055, + -0.005781746935099363, + 0.04530571028590202, + 0.0027628871612250805, + -0.03590620681643486, + -0.02479831874370575, + -0.028139213100075722, + 0.006692107766866684, + 0.09605351090431213, + 0.01893063820898533, + -0.05573435127735138, + -0.022066066041588783, + -0.061485178768634796, + -0.033560436218976974, + -0.0007303020684048533, + -0.10747670382261276, + -0.033442478626966476, + -0.01597064733505249, + 0.025484666228294373, + 0.016950875520706177, + 0.018124345690011978, + -0.006757058203220367, + -0.003912752959877253, + 0.011563555337488651, + 0.035269491374492645, + -0.01469398383051157, + -2.969623460491513e-33, + 0.13900695741176605, + 0.035926204174757004, + -0.02726186066865921, + 0.11589942127466202, + -0.0011755061568692327, + 0.05006859824061394, + -0.06081254780292511, + 0.05998116731643677, + -0.06699541956186295, + 0.004525372758507729, + -0.03889154642820358, + 0.050649963319301605, + -0.016633402556180954, + 0.03953499719500542, + 0.0015269240830093622, + -0.025603555142879486, + 0.03747272863984108, + 0.006007044110447168, + -0.06421602517366409, + 0.06091422587633133, + -0.10829523205757141, + 0.04829324781894684, + -0.06462226808071136, + -0.0033049772027879953, + -0.035858120769262314, + 0.08192563056945801, + 0.008581663481891155, + -0.015589296817779541, + -0.060579150915145874, + 0.03818020597100258, + 0.036168839782476425, + -0.021777529269456863, + 0.0005585648468695581, + 0.05011000111699104, + -0.016915228217840195, + 0.009702294133603573, + -0.08181177824735641, + -0.04558645933866501, + -0.05692049488425255, + 0.006064337212592363, + -0.09641917049884796, + -0.021657835692167282, + -0.11948735266923904, + -0.015691926702857018, + 0.06347554922103882, + 0.029262349009513855, + 0.030660396441817284, + -0.035585012286901474, + 0.03787069022655487, + -0.016652001067996025, + -0.018364476040005684, + -0.020621303468942642, + 0.026064788922667503, + 0.058036740869283676, + 0.02717016637325287, + 0.01608623005449772, + -0.00845795776695013, + -0.015515320934355259, + 0.019474899396300316, + -0.06386899203062057, + 0.0864209234714508, + 0.06064911186695099, + 0.085578553378582, + -0.005038207396864891, + 0.007466735318303108, + 0.09543822705745697, + 0.028107063844799995, + 0.048596665263175964, + 0.09037285298109055, + 0.003851912450045347, + 0.029572900384664536, + 0.046341683715581894, + 0.013675886206328869, + 0.08263139426708221, + 0.011342950165271759, + 0.017992595210671425, + 0.03459026291966438, + -0.02831215411424637, + 0.024585887789726257, + -0.014114045538008213, + -0.09213519841432571, + -0.06420727074146271, + 0.011139954440295696, + 0.026486724615097046, + 0.0033579168375581503, + 0.022747453302145004, + 0.026046905666589737, + -0.030804429203271866, + -0.04314713180065155, + 0.0196086298674345, + -0.07350552827119827, + -0.060950517654418945, + -0.03026345558464527, + -0.05301157012581825, + -0.13630174100399017, + 8.970987750363686e-35, + 0.037469904869794846, + 0.004818889312446117, + -0.07579393684864044, + -0.041114285588264465, + -0.024227997288107872, + 0.05470515042543411, + -0.06172512471675873, + 0.023493392392992973, + -0.07307200133800507, + -0.011523555032908916, + -0.018696973100304604, + 0.022026725113391876, + 0.005267229862511158, + -0.14463387429714203, + 0.07557059824466705, + -0.0008102417923510075, + -0.04024527221918106, + 0.016989460214972496, + -0.026939619332551956, + 0.051316600292921066, + 0.0006000984576530755, + -0.03768293932080269, + -0.0916747897863388, + 0.003448868403211236, + -0.018657436594367027, + -0.014251175336539745, + 0.056766826659440994, + -0.07943694293498993, + -0.04980548098683357, + -0.014947998337447643, + -0.06294217705726624, + 0.03653782233595848, + 0.00048457097727805376, + 0.019691262394189835, + -0.021834494546055794, + 0.06267800182104111, + 0.05308448150753975, + -0.09766979515552521, + 0.03523799031972885, + -0.06437818706035614, + -0.03275999799370766, + 0.1051780954003334, + 0.0477866493165493, + 0.06312352418899536, + -0.023978563025593758, + -0.023210829123854637, + -0.03471432253718376, + 0.10964354127645493, + 0.04531563073396683, + 0.1099405288696289, + -0.008485441096127033, + -0.0906299278140068, + -0.008361120708286762, + -0.014564882032573223, + -0.03709053993225098, + 0.016968650743365288, + -0.030846869572997093, + -0.0373530313372612, + 0.04752981290221214, + 0.056891411542892456, + 0.0019197978544980288, + -0.004365413449704647, + -0.04448875039815903, + 0.09117915481328964, + -0.0031624026596546173, + -0.03174630552530289, + -0.011562580242753029, + 0.04653242975473404, + -0.03544776514172554, + 0.06295723468065262, + 0.026744624599814415, + 0.007242975756525993, + -0.04549485072493553, + 0.08229874819517136, + 0.06245575100183487, + -0.032602548599243164, + 0.052041128277778625, + 0.04674553498625755, + 0.0260666124522686, + 0.022105956450104713, + -0.031731683760881424, + 0.04091203585267067, + -0.019291967153549194, + 0.06126461923122406, + 0.025833379477262497, + 0.04604126513004303, + -0.020430585369467735, + -0.035245027393102646, + -0.07298725843429565, + 0.01299291756004095, + -0.08032971620559692, + 0.043466031551361084, + 0.035758037120103836, + 0.04113731533288956, + -0.01622873544692993, + -2.012134636686369e-08, + 0.06642407178878784, + 0.02621435560286045, + -0.06224711239337921, + -0.04703093320131302, + 0.058218710124492645, + -0.006170852575451136, + -0.07630573213100433, + -0.02050166390836239, + -0.06372543424367905, + -0.029794910922646523, + 0.0002640444436110556, + 0.04600321874022484, + -0.026192067191004753, + 0.03633210435509682, + 0.009375926107168198, + 0.013113519176840782, + -0.029732130467891693, + -0.03870970383286476, + -0.08893414586782455, + -0.055645812302827835, + 0.03200061246752739, + 0.06861934810876846, + 0.04135548323392868, + -0.05788445100188255, + 0.06505551189184189, + 0.06436511129140854, + -0.055937252938747406, + 0.017610276117920876, + 0.03631218522787094, + -0.015589514747262001, + -0.02911805361509323, + 0.04871150478720665, + -0.04118030518293381, + -0.04680323228240013, + -0.09003773331642151, + 0.06024528294801712, + 0.021705174818634987, + 0.02913525328040123, + -0.003420624416321516, + 0.07581577450037003, + 0.015784883871674538, + -0.00656450679525733, + 0.03566550835967064, + -0.011455876752734184, + -0.08386116474866867, + -0.019222695380449295, + 0.031396884471178055, + -0.11115428805351257, + -0.05860491469502449, + -0.061585478484630585, + -0.0330374501645565, + -0.006981623359024525, + -0.007116901688277721, + -0.03603742644190788, + 0.01807449199259281, + 0.04781709238886833, + 0.031866829842329025, + 0.06724883615970612, + 0.036232974380254745, + -0.015974491834640503, + 0.14315709471702576, + -0.03036859817802906, + -0.053282372653484344, + 0.056510601192712784 + ], + "metronome-bold||music,beat,tempo,bpm": [ + -0.0024954292457550764, + -0.04864040017127991, + -0.016031449660658836, + 0.047804005444049835, + 0.00493808276951313, + 0.05396914482116699, + 0.07042419165372849, + -0.06539008021354675, + -0.04873402789235115, + -0.06778792291879654, + -0.020587395876646042, + -0.05323014035820961, + 0.022965604439377785, + -0.10342948138713837, + 0.0200666394084692, + 0.059764012694358826, + 0.09354886412620544, + 0.07785583287477493, + 0.07217609137296677, + -0.0036173148546367884, + 0.025520993396639824, + -0.031064927577972412, + -0.012756280601024628, + 0.023774495348334312, + 0.014759903773665428, + 0.05653192102909088, + -0.010253340937197208, + 0.08737094700336456, + 0.03912081569433212, + -0.07377681881189346, + -0.005273643881082535, + 0.10921934992074966, + 0.1254969835281372, + 0.009294301271438599, + -0.00958729162812233, + 0.0035005509853363037, + -0.015054073184728622, + -0.03735305368900299, + -0.023680299520492554, + 0.05781368538737297, + 0.038278065621852875, + 0.02642732299864292, + 0.03183992579579353, + 0.028139540925621986, + -0.03309204801917076, + 0.0014189825160428882, + -0.07699795067310333, + -0.07451964169740677, + -0.030624879524111748, + 0.02659323625266552, + -0.03908102586865425, + -0.05031740292906761, + -0.055309828370809555, + 0.041237667202949524, + 0.01624322310090065, + 0.009680095128715038, + -0.0009009367204271257, + 0.07250014692544937, + 0.06810472160577774, + 0.004669309593737125, + -0.040762171149253845, + 0.011824526824057102, + -0.06538571417331696, + 0.006217348854988813, + 0.12924183905124664, + -0.011231964454054832, + -0.02603132463991642, + 0.07488144189119339, + 0.029998071491718292, + -0.0021325889974832535, + 0.05082634091377258, + -0.027879580855369568, + -0.013211886398494244, + -0.023668620735406876, + -0.05865567922592163, + 0.010681302286684513, + 0.004820512142032385, + -0.009841172024607658, + -0.10810801386833191, + -0.06012976914644241, + -0.06289701163768768, + -0.07055538892745972, + -0.0612976998090744, + -0.08646824210882187, + 0.029108388349413872, + 0.1091175302863121, + -0.019432129338383675, + 0.013556892052292824, + -0.03710274398326874, + 0.008554816246032715, + -0.04953569173812866, + 0.045395627617836, + -0.06565716117620468, + -0.02619878388941288, + 0.06443079560995102, + 0.03023221343755722, + 0.026690471917390823, + -0.018337910994887352, + 0.007148791570216417, + 0.0628770962357521, + 0.010751411318778992, + 0.049573831260204315, + 0.005512729287147522, + 0.01970975287258625, + -0.05454821139574051, + -0.08825114369392395, + -0.028891408815979958, + 0.001624664175324142, + 0.023830164223909378, + 0.047814156860113144, + 0.029790008440613747, + -0.07067620009183884, + -0.027517098933458328, + -0.045368753373622894, + 0.04104212298989296, + -0.021786324679851532, + -0.033875033259391785, + -0.028942584991455078, + 0.11432668566703796, + 0.0527898333966732, + 0.01738383062183857, + -0.029100557789206505, + -0.1355661153793335, + -0.046813003718853, + -0.02546829916536808, + -0.0007978961220942438, + 0.027903685346245766, + -1.2159241014863777e-33, + 0.0676020160317421, + -0.017681999132037163, + 0.017519859597086906, + 0.07486537843942642, + 0.09546142816543579, + -0.01183463353663683, + -0.04810229688882828, + -0.05851912125945091, + -0.005963580682873726, + 0.0950625017285347, + 0.02600170113146305, + 0.033197421580553055, + -0.07048185914754868, + 0.08324161171913147, + 0.009675978682935238, + -0.10628782212734222, + -0.013091295026242733, + 0.0036653908900916576, + -0.0346246175467968, + -0.0061699156649410725, + -0.07948115468025208, + 0.08007856458425522, + -0.04671386256814003, + -0.07929756492376328, + -0.015133981592953205, + 0.06978963315486908, + 0.02971455454826355, + -0.023735692724585533, + -0.01772407814860344, + 0.014386872760951519, + -0.018129263073205948, + 0.006071898620575666, + -0.016322249546647072, + 0.07634962350130081, + 0.01064251083880663, + 0.023938894271850586, + -0.11799926310777664, + 0.003211595816537738, + -0.008835384622216225, + -0.03406155854463577, + -0.11115521192550659, + -0.01583254337310791, + -0.055065855383872986, + -0.014734344556927681, + -0.06787601113319397, + 0.0429639033973217, + -0.04823072627186775, + -0.0842934101819992, + 0.11560294777154922, + 0.02710134908556938, + 0.024101316928863525, + 0.031356316059827805, + -0.0026191524229943752, + -0.01538062933832407, + 0.02640491910278797, + 0.0073462678119540215, + 0.006450435146689415, + 0.06438066065311432, + 0.014162340201437473, + 0.018579652532935143, + 0.058696020394563675, + 0.03080650232732296, + 0.04173758253455162, + -0.07087269425392151, + 0.08749937266111374, + 0.13371405005455017, + -0.07247774302959442, + -0.03767472878098488, + 0.1340351551771164, + 0.03235724940896034, + 0.005087621975690126, + 0.00619047787040472, + 0.05098224803805351, + 0.08678705990314484, + 0.03932812437415123, + 0.06650277972221375, + 0.023354854434728622, + -0.0032181451097130775, + 0.004311844706535339, + -0.07294465601444244, + -0.0667559877038002, + -0.0024215104058384895, + -0.02319652959704399, + 0.049630798399448395, + 0.05588727816939354, + 0.03711727634072304, + -0.006739208009094, + -0.04870069772005081, + -0.022271698340773582, + 0.031640101224184036, + -0.10663843899965286, + -0.00824412889778614, + 0.038302645087242126, + -0.032488442957401276, + -0.1459512710571289, + -1.1498499313686416e-33, + 0.019346896559000015, + 0.03327788785099983, + -0.011255522258579731, + -0.018844198435544968, + -0.03833792731165886, + 0.07783947139978409, + -0.06456153094768524, + 0.07003838568925858, + 0.023041894659399986, + 0.09204554557800293, + 0.05183817818760872, + -0.04189663380384445, + 0.0033386913128197193, + -0.036696657538414, + -0.037560414522886276, + 0.0566253662109375, + 0.055329397320747375, + 0.03063824027776718, + -0.02704453282058239, + 0.0033891245257109404, + -0.05698036774992943, + -0.0032357953023165464, + -0.03480241447687149, + 0.08596046268939972, + -0.05059065297245979, + -0.032958198338747025, + -0.005747263785451651, + -0.026347877457737923, + -0.004742643795907497, + -0.01237898413091898, + -0.01078255008906126, + -0.05567433312535286, + -0.001841402379795909, + -0.0402059331536293, + -0.02274206653237343, + 0.04063974320888519, + 0.045163560658693314, + 0.053319405764341354, + -0.0025758061092346907, + 0.06066327169537544, + -0.05151037871837616, + 0.01175372302532196, + 0.04479416459798813, + -0.007555497344583273, + -0.02222474105656147, + -0.004730014596134424, + -0.0801030844449997, + -0.013135148212313652, + -0.06956402212381363, + 0.06698202341794968, + 0.05253695324063301, + -0.004141977988183498, + -0.016927532851696014, + -0.07468117773532867, + -0.04861776530742645, + -0.03542215749621391, + -0.014233609661459923, + -0.07877795398235321, + -0.05287178233265877, + 0.012397076934576035, + 0.004556493833661079, + 0.025514986366033554, + -0.06253564357757568, + -0.047687966376543045, + 0.046096932142972946, + 0.06154024600982666, + -0.013601209968328476, + -0.09871459752321243, + -0.031364817172288895, + 0.02494523860514164, + 0.04036679491400719, + 0.032226964831352234, + -0.02045326679944992, + 0.05742649361491203, + -0.039560094475746155, + -0.08617424219846725, + -0.013378581032156944, + 0.05467892438173294, + -0.04789930582046509, + -0.003363925265148282, + 0.06810588389635086, + 0.04170295223593712, + -0.03265291079878807, + 0.016352618113160133, + -0.038397643715143204, + 0.09172405302524567, + 0.04717455804347992, + 0.009066025726497173, + 0.04993691295385361, + -0.018840808421373367, + 0.02846364490687847, + 0.05927698314189911, + -0.059387728571891785, + 0.05668390169739723, + -0.05571794882416725, + -1.798110105255546e-08, + -0.05208149924874306, + -0.04029514640569687, + -0.038782522082328796, + -0.008222383446991444, + -0.05090808495879173, + 0.0010097459889948368, + -0.021969787776470184, + -0.10124794393777847, + -0.026907632127404213, + -0.04607919976115227, + 0.08494807779788971, + -0.016208045184612274, + -0.0757480189204216, + 0.018568065017461777, + -0.0006384081789292395, + -0.004275635350495577, + -0.07761558145284653, + 0.06468389183282852, + -0.048645514994859695, + -0.01758764311671257, + 0.007881388999521732, + 0.06524647027254105, + 0.06297235190868378, + -0.04219429939985275, + 0.03558913618326187, + 0.019965268671512604, + -0.014215790666639805, + 0.04909994825720787, + 0.0228537879884243, + 0.07597246766090393, + 0.03626077622175217, + 0.06688164919614792, + -0.04355061054229736, + -0.03966158628463745, + -0.10099110007286072, + 0.011890539899468422, + 0.028705066069960594, + -0.01819690316915512, + -0.03291541710495949, + 0.09951175004243851, + -0.013651186600327492, + -0.007504669483751059, + -0.0350198820233345, + 0.0413031280040741, + -0.023451590910553932, + -0.07071694731712341, + 0.026333650574088097, + -0.0895140990614891, + -0.07688594609498978, + -0.07382391393184662, + -0.017856348305940628, + 0.046655625104904175, + 0.032886918634176254, + 0.027805129066109657, + 0.014037038199603558, + -0.015182171016931534, + -0.06981655210256577, + 0.12099818140268326, + -0.06767546385526657, + 0.002309952164068818, + 0.050063636153936386, + 0.028972702100872993, + 0.07305977493524551, + 0.03992702066898346 + ], + "microphone-bold||audio,recording,music,sound,podcast,studio": [ + 0.003909650258719921, + -0.07079648971557617, + -0.06889470666646957, + -0.07177991420030594, + 0.057522740215063095, + 0.024348599836230278, + 0.07003238797187805, + -0.042704369872808456, + 0.02056880109012127, + -0.03399229794740677, + -0.01411483809351921, + -0.035344239324331284, + 0.019508780911564827, + -0.053572528064250946, + 0.026925617828965187, + -0.011111491359770298, + 0.007848329842090607, + 0.018729234114289284, + 0.0470435731112957, + 0.006203056778758764, + -0.014594403095543385, + 0.11013749986886978, + 0.05334991589188576, + 0.043150413781404495, + 0.08022737503051758, + 0.034354761242866516, + -0.003136303275823593, + 0.07490308582782745, + 0.07038579881191254, + -0.07412834465503693, + 0.011391447857022285, + -0.025724243372678757, + 0.18807774782180786, + 0.038959067314863205, + 0.012775931507349014, + -0.023397652432322502, + 0.011378073133528233, + -0.011534828692674637, + -0.045148223638534546, + 0.0008792684529908001, + 0.005925753619521856, + -0.02353534661233425, + -0.012865707278251648, + -0.0007381742470897734, + -0.041610438376665115, + -0.06394850462675095, + -0.07443089783191681, + -0.06330049782991409, + -0.015286331064999104, + 0.025406433269381523, + -0.04090246185660362, + -0.12908652424812317, + -0.053606171160936356, + 0.075810506939888, + -0.03667227551341057, + 0.04490779712796211, + -0.0348520390689373, + 0.05072350800037384, + 0.06367374211549759, + -0.006695551797747612, + 0.029492095112800598, + -0.05002034083008766, + 0.03301288187503815, + 0.053139928728342056, + -0.01916489750146866, + 0.05844828113913536, + -0.013622000813484192, + 0.07348106056451797, + 0.01960325986146927, + -0.01781732775270939, + -0.03756411746144295, + 0.02492709271609783, + -0.04501142352819443, + -0.03734472021460533, + 0.008352039381861687, + 0.034918736666440964, + 0.03838516026735306, + -0.03774534910917282, + -0.042309828102588654, + -0.03604910895228386, + -0.03612365946173668, + -0.08011479675769806, + -0.06378796696662903, + -0.05865029618144035, + 0.06387009471654892, + 0.051924824714660645, + -0.04574858024716377, + -0.11461926251649857, + -0.06167129427194595, + -0.06777237355709076, + -0.16888415813446045, + -0.03223269805312157, + -0.0436415821313858, + -0.04541425406932831, + -0.06977985054254532, + 0.033522360026836395, + 0.06041029095649719, + 0.0010780723532661796, + 0.06183414161205292, + 0.07329270243644714, + 0.02437623031437397, + -0.042550571262836456, + -0.011713121086359024, + -0.013072012923657894, + -0.05003921315073967, + -0.09876247495412827, + -0.024216296151280403, + -0.013017009012401104, + 0.04257817938923836, + -0.006076027173548937, + -0.02964654378592968, + -0.05307495966553688, + -0.04911838844418526, + -0.06691431254148483, + 0.07558099925518036, + 0.027823176234960556, + -0.057381387799978256, + -0.002893560566008091, + 0.06324119120836258, + -0.0015730222221463919, + -0.03124692104756832, + -0.028180960565805435, + -0.049021605402231216, + -0.00996364839375019, + -0.01699010841548443, + 0.034560445696115494, + -0.004210251849144697, + -1.793559913264038e-33, + 0.09043565392494202, + -0.01797034963965416, + 0.0046661109663546085, + 0.06210979446768761, + 0.062239598482847214, + 0.021945111453533173, + -0.069053515791893, + 0.012636620551347733, + -0.02823048271238804, + 0.051277127116918564, + 0.07841064780950546, + 0.05792443826794624, + -0.07046397775411606, + 0.0387955978512764, + 0.07504522800445557, + 0.0235009603202343, + -0.06264481693506241, + 0.030310016125440598, + -0.06981632113456726, + -0.04275733605027199, + -0.05276777222752571, + 0.04914751648902893, + 0.013670364394783974, + 0.07601036131381989, + 0.09128393232822418, + -0.023264002054929733, + 0.07312754541635513, + -0.027410389855504036, + 0.0030394759960472584, + 0.014682576060295105, + -0.020952627062797546, + -0.02872002124786377, + 0.033017199486494064, + -0.04755959287285805, + 0.04203811660408974, + 0.04559091851115227, + -0.07818304002285004, + 0.03376028314232826, + 0.023518944159150124, + 0.0037229442968964577, + -0.09955552220344543, + -0.034743744879961014, + -0.061817482113838196, + -0.07795589417219162, + 0.04746979475021362, + 0.07939518243074417, + -0.028767583891749382, + -0.020794110372662544, + 0.04834028705954552, + 0.028005629777908325, + -0.026466788724064827, + -0.012157870456576347, + 0.004356870893388987, + 0.037202198058366776, + 0.021769361570477486, + -0.07372380048036575, + 0.019663602113723755, + 0.08635193854570389, + 0.024818798527121544, + 0.019410287961363792, + -0.0168350450694561, + 0.03438055142760277, + 0.05482134968042374, + -0.06941639631986618, + -0.02243961952626705, + 0.09492642432451248, + 0.03928101062774658, + 0.023907944560050964, + 0.100265271961689, + -0.011737491935491562, + -0.014716662466526031, + 0.05822053179144859, + 0.022150583565235138, + 0.023482050746679306, + -0.05483780801296234, + 0.0340665802359581, + -0.06468755751848221, + -0.05535420775413513, + 0.01220005750656128, + 0.039504021406173706, + -0.09949608892202377, + 0.08702976256608963, + -0.11676780134439468, + 0.1327180713415146, + -0.043830547481775284, + 0.002312312601134181, + 0.004112036433070898, + -0.10765913873910904, + -0.026722176000475883, + 0.03393882140517235, + -0.08365470916032791, + 0.11479590088129044, + -0.03890378400683403, + -0.046084433794021606, + -0.10312435775995255, + -6.838127522754163e-34, + 0.02648213692009449, + 0.13075591623783112, + -0.015629522502422333, + 0.005623295437544584, + -0.010583879426121712, + 0.05719512701034546, + 0.09657519310712814, + 0.0829077959060669, + 0.011655864305794239, + 0.006435173097997904, + 0.040492020547389984, + -0.05666733533143997, + -0.02966390550136566, + -0.027533890679478645, + -0.06117391213774681, + -0.0023804036900401115, + -0.056743424385786057, + 0.019640542566776276, + 0.008897442370653152, + 0.044859327375888824, + 0.01861676760017872, + -0.001105138915590942, + 0.015235926024615765, + 0.0929144099354744, + -0.02847297675907612, + -0.01421237364411354, + -0.07046183198690414, + 0.031129183247685432, + -0.03542144224047661, + -0.03018546663224697, + 0.0056387558579444885, + 0.022907136008143425, + -0.012679142877459526, + -0.029668819159269333, + -0.01292760856449604, + 0.004072988405823708, + 0.08780112862586975, + 0.006466476712375879, + 0.04971422627568245, + -0.07092180848121643, + -0.02281157113611698, + 0.0281808003783226, + 0.055766455829143524, + 0.025699911639094353, + -0.030775705352425575, + -0.07095157355070114, + -0.05627834051847458, + -0.009792564436793327, + -0.04939539358019829, + 0.01396257895976305, + 0.040814049541950226, + -0.04247434809803963, + 0.02607736550271511, + -0.004659088794142008, + -0.06023021042346954, + -0.0400986447930336, + -0.016368448734283447, + -0.046474847942590714, + 0.0060192858800292015, + 0.0891147032380104, + -0.018175996840000153, + 0.02306586690247059, + -0.03829975798726082, + -0.02826317772269249, + 0.0050069475546479225, + -0.00619910191744566, + 0.0879673957824707, + -0.008012224920094013, + -0.00806895550340414, + 0.013050384819507599, + 0.0842650830745697, + 0.039984628558158875, + 0.0672871395945549, + 0.07539001852273941, + -0.041945930570364, + -0.014019321650266647, + -0.05841091647744179, + -0.0547063983976841, + -0.040079593658447266, + 0.010852937586605549, + -0.004842841532081366, + 0.010155180469155312, + 0.0007731550140306354, + 0.0236574187874794, + -0.014896907843649387, + 0.08114936947822571, + 0.04230466112494469, + -0.005955162923783064, + -0.0044654980301856995, + 0.015394492074847221, + -0.02884109690785408, + 0.05954131856560707, + -0.03513476625084877, + 0.009361819364130497, + -0.04062764719128609, + -1.7758955195290582e-08, + -0.017890630289912224, + -0.032296787947416306, + 0.010358132421970367, + -0.0646100714802742, + 0.0015090900706127286, + -0.08115982264280319, + 0.03938557207584381, + -0.03803902119398117, + 0.03552500903606415, + -0.04810603708028793, + 0.08605664223432541, + -0.030376583337783813, + -0.04951327294111252, + 0.0468021035194397, + 0.03448754549026489, + 0.006249289494007826, + -0.09578082710504532, + 0.060758791863918304, + -0.034135203808546066, + -0.14846092462539673, + -0.010507479310035706, + 0.05823500454425812, + 0.02064640447497368, + -0.018222084268927574, + 0.09634167701005936, + -0.05399865657091141, + -0.02549174055457115, + 0.08607564866542816, + 0.03354925289750099, + 0.04842479154467583, + -0.007389030419290066, + 0.0409865640103817, + 0.008933632634580135, + 0.025061799213290215, + -0.054338593035936356, + -0.046466197818517685, + -0.059906672686338425, + -0.01996343955397606, + -0.04897705465555191, + 0.0844937115907669, + -0.03648848831653595, + -0.04663248360157013, + -0.04239789396524429, + -0.025566445663571358, + -0.019793812185525894, + 0.025260891765356064, + 0.08380713313817978, + -0.06216396018862724, + -0.05595090240240097, + -0.061018772423267365, + -0.08239790052175522, + -0.006176188588142395, + 0.07207147032022476, + 0.03654482588171959, + -0.03879549354314804, + 0.0076179057359695435, + -0.011392873711884022, + 0.06698476523160934, + -0.011937073431909084, + -0.025108106434345245, + 0.04958656430244446, + 0.030731312930583954, + 0.03692397475242615, + 0.036769308149814606 + ], + "microphone-slash-bold||audio,recording,music,sound,podcast,studio,muted,disabled": [ + 0.0005957477260380983, + -0.05827770382165909, + -0.036388859152793884, + -0.0460989847779274, + 0.04673469439148903, + 0.004046672489494085, + 0.018545901402831078, + -0.055616509169340134, + 0.01780538447201252, + -0.035484302788972855, + 0.03656056150794029, + -0.038497716188430786, + -0.03000788763165474, + -0.0071411458775401115, + -0.018716681748628616, + 0.004830298945307732, + 0.021258626133203506, + -0.0003126604133285582, + 0.020013168454170227, + 0.029901865869760513, + -0.05259832739830017, + 0.13128125667572021, + 0.01723632961511612, + 0.032734282314777374, + 0.09296883642673492, + 0.016039827838540077, + -0.020215965807437897, + 0.08034424483776093, + 0.032278869301080704, + -0.042247794568538666, + 0.03583599999547005, + -0.04556616023182869, + 0.18227362632751465, + 0.03589877858757973, + 0.04161883890628815, + -0.01964934915304184, + 0.02617037482559681, + -0.03379654139280319, + -0.0061207981780171394, + -0.026521632447838783, + -0.02114335261285305, + -0.04138144850730896, + -0.028927970677614212, + -0.06487596035003662, + -0.08173675090074539, + -0.0736578106880188, + -0.07040466368198395, + -0.09811293333768845, + -0.024526875466108322, + 0.014443202875554562, + -0.02512241154909134, + -0.06786654889583588, + -0.028732331469655037, + 0.055883411318063736, + 0.012519347481429577, + 0.03599847853183746, + -0.027347754687070847, + 0.08947712182998657, + 0.07524693757295609, + -0.021505383774638176, + -0.006324786692857742, + -0.05394251272082329, + 0.039319612085819244, + 0.015145542100071907, + -0.04326927289366722, + 0.049156658351421356, + -0.025503244251012802, + 0.024915527552366257, + -0.004431894980370998, + 0.025930199772119522, + -0.031574737280607224, + 0.024841176345944405, + -0.04941166192293167, + -0.040437694638967514, + 0.006557418964803219, + 0.029577480629086494, + 0.02596541866660118, + -0.02906757965683937, + -0.02463190071284771, + -0.030678508803248405, + -0.016818320378661156, + -0.06827129423618317, + -0.05018898844718933, + -0.005071026273071766, + 0.06230837479233742, + 0.06551811844110489, + -0.04693622514605522, + -0.12143274396657944, + -0.041002269834280014, + -0.0882047712802887, + -0.14946556091308594, + -0.06618478149175644, + 0.02566111832857132, + -0.022025538608431816, + -0.06378678232431412, + 0.006468262057751417, + 0.03895212337374687, + 0.013089880347251892, + 0.006960347294807434, + 0.07333424687385559, + 0.05430920422077179, + -0.03690527379512787, + -0.06723769754171371, + -0.017296092584729195, + -0.012575984001159668, + -0.07318876683712006, + 0.004066483583301306, + -0.014765986241400242, + -0.0259581059217453, + -0.032660678029060364, + -0.01550562959164381, + -0.03274797648191452, + -0.030209898948669434, + -0.03577568382024765, + 0.01879357174038887, + 0.04678454250097275, + -0.041088979691267014, + -0.0358293242752552, + 0.041831713169813156, + 0.04720780998468399, + -0.02084685117006302, + -0.06123872473835945, + -0.07471072673797607, + -0.041657499969005585, + -0.006686793640255928, + 0.04490869492292404, + 0.03913998231291771, + -3.131763437062262e-33, + 0.10314810276031494, + -0.04589679837226868, + 0.008699427358806133, + 0.016425631940364838, + 0.10271742939949036, + -0.010892138816416264, + -0.04729406163096428, + 0.024153532460331917, + -0.03804927319288254, + 0.01539046410471201, + 0.10418900102376938, + 0.018222104758024216, + -0.03112153708934784, + -0.003903931938111782, + 0.04913581162691116, + 0.03159438818693161, + 0.006137517746537924, + -0.00155344745144248, + -0.06140131875872612, + -0.06937455385923386, + 0.01162070780992508, + 0.09586857259273529, + 0.012059537693858147, + 0.09646958112716675, + 0.07545162737369537, + 0.01141454093158245, + 0.046409714967012405, + -0.023151716217398643, + 0.05628581717610359, + 0.0407826267182827, + -0.0551132932305336, + -0.011915629729628563, + 0.035114727914333344, + -0.03759772330522537, + 0.025575757026672363, + 0.09012662619352341, + -0.03135941922664642, + 0.09301643073558807, + -0.019859733060002327, + -0.00484587112441659, + -0.08716399222612381, + -0.07639133185148239, + -0.10797704011201859, + -0.09836926311254501, + 0.0266745463013649, + 0.024079415947198868, + -0.013437188230454922, + -0.0607624389231205, + 0.01932252012193203, + 0.043137695640325546, + -0.04561600461602211, + 0.013421686366200447, + 0.04961003363132477, + 0.03899407014250755, + 0.002213516039773822, + -0.09852319955825806, + -0.004302079789340496, + 0.0685960054397583, + 0.023304257541894913, + 0.0008151463698595762, + 0.019540272653102875, + 0.022206569090485573, + 0.061461638659238815, + -0.07612577825784683, + -0.03994720056653023, + 0.0656624361872673, + 0.016871236264705658, + 0.04631675034761429, + 0.05260670185089111, + -0.03878023847937584, + -0.024410180747509003, + 0.019760509952902794, + 0.03063930757343769, + 0.02623860165476799, + -0.08930645883083344, + 0.029225856065750122, + -0.0818222239613533, + -0.06256425380706787, + 0.02627762407064438, + 0.017126239836215973, + -0.10545998066663742, + 0.05750339478254318, + -0.08984113484621048, + 0.09681908786296844, + -0.01681605726480484, + -0.013695506379008293, + 0.0035167112946510315, + -0.05358784273266792, + -0.02600199729204178, + 0.013428392820060253, + -0.040179330855607986, + 0.1068601906299591, + -0.06264087557792664, + -0.06955773383378983, + -0.07290231436491013, + 2.636210696845843e-34, + 0.0320391021668911, + 0.1591675579547882, + -0.04488466680049896, + 0.000501885311678052, + -0.0588393397629261, + 0.006618122570216656, + 0.0788191631436348, + 0.08902537822723389, + -0.0005300979246385396, + -0.020911293104290962, + 0.07359866797924042, + -0.043615471571683884, + -0.017623018473386765, + -0.04434645548462868, + -0.026144538074731827, + -0.03479894995689392, + -0.08536093682050705, + 0.005780482664704323, + 0.0030759116634726524, + 0.07598518580198288, + 0.0064142849296331406, + 0.013555534183979034, + 0.04297126084566116, + 0.11700773239135742, + -0.0580800399184227, + -0.007749009877443314, + -0.0417693629860878, + 0.04253454506397247, + 0.014651507139205933, + -0.02353825233876705, + 0.03486957401037216, + 0.08013173937797546, + -0.0709443986415863, + -0.056801971048116684, + 0.012062267400324345, + 0.007614653557538986, + 0.0002573723904788494, + 0.06477722525596619, + 0.02747725322842598, + -0.10910625010728836, + -0.02231324091553688, + 0.0471888892352581, + 0.05350380390882492, + 0.06110605597496033, + 0.007426078896969557, + -0.06093549728393555, + -0.026052266359329224, + -0.05051948502659798, + -0.010004031471908092, + 0.006675728131085634, + 0.06775776296854019, + -0.04667610302567482, + 0.06456749141216278, + 0.015767129138112068, + -0.033891115337610245, + -0.030353127047419548, + -0.03790136054158211, + -0.011622091755270958, + -0.043184153735637665, + 0.12602707743644714, + 0.022672751918435097, + 0.027103642001748085, + -0.0806088000535965, + -0.04817550256848335, + 0.03910508006811142, + 0.0041830153204500675, + 0.0705626904964447, + 0.04626667499542236, + 0.05098988860845566, + 0.01198887825012207, + 0.06744606047868729, + 0.08639640361070633, + 0.0969180017709732, + 0.03849843889474869, + 0.02360483631491661, + 0.0021917016711086035, + -0.13455189764499664, + -0.05637267231941223, + -0.033735692501068115, + 0.050499673932790756, + 0.030882561579346657, + 0.011895565316081047, + 0.0032108298037201166, + 0.005282747093588114, + -0.022866956889629364, + 0.040456365793943405, + -0.008828178979456425, + 0.05451057106256485, + -0.0035916680935770273, + -0.025915011763572693, + -0.06262671947479248, + 0.013254495337605476, + -0.0417424812912941, + 0.05090833827853203, + -0.06014798954129219, + -1.9564547315553682e-08, + -0.003265021601691842, + -0.045013584196567535, + -0.014231993816792965, + -0.04822000488638878, + 0.03547914698719978, + -0.07447981089353561, + 0.017356110736727715, + -0.05008258298039436, + 0.037196096032857895, + -0.04038314148783684, + 0.05901001766324043, + -0.036508142948150635, + -0.021242035552859306, + 0.059590019285678864, + 0.018354499712586403, + 0.020842058584094048, + -0.09739064425230026, + 0.08169586211442947, + -0.02548925019800663, + -0.1249665766954422, + -0.03300753980875015, + 0.03314390033483505, + 0.016080303117632866, + -0.0024745119735598564, + 0.11564658582210541, + -0.07311321794986725, + -0.008214915171265602, + 0.049567610025405884, + 0.012122102081775665, + 0.01131117157638073, + -0.019882021471858025, + 0.034476570785045624, + -0.002837852109223604, + 0.03410085290670395, + -0.05059903487563133, + -0.0060903700068593025, + -0.0719209685921669, + 0.03233106806874275, + -0.023710543289780617, + 0.011403748765587807, + -0.03165849298238754, + -0.062101442366838455, + -0.013196926563978195, + -0.02240774594247341, + -0.026289651170372963, + 0.026750963181257248, + 0.0751149132847786, + -0.012822539545595646, + -0.04996669664978981, + -0.04545757547020912, + -0.057698000222444534, + 0.04128770902752876, + 0.07417096942663193, + 0.04770273342728615, + -0.010178040713071823, + 0.028048381209373474, + 0.022314168512821198, + 0.07125131040811539, + -0.05275560915470123, + -0.047768715769052505, + 0.0722341239452362, + -0.0011221258901059628, + 0.02333535999059677, + 0.021230267360806465 + ], + "microphone-stage-bold||audio,recording,music,sound,performance,concert": [ + 0.03908634930849075, + -0.01856984756886959, + -0.06082215905189514, + -0.06307081133127213, + 0.019124779850244522, + 0.0492919497191906, + 0.07594027370214462, + -0.05454529449343681, + 0.021672628819942474, + -0.05813992768526077, + -0.034881241619586945, + -0.054046258330345154, + 0.014970044605433941, + -0.045207079499959946, + 0.0048351106233894825, + -0.023034440353512764, + 0.07709220051765442, + 0.01984296552836895, + 0.03632597625255585, + 0.03417699784040451, + 0.006257969420403242, + 0.058243278414011, + 0.0155104398727417, + 0.05073164775967598, + 0.05131937190890312, + 0.04047926887869835, + -0.03575842082500458, + 0.08926744759082794, + 0.05392149090766907, + -0.08706000447273254, + 0.013057091273367405, + -0.03322886303067207, + 0.1120094358921051, + 0.02854531817138195, + -0.006553154904395342, + -0.023890716955065727, + 0.008452578447759151, + -0.03088097833096981, + -0.06110549345612526, + 0.026670344173908234, + 0.01022981945425272, + -0.016330907121300697, + -0.019145822152495384, + -0.004886353854089975, + -0.042462922632694244, + -0.056721050292253494, + -0.06729041785001755, + -0.07595710456371307, + -0.046620920300483704, + 0.029660096392035484, + -0.04392385855317116, + -0.12423358112573624, + -0.002607573289424181, + 0.05468171462416649, + -0.06629010289907455, + 0.06804149597883224, + -0.010945108719170094, + 0.008622297085821629, + 0.041942622512578964, + -0.0005276339361444116, + -0.0007767881033942103, + -0.0446811281144619, + 0.019420217722654343, + 0.04271220788359642, + -0.04202340170741081, + 0.06552889198064804, + -0.015641067177057266, + 0.02517962083220482, + -0.011233080178499222, + 0.03635196387767792, + -0.027865679934620857, + 0.0004969907458871603, + 0.01925964094698429, + -0.09498404711484909, + 0.025413183495402336, + 0.0309138223528862, + -0.01474477257579565, + -0.08000446110963821, + -0.031394537538290024, + -0.01996139995753765, + 0.022440554574131966, + -0.10263713449239731, + -0.10042358189821243, + -0.09761469811201096, + 0.04353206604719162, + 0.0158994123339653, + -0.03933165967464447, + -0.09910460561513901, + -0.11595842987298965, + -0.06487417221069336, + -0.15198028087615967, + 0.005251994356513023, + -0.09135124832391739, + -0.01385345309972763, + -0.06667423993349075, + 0.0473966971039772, + 0.047845177352428436, + -0.026186440140008926, + 0.13244299590587616, + 0.0742749571800232, + 0.037476517260074615, + 0.005835452117025852, + 0.019804421812295914, + 0.017122318968176842, + -0.08899221569299698, + -0.088441401720047, + -0.014353752136230469, + 0.05707845464348793, + 0.012007997371256351, + -0.04345289245247841, + -0.030943648889660835, + -0.02699158526957035, + -0.01914452761411667, + -0.016976280137896538, + 0.04435351490974426, + 0.037717726081609726, + -0.08062587678432465, + 0.008317092433571815, + 0.08513578027486801, + -0.0422232449054718, + 0.02441599778831005, + -0.03190992772579193, + -0.030857639387249947, + 0.04311694949865341, + -0.023789063096046448, + 0.027552412822842598, + -0.009170510806143284, + -2.4317016335208873e-33, + 0.07171449810266495, + -0.04764503613114357, + 0.017633555456995964, + 0.04247533157467842, + 0.05827454477548599, + 0.009672602638602257, + -0.10859045386314392, + -0.020668845623731613, + -0.0236427653580904, + 0.04709013178944588, + 0.06668424606323242, + 0.003935880493372679, + -0.030952591449022293, + -0.009599458426237106, + 0.07421809434890747, + 0.015515928156673908, + -0.04344902187585831, + 0.06426375359296799, + -0.07225100696086884, + -0.012868438847362995, + -0.07262003421783447, + 0.0932174026966095, + -0.016408676281571388, + 0.024683654308319092, + 0.08842352032661438, + 0.027036525309085846, + 0.07205823063850403, + -0.022590184584259987, + -0.038323841989040375, + 0.015582503750920296, + 0.013892232440412045, + -0.0145040862262249, + 0.02346542477607727, + -0.025593208149075508, + 0.06504864990711212, + 0.040500741451978683, + -0.05448919162154198, + 0.03908233717083931, + 0.044985514134168625, + -0.002672782866284251, + -0.11709084361791611, + -0.021531011909246445, + -0.03163011372089386, + -0.05388621613383293, + -0.024442654103040695, + 0.09778501838445663, + -0.07318273186683655, + 0.005618790164589882, + 0.08480615168809891, + 0.035619501024484634, + -0.057329121977090836, + -0.013521257787942886, + 0.005175523925572634, + 0.027200745418667793, + 0.07824651151895523, + -0.02580416575074196, + -0.007686509285122156, + 0.069686159491539, + 0.011363990604877472, + 0.0006630138377659023, + -0.01063925214111805, + 0.034630581736564636, + 0.029411468654870987, + -0.06176312267780304, + -0.027597889304161072, + 0.06614186614751816, + 0.0065438030287623405, + -0.054834432899951935, + 0.10820747166872025, + -0.013479597866535187, + -0.014384075999259949, + 0.0333702377974987, + 0.07109447568655014, + 0.01233702339231968, + 0.008989149704575539, + 0.007258281577378511, + -0.051835935562849045, + 0.00411419989541173, + 0.02287094108760357, + 0.009259326383471489, + -0.08518170565366745, + 0.08787202835083008, + -0.0726417675614357, + 0.08740922063589096, + -0.023514194414019585, + 0.0040858290158212185, + -0.016340579837560654, + -0.09589610248804092, + -0.02852022275328636, + 0.05260801687836647, + -0.09021443873643875, + 0.07113797217607498, + -0.0632324293255806, + -0.02883177064359188, + -0.11568967252969742, + 1.2560561214719237e-34, + 0.12489823251962662, + 0.12817713618278503, + 0.01161304209381342, + 0.0027056564576923847, + 0.03451972454786301, + 0.0656626895070076, + 0.06247750669717789, + 0.09320316463708878, + 0.042149268090724945, + 0.033711180090904236, + 0.02685430273413658, + -0.028603238984942436, + -0.02005140297114849, + -0.07744467258453369, + -0.0512571819126606, + -0.03878144547343254, + -0.007558023557066917, + 0.04024185612797737, + 0.01775677688419819, + 0.05988116189837456, + 0.007505791261792183, + 0.006228248123079538, + -0.02365771308541298, + 0.055275969207286835, + -0.05941062420606613, + -0.01596197672188282, + -0.07159888744354248, + 0.013893594034016132, + -0.05908398702740669, + -0.06647311896085739, + 0.0010264323791489005, + 0.008075328543782234, + 0.006931066047400236, + -0.048599231988191605, + -0.031116940081119537, + 0.025977879762649536, + 0.0771133154630661, + -0.02852339670062065, + 0.00031693492201156914, + -0.0736694410443306, + -0.058536186814308167, + 0.0384083054959774, + 0.03626863658428192, + 0.016724126413464546, + -0.010928286239504814, + -0.02922712452709675, + -0.04362015798687935, + 0.03466702625155449, + -0.0418730191886425, + 0.009897151961922646, + -0.008948531933128834, + -0.04299384355545044, + 0.030134037137031555, + -0.018304336816072464, + -0.022407779470086098, + -0.029565580189228058, + -0.04027850180864334, + -0.08012612164020538, + 0.0003041991440113634, + 0.1060367152094841, + -0.001712885219603777, + 0.07519885897636414, + -0.06996113806962967, + -0.04126690700650215, + 0.02638264186680317, + -0.0017779945628717542, + 0.0423559732735157, + -0.039288800209760666, + 0.03770840913057327, + 0.04075191169977188, + 0.04807811975479126, + 0.04568443074822426, + 0.04731249809265137, + 0.10238563269376755, + -0.04419046267867088, + -0.028788253664970398, + -0.07301526516675949, + -0.027686120942234993, + -0.01524517871439457, + 0.026935981586575508, + 0.002811226062476635, + -0.005200635176151991, + -0.02150825969874859, + -0.025004681199789047, + -0.004124709405004978, + 0.11316537111997604, + 0.023182151839137077, + -0.023980384692549706, + -0.024564454331994057, + 0.0025991976726800203, + 0.01715688407421112, + 0.04337945207953453, + -0.054384712129831314, + -0.006187424995005131, + 0.03837475925683975, + -1.777661751134474e-08, + -0.018745610490441322, + 0.01177592109888792, + -0.03506337106227875, + -0.0744704082608223, + -0.04953586310148239, + -0.10188563913106918, + 0.08162190020084381, + -0.048187121748924255, + 0.029726821929216385, + -0.04767944663763046, + 0.08202335983514786, + -0.02742629684507847, + -0.019908390939235687, + 0.04303237423300743, + -0.041621431708335876, + 0.022969728335738182, + -0.11269301176071167, + 0.0803673043847084, + -0.03513448312878609, + -0.05796728655695915, + -0.01005558855831623, + 0.059671562165021896, + 0.019245311617851257, + -0.05427046865224838, + 0.09745359420776367, + -0.017669277265667915, + -0.023772655054926872, + 0.10611199587583542, + 0.014839725568890572, + 0.03048054687678814, + -0.008559594862163067, + 0.042744480073451996, + -0.004158144351094961, + 0.05767308548092842, + -0.00456853024661541, + -0.04009711369872093, + -0.08564051985740662, + 0.005691734608262777, + -0.005944316275417805, + 0.08069158345460892, + -0.0068399482406675816, + -0.007394277490675449, + -0.01941339112818241, + 0.014964823611080647, + 0.014794494025409222, + 0.0533612035214901, + 0.04952428862452507, + -0.016889477148652077, + -0.06626522541046143, + -0.059406764805316925, + -0.08535891771316528, + -0.022667773067951202, + -0.023379959166049957, + 0.03206614404916763, + -0.023831436410546303, + 0.027351073920726776, + 0.03305039182305336, + 0.12870706617832184, + -0.005789025221019983, + 0.008264690637588501, + 0.09455792605876923, + 0.016114605590701103, + 0.031574834138154984, + 0.0419980064034462 + ], + "microscope-bold||*new*,science,biology,experiment,magnify": [ + -0.03507436066865921, + -0.022174526005983353, + 0.019679589197039604, + -0.014070081524550915, + -0.01396182831376791, + -0.0952799990773201, + 0.01854032836854458, + -0.00598677946254611, + -0.010191322304308414, + 0.08063577860593796, + 0.05313829332590103, + -0.02612260915338993, + -0.06573612987995148, + 0.06408470124006271, + -0.13264739513397217, + 0.04054621234536171, + -0.0659206435084343, + 0.04097039997577667, + -0.06616374850273132, + 0.040038447827100754, + 0.10286399722099304, + 0.02504832111299038, + 0.07052808254957199, + 0.027344245463609695, + 0.05425465479493141, + 0.016338758170604706, + 0.006271973252296448, + -0.0024596473667770624, + -0.009202091954648495, + -0.07236509770154953, + -0.010407240130007267, + 0.04604955017566681, + 0.053063422441482544, + -0.027761515229940414, + 0.09124234318733215, + 0.024324940517544746, + -0.03657432645559311, + -0.03980756178498268, + 0.05871661379933357, + 0.02827121876180172, + 0.05204044282436371, + -0.052636560052633286, + 0.01931498572230339, + 0.04495467618107796, + 0.041154857724905014, + 0.026390621438622475, + 0.08321797847747803, + -0.025500062853097916, + 0.047929491847753525, + 0.011491585522890091, + -0.09754140675067902, + -0.13010458648204803, + -0.15136681497097015, + -0.01731475442647934, + 0.032425303012132645, + 0.04926303029060364, + -0.03285297751426697, + -0.0833967998623848, + 0.04120425134897232, + -0.020188981667160988, + 0.055740341544151306, + 0.01136814896017313, + 0.0013987269485369325, + 0.058845896273851395, + 0.0881907120347023, + -0.03674245625734329, + 0.017671052366495132, + -0.03989090025424957, + 0.01604030840098858, + 0.044636070728302, + 0.04927758872509003, + 0.017929919064044952, + 0.017642321065068245, + 0.049087606370449066, + 0.011160235852003098, + -0.029414838179945946, + 0.00599484471604228, + 0.03612070530653, + 0.05338304117321968, + 0.011172788217663765, + -0.02553175576031208, + -0.05565004050731659, + -0.013511322438716888, + 0.01346192043274641, + 0.010423233732581139, + 0.05221669375896454, + -0.04546637460589409, + -0.036527130752801895, + -0.06792876869440079, + -0.06053987145423889, + -0.06662140786647797, + -0.013552093878388405, + -0.10368230938911438, + 0.027018843218684196, + -0.10085952281951904, + -0.04554472491145134, + 0.03427882120013237, + -0.04698300361633301, + 0.025672990828752518, + 0.028948528692126274, + 0.03434542939066887, + 0.0071374583058059216, + 0.0637691542506218, + 0.035866815596818924, + -0.04336584359407425, + -0.07833729684352875, + 0.00713800173252821, + -0.011868997476994991, + 0.02367609553039074, + 0.0915551409125328, + 0.023187940940260887, + -0.024598926305770874, + -0.048382166773080826, + 0.010429353453218937, + 0.03700466826558113, + 0.002572554163634777, + -0.015254203230142593, + -0.020812824368476868, + 0.03929818049073219, + 0.015944385901093483, + 0.013393664732575417, + -0.026676969602704048, + -0.06680291146039963, + -0.04067494720220566, + -0.01913057081401348, + 0.10697148740291595, + -0.049009498208761215, + -3.1658634261536626e-33, + 0.06646820157766342, + -0.00827966257929802, + -0.015013366937637329, + 0.1123884916305542, + -0.060087136924266815, + 0.04533173516392708, + 0.005828492343425751, + -0.029874535277485847, + -0.05473000556230545, + -0.0019383084727451205, + 0.016142666339874268, + 0.09065379202365875, + 0.004286251496523619, + 0.08774455636739731, + -0.01632600650191307, + -0.058833617717027664, + 0.0431552417576313, + 0.03673973307013512, + -0.03994675725698471, + -0.023499000817537308, + -0.06676474213600159, + 0.03675473853945732, + -0.033867232501506805, + -0.021820172667503357, + 0.01552665513008833, + -0.0522775761783123, + 0.003506741253659129, + -0.07212444394826889, + -0.036203473806381226, + 0.007370689418166876, + 0.050911758095026016, + 0.02739132009446621, + -0.005754744168370962, + -0.005340118892490864, + -0.026957686990499496, + 0.014752939343452454, + -0.03359076380729675, + -0.03026658296585083, + -0.0005848046275787055, + -0.011543982662260532, + -0.03457397222518921, + 0.022197207435965538, + 0.03704270347952843, + 0.004152275621891022, + 0.052635308355093, + 0.08806198090314865, + -0.08814740180969238, + -0.017728514969348907, + 0.058618687093257904, + 0.0331631638109684, + 0.02651187777519226, + -0.04496365413069725, + 0.05240069329738617, + -0.04909561946988106, + 0.05490175634622574, + 0.06234496459364891, + -0.05311805009841919, + 0.019161909818649292, + -0.05176636576652527, + -0.059923239052295685, + 0.04297429323196411, + 0.045833099633455276, + 0.012434707954525948, + 0.09490490704774857, + 0.05885380506515503, + 0.07649729400873184, + -0.07531784474849701, + 0.023733846843242645, + 0.035569190979003906, + 0.05344840884208679, + -0.05615561082959175, + 0.016626030206680298, + -0.021741990000009537, + -0.008222296833992004, + 0.011285627260804176, + 0.04848834127187729, + -0.010360682383179665, + 0.004558132961392403, + 0.009008620865643024, + -0.06156284734606743, + -0.023097869008779526, + -0.025874944403767586, + -0.09485097974538803, + -0.017453646287322044, + -0.13591937720775604, + 0.06412864476442337, + 0.016283413395285606, + -0.03089132346212864, + 0.0005606164922937751, + 0.025416161864995956, + -0.039817191660404205, + -0.04501764848828316, + -0.07957274466753006, + -0.06484093517065048, + -0.13084544241428375, + -6.00432366577699e-34, + 0.016692930832505226, + -0.033379338681697845, + -0.06301310658454895, + 0.015177392400801182, + -0.03599540516734123, + 0.09992071986198425, + 0.001597754773683846, + -0.028722956776618958, + -0.02854669839143753, + 0.016311166808009148, + 0.04234414920210838, + 0.03677767515182495, + -0.06538590788841248, + -0.1077883243560791, + -0.03634591028094292, + 0.005926179233938456, + -0.06827377527952194, + 0.01265434268862009, + -0.009666571393609047, + 0.06477270275354385, + -0.07351988554000854, + 0.09627394378185272, + -0.017607802525162697, + 0.01515121292322874, + -0.006193303503096104, + 0.03296437859535217, + 0.02682197466492653, + -0.03002125397324562, + -0.027107663452625275, + -0.008333110250532627, + -0.06979449838399887, + -0.09029935300350189, + 0.056875649839639664, + 0.055292125791311264, + -0.03173161298036575, + 0.04395653307437897, + 0.13630500435829163, + -0.18024370074272156, + 0.060123927891254425, + -0.050653353333473206, + 0.023222073912620544, + 0.05713318660855293, + 0.018288373947143555, + 0.03887026757001877, + -0.021222170442342758, + 0.01562346238642931, + -0.03260263428092003, + 0.03740654140710831, + -0.05340598523616791, + 0.07287562638521194, + -0.029741190373897552, + -0.03186166286468506, + -0.019328949972987175, + -0.10902199149131775, + -0.039977867156267166, + 0.018461663275957108, + -0.027721891179680824, + -0.07372606545686722, + 0.006923670414835215, + 0.05771034210920334, + -0.03313818201422691, + -0.06141255050897598, + -0.04612978547811508, + 0.02120073139667511, + -0.04601607099175453, + 0.007590206805616617, + 0.013330761343240738, + 0.07733301818370819, + 0.018406134098768234, + 0.02560247853398323, + 0.07792754471302032, + 0.0746738538146019, + 0.031112276017665863, + -0.045088354498147964, + 0.04980362579226494, + -0.012267129495739937, + -0.013957981951534748, + -0.01455111987888813, + -0.05611451342701912, + 0.025796951726078987, + 0.022871458902955055, + 0.005231132730841637, + -0.008335279300808907, + 0.08024967461824417, + 0.07178538292646408, + -0.030114810913801193, + -0.008974454365670681, + 0.028111467137932777, + -0.04922129586338997, + -0.00954541377723217, + -0.002151263179257512, + -0.05118655413389206, + -0.008872014470398426, + -0.014554581604897976, + 0.059115659445524216, + -2.2981460290338873e-08, + 0.09030121564865112, + 0.0836852565407753, + 0.015261329710483551, + -0.08691705763339996, + 0.019929826259613037, + -0.025423970073461533, + -0.07315117865800858, + 0.011057755909860134, + -0.0271643977612257, + -0.024383293464779854, + -0.018255168572068214, + 0.05931801721453667, + -0.01912088878452778, + 0.044146545231342316, + 0.092710942029953, + 0.009848563931882381, + -0.05415147542953491, + -0.04327690228819847, + -0.05888982489705086, + -0.05462469160556793, + -0.06640103459358215, + 0.02653842605650425, + 0.00970376841723919, + 0.02153095230460167, + -0.011204446665942669, + 0.07060038298368454, + -0.03951791301369667, + -0.009016172029078007, + 0.011810725554823875, + 0.008902975358068943, + 0.0766054168343544, + 0.04905211180448532, + -0.014073395170271397, + 0.047013383358716965, + -0.11558684706687927, + -0.05362904444336891, + -0.0713144987821579, + 0.003945096395909786, + -0.02195253036916256, + 0.09501826018095016, + -0.03238215669989586, + -0.06445183604955673, + -0.0031864880584180355, + 0.018538352102041245, + -0.09318730980157852, + 0.04573392495512962, + 0.03847767412662506, + -0.06886128336191177, + -0.07895161956548691, + -0.02238330990076065, + -0.022477488964796066, + 0.013420398347079754, + 0.026992224156856537, + -0.008735659532248974, + -0.09252472966909409, + 0.016623899340629578, + 0.04117298871278763, + 0.0526142381131649, + -0.07196706533432007, + 0.04428321495652199, + 0.1529918909072876, + 0.011998619884252548, + 0.012875999324023724, + -0.015518877655267715 + ], + "microsoft-excel-logo-bold||tables,spreadsheets,tabular": [ + 0.04680008068680763, + 0.027111493051052094, + -0.06504715979099274, + 0.039658837020397186, + 0.04224236309528351, + 0.022303087636828423, + 0.011923661455512047, + -0.02384411357343197, + 0.05566245689988136, + 0.06914251297712326, + -0.036033425480127335, + 0.008392983116209507, + 0.0387185774743557, + -0.06347435712814331, + 0.013928961008787155, + -0.005757670849561691, + -0.0039283414371311665, + 0.025799747556447983, + -0.015429089777171612, + 0.05608614161610603, + 0.00376886990852654, + -0.012493559159338474, + 0.03381820023059845, + -0.037446144968271255, + 0.08079154789447784, + 0.021816330030560493, + -0.007201711181551218, + -0.005484891589730978, + -0.052352551370859146, + -0.06674317270517349, + -0.10117261111736298, + -0.009684592485427856, + 0.05684905871748924, + 0.03978704661130905, + 0.01894194260239601, + -0.05943018198013306, + 0.007732465397566557, + 0.0086790407076478, + 0.0879925936460495, + 0.05642400681972504, + -0.006129475310444832, + -0.12605783343315125, + 0.0517146997153759, + 0.009394459426403046, + -0.04900389164686203, + -0.026399429887533188, + -0.05030471831560135, + 0.0010615310166031122, + 0.03826001659035683, + 0.035844482481479645, + -0.056047093123197556, + -0.030641229823231697, + -0.03347872570157051, + -0.06238705664873123, + 0.005921509582549334, + -0.052488669753074646, + -0.04265294969081879, + -0.04379768297076225, + 0.051545195281505585, + 0.0003724875277839601, + -0.01292183343321085, + 0.030054202303290367, + 0.03394223749637604, + 0.08667737245559692, + 0.03448043763637543, + 0.02997121587395668, + -0.03386642411351204, + 0.022137315943837166, + -0.07290422916412354, + 0.04324629530310631, + 0.035472217947244644, + -0.0053358180448412895, + -0.020216424018144608, + -0.054544318467378616, + -0.03141352906823158, + 0.0367635115981102, + -0.018837599083781242, + 0.009614937007427216, + -0.05427579954266548, + -0.04020639881491661, + -0.08273550868034363, + 0.01362601388245821, + -0.030270259827375412, + 0.07424955815076828, + 0.04744454100728035, + -0.009693610481917858, + -0.004250398837029934, + -0.027709195390343666, + -0.0317893885076046, + 0.03399836644530296, + -0.06480034440755844, + 0.025186868384480476, + 0.08521018177270889, + 0.08285091072320938, + -0.12463267892599106, + 0.0018124388298019767, + 0.041652612388134, + -0.022205229848623276, + -0.020761294290423393, + 0.04020704701542854, + -0.015037204138934612, + 0.04409142956137657, + 0.14020535349845886, + 0.008009431883692741, + -0.025697026401758194, + -0.004557759501039982, + 0.048742130398750305, + -0.08855779469013214, + 0.02725619077682495, + -0.0014169563073664904, + 0.027563339099287987, + -0.04642946273088455, + -0.11075587570667267, + -0.08489352464675903, + -0.11128830909729004, + -0.0322202667593956, + -0.12679001688957214, + -0.15148602426052094, + 0.04813770577311516, + 0.005547783337533474, + -0.0052729640156030655, + -0.020995885133743286, + -0.05008304491639137, + -0.01519008632749319, + -0.014245378784835339, + 0.027548683807253838, + -0.029516898095607758, + -2.344973660317219e-33, + -0.0495087169110775, + 0.028840135782957077, + 0.01779564842581749, + 0.06831982731819153, + 0.07802747935056686, + 0.025807010009884834, + -0.0058039892464876175, + -0.07814235985279083, + -0.05356916785240173, + 0.0869249477982521, + -0.020613666623830795, + 0.11871717870235443, + -0.009880785830318928, + 0.06957241892814636, + -0.002074083313345909, + 0.021106887608766556, + -0.02175646834075451, + -0.026256008073687553, + -0.11228837817907333, + -0.005303799174726009, + -0.040905628353357315, + -0.01425218302756548, + -0.029312223196029663, + -0.03291840851306915, + -0.023835046216845512, + 0.02137141302227974, + 0.09591948240995407, + 0.052070777863264084, + -0.0007741500157862902, + 0.02216191589832306, + 0.0893702432513237, + 0.020275065675377846, + -0.0004917272017337382, + -0.039217039942741394, + -0.009111515246331692, + 0.032234951853752136, + -0.05793464556336403, + 0.01572253927588463, + 0.06018985062837601, + 0.0685063898563385, + -0.030179953202605247, + -0.010648285038769245, + 0.03267056122422218, + 0.0023299462627619505, + 0.05253252387046814, + 0.11792194843292236, + -0.006020837929099798, + -0.04651990532875061, + 0.03673873469233513, + -0.0514867901802063, + 0.027067987248301506, + -0.03665989637374878, + -0.005808893591165543, + -0.0061620245687663555, + -0.013164515607059002, + -0.03601233288645744, + -0.076500304043293, + 0.08242582529783249, + 0.027159802615642548, + 0.021671151742339134, + -0.020838715136051178, + -0.03351579234004021, + -0.02182966284453869, + 0.008151005953550339, + -0.10764851421117783, + 0.0883609727025032, + -0.03999214619398117, + 0.03213963285088539, + 0.03631984442472458, + -0.14293977618217468, + 0.08702199906110764, + 0.005088607780635357, + 0.10611903667449951, + -0.026554813608527184, + -0.004742596298456192, + 0.03337749466300011, + 0.03856904059648514, + 0.01667838729918003, + -0.0185907781124115, + -0.07678914070129395, + 0.00649808207526803, + -0.02203638292849064, + -0.11302430927753448, + 0.009264727123081684, + -0.0925457701086998, + 0.031625568866729736, + 0.02174597792327404, + -0.005046281963586807, + -0.0669613629579544, + 0.05885867401957512, + -0.0017933733761310577, + -0.017654577270150185, + -0.021530458703637123, + -0.006844279821962118, + -0.09805512428283691, + -5.572753771842049e-34, + 0.05334361270070076, + 0.015551871620118618, + -0.016362758353352547, + -0.05423213168978691, + 0.034040022641420364, + 0.07826888561248779, + 0.09202782809734344, + 0.00996819045394659, + -0.03407780081033707, + -0.013756952248513699, + 0.10868977755308151, + -0.014147967100143433, + -0.12141118198633194, + -0.008898911997675896, + -0.037963736802339554, + 0.0009366623708046973, + 0.047963835299015045, + 0.0723232626914978, + -0.14267410337924957, + -0.04335986077785492, + -0.054859329015016556, + 0.02242976427078247, + -0.045948002487421036, + 0.08033774793148041, + 0.011397922411561012, + 0.04332040622830391, + -0.06852097809314728, + -0.016579026356339455, + -0.06427768617868423, + 0.05749792605638504, + -0.04218672588467598, + 0.050728242844343185, + -0.006019887514412403, + 0.04846745356917381, + -0.006306691560894251, + 0.00973924808204174, + -0.00951456930488348, + -0.09051186591386795, + 0.03857213631272316, + 0.004141031764447689, + -0.06571976840496063, + -0.005833829753100872, + 0.04746156558394432, + 0.04334598407149315, + 0.021564891561865807, + 0.06834053248167038, + 0.019431091845035553, + -0.10850448906421661, + -0.08385250717401505, + 0.08907555043697357, + -0.012528342194855213, + -0.03482981026172638, + -0.0036247060634195805, + -0.02450547367334366, + -0.023894574493169785, + -0.0153828589245677, + -0.00605531083419919, + 0.015292860567569733, + -0.054350756108760834, + 0.057612620294094086, + -0.034681688994169235, + 0.09032072126865387, + 0.07090108841657639, + 0.047894302755594254, + 0.05847473442554474, + 0.028336288407444954, + 0.003141217166557908, + -0.040458884090185165, + -0.004745738580822945, + 0.06493726372718811, + -0.04489393159747124, + -0.021380247548222542, + -0.040286723524332047, + 0.010757929645478725, + 0.028306618332862854, + -0.01238352432847023, + -0.02669929526746273, + -0.006790681276470423, + -0.12160903215408325, + -0.017725670710206032, + 0.0008921977132558823, + -0.04881399869918823, + -0.02588612772524357, + 0.02166038565337658, + -0.014358101412653923, + 0.005270706489682198, + -0.011230073869228363, + -0.04427642375230789, + -0.022845791652798653, + 0.06827604025602341, + -0.07012736797332764, + -0.031952064484357834, + 0.040332648903131485, + 0.03454472869634628, + -0.07413091510534286, + -1.8874231955123832e-08, + -0.0013699979754164815, + -0.0032308369409292936, + 0.022326981648802757, + -0.008096049539744854, + 0.06620831787586212, + -0.022327736020088196, + -0.026610134169459343, + 0.015593220479786396, + -0.0018766399007290602, + -0.02867038920521736, + 0.00847471784800291, + 0.030768929049372673, + -0.035134073346853256, + -0.003458569757640362, + 0.03253549337387085, + 0.049738992005586624, + -0.06898710131645203, + 0.003981681540608406, + -0.015826351940631866, + -0.038925737142562866, + -0.010695114731788635, + 0.07407855242490768, + 0.01559736393392086, + 0.05521445721387863, + 0.08791962265968323, + -0.00022942177020013332, + -0.1299366056919098, + 0.013851489871740341, + 0.039611294865608215, + 0.09350518137216568, + 0.03904246911406517, + 0.06485674530267715, + 0.03002229332923889, + -0.011037928983569145, + -0.04448310285806656, + -0.038608208298683167, + 0.04044898971915245, + -0.00870184600353241, + -0.03206535056233406, + 0.03452322632074356, + -0.03188381344079971, + -0.02892993576824665, + -0.07462119311094284, + -0.03667077794671059, + 0.015342378057539463, + 0.06212693825364113, + 0.009893378242850304, + 0.06589344143867493, + -0.06812837719917297, + -0.08059246838092804, + 0.020161092281341553, + 0.00481861736625433, + 0.005128441844135523, + 0.07678423076868057, + -0.10818001627922058, + -0.06990867108106613, + 0.02837195433676243, + 0.10811728239059448, + 0.0670333281159401, + -0.03214682638645172, + 0.10570505261421204, + -0.00196413928642869, + 0.012241343036293983, + 0.009943219833076 + ], + "microsoft-outlook-logo-bold||email,logos": [ + 0.002129272324964404, + 0.06047382950782776, + -0.03816016763448715, + 0.0780230388045311, + 0.08593281358480453, + -0.0439833402633667, + 0.058889832347631454, + -0.05428524315357208, + 0.08942659199237823, + 0.009270064532756805, + -0.0653211921453476, + 0.06326522678136826, + 0.0006361753912642598, + 0.026951219886541367, + 0.041409932076931, + 0.027434777468442917, + -0.041930198669433594, + 0.013740414753556252, + 0.01880463771522045, + 0.05668274685740471, + 0.005937357898801565, + -0.05408666282892227, + 0.037879809737205505, + -0.04508800059556961, + 0.017857464030385017, + 2.952680006274022e-05, + -0.03089011460542679, + 0.010764592327177525, + -0.06728450953960419, + -0.07203365117311478, + 0.005870392546057701, + -0.044705674052238464, + 0.10299523919820786, + 0.036163318902254105, + 0.019360750913619995, + 0.02319948747754097, + 0.07004467397928238, + 0.07752345502376556, + 0.059371329843997955, + 0.024099553003907204, + 0.014809055253863335, + -0.03200467675924301, + 0.07742344588041306, + -0.0013623670674860477, + -0.0036618560552597046, + 0.008701097220182419, + -0.04207729175686836, + 0.019704198464751244, + -0.033816929906606674, + 0.027909105643630028, + 0.010032959282398224, + -0.1383049339056015, + -0.10170954465866089, + -0.03143726661801338, + 0.03237265720963478, + -0.025756757706403732, + -0.015372294932603836, + -0.018593138083815575, + 0.010095191188156605, + -0.009422222152352333, + 0.023082362487912178, + 0.04658215120434761, + -0.012541970238089561, + 0.05994967371225357, + 0.05397459492087364, + 0.0020180149003863335, + 0.04059048369526863, + 0.0056733000092208385, + -0.08243716508150101, + -0.0026856623589992523, + -0.02230147458612919, + -0.015270461328327656, + -0.027409635484218597, + -0.06603305041790009, + 0.00712990015745163, + 0.07547380030155182, + 0.06775642186403275, + 0.054415516555309296, + -0.0260507520288229, + 0.03337438777089119, + -0.0690172091126442, + 0.02741609327495098, + -0.0673711746931076, + -0.04768960922956467, + 0.12407884746789932, + 0.05301116406917572, + -0.09129089117050171, + -0.0878632441163063, + 0.0034212039317935705, + 0.07626889646053314, + -0.057698287069797516, + 0.002403352176770568, + 0.03868112340569496, + 0.043571989983320236, + -0.031201347708702087, + -0.020174413919448853, + -0.061421070247888565, + -0.034175559878349304, + -0.05473165214061737, + 0.060628652572631836, + 0.020085280761122704, + 0.03869645297527313, + 0.06369210034608841, + -0.04450031742453575, + 0.022169440984725952, + -0.013460508547723293, + 0.03194892406463623, + -0.010509246960282326, + -0.06788109987974167, + 0.04649902507662773, + 0.015968680381774902, + -0.02825656346976757, + -0.028148341923952103, + -0.08670996129512787, + -0.07721113413572311, + -0.05818330496549606, + -0.0983191728591919, + -0.03835146129131317, + 0.09982433170080185, + -0.025336844846606255, + -0.05740747228264809, + -0.06850394606590271, + -0.060809358954429626, + -0.07087233662605286, + -0.022909563034772873, + -0.012926837429404259, + 0.0018164062639698386, + -4.517658052370292e-33, + -0.04877733811736107, + 0.08605042099952698, + 0.008018286898732185, + 0.03266994655132294, + -0.021416200324892998, + 0.0631391704082489, + -0.060454949736595154, + -0.07684030383825302, + -0.07202495634555817, + 0.006185431499034166, + 0.034223202615976334, + 0.10887998342514038, + 0.07125075906515121, + 0.08078683167695999, + -0.058455631136894226, + -0.03172686696052551, + 0.017420604825019836, + 0.006949673872441053, + -0.09967155754566193, + -0.044008538126945496, + -0.04548795148730278, + -0.005487141665071249, + -0.09014910459518433, + -0.04267395660281181, + -0.03794624283909798, + -0.015574430115520954, + 0.10423380881547928, + 0.03220405802130699, + -0.014503234066069126, + 0.01618395559489727, + 0.033986058086156845, + -0.016827374696731567, + 0.012692217715084553, + 0.09008628129959106, + -0.02726626954972744, + 0.024653557687997818, + -0.03488863259553909, + -0.004038142040371895, + 0.07510484755039215, + 0.08572156727313995, + 0.022731352597475052, + -0.035627368837594986, + 0.03555950149893761, + 0.05451124161481857, + -0.008396250195801258, + 0.12983235716819763, + 0.044367093592882156, + -0.08638503402471542, + 0.05541166290640831, + -0.0462229922413826, + 0.0394267663359642, + -0.08629368245601654, + -0.054345931857824326, + -0.03208128362894058, + -0.013428534381091595, + -0.07628852874040604, + -0.0402296707034111, + 0.0705234706401825, + 0.03968553617596626, + -0.05974783003330231, + -0.00823167059570551, + 0.007436826825141907, + 0.09056022018194199, + -0.03028668463230133, + -0.021080121397972107, + 0.05745283514261246, + 0.006603694055229425, + 0.0012285487027838826, + 0.028420889750123024, + -0.0479835607111454, + 0.10276427865028381, + 0.01820092462003231, + 0.08124744147062302, + -0.002413912443444133, + -0.06154840067028999, + -0.02163250558078289, + 0.04730243235826492, + 0.02938561886548996, + 0.02679544873535633, + 0.06730875372886658, + -0.059283312410116196, + -0.03309699147939682, + -0.05513228103518486, + 0.038999997079372406, + -0.00654217042028904, + 0.02657536044716835, + 0.042418722063302994, + 0.012779030948877335, + -0.022513018921017647, + 0.03668495640158653, + -0.053680773824453354, + -0.07822156697511673, + -0.03886754810810089, + 0.04075589030981064, + -0.03904823213815689, + 2.7402130646300737e-33, + 0.09798871725797653, + 0.0033172545954585075, + 0.0346105583012104, + -0.027193251997232437, + -0.04966651275753975, + 0.04568227380514145, + 0.07408761233091354, + 0.06072051078081131, + -0.08023828268051147, + -0.012467218562960625, + 0.0873493105173111, + 0.013208859600126743, + -0.08481103181838989, + 0.026548633351922035, + -0.026877451688051224, + -0.021489709615707397, + 0.05763298645615578, + 0.06822769343852997, + -0.024473033845424652, + 0.001240957877598703, + -0.02431512251496315, + -0.010936782695353031, + -0.08405453711748123, + 0.08998418599367142, + -0.003842717967927456, + 0.05773233622312546, + 0.009196629747748375, + -0.03251800313591957, + -0.06352733075618744, + -0.027961542829871178, + -0.044330306351184845, + 0.018423208966851234, + -0.01971185952425003, + 0.040229544043540955, + 0.004673589486628771, + 0.005793563090264797, + -0.012581578455865383, + -0.1023649200797081, + 0.045673154294490814, + 0.0634191557765007, + -0.004136056173592806, + -0.011506129056215286, + 0.0165153406560421, + 0.09291573613882065, + -0.015752092003822327, + -0.021709877997636795, + -0.024172674864530563, + -0.08822634071111679, + -0.019354630261659622, + 0.12262896448373795, + 0.021264944225549698, + -0.01975085213780403, + 0.007878219708800316, + 0.02838016115128994, + -0.07193276286125183, + -0.01969919353723526, + 0.004622942768037319, + 0.03919168561697006, + 0.03379301726818085, + 0.05978542938828468, + 0.0016219873214140534, + -0.0227051991969347, + 0.006881970912218094, + -0.032714467495679855, + 0.019183805212378502, + 0.05799916014075279, + 0.07290004193782806, + -0.00019490851263981313, + -0.028095657005906105, + 0.04735386371612549, + 0.0017506767762824893, + -0.0229670200496912, + -0.04817502945661545, + -0.006875378545373678, + 0.027588479220867157, + -0.045973967760801315, + 0.05080585554242134, + 0.026601828634738922, + -0.09742806106805801, + 0.047027457505464554, + -0.050015658140182495, + -0.03509614244103432, + -0.06020859628915787, + 0.07855697721242905, + -0.03897622972726822, + -0.027214668691158295, + -0.02139199711382389, + -0.03839214891195297, + -0.01960385963320732, + -0.001762068597599864, + -0.031676240265369415, + 0.005126475356519222, + 0.1062975749373436, + -0.007865932770073414, + -0.06411302089691162, + -1.5657823482229105e-08, + -0.011813214980065823, + -0.07342631369829178, + 0.12023259699344635, + -0.01110547874122858, + 0.013051743619143963, + 0.0349339060485363, + 0.009315788745880127, + -0.06761213392019272, + -0.014050856232643127, + 0.002334450837224722, + -0.07178737968206406, + -0.04242432117462158, + -0.04893765226006508, + -0.019446125254034996, + 0.05989892780780792, + -0.014495831914246082, + -0.10184722393751144, + 0.06466317921876907, + -0.01536486018449068, + -0.05954314395785332, + 0.0030487149488180876, + 0.0710635632276535, + 0.047113530337810516, + -0.026887303218245506, + 0.04785759001970291, + 0.03258030489087105, + -0.025538461282849312, + -0.029594410210847855, + -0.005429419688880444, + 0.06961173564195633, + -0.0233748909085989, + 0.042183998972177505, + 0.018715346232056618, + -0.008743880316615105, + -0.15520444512367249, + -0.03823450952768326, + -0.0015857139369472861, + -0.04137929156422615, + -0.04353373497724533, + 0.0028780840802937746, + 0.031283553689718246, + -0.03620743006467819, + -0.033653922379016876, + -0.009631776250898838, + -0.015357490628957748, + 0.043766386806964874, + 0.05571317672729492, + 0.00903274491429329, + -0.07282397896051407, + -0.06883302330970764, + 0.033388275653123856, + 0.0518377348780632, + -0.013897999189794064, + 0.06398414820432663, + -0.1370972990989685, + -0.09487618505954742, + 0.04049242287874222, + 0.04112129285931587, + 0.0730505958199501, + 0.06538885086774826, + 0.08246812969446182, + -0.040900398045778275, + -0.02830512635409832, + -0.03622249886393547 + ], + "microsoft-powerpoint-logo-bold||slides,slideshow,presentation": [ + -0.025238219648599625, + 0.04560011997818947, + -0.04995318502187729, + 0.059316664934158325, + 0.05592390522360802, + 0.02738833613693714, + 0.02448660135269165, + -0.031055791303515434, + 0.06991713494062424, + 0.00394430011510849, + -0.06289564073085785, + 0.10466095805168152, + 0.01290555763989687, + -0.0020137429237365723, + 0.006492554675787687, + -0.012367593124508858, + 0.024390321224927902, + 0.012426882982254028, + 0.07924286276102066, + 0.05558747425675392, + 0.0932309627532959, + -0.023967184126377106, + -0.0011793042067438364, + -0.02205839566886425, + 0.03866748511791229, + 0.0735374316573143, + 0.025438494980335236, + 0.014788643456995487, + -0.005895442795008421, + -0.0027077568229287863, + -0.08632735908031464, + -0.07673922926187515, + 0.09955985099077225, + 0.004920915700495243, + 0.04632854089140892, + 0.0034960980992764235, + -0.01220825593918562, + 0.01235651783645153, + 0.015736714005470276, + 0.05906551331281662, + 0.05636485293507576, + -0.08116447925567627, + 0.05298887565732002, + -0.022468339651823044, + -0.008330714888870716, + -0.05354895070195198, + -0.06954804807901382, + -0.03219427913427353, + 0.034167736768722534, + 0.021423835307359695, + -0.0010311953956261277, + -0.12243983894586563, + -0.03772253170609474, + -0.010596496053040028, + 0.030878501012921333, + -0.09445371478796005, + 0.01828007958829403, + -0.01520023588091135, + 0.029161810874938965, + -0.045109402388334274, + -0.003896560287103057, + 0.03983631357550621, + 0.0051813311874866486, + 0.08285669982433319, + 0.08808539807796478, + 0.04421991482377052, + 0.027761461213231087, + 0.08559451252222061, + -0.061012811958789825, + -0.013529617339372635, + -0.00077969761332497, + 0.011540128849446774, + 0.03474774584174156, + -0.06107807531952858, + -0.03208264335989952, + 0.026136333122849464, + 0.04064173996448517, + -0.026662370190024376, + -0.1123804822564125, + -0.006930704694241285, + 0.01369861327111721, + -0.030623408034443855, + -0.056404728442430496, + -0.00704521918669343, + 0.12384945154190063, + 0.00987070519477129, + -0.054245661944150925, + -0.04983147978782654, + -0.041416775435209274, + 0.029354145750403404, + -0.134428933262825, + 0.029897889122366905, + 0.005820648279041052, + 0.027299387380480766, + 0.007476468570530415, + -0.07239502668380737, + -0.0978119969367981, + -0.0784168466925621, + -0.04271123185753822, + 0.014767512679100037, + -0.01951805129647255, + 0.060304053127765656, + 0.16800366342067719, + -0.036686334758996964, + -0.10025335848331451, + 0.01405367162078619, + -0.07027340680360794, + -0.014850451610982418, + -0.03341672569513321, + 0.06551190465688705, + 0.039030060172080994, + -0.04540715739130974, + -0.059425678104162216, + -0.051405590027570724, + -0.028291797265410423, + -0.0380474328994751, + -0.13110652565956116, + -0.030504165217280388, + 0.027679281309247017, + -0.07570298761129379, + 0.01844983734190464, + -0.018674852326512337, + -0.011852670460939407, + -0.059376396238803864, + -0.06103040277957916, + -0.0001652540813665837, + 0.019369618967175484, + -3.5080259544490295e-33, + -0.005040104500949383, + 0.014853613451123238, + -0.04775725677609444, + 0.012007318437099457, + -0.008919592015445232, + 0.02955590933561325, + -0.025654582306742668, + -0.061912570148706436, + -0.07299911975860596, + 0.048814915120601654, + 0.08134672790765762, + 0.09313395619392395, + 0.0635070651769638, + 0.08113106340169907, + -0.004816633183509111, + -0.02225494384765625, + 0.04335456341505051, + 0.07833842188119888, + -0.07623409479856491, + -0.03497651591897011, + -0.03067675791680813, + 0.047025956213474274, + -0.03379948437213898, + -0.04164697974920273, + -0.04326120764017105, + 0.019563592970371246, + 0.10727111995220184, + 0.0006963087944313884, + -0.08734837919473648, + -0.007584672886878252, + 0.01812099665403366, + -0.012455916032195091, + 0.08609412610530853, + -0.005957386456429958, + 0.045862503349781036, + -0.0363854244351387, + -0.03535973280668259, + -0.06919240206480026, + 0.09635249525308609, + 0.001315712695941329, + -0.07415621727705002, + -0.07053166627883911, + 0.007874015718698502, + 0.03503327816724777, + -0.012170842848718166, + 0.10552852600812912, + 0.015629643574357033, + -0.05905814841389656, + 0.05382145941257477, + 0.007315422408282757, + 0.0021301526576280594, + -0.016208715736865997, + -0.06312672793865204, + -0.05267699062824249, + 0.003916057758033276, + -0.0758451297879219, + -0.02903662621974945, + 0.09611815214157104, + 0.03800370916724205, + -0.05976419150829315, + 0.06854431331157684, + 0.02116238884627819, + 0.0005593951791524887, + -0.06919978559017181, + -0.017037976533174515, + 0.10523165762424469, + -0.0217575766146183, + 0.028576403856277466, + 0.017613057047128677, + -0.027517933398485184, + 0.03262830525636673, + -0.014415567740797997, + 0.04612265154719353, + 0.03274938464164734, + 0.0379059799015522, + 0.03250332921743393, + 0.04917395859956741, + 0.12342046201229095, + -0.021717388182878494, + 0.014865121804177761, + -0.1261875480413437, + -0.07744312286376953, + -0.01037366408854723, + 0.0497562512755394, + -0.08037370443344116, + 0.06297125667333603, + 0.011469938792288303, + 0.014130206778645515, + -0.037939704954624176, + 0.004177705850452185, + -0.034682758152484894, + -0.006580250337719917, + -0.010607548989355564, + 0.06700412929058075, + -0.06880751252174377, + 9.51988334515334e-34, + 0.06191382557153702, + 0.03606490418314934, + -0.050598789006471634, + -0.033910010010004044, + -0.027593785896897316, + 0.01681334711611271, + 0.02021346613764763, + 0.008702187798917294, + -0.06617897003889084, + 0.024653686210513115, + 0.13479167222976685, + 0.032581180334091187, + -0.12631916999816895, + -0.07966584712266922, + 5.208636594034033e-06, + 0.006740745157003403, + 0.06766707450151443, + 0.0867457389831543, + -0.07167421281337738, + -0.012212499044835567, + 0.015428832732141018, + 0.07245390117168427, + -0.08105860650539398, + 0.05279041826725006, + -0.0018930168589577079, + 0.010039536282420158, + 0.05583075433969498, + -0.06918375194072723, + -0.020755594596266747, + 0.05845066159963608, + -0.04707273468375206, + 0.030054686591029167, + -0.049698494374752045, + 0.047642119228839874, + -0.05973021686077118, + 0.03334202617406845, + -0.005255237687379122, + -0.14291484653949738, + 0.024040233343839645, + 0.0182608924806118, + -0.03829653933644295, + 0.04407692700624466, + 0.04038531705737114, + 0.05453639104962349, + -0.023865848779678345, + 0.03559254854917526, + 0.008005493320524693, + -0.05754174292087555, + -0.0048670172691345215, + 0.07351458817720413, + -0.028051473200321198, + -0.008908329531550407, + 0.02168869785964489, + -0.06337383389472961, + -0.025068514049053192, + -0.09214615821838379, + -0.012949083000421524, + 0.004859172739088535, + -0.001093721715733409, + -0.04554594308137894, + 0.002829908858984709, + 0.03588080033659935, + -0.004389476031064987, + 0.0064949463121593, + -0.0026415653992444277, + 0.07638385891914368, + 0.06317300349473953, + -0.042133305221796036, + -0.008390861563384533, + 0.035902611911296844, + -0.030963560566306114, + 0.004581090062856674, + 0.060755811631679535, + 0.0004595217469613999, + -0.037945978343486786, + -0.01681412197649479, + 0.016816018149256706, + 0.031173642724752426, + -0.07570262253284454, + -0.03546028584241867, + -0.0018483351450413465, + 0.04297543317079544, + -0.020792901515960693, + 0.007693283259868622, + -0.06041612848639488, + 0.06381841003894806, + -0.033844366669654846, + -0.04354296997189522, + 0.02704239822924137, + -0.003672921098768711, + -0.11486329883337021, + 0.04503738880157471, + 0.1416434943675995, + -0.017883112654089928, + -0.050464093685150146, + -1.9430810738185755e-08, + -0.02682548016309738, + 0.020104287192225456, + 0.08210383355617523, + -0.08204790949821472, + -0.017993653193116188, + -0.005730427801609039, + -0.044132672250270844, + 0.02487468719482422, + 0.018461061641573906, + -0.036770064383745193, + -0.006275875959545374, + -0.06373006850481033, + -0.0022540120407938957, + -0.0416446216404438, + 0.02893768809735775, + 0.012196069583296776, + -0.07461816817522049, + 0.10103467106819153, + -0.004497625399380922, + -0.06363601982593536, + -0.009871017187833786, + 0.031361449509859085, + 0.07205682247877121, + 0.03293106332421303, + 0.002142851473763585, + 0.08107525110244751, + -0.008190029300749302, + -0.012905995361506939, + 0.02067953534424305, + 0.024355757981538773, + 0.02799513190984726, + 0.06011943519115448, + -0.005757373757660389, + 0.01083588320761919, + -0.034404970705509186, + -0.01696665771305561, + -0.03348250314593315, + 0.038453370332717896, + -0.009511067532002926, + 0.07106183469295502, + -0.03855361416935921, + -0.03910733386874199, + 0.0028586508706212044, + 0.05324212461709976, + -0.03820975124835968, + 0.028538644313812256, + 0.03604929521679878, + 0.007708264049142599, + -0.07595108449459076, + -0.04521757364273071, + -0.021512964740395546, + -0.010234486311674118, + -0.07491052150726318, + 0.019623706117272377, + -0.014884683303534985, + -0.07229816168546677, + 0.05590968579053879, + 0.06138095632195473, + 0.001554029295220971, + 0.02007894031703472, + 0.06467919051647186, + -0.02137468196451664, + -0.012240523472428322, + 0.011299985460937023 + ], + "microsoft-teams-logo-bold||chat,video conference": [ + 0.006236725486814976, + 0.007239094004034996, + -0.017457140609622, + 0.015258741565048695, + 0.09156719595193863, + 0.03206227347254753, + 0.051708903163671494, + -0.08845265209674835, + 0.11119066923856735, + 0.027300292626023293, + -0.06613761931657791, + 0.019127191975712776, + -0.036737047135829926, + 0.04671304300427437, + 0.07825823873281479, + -0.07228950411081314, + 0.049297671765089035, + -0.07542678713798523, + 0.0006073406548239291, + -0.028580714017152786, + 0.007544327527284622, + -0.06669561564922333, + 0.011120341718196869, + 0.042761918157339096, + 0.028441129252314568, + -0.01960212178528309, + -0.03867189213633537, + 0.05225302651524544, + 0.03759211674332619, + -0.0505233034491539, + -0.04088497906923294, + 0.005878094583749771, + 0.15381741523742676, + 0.05855019390583038, + 0.054375775158405304, + -0.024951478466391563, + 0.04463806375861168, + 0.019298063591122627, + -0.02513257786631584, + 0.04127711430191994, + -0.034715667366981506, + -0.06221149489283562, + 0.06296930462121964, + 0.01290128007531166, + -0.033847786486148834, + 0.006331874057650566, + -0.05506635829806328, + -0.028315344825387, + 0.010261488147079945, + 0.10975465178489685, + -0.019461045041680336, + -0.14871563017368317, + -0.009613671340048313, + -0.05345182865858078, + 0.022957904264330864, + 0.062389083206653595, + -0.05264399200677872, + 0.0036870373878628016, + 0.04669675603508949, + -0.02295506000518799, + 0.043130435049533844, + -0.05388806760311127, + 0.006372613832354546, + 0.0860181674361229, + 0.008298616856336594, + 0.04468695446848869, + 0.027529463171958923, + 0.06768114864826202, + -0.07862351834774017, + -0.02999294176697731, + -0.0019191744504496455, + -0.04355665296316147, + -0.0012118659215047956, + -0.04166557639837265, + 0.0038014657329767942, + 0.049567729234695435, + 0.026884563267230988, + -0.01847110688686371, + 0.0010040451306849718, + -0.023477613925933838, + 0.013178039342164993, + -0.0325537733733654, + 0.002746173180639744, + -0.02017170377075672, + 0.03888761252164841, + 0.040602583438158035, + -0.03835146129131317, + -0.06466371566057205, + -0.07160777598619461, + 0.02196620963513851, + -0.21667292714118958, + 0.058447182178497314, + 0.0718008503317833, + 0.01924656331539154, + -0.016792170703411102, + 0.04033960774540901, + -0.045174770057201385, + -0.055457692593336105, + 0.0017630867660045624, + 0.08361861854791641, + -0.018235361203551292, + 0.0027960161678493023, + 0.07551289349794388, + -0.06964047253131866, + -0.025736352428793907, + -0.017655255272984505, + 0.016483543440699577, + 0.03027527406811714, + 0.04093906283378601, + 0.0887845903635025, + -0.05026442930102348, + 0.013230124488472939, + -0.07505212724208832, + -0.06458313018083572, + -0.021666450425982475, + -0.026637639850378036, + -0.04951765015721321, + -0.028070444241166115, + 0.039564892649650574, + -0.0008802745142020285, + 0.060107916593551636, + -0.05727004259824753, + -0.05174936354160309, + -0.01059821154922247, + 0.031293563544750214, + 0.0026730536483228207, + 0.05548032000660896, + -4.799466659932612e-33, + 0.07075987011194229, + 0.025869252160191536, + -0.040589962154626846, + 0.09840439260005951, + 0.07798190414905548, + 0.04537402093410492, + 0.016497008502483368, + -0.08537420630455017, + -0.11734343320131302, + -0.046877067536115646, + 0.0013162157265469432, + 0.00016756114200688899, + 0.06170022860169411, + 0.008193203248083591, + 0.023882146924734116, + -0.07328961044549942, + -0.005787373520433903, + 0.01748901978135109, + -0.11584912985563278, + -0.05903478339314461, + -0.057897210121154785, + 0.04093966260552406, + -0.018587246537208557, + -0.014357571490108967, + -0.017744049429893494, + 0.054076679050922394, + 0.04848393797874451, + -0.048477064818143845, + 0.057736046612262726, + 0.022538095712661743, + 0.0041051097214221954, + 0.0412384457886219, + 0.004071434494107962, + 0.029881903901696205, + 0.05383872613310814, + 0.012081352062523365, + -0.04304768890142441, + -0.047823715955019, + 0.049455102533102036, + 0.09544291347265244, + -0.05220638960599899, + -0.05117055028676987, + -0.06948833912611008, + -0.03861492872238159, + 0.01748034730553627, + 0.04867299646139145, + -0.023993711918592453, + -0.09536296129226685, + 0.03207080066204071, + -0.02953990176320076, + 0.0032027731649577618, + 0.01368066854774952, + -0.04473666474223137, + -0.05159204453229904, + 0.034325141459703445, + -0.09963705390691757, + 0.028254901990294456, + 0.05722758546471596, + -0.007136423606425524, + -0.04917682707309723, + -0.009438076987862587, + 0.01246939692646265, + 0.009952071122825146, + 0.014386554248631, + -0.02783992327749729, + 0.04696355760097504, + 0.010706820525228977, + 0.009668405167758465, + 0.03723911568522453, + -0.1319369375705719, + 0.06935456395149231, + 0.02370034158229828, + 0.06323720514774323, + 0.0008451555040664971, + -0.05479228496551514, + 0.044410448521375656, + -0.024966338649392128, + 0.06534010171890259, + -0.015046573244035244, + 0.07372497022151947, + -0.06259122490882874, + -0.029596345499157906, + -0.03731692582368851, + 0.006930810399353504, + -0.0025928092654794455, + -0.004524586256593466, + 0.02928215079009533, + -0.020451361313462257, + -0.06444520503282547, + 0.037169527262449265, + -0.07056912779808044, + -0.00611767265945673, + 0.04074753448367119, + 0.06961696594953537, + -0.04421143978834152, + 3.202358117642879e-33, + 0.07938354462385178, + 0.07088584452867508, + 0.0042995307594537735, + -0.011534268036484718, + 0.06935212016105652, + 0.009801398031413555, + 0.1236785426735878, + 0.013966871425509453, + -0.011915753595530987, + 0.016715209931135178, + 0.10808560997247696, + -0.01833026111125946, + -0.12857064604759216, + -0.01038510724902153, + -0.015428927727043629, + -0.004117042291909456, + 0.09378384053707123, + -0.04585579037666321, + -0.05913405120372772, + 0.019778182730078697, + 0.04636185243725777, + -0.058416835963726044, + -0.05299360677599907, + 0.04922611266374588, + -0.032871756702661514, + 0.005788247566670179, + 0.029605068266391754, + -0.03931890055537224, + 0.008566489443182945, + 0.01326742209494114, + -0.03434228524565697, + 0.005905438214540482, + -0.0768086239695549, + -0.004625106230378151, + 0.07422364503145218, + 0.05363978073000908, + -0.003999839536845684, + -0.061133090406656265, + -0.05007994547486305, + -0.038411419838666916, + 0.023614298552274704, + -0.02538202330470085, + -0.07607921957969666, + 0.028973408043384552, + 0.04894386604428291, + 0.026540936902165413, + -0.0615537129342556, + -0.10243871808052063, + -0.05895344540476799, + 0.0843387171626091, + 0.01628979668021202, + -0.053474146872758865, + 0.026954542845487595, + -0.020762205123901367, + -0.06608201563358307, + -0.031590066850185394, + -0.014818553812801838, + 0.029649551957845688, + 0.016902241855859756, + 0.02647111751139164, + 0.0053557585924863815, + 0.021164853125810623, + -0.04836590588092804, + 0.04248923808336258, + 0.038059160113334656, + 0.07358209788799286, + 0.0026811936404556036, + 0.08025069534778595, + -0.025592582300305367, + 0.04009139910340309, + 0.012993479147553444, + -0.02046806365251541, + -0.005010131746530533, + 0.042909346520900726, + -0.03139767050743103, + -0.01530035026371479, + 0.06006249412894249, + 0.03163273259997368, + -0.03764869645237923, + 0.02335725538432598, + -0.043104976415634155, + -0.0028328585904091597, + -0.02071966789662838, + 0.08662889152765274, + 0.044596537947654724, + 0.0689617320895195, + 0.07208336889743805, + 0.04407507926225662, + -0.07293157279491425, + 0.03476489335298538, + -0.06863128393888474, + -0.03363431990146637, + 0.09818658232688904, + 0.0033227717503905296, + 0.05215552821755409, + -1.5235821493320145e-08, + -0.07601787149906158, + -0.009056237526237965, + 0.0002815544430632144, + -0.018104514107108116, + 0.0014939486281946301, + -0.0053159818053245544, + -0.05933784320950508, + -0.08045309782028198, + 0.12651172280311584, + -0.025958510115742683, + -0.0673728734254837, + -0.03396475315093994, + -0.01260145753622055, + 0.011302032507956028, + 0.019252225756645203, + 0.03050372563302517, + -0.17145487666130066, + 0.03233052045106888, + 0.011813116259872913, + -0.05061713233590126, + -0.017365647479891777, + 0.015594077296555042, + 0.011981278657913208, + 0.019020400941371918, + -0.009427090175449848, + 0.037963926792144775, + -0.05873706936836243, + 0.030190574005246162, + -0.0494149848818779, + -0.00972964521497488, + -0.04342442378401756, + 0.06900045275688171, + -0.03018936514854431, + -0.008182617835700512, + 0.007038305513560772, + -0.07410556077957153, + -0.03386082500219345, + -0.020849738270044327, + 0.029712293297052383, + 0.06547550857067108, + 0.008084925822913647, + 0.017984852194786072, + -0.01171869970858097, + -0.00782568659633398, + 0.02981005795300007, + 0.06455817818641663, + -0.004614316392689943, + -0.07207803428173065, + -0.11862079054117203, + -0.10957516729831696, + -0.054319318383932114, + 0.053295936435461044, + -0.01577196642756462, + 0.06035228073596954, + -0.027000196278095245, + -0.00439106673002243, + 0.08383631706237793, + 0.04645567759871483, + 0.04762210324406624, + 0.020541436970233917, + 0.06004014611244202, + 0.05578135699033737, + -0.044530436396598816, + -0.011944251134991646 + ], + "microsoft-word-logo-bold||documents,word processor,doc,docx": [ + 0.011282687075436115, + 0.030750425532460213, + -0.0013915770687162876, + 0.05968344584107399, + 0.07352825254201889, + -0.005321767181158066, + 0.006387948989868164, + 0.003092904342338443, + 0.04469257965683937, + 0.07612340897321701, + -0.031575776636600494, + 0.09590370208024979, + 0.05337153375148773, + -0.049702417105436325, + 0.03405220806598663, + -0.014908533543348312, + -0.02206462062895298, + 0.0007275494863279164, + -0.002635000040754676, + 0.06050454452633858, + 0.052375778555870056, + 0.04365299269556999, + 0.025126175954937935, + -0.01668310910463333, + 0.04904840514063835, + 0.08635818213224411, + -0.05600564554333687, + -0.05275343358516693, + 0.015092028304934502, + -0.04498305171728134, + 0.015324408188462257, + -0.00014315052249003202, + 0.11522085219621658, + 0.018443847075104713, + 0.06758993119001389, + 0.013594727031886578, + 0.06456393748521805, + -0.041360922157764435, + 0.05222637206315994, + 0.021736573427915573, + 0.0005054516368545592, + -0.0921475887298584, + -0.01722865365445614, + 0.05667852982878685, + 0.02047351934015751, + -0.03923678770661354, + -0.04377178102731705, + 0.008751939982175827, + -0.010938206687569618, + 0.06586957722902298, + -0.07044203579425812, + -0.1674237847328186, + -0.059346068650484085, + -0.03323139622807503, + -0.022704903036355972, + -0.012583042494952679, + -0.008094060234725475, + 0.009140430949628353, + -0.025508573278784752, + -0.08465807139873505, + 0.0044523500837385654, + 0.0541422963142395, + -0.023394189774990082, + 0.07786630094051361, + 0.06368916481733322, + 0.06660069525241852, + -0.03138577193021774, + 0.005136669613420963, + -0.05447232350707054, + -0.02257862314581871, + 0.03951159119606018, + 0.009124984964728355, + 0.05524549260735512, + -0.07176198810338974, + -0.03703218698501587, + 0.03811551630496979, + 0.07040538638830185, + -0.03687409684062004, + -0.0026283806655555964, + -0.08754590898752213, + -0.0022297862451523542, + 0.037442076951265335, + 0.006853213533759117, + 0.06518704444169998, + 0.07388337701559067, + 0.028041956946253777, + -0.003814695170149207, + -0.11155012249946594, + -0.0007334938272833824, + 0.01806287281215191, + -0.06744208931922913, + -0.09342645108699799, + 0.06453894823789597, + -0.01804478093981743, + -0.06481669098138809, + -0.045704685151576996, + 0.012986497022211552, + -0.0260439682751894, + 0.030701875686645508, + 0.02812795527279377, + -0.021910469979047775, + 0.004440326243638992, + 0.12320064008235931, + -0.05503480136394501, + 0.007761434651911259, + 0.02743346057832241, + -0.04656412824988365, + -0.061240896582603455, + -0.00537434546276927, + -0.0024445527233183384, + -0.0009149230900220573, + -0.04005085676908493, + -0.11855422705411911, + -0.05016862228512764, + -0.04111030325293541, + -0.045626670122146606, + -0.0725771114230156, + -0.07968395203351974, + 0.07281561195850372, + 0.020661916583776474, + -0.03812501206994057, + -0.02416374348104, + 0.003268773900344968, + -0.06942086666822433, + -0.06830666214227676, + 0.016532162204384804, + 0.06023034453392029, + -3.591800130754272e-33, + -0.016947148367762566, + 0.020311474800109863, + -0.08647146075963974, + 0.067989282310009, + 0.02864273637533188, + 0.020788773894309998, + -0.04399023577570915, + -0.1280948668718338, + -0.12585487961769104, + -0.016618061810731888, + 0.01588309369981289, + 0.06547819077968597, + 0.003458924824371934, + 0.09920518100261688, + 0.022607991471886635, + -0.0416400320827961, + 0.0011781902285292745, + 0.02039412036538124, + -0.10475949943065643, + 0.001760308863595128, + -0.008279717527329922, + 0.04760521277785301, + -0.07504447549581528, + -0.048178572207689285, + -0.055214256048202515, + 0.01971444860100746, + 0.06265854090452194, + -0.04587442800402641, + -0.0540614053606987, + -0.008562380447983742, + 0.021868715062737465, + 0.006897893734276295, + 0.04939595237374306, + 0.021911144256591797, + -0.07799728214740753, + 0.006903667002916336, + -0.05630143731832504, + -0.015462585724890232, + 0.07658722251653671, + -0.0016886661760509014, + -0.10233325511217117, + -0.006670151371508837, + 0.08385792374610901, + -0.03030328080058098, + 0.04949887841939926, + 0.12948133051395416, + -0.016706131398677826, + -0.08180013298988342, + 0.08136329799890518, + -0.04897758364677429, + 0.03854638710618019, + 0.003982537426054478, + -0.005733752157539129, + 0.031106021255254745, + 0.039717432111501694, + -0.0779593214392662, + -0.01479172334074974, + 0.1148105189204216, + 0.056682687252759933, + 0.021916305646300316, + 0.0510840006172657, + 0.000436704809544608, + 0.04911390319466591, + 0.017871111631393433, + -0.01730128936469555, + 0.0707586258649826, + 0.026272427290678024, + 0.0653107687830925, + 0.028764814138412476, + -0.004737513605505228, + 0.008014343678951263, + 0.01033827755600214, + 0.024340787902474403, + 0.02379625476896763, + 0.015701401978731155, + 0.016401788219809532, + 0.03544794023036957, + -0.04768683388829231, + -0.07848808169364929, + -0.017604155465960503, + -0.09186939150094986, + -0.02681303210556507, + -0.03734416142106056, + 0.016387920826673508, + -0.03862128034234047, + 0.051967427134513855, + 0.007596165407449007, + 0.009435399435460567, + -0.01664803735911846, + 0.006633806508034468, + 0.00841398723423481, + -0.019920362159609795, + -0.028795680031180382, + -0.02434985525906086, + -0.06439629942178726, + 1.078707452053442e-33, + 0.03655130788683891, + -0.07824726402759552, + -0.014832188375294209, + 0.026967519894242287, + -0.0854974314570427, + 0.08629424124956131, + 0.08215358853340149, + 0.04943104833364487, + -0.04893656447529793, + 0.02158120833337307, + 0.1154426634311676, + 0.046313073486089706, + -0.08283846825361252, + 0.028706150129437447, + -0.04944226145744324, + -0.018645456060767174, + 0.04384314641356468, + 0.07007002830505371, + -0.039297569543123245, + 0.04056522995233536, + -0.01620561257004738, + -0.03762954846024513, + -0.06365491449832916, + 0.06974193453788757, + 0.042930979281663895, + 0.0008629386429674923, + -0.04716871306300163, + -0.03217829018831253, + -0.03645706921815872, + -0.016623755916953087, + -0.048957400023937225, + 0.04430354759097099, + -0.02125617302954197, + 0.040376465767621994, + 0.01859866827726364, + -0.020108146592974663, + -0.03653937578201294, + -0.031029216945171356, + 0.00910628866404295, + 0.027309134602546692, + -0.006466484162956476, + -0.021978171542286873, + 0.007085720077157021, + 0.06076241284608841, + -0.06575457006692886, + -0.0013808418298140168, + -0.06097244843840599, + -0.12670163810253143, + -0.04094911739230156, + 0.12161479890346527, + 0.03696559742093086, + -0.012074235826730728, + 0.04638468846678734, + 0.003462752792984247, + -0.09936334937810898, + -0.041203856468200684, + -0.0174165740609169, + -0.045743178576231, + -0.02787250466644764, + 0.07085641473531723, + 0.013257033191621304, + 0.0481179840862751, + -0.0037242795806378126, + 0.02806907333433628, + 0.024062659591436386, + 0.015244416892528534, + -0.043236397206783295, + -0.004709365777671337, + -0.07672759145498276, + 0.060320138931274414, + -0.027710065245628357, + 0.018747610971331596, + 0.0054442076943814754, + 0.04040537402033806, + 0.02940291538834572, + -0.03996340185403824, + 0.05852176249027252, + -0.03677977994084358, + -0.07366421073675156, + -0.01605176366865635, + 0.031380485743284225, + 0.03872806951403618, + -0.03835313022136688, + 0.03495384007692337, + -0.02497606910765171, + 0.032645247876644135, + -0.029401583597064018, + -0.02479051612317562, + -0.03121851570904255, + -0.016581175848841667, + -0.0642087310552597, + 0.006335731130093336, + 0.09537657350301743, + -0.002059517428278923, + -0.03895450010895729, + -1.9852134158782064e-08, + -0.07926943153142929, + -0.04155628755688667, + 0.04413626343011856, + -0.014058065600693226, + -0.0026008968707174063, + 0.005400729365646839, + -0.02498614974319935, + -0.04668545350432396, + -0.016212888062000275, + -0.07734991610050201, + 0.061030324548482895, + -0.06261679530143738, + -0.10736691206693649, + -0.057747505605220795, + 0.03346214443445206, + -0.004944204818457365, + -0.03228790685534477, + 0.031189050525426865, + 0.004631690215319395, + -0.08900964260101318, + -0.03067101165652275, + 0.0566488578915596, + 0.04278886690735817, + 0.0635363981127739, + 0.051268842071294785, + 0.06958479434251785, + -0.04122341051697731, + 0.006236933171749115, + 0.07229255884885788, + 0.023488542065024376, + 0.024911966174840927, + 0.06463856250047684, + -0.02621249482035637, + 0.06038227677345276, + -0.04614676907658577, + 0.036877814680337906, + 0.03175078332424164, + 0.07755807042121887, + -0.05117295682430267, + 0.03374280408024788, + -0.005989749915897846, + -0.01802784577012062, + -0.07610554248094559, + -0.041447993367910385, + 0.06666729599237442, + 0.03980671614408493, + 0.04976434260606766, + -0.0006481623277068138, + -0.02033066935837269, + -0.13061922788619995, + -0.00893650483340025, + 0.02053743600845337, + 0.09709347039461136, + 0.0580996498465538, + -0.11344076693058014, + -0.06117299199104309, + 0.04351872205734253, + 0.09036282449960709, + 0.054103653877973557, + -0.015334103256464005, + 0.07072286307811737, + -0.05075189843773842, + 0.06909691542387009, + 0.01181784551590681 + ], + "minus-bold||-,subtraction,difference,mathematics,arithmetic,calculator,line,horizontal,divider": [ + -0.05517955496907234, + 0.017628097906708717, + -0.022152511402964592, + -0.03597864881157875, + -0.03985108062624931, + -0.0838506817817688, + -0.029512843117117882, + 0.04351961612701416, + -0.038753557950258255, + -0.0031612820457667112, + 0.06248695030808449, + -0.01655135676264763, + 0.07473573833703995, + 0.01566399447619915, + -0.031660065054893494, + -0.007181983441114426, + -0.06002132222056389, + 0.0200238935649395, + -0.031071625649929047, + -0.019849542528390884, + -0.05505485087633133, + -0.0033452995121479034, + -0.06128551438450813, + 0.0429636612534523, + 0.11489468812942505, + 0.0600832961499691, + 0.017665661871433258, + 0.0023570063058286905, + 0.06984405219554901, + -0.07252929359674454, + -0.03770427405834198, + 0.005147870630025864, + 0.18353144824504852, + -0.00026886406703852117, + -0.03166353330016136, + -0.030225250869989395, + 0.048477765172719955, + 0.006806500256061554, + 0.0012814135989174247, + 0.08503620326519012, + -0.0673210546374321, + -0.08638256043195724, + -0.022081950679421425, + 0.0536053292453289, + -0.025386901572346687, + -0.023558467626571655, + -0.09551503509283066, + -0.04451638087630272, + 0.0377638041973114, + 0.006437487900257111, + -0.014642267487943172, + 0.022744810208678246, + -0.1647561490535736, + 0.05014855042099953, + 0.04474876448512077, + 0.02306315116584301, + 0.011826549656689167, + 0.022468281909823418, + -0.0032809125259518623, + -0.08281576633453369, + -0.021873323246836662, + -0.005215069279074669, + -0.007146117277443409, + -0.027836352586746216, + 0.022252149879932404, + 0.024616703391075134, + -0.00756402313709259, + 0.01885589025914669, + 0.03579442948102951, + 0.0931742936372757, + -0.02679596096277237, + -0.021160421893000603, + 0.0065851942636072636, + -0.025414805859327316, + -0.0574973039329052, + -0.012036314234137535, + -0.015264075249433517, + 0.081586554646492, + -0.021932197734713554, + -0.048212483525276184, + -0.04116684943437576, + -0.02395905740559101, + -0.034207724034786224, + 0.03320826590061188, + 0.02155585028231144, + 0.030431296676397324, + -0.012592662125825882, + -0.05119520425796509, + 0.026113491505384445, + -0.06684201210737228, + -0.04613513872027397, + -0.05958395451307297, + 0.001595358713530004, + 0.00735801737755537, + -0.06317175924777985, + 0.02540074847638607, + 0.022032860666513443, + 0.0026581683196127415, + 0.0023762215860188007, + 0.09513150155544281, + 0.012314025312662125, + 0.024164319038391113, + -0.0226066242903471, + -0.009068300947546959, + -0.04100015014410019, + -0.034823328256607056, + 0.020074885338544846, + -0.04841525852680206, + 0.049128323793411255, + -0.010294836945831776, + -0.02575932815670967, + -0.05377217009663582, + -0.03877924010157585, + -0.0217162873595953, + 0.060738734900951385, + -0.030855225399136543, + 0.023754021152853966, + 0.05465513467788696, + 0.1227167621254921, + 0.016151471063494682, + 0.012975294142961502, + 0.025516634806990623, + -0.0004978556535206735, + -0.02214374952018261, + 0.026443051174283028, + 0.009779694490134716, + -0.0016404110938310623, + -1.3242846604940302e-33, + 0.024529792368412018, + -0.011919981800019741, + -0.001969346310943365, + 0.11691699922084808, + 0.008009503595530987, + -0.02108619548380375, + -0.08401820808649063, + 0.007511526346206665, + -0.04908086359500885, + 0.11989423632621765, + 0.0736975222826004, + 0.14617455005645752, + -0.0016793537652119994, + 0.06420830637216568, + 0.14571698009967804, + 0.027500687167048454, + 0.0680781826376915, + -0.1213362067937851, + -0.07786785066127777, + 0.0036836895160377026, + 0.03811464086174965, + -0.005190758034586906, + -0.027658283710479736, + -0.008788040839135647, + 0.028292011469602585, + 0.030239086598157883, + 0.03279757872223854, + 0.010509680956602097, + -0.0474996380507946, + -0.01458959374576807, + -0.03259488567709923, + -0.016740109771490097, + 0.01300705038011074, + -0.005958524066954851, + 0.03799109533429146, + 0.002181245479732752, + -0.016865184530615807, + -0.030231701210141182, + 0.057110510766506195, + -0.03675452247262001, + -0.1383214294910431, + -0.013895382173359394, + -0.014827605336904526, + -0.06590574979782104, + 0.07430853694677353, + 0.0980466678738594, + 0.026924872770905495, + 0.01959957927465439, + 0.06707505881786346, + 0.032385118305683136, + -0.09061423689126968, + -0.0004894831799902022, + 0.027903491631150246, + -0.052393488585948944, + -0.011377503164112568, + -0.036453988403081894, + -0.0186882596462965, + 0.12278924882411957, + 0.017133908346295357, + 0.021963438019156456, + 0.001962321577593684, + 0.04836574196815491, + 0.027544492855668068, + -0.06763436645269394, + -0.09981021285057068, + 0.034929059445858, + -0.1986890584230423, + -0.004298929125070572, + 0.06735220551490784, + 0.03470432758331299, + -0.08751988410949707, + 0.05135023593902588, + 0.02381996624171734, + 0.04375235736370087, + 0.058518122881650925, + 0.016963845118880272, + -0.0013284459710121155, + -0.10967051982879639, + 0.029693905264139175, + -0.06368838250637054, + -0.04538813233375549, + 0.02300291508436203, + 0.002336738631129265, + 0.0025528587866574526, + -0.019901806488633156, + -0.018389027565717697, + 0.045978859066963196, + -0.05025217682123184, + 0.013025966472923756, + -0.043531619012355804, + -0.11838273704051971, + 0.0008765513775870204, + -0.03536514192819595, + -0.03945779427886009, + -0.04170897603034973, + -2.0464950734923007e-33, + -0.05013373866677284, + 0.03344652056694031, + -0.10090819001197815, + 0.012680158950388432, + -0.04987586289644241, + 0.08321131020784378, + 0.08235875517129898, + -0.035580236464738846, + 0.05426471307873726, + 0.012864231131970882, + 0.009080959483981133, + 0.04567202180624008, + -0.04531130567193031, + 4.067370582561125e-07, + -0.0166186410933733, + 0.0155250309035182, + -0.05672242492437363, + -0.05442827194929123, + -0.042733222246170044, + -0.010866152122616768, + -0.06945739686489105, + 0.0979107916355133, + -0.08136454224586487, + -0.02222706563770771, + 0.0005362518131732941, + -0.0021572827827185392, + 0.003591174026951194, + -0.010758106596767902, + -0.017990712076425552, + -0.019111478701233864, + 0.0023958159144967794, + -0.024138301610946655, + 0.11143419146537781, + 0.0011992622166872025, + -0.1381247639656067, + -0.056423600763082504, + 0.05440211668610573, + 0.034390226006507874, + -0.02815789356827736, + -0.04917749762535095, + -0.031298331916332245, + -0.03233452886343002, + 0.1677597463130951, + 0.023742854595184326, + 0.0027309786528348923, + 0.008134693838655949, + -0.06222633644938469, + -0.02125384286046028, + -0.009330224245786667, + 0.052196744829416275, + 0.0029838765040040016, + -0.02790406532585621, + -0.05713287740945816, + 0.03385232761502266, + -0.03192245215177536, + -0.016218118369579315, + 0.027932075783610344, + -0.0005127335898578167, + -0.01591544970870018, + 0.10685570538043976, + -0.04257949814200401, + 0.0217560064047575, + 0.04142662510275841, + 0.031145524233579636, + -0.033955495804548264, + -0.0019610298331826925, + -0.01128759142011404, + -0.013875693082809448, + 0.03950588032603264, + -0.059865549206733704, + 0.02314760349690914, + 0.043829988688230515, + 0.018387842923402786, + -0.02983870543539524, + -0.029219975695014, + -0.08713008463382721, + -0.005579420831054449, + 0.06984519213438034, + 0.02632826194167137, + 0.029880987480282784, + 0.02013293281197548, + -0.014914372935891151, + -0.04042212665081024, + 0.019327061250805855, + -0.11822647601366043, + 0.05990586802363396, + -0.0016312513034790754, + 0.04647943750023842, + -0.004815489053726196, + -0.04845920577645302, + -0.02287251502275467, + 0.07852670550346375, + -0.030722975730895996, + 0.03050166554749012, + -0.015688763931393623, + -2.5357612898346815e-08, + -0.04913390800356865, + -0.026469005271792412, + -0.03862156346440315, + -0.016619320958852768, + 0.0378413163125515, + -0.001989370211958885, + -0.006306567694991827, + -0.01796165481209755, + -0.01661571115255356, + -0.0009532524854876101, + 0.05136342719197273, + 0.03756328299641609, + -0.12316326797008514, + -0.04653022810816765, + 0.033133793622255325, + 0.07523328065872192, + 0.0936090350151062, + 0.05307823047041893, + -0.029184792190790176, + -0.06096117943525314, + 0.044451482594013214, + 0.016216445714235306, + 0.0165345948189497, + 0.018906766548752785, + 0.06849449127912521, + 0.012918250635266304, + -0.054457977414131165, + 0.08343599736690521, + 0.0593840517103672, + 0.04207734018564224, + 0.06216918304562569, + 0.056970931589603424, + 0.09147980809211731, + -0.04900767281651497, + -0.01351426262408495, + -0.021480271592736244, + 0.00871108379215002, + 0.04831114038825035, + 0.04612469673156738, + 0.05237400159239769, + -0.0669458732008934, + -0.03742043673992157, + -0.03265492990612984, + -0.01635541394352913, + 0.06590026617050171, + -0.005416845437139273, + 0.006544515490531921, + -0.052983466535806656, + -0.05173943191766739, + -0.06486537307500839, + 0.032906126230955124, + 0.0622856542468071, + 0.01969311013817787, + 0.06925216317176819, + -0.026669183745980263, + -0.02467126026749611, + -0.03729747608304024, + -0.0354875847697258, + -0.03313532471656799, + 0.02663321979343891, + 0.07277479022741318, + -0.02363131195306778, + -0.008925944566726685, + -0.006757189054042101 + ], + "minus-circle-bold||-,subtraction,difference,mathematics,arithmetic,calculator,round": [ + -0.03162077069282532, + 0.054272573441267014, + -0.05068524181842804, + 0.014821606688201427, + -0.015849538147449493, + -0.10123591125011444, + 0.01793481782078743, + 0.053520236164331436, + 0.019894802942872047, + -0.040628787130117416, + 0.0260216873139143, + -0.025914054363965988, + 0.07281207293272018, + -0.01074465923011303, + 0.019054951146245003, + -0.0367886908352375, + -0.07076264917850494, + 0.02700895071029663, + -0.002319520339369774, + -0.04169058799743652, + -0.050927840173244476, + -0.013062338344752789, + -0.023821856826543808, + 0.08977866917848587, + 0.09167120605707169, + 0.05983435735106468, + 0.020438477396965027, + -0.012661880813539028, + 0.05656830966472626, + -0.07865861058235168, + -0.08390133082866669, + 0.02578999474644661, + 0.1352197378873825, + -0.03536904603242874, + -0.02674841694533825, + -0.02101709321141243, + 0.007119061425328255, + 0.043322205543518066, + 0.0011676271678879857, + 0.03492369130253792, + -0.03171096369624138, + -0.06699834764003754, + 0.031622257083654404, + 0.036394935101270676, + -0.06880524754524231, + -0.007527606561779976, + -0.13714392483234406, + 0.0004299681750126183, + 0.01360999047756195, + 0.007383005227893591, + 0.01267226878553629, + -0.010027398355305195, + -0.17914094030857086, + -0.002503578318282962, + 0.03426629677414894, + 0.01502614002674818, + -0.005274196621030569, + 0.0011226888746023178, + 0.027122220024466515, + -0.07711648941040039, + 0.007081390358507633, + -0.028044767677783966, + -0.0004592319019138813, + -0.008727272972464561, + 0.01249824557453394, + 0.017790313810110092, + 0.0026386596728116274, + -0.05521242693066597, + 0.01673172600567341, + 0.06332632899284363, + -0.017290739342570305, + 0.018808024004101753, + -0.007530958391726017, + -0.040400512516498566, + -0.03719305992126465, + 0.015281649306416512, + -0.034207552671432495, + 0.07814621180295944, + -0.04919944703578949, + -0.06263865530490875, + 0.0008153113885782659, + -0.032893285155296326, + -0.014743208885192871, + 0.03671509772539139, + 0.04284355044364929, + 0.0428958386182785, + 0.01660560443997383, + -0.07341539114713669, + 0.02715848758816719, + -0.053100474178791046, + -0.06403162330389023, + -0.01491406187415123, + -0.05069595202803612, + -0.007590111810714006, + -0.08973362296819687, + 0.020538704469799995, + 0.015381703153252602, + 0.00892050564289093, + -0.03352435678243637, + 0.1304585337638855, + 0.03709184750914574, + 0.022052647545933723, + -0.010529004968702793, + -0.029432404786348343, + -0.0312570258975029, + -0.015415615402162075, + 0.03286577761173248, + -0.046171125024557114, + 0.04382547736167908, + 0.0045338282361626625, + -0.013414316810667515, + -0.07686591148376465, + 0.00409815413877368, + -0.01361734326928854, + 0.03773012012243271, + 0.02375764213502407, + 0.03278988227248192, + 0.04916578158736229, + 0.09919450432062149, + 0.023159118369221687, + 0.024166040122509003, + 0.03930209204554558, + -0.017435288056731224, + -0.019286079332232475, + -0.038569703698158264, + 0.01814882829785347, + -0.03283258527517319, + -1.6537693903802825e-33, + 0.010770130902528763, + 0.04686133936047554, + -0.013104541227221489, + 0.04859583079814911, + -0.023690802976489067, + -0.043013039976358414, + -0.04888135939836502, + -0.02521488443017006, + 0.005102865863591433, + 0.09856538474559784, + 0.0516199991106987, + 0.13892969489097595, + 0.019390428438782692, + 0.03441169857978821, + 0.1453363001346588, + 0.016278773546218872, + 0.11196102946996689, + -0.12094159424304962, + -0.08122625201940536, + -0.029858361929655075, + 0.03258983790874481, + -0.017807401716709137, + -0.08149776607751846, + -0.009261061437427998, + 0.009453407488763332, + 0.0491596944630146, + 0.05922868102788925, + 0.026718121021986008, + -0.032950565218925476, + 0.0016493425937369466, + -0.011018841527402401, + 0.001592980814166367, + 0.008813748136162758, + 0.029221616685390472, + 0.06763191521167755, + -0.018044238910079002, + -0.01920725777745247, + -0.021144334226846695, + 0.07593510299921036, + -0.026671038940548897, + -0.12265858054161072, + -0.02217647060751915, + -0.030902301892638206, + -0.04108910262584686, + 0.04792087897658348, + 0.12398611754179001, + 0.029270250350236893, + 0.016223372891545296, + 0.058314189314842224, + 0.012658238410949707, + -0.09962230175733566, + 0.015300611965358257, + -0.0162087120115757, + -0.06308857351541519, + -0.02023310586810112, + -0.06248296797275543, + -0.00575994560495019, + 0.08686338365077972, + -0.005778164137154818, + -0.0009741288376972079, + 0.03038673661649227, + 0.03852691501379013, + 0.016170186921954155, + -0.0717763602733612, + -0.13941693305969238, + 0.059820566326379776, + -0.2030879110097885, + -0.030348213389515877, + 0.059352245181798935, + -0.0012689725263044238, + -0.05884798988699913, + 0.0745072290301323, + 0.051313646137714386, + 0.0694170892238617, + 0.05987279862165451, + 0.0035366148222237825, + 0.021965932101011276, + -0.08376342803239822, + 0.04488099738955498, + -0.05403846129775047, + -0.036100201308727264, + 0.029756026342511177, + -0.01972220093011856, + -0.011576020158827305, + 0.015314064919948578, + -0.04803074151277542, + 0.03586948662996292, + -0.04606452211737633, + 0.019639357924461365, + -0.029269952327013016, + -0.1108793318271637, + 0.022824423387646675, + 0.008935085497796535, + 0.02208983525633812, + -0.07658572494983673, + -1.3348195694357941e-33, + -0.07112845778465271, + 0.053360454738140106, + -0.07859806716442108, + 0.027715720236301422, + -0.04172714427113533, + 0.07185125350952148, + 0.0565829761326313, + -0.05484184995293617, + 0.042338039726018906, + 0.01575089432299137, + -0.00981551967561245, + 0.028908269479870796, + -0.03633594512939453, + -0.006709105335175991, + 0.03374364972114563, + -0.01231294497847557, + -0.03835293650627136, + -0.050644196569919586, + -0.049176424741744995, + 0.01663847640156746, + -0.07247241586446762, + 0.08682362735271454, + -0.07676010578870773, + -0.04069108888506889, + -0.02503848820924759, + 0.03293916955590248, + 0.017194349318742752, + -0.043597374111413956, + -0.03654184192419052, + 0.01576540432870388, + -0.0638192743062973, + -0.04059828072786331, + 0.11150463670492172, + 0.021880902349948883, + -0.10537762939929962, + -0.06457211077213287, + 0.08148498088121414, + -0.020651470869779587, + -0.06740511953830719, + -0.0584448017179966, + -0.04887547716498375, + -0.06993722170591354, + 0.14022326469421387, + 0.03737548366189003, + 0.019271476194262505, + -0.024434814229607582, + 0.010101736523211002, + -0.0001562070392537862, + -0.04968218877911568, + 0.046759821474552155, + 0.01081199198961258, + -0.02689395099878311, + -0.01833089254796505, + 0.04109889268875122, + -0.04500461369752884, + 0.015709903091192245, + 0.03826397657394409, + 0.03156622499227524, + -0.007103108800947666, + 0.0993160828948021, + -0.07064995914697647, + 0.004523689858615398, + 0.037334177643060684, + 0.06117364764213562, + -0.021231096237897873, + 0.00878855586051941, + 0.014530097134411335, + 0.005413723178207874, + 0.0007071007858030498, + -0.026256101205945015, + -0.004087359644472599, + 0.08460431545972824, + 0.013801632449030876, + -0.02972945012152195, + -0.02781118080019951, + -0.0592004619538784, + 0.03800826519727707, + 0.043321751058101654, + 0.02163548208773136, + 0.03768991306424141, + 0.008492562919855118, + 0.028399605304002762, + -0.05816097930073738, + -0.011706290766596794, + -0.08626754581928253, + 0.03438248485326767, + -0.006175460759550333, + 0.025081297382712364, + -0.02859227918088436, + -0.008672344498336315, + -0.014337441883981228, + 0.1034846231341362, + -0.01175115816295147, + 0.016655515879392624, + 0.034717608243227005, + -2.2996536230834863e-08, + -0.04237886890769005, + 0.01003236323595047, + -0.05542157217860222, + 0.006647884380072355, + 0.08399484306573868, + -0.031170325353741646, + -0.013036531396210194, + -0.03659225255250931, + -0.046945687383413315, + -0.013193706050515175, + 0.025112565606832504, + 0.06049324944615364, + -0.11173586547374725, + -0.060639068484306335, + -0.0030771056190133095, + 0.0827055275440216, + 0.07154279202222824, + 0.04998209699988365, + -0.018113169819116592, + -0.04215162992477417, + 0.027641018852591515, + 0.005105821881443262, + 0.04133991897106171, + -0.048185549676418304, + 0.030650334432721138, + -0.007856400683522224, + -0.02029608190059662, + 0.09425961971282959, + 0.012513389810919762, + 0.012992843054234982, + 0.05115947127342224, + 0.05725128948688507, + 0.04199656844139099, + -0.019333243370056152, + -0.03376457095146179, + -0.07070552557706833, + 0.0029776410665363073, + 0.07631940394639969, + 0.028278367593884468, + 0.07833997160196304, + -0.07535262405872345, + -0.01648368127644062, + -0.010609954595565796, + -0.009550661779940128, + 0.07218782603740692, + 0.02727319858968258, + 0.015420755371451378, + -0.07280188798904419, + -0.07504215091466904, + -0.05777934566140175, + 0.0003027221537195146, + 0.05225720256567001, + 0.05267076939344406, + 0.06463437527418137, + -0.01594228483736515, + -0.04561649262905121, + 0.0039696297608315945, + 0.01554135326296091, + -0.08034916967153549, + 0.09206046164035797, + 0.051278408616781235, + -0.0335228331387043, + 0.02728232927620411, + -0.01362939365208149 + ], + "minus-square-bold||-,subtraction,difference,mathematics,arithmetic,calculator": [ + -0.029868749901652336, + 0.04690856114029884, + 0.009239405393600464, + 0.011497817002236843, + -0.05300373584032059, + -0.05301636457443237, + -0.013922183774411678, + 0.02925780788064003, + -0.015387405641376972, + -0.021012449637055397, + 0.050510477274656296, + 0.008279789239168167, + 0.08524999767541885, + -0.0011093762004747987, + -0.052917830646038055, + -0.00020228249195497483, + -0.039526406675577164, + 0.02981753833591938, + -0.01961711421608925, + -0.014265167526900768, + -0.0167775209993124, + -0.008392044343054295, + -0.06280189752578735, + 0.033351458609104156, + 0.11949291080236435, + 0.04784156754612923, + 0.02527238428592682, + 0.019535081461071968, + 0.07127583026885986, + -0.05387182533740997, + -0.01534958090633154, + -0.040528494864702225, + 0.16168896853923798, + -0.020955150946974754, + -0.043764542788267136, + -0.020462512969970703, + 0.046273306012153625, + 0.029446544125676155, + 0.007293411996215582, + 0.07408475875854492, + -0.040501777082681656, + -0.11127133667469025, + -0.012529529631137848, + 0.06499504297971725, + -0.038987595587968826, + -0.03550657629966736, + -0.08654835820198059, + -0.019365165382623672, + 0.042647797614336014, + -0.012125699780881405, + 0.008434999734163284, + 0.00266759074293077, + -0.1350138932466507, + 0.004995730705559254, + 0.039055079221725464, + 0.020910514518618584, + 0.004532103892415762, + 0.015269449912011623, + 0.011904684826731682, + -0.06938458234071732, + 0.00640754634514451, + 0.008509073406457901, + -0.01511155255138874, + -0.04431535303592682, + 0.015705842524766922, + 0.030628589913249016, + 0.002078831661492586, + -0.020338648930191994, + 0.028445875272154808, + 0.10052892565727234, + -0.008694136515259743, + 0.01278129406273365, + 0.020914733409881592, + -0.021128645166754723, + -0.05327172949910164, + -0.05111386626958847, + -0.01066423300653696, + 0.06955911219120026, + -0.016926515847444534, + -0.04828597232699394, + 0.0030788416042923927, + -0.042807649821043015, + -0.05646292492747307, + 0.0024687182158231735, + 0.026422889903187752, + 0.01788906939327717, + -0.006656999234110117, + -0.05023164674639702, + 0.015416298992931843, + -0.06648010015487671, + -0.031033065170049667, + -0.03598461672663689, + -0.011229933239519596, + 0.006694993004202843, + -0.059884510934352875, + 0.00793902575969696, + 0.04774976894259453, + 0.04331164434552193, + 0.003510361071676016, + 0.10267128795385361, + 0.041492268443107605, + 0.03305913135409355, + -0.05589009076356888, + -0.039414215832948685, + -0.005539266392588615, + -0.01733756996691227, + 0.053994275629520416, + -0.013191013596951962, + 0.03645143285393715, + -0.00368146738037467, + -0.03079819865524769, + -0.060747433453798294, + -0.018483325839042664, + 0.02806999348104, + 0.043246787041425705, + 0.011646565049886703, + 0.034115567803382874, + 0.048493318259716034, + 0.10229317843914032, + -0.01287172269076109, + 0.02428073063492775, + 0.018571732565760612, + 0.003294715890660882, + -0.016083981841802597, + -0.004693305119872093, + 0.026756005361676216, + -0.038387566804885864, + -9.140404381349135e-34, + 0.029293060302734375, + 0.02987705171108246, + 0.014994747005403042, + 0.10338347405195236, + -0.004493174608796835, + -0.03177256137132645, + -0.08587606996297836, + -0.03307504951953888, + -0.04009108617901802, + 0.14597424864768982, + 0.07323572039604187, + 0.13084439933300018, + -0.03584888577461243, + 0.050790153443813324, + 0.14320863783359528, + 0.05387144163250923, + 0.08243224769830704, + -0.11719966679811478, + -0.03593200445175171, + 0.009604506194591522, + 0.05558022856712341, + -0.039409033954143524, + -0.0757630318403244, + 0.012875996530056, + 0.014877913519740105, + 0.029833192005753517, + 0.06634429097175598, + 0.008935085497796535, + -0.0069286879152059555, + 0.0021857810206711292, + -0.014172759838402271, + 0.021633096039295197, + -0.00421458575874567, + -0.028148626908659935, + 0.057934220880270004, + -0.038177091628313065, + 0.018779104575514793, + -0.029525525867938995, + 0.06728771328926086, + -0.052843380719423294, + -0.12749682366847992, + -0.01012448500841856, + 0.005405083764344454, + -0.07982737571001053, + 0.06438767910003662, + 0.08898870646953583, + 0.05683377385139465, + -0.0018694354221224785, + 0.07505477964878082, + 0.016200948506593704, + -0.08079871535301208, + 0.013804121874272823, + 0.011766372248530388, + -0.008579364977777004, + 0.004587092902511358, + -0.06900974363088608, + -0.04052099213004112, + 0.12143715471029282, + 0.06439194828271866, + 0.022925792261958122, + 0.02803960256278515, + 0.013238249346613884, + 0.02549685910344124, + -0.08340558409690857, + -0.12521658837795258, + 0.05437081307172775, + -0.1935887634754181, + -0.009604965336620808, + 0.027149681001901627, + 0.013732298277318478, + -0.06761401146650314, + 0.03915362060070038, + 0.03655875101685524, + 0.017239119857549667, + 0.06422965228557587, + -0.015406426042318344, + 0.02058539167046547, + -0.11176977306604385, + 0.04772709310054779, + -0.11863569915294647, + -0.04439660906791687, + 0.049166228622198105, + -0.029659010469913483, + -0.015305244363844395, + -0.007148479111492634, + -0.029123427346348763, + -0.009590975940227509, + -0.05082080513238907, + 0.0015368363820016384, + -0.030660336837172508, + -0.1257055252790451, + -0.0017672673566266894, + -0.02815449982881546, + -0.02414957992732525, + -0.04631659388542175, + -1.859373454243678e-33, + -0.062054578214883804, + 0.06764243543148041, + -0.10951460152864456, + 0.013407410122454166, + -0.02923818863928318, + 0.05804302170872688, + 0.07069244980812073, + -0.051321908831596375, + 0.03967505320906639, + -0.00256336759775877, + -0.0033647639211267233, + 0.019411899149417877, + -0.058046430349349976, + -0.017952078953385353, + -0.004180668853223324, + 0.026157161220908165, + -0.012417218647897243, + -0.06513546407222748, + -0.08814935386180878, + -0.03641756251454353, + -0.07733216136693954, + 0.08105312287807465, + -0.03341183066368103, + -0.03280534967780113, + -0.00194329465739429, + 0.02278463914990425, + 0.006412272807210684, + 0.009787281043827534, + -0.01724787801504135, + -0.016694625839591026, + -0.013126025907695293, + -0.0049386112950742245, + 0.09339024126529694, + 0.0003689885779749602, + -0.16274093091487885, + -0.044535860419273376, + 0.06175234913825989, + 0.013576144352555275, + -0.012240409851074219, + -0.04337460920214653, + -0.016495512798428535, + -0.06554138660430908, + 0.13429734110832214, + 0.05667136237025261, + 0.036415886133909225, + 0.027010325342416763, + -0.02154216356575489, + -0.036631062626838684, + 0.010441181249916553, + 0.016289735212922096, + 0.007639392279088497, + -0.06711304187774658, + -0.060258809477090836, + 0.055535729974508286, + -0.038498032838106155, + 0.010748941451311111, + 0.044949065893888474, + 0.03239873796701431, + -0.01743207685649395, + 0.11775931715965271, + -0.05538312718272209, + 0.024885062128305435, + 0.03488456457853317, + 0.02798803150653839, + -0.07007681578397751, + 0.02168530784547329, + 0.021146561950445175, + 0.04313049837946892, + 0.04937591031193733, + -0.03801095485687256, + 0.019113531336188316, + 0.05105516314506531, + -2.2548274500877596e-06, + -0.015947213396430016, + -0.05055076256394386, + -0.07768259942531586, + -0.019058067351579666, + 0.05712210759520531, + 0.02586744725704193, + 0.04990139976143837, + 0.036525655537843704, + 0.01751808635890484, + -0.03436342626810074, + -0.038632553070783615, + -0.11657363176345825, + 0.04603248089551926, + -0.0011937117669731379, + 0.05826481431722641, + -0.048304181545972824, + -0.04761495068669319, + -0.027303798124194145, + 0.0737408846616745, + -0.039898600429296494, + -0.027532992884516716, + 0.0036480408161878586, + -2.2594159432287597e-08, + -0.04698806256055832, + 0.0023350107949227095, + -0.04446544498205185, + -0.030034756287932396, + 0.03016381338238716, + -0.016542360186576843, + -0.013300209306180477, + -0.018103837966918945, + -0.009203391149640083, + -0.01982073485851288, + 0.00921246875077486, + 0.027881264686584473, + -0.11383882164955139, + -0.05935176834464073, + -0.002482115989550948, + 0.0930238589644432, + 0.06430491805076599, + 0.02902328595519066, + -0.03177948668599129, + -0.034114379435777664, + 0.026643510907888412, + 0.009690278209745884, + 0.02723543345928192, + 0.027413269504904747, + 0.03766842931509018, + 0.00974817480891943, + -0.053798262029886246, + 0.10354308038949966, + 0.05659773200750351, + 0.057187680155038834, + 0.05876860022544861, + 0.06453632563352585, + 0.042291540652513504, + -0.03788270801305771, + -0.036852046847343445, + -0.0727669894695282, + -0.008080805651843548, + 0.06645478308200836, + 0.021721651777625084, + 0.027106130495667458, + -0.06614246219396591, + -0.05527245253324509, + -0.0017974205547943711, + -0.0005099963163957, + 0.06770458817481995, + 0.01876961812376976, + 0.0191628560423851, + -0.07188329100608826, + -0.03743710741400719, + -0.061788350343704224, + 0.039721742272377014, + 0.03234482184052467, + 0.006260712631046772, + 0.09496132284402847, + -0.04223291948437691, + -0.05632585659623146, + -0.06350759416818619, + -0.023861389607191086, + -0.027359656989574432, + 0.050130363553762436, + 0.07035533338785172, + -0.026502804830670357, + -0.0005790746654383838, + -0.012300290167331696 + ], + "money-bold||cash,dollars,paper bills,payment,paying,purchase": [ + -0.05073343589901924, + 0.027558906003832817, + -0.05807887762784958, + 0.015591908246278763, + -0.05200514197349548, + -0.0498221293091774, + 0.10877632349729538, + -0.03683311119675636, + 0.005470224656164646, + -0.0027668625116348267, + 0.028642024844884872, + -0.04589894041419029, + 0.03013898991048336, + -0.003340438473969698, + 0.017836185172200203, + -0.004686602856963873, + 0.019268253818154335, + 0.037946250289678574, + 0.025587933138012886, + 0.09284407645463943, + 0.03669951483607292, + 0.03561945632100105, + -0.020427174866199493, + 0.035894785076379776, + 0.10648143291473389, + 0.032390836626291275, + 0.01924973353743553, + -0.03711463883519173, + 0.004468935076147318, + -0.03550318628549576, + 0.014084246940910816, + 0.03741515800356865, + 0.11304182559251785, + -0.005794517695903778, + 0.048925530165433884, + -0.020755557343363762, + 0.018242888152599335, + -0.0016092529986053705, + -0.0007710065110586584, + 0.07635657489299774, + -0.05486791953444481, + -0.10899856686592102, + -0.004265713505446911, + -0.01243095938116312, + -0.022633744403719902, + -0.020415984094142914, + 0.00821694266051054, + 0.07829444110393524, + -0.005497919395565987, + 0.052785735577344894, + -0.010082105174660683, + -0.05965748056769371, + -0.11201608180999756, + 0.08583679050207138, + 0.02080453373491764, + -0.009860620833933353, + 0.03066573105752468, + -0.01703544519841671, + 0.02412566915154457, + -0.03016301803290844, + -0.028352636843919754, + 0.037540704011917114, + -0.007167907431721687, + 0.009247304871678352, + 0.03114224411547184, + 0.030585790053009987, + -0.04065431281924248, + 0.032697152346372604, + -0.09411938488483429, + 0.025066228583455086, + 0.033220451325178146, + 0.02092721499502659, + -0.01506663765758276, + -0.06943061947822571, + -0.027123834937810898, + 0.01194639690220356, + 0.11470859497785568, + -0.016521068289875984, + -0.046834174543619156, + -0.051882483065128326, + -0.06375046819448471, + -0.06118306890130043, + -0.030794449150562286, + -0.0438053123652935, + 0.009532111696898937, + 0.052158426493406296, + -0.04042579606175423, + -0.07738716900348663, + 0.03339347988367081, + -0.06385606527328491, + -0.0313522033393383, + -0.009017076343297958, + 0.018020058050751686, + -0.00481841154396534, + 0.0034502309281378984, + 0.032807499170303345, + 0.07385918498039246, + -0.02973906137049198, + 0.07532568275928497, + 0.04275331646203995, + 0.0974053144454956, + 0.07620525360107422, + 0.09624765813350677, + -0.011935709044337273, + 0.0528094507753849, + -0.01856759749352932, + -0.015346783213317394, + 0.0003551826230250299, + -0.004780924413353205, + -0.013884290121495724, + -0.07591817528009415, + -0.03565947338938713, + 0.010205073282122612, + -0.049462638795375824, + -0.006781104486435652, + 0.028350060805678368, + -0.07347501069307327, + -0.05028464272618294, + 0.11852484941482544, + 0.04697532206773758, + 0.04111732542514801, + 0.05744821950793266, + -0.047487225383520126, + -0.05252288654446602, + -0.06871484965085983, + -0.015241039916872978, + 0.04519817233085632, + -3.398016213601372e-33, + 0.0058247242122888565, + 0.01061935629695654, + -0.05407413840293884, + 0.02924760989844799, + -0.03254726156592369, + 0.035509221255779266, + -0.028276143595576286, + 0.013528772629797459, + -0.0794440284371376, + 0.07146640121936798, + 0.03685874119400978, + 0.025264406576752663, + 0.016817079856991768, + 0.14654631912708282, + 0.027646800503134727, + 0.027779612690210342, + -0.08447401970624924, + -0.038269493728876114, + 0.026201168075203896, + 0.07818227261304855, + -0.03432530164718628, + 0.027413716539740562, + 0.03023511916399002, + 0.015474414452910423, + 0.03079076111316681, + -0.049770813435316086, + -0.0006176326423883438, + -0.024387478828430176, + 0.03506925702095032, + 0.003743402659893036, + 0.03201453387737274, + 0.03283875435590744, + 0.088752381503582, + -0.0183847788721323, + -0.04993287846446037, + 0.03354283794760704, + 0.006511572282761335, + -0.021949874237179756, + 0.041009239852428436, + -0.033356472849845886, + -0.05788180232048035, + -0.04422156140208244, + -0.019476771354675293, + -0.011899330653250217, + -0.0023427291307598352, + 0.17594601213932037, + -0.0021185532677918673, + -0.02720510959625244, + 0.03969617933034897, + -0.007780042011290789, + -0.012259881012141705, + -0.019716447219252586, + -0.07276704907417297, + -0.031290724873542786, + -0.02597658522427082, + -0.08977340161800385, + 0.004122087266296148, + 0.006776768248528242, + -0.05590575933456421, + -0.09197892993688583, + -0.012664096429944038, + -0.01773567870259285, + 0.07238662987947464, + -0.043734755367040634, + -0.11097872257232666, + 0.10975917428731918, + -0.014039614237844944, + 0.02302790805697441, + 0.06741029769182205, + 0.02897850051522255, + -0.0653759017586708, + 0.07122001051902771, + 0.047225940972566605, + 0.06688307225704193, + 0.04845847561955452, + 0.02154279127717018, + 0.06277395784854889, + -0.0363297313451767, + -0.018518157303333282, + 0.03205556422472, + -0.10466326773166656, + 0.0039060276467353106, + 0.03563299402594566, + 0.14829514920711517, + 0.05281422287225723, + 0.08469446748495102, + 0.009763108566403389, + -0.1348220556974411, + 0.007137103471904993, + -0.02870534360408783, + -0.01494769286364317, + -0.030823344364762306, + 0.012180532328784466, + -0.09822935611009598, + -0.024738145992159843, + -1.875733350953499e-34, + -0.027063792571425438, + 0.05489553138613701, + -0.03610556945204735, + 0.041133057326078415, + -0.06378757208585739, + 0.040672264993190765, + -0.006278885994106531, + 0.03304050862789154, + 0.10405351221561432, + 0.07710309326648712, + -0.06538163870573044, + -0.04625225067138672, + -0.07716844230890274, + -0.019530242308974266, + 0.049383603036403656, + -0.0774422213435173, + -0.0010637209052219987, + 0.011858247220516205, + 0.053784050047397614, + 0.04764920845627785, + -0.02768636681139469, + -0.01619611494243145, + -0.030850203707814217, + 0.04025796055793762, + 0.0023882142268121243, + 0.02521534636616707, + -0.07032763212919235, + -0.06001735106110573, + -0.04956522956490517, + 0.04461079090833664, + -0.022297268733382225, + -0.05668328329920769, + 0.019111312925815582, + -0.0036424249410629272, + -0.07544980943202972, + 0.027529552578926086, + 0.052402134984731674, + -0.017392747104167938, + 0.021653689444065094, + -0.04759517312049866, + -0.0036863740533590317, + -0.04243941977620125, + 0.03478272631764412, + 0.027028653770685196, + -0.02247721701860428, + -0.1191769391298294, + -0.05941784754395485, + -0.03183043748140335, + -0.00867624394595623, + 0.007774712517857552, + 0.00880243070423603, + -0.013762356713414192, + -0.008847256191074848, + 0.005893567111343145, + -0.12136340886354446, + 0.0693959966301918, + 0.07511445134878159, + -0.04814523458480835, + 0.04270472750067711, + 0.06535985320806503, + -0.06558208912611008, + 0.0488002672791481, + -0.011715540662407875, + 0.06451261043548584, + -0.05189640074968338, + -0.018400564789772034, + 0.017149414867162704, + -0.07272443920373917, + -0.0017238141736015677, + -0.04529359191656113, + -0.02095608599483967, + 0.004155699163675308, + 0.0027304161339998245, + 0.006818338297307491, + 0.012956169433891773, + 0.06896515935659409, + -0.030054841190576553, + -0.00487800408154726, + 0.016986073926091194, + 0.020481768995523453, + 0.02220814675092697, + -0.03601764887571335, + 0.04143180325627327, + 0.017625994980335236, + -0.0543028898537159, + -0.0072092353366315365, + -0.05115513876080513, + -0.07772134989500046, + -0.03823011368513107, + -0.06994462013244629, + -0.057252999395132065, + 0.01529703475534916, + -0.001081041875295341, + -0.031096013262867928, + -0.04890934377908707, + -2.0684614909782795e-08, + -0.04120359569787979, + -0.011738807894289494, + -0.02366790547966957, + -0.0480155423283577, + 0.0591481514275074, + -0.042224328964948654, + 0.011806655675172806, + -0.0224552433937788, + -0.07750444114208221, + 0.04844977706670761, + 0.03895776718854904, + 0.054439615458250046, + -0.1015932634472847, + -0.09363753348588943, + -0.014606110751628876, + 0.001394661725498736, + 0.008308181539177895, + -0.05676163360476494, + -0.038426902145147324, + -0.023295985534787178, + 0.01328036468476057, + 0.04762377217411995, + -0.031768009066581726, + -0.010380793362855911, + 0.004032681230455637, + -0.008887063711881638, + 0.05627002567052841, + 0.14929567277431488, + 0.07081405818462372, + 0.03714457526803017, + 0.023551322519779205, + 0.07385250180959702, + -0.007679850794374943, + -0.005595135036855936, + -0.03400576859712601, + -0.08342114090919495, + 0.036818552762269974, + 0.008105859160423279, + -0.04436524212360382, + 0.10387309640645981, + 0.004729941487312317, + -0.07549016177654266, + -0.11900211125612259, + -0.07414787262678146, + 0.06155626103281975, + 0.027490049600601196, + -0.0636201798915863, + -0.042316317558288574, + -0.003507837885990739, + -0.13048332929611206, + -0.020252155140042305, + 0.0218674223870039, + 0.08776097744703293, + 0.010663026943802834, + -0.02404804714024067, + -0.08192016184329987, + 0.003695249557495117, + 0.05951564386487007, + 0.026804238557815552, + -0.034770965576171875, + 0.10267908126115799, + -0.05153849720954895, + 0.06271565705537796, + -0.03762203827500343 + ], + "money-wavy-bold||*new*,cash,dollars,paper bills,payment,paying,purchase": [ + -0.07305771112442017, + 0.01597605273127556, + -0.032950203865766525, + -0.02797168493270874, + -0.08028969168663025, + -0.052516043186187744, + 0.0867542251944542, + -0.025207631289958954, + -0.03838903456926346, + -0.019674576818943024, + 0.0737486407160759, + -0.013699617236852646, + -0.02743370644748211, + -0.014369559474289417, + 0.03127654641866684, + 0.03871931508183479, + 0.005687535274773836, + 0.016534121707081795, + 0.002704157494008541, + 0.07284726202487946, + 0.045359138399362564, + -0.0047423033975064754, + -0.06729235500097275, + 0.013486410491168499, + 0.11023405194282532, + 0.07835240662097931, + 0.015364004299044609, + -0.03500046953558922, + 0.021033968776464462, + -0.024739282205700874, + 0.023126456886529922, + 0.09616280347108841, + 0.09343977272510529, + -0.013203882612287998, + 0.06071466580033302, + -0.026416489854454994, + 0.015424782410264015, + 0.05213440582156181, + -0.0016359634464606643, + 0.05543488264083862, + -0.036139097064733505, + -0.12186231464147568, + -0.03159499540925026, + -0.016889318823814392, + -0.01939002051949501, + -0.03068721294403076, + 0.025459924712777138, + 0.10673672705888748, + -0.00550477160140872, + 0.07882845401763916, + 0.01194802951067686, + -0.09146733582019806, + -0.09959183633327484, + 0.07941575348377228, + 0.007722639478743076, + 0.024466799572110176, + 0.07845574617385864, + 0.01923113502562046, + -0.00268527097068727, + -0.027223892509937286, + 0.016607927158474922, + 0.03409470617771149, + -0.0004006829985883087, + 0.0115941371768713, + -0.019782012328505516, + 0.021743226796388626, + -0.047620855271816254, + 0.053088605403900146, + -0.03788892924785614, + 0.03752527013421059, + 0.04077992960810661, + 0.010545022785663605, + -0.0018296240596100688, + -0.04093962162733078, + -0.0015405386220663786, + -0.037076860666275024, + 0.10445339977741241, + -0.007476902101188898, + -0.05421832948923111, + -0.057331182062625885, + -0.028206603601574898, + -0.10876478999853134, + -0.054246578365564346, + -0.07798007130622864, + 0.007010222878307104, + 0.08005029708147049, + -0.03617798164486885, + -0.091450534760952, + -0.001173914410173893, + -0.04186731576919556, + -0.03306078910827637, + 0.007641764357686043, + 0.0025816650595515966, + 0.007195710204541683, + -0.039284445345401764, + 0.03186079487204552, + 0.035535044968128204, + -0.0583762526512146, + 0.07426784187555313, + 0.0618494488298893, + 0.0685887560248375, + 0.042208295315504074, + 0.11392723768949509, + 0.058139096945524216, + 0.03435106948018074, + -0.057963777333498, + -0.017791777849197388, + 0.04432652145624161, + 0.007722997572273016, + 0.00598284462466836, + -0.045393314212560654, + -0.012984503991901875, + 0.049665264785289764, + -0.07934141904115677, + -0.030519681051373482, + 0.011651089414954185, + -0.10828892141580582, + -0.03237505257129669, + 0.07965796440839767, + 0.08408056944608688, + 0.07775214314460754, + 0.07191157341003418, + -0.0712609589099884, + -0.029764704406261444, + -0.08528588712215424, + -0.022262411192059517, + 0.007992194034159184, + -3.7729768709946036e-33, + 0.019580231979489326, + 0.06612074375152588, + -0.03617168590426445, + 0.019227132201194763, + -0.011025832034647465, + 0.06122944876551628, + -0.04360932484269142, + -0.0010933999437838793, + -0.04948113486170769, + 0.06938629597425461, + -0.007525893859565258, + 0.012279086746275425, + -0.0048677679151296616, + 0.14159339666366577, + -0.018471240997314453, + -0.02541673742234707, + -0.08692535012960434, + -0.027133965864777565, + 0.04457319900393486, + 0.053831178694963455, + -0.06504874676465988, + 0.05151813477277756, + 0.03271134942770004, + -0.04352863132953644, + -0.02643132209777832, + -0.07261263579130173, + -0.0013807089999318123, + -0.047067586332559586, + 0.05288313701748848, + 0.012564326636493206, + 0.04352216422557831, + 0.03670820593833923, + 0.11630173027515411, + -0.038530126214027405, + -0.04186978563666344, + 0.028094874694943428, + 0.007846887223422527, + -0.0478353351354599, + 0.0173941683024168, + -0.01962013728916645, + -0.057154491543769836, + -0.03803208842873573, + 0.02976282499730587, + 0.01560420636087656, + -0.012592142447829247, + 0.09943835437297821, + -0.00789567083120346, + 0.015227691270411015, + 0.030982648953795433, + -0.005252868868410587, + 0.007041442207992077, + -0.023276522755622864, + -0.07917225360870361, + 0.0014248150400817394, + -0.05552799627184868, + -0.0955471470952034, + 0.0031163941603153944, + -0.019437942653894424, + -0.06578530371189117, + -0.09184221178293228, + -0.0016173507319763303, + 0.009890583343803883, + 0.06852507591247559, + -0.03414798155426979, + -0.10204565525054932, + 0.08611806482076645, + 0.0037833997048437595, + 0.012608682736754417, + 0.05178530141711235, + 0.04947182908654213, + -0.08687366545200348, + 0.07325273752212524, + 0.033636804670095444, + 0.04620501399040222, + 0.072649747133255, + -0.008201169781386852, + 0.047563157975673676, + -0.015678267925977707, + -0.023086702451109886, + 0.010184516198933125, + -0.06069980561733246, + -0.026383329182863235, + 0.051344964653253555, + 0.10320743918418884, + 0.07080680131912231, + 0.11619198322296143, + 0.013128078542649746, + -0.14407971501350403, + -0.01936430111527443, + -0.033176496624946594, + -0.055673617869615555, + 0.018267426639795303, + 0.014737945981323719, + -0.041848815977573395, + -0.0036032008938491344, + 4.0791677224308107e-35, + -0.026829397305846214, + 0.03128498047590256, + -0.025343479588627815, + 0.0661562904715538, + -0.05069994553923607, + 0.06206827238202095, + 0.024766994640231133, + 0.06187617406249046, + 0.0757942944765091, + 0.03520594909787178, + -0.013539187610149384, + -0.06272546947002411, + -0.0739530548453331, + 0.011302991770207882, + 0.05075095593929291, + -0.05220012739300728, + -0.019973967224359512, + 0.01209066528826952, + 0.05750030279159546, + 0.057058773934841156, + -0.02212490141391754, + -0.057082369923591614, + -0.07794484496116638, + 0.05999895557761192, + -0.017031993716955185, + -0.006949808914214373, + -0.025626998394727707, + -0.07053379714488983, + -0.014865278266370296, + 0.05053921043872833, + -0.019396381452679634, + -0.06159140542149544, + -0.002859191969037056, + 0.019006725400686264, + -0.056913748383522034, + 0.04116583243012428, + 0.083510622382164, + -0.03328956663608551, + -0.009252103976905346, + -0.03797207027673721, + -0.017109224572777748, + -0.026403967291116714, + 0.05730005353689194, + 0.02091698907315731, + -0.045684125274419785, + -0.10589323937892914, + -0.057522114366292953, + 0.026412246748805046, + -0.06566570699214935, + 0.015677733346819878, + 0.060078199952840805, + -0.015871351584792137, + -0.008646865375339985, + 0.03143930807709694, + -0.0797782838344574, + 0.10365696251392365, + 0.04594498500227928, + -0.03550391271710396, + 0.007688250858336687, + 0.0596495047211647, + -0.09379391372203827, + 0.03118622861802578, + -0.03139382600784302, + 0.03527185320854187, + -0.013981560245156288, + -0.02819971553981304, + 0.008342212997376919, + -0.09443065524101257, + -0.01533424947410822, + -0.05488663166761398, + -0.047779496759176254, + 0.028845572844147682, + -0.06699250638484955, + -0.048304107040166855, + -0.004020942375063896, + 0.025608858093619347, + -0.03973773494362831, + -0.03933556377887726, + -0.0058167907409369946, + 0.027815187349915504, + 0.004038522485643625, + -0.023938465863466263, + 0.030480166897177696, + -0.007536631543189287, + -0.034024275839328766, + -0.02368777245283127, + -0.04936593025922775, + -0.06298975646495819, + 0.0039462498389184475, + -0.04137539491057396, + -0.07007782906293869, + 0.03518667817115784, + -0.06660090386867523, + -0.01732967607676983, + -0.03503946587443352, + -2.4765610007193573e-08, + -0.04028666764497757, + 0.024041181430220604, + -0.03746810555458069, + -0.06273219734430313, + 0.09220240265130997, + -0.04173507168889046, + 0.037699297070503235, + -0.01446504145860672, + -0.058602433651685715, + -0.02946474775671959, + 0.053079068660736084, + 0.04864728823304176, + -0.1258065104484558, + -0.04532824084162712, + -0.0010782283497974277, + -0.0338762141764164, + 0.012246163561940193, + -0.04035172984004021, + -0.02561078406870365, + -0.04577260836958885, + 0.020366620272397995, + 0.056000106036663055, + -0.03572536259889603, + 0.0022716294042766094, + -0.01502589974552393, + -0.03725137934088707, + 0.07722235471010208, + 0.1359076350927353, + 0.07807175070047379, + 0.016574006527662277, + -0.008445672690868378, + 0.07679025083780289, + 0.0073035890236496925, + -0.04797455668449402, + -0.06403083354234695, + -0.030999239534139633, + 0.017750922590494156, + 0.0026650656946003437, + -0.05348311364650726, + 0.0871860533952713, + 0.05468328297138214, + -0.016480697318911552, + -0.08122676610946655, + -0.052043117582798004, + 0.038537222892045975, + -0.05241888388991356, + 0.005927294958382845, + -0.028661996126174927, + 0.015863947570323944, + -0.11980341374874115, + 0.019104953855276108, + 0.025198841467499733, + 0.08301462233066559, + -0.0064798155799508095, + -0.0075663053430616856, + -0.048781394958496094, + -0.026354290544986725, + 0.05715927109122276, + 0.03176666423678398, + -0.0008914862992241979, + 0.08972190320491791, + -0.06098813936114311, + 0.05906181409955025, + -0.002996676368638873 + ], + "monitor-bold||screen,television,tv,displays": [ + 0.026467779651284218, + -0.04284820705652237, + -0.08864869177341461, + -0.06314298510551453, + 0.021937822923064232, + -0.01112957764416933, + 0.03140684589743614, + -0.025066403672099113, + 0.04930078238248825, + -0.01561663392931223, + 0.024919947609305382, + -0.025284359231591225, + 0.0758214145898819, + 0.006210699677467346, + -0.04439728334546089, + -0.05367269366979599, + 0.060328349471092224, + -0.07297725975513458, + 0.034173350781202316, + 0.03461677208542824, + 0.030625591054558754, + -0.011495503596961498, + -0.0009138262830674648, + 0.01565973274409771, + 0.05043453723192215, + 0.025536533445119858, + 0.03226184472441673, + 0.059902723878622055, + -0.0016588364960625768, + -0.09042719751596451, + -0.060716480016708374, + -0.0029587759636342525, + 0.1133960634469986, + 0.07559800893068314, + -0.022010335698723793, + -0.0583103746175766, + 0.02810605615377426, + -0.08106498420238495, + -0.09368515759706497, + -0.005497933365404606, + 0.008108308538794518, + -0.061480145901441574, + 0.013215835206210613, + 0.005350905004888773, + -0.04741716757416725, + -0.045780349522829056, + -0.05783848091959953, + -0.04981043189764023, + -0.007762541528791189, + -0.04252634942531586, + -0.0353749543428421, + -0.01833355985581875, + -0.07381913810968399, + 0.029611950740218163, + 0.007871449925005436, + -0.009904826059937477, + -0.04228623956441879, + 0.05048009008169174, + 0.06839914619922638, + 0.020212281495332718, + 0.048911530524492264, + -0.005427930969744921, + 0.05369427800178528, + 0.06108112633228302, + 0.03807123005390167, + 0.040160708129405975, + 0.014325568452477455, + 0.006912400014698505, + -0.04688463732600212, + 0.034565236419439316, + -0.024377159774303436, + 0.024011697620153427, + 0.026430707424879074, + -0.05697555094957352, + -0.011753360740840435, + 0.02205432765185833, + 0.025925206020474434, + -0.10511509329080582, + 0.014332479797303677, + -0.03831963613629341, + -0.09861762076616287, + -0.039401907473802567, + -0.10237441956996918, + 0.030734412372112274, + 0.08762210607528687, + 0.01597828045487404, + -0.05233971029520035, + -0.04925789311528206, + -0.03981678932905197, + -0.04028738662600517, + -0.11329267174005508, + 0.015986571088433266, + 0.004134041722863913, + 0.041456013917922974, + -0.09430769830942154, + -0.0184641033411026, + 0.08638142794370651, + -0.02715941332280636, + 0.0016921646893024445, + 0.07630448788404465, + 0.051712267100811005, + 0.0323905311524868, + 0.12970884144306183, + 0.03225038945674896, + -0.06332998722791672, + -0.0687979906797409, + 0.023829519748687744, + 0.002886897884309292, + -0.03860970214009285, + 0.019397228956222534, + -0.019084930419921875, + -0.0258252564817667, + -0.04234909266233444, + -0.007701602764427662, + -0.009559382684528828, + 0.006230061408132315, + -0.07507035881280899, + -0.013011287897825241, + 0.16239920258522034, + 0.018764737993478775, + -0.018657611683011055, + -0.06136273965239525, + -0.06022337079048157, + -0.033722613006830215, + 0.08504055440425873, + 0.028681619092822075, + 0.038734208792448044, + -2.211483970824863e-33, + 0.030833741649985313, + 0.023067543283104897, + -0.057477954775094986, + 0.0804889053106308, + -0.0028570194263011217, + 0.15060481429100037, + -0.04086197167634964, + 0.03811821714043617, + 0.013931148685514927, + 0.06056222692131996, + 0.10598716884851456, + 0.1025616005063057, + -0.023977629840373993, + 0.05545781925320625, + 0.0477910153567791, + -0.05227138102054596, + 0.01665908843278885, + 0.024336514994502068, + -0.12723426520824432, + 0.007599489763379097, + 0.0002581007720436901, + 0.000752453226596117, + -0.014848734252154827, + -0.06373191624879837, + 0.020067378878593445, + -0.018509745597839355, + -0.006822241470217705, + 0.02568049356341362, + -0.06735524535179138, + 0.0017325881635770202, + 0.07552018761634827, + 0.04645422101020813, + 0.08690832555294037, + 0.002718953415751457, + -0.032745588570833206, + -0.05525318905711174, + -0.003116867272183299, + 0.012846044264733791, + -0.003801892511546612, + 0.0715998187661171, + -0.110866978764534, + 0.031087055802345276, + -0.02776677906513214, + -0.045920856297016144, + 0.022096561267971992, + 0.1419961005449295, + 0.0018891316140070558, + -0.054730091243982315, + 0.01188692171126604, + 0.024222616106271744, + -0.04349996894598007, + -0.03987831994891167, + 0.013621770776808262, + -0.0806177407503128, + 0.016158388927578926, + 0.008740287274122238, + -0.014813149347901344, + 0.025312893092632294, + 0.0182842705398798, + -0.03911660984158516, + -0.02508300356566906, + 0.04328341409564018, + 0.0408351793885231, + -0.014774338342249393, + -0.04006550833582878, + 0.06996608525514603, + 0.06570224463939667, + 0.07891847938299179, + -0.015014621429145336, + -0.029474912211298943, + -0.01421662513166666, + 0.0733204185962677, + 0.040938686579465866, + 0.022374339401721954, + -0.03699788078665733, + 0.04996968433260918, + -0.029516197741031647, + 0.026547668501734734, + -0.025232478976249695, + -0.08247890323400497, + -0.03867213428020477, + -0.0010824529454112053, + -0.006004543974995613, + 0.06821843981742859, + -0.006598275620490313, + 0.014661209657788277, + -0.08082276582717896, + -0.11737213283777237, + -0.02833249419927597, + 0.037381552159786224, + -0.06248190253973007, + -0.03333500772714615, + -0.0017616382101550698, + -0.06408189982175827, + -0.08715616911649704, + -6.147613212899861e-34, + 0.053331173956394196, + 0.03679519519209862, + -0.059552788734436035, + -0.10756049305200577, + -0.0194168072193861, + -0.020772051066160202, + 0.07679317146539688, + 0.022305328398942947, + 0.016499090939760208, + -0.016176190227270126, + 0.058971505612134933, + -0.017857670783996582, + -0.10754112154245377, + -0.042986225336790085, + -0.02945566363632679, + 0.02660105936229229, + 0.01580384187400341, + -0.022156983613967896, + -0.04929723963141441, + 0.011969364248216152, + -0.03709414228796959, + -0.03733329102396965, + -0.05296844616532326, + 0.07346907258033752, + 0.06262729316949844, + -0.0006069593946449459, + 0.01370414812117815, + 0.009152709506452084, + -0.04801859334111214, + 0.047487806528806686, + -0.0044982461258769035, + -0.03948923572897911, + 0.06655608862638474, + 0.09937966614961624, + -0.014043835923075676, + 0.0024511448573321104, + 0.055775586515665054, + -0.05791349336504936, + 0.0012875630054622889, + 0.005538125056773424, + 0.021084014326334, + 0.10314907878637314, + 0.00833132490515709, + 0.0913742184638977, + -0.030730310827493668, + 0.06309597939252853, + -0.017085501924157143, + -0.08496078103780746, + -0.031141016632318497, + 0.011433366686105728, + 0.011303490959107876, + -0.01936376467347145, + 0.00505795469507575, + -0.07782942056655884, + -0.04583129286766052, + -0.04314703494310379, + -0.006895130500197411, + 0.05999266356229782, + -0.015603292733430862, + 0.03704451397061348, + 0.05544784665107727, + -0.007505747955292463, + -0.10319669544696808, + -0.047630228102207184, + -0.0013929870910942554, + -0.0003690174489747733, + 0.05685655027627945, + -0.011028680019080639, + 0.08909274637699127, + 0.0008610363001935184, + 0.04434516280889511, + -0.07797756046056747, + -0.008820191957056522, + -0.030642112717032433, + -0.007694797590374947, + 0.016658419743180275, + 0.015628136694431305, + 0.022637151181697845, + 0.004785145167261362, + 0.07893992215394974, + 0.024241112172603607, + -0.02659137174487114, + 0.040070053189992905, + 0.033878788352012634, + -0.029056012630462646, + 0.03211187943816185, + -0.00552739854902029, + 0.02669667638838291, + 0.022885872051119804, + 0.006076508667320013, + -0.06853124499320984, + 0.04388250410556793, + -0.02038964070379734, + -0.061178334057331085, + -0.009706448763608932, + -1.7639173677252984e-08, + -0.014020553790032864, + -0.05996529385447502, + -0.023072367534041405, + -0.01255030557513237, + -0.03297290951013565, + -0.09432563930749893, + 0.007137049920856953, + -0.10326036810874939, + 0.001168245100416243, + -0.060757216066122055, + -0.00919985119253397, + -0.023052509874105453, + -0.049285851418972015, + -0.009779022075235844, + 0.10601998120546341, + -0.022269727662205696, + -0.04350828751921654, + 0.03713901713490486, + -0.027951959520578384, + 0.03004283457994461, + -0.029432382434606552, + 0.017604319378733635, + 0.04650558903813362, + -0.01571546122431755, + 0.057616714388132095, + -0.0013619030360132456, + -0.07257884740829468, + -0.00036399721284396946, + 0.10013997554779053, + 0.04970301315188408, + 0.045983098447322845, + 0.030655387789011, + -0.028799979016184807, + -0.03617372736334801, + -0.021967576816678047, + -0.0033659799955785275, + -0.023449081927537918, + -0.005825472995638847, + 0.09204567968845367, + 0.13223125040531158, + 0.004182600881904364, + -0.12111783772706985, + -0.07679865509271622, + -0.009785684756934643, + 0.019688647240400314, + 0.032762058079242706, + 0.039964623749256134, + -0.03879870846867561, + -0.049541812390089035, + -0.12360214442014694, + -0.03300929442048073, + 0.04773087054491043, + 0.0061136577278375626, + 0.01857830584049225, + -0.039697010070085526, + -0.09407442063093185, + 0.07961433380842209, + 0.08536262065172195, + -0.003215613542124629, + 0.026693925261497498, + 0.13066214323043823, + 0.006403515115380287, + 0.053939834237098694, + 0.0063238199800252914 + ], + "monitor-arrow-up-bold||*new*,screen,screencast,screenshare,upload,video,movie": [ + -0.012915275059640408, + -0.09032431244850159, + -0.0802331417798996, + -0.050501659512519836, + 0.08181887120008469, + -0.002220125636085868, + 0.08627371490001678, + -0.042843110859394073, + 0.0420573465526104, + 0.012609647586941719, + 0.031934481114149094, + 0.01256028562784195, + 0.04699179157614708, + 0.02586790919303894, + -0.05940120294690132, + -0.04198045656085014, + 0.032434914261102676, + -0.033272530883550644, + 0.01856009103357792, + -0.041367970407009125, + 0.00494817178696394, + -0.07023823261260986, + 0.03716275840997696, + 0.010544311255216599, + 0.043804802000522614, + -0.01761230267584324, + 0.01690727099776268, + 0.0354543998837471, + -0.014140649698674679, + -0.04776936024427414, + -0.07455632090568542, + 0.0007986591081134975, + 0.10006669163703918, + 0.06522632390260696, + -0.04455281421542168, + -0.0563245564699173, + 0.06376775354146957, + -0.03525037690997124, + -0.13644260168075562, + -0.021548369899392128, + -0.009605585597455502, + -0.03509063646197319, + 0.02558928169310093, + 0.008533930405974388, + -0.05871369317173958, + -0.020617946982383728, + -0.066982202231884, + -0.0629134252667427, + 0.03454217687249184, + 0.015233374200761318, + -0.047116152942180634, + -0.07587423920631409, + -0.10939673334360123, + 0.03782530501484871, + 0.04767037555575371, + 0.013713281601667404, + -0.026492368429899216, + -0.029544007033109665, + 0.10769069939851761, + 0.01823572814464569, + 0.010298226960003376, + 0.005729572381824255, + 0.055630236864089966, + 0.05788598209619522, + 0.05171135812997818, + 0.036695145070552826, + -0.0005295303999446332, + 0.033527687191963196, + -0.033475153148174286, + 0.040343593806028366, + -0.05771053954958916, + 0.0073605929501354694, + 0.023829296231269836, + -0.05769186094403267, + -0.04635125771164894, + -0.08056165277957916, + 0.031278096139431, + -0.01402252446860075, + -0.005403291899710894, + -0.08636105060577393, + -0.037784989923238754, + -0.025611527264118195, + -0.08176738768815994, + 0.06458477675914764, + 0.07840810716152191, + 0.08164464682340622, + -0.04093899205327034, + -0.04874826967716217, + -0.06030682474374771, + -0.024650247767567635, + -0.1320168673992157, + 0.0006394978263415396, + -0.011186107993125916, + -0.013000681065022945, + -0.07309737801551819, + -0.011860513128340244, + 0.050149958580732346, + -0.0674414336681366, + -0.02629818208515644, + 0.05739976838231087, + -0.0036178650334477425, + -0.012669829651713371, + 0.10820959508419037, + -0.007134541869163513, + -0.022931285202503204, + -0.04190613701939583, + 0.003520189318805933, + -0.005822634790092707, + -0.029313715174794197, + 0.06771456450223923, + -0.03487192466855049, + -0.043180178850889206, + -0.004781974945217371, + -0.058418769389390945, + 0.029528023675084114, + 0.08324595540761948, + -0.10492275655269623, + -0.00536022474989295, + 0.06973854452371597, + 0.05807436257600784, + 0.07002265751361847, + -0.061765406280756, + -0.1045863926410675, + -0.06736904382705688, + 0.018116449937224388, + 0.01888521946966648, + 0.01527081523090601, + -7.36144291406086e-34, + 0.11771197617053986, + 0.006769901607185602, + -0.016108332201838493, + 0.04944659024477005, + 0.04255456104874611, + 0.0639052540063858, + -0.01628239080309868, + 0.03596179932355881, + -0.04433984309434891, + 0.003182207467034459, + 0.11696633696556091, + 0.045852843672037125, + -0.06565465778112411, + 0.10004892945289612, + 0.059021756052970886, + -0.08230356127023697, + 0.009129145182669163, + 0.0658360943198204, + -0.060913942754268646, + -0.047189369797706604, + -0.052457135170698166, + 0.012720937840640545, + -0.03250488266348839, + -0.016372963786125183, + 0.03247103467583656, + 0.012619738467037678, + 0.013665894977748394, + 0.03202372416853905, + -0.060687221586704254, + 0.02148718386888504, + 0.01934823952615261, + 0.005169993732124567, + 0.08444833010435104, + 0.003147483104839921, + -0.014173218049108982, + -0.05047062411904335, + -0.08765533566474915, + -0.015593763440847397, + 0.023363271728157997, + 0.0249157827347517, + -0.10733026266098022, + -0.038126375526189804, + -0.1123109981417656, + -0.037073906511068344, + -0.008028765209019184, + 0.07868561148643494, + -0.06699731945991516, + -0.06149187684059143, + 0.019327478483319283, + 0.03271196410059929, + 0.023308007046580315, + -0.017765270546078682, + 0.013531779870390892, + -0.10569272935390472, + -0.07130885124206543, + 0.03732121363282204, + -0.04853798821568489, + 0.05240581929683685, + 0.0020398441702127457, + -0.07302054017782211, + -0.03918309882283211, + 0.033342212438583374, + 0.005404208321124315, + 0.0386982299387455, + -0.06402696669101715, + 0.0713440477848053, + 0.03635270521044731, + 0.06278476864099503, + -0.011316281743347645, + 0.01331409066915512, + -0.06602208316326141, + 0.03170575574040413, + 0.016517609357833862, + 0.05331190302968025, + -0.0016835525166243315, + 0.027854613959789276, + -0.036727175116539, + -0.01953466795384884, + -0.019174879416823387, + -0.03548233583569527, + -0.11245962232351303, + -0.014162794686853886, + -0.0271206796169281, + 0.03258581459522247, + 0.04355614259839058, + -0.0510086826980114, + -0.05110877752304077, + -0.07396838068962097, + -0.02960044890642166, + 0.025165874511003494, + -0.10006896406412125, + 0.009346307255327702, + -0.0007667109020985663, + -0.05576585978269577, + -0.07853524386882782, + -2.001884511865618e-33, + 0.04250061884522438, + 0.057707931846380234, + -0.08951389789581299, + -0.0466022714972496, + -0.04848095402121544, + -0.0010909232078120112, + 0.07052268832921982, + 0.05446496233344078, + 0.08304295688867569, + -0.03078363463282585, + 0.06283924728631973, + 0.028530050069093704, + -0.10861240327358246, + -0.0869114100933075, + 0.02287338487803936, + 0.0475495271384716, + -0.0011085525620728731, + 0.02071225643157959, + -0.06876865029335022, + 0.0002475908841006458, + 0.0120027931407094, + -0.09415096789598465, + -0.0006793983629904687, + 0.04034055396914482, + 0.05715314671397209, + -0.01932407356798649, + 0.06420727074146271, + 0.06792188435792923, + 0.033235710114240646, + -0.04041953384876251, + 0.07670317590236664, + 0.009444219060242176, + 0.011458785273134708, + 0.07329820096492767, + -0.0017664001788944006, + 0.0007495803292840719, + 0.07568267732858658, + -0.03498491644859314, + -0.01176194753497839, + 0.0741572231054306, + 0.018527118489146233, + 0.05769854038953781, + 0.021034516394138336, + 0.062159463763237, + 0.027772024273872375, + 0.05729522928595543, + -0.022989165037870407, + 0.006992904469370842, + -0.05911562219262123, + 0.011290124617516994, + 0.04484166204929352, + -0.06800638884305954, + -0.002864233450964093, + -0.05747917294502258, + -0.046440489590168, + 0.031282536685466766, + 0.06593484431505203, + 0.09993549436330795, + -0.014384279027581215, + 0.015326031483709812, + 0.034391481429338455, + -0.03375568240880966, + -0.10797375440597534, + -0.035684846341609955, + -0.02287784405052662, + 0.013173195533454418, + 0.02439899742603302, + -0.02392447739839554, + -0.03298528492450714, + 0.004373989999294281, + 0.03624606877565384, + -0.0397663414478302, + -0.011294061318039894, + -0.022214435040950775, + -0.021425144746899605, + -0.05524391680955887, + 0.02110208198428154, + 0.006562413182109594, + -0.004988180473446846, + -0.02176092192530632, + 0.008395024575293064, + 0.021535690873861313, + 0.07825136184692383, + 7.940304203657433e-05, + 0.012026776559650898, + 0.07877997308969498, + -0.008196027018129826, + 0.08288754522800446, + 0.05650068819522858, + -0.042685288935899734, + -0.08520194888114929, + 0.05982004106044769, + 0.025139538571238518, + -0.03674513101577759, + -0.03646682947874069, + -2.3133003068664948e-08, + -0.07032307237386703, + -0.011066310107707977, + -0.020226435735821724, + -0.04073963686823845, + -0.018256505951285362, + -0.07443663477897644, + -0.006476663053035736, + 0.0038926394190639257, + 0.08114391565322876, + -0.15066255629062653, + 0.060939375311136246, + 0.024110419675707817, + -0.033804118633270264, + 0.011045497842133045, + 0.07025040686130524, + 0.007357418537139893, + 0.007073299493640661, + 0.03904469683766365, + -0.023509414866566658, + -0.023602241650223732, + -0.03158792853355408, + 0.04735388234257698, + 0.02357691153883934, + 0.017630135640501976, + -0.03876541927456856, + -0.032816797494888306, + -0.005795184522867203, + 0.03359924629330635, + 0.07170695811510086, + 0.034257471561431885, + 0.025590280070900917, + 0.06551685184240341, + -0.028131194412708282, + -0.042473070323467255, + -0.02061891369521618, + 0.035989586263895035, + -0.04368991777300835, + -0.003916491288691759, + 0.05251437798142433, + 0.11642765253782272, + 0.04561772570014, + -0.06197745352983475, + -0.026264382526278496, + -0.028255240991711617, + -0.04646393656730652, + 0.06275086849927902, + 0.051664914935827255, + -0.030822472646832466, + -0.07026980817317963, + -0.13349273800849915, + -0.03688156604766846, + 0.03214583545923233, + 0.024274250492453575, + 0.03292100131511688, + 0.001428992603905499, + 0.003074856009334326, + 0.09030231833457947, + 0.009700597263872623, + -0.003307964187115431, + 0.022024452686309814, + 0.07917706668376923, + 0.05458531901240349, + 0.05360659584403038, + 0.06861495971679688 + ], + "monitor-play-bold||screen,television,tv,displays,screencast,video,movie": [ + 0.03503301739692688, + -0.08620107173919678, + -0.07831696420907974, + -0.11188257485628128, + 0.047088850289583206, + 0.039914026856422424, + 0.06791531294584274, + -0.012565938755869865, + 0.046434685587882996, + -0.005790234077721834, + 0.02975461632013321, + -0.015659457072615623, + 0.059635892510414124, + 0.03555674105882645, + -0.041975583881139755, + -0.06240864843130112, + 0.06390571594238281, + -0.05731656029820442, + 0.04654430225491524, + -0.00559420557692647, + 0.03405708819627762, + -0.022690320387482643, + 0.0026177777908742428, + 0.023383401334285736, + 0.044221214950084686, + 0.014813937246799469, + 0.021796846762299538, + 0.08533383905887604, + -0.023672567680478096, + -0.09361052513122559, + -0.052305009216070175, + 0.01801726222038269, + 0.15327699482440948, + 0.059170082211494446, + -0.02770552784204483, + -0.05852454528212547, + 0.00505462009459734, + -0.08372697979211807, + -0.1377749741077423, + -0.018097594380378723, + 0.00560295395553112, + -0.04398534074425697, + 0.04108757898211479, + 0.012556682340800762, + -0.04064454510807991, + -0.03879028931260109, + -0.0896548256278038, + -0.06262785196304321, + -0.015453600324690342, + -0.007937725633382797, + -0.06394174695014954, + -0.01709814742207527, + -0.10603901743888855, + 0.0569927841424942, + 0.029438894242048264, + -0.022341998293995857, + -0.030849531292915344, + 0.05491097643971443, + 0.07992768287658691, + 0.054859571158885956, + 0.02224758081138134, + -0.02572159469127655, + 0.05392605438828468, + 0.07021508365869522, + 0.04425259679555893, + 0.026056867092847824, + 0.02229316160082817, + 0.013694724068045616, + -0.03973944112658501, + 0.03348648175597191, + -0.07345160841941833, + 0.04663274437189102, + 0.041698992252349854, + -0.045724157243967056, + -0.025705983862280846, + -0.032672930508852005, + 0.014254161156713963, + -0.08980606496334076, + -0.0029129227623343468, + -0.0948396623134613, + -0.08757544308900833, + -0.05794760584831238, + -0.09528805315494537, + 0.029326504096388817, + 0.07285644114017487, + 0.04445165768265724, + -0.039760760962963104, + -0.05524396523833275, + -0.035357676446437836, + -0.010406125336885452, + -0.18425528705120087, + -0.01051443349570036, + 0.00714378897100687, + 0.038394831120967865, + -0.08811969310045242, + 0.015822749584913254, + 0.059923868626356125, + -0.06749001145362854, + 0.010525746271014214, + 0.06451087445020676, + 0.01851366087794304, + -3.9016391383484006e-05, + 0.12165120244026184, + 0.0030363246332854033, + -0.06530915945768356, + -0.09257117658853531, + -0.017607862129807472, + 0.012837047688663006, + -0.016142550855875015, + 0.02752583473920822, + -0.04314415156841278, + -0.0339854434132576, + -0.03294643387198448, + -0.03587331622838974, + 0.0210722703486681, + 0.043738462030887604, + -0.0430692657828331, + -0.004698715638369322, + 0.13647137582302094, + 0.042996060103178024, + 0.010216301307082176, + -0.044215377420186996, + -0.052736733108758926, + -0.04424937814474106, + 0.04440418258309364, + 0.017281154170632362, + 0.06101613491773605, + -1.9970348629845068e-33, + 0.05346096307039261, + -0.015419934876263142, + -0.033658791333436966, + 0.08951862901449203, + 0.010242844000458717, + 0.10184413194656372, + -0.03301286697387695, + 0.05152809992432594, + -0.02697807550430298, + 0.05711236596107483, + 0.10714763402938843, + 0.07484854757785797, + -0.03973386436700821, + 0.082186758518219, + 0.05754217877984047, + -0.03551835939288139, + -0.0043973978608846664, + 0.04421043395996094, + -0.10471965372562408, + -0.010414701886475086, + -0.010799746960401535, + 0.05224790424108505, + 0.0035607991740107536, + -0.039818234741687775, + 0.03462991118431091, + -0.019142836332321167, + 0.001978300977498293, + -0.01428865548223257, + -0.027423733845353127, + 0.00601949030533433, + 0.07409084588289261, + -0.006981997285038233, + 0.06811271607875824, + -0.009164098650217056, + 0.03342059627175331, + -0.05405813828110695, + -0.05736995488405228, + -0.018202096223831177, + 0.0017089369939640164, + 0.02398676797747612, + -0.12922045588493347, + -0.009254964999854565, + -0.07529903948307037, + -0.04787873849272728, + 0.006307805422693491, + 0.08456851541996002, + -0.019559308886528015, + -0.013160680420696735, + 0.0037466986104846, + 0.04509301111102104, + -0.009304269216954708, + 0.010131998918950558, + 0.02520790696144104, + -0.11003082245588303, + 0.011287727393209934, + 0.03279352933168411, + -0.0005021860124543309, + 0.028794528916478157, + 0.0011215436970815063, + -0.04243757203221321, + 0.011567077599465847, + 0.047793202102184296, + 0.02688548155128956, + -0.044679488986730576, + -0.038428567349910736, + 0.06734457612037659, + 0.08335632085800171, + 0.04394565150141716, + 0.01000592578202486, + -0.0012951121898368, + -0.027120085433125496, + 0.05883808434009552, + 0.05941386520862579, + 0.053714457899332047, + -0.04600183665752411, + 0.06722451746463776, + -0.046359047293663025, + 0.007192020770162344, + -0.06193947419524193, + -0.05028184875845909, + -0.07212948799133301, + -0.015516510233283043, + -0.032404378056526184, + 0.07017332315444946, + -0.024154482409358025, + -0.004934932105243206, + -0.07030125707387924, + -0.129370778799057, + -0.031980033963918686, + 0.010954718105494976, + -0.09275508671998978, + -0.008085929788649082, + 0.012738099321722984, + -0.05974127724766731, + -0.07799326628446579, + -7.148205483756812e-34, + 0.03168937936425209, + 0.036722343415021896, + -0.06975351274013519, + -0.08383108675479889, + -0.02371181733906269, + -0.04580502212047577, + 0.046738993376493454, + 0.03743138536810875, + 0.07389414310455322, + -0.009822625666856766, + 0.036656156182289124, + -0.03406820446252823, + -0.09446457028388977, + -0.05460540950298309, + -0.039769403636455536, + 0.03525511547923088, + -0.003981222864240408, + -0.011804045177996159, + -0.013618195429444313, + 0.01663512922823429, + -0.037627749145030975, + -0.03705824539065361, + -0.029165830463171005, + 0.06540833413600922, + 0.053060855716466904, + -0.01633239910006523, + 0.030282409861683846, + 0.02188282087445259, + -0.02596837654709816, + 0.019630607217550278, + 0.03986179456114769, + -0.03659741207957268, + 0.04247761517763138, + 0.060133785009384155, + -0.01618769019842148, + 0.015296326950192451, + 0.10983248054981232, + -0.041308265179395676, + -0.027874821797013283, + -0.0017759372713044286, + 0.04676832631230354, + 0.08874908089637756, + 0.01367159839719534, + 0.07353579252958298, + 6.57845739624463e-05, + 0.05294305831193924, + -0.03816384822130203, + -0.030426429584622383, + -0.05581638962030411, + 0.036745116114616394, + 0.012040242552757263, + -0.036934610456228256, + -0.0061903782188892365, + -0.09479736536741257, + -0.03162769228219986, + -0.024457944557070732, + 0.012513098306953907, + 0.04756706953048706, + -0.007222050800919533, + 0.044878993183374405, + 0.06111396476626396, + -0.012194355018436909, + -0.10099933296442032, + -0.02732398733496666, + 0.006432994734495878, + 0.011604415252804756, + 0.026769649237394333, + -0.01855861209332943, + 0.022889187559485435, + -0.028304746374487877, + 0.042002469301223755, + -0.05536393076181412, + -0.006093485746532679, + -0.023286767303943634, + -0.043164171278476715, + 0.006155041512101889, + 0.012960130348801613, + 0.0297855157405138, + -0.012531017884612083, + 0.04569553956389427, + 0.035715483129024506, + -0.016904490068554878, + 0.06760656833648682, + 0.01944892480969429, + 0.0003957606677431613, + 0.07442330569028854, + 0.024520738050341606, + 0.03945419192314148, + 0.04728607088327408, + 0.007046625018119812, + -0.055996671319007874, + 0.08300849795341492, + 0.010000388137996197, + -0.04279426485300064, + -0.02759358659386635, + -2.033945634138945e-08, + -0.049704659730196, + -0.04540020972490311, + -0.026656880974769592, + -0.041719093918800354, + -0.0505543015897274, + -0.0773276537656784, + 0.016218965873122215, + -0.07330240309238434, + 0.04534712806344032, + -0.08690323680639267, + 0.01582077145576477, + -0.019124532118439674, + -0.05200642719864845, + -0.014348670840263367, + 0.0772344246506691, + -0.0022819170262664557, + -0.016840744763612747, + 0.045597922056913376, + -0.02746901661157608, + 0.03457323834300041, + -0.0146391112357378, + 0.036562882363796234, + 0.025424884632229805, + -0.021285230293869972, + -0.0025884772185236216, + -0.011986181139945984, + -0.03898490220308304, + -0.012625743634998798, + 0.09982648491859436, + 0.05247167870402336, + 0.040246911346912384, + 0.054463766515254974, + -0.036656755954027176, + -0.08363889902830124, + -0.02706875465810299, + 0.033890917897224426, + -0.00453127920627594, + -0.016598571091890335, + 0.06113607808947563, + 0.14319075644016266, + 0.027116192504763603, + -0.08855961263179779, + -0.06592812389135361, + -0.01741079054772854, + 0.022219717502593994, + 0.047122225165367126, + 0.03104519471526146, + -0.03740190342068672, + -0.029067296534776688, + -0.10246141999959946, + -0.05416484922170639, + 0.06854748725891113, + -0.0070577701553702354, + 0.004987574648112059, + 0.010582244955003262, + -0.040225736796855927, + 0.09716645628213882, + 0.039946068078279495, + -0.004232776816934347, + -0.0019607781432569027, + 0.07656066119670868, + 0.05405087023973465, + 0.06647895276546478, + 0.062077369540929794 + ], + "moon-bold||night,evening,clear,sleep,snooze,night mode,dark mode,astronomy,stargazing": [ + 0.05612729862332344, + -0.04448239132761955, + 0.056112732738256454, + 0.07235201448202133, + -0.013124600052833557, + -0.030769871547818184, + 0.04520093649625778, + -0.08586180210113525, + -0.02527843415737152, + -0.04079427570104599, + -0.006845290306955576, + -0.04511642828583717, + -0.009891059249639511, + -0.052690159529447556, + -0.02088642492890358, + 0.0371728241443634, + 0.0022403053008019924, + 0.022230740636587143, + 0.04837215691804886, + 0.015652243047952652, + 0.027655545622110367, + -0.005883520934730768, + -0.0007469008560292423, + 0.055737126618623734, + 0.1210925281047821, + 0.08597945421934128, + 0.019543219357728958, + 0.004572851117700338, + 0.016367370262742043, + -0.08435726910829544, + -0.07540275901556015, + 0.11867175996303558, + 0.057370129972696304, + 0.0019469124963507056, + -0.015499698929488659, + 0.02687039040029049, + 0.008864506147801876, + -0.07962990552186966, + -0.018549589440226555, + 0.022169118747115135, + 0.02832649275660515, + -0.11303579807281494, + -0.010983867570757866, + -0.00843328982591629, + -0.059384480118751526, + 0.04691013693809509, + -0.059443358331918716, + -0.05306093767285347, + -0.00894940085709095, + 0.014195838011801243, + -0.01409795694053173, + -0.09209556877613068, + -0.14228475093841553, + 0.060740772634744644, + 0.04810066893696785, + 0.007741680834442377, + -0.08514813333749771, + -0.03556062653660774, + 0.07980953902006149, + -0.020185640081763268, + -0.02860688604414463, + 0.08768219500780106, + 0.0013317845296114683, + 0.043081317096948624, + 0.11654487252235413, + 0.07212052494287491, + -0.11974197626113892, + -0.05006823316216469, + 0.004355676006525755, + 0.014111555181443691, + -0.04833453893661499, + 0.019270580261945724, + -0.012514921836555004, + -0.04735881835222244, + -0.11757082492113113, + -0.01636108197271824, + 0.05185955390334129, + -0.03140367567539215, + 0.014668391086161137, + -0.07417139410972595, + -0.02025114931166172, + -0.02160199172794819, + -0.042159345000982285, + 0.06120569631457329, + 0.06694044172763824, + 0.010577337816357613, + -0.08928486704826355, + 0.02755158767104149, + -0.023201322183012962, + 0.014810563065111637, + -0.05952659249305725, + -0.03349142521619797, + -0.05054975301027298, + 0.017700836062431335, + -0.05284677445888519, + -0.023598061874508858, + 0.030651399865746498, + -0.05111735686659813, + 0.013760175555944443, + 0.03369744494557381, + 0.032315291464328766, + 0.04834074154496193, + 0.0067442418076097965, + 0.04519394785165787, + -0.008727637119591236, + -0.07528557628393173, + -0.004501071292907, + -0.0819958820939064, + -0.030600350350141525, + 0.02371356636285782, + -0.038135379552841187, + -0.06458985060453415, + 0.02997152879834175, + -0.05868922919034958, + 0.00834503211081028, + 0.03645937517285347, + -0.1251208484172821, + 0.07452378422021866, + 0.1027064323425293, + 0.06551201641559601, + 0.011220801621675491, + -0.02279428020119667, + 0.012825870886445045, + -0.055334486067295074, + 0.02796093188226223, + 0.004925182089209557, + 0.012488266453146935, + -1.8962961221038647e-34, + 0.11774183809757233, + 0.019690265879034996, + -0.027875132858753204, + 0.07356070727109909, + 0.07134992629289627, + 0.018780473619699478, + -0.06913066655397415, + -0.0035477548372000456, + -0.061901453882455826, + 0.04736606031656265, + -0.000885270768776536, + 0.061675578355789185, + 0.011969915591180325, + 0.06326194852590561, + 0.08140935748815536, + 0.04912663623690605, + 0.08859698474407196, + -0.014892988838255405, + -0.03524434193968773, + -0.007840054109692574, + -0.05928856506943703, + 0.08288341760635376, + -0.06270744651556015, + -0.05967754125595093, + 0.032874710857868195, + -0.06759193539619446, + 0.010152461938560009, + -0.012943845242261887, + -0.05560164153575897, + 0.03201352059841156, + 0.07610881328582764, + -0.011501997709274292, + 0.04425742104649544, + 0.07379844784736633, + 0.01640601083636284, + 0.0478767566382885, + -0.061453819274902344, + 0.021540790796279907, + -0.06830558180809021, + 0.002570257056504488, + -0.018178286030888557, + 0.01467251405119896, + -0.07747981697320938, + -0.05309797450900078, + 0.018528778105974197, + 0.08352991938591003, + 0.0027040743734687567, + 0.0011795333120971918, + 0.018795978277921677, + 0.08019695430994034, + 0.007253463380038738, + -0.008102989755570889, + -0.008688720874488354, + -0.054274141788482666, + 0.02629115991294384, + 0.06895288079977036, + -0.026200832799077034, + 0.04716292768716812, + -0.0825292244553566, + 0.05913699045777321, + 0.011151605285704136, + -0.04648134112358093, + 0.11612363159656525, + -0.12250085175037384, + 0.015376953408122063, + 0.0506664477288723, + -0.10098499059677124, + -0.0037303033750504255, + -0.017285950481891632, + -0.04100282862782478, + -0.031662315130233765, + 0.02216663397848606, + 0.0732908695936203, + 0.018944090232253075, + 0.009313542395830154, + -0.01295375730842352, + 0.10256285965442657, + -0.03441974148154259, + -0.0018131728284060955, + -0.0417155921459198, + -0.0571402981877327, + 0.0009518358274362981, + 0.0014856088673695922, + -0.020288430154323578, + 0.010084123350679874, + -0.006519704591482878, + 0.022512806579470634, + 0.03352837637066841, + -0.05986960977315903, + -0.014780151657760143, + -0.07852402329444885, + -0.04094421863555908, + 0.0553639680147171, + -0.03948144242167473, + -0.11894141882658005, + -1.557632870595228e-33, + 0.034664686769247055, + -0.03141647204756737, + -0.07068856805562973, + 0.0006175240268930793, + -0.0033239028416574, + 0.01968614012002945, + -0.003608737839385867, + -0.0004807664081454277, + -0.02649085223674774, + 0.07136837393045425, + 0.015052332542836666, + 0.0001700897846603766, + -0.058604851365089417, + -0.11669569462537766, + 0.022103186696767807, + -0.05476569011807442, + 0.007795258425176144, + 0.07065295428037643, + -0.025890782475471497, + 0.1298670917749405, + -0.01676023378968239, + 0.013289184309542179, + -0.02536810003221035, + -0.004432669375091791, + -0.007573372684419155, + 0.026814576238393784, + 0.07725216448307037, + 0.03604520112276077, + -0.04524775221943855, + -0.0067543755285441875, + -0.04518045112490654, + -0.02181047759950161, + 0.003382721683010459, + -0.019538238644599915, + -0.060215916484594345, + 0.07560722529888153, + 0.044168438762426376, + -0.062134865671396255, + -0.029321402311325073, + -0.003136927494779229, + 0.007854800671339035, + 0.041595980525016785, + 0.024477217346429825, + -0.025268679484725, + -0.006785213015973568, + 0.027135366573929787, + -0.045104485005140305, + 0.02158907987177372, + -0.09536980092525482, + 0.06989219039678574, + 0.04101056233048439, + -0.08820173144340515, + -0.03959307819604874, + 0.04902533441781998, + -0.048276714980602264, + -0.00902553740888834, + -0.03349236026406288, + 0.011958525516092777, + -0.009986922144889832, + 0.02855636738240719, + 0.007845040410757065, + -0.035468462854623795, + 0.01093870960175991, + 0.019012652337551117, + -0.028939267620444298, + -0.061144523322582245, + -0.008508014492690563, + 0.007798772305250168, + 0.0480605848133564, + 0.01807244122028351, + 0.02036619931459427, + -0.09283634275197983, + -0.03623529523611069, + 0.11413952708244324, + 0.08911348134279251, + -0.026775360107421875, + 0.001157827558927238, + -0.008014733903110027, + -0.030719486996531487, + -0.009191197343170643, + -0.07997216284275055, + -0.0030859082471579313, + -0.015428581275045872, + 0.10041255503892899, + -0.022048933431506157, + 0.032079581171274185, + 0.0024432428181171417, + 0.04011029750108719, + 0.024962864816188812, + -0.020967215299606323, + -0.019645381718873978, + 0.05451173335313797, + -0.04837212711572647, + 0.026163039728999138, + 0.0025548769626766443, + -2.2125524523630702e-08, + -0.0014843689277768135, + -0.07541497051715851, + -0.013355056755244732, + 0.01918717846274376, + 0.06627519428730011, + -0.04406287148594856, + 0.055049628019332886, + -0.05688048526644707, + -0.03392936661839485, + -0.019360926002264023, + 0.06704996526241302, + -0.0004107709974050522, + -0.04732020944356918, + -0.08086665719747543, + 0.05756418779492378, + 0.020136041566729546, + 0.02012394741177559, + 0.039475053548812866, + -0.03261285275220871, + -0.012317963875830173, + 0.013561397790908813, + 0.05319305136799812, + 0.07148468494415283, + -0.08013370633125305, + 0.0871548056602478, + 0.049654874950647354, + -0.015292265452444553, + 0.04728380963206291, + -0.022645944729447365, + 0.04527811333537102, + 0.07742483913898468, + 0.0731162279844284, + 0.058677930384874344, + -0.11280207335948944, + -0.13000065088272095, + -0.02889174036681652, + 0.024792246520519257, + 0.027008214965462685, + 0.011475866660475731, + 0.09157630056142807, + 0.02979772910475731, + -0.010847807861864567, + -0.04831273853778839, + -0.019640959799289703, + -0.035931047052145004, + 0.048972465097904205, + 0.10158653557300568, + -0.025401044636964798, + -0.023250475525856018, + -0.05003158375620842, + -0.007142527960240841, + 0.044678665697574615, + 0.05651414394378662, + -0.034527815878391266, + -0.02139974944293499, + 0.0005700174951925874, + 0.032459162175655365, + 0.07245637476444244, + 0.014811565168201923, + -0.013098154217004776, + 0.11342864483594894, + -0.0325668565928936, + -0.07488841563463211, + -0.03540525585412979 + ], + "moon-stars-bold||night,evening,clear,sleep,snooze,night mode,dark mode,astronomy,stargazing,constellation": [ + 0.049435533583164215, + -0.04771537333726883, + 0.05076611787080765, + 0.07268356531858444, + -0.054262954741716385, + -0.016797469928860664, + 0.04596707969903946, + -0.09246031939983368, + -0.040849100798368454, + -0.028896057978272438, + -0.0348714143037796, + -0.028776036575436592, + 0.013218451291322708, + -0.07993695139884949, + -0.025426657870411873, + 0.03105280175805092, + -0.003445978742092848, + -0.01841113343834877, + 0.07819243520498276, + 0.04264155775308609, + 0.004492250736802816, + -0.0163772813975811, + -0.00920786615461111, + 0.05002279207110405, + 0.12503191828727722, + 0.07770008593797684, + 0.021178100258111954, + -0.006541892886161804, + 0.0023867147974669933, + -0.08997628837823868, + -0.050210487097501755, + 0.11425437033176422, + 0.04588332399725914, + 0.0046677011996507645, + -0.012820134870707989, + 0.006318735424429178, + 0.005406764801591635, + -0.06590742617845535, + -0.03074934333562851, + 0.03737124055624008, + 0.054591819643974304, + -0.08446755260229111, + -0.007942264899611473, + 0.009710642509162426, + -0.08420761674642563, + 0.028493421152234077, + -0.053834956139326096, + -0.041809726506471634, + -0.019600706174969673, + 0.013036280870437622, + -0.032969020307064056, + -0.07959835976362228, + -0.14629283547401428, + 0.03960787504911423, + 0.0679096132516861, + -0.005783454980701208, + -0.07783065736293793, + -0.04789024218916893, + 0.059238169342279434, + 0.006492279935628176, + -0.012707153335213661, + 0.09733602404594421, + 0.024048496037721634, + 0.027196377515792847, + 0.0949886217713356, + 0.07169695198535919, + -0.1246141716837883, + -0.03185010701417923, + 0.006873986218124628, + -0.004986393265426159, + -0.04798091948032379, + 0.014022210612893105, + -0.011674486100673676, + -0.027961356565356255, + -0.10797598212957382, + -0.036637693643569946, + 0.07578588277101517, + -0.04758020490407944, + 0.00571585725992918, + -0.07324488461017609, + -0.04122348874807358, + -0.03177366033196449, + -0.06082805246114731, + 0.06030713766813278, + 0.042135413736104965, + -0.017932113260030746, + -0.10078506916761398, + 0.028055032715201378, + -0.028062593191862106, + 0.012341625057160854, + -0.04765515774488449, + -0.019631613045930862, + -0.043779972940683365, + 0.004324548877775669, + -0.03908747434616089, + -0.02101067453622818, + 0.03701977804303169, + -0.08155856281518936, + 0.04666414111852646, + 0.019308140501379967, + 0.04029962792992592, + 0.02038653939962387, + 0.016321051865816116, + 0.041342299431562424, + -0.008919809013605118, + -0.045577522367239, + -0.012012064456939697, + -0.08841806650161743, + -0.033556513488292694, + 0.03378594294190407, + -0.03429969400167465, + -0.05030655488371849, + 0.01956762559711933, + -0.04344579204916954, + -0.0314711332321167, + 0.036601174622774124, + -0.1472981721162796, + 0.0764293447136879, + 0.11071331053972244, + 0.02876557782292366, + 0.004739532712846994, + 0.0013488626573234797, + 0.026228122413158417, + -0.04643995314836502, + -0.006210163701325655, + 0.021231139078736305, + -0.01858021505177021, + -1.0328097241126089e-33, + 0.08933020383119583, + 0.007788295857608318, + -0.009524459950625896, + 0.09979187697172165, + 0.04271463677287102, + 0.014260753057897091, + -0.06122247129678726, + 0.003926402423530817, + -0.03900289162993431, + 0.023888789117336273, + -0.005804354790598154, + 0.05876707285642624, + 0.019600942730903625, + 0.09190370887517929, + 0.0752919465303421, + 0.0630192756652832, + 0.10640808194875717, + -0.04239103943109512, + -0.055960703641176224, + 8.138862904161215e-05, + -0.05566976219415665, + 0.07899797707796097, + -0.06784624606370926, + -0.07117024809122086, + 0.03300778940320015, + -0.0766657218337059, + 0.012292073108255863, + 0.00178598053753376, + -0.03640364110469818, + 0.020286092534661293, + 0.11205609887838364, + -0.016599096357822418, + 0.05256694555282593, + 0.08208329975605011, + 0.013089478947222233, + 0.03436259925365448, + -0.06073720008134842, + 0.03975865989923477, + -0.07547028362751007, + -0.02901764027774334, + -0.009494929574429989, + 0.0009058956056833267, + -0.0898890271782875, + -0.017592495307326317, + 0.018368933349847794, + 0.08582624793052673, + 0.00905460212379694, + -0.021370889618992805, + 0.026737753301858902, + 0.08018238097429276, + 0.0036404221318662167, + -0.022931424900889397, + -0.024794843047857285, + -0.04062820225954056, + 0.003659822279587388, + 0.084583580493927, + -0.043148722499608994, + 0.045198649168014526, + -0.07698633521795273, + 0.03235187381505966, + -3.829475099337287e-05, + -0.06115485727787018, + 0.09330099076032639, + -0.13467875123023987, + 0.025228820741176605, + 0.07822781801223755, + -0.06291842460632324, + 0.0015728664584457874, + -0.025091983377933502, + -0.01848774403333664, + -0.028673266991972923, + 0.04185038432478905, + 0.08211513608694077, + 0.00674513028934598, + 0.018242742866277695, + 0.027878055348992348, + 0.10844452679157257, + -0.01864517480134964, + -0.024127772077918053, + -0.015699973329901695, + -0.037948064506053925, + 0.010926331393420696, + 0.029021020978689194, + -0.032636355608701706, + 0.0140589140355587, + -1.9200208043912426e-05, + 0.03581635653972626, + 0.03397129103541374, + -0.03800590708851814, + -0.003239996498450637, + -0.05800338834524155, + -0.02892433851957321, + 0.0471227653324604, + -0.030553726479411125, + -0.11903007328510284, + -1.4768368275948927e-33, + 0.04112079739570618, + -0.02274714596569538, + -0.04815598949790001, + -0.0323399119079113, + 0.019581306725740433, + 0.021488642320036888, + 0.0035839350894093513, + -0.006602866109460592, + -0.04444018378853798, + 0.06845805048942566, + -0.009729709476232529, + 0.010398026555776596, + -0.056265782564878464, + -0.13724911212921143, + 0.02975044958293438, + -0.07573357969522476, + -0.012872925028204918, + 0.07819522172212601, + -0.03325112164020538, + 0.09408070147037506, + -0.010765031911432743, + 0.05233578011393547, + -0.02423037588596344, + -0.02649645321071148, + -0.02657810039818287, + 0.001322895404882729, + 0.03551371023058891, + 0.03252030164003372, + -0.062368445098400116, + 0.006536142434924841, + -0.017328569665551186, + -0.010295478627085686, + 0.01645331270992756, + -0.010083765722811222, + -0.07308782637119293, + 0.06017622351646423, + 0.018228119239211082, + -0.0644989162683487, + -0.02023906633257866, + -0.0031141452491283417, + -0.00800277292728424, + 0.0422527939081192, + 0.03910741209983826, + -0.03060484677553177, + 0.017836982384324074, + 0.013088332489132881, + -0.034457042813301086, + 0.02269117347896099, + -0.097606360912323, + 0.06139923632144928, + 0.03424160182476044, + -0.07688824832439423, + -0.046874288469552994, + 0.054955411702394485, + -0.03862665593624115, + 0.0005241214530542493, + -0.009012756869196892, + 0.024111680686473846, + 0.045896537601947784, + 0.011015528813004494, + 0.008683046326041222, + -0.045347146689891815, + 0.011918481439352036, + 0.016882257536053658, + -0.029369153082370758, + -0.08241108059883118, + 0.016495635733008385, + -0.01165980938822031, + 0.053010307252407074, + 0.01747232675552368, + -0.0015317273791879416, + -0.07387892156839371, + -0.04016108810901642, + 0.11408548057079315, + 0.10870829224586487, + -0.012973484583199024, + -0.03891652449965477, + 0.018062882125377655, + -0.027872048318386078, + -0.003792842850089073, + -0.0466039814054966, + -0.009562099352478981, + 0.0005226292996667325, + 0.10534993559122086, + 0.00906855333596468, + 0.04678738862276077, + 0.0112881725654006, + 0.031741611659526825, + 0.05125017836689949, + -0.013119993731379509, + -0.007558497134596109, + 0.06037107855081558, + -0.03431038185954094, + 0.022849366068840027, + 0.02901114895939827, + -2.3149151928691936e-08, + 0.02720278687775135, + -0.06827427446842194, + -0.05266166850924492, + 0.027808988466858864, + 0.03835992515087128, + -0.055951375514268875, + 0.02178887277841568, + -0.04712411388754845, + -0.019804801791906357, + -0.008650047704577446, + 0.06644009053707123, + -0.01728205569088459, + -0.06638261675834656, + -0.08350646495819092, + 0.033139053732156754, + -0.026777692139148712, + -0.014593470841646194, + 0.041054412722587585, + -0.011441729962825775, + 0.02608952857553959, + 0.02382791042327881, + 0.054856378585100174, + 0.05636535584926605, + -0.040555860847234726, + 0.08463608473539352, + 0.04256393760442734, + -0.01575903780758381, + 0.02398628368973732, + -0.030104154720902443, + 0.020235706120729446, + 0.05861667916178703, + 0.07627391815185547, + 0.048598986119031906, + -0.1195618212223053, + -0.11897284537553787, + -0.017570417374372482, + 0.04219767078757286, + 0.010581471025943756, + 0.029933549463748932, + 0.1057548001408577, + 0.04830460622906685, + -0.02778155542910099, + -0.03234893083572388, + -0.0406174473464489, + -0.04263622686266899, + 0.04901234433054924, + 0.0983128547668457, + -0.023343879729509354, + -0.0076977903954684734, + -0.041474226862192154, + -0.0052867308259010315, + 0.06304999440908432, + 0.03554484620690346, + -0.060291588306427, + -0.04193677008152008, + -0.009774497710168362, + 0.012277633883059025, + 0.08302833139896393, + 0.0301385335624218, + -0.02207070402801037, + 0.14437466859817505, + -0.028261814266443253, + -0.07745751738548279, + -0.0306390393525362 + ], + "moped-bold||scooter,vehicles,vespa,transportation,travel": [ + -0.023195186629891396, + -0.015995854511857033, + -0.012469878420233727, + 0.07047039270401001, + 0.0441836342215538, + -0.06228127330541611, + 0.07430299371480942, + 0.014966964721679688, + -0.06896071135997772, + -0.050753187388181686, + 0.06615079194307327, + 0.02643091417849064, + 0.06171388179063797, + 0.041828569024801254, + -0.04673932120203972, + 0.05625336617231369, + 0.06172265112400055, + -0.017010172829031944, + 0.0706261470913887, + 0.07982203364372253, + 0.06849177181720734, + 0.0060156299732625484, + 0.06484629213809967, + 0.0643986240029335, + -0.03745317831635475, + 0.0630645826458931, + -0.003343442687764764, + 0.05259859561920166, + -0.04182963818311691, + -0.0760568380355835, + -0.012060119770467281, + 0.1499500721693039, + -0.0059707630425691605, + -0.0398017056286335, + 0.033456988632678986, + -0.024527952075004578, + 0.01195568311959505, + 0.04957599565386772, + 0.055058013647794724, + 0.020350228995084763, + -0.033077728003263474, + -0.09157132357358932, + 0.03475448116660118, + -0.01693592593073845, + 0.009085830301046371, + 0.00436931848526001, + 0.04318944737315178, + 0.0032451520673930645, + -0.008676497265696526, + -0.003926169127225876, + 0.05170682445168495, + -0.13602793216705322, + -0.03421168774366379, + 0.04590604081749916, + -0.026797091588377953, + -0.04414384439587593, + -0.07766754925251007, + 0.044721364974975586, + 0.0629095658659935, + -0.02645636536180973, + 0.0022831931710243225, + 0.020213359966874123, + 0.0401747040450573, + 0.07960260659456253, + 0.034053459763526917, + -0.09960990399122238, + -0.06796695291996002, + -0.04055872932076454, + -0.05409415066242218, + 0.02905355952680111, + 0.049632880836725235, + -0.008843590505421162, + -0.010289266705513, + -0.016417507082223892, + -0.11630856245756149, + -0.004333088174462318, + 0.10247752815485, + 0.07925177365541458, + -0.014561866410076618, + -0.040446922183036804, + -0.014903646893799305, + -0.03494344279170036, + -0.03674117103219032, + -0.027259277179837227, + 0.07853849977254868, + 0.0013665832811966538, + -0.05609572306275368, + -0.03258765861392021, + -0.03466082364320755, + -0.02502577193081379, + -0.07259070873260498, + 0.013287915848195553, + -0.023509182035923004, + 0.015485262498259544, + -0.06710560619831085, + 0.035445164889097214, + 0.018186379224061966, + -0.0010440528858453035, + -0.013444784097373486, + 0.06773465871810913, + 0.06421361863613129, + 0.04743912070989609, + 0.050656989216804504, + 0.03571658954024315, + -0.055041708052158356, + 0.008962197229266167, + 0.01979365386068821, + 0.03703455626964569, + 0.012351475656032562, + 0.0686560720205307, + -0.007590165361762047, + -0.020459894090890884, + 0.05575334653258324, + -0.028890980407595634, + -0.08164717257022858, + -0.10044083744287491, + -0.15317624807357788, + 0.06975969672203064, + 0.07370956242084503, + -0.014001743867993355, + -0.03964061662554741, + -0.06807830184698105, + 0.01723514124751091, + -0.06423329561948776, + 0.02454308420419693, + 0.017226003110408783, + 0.06920470297336578, + -6.7952784577792864e-34, + -0.0010740506695583463, + 0.04787189140915871, + -0.040508996695280075, + 0.06948672235012054, + 0.015986952930688858, + -0.014971391297876835, + -0.03415965661406517, + -0.03857209533452988, + -0.07139798253774643, + 0.03188848868012428, + -0.005666595883667469, + 0.030857684090733528, + -0.012520845979452133, + 0.020215854048728943, + 0.07575917989015579, + -0.021973544731736183, + -0.035520970821380615, + -0.06347822397947311, + -0.012918628752231598, + -0.07223781198263168, + -0.018859725445508957, + 0.04490363225340843, + 0.01598372310400009, + -0.03277653828263283, + 0.03676089271903038, + -0.04938054457306862, + 0.012520716525614262, + -0.09396236389875412, + 0.02709105797111988, + 0.0551714263856411, + 0.03680632263422012, + 0.0938999354839325, + 0.03175851330161095, + 0.014265121892094612, + -0.08201218396425247, + -0.01947096921503544, + -0.07302384078502655, + -0.12199446558952332, + -0.08358506858348846, + -0.024301886558532715, + -0.029458148404955864, + -0.06167024001479149, + -0.040545642375946045, + -0.0026898763608187437, + -0.023733390495181084, + 0.07464617490768433, + 0.022695129737257957, + 0.035077087581157684, + 0.009691654704511166, + 0.04975755140185356, + -0.08940389752388, + -0.07716190069913864, + -0.05469333380460739, + -0.014567682519555092, + -0.05248171463608742, + -0.013416296802461147, + 0.004020600114017725, + 0.008366250433027744, + 0.006287663709372282, + -0.01633034646511078, + -0.0657854750752449, + 0.09609780460596085, + 0.03408762067556381, + -0.1052333265542984, + 0.0010658835526555777, + -0.041965533047914505, + -0.07066859304904938, + -0.02073611691594124, + 0.06360892206430435, + 0.021823987364768982, + 0.026143066585063934, + 0.07502005994319916, + 0.01975523866713047, + 0.0786319375038147, + 0.06227390095591545, + -0.03855482488870621, + 0.025633350014686584, + -0.019057588651776314, + -0.005269365385174751, + 0.021940916776657104, + -0.12459665536880493, + -0.004979731515049934, + -0.06125398725271225, + 0.037917789071798325, + 0.08957879990339279, + 0.013632739894092083, + -0.018695572391152382, + -0.11430926620960236, + 0.01611599698662758, + 0.023915741592645645, + -0.10338867455720901, + -0.06727275252342224, + -0.07924804836511612, + -0.01258334331214428, + -0.05162108317017555, + -1.0258943275809198e-33, + 0.020228039473295212, + 0.06829801946878433, + 0.07121076434850693, + 0.03571099415421486, + -0.003415819024667144, + -0.0008770709973759949, + 0.03194859251379967, + -0.022249972447752953, + -0.025355689227581024, + 0.000614010903518647, + -0.07779939472675323, + -0.016289861872792244, + 0.06248860061168671, + -0.02214515209197998, + 0.07409767806529999, + -0.015329213812947273, + 0.001083351206034422, + -0.06843597441911697, + 0.02021135948598385, + 0.03533196449279785, + 0.0003885116893798113, + -0.005532070063054562, + -0.05044173821806908, + 0.015598660334944725, + 0.032576557248830795, + 0.0452875979244709, + 0.001655349973589182, + -0.007170341443270445, + -0.09154123812913895, + 0.047684282064437866, + 0.003921127878129482, + -0.05372611805796623, + -0.0005802623927593231, + 0.07015542685985565, + -0.08428552746772766, + 0.04201856628060341, + -0.05521930381655693, + 0.050498105585575104, + 0.010609370656311512, + -0.0383642204105854, + 0.03553321957588196, + -0.03715096041560173, + 0.037154875695705414, + 0.08329830318689346, + -0.01758495531976223, + -0.10930296778678894, + -0.09474246203899384, + 0.06099274754524231, + 0.07039062678813934, + 0.01193304918706417, + 0.07462760806083679, + -0.016681432723999023, + -0.02820480242371559, + 0.022596079856157303, + 0.07073204964399338, + -0.03729809820652008, + -0.02031957544386387, + -0.03947332128882408, + -0.07727542519569397, + -0.021916385740041733, + 0.08270517736673355, + 0.10564082860946655, + -0.06334079056978226, + 0.04336795210838318, + -0.02935825102031231, + -0.09271006286144257, + -0.041670020669698715, + -0.029343033209443092, + 0.02852657623589039, + -0.06656641513109207, + 0.0023719370365142822, + -0.03318516165018082, + -0.00869818590581417, + 0.01191182155162096, + 0.059822697192430496, + -0.06420745700597763, + 0.02266857773065567, + 0.058498695492744446, + 0.06850385665893555, + 0.003695411840453744, + -0.003608378116041422, + 0.024722816422581673, + 0.014185748994350433, + 0.04869634658098221, + 0.03369288519024849, + 0.07750792801380157, + -0.07363651692867279, + -0.0035971852485090494, + 0.11096901446580887, + 0.0021048320923000574, + -0.013396800495684147, + 0.09330470860004425, + 0.019134368747472763, + 0.011299123987555504, + -0.04209696128964424, + -2.0827991775718147e-08, + 0.00989538338035345, + 0.01594584248960018, + 0.020807424560189247, + -0.014751698821783066, + 0.03174920380115509, + -0.024755125865340233, + 0.029365094378590584, + -0.042009226977825165, + -0.06336140632629395, + -0.02178983949124813, + 0.05042925477027893, + 0.004896954167634249, + -0.002523569157347083, + 0.0010964659741148353, + 0.03011873923242092, + 0.07034642994403839, + -0.015070130117237568, + 0.06510429829359055, + -0.06524191796779633, + -0.06079838052392006, + 0.039610788226127625, + -0.043783970177173615, + 0.013857291080057621, + 0.10589906573295593, + 0.005908478982746601, + 0.013062850572168827, + -0.06760726869106293, + -0.08271296322345734, + 0.06570602208375931, + -0.006558781489729881, + -0.005688050761818886, + 0.04245514050126076, + 0.027961943298578262, + -0.0015639105113223195, + -0.02470104768872261, + 0.00571006303653121, + -0.057039953768253326, + 0.003133226651698351, + -0.006477086804807186, + 0.08670712262392044, + 0.01572306454181671, + -0.02317793481051922, + 0.048586294054985046, + 0.0011299002217128873, + -0.04931199923157692, + 0.006327401846647263, + -0.07542923837900162, + -0.015224459581077099, + -0.06007145717740059, + -0.00853149127215147, + -0.0653357058763504, + -0.10530386120080948, + -0.01596132293343544, + 0.15537641942501068, + 0.01727643795311451, + -0.06801801174879074, + -0.015615059994161129, + -0.004426715895533562, + -0.01669834367930889, + 0.0036987089551985264, + 0.033860981464385986, + -0.0174433421343565, + 0.02222771756350994, + 0.017450278624892235 + ], + "moped-front-bold||scooter,vehicles,vespa,transportation,travel": [ + -0.0035725801717489958, + -0.01155136525630951, + -0.014745029620826244, + 0.058976657688617706, + 0.03904086723923683, + -0.04475892335176468, + 0.05426321551203728, + 0.019890490919351578, + -0.06092333793640137, + -0.034262146800756454, + 0.0558239221572876, + 0.04056725651025772, + 0.06755034625530243, + 0.019875260069966316, + -0.04123123735189438, + 0.043945856392383575, + 0.06203519180417061, + -0.020249100401997566, + 0.08010654896497726, + 0.09516962617635727, + 0.05452904850244522, + -0.007253148593008518, + 0.056575119495391846, + 0.06586778163909912, + -0.04375443235039711, + 0.05880267918109894, + 0.006609390024095774, + 0.050475601106882095, + -0.05032224580645561, + -0.08146238327026367, + -0.016056334599852562, + 0.14401847124099731, + 0.012144921347498894, + -0.03340892866253853, + 0.012358611449599266, + -0.031858790665864944, + 0.012660945765674114, + 0.053848329931497574, + 0.05703462287783623, + 0.017092254012823105, + -0.034143783152103424, + -0.08103609830141068, + 0.021377243101596832, + -0.009664177894592285, + 0.018323581665754318, + 0.013794061727821827, + 0.06109538674354553, + 0.008088950999081135, + -0.002569388598203659, + -0.01566670462489128, + 0.06408080458641052, + -0.15016309916973114, + -0.04639465734362602, + 0.04090152680873871, + -0.031204335391521454, + -0.026218442246317863, + -0.077396459877491, + 0.03952829912304878, + 0.06441529095172882, + -0.01866401545703411, + 0.01067592017352581, + 0.020905181765556335, + 0.02333042025566101, + 0.06464234739542007, + 0.045101676136255264, + -0.10922745615243912, + -0.054858360439538956, + -0.057024843990802765, + -0.05637737363576889, + 0.02338503673672676, + 0.06131953001022339, + 0.006746572908014059, + -0.008433178067207336, + -0.04037051647901535, + -0.10906045138835907, + -0.0029670456424355507, + 0.10948464274406433, + 0.0784333348274231, + -0.01244715042412281, + -0.049346961081027985, + 0.0016425001667812467, + -0.025763776153326035, + -0.024196801707148552, + -0.01828288473188877, + 0.07660680264234543, + -0.0005602870951406658, + -0.05803956463932991, + -0.040223490446805954, + -0.04495891183614731, + -0.029630471020936966, + -0.07509850710630417, + -0.0064993733540177345, + -0.02169024758040905, + 0.011211610399186611, + -0.07731769979000092, + 0.03775404393672943, + 0.01353441271930933, + -0.0036683152429759502, + 0.002334541641175747, + 0.070990651845932, + 0.0728422999382019, + 0.02487163059413433, + 0.07572676986455917, + 0.05168982967734337, + -0.044693466275930405, + 0.011967561207711697, + 0.030868681147694588, + 0.03881616145372391, + 0.0042011369951069355, + 0.056828681379556656, + -0.005754643119871616, + -0.02583613432943821, + 0.052442822605371475, + -0.039725176990032196, + -0.0756097286939621, + -0.11406491696834564, + -0.1446036696434021, + 0.06702575087547302, + 0.08608628064393997, + -0.044455017894506454, + -0.04593002051115036, + -0.06019178032875061, + 0.03375181183218956, + -0.07465678453445435, + 0.035131435841321945, + 0.00024808390298858285, + 0.0646013617515564, + -1.0384176586854966e-33, + 0.007970158010721207, + 0.055458467453718185, + -0.032920416444540024, + 0.06112668290734291, + 0.0036593140102922916, + -0.009539990685880184, + -0.031381722539663315, + -0.039617870002985, + -0.057253047823905945, + 0.05190015584230423, + 0.018755879253149033, + 0.0321367122232914, + -0.011618937365710735, + 0.0011600033612921834, + 0.07263942807912827, + -0.01988253742456436, + -0.03200848028063774, + -0.057002291083335876, + -0.03789275512099266, + -0.0792568251490593, + -0.022092273458838463, + 0.05036564916372299, + 0.011394895613193512, + -0.030432509258389473, + 0.03207006677985191, + -0.054099250584840775, + 0.019770679995417595, + -0.09294288605451584, + 0.004288721363991499, + 0.05538547784090042, + 0.04372551292181015, + 0.10387268662452698, + 0.038360849022865295, + 0.01870913617312908, + -0.08106373995542526, + -0.029748518019914627, + -0.07075125724077225, + -0.128041610121727, + -0.07407619059085846, + -0.02136605978012085, + -0.03936156630516052, + -0.050492577254772186, + -0.04074294492602348, + 0.013148880563676357, + -0.02718115970492363, + 0.07642362266778946, + 0.005734024103730917, + 0.038206979632377625, + 0.004678785335272551, + 0.04600658640265465, + -0.09202711284160614, + -0.08996585011482239, + -0.04461061954498291, + -0.013298031874001026, + -0.05635775998234749, + -0.01820494793355465, + 0.013175315223634243, + 0.010895872488617897, + 0.0007782790926285088, + -0.011154991574585438, + -0.05557283014059067, + 0.08741533756256104, + 0.024243777617812157, + -0.08854725956916809, + -0.014245044440031052, + -0.040426041930913925, + -0.05749976634979248, + -0.031650360673666, + 0.06590242683887482, + 0.02304116263985634, + 0.026578065007925034, + 0.06418627500534058, + 0.024191422387957573, + 0.08822281658649445, + 0.05677223950624466, + -0.03610457107424736, + 0.035597849637269974, + -0.00873621553182602, + 0.006597522646188736, + 0.021994998678565025, + -0.1317676454782486, + 0.016456805169582367, + -0.07112639397382736, + 0.04011846333742142, + 0.08613081276416779, + 0.016164880245923996, + -0.009402104653418064, + -0.11908639222383499, + 0.006375258322805166, + 0.03002641350030899, + -0.10525617003440857, + -0.07064253091812134, + -0.07020314037799835, + -0.010113039053976536, + -0.05250205472111702, + -4.988387979399443e-34, + 0.013212712481617928, + 0.0802232027053833, + 0.05640335753560066, + 0.021319011226296425, + 0.0022723732981830835, + 0.005534098017960787, + 0.04997525364160538, + -0.0032565025612711906, + -0.02686450444161892, + 0.014707974158227444, + -0.0512256994843483, + -0.014808728359639645, + 0.05878039821982384, + -0.0037781004793941975, + 0.06633789837360382, + -0.015563751570880413, + 0.011845854111015797, + -0.06813646107912064, + 0.006053044460713863, + 0.0412827767431736, + -0.01128346286714077, + -0.005604826845228672, + -0.0572873055934906, + 0.011925765313208103, + 0.030948853120207787, + 0.03473775088787079, + -0.0009028504719026387, + 0.00640439847484231, + -0.09552392363548279, + 0.04343627393245697, + -0.008958523161709309, + -0.059227604418992996, + 0.01824912615120411, + 0.07373278588056564, + -0.10268649458885193, + 0.03669656813144684, + -0.07101210206747055, + 0.04653910920023918, + 0.006257977802306414, + -0.026373757049441338, + 0.022735293954610825, + -0.03708258643746376, + 0.049332957714796066, + 0.07751084119081497, + -0.019241206347942352, + -0.1144401952624321, + -0.10467544943094254, + 0.051898181438446045, + 0.0600651279091835, + 0.011214924976229668, + 0.054409634321928024, + -0.010101834312081337, + -0.01959115080535412, + 0.02112359181046486, + 0.059324901551008224, + -0.045886918902397156, + -0.00994615163654089, + -0.026112159714102745, + -0.0821618139743805, + -0.009631575085222721, + 0.08512149751186371, + 0.11420875042676926, + -0.049481071531772614, + 0.016667047515511513, + -0.020381996408104897, + -0.09344812482595444, + -0.05057849362492561, + -0.03156742826104164, + 0.030703485012054443, + -0.07074399292469025, + 0.002091343980282545, + -0.03391796723008156, + -0.004204464610666037, + 0.016324356198310852, + 0.0631411075592041, + -0.04618405923247337, + 0.019560817629098892, + 0.051802199333906174, + 0.07981713861227036, + 0.013589372858405113, + -0.005877222865819931, + 0.012969573959708214, + 0.0085213677957654, + 0.06210460886359215, + 0.016220182180404663, + 0.08126269280910492, + -0.06437219679355621, + -0.002412762027233839, + 0.10698738694190979, + 0.008608118630945683, + -0.0037239897064864635, + 0.09823643416166306, + 0.035354118794202805, + 0.0021593912970274687, + -0.03390371426939964, + -2.1305497810431007e-08, + 0.002772342413663864, + 0.01166077982634306, + 0.027711277827620506, + -0.009352314285933971, + 0.01467182021588087, + -0.022356383502483368, + 0.025182919576764107, + -0.05258388817310333, + -0.07339797914028168, + -0.03673354536294937, + 0.04188798740506172, + 0.011272474192082882, + -0.005184618756175041, + -0.0145973339676857, + 0.023130320012569427, + 0.0776771754026413, + -0.024305911734700203, + 0.07590889930725098, + -0.0697869211435318, + -0.05557140335440636, + 0.028736216947436333, + -0.040197789669036865, + 0.02102997712790966, + 0.09612039476633072, + 0.008820820599794388, + 0.011467278003692627, + -0.0723857581615448, + -0.08107887953519821, + 0.0424841083586216, + 0.002736175199970603, + 0.0067274183966219425, + 0.035338886082172394, + 0.019200190901756287, + -0.007525862660259008, + -0.02994593419134617, + 0.019114388152956963, + -0.06930588185787201, + -0.0022911049891263247, + 0.004073409829288721, + 0.09062227606773376, + 0.024359889328479767, + -0.027529554441571236, + 0.04488120228052139, + 0.013213671743869781, + -0.05264630913734436, + 0.01822320930659771, + -0.07177507132291794, + -0.009255170822143555, + -0.058205436915159225, + -0.030779719352722168, + -0.06447311490774155, + -0.10707799345254898, + -0.029831944033503532, + 0.14923380315303802, + 0.018968738615512848, + -0.05206289887428284, + -0.0019229552708566189, + 0.01365565974265337, + -0.015916142612695694, + 0.017188431695103645, + 0.04288620129227638, + -0.006778468377888203, + 0.012713567353785038, + 0.025901366025209427 + ], + "mosque-bold||islam,muslim,religion,worship": [ + 0.08038385957479477, + 0.09123114496469498, + -0.053746722638607025, + 0.022914975881576538, + -0.03420088067650795, + -0.020343445241451263, + -0.044053301215171814, + -0.14853672683238983, + 0.03730833902955055, + -0.0435495562851429, + -0.015549801290035248, + -0.07135574519634247, + 0.04550204426050186, + -0.06465928256511688, + 0.03877141699194908, + 0.03891772776842117, + 0.026250621303915977, + 0.010658804327249527, + 0.02824537828564644, + -0.10440488159656525, + -0.10744515806436539, + 0.004506595432758331, + 0.04647468030452728, + 0.0705636516213417, + 0.0246502123773098, + 0.06870780140161514, + -0.0176272913813591, + 0.07183262705802917, + -0.014003753662109375, + -0.06114834547042847, + 0.001434449222870171, + 0.007844961248338223, + 0.03939115256071091, + 0.017192579805850983, + 0.0324285551905632, + 0.012661975808441639, + 0.029898447915911674, + -0.02606511488556862, + 0.05776158347725868, + 0.04839670658111572, + 0.03133063390851021, + -0.049555666744709015, + 0.012774755246937275, + 0.0028851439710706472, + 0.02363090217113495, + 0.01471903920173645, + -0.06680119782686234, + -0.006196137517690659, + 0.003442893736064434, + -0.007660688832402229, + -0.0622396394610405, + -0.029506614431738853, + -0.02054273523390293, + -0.01450754888355732, + 0.005751507356762886, + -0.017120029777288437, + -0.06674401462078094, + 0.052177514880895615, + -0.0006699291989207268, + 0.008348193019628525, + 0.0457749217748642, + 0.030078228563070297, + 0.0345187783241272, + 0.06480107456445694, + 0.017618907615542412, + -0.09054022282361984, + -0.008855492807924747, + 0.046092212200164795, + 0.04906099662184715, + -0.005827100481837988, + -0.016407152637839317, + -0.01210537925362587, + -0.009893391281366348, + -0.09715785086154938, + -0.08888385444879532, + -0.04426983743906021, + -0.014654476195573807, + -0.09951823949813843, + -0.11441802233457565, + -0.07967697083950043, + -0.0144455935806036, + -0.05529630184173584, + -0.033261481672525406, + -0.07919127494096756, + 0.017946142703294754, + -0.04118739068508148, + -0.02619342878460884, + 0.014100179076194763, + -0.04384583607316017, + -0.02702992409467697, + 0.026646358892321587, + 0.017057526856660843, + -0.06125108525156975, + 0.00294690765440464, + 0.03291387856006622, + 0.002910131588578224, + 0.018711842596530914, + -0.07883112877607346, + -0.06773644685745239, + 0.06726855784654617, + 0.020459257066249847, + 0.057100843638181686, + 0.08143877238035202, + 0.020955802872776985, + 0.00807234738022089, + -0.02408774383366108, + -0.056341592222452164, + 0.06702321767807007, + -0.061100125312805176, + -0.005994664970785379, + -0.0034964019432663918, + -0.07862959802150726, + -0.04760241508483887, + -0.03966022655367851, + 0.012374209240078926, + 0.0015124705387279391, + -0.016958829015493393, + -0.07221537083387375, + -0.020860284566879272, + 0.0829855352640152, + -0.049487050622701645, + -0.050601281225681305, + 0.015080305747687817, + -0.013010545633733273, + -0.01211550459265709, + -0.022316385060548782, + 0.006360742263495922, + -2.3086119466264392e-33, + 0.021102506667375565, + -0.000963397731538862, + -0.04300863668322563, + 0.05873908847570419, + 0.01172867976129055, + -0.03323166444897652, + -0.011509952135384083, + -0.012294559739530087, + -0.09871309250593185, + 0.026418309658765793, + 0.11065957695245743, + 0.020093034952878952, + 0.0723130851984024, + 0.020823977887630463, + 0.024306301027536392, + -0.10139496624469757, + 0.027608675882220268, + -0.016244186088442802, + -0.07399749755859375, + 0.020865555852651596, + -0.0056791468523442745, + 0.017824269831180573, + -0.06905697286128998, + -0.020035073161125183, + 0.04992007091641426, + -0.0013191222678869963, + 0.07302790135145187, + 0.05204243212938309, + -0.047439079731702805, + 0.061656612902879715, + 0.034077610820531845, + 0.012737545184791088, + -0.010542420670390129, + -0.04949835687875748, + -0.04248850792646408, + 0.029313338920474052, + -0.03444146364927292, + -0.02267373539507389, + -0.0013058942276984453, + -0.04689532518386841, + 0.0036358176730573177, + -0.014265516772866249, + 0.045490823686122894, + 0.06781543791294098, + 0.026309920474886894, + 0.13452377915382385, + -0.032486505806446075, + -0.0351167730987072, + 0.00887469295412302, + -0.003140826243907213, + -0.011227310635149479, + -0.05475591868162155, + -0.06066465750336647, + 0.013815240934491158, + 0.043867576867341995, + -0.007058750372380018, + -0.06261292845010757, + 0.08344342559576035, + 0.04133491590619087, + 0.03736535832285881, + 0.0012854294618591666, + -0.011026965454220772, + -0.12363062798976898, + -0.024270886555314064, + 0.009439907968044281, + -0.04303120821714401, + -0.028100760653614998, + 0.07452503591775894, + 0.08931665122509003, + 0.028606373816728592, + 0.046946536749601364, + 0.08272343128919601, + 0.0853726789355278, + 0.11168073862791061, + -0.054244473576545715, + 0.05043385177850723, + -0.04497984051704407, + 0.00046496131108142436, + 0.03306590020656586, + 0.022120434790849686, + -0.006326268892735243, + 0.13497710227966309, + -0.037017133086919785, + 0.04548753798007965, + 0.021286366507411003, + -0.002196789253503084, + 0.07486400753259659, + -0.049842920154333115, + -0.1265261471271515, + -0.017250310629606247, + -0.01506612729281187, + 0.07491572946310043, + 0.09803075343370438, + -0.11740557849407196, + -0.03337365388870239, + -1.2678052104672665e-34, + 0.10113347321748734, + 0.06461343169212341, + -0.0642399713397026, + -0.05735565721988678, + -0.01310976967215538, + 0.08068371564149857, + -0.035010725259780884, + 0.025095991790294647, + -0.01681346632540226, + 0.08180554956197739, + -0.04362558573484421, + -0.056124765425920486, + -0.018049977719783783, + -0.04477376863360405, + -0.05162525177001953, + -0.04979046434164047, + 0.02076413296163082, + -0.026386069133877754, + -0.025381650775671005, + 0.08611495792865753, + -0.012326032854616642, + 0.008030635304749012, + -0.009301010519266129, + 0.03526712581515312, + 0.0016001698095351458, + 0.021054938435554504, + -0.04715221747756004, + -0.04280759394168854, + -0.006922146305441856, + 0.03366875275969505, + -0.09564954787492752, + -0.07767237722873688, + -0.04077499359846115, + 0.04259098321199417, + 0.03296281397342682, + 0.02271610125899315, + 0.012836221605539322, + -0.0056719244457781315, + 0.03545353561639786, + 0.01340574212372303, + 0.019761715084314346, + 0.09577643126249313, + 0.00047210429329425097, + 0.04648549482226372, + -0.0010305051691830158, + 0.0630343109369278, + 0.01446970459073782, + -0.02892429754137993, + -0.04332547262310982, + -0.03907785564661026, + -0.026399534195661545, + -0.0685715600848198, + -0.02496238797903061, + -0.03526199609041214, + 0.07100299000740051, + 0.004975043702870607, + -0.06000489369034767, + -0.022043418139219284, + -0.016904063522815704, + 0.0212103184312582, + 0.06479557603597641, + 0.06366988271474838, + 0.029835546389222145, + 0.06011918559670448, + -0.0025075627490878105, + -0.014434760436415672, + -0.008927549235522747, + 0.048189450055360794, + 0.017884325236082077, + 0.06146327406167984, + -0.05105803534388542, + -0.045719776302576065, + -0.05126778781414032, + 0.017703905701637268, + 0.020541824400424957, + -0.0024208538234233856, + 0.008632554672658443, + 0.053357142955064774, + -0.0276801735162735, + 0.02631589025259018, + 0.07575378566980362, + -0.057676590979099274, + -0.14286452531814575, + -0.00381057639606297, + 0.08541315793991089, + -0.06884445995092392, + 0.007589159999042749, + 0.04049684479832649, + 0.027546118944883347, + 0.013979241251945496, + -0.06784620136022568, + -0.005635271780192852, + 0.003984561190009117, + -0.01721731573343277, + 0.00156402459833771, + -1.6384326784191217e-08, + 0.05692350119352341, + -0.07417535036802292, + -0.009864057414233685, + 0.03176731988787651, + 0.029468096792697906, + -0.012613890692591667, + -0.006547393277287483, + -0.07462672144174576, + -0.06327742338180542, + 0.0032361235935240984, + -0.030810749158263206, + -0.0019526071846485138, + -0.13385391235351562, + 0.0506487600505352, + -0.042875055223703384, + 0.044231198728084564, + -0.06317885220050812, + -0.04653463885188103, + 0.03189461678266525, + -0.05234261229634285, + 0.005333149340003729, + 0.062089703977108, + -0.0023092259652912617, + -0.07164791971445084, + 0.03300604596734047, + 0.09453114867210388, + -0.079029880464077, + -0.005613952875137329, + 0.0037005064077675343, + 0.043648820370435715, + 0.09506078064441681, + 0.011802124790847301, + -0.0832604244351387, + 0.03200942650437355, + -0.10294193774461746, + -0.051582470536231995, + -0.01574046164751053, + 0.010196263901889324, + -0.016644541174173355, + 0.04015740752220154, + 0.0304876621812582, + -0.08385394513607025, + -0.016340347006917, + -0.012204292230308056, + 0.0023414278402924538, + 0.012404413893818855, + 0.09113849699497223, + -0.022474853321909904, + -0.07511796057224274, + -0.08565249294042587, + -0.0024930303916335106, + -0.0409981831908226, + 0.13190190494060516, + 0.013508736155927181, + -0.021711522713303566, + 0.046909183263778687, + 0.06928455084562302, + 0.024168072268366814, + 0.06323234736919403, + 0.027204623445868492, + 0.15894564986228943, + 0.04981909319758415, + 0.04399150237441063, + 0.011488805525004864 + ], + "motorcycle-bold||vehicles,motorbike,transportation,travel": [ + 0.025715645402669907, + 0.0024847490713000298, + -0.01403173990547657, + 0.02161145769059658, + 0.03527336195111275, + -0.039219930768013, + 0.08582092821598053, + -0.011578187346458435, + -0.02560207061469555, + -0.03588249534368515, + 0.09064037352800369, + 0.0409836545586586, + 0.11111731082201004, + 0.020158858969807625, + -0.029688384383916855, + 0.03258030489087105, + 0.09214639663696289, + 0.021084768697619438, + -0.002930828370153904, + 0.05298823490738869, + 0.01605033315718174, + 0.08575760573148727, + 0.05267360433936119, + 0.08254116028547287, + 0.02066424861550331, + 0.015130365267395973, + 0.042433544993400574, + 0.05885038152337074, + -0.06883399188518524, + -0.03642759844660759, + -0.07084189355373383, + 0.05531219020485878, + -0.02753789722919464, + 0.010423095896840096, + 0.0028586394619196653, + -0.016471074894070625, + -0.031188247725367546, + 0.029932988807559013, + 0.03064650297164917, + -0.03470109403133392, + 0.019223473966121674, + -0.07951489090919495, + 0.02716004103422165, + 0.006349209230393171, + 0.03633369505405426, + 0.009447785094380379, + 0.012877991423010826, + -0.032507508993148804, + 0.044715724885463715, + -0.024779129773378372, + -0.007566549815237522, + -0.07349352538585663, + -0.07536619156599045, + 0.010830297134816647, + -0.03308376669883728, + -0.07307417690753937, + -0.15983425080776215, + 0.05960886925458908, + 0.01037773210555315, + 0.007243433967232704, + 0.035639792680740356, + -0.001830686000175774, + 0.023597845807671547, + 0.07739002257585526, + 0.05091971904039383, + -0.04523009806871414, + -0.0065130689181387424, + 0.016679299995303154, + -0.05422152206301689, + 0.05652690678834915, + 0.046762559562921524, + 0.023654216900467873, + -0.002570017706602812, + -0.060179099440574646, + -0.03249138221144676, + -0.038011785596609116, + 0.06453804671764374, + 0.05963313579559326, + -0.06592008471488953, + -0.10004142671823502, + -0.019832195714116096, + -0.06269123405218124, + -0.003707718336954713, + 0.006205632817000151, + 0.06095803529024124, + 0.004341259133070707, + -0.04420459643006325, + -0.03848540782928467, + -0.06279915571212769, + 0.0031177715864032507, + -0.07160337269306183, + -0.036188315600156784, + 0.03713921830058098, + 0.028531506657600403, + -0.11681398749351501, + 0.014779073186218739, + 0.01685984618961811, + -0.0024614990688860416, + 0.009948376566171646, + 0.07880725711584091, + 0.0676228329539299, + 0.04592393711209297, + 0.08983217179775238, + 0.029596254229545593, + -0.0851346105337143, + 0.048611827194690704, + -0.003066329751163721, + 0.011303848586976528, + 0.008570130914449692, + -0.0018024519085884094, + -0.02137538604438305, + -0.026149095967411995, + -0.035349853336811066, + -0.04942166432738304, + -0.08249706774950027, + -0.045935582369565964, + -0.07626543194055557, + 0.03214040771126747, + 0.11391595751047134, + 0.05585426837205887, + -0.07647635787725449, + -0.02183029055595398, + 0.05839558318257332, + -0.048547450453042984, + 0.018809450790286064, + -0.005220854189246893, + 0.029524628072977066, + -2.459854723223081e-33, + -0.04250875115394592, + 0.03927437961101532, + 0.010450354777276516, + 0.13611970841884613, + -0.039552923291921616, + -0.027301916852593422, + -0.08571214973926544, + -0.07981117814779282, + -0.0583021454513073, + 0.033255256712436676, + 0.0802803635597229, + 0.059140875935554504, + 0.00027947925264015794, + 0.043567635118961334, + 0.09388866275548935, + -0.04348549246788025, + -0.03738865628838539, + -0.05451823025941849, + -0.04146544262766838, + -0.039081115275621414, + -0.045524243265390396, + 0.0029570336919277906, + -0.024738630279898643, + -0.0005524451844394207, + -0.022820573300123215, + -0.04337606951594353, + 0.032982226461172104, + -0.0335291251540184, + -0.036283209919929504, + 0.06633486598730087, + -0.03185015916824341, + 0.10522414743900299, + -0.006601190660148859, + 0.01420439500361681, + -0.00897405855357647, + 0.03483256697654724, + -0.060429446399211884, + -0.07198283076286316, + -0.028865229338407516, + -0.016810106113553047, + -0.0940890833735466, + -0.10179611295461655, + -0.12067364156246185, + 0.016287080943584442, + 0.010098959319293499, + 0.1265777200460434, + 0.005422600544989109, + 0.014845014549791813, + -0.017453642562031746, + 0.041969481855630875, + -0.08543086796998978, + -0.09100966900587082, + 0.016080645844340324, + -0.03569457307457924, + -0.04272865131497383, + 0.01893656514585018, + -0.0022538206540048122, + 0.028062066063284874, + -0.020372776314616203, + -0.018434293568134308, + -0.03829600289463997, + 0.07000140100717545, + 0.01090728398412466, + -0.052440352737903595, + -0.01263753604143858, + 0.0266786627471447, + -0.03703206777572632, + 0.010145205073058605, + 0.05177045240998268, + -0.001577015733346343, + 0.053754162043333054, + 0.028767449781298637, + 0.07563093304634094, + 0.06699242442846298, + 0.10685720294713974, + 0.04133739322423935, + -0.05035704746842384, + -0.03433682769536972, + -0.017088139429688454, + 0.001032533124089241, + -0.1004365012049675, + -0.025641445070505142, + -0.1223430335521698, + 0.05903511121869087, + 0.0964072048664093, + 0.04260769486427307, + -0.014565696008503437, + -0.13475683331489563, + 0.021473124623298645, + 0.048708751797676086, + -0.055202730000019073, + -0.0307187270373106, + -0.0033064018934965134, + -0.016121994704008102, + -0.0735931247472763, + -1.2272920502137908e-33, + 0.052863530814647675, + 0.11743636429309845, + 0.032500822097063065, + -0.032812196761369705, + 0.055430036038160324, + -0.04506010189652443, + 0.043285660445690155, + -0.008138380944728851, + -0.0043073077686131, + 0.000417056173318997, + -0.0742759183049202, + -0.0717470794916153, + -0.02066194824874401, + -0.026054807007312775, + 0.03095361404120922, + -0.025688566267490387, + 0.018829897046089172, + -0.0075263939797878265, + -0.000958397751674056, + 0.022928450256586075, + -0.06039560213685036, + -0.032477978616952896, + -0.06965598464012146, + 0.0571913942694664, + 0.017548182979226112, + 0.08110744506120682, + -0.07653778046369553, + 0.03280607983469963, + -0.03676619380712509, + 0.030376780778169632, + -0.07613739371299744, + -0.0038810810074210167, + 0.09573826938867569, + 0.0547892265021801, + -0.0816599428653717, + 0.11753249913454056, + -0.02974623627960682, + -0.04632287472486496, + 0.003232765942811966, + -0.041872162371873856, + -0.017681125551462173, + -0.06657609343528748, + 0.029184726998209953, + 0.07524197548627853, + 0.018446188420057297, + -0.02089773118495941, + -0.00604255823418498, + 0.006472687236964703, + 0.024990983307361603, + -0.006604894530028105, + 0.07860326021909714, + 0.07773147523403168, + -0.002014480996876955, + 0.029537031427025795, + 0.009357650764286518, + 0.025167344138026237, + 0.024708341807127, + -0.02916944958269596, + -0.04036335274577141, + 0.006305214483290911, + 0.0310312882065773, + 0.03412364423274994, + -0.060010842978954315, + 0.08049877732992172, + -0.028537586331367493, + -0.13337604701519012, + 0.014504604041576385, + -0.044750090688467026, + 0.02036374993622303, + -0.051582250744104385, + -0.00954133179038763, + -0.0076157585717737675, + -0.008776085451245308, + -0.00262667634524405, + 0.031224925071001053, + -0.04022006690502167, + 0.07468150556087494, + 0.07315972447395325, + -0.002050502924248576, + 0.05160919576883316, + -0.027307789772748947, + -0.003374724416062236, + -0.02089310623705387, + 0.09137599170207977, + -0.07118912041187286, + 0.008919092826545238, + -0.07666656374931335, + -0.09816756099462509, + -0.0010348005453124642, + 0.007454096805304289, + -0.01368714589625597, + 0.08917062729597092, + -0.026617880910634995, + 0.015154321677982807, + -0.08819258958101273, + -2.0037314030219022e-08, + 0.04032796621322632, + 0.04263980686664581, + -0.02654474973678589, + -0.08590594679117203, + 0.022867979481816292, + -0.024327879771590233, + 0.010946017690002918, + 0.00581233948469162, + -0.10457000881433487, + 0.05549151450395584, + 0.0055134911090135574, + 0.05699802562594414, + -0.036644309759140015, + 0.011063862591981888, + -0.016414552927017212, + 0.006958349607884884, + 0.014620513655245304, + 0.05817275494337082, + -0.04424060136079788, + -0.08542203903198242, + -0.006418327800929546, + 0.0016500316560268402, + 0.017683982849121094, + 0.011451631784439087, + -0.00048688368406146765, + 0.016363784670829773, + -0.041340362280607224, + -0.04118018597364426, + 0.06902928650379181, + 0.02841315045952797, + -0.009154267609119415, + 0.0807565301656723, + -0.02206800878047943, + -0.02258443832397461, + -0.09837910532951355, + -0.08219344168901443, + -0.06131339445710182, + 0.013354211114346981, + -0.007307132706046104, + 0.08428442478179932, + -0.012183403596282005, + -0.005555321462452412, + -0.007516259327530861, + 0.022500894963741302, + 0.014893388375639915, + 0.009298218414187431, + 0.00669537577778101, + -0.06678752601146698, + -0.1042727455496788, + -0.09449393302202225, + -0.042552076280117035, + -0.03399723023176193, + -0.015056285075843334, + 0.09093044698238373, + -0.0051360768266022205, + 0.03344438970088959, + 0.03519057109951973, + 0.014108184725046158, + -0.04648290202021599, + -0.017242735251784325, + 0.051242537796497345, + 0.03137966990470886, + 0.04196278005838394, + -0.021553579717874527 + ], + "mountains-bold||*updated*,hills,outdoors,terrain,geology,adventure": [ + -0.01056329719722271, + 0.009297525510191917, + 0.03348022326827049, + 0.05738772451877594, + 0.0018766999710351229, + -0.05701356753706932, + -0.042965635657310486, + -0.04260563850402832, + -0.09293770045042038, + 0.02240642160177231, + -0.02062353864312172, + -0.0518331415951252, + 0.031576283276081085, + -0.01786348596215248, + -0.0009382880525663495, + 0.07724487781524658, + 0.030176229774951935, + 0.04520241543650627, + 0.045366935431957245, + -0.0024299235083162785, + 0.0022820045705884695, + 0.09621214866638184, + 0.05437682941555977, + 0.13707105815410614, + 0.054210271686315536, + 0.024512311443686485, + -0.01052327360957861, + 0.04013621062040329, + -0.018082236871123314, + -0.04930528625845909, + -0.0038042881060391665, + 0.0842718854546547, + 0.09286285191774368, + -0.025356363505125046, + 0.03967735916376114, + 0.07877101749181747, + -0.036163561046123505, + -0.015971455723047256, + -0.0392971970140934, + 0.05551658198237419, + -0.04575492441654205, + 0.0075492593459784985, + 0.01772470772266388, + 0.020923012867569923, + -0.0664706602692604, + -0.004870675038546324, + -0.021103765815496445, + -0.019243484362959862, + -0.007260029669851065, + 0.04322367534041405, + -0.013571017421782017, + -0.08675982803106308, + -0.14776112139225006, + -0.010023780167102814, + -0.016294894739985466, + 0.010634662583470345, + -0.07043840736150742, + -0.04407787695527077, + 0.02312253974378109, + 0.030497532337903976, + 0.03795779123902321, + 0.023981677368283272, + -0.029556848108768463, + 0.043833255767822266, + 0.06209338828921318, + 0.06113450229167938, + -0.06622903048992157, + -0.038699597120285034, + 0.01741483062505722, + -0.07003225386142731, + 0.07053844630718231, + 0.03987199813127518, + -0.029332466423511505, + -0.05466383695602417, + -0.0510605052113533, + -0.028121473267674446, + -0.016442447900772095, + 0.018267523497343063, + -0.11318996548652649, + -0.11238031089305878, + -0.07210030406713486, + -0.014839290641248226, + 0.002847971860319376, + -0.06953047215938568, + -0.007495066151022911, + -0.02879219688475132, + -0.053782619535923004, + -0.05370264872908592, + 0.0023295311257243156, + -0.08687747269868851, + 0.0014404160901904106, + -0.06508174538612366, + -0.0507030189037323, + 0.03221965581178665, + -0.07836339622735977, + 0.05537169799208641, + 0.030150199308991432, + -0.04403577372431755, + -0.03876139968633652, + 0.01068520825356245, + 0.11593759804964066, + -0.004202220588922501, + -0.019488640129566193, + 0.03208235651254654, + -0.023188292980194092, + 0.007416833192110062, + -0.0011246433714404702, + 0.03218114376068115, + -0.040982142090797424, + 0.07519454509019852, + -0.013766834512352943, + -0.07638628035783768, + 0.02653084322810173, + -0.047838110476732254, + 0.004968839697539806, + -7.731377991149202e-05, + -0.015452232211828232, + 0.030689559876918793, + -0.008341166190803051, + 0.06518415361642838, + -0.0565156415104866, + -0.0365518182516098, + 0.07532911002635956, + 0.00024932471569627523, + -0.0010117386700585485, + -0.03215258568525314, + 0.04567677900195122, + -3.530059861371224e-33, + 0.05792521685361862, + -0.005976166110485792, + -0.011959048919379711, + 0.1680840700864792, + 0.005122432019561529, + -0.007825239561498165, + 0.003485639113932848, + -0.12002483755350113, + -0.08785785734653473, + 0.05372639372944832, + 0.03466338291764259, + 0.14163300395011902, + 0.010308712720870972, + 0.06271211802959442, + 0.068647101521492, + -0.07069342583417892, + 0.01425256673246622, + -0.0672760158777237, + -0.034462809562683105, + 0.05269525200128555, + -0.03565707802772522, + 0.02701786905527115, + -0.044326912611722946, + 0.006971556227654219, + -0.05219631269574165, + -0.05622664466500282, + 0.014112314209342003, + -0.02985125035047531, + -0.08624041080474854, + 0.02381109818816185, + -0.006156310439109802, + 0.006317054852843285, + 0.00011541540152393281, + -0.0718654915690422, + 0.008473946712911129, + 0.022910889238119125, + -0.04034819081425667, + -0.039638690650463104, + 0.02880445122718811, + 0.02839190699160099, + -0.03346557542681694, + -0.04799909517168999, + -0.04341632127761841, + 0.03129572421312332, + 0.05497673898935318, + 0.11819145828485489, + 0.032975438982248306, + -0.005863277241587639, + 0.009619094431400299, + 0.009924874641001225, + -0.0605529248714447, + 0.009613622911274433, + -0.002139726188033819, + -0.019297964870929718, + -0.038459714502096176, + 0.03698047250509262, + -9.348568710265681e-05, + 0.04383159801363945, + 0.029566047713160515, + 0.07496805489063263, + 0.11964248865842819, + 0.03777618333697319, + 0.035979557782411575, + -0.08596323430538177, + -0.029110057279467583, + -0.04858555644750595, + -0.0022395120467990637, + 0.050451889634132385, + 0.03119582310318947, + 0.03141551837325096, + -0.00440851878374815, + 0.06462198495864868, + 0.0793628916144371, + 0.08696763962507248, + 0.018163051456212997, + 0.004487039055675268, + -0.05400039628148079, + -0.010935794562101364, + 0.012828705832362175, + 0.005153442732989788, + -0.08701331913471222, + 0.0005321459611877799, + -0.08862875401973724, + 0.08714735507965088, + -0.012002049013972282, + -0.027810482308268547, + 0.018063928931951523, + -0.117813341319561, + 0.007872121408581734, + 0.04453349485993385, + -0.1444590836763382, + 0.009589620865881443, + 0.011997897177934647, + -0.07742791622877121, + -0.005701683461666107, + -5.942766791879769e-34, + 0.08789650350809097, + -0.004761530086398125, + 0.0017909185262396932, + -0.09405598789453506, + -0.0607832707464695, + 0.01677875593304634, + -0.019569171592593193, + 0.06633327156305313, + 0.0013750545913353562, + -0.014226729050278664, + -0.10536680370569229, + 0.04096698760986328, + -0.004217012319713831, + -0.061371929943561554, + 0.008894531987607479, + -0.015175922773778439, + -0.0016889572143554688, + 0.0376373827457428, + -0.015246058814227581, + 0.06322972476482391, + -0.037664495408535004, + 0.01573750749230385, + -0.1754455715417862, + -0.008738914504647255, + 0.028896724805235863, + 0.05129818990826607, + -0.058347437530756, + -0.0064055053517222404, + 0.03951100632548332, + -0.02716941200196743, + -0.05644407495856285, + -0.024720987305045128, + 0.05397893115878105, + 0.009577245451509953, + -0.09567967057228088, + 0.0749925971031189, + 0.09490367770195007, + -0.11865391582250595, + 0.014346767216920853, + -0.03641857951879501, + 0.04557056352496147, + 0.06018845736980438, + 0.1311875879764557, + -3.6327768611954525e-05, + 0.04332134500145912, + 0.01944342441856861, + -0.009691980667412281, + 0.03837230056524277, + -0.0884418711066246, + 0.035146139562129974, + 0.035832472145557404, + 0.009575311094522476, + -0.01333443820476532, + 0.06242366135120392, + 0.057896990329027176, + -0.0914197713136673, + -0.034210991114377975, + 0.03250598534941673, + -0.03979267552495003, + -0.04661073908209801, + -0.006553600542247295, + 0.027203546836972237, + -0.040369194000959396, + 0.03054405376315117, + -0.028245098888874054, + -0.05756477639079094, + -0.0013907898683100939, + -0.060357436537742615, + 0.026813002303242683, + 0.00030090881045907736, + -0.07263124734163284, + -0.06017761677503586, + -0.011495184153318405, + -0.066249780356884, + 0.06618431955575943, + -0.01884310133755207, + 0.038353901356458664, + 0.040121112018823624, + 0.004595454782247543, + -0.041232623159885406, + -0.003415071638301015, + -0.038229890167713165, + -0.03591415286064148, + 0.09826920181512833, + -0.01505583431571722, + 0.12259480357170105, + -0.004110382869839668, + -0.08456411212682724, + 0.03340808302164078, + -0.032897889614105225, + -0.04134451597929001, + -0.03169705718755722, + -0.0648675262928009, + 0.013934443704783916, + -0.05365743860602379, + -2.214703265224216e-08, + 0.0650644600391388, + 0.04886670783162117, + -0.0652119591832161, + -0.004512954968959093, + 0.008036302402615547, + -0.01246247161179781, + 0.006380045786499977, + 0.004877052269876003, + -0.05388715863227844, + 0.029082532972097397, + 0.0319262333214283, + 0.0058899931609630585, + -0.008353943936526775, + 0.009279145859181881, + 0.04374310374259949, + -0.004538914188742638, + -0.03406182676553726, + 0.05247806757688522, + -0.0002967191394418478, + -0.03298646956682205, + -0.026105953380465508, + 0.07048722356557846, + 0.022137632593512535, + -0.024054819718003273, + 0.009530104696750641, + 0.017803605645895004, + -0.03240368887782097, + -0.0674668401479721, + 0.058768466114997864, + -0.005994596052914858, + 0.03670996427536011, + 0.018135610967874527, + -0.014164268039166927, + 0.029340682551264763, + -0.025422431528568268, + -0.05630457401275635, + -0.05420539528131485, + 0.02960687130689621, + 0.00322760920971632, + 0.010093734599649906, + 0.01982325315475464, + -0.005598355084657669, + 0.059109024703502655, + 0.012546384707093239, + -0.03510482981801033, + 0.03179848939180374, + 0.047937046736478806, + -0.036364201456308365, + -0.03411898389458656, + -0.07053007930517197, + -0.09365551173686981, + 0.021095868200063705, + 0.048874832689762115, + 0.08281861990690231, + 0.055531732738018036, + 0.014163954183459282, + 0.01492927223443985, + -0.019416917115449905, + -0.0033070656936615705, + 0.04066073149442673, + 0.12936247885227203, + -0.07896056026220322, + -0.05344042927026749, + -0.034718383103609085 + ], + "mouse-bold||*updated*,clicks,input": [ + -0.042071618139743805, + -0.07661842554807663, + -0.010492519475519657, + 0.0506417453289032, + 0.03882123529911041, + -0.06862645596265793, + 0.09283962100744247, + -0.08145690709352493, + -0.01905614137649536, + 0.027469942346215248, + -0.03804011642932892, + 0.06757452338933945, + -0.007540978491306305, + -0.051815055310726166, + 0.008673341013491154, + 0.04997442290186882, + 0.009955345652997494, + 0.021354015916585922, + -0.00718084117397666, + -0.014792519621551037, + -0.05753273889422417, + -0.04130855202674866, + 0.027629150077700615, + 0.034677404910326004, + -0.0406208373606205, + -0.010542798787355423, + 0.0659666433930397, + -0.07394494861364365, + -0.03316386789083481, + -0.05226968973875046, + -0.0150722935795784, + -0.0032378523610532284, + 0.08038629591464996, + -0.05294502153992653, + -0.0011221375316381454, + -0.03647885471582413, + -0.06459798663854599, + -0.015411905944347382, + -0.03936272859573364, + 0.0008350168354809284, + 0.026400398463010788, + -0.09591198712587357, + 0.037262607365846634, + 0.012456429190933704, + -0.08128970116376877, + -0.06614505499601364, + -0.042741239070892334, + -0.045739926397800446, + 0.04124230891466141, + 0.05263319984078407, + 0.009025884792208672, + -0.09251958876848221, + -0.01572265475988388, + -0.02628261037170887, + -0.0008964779553934932, + 0.025209512561559677, + 0.034190401434898376, + 0.0006243577809073031, + 0.08037220686674118, + -0.04987882822751999, + 0.004949276801198721, + 0.02626645751297474, + 0.020372988656163216, + -0.018835097551345825, + 0.06242189183831215, + 0.019284570589661598, + 0.04478871449828148, + -0.048623908311128616, + -0.031235352158546448, + 0.01442299596965313, + 0.04929813742637634, + 0.02418852597475052, + 0.00010163485421799123, + -0.04274043068289757, + -0.0335264690220356, + -0.037977561354637146, + -0.020311815664172173, + 0.05501602590084076, + 0.08052360266447067, + -0.031859319657087326, + -0.000819479813799262, + -0.06153084337711334, + -0.030672457069158554, + -0.03271288797259331, + 0.1417735517024994, + 0.05738671123981476, + -0.061829447746276855, + -0.04258646443486214, + -0.029482727870345116, + -0.05281338840723038, + -0.03126153349876404, + -0.013730757869780064, + -0.028290443122386932, + 0.03785872086882591, + -0.034118957817554474, + 0.002454432426020503, + 0.10695210844278336, + 0.051855042576789856, + -0.04335228353738785, + 0.066108837723732, + 0.03499952331185341, + 0.07136979699134827, + -0.002843441441655159, + 0.012703088112175465, + 0.020419752225279808, + 0.02979368530213833, + -0.005346773192286491, + -0.028306573629379272, + -0.07124969363212585, + 0.0032173357903957367, + -0.07059436291456223, + -0.12173768877983093, + -0.049929771572351456, + -0.010470218025147915, + -0.023052465170621872, + -0.008506658487021923, + 0.020413734018802643, + -0.0060638547874987125, + 0.06863783299922943, + 0.031095128506422043, + 0.11564984172582626, + -0.015806077048182487, + -0.07439936697483063, + -0.04404188692569733, + 0.03856905549764633, + 0.01102849654853344, + 0.06821679323911667, + -3.318135862333228e-33, + 0.04374070465564728, + 0.005205827299505472, + -0.07141543924808502, + 0.04232510179281235, + -0.028123145923018456, + 0.05236027389764786, + 0.006015236955136061, + -0.07798133790493011, + -0.05138249322772026, + -0.0211073886603117, + 0.07437705993652344, + 0.047086503356695175, + -0.025447921827435493, + 0.06915691494941711, + 0.034159570932388306, + -0.08931081742048264, + 0.06404158473014832, + 0.05855145305395126, + -0.0693005844950676, + 0.011624028906226158, + -0.04209277033805847, + 0.07274114340543747, + -0.08733132481575012, + -0.014803608879446983, + -0.010942216031253338, + 0.0012708184076473117, + -0.02935374528169632, + 0.06054024398326874, + -0.02915700152516365, + 0.03316459804773331, + 0.03268972039222717, + 0.020070672035217285, + -0.029395129531621933, + 0.01024821400642395, + -0.08975013345479965, + -0.004196726251393557, + -0.046845123171806335, + -0.051278091967105865, + 0.05378168076276779, + -0.02165903151035309, + -0.053332068026065826, + -0.0827469751238823, + 0.00987453293055296, + -0.07481037825345993, + -0.005280839744955301, + 0.13732415437698364, + -0.10517846792936325, + -0.08760597556829453, + -0.02012673020362854, + -0.044364482164382935, + -0.003114990657195449, + 0.042832572013139725, + -0.039323531091213226, + -0.06439922749996185, + -0.013831129297614098, + -0.027715718373656273, + 0.0074363951571285725, + 0.05490916967391968, + 0.02314864471554756, + 0.01629451848566532, + 0.05696187540888786, + 0.014599703252315521, + 0.03729138523340225, + 0.009498849511146545, + -0.014638307504355907, + 0.1131504625082016, + -0.008021102286875248, + 0.04516737908124924, + 0.05960337445139885, + -0.02294665016233921, + 0.03667948767542839, + 0.03947896510362625, + 0.029480362311005592, + -0.008896992541849613, + 0.0002309135888935998, + -0.02027481608092785, + -0.028491318225860596, + -0.057292547076940536, + 0.025246623903512955, + -0.0666438490152359, + 0.02043774537742138, + -0.034326422959566116, + -0.07668369263410568, + 0.1297716200351715, + 0.0630081444978714, + -0.033323705196380615, + -0.08505792170763016, + 0.045995067805051804, + -0.07798652350902557, + 0.028387481346726418, + 0.02527003362774849, + -0.03823937103152275, + -0.08132688701152802, + -0.08390140533447266, + -0.0919693186879158, + -2.1272898307956898e-34, + 0.05732094869017601, + 0.11899144947528839, + -0.030093668028712273, + 0.042830098420381546, + -0.11012345552444458, + 0.1104639396071434, + -0.012549434788525105, + 0.04082455486059189, + 0.02038583531975746, + -0.021419700235128403, + 0.04637965187430382, + 0.05715009942650795, + -0.025684546679258347, + -0.027477649971842766, + -0.0020783222280442715, + 0.12789610028266907, + -0.04694178327918053, + 0.065181203186512, + -0.04835198074579239, + -0.04260975122451782, + 0.04130920022726059, + -0.06610456854104996, + -0.02578556351363659, + 0.11050040274858475, + -0.004777099937200546, + -0.051376353949308395, + 0.015766562893986702, + 0.03859308734536171, + 0.0012866705656051636, + -0.021541476249694824, + -0.026429902762174606, + 0.057468000799417496, + -0.01859138533473015, + 0.03324253857135773, + 0.04898699000477791, + -0.0040131849236786366, + 0.062441881746053696, + -0.0763922855257988, + -0.009002786129713058, + 0.038397595286369324, + 0.02827325090765953, + 0.0029783763457089663, + 0.06085817888379097, + 0.02629554085433483, + -0.012669941410422325, + 0.005134160630404949, + -0.04929254949092865, + 0.012471701949834824, + 0.009133693762123585, + 0.0711531713604927, + 0.003312854329124093, + -0.0402127280831337, + -0.022812865674495697, + -0.05956772714853287, + -0.06315219402313232, + -0.023693041875958443, + -0.0030861711129546165, + 0.009165039286017418, + -0.01563384011387825, + 0.03603651374578476, + -0.04110914468765259, + 0.07461182773113251, + -0.04545849189162254, + 0.042931169271469116, + 0.013743605464696884, + -0.007989115081727505, + 0.05568814277648926, + -0.04501707851886749, + 0.0758868157863617, + 0.006620315834879875, + 0.10060954093933105, + 0.011102458462119102, + 0.0197328869253397, + 0.016916289925575256, + 0.05353745073080063, + -0.0321703664958477, + 0.0696386992931366, + -0.009605690836906433, + 0.004453084897249937, + -0.02213328517973423, + 0.03724503517150879, + -0.013320577330887318, + 0.09399042278528214, + -0.005537610035389662, + -0.060405340045690536, + 0.07595363259315491, + -0.03567160665988922, + 0.027482200413942337, + 0.025262977927923203, + -0.09925814718008041, + -0.015047256834805012, + -0.024782156571745872, + -0.033223435282707214, + -0.030728355050086975, + -0.05902518704533577, + -1.8969680937175326e-08, + -0.01819927617907524, + 0.010498606599867344, + -0.041417915374040604, + -0.027927884832024574, + 0.06266552209854126, + -0.027055511251091957, + -0.047173164784908295, + -0.00921354815363884, + -0.020068638026714325, + -0.05327024310827255, + -0.005575730465352535, + 0.030219227075576782, + 0.048956334590911865, + -0.006854408886283636, + 0.054713670164346695, + 0.07307542860507965, + -0.09142202138900757, + 0.044304925948381424, + -0.019865529611706734, + -0.025527143850922585, + 0.009640577249228954, + 0.0481276772916317, + 0.04090970754623413, + 0.029219891875982285, + 0.03334486484527588, + -0.035776421427726746, + -0.08982548862695694, + 0.060379430651664734, + 0.07912241667509079, + -0.018461009487509727, + 0.05678945779800415, + 0.033158332109451294, + -0.007890738546848297, + 0.04449706897139549, + -0.11556442081928253, + -0.04760337620973587, + 0.024654455482959747, + -0.005692809354513884, + -0.004365148954093456, + 0.09408007562160492, + -0.04575273394584656, + -0.028957068920135498, + -0.018761027604341507, + -0.06774380058050156, + -0.09680494666099548, + 0.015162333846092224, + -0.026652876287698746, + -0.06493725627660751, + -0.09651778638362885, + -0.11614008992910385, + -0.08562423288822174, + 0.10490068793296814, + 0.06606332957744598, + 0.05119161680340767, + 0.010864896699786186, + -0.08169760555028915, + -0.06995944678783417, + 0.08584422618150711, + 0.03884577751159668, + 0.010032867081463337, + 0.11136315762996674, + -0.010536099784076214, + -0.0025750971399247646, + 0.046117812395095825 + ], + "mouse-left-click-bold||*new*,clicks,input": [ + -0.04087546840310097, + -0.10050003975629807, + -0.03620048239827156, + 0.08153387159109116, + 0.04092295840382576, + -0.05862029269337654, + 0.07637008279561996, + -0.08404450863599777, + -0.038686126470565796, + 0.04319769889116287, + -0.023888662457466125, + 0.060035694390535355, + 0.001012090709991753, + -0.02012884058058262, + 0.0398494191467762, + 0.06043250486254692, + 0.006772652268409729, + 0.010521016083657742, + -0.003110335674136877, + 0.011017462238669395, + -0.04081115126609802, + -0.08921346813440323, + -0.02497045509517193, + -0.007877422496676445, + -0.049215927720069885, + -0.0508912168443203, + 0.06400080025196075, + -0.08693944662809372, + -0.007813028991222382, + -0.04274728521704674, + -0.009323764592409134, + -0.016765892505645752, + 0.08633413910865784, + -0.037882912904024124, + 0.012209796346724033, + -0.006687127985060215, + -0.0491003692150116, + -0.01411491446197033, + -0.051020193845033646, + -0.02322712540626526, + 0.01540373358875513, + -0.10681499540805817, + 0.038527533411979675, + 0.010322942398488522, + -0.06850160658359528, + -0.07392925769090652, + -0.045089662075042725, + 0.004482122138142586, + 0.10607275366783142, + 0.062032658606767654, + -0.02724320814013481, + -0.07195314764976501, + -0.028824353590607643, + -0.028060348704457283, + 0.013206982053816319, + 0.02613859623670578, + -0.006614734884351492, + -0.04331983998417854, + 0.04000956192612648, + -0.029306180775165558, + 0.009077146649360657, + 0.028654277324676514, + 0.0013507904950529337, + -0.005360763054341078, + 0.06402043253183365, + 0.0008037660154514015, + 0.00916227325797081, + -0.015247778967022896, + -0.05019697919487953, + 0.04526447877287865, + -0.00286108092404902, + 0.008311055600643158, + -0.03598741069436073, + 0.023184262216091156, + -0.01576179452240467, + -0.05462503060698509, + -0.035543184727430344, + 0.10754542797803879, + 0.012430177070200443, + 0.011056287214159966, + 0.013528995215892792, + -0.00667203264310956, + -0.03325865417718887, + -0.028953563421964645, + 0.13818633556365967, + 0.10212802141904831, + -0.08554677665233612, + -0.017154183238744736, + -0.026460498571395874, + -0.03544643893837929, + -0.05407370626926422, + 0.02877192385494709, + -0.0666334480047226, + 0.05713818594813347, + 0.0024544880725443363, + -0.020311670377850533, + 0.08859740197658539, + 0.029537763446569443, + -0.018321381881833076, + 0.05056297034025192, + 0.019473623484373093, + 0.0480925552546978, + 0.03460102155804634, + -0.0275888592004776, + 0.00827613566070795, + 0.0007460602791979909, + -0.024108106270432472, + -0.06191783770918846, + -0.1017618253827095, + 0.0284300297498703, + -0.017047729343175888, + -0.09757422655820847, + -0.013699605129659176, + -0.03564804792404175, + 0.007090314291417599, + 0.01600096933543682, + -0.041030097752809525, + 0.005121677182614803, + 0.11249179393053055, + 0.031062085181474686, + 0.09319370985031128, + -0.03676619753241539, + -0.10389302670955658, + -0.06660007685422897, + 0.043880727142095566, + 0.006094542797654867, + -0.01694718934595585, + -4.4004597962253716e-33, + 0.04740307107567787, + 0.01724373549222946, + -0.05289621651172638, + 0.05147172883152962, + -0.05497633293271065, + 0.0815417617559433, + -0.027680275961756706, + -0.03207904472947121, + -0.09554529190063477, + -0.018630020320415497, + 0.10938243567943573, + -0.017653660848736763, + -0.0003776869270950556, + 0.02937728352844715, + 0.044623129069805145, + -0.08180917799472809, + 0.021825244650244713, + 0.03876030072569847, + -0.0810406357049942, + -0.029744533821940422, + -0.08180399239063263, + 0.11393166333436966, + -0.0563926100730896, + 0.007367049343883991, + -0.03342519327998161, + -0.008145498111844063, + 0.009048146195709705, + -0.0190841406583786, + -0.06313493102788925, + 0.04056729003787041, + 0.023923683911561966, + 0.009452180936932564, + -0.03403235971927643, + 0.010057338513433933, + -0.08472248911857605, + 0.04309985786676407, + -0.03495316207408905, + -0.017675787210464478, + 0.034322287887334824, + -0.0012257915223017335, + -0.07207991927862167, + -0.06882628053426743, + 0.0295918807387352, + -0.050649773329496384, + -0.03261641785502434, + 0.11883748322725296, + -0.05399617180228233, + -0.09890751540660858, + -0.029283761978149414, + -0.05911674350500107, + -0.02703681029379368, + -0.010013311170041561, + -0.018223552033305168, + -0.0399431511759758, + -0.005611423868685961, + -0.016472909599542618, + -0.002632364397868514, + 0.06448549032211304, + 0.04560239240527153, + 0.014814464375376701, + 0.02698250487446785, + 0.03822244331240654, + 0.028775861486792564, + 0.06745506078004837, + -0.04630779102444649, + 0.07933667302131653, + -0.021325137466192245, + 0.016522454097867012, + 0.06097704917192459, + -0.016794297844171524, + 0.05165329948067665, + 0.009728077799081802, + -0.0012484798207879066, + -0.03562840446829796, + 0.015960227698087692, + -0.008242887444794178, + 0.010184491984546185, + -0.08321598172187805, + 0.06081349775195122, + -0.07780520617961884, + -0.018658921122550964, + -0.00546686677262187, + -0.07201644778251648, + 0.085898756980896, + 0.039825212210416794, + -0.051561757922172546, + -0.0822649747133255, + -0.00430571474134922, + -0.05386122316122055, + -0.03236888721585274, + 0.008729556575417519, + -0.050154268741607666, + -0.09408117830753326, + -0.05708824470639229, + -0.06781988590955734, + -2.541552177535955e-34, + 0.0379159040749073, + 0.10571610182523727, + -0.012511881068348885, + 0.06673477590084076, + -0.12368632853031158, + 0.12054619193077087, + 0.03719737008213997, + 0.057624563574790955, + 0.003190793562680483, + 0.018220223486423492, + 0.07838065922260284, + 0.08238880336284637, + -0.0019734245724976063, + -0.011038404889404774, + 0.02997281402349472, + 0.08309559524059296, + -0.04124590381979942, + 0.06644515693187714, + -0.023882267996668816, + -0.03578069806098938, + 0.07217245548963547, + -0.07308171689510345, + -0.044888805598020554, + 0.1154467910528183, + 0.002818069886416197, + -0.05921763926744461, + 0.042389459908008575, + 0.05802907794713974, + -0.0009418039699085057, + -0.023656047880649567, + -0.032369308173656464, + 0.060442980378866196, + 0.005852087866514921, + 0.05960343778133392, + 0.010788749903440475, + 0.001585044083185494, + 0.029005017131567, + -0.054525308310985565, + 0.03889080137014389, + 0.03617352619767189, + 0.028441790491342545, + -0.03493816405534744, + 0.0698535144329071, + 0.017488807439804077, + -0.0493171252310276, + -0.003925216384232044, + -0.02976587973535061, + 0.011668640188872814, + 0.03162918612360954, + 0.04839925840497017, + -0.0007961943047121167, + -0.022615203633904457, + -0.007979096844792366, + -0.10005532205104828, + -0.0679841861128807, + -0.006548802834004164, + -0.0028632255271077156, + 0.011944567784667015, + 0.009000125341117382, + 0.040505047887563705, + -0.04051113501191139, + 0.04700978100299835, + -0.05820365995168686, + 0.05995061248540878, + 0.011982587166130543, + -0.05122676491737366, + 0.060315679758787155, + 0.013887807726860046, + 0.022615544497966766, + 0.01605910249054432, + 0.09399912506341934, + 0.06005397066473961, + 0.004885630216449499, + -0.029288388788700104, + 0.014007966965436935, + -0.041366513818502426, + 0.031663160771131516, + -0.012089387513697147, + -0.05163346976041794, + -0.012060463428497314, + 0.05585143342614174, + -0.030431902036070824, + 0.06457942724227905, + -0.02587679773569107, + -0.020139742642641068, + 0.06661991029977798, + -0.02506454847753048, + -0.0004345547058619559, + 0.008050592616200447, + -0.05352519825100899, + -0.008860638365149498, + 0.013371574692428112, + -0.008117916993796825, + -0.007583358325064182, + -0.06449459493160248, + -2.21071072559198e-08, + -0.05403640866279602, + -0.0306380745023489, + 0.0004666564636863768, + -0.010824600234627724, + 0.03796455264091492, + -0.03946520388126373, + -0.07723455876111984, + 0.016904311254620552, + -0.014820014126598835, + -0.005571187939494848, + -0.013612929731607437, + 0.04929353669285774, + 0.042024847120046616, + 0.025727076455950737, + 0.055451296269893646, + 0.08883684873580933, + -0.07049444317817688, + 0.022198818624019623, + -0.00952700711786747, + -0.02546405978500843, + 0.039460502564907074, + 0.0285810437053442, + 0.0374135822057724, + 0.04779268428683281, + 0.013731381855905056, + -0.008459364995360374, + -0.08444087952375412, + 0.025006864219903946, + 0.08827278017997742, + -0.00028910048422403634, + 0.02586270309984684, + 0.03809715807437897, + -0.04084700718522072, + 0.03919178247451782, + -0.15150342881679535, + -0.03453109413385391, + -0.0453077107667923, + -0.014738927595317364, + -0.036412227898836136, + 0.027192357927560806, + -0.04428640753030777, + 0.020689697936177254, + -0.03365999087691307, + -0.06578725576400757, + -0.17417505383491516, + -0.00624700216576457, + -0.01693595014512539, + -0.050663162022829056, + -0.06060861051082611, + -0.13306491076946259, + -0.03596728667616844, + 0.10444897413253784, + 0.06638077646493912, + 0.026754673570394516, + 0.05716179683804512, + 0.004456214606761932, + -0.06494299322366714, + 0.10321436077356339, + 0.05185157433152199, + 0.030601195991039276, + 0.1118704304099083, + 0.05468149855732918, + 0.029253417626023293, + 0.06883448362350464 + ], + "mouse-middle-click-bold||*new*,clicks,input": [ + -0.05385693907737732, + -0.116754911839962, + -0.026055339723825455, + 0.02215457335114479, + 0.0760512501001358, + -0.050657205283641815, + 0.06489252299070358, + -0.05533982068300247, + -0.03264904022216797, + 0.0610336996614933, + -0.04871046915650368, + 0.05705748125910759, + 0.003577838186174631, + -0.013431875966489315, + 0.017591295763850212, + 0.07257697731256485, + 0.002232071477919817, + 0.0006153395515866578, + 0.005184608977288008, + 0.001985190436244011, + -0.00589734734967351, + -0.09727229923009872, + -0.0050929696299135685, + 0.0069973161444067955, + -0.0425337590277195, + -0.043037787079811096, + 0.05149335414171219, + -0.06709451973438263, + -0.022150197997689247, + -0.02382204681634903, + -0.0198170468211174, + -0.016348686069250107, + 0.11289384961128235, + -0.002094932831823826, + 0.007271869108080864, + -0.02640973962843418, + -0.03967069089412689, + 0.0008483341080136597, + -0.021259883418679237, + -0.04021501541137695, + 0.03081679344177246, + -0.1014191061258316, + 0.03843917325139046, + -0.0016221286496147513, + -0.07167566567659378, + -0.05186428502202034, + -0.045956943184137344, + -0.013966526836156845, + 0.08160879462957382, + 0.046886879950761795, + -0.018717670813202858, + -0.12472327798604965, + -0.023210231214761734, + -0.043543003499507904, + 0.03314609453082085, + 0.012413273565471172, + -0.007645930629223585, + -0.05003819242119789, + 0.05940552428364754, + -0.034890126436948776, + -0.003288396866992116, + 0.01972160115838051, + 0.01034788228571415, + 0.008915577083826065, + 0.08376983553171158, + -0.0033110182266682386, + 0.014429994858801365, + 0.00016852679254952818, + -0.06619956344366074, + 0.02220333181321621, + -0.0027279462665319443, + -0.01168888434767723, + -0.02719510719180107, + -0.016942473128437996, + -0.010245193727314472, + -0.06104001775383949, + -0.06870883703231812, + 0.0953507050871849, + 0.0147038409486413, + 0.0059400093741714954, + -0.0146394157782197, + -0.01712779700756073, + -0.02435155399143696, + -0.0303688682615757, + 0.139931783080101, + 0.10075929015874863, + -0.05783054605126381, + -0.018535200506448746, + -0.06611938774585724, + -0.04580245539546013, + -0.06565462052822113, + -0.001931268023326993, + -0.08733880519866943, + 0.04177691414952278, + -0.0034249199088662863, + 0.016103701665997505, + 0.1000833511352539, + -0.0025325065944343805, + -0.020462602376937866, + 0.04579620063304901, + 0.02846151776611805, + 0.048567548394203186, + 0.05011966452002525, + -0.047144919633865356, + 0.01245635375380516, + -0.014215813018381596, + 0.0014016649220138788, + -0.02867693081498146, + -0.12033187597990036, + 0.03363100811839104, + -0.04037889838218689, + -0.1031290739774704, + -0.016280651092529297, + -0.051905661821365356, + 0.007397077977657318, + 0.013101289048790932, + -0.005033562891185284, + 0.007279709912836552, + 0.12968070805072784, + 0.000571207026951015, + 0.09939760714769363, + -0.02494432032108307, + -0.09422246366739273, + -0.06542903929948807, + 0.04689021781086922, + 0.011417579837143421, + 0.025990979745984077, + -3.773748289162331e-33, + 0.0479210764169693, + 0.03818826377391815, + -0.0869785025715828, + 0.049629274755716324, + -0.07275904715061188, + 0.06279684603214264, + -0.009399130940437317, + -0.028209932148456573, + -0.08947233855724335, + -0.023965368047356606, + 0.08472408354282379, + 0.011111973784863949, + 0.0051599838770926, + 0.009687184356153011, + 0.02668425627052784, + -0.0709943100810051, + 0.037598296999931335, + 0.01881904900074005, + -0.08217231929302216, + -0.060101285576820374, + -0.08555317670106888, + 0.1166510060429573, + -0.03983158618211746, + 0.0030656910967081785, + -0.04120492562651634, + -0.016538862138986588, + -0.0021366921719163656, + -0.00978176947683096, + -0.06338910013437271, + 0.049858465790748596, + 0.017166204750537872, + 0.034866128116846085, + -0.02422574907541275, + 0.038335658609867096, + -0.1145297959446907, + 0.05894816666841507, + -0.01553449034690857, + -0.016613274812698364, + 0.037965256720781326, + 0.017654763534665108, + -0.0358748733997345, + -0.055671874433755875, + 0.04700544476509094, + -0.03247779235243797, + -0.032636482268571854, + 0.11115813255310059, + -0.05646044388413429, + -0.08755147457122803, + -0.05124203488230705, + -0.06726051867008209, + -0.023891033604741096, + -0.025009701028466225, + -0.006616939324885607, + -0.047358497977256775, + -0.014274339191615582, + -0.009913768619298935, + 0.026141202077269554, + 0.0287033598870039, + 0.036521587520837784, + 0.009451695717871189, + 0.02563808485865593, + 0.024745285511016846, + 0.025080079212784767, + 0.0668192207813263, + -0.019144076853990555, + 0.058526888489723206, + -0.04071551188826561, + 0.033112477511167526, + 0.07832080870866776, + 0.005983251146972179, + 0.0701512023806572, + 0.011520100757479668, + -0.004715151619166136, + -0.0015750958118587732, + 0.01231673825532198, + -0.01251710020005703, + 0.016950823366642, + -0.07686007767915726, + 0.05615897476673126, + -0.06672538816928864, + 0.008535911329090595, + 0.012085734866559505, + -0.04018499329686165, + 0.0981825590133667, + 0.05000198259949684, + -0.04179020971059799, + -0.07839585840702057, + -0.019781017675995827, + -0.06198061630129814, + -0.02623864635825157, + -0.004152445122599602, + -0.05854922905564308, + -0.044401153922080994, + -0.01865178905427456, + -0.09359265863895416, + 1.6129805744056515e-35, + 0.040342871099710464, + 0.14249826967716217, + 0.007932361215353012, + 0.1122487410902977, + -0.11584336310625076, + 0.13334931433200836, + 0.05691869556903839, + 0.021093454211950302, + 0.004318850580602884, + 0.03271201252937317, + 0.0642111599445343, + 0.06234307214617729, + 0.04304872453212738, + -0.009339060634374619, + 0.05482999235391617, + 0.08451800793409348, + -0.036043792963027954, + 0.05261044204235077, + -0.024315550923347473, + -0.04143939167261124, + 0.11280988901853561, + -0.06696662306785583, + -0.05385526269674301, + 0.09231732785701752, + 0.010152037255465984, + -0.06986387073993683, + 0.029124204069375992, + 0.03503308817744255, + 0.0037350566126406193, + -0.025150660425424576, + -0.017147628590464592, + 0.024445192888379097, + 0.008925710804760456, + 0.0341501347720623, + -0.016737867146730423, + -0.013474971055984497, + 0.02022133208811283, + -0.021524611860513687, + 0.00136863742955029, + 0.025171389803290367, + 0.028897622600197792, + -0.041294679045677185, + 0.04022467881441116, + 0.016815919429063797, + -0.045342426747083664, + -0.027456359937787056, + -0.019535977393388748, + 0.02558154985308647, + 0.0112845990806818, + 0.05801829323172569, + -0.030122844502329826, + -0.0541723407804966, + 0.007203700952231884, + -0.11108295619487762, + -0.059839896857738495, + 0.02912401221692562, + 0.007263047620654106, + 0.0244821235537529, + -0.0037413870450109243, + 0.01842133328318596, + -0.031562987715005875, + 0.05593670904636383, + -0.04595904052257538, + 0.048369333148002625, + 0.03607657179236412, + -0.016729380935430527, + 0.03779155761003494, + 0.021483952179551125, + -0.006468693260103464, + 0.009115954861044884, + 0.08588360995054245, + 0.04696568846702576, + 0.014741552993655205, + -0.03171130269765854, + 0.013069487176835537, + -0.02712024748325348, + 0.0322464294731617, + -0.00643064035102725, + -0.0375969223678112, + -0.007626818027347326, + 0.05076270550489426, + -0.011099065653979778, + 0.043964751064777374, + -0.026685429736971855, + -0.051461827009916306, + 0.07451677322387695, + -0.022269168868660927, + 0.0004428468819241971, + 0.006657066754996777, + -0.08470343053340912, + -0.022501476109027863, + 0.05180739983916283, + -0.023234674707055092, + -0.03259848803281784, + -0.0695737898349762, + -2.064621007491496e-08, + -0.059391070157289505, + -0.01745784841477871, + 0.007175595965236425, + 0.009483243338763714, + 0.043486081063747406, + -0.05732550099492073, + -0.05913082882761955, + 0.02228446677327156, + 0.023910952731966972, + -0.002136615104973316, + -0.0531228706240654, + 0.04011285677552223, + 0.05332222580909729, + 0.01866334117949009, + 0.03556137904524803, + 0.10594870895147324, + -0.03548628091812134, + 0.02734960988163948, + -0.023094234988093376, + -0.05581330507993698, + -0.0038973214104771614, + 0.04548494517803192, + 0.05087924376130104, + 0.018055174499750137, + 0.005755669437348843, + -0.028095945715904236, + -0.09504454582929611, + 0.05462923273444176, + 0.07805655896663666, + -0.00808925274759531, + 0.0005960783455520868, + 0.052546389400959015, + -0.03416753560304642, + 0.033663779497146606, + -0.1705494374036789, + -0.017961731180548668, + -0.037356771528720856, + -0.00752206752076745, + -0.04473187029361725, + 0.032090820372104645, + 0.0014495371142402291, + -0.003273280570283532, + -0.017053071409463882, + -0.05740005895495415, + -0.16437852382659912, + -0.008871584199368954, + -0.022268690168857574, + -0.0279313363134861, + -0.052024830132722855, + -0.11249656975269318, + -0.02430809661746025, + 0.09123003482818604, + 0.07139981538057327, + 0.029877835884690285, + 0.05537227541208267, + -0.021176470443606377, + -0.03911537304520607, + 0.08180984854698181, + 0.06381002068519592, + 0.01352907344698906, + 0.11700468510389328, + 0.04681653901934624, + 0.02205854281783104, + 0.08188310265541077 + ], + "mouse-right-click-bold||*new*,clicks,input": [ + -0.044075820595026016, + -0.10620278865098953, + -0.04760933294892311, + 0.08742552250623703, + 0.037448231130838394, + -0.03483368828892708, + 0.06563577800989151, + -0.08535117655992508, + -0.04436067119240761, + 0.045467182993888855, + -0.012681778520345688, + 0.06823480874300003, + 0.005033328663557768, + -0.025544047355651855, + 0.05565078184008598, + 0.05627927556633949, + -0.00048164918553084135, + 0.017735563218593597, + 0.0029997089877724648, + -0.0002691536210477352, + -0.023366667330265045, + -0.07761481404304504, + -0.02723032422363758, + -0.010247249156236649, + -0.04901284724473953, + -0.04896026849746704, + 0.06163424998521805, + -0.08811704814434052, + -0.008069414645433426, + -0.032750971615314484, + -0.012258837930858135, + -0.02975144237279892, + 0.09155505150556564, + -0.04562724381685257, + 0.014761612750589848, + 0.000368108187103644, + -0.06738436222076416, + -0.01171188522130251, + -0.05412869527935982, + -0.03200887143611908, + 0.012177536264061928, + -0.11933976411819458, + 0.0298310499638319, + -0.0024999973829835653, + -0.073841392993927, + -0.07331451028585434, + -0.028420595452189445, + 0.004982576705515385, + 0.10213827341794968, + 0.05725801736116409, + -0.02670525386929512, + -0.07045088708400726, + -0.03077756240963936, + -0.03133838623762131, + 0.03427998349070549, + 0.0438576340675354, + -0.020153548568487167, + -0.045218318700790405, + 0.04054676741361618, + -0.029047610238194466, + -0.0068610962480306625, + 0.020169692113995552, + 0.0011992626823484898, + -0.003949033562093973, + 0.06714128702878952, + 0.022044267505407333, + 0.009320976212620735, + -0.01870134100317955, + -0.05895567685365677, + 0.04483727365732193, + -0.00014619447756558657, + 0.008901802822947502, + -0.022365007549524307, + 0.025332242250442505, + -0.010964292101562023, + -0.05434165894985199, + -0.037347447127103806, + 0.10232312232255936, + -0.0003590645210351795, + 0.01463321503251791, + 0.014603950083255768, + -0.013293861411511898, + -0.03610609844326973, + -0.01601998694241047, + 0.13929684460163116, + 0.10173425078392029, + -0.07348694652318954, + -0.01624038815498352, + -0.022717125713825226, + -0.028940698131918907, + -0.03910413011908531, + 0.014181910082697868, + -0.06710769981145859, + 0.05579376965761185, + -0.007005084306001663, + -0.011382312513887882, + 0.07629705220460892, + 0.02245650440454483, + -0.013796030543744564, + 0.035056788474321365, + 0.021650925278663635, + 0.041402313858270645, + 0.03171394392848015, + -0.031098179519176483, + 0.011930293403565884, + -0.0020767333917319775, + -0.01541161723434925, + -0.05279669538140297, + -0.08913592249155045, + 0.039706941694021225, + -0.012610399164259434, + -0.1068216934800148, + -0.02891041897237301, + -0.032276757061481476, + 0.006141552701592445, + 0.02113216742873192, + -0.03488237038254738, + -0.0036854047793895006, + 0.10654304921627045, + 0.027727035805583, + 0.08753421902656555, + -0.016144735738635063, + -0.11179596185684204, + -0.06660493463277817, + 0.03869303688406944, + 0.0035864664241671562, + -0.026939107105135918, + -4.518591468353242e-33, + 0.04017700254917145, + 0.015184768475592136, + -0.04679394140839577, + 0.04316560551524162, + -0.053577542304992676, + 0.07295243442058563, + -0.0340912789106369, + -0.044282302260398865, + -0.09530859440565109, + -0.00516341719776392, + 0.11598874628543854, + -0.025033680722117424, + -0.00363230356015265, + 0.031296439468860626, + 0.048039790242910385, + -0.0875343531370163, + 0.017403610050678253, + 0.05263436585664749, + -0.0736662819981575, + -0.03016534075140953, + -0.08380913734436035, + 0.10524304956197739, + -0.05171269178390503, + -0.0029730612877756357, + -0.03859444335103035, + -0.008655891753733158, + 0.012807562947273254, + -0.013700547628104687, + -0.058760885149240494, + 0.033537231385707855, + 0.023025328293442726, + 0.008306233212351799, + -0.034235261380672455, + 0.01285372581332922, + -0.0836389809846878, + 0.020569918677210808, + -0.034964561462402344, + -0.013585181906819344, + 0.03531249240040779, + 0.0015223210211843252, + -0.059799376875162125, + -0.06341806799173355, + 0.02279161475598812, + -0.047165755182504654, + -0.021073946729302406, + 0.1187467947602272, + -0.05372358113527298, + -0.08284453302621841, + -0.025530165061354637, + -0.05849727243185043, + -0.015354241244494915, + 0.003985914401710033, + -0.020498519763350487, + -0.01819824054837227, + -0.006294159684330225, + -0.011427287012338638, + -0.0038448558188974857, + 0.07474091649055481, + 0.03944510221481323, + 0.007519018370658159, + 0.027903124690055847, + 0.03423459455370903, + 0.03200935944914818, + 0.06226954609155655, + -0.045598454773426056, + 0.08311234414577484, + -0.02575046941637993, + 0.013721180148422718, + 0.05720885097980499, + -0.00997445359826088, + 0.05417089909315109, + 0.01660623401403427, + -0.003071757033467293, + -0.04185293987393379, + 0.011301026679575443, + -0.00990915298461914, + 0.0011481819674372673, + -0.07515616714954376, + 0.06784164160490036, + -0.06333518028259277, + -0.03391978517174721, + -0.017617298290133476, + -0.0857551321387291, + 0.09000909328460693, + 0.03500234708189964, + -0.06113822013139725, + -0.09272506088018417, + -0.0022422224283218384, + -0.04562893509864807, + -0.040114626288414, + 0.00498207937926054, + -0.04122699424624443, + -0.10289328545331955, + -0.055598184466362, + -0.07170190662145615, + -3.5208399908166944e-34, + 0.04853987321257591, + 0.09913315623998642, + 0.00039853184716776013, + 0.07669077813625336, + -0.1189337894320488, + 0.12093694508075714, + 0.034378353506326675, + 0.06018202006816864, + -0.002425279002636671, + 0.029069550335407257, + 0.07895609736442566, + 0.08468777686357498, + 0.0017988347681239247, + -0.015066399239003658, + 0.0348329059779644, + 0.0832519680261612, + -0.044296856969594955, + 0.07774282246828079, + -0.018050653859972954, + -0.042458221316337585, + 0.0645841509103775, + -0.07863058149814606, + -0.04660135880112648, + 0.12037517130374908, + 0.0016784825129434466, + -0.0636400505900383, + 0.04893018677830696, + 0.06081586703658104, + 0.007624566089361906, + -0.02059784345328808, + -0.02738162688910961, + 0.060541532933712006, + -0.0155625706538558, + 0.06933140754699707, + 0.013363100588321686, + 0.003638512222096324, + 0.02573603391647339, + -0.0478660948574543, + 0.044209107756614685, + 0.03808784857392311, + 0.03887874633073807, + -0.03611201420426369, + 0.058750469237565994, + 0.02214699424803257, + -0.051385797560214996, + 0.009037245996296406, + -0.02252923510968685, + 0.009566131047904491, + 0.022581057623028755, + 0.04647420346736908, + -0.004749561659991741, + -0.021566614508628845, + -0.010081678628921509, + -0.09906253218650818, + -0.06551235169172287, + -0.006247210316359997, + 0.005794306751340628, + -0.0006385900778695941, + -0.0033096126280725002, + 0.04135989397764206, + -0.03158115595579147, + 0.048826154321432114, + -0.0736745074391365, + 0.06372737884521484, + 0.007030180189758539, + -0.054162703454494476, + 0.06189383566379547, + 0.010303772054612637, + 0.017034387215971947, + 0.009511932730674744, + 0.0803452581167221, + 0.04057051241397858, + 0.004823843017220497, + -0.022918161004781723, + 0.011598501354455948, + -0.05902736261487007, + 0.034130021929740906, + -0.014135506935417652, + -0.03916621580719948, + -0.026969248428940773, + 0.07723066210746765, + -0.017013808712363243, + 0.05853582173585892, + -0.03604598715901375, + -0.015568875707685947, + 0.07418825477361679, + -0.0257574412971735, + -0.0012231968576088548, + 0.0035843602381646633, + -0.06292641162872314, + -0.01619589701294899, + 0.020256884396076202, + -0.007303443271666765, + -0.003059066366404295, + -0.07227150350809097, + -2.232933482559929e-08, + -0.06776844710111618, + -0.020178543403744698, + 0.00960856955498457, + -0.011868192814290524, + 0.04008806124329567, + -0.05346135050058365, + -0.08459754288196564, + 0.019634632393717766, + -0.0075066168792545795, + -0.004813153762370348, + -0.023700524121522903, + 0.030498648062348366, + 0.039777252823114395, + 0.031581517308950424, + 0.06461858004331589, + 0.08434664458036423, + -0.067014679312706, + 0.020756961777806282, + -0.0021412742789834738, + -0.03947523236274719, + 0.025553343817591667, + 0.016740549355745316, + 0.03414206579327583, + 0.05371405929327011, + 0.013121334835886955, + -0.006704508792608976, + -0.08501545339822769, + 0.020193038508296013, + 0.08322346955537796, + 0.011257241480052471, + 0.01506079826503992, + 0.034472499042749405, + -0.04221820458769798, + 0.04081306979060173, + -0.1307552009820938, + -0.028953535482287407, + -0.042710043489933014, + -0.025384604930877686, + -0.02655320055782795, + 0.024618076160550117, + -0.038550544530153275, + 0.01866915449500084, + -0.024553341791033745, + -0.07117880135774612, + -0.17671023309230804, + -0.009983593598008156, + -0.012395046651363373, + -0.056298140436410904, + -0.0643322765827179, + -0.13703234493732452, + -0.03808613494038582, + 0.1129012182354927, + 0.07373057305812836, + 0.024464905261993408, + 0.05711159482598305, + 0.020181167870759964, + -0.06593217700719833, + 0.09318714588880539, + 0.05769776180386543, + 0.029125554487109184, + 0.12856823205947876, + 0.06524219363927841, + 0.02037285827100277, + 0.06992600113153458 + ], + "mouse-scroll-bold||*new*,clicks,input": [ + -0.05911392346024513, + -0.10582371056079865, + -0.02481151558458805, + 0.05114845931529999, + 0.050647638738155365, + -0.05538235232234001, + 0.06864387542009354, + -0.060011617839336395, + -0.016520390287041664, + 0.048259444534778595, + -0.062221135944128036, + 0.08767388761043549, + 0.029426686465740204, + -0.045205581933259964, + 0.005001193843781948, + 0.042988814413547516, + -0.00299648754298687, + 0.050470247864723206, + -0.02139275334775448, + -0.015553747303783894, + -0.013936254195868969, + -0.07614371925592422, + 0.025127748027443886, + 0.013981797732412815, + -0.09027013927698135, + -0.030495690181851387, + 0.06768912822008133, + -0.0827222391963005, + -0.01815754920244217, + -0.04668761044740677, + -0.023433510214090347, + 0.035393401980400085, + 0.09335506707429886, + -0.018428491428494453, + -0.004371015354990959, + -0.02798868529498577, + -0.0646088719367981, + -0.017142128199338913, + -0.051037322729825974, + -0.020662080496549606, + 0.024937117472290993, + -0.08183731883764267, + 0.043866340070962906, + 0.059990979731082916, + -0.036380089819431305, + -0.05034986883401871, + 0.020188117399811745, + -0.03128086403012276, + 0.07390992343425751, + 0.05857139080762863, + 0.02117806300520897, + -0.07201194763183594, + 0.04852670803666115, + -0.00471020583063364, + -0.010653570294380188, + 0.03403916209936142, + 0.0025072928983718157, + -0.036068741232156754, + 0.03738060221076012, + 0.009667943231761456, + 0.011089102365076542, + 0.01459435559809208, + 0.030593639239668846, + -0.000917523808311671, + 0.03549310564994812, + -0.006617690436542034, + 0.031705062836408615, + 0.0034917956218123436, + -0.05909542366862297, + 0.06504332274198532, + -0.02891918271780014, + 0.0010278477566316724, + -0.02242659218609333, + 0.02195984497666359, + -0.020549722015857697, + -0.054920364171266556, + -0.01720508001744747, + 0.03817035257816315, + 0.02842063456773758, + 0.017053863033652306, + -0.007211944088339806, + -0.059004832059144974, + -0.05444107949733734, + 0.015060028061270714, + 0.1051095649600029, + 0.08342809975147247, + -0.09621753543615341, + -0.01815987005829811, + -0.03333498537540436, + -0.06475917994976044, + -0.04662647470831871, + 0.00528637645766139, + -0.06547959893941879, + 0.05556102097034454, + -0.0316685326397419, + 0.011517297476530075, + 0.12703338265419006, + 0.037586864084005356, + -0.013075625523924828, + 0.04515756294131279, + 0.0009414506494067609, + 0.07520905137062073, + 0.04713316261768341, + 0.031102336943149567, + -0.023198207840323448, + 0.011300716549158096, + 0.0036878343671560287, + -0.0685734674334526, + -0.08376727253198624, + 0.05317511409521103, + 0.008821750059723854, + -0.13438986241817474, + -0.018446095287799835, + -0.010603281669318676, + -0.01023984607309103, + 0.02355772629380226, + -0.016167419031262398, + -0.012762888334691525, + 0.05356756970286369, + 0.0604877807199955, + 0.08524972945451736, + 0.0041023362427949905, + -0.11814375221729279, + -0.05545022711157799, + 0.004699802957475185, + 0.014764263294637203, + -0.02339540421962738, + -3.3470276767665165e-33, + 0.04162808880209923, + 0.02049441635608673, + -0.0710521936416626, + 0.038629837334156036, + -0.02647998183965683, + 0.05234094709157944, + -0.013333134353160858, + -0.060401901602745056, + -0.07446184754371643, + 0.013102150522172451, + 0.08747167140245438, + -0.014734574593603611, + 0.03039255179464817, + 0.0420052669942379, + 0.027979061007499695, + -0.10210222005844116, + 0.01831386424601078, + 0.023682912811636925, + -0.06482072919607162, + -0.00971895270049572, + -0.09453032165765762, + 0.07433190196752548, + -0.048188865184783936, + -0.025570843368768692, + -0.03945557028055191, + -8.161209552781656e-05, + -0.018815498799085617, + -0.0001612900523468852, + -0.009129481390118599, + 0.04635994881391525, + -0.0021740056108683348, + 0.05238451436161995, + -0.06267501413822174, + 0.024264879524707794, + -0.05765564739704132, + 0.025111716240644455, + -0.028742583468556404, + -0.022930702194571495, + 0.059938352555036545, + -0.007159612141549587, + -0.08048281818628311, + -0.05906401574611664, + 0.03507958725094795, + -0.04102862998843193, + -0.024695996195077896, + 0.09139996767044067, + -0.07007337361574173, + -0.08954134583473206, + -0.006490666884928942, + -0.029532765969634056, + -0.02362280711531639, + 0.018412986770272255, + -0.059600528329610825, + -0.040816500782966614, + 0.04562772810459137, + -0.049966759979724884, + -0.006946066860109568, + 0.0748162493109703, + 0.07844815403223038, + 0.04704726114869118, + -0.0024754463229328394, + 0.008410118520259857, + -0.0030757496133446693, + 0.04556833207607269, + 0.011721394024789333, + 0.08450281620025635, + -0.003115740604698658, + 0.07871810346841812, + 0.025743838399648666, + -0.05176322162151337, + 0.09315420687198639, + 0.03269926458597183, + -0.010142792016267776, + 0.006253041326999664, + 0.013815016485750675, + 0.02665475383400917, + 0.025375792756676674, + -0.021664923056960106, + 0.06573639810085297, + -0.07940217852592468, + 0.008089931681752205, + -0.004050033167004585, + -0.061575084924697876, + 0.09925863891839981, + 0.011370890773832798, + -0.04020882770419121, + -0.08762975037097931, + 0.03716280683875084, + -0.07513027638196945, + -0.009004902094602585, + -0.0020124150905758142, + -0.04080062359571457, + -0.03298818692564964, + -0.09179440140724182, + -0.1090765967965126, + -8.125379129121624e-35, + 0.032236672937870026, + 0.13948696851730347, + -0.04609057307243347, + 0.059585049748420715, + -0.11605064570903778, + 0.12076635658740997, + 0.015489893965423107, + 0.04774747043848038, + 0.024728190153837204, + -0.03484063223004341, + 0.0465790219604969, + 0.07602212578058243, + 0.0026226439513266087, + 0.007600182667374611, + 0.03492279723286629, + 0.08699602633714676, + -0.055222321301698685, + 0.07018035650253296, + -0.0460369735956192, + -0.029345298185944557, + 0.11166394501924515, + -0.09135233610868454, + -0.07603040337562561, + 0.07924774289131165, + 0.0023028317373245955, + -0.07456684857606888, + 0.04106423258781433, + 0.07235859334468842, + -0.034493282437324524, + -0.00717928446829319, + -0.020873699337244034, + 0.027270138263702393, + -0.02925783209502697, + 0.0531010664999485, + 0.023096555843949318, + -0.012391620315611362, + 0.03437253460288048, + -0.06338980048894882, + 0.009493795223534107, + 0.03273449093103409, + 0.017823269590735435, + -0.041564200073480606, + 0.0920063927769661, + -0.014271734282374382, + -0.056319333612918854, + -0.03657637536525726, + -0.048419009894132614, + 0.02496526762843132, + 0.057158488780260086, + 0.022421512752771378, + -0.03491721674799919, + -0.04639197513461113, + -0.005464939866214991, + -0.13048496842384338, + -0.037042804062366486, + 0.02773028425872326, + 0.01755509339272976, + 0.026525236666202545, + -0.030998926609754562, + -0.012986017391085625, + -0.020384928211569786, + 0.08867545425891876, + -0.05612627789378166, + 0.048229895532131195, + 0.0026306535582989454, + -0.028608374297618866, + 0.0354723185300827, + -0.02479245513677597, + -0.007217932026833296, + 0.06284904479980469, + 0.05595055967569351, + 0.019557779654860497, + 0.044332753866910934, + -0.014319013804197311, + 0.028616569936275482, + -0.02582482062280178, + 0.08840740472078323, + -0.004683191422373056, + -0.006681820377707481, + -0.0057081375271081924, + 0.04861154407262802, + -0.0049245841801166534, + 0.06930459290742874, + -0.06722152233123779, + -0.009023964405059814, + 0.07784165441989899, + -0.10024701058864594, + -0.020985176786780357, + 0.027951262891292572, + -0.053738612681627274, + -0.020309841260313988, + -0.009489239193499088, + -0.06504151225090027, + -0.03939729928970337, + -0.03894033282995224, + -1.9493416658633578e-08, + -0.040391817688941956, + -0.01802135817706585, + -0.04386083409190178, + -0.00914169941097498, + 0.05921006202697754, + -0.005590606946498156, + -0.04639923945069313, + 0.02913796342909336, + -0.03379316255450249, + -0.022897209972143173, + 0.020150156691670418, + 0.04188493266701698, + 0.05523389205336571, + 0.03192935883998871, + 0.05022767558693886, + 0.0802646055817604, + -0.006073374766856432, + 0.022576795890927315, + -0.028498027473688126, + -0.05132189020514488, + 0.0038591050542891026, + 0.071278877556324, + 0.043914545327425, + 0.02343173883855343, + 0.0022775514516979456, + -0.020716873928904533, + -0.11370618641376495, + 0.016794592142105103, + 0.04849213361740112, + -0.027111584320664406, + 0.026171382516622543, + 0.05870579183101654, + -0.052036184817552567, + 0.008615230210125446, + -0.12721960246562958, + -0.06641492247581482, + -0.031173916533589363, + -0.013236933387815952, + -0.04498300701379776, + 0.05216476321220398, + -0.04749516770243645, + 0.04057265445590019, + -0.0006432570517063141, + -0.042320430278778076, + -0.1291140764951706, + 0.0006582395872101188, + -0.014747420325875282, + -0.03299693018198013, + -0.07063878327608109, + -0.09848451614379883, + -0.042083702981472015, + 0.07825769484043121, + 0.10123001784086227, + 0.05690154433250427, + 0.008740860037505627, + -0.037917718291282654, + -0.07361073046922684, + 0.12396331131458282, + -0.005214841105043888, + 0.021496469154953957, + 0.0724988579750061, + 0.018893349915742874, + 0.06275554746389389, + 0.05738352611660957 + ], + "mouse-simple-bold||clicks,input": [ + -0.0217227041721344, + -0.08482978492975235, + -0.02699042484164238, + 0.03989851474761963, + 0.0379098616540432, + -0.06455545127391815, + 0.10469549894332886, + -0.04426644369959831, + -0.052960701286792755, + 0.016098063439130783, + -0.04465332254767418, + 0.04928886145353317, + 0.024626808241009712, + -0.02472817525267601, + 0.01847667247056961, + 0.045334573835134506, + -0.008856123313307762, + 0.007082982920110226, + 0.0016230174805969, + 0.0011697870213538408, + -0.021411795169115067, + -0.06330005079507828, + 0.011914419010281563, + 0.0016978990752249956, + -0.06800888478755951, + -0.0411648191511631, + 0.08041482418775558, + -0.0358445905148983, + -0.011298716999590397, + -0.04009469226002693, + -0.0130972471088171, + -0.02050643041729927, + 0.09002242237329483, + -0.04135670140385628, + 0.005367421545088291, + -0.029777487739920616, + -0.0391673780977726, + -0.02607906609773636, + -0.06602232903242111, + -0.013578901998698711, + 0.017067760229110718, + -0.10985804349184036, + 0.06304284930229187, + 0.0015269489958882332, + -0.0961088091135025, + -0.0702059417963028, + -0.03896036744117737, + -0.029736198484897614, + 0.06610121577978134, + 0.03896177187561989, + 0.023788945749402046, + -0.07217094302177429, + -0.005432399455457926, + -0.02629946917295456, + 0.017123976722359657, + 0.03675370663404465, + -0.03859362378716469, + 0.001227836823090911, + 0.06509288400411606, + -0.05900135263800621, + -0.009894761256873608, + 0.006420455873012543, + -0.0035415615420788527, + -0.03353608399629593, + 0.07456386834383011, + 0.016146356239914894, + 0.04521884396672249, + -0.011246442794799805, + -0.06649705022573471, + 0.01976494863629341, + 0.01869538612663746, + -0.015670714899897575, + -0.040651652961969376, + 0.00042961383587680757, + -0.048455044627189636, + -0.017682624980807304, + -0.03469555452466011, + 0.08322181552648544, + 0.03887307271361351, + 0.001028682803735137, + -0.05231170356273651, + -0.05752551183104515, + -0.03932461887598038, + 0.026475444436073303, + 0.11950264126062393, + 0.07421483099460602, + -0.07096625119447708, + -0.02259017340838909, + 0.005569229368120432, + -0.03692696616053581, + -0.042197681963443756, + 0.018602311611175537, + -0.021700697019696236, + 0.05109325423836708, + 0.02737482637166977, + -0.017568597570061684, + 0.14514394104480743, + 0.04793565347790718, + -0.07386426627635956, + 0.04877413064241409, + 0.04209894686937332, + 0.07499929517507553, + 0.02198813483119011, + -0.05666438862681389, + 0.0004489541461225599, + 0.022971903905272484, + 0.00047499273205175996, + -0.07134383916854858, + -0.06899815052747726, + -0.00731464009732008, + -0.07100038230419159, + -0.1232081800699234, + -0.015008966438472271, + -0.006827786099165678, + 0.01671612448990345, + -0.0216158926486969, + -0.0016199788078665733, + -0.035911381244659424, + 0.11422373354434967, + 0.016531944274902344, + 0.07013458013534546, + 0.0012828100007027388, + -0.106967993080616, + -0.03623126819729805, + 0.060126788914203644, + 0.024353357031941414, + 0.06157096475362778, + -3.747386726319187e-33, + 0.06920845806598663, + 0.038059160113334656, + -0.06979624181985855, + 0.038860928267240524, + -0.03762323781847954, + 0.04130567982792854, + -0.008225069381296635, + -0.04329969733953476, + -0.08708476275205612, + 0.010415350086987019, + 0.0680595189332962, + -0.015010632574558258, + -0.019573384895920753, + 0.031820159405469894, + 0.045281946659088135, + -0.05084642767906189, + 0.059263721108436584, + 0.01767217554152012, + -0.09034726768732071, + -0.011742619797587395, + -0.04195322096347809, + 0.10627494752407074, + -0.07360081374645233, + -0.003974031191319227, + -0.01633266732096672, + -0.004464068450033665, + -0.023464029654860497, + 0.026896676048636436, + -0.02551375702023506, + 0.041908640414476395, + 0.03493066504597664, + 0.01270638033747673, + -0.050088800489902496, + 0.005516611505299807, + -0.05593974143266678, + 0.01481869351118803, + -0.016365814954042435, + -0.009139523841440678, + 0.05235036462545395, + -0.0015927946660667658, + -0.08269628882408142, + -0.06233176961541176, + 0.06236016005277634, + -0.06525544077157974, + 0.0037531524430960417, + 0.15668825805187225, + -0.0498821958899498, + -0.12047149986028671, + -0.025597307831048965, + -0.027315549552440643, + -0.009031705558300018, + -0.015533429570496082, + -0.003917424473911524, + -0.028119409456849098, + 0.02685321494936943, + -0.017571797594428062, + 0.013106309808790684, + 0.060180045664310455, + 0.0010292800143361092, + 0.04402155429124832, + 0.02993387170135975, + 0.022552771493792534, + 0.031759411096572876, + 0.014960449188947678, + -0.02322392165660858, + 0.10263700783252716, + -0.04264088720083237, + 0.037957943975925446, + 0.051022835075855255, + -0.04139091819524765, + 0.05751969665288925, + 0.051277726888656616, + 0.005430208519101143, + -0.07401318103075027, + 0.02772950939834118, + 0.03013632632791996, + 0.02637254074215889, + -0.08744590729475021, + 0.0548567995429039, + -0.07230537384748459, + -0.024334097281098366, + -0.0010171998292207718, + -0.07463967800140381, + 0.10750170797109604, + 0.012116117402911186, + -0.028027044609189034, + -0.07060254365205765, + 0.000764395808801055, + -0.06755944341421127, + -0.008407142013311386, + 0.006084905005991459, + -0.031114816665649414, + -0.06655306369066238, + -0.09873524308204651, + -0.10275553911924362, + 4.880518005612266e-34, + 0.044625572860240936, + 0.13620974123477936, + 0.01539528276771307, + 0.06481744349002838, + -0.1087784394621849, + 0.13315993547439575, + 0.04146670922636986, + 0.015013480558991432, + -0.0018377704545855522, + 0.0077898865565657616, + 0.03878800570964813, + 0.05161171033978462, + -0.01950678415596485, + -0.037326451390981674, + 0.004366683308035135, + 0.08640486747026443, + -0.04190204292535782, + 0.09695065766572952, + -0.006913915742188692, + -0.0650111734867096, + 0.06663783639669418, + -0.06976038217544556, + -0.03176051750779152, + 0.12014731019735336, + -0.012486855499446392, + -0.030779408290982246, + 0.01690749078989029, + 0.025690656155347824, + -0.018718009814620018, + -0.01648576930165291, + -0.015959113836288452, + 0.050634171813726425, + -0.012989749200642109, + 0.02113913930952549, + 0.002364472020417452, + -0.012945910915732384, + 0.02358001098036766, + -0.027421915903687477, + 0.0068669687025249004, + -0.012068076059222221, + -0.005387037061154842, + -0.005261359736323357, + 0.055959299206733704, + -0.010667338036000729, + -0.03994675353169441, + -0.011396398767828941, + 0.00021381730039138347, + -0.016600923612713814, + 0.011135583743453026, + 0.0707763060927391, + -0.023021625354886055, + -0.04894661903381348, + -0.017333989962935448, + -0.04524950310587883, + -0.07682079821825027, + -0.05878360942006111, + 0.03336721658706665, + -0.008588088676333427, + -0.005548218730837107, + 0.051795341074466705, + -0.05233952775597572, + 0.07693284004926682, + -0.05803244933485985, + 0.06072486937046051, + 0.015349133871495724, + -0.03600441664457321, + 0.06614290177822113, + -0.021106187254190445, + 0.056164298206567764, + 0.018313538283109665, + 0.10587795078754425, + 0.034874606877565384, + 0.08138671517372131, + 0.015073039568960667, + 0.04366743564605713, + -0.0057737682946026325, + 0.08487161993980408, + 0.01574857160449028, + -0.008067389950156212, + -0.004637317266315222, + 0.07133544981479645, + -0.010536685585975647, + 0.05357290431857109, + -0.013249052688479424, + -0.03321274742484093, + 0.06593617051839828, + -0.01352610345929861, + -0.00930907391011715, + 0.027731915935873985, + -0.03868807479739189, + -0.019030116498470306, + 0.02469533123075962, + 0.012668924406170845, + -0.03172760829329491, + -0.04353884980082512, + -1.6953503489958166e-08, + -0.02204425074160099, + -0.015404429286718369, + -0.012104685418307781, + -0.03338576853275299, + 0.03061426430940628, + -0.008512631990015507, + -0.03224712982773781, + -0.00130257208365947, + 0.0006022037123329937, + 0.016655096784234047, + -0.02629835717380047, + 0.02651660330593586, + 0.006113048642873764, + 0.0045259371399879456, + 0.030476044863462448, + 0.10056658089160919, + -0.06283168494701385, + 0.05024026706814766, + -0.02312410995364189, + -0.0018524512415751815, + 0.01607048325240612, + 0.021169273182749748, + 0.022546010091900826, + 0.032036133110523224, + 0.01809724047780037, + -0.02177080325782299, + -0.10286236554384232, + 0.09680943191051483, + 0.093631312251091, + 0.006754294503480196, + 0.031625427305698395, + 0.0522465854883194, + -0.012423735111951828, + 0.04277180880308151, + -0.16045892238616943, + -0.04819565266370773, + 0.0034287304151803255, + -0.005258597899228334, + -0.0506136454641819, + 0.036757100373506546, + -0.0795719102025032, + -0.011453828774392605, + -0.02353520505130291, + -0.08789322525262833, + -0.09193608909845352, + 0.0204557403922081, + -0.003173564560711384, + -0.06144427880644798, + -0.09390028566122055, + -0.114052914083004, + -0.07822015881538391, + 0.08316745609045029, + 0.06750164926052094, + 0.03820054233074188, + -0.0035654352977871895, + -0.0803404375910759, + -0.06483421474695206, + 0.10334968566894531, + 0.0006833355291746557, + 0.019221412017941475, + 0.12324874848127365, + 0.06289257854223251, + -0.022273672744631767, + 0.031815510243177414 + ], + "music-note-bold||songs,audio,playlist,albums": [ + 0.0007741799345239997, + -0.014169546775519848, + -0.052899543195962906, + 0.010267597623169422, + 0.037438757717609406, + 0.06751524657011032, + 0.08753252774477005, + -0.03024463728070259, + 0.015117712318897247, + -8.592267840867862e-05, + -0.0030619993340224028, + 0.03750865161418915, + 0.02100381813943386, + -0.07017697393894196, + -0.0029973445925861597, + 0.043554794043302536, + 0.007768908049911261, + 0.052045658230781555, + 0.02138591930270195, + 0.012627343647181988, + -0.022675255313515663, + 0.05951417237520218, + -0.009142677299678326, + 0.035029008984565735, + 0.015123388729989529, + 0.05927596613764763, + 0.005458368454128504, + 0.024025771766901016, + -0.005261095706373453, + -0.06299319863319397, + 0.007295574527233839, + 0.02085770294070244, + 0.16034157574176788, + 0.01944217085838318, + 0.05410242825746536, + -0.018646342679858208, + -0.08760157227516174, + -0.03219059854745865, + -0.05358944833278656, + 0.05587281659245491, + 0.04935446009039879, + -0.002489138627424836, + -0.024460671469569206, + -0.032068319618701935, + -0.103390172123909, + -0.04210611432790756, + -0.12283594906330109, + -0.0387982614338398, + -0.0036471851635724306, + 0.04326191172003746, + -0.0019362217281013727, + -0.05670545622706413, + -0.13641813397407532, + 0.010453375056385994, + -0.02789575792849064, + -0.033359963446855545, + -0.029400628060102463, + 0.04484635964035988, + 0.024291668087244034, + 0.020289799198508263, + 0.07186932861804962, + -0.04178958758711815, + 0.051312994211912155, + 0.00039424162241630256, + 0.029397619888186455, + -0.001767563633620739, + 0.007014601957052946, + 0.057896535843610764, + -0.049488265067338943, + 0.011883583851158619, + 0.04454533010721207, + 0.025586795061826706, + -0.02063886448740959, + -0.030152034014463425, + -0.0026017525233328342, + -0.003419283777475357, + -0.007698556873947382, + -0.01777474768459797, + -0.12174993008375168, + -0.08149175345897675, + -0.022141272202134132, + -0.0861901119351387, + -0.027365686371922493, + -0.0875936821103096, + 0.055398207157850266, + 0.032175011932849884, + -0.08823583275079727, + -0.04381995275616646, + -0.09061748534440994, + -0.007053885608911514, + -0.10622550547122955, + 0.005632965825498104, + -0.033991117030382156, + 0.004888420458883047, + -0.022245798259973526, + 0.07201050966978073, + 0.0774494856595993, + -0.0465332493185997, + -0.05135592073202133, + 0.06765738874673843, + 0.05097893252968788, + 0.09550343453884125, + 0.0242606308311224, + 0.057988718152046204, + -0.025759804993867874, + -0.08147191256284714, + -0.031489644199609756, + 0.02685452811419964, + -0.006588340736925602, + -0.03832641616463661, + 0.018534405156970024, + -0.04153881594538689, + -0.029513753950595856, + -0.06201314553618431, + -0.019819319248199463, + -0.07033456116914749, + 0.021758945658802986, + 0.011299735866487026, + 0.11375128477811813, + 0.06984640657901764, + 0.06711636483669281, + -0.07096819579601288, + -0.09430721402168274, + -0.01424095407128334, + -0.045236941426992416, + 0.03700704127550125, + 0.024076977744698524, + -1.2608717912194565e-33, + 0.07942482829093933, + -0.030959269031882286, + -0.006954674143344164, + 0.05623402073979378, + 0.05576862767338753, + -0.05402473360300064, + -0.07575380802154541, + 0.0074289217591285706, + -0.06531296670436859, + 0.0556269995868206, + 0.09725001454353333, + 0.02316984161734581, + 0.024931883439421654, + 0.07244416326284409, + 0.024069083854556084, + -0.001304557197727263, + -0.0402422659099102, + 0.023089952766895294, + -0.018224123865365982, + 0.020938003435730934, + -0.0907268077135086, + 0.020640097558498383, + 0.013052978552877903, + -0.0007288709748536348, + 0.03802568465471268, + -0.01660243421792984, + 0.023254450410604477, + -0.06942503154277802, + -0.018885262310504913, + -0.0057602557353675365, + -0.01634558103978634, + -0.003144881222397089, + 0.07697904109954834, + -0.028689995408058167, + -0.012796174734830856, + 0.07203604280948639, + -0.11105634272098541, + 0.03853132575750351, + 0.03416560962796211, + -0.08571091294288635, + -0.044168442487716675, + -0.04739682748913765, + -0.04292912036180496, + -0.05836489424109459, + -0.010009963065385818, + 0.13651591539382935, + -0.06200433522462845, + 0.0062006935477256775, + 0.08253059536218643, + 0.047688987106084824, + 0.01056754868477583, + 0.010146817192435265, + -0.05245695635676384, + 0.04116465896368027, + 0.025109289214015007, + -0.0587540939450264, + 0.004959030542522669, + 0.10292498767375946, + 0.017593229189515114, + 0.04343205690383911, + 0.054776061326265335, + 0.00921268854290247, + 0.040997784584760666, + -0.057778794318437576, + -0.024877937510609627, + 0.10325970500707626, + 0.006644728127866983, + -0.00596489105373621, + 0.08245483785867691, + 0.01840190403163433, + -0.07828794419765472, + -0.001301138079725206, + 0.045635826885700226, + 0.050614312291145325, + -0.05889827013015747, + 0.008548637852072716, + 0.02695169858634472, + -0.0900639072060585, + 0.05702522024512291, + -0.06556776911020279, + -0.08043725043535233, + 0.02832518145442009, + 0.0009876389522105455, + 0.12355795502662659, + -0.01582452282309532, + 0.03773687779903412, + 0.0017478191293776035, + -0.14098970592021942, + -0.009982314892113209, + -0.006298253312706947, + -0.1017722561955452, + 0.06288263946771622, + -0.030930984765291214, + -0.042050205171108246, + -0.10925544798374176, + -1.965816671762544e-33, + 0.09508473426103592, + 0.03998405113816261, + -0.030824238434433937, + -0.04610613361001015, + 0.019202277064323425, + 0.07450323551893234, + -0.010291697457432747, + 0.11198205500841141, + 0.023869113996624947, + 0.05350378528237343, + 0.030233114957809448, + -0.0425434410572052, + -0.06764040142297745, + -0.04823998361825943, + -0.04537954181432724, + 0.008750932291150093, + -0.005508271045982838, + 0.0356907919049263, + 0.002917972393333912, + -0.006242417264729738, + -0.0890277773141861, + -0.022138306871056557, + 0.020331883803009987, + 0.06917760521173477, + -0.036319583654403687, + -0.011628728359937668, + 0.012531164102256298, + -0.022507786750793457, + -0.028398608788847923, + -0.04943675175309181, + 0.052664000540971756, + -0.05174988880753517, + -0.03178989887237549, + -0.06599073112010956, + -0.023195156827569008, + 0.03185547888278961, + 0.08437923341989517, + 0.02046745829284191, + -0.0035745222121477127, + 0.04600119590759277, + -0.03001515567302704, + 0.08193833380937576, + -0.015521633438766003, + 0.007632845547050238, + -0.018531639128923416, + -0.022517656907439232, + -0.01729479618370533, + 0.059368979185819626, + -0.03210904821753502, + 0.07614891976118088, + 0.05698602274060249, + -0.05812889337539673, + 0.037688083946704865, + -0.007195348851382732, + -0.10358932614326477, + 0.000695485738106072, + -0.019255710765719414, + -0.04035533592104912, + -0.007301607634872198, + 0.044304657727479935, + -0.009219498373568058, + 0.055728714913129807, + -0.06818674504756927, + -0.05425626412034035, + 0.02186516858637333, + -0.009487835690379143, + 0.07838107645511627, + -0.042646147310733795, + 0.008401564322412014, + 0.05029531940817833, + -0.013097685761749744, + 0.01830589585006237, + -0.027982279658317566, + 0.051497481763362885, + -0.002127995016053319, + -0.048842065036296844, + -0.005883121397346258, + -0.043080344796180725, + -0.05017407611012459, + -0.006341795902699232, + 0.022573279216885567, + 0.005729427095502615, + 0.02513917349278927, + 0.009424499236047268, + 0.022658320143818855, + 0.033322691917419434, + 0.026878174394369125, + 0.0045941174030303955, + -0.006230893079191446, + 0.013074936345219612, + -0.02467251941561699, + 0.00713754165917635, + 0.011983082629740238, + 0.034545402973890305, + -0.038527630269527435, + -1.8791167732956637e-08, + -0.07040879875421524, + -0.009492532350122929, + -0.07957025617361069, + -0.08423268049955368, + 0.019430696964263916, + -0.03311062976717949, + -0.016142824664711952, + -0.09697865694761276, + -0.012141735292971134, + -0.024440428242087364, + 0.0542004369199276, + -0.06295430660247803, + -0.08819947391748428, + -0.02756006084382534, + -0.0367613360285759, + 0.04573448374867439, + -0.0684543028473854, + 0.08315514773130417, + -0.023868810385465622, + -0.038297466933727264, + -0.027323849499225616, + 0.056142691522836685, + 0.03644948825240135, + -0.07752473652362823, + 0.07261607050895691, + 0.03978107124567032, + -0.015056046657264233, + 0.05349382385611534, + 0.056240372359752655, + 0.0725845918059349, + 0.03575853258371353, + 0.05660738795995712, + 0.059714674949645996, + -0.014319522306323051, + -0.02299029380083084, + -0.05033870041370392, + -0.0051981559954583645, + -0.03709728643298149, + -0.08419828861951828, + 0.09464628249406815, + -0.013264808803796768, + 0.051656316965818405, + -0.0765770971775055, + 0.005575879476964474, + -0.039460889995098114, + -0.07965848594903946, + 0.0710587278008461, + 0.01214971486479044, + -0.07549557089805603, + -0.061856258660554886, + -0.057855524122714996, + 0.001606275443919003, + -0.0017955639632418752, + 0.026656607165932655, + -0.027065334841609, + 0.0042315516620874405, + 0.0253696721047163, + 0.1347881555557251, + -0.020285949110984802, + -0.037734683603048325, + 0.06700152903795242, + 0.016636298969388008, + 0.06075603514909744, + 0.05967937409877777 + ], + "music-note-simple-bold||songs,audio,playlist,albums": [ + 0.018272824585437775, + -0.012748617678880692, + -0.047327324748039246, + 0.010419162921607494, + 0.04295573756098747, + 0.0663575753569603, + 0.06254296749830246, + -0.019106676802039146, + -0.011275852099061012, + 0.011334022507071495, + -0.007647201884537935, + 0.0301866065710783, + 0.0248227808624506, + -0.0637817308306694, + -0.0036020411644130945, + 0.033850234001874924, + -0.007647983729839325, + 0.04646337404847145, + 0.02273417077958584, + 0.007699247915297747, + -0.039757732301950455, + 0.03988219425082207, + -0.02585257962346077, + 0.02614229917526245, + 0.0062418668530881405, + 0.05938650295138359, + 0.0018256015609949827, + 0.05617622658610344, + 0.011671586893498898, + -0.0598968043923378, + 0.013711229898035526, + 0.015605365857481956, + 0.16805793344974518, + 0.010485685430467129, + 0.041859135031700134, + -0.028829732909798622, + -0.06412919610738754, + -0.01763598620891571, + -0.07156216353178024, + 0.043173473328351974, + 0.03246127814054489, + -0.0017896723002195358, + -0.026685910299420357, + -0.02647910825908184, + -0.11104486137628555, + -0.057379625737667084, + -0.12717263400554657, + -0.036790087819099426, + 0.0018204677617177367, + 0.029784120619297028, + 0.007447647396475077, + -0.05054278299212456, + -0.14652244746685028, + 0.010832511819899082, + -0.023073846474289894, + -0.027664411813020706, + -0.04571852460503578, + 0.054212477058172226, + 0.03187573701143265, + 0.02179618366062641, + 0.07234419882297516, + -0.06226900964975357, + 0.05090264603495598, + -0.006553363986313343, + 0.021457336843013763, + -0.013365927152335644, + -0.002359779318794608, + 0.04441269114613533, + -0.03758116811513901, + -0.00014130746421869844, + 0.03740275651216507, + 0.022733431309461594, + -0.02883359231054783, + -0.004729016218334436, + -0.007102865260094404, + -0.030458003282546997, + -0.01677642948925495, + -0.005837177392095327, + -0.13786554336547852, + -0.055907078087329865, + -0.03965885937213898, + -0.07925781607627869, + -0.03204081952571869, + -0.058947302401065826, + 0.06154770031571388, + 0.028079183772206306, + -0.08881017565727234, + -0.034169185906648636, + -0.07922297716140747, + -0.01272896770387888, + -0.08987987786531448, + 0.013965951278805733, + -0.00772917689755559, + 0.003714691149070859, + -0.014929082244634628, + 0.07312749326229095, + 0.09136781096458435, + -0.04950111731886864, + -0.07273344695568085, + 0.060917578637599945, + 0.04671835899353027, + 0.08957993984222412, + 0.0467616431415081, + 0.034139033406972885, + -0.021165724843740463, + -0.07908185571432114, + -0.021909864619374275, + 0.021813083440065384, + -0.009494120255112648, + -0.04922756925225258, + 0.013998148962855339, + -0.046392519026994705, + -0.025923173874616623, + -0.06060164421796799, + -0.009119601920247078, + -0.05772378295660019, + 0.013586342334747314, + 0.007487663999199867, + 0.11031433194875717, + 0.08342956751585007, + 0.06511696428060532, + -0.07022358477115631, + -0.10164493322372437, + -0.012982815504074097, + -0.0539245642721653, + 0.04755726084113121, + 0.0330604612827301, + -1.6143925336796436e-33, + 0.08722524344921112, + -0.02050778642296791, + -0.00475264061242342, + 0.06471287459135056, + 0.05194230377674103, + -0.0674622431397438, + -0.08429073542356491, + 0.004967637825757265, + -0.05376536026597023, + 0.05166749656200409, + 0.12461140751838684, + 0.011691766791045666, + 0.02343394048511982, + 0.07660066336393356, + 0.017505183815956116, + 0.002008523093536496, + -0.030499208718538284, + 0.02014319598674774, + -0.019466565921902657, + 0.0024686420802026987, + -0.09638464450836182, + 0.044673554599285126, + 0.029488392174243927, + -0.010957037098705769, + 0.04897834360599518, + -0.011465703137218952, + 0.027942592278122902, + -0.07204920798540115, + -0.015016055665910244, + -0.013136575929820538, + -0.012610395438969135, + -0.01743476279079914, + 0.0870218351483345, + -0.0107811838388443, + -0.02114669233560562, + 0.0632745623588562, + -0.08666758239269257, + 0.03670915961265564, + 0.03510488197207451, + -0.1041407585144043, + -0.060433730483055115, + -0.042834483087062836, + -0.03270963951945305, + -0.06680087000131607, + 0.0018098177388310432, + 0.13896971940994263, + -0.06353048980236053, + 0.001561220153234899, + 0.08359238505363464, + 0.036234065890312195, + 0.0009697735076770186, + 0.021433964371681213, + -0.053223516792058945, + 0.05346864089369774, + 0.03408273309469223, + -0.031401000916957855, + 0.0044400813058018684, + 0.11132108420133591, + 0.006010044366121292, + 0.04221969470381737, + 0.0549730584025383, + 0.030820593237876892, + 0.03014073520898819, + -0.05487516149878502, + -0.02958598919212818, + 0.10512866079807281, + 0.015051083639264107, + -0.02138395793735981, + 0.07671423256397247, + 0.023634446784853935, + -0.07988045364618301, + 0.002788600279018283, + 0.03939587250351906, + 0.033614955842494965, + -0.04426160827279091, + 0.026836737990379333, + 0.04448594152927399, + -0.10995003581047058, + 0.048065345734357834, + -0.052763406187295914, + -0.07739757746458054, + 0.03284965083003044, + -0.007920045405626297, + 0.13368457555770874, + -0.05057176202535629, + 0.022289671003818512, + 0.003197107929736376, + -0.11476825177669525, + -0.014999568462371826, + -0.017130667343735695, + -0.1090221181511879, + 0.07154341042041779, + -0.04011191427707672, + -0.0482664555311203, + -0.10066001862287521, + -1.284866294149128e-33, + 0.09281180053949356, + 0.03581540659070015, + -0.03786761686205864, + -0.04121418297290802, + 0.010541310533881187, + 0.0833933874964714, + 0.008684384636580944, + 0.09918954968452454, + 0.03029247373342514, + 0.05578072741627693, + 0.02495606243610382, + -0.047675371170043945, + -0.07743249088525772, + -0.049978964030742645, + -0.03387843444943428, + 0.02041214518249035, + -0.011016415432095528, + 0.052304696291685104, + 0.012190576642751694, + -0.013413893058896065, + -0.08988427370786667, + -0.003940089605748653, + 0.0016715552192181349, + 0.04409278929233551, + -0.024386581033468246, + -0.011259090155363083, + -0.007910730317234993, + -0.010150237008929253, + -0.01914335787296295, + -0.053665388375520706, + 0.06152653694152832, + -0.045250631868839264, + -0.024786384776234627, + -0.07899457961320877, + -0.01661083661019802, + 0.03066810593008995, + 0.06685961782932281, + 0.034293510019779205, + -0.004217827692627907, + 0.04075455665588379, + -0.04053714498877525, + 0.07868048548698425, + 0.006983275059610605, + -0.01297088898718357, + -0.01153330784291029, + -0.03529171273112297, + -0.0011973384534940124, + 0.047876179218292236, + -0.04728600010275841, + 0.05739313364028931, + 0.05885860696434975, + -0.07816532999277115, + 0.024300644174218178, + -0.0106963487342, + -0.08418088406324387, + 0.00455365190282464, + 0.002647743560373783, + -0.03080879896879196, + -0.006597672123461962, + 0.052167341113090515, + -0.015314692631363869, + 0.051465537399053574, + -0.08907010406255722, + -0.04504925012588501, + 0.0056633492931723595, + 0.0005615391419269145, + 0.06977781653404236, + -0.05071888864040375, + -0.008752520196139812, + 0.0402812585234642, + -0.018696093931794167, + 0.015310322865843773, + -0.009395908564329147, + 0.03125222772359848, + 0.0037559671327471733, + -0.03720003738999367, + -0.017805274575948715, + -0.037050891667604446, + -0.05489645153284073, + -0.024936804547905922, + 0.04212762415409088, + 0.011617996729910374, + 0.01768011413514614, + -0.008725670166313648, + 0.030707387253642082, + 0.04123201221227646, + 0.0350298248231411, + -0.008472831919789314, + -0.00030697815236635506, + 0.013157297857105732, + -0.02948792465031147, + 0.024681469425559044, + 0.03728245943784714, + 0.054573532193899155, + -0.04543454572558403, + -1.9178365562311228e-08, + -0.07267047464847565, + -0.043213218450546265, + -0.06513134390115738, + -0.07267653942108154, + 0.012600378133356571, + -0.025764495134353638, + -0.01336569245904684, + -0.1023101881146431, + -0.0028358062263578176, + -0.011881263926625252, + 0.04755927622318268, + -0.06586507707834244, + -0.08070148527622223, + -0.009000728838145733, + -0.05285007134079933, + 0.05631009861826897, + -0.06782976537942886, + 0.08566565066576004, + -0.01309050153940916, + -0.02747415192425251, + -0.01713309995830059, + 0.06565122306346893, + 0.019374435767531395, + -0.06508436799049377, + 0.0666223093867302, + 0.048177335411310196, + -0.005707065109163523, + 0.06773862987756729, + 0.061627306044101715, + 0.08258917182683945, + 0.029789980500936508, + 0.05503558740019798, + 0.055747270584106445, + -0.009006152860820293, + -0.028702042996883392, + -0.04039900377392769, + -0.007837632670998573, + -0.037013761699199677, + -0.08556213229894638, + 0.08021277189254761, + -0.005538607016205788, + 0.0648106187582016, + -0.08149060606956482, + -0.006294839549809694, + -0.030720772221684456, + -0.08875226974487305, + 0.06801610440015793, + -0.0017256531864404678, + -0.06516436487436295, + -0.06707312166690826, + -0.059012774378061295, + 0.0002178119757445529, + 0.0011162747396156192, + 0.015619849786162376, + -0.023310597985982895, + 0.008977683261036873, + 0.031425002962350845, + 0.13744166493415833, + -0.02600976452231407, + -0.025197023525834084, + 0.05505717173218727, + 0.06023392081260681, + 0.054873351007699966, + 0.055526621639728546 + ], + "music-notes-bold||songs,audio,playlist,albums": [ + -0.01875976286828518, + -0.0219081062823534, + -0.04322545975446701, + 0.0035952089820057154, + 0.034807607531547546, + 0.07514473795890808, + 0.10242367535829544, + -0.02535584568977356, + 0.020831940695643425, + 0.004828820936381817, + 0.01065395399928093, + 0.035471197217702866, + 0.018557831645011902, + -0.06219605728983879, + -0.02201119251549244, + 0.046893611550331116, + 0.027638861909508705, + 0.04550428315997124, + 0.013546943664550781, + 0.01969647780060768, + -0.020118920132517815, + 0.057099442929029465, + 0.0005979433772154152, + 0.04922251030802727, + 0.011110905557870865, + 0.07561995089054108, + -0.004169107414782047, + 0.015319210477173328, + -0.013917501084506512, + -0.06062396615743637, + 0.0006350117037072778, + 0.017356978729367256, + 0.15323247015476227, + 0.01465702336281538, + 0.047637443989515305, + -0.022719241678714752, + -0.0794801115989685, + -0.028104161843657494, + -0.044029492884874344, + 0.054320938885211945, + 0.044190797954797745, + -0.0058681597001850605, + -0.029337618499994278, + -0.014207305386662483, + -0.09157818555831909, + -0.04906958341598511, + -0.11480630934238434, + -0.05304340273141861, + -0.02568739838898182, + 0.04653923586010933, + -0.017319515347480774, + -0.0400950163602829, + -0.12729708850383759, + 0.0038379936013370752, + -0.013311615213751793, + -0.02481723017990589, + -0.0399046428501606, + 0.056984707713127136, + 0.02738671377301216, + 0.02289307862520218, + 0.08902686089277267, + -0.05013049766421318, + 0.051287416368722916, + 0.0011539488332346082, + 0.02488592453300953, + -0.004994201939553022, + 0.016373837366700172, + 0.04574182257056236, + -0.040354229509830475, + 0.021608863025903702, + 0.031143905594944954, + 0.05148046091198921, + -0.02308517135679722, + -0.03044576570391655, + -0.009631774388253689, + -0.0075340261682868, + -0.02100527659058571, + -0.030410075560212135, + -0.12730714678764343, + -0.10314292460680008, + -0.01824273355305195, + -0.09367073327302933, + -0.02335798367857933, + -0.09380710124969482, + 0.03660718351602554, + 0.01383175142109394, + -0.08896873146295547, + -0.024011073634028435, + -0.08225713670253754, + -0.011938955634832382, + -0.09744614362716675, + -0.0022703383583575487, + -0.05731654539704323, + 0.0028726484160870314, + -0.015924323350191116, + 0.06558702886104584, + 0.07846733927726746, + -0.058725688606500626, + -0.04410579428076744, + 0.07041454315185547, + 0.06789381057024002, + 0.09821565449237823, + 0.02268804982304573, + 0.0667952224612236, + -0.018652556464076042, + -0.07071011513471603, + -0.04053010419011116, + 0.021845446899533272, + -0.004934744443744421, + -0.029754582792520523, + 0.02232128567993641, + -0.03920227289199829, + -0.040311045944690704, + -0.05850337818264961, + -0.00967626553028822, + -0.08325150609016418, + 0.020382143557071686, + 0.006122527178376913, + 0.10419666022062302, + 0.057067740708589554, + 0.056917715817689896, + -0.05211072042584419, + -0.08201523870229721, + -0.003571293316781521, + -0.051651425659656525, + 0.03494957461953163, + 0.007927478291094303, + -1.4001283825285496e-33, + 0.07498279213905334, + -0.041910041123628616, + -0.009194946847856045, + 0.061025794595479965, + 0.055973075330257416, + -0.06559819728136063, + -0.06341005116701126, + 0.008297190070152283, + -0.05660729482769966, + 0.056471165269613266, + 0.08308683335781097, + 0.0345432385802269, + 0.029053697362542152, + 0.07783845067024231, + 0.032074376940727234, + -0.006099615711718798, + -0.03654795140028, + 0.023025033995509148, + -0.0030626915395259857, + 0.016878409311175346, + -0.07145453989505768, + 0.040397997945547104, + 0.034865934401750565, + 0.0018495928961783648, + 0.03306318446993828, + -0.015301883220672607, + 0.005224836990237236, + -0.06128961965441704, + -0.02888846956193447, + -0.00541894743219018, + -0.025287985801696777, + 0.012514045462012291, + 0.08257166296243668, + -0.03742319345474243, + -0.019508080556988716, + 0.08625370264053345, + -0.10823158174753189, + 0.029972732067108154, + 0.040578439831733704, + -0.09689097851514816, + -0.054202381521463394, + -0.03616157919168472, + -0.042428936809301376, + -0.05546852946281433, + -0.013812661170959473, + 0.14893460273742676, + -0.06269366294145584, + 0.002269194694235921, + 0.10039743036031723, + 0.050766825675964355, + -0.0133352754637599, + 0.006158547475934029, + -0.047658950090408325, + 0.038821883499622345, + 0.039014782756567, + -0.04943254962563515, + 0.012428037822246552, + 0.10311281681060791, + 0.013722781091928482, + 0.039831288158893585, + 0.05222766846418381, + 0.012977938167750835, + 0.02472902089357376, + -0.08897142112255096, + -0.04688670486211777, + 0.09673818200826645, + -0.012107154354453087, + 0.00021476503752637655, + 0.08952486515045166, + 0.018749713897705078, + -0.08273401856422424, + 0.016033055260777473, + 0.04687119647860527, + 0.04387231171131134, + -0.05026668310165405, + 0.0056070443242788315, + 0.022281985729932785, + -0.0918198674917221, + 0.03263251483440399, + -0.06807118654251099, + -0.08723418414592743, + 0.029333289712667465, + -0.0057709552347660065, + 0.11299598217010498, + -0.0257475096732378, + 0.045357249677181244, + 0.0047708130441606045, + -0.14341123402118683, + -0.00621795654296875, + 0.009073974564671516, + -0.11023704707622528, + 0.06044173613190651, + -0.01789955422282219, + -0.06098691746592522, + -0.11742672324180603, + -2.1072054996214332e-33, + 0.07599857449531555, + 0.045504387468099594, + -0.04367228224873543, + -0.02058967761695385, + 0.019449004903435707, + 0.09110171347856522, + -0.025296835228800774, + 0.11617407947778702, + 0.023209981620311737, + 0.04485789313912392, + 0.004948195535689592, + -0.024892326444387436, + -0.06968335807323456, + -0.060231827199459076, + -0.05202683433890343, + 0.005094838794320822, + -0.006442515645176172, + 0.02501322329044342, + 0.017725832760334015, + -0.01651347056031227, + -0.08923487365245819, + -0.008398345671594143, + 0.00969777349382639, + 0.06838205456733704, + -0.03535022586584091, + 0.0059059178456664085, + 0.013269548304378986, + -0.037070903927087784, + -0.025608323514461517, + -0.051743168383836746, + 0.04710855707526207, + -0.0623786523938179, + -0.02184883877635002, + -0.06772108376026154, + -0.02314753644168377, + 0.030012601986527443, + 0.06979814916849136, + 0.0038847438991069794, + -0.017727863043546677, + 0.05797873064875603, + -0.025802863761782646, + 0.07659944146871567, + -0.013826359063386917, + 0.016303392127156258, + -0.014262730255723, + -0.01040980126708746, + -0.026834888383746147, + 0.06444608420133591, + -0.027927419170737267, + 0.06751873344182968, + 0.06042033061385155, + -0.05981206148862839, + 0.03575146570801735, + -0.004373839590698481, + -0.08715099841356277, + -0.0030797049403190613, + -0.022778475657105446, + -0.05483672767877579, + 0.006565707270056009, + 0.049064088612794876, + -0.010450218804180622, + 0.05757036432623863, + -0.06886256486177444, + -0.034911174327135086, + 0.004755999892950058, + -0.015499190427362919, + 0.07236039638519287, + -0.0386664904654026, + 0.015102655626833439, + 0.06103340536355972, + -0.014170078560709953, + 0.015550794079899788, + -0.028575140982866287, + 0.04234343022108078, + 0.015359586104750633, + -0.04780058190226555, + -0.01000729389488697, + -0.04992387443780899, + -0.05261293053627014, + -0.011110715568065643, + 0.01411834079772234, + -0.0031040371395647526, + 0.029004987329244614, + 0.012330456636846066, + 0.022559449076652527, + 0.0299173966050148, + 0.020313099026679993, + -0.0008479171665385365, + -0.014135529287159443, + 0.013116521760821342, + -0.012983938679099083, + 0.004870849195867777, + 0.011817620135843754, + 0.03681216761469841, + -0.013229957781732082, + -1.9335356427063743e-08, + -0.06101499870419502, + 0.0018138957675546408, + -0.09881792962551117, + -0.0878535583615303, + 0.019119219854474068, + -0.0463428795337677, + -0.003014846472069621, + -0.07446806132793427, + -0.02010522596538067, + -0.0028655664063990116, + 0.07489772886037827, + -0.05620034039020538, + -0.0739738866686821, + -0.01738090068101883, + -0.03190821409225464, + 0.05143897607922554, + -0.06408025324344635, + 0.07199135422706604, + -0.02420593798160553, + -0.05301181226968765, + -0.027883566915988922, + 0.052991218864917755, + 0.023140951991081238, + -0.08890946209430695, + 0.0740998387336731, + 0.04587904363870621, + -0.012549901381134987, + 0.06702284514904022, + 0.04002837464213371, + 0.07995860278606415, + 0.034123342484235764, + 0.057271283119916916, + 0.059039682149887085, + -0.013865360990166664, + -0.0074906074441969395, + -0.04619843512773514, + -0.010309425182640553, + -0.03833237290382385, + -0.08742251247167587, + 0.08724842965602875, + -0.029688306152820587, + 0.05203493684530258, + -0.06853621453046799, + 0.010482537560164928, + -0.037009790539741516, + -0.06787506490945816, + 0.059963859617710114, + 0.020806068554520607, + -0.09056606143712997, + -0.05205557495355606, + -0.07299335300922394, + 0.007411465514451265, + 0.006087477318942547, + 0.030461691319942474, + -0.024908356368541718, + 0.018650874495506287, + 0.020356876775622368, + 0.13370925188064575, + -0.016256313771009445, + -0.050505466759204865, + 0.06760863959789276, + 0.0216064490377903, + 0.05131586268544197, + 0.04235453903675079 + ], + "music-notes-minus-bold||*new*,songs,audio,playlist,albums,remove,subtract": [ + -0.0035781103651970625, + 0.006126211956143379, + -0.054033637046813965, + -0.0029178420081734657, + 0.0425778366625309, + 0.06650518625974655, + 0.07801800221204758, + -0.046384066343307495, + 0.012469545938074589, + -0.0018215787131339312, + 0.03945603594183922, + 0.012362192384898663, + 0.03745207190513611, + -0.0488547682762146, + -0.0275273360311985, + 0.03223918005824089, + -0.013654347509145737, + 0.08621155470609665, + -0.0061665368266403675, + -0.01919400691986084, + -0.01721574179828167, + 0.016558118164539337, + -0.044210996478796005, + 0.0432736873626709, + 0.09314177185297012, + 0.08105793595314026, + -0.021541360765695572, + 0.03211449459195137, + 0.007203508634120226, + -0.036740005016326904, + -0.0055290451273322105, + 0.015733642503619194, + 0.19812291860580444, + -0.0021709795109927654, + 0.027802329510450363, + -0.056084729731082916, + -0.059715770184993744, + 0.010505961254239082, + -0.04887118190526962, + 0.039122361689805984, + 0.030318211764097214, + -0.012083078734576702, + -0.08019328117370605, + -0.03222114220261574, + -0.0981849730014801, + -0.04464922845363617, + -0.16729587316513062, + -0.06306496262550354, + 0.008709028363227844, + 0.05961555615067482, + 0.0449051596224308, + -0.031992606818675995, + -0.18237225711345673, + 0.045257050544023514, + 0.0038436229806393385, + -0.009598116390407085, + -0.010297419503331184, + 0.028752582147717476, + 0.0029369532130658627, + -0.017620034515857697, + 0.08748261630535126, + -0.054180894047021866, + 0.030460957437753677, + -0.03594590350985527, + 0.02969314344227314, + -0.04401673749089241, + -0.006387827917933464, + 0.003867284394800663, + 0.01248508132994175, + 0.06967198848724365, + 0.010408621281385422, + 0.02816649340093136, + 0.0463222973048687, + -0.018641186878085136, + -0.01720467023551464, + -0.018783587962388992, + -0.028294581919908524, + 0.030572114512324333, + -0.11858852952718735, + -0.04466073215007782, + 0.010617908090353012, + -0.04411791265010834, + 0.0015343093546107411, + -0.04713810980319977, + 0.03237146884202957, + 0.017555121332406998, + -0.07961732149124146, + -0.06398739665746689, + -0.08719974011182785, + -0.04465203732252121, + -0.10543663799762726, + -0.019159376621246338, + -0.010201333090662956, + -0.02647487260401249, + -0.04150198772549629, + 0.05667667090892792, + 0.060948267579078674, + -0.013998188078403473, + 0.005048051010817289, + 0.07453592121601105, + 0.017766645178198814, + 0.09625113010406494, + -0.014294254593551159, + 0.02361578680574894, + -0.03479984775185585, + -0.050175394862890244, + -0.030415711924433708, + -0.0015800989931449294, + -0.021441947668790817, + -0.01564975641667843, + 0.02421208843588829, + -0.043088775128126144, + -0.011591543443500996, + -0.05179653316736221, + 0.014339751563966274, + -0.0026949786115437746, + 0.07529039680957794, + 0.05564337596297264, + 0.0916067436337471, + 0.07614824175834656, + 0.08264588564634323, + -0.07732753455638885, + -0.04079199209809303, + -0.0023860062938183546, + -0.07400322705507278, + 0.056925028562545776, + -0.0006075134151615202, + -4.467031898403276e-34, + 0.051832638680934906, + -0.056664783507585526, + -0.007590472232550383, + 0.023561231791973114, + 0.0508018434047699, + -0.05697329714894295, + -0.09949398785829544, + 0.025138769298791885, + -0.02748585119843483, + 0.07230960577726364, + 0.10570403933525085, + 0.04084605723619461, + 0.03322120010852814, + 0.03321449086070061, + 0.02680247835814953, + 0.010819927789270878, + 0.017328448593616486, + -0.02006366476416588, + -0.0028717999812215567, + -0.01618705317378044, + -0.06772477179765701, + 0.04064231738448143, + 0.03045034594833851, + 0.017036085948348045, + 0.05164753645658493, + -0.027601785957813263, + 0.006878303829580545, + -0.08028142899274826, + -0.045421719551086426, + -0.019428784027695656, + -0.03727409988641739, + -0.031952764838933945, + 0.06162004545331001, + 0.01239554863423109, + 0.016100818291306496, + 0.08565343171358109, + -0.07998990267515182, + 0.011370369233191013, + 0.043227601796388626, + -0.11813818663358688, + -0.08442158252000809, + -0.037696968764066696, + -0.07249351590871811, + -0.09985607117414474, + -0.005022912286221981, + 0.11349934339523315, + -0.02709239348769188, + -0.01263628713786602, + 0.08524730056524277, + 0.02382374368607998, + 0.001333674299530685, + 0.042910441756248474, + -0.025158891454339027, + 0.01289073470979929, + -0.019676489755511284, + -0.05586675927042961, + 0.030675945803523064, + 0.11121521145105362, + 0.022423798218369484, + 0.00019875883299391717, + 0.04921037703752518, + 0.05123988538980484, + 0.033084481954574585, + -0.047186095267534256, + -0.050941016525030136, + 0.08570877462625504, + -0.03159041702747345, + -0.0031392984092235565, + 0.04447197541594505, + 0.01685621216893196, + -0.08741865307092667, + 0.007849693298339844, + 0.02693214826285839, + 0.06490220129489899, + -0.04734460636973381, + -0.0003039383445866406, + 0.04226165637373924, + -0.07481587678194046, + 0.07530775666236877, + -0.06798073649406433, + -0.0771748274564743, + 0.058068253099918365, + 0.01332640927284956, + 0.08253704756498337, + -0.01653282344341278, + 0.03013221174478531, + 0.044116612523794174, + -0.10741373896598816, + 0.014651508070528507, + -0.05759163945913315, + -0.11600324511528015, + 0.07628760486841202, + -0.06735115498304367, + -0.03929726779460907, + -0.05524241924285889, + -2.3588792074744696e-33, + 0.056014418601989746, + 0.07690344750881195, + -0.05609476566314697, + -0.021291449666023254, + -0.04823574796319008, + 0.07305777817964554, + 0.034981366246938705, + 0.0875205248594284, + 0.07274845242500305, + 0.04535102844238281, + 0.045063961297273636, + -0.025673883035779, + -0.09658457338809967, + -0.06722056120634079, + -0.012886669486761093, + 0.020406508818268776, + -0.06990725547075272, + 0.007821335457265377, + -0.027824876829981804, + 0.009238716214895248, + -0.10886220633983612, + 0.029600247740745544, + 0.003897393587976694, + 0.0218063835054636, + -0.02315923012793064, + -0.03776603564620018, + 0.030717168003320694, + 0.006600821390748024, + -0.01505602989345789, + -0.08156884461641312, + 0.04444395750761032, + -0.02892918884754181, + 0.004097247030586004, + -0.05259616672992706, + -0.06324703246355057, + -0.029914360493421555, + 0.04710615798830986, + 0.037162281572818756, + -0.007801443804055452, + 0.046056125313043594, + -0.04926702380180359, + 0.04767823591828346, + 0.02855059690773487, + 0.015045778825879097, + -0.0010280577698722482, + -0.005659559275954962, + -0.016674518585205078, + 0.04758216440677643, + -0.022279679775238037, + 0.025237182155251503, + 0.04979231581091881, + -0.0620274692773819, + -0.049764785915613174, + -0.02213205024600029, + -0.06246883422136307, + 0.030460311099886894, + 0.021435199305415154, + -0.012059845961630344, + -0.009761305525898933, + 0.025120599195361137, + -0.0171962883323431, + 0.04262474179267883, + -0.05936611071228981, + -0.021394027397036552, + 0.008988277986645699, + 0.02761881984770298, + 0.052803706377744675, + -0.019887641072273254, + -0.01815689727663994, + 0.01498471200466156, + 0.02313842810690403, + 0.052310775965452194, + -0.038906242698431015, + -0.01335222739726305, + -0.0330386720597744, + -0.07684050500392914, + -0.04277031123638153, + -0.03712839633226395, + -0.04711350426077843, + -0.043965745717287064, + 0.022682765498757362, + -0.001858374336734414, + 0.01784822717308998, + -0.016362633556127548, + -0.03226344659924507, + 0.04707435145974159, + -0.017185835167765617, + 0.0262129046022892, + -0.039996810257434845, + 0.021540453657507896, + -0.02685162052512169, + 0.016115199774503708, + 0.05375409498810768, + 0.04091300442814827, + -0.04681779071688652, + -2.312049574015873e-08, + -0.08259802311658859, + -0.05665242671966553, + -0.06066465005278587, + -0.03154544159770012, + 0.0068467468954622746, + -0.0201629176735878, + -0.04458063840866089, + -0.04362942650914192, + 0.027486303821206093, + -0.035693440586328506, + 0.0860251635313034, + -0.025924308225512505, + -0.08003334701061249, + -0.03517315164208412, + -0.06659317761659622, + 0.05865715071558952, + 0.0034376061521470547, + 0.09926412254571915, + -0.02104281261563301, + -0.03795081749558449, + -0.011682095937430859, + 0.10845206677913666, + 0.01419870089739561, + -0.022495636716485023, + 0.08584154397249222, + 0.031275589019060135, + -0.008357436396181583, + 0.09418982267379761, + 0.05674394592642784, + 0.057068921625614166, + 0.07349802553653717, + 0.05181816965341568, + 0.08080796897411346, + -0.00372719787992537, + 0.009912206791341305, + -0.03577985242009163, + -0.011753846891224384, + 0.01649649441242218, + -0.07332949340343475, + 0.08287254720926285, + -0.0469646081328392, + 0.04063361883163452, + -0.10428067296743393, + 0.020453575998544693, + -0.054919131100177765, + -0.09785237163305283, + 0.04180848225951195, + -0.032264288514852524, + -0.03591005131602287, + -0.07270621508359909, + 0.008199423551559448, + 0.005802879109978676, + -0.003815523348748684, + 0.014332858845591545, + -0.010626587085425854, + 0.02225234918296337, + 0.03545193746685982, + 0.11515798419713974, + -0.014229646883904934, + -0.025093046948313713, + 0.028552258387207985, + -0.006453704088926315, + 0.08240718394517899, + 0.012741001322865486 + ], + "music-notes-plus-bold||songs,audio,playlist,albums,add": [ + -0.007320105098187923, + -0.04617820680141449, + -0.07344328612089157, + 0.01735762506723404, + 0.041006285697221756, + 0.10300817340612411, + 0.06817597150802612, + -0.03189782053232193, + 0.005520733073353767, + 0.010242972522974014, + 0.028342030942440033, + 0.03681270033121109, + 0.011936524882912636, + -0.06736384332180023, + -0.0017589385388419032, + 0.033267512917518616, + -0.028500936925411224, + 0.0551426000893116, + 0.004607079084962606, + -0.036108680069446564, + -0.014274995774030685, + 0.017253853380680084, + -0.0033721942454576492, + 0.03717777505517006, + 0.03123786859214306, + 0.06918353587388992, + -0.03715379536151886, + 0.03859192878007889, + 0.01853385753929615, + -0.04199014604091644, + 0.022342819720506668, + 0.023100635036826134, + 0.17213855683803558, + 0.005984418094158173, + 0.017952827736735344, + -0.04812100529670715, + -0.07407692074775696, + 0.0065981727093458176, + -0.06430298089981079, + 0.012944836169481277, + 0.020705929026007652, + -0.01989738643169403, + -0.018017860129475594, + 0.0015012136427685618, + -0.11612555384635925, + -0.08555196225643158, + -0.12507346272468567, + -0.09232521057128906, + 0.02216387912631035, + 0.06632678210735321, + 0.02026035450398922, + -0.04368138313293457, + -0.16308239102363586, + 0.02513471432030201, + -0.009196445345878601, + -0.018233008682727814, + -0.06574571132659912, + 0.06252049654722214, + 0.018093077465891838, + 0.004871458280831575, + 0.08280123770236969, + -0.05495883524417877, + 0.06721075624227524, + 0.005181781481951475, + 0.02524152398109436, + -0.0323466919362545, + -0.021404780447483063, + 0.05486278980970383, + -0.022338563576340675, + 0.027079442515969276, + 0.04474471136927605, + 0.04682106897234917, + 0.003745228750631213, + -0.009928349405527115, + 0.006187032908201218, + -0.019871771335601807, + -0.023350583389401436, + -0.02419464662671089, + -0.12577548623085022, + -0.07274497300386429, + -0.030505428090691566, + -0.04867997393012047, + -0.0064249238930642605, + -0.04646434634923935, + 0.05543012171983719, + 0.0359804704785347, + -0.06698761880397797, + -0.05434292182326317, + -0.07924596965312958, + -0.022761648520827293, + -0.093722403049469, + -0.0074570802971720695, + -0.047434527426958084, + -0.013084202073514462, + -0.029634252190589905, + 0.06519699841737747, + 0.0732322558760643, + -0.057572174817323685, + -0.06381296366453171, + 0.030792685225605965, + 0.04578157886862755, + 0.07974188774824142, + 0.012400437146425247, + 0.05257370322942734, + 0.022044584155082703, + -0.08826274424791336, + -0.02170645073056221, + 0.04505983367562294, + -0.026875898241996765, + -0.030812786892056465, + 0.04573635011911392, + -0.028429711237549782, + -0.013865724205970764, + -0.08197730779647827, + -0.004221019800752401, + -0.027944911271333694, + 0.03293438255786896, + 0.016160592436790466, + 0.1271170973777771, + 0.022969545796513557, + 0.08849627524614334, + -0.05547834932804108, + -0.0621233806014061, + -0.02090056613087654, + -0.0848647877573967, + 0.02343832701444626, + -0.010863126255571842, + -1.379077941934711e-33, + 0.07582395523786545, + -0.04962502047419548, + -0.021462079137563705, + 0.05263805016875267, + 0.05375201627612114, + -0.05231265723705292, + -0.10062841325998306, + 0.021963832899928093, + -0.07844451069831848, + 0.035146135836839676, + 0.09489669650793076, + 0.033279500901699066, + 0.00804702565073967, + 0.10030316561460495, + 0.021634243428707123, + 0.0011877362849190831, + -0.01281265914440155, + 0.0210564024746418, + 0.011425003409385681, + 0.005696828942745924, + -0.07560253888368607, + 0.02797825261950493, + 0.033734578639268875, + 0.03163541108369827, + 0.07271518558263779, + 0.023877672851085663, + 0.01963522844016552, + -0.05144988372921944, + -0.029769644141197205, + -0.012043144553899765, + -0.012188133783638477, + -0.03071460872888565, + 0.04850978031754494, + -0.0074927425011992455, + -0.009637444280087948, + 0.08829934895038605, + -0.09249421209096909, + 0.024527398869395256, + 0.06649712473154068, + -0.10821051895618439, + -0.06573515385389328, + -0.0686243399977684, + -0.0857943519949913, + -0.08378824591636658, + -0.009832165203988552, + 0.12206893414258957, + -0.047972142696380615, + -0.014602167531847954, + 0.08550294488668442, + 0.021606985479593277, + -0.02225431054830551, + 0.006559625267982483, + -0.03763505071401596, + 0.048959191888570786, + -0.005357502959668636, + -0.024088451638817787, + -0.005415499676018953, + 0.10815957933664322, + 0.0077932970598340034, + 0.04798806831240654, + 0.06011136621236801, + 0.015350746922194958, + 0.03342192620038986, + -0.07741822302341461, + -0.039382725954055786, + 0.07970236986875534, + 0.010980919003486633, + -0.008193064481019974, + 0.10858121514320374, + 0.015595453791320324, + -0.09215998649597168, + 0.023612122982740402, + 0.03240488842129707, + 0.08309098333120346, + -0.048838403075933456, + -0.006234519183635712, + 0.006763059180229902, + -0.0908161997795105, + 0.0354781448841095, + -0.03226952627301216, + -0.08659788966178894, + 0.010502226650714874, + -0.0014160462887957692, + 0.11213627457618713, + -0.0114956796169281, + 0.04475611448287964, + -0.013715154491364956, + -0.11329538375139236, + 0.013408214785158634, + -0.04319741576910019, + -0.1142311617732048, + 0.0638323575258255, + -0.027596620842814445, + -0.042128756642341614, + -0.10977447777986526, + -1.4672723443410302e-33, + 0.04371824488043785, + 0.04281480237841606, + -0.06655757874250412, + -0.02487732656300068, + -0.0035986697766929865, + 0.09110695123672485, + 0.015776116400957108, + 0.07254143804311752, + 0.029783545061945915, + 0.022175036370754242, + 0.010988912545144558, + -0.0186416395008564, + -0.08253331482410431, + -0.047429390251636505, + -0.039303578436374664, + 0.024553027004003525, + -0.05497142672538757, + 0.04283860698342323, + 0.017682747915387154, + -0.026917409151792526, + -0.10591629147529602, + -0.019399693235754967, + 0.03546380624175072, + 0.05113222077488899, + -0.012300369329750538, + -0.0006420032004825771, + -0.00589054636657238, + -0.009656577371060848, + -0.014187172055244446, + -0.06639070808887482, + 0.08597589284181595, + -0.025997312739491463, + -0.036371149122714996, + -0.08143378049135208, + -0.021019622683525085, + 0.0002107385080307722, + 0.08428012579679489, + 0.04962299391627312, + -0.0009960233001038432, + 0.07751928269863129, + -0.005480319261550903, + 0.02997579798102379, + 0.023280266672372818, + 0.0267251655459404, + -0.004538107663393021, + -0.016759151592850685, + 0.005632996559143066, + 0.05677817016839981, + -0.04223395138978958, + 0.039740197360515594, + 0.0808212012052536, + -0.07492613047361374, + -0.008006367832422256, + -0.017257925122976303, + -0.05866628140211105, + -0.005640658549964428, + 0.01367934886366129, + -0.028896773234009743, + 0.009958076290786266, + 0.01129397563636303, + -0.01197416428476572, + 0.030350200831890106, + -0.06681816279888153, + -0.04768478125333786, + 0.003639649134129286, + 0.009270885027945042, + 0.06865998357534409, + -0.0544462613761425, + -0.02648678980767727, + 0.039058785885572433, + 0.010493900626897812, + 0.022283386439085007, + -0.01831200160086155, + 0.03554275259375572, + -0.010764115490019321, + -0.04569436237215996, + -0.015450065024197102, + -0.04873708263039589, + -0.024803344160318375, + -0.030095532536506653, + 0.017305564135313034, + 0.003927154000848532, + 0.05554869771003723, + -0.0012106369249522686, + 0.024554340168833733, + 0.032287418842315674, + 0.012001627124845982, + 0.05750330165028572, + -0.006484070792794228, + 0.012227297760546207, + -0.027714543044567108, + 0.0536508671939373, + 0.0023235317785292864, + 0.04105650261044502, + -0.0647968277335167, + -1.9194553502188683e-08, + -0.05615173652768135, + -0.0547243170440197, + -0.08512964844703674, + -0.08100307732820511, + 0.01007538940757513, + -0.031117038801312447, + -0.026863843202590942, + -0.07202892005443573, + -0.00012756697833538055, + -0.026961905881762505, + 0.06762746721506119, + -0.03969710320234299, + -0.056243158876895905, + -0.022529466077685356, + -0.03917308151721954, + 0.042441967874765396, + -0.03101697564125061, + 0.08112917840480804, + -0.018049750477075577, + -0.044935084879398346, + -0.005192479584366083, + 0.0915595069527626, + -0.023599278181791306, + -0.04629112780094147, + 0.0702642947435379, + 0.05781940370798111, + 0.013832470402121544, + 0.07163125276565552, + 0.03685334324836731, + 0.0860358327627182, + 0.06254467368125916, + 0.047772038727998734, + 0.045906923711299896, + -0.007111302576959133, + 0.009382559917867184, + -0.021100133657455444, + -0.014454558491706848, + -0.019820349290966988, + -0.08456217497587204, + 0.08530381321907043, + -0.02996453270316124, + 0.04741572216153145, + -0.0560702383518219, + 0.011307776905596256, + -0.002062523737549782, + -0.07902213931083679, + 0.0425327867269516, + -0.0037173056043684483, + -0.07182298600673676, + -0.06948444992303848, + -0.04673096165060997, + 0.0020310753025114536, + 0.03774821013212204, + 0.017242146655917168, + -0.044251251965761185, + 0.020243916660547256, + 0.039430830627679825, + 0.12435263395309448, + 0.018625902011990547, + -0.020935410633683205, + 0.024715086445212364, + 0.003882310353219509, + 0.07306262850761414, + 0.02787661924958229 + ], + "music-notes-simple-bold||songs,audio,playlist,albums": [ + -0.00033179912134073675, + -0.023441515862941742, + -0.040073346346616745, + 0.0023499606177210808, + 0.03821510821580887, + 0.07236131280660629, + 0.07868349552154541, + -0.014181859791278839, + -0.003295520320534706, + 0.014589721336960793, + 0.0073994421400129795, + 0.030336523428559303, + 0.020241601392626762, + -0.0562407560646534, + -0.018925070762634277, + 0.03251411020755768, + 0.006746599916368723, + 0.03897523507475853, + 0.014890726655721664, + 0.012811807915568352, + -0.037054531276226044, + 0.03567735478281975, + -0.021152019500732422, + 0.04178834706544876, + 0.0030771412421017885, + 0.07700002938508987, + -0.008445595391094685, + 0.04541856050491333, + 0.0038255080580711365, + -0.05901508405804634, + 0.0074791498482227325, + 0.015848027542233467, + 0.16282133758068085, + 0.008585081435739994, + 0.034816302359104156, + -0.03441742807626724, + -0.05753503367304802, + -0.016481203958392143, + -0.06494630128145218, + 0.038420602679252625, + 0.02509579434990883, + -0.008596171624958515, + -0.03206547349691391, + -0.005619398318231106, + -0.09704761952161789, + -0.059322647750377655, + -0.11762183904647827, + -0.05042034760117531, + -0.020786918699741364, + 0.037640754133462906, + -0.005361933261156082, + -0.03865491971373558, + -0.14059630036354065, + 0.007704407908022404, + -0.012816129252314568, + -0.02059723623096943, + -0.05453930050134659, + 0.06597832590341568, + 0.03371528536081314, + 0.02780749648809433, + 0.09069562703371048, + -0.06988045573234558, + 0.05116358399391174, + -0.0032700616866350174, + 0.01517140306532383, + -0.020093537867069244, + 0.007922114804387093, + 0.0345672070980072, + -0.026343924924731255, + 0.008602920919656754, + 0.027271417900919914, + 0.042985837906599045, + -0.030646730214357376, + -0.0025638516526669264, + -0.010250488296151161, + -0.03538316488265991, + -0.026710035279393196, + -0.02018524706363678, + -0.14404189586639404, + -0.07612874358892441, + -0.04032709449529648, + -0.08500851690769196, + -0.027176417410373688, + -0.06312468647956848, + 0.044733013957738876, + 0.012656175531446934, + -0.08903592824935913, + -0.021875210106372833, + -0.0737263485789299, + -0.019246475771069527, + -0.08697741478681564, + 0.009289577603340149, + -0.024272223934531212, + -0.00018637414905242622, + -0.012184370309114456, + 0.06815360486507416, + 0.09423170238733292, + -0.06200995668768883, + -0.06604641675949097, + 0.06302178651094437, + 0.061313096433877945, + 0.09435367584228516, + 0.04522198438644409, + 0.042631443589925766, + -0.015600517392158508, + -0.07133590430021286, + -0.032080549746751785, + 0.02104831114411354, + -0.004682153929024935, + -0.04357535392045975, + 0.014727005735039711, + -0.04071717709302902, + -0.03214002773165703, + -0.061680298298597336, + 0.000256772298598662, + -0.06865586340427399, + 0.00800500437617302, + 0.004315277561545372, + 0.10576576739549637, + 0.07054321467876434, + 0.05676795169711113, + -0.05294455587863922, + -0.09072833508253098, + -0.003087398363277316, + -0.06251228600740433, + 0.04526565223932266, + 0.017249593511223793, + -1.8501221300317142e-33, + 0.08518579602241516, + -0.03283398225903511, + -0.008712985552847385, + 0.06612572818994522, + 0.04998541995882988, + -0.0745808407664299, + -0.07569638639688492, + 0.0059006125666201115, + -0.04802868142724037, + 0.05128934234380722, + 0.11398159712553024, + 0.025296790525317192, + 0.026563210412859917, + 0.08706534653902054, + 0.028573879972100258, + 0.0023978371173143387, + -0.026403019204735756, + 0.022171705961227417, + -0.005273589864373207, + -0.003641893155872822, + -0.07766350358724594, + 0.05823466181755066, + 0.047914206981658936, + -0.00650170911103487, + 0.04618662968277931, + -0.010957183316349983, + 0.009541756473481655, + -0.06651885062456131, + -0.02306058444082737, + -0.013378569856286049, + -0.022723088040947914, + -0.008902845904231071, + 0.09308953583240509, + -0.023334873840212822, + -0.027037430554628372, + 0.07596851885318756, + -0.08491596579551697, + 0.028453627601265907, + 0.03917509317398071, + -0.11649036407470703, + -0.0644393265247345, + -0.03488945960998535, + -0.03824574127793312, + -0.06272286176681519, + -0.0028779515996575356, + 0.14595137536525726, + -0.06201969087123871, + 0.00045960908755660057, + 0.09860263019800186, + 0.03725819289684296, + -0.01677877828478813, + 0.012188483029603958, + -0.04687022045254707, + 0.05052822828292847, + 0.04615689441561699, + -0.024410348385572433, + 0.009059330448508263, + 0.111704021692276, + 0.001375099876895547, + 0.04006488621234894, + 0.052140142768621445, + 0.03194674849510193, + 0.016020961105823517, + -0.08256611227989197, + -0.050077393651008606, + 0.09887085109949112, + -0.0007829535170458257, + -0.015043862164020538, + 0.08747097849845886, + 0.024891087785363197, + -0.0871300995349884, + 0.020459698513150215, + 0.041468217968940735, + 0.03129304200410843, + -0.037786222994327545, + 0.02136043831706047, + 0.03797787055373192, + -0.10646555572748184, + 0.02590877003967762, + -0.050028372555971146, + -0.08516835421323776, + 0.032544299960136414, + -0.015836751088500023, + 0.12668074667453766, + -0.05819813907146454, + 0.029289906844496727, + 0.005723105277866125, + -0.11995532363653183, + -0.013459278270602226, + -0.005177672021090984, + -0.1152844950556755, + 0.07239373028278351, + -0.0303545780479908, + -0.06213486194610596, + -0.10826477408409119, + -1.3331747956996045e-33, + 0.07267062366008759, + 0.04061298072338104, + -0.0517328605055809, + -0.01775110699236393, + 0.011404018849134445, + 0.0985262393951416, + -0.0025514920707792044, + 0.09801504760980606, + 0.03137332946062088, + 0.046624790877103806, + 0.001029902952723205, + -0.03401239216327667, + -0.07978679239749908, + -0.05812818929553032, + -0.039075691252946854, + 0.018190693110227585, + -0.015253232792019844, + 0.04269125685095787, + 0.022447938099503517, + -0.017721636220812798, + -0.09441564232110977, + 0.006858115550130606, + -0.007368654478341341, + 0.0430234856903553, + -0.024474656209349632, + 0.0024813234340399504, + -0.004296233877539635, + -0.02224651351571083, + -0.01737162470817566, + -0.05452011153101921, + 0.05875936895608902, + -0.05973095819354057, + -0.016953079029917717, + -0.08062505722045898, + -0.01875971257686615, + 0.024918384850025177, + 0.053151946514844894, + 0.020978817716240883, + -0.0173379797488451, + 0.05506637319922447, + -0.03290778771042824, + 0.07646016776561737, + 0.009836283512413502, + -0.000726227299310267, + -0.009145635180175304, + -0.023061156272888184, + -0.011841639876365662, + 0.05639195442199707, + -0.04253220930695534, + 0.049456365406513214, + 0.06461596488952637, + -0.07817153632640839, + 0.02482202649116516, + -0.012570654973387718, + -0.06804514676332474, + 0.0021382677368819714, + -0.000451419415185228, + -0.039943356066942215, + 0.008162744343280792, + 0.05097446218132973, + -0.009679506532847881, + 0.05213766172528267, + -0.08867332339286804, + -0.02691788040101528, + -0.009536681696772575, + -0.0038017642218619585, + 0.06527476012706757, + -0.04634195193648338, + -0.004909106530249119, + 0.05009415000677109, + -0.020425816997885704, + 0.019816458225250244, + -0.009270875714719296, + 0.021170133724808693, + 0.019101176410913467, + -0.040095336735248566, + -0.02516082674264908, + -0.05001446604728699, + -0.055940937250852585, + -0.03097703494131565, + 0.029925089329481125, + 0.004861509893089533, + 0.02375992387533188, + -0.005092236213386059, + 0.03263019770383835, + 0.03608780726790428, + 0.02808143012225628, + -0.00725977448746562, + -0.009372393600642681, + 0.013530248776078224, + -0.017180131748318672, + 0.021740276366472244, + 0.03592091426253319, + 0.06092846393585205, + -0.026550015434622765, + -1.9490585145831574e-08, + -0.06436960399150848, + -0.034597836434841156, + -0.07778754085302353, + -0.07459583878517151, + 0.010772984474897385, + -0.034262269735336304, + -0.0014351843856275082, + -0.08143612742424011, + -0.005500324070453644, + 0.007101539522409439, + 0.06588172167539597, + -0.06027159094810486, + -0.07546517997980118, + -0.0030581592582166195, + -0.04422842711210251, + 0.05945403128862381, + -0.06072913110256195, + 0.07752197235822678, + -0.014628230594098568, + -0.039775241166353226, + -0.01798245497047901, + 0.06593161076307297, + 0.005123097915202379, + -0.07261814177036285, + 0.07163116335868835, + 0.05338399484753609, + 0.002988001797348261, + 0.08438080549240112, + 0.04975074529647827, + 0.09102089703083038, + 0.03161601349711418, + 0.054022010415792465, + 0.059284795075654984, + -0.008855985477566719, + -0.013915816321969032, + -0.03769969567656517, + -0.015107417479157448, + -0.03750951215624809, + -0.08460962772369385, + 0.07578490674495697, + -0.01656448096036911, + 0.06400598585605621, + -0.07696577161550522, + 0.0018848449690267444, + -0.02911967597901821, + -0.07849036902189255, + 0.05886423960328102, + 0.002469076309353113, + -0.07782558351755142, + -0.059621140360832214, + -0.07575040310621262, + 0.0032683927565813065, + 0.008766495622694492, + 0.02084994874894619, + -0.021378949284553528, + 0.024301720783114433, + 0.029614470899105072, + 0.13256511092185974, + -0.01895313709974289, + -0.03701784089207649, + 0.056372322142124176, + 0.06613282859325409, + 0.04918753728270531, + 0.04169712960720062 + ], + "navigation-arrow-bold||location,directions,compass,gps": [ + 0.05408864840865135, + -0.07066629827022552, + -0.04650328680872917, + 0.008479127660393715, + 0.011008753441274166, + -0.06559741497039795, + 0.04606594890356064, + -0.08293009549379349, + -0.040327589958906174, + -0.01467982493340969, + 0.015429148450493813, + 0.07726909220218658, + 0.0686219185590744, + -0.032771505415439606, + -0.023978998884558678, + 0.06628827750682831, + -0.019636215642094612, + 0.04002592712640762, + 0.031039686873555183, + -0.0037270316388458014, + -0.00977273378521204, + 0.05398554354906082, + 0.01096424087882042, + 0.07752788811922073, + -0.025873800739645958, + 0.016926299780607224, + 0.09389544278383255, + -0.005306696984916925, + -0.013207798823714256, + -0.04895682632923126, + -0.05593201518058777, + 0.0034515075385570526, + 0.02191559411585331, + 0.031242553144693375, + -0.07651793956756592, + -0.0006348413298837841, + 0.0014633715618401766, + -0.013021247461438179, + -0.024828456342220306, + 0.04273366183042526, + 0.023290233686566353, + -0.014049889519810677, + 0.006356354802846909, + 0.032028619199991226, + -0.008513622917234898, + 0.030644403770565987, + -0.029816338792443275, + -0.013088888488709927, + 0.07988730072975159, + 0.056466035544872284, + -0.08747942000627518, + -0.07333290576934814, + -0.12850460410118103, + -0.06794423609972, + 0.04954226687550545, + 0.10729116201400757, + -0.09333061426877975, + -0.03225522115826607, + 0.06718848645687103, + -0.011939709074795246, + 0.08124503493309021, + 0.016011759638786316, + 0.013330823741853237, + 0.05775904282927513, + 0.0630282536149025, + 0.032486848533153534, + -0.0651559829711914, + 0.03442268446087837, + -0.02387203462421894, + 0.028519507497549057, + 0.05700881406664848, + -0.06779772788286209, + -0.0012872989755123854, + -0.03043235093355179, + 0.02551053650677204, + -0.016249751672148705, + 0.041766658425331116, + 0.017830898985266685, + -0.04021625965833664, + -0.06849506497383118, + -0.08242245763540268, + -0.02423156052827835, + -0.05673111975193024, + 0.0506591759622097, + 0.08017270267009735, + 0.05585223436355591, + -0.0472467802464962, + -0.07248622179031372, + 0.030767526477575302, + -0.058268025517463684, + 0.0008840488153509796, + -0.05166478082537651, + -0.024808943271636963, + -0.015938526019454002, + 0.011407529935240746, + 0.003805382177233696, + 0.029841696843504906, + -0.03749430924654007, + -0.07677200436592102, + 0.035552192479372025, + 0.055636972188949585, + 0.04260731488466263, + 0.020865434780716896, + 0.013743978925049305, + -0.03736933693289757, + -0.002062686486169696, + 0.06970509886741638, + 0.04041513428092003, + -0.007753696758300066, + 0.03547423332929611, + -0.024772942066192627, + -0.08328188210725784, + -0.010170725174248219, + -0.08452074229717255, + -0.10599119961261749, + 0.0033628595992922783, + -0.10379566252231598, + -0.0013743299059569836, + 0.10895343869924545, + 0.0774950310587883, + -0.01647496595978737, + -0.053161535412073135, + -0.0008160591241903603, + -0.025615466758608818, + -0.01825825870037079, + 0.023343956097960472, + 0.030318697914481163, + -3.7179718168997824e-33, + 0.015143199823796749, + 0.053987469524145126, + 0.02339542657136917, + 0.06555936485528946, + 0.0037883238401263952, + 0.03891563042998314, + -0.0658903568983078, + -0.04581417143344879, + -0.05802415311336517, + 0.08936409652233124, + 0.09020309895277023, + 0.09148404747247696, + -0.060755569487810135, + 0.08281674236059189, + 0.05844569951295853, + -0.05688900500535965, + 0.035569168627262115, + -0.04073207080364227, + -0.14371147751808167, + -0.025332091376185417, + -0.005514313466846943, + 0.051089122891426086, + -0.09173229336738586, + -0.050359759479761124, + 0.016764266416430473, + 0.050650548189878464, + 0.02379908412694931, + 0.04202219471335411, + -0.08965203166007996, + 0.04668622836470604, + 0.016128985211253166, + 0.03057067282497883, + -0.029987355694174767, + -0.03407098352909088, + -0.018281374126672745, + 0.03472988307476044, + -0.09003511071205139, + -0.00983106717467308, + 0.011459214612841606, + 0.015633895993232727, + -0.04781365767121315, + -0.05819326639175415, + -0.061680931597948074, + -0.0011402934323996305, + -0.007934413850307465, + 0.08265426009893417, + -0.01461154967546463, + -0.09508982300758362, + 0.029491659253835678, + 0.06906359642744064, + -0.042037755250930786, + -0.017298270016908646, + -0.03798190504312515, + -0.05052291229367256, + 0.01888623647391796, + -0.01768486201763153, + -0.05641733855009079, + 0.11726550757884979, + -0.011600655503571033, + -0.014641381800174713, + -0.02170398272573948, + -0.015597826801240444, + 0.09401141852140427, + -0.00829961895942688, + 0.014670426025986671, + 0.02639230154454708, + -0.08692445605993271, + 0.051110945641994476, + 0.09528341889381409, + -0.027940532192587852, + 0.004656672477722168, + 0.0049188206903636456, + 0.0828457847237587, + 0.07034902274608612, + -0.018038030713796616, + 0.02639579400420189, + -0.04923056811094284, + -0.03506544232368469, + 0.06630639731884003, + -0.09676807373762131, + -0.155755415558815, + 0.013160721398890018, + -0.06585035473108292, + 0.11223145574331284, + 0.08364691585302353, + -0.00013723073061555624, + -0.027733376249670982, + -0.07165222615003586, + -0.015316481702029705, + 0.09028267860412598, + -0.11668270826339722, + 0.026092572137713432, + -0.05173126608133316, + -0.04191415011882782, + -0.09091345220804214, + 1.7694800262818138e-34, + 0.002491111634299159, + 0.05583817511796951, + -0.004067943897098303, + -0.03279762342572212, + -0.13015958666801453, + -0.04012436047196388, + 0.06319409608840942, + 0.027727393433451653, + 0.016131361946463585, + 0.06292146444320679, + -0.02689765766263008, + 0.010683725588023663, + 0.0020308559760451317, + -0.021783318370580673, + -0.015460886992514133, + 0.033857520669698715, + 0.1037926971912384, + 0.07257301360368729, + -0.03762399032711983, + 0.0007076920592226088, + -0.05303367227315903, + -0.038651105016469955, + -0.03830215334892273, + 0.029994096606969833, + 0.0096910884603858, + 0.04259379953145981, + 0.1390429586172104, + 0.026499968022108078, + -0.04715314507484436, + -0.04213439300656319, + -0.007972908206284046, + 0.0012623592047020793, + 0.06442573666572571, + 0.029143787920475006, + -0.07118121534585953, + 0.003935953136533499, + 0.01570337638258934, + -0.046173375099897385, + -0.014483872801065445, + -0.022319186478853226, + -0.0051520573906600475, + 0.02649887092411518, + 0.10690660774707794, + -0.02156386338174343, + -0.005065626930445433, + 0.061633676290512085, + 0.04466523975133896, + 0.0052510155364871025, + -0.03573951870203018, + 0.006979936733841896, + 0.05469717085361481, + -0.033165931701660156, + -0.024377716705203056, + 0.011214261874556541, + -0.05202484875917435, + 0.008741025812923908, + 0.01904984749853611, + 0.04376315325498581, + 0.02987447753548622, + -7.586200081277639e-05, + 0.001517913886345923, + 0.018583625555038452, + -0.01574920490384102, + 0.019926859065890312, + 0.024445779621601105, + -0.030357463285326958, + 0.04485941678285599, + -0.028178375214338303, + 0.017197776585817337, + 0.018538054078817368, + 0.07040915638208389, + 0.011014162562787533, + 0.0020741750486195087, + 0.011054256930947304, + 0.006584720686078072, + -0.03575944900512695, + 0.06561107188463211, + 0.05568551644682884, + -0.011141249909996986, + -0.04317106306552887, + 0.0042737992480397224, + -0.05971662327647209, + -0.04115360230207443, + 0.050085533410310745, + -0.036791443824768066, + 0.04857311397790909, + -0.039113666862249374, + -0.009477981366217136, + 0.018567800521850586, + 0.02117929607629776, + -0.02626221999526024, + 0.031553059816360474, + -0.08568351715803146, + -0.045352403074502945, + -0.11763907223939896, + -1.7135665331124983e-08, + -0.04283016175031662, + 0.04640646651387215, + -0.01660965010523796, + -0.012755164876580238, + -0.013245618902146816, + -0.005333463195711374, + 0.004788459278643131, + -0.0003272175381425768, + -0.06526044011116028, + -0.008012394420802593, + 0.044464096426963806, + 0.06682781875133514, + -0.0961649939417839, + -0.012663029134273529, + 0.08778791129589081, + 0.03906719386577606, + -0.059813402593135834, + 0.030053701251745224, + -0.03546314686536789, + -0.01153597142547369, + -0.011206443421542645, + 0.05212732404470444, + 0.061352431774139404, + 0.0466630794107914, + 0.01813727617263794, + 0.00850872602313757, + -0.03909318149089813, + 0.04752763360738754, + 0.07141198217868805, + -0.0016746025066822767, + 0.04664964973926544, + 0.01990337483584881, + 0.013339643366634846, + 0.00024655504967086017, + -0.10699082911014557, + -0.06849844008684158, + -0.057141706347465515, + 0.029161643236875534, + 0.04672957584261894, + 0.03901398554444313, + -0.04462672397494316, + -0.011521817184984684, + -0.007910219021141529, + -0.005530056543648243, + -0.08624672889709473, + 0.036151062697172165, + 0.0956893116235733, + -0.02466345764696598, + -0.10513527691364288, + -0.11242744326591492, + -0.07000994682312012, + -0.006899787578731775, + 0.008602136746048927, + 0.07405349612236023, + -0.0021374658681452274, + -0.003413253463804722, + 0.03528285399079323, + -0.04662270098924637, + -0.04195159301161766, + 0.00505243381485343, + 0.0796196460723877, + 0.050570305436849594, + -0.06395804136991501, + -0.02971537783741951 + ], + "needle-bold||sewing,thread,awl,tailor": [ + -0.057662226259708405, + 0.028956718742847443, + -0.02484506368637085, + -0.010742004960775375, + -0.0544409416615963, + -0.03741349279880524, + 0.09332147240638733, + -0.04193181172013283, + -0.04093106463551521, + 0.029012145474553108, + -0.014159857295453548, + -0.015525616705417633, + 0.018897710368037224, + -0.05392010882496834, + -0.046458691358566284, + 0.058086760342121124, + -0.03541582077741623, + -0.0096722561866045, + -0.04765604808926582, + 0.026419173926115036, + -0.045908525586128235, + 0.02993656136095524, + 0.018461432307958603, + 0.06960306316614151, + 0.04461941495537758, + -0.044261384755373, + -0.009667787700891495, + 0.042920611798763275, + 0.042355749756097794, + -0.049032263457775116, + -0.04443622753024101, + -0.06346864253282547, + -0.02932303212583065, + 0.04275721684098244, + 0.06852496415376663, + 0.04832609370350838, + -0.034002769738435745, + -0.05080469697713852, + 0.0009822796564549208, + 0.07572508603334427, + 0.06315682083368301, + -0.05754736065864563, + -0.09271373599767685, + 0.01743444986641407, + -0.048171382397413254, + 0.01789240911602974, + -0.028232289478182793, + 0.011192231439054012, + -0.00026714467094279826, + 0.051499105989933014, + -0.1162930428981781, + -0.08900205790996552, + -0.06600351631641388, + -0.0036479432601481676, + 0.019688503816723824, + -0.005479936487972736, + -0.02843443490564823, + -0.03385848179459572, + -0.024516604840755463, + -0.020652538165450096, + 0.016462303698062897, + -0.002714709145948291, + -0.030622782185673714, + 0.08843706548213959, + 0.056742750108242035, + -0.0033866094890981913, + 0.03248937427997589, + 0.006800195202231407, + -0.002828033175319433, + -0.02119998261332512, + -0.04477643594145775, + -0.005476849619299173, + -0.057665057480335236, + 0.09565220028162003, + -0.004129812121391296, + -0.010463318787515163, + 0.05916079506278038, + -0.03239487484097481, + -0.008451925590634346, + 0.06013799458742142, + -0.14494697749614716, + 0.010559679940342903, + 0.004427613224834204, + 0.032844945788383484, + -0.03266637772321701, + 0.06383281201124191, + -0.045651208609342575, + -0.061158400028944016, + -0.017546258866786957, + -0.05499189719557762, + -0.02736470103263855, + 0.011617731302976608, + -0.05770661309361458, + 0.020451782271265984, + 0.02690901607275009, + 0.07087831944227219, + 0.05936634540557861, + 0.10282101482152939, + -0.03379122540354729, + 0.06648214906454086, + 0.030053958296775818, + 0.0032581298146396875, + -0.011911236681044102, + 0.015207640826702118, + -0.07811761647462845, + -0.05538579821586609, + -0.04459446296095848, + 0.011475645937025547, + -0.03228907659649849, + -0.07577298581600189, + 0.007899211719632149, + -0.0010377641301602125, + 0.0444534569978714, + -0.07077810168266296, + -0.04657439514994621, + -0.02805675007402897, + -0.006961183622479439, + 0.028097834438085556, + 0.06565290689468384, + 0.09142625331878662, + 0.032210927456617355, + -0.03673967719078064, + -0.09122160077095032, + -0.08182698488235474, + -0.04225214570760727, + -0.015869982540607452, + 0.024703416973352432, + -2.361602129935554e-33, + 0.08278266340494156, + 0.0656292587518692, + 0.0774586871266365, + 0.014562578871846199, + 0.0005635444540530443, + 0.061855752021074295, + -0.053322747349739075, + 0.0236675925552845, + -0.04281175881624222, + 0.06813471764326096, + 0.03934277594089508, + 0.031145624816417694, + -0.04596106708049774, + 0.07876452803611755, + 0.036921486258506775, + -0.04912347346544266, + 0.006269068922847509, + -0.02999083139002323, + -0.02734857238829136, + 0.019953567534685135, + -0.05377295985817909, + -0.00712348660454154, + -0.01367500051856041, + 0.050058331340551376, + -0.03611691668629646, + 0.0012426009634509683, + 0.012024927884340286, + 0.03407597914338112, + -0.03853119909763336, + 0.04389209672808647, + 0.050140347331762314, + -0.03615202382206917, + 0.03045555390417576, + -0.029948970302939415, + -0.04490106925368309, + -0.036874882876873016, + -0.05619296804070473, + 0.004994918126612902, + 0.0028947223909199238, + 0.05795785412192345, + 0.07642504572868347, + 0.02723660320043564, + 0.05252643674612045, + 0.02224213257431984, + 0.0190805085003376, + 0.04440774396061897, + -0.04652033746242523, + 0.02617265284061432, + 0.002055832650512457, + -0.0034034475684165955, + 0.08425165712833405, + 0.03313751891255379, + 0.0740947425365448, + 0.0030313024763017893, + 0.03325984254479408, + 0.004965067841112614, + -0.01224506925791502, + 0.005937982350587845, + -0.0670505091547966, + 0.0635262280702591, + -0.00027561766910366714, + -0.008626779541373253, + 0.077705979347229, + 0.08193099498748779, + 0.017630480229854584, + 0.023712165653705597, + 0.04552504047751427, + -0.035491496324539185, + 0.07649415731430054, + 0.0046886783093214035, + -0.08899524807929993, + 0.09524877369403839, + 0.032084714621305466, + 0.017737049609422684, + -0.04081306234002113, + 0.031076716259121895, + -0.028442341834306717, + -0.006521712057292461, + 0.0804222971200943, + -0.11452256888151169, + -0.09032680094242096, + 0.04372961446642876, + -0.08441022038459778, + 0.011204566806554794, + -0.04573193937540054, + -0.058612287044525146, + -0.010169095359742641, + -0.0830671414732933, + -0.045029982924461365, + -0.023371649906039238, + -0.015973234549164772, + 0.020432446151971817, + -0.023496834561228752, + -0.11532948166131973, + -0.059724919497966766, + 3.855635246021527e-34, + 0.08585111796855927, + 0.009630771353840828, + -0.019120853394269943, + 0.03272993117570877, + 0.02819913998246193, + 0.002785791177302599, + 0.050491802394390106, + -0.010823236778378487, + 0.004501312971115112, + 0.12750455737113953, + 0.07498174905776978, + -0.05041593685746193, + -0.03845527768135071, + 0.017738426104187965, + -0.01681346260011196, + 0.026787759736180305, + -0.022754203528165817, + 0.027057532221078873, + -0.011922995559871197, + 0.039079103618860245, + 0.014272569678723812, + 0.020317336544394493, + 0.06359271705150604, + 0.01181227620691061, + 0.03368908166885376, + -0.02270326390862465, + -0.0447918139398098, + -0.02697169780731201, + -0.08511412888765335, + -0.007562071084976196, + -0.06374592334032059, + -0.0553949773311615, + 0.05558614432811737, + 0.06516268104314804, + -0.10227113962173462, + 0.015115583315491676, + 0.024589022621512413, + -0.020651955157518387, + 0.09848278760910034, + -0.04255533963441849, + 0.04401268810033798, + 0.01150176115334034, + 0.010977919213473797, + 0.04290369525551796, + -0.06930836290121078, + -0.0566553920507431, + -0.10598039627075195, + -0.049230147153139114, + -0.023957157507538795, + 0.06968764960765839, + -0.05884081497788429, + 0.0713847279548645, + 0.05091365426778793, + -0.001905370270833373, + -0.0593624971807003, + -0.02824999764561653, + -0.0790514349937439, + -0.0396718829870224, + -0.004778355360031128, + 0.10762312263250351, + -0.03717047721147537, + 0.028726808726787567, + 0.02935103140771389, + 0.013875019736588001, + 0.10605757683515549, + -0.04948249086737633, + 0.0288130771368742, + -0.07757382839918137, + -0.016587547957897186, + -0.00023762340424582362, + 0.09747199714183807, + -0.03424325957894325, + 0.03716440126299858, + 0.005894824396818876, + -0.01940109021961689, + -0.05884498357772827, + 0.03799140080809593, + 0.027457645162940025, + -0.021102167665958405, + 0.09970100224018097, + -0.008746476843953133, + -0.047696586698293686, + -0.0431571863591671, + 0.1502191722393036, + -0.019680390134453773, + 0.03705335780978203, + 0.05404692888259888, + 0.05626104772090912, + -0.03919818997383118, + 0.03522312641143799, + -0.0038069249130785465, + 0.024142427369952202, + 0.004353482276201248, + -0.013471131213009357, + 0.016656288877129555, + -1.6150760728805835e-08, + 0.00900468323379755, + -0.018221387639641762, + -0.06591066718101501, + -0.022821325808763504, + 0.07643800973892212, + 0.012094561941921711, + -0.10963401198387146, + -0.04785739257931709, + -0.062030427157878876, + 0.029612857848405838, + 0.11525191366672516, + 0.0025289759505540133, + -0.05459700524806976, + -0.0032825174275785685, + 0.059414252638816833, + -0.0465579591691494, + -0.06025506928563118, + 0.03545738756656647, + -0.06417882442474365, + -0.07801106572151184, + -0.025776393711566925, + 0.07886319607496262, + 0.012050420977175236, + 0.032165367156267166, + 0.003793418640270829, + -0.02638355642557144, + -0.0836401954293251, + 0.021358145400881767, + 0.014040762558579445, + 0.09590473026037216, + 0.04907219856977463, + 0.03078814409673214, + 0.08449020981788635, + -0.027635028585791588, + -0.20616474747657776, + -0.031700730323791504, + -0.06350060552358627, + 0.03005370683968067, + 0.011738793924450874, + 0.11821238696575165, + 0.00016949715791270137, + -0.013666310347616673, + -0.004836682695895433, + -0.009895148687064648, + 0.006792241707444191, + -0.03512295335531235, + 0.054040245711803436, + -0.0059954519383609295, + -0.10184045881032944, + -0.017885880544781685, + 0.0012376515660434961, + -0.035695627331733704, + 0.06907597184181213, + 0.019291024655103683, + -0.07096338272094727, + -0.016430355608463287, + -0.012319876812398434, + 0.10431056469678879, + -0.04446285218000412, + 0.06015161797404289, + 0.08013587445020676, + -0.05353895574808121, + 0.013706419616937637, + -0.028751665726304054 + ], + "network-bold||*new*,internet,ethernet,lan": [ + 0.02721402235329151, + -0.033340971916913986, + -0.002277764957398176, + -0.012719742022454739, + -0.008205113932490349, + -0.017230752855539322, + 0.025258224457502365, + -0.06347878277301788, + -0.044073984026908875, + -0.024783771485090256, + 0.047541260719299316, + 0.060588300228118896, + -0.00218369928188622, + -0.07535979896783829, + 0.005668085999786854, + 0.019861487671732903, + 0.04378515109419823, + -0.10322806984186172, + 0.03638457506895065, + -0.006808104924857616, + 0.033281322568655014, + 0.0095667177811265, + -0.015388480387628078, + -0.04779177904129028, + 0.08072854578495026, + 0.003354750107973814, + 0.10268184542655945, + 0.0213389340788126, + -0.02222277596592903, + -0.07697311043739319, + -0.01138309296220541, + -0.004203498363494873, + 0.030113518238067627, + -0.0008208591607399285, + 0.015928160399198532, + -0.03813325986266136, + 0.015059588477015495, + 0.06554590910673141, + 0.01565665565431118, + -0.03845662623643875, + 0.07628001272678375, + -0.06962412595748901, + 0.04162050411105156, + 0.0476890504360199, + 0.004473579581826925, + -0.02112620510160923, + -0.02075413055717945, + -0.006842274218797684, + 0.049334701150655746, + -0.06672807037830353, + 0.017869140952825546, + -0.04416172578930855, + -0.07483886182308197, + 0.012294537387788296, + 0.12099563330411911, + 0.011027523316442966, + -0.06292829662561417, + 0.00998813845217228, + -0.02820936217904091, + -0.01081332378089428, + 0.03102046065032482, + 0.004445196595042944, + 0.054159026592969894, + 0.05495064705610275, + 0.018643075600266457, + 0.0400196798145771, + 0.01989845745265484, + 0.057961758226156235, + -0.057592570781707764, + 0.011684596538543701, + -0.022721536457538605, + 0.08040217310190201, + -0.04324634373188019, + 0.04828706011176109, + -0.009375766851007938, + 0.023435568436980247, + 0.08458680659532547, + 0.014277813024818897, + -0.025301774963736534, + -0.01581893302500248, + 0.014637026004493237, + 0.018415434285998344, + -0.021492360159754753, + -0.02619575336575508, + 0.03283224627375603, + 0.008428826928138733, + -0.09150201082229614, + -0.09155376255512238, + -0.048098888248205185, + -0.07425390928983688, + -0.046172283589839935, + -0.017308605834841728, + -0.027039717882871628, + 0.0820995345711708, + -0.05061454698443413, + 0.017280448228120804, + 0.00791708193719387, + -0.08268227428197861, + -0.07190216332674026, + 0.09622059017419815, + 0.016819259151816368, + 0.008757269941270351, + 0.0704631358385086, + -0.009039790369570255, + -0.0369628369808197, + 0.02083928883075714, + 0.017329564318060875, + 0.015488763339817524, + -0.003749324707314372, + 0.0052389116026461124, + -0.055552463978528976, + -0.08361807465553284, + -0.07546074688434601, + -0.04297991096973419, + -0.015550593845546246, + 0.004678958095610142, + -0.06300581991672516, + 0.02796674333512783, + 0.08456764370203018, + 0.038453809916973114, + -0.06025255471467972, + -0.019551213830709457, + 0.003976927604526281, + -0.03266329690814018, + 0.014642754569649696, + 0.02353154495358467, + 0.0236721970140934, + -2.0821463477848022e-33, + 0.038039736449718475, + 0.04896753281354904, + -0.10139862447977066, + 0.08498583734035492, + 0.056586895138025284, + 0.030039267614483833, + 0.03162412717938423, + -0.08256163448095322, + -0.053762659430503845, + -0.025868795812129974, + -0.008009349927306175, + 0.053828153759241104, + 0.03567797318100929, + 0.009123159572482109, + 0.05336039140820503, + -0.059833794832229614, + 0.06385210156440735, + -0.03004939667880535, + 0.07627075910568237, + -0.0017565949819982052, + -0.08495938777923584, + 0.006969478912651539, + 0.029505392536520958, + -0.06186622753739357, + -0.021144870668649673, + -0.06969408690929413, + 0.015441283583641052, + -0.054683513939380646, + -0.005881568416953087, + 0.010217932052910328, + -0.03163481131196022, + 0.0149126797914505, + 0.060040924698114395, + 0.011404628865420818, + -0.028943711891770363, + 0.06845515221357346, + -0.06142222881317139, + -0.03705967217683792, + 0.023395445197820663, + 0.060234542936086655, + -0.09734976291656494, + -0.027750808745622635, + -0.07299245893955231, + -0.05726269632577896, + 0.022112805396318436, + 0.07914651930332184, + -0.08280453085899353, + -0.014268122613430023, + -0.04238500818610191, + 0.1094384714961052, + -0.015716148540377617, + -0.023538151755928993, + 0.018273333087563515, + 0.018422583118081093, + 0.012216860428452492, + 0.02462487481534481, + -0.016015203669667244, + 0.07193980365991592, + 0.09444697201251984, + 0.01580158807337284, + -0.003323320532217622, + 0.04733540117740631, + 0.009784742258489132, + 0.03186127915978432, + -0.019731109961867332, + 0.1019427701830864, + 0.024757876992225647, + 0.03781018778681755, + 0.021727897226810455, + -0.03607640042901039, + -0.025829236954450607, + -0.023573603481054306, + -0.028113966807723045, + 0.08129621297121048, + 0.035316817462444305, + 0.044618602842092514, + -0.1490698605775833, + -0.04860371723771095, + 0.011464739218354225, + 0.012895270250737667, + -0.028829427435994148, + 0.08450735360383987, + -0.08480674028396606, + 0.09915103018283844, + 0.004737613257020712, + -0.02565031498670578, + -0.010279327630996704, + -0.05477628484368324, + 0.025175372138619423, + 0.1222822293639183, + -0.030083676800131798, + 0.05220935121178627, + -0.02240796759724617, + 0.01776358298957348, + -0.03235536441206932, + -7.883602555648409e-34, + -0.0002755477325990796, + 0.07088691741228104, + -0.08587568253278732, + -0.022759292274713516, + -0.10666833817958832, + -0.024309232831001282, + 0.10310811549425125, + 0.022987276315689087, + -0.017383664846420288, + 0.057525236159563065, + 0.12062446027994156, + -0.010143027640879154, + -0.016943708062171936, + -0.10219299793243408, + 0.06282510608434677, + -0.03434474766254425, + -0.06725725531578064, + 0.02151617966592312, + 0.03157520666718483, + 0.06330056488513947, + -0.016240952536463737, + -0.01112408097833395, + -0.1175641417503357, + -0.01581227220594883, + 0.018048981204628944, + 0.024300169199705124, + 0.04102664440870285, + 0.016964992508292198, + -0.0660211443901062, + -0.026017172262072563, + -0.09374665468931198, + 0.01152480486780405, + 0.048318054527044296, + 0.06761343777179718, + 0.03711545839905739, + 0.1722184419631958, + 0.05172203853726387, + -0.04137122258543968, + 0.05357087776064873, + -0.02790696546435356, + 0.026342736557126045, + 0.00853100698441267, + -0.06508589535951614, + 0.053907424211502075, + -0.02197454124689102, + -0.04851020500063896, + -0.06542346626520157, + -0.04762110859155655, + -0.11021438986063004, + 0.018462417647242546, + 0.08994954079389572, + -0.016086209565401077, + -0.002275013830512762, + -0.027668481692671776, + -0.014252172783017159, + 0.05133560672402382, + -0.0178921427577734, + 0.039047811180353165, + 0.02284321002662182, + 0.08033017069101334, + -0.004938422702252865, + -0.1244039386510849, + -0.12366858869791031, + 0.1151588186621666, + 0.0021561351604759693, + -0.05339336395263672, + 0.022559091448783875, + -0.0592639334499836, + -0.01035939808934927, + -0.0018685866380110383, + -0.008525123819708824, + 0.033585645258426666, + -0.024359984323382378, + 0.004754520487040281, + 0.024226665496826172, + -0.09345768392086029, + 0.06210733950138092, + 0.08455441147089005, + -0.0567970909178257, + 0.04278295859694481, + -0.049772851169109344, + 0.050660837441682816, + -0.059420373290777206, + -0.0077250343747437, + -0.04301447048783302, + -0.024350425228476524, + 0.004337527323514223, + 0.028589647263288498, + -0.0105520598590374, + -0.05699102208018303, + -0.06868988275527954, + -0.0004426163504831493, + -0.05887039750814438, + 0.050979457795619965, + -0.00653311051428318, + -2.0519767218729612e-08, + -0.06925829499959946, + 0.00823514349758625, + -0.03898337855935097, + 0.006643658969551325, + 0.05508728697896004, + -0.012280062772333622, + 0.006299841217696667, + -0.10314631462097168, + -0.023912794888019562, + -0.014032921753823757, + 0.010523130185902119, + 0.04257909953594208, + -0.11304987967014313, + 0.016898401081562042, + -0.004787843208760023, + 0.016854263842105865, + -0.032079536467790604, + -0.03816794976592064, + -0.027124783024191856, + -0.018581204116344452, + 0.008227693848311901, + -0.009163928218185902, + -0.014339837245643139, + 0.056681979447603226, + 0.057512179017066956, + -0.022433076053857803, + 0.01641809195280075, + -0.028334971517324448, + 0.007233093027025461, + 0.06856692582368851, + -0.021359430626034737, + -0.01574273593723774, + -0.005620800890028477, + 0.04712376371026039, + -0.10092654079198837, + 0.019648348912596703, + -0.043538276106119156, + 0.08674284815788269, + 0.023233972489833832, + 0.12762942910194397, + -0.11012087762355804, + -0.047165077179670334, + -0.005765031557530165, + -0.062285177409648895, + 0.00956709310412407, + -0.010934721678495407, + -0.09144604206085205, + 0.02252163179218769, + -0.015152563340961933, + -0.14311012625694275, + -0.011019782163202763, + 0.014540416188538074, + 0.030840685591101646, + 0.019179008901119232, + -0.012476225383579731, + -0.041918206959962845, + 0.028608208522200584, + 0.04398005083203316, + -0.0416225790977478, + 0.04465588554739952, + 0.0476776622235775, + 0.019603127613663673, + 0.02553972601890564, + -0.03153236210346222 + ], + "network-slash-bold||*new*,internet,ethernet,lan,error": [ + -0.010381704196333885, + -0.022835979238152504, + 0.030285239219665527, + -0.008774224668741226, + -0.030703913420438766, + -0.03520822525024414, + -0.014434016309678555, + -0.03372189775109291, + -0.037428099662065506, + 0.007999252527952194, + 0.09053941816091537, + 0.008747754618525505, + -0.008910490199923515, + 0.002272006357088685, + -0.028186440467834473, + 0.057723358273506165, + 0.03882661834359169, + -0.05933888629078865, + 0.011191857047379017, + 0.06740157306194305, + -0.011122854426503181, + 0.059966009110212326, + -0.027112452313303947, + -0.027585532516241074, + 0.09187424927949905, + -0.02809244953095913, + 0.06695389747619629, + 0.01501439604908228, + -0.03656212240457535, + -0.04670833796262741, + 0.014851393178105354, + -0.02895430475473404, + 0.019981099292635918, + -0.0011467467993497849, + 0.08814665675163269, + 0.045548778027296066, + 0.04214024543762207, + 0.02983112819492817, + 0.03743784874677658, + -0.059033166617155075, + 0.08519434928894043, + -0.0604909248650074, + 0.04909959062933922, + 0.02683783322572708, + -0.0009637056500650942, + -0.03625389561057091, + 0.021501682698726654, + -0.04118833690881729, + 0.05253255367279053, + -0.022783709689974785, + -0.0261283777654171, + 0.0028636609204113483, + -0.033871930092573166, + -0.04328353330492973, + 0.15415416657924652, + -0.0039168610237538815, + -0.07940061390399933, + 0.050070870667696, + 0.007306338753551245, + -0.01834043487906456, + 0.04575594887137413, + -0.012227687053382397, + 0.03878482058644295, + -0.001417596940882504, + -0.017744965851306915, + 0.004605107940733433, + -0.0003519401652738452, + 0.03246155381202698, + -0.09519264847040176, + 0.050330206751823425, + -0.042300399392843246, + 0.099811851978302, + -0.09357623755931854, + 0.05740566924214363, + -0.008921093307435513, + 0.038477782160043716, + 0.0694175437092781, + 0.010340822860598564, + -0.009110517799854279, + -0.03217184543609619, + 0.009404301643371582, + -0.013075320981442928, + -0.027554169297218323, + -0.0011148976627737284, + 0.0541539303958416, + 0.015263392589986324, + -0.10026726126670837, + -0.0905119851231575, + -0.026884162798523903, + -0.08148753643035889, + 0.005434767808765173, + -0.043149132281541824, + -0.00669425493106246, + 0.06454402208328247, + -0.017786432057619095, + -0.032292261719703674, + -0.0002959794655907899, + -0.02827683836221695, + -0.09427834302186966, + 0.07511782646179199, + 0.002214384265244007, + -0.0002984863822348416, + 0.003642582567408681, + -0.0032064910046756268, + -0.013494657352566719, + 0.04588615521788597, + 0.04678710550069809, + 0.03060229681432247, + -0.018026476725935936, + 0.0005407865974120796, + -0.032139528542757034, + -0.09037787467241287, + -0.0827409103512764, + -0.04539860039949417, + 0.004223184660077095, + -0.0279687587171793, + -0.08577799797058105, + -0.010531982406973839, + 0.04832743853330612, + 0.07859805226325989, + -0.05649746581912041, + -0.08340419828891754, + -0.055019624531269073, + -0.006956967990845442, + 0.020386554300785065, + -0.007427030708640814, + 0.07822901010513306, + -2.9106573577764053e-33, + 0.06808528304100037, + 0.05812763050198555, + -0.055899862200021744, + 0.059268031269311905, + 0.09533897787332535, + -0.007074867840856314, + 0.035451751202344894, + -0.029630359262228012, + -0.05740981176495552, + -0.044109366834163666, + -0.0053480239585042, + -0.024190668016672134, + 0.056244175881147385, + -0.019335031509399414, + 0.013080667704343796, + -0.032822489738464355, + 0.0756738930940628, + -0.06651223450899124, + 0.05800044909119606, + -0.012838313356041908, + -0.05743548274040222, + 0.04193054139614105, + 0.024976028129458427, + -0.04849132150411606, + -0.06831373274326324, + -0.06248345971107483, + 0.006451926659792662, + -0.026091985404491425, + 0.049097150564193726, + 0.00541013153269887, + -0.017855724319815636, + 0.004573636222630739, + 0.07309456169605255, + 0.0014738979516550899, + -0.049964409321546555, + 0.10879093408584595, + -0.0007202511187642813, + 0.016821956261992455, + -0.03526158258318901, + 0.05708380416035652, + -0.07158046960830688, + -0.024011222645640373, + -0.07504810392856598, + -0.03638537600636482, + 0.048328157514333725, + 0.035496436059474945, + -0.058964431285858154, + -0.03189798444509506, + -0.05804656445980072, + 0.10242103785276413, + -0.06460437178611755, + -0.010542660020291805, + 0.05619829148054123, + 0.034415557980537415, + -0.02848363295197487, + 0.015409005805850029, + -0.07003644108772278, + 0.0633816346526146, + 0.07627280056476593, + -0.04578324779868126, + 0.0020146816968917847, + 0.07224500924348831, + -0.001378884888254106, + 0.02108685113489628, + -0.043026454746723175, + 0.07666642963886261, + 0.008088504895567894, + 0.06623347848653793, + 0.01656387373805046, + -0.0204533189535141, + -0.017875203862786293, + -0.036124732345342636, + -0.01701073907315731, + 0.07860701531171799, + -0.00078907998977229, + 0.013554726727306843, + -0.13859383761882782, + -0.060680996626615524, + 0.029421702027320862, + -0.007038227282464504, + -0.0589120052754879, + 0.05385605990886688, + -0.04950856789946556, + 0.07961194217205048, + 0.029587088152766228, + -0.02189931459724903, + -0.02053040638566017, + 0.0040764231234788895, + 0.04646041989326477, + 0.1241803765296936, + 0.03383013606071472, + 0.041364025324583054, + -0.04419994726777077, + 0.016810834407806396, + -0.0397944301366806, + -1.3403110565995535e-34, + 0.007152365520596504, + 0.09476873278617859, + -0.08711566030979156, + -0.0222244281321764, + -0.08792033791542053, + -0.03684070706367493, + 0.07476391643285751, + 0.0028241893742233515, + -0.038207560777664185, + 0.01279428880661726, + 0.10956623405218124, + 0.03596516698598862, + 0.03659157082438469, + -0.12599040567874908, + 0.06779516488313675, + -0.031073393300175667, + -0.10076542943716049, + -0.00566460844129324, + 0.015042971819639206, + 0.046933166682720184, + -0.012819021008908749, + -0.00021677989570889622, + -0.06417297571897507, + 0.006651595234870911, + -0.011921457946300507, + 0.06338228285312653, + 0.06482993811368942, + 0.021482640877366066, + -0.048799529671669006, + 0.0020866820123046637, + -0.049863625317811966, + 0.057465944439172745, + -0.0015044305473566055, + 0.08886463940143585, + 0.059884361922740936, + 0.15211692452430725, + -0.007377598900347948, + -0.03871140256524086, + 0.053584929555654526, + -0.08310765027999878, + 0.023183954879641533, + -0.008860957808792591, + -0.03514661267399788, + 0.06933920830488205, + 0.001337799010798335, + -0.06236707791686058, + -0.014813059009611607, + -0.07533034682273865, + -0.06520680338144302, + 0.027712460607290268, + 0.0877644419670105, + -0.02438410371541977, + -3.2224872938968474e-06, + -0.010269341059029102, + -0.0008945477311499417, + 0.059996381402015686, + -0.04539300501346588, + 0.06708303838968277, + -0.007298352662473917, + 0.10071641206741333, + -0.03146418184041977, + -0.08739961683750153, + -0.14890435338020325, + 0.06801239401102066, + 0.00652276212349534, + -0.0539608933031559, + -0.043017033487558365, + 0.002772314939647913, + 0.030850058421492577, + -0.02063169702887535, + -0.0185462087392807, + 0.07829420268535614, + -0.017468547448515892, + 0.009035401977598667, + 0.02359415963292122, + -0.08273417502641678, + 0.02778857946395874, + 0.08813831955194473, + -0.046916328370571136, + 0.12929514050483704, + -0.035926517099142075, + 0.03437291085720062, + -0.07473897933959961, + -0.0030689192935824394, + -0.041749127209186554, + -0.058258891105651855, + -0.001834629918448627, + 0.08003906905651093, + -0.0457756333053112, + -0.06289424747228622, + -0.04663223773241043, + -0.02849583514034748, + -0.04949614033102989, + 0.07193966954946518, + -0.015526975505053997, + -2.0008005918725758e-08, + -0.05175723135471344, + 0.020795026794075966, + -0.04896717891097069, + -0.009411399252712727, + 0.09520762413740158, + -0.007222180720418692, + -0.010656598024070263, + -0.1198766827583313, + -0.015785768628120422, + 0.005688408389687538, + -0.002179144648835063, + 0.03176826983690262, + -0.08981281518936157, + 0.016433516517281532, + -0.03235146030783653, + -0.029811417683959007, + -0.053422827273607254, + -0.00925857201218605, + -0.007144255097955465, + 0.014052608981728554, + 0.025220036506652832, + -0.04347985237836838, + -0.004340347833931446, + 0.001468157977797091, + 0.04790573939681053, + -0.056758198887109756, + 0.012599887326359749, + -0.03509093075990677, + -0.021331533789634705, + 0.04783192276954651, + -0.032090745866298676, + 0.008130515925586224, + -0.012309050187468529, + 0.02616281248629093, + -0.0909443125128746, + 0.00186496926471591, + 0.020246222615242004, + 0.10594851523637772, + 0.03698577359318733, + 0.07502968609333038, + -0.11421060562133789, + -0.02212461270391941, + 0.02385261096060276, + -0.07662849873304367, + -0.03416981175541878, + 0.010584414936602116, + -0.054182153195142746, + 0.07752243429422379, + 0.008621004410088062, + -0.11288228631019592, + 0.015903420746326447, + 0.017060767859220505, + 0.0039890725165605545, + 0.017267020419239998, + 0.0016637726221233606, + -0.026467591524124146, + 0.0013234653742983937, + 0.03755556419491768, + -0.07792434841394424, + -0.009053617715835571, + 0.06064798682928085, + -0.00724857859313488, + -0.007488608825951815, + -0.05310225114226341 + ], + "network-x-bold||*new*,internet,ethernet,lan,disabled": [ + 0.02427385374903679, + -0.0012772446498274803, + 0.011733025312423706, + 0.013273497112095356, + 0.031369660049676895, + 0.01474782545119524, + 0.0306615699082613, + -0.08297204226255417, + -0.07056744396686554, + -0.03705466166138649, + 0.08899615705013275, + 0.09962103515863419, + -0.002108326880261302, + -0.031018175184726715, + -0.0012160972692072392, + 0.06015486642718315, + 0.0600702166557312, + -0.12817421555519104, + 0.040095943957567215, + 0.04744020476937294, + 0.007639599498361349, + 0.004908351227641106, + -0.012705216184258461, + -0.029976479709148407, + 0.09193281084299088, + -0.022821098566055298, + 0.037867408245801926, + -0.0038038473576307297, + -0.01869959570467472, + -0.044119831174612045, + -0.0415969118475914, + 0.009148863144218922, + 0.01638886332511902, + -0.04380396381020546, + 0.0337459035217762, + -0.0006093972478993237, + 0.01230628415942192, + 0.04407491162419319, + 0.015358845703303814, + -0.08294318616390228, + 0.0516793392598629, + -0.08946624398231506, + 0.0212648194283247, + -0.02016959711909294, + 0.02137616276741028, + -0.0466194748878479, + 0.020401842892169952, + -0.04696568474173546, + 0.061917826533317566, + -0.03291217237710953, + 0.057283349335193634, + -0.00345747172832489, + -0.038059670478105545, + -0.017319435253739357, + 0.17379872500896454, + 0.03458482772111893, + -0.08351429551839828, + 0.0211779922246933, + -0.008895644918084145, + -0.03694598004221916, + -0.004602971486747265, + 0.03942574933171272, + 0.08740969747304916, + 0.04509318247437477, + -0.013833392411470413, + 0.04487154260277748, + 0.00413467176258564, + -0.017204975709319115, + -0.06970629096031189, + 0.030321264639496803, + 0.011463748291134834, + 0.1377609223127365, + -0.042952921241521835, + 0.009992996230721474, + 0.005308597348630428, + 0.04267718642950058, + 0.09597094357013702, + -0.03428983688354492, + -0.001124850008636713, + -0.024631284177303314, + 0.0002601974701974541, + 0.025121614336967468, + -0.020570173859596252, + 0.011457860469818115, + 0.00859871692955494, + 0.03769181668758392, + -0.09500490128993988, + -0.09135846793651581, + -0.008097407408058643, + -0.05127478018403053, + -0.03894733637571335, + 0.02282005548477173, + -3.36050616169814e-05, + 0.07080579549074173, + -0.04533623158931732, + -0.05352262035012245, + 0.0628773421049118, + -0.024948850274086, + -0.11327429115772247, + 0.0863872841000557, + 0.03181380406022072, + 0.013835282996296883, + 0.11170105636119843, + 0.03431273251771927, + -0.04210294410586357, + -0.020735835656523705, + 0.04758971184492111, + 0.0031747270841151476, + -0.08697601407766342, + -0.021440599113702774, + -0.038976363837718964, + -0.09171268343925476, + -0.02703850157558918, + -0.0012544153723865747, + -0.02753867395222187, + 0.0244564488530159, + -0.040219344198703766, + 0.010918439365923405, + 0.03052823804318905, + 0.013836320489645004, + -0.05130912363529205, + -0.06478314846754074, + -0.012068807147443295, + -0.03750133886933327, + 0.017650965601205826, + 0.03417227044701576, + 0.03171008452773094, + -2.3524158252548702e-33, + 0.044429223984479904, + 0.04120714217424393, + -0.09694645553827286, + 0.029204560443758965, + 0.09941568225622177, + -0.013441675342619419, + 0.08236910402774811, + -0.07117224484682083, + -0.0675961896777153, + 0.00855813454836607, + 0.025202181190252304, + 0.039615463465452194, + 0.025037147104740143, + -0.005725994240492582, + 0.033594436943531036, + -0.06400436162948608, + 0.10708004236221313, + -0.020197058096528053, + 0.05939067527651787, + 0.022426456212997437, + -0.025058455765247345, + -0.007446547970175743, + 0.004408153705298901, + -0.043970637023448944, + -0.06403318047523499, + -0.00563562149181962, + -0.01029890961945057, + -0.023187287151813507, + 0.005945773795247078, + 0.011653090827167034, + -0.04343753308057785, + 0.041100986301898956, + 0.0546477846801281, + 0.014277302660048008, + -0.0626390352845192, + 0.06363125890493393, + -0.06470037251710892, + -0.016429457813501358, + -0.012750313617289066, + 0.0681232362985611, + -0.1137765496969223, + -0.03259037435054779, + -0.05045038461685181, + -0.08128434419631958, + 0.03062719851732254, + 0.05722837522625923, + -0.06407177448272705, + -0.07556929439306259, + -0.024646205827593803, + 0.06521560996770859, + -0.02571447193622589, + 0.003000721102580428, + -0.012076202780008316, + -0.01147783175110817, + 0.03954020515084267, + 0.005877208895981312, + -0.05885612592101097, + 0.1049966812133789, + 0.026694711297750473, + 0.017838628962635994, + 0.044529449194669724, + -0.010120290331542492, + 0.00977699551731348, + 0.02680366113781929, + -0.0018799337558448315, + 0.09389466792345047, + 0.006761359982192516, + -0.003257725154981017, + -0.01935526914894581, + -0.03548857197165489, + -0.0597856380045414, + -0.06566710025072098, + 0.00634031742811203, + 0.05222020670771599, + 0.07595144957304001, + -0.006508445832878351, + -0.13500343263149261, + -0.03742275387048721, + 0.029275786131620407, + 0.017402106896042824, + 0.0047617764212191105, + 0.03382177650928497, + -0.040274593979120255, + 0.1100519597530365, + 0.04759400710463524, + -0.00536962179467082, + -0.0040600658394396305, + 0.008305669762194157, + 0.031084580346941948, + 0.09561561793088913, + 0.001903372467495501, + 0.04342500865459442, + -0.042811647057533264, + -0.025784609839320183, + -0.08715604990720749, + -3.5573553912102944e-34, + -0.011365181766450405, + 0.05268211290240288, + -0.08139947801828384, + -0.014868143014609814, + -0.10273932665586472, + 0.009604101069271564, + 0.06655451655387878, + 0.038508251309394836, + -0.05791327729821205, + -0.00529520632699132, + 0.15491971373558044, + 0.009065837599337101, + -0.01946096681058407, + -0.08478996157646179, + 0.03588875010609627, + 0.0018829003674909472, + -0.06292534619569778, + 0.028738826513290405, + -0.011882200837135315, + 0.054223742336034775, + -0.0002538302796892822, + 0.016476009041070938, + -0.07371946424245834, + 0.0020004783291369677, + -0.02974606864154339, + 0.009499002248048782, + 0.06271357089281082, + 0.04960206523537636, + -0.026280630379915237, + -0.065481998026371, + -0.10612652450799942, + 0.0411129854619503, + 0.04345628619194031, + 0.05312155932188034, + 0.06494030356407166, + 0.12480437755584717, + -0.0018607205711305141, + -0.0034943590871989727, + -0.015678605064749718, + -0.01780789904296398, + 0.034551914781332016, + 0.017480986192822456, + -0.05451372638344765, + 0.08598165959119797, + -0.009629693813621998, + 0.004666430875658989, + -0.028297562152147293, + -0.10053182393312454, + -0.060113243758678436, + 0.0679267942905426, + 0.08414646983146667, + -0.04252679646015167, + 0.031801171600818634, + -0.005128522403538227, + -0.03467925265431404, + 0.03726104274392128, + -0.00023366263485513628, + 0.03189575672149658, + 0.016313228756189346, + 0.09965008497238159, + -0.00325782154686749, + -0.10899113118648529, + -0.11826973408460617, + 0.08677135407924652, + 0.018481649458408356, + -0.06994354724884033, + -0.008990674279630184, + -0.0017981079872697592, + 0.01550615020096302, + -0.010659370571374893, + 0.012704038992524147, + 0.029557913541793823, + -0.0069063943810760975, + -0.006131921894848347, + -6.986373045947403e-05, + -0.06481245160102844, + 0.013292123563587666, + 0.060078032314777374, + -0.05773720517754555, + 0.036094360053539276, + -0.005010745022445917, + 0.02725359983742237, + -0.058369070291519165, + -0.023378508165478706, + -0.0044366344809532166, + 0.002577203093096614, + -0.02370227687060833, + 0.08334968239068985, + -0.0020279937889426947, + -0.0566227100789547, + -0.07487606257200241, + -0.037866074591875076, + -0.0721929594874382, + 0.06871026009321213, + -0.004921954125165939, + -2.1989626119989225e-08, + -0.08441759645938873, + -0.008280621841549873, + -0.06375963240861893, + -0.016304954886436462, + 0.09065790474414825, + 0.0171975027769804, + 0.011293734423816204, + -0.11920035630464554, + -0.04533695802092552, + -0.025181405246257782, + -0.02155046910047531, + 0.02606918103992939, + -0.09564998745918274, + 0.015614118427038193, + -0.012626695446670055, + -0.010436520911753178, + -0.04901999235153198, + 0.016900304704904556, + -0.01583903282880783, + -0.0323164202272892, + -0.01360880397260189, + -0.04276905953884125, + -0.059065911918878555, + 0.031625643372535706, + 0.06348858028650284, + -0.04583911970257759, + 0.0342605859041214, + -0.03653913363814354, + 0.02673444338142872, + 0.06508009880781174, + -0.09054720401763916, + -0.015740204602479935, + 0.022191615775227547, + 0.022016869857907295, + -0.08537833392620087, + 0.018532605841755867, + -0.04968482628464699, + 0.10026981681585312, + 0.051414165645837784, + 0.03059772215783596, + -0.09779980033636093, + -0.022672299295663834, + 0.03334170579910278, + -0.07494660466909409, + 0.009270621463656425, + 0.03687763959169388, + -0.06485679000616074, + 0.06039116904139519, + -0.0005197915015742183, + -0.11716453731060028, + -0.007296018768101931, + 0.014910529367625713, + 0.035195376724004745, + -0.021111588925123215, + -0.028322771191596985, + -0.020116707310080528, + 0.035463351756334305, + 0.03230278566479683, + -0.054746393114328384, + 0.028657417744398117, + 0.05402026325464249, + -0.016513371840119362, + 0.009943694807589054, + -0.07470483332872391 + ], + "newspaper-bold||reading,writing,journals,periodicals": [ + 0.055406857281923294, + -0.04033426195383072, + -0.03477449715137482, + 0.07379721850156784, + 0.031667403876781464, + 0.024247203022241592, + -0.014509360305964947, + -0.02275373786687851, + -0.05165039747953415, + 0.04201896861195564, + 0.0033410799223929644, + 0.09188955277204514, + -0.0004626023874152452, + 0.00962503906339407, + 0.013357504270970821, + -0.012811578810214996, + 0.025410231202840805, + 0.04844289273023605, + 0.014156809076666832, + 0.06251019984483719, + -0.0005453127669170499, + 0.047587424516677856, + 0.05888708308339119, + -0.002308760304003954, + 0.04095669835805893, + -0.02267792634665966, + -0.04827280715107918, + -0.07008957862854004, + -0.01609855517745018, + -0.05853091552853584, + -0.044887129217386246, + 0.0009259302751161158, + 0.05732867866754532, + 0.0018883312586694956, + 0.08548983186483383, + -0.012385536916553974, + 0.05030951648950577, + -0.05182735621929169, + 0.05472509190440178, + 0.05460033193230629, + 0.05281168594956398, + -0.06752555072307587, + -0.040863461792469025, + -0.0024653556756675243, + -0.030992066487669945, + -0.07491087913513184, + -0.07050827890634537, + 0.06457633525133133, + -0.06107519939541817, + 0.02565876953303814, + -0.011408882215619087, + -0.048856429755687714, + -0.08520346879959106, + 0.014704727567732334, + 0.023316238075494766, + -0.041212160140275955, + -0.12650738656520844, + 0.049935903400182724, + -0.004170379601418972, + -0.06836943328380585, + -0.010426056571304798, + 0.01872429810464382, + -0.0702158659696579, + 0.07376306504011154, + 0.03289996087551117, + 0.010035086423158646, + -0.010106150060892105, + 0.047508396208286285, + -0.04813624918460846, + -0.00880962610244751, + 0.023564504459500313, + 0.04891038313508034, + 0.05203995853662491, + -0.02610633336007595, + -0.014907182194292545, + -0.053288042545318604, + 0.03797958791255951, + -0.03046478144824505, + -0.013093588873744011, + -0.04578303545713425, + -0.01819562539458275, + -0.05484672635793686, + -0.013125731609761715, + 0.014718026854097843, + -0.013149047270417213, + -0.0062825740315020084, + -0.06919541954994202, + -0.05824907124042511, + 0.029262661933898926, + -0.027343522757291794, + -0.023020848631858826, + -0.04947540909051895, + -0.016893142834305763, + 0.02023373544216156, + -0.08787669986486435, + -0.0015242137014865875, + 0.0077586607076227665, + 0.03640441969037056, + 0.012793680652976036, + 0.09756078571081161, + 0.05856919661164284, + 0.0458727665245533, + 0.052711714059114456, + 0.013441219925880432, + -0.038251206278800964, + -0.1219487115740776, + -0.08025970309972763, + -0.007121697999536991, + -0.06731750816106796, + 0.023159155622124672, + -0.007896429859101772, + 0.029287219047546387, + -0.0058889505453407764, + -0.017069915309548378, + 0.028439844027161598, + -0.05922839790582657, + -0.005121675319969654, + -0.02682587318122387, + 0.0961497500538826, + 0.06650777161121368, + -0.03907780349254608, + 0.06086185574531555, + -0.08600838482379913, + -0.06553836166858673, + -0.05302809178829193, + 0.03036666288971901, + 0.029158730059862137, + -3.2632219090505954e-33, + 0.04837840050458908, + 0.08101322501897812, + -0.01724749431014061, + 0.11713774502277374, + -0.030072392895817757, + 0.04459342360496521, + -0.026911485940217972, + -0.044731106609106064, + -0.019419241696596146, + -0.03514483943581581, + 0.04244767501950264, + 0.12477593123912811, + -0.012864544056355953, + 0.08417678624391556, + 0.013605375774204731, + 0.004230107180774212, + -0.04228561744093895, + 0.024134241044521332, + -0.03832097351551056, + -0.013730771839618683, + 0.010136591270565987, + -0.012498085387051105, + -0.0031869697850197554, + -0.032246559858322144, + -0.018062222748994827, + -0.05107402801513672, + -0.004100790247321129, + -0.08446236699819565, + -0.0967218279838562, + 0.054441921412944794, + 0.03465373069047928, + 0.006427827291190624, + 0.012021883390843868, + -0.014869616366922855, + -0.004704199265688658, + 0.038927674293518066, + -0.018724290654063225, + -0.02060861326754093, + 0.01876790262758732, + 0.024081680923700333, + -0.09122023731470108, + -0.0366857685148716, + 0.00866708904504776, + 0.024849949404597282, + 0.05889473855495453, + 0.15628410875797272, + -0.03782549127936363, + -0.05718108266592026, + 0.037120379507541656, + -0.010868251323699951, + 0.03582731634378433, + -0.04785466194152832, + -0.059554800391197205, + -0.00444382568821311, + 0.05492892861366272, + 0.0364505834877491, + 0.03748071566224098, + -0.02476552501320839, + 0.00486617349088192, + -0.04074577987194061, + 0.06723323464393616, + 0.08480009436607361, + 0.023173820227384567, + -0.011260394006967545, + -0.006604529917240143, + 0.06693348288536072, + -0.0611882247030735, + 0.033324822783470154, + 0.06977634876966476, + -0.011708013713359833, + 0.035598766058683395, + 0.005132242571562529, + -0.008792796172201633, + 0.022968081757426262, + -0.02709939517080784, + 0.06218995898962021, + -0.014890310354530811, + -0.028979744762182236, + 0.019668161869049072, + 0.0012107513612136245, + -0.014439615420997143, + 0.0040479376912117004, + -0.032079342752695084, + 0.044325511902570724, + -0.002898020204156637, + -0.014194635674357414, + 0.021095573902130127, + -0.07619764655828476, + 0.02021734043955803, + -0.0031974734738469124, + -0.019315356388688087, + 0.03291693329811096, + 0.020789187401533127, + -0.05950891971588135, + -0.08266804367303848, + 2.706636296798596e-35, + -0.05365942418575287, + -0.04467884823679924, + -0.040773212909698486, + 0.02922065742313862, + -0.06443987786769867, + 0.030332954600453377, + -0.05922449752688408, + 0.03719706833362579, + 0.06079673022031784, + 0.021006667986512184, + -0.067153200507164, + -0.09321025758981705, + -0.0730908215045929, + 0.053797200322151184, + -0.012902520596981049, + -0.003282862016931176, + 0.036100223660469055, + 0.01720569096505642, + -0.07687048614025116, + 0.07468158006668091, + -0.043698132038116455, + -0.057644814252853394, + -0.06939614564180374, + 0.12424164265394211, + 0.08218462020158768, + -0.0092167928814888, + 0.017554938793182373, + -0.0678488165140152, + -0.0809645876288414, + -0.052754957228899, + -0.05684012919664383, + -0.06016416475176811, + 0.06970921903848648, + 0.06252532452344894, + -0.07959390431642532, + 0.08273613452911377, + 0.08879409730434418, + -0.03424875810742378, + 0.016090810298919678, + -0.002715461887419224, + 0.007569870911538601, + 0.01624414697289467, + 0.0635954737663269, + 0.009607269428670406, + -0.05811156705021858, + 0.0029773663263767958, + -0.06882953643798828, + -0.019250545650720596, + 0.0027484965976327658, + 0.06612960249185562, + -0.023838097229599953, + -0.0009213921148329973, + -0.017121560871601105, + 0.032517679035663605, + -0.07695776224136353, + 0.02284363843500614, + -0.05224161967635155, + -0.057211246341466904, + -0.05056401342153549, + 0.05406351760029793, + -0.034424494951963425, + 0.1269102692604065, + -0.09839645028114319, + 0.07330941408872604, + 0.04861457273364067, + -0.15809102356433868, + 0.00764901377260685, + -0.07871337234973907, + -0.020969999954104424, + 0.011490247212350368, + 0.06264837831258774, + 0.006021993234753609, + 0.034817736595869064, + -0.05296653136610985, + 0.02585758827626705, + 0.034273069351911545, + 0.021364888176321983, + 0.05731481313705444, + -0.04354650899767876, + 0.05270501971244812, + -0.03178920969367027, + 0.031184060499072075, + -0.03426570072770119, + 0.04563941806554794, + -0.023594897240400314, + 0.05639387294650078, + 0.036049116402864456, + -0.07900545001029968, + -0.030627677217125893, + -0.0376695916056633, + 0.024657152593135834, + -0.03848683461546898, + 0.0031393759418278933, + 0.0018007211619988084, + -0.040788132697343826, + -1.8851441296874327e-08, + -0.020378194749355316, + -0.05832011625170708, + -0.08398853987455368, + 0.03253505378961563, + 0.02176078036427498, + -0.01747877337038517, + 0.04536246880888939, + -0.0697547048330307, + -0.03647816553711891, + 0.052116863429546356, + -0.009612539783120155, + 0.0007778402650728822, + -0.087665855884552, + -0.052956968545913696, + 0.039085399359464645, + -0.059984058141708374, + 0.006915362551808357, + -0.006164627615362406, + -0.042399100959300995, + -0.05431494861841202, + 0.08016126602888107, + 0.03510213643312454, + 0.02570333145558834, + -0.02035168744623661, + 0.085981085896492, + 0.034933511167764664, + -0.037515707314014435, + -0.06799761205911636, + 0.06937773525714874, + 0.07104120403528214, + -0.048435356467962265, + 0.09475165605545044, + -0.08417592197656631, + 0.0039541893638670444, + -0.09666628390550613, + 0.010207333602011204, + 0.1296658217906952, + 0.011260855942964554, + -0.06309567391872406, + 0.10906550288200378, + 0.04519486054778099, + -0.06855801492929459, + 0.015120225958526134, + -0.0006069852388463914, + 0.08121862262487411, + 0.012708066031336784, + 0.0673103854060173, + -0.0012559862807393074, + 0.04469439387321472, + -0.1220405250787735, + -0.0006398084224201739, + -0.04260031878948212, + 0.14748652279376984, + 0.02050906978547573, + -0.0705542340874672, + -0.026659881696105003, + 0.03189266845583916, + 0.05992935597896576, + -0.033858731389045715, + -0.013963883742690086, + 0.10557925701141357, + -0.01379837840795517, + 0.047967780381441116, + 0.03666964918375015 + ], + "newspaper-clipping-bold||*updated*,reading,writing,journals,periodicals": [ + 0.02285008318722248, + -0.004232789855450392, + -0.013535981997847557, + 0.048310644924640656, + 0.03973432630300522, + 0.002461632713675499, + 0.010028635151684284, + -0.019750414416193962, + -0.025537041947245598, + 0.01749839261174202, + 0.007296660915017128, + 0.11381396651268005, + -0.02512679435312748, + -0.009716016240417957, + -0.0056848987005651, + 0.0048424676060676575, + 0.018525367602705956, + 0.07823650538921356, + -0.014537207782268524, + 0.048400070518255234, + 0.008896155282855034, + 0.0415940061211586, + 0.013996420428156853, + 0.01216662023216486, + 0.08547648042440414, + -0.008061106316745281, + -0.07201313227415085, + -0.07766135036945343, + -0.0005037675146013498, + -0.03574543073773384, + -0.003523794235661626, + 0.005908988881856203, + 0.12665477395057678, + 0.004844824317842722, + 0.04024522379040718, + -0.01843525469303131, + 0.03018397092819214, + 0.0010642952984198928, + 0.0742790475487709, + 0.052147939801216125, + 0.01039360836148262, + -0.0947708860039711, + -0.04963049665093422, + -0.03901021182537079, + -0.03291577473282814, + -0.08437588065862656, + -0.08067544549703598, + 0.07287465035915375, + -0.0784096047282219, + 0.04859424754977226, + -0.028875987976789474, + -0.08714934438467026, + -0.11833799630403519, + 0.020231615751981735, + 0.016939504072070122, + -0.03279668465256691, + -0.052363522350788116, + 0.043899234384298325, + 0.018142305314540863, + -0.05648141726851463, + 0.0015242123045027256, + 0.0427948497235775, + -0.07747622579336166, + 0.08951511979103088, + 0.050319746136665344, + 0.014139116741716862, + 0.003813836257904768, + 0.00971468910574913, + -0.031990114599466324, + -0.0018391088815405965, + 0.002745042322203517, + 0.05221624672412872, + 0.021375330165028572, + -0.020490437746047974, + -0.03381403535604477, + -0.06212802976369858, + 0.04589781165122986, + -0.04224919527769089, + -0.007776161655783653, + -0.07411080598831177, + 0.03364724665880203, + -0.07508158683776855, + 0.01775428093969822, + 0.03979365900158882, + -0.010132481344044209, + -0.011096498928964138, + -0.049010153859853745, + -0.06106017529964447, + 0.011298582889139652, + -0.027074722573161125, + -0.012627228163182735, + -0.07011004537343979, + -0.015360024757683277, + 0.01538330689072609, + -0.12034709006547928, + -0.030007360503077507, + -0.048384830355644226, + 0.0002109439083142206, + 0.047843798995018005, + 0.0902923122048378, + 0.04982590675354004, + 0.05573543906211853, + 0.05489165708422661, + 0.0034487275406718254, + -0.04147934168577194, + -0.10462945699691772, + -0.04444870725274086, + -0.019691303372383118, + -0.045063670724630356, + 0.018931705504655838, + 0.011557156220078468, + 0.03560489043593407, + -0.01730402745306492, + -0.04954918846487999, + 0.05308033525943756, + -0.031535182148218155, + 0.021486233919858932, + -0.009664957411587238, + 0.07983587682247162, + 0.09006878733634949, + -0.031153546646237373, + 0.08399272710084915, + -0.10764776170253754, + -0.031114349141716957, + -0.00997911300510168, + 0.038715895265340805, + 0.045421354472637177, + -3.1941142288237685e-33, + 0.025325627997517586, + 0.07076612114906311, + -0.029902024194598198, + 0.08781211823225021, + 0.007934138178825378, + 0.01720738224685192, + -0.0543021485209465, + -0.07365992665290833, + -0.020143188536167145, + -0.054080016911029816, + 0.07402948290109634, + 0.08684992790222168, + 0.005300873424857855, + 0.09571162611246109, + 0.005609752610325813, + -0.04101512208580971, + -0.025945596396923065, + 0.08706419169902802, + -0.04829409718513489, + 0.02889816090464592, + -0.012514043599367142, + -0.043722476810216904, + 0.011634106747806072, + -0.0005046201986260712, + 0.021286441013216972, + -0.06074399873614311, + -0.02728324569761753, + -0.07510381191968918, + -0.05985677242279053, + 0.055488891899585724, + 0.0252174474298954, + 0.00548401428386569, + 0.013581398874521255, + -0.035883281379938126, + -0.014479128643870354, + 0.04310145974159241, + 0.019673962146043777, + -0.046054914593696594, + 0.032060325145721436, + 0.024005910381674767, + -0.07974831014871597, + -0.014642824418842793, + 0.011241854168474674, + -0.011935434304177761, + 0.02935527078807354, + 0.08659228682518005, + -0.039620447903871536, + 0.02194306068122387, + -0.011736241169273853, + 0.03294410556554794, + 0.052711497992277145, + -0.020749639719724655, + -0.024478450417518616, + -0.057173509150743484, + 0.023110436275601387, + 0.024139905348420143, + 0.05654899403452873, + -0.06051241606473923, + 0.03124260902404785, + -0.019929349422454834, + 0.05549654737114906, + 0.1040351539850235, + 0.00494122039526701, + -0.005116608925163746, + 0.0036965699400752783, + 0.05319402366876602, + -0.03917264938354492, + 0.031021567061543465, + 0.04353238642215729, + 0.005066622048616409, + -0.03216398507356644, + 0.008152559399604797, + -0.04084416478872299, + 0.03824637085199356, + -0.03471202775835991, + 0.008663544431328773, + -0.03795074298977852, + -0.027517180889844894, + 0.06173479184508324, + -0.017390906810760498, + -0.03363114222884178, + -0.006716035772114992, + -0.024095358327031136, + -0.05317592993378639, + -0.03997384384274483, + -0.012325129471719265, + 0.04128175228834152, + -0.0703866109251976, + 0.007649119943380356, + -0.03311747685074806, + -0.01953338272869587, + 0.04632455110549927, + -0.05210965499281883, + -0.03317904472351074, + -0.05574861913919449, + 1.4331914111150823e-34, + -0.03216042369604111, + -0.015437067486345768, + -0.032589979469776154, + 0.07724003493785858, + -0.06720511615276337, + 0.056115370243787766, + -0.06398265063762665, + 0.04281172901391983, + 0.008806610479950905, + -0.015269913710653782, + -0.051916781812906265, + -0.07404501736164093, + -0.07303877174854279, + 0.026804771274328232, + -0.034649889916181564, + -0.007776453159749508, + 0.01894490420818329, + 0.035178713500499725, + -0.10789048671722412, + 0.06553543359041214, + -0.03138768672943115, + -0.10778330266475677, + -0.03775671869516373, + 0.09578710794448853, + 0.05325203016400337, + -0.0024833243805915117, + -0.00496728764846921, + -0.0881870687007904, + -0.00016419445455539972, + -0.05054791271686554, + -0.07860362529754639, + -0.049060676246881485, + 0.029268724843859673, + 0.026741687208414078, + -0.07323621958494186, + 0.08380606770515442, + 0.08652456849813461, + -0.0021113452967256308, + 0.030709508806467056, + -0.039166755974292755, + -0.0026442077942192554, + 0.022692212834954262, + 0.04769492894411087, + 0.015964260324835777, + -0.07438338547945023, + -0.025731327012181282, + -0.07087370753288269, + 0.07064656168222427, + -0.04255276918411255, + 0.07078215479850769, + -0.026507295668125153, + -0.012377254664897919, + -0.020378965884447098, + 0.05923110619187355, + -0.09955916553735733, + 0.06806624680757523, + -0.08063632994890213, + -0.06593704223632812, + -0.08413443714380264, + 0.04725925251841545, + -0.04066724330186844, + 0.13189831376075745, + -0.12304956465959549, + 0.04010360315442085, + 0.07994383573532104, + -0.15582749247550964, + 0.028430497273802757, + -0.049699101597070694, + -0.029959844425320625, + 0.00504940003156662, + 0.08474043756723404, + 0.0005640971940010786, + 0.06215136498212814, + -0.07454473525285721, + 0.034515630453825, + 0.030459748581051826, + 0.026248052716255188, + 0.05096142739057541, + -0.03714597597718239, + 0.05118284374475479, + -0.023405827581882477, + 0.027290206402540207, + 0.008969544433057308, + 0.039897818118333817, + -0.03001120686531067, + 0.04684487730264664, + 0.0025562094524502754, + -0.04044855386018753, + -0.03851797804236412, + -0.061646949499845505, + -0.0037000717129558325, + -0.02501906268298626, + 0.004756744485348463, + 0.053827956318855286, + -0.03381369635462761, + -2.2098115337598756e-08, + -0.015550789423286915, + -0.035356245934963226, + -0.07665489614009857, + 0.020190168172121048, + 0.03226995840668678, + -0.020207803696393967, + 0.060052450746297836, + -0.08819293230772018, + -0.021783161908388138, + -0.025607453659176826, + 0.01617015153169632, + -0.0259050652384758, + -0.07755520194768906, + -0.025524748489260674, + 0.03630710020661354, + -0.05146690458059311, + 0.015187236480414867, + 0.013399959541857243, + -0.05530564486980438, + -0.03309028223156929, + 0.04656976833939552, + 0.01466438826173544, + 0.04379446431994438, + -0.018403474241495132, + 0.0662953108549118, + 0.05317515507340431, + -0.07210429757833481, + -0.0026177011895924807, + 0.08335278928279877, + 0.04677397385239601, + -0.037928055971860886, + 0.11384519189596176, + -0.08659280091524124, + -0.012445521540939808, + -0.04514703527092934, + 0.02442050911486149, + 0.11123650521039963, + 0.015812724828720093, + -0.039815276861190796, + 0.11346811056137085, + 0.04575400799512863, + -0.10283183306455612, + 0.04370497539639473, + 0.009780758991837502, + 0.08410044759511948, + 0.0075636510737240314, + 0.08688007295131683, + -0.008297977969050407, + 0.021755030378699303, + -0.1022530272603035, + 0.022000297904014587, + -0.07370227575302124, + 0.13720931112766266, + 0.044214360415935516, + -0.045578889548778534, + 0.008136611431837082, + 0.03881633281707764, + 0.07997000962495804, + -0.01757156103849411, + -0.008769274689257145, + 0.05678873509168625, + -0.035654496401548386, + 0.012920930050313473, + 0.06494727730751038 + ], + "not-equals-bold||*new*,\u2260,equality,equivalent,equivalence,mathematics,arithmetic,calculator": [ + -0.03818519413471222, + 0.025767643004655838, + 0.0023516505025327206, + 0.0015921310987323523, + -0.04259565845131874, + -0.10816705226898193, + 0.009536288678646088, + -0.0585753470659256, + -0.011222736909985542, + 0.012673623859882355, + 0.05309198051691055, + -0.0894785225391388, + 0.0765971690416336, + -0.052548374980688095, + -0.014030146412551403, + 0.00490128668025136, + -0.008413351140916348, + -0.007061207201331854, + -0.021511685103178024, + -0.036021824926137924, + -0.014180738478899002, + -0.0028736384119838476, + -0.056268032640218735, + 0.11760472506284714, + 0.018971899524331093, + 0.04519813880324364, + -0.01311001181602478, + -0.03607722371816635, + 0.10560186952352524, + -0.04333105310797691, + -0.08053972572088242, + -0.016470953822135925, + 0.04464522376656532, + 0.009883961640298367, + 0.028055386617779732, + -0.02551906369626522, + 0.04504593461751938, + 0.007420759182423353, + 0.01869123801589012, + 0.00019595236517488956, + -0.09424561262130737, + -0.07646100968122482, + -0.011663920246064663, + 0.016962867230176926, + -0.015460634604096413, + 0.038534026592969894, + -0.08995917439460754, + -0.0337396077811718, + -0.0055701895616948605, + -0.06857633590698242, + -0.05711948499083519, + -0.005929876584559679, + -0.14500382542610168, + -0.059556037187576294, + 0.06674867868423462, + 0.05498776212334633, + -0.004652340896427631, + 0.039285801351070404, + 0.004039838444441557, + -0.08435294032096863, + 0.012465504929423332, + 0.001595367444679141, + 0.032330259680747986, + 0.03553629294037819, + 0.036976058036088943, + 0.05072437599301338, + -0.024384059011936188, + -0.009238705970346928, + 0.0038653758820146322, + 0.08204378932714462, + -0.0486619770526886, + 0.035157885402441025, + 0.021103056147694588, + 0.04968836158514023, + -0.07783227413892746, + -0.019375424832105637, + 0.10573538392782211, + 0.037471745163202286, + -0.026158001273870468, + 0.060115694999694824, + -0.15036553144454956, + -0.07280568778514862, + -0.06676284968852997, + 0.037059590220451355, + 0.06090354174375534, + -0.03715410456061363, + -0.05410563200712204, + -0.03706173598766327, + 0.02369748428463936, + -0.04321872815489769, + -0.036449458450078964, + 0.014940711669623852, + 0.006425508763641119, + 0.07091289013624191, + -0.0017952187918126583, + 0.03496711701154709, + 0.015791434794664383, + 0.04043317586183548, + -0.022941267117857933, + 0.09296494722366333, + 0.017061155289411545, + 0.11340660601854324, + 0.027020493522286415, + -0.009503618814051151, + -0.007149196229875088, + -0.06448114663362503, + -0.005324740428477526, + -0.08181802183389664, + 0.054938748478889465, + -0.05351553112268448, + 0.023093175143003464, + -0.09087567031383514, + 0.018468957394361496, + 0.006546436343342066, + 0.023872364312410355, + 0.010801665484905243, + 0.028870781883597374, + 0.010169902816414833, + 0.06639255583286285, + 0.012352691031992435, + 0.04034498706459999, + 0.008595059625804424, + -0.021650303155183792, + 0.02432803064584732, + 0.003862144658342004, + -0.04770020395517349, + -0.05034099891781807, + -2.3770073507450648e-33, + 0.038409292697906494, + 0.029248444363474846, + 0.006872351747006178, + 0.048097506165504456, + -0.0470862090587616, + -0.005247792229056358, + -0.048916302621364594, + -0.009650002233684063, + -0.020376335829496384, + 0.06064940243959427, + 0.07977233827114105, + 0.12233518809080124, + 0.01636231690645218, + 0.0634748563170433, + 0.1052505150437355, + 0.0025106812827289104, + 0.04905248433351517, + -0.09895341098308563, + -0.04945359006524086, + -0.02226603403687477, + -0.021000996232032776, + 0.025670181959867477, + -0.10804081708192825, + 0.06437564641237259, + -0.01067286729812622, + 0.00125969760119915, + 0.05123455822467804, + -0.030170777812600136, + -0.014841257594525814, + -0.009294692426919937, + 0.002819022396579385, + -0.01521974802017212, + 0.04524315148591995, + 0.0680575743317604, + 0.05263286083936691, + -0.0412384495139122, + 0.001348982215858996, + -0.01803411729633808, + 0.021881569176912308, + -0.1075802892446518, + -0.07172039151191711, + -0.013680154457688332, + 0.06518255174160004, + -0.07507573068141937, + 0.10905175656080246, + -0.003097803331911564, + -0.019249510020017624, + -0.04992017522454262, + 0.07056368142366409, + -0.04117171838879585, + 0.01626613549888134, + 0.01262878067791462, + 0.030314087867736816, + 0.019380060955882072, + -0.013340792618691921, + -0.05642564967274666, + -0.000781185575760901, + 0.12199104577302933, + 0.006778507959097624, + 0.0509306825697422, + -0.01825382187962532, + -0.04145541042089462, + 0.0184837244451046, + -0.049538642168045044, + -0.15117551386356354, + 0.08539561927318573, + -0.09919986128807068, + -0.018161430954933167, + 0.09419082850217819, + 0.026252590119838715, + -0.04721405729651451, + 0.041155677288770676, + -0.04694773256778717, + 0.07976953685283661, + 0.06240863353013992, + -0.03334672376513481, + 0.01787324994802475, + -0.015660472214221954, + 0.053795136511325836, + -0.06457530707120895, + -0.07710503041744232, + 0.028886128216981888, + -0.03472388908267021, + 0.038261186331510544, + 0.036230914294719696, + -0.028647085651755333, + 0.03241124004125595, + -0.0019512138096615672, + 0.040528181940317154, + -0.039227716624736786, + -0.02874314971268177, + 0.0032153541687875986, + -0.04999757558107376, + -0.026290545240044594, + -0.04561236873269081, + -1.9735973423390335e-33, + -0.0228994470089674, + 0.03145184367895126, + -0.07968000322580338, + 0.014483356848359108, + -0.057366106659173965, + 0.03349309787154198, + 0.09401123225688934, + -0.0862567126750946, + 0.11219709366559982, + -0.0516945905983448, + 0.07778600603342056, + -0.021464498713612556, + -0.019574489444494247, + -0.022365666925907135, + -0.008763384073972702, + 0.01615639589726925, + 0.008990793488919735, + 0.0370611846446991, + -0.06957220286130905, + 0.0470745712518692, + 0.005294391885399818, + 0.0953575149178505, + -0.07814972847700119, + 0.007614100351929665, + -0.0012161537306383252, + 0.031048744916915894, + -0.05509798228740692, + 0.0012146036606281996, + 0.03997800499200821, + -0.034623000770807266, + 0.020274551585316658, + -0.048421937972307205, + 0.027289314195513725, + -0.021156925708055496, + -0.06403790414333344, + -0.012345989234745502, + 0.10418759286403656, + 0.004032518714666367, + -0.021806271746754646, + -0.02800406515598297, + 0.003683490213006735, + -0.03967534750699997, + 0.08922005444765091, + 0.06754456460475922, + -0.020888250321149826, + -0.026242941617965698, + 0.001967723947018385, + -0.0690099447965622, + -0.011123910546302795, + 0.007835553959012032, + 0.05996761843562126, + -0.08484817296266556, + -0.029148953035473824, + 0.05912289023399353, + -0.007594635244458914, + 0.009445098228752613, + 0.010967825539410114, + -0.00534457853063941, + -0.04306992515921593, + 0.08441682904958725, + 0.023088403046131134, + 0.009730261750519276, + 0.008299906738102436, + 0.06750383228063583, + -0.0868367850780487, + -0.052120331674814224, + -0.029446182772517204, + 0.09215901792049408, + 0.009404030628502369, + -0.05033167079091072, + 0.011745675466954708, + -0.012769528664648533, + -0.03277549892663956, + -0.09528288245201111, + -0.08355914801359177, + -0.05195073410868645, + 0.0538446381688118, + 0.03348098322749138, + -0.000654313713312149, + -0.03526207432150841, + 0.03082808293402195, + 0.009506878443062305, + -0.025776997208595276, + -0.030206236988306046, + -0.0883282870054245, + 0.03831586241722107, + 0.05795081704854965, + 0.010109693743288517, + -0.026169994845986366, + 0.02677539363503456, + -0.060942333191633224, + 0.06983942538499832, + -0.05045801028609276, + -0.022214297205209732, + -0.01814154163002968, + -2.6638639738507663e-08, + -0.018935639411211014, + -0.01144091971218586, + -0.06545880436897278, + -0.018159326165914536, + 0.02082059346139431, + -0.02103119157254696, + -0.025538763031363487, + -0.12171803414821625, + -0.0849781483411789, + -0.01601070910692215, + 0.052014000713825226, + 0.04602520540356636, + -0.058310311287641525, + -0.04702770709991455, + -0.02990793250501156, + 0.026814408600330353, + 0.0003279037482570857, + -0.029215548187494278, + -0.027566054835915565, + 0.008861642330884933, + -0.01690261997282505, + 0.0012330039171501994, + -0.023174632340669632, + -0.03320952504873276, + 0.02351553365588188, + 0.02911805361509323, + -0.0707457959651947, + -0.01371906790882349, + 0.08762210607528687, + 0.009927869774401188, + 0.05274544283747673, + 0.04600393399596214, + 0.0640108734369278, + -0.09733829647302628, + -0.0692613273859024, + -0.005691538564860821, + 0.00600564107298851, + 0.04899700731039047, + 0.000381383637432009, + 0.06837625056505203, + -0.04054395854473114, + -0.015694890171289444, + -0.051295939832925797, + 0.009142282418906689, + 0.10374896973371506, + 0.0026555752847343683, + 0.009146572090685368, + -0.06576529145240784, + -0.09205032140016556, + -0.06794091314077377, + -0.000867601775098592, + 0.06651753187179565, + 0.017548562958836555, + 0.03654273971915245, + -0.02744821086525917, + -0.042533695697784424, + -0.0075413561426103115, + 0.09761599451303482, + 0.007772919721901417, + 0.010835402645170689, + 0.14911282062530518, + -0.017369050532579422, + 0.1105828508734703, + 0.008165495470166206 + ], + "not-member-of-bold||*new*,\u2209,is not element of,set,member,mathematics,arithmetic,calculator": [ + 0.010817384347319603, + 0.019980398938059807, + 0.01665523834526539, + 0.040292222052812576, + -0.033548880368471146, + -0.06386732310056686, + 0.0868261530995369, + -0.04991314932703972, + -0.005517748184502125, + -0.010290537029504776, + 0.011383213102817535, + -0.06749794632196426, + 0.11671086400747299, + -0.1253478080034256, + 0.006686466746032238, + -0.005438624415546656, + -0.008331352844834328, + -0.03357449173927307, + -0.004325020592659712, + -0.011363806203007698, + -0.031126204878091812, + 0.003839304903522134, + -0.02660093456506729, + 0.07228457182645798, + 0.06603574752807617, + 0.042809367179870605, + 0.002950014779344201, + -0.052595991641283035, + 0.08800753951072693, + 0.0026748923119157553, + -0.12184753268957138, + -0.028940899297595024, + 0.05390703305602074, + 0.043725669384002686, + 0.07089683413505554, + 0.008627024479210377, + 0.06974168866872787, + 0.013482037000358105, + 0.007460219785571098, + 0.04439035430550575, + -0.040933266282081604, + -0.04761951416730881, + -0.017705118283629417, + 0.035660091787576675, + -0.036793652921915054, + 0.02599562332034111, + -0.043356865644454956, + -0.03015194647014141, + 0.00837861467152834, + -0.07630468904972076, + -0.06622520834207535, + -0.031592633575201035, + -0.09800419956445694, + -0.0023722038604319096, + 0.03214611858129501, + 0.1082269474864006, + -0.0032439122442156076, + -0.009898765943944454, + -0.014365345239639282, + -0.13384786248207092, + 0.01821519434452057, + -0.0028764773160219193, + 0.08142749965190887, + -0.028249047696590424, + -0.023660188540816307, + -0.0004835120344068855, + -0.039899926632642746, + -3.446860864642076e-05, + -0.03457684814929962, + 0.010084470734000206, + 0.036828141659498215, + 0.02254665084183216, + 0.05821899324655533, + 0.09551233798265457, + -0.08202140033245087, + -0.003615840571001172, + 0.10789480060338974, + 0.04638495668768883, + 0.026171045377850533, + 0.04101516678929329, + -0.05845110863447189, + -0.053817372769117355, + -0.0718880221247673, + 0.00799793191254139, + 0.09266134351491928, + -0.0029112810734659433, + -0.02815563976764679, + -0.1297851949930191, + -0.12585954368114471, + -0.020267903804779053, + -0.02278941124677658, + 0.024303358048200607, + -0.016997845843434334, + 0.06399783492088318, + 0.0034347972832620144, + 0.027185454964637756, + 0.044293131679296494, + 0.08059127628803253, + -0.05851549655199051, + 0.09580092132091522, + 0.0008791471482254565, + 0.11810096353292465, + 0.01175763737410307, + 0.01904548518359661, + -0.08881694823503494, + -0.015337329357862473, + 0.010705568827688694, + -0.08080355077981949, + 0.015955433249473572, + -0.026461118832230568, + 0.026401376351714134, + -0.11763603985309601, + -0.023256629705429077, + -0.04146251454949379, + -0.0029614304658025503, + -0.00018738825747277588, + -0.024233378469944, + -0.002514785388484597, + 0.029684817418456078, + 0.058750804513692856, + 0.052801474928855896, + -0.03543763607740402, + -0.031191859394311905, + 0.016309726983308792, + 0.003816768527030945, + -0.03545626625418663, + -0.044444046914577484, + -1.8185522088594662e-33, + 0.025517873466014862, + 0.027794992551207542, + -0.07045327872037888, + 0.028521614149212837, + -0.05385548993945122, + 0.052777331322431564, + -0.023662369698286057, + -0.0399770550429821, + -0.0560925267636776, + 0.005540803074836731, + 0.07943230122327805, + 0.013180837966501713, + 0.03665105625987053, + 0.06602352857589722, + 0.13708515465259552, + -0.028651494532823563, + 0.08580954372882843, + -0.1472865641117096, + 0.012111064046621323, + -0.03084661066532135, + -0.02785048820078373, + 0.04940475523471832, + -0.08456350117921829, + -0.0034129456616938114, + -0.06506683677434921, + 0.03995567560195923, + 0.06989774852991104, + -0.0626835897564888, + -0.07098671793937683, + 0.024603845551609993, + -0.021156415343284607, + 0.030465295538306236, + 0.058672137558460236, + 0.07730978727340698, + 0.041032351553440094, + 0.006786378100514412, + 0.01718808338046074, + -0.020659135654568672, + 0.009461699053645134, + -0.11012044548988342, + -0.026400567963719368, + 0.006598514970391989, + 0.07216276973485947, + -0.04753029718995094, + 0.04426167160272598, + 0.0538724884390831, + -0.03707326576113701, + -0.026499105617403984, + 0.01596522331237793, + -0.02038104273378849, + -0.021085429936647415, + 0.007341271732002497, + -0.010807250626385212, + 0.031001795083284378, + -0.020384514704346657, + -0.03988948091864586, + -0.024448318406939507, + 0.11584008485078812, + 0.030823148787021637, + 0.011089293286204338, + -0.012489977292716503, + 0.02838042937219143, + 0.022091776132583618, + 0.03836242854595184, + -0.19648797810077667, + 0.039564624428749084, + -0.13541726768016815, + 0.011906917206943035, + 0.058271702378988266, + 0.018499545753002167, + 0.0048123011365532875, + 0.08056015521287918, + -0.02838778868317604, + 0.10154564678668976, + 0.027997629716992378, + -0.034048307687044144, + 0.049730148166418076, + -0.02628847025334835, + -0.0006916014826856554, + -0.025354541838169098, + -0.0385514497756958, + 0.013083245605230331, + -0.020448459312319756, + 0.10212118923664093, + 0.06434359401464462, + -0.019584927707910538, + 0.018857944756746292, + 0.0578700453042984, + 0.006131927482783794, + 0.05411023646593094, + -0.06255733966827393, + -0.03654535487294197, + 0.0011700151953846216, + -0.023004576563835144, + -0.09054795652627945, + -3.496835615571186e-33, + -0.000505857402458787, + 0.03723098710179329, + -0.04036198556423187, + -0.0825185775756836, + -0.05918808653950691, + -0.027941174805164337, + 0.05507205054163933, + -0.0424773283302784, + 0.044587939977645874, + -0.008241170085966587, + 0.06841905415058136, + 0.033320654183626175, + -0.02909531071782112, + -0.07113491743803024, + 0.015178806148469448, + 0.014323510229587555, + -0.04044269770383835, + -0.03347594663500786, + -0.05265955626964569, + -0.010683353990316391, + -0.010129899717867374, + 0.03921133652329445, + -0.029825765639543533, + 0.04140888899564743, + 0.014615681953728199, + -0.027054866775870323, + -0.02908690646290779, + 0.047987308353185654, + -0.021886099129915237, + -0.035735923796892166, + -0.0006099949823692441, + -0.025642620399594307, + 0.008053934201598167, + 0.014051059260964394, + -0.07397310435771942, + -0.023278560489416122, + 0.04870891943573952, + -0.1000460535287857, + -0.0035918187350034714, + -0.02567991055548191, + 0.021234961226582527, + -0.023527277633547783, + 0.07384292781352997, + 0.05220998078584671, + 0.009792385622859001, + -0.024511948227882385, + 0.079386867582798, + -0.04948195070028305, + -0.042438723146915436, + 0.051500193774700165, + 0.021443231031298637, + -0.11800775676965714, + 0.052559930831193924, + 0.029080037027597427, + 0.004392291884869337, + 0.05556539446115494, + 0.014316650107502937, + 0.04282405972480774, + 0.006785457953810692, + 0.060875680297613144, + 0.024634340777993202, + 0.06706677377223969, + 0.001573793007992208, + 0.059879425913095474, + -0.013682287186384201, + -0.07261314243078232, + -0.0646144449710846, + 0.11578379571437836, + 0.015001497231423855, + -0.025099435821175575, + -0.012158287689089775, + 0.02597801387310028, + -0.03299546241760254, + 0.011262094601988792, + -0.11682380735874176, + -0.049184516072273254, + -0.0450868122279644, + 0.03805790841579437, + 0.011153101921081543, + -0.02893463522195816, + 0.004916259087622166, + 0.0011770868441089988, + -0.05261120945215225, + -0.03348476439714432, + -0.020998654887080193, + -0.02253810688853264, + 0.06497140228748322, + -0.008178026415407658, + -0.0441339910030365, + -0.06068070977926254, + -0.012204338796436787, + -0.008735890500247478, + -0.04254498332738876, + -0.04427121952176094, + -0.05694787949323654, + -2.8388196682271882e-08, + -0.07011447846889496, + -0.07016473263502121, + -0.03276944160461426, + 0.002908141817897558, + 0.06350672990083694, + -0.08044704049825668, + 0.009008442051708698, + -0.09891117364168167, + -0.030644895508885384, + -0.021647324785590172, + 0.04986220598220825, + 0.03485601767897606, + -0.05800369754433632, + -0.08172407746315002, + -0.010117181576788425, + -0.014090330339968204, + -0.010300718247890472, + 0.0016594519838690758, + -0.028149178251624107, + -0.03639109432697296, + -0.025764962658286095, + 0.02092568948864937, + 0.05015084519982338, + -0.032508380711078644, + -0.0037764818407595158, + 0.008814489468932152, + -0.010641880333423615, + -0.044101908802986145, + 0.08178587257862091, + 0.020693866536021233, + 0.04566749557852745, + 0.06721536070108414, + 0.04327015206217766, + -0.002288244431838393, + -0.06104728579521179, + -0.00845700316131115, + 0.015515273436903954, + 0.05692332237958908, + -0.01599319465458393, + 0.052760232239961624, + -0.07313144952058792, + -0.017558936029672623, + -0.025245964527130127, + -0.003675834508612752, + 0.00033759837970137596, + -0.042726628482341766, + -0.0674854964017868, + -0.03608783707022667, + 0.005692704115062952, + -0.07756051421165466, + -0.01943403109908104, + 0.0822005495429039, + 0.0032108593732118607, + 0.04340808838605881, + -0.027588751167058945, + -0.048298317939043045, + -0.029467036947607994, + 0.10255414247512817, + -0.049609288573265076, + -0.055616818368434906, + 0.07828158140182495, + -0.03278554975986481, + 0.06609107553958893, + 0.04951953515410423 + ], + "not-subset-of-bold||*new*,\u2284,not subset of,set,member,mathematics,arithmetic,calculator": [ + -0.0029633515514433384, + 0.015143387019634247, + 0.015372902154922485, + 0.03128748759627342, + 0.00688681798055768, + -0.07082919776439667, + 0.07534237951040268, + -0.05217869207262993, + -0.002941147657111287, + -0.0054574026726186275, + 0.009550859220325947, + -0.05365363135933876, + 0.10594239085912704, + -0.1327187865972519, + 0.00850423239171505, + 0.015836533159017563, + 0.029889006167650223, + -0.04563038423657417, + 0.047262128442525864, + -0.03218252584338188, + -0.03520708903670311, + -0.006336945574730635, + -0.008298858068883419, + 0.0473468191921711, + 0.049137916415929794, + 0.03209429606795311, + -0.005602735094726086, + -0.005560827441513538, + 0.05490095168352127, + 0.026908131316304207, + -0.13641159236431122, + 0.00838444009423256, + 0.038781147450208664, + -0.008069106377661228, + 0.07700802385807037, + -0.030739016830921173, + 0.021502425894141197, + 0.07218113541603088, + -0.005142520181834698, + 0.07760154455900192, + -0.058620620518922806, + -0.056424401700496674, + 0.014492836780846119, + 0.04426297917962074, + -0.05465609207749367, + 0.008748551830649376, + -0.08420699834823608, + -0.02802404575049877, + -0.0026078035589307547, + -0.09161937236785889, + -0.03508130833506584, + -0.027115121483802795, + -0.11640392243862152, + -0.03379257395863533, + 0.050699833780527115, + 0.041129350662231445, + -0.00740289781242609, + -0.032223816961050034, + -0.005125050898641348, + -0.11087068170309067, + 0.034003786742687225, + 0.00334974960424006, + 0.05171917378902435, + -0.006773204077035189, + -0.005598052870482206, + 0.05402211472392082, + -0.08376725763082504, + 0.04350369796156883, + 0.018137170001864433, + 0.028112169355154037, + 0.00569504639133811, + 0.04584835097193718, + 0.041769783943891525, + 0.08982184529304504, + -0.09406985342502594, + -0.0040454985573887825, + 0.13174304366111755, + 0.05565493926405907, + 0.015940209850668907, + 0.023086480796337128, + -0.06290272623300552, + -0.021976308897137642, + -0.06448513269424438, + 0.045877277851104736, + 0.08823879063129425, + -0.026614103466272354, + 0.006441636476665735, + -0.1184207946062088, + -0.07916178554296494, + 0.009121108800172806, + -0.07587414234876633, + -0.031110530719161034, + 0.004071646369993687, + 0.07719680666923523, + -0.01775061897933483, + 0.008385686203837395, + 0.05708387494087219, + 0.016954895108938217, + -0.007514491211622953, + 0.08682329207658768, + 0.02019619010388851, + 0.13061828911304474, + 0.04134244844317436, + 0.013315181247889996, + -0.07381514459848404, + -0.03552320599555969, + -0.007311711087822914, + -0.025939971208572388, + 0.02792760170996189, + -0.04380156844854355, + 0.04406258836388588, + -0.10983747243881226, + 0.012602999806404114, + -0.05199842154979706, + -9.252886229660362e-06, + -0.003906187368556857, + 0.01010064035654068, + 0.008325516246259212, + 0.05232352390885353, + 0.10528042167425156, + 0.010684826411306858, + 0.006792242173105478, + -0.01004426833242178, + -0.03077629581093788, + 0.009179177694022655, + -0.030066534876823425, + -0.05733226612210274, + -2.0045394760595455e-33, + 0.05176232010126114, + 0.012196553871035576, + -0.07277408242225647, + 0.06144826486706734, + -0.0408947728574276, + 0.058876510709524155, + -0.03107524663209915, + -0.06259983032941818, + -0.03736286237835884, + 0.030030880123376846, + 0.07905352860689163, + 0.047257352620363235, + 0.020856838673353195, + 0.10013268887996674, + 0.14846092462539673, + -0.0195465087890625, + 0.08312097191810608, + -0.11755011230707169, + 0.0005425310810096562, + -0.04712380841374397, + -0.06464636325836182, + 0.04145197570323944, + -0.07979366928339005, + -0.010089276358485222, + -0.017540430650115013, + 0.03637615218758583, + 0.0648912638425827, + -0.06337425112724304, + -0.08712588250637054, + 0.02427157759666443, + -0.03373558819293976, + 0.031255170702934265, + 0.06306732445955276, + 0.046526625752449036, + 0.09105465561151505, + -0.006550603546202183, + 0.009906834922730923, + -0.02878611348569393, + 0.0554930754005909, + -0.0734584778547287, + -0.013667008839547634, + 0.015357254073023796, + 0.10396495461463928, + -0.006026763468980789, + 0.032760582864284515, + 0.04002011567354202, + -0.04073377326130867, + -0.031710006296634674, + -0.015161368064582348, + -0.021487707272171974, + -0.008965482003986835, + 0.0038902736268937588, + -0.004734398797154427, + 0.041000403463840485, + -0.04191318899393082, + -0.07686378806829453, + -0.006240060552954674, + 0.08053486049175262, + 0.06094042584300041, + 0.0363328643143177, + 0.025694847106933594, + -0.008820651099085808, + 0.0063833813183009624, + 0.013287855312228203, + -0.1684797704219818, + 0.049206167459487915, + -0.11598845571279526, + -0.059059008955955505, + 0.07044357806444168, + 0.008188755251467228, + -0.008402621373534203, + 0.07227928936481476, + -0.02701042778789997, + 0.08246959000825882, + 0.02589615248143673, + -0.022099927067756653, + 0.06414280831813812, + 0.025519350543618202, + -0.008680864237248898, + -0.06695199012756348, + 0.00596469733864069, + -0.0028613877948373556, + -0.04114390164613724, + 0.07727698236703873, + 0.062161121517419815, + 0.00029724353225901723, + 0.015020825900137424, + 0.05348072946071625, + 0.01317803654819727, + -0.04871981218457222, + -0.15010884404182434, + -0.026537613943219185, + -0.016045788303017616, + -0.08679989725351334, + -0.09597427397966385, + -1.4842570438489622e-33, + 0.017946681007742882, + 0.02669854275882244, + -0.03397175297141075, + -0.0802290067076683, + -0.02358330599963665, + -0.023366371169686317, + 0.05569193884730339, + -0.03161608800292015, + 0.07610954344272614, + 0.01153834629803896, + 0.07046805322170258, + 0.033248502761125565, + 0.01537184976041317, + -0.1135227158665657, + -0.020799098536372185, + 0.007764838635921478, + -0.038063302636146545, + -0.009700937196612358, + -0.05221804603934288, + 0.023724544793367386, + 0.0040299599058926105, + -0.038263801485300064, + -0.03789319843053818, + 0.04992206394672394, + 0.025675475597381592, + 0.020641688257455826, + -0.0847221240401268, + 0.03877081722021103, + -0.06253952533006668, + -0.033837202936410904, + -0.024702338501811028, + -0.023559661582112312, + -0.003219196107238531, + 0.011724251322448254, + -0.07820521295070648, + -0.0008012747275643051, + 0.06435088813304901, + -0.018306447193026543, + -0.005789976101368666, + -0.0519476979970932, + 0.01099343691021204, + -0.0049344683066010475, + 0.05896059796214104, + 0.06480280309915543, + 0.000373418559320271, + 0.0015672397566959262, + 0.040502775460481644, + -0.05750201269984245, + -0.025046303868293762, + 0.03947553411126137, + -0.0349518358707428, + -0.0987335816025734, + 0.017760181799530983, + 0.08527640998363495, + -0.02349889650940895, + 0.03586238995194435, + -0.0011204092297703028, + 0.04776579141616821, + -0.00522988848388195, + 0.05516136437654495, + 0.03497980535030365, + 0.021838389337062836, + 0.0355420783162117, + 0.05012967437505722, + -0.04226928949356079, + -0.06885050982236862, + -0.06158033758401871, + 0.08474539965391159, + -0.030047086998820305, + -0.04215621203184128, + -0.011047917418181896, + 0.01999627985060215, + -0.010707493871450424, + -0.029548566788434982, + -0.13363781571388245, + -0.04804558306932449, + 0.021029504016041756, + 0.017258768901228905, + 0.009344617836177349, + 0.0012040872825309634, + 0.02515094354748726, + 0.004601792898029089, + -0.034293580800294876, + -0.024205908179283142, + -0.0006718704826198518, + 0.050045840442180634, + 0.03015291877090931, + -0.019757350906729698, + -0.04405968636274338, + -0.08247531205415726, + -0.0159313827753067, + 0.003627349156886339, + 0.0031225141137838364, + -0.029407629743218422, + -0.052816253155469894, + -2.7994619955507005e-08, + -0.001959624234586954, + -0.06076418608427048, + -0.04040966555476189, + 0.0278493482619524, + 0.04278092831373215, + -0.05850027874112129, + -0.0239634457975626, + -0.06361106038093567, + -0.030355079099535942, + -0.05247786268591881, + 0.047615308314561844, + 0.04695925861597061, + -0.06409669667482376, + -0.05498293787240982, + -0.050011325627565384, + 0.017687663435935974, + 0.048088617622852325, + 0.04185447469353676, + -0.03927507996559143, + -0.03334101662039757, + -0.0063147167675197124, + 0.04540406912565231, + 0.03899907320737839, + 0.002844126196578145, + 0.030139220878481865, + 0.01825557090342045, + -0.026632990688085556, + -0.10800999402999878, + 0.08371250331401825, + -0.01373784989118576, + 0.0437932163476944, + 0.07038852572441101, + 0.05625365301966667, + -0.015588328242301941, + -0.05163165181875229, + 0.02161954715847969, + -0.04778114706277847, + 0.03803194686770439, + -0.0455663725733757, + 0.030429361388087273, + -0.07407175004482269, + -0.06379785388708115, + -0.006002821959555149, + 0.004101272206753492, + 0.014477876015007496, + -0.06355474144220352, + -0.018363170325756073, + -0.03718620911240578, + -0.0038479387294501066, + -0.06741148978471756, + -0.01345804799348116, + 0.07181130349636078, + 0.015051184222102165, + 0.02161824144423008, + 0.0013695887755602598, + -0.02388312667608261, + -0.028275413438677788, + 0.10887861251831055, + -0.026585673913359642, + -0.025367269292473793, + 0.08932516723871231, + -0.04103248938918114, + 0.0639994814991951, + 0.037231847643852234 + ], + "not-superset-of-bold||*new*,\u2289,not superset of,set,member,mathematics,arithmetic,calculator": [ + -0.008044930174946785, + -0.02511117421090603, + -0.024400269612669945, + 0.023252373561263084, + -0.021353397518396378, + -0.03668830171227455, + 0.05062498897314072, + -0.010005627758800983, + -0.014701957814395428, + 0.0032376893796026707, + 0.0825437679886818, + -0.05394385755062103, + 0.09343231469392776, + -0.07976475358009338, + -0.05147475376725197, + -0.013730279169976711, + 0.028992746025323868, + -0.055715274065732956, + -0.03414132446050644, + -0.01960834488272667, + 0.044757597148418427, + -0.009693276137113571, + -0.011815043166279793, + 0.08467113226652145, + 0.07184845209121704, + 0.03279510512948036, + -0.022248350083827972, + -0.042659442871809006, + 0.09075996279716492, + 0.027024997398257256, + -0.142455592751503, + 0.029399758204817772, + 0.04724331572651863, + 0.03463088348507881, + 0.07677607238292694, + 0.025720149278640747, + 0.014842838980257511, + 0.032268814742565155, + 0.022322878241539, + -0.0071762120351195335, + -0.06683851778507233, + -0.06876493245363235, + 0.021923817694187164, + -0.004629094153642654, + 0.0011398149654269218, + 0.03958141803741455, + -0.0746002122759819, + -0.015407188795506954, + -0.029531637206673622, + -0.07738828659057617, + -0.06183912232518196, + -0.0511246919631958, + -0.08810817450284958, + 0.01572628691792488, + 0.08274378627538681, + 0.0958942323923111, + -0.04395856708288193, + -0.09741063416004181, + -0.028753336519002914, + -0.10131759941577911, + -0.030463730916380882, + 0.019659169018268585, + 0.0442647859454155, + -0.015751168131828308, + 0.023037152364850044, + 0.08628669381141663, + -0.0683622807264328, + 0.014942916110157967, + 0.003324199002236128, + 0.08588138967752457, + 0.004658740945160389, + 0.02221658267080784, + 0.05330945923924446, + 0.10673388838768005, + -0.03226713836193085, + -0.008747164160013199, + 0.09169857949018478, + -0.011968076229095459, + 0.006269723642617464, + 0.01745130494236946, + -0.058972083032131195, + -0.06557144969701767, + -5.843152030138299e-05, + 0.05457553267478943, + 0.10478392988443375, + -0.02656443603336811, + 0.006577621214091778, + -0.06248192861676216, + -0.06937263160943985, + -0.005866813473403454, + -0.06929976493120193, + -0.007205055560916662, + 3.997642488684505e-05, + 0.05109652131795883, + -0.05354120954871178, + 0.07487387955188751, + 0.0714636817574501, + 0.041920118033885956, + -0.0273135919123888, + 0.07458081096410751, + 0.018997497856616974, + 0.06151352822780609, + 0.025908630341291428, + -0.023974977433681488, + -0.03527071699500084, + -0.024143245071172714, + 0.00437970319762826, + -0.031708233058452606, + 0.05591575801372528, + -0.04661303013563156, + 0.03884385898709297, + -0.1662847101688385, + -0.019067170098423958, + -0.09988085925579071, + -0.024303941056132317, + 0.006895876955240965, + -0.01935582607984543, + 0.02320289798080921, + -0.017833707854151726, + 0.0395578071475029, + 0.03878038749098778, + 0.06395352631807327, + -0.006041409447789192, + 0.012160109356045723, + 0.01478633377701044, + 0.015406116843223572, + -0.06703128665685654, + -1.278062569580767e-33, + 0.08151691406965256, + 0.02302663028240204, + -0.037801191210746765, + -0.01552997250109911, + -0.04238458722829819, + 0.037716202437877655, + -0.02844409830868244, + -0.03630633279681206, + -0.04190506413578987, + 0.06556271016597748, + 0.08757422864437103, + 0.06446059048175812, + -0.021215902641415596, + 0.05774608999490738, + 0.14255854487419128, + -0.010735761374235153, + 0.04073774442076683, + -0.15015964210033417, + 0.029957400634884834, + -0.022408105432987213, + -0.008291203528642654, + 0.09366454184055328, + -0.0630277767777443, + -0.04462259262800217, + -0.04484012350440025, + -0.013951612636446953, + 0.07488016039133072, + -0.026367008686065674, + -0.09794729202985764, + 0.036975760012865067, + -0.03175829350948334, + 0.014332978054881096, + 0.02878953143954277, + 0.05866321176290512, + 0.0066596223041415215, + -0.06271630525588989, + -0.008200939744710922, + -0.046061836183071136, + 0.061441171914339066, + -0.03963295742869377, + 0.020356249064207077, + 0.006862282287329435, + 0.025673411786556244, + -0.024059446528553963, + 0.04434904828667641, + 0.03187763690948486, + 0.0003041329327970743, + 0.03711241856217384, + 0.006944389548152685, + -0.02894681505858898, + 0.002423263154923916, + -0.014058426953852177, + -0.01631891541182995, + 0.0286292415112257, + 0.007329117506742477, + -0.04024090990424156, + -0.017283814027905464, + 0.11281944066286087, + 0.04148911312222481, + 0.0332823172211647, + -0.01030243095010519, + -0.060872819274663925, + 0.040003128349781036, + 0.08332014828920364, + -0.1816984862089157, + 0.00853717140853405, + -0.14621791243553162, + -0.023146171122789383, + 0.04367236793041229, + 0.02646763250231743, + -0.016565220430493355, + 0.06336626410484314, + 0.0033007801976054907, + 0.08396218717098236, + 0.023302661255002022, + -0.01150850486010313, + 0.05800258740782738, + -0.005716838873922825, + -0.025370554998517036, + -0.002403311664238572, + -0.02032683603465557, + 0.04821271449327469, + -0.02005578577518463, + 0.08474697172641754, + 0.047275085002183914, + 0.020628292113542557, + 0.029318230226635933, + 0.006445953622460365, + 0.02241477742791176, + -0.060839422047138214, + -0.1656493991613388, + -0.042116209864616394, + 0.019520940259099007, + -0.09648729115724564, + -0.12136237323284149, + -3.048788964257563e-33, + -0.02461378276348114, + 0.0433981716632843, + -0.02073378674685955, + -0.006353415548801422, + -0.023859404027462006, + 0.009453167207539082, + 0.05316581949591637, + -0.04347606003284454, + 0.0639680027961731, + -0.006725489627569914, + 0.08751432597637177, + 0.03478524088859558, + 0.020945798605680466, + -0.1267651468515396, + 0.04775292053818703, + 0.02995818667113781, + -0.04073559492826462, + -0.03591301292181015, + -0.028166666626930237, + -0.0063011618331074715, + 0.0033567934297025204, + -0.0036032891366630793, + -0.0774545669555664, + 0.07732811570167542, + 0.019961662590503693, + -0.007326081395149231, + -0.0825403556227684, + 0.07575248181819916, + -0.015433019958436489, + 0.004161980468779802, + -0.022046448662877083, + -0.02159208059310913, + -8.90189767233096e-05, + 0.0027583122719079256, + -0.0937030091881752, + -0.006927079055458307, + 0.05157908797264099, + -0.03997763991355896, + -0.07076945900917053, + 0.0009822900174185634, + -0.029154237359762192, + -0.022692546248435974, + 0.028421014547348022, + 0.08651657402515411, + -0.002706819213926792, + -0.015750760212540627, + 0.020710425451397896, + -0.056589625775814056, + 0.02613021619617939, + 0.0246881153434515, + -0.002942576538771391, + -0.13095201551914215, + 0.017999056726694107, + 0.060066092759370804, + -0.025700319558382034, + -0.004125318489968777, + -0.000442153395852074, + 0.037878964096307755, + -0.009757491759955883, + 0.03867611289024353, + 0.0946592390537262, + -0.0007777899736538529, + 0.006680425256490707, + 0.042623765766620636, + -0.0218228530138731, + -0.06722866743803024, + -0.06958649307489395, + 0.05512697622179985, + -0.0323614776134491, + -0.04372413828969002, + 0.015890128910541534, + -0.008045868016779423, + -0.03672222048044205, + -0.015895666554570198, + -0.1161980926990509, + -0.01919124275445938, + -0.026556389406323433, + 0.0070275794714689255, + 0.016928592696785927, + 0.0013287717010825872, + 0.01159750111401081, + 0.0430925227701664, + -0.019342860206961632, + -0.019365768879652023, + -0.003979022148996592, + 0.025211473926901817, + 0.03106280229985714, + 0.022296443581581116, + -0.038581375032663345, + -0.06803131103515625, + -0.07259523868560791, + 0.04086264222860336, + -0.011810902506113052, + -0.029514774680137634, + -0.066201351583004, + -2.985428793067513e-08, + -0.023311831057071686, + -0.01451621949672699, + -0.002092931419610977, + -0.018114395439624786, + 0.03989030420780182, + -0.07262882590293884, + -0.02092854678630829, + -0.055600713938474655, + 0.006828514859080315, + -0.078058160841465, + 0.042195580899715424, + 0.0029305696953088045, + -0.06940101087093353, + -0.02990090101957321, + -0.02157030999660492, + -0.024336647242307663, + 0.024153631180524826, + 0.0696258619427681, + -0.039237987250089645, + -0.0791533812880516, + -0.023156626150012016, + 0.019270051270723343, + 0.0512235052883625, + -0.07735277712345123, + -0.0404210165143013, + 0.00989529024809599, + -0.023046212270855904, + -0.05164957791566849, + 0.04060282185673714, + -0.0037909881211817265, + 0.010418221354484558, + 0.04321204870939255, + 0.06913318485021591, + -0.021509697660803795, + -0.02423698641359806, + 0.05115610361099243, + -0.048088930547237396, + 0.05312793329358101, + -0.011158891022205353, + 0.035268593579530716, + -0.02362106740474701, + -0.06750686466693878, + -0.04172854498028755, + 0.05202394351363182, + 0.014472424983978271, + -0.0827242061495781, + 0.022240135818719864, + -0.039923813194036484, + 0.017429832369089127, + -0.0367802157998085, + 0.0007178438827395439, + 0.09871049225330353, + -0.012310018762946129, + -0.0006241742521524429, + 0.004571195691823959, + 0.03091462515294552, + -0.023554807528853416, + 0.10216381400823593, + -0.0382341593503952, + -0.03644213080406189, + 0.11472374200820923, + -0.0438992977142334, + 0.005043613258749247, + 0.05095824971795082 + ], + "notches-bold||textarea,resize,drag handle,knurling": [ + -0.053456686437129974, + -0.018657533451914787, + -0.011514921672642231, + 0.06935162842273712, + -0.05757976695895195, + 0.002787221921607852, + 0.06782348453998566, + 0.03898153081536293, + 0.029522554948925972, + 0.0652330294251442, + 0.002066350309178233, + 0.04128440096974373, + 0.024194316938519478, + -0.05537203699350357, + -0.03864502161741257, + 0.02962847612798214, + 0.0007021488854661584, + 0.04630007594823837, + -0.06495759636163712, + 0.030004389584064484, + 0.02065242826938629, + 0.039175499230623245, + 0.03450826555490494, + 0.046302180737257004, + 0.03611666336655617, + 0.07800360769033432, + 4.818446177523583e-05, + 0.06472956389188766, + 0.03609786555171013, + -0.07481327652931213, + -0.03914478421211243, + -0.01903056539595127, + 0.041247788816690445, + -0.04309815168380737, + -0.002356054028496146, + 0.060098618268966675, + 0.02998918481171131, + 0.028347909450531006, + -0.00951309408992529, + 0.03918010741472244, + 0.008034746162593365, + -0.03139376640319824, + 0.015909889712929726, + 0.011560254730284214, + -0.021245963871479034, + 0.0010569512378424406, + -0.06027994304895401, + 0.00989477802067995, + -0.023608794435858727, + -0.02002718113362789, + -0.017558487132191658, + -0.11478977650403976, + -0.05299203470349312, + 0.035892680287361145, + -0.048076897859573364, + 0.00311573245562613, + -0.08951668441295624, + -0.015387222170829773, + 0.12854541838169098, + 0.06388645619153976, + -0.014473086223006248, + -0.002864935202524066, + -9.863108425633982e-05, + 0.057755716145038605, + -0.03345499560236931, + 0.03899278864264488, + 0.0012195942690595984, + 0.01185084693133831, + -0.06676653027534485, + -0.006348080467432737, + 0.06380060315132141, + -0.05986756831407547, + -0.06201877072453499, + -0.019177265465259552, + 0.012427871115505695, + -0.022042464464902878, + -0.03362264856696129, + 0.06308040767908096, + 0.007722958922386169, + 0.028400985524058342, + -0.09107346832752228, + -0.011729861609637737, + -0.007719394285231829, + 0.07474895566701889, + 0.0475492887198925, + 0.11694764345884323, + -0.03501494601368904, + -0.1405097097158432, + -0.010673997923731804, + 0.043808694928884506, + 0.01261705718934536, + -0.002225124277174473, + 0.004363639280200005, + 0.0442010834813118, + -0.0826127678155899, + -0.06147725507616997, + -0.01667311042547226, + 0.007617620285600424, + -0.02308841049671173, + 0.06401865929365158, + 0.033833105117082596, + 0.0373171865940094, + 0.052070509642362595, + 0.02070273645222187, + -0.030981825664639473, + -0.010026341304183006, + -0.015976808965206146, + -0.10594834387302399, + -0.057358525693416595, + 0.013494409620761871, + -0.014847121201455593, + -0.08994094282388687, + -0.011780082248151302, + -0.05515811964869499, + -0.008016983047127724, + -0.04184526577591896, + 0.0005486577865667641, + -0.03883371129631996, + 0.10489577800035477, + 0.008384722284972668, + -0.045303188264369965, + 0.002828463912010193, + -0.08795933425426483, + -0.06083120033144951, + -0.02278728410601616, + 0.09291186183691025, + 0.07218550145626068, + 1.4541950615236284e-33, + 0.04355412721633911, + 0.062263865023851395, + -0.044760264456272125, + 0.055093538016080856, + 0.05310974270105362, + 0.023218650370836258, + -0.11946823447942734, + -0.012421985156834126, + -0.08666994422674179, + -0.0037983437068760395, + 0.04153722897171974, + 0.0436711311340332, + -0.027009345591068268, + 0.025251373648643494, + 0.060306791216135025, + -0.07999837398529053, + 0.03645406290888786, + 0.019993361085653305, + -0.06448239088058472, + 0.019108353182673454, + -0.0772748813033104, + -0.01270384807139635, + 0.03585844114422798, + 0.05568114295601845, + -0.012713850475847721, + 0.013307828456163406, + 0.08973577618598938, + -0.0013185598654672503, + -0.05942966789007187, + -0.006332072429358959, + -0.07507413625717163, + 0.03798968717455864, + -0.0014230523956939578, + -0.03689594194293022, + -0.11970418691635132, + 0.026242807507514954, + -0.020381636917591095, + -0.00046982651110738516, + -0.0036852399352937937, + 0.0074625262059271336, + -0.041519030928611755, + 0.017418893054127693, + -0.014935578219592571, + -0.05615070462226868, + -0.013288816437125206, + 0.03663885220885277, + 0.016711989417672157, + 0.029249874874949455, + -0.020744038745760918, + -0.031572047621011734, + 0.04990300163626671, + 0.06459056586027145, + 0.11643106490373611, + 0.07365089654922485, + 0.0019152136519551277, + -0.044381000101566315, + -0.01953340694308281, + 0.0543433353304863, + 0.05544040724635124, + 0.035526473075151443, + 0.013733530417084694, + 0.030143387615680695, + 0.06243987753987312, + 0.08663588762283325, + 0.041057039052248, + 0.013097584247589111, + 0.00047901857760734856, + 0.02985738031566143, + 0.05329238995909691, + -0.0703456923365593, + 0.048289988189935684, + 0.008158832788467407, + 0.04931355640292168, + 0.05115947127342224, + -0.0579836368560791, + -0.024405544623732567, + -0.021992623805999756, + -0.06767597049474716, + 0.07883431017398834, + -0.03635180741548538, + 0.017746452242136, + 0.00975438766181469, + 0.018659908324480057, + 0.04065164551138878, + 0.03466926887631416, + -0.09350937604904175, + -0.04157085716724396, + -0.09549684822559357, + 0.028294341638684273, + 0.02625676989555359, + -0.10880251973867416, + -0.04856843873858452, + 0.01932818815112114, + -0.0288956668227911, + -0.041909199208021164, + -1.350329482710925e-33, + 0.07567451894283295, + 0.024174034595489502, + 0.017260588705539703, + 0.021966969594359398, + -0.008387604728341103, + 0.0884842649102211, + -0.022025831043720245, + 0.08788374066352844, + 0.03784433379769325, + -0.062451016157865524, + 0.0658695176243782, + 0.034896157681941986, + -0.010392149910330772, + -0.0350891537964344, + -0.02416916750371456, + -0.00843389518558979, + -0.014875544235110283, + -0.018027031794190407, + -0.020091881975531578, + -0.08307483047246933, + 0.06231066957116127, + -0.05496445298194885, + -0.09249086678028107, + 0.08406121283769608, + -0.015537915751338005, + -0.025938749313354492, + -0.047179367393255234, + 0.03169243410229683, + -0.0958137959241867, + 0.01393923256546259, + 0.020217344164848328, + -0.054737988859415054, + -0.010912919417023659, + 0.010479984804987907, + -0.011153729632496834, + 0.0012732971226796508, + 0.0619441419839859, + 0.08245038241147995, + 0.07776124030351639, + 0.0067431265488266945, + 0.04150950163602829, + 0.04447280615568161, + 0.0927429050207138, + 0.005282511003315449, + -0.04070853441953659, + -0.03893433138728142, + -0.07067082822322845, + -0.02492787502706051, + -0.029366550967097282, + 0.05662339925765991, + -0.05118904635310173, + 0.08181154727935791, + 0.0008087108726613224, + 0.002467136364430189, + -0.10486774146556854, + -0.0037463216576725245, + -0.028995763510465622, + -0.00881941244006157, + -0.08285146951675415, + -0.005161984357982874, + 0.0008748592808842659, + -0.05187186598777771, + -0.01851188950240612, + 0.05079953372478485, + 0.08171483874320984, + -0.028480589389801025, + 0.03880958631634712, + -0.056031037122011185, + -0.05598391965031624, + -0.028173869475722313, + 0.08260547369718552, + -0.02826784923672676, + 0.03955184668302536, + -0.02813149057328701, + 0.054018400609493256, + -0.06362346559762955, + 0.0998241975903511, + 0.014910072088241577, + 0.007326172199100256, + 0.045591048896312714, + 0.08581540733575821, + 0.005852899048477411, + 0.03308628872036934, + -0.002748771570622921, + -0.031767670065164566, + 0.11609429866075516, + -0.028151776641607285, + 0.03574996069073677, + -0.02340717241168022, + -0.08053798228502274, + -0.032902538776397705, + -0.057367730885744095, + -0.05303257703781128, + 0.0165402889251709, + -0.07910972833633423, + -2.1576635589326543e-08, + 0.020028050988912582, + -0.037805136293172836, + -0.048278819769620895, + -0.055969689041376114, + -0.01085519976913929, + 0.00362157984636724, + -0.001663836999796331, + -0.0008657696307636797, + -0.046889569610357285, + -0.07610878348350525, + 0.07941196858882904, + 0.019117191433906555, + -0.1069449633359909, + -0.0003326144360471517, + -0.013828162103891373, + -0.010421785525977612, + -0.04112985357642174, + 0.1338370144367218, + -0.03450681269168854, + -0.14545586705207825, + 0.03055715002119541, + 0.07420314103364944, + 0.12105612456798553, + 0.021946722641587257, + -0.048810381442308426, + -0.04808707907795906, + -0.11852876842021942, + 0.04969346150755882, + 0.02734142728149891, + 0.06800200045108795, + 0.04264931380748749, + 0.04795277118682861, + 0.08907974511384964, + -0.044731877744197845, + -0.0030359916854649782, + -0.07508914172649384, + -0.06702092289924622, + 0.04641326889395714, + -0.023642348125576973, + 0.032493382692337036, + 0.00735052116215229, + -0.05708746239542961, + -0.01690877042710781, + -0.027946889400482178, + -0.04833491891622543, + 0.055366694927215576, + 0.0805273950099945, + 0.05255952849984169, + -0.01421176828444004, + -0.009245234541594982, + 0.01655479706823826, + 0.053140752017498016, + 0.06615637987852097, + 0.022133471444249153, + -0.10842526704072952, + -0.007326963357627392, + 0.034095946699380875, + 0.10323189944028854, + -0.03996175900101662, + -0.0158137995749712, + 0.034782275557518005, + -0.018541941419243813, + -0.018556764349341393, + 0.025916533544659615 + ], + "note-bold||notes,note-taking,memorandum,post-it,reminders": [ + -0.05382869020104408, + 0.025838185101747513, + -0.006645082030445337, + -0.01721159555017948, + -0.02129853516817093, + 0.03382052108645439, + 0.055885590612888336, + 0.024498814716935158, + 0.05043116956949234, + 0.016113437712192535, + 0.008138149045407772, + 0.061842914670705795, + -0.013465058989822865, + -0.004261236637830734, + 0.056876931339502335, + 0.02740003913640976, + 0.027898363769054413, + -0.043912313878536224, + 0.023380199447274208, + 0.04179693013429642, + 0.06158720701932907, + 0.0798690989613533, + 0.029070263728499413, + 0.06747853010892868, + 0.027390696108341217, + 0.07432910799980164, + -0.02600713260471821, + -0.05506778508424759, + 0.012959578074514866, + -0.037363771349191666, + -0.013481084257364273, + 0.05220263823866844, + 0.0991295725107193, + 0.030195700004696846, + 0.017819751054048538, + 0.11377216875553131, + -0.014788934029638767, + -0.003876765025779605, + 0.049765702337026596, + 0.00402150908485055, + -0.046788573265075684, + -0.07255006581544876, + 0.0036027436144649982, + 0.029494555667042732, + 0.004421242978423834, + -0.022877942770719528, + -0.07525874674320221, + 0.031826723366975784, + -0.047714054584503174, + 0.03362853452563286, + -0.041624486446380615, + -0.09888964891433716, + -0.11845050752162933, + 0.04671572521328926, + 0.016834300011396408, + 0.03731626272201538, + -0.011271022260189056, + 0.009950725361704826, + 0.014596674591302872, + -0.04956347495317459, + 0.03483779728412628, + -0.002348242560401559, + -0.030979562550783157, + 0.02547464706003666, + 0.00030559877632185817, + 0.012031751684844494, + 0.006199780851602554, + 0.03147049993276596, + -0.06126520782709122, + 0.044552721083164215, + 0.0021200983319431543, + 0.006950311362743378, + 0.027232700958848, + 0.003830084577202797, + -0.08706696331501007, + -0.02516772784292698, + 0.02034301869571209, + -0.018277663737535477, + -0.07531238347291946, + -0.15048182010650635, + -0.0736662819981575, + -0.0017078242963179946, + 0.006406276486814022, + -0.0032987771555781364, + -0.007905573584139347, + 0.014820171520113945, + -0.017770087346434593, + -0.048173174262046814, + 0.006139987148344517, + -0.006730363238602877, + 0.025676943361759186, + -0.07381638139486313, + -0.002852163277566433, + -0.02150806412100792, + -0.08640892058610916, + 0.017049899324774742, + 0.013971862383186817, + -0.02110697701573372, + -0.018533721566200256, + 0.0777643471956253, + 0.10619695484638214, + 0.15308953821659088, + 0.013471679762005806, + 0.06685273349285126, + -0.013056359253823757, + -0.021639231592416763, + -0.07718846201896667, + -0.0472278892993927, + 0.0021060402505099773, + -0.02511819452047348, + -0.024245435371994972, + -0.02822554111480713, + 0.0019559934735298157, + -0.049739427864551544, + -0.010391542688012123, + -0.11416138708591461, + -0.02538789063692093, + 0.023708470165729523, + 0.1278533637523651, + 0.10822684317827225, + 0.06456085294485092, + -0.007586674764752388, + -0.06918548047542572, + -0.00580565445125103, + -0.0768757164478302, + -0.027976365759968758, + 0.03471916541457176, + -3.8087365111725715e-33, + 0.06399940699338913, + 0.06996606290340424, + -0.03728474676609039, + 0.047180887311697006, + -0.007880070246756077, + -0.001338933128863573, + -0.07552717626094818, + 0.003263611113652587, + -0.07089941948652267, + -0.05241244286298752, + 0.06491898745298386, + 0.007470550015568733, + 0.06244223192334175, + 0.07762327790260315, + -0.0643492117524147, + -0.02924887090921402, + -0.054533451795578, + 0.04163543879985809, + 0.05250072851777077, + 0.02884107269346714, + -0.01971406303346157, + 0.03784763813018799, + 0.020747587084770203, + 0.036907464265823364, + 0.058067671954631805, + -0.04272008314728737, + 0.015725085511803627, + -0.0007454738370142877, + -0.06074775382876396, + 0.009093138389289379, + 0.03507249802350998, + -0.0025323068257421255, + 0.03560624271631241, + -0.013606597669422626, + -0.005798712372779846, + 0.06565418839454651, + -0.03534843772649765, + -0.08639504015445709, + 0.04906292259693146, + -0.05316299572587013, + -0.03483067825436592, + 0.03097279742360115, + -0.03965498507022858, + -0.02243872731924057, + 0.014988912269473076, + 0.07374772429466248, + -0.006848654709756374, + 0.010379096493124962, + 0.13133735954761505, + -0.027592379599809647, + 0.015072264708578587, + -0.049641095101833344, + -0.02124004065990448, + -0.0008355394820682704, + -0.000444059754954651, + -0.04466240853071213, + 0.012599995359778404, + 0.03663627430796623, + -0.0027931220829486847, + 0.0004522005037870258, + 0.05559829622507095, + 0.01665775291621685, + -0.02341904491186142, + 0.04080052301287651, + -0.08809813857078552, + 0.006007231306284666, + -0.1125713437795639, + 0.05974914878606796, + 0.11518266797065735, + -0.035285525023937225, + -0.06621038913726807, + 0.05580928549170494, + -0.017379233613610268, + 0.053219687193632126, + -0.02557448111474514, + -0.03089587204158306, + 0.025356363505125046, + -0.053157176822423935, + 0.030117571353912354, + -0.052085213363170624, + -0.07128381729125977, + -0.017905429005622864, + -0.0045106676407158375, + 0.09128401428461075, + 0.02994791977107525, + 0.05319291353225708, + 0.0458354726433754, + -0.10777988284826279, + -0.028334008529782295, + 0.04630151391029358, + -0.10803043097257614, + 0.007918188348412514, + 0.020204907283186913, + -0.013265082612633705, + -0.04663555324077606, + 6.8646716545636686e-34, + 0.027699049562215805, + 0.009793202392756939, + -0.10080047696828842, + 0.047044575214385986, + -0.034042224287986755, + 0.08980029821395874, + -0.01769970916211605, + 0.019913146272301674, + 0.001254151575267315, + 0.023199886083602905, + -0.07355086505413055, + -0.017877383157610893, + -0.03405743092298508, + -0.027404731139540672, + -0.05475927144289017, + -0.048201896250247955, + 0.007555962540209293, + 0.021379608660936356, + -0.029439911246299744, + 0.05358674004673958, + -0.030097253620624542, + -0.011225375346839428, + 0.0030711437575519085, + 0.05574510991573334, + 0.05093934014439583, + 0.037640832364559174, + -0.029083624482154846, + -0.08438416570425034, + -0.025361107662320137, + -0.0496826097369194, + -0.02160109579563141, + -0.04979327321052551, + -0.015742182731628418, + 0.006756543647497892, + -0.03695712983608246, + -0.011854533106088638, + 0.0438811369240284, + -0.005140243098139763, + -0.04656802490353584, + 0.0698997899889946, + 0.1084134429693222, + 0.07273632287979126, + 0.0728742778301239, + 0.02589312568306923, + -0.05282457545399666, + -0.03205673396587372, + -0.06988320499658585, + 0.0023226148914545774, + -0.10512249171733856, + 0.04716450348496437, + -0.008688516914844513, + -0.06604839116334915, + -0.02836684137582779, + -0.021440522745251656, + -0.07695475965738297, + -0.01585586555302143, + 0.04175497964024544, + -0.07868726551532745, + -0.028222007676959038, + -0.018953640013933182, + -0.0273726899176836, + 0.059756506234407425, + 0.007659558672457933, + 0.02598690241575241, + 0.07330656051635742, + -0.08922849595546722, + 0.035435110330581665, + -0.015698442235589027, + -0.0038378105964511633, + 0.03591655567288399, + 0.04897566884756088, + -0.02440660074353218, + -0.04565669223666191, + -0.052382342517375946, + 0.07718952000141144, + -0.05446022003889084, + -0.03370700404047966, + -0.10184869915246964, + -0.07521161437034607, + -0.04644334316253662, + -0.02208074927330017, + 0.00029073504265397787, + 0.004148679319769144, + 0.04179934412240982, + -0.06245286017656326, + 0.005867853760719299, + 0.01190680917352438, + -0.002965459367260337, + -0.020056109875440598, + 0.053521133959293365, + -0.05318884551525116, + 0.01994950696825981, + 0.08410872519016266, + 0.013627700507640839, + -0.0513240210711956, + -2.0283335899762278e-08, + -0.05872634798288345, + -0.06057241931557655, + -0.02720426395535469, + -0.05335111543536186, + 0.05476997792720795, + -0.08431324362754822, + -0.00938214547932148, + -0.053029634058475494, + 0.014058995060622692, + -0.042139362543821335, + 0.06763523072004318, + -0.02657284401357174, + -0.10685985535383224, + -0.09045765548944473, + 0.016926700249314308, + -0.009136097505688667, + 0.023515980690717697, + -0.02522449754178524, + -0.05483737215399742, + -0.05842512100934982, + -0.02299867942929268, + 0.06481602042913437, + -0.021512623876333237, + -0.05285641551017761, + 0.08263029903173447, + 0.023655787110328674, + -0.021052952855825424, + 0.12656982243061066, + 0.04317086189985275, + 0.035520441830158234, + 0.02644641511142254, + 0.053882893174886703, + 0.03690291941165924, + -0.04379173368215561, + -0.04763200506567955, + -0.025769108906388283, + 0.07922756671905518, + 0.010967598296701908, + 0.08588720858097076, + 0.13247328996658325, + -0.01919141598045826, + 0.04424623027443886, + -0.10479994118213654, + 0.03546017408370972, + 0.07706392556428909, + -0.032336074858903885, + -0.028694575652480125, + -0.016781341284513474, + -0.05454488471150398, + -0.14473144710063934, + -0.04336719587445259, + 0.0018346271244809031, + 0.047840412706136703, + 0.10199733078479767, + -0.031739361584186554, + 0.053835298866033554, + 0.06344589591026306, + 0.03923441469669342, + 0.023413514718413353, + -0.033924397081136703, + 0.11307233572006226, + 0.03851478546857834, + 0.03778727352619171, + 0.01812932826578617 + ], + "note-blank-bold||notes,note-taking,memorandum,post-it,reminders": [ + -0.033508699387311935, + 0.030190909281373024, + -0.00912457425147295, + 0.004626240581274033, + -0.02158813364803791, + 0.04286642000079155, + 0.04009373113512993, + 0.02120635285973549, + 0.06120039522647858, + 0.0036662258207798004, + 0.026207594200968742, + 0.047461897134780884, + -0.013904144056141376, + -0.026192190125584602, + 0.040952056646347046, + 0.06289095431566238, + 0.014895481057465076, + -0.06959258764982224, + 0.022507861256599426, + 0.03574511408805847, + 0.05762806534767151, + 0.09426423907279968, + 0.03765670582652092, + 0.04610176384449005, + 0.030281241983175278, + 0.0833321362733841, + -0.035787228494882584, + -0.06009206548333168, + 0.014062563888728619, + -0.01765947975218296, + -0.010477742180228233, + 0.03403370827436447, + 0.11537972092628479, + 0.008368047885596752, + 0.06618127226829529, + 0.09410274028778076, + 0.010847537778317928, + 0.02292119711637497, + 0.042863715440034866, + -0.0005493804928846657, + -0.03404529392719269, + -0.06396038085222244, + -0.01247887872159481, + 0.052769735455513, + 7.378885493380949e-05, + -0.0237441323697567, + -0.06740076094865799, + 0.0007358752773143351, + -0.03130685165524483, + 0.022424781695008278, + -0.03244443237781525, + -0.10183562338352203, + -0.13613666594028473, + 0.04368053376674652, + 0.034915708005428314, + 0.03127233684062958, + -0.026186199858784676, + 0.019275087863206863, + 0.0018261382356286049, + -0.04683166742324829, + 0.03657687082886696, + 0.02073817141354084, + -0.04162025451660156, + 0.03259704262018204, + 0.010420075617730618, + 0.02266748808324337, + -0.004682273603975773, + 0.01692885346710682, + -0.05307330563664436, + 0.039833493530750275, + 0.003742852248251438, + 0.02197565883398056, + 0.023053718730807304, + 0.017319483682513237, + -0.10130152851343155, + -0.029543466866016388, + 0.0016418900340795517, + -0.023009754717350006, + -0.06952311098575592, + -0.1126675009727478, + -0.06631461530923843, + -0.014785637147724628, + -0.027035493403673172, + -0.004431131761521101, + -0.014640239998698235, + 0.029117798432707787, + -0.011657178401947021, + -0.0553177073597908, + 0.0014871703460812569, + -0.0022091062273830175, + 0.0002976546820718795, + -0.04796484857797623, + -0.012568332254886627, + -0.01759817637503147, + -0.09935545921325684, + 0.018501032143831253, + 0.03383278846740723, + -0.011997493915259838, + -0.015102126635611057, + 0.09654682129621506, + 0.1001667007803917, + 0.1060359850525856, + 0.027759457007050514, + 0.07618826627731323, + -0.02275661565363407, + -0.011236286722123623, + -0.06694748997688293, + -0.027127090841531754, + -0.024239467456936836, + -0.017579009756445885, + 0.024968212470412254, + -0.05659673362970352, + 0.00018095161067321897, + -0.06737078726291656, + -0.03968597948551178, + -0.10754962265491486, + -0.040224555879831314, + 0.0035237655974924564, + 0.11628085374832153, + 0.13379421830177307, + 0.06770899146795273, + -0.027019429951906204, + -0.07175154983997345, + -0.002556233899667859, + -0.08294352889060974, + -0.018274834379553795, + 0.03305139020085335, + -4.166522094074336e-33, + 0.07250063866376877, + 0.07554857432842255, + -0.02522752620279789, + 0.06013688072562218, + 0.020396266132593155, + 0.0032214559614658356, + -0.08188989758491516, + -0.0011697402223944664, + -0.052654244005680084, + -0.026614058762788773, + 0.07196519523859024, + -0.011922275647521019, + 0.06222066655755043, + 0.07808933407068253, + -0.0629279688000679, + -0.033515091985464096, + -0.021466879174113274, + 0.0261386688798666, + 0.04653249680995941, + 0.018198741599917412, + -0.021982163190841675, + 0.05908949300646782, + 0.02999698370695114, + 0.039345964789390564, + 0.044729165732860565, + -0.046359773725271225, + 0.016053274273872375, + -0.028684644028544426, + -0.07438293844461441, + 0.008633165620267391, + 0.02412758581340313, + -0.007357665803283453, + 0.06587082147598267, + -0.03704994171857834, + -0.033129915595054626, + 0.071041040122509, + -0.050125960260629654, + -0.09485610574483871, + 0.044754758477211, + -0.048340652137994766, + -0.05292511731386185, + 0.01680741086602211, + -0.03719627484679222, + -0.03172437101602554, + 0.025989854708313942, + 0.05075353384017944, + 0.008658611215651035, + 0.01673603244125843, + 0.12430375069379807, + 0.0022369730286300182, + -0.0028542932122945786, + -0.046308450400829315, + -0.012831890024244785, + 0.017592009156942368, + -0.015008148737251759, + -0.039148423820734024, + 0.011492600664496422, + 0.006942794192582369, + -0.0260495413094759, + -0.02243047021329403, + 0.06946771591901779, + 0.03187234699726105, + -0.03627294301986694, + 0.027496790513396263, + -0.07142647355794907, + 0.0034831908997148275, + -0.09518416970968246, + 0.027126779779791832, + 0.10153116285800934, + -0.07362265884876251, + -0.05517256632447243, + 0.032244108617305756, + -0.03350142762064934, + 0.06321844458580017, + -0.02113911136984825, + -0.026633888483047485, + 0.03619774430990219, + -0.061213962733745575, + 0.05137964338064194, + -0.05174284428358078, + -0.014066049829125404, + -0.018276281654834747, + 0.0019097428303211927, + 0.07261179387569427, + -0.006373037584125996, + 0.052450377494096756, + 0.04303598776459694, + -0.06896662712097168, + -0.034461330622434616, + 0.03317545726895332, + -0.10600569099187851, + -0.010951635427772999, + -0.012772721238434315, + -0.015505258925259113, + -0.039993684738874435, + 9.677765093438236e-34, + 0.02586366981267929, + 0.011243508197367191, + -0.08838614076375961, + 0.0415375642478466, + -0.05202426761388779, + 0.10073661059141159, + 0.02633599378168583, + 0.023930387571454048, + 0.03108251839876175, + 0.0402645580470562, + -0.03425288200378418, + -0.008050533942878246, + -0.02845226414501667, + -0.01623540371656418, + -0.06139006465673447, + -0.036551669239997864, + -0.011434015817940235, + 0.03232899680733681, + -0.02502620965242386, + 0.07871409505605698, + -0.03372840955853462, + -0.0045602708123624325, + -0.02387750893831253, + 0.04114540293812752, + 0.0745079293847084, + 0.03405668959021568, + -0.01889743283390999, + -0.078048475086689, + -0.03891493380069733, + -0.044633105397224426, + 0.00967368483543396, + -0.04602095112204552, + -0.007669711951166391, + -0.0020354180596768856, + -0.03847893700003624, + -0.01855483651161194, + 0.04683437943458557, + 0.003284397767856717, + -0.04948420822620392, + 0.07488575577735901, + 0.09046187996864319, + 0.0738118439912796, + 0.06903965771198273, + 0.02618253231048584, + -0.06605850160121918, + -0.02759321592748165, + -0.08910206705331802, + 0.014988097362220287, + -0.08418776094913483, + 0.02546912431716919, + -0.028692418709397316, + -0.06697431951761246, + -0.03710984066128731, + -0.029737235978245735, + -0.08163221925497055, + -0.009849600493907928, + 0.035494446754455566, + -0.05147910490632057, + -0.030697595328092575, + -0.03861197456717491, + -0.02213383838534355, + 0.0727551132440567, + -0.010653819888830185, + 0.02241210639476776, + 0.0807592123746872, + -0.08478467166423798, + 0.04012152925133705, + 0.017653057351708412, + -0.017586085945367813, + 0.0060730380937457085, + 0.025871846824884415, + -0.03852943703532219, + -0.049672070890665054, + -0.08808233588933945, + 0.08374521136283875, + -0.018963351845741272, + -0.031679827719926834, + -0.09420463442802429, + -0.08496598899364471, + -0.02942459098994732, + -0.010040475986897945, + -0.008033870719373226, + 0.000437025330029428, + 0.0515795573592186, + -0.050019364804029465, + 0.01559520699083805, + 0.003563736332580447, + -0.0113329216837883, + -0.02491694688796997, + 0.06349603086709976, + -0.056651048362255096, + 0.04537690058350563, + 0.10280894488096237, + 0.03565508499741554, + -0.060038574039936066, + -2.0806218969937618e-08, + -0.05223618820309639, + -0.05734190344810486, + -0.017618566751480103, + -0.061149515211582184, + 0.025452204048633575, + -0.09886838495731354, + -0.002212620573118329, + -0.08096548914909363, + 0.029680069535970688, + -0.03407477214932442, + 0.048046570271253586, + -0.02594490349292755, + -0.1366412490606308, + -0.11467994004487991, + 0.0060895634815096855, + 0.004862596746534109, + 0.004802156705409288, + -0.012266166508197784, + -0.04371514543890953, + -0.06931360065937042, + -0.020298074930906296, + 0.05954493582248688, + -0.036301031708717346, + -0.04606981948018074, + 0.08105196803808212, + 0.016610203310847282, + -0.022590909153223038, + 0.11241741478443146, + 0.049531109631061554, + 0.03374926373362541, + 0.04042789340019226, + 0.0705343708395958, + 0.057936325669288635, + -0.06271354854106903, + -0.048502739518880844, + -0.0033292658627033234, + 0.0953158587217331, + 0.03172275051474571, + 0.06067785993218422, + 0.12160970270633698, + -0.01098441518843174, + 0.007835818454623222, + -0.0957883968949318, + 0.012568069621920586, + 0.05498018115758896, + -0.03604229912161827, + -0.012727286666631699, + -0.013866499997675419, + -0.041678473353385925, + -0.15399114787578583, + -0.03713702782988548, + 0.019245879724621773, + 0.03321312367916107, + 0.08752834051847458, + -0.03744461014866829, + 0.04042183235287666, + 0.0972147285938263, + 0.06723557412624359, + 0.017948990687727928, + -0.05737055838108063, + 0.12233751267194748, + 0.04521851986646652, + 0.014291294850409031, + 0.027767254039645195 + ], + "note-pencil-bold||notes,note-taking,memorandum,post-it,reminders": [ + -0.052260871976614, + -0.0023063230328261852, + -0.012084239162504673, + -0.012287304736673832, + -0.044005513191223145, + 0.03406184911727905, + 0.07632274925708771, + 0.03612431883811951, + 0.03993401303887367, + 0.03597089648246765, + 0.012573677115142345, + 0.06397400051355362, + -0.027317816391587257, + 0.009764931164681911, + 0.03486066311597824, + 0.02974872663617134, + 0.004123368300497532, + -0.06921552121639252, + 0.0334571972489357, + 0.04442456364631653, + 0.07099106907844543, + 0.05153965950012207, + 0.04351174086332321, + 0.05993944779038429, + 0.04276673495769501, + 0.0725901648402214, + -0.02089209482073784, + -0.0508967749774456, + 0.014188419096171856, + -0.027412638068199158, + -0.035445377230644226, + 0.032644931226968765, + 0.10438575595617294, + 0.01286742277443409, + 0.04204755648970604, + 0.08399899303913116, + -0.030028460547327995, + 0.013006351888179779, + 0.05156758427619934, + -0.003304042387753725, + -0.03521164879202843, + -0.07571425288915634, + -0.004155375994741917, + 0.05275643616914749, + 0.010371829383075237, + -0.059592317789793015, + -0.04710329696536064, + 0.03022007830440998, + -0.05107851326465607, + 0.051706429570913315, + -0.04003647342324257, + -0.09581402689218521, + -0.15424418449401855, + 0.009076423943042755, + 0.01387031376361847, + 0.04223963990807533, + 0.0014671140816062689, + 0.011183084920048714, + 0.032781489193439484, + -0.04029275104403496, + 0.02732284553349018, + 0.00878091249614954, + -0.023130109533667564, + 0.017412597313523293, + -0.006011432036757469, + 0.0281249787658453, + 0.0038619583938270807, + 0.011739138513803482, + -0.046195100992918015, + 0.036356519907712936, + 0.011272713541984558, + 0.019931631162762642, + 0.02246955968439579, + -0.018316475674510002, + -0.05038006603717804, + -0.03389856219291687, + -0.0069181546568870544, + -0.009210458025336266, + -0.06323288381099701, + -0.15576937794685364, + -0.06367528438568115, + -0.00749532924965024, + 0.0024762949906289577, + 0.04767366498708725, + -0.00512592913582921, + 0.03311862051486969, + -0.0025445090141147375, + -0.051389310508966446, + 0.012009349651634693, + -0.01628759689629078, + 0.01049923524260521, + -0.05632162094116211, + -0.031170111149549484, + -0.000736312591470778, + -0.10659042000770569, + 0.003981803543865681, + 0.04760381951928139, + 0.006101959850639105, + -0.016439741477370262, + 0.06996602565050125, + 0.11459651589393616, + 0.124506376683712, + 0.024351520463824272, + 0.04662282392382622, + 0.018359161913394928, + -0.009555675089359283, + -0.07412424683570862, + -0.07491475343704224, + -0.01275831088423729, + -0.04679614305496216, + -0.010181965306401253, + -0.03815871849656105, + -0.0009768945164978504, + -0.02608463168144226, + 0.019785556942224503, + -0.10575450956821442, + -0.007381796836853027, + 0.008849681355059147, + 0.10850025713443756, + 0.12842711806297302, + 0.07164520025253296, + -0.005246071610599756, + -0.07317409664392471, + 0.00021080429723951966, + -0.08734535425901413, + -0.005143348593264818, + 0.03265141323208809, + -4.1006198400054073e-33, + 0.07157151401042938, + 0.06734292954206467, + -0.04388873651623726, + 0.03066714107990265, + -0.008971071802079678, + 0.005321200005710125, + -0.07720837742090225, + 0.01557956449687481, + -0.07433266937732697, + -0.03161684796214104, + 0.06664296239614487, + -0.01686238870024681, + 0.059160131961107254, + 0.11622083187103271, + -0.05540192499756813, + -0.011130619794130325, + -0.019270416349172592, + 0.02546520158648491, + 0.05224002152681351, + 0.009339733049273491, + -0.04185393080115318, + 0.030978253111243248, + -0.0019860833417624235, + 0.023599479347467422, + 0.05739603936672211, + -0.011442574672400951, + 0.012914203107357025, + 0.012322765775024891, + -0.04870873689651489, + 0.011025610379874706, + 0.03290417045354843, + 0.0016769529320299625, + 0.03664417564868927, + -0.04872862249612808, + -0.03729439526796341, + 0.0464351586997509, + -0.034339357167482376, + -0.09133843332529068, + 0.07022162526845932, + -0.034464094787836075, + -0.03454127907752991, + 0.028289303183555603, + -0.013072673231363297, + -0.03431814908981323, + 0.021114811301231384, + 0.07972191274166107, + -0.02203582413494587, + 0.03138085454702377, + 0.11676694452762604, + -0.02930816449224949, + -0.004618105944246054, + -0.024410897865891457, + 0.012591945938766003, + 0.01409021858125925, + 0.0031924638897180557, + -0.06313275545835495, + 0.02046957053244114, + 0.04817820340394974, + -0.006286383606493473, + -0.014477071352303028, + 0.06027022376656532, + 0.038265835493803024, + -0.05350075289607048, + 0.05955659598112106, + -0.09911037981510162, + 0.029295815154910088, + -0.10562828928232193, + 0.048108309507369995, + 0.11901985853910446, + -0.04444395378232002, + -0.0891866609454155, + 0.06391488760709763, + -0.013489214703440666, + 0.028932884335517883, + -0.041176650673151016, + -0.03892598673701286, + 0.015312736853957176, + -0.04857213795185089, + 0.02844550833106041, + -0.07591969519853592, + -0.07954087853431702, + -0.018509497866034508, + -0.027391182258725166, + 0.030862757936120033, + 0.002376566408202052, + 0.03485911712050438, + 0.06184544786810875, + -0.10907172411680222, + -0.03627624735236168, + 0.027662010863423347, + -0.1054481565952301, + -0.00031269315513782203, + -0.008668619208037853, + -0.023005235940217972, + -0.06506329029798508, + 1.5085544202449627e-33, + 0.03270545229315758, + 0.025318298488855362, + -0.09351114928722382, + 0.07529274374246597, + -0.03574887290596962, + 0.06853005290031433, + -0.018128369003534317, + -0.011441302485764027, + 0.03278400003910065, + 0.023330366238951683, + -0.07664088904857635, + -0.023248234763741493, + -0.022707059979438782, + -0.028998244553804398, + -0.011990471743047237, + -0.030026180669665337, + -0.0357791967689991, + 0.0407508909702301, + -0.0228401068598032, + 0.015305742621421814, + -0.05359463766217232, + -0.016610201448202133, + 0.012511055916547775, + 0.04167862609028816, + 0.05091533064842224, + 0.03324121981859207, + -0.02415403537452221, + -0.09898240119218826, + -0.029043935239315033, + -0.026746660470962524, + -0.04389419034123421, + -0.05840783938765526, + -0.0031059538014233112, + -0.004403257742524147, + -0.05651584640145302, + -0.027323370799422264, + 0.07452920824289322, + -0.04613407328724861, + -0.038662686944007874, + 0.07132817059755325, + 0.09877689182758331, + 0.05488502234220505, + 0.0964779332280159, + 0.031075002625584602, + -0.056932419538497925, + 0.001373272156342864, + -0.06244578957557678, + 0.0391383059322834, + -0.09654931724071503, + 0.06051381677389145, + -0.0038033155724406242, + -0.05976950377225876, + -0.039949145168066025, + -0.029229816049337387, + -0.08651664108037949, + -0.01358778402209282, + 0.04642341285943985, + -0.07916490733623505, + -0.02573356218636036, + -0.001552160014398396, + -0.035807423293590546, + 0.05017264932394028, + 0.006482720375061035, + 0.0367996022105217, + 0.08225107192993164, + -0.09371089190244675, + 0.047591228038072586, + -0.013935375958681107, + 0.03147732838988304, + 0.033949535340070724, + 0.06594143062829971, + 0.007964416407048702, + -0.021554116159677505, + -0.06180909648537636, + 0.09323270618915558, + -0.02096669003367424, + -0.02865980938076973, + -0.06662362068891525, + -0.05740641430020332, + -0.058248233050107956, + -0.012441722676157951, + -0.00041006880928762257, + 0.020171744748950005, + 0.05599874630570412, + -0.05588284507393837, + 0.03082743100821972, + 0.007950871251523495, + 0.01566978171467781, + -0.042023226618766785, + 0.03501342982053757, + -0.027517812326550484, + 0.0389699786901474, + 0.07561425119638443, + 0.002709417836740613, + -0.049757834523916245, + -1.9732437905872757e-08, + -0.060792434960603714, + -0.0237631443887949, + -0.03745372220873833, + -0.05417385324835777, + 0.06346253305673599, + -0.0701620802283287, + 0.030993951484560966, + -0.03435562551021576, + 0.01129534188657999, + -0.004299543797969818, + 0.09493570029735565, + -0.030703142285346985, + -0.10192504525184631, + -0.08939044177532196, + 0.0010521906660869718, + -0.0006973365088924766, + 0.02345067821443081, + -0.020067136734724045, + -0.0618508905172348, + -0.046840667724609375, + -0.011145414784550667, + 0.055555060505867004, + -0.030045444145798683, + -0.03698710724711418, + 0.03380901366472244, + 0.021550029516220093, + -0.034141018986701965, + 0.12924101948738098, + 0.030259981751441956, + 0.06730097532272339, + 0.02252417616546154, + 0.05134572461247444, + 0.06012173369526863, + -0.03366851061582565, + -0.044187407940626144, + -0.04150235280394554, + 0.0697600468993187, + 0.03041081875562668, + 0.07271607965230942, + 0.15496855974197388, + -0.02780052088201046, + 0.00048399227671325207, + -0.11394575238227844, + 0.01579401083290577, + 0.06315799802541733, + -0.05841682851314545, + 0.00865573063492775, + -0.023583954200148582, + -0.06503526121377945, + -0.13421355187892914, + -0.0695616602897644, + -0.001644639763981104, + 0.04633473977446556, + 0.06528370082378387, + -0.03342944756150246, + 0.03713132068514824, + 0.055944476276636124, + 0.07670839130878448, + -0.0006579604232683778, + -0.03291402384638786, + 0.0897289514541626, + 0.03431856632232666, + 0.014400281012058258, + 0.01141006126999855 + ], + "notebook-bold||notes,note-taking,memorandum,journal,diary,logs,logbook": [ + -0.025559378787875175, + -5.233569027041085e-05, + -0.050329942256212234, + 0.014770972542464733, + -0.009970271959900856, + 0.0056833308190107346, + 0.02687889151275158, + 0.000981573131866753, + 0.0734487771987915, + 0.024228613823652267, + 0.02309098280966282, + 0.06628638505935669, + -0.0032188838813453913, + 0.0024054415989667177, + 0.044585131108760834, + 0.03226260468363762, + -0.01521026436239481, + -0.029910825192928314, + 0.005517472978681326, + 0.07743886113166809, + 0.08546989411115646, + 0.10045512765645981, + 0.0412701740860939, + 0.04983542859554291, + 0.07273700833320618, + 0.01895456202328205, + 0.0026489223819226027, + -0.049873802810907364, + 0.010339265689253807, + -0.05288391932845116, + -0.00990777276456356, + 0.03271617367863655, + 0.07449384778738022, + 0.0719384104013443, + 0.056829772889614105, + -0.010293358005583286, + -0.023298365995287895, + -0.007878857664763927, + 0.09378194063901901, + -0.0060872468166053295, + -0.031221512705087662, + -0.08371251821517944, + -0.003170812502503395, + 0.02674333192408085, + -0.019252823665738106, + -0.0437413826584816, + -0.06650283187627792, + -0.0041816579177975655, + -0.038967955857515335, + 0.037767570465803146, + -0.0349360890686512, + -0.08389273285865784, + -0.14221151173114777, + 0.045349135994911194, + 0.0038847567047923803, + 0.04259895533323288, + -0.056942667812108994, + -0.007634194102138281, + 0.026993580162525177, + -0.028451118618249893, + 0.008388498798012733, + 0.041375041007995605, + -0.012574887834489346, + 0.043701041489839554, + 0.012358267791569233, + 0.00510415667667985, + 0.019421307370066643, + 0.05055999755859375, + -0.011939898133277893, + 0.051367469131946564, + -0.01770182140171528, + 0.01812681369483471, + 0.014638252556324005, + -0.036561693996191025, + -0.043215569108724594, + -0.043639104813337326, + 0.007863283157348633, + 0.030272627249360085, + -0.03400043770670891, + -0.14222273230552673, + -0.087164007127285, + -0.012490164488554, + 0.036781370639801025, + 0.07468870282173157, + -0.006525762844830751, + 0.01939404010772705, + -0.040326207876205444, + -0.06868347525596619, + -0.005421533714979887, + -0.026357386261224747, + -0.02067394368350506, + -0.08024583011865616, + 0.059871502220630646, + 0.013091296888887882, + -0.1347481906414032, + 0.011091542430222034, + 0.05749627202749252, + 0.03688203915953636, + 0.037785183638334274, + 0.053105611354112625, + 0.08019017428159714, + 0.14956547319889069, + 0.04975438117980957, + 0.04426458105444908, + -0.038837336003780365, + -0.04577350988984108, + -0.009253988042473793, + -0.07804114371538162, + -0.020751358941197395, + -0.018788842484354973, + -0.007087974809110165, + -0.02055218815803528, + -0.039499714970588684, + -0.04206506907939911, + 0.002364818239584565, + -0.0803569033741951, + -0.019712455570697784, + -0.017495959997177124, + 0.09152885526418686, + 0.16048406064510345, + 0.02898329310119152, + 0.021892815828323364, + -0.04339837655425072, + -0.030867669731378555, + -0.09175867587327957, + 0.004778594709932804, + 0.04212157055735588, + -2.923146434240915e-33, + 0.08117908239364624, + 0.07592631131410599, + -0.052714016288518906, + 0.056175392121076584, + 0.02951056696474552, + 0.05413561686873436, + -0.0890590101480484, + -0.04129652678966522, + -0.11333110183477402, + 0.012793769128620625, + 0.01608414016664028, + 0.06584112346172333, + 0.010028191842138767, + 0.07861514389514923, + -0.010474886745214462, + 0.010429436340928078, + -0.06568124145269394, + 0.019023284316062927, + 0.007563435006886721, + 0.0040192087180912495, + -0.03578030690550804, + 0.05600082129240036, + 0.014276892878115177, + 0.0174258965998888, + 0.06572607904672623, + -0.00012347224401310086, + 0.025704337283968925, + -0.023624751716852188, + -0.09808514267206192, + 0.030349107459187508, + 0.03596339374780655, + -0.03866647556424141, + 0.0007875446463003755, + -0.07482893764972687, + -0.012609388679265976, + 0.06116955727338791, + -0.044858064502477646, + -0.045971404761075974, + 0.07174010574817657, + -0.03788023069500923, + -0.10568025708198547, + 0.0003374023362994194, + -0.043833501636981964, + -0.0529436431825161, + 0.032705824822187424, + 0.14040140807628632, + -0.034549370408058167, + 0.05987146496772766, + 0.06712460517883301, + -0.02176825888454914, + -0.032806262373924255, + -0.06976250559091568, + 0.022450823336839676, + -0.039077278226614, + 0.009252690710127354, + -0.03295460343360901, + 0.05319838225841522, + 0.045661333948373795, + -0.0040091159753501415, + 0.042284294962882996, + 0.05429386720061302, + 0.03269529715180397, + -0.0026810187846422195, + 0.024306178092956543, + -0.073263980448246, + 0.07449080049991608, + -0.0544726699590683, + 0.042135775089263916, + 0.08883534371852875, + -0.05033861845731735, + -0.0737771987915039, + 0.02975553832948208, + 0.03558601811528206, + 0.029631854966282845, + -0.030301984399557114, + -0.004697913769632578, + 0.009465203620493412, + -0.028317870572209358, + -0.04693140834569931, + -0.05268136039376259, + -0.10090792924165726, + -0.026618288829922676, + -0.04664119333028793, + 0.05652470886707306, + -0.024233689531683922, + 0.047569677233695984, + 0.009275419637560844, + -0.09596677124500275, + -0.02969546802341938, + 0.037471286952495575, + -0.07176677137613297, + 0.04359973967075348, + 0.02722533978521824, + -0.03154470771551132, + -0.07245855033397675, + 1.858686386979172e-34, + 0.03318050131201744, + 0.04029329866170883, + -0.07377886027097702, + 0.0006759176030755043, + 0.008426297456026077, + 0.07012960314750671, + 0.013793274760246277, + -0.002684510312974453, + 0.0050279381684958935, + 0.013297774828970432, + -0.003610072424635291, + -0.03212122991681099, + -0.07024247944355011, + -0.015639448538422585, + -0.017170222476124763, + 0.012092300690710545, + -0.01802985556423664, + 0.01865033432841301, + -0.03333614766597748, + 0.030884254723787308, + -0.05107685551047325, + -0.013439769856631756, + -0.022947972640395164, + 0.09599174559116364, + 0.06881396472454071, + 0.013044646941125393, + -0.027177605777978897, + -0.06318250298500061, + -0.03202385455369949, + -0.0366717167198658, + 0.00047646393068134785, + -0.0740903913974762, + 0.02033749222755432, + 0.011044046841561794, + -0.05524898320436478, + -0.035618193447589874, + 0.0713675394654274, + -0.04401961341500282, + -0.008638032712042332, + 0.010658977553248405, + 0.04968542233109474, + 0.0696699395775795, + 0.044047389179468155, + 0.0328092947602272, + -0.04963117837905884, + -0.021633215248584747, + -0.07971087098121643, + -0.046162620186805725, + -0.0787498950958252, + 0.013706458732485771, + -0.002254893071949482, + -0.08044881373643875, + -0.005816569086164236, + 0.001166887697763741, + -0.09785103797912598, + 0.011766436509788036, + 0.0316975899040699, + -0.0221053808927536, + -0.017587317153811455, + 0.005796056240797043, + -0.05206581950187683, + 0.07413140684366226, + 0.014767670072615147, + 0.06141415610909462, + 0.017627345398068428, + -0.13144809007644653, + 0.019401198253035545, + -0.004037357866764069, + -0.039565298706293106, + -0.01958242803812027, + 0.02190050296485424, + -0.027372416108846664, + -0.01136621180921793, + 0.007914865389466286, + 0.06144297495484352, + -0.013748612254858017, + -0.018261199817061424, + -0.12628775835037231, + -0.0960840955376625, + -0.01555160153657198, + -0.02727547474205494, + 0.005154139827936888, + -0.02358345128595829, + 0.05705767497420311, + -0.05305608734488487, + -0.01061175111681223, + 0.011868935078382492, + -0.010746296495199203, + -0.027491161599755287, + -0.004663397558033466, + -0.004827477503567934, + 0.01128328125923872, + 0.03106219880282879, + 0.040230315178632736, + -0.05057777464389801, + -1.985593378606154e-08, + -0.07776516675949097, + -0.06324607133865356, + -0.013865014538168907, + -0.035232678055763245, + 0.052424125373363495, + -0.07029376178979874, + 0.01981733925640583, + 0.014019321650266647, + -0.010074694640934467, + 0.025111980736255646, + 0.07876809686422348, + -0.0035182524006813765, + -0.1071249470114708, + -0.0733562782406807, + 0.012432181276381016, + 0.0014181031147018075, + 0.030024876818060875, + 0.0029671562369912863, + -0.033287279307842255, + -0.05162292346358299, + 0.029564056545495987, + 0.05013829842209816, + 0.016932211816310883, + 0.010030870325863361, + 0.08963105827569962, + 0.0009851740906015038, + -0.05686607211828232, + 0.06133734807372093, + 0.03653520345687866, + 0.0385359451174736, + 0.03650179132819176, + 0.10177991539239883, + 0.06186980754137039, + -0.029431138187646866, + -0.07451988756656647, + -0.03594934940338135, + 0.0906042829155922, + 0.007049307227134705, + 0.03161929175257683, + 0.14986053109169006, + -0.04035455361008644, + -0.042802151292562485, + -0.09421604126691818, + -0.008479809388518333, + 0.03680385649204254, + -0.03657001256942749, + 0.002820801455527544, + -0.009310880675911903, + -0.010414385236799717, + -0.11443951725959778, + -0.019712397828698158, + -0.007152560167014599, + 0.08646538853645325, + 0.06189872324466705, + -0.07178891450166702, + 0.013752913102507591, + 0.015999630093574524, + 0.07995511591434479, + 0.04081069678068161, + -0.06622233986854553, + 0.16814202070236206, + 0.025206346064805984, + 0.041343096643686295, + -0.02612941898405552 + ], + "notepad-bold||*updated*,logs,logbook,notes,note-taking,memorandum,journal,diary": [ + -0.02076028287410736, + -0.012613547965884209, + -0.04914013668894768, + 0.03413180261850357, + 0.03299441933631897, + -0.0027720958460122347, + 0.03217276558279991, + -0.028028199449181557, + 0.05999390035867691, + 0.050285156816244125, + 0.043644122779369354, + 0.05310264229774475, + -0.005492851138114929, + -0.047346215695142746, + 0.05272059142589569, + 0.06290120631456375, + -0.02969185821712017, + -0.005232590716332197, + 0.0037998531479388475, + 0.045021165162324905, + 0.041534408926963806, + 0.13515348732471466, + 0.050835005939006805, + 0.0473402701318264, + 0.05342501401901245, + 0.06601391732692719, + -0.0018690392607823014, + -0.038067374378442764, + -0.0106827262789011, + -0.029349958524107933, + -0.035038288682699203, + 0.018628910183906555, + 0.098134845495224, + 0.06384068727493286, + 0.058556921780109406, + 0.03409543260931969, + -0.03651745244860649, + -0.007602667901664972, + 0.08490073680877686, + 0.02018119767308235, + -0.033462315797805786, + -0.09086162596940994, + 0.01387839112430811, + 0.009806963615119457, + -0.025227010250091553, + -0.05895840376615524, + -0.06961648911237717, + -0.020137827843427658, + -0.01651701331138611, + 0.035030022263526917, + -0.0178142711520195, + -0.1066095381975174, + -0.13809356093406677, + 0.02362300455570221, + 0.0020018508657813072, + 0.009567219763994217, + -0.0359593890607357, + -0.03398957476019859, + 0.026474878191947937, + -0.049215298146009445, + 0.003604807425290346, + 0.07185667008161545, + 0.015272913500666618, + 0.015114949084818363, + 0.008680226281285286, + -0.004457577597349882, + -0.0014319885522127151, + 0.033659763634204865, + 0.010837201960384846, + 0.04965686425566673, + -0.02568149007856846, + 0.018400609493255615, + -0.0014668721705675125, + -0.04010237380862236, + -0.06798259168863297, + -0.03739175945520401, + 0.029281310737133026, + 0.03393181413412094, + -0.005242964718490839, + -0.11887586116790771, + -0.046038396656513214, + -0.03633583337068558, + 0.04116130992770195, + 0.07092787325382233, + 0.03804721683263779, + 0.020795587450265884, + -0.025761980563402176, + -0.053160410374403, + -0.005068617407232523, + -0.0038073179312050343, + 0.016142187640070915, + -0.08055540919303894, + 0.045353226363658905, + 0.005396419204771519, + -0.15416038036346436, + 0.012681649997830391, + 0.032087791711091995, + 0.025303171947598457, + -0.006586126517504454, + 0.06228015571832657, + 0.07275866717100143, + 0.1224987655878067, + 0.0251412745565176, + 0.03999503701925278, + -0.04671590030193329, + -0.024002477526664734, + 0.0012349076569080353, + -0.04871474578976631, + -0.006174344569444656, + -0.010616891086101532, + 0.0037439672742038965, + -0.051330484449863434, + -0.05885123461484909, + -0.06578409671783447, + -0.013321259059011936, + -0.07242770493030548, + -0.016458773985505104, + -0.01676493138074875, + 0.07187891006469727, + 0.18099075555801392, + 0.059033170342445374, + -0.011699293740093708, + -0.053303372114896774, + -0.04349422827363014, + -0.06540773063898087, + 0.015647735446691513, + 0.0703628659248352, + -1.7668322941332087e-33, + 0.0812426507472992, + 0.0744871273636818, + -0.03131246566772461, + 0.021624527871608734, + 0.03415250405669212, + 0.05544692277908325, + -0.1116764098405838, + -0.04459124803543091, + -0.10358981788158417, + -0.0032595000229775906, + 0.06196701526641846, + 0.047168515622615814, + -0.005527950823307037, + 0.06851634383201599, + -0.031153468415141106, + -0.02399437129497528, + -0.03550206869840622, + 0.025518124923110008, + 0.02910192497074604, + 0.001312226988375187, + -0.06490255147218704, + 0.05208473652601242, + 0.005055281799286604, + 0.015373366884887218, + 0.04673062637448311, + 0.006343168206512928, + 0.04450157657265663, + -0.015576028265058994, + -0.08233240991830826, + 0.023511968553066254, + 0.03617357462644577, + -0.0393080897629261, + 0.004451023414731026, + -0.030289579182863235, + -0.02802780270576477, + 0.04115936905145645, + -0.07330915331840515, + -0.053669728338718414, + 0.047839924693107605, + -0.02932271547615528, + -0.11040124297142029, + -0.009688157588243484, + -0.01599172130227089, + -0.06762069463729858, + 0.03972785547375679, + 0.12941578030586243, + -0.05128719285130501, + 0.05527692660689354, + 0.092160165309906, + -0.048575930297374725, + -0.024398701265454292, + -0.018897678703069687, + 0.012721575796604156, + -0.03185298666357994, + 0.004891728516668081, + -0.048394158482551575, + 0.04179117828607559, + 0.031534675508737564, + 0.0023308508098125458, + 0.007839970290660858, + 0.040344610810279846, + 0.018619325011968613, + 0.019873401150107384, + -0.003047827398404479, + -0.07222482562065125, + 0.06666354089975357, + -0.00981916207820177, + 0.014912396669387817, + 0.10088149458169937, + -0.023384543135762215, + -0.0638967975974083, + 0.03331616893410683, + 0.04942778870463371, + 0.07313209027051926, + -0.06602202355861664, + -0.021405164152383804, + 0.0037665916606783867, + -0.032427236437797546, + -0.019626125693321228, + -0.04699443280696869, + -0.07696039974689484, + -0.0444493293762207, + -0.038329027593135834, + 0.08324228227138519, + 0.0026516790967434645, + 0.033032067120075226, + -0.008239327929913998, + -0.0678776204586029, + -0.03906252607703209, + 0.01183706521987915, + -0.08029872924089432, + 0.0455305390059948, + -0.03033246286213398, + -0.052239738404750824, + -0.08462705463171005, + -7.414651941357319e-34, + 0.024132315069437027, + 0.02504301629960537, + -0.10219287127256393, + -0.026657503098249435, + -0.031495917588472366, + 0.043031398206949234, + -0.012789316475391388, + 0.018381597474217415, + 0.0460946187376976, + 0.020906928926706314, + 0.0496985949575901, + -0.013210528530180454, + -0.07224907726049423, + -0.05479944869875908, + -0.01886504329741001, + 0.05943809449672699, + -0.04106025770306587, + 0.050581496208906174, + -0.04038194939494133, + -0.008859009481966496, + -0.03550559654831886, + -0.005078251473605633, + -0.006501867435872555, + 0.10006095468997955, + 0.0706992819905281, + -0.015662213787436485, + -0.016810229048132896, + -0.04180692881345749, + -0.005954727530479431, + -0.05098624899983406, + 0.011239486746490002, + -0.04523907229304314, + 0.008681364357471466, + 0.019428877159953117, + -0.019377073273062706, + -0.0119876554235816, + 0.07228682935237885, + -0.04303507134318352, + -0.005307149142026901, + 0.050098102539777756, + 0.05564501881599426, + 0.0795341357588768, + 0.06903250515460968, + 0.02470330521464348, + -0.048741135746240616, + -0.027303144335746765, + -0.08172215521335602, + -0.024470770731568336, + -0.05756343901157379, + 0.02742720954120159, + 0.0023443882819265127, + -0.10511500388383865, + -0.01022995263338089, + 0.0023928063455969095, + -0.09088049829006195, + 0.030766500160098076, + 0.04134637862443924, + -0.014222614467144012, + -0.07259444147348404, + -0.003195942612364888, + -0.07633324712514877, + 0.08133108913898468, + 0.017753014340996742, + 0.04757091403007507, + 0.02829679287970066, + -0.10192084312438965, + 0.007642226293683052, + -0.010846853256225586, + -0.02590528503060341, + -0.04353974759578705, + 0.04083574563264847, + -0.04769463837146759, + -0.031447671353816986, + 0.012526082806289196, + 0.06693683564662933, + -0.024971559643745422, + 0.0007052369182929397, + -0.10013967007398605, + -0.07055734843015671, + -0.021750150248408318, + -0.0067269220016896725, + 0.016953470185399055, + 0.007346596103161573, + 0.039450742304325104, + -0.08265307545661926, + -0.006847552955150604, + 0.0007333907997235656, + -0.005010104738175869, + -0.020323041826486588, + -0.025446899235248566, + -0.02992873825132847, + 0.006150261498987675, + 0.054124582558870316, + 0.0354216992855072, + -0.09573503583669662, + -2.1308409259290784e-08, + -0.08002645522356033, + -0.0658087208867073, + -0.006784264929592609, + -0.05592130497097969, + 0.07628954201936722, + -0.03947104886174202, + 7.881614874349907e-05, + -0.0032373503781855106, + -0.03379527106881142, + -0.02005610801279545, + 0.06797520071268082, + 0.0031600201036781073, + -0.09722252935171127, + -0.08208370953798294, + 0.02649575099349022, + 0.015849724411964417, + 0.006058768834918737, + 0.022468246519565582, + -0.025999365374445915, + -0.08615683764219284, + 0.025097737088799477, + 0.06248760595917702, + 0.014401329681277275, + -0.008449745364487171, + 0.058990657329559326, + 0.010438702069222927, + -0.04939928650856018, + 0.07350426912307739, + 0.022882815450429916, + 0.04777953028678894, + 0.05223855376243591, + 0.06616601347923279, + 0.047739505767822266, + -0.045321203768253326, + -0.0750923827290535, + -0.0166707132011652, + 0.07830534875392914, + -0.024621399119496346, + -0.0065863048657774925, + 0.1571638137102127, + -0.031212495639920235, + -0.03659703955054283, + -0.07536891102790833, + 0.005133556667715311, + 0.017829271033406258, + -0.048778630793094635, + 0.003165526781231165, + -0.0105995312333107, + -0.021336276084184647, + -0.15220308303833008, + 0.007340442389249802, + -0.006450544111430645, + 0.08312629908323288, + 0.052880216389894485, + -0.061486124992370605, + 0.015408453531563282, + 0.04456596076488495, + 0.08766517043113708, + 0.06215232238173485, + -0.06152684986591339, + 0.13648547232151031, + 0.05749223008751869, + 0.044631194323301315, + 0.011598740704357624 + ], + "notification-bold||badge,pip": [ + -0.0003963676281273365, + 0.006921143736690283, + 0.008477768860757351, + 0.06845567375421524, + 0.04060102254152298, + 0.0006055793492123485, + 0.11870263516902924, + -0.030557144433259964, + 0.019211197271943092, + -0.05914105847477913, + -0.026643143966794014, + -0.007637396454811096, + 0.08399149030447006, + 0.01941440999507904, + 0.01325226854532957, + 0.03332037106156349, + 0.0073357089422643185, + 0.01588716171681881, + -0.024659911170601845, + -0.11739087104797363, + 0.016050802543759346, + 0.04911084100604057, + 0.032805249094963074, + 0.11251009255647659, + -0.037239350378513336, + -0.029507147148251534, + -0.011300202459096909, + -0.01177296880632639, + 0.020232772454619408, + -0.025704234838485718, + 0.014622598886489868, + -0.022665338590741158, + 0.06361886113882065, + -0.0017388766864314675, + 0.023962758481502533, + 0.053654007613658905, + 0.047885164618492126, + -0.031485095620155334, + 0.010609526187181473, + 0.01902223564684391, + 0.07569745182991028, + -0.0883149802684784, + -0.021197931841015816, + -0.026173455640673637, + -0.013087974861264229, + 0.012654108926653862, + -0.007133311126381159, + -0.021687237545847893, + -0.0030545832123607397, + -0.003417267929762602, + 0.04592692106962204, + -0.03346291556954384, + -0.004034935496747494, + -0.05380592867732048, + 0.022027386352419853, + -0.0039038527756929398, + -0.05067143216729164, + -0.03019820712506771, + 0.028202807530760765, + -0.051230017095804214, + -0.03570535033941269, + 0.01994413323700428, + 0.08180560171604156, + 0.0270832609385252, + -0.00852918066084385, + 0.032007087022066116, + -0.05318990349769592, + 0.038939088582992554, + 0.027877027168869972, + 0.024682067334651947, + 0.0752796158194542, + -0.0032765513751655817, + 0.010031532496213913, + -0.06545980274677277, + -0.015395909547805786, + 0.003857846837490797, + 0.022347576916217804, + 0.00301032024435699, + -0.05677158385515213, + -0.0001541542005725205, + -0.13305819034576416, + -0.05467558652162552, + -0.02123936265707016, + 0.035367920994758606, + 0.07642513513565063, + -0.02152334898710251, + -0.099185049533844, + -0.04876343533396721, + -0.06885275989770889, + 0.009918143972754478, + 0.0019294266821816564, + -0.04429326951503754, + -0.01918673887848854, + 0.10544928163290024, + -0.14502201974391937, + 0.02494039200246334, + 0.024324161931872368, + -0.007515355944633484, + -0.08815539628267288, + 0.1046551838517189, + -0.010840830393135548, + 0.06442312896251678, + -0.04547085613012314, + 0.018503932282328606, + 0.07083550095558167, + 0.02234688214957714, + -0.06244689226150513, + -0.028617113828659058, + 0.0365447960793972, + -0.06524071097373962, + 0.007290744222700596, + -0.14953193068504333, + 0.055059753358364105, + -0.03546355664730072, + -0.028276637196540833, + 0.03801806643605232, + -0.0365772508084774, + 0.04582976549863815, + 0.06692175567150116, + 0.09375081956386566, + 0.0864916741847992, + -0.07180586457252502, + -0.057699814438819885, + -0.025893859565258026, + -0.001464724075049162, + 0.02774517424404621, + 0.04973066225647926, + -2.3138144274837894e-33, + 0.03642546385526657, + 0.06060560420155525, + -0.020549414679408073, + 0.10813809931278229, + 0.07378814369440079, + -0.0006669597933068871, + 0.00471138022840023, + -0.09292862564325333, + -0.0988023653626442, + -0.036300916224718094, + 0.08062631636857986, + 0.12348448485136032, + 0.0075505077838897705, + -0.016688520088791847, + -0.02823314629495144, + -0.010673990473151207, + -0.02904422953724861, + 0.011918111704289913, + -0.0027503559831529856, + 0.013251599855720997, + 0.00817809533327818, + -0.028475705534219742, + -0.0636967122554779, + 0.00037199430516920984, + 0.016615478321909904, + 0.015691950917243958, + 0.03842391073703766, + 0.025308215990662575, + -0.03101375699043274, + 0.06539999693632126, + 0.051361989229917526, + 0.03700988367199898, + 0.08756757527589798, + 0.012521703727543354, + -0.08406111598014832, + -0.04885285720229149, + -0.04993408918380737, + -0.02222576178610325, + -0.0177802424877882, + -0.01865576021373272, + -0.004615767393261194, + -0.05244901403784752, + -0.05117617920041084, + -0.05882694199681282, + -0.044337574392557144, + 0.07024136185646057, + 0.013088233768939972, + 0.02207314968109131, + 0.05937334895133972, + -0.014216311275959015, + 0.10464200377464294, + -0.003122912719845772, + 0.06338205933570862, + 0.026649996638298035, + -0.00035040482180193067, + -0.052196819335222244, + -0.020964208990335464, + 0.11347361654043198, + 0.024637369439005852, + -0.06674369424581528, + 0.016505448147654533, + 0.01632164977490902, + 0.04922031611204147, + -0.041898827999830246, + 0.0365302599966526, + 0.012858742848038673, + -0.00745638832449913, + 0.0922873243689537, + 0.015467978082597256, + -0.016472632065415382, + 0.0020893944893032312, + 0.13969692587852478, + -0.0866607129573822, + -0.024507617577910423, + 0.030350040644407272, + -0.03324662894010544, + 0.009389241226017475, + 0.004281010944396257, + 0.03014395199716091, + -0.05375619977712631, + -0.06189345568418503, + 0.00944382045418024, + -0.011046310886740685, + 0.017749527469277382, + 0.07792060077190399, + 0.06232476234436035, + 0.0520951971411705, + 0.051450494676828384, + -0.16139894723892212, + 0.030101079493761063, + -0.05543132871389389, + 0.028245501220226288, + 0.0531153567135334, + 0.008206182159483433, + -0.13512535393238068, + 1.3630367603143062e-33, + 0.012082409113645554, + 0.02341827005147934, + -0.03685133159160614, + -0.026694752275943756, + -0.03507201746106148, + -0.04178062826395035, + 0.02633213996887207, + 0.03862500563263893, + 0.008334538899362087, + 0.05424664914608002, + 0.039632536470890045, + -0.0023500772658735514, + -0.05910095199942589, + 0.059118229895830154, + -0.022043731063604355, + 0.018830398097634315, + -0.010193835943937302, + 0.08395862579345703, + -0.0503147728741169, + -0.014780675992369652, + -0.11580468714237213, + 0.027525203302502632, + -0.06208766624331474, + 0.03478538244962692, + -0.09942552447319031, + 0.03120901808142662, + -0.016946887597441673, + -0.020996972918510437, + -0.006753904279321432, + -0.06756917387247086, + -0.006491634529083967, + 0.05960676074028015, + -0.08115416765213013, + 0.06430596858263016, + -0.04455390200018883, + -0.02501640096306801, + 0.011586795561015606, + -0.059247300028800964, + 0.034910544753074646, + 0.06114943325519562, + 0.01355733536183834, + 0.08344469964504242, + -0.040473777800798416, + -0.01837106980383396, + -0.0012437122641131282, + 0.03123292699456215, + 0.08788600564002991, + -0.05840796232223511, + -0.00590459443628788, + 0.06626154482364655, + 0.028892118483781815, + -0.05234135687351227, + -0.0011364372912794352, + 0.13212911784648895, + -0.061966780573129654, + 0.0026063902769237757, + -0.049603141844272614, + 0.02700619213283062, + -0.07980813086032867, + -0.05880025774240494, + -0.027760427445173264, + -0.0247347354888916, + -0.017076658084988594, + -0.006938484031707048, + -0.011814877390861511, + -0.07019627839326859, + 0.03368786722421646, + 0.037151485681533813, + 0.07695642113685608, + -0.06378984451293945, + 0.07515158504247665, + 0.004417815711349249, + -0.06858159601688385, + 0.03103186935186386, + 0.02775432914495468, + -0.011996381916105747, + 0.021419372409582138, + 0.007065679412335157, + -0.027728872373700142, + 0.017632203176617622, + -0.08495206385850906, + -0.027269165962934494, + 0.002492569386959076, + 0.01664399541914463, + -0.02523648738861084, + -0.041518568992614746, + 0.04511764273047447, + 0.07221100479364395, + 0.057259831577539444, + 0.0031941491179168224, + -0.018708841875195503, + 0.08887749910354614, + 0.021719595417380333, + -0.0680038183927536, + -0.018034569919109344, + -1.4527006264586362e-08, + -0.00025831221137195826, + -0.027265144512057304, + -0.1013629287481308, + 0.005390941631048918, + 0.02220110408961773, + 0.043457746505737305, + -0.030390547588467598, + -0.06240922212600708, + -0.08994300663471222, + -0.0451095849275589, + 0.03556373715400696, + -0.03306816890835762, + -0.08162611722946167, + -0.08844418823719025, + 0.02562662586569786, + 0.028702890500426292, + -0.05833659693598747, + 0.050661128014326096, + -0.007905648089945316, + -0.07120472937822342, + 0.024023987352848053, + 0.038821835070848465, + 0.06370510905981064, + -0.004361502360552549, + -0.05010344460606575, + -0.012025626376271248, + -0.00748993456363678, + -0.05613788962364197, + 0.0006041686283424497, + -0.03599855303764343, + -0.01373625174164772, + -0.05265946313738823, + 0.03395049273967743, + -0.010628766380250454, + 0.009273282252252102, + 0.008389483205974102, + -0.04091264680027962, + -0.05437455698847771, + 0.06713878363370895, + 0.17320604622364044, + 0.0270900409668684, + -0.08083127439022064, + -0.04791213944554329, + -0.0318232886493206, + -0.04744192212820053, + 0.010128105990588665, + 0.016329221427440643, + -0.03651650249958038, + -0.05787751451134682, + -0.005297629162669182, + 0.042001400142908096, + -0.03350274637341499, + 0.016430387273430824, + 0.04696989059448242, + -0.07165698707103729, + -0.03253450617194176, + 0.04221377521753311, + 0.03537382930517197, + -0.04937777668237686, + -0.005744150839745998, + 0.12428046762943268, + 0.017642434686422348, + 0.03787393122911453, + -0.0006902950117364526 + ], + "notion-logo-bold||documentation,productivity,wiki,logos": [ + 0.029747210443019867, + 0.012503146193921566, + -0.0389159694314003, + 0.007679738104343414, + 0.07792548835277557, + -0.07254690676927567, + 0.06399331986904144, + -0.010565763339400291, + 0.04712153598666191, + 0.05818167328834534, + -0.027332300320267677, + 0.04272571578621864, + 0.04796566069126129, + -0.020426051691174507, + 0.06388809531927109, + 0.010737932287156582, + 0.013710343278944492, + -0.005520119797438383, + 0.04674939066171646, + -0.0070391432382166386, + 0.0978362113237381, + 0.0366448275744915, + 0.04365456476807594, + 0.0291335117071867, + 0.028146205469965935, + 0.003930035512894392, + 0.00537277664989233, + 0.0016197825316339731, + 0.04620620235800743, + -0.1173742413520813, + -0.07914980500936508, + 0.06813276559114456, + 0.08341475576162338, + 0.020155340433120728, + 0.04737331345677376, + 0.04885246604681015, + 0.06318103522062302, + 0.0351361408829689, + 0.05086925998330116, + 0.011817456223070621, + -0.008481782861053944, + -0.026341674849390984, + 0.006993524730205536, + 0.016097353771328926, + -0.049514878541231155, + 0.04472719877958298, + -0.05672570690512657, + -0.05587540566921234, + -0.01818513497710228, + -0.00951977539807558, + -0.025177812203764915, + -0.12668398022651672, + -0.07022763043642044, + -0.056238625198602676, + 0.027092674747109413, + -0.04764031618833542, + -0.05417603626847267, + -0.03430957347154617, + -0.008367293514311314, + -0.05642838776111603, + 0.000463873497210443, + 0.024606438353657722, + -0.015675166621804237, + 0.06268323957920074, + 0.08626920729875565, + -0.02284638024866581, + 0.038825150579214096, + 0.06812754273414612, + -0.05593297630548477, + 0.00025671461480669677, + 0.040930937975645065, + 8.928334864322096e-05, + 0.009429006837308407, + -0.07079972326755524, + 0.011066912673413754, + 0.0032805309165269136, + 0.03928159549832344, + 0.008553467690944672, + -0.06588215380907059, + -0.14709877967834473, + -0.01727403700351715, + 0.08409564942121506, + 0.021876417100429535, + 0.03011958673596382, + 0.05742659047245979, + 0.0826854407787323, + -0.03229689598083496, + -0.016839638352394104, + 0.017112255096435547, + 0.015038019977509975, + -0.05215167999267578, + -0.07767871022224426, + 0.05626284331083298, + -0.007898655720055103, + -0.013479202054440975, + 0.011979752220213413, + 0.016331998631358147, + -0.0526103712618351, + -0.029348060488700867, + 0.09912251681089401, + -0.03841647878289223, + 0.06617359817028046, + 0.08006546646356583, + -0.0853399783372879, + 0.014972384087741375, + 0.014326212927699089, + -0.02170436456799507, + -0.012317853979766369, + 0.05323842912912369, + 0.07650230079889297, + 0.04116739332675934, + -0.024960407987236977, + -0.16269473731517792, + -0.03196527063846588, + -0.05426550284028053, + -0.05713614448904991, + -0.010032027028501034, + -0.07050426304340363, + 0.1122710108757019, + 0.012675083242356777, + 0.0165787935256958, + 0.02554953843355179, + 0.024528449401259422, + -0.048021264374256134, + -0.011784953996539116, + 0.02679472789168358, + -0.04832421988248825, + -4.862138875930671e-33, + 0.025032732635736465, + 0.12463574856519699, + -0.06416784226894379, + 0.09753367304801941, + -0.004300486296415329, + 0.05109918490052223, + -0.04718682914972305, + -0.049823906272649765, + -0.09425631910562515, + 0.007690580561757088, + 0.020628908649086952, + 0.134296715259552, + -0.003629783634096384, + 0.05142999067902565, + 0.019740000367164612, + -0.04924679920077324, + -0.011567775160074234, + 0.0533188059926033, + -0.10347205400466919, + 0.004684949293732643, + -0.03891914710402489, + 0.03976014256477356, + -0.0952218696475029, + -0.03554927930235863, + 0.029633760452270508, + -0.02659415267407894, + 0.026569565758109093, + 0.03846834972500801, + -0.01707751862704754, + -0.002901495201513171, + 0.047874048352241516, + 0.0042368522845208645, + 0.07951509952545166, + 0.03723463788628578, + -0.010406332090497017, + -0.018762769177556038, + -0.04766593500971794, + -0.041748788207769394, + 0.06395532190799713, + -0.006958811543881893, + -0.06806186586618423, + -0.03252146393060684, + 0.003925152122974396, + -0.0004537305503617972, + -0.00636046240106225, + 0.10433648526668549, + -0.0009261024533770978, + -0.0963362455368042, + 0.08138389140367508, + -0.01748582161962986, + -0.025266267359256744, + -0.012454074807465076, + 0.04059044271707535, + -0.025637278333306313, + -0.014634167775511742, + -0.12531200051307678, + -0.059547167271375656, + 0.06227560713887215, + 0.014212142676115036, + -0.02899741753935814, + 0.0002909944159910083, + 0.038429684937000275, + 0.048880066722631454, + 0.00400063069537282, + -0.023500533774495125, + 0.09606897830963135, + -0.058280255645513535, + 0.06502591073513031, + 0.05219389498233795, + -0.028504636138677597, + 0.012105561792850494, + 0.02172895520925522, + 0.03997478634119034, + -0.014779126271605492, + -0.0035969035234302282, + 0.01950177177786827, + 0.044715698808431625, + -0.020882543176412582, + -0.044210173189640045, + 0.023367617279291153, + -0.05145753175020218, + -0.04567030072212219, + -0.07287060469388962, + 0.04818551614880562, + 0.044741369783878326, + 0.07595693320035934, + 0.061536651104688644, + 0.005119004286825657, + 0.030603712424635887, + 0.018044499680399895, + -0.04642675071954727, + 0.012973925098776817, + 0.00821396242827177, + -0.033391620963811874, + -0.10201114416122437, + 1.6163343034104082e-33, + 0.0938010886311531, + 0.017872566357254982, + 0.03872050344944, + 0.03853664919734001, + -0.01866917498409748, + 0.019742541015148163, + -0.0057440935634076595, + 0.05413028970360756, + -0.11980600655078888, + -0.04646317660808563, + 0.09350597113370895, + -0.03827957436442375, + -0.17876335978507996, + 0.028761379420757294, + -0.05839766189455986, + -0.05089673027396202, + -0.0011158784618601203, + -0.014376930892467499, + -0.05295141041278839, + 0.0207893755286932, + -0.022550368681550026, + -0.0013623458798974752, + -0.06263309717178345, + 0.06661015003919601, + -0.007178678642958403, + 0.043808333575725555, + -0.026536552235484123, + -0.0023954426869750023, + -0.052376117557287216, + -0.010990035720169544, + -0.08144323527812958, + -0.051433950662612915, + -0.020488392561674118, + 0.020458349958062172, + -0.026997530832886696, + -0.01580299623310566, + -0.012924260459840298, + -0.040668074041604996, + -0.0033653343562036753, + 0.00552905909717083, + 0.006092646159231663, + -0.026094811037182808, + -0.013527385890483856, + 0.0214485265314579, + -0.04888923093676567, + -0.0437057726085186, + -0.043243132531642914, + -0.07430791854858398, + -0.0041488781571388245, + 0.022063834592700005, + 0.019378362223505974, + -0.0032211707439273596, + 0.013798832893371582, + -0.030471105128526688, + -0.09959713369607925, + -0.04080372303724289, + 0.040553800761699677, + -0.00034164258977398276, + -0.07838078588247299, + 0.0769219696521759, + 0.004851319827139378, + 9.393200161866844e-05, + -0.04526407644152641, + 0.06231308728456497, + 0.014304411597549915, + -0.037247128784656525, + -0.041468165814876556, + -0.0422140434384346, + -0.05633436143398285, + 0.02684107981622219, + -0.050708264112472534, + -0.010243913158774376, + -0.043374091386795044, + 0.004142029210925102, + 0.040798548609018326, + -0.040834374725818634, + 0.11634096503257751, + -0.039243146777153015, + -0.04001019150018692, + -0.01573806069791317, + 0.00951590295881033, + 0.0027194188442081213, + -0.04333227500319481, + 0.06589841842651367, + 0.006089004687964916, + 0.07000517845153809, + -0.027285227552056313, + 0.02637631632387638, + -0.023546462878584862, + -0.005225709639489651, + -0.05878225341439247, + 0.03426534682512283, + 0.05610004812479019, + 0.07132319360971451, + -0.07015018165111542, + -1.9845584731115196e-08, + -0.07398850470781326, + 0.015024660155177116, + 0.07261346280574799, + -0.0659017339348793, + -0.016621295362710953, + -0.0037485870998352766, + 0.0014345829840749502, + -0.09206076711416245, + -0.03999330475926399, + -0.00026077599613927305, + -0.028404517099261284, + 0.03056594729423523, + -0.1074678972363472, + -0.00013548429706133902, + 0.047219738364219666, + 0.022319035604596138, + -0.09170231223106384, + 0.11039982736110687, + -0.030026953667402267, + -0.05632668361067772, + -0.027257578447461128, + 0.0279528871178627, + 0.001057095592841506, + 0.01066999975591898, + 0.04279516637325287, + 0.038676101714372635, + -0.00026860961224883795, + 0.04757824167609215, + 0.04770403727889061, + 0.032698359340429306, + 0.016582917422056198, + 0.08893526345491409, + -0.001318642869591713, + 0.0611315593123436, + -0.0424167662858963, + -0.08660762012004852, + -0.02292630262672901, + 0.024591101333498955, + -0.01924055814743042, + 0.05116518959403038, + 0.014194543473422527, + -0.02420499362051487, + -0.05847097933292389, + -0.004634406883269548, + 0.026016097515821457, + 0.001163775916211307, + 0.06052788347005844, + 0.07571840286254883, + -0.047282397747039795, + -0.0723678469657898, + -0.026793573051691055, + 0.07157962024211884, + 0.006465760059654713, + 0.057403139770030975, + -0.051702745258808136, + -0.05250127241015434, + 0.027388939633965492, + 0.07778506726026535, + 0.017269304022192955, + -0.031026668846607208, + 0.1478193700313568, + -0.13182446360588074, + 0.030841035768389702, + -0.00361819751560688 + ], + "nuclear-plant-bold||*new*,renewable,energy,power,electricity": [ + -0.016265038400888443, + 0.013900983147323132, + -0.021260075271129608, + 0.0736728236079216, + 0.04866810142993927, + -0.0023295837454497814, + -0.022145753726363182, + -0.03914289176464081, + -0.05296212434768677, + -0.001780119608156383, + 0.06280849128961563, + -0.01723739318549633, + 0.024595020338892937, + -0.06773185729980469, + -0.025796210393309593, + 0.04804643988609314, + -0.04090459644794464, + -0.0025829917285591364, + 0.016491727903485298, + 0.021484235301613808, + 0.03691210225224495, + 0.018886374309659004, + 0.019594721496105194, + 0.014269277453422546, + 0.10368292033672333, + 0.053404029458761215, + -0.01587541401386261, + 0.04895644634962082, + 0.015014429576694965, + -0.06748127192258835, + -0.06690136343240738, + 0.06027520075440407, + 0.07786986231803894, + -0.022861963137984276, + 0.1375236064195633, + 0.05321960151195526, + -0.03168997913599014, + -0.002684349426999688, + -0.024038173258304596, + 0.04838123172521591, + 0.01942598819732666, + -0.08826977759599686, + 0.023351453244686127, + 0.07087261974811554, + -0.09483940154314041, + 0.02459361031651497, + -0.024593980982899666, + -0.07882557809352875, + -0.0007192365010268986, + -0.04943854361772537, + 0.03681061044335365, + -0.12917806208133698, + -0.07681026309728622, + -0.012068063020706177, + 0.03019225224852562, + -0.026687493547797203, + 0.02366487681865692, + -0.008963314816355705, + 0.058723084628582, + 0.033196594566106796, + 0.08040295541286469, + -0.06028047949075699, + 0.012377087958157063, + 0.010276906192302704, + 0.0639302209019661, + -0.0013876550365239382, + -0.04043107107281685, + 0.07433684915304184, + -0.046548690646886826, + -0.020163951441645622, + 0.07298000156879425, + -0.02261440083384514, + -0.051374465227127075, + -0.014320525340735912, + -0.12872448563575745, + -0.038062114268541336, + 0.03123755007982254, + 0.04799572750926018, + 0.01073384564369917, + -0.03848348185420036, + 0.026104403659701347, + -0.008041510358452797, + -0.07330524921417236, + -0.1164773553609848, + 0.009208599105477333, + 0.10549695044755936, + -0.049295227974653244, + -0.07255883514881134, + 0.024998145177960396, + -0.05200645327568054, + -0.0788397490978241, + 0.02100600302219391, + 0.035976044833660126, + 0.0631936714053154, + -0.04698562994599342, + 0.12584786117076874, + 0.04746895283460617, + -0.09132935106754303, + -0.02557288110256195, + 0.04147544130682945, + 0.07601039856672287, + 0.06921468675136566, + -0.015852607786655426, + -0.0022946337703615427, + -0.05282933637499809, + -0.027436375617980957, + -0.06404607743024826, + -0.013992144726216793, + -0.007271607406437397, + 0.0217567328363657, + 0.01617455668747425, + -0.0606246218085289, + -0.06008904427289963, + -0.06357450783252716, + -0.029305286705493927, + -0.017720572650432587, + -0.008227241225540638, + -0.031431082636117935, + 0.06093025207519531, + 0.043047696352005005, + 0.00853562168776989, + -0.04694513976573944, + -0.03219560906291008, + 0.03930140286684036, + -0.04153343290090561, + -0.04037820175290108, + -0.034462012350559235, + -4.780149614328755e-33, + -0.020506950095295906, + 0.052929602563381195, + -0.025192057713866234, + 0.08221442252397537, + -0.05041032284498215, + 0.0264463908970356, + -0.051620714366436005, + -0.058097150176763535, + -0.08442575484514236, + 0.014942186884582043, + 0.03976944461464882, + 0.04085652157664299, + 0.04536810889840126, + 0.06613495200872421, + 0.0005026015569455922, + -0.12100833654403687, + 0.0029612139333039522, + 0.009570276364684105, + 0.01523739192634821, + 0.002934856340289116, + -0.02443184331059456, + 0.10271071642637253, + 0.016004761680960655, + -0.006049021612852812, + 0.0217078048735857, + -0.08866561949253082, + 0.07542963325977325, + -0.10624825209379196, + -0.04272755607962608, + -0.007214537356048822, + 0.03347930312156677, + 0.0880337730050087, + -0.005848107393831015, + 0.050026703625917435, + -0.056538332253694534, + 0.012612669728696346, + -0.033617209643125534, + -0.033408429473638535, + -0.043245360255241394, + -0.01850217767059803, + -0.03944874927401543, + 0.028270572423934937, + -0.019467981532216072, + 0.08014263957738876, + 0.11757242679595947, + 0.10252167284488678, + 0.012307410128414631, + -0.060006845742464066, + 0.02845797874033451, + -0.02188129350543022, + -0.09907492995262146, + 0.05195871740579605, + -0.03565508872270584, + -0.014882824383676052, + 0.05861317366361618, + -0.009130645543336868, + 0.00840163603425026, + 0.08676274865865707, + 0.032079681754112244, + -0.014812329784035683, + -0.03522355481982231, + 0.058754902333021164, + -0.03539121150970459, + -0.028179550543427467, + 0.017846615985035896, + 0.09854190796613693, + -0.10570777207612991, + 0.007312128320336342, + 0.08007878810167313, + 0.047760311514139175, + -0.010511767119169235, + -0.055017419159412384, + 0.016114428639411926, + 0.08489905297756195, + 0.04740693047642708, + 0.05267179757356644, + -0.05407863110303879, + 0.030677445232868195, + -0.0783868357539177, + 4.08693085773848e-05, + -0.11310698837041855, + 0.03188095986843109, + -0.05588584765791893, + 0.0395706482231617, + 0.007480244617909193, + -0.037890661507844925, + -0.030077319592237473, + -0.0410153828561306, + 0.04769226908683777, + 0.024563640356063843, + 0.010387392714619637, + 0.012749236077070236, + 0.07533277571201324, + -0.024980414658784866, + -0.07037921249866486, + 9.101204399814097e-34, + 0.011019962839782238, + 0.08606129139661789, + -0.025998180732131004, + -0.05411196127533913, + -0.014426374807953835, + -0.0403195396065712, + -0.10046235471963882, + -0.07213769108057022, + -0.014919118024408817, + 0.055752892047166824, + 0.04104117676615715, + -0.022416455671191216, + -0.06663485616445541, + -0.06146983802318573, + 0.027645565569400787, + 0.018202533945441246, + 0.030796704813838005, + 0.03915288671851158, + -0.024915941059589386, + 0.06999083608388901, + -0.060063477605581284, + 0.03382352367043495, + -0.11618001013994217, + 0.06280609965324402, + 0.004960847552865744, + 0.05559675022959709, + 0.01731632836163044, + -0.10562518984079361, + 0.010700621642172337, + -0.023662123829126358, + -0.08830590546131134, + -0.009600261226296425, + -0.03552570939064026, + 0.1373058706521988, + -0.0400053896009922, + -0.004746897146105766, + 0.0067011951468884945, + -0.06595160067081451, + -0.011236642487347126, + 0.004019185900688171, + 0.023145640268921852, + -0.008740436285734177, + 0.0375630185008049, + 0.042016975581645966, + -0.07246072590351105, + -0.09758387506008148, + -0.04193501174449921, + -0.009214879013597965, + -0.06060248240828514, + 0.0342850387096405, + 0.04204088822007179, + -0.051089998334646225, + -0.04906171187758446, + -0.06254356354475021, + -0.01232751365751028, + -0.08475639671087265, + 0.014628969132900238, + 0.06139884889125824, + -0.05055924132466316, + -0.03133179247379303, + 0.06935534626245499, + -0.006880250759422779, + 0.02281651832163334, + 0.03842265158891678, + -0.06771490722894669, + -0.03856824338436127, + 0.025727076455950737, + -0.01142058800905943, + 0.0388694666326046, + -0.028710324317216873, + -0.032507769763469696, + 0.09459259361028671, + -0.040179211646318436, + -0.030989091843366623, + -0.013785852119326591, + -0.027845755219459534, + 0.04834948107600212, + -0.006739644333720207, + -0.05138058587908745, + -0.025159910321235657, + -0.05059055984020233, + 0.03773241862654686, + -0.08127076923847198, + -0.018225865438580513, + 0.05446000024676323, + -0.004891243297606707, + -0.002073262119665742, + -0.056330036371946335, + 0.07243053615093231, + -0.016307275742292404, + -0.029462309554219246, + -0.0072678676806390285, + -0.04436620697379112, + 0.07486098259687424, + -0.00618879497051239, + -2.180210145752426e-08, + 0.04307742416858673, + 0.029390348121523857, + -0.05121585726737976, + -0.043521005660295486, + 0.08130377531051636, + -0.09482436627149582, + -0.012525872327387333, + -0.03448208048939705, + -0.00881480984389782, + 0.026957441121339798, + 0.029368743300437927, + 0.09307767450809479, + 0.040749531239271164, + -0.011495106853544712, + 0.060380831360816956, + -0.003580523654818535, + -0.0024757145438343287, + 0.07401993125677109, + -0.016147660091519356, + 0.006498020142316818, + -0.002061976818367839, + 0.040249597281217575, + -0.05857505649328232, + 0.014293400570750237, + 0.02050439827144146, + 0.05987801030278206, + 0.029484903439879417, + -0.024312838912010193, + 0.07687368988990784, + 0.009282967075705528, + 0.11387909948825836, + 0.039999235421419144, + -0.04736969247460365, + -0.014510483480989933, + -0.05592067912220955, + 0.010203460231423378, + 0.02583300694823265, + -0.04063813388347626, + -0.010422840714454651, + 0.05070192366838455, + -0.029284562915563583, + 0.028713837265968323, + -0.006998931989073753, + 0.03613428771495819, + -0.10001428425312042, + -0.03008953481912613, + -0.02191278152167797, + -0.04625709354877472, + 0.011943061836063862, + -0.030037112534046173, + -0.03497228026390076, + -0.009939073584973812, + 0.010438969358801842, + 0.021221686154603958, + 0.005715086590498686, + 0.039379652589559555, + -0.015038995072245598, + 0.05586276575922966, + -0.07001698762178421, + -0.027070360258221626, + 0.09396117180585861, + -0.07373281568288803, + 0.09810610115528107, + 0.016290945932269096 + ], + "number-circle-eight-bold||8,round,numbers,numerals,digits,mathematics,arithmetic,calculator": [ + -0.01613987796008587, + 0.038718897849321365, + -0.060744550079107285, + 0.033354971557855606, + -0.04491822421550751, + -0.017093578353524208, + 0.051045652478933334, + 0.08334239572286606, + 0.025516631081700325, + -0.08361346274614334, + -0.006713599432259798, + 0.006155298091471195, + 0.052181512117385864, + -0.039539486169815063, + 0.010875234380364418, + -0.04240736365318298, + -0.08047811686992645, + -0.015487351454794407, + -0.01885165460407734, + -0.032824184745550156, + 0.027696819975972176, + 0.022391917183995247, + 0.03696482256054878, + 0.12418726831674576, + 0.04955358803272247, + 0.011217398568987846, + 0.02418254315853119, + -0.05043861269950867, + 0.02189532294869423, + -0.06264631450176239, + -0.07987458258867264, + 0.05798632279038429, + 0.10983578115701675, + -0.0014490935718640685, + 0.02174947038292885, + 0.017726676538586617, + -0.015000957995653152, + 0.059978123754262924, + -0.032916076481342316, + 0.07331663370132446, + -0.024309387430548668, + -0.10004651546478271, + 0.07706295698881149, + 0.0029965261928737164, + -0.046376895159482956, + -0.0087107690051198, + -0.09326949715614319, + 0.03556383401155472, + 0.011041549034416676, + 0.013793778605759144, + -0.042479053139686584, + -0.04203661158680916, + -0.1608976572751999, + -0.009579679928719997, + 0.05864747613668442, + -0.04017133638262749, + -0.009949957951903343, + -0.06337687373161316, + 0.044877421110868454, + 0.011652685701847076, + -0.010630153119564056, + 0.011759158223867416, + 0.06546960026025772, + 0.029894674196839333, + -0.024370357394218445, + 0.007388024590909481, + 0.015629146248102188, + -0.08252913504838943, + -0.005760414060205221, + 0.009872009046375751, + 0.05760764330625534, + 0.05055885761976242, + -0.04531170055270195, + 0.005828398279845715, + -0.01523255743086338, + 0.037559520453214645, + -0.04691696539521217, + 0.022317448630928993, + -0.04231182485818863, + -0.06616754829883575, + -0.03967185318470001, + -0.05871254950761795, + 0.02520741894841194, + 0.03658532351255417, + 0.015901979058980942, + 0.029527541249990463, + -0.019080787897109985, + -0.026322998106479645, + 0.005876006558537483, + -0.05982609838247299, + -0.08748582750558853, + 0.02236158587038517, + -0.009310576133430004, + 0.024566631764173508, + -0.09647032618522644, + 0.040898364037275314, + 0.05630246549844742, + -0.025393886491656303, + -0.07034339010715485, + 0.10072050988674164, + 0.04231909662485123, + -0.004832186736166477, + -0.02074422501027584, + 0.03540967032313347, + -0.014429126866161823, + -0.020377881824970245, + 0.07972560822963715, + -0.04948650300502777, + 0.012825565412640572, + -0.004110716283321381, + 0.024026235565543175, + -0.0911022424697876, + 0.0011378152994439006, + -0.0565871000289917, + 0.0022469130344688892, + -0.04412052407860756, + -0.033791087567806244, + -0.0017665724735707045, + 0.09337544441223145, + 0.07927169650793076, + -0.006442022044211626, + 0.023140328004956245, + 0.006918476894497871, + -0.012436862103641033, + -0.06560910493135452, + 0.06303562968969345, + -0.03472527116537094, + -2.560725913848057e-33, + -9.046306513482705e-05, + 0.045921728014945984, + -0.014487482607364655, + 0.05348970368504524, + -0.02434186451137066, + -0.11070293188095093, + -0.0070026046596467495, + -0.04863767325878143, + 0.024411344900727272, + 0.05691451206803322, + 0.011190218850970268, + 0.1114254742860794, + 0.0349181666970253, + 0.02414153330028057, + 0.15413279831409454, + -0.03168720006942749, + 0.12122040241956711, + -0.03038475289940834, + -0.05500709265470505, + -0.06019993871450424, + -0.012298273853957653, + 0.011851092800498009, + -0.0564287006855011, + -0.020721444860100746, + 0.043623559176921844, + 0.06418164074420929, + 0.04452894255518913, + 0.019786080345511436, + -0.0034624349791556597, + 0.004859893582761288, + 0.06327856332063675, + 0.015302496962249279, + -0.006075654644519091, + -0.0065711550414562225, + 0.06117526814341545, + -0.05029761791229248, + -0.007016576360911131, + 0.003444451605901122, + 0.07202894985675812, + -0.026477986946702003, + -0.06579571962356567, + -0.02519812434911728, + -0.011659536510705948, + 0.015290454961359501, + 0.04180848225951195, + 0.08966674655675888, + -0.0359545573592186, + -0.008127372711896896, + 0.09675302356481552, + -0.009187158197164536, + -0.05552367866039276, + 0.028991417959332466, + -0.009667948819696903, + -0.027380282059311867, + 0.005809515714645386, + -0.09202814102172852, + 0.03878088295459747, + 0.047697216272354126, + -0.035677921026945114, + 0.00987923052161932, + 0.04426661133766174, + 0.05455883592367172, + 0.02834623120725155, + -0.12908156216144562, + -0.12632212042808533, + 0.06835675239562988, + -0.09846478700637817, + -0.05822240188717842, + 0.054514408111572266, + -0.029544837772846222, + -0.04442810267210007, + 0.06663113087415695, + 0.040913764387369156, + 0.07661492377519608, + 0.04230501502752304, + -0.004848173353821039, + -0.004920113831758499, + -0.028091061860322952, + -0.02778501622378826, + 0.04017399251461029, + 0.014007183723151684, + 0.016536371782422066, + -0.03848368674516678, + 0.04991385340690613, + 0.05890517681837082, + -0.04792337864637375, + 0.052868861705064774, + -0.03152894228696823, + -0.0006727706640958786, + -0.025043129920959473, + -0.05509275197982788, + -0.016068845987319946, + 0.062155481427907944, + -0.008178960531949997, + -0.12581759691238403, + -1.1447412145528687e-33, + -0.08627520501613617, + 0.044729139655828476, + -0.06919709593057632, + -2.8539670893223956e-05, + -0.026268718764185905, + 0.018844429403543472, + -0.0005646759527735412, + -0.0481480211019516, + -0.0029769493266940117, + -0.020037837326526642, + -0.028041981160640717, + 0.028650423511862755, + 0.0116988904774189, + -0.044723991304636, + -0.018382636830210686, + -0.027925703674554825, + -0.0348985530436039, + 0.034613464027643204, + -0.008773687295615673, + -0.026537103578448296, + -0.059628333896398544, + 0.019369227811694145, + -0.05352066457271576, + 0.01971001736819744, + 0.00998191349208355, + -0.013707345351576805, + 0.0017944772262126207, + -0.07996809482574463, + 0.010327942669391632, + 0.04266894608736038, + -0.0063053397461771965, + -0.10499361157417297, + 0.10364257544279099, + 0.0874156504869461, + -0.09686173498630524, + -0.054175395518541336, + 0.12706278264522552, + -0.08575441688299179, + -0.06265384703874588, + -0.07043124735355377, + 0.007473101373761892, + -0.09154177457094193, + 0.10959530621767044, + 0.058655839413404465, + -0.043941885232925415, + -0.026656782254576683, + 0.05068439245223999, + -0.00513080321252346, + -0.09842532873153687, + 0.0970025435090065, + 0.04535401985049248, + 0.022351065650582314, + -0.017407961189746857, + 0.002619198290631175, + -0.04704349860548973, + 0.019976193085312843, + 0.008753872476518154, + 0.06302021443843842, + 0.01023875456303358, + 0.0795130655169487, + -0.030026424676179886, + 0.006768885999917984, + 0.039938874542713165, + 0.05931083858013153, + -0.0389128178358078, + -0.004626411944627762, + -0.021353373304009438, + -0.006257961504161358, + -0.07252320647239685, + -0.0501047745347023, + -0.0033388088922947645, + 0.04236295074224472, + -0.0007142539834603667, + 0.05536127835512161, + -0.016503673046827316, + -0.030154313892126083, + 0.03287279233336449, + 0.05189194902777672, + -0.004383773077279329, + 0.0432344451546669, + -0.002620565937831998, + -0.002347310772165656, + -0.01596350409090519, + 0.006313380319625139, + -0.05636206641793251, + 0.02014000155031681, + 0.09544315189123154, + -0.032355982810258865, + 0.0009295667405240238, + 0.015471935272216797, + -0.00790140125900507, + 0.0454547144472599, + -0.02038600482046604, + -0.008732961490750313, + 0.017807507887482643, + -2.196686210709231e-08, + 0.016720658168196678, + -0.022874992340803146, + -0.009232238866388798, + -0.039463263005018234, + 0.09085971117019653, + -0.06989458203315735, + -0.018464557826519012, + -0.06482357531785965, + -0.07895456999540329, + -0.030146224424242973, + 0.038106225430965424, + 0.044208817183971405, + -0.1138392835855484, + -0.053221989423036575, + 0.024544179439544678, + -0.003907730337232351, + 0.0883781686425209, + 0.03404652327299118, + 0.012621631845831871, + -0.016111943870782852, + -0.0052364300936460495, + 0.020807242020964622, + 0.09820085018873215, + -0.05537953972816467, + 0.014632188715040684, + 0.02556411735713482, + -0.0617799311876297, + 0.05725191906094551, + -0.009203298948705196, + -0.01090082898736, + 0.07050818204879761, + 0.0638829842209816, + -0.047919370234012604, + -0.01338928285986185, + -0.07374057173728943, + -0.05218181759119034, + -0.021308690309524536, + 0.06110028177499771, + 0.007698136381804943, + 0.04496937617659569, + -0.024228384718298912, + -0.03769301995635033, + -0.056106988340616226, + -0.008799486793577671, + 0.053651999682188034, + 0.02090689353644848, + 0.01115706842392683, + -0.08797211945056915, + -0.07669613510370255, + -0.10900577902793884, + -0.06641392409801483, + 0.033412203192710876, + 0.07673943787813187, + 0.0242131520062685, + -0.0170830637216568, + -0.11821988224983215, + 0.013119837269186974, + 0.01945485547184944, + -0.061327725648880005, + 0.09491335600614548, + 0.09594215452671051, + 0.01625140756368637, + 0.05320141091942787, + -0.037593573331832886 + ], + "number-circle-five-bold||5,round,numbers,numerals,digits,mathematics,arithmetic,calculator": [ + -0.018371764570474625, + -0.0008097847457975149, + -0.05340682342648506, + 0.002038762904703617, + -0.020064108073711395, + -0.037574075162410736, + 0.05848719924688339, + 0.012307440862059593, + 0.013412557542324066, + -0.046384409070014954, + -0.006269280798733234, + 0.007388243917375803, + 0.055126313120126724, + -0.043766655027866364, + 0.007498685736209154, + -0.03141331672668457, + -0.08109425753355026, + -0.0035016851034015417, + -0.007219734601676464, + -0.05439973622560501, + 0.025453146547079086, + 0.015730813145637512, + 0.015610346570611, + 0.1126665398478508, + 0.05402759835124016, + 0.014930741861462593, + 0.009679088369011879, + -0.02658248506486416, + 0.01823282055556774, + -0.07583807408809662, + -0.09389666467905045, + 0.07308906316757202, + 0.0994991809129715, + -0.012640487402677536, + -0.033338066190481186, + 0.0026714778505265713, + -0.03957149013876915, + 0.06354720890522003, + -0.02321804128587246, + 0.07082803547382355, + -0.006264306139200926, + -0.11260183155536652, + 0.052686624228954315, + 0.02172713167965412, + -0.05476802960038185, + 0.0011303145438432693, + -0.15045802295207977, + 0.03427591919898987, + -0.02102973870933056, + 0.015403750352561474, + -0.05762609466910362, + -0.037999629974365234, + -0.18241402506828308, + -0.029686056077480316, + 0.03406557813286781, + -0.0504022091627121, + -0.00189665996003896, + -0.0447826012969017, + 0.03520089015364647, + -0.013853802345693111, + 0.0008647340582683682, + 0.016843097284436226, + 0.02119629830121994, + 0.00588453421369195, + -0.035089679062366486, + 0.05168892815709114, + 0.0013500394998118281, + -0.1006128266453743, + -0.0029370246920734644, + 0.001148128299973905, + 0.007211307995021343, + 0.01128432434052229, + -0.0034536290913820267, + -0.014506791718304157, + -0.05335783213376999, + 0.02212335355579853, + -0.04521890729665756, + 0.004940580576658249, + -0.041062287986278534, + -0.04621255025267601, + -0.0756785199046135, + -0.030277766287326813, + -0.010603884235024452, + 0.03916303068399429, + 0.0027892079669982195, + 0.05466654151678085, + 0.017279015854001045, + -0.0072594694793224335, + -0.0009547367226332426, + -0.09638888388872147, + -0.06983292102813721, + -0.011375108733773232, + -0.036372389644384384, + 0.04106927290558815, + -0.1251823604106903, + 0.058385029435157776, + 0.028347289189696312, + -0.01376157533377409, + -0.07449137419462204, + 0.07504403591156006, + 0.039104755967855453, + 0.004567313939332962, + 0.018276700749993324, + -0.007077047135680914, + -0.03907052427530289, + -0.029207436367869377, + 0.07942590862512589, + -0.05075972527265549, + 0.036082468926906586, + -0.020121073350310326, + -0.021681955084204674, + -0.09491004049777985, + -0.02527596242725849, + -0.04756532981991768, + 0.009354835376143456, + -0.03400960937142372, + -0.03159680962562561, + 0.0018683280795812607, + 0.09609301388263702, + 0.05844859033823013, + 0.033789727836847305, + 0.023135576397180557, + 0.005517466925084591, + -0.026145482435822487, + -0.09927240759134293, + 0.04148038104176521, + -0.020340699702501297, + -2.243442723487844e-33, + -0.024343211203813553, + 0.01726323552429676, + -0.0016314171953126788, + 0.12580884993076324, + -0.032081566751003265, + -0.07744147628545761, + -0.0027022436261177063, + -0.05667782202363014, + 0.03093312308192253, + 0.054000742733478546, + 0.03567694127559662, + 0.11473604291677475, + 0.03560635820031166, + 0.03679271042346954, + 0.15257258713245392, + -0.011545288376510143, + 0.07993562519550323, + -0.030936896800994873, + -0.048487935215234756, + -0.03162615746259689, + 0.01094069890677929, + 0.038704127073287964, + -0.07284068316221237, + -0.02877124398946762, + 0.05397459492087364, + 0.08021619915962219, + 0.024589750915765762, + 0.00022669151076115668, + 0.022133562713861465, + 0.03675807639956474, + 0.03714441880583763, + 0.009178957901895046, + 0.053321342915296555, + -0.009732685051858425, + 0.07529992610216141, + 0.011449282057583332, + 0.007184140849858522, + 0.04336511343717575, + 0.07816261053085327, + -0.013688715174794197, + -0.06997856497764587, + -0.0644686371088028, + -0.03611283376812935, + 0.06632157415151596, + 0.040549661964178085, + 0.12489667534828186, + -0.027515834197402, + 0.04142650589346886, + 0.05836816132068634, + -0.030386118218302727, + -0.08810123056173325, + 0.005217581521719694, + 0.009445019997656345, + -0.026669368147850037, + 0.018812406808137894, + -0.0500122606754303, + 0.01616496406495571, + 0.057657673954963684, + -0.06808047741651535, + 0.01941874995827675, + 0.034487105906009674, + 0.07448900490999222, + 0.03554210439324379, + -0.09812070429325104, + -0.11052273213863373, + 0.0844871774315834, + -0.08687102794647217, + -0.052552685141563416, + 0.0836830884218216, + 0.021013259887695312, + -0.04790531098842621, + 0.09204259514808655, + 0.05413292720913887, + 0.07801808416843414, + 0.02857460081577301, + -0.0018537970026955009, + 0.06032886728644371, + -0.0358881875872612, + -0.047540441155433655, + 0.03589347377419472, + -0.013063037768006325, + -0.011645696125924587, + -0.02569698542356491, + 0.04599824547767639, + 0.05114869773387909, + -0.01679077185690403, + 0.04008419066667557, + -0.04969368502497673, + 0.013533205725252628, + -0.026246968656778336, + -0.023362528532743454, + -0.01863459311425686, + 0.08380681276321411, + -0.020510632544755936, + -0.13839124143123627, + -9.457049498682043e-34, + -0.04323023557662964, + -0.0014798709889873862, + -0.059653811156749725, + 0.052239738404750824, + -0.05335182696580887, + 0.03485037013888359, + 0.002952100243419409, + -0.05561527982354164, + 0.0012165303342044353, + 0.0024426085874438286, + -0.00869813747704029, + 0.026376353576779366, + -0.02289602719247341, + -0.015276669524610043, + -0.030287297442555428, + 0.0013140719383955002, + -0.0071148197166621685, + 0.015649016946554184, + -0.02203226648271084, + 0.021020900458097458, + -0.034904345870018005, + 0.021641431376338005, + -0.07092504948377609, + 0.006681195460259914, + 0.017800839617848396, + 0.08764166384935379, + 0.014310301281511784, + -0.11186365783214569, + 0.008031824603676796, + 0.01476177480071783, + -0.04619566351175308, + -0.12718942761421204, + 0.13565479218959808, + 0.023877518251538277, + -0.07317513972520828, + -0.05227801948785782, + 0.13320933282375336, + -0.04069026932120323, + -0.09415702521800995, + -0.05554579198360443, + -0.026782790198922157, + -0.03177879378199577, + 0.1163414791226387, + 0.04456733539700508, + -0.027847815304994583, + -0.07308988273143768, + 0.028254743665456772, + -0.005909217055886984, + -0.06749904155731201, + 0.059034716337919235, + 0.055926769971847534, + -0.00501295318827033, + -0.03970254957675934, + 0.030902795493602753, + -0.0632120668888092, + 0.020146958529949188, + 0.034991342574357986, + 0.08729109168052673, + -0.016603287309408188, + 0.10270331799983978, + -0.06621530652046204, + 0.006488714832812548, + 0.04420044273138046, + 0.057033464312553406, + -0.008087859489023685, + -0.026911839842796326, + 0.010072554461658001, + -0.0031053093262016773, + -0.05595093220472336, + -0.0534883588552475, + -0.05679193139076233, + 0.037174392491579056, + 0.025086259469389915, + 0.029325617477297783, + -0.044013142585754395, + -0.02003602683544159, + 0.0416111946105957, + 0.06723859161138535, + -0.01434569526463747, + 0.055415086448192596, + 0.024128524586558342, + 0.00046387730981223285, + -0.05760819464921951, + 0.008891063742339611, + -0.08233383297920227, + -0.0013572074240073562, + 0.08655564486980438, + 0.015244051814079285, + 0.020344803109765053, + -0.007853708229959011, + -0.03258908540010452, + 0.08105283230543137, + -0.027405492961406708, + -0.010479540564119816, + 0.0071856072172522545, + -2.2582089087563872e-08, + 0.030623286962509155, + 0.0008700205944478512, + -0.029037442058324814, + -0.017920909449458122, + 0.07113128155469894, + -0.018643898889422417, + -0.03140405938029289, + -0.07091482728719711, + -0.03373079001903534, + 0.006087076850235462, + 0.03801845759153366, + 0.04642380028963089, + -0.1044149398803711, + -0.028894877061247826, + 0.008962211199104786, + -0.008669900707900524, + 0.045545801520347595, + 0.02332143858075142, + 0.02940967306494713, + -0.033087100833654404, + -0.030748587101697922, + 0.01142938807606697, + 0.07969968020915985, + -0.05504097044467926, + 0.017463544383645058, + -0.007638079114258289, + -0.02774314023554325, + 0.051816947758197784, + -0.007023116108030081, + 0.0037758168764412403, + 0.022199153900146484, + 0.051200021058321, + -0.049720752984285355, + -0.018338719382882118, + -0.06944776326417923, + -0.009846252389252186, + -0.022347213700413704, + 0.02476215548813343, + 0.010159630328416824, + 0.06526532769203186, + -0.032530415803194046, + -0.03485171124339104, + -0.04402918368577957, + -0.006597150582820177, + 0.04957056790590286, + -0.010204611346125603, + 0.01408085785806179, + -0.08342373371124268, + -0.04551577940583229, + -0.10038459300994873, + -0.10943052917718887, + 0.056644976139068604, + 0.06968111544847488, + 0.04490438103675842, + -0.005033241584897041, + -0.06381392478942871, + 0.0179329551756382, + 0.019964011386036873, + -0.05581481009721756, + 0.08225208520889282, + 0.0567798987030983, + 0.021668849512934685, + 0.042250871658325195, + -0.002294698962941766 + ], + "number-circle-four-bold||*updated*,4,round,numbers,numerals,digits,mathematics,arithmetic,calculator": [ + 0.0182779710739851, + 0.03352265805006027, + -0.09066948294639587, + -0.006757581140846014, + -0.05581030622124672, + -0.024447036907076836, + 0.05235707014799118, + 0.019909361377358437, + 0.019816461950540543, + -0.06357207149267197, + -0.011849358677864075, + 0.006896123290061951, + 0.0710601657629013, + -0.052364472299814224, + 0.0032911389134824276, + -0.029215732589364052, + -0.07792229950428009, + 0.01982097327709198, + 0.010468713007867336, + -0.04367506876587868, + -0.025836985558271408, + 0.017977576702833176, + 0.03389247879385948, + 0.12728780508041382, + 0.05125338211655617, + 0.01681605726480484, + 0.0003738593659363687, + -0.06413841992616653, + 0.041513003408908844, + -0.06488635390996933, + -0.07427223771810532, + 0.07057709991931915, + 0.13233937323093414, + -0.012487825006246567, + -0.008359929546713829, + -0.011043772101402283, + -0.02156905271112919, + 0.061620600521564484, + -0.026544226333498955, + 0.09816194325685501, + -0.014461033046245575, + -0.10038799792528152, + 0.08665275573730469, + 0.03768666088581085, + -0.0666823461651802, + 0.0018079597502946854, + -0.11378483474254608, + 0.017016131430864334, + -0.010356578975915909, + 0.017399348318576813, + -0.04652237519621849, + -0.028567582368850708, + -0.1846947818994522, + -0.019967753440141678, + 0.023001188412308693, + -0.05094818025827408, + -0.016003280878067017, + -0.04246963560581207, + 0.04025816172361374, + 0.02034122496843338, + 0.0616852231323719, + 0.020922929048538208, + 0.06192873790860176, + -0.01325536984950304, + -0.03451790660619736, + 0.046277277171611786, + 0.0011046859435737133, + -0.09785988926887512, + 0.001788156689144671, + -0.021663080900907516, + 0.047363217920064926, + 0.0644572451710701, + -0.011857643723487854, + -0.034693386405706406, + -0.032448507845401764, + 0.012283869087696075, + -0.03509094566106796, + 0.024211881682276726, + -0.03854432329535484, + -0.05896725505590439, + -0.012551181018352509, + -0.04882526770234108, + 0.011527862399816513, + -0.004778673872351646, + 0.01172285433858633, + 0.048859164118766785, + 0.01613200642168522, + -0.058193106204271317, + -0.0020323602948337793, + -0.06379082053899765, + -0.05265181511640549, + -0.01171813253313303, + -0.0396994948387146, + 0.02703983336687088, + -0.1386701464653015, + 0.06325535476207733, + 0.049728162586688995, + -0.012917615473270416, + -0.03900555521249771, + 0.11129166185855865, + 0.028666973114013672, + 0.028949545696377754, + -0.02354324981570244, + 0.012184255756437778, + -0.012012753635644913, + -0.003514963435009122, + 0.08294705301523209, + -0.017161212861537933, + 0.0204097181558609, + 0.012959112413227558, + 0.014441601000726223, + -0.1349809318780899, + -0.022425543516874313, + -0.03486981615424156, + -0.009790420532226562, + -0.030314667150378227, + -0.013788361102342606, + -0.017143893986940384, + 0.052209995687007904, + 0.06341065466403961, + 0.03029533103108406, + 0.024280358105897903, + 0.02728511206805706, + -0.028144722804427147, + -0.05359096825122833, + 0.046317555010318756, + -0.024923987686634064, + -2.371437160561098e-33, + -0.008502025157213211, + 0.060775838792324066, + 0.017099549993872643, + 0.07263030111789703, + -0.01576622575521469, + -0.08607690036296844, + -0.005892822984606028, + -0.058095987886190414, + 0.01592673733830452, + 0.03950299695134163, + 0.030171329155564308, + 0.10102448612451553, + 0.03881547227501869, + 0.04992927983403206, + 0.12687227129936218, + -0.07507336884737015, + 0.10670612752437592, + -0.028894567862153053, + -0.021974125877022743, + -0.03726460784673691, + -0.014290173538029194, + 0.0328386165201664, + -0.06959538906812668, + -0.0008483950514346361, + 0.05740414187312126, + 0.08176317065954208, + 0.034364085644483566, + -0.0012266914127394557, + 0.019213611260056496, + 0.043908245861530304, + 0.04467019438743591, + 0.024623092263936996, + 0.013644935563206673, + -0.01955893449485302, + 0.05595088005065918, + -0.02623233199119568, + -0.04694961756467819, + -0.003299787873402238, + 0.09304412454366684, + -0.025926662608981133, + -0.10560880601406097, + -0.05328242853283882, + -0.027440844103693962, + 0.008610205724835396, + 0.060480810701847076, + 0.09454677999019623, + -0.015167648904025555, + 0.03822176903486252, + 0.07521453499794006, + -0.04218680411577225, + -0.08843227475881577, + 0.02305181510746479, + -0.020259233191609383, + -0.04268944635987282, + -0.013849824666976929, + -0.09668650478124619, + 0.005787738133221865, + 0.036841604858636856, + -0.05469372868537903, + -0.004120385739952326, + 0.04947749525308609, + 0.05533897131681442, + -0.01338355801999569, + -0.08038540184497833, + -0.0983361229300499, + 0.05678549408912659, + -0.04962320253252983, + -0.06543783843517303, + 0.05203968659043312, + 0.015873659402132034, + -0.0367855541408062, + 0.04747990891337395, + 0.03950714319944382, + 0.047373346984386444, + 0.017137592658400536, + -0.011823427863419056, + 0.037044934928417206, + -0.024883469566702843, + -0.026367321610450745, + -0.005662519950419664, + -0.001888704369775951, + 0.023798169568181038, + -0.013375526294112206, + 0.05688893795013428, + 0.07823694497346878, + -0.03466605767607689, + 0.03792358934879303, + -0.023265888914465904, + 0.03198549896478653, + 0.0019012053962796926, + -0.054509349167346954, + 0.0013106365222483873, + 0.02236337587237358, + -0.018388977274298668, + -0.11583130061626434, + -9.581249660396033e-34, + -0.03643587604165077, + 0.05382944270968437, + -0.08364859968423843, + 0.025612670928239822, + -0.0755181759595871, + 0.022170620039105415, + 0.0015493484679609537, + -0.0067274379543960094, + 0.016463762149214745, + -0.011842602863907814, + 0.023619893938302994, + -0.008250311948359013, + -0.024366576224565506, + -0.024892201647162437, + -0.0036657818127423525, + 0.0026498495135456324, + -0.0404643714427948, + 0.005286636762320995, + -0.0595216304063797, + 0.02494943141937256, + -0.04011256620287895, + 0.045232485979795456, + -0.08015946298837662, + 0.021429456770420074, + 0.019804438576102257, + 0.025910386815667152, + 0.035973500460386276, + -0.09779401868581772, + 0.0029330425895750523, + 0.0421622209250927, + -0.07947149127721786, + -0.14033015072345734, + 0.1067730113863945, + 0.04799783602356911, + -0.0913345217704773, + -0.058335401117801666, + 0.16751499474048615, + -0.06932753324508667, + -0.0775492936372757, + -0.048811834305524826, + -0.003420580178499222, + -0.030289044603705406, + 0.11558815836906433, + 0.04560577869415283, + 0.006389562971889973, + -0.0625143051147461, + 0.025286443531513214, + 0.03738908842206001, + -0.087774358689785, + 0.05619431287050247, + 0.05494110286235809, + -0.012868284247815609, + -0.028942428529262543, + 0.019581759348511696, + -0.041847746819257736, + 0.033137962222099304, + 0.009355142712593079, + 0.0756358802318573, + -0.042991574853658676, + 0.07371705025434494, + -0.07652370631694794, + -0.008672988973557949, + 0.0674273893237114, + 0.06325332075357437, + -0.007492252625524998, + -0.052503444254398346, + -0.037313178181648254, + -0.04298703372478485, + -0.05840150639414787, + -0.05138460919260979, + -0.009695740416646004, + 0.03942051902413368, + -0.030505025759339333, + 0.04157981276512146, + -0.027875734493136406, + -0.040751077234745026, + 0.010768997482955456, + 0.03354055806994438, + -0.04262223467230797, + 0.046861130744218826, + 0.009463927708566189, + 0.01474777702242136, + -0.0007443673675879836, + -0.025794221088290215, + -0.07341200858354568, + 0.0010608938755467534, + 0.09626483172178268, + 0.02198108285665512, + 0.006831037811934948, + -0.03864050284028053, + -0.034054819494485855, + 0.07132712751626968, + -0.01084941253066063, + -0.0028741033747792244, + 0.009421654976904392, + -2.4820428379257464e-08, + 0.03067137487232685, + 0.024148527532815933, + -0.02801593393087387, + -0.00933125987648964, + 0.06170938163995743, + -0.023249533027410507, + -0.027066953480243683, + -0.05435235798358917, + -0.07063554227352142, + -0.0442647859454155, + 0.028681978583335876, + 0.058038294315338135, + -0.10298261791467667, + -0.05929745361208916, + 0.043963659554719925, + -0.004543043207377195, + 0.03576941788196564, + -0.008660559542477131, + -0.0010925603564828634, + -0.04714426398277283, + -0.016586266458034515, + 0.024645306169986725, + 0.0686512365937233, + -0.04021080583333969, + -0.0004207725578453392, + 0.00795726664364338, + -0.025962842628359795, + 0.05698419734835625, + -0.009270807728171349, + -0.010046803392469883, + 0.07454042881727219, + 0.0331876203417778, + -0.0383734330534935, + -0.0375649556517601, + -0.08466938138008118, + -0.053851418197155, + -0.011197802610695362, + 0.04385650157928467, + 0.044564127922058105, + 0.06374533474445343, + -0.02294466458261013, + -0.0199261587113142, + -0.04640892520546913, + 0.015713101252913475, + 0.03508105129003525, + 0.01703941449522972, + -0.023696206510066986, + -0.09776713699102402, + -0.07396283000707626, + -0.07742006331682205, + -0.08190139383077621, + 0.05556924641132355, + 0.07304439693689346, + 0.06733828783035278, + 0.00039348931750282645, + -0.06483262032270432, + 0.01944936066865921, + 0.05365370586514473, + -0.06284687668085098, + 0.08664537221193314, + 0.08146640658378601, + 0.016142720356583595, + 0.04248259589076042, + -0.0065991696901619434 + ], + "number-circle-nine-bold||9,round,numbers,numerals,digits,mathematics,arithmetic,calculator": [ + -0.011543509550392628, + 0.0019534477032721043, + -0.06726290285587311, + 0.010072742588818073, + -0.01033475436270237, + 0.005722845904529095, + 0.06097600981593132, + 0.08124805986881256, + -0.004352521616965532, + -0.10988952219486237, + -0.0006386180757544935, + -0.0016855986323207617, + 0.04688580334186554, + -0.041087016463279724, + 0.008757703937590122, + -0.07437284290790558, + -0.08146120607852936, + -0.002864178502932191, + 0.020066479220986366, + -0.03353657200932503, + 0.00821780413389206, + 0.04943270981311798, + 0.04938283935189247, + 0.09171334654092789, + 0.06970404088497162, + 0.0031455981079488993, + 0.011310672387480736, + -0.030339205637574196, + 0.032564613968133926, + -0.05926080420613289, + -0.07583270967006683, + 0.052226852625608444, + 0.10161388665437698, + 0.025920741260051727, + -0.00762384757399559, + -0.009518305771052837, + -0.04175036773085594, + 0.07222746312618256, + -0.05898556485772133, + 0.07529381662607193, + -0.003971488680690527, + -0.09246699512004852, + 0.09656400978565216, + 0.014097151346504688, + -0.05269252881407738, + 0.00466747023165226, + -0.08007055521011353, + 0.03573200851678848, + -0.04392148181796074, + 0.034692805260419846, + -0.05328996852040291, + -0.047026123851537704, + -0.1610359400510788, + 0.00020541241974569857, + 0.0648755431175232, + -0.06385980546474457, + 0.0015210352139547467, + -0.05965480953454971, + 0.008189816027879715, + -0.02185078337788582, + 0.0011699526803568006, + 0.03369037061929703, + 0.04804515093564987, + -0.006484068930149078, + -0.019352298229932785, + 0.04289053753018379, + 0.001700923778116703, + -0.09748755395412445, + -0.0036962523590773344, + -0.0017466212157160044, + 0.0739898830652237, + 0.04530630260705948, + -0.05206736922264099, + -0.03679084777832031, + -0.04755474999547005, + 0.0473383329808712, + -0.0425342433154583, + 0.021213527768850327, + -0.07238194346427917, + -0.048534590750932693, + -0.024806281551718712, + -0.020607400685548782, + 0.016516203060746193, + 0.03919859975576401, + 0.008463798090815544, + 0.031217141076922417, + 0.0213954858481884, + -0.007929403334856033, + -0.02752070687711239, + -0.07278403639793396, + -0.07844105362892151, + 0.008933871984481812, + -0.010011807084083557, + 0.030090980231761932, + -0.12428762763738632, + 0.041285134851932526, + 0.03765615448355675, + -0.0014652423560619354, + -0.07552490383386612, + 0.09547236561775208, + 0.031657200306653976, + 0.030342167243361473, + 0.0024081645533442497, + 0.026274407282471657, + -0.02333179861307144, + 0.001283713965676725, + 0.06978358328342438, + -0.03177598863840103, + 0.01899758353829384, + -0.011613220907747746, + 0.020619336515665054, + -0.0865689367055893, + -0.023800719529390335, + -0.05142530798912048, + 0.005782111082226038, + -0.054264094680547714, + -0.022963380441069603, + -0.0032452610321342945, + 0.08870576322078705, + 0.08931363373994827, + 0.00328423990868032, + 0.016177160665392876, + 0.01703881286084652, + -0.030758913606405258, + -0.06607671082019806, + 0.07130066305398941, + -0.029564596712589264, + -2.051712615371021e-33, + -0.030130231752991676, + 0.029378648847341537, + -0.004651505500078201, + 0.05078091099858284, + -0.020990366116166115, + -0.09157658368349075, + -0.04426353797316551, + -0.024820342659950256, + 0.011699658818542957, + 0.04393130540847778, + 0.002335610333830118, + 0.10338949412107468, + 0.02958916313946247, + 0.049182962626218796, + 0.15594182908535004, + -0.043581582605838776, + 0.09482637792825699, + -0.023842820897698402, + -0.042527228593826294, + -0.05875048041343689, + -0.008496947586536407, + 0.020076222717761993, + -0.06862829625606537, + -0.03080739453434944, + 0.033037856221199036, + 0.046290162950754166, + 0.022123277187347412, + 0.04978625848889351, + -0.002992725232616067, + 0.005923321470618248, + 0.051989249885082245, + 0.01792026311159134, + 0.0273423008620739, + -0.004655202850699425, + 0.08407917618751526, + -4.168652594671585e-05, + -0.005747537594288588, + 0.004435638431459665, + 0.09725872427225113, + -0.02733687311410904, + -0.08178135007619858, + -0.06117616221308708, + -0.013198238797485828, + -0.003752326825633645, + 0.07189792394638062, + 0.08987599611282349, + -0.012972695752978325, + 0.02134479209780693, + 0.06953457742929459, + -0.04451284185051918, + -0.06955477595329285, + 0.019786519929766655, + 0.007004259154200554, + -0.009305605664849281, + 0.024176912382245064, + -0.10941541194915771, + 0.036841634660959244, + 0.055172961205244064, + -0.05718199536204338, + 0.023868653923273087, + 0.05288524925708771, + 0.017080428078770638, + 0.008236664347350597, + -0.10093352943658829, + -0.11275159567594528, + 0.06243985891342163, + -0.06759290397167206, + -0.04541439935564995, + 0.09163829684257507, + -0.023806996643543243, + -0.04131164401769638, + 0.04781804606318474, + 0.04069327563047409, + 0.042886894196271896, + 0.04172735661268234, + 0.02978219836950302, + 0.050241097807884216, + -0.013754504732787609, + -0.009990056045353413, + 0.008695390075445175, + 0.029345480725169182, + 0.018995214253664017, + -0.054861485958099365, + 0.05735356733202934, + 0.060823749750852585, + -0.01966617815196514, + 0.025672638788819313, + -0.035967450588941574, + -0.002765804994851351, + -0.00864360947161913, + -0.03736686706542969, + 0.0031044932547956705, + 0.03714562952518463, + -0.028680793941020966, + -0.12351126968860626, + -8.36251181114287e-34, + -0.07321672141551971, + 0.022060740739107132, + -0.08493301272392273, + 0.018616795539855957, + -0.05952448397874832, + 0.02282392606139183, + -0.0020162018481642008, + -0.04437698423862457, + -0.024247072637081146, + -0.053685009479522705, + -0.01720161736011505, + -0.01651667430996895, + -0.004387437365949154, + -0.08351844549179077, + -0.01593872159719467, + -0.024841206148266792, + -0.012528154999017715, + 0.03046969696879387, + -0.018680213019251823, + 0.011777181178331375, + -0.03850007802248001, + 0.03497014194726944, + -0.06929726153612137, + -0.002133978297933936, + -0.010734573006629944, + 0.023197924718260765, + 0.02311171032488346, + -0.05904478207230568, + 0.029850047081708908, + 0.04737134650349617, + -0.056317634880542755, + -0.12284253537654877, + 0.07922620326280594, + 0.06690364331007004, + -0.09653431177139282, + -0.05382034182548523, + 0.13834664225578308, + -0.05022796243429184, + -0.05915993079543114, + -0.06252741813659668, + 0.02534257061779499, + -0.054414208978414536, + 0.09167850017547607, + 0.03695157915353775, + -0.008720005862414837, + -0.03238088637590408, + 0.032943110913038254, + -0.0038208996411412954, + -0.09603903442621231, + 0.07665295898914337, + 0.05093233287334442, + -0.005440807435661554, + -0.0056246486492455006, + 0.030514394864439964, + -0.045740097761154175, + 0.049500007182359695, + 0.03586529567837715, + 0.05310855433344841, + 0.0021779893431812525, + 0.08174275606870651, + -0.05756896734237671, + 0.03373613581061363, + 0.018796510994434357, + 0.06370975077152252, + -0.04847661778330803, + -0.048048652708530426, + -0.0033113069366663694, + 0.005933159962296486, + -0.04768144339323044, + -0.08289575576782227, + -0.032963961362838745, + 0.046090006828308105, + 0.01650901325047016, + 0.043721314519643784, + -0.03730624541640282, + -0.04024755209684372, + 0.03120233118534088, + 0.06793262809515, + -0.0035525967832654715, + 0.04870567098259926, + 0.027753222733736038, + -0.013255909085273743, + -0.032623954117298126, + -0.0009570179972797632, + -0.03571359068155289, + 0.016401469707489014, + 0.08533360809087753, + 0.005142170935869217, + 0.031147059053182602, + -0.015715330839157104, + -0.004701070953160524, + 0.08575993031263351, + -0.015031055547297001, + -0.015804238617420197, + 0.028848949819803238, + -2.226452799902745e-08, + 0.036484938114881516, + -0.027077749371528625, + 0.009535028599202633, + -0.03429007902741432, + 0.07930266112089157, + -0.04915569722652435, + 0.00272445660084486, + -0.06242240220308304, + -0.09064467996358871, + 0.0031785136088728905, + 0.05177845060825348, + 0.03758792206645012, + -0.1359107494354248, + -0.06343886256217957, + 0.021127982065081596, + -0.005836344789713621, + 0.07041657716035843, + 0.021186131983995438, + 0.02111123315989971, + -0.015261635184288025, + -0.04970480501651764, + 0.013880978338420391, + 0.11136391013860703, + -0.045716363936662674, + -0.00857363548129797, + 0.04372997581958771, + -0.057878971099853516, + 0.05289708450436592, + 0.016557883471250534, + 0.011930988170206547, + 0.06772232055664062, + 0.04893090948462486, + -0.05634919926524162, + -0.041371796280145645, + -0.0765506699681282, + -0.06676594167947769, + 0.013083083555102348, + 0.03216954693198204, + 0.045144859701395035, + 0.03284429386258125, + -0.010650974698364735, + -0.02548753283917904, + -0.052500586956739426, + 0.004569389391690493, + 0.0324433371424675, + 0.00979448202997446, + -0.004121775738894939, + -0.05868702009320259, + -0.07031568139791489, + -0.10241443663835526, + -0.04888639599084854, + 0.059571523219347, + 0.05863542482256889, + 0.03856321796774864, + -0.027060050517320633, + -0.10629910975694656, + 0.020400630310177803, + 0.01965872198343277, + -0.09214868396520615, + 0.12311266362667084, + 0.09055987745523453, + 0.038996703922748566, + 0.037638816982507706, + -0.040958959609270096 + ], + "number-circle-one-bold||1,round,numbers,numerals,digits,mathematics,arithmetic,calculator": [ + -0.014055425301194191, + 0.00293196109123528, + -0.0969671979546547, + 0.006074797827750444, + -0.037117913365364075, + -0.0408359058201313, + 0.07990571856498718, + 0.03493427485227585, + 0.03986811265349388, + -0.07885538041591644, + -0.015513396821916103, + 0.010497712530195713, + 0.10131044685840607, + -0.0384441539645195, + 0.012477517127990723, + -0.05363013222813606, + -0.08117222785949707, + -0.014154089614748955, + 0.04768247902393341, + -0.030098695307970047, + -0.0013364751357585192, + 0.03665071353316307, + 0.03460864722728729, + 0.11406705528497696, + 0.06145620346069336, + -0.01298980787396431, + 0.023027798160910606, + -0.04422906041145325, + 0.05158555135130882, + -0.07621759921312332, + -0.08059430122375488, + 0.05264194309711456, + 0.11874091625213623, + 0.01945352554321289, + 0.00465193297713995, + -0.00893356278538704, + -0.010008227080106735, + 0.0634133592247963, + -0.04505399242043495, + 0.07579774409532547, + -0.0034879634622484446, + -0.10131324827671051, + 0.10242094844579697, + -0.001293231500312686, + -0.07194086164236069, + -0.015632251277565956, + -0.1401580423116684, + 0.031997621059417725, + -0.030093898996710777, + 0.02383970096707344, + -0.03527357801795006, + -0.01797677017748356, + -0.16380318999290466, + -0.018133867532014847, + 0.04870791360735893, + -0.03175399824976921, + -0.02746354602277279, + -0.030054690316319466, + 0.018615134060382843, + -0.019385917112231255, + 0.01618162728846073, + -0.013092370703816414, + 0.05326361581683159, + -0.019042151048779488, + -0.016213413327932358, + 0.029777372255921364, + -0.0005792882875539362, + -0.08744432777166367, + 0.018662655726075172, + -0.011125928722321987, + 0.02838282659649849, + 0.029748888686299324, + -0.03538992628455162, + -0.0036119590513408184, + -0.040273748338222504, + 0.033020880073308945, + -0.04031166434288025, + 0.03231361508369446, + -0.0342106819152832, + -0.05764055252075195, + -0.054002564400434494, + -0.0512554757297039, + 0.007752708625048399, + 0.023867160081863403, + 0.025829462334513664, + 0.06044026464223862, + 0.03481253609061241, + -0.02762109413743019, + 0.01736733689904213, + -0.07224041223526001, + -0.07539061456918716, + 0.001646363758482039, + -0.003695463528856635, + 0.047144435346126556, + -0.11496790498495102, + 0.04417978227138519, + 0.04922021925449371, + 0.008344834670424461, + -0.06662861257791519, + 0.09337258338928223, + 0.01149744726717472, + 0.041207361966371536, + 0.02244301699101925, + 0.01108324434608221, + -0.043982602655887604, + -0.0276847705245018, + 0.07087674736976624, + -0.06410770863294601, + 0.0328122042119503, + -0.003968335688114166, + 0.02082619071006775, + -0.11269693821668625, + -0.010401698760688305, + -0.05425296351313591, + -0.0011306680971756577, + -0.048275724053382874, + -0.020620716735720634, + 0.007012018468230963, + 0.10876769572496414, + 0.06515025347471237, + 0.012986495159566402, + 0.02871132455766201, + 0.002553200349211693, + -0.018252676352858543, + -0.0718323215842247, + 0.031614698469638824, + -0.02372157946228981, + -2.264534214548465e-33, + -0.021626103669404984, + 0.04318566992878914, + -0.018798399716615677, + 0.0696013867855072, + -0.0335596464574337, + -0.06760954111814499, + -0.01152754109352827, + -0.03543591499328613, + 0.019607245922088623, + 0.04704568535089493, + 0.026068156585097313, + 0.10784714668989182, + 0.036550965160131454, + 0.05173376575112343, + 0.13283556699752808, + -0.04082878306508064, + 0.10146508365869522, + -0.0450056828558445, + -0.04010611027479172, + -0.05592821165919304, + -0.022493207827210426, + 0.029517384245991707, + -0.07935862988233566, + -0.012720974162220955, + 0.04363337159156799, + 0.0556306466460228, + 0.0465167798101902, + 0.015845846384763718, + -0.011704755015671253, + 0.030344245955348015, + 0.05314236879348755, + 0.020291391760110855, + 0.017654387280344963, + 6.39274949207902e-05, + 0.05123257637023926, + -0.0011594733223319054, + -0.009285883978009224, + 0.028848500922322273, + 0.0873129591345787, + -0.028960345312952995, + -0.09032480418682098, + -0.04475967958569527, + -0.014288903214037418, + 0.012796783819794655, + 0.04029620438814163, + 0.09674614667892456, + 0.0033039688132703304, + 0.058165743947029114, + 0.0552491620182991, + -0.029967235401272774, + -0.09503855556249619, + 0.013591036200523376, + -0.012567037716507912, + -0.0415818989276886, + 0.026983708143234253, + -0.09294731914997101, + 0.03095805086195469, + 0.05229615047574043, + -0.06097007542848587, + 0.007205794099718332, + 0.02633267641067505, + 0.0578923262655735, + 0.022669533267617226, + -0.08035238832235336, + -0.12317506223917007, + 0.056284625083208084, + -0.08718975633382797, + -0.04352492839097977, + 0.07339978963136673, + -0.0008016955107450485, + -0.0542735792696476, + 0.0755755752325058, + 0.010408713482320309, + 0.030067510902881622, + 0.011487332172691822, + 0.015545058995485306, + 0.037081342190504074, + -0.05007510632276535, + -0.04721515625715256, + 0.028345108032226562, + -0.015848595649003983, + -0.0004717022820841521, + -0.029230821877717972, + 0.05196133255958557, + 0.0554593987762928, + -0.0045380787923932076, + 0.02986208163201809, + -0.0471629835665226, + 0.02311204932630062, + -0.02527698688209057, + -0.031787674874067307, + 0.019384561106562614, + 0.06608578562736511, + -0.013141379691660404, + -0.13971561193466187, + -4.674934604735506e-34, + -0.08530983328819275, + 0.013182604685425758, + -0.07242181897163391, + 0.03857951983809471, + -0.047426365315914154, + 0.04185925051569939, + 0.0016627941513434052, + -0.05310020595788956, + 0.017822835594415665, + -0.020373117178678513, + 0.0010257274843752384, + 0.009845500811934471, + -0.03289632871747017, + -0.0494530014693737, + -0.024373268708586693, + -0.01878431625664234, + -0.015512773767113686, + 0.0122325848788023, + -0.04539982229471207, + 0.02137773483991623, + -0.054744478315114975, + 0.03622663393616676, + -0.07828830927610397, + 0.023163340985774994, + -0.039592571556568146, + 0.05245402827858925, + 0.013160943053662777, + -0.08461128175258636, + 0.012876912951469421, + 0.06665463000535965, + -0.038414280861616135, + -0.1224420890212059, + 0.12357570976018906, + 0.03650251403450966, + -0.08657604455947876, + -0.05077524855732918, + 0.15198034048080444, + -0.07665836811065674, + -0.06322245299816132, + -0.05260349437594414, + -0.02247261442244053, + -0.05968894064426422, + 0.09200264513492584, + 0.026148755103349686, + 0.003348720259964466, + -0.06037268787622452, + 0.049269940704107285, + -0.018286436796188354, + -0.08402097225189209, + 0.053632814437150955, + 0.034275155514478683, + 0.0341680683195591, + -0.003409395460039377, + 0.022746359929442406, + -0.03483537212014198, + 0.015666034072637558, + 0.007488796021789312, + 0.06901426613330841, + -0.012974776327610016, + 0.08444812893867493, + -0.04568162187933922, + 0.025337301194667816, + 0.03117484785616398, + 0.08644089102745056, + -0.02699020877480507, + -0.045276764780282974, + -0.009967057965695858, + -0.010377929545938969, + -0.060980238020420074, + -0.02801665849983692, + 0.0021299461368471384, + 0.06522375345230103, + 0.027612194418907166, + 0.031042512506246567, + -0.045453280210494995, + -0.03405657038092613, + 0.027633700519800186, + 0.02413392998278141, + -0.03647253289818764, + 0.042632244527339935, + 0.03840717673301697, + 0.026026297360658646, + -0.05957202985882759, + 0.006548060569912195, + -0.04750761762261391, + 0.010692174546420574, + 0.10335723310709, + -0.00585750350728631, + -0.0030789226293563843, + -0.01374489814043045, + -0.02050727978348732, + 0.08341820538043976, + -0.042395707219839096, + -0.0006276353378780186, + 0.0044051846489310265, + -2.311969815593784e-08, + 0.0008244180935434997, + 0.0062083229422569275, + -0.013550011441111565, + -0.034456249326467514, + 0.07396621257066727, + -0.02299429662525654, + -0.0201432928442955, + -0.061911456286907196, + -0.06350773572921753, + -0.019212709739804268, + 0.031850747764110565, + 0.08484992384910583, + -0.10448864102363586, + -0.04365695267915726, + 0.04217148944735527, + 0.0005622164462693036, + 0.06253527104854584, + 0.007523581385612488, + 0.014117189683020115, + -0.010177825577557087, + 0.009923280216753483, + 0.013969866558909416, + 0.08022432774305344, + -0.09531689435243607, + -0.0001821873738663271, + -0.001078887959010899, + -0.04143200442194939, + 0.06411346793174744, + 0.0034706585574895144, + -0.015526593662798405, + 0.03183332830667496, + 0.03519466519355774, + -0.026510080322623253, + -0.02130241133272648, + -0.06876447796821594, + -0.028038984164595604, + -0.007604071404784918, + 0.04725435748696327, + 0.03146445006132126, + 0.039993513375520706, + -0.007407142780721188, + -0.003981877584010363, + -0.052777379751205444, + 0.0007525894907303154, + 0.05230327323079109, + 0.017537523061037064, + 0.0007515001925639808, + -0.0899135023355484, + -0.08648339658975601, + -0.10829069465398788, + -0.09070153534412384, + 0.06240338832139969, + 0.0769016370177269, + 0.046949323266744614, + -0.005328383296728134, + -0.057124435901641846, + -0.0042856186628341675, + 0.04839617758989334, + -0.06202490255236626, + 0.10019142180681229, + 0.06153847277164459, + 0.03056943230330944, + 0.040652137249708176, + -0.016945060342550278 + ], + "number-circle-seven-bold||7,round,numbers,numerals,digits,mathematics,arithmetic,calculator": [ + -0.023696202784776688, + 0.005216363817453384, + -0.07675731182098389, + 0.03970930352807045, + -0.04589938744902611, + -0.029798166826367378, + 0.06875087320804596, + 0.03610183298587799, + 0.004065976478159428, + -0.04914185404777527, + -0.01954001560807228, + -0.013094593770802021, + 0.053175490349531174, + -0.025801613926887512, + 0.0023417409975081682, + -0.05635418742895126, + -0.09420138597488403, + 0.000672932539600879, + 0.020811287686228752, + -0.0414828285574913, + 0.00792749784886837, + 0.03837352991104126, + 0.04572494700551033, + 0.1378656029701233, + 0.06629269570112228, + 0.008889557793736458, + 0.02107902057468891, + -0.0027234458830207586, + 0.03709949925541878, + -0.08320426195859909, + -0.10539904981851578, + 0.05838444456458092, + 0.1266510933637619, + 0.02213718555867672, + -0.003206058405339718, + 0.0008469484164379537, + -0.0016564583638682961, + 0.053676385432481766, + -0.040729820728302, + 0.08037786930799484, + -0.015979859977960587, + -0.09443829953670502, + 0.08505964279174805, + -0.01069929264485836, + -0.09902658313512802, + 0.004471467807888985, + -0.11112990230321884, + 0.010078521445393562, + -0.0015068657230585814, + 0.020682718604803085, + -0.05041489005088806, + -0.0509420782327652, + -0.17564009130001068, + 0.0026447067502886057, + 0.06135194003582001, + -0.049648433923721313, + -0.03830714523792267, + -0.09776496887207031, + 0.02101382240653038, + 0.0001942792150657624, + -0.010577130131423473, + -0.012795796617865562, + 0.04111679643392563, + 0.0026564467698335648, + -0.05908505618572235, + 0.0009921377059072256, + -0.03600671887397766, + -0.07677320390939713, + 0.0008695191936567426, + -0.025711866095662117, + 0.03768574073910713, + 0.0323769673705101, + -0.020023547112941742, + -0.0005254505085758865, + -0.014635246247053146, + 0.04245351254940033, + -0.05376306548714638, + 0.0057559930719435215, + -0.07564007490873337, + -0.08581981062889099, + -0.03142485395073891, + -0.039691511541604996, + 0.004519267473369837, + 0.043939895927906036, + 0.015539547428488731, + 0.036193374544382095, + 0.011286660097539425, + 0.0020208200439810753, + -0.008216389454901218, + -0.0744428038597107, + -0.04501112923026085, + 0.02479219064116478, + 0.011099275201559067, + 0.010928214527666569, + -0.11401425302028656, + 0.0540245957672596, + 0.06228560209274292, + -0.01151138637214899, + -0.07700040936470032, + 0.11702512204647064, + 0.03914312273263931, + 0.04268653690814972, + -0.0016203714767470956, + 0.0016806969651952386, + -0.02325410582125187, + -0.00735641410574317, + 0.04567356035113335, + -0.03343364968895912, + 0.029742732644081116, + -0.034339725971221924, + 0.008168747648596764, + -0.09046365320682526, + 0.02033691294491291, + -0.039152901619672775, + -0.012852180749177933, + -0.041095200926065445, + -0.01816750317811966, + 0.0029112149495631456, + 0.0940650925040245, + 0.08377786725759506, + 0.02238527312874794, + 0.02004917711019516, + 0.041957639157772064, + 0.015334999188780785, + -0.07736127823591232, + 0.03048095852136612, + -0.012973169796168804, + -2.2699286315927855e-33, + -0.0036495018284767866, + 0.009970148093998432, + 0.010977653786540031, + 0.08076491951942444, + -0.05799843743443489, + -0.08495786041021347, + 0.0016062427312135696, + -0.05461886152625084, + 0.05808735266327858, + 0.023237621411681175, + 0.011807450093328953, + 0.09222817420959473, + 0.04655693471431732, + 0.02916708216071129, + 0.13964183628559113, + -0.0297127366065979, + 0.1007380411028862, + -0.04755764827132225, + -0.05625823885202408, + -0.04107151925563812, + 0.022502966225147247, + 0.024405455216765404, + -0.09125889092683792, + -0.00240094936452806, + 0.03955308720469475, + 0.070501409471035, + 0.015433650463819504, + 0.05316697061061859, + 0.008775635622441769, + 0.016374511644244194, + 0.04842843860387802, + 0.022848965600132942, + 0.06154858320951462, + 0.028200620785355568, + 0.05860709398984909, + -0.023918548598885536, + -0.02684238739311695, + 0.010076940059661865, + 0.08641918748617172, + 0.007515092846006155, + -0.08291729539632797, + -0.06794577836990356, + -0.009577756747603416, + 0.016721900552511215, + 0.04439295828342438, + 0.10756345093250275, + -0.011531110852956772, + 0.05212927982211113, + 0.07135778665542603, + 0.0001484403182985261, + -0.03862357512116432, + 0.0077814324758946896, + -0.01327587477862835, + -0.026889828965067863, + 0.027873201295733452, + -0.04498830437660217, + 0.028133485466241837, + 0.048084404319524765, + -0.02373971976339817, + 0.0023739412426948547, + 0.04031429439783096, + 0.024346306920051575, + 0.010336019098758698, + -0.09162912517786026, + -0.10298936814069748, + 0.07783842831850052, + -0.0809975266456604, + -0.0466427281498909, + 0.025715280324220657, + -0.011513922363519669, + -0.05170004069805145, + 0.08452361822128296, + 0.05400698259472847, + 0.05785967782139778, + 0.03873071447014809, + 0.010046287439763546, + 0.028680112212896347, + -0.05136489123106003, + -0.04143834859132767, + -0.004261871799826622, + -0.018914099782705307, + -0.005162749905139208, + -0.06088804081082344, + 0.05823010206222534, + 0.04547210782766342, + -0.016733365133404732, + 0.02868063747882843, + -0.072001613676548, + -0.0007637323578819633, + -0.03518889471888542, + -0.061354462057352066, + 0.00310384389013052, + 0.02529749646782875, + -0.013527450151741505, + -0.12216109782457352, + -1.0144196660069711e-33, + -0.05993214249610901, + 0.029074741527438164, + -0.07111019641160965, + 0.037238311022520065, + -0.055103980004787445, + 0.029925912618637085, + -0.0036334493197500706, + -0.02456776052713394, + -0.0329936183989048, + -0.048446960747241974, + -0.01796901598572731, + 0.013307733461260796, + -0.009159872308373451, + -0.03860865905880928, + -0.022815609350800514, + 0.014647523872554302, + -0.01133801881223917, + 0.012669471092522144, + -0.02191031724214554, + 0.0002591240336187184, + -0.07010474056005478, + 0.01550010871142149, + -0.08005932718515396, + 0.030323706567287445, + 0.02446725405752659, + 0.026661880314350128, + 0.0028277751989662647, + -0.1024421751499176, + 0.03433474525809288, + 0.06821366399526596, + -0.03769815340638161, + -0.14678239822387695, + 0.10894422978162766, + 0.0544709712266922, + -0.11123201996088028, + -0.04357529431581497, + 0.121218740940094, + -0.07631867378950119, + -0.08009694516658783, + -0.06614244729280472, + -0.018334906548261642, + -0.07301666587591171, + 0.10860162228345871, + -0.006058536469936371, + -0.001476215198636055, + -0.07411688566207886, + 0.06428658962249756, + -0.030677536502480507, + -0.05120924487709999, + 0.07810869812965393, + 0.02835008129477501, + 0.013931826688349247, + -0.009621619246900082, + 0.005099331960082054, + -0.07808707654476166, + 0.03489423543214798, + 0.024777963757514954, + 0.07224191725254059, + 0.027672607451677322, + 0.07113637030124664, + -0.018018711358308792, + -0.021967843174934387, + 0.03985678404569626, + 0.06702764332294464, + -0.03234338015317917, + -0.04312397167086601, + -0.02538157068192959, + 0.027442919090390205, + -0.04418767988681793, + -0.08969263732433319, + -0.02842225879430771, + 0.0287985447794199, + 0.024325387552380562, + 0.046238772571086884, + -0.028041088953614235, + -0.07028035819530487, + 0.0322117917239666, + 0.045037295669317245, + -0.05752402916550636, + 0.05243075639009476, + 0.017692264169454575, + -0.008006256073713303, + -0.05917656049132347, + -0.006063991226255894, + -0.04466037079691887, + 0.05335612967610359, + 0.11208434402942657, + -0.012169959023594856, + 0.01848725602030754, + -0.009686456061899662, + -0.027186693623661995, + 0.07739879935979843, + -0.008320373483002186, + -0.005106253083795309, + 0.006683749612420797, + -2.1624366297601227e-08, + 0.012219359166920185, + -0.04073338583111763, + -0.011668475344777107, + -0.03284384310245514, + 0.10913856327533722, + -0.021112043410539627, + -0.027303125709295273, + -0.06166398897767067, + -0.07449707388877869, + -0.02074032835662365, + 0.0496525913476944, + 0.05515294149518013, + -0.10640668123960495, + -0.03223857283592224, + -0.011296308599412441, + 0.01960776001214981, + 0.0699474886059761, + 0.008601007983088493, + 0.024284295737743378, + -0.020459549501538277, + 0.0016992768505588174, + -0.020075639709830284, + 0.08637083321809769, + -0.0360371395945549, + 0.013146955519914627, + 0.004804554861038923, + -0.05634866654872894, + 0.09053404629230499, + -0.009875839576125145, + -0.02790762297809124, + 0.04317980259656906, + 0.02294951118528843, + -0.004447564948350191, + -0.031342826783657074, + -0.07027027755975723, + -0.006549331359565258, + 0.0020732181146740913, + 0.022313164547085762, + 0.0468042716383934, + 0.03922193497419357, + -0.03264564648270607, + -0.0012778517557308078, + -0.04378509894013405, + -0.0008832663879729807, + 0.036746613681316376, + 0.009412717074155807, + 0.012399173341691494, + -0.04714849963784218, + -0.03534180298447609, + -0.08750272542238235, + -0.0474076047539711, + 0.0602303072810173, + 0.07745818048715591, + 0.02765759825706482, + 0.023587191477417946, + -0.07341448962688446, + 0.024958306923508644, + 0.060575682669878006, + -0.0326390415430069, + 0.09399000555276871, + 0.08774027973413467, + 0.010164601728320122, + 0.03583574667572975, + -0.003852544818073511 + ], + "number-circle-six-bold||6,round,numbers,numerals,digits,mathematics,arithmetic,calculator": [ + 0.003227737732231617, + 0.008233694359660149, + -0.10406085103750229, + 0.015311267226934433, + -0.04975099861621857, + -0.013707186095416546, + 0.037777774035930634, + 0.028875360265374184, + 0.023910310119390488, + -0.05912268906831741, + -0.020330097526311874, + 0.023320704698562622, + 0.042672257870435715, + -0.0909525603055954, + 0.02908814698457718, + -0.034350086003541946, + -0.1215667650103569, + 0.011176939122378826, + -0.011033043265342712, + 0.005318739451467991, + -0.005250209476798773, + 0.03522723913192749, + 0.040262311697006226, + 0.10136681795120239, + 0.08345168083906174, + -0.024018770083785057, + 0.020116236060857773, + -0.016294121742248535, + 0.057865627110004425, + -0.04228392243385315, + -0.08057429641485214, + 0.10436677187681198, + 0.09926504641771317, + 0.016691330820322037, + 0.008876139298081398, + 0.010237248614430428, + -0.02316228859126568, + 0.06779448688030243, + -0.02635474130511284, + 0.053787700831890106, + -0.017663052305579185, + -0.10586811602115631, + 0.09725823253393173, + -0.01606379635632038, + -0.05232483521103859, + -0.004874781705439091, + -0.1435610055923462, + 0.05778669938445091, + 0.017433732748031616, + 0.006568320095539093, + -0.028209809213876724, + -0.06101170927286148, + -0.18594461679458618, + -0.010082107037305832, + 0.05180763453245163, + -0.03186711296439171, + -0.05008673295378685, + -0.06775904446840286, + 0.04571389779448509, + 0.00011922971316380426, + -0.023188134655356407, + 0.005433212034404278, + 0.06124374270439148, + 0.021860919892787933, + -0.00738110626116395, + 0.019659439101815224, + -0.0021935978438705206, + -0.07151558250188828, + 0.012816737405955791, + -0.023739518597722054, + -0.012096287682652473, + 0.04802389815449715, + -0.006226532161235809, + -0.03162887319922447, + -0.04912722483277321, + 0.02949978969991207, + -0.0643719732761383, + -0.006094400305300951, + -0.04281814768910408, + -0.07798750698566437, + -0.057714786380529404, + -0.04938896372914314, + -0.009260432794690132, + 0.06587661802768707, + 0.0070229689590632915, + 0.026658834889531136, + 0.038164976984262466, + -0.021195003762841225, + -0.02554583176970482, + -0.05987963080406189, + -0.03598060458898544, + 0.013621732592582703, + -0.025815771892666817, + -0.0064035565592348576, + -0.14229965209960938, + 0.055895593017339706, + 0.04489099979400635, + 0.01451820693910122, + -0.03895360976457596, + 0.09518292546272278, + 0.039607297629117966, + 0.021063346415758133, + 0.0037433477118611336, + -0.003979113884270191, + 0.0035396835301071405, + -0.005835324991494417, + 0.046037666499614716, + -0.009688785299658775, + 0.021414168179035187, + 0.010805662721395493, + -0.01500074565410614, + -0.08977554738521576, + -0.0004984974511899054, + -0.036745835095644, + 0.013840756379067898, + -0.027347709983587265, + -0.031860414892435074, + -0.005126741249114275, + 0.09239158779382706, + 0.0669679343700409, + 0.02353925071656704, + 0.04718952998518944, + 0.012634489685297012, + -0.003421060973778367, + -0.0710635855793953, + 0.048054926097393036, + 0.014419077895581722, + -2.4029282868776424e-33, + -0.03309640660881996, + 0.04288458824157715, + 0.017166705802083015, + 0.06752385944128036, + -0.03190847486257553, + -0.08508855849504471, + -0.00145819247700274, + -0.05959554761648178, + -0.011120553128421307, + 0.0634492039680481, + 0.020176973193883896, + 0.10746320337057114, + 0.04332106187939644, + 0.033143721520900726, + 0.1893015205860138, + -0.025213709101080894, + 0.10973965376615524, + -0.035137373954057693, + -0.04743990674614906, + -0.040640123188495636, + 0.009824013337492943, + 0.02892908826470375, + -0.06008687615394592, + -0.02958555892109871, + 0.023693230003118515, + 0.06869719922542572, + 0.04332631081342697, + 0.02947813645005226, + -0.0207500122487545, + 0.029111193493008614, + 0.05305354297161102, + 0.02776273712515831, + 0.05903521180152893, + 0.021251412108540535, + 0.04901556298136711, + -0.00885934941470623, + -0.046378012746572495, + 0.02067725546658039, + 0.07552588731050491, + -0.02652960829436779, + -0.0459006130695343, + -0.04582243412733078, + -0.07043689489364624, + 0.0479317344725132, + 0.04075793921947479, + 0.09450233727693558, + 0.012811529450118542, + 0.010266019031405449, + 0.07888462394475937, + -0.019846364855766296, + -0.0920679122209549, + -0.013042112812399864, + 0.016866417601704597, + -0.031855203211307526, + 0.04534488916397095, + -0.0739714652299881, + 0.01033223420381546, + 0.06411124020814896, + -0.046054236590862274, + 0.03055877424776554, + 0.015694929286837578, + 0.04394848272204399, + 0.013561069034039974, + -0.051680032163858414, + -0.12317004799842834, + 0.03956477716565132, + -0.09288342297077179, + -0.03769339621067047, + 0.03459805250167847, + 0.014080843888223171, + -0.06750571727752686, + 0.07458234578371048, + 0.02798468805849552, + 0.0685071349143982, + 0.016610532999038696, + -0.004242203198373318, + 0.04318789020180702, + -0.04587089270353317, + -0.06308750808238983, + -0.006917957682162523, + 0.030315708369016647, + 0.018268747255206108, + -0.024521777406334877, + 0.04356427118182182, + 0.04333760589361191, + -0.011103947646915913, + -0.0015161539195105433, + -0.047192711383104324, + 0.001941878697834909, + 0.0029558935202658176, + -0.016545647755265236, + -0.03034968674182892, + 0.023182475939393044, + -0.00784468837082386, + -0.10651909559965134, + -1.1029268601132044e-33, + -0.04938500374555588, + 0.04693250358104706, + -0.04786663129925728, + 0.01716170832514763, + -0.029764501377940178, + 0.03940975293517113, + 0.046073734760284424, + -0.03683643043041229, + -0.0076679023914039135, + -0.054688744246959686, + -0.024311071261763573, + 0.020817682147026062, + -0.023884713649749756, + -0.046169254928827286, + -0.025944281369447708, + -0.010649685747921467, + -0.011397295631468296, + 0.018391795456409454, + 0.007754262071102858, + 0.005529140587896109, + -0.07631348818540573, + 0.002046264009550214, + -0.10274673253297806, + -0.004773696884512901, + 0.00432812562212348, + 0.05587800219655037, + 0.01825770176947117, + -0.11943293362855911, + -0.002073845360428095, + 0.014636209234595299, + -0.0347740538418293, + -0.11509392410516739, + 0.13264122605323792, + 0.036658547818660736, + -0.08046139776706696, + -0.04335509613156319, + 0.13439489901065826, + -0.07005950063467026, + -0.0671888142824173, + -0.037144094705581665, + -0.0004347572394181043, + -0.05384618788957596, + 0.09562820941209793, + 0.03023662231862545, + 0.0017438324866816401, + -0.09188264608383179, + 0.059681471437215805, + -0.007039633579552174, + -0.0845826119184494, + 0.08111386746168137, + 0.05068090930581093, + -0.03196943551301956, + -0.00750392721965909, + 0.04807928577065468, + -0.044835954904556274, + -0.010602549649775028, + 0.0389467217028141, + 0.027044514194130898, + -0.02281978912651539, + 0.08999956399202347, + -0.04195060580968857, + 0.0035034494940191507, + 0.013270814903080463, + 0.04675694555044174, + -0.0363391749560833, + -0.029994778335094452, + 0.02580520510673523, + 0.019328897818922997, + -0.06480837613344193, + -0.046381834894418716, + -0.01904771476984024, + 0.05618712306022644, + -0.0036965368781238794, + -0.005210787057876587, + -0.03417709097266197, + -0.02935969829559326, + 0.031061211600899696, + 0.07136673480272293, + -0.012227488681674004, + 0.051154445856809616, + 0.0009207623079419136, + 0.028008557856082916, + -0.06688781827688217, + 0.038268592208623886, + -0.06150637939572334, + 0.021035030484199524, + 0.11082811653614044, + -0.00478054815903306, + -0.03284367546439171, + 0.0011171411024406552, + -0.031008942052721977, + 0.05062677711248398, + -0.015115153975784779, + -0.02905871905386448, + 0.01957862637937069, + -2.2702961288700862e-08, + 0.040126100182533264, + -0.0450122132897377, + -0.025933658704161644, + -0.041065774857997894, + 0.1191982552409172, + -0.02358567900955677, + -0.018309321254491806, + -0.05049953982234001, + -0.11645229160785675, + -0.016701770946383476, + 0.039498183876276016, + 0.05866478756070137, + -0.09147252142429352, + -0.09423821419477463, + -0.003923643846064806, + -0.024215534329414368, + 0.04247843101620674, + 0.033666711300611496, + -0.011354507878422737, + -0.021244511008262634, + -0.004151004366576672, + 0.00812042597681284, + 0.07135999947786331, + -0.03272637724876404, + 0.021667417138814926, + 0.0144737483933568, + -0.04546811059117317, + 0.06440530717372894, + 0.0006246917764656246, + 0.004180414602160454, + 0.04543048515915871, + 0.015185033902525902, + -0.05683543533086777, + -0.016699068248271942, + -0.05796550586819649, + -0.017796548083424568, + 0.002665842417627573, + -0.00543387234210968, + 0.006429300177842379, + 0.04000559076666832, + -0.009869223460555077, + -0.042026713490486145, + -0.04789420962333679, + -0.01947038434445858, + 0.03656509518623352, + 0.03595839813351631, + -0.0025351482909172773, + -0.08756761997938156, + -0.07524300366640091, + -0.06526743620634079, + -0.0955311581492424, + 0.039784450083971024, + 0.060520682483911514, + 0.03996870294213295, + 0.0035696106497198343, + -0.06416340917348862, + 0.025176163762807846, + 0.014819776639342308, + -0.06591364741325378, + 0.10131867229938507, + 0.09696105122566223, + 0.022568007931113243, + 0.0689200833439827, + -0.02061964012682438 + ], + "number-circle-three-bold||3,round,numbers,numerals,digits,mathematics,arithmetic,calculator": [ + -0.01928190514445305, + -0.007055836264044046, + -0.12098989635705948, + -0.014065926894545555, + -0.03832026198506355, + -0.03036613203585148, + 0.06517252326011658, + 0.01452686544507742, + 0.03541789948940277, + -0.072075255215168, + -0.010458025150001049, + -0.01629745401442051, + 0.06011131778359413, + -0.036656152456998825, + 0.05666124075651169, + -0.0557219497859478, + -0.08943726122379303, + 0.01654168963432312, + 0.03753744065761566, + -0.03439760208129883, + 0.013370665721595287, + 0.03369821235537529, + 0.05778254568576813, + 0.12629979848861694, + 0.052508991211652756, + 0.014520702883601189, + 0.019914742559194565, + -0.036525171250104904, + 0.03397595137357712, + -0.06055633723735809, + -0.08306653052568436, + 0.05003638193011284, + 0.12040529400110245, + -0.010790186002850533, + 0.016282016411423683, + -0.021405089646577835, + -0.05644499137997627, + 0.05966019630432129, + -0.06576594710350037, + 0.0951007679104805, + -0.018767770379781723, + -0.0865626335144043, + 0.09055010229349136, + 0.00594194233417511, + -0.05771058052778244, + 0.005004384554922581, + -0.1463632434606552, + 0.01495752390474081, + -0.0030519086867570877, + 0.00595689145848155, + -0.04677489399909973, + -0.04542216286063194, + -0.16456902027130127, + -0.005113864317536354, + 0.025842376053333282, + -0.04137427359819412, + -0.008825312368571758, + -0.019553881138563156, + 0.022888263687491417, + 0.00532019417732954, + 0.008019654080271721, + 0.029563212767243385, + 0.05140361934900284, + -0.016357924789190292, + 0.011998922564089298, + 0.041993215680122375, + -0.01952984370291233, + -0.09394857287406921, + 0.0002820683876052499, + 0.0035902971867471933, + 0.025064557790756226, + 0.02893480472266674, + -0.041746146976947784, + -0.03410845994949341, + -0.024765918031334877, + 0.031154507771134377, + -0.018350258469581604, + 0.03100261092185974, + -0.08112110197544098, + -0.06128210201859474, + -0.036837782710790634, + -0.041909534484148026, + 0.00916973501443863, + 0.062262795865535736, + -0.006463140249252319, + 0.036307599395513535, + -0.00717117078602314, + -0.03674291446805, + -0.024778112769126892, + -0.05874837562441826, + -0.08708686381578445, + 0.008411523886024952, + -0.03284038230776787, + 0.06335801631212234, + -0.10697978734970093, + 0.06864545494318008, + 0.04560182988643646, + -0.003240972524508834, + -0.05222542583942413, + 0.09671677649021149, + 0.04559337720274925, + 0.03802187740802765, + 0.024761579930782318, + 0.0046408590860664845, + -0.01621447689831257, + 0.011454559862613678, + 0.05135951191186905, + -0.050223544239997864, + 0.014035907573997974, + 0.03265943378210068, + 0.004100340884178877, + -0.11177114397287369, + -0.019070712849497795, + -0.05609668418765068, + -0.026933111250400543, + -0.019149333238601685, + -0.012068263255059719, + -0.02579508163034916, + 0.12714846432209015, + 0.0657370463013649, + 0.03227926790714264, + 0.018769873306155205, + 0.007974411360919476, + -0.042180970311164856, + -0.06046688184142113, + 0.05574644356966019, + -0.010013316757977009, + -2.1589068635774668e-33, + -0.038621168583631516, + 0.029343221336603165, + -0.03643741086125374, + 0.09065136313438416, + -0.025455379858613014, + -0.0714666023850441, + -0.016092998906970024, + -0.058432966470718384, + 0.016967905685305595, + 0.04410596191883087, + 0.022212844341993332, + 0.10690148174762726, + 0.05649546906352043, + 0.04856770485639572, + 0.13651733100414276, + -0.03985532373189926, + 0.08201637119054794, + -0.04222326725721359, + -0.056687988340854645, + -0.043215204030275345, + 0.020220300182700157, + 0.01550228800624609, + -0.07489407807588577, + -0.014365059323608875, + 0.04387674108147621, + 0.05183444917201996, + 0.02361186407506466, + 0.012481680139899254, + 0.00900234468281269, + 0.02633143775165081, + 0.09428565204143524, + 0.014213231392204762, + 0.028654325753450394, + -0.004847492557018995, + 0.044704556465148926, + -0.011534014716744423, + -0.03150704503059387, + -0.00533644761890173, + 0.07056265324354172, + -0.0018886023899540305, + -0.08054807037115097, + -0.043543294072151184, + 0.0052625564858317375, + 0.022595131769776344, + 0.03605031967163086, + 0.11323296278715134, + 0.011965448968112469, + 0.042875438928604126, + 0.06739801913499832, + -0.03984791040420532, + -0.05757468193769455, + 0.00650068698450923, + 0.004821749869734049, + -0.029856756329536438, + 0.016349395737051964, + -0.07970722019672394, + 0.01470999512821436, + 0.05700143054127693, + -0.04253985360264778, + -0.009423838928341866, + 0.012445315718650818, + 0.049724847078323364, + 0.026903517544269562, + -0.08057932555675507, + -0.11364732682704926, + 0.07195808738470078, + -0.10061406344175339, + -0.03629666566848755, + 0.08801331371068954, + 0.012590226717293262, + -0.06068136915564537, + 0.056381840258836746, + 0.02618345431983471, + 0.05194840952754021, + 0.024169189855456352, + 0.005687315948307514, + 0.01806618645787239, + -0.041144341230392456, + -0.029435887932777405, + -0.004574539605528116, + 0.007581143174320459, + 0.006815622095018625, + -0.009275401011109352, + 0.07567238807678223, + 0.04430527612566948, + -0.04374926537275314, + 0.020213862881064415, + -0.05971624329686165, + 0.025490719825029373, + -0.016451850533485413, + -0.03992849588394165, + 0.03115670010447502, + 0.058336593210697174, + -0.0007054606103338301, + -0.1323620229959488, + -6.2177713993672395e-34, + -0.049914758652448654, + 0.033159539103507996, + -0.059759471565485, + 0.015760965645313263, + -0.04725763201713562, + 0.03819218650460243, + -0.0015002981526777148, + -0.022440092638134956, + 0.00935218296945095, + -0.02110416628420353, + 0.0057772803120315075, + -0.00045006145955994725, + -0.02162817493081093, + -0.06122955307364464, + -0.011437191627919674, + -0.017202069982886314, + -0.01547364704310894, + -0.011841148138046265, + -0.04400753229856491, + 0.013827009126543999, + -0.024049576371908188, + 0.03549032285809517, + -0.08555328845977783, + 0.012475314550101757, + -0.03443807736039162, + 0.048696521669626236, + -0.0004215875524096191, + -0.11303100734949112, + -0.003038083901628852, + 0.05968324840068817, + -0.04715521261096001, + -0.13558347523212433, + 0.12256676703691483, + 0.04303371533751488, + -0.08621406555175781, + -0.051473792642354965, + 0.159015953540802, + -0.05220504105091095, + -0.07272671908140182, + -0.055011700838804245, + -0.01059049740433693, + -0.0431353785097599, + 0.0951886773109436, + 0.037826623767614365, + -0.011123014613986015, + -0.039431869983673096, + 0.057189613580703735, + -0.007325048092752695, + -0.07490930706262589, + 0.08225899189710617, + 0.03072054497897625, + -0.02175680734217167, + 0.008230873383581638, + 0.03473459556698799, + -0.03546249121427536, + 0.020877087488770485, + 0.019532116129994392, + 0.044918883591890335, + -0.004540907684713602, + 0.08188207447528839, + -0.054832059890031815, + 0.024120958521962166, + 0.04802507907152176, + 0.06874910742044449, + -0.021513648331165314, + -0.03313335031270981, + -0.024446090683341026, + -0.009465488605201244, + -0.031820155680179596, + -0.03993271663784981, + -0.04294005036354065, + 0.06519579142332077, + 0.008741958066821098, + 0.033018145710229874, + -0.03973953425884247, + -0.04099670797586441, + 0.012766191735863686, + 0.0723939836025238, + -0.03186263516545296, + 0.035305507481098175, + 0.05243351310491562, + 0.003980865236371756, + -0.03131400793790817, + 0.02198013663291931, + -0.05907044932246208, + 0.004578553605824709, + 0.07451926916837692, + 0.0015362473204731941, + -0.008755301125347614, + -0.04507211968302727, + -0.03401048108935356, + 0.08327704668045044, + -0.02214069664478302, + 0.007732564117759466, + 0.02905966527760029, + -2.247760555462719e-08, + 0.03024419955909252, + 0.021297916769981384, + -0.03155898302793503, + -0.012924393638968468, + 0.05986901745200157, + -0.02137027122080326, + -0.01304565742611885, + -0.04194246232509613, + -0.07861924171447754, + -0.0008906380389817059, + 0.03232421353459358, + 0.051483992487192154, + -0.10375295579433441, + -0.06953046470880508, + 0.029430212453007698, + -0.011464539915323257, + 0.08189718425273895, + 0.017527630552649498, + 0.006257564295083284, + -0.04001786187291145, + -0.019613303244113922, + 0.03234526142477989, + 0.09210970252752304, + -0.05128605291247368, + 0.01961318403482437, + 0.041194938123226166, + -0.04147123545408249, + 0.04753628000617027, + -0.006821745075285435, + 0.01366750430315733, + 0.03969832509756088, + 0.03512885794043541, + -0.03182019293308258, + -0.011704709380865097, + -0.09084302932024002, + -0.048449013382196426, + -0.03516338765621185, + 0.01875222660601139, + 0.02612907811999321, + 0.030417531728744507, + -0.010671189054846764, + 0.007613309659063816, + -0.06413260847330093, + -0.002421397715806961, + 0.042783915996551514, + -0.00397512037307024, + -0.01593821495771408, + -0.07330746948719025, + -0.07317664474248886, + -0.10570292919874191, + -0.08798256516456604, + 0.04357758164405823, + 0.06806039810180664, + 0.07734917849302292, + 0.012454431504011154, + -0.09400492906570435, + -0.007947531528770924, + 0.04238978773355484, + -0.07293356955051422, + 0.09487500786781311, + 0.08432196825742722, + 0.0015897820703685284, + 0.038874704390764236, + -0.002124220598489046 + ], + "number-circle-two-bold||2,round,numbers,numerals,digits,mathematics,arithmetic,calculator": [ + -0.008536857552826405, + 0.00890206079930067, + -0.08608374744653702, + 0.004380485508590937, + -0.02687443420290947, + -0.044468093663454056, + 0.04796404018998146, + 0.04444719851016998, + 0.025194881483912468, + -0.07687661051750183, + 0.00023695059644524008, + -0.0042143939062952995, + 0.0714978277683258, + -0.04510018974542618, + 0.038347791880369186, + -0.03770142048597336, + -0.07972867041826248, + -0.012347855605185032, + 0.053037431091070175, + -0.027023622766137123, + 0.024879224598407745, + 0.03319615125656128, + 0.03893592953681946, + 0.10705509781837463, + 0.043618638068437576, + 0.023259220644831657, + 0.0024492451921105385, + -0.016194641590118408, + 0.048235341906547546, + -0.06840530782938004, + -0.06589023768901825, + 0.05328987166285515, + 0.09071622788906097, + 9.875182149698958e-05, + -0.008289464749395847, + -0.044700272381305695, + 0.00040714998613111675, + 0.08125636726617813, + -0.05118906497955322, + 0.04905152693390846, + -0.0111349206417799, + -0.09794759005308151, + 0.09023090451955795, + 0.005482482723891735, + -0.0514802448451519, + -0.0016904505901038647, + -0.11474394053220749, + 0.03182338923215866, + -0.027063658460974693, + 0.01726657710969448, + -0.050506241619586945, + -0.022208446636795998, + -0.16471397876739502, + -0.02248445898294449, + 0.0540044829249382, + -0.005883957725018263, + -0.01944487728178501, + -0.02239573374390602, + 0.025596819818019867, + 0.0022974328603595495, + 0.031098410487174988, + 0.012428036890923977, + 0.041572455316782, + -0.012601379305124283, + -0.02133135497570038, + 0.031176721677184105, + -0.01200762577354908, + -0.0946427658200264, + 0.0037401181180030107, + -0.010701785795390606, + 0.030768806114792824, + 0.04753835126757622, + -0.028281765058636665, + -0.03174630180001259, + -0.016322800889611244, + 0.0025367424823343754, + -0.05924571678042412, + 0.03126012906432152, + -0.057510215789079666, + -0.07216189056634903, + -0.038231294602155685, + -0.07504935562610626, + 0.02443518303334713, + 0.03381337970495224, + -0.001068617682904005, + 0.04809996113181114, + 0.02702726610004902, + -0.042680688202381134, + -0.005478874780237675, + -0.06931698322296143, + -0.057236019521951675, + 0.011766704730689526, + 0.008585754781961441, + 0.057535745203495026, + -0.10661399364471436, + 0.048478808254003525, + 0.04953900724649429, + 0.03453507274389267, + -0.059701722115278244, + 0.09498490393161774, + 0.006774296518415213, + 0.010740874335169792, + 0.015193180181086063, + -0.01846776157617569, + -0.010983285494148731, + -0.02786571905016899, + 0.06042519584298134, + -0.07218065857887268, + 0.06208759918808937, + -0.006227840669453144, + 0.044222958385944366, + -0.08942239731550217, + -0.018453529104590416, + -0.04880926012992859, + 0.005498343612998724, + -0.013051990419626236, + -0.005662304814904928, + 0.01463703066110611, + 0.11256212741136551, + 0.05014616250991821, + 0.01622406207025051, + 0.01544325239956379, + -0.01074046641588211, + -0.03129400312900543, + -0.0644976869225502, + 0.03548151254653931, + -0.0325639434158802, + -2.6259522586652626e-33, + -0.032739151269197464, + 0.03249917924404144, + -0.023668533191084862, + 0.09671029448509216, + -0.03231406956911087, + -0.07478784024715424, + -0.028777066618204117, + -0.0606050044298172, + 0.03818316385149956, + 0.044661954045295715, + 0.03118002600967884, + 0.08278597891330719, + 0.051541976630687714, + 0.061051975935697556, + 0.1679590791463852, + -0.06553547084331512, + 0.12237727642059326, + -0.0452248640358448, + -0.023771343752741814, + -0.05487343668937683, + -0.003289726097136736, + 0.043488793075084686, + -0.06573481112718582, + -0.0021254406310617924, + 0.06235574558377266, + 0.06201966106891632, + 0.05355193093419075, + 0.0019162705866619945, + 0.00897235982120037, + 0.04083790257573128, + 0.07011549174785614, + -0.001257030526176095, + 0.025885330513119698, + 0.029247868806123734, + 0.05584905669093132, + -0.03447314351797104, + -0.031630247831344604, + 0.02660105936229229, + 0.0846167504787445, + -0.04659828916192055, + -0.07862260937690735, + -0.03602185845375061, + -0.010180167853832245, + 0.029438631609082222, + 0.04132545739412308, + 0.06393865495920181, + 0.011497785337269306, + 0.04776559770107269, + 0.07760898023843765, + -0.0500296950340271, + -0.1059877946972847, + 0.021975355222821236, + -0.01187867484986782, + -0.013541110791265965, + 0.021666394546628, + -0.07518301159143448, + 0.032130345702171326, + 0.049676842987537384, + -0.05142012611031532, + 0.0078510707244277, + 0.018837952986359596, + 0.06965938955545425, + 0.01914607174694538, + -0.09883542358875275, + -0.1268172562122345, + 0.05632767081260681, + -0.09094465523958206, + -0.05828153342008591, + 0.06784320622682571, + 0.009683405980467796, + -0.043599311262369156, + 0.06209415942430496, + 0.05608405917882919, + 0.04505866393446922, + 0.02644633688032627, + -0.0008015473722480237, + 0.054946351796388626, + -0.05583775043487549, + -0.010775860399007797, + 0.02220250852406025, + -0.002418744610622525, + 0.007074418477714062, + -0.024069957435131073, + 0.06737855821847916, + 0.056241702288389206, + -0.04352688416838646, + 0.007379245478659868, + -0.044551875442266464, + 0.007818134501576424, + 0.008352222852408886, + -0.06186949834227562, + 0.026912733912467957, + 0.02413654699921608, + -0.018725374713540077, + -0.0993780568242073, + -5.8842597748099555e-34, + -0.07502391934394836, + 0.044038571417331696, + -0.06401919573545456, + 0.0296156108379364, + -0.05706784501671791, + 0.030143868178129196, + 0.010975769720971584, + -0.0444415882229805, + 0.02345874533057213, + -0.020465845242142677, + 0.02624991163611412, + 0.007889342494308949, + -0.016966817900538445, + -0.03921029716730118, + -0.015806004405021667, + -0.03638305887579918, + -0.023785781115293503, + 0.015494907274842262, + -0.035087741911411285, + -0.005857097916305065, + -0.032252971082925797, + 0.04955406114459038, + -0.062053974717855453, + 0.0038448956329375505, + -0.010846724733710289, + 0.046731479465961456, + 0.01480065006762743, + -0.10012366622686386, + -0.006155363284051418, + 0.06566333770751953, + -0.04892079904675484, + -0.12243495136499405, + 0.11849415302276611, + 0.03958321735262871, + -0.08888674527406693, + -0.07375414669513702, + 0.14925581216812134, + -0.07560760527849197, + -0.0947321429848671, + -0.05332024395465851, + -0.025598807260394096, + -0.0637289360165596, + 0.08863420784473419, + 0.04145811125636101, + -0.0008096350356936455, + -0.0878874734044075, + 0.073811836540699, + -0.012633481994271278, + -0.10304202884435654, + 0.01734028570353985, + 0.031082460656762123, + 0.011530941352248192, + -0.019187938421964645, + 0.03218919411301613, + -0.05132812261581421, + 0.003175199031829834, + -0.004806290380656719, + 0.0804416835308075, + -0.004643209278583527, + 0.08099526911973953, + -0.03742866590619087, + 0.01875016838312149, + 0.017865316942334175, + 0.07551898807287216, + -0.019732944667339325, + -0.05281081423163414, + -0.018082594498991966, + -0.004106432199478149, + -0.06733078509569168, + -0.03606763854622841, + -0.03134138137102127, + 0.04633689299225807, + 0.012403693981468678, + 0.03830583021044731, + -0.07245628535747528, + -0.036311075091362, + 0.01616145670413971, + 0.037660807371139526, + -0.023531457409262657, + 0.03644046187400818, + 0.03982125595211983, + 0.012074691243469715, + -0.025043103843927383, + 0.005827974993735552, + -0.05684208869934082, + 0.002346718916669488, + 0.07795043289661407, + 0.003028614679351449, + -0.014143969863653183, + -0.04244532808661461, + -0.03016326017677784, + 0.07751155644655228, + -0.03265668824315071, + 0.002411108696833253, + 0.008001402020454407, + -2.353480255123941e-08, + 0.002882380271330476, + 0.0024191606789827347, + -0.009170579724013805, + -0.02375727705657482, + 0.07154557853937149, + -0.025903046131134033, + -0.033654648810625076, + -0.03500056639313698, + -0.05974490940570831, + -0.01711256057024002, + 0.0010555899934843183, + 0.08822903037071228, + -0.1045728325843811, + -0.06078117713332176, + 0.017860334366559982, + 0.008055306039750576, + 0.09256435930728912, + 0.021588897332549095, + -0.002451776759698987, + -0.03609299659729004, + 0.00865679420530796, + 0.004231726750731468, + 0.0744340643286705, + -0.05734221637248993, + -0.015365970320999622, + 0.0056748343631625175, + -0.032125357538461685, + 0.04301441088318825, + 0.009405165910720825, + -0.00952127855271101, + 0.04491181671619415, + 0.02000763826072216, + -0.0373908095061779, + -0.03430475294589996, + -0.0721021443605423, + -0.06160532683134079, + -0.03340991586446762, + 0.02960892580449581, + 0.02926960028707981, + 0.026924360543489456, + -0.00986484345048666, + -0.003212523180991411, + -0.043789900839328766, + 0.02639494650065899, + 0.07051282376050949, + 0.013852006755769253, + 0.013679297640919685, + -0.08583451807498932, + -0.08016379177570343, + -0.11221703886985779, + -0.0807332992553711, + 0.05681850016117096, + 0.07841328531503677, + 0.06721481680870056, + -0.0076288185082376, + -0.07831057161092758, + -0.009667434729635715, + 0.06405939906835556, + -0.07176921516656876, + 0.10125383734703064, + 0.09425929933786392, + 0.03932846710085869, + 0.03494725003838539, + -0.02183815836906433 + ], + "number-circle-zero-bold||0,round,numbers,numerals,digits,mathematics,arithmetic,calculator": [ + -0.015010890550911427, + 0.033368438482284546, + -0.10779039561748505, + 0.013276946730911732, + -0.049569178372621536, + -0.03810960426926613, + 0.055133745074272156, + 0.03216812014579773, + 0.048271212726831436, + -0.08160107582807541, + 0.039557263255119324, + -0.011918638832867146, + 0.0839807540178299, + -0.019580524414777756, + 0.005378026980906725, + -0.04385315254330635, + -0.07717697322368622, + -0.025589192286133766, + 0.04800589755177498, + -0.014873211272060871, + 0.013332974165678024, + 0.036018747836351395, + 0.023712892085313797, + 0.09004849195480347, + 0.0507088378071785, + 0.003386954078450799, + 0.019257888197898865, + -0.03860903158783913, + 0.05702599138021469, + -0.046057116240262985, + -0.0818299725651741, + 0.06401582807302475, + 0.10958956927061081, + -0.004916777368634939, + 0.015510611236095428, + -0.0077677215449512005, + 0.03510858491063118, + 0.07510311901569366, + -0.06525526940822601, + 0.08258971571922302, + -0.0027706213295459747, + -0.09043233841657639, + 0.08706521987915039, + 0.008617579936981201, + -0.03625604137778282, + 0.016269652172923088, + -0.12416735291481018, + 0.023763999342918396, + -0.024877753108739853, + -0.002257090061903, + -0.018273422494530678, + -0.029060300439596176, + -0.17666858434677124, + -0.007553738541901112, + 0.04161344841122627, + -0.023283500224351883, + -0.04474714770913124, + -0.023651309311389923, + 0.03369208052754402, + -4.5660075556952506e-05, + 0.014383712783455849, + 0.001295971218496561, + 0.0429399311542511, + -0.0028430481906980276, + -0.00048380030784755945, + 0.049643248319625854, + -0.01854531094431877, + -0.10535290837287903, + 0.007357838563621044, + 0.00871347263455391, + 0.027639256790280342, + 0.019486114382743835, + -0.03290697932243347, + -0.005220320075750351, + -0.05106813833117485, + 0.027659539133310318, + -0.04915808141231537, + 0.03889027610421181, + -0.05326031520962715, + -0.03763590753078461, + -0.04666021838784218, + -0.06877189874649048, + -0.010698876343667507, + 0.013310804963111877, + -0.0032783944625407457, + 0.06315790861845016, + 0.02169870398938656, + -0.019402965903282166, + 0.00920215155929327, + -0.051427584141492844, + -0.09508319199085236, + 0.022441450506448746, + -0.047363460063934326, + 0.03627448156476021, + -0.1105966791510582, + 0.05330244451761246, + 0.03423142433166504, + 0.030901439487934113, + -0.0749092847108841, + 0.09101603925228119, + 0.03107111155986786, + -0.004762162920087576, + 0.022983232513070107, + 0.018898826092481613, + -0.01673009619116783, + -0.010490591637790203, + 0.06278738379478455, + -0.038613636046648026, + 0.022744836285710335, + 0.009209053590893745, + 0.031156370416283607, + -0.106245256960392, + -0.016399551182985306, + -0.07680976390838623, + -0.015260853804647923, + -0.05121583864092827, + -0.031071839854121208, + 0.020541425794363022, + 0.08223842829465866, + 0.06529845297336578, + 0.029394257813692093, + 0.016381576657295227, + -0.013347264379262924, + -0.00583191541954875, + -0.06610957533121109, + 0.05284027010202408, + -0.03667181730270386, + -2.153136655682868e-33, + -0.003367325058206916, + 0.04798655956983566, + -0.003992330748587847, + 0.07009130716323853, + -0.032094426453113556, + -0.07306742668151855, + -0.014232798479497433, + -0.019084898754954338, + 0.045519135892391205, + 0.04326315224170685, + 0.04749741032719612, + 0.11779570579528809, + 0.03079952858388424, + 0.038036901503801346, + 0.1562778800725937, + -0.018139496445655823, + 0.12225384265184402, + -0.051236242055892944, + -0.03175624832510948, + -0.060175709426403046, + 0.01417621225118637, + 0.03260217607021332, + -0.06807827949523926, + -0.004270467907190323, + 0.06141072139143944, + 0.06976626813411713, + 0.026784120127558708, + -0.018203627318143845, + -0.027226896956562996, + 0.01773829013109207, + 0.057039692997932434, + 0.019182270392775536, + 0.03841366246342659, + -0.013791129924356937, + 0.06069202721118927, + -0.005648889113217592, + -0.02994692511856556, + 0.008791765198111534, + 0.07758200168609619, + -0.004278415814042091, + -0.1112385168671608, + -0.06055450811982155, + -0.016221845522522926, + 0.005881740245968103, + 0.048901431262493134, + 0.10613437741994858, + 0.01700282283127308, + 0.06516432762145996, + 0.06884708255529404, + -0.016523009166121483, + -0.0908999890089035, + 0.03021826781332493, + -0.037676360458135605, + -0.01052387710660696, + -0.011982463300228119, + -0.08149884641170502, + 0.001202402519993484, + 0.04723197966814041, + -0.07872478663921356, + 0.0018391860648989677, + 0.006762264296412468, + 0.059325091540813446, + 0.01113588735461235, + -0.10233860462903976, + -0.1214451864361763, + 0.05661040544509888, + -0.0904933363199234, + -0.05813278630375862, + 0.07755648344755173, + -0.020685328170657158, + -0.058204133063554764, + 0.07827644795179367, + 0.03685717657208443, + 0.05623491480946541, + 0.03038216009736061, + 0.011566081084311008, + 0.05275167152285576, + -0.0762980729341507, + -0.02744288183748722, + 0.027845824137330055, + 0.018540311604738235, + 0.015067582949995995, + -0.02274979092180729, + 0.035692669451236725, + 0.041344694793224335, + -0.027045177295804024, + 0.024561559781432152, + -0.0371759831905365, + 0.005887465551495552, + -0.04613028094172478, + -0.042838189750909805, + 0.006059006787836552, + 0.02675892971456051, + -0.009172981604933739, + -0.12856046855449677, + -9.982931692106356e-34, + -0.06839058548212051, + 0.02652009017765522, + -0.07758060842752457, + 0.03650735318660736, + -0.060608867555856705, + 0.06128370389342308, + 0.01745467260479927, + -0.03994127735495567, + 0.025690294802188873, + -0.01553021278232336, + 0.014678269624710083, + 0.019748525694012642, + -0.00659162038937211, + -0.034290771931409836, + -0.020311303436756134, + -0.020623648539185524, + -0.02858857810497284, + 0.02630113810300827, + -0.04736662283539772, + 0.03088528662919998, + -0.05506887659430504, + 0.07778283953666687, + -0.10225924849510193, + 0.010121899656951427, + -0.01013097446411848, + 0.05285033583641052, + 0.0011453351471573114, + -0.0775437280535698, + 0.02067684940993786, + 0.051318198442459106, + -0.00867296289652586, + -0.09680400043725967, + 0.12003885954618454, + 0.003746693953871727, + -0.0735798329114914, + -0.06172556057572365, + 0.15083570778369904, + -0.04794234409928322, + -0.03902862221002579, + -0.06988315284252167, + -0.008931403048336506, + -0.039446718990802765, + 0.07216635346412659, + 0.04155992716550827, + -0.010181810706853867, + -0.08182767778635025, + 0.05078041926026344, + -0.005266574211418629, + -0.06559857726097107, + 0.02838093228638172, + 0.021857956424355507, + 0.00732955988496542, + 0.002821226604282856, + 0.028295911848545074, + -0.048856887966394424, + 0.015502313151955605, + 0.0001654770312597975, + 0.07095076143741608, + 0.002743139863014221, + 0.06565039604902267, + -0.06110606715083122, + 0.015877434983849525, + 0.052826642990112305, + 0.05813213065266609, + -0.036451734602451324, + -0.030696967616677284, + -0.00082453089999035, + -0.002230944810435176, + -0.06150609999895096, + -0.06979436427354813, + -0.01674746721982956, + 0.04404348134994507, + 0.003566589206457138, + 0.016660762950778008, + -0.07651439309120178, + -0.031777478754520416, + 0.03553805127739906, + 0.03180346637964249, + -0.039147306233644485, + 0.05491325631737709, + 0.04234754666686058, + 0.032764311879873276, + -0.044499438256025314, + 0.015841137617826462, + -0.02580077014863491, + 0.028618261218070984, + 0.08266318589448929, + -0.009144408628344536, + 0.0051396931521594524, + -0.026844799518585205, + -0.023400792852044106, + 0.07995960116386414, + -0.03985019028186798, + 0.004920086357742548, + 0.009231136180460453, + -2.3410423821701443e-08, + 0.0031592731829732656, + 0.009368374943733215, + -0.02219381555914879, + -0.020408684387803078, + 0.07664727419614792, + -0.03171788901090622, + -0.008653780445456505, + -0.0844266265630722, + -0.0666608214378357, + -0.017726439982652664, + 0.03846863657236099, + 0.0663628801703453, + -0.14551320672035217, + -0.07260701805353165, + 0.0259079709649086, + 0.022701827809214592, + 0.05485933646559715, + 0.012781056575477123, + -0.005322549492120743, + -0.007767640985548496, + -0.022529587149620056, + 0.0015300442464649677, + 0.051063522696495056, + -0.07567156851291656, + 0.009668211452662945, + -0.02389269508421421, + -0.026361171156167984, + 0.06071009114384651, + 0.022837860509753227, + -0.0033306132536381483, + 0.017090143635869026, + 0.027596261352300644, + -0.018810585141181946, + -0.019836300984025, + -0.07311556488275528, + -0.03094598464667797, + 0.01929485984146595, + 0.08137630671262741, + 0.022349929437041283, + 0.029239045456051826, + -0.04368807002902031, + -0.035386502742767334, + -0.04132326692342758, + 0.0011674055131152272, + 0.04701697453856468, + -0.009014973416924477, + -0.0205702967941761, + -0.08803246915340424, + -0.06933218985795975, + -0.09892954677343369, + -0.07831967622041702, + 0.0872945711016655, + 0.028217138722538948, + 0.05795883387327194, + -0.021783728152513504, + -0.061037302017211914, + -0.022025292739272118, + 0.051052194088697433, + -0.07929335534572601, + 0.10384684801101685, + 0.07471724599599838, + 0.028967969119548798, + 0.030873017385601997, + -0.00702572800219059 + ], + "number-eight-bold||8,numbers,numerals,digits,mathematics,arithmetic,calculator": [ + -0.028120802715420723, + 0.028412768617272377, + -0.016462378203868866, + 0.007855650037527084, + -0.07668105512857437, + 0.02713104337453842, + 0.03194313496351242, + 0.07229477912187576, + -0.023791462182998657, + -0.054848916828632355, + 0.002744077006354928, + 0.014310448430478573, + 0.059059228748083115, + -0.041725605726242065, + -0.028704993426799774, + -0.013952947221696377, + -0.05652543157339096, + -0.01870420016348362, + -0.059362977743148804, + -0.0035686686169356108, + 0.06246654689311981, + 0.03262729570269585, + 0.017506415024399757, + 0.08059295266866684, + 0.06843895465135574, + -0.0007603521225973964, + 0.018633710220456123, + -0.04776269942522049, + 0.043305687606334686, + -0.04296226426959038, + -0.03880918771028519, + 0.020362408831715584, + 0.13965101540088654, + 0.014517378062009811, + 0.03911849111318588, + 0.002208398887887597, + 0.01152538601309061, + 0.03557189926505089, + -0.05311071500182152, + 0.12304099649190903, + -0.0419747419655323, + -0.13141968846321106, + 0.03949997201561928, + 0.025247473269701004, + -0.028529170900583267, + -0.02058209665119648, + -0.04956474527716637, + 0.027650993317365646, + 0.0378141924738884, + 0.010537706315517426, + -0.04516320303082466, + -0.03391934931278229, + -0.15242521464824677, + 0.019518768414855003, + 0.04031878709793091, + -0.036337755620479584, + -0.022132007405161858, + -0.05214143916964531, + 0.01964215748012066, + 0.010254180990159512, + -0.011073549278080463, + 0.04447115957736969, + 0.061373792588710785, + 0.01587025262415409, + 0.010705552995204926, + 0.009085412137210369, + 0.021898044273257256, + -0.046459708362817764, + -0.01071911957114935, + 0.06309250742197037, + 0.08081108331680298, + 0.029368527233600616, + -0.023746930062770844, + 0.03661715239286423, + -0.03083210065960884, + 0.021305641159415245, + -0.010374157689511776, + 0.01414553914219141, + -0.016408730298280716, + -0.07784008234739304, + -0.05563101917505264, + -0.0865168645977974, + -0.007292002439498901, + 0.025909973308444023, + 0.010251373052597046, + -0.0007081237272359431, + -0.054424941539764404, + 0.01101653091609478, + 0.0074663544073700905, + -0.05141480267047882, + -0.06659235805273056, + -0.002054826356470585, + 0.028502192348241806, + 0.03372910991311073, + -0.04860837012529373, + 0.03654623031616211, + 0.07255707681179047, + 0.010112316347658634, + -0.03821567818522453, + 0.07391424477100372, + 0.03048604726791382, + 0.02649504505097866, + -0.046507276594638824, + 0.05805389583110809, + -0.007878027856349945, + -0.02434658817946911, + 0.0651470497250557, + -0.029666418209671974, + -0.014384474605321884, + -0.03906770050525665, + 0.02585180476307869, + -0.08899275213479996, + -0.011801931075751781, + -0.057949092239141464, + 0.010213242843747139, + -0.0877331867814064, + -0.0025352502707391977, + 0.016069991514086723, + 0.10072885453701019, + 0.05439987778663635, + -0.01811346597969532, + 0.017871903255581856, + 0.02586202882230282, + -0.007033789996057749, + -0.03767881542444229, + 0.05752775818109512, + -0.03613037243485451, + -2.2429447914276753e-33, + 0.018166400492191315, + 0.010923953726887703, + -0.025180354714393616, + 0.10248053818941116, + 0.005938958376646042, + -0.08335252851247787, + -0.047006674110889435, + -0.016243280842900276, + -0.05725060775876045, + 0.08658666163682938, + 0.03963287174701691, + 0.11806406080722809, + 0.022163232788443565, + 0.030644124373793602, + 0.14959567785263062, + -0.002984040416777134, + 0.09470738470554352, + -0.041565269231796265, + -0.04937710613012314, + -0.021248381584882736, + 0.0008607277413830161, + 0.006923475302755833, + -0.02320023812353611, + -0.018233751878142357, + 0.038763780146837234, + 0.06074071303009987, + 0.049248527735471725, + 0.018832607194781303, + -0.024647068232297897, + -0.010547695681452751, + 0.04001469537615776, + 0.025280049070715904, + -0.019294843077659607, + -0.04652427136898041, + 0.04279066249728203, + -0.045342911034822464, + 0.01664387807250023, + -0.020080141723155975, + 0.07738203555345535, + -0.03401237726211548, + -0.09171529859304428, + -0.006160492077469826, + 0.010251421481370926, + 0.0024488759227097034, + 0.06570824235677719, + 0.07428112626075745, + -0.02939273975789547, + -0.01202448084950447, + 0.1388593316078186, + 0.011989458464086056, + -0.03578711301088333, + 0.026648133993148804, + 0.006213177926838398, + -0.01640714891254902, + -0.00245590228587389, + -0.08650580048561096, + 0.029056832194328308, + 0.08681061863899231, + 0.011465834453701973, + 0.022659027948975563, + 0.030185135081410408, + 0.051875099539756775, + 0.04042462632060051, + -0.13227134943008423, + -0.11428771913051605, + 0.05438219755887985, + -0.09083431959152222, + -0.012612183578312397, + 0.07158651947975159, + -0.02696806937456131, + -0.06797640025615692, + 0.06581622362136841, + 0.015639465302228928, + 0.03986485302448273, + 0.055653106421232224, + 0.007490201387554407, + -0.005892135668545961, + -0.05126439779996872, + -0.05572758987545967, + 0.02526579238474369, + -0.005031455773860216, + 0.006727892905473709, + -0.02820943482220173, + 0.09483129531145096, + 0.04839218780398369, + -0.02140715904533863, + 0.02843516133725643, + -0.035418830811977386, + -0.011624949052929878, + -0.03182176873087883, + -0.05916537344455719, + -0.03496747836470604, + 0.017629601061344147, + -0.06838151812553406, + -0.10154616087675095, + -1.958196345962346e-33, + -0.0899662896990776, + 0.03440885245800018, + -0.09460874646902084, + -0.0024181772023439407, + -0.03256265074014664, + 0.022689299657940865, + 0.02911456488072872, + -0.03526295721530914, + -0.021212207153439522, + -0.044496387243270874, + -0.0005502038984559476, + 0.04234569892287254, + -0.0022022624034434557, + -0.053724005818367004, + -0.06234778091311455, + -0.015582521446049213, + -0.06119699776172638, + 0.033083636313676834, + -0.02128031477332115, + -0.054443664848804474, + -0.06243797391653061, + 0.03169277310371399, + -0.037401050329208374, + 0.028504420071840286, + 0.03506941348314285, + -0.043151311576366425, + -0.0011421095114201307, + -0.045409735292196274, + 0.009201488457620144, + -0.007797725964337587, + 0.06211958825588226, + -0.08093593269586563, + 0.09272167831659317, + 0.07164274901151657, + -0.13807198405265808, + -0.018193408846855164, + 0.10793303698301315, + -0.05436573922634125, + -0.017354363575577736, + -0.04503246396780014, + 0.025229021906852722, + -0.0836123451590538, + 0.11716681718826294, + 0.05763953551650047, + -0.06952335685491562, + 0.024773139506578445, + -0.003406016156077385, + -0.029111938551068306, + -0.04889410734176636, + 0.10082477331161499, + 0.052567750215530396, + -0.003717396641150117, + -0.05303264409303665, + -0.006809623446315527, + -0.05950844660401344, + 0.00478372210636735, + 0.017349185422062874, + 0.03764498606324196, + 0.012227273546159267, + 0.09484323859214783, + -0.012815307825803757, + 0.04316148906946182, + 0.050140414386987686, + 0.036617569625377655, + -0.0518195703625679, + -0.010977149941027164, + -0.043212033808231354, + -0.012493613176047802, + -0.04816298931837082, + -0.08470878005027771, + 0.02172040194272995, + 0.0001432404387742281, + 0.003927528392523527, + 0.0693158432841301, + -0.042590007185935974, + -0.049544189125299454, + 0.027346771210432053, + 0.08087508380413055, + 0.00946623831987381, + 0.03975145146250725, + 0.0007815511780790985, + -0.0239388570189476, + -0.0035114793572574854, + 0.03324095159769058, + -0.08025560528039932, + 0.041201140731573105, + 0.11004544049501419, + -0.02672664076089859, + -0.008844532072544098, + -0.01107774954289198, + -0.013396968133747578, + 0.03829820454120636, + -0.03184754028916359, + -0.060228388756513596, + -0.03334955871105194, + -2.253117870054666e-08, + 0.022161968052387238, + -0.04666442796587944, + -0.018459688872098923, + -0.06557931751012802, + 0.04529764875769615, + -0.0396123044192791, + -0.035954345017671585, + -0.05564671382308006, + -0.04708482325077057, + -0.02665790542960167, + 0.0486370287835598, + 0.010310489684343338, + -0.11900173872709274, + -0.050425998866558075, + 0.04062655195593834, + -0.01354636438190937, + 0.08695131540298462, + 0.020326167345046997, + -0.00758805125951767, + -0.03447192907333374, + -0.014792516827583313, + 0.033258866518735886, + 0.09465830773115158, + -0.013507602736353874, + 0.03055691532790661, + 0.03627488762140274, + -0.08574046939611435, + 0.06150605157017708, + 0.04005657881498337, + 0.03360605239868164, + 0.10209286212921143, + 0.06368701159954071, + -0.02961522713303566, + -0.02502392791211605, + -0.08581222593784332, + -0.020077111199498177, + -0.039772626012563705, + 0.04222724959254265, + 0.010696726851165295, + 0.013501860201358795, + -0.040133316069841385, + -0.07768723368644714, + -0.08356596529483795, + 0.004698207136243582, + 0.05622437223792076, + -0.009764059446752071, + 0.014271879568696022, + -0.08751408010721207, + -0.06385905295610428, + -0.10381952673196793, + -0.03570449352264404, + 0.03105035237967968, + 0.05466947332024574, + 0.025920305401086807, + -0.03579173982143402, + -0.12648235261440277, + -0.0342148020863533, + -0.013352010399103165, + -0.026629239320755005, + 0.058628007769584656, + 0.1290496438741684, + 0.008069250732660294, + 0.03328235074877739, + -0.05090413987636566 + ], + "number-five-bold||5,numbers,numerals,digits,mathematics,arithmetic,calculator": [ + -0.03384885564446449, + -0.010627973824739456, + -0.0029025692492723465, + -0.030709421262145042, + -0.03845570236444473, + 0.002321806736290455, + 0.03808881714940071, + -0.008657742291688919, + -0.04169005528092384, + -0.01382649876177311, + 0.0026734317652881145, + 0.022157685831189156, + 0.06134866923093796, + -0.04525763541460037, + -0.02876749448478222, + -0.0009362436248920858, + -0.061918795108795166, + -0.011434162966907024, + -0.04584057256579399, + -0.028377095237374306, + 0.05887463316321373, + 0.027888953685760498, + -0.004139432217925787, + 0.06581856310367584, + 0.07600268721580505, + -0.0006496233982034028, + 0.005271965637803078, + -0.012823918834328651, + 0.03420092537999153, + -0.055323660373687744, + -0.0604398287832737, + 0.039636339992284775, + 0.12139846384525299, + -0.004057885613292456, + -0.024338651448488235, + -0.01352585107088089, + -0.01875285804271698, + 0.044248685240745544, + -0.04290395602583885, + 0.1206381618976593, + -0.017507122829556465, + -0.1480758786201477, + 0.013997435569763184, + 0.044467661529779434, + -0.0367220900952816, + -0.009977312758564949, + -0.1202530488371849, + 0.031324367970228195, + 0.003642404219135642, + 0.008047874085605145, + -0.067486472427845, + -0.029833311215043068, + -0.17573247849941254, + -0.00495869992300868, + 0.01529123168438673, + -0.05104991793632507, + -0.01140589639544487, + -0.03400477021932602, + 0.008530772291123867, + -0.021535363048315048, + -0.0024829190224409103, + 0.05215010046958923, + 0.006400999613106251, + -0.009069335646927357, + -0.00037210254231467843, + 0.05978335067629814, + 0.010901549831032753, + -0.06849636882543564, + -0.003183636348694563, + 0.05201112851500511, + 0.01702999137341976, + -0.009960422292351723, + 0.020391954109072685, + 0.00949068646878004, + -0.07144095748662949, + 0.006096789613366127, + -0.019558992236852646, + -0.004060564562678337, + -0.015013184398412704, + -0.056655410677194595, + -0.0927881971001625, + -0.050643328577280045, + -0.042200662195682526, + 0.032884206622838974, + -0.005448928568512201, + 0.0290336012840271, + -0.015585485845804214, + 0.024909239262342453, + -0.002664593979716301, + -0.09625481814146042, + -0.05301473289728165, + -0.03472602367401123, + -0.0087705347687006, + 0.056350722908973694, + -0.08470138907432556, + 0.052006036043167114, + 0.04093685746192932, + 0.019708463922142982, + -0.04712982848286629, + 0.04649937525391579, + 0.02385256066918373, + 0.03794368728995323, + 0.0018579969182610512, + 0.004923734348267317, + -0.04344063624739647, + -0.03617948293685913, + 0.06421662867069244, + -0.029138077050447464, + 0.013980932533740997, + -0.051311954855918884, + -0.021034879609942436, + -0.08406984806060791, + -0.03909209743142128, + -0.04839271679520607, + 0.021703999489545822, + -0.07432448863983154, + -0.0030078778509050608, + 0.020531481131911278, + 0.11444663256406784, + 0.031018229201436043, + 0.027697058394551277, + 0.008662072941660881, + 0.018435323610901833, + -0.02558661624789238, + -0.08058390766382217, + 0.03195151314139366, + -0.018844345584511757, + -1.595452013610035e-33, + -0.010630767792463303, + -0.014660005457699299, + -0.009896725416183472, + 0.18127700686454773, + -0.009622829034924507, + -0.04965636879205704, + -0.04021697863936424, + -0.018484123051166534, + -0.04595884680747986, + 0.07723734527826309, + 0.06650789827108383, + 0.1234905943274498, + 0.01748773641884327, + 0.03514349088072777, + 0.14355899393558502, + 0.01981476880609989, + 0.04857378080487251, + -0.04171048104763031, + -0.0442681759595871, + 0.008929219096899033, + 0.026875372976064682, + 0.040180739015340805, + -0.04597250744700432, + -0.02990005537867546, + 0.054826270788908005, + 0.07809384167194366, + 0.02960706502199173, + -0.006283012684434652, + 0.01123753096908331, + 0.026085583493113518, + 0.011435088701546192, + 0.016129270195961, + 0.04951196536421776, + -0.0480290986597538, + 0.0628061592578888, + 0.02874266728758812, + 0.03219962120056152, + 0.02815871685743332, + 0.07860222458839417, + -0.017761344090104103, + -0.10389908403158188, + -0.05604986846446991, + -0.019465727731585503, + 0.06141245737671852, + 0.06123018264770508, + 0.11642646044492722, + -0.01866667903959751, + 0.047510065138339996, + 0.08795906603336334, + -0.01262175664305687, + -0.07636433094739914, + 0.002111949725076556, + 0.027253521606326103, + -0.013423311524093151, + 0.00494920602068305, + -0.038428645581007004, + 0.004551072139292955, + 0.09699494391679764, + -0.02746562846004963, + 0.029488494619727135, + 0.017536303028464317, + 0.07122371345758438, + 0.05044832453131676, + -0.09317724406719208, + -0.08948255330324173, + 0.0739416778087616, + -0.07835407555103302, + -0.008006672374904156, + 0.110442154109478, + 0.03877921774983406, + -0.06989084184169769, + 0.0925045758485794, + 0.03637504205107689, + 0.04331972077488899, + 0.044313617050647736, + 0.013271239586174488, + 0.06765254586935043, + -0.062363576143980026, + -0.06999530643224716, + 0.01936255767941475, + -0.034216541796922684, + -0.021624766290187836, + -0.010884889401495457, + 0.08699112385511398, + 0.04609784483909607, + 0.01612592115998268, + 0.014939336106181145, + -0.061153948307037354, + 0.010871944017708302, + -0.030276747420430183, + -0.02301444672048092, + -0.03982272371649742, + 0.04555303975939751, + -0.0739322304725647, + -0.12019592523574829, + -1.8622120894299214e-33, + -0.042404018342494965, + -0.01907982863485813, + -0.08497892320156097, + 0.05171729996800423, + -0.06272576749324799, + 0.03129159286618233, + 0.030216315761208534, + -0.0440632589161396, + -0.01243911124765873, + -0.015489459037780762, + 0.02053927443921566, + 0.03566337749361992, + -0.042302895337343216, + -0.019317155703902245, + -0.07354173064231873, + 0.014871093444526196, + -0.029011374339461327, + 0.00837292242795229, + -0.03561658784747124, + 0.007559521123766899, + -0.03153211250901222, + 0.03401430696249008, + -0.056695014238357544, + 0.011818591505289078, + 0.040052201598882675, + 0.0742439404129982, + 0.016740921884775162, + -0.07793483883142471, + 0.012409958057105541, + -0.03821391612291336, + 0.005725654307752848, + -0.10272526741027832, + 0.1320982724428177, + -0.001619029208086431, + -0.11460656672716141, + -0.01495156716555357, + 0.10993366688489914, + -0.005572707392275333, + -0.05335642397403717, + -0.02741055004298687, + -0.020960165187716484, + -0.019622808322310448, + 0.12197701632976532, + 0.03811180219054222, + -0.05420590192079544, + -0.032350387424230576, + -0.0247805193066597, + -0.03076867386698723, + -0.017087338492274284, + 0.05811072140932083, + 0.05732502415776253, + -0.027854682877659798, + -0.07549529522657394, + 0.0219133123755455, + -0.07386571913957596, + 0.0009908926440402865, + 0.050291549414396286, + 0.06586293131113052, + -0.018356267362833023, + 0.12164074182510376, + -0.05543844401836395, + 0.04111292585730553, + 0.059252962470054626, + 0.03277019038796425, + -0.009229766204953194, + -0.03525318577885628, + 0.00016207474982365966, + -0.01078383345156908, + -0.02656581811606884, + -0.08084089308977127, + -0.041830770671367645, + -0.0044786022044718266, + 0.043184734880924225, + 0.03776298090815544, + -0.07376181334257126, + -0.03584195673465729, + 0.03637897968292236, + 0.09926649928092957, + -0.0023009933065623045, + 0.05750367045402527, + 0.035146020352840424, + -0.01757022924721241, + -0.050694212317466736, + 0.03803398087620735, + -0.10902805626392365, + 0.014163610525429249, + 0.09800038486719131, + 0.03748222067952156, + 0.011356468312442303, + -0.03674343600869179, + -0.03874121606349945, + 0.07561030983924866, + -0.03549632057547569, + -0.06153911352157593, + -0.04378693923354149, + -2.299076662382049e-08, + 0.038899898529052734, + -0.020586231723427773, + -0.03690659627318382, + -0.04508206248283386, + 0.02404024451971054, + 0.015141862444579601, + -0.05464153736829758, + -0.06435810029506683, + 0.00044123054249212146, + 0.012925669550895691, + 0.04871484637260437, + 0.007245914079248905, + -0.11065377295017242, + -0.026779621839523315, + 0.0213768370449543, + -0.01402328722178936, + 0.038976047188043594, + 0.007916336879134178, + 0.012206383049488068, + -0.047065652906894684, + -0.04276321828365326, + 0.02337745949625969, + 0.0709712952375412, + -0.01448972150683403, + 0.039465874433517456, + -9.641598808229901e-06, + -0.050058361142873764, + 0.05623326078057289, + 0.0379970483481884, + 0.044955383986234665, + 0.04339717701077461, + 0.05025111883878708, + -0.03309430554509163, + -0.023021988570690155, + -0.08068471401929855, + 0.02185440994799137, + -0.03674338385462761, + 0.00861597154289484, + 0.015371372923254967, + 0.03622887283563614, + -0.045643407851457596, + -0.07170512527227402, + -0.06865783035755157, + 0.007163628004491329, + 0.05572394281625748, + -0.042526111006736755, + 0.020541399717330933, + -0.07732228934764862, + -0.03063015080988407, + -0.0990457609295845, + -0.08676078170537949, + 0.05509357526898384, + 0.04498361051082611, + 0.0490567684173584, + -0.020778827369213104, + -0.06921398639678955, + -0.02063467726111412, + -0.008365778252482414, + -0.02096037194132805, + 0.043746937066316605, + 0.07731837034225464, + 0.012331306003034115, + 0.022771285846829414, + -0.011165164411067963 + ], + "number-four-bold||*updated*,4,numbers,numerals,digits,mathematics,arithmetic,calculator": [ + 0.02315673790872097, + 0.028529580682516098, + -0.03701815381646156, + -0.03055802918970585, + -0.08165360242128372, + 0.03309602662920952, + 0.03942690044641495, + -0.0053541758097708225, + -0.022760232910513878, + -0.035835519433021545, + -0.004735080059617758, + 0.0178814847022295, + 0.06871569901704788, + -0.05987457185983658, + -0.0421186201274395, + 0.00021713561727665365, + -0.06459910422563553, + 0.00848544854670763, + -0.03533032163977623, + -0.015336437150835991, + -0.00535152293741703, + 0.033654507249593735, + 0.008429563604295254, + 0.083234503865242, + 0.06426862627267838, + 0.003306195605546236, + -0.002378150587901473, + -0.04941965639591217, + 0.058196522295475006, + -0.04934058338403702, + -0.034611478447914124, + 0.042535971850156784, + 0.15237590670585632, + -0.012571328319609165, + 0.007287879940122366, + -0.028206201270222664, + 0.006254761945456266, + 0.03897541016340256, + -0.03252161666750908, + 0.15782125294208527, + -0.015192791819572449, + -0.13086901605129242, + 0.043341875076293945, + 0.06528519839048386, + -0.05009271949529648, + -0.01057277899235487, + -0.07834620773792267, + 0.0035542435944080353, + 0.013016162440180779, + 0.011130738072097301, + -0.0480005256831646, + -0.016245653852820396, + -0.18182165920734406, + 0.004655968397855759, + -0.003569055814296007, + -0.057825472205877304, + -0.027518993243575096, + -0.024618005380034447, + 0.012335394509136677, + 0.03151925653219223, + 0.0664147436618805, + 0.04924115166068077, + 0.05002845823764801, + -0.02262491174042225, + -0.0042949155904352665, + 0.05804916098713875, + 0.014277762733399868, + -0.08149482309818268, + 0.0006331006879918277, + 0.033105503767728806, + 0.07057089358568192, + 0.05936461687088013, + 0.011410758830606937, + -0.016633737832307816, + -0.05502326041460037, + -0.01652441918849945, + -0.005751136224716902, + 0.015100409276783466, + -0.0050978041253983974, + -0.05822068452835083, + -0.018575871363282204, + -0.06930525600910187, + -0.02796896919608116, + -0.02331370674073696, + -0.00024460480199195445, + 0.02070043422281742, + -0.00981438159942627, + -0.03644506260752678, + -0.004103431478142738, + -0.05534733831882477, + -0.03528046980500221, + -0.03951144218444824, + -0.0029750303365290165, + 0.04109720140695572, + -0.10044192522764206, + 0.06708157062530518, + 0.06759880483150482, + 0.013833808712661266, + -0.0009328119922429323, + 0.08371038734912872, + 0.006666046567261219, + 0.06562264263629913, + -0.054946329444646835, + 0.025697628036141396, + -0.013498187996447086, + -0.0069244117476046085, + 0.07395818829536438, + 0.003699889173731208, + -0.008788409642875195, + -0.015410193242132664, + 0.013982524164021015, + -0.12011156976222992, + -0.04001865163445473, + -0.028444424271583557, + 0.0004777123685926199, + -0.0692884549498558, + 0.017342625185847282, + -0.009067459031939507, + 0.05427195504307747, + 0.04409767687320709, + 0.035519201308488846, + 0.0169251449406147, + 0.05926197022199631, + -0.03584228828549385, + -0.03477095812559128, + 0.031118221580982208, + -0.02813570946455002, + -1.6852381088357644e-33, + 0.016909494996070862, + 0.038018301129341125, + 0.022478288039565086, + 0.11777852475643158, + 0.01782100833952427, + -0.055508922785520554, + -0.03011990897357464, + -0.02423238195478916, + -0.062057871371507645, + 0.06399863213300705, + 0.04824428632855415, + 0.10056554526090622, + 0.017379041761159897, + 0.055942654609680176, + 0.10968434065580368, + -0.05046559497714043, + 0.09022331237792969, + -0.038144227117300034, + -0.012095427140593529, + 0.00181759602855891, + 0.00441749207675457, + 0.03820324316620827, + -0.0438036248087883, + -0.006411476992070675, + 0.05521617829799652, + 0.07973066717386246, + 0.03276113048195839, + -0.0020357833709567785, + 0.005233522970229387, + 0.03111674264073372, + 0.022510044276714325, + 0.03525540605187416, + 0.0013019677717238665, + -0.06044068932533264, + 0.044597018510103226, + -0.024351654574275017, + -0.026895251125097275, + -0.024577492848038673, + 0.09261579066514969, + -0.040803052484989166, + -0.14327260851860046, + -0.031017104163765907, + -0.016731202602386475, + -0.00934249721467495, + 0.07904229313135147, + 0.08097179234027863, + -0.009556455537676811, + 0.04656953737139702, + 0.10290299355983734, + -0.025707637891173363, + -0.07937580347061157, + 0.025575442239642143, + 0.0012143163476139307, + -0.04055269435048103, + -0.03228629007935524, + -0.09749989956617355, + -0.010621737688779831, + 0.0738016739487648, + -0.014943993650376797, + 0.0002545120660215616, + 0.04499504342675209, + 0.05730731785297394, + -0.004462801851332188, + -0.07003938406705856, + -0.07593235373497009, + 0.04192740097641945, + -0.02625684253871441, + -0.027411136776208878, + 0.06886692345142365, + 0.03420349955558777, + -0.0486702062189579, + 0.03551869094371796, + 0.017673414200544357, + 0.015289133414626122, + 0.03952915593981743, + -0.006315318867564201, + 0.0435870997607708, + -0.04659287631511688, + -0.04294313117861748, + -0.01934231072664261, + -0.023998338729143143, + 0.02253578044474125, + -0.012366614304482937, + 0.1081690564751625, + 0.08021879196166992, + 0.001019688555970788, + 0.016220534220337868, + -0.01618099771440029, + 0.031975291669368744, + 0.009118304587900639, + -0.05217232555150986, + -0.01609538309276104, + -0.02880221977829933, + -0.07828584313392639, + -0.10166285932064056, + -1.9429498168901964e-33, + -0.022026274353265762, + 0.04844821244478226, + -0.10327564924955368, + 0.02804802544414997, + -0.08568814396858215, + 0.020813098177313805, + 0.024289781227707863, + 0.01513215247541666, + 0.007650095038115978, + -0.030086075887084007, + 0.06049472838640213, + 0.008422855287790298, + -0.0543987862765789, + -0.042271826416254044, + -0.0462479293346405, + 0.02482454851269722, + -0.07156043499708176, + -0.013975172303617, + -0.07627876102924347, + 0.010086128488183022, + -0.03897698596119881, + 0.05689326673746109, + -0.0718170776963234, + 0.03601844608783722, + 0.04836327210068703, + -0.0004156061040703207, + 0.04291192814707756, + -0.0622083805501461, + 0.012615440413355827, + -0.013005356304347515, + -0.017184020951390266, + -0.1267525851726532, + 0.10133128613233566, + 0.03401854634284973, + -0.13325709104537964, + -0.018900517374277115, + 0.1488693654537201, + -0.049662791192531586, + -0.03810771554708481, + -0.001615507178939879, + 0.010943741537630558, + -0.01117068249732256, + 0.11969990283250809, + 0.05513054132461548, + -0.006534765940159559, + -0.026102958247065544, + -0.027139810845255852, + 0.02273307554423809, + -0.046492818742990494, + 0.05026325210928917, + 0.053996890783309937, + -0.03341710567474365, + -0.07982689142227173, + 0.010400517843663692, + -0.052895430475473404, + 0.02138403058052063, + 0.01871606521308422, + 0.045254264026880264, + -0.05954665690660477, + 0.09346132725477219, + -0.0610056072473526, + 0.01758188009262085, + 0.0872037410736084, + 0.0320628397166729, + -0.015090111643075943, + -0.06104162335395813, + -0.0632111206650734, + -0.055028680711984634, + -0.02678610198199749, + -0.08763261139392853, + 0.011668665334582329, + -0.014352095313370228, + -0.03260473534464836, + 0.052062828093767166, + -0.05328700318932533, + -0.0646897703409195, + -0.013070478104054928, + 0.05470244958996773, + -0.03140435367822647, + 0.04310312494635582, + 0.009250489994883537, + 0.005517266690731049, + 0.008497677743434906, + -0.012549489736557007, + -0.09717307984828949, + 0.015014570206403732, + 0.11529377102851868, + 0.03696677088737488, + 0.005043311044573784, + -0.06898809224367142, + -0.032702330499887466, + 0.06802543997764587, + -0.013471515849232674, + -0.04676557332277298, + -0.0562671534717083, + -2.5655209512365218e-08, + 0.0375201441347599, + 0.008405906148254871, + -0.035123784095048904, + -0.02614264376461506, + 0.008615090511739254, + 0.0030987688805907965, + -0.05104845389723778, + -0.043361883610486984, + -0.04014245420694351, + -0.0387924425303936, + 0.03602636232972145, + 0.02390611171722412, + -0.10805462300777435, + -0.06523311883211136, + 0.0663808211684227, + -0.005361488088965416, + 0.01915576122701168, + -0.03320368379354477, + -0.022641776129603386, + -0.07345935702323914, + -0.02437395229935646, + 0.043859515339136124, + 0.053020309656858444, + 0.0021603391505777836, + 0.023136861622333527, + 0.015320712700486183, + -0.044540394097566605, + 0.06603915989398956, + 0.028162339702248573, + 0.02529940754175186, + 0.10296513885259628, + 0.03450224548578262, + -0.02660415694117546, + -0.048283420503139496, + -0.09676054120063782, + -0.026715930551290512, + -0.014810687862336636, + 0.02283087559044361, + 0.055018335580825806, + 0.03590705618262291, + -0.026511404663324356, + -0.07061140239238739, + -0.07233205437660217, + 0.035627298057079315, + 0.02966330759227276, + -0.016302084550261497, + -0.033669088035821915, + -0.097803495824337, + -0.056749045848846436, + -0.0815284252166748, + -0.05721082538366318, + 0.05190956965088844, + 0.04385211318731308, + 0.08006687462329865, + -0.010633065365254879, + -0.06502947956323624, + -0.02234070561826229, + 0.02483060583472252, + -0.030275868251919746, + 0.037036821246147156, + 0.11317979544401169, + -0.005266641732305288, + 0.023494314402341843, + -0.016770891845226288 + ], + "number-nine-bold||9,numbers,numerals,digits,mathematics,arithmetic,calculator": [ + -0.020448215305805206, + -0.004652106203138828, + -0.023986170068383217, + -0.022839590907096863, + -0.04215044155716896, + 0.04562671482563019, + 0.03921877592802048, + 0.06571181863546371, + -0.05424359440803528, + -0.07736418396234512, + 0.015151924453675747, + 0.003008528845384717, + 0.05449901521205902, + -0.03697757050395012, + -0.02754264883697033, + -0.05682605132460594, + -0.06396131217479706, + -0.010225135833024979, + -0.012972881086170673, + -0.003620210802182555, + 0.03934531658887863, + 0.05729125067591667, + 0.02989433892071247, + 0.04056595638394356, + 0.08965636044740677, + -0.009426712058484554, + 0.006181257776916027, + -0.023908913135528564, + 0.059493597596883774, + -0.03939896449446678, + -0.03512245789170265, + 0.013902333565056324, + 0.12941844761371613, + 0.04746054485440254, + 0.006423835176974535, + -0.03042498044669628, + -0.018677739426493645, + 0.053311049938201904, + -0.08429111540317535, + 0.12283377349376678, + -0.01979653723537922, + -0.12534742057323456, + 0.05920029804110527, + 0.04042578861117363, + -0.04086459055542946, + -0.005403089337050915, + -0.04521609842777252, + 0.036813803017139435, + -0.017151443287730217, + 0.030685879290103912, + -0.05670913681387901, + -0.040368206799030304, + -0.1544150859117508, + 0.03331282362341881, + 0.05223222076892853, + -0.059830185025930405, + -0.011816739104688168, + -0.044102564454078674, + -0.021319745108485222, + -0.029864083975553513, + 0.002339625731110573, + 0.06214229390025139, + 0.03955014795064926, + -0.02902957610785961, + 0.020518925040960312, + 0.04789644479751587, + 0.006488913670182228, + -0.0663357600569725, + -0.0016726870089769363, + 0.0445738285779953, + 0.08708787709474564, + 0.031571969389915466, + -0.029964912682771683, + -0.012696275487542152, + -0.06984828412532806, + 0.0297702644020319, + -0.006235545966774225, + 0.012399373576045036, + -0.046100277453660965, + -0.05728067457675934, + -0.04076002910733223, + -0.04440430551767349, + -0.010777815245091915, + 0.030360721051692963, + 0.0044273980893194675, + 0.002957194810733199, + -0.011960451491177082, + 0.030180618166923523, + -0.024320146068930626, + -0.06351476162672043, + -0.05549794062972069, + -0.016176404431462288, + 0.019968383014202118, + 0.04255734756588936, + -0.08096238225698471, + 0.03033907525241375, + 0.04885687306523323, + 0.038793012499809265, + -0.04822579398751259, + 0.06951792538166046, + 0.024138618260622025, + 0.06236783787608147, + -0.015308286994695663, + 0.038762979209423065, + -0.02483595348894596, + 0.003155357437208295, + 0.054035235196352005, + -0.004008219111710787, + -0.0061967927031219006, + -0.0471830740571022, + 0.01847548596560955, + -0.07577318698167801, + -0.03513776510953903, + -0.04473679140210152, + 0.011897478252649307, + -0.09969860315322876, + 0.008020983077585697, + 0.01519837323576212, + 0.09640197455883026, + 0.056094225496053696, + -0.009265391156077385, + 0.00721513107419014, + 0.029085587710142136, + -0.026737919077277184, + -0.04125228151679039, + 0.06200271472334862, + -0.027428368106484413, + -1.579883325617363e-33, + -0.015248691663146019, + -0.004566567484289408, + -0.019477499648928642, + 0.09658797085285187, + 0.009003845974802971, + -0.06781803071498871, + -0.08026567101478577, + 0.013034931384027004, + -0.06738772243261337, + 0.0722179263830185, + 0.03587343171238899, + 0.10688985884189606, + 0.01726064644753933, + 0.0541437529027462, + 0.1485636681318283, + -0.016164137050509453, + 0.06553656607866287, + -0.038457710295915604, + -0.036383338272571564, + -0.02006969414651394, + 0.011717851273715496, + 0.015728235244750977, + -0.04040384292602539, + -0.02767239324748516, + 0.029257923364639282, + 0.04019967466592789, + 0.02301807329058647, + 0.04921712726354599, + -0.01704232394695282, + -0.006501936353743076, + 0.021166348829865456, + 0.01661054790019989, + 0.022864440456032753, + -0.03843826800584793, + 0.0759400799870491, + 0.014597848989069462, + 0.011672629043459892, + -0.01540113054215908, + 0.10214163362979889, + -0.03716990351676941, + -0.11080484837293625, + -0.04626999795436859, + 0.0052464548498392105, + -0.017092425376176834, + 0.09905708581209183, + 0.07918399572372437, + -0.0001985042472369969, + 0.024491265416145325, + 0.10147642344236374, + -0.026898646727204323, + -0.04903517663478851, + 0.015489143319427967, + 0.01968161202967167, + 0.0031776376999914646, + 0.012246238067746162, + -0.10063325613737106, + 0.02501235157251358, + 0.09398377686738968, + -0.01608320139348507, + 0.03384849801659584, + 0.029099855571985245, + 0.010738962329924107, + 0.02191830798983574, + -0.09949047863483429, + -0.09366223961114883, + 0.049007851630449295, + -0.060531727969646454, + 0.002745401579886675, + 0.11014416813850403, + -0.012102305889129639, + -0.0675043910741806, + 0.0486036092042923, + 0.014061001129448414, + 0.0021928525529801846, + 0.05358528718352318, + 0.04364858940243721, + 0.05300568416714668, + -0.039091840386390686, + -0.028829196467995644, + -0.006850339937955141, + 0.019073180854320526, + 0.016497237607836723, + -0.049357820302248, + 0.09665754437446594, + 0.04858239367604256, + 0.009375803172588348, + 0.0016359657747671008, + -0.04328043386340141, + -0.010997152887284756, + -0.015205198898911476, + -0.03473954647779465, + -0.016087794676423073, + -0.008256827481091022, + -0.08737874031066895, + -0.09846541285514832, + -1.587920033557141e-33, + -0.07639744132757187, + 0.009586768224835396, + -0.10989131033420563, + 0.02001352049410343, + -0.06884018331766129, + 0.02685508504509926, + 0.024868890643119812, + -0.03377426043152809, + -0.04177962988615036, + -0.07812776416540146, + 0.007414771243929863, + -0.00671416986733675, + -0.026029033586382866, + -0.0920281857252121, + -0.05945076048374176, + -0.013471612706780434, + -0.03713790327310562, + 0.02949659153819084, + -0.035797517746686935, + -0.013688731007277966, + -0.038175068795681, + 0.05034216493368149, + -0.05626003444194794, + 0.00435784924775362, + 0.008942430838942528, + 0.005771229509264231, + 0.028374837711453438, + -0.02453777566552162, + 0.038029905408620834, + -0.0032242147717624903, + 0.004711947403848171, + -0.09774740785360336, + 0.07337889075279236, + 0.043252430856227875, + -0.13471098244190216, + -0.021652929484844208, + 0.11873555928468704, + -0.011261409148573875, + -0.012321180664002895, + -0.03643198311328888, + 0.042535148561000824, + -0.04368947446346283, + 0.10464390367269516, + 0.03422097861766815, + -0.038819074630737305, + 0.015550270676612854, + -0.020522261038422585, + -0.02779029868543148, + -0.046274229884147644, + 0.07839496433734894, + 0.05660504102706909, + -0.030984343960881233, + -0.036722373217344284, + 0.024161260575056076, + -0.0550217367708683, + 0.03454912081360817, + 0.04673256352543831, + 0.02466372214257717, + 0.005678496789187193, + 0.09529205411672592, + -0.04549955576658249, + 0.06328003853559494, + 0.02915961854159832, + 0.043230146169662476, + -0.05330139771103859, + -0.05600716546177864, + -0.024170009419322014, + 0.0022844725754112005, + -0.01771562732756138, + -0.1148056611418724, + -0.013112190179526806, + 0.011836591176688671, + 0.026270976290106773, + 0.04922817647457123, + -0.06826063245534897, + -0.06438451260328293, + 0.02778717875480652, + 0.1004306748509407, + 0.009465456940233707, + 0.05227131024003029, + 0.031012723222374916, + -0.033314306288957596, + -0.016799015924334526, + 0.021428678184747696, + -0.056157778948545456, + 0.03651941567659378, + 0.09847932308912277, + 0.023246461525559425, + 0.019354624673724174, + -0.03863395005464554, + -0.017628023400902748, + 0.08740163594484329, + -0.025063565000891685, + -0.07004342973232269, + -0.015145673416554928, + -2.262720144585728e-08, + 0.03366013988852501, + -0.04821377620100975, + 0.0013815797865390778, + -0.06381247192621231, + 0.03283614292740822, + -0.009296415373682976, + -0.017676644027233124, + -0.0497012697160244, + -0.06767291575670242, + 0.010645111091434956, + 0.06774071604013443, + 0.0034620813094079494, + -0.1415696144104004, + -0.060608457773923874, + 0.036374032497406006, + -0.011067998595535755, + 0.0764964297413826, + 0.0012025388423353434, + 0.002511854749172926, + -0.029346928000450134, + -0.05829189717769623, + 0.024656426161527634, + 0.10781653225421906, + 0.0037610658910125494, + 0.010678418911993504, + 0.05309577286243439, + -0.08213344216346741, + 0.06603571772575378, + 0.058069437742233276, + 0.05867575481534004, + 0.08760771155357361, + 0.04630428925156593, + -0.036948587745428085, + -0.05624508857727051, + -0.08680474758148193, + -0.04112409055233002, + 0.00111711909994483, + 0.015368918888270855, + 0.05459260195493698, + -0.004335823468863964, + -0.027613889425992966, + -0.055161427706480026, + -0.08492971956729889, + 0.01971520483493805, + 0.03401258960366249, + -0.023056603968143463, + 0.0009060633019544184, + -0.057396046817302704, + -0.06013663858175278, + -0.09229858219623566, + -0.020129753276705742, + 0.05896880105137825, + 0.029950592666864395, + 0.043951887637376785, + -0.04588726907968521, + -0.11048925668001175, + -0.024392496794462204, + -0.010608918033540249, + -0.058749694377183914, + 0.08967817574739456, + 0.11702049523591995, + 0.029196785762906075, + 0.015578637830913067, + -0.05672575533390045 + ], + "number-one-bold||1,numbers,numerals,digits,mathematics,arithmetic,calculator": [ + -0.03971314802765846, + -0.0228500347584486, + -0.049657922238111496, + -0.02265138551592827, + -0.044845666736364365, + -0.0021545898634940386, + 0.0641769990324974, + 0.00830078125, + -0.00851917639374733, + -0.05674503371119499, + -0.02768847718834877, + 0.02522784285247326, + 0.12224417179822922, + -0.03526592627167702, + -0.04251673072576523, + -0.017321115359663963, + -0.06149494647979736, + -0.022583600133657455, + 0.015543126501142979, + -0.0009063683683052659, + 0.02627290040254593, + 0.04886645823717117, + 0.012053894810378551, + 0.05743270367383957, + 0.07818866521120071, + -0.04112163931131363, + 0.01755443774163723, + -0.03719701990485191, + 0.06960706412792206, + -0.07764066755771637, + -0.03594222664833069, + 0.011461745947599411, + 0.14451061189174652, + 0.0470639243721962, + 0.016243699938058853, + -0.02849239856004715, + 0.031541161239147186, + 0.038429439067840576, + -0.07385919988155365, + 0.13825851678848267, + -0.020578332245349884, + -0.13010501861572266, + 0.07068838179111481, + 0.015011705458164215, + -0.05863622575998306, + -0.03648145869374275, + -0.09912646561861038, + 0.0314159020781517, + -0.0029553824570029974, + 0.01843961887061596, + -0.039528828114271164, + -0.003721944522112608, + -0.14509545266628265, + 0.015191811136901379, + 0.03327173739671707, + -0.030435070395469666, + -0.03553754836320877, + -0.018721729516983032, + -0.021014787256717682, + -0.04108723998069763, + 0.011861471459269524, + 0.010382850654423237, + 0.04990144446492195, + -0.03935832902789116, + 0.03658628463745117, + 0.03482288494706154, + 0.010469947010278702, + -0.050274334847927094, + 0.02442728914320469, + 0.04937504231929779, + 0.04224890470504761, + 0.003779261140152812, + -0.018145572394132614, + 0.027808714658021927, + -0.06099042668938637, + 0.02406194619834423, + 0.004669900983572006, + 0.022033298388123512, + 0.013636508025228977, + -0.06014563515782356, + -0.06737730652093887, + -0.08482536673545837, + -0.026847582310438156, + 0.00992494449019432, + 0.02848610281944275, + 0.03683202341198921, + 0.0006525675416924059, + 0.0038335227873176336, + 0.034317903220653534, + -0.06508897244930267, + -0.05680427327752113, + -0.018798351287841797, + 0.04601891338825226, + 0.07034743577241898, + -0.06848156452178955, + 0.032895319163799286, + 0.06814172863960266, + 0.041305337101221085, + -0.036904849112033844, + 0.06733714044094086, + -0.026627134531736374, + 0.09010501950979233, + 0.009031789377331734, + 0.036734890192747116, + -0.058107804507017136, + -0.029248706996440887, + 0.059539467096328735, + -0.043353788554668427, + 0.012155176140367985, + -0.04119374603033066, + 0.033451516181230545, + -0.10565357655286789, + -0.02228987030684948, + -0.05891485512256622, + 0.0010037448955699801, + -0.09664949774742126, + 0.005590356420725584, + 0.030436784029006958, + 0.1218876764178276, + 0.03720281273126602, + -0.0023079439997673035, + 0.014264165423810482, + 0.018173784017562866, + -0.011063506826758385, + -0.051886770874261856, + 0.004929309710860252, + -0.03376534953713417, + -1.6328634070219004e-33, + -0.0035918678622692823, + 0.018193433061242104, + -0.03718534857034683, + 0.11624936759471893, + 0.002198215341195464, + -0.02702924981713295, + -0.04592658579349518, + 0.007372637279331684, + -0.06973583251237869, + 0.07034330070018768, + 0.0493793860077858, + 0.11535310745239258, + 0.014858917333185673, + 0.057381682097911835, + 0.11054351180791855, + -0.01718565635383129, + 0.07223579287528992, + -0.057603638619184494, + -0.03889790549874306, + -0.021299496293067932, + -0.019299710169434547, + 0.0387735515832901, + -0.05827093869447708, + -0.022761885076761246, + 0.035625021904706955, + 0.04560860991477966, + 0.06425498425960541, + 0.014358068816363811, + -0.035248350352048874, + 0.01251156534999609, + 0.014386340975761414, + 0.030904890969395638, + -0.016011640429496765, + -0.04222925007343292, + 0.024394454434514046, + 0.014403892681002617, + 0.017730198800563812, + 0.02151133120059967, + 0.08624125272035599, + -0.03639758378267288, + -0.121764175593853, + -0.024319687858223915, + 0.013085475191473961, + -0.007903463207185268, + 0.059047527611255646, + 0.07519537210464478, + 0.007979999296367168, + 0.07735861092805862, + 0.08790315687656403, + -0.014481578953564167, + -0.08354078233242035, + 0.00837121345102787, + 0.010331308469176292, + -0.03887174651026726, + 0.028629682958126068, + -0.09853284060955048, + 0.031498756259679794, + 0.0863582119345665, + -0.011469113640487194, + 0.021252378821372986, + 0.013500003144145012, + 0.042683426290750504, + 0.04203173145651817, + -0.07550100982189178, + -0.10291130840778351, + 0.04481297358870506, + -0.07558103650808334, + 0.004134159069508314, + 0.10459665209054947, + 0.013320726342499256, + -0.08533094078302383, + 0.08907890319824219, + -0.020593667402863503, + -0.02484116330742836, + 0.022799035534262657, + 0.03761187195777893, + 0.04541805014014244, + -0.07239869236946106, + -0.08056718111038208, + 0.018897540867328644, + -0.03769060969352722, + -0.019847996532917023, + -0.018263772130012512, + 0.10084593296051025, + 0.04893230274319649, + 0.05068828538060188, + -0.0014938032254576683, + -0.06566251814365387, + 0.00794543419033289, + -0.0345325767993927, + -0.02142464555799961, + -0.0037817335687577724, + 0.029307998716831207, + -0.07707250863313675, + -0.11983496695756912, + -1.0907551671234166e-33, + -0.09773929417133331, + -0.008817018009722233, + -0.09183695912361145, + 0.03621677681803703, + -0.041627317667007446, + 0.035579558461904526, + 0.027376046404242516, + -0.05135591700673103, + 0.001063188654370606, + -0.038617320358753204, + 0.0435466393828392, + 0.02752799727022648, + -0.05832837149500847, + -0.05689087137579918, + -0.06453868001699448, + -0.005887806415557861, + -0.041157711297273636, + 0.009453214704990387, + -0.06432729214429855, + 0.006138684693723917, + -0.05470803380012512, + 0.051497187465429306, + -0.06821903586387634, + 0.047343552112579346, + -0.025813361629843712, + 0.036123842000961304, + 0.015463477000594139, + -0.035111162811517715, + 0.02110135369002819, + 0.025990162044763565, + 0.025076458230614662, + -0.09324989467859268, + 0.1189197450876236, + 0.023047277703881264, + -0.119540274143219, + -0.0023874256294220686, + 0.1236872747540474, + -0.04000212252140045, + -0.0034617946948856115, + -0.011757247149944305, + -0.01045958697795868, + -0.041437484323978424, + 0.08219410479068756, + 0.013141569681465626, + -0.018557043746113777, + -0.001744488370604813, + -0.003998667001724243, + -0.04750650003552437, + -0.030496884137392044, + 0.056250784546136856, + 0.03686291351914406, + 0.03351309150457382, + -0.037331387400627136, + -0.0004342174215707928, + -0.029299693182110786, + -0.009592230431735516, + 0.010522881522774696, + 0.036215923726558685, + -0.014699050225317478, + 0.11635344475507736, + -0.01974317617714405, + 0.07328428328037262, + 0.03200355917215347, + 0.07313698530197144, + -0.03295918181538582, + -0.06254538148641586, + -0.02832474187016487, + -0.01814897730946541, + -0.040038663893938065, + -0.04761555418372154, + 0.04710027202963829, + 0.03620705008506775, + 0.04282673820853233, + 0.03474428877234459, + -0.06638183444738388, + -0.04948806390166283, + 0.015576684847474098, + 0.0444285124540329, + -0.029429415240883827, + 0.037389036267995834, + 0.04886600747704506, + 0.012836704030632973, + -0.06292492896318436, + 0.027791794389486313, + -0.05876227095723152, + 0.03008023090660572, + 0.14011335372924805, + 0.002770503517240286, + -0.012123238295316696, + -0.039763595908880234, + -0.02915341593325138, + 0.0856083407998085, + -0.06213998794555664, + -0.051635682582855225, + -0.0528835766017437, + -2.2808039901178745e-08, + -0.004632049705833197, + -0.018763750791549683, + -0.015154687687754631, + -0.06646315008401871, + 0.018425647169351578, + 0.013638203963637352, + -0.0452084094285965, + -0.05253222584724426, + -0.03205215185880661, + -0.021881941705942154, + 0.034199412912130356, + 0.06106343865394592, + -0.10507882386445999, + -0.0302223339676857, + 0.06804879754781723, + -0.01301460899412632, + 0.055999793112277985, + -0.014936994761228561, + -0.006381308194249868, + -0.017732659354805946, + 0.015347849577665329, + 0.0318261981010437, + 0.0737500786781311, + -0.08096397668123245, + 0.014855670742690563, + -0.005008702166378498, + -0.06654634326696396, + 0.07304690778255463, + 0.0696176290512085, + 0.010867374949157238, + 0.04893242195248604, + 0.03523926064372063, + 0.00157461769413203, + -0.0326794795691967, + -0.06097656115889549, + 0.006339233834296465, + -0.02105121873319149, + 0.03351666405797005, + 0.02592374011874199, + -0.003008416388183832, + -0.0024110525846481323, + -0.03141844645142555, + -0.08437246084213257, + 0.013625546358525753, + 0.04996129497885704, + -0.01000015065073967, + 0.007295273710042238, + -0.09795450419187546, + -0.07684913277626038, + -0.0952921062707901, + -0.06674803793430328, + 0.05908140167593956, + 0.05942521244287491, + 0.04241393506526947, + -0.03581365942955017, + -0.05344840884208679, + -0.06367404758930206, + 0.03309546411037445, + -0.017537003383040428, + 0.06515088677406311, + 0.07565868645906448, + 0.02104562520980835, + 0.017351366579532623, + -0.027851652354002 + ], + "number-seven-bold||7,numbers,numerals,digits,mathematics,arithmetic,calculator": [ + -0.036764904856681824, + -0.0005822440725751221, + -0.035587210208177567, + 0.016430454328656197, + -0.07175329327583313, + 0.010040572844445705, + 0.04933159053325653, + 0.018914947286248207, + -0.047212470322847366, + -0.018602151423692703, + -0.008752808906137943, + -0.007979306392371655, + 0.05784115940332413, + -0.027060281485319138, + -0.0346141941845417, + -0.0391535721719265, + -0.07272762805223465, + -0.0034173086751252413, + -0.01599336415529251, + -0.014037714339792728, + 0.03710411489009857, + 0.04580174759030342, + 0.029550200328230858, + 0.10017360746860504, + 0.0893266499042511, + -0.004593112971633673, + 0.023790882900357246, + 0.006968851666897535, + 0.059306640177965164, + -0.062298547476530075, + -0.07137817144393921, + 0.025028439238667488, + 0.15663638710975647, + 0.036946479231119156, + 0.013346580788493156, + -0.020179778337478638, + 0.021580424159765244, + 0.03319988772273064, + -0.06177104264497757, + 0.12380703538656235, + -0.034073490649461746, + -0.1265987753868103, + 0.05361155793070793, + 0.006594420410692692, + -0.08921341598033905, + -0.003297487273812294, + -0.07671733945608139, + 0.009390197694301605, + 0.024633822962641716, + 0.01880975440144539, + -0.051909368485212326, + -0.04140763729810715, + -0.17271262407302856, + 0.03319720923900604, + 0.04249885678291321, + -0.0460657924413681, + -0.059029657393693924, + -0.08750878274440765, + -0.011542577296495438, + -0.008614198304712772, + -0.009868917055428028, + 0.013558482751250267, + 0.02986331470310688, + -0.018019523471593857, + -0.02414034865796566, + 0.00760299526154995, + -0.0337350070476532, + -0.046191539615392685, + 0.006835106760263443, + 0.020699303597211838, + 0.05650366470217705, + 0.010605827905237675, + 0.004472517408430576, + 0.030226387083530426, + -0.03274373710155487, + 0.0274906437844038, + -0.02477148175239563, + -0.0027313849423080683, + -0.05562850832939148, + -0.10041916370391846, + -0.03823358193039894, + -0.06330391019582748, + -0.028093917295336723, + 0.039068177342414856, + 0.016087766736745834, + 0.007250637281686068, + -0.018097160384058952, + 0.04089972376823425, + -0.007364720571786165, + -0.06490360200405121, + -0.020833507180213928, + 0.007073364220559597, + 0.04619551822543144, + 0.02068588323891163, + -0.07320617884397507, + 0.04521988704800606, + 0.07898362725973129, + 0.027877122163772583, + -0.04743766784667969, + 0.0956442654132843, + 0.028773045167326927, + 0.07573582231998444, + -0.025940455496311188, + 0.010090128518640995, + -0.02548651583492756, + -0.007075265049934387, + 0.025968337431550026, + -0.006825521122664213, + 0.006716056261211634, + -0.06446894258260727, + 0.0029204695019870996, + -0.08284537494182587, + 0.009125887416303158, + -0.039616137742996216, + -0.004123413935303688, + -0.0826609879732132, + 0.01591578684747219, + 0.0251059178262949, + 0.10079383850097656, + 0.057063598185777664, + 0.012688695453107357, + 0.015929752960801125, + 0.061998151242733, + 0.020526612177491188, + -0.0558166429400444, + 0.023734131827950478, + -0.013501852750778198, + -1.7940705186226766e-33, + 0.01468233298510313, + -0.02708921767771244, + 0.002355469623580575, + 0.1318606287240982, + -0.03778683766722679, + -0.0603376179933548, + -0.035107649862766266, + -0.019352922216057777, + -0.015088921412825584, + 0.043969232589006424, + 0.04119352996349335, + 0.09697967767715454, + 0.034938745200634, + 0.03209756314754486, + 0.13495972752571106, + 0.0024117440916597843, + 0.07166830450296402, + -0.06413514167070389, + -0.05631571263074875, + -0.00015443058509845287, + 0.04004070162773132, + 0.016081983223557472, + -0.0615430511534214, + 0.005612160544842482, + 0.03240567073225975, + 0.06936683505773544, + 0.01779630035161972, + 0.052453648298978806, + -0.004607114475220442, + 0.0053721219301223755, + 0.01919068954885006, + 0.02975449152290821, + 0.05031542479991913, + -0.006350471172481775, + 0.04428929463028908, + -0.012075196020305157, + -0.0041524190455675125, + -0.011619036085903645, + 0.09364433586597443, + -0.0008610639488324523, + -0.1160842776298523, + -0.057387445122003555, + 0.010837705805897713, + 0.004645870067179203, + 0.06274436414241791, + 0.09756018966436386, + 0.0061282627284526825, + 0.05763033404946327, + 0.10601465404033661, + 0.019637079909443855, + -0.020048435777425766, + -0.0009840680286288261, + 0.00038713542744517326, + -0.014333556406199932, + 0.01697394624352455, + -0.036731187254190445, + 0.02292373590171337, + 0.08519207686185837, + 0.013767329044640064, + 0.013663479126989841, + 0.0247369185090065, + 0.016221869736909866, + 0.023394709452986717, + -0.0893421471118927, + -0.08451279252767563, + 0.06970622390508652, + -0.08218786865472794, + 0.0026680645532906055, + 0.03789519891142845, + -0.004234502092003822, + -0.07165960967540741, + 0.08589639514684677, + 0.03200531378388405, + 0.023805929347872734, + 0.049812931567430496, + 0.025089571252465248, + 0.03557049483060837, + -0.07555875182151794, + -0.06253030896186829, + -0.019765939563512802, + -0.03848729655146599, + -0.011454184539616108, + -0.05284886062145233, + 0.1002223938703537, + 0.03485388681292534, + 0.01769162155687809, + 0.0017539758700877428, + -0.08127082139253616, + -0.0038139917887747288, + -0.039547208696603775, + -0.06265731155872345, + -0.014753938652575016, + -0.02057759463787079, + -0.06905174255371094, + -0.09858518093824387, + -1.8957832897344444e-33, + -0.060849424451589584, + 0.022480634972453117, + -0.10152091830968857, + 0.03984789177775383, + -0.07023657113313675, + 0.03211610019207001, + 0.027260711416602135, + -0.01611669361591339, + -0.05468888580799103, + -0.07284846156835556, + 0.00911475345492363, + 0.026089949533343315, + -0.030868958681821823, + -0.04098120704293251, + -0.0664626955986023, + 0.023193741217255592, + -0.03462489694356918, + 0.008589416742324829, + -0.035656798630952835, + -0.024554746225476265, + -0.07332129776477814, + 0.025565100833773613, + -0.07114863395690918, + 0.03519405797123909, + 0.05000944435596466, + 0.004824621602892876, + 0.003286349354311824, + -0.07410604506731033, + 0.043401770293712616, + 0.017833255231380463, + 0.02227988839149475, + -0.12205948680639267, + 0.10280226171016693, + 0.0323847159743309, + -0.15112879872322083, + -0.0084243044257164, + 0.09993653744459152, + -0.04443230852484703, + -0.040167514234781265, + -0.04021375626325607, + -0.013342998921871185, + -0.06609227508306503, + 0.11552061885595322, + -0.014900511130690575, + -0.023287268355488777, + -0.030042625963687897, + 0.01848493702709675, + -0.05496163293719292, + 0.0029968053568154573, + 0.07503897696733475, + 0.03129112720489502, + -0.010476145893335342, + -0.04388142004609108, + -0.007001666817814112, + -0.09194667637348175, + 0.020956622436642647, + 0.037409860640764236, + 0.050675928592681885, + 0.035224560648202896, + 0.0853460505604744, + 0.002940691541880369, + 0.008761558681726456, + 0.050333671271800995, + 0.04397491738200188, + -0.044162947684526443, + -0.04852547496557236, + -0.04513058811426163, + 0.021466396749019623, + -0.019047174602746964, + -0.1271158754825592, + -0.006218553986400366, + -0.008483239449560642, + 0.03828577324748039, + 0.05804535001516342, + -0.060154449194669724, + -0.09732948988676071, + 0.030136989429593086, + 0.07731114327907562, + -0.0436708964407444, + 0.054332636296749115, + 0.02225649543106556, + -0.027194062247872353, + -0.049502477049827576, + 0.014457465149462223, + -0.0711466446518898, + 0.08049292117357254, + 0.12185162305831909, + -0.0005621669115498662, + 0.008163291029632092, + -0.038086049258708954, + -0.03781869634985924, + 0.08021922409534454, + -0.021073035895824432, + -0.05289342626929283, + -0.04080280289053917, + -2.2259568410731845e-08, + 0.019947215914726257, + -0.06503716856241226, + -0.01883370615541935, + -0.06176444888114929, + 0.07000788301229477, + 0.017749296501278877, + -0.05138106271624565, + -0.056171342730522156, + -0.04392598196864128, + -0.018025612458586693, + 0.060430534183979034, + 0.0209161676466465, + -0.10844136774539948, + -0.029470449313521385, + 0.001166811678558588, + 0.012852632440626621, + 0.07057399302721024, + -0.006789984181523323, + 0.004991927184164524, + -0.03279193863272667, + -0.011480226181447506, + -0.011741943657398224, + 0.07880333065986633, + 0.010603325441479683, + 0.031356051564216614, + 0.0076897055841982365, + -0.08152157068252563, + 0.10811696946620941, + 0.03472797945141792, + 0.011189918965101242, + 0.06786680221557617, + 0.022435693070292473, + 0.01748848892748356, + -0.04338834807276726, + -0.08052697777748108, + 0.02096879668533802, + -0.011278795078396797, + 0.0018911765655502677, + 0.05516652762889862, + 0.006864758208394051, + -0.04673953354358673, + -0.03183377906680107, + -0.07391895353794098, + 0.016367057338356972, + 0.038465388119220734, + -0.02498774416744709, + 0.020127974450588226, + -0.04155201092362404, + -0.028460346162319183, + -0.0747242271900177, + -0.01534863468259573, + 0.0641934797167778, + 0.051814544945955276, + 0.032415714114904404, + 0.005882955621927977, + -0.07537828385829926, + -0.021502165123820305, + 0.03167746216058731, + 0.002738178474828601, + 0.061257608234882355, + 0.11113830655813217, + -7.416895823553205e-05, + 0.011930341832339764, + -0.015466462820768356 + ], + "number-six-bold||6,numbers,numerals,digits,mathematics,arithmetic,calculator": [ + -0.008817256428301334, + -0.0029870388098061085, + -0.06777024269104004, + -0.014182379469275475, + -0.08467181771993637, + 0.03364330902695656, + 0.010257268324494362, + 0.010560219176113605, + -0.027942916378378868, + -0.027723390609025955, + -0.006446372717618942, + 0.035194672644138336, + 0.04680527746677399, + -0.09761928021907806, + -0.009402871131896973, + -0.004799972288310528, + -0.10204744338989258, + 0.008417541161179543, + -0.04781322181224823, + 0.04382174089550972, + 0.024373386055231094, + 0.04151609539985657, + 0.023208048194646835, + 0.0481581948697567, + 0.10956595838069916, + -0.04077387601137161, + 0.017176810652017593, + -0.006933566182851791, + 0.08126164972782135, + -0.016913000494241714, + -0.04118580371141434, + 0.07087498158216476, + 0.12519437074661255, + 0.032771144062280655, + 0.02453944832086563, + -0.0008864434785209596, + 0.0011994721135124564, + 0.05295649915933609, + -0.048823464661836624, + 0.10068691521883011, + -0.03861119970679283, + -0.13826090097427368, + 0.05744330957531929, + 0.005293354857712984, + -0.030306151136755943, + -0.012416422367095947, + -0.10563291609287262, + 0.05847371742129326, + 0.04536857455968857, + 0.002540223766118288, + -0.03383656591176987, + -0.053308501839637756, + -0.1798131763935089, + 0.020864197984337807, + 0.036684468388557434, + -0.021809764206409454, + -0.07126781344413757, + -0.05492553487420082, + 0.01882963627576828, + 0.00022490184346679598, + -0.02486191689968109, + 0.0427871011197567, + 0.056311506778001785, + 0.006752656772732735, + 0.0331084318459034, + 0.02619037963449955, + 0.008013402111828327, + -0.03690558671951294, + 0.010272961109876633, + 0.018120860680937767, + 0.0008198142750188708, + 0.02592078596353531, + 0.022305522114038467, + -0.0028946155216544867, + -0.06718339025974274, + 0.011762985959649086, + -0.03546180948615074, + -0.01643548533320427, + -0.01844167150557041, + -0.09102557599544525, + -0.07512863725423813, + -0.07131902873516083, + -0.05003392696380615, + 0.058399226516485214, + -0.0011062546400353312, + -0.004933524411171675, + 0.011356792412698269, + 0.01619323156774044, + -0.024065913632512093, + -0.05268861725926399, + -0.010659667663276196, + -0.008863585069775581, + 0.008180025033652782, + 0.001546006533317268, + -0.10151076316833496, + 0.051674097776412964, + 0.06166902929544449, + 0.056765127927064896, + -0.00807509757578373, + 0.06773712486028671, + 0.03071027435362339, + 0.054794929921627045, + -0.017667068168520927, + 0.014778869226574898, + 0.007060465402901173, + -0.012936607003211975, + 0.024322370067238808, + 0.01712283119559288, + -0.009061050601303577, + -0.018479784950613976, + -0.016876716166734695, + -0.07804927229881287, + -0.018860744312405586, + -0.032704420387744904, + 0.028165919706225395, + -0.07393672317266464, + -0.0020259395241737366, + 0.016221562400460243, + 0.10270518809556961, + 0.040662769228219986, + 0.021061597391963005, + 0.04018707200884819, + 0.027197042480111122, + 0.0007850880501791835, + -0.045525580644607544, + 0.03655124828219414, + 0.022699149325489998, + -2.116308050329621e-33, + -0.01405650470405817, + 0.0023845424875617027, + 0.010343985632061958, + 0.11622625589370728, + -0.0028710297774523497, + -0.058721669018268585, + -0.04394619166851044, + -0.02418883703649044, + -0.09428173303604126, + 0.09436766803264618, + 0.05015665292739868, + 0.11168263107538223, + 0.02481251023709774, + 0.041795119643211365, + 0.1842963844537735, + 0.009080265648663044, + 0.07995513826608658, + -0.048622969537973404, + -0.04150467365980148, + -0.004048570059239864, + 0.020903633907437325, + 0.025579415261745453, + -0.025490550324320793, + -0.026212967932224274, + 0.02071293815970421, + 0.06484448164701462, + 0.05001385509967804, + 0.029917918145656586, + -0.03880324587225914, + 0.01572500355541706, + 0.022378604859113693, + 0.038272544741630554, + 0.05047773942351341, + -0.02071055769920349, + 0.028797823935747147, + 0.0004803069750778377, + -0.027819665148854256, + -0.0028580937068909407, + 0.07593318074941635, + -0.03564606234431267, + -0.08017195016145706, + -0.031125174835324287, + -0.06001416966319084, + 0.03942893072962761, + 0.062074679881334305, + 0.07976517826318741, + 0.02648071199655533, + 0.009807992726564407, + 0.116190105676651, + 0.0007430004188790917, + -0.08049660921096802, + -0.023020461201667786, + 0.03467056155204773, + -0.01921285316348076, + 0.03591238707304001, + -0.06267432123422623, + -0.01028198841959238, + 0.1052270457148552, + -0.0020262659527361393, + 0.0408744178712368, + -0.004180417861789465, + 0.03577737137675285, + 0.03256393224000931, + -0.03814627230167389, + -0.10565955936908722, + 0.01886826939880848, + -0.08834368735551834, + 0.014763740822672844, + 0.04987717047333717, + 0.028631052002310753, + -0.08964464068412781, + 0.07254787534475327, + 0.007047748658806086, + 0.027246635407209396, + 0.02898349240422249, + 0.012404708191752434, + 0.047626666724681854, + -0.08097728341817856, + -0.09224331378936768, + -0.024954916909337044, + 0.01351567730307579, + 0.011106358841061592, + -0.01027139462530613, + 0.08436403423547745, + 0.03435241058468819, + 0.02436203695833683, + -0.03396882116794586, + -0.05583767965435982, + -0.004761045798659325, + -0.002476903609931469, + -0.01489392202347517, + -0.048519086092710495, + -0.029303226619958878, + -0.0700141191482544, + -0.0761045590043068, + -1.9575740686403795e-33, + -0.046505797654390335, + 0.03994664177298546, + -0.07400007545948029, + 0.015165826305747032, + -0.029158946126699448, + 0.03842184320092201, + 0.07942993193864822, + -0.02138405665755272, + -0.021138962358236313, + -0.08346826583147049, + 0.0018197438912466168, + 0.02969142608344555, + -0.04921787977218628, + -0.05693785846233368, + -0.06868544220924377, + 0.0032385215163230896, + -0.033129461109638214, + 0.016471294686198235, + -0.0047059510834515095, + -0.01441148016601801, + -0.08609389513731003, + 0.009354974143207073, + -0.0948173999786377, + -0.0016973087331280112, + 0.024313388392329216, + 0.034597959369421005, + 0.022026093676686287, + -0.09348440170288086, + -0.0036000553518533707, + -0.036323677748441696, + 0.029207222163677216, + -0.08697877079248428, + 0.12866316735744476, + 0.011626913212239742, + -0.12077220529317856, + -0.004086562432348728, + 0.11661996692419052, + -0.03691130504012108, + -0.028121665120124817, + -0.010859910398721695, + 0.011174003593623638, + -0.03631432354450226, + 0.10452382266521454, + 0.02509305067360401, + -0.017826270312070847, + -0.050289567559957504, + 0.005176756531000137, + -0.031119786202907562, + -0.026027977466583252, + 0.07773356884717941, + 0.056722138077020645, + -0.060726042836904526, + -0.036561887711286545, + 0.03981367498636246, + -0.054569318890571594, + -0.03330380469560623, + 0.05226197838783264, + -0.0005796317127533257, + -0.025721443817019463, + 0.10307642072439194, + -0.021113354712724686, + 0.03625607118010521, + 0.021908096969127655, + 0.020788142457604408, + -0.047708868980407715, + -0.03647623956203461, + 0.011441162787377834, + 0.016190551221370697, + -0.03617336228489876, + -0.07937618345022202, + 0.003580839606001973, + 0.0173379834741354, + 0.005497092846781015, + 5.291171692078933e-05, + -0.062064409255981445, + -0.04781493544578552, + 0.02559717372059822, + 0.10853991657495499, + 0.0018636123277246952, + 0.0539272278547287, + 0.0073575209826231, + 0.01157962903380394, + -0.05572368577122688, + 0.06748776882886887, + -0.08934180438518524, + 0.04278266802430153, + 0.12424744665622711, + 0.005968895275145769, + -0.04576227441430092, + -0.030858850106596947, + -0.04217507317662239, + 0.04223738983273506, + -0.026970531791448593, + -0.08184054493904114, + -0.031112782657146454, + -2.30970726988744e-08, + 0.05020126700401306, + -0.0639154240489006, + -0.03598415479063988, + -0.07340472936630249, + 0.07165154814720154, + 0.011775746010243893, + -0.03707874193787575, + -0.04186323657631874, + -0.09034330397844315, + -0.017202574759721756, + 0.0495123490691185, + 0.02618091180920601, + -0.09279021620750427, + -0.09544885903596878, + 0.013931347988545895, + -0.03828011825680733, + 0.035562776029109955, + 0.019162239506840706, + -0.033346306532621384, + -0.03657778352499008, + -0.010145257227122784, + 0.017774516716599464, + 0.06322942674160004, + 0.018042566254734993, + 0.04071354493498802, + 0.02291514351963997, + -0.06979458034038544, + 0.07094302028417587, + 0.05194133520126343, + 0.05094730854034424, + 0.06991671025753021, + 0.005577686708420515, + -0.033251356333494186, + -0.03004642017185688, + -0.06633773446083069, + 0.017954885959625244, + -0.0035304799675941467, + -0.03222442790865898, + 0.00825108028948307, + 0.0038227152545005083, + -0.019297581166028976, + -0.08088550716638565, + -0.0763562023639679, + -0.009518087841570377, + 0.04038866609334946, + 0.0034526032395660877, + 0.005507208872586489, + -0.079253189265728, + -0.06667163968086243, + -0.05858727917075157, + -0.06667590141296387, + 0.041196927428245544, + 0.02654087543487549, + 0.04708801582455635, + -0.014654279686510563, + -0.06636399030685425, + -0.015492971055209637, + -0.016568580642342567, + -0.029209667816758156, + 0.06336130201816559, + 0.12297744303941727, + 0.011345724575221539, + 0.04746650531888008, + -0.029766257852315903 + ], + "number-square-eight-bold||8,numbers,numerals,digits,mathematics,arithmetic,calculator": [ + -0.013114605098962784, + 0.0420302115380764, + -0.010388502851128578, + 0.028279192745685577, + -0.08622534573078156, + 0.04524122551083565, + 0.024633117020130157, + 0.05267355963587761, + -0.0032367673702538013, + -0.0709204450249672, + 0.018736789003014565, + 0.04539857804775238, + 0.06406287848949432, + -0.030741218477487564, + -0.0605231337249279, + -0.01734902337193489, + -0.051188886165618896, + -0.012482885271310806, + -0.04015523940324783, + -0.0035358055029064417, + 0.06217670068144798, + 0.017413757741451263, + 0.0069252620451152325, + 0.07089989632368088, + 0.05245881527662277, + -0.005997674074023962, + 0.025798840448260307, + -0.009999004192650318, + 0.045821260660886765, + -0.050477661192417145, + -0.013466613367199898, + 0.01266842894256115, + 0.13402152061462402, + 0.01864803209900856, + 0.023414283990859985, + 0.011525193229317665, + 0.00858283694833517, + 0.043344710022211075, + -0.029233289882540703, + 0.1079896092414856, + -0.03011535480618477, + -0.16132056713104248, + 0.05779557302594185, + 0.028718404471874237, + -0.020768295973539352, + -0.03201022744178772, + -0.03688057139515877, + 0.013822943903505802, + 0.022797809913754463, + -0.006432576570659876, + -0.047443937510252, + -0.04158530384302139, + -0.13749301433563232, + -0.01441473513841629, + 0.05034017190337181, + -0.03542446717619896, + 0.0030607946682721376, + -0.045981910079717636, + 0.039218541234731674, + 0.015460001304745674, + -0.003504515392705798, + 0.047383975237607956, + 0.049842026084661484, + 0.019736437126994133, + -0.03286556154489517, + 0.026091497391462326, + 0.009630424901843071, + -0.05514220520853996, + -0.005517051089555025, + 0.0413200706243515, + 0.09172458946704865, + 0.05888323858380318, + -0.01930447295308113, + 0.04015516862273216, + -0.02092655934393406, + -0.03528469428420067, + -0.012830708175897598, + 0.0072057051584124565, + -0.013051419518887997, + -0.05940930172801018, + -0.06162858381867409, + -0.06393834203481674, + -0.014880876988172531, + 0.01713157817721367, + -0.0015211849240586162, + 0.011651155538856983, + -0.04284689947962761, + 0.007176163140684366, + -0.008524660021066666, + -0.06899131089448929, + -0.06454833596944809, + -0.01022341474890709, + 0.040648262947797775, + 0.04933048412203789, + -0.0686601996421814, + 0.03609176352620125, + 0.0874904990196228, + 0.002052410738542676, + -0.056417472660541534, + 0.07054046541452408, + 0.04770312085747719, + 0.014764844439923763, + -0.04947428032755852, + 0.033701006323099136, + 0.01741008274257183, + -0.0196150541305542, + 0.09829022735357285, + -0.016444236040115356, + -0.008701114915311337, + -0.01956615224480629, + 0.008755342103540897, + -0.08434929698705673, + -0.013341554440557957, + -0.024624738842248917, + 0.0020548589527606964, + -0.0683479756116867, + -0.02791619300842285, + -0.012496490962803364, + 0.11349359154701233, + 0.039985474199056625, + 0.02039489895105362, + 0.0046546910889446735, + 0.0193779319524765, + -0.017078259959816933, + -0.04221509397029877, + 0.0720226839184761, + -0.04660806804895401, + -2.2621964501582673e-33, + 0.023154422640800476, + 0.038469862192869186, + 0.006858390290290117, + 0.11552523076534271, + 0.008268512785434723, + -0.1069173514842987, + -0.049697089940309525, + -0.04819957911968231, + -0.012940582819283009, + 0.103348508477211, + 0.034458450973033905, + 0.10204389691352844, + -0.022564401850104332, + 0.04869610816240311, + 0.1613629013299942, + 4.769834777107462e-05, + 0.09536394476890564, + -0.008436789736151695, + -0.018361162394285202, + -0.020741434767842293, + -0.004994776099920273, + 0.012176671996712685, + -0.04226851090788841, + 0.0002778171037789434, + 0.05102794989943504, + 0.060083143413066864, + 0.05270061641931534, + 0.004394727759063244, + 0.014676567167043686, + 0.017304077744483948, + 0.07268620282411575, + 0.04109715670347214, + -0.03312729299068451, + -0.06345168501138687, + 0.060120224952697754, + -0.05625792592763901, + 0.0327327586710453, + -0.006710096728056669, + 0.07924406975507736, + -0.054954349994659424, + -0.08276847004890442, + -0.0049575618468225, + 0.014632307924330235, + -0.010206040926277637, + 0.07401365786790848, + 0.05111050605773926, + 0.007269350811839104, + -0.0202333927154541, + 0.13284090161323547, + -0.006493911147117615, + -0.04731180518865585, + 0.010051107965409756, + 0.008940259926021099, + 0.005604872480034828, + 0.03655348718166351, + -0.09434062987565994, + -0.003569427179172635, + 0.08168227225542068, + 0.024587934836745262, + 0.04666997119784355, + 0.0320826880633831, + 0.03472268953919411, + 0.026872320100665092, + -0.1358456015586853, + -0.11153554916381836, + 0.0607752799987793, + -0.08780653029680252, + -0.03823206201195717, + 0.03642474114894867, + -0.012726622633635998, + -0.07751118391752243, + 0.029454682022333145, + 0.028875984251499176, + 0.04271101951599121, + 0.041871342808008194, + -0.009456392377614975, + -0.013894449919462204, + -0.043873585760593414, + -0.035344433039426804, + -0.018698733299970627, + -0.0028296818491071463, + 0.026550188660621643, + -0.06701361387968063, + 0.04298454523086548, + 0.0418262779712677, + -0.030588338151574135, + 0.022541776299476624, + -0.053616203367710114, + -0.026918770745396614, + -0.028798339888453484, + -0.06989108771085739, + -0.03776146471500397, + 0.0215282179415226, + -0.05398043617606163, + -0.1148705780506134, + -1.716341689358522e-33, + -0.08869330585002899, + 0.06233513727784157, + -0.1067449226975441, + 0.011418144218623638, + -0.0328068770468235, + 0.006038516294211149, + 0.02653810940682888, + -0.04499927908182144, + -0.013790082186460495, + -0.0335618257522583, + 0.003191357711330056, + 0.01594194397330284, + -0.010829760693013668, + -0.06831996142864227, + -0.06313091516494751, + 0.01318137813359499, + -0.02672441303730011, + 0.0270641278475523, + -0.062089528888463974, + -0.07964569330215454, + -0.08150456100702286, + 0.01621771603822708, + -0.01788850873708725, + 0.022320512682199478, + 0.02216225489974022, + -0.01611343026161194, + -0.012223725207149982, + -0.04991380125284195, + 0.026332268491387367, + 0.028097691014409065, + 0.03909994661808014, + -0.08311919122934341, + 0.07613679021596909, + 0.07129223644733429, + -0.1580505520105362, + -0.043904513120651245, + 0.11618849635124207, + -0.056895360350608826, + -0.0111536905169487, + -0.05266401171684265, + 0.04637397453188896, + -0.07567483931779861, + 0.10970452427864075, + 0.07727587223052979, + -0.04879026114940643, + 0.024042293429374695, + 0.014484288170933723, + -0.045095182955265045, + -0.0480184331536293, + 0.058425623923540115, + 0.03967640548944473, + -0.012261318042874336, + -0.05436025187373161, + 0.009252369403839111, + -0.05977551266551018, + 0.011485042050480843, + 0.01177938748151064, + 0.06376615166664124, + 0.00021190947154536843, + 0.0927739217877388, + -0.0121504170820117, + 0.0398227833211422, + 0.04153022542595863, + 0.03169801086187363, + -0.06662555038928986, + -0.013371329754590988, + -0.020585713908076286, + 0.02363988570868969, + -0.044871777296066284, + -0.03868206962943077, + 0.0026173912920057774, + 0.014838072471320629, + -0.007115456275641918, + 0.07308198511600494, + -0.04429116100072861, + -0.035706017166376114, + -0.012487934902310371, + 0.05902084335684776, + -0.01293976977467537, + 0.06272831559181213, + 0.025033801794052124, + 0.002704992424696684, + 0.0015931847738102078, + -0.005492957774549723, + -0.07268019020557404, + 0.030367814004421234, + 0.09732178598642349, + 0.0005811574519611895, + -0.011007940396666527, + -0.024933965876698494, + -0.010868165642023087, + 0.039094291627407074, + -0.05076587572693825, + -0.03886663541197777, + -0.028365153819322586, + -2.2962494128364597e-08, + 0.006821620278060436, + -0.021214157342910767, + -0.003407336538657546, + -0.0836905986070633, + 0.03426601365208626, + -0.06626530736684799, + -0.02571350336074829, + -0.04577780142426491, + -0.04917206987738609, + -0.027782754972577095, + 0.020018551498651505, + 0.02297050878405571, + -0.12171868234872818, + -0.05430743098258972, + 0.032569319009780884, + -0.0034139659255743027, + 0.06792265921831131, + 0.017335716634988785, + -0.009967168793082237, + -0.027202393859624863, + -0.006369448266923428, + 0.019517647102475166, + 0.08079744875431061, + 0.013253404758870602, + -0.005499005783349276, + 0.035320740193128586, + -0.08528750389814377, + 0.06674877554178238, + 0.04133777692914009, + 0.0461198128759861, + 0.08682148903608322, + 0.07328636944293976, + -0.03785252943634987, + -0.03918110206723213, + -0.08940304815769196, + -0.03750806301832199, + -0.04848325252532959, + 0.0420282781124115, + 0.002779519883915782, + 0.005859198048710823, + -0.011273759417235851, + -0.09316407144069672, + -0.05514661967754364, + 0.006891324650496244, + 0.06873424351215363, + 0.015459604561328888, + 0.019278574734926224, + -0.07939697802066803, + -0.06904678046703339, + -0.11820045858621597, + -0.04079372063279152, + 0.01951575092971325, + 0.027557343244552612, + 0.05343838781118393, + -0.04694453999400139, + -0.11140821874141693, + -0.058010268956422806, + -0.0024943705648183823, + -0.008112460374832153, + 0.039736755192279816, + 0.12871113419532776, + 0.034221500158309937, + 0.024033715948462486, + -0.030088838189840317 + ], + "number-square-five-bold||5,numbers,numerals,digits,mathematics,arithmetic,calculator": [ + -0.013963226228952408, + 0.006261041853576899, + 0.006380172912031412, + -0.00901737529784441, + -0.0643283799290657, + 0.02918202057480812, + 0.0294361412525177, + -0.016620662063360214, + -0.01481354795396328, + -0.03447061777114868, + 0.018900465220212936, + 0.05305210500955582, + 0.06441590189933777, + -0.030165769159793854, + -0.06688004732131958, + -0.007543977815657854, + -0.057011332362890244, + -0.008387248031795025, + -0.02298928238451481, + -0.030102664604783058, + 0.06215997412800789, + 0.01224147155880928, + -0.013539737090468407, + 0.05825994908809662, + 0.05475705862045288, + -0.004182157106697559, + 0.014166515320539474, + 0.01743272691965103, + 0.04037327691912651, + -0.06288767606019974, + -0.030792800709605217, + 0.028603311628103256, + 0.11148210614919662, + 0.010781482793390751, + -0.039512645453214645, + -0.004176100250333548, + -0.014494949020445347, + 0.053819652646780014, + -0.016784096136689186, + 0.10299968719482422, + -0.006437772884964943, + -0.1732221394777298, + 0.03436267748475075, + 0.04108409583568573, + -0.022023720666766167, + -0.025215335190296173, + -0.08975593745708466, + 0.015289072878658772, + -0.011109373532235622, + -0.004617853555828333, + -0.0586114265024662, + -0.037934646010398865, + -0.1536734700202942, + -0.03581710532307625, + 0.03929099440574646, + -0.048674020916223526, + 0.016775136813521385, + -0.026626015082001686, + 0.03052257001399994, + -0.010972926393151283, + 0.00730803282931447, + 0.05344735085964203, + 0.0011983956210315228, + -0.003134064842015505, + -0.04930124804377556, + 0.0725662112236023, + 0.0015701329102739692, + -0.07571057230234146, + -0.0028526647947728634, + 0.030277293175458908, + 0.042334411293268204, + 0.020227232947945595, + 0.0240708626806736, + 0.015401379205286503, + -0.05359913036227226, + -0.04790288582444191, + -0.017320869490504265, + -0.01454110536724329, + -0.008630359545350075, + -0.036619193851947784, + -0.09636861085891724, + -0.037014495581388474, + -0.04201719909906387, + 0.02144148200750351, + -0.01838143728673458, + 0.03656165674328804, + -0.008110512979328632, + 0.020539075136184692, + -0.017986459657549858, + -0.110094353556633, + -0.051214393228292465, + -0.04104692116379738, + 0.010659168474376202, + 0.07113968580961227, + -0.10076691955327988, + 0.049666132777929306, + 0.06717947125434875, + 0.011281674727797508, + -0.06676676869392395, + 0.04571331664919853, + 0.048475008457899094, + 0.023630261421203613, + -0.010371234267950058, + -0.012558434158563614, + -0.011181394569575787, + -0.030453624203801155, + 0.10354652255773544, + -0.0173015296459198, + 0.01771160587668419, + -0.034492503851652145, + -0.03540791571140289, + -0.07595635950565338, + -0.03815735504031181, + -0.011964465491473675, + 0.0070592621341347694, + -0.05905827507376671, + -0.02795761451125145, + -0.004800019785761833, + 0.12347204238176346, + 0.022701596841216087, + 0.05723840370774269, + 0.0012894980609416962, + 0.015621080063283443, + -0.031483832746744156, + -0.08651361614465714, + 0.04531310126185417, + -0.034416165202856064, + -1.975332665874435e-33, + -0.0030567010398954153, + 0.01620323583483696, + 0.023550955578684807, + 0.17894180119037628, + -0.011867082677781582, + -0.08022849261760712, + -0.04390323534607887, + -0.055658482015132904, + -0.0023744143545627594, + 0.09422901272773743, + 0.0620453879237175, + 0.10421638935804367, + -0.03234092891216278, + 0.05526658892631531, + 0.15374180674552917, + 0.02008829265832901, + 0.05689385160803795, + -0.0035828743129968643, + -0.0069772242568433285, + 0.006954201031476259, + 0.01901920698583126, + 0.04006047546863556, + -0.06555429100990295, + -0.005548783112317324, + 0.07496485859155655, + 0.07878109812736511, + 0.03714483231306076, + -0.020252441987395287, + 0.052504826337099075, + 0.05309557914733887, + 0.0465177521109581, + 0.03363259136676788, + 0.03126196935772896, + -0.05963480845093727, + 0.08064036816358566, + 0.006089598406106234, + 0.05001768469810486, + 0.03283950313925743, + 0.08158887177705765, + -0.041025176644325256, + -0.08760020136833191, + -0.05279405042529106, + -0.011446955613791943, + 0.04023237153887749, + 0.07517099380493164, + 0.0838264673948288, + 0.019282111898064613, + 0.023709038272500038, + 0.08074723184108734, + -0.028026551008224487, + -0.08209699392318726, + -0.009402669966220856, + 0.030563564971089363, + 0.01307601761072874, + 0.04701070487499237, + -0.05250319093465805, + -0.029342299327254295, + 0.08287153393030167, + -0.00570431025698781, + 0.05446122959256172, + 0.02633681334555149, + 0.05634034425020218, + 0.036646317690610886, + -0.10381011664867401, + -0.09395898133516312, + 0.07819890975952148, + -0.08128972351551056, + -0.04351881518959999, + 0.0588705874979496, + 0.04368871450424194, + -0.07491937279701233, + 0.04986574873328209, + 0.0420672744512558, + 0.041143130511045456, + 0.03040548786520958, + -0.011231554672122002, + 0.05300460010766983, + -0.054470695555210114, + -0.047890182584524155, + -0.022412512451410294, + -0.026782210916280746, + 0.005630129482597113, + -0.055760569870471954, + 0.029357779771089554, + 0.04025055095553398, + -0.0018407766474410892, + 0.008410999551415443, + -0.07018671929836273, + -0.005837320350110531, + -0.034679435193538666, + -0.030297094956040382, + -0.04037431254982948, + 0.05207646265625954, + -0.05903341993689537, + -0.13021878898143768, + -1.4128431906426158e-33, + -0.049029625952243805, + 0.018205484375357628, + -0.09479944407939911, + 0.0624820701777935, + -0.05303531512618065, + 0.013024949468672276, + 0.028272368013858795, + -0.05654413625597954, + -0.004160465206950903, + -0.009812913835048676, + 0.013266892172396183, + 0.00508094672113657, + -0.047094203531742096, + -0.040992602705955505, + -0.06978793442249298, + 0.045712243765592575, + 0.00740866269916296, + 0.009404406882822514, + -0.07708238810300827, + -0.024002011865377426, + -0.04886450245976448, + 0.014566938392817974, + -0.03147619962692261, + 0.009517082944512367, + 0.03301664814352989, + 0.0882621631026268, + -0.0002701336343307048, + -0.07693313807249069, + 0.0312628373503685, + 0.0024450519122183323, + -0.010163442231714725, + -0.09727752208709717, + 0.11021966487169266, + 0.004662498831748962, + -0.137973353266716, + -0.04438063129782677, + 0.12034597992897034, + -0.01876922696828842, + -0.0468183234333992, + -0.04125332832336426, + 0.010299338027834892, + -0.02133401483297348, + 0.11829393357038498, + 0.07027622312307358, + -0.030203120782971382, + -0.0276188924908638, + -9.268079338653479e-06, + -0.04690544307231903, + -0.01773592084646225, + 0.01808806136250496, + 0.045555055141448975, + -0.030183488503098488, + -0.07691441476345062, + 0.03679420053958893, + -0.06823026388883591, + 0.007635634858161211, + 0.03680520877242088, + 0.08720123022794724, + -0.018946554511785507, + 0.1200784221291542, + -0.04831814393401146, + 0.032834652811288834, + 0.04346288740634918, + 0.030696116387844086, + -0.03636220842599869, + -0.028817346319556236, + 0.012814466841518879, + 0.030827680602669716, + -0.033035989850759506, + -0.03920222818851471, + -0.05189088359475136, + 0.0035998423118144274, + 0.020943518728017807, + 0.04376921430230141, + -0.06590984761714935, + -0.02542434073984623, + -0.00943268183618784, + 0.07074198871850967, + -0.023130202665925026, + 0.07726604491472244, + 0.05406894534826279, + 0.007499943021684885, + -0.03773011267185211, + -0.003015552181750536, + -0.09839166700839996, + 0.0003292948240414262, + 0.08931749314069748, + 0.05449627339839935, + 0.0025755150709301233, + -0.051337987184524536, + -0.03638870269060135, + 0.0659419372677803, + -0.05906989425420761, + -0.040249064564704895, + -0.04190219193696976, + -2.315147717979471e-08, + 0.022651856765151024, + -0.0007599603268317878, + -0.016104411333799362, + -0.06235330179333687, + 0.012843518517911434, + -0.02361370250582695, + -0.03547149896621704, + -0.05336659401655197, + -0.006304061505943537, + -0.0020047423895448446, + 0.018464209511876106, + 0.016010738909244537, + -0.11280377209186554, + -0.025844058021903038, + 0.014485460706055164, + -0.006958332844078541, + 0.025802964344620705, + 0.009878394193947315, + 0.008543101139366627, + -0.0303848534822464, + -0.03317693993449211, + 0.010376176796853542, + 0.055073101073503494, + 0.011316334828734398, + -0.007451803423464298, + 0.003678628010675311, + -0.0538565032184124, + 0.057658758014440536, + 0.03949189931154251, + 0.054424792528152466, + 0.033199142664670944, + 0.0660175234079361, + -0.051742784678936005, + -0.03938726708292961, + -0.09115292131900787, + -0.004774848464876413, + -0.0415533110499382, + 0.01290197018533945, + 0.007794573903083801, + 0.026924097910523415, + -0.011751554906368256, + -0.0897969976067543, + -0.039533376693725586, + 0.010041485540568829, + 0.06898219138383865, + -0.01347297616302967, + 0.024462882429361343, + -0.07583854347467422, + -0.033036693930625916, + -0.11668308079242706, + -0.0880632996559143, + 0.04398798197507858, + 0.01819431036710739, + 0.07369841635227203, + -0.030122464522719383, + -0.06267042458057404, + -0.04678214713931084, + -0.0013480015331879258, + -0.008324538357555866, + 0.029055973514914513, + 0.08934420347213745, + 0.0381600484251976, + 0.018602561205625534, + 0.005053679924458265 + ], + "number-square-four-bold||*updated*,4,numbers,numerals,digits,mathematics,arithmetic,calculator": [ + 0.02533070370554924, + 0.022520465776324272, + -0.03559931367635727, + -0.003448139177635312, + -0.09273021668195724, + 0.039161425083875656, + 0.026808712631464005, + -0.011068702675402164, + -0.005764087196439505, + -0.04971706122159958, + 0.011051280423998833, + 0.04251154884696007, + 0.06715745478868484, + -0.05109500139951706, + -0.0652938038110733, + -0.01138395071029663, + -0.054240304976701736, + 0.013591897673904896, + -0.01564810238778591, + -0.013016448356211185, + 0.01052633672952652, + 0.02313762530684471, + -0.002330198884010315, + 0.0680752620100975, + 0.05936938524246216, + -0.003631332889199257, + 0.010338984429836273, + -0.017944345250725746, + 0.05732017382979393, + -0.05043827369809151, + -0.013770976103842258, + 0.031775690615177155, + 0.15705320239067078, + -2.5455641662119888e-05, + -0.009304879233241081, + -0.006478194147348404, + -2.8984401069465093e-05, + 0.04642845317721367, + -0.02054084837436676, + 0.13133101165294647, + -0.021244626492261887, + -0.15821623802185059, + 0.0673501044511795, + 0.0637103021144867, + -0.03938170522451401, + -0.02328164130449295, + -0.06314961612224579, + 0.00010027949610957876, + -0.0036598634906113148, + -0.01289406418800354, + -0.04902305081486702, + -0.022153431549668312, + -0.1644066721200943, + -0.027961991727352142, + 0.009925298392772675, + -0.056639619171619415, + 0.004259797744452953, + -0.0225068386644125, + 0.030554993078112602, + 0.014540019445121288, + 0.06039683520793915, + 0.052726324647665024, + 0.04771513491868973, + -0.019439948722720146, + -0.042657509446144104, + 0.06432609260082245, + 0.0001699964632280171, + -0.07691945135593414, + 0.004039477091282606, + 0.013753250241279602, + 0.07431750744581223, + 0.07870513200759888, + 0.010225084610283375, + -0.001227748696692288, + -0.03947676718235016, + -0.06980830430984497, + -0.008494165726006031, + 0.011059948243200779, + -0.00467517226934433, + -0.04069076105952263, + -0.027048412710428238, + -0.05247008800506592, + -0.026257745921611786, + -0.027195725589990616, + -0.0014771658461540937, + 0.027708612382411957, + -0.009748359210789204, + -0.025655200704932213, + -0.019879234954714775, + -0.0724990963935852, + -0.027329448610544205, + -0.04299996420741081, + 0.007940826937556267, + 0.05162842199206352, + -0.11070047318935394, + 0.06307332217693329, + 0.08326316624879837, + 0.009578868746757507, + -0.02006315253674984, + 0.07960750162601471, + 0.03275417163968086, + 0.04970690235495567, + -0.04817931726574898, + 0.012347429059445858, + 0.008984615094959736, + -0.0018402531277388334, + 0.10463272780179977, + 0.017505167052149773, + 0.0009653981542214751, + -0.0035683659370988607, + -0.003998423460870981, + -0.12716582417488098, + -0.03784354031085968, + -0.0050147585570812225, + -0.008854450657963753, + -0.04744260013103485, + -0.010258127935230732, + -0.03199496492743492, + 0.07070817798376083, + 0.03439166024327278, + 0.06906957179307938, + 0.0009898997377604246, + 0.04285714402794838, + -0.03269188106060028, + -0.04256051778793335, + 0.04849596694111824, + -0.042804867029190063, + -1.7619824615811052e-33, + 0.0063603599555790424, + 0.05969960242509842, + 0.03943305462598801, + 0.12246108800172806, + 0.013051819056272507, + -0.07368399202823639, + -0.03696480020880699, + -0.05793479457497597, + -0.011246991343796253, + 0.08284393697977066, + 0.050087615847587585, + 0.09064542502164841, + -0.02309424988925457, + 0.06686682254076004, + 0.1287851482629776, + -0.037958305329084396, + 0.08050540089607239, + 0.005731817334890366, + 0.019971398636698723, + -0.0035444966051727533, + 0.001229162560775876, + 0.02987579070031643, + -0.06455004960298538, + 0.01022979337722063, + 0.062461405992507935, + 0.07655050605535507, + 0.04350315034389496, + -0.014718719758093357, + 0.03601884841918945, + 0.051697276532649994, + 0.06187009811401367, + 0.06192890554666519, + -0.014864475466310978, + -0.06623902171850204, + 0.05925719812512398, + -0.03812022879719734, + -0.0028588983695954084, + -0.020503146573901176, + 0.09496709704399109, + -0.052656643092632294, + -0.11354820430278778, + -0.031903885304927826, + -0.009558634832501411, + -0.020274238660931587, + 0.08938468992710114, + 0.05512687563896179, + 0.017642246559262276, + 0.020658133551478386, + 0.10014878958463669, + -0.03794735297560692, + -0.08003245294094086, + 0.012052522040903568, + -0.00042635214049369097, + -0.009156577289104462, + 0.009432181715965271, + -0.09256919473409653, + -0.03813861310482025, + 0.07026608288288116, + 0.008873393759131432, + 0.02915554866194725, + 0.04447295889258385, + 0.033695872873067856, + -0.016543738543987274, + -0.07691074162721634, + -0.09332557022571564, + 0.04863017052412033, + -0.031323567032814026, + -0.047283098101615906, + 0.03244639188051224, + 0.035967301577329636, + -0.05852546542882919, + 0.005773243028670549, + 0.02561063878238201, + 0.01477781031280756, + 0.016056442633271217, + -0.017689233645796776, + 0.0297533068805933, + -0.040621642023324966, + -0.0242827907204628, + -0.06855534762144089, + -0.012955469079315662, + 0.03601805865764618, + -0.0552191436290741, + 0.05646727234125137, + 0.06846620887517929, + -0.01169405598193407, + 0.00821350235491991, + -0.02956250123679638, + 0.006949824281036854, + 0.0016994498437270522, + -0.06519029289484024, + -0.026329779997467995, + -0.024172725155949593, + -0.06311606615781784, + -0.10689926147460938, + -1.738655327202014e-33, + -0.035547543317079544, + 0.06875621527433395, + -0.11034728586673737, + 0.03386790305376053, + -0.07490117102861404, + 0.0039579859003424644, + 0.016746342182159424, + -0.0038143745623528957, + 0.023223547264933586, + -0.029807817190885544, + 0.04309597238898277, + -0.020100990310311317, + -0.053811486810445786, + -0.04959320276975632, + -0.042954567819833755, + 0.042703013867139816, + -0.030954062938690186, + -0.007131397258490324, + -0.11473819613456726, + -0.011592927388846874, + -0.05977470800280571, + 0.03972833976149559, + -0.04819592460989952, + 0.025518646463751793, + 0.03197059780359268, + 0.02033102884888649, + 0.014732412993907928, + -0.061496999114751816, + 0.025939123705029488, + 0.03039976768195629, + -0.03974749147891998, + -0.11761709302663803, + 0.08008943498134613, + 0.0382998026907444, + -0.15613935887813568, + -0.043922241777181625, + 0.15466183423995972, + -0.05823880806565285, + -0.022633634507656097, + -0.02059311792254448, + 0.037889257073402405, + -0.019180120900273323, + 0.11568285524845123, + 0.06655433028936386, + 0.018083889037370682, + -0.012248527258634567, + -0.008829276077449322, + 0.0032554541248828173, + -0.03828723356127739, + 0.006933458149433136, + 0.045907821506261826, + -0.03611689433455467, + -0.06497254222631454, + 0.02309718355536461, + -0.054284967482089996, + 0.029163580387830734, + 0.01758902333676815, + 0.07189866155385971, + -0.05430585518479347, + 0.08232659846544266, + -0.052758216857910156, + 0.02755458652973175, + 0.0719102993607521, + 0.02645624615252018, + -0.03604654222726822, + -0.058464415371418, + -0.038052041083574295, + -0.016636569052934647, + -0.016685890033841133, + -0.040733955800533295, + -0.0050322008319199085, + 0.005076967645436525, + -0.037087272852659225, + 0.053656380623579025, + -0.04769449308514595, + -0.058661043643951416, + -0.041033852845430374, + 0.0395720899105072, + -0.04649653658270836, + 0.06182963401079178, + 0.030027950182557106, + 0.023490317165851593, + 0.02070889063179493, + -0.04455100744962692, + -0.09228677302598953, + 0.0026999053079634905, + 0.10794544219970703, + 0.05640380457043648, + -0.0009881731821224093, + -0.08219625055789948, + -0.040158309042453766, + 0.052996184676885605, + -0.037605881690979004, + -0.027962112799286842, + -0.046316973865032196, + -2.5246039925264085e-08, + 0.02107991836965084, + 0.01836398057639599, + -0.01909228041768074, + -0.05310676991939545, + 0.011758937500417233, + -0.02783183939754963, + -0.033227287232875824, + -0.03587682545185089, + -0.040920328348875046, + -0.04722684249281883, + 0.011320637539029121, + 0.03314873203635216, + -0.10759015381336212, + -0.06271595507860184, + 0.053497374057769775, + 0.0004448578110896051, + 0.00968004111200571, + -0.024017101153731346, + -0.021381424739956856, + -0.05932242050766945, + -0.0150739885866642, + 0.03295554220676422, + 0.05536529794335365, + 0.02763456664979458, + -0.01353845838457346, + 0.011507493443787098, + -0.051582805812358856, + 0.0644572302699089, + 0.03734392672777176, + 0.0480898953974247, + 0.08688090741634369, + 0.04741614684462547, + -0.026596881449222565, + -0.05412808433175087, + -0.09661196172237396, + -0.0385555736720562, + -0.023879043757915497, + 0.028967052698135376, + 0.04133621230721474, + 0.029468271881341934, + -0.0030982703901827335, + -0.07904127240180969, + -0.04358787462115288, + 0.03367098420858383, + 0.047336772084236145, + 0.007857166230678558, + -0.019289817661046982, + -0.08912969380617142, + -0.061462726444005966, + -0.09795668721199036, + -0.04803572967648506, + 0.039410896599292755, + 0.011439262889325619, + 0.09677305817604065, + -0.026022205129265785, + -0.053530775010585785, + -0.04967191442847252, + 0.029782289639115334, + -0.014711770229041576, + 0.034743428230285645, + 0.1073535904288292, + 0.01831243187189102, + 0.027643725275993347, + -0.00289083831012249 + ], + "number-square-nine-bold||9,numbers,numerals,digits,mathematics,arithmetic,calculator": [ + -0.005006738472729921, + 0.010378822684288025, + -0.01550707034766674, + 0.004606443922966719, + -0.05497979745268822, + 0.06663454324007034, + 0.030066125094890594, + 0.042989447712898254, + -0.02793837897479534, + -0.09004127234220505, + 0.030045943334698677, + 0.03892534226179123, + 0.056831687688827515, + -0.030476907268166542, + -0.06016382575035095, + -0.05442759394645691, + -0.05699678510427475, + -0.0039925589226186275, + 0.0012029563076794147, + -0.005686983000487089, + 0.045777611434459686, + 0.04018194600939751, + 0.01888476312160492, + 0.03431559354066849, + 0.06957102566957474, + -0.011608955450356007, + 0.01268831081688404, + 0.011373073793947697, + 0.05808800086379051, + -0.051319144666194916, + -0.011594119481742382, + 0.008575735613703728, + 0.12173978239297867, + 0.04902104660868645, + -0.009858588688075542, + -0.015321741811931133, + -0.015571186318993568, + 0.06023542955517769, + -0.05351393297314644, + 0.10298722982406616, + -0.010849920101463795, + -0.1541043221950531, + 0.0760064646601677, + 0.040987905114889145, + -0.02754845842719078, + -0.01961199939250946, + -0.026058856397867203, + 0.019566746428608894, + -0.030403373762965202, + 0.009283110499382019, + -0.05493202432990074, + -0.048638053238391876, + -0.13852953910827637, + -0.000818893255200237, + 0.0631764754652977, + -0.056125231087207794, + 0.016485925763845444, + -0.037061940878629684, + 0.0064117517322301865, + -0.01859348826110363, + 0.009872343391180038, + 0.06292220950126648, + 0.03401734679937363, + -0.021682921797037125, + -0.02807609923183918, + 0.06154773384332657, + -0.004624374210834503, + -0.07208778709173203, + 0.0003115161380264908, + 0.023730764165520668, + 0.10248154401779175, + 0.06042823567986488, + -0.022643880918622017, + -0.002804333344101906, + -0.05345064401626587, + -0.030280791223049164, + -0.006125804968178272, + 0.003051677718758583, + -0.03788187354803085, + -0.038218241184949875, + -0.049025703221559525, + -0.02995734103024006, + -0.01747281104326248, + 0.022551756352186203, + -0.004828286822885275, + 0.01315056998282671, + -0.0063394890166819096, + 0.019335685297846794, + -0.04101242125034332, + -0.08036193996667862, + -0.058151088654994965, + -0.02131236530840397, + 0.03193610534071922, + 0.05428076535463333, + -0.09919514507055283, + 0.028270263224840164, + 0.07255180180072784, + 0.0250295028090477, + -0.06498309224843979, + 0.06536094844341278, + 0.043192457407712936, + 0.04916128143668175, + -0.025101253762841225, + 0.01943420059978962, + 0.007341162301599979, + 0.003081028815358877, + 0.08804644644260406, + 0.006812590174376965, + -0.006458464544266462, + -0.028076402842998505, + 0.004152302630245686, + -0.07103519886732101, + -0.03251764923334122, + -0.014199319295585155, + 0.0015227632829919457, + -0.07662498950958252, + -0.01691635511815548, + -0.01413876935839653, + 0.11212286353111267, + 0.04568236693739891, + 0.02821391262114048, + -0.0017550259362906218, + 0.024403998628258705, + -0.03734534606337547, + -0.04612019285559654, + 0.07486268132925034, + -0.037526994943618774, + -1.7166405220630202e-33, + -0.004150461871176958, + 0.027107175439596176, + 0.016575906425714493, + 0.10636352002620697, + 0.01173960417509079, + -0.09322966635227203, + -0.08292493969202042, + -0.025240469723939896, + -0.019969576969742775, + 0.08942456543445587, + 0.03181258961558342, + 0.09091003239154816, + -0.030144117772579193, + 0.06716951727867126, + 0.15930211544036865, + -0.012981231324374676, + 0.07003004848957062, + 0.001961006550118327, + -0.002285345457494259, + -0.019846780225634575, + 0.0018078861758112907, + 0.024410786107182503, + -0.056762877851724625, + -0.008507931604981422, + 0.04158236086368561, + 0.044357821345329285, + 0.028648464009165764, + 0.029480289667844772, + 0.024867190048098564, + 0.02237219177186489, + 0.05685555934906006, + 0.0378832072019577, + 0.002501939656212926, + -0.05208011716604233, + 0.08581109344959259, + -0.005162024404853582, + 0.029668593779206276, + -0.004366310779005289, + 0.10015375167131424, + -0.05325555056333542, + -0.09612667560577393, + -0.038847893476486206, + 0.01136257778853178, + -0.028063053265213966, + 0.10633555054664612, + 0.05105116590857506, + 0.034558020532131195, + 0.007007686421275139, + 0.09677519649267197, + -0.04127487912774086, + -0.056220896542072296, + 0.003151773242279887, + 0.027632059529423714, + 0.026044519618153572, + 0.051174093037843704, + -0.10727846622467041, + -0.009398550726473331, + 0.08156856149435043, + 0.0016297665424644947, + 0.059931084513664246, + 0.03175319731235504, + -0.0021107203792780638, + 0.005689387675374746, + -0.1042291596531868, + -0.09251529723405838, + 0.059224702417850494, + -0.05937150865793228, + -0.029461370781064034, + 0.06827055662870407, + -0.0005237662699073553, + -0.07103519141674042, + 0.01456910464912653, + 0.02898562140762806, + 0.007858685217797756, + 0.03841608762741089, + 0.024242263287305832, + 0.03801587596535683, + -0.028685083612799644, + -0.004174703732132912, + -0.05301119014620781, + 0.01637561060488224, + 0.037930261343717575, + -0.08700021356344223, + 0.04029564559459686, + 0.04128304123878479, + -0.005631096661090851, + -0.00277171703055501, + -0.05854141712188721, + -0.028051240369677544, + -0.01306859776377678, + -0.04920082539319992, + -0.020992472767829895, + -0.00033101876033470035, + -0.07187742739915848, + -0.113745778799057, + -1.2760008626920201e-33, + -0.07818295806646347, + 0.03995295241475105, + -0.11626878380775452, + 0.0305501576513052, + -0.06340818107128143, + 0.007005411200225353, + 0.019618788734078407, + -0.04597868025302887, + -0.03421216458082199, + -0.06532455235719681, + 0.011558633297681808, + -0.03270024061203003, + -0.03284457325935364, + -0.1050959900021553, + -0.057500194758176804, + 0.014703241176903248, + 0.0015519916778430343, + 0.027206560596823692, + -0.07532457262277603, + -0.03901791572570801, + -0.051971856504678726, + 0.02842916175723076, + -0.03504533693194389, + 0.004741305951029062, + -0.002997339004650712, + 0.025278374552726746, + 0.010595622472465038, + -0.02858295850455761, + 0.052199751138687134, + 0.03308939188718796, + -0.011834784410893917, + -0.09682061523199081, + 0.05507984757423401, + 0.04792416840791702, + -0.15581218898296356, + -0.04729278385639191, + 0.11938881874084473, + -0.024865999817848206, + -0.004830488003790379, + -0.04537106677889824, + 0.067667156457901, + -0.03839537873864174, + 0.0966782346367836, + 0.06001891568303108, + -0.019387975335121155, + 0.018729714676737785, + 0.0031798183917999268, + -0.04266190156340599, + -0.04276908189058304, + 0.03542704880237579, + 0.046109069138765335, + -0.03722820058465004, + -0.04227118566632271, + 0.0370974987745285, + -0.05348582565784454, + 0.040196143090724945, + 0.03366518393158913, + 0.05173361673951149, + -0.0006426082691177726, + 0.09626342356204987, + -0.0426783487200737, + 0.05958784744143486, + 0.018900012597441673, + 0.03885103389620781, + -0.07219968736171722, + -0.05078946799039841, + -0.003268382279202342, + 0.041109349578619, + -0.02097484841942787, + -0.06447967141866684, + -0.026418155059218407, + 0.016142893582582474, + 0.010320727713406086, + 0.05554240196943283, + -0.06203659996390343, + -0.04661072418093681, + -0.01475160289555788, + 0.07501791417598724, + -0.014363766647875309, + 0.07145389169454575, + 0.051875561475753784, + -0.004484562203288078, + -0.01153334230184555, + -0.018036598339676857, + -0.05044463649392128, + 0.020192397758364677, + 0.087325818836689, + 0.044042620807886124, + 0.018298020586371422, + -0.049950011074543, + -0.01216856949031353, + 0.08002552390098572, + -0.04796671122312546, + -0.04111647233366966, + -0.012182187288999557, + -2.2816779576828594e-08, + 0.021086910739541054, + -0.0254975613206625, + 0.016400905326008797, + -0.08214611560106277, + 0.020513514056801796, + -0.04558862745761871, + -0.009042052552103996, + -0.0395343154668808, + -0.06536582857370377, + 0.0024218696635216475, + 0.03592377156019211, + 0.013151978142559528, + -0.13791199028491974, + -0.06805664300918579, + 0.027283821254968643, + -0.001137609826400876, + 0.055239614099264145, + 0.0029591438360512257, + 0.001606096513569355, + -0.02129376493394375, + -0.04137687385082245, + 0.012468245811760426, + 0.09059163182973862, + 0.026797374710440636, + -0.03237253800034523, + 0.04877680167555809, + -0.07887674123048782, + 0.0638563334941864, + 0.0567425899207592, + 0.06572656333446503, + 0.07696875929832458, + 0.060962479561567307, + -0.0486677847802639, + -0.06549129635095596, + -0.09100380539894104, + -0.06067293882369995, + -0.0099081015214324, + 0.01600104570388794, + 0.038222797214984894, + -0.007012782618403435, + 0.004144192207604647, + -0.07571933418512344, + -0.05334413796663284, + 0.017817238345742226, + 0.046964380890131, + 0.003545513842254877, + 0.0037677984219044447, + -0.05199975520372391, + -0.06528015434741974, + -0.11085380613803864, + -0.02879420667886734, + 0.04276113957166672, + 0.007174950558692217, + 0.07163254916667938, + -0.0542457178235054, + -0.09755819290876389, + -0.055258702486753464, + -0.0010243632132187486, + -0.04302338883280754, + 0.06405679881572723, + 0.12283709645271301, + 0.04948178678750992, + 0.01351074781268835, + -0.034529801458120346 + ], + "number-square-one-bold||1,numbers,numerals,digits,mathematics,arithmetic,calculator": [ + -0.007967866957187653, + 0.010344518348574638, + -0.04194645211100578, + 0.009299812838435173, + -0.07137827575206757, + 0.02924184501171112, + 0.04812795668840408, + 0.0016187182627618313, + 0.015033107250928879, + -0.0772445872426033, + 0.0008662359323352575, + 0.060123760253190994, + 0.1122690811753273, + -0.0229085311293602, + -0.08053496479988098, + -0.02700858749449253, + -0.048473458737134933, + -0.015849485993385315, + 0.028345227241516113, + 0.0022078482434153557, + 0.03582165017724037, + 0.02735891006886959, + -0.001216316712088883, + 0.0507708378136158, + 0.06914694607257843, + -0.041540347039699554, + 0.03475655987858772, + -0.004047729074954987, + 0.0701638013124466, + -0.07364857196807861, + -0.004604097455739975, + 0.01098143495619297, + 0.13250963389873505, + 0.044706784188747406, + -2.5663648557383567e-05, + -0.010609239339828491, + 0.02370287850499153, + 0.04569767415523529, + -0.03816080465912819, + 0.11294002830982208, + -0.004282761365175247, + -0.1612349897623062, + 0.08817052096128464, + 0.01913488283753395, + -0.035780761390924454, + -0.04911806061863899, + -0.07014789432287216, + 0.003944660536944866, + -0.01721743308007717, + -0.004025021567940712, + -0.04520116746425629, + -0.010058940388262272, + -0.12928660213947296, + -0.03141752630472183, + 0.041776642203330994, + -0.039608120918273926, + -0.012753845192492008, + -0.009419680573046207, + 0.01221377681940794, + -0.02818014658987522, + 0.026317596435546875, + 0.012407165952026844, + 0.03606998920440674, + -0.03459413722157478, + -0.021847959607839584, + 0.05194091796875, + -0.0032020709477365017, + -0.06098681688308716, + 0.02811763621866703, + 0.029566101729869843, + 0.06250958889722824, + 0.044070105999708176, + -0.004966216627508402, + 0.03848027437925339, + -0.04207204654812813, + -0.04087748005986214, + 0.006006750278174877, + 0.012279846705496311, + 0.010626247152686119, + -0.042024798691272736, + -0.07350168377161026, + -0.05830029770731926, + -0.031092695891857147, + -0.002573649864643812, + 0.007047448772937059, + 0.045662228018045425, + 0.004478686023503542, + 0.00030904056620784104, + 0.017752889543771744, + -0.07944528013467789, + -0.05295576900243759, + -0.026557130739092827, + 0.05324617400765419, + 0.07386201620101929, + -0.09231684356927872, + 0.030603494495153427, + 0.09154795855283737, + 0.027882540598511696, + -0.05292650684714317, + 0.06661222875118256, + 0.011930494569242, + 0.07188156992197037, + -0.009388121776282787, + 0.006463171448558569, + -0.01894429326057434, + -0.025202753022313118, + 0.09002840518951416, + -0.025957195088267326, + 0.01901477389037609, + -0.023546509444713593, + 0.010927287861704826, + -0.10049692541360855, + -0.020428728312253952, + -0.0193568617105484, + -0.0001227779284818098, + -0.07295376807451248, + -0.01799440197646618, + 0.003986990079283714, + 0.1296716034412384, + 0.028036465868353844, + 0.03469264879822731, + 0.010710930451750755, + 0.016814570873975754, + -0.022629236802458763, + -0.053979068994522095, + 0.02748570777475834, + -0.04877638444304466, + -1.9075722123762457e-33, + 0.0011330448323860765, + 0.04384776949882507, + 0.0014837649650871754, + 0.12845078110694885, + -0.0030959914438426495, + -0.06544617563486099, + -0.048274796456098557, + -0.03597741946578026, + -0.01599334552884102, + 0.09275762736797333, + 0.049035247415304184, + 0.09885713458061218, + -0.035405758768320084, + 0.08080705255270004, + 0.13184553384780884, + -0.014610967598855495, + 0.07353301346302032, + -0.014171057380735874, + 0.005495073273777962, + -0.01800411380827427, + -0.020233364775776863, + 0.030822137370705605, + -0.07586187869310379, + 0.003612454980611801, + 0.05095234513282776, + 0.047966111451387405, + 0.07034935802221298, + -0.003231364767998457, + 0.015662573277950287, + 0.043174080550670624, + 0.0585845410823822, + 0.0494636707007885, + -0.024368274956941605, + -0.0582568496465683, + 0.05312574654817581, + -0.004844031762331724, + 0.04023455083370209, + 0.024457374587655067, + 0.09662387520074844, + -0.05901998654007912, + -0.10199931263923645, + -0.024361474439501762, + 0.01753360964357853, + -0.023664530366659164, + 0.0769859030842781, + 0.05003700777888298, + 0.054074209183454514, + 0.052060939371585846, + 0.08254938572645187, + -0.029522109776735306, + -0.09284651279449463, + -0.007925912737846375, + 0.011418950743973255, + -0.009803780354559422, + 0.06636884808540344, + -0.09830433130264282, + -0.013999917544424534, + 0.0827341228723526, + 0.014770778827369213, + 0.052444905042648315, + 0.018154583871364594, + 0.029301373288035393, + 0.02436310425400734, + -0.0833229348063469, + -0.10619097948074341, + 0.05129806697368622, + -0.07645167410373688, + -0.03011116199195385, + 0.05467093363404274, + 0.01689828746020794, + -0.083482526242733, + 0.034559790045022964, + -0.008771145716309547, + -0.011187457479536533, + 0.011881478130817413, + 0.009443532675504684, + 0.02695724181830883, + -0.07007759809494019, + -0.055401187390089035, + -0.038144178688526154, + -0.030038177967071533, + 0.013195150531828403, + -0.06512432545423508, + 0.03792103752493858, + 0.04418179392814636, + 0.023824496194720268, + -0.007412638049572706, + -0.0793108195066452, + -0.005431358236819506, + -0.03596818074584007, + -0.03838435932993889, + -0.0064598070457577705, + 0.03184416517615318, + -0.0537494532763958, + -0.12581373751163483, + -7.016091857338888e-34, + -0.09364993125200272, + 0.03406750038266182, + -0.11265508830547333, + 0.04731999337673187, + -0.03555690497159958, + 0.011447861790657043, + 0.028744343668222427, + -0.06006899103522301, + 0.0069037084467709064, + -0.036002274602651596, + 0.03244723007082939, + -0.011725534684956074, + -0.06212131306529045, + -0.07549618184566498, + -0.06841374188661575, + 0.023313628509640694, + -9.966325887944549e-05, + 0.005334189161658287, + -0.10058873891830444, + -0.03229984641075134, + -0.07304055243730545, + 0.027991725131869316, + -0.034431759268045425, + 0.03204094246029854, + -0.02994387224316597, + 0.06062040105462074, + -0.003247897606343031, + -0.04369724914431572, + 0.03803321719169617, + 0.0668693259358406, + 0.0018651140853762627, + -0.09159460663795471, + 0.09015386551618576, + 0.02447546273469925, + -0.14882458746433258, + -0.03257599472999573, + 0.13395750522613525, + -0.05246277153491974, + 0.0044822474010288715, + -0.03097628615796566, + 0.014911400154232979, + -0.04055216908454895, + 0.08366988599300385, + 0.044141046702861786, + 0.0038851986173540354, + 0.003589124418795109, + 0.01537339948117733, + -0.05933590978384018, + -0.0277569517493248, + 0.013131066225469112, + 0.025894759222865105, + 0.01245766133069992, + -0.03715121001005173, + 0.021907664835453033, + -0.042982954531908035, + 0.0007905221427790821, + 0.002341019455343485, + 0.05536360666155815, + -0.018740763887763023, + 0.11475758254528046, + -0.02166558988392353, + 0.06779800355434418, + 0.031244805082678795, + 0.06188254430890083, + -0.05919123813509941, + -0.04852091521024704, + -0.009609067812561989, + 0.02814175747334957, + -0.033731501549482346, + -0.005867084953933954, + 0.024885667487978935, + 0.03894256800413132, + 0.025935335084795952, + 0.037102110683918, + -0.056562528014183044, + -0.03807265684008598, + -0.03208030015230179, + 0.018863746896386147, + -0.045798901468515396, + 0.06890703737735748, + 0.06518972665071487, + 0.04000868648290634, + -0.045816946774721146, + -0.013864666223526001, + -0.055648911744356155, + 0.011255505494773388, + 0.11722975224256516, + 0.02955213002860546, + -0.016030101105570793, + -0.05428067222237587, + -0.01775646023452282, + 0.0734534040093422, + -0.08153495192527771, + -0.027143292129039764, + -0.040880393236875534, + -2.3512106039902392e-08, + -0.016513340175151825, + 0.01066384743899107, + 0.0020682760514318943, + -0.09203648567199707, + 0.014817697927355766, + -0.025553161278367043, + -0.03343717381358147, + -0.036810602992773056, + -0.03883104398846626, + -0.029202867299318314, + 0.0057723079808056355, + 0.060586586594581604, + -0.10992052406072617, + -0.0370221808552742, + 0.05349517986178398, + -0.00016532956215087324, + 0.046863000839948654, + -0.01819237880408764, + -0.006122590508311987, + -0.011763964779675007, + 0.01841028779745102, + 0.01346191018819809, + 0.05524809658527374, + -0.03996776416897774, + -0.026149535551667213, + 0.002145977457985282, + -0.0707922875881195, + 0.07198581099510193, + 0.06484824419021606, + 0.03609246760606766, + 0.042938102036714554, + 0.0481019988656044, + -0.01871710643172264, + -0.04647989571094513, + -0.07883970439434052, + -0.018324388191103935, + -0.029902959242463112, + 0.02743794396519661, + 0.023207297548651695, + -0.007475866004824638, + 0.024926241487264633, + -0.051789745688438416, + -0.04542755335569382, + 0.016462570056319237, + 0.06198979914188385, + 0.01439451053738594, + 0.010483290068805218, + -0.08734864741563797, + -0.07464583963155746, + -0.12111347168684006, + -0.07260245829820633, + 0.04274837672710419, + 0.024382801726460457, + 0.07447843998670578, + -0.047487761825323105, + -0.05144546180963516, + -0.08753802627325058, + 0.03549911454319954, + -0.007772895973175764, + 0.04086989164352417, + 0.0861247330904007, + 0.04593518748879433, + 0.011211412027478218, + -0.012929192744195461 + ], + "number-square-seven-bold||7,numbers,numerals,digits,mathematics,arithmetic,calculator": [ + -0.01623227261006832, + 0.021549586206674576, + -0.026059972122311592, + 0.04028964787721634, + -0.08492123335599899, + 0.03456638380885124, + 0.03978970646858215, + 0.008679323829710484, + -0.02402409166097641, + -0.037549037486314774, + 0.007323686499148607, + 0.028206175193190575, + 0.05995505675673485, + -0.02104800008237362, + -0.06765664368867874, + -0.03929511085152626, + -0.06452509015798569, + -2.632457108120434e-05, + -0.0007543028914369643, + -0.017501922324299812, + 0.04302768036723137, + 0.029103189706802368, + 0.016687536612153053, + 0.09092015027999878, + 0.07144104689359665, + -0.008964652195572853, + 0.02925478108227253, + 0.036796942353248596, + 0.057743754237890244, + -0.07087798416614532, + -0.042876120656728745, + 0.01577853038907051, + 0.1434851437807083, + 0.039161503314971924, + -0.00017177150584757328, + -0.003952287137508392, + 0.020226242020726204, + 0.04450412839651108, + -0.03498862311244011, + 0.11013291031122208, + -0.022099578753113747, + -0.15707696974277496, + 0.06818738579750061, + 0.00889406818896532, + -0.070433609187603, + -0.018765060231089592, + -0.05323540046811104, + -0.008454293943941593, + 0.010579111985862255, + -0.0033653751015663147, + -0.05391167849302292, + -0.05210873484611511, + -0.1520107388496399, + -0.0031845159828662872, + 0.0588122196495533, + -0.044785354286432266, + -0.02721722424030304, + -0.0793895423412323, + 0.012038247659802437, + 0.0032045806292444468, + -0.004302415065467358, + 0.021687466651201248, + 0.023460624739527702, + -0.007987660355865955, + -0.06870221346616745, + 0.026479100808501244, + -0.041049983352422714, + -0.054526131600141525, + 0.008429481647908688, + 0.0037649597506970167, + 0.07343291491270065, + 0.04583920165896416, + 0.006241642404347658, + 0.033577676862478256, + -0.01726362109184265, + -0.029957883059978485, + -0.021166689693927765, + -0.012258531525731087, + -0.043811529874801636, + -0.07883711159229279, + -0.04901811480522156, + -0.04418409243226051, + -0.030919469892978668, + 0.024997463449835777, + -0.0010706710163503885, + 0.015755515545606613, + -0.012529346160590649, + 0.031852010637521744, + -0.02197473868727684, + -0.08014313131570816, + -0.02539885975420475, + -0.0039193518459796906, + 0.05953174829483032, + 0.03741471841931343, + -0.09269712120294571, + 0.04472235590219498, + 0.09931810945272446, + 0.01148558035492897, + -0.06608889997005463, + 0.0887434184551239, + 0.051406797021627426, + 0.06350277364253998, + -0.03399321436882019, + -0.005355817265808582, + 0.005531694740056992, + -0.004934452939778566, + 0.06666683405637741, + 0.0028689505998045206, + 0.006581527646631002, + -0.04608071967959404, + -0.009924252517521381, + -0.07591535896062851, + 0.009435785003006458, + -0.0033591194078326225, + -0.01309025939553976, + -0.06516944617033005, + -0.013616015203297138, + -0.005052714142948389, + 0.11176136136054993, + 0.046316299587488174, + 0.04763904958963394, + 0.006502223201096058, + 0.054328832775354385, + 0.0025551384314894676, + -0.05892039090394974, + 0.038388095796108246, + -0.028266169130802155, + -2.0382122464228192e-33, + 0.0174872986972332, + 0.004855378530919552, + 0.033110469579696655, + 0.13822124898433685, + -0.0318000502884388, + -0.08965335786342621, + -0.041441164910793304, + -0.053400859236717224, + 0.026239097118377686, + 0.06649350374937057, + 0.03741602227091789, + 0.08309198170900345, + -0.015603026375174522, + 0.05371618643403053, + 0.14807166159152985, + 0.004572461824864149, + 0.07613137364387512, + -0.02159469574689865, + -0.021868284791707993, + -0.0020208731293678284, + 0.0278882198035717, + 0.022472534328699112, + -0.07767070829868317, + 0.021566880866885185, + 0.0465712770819664, + 0.07066039741039276, + 0.02505343034863472, + 0.03315466269850731, + 0.036914944648742676, + 0.032919991761446, + 0.05554141104221344, + 0.04760422557592392, + 0.029213542118668556, + -0.02569376863539219, + 0.06559617817401886, + -0.030067691579461098, + 0.018140263855457306, + -0.0005306788953021169, + 0.09371021389961243, + -0.019755670800805092, + -0.09871885180473328, + -0.05107615143060684, + 0.018536372110247612, + -0.011131584644317627, + 0.07524184882640839, + 0.069701187312603, + 0.03733057901263237, + 0.037638913840055466, + 0.10436265170574188, + 0.003309578401967883, + -0.028563164174556732, + -0.012063496746122837, + 0.0037234448827803135, + 0.012075969949364662, + 0.060141656547784805, + -0.04990736395120621, + -0.011681267991662025, + 0.07602228969335556, + 0.02698897011578083, + 0.041737522929906845, + 0.026409871876239777, + 0.0037045644130557775, + 0.011858934536576271, + -0.10074993222951889, + -0.08691208064556122, + 0.08117443323135376, + -0.07796654850244522, + -0.02868715114891529, + 0.001783867133781314, + 0.006345787551254034, + -0.07830415666103363, + 0.044582583010196686, + 0.04266192018985748, + 0.026838891208171844, + 0.03868608549237251, + 0.0015254368772730231, + 0.022504711523652077, + -0.06419162452220917, + -0.043045636266469955, + -0.06150878220796585, + -0.036550551652908325, + 0.009422282688319683, + -0.08978207409381866, + 0.04386178031563759, + 0.029399165883660316, + -8.415792399318889e-05, + 0.001081980997696519, + -0.09674140810966492, + -0.024277325719594955, + -0.040074001997709274, + -0.07290047407150269, + -0.02058974839746952, + -0.010247933678328991, + -0.053018081933259964, + -0.1136569008231163, + -1.5271677304417605e-33, + -0.062043700367212296, + 0.051092226058244705, + -0.11048007756471634, + 0.049118295311927795, + -0.06166981905698776, + 0.013134400360286236, + 0.022092780098319054, + -0.027782928198575974, + -0.04654849320650101, + -0.06184470281004906, + 0.008889803662896156, + -0.0038296938873827457, + -0.034711580723524094, + -0.05784726142883301, + -0.06859534978866577, + 0.04887226223945618, + 0.0016905510565266013, + 0.007667982019484043, + -0.07396496087312698, + -0.0535016767680645, + -0.09003979712724686, + 0.005732631776481867, + -0.043713949620723724, + 0.031227635219693184, + 0.04068883880972862, + 0.025410162284970284, + -0.011970557272434235, + -0.07360406965017319, + 0.057881683111190796, + 0.05093052610754967, + 0.0017954583745449781, + -0.11606709659099579, + 0.08281589299440384, + 0.03632798790931702, + -0.17131991684436798, + -0.03425630182027817, + 0.10926657915115356, + -0.05413661152124405, + -0.030635705217719078, + -0.04982942342758179, + 0.016184702515602112, + -0.06259535253047943, + 0.10838935524225235, + 0.014879872091114521, + -0.006525862962007523, + -0.022651292383670807, + 0.03468139097094536, + -0.06979658454656601, + -0.0014805595856159925, + 0.03638660907745361, + 0.022677984088659286, + -0.017583539709448814, + -0.0485231950879097, + 0.00970121193677187, + -0.08803270757198334, + 0.02845236286520958, + 0.02716091461479664, + 0.07577048242092133, + 0.023948650807142258, + 0.09201206266880035, + 0.0023899883963167667, + 0.0072919223457574844, + 0.04238248988986015, + 0.03815328702330589, + -0.06379833817481995, + -0.044316284358501434, + -0.023766066879034042, + 0.06382099539041519, + -0.024759909138083458, + -0.07459904998540878, + -0.02138984389603138, + 0.0023649015929549932, + 0.016414662823081017, + 0.0625995621085167, + -0.05222346633672714, + -0.07843222469091415, + -0.012743724510073662, + 0.05572699010372162, + -0.05904689431190491, + 0.07627569884061813, + 0.043515387922525406, + -0.0023966883309185505, + -0.03866134583950043, + -0.024345776066184044, + -0.06462392956018448, + 0.06234283745288849, + 0.11115099489688873, + 0.02020212821662426, + 0.002114666858687997, + -0.04893292114138603, + -0.030875176191329956, + 0.07250048965215683, + -0.04048106074333191, + -0.031165339052677155, + -0.03371844440698624, + -2.259894493761294e-08, + 0.0062118289060890675, + -0.03996650502085686, + -0.0015220636269077659, + -0.08210891485214233, + 0.05419129878282547, + -0.020556045696139336, + -0.039180733263492584, + -0.04608358442783356, + -0.049231208860874176, + -0.02339034341275692, + 0.029215389862656593, + 0.030850069597363472, + -0.11175297200679779, + -0.03473583981394768, + -0.0027845208533108234, + 0.020673353224992752, + 0.05237448588013649, + -0.006202653981745243, + 0.003443124471232295, + -0.026031307876110077, + -0.00238971970975399, + -0.022978700697422028, + 0.06586050242185593, + 0.034736745059490204, + -0.008776490576565266, + 0.012110484763979912, + -0.08219633996486664, + 0.10366145521402359, + 0.03709966689348221, + 0.02545149438083172, + 0.053760554641485214, + 0.036278288811445236, + 0.0016608203295618296, + -0.056075260043144226, + -0.08817554265260696, + -0.001222619554027915, + -0.016811715438961983, + 0.004029574804008007, + 0.04021463915705681, + -0.0020111273042857647, + -0.0160599984228611, + -0.05496804043650627, + -0.045354653149843216, + 0.014883254654705524, + 0.05061759427189827, + 0.000974194728769362, + 0.027962105348706245, + -0.03805813565850258, + -0.03395870327949524, + -0.0988299548625946, + -0.02658255212008953, + 0.04765429347753525, + 0.027332549914717674, + 0.05551353469491005, + -0.009483679197728634, + -0.06570984423160553, + -0.04926573857665062, + 0.04007560387253761, + 0.014542518183588982, + 0.040224745869636536, + 0.11954547464847565, + 0.029111996293067932, + 0.009426110424101353, + 0.00025769940111786127 + ], + "number-square-six-bold||6,numbers,numerals,digits,mathematics,arithmetic,calculator": [ + 0.007914058864116669, + 0.01841222681105137, + -0.0520206056535244, + 0.013675516471266747, + -0.09269797056913376, + 0.058345213532447815, + 0.005471241660416126, + -0.004877012223005295, + -0.003185565583407879, + -0.048351407051086426, + 0.009641040116548538, + 0.06763535737991333, + 0.04908865690231323, + -0.08504319190979004, + -0.046371590346097946, + -0.011149696074426174, + -0.09069081395864487, + 0.01382297184318304, + -0.03064921125769615, + 0.03514565899968147, + 0.03153713792562485, + 0.027385210618376732, + 0.009058259427547455, + 0.04439205676317215, + 0.08690406382083893, + -0.0432913675904274, + 0.02344733662903309, + 0.027470320463180542, + 0.0809582993388176, + -0.03072868287563324, + -0.016153816133737564, + 0.05731738731265068, + 0.11513444781303406, + 0.03842920809984207, + 0.007616143673658371, + 0.012915034778416157, + 0.0017968061147257686, + 0.0600195936858654, + -0.022061606869101524, + 0.08902184665203094, + -0.02560584433376789, + -0.1681896597146988, + 0.07348403334617615, + 0.0037891878746449947, + -0.018077436834573746, + -0.02609461545944214, + -0.07969159632921219, + 0.036102548241615295, + 0.027442622929811478, + -0.014057747088372707, + -0.034265246242284775, + -0.05863625556230545, + -0.15965649485588074, + -0.018134552985429764, + 0.0525808110833168, + -0.02391001209616661, + -0.041140615940093994, + -0.04989674687385559, + 0.03651731088757515, + 0.00900979246944189, + -0.016460329294204712, + 0.04626907780766487, + 0.044018544256687164, + 0.013454736210405827, + -0.019238561391830444, + 0.039861615747213364, + -0.005533380433917046, + -0.05047343671321869, + 0.012288883328437805, + 0.0012854567030444741, + 0.025347715243697166, + 0.06000003591179848, + 0.0254628024995327, + 0.00503003504127264, + -0.05117814615368843, + -0.04424436017870903, + -0.03149167820811272, + -0.025280172005295753, + -0.011777997016906738, + -0.0712810680270195, + -0.07916316390037537, + -0.053926900029182434, + -0.05104943364858627, + 0.04512583091855049, + -0.01371345017105341, + 0.004578895401209593, + 0.01804257743060589, + 0.011882352642714977, + -0.04020977020263672, + -0.06596162170171738, + -0.014531990513205528, + -0.0160065945237875, + 0.023739954456686974, + 0.01948995143175125, + -0.12149786204099655, + 0.049601342529058456, + 0.08475121110677719, + 0.04232919216156006, + -0.027903949841856956, + 0.06578763574361801, + 0.05162538215517998, + 0.04267153516411781, + -0.02793961577117443, + -0.004285783041268587, + 0.03414212912321091, + -0.012864325195550919, + 0.06619308888912201, + 0.024725180119276047, + -0.006856274325400591, + -0.004692848771810532, + -0.027606891468167305, + -0.0720926895737648, + -0.017367232590913773, + -0.0016210946487262845, + 0.017643500119447708, + -0.05456703156232834, + -0.025534939020872116, + -0.011053157038986683, + 0.11507883667945862, + 0.029882382601499557, + 0.053168341517448425, + 0.03079548478126526, + 0.02257681079208851, + -0.014301775023341179, + -0.05221876502037048, + 0.0534026063978672, + 0.00749075785279274, + -2.189528858758372e-33, + -0.007483460009098053, + 0.03151075169444084, + 0.044825389981269836, + 0.12523046135902405, + -0.0003145195369143039, + -0.08639208227396011, + -0.04490756243467331, + -0.06078135222196579, + -0.04612179100513458, + 0.10865071415901184, + 0.04411206394433975, + 0.08973387628793716, + -0.026761112734675407, + 0.057617850601673126, + 0.19167396426200867, + 0.011420234106481075, + 0.08594608306884766, + -0.0051841288805007935, + -0.00958247110247612, + -0.0074185472913086414, + 0.011455640196800232, + 0.03008088655769825, + -0.042829010635614395, + -0.0058919768780469894, + 0.038607656955718994, + 0.06828998774290085, + 0.05352213233709335, + 0.011084884405136108, + 0.0031463110353797674, + 0.043717268854379654, + 0.057174984365701675, + 0.05399833619594574, + 0.030832314863801003, + -0.03448164835572243, + 0.04853680357336998, + -0.019346456974744797, + -0.004342191852629185, + 0.01178373210132122, + 0.08049284666776657, + -0.0566895417869091, + -0.06420929729938507, + -0.03179910406470299, + -0.04545906186103821, + 0.022317755967378616, + 0.07334320992231369, + 0.055987317115068436, + 0.057207196950912476, + -0.0019850279204547405, + 0.1120123416185379, + -0.015254596248269081, + -0.08146258443593979, + -0.03108690120279789, + 0.03519744426012039, + 0.007825920358300209, + 0.07559097558259964, + -0.0749940425157547, + -0.04048389568924904, + 0.09545767307281494, + 0.01438484713435173, + 0.06895992159843445, + 0.004721646662801504, + 0.02104640007019043, + 0.01805926486849785, + -0.053484268486499786, + -0.10383082926273346, + 0.03274431824684143, + -0.08465805649757385, + -0.021215932443737984, + 0.013313443399965763, + 0.034185539931058884, + -0.09403285384178162, + 0.03311513736844063, + 0.018763719126582146, + 0.033488139510154724, + 0.018100880086421967, + -0.010558634996414185, + 0.03410234674811363, + -0.06805872172117233, + -0.06464654952287674, + -0.06555988639593124, + 0.011819545179605484, + 0.0326574444770813, + -0.05496447905898094, + 0.03352683410048485, + 0.02931995689868927, + 0.006936344318091869, + -0.03282059356570244, + -0.07008759677410126, + -0.02013630047440529, + -0.003572651417925954, + -0.02938585914671421, + -0.04972977563738823, + -0.019743090495467186, + -0.05541105195879936, + -0.09612784534692764, + -1.5966811398906134e-33, + -0.0510907806456089, + 0.06969150900840759, + -0.08852238953113556, + 0.026923969388008118, + -0.028597529977560043, + 0.020431246608495712, + 0.0672507956624031, + -0.033312730491161346, + -0.01886030286550522, + -0.07036980241537094, + 0.004326317459344864, + 0.0037721446715295315, + -0.051185376942157745, + -0.07210756093263626, + -0.06988921016454697, + 0.030815307050943375, + 0.003867867635563016, + 0.012707698158919811, + -0.04581086337566376, + -0.04440339654684067, + -0.09935109317302704, + -0.00611641863361001, + -0.06918873637914658, + -0.0023454094771295786, + 0.016095884144306183, + 0.05210378021001816, + 0.006276197265833616, + -0.0901174321770668, + 0.018814755603671074, + -0.0024763154797255993, + 0.009450206533074379, + -0.08353224396705627, + 0.1044331043958664, + 0.017169218510389328, + -0.14133703708648682, + -0.029362840577960014, + 0.12047655880451202, + -0.04754288122057915, + -0.02265886962413788, + -0.02065989002585411, + 0.03804745897650719, + -0.03572652116417885, + 0.09559670090675354, + 0.05392243340611458, + -0.00165195157751441, + -0.04592865705490112, + 0.022831136360764503, + -0.04906967654824257, + -0.027202393859624863, + 0.037325069308280945, + 0.045735374093055725, + -0.06262688338756561, + -0.04404356703162193, + 0.05562523752450943, + -0.05588214471936226, + -0.020512085407972336, + 0.04229550063610077, + 0.028711173683404922, + -0.02991819567978382, + 0.10508633404970169, + -0.02003094181418419, + 0.0345395989716053, + 0.014831708744168282, + 0.015652434900403023, + -0.06630457937717438, + -0.031157076358795166, + 0.027702247723937035, + 0.05650801211595535, + -0.04003050550818443, + -0.03271568566560745, + -0.012252546846866608, + 0.02406529150903225, + -0.009965889155864716, + 0.009277020581066608, + -0.05337752774357796, + -0.034139376133680344, + -0.01966078393161297, + 0.08555824309587479, + -0.014670769684016705, + 0.07479991018772125, + 0.029669485986232758, + 0.032430682331323624, + -0.04504992067813873, + 0.023372268304228783, + -0.0788617804646492, + 0.027684703469276428, + 0.11422314494848251, + 0.029364416375756264, + -0.04639570042490959, + -0.04188915714621544, + -0.03488081321120262, + 0.03850215673446655, + -0.048799771815538406, + -0.05695807561278343, + -0.027135882526636124, + -2.32693917467941e-08, + 0.0321132056415081, + -0.04244804382324219, + -0.014908037148416042, + -0.08831819891929626, + 0.05658426135778427, + -0.02412516251206398, + -0.024180086329579353, + -0.03211502358317375, + -0.09003529697656631, + -0.02372059039771557, + 0.018983259797096252, + 0.03326595947146416, + -0.09329770505428314, + -0.09791918098926544, + 0.004241802729666233, + -0.025839217007160187, + 0.020482908934354782, + 0.015351984649896622, + -0.031167134642601013, + -0.02671717293560505, + -0.0023937192745506763, + 0.0064134495332837105, + 0.04664134979248047, + 0.0399308018386364, + 0.001356949214823544, + 0.02350313775241375, + -0.07399740070104599, + 0.0726551041007042, + 0.050921130925416946, + 0.05947231128811836, + 0.05878716707229614, + 0.024106940254569054, + -0.04919632524251938, + -0.041363466531038284, + -0.07485552132129669, + -0.005095150321722031, + -0.012324805371463299, + -0.026160579174757004, + -0.0011879762168973684, + -0.008068268187344074, + 0.008250836282968521, + -0.10164173692464828, + -0.044473566114902496, + -0.006413212511688471, + 0.05177346244454384, + 0.028036359697580338, + 0.008816643618047237, + -0.07371552288532257, + -0.06467022001743317, + -0.08327757567167282, + -0.073369599878788, + 0.026258934289216995, + 0.006369581446051598, + 0.07085586339235306, + -0.02793874777853489, + -0.05939039960503578, + -0.04489348083734512, + -0.0065841758623719215, + -0.018213646486401558, + 0.04632420837879181, + 0.1297636330127716, + 0.038906119763851166, + 0.041995055973529816, + -0.012283243238925934 + ], + "number-square-three-bold||3,numbers,numerals,digits,mathematics,arithmetic,calculator": [ + -0.021298030391335487, + -0.0014904708368703723, + -0.0691983699798584, + -0.022548597306013107, + -0.07836338877677917, + 0.035677384585142136, + 0.038116637617349625, + -0.01593569666147232, + 0.006773274391889572, + -0.06627874076366425, + 0.022020617499947548, + 0.025979412719607353, + 0.06498339027166367, + -0.030489321798086166, + -0.01954883709549904, + -0.032979462295770645, + -0.06667517870664597, + 0.01409183070063591, + 0.0180811770260334, + -0.0021796661894768476, + 0.04924296215176582, + 0.03742915391921997, + 0.028247512876987457, + 0.07163159549236298, + 0.053416017442941666, + -0.005790843162685633, + 0.029697930440306664, + 0.0025595652405172586, + 0.05275728181004524, + -0.046896159648895264, + -0.019686026498675346, + 0.011965911835432053, + 0.14287090301513672, + 0.01262054592370987, + 0.015453755855560303, + -0.01914765127003193, + -0.03098054975271225, + 0.04569544643163681, + -0.06105351820588112, + 0.1360727995634079, + -0.02947591431438923, + -0.14637993276119232, + 0.07017607241868973, + 0.03721030801534653, + -0.027439160272479057, + -0.020779233425855637, + -0.08938391506671906, + 0.004376540891826153, + 0.006112599279731512, + -0.020996348932385445, + -0.05154066160321236, + -0.04647241532802582, + -0.1417625993490219, + -0.009530903771519661, + 0.020092636346817017, + -0.04666275158524513, + 0.012163990177214146, + -0.004550895653665066, + 0.02036277949810028, + -0.005626716651022434, + 0.011760695837438107, + 0.0630539283156395, + 0.04204495623707771, + -0.029335420578718185, + 0.011129932478070259, + 0.05821095034480095, + -0.02456740476191044, + -0.06461023539304733, + -0.006638955790549517, + 0.03574887290596962, + 0.057235412299633026, + 0.03417959064245224, + -0.018761128187179565, + 0.0006058552535250783, + -0.030854277312755585, + -0.04343920201063156, + 0.010175235569477081, + 0.013327001594007015, + -0.050329744815826416, + -0.05270139127969742, + -0.05455046147108078, + -0.05000973865389824, + -0.02459712326526642, + 0.046212561428546906, + -0.019729049876332283, + 0.017443370074033737, + -0.04045996442437172, + -0.01074356958270073, + -0.044450633227825165, + -0.07190333306789398, + -0.06046295166015625, + -0.015696465969085693, + 0.009916729293763638, + 0.08748963475227356, + -0.08048706501722336, + 0.06266403943300247, + 0.08228643983602524, + 0.020042143762111664, + -0.03981611505150795, + 0.06661515682935715, + 0.053326498717069626, + 0.06419737637042999, + 0.0003432738012634218, + 0.008116035722196102, + 0.013329331763088703, + 0.015105627477169037, + 0.06875507533550262, + -0.012775810435414314, + -0.00930823665112257, + 0.01480858027935028, + -0.009761691093444824, + -0.1064419224858284, + -0.03395189344882965, + -0.02860364504158497, + -0.03038649633526802, + -0.0494299978017807, + -0.007153297308832407, + -0.03566800802946091, + 0.1541837751865387, + 0.03281686082482338, + 0.058903150260448456, + -0.0076620616018772125, + 0.015949644148349762, + -0.04312365502119064, + -0.04505058377981186, + 0.06679127365350723, + -0.029339879751205444, + -1.7440139284028326e-33, + -0.017059259116649628, + 0.02174694649875164, + -0.01883072964847088, + 0.14325818419456482, + 0.006263121031224728, + -0.0671776831150055, + -0.06005653366446495, + -0.05641525611281395, + -0.021846912801265717, + 0.08741363883018494, + 0.043459873646497726, + 0.10222795605659485, + -0.004081458784639835, + 0.06699757277965546, + 0.14805270731449127, + -0.005219156853854656, + 0.050631824880838394, + -0.020631641149520874, + -0.01806407980620861, + -0.0052176001481711864, + 0.02970784716308117, + 0.016142727807164192, + -0.0734575167298317, + 0.005316544324159622, + 0.04858659952878952, + 0.046518724411726, + 0.032366231083869934, + -0.0027983493637293577, + 0.025887999683618546, + 0.032993052154779434, + 0.10518456995487213, + 0.05243369936943054, + -0.007300896104425192, + -0.0574566088616848, + 0.046538397669792175, + -0.017193660140037537, + 0.010441014543175697, + -0.01858479529619217, + 0.07410135120153427, + -0.02951754629611969, + -0.09704405069351196, + -0.027644053101539612, + 0.02689775638282299, + -0.00482662208378315, + 0.07063189148902893, + 0.07975494861602783, + 0.052850477397441864, + 0.02821899577975273, + 0.09617804735898972, + -0.04125351086258888, + -0.04142182692885399, + -0.011683578602969646, + 0.02698611095547676, + 0.0058639803901314735, + 0.05074299871921539, + -0.08487874269485474, + -0.03454073891043663, + 0.09264828264713287, + 0.019390365108847618, + 0.0239851251244545, + 0.004210066981613636, + 0.025828488171100616, + 0.024355988949537277, + -0.08301912248134613, + -0.10326585173606873, + 0.06552145630121231, + -0.0885162428021431, + -0.013941739685833454, + 0.07590900361537933, + 0.024802573025226593, + -0.08503285050392151, + 0.023360446095466614, + 0.01527045201510191, + 0.015811976045370102, + 0.018821457400918007, + 0.006999604403972626, + 0.011538529768586159, + -0.0561356283724308, + -0.04106248542666435, + -0.06321896612644196, + -0.0012755399802699685, + 0.023539088666439056, + -0.036959532648324966, + 0.07258814573287964, + 0.035861045122146606, + -0.022147344425320625, + -0.011809258721768856, + -0.08089422434568405, + 0.002611001953482628, + -0.016807273030281067, + -0.04986617714166641, + 0.002460993593558669, + 0.01906423084437847, + -0.03951027989387512, + -0.12476351112127304, + -1.0868831070989072e-33, + -0.04627988860011101, + 0.04973893612623215, + -0.08829320967197418, + 0.023196715861558914, + -0.04806644469499588, + 0.02058263309299946, + 0.019796226173639297, + -0.020935725420713425, + 0.0033664663787931204, + -0.03428513556718826, + 0.0320146381855011, + -0.019403232261538506, + -0.04589216411113739, + -0.08511034399271011, + -0.052436280995607376, + 0.027547119185328484, + -0.007627430371940136, + -0.0102983508259058, + -0.09293172508478165, + -0.029366612434387207, + -0.03917190060019493, + 0.027983007952570915, + -0.051335521042346954, + 0.01633133552968502, + -0.02633829042315483, + 0.05241040885448456, + -0.012116214260458946, + -0.07723721861839294, + 0.012407311238348484, + 0.04795227572321892, + -0.00292781600728631, + -0.11131163686513901, + 0.09747540205717087, + 0.029780950397253036, + -0.1529705673456192, + -0.032165709882974625, + 0.13974861800670624, + -0.02784673124551773, + -0.012935182079672813, + -0.03824717178940773, + 0.026953449472784996, + -0.029095295816659927, + 0.09739453345537186, + 0.0544213242828846, + -0.006632750853896141, + 0.015349460765719414, + 0.0239548459649086, + -0.04810383543372154, + -0.02529369667172432, + 0.037475716322660446, + 0.01885705627501011, + -0.05141899734735489, + -0.02503320761024952, + 0.03875187411904335, + -0.0469229631125927, + 0.015073923394083977, + 0.024250375106930733, + 0.04642187058925629, + -0.005446720868349075, + 0.09403575956821442, + -0.032370585948228836, + 0.06555131077766418, + 0.04773765429854393, + 0.03556656092405319, + -0.05505204200744629, + -0.03805726766586304, + -0.017663773149251938, + 0.018015826120972633, + -0.002185423858463764, + -0.029430489987134933, + -0.033552948385477066, + 0.04298688471317291, + 0.004080021753907204, + 0.04606287553906441, + -0.06506478041410446, + -0.04551487788558006, + -0.034329015761613846, + 0.07868631184101105, + -0.04866299033164978, + 0.055270351469516754, + 0.07119297981262207, + 0.008156856521964073, + -0.019196612760424614, + 0.014121207408607006, + -0.07793118059635162, + 0.010557075031101704, + 0.08308900147676468, + 0.029746130108833313, + -0.020201724022626877, + -0.08900780975818634, + -0.03977462276816368, + 0.06831137090921402, + -0.050977788865566254, + -0.02498023957014084, + -0.018861735239624977, + -2.3017433292693568e-08, + 0.022796334698796272, + 0.019557496532797813, + -0.026032259687781334, + -0.06748558580875397, + 0.011126293800771236, + -0.01888914778828621, + -0.022124430164694786, + -0.022695543244481087, + -0.04659012332558632, + -0.0011874481569975615, + 0.020236337557435036, + 0.024093572050333023, + -0.11179035156965256, + -0.06678801774978638, + 0.0381108783185482, + -0.015091518871486187, + 0.06499585509300232, + -0.003670973004773259, + -0.013587374240159988, + -0.04473348334431648, + -0.01462557353079319, + 0.03952901437878609, + 0.0817200094461441, + 0.018487583845853806, + -0.00015155927394516766, + 0.04950264096260071, + -0.061333466321229935, + 0.05207451432943344, + 0.052855778485536575, + 0.06653699278831482, + 0.05133954435586929, + 0.05270065739750862, + -0.02833259291946888, + -0.0340406633913517, + -0.10639771074056625, + -0.03824086859822273, + -0.05810537561774254, + 0.0015084069455042481, + 0.02729755826294422, + -0.0073646921664476395, + 0.010814676992595196, + -0.05050600320100784, + -0.06744568794965744, + 0.012406816706061363, + 0.05413436517119408, + -0.01647665724158287, + -0.008188487961888313, + -0.06751842796802521, + -0.06733610481023788, + -0.11946973204612732, + -0.060055315494537354, + 0.026419369503855705, + 0.013412995263934135, + 0.11096589267253876, + -0.012840288691222668, + -0.0881681963801384, + -0.07446475327014923, + 0.02235022559762001, + -0.022244635969400406, + 0.045072972774505615, + 0.11855080723762512, + 0.011419340968132019, + 0.01296308171004057, + 0.0010472056455910206 + ], + "number-square-two-bold||2,numbers,numerals,digits,mathematics,arithmetic,calculator": [ + -0.007258136291056871, + 0.008503870107233524, + -0.03754517063498497, + -0.0010843953350558877, + -0.058711543679237366, + 0.02774444967508316, + 0.020903192460536957, + 0.013208447024226189, + -0.004366355482488871, + -0.07021410018205643, + 0.027401048690080643, + 0.03895622491836548, + 0.07598794996738434, + -0.04001100733876228, + -0.04584198072552681, + -0.00825753714889288, + -0.051332324743270874, + -0.01441443245857954, + 0.0303134024143219, + 0.004558509215712547, + 0.06894738227128983, + 0.037973713129758835, + 0.009167902171611786, + 0.0430326908826828, + 0.04479431360960007, + 0.0006791000487282872, + 0.010316516272723675, + 0.020201759412884712, + 0.07206602394580841, + -0.05087877810001373, + 0.0029273447580635548, + 0.010941690765321255, + 0.10759864747524261, + 0.028174158185720444, + -0.008113620802760124, + -0.04249768704175949, + 0.03309950977563858, + 0.06683647632598877, + -0.046732500195503235, + 0.08847425878047943, + -0.024938201531767845, + -0.162246435880661, + 0.06564294546842575, + 0.039514943957328796, + -0.014910964295268059, + -0.031020231544971466, + -0.05702853947877884, + 0.010322355665266514, + -0.0135422358289361, + -0.01335147861391306, + -0.05929519981145859, + -0.018793508410453796, + -0.13825029134750366, + -0.024737806990742683, + 0.043078918009996414, + -0.008162655867636204, + -0.006356687285006046, + -0.008103842847049236, + 0.016322216019034386, + -0.0048896195366978645, + 0.031595829874277115, + 0.04052111878991127, + 0.03114844486117363, + -0.026732061058282852, + -0.017925506457686424, + 0.05289246514439583, + -0.016893189400434494, + -0.057129886001348495, + 0.0027276461478322744, + 0.02767089195549488, + 0.061070285737514496, + 0.056456178426742554, + -0.004807078279554844, + 0.010720906779170036, + -0.02108578383922577, + -0.06879732012748718, + -0.025118296965956688, + 0.01559503935277462, + -0.024570461362600327, + -0.061651561409235, + -0.05635389685630798, + -0.085730642080307, + -0.01063800323754549, + 0.019773641601204872, + -0.02015037089586258, + 0.02776443026959896, + -0.009164850227534771, + -0.012896155938506126, + -0.02185627818107605, + -0.07794889807701111, + -0.027144774794578552, + -0.017348989844322205, + 0.06075260415673256, + 0.08624745160341263, + -0.07894736528396606, + 0.04044448956847191, + 0.08580879867076874, + 0.06037013232707977, + -0.042139433324337006, + 0.06212234869599342, + 0.010748296044766903, + 0.04408074915409088, + -0.01328895054757595, + -0.018794594332575798, + 0.019759338349103928, + -0.019267460331320763, + 0.07853956520557404, + -0.03454599529504776, + 0.04189217835664749, + -0.021257083863019943, + 0.029987728223204613, + -0.08461617678403854, + -0.03385147824883461, + -0.019950173795223236, + -0.0007527577108703554, + -0.0425555482506752, + -0.0045985272154212, + 0.010072131641209126, + 0.13365578651428223, + 0.01745445467531681, + 0.04575628787279129, + -0.011321460828185081, + -0.002365013351663947, + -0.03242163360118866, + -0.044529907405376434, + 0.04110679775476456, + -0.0491250716149807, + -2.1552161786578695e-33, + -0.007250567898154259, + 0.02574552223086357, + -0.009920959360897541, + 0.15732400119304657, + -0.0028549458365887403, + -0.07078584283590317, + -0.0730932205915451, + -0.0561319924890995, + -0.007470547221601009, + 0.09453677386045456, + 0.052779100835323334, + 0.0700344368815422, + -0.009237694554030895, + 0.08356194943189621, + 0.1763349175453186, + -0.03047979809343815, + 0.09080537408590317, + -0.017836766317486763, + 0.016120823100209236, + -0.01625567115843296, + 0.003926937934011221, + 0.04534820839762688, + -0.058327190577983856, + 0.013416433706879616, + 0.07111957669258118, + 0.05293253809213638, + 0.06734470278024673, + -0.015907449647784233, + 0.024857880547642708, + 0.0493616946041584, + 0.0815744698047638, + 0.033104799687862396, + -0.01413029432296753, + -0.02749084308743477, + 0.0491185262799263, + -0.041352707892656326, + 0.012041185982525349, + 0.011028203181922436, + 0.0848449245095253, + -0.07415147125720978, + -0.08902586251497269, + -0.015226516872644424, + 0.016752997413277626, + 0.00304022035561502, + 0.07065675407648087, + 0.021309664472937584, + 0.05309801921248436, + 0.03651075437664986, + 0.10544060170650482, + -0.04778248071670532, + -0.09212286025285721, + 0.004961973521858454, + 0.012264772318303585, + 0.028404133394360542, + 0.04810766503214836, + -0.07909929007291794, + -0.012027036398649216, + 0.08491964638233185, + 0.01507925521582365, + 0.04481314867734909, + 0.007059764117002487, + 0.042812541127204895, + 0.015569673851132393, + -0.0970146656036377, + -0.1127936914563179, + 0.04822574555873871, + -0.0776529386639595, + -0.04059485346078873, + 0.046866413205862045, + 0.021504539996385574, + -0.06710442155599594, + 0.028439640998840332, + 0.03976307436823845, + 0.007200918160378933, + 0.025747325271368027, + -0.0031127471011132, + 0.04721780866384506, + -0.0755092054605484, + -0.024663683027029037, + -0.04455578327178955, + -0.010082332417368889, + 0.019803792238235474, + -0.05465973541140556, + 0.06693816184997559, + 0.05099095404148102, + -0.015498798340559006, + -0.026746496558189392, + -0.06314500421285629, + -0.021535784006118774, + 0.0031035614665597677, + -0.0700984001159668, + -0.0037217261269688606, + -0.019213369116187096, + -0.06526807695627213, + -0.0851215273141861, + -1.0119435055240632e-33, + -0.07604239135980606, + 0.06357473880052567, + -0.09769968688488007, + 0.039011891931295395, + -0.05330047011375427, + 0.0034828204661607742, + 0.03897770494222641, + -0.04025883600115776, + 0.014818990603089333, + -0.03359149768948555, + 0.056492242962121964, + -0.010638558305799961, + -0.04744812101125717, + -0.06312225013971329, + -0.05709946155548096, + 0.011426122859120369, + -0.016411317512392998, + 0.009534638375043869, + -0.08489947766065598, + -0.05633163079619408, + -0.04335009679198265, + 0.04462656378746033, + -0.021282102912664413, + 0.00924909021705389, + 0.0053797634318470955, + 0.050222791731357574, + -0.0015358894597738981, + -0.05517924204468727, + 0.011514785699546337, + 0.050434213131666183, + -0.001291885506361723, + -0.09413071721792221, + 0.08910836279392242, + 0.02496134676039219, + -0.1561422049999237, + -0.05414276942610741, + 0.13254770636558533, + -0.050811368972063065, + -0.034132808446884155, + -0.033738262951374054, + 0.011693657375872135, + -0.03870297595858574, + 0.08582238852977753, + 0.05679193139076233, + -0.0019501999486237764, + -0.033838752657175064, + 0.03719568997621536, + -0.04980503395199776, + -0.04732002690434456, + -0.020800577476620674, + 0.021671053022146225, + -0.016221972182393074, + -0.054047808051109314, + 0.03613940626382828, + -0.06154296547174454, + -0.0049298726953566074, + -0.006097419653087854, + 0.07476147264242172, + -0.008915712125599384, + 0.094849593937397, + -0.01286379061639309, + 0.06193152815103531, + 0.01958523504436016, + 0.041870005428791046, + -0.05292225256562233, + -0.05865588039159775, + -0.013845697976648808, + 0.026539301499724388, + -0.03412782773375511, + -0.028582002967596054, + -0.019966313615441322, + 0.01675303466618061, + 0.003991284407675266, + 0.05396321043372154, + -0.09808117896318436, + -0.03943498060107231, + -0.04215048998594284, + 0.0421614907681942, + -0.03746376931667328, + 0.05472322553396225, + 0.059610653668642044, + 0.01608642376959324, + -0.008612939156591892, + -0.0042493101209402084, + -0.07469405233860016, + 0.0035561134573072195, + 0.0870729312300682, + 0.030119022354483604, + -0.028335653245449066, + -0.08880115300416946, + -0.02709057927131653, + 0.06076044589281082, + -0.061877693980932236, + -0.02627679705619812, + -0.03697942942380905, + -2.3877429811136608e-08, + -0.002737656934186816, + -0.0008082950953394175, + -0.00038468537968583405, + -0.07903643697500229, + 0.02153848670423031, + -0.026069587096571922, + -0.04309169575572014, + -0.013103660196065903, + -0.029266221448779106, + -0.02013619802892208, + -0.01583525724709034, + 0.054763950407505035, + -0.11369138211011887, + -0.056765928864479065, + 0.03271670266985893, + 0.000452880107332021, + 0.07677372545003891, + 0.001984992064535618, + -0.02548731118440628, + -0.04086439684033394, + 0.01357918232679367, + 0.007511116564273834, + 0.0584765300154686, + 0.011360653676092625, + -0.03631981834769249, + 0.016596907749772072, + -0.057148277759552, + 0.044987376779317856, + 0.07793021202087402, + 0.045191653072834015, + 0.056366950273513794, + 0.03609989210963249, + -0.03289560228586197, + -0.055462222546339035, + -0.08735451847314835, + -0.04967669025063515, + -0.05366995558142662, + 0.007319296710193157, + 0.028178250417113304, + -0.013009261339902878, + 0.014892663806676865, + -0.05950819328427315, + -0.04902692139148712, + 0.04663989692926407, + 0.08239581435918808, + -0.004231529776006937, + 0.02169969119131565, + -0.07520999014377594, + -0.06772894412279129, + -0.13053017854690552, + -0.050169602036476135, + 0.034278787672519684, + 0.025927744805812836, + 0.10031759738922119, + -0.038268398493528366, + -0.07429638504981995, + -0.0844251736998558, + 0.04755745828151703, + -0.0183727964758873, + 0.046586621552705765, + 0.12578421831130981, + 0.05194060504436493, + 0.004771104548126459, + -0.02034655399620533 + ], + "number-square-zero-bold||0,numbers,numerals,digits,mathematics,arithmetic,calculator": [ + -0.008372503332793713, + 0.04115452617406845, + -0.055696599185466766, + 0.011617669835686684, + -0.08864296227693558, + 0.030436722561717033, + 0.0252109095454216, + 0.002742120996117592, + 0.027694592252373695, + -0.07481767982244492, + 0.0709216445684433, + 0.03298148512840271, + 0.09249503165483475, + -0.0007302095764316618, + -0.07024755328893661, + -0.011656133458018303, + -0.04847755283117294, + -0.027222491800785065, + 0.028563331812620163, + 0.01829148828983307, + 0.04522043839097023, + 0.032933998852968216, + -0.007878690026700497, + 0.0306862685829401, + 0.04746757447719574, + -0.019639065489172935, + 0.02750336192548275, + 0.005031905137002468, + 0.07309220731258392, + -0.029532553628087044, + -0.015111509710550308, + 0.025256333872675896, + 0.12044575810432434, + 0.011880078352987766, + 0.012075209990143776, + -0.007966195233166218, + 0.07445090264081955, + 0.05601514130830765, + -0.06449948251247406, + 0.11861933022737503, + -0.006725042127072811, + -0.1407444030046463, + 0.0709470808506012, + 0.03248818591237068, + 0.003037629183381796, + -0.012499411590397358, + -0.05864736810326576, + -0.008286437951028347, + -0.009497816674411297, + -0.03368811309337616, + -0.028508275747299194, + -0.02779543586075306, + -0.14544284343719482, + -0.009108313359320164, + 0.03564494848251343, + -0.021665876731276512, + -0.03723585605621338, + -0.004424777813255787, + 0.03174186125397682, + -0.00027041113935410976, + 0.017835834994912148, + 0.035160861909389496, + 0.026546908542513847, + -0.01455351710319519, + -0.0015149425016716123, + 0.06877755373716354, + -0.02145746350288391, + -0.0796353667974472, + 0.008078399114310741, + 0.0479879193007946, + 0.05078702047467232, + 0.02506767213344574, + -0.0063176280818879604, + 0.030794808641076088, + -0.06022987887263298, + -0.04957237094640732, + -0.013500754721462727, + 0.020189976319670677, + -0.015967700630426407, + -0.022516662254929543, + -0.0638190358877182, + -0.08464924991130829, + -0.04925232380628586, + -0.011916471645236015, + -0.024233229458332062, + 0.036220479756593704, + -0.007026203442364931, + 0.0050562298856675625, + -0.0032902881503105164, + -0.05962232127785683, + -0.08324999362230301, + -0.004357439000159502, + -1.1647674000414554e-05, + 0.06672220677137375, + -0.08576992154121399, + 0.041028909385204315, + 0.07178409397602081, + 0.05709640309214592, + -0.060967620462179184, + 0.06799610704183578, + 0.0348135381937027, + 0.013963253237307072, + -0.008840520866215229, + 0.018071912229061127, + 0.01745706982910633, + -0.008480464108288288, + 0.0768798291683197, + -0.0035749655216932297, + 0.0071502369828522205, + -0.007521497085690498, + 0.02461693063378334, + -0.09675871580839157, + -0.023585697636008263, + -0.04366059601306915, + -0.01474461704492569, + -0.07395011931657791, + -0.027376782149076462, + 0.017495308071374893, + 0.09216640144586563, + 0.03306368738412857, + 0.05173037201166153, + -0.013078124262392521, + -0.0018731155432760715, + -0.006102723069489002, + -0.04115257039666176, + 0.05332033708691597, + -0.05331910774111748, + -1.8588617468590856e-33, + 0.021978629752993584, + 0.040557149797677994, + 0.016274094581604004, + 0.12751004099845886, + -0.008164611645042896, + -0.07656172662973404, + -0.047961264848709106, + -0.018606185913085938, + 0.013260605745017529, + 0.0750555694103241, + 0.07795979082584381, + 0.11187329888343811, + -0.037760429084300995, + 0.060015734285116196, + 0.1565912365913391, + 0.00951459538191557, + 0.09580497443675995, + -0.02165093645453453, + 0.01705770567059517, + -0.025059347972273827, + 0.026991883292794228, + 0.026333414018154144, + -0.056485213339328766, + 0.015703359618782997, + 0.0766339898109436, + 0.06383778899908066, + 0.037699144333601, + -0.044650789350271225, + -0.0022740839049220085, + 0.02662290260195732, + 0.06597774475812912, + 0.04702381044626236, + 0.010688557289540768, + -0.06920237094163895, + 0.05989758297801018, + -0.014513726346194744, + 0.014499494805932045, + -0.002012944081798196, + 0.08052956312894821, + -0.027090081945061684, + -0.12609033286571503, + -0.04214709252119064, + 0.014367395080626011, + -0.03274371847510338, + 0.08075760304927826, + 0.06791403144598007, + 0.06548100709915161, + 0.06155878305435181, + 0.09444956481456757, + -0.022705091163516045, + -0.08722789585590363, + 0.013330884277820587, + -0.017978932708501816, + 0.04027312621474266, + 0.014031212776899338, + -0.09252812713384628, + -0.04522651061415672, + 0.07973355054855347, + -0.012486332096159458, + 0.04404675215482712, + -0.008009007200598717, + 0.03570673614740372, + 0.012718294747173786, + -0.10926345735788345, + -0.1076916977763176, + 0.04603372886776924, + -0.07368239760398865, + -0.04562512785196304, + 0.060758668929338455, + -0.0022621687967330217, + -0.08155683428049088, + 0.047568779438734055, + 0.018778463825583458, + 0.022624269127845764, + 0.033158235251903534, + 0.006170747801661491, + 0.04910869151353836, + -0.10276477038860321, + -0.0291890949010849, + -0.03966495022177696, + 0.018523622304201126, + 0.027915731072425842, + -0.0516594797372818, + 0.029487481340765953, + 0.03148506209254265, + -0.0030243699438869953, + -0.00940996315330267, + -0.06302138417959213, + -0.023317258805036545, + -0.053161606192588806, + -0.05171831324696541, + -0.018153075128793716, + -0.012947477400302887, + -0.052188772708177567, + -0.11261641979217529, + -1.2272075615573255e-33, + -0.06378458440303802, + 0.04459971562027931, + -0.11495507508516312, + 0.04126816987991333, + -0.04682839289307594, + 0.04180905222892761, + 0.04220441356301308, + -0.04184361547231674, + 0.014171848073601723, + -0.0344720222055912, + 0.03208186477422714, + 0.0001226971362484619, + -0.02695832960307598, + -0.053029920905828476, + -0.064547598361969, + 0.016171254217624664, + -0.015308333560824394, + 0.019446073099970818, + -0.09839501231908798, + -0.02387787587940693, + -0.06992391496896744, + 0.07717105001211166, + -0.06431926786899567, + 0.0181137602776289, + 0.006128943059593439, + 0.05702042952179909, + -0.020383572205901146, + -0.03156934678554535, + 0.043707095086574554, + 0.03709761053323746, + 0.03667948767542839, + -0.06641513854265213, + 0.0907389223575592, + -0.020051056519150734, + -0.12730149924755096, + -0.04546201229095459, + 0.13913054764270782, + -0.016618888825178146, + 0.015870098024606705, + -0.054627858102321625, + 0.02960219234228134, + -0.014869707636535168, + 0.06185796111822128, + 0.054592058062553406, + -0.012303253635764122, + -0.03832424059510231, + 0.020603710785508156, + -0.039587512612342834, + -0.010070509277284145, + -0.008765790611505508, + 0.0191546268761158, + -0.018980668857693672, + -0.028724204748868942, + 0.03173746168613434, + -0.06610094010829926, + 0.005742872599512339, + -0.002222237875685096, + 0.06169336661696434, + -0.003305502235889435, + 0.08144910633563995, + -0.04461226984858513, + 0.05152003839612007, + 0.05642356723546982, + 0.02570781111717224, + -0.06444928050041199, + -0.03340500593185425, + -0.0013015831355005503, + 0.03836158290505409, + -0.03406241536140442, + -0.061548009514808655, + -0.004514719359576702, + 0.009792535565793514, + -0.002157143084332347, + 0.024094991385936737, + -0.09767374396324158, + -0.030181949958205223, + -0.017847809940576553, + 0.03914830833673477, + -0.04848894849419594, + 0.0829387828707695, + 0.07437212020158768, + 0.0334693044424057, + -0.02366139180958271, + -0.001984950387850404, + -0.03679485619068146, + 0.03220664709806442, + 0.09030831605195999, + 0.022592077031731606, + -0.0009655944304540753, + -0.07169707864522934, + -0.02034725807607174, + 0.06483253091573715, + -0.06709151715040207, + -0.022773778066039085, + -0.03223388269543648, + -2.3927562153858162e-08, + -0.008119579404592514, + 0.01069296058267355, + -0.013908083550632, + -0.06665394455194473, + 0.022031355649232864, + -0.032479166984558105, + -0.013952489010989666, + -0.06474289298057556, + -0.0410134382545948, + -0.02272922918200493, + 0.015312384814023972, + 0.04054882377386093, + -0.15120795369148254, + -0.07228494435548782, + 0.02578035742044449, + 0.02428734302520752, + 0.038208216428756714, + -0.01161324791610241, + -0.02538525126874447, + -0.011032773181796074, + -0.02267964370548725, + 0.0021644558291882277, + 0.02745894342660904, + -0.013536917045712471, + -0.01540131215006113, + -0.020196840167045593, + -0.04734017699956894, + 0.06964951008558273, + 0.08003012835979462, + 0.04532719403505325, + 0.024133188650012016, + 0.0386066660284996, + -0.011984115466475487, + -0.038657478988170624, + -0.08673910051584244, + -0.022625161334872246, + 0.008464350365102291, + 0.07363136857748032, + 0.01252361387014389, + -0.023504728451371193, + -0.024196486920118332, + -0.0855572298169136, + -0.03233287110924721, + 0.0174696184694767, + 0.058177512139081955, + -0.02638135850429535, + -0.018104400485754013, + -0.07765115797519684, + -0.04578470438718796, + -0.11167126893997192, + -0.05379372462630272, + 0.07770136743783951, + -0.020227622240781784, + 0.08590984344482422, + -0.05488333851099014, + -0.06310582906007767, + -0.10175257921218872, + 0.03321792557835579, + -0.03775757551193237, + 0.0542299821972847, + 0.10572399199008942, + 0.038950271904468536, + 0.005379430018365383, + 0.002133153146132827 + ], + "number-three-bold||3,numbers,numerals,digits,mathematics,arithmetic,calculator": [ + -0.0335250198841095, + -0.013166096992790699, + -0.08781607449054718, + -0.048080336302518845, + -0.0684664398431778, + 0.012781660072505474, + 0.0423421636223793, + -0.009291477501392365, + -0.011438357643783092, + -0.04665857180953026, + 0.005099748261272907, + -0.006678247824311256, + 0.06853929162025452, + -0.03272140026092529, + 0.022152837365865707, + -0.02819378860294819, + -0.07738576084375381, + 0.013363434001803398, + 0.005338901188224554, + -0.008925613947212696, + 0.044405605643987656, + 0.049657534807920456, + 0.04426274821162224, + 0.08344195038080215, + 0.07136446982622147, + 0.0029647559858858585, + 0.017578208819031715, + -0.029650509357452393, + 0.05305716022849083, + -0.03862776234745979, + -0.04588308557868004, + 0.015328910201787949, + 0.1387336701154709, + 2.3659975340706296e-05, + 0.03172539547085762, + -0.0402858704328537, + -0.03354344516992569, + 0.03726805001497269, + -0.0883796364068985, + 0.15614761412143707, + -0.0361534059047699, + -0.11908809095621109, + 0.053773052990436554, + 0.028765060007572174, + -0.03856849670410156, + -0.0032175807282328606, + -0.10902746766805649, + 0.010298049077391624, + 0.025739967823028564, + -0.003973537590354681, + -0.05183283984661102, + -0.039474960416555405, + -0.15891572833061218, + 0.02647078037261963, + 0.006550791207700968, + -0.04064197465777397, + -0.011709406971931458, + 0.0006543531781062484, + -0.005841044709086418, + 0.00350472261197865, + 0.008000683039426804, + 0.0623510368168354, + 0.044914357364177704, + -0.036523494869470596, + 0.059258874505758286, + 0.04972132667899132, + -0.018481077626347542, + -0.06494331359863281, + -0.006841137073934078, + 0.05869802087545395, + 0.04414455220103264, + 0.005701011046767235, + -0.024148212745785713, + -0.010375229641795158, + -0.040898703038692474, + 0.01905253157019615, + 0.01969086565077305, + 0.022986916825175285, + -0.06040028855204582, + -0.06970956921577454, + -0.04492175579071045, + -0.06924368441104889, + -0.022847317159175873, + 0.05932910367846489, + -0.013475815765559673, + 0.006068445276468992, + -0.04648787900805473, + -0.007870474830269814, + -0.03252536058425903, + -0.049347855150699615, + -0.07004401087760925, + -0.011083513498306274, + -0.004423134028911591, + 0.08057180792093277, + -0.06308754533529282, + 0.06581243872642517, + 0.06577926874160767, + 0.031674131751060486, + -0.022060547024011612, + 0.06897344440221786, + 0.031483132392168045, + 0.08096551150083542, + 0.01144791767001152, + 0.02291388437151909, + -0.01796993985772133, + 0.012114442884922028, + 0.034710705280303955, + -0.028407413512468338, + -0.017064061015844345, + 0.006784355733543634, + 0.007943889126181602, + -0.10039253532886505, + -0.035053301602602005, + -0.057302627712488174, + -0.022578105330467224, + -0.06372130662202835, + 0.022150781005620956, + -0.009813147597014904, + 0.14405864477157593, + 0.037900496274232864, + 0.029108796268701553, + 0.008399004116654396, + 0.025253305211663246, + -0.04168916866183281, + -0.03255806118249893, + 0.04862930625677109, + -0.012124339118599892, + -1.7811687334384327e-33, + -0.02069677785038948, + -0.007132797967642546, + -0.050141796469688416, + 0.14251002669334412, + 0.0056058503687381744, + -0.04459015652537346, + -0.05689908191561699, + -0.022524414584040642, + -0.06586165726184845, + 0.06670251488685608, + 0.0507359579205513, + 0.11102088540792465, + 0.04266975447535515, + 0.057671304792165756, + 0.12671944499015808, + -0.012697800993919373, + 0.05046112835407257, + -0.056958649307489395, + -0.053619276732206345, + -0.00735188415274024, + 0.042194053530693054, + 0.010395027697086334, + -0.049958765506744385, + -0.014440051279962063, + 0.04479992762207985, + 0.04438507556915283, + 0.02468722313642502, + 0.0049257464706897736, + -0.007712259888648987, + 0.011434640735387802, + 0.08134344965219498, + 0.02515491284430027, + 0.013731940649449825, + -0.04646845534443855, + 0.027922239154577255, + -0.0029723176266998053, + -0.013535612262785435, + -0.029938165098428726, + 0.06764944642782211, + -0.009471026249229908, + -0.11582478135824203, + -0.026979848742485046, + 0.02461117133498192, + 0.008879291824996471, + 0.0557885617017746, + 0.10172669589519501, + 0.025885744020342827, + 0.04645714908838272, + 0.09664216637611389, + -0.025071468204259872, + -0.031049495562911034, + 0.0015233235899358988, + 0.02548438496887684, + -0.016521843150258064, + 0.013086165301501751, + -0.08040844649076462, + -0.001744352630339563, + 0.097466379404068, + 0.0019114386523142457, + -0.0020234694238752127, + -0.0028754789382219315, + 0.04599758982658386, + 0.040715210139751434, + -0.07575914263725281, + -0.09861104190349579, + 0.06347988545894623, + -0.09024299681186676, + 0.019431881606578827, + 0.11481433361768723, + 0.026409506797790527, + -0.0824919119477272, + 0.053032658994197845, + 0.0016494098817929626, + 0.015738211572170258, + 0.03813888132572174, + 0.017633136361837387, + 0.01740945875644684, + -0.06734464317560196, + -0.05773700773715973, + -0.019292021170258522, + -0.01035408116877079, + -0.0009254359756596386, + 0.005460843909531832, + 0.1221616193652153, + 0.04010489210486412, + -0.0173187293112278, + -0.007741802372038364, + -0.07195015996694565, + 0.015784014016389847, + -0.020870614796876907, + -0.03771502897143364, + 0.014378171414136887, + 0.023245245218276978, + -0.05121837556362152, + -0.10921552777290344, + -1.3088235118673593e-33, + -0.04322902858257294, + 0.02343226969242096, + -0.07955288887023926, + 0.01249072328209877, + -0.05632133036851883, + 0.03486892953515053, + 0.024436581879854202, + -0.005999487359076738, + -0.0065992153249681, + -0.04066118970513344, + 0.040204159915447235, + 0.010089092887938023, + -0.038840919733047485, + -0.06851920485496521, + -0.054354194551706314, + -0.0007663643336854875, + -0.044093240052461624, + -0.016323110088706017, + -0.05697041377425194, + -0.0008008587174117565, + -0.016363797709345818, + 0.04416844621300697, + -0.07303166389465332, + 0.02322748675942421, + -0.01506038848310709, + 0.02944180741906166, + 0.003726060502231121, + -0.07935823500156403, + -0.001282951794564724, + 0.011647623963654041, + 0.013560635969042778, + -0.11524501442909241, + 0.11357112973928452, + 0.0186644047498703, + -0.1291152387857437, + -0.00889667496085167, + 0.13941910862922668, + -0.019872616976499557, + -0.031152570620179176, + -0.02478729374706745, + -0.0005466809961944818, + -0.02590482123196125, + 0.09901585429906845, + 0.03512688726186752, + -0.028030110523104668, + 0.015373023226857185, + 0.010681496001780033, + -0.03302774950861931, + -0.02496444433927536, + 0.08243215829133987, + 0.02898900769650936, + -0.05081223323941231, + -0.02464481070637703, + 0.025827838107943535, + -0.04190097749233246, + 0.006520804483443499, + 0.031462639570236206, + 0.012486827559769154, + -0.005674988031387329, + 0.101713627576828, + -0.03769752383232117, + 0.057057224214076996, + 0.06050780043005943, + 0.03983515501022339, + -0.03420611843466759, + -0.03876271843910217, + -0.04748670756816864, + -0.018015289679169655, + -0.00024498780840076506, + -0.0679684430360794, + -0.017484109848737717, + 0.030090495944023132, + 0.01732630655169487, + 0.04373473301529884, + -0.07464198768138885, + -0.057075440883636475, + 0.0037083663046360016, + 0.10898438841104507, + -0.026058297604322433, + 0.029598338529467583, + 0.0648532286286354, + -0.01506855245679617, + -0.023834938183426857, + 0.04807024821639061, + -0.08327669650316238, + 0.022534018382430077, + 0.09023243933916092, + 0.008365603163838387, + -0.020665723830461502, + -0.07913677394390106, + -0.04383334890007973, + 0.08123175799846649, + -0.02828386053442955, + -0.04091543331742287, + -0.018045300617814064, + -2.2284796230565007e-08, + 0.03275572136044502, + 0.0031124635133892298, + -0.040082190185785294, + -0.04036850854754448, + 0.01066844817250967, + 0.013121407479047775, + -0.03574501723051071, + -0.029784100130200386, + -0.04663125053048134, + 0.007293704431504011, + 0.038900360465049744, + 0.013254634104669094, + -0.10559560358524323, + -0.06886984407901764, + 0.047782495617866516, + -0.021483073011040688, + 0.08389628678560257, + -0.009165512397885323, + -0.012758664786815643, + -0.05614199489355087, + -0.0324271023273468, + 0.04688560217618942, + 0.08295540511608124, + -0.007465669885277748, + 0.04322275519371033, + 0.04915885999798775, + -0.06321912258863449, + 0.051602981984615326, + 0.04553038999438286, + 0.05154041200876236, + 0.05964188650250435, + 0.03353998810052872, + -0.014238806441426277, + -0.02251703105866909, + -0.10406682640314102, + -0.023598220199346542, + -0.050770532339811325, + -0.004690913949161768, + 0.035095617175102234, + -0.010908695869147778, + -0.014257829636335373, + -0.027985528111457825, + -0.09512357413768768, + 0.013034513220191002, + 0.04226989671587944, + -0.03704877197742462, + -0.017935462296009064, + -0.06523578613996506, + -0.06512247771024704, + -0.10342194885015488, + -0.06124291196465492, + 0.03551479056477547, + 0.04209734499454498, + 0.08888884633779526, + -0.0001360404130537063, + -0.09688863903284073, + -0.05497349798679352, + 0.01549362950026989, + -0.03629917651414871, + 0.056379303336143494, + 0.11150761693716049, + -0.01056733075529337, + 0.01638299785554409, + -0.01390248816460371 + ], + "number-two-bold||2,numbers,numerals,digits,mathematics,arithmetic,calculator": [ + -0.02164536900818348, + 5.504187356564216e-05, + -0.040531616657972336, + -0.02364722453057766, + -0.04551173001527786, + 0.0053801219910383224, + 0.023607812821865082, + 0.024434154853224754, + -0.027240818366408348, + -0.05274822935461998, + 0.008498155511915684, + 0.0077883037738502026, + 0.08153999596834183, + -0.044284965842962265, + -0.003319499781355262, + 0.0013814882840961218, + -0.0637526661157608, + -0.022182172164320946, + 0.023568302392959595, + 0.0020049905870109797, + 0.06569551676511765, + 0.05098644271492958, + 0.016953280195593834, + 0.04690907895565033, + 0.05685141310095787, + 0.012622864916920662, + -0.0100605683401227, + -0.0014588256599381566, + 0.07442525774240494, + -0.05057471618056297, + -0.01466789748519659, + 0.015878798440098763, + 0.10155946761369705, + 0.01858903467655182, + 0.000590955838561058, + -0.07636705040931702, + 0.04247172549366951, + 0.0645318254828453, + -0.07544544339179993, + 0.0990249291062355, + -0.030800096690654755, + -0.13853228092193604, + 0.04467413201928139, + 0.031276218593120575, + -0.02245236188173294, + -0.013853289186954498, + -0.067351795732975, + 0.02568480558693409, + -0.0004767837526742369, + 0.010993697680532932, + -0.0653996393084526, + -0.009311903268098831, + -0.1563972681760788, + 0.0047638798132538795, + 0.036986343562603, + 0.0056275296956300735, + -0.02648756094276905, + -0.005729517433792353, + -0.011082548648118973, + -0.0010313154198229313, + 0.03571748360991478, + 0.04142792895436287, + 0.02992568351328373, + -0.03281406685709953, + 0.027249082922935486, + 0.03939574956893921, + -0.010911899618804455, + -0.062464527785778046, + -0.004456565715372562, + 0.04953736811876297, + 0.05403565987944603, + 0.027371695265173912, + -0.0034779792185872793, + -0.00573360500857234, + -0.02911551669239998, + -0.019220158457756042, + -0.027412764728069305, + 0.0234847329556942, + -0.029604248702526093, + -0.08174586296081543, + -0.04798777773976326, + -0.11583642661571503, + -0.0026845454704016447, + 0.0284859798848629, + -0.01555817574262619, + 0.016806993633508682, + -0.00981991644948721, + -0.010928338393568993, + -0.01198996789753437, + -0.06414516270160675, + -0.029508469626307487, + -0.011823483742773533, + 0.059946734458208084, + 0.08309243619441986, + -0.061545297503471375, + 0.04415576532483101, + 0.06835199147462845, + 0.0843314602971077, + -0.02558089978992939, + 0.06575286388397217, + -0.020405156537890434, + 0.05381768196821213, + -0.007356930524110794, + -0.007914877496659756, + -0.005972244776785374, + -0.03179297223687172, + 0.04666522890329361, + -0.053616419434547424, + 0.049745894968509674, + -0.04293910041451454, + 0.06305032223463058, + -0.07257668673992157, + -0.03468623757362366, + -0.0445825569331646, + 0.014710365794599056, + -0.055833641439676285, + 0.03126821294426918, + 0.044395118951797485, + 0.12369586527347565, + 0.016572583466768265, + 0.01581491343677044, + 0.00606067618355155, + 1.0106294894285384e-06, + -0.03098156303167343, + -0.03754207864403725, + 0.015483078546822071, + -0.03790457174181938, + -2.3236536825421566e-33, + -0.008081195876002312, + -0.0012196790194138885, + -0.04132700711488724, + 0.1612420529127121, + -0.00285899150185287, + -0.04592037945985794, + -0.07504277676343918, + -0.02358374185860157, + -0.04677833244204521, + 0.07328683137893677, + 0.05737105756998062, + 0.07218988239765167, + 0.04482443258166313, + 0.07257536053657532, + 0.1684611290693283, + -0.04693147912621498, + 0.10298939794301987, + -0.05989786610007286, + -0.004409910645335913, + -0.017218859866261482, + 0.012167093344032764, + 0.05344313755631447, + -0.03228617087006569, + -0.006924252957105637, + 0.07152913510799408, + 0.05554340407252312, + 0.0643346756696701, + -0.0033613676205277443, + -0.0018959569279104471, + 0.0318773090839386, + 0.05084824562072754, + 0.001797262579202652, + 0.0048196762800216675, + -0.0028214396443217993, + 0.030533261597156525, + -0.033483877778053284, + -0.010513651184737682, + 0.010675273835659027, + 0.0810379683971405, + -0.06782025843858719, + -0.10281004011631012, + -0.01093093492090702, + 0.009095929563045502, + 0.021502066403627396, + 0.05734772980213165, + 0.031200993806123734, + 0.029505934566259384, + 0.05911264568567276, + 0.11038567870855331, + -0.04150741547346115, + -0.09087710082530975, + 0.02267240546643734, + 0.010419749654829502, + 0.008725030347704887, + 0.011840764433145523, + -0.07210956513881683, + 0.027350040152668953, + 0.08737827837467194, + -0.001192516298033297, + 0.018684852868318558, + 0.0050635444931685925, + 0.06506311893463135, + 0.034444816410541534, + -0.09556478261947632, + -0.1128801628947258, + 0.04342024400830269, + -0.08253676444292068, + -0.012713165953755379, + 0.08036308735609055, + 0.027871111407876015, + -0.06585387140512466, + 0.05883249640464783, + 0.03992340713739395, + 0.004487477242946625, + 0.04504162073135376, + 0.0061312103644013405, + 0.06753768771886826, + -0.08416610211133957, + -0.029695918783545494, + 0.009892410598695278, + -0.023129664361476898, + -0.0028088847175240517, + -0.008543104864656925, + 0.11848732084035873, + 0.05520021542906761, + -0.009481854736804962, + -0.0340149886906147, + -0.052747271955013275, + -0.01303120981901884, + 0.01234675757586956, + -0.06098942086100578, + 0.007856564596295357, + -0.0282162856310606, + -0.0868830755352974, + -0.06240810826420784, + -1.2478676094569964e-33, + -0.0783117339015007, + 0.03993190824985504, + -0.09193018078804016, + 0.03076961636543274, + -0.06542925536632538, + 0.018513990566134453, + 0.049945179373025894, + -0.03446245566010475, + 0.008821170777082443, + -0.04116953909397125, + 0.07561042904853821, + 0.01980985514819622, + -0.04180794581770897, + -0.04355286434292793, + -0.05917326360940933, + -0.0238175168633461, + -0.05339327082037926, + 0.012994032353162766, + -0.04748553782701492, + -0.03275351598858833, + -0.01591338962316513, + 0.06413549929857254, + -0.04019266366958618, + 0.015456379391252995, + 0.01834956184029579, + 0.027160508558154106, + 0.022401710972189903, + -0.057697344571352005, + -0.004079900216311216, + 0.01819778047502041, + 0.017566394060850143, + -0.09607379883527756, + 0.10720724612474442, + 0.017070623114705086, + -0.1313685178756714, + -0.03712137043476105, + 0.11904433369636536, + -0.0544811449944973, + -0.06373976171016693, + -0.01442994549870491, + -0.01680024527013302, + -0.046099722385406494, + 0.08795050531625748, + 0.04421168938279152, + -0.018556762486696243, + -0.04047280550003052, + 0.026761600747704506, + -0.04074093699455261, + -0.056398991495370865, + 0.006903397385030985, + 0.03625047579407692, + -0.003909745719283819, + -0.06479991227388382, + 0.02232612669467926, + -0.05988670513033867, + -0.018152548000216484, + -0.010376346297562122, + 0.05182226374745369, + -0.0015867542242631316, + 0.10424637049436569, + -0.01386665552854538, + 0.057643823325634, + 0.01919936016201973, + 0.04524199292063713, + -0.027932988479733467, + -0.06738663464784622, + -0.04670174792408943, + -0.0037233782932162285, + -0.03928682208061218, + -0.06562700867652893, + -0.001291213440708816, + -0.0001467902329750359, + 0.012316104955971241, + 0.05451378971338272, + -0.11872269213199615, + -0.05189816281199455, + -0.006838587112724781, + 0.06818816810846329, + -0.010390256531536579, + 0.02784513682126999, + 0.04890000447630882, + -0.0016034500440582633, + -0.010267958045005798, + 0.02839510329067707, + -0.08190522342920303, + 0.01594356633722782, + 0.09575508534908295, + 0.012764975428581238, + -0.031732041388750076, + -0.08628838509321213, + -0.031620245426893234, + 0.07555729895830154, + -0.04847578704357147, + -0.049766093492507935, + -0.04186471179127693, + -2.3395630321942917e-08, + 0.0052392566576600075, + -0.024623805657029152, + -0.00618372019380331, + -0.05628524720668793, + 0.021220911294221878, + 0.005160738248378038, + -0.059154827147722244, + -0.014179975725710392, + -0.019568828865885735, + -0.01507494505494833, + -0.002647459739819169, + 0.05414951965212822, + -0.10549813508987427, + -0.05510469898581505, + 0.036254893988370895, + 0.0015300759114325047, + 0.10437559336423874, + -0.003778457175940275, + -0.02946624904870987, + -0.05258968845009804, + 0.0017268600640818477, + 0.013336391188204288, + 0.05836447328329086, + -0.017207685858011246, + -0.003227107459679246, + 0.015962766483426094, + -0.05338805541396141, + 0.04161037132143974, + 0.07336258143186569, + 0.021351061761379242, + 0.07046710699796677, + 0.01440025307238102, + -0.02316777966916561, + -0.04899762198328972, + -0.08294567465782166, + -0.03879319131374359, + -0.049538545310497284, + -0.0029280262533575296, + 0.0354946032166481, + -0.022570811212062836, + -0.012270284816622734, + -0.03471270948648453, + -0.07205821573734283, + 0.056336287409067154, + 0.07216938585042953, + -0.02559492364525795, + 0.016858195886015892, + -0.0810786634683609, + -0.07188217341899872, + -0.1160217896103859, + -0.04793956130743027, + 0.04699399322271347, + 0.05384562909603119, + 0.07795221358537674, + -0.031020864844322205, + -0.08535066246986389, + -0.07146576046943665, + 0.04226699471473694, + -0.04028470814228058, + 0.061451397836208344, + 0.12861080467700958, + 0.034186266362667084, + 0.010867370292544365, + -0.039786577224731445 + ], + "number-zero-bold||0,numbers,numerals,digits,mathematics,arithmetic,calculator": [ + -0.025072263553738594, + 0.030085552483797073, + -0.06811367720365524, + -0.011817563325166702, + -0.07881487160921097, + 0.007533320225775242, + 0.031963445246219635, + 0.01463031955063343, + 0.012896955944597721, + -0.05417567491531372, + 0.056536972522735596, + -0.004418509546667337, + 0.09554002434015274, + -0.012354539707303047, + -0.04104764387011528, + -0.0026172539219260216, + -0.0564667209982872, + -0.0382232666015625, + 0.02314259298145771, + 0.013401180505752563, + 0.039770472794771194, + 0.0523880273103714, + 0.0002783307572826743, + 0.03523259609937668, + 0.05375877395272255, + -0.016629766672849655, + 0.008280477486550808, + -0.038217995315790176, + 0.07359818369150162, + -0.019643396139144897, + -0.03180838003754616, + 0.03078444115817547, + 0.12488220632076263, + 0.007671005558222532, + 0.03359351307153702, + -0.021615272387862206, + 0.08082369714975357, + 0.05258774012327194, + -0.08890724927186966, + 0.14092454314231873, + -0.019813591614365578, + -0.11100917309522629, + 0.04737764224410057, + 0.028599731624126434, + -0.002574617275968194, + 0.0015459759160876274, + -0.07906700670719147, + 0.010083906352519989, + 0.003557610558345914, + -0.02161269262433052, + -0.017715100198984146, + -0.02074419893324375, + -0.16501954197883606, + 0.02077154628932476, + 0.026160215958952904, + -0.017997168004512787, + -0.06210991367697716, + -0.007864014245569706, + 0.010703175328671932, + -0.007030793931335211, + 0.009432774037122726, + 0.028857707977294922, + 0.041358429938554764, + -0.02357391081750393, + 0.04526913911104202, + 0.06229525804519653, + -0.01770326867699623, + -0.07402630895376205, + 0.004266127943992615, + 0.062142834067344666, + 0.038249190896749496, + -0.005383382085710764, + -0.006144808605313301, + 0.02339344657957554, + -0.08162563294172287, + 0.006184256169945002, + -0.00954037718474865, + 0.03558127582073212, + -0.01502709649503231, + -0.027271773666143417, + -0.05847957730293274, + -0.10974492132663727, + -0.046497978270053864, + -0.010383274406194687, + -0.013421745970845222, + 0.03108108416199684, + -0.0066842553205788136, + 0.010190151631832123, + 0.019864818081259727, + -0.0398419015109539, + -0.0917840301990509, + 0.017123598605394363, + -0.021881790831685066, + 0.05731894448399544, + -0.06881175190210342, + 0.05144115164875984, + 0.04782670736312866, + 0.07387158274650574, + -0.052958983927965164, + 0.06934069842100143, + 0.010752394795417786, + 0.026107022538781166, + 0.008178876712918282, + 0.04041387885808945, + -0.016119105741381645, + -0.01021298673003912, + 0.05286787822842598, + -0.009820870123803616, + -0.0033675525337457657, + -0.022001124918460846, + 0.04824228584766388, + -0.10238362103700638, + -0.022791283205151558, + -0.07968530803918839, + -0.015999119728803635, + -0.097519151866436, + -0.006318532861769199, + 0.03906823322176933, + 0.06829629838466644, + 0.04227162525057793, + 0.02513500303030014, + -0.0036483872681856155, + -0.003036219161003828, + 0.007259240839630365, + -0.03715438395738602, + 0.03896224498748779, + -0.03666216507554054, + -1.7979439561796283e-33, + 0.021463677287101746, + 0.011637485586106777, + -0.011179456487298012, + 0.11281565576791763, + -0.0020869511645287275, + -0.04630725830793381, + -0.04024638235569, + 0.019771050661802292, + -0.03097071498632431, + 0.0597427561879158, + 0.08487703651189804, + 0.11880149692296982, + 0.012282038107514381, + 0.04239124432206154, + 0.1441231667995453, + 0.008398875594139099, + 0.10124576836824417, + -0.0654962882399559, + -0.011243429966270924, + -0.037512026727199554, + 0.03507522866129875, + 0.021863119676709175, + -0.047056928277015686, + -0.0026457214262336493, + 0.06481913477182388, + 0.061031315475702286, + 0.029665350914001465, + -0.03854624554514885, + -0.04936062544584274, + 0.00184841628652066, + 0.02816181629896164, + 0.030456257984042168, + 0.027681266888976097, + -0.057947468012571335, + 0.04290258511900902, + 0.001832609181292355, + -0.003239002311602235, + -0.004817766137421131, + 0.07516629248857498, + -0.0038198952097445726, + -0.13653801381587982, + -0.04956664517521858, + 0.00570098077878356, + -0.023952577263116837, + 0.06591816246509552, + 0.08814632892608643, + 0.03406881168484688, + 0.07444234937429428, + 0.0930403620004654, + -0.0063243345357477665, + -0.07417129725217819, + 0.029863648116588593, + -0.024829916656017303, + 0.021057259291410446, + -0.02780146710574627, + -0.08433619141578674, + -0.015752019360661507, + 0.08279308676719666, + -0.03765162080526352, + 0.011719560250639915, + -0.014135120436549187, + 0.04700485244393349, + 0.02069396898150444, + -0.10055894404649734, + -0.10378710925579071, + 0.03683478385210037, + -0.07843182235956192, + -0.01703917235136032, + 0.09396885335445404, + -0.01886204071342945, + -0.07126990705728531, + 0.0864189937710762, + 0.010750031098723412, + 0.016717027872800827, + 0.04463805630803108, + 0.023554256185889244, + 0.06742655485868454, + -0.10739254206418991, + -0.05038999021053314, + 0.01593504101037979, + 0.026513313874602318, + 0.006173503585159779, + -0.006982905324548483, + 0.0860452651977539, + 0.03656884282827377, + 0.014123908244073391, + -0.005743148736655712, + -0.03594367951154709, + -0.011648173443973064, + -0.0587613470852375, + -0.03227983042597771, + -0.023457834497094154, + -0.021965619176626205, + -0.06952401995658875, + -0.10405148565769196, + -1.4659958309444341e-33, + -0.06161683425307274, + 0.01598638854920864, + -0.10811833292245865, + 0.034555405378341675, + -0.06007617712020874, + 0.06783569604158401, + 0.05438441410660744, + -0.02710932120680809, + 0.01466558501124382, + -0.03757613152265549, + 0.045680537819862366, + 0.030954644083976746, + -0.020347224548459053, + -0.0313839390873909, + -0.06405388563871384, + -0.003569951979443431, + -0.058166347444057465, + 0.029221972450613976, + -0.06902722269296646, + 0.016565930098295212, + -0.04684972018003464, + 0.10300415009260178, + -0.0932336300611496, + 0.02808414399623871, + 0.019718164578080177, + 0.045579440891742706, + -0.0025678318925201893, + -0.024423807859420776, + 0.02778736688196659, + 0.006344820838421583, + 0.06662941724061966, + -0.07295642048120499, + 0.11221687495708466, + -0.025296667590737343, + -0.10300034284591675, + -0.021787816658616066, + 0.13318850100040436, + -0.005554641596972942, + 0.011913391761481762, + -0.0445268414914608, + 0.013708303682506084, + -0.01778205670416355, + 0.05381034314632416, + 0.03172534331679344, + -0.03359445184469223, + -0.047698572278022766, + 0.009038737043738365, + -0.03462319076061249, + -0.008094838820397854, + 0.020817546173930168, + 0.021696001291275024, + -0.004035348538309336, + -0.028311893343925476, + 0.01918538101017475, + -0.05924412980675697, + -0.003393495688214898, + 0.003688062774017453, + 0.04693964123725891, + 0.010198638774454594, + 0.07224634289741516, + -0.050382986664772034, + 0.05898181349039078, + 0.06386013329029083, + 0.024719977751374245, + -0.04252687096595764, + -0.038641881197690964, + -0.023087307810783386, + 0.000839062558952719, + -0.037924494594335556, + -0.10623348504304886, + 0.016682585701346397, + 0.006767245475202799, + 0.005405275151133537, + 0.017774811014533043, + -0.1042853593826294, + -0.03769852966070175, + 0.02449752576649189, + 0.058695707470178604, + -0.03431922569870949, + 0.06361381709575653, + 0.0542939193546772, + 0.01584419421851635, + -0.03417634218931198, + 0.02885255217552185, + -0.03489212319254875, + 0.04486570507287979, + 0.0981476679444313, + -0.006638965103775263, + -0.004345880821347237, + -0.05567675083875656, + -0.03233369439840317, + 0.07239149510860443, + -0.04878586530685425, + -0.04650111123919487, + -0.04288623109459877, + -2.2955530809554148e-08, + 0.004172486253082752, + -0.01312405988574028, + -0.03385898098349571, + -0.04277918115258217, + 0.0362899973988533, + 0.006361003033816814, + -0.020519591867923737, + -0.08667321503162384, + -0.03951448202133179, + -0.01449612993746996, + 0.0442921444773674, + 0.03555853292346001, + -0.15304282307624817, + -0.06725870072841644, + 0.031016288325190544, + 0.018896570429205894, + 0.05201713740825653, + -0.014251671731472015, + -0.028171680867671967, + -0.022104259580373764, + -0.039520591497421265, + 0.014947270043194294, + 0.028187744319438934, + -0.04476563259959221, + 0.022692441940307617, + -0.033466462045907974, + -0.03913741931319237, + 0.06718597561120987, + 0.08486440777778625, + 0.023842956870794296, + 0.029148470610380173, + 0.02811664715409279, + 0.00214178254827857, + -0.02594097889959812, + -0.08115564286708832, + 0.00043087697122246027, + 0.02633160538971424, + 0.07880931347608566, + 0.018657060340046883, + -0.01879553683102131, + -0.05999630317091942, + -0.07382363826036453, + -0.06767287105321884, + 0.015715161338448524, + 0.032291870564222336, + -0.05378716439008713, + -0.02873832732439041, + -0.08826366066932678, + -0.040360238403081894, + -0.09588247537612915, + -0.04487782344222069, + 0.09491626918315887, + -0.007224522531032562, + 0.06499823927879333, + -0.047350313514471054, + -0.06571096926927567, + -0.0752844288945198, + 0.028131116181612015, + -0.05500112846493721, + 0.07699065655469894, + 0.10275693982839584, + 0.014198592863976955, + 0.002734025474637747, + -0.019059794023633003 + ], + "numpad-bold||*new*,dialer,dialpad,call-center,telephone,landline,password,passcode": [ + -0.05009615793824196, + -0.05563417449593544, + -0.10850189626216888, + -0.0662103220820427, + 0.01941162906587124, + -0.03239818662405014, + 0.028797877952456474, + -0.026461925357580185, + -0.018007930368185043, + 0.0034456560388207436, + 0.0024546377826482058, + -0.024847829714417458, + 0.02975619211792946, + -0.07889988273382187, + -0.0022251347545534372, + 0.013259283266961575, + -0.05673019960522652, + -0.009467984549701214, + 0.005414347164332867, + -0.011071845889091492, + -0.02081134542822838, + 0.06963327527046204, + 0.008468929678201675, + -0.03261735662817955, + 0.04344486445188522, + 0.03459085524082184, + 0.06220554932951927, + 0.058939311653375626, + 0.005954061634838581, + -0.06109096109867096, + 0.016756422817707062, + 0.043510738760232925, + 0.2055223137140274, + 0.06569778919219971, + 0.04334157705307007, + 0.03678244724869728, + 0.000632867100648582, + 0.011620619334280491, + -0.07830166816711426, + -0.02001962810754776, + -0.003487861715257168, + -0.09981340169906616, + -0.009924856945872307, + 0.06560327112674713, + -0.015566493384540081, + 0.007323106750845909, + -0.0713537409901619, + -0.009752169251441956, + 0.08193320780992508, + -0.010897690430283546, + 0.026242367923259735, + -0.043097443878650665, + -0.13010357320308685, + 0.03761867806315422, + -0.01681867428123951, + 0.015258620493113995, + -0.01433790847659111, + -0.014621956273913383, + 0.016098618507385254, + 0.03680749982595444, + -0.01169142872095108, + 0.0619872622191906, + 0.0004467451944947243, + 0.037485361099243164, + 0.016058454290032387, + 0.08694928884506226, + -0.04955567046999931, + 0.00850613135844469, + 0.0363771915435791, + -0.03851212561130524, + -0.028869429603219032, + 0.008363340049982071, + -0.06433876603841782, + -0.023137029260396957, + -0.08551821112632751, + -0.0003687108983285725, + 0.012813097797334194, + -0.015524618327617645, + 0.00921042263507843, + -0.07468422502279282, + -0.05381093546748161, + -0.046389494091272354, + 0.02576756291091442, + 0.06869756430387497, + 0.08330927789211273, + 0.07259134948253632, + -0.08495595306158066, + -0.028123363852500916, + 0.00281585194170475, + -0.03427114710211754, + -0.052667371928691864, + -0.039194922894239426, + -0.049201060086488724, + 0.013378734700381756, + -0.12710604071617126, + 0.012978962622582912, + 0.03277666121721268, + -0.08171507716178894, + -0.09875748306512833, + 0.06427330523729324, + 0.012675117701292038, + -0.006480284035205841, + 0.011753984726965427, + -0.03796930983662605, + -0.009146290831267834, + -0.019212519749999046, + 0.1100679561495781, + -0.06047587841749191, + -0.011086000129580498, + 0.05637577921152115, + -0.04237935692071915, + -0.06316476315259933, + -0.016472451388835907, + -0.06829968839883804, + 0.04558242857456207, + -0.014227801002562046, + -0.01391893532127142, + 0.009324325248599052, + 0.09558268636465073, + 0.03135032579302788, + -0.009751703590154648, + -0.05736524984240532, + -0.03554157912731171, + -0.03873611241579056, + -0.0334988571703434, + 0.01608429290354252, + 0.044956330209970474, + 1.269066823554611e-33, + 0.04470895975828171, + 0.06818708777427673, + -0.04903532564640045, + 0.11293620616197586, + 0.002939034951850772, + 0.049774833023548126, + -0.023093830794095993, + -0.023527169600129128, + -0.05431250110268593, + 0.05537961795926094, + 0.04501917585730553, + 0.023960165679454803, + -0.04361096769571304, + 0.06699346005916595, + 0.06890125572681427, + -0.02297116629779339, + 0.03565513342618942, + -0.007269495166838169, + -0.029195116832852364, + -0.053785692900419235, + -0.08581118285655975, + 0.10266555845737457, + -0.0026958652306348085, + 0.05797623470425606, + 0.10321901738643646, + 0.003435654565691948, + 0.04039807990193367, + -0.002976346295326948, + 0.01244492456316948, + 0.013709371909499168, + -0.0037136885803192854, + -0.00827115960419178, + -0.015871863812208176, + 0.03440743684768677, + -0.00933907087892294, + 0.03927307203412056, + -0.08124127984046936, + 0.005755292717367411, + -0.04509793967008591, + 0.0198585893958807, + -0.11502581834793091, + -0.04590124264359474, + -0.05151071026921272, + -0.03739028051495552, + 0.014674237929284573, + 0.05004514753818512, + -0.05448940023779869, + 0.03559577465057373, + 0.07542131096124649, + 0.008983667008578777, + -0.051638469099998474, + 0.053968459367752075, + -0.014115956611931324, + 0.011461306363344193, + -0.012690351344645023, + -0.12305054813623428, + -0.005294511094689369, + 0.039036285132169724, + 0.011160685680806637, + -0.02815794199705124, + 0.03123067319393158, + 0.014288806356489658, + 0.02536020427942276, + 0.014118647202849388, + 0.008634312078356743, + -0.009501609019935131, + -0.03984465077519417, + -0.03507298603653908, + 0.047330163419246674, + 0.05004936829209328, + -0.07279764860868454, + 0.06144258752465248, + 0.02124032936990261, + 0.07629438489675522, + -0.09948514401912689, + 0.028033209964632988, + 0.029014140367507935, + -0.007365036755800247, + 0.0036999485455453396, + -0.05032481998205185, + -0.023741045966744423, + 0.023503854870796204, + -0.05417906865477562, + 0.06050217151641846, + 0.06303751468658447, + -0.009681911207735538, + 0.04476940631866455, + -0.10252831876277924, + -0.07568229734897614, + -0.034001462161540985, + -0.06254985928535461, + -0.00018906763580162078, + -0.06681156903505325, + -0.055900488048791885, + -0.1436878889799118, + -2.9525380174442956e-33, + -0.030592354014515877, + 0.016197385266423225, + -0.10798970609903336, + 0.0138075090944767, + -0.08649461716413498, + -0.001448543043807149, + 0.04215627163648605, + 0.02822255529463291, + 0.024028753861784935, + 0.0326932817697525, + 0.05536782369017601, + 0.051766157150268555, + 0.03291832283139229, + -0.10749141126871109, + 0.10178011655807495, + 0.06501691788434982, + -0.012887104414403439, + 0.06294840574264526, + -0.02156117744743824, + -0.008612464182078838, + -0.03413844108581543, + 0.01784493960440159, + -0.057732898741960526, + 0.057445451617240906, + -0.055164385586977005, + -0.014401708729565144, + -0.029364172369241714, + 0.027403434738516808, + -0.0010989527218043804, + -0.02650603838264942, + -0.003906351514160633, + 0.04388151317834854, + 0.005413142032921314, + 0.10227560997009277, + -0.03338053822517395, + 0.029648732393980026, + 0.13788947463035583, + 0.017761796712875366, + -0.009141026996076107, + 0.03495378419756889, + 0.08018483966588974, + 0.035838060081005096, + 0.03420771285891533, + 0.014617065899074078, + -0.06960238516330719, + -0.029260139912366867, + -0.04555341601371765, + -0.025665681809186935, + -0.1083860769867897, + 0.05235454812645912, + 0.06634209305047989, + -0.08750807493925095, + -0.003127808216959238, + 0.04461571201682091, + -0.035071972757577896, + 0.037517644464969635, + 0.017482317984104156, + -0.028924064710736275, + 0.04505835473537445, + 0.017392205074429512, + 0.024148130789399147, + -0.05349365621805191, + -0.06375770270824432, + -0.0075475904159247875, + 0.01115502417087555, + -0.0416090227663517, + 0.016621267423033714, + 0.03560459613800049, + -0.07788237184286118, + 0.017351502552628517, + 0.04215750843286514, + -0.04396132007241249, + 0.019060630351305008, + -0.007211812771856785, + -0.006015087012201548, + -0.074227474629879, + 0.009417178109288216, + 0.019150348380208015, + -0.0655994787812233, + 0.006301117595285177, + 0.04292280226945877, + 0.018698088824748993, + 0.010319515131413937, + 0.009797734208405018, + -0.018085766583681107, + 0.04414952173829079, + 0.06114229932427406, + 0.058016739785671234, + 0.04657026007771492, + -0.054257944226264954, + -0.07710472494363785, + 0.07019386440515518, + -0.03416940197348595, + 0.06540829688310623, + -0.10255753248929977, + -2.58524011087502e-08, + -0.00957086868584156, + -0.06929948925971985, + -0.003476386656984687, + -0.050784289836883545, + 0.04137329012155533, + -0.0056152050383389, + -0.009303898550570011, + -0.02177613228559494, + -0.01229061372578144, + -0.013328593224287033, + 0.061294734477996826, + -0.012440396472811699, + -0.0960853323340416, + -0.015737880021333694, + 0.05332520231604576, + 0.07989083230495453, + -0.04588261991739273, + 0.0280081108212471, + -0.007817207835614681, + -0.055934734642505646, + 0.04125760495662689, + 0.06807409226894379, + 0.010212678462266922, + 0.0007430865662172437, + -0.012824777513742447, + 0.024480288848280907, + -0.07512100040912628, + 0.04266494885087013, + 0.04222901538014412, + 0.05162475258111954, + 0.050084274262189865, + 0.054854050278663635, + 0.08814876526594162, + -0.0736546441912651, + -0.12637484073638916, + 0.06620538979768753, + 0.002061419654637575, + 0.00519766379147768, + 0.007403009105473757, + 0.07066058367490768, + 0.004955112934112549, + -0.02388104610145092, + -0.09738530963659286, + 0.005564307793974876, + 0.004151979461312294, + -0.04189370572566986, + 0.043617602437734604, + -0.05010002851486206, + -0.04305879771709442, + -0.10633128881454468, + -0.062390051782131195, + 0.04982798919081688, + 0.058635495603084564, + 0.0515325590968132, + -0.033944062888622284, + -0.0751643180847168, + -0.006511703133583069, + 0.06664510816335678, + 0.07546067237854004, + 0.05592575669288635, + 0.042646441608667374, + 0.053093455731868744, + -0.05163990706205368, + 0.016347812488675117 + ], + "nut-bold||bolts,screws,machinery,tools,hexagon": [ + -0.004520965740084648, + 0.012799277901649475, + -0.042092543095350266, + 0.018405703827738762, + -0.03908524662256241, + -0.025874974206089973, + 0.022048790007829666, + -0.00987415574491024, + 0.009819150902330875, + 0.04099831357598305, + 0.038165558129549026, + 0.03868676722049713, + 0.032979488372802734, + -0.040549349039793015, + -0.0388094037771225, + -0.025243796408176422, + 0.027842417359352112, + -0.026696154847741127, + -0.03225140646100044, + -0.0689968690276146, + 0.02319004014134407, + 0.014859380200505257, + 0.015817176550626755, + 0.005130776669830084, + 0.04198966920375824, + 0.08476358652114868, + 0.00026684143813326955, + 0.06921269744634628, + -0.000691519642714411, + -0.07834528386592865, + 0.02951858937740326, + -0.03934020549058914, + 0.041638653725385666, + -0.030142663046717644, + 0.01915680803358555, + 0.04769096150994301, + -0.006018297281116247, + -0.059723518788814545, + -0.02060134895145893, + 0.01693430170416832, + 0.020841602236032486, + -0.060295503586530685, + 0.0737825334072113, + -0.05554300174117088, + -0.017253434285521507, + 0.023979322984814644, + -0.037288688123226166, + -0.056925419718027115, + 0.039227426052093506, + -0.002065925160422921, + -0.0671544149518013, + -0.09622686356306076, + -0.02865719050168991, + -0.016096895560622215, + 0.03232894465327263, + 0.05109988525509834, + -0.02598751150071621, + -0.06834016740322113, + 0.0486641526222229, + -0.07667040079832077, + 0.11799586564302444, + 0.006139649543911219, + -0.01140176597982645, + 0.07042878121137619, + 0.017028499394655228, + 0.025578251108527184, + 0.021364612504839897, + -0.07056853920221329, + -0.023921296000480652, + 0.033453553915023804, + 0.027839694172143936, + 0.02100594900548458, + -0.07858534157276154, + 0.03283064067363739, + 0.01622292585670948, + 0.0003979665052611381, + 0.0430297777056694, + -0.021541018038988113, + 0.012416157871484756, + -0.04737696424126625, + -0.1348859816789627, + 0.03457115218043327, + 0.000933952396735549, + -0.02041958086192608, + -0.028811166062951088, + 0.1548500508069992, + 0.014542842283844948, + 0.011856002733111382, + 0.022135572507977486, + -0.009591294452548027, + -0.08327195793390274, + -0.09449093788862228, + 0.04353418946266174, + 0.03549540415406227, + 0.05111635848879814, + 0.026604987680912018, + 0.0292140394449234, + 0.0258588045835495, + -0.09580527245998383, + 0.03347170725464821, + 0.06264849007129669, + 0.008208878338336945, + 0.04756063595414162, + -0.049814049154520035, + -0.10582578927278519, + 0.07334449142217636, + -0.12930651009082794, + 0.018960293382406235, + 0.0205917377024889, + 0.03146250918507576, + 0.006289997603744268, + -0.006031722761690617, + -0.037449002265930176, + -0.060168489813804626, + -0.06682662665843964, + -0.04379463568329811, + -0.03956972062587738, + -0.041322577744722366, + 0.044779304414987564, + 0.07560179382562637, + 0.10825274139642715, + -0.043646980077028275, + -0.057335589081048965, + 0.03195663169026375, + 0.0035251688677817583, + -0.004028443247079849, + -0.035386644303798676, + -2.268925053290771e-33, + 0.027697019279003143, + 0.008725637570023537, + 0.022184891626238823, + 0.02415352687239647, + -0.012843707576394081, + -0.0020005658734589815, + 0.0130031518638134, + -0.06257566064596176, + 0.02888769470155239, + 0.10618764162063599, + -0.018405627459287643, + 0.13169972598552704, + -0.046946968883275986, + 0.030542805790901184, + 0.058024611324071884, + -0.1195559948682785, + 0.018814079463481903, + -0.015414455905556679, + -0.03953497111797333, + -0.004245682153850794, + -0.06809265166521072, + 0.04944377765059471, + -0.06675224751234055, + 0.06093119457364082, + 0.01996329240500927, + 0.0006286036805249751, + 0.07091273367404938, + -0.029027298092842102, + -0.044635895639657974, + 0.02256145514547825, + 0.017085371538996696, + 0.07656627148389816, + 0.01265458483248949, + 0.03439217805862427, + 0.021867116913199425, + -0.06141025200486183, + -0.06840033829212189, + -0.0855317935347557, + -0.06133956089615822, + -0.008554741740226746, + 0.04880888760089874, + -0.037235137075185776, + -0.06724012643098831, + 0.011727984994649887, + 0.04336708039045334, + 0.045138437300920486, + 0.0007830954273231328, + -0.00351700303144753, + 0.04178956523537636, + 0.03055003099143505, + -0.00710632000118494, + 0.07486739754676819, + 0.14525394141674042, + 0.020978204905986786, + -0.002537605818361044, + -0.01600799337029457, + 0.037781015038490295, + 0.06634274125099182, + -0.007162125315517187, + 0.055245086550712585, + -0.03793030604720116, + 0.0422520637512207, + 0.042606912553310394, + 0.07481614500284195, + 0.027023689821362495, + -0.007711577694863081, + 0.02502857707440853, + 0.03343603387475014, + 0.04672927036881447, + 0.013229507952928543, + -0.046804048120975494, + -0.017107894644141197, + 0.03049231693148613, + 0.0731467604637146, + -0.07865222543478012, + 0.03189803659915924, + -0.040096215903759, + 0.014042825438082218, + -0.012426208704710007, + -0.03870760276913643, + -0.010302468203008175, + -0.0031024767085909843, + -0.09451282024383545, + -0.05794670432806015, + -0.006566944066435099, + 0.04237910360097885, + -0.03030804544687271, + -0.11967235803604126, + 0.02398136630654335, + -0.008688127622008324, + -0.07234147936105728, + -0.01794467866420746, + -0.04738208279013634, + 0.014748439192771912, + -0.06972412765026093, + -5.759699617951026e-34, + -0.05837995186448097, + 0.021416528150439262, + -0.023160697892308235, + 0.08426503092050552, + -0.012544432654976845, + 0.02196444757282734, + 0.032851479947566986, + -0.05244448035955429, + -0.032504308968782425, + -0.00865949410945177, + 0.033627450466156006, + -0.00833975337445736, + -0.019141128286719322, + -0.07653196156024933, + 0.07323644310235977, + 0.06391923129558563, + 0.005487686023116112, + -0.017849750816822052, + -0.02334640361368656, + 0.02842498943209648, + -0.035218849778175354, + 0.02317854017019272, + -0.04731376841664314, + 0.03677864372730255, + 0.01787620782852173, + 0.04406177997589111, + -0.02524949237704277, + -0.08629293739795685, + -0.107539601624012, + 0.04778803884983063, + 0.0022088957484811544, + -0.037592899054288864, + 0.015511778183281422, + 0.07855375111103058, + -0.10514350235462189, + -0.05385678634047508, + 0.03389853984117508, + -0.01727539300918579, + 0.09097117185592651, + -0.026756402105093002, + 0.011605273932218552, + 0.017078084871172905, + 0.07609526813030243, + 0.08373822271823883, + -0.09480675309896469, + -0.03568414971232414, + -0.038817405700683594, + -0.05987642705440521, + -0.021242301911115646, + 0.08538249135017395, + -0.032853178679943085, + 0.02867922931909561, + 0.04289548471570015, + -0.02903035283088684, + -0.001212917035445571, + -0.05290316790342331, + -0.006966301240026951, + -0.07523269206285477, + 0.02608560398221016, + 0.06520719826221466, + -0.011648641899228096, + -0.03842949494719505, + 0.08519623428583145, + 0.09003022313117981, + 0.027707623317837715, + -0.04302534833550453, + 0.05542191490530968, + -0.061328865587711334, + -0.08474110066890717, + 0.023961694911122322, + 0.08943569660186768, + 0.02776481956243515, + 0.09635613858699799, + -0.03536219522356987, + 0.07308301329612732, + -0.015581255778670311, + 0.021646417677402496, + 0.010992052964866161, + -0.04607993736863136, + 0.020213112235069275, + -0.014376895502209663, + -0.077194944024086, + 0.030343417078256607, + 0.08403229713439941, + -0.020536717027425766, + -0.021763093769550323, + -0.039814695715904236, + 0.08464967459440231, + 0.02921888791024685, + 0.010887320153415203, + -0.013832763768732548, + 0.0191456601023674, + 0.06613955646753311, + -0.012912061996757984, + 0.013334948569536209, + -2.038619584254775e-08, + 0.02122448943555355, + -0.031983304768800735, + -0.06649914383888245, + -0.09659845381975174, + 0.03999887406826019, + 0.032580334693193436, + -0.07212333381175995, + -0.027177272364497185, + -0.037054792046546936, + -0.0035186370369046926, + 0.06712613999843597, + -0.016466956585645676, + -0.04781244322657585, + 0.024441968649625778, + 0.014206531457602978, + -0.021480320021510124, + -0.077939473092556, + 0.06110134720802307, + -0.01055386383086443, + -0.13521143794059753, + 0.005396176129579544, + -0.017500445246696472, + 0.15573066473007202, + -0.022953320294618607, + -0.010913485661149025, + -0.004308475647121668, + -0.05474449321627617, + 0.019705526530742645, + 0.10274999588727951, + 0.11270929127931595, + -0.016664661467075348, + 0.022838283330202103, + 0.0596923828125, + -0.08230342715978622, + -0.05874399468302727, + 0.003299955977126956, + -0.010893842205405235, + 0.058390241116285324, + -0.01149929128587246, + 0.055600136518478394, + -0.017245307564735413, + 0.015380456112325191, + -0.03795313835144043, + -0.016839610412716866, + -0.08401179313659668, + 0.06345825642347336, + -0.08607617020606995, + 0.02319432608783245, + -0.12793448567390442, + -0.1080624982714653, + -0.08745411038398743, + 0.057157956063747406, + 0.0002424038393655792, + 0.05102340131998062, + -0.034262292087078094, + -0.009289424866437912, + 0.04768769070506096, + 0.005635194480419159, + -0.0005643972544930875, + -0.012151909992098808, + 0.030668390914797783, + -0.02179243415594101, + 0.005161651875823736, + -0.024466508999466896 + ], + "ny-times-logo-bold||nyt,new york times,logos,reading,writing,news,newspaper": [ + 0.04992009699344635, + -0.021985383704304695, + 0.012406010180711746, + 0.008377594873309135, + 0.05843745917081833, + -0.0008308307733386755, + 0.024537542834877968, + -0.018438871949911118, + 0.01803506165742874, + -0.0706661269068718, + -0.04513799399137497, + 0.11692900210618973, + -0.047609444707632065, + 0.011317042633891106, + -0.015384930185973644, + 0.009751089848577976, + 0.03837894648313522, + 0.029977869242429733, + 0.08786041289567947, + 0.0070683835074305534, + 0.06102042272686958, + -0.015792768448591232, + 0.05216428264975548, + 0.03026270866394043, + 0.036729808896780014, + 0.04376186802983284, + -0.049117572605609894, + -0.0426635816693306, + -0.035091351717710495, + -0.08466878533363342, + -0.10093969851732254, + -0.04598092660307884, + 0.031868547201156616, + -0.005674633663147688, + 0.053822293877601624, + 0.004872211720794439, + 0.09498023241758347, + 0.030212216079235077, + 0.11798900365829468, + 0.08201589435338974, + 0.04744165763258934, + -0.0759972557425499, + -0.02586471661925316, + 0.04114935174584389, + -0.012729092501103878, + 0.027402391657233238, + -0.07929034531116486, + 0.0704699456691742, + -0.01429116353392601, + 0.041101377457380295, + -0.008274700492620468, + -0.11146669834852219, + -0.08067402988672256, + -0.027584807947278023, + 0.05276525765657425, + -0.05991492420434952, + -0.03992348909378052, + 0.031281109899282455, + -0.03027288243174553, + -0.005781655199825764, + -0.004118951503187418, + 0.05780833959579468, + -0.04185217246413231, + 0.14689110219478607, + 0.09292574226856232, + -0.03518377244472504, + -0.015401062555611134, + 0.023030400276184082, + -0.12577249109745026, + -0.08150488883256912, + 0.047723714262247086, + 0.047125596553087234, + 0.004233631305396557, + -0.03570942208170891, + -0.048525769263505936, + -0.023708535358309746, + 0.06337928771972656, + -0.0026386133395135403, + -0.054571282118558884, + -0.01908930018544197, + 0.0038283132016658783, + 0.020728828385472298, + -0.012322814203798771, + 0.035822924226522446, + 0.0029078368097543716, + 0.06310731917619705, + -0.13980016112327576, + -0.0012563701020553708, + 0.014126846566796303, + -0.011871745809912682, + -0.10828720033168793, + -0.016986094415187836, + 0.03142108395695686, + 0.009566589258611202, + -0.0810813158750534, + 0.015327525325119495, + -0.014199072495102882, + 0.028202904388308525, + -0.030235081911087036, + 0.06097882241010666, + -0.041060592979192734, + 0.015272068791091442, + 0.05045599862933159, + -0.003252496710047126, + 0.04895109683275223, + -0.05665436014533043, + -0.012175879441201687, + -0.04521750286221504, + -0.014709362760186195, + 0.10153825581073761, + -0.009959843941032887, + 0.03679439797997475, + -0.10729256272315979, + 0.011892818845808506, + -0.04151605814695358, + -0.11985564976930618, + -0.07141759991645813, + -0.027052683755755424, + 0.09472798556089401, + -0.03767479583621025, + -0.05105024576187134, + 0.0642072930932045, + -0.057407837361097336, + -0.06168190389871597, + -0.10368720442056656, + -0.006941397674381733, + 0.005942606367170811, + -4.1699688639161375e-33, + -0.01402333378791809, + 0.06338385492563248, + 0.03240322321653366, + 0.05776194855570793, + -0.03371932730078697, + 0.042874980717897415, + -0.03830038756132126, + -0.0926520898938179, + -0.018985973671078682, + 0.015853973105549812, + 0.00018209537665825337, + 0.04901677742600441, + 0.0006721295067109168, + 0.032286323606967926, + 0.021070171147584915, + -0.021810946986079216, + -0.0040354677475988865, + -0.019895723089575768, + -0.06957399100065231, + -0.05792215093970299, + -0.0025852713733911514, + 0.03837902471423149, + -0.0367160364985466, + -0.013166885823011398, + -0.06408050656318665, + -0.08596393465995789, + -0.0056796567514538765, + -0.020469559356570244, + -0.06332990527153015, + 0.010249863378703594, + 0.054596900939941406, + 0.02096170000731945, + 0.016360001638531685, + 0.03139447793364525, + 0.016363702714443207, + -0.023937547579407692, + -0.008053915575146675, + -0.06557165086269379, + 0.03513795882463455, + 0.01794186607003212, + -0.04849926754832268, + -0.02582029066979885, + -0.024744156748056412, + 0.043015457689762115, + 0.07892797887325287, + 0.17781953513622284, + -0.002854076214134693, + -0.03811970353126526, + 0.07250820100307465, + -0.002795227337628603, + -0.0011819745413959026, + -0.020355988293886185, + -0.08777070045471191, + -0.06036004424095154, + -0.009144393727183342, + -0.019492972642183304, + 0.036426544189453125, + -0.006281896494328976, + 0.01313815638422966, + -0.006065174005925655, + 0.012934108264744282, + 0.028206704184412956, + 0.06015254184603691, + 0.011803803965449333, + -0.044553760439157486, + 0.049182116985321045, + 0.0035349330864846706, + 0.01968003623187542, + 0.06718369573354721, + 0.04640407860279083, + 0.018143318593502045, + 0.01332023087888956, + 0.03877835348248482, + 0.042118944227695465, + -0.01616930030286312, + 0.023279739543795586, + 0.031641487032175064, + 0.04293603450059891, + 0.01702156849205494, + 0.026315977796912193, + -0.006849145516753197, + -0.015214594081044197, + 0.019551001489162445, + 0.02759920060634613, + 0.07481098175048828, + 0.02928454987704754, + 0.08618085831403732, + -0.017702985554933548, + -0.015123856253921986, + 0.041588880121707916, + -0.059194713830947876, + 0.02855619043111801, + -0.01407667063176632, + -0.005150607321411371, + -0.11201779544353485, + 6.645761086484461e-34, + -0.013389544561505318, + -0.07785750180482864, + 0.05954385921359062, + -0.023572184145450592, + -0.10711461305618286, + -0.016962707042694092, + -0.0058483243919909, + 0.05810200423002243, + -0.008672237396240234, + 0.03426336124539375, + 0.03931838646531105, + -0.03808574378490448, + -0.05920758843421936, + 0.046546436846256256, + -0.058821339160203934, + -0.006727598607540131, + 0.05116376653313637, + 0.011432384140789509, + -0.11672819405794144, + 0.028945615515112877, + 0.040736645460128784, + -0.028709132224321365, + -0.09873411059379578, + 0.0749727413058281, + 0.003627408528700471, + 0.0032259474974125624, + 0.04788830876350403, + -0.05845452845096588, + -0.08559644967317581, + -0.01588112860918045, + -0.07471750676631927, + -0.035320501774549484, + 0.03529387712478638, + 0.04932436719536781, + 0.0006965328357182443, + 0.07872239500284195, + 0.03621060773730278, + -0.0692470595240593, + 0.01489535067230463, + -0.023394908756017685, + -0.012041492387652397, + -0.0016311899526044726, + 0.0267906803637743, + 0.04721102863550186, + -0.03462861850857735, + 0.020411672070622444, + -0.10599184781312943, + -0.06765782833099365, + -0.02890835516154766, + 0.09909472614526749, + -0.07629110664129257, + -0.025615518912672997, + -0.02586904913187027, + 0.052485689520835876, + -0.07322534918785095, + 0.007136821746826172, + -0.0578434132039547, + 0.008308022283017635, + -0.04574470967054367, + 0.007450176402926445, + -0.016856197267770767, + 0.06188344210386276, + -0.08894503861665726, + 0.06323079019784927, + 0.020347146317362785, + -0.09767288714647293, + 0.05684569850564003, + -0.10317179560661316, + -0.01367822103202343, + 0.05278202146291733, + 0.024440262466669083, + 0.04408307373523712, + -0.02765447460114956, + -0.06725244969129562, + -0.07049722224473953, + -0.0497656911611557, + 0.05000317096710205, + 0.0637621060013771, + -0.06898850947618484, + 0.08041147887706757, + 0.015336540527641773, + 0.02924039401113987, + -0.0759698897600174, + 0.08424602448940277, + 0.059168651700019836, + 0.04327089339494705, + 0.018434330821037292, + -0.03271295502781868, + -0.058888040482997894, + 0.013133954256772995, + 0.025844667106866837, + 0.04900266230106354, + -0.019065329805016518, + 0.053671739995479584, + -0.029347306117415428, + -2.3022083794899117e-08, + -0.016947556287050247, + -0.031124141067266464, + -0.021505363285541534, + -0.008086132816970348, + 0.028086666017770767, + -0.028288671746850014, + -0.02402646839618683, + -0.1133546307682991, + -0.025984862819314003, + 0.02477608434855938, + 0.02690374106168747, + -0.017630357295274734, + -0.12257618457078934, + -0.021338002756237984, + -1.8948718206956983e-05, + -0.06470987945795059, + -0.06901746988296509, + 0.04273108392953873, + 0.013842585496604443, + -0.02877933904528618, + 0.0041113183833658695, + 0.05878464877605438, + 0.07063350081443787, + -0.006842455826699734, + 0.03745221719145775, + 0.047692883759737015, + -0.00814314279705286, + -0.04918503016233444, + 0.07902718335390091, + 0.02003650553524494, + -0.008166964165866375, + 0.10410360246896744, + -0.013090796768665314, + -0.022841304540634155, + -0.08058223873376846, + -0.015905436128377914, + 0.029118038713932037, + 0.022303512319922447, + -0.012237596325576305, + 0.06988319754600525, + 0.02565804496407509, + -0.054247308522462845, + 0.011581489816308022, + 0.019255056977272034, + 0.04922528937458992, + 0.008440706878900528, + 0.040517255663871765, + 0.02931753732264042, + 0.021424833685159683, + -0.1424698680639267, + 0.02106761746108532, + -0.03049815259873867, + 0.07652556151151657, + -0.016221050173044205, + -0.05390840396285057, + -0.004387742839753628, + 0.012488082982599735, + 0.06179512292146683, + -0.00034794077510014176, + -0.0010735448449850082, + 0.09408701211214066, + -0.08045585453510284, + 0.040666744112968445, + 0.03354781121015549 + ], + "octagon-bold||8,shapes,polygons": [ + 0.0426722951233387, + 0.014539570547640324, + -0.007590634282678366, + 0.07808494567871094, + -0.04073328897356987, + -0.03643409535288811, + 0.015771226957440376, + 0.011140071786940098, + 0.023366454988718033, + -0.048778679221868515, + -0.02213364653289318, + -0.04658275470137596, + -0.06398548185825348, + 0.0015494002727791667, + -0.017803410068154335, + 0.008355701342225075, + 0.004545900505036116, + 0.014949274249374866, + -0.03735783323645592, + 0.05290374159812927, + 0.04031388834118843, + -0.05410311371088028, + 0.045208923518657684, + 0.04108073189854622, + 0.01367693580687046, + 0.05178093537688255, + 0.06447010487318039, + 0.013833208940923214, + 0.026002973318099976, + -0.08953140676021576, + -0.01109288353472948, + -0.004738069139420986, + 0.09783840924501419, + 0.00306215463206172, + 0.021029936149716377, + -0.015406785532832146, + -0.01699179597198963, + 0.01129407063126564, + 0.05730394273996353, + 0.08618849515914917, + -0.0027429673355072737, + -0.04006446525454521, + 0.07131370902061462, + -0.007051627617329359, + -0.030040157958865166, + 0.01593552716076374, + -0.0700976699590683, + 0.06496240198612213, + 0.00927771907299757, + -0.050919435918331146, + 0.03554637357592583, + -0.1779365837574005, + -0.14980748295783997, + 0.053157608956098557, + 0.016409896314144135, + -0.021969567984342575, + -0.08041089028120041, + -0.0610879547894001, + 0.03528355062007904, + -0.050668686628341675, + 0.05706683173775673, + 0.040210410952568054, + 0.03653956949710846, + 0.0646553710103035, + -0.05345207825303078, + 0.053424786776304245, + 0.005613047629594803, + 0.003836053889244795, + -0.038565728813409805, + 0.05051665008068085, + 0.09560640901327133, + 0.128639817237854, + -0.03042997419834137, + -0.06835348904132843, + 0.0025360172148793936, + 0.0002626761270221323, + 0.003367754863575101, + -0.04575462266802788, + -0.00881935004144907, + -0.07330687344074249, + -0.07073897123336792, + -0.015969613566994667, + 0.01013618241995573, + 0.030983703210949898, + 0.011300086043775082, + 0.06502705067396164, + -0.139652818441391, + -0.0485636331140995, + -0.05900530889630318, + 0.02354111149907112, + -0.027407508343458176, + 0.07332997024059296, + 0.030543707311153412, + -0.018714064732193947, + -0.032889921218156815, + -0.0041558584198355675, + 0.06816961616277695, + 0.011485702358186245, + -0.06492572277784348, + 0.06349451094865799, + 0.08199448883533478, + -0.03243987634778023, + -0.0036064537707716227, + -0.008207854814827442, + 0.007753818295896053, + 0.04083957523107529, + 0.007063923869282007, + -0.005153821315616369, + 0.020754583179950714, + 0.024378923699259758, + -0.03671231120824814, + -0.07873415946960449, + 0.02089172787964344, + -0.08032605797052383, + -0.0717996209859848, + -0.037227850407361984, + -0.07637199014425278, + -0.016024816781282425, + 0.03991958498954773, + 0.08388005197048187, + -0.04580504447221756, + -0.030309457331895828, + -0.01439982932060957, + -0.006619994528591633, + 0.014655721373856068, + 0.03620321676135063, + -0.02762005105614662, + -1.8753186677705976e-33, + 0.0391598641872406, + 0.012266973033547401, + -0.016011321917176247, + 0.04545934125781059, + 0.021927542984485626, + -0.08964981138706207, + 0.02940567582845688, + -0.09190327674150467, + -0.028869088739156723, + 0.07353001832962036, + -0.10509343445301056, + 0.07297021150588989, + -0.027311673387885094, + 0.04179231449961662, + 0.16073869168758392, + -0.0430794283747673, + 0.026880739256739616, + 0.007839590311050415, + -0.09848804026842117, + -0.015881625935435295, + 0.018975142389535904, + -0.005830993410199881, + -0.05449721962213516, + -0.058106571435928345, + -0.03302815929055214, + 0.013718511909246445, + 0.047293491661548615, + 0.046330180019140244, + -0.03963610157370567, + 0.012126948684453964, + -0.0062063634395599365, + 0.031841132789850235, + -0.016513381153345108, + 0.02748275175690651, + 0.013607414439320564, + -0.014232274144887924, + -0.003717404790222645, + -0.026790034025907516, + 0.0002724884543567896, + 0.01173102855682373, + 0.011748472228646278, + -0.017047295346856117, + -0.0004568088916130364, + 0.005542942322790623, + 0.07767260074615479, + 0.10744409263134003, + 0.0004998522927053273, + -0.06973087042570114, + 0.08908934146165848, + 0.03817302733659744, + 0.043258704245090485, + 0.05063243955373764, + -0.01996922492980957, + 0.03442880138754845, + -0.02940285950899124, + -0.05627179890871048, + -0.03442773595452309, + 0.09843067824840546, + -0.033420734107494354, + 0.03672803193330765, + 0.039076048880815506, + 0.02700488455593586, + 0.059918537735939026, + -0.04212058708071709, + -0.11539723724126816, + 0.016763700172305107, + -0.08848445117473602, + -0.007145673036575317, + 0.0490955226123333, + -0.08006878942251205, + -0.0035622394643723965, + 0.027503589168190956, + 0.013575228862464428, + 0.005566178821027279, + 0.0188156608492136, + 0.0459262877702713, + -0.0473862886428833, + 0.0035698956344276667, + 0.0385715588927269, + 0.010121017694473267, + 0.014276516623795033, + -0.017105266451835632, + -0.07997076958417892, + -0.08076999336481094, + -0.006524267606437206, + 0.030127601698040962, + 0.0646757036447525, + -0.0004606942820828408, + -0.019139401614665985, + 0.048514433205127716, + -0.07836032658815384, + -0.09096521139144897, + 0.03229065239429474, + 0.0029609533958137035, + -0.056267865002155304, + -8.841885754247892e-34, + -0.11582336574792862, + 0.0002974168455693871, + -0.038773007690906525, + -0.0951150432229042, + -0.006140979938209057, + 0.04491765424609184, + -0.00944324117153883, + 0.031450431793928146, + -0.06546254456043243, + 0.004119358025491238, + -0.012485274113714695, + 0.06642521917819977, + 0.013244954869151115, + -0.035785313695669174, + 0.00020291413238737732, + -0.02352755330502987, + -0.03816068544983864, + 0.04016808420419693, + -0.0212712399661541, + -0.04794241487979889, + -0.056903254240751266, + -0.0399562232196331, + -0.10417775809764862, + 0.06392029672861099, + -0.007805238012224436, + 0.054199833422899246, + -0.022534046322107315, + -0.049741197377443314, + 0.060999903827905655, + 0.023717906326055527, + -0.013425079174339771, + -0.05929919332265854, + 0.025439871475100517, + 0.1236867755651474, + -0.060969483107328415, + -0.041574764996767044, + 0.033031001687049866, + -0.06359528005123138, + 0.06875065714120865, + -0.00681665726006031, + 0.030729060992598534, + -0.05568718537688255, + 0.047821879386901855, + 0.14169198274612427, + -0.05517090484499931, + 0.03316788375377655, + 0.00850105844438076, + -0.027221696451306343, + -0.03937758877873421, + 0.05382521450519562, + -0.04683975502848625, + -0.021184595301747322, + 0.03298700973391533, + 0.022270314395427704, + 0.04559891298413277, + -0.037940192967653275, + -0.06902136653661728, + 0.014321397989988327, + 0.021852314472198486, + 0.049825314432382584, + -0.05693976208567619, + -0.003034840105101466, + 0.024266326799988747, + 0.04790940880775452, + 0.037466924637556076, + 0.02541555091738701, + 0.06108127534389496, + -0.07361964136362076, + -0.05472233146429062, + 0.031062930822372437, + 0.08019032329320908, + 0.01929059810936451, + -0.07675304263830185, + 0.0370834544301033, + 0.081402488052845, + -0.05413141846656799, + 0.027538197115063667, + 0.04555200785398483, + -0.006085953675210476, + 0.06929108500480652, + -0.12498699873685837, + -0.06549040228128433, + 0.02936016395688057, + 0.05331913009285927, + 0.00041998797678388655, + -0.022125789895653725, + 0.08012039959430695, + 0.015592704527080059, + 0.02386166900396347, + 0.04618997871875763, + -0.0075920345261693, + 0.03345036134123802, + 0.029383353888988495, + -0.03919195383787155, + 0.015116933733224869, + -1.7232217430773744e-08, + 0.044886380434036255, + -0.08632384985685349, + -0.0324016697704792, + -0.057824742048978806, + 0.026693709194660187, + -0.05685798078775406, + -0.03747975826263428, + -0.06701629608869553, + -0.1255338490009308, + -0.0024453913792967796, + 0.06251370906829834, + 0.0068114823661744595, + -0.06781427562236786, + 0.025591669604182243, + 0.015108137391507626, + -0.055894240736961365, + 0.023637691512703896, + 0.05807559937238693, + 0.015263019129633904, + -0.06707166135311127, + -0.0202333927154541, + 0.022180231288075447, + 0.09061188995838165, + -0.006088143680244684, + 0.04170640558004379, + 0.020706556737422943, + -0.03994893282651901, + 0.027962127700448036, + 0.013036184944212437, + 0.07805737107992172, + 0.020727936178445816, + 0.08913125097751617, + 0.003361647017300129, + -0.02539035491645336, + -0.05763506144285202, + -0.003451926400884986, + -0.03992792218923569, + 0.03510433807969093, + -0.06758299469947815, + 0.05602490156888962, + -0.0006838326808065176, + -0.06335841119289398, + 0.040258634835481644, + -0.04206744581460953, + 0.062480129301548004, + 0.022129187360405922, + 0.05581064522266388, + -0.0010213811183348298, + -0.048146672546863556, + -0.07539058476686478, + -0.07471028715372086, + -0.022751785814762115, + -0.0015614369185641408, + 0.0631413608789444, + -0.06154997646808624, + -0.12519510090351105, + 0.026896081864833832, + -0.0011106313904747367, + 0.0011215930571779609, + 0.04966145008802414, + 0.09699152410030365, + 0.013355370610952377, + 0.009333204478025436, + -0.06140800565481186 + ], + "office-chair-bold||furniture,seat": [ + 0.033120475709438324, + 0.0032168817706406116, + -0.01637428067624569, + 0.026437891647219658, + -0.014500495046377182, + 0.002706142608076334, + 0.05789877101778984, + -0.08477801829576492, + 0.03966768831014633, + 0.03799226135015488, + -0.010879624634981155, + -0.003713915590196848, + 0.09688607603311539, + -0.06885658949613571, + -0.03574332967400551, + -0.01553218625485897, + 0.0592934787273407, + 0.02906646393239498, + 0.03798342123627663, + 0.11864013224840164, + -0.024147721007466316, + 0.08002620190382004, + -0.015972711145877838, + 0.03166777268052101, + 0.01745316945016384, + -0.019872143864631653, + 0.04352431371808052, + -0.011409864760935307, + -0.011608791537582874, + -0.035307303071022034, + -0.010717982426285744, + -0.0816224068403244, + 0.07062651216983795, + 0.02570885606110096, + 0.024787547066807747, + -0.017393892630934715, + 0.002160409465432167, + -0.04303211718797684, + 0.06159774959087372, + 0.03587202727794647, + -0.057680197060108185, + -0.050490111112594604, + 0.003351017367094755, + 0.0008091595373116434, + -0.011540232226252556, + -0.018774423748254776, + -0.06378044933080673, + -0.03981132060289383, + 0.03692515939474106, + 0.025935176759958267, + -0.05859152600169182, + -0.10585831105709076, + -0.07309769839048386, + 0.016329584643244743, + -0.00799281895160675, + 0.02989007905125618, + -0.03496241569519043, + -0.005203958600759506, + 0.009602907113730907, + -0.023018285632133484, + 0.05706261098384857, + -0.034765057265758514, + 0.06251823157072067, + 0.06898758560419083, + -0.02001922018826008, + 0.018157092854380608, + -0.05405983328819275, + -0.06533154845237732, + -0.11374203860759735, + 0.02944423258304596, + -0.04523006081581116, + 0.016219571232795715, + 0.02432692050933838, + -0.052585847675800323, + -0.03200383484363556, + -0.0031239064410328865, + 0.01570960506796837, + -0.01272853184491396, + 0.05967202037572861, + 0.004530685488134623, + -0.06818986684083939, + -0.011945194564759731, + -0.05646154657006264, + 0.01445303950458765, + 0.021750951185822487, + 0.051124513149261475, + -0.04264335334300995, + -0.02323669195175171, + -0.12536580860614777, + -0.06886187940835953, + 0.002560748253017664, + 0.006408467423170805, + -0.013253273442387581, + 0.0551590695977211, + -0.12956881523132324, + 0.04688463732600212, + 0.024321066215634346, + 0.0542001836001873, + 0.024587424471974373, + 0.05110469460487366, + -0.028775470331311226, + 0.09118327498435974, + 0.052470725029706955, + -0.004983983002603054, + -0.13731667399406433, + -0.06864890456199646, + -0.015005774796009064, + -0.07978875190019608, + 0.0047113955952227116, + -0.04616260156035423, + -0.057135581970214844, + -0.09764429926872253, + -0.05323602631688118, + -0.040623873472213745, + -0.10129782557487488, + 0.017690766602754593, + -0.06279971450567245, + -0.10037636011838913, + 0.10311303287744522, + -0.02922760508954525, + 0.007222771178930998, + 0.017759347334504128, + -0.03137388825416565, + 0.053816892206668854, + -0.0301494337618351, + 0.00232117366977036, + 0.08333561569452286, + -4.347442429609394e-33, + 0.017764989286661148, + 0.0005267685046419501, + 0.014805808663368225, + 0.08700470626354218, + 0.09049369394779205, + 0.027275001630187035, + -0.021495947614312172, + 0.03650784119963646, + -0.0012772739864885807, + 0.040905434638261795, + 0.0019919818732887506, + -0.04304615408182144, + 0.008508111350238323, + -0.023223409429192543, + 0.030949385836720467, + -0.002624346176162362, + 0.013812593184411526, + -0.03689611703157425, + -0.12921638786792755, + 0.05639076605439186, + -0.0010014533763751388, + 0.11700726300477982, + -0.03218095377087593, + 0.0068670171312987804, + -0.02351006492972374, + 0.01649189181625843, + 0.015473083592951298, + -0.03943997621536255, + -0.03046819567680359, + 0.03488253802061081, + 0.02189798094332218, + 0.017928073182702065, + -0.054064974188804626, + 0.009734952822327614, + -0.06263380497694016, + -0.04573550447821617, + -0.06038077548146248, + -0.008454715833067894, + 0.011065008118748665, + 0.020602481439709663, + -0.0904945656657219, + 0.046839941293001175, + 0.042363446205854416, + 0.03145157918334007, + 0.012414352968335152, + 0.11788708716630936, + 0.032597750425338745, + -0.001917489804327488, + -0.0007433545542880893, + -0.008515570312738419, + -0.060173653066158295, + 0.08646615594625473, + 0.01578562520444393, + 0.039563558995723724, + -0.02735944464802742, + -0.09468161314725876, + 0.014605444855988026, + 0.06217131391167641, + 0.013586362823843956, + -0.026899071410298347, + 0.023447398096323013, + 0.04341033473610878, + 0.10000807046890259, + -0.028642361983656883, + -0.051171425729990005, + -0.000479106412967667, + -0.015576455742120743, + -0.006187856663018465, + 0.17074380815029144, + 0.042170021682977676, + 0.060928620398044586, + 0.028874065726995468, + 0.019813906401395798, + 0.050910573452711105, + -0.02927897498011589, + 0.01199744176119566, + 0.02669857069849968, + -0.046851158142089844, + 0.0067474571987986565, + -0.14643871784210205, + -0.08627967536449432, + 0.05090942978858948, + -0.006025703623890877, + 0.07827305048704147, + -0.012450764887034893, + -0.038388025015592575, + -0.027886513620615005, + -0.06125359237194061, + -0.025097811594605446, + 0.07828628271818161, + -0.06766734272241592, + -0.02410542219877243, + -0.03779592365026474, + -0.028450554236769676, + -0.07144040614366531, + 1.6080209410384541e-34, + 0.13062359392642975, + -0.036311957985162735, + -0.07801496237516403, + -0.05774073675274849, + 0.008878600783646107, + -0.006244845688343048, + -0.030594903975725174, + -0.015690164640545845, + -0.06968587636947632, + 0.03003334067761898, + 0.016304215416312218, + -0.007351631298661232, + 0.013972942717373371, + -0.023704109713435173, + 0.06859404593706131, + 0.03013046272099018, + 0.04774702712893486, + 0.04078444465994835, + -0.05691831558942795, + 0.030545515939593315, + 0.025899995118379593, + -0.00848397146910429, + -0.003542928956449032, + 0.06075819954276085, + 0.0033327152486890554, + -0.016680987551808357, + 0.046156156808137894, + -0.027108142152428627, + -0.052274156361818314, + -0.004746275953948498, + -0.11170251667499542, + -0.006500717252492905, + -0.011057713069021702, + 0.10481151938438416, + -0.041541412472724915, + 0.02352847345173359, + -0.06813455373048782, + -0.0748782679438591, + -0.0023753580171614885, + 0.03460519760847092, + 0.07018832862377167, + -0.027131162583827972, + 0.030904186889529228, + 0.09839562326669693, + 0.0201224647462368, + -0.08201216906309128, + -0.12459632009267807, + -0.053302615880966187, + -0.013830338604748249, + 0.0360279344022274, + -0.021827589720487595, + -0.001233134069480002, + 0.009522641077637672, + -0.007533831521868706, + -0.011891540139913559, + 0.02972479723393917, + -0.04760930314660072, + -0.08195002377033234, + 0.016863245517015457, + 0.10401316732168198, + -0.03754572570323944, + 0.08260109275579453, + -0.0428696945309639, + 0.051367487758398056, + 0.03507531061768532, + 0.03814682736992836, + -0.039319347590208054, + -0.02473040297627449, + 0.029956186190247536, + 0.007481700275093317, + 0.04578893259167671, + -0.013120354153215885, + -0.012218079529702663, + 0.10589223355054855, + -0.00033385708229616284, + -0.04008980840444565, + 0.1039978563785553, + 0.033969368785619736, + 0.00516893295571208, + 0.017666954547166824, + -0.044401250779628754, + -0.035032376646995544, + 0.06818056106567383, + -0.01840957999229431, + -0.012370755895972252, + 0.040907569229602814, + -0.036166030913591385, + -0.018089622259140015, + -0.09448093175888062, + -0.007144653704017401, + -0.018014781177043915, + 0.06487064808607101, + -0.0117582306265831, + -0.018266597762703896, + -0.017724644392728806, + -1.620171552474403e-08, + -0.05402695760130882, + -0.021891867741942406, + 0.0009525511413812637, + -0.037510789930820465, + -0.013014039024710655, + -0.10814443975687027, + 0.005973509978502989, + -0.04412320256233215, + -0.06039535999298096, + -0.013825072906911373, + 0.02766704186797142, + -0.03993551805615425, + -0.004316165577620268, + 0.02022504061460495, + 0.05333758145570755, + 0.08948127925395966, + -0.0975944921374321, + 0.06153053790330887, + -0.05972957983613014, + 0.004673579707741737, + -0.013648533262312412, + -0.025169778615236282, + 0.031041577458381653, + -0.010567528195679188, + 0.05366750806570053, + 0.008499979972839355, + -0.06079348176717758, + 0.04613284766674042, + 0.060616109520196915, + 0.12227809429168701, + 0.06290066242218018, + 0.05901102349162102, + -0.0387631356716156, + 0.018584933131933212, + -0.06349366158246994, + 0.027099980041384697, + -0.04061197116971016, + -0.05949624255299568, + 0.024833915755152702, + 0.07535655051469803, + -0.07934270054101944, + -0.07486829161643982, + -0.01101655513048172, + -0.022612161934375763, + 0.05162716284394264, + -0.0010179399978369474, + 0.05636777728796005, + 0.00041152158519253135, + 0.0007800323655828834, + -0.043484967201948166, + -0.015033281408250332, + -0.04695863276720047, + 0.020771967247128487, + 0.043572764843702316, + -0.0735936164855957, + -0.05577339604496956, + 0.07802750915288925, + 0.06052530184388161, + -0.02954678423702717, + 0.053370047360658646, + 0.10913573205471039, + 0.04812605679035187, + 0.01534194964915514, + 0.003329608356580138 + ], + "onigiri-bold||*new*,rice ball,japanese,food,restaurant": [ + -0.03150760009884834, + -0.028014402836561203, + -0.022644562646746635, + 0.08472225815057755, + -0.025660019367933273, + -0.018243463709950447, + 0.0510665588080883, + -0.08045640587806702, + 0.013960184529423714, + -0.06749186664819717, + 0.13302592933177948, + -0.06442820280790329, + -0.05292202904820442, + -0.009257142432034016, + 0.07930437475442886, + -0.04098490625619888, + 0.1237366795539856, + -0.018859947100281715, + -0.03187812864780426, + -0.07517276704311371, + 0.046785496175289154, + 0.03076792322099209, + 0.03309165686368942, + 0.028974100947380066, + 0.0718490332365036, + 0.002945783780887723, + 0.04056413099169731, + 0.012652656063437462, + 0.016331149265170097, + -0.08632989227771759, + -0.04874822869896889, + 0.03943638876080513, + 0.0755096822977066, + 0.001041723066009581, + 0.047598034143447876, + 0.03685228154063225, + -0.007250277325510979, + -0.040321461856365204, + 0.0961291715502739, + 0.012552325613796711, + -0.045799702405929565, + -0.05926419422030449, + 0.04085460677742958, + -0.01615465059876442, + -0.04749096930027008, + 0.0022871552500873804, + -0.06917033344507217, + -0.04122808948159218, + 0.03428465873003006, + 0.02745264209806919, + -0.08825428783893585, + -0.0218204278498888, + -0.014997814781963825, + 0.07329829037189484, + 0.07681833952665329, + -0.017427794635295868, + -0.058485906571149826, + -0.04289170727133751, + 0.008592650294303894, + 0.06730575859546661, + 0.024941546842455864, + -0.0021082235034555197, + 0.034410204738378525, + 0.05895501747727394, + -0.10252456367015839, + -0.07292603701353073, + -0.09807915985584259, + 0.009540681727230549, + -0.00959005393087864, + -0.04473216086626053, + 0.05500195920467377, + 0.006304383277893066, + 0.08614882081747055, + 0.02238682471215725, + -0.06403109431266785, + -0.10820484161376953, + 0.060563281178474426, + -0.04005676135420799, + -0.0763193815946579, + -0.029562462121248245, + -0.026798345148563385, + -0.026294436305761337, + -0.0006508290534839034, + -0.02265305630862713, + -0.02939755655825138, + 0.042313408106565475, + -0.07700254023075104, + 0.007044163066893816, + 0.03227320685982704, + -0.0266526211053133, + -0.0007652093190699816, + 0.05039647966623306, + -0.009937657974660397, + 0.02306179143488407, + 0.02550225332379341, + 0.019557978957891464, + -0.030571961775422096, + -0.06644625216722488, + -0.0362861193716526, + 0.09814206510782242, + 0.0032858988270163536, + 0.021121956408023834, + 0.0259257685393095, + 0.04348716884851456, + -0.08024858683347702, + -0.034326061606407166, + -0.031105192378163338, + -0.08238225430250168, + 0.011847540736198425, + 0.04355785250663757, + 0.03282947093248367, + -0.09286734461784363, + -0.005884162615984678, + 0.029033832252025604, + -0.08017519861459732, + 0.001219400204718113, + -0.0177532359957695, + -0.04309805855154991, + 0.0027317323256284, + 0.01972840167582035, + 0.017865365371108055, + -0.06779804825782776, + -0.07418502867221832, + -0.009575906209647655, + -0.06309690326452255, + 0.07032126933336258, + -0.06617715954780579, + -1.4111434992797237e-33, + 0.046669214963912964, + 0.02604239247739315, + -0.03691684082150459, + 0.056167121976614, + -0.023615170270204544, + -0.07627076655626297, + -0.03290067985653877, + -0.07213425636291504, + -0.045266665518283844, + -0.006059815641492605, + -0.009438951499760151, + -0.005084735807031393, + -0.13386167585849762, + 0.019452814012765884, + 0.07751072943210602, + -0.043573785573244095, + -0.019426263868808746, + -0.01408042199909687, + -0.022793911397457123, + 0.04266008734703064, + -0.006672518793493509, + 0.020550619810819626, + -0.025323497131466866, + -0.06348414719104767, + -0.013353893533349037, + -0.005055247340351343, + 0.06565017253160477, + -0.08284319192171097, + -0.04069513455033302, + 0.03404608368873596, + 0.0777893140912056, + 0.014971330761909485, + -0.017306774854660034, + 0.02938312664628029, + -0.054315101355314255, + -0.0007721386500634253, + -0.06782916933298111, + 0.009625284932553768, + -0.0676855817437172, + 0.04981562867760658, + -0.03913749381899834, + 0.05062488093972206, + -0.08966802060604095, + 0.05247659236192703, + 0.038634516298770905, + 0.0771780014038086, + 0.011982913129031658, + -0.022029586136341095, + 0.09713120013475418, + 0.0027853280771523714, + -0.07566394656896591, + -0.0021975873969495296, + -0.005499793216586113, + 0.03991171717643738, + 0.00020170107018202543, + -0.012257370166480541, + -0.02989252470433712, + 0.023445285856723785, + 0.046268921345472336, + -0.02754819579422474, + 0.015031646937131882, + 0.004514436237514019, + 0.0003617984475567937, + -0.022308439016342163, + 0.0061963810585439205, + 0.04483426734805107, + -0.03063054382801056, + -0.024404369294643402, + 0.016737762838602066, + -0.05782070755958557, + 0.03498031571507454, + -0.017313070595264435, + 0.01913229189813137, + 0.04854303598403931, + -0.012304376810789108, + -0.001775606069713831, + -0.0321866050362587, + 0.03206363692879677, + 0.007726507727056742, + -0.022826869040727615, + -0.01902400329709053, + 0.02824924886226654, + -0.009425494819879532, + 0.11992232501506805, + -0.03953467309474945, + 0.07435278594493866, + 0.03975938633084297, + -0.059819407761096954, + 0.02385367639362812, + 0.011067774146795273, + -0.07459666579961777, + -0.0038833480793982744, + -0.04594864323735237, + -0.05991083383560181, + -0.07143491506576538, + 8.554215883896533e-35, + 0.02255088835954666, + -0.038404643535614014, + -0.05061948671936989, + -0.015883151441812515, + -0.02171388827264309, + 0.008241260424256325, + -0.02781451866030693, + 0.05980421602725983, + 0.0036541728768497705, + 0.0022093295119702816, + -0.03586478531360626, + 0.002175861271098256, + -0.033839400857686996, + -0.03263937309384346, + 0.002453627996146679, + 0.06757257133722305, + 0.10388723760843277, + 0.08919071406126022, + -0.005858112592250109, + 0.059582680463790894, + -0.016148801892995834, + 0.04550037533044815, + -0.08952932804822922, + 0.02617424540221691, + -0.06786217540502548, + 0.1243593841791153, + 0.08474866300821304, + 0.00971920508891344, + -0.17058421671390533, + -0.022826585918664932, + -0.008602812886238098, + -0.11453782767057419, + 0.026377525180578232, + 0.03571814298629761, + -0.016206175088882446, + 0.03913411870598793, + 0.01261954940855503, + -0.07542489469051361, + -0.05403551459312439, + 0.03558290749788284, + 0.08106136322021484, + -0.00018407897732686251, + 0.02219519205391407, + 0.09249383211135864, + -0.0683777928352356, + -0.05771741271018982, + -0.11531897634267807, + 0.04890910163521767, + -0.04506366699934006, + -0.07725556939840317, + 0.02706737443804741, + -0.025744490325450897, + 0.023971060290932655, + -0.09002537280321121, + 0.018559973686933517, + 0.019093554466962814, + 0.022097347304224968, + 0.02583302929997444, + -0.06483230739831924, + -0.0240013487637043, + -0.02235196717083454, + 0.050998736172914505, + -0.020223796367645264, + 0.10300019383430481, + 0.0592304989695549, + 0.015726139768958092, + 0.05060538277029991, + -0.0774923637509346, + 0.03403424099087715, + 0.018640859052538872, + -0.09268487244844437, + -0.03522278368473053, + -0.019585425034165382, + 0.006382244173437357, + -0.03666892647743225, + -0.006109368987381458, + 0.017544018104672432, + 0.013931038789451122, + 0.07731999456882477, + 0.05775310844182968, + -0.027330799028277397, + -0.07092536240816116, + -0.03508196026086807, + 0.03332404047250748, + 0.1018640547990799, + 0.10671962052583694, + -0.010915216989815235, + 0.06300321966409683, + 0.0903923511505127, + 0.02587973326444626, + 0.018808569759130478, + 0.06087060645222664, + 0.00947600044310093, + -0.029165124520659447, + 0.03333509340882301, + -2.1299459973533885e-08, + 0.06577888876199722, + -0.09837579727172852, + -0.049058202654123306, + 0.031442221254110336, + 0.013584617525339127, + -0.07323087751865387, + -0.011849632486701012, + -0.07538866996765137, + 0.011407664977014065, + -0.0014663577312603593, + -0.034297119826078415, + 0.0908280536532402, + -0.0006314041092991829, + -0.010383019223809242, + 0.020734533667564392, + 0.00847809761762619, + 0.033900972455739975, + 0.1056307852268219, + -0.021599747240543365, + -0.017109189182519913, + 0.009864341467618942, + 0.04035249724984169, + 0.037601128220558167, + -0.09584742039442062, + 0.03582869470119476, + 0.05111232399940491, + -0.05028755962848663, + -0.026516882702708244, + 0.11836766451597214, + -0.007075056433677673, + 0.04272203519940376, + 0.040159568190574646, + 0.05193925276398659, + 0.032230254262685776, + -0.018992619588971138, + -0.027594421058893204, + -0.045070014894008636, + -0.0581650510430336, + -0.05923214182257652, + 0.008404463529586792, + 0.013008622452616692, + -0.033656567335128784, + 0.0041945334523916245, + -0.025364162400364876, + -0.02708538994193077, + 0.06803561747074127, + 0.005330938845872879, + -0.03179912269115448, + -0.010480305179953575, + -0.04027363657951355, + -0.11198975890874863, + -0.01674077846109867, + 0.07378874719142914, + 0.0342215821146965, + -0.01583852246403694, + -0.02975686825811863, + 0.01819087192416191, + 0.03542795777320862, + 0.062060993164777756, + 0.03760172799229622, + 0.1260390281677246, + 0.000969827058725059, + -0.07730186730623245, + 0.05842067301273346 + ], + "open-ai-logo-bold||*new*,artificial intelligence,ai,chatgpt,llm,logos": [ + 0.011172815226018429, + -0.05109211429953575, + 0.02142270654439926, + -0.028944650664925575, + 0.1292647421360016, + -0.052858710289001465, + 0.047221556305885315, + -0.010322218760848045, + 0.04134894907474518, + 0.01077784039080143, + -0.010586465708911419, + 0.028895340859889984, + 0.0022442261688411236, + -0.036050934344530106, + 0.03272265940904617, + 0.07924645394086838, + -0.00029415154131129384, + -0.024383822456002235, + 0.034930698573589325, + -0.05605040863156319, + 0.028487693518400192, + 0.019244719296693802, + 0.05134405195713043, + -0.037081893533468246, + -0.015500172041356564, + 0.06865543872117996, + 0.04038518667221069, + -0.01948373205959797, + 0.01901949569582939, + -0.09868040680885315, + 0.007389651145786047, + 0.03014443814754486, + 0.12683086097240448, + 0.013427984900772572, + 0.02107771672308445, + 0.04206500202417374, + -0.0011746102245524526, + -0.029123447835445404, + 0.03815849497914314, + 0.005843855440616608, + 0.023379215970635414, + -0.08409915864467621, + 0.025773024186491966, + 0.03338376805186272, + 0.05122467130422592, + 0.0733044371008873, + -0.08224982768297195, + -0.04119402542710304, + -0.0007275854586623609, + 0.04519065096974373, + -0.08633111417293549, + -0.12023047357797623, + -0.0961429551243782, + -0.02816430851817131, + 0.01724592037498951, + -0.015371732413768768, + -0.014484215527772903, + -0.022223642095923424, + -0.00016689840413164347, + -0.04227098450064659, + 0.06295208632946014, + -0.014345232397317886, + 0.04407471418380737, + 0.07213777303695679, + 0.0708707869052887, + -0.011659796349704266, + -0.03951244428753853, + 0.04272066429257393, + -0.03465142846107483, + -0.018485968932509422, + 0.0780380368232727, + 0.02463941089808941, + -0.03760102391242981, + 0.017536187544465065, + -0.0676925852894783, + 0.04179074615240097, + 0.021999631077051163, + -0.007713464088737965, + 0.04612314701080322, + -0.10016966611146927, + -0.03716700151562691, + -0.019260065630078316, + -0.002825186587870121, + 0.017771733924746513, + 0.007497915532439947, + 0.058549076318740845, + -0.05436628684401512, + -0.02803223766386509, + 0.013635297305881977, + 0.04477958008646965, + -0.06883147358894348, + -0.04899461939930916, + 0.024732748046517372, + 0.02556513622403145, + -0.03748558089137077, + 0.005349811166524887, + -0.03617022559046745, + -0.08009721338748932, + -0.0766700953245163, + 0.1203751191496849, + -0.04198971763253212, + 0.03649131581187248, + 0.06621472537517548, + -0.022173035889863968, + -0.029688045382499695, + 0.0464678592979908, + 0.03802487999200821, + -0.037400983273983, + 0.06889217346906662, + 0.06073464825749397, + 0.011110574007034302, + -0.03374120220541954, + 0.024482348933815956, + -0.017337994650006294, + 0.004466939251869917, + -0.03977567330002785, + -0.04611963778734207, + -0.002245202660560608, + 0.12379968911409378, + 0.04764002561569214, + 0.0073074777610599995, + -0.03524183854460716, + -0.04999310150742531, + -0.02284211665391922, + -0.01642308570444584, + 0.00995373073965311, + -0.08079425245523453, + -1.8456152112222646e-33, + 0.020389605313539505, + 0.06076573580503464, + -0.022967319935560226, + 0.07256103307008743, + 0.028244128450751305, + 0.015569212846457958, + 0.004532822407782078, + -0.040782488882541656, + -0.10036651045084, + 0.031182851642370224, + -0.035333823412656784, + 0.04179105535149574, + -0.058614157140254974, + 0.13238929212093353, + 0.05089666694402695, + -0.07487423717975616, + 0.011569324880838394, + -0.03370854631066322, + -0.03228005766868591, + -0.10554446280002594, + -0.049669645726680756, + 0.04778139293193817, + -0.0212706308811903, + -0.004925025627017021, + 0.03585173189640045, + 0.0024585893843322992, + 0.06424055993556976, + -0.08887307345867157, + 0.03195858374238014, + 0.023933133110404015, + 0.023191001266241074, + 0.051616232842206955, + -0.011102288961410522, + 0.053057681769132614, + -0.025215303525328636, + 0.014111747965216637, + -0.0906856432557106, + -0.06402601301670074, + -0.004134421702474356, + 0.04840552434325218, + -0.03921941667795181, + -0.03472723811864853, + -0.016248663887381554, + 0.01520358957350254, + -4.071196963195689e-05, + 0.05791918933391571, + -0.0250974353402853, + -0.08708477765321732, + 0.09152326732873917, + -0.018282489851117134, + -0.06612104922533035, + -0.0058097196742892265, + -0.04134763404726982, + -0.07384783774614334, + 0.007999969646334648, + -0.13524135947227478, + -0.06299444288015366, + 0.07289091497659683, + -0.011110460385680199, + -0.03724740073084831, + -0.0014289397513493896, + 0.02759445458650589, + 0.012544810771942139, + 0.03513038903474808, + -0.01120863575488329, + 0.0933636724948883, + -0.010429173707962036, + 0.02670443430542946, + 0.06769339740276337, + 0.02108152024447918, + 0.026792343705892563, + 0.003865098813548684, + 0.04514838382601738, + 0.02594112418591976, + -0.1113470196723938, + 0.01946612447500229, + 0.002681083744391799, + -0.05839104205369949, + 0.023335959762334824, + -0.030666334554553032, + -0.08260048180818558, + 0.004075860604643822, + -0.0816241055727005, + 0.0007914414163678885, + 0.04381762444972992, + -0.012747988104820251, + 0.029652897268533707, + -0.036150116473436356, + -0.008097667247056961, + 0.043751850724220276, + -0.13468918204307556, + -0.016055172309279442, + -0.006001039408147335, + 0.042754869908094406, + -0.14933986961841583, + 5.1230720813548295e-34, + -0.046910278499126434, + 0.012345729395747185, + 0.005167504772543907, + 0.05588780343532562, + -0.01869157701730728, + -0.0041635846719145775, + 0.011019241064786911, + 0.09450245648622513, + -0.012916406616568565, + 0.05017131194472313, + 0.08891087025403976, + -0.006720544770359993, + -0.03205583989620209, + -0.033178944140672684, + 0.03247802332043648, + -0.0439583957195282, + 0.02482781931757927, + 0.015548800118267536, + -0.07605460286140442, + 0.06750928610563278, + 0.016535582020878792, + 0.015927745029330254, + -0.11579450964927673, + 0.022376012057065964, + 0.01589365489780903, + 0.07769515365362167, + 0.03260770067572594, + 0.018485477194190025, + -0.04878469184041023, + 0.008263731375336647, + -0.0199643112719059, + -0.055450890213251114, + -0.04729859158396721, + 0.1062014102935791, + 0.025345925241708755, + 0.05624046549201012, + 0.09080667048692703, + -0.05605505406856537, + -0.05079657956957817, + 0.025903116911649704, + 0.02286722883582115, + -0.03388005867600441, + -0.011067457497119904, + 0.04304506257176399, + -0.048103079199790955, + -0.03637419268488884, + -0.14326530694961548, + -0.07214512676000595, + -0.060770247131586075, + -0.0008001553360372782, + 0.0012692780001088977, + -0.06699275225400925, + 0.04410436749458313, + -0.059149064123630524, + -0.10566244274377823, + -0.03172764927148819, + 0.02773021161556244, + 0.046001873910427094, + -0.045885104686021805, + 0.05690242350101471, + 0.032198213040828705, + -0.03623340278863907, + -0.02764870785176754, + -0.04481694474816322, + -0.04851076751947403, + -0.038537681102752686, + -0.007166976109147072, + 0.0810195654630661, + -0.08404223620891571, + -0.02112552896142006, + 0.02741875685751438, + -0.021326260641217232, + -0.046896882355213165, + 0.041008953005075455, + -0.025489022955298424, + -0.018131745979189873, + 0.05956012383103371, + 0.01593192294239998, + -0.01138618215918541, + -0.0004069636052008718, + 0.008519787341356277, + -0.03558932617306709, + -0.04821920767426491, + 0.10950370132923126, + 0.09194950014352798, + 0.0695817694067955, + -0.0009813938522711396, + 0.018845252692699432, + 0.012800909578800201, + 0.05816641449928284, + -0.0702904686331749, + 0.12359344959259033, + 0.03787878900766373, + 0.08872007578611374, + -0.07092427462339401, + -2.196629900197422e-08, + -0.04258298501372337, + -0.0907885879278183, + 0.08195413649082184, + 0.013634946197271347, + 0.07129684090614319, + -0.018158799037337303, + -0.07059752196073532, + -0.0827488973736763, + -0.03654493764042854, + -0.03834548592567444, + 0.022723961621522903, + -0.004122341517359018, + -0.09125325083732605, + -0.018272507935762405, + 0.060692690312862396, + 0.0037839326541870832, + -0.12063001096248627, + 0.05917627736926079, + 0.015147258527576923, + -0.05469517782330513, + 0.01915847137570381, + 0.05718226730823517, + 0.05674789100885391, + -0.009677758440375328, + -0.00668921135365963, + -0.035040684044361115, + -0.032794855535030365, + -0.01711619831621647, + -0.0520523376762867, + 0.10082801431417465, + -0.004404610022902489, + 0.08647506684064865, + 0.058062344789505005, + -0.0121373999863863, + -0.013246055692434311, + 0.02241993509232998, + 0.004920503590255976, + -0.018437333405017853, + -0.05103951320052147, + 0.0019176066853106022, + 0.05732849985361099, + 9.215402678819373e-05, + -0.00787780899554491, + -0.04213700070977211, + 0.018419478088617325, + -0.006402894854545593, + 0.024792563170194626, + -0.05666761472821236, + -0.025854460895061493, + -0.0517176054418087, + -0.03100575879216194, + 0.012449066154658794, + 0.005108732730150223, + 0.06068013980984688, + 0.043787866830825806, + -0.03491581603884697, + 0.024195976555347443, + 0.059766143560409546, + 0.007565231528133154, + 0.0677095428109169, + 0.09687954932451248, + -8.573038940085098e-06, + 0.019188130274415016, + -0.05528679117560387 + ], + "option-bold||keyboard,shortcut,modifier": [ + -0.0056896451860666275, + -0.05590733140707016, + -0.035895735025405884, + 0.11490092426538467, + 0.07467246800661087, + -0.0006540502072311938, + 0.07400580495595932, + -0.03632165864109993, + -0.002768712816759944, + 0.032128479331731796, + 0.03439091145992279, + 0.0011191400699317455, + 0.04112856090068817, + -0.06648912280797958, + 0.07087930291891098, + 0.0356118306517601, + 0.000759861315600574, + 0.015645446255803108, + -0.05772928521037102, + 0.0385720320045948, + 0.0055343955755233765, + 0.02529602311551571, + 0.009728728793561459, + 0.025948235765099525, + 0.036613039672374725, + 0.00027170422254130244, + 0.070110023021698, + 0.0018520158482715487, + 0.029381319880485535, + -0.0640593096613884, + -0.02375929243862629, + -0.07612254470586777, + 0.09546571224927902, + -0.016871925443410873, + -0.032570112496614456, + 0.061439093202352524, + 0.006494686473160982, + -0.058130789548158646, + -0.004083997569978237, + 0.035195548087358475, + -0.04648084193468094, + -0.07217753678560257, + -0.003258472541347146, + 0.048205699771642685, + -0.09440626204013824, + -0.0020762053318321705, + -0.022632034495472908, + -0.03272031620144844, + -0.04442634806036949, + -0.0026933946646749973, + 0.02937108837068081, + -0.04237232357263565, + -0.03377218544483185, + -0.00502909766510129, + 0.016444141045212746, + -0.01130740251392126, + -0.12395983934402466, + -0.017781196162104607, + 0.09960371255874634, + -0.000596028461586684, + -0.03843511641025543, + -0.024354223161935806, + 0.03426818549633026, + -0.024340009316802025, + 0.037514809519052505, + 0.06544008105993271, + 0.046150196343660355, + -0.046915266662836075, + -0.021423164755105972, + 0.04644196853041649, + 0.05312589555978775, + -0.011516579426825047, + -0.008917233906686306, + -0.0403936542570591, + -0.0967131033539772, + -0.009154598228633404, + 0.03891030326485634, + 0.05741091072559357, + -0.010083930566906929, + 0.005881962366402149, + -0.031637340784072876, + -0.04785573482513428, + -0.03171142190694809, + 0.07065647840499878, + 0.10391843318939209, + 0.03959709405899048, + -0.12265343219041824, + -0.08574672788381577, + -0.021128153428435326, + 0.030120335519313812, + -0.014988439157605171, + -0.0335528627038002, + -0.003621989395469427, + 0.031824130564928055, + -0.07083665579557419, + -0.046863455325365067, + 0.032365068793296814, + 0.013631667010486126, + -0.050163816660642624, + 0.05744001269340515, + 0.012300880625844002, + 0.07419861108064651, + -0.02718369849026203, + -0.013034369796514511, + -0.0016249767504632473, + -0.035097748041152954, + 0.0538584440946579, + -0.028992649167776108, + -0.014517857693135738, + 0.04741878807544708, + -0.011982321739196777, + -0.054417286068201065, + 0.029616858810186386, + -0.05979848653078079, + -0.040816519409418106, + -0.02492787130177021, + -0.020463213324546814, + -0.007635339163243771, + 0.0758720338344574, + 0.05896544083952904, + -0.013721713796257973, + -0.03694932162761688, + -0.10186253488063812, + -0.0475921705365181, + 0.01727204956114292, + 0.025314204394817352, + -0.005823850631713867, + -1.2606129987912832e-33, + 0.09790635854005814, + 0.03866809234023094, + -0.04094407334923744, + 0.09355480968952179, + 0.031400058418512344, + 0.03775535523891449, + -0.048499464988708496, + -0.01707402430474758, + -0.12079429626464844, + -0.0016189193120226264, + 0.07463925331830978, + 0.008044930174946785, + -0.02605053223669529, + 0.04455752670764923, + 0.04568295180797577, + -0.049055468291044235, + 0.007434230763465166, + -0.003668137826025486, + -0.07370182126760483, + -0.03265581652522087, + 0.006131134927272797, + 0.03965180739760399, + -0.053269632160663605, + 0.012413503602147102, + -0.02455722913146019, + -0.004150792025029659, + 0.08010783046483994, + -0.020374270156025887, + -0.07777665555477142, + 0.029231173917651176, + -0.02221617102622986, + 0.009238360449671745, + 0.02675497531890869, + 0.016856452450156212, + -0.023043397814035416, + -0.00559882540255785, + -0.016787584871053696, + 0.030986536294221878, + -0.03118317201733589, + 0.02660265564918518, + -0.06355249136686325, + -0.04212675243616104, + -0.031851302832365036, + -0.03062320500612259, + 0.023914631456136703, + 0.08313507586717606, + -0.020288333296775818, + 0.036518972367048264, + 0.012076854705810547, + -0.004133034031838179, + 0.004956366028636694, + 0.005057692062109709, + 0.021520286798477173, + 0.040307264775037766, + 0.034567467868328094, + -0.008688987232744694, + -0.07471423596143723, + 0.08217964321374893, + 0.07674107700586319, + 0.02593236416578293, + -0.011736160144209862, + 0.04949118196964264, + 0.061814311891794205, + 0.08111444860696793, + -0.017082082107663155, + 0.061029329895973206, + -0.06008448824286461, + 0.03312554210424423, + 0.0860692709684372, + -0.06568624079227448, + 0.039786774665117264, + 0.03766174241900444, + -0.019219132140278816, + 0.03162310644984245, + -0.019135741516947746, + 0.0224741343408823, + -0.009124014526605606, + -0.10449827462434769, + 0.09143541753292084, + -0.09469275176525116, + -0.053437523543834686, + 0.01884276419878006, + -0.04272211343050003, + 0.08420733362436295, + 0.07447371631860733, + -0.02388589456677437, + -0.0030226269736886024, + -0.06729692965745926, + -0.028416873887181282, + 0.011783430352807045, + -0.05242745578289032, + -0.020778397098183632, + -0.012626299634575844, + -0.07566337287425995, + -0.07761521637439728, + -2.260593186066341e-34, + 0.09708952158689499, + 0.007580881472676992, + -0.05249181389808655, + 0.049581922590732574, + -0.047328416258096695, + 0.07083389163017273, + -0.03309423848986626, + 0.006817783694714308, + -0.015250190161168575, + 0.004484919831156731, + 0.06775279343128204, + 0.046190276741981506, + 0.009893262758851051, + -0.03151394799351692, + 0.018604451790452003, + 0.045025743544101715, + -0.03933142498135567, + 0.055660318583250046, + -0.02708934061229229, + 0.007146230433136225, + -0.059394609183073044, + -0.11001300066709518, + -0.08481615036725998, + 0.08819315582513809, + -0.03197261318564415, + 0.022733625024557114, + -0.06167171895503998, + 0.07730331271886826, + -0.04381956532597542, + -0.01409416925162077, + -0.035531122237443924, + 0.06358977407217026, + -0.01727563701570034, + 0.00878765620291233, + -0.019432922825217247, + 0.048095691949129105, + -0.0162934772670269, + -0.012705505825579166, + 0.06437495350837708, + 0.043252650648355484, + -0.008181198500096798, + -0.006106485612690449, + 0.04111451655626297, + 0.03426891565322876, + -0.038192328065633774, + 0.0109056131914258, + 0.061471473425626755, + -0.11103718727827072, + 0.024570519104599953, + 0.028109285980463028, + 0.08849678188562393, + -0.06666941940784454, + -0.01945113018155098, + 0.05187109857797623, + -0.054936088621616364, + -0.07337359338998795, + -0.026463832706212997, + -0.0014402896631509066, + -0.03268108516931534, + 0.10438233613967896, + -0.020043756812810898, + 0.036482859402894974, + 0.011590983718633652, + 0.06606306880712509, + 0.07212721556425095, + -0.07881626486778259, + 0.08603043854236603, + 0.028199777007102966, + 0.05286905914545059, + -0.04286642000079155, + 0.0914679765701294, + -0.030667297542095184, + 0.07677040994167328, + 0.024043075740337372, + 0.0697820857167244, + -0.046073541045188904, + 0.06159709766507149, + 0.0393693670630455, + 0.0063448818400502205, + 0.04476641118526459, + 0.03737616539001465, + -0.01834729127585888, + -0.017394470050930977, + -0.009817836806178093, + -0.12917661666870117, + 0.06672833859920502, + -0.007036212831735611, + 0.05451475828886032, + -0.023640483617782593, + -0.05487100034952164, + -0.05584608390927315, + 0.006061850115656853, + 0.036507606506347656, + -0.0210556760430336, + -0.056976694613695145, + -1.9865462164148084e-08, + -0.0013222474372014403, + -0.029924675822257996, + -0.051545895636081696, + -0.04087314009666443, + 0.011300775222480297, + -0.011931735090911388, + -0.07234464585781097, + -0.036028847098350525, + -0.04738272726535797, + -0.013442440889775753, + 0.04232919588685036, + 0.021617431193590164, + -0.05364970862865448, + -0.04769657924771309, + 0.015390648506581783, + -0.01962045393884182, + -0.019909264519810677, + 0.08761675655841827, + -0.01809307374060154, + -0.005249246023595333, + -0.013806487433612347, + 0.01676693744957447, + 0.10097306966781616, + 0.0007134766201488674, + 0.054927367717027664, + -0.022684665396809578, + -0.10207464545965195, + 0.013695986941456795, + 0.08741169422864914, + 0.08915095031261444, + 0.007797532249242067, + 0.06889303028583527, + -0.011382236145436764, + 0.0014179394347593188, + -0.14764481782913208, + -0.019455797970294952, + -0.012788526713848114, + 0.015367787331342697, + 0.006211357656866312, + 0.10296085476875305, + -0.048729706555604935, + -0.09360884875059128, + -0.09149762243032455, + -0.05960484594106674, + -0.10361510515213013, + 0.0656849816441536, + 0.04251992702484131, + -0.038260865956544876, + -0.13376633822917938, + -0.07549024373292923, + -0.015793796628713608, + 0.013843071646988392, + 0.07404143363237381, + 0.11373445391654968, + -0.08513011038303375, + -0.019874827936291695, + -0.009326597675681114, + 0.08110194653272629, + -0.0016675116494297981, + -0.0533762127161026, + 0.121111199259758, + -0.023068858310580254, + -0.049128804355859756, + -0.034479983150959015 + ], + "orange-bold||*new*,food,fruit,juice,citrus,groceries,market": [ + -0.00031260139076039195, + -0.053022805601358414, + -0.02519337274134159, + 0.09052851051092148, + 0.06271062046289444, + 0.04318959265947342, + 0.07510292530059814, + -0.09159882366657257, + 0.002289318945258856, + -0.09510341286659241, + 0.09688784182071686, + -0.01918298751115799, + -0.02745729126036167, + -0.08002685755491257, + 0.035212039947509766, + 0.046367961913347244, + 0.10763049870729446, + 0.012882913462817669, + -0.08068865537643433, + -0.055302105844020844, + -0.006614528130739927, + -0.0201871357858181, + 0.03264268860220909, + 0.024039359763264656, + -0.005883997771888971, + 0.006891440600156784, + 0.016566816717386246, + -0.002709202468395233, + -0.011629740707576275, + -0.127174973487854, + -0.001985640963539481, + 0.0022357639390975237, + 0.12541259825229645, + 0.053351763635873795, + 0.06267804652452469, + -0.07838767021894455, + 0.06620236486196518, + -0.0584295429289341, + 0.005615762900561094, + 0.02834627963602543, + 0.03518104553222656, + -0.01533299870789051, + -0.05592876300215721, + 0.07114163786172867, + -0.023566734045743942, + 0.0012136324075981975, + -0.05388221517205238, + -0.00666665006428957, + 0.04523732140660286, + 0.05162449926137924, + -0.06695518642663956, + -0.054032597690820694, + -0.10381443053483963, + -0.028344502672553062, + -0.024037934839725494, + 0.021159794181585312, + -0.017731070518493652, + -0.04736709967255592, + 0.014716792851686478, + 0.05383094400167465, + 0.08297908306121826, + -0.03722790628671646, + 0.03516288101673126, + 0.05730627104640007, + -0.033595044165849686, + -0.034132640808820724, + -0.061715271323919296, + 0.030408808961510658, + -0.02031925693154335, + -0.027080900967121124, + -0.0024401904083788395, + 0.051182426512241364, + 0.0170766431838274, + 0.07725897431373596, + -0.0633707046508789, + 0.02575048990547657, + 0.06791243702173233, + 0.014578713104128838, + -0.02233981341123581, + -0.006085497327148914, + -0.07627306878566742, + -0.016116032376885414, + -0.12536385655403137, + -0.02559863030910492, + -0.016412362456321716, + 0.030552221462130547, + -0.12673194706439972, + -0.05395030602812767, + -0.03255728632211685, + 0.06067032366991043, + -0.08237044513225555, + -0.03439692035317421, + 0.024161333218216896, + 0.026841048151254654, + -0.0500388965010643, + -0.00898253545165062, + 0.025258053094148636, + -0.09229680895805359, + 0.018970048055052757, + 0.057407304644584656, + 0.007807976100593805, + 0.05452839657664299, + 0.048288531601428986, + -0.0035704567562788725, + -0.08550287783145905, + -0.07648131996393204, + -0.10297089070081711, + -0.07699127495288849, + -0.004867774900048971, + 0.10493669658899307, + 0.006314374506473541, + -0.062430720776319504, + 9.571765986038372e-05, + -0.058535341173410416, + -0.07471110671758652, + -0.029838191345334053, + -0.03174828365445137, + -0.022983547300100327, + 0.06660602986812592, + 0.08646988868713379, + 0.002383970655500889, + 0.010202450677752495, + -0.057536780834198, + -0.05042826756834984, + -0.06566569954156876, + 0.022915616631507874, + -0.006337299942970276, + -2.4576199982595725e-33, + 0.021911034360527992, + 0.00018519890727475286, + 0.028006281703710556, + 0.09316614270210266, + 0.02840452827513218, + 0.004360746592283249, + -0.03839469701051712, + -0.038888003677129745, + 0.009848209097981453, + 0.03756837919354439, + -0.03835860267281532, + 0.030833197757601738, + -0.0805475190281868, + 0.03981329873204231, + 0.051671333611011505, + -0.016709698364138603, + -0.007538230624049902, + -0.023216012865304947, + -0.07362348586320877, + 0.0012459278805181384, + -0.06188955903053284, + 0.045430656522512436, + -0.036117345094680786, + -0.012418541125953197, + -0.06716322153806686, + -0.02916032075881958, + -0.015626557171344757, + -0.04315871745347977, + 0.024607747793197632, + 0.026112036779522896, + 0.03488269820809364, + -0.003633116837590933, + 0.04027306288480759, + 0.062486693263053894, + -0.07606338709592819, + -0.009277576580643654, + -0.017362527549266815, + -0.040977079421281815, + 0.06407884508371353, + 0.055118680000305176, + -0.028623312711715698, + 0.022332215681672096, + 0.02501613087952137, + 0.12092840671539307, + 0.01986945979297161, + 0.018478993326425552, + -0.023509133607149124, + -0.0060714492574334145, + 0.044776029884815216, + 0.0004915641620755196, + -0.09342042356729507, + -0.07825861871242523, + 0.020155008882284164, + 0.014816864393651485, + -0.04019991680979729, + -0.06074961647391319, + -0.06467509269714355, + 0.03336140885949135, + -0.002058606594800949, + -0.02707165665924549, + -0.003467034315690398, + 0.06424577534198761, + 0.015483090654015541, + -0.0064107635989785194, + -0.08062268793582916, + 0.039750128984451294, + -0.0947328731417656, + 0.027496762573719025, + 0.021609997376799583, + 0.046717941761016846, + 0.03874989226460457, + 0.0535319559276104, + 0.04741508513689041, + 0.028325766324996948, + 0.02379767782986164, + -0.011439303867518902, + 0.0299936905503273, + 0.017702927812933922, + 0.011648702435195446, + -0.05152397230267525, + -0.07127728313207626, + -0.002857750281691551, + -0.008853774517774582, + 0.1562657654285431, + -0.06702884286642075, + 0.08503720164299011, + -0.019581854343414307, + -0.02958102710545063, + 0.07719717174768448, + 0.02443789504468441, + -0.12697799503803253, + 0.04710743576288223, + -0.03796415403485298, + -0.05739780515432358, + -0.049813322722911835, + -1.3084288947403684e-33, + 0.04905383288860321, + -0.019621945917606354, + -0.010058563202619553, + -0.002109115943312645, + 0.017307830974459648, + -0.0005026066792197526, + -0.05329972133040428, + 0.00025736974203027785, + -0.013021757826209068, + -0.03728273883461952, + -0.0659666359424591, + -0.02236943319439888, + -0.03087843768298626, + -0.013348104432225227, + 0.010230633430182934, + 0.08033323287963867, + 0.08983400464057922, + 0.11217638105154037, + -0.013624529354274273, + 0.05840994045138359, + -0.12397072464227676, + 0.013562166132032871, + -0.0533609464764595, + 0.0693105161190033, + 0.02968217432498932, + 0.018776703625917435, + 6.174415466375649e-05, + -0.03632333129644394, + -0.062478769570589066, + -0.00458952272310853, + 0.0199289470911026, + -0.07606376707553864, + 0.05344032496213913, + 0.07562849670648575, + -0.040479592978954315, + 0.01398721057921648, + 0.03153826668858528, + -0.15544389188289642, + -0.006257311906665564, + 0.06909924000501633, + 0.031809888780117035, + -0.04498378559947014, + 0.018817108124494553, + 0.09407660365104675, + 0.005512893199920654, + -0.005103762727230787, + -0.05234965682029724, + -0.06843297183513641, + -0.004254722967743874, + 0.028466226533055305, + 0.03669796884059906, + 0.00795235950499773, + -0.07989548146724701, + 0.043274253606796265, + -0.020126262679696083, + 0.03255314379930496, + 0.004239063709974289, + -0.002360451500862837, + -0.08862335234880447, + 0.013680694624781609, + -0.02482284978032112, + 0.03855404257774353, + -0.01002298854291439, + 0.013767472468316555, + 0.04242049157619476, + -0.0432543009519577, + 0.062751404941082, + -0.0018733697943389416, + -0.031322117894887924, + -0.056846871972084045, + 0.018805282190442085, + 0.03814409673213959, + -0.048483144491910934, + -0.01644253171980381, + -0.022648463025689125, + -0.02996527962386608, + 0.023996170610189438, + -0.014656425453722477, + -0.04498906433582306, + 0.07214613258838654, + -0.06733325123786926, + -0.035096488893032074, + -0.03274697810411453, + 0.026768675073981285, + 0.005753647070378065, + 0.07068642228841782, + -0.05574271082878113, + 0.01610812358558178, + 0.0058783493004739285, + 0.047324761748313904, + -0.04840358346700668, + 0.023174922913312912, + -0.043651413172483444, + 0.06991897523403168, + -0.04364795237779617, + -2.1342906109111937e-08, + 0.0883171334862709, + -0.06958647817373276, + -0.04930716007947922, + 0.08723035454750061, + 0.005935039836913347, + -0.05726354569196701, + -0.06950543820858002, + -0.02181083895266056, + -0.03363543376326561, + 0.004260621033608913, + -0.033603787422180176, + 0.07893876731395721, + -0.08577881753444672, + 0.015968993306159973, + 0.03846574202179909, + 0.007704589050263166, + 0.026453183963894844, + 0.05945754423737526, + 0.0004544809344224632, + 0.023495836183428764, + -0.06637033820152283, + 0.10685648769140244, + 0.023943454027175903, + -0.02335895411670208, + 0.03458849713206291, + 0.03109448216855526, + -0.025352640077471733, + -0.015393796376883984, + 0.11242236942052841, + 0.05346260592341423, + 0.09745421260595322, + 0.05372735485434532, + -0.029330460354685783, + 0.036527905613183975, + -0.08067341893911362, + -0.047880034893751144, + 0.024775998666882515, + 0.0019825987983494997, + -0.0720338448882103, + 0.06930618733167648, + -0.011288308538496494, + -0.03344995528459549, + -0.09886740893125534, + 0.0008199368021450937, + -0.03545897826552391, + 0.032901331782341, + -0.013954320922493935, + -0.021185846999287605, + -0.0512036457657814, + -0.06434303522109985, + -0.05822636932134628, + 0.027152491733431816, + 0.06453634053468704, + 0.052784550935029984, + -0.012539633549749851, + -0.027474503964185715, + 0.02917708083987236, + -0.03101351298391819, + 0.01133359782397747, + -0.0020668518263846636, + 0.10397564619779587, + -0.0167941153049469, + 0.05789780244231224, + 0.021564003080129623 + ], + "orange-slice-bold||food,fruit,juice,citrus,groceries,market": [ + -0.0037233547773212194, + -0.030115239322185516, + -0.020157046616077423, + 0.08238080143928528, + 0.023581979796290398, + 0.03625088930130005, + 0.08962375670671463, + -0.0662393867969513, + 0.01782390847802162, + -0.09661921113729477, + 0.1133369505405426, + -0.04091453179717064, + -0.029942099004983902, + -0.0538983978331089, + 0.016809063032269478, + 0.019353259354829788, + 0.10052306205034256, + 0.0237420704215765, + -0.07698555290699005, + -0.04813738912343979, + -0.0036298255436122417, + -0.006029654294252396, + 0.03884948790073395, + 0.02499881573021412, + 0.01910826936364174, + 0.01225974503904581, + 0.0024202088825404644, + -0.0037078862078487873, + -0.034945469349622726, + -0.1270030289888382, + 0.02646719478070736, + -0.0002459666575305164, + 0.12548145651817322, + 0.06574588268995285, + 0.06184163689613342, + -0.07358235865831375, + 0.06880495697259903, + -0.06276062875986099, + 0.03329354152083397, + 0.014294775202870369, + 0.03688524290919304, + -0.026067793369293213, + -0.03424008563160896, + 0.044552773237228394, + -0.01802235282957554, + -0.008934270590543747, + -0.06487875431776047, + -0.016658805310726166, + 0.028589731082320213, + 0.05690809339284897, + -0.10203216969966888, + -0.03580349683761597, + -0.09737802296876907, + -0.02302723564207554, + -0.008806226775050163, + 0.027837656438350677, + -0.01391975674778223, + -0.006985373795032501, + 0.0436418242752552, + 0.09231869876384735, + 0.0599459744989872, + -0.05773758515715599, + 0.017724929377436638, + 0.046150773763656616, + -0.011635616421699524, + -0.05739995837211609, + -0.05464329198002815, + 0.05510803312063217, + -0.0603674054145813, + -0.02602453902363777, + 0.017236895859241486, + 0.04096179082989693, + 0.007580965757369995, + 0.052333176136016846, + -0.03421104699373245, + 0.017747770994901657, + 0.059138763695955276, + -0.0021779316011816263, + -0.06438925862312317, + -0.0012981129111722112, + -0.10342739522457123, + -0.010044656693935394, + -0.1242246925830841, + -0.004592913668602705, + -0.03754560649394989, + 0.013906663283705711, + -0.0998496413230896, + -0.04082043841481209, + -0.01563531905412674, + 0.03883974254131317, + -0.08143743127584457, + -0.060408107936382294, + 0.033602990210056305, + 0.03329449146986008, + -0.03445979580283165, + -0.016190223395824432, + 0.015756627544760704, + -0.1329180747270584, + 0.013784856535494328, + 0.043658334761857986, + 0.02221083827316761, + 0.05395655333995819, + 0.04467302933335304, + -0.033196981996297836, + -0.0750565379858017, + -0.09036076813936234, + -0.10546357929706573, + -0.07157857716083527, + -0.007048797328025103, + 0.08708316832780838, + 0.014123828150331974, + -0.040053945034742355, + -0.02384517900645733, + -0.062131624668836594, + -0.07271886616945267, + -0.0642443299293518, + -0.038364097476005554, + -0.04520072788000107, + 0.1113169938325882, + 0.056373123079538345, + -0.022748982533812523, + 0.03228427842259407, + -0.060990963131189346, + -0.013627150095999241, + -0.03737787902355194, + 0.01597416214644909, + 0.05283788591623306, + -2.9496224241122717e-33, + 0.012499132193624973, + -0.005314844194799662, + 0.03892163187265396, + 0.07047980278730392, + 0.05096278339624405, + -0.006730083841830492, + -0.037821896374225616, + -0.04243837669491768, + 0.016045689582824707, + 0.027877580374479294, + -0.030841000378131866, + 0.01546515990048647, + -0.0447765551507473, + 0.05286465585231781, + 0.04530830308794975, + -0.030253896489739418, + 0.00225155521184206, + -0.013362985104322433, + -0.07539693266153336, + 0.001619995222426951, + -0.05804791674017906, + 0.051257435232400894, + -0.03107939288020134, + -0.0028342457953840494, + -0.06349733471870422, + -0.029147092252969742, + -0.03804268315434456, + -0.06712997704744339, + 0.04217151924967766, + 0.0352155826985836, + 0.052852049469947815, + 0.021072104573249817, + 0.017569266259670258, + 0.02098502777516842, + -0.04975954815745354, + 0.026408003643155098, + -0.01749146543443203, + -0.03310525044798851, + 0.05886749178171158, + 0.042196124792099, + -0.03813280910253525, + 0.010575426742434502, + 0.052917249500751495, + 0.115561343729496, + 0.0003799859550781548, + 0.03466353937983513, + -0.000751305662561208, + -0.022520551458001137, + 0.024466577917337418, + 0.01818196475505829, + -0.06739549338817596, + -0.092458575963974, + 0.08653100579977036, + 0.001785406144335866, + -0.018111227080225945, + -0.05661216750741005, + -0.03759343922138214, + 0.04149582237005234, + -0.028596285730600357, + -0.02612084522843361, + 0.007264447398483753, + 0.05728256702423096, + -0.0026280086021870375, + -0.01447154302150011, + -0.09164155274629593, + 0.06008928269147873, + -0.08457080274820328, + 0.01398143358528614, + 0.02990748919546604, + 0.059433288872241974, + 0.018601862713694572, + 0.048282768577337265, + 0.060943104326725006, + 0.022028958424925804, + 0.005039049778133631, + 0.010539105162024498, + -0.009189605712890625, + -0.007376082241535187, + 0.009698508307337761, + -0.04974180832505226, + -0.09391195327043533, + 0.004075201693922281, + 0.013708380982279778, + 0.08192158490419388, + -0.05221891030669212, + 0.10329914093017578, + -0.0330146886408329, + -0.03860908001661301, + 0.08617721498012543, + 0.0534454770386219, + -0.14060281217098236, + 0.05741538852453232, + -0.02464665286242962, + -0.05913889408111572, + -0.04625203087925911, + -2.9107788561378223e-34, + 0.04428141564130783, + -0.0032151928171515465, + 0.009500897489488125, + 0.01220728736370802, + 0.018656302243471146, + -0.013950894586741924, + -0.06014513969421387, + -0.0020793762523680925, + -0.04916217178106308, + -0.03969033434987068, + -0.11654090881347656, + -0.011512803845107555, + -0.018872587010264397, + -0.018518967553973198, + -0.015437690541148186, + 0.08441674709320068, + 0.10508155822753906, + 0.09728739410638809, + 0.0148134371265769, + 0.03437092527747154, + -0.15402168035507202, + -0.006517280358821154, + -0.02198929339647293, + 0.09667224436998367, + 0.018945861607789993, + 0.04721799120306969, + 0.028375614434480667, + -0.05189482495188713, + -0.019519438967108727, + -0.005154925398528576, + 0.03168243542313576, + -0.0893540233373642, + 0.05564616993069649, + 0.031065214425325394, + -0.04484589397907257, + 0.060964133590459824, + 0.005858468357473612, + -0.10468580573797226, + 0.0044246213510632515, + 0.03832187503576279, + 0.026163313537836075, + -0.04254235699772835, + 0.019739247858524323, + 0.09952756017446518, + -0.0016512868460267782, + 0.002261698478832841, + -0.02950134687125683, + -0.02594917267560959, + -0.03228418156504631, + 0.027864182367920876, + 0.009548583067953587, + 0.04860487952828407, + -0.07479619979858398, + 0.0405757911503315, + -0.025037530809640884, + 0.009751866571605206, + -0.017112666741013527, + -0.008415120653808117, + -0.09545820206403732, + -0.020945804193615913, + -0.01921568252146244, + 0.055148303508758545, + 0.012594643980264664, + 0.00784759409725666, + 0.07553796470165253, + -0.033602260053157806, + 0.0693487748503685, + -0.022662999108433723, + -0.031654439866542816, + -0.059840694069862366, + 0.01556139811873436, + 0.03864666819572449, + -0.007283741142600775, + -0.048722364008426666, + -0.03914973512291908, + -0.005109271965920925, + 0.016943829134106636, + -0.01222143229097128, + -0.0483374297618866, + 0.07676414400339127, + -0.04329229146242142, + -0.04438363015651703, + -0.025979582220315933, + 0.058974768966436386, + -0.00925667304545641, + 0.062208548188209534, + -0.04789462685585022, + 0.038728680461645126, + 0.007935699075460434, + 0.032927777618169785, + -0.04407685622572899, + 0.005785131361335516, + -0.024154769256711006, + 0.069426029920578, + -0.01964264176785946, + -1.8520232458740793e-08, + 0.10180733352899551, + -0.06502234935760498, + -0.05165538936853409, + 0.06575106084346771, + -0.02241556905210018, + -0.04365142807364464, + -0.04614829272031784, + -0.0153669323772192, + -0.03405050188302994, + 0.03682415559887886, + -0.03444116935133934, + 0.06983456015586853, + -0.11960676312446594, + 0.023765942081809044, + 0.03549203276634216, + 0.01290812250226736, + 0.02438344806432724, + 0.08823934197425842, + 0.0015578424790874124, + 0.05585994943976402, + -0.05273514613509178, + 0.06167345121502876, + 0.02755008079111576, + -0.028432734310626984, + 0.006858325097709894, + 0.04978272318840027, + -0.05044106766581535, + 0.001669798861257732, + 0.13210603594779968, + 0.025458991527557373, + 0.09809910506010056, + 0.05918619781732559, + -0.010439353063702583, + 0.057766009122133255, + -0.05445212870836258, + -0.05634183809161186, + 0.006188563536852598, + -0.0010058076586574316, + -0.044232431799173355, + 0.06714621931314468, + -0.016081102192401886, + -0.07682051509618759, + -0.09110147505998611, + 0.015049159526824951, + -0.05049466714262962, + 0.05448685213923454, + -0.008203390054404736, + 0.014248962514102459, + -0.046293992549180984, + -0.03287535160779953, + -0.08246979117393494, + 0.03542912378907204, + 0.04778546094894409, + 0.058294378221035004, + -0.024203665554523468, + -0.01759522035717964, + 0.04754431173205376, + -0.04415260627865791, + 0.0014752239221706986, + 0.018663235008716583, + 0.11020628362894058, + -0.008948707953095436, + 0.02095816843211651, + 0.029493805021047592 + ], + "oven-bold||*new*,stove,stovetop,food,cooking,cuisine,kitchen": [ + 0.033526383340358734, + -0.004447645973414183, + -0.05770501494407654, + 0.0473833903670311, + -0.05954628810286522, + -0.03311563655734062, + 0.06250641494989395, + -0.1080014631152153, + 0.0011200369335711002, + -0.030865436419844627, + 0.02445976436138153, + -0.1131032183766365, + 0.001899951254017651, + -0.039860934019088745, + 0.01255776733160019, + -0.15607140958309174, + 0.10664162039756775, + -0.030296729877591133, + 0.019914092496037483, + -0.04960944131016731, + -0.029286349192261696, + 0.04484868049621582, + 0.05727760121226311, + 0.03174561634659767, + 0.1091366857290268, + 0.01622462272644043, + 0.013711991719901562, + 0.04601031541824341, + -0.02409723773598671, + -0.04127931967377663, + -0.004205271601676941, + 0.0021205118391662836, + 0.011116627603769302, + 0.03499323129653931, + 0.06524054706096649, + -0.012915778905153275, + -0.044576629996299744, + -0.0240708589553833, + -0.028257297351956367, + 0.026166420429944992, + 0.029639940708875656, + -0.07491785287857056, + -0.01764320395886898, + -0.007064435165375471, + 0.016008038073778152, + 0.030966831371188164, + -0.07292479276657104, + -0.06024523079395294, + -0.012623163871467113, + -0.01977337710559368, + -0.06542211025953293, + -0.04652385041117668, + -0.12684547901153564, + 0.02767764776945114, + 0.045694198459386826, + -0.06330571323633194, + -0.040981490164995193, + -0.010831685736775398, + 0.014140307903289795, + 0.03676903247833252, + -0.0011550972703844309, + 0.022446081042289734, + 0.03809376806020737, + 0.07656005769968033, + -0.014743807725608349, + -0.02771720103919506, + -0.041367437690496445, + 0.03804454579949379, + -0.06264517456293106, + 0.05013124272227287, + -0.009362851269543171, + 0.008182118646800518, + 0.03108610399067402, + 0.002331181662157178, + -0.0004497359914239496, + -0.027025215327739716, + 0.07245274633169174, + -0.027376078069210052, + -0.03131963312625885, + -0.06263652443885803, + -0.0643727034330368, + -0.018853578716516495, + -0.08478283137083054, + -0.0010866967495530844, + -0.044152699410915375, + 0.04188196733593941, + -0.066032774746418, + -0.05069256201386452, + -0.015356616117060184, + -0.06758901476860046, + -0.004023668821901083, + -0.05898769944906235, + -0.015095622278749943, + 0.04954804480075836, + -0.07634082436561584, + 0.030311578884720802, + 0.02917853742837906, + 0.0052697318606078625, + 0.018699470907449722, + 0.02879350818693638, + -0.04656252637505531, + -0.008761500008404255, + 0.009719842113554478, + 0.06497018039226532, + -0.09210725873708725, + -0.023353539407253265, + -0.00407803151756525, + 0.013412440195679665, + 0.018057718873023987, + -0.03359987959265709, + -0.04589211568236351, + -0.0061036087572574615, + -0.00601652916520834, + -0.11243835836648941, + -0.07224865257740021, + -0.048541050404310226, + -0.04741021990776062, + -0.08199909329414368, + 0.12946055829524994, + 0.0644134059548378, + -0.01782151870429516, + 0.006432967260479927, + 0.02961680106818676, + 0.00664083007723093, + -0.09758464246988297, + 0.02234634757041931, + 0.00561855873093009, + -3.8566441507823184e-33, + -0.023316998034715652, + 0.06093836948275566, + 0.06619910895824432, + 0.08953966200351715, + 0.06827936321496964, + -0.031645793467760086, + -0.07033149152994156, + 0.003689535427838564, + 0.010729891248047352, + 0.051452383399009705, + 0.09960900992155075, + 0.031816720962524414, + -0.07111115008592606, + 0.08831465989351273, + 0.06261245161294937, + -0.004688089247792959, + 0.03262428566813469, + -0.01691722311079502, + -0.02366054244339466, + -0.05401443690061569, + -0.10251294076442719, + 0.05916270613670349, + 0.04563247412443161, + 0.03543815389275551, + -0.047654442489147186, + -0.038496606051921844, + 0.015934724360704422, + -0.020404279232025146, + -0.12931588292121887, + 0.020081400871276855, + 0.076974056661129, + 0.007108987309038639, + -0.012951959855854511, + -0.03075568750500679, + -0.06801287084817886, + 0.01923750340938568, + 0.01751469261944294, + -0.029021576046943665, + -0.003409121884033084, + 0.0034736127126961946, + -0.11188867688179016, + -0.007676224689930677, + 0.013345761224627495, + 0.07591170817613602, + 0.03102434240281582, + 0.07908403873443604, + -0.09648988395929337, + 0.06260504573583603, + 0.06517845392227173, + 0.02118428237736225, + -0.02167465351521969, + -0.01657819002866745, + 0.08204000443220139, + 0.011893573217093945, + -0.007912986911833286, + 0.034105658531188965, + -0.0012938287109136581, + 0.026629498228430748, + 0.03249610960483551, + 0.005260142032057047, + 0.046214353293180466, + 0.10460297018289566, + 0.00016956317995209247, + 0.014529068022966385, + -0.04768458008766174, + 0.03426140919327736, + 0.01701267622411251, + 0.05580538883805275, + 0.03453817591071129, + 0.007069052662700415, + -0.029918022453784943, + 0.01619616337120533, + 0.09424875676631927, + 0.03607631102204323, + 0.042408667504787445, + 0.04950795695185661, + -0.03316232189536095, + -0.03132007271051407, + 0.00199116300791502, + -0.06980425119400024, + 0.03186502680182457, + -0.011517264880239964, + -0.08241502940654755, + 0.03886326029896736, + -0.06779836863279343, + 0.024423860013484955, + -0.03389425203204155, + -0.08700072765350342, + 0.10290708392858505, + 0.08321013301610947, + -0.09426858276128769, + -0.00130885886028409, + 0.030110163614153862, + -0.02155427262187004, + -0.13378790020942688, + 4.035198436594362e-34, + -0.02973746508359909, + 0.009602141566574574, + -0.0969868078827858, + 0.013725858181715012, + -0.035677071660757065, + -0.05537717416882515, + -0.02503621205687523, + -0.029020944610238075, + 0.016823120415210724, + -0.011692026630043983, + 0.02274276874959469, + -0.06780926138162613, + -0.02106856368482113, + -0.0885331854224205, + -0.0340416245162487, + 0.003055180888622999, + -0.020561914891004562, + 0.038079600781202316, + 0.05327635630965233, + 0.05044211819767952, + -0.01841183751821518, + -0.031130550429224968, + -0.13101570308208466, + 0.027811117470264435, + -0.033472612500190735, + 0.04278995096683502, + 0.019474975764751434, + 0.1062651127576828, + -0.061912573873996735, + -0.08649211376905441, + -0.03841545060276985, + -0.0923185795545578, + 0.09839902818202972, + 0.08429162204265594, + -0.022912420332431793, + 0.04966884106397629, + 0.09598922729492188, + -0.05423083156347275, + -0.025951914489269257, + -0.0013541050720959902, + 0.001359795918688178, + 0.015336512587964535, + 0.049245476722717285, + 0.1301528811454773, + 0.009336800314486027, + 0.04744575917720795, + -0.0710596889257431, + -0.025722499936819077, + 0.04940031096339226, + 0.05597677454352379, + 0.046952784061431885, + -0.06189165264368057, + -0.03855985775589943, + -0.05232013389468193, + -0.023393576964735985, + 0.043374642729759216, + 0.011985328048467636, + 0.018861552700400352, + -0.007046408951282501, + 0.055621832609176636, + 0.052347391843795776, + 0.020272959023714066, + 0.05886628478765488, + 0.10540404170751572, + 0.018485138192772865, + -0.05728120729327202, + -0.016184605658054352, + -0.03318773955106735, + 0.0341312438249588, + 0.017732128500938416, + -0.03383111208677292, + 0.0197377298027277, + -0.05176031216979027, + -0.051602307707071304, + -0.05775141343474388, + -0.010275023989379406, + 0.0756186693906784, + -0.020213091745972633, + -0.05557377636432648, + 0.01906011626124382, + -0.02128392830491066, + -0.026585789397358894, + -0.0498194694519043, + 0.030565202236175537, + 0.006794380955398083, + 0.007840595208108425, + -0.016984621062874794, + -0.02201043628156185, + 0.005338802468031645, + 0.03419303521513939, + -0.021419476717710495, + 0.05450764298439026, + 0.02267269976437092, + -0.04810066148638725, + -0.03465669974684715, + -2.2603792615427665e-08, + 0.00024639980983920395, + -0.004960702732205391, + -0.044140491634607315, + 0.01245966274291277, + 0.08618957549333572, + -0.08892461657524109, + 0.022652417421340942, + -0.12193670123815536, + -0.005252007395029068, + -0.008595590479671955, + -0.0247958917170763, + 0.03346485644578934, + 0.0410570427775383, + 0.009952162392437458, + 0.058497123420238495, + -0.0005153933889232576, + 0.037099484354257584, + 0.0014667559880763292, + 0.006281829439103603, + 0.009430891834199429, + 0.0377315916121006, + 0.07450705766677856, + 0.04760287329554558, + -0.0760846808552742, + 0.04887070134282112, + -0.028539638966321945, + -0.06523226946592331, + 0.021405022591352463, + 0.0658523216843605, + 0.06651905924081802, + -0.02178262360394001, + 0.00981494877487421, + 0.04857751354575157, + 0.055377744138240814, + -0.06908682733774185, + -0.02150542475283146, + -0.12968769669532776, + -0.037476796656847, + -0.05591772869229317, + -0.0032651114743202925, + -0.051758915185928345, + -0.05040822550654411, + -0.019463442265987396, + -0.037006523460149765, + -0.04677466303110123, + 0.01642320118844509, + 0.002772376872599125, + -0.0009566153748892248, + 0.0024514179676771164, + -0.014073222875595093, + 0.007699036505073309, + 0.02816186659038067, + 0.10400883108377457, + -0.019535038620233536, + -0.03554525226354599, + 0.01107034832239151, + 0.041074227541685104, + 0.04686518386006355, + 0.10214698314666748, + 0.018721863627433777, + 0.1342809647321701, + -0.009205893613398075, + 0.01415309589356184, + 0.03632286190986633 + ], + "package-bold||packages,boxes,delivery,mail,postal service,bundles,library,libraries,shipping": [ + -0.01601494289934635, + -0.03569776564836502, + -0.004153495188802481, + 0.020791994407773018, + 0.07295148074626923, + 0.0014511009212583303, + 0.08221467584371567, + -0.04029814526438713, + -0.04790382459759712, + 0.014658601023256779, + 0.04743751883506775, + 0.02579047903418541, + 0.017546124756336212, + -0.021970456466078758, + 0.032552435994148254, + 0.02836649864912033, + 0.012408203445374966, + 0.020079931244254112, + -0.056601982563734055, + 0.011029645800590515, + 0.04094287380576134, + 0.08105750381946564, + 0.009170015342533588, + 0.055650707334280014, + 0.031022991985082626, + 0.042085207998752594, + -0.050536829978227615, + -0.0506998673081398, + -0.01185751985758543, + -0.09363308548927307, + 0.027029410004615784, + 0.0036692668218165636, + 0.09560660272836685, + 0.0542171411216259, + 0.09803512692451477, + 0.08974882960319519, + 0.03790692612528801, + -0.07135187834501266, + 0.037145331501960754, + 0.02973165176808834, + -0.04980814829468727, + -0.07116725295782089, + -0.04182291775941849, + 0.08468659967184067, + -0.05775078013539314, + -0.08015250414609909, + -0.025184493511915207, + -0.025844193994998932, + -0.02725648134946823, + -0.025089887902140617, + 0.030947117134928703, + -0.05727079138159752, + -0.1392819732427597, + 0.004934536758810282, + 0.02890384942293167, + 0.024994583800435066, + -0.06509309262037277, + 0.00398657564073801, + -0.018730470910668373, + 0.01380966231226921, + -0.06081899628043175, + 0.03834594786167145, + -0.01726793311536312, + 0.07165158540010452, + 0.03360101208090782, + 0.031724825501441956, + -0.0011219492880627513, + 0.005417266394942999, + -0.00905343797057867, + -0.02085801400244236, + -0.014714065007865429, + 0.03316686674952507, + 0.030065840110182762, + 0.035225775092840195, + -0.006022891495376825, + -0.02667367458343506, + 0.060322295874357224, + -0.0005375703913159668, + -0.006297962740063667, + -0.04470819607377052, + -0.08164642751216888, + -0.025251712650060654, + -0.03528488427400589, + 0.03741024434566498, + -0.010370411910116673, + 0.0472044013440609, + -0.07409544289112091, + -0.0665530264377594, + -0.0679035410284996, + -0.03764793649315834, + -0.039319105446338654, + -0.12677522003650665, + 0.04594949632883072, + 0.09865859895944595, + -0.14820152521133423, + 0.012467948719859123, + 0.02088949829339981, + -0.019402457401156425, + -0.048580363392829895, + 0.07754523307085037, + 0.01727909967303276, + 0.030460741370916367, + 0.08520027995109558, + 0.0038237767294049263, + -0.07047874480485916, + -0.11376885324716568, + -0.09879935532808304, + -0.06737032532691956, + -0.02885579504072666, + 0.04192759469151497, + -0.061407893896102905, + -0.0808427557349205, + -0.06297460198402405, + -0.11601151525974274, + -0.06124838441610336, + -0.016214532777667046, + -0.04678146541118622, + -0.00770664494484663, + 0.13209819793701172, + -0.0007235303055495024, + 0.0035326723009347916, + -0.025128977373242378, + 0.0673849806189537, + -0.06778911501169205, + -0.06210251525044441, + -0.03624323382973671, + 0.07938860356807709, + -1.199525496114926e-33, + 0.02620011195540428, + -0.011968818493187428, + -0.01388645637780428, + 0.07537249475717545, + 0.014947373420000076, + -0.03201676160097122, + -0.04159679263830185, + -0.00534075079485774, + -0.06616012006998062, + 0.04565046727657318, + -0.007105488330125809, + 0.09954261034727097, + -0.01750827208161354, + 0.10850988328456879, + 0.023273564875125885, + -0.009009048342704773, + -0.028456978499889374, + 0.0257573164999485, + -0.0018611251143738627, + 0.04099477455019951, + -0.09079335629940033, + 0.037856586277484894, + 0.006284329574555159, + 0.05802629888057709, + -0.00016035894805099815, + -0.023546390235424042, + 0.039520807564258575, + -0.012377427890896797, + -0.042790789157152176, + 0.047594182193279266, + 0.0427606962621212, + -0.011982981115579605, + 0.09036748111248016, + 0.025543496012687683, + 0.0004068844427820295, + 0.03122183121740818, + -0.07945121824741364, + -0.03842403367161751, + 0.002886143047362566, + 0.04388648271560669, + -0.07418979704380035, + -0.04068821296095848, + -0.028507312759757042, + 0.05646487697958946, + 0.1017289012670517, + 0.10141052305698395, + 0.034321025013923645, + -0.057606350630521774, + 0.04007881134748459, + -0.027575550600886345, + 0.021075638011097908, + -0.016237370669841766, + 0.03243423253297806, + 0.016655035316944122, + 0.043124642223119736, + -0.051449380815029144, + 0.01641538180410862, + 0.09996963292360306, + 0.05344906821846962, + -0.009750603698194027, + 0.038795873522758484, + -0.009078159928321838, + 0.04924025386571884, + -0.0459350124001503, + 0.0482574962079525, + 0.008339779451489449, + -0.11672832816839218, + -0.014618044719099998, + 0.05135563388466835, + 0.03762509301304817, + -0.0020295933354645967, + 0.11083744466304779, + 0.01590890996158123, + 0.061935994774103165, + 0.037859831005334854, + 0.019985584542155266, + 0.0072839343920350075, + 0.011006597429513931, + 0.016577720642089844, + -0.08330374211072922, + -0.11365560442209244, + -0.009947678074240685, + -0.021612312644720078, + 0.08864831924438477, + -0.020924989134073257, + 0.020718742161989212, + 0.03440876305103302, + -0.007989814504981041, + -0.04146232828497887, + -0.007468116004019976, + -0.06478901207447052, + 0.03136993572115898, + -0.028758151456713676, + -0.11501647531986237, + -0.026641542091965675, + -2.4251003143860586e-33, + 0.02638569287955761, + 0.04018077254295349, + -0.09569539874792099, + 0.01927555724978447, + -0.030742604285478592, + 0.058467574417591095, + 0.011698473244905472, + -0.010775679722428322, + 0.08271647244691849, + 0.06871046870946884, + -0.044668909162282944, + -0.03018265962600708, + -0.023992061614990234, + -0.010390467010438442, + -0.009225443936884403, + 0.010996845550835133, + -0.014761553145945072, + 0.022003911435604095, + -0.0011357722105458379, + 0.06404422223567963, + -0.09727555513381958, + 0.02224040776491165, + -0.06701388210058212, + 0.0466664582490921, + -0.0036288797855377197, + -0.014653416350483894, + -0.016503680497407913, + -0.04247011989355087, + -0.03713705763220787, + -0.026405654847621918, + 0.04486842826008797, + -0.029696719720959663, + -0.012113080359995365, + 0.06437064707279205, + -0.11808442324399948, + 0.016926011070609093, + 0.02491844817996025, + 0.014532490633428097, + 0.06406830251216888, + 0.01474443357437849, + -0.01428264006972313, + 0.008762327022850513, + 0.026328273117542267, + 0.03987610340118408, + -0.02902495302259922, + -0.09758947044610977, + -0.07530011236667633, + -0.05619185045361519, + 0.0010968289570882916, + 0.03102387860417366, + -0.06764553487300873, + 0.030434997752308846, + -0.04408881813287735, + -0.035281699150800705, + -0.03886830434203148, + 0.04915498197078705, + -0.053688693791627884, + 0.024723922833800316, + 0.05724472180008888, + 0.012103646993637085, + -0.020119663327932358, + 0.01917320489883423, + 0.014194467104971409, + 0.0017585972091183066, + 0.022539261728525162, + -0.11402294784784317, + 0.0037337306421250105, + -0.05629191920161247, + 0.01742684841156006, + -0.033592864871025085, + 0.040579892694950104, + -0.02033512480556965, + -0.03705180808901787, + -0.015070917084813118, + -0.015247665345668793, + -0.042728912085294724, + 0.02575860731303692, + 0.07782740145921707, + -0.0048149265348911285, + 0.024023188278079033, + -0.01263173297047615, + -0.00018992337572854012, + -0.014941726811230183, + 0.07980217784643173, + -0.03673003241419792, + -0.04281095787882805, + 0.050337519496679306, + -0.030552536249160767, + 0.02333228476345539, + -0.010470060631632805, + 0.022564617916941643, + 0.05958332493901253, + -0.010947874747216702, + 0.005585141945630312, + -0.021208714693784714, + -2.2643567021418676e-08, + -0.001488269423134625, + -0.05746934935450554, + -0.11127658188343048, + -0.007470225915312767, + 0.04907676577568054, + 0.0019987565465271473, + -0.021466150879859924, + 0.02631949447095394, + -0.06615306437015533, + -0.004739467054605484, + 0.0494765006005764, + 0.062113139778375626, + -0.1938910335302353, + -0.03751341253519058, + 0.034440331161022186, + 0.03760046139359474, + -0.03178469091653824, + 0.0475190095603466, + -0.05530139431357384, + -0.022128421813249588, + -0.009095409885048866, + 0.05184357240796089, + 0.06937089562416077, + -0.012133700773119926, + -0.011968124657869339, + 0.05760975927114487, + -0.0028354136738926172, + -0.004129242617636919, + 0.12031558156013489, + 0.05634127929806709, + 0.06164650246500969, + 0.03613445907831192, + -0.03931121900677681, + -0.05150149017572403, + -0.03617486730217934, + -0.032439060509204865, + -0.0058968449011445045, + -0.010808235965669155, + -0.001614721491932869, + 0.1794695258140564, + -0.0013712780782952905, + -0.10905788093805313, + -0.0479871928691864, + -0.0063038477674126625, + 0.023785650730133057, + 0.01825857162475586, + -0.05472642928361893, + -0.015343248844146729, + -0.05253920704126358, + -0.09388277679681778, + -0.016456633806228638, + 0.02960124798119068, + -0.02882671356201172, + 0.08817925304174423, + -0.02408587373793125, + -0.012303443625569344, + -0.0017919624224305153, + -0.042463190853595734, + 0.05659610033035278, + -0.002819886663928628, + -0.0049782427959144115, + 0.006972759962081909, + 0.07133860886096954, + -0.010432866401970387 + ], + "paint-brush-bold||colors,color picker,arts": [ + -0.036093760281801224, + -0.022302726283669472, + 0.004639260936528444, + 0.0339537039399147, + 0.048409029841423035, + 0.009283720515668392, + 0.10995824635028839, + -0.06703794747591019, + 0.004747845698148012, + -0.029634442180395126, + -0.031607240438461304, + 0.008714267984032631, + 0.051501672714948654, + -0.008180891163647175, + -0.0030685074161738157, + 0.14393457770347595, + -0.004765569698065519, + 0.033001385629177094, + -0.02255515567958355, + 0.012149435468018055, + -0.056553520262241364, + -0.014088821597397327, + -0.02131056971848011, + 0.00855564046651125, + -0.01277919951826334, + 0.02098662406206131, + 0.06856280565261841, + 0.005444417241960764, + 0.00764241348952055, + -0.06617006659507751, + 0.015606395900249481, + -0.012056063860654831, + 0.147196426987648, + 0.0022290877532213926, + 0.0046268487349152565, + -0.04584895446896553, + -0.03139849379658699, + 0.045570217072963715, + -0.04419004172086716, + 0.034685228019952774, + -0.0359710156917572, + -0.05472836270928383, + -0.04677700996398926, + -0.0011497152736410499, + -0.013291756622493267, + -0.05096631497144699, + 0.02265224978327751, + 0.018892226740717888, + 0.02955537848174572, + -0.0016950828721746802, + 0.0018965528579428792, + -0.08824857324361801, + -0.11410796642303467, + -0.02562645822763443, + -0.01625606045126915, + 0.029529474675655365, + -0.013821812346577644, + -0.0492451936006546, + 0.0920756459236145, + -0.008831102401018143, + 0.031348977237939835, + 0.028679482638835907, + 0.009768507443368435, + 0.04851164296269417, + 0.03219440206885338, + 0.051768507808446884, + -0.005428432486951351, + 0.024402165785431862, + -0.03584148734807968, + -0.03718208149075508, + 0.01075034774839878, + 0.0060286507941782475, + -3.247388303861953e-05, + 0.02168268896639347, + 0.03109128400683403, + 0.021910395473241806, + 0.06583220511674881, + 0.024374093860387802, + -0.024540027603507042, + -0.1277090460062027, + -0.11704213172197342, + -0.0476592518389225, + -0.06081637367606163, + 0.09064079076051712, + 0.129368394613266, + 0.11925302445888519, + -0.07565594464540482, + -0.06435196101665497, + -0.032682742923498154, + 0.002591249532997608, + -0.04365266114473343, + 0.0353376641869545, + -0.05318639799952507, + -0.007060166914016008, + 0.00687405513599515, + -0.006446394603699446, + 0.08963798731565475, + 0.010803514160215855, + -0.030194154009222984, + 0.03627583384513855, + 0.04097465053200722, + -0.056051068007946014, + 0.04222271963953972, + -0.008123586885631084, + -0.05420088768005371, + -0.04011181741952896, + -0.07374733686447144, + 0.0014038290828466415, + 0.018830861896276474, + -0.0223475880920887, + 0.02114109694957733, + -0.06427005678415298, + 0.013427156023681164, + -0.05267396941781044, + -0.005799764767289162, + -0.001084815594367683, + -0.0132326390594244, + -0.030715489760041237, + 0.0664367526769638, + 0.06289190798997879, + 0.07507152855396271, + -0.04160035774111748, + -0.036382097750902176, + -0.06366158276796341, + -0.03693055734038353, + 0.000647558132186532, + 0.04179065674543381, + -1.944076087415078e-33, + 0.08678461611270905, + -0.02151394449174404, + -0.008604263886809349, + 0.08397403359413147, + 0.019519271329045296, + 0.004521830473095179, + 0.009355775080621243, + -0.0561552457511425, + -0.09843674302101135, + 0.031865280121564865, + 0.10044846683740616, + 0.009148146025836468, + -0.055572010576725006, + 0.08117412030696869, + 0.01199597492814064, + 0.03521666303277016, + 0.011452291160821915, + -0.05274184048175812, + -0.05062166973948479, + 0.019630055874586105, + -0.02815687097609043, + 0.06948473304510117, + -0.09756479412317276, + 0.008761425502598286, + -0.09731730073690414, + 0.025029422715306282, + 0.022032102569937706, + 0.019781412556767464, + -0.0368785560131073, + 0.02337692864239216, + -0.00823469553142786, + 0.009891350753605366, + 0.08454164862632751, + 0.04338570684194565, + -0.084403395652771, + 0.004229608457535505, + -0.06781499087810516, + -0.019182195886969566, + 0.09938053786754608, + 0.061040785163640976, + -0.07432520389556885, + -0.017909010872244835, + -0.04072880744934082, + 0.05095687136054039, + 0.06212197616696358, + 0.06036387011408806, + -0.021627632901072502, + -0.003456906648352742, + -0.01785864867269993, + 0.07454876601696014, + 0.01658015325665474, + 0.023678364232182503, + 0.04128701612353325, + 0.06131742522120476, + 0.008747091516852379, + -0.0178542397916317, + 0.006898939609527588, + 0.08440541476011276, + -0.016232432797551155, + -0.018807427957654, + 0.004064084030687809, + 0.0873447135090828, + -0.006014845799654722, + 0.01882976107299328, + -0.004850110039114952, + 0.07479000836610794, + -0.028001073747873306, + 0.030957259237766266, + 0.06665890663862228, + -0.027119500562548637, + -0.020860662683844566, + 0.11584162712097168, + 0.028299344703555107, + -0.009242025204002857, + 0.009690424427390099, + -0.052147917449474335, + 0.055249281227588654, + -0.039546817541122437, + 0.019735610112547874, + -0.06544095277786255, + -0.14348849654197693, + 0.05522753670811653, + -0.10156595706939697, + -0.019587695598602295, + -0.09810137003660202, + 0.01707548089325428, + 0.010752273723483086, + -0.043789323419332504, + -0.05376904830336571, + -0.03588766232132912, + -0.017878759652376175, + 0.011163794435560703, + -0.04503480717539787, + -0.06850039213895798, + -0.08584456890821457, + 8.754855091248887e-34, + 0.044589195400476456, + 0.03444521874189377, + 0.006440914236009121, + 0.12227492779493332, + -0.007697089575231075, + -0.006176881026476622, + 0.06661641597747803, + 0.04903995990753174, + 0.008007635362446308, + 0.011260307393968105, + 0.054984528571367264, + 0.05006355047225952, + -0.04297511279582977, + 0.01913844235241413, + 0.060807887464761734, + 0.06031692028045654, + 0.025289036333560944, + 0.062164317816495895, + -0.08340825885534286, + -0.04113718122243881, + -0.0707663968205452, + -0.0002098400000249967, + -0.03353973105549812, + 0.017345674335956573, + -0.10129331052303314, + 0.06435933709144592, + -0.04837534576654434, + -0.032466597855091095, + 0.04491869732737541, + -0.015775632113218307, + 0.037131424993276596, + -0.01996888965368271, + 0.0293435025960207, + 0.06295543164014816, + -0.026010287925601006, + -0.07444901764392853, + 0.05684103071689606, + -0.07115880399942398, + -0.03368687629699707, + 0.05544988065958023, + -0.015873532742261887, + -0.05425930768251419, + 0.01249937154352665, + 0.0720730870962143, + -0.07264817506074905, + 0.0007951483712531626, + 0.0011210498632863164, + -0.018186014145612717, + -0.02627059631049633, + 0.03429575264453888, + 0.015713796019554138, + -0.036123547703027725, + -0.05802575498819351, + 0.015416696667671204, + -0.015436267480254173, + -0.028942633420228958, + 0.06942025572061539, + -0.01974032074213028, + 0.010354475118219852, + 0.13127455115318298, + -0.01837274245917797, + 0.04276464134454727, + -0.0555591881275177, + 0.030758576467633247, + 0.015307384543120861, + -0.040653884410858154, + 0.06734861433506012, + -0.004041362088173628, + 0.04611692950129509, + -0.019677823409438133, + 0.08523992449045181, + 0.05432494357228279, + 0.06758280843496323, + 0.024555593729019165, + 0.09191691875457764, + -0.04297010228037834, + 0.07155665755271912, + -0.01032678410410881, + 0.013052841648459435, + -0.0019139471696689725, + -0.08884713798761368, + -0.012438669800758362, + 0.05442442744970322, + 0.03284766525030136, + -0.02962016686797142, + 0.07495865970849991, + -0.062303442507982254, + 0.06970036774873734, + 0.07422668486833572, + -0.1475435197353363, + 0.03656548261642456, + 0.07328324764966965, + 0.04728275537490845, + -0.04860484227538109, + -0.05266648158431053, + -1.671660143642839e-08, + -0.004648558795452118, + -0.03342144936323166, + 0.03127756714820862, + -0.067440465092659, + 0.03367415815591812, + 0.016377808526158333, + 0.0328754261136055, + -0.03568926453590393, + -0.07240922003984451, + 0.039965514093637466, + 0.08792859315872192, + 0.012017740868031979, + -0.0654929056763649, + -0.04020166024565697, + 0.028432587161660194, + -0.031160278245806694, + -0.0009479991858825088, + 0.008974876254796982, + -0.027532493695616722, + -0.10158950090408325, + -0.04011286050081253, + 0.03554866835474968, + -0.013492889702320099, + -0.024189645424485207, + 0.006815633270889521, + -0.0565301850438118, + -0.12056884914636612, + 0.045205533504486084, + -0.013171002268791199, + 0.08921653032302856, + -0.0280451737344265, + 0.026522919535636902, + 0.03504089638590813, + 0.00892084650695324, + -0.025727635249495506, + -0.03939224034547806, + -0.09291883558034897, + -0.013295048847794533, + -0.05347517505288124, + 0.06365291029214859, + -0.05275290086865425, + -0.006611512508243322, + -0.004790795035660267, + -0.0334986075758934, + -0.024133112281560898, + -0.029382886365056038, + 0.04939800128340721, + -0.07866395264863968, + -0.10334104299545288, + -0.019895005971193314, + -0.08300545811653137, + -0.05672582983970642, + 0.023630738258361816, + 0.054047469049692154, + -0.040554214268922806, + -0.05936069041490555, + -0.05077946558594704, + 0.08815687894821167, + -0.03033611550927162, + 0.009110772982239723, + -0.004754338879138231, + 0.028845490887761116, + -0.04474833980202675, + 0.013060297816991806 + ], + "paint-brush-broad-bold||fill,colors,color picker,arts": [ + -0.026437224820256233, + -0.01897941343486309, + 0.01562807895243168, + 0.019618485122919083, + 0.014256739988923073, + -0.006002361886203289, + 0.09812313318252563, + -0.028403382748365402, + -0.036580756306648254, + -0.028950899839401245, + -0.049313247203826904, + 0.004806302022188902, + 0.023628339171409607, + 0.0004887229879386723, + 0.00014502964040730149, + 0.1421137899160385, + -0.009642519056797028, + 0.004309254232794046, + -0.035504087805747986, + 0.012189318425953388, + -0.00968652218580246, + -0.032279785722494125, + -0.062178418040275574, + 0.004516645800322294, + -0.006138348486274481, + 0.04060208052396774, + 0.06841688603162766, + 0.0015065085608512163, + 0.04332678020000458, + -0.06598764657974243, + 0.0025185144040733576, + 0.03422025218605995, + 0.1368664652109146, + -0.007273118942975998, + 0.007701566908508539, + -0.06179637834429741, + -0.03740592673420906, + 0.07111184298992157, + -0.03798199072480202, + 0.034792426973581314, + -0.041570454835891724, + -0.04293175786733627, + -0.03650926426053047, + 0.07346412539482117, + 0.0027069239877164364, + -0.04488212615251541, + 9.820675040828064e-05, + 0.019470086321234703, + 0.018536752089858055, + -0.005818160716444254, + 0.0059643941931426525, + -0.09105706214904785, + -0.16036757826805115, + -0.0070329089649021626, + -0.019837595522403717, + 0.005066122859716415, + -0.006474322639405727, + -0.051197879016399384, + 0.07425112277269363, + 0.007498201448470354, + 0.015218841843307018, + 0.022689228877425194, + -0.008007779717445374, + 0.06775892525911331, + 0.006809360347688198, + 0.03563980758190155, + -0.03105129860341549, + 0.027907514944672585, + -0.02110423892736435, + -0.0431787371635437, + 0.017047958448529243, + 0.035362713038921356, + -0.04211823269724846, + 0.023929134011268616, + 0.005955598317086697, + -0.008738617412745953, + 0.04697118327021599, + -0.0020224261097609997, + -0.036671232432127, + -0.09985461086034775, + -0.11230926215648651, + -0.025807691738009453, + -0.05664241313934326, + 0.09485962241888046, + 0.10385546088218689, + 0.11739974468946457, + -0.06776031106710434, + -0.07969802618026733, + -0.02813449315726757, + 0.012743533588945866, + -0.035044021904468536, + 0.023223083466291428, + -0.08228182792663574, + -0.0022923005744814873, + -0.01986701786518097, + -0.0043047042563557625, + 0.08588670194149017, + -0.021209007129073143, + 0.0062469677068293095, + 0.05550877004861832, + 0.027788247913122177, + -0.05798867717385292, + 0.026715151965618134, + -0.027812059968709946, + -0.03928469121456146, + -0.0408618189394474, + -0.06416351348161697, + 0.026635317131876945, + 0.03766267001628876, + -0.015377359464764595, + 0.015585726127028465, + -0.071071557700634, + 0.029716452583670616, + -0.061843063682317734, + 0.003322439268231392, + 0.007233528420329094, + -0.02274291403591633, + -0.013982115313410759, + 0.06361580640077591, + 0.08493461459875107, + 0.047603707760572433, + -0.014973287470638752, + -0.05651213973760605, + -0.09176761656999588, + -0.047675833106040955, + -0.0068495930172502995, + 0.012587103992700577, + -2.1174469941529724e-33, + 0.049397699534893036, + -0.013098728843033314, + -0.017141375690698624, + 0.15277276933193207, + -0.0030489792115986347, + 0.0019075922900810838, + 0.0036854164209216833, + -0.049159977585077286, + -0.09806525707244873, + 0.06850367039442062, + 0.08265766501426697, + 0.022293545305728912, + -0.06316468119621277, + 0.10591902583837509, + 0.03920967876911163, + 0.0208430252969265, + 0.004620533902198076, + -0.012602465227246284, + -0.02882417105138302, + 0.013278565369546413, + -0.03736281394958496, + 0.06958024948835373, + -0.04745563492178917, + 0.016674358397722244, + -0.05732584372162819, + -0.013098040595650673, + 0.01704026758670807, + 0.002817625179886818, + -0.02720751240849495, + 0.025200877338647842, + -0.012785205617547035, + 0.001670574420131743, + 0.07535535097122192, + 0.034555140882730484, + -0.08951624482870102, + -0.007845324464142323, + -0.054335836321115494, + -0.0440744124352932, + 0.09377869963645935, + 0.03505580872297287, + -0.07029599696397781, + -0.02105226181447506, + -0.015880022197961807, + 0.05958830192685127, + 0.07627367228269577, + 0.034921783953905106, + -0.03278142958879471, + 0.02803857810795307, + -0.03791533410549164, + 0.08520953357219696, + 0.023745525628328323, + 0.045216113328933716, + 0.05397409945726395, + 0.060028064996004105, + -0.0028247805312275887, + -0.017588194459676743, + 0.013271218165755272, + 0.05944659188389778, + -0.0183163620531559, + 0.01126288715749979, + 0.04013412445783615, + 0.09146631509065628, + -0.05579855665564537, + 0.046797752380371094, + 0.008736852556467056, + 0.046090852469205856, + -0.006660440471023321, + -0.0017822454683482647, + 0.06530169397592545, + -0.007546490058302879, + -0.018048543483018875, + 0.10155262798070908, + 0.024843867868185043, + 0.008705928921699524, + 0.0043485695496201515, + -0.06003471836447716, + 0.04696524515748024, + -0.021856261417269707, + 0.02187397889792919, + -0.043029945343732834, + -0.13060756027698517, + 0.05692259594798088, + -0.10367915034294128, + -0.03882656618952751, + -0.1179264485836029, + 0.01276948768645525, + 0.015991531312465668, + -0.05459023639559746, + -0.03181148320436478, + -0.0645345002412796, + -0.05629095062613487, + 0.017460118979215622, + -0.031144144013524055, + -0.08685526251792908, + -0.09580633044242859, + 1.2681700499346282e-33, + 0.043935466557741165, + 0.006447561550885439, + -0.0014498988166451454, + 0.12141596525907516, + 0.046357735991477966, + -0.008591508492827415, + 0.059267982840538025, + 0.042213231325149536, + 0.05090423673391342, + 0.008079980500042439, + 0.049011632800102234, + 0.07171925902366638, + -0.022886648774147034, + -0.001787893706932664, + 0.03855611011385918, + 0.016769688576459885, + 0.03683324158191681, + 0.054747216403484344, + -0.05639633163809776, + -0.025280505418777466, + -0.054757751524448395, + -0.016233455389738083, + -0.0676395371556282, + -0.0018281410448253155, + -0.07594069093465805, + 0.05397025868296623, + -0.09334010630846024, + -0.05029737204313278, + 0.04170436039566994, + 0.03127320110797882, + 0.017338421195745468, + -0.06851464509963989, + 0.04053711146116257, + 0.06890399008989334, + -0.05637489631772041, + -0.06807173043489456, + 0.11171119660139084, + -0.05197792500257492, + -0.03743217512965202, + 0.0455259270966053, + -0.013899223878979683, + -0.04799959808588028, + 0.028425419703125954, + 0.07002395391464233, + -0.09634961187839508, + -0.03371257707476616, + -0.03558137267827988, + 0.007204350549727678, + -0.03345786780118942, + 0.023744912818074226, + -0.006231760606169701, + -0.02942635677754879, + -0.04272909089922905, + 0.022014841437339783, + 0.018741952255368233, + -0.020481804385781288, + 0.02959524840116501, + -0.03450291231274605, + -0.010001197457313538, + 0.1223984956741333, + -0.019703462719917297, + 0.027794841676950455, + -0.07041510939598083, + 0.005068189464509487, + 0.03327801823616028, + -0.05525883659720421, + 0.0395902544260025, + -0.047533951699733734, + 0.012660262174904346, + -0.02308216504752636, + 0.07413094490766525, + 0.055283259600400925, + 0.03212949261069298, + 0.014683603309094906, + 0.08640995621681213, + -0.029346544295549393, + 0.10792779177427292, + -0.011272579431533813, + 0.020290175452828407, + 0.012699641287326813, + -0.0841892659664154, + -0.01773853227496147, + 0.050688065588474274, + 0.0591861717402935, + 0.003497445723041892, + 0.10485624521970749, + -0.07545266300439835, + 0.061980340629816055, + 0.10403146594762802, + -0.10162423551082611, + 0.04015670344233513, + 0.07989920675754547, + 0.047942932695150375, + -0.03961773216724396, + -0.05711229890584946, + -1.878544253486325e-08, + 0.012249278835952282, + -0.019753750413656235, + 0.04248102754354477, + -0.0626450777053833, + 0.046657495200634, + -0.0010950482683256269, + 0.05689031630754471, + -0.0054931556805968285, + -0.0665695071220398, + 0.05247924476861954, + 0.08411741256713867, + 0.04979584738612175, + -0.09905214607715607, + -0.015337826684117317, + 0.04049563780426979, + -0.03221232816576958, + -0.004401622340083122, + 0.020899225026369095, + -0.03578419238328934, + -0.10942085832357407, + -0.014724633656442165, + 0.020782683044672012, + -0.035753026604652405, + -0.03832833096385002, + -0.0106089748442173, + -0.06038077175617218, + -0.12553644180297852, + 0.0280750785022974, + -0.029748881235718727, + 0.09232910722494125, + -0.025914266705513, + 0.04566730931401253, + 0.014677957631647587, + -0.010886733420193195, + -0.016409438103437424, + -0.01961103454232216, + -0.07239457964897156, + -0.020336616784334183, + -0.07981348037719727, + 0.0682331770658493, + -0.022184744477272034, + -0.009775443933904171, + 0.03793790191411972, + -0.0337301567196846, + 0.02587800845503807, + -0.02472100593149662, + 0.054371532052755356, + -0.029238255694508553, + -0.10170982033014297, + -0.024005601182579994, + -0.06510461866855621, + -0.03218979388475418, + 0.016412315890192986, + 0.029556671157479286, + -0.03853364288806915, + -0.01290284376591444, + -0.04526903107762337, + 0.07606800645589828, + -0.008337541483342648, + 0.021170319989323616, + -0.02276022918522358, + 0.04841570928692818, + -0.014388862065970898, + 0.022512245923280716 + ], + "paint-brush-household-bold||colors,color picker,arts": [ + -0.03528084605932236, + -0.011892255395650864, + 0.019355246797204018, + 0.015027283690869808, + 0.07263022661209106, + 0.01642942614853382, + 0.1026608869433403, + -0.06704114377498627, + -0.014720971696078777, + -0.028401648625731468, + -0.02355935610830784, + -0.01271834410727024, + 0.06289809942245483, + 0.008549799211323261, + -0.004688178654760122, + 0.11816880106925964, + 0.0053167385049164295, + 0.013065852224826813, + -0.007773671764880419, + 0.026224249973893166, + -0.05347412824630737, + 0.00494765117764473, + -0.014902873896062374, + 0.01588558964431286, + 0.014855727553367615, + 0.033808633685112, + 0.05757727473974228, + 0.01586759276688099, + -0.004179793875664473, + -0.07405205070972443, + 0.021591924130916595, + 6.627802940784022e-05, + 0.14167927205562592, + -0.0074303243309259415, + 0.020501140505075455, + -0.037768296897411346, + -0.015369574539363384, + 0.05227841064333916, + -0.04294412583112717, + 0.03195813670754433, + -0.040513914078474045, + -0.0727372094988823, + -0.02413228712975979, + -0.012969843111932278, + -0.005585878621786833, + -0.04804062843322754, + 0.019981399178504944, + 0.01605316437780857, + 0.009095922112464905, + -0.008348931558430195, + -0.005081604700535536, + -0.06457488983869553, + -0.12312972545623779, + -0.014635000377893448, + -0.004495038650929928, + 0.031949080526828766, + -0.0016943681985139847, + -0.04584898799657822, + 0.10099571943283081, + -0.00027187191881239414, + 0.03023521415889263, + 0.014365952461957932, + -0.003971174359321594, + 0.06584398448467255, + 0.022295983508229256, + 0.04108599200844765, + -0.02800634875893593, + 0.032432980835437775, + -0.03251180425286293, + -0.035836849361658096, + 0.0013967722188681364, + 0.004230732098221779, + 0.012552067637443542, + 0.05862003564834595, + 0.04085967689752579, + 0.017009545117616653, + 0.05095920339226723, + -0.00895349308848381, + -0.03287733346223831, + -0.1463017612695694, + -0.12046921998262405, + -0.03627066686749458, + -0.07137175649404526, + 0.09294088184833527, + 0.10184437781572342, + 0.12905454635620117, + -0.061559367924928665, + -0.05882251262664795, + -0.036134883761405945, + -0.0016397131839767098, + -0.0538448840379715, + 0.015263168141245842, + -0.026174232363700867, + -0.008561871945858002, + -0.016422608867287636, + -0.005431886296719313, + 0.07032628357410431, + -0.013136631809175014, + -0.014357609674334526, + 0.04751357436180115, + 0.020601220428943634, + -0.05893152952194214, + 0.03964561969041824, + -0.022241909056901932, + -0.07182855904102325, + -0.06181788444519043, + -0.0824359878897667, + 0.022780077531933784, + 0.011849175207316875, + -0.015551246702671051, + 0.007354479283094406, + -0.06782779842615128, + -0.015134457498788834, + -0.06470339000225067, + -0.003355571301653981, + -0.04147813469171524, + 0.0026529086753726006, + -0.0557023286819458, + 0.07736509293317795, + 0.06813926994800568, + 0.06741468608379364, + -0.04991354048252106, + -0.025052916258573532, + -0.07365427911281586, + -0.038146596401929855, + 0.0027177806477993727, + 0.04953115060925484, + -2.3743329174259517e-33, + 0.07930029183626175, + -0.00042527017649263144, + 0.003770679235458374, + 0.0718044638633728, + 0.03084750846028328, + 0.005152636673301458, + -0.003911452367901802, + -0.018809722736477852, + -0.07068122923374176, + 0.03249267488718033, + 0.12839964032173157, + 0.03312592953443527, + -0.08351526409387589, + 0.0986592099070549, + 0.01805933564901352, + 0.05830777809023857, + 0.005601888056844473, + -0.046933963894844055, + -0.02483920194208622, + 0.007652906700968742, + -0.04065706208348274, + 0.09896042943000793, + -0.07849740982055664, + 0.02829786017537117, + -0.08627014607191086, + -0.003763209329918027, + 0.018497643992304802, + 0.020539935678243637, + -0.0419844351708889, + 0.020377544686198235, + 0.016057001426815987, + 0.01636488363146782, + 0.09687699377536774, + 0.038936275988817215, + -0.11269890516996384, + -0.010917430743575096, + -0.06698605418205261, + -0.0479641892015934, + 0.08534342795610428, + 0.0555296391248703, + -0.0865492895245552, + -0.011800983920693398, + -0.008984047919511795, + 0.06610891968011856, + 0.0705232173204422, + 0.05988333001732826, + -0.025289779528975487, + 0.015114571899175644, + -0.029134107753634453, + 0.09269706159830093, + 0.022352570667862892, + 0.01804930344223976, + 0.05371188744902611, + 0.07593528181314468, + -0.010463809594511986, + -0.011363871395587921, + 0.008688966743648052, + 0.03568745404481888, + -0.010591449216008186, + -0.021447131410241127, + 0.013206551782786846, + 0.12013567239046097, + -0.006061709951609373, + 0.016148880124092102, + 0.008024592883884907, + 0.05379580706357956, + 0.001887789461761713, + 0.016639795154333115, + 0.06921300292015076, + -0.011358787305653095, + -0.023591183125972748, + 0.092588871717453, + 0.01028226688504219, + -0.0004404157807584852, + 0.028484558686614037, + -0.05699998140335083, + 0.04693109914660454, + -0.03627382218837738, + 0.009928702376782894, + -0.04543155059218407, + -0.12783105671405792, + 0.05064968392252922, + -0.08613387495279312, + -0.010874071158468723, + -0.11216732859611511, + 0.008160644210875034, + 0.004038006998598576, + -0.04055877774953842, + -0.04665905237197876, + -0.018193921074271202, + -0.001462773303501308, + 0.021701371297240257, + -0.033959466964006424, + -0.05940421298146248, + -0.09726408123970032, + 1.3207073005766918e-33, + 0.044839292764663696, + 0.002526722149923444, + 0.005170171149075031, + 0.1385648101568222, + 0.022538529708981514, + -0.021918702870607376, + 0.02923879586160183, + 0.018401464447379112, + 0.017913270741701126, + 0.01102522574365139, + 0.05074417218565941, + 0.04844604805111885, + -0.012224145233631134, + 0.013106766156852245, + 0.0608743391931057, + 0.05424550175666809, + 0.04559064283967018, + 0.051497090607881546, + -0.061769381165504456, + -0.036660775542259216, + -0.058942653238773346, + 0.009171584621071815, + -0.05158954858779907, + 0.01758233644068241, + -0.09942246228456497, + 0.06450483202934265, + -0.06584212183952332, + -0.026469605043530464, + 0.03659769147634506, + -0.009911542758345604, + 0.01399871613830328, + -0.059233736246824265, + 0.04441618174314499, + 0.047663431614637375, + -0.012397178448736668, + -0.08380495756864548, + 0.036701563745737076, + -0.06605454534292221, + -0.05816235393285751, + 0.06076370179653168, + -0.007078572642058134, + -0.05155596509575844, + 0.020149698480963707, + 0.081569142639637, + -0.06447049975395203, + -0.013360627926886082, + -0.04185018315911293, + -0.011771731078624725, + -0.026094621047377586, + 0.03352464362978935, + 0.008326957933604717, + -0.02949533239006996, + -0.06347815692424774, + -0.004928723908960819, + -0.007603047881275415, + -0.005216414574533701, + 0.10544324666261673, + -0.004527383949607611, + 0.006194335874170065, + 0.14852553606033325, + -0.016276657581329346, + 0.048607345670461655, + -0.08146140724420547, + 0.06463980674743652, + 7.127026037778705e-06, + -0.03563055023550987, + 0.04936956986784935, + -0.01651165448129177, + 0.019383149221539497, + -0.03133958578109741, + 0.06948519498109818, + 0.04825139418244362, + 0.056037284433841705, + -0.007377865258604288, + 0.06345774978399277, + -0.04590410739183426, + 0.07299250364303589, + -0.009221192449331284, + 0.02032376267015934, + -0.010916289873421192, + -0.08448904007673264, + -0.013986099511384964, + 0.05407596006989479, + 0.04555664584040642, + -0.027301914989948273, + 0.0532953143119812, + -0.08010153472423553, + 0.06801804900169373, + 0.07941913604736328, + -0.13213130831718445, + 0.04913824051618576, + 0.10151562839746475, + 0.046559885144233704, + -0.028613021597266197, + -0.04378024488687515, + -1.7939830954105673e-08, + 0.000366173277143389, + -0.02405362017452717, + 0.04795421287417412, + -0.07381187379360199, + 0.03340383991599083, + -0.01297023706138134, + 0.056776128709316254, + -0.03435153886675835, + -0.05905783548951149, + 0.05510539934039116, + 0.07598671317100525, + 0.010351089760661125, + -0.055008094757795334, + -0.02105359174311161, + 0.0441066138446331, + -0.037798427045345306, + 0.016845975071191788, + 0.01106981374323368, + -0.040955860167741776, + -0.09588572382926941, + -0.010611776262521744, + 0.025557318702340126, + -0.01614878699183464, + -0.03130732476711273, + -0.024526016786694527, + -0.040843550115823746, + -0.10023229569196701, + 0.04015309736132622, + -0.006183551624417305, + 0.11769004166126251, + -0.031071122735738754, + 0.030984405428171158, + 0.004653310868889093, + -0.0033132031094282866, + -0.04175886884331703, + -0.039658114314079285, + -0.09755298495292664, + -0.028790723532438278, + -0.06104970723390579, + 0.04393145814538002, + -0.04141666740179062, + -0.034650545567274094, + -0.03841732442378998, + -0.03912178426980972, + -0.003975419327616692, + -0.05105523020029068, + 0.04653554409742355, + -0.062318529933691025, + -0.10189776122570038, + -0.004459320567548275, + -0.1039985790848732, + -0.06348953396081924, + 0.020266685634851456, + 0.01997806690633297, + -0.026390643790364265, + -0.0552762895822525, + -0.0353027880191803, + 0.05704090744256973, + -0.005805246066302061, + 0.009261604398488998, + 0.01056625321507454, + 0.03959563374519348, + -0.03242270648479462, + 0.03266601637005806 + ], + "paint-bucket-bold||*updated*,paintbucket,colors,color picker,fill,arts": [ + -0.03854229673743248, + -0.00536820013076067, + 0.01911449246108532, + 0.009898072108626366, + 0.0877697616815567, + 0.0011040426325052977, + 0.09543047845363617, + -0.06509578227996826, + 0.010010838508605957, + -0.0028062977362424135, + -0.06360863894224167, + 0.010991956107318401, + 0.047039907425642014, + -0.06251940876245499, + 0.021661505103111267, + 0.0708421841263771, + -0.01003821287304163, + 0.028321078047156334, + -0.049124423414468765, + -0.0615493580698967, + -0.12498632818460464, + -0.019323008134961128, + -0.03080904856324196, + 0.004883945919573307, + 0.016972186043858528, + 0.07853645086288452, + 0.003075850196182728, + 0.02612033486366272, + 0.005746650509536266, + -0.10093279182910919, + 0.0029055399354547262, + -0.012450171634554863, + 0.15108460187911987, + -0.004635072313249111, + 0.07323199510574341, + 0.04383323714137077, + -0.030097460374236107, + 0.03192782402038574, + -0.061248891055583954, + 0.02132187969982624, + -0.018609626218676567, + -0.06680954992771149, + -0.05461328104138374, + -0.007085727993398905, + -0.0568639412522316, + -0.03163212165236473, + -0.026631278917193413, + -0.025654815137386322, + 0.050368085503578186, + 0.00899400282651186, + -0.007575353607535362, + -0.1671905219554901, + -0.10668179392814636, + -0.017733322456479073, + 0.015921447426080704, + 0.011628101579844952, + 0.0016113327583298087, + -0.006207653786987066, + 0.06763271242380142, + -0.032647356390953064, + -0.016139136627316475, + 0.02901640720665455, + 0.02594084106385708, + 0.04341766610741615, + 0.06208760663866997, + 0.052542608231306076, + -0.04516429454088211, + -0.015666531398892403, + -0.020591333508491516, + -0.023555776104331017, + 0.04082414135336876, + 0.01159447431564331, + -0.02266974188387394, + -0.04066932946443558, + -0.02107471227645874, + -0.021888118237257004, + 0.038062505424022675, + 0.0674506425857544, + -0.024333259090781212, + -0.08473864197731018, + -0.09888017177581787, + -0.06369686126708984, + -0.05346374958753586, + 0.015081594698131084, + 0.057558249682188034, + 0.05950915440917015, + -0.07661125808954239, + -0.05281703174114227, + -0.028648139908909798, + -0.010469833388924599, + -0.06664429605007172, + -0.011335696093738079, + 0.025007586926221848, + -0.006395530421286821, + -0.039781007915735245, + 0.05411812663078308, + 0.07341249287128448, + -0.009154374711215496, + -0.0059991865418851376, + 0.058135632425546646, + 0.023738419637084007, + -0.005396359600126743, + 0.00025831928360275924, + -0.07911030948162079, + 0.04374818131327629, + 0.014074580743908882, + -0.06964446604251862, + 0.09522644430398941, + 0.02228679694235325, + 0.017963791266083717, + 0.01901697739958763, + -0.09432969987392426, + 0.02703392505645752, + -0.06226792186498642, + -0.058440983295440674, + -0.014586773701012135, + -0.03086220845580101, + -0.0385119654238224, + 0.030079344287514687, + 0.0518861822783947, + 0.14434389770030975, + -0.02716897800564766, + -0.014050670899450779, + -0.11681424826383591, + -0.08108218014240265, + -0.012616789899766445, + -0.013815201818943024, + -1.8654735352404763e-33, + 0.07093672454357147, + -0.0849187821149826, + 0.0014917518710717559, + 0.10323096811771393, + 0.07723046094179153, + 0.036930471658706665, + 0.00791977159678936, + -0.044283077120780945, + -0.08225888013839722, + 0.02554454281926155, + 0.11265836656093597, + 0.02108188159763813, + -0.10586439818143845, + 0.11429689824581146, + 0.0011106196325272322, + -0.006525540258735418, + 0.005657957401126623, + -0.004397551529109478, + -0.01123091857880354, + 0.0027694229502230883, + -0.07117435336112976, + 0.020089587196707726, + -0.06638450175523758, + -0.016073619946837425, + -0.021982571110129356, + 0.018921373412013054, + 0.04233806952834129, + -0.001587672159075737, + -0.018080158159136772, + 0.033886320888996124, + 0.029118619859218597, + 0.014038526453077793, + 0.03972325474023819, + 0.02802281081676483, + -0.08235839754343033, + -0.02497282437980175, + -0.09603624045848846, + -0.01317493338137865, + 0.029023587703704834, + 0.014665542170405388, + -0.030199460685253143, + -0.0633457824587822, + -0.07497059553861618, + 0.029316524043679237, + 0.029939936473965645, + 0.03839421644806862, + -0.011983980424702168, + -0.031230086460709572, + 0.03199745714664459, + 0.05799131840467453, + 0.032336898148059845, + 0.05803772807121277, + 0.005818369332700968, + 0.05939926207065582, + -0.030084969475865364, + -0.0536915622651577, + -0.01586988754570484, + 0.02828071266412735, + -0.014161395840346813, + -0.0357535295188427, + -0.0009636232280172408, + 0.11554262042045593, + -0.006400573067367077, + 0.0022746589966118336, + 0.025529762730002403, + 0.08163348585367203, + 0.05108628049492836, + 0.07300297915935516, + 0.06025594845414162, + -0.0009762287954799831, + -0.002642987994477153, + 0.09477029740810394, + 0.0473208948969841, + 0.047688260674476624, + -0.05158228054642677, + -0.07788471132516861, + 0.03784725069999695, + -0.03785188868641853, + 0.03707856684923172, + -0.05823368579149246, + -0.10751425474882126, + -0.01044947374612093, + -0.07049106806516647, + 0.04785894230008125, + -0.06329116970300674, + -0.0009326157160103321, + 0.06313753873109818, + 0.008991004899144173, + -0.06705484539270401, + -0.06902412325143814, + -0.06078784167766571, + 0.016448400914669037, + -0.07749144732952118, + -0.0898590013384819, + -0.10383987426757812, + 4.049124830409241e-34, + 0.08355087786912918, + 0.03166632726788521, + -0.03911278024315834, + 0.11379896849393845, + 0.03658526763319969, + -0.0344933457672596, + 0.07200522720813751, + 0.023228123784065247, + 0.07625751197338104, + 0.0279424749314785, + -0.00620467821136117, + 0.03912268206477165, + -0.06734932214021683, + 0.0009775254875421524, + 0.04908080771565437, + 0.06803037971258163, + -0.028412245213985443, + 0.003721514716744423, + -0.09141921252012253, + 0.01639157347381115, + -0.08571997284889221, + -0.037869371473789215, + -0.023601004853844643, + 0.08480710536241531, + -0.06160963699221611, + 0.03961388021707535, + -0.013467654585838318, + -0.025599757209420204, + 0.05096014589071274, + -0.011726008728146553, + 0.005127077456563711, + 0.005526216700673103, + -0.008977158926427364, + -0.008366348221898079, + -0.017407868057489395, + -0.06979965418577194, + 0.1136610209941864, + -0.036799099296331406, + -0.038091935217380524, + 0.07472959160804749, + 0.024716781452298164, + -0.04414933919906616, + 0.005426120478659868, + 0.0628376379609108, + -0.057241231203079224, + 0.020578181371092796, + -0.029494430869817734, + 0.02397923916578293, + -0.04141571745276451, + 0.0459447056055069, + 0.024417566135525703, + -0.0684567391872406, + -0.04035221040248871, + 0.04261317849159241, + 0.028730880469083786, + -0.01827615313231945, + 0.023417426273226738, + 0.05614348128437996, + -0.02662559412419796, + 0.09731264412403107, + -0.009943190962076187, + 0.030474698171019554, + 0.017617642879486084, + 0.025494549423456192, + -0.008166680112481117, + -0.0330987423658371, + -0.00571388378739357, + -0.05643843486905098, + -0.02211073972284794, + -0.0077267843298614025, + 0.05975136533379555, + 0.0037387812044471502, + 0.051079872995615005, + -0.002268184907734394, + 0.07769564539194107, + -0.05626919865608215, + 0.09704960882663727, + 0.028337856754660606, + 0.09074222296476364, + -0.026166362687945366, + -0.03883970528841019, + 0.06116170063614845, + 0.03113369271159172, + 0.0283491387963295, + 0.025985881686210632, + 0.07586679607629776, + -0.04825765639543533, + 0.09654145687818527, + 0.06757474690675735, + -0.09276137501001358, + 0.0029473453760147095, + 0.0636986643075943, + 0.016794977709650993, + 0.011091138236224651, + -0.05602164939045906, + -2.1552319040551993e-08, + 0.005071735475212336, + -0.010732422582805157, + 0.012021305970847607, + -0.020373068749904633, + 0.07097387313842773, + 0.027753431349992752, + 0.026568956673145294, + 0.043258458375930786, + -0.03804527968168259, + -0.01271832175552845, + 0.08248978853225708, + -0.011431820690631866, + -0.07767050713300705, + -0.03161731734871864, + -0.01334920059889555, + -0.00031047960510477424, + -0.04066135734319687, + 0.02319725975394249, + -0.01894504576921463, + -0.10088074952363968, + -0.06988967210054398, + 0.05269813910126686, + -0.027856336906552315, + -0.03563603758811951, + -0.0022642032708972692, + -0.02166747860610485, + -0.074399434030056, + 0.033056534826755524, + -0.020758260041475296, + 0.02004007063806057, + 0.016615992411971092, + 0.03146493807435036, + 0.02664315514266491, + -0.02911309152841568, + -0.009923354722559452, + -0.07190600782632828, + -0.08322647213935852, + -0.024802422150969505, + -0.07130693644285202, + 0.05677518993616104, + -0.026031503453850746, + 0.02188669517636299, + 0.028185080736875534, + -0.06714808195829391, + -0.048786990344524384, + -0.020348504185676575, + 0.05978381633758545, + 0.035540975630283356, + -0.13617441058158875, + -0.02581680566072464, + -0.06294183433055878, + -0.04776947200298309, + 0.0321681834757328, + 0.05191265419125557, + 0.023263292387127876, + -0.011512047611176968, + 0.007788856513798237, + 0.08313699066638947, + 0.04452655836939812, + 0.03915852680802345, + 0.02208668738603592, + 0.023672301322221756, + -0.018748987466096878, + 0.017587507143616676 + ], + "paint-roller-bold||colors,color picker,fill,arts,theme": [ + -0.0628666803240776, + 0.011815608479082584, + -0.01005938183516264, + 0.030147545039653778, + 0.028336260467767715, + 0.01619228720664978, + 0.1111782118678093, + -0.08059481531381607, + 0.011574250645935535, + -0.06036587432026863, + -0.03881319239735603, + 0.04535776749253273, + 0.04264666885137558, + -0.038971591740846634, + -0.022469772025942802, + 0.116271011531353, + 0.03588312864303589, + 0.05496654286980629, + -0.023797636851668358, + -0.014358429238200188, + -0.08164422959089279, + -0.07625370472669601, + -0.06197204440832138, + 0.01888927072286606, + -0.03096957691013813, + 0.06611370295286179, + 0.05276038125157356, + 0.03993874788284302, + 0.023002028465270996, + -0.07561361789703369, + -0.0015766880242154002, + 0.025798000395298004, + 0.11037949472665787, + 0.021244583651423454, + 0.024016108363866806, + -0.06836830824613571, + -0.0520169660449028, + 0.03251110017299652, + -0.07463725656270981, + 0.06303903460502625, + 0.018484344705939293, + -0.05872484669089317, + -0.04224149510264397, + 0.07025513052940369, + -0.03058023750782013, + -0.02253948152065277, + -0.012058950029313564, + -0.005996699910610914, + 0.0022286190651357174, + 0.02930002473294735, + 0.007069270126521587, + -0.10590210556983948, + -0.10197535902261734, + -0.0022832711692899466, + 0.013320711441338062, + 0.02132708765566349, + 0.0028899682220071554, + -0.02246478572487831, + 0.08724631369113922, + 0.018111146986484528, + -0.019802242517471313, + 0.061100952327251434, + -0.015603247098624706, + 0.054016925394535065, + 0.03555706888437271, + 0.004937188699841499, + -0.016681093722581863, + 0.045540764927864075, + -0.042493924498558044, + -0.0013544776011258364, + 0.058584850281476974, + 0.012341123074293137, + -0.00484711118042469, + 0.006327489390969276, + 0.001360656344331801, + 0.001166604575701058, + -0.0005885096034035087, + -0.02262946031987667, + -0.08546565473079681, + -0.08416816592216492, + -0.10871000587940216, + -0.053293559700250626, + -0.07505141943693161, + 0.0551852248609066, + 0.06520512700080872, + 0.09285717457532883, + -0.05468708649277687, + -0.025362133979797363, + -0.01833309605717659, + 0.04576633498072624, + -0.05985851585865021, + 0.04246643930673599, + -0.06148380786180496, + 0.004915987141430378, + -0.025218188762664795, + 0.053168851882219315, + 0.06831707805395126, + -0.043771497905254364, + -0.02869604341685772, + 0.04480303078889847, + -0.0018480158178135753, + -0.060826342552900314, + 0.07631032913923264, + -0.039169397205114365, + -0.04692034050822258, + -0.04279669374227524, + -0.07633737474679947, + 0.028671948239207268, + 0.011368011124432087, + 0.019585691392421722, + 0.03485920652747154, + -0.10782195627689362, + 0.028576476499438286, + -0.04141470789909363, + -0.03748907893896103, + -0.048195261508226395, + -0.021931331604719162, + -0.03603028878569603, + 0.07110700756311417, + 0.0718197450041771, + 0.08333969861268997, + -0.03016534261405468, + -0.0489235557615757, + -0.0991547703742981, + -0.05520912632346153, + -0.03766610473394394, + 0.012368098832666874, + -3.0231391265096438e-33, + 0.044456228613853455, + -0.0026762925554066896, + 0.0036434694193303585, + 0.13379362225532532, + 0.02283339761197567, + 0.009700031019747257, + -0.005055428948253393, + -0.09678361564874649, + -0.0604030042886734, + 0.08261019736528397, + 0.06587529182434082, + 0.05917428433895111, + -0.0675586387515068, + 0.10931172221899033, + 0.039139337837696075, + -0.009713580831885338, + 0.03538219630718231, + -0.03715932369232178, + -0.03857569396495819, + 0.004998662043362856, + -0.03894668072462082, + 0.05970126390457153, + -0.023626884445548058, + -0.05371209233999252, + -0.09030849486589432, + 0.02923346869647503, + -0.0016821661265566945, + -0.04891433194279671, + -0.0008096635574474931, + 0.02203352190554142, + 0.03679026663303375, + 0.017681196331977844, + 0.061577484011650085, + 0.047815967351198196, + -0.05696496739983559, + 0.027784043923020363, + -0.06565457582473755, + -0.04074355214834213, + 0.056559592485427856, + 0.04426378384232521, + -0.10407524555921555, + -0.05221637710928917, + -0.01847459375858307, + 0.06990601867437363, + 0.03380187973380089, + 0.06200079619884491, + -0.0070544094778597355, + -0.04950664937496185, + 0.004709552973508835, + 0.07905552536249161, + 0.04096575081348419, + 0.029062369838356972, + 0.037194252014160156, + 0.013162881135940552, + 0.008054775185883045, + -0.03591817989945412, + 0.019568994641304016, + 0.07749428600072861, + -0.0013692096108570695, + -0.006666627712547779, + 0.02712276205420494, + 0.06196724623441696, + 0.00034718026290647686, + -0.020170940086245537, + 0.042884379625320435, + 0.06865282356739044, + -0.0025848939549177885, + 0.02379063330590725, + 0.03352182358503342, + -0.04817172884941101, + -0.01288567204028368, + 0.06382879614830017, + 0.06435594707727432, + 0.013088555075228214, + 0.009159526787698269, + -0.016224034130573273, + 0.04577672481536865, + -0.038241900503635406, + 0.014526591636240482, + -0.07931932806968689, + -0.15135765075683594, + -0.004278569482266903, + -0.0857238620519638, + -0.03543323650956154, + -0.04888176918029785, + 0.032163552939891815, + 0.0011228516232222319, + 0.04408475384116173, + -0.030839821323752403, + -0.036428432911634445, + -0.030641993507742882, + 0.04327595606446266, + 0.0006900968146510422, + -0.04828551784157753, + -0.10022939741611481, + 1.3667487510690122e-33, + -0.001688017277047038, + 0.019521091133356094, + -0.007996287196874619, + 0.09622864425182343, + 0.05449650436639786, + 0.013615556992590427, + 0.03401593118906021, + 0.045013055205345154, + 0.02514849789440632, + 0.034436218440532684, + 0.06510627269744873, + 0.02782193198800087, + -0.02339329570531845, + 0.03620929270982742, + 0.023958522826433182, + 0.02909877710044384, + -0.0066808974370360374, + 0.0720466822385788, + -0.07522629201412201, + 0.0014042434049770236, + -0.061285048723220825, + -0.01242872979491949, + -0.11375921219587326, + 0.07694336771965027, + -0.07993978261947632, + 0.06252916157245636, + -0.020544791594147682, + -0.04465440288186073, + 0.050084467977285385, + 0.024168113246560097, + 0.017707593739032745, + -0.06123868376016617, + 0.018798723816871643, + 0.038087837398052216, + -0.03239576891064644, + -0.014839730225503445, + 0.08016873896121979, + -0.03008250892162323, + -0.057972442358732224, + 0.055787067860364914, + -0.0250170286744833, + -0.07534264773130417, + 0.03195184841752052, + 0.05132144317030907, + -0.09496749937534332, + -0.003101531183347106, + -0.022303203120827675, + -0.008148168213665485, + -0.012646975927054882, + 0.0191692765802145, + -0.002639395883306861, + -0.006573059596121311, + -0.03710843622684479, + 0.013136565685272217, + 0.04558036848902702, + -0.012714763171970844, + 0.012994730845093727, + -0.019979199394583702, + -0.0036367662250995636, + 0.09552263468503952, + -0.0215399581938982, + 0.07284796983003616, + -0.039871469140052795, + 0.011648116633296013, + 0.004815348424017429, + -0.02256404049694538, + 0.033771876245737076, + -0.09623642265796661, + -0.03752591088414192, + 0.0037979278713464737, + 0.028740325942635536, + 0.07349132746458054, + 0.01711379922926426, + -0.019276272505521774, + 0.0867617279291153, + -0.06275947391986847, + 0.12452415376901627, + 0.04597955197095871, + 0.022070759907364845, + 0.007240688428282738, + -0.08160322904586792, + 0.01281704194843769, + 0.012718691490590572, + 0.03561009094119072, + -0.01532153319567442, + 0.08273204416036606, + -0.05409195274114609, + 0.054898615926504135, + 0.07467368245124817, + -0.11872122436761856, + 0.061905987560749054, + 0.09924137592315674, + 0.04055800288915634, + -0.008684029802680016, + -0.07619274407625198, + -1.9334342127308446e-08, + -0.006461029406636953, + 0.009533996693789959, + 0.050098076462745667, + -0.0973319560289383, + 0.05209832265973091, + 0.01497078686952591, + 0.0880228579044342, + -0.01448347419500351, + -0.10005218535661697, + 0.027810655534267426, + 0.07461249828338623, + -0.01079008262604475, + -0.06310760229825974, + -0.026005707681179047, + 0.047208838164806366, + 0.03418239951133728, + -0.0370950810611248, + 0.04735927656292915, + -0.009059813804924488, + -0.09833767265081406, + -0.025180548429489136, + 0.050138942897319794, + 0.017090654000639915, + -0.0535312257707119, + -0.025445301085710526, + -0.022614875808358192, + -0.10641638189554214, + 0.0010270889615640044, + -0.017231157049536705, + 0.06271204352378845, + 0.005638429429382086, + 0.02064809948205948, + 0.04983983561396599, + -0.018016820773482323, + -0.0394270196557045, + -0.029303910210728645, + -0.03707718849182129, + -0.03075149469077587, + -0.07483574748039246, + 0.04035673663020134, + -0.05487870052456856, + 0.00836397148668766, + -0.012013554573059082, + -0.030939245596528053, + -0.03387371078133583, + -0.004937950987368822, + 0.0928405150771141, + -0.054719068109989166, + -0.14660127460956573, + -0.02677571401000023, + -0.05598874390125275, + -0.06912370026111603, + 0.024681778624653816, + 0.03589349985122681, + 0.016667919233441353, + -0.012823469936847687, + -0.05202263221144676, + 0.11439788341522217, + -0.005554658826440573, + 0.007707551587373018, + -0.017910538241267204, + 0.03698182478547096, + -0.008706464432179928, + 0.03471088781952858 + ], + "palette-bold||paint,colors,color picker,arts": [ + -0.022254154086112976, + -0.024057133123278618, + 0.013261983171105385, + 0.061332523822784424, + 0.062220823019742966, + 0.03144398331642151, + 0.1339501142501831, + -0.07223627716302872, + 0.02464616671204567, + -9.37841905397363e-05, + -0.06953370571136475, + -0.018789131194353104, + 0.028695233166217804, + -0.038064125925302505, + 0.04330367222428322, + 0.11694081127643585, + 0.018932921811938286, + 0.021960094571113586, + -0.031628839671611786, + -0.007635406218469143, + -0.026217417791485786, + -0.038136500865221024, + -0.04007580503821373, + 0.02292514219880104, + 0.004584271460771561, + 0.02596716582775116, + 0.02801472879946232, + -0.007682831957936287, + 0.005274380557239056, + -0.0785030722618103, + -0.00474094832316041, + 0.030255762860178947, + 0.14184845983982086, + 0.004019597079604864, + -0.0215388685464859, + -0.020780455321073532, + -0.04025719314813614, + 0.006857802625745535, + -0.06661780923604965, + 0.055831532925367355, + -0.049949243664741516, + -0.03407641500234604, + -0.08117761462926865, + 0.007284020073711872, + -0.04761173203587532, + -0.09379652142524719, + 0.03366995230317116, + 0.011249438859522343, + 0.009916520677506924, + 0.00870832335203886, + 0.030804742127656937, + -0.06202804669737816, + -0.12510398030281067, + -0.011323308572173119, + 0.0069255586713552475, + 0.03022739104926586, + -0.06168334186077118, + -0.03380337357521057, + 0.10870478302240372, + -0.002696495968848467, + -0.004661532584577799, + 0.03256387636065483, + 0.03053382597863674, + 0.05520584434270859, + 0.06332697719335556, + 0.052637435495853424, + -0.0045333486050367355, + 0.05135452374815941, + 0.03947111591696739, + -0.02913277968764305, + 0.03675992041826248, + -0.02288345992565155, + 0.02406534180045128, + -0.006106118205934763, + 0.013824108988046646, + 0.030499404296278954, + 0.08121402561664581, + 0.001561604323796928, + -0.056731753051280975, + -0.10281704366207123, + -0.0797596424818039, + -0.008460015058517456, + -0.046120624989271164, + 0.05922400578856468, + 0.12386547029018402, + 0.092436783015728, + -0.06753040105104446, + -0.0433599017560482, + -0.0011268447851762176, + -0.027140352874994278, + -0.048150040209293365, + 0.021169176325201988, + 0.005465689115226269, + 0.025981377810239792, + -0.008663228712975979, + -0.02642904967069626, + 0.09985978156328201, + -0.03321799263358116, + -0.021919121965765953, + 0.057552553713321686, + 0.03169418126344681, + -0.02989519014954567, + 0.08468812704086304, + 0.021785078570246696, + -0.02327888272702694, + -0.02158769592642784, + -0.04389948770403862, + 0.02232000231742859, + -0.007114071398973465, + 0.010265106335282326, + 0.012341974303126335, + -0.07853317260742188, + 0.022251302376389503, + -0.040332235395908356, + -0.04047011584043503, + -0.022564485669136047, + -0.03208915516734123, + -0.023996837437152863, + 0.08404593914747238, + 0.09618514776229858, + 0.041339486837387085, + -0.05891178175806999, + -0.05106619745492935, + -0.07865989953279495, + -0.023484231904149055, + -0.0026110089384019375, + 0.0075837960466742516, + -5.039285048080125e-34, + 0.09008275717496872, + -0.018540984019637108, + 0.004938405938446522, + 0.10047948360443115, + 0.06711860001087189, + 0.008465690538287163, + -0.008476907387375832, + -0.06711472570896149, + -0.12401235103607178, + 0.05076717212796211, + 0.10096315294504166, + 0.05986330285668373, + -0.07309748977422714, + 0.1474132090806961, + 0.04198112338781357, + 0.011265247128903866, + -0.0084774075075984, + -0.033797066658735275, + -0.061432965099811554, + -0.029825547710061073, + -0.059810981154441833, + 0.05337721109390259, + -0.09455575793981552, + 0.009173120371997356, + -0.08302365988492966, + 0.0311266016215086, + 0.0038485319819301367, + 0.017700957134366035, + -0.04905608668923378, + 0.02103259041905403, + 0.000999170821160078, + 0.018094228580594063, + 0.11247774213552475, + 0.045432183891534805, + -0.07627902179956436, + -0.003444335889071226, + -0.07232916355133057, + -0.02724554017186165, + 0.09257322549819946, + 0.07126421481370926, + -0.06410255283117294, + -0.02162814885377884, + -0.01749383844435215, + 0.0722092017531395, + 0.029755087569355965, + 0.06939053535461426, + -0.010105581022799015, + 0.004088360350579023, + 0.017311209812760353, + 0.070627860724926, + -0.008775599300861359, + 0.009659870527684689, + -0.005266114603728056, + 0.04773848131299019, + -0.011002182960510254, + -0.01960819587111473, + -0.044792670756578445, + 0.0947885811328888, + 0.03874453157186508, + -0.01878768764436245, + 0.0074629830196499825, + 0.037838421761989594, + -0.022007755935192108, + 0.015032235532999039, + 0.022904139012098312, + 0.09260449558496475, + -0.05714373663067818, + 0.007164107635617256, + 0.06016949564218521, + -0.03651260584592819, + -0.0410304069519043, + 0.12664447724819183, + 0.037596456706523895, + 0.026595722883939743, + 0.026431800797581673, + -0.05309155955910683, + 0.054296575486660004, + -0.05439065024256706, + 0.025122979655861855, + -0.06505788117647171, + -0.12628741562366486, + 0.015659311786293983, + -0.06892165541648865, + 0.030060142278671265, + -0.050533998757600784, + 0.03133436292409897, + 0.04081972688436508, + -0.023005744442343712, + -0.03744829073548317, + -0.04321439564228058, + -0.05565512552857399, + 0.018136778846383095, + -0.015435143373906612, + -0.11008592694997787, + -0.11740651726722717, + -2.679603657546715e-34, + 0.02242334745824337, + 0.014351475052535534, + 0.00310783414170146, + 0.10460604727268219, + 0.016768798232078552, + 0.010427006520330906, + 0.03258015960454941, + 0.05024068430066109, + 0.012185035273432732, + 0.031111128628253937, + 0.08623146265745163, + 0.0689789429306984, + -0.0019272894132882357, + 0.010183936916291714, + -0.01866034045815468, + 0.05828731879591942, + 0.03753719851374626, + 0.053554438054561615, + -0.08376401662826538, + -0.01686057448387146, + -0.05772668123245239, + -0.02316121570765972, + -0.05856509506702423, + -0.00989515334367752, + -0.1227167546749115, + 0.0539405383169651, + -0.021547554060816765, + -0.03144840896129608, + -0.008215420879423618, + -0.01621280238032341, + 0.010075646452605724, + -0.0014466095017269254, + 0.011700758710503578, + 0.01668277196586132, + 0.01668442226946354, + -0.06316759437322617, + 0.05122661590576172, + -0.07780107855796814, + -0.0675109475851059, + 0.08655260503292084, + -0.056737348437309265, + -0.0494319349527359, + 0.03109109215438366, + 0.044040076434612274, + -0.020816605538129807, + 0.0052772327326238155, + -0.022492198273539543, + -0.021250493824481964, + 0.0024993293918669224, + -0.005778809543699026, + 0.02659045346081257, + -0.05256406590342522, + -0.020588893443346024, + 0.013614348135888577, + -0.024823443964123726, + -0.06228683516383171, + 0.05912153422832489, + -0.007597430609166622, + 0.026309330016374588, + 0.11294903606176376, + 0.013056430034339428, + 0.05190111696720123, + -0.033441971987485886, + 0.0014887424185872078, + 0.0279330275952816, + -0.036332014948129654, + 0.00921377819031477, + -0.014602742157876492, + 0.038408443331718445, + -0.002108725719153881, + 0.10329418629407883, + -0.02308383211493492, + 0.02941630221903324, + 0.025725379586219788, + 0.07362081110477448, + -0.05292660370469093, + 0.07164327800273895, + 0.0115223228931427, + 0.012579893693327904, + 0.009605970233678818, + -0.03405124321579933, + -0.0036536487750709057, + 0.05927715077996254, + 0.01432863064110279, + -0.025423163548111916, + 0.09091047197580338, + -0.007103209849447012, + 0.04121438041329384, + 0.06203643977642059, + -0.10844318568706512, + -0.01471293717622757, + 0.05476982891559601, + 0.048823364078998566, + -0.02291812375187874, + -0.038998331874608994, + -1.7939431273816808e-08, + 0.02526315115392208, + -0.022743254899978638, + 0.016551434993743896, + -0.05074595287442207, + 0.03081471472978592, + 0.014983050525188446, + -0.012093957513570786, + -0.04152575880289078, + -0.07267986238002777, + 0.030727775767445564, + 0.05658130720257759, + 0.013031122274696827, + -0.07562825083732605, + -0.04678104445338249, + 0.04310271516442299, + -0.023088956251740456, + 0.014674181118607521, + 0.05303054675459862, + -0.027813581749796867, + -0.09010974317789078, + -0.03294368088245392, + 0.09192316234111786, + 0.034609418362379074, + -0.03620540723204613, + 0.013444357551634312, + -0.02198418602347374, + -0.07765473425388336, + 0.006780996918678284, + -0.0022689367178827524, + 0.09118819236755371, + -0.006604129448533058, + 0.027383139356970787, + 0.03217819333076477, + 0.022279813885688782, + -0.08750379085540771, + -0.01858893409371376, + -0.08944623172283173, + -0.041525837033987045, + -0.08053643256425858, + 0.035207655280828476, + -0.004480473231524229, + -0.061735909432172775, + -0.008245166391134262, + -0.0401100292801857, + -0.04734204709529877, + -0.032219693064689636, + 0.0541779100894928, + -0.057521428912878036, + -0.10643547028303146, + -0.04700304940342903, + -0.05827775225043297, + -0.04295169189572334, + -0.005375392269343138, + 0.023584304377436638, + -0.040528494864702225, + -0.09599579870700836, + -0.06152135506272316, + 0.10165666043758392, + -0.027524597942829132, + -0.017758684232831, + 0.01877964846789837, + 0.0023821548093110323, + -0.06100698560476303, + -0.03549710288643837 + ], + "panorama-bold||*new*,image,picture,photography,landscape,360": [ + 0.04790273308753967, + 0.022389044985175133, + -0.0065879980102181435, + -0.045993126928806305, + 0.08684541285037994, + -0.02100887894630432, + -0.011389503255486488, + -0.04413265734910965, + 0.019098876044154167, + 0.025487471371889114, + 0.002831456484273076, + 0.02076968550682068, + 0.043621838092803955, + 0.007016146555542946, + 0.04951012134552002, + -0.006880610249936581, + -0.027166999876499176, + 0.06333933770656586, + -0.007314852438867092, + 0.0368521474301815, + -0.034775134176015854, + 0.0039403424598276615, + -0.032726921141147614, + -0.00417845556512475, + 0.04235145449638367, + 0.0629723072052002, + 0.03580567240715027, + -0.01719573512673378, + 0.049120236188173294, + -0.09070682525634766, + -0.02793811447918415, + 0.051933180540800095, + 0.10099393129348755, + 0.03853969648480415, + 0.011325081810355186, + 0.027331167832016945, + -0.057367291301488876, + 0.0075877211056649685, + -0.09426062554121017, + 0.029829084873199463, + -0.002511588390916586, + -0.03558635339140892, + -0.018616875633597374, + -0.04504937678575516, + 0.037844981998205185, + 0.017431333661079407, + -0.012550156563520432, + -0.0014818815980106592, + 0.061085090041160583, + 0.011147108860313892, + -0.10889450460672379, + -0.13353629410266876, + -0.156442791223526, + 0.006410990376025438, + 0.007774575147777796, + 0.054532550275325775, + -0.035349324345588684, + -0.05523702874779701, + 0.07289836555719376, + -0.02160198614001274, + 0.02393510192632675, + 0.03113603964447975, + 0.0007262409199029207, + 0.08258064091205597, + 0.06115628033876419, + -0.010676662437617779, + -0.08542297780513763, + -0.049113307148218155, + -0.004764673300087452, + -0.01956562139093876, + -0.03129937872290611, + 0.02246621437370777, + 0.010511458851397038, + -0.05600859224796295, + -0.03964519873261452, + -0.028282901272177696, + 0.0309307798743248, + -0.004034433979541063, + -0.051570966839790344, + -0.06513914465904236, + 0.015130050480365753, + 0.03160933032631874, + -0.022993331775069237, + 0.022405382245779037, + 0.052710823714733124, + 0.04584797844290733, + -0.10677412897348404, + -0.015264013782143593, + -0.04522294923663139, + -0.04004684463143349, + -0.056945037096738815, + -0.028170201927423477, + -0.0697699636220932, + -0.004334993194788694, + -0.12140562385320663, + -0.008676369674503803, + 0.023520026355981827, + -0.10425334423780441, + -0.034799057990312576, + 0.07775606960058212, + 0.034846775233745575, + -0.04187032952904701, + 0.05545700341463089, + 0.05715193599462509, + -0.01826419122517109, + -0.029683096334338188, + 0.010173550806939602, + 0.0331481471657753, + 0.0357477143406868, + 0.03780995309352875, + 0.01707267016172409, + -0.07679963111877441, + -0.04541267827153206, + -0.1255447119474411, + -0.0380469374358654, + -0.03668573126196861, + -0.048090819269418716, + -0.028971580788493156, + 0.08109885454177856, + 0.01161004789173603, + 0.053592801094055176, + -0.01733388565480709, + -0.010315551422536373, + -0.040110841393470764, + -0.021605027839541435, + -0.029396221041679382, + -0.003473076969385147, + -1.734171550937596e-33, + 0.07262148708105087, + 0.08769859373569489, + 0.04918702319264412, + 0.17055116593837738, + 0.06089726835489273, + 0.039450787007808685, + -0.03063945099711418, + 0.032694410532712936, + -0.07596982270479202, + 0.01238171011209488, + 0.05680432543158531, + 0.06855544447898865, + -0.0006594905280508101, + 0.08900430798530579, + 0.062370140105485916, + -0.007013942580670118, + -0.0034834283869713545, + 0.007056572940200567, + -0.06981249153614044, + 0.03067171387374401, + -0.07576801627874374, + 0.0644209086894989, + -0.017857803031802177, + 0.02581937238574028, + -0.08107259124517441, + -0.02614930458366871, + 0.06342275440692902, + -0.040576089173555374, + -0.1253397911787033, + 0.053491320461034775, + 0.04868203401565552, + 0.019596388563513756, + 0.019005492329597473, + -0.03247037157416344, + 0.010444600135087967, + -0.00016287632752209902, + -0.08004145324230194, + -0.021177539601922035, + 0.011049419641494751, + 0.07839889079332352, + -0.11869524419307709, + 0.0003391161444596946, + -0.04564273729920387, + 0.0017377486219629645, + 0.05066988244652748, + 0.06862718611955643, + 0.018222087994217873, + 0.03495045751333237, + -0.026480311527848244, + 0.09960215538740158, + 0.09162405133247375, + -0.008422419428825378, + -0.04644310101866722, + -0.015056598000228405, + -0.03141051530838013, + 0.012138192541897297, + -0.05388244241476059, + 0.02437310479581356, + 0.008905388414859772, + 0.0071096112951636314, + 0.04364512115716934, + -0.045263927429914474, + -0.04325268045067787, + -0.021779512986540794, + -0.05713742971420288, + 0.03599907085299492, + 0.035800475627183914, + 0.04475678130984306, + 0.02190885879099369, + 0.03169404715299606, + 0.0014959127875044942, + 0.03730441629886627, + 0.013809381052851677, + 0.036532364785671234, + 0.035483140498399734, + 0.01825479231774807, + -0.015816811472177505, + 0.055370744317770004, + 0.04449464753270149, + 0.00444144569337368, + -0.13357627391815186, + 0.061252061277627945, + -0.04236374422907829, + 0.018403824418783188, + -0.0935816839337349, + 0.023214926943182945, + 0.06690729409456253, + -0.022810589522123337, + -0.020336713641881943, + -0.013884217478334904, + -0.09178419411182404, + 0.06460094451904297, + 0.013275307603180408, + -0.010424750857055187, + -0.06537684798240662, + -1.7207042427680113e-34, + 0.02767910435795784, + -0.005477111786603928, + -0.10196191817522049, + -0.05998020991683006, + -0.04820127412676811, + -0.008501578122377396, + 0.07640872150659561, + 0.08562266826629639, + -0.028154095634818077, + 0.0062124887481331825, + 0.037832703441381454, + -0.014734575524926186, + -0.06147795543074608, + -0.029820764437317848, + -0.06882966309785843, + -0.004304869566112757, + 0.003942683804780245, + -0.0301906019449234, + -0.10240975022315979, + 0.11646641790866852, + 0.020510751754045486, + 0.02374785579741001, + -0.01564749702811241, + 0.029002362862229347, + -0.022966841235756874, + 0.07641531527042389, + 0.07086598128080368, + 0.02680797502398491, + 0.0043115317821502686, + 0.009245242923498154, + -0.04749343544244766, + -0.06811850517988205, + 0.06859512627124786, + -0.007469764444977045, + -0.07231689244508743, + 0.07135488092899323, + 0.015560024417936802, + -0.09039480984210968, + -0.03906749561429024, + 0.013150918297469616, + -0.031260889023542404, + 0.0034774774685502052, + 0.061339762061834335, + 0.040217526257038116, + -0.01670505292713642, + -0.06436970084905624, + 0.01725185662508011, + 0.05416904762387276, + -0.0017950364854186773, + 0.09324898570775986, + -0.02892901562154293, + -0.0389382541179657, + 0.005473116412758827, + 0.05328421667218208, + -0.018862875178456306, + -0.03872806206345558, + -0.06201966851949692, + 0.028378110378980637, + 0.008805050514638424, + 0.022228160873055458, + 0.0024424646981060505, + 0.007253880146890879, + -0.09863480925559998, + 0.04874744638800621, + 0.05552450567483902, + -0.028948217630386353, + 0.004514697939157486, + -0.08966507017612457, + -0.10463965684175491, + 0.09536729007959366, + 0.003661065362393856, + -0.01788107492029667, + 0.025287942960858345, + -0.006986457854509354, + 0.018136966973543167, + -0.025989806279540062, + 0.0896066278219223, + 0.02156381495296955, + 0.021994255483150482, + -0.03039964847266674, + -0.0690670758485794, + -0.03633645549416542, + -0.0483521930873394, + 0.05339212715625763, + 0.01593853160738945, + 0.03960597887635231, + -0.013550338335335255, + -0.12727566063404083, + 0.009719139896333218, + -0.003590527456253767, + -0.10483063012361526, + 0.052549809217453, + -0.047675441950559616, + 0.0024608434177935123, + 0.009418664500117302, + -2.0764844066434307e-08, + 0.046454571187496185, + 0.011522428132593632, + -0.0386042557656765, + -0.031418751925230026, + -0.003384399926289916, + -0.08022696524858475, + -0.019147107377648354, + -0.023241804912686348, + -0.043242912739515305, + -0.059868570417165756, + 0.07912010699510574, + 0.012552506290376186, + -0.05995931103825569, + 0.01993712969124317, + 0.06119241937994957, + 0.013443135656416416, + 0.014342229813337326, + 0.003327463986352086, + -0.021552756428718567, + -0.05597495660185814, + -0.04143800586462021, + 0.04284806549549103, + 0.06493967026472092, + -0.037882737815380096, + -0.004898661747574806, + 0.034367628395557404, + -0.08259443193674088, + -0.06606534123420715, + 0.046540360897779465, + 0.002126199658960104, + 0.013228673487901688, + 0.03435833007097244, + 0.024297602474689484, + 0.02458351105451584, + -0.07339248806238174, + 0.011270327493548393, + -0.08955210447311401, + -0.06097819283604622, + -0.027106894180178642, + -0.021558115258812904, + 0.006071916781365871, + 0.025187859311699867, + 0.038127411156892776, + -0.0008697767625562847, + 0.0348394513130188, + 0.0521930456161499, + 0.16268369555473328, + -0.0510367676615715, + -0.03494451567530632, + -0.07993751764297485, + -0.05054556950926781, + -0.042994145303964615, + 0.04147595912218094, + 0.05799450725317001, + 0.014470593072474003, + -0.03380339965224266, + 0.11131776124238968, + 0.006471858359873295, + 0.041101593524217606, + 0.062425389885902405, + 0.09233924746513367, + 0.0004708867927547544, + -0.024055853486061096, + -0.002199827693402767 + ], + "pants-bold||clothing,clothes,jeans": [ + -0.01264906395226717, + 0.02149078994989395, + -0.00795761775225401, + 0.015614327974617481, + 0.030383775010704994, + -0.021123075857758522, + 0.11903984099626541, + -0.09134993702173233, + -0.02337871864438057, + 0.03787568584084511, + 0.025846268981695175, + -0.00803362112492323, + 0.045995812863111496, + -0.053979746997356415, + 0.039892423897981644, + 0.0454714260995388, + 0.08621104061603546, + 0.07722733914852142, + -0.016633914783596992, + -0.03219911456108093, + 0.01710113137960434, + 0.06554440408945084, + 0.034093692898750305, + 0.06094777211546898, + 0.006634542718529701, + -0.003736423794180155, + 0.03812805935740471, + -0.0031033505219966173, + -0.061006829142570496, + -0.05903652310371399, + -0.05747539550065994, + 0.025666547939181328, + 0.0361117348074913, + 0.06308770924806595, + 0.024253282696008682, + -0.013308366760611534, + 0.035065658390522, + -0.04536829888820648, + -0.04193342477083206, + 0.06469959765672684, + 0.006349178496748209, + -0.11816355586051941, + -0.05660538002848625, + 0.00860032718628645, + -0.00871589407324791, + 0.017167257145047188, + 0.015255631878972054, + 0.028705555945634842, + -0.0029429884161800146, + 0.002903010230511427, + -0.0029004027601331472, + -0.028768373653292656, + -0.0849733054637909, + 0.06929316371679306, + 0.0034688173327594995, + -0.006963307969272137, + -0.06143150106072426, + -0.011045793071389198, + 0.03569931909441948, + -0.03962232545018196, + -0.030504349619150162, + 0.05370735749602318, + -0.02745022065937519, + 0.0997883677482605, + 0.08845169842243195, + -0.0082059595733881, + 0.04100501909852028, + 0.08569633215665817, + -0.08574797958135605, + 0.05007969215512276, + 0.040118660777807236, + 0.025790661573410034, + -0.0874689370393753, + 0.010747549124062061, + -0.07778903841972351, + -0.004057488404214382, + 0.05702051892876625, + -0.0014164673630148172, + -0.07476483285427094, + -0.06843284517526627, + -0.10267117619514465, + -0.09668153524398804, + 0.011717142537236214, + 0.027480654418468475, + 0.034168023616075516, + 0.015016375109553337, + -0.07287406921386719, + -0.06929171830415726, + -0.06984136998653412, + -0.036375608295202255, + -0.08525283634662628, + -0.032583072781562805, + -0.00039119384018704295, + 0.0026330642867833376, + -0.05839585140347481, + 0.009862776845693588, + 0.08163902163505554, + -0.054574307054281235, + 0.004705325700342655, + 0.05907663330435753, + 0.013853746466338634, + 0.02942623384296894, + 0.12218328565359116, + 0.031294044107198715, + -0.07346934825181961, + -0.09676919132471085, + 0.0006795129738748074, + 0.01620948128402233, + 0.05428609997034073, + 0.0012245423858985305, + -0.06752179563045502, + -0.08033542335033417, + 0.03426538035273552, + -0.027401059865951538, + 0.0055480413138866425, + -0.0667731761932373, + -0.02525150030851364, + 0.028250908479094505, + 0.09637339413166046, + 0.0028753119986504316, + -0.04077953100204468, + -0.021700391545891762, + 0.009374250657856464, + -0.05406693369150162, + -0.07338173687458038, + 0.007456351537257433, + 0.03399704024195671, + -2.4835148531112413e-33, + 0.06495942920446396, + -0.0033118093851953745, + -0.007873550057411194, + 0.12441982328891754, + -0.02892814390361309, + 0.024724485352635384, + -0.01391083374619484, + -0.0634741261601448, + -0.078606516122818, + 0.10450667887926102, + 0.060521405190229416, + 0.034402575343847275, + -0.029930315911769867, + 0.09895052760839462, + 0.0963207334280014, + 0.0548839271068573, + 0.009925860911607742, + -0.09031333029270172, + 0.004185566212981939, + -0.004532651975750923, + -0.06685767322778702, + 0.079779714345932, + -0.00936330109834671, + -0.0012693505268543959, + -0.006543765310198069, + -0.10974999517202377, + 0.07592687755823135, + -0.004080855753272772, + -0.08225083351135254, + 0.03801475092768669, + 0.08455141633749008, + 0.029796771705150604, + 0.07418692111968994, + -0.005191569682210684, + -0.01892549730837345, + 0.045422978699207306, + -0.08594686537981033, + 0.0161755234003067, + 0.027574853971600533, + 0.02194986306130886, + -0.004843527916818857, + -0.04396698996424675, + 0.00563930394127965, + -0.0021348255686461926, + -0.008043584413826466, + 0.12559197843074799, + 0.01731927879154682, + -0.007599736098200083, + 0.014034752734005451, + 0.05945155397057533, + 0.030198514461517334, + 0.02081679180264473, + 0.018634147942066193, + -0.05761871114373207, + -0.020826751366257668, + -0.023003317415714264, + 0.004554190672934055, + 0.04751218855381012, + -0.043639663606882095, + 0.016420582309365273, + 0.03016546554863453, + 0.0499754324555397, + 0.034012891352176666, + -0.09464364498853683, + 0.004000490996986628, + -0.017815178260207176, + -0.0052592395804822445, + 0.020692376419901848, + 0.07008949667215347, + 0.010552450083196163, + -0.06957249343395233, + 0.06865044683218002, + 0.09623321890830994, + 0.05300964415073395, + 0.011641261167824268, + 0.020774295553565025, + -0.017948772758245468, + -0.01456454023718834, + -0.003238400211557746, + -0.07282466441392899, + -0.031082691624760628, + -0.014588241465389729, + 0.0050679598934948444, + 0.13385576009750366, + 0.025869548320770264, + 0.02846357598900795, + 0.009141195565462112, + -0.0654519572854042, + -0.0020530528854578733, + 0.027178701013326645, + -0.020428184419870377, + -0.022869836539030075, + -0.010483796708285809, + -0.055287569761276245, + -0.08244457095861435, + -3.296793981792332e-34, + 0.08298707008361816, + 0.06337606906890869, + -0.004045753739774227, + 0.04092123731970787, + 0.025948191061615944, + 0.0035689009819179773, + -0.004133441485464573, + 0.07419019192457199, + -0.02440836653113365, + 0.060531698167324066, + 0.0620693676173687, + -0.02420203760266304, + -0.08112632483243942, + -0.09016961604356766, + 0.08541958034038544, + 0.06457070261240005, + 0.0187192652374506, + -0.01238317508250475, + -0.01364744920283556, + 0.012552928179502487, + -0.03042761981487274, + -0.09184762090444565, + 0.00849385280162096, + 0.02279774099588394, + -0.08879151195287704, + 0.004576934035867453, + 0.04751265048980713, + 0.024693356826901436, + -0.12673424184322357, + -0.04630124196410179, + -0.008137940429151058, + -0.0019288229523226619, + -0.03385351225733757, + 0.07741625607013702, + -0.0509362667798996, + -0.018816305324435234, + 0.0014773958828300238, + -0.03445940837264061, + 0.06988546997308731, + -0.013261432759463787, + 0.001530099892988801, + -0.0043448652140796185, + 0.039229996502399445, + 0.04441714286804199, + 0.028641480952501297, + -0.06624101847410202, + -0.08026805520057678, + -0.0627065896987915, + -0.07426274567842484, + 0.020134730264544487, + -0.03919725865125656, + 0.0693991631269455, + -0.007544133346527815, + 0.02128882333636284, + -0.007984496653079987, + -0.0535300076007843, + -0.050917357206344604, + 0.010300678201019764, + -0.013919896446168423, + 0.06356553733348846, + -0.02174822986125946, + 0.0882401242852211, + -0.013832504861056805, + 0.011807046830654144, + -0.004070967901498079, + -0.008807286620140076, + -0.034041356295347214, + -0.00822919700294733, + -0.009072224609553814, + -0.002729367231950164, + 0.05355571582913399, + -0.06596038490533829, + 0.029493356123566628, + 0.010478682816028595, + -0.05413589999079704, + -0.10983514785766602, + -0.010945387184619904, + 0.03251739591360092, + -0.009831448085606098, + 0.05153844505548477, + 0.004205589648336172, + -0.05814710259437561, + -0.03011222928762436, + 0.052025530487298965, + -0.014056006446480751, + 0.11034425348043442, + -0.0805053785443306, + 0.05237501859664917, + 0.058263927698135376, + -0.05806930735707283, + -0.042956821620464325, + 0.060362379997968674, + -0.02487141825258732, + -0.002107276814058423, + -0.05033313110470772, + -1.6582749395865903e-08, + 0.0064509897492825985, + -0.04035721719264984, + -0.047900304198265076, + 0.015326550230383873, + 0.0009104330092668533, + 0.002278249943628907, + -0.053193021565675735, + -0.04500250145792961, + -0.050588492304086685, + 0.04085666686296463, + 0.039349980652332306, + 0.021391216665506363, + -0.05341038852930069, + 0.03230474889278412, + -0.000198193229152821, + 0.019797444343566895, + -0.03540545329451561, + 0.028077518567442894, + -0.037911973893642426, + -0.06044305860996246, + 0.03270282596349716, + 0.012167597189545631, + 0.028331799432635307, + 0.07840768992900848, + 0.062057022005319595, + -0.008635793812572956, + -0.05342032387852669, + -0.034832946956157684, + 0.005309934262186289, + 0.14606958627700806, + 0.027084752917289734, + 0.022427018731832504, + -0.07103124260902405, + -0.01688128337264061, + -0.1234707459807396, + -0.06363910436630249, + 0.007595766335725784, + -0.06282412260770798, + 0.04855308681726456, + 0.06754150241613388, + 0.00916234776377678, + -0.06679492443799973, + 0.022219989448785782, + 0.019419629126787186, + 0.052595894783735275, + -0.04355470463633537, + 0.06212300807237625, + -0.031058575958013535, + -0.07401196658611298, + -0.04721385985612869, + -0.0034066871739923954, + -0.07066677510738373, + 0.020581863820552826, + 0.056014254689216614, + -0.032866545021533966, + -0.1162862554192543, + -0.008820859715342522, + 0.08323121070861816, + -0.0046426597982645035, + 0.04377018287777901, + 0.08682256937026978, + -0.0606255829334259, + -0.05119282379746437, + -0.068925641477108 + ], + "paper-plane-bold||mail,email,send,sent,messages,messaging,toys,games": [ + -0.01670757122337818, + -0.016715440899133682, + -0.01170908659696579, + 0.02193506993353367, + 0.0031310366466641426, + -0.024723149836063385, + 0.08593849837779999, + -0.047123637050390244, + 0.006172342225909233, + 0.055989209562540054, + 0.03941185772418976, + 0.08438132703304291, + -0.01073416043072939, + 0.029878154397010803, + 0.0034691619221121073, + 0.03947237879037857, + 0.005638108588755131, + -0.042665764689445496, + 0.0010875066509470344, + 0.0938243642449379, + 0.04614105448126793, + 0.04613683372735977, + 0.049178220331668854, + 0.040213096886873245, + 0.023273533210158348, + 0.04016111418604851, + -0.03471384197473526, + -0.006152754183858633, + -0.028175916522741318, + -0.08478762209415436, + 0.04724627360701561, + 0.06665601581335068, + 0.09992706775665283, + 0.11666948348283768, + 0.0417490229010582, + -0.011155200190842152, + 0.004243182018399239, + -0.03058740682899952, + 0.0298207625746727, + 0.015464821830391884, + -0.04170675203204155, + -0.07326488196849823, + -0.012889442965388298, + 0.08483942598104477, + 0.00566005939617753, + -0.03360774368047714, + -0.0697883814573288, + 0.03452936187386513, + -0.022799132391810417, + 0.012517371214926243, + -0.007038046605885029, + -0.1548648178577423, + -0.11877606064081192, + 0.041973233222961426, + 0.04653533175587654, + -0.025089183822274208, + -0.059901997447013855, + 0.00809468887746334, + 0.01102778222411871, + -0.017348095774650574, + -0.027364090085029602, + 0.07749776542186737, + -0.027713214978575706, + 0.009026654995977879, + 0.010667463764548302, + -0.013303167186677456, + -0.08799385279417038, + 0.02556394785642624, + -0.06005731597542763, + -0.017514076083898544, + 0.003590328386053443, + 0.06097619980573654, + 0.010186837986111641, + -0.015444893389940262, + 0.009723092429339886, + -0.054844800382852554, + 0.019448433071374893, + -0.054273925721645355, + -0.06828905642032623, + -0.045526303350925446, + -0.08344282954931259, + -0.019949229434132576, + -0.06966037303209305, + 0.04727482423186302, + 0.032580867409706116, + 0.02020650915801525, + -0.08735086768865585, + -0.0490344800055027, + -0.018167557194828987, + -0.005639181938022375, + -0.08278987556695938, + -0.03238743543624878, + 0.022431405261158943, + 0.07226844131946564, + -0.14014752209186554, + -0.001033553620800376, + -0.0034984133671969175, + -0.08413269370794296, + -0.017953602597117424, + 0.06404511630535126, + 0.07411888986825943, + 0.06326824426651001, + 0.09253066033124924, + -0.009230664931237698, + -0.0456949919462204, + -0.05668899044394493, + -0.025232210755348206, + -0.08811578154563904, + -0.024322926998138428, + 0.0031323330476880074, + -0.0834144651889801, + -0.04048866778612137, + -0.03879771754145622, + -0.0543326735496521, + -0.029803359881043434, + -0.0733141079545021, + -0.08658541738986969, + 0.016000699251890182, + 0.11861860007047653, + 0.0024058541748672724, + -0.027612628415226936, + 0.007730221375823021, + 0.005551119800657034, + -0.03776958957314491, + -0.1117972657084465, + 0.005841488018631935, + 0.05695795640349388, + -3.963218142047713e-33, + 0.018891099840402603, + 0.10967759788036346, + 0.005223375745117664, + 0.1237274706363678, + 0.01916365697979927, + 0.016046492382884026, + -0.055520884692668915, + -0.04083149507641792, + -0.05920639634132385, + 0.05616972967982292, + -0.08965487033128738, + 0.06616006791591644, + 0.02999299392104149, + 0.13593919575214386, + 0.09558770805597305, + -0.0025156475603580475, + -0.00938298087567091, + -0.029484976083040237, + 0.0011357086477801204, + 0.019124876707792282, + -0.05782882124185562, + 0.015573788434267044, + -0.010651815682649612, + -0.050251759588718414, + 0.07395995408296585, + 0.0024254326708614826, + -0.03517819568514824, + -0.04002200812101364, + -0.03276028484106064, + 0.0440228097140789, + 0.02703489549458027, + 0.038034819066524506, + 0.009884566999971867, + -0.0055939736776053905, + -0.040673427283763885, + 0.03950021043419838, + -0.055896393954753876, + -0.06340841948986053, + -0.04272690415382385, + 0.05169587954878807, + -0.08605477213859558, + -0.056891851127147675, + -0.05822592228651047, + 0.024245962500572205, + 0.02804867923259735, + 0.1283738911151886, + 0.01173375267535448, + 0.010891486890614033, + 0.09536701440811157, + 0.017156515270471573, + -0.02470545284450054, + -0.0321456715464592, + -0.03029368631541729, + -0.056036628782749176, + -0.008762801066040993, + -0.06580096483230591, + 0.06620863080024719, + 0.020827028900384903, + 0.03456518054008484, + -0.001980065368115902, + 0.07496073842048645, + 0.007515441160649061, + 0.0660754144191742, + -0.0001626202865736559, + 0.004845894873142242, + 0.0008718360331840813, + -0.019714882597327232, + 0.005727734882384539, + 0.02687995508313179, + -0.033118490129709244, + -0.020022178068757057, + 0.05283734202384949, + 0.033820439130067825, + 0.038455780595541, + 0.025965753942728043, + 0.009104208089411259, + -0.020547932013869286, + -0.03197618946433067, + 0.017606312409043312, + -0.06283693760633469, + -0.10879796743392944, + -0.0007039190386421978, + -0.07746099680662155, + 0.03377145528793335, + 0.0017205544281750917, + 0.00874999538064003, + 0.04172111302614212, + -0.04547904431819916, + -0.030536718666553497, + 0.03973203897476196, + -0.1631937325000763, + -0.02532086707651615, + 0.037026673555374146, + -0.022198386490345, + -0.07242108136415482, + 6.280698918044618e-34, + -0.01229894533753395, + -0.012194405309855938, + -0.11856072396039963, + 0.009465569630265236, + -0.029111647978425026, + 0.025826411321759224, + 0.08183479309082031, + 0.06350624561309814, + 0.028865400701761246, + 0.08596659451723099, + -0.037552572786808014, + -0.018088368698954582, + 0.004827730357646942, + -0.0177020076662302, + 0.05290813744068146, + -0.03969964012503624, + 0.009266168810427189, + 0.06590908765792847, + -0.0091368667781353, + -0.008012243546545506, + -0.020725062116980553, + -0.021779797971248627, + -0.09420330077409744, + 0.0905546322464943, + -0.008197114802896976, + 0.02375566028058529, + 0.045394692569971085, + -0.061664607375860214, + -0.02317943051457405, + 0.03750407695770264, + -0.0533011220395565, + -0.0559052899479866, + 0.08994493633508682, + 0.12938302755355835, + -0.09664780646562576, + 0.02169620431959629, + 0.07611681520938873, + -0.022298522293567657, + 0.02150486409664154, + -0.017243752256035805, + 0.008457982912659645, + 0.04717467725276947, + 0.03282732516527176, + 0.09408837556838989, + -0.0679846927523613, + -0.010538036935031414, + -0.10941073298454285, + 0.007257082965224981, + -0.027518577873706818, + 0.06690824776887894, + 0.01206922810524702, + 0.0034618147183209658, + 0.0014963984722271562, + -0.0619790144264698, + -0.05707959458231926, + 0.06921189278364182, + -0.05420559644699097, + -0.06189679726958275, + 0.03881567716598511, + 0.029821893200278282, + -0.05891117826104164, + -0.0020063400734215975, + -0.020610932260751724, + 0.021556677296757698, + 0.03503643348813057, + -0.09078427404165268, + 0.052880384027957916, + -0.028875509276986122, + 0.012393077835440636, + -0.011380239389836788, + 0.034517668187618256, + 0.06283644586801529, + -0.01810280606150627, + 0.004165078047662973, + -0.0032317419536411762, + -0.017939995974302292, + 0.01949497126042843, + 0.052132248878479004, + -0.04117002338171005, + 0.005467663053423166, + 0.0034210216253995895, + -0.01742888242006302, + -0.026694590225815773, + 0.0626193955540657, + -0.011454785242676735, + 0.023003363981842995, + -0.044596828520298004, + -0.05331268534064293, + -0.01776839792728424, + -0.028660252690315247, + 0.06513705849647522, + 0.09621961414813995, + 0.04108653590083122, + 0.021080216392874718, + -0.07035790383815765, + -2.2469587079854136e-08, + -0.02964821830391884, + -0.0375429131090641, + 0.03278395161032677, + -0.051594700664281845, + 0.014671043492853642, + -0.03259808570146561, + 0.09169577062129974, + -0.03862394019961357, + -0.022795574739575386, + -0.05209429934620857, + 0.05759582668542862, + -0.017384428530931473, + -0.1099681705236435, + -0.012531951069831848, + 0.05306634679436684, + -0.0024332634638994932, + -0.030847197398543358, + -0.016223102807998657, + -0.03596563637256622, + -0.02863413468003273, + 0.01719927415251732, + 0.05105996131896973, + 0.0004989838344044983, + -0.03420383483171463, + 0.01450942549854517, + 0.0129996407777071, + -0.05073172226548195, + 0.02699701488018036, + 0.035558272153139114, + 0.009367777034640312, + 0.02313004434108734, + 0.05209244415163994, + 0.021209444850683212, + 0.013427247293293476, + -0.09225244075059891, + -0.03119770623743534, + 0.06133654713630676, + -0.05259866639971733, + -0.024622200056910515, + 0.10790906101465225, + 0.046467412263154984, + -0.05433826893568039, + -0.025072244927287102, + -0.05059603229165077, + 0.07790163159370422, + 0.050846781581640244, + 0.011967707425355911, + -0.10026121139526367, + -0.037880636751651764, + -0.08217805624008179, + -0.039704952389001846, + 0.02100125327706337, + 0.03167513757944107, + 0.08616232872009277, + -0.0040666330605745316, + 0.015383241698145866, + 0.018298421055078506, + 0.01940414309501648, + 0.07031901925802231, + 0.016816280782222748, + 0.06134240701794624, + 0.04241272807121277, + -0.04183559492230415, + 0.05058402568101883 + ], + "paper-plane-right-bold||mail,email,send,sent,messages,messaging,toys,games": [ + -0.0056323581375181675, + -0.008970823138952255, + -0.014486626721918583, + 0.02434387058019638, + -0.004679318517446518, + -0.005899765528738499, + 0.08663194626569748, + -0.045587025582790375, + -0.001916706096380949, + 0.055986713618040085, + 0.056083984673023224, + 0.09630423039197922, + -0.006388159468770027, + 0.03070480190217495, + -0.005416571162641048, + 0.03197033330798149, + 0.0027728432323783636, + -0.04645921662449837, + 0.009534777142107487, + 0.09636992961168289, + 0.02676934376358986, + 0.046588726341724396, + 0.03735523670911789, + 0.04079172760248184, + 0.017615731805562973, + 0.05193222686648369, + -0.03453487902879715, + -0.0060616666451096535, + -0.027900129556655884, + -0.08763155341148376, + 0.03357277438044548, + 0.06011774018406868, + 0.08843866735696793, + 0.10659344494342804, + 0.03256399184465408, + -0.006552152801305056, + -0.00963597558438778, + -0.04102826118469238, + 0.03836081176996231, + 0.006339457351714373, + -0.05539347231388092, + -0.0953579768538475, + -0.012859254144132137, + 0.08299583941698074, + -0.006372640375047922, + -0.019819626584649086, + -0.059290770441293716, + 0.04317542538046837, + -0.012631750665605068, + 0.016820373013615608, + -0.014924922958016396, + -0.12866389751434326, + -0.12204434722661972, + 0.05538192018866539, + 0.03674677759408951, + 0.0061631519347429276, + -0.06509276479482651, + 0.010222792625427246, + 0.021309956908226013, + -0.010190937668085098, + -0.019229719415307045, + 0.0734192356467247, + -0.03780209645628929, + 0.01163690909743309, + -0.0017573460936546326, + -0.02356523461639881, + -0.08254975080490112, + 0.013845645822584629, + -0.05401727929711342, + -0.0053879511542618275, + 0.01705046370625496, + 0.055251218378543854, + 0.012816967442631721, + -0.018513944000005722, + 0.006689748261123896, + -0.052078355103731155, + 0.03170984983444214, + -0.042301297187805176, + -0.07141854614019394, + -0.04157821461558342, + -0.07868579775094986, + -0.005821485072374344, + -0.06387273222208023, + 0.05832325667142868, + 0.03492821007966995, + 0.022369863465428352, + -0.09454840421676636, + -0.04232197627425194, + -0.003367473604157567, + 0.0011260834289714694, + -0.07321936637163162, + -0.036130890250205994, + 0.03188794478774071, + 0.07042083889245987, + -0.13828876614570618, + 0.000189817335922271, + -0.015450476668775082, + -0.08310066908597946, + -0.02518903836607933, + 0.05738986283540726, + 0.08212598413228989, + 0.047087620943784714, + 0.09287805110216141, + -0.020016886293888092, + -0.031437478959560394, + -0.06717265397310257, + -0.03371226787567139, + -0.08555875718593597, + -0.01972717046737671, + 0.0059562730602920055, + -0.08021479845046997, + -0.04332226514816284, + -0.05209890007972717, + -0.04439152032136917, + -0.021971698850393295, + -0.0695965588092804, + -0.10282877087593079, + 0.02619863674044609, + 0.11505116522312164, + -0.00567152863368392, + -0.05179685726761818, + 0.014385602436959743, + -0.0028311987407505512, + -0.0491737499833107, + -0.1015588641166687, + -0.0017906593857333064, + 0.03100280463695526, + -4.144923854745915e-33, + 0.003834037808701396, + 0.08989658206701279, + 0.021196000277996063, + 0.11907843500375748, + 0.0158317182213068, + 0.015525970607995987, + -0.06782008707523346, + -0.026784272864460945, + -0.06446433812379837, + 0.07347428053617477, + -0.057322368025779724, + 0.050975482910871506, + 0.018790142610669136, + 0.12671008706092834, + 0.0944293886423111, + -0.00444408506155014, + -0.014934372156858444, + -0.03015979938209057, + -0.01268354058265686, + 0.014503139071166515, + -0.06411105394363403, + 0.02513010986149311, + -0.00888992752879858, + -0.047196872532367706, + 0.07470478862524033, + -0.009955840185284615, + -0.028222398832440376, + -0.04819364845752716, + -0.04422352835536003, + 0.04226359724998474, + 0.026183459907770157, + 0.022850630804896355, + 0.02028915099799633, + -0.01791403815150261, + -0.03725451976060867, + 0.03588837757706642, + -0.05665387213230133, + -0.06511946022510529, + -0.046809207648038864, + 0.04782272130250931, + -0.10083454102277756, + -0.03734789043664932, + -0.06532388925552368, + 0.019281061366200447, + 0.04666190594434738, + 0.12271848320960999, + 0.010776381939649582, + 0.018032340332865715, + 0.11134690791368484, + 0.02003517560660839, + -0.031025530770421028, + -0.029772229492664337, + -0.019467668607831, + -0.042919762432575226, + -0.011746142990887165, + -0.06072322279214859, + 0.07083446532487869, + 0.05231431871652603, + 0.02464425191283226, + -0.016809338703751564, + 0.0689709261059761, + 0.011893993243575096, + 0.06284762173891068, + -0.00896517001092434, + -0.007923555560410023, + -0.013400600291788578, + -0.031129738315939903, + -0.013056181371212006, + 0.03764702379703522, + -0.027621902525424957, + -0.030096309259533882, + 0.050482530146837234, + 0.04430538788437843, + 0.04717675596475601, + 0.010735454969108105, + 0.007113843224942684, + -0.03824375569820404, + -0.03008030168712139, + 0.013526171445846558, + -0.0564899779856205, + -0.1091601550579071, + 0.013226945884525776, + -0.09315294772386551, + 0.03945772349834442, + -0.006728703621774912, + -0.008718216791749, + 0.03469521179795265, + -0.05686865746974945, + -0.02060074545443058, + 0.030838146805763245, + -0.15906713902950287, + -0.015658404678106308, + 0.036854758858680725, + -0.015426412224769592, + -0.09406892955303192, + 6.0641563282338444e-34, + -0.015087014995515347, + -0.03852499648928642, + -0.10848502814769745, + 0.016213510185480118, + -0.0381961353123188, + 0.03644328564405441, + 0.1039392277598381, + 0.0557916983962059, + 0.03814251720905304, + 0.09788023680448532, + -0.01721082627773285, + -0.017209475859999657, + -0.019745808094739914, + -0.020353147760033607, + 0.051997702568769455, + -0.035901181399822235, + 0.02062246762216091, + 0.05851135030388832, + 0.006322694011032581, + 0.0005980087444186211, + -0.039809081703424454, + -0.03384903445839882, + -0.09157715737819672, + 0.10682322829961777, + -0.006706261076033115, + 0.02258971892297268, + 0.04576444625854492, + -0.051712438464164734, + -0.025062190368771553, + 0.039735469967126846, + -0.060633305460214615, + -0.05525572970509529, + 0.08637582510709763, + 0.13851286470890045, + -0.09528003633022308, + 0.0005392346065491438, + 0.056059081107378006, + -0.019197018817067146, + 0.022149544209241867, + 0.004665318410843611, + 0.022678522393107414, + 0.04866186901926994, + 0.03795570135116577, + 0.1095660999417305, + -0.06740103662014008, + -0.010345770046114922, + -0.11544318497180939, + 0.0031316063832491636, + -0.028161488473415375, + 0.055664896965026855, + 0.009058988653123379, + 0.02288041077554226, + 0.002320179482921958, + -0.06031506136059761, + -0.04146701097488403, + 0.05946692079305649, + -0.06868045777082443, + -0.06334953010082245, + 0.032890282571315765, + 0.03308364003896713, + -0.05146561190485954, + 0.003918549977242947, + -0.01471987459808588, + 0.010659301653504372, + 0.02869408018887043, + -0.09095840901136398, + 0.051990821957588196, + -0.02441583015024662, + 0.0006586576928384602, + -0.01841595210134983, + 0.037069421261548996, + 0.05948632210493088, + -0.03186645731329918, + -0.009232399053871632, + -0.011313343420624733, + -0.028262315317988396, + 0.018943706527352333, + 0.04786549136042595, + -0.03827102854847908, + 0.005237206816673279, + 0.0017651824746280909, + -0.012611367739737034, + -0.03542455658316612, + 0.06929776072502136, + -0.018227143213152885, + 0.015502456575632095, + -0.034612495452165604, + -0.05623112618923187, + 0.0038560288958251476, + -0.02902837283909321, + 0.07505844533443451, + 0.09903766959905624, + 0.04071942716836929, + 0.023586181923747063, + -0.06900305300951004, + -2.3244650648734932e-08, + -0.037491410970687866, + -0.05161253362894058, + 0.04053294286131859, + -0.041980914771556854, + 0.004639388993382454, + -0.02672545611858368, + 0.08341246098279953, + -0.03112627938389778, + -0.025361021980643272, + -0.052000224590301514, + 0.04853660613298416, + -0.009313751012086868, + -0.11708562821149826, + -0.011990190483629704, + 0.06282734125852585, + -0.0035064509138464928, + -0.055107999593019485, + -0.013621656224131584, + -0.03370256349444389, + -0.013866429217159748, + 0.018617086112499237, + 0.04082198813557625, + 0.0002986449981108308, + -0.03180612623691559, + 0.012205352075397968, + 0.018334349617362022, + -0.04591984301805496, + 0.030587319284677505, + 0.019995741546154022, + 0.015052258037030697, + 0.01954403519630432, + 0.04231737181544304, + 0.018946098163723946, + 0.0037754769437015057, + -0.07934737950563431, + -0.026990771293640137, + 0.055091988295316696, + -0.04880866780877113, + -0.01034916378557682, + 0.10064169764518738, + 0.04778052493929863, + -0.05098121613264084, + -0.02103881537914276, + -0.04467085003852844, + 0.06640703231096268, + 0.045137543231248856, + 0.025619512423872948, + -0.07736706733703613, + -0.03994441777467728, + -0.10617370903491974, + -0.04467826709151268, + 0.03568436950445175, + 0.03792315721511841, + 0.08184526115655899, + 0.007755825761705637, + 0.03000599704682827, + 0.023775439709424973, + 0.003148823045194149, + 0.07123758643865585, + 0.015391800552606583, + 0.07406730949878693, + 0.06957186013460159, + -0.04927494749426842, + 0.057945262640714645 + ], + "paper-plane-tilt-bold||mail,email,send,sent,messages,messaging,toys,games": [ + -0.01632636785507202, + -0.048607807606458664, + 0.01476882304996252, + 0.006208720616996288, + -0.009615465067327023, + -9.054718248080462e-05, + 0.0779254361987114, + -0.017339643090963364, + 0.012867103330790997, + 0.06733667850494385, + 0.055989205837249756, + 0.07043075561523438, + 0.006707611959427595, + 0.01170867308974266, + 0.014393842779099941, + 0.0502953827381134, + 0.013458416797220707, + -0.016890177503228188, + 0.01578076370060444, + 0.08893727511167526, + 0.013171596452593803, + 0.02881714515388012, + 0.026645826175808907, + 0.06744302809238434, + 0.011976908892393112, + 0.045556049793958664, + -0.05612702667713165, + 0.006344415247440338, + -0.044878799468278885, + -0.10081672668457031, + 0.013674693182110786, + 0.07758403569459915, + 0.09969593584537506, + 0.10271689295768738, + 0.0015607575187459588, + -0.010061574168503284, + 0.008513989858329296, + -0.026722313836216927, + -0.008910642005503178, + 0.001423756591975689, + -0.0611233115196228, + -0.06470546126365662, + -0.011836070567369461, + 0.08253267407417297, + 0.01974179409444332, + -0.018722036853432655, + -0.049662671983242035, + 0.04033456742763519, + -0.04873305559158325, + 0.03290204703807831, + -0.036633335053920746, + -0.13695059716701508, + -0.12268701940774918, + 0.06399361044168472, + 0.04242289438843727, + 0.011766249313950539, + -0.046768445521593094, + 0.01633293367922306, + 0.047954149544239044, + 0.0037284360732883215, + -0.01424228772521019, + 0.04904387146234512, + -0.03721218556165695, + 0.03220900520682335, + -0.0018070779042318463, + -0.02144138514995575, + -0.06881757080554962, + 0.004833029117435217, + -0.046567898243665695, + -0.02654314413666725, + -0.013911766931414604, + 0.03970051184296608, + 0.024579733610153198, + -0.0034838803112506866, + 0.006216768175363541, + -0.0708569586277008, + 0.04380358010530472, + -0.09164222329854965, + -0.04726092889904976, + -0.03571973368525505, + -0.09850805252790451, + -0.0034091707784682512, + -0.06538112461566925, + 0.0274357870221138, + 0.015507148578763008, + -0.0002158798452001065, + -0.07845062762498856, + -0.029222754761576653, + -0.03890097886323929, + -0.0033722063526511192, + -0.08711355924606323, + -0.047127217054367065, + 0.013233579695224762, + 0.0547630600631237, + -0.11678078770637512, + 0.006680852733552456, + 0.0028416577260941267, + -0.10677517205476761, + -0.01766294054687023, + 0.07944107055664062, + 0.07856214791536331, + 0.035036370158195496, + 0.081985242664814, + -0.004954046104103327, + -0.04236346110701561, + -0.07105927914381027, + -0.02497004345059395, + -0.08997847884893417, + -0.03883519768714905, + -0.007969417609274387, + -0.10071287304162979, + -0.04262775555253029, + -0.04379405826330185, + -0.06757044047117233, + -0.01663896255195141, + -0.0826009213924408, + -0.09229151904582977, + 0.019091632217168808, + 0.1027730256319046, + 0.021537989377975464, + -0.00296790967695415, + -0.0017814304446801543, + 0.007173310499638319, + -0.043377749621868134, + -0.10732090473175049, + 0.01423207949846983, + 0.032432906329631805, + -4.424881426047674e-33, + 0.04650051146745682, + 0.10347185283899307, + 0.01278633438050747, + 0.138387069106102, + 0.024032870307564735, + 0.003964054863899946, + -0.06035236641764641, + -0.026858603581786156, + -0.049647025763988495, + 0.04957013949751854, + -0.0703088715672493, + 0.10714849829673767, + 0.007530106697231531, + 0.14346067607402802, + 0.09761331230401993, + -0.04210902377963066, + -0.015559684485197067, + 0.0010881967609748244, + 0.004136634059250355, + 0.009127404540777206, + -0.07110199332237244, + 0.03402012586593628, + -0.00280830473639071, + -0.030637145042419434, + 0.042179856449365616, + -0.013724380172789097, + -0.022974997758865356, + -0.04513000696897507, + -0.06183856725692749, + 0.043685417622327805, + 0.028754213824868202, + 0.0088585140183568, + 0.012206445448100567, + -0.02183171547949314, + -0.03058968111872673, + 0.02154018171131611, + -0.06037696450948715, + -0.08673498779535294, + -0.019721781834959984, + 0.051755864173173904, + -0.10062725841999054, + -0.03532051295042038, + -0.07371165603399277, + 0.016638431698083878, + 0.028273340314626694, + 0.11000378429889679, + 0.010177497752010822, + 0.00445525161921978, + 0.07301589101552963, + 0.016215380281209946, + -0.014513054862618446, + -0.04366908594965935, + -0.024004966020584106, + -0.06456208974123001, + -0.0037277129013091326, + -0.035446688532829285, + 0.05354825034737587, + 0.01348645519465208, + 0.009255959652364254, + 0.011690241284668446, + 0.07107364386320114, + -0.0017339881742373109, + 0.07470494508743286, + -0.06693711131811142, + 0.017353711649775505, + -0.002308415714651346, + -0.010717292316257954, + -0.007250059396028519, + 0.02981114201247692, + -0.010647603310644627, + -0.016292935237288475, + 0.05348782613873482, + 0.02325313538312912, + 0.055837392807006836, + 0.012084771879017353, + 0.028285766020417213, + -0.01654827781021595, + -0.03589963540434837, + 0.012400542385876179, + -0.0468844436109066, + -0.10438568145036697, + 0.007184304762631655, + -0.08308201283216476, + 0.04194043204188347, + -0.031974758952856064, + -0.009808672592043877, + 0.030592039227485657, + -0.06296718865633011, + -0.04292362928390503, + 0.047927435487508774, + -0.1647278070449829, + -0.014834546484053135, + 0.041564662009477615, + -0.020287079736590385, + -0.07281064242124557, + 1.4048547881738168e-33, + -0.02962508238852024, + -0.038970861583948135, + -0.1397579163312912, + 0.02259846404194832, + -0.012386302463710308, + 0.037109509110450745, + 0.0751175805926323, + 0.06740867346525192, + 0.017850330099463463, + 0.0744079053401947, + -0.032615792006254196, + -0.022299330681562424, + 0.007357586175203323, + -0.01162992138415575, + 0.047739315778017044, + -0.019962098449468613, + 0.03545819967985153, + 0.06399012356996536, + 7.992398604983464e-05, + 0.012738407589495182, + 0.013921183533966541, + -0.015721645206212997, + -0.10995183140039444, + 0.08889231830835342, + 0.03599604219198227, + 0.028455913066864014, + 0.029265984892845154, + -0.056256528943777084, + -0.01469679269939661, + 0.032933514565229416, + -0.055531252175569534, + -0.06258175522089005, + 0.10089022666215897, + 0.1056768149137497, + -0.08109720051288605, + 0.027646297588944435, + 0.04152724891901016, + -0.04923964664340019, + -0.008747473359107971, + -0.01702026091516018, + 0.033602211624383926, + 0.05554264038801193, + 0.0743837058544159, + 0.09153815358877182, + -0.04168644919991493, + -0.017288653180003166, + -0.1202092170715332, + 0.010338942520320415, + -0.02238950878381729, + 0.08193334937095642, + 0.0032216780818998814, + 0.00024336086062248796, + 0.0018667122349143028, + -0.05566311255097389, + -0.07115094363689423, + 0.030707601457834244, + -0.03574036434292793, + -0.07052350789308548, + 0.02319491095840931, + 0.03435235098004341, + -0.03721645846962929, + -0.02315928228199482, + -0.028911851346492767, + 0.023873137310147285, + 0.02534494362771511, + -0.09301754832267761, + 0.06270070374011993, + -0.058821968734264374, + -0.006125655956566334, + -0.022870158776640892, + 0.05733209103345871, + 0.03434251248836517, + -0.01041747909039259, + -0.031498201191425323, + -0.002290833042934537, + -0.029421046376228333, + 0.04140525311231613, + 0.05578029155731201, + -0.04606645926833153, + -0.01289349514991045, + -0.004793883301317692, + 0.00013272369687911123, + 0.005284237675368786, + 0.0730358138680458, + -0.021308934316039085, + 0.03392000496387482, + -0.06005948781967163, + -0.03515659272670746, + 0.019919661805033684, + -0.0198751799762249, + 0.057686131447553635, + 0.07136878371238708, + 0.036890897899866104, + 0.03742063045501709, + -0.0483090840280056, + -2.4383977503816823e-08, + -0.03588208556175232, + -0.05001150071620941, + 0.049413297325372696, + -0.022032897919416428, + 0.004717136267572641, + -0.014326079748570919, + 0.07962652295827866, + -0.031132204458117485, + -0.00012466525367926806, + -0.06743897497653961, + 0.06567834317684174, + -0.0023317637387663126, + -0.09340745210647583, + -0.01230526715517044, + 0.09848292171955109, + 0.010808398947119713, + -0.04702083393931389, + 0.025533467531204224, + -0.03174187242984772, + -0.017991241067647934, + 0.03913116455078125, + 0.06208021938800812, + 0.015027211979031563, + -0.022215215489268303, + 0.007234730292111635, + 0.013729918748140335, + -0.05398213490843773, + 0.03720661997795105, + 0.044960230588912964, + 0.016908468678593636, + 0.022785279899835587, + 0.046391479671001434, + 0.0032674367539584637, + -0.03789369389414787, + -0.10326432436704636, + 0.007684388663619757, + 0.017050381749868393, + -0.03824984282255173, + -0.015292583964765072, + 0.10642468929290771, + 0.04311588779091835, + -0.03209877759218216, + -0.027697641402482986, + -0.02884008176624775, + 0.07782194018363953, + 0.048112332820892334, + 0.014124606736004353, + -0.07657171785831451, + -0.019702190533280373, + -0.09112820774316788, + -0.04272359982132912, + 0.03702906519174576, + 0.04424714669585228, + 0.08288677036762238, + -0.01700895093381405, + 0.05003109201788902, + 0.044736046344041824, + 0.021070128306746483, + 0.05659765005111694, + -0.014650209806859493, + 0.06989558786153793, + 0.04360987991094589, + -0.06859882175922394, + 0.04628017917275429 + ], + "paperclip-bold||attachments,mail,email,office": [ + -0.07131777703762054, + -0.010623003356158733, + -0.014010031707584858, + 0.08525490760803223, + 0.051797207444906235, + -0.06134646758437157, + 0.022800631821155548, + -0.029573675245046616, + 0.05839373171329498, + -0.0026416080072522163, + 0.011219934560358524, + 0.10292427986860275, + -0.0002631546522025019, + 0.046515945345163345, + -0.04173843562602997, + 0.05142151564359665, + -0.05700792372226715, + 0.02839338593184948, + -0.02094384841620922, + 0.13612595200538635, + 0.008960641920566559, + 0.058700159192085266, + 0.0812005028128624, + 0.004943536594510078, + 0.051694486290216446, + -0.0007465212838724256, + -0.08221203088760376, + -0.07185618579387665, + -0.009857767261564732, + -0.05802622810006142, + 0.08485078066587448, + -0.016598237678408623, + 0.1194041296839714, + 0.04254157841205597, + 0.08600185811519623, + 0.027413874864578247, + -0.0012635504826903343, + -0.0019155044574290514, + 0.0508752204477787, + 0.002737202448770404, + 0.021700086072087288, + -0.10860814154148102, + 0.006269977428019047, + -0.008721249178051949, + -0.0011959514813497663, + -0.08621346205472946, + -0.011143042705953121, + 0.01986955665051937, + -0.005408370401710272, + 0.07302796095609665, + -0.018861809745430946, + -0.13822241127490997, + -0.1077832505106926, + 0.01866203546524048, + 0.016978509724140167, + -0.07751543819904327, + -0.0591268353164196, + -0.009350341744720936, + 0.026738597080111504, + -0.02901679463684559, + 0.002741709817200899, + 0.063846655189991, + -0.030506622046232224, + 0.05680761858820915, + 0.036990027874708176, + 0.056930627673864365, + -0.023733334615826607, + 0.01653817668557167, + -0.07355128228664398, + -0.032222848385572433, + -0.031662195920944214, + -0.001415566890500486, + -0.020318828523159027, + -0.009361756034195423, + 0.03266684338450432, + -0.013053095899522305, + 0.03205864876508713, + 0.017576709389686584, + -0.07358366996049881, + -0.04534192755818367, + 0.02451259456574917, + -0.08714444935321808, + -0.0031947260722517967, + 0.10873421281576157, + 0.09355606883764267, + 0.06909897923469543, + -0.06850339472293854, + -0.10907775163650513, + -0.011511599645018578, + 0.01544028241187334, + -0.04432912543416023, + -0.002012617187574506, + -0.03385252133011818, + 0.014963159337639809, + -0.12658798694610596, + -0.039960213005542755, + 0.008232182823121548, + -0.03703022748231888, + -0.05997982993721962, + 0.08538442105054855, + 0.04626378417015076, + 0.06370705366134644, + 0.03339778259396553, + -0.025766724720597267, + -0.004356833640486002, + -0.024580230936408043, + -0.0258654598146677, + -0.10123658180236816, + -0.05909373238682747, + -0.010204070247709751, + 0.04622712358832359, + -0.09240858256816864, + -0.08321641385555267, + -0.14120185375213623, + -0.022077662870287895, + -0.05895115062594414, + -0.06623601168394089, + 0.0028916760347783566, + 0.09946201741695404, + 0.027546867728233337, + -0.018838433548808098, + 0.04000319913029671, + -0.08531060069799423, + -0.06424978375434875, + -0.015797553583979607, + -0.01745072938501835, + 0.07066266238689423, + -9.9510344692258e-34, + 0.03077053837478161, + 0.05891293287277222, + -0.010326864197850227, + 0.06950017809867859, + -0.004483380354940891, + -0.008456287905573845, + -0.06525910645723343, + -0.08239857852458954, + -0.11979082971811295, + -0.037689752876758575, + 0.05754180625081062, + 0.045926209539175034, + 0.09679000824689865, + 0.1096239984035492, + -0.011830436065793037, + 0.04448249936103821, + -0.0252249576151371, + 0.04362506791949272, + 0.007698733359575272, + 0.07910457253456116, + -0.09462396800518036, + 0.0013251624768599868, + -0.056677356362342834, + -0.019260698929429054, + 0.003345799632370472, + 0.01794625073671341, + -0.0057455189526081085, + -0.007643367629498243, + -0.02794574946165085, + 0.0486900694668293, + 0.009939011186361313, + 0.0038670096546411514, + 0.0335097461938858, + 0.022637542337179184, + -0.06025029346346855, + 0.06112987548112869, + -0.08360154926776886, + -0.047345858067274094, + 0.029463183134794235, + 0.06198445335030556, + -0.018466968089342117, + -0.021053723990917206, + 0.009534301236271858, + -0.04671388119459152, + 0.02872622013092041, + 0.10113564878702164, + 0.022539172321558, + 0.03332384675741196, + 0.02046876773238182, + 0.007148622069507837, + 0.05278358981013298, + -0.03619997203350067, + -0.0009386726887896657, + 0.004714382346719503, + 0.010039135813713074, + -0.05594087764620781, + 0.02093454822897911, + 0.0664890930056572, + 0.05681265518069267, + -0.011188281700015068, + 0.018345573917031288, + 0.05922384932637215, + 0.0010376236168667674, + -0.05962945893406868, + -0.03160906210541725, + 0.01682352088391781, + -0.024040022864937782, + 0.05012967064976692, + 0.029201103374361992, + -0.032065678387880325, + 0.009556993842124939, + 0.020064428448677063, + -0.0195764247328043, + 0.04211872071027756, + 0.0051082405261695385, + -0.02728545293211937, + 0.00317380391061306, + -0.03146471455693245, + 0.06511321663856506, + -0.03391309455037117, + -0.07899731397628784, + -0.020295636728405952, + -0.02912883460521698, + -0.032445285469293594, + -0.09053468704223633, + 0.038268718868494034, + 0.039093099534511566, + -0.05448450148105621, + -0.05681201070547104, + 0.004826259799301624, + -0.03162183240056038, + 0.027788914740085602, + -0.024619026109576225, + -0.009993553161621094, + -0.012758785858750343, + -1.1526713933171035e-33, + 0.07183244079351425, + -0.004445937927812338, + -0.08344578742980957, + 0.0400984063744545, + -0.024934563785791397, + 0.054946862161159515, + 0.06490582972764969, + 0.011251052841544151, + 0.008610401302576065, + 0.060986630618572235, + 0.030492709949612617, + -0.019115552306175232, + -0.06684326380491257, + -0.005267057567834854, + -0.017560159787535667, + 0.00837173592299223, + -0.026258615776896477, + 0.07127885520458221, + -0.04452238976955414, + 0.006895509082823992, + -0.05390390753746033, + 0.0082299979403615, + 0.09367801994085312, + 0.14068986475467682, + 0.007686518598347902, + 0.014448924921452999, + -0.03491370379924774, + -0.05353602394461632, + -0.005454301368445158, + -0.017689315602183342, + -0.06643553078174591, + 0.010333392769098282, + -0.01165337860584259, + 0.03160218149423599, + -0.038729701191186905, + 0.06415918469429016, + 0.01847398467361927, + 0.003525076201185584, + 0.14261332154273987, + 0.008616016246378422, + -0.0008590451907366514, + 0.020530827343463898, + 0.019328512251377106, + 0.024669157341122627, + -0.021852102130651474, + -0.007005142979323864, + -0.04428716376423836, + 0.029805822297930717, + 0.01771475002169609, + 0.07360317558050156, + -0.0146332373842597, + 0.0026959285605698824, + 0.03359399735927582, + 0.014696580357849598, + -0.08309611678123474, + 0.05685344338417053, + -0.01645624078810215, + -0.06383948028087616, + -0.005306811537593603, + 0.0228609349578619, + -0.056306540966033936, + 0.04789721965789795, + -0.04961447790265083, + 0.02795475162565708, + 0.0921972393989563, + -0.049395300447940826, + 0.029427696019411087, + -0.06129519268870354, + -0.06075245514512062, + 0.02004767768085003, + 0.01787533424794674, + 0.027562670409679413, + 0.04272115230560303, + -0.059394121170043945, + 0.07543330639600754, + 0.02912100777029991, + 0.0262948926538229, + -0.015802908688783646, + -0.06846602261066437, + -0.04772601276636124, + -0.04036019742488861, + 0.03796371445059776, + -0.015616558492183685, + 0.04033026471734047, + -0.05844710394740105, + 0.016065986827015877, + -0.03040897287428379, + -0.04811157286167145, + -0.04558217525482178, + -0.08443138003349304, + -0.023181432858109474, + 0.05321655049920082, + 0.10277634114027023, + 0.026281332597136497, + -0.06201997399330139, + -1.79133312627755e-08, + -0.0423419289290905, + -0.01923617534339428, + 0.012158771976828575, + -0.060548171401023865, + 0.011566678062081337, + 0.018795939162373543, + 0.007933707907795906, + -0.03407266363501549, + 0.007448667194694281, + -0.037297606468200684, + 0.06638546288013458, + -0.048381391912698746, + -0.07575806230306625, + -0.03880609944462776, + 0.04515937715768814, + -0.013245752081274986, + 0.009998748078942299, + -0.047581251710653305, + -0.05697048828005791, + -0.08179321885108948, + 0.04660456255078316, + 0.009226548485457897, + 0.03341531381011009, + -0.042936019599437714, + 0.024363333359360695, + 0.0122635867446661, + -0.051163285970687866, + 0.03817928954958916, + 0.01981349289417267, + 0.03247193247079849, + 0.015128136612474918, + 0.006902442779392004, + -0.03728293627500534, + 0.03424994274973869, + -0.07153376191854477, + -0.010712489485740662, + 0.04119562357664108, + -0.05268515646457672, + -0.04677334055304527, + 0.16787008941173553, + 0.03203156217932701, + -0.03293522074818611, + -0.07572994381189346, + -0.050493430346250534, + 0.0036990446969866753, + -0.0034427714999765158, + 0.0713791474699974, + -0.08030196279287338, + -0.06294116377830505, + -0.06906825304031372, + -0.011375240981578827, + -0.06735796481370926, + 0.05154259875416756, + 0.10351135581731796, + -0.016822926700115204, + -0.07905269414186478, + 0.08701988309621811, + 0.07368659228086472, + 0.03577495366334915, + 0.040536895394325256, + 0.043999407440423965, + 0.03540781885385513, + 0.018820229917764664, + 0.056483570486307144 + ], + "paperclip-horizontal-bold||attachments,mail,email,office": [ + -0.07031256705522537, + 0.002936884993687272, + -0.01887110434472561, + 0.06212228909134865, + 0.04177482798695564, + -0.04216897860169411, + -0.005268464330583811, + -0.02633468061685562, + 0.06130063161253929, + 0.009851616807281971, + 0.023846227675676346, + 0.13732624053955078, + 0.006485519465059042, + 0.07005737721920013, + -0.04887150228023529, + 0.03401172161102295, + -0.0788257047533989, + 0.03199497610330582, + -0.02052701637148857, + 0.14046472311019897, + -0.005974960047751665, + 0.02464902773499489, + 0.06921925395727158, + -0.003502854611724615, + 0.023025909438729286, + 0.026744982227683067, + -0.0776844471693039, + -0.056173957884311676, + -0.0017900922102853656, + -0.08187144994735718, + 0.07963202148675919, + -0.013446852564811707, + 0.09628862142562866, + 0.04296858236193657, + 0.06005984917283058, + 0.003305734833702445, + -0.0008540725684724748, + -0.005933810956776142, + 0.057923659682273865, + 0.014621826820075512, + 0.014388766139745712, + -0.11348710209131241, + 0.00728680519387126, + -0.0076546757481992245, + -0.009404916316270828, + -0.08869612962007523, + -0.018672002479434013, + 0.020335130393505096, + 0.01190935168415308, + 0.07808220386505127, + -0.023519830778241158, + -0.1325695663690567, + -0.10174231231212616, + 0.05281173065304756, + 0.022289050742983818, + -0.07144420593976974, + -0.04360758885741234, + -0.005316032096743584, + 0.04181491956114769, + -0.03700702637434006, + 0.03366515040397644, + 0.06369674950838089, + -0.00839656125754118, + 0.05362476408481598, + 0.040471769869327545, + 0.05462849140167236, + -0.05087650567293167, + 0.016189076006412506, + -0.08520886301994324, + -0.024905169382691383, + -0.03411964699625969, + -0.020978586748242378, + -0.016372449696063995, + -0.03388204425573349, + 0.03630409017205238, + -0.02168877422809601, + 0.03403031453490257, + 0.023104043677449226, + -0.08166506141424179, + -0.05025807395577431, + 0.04609081894159317, + -0.04635946452617645, + -0.01874622143805027, + 0.11950015276670456, + 0.0657268762588501, + 0.054153140634298325, + -0.08162915706634521, + -0.09625806659460068, + -0.014138000085949898, + 0.013774517923593521, + -0.02906891331076622, + 0.012582973577082157, + -0.019151899963617325, + 0.016828004270792007, + -0.1311536282300949, + -0.05713788419961929, + -0.013535866513848305, + -0.04421932250261307, + -0.07119642943143845, + 0.0696289986371994, + 0.04534420743584633, + 0.044659703969955444, + 0.03556870296597481, + -0.022377926856279373, + 0.024606892839074135, + -0.025951769202947617, + -0.037185344845056534, + -0.11320490390062332, + -0.048402346670627594, + -0.003156861523166299, + 0.03478550165891647, + -0.06752220541238785, + -0.09981882572174072, + -0.12503144145011902, + -0.028646519407629967, + -0.06163346394896507, + -0.06803140044212341, + 0.024578871205449104, + 0.09312859177589417, + 0.014758721925318241, + -0.018205726519227028, + 0.04468848183751106, + -0.09086698293685913, + -0.05775648355484009, + -0.0030582286417484283, + 0.011029042303562164, + 0.05403035879135132, + -1.827026972115918e-33, + 0.024247722700238228, + 0.02643701806664467, + 0.0031166537664830685, + 0.08548814803361893, + 0.011260466650128365, + -0.01850106753408909, + -0.07414135336875916, + -0.0545601062476635, + -0.11708033084869385, + -0.04414534568786621, + 0.06984800845384598, + 0.04647864028811455, + 0.07277914136648178, + 0.10837114602327347, + -0.008194953203201294, + 0.010247189551591873, + -0.03727845475077629, + 0.03856182470917702, + -0.02417251467704773, + 0.0715487152338028, + -0.11315762251615524, + -0.02141019143164158, + -0.03710072487592697, + -0.026683123782277107, + 0.01702859252691269, + 0.014160414226353168, + -0.007774661295115948, + -0.012689617462456226, + -0.05156976357102394, + 0.048537515103816986, + -0.007747967261821032, + -0.002048242138698697, + 0.04985536262392998, + 0.004053700715303421, + -0.05473729223012924, + 0.06489862501621246, + -0.09578519314527512, + -0.04313650354743004, + 0.022517221048474312, + 0.06957794725894928, + -0.04848070070147514, + -0.02822921611368656, + 0.0018386520678177476, + -0.06484157592058182, + 0.0453118234872818, + 0.1073569804430008, + 0.03593342378735542, + 0.028416931629180908, + 0.01823459565639496, + -0.011651032604277134, + 0.054142437875270844, + -0.0324542410671711, + -0.009332170709967613, + -0.004052853677421808, + 0.0307583250105381, + -0.06126086041331291, + 0.003317713038995862, + 0.10090374201536179, + 0.04252774640917778, + -0.007881375961005688, + 0.014061613008379936, + 0.047585196793079376, + -0.008365428075194359, + -0.06607776135206223, + -0.031404998153448105, + 0.003118943888694048, + -0.04435152933001518, + 0.04458854719996452, + 0.044371142983436584, + -0.01829315535724163, + 0.015553909353911877, + 0.008532151579856873, + -0.017829883843660355, + 0.06175154820084572, + 0.00331009435467422, + -0.017794238403439522, + -0.016934238374233246, + -0.010382548905909061, + 0.08355093002319336, + -0.03392453491687775, + -0.07093440741300583, + 0.004640345461666584, + -0.004339819308370352, + -0.06577907502651215, + -0.09161821752786636, + 0.0266585573554039, + 0.04260953515768051, + -0.04065722972154617, + -0.04500982537865639, + -0.012345435097813606, + -0.04639985412359238, + 0.05670822411775589, + 0.010419121012091637, + 0.0001049588609021157, + -0.008602970279753208, + -6.934245308098001e-34, + 0.06148672476410866, + -0.01654425449669361, + -0.08772966265678406, + 0.02388693392276764, + -0.030653836205601692, + 0.06936289370059967, + 0.080678291618824, + 0.010971147567033768, + -0.02096143737435341, + 0.0833515003323555, + 0.0465322770178318, + -0.02158316783607006, + -0.10031438618898392, + -0.004196183755993843, + -0.010680150240659714, + 0.015251504257321358, + -0.02180974744260311, + 0.07228820770978928, + -0.04043909162282944, + 0.0097658671438694, + -0.042968250811100006, + 0.0033471176866441965, + 0.08113608509302139, + 0.14599351584911346, + 0.008690220303833485, + 0.01535946223884821, + -0.014380371198058128, + -0.04247581958770752, + 0.007199221756309271, + -0.016269763931632042, + -0.0622558556497097, + -0.004640314728021622, + 0.0033788227010518312, + 0.022674741223454475, + -0.03532232344150543, + 0.043097347021102905, + -0.012651262804865837, + 0.018033290281891823, + 0.15729878842830658, + -0.0052107409574091434, + -0.027994554489850998, + 0.021842973306775093, + 0.061454202979803085, + 0.013758247718214989, + -0.02222963236272335, + -0.021984083577990532, + -0.043906040489673615, + 0.049517516046762466, + 0.01895735040307045, + 0.07214772701263428, + -0.03692282736301422, + 0.011867799796164036, + 0.03810158371925354, + 0.01567288301885128, + -0.07683967798948288, + 0.0486060306429863, + -0.04752142354846001, + -0.056277740746736526, + -0.02096431888639927, + 0.024712109938263893, + -0.0573263056576252, + 0.05654623359441757, + -0.038743115961551666, + 0.023601878434419632, + 0.08574249595403671, + -0.026864364743232727, + 0.03706549108028412, + -0.0902998223900795, + -0.07142237573862076, + 0.026767300441861153, + 0.01598256640136242, + 0.051883138716220856, + 0.03770260512828827, + -0.07578004151582718, + 0.06938683241605759, + 0.027222419157624245, + 0.03842047601938248, + -0.012325715273618698, + -0.06783991307020187, + -0.06755736470222473, + -0.06545383483171463, + 0.023396816104650497, + -0.016746513545513153, + 0.04820388928055763, + -0.08592428267002106, + 0.008898547850549221, + -0.046134788542985916, + -0.037906549870967865, + -0.018088212236762047, + -0.07705661654472351, + -0.028866728767752647, + 0.029932470992207527, + 0.10154125094413757, + 0.01620747521519661, + -0.034416116774082184, + -1.8851185501489454e-08, + -0.035735465586185455, + -0.055529821664094925, + 0.019635068252682686, + -0.05545283481478691, + -0.003183904802426696, + 0.04154594615101814, + 0.010512002743780613, + -0.03772643208503723, + 0.02832934632897377, + -0.03256923705339432, + 0.06024624779820442, + -0.02847389690577984, + -0.07076232880353928, + -0.02393665909767151, + 0.03201107308268547, + -0.013159305788576603, + -0.0020314203575253487, + -0.023961322382092476, + -0.03265150636434555, + -0.0704699233174324, + 0.07017000019550323, + -0.002946547931060195, + 0.034350138157606125, + -0.017606189474463463, + 0.016936253756284714, + 0.029598752036690712, + -0.07403858751058578, + 0.04668756201863289, + 0.027239248156547546, + 0.022189663723111153, + 0.009039144031703472, + 0.007295182906091213, + -0.03697367012500763, + 0.030025258660316467, + -0.04732796922326088, + -0.022034745663404465, + 0.03940495848655701, + -0.03247710317373276, + -0.036935728043317795, + 0.13837793469429016, + 0.036210816353559494, + -0.02736867219209671, + -0.049467939883470535, + -0.04951032996177673, + 0.031545404344797134, + -0.01172715239226818, + 0.07577839493751526, + -0.03833362087607384, + -0.06288445740938187, + -0.06287036091089249, + -0.007709798403084278, + -0.07282986491918564, + 0.069218710064888, + 0.09639228880405426, + -0.004656305070966482, + -0.06381504982709885, + 0.08680281788110733, + 0.043059542775154114, + 0.026277322322130203, + 0.019524024799466133, + 0.047959741204977036, + 0.04662575200200081, + 5.6510201829951257e-05, + 0.05358196049928665 + ], + "parachute-bold||skydiving,safety": [ + 0.02469036914408207, + 0.03731893375515938, + -0.05134252831339836, + 0.015758614987134933, + 0.08807425200939178, + 0.006823964416980743, + 0.09188411384820938, + 0.038207367062568665, + -0.04992050677537918, + 0.04313289374113083, + 0.05404587462544441, + 0.001293323701247573, + 0.0023020426742732525, + 0.02610650472342968, + -0.12035584449768066, + 0.06923379749059677, + 0.005658167414367199, + 0.027610721066594124, + -0.1133103147149086, + 0.04884050786495209, + 0.0052281576208770275, + 0.08919841051101685, + 0.0399542972445488, + 0.08568599820137024, + -0.004003671929240227, + 0.02872883901000023, + -0.0113436384126544, + 0.013036200776696205, + 0.03621656820178032, + -0.03625696897506714, + 0.0363900400698185, + 0.020732033997774124, + 0.07482527941465378, + 0.008109085261821747, + 0.07307103276252747, + 0.04742995649576187, + 0.04023396223783493, + -0.06595148146152496, + 0.024991849437355995, + 0.03878109157085419, + -0.02474885620176792, + -0.07944076508283615, + -0.030176639556884766, + 0.0198417529463768, + 0.0024007228203117847, + 0.042768266052007675, + 0.020384008064866066, + -0.027058031409978867, + -0.005313532892614603, + 0.06817260384559631, + -0.003309075953438878, + -0.03926322981715202, + -0.07696383446455002, + -0.03332062065601349, + 0.018206588923931122, + 0.022594254463911057, + -0.10245076566934586, + 0.007026277482509613, + -0.0006718388176523149, + -0.06056143715977669, + 0.006029947195202112, + 0.07017865031957626, + -0.017118291929364204, + 0.06457272917032242, + 0.00764031196013093, + -0.0027483361773192883, + -0.013370952568948269, + -0.022596251219511032, + -0.0023771231062710285, + 0.053101833909749985, + 0.010045462287962437, + -0.0010713631054386497, + -0.01670587994158268, + -0.01502709649503231, + -0.07392076402902603, + 0.0007011760608293116, + 0.08798611164093018, + 0.009677900932729244, + -0.03742712736129761, + -0.02367270551621914, + 0.11799687892198563, + -0.10173611342906952, + -0.04060756042599678, + 0.027991745620965958, + -0.027265574783086777, + 0.07985582947731018, + -0.02616696059703827, + -0.00845581479370594, + -0.0161444004625082, + -0.05195315182209015, + -0.059273432940244675, + -0.08601339906454086, + -0.0003973708371631801, + 0.037057917565107346, + -0.12660802900791168, + 0.060315247625112534, + -0.03327992558479309, + -0.06294432282447815, + -0.03648954629898071, + 0.011063113808631897, + 0.03006901405751705, + -0.023239269852638245, + 0.03303338214755058, + 0.04130343347787857, + -0.023427076637744904, + -0.06376350671052933, + 0.0113672511652112, + -0.06802945584058762, + 0.040383752435445786, + 0.0844973549246788, + -0.022932861000299454, + -0.03527563065290451, + 0.0450800359249115, + -0.012510358355939388, + -0.050315793603658676, + 0.015864891931414604, + -0.1442931592464447, + -0.034640196710824966, + -0.0017539648106321692, + -0.0014362309593707323, + -0.010822965763509274, + 0.043349966406822205, + 0.10058477520942688, + -0.0024463471490889788, + 0.03294626623392105, + -0.09100396186113358, + 0.00804715696722269, + -3.286534166079309e-33, + 0.08217790722846985, + 0.04239568114280701, + 0.05299688130617142, + 0.05548291280865669, + 0.02525046281516552, + -0.10313289612531662, + -0.05658005177974701, + -0.04207509756088257, + -0.05829569324851036, + 0.10937915742397308, + -0.02923901565372944, + -0.031506769359111786, + -0.0060732802376151085, + -0.02882792428135872, + 0.08257264643907547, + -0.03615698590874672, + -0.03178722411394119, + -0.10338223725557327, + -0.1373557597398758, + 0.006894693244248629, + -0.013572153635323048, + 0.004109246656298637, + -0.05534299090504646, + 0.020333079621195793, + 0.01674831472337246, + -0.03514987602829933, + 0.02590121515095234, + -0.03373067080974579, + 0.1075916513800621, + 0.06510696560144424, + -0.062144190073013306, + 0.051097650080919266, + -0.028717704117298126, + -0.024036264047026634, + -0.004948966670781374, + 0.1355186253786087, + -0.05144349858164787, + -0.04774555563926697, + -0.05229900777339935, + 0.06683859974145889, + -0.06493937969207764, + -0.040152665227651596, + 0.0029367392417043447, + 0.00469770934432745, + 0.012996433302760124, + -0.04268702119588852, + 0.06506390869617462, + -0.04073493927717209, + -0.08068259060382843, + -0.01308818906545639, + -0.05199454724788666, + 0.017211126163601875, + 0.12195194512605667, + -0.014660758897662163, + 0.040368326008319855, + -0.013765890151262283, + 0.057524874806404114, + 0.04109382629394531, + -0.03311727195978165, + 0.014079036191105843, + -0.018434766680002213, + -0.04068455100059509, + -0.03307046368718147, + -0.0171017125248909, + -0.029475072398781776, + -0.015477876178920269, + -0.012695514596998692, + 0.04135417193174362, + 0.0713864266872406, + -0.00277158385142684, + -0.10359231382608414, + 0.05945253372192383, + -0.009790057316422462, + -0.04771163687109947, + -0.04875587299466133, + -0.017078770324587822, + -0.02467004582285881, + 0.0006774979410693049, + 0.0692330151796341, + -0.08216316998004913, + -0.009938701055943966, + 0.040901023894548416, + -0.01971602998673916, + 0.021046645939350128, + 0.10181494802236557, + -0.013611427508294582, + 0.012640437111258507, + -0.026158059015870094, + -0.057192038744688034, + 0.031472016125917435, + -0.058796174824237823, + -0.021190261468291283, + 0.038095034658908844, + -0.05676732957363129, + -0.009288717992603779, + 1.7381395790555906e-33, + 0.0647614374756813, + 0.07306913286447525, + -0.016720034182071686, + 0.0340348482131958, + -0.005973536986857653, + 0.031120264902710915, + 0.013360463082790375, + 0.024528633803129196, + -0.06350528448820114, + -0.019564270973205566, + -0.09995774924755096, + 0.0060579958371818066, + 0.04329373687505722, + -0.012945844791829586, + 0.09335973858833313, + -0.049898602068424225, + 0.0014470991445705295, + 0.007142478600144386, + -0.027183935046195984, + -0.02816842496395111, + 0.022034471854567528, + -0.034472618252038956, + -0.03296269476413727, + 0.017351211979985237, + -0.06270739436149597, + 0.05870353803038597, + 0.02151741087436676, + 0.02062762901186943, + 0.028954917564988136, + -0.024983538314700127, + 0.03131190314888954, + 0.005429716780781746, + -0.0350058376789093, + 0.06400483846664429, + -0.07296853512525558, + 0.05114537850022316, + -0.0011837362544611096, + -0.042013414204120636, + -0.040159255266189575, + -0.08608011901378632, + -0.034253012388944626, + -0.014868204481899738, + 0.05935470387339592, + -0.023941926658153534, + 0.018776785582304, + -0.03275289386510849, + -0.02883135713636875, + -0.0052207885310053825, + -0.017884526401758194, + -0.05098864063620567, + -0.03992067277431488, + -0.025785237550735474, + -0.09690308570861816, + 0.06651287525892258, + 0.10658068209886551, + -0.0011564611922949553, + -0.05204876884818077, + -0.05942337587475777, + -0.01249653659760952, + -0.026948727667331696, + 0.011381126008927822, + 0.050696585327386856, + -0.08038592338562012, + 0.08848576247692108, + -0.0013513978337869048, + -0.035603608936071396, + -0.04769343510270119, + 0.03186826407909393, + -0.07393870502710342, + 0.022613029927015305, + 0.01964452490210533, + -0.012750053778290749, + 0.02300737239420414, + 0.012763375416398048, + 0.013639794662594795, + -0.0862860307097435, + 0.05113156884908676, + 0.0806104987859726, + 0.05189276114106178, + 0.05179008096456528, + 0.006611119024455547, + -0.04187930375337601, + -0.006739741191267967, + 0.10006733238697052, + -0.07422441989183426, + 0.026577066630125046, + -0.037497542798519135, + 0.02756211720407009, + -0.07592844218015671, + -0.03427642956376076, + -0.04766365885734558, + 0.049390148371458054, + 0.015535777434706688, + 0.058549828827381134, + 0.010283064097166061, + -1.586101561201758e-08, + -0.05991149693727493, + 0.0845516100525856, + -0.1086595207452774, + -0.03182531148195267, + 0.011819059029221535, + 0.06262195855379105, + 0.031779706478118896, + -0.05572821572422981, + -0.013685944490134716, + -0.04314487800002098, + -0.014574154280126095, + 0.023103339597582817, + -0.02392917312681675, + 0.11087021231651306, + -0.02893877774477005, + 0.002166176214814186, + -0.05262438952922821, + 0.04292012378573418, + -0.016386540606617928, + 0.034283436834812164, + 0.03162149339914322, + 0.03352219611406326, + 0.007982711307704449, + -0.0015035917749628425, + -0.031024806201457977, + 0.049345601350069046, + -0.09757289290428162, + -0.034729454666376114, + 0.016764622181653976, + 0.0836501345038414, + -0.008747739717364311, + 0.05577708035707474, + -0.03193463012576103, + 0.018898552283644676, + -0.12770187854766846, + -0.013966260477900505, + 0.07150912284851074, + 0.052568286657333374, + 0.055430855602025986, + 0.11928389221429825, + 0.0885799378156662, + 0.0006602536886930466, + -0.0023235816042870283, + 0.040130190551280975, + 0.012828726321458817, + 0.06791602820158005, + 0.12255728989839554, + -0.04004744440317154, + -0.08622723817825317, + -0.02055954933166504, + -0.014797205105423927, + -0.07319701462984085, + 0.0009606725070625544, + 0.12111179530620575, + 0.05661188066005707, + 0.017327196896076202, + -0.019216133281588554, + 0.01251049991697073, + -0.014969543553888798, + 0.007986290380358696, + -0.00241265119984746, + -0.06043688580393791, + -0.03823980316519737, + 0.061826981604099274 + ], + "paragraph-bold||pilcrow": [ + -0.006632177624851465, + -0.013838605023920536, + -0.030490843579173088, + 0.0519832968711853, + -0.007441205903887749, + 0.08288311213254929, + 0.05299752578139305, + -0.06562218070030212, + 0.061779338866472244, + -0.004710393026471138, + -0.0077767157927155495, + 0.03282368555665016, + 0.04836466535925865, + -0.048353780061006546, + 0.005301143974065781, + 0.014962858520448208, + 0.03601480647921562, + 0.012828495353460312, + -0.03250876069068909, + -0.023051118478178978, + 0.024694131687283516, + 0.08143241703510284, + 0.11144191771745682, + 0.04382718354463577, + -0.05695200338959694, + -0.0020532498601824045, + 0.029888592660427094, + -0.005803841631859541, + -0.0024021270219236612, + -0.023722508922219276, + -0.03881577402353287, + -0.041795242577791214, + 0.047594327479600906, + 0.059211745858192444, + 0.04828650504350662, + 0.03508545830845833, + -0.008869544602930546, + -0.026307936757802963, + 0.06991146504878998, + 0.09357018768787384, + 0.034327831119298935, + -0.08857674896717072, + 0.02256668359041214, + -0.004910141695290804, + -0.0003193338343407959, + -0.03158766031265259, + -0.059996116906404495, + -0.04262251406908035, + 0.01128743402659893, + -0.032909370958805084, + -0.036318860948085785, + -0.04012493044137955, + -0.0366785004734993, + -0.04737567901611328, + 0.0205167718231678, + 0.058279965072870255, + -0.008135819807648659, + -0.039498113095760345, + 0.048838283866643906, + -0.012081109918653965, + -0.08169059455394745, + 0.024182535707950592, + -0.0020405675750225782, + 0.022328590974211693, + 0.015299372375011444, + -0.00428425520658493, + 0.0070970552042126656, + 0.018314816057682037, + -0.038010772317647934, + 0.10145789384841919, + 0.02526502124965191, + 0.014553386718034744, + -0.08344487845897675, + -0.029068052768707275, + -0.060134466737508774, + -0.02119932323694229, + -0.04649139940738678, + 0.002599354600533843, + -0.05231005325913429, + 0.023623956367373466, + -0.07538262754678726, + -0.053956806659698486, + -0.05679438263177872, + 0.09022494405508041, + 0.04505979269742966, + 0.03689952939748764, + -0.0711895152926445, + -0.08822931349277496, + -0.0474301315844059, + -0.02856435440480709, + 0.02414856106042862, + -0.007133121136575937, + -0.0035068716388195753, + 0.11323148012161255, + -0.10046840459108353, + 0.030199920758605003, + 0.008902282454073429, + -0.06955588608980179, + -0.12114561349153519, + 0.04633133113384247, + 0.05125138536095619, + 0.07953616231679916, + -0.010962587781250477, + -0.017928147688508034, + -0.044383689761161804, + 0.00072739232564345, + 0.0680496022105217, + -0.06253379583358765, + -0.07745301723480225, + 0.03169482946395874, + -0.029988747090101242, + -0.15720565617084503, + -0.031305160373449326, + -0.08117931336164474, + -0.04649145156145096, + -0.03902395814657211, + -0.022968504577875137, + -0.07944727689027786, + 0.0524502769112587, + 0.0007128699799068272, + 0.022230787202715874, + -0.03593548387289047, + -0.07017948478460312, + 0.02208057977259159, + -0.06057896837592125, + -0.005669149570167065, + 0.05061092972755432, + -2.1917588082760804e-33, + 0.055445559322834015, + 0.02715309150516987, + 0.00973230879753828, + 0.07525362074375153, + -0.029713405296206474, + 0.04394806921482086, + -0.08060986548662186, + -0.10865622758865356, + -0.08610675483942032, + -0.056702740490436554, + 0.07940201461315155, + 0.0043882932513952255, + -0.06755480170249939, + -0.0024008022155612707, + -0.010118023492395878, + -0.057579558342695236, + -0.061090756207704544, + 0.008910597302019596, + -0.03987300768494606, + 0.026368774473667145, + -0.041329484432935715, + 0.046639177948236465, + -0.0009224959649145603, + -0.07644321769475937, + -0.055094923824071884, + -0.028386615216732025, + 0.020450936630368233, + -0.04312511533498764, + -0.1316865086555481, + 0.05054348707199097, + 0.019291941076517105, + 0.022407758980989456, + 0.007373203989118338, + -0.03943505883216858, + -0.05777802690863609, + -0.013928848318755627, + -0.08823104947805405, + -0.00670384056866169, + 0.012907156720757484, + 0.13207809627056122, + -0.11422871798276901, + -0.007597601041197777, + 0.060489472001791, + -0.015809955075383186, + 0.058957185596227646, + 0.15112823247909546, + -0.02392040751874447, + 0.026903506368398666, + -0.01424812525510788, + -0.022296296432614326, + 0.08683937788009644, + 0.00470239482820034, + 0.060506902635097504, + -0.0031097575556486845, + 0.06434237957000732, + -0.06409043073654175, + -0.009300749748945236, + 0.05018532648682594, + 0.03491545841097832, + 0.0053287697955966, + 0.05487478896975517, + 0.01866043359041214, + 0.062275346368551254, + 0.054248858243227005, + -0.0154524315148592, + 0.040007274597883224, + -0.11867573857307434, + 0.09132466465234756, + 0.0808611735701561, + -0.026926888152956963, + 0.03704148530960083, + 0.03895025700330734, + 0.02795504219830036, + 0.053712084889411926, + 0.049927063286304474, + -0.009345927275717258, + -0.028000483289361, + 0.022633066400885582, + 0.04003245383501053, + -0.08782901614904404, + 0.020086631178855896, + -0.0510152243077755, + -0.010564606636762619, + 0.0657007247209549, + -0.0441768616437912, + 0.00021623184147756547, + 0.02967836707830429, + -0.0018378285458311439, + -0.04343241825699806, + 0.04497644677758217, + -0.012251270934939384, + -0.04496994614601135, + 0.0330008938908577, + -0.03314005956053734, + -0.021595356985926628, + -6.230463524113755e-34, + 0.03420202434062958, + 0.054160114377737045, + -0.05298282951116562, + -0.0008173388778232038, + 0.003520397935062647, + -0.0028128917329013348, + 0.02786361798644066, + 0.00018622995412442833, + 0.0009652042645029724, + 0.09909946471452713, + -0.029113417491316795, + -0.003372461535036564, + -0.06469252705574036, + -0.06488920748233795, + 0.036141615360975266, + 0.06515822559595108, + 0.0541251003742218, + 0.08160583674907684, + -0.07438942044973373, + 3.7285859434632584e-05, + -0.018491646274924278, + -0.12166211754083633, + -0.03520916774868965, + 0.08888835459947586, + -0.01000113133341074, + 0.029711928218603134, + 0.03397248685359955, + -0.004359456244856119, + -0.04360804334282875, + -0.05756140872836113, + -0.013324820436537266, + 0.009473610669374466, + -0.02375997044146061, + 0.04821150377392769, + -0.07844340801239014, + 0.037156302481889725, + 0.01524011604487896, + -0.08031540364027023, + 0.06539679318666458, + -0.01967903971672058, + 0.057848379015922546, + -0.009493174031376839, + 0.036477137356996536, + -0.03298255056142807, + 0.0066190073266625404, + 0.008219607174396515, + 0.0457986444234848, + -0.09166301041841507, + -0.01496303640305996, + 0.04923516511917114, + -0.07184665650129318, + 0.02133718691766262, + 0.0497589111328125, + 0.05883023142814636, + -0.030924711376428604, + -0.07254353910684586, + -0.00900248158723116, + 0.05798100680112839, + -0.05394503101706505, + -0.02337672933936119, + -0.03583909571170807, + 0.09347564727067947, + -0.01839381456375122, + 0.06186075508594513, + 0.09812343120574951, + -0.051185496151447296, + 0.08481664210557938, + -0.028428222984075546, + 0.025404859334230423, + 0.012656762264668941, + 0.03390413895249367, + -0.02471924014389515, + 0.008554786443710327, + 0.007329064887017012, + 0.022962918505072594, + 0.012013953179121017, + 0.019322823733091354, + 0.03625727444887161, + -0.11526080965995789, + 0.056789424270391464, + 0.009160838089883327, + -0.0751832127571106, + -0.04226158186793327, + -0.05289649963378906, + -0.007944363169372082, + -0.06807363778352737, + 0.028186924755573273, + 0.0014163503656163812, + -0.0048988875932991505, + 0.024114252999424934, + -0.0737537145614624, + -0.03304870054125786, + 0.02016376703977585, + -0.06465493142604828, + -0.029309779405593872, + -1.6368275623790396e-08, + -0.021523719653487206, + -0.02652774378657341, + -0.04794054850935936, + 0.0197193194180727, + -0.013627679087221622, + -0.058749452233314514, + -0.022212516516447067, + -0.026206282898783684, + -0.01691455952823162, + -0.00812930054962635, + 0.05696577578783035, + 0.023176027461886406, + -0.013458801433444023, + -0.030683940276503563, + 0.050103846937417984, + 0.08080282807350159, + -0.042822401970624924, + -0.02339550293982029, + 0.013390745967626572, + -0.005060630384832621, + -0.03854440897703171, + 0.06319912523031235, + -0.023044606670737267, + 0.007929925806820393, + -0.07957832515239716, + 0.025707662105560303, + -0.09947214275598526, + 0.047802094370126724, + 0.03637736290693283, + 0.07888270169496536, + 0.10121244937181473, + -0.011956977657973766, + 0.01598956435918808, + 0.035964485257864, + -0.09408525377511978, + -0.04217442497611046, + 0.056422825902700424, + -0.025530073791742325, + 0.0800691619515419, + 0.09998958557844162, + -0.10494786500930786, + -0.019096914678812027, + -0.03174475207924843, + 0.005705416202545166, + 0.014697721228003502, + 0.018088867887854576, + 0.031922195106744766, + -0.06558319926261902, + -0.058610666543245316, + -0.006901341024786234, + 0.04336582496762276, + -0.005125945433974266, + 0.08406360447406769, + 0.027467992156744003, + -0.02942824736237526, + -0.029967105016112328, + 0.0709134042263031, + 0.11396922171115875, + 0.006889382842928171, + 0.024213522672653198, + 0.06326267123222351, + 0.04003419354557991, + 0.07719611376523972, + 0.03853490576148033 + ], + "parallelogram-bold||shapes,bandcamp,logos": [ + 0.06887416541576385, + -0.02273460663855076, + -0.03580502048134804, + -0.05083286017179489, + -0.012018414214253426, + 0.005166877526789904, + 0.003703363472595811, + -0.04659437760710716, + 0.03455664590001106, + -0.002183174015954137, + -0.004814836196601391, + -0.012342371046543121, + 0.01996023766696453, + -0.06602617353200912, + 0.01799999177455902, + -0.01176083367317915, + -0.028642062097787857, + 0.030372360721230507, + 0.036038439720869064, + -0.004180807154625654, + 0.02967201918363571, + -0.020294565707445145, + 0.013739983551204205, + 0.044997770339250565, + -0.007771912030875683, + 0.08888233453035355, + 0.02773125469684601, + 0.01111348532140255, + 0.03765374422073364, + -0.06219203397631645, + 0.046058718115091324, + -0.0009004067978821695, + 0.03508014976978302, + -0.00962464977055788, + -0.003068874590098858, + -0.0413636714220047, + 0.009212996810674667, + 0.011175579391419888, + -0.029678860679268837, + 0.03229484707117081, + 0.03468940407037735, + 0.04516534134745598, + 0.03991631418466568, + 0.04675702005624771, + -0.06402651965618134, + 0.04768923670053482, + -0.04228265583515167, + -0.022282065823674202, + -0.00022621126845479012, + -0.029133150354027748, + -0.009066799655556679, + -0.17592595517635345, + -0.12202852219343185, + -0.04539911448955536, + -0.020112402737140656, + -0.012229260057210922, + -0.047568563371896744, + 0.007706239353865385, + 0.03617899864912033, + -0.010952217504382133, + 0.028498021885752678, + 0.016273757442831993, + 0.007618506904691458, + 0.05591648817062378, + 0.0683685764670372, + 0.027107780799269676, + -0.042564477771520615, + 0.0475589819252491, + 0.010919789783656597, + 0.052548304200172424, + 0.08148756623268127, + 0.02848956361413002, + 0.015143802389502525, + -0.11841639876365662, + -0.013641268014907837, + 0.011687427759170532, + 0.07386349141597748, + 0.03623748570680618, + 0.0074554611928761005, + -0.16140708327293396, + -0.0605149120092392, + 0.0025909016840159893, + 0.005485503934323788, + -0.007658079266548157, + 0.06788026541471481, + -8.989365596789867e-05, + -0.1048525720834732, + -0.027930444106459618, + -0.03794329985976219, + -0.033489640802145004, + -0.017939602956175804, + 0.002258830238133669, + -0.06384793668985367, + 0.034064654260873795, + -0.08231565356254578, + -0.012507854029536247, + -0.036149028688669205, + 0.016071271151304245, + -0.0319766104221344, + 0.06201234459877014, + 0.07331361621618271, + 0.015045363456010818, + 0.1260661482810974, + 0.020651595667004585, + 0.027646943926811218, + -0.019552472978830338, + 0.03219258412718773, + 0.0024188158567994833, + 0.005071863066405058, + 0.022761479020118713, + 0.004222193732857704, + 0.035384587943553925, + 0.0002202954638050869, + 0.0916329100728035, + -0.025703825056552887, + -0.08378259092569351, + -0.031615473330020905, + -0.08345992118120193, + 0.09995909035205841, + 0.061062224209308624, + -0.03013843297958374, + -0.03476383537054062, + 0.02879655733704567, + -0.019621387124061584, + -0.05755982547998428, + -0.02159125544130802, + -0.07594501972198486, + -6.906309409344221e-34, + -0.009206072427332401, + 0.06678116321563721, + -0.003546406514942646, + 0.026818212121725082, + 0.056737370789051056, + 0.01786365546286106, + -0.11042026430368423, + -0.0505049042403698, + -0.06389885395765305, + 0.053413912653923035, + -0.048703353852033615, + 0.008317145518958569, + 0.005093754269182682, + 0.1419834941625595, + -0.017066827043890953, + -0.13999836146831512, + -0.03319349139928818, + 0.027476491406559944, + -0.09455087035894394, + -0.03287041559815407, + -0.05553661659359932, + -0.010304226540029049, + -0.058023031800985336, + -0.010032589547336102, + -0.0122231375426054, + 0.002268847543746233, + 0.04842275008559227, + 0.0008627409697510302, + -0.03716130927205086, + 0.04970986023545265, + -0.014222640544176102, + -0.027774818241596222, + -0.00559508241713047, + -0.024321841076016426, + 9.087914804695174e-05, + -0.004468502476811409, + -0.007911238819360733, + -0.03176868334412575, + -0.017002226784825325, + 0.007963689044117928, + -0.09124841541051865, + -0.0517992302775383, + -0.002372186165302992, + 0.004130750894546509, + 0.009069831110537052, + 0.10261648148298264, + 0.02079111523926258, + -0.024447964504361153, + 0.047286324203014374, + -0.03705160319805145, + -0.01761089265346527, + -0.051129985600709915, + -0.011082334443926811, + -0.11281689256429672, + 0.11127501726150513, + -0.030328674241900444, + -0.035656582564115524, + 0.10553913563489914, + 0.06732656806707382, + 0.0541764497756958, + 0.015536509454250336, + 0.053799960762262344, + 0.007497069425880909, + 0.02875399775803089, + -0.05734877288341522, + 0.021614018827676773, + 0.008250332437455654, + 0.012972968630492687, + 0.04296201840043068, + -0.013212375342845917, + -0.015450199134647846, + -0.024080056697130203, + 0.05632929503917694, + 0.019307389855384827, + -0.012947197072207928, + 0.04219161346554756, + 0.017570801079273224, + 0.027060197666287422, + -0.020339475944638252, + 0.033371321856975555, + -0.08815659582614899, + -0.02762761153280735, + -0.08196231722831726, + -0.05569441244006157, + 0.0205548033118248, + 0.028001977130770683, + 0.07493975758552551, + -0.06015419960021973, + -0.07938862591981888, + 0.031299035996198654, + -0.0903092622756958, + 0.012617082335054874, + 0.011118290014564991, + 0.035433683544397354, + -0.09069570899009705, + 4.049477937891968e-34, + -0.03907592594623566, + 0.02939644642174244, + 0.06127957999706268, + -0.034969717264175415, + 0.03166446462273598, + 0.007058346178382635, + 0.038104526698589325, + 0.05540584400296211, + -0.053617049008607864, + 0.034837689250707626, + 0.06319046020507812, + 0.001373147126287222, + -0.0882987380027771, + -0.0718747079372406, + -0.03588933125138283, + -0.05282420292496681, + 0.09197244793176651, + 0.017969630658626556, + -0.05322530120611191, + -0.02715478651225567, + -0.019195379689335823, + -0.010255787521600723, + -0.061367928981781006, + 0.03379390388727188, + -0.06616684049367905, + 0.073582723736763, + -0.02869720757007599, + -0.015896039083600044, + -0.035352930426597595, + 0.04002640023827553, + -0.058846037834882736, + -0.0972646027803421, + -0.002209849189966917, + 0.006609464064240456, + 0.007846183143556118, + -0.00283905235119164, + -0.012095658108592033, + -0.07333800941705704, + -0.012890159152448177, + -0.06928712129592896, + -0.05338538438081741, + 0.06016804650425911, + 0.007045119535177946, + 0.003658444620668888, + -0.022476335987448692, + 0.030718540772795677, + -0.03261078521609306, + -0.04486796259880066, + -0.1105978935956955, + 0.049042556434869766, + -0.05330541729927063, + -0.021435802802443504, + 0.07744412869215012, + 0.039350420236587524, + -0.02503521740436554, + -0.08011871576309204, + -0.016350260004401207, + -0.00014755605661775917, + 0.0025949159171432257, + 0.047087810933589935, + -0.0071762558072805405, + -0.050494756549596786, + -0.043837614357471466, + -0.022156137973070145, + 0.10723935067653656, + 0.032408468425273895, + 0.04226309433579445, + -0.0206740815192461, + -0.031204622238874435, + 0.16473160684108734, + 0.013133352622389793, + 0.06637360155582428, + -0.03296941891312599, + 0.05418786779046059, + 0.015560612082481384, + -0.0015667126281186938, + 0.043148353695869446, + 0.0013385219499468803, + -0.023829281330108643, + 0.04147673025727272, + 0.014254794456064701, + -0.012593155726790428, + -0.01455674972385168, + 0.1155281811952591, + 0.02689219079911709, + 0.05170268937945366, + 0.009062564931809902, + 0.05717863515019417, + 0.04868211969733238, + 0.01943816989660263, + -0.00039636390283703804, + 0.07694734632968903, + 0.01063175406306982, + 0.07166875153779984, + 0.008708872832357883, + -1.6814132308695662e-08, + -0.04604983329772949, + 0.0041593085043132305, + 0.029029812663793564, + -0.057554133236408234, + 0.013929237611591816, + -0.04720274731516838, + -0.039512280374765396, + -0.10202523320913315, + -0.06622080504894257, + -0.005358339753001928, + 0.03312179073691368, + -0.07449992746114731, + -0.07083727419376373, + 0.024374354630708694, + -0.017372777685523033, + -0.01019997801631689, + -0.04782310500741005, + 0.07498543709516525, + 0.01424509845674038, + -0.045652177184820175, + 0.01802982948720455, + 0.08593495935201645, + 0.12572099268436432, + 0.047386083751916885, + 0.025694498792290688, + 0.03377249091863632, + -0.006084747612476349, + -0.0022223403211683035, + 0.0035727391950786114, + -0.010911840945482254, + -0.02293509803712368, + 0.0652519091963768, + 0.04964861273765564, + 0.045398104935884476, + -0.07851927727460861, + -0.03213208541274071, + 0.0011846512788906693, + 0.06874757260084152, + -0.026108644902706146, + 0.07483678311109543, + -0.0280741099268198, + -0.04935014620423317, + 0.1148650199174881, + -0.011114132590591908, + 0.08129730820655823, + 0.08045075088739395, + 0.10237562656402588, + 0.09763883799314499, + -0.0657183900475502, + -0.04335031285881996, + -0.05447903275489807, + 0.0005080873961560428, + 0.05972091108560562, + 0.10314805060625076, + -0.03476034104824066, + -0.10792417824268341, + -0.02060338482260704, + 0.08318447321653366, + 0.04849144443869591, + 0.02775334194302559, + 0.06751719117164612, + -0.043059688061475754, + -0.06875046342611313, + -0.03040497377514839 + ], + "park-bold||bench,outdoors": [ + -0.004875183571130037, + 0.002349155955016613, + 0.0424344539642334, + -0.02409827522933483, + 0.052011583000421524, + 0.019059844315052032, + 0.08745309710502625, + 0.0005561464349739254, + 0.003084132680669427, + 0.061395421624183655, + -0.04383574798703194, + -0.004501430783420801, + 0.016672931611537933, + -0.02892514504492283, + 0.08203771710395813, + 0.06321195513010025, + 0.08212913572788239, + 0.05441199243068695, + 0.04615806043148041, + 0.010195626877248287, + -0.05294422060251236, + 0.05464278161525726, + -0.0009907090570777655, + 0.02660597302019596, + -0.05195995047688484, + -0.0026328961830586195, + -0.07085421681404114, + 0.08125033229589462, + 0.01028510369360447, + -0.04281901568174362, + -0.037561867386102676, + -0.04508384317159653, + 0.07764485478401184, + -0.008027005940675735, + 0.019903916865587234, + 0.05661095678806305, + -0.020085342228412628, + -0.08111830800771713, + 0.019620254635810852, + 0.08267859369516373, + -0.03518255800008774, + -0.047444913536310196, + -0.028266875073313713, + 0.018276389688253403, + 0.02671194076538086, + 0.029680700972676277, + -0.03654870763421059, + -0.014225355349481106, + 0.09696118533611298, + -0.03115476854145527, + -0.013501114211976528, + -0.03697759658098221, + -0.006377981044352055, + -0.02551434002816677, + -0.0549788624048233, + 0.04098479449748993, + -0.0737478956580162, + 0.008822151459753513, + 0.06808821111917496, + 0.015088887885212898, + 0.1208992600440979, + -0.003771827556192875, + -0.021038319915533066, + 0.03365052491426468, + 0.028130274266004562, + -0.03681836277246475, + -0.06594593822956085, + 0.003123251022771001, + 0.08092475682497025, + -0.008846892975270748, + 0.052612073719501495, + 0.035770852118730545, + -0.06068773195147514, + -0.17544490098953247, + -0.08451220393180847, + 0.055982805788517, + 0.020364295691251755, + 0.030345194041728973, + -0.02294907718896866, + -0.15216925740242004, + -0.043744441121816635, + -0.07623587548732758, + 0.005118979141116142, + -0.027263401076197624, + 0.010153277777135372, + 0.01187867671251297, + -0.038453202694654465, + -0.007650912739336491, + 0.021887190639972687, + 0.024838287383317947, + -0.07040342688560486, + -0.030009005218744278, + -0.08660408109426498, + 0.04620063304901123, + -0.09761977195739746, + 0.05742540583014488, + 0.04817284271121025, + -0.060676366090774536, + -0.023500273004174232, + 0.13308191299438477, + 0.029992053285241127, + 0.08574829250574112, + 0.03216103836894035, + 0.0013239133404567838, + 0.011106514371931553, + -0.059256721287965775, + -0.06628116220235825, + 0.015655923634767532, + -0.011588690802454948, + 0.006488609127700329, + -0.001362490002065897, + -0.04923933371901512, + 0.05673542246222496, + 0.07316083461046219, + -0.10191991925239563, + -0.016543911769986153, + 0.017178639769554138, + -0.060426607728004456, + 0.0346282422542572, + 0.02796488255262375, + 0.008839949034154415, + -0.005680117756128311, + -0.0028387776110321283, + 0.05277306213974953, + -0.0709875077009201, + -0.002353115240111947, + 0.12403512746095657, + -4.238293738373714e-33, + 0.03295926749706268, + 0.0015788702294230461, + 0.029630405828356743, + 0.026875527575612068, + 0.045711614191532135, + 0.04485383629798889, + -0.033733025193214417, + -0.0007862494676373899, + -0.08387430012226105, + 0.05819910392165184, + 0.04452723264694214, + -0.02449781820178032, + 0.060722608119249344, + -0.05567527189850807, + 0.032581448554992676, + -0.007752506993710995, + -0.019066397100687027, + -0.055656902492046356, + -0.020629778504371643, + 0.02498566545546055, + -0.07829989492893219, + 0.025386659428477287, + -0.03211521357297897, + -0.014113406650722027, + -0.028968825936317444, + -0.008859578520059586, + 0.03254900872707367, + 0.0004590456373989582, + -0.02464948035776615, + 0.05766444280743599, + 0.017323754727840424, + -0.04480254277586937, + -0.012351969256997108, + 0.03125125542283058, + 0.059249889105558395, + -0.04422347620129585, + -0.011852305382490158, + -0.025892062112689018, + 0.008133222348988056, + -0.04553181678056717, + -0.05758025497198105, + -0.022010965272784233, + -0.052114371210336685, + -0.020283931866288185, + -0.0009506086935289204, + 0.09436029940843582, + 0.07178991287946701, + 0.004885517060756683, + -0.035536620765924454, + -0.039560653269290924, + -0.05671774595975876, + 0.07345280051231384, + -0.029597362503409386, + -0.0003774005454033613, + -0.004030975047498941, + -0.05679440498352051, + 0.03398687392473221, + 0.11263605207204819, + -0.01561877690255642, + 0.048513781279325485, + 0.08899304270744324, + 0.11171401292085648, + -0.012257250025868416, + -0.0562235452234745, + -0.04871232435107231, + -0.06522734463214874, + -0.0037265669088810682, + 0.0398864783346653, + 0.06563764065504074, + -0.004176161251962185, + 0.08665149658918381, + 0.02459191344678402, + 0.061172474175691605, + 0.06505324691534042, + 0.038529638200998306, + 0.002597873331978917, + -0.002296034712344408, + 0.06367698311805725, + 0.0018402761779725552, + -0.058262310922145844, + -0.06519068777561188, + 0.05242880433797836, + -0.08493999391794205, + 0.08762507885694504, + -0.041657377034425735, + -0.004163320176303387, + -0.001974533312022686, + -0.04581070318818092, + -0.07380176335573196, + 0.026138348504900932, + -0.09263914078474045, + -0.014561458490788937, + -0.07672975957393646, + -0.0402807854115963, + -0.06944446265697479, + 1.0203789631881593e-33, + 0.039421096444129944, + 0.027475155889987946, + -0.0014629362849518657, + -0.09568069130182266, + -0.010338651947677135, + 0.021043967455625534, + -0.03950629383325577, + 0.0014009501319378614, + -0.024547621607780457, + 0.04774140939116478, + -0.10942959785461426, + -0.0004587779112625867, + 0.02755719982087612, + -0.009616747498512268, + 0.024894360452890396, + 0.004670510534197092, + -0.02836475893855095, + 0.030834056437015533, + -0.09924997389316559, + 0.0744861587882042, + 0.03368360176682472, + 0.002098341239616275, + -0.006964956410229206, + 0.1365409642457962, + 0.006043816916644573, + 0.036248642951250076, + -0.03186669945716858, + 0.05976871773600578, + -0.12693174183368683, + 0.011979954317212105, + -0.058785948902368546, + 0.019561195746064186, + 0.0003365119337104261, + 0.00863554049283266, + -0.09602630883455276, + 0.012605233117938042, + -0.016273273155093193, + -0.05644509196281433, + -0.026595352217555046, + -0.012332739308476448, + 0.08882157504558563, + -0.0014132906217128038, + 0.03435783460736275, + 0.009543397463858128, + 0.035708244889974594, + 0.01913440227508545, + -0.07493320852518082, + 0.023856043815612793, + -0.06652519106864929, + 0.04565927013754845, + -0.008803295902907848, + -0.01199709065258503, + -0.09046836942434311, + 0.04419109970331192, + 0.03234091401100159, + -0.05811258777976036, + -0.03292076289653778, + 0.0003326669684611261, + -0.09427580237388611, + 0.03341590613126755, + 0.03348878398537636, + 0.03433005511760712, + -0.07141506671905518, + 0.11795737594366074, + 0.035399001091718674, + -0.02351771667599678, + 0.0022982116788625717, + -0.007486079819500446, + -0.04124391824007034, + -0.0037752126809209585, + -0.05760996788740158, + 0.0005477169179357588, + 0.01311721745878458, + 0.053140878677368164, + 0.0033051054924726486, + 0.030871013179421425, + 0.0907818004488945, + 0.02464866451919079, + 0.023941775783896446, + 0.04035389423370361, + -0.05535943806171417, + -0.019875220954418182, + 0.020186806097626686, + 0.0811268761754036, + 0.050777144730091095, + 0.07663527131080627, + -0.048496685922145844, + 0.028684353455901146, + -0.02398248389363289, + -0.029525263234972954, + 0.005722721107304096, + 0.03636208549141884, + -0.09703592956066132, + 0.03084702230989933, + -0.03568137809634209, + -1.4733899433849729e-08, + 0.021636590361595154, + 0.045996516942977905, + -0.02546693943440914, + -0.012367390096187592, + -0.00991449598222971, + -0.03729788959026337, + 0.002351481933146715, + -0.046852804720401764, + -0.07739943265914917, + -0.01623571664094925, + 0.02893945761024952, + -0.034470412880182266, + 0.029524551704525948, + 0.048712220042943954, + -0.03479380905628204, + 0.02389928512275219, + -0.06131085753440857, + 0.04087948054075241, + -0.06397353112697601, + -0.004391422029584646, + -0.04494438320398331, + -0.03520270437002182, + 0.056202154606580734, + -0.015127004124224186, + 0.06883217394351959, + -0.07698255777359009, + -0.039499059319496155, + -0.042622607201337814, + 0.07205680757761002, + 0.03232831507921219, + 0.067336805164814, + 0.07488247007131577, + 0.022906005382537842, + 0.02741660550236702, + 0.0015425869496539235, + -0.03142173960804939, + -0.038181573152542114, + 0.039001647382974625, + -0.038076430559158325, + 0.12126071006059647, + -0.13354910910129547, + -0.0013895592419430614, + -0.009324954822659492, + -0.026177480816841125, + 0.01530016865581274, + 0.058717578649520874, + 0.050225671380758286, + 0.04570431634783745, + -0.04702153429389, + -0.1145678237080574, + -0.05683918669819832, + -0.10300639271736145, + 0.03952760621905327, + 0.05508206784725189, + 0.014488756656646729, + -0.012447204440832138, + -0.07212930917739868, + 0.03287652134895325, + -0.06028632074594498, + 0.006161521654576063, + 0.041134387254714966, + -0.060707300901412964, + -0.09493625164031982, + 0.0038036457262933254 + ], + "password-bold||security,secured,authentication,authenticated,login,locked,encrypted,encryption": [ + -0.025004029273986816, + -0.030938684940338135, + -0.11408267915248871, + -0.034867167472839355, + 0.01040728110820055, + 0.01892988570034504, + 0.10941030830144882, + -0.045082613825798035, + 0.027555454522371292, + -0.028910702094435692, + 0.02741176076233387, + 0.02566448226571083, + 0.062102802097797394, + -0.002022762317210436, + -0.011565404944121838, + 0.054856378585100174, + -0.012396729551255703, + 0.011044188402593136, + -0.02745596319437027, + 0.00561799481511116, + 0.007258883211761713, + -0.024737773463129997, + 0.013218250125646591, + 0.042243581265211105, + 0.020481189712882042, + -0.01306198537349701, + 0.06251675635576248, + 0.016201121732592583, + -0.03322530537843704, + -0.06827184557914734, + -0.05760456249117851, + -0.0010365983471274376, + 0.0914301648736, + 0.05472325161099434, + -0.01533549278974533, + -0.03791673853993416, + 0.028821604326367378, + 0.02026168256998062, + -0.03317344933748245, + -0.0364685133099556, + -0.0784291923046112, + -0.10700833052396774, + -0.04054964706301689, + 0.0841330885887146, + -0.04142243415117264, + 0.014877425506711006, + -0.03972749784588814, + 0.012446322478353977, + -0.04795188084244728, + -0.011928065679967403, + 0.04822902753949165, + -0.030999384820461273, + -0.07141619175672531, + 0.08218295872211456, + -0.06459373980760574, + -0.013162556104362011, + -0.06044520065188408, + 0.002618930069729686, + 0.05675696209073067, + -0.014782488346099854, + 0.006291614379733801, + 0.05315344035625458, + 0.007061625365167856, + 0.12428021430969238, + 0.0010244006989523768, + 0.008940799161791801, + -0.03675827383995056, + -0.022365665063261986, + 0.012733322568237782, + -0.019388185814023018, + -0.05303706228733063, + -0.03939228132367134, + -0.06837829202413559, + -0.01751956343650818, + -0.005689543206244707, + 0.0092783747240901, + 0.00762672396376729, + -0.06801652163267136, + 0.01592138223350048, + -0.06686028838157654, + -0.04167832434177399, + -0.03861647844314575, + -0.03183542191982269, + 0.05716332793235779, + 0.024246321991086006, + 0.08411254733800888, + -0.0717257484793663, + -0.05952274054288864, + 0.0047227442264556885, + -0.036127928644418716, + -0.0009717415669001639, + 0.0029058880172669888, + 0.03000425547361374, + -0.034001611173152924, + -0.05889781937003136, + 0.008175645023584366, + 0.03379780799150467, + -0.016300518065690994, + -0.09547007083892822, + 0.07087615877389908, + -0.006563300732523203, + 0.04201757162809372, + 0.03488519415259361, + -0.048149868845939636, + 0.04255915805697441, + -0.016791075468063354, + 0.058100003749132156, + -0.02199099212884903, + 0.00502735935151577, + 0.05370636656880379, + -0.0188558679074049, + -0.054660797119140625, + -0.03381724655628204, + -0.03652896359562874, + 0.021963713690638542, + 0.04307284578680992, + -0.09392988681793213, + 0.02025376819074154, + 0.10386040061712265, + 0.10559392720460892, + 0.014294502325356007, + 0.031173717230558395, + 0.020241348072886467, + -0.06791139394044876, + -0.030643658712506294, + -0.05246869847178459, + -0.0001375531282974407, + -4.553626801973012e-34, + 0.022825462743639946, + 0.04029865935444832, + -0.06418513506650925, + 0.08748400956392288, + 0.010479132644832134, + 0.03158664330840111, + -0.018325669690966606, + -0.10345561802387238, + -0.09231492131948471, + 0.07947824150323868, + 0.033095259219408035, + 0.07659383118152618, + 0.015379534102976322, + 0.06814214587211609, + 0.11829317361116409, + 0.009424000047147274, + -0.014832436107099056, + 0.0012694508768618107, + 0.014076205901801586, + 0.02338862046599388, + 0.004022043198347092, + 0.11354180425405502, + 0.03533458709716797, + 0.028758740052580833, + 0.02572784572839737, + -0.10966554284095764, + 0.05327159911394119, + -0.014915479347109795, + -0.017546189948916435, + 0.030415266752243042, + 0.0034083775244653225, + -0.0197408776730299, + 0.0022712107747793198, + -0.018662121146917343, + 0.009880979545414448, + 0.021878471598029137, + 0.02860688604414463, + -0.07410760223865509, + 0.030670830979943275, + -0.06232248619198799, + -0.08681388944387436, + -0.07444889098405838, + -0.02844630368053913, + -0.03960578516125679, + 0.05277669057250023, + 0.04560335725545883, + -0.04946330189704895, + 0.02409401908516884, + 0.03653799742460251, + 0.05498678609728813, + -0.07828213274478912, + -0.0028236587531864643, + -0.041798289865255356, + -0.05477723851799965, + -0.05494263768196106, + -0.049799807369709015, + -0.0030272584408521652, + 0.08574161678552628, + -0.05107889324426651, + 0.012180638499557972, + -0.026734083890914917, + 0.02894229255616665, + 0.010525006800889969, + -0.12267299741506577, + -0.029377097263932228, + -0.03192301467061043, + -0.011819382198154926, + -0.016759075224399567, + 0.05161241441965103, + 0.03250629082322121, + -0.07555696368217468, + 0.05032650753855705, + 0.06198684498667717, + 0.07025592029094696, + -0.04421534016728401, + 0.013327701948583126, + 0.05941341444849968, + 0.049773748964071274, + 0.054511383175849915, + 0.024089772254228592, + -0.06747087836265564, + 0.03223494067788124, + -0.08667875081300735, + 0.16495804488658905, + -0.06419170647859573, + 0.07399601489305496, + -0.019378509372472763, + -0.06000124663114548, + -0.08665325492620468, + 0.028246676549315453, + 0.0069996085949242115, + 0.01470319926738739, + 0.07309053093194962, + -0.04111362621188164, + -0.10007481276988983, + -2.649599715254953e-33, + -0.028211938217282295, + -0.01853642426431179, + -0.017400607466697693, + 0.038442377001047134, + 0.011489491909742355, + 0.05598950758576393, + -0.033254921436309814, + 0.02681702934205532, + -0.029458556324243546, + -0.03334547579288483, + 0.07311996072530746, + 0.019495993852615356, + -0.009503698907792568, + -0.05937330424785614, + 0.02568899840116501, + -0.005579894408583641, + -0.016569945961236954, + 0.04314477741718292, + -0.01344128604978323, + 0.043483853340148926, + -0.024031823500990868, + 0.018809299916028976, + -0.08938483893871307, + 0.07363077998161316, + 0.06822358071804047, + 0.021245412528514862, + -0.02819518744945526, + 0.021325169131159782, + -0.013279718346893787, + 0.03439738601446152, + 0.010786380618810654, + 0.043571989983320236, + 0.019299866631627083, + 0.061813823878765106, + -0.08189468830823898, + -0.05154219642281532, + 0.11943623423576355, + -0.026863448321819305, + -0.04134213179349899, + -0.053754787892103195, + 0.04074572026729584, + 0.01705675572156906, + 0.02695731818675995, + 0.008824792690575123, + -0.04385427013039589, + -0.058232445269823074, + -0.04335485398769379, + -0.08589881658554077, + -0.02216983772814274, + 0.05313693359494209, + 0.01941698044538498, + -0.0752207562327385, + 0.013763987459242344, + 0.0004930865252390504, + -0.03581448271870613, + -0.020460916683077812, + -0.004185416270047426, + 0.008954941295087337, + 0.0334690660238266, + 0.018381090834736824, + 0.02879723720252514, + 0.05220464617013931, + 0.03973974287509918, + 0.1032579094171524, + -0.028369678184390068, + -0.05587887763977051, + -0.0052372245118021965, + 0.047563932836055756, + -0.12315094470977783, + 0.00855022482573986, + 0.0662456676363945, + -0.05885568633675575, + 0.049547068774700165, + 0.03287258371710777, + 0.05721651017665863, + -0.12222655117511749, + 0.0050048246048390865, + -0.06656357645988464, + -0.07662933319807053, + 0.03674186021089554, + 0.03856472671031952, + 0.010163947939872742, + -0.11400539427995682, + 0.049412600696086884, + 0.0032956476788967848, + -0.0560266487300396, + 0.024929724633693695, + -0.0036261247005313635, + 0.03644952550530434, + -0.021657651290297508, + -0.04102545231580734, + 0.04679340496659279, + -0.07396562397480011, + 0.014103690162301064, + 0.0038675591349601746, + -2.3478117228137307e-08, + 0.030904248356819153, + -0.0695115327835083, + -0.0025255701038986444, + -0.05560711771249771, + 0.08187112957239151, + 0.013186057098209858, + -0.06693541258573532, + -0.06276894360780716, + -0.055247027426958084, + -0.05468272045254707, + 0.08161379396915436, + 0.028405796736478806, + -0.10628162324428558, + -0.06581439077854156, + -0.018714718520641327, + 0.035627566277980804, + -0.09385154396295547, + -0.003895554458722472, + 0.009196682833135128, + -0.06993170827627182, + -0.014933474361896515, + 0.04220123961567879, + -0.027127260342240334, + -0.041478272527456284, + 0.06113797426223755, + 0.08992982655763626, + -0.03890720754861832, + 0.04569961503148079, + 0.05770581215620041, + 0.06906753033399582, + 0.03142693266272545, + 0.03093673847615719, + 0.04613041132688522, + -0.07852423936128616, + -0.14284838736057281, + 0.05325385555624962, + -0.03575350344181061, + -0.039765290915966034, + -0.009711059741675854, + 0.05227342247962952, + 0.014020849950611591, + -0.028670642524957657, + 0.018392156809568405, + -0.02095073089003563, + -0.04711141437292099, + -0.019452892243862152, + 0.048845551908016205, + 0.02842823788523674, + -0.007760657928884029, + -0.07913083583116531, + -0.053674180060625076, + -0.028164884075522423, + 0.032457295805215836, + 0.11091887205839157, + -0.04845891892910004, + 0.033519018441438675, + 0.03347592428326607, + 0.048051729798316956, + 0.07165613025426865, + -0.016647282987833023, + 0.12337543070316315, + 0.0061478205025196075, + 0.050913020968437195, + -0.018272211775183678 + ], + "path-bold||transit,travel,trail,gps,navigation,route,destination,vector": [ + 0.05905895680189133, + -0.08208771795034409, + -0.027954766526818275, + 0.04095020517706871, + 0.03316033259034157, + -0.024921465665102005, + 0.02981918677687645, + -0.0633440613746643, + -0.049125656485557556, + -0.026358263567090034, + 0.013287754729390144, + 0.04511681944131851, + 0.03372567519545555, + 0.003983299247920513, + -0.07038913667201996, + 0.0665561631321907, + -0.005419624969363213, + 0.05748242512345314, + 0.023828823119401932, + -0.008721183985471725, + 0.039134714752435684, + 0.03367891535162926, + -0.010152922943234444, + 0.04397201910614967, + 0.013385318219661713, + 0.007266714703291655, + 0.10827409476041794, + -0.038124751299619675, + 0.006317978724837303, + -0.06064712628722191, + -0.02582377754151821, + -0.01721828058362007, + -0.0063659814186394215, + 0.05706018954515457, + -0.03814416006207466, + 0.012617933563888073, + 0.012779711745679379, + -0.03832229599356651, + 0.016569549217820168, + 0.022407080978155136, + 0.048792678862810135, + -0.04045421630144119, + 0.007659892085939646, + 0.045440737158060074, + 0.030320124700665474, + -0.041158758103847504, + -0.017416782677173615, + -0.02514898031949997, + 0.022412970662117004, + 0.018450194969773293, + -0.03295254707336426, + -0.10751940310001373, + -0.13240283727645874, + 0.031194167211651802, + -0.021332524716854095, + 0.05656583607196808, + -0.09703800827264786, + 0.002327852649614215, + 0.03900815173983574, + -0.01785081997513771, + 0.010996810160577297, + -0.013050350360572338, + 0.01162055041640997, + 0.059654951095581055, + 0.05069701373577118, + -0.010791284032166004, + -0.06191984564065933, + 0.0373726487159729, + -0.013363041914999485, + 0.01908242702484131, + 0.023859994485974312, + 0.0035230827052146196, + -0.034888140857219696, + -0.001296577975153923, + -0.029224304482340813, + -0.006152356043457985, + 0.0418725311756134, + 0.06194610521197319, + -0.07360938936471939, + -0.11261121928691864, + -0.05528213083744049, + -0.022719090804457664, + -0.01623431034386158, + 0.06376844644546509, + 0.09704042226076126, + 0.06451041996479034, + -0.050621725618839264, + -0.08556526154279709, + -0.003901919350028038, + 0.005140355322510004, + 0.02841818332672119, + -0.03820141777396202, + 0.02365654893219471, + -0.02263001725077629, + -0.10013334453105927, + 0.04307536408305168, + 0.0035800214391201735, + -0.013905704952776432, + 0.02977866493165493, + 0.02803371287882328, + 0.029835741966962814, + 0.013068938627839088, + 0.05130506679415703, + 0.08937712013721466, + -0.05818476900458336, + 0.016034642234444618, + 0.007649206556379795, + -0.023384468629956245, + 0.012072079814970493, + 0.051389649510383606, + -0.02447929047048092, + -0.058080341666936874, + -0.009970247745513916, + -0.07517065107822418, + -0.06818946450948715, + -0.05298680439591408, + -0.11212164163589478, + 0.027651730924844742, + 0.10973573476076126, + 0.09779667854309082, + -0.06728475540876389, + -0.04681915044784546, + 0.07194195687770844, + -0.01604294404387474, + -0.04817785695195198, + -0.053192488849163055, + 0.06857843697071075, + -2.5566434587018497e-33, + -0.01680701971054077, + 0.0411665253341198, + 0.022800393402576447, + 0.07596856355667114, + 0.0029366370290517807, + 0.0042978329584002495, + -0.0920894667506218, + -0.05275711044669151, + -0.06123114004731178, + 0.04191608354449272, + 0.014187281019985676, + 0.054356109350919724, + -0.02033766731619835, + 0.08290810137987137, + 0.10620694607496262, + -0.026712559163570404, + 0.04422936215996742, + -0.055430032312870026, + -0.06580054759979248, + -0.010276834480464458, + -0.02116420306265354, + 0.021567827090620995, + -0.020637936890125275, + -0.06753481179475784, + 0.026372628286480904, + -0.04301973432302475, + 0.012684930115938187, + -0.013387545943260193, + -0.04733364284038544, + 0.05085321515798569, + 0.003720012027770281, + 0.01873978227376938, + 0.02104903943836689, + 0.05647871643304825, + -0.05167827755212784, + 0.04020592197775841, + -0.05000283569097519, + -0.03184632584452629, + -0.027628453448414803, + 0.02266697771847248, + -0.07540186494588852, + -0.08177689462900162, + -0.03948903828859329, + 0.01545962505042553, + -0.02582339383661747, + 0.09151220321655273, + -0.002759756287559867, + -0.031106792390346527, + 0.004803550895303488, + 0.10882408916950226, + -0.07164682447910309, + -0.032840363681316376, + 0.013451694510877132, + -0.08825347572565079, + -0.012910314835608006, + -0.026143401861190796, + -0.024813931435346603, + 0.08752352744340897, + -0.00903914961963892, + 0.012071392498910427, + 0.022903097793459892, + 0.03544431924819946, + 0.08031398802995682, + -0.028377603739500046, + 0.02539338357746601, + 0.022885095328092575, + -0.07140959799289703, + 0.006526139564812183, + 0.08927157521247864, + 0.04572092741727829, + -0.04145753011107445, + 0.07164042443037033, + 0.043142952024936676, + 0.04544117674231529, + 0.05302109196782112, + -0.014180873520672321, + -0.07864692062139511, + -0.06240829452872276, + 0.004204637371003628, + -0.05301149934530258, + -0.20562735199928284, + -0.017717260867357254, + -0.07535899430513382, + 0.11200787127017975, + 0.06484782695770264, + 0.008072122931480408, + -0.01622803695499897, + -0.10855952650308609, + 0.0021335831843316555, + -0.0041481247171759605, + -0.1024409607052803, + 0.04263293370604515, + -0.0362367108464241, + 0.0037079041358083487, + -0.07156530022621155, + -2.4365920114445445e-34, + 0.03619067743420601, + 0.05384408310055733, + 0.028618786484003067, + -0.0017307549715042114, + -0.07682245224714279, + -0.019428424537181854, + 0.02641397714614868, + 0.001797465025447309, + 0.05334142595529556, + 0.12052737176418304, + -0.046134527772665024, + -0.000428696715971455, + 0.006119382102042437, + -0.05866139754652977, + 0.045995697379112244, + -0.0006962180486880243, + 0.06168467923998833, + 0.01183210127055645, + -0.07497724145650864, + 0.012676875106990337, + -0.11861350387334824, + 0.01641106605529785, + -0.07613304257392883, + -0.014210157096385956, + 0.04293675348162651, + 0.03319781646132469, + 0.09801439940929413, + -0.005947787780314684, + -0.06259381026029587, + 0.00014317686145659536, + -0.02759711816906929, + -0.007884659804403782, + 0.07387769967317581, + 0.03749778866767883, + -0.08564376831054688, + 0.08830556273460388, + 0.04193311184644699, + -0.001698269392363727, + 0.03218173608183861, + -0.027000462636351585, + 0.02659441903233528, + 0.012719701044261456, + 0.09087492525577545, + 0.01528969220817089, + -0.03946585953235626, + 0.024792933836579323, + -0.013357973657548428, + 0.033552270382642746, + -0.049207981675863266, + 0.020386427640914917, + 0.08699095994234085, + 0.023213939741253853, + -0.042962513864040375, + 0.09421007335186005, + 0.031333811581134796, + 0.028679927811026573, + -0.023618504405021667, + -0.020581580698490143, + 0.0027811075560748577, + -0.03196760639548302, + 0.015273782424628735, + 0.02586863376200199, + -0.049261823296546936, + 0.028490878641605377, + 0.040412791073322296, + -0.1053634062409401, + -0.0031545194797217846, + -0.022157244384288788, + -0.03415481373667717, + -0.018159441649913788, + 0.02094326913356781, + 0.023391230031847954, + -0.02095549739897251, + 0.01500086858868599, + 0.0195048525929451, + -0.05646251514554024, + 0.07895118743181229, + 0.052613455802202225, + -0.02941667102277279, + -0.0182795450091362, + -0.017818227410316467, + -0.012015589512884617, + -0.03093969076871872, + 0.05029388517141342, + -0.03043350763618946, + 0.0511564277112484, + -0.05834292620420456, + -0.027879158034920692, + 0.028292328119277954, + 0.03011813387274742, + 0.0067876786924898624, + 0.10317566990852356, + -0.06191012263298035, + -0.008696592412889004, + -0.1745530664920807, + -2.053461223283648e-08, + -0.03386338800191879, + -0.02388918399810791, + -0.04489003121852875, + -0.035702843219041824, + 0.03241147845983505, + -0.012457727454602718, + 0.023396478965878487, + 0.011582581326365471, + -0.07106468081474304, + 0.07218116521835327, + 0.04255756735801697, + 0.04756676405668259, + -0.11557798087596893, + 0.012608175165951252, + 0.03546502813696861, + 0.0034321113489568233, + -0.03649862855672836, + 0.03604966402053833, + -0.049584660679101944, + -0.006781755480915308, + -0.032215144485235214, + 0.03644304350018501, + -0.0018749017035588622, + 0.04928930848836899, + 0.057251330465078354, + -0.02674713172018528, + -0.058980099856853485, + -0.008694242686033249, + 0.11870621144771576, + 0.010042374022305012, + 0.035606905817985535, + 0.06588669866323471, + -0.014858914539217949, + -0.011765281669795513, + -0.09759124368429184, + 0.0003608516708482057, + 0.0034245308488607407, + 0.0363604873418808, + 0.031213922426104546, + 0.1306331902742386, + 0.010673226788640022, + 0.011956092901527882, + 0.025081483647227287, + 0.008773770183324814, + 0.0025921238120645285, + -0.005169449374079704, + 0.01913171447813511, + -0.03697414696216583, + -0.07347699999809265, + -0.10371607542037964, + -0.12413623183965683, + -0.011659322306513786, + -0.025354307144880295, + 0.08570419996976852, + -0.0017154308734461665, + -0.058340903371572495, + 0.0075663914903998375, + -0.03482178598642349, + -0.030859369784593582, + -0.008798009715974331, + 0.07685943692922592, + 0.039294980466365814, + 0.003881984855979681, + -0.05890081450343132 + ], + "patreon-logo-bold||*updated*,crowdfunding,logos": [ + -0.012270836159586906, + 0.016596058383584023, + -0.016400450840592384, + -0.022571029141545296, + 0.0663720890879631, + -0.04096139967441559, + 0.009803155437111855, + -0.06437709927558899, + 0.07146330922842026, + -0.04670717939734459, + 0.018997231498360634, + 0.06906130164861679, + -0.02983919531106949, + -0.09856146574020386, + -0.0018762295367196202, + -0.031339336186647415, + -0.01726708561182022, + 0.02185932546854019, + 0.028400851413607597, + -0.008189704269170761, + -0.006616239435970783, + -0.028415637090802193, + -0.0024782586842775345, + 0.024596765637397766, + -0.008313666097819805, + 0.04443759098649025, + 0.01580307073891163, + 0.0008295695297420025, + 0.02931039407849312, + -0.0683632344007492, + 0.027563197538256645, + 0.03478644788265228, + 0.0795646458864212, + -0.05602094903588295, + 0.07225467264652252, + 0.04053366556763649, + 0.016139067709445953, + -0.007750590331852436, + 0.0659409686923027, + 0.08076132088899612, + 0.03843910992145538, + -0.12222786992788315, + 0.026224348694086075, + 0.0001881134376162663, + -0.05164261907339096, + 0.0067627448588609695, + -0.04658894240856171, + 0.0066191041842103004, + 0.03848135098814964, + 0.020740658044815063, + 0.04987393319606781, + -0.1475706845521927, + -0.054629847407341, + -0.0943153128027916, + 0.010239153169095516, + -0.06465413421392441, + 0.028154592961072922, + -0.0581909604370594, + -0.00518364692106843, + -0.07841023057699203, + 0.08225513249635696, + 0.04063107818365097, + 0.005719288252294064, + 0.07277421653270721, + 0.06399767845869064, + 0.016212578862905502, + 0.012969808652997017, + -0.009526561014354229, + -0.07101316004991531, + 0.0013908084947615862, + 0.05155254900455475, + 0.0057533010840415955, + -0.010490277782082558, + -0.05041971802711487, + -0.07024629414081573, + 0.015192784368991852, + 0.05694394186139107, + 0.0061160484328866005, + 0.014010796323418617, + -0.11105408519506454, + 0.03555075079202652, + -0.10531295090913773, + -0.02260730229318142, + -0.04920971021056175, + 0.003739884588867426, + 0.09586171060800552, + -0.062465373426675797, + -0.0015960746677592397, + 0.015879275277256966, + 0.021851126104593277, + -0.10304093360900879, + 0.050985027104616165, + 0.06202090159058571, + -0.043179333209991455, + -0.14019009470939636, + 0.047672100365161896, + -0.03175998851656914, + -0.07212740927934647, + -0.0860724151134491, + 0.1192246600985527, + -0.04869438707828522, + 0.11287807673215866, + 0.04766864329576492, + -0.05225357413291931, + 0.0560474693775177, + 0.06067626178264618, + -0.0716077908873558, + 0.07438492774963379, + 0.07777369022369385, + 0.11565931886434555, + -0.003415239043533802, + -0.0067649781703948975, + -0.051578257232904434, + 0.011071930639445782, + -0.1070742979645729, + -0.06566782295703888, + -0.02858106419444084, + -0.050727758556604385, + 0.08511143177747726, + -0.003456731792539358, + 0.05942567065358162, + 0.002891228534281254, + -0.031313907355070114, + -0.07317163050174713, + 0.012308856472373009, + -0.06707442551851273, + -0.021480277180671692, + -2.8017002353857105e-33, + 0.0053399708122015, + 0.07958335429430008, + 0.019936466589570045, + 0.04458364471793175, + 0.01881212368607521, + 0.01269083097577095, + 0.010758339427411556, + -0.07149583846330643, + -0.09448199719190598, + 0.022792700678110123, + 0.07232165336608887, + 0.030004844069480896, + -0.007517559919506311, + 0.09075243026018143, + -0.04854058474302292, + -0.08135917782783508, + -0.02333788201212883, + -0.02630358561873436, + -0.05762584134936333, + -0.06416931003332138, + -0.027642685920000076, + 0.038115955889225006, + -0.05084465071558952, + 0.01436765119433403, + -0.02889917604625225, + -0.09743392467498779, + 0.020061248913407326, + 0.049273308366537094, + -0.01262560486793518, + -0.0063891783356666565, + 0.06920341402292252, + 0.04347877576947212, + 0.03866025060415268, + -0.004756869748234749, + 0.0055806925520300865, + -0.06480389833450317, + -0.024430319666862488, + -0.09709306806325912, + 0.017868055030703545, + 0.01230471208691597, + -0.026630083099007607, + -0.054528627544641495, + -0.03416091576218605, + 0.031181510537862778, + 0.0009851715294644237, + 0.12939903140068054, + 0.03533090278506279, + -0.0748804360628128, + 0.09581748396158218, + -0.046272534877061844, + -0.000873863697052002, + 0.00369128561578691, + -0.09168189018964767, + -0.05464137718081474, + -0.026356235146522522, + -0.13489378988742828, + -0.01784662902355194, + 0.04294965788722038, + -0.006356071215122938, + -0.09763175249099731, + 0.06508603692054749, + -0.005349650047719479, + 0.034024786204099655, + 0.003179212799295783, + -0.09156878292560577, + 0.06417332589626312, + -0.03453105315566063, + 0.028611155226826668, + 0.048249416053295135, + 0.05441365763545036, + 0.040641725063323975, + 0.04800489544868469, + 0.07979696989059448, + 0.009603981859982014, + -0.02347751334309578, + 0.012760513462126255, + -0.021855205297470093, + 0.02133996970951557, + 0.04177550971508026, + 0.046244118362665176, + 0.02884524129331112, + -0.057044535875320435, + -0.051618967205286026, + 0.07646538317203522, + 0.058724936097860336, + 0.0769687369465828, + 0.029029984027147293, + -0.03831906244158745, + -0.01309962198138237, + -0.005580334458500147, + -0.05113265663385391, + 0.014727011322975159, + -0.03232567757368088, + -0.04807092994451523, + -0.0859263464808464, + -5.8544063508963965e-34, + 0.0020022608805447817, + -0.0066390130668878555, + 0.07978034764528275, + -0.007481222506612539, + -0.02356080524623394, + -0.010687248781323433, + -0.02726917900145054, + 0.06908431649208069, + 0.015336294658482075, + 0.022604424506425858, + 0.04406062141060829, + 0.015670588240027428, + -0.04415066912770271, + -0.060439225286245346, + -0.05270826816558838, + 0.02551928535103798, + 0.03473659232258797, + 0.0014280092436820269, + -0.061927128583192825, + -0.00418576505035162, + -0.002901902887970209, + 0.007224464789032936, + -0.027326714247465134, + 0.1148073673248291, + -0.04256663843989372, + -0.010705740191042423, + -0.0042614080011844635, + -0.013902322389185429, + -0.02698192186653614, + 0.0029965266585350037, + -0.04282398894429207, + -0.05600984767079353, + 0.022285833954811096, + 0.019310923293232918, + 0.019589468836784363, + 0.05648503825068474, + 0.045715052634477615, + -0.03647772967815399, + -0.012029644101858139, + -0.0013852276606485248, + -0.017563840374350548, + -0.0022242809645831585, + -0.006412031594663858, + -0.026858313009142876, + -0.019751690328121185, + -0.04348628595471382, + -0.08945395797491074, + -0.11159511655569077, + 0.003882570192217827, + 0.06406822055578232, + -0.027001220732927322, + -0.0003299800446256995, + 0.005179927218705416, + 0.0737314447760582, + -0.052521027624607086, + 0.05273154377937317, + 0.007029288914054632, + 0.05839795991778374, + 0.00947838556021452, + 0.03700264170765877, + -0.02256098948419094, + 0.038562923669815063, + -0.012107357382774353, + 0.03935214877128601, + 0.04710311070084572, + 0.0030868255998939276, + 0.0026665504556149244, + -0.03695370629429817, + -0.00041167231393046677, + 0.07562343776226044, + 0.012666191905736923, + 0.027398113161325455, + -0.01956631988286972, + 0.02262902446091175, + -0.04034461826086044, + -0.04531241953372955, + 0.08165904134511948, + -0.0015797062078490853, + -0.021514948457479477, + 0.054605547338724136, + -0.004658753052353859, + -0.018359366804361343, + -0.047332365065813065, + 0.09900128096342087, + 0.012240569107234478, + 0.017060335725545883, + 0.023808298632502556, + 0.0058000399731099606, + 0.0014439350925385952, + -0.031040053814649582, + -0.07619482278823853, + 0.07145316898822784, + 0.08104398846626282, + 0.011138955131173134, + -0.011834029108285904, + -2.183115377363265e-08, + -0.027858275920152664, + 0.002908400259912014, + -0.011460186913609505, + -0.020695574581623077, + 0.11025553941726685, + -0.033308740705251694, + 0.009514689445495605, + -0.1388581097126007, + -0.041100095957517624, + -0.05059126019477844, + -0.03318404406309128, + 0.01096433773636818, + -0.059897761791944504, + -0.0072600217536091805, + 0.019100287929177284, + -0.010485012084245682, + -0.10879528522491455, + 0.07945264130830765, + 0.0001667134347371757, + -0.04109363630414009, + -0.05686327442526817, + 0.07213860005140305, + 0.0030979085713624954, + -0.07091645151376724, + -0.0014154105447232723, + 0.043964773416519165, + -0.009495526552200317, + 0.013139201328158379, + -0.01640297658741474, + 0.04594273865222931, + 0.029955992475152016, + 0.05521060526371002, + -0.0027858088724315166, + -0.045108046382665634, + -0.06865386664867401, + -0.008203250356018543, + -0.024502461776137352, + 0.009646762162446976, + -0.030740052461624146, + 0.08203478902578354, + 0.01322225108742714, + 0.020117608830332756, + -0.02791331522166729, + 0.018209973350167274, + -0.021609213203191757, + 0.013965061865746975, + 0.014502454549074173, + 0.02230934053659439, + -0.061204466968774796, + -0.11672545969486237, + 0.05511101707816124, + -0.0028628953732550144, + -0.011084398254752159, + 0.03701372817158699, + -0.023534636944532394, + -0.06643862277269363, + -0.008651909418404102, + 0.10273297876119614, + 0.07262193411588669, + 0.02593882940709591, + 0.14470277726650238, + -0.06163683161139488, + 0.05835137516260147, + -0.03246691823005676 + ], + "pause-bold||music,audio,resume,start,stop": [ + 0.031685102730989456, + -0.06714306771755219, + -0.02167132869362831, + -0.01788133569061756, + 0.05768630653619766, + 0.0888729840517044, + 0.02325517311692238, + -0.10672573000192642, + -0.006678114645183086, + -0.039956655353307724, + -0.007560594938695431, + 0.03221852332353592, + -0.02116352692246437, + -0.08856411278247833, + -0.05541355907917023, + 0.04694877937436104, + -0.010566865094006062, + 0.06658200174570084, + 0.02641618438065052, + -0.012900346890091896, + 0.019388772547245026, + 0.07714319229125977, + 0.03960701823234558, + 0.04836033657193184, + -0.022849341854453087, + 0.07084491103887558, + 0.01233703549951315, + 0.0035820987541228533, + 0.06027979403734207, + -0.0738825872540474, + 0.028981376439332962, + -0.03085598535835743, + 0.1588272899389267, + -0.0002748406259343028, + -0.01979839988052845, + 0.001778075355105102, + -0.08096729964017868, + 0.011938218958675861, + -0.06035759299993515, + 0.03343872353434563, + 0.011654197238385677, + -0.06338585168123245, + 0.009446103125810623, + -0.07907216995954514, + -0.08394043147563934, + -0.0899854376912117, + -0.0958634689450264, + -0.0759367048740387, + 0.058846864849328995, + 0.034864868968725204, + -0.0157247893512249, + -0.07569079846143723, + -0.05267469584941864, + 0.03835418447852135, + 0.018080733716487885, + 0.02439962886273861, + 0.044303204864263535, + 0.07249315828084946, + 0.10375585407018661, + 0.019231898710131645, + -0.041708339005708694, + -0.027096068486571312, + -0.007047099061310291, + -0.00923981424421072, + 0.04542984440922737, + 0.0714845210313797, + -0.03415531665086746, + 0.04009735584259033, + -0.02341894619166851, + 0.05266609787940979, + -0.0025848830118775368, + 0.02600935287773609, + -0.007511953357607126, + 0.025048548355698586, + -0.020352547988295555, + 0.016571780666708946, + 0.0570385605096817, + -0.024624938145279884, + -0.078406423330307, + -0.004118346143513918, + -0.02482844516634941, + -0.1373247504234314, + -0.011803257279098034, + -0.05861739441752434, + 0.06591755151748657, + 0.0675734356045723, + -0.02037637121975422, + -0.0941835269331932, + -0.06265730410814285, + -0.024518148973584175, + -0.15512217581272125, + -0.03767060115933418, + 0.03356298431754112, + 0.018394388258457184, + -0.0473366342484951, + 0.030470291152596474, + 0.06078702583909035, + -0.03541623055934906, + 0.04107380285859108, + 0.005533761344850063, + 0.05290677025914192, + -0.000372643320588395, + 0.03060024045407772, + -0.0031345486640930176, + -0.05847304314374924, + -0.13806313276290894, + 0.02358844503760338, + 0.03449820354580879, + -0.06135643273591995, + -0.030905185267329216, + 0.034849781543016434, + -0.06861946731805801, + -0.0361916683614254, + -0.012321596965193748, + 0.03280995041131973, + 0.06837467849254608, + -0.006026997696608305, + -0.001754359109327197, + 0.1156454086303711, + 0.00857248343527317, + 0.08334146440029144, + -0.01198133546859026, + -0.08542296290397644, + -0.08407054841518402, + -0.014272194355726242, + -0.025111837312579155, + 0.03866463154554367, + -2.1501793690355883e-33, + 0.023159276694059372, + -0.031118247658014297, + -0.05154682695865631, + 0.11783467233181, + 0.06237064674496651, + -0.04185636714100838, + -0.09688159078359604, + 0.034504592418670654, + -0.04865201562643051, + 0.06525694578886032, + 0.07889062911272049, + 0.03702931106090546, + -0.00553385354578495, + -0.02914261631667614, + 0.019256092607975006, + -0.07567237317562103, + 0.026042362675070763, + 0.01262721884995699, + -0.1131187304854393, + -0.028718510642647743, + -0.006444794591516256, + -0.0121576813980937, + 0.0013186824508011341, + 0.0897858515381813, + 0.046083707362413406, + 0.031668197363615036, + 0.015362400561571121, + -0.06039770320057869, + 0.036788392812013626, + 0.019088365137577057, + -0.02680365741252899, + 0.0006117689190432429, + 0.012821520678699017, + -0.018885402008891106, + 0.01377788931131363, + 0.034110959619283676, + -0.05581260472536087, + 0.047453105449676514, + 0.033282749354839325, + -0.07634181529283524, + -0.12394096702337265, + -0.04799553379416466, + -0.053479667752981186, + -0.04287989065051079, + 0.015315447002649307, + -0.0525430291891098, + 0.006090788636356592, + 0.030644532293081284, + 0.025186676532030106, + 0.046521931886672974, + 0.033169399946928024, + 0.08120428025722504, + -0.0022764308378100395, + 0.013238641433417797, + 0.017249608412384987, + -0.03675056993961334, + 0.010196874849498272, + 0.1515640765428543, + -0.006232926156371832, + 0.04256686940789223, + 0.06390716135501862, + 0.008871892467141151, + 0.08887502551078796, + -0.03651108965277672, + -0.00688887620344758, + 0.11613025516271591, + 0.025526491925120354, + 0.015765106305480003, + 0.0650925263762474, + -0.024008680135011673, + -0.020794890820980072, + -0.017689527943730354, + 0.046257857233285904, + 0.048675160855054855, + -0.08133162558078766, + 0.06596515327692032, + -0.028541123494505882, + -0.06942495703697205, + 0.024475669488310814, + -0.034949496388435364, + -0.01278263796120882, + 0.026568913832306862, + -0.06221235170960426, + 0.015092491172254086, + 0.032404426485300064, + -0.01723293960094452, + -0.033160898834466934, + -0.09127536416053772, + -0.0560450553894043, + 0.006792999804019928, + -0.1142156720161438, + 0.08487121015787125, + -0.0025133073795586824, + -0.04149869084358215, + -0.05687226355075836, + -1.8206966824891255e-34, + 0.1310916692018509, + 0.05327479541301727, + -0.011853042058646679, + -0.043280042707920074, + -0.019530778750777245, + 0.04810835421085358, + 0.07961378246545792, + 0.07853033393621445, + -0.04043096676468849, + 0.012454057112336159, + 0.0695483461022377, + -0.05388716235756874, + -0.034803614020347595, + -0.01893085613846779, + -0.047927726060152054, + 0.021075883880257607, + 0.0385102741420269, + 0.04119925573468208, + 0.02358364500105381, + 0.04616164416074753, + -0.05774665251374245, + -0.12013242393732071, + -0.013926373794674873, + 0.04924343526363373, + -0.07489065825939178, + 0.017916694283485413, + -0.02406158111989498, + 0.038785170763731, + -0.013734771870076656, + -0.004725704435259104, + 0.04259202256798744, + 0.005255177151411772, + -0.01885034143924713, + -0.07273691892623901, + -0.01896413043141365, + 0.02332371287047863, + -0.008056494407355785, + 0.008363218046724796, + 0.01451000478118658, + 0.0061804126016795635, + 0.06137645244598389, + 0.038630276918411255, + 0.04944153130054474, + 0.01684698462486267, + -0.0023821070790290833, + -0.01653393916785717, + -0.003882584162056446, + 0.004800698719918728, + -0.08147909492254257, + 0.017621159553527832, + 0.028338145464658737, + -0.026905782520771027, + 0.024921555072069168, + -0.0781409740447998, + -0.0863669291138649, + -0.017907733097672462, + -0.026639731600880623, + 0.002010188065469265, + -0.07200874388217926, + 0.02406809851527214, + 0.04897346347570419, + 0.028051862493157387, + -0.04130290821194649, + -0.05026280879974365, + 0.080434650182724, + 0.012948415242135525, + 0.08137832581996918, + 0.0021767124999314547, + -0.0012860378483310342, + -0.008561675436794758, + 0.0714300274848938, + 0.007015764247626066, + 0.016703546047210693, + 0.05362895131111145, + -0.07507523149251938, + 0.0019698042888194323, + -0.02476041577756405, + -0.06752537190914154, + -0.010038336738944054, + -0.0076506538316607475, + 0.01753433421254158, + 0.012440567836165428, + 0.03346259519457817, + -0.01576676219701767, + -0.04453446343541145, + 0.10843132436275482, + -0.004210367798805237, + 0.039685945957899094, + 0.010326159186661243, + 0.020095018669962883, + -0.05532550811767578, + 0.07231348007917404, + 0.03503785654902458, + -0.015442749485373497, + -0.07684323936700821, + -1.72426570799189e-08, + -0.06385471671819687, + -0.047375261783599854, + 0.01332774106413126, + -0.0475834459066391, + -0.01705576851963997, + -0.050848864018917084, + -0.03799901530146599, + -0.09176311641931534, + -0.02955748699605465, + -0.05442464351654053, + 0.02548183500766754, + 0.011412703432142735, + 0.03122057393193245, + 0.029676878824830055, + -0.02086411416530609, + 0.036409080028533936, + -0.02716236002743244, + 0.11868482828140259, + 0.009917422197759151, + -0.05029302462935448, + 0.026415368542075157, + 0.06194334104657173, + 0.037429895251989365, + -0.04432635009288788, + 0.04985058680176735, + 0.005820379126816988, + -0.018139218911528587, + 0.034899987280368805, + 0.08840664476156235, + -0.05121438950300217, + 0.024823741987347603, + 0.032107770442962646, + -0.02946392074227333, + -0.04464232176542282, + -0.06501886248588562, + -0.01026277057826519, + 0.027544381096959114, + -0.03942886367440224, + -0.012892387807369232, + 0.030004005879163742, + 0.0660351812839508, + 0.010337433777749538, + -0.03882228955626488, + -0.0039039840921759605, + -0.08855526149272919, + 0.011264301836490631, + 0.07715437561273575, + 0.01351654902100563, + -0.02821531519293785, + -0.005798826459795237, + -0.12420780956745148, + -0.002651976188644767, + -0.005397669039666653, + 0.04729175567626953, + 0.025848155841231346, + -0.024949975311756134, + -0.03460830822587013, + 0.11217370629310608, + -0.06890397518873215, + -0.030614614486694336, + 0.0531204529106617, + -0.005773622076958418, + 0.022630324587225914, + 0.02577955462038517 + ], + "pause-circle-bold||music,audio,resume,start,stop,round": [ + 0.02931564301252365, + -0.049839120358228683, + -0.0725499838590622, + -0.022501610219478607, + 0.05667327344417572, + 0.05327900871634483, + 0.04577061906456947, + -0.08111725747585297, + 0.03886523097753525, + -0.07867669314146042, + -0.00969340093433857, + 0.03339168056845665, + -0.01876528188586235, + -0.07874007523059845, + -0.02219700999557972, + 0.024591566994786263, + -0.034382566809654236, + 0.05628161132335663, + 0.044405385851860046, + -0.03686625510454178, + -0.0019554756581783295, + 0.04393089935183525, + 0.04918329790234566, + 0.09207849949598312, + -0.04642544686794281, + 0.09920210391283035, + 0.016997098922729492, + 0.017779167741537094, + 0.04038548097014427, + -0.08419907093048096, + -0.03278161212801933, + 0.01910746842622757, + 0.13966454565525055, + -0.027496658265590668, + -0.042978912591934204, + -0.004625109490007162, + -0.07459291070699692, + 0.05123307555913925, + -0.03450176864862442, + 0.002199773909524083, + 0.037791427224874496, + -0.051798947155475616, + 0.05142594128847122, + -0.08168840408325195, + -0.08577568084001541, + -0.05815921351313591, + -0.1440524309873581, + -0.056390415877103806, + 0.049774568527936935, + 0.052230104804039, + -0.012500136159360409, + -0.10993529111146927, + -0.06578424572944641, + 0.018919825553894043, + 0.019489290192723274, + 0.03124290704727173, + 0.05597196891903877, + 0.04629795625805855, + 0.11892826110124588, + 0.008818277157843113, + -0.012315169908106327, + -0.049554936587810516, + 0.01581219583749771, + 0.01397497858852148, + 0.008644300512969494, + 0.038848571479320526, + -0.04146445542573929, + -0.011155162006616592, + -0.01715851202607155, + 0.006721783895045519, + -0.003027087775990367, + 0.01931547373533249, + -0.03176329657435417, + -0.00047135408385656774, + 0.015373727306723595, + 0.019823098555207253, + 0.011776960454881191, + 0.014835646376013756, + -0.10743755847215652, + 2.6118968889932148e-05, + -0.014411963522434235, + -0.11433311551809311, + 0.008861368522047997, + -0.00741988979279995, + 0.05259248614311218, + 0.06282874941825867, + 0.02428310178220272, + -0.09823708236217499, + -0.06800447404384613, + -0.028790775686502457, + -0.1669129729270935, + 0.00045086696627549827, + -0.02360554039478302, + -0.000858128594700247, + -0.07079175114631653, + 0.025804957374930382, + 0.043384529650211334, + -0.06590887904167175, + -0.010099886916577816, + 0.03279389813542366, + 0.0766230970621109, + -0.025478510186076164, + 0.046447619795799255, + -0.02437114156782627, + -0.05497875064611435, + -0.1290028840303421, + 0.02536638081073761, + 0.03450970724225044, + -0.05320248380303383, + -0.007372540887445211, + 0.028553998097777367, + -0.06904394924640656, + -0.01875642128288746, + 0.006134621798992157, + 0.03823034465312958, + 0.05941890552639961, + -0.03688039630651474, + -0.003495201701298356, + 0.11182354390621185, + 0.01776072569191456, + 0.09993075579404831, + 0.008749396540224552, + -0.11494461447000504, + -0.08290441334247589, + -0.030330723151564598, + -0.004284263122826815, + 0.027167145162820816, + -2.6040698803117288e-33, + -0.0037285981234163046, + 0.004048638511449099, + -0.036591582000255585, + 0.07234779000282288, + 0.04877094924449921, + -0.07097357511520386, + -0.08069717139005661, + 0.019398529082536697, + 0.004452706780284643, + 0.05523224174976349, + 0.051435358822345734, + 0.02583894692361355, + -0.010407389141619205, + -0.03522496670484543, + 0.04348498210310936, + -0.09315334260463715, + 0.059160709381103516, + 0.009816589765250683, + -0.1332196593284607, + -0.054896216839551926, + -0.01912366971373558, + -0.004350689705461264, + -0.02535088174045086, + 0.07244081050157547, + 0.0400482602417469, + 0.05943923071026802, + 0.009135447442531586, + -0.054211463779211044, + 0.0313032902777195, + 0.03269641473889351, + -0.003165919566527009, + 0.012063581496477127, + 0.023524869233369827, + 0.005608114879578352, + 0.03032359853386879, + 0.03684667497873306, + -0.05607060343027115, + 0.039924830198287964, + 0.010741797275841236, + -0.06449798494577408, + -0.10599466413259506, + -0.050564929842948914, + -0.06629075109958649, + -0.020717179402709007, + 0.0074112373404204845, + -0.015971949324011803, + 0.0057227723300457, + 0.041240494698286057, + 0.013805153779685497, + 0.04550466313958168, + 0.005972462706267834, + 0.09448063373565674, + -0.029826978221535683, + -0.01619299128651619, + 0.040214862674474716, + -0.059462618082761765, + 0.03804619982838631, + 0.13334736227989197, + -0.04899388924241066, + 0.011808845214545727, + 0.08029699325561523, + 0.027667520567774773, + 0.05593311786651611, + -0.06384903192520142, + -0.024732308462262154, + 0.10531430691480637, + -0.014570092782378197, + -0.031188877299427986, + 0.05943518131971359, + -0.02997313253581524, + -0.010469861328601837, + -0.0026692368555814028, + 0.06604211032390594, + 0.08683683723211288, + -0.0775604397058487, + 0.05039093643426895, + -0.023717736825346947, + -0.053292807191610336, + 0.02778896503150463, + -0.04111213609576225, + -0.023348063230514526, + 0.023436108604073524, + -0.06194828450679779, + -0.01872711069881916, + 0.04439651966094971, + -0.0352480411529541, + 0.013671661727130413, + -0.0767081156373024, + -0.058502908796072006, + -0.01367410272359848, + -0.12254258990287781, + 0.1013893187046051, + 0.019991470500826836, + 0.012104933150112629, + -0.09783757477998734, + 4.729281014651882e-34, + 0.10699529945850372, + 0.05199940502643585, + 0.013073191046714783, + -0.013255242258310318, + 1.3306175787874963e-05, + 0.06021694093942642, + 0.060571592301130295, + 0.05835828185081482, + -0.020719824358820915, + 0.04617062211036682, + 0.04434807598590851, + -0.04665926471352577, + -0.034498751163482666, + -0.0129888029769063, + -0.003423379035666585, + 0.02696581371128559, + 0.05754941329360008, + 0.03328854963183403, + 0.01232955139130354, + 0.06030944362282753, + -0.04457392543554306, + -0.11944630742073059, + -0.020921854302287102, + 0.0476476214826107, + -0.08771771937608719, + 0.03620102256536484, + 0.0023515603970736265, + -0.008831734769046307, + -0.01128371711820364, + 0.022241458296775818, + -0.018299337476491928, + -0.03622294217348099, + 0.00855836272239685, + -0.05400911718606949, + 0.0007506954716518521, + -0.024330900982022285, + 0.016694720834493637, + -0.029673859477043152, + -0.04250384494662285, + -0.02886749990284443, + 0.013522779569029808, + 0.013463699258863926, + 0.04617265239357948, + 0.016595352441072464, + 0.0059602390974760056, + -0.05408455803990364, + 0.038827069103717804, + 0.05619766190648079, + -0.11002106964588165, + 0.027470076456665993, + 0.03924616798758507, + -0.008918341249227524, + 0.0529341846704483, + -0.05048350989818573, + -0.07385983318090439, + 0.02500806376338005, + -0.03378395363688469, + 0.019633442163467407, + -0.02173655852675438, + 0.008016369305551052, + 0.01914549432694912, + 0.003715572878718376, + -0.04240802302956581, + -0.017587797716259956, + 0.07421869039535522, + 0.0439041331410408, + 0.07462344318628311, + -0.004158198367804289, + -0.02790459245443344, + 0.04819697141647339, + 0.03882957249879837, + 0.05655870959162712, + 0.0061129736714065075, + 0.027932189404964447, + -0.05725596100091934, + 0.0033893894869834185, + -0.003446958027780056, + -0.07248187065124512, + -0.024381952360272408, + 0.004591264296323061, + 0.01076809037476778, + 0.02465124987065792, + 0.028998645022511482, + -0.02342810109257698, + -0.028246819972991943, + 0.07805295288562775, + 0.003824724815785885, + 0.050295282155275345, + -0.0013920572819188237, + 0.04277239367365837, + -0.03105941228568554, + 0.08233627676963806, + 0.019954433664679527, + 0.010900081135332584, + -0.01510562002658844, + -1.8846924021431732e-08, + -0.06976630538702011, + -0.0328272245824337, + 0.009039596654474735, + -0.024231120944023132, + 0.041523274034261703, + -0.056889235973358154, + -0.016872569918632507, + -0.10917289555072784, + -0.04491862282156944, + -0.07194799184799194, + 0.02034584991633892, + 0.024231022223830223, + 0.0220898799598217, + 0.02620336413383484, + -0.021899502724409103, + 0.05425553768873215, + -0.042596835643053055, + 0.14486518502235413, + 0.014822227880358696, + -0.025758342817425728, + 0.02385098673403263, + 0.032329339534044266, + 0.05445932596921921, + -0.09127791225910187, + 0.030977606773376465, + 0.00628024572506547, + -0.026956308633089066, + 0.06561606377363205, + 0.05712141469120979, + -0.07236408442258835, + -0.0031719920225441456, + 0.042407579720020294, + -0.026718754321336746, + -0.0383218489587307, + -0.0545484758913517, + -0.05479032173752785, + -0.0028240790124982595, + -0.006421171594411135, + -0.0032048230059444904, + 0.02849602699279785, + 0.06037597358226776, + 0.03985137119889259, + -0.0173052866011858, + 0.003256791038438678, + -0.06300455331802368, + 0.017839664593338966, + 0.08198060095310211, + 0.0020582994911819696, + -0.058836255222558975, + -0.014706305228173733, + -0.12525984644889832, + -0.0024989654775708914, + 0.03253467008471489, + 0.054512497037649155, + 0.03502558544278145, + -0.013382486067712307, + 0.0028894254937767982, + 0.10134768486022949, + -0.1178588941693306, + 0.00099178624805063, + 0.007720659952610731, + 0.043078359216451645, + 0.030789632350206375, + 0.02876235358417034 + ], + "paw-print-bold||pets,pet store,pet shop,animals,cat,dog,veterinarian": [ + -0.012965548783540726, + 0.012401691637933254, + 0.027577055618166924, + 0.04216074198484421, + -0.05172780528664589, + -0.03516058996319771, + 0.025950245559215546, + -0.04784775525331497, + -0.009636939503252506, + -0.005951497703790665, + 0.05004660412669182, + 0.01974102482199669, + 0.017339259386062622, + 0.03334895148873329, + -0.05395582690834999, + 0.022523943334817886, + -0.04682586342096329, + 0.05086894333362579, + 0.08137279748916626, + -0.007345466874539852, + -0.04302603006362915, + 0.049732618033885956, + 0.06222563982009888, + 0.007575114257633686, + -0.03010418638586998, + 0.04925982654094696, + -0.06263408809900284, + -0.05965493246912956, + 0.020953135564923286, + -0.04274263232946396, + -0.0619068518280983, + 0.04784879460930824, + 0.06577207148075104, + 0.03231041133403778, + 0.0632743164896965, + 0.0009331948822364211, + 0.01837652362883091, + -0.011257053352892399, + 0.06168381869792938, + 0.0878777801990509, + 0.031422294676303864, + -0.07263141870498657, + -0.02536056749522686, + -0.020876890048384666, + -0.06802588701248169, + -0.026950394734740257, + -0.09748420864343643, + -0.05644286051392555, + 0.002138148993253708, + 0.005051006563007832, + -0.07412319630384445, + -0.08618780970573425, + -0.07423238456249237, + -0.012896894477307796, + -0.016421440988779068, + -0.051998015493154526, + -0.03038128651678562, + -0.05397303029894829, + 0.004617427475750446, + 0.00569574162364006, + -0.028003092855215073, + 0.03934481739997864, + 0.020367827266454697, + 0.06848974525928497, + 0.04881405457854271, + -0.026742931455373764, + -0.06559253484010696, + 0.06652577221393585, + -0.08148384094238281, + -0.034547485411167145, + 0.04101770371198654, + -0.01674151048064232, + 0.050780992954969406, + 0.014950305223464966, + -0.05331123620271683, + -0.020627403631806374, + 0.07424850761890411, + 0.028714586049318314, + 0.061231646686792374, + -0.04746243357658386, + -0.06343232840299606, + -0.0027804123237729073, + -0.0009816618403419852, + 0.044882871210575104, + 0.020995544269680977, + 0.05995612218976021, + -0.023478073999285698, + -0.061725959181785583, + -0.053791388869285583, + -0.03621328994631767, + -0.051971130073070526, + -0.03937322273850441, + -0.027758095413446426, + 0.001669893623329699, + -0.06721943616867065, + 0.029129676520824432, + 0.09171660244464874, + -0.011154531501233578, + -0.05244859308004379, + 0.05110855773091316, + -0.01210210844874382, + 0.007749984040856361, + 0.02866026759147644, + -0.03325487673282623, + -0.003914077300578356, + -0.06242569163441658, + -0.08448527753353119, + -0.00241011637263, + 0.009497893042862415, + 0.04950395226478577, + -0.023329798132181168, + -0.06293302029371262, + -0.07162880152463913, + -0.029941294342279434, + -0.04167013242840767, + -0.0035561982076615095, + -0.10511534661054611, + -0.0773179680109024, + 0.1659547984600067, + 0.0398864671587944, + -0.015420990996062756, + 0.014659417793154716, + -0.06362758576869965, + -0.03945052996277809, + -0.024401243776082993, + -0.030745854601264, + 0.015480161644518375, + -2.2711256154497088e-33, + 0.02944188192486763, + 0.06259258091449738, + -0.021483376622200012, + 0.009018504060804844, + 0.03132746368646622, + 0.05378008261322975, + -0.028810763731598854, + -0.05266314744949341, + -0.09813551604747772, + 0.0017629918875172734, + -0.008032831363379955, + 0.07602453976869583, + -0.024861842393875122, + 0.043168339878320694, + 0.009225061163306236, + -0.008497823029756546, + -0.003840917721390724, + -0.025751175358891487, + 0.01605505496263504, + -0.016038253903388977, + -0.0343208983540535, + 0.07179644703865051, + 0.011563695967197418, + 0.05956543609499931, + -0.027882052585482597, + -0.051464010030031204, + -0.09060704708099365, + -0.10008876770734787, + 0.002870775293558836, + 0.05299421772360802, + 0.06667212396860123, + -0.015670793130993843, + 0.0731402114033699, + -0.019806982949376106, + -0.14334486424922943, + -0.04952635616064072, + -0.04193602129817009, + -0.12377732992172241, + -0.03571205213665962, + 0.05519333854317665, + 0.029159678146243095, + -0.009828330017626286, + 0.07656273990869522, + 0.06192489713430405, + 0.007106652949005365, + 0.09364628046751022, + -0.016044076532125473, + -0.055532056838274, + -0.01981920190155506, + 0.04646548256278038, + -0.0012291339226067066, + 0.006002436392009258, + 0.006100646685808897, + -0.030267443507909775, + -0.04826906695961952, + -0.0897841602563858, + 0.004752178210765123, + -0.04702655225992203, + -0.03290310129523277, + 0.05241188406944275, + 0.06423799693584442, + 0.042277779430150986, + 0.07684957981109619, + -0.041680868715047836, + 0.020613038912415504, + -0.11048790067434311, + -0.03929866850376129, + 0.03365444019436836, + 0.03755927085876465, + 0.07470910996198654, + -0.006132414098829031, + 0.06168202683329582, + 0.09290841221809387, + -0.05267266929149628, + -0.017429249361157417, + 0.009936625137925148, + 0.023734524846076965, + 0.020088661462068558, + -0.007896065711975098, + -0.09400049597024918, + -0.07414088398218155, + 0.053990438580513, + -0.05119550600647926, + 0.0890316441655159, + 0.03736024349927902, + 0.06114531308412552, + 0.0202057845890522, + -0.04075412079691887, + -0.023378338664770126, + 0.07456289231777191, + -0.052271220833063126, + 0.03162022680044174, + 0.026518212631344795, + -0.07300892472267151, + -0.04364674165844917, + -2.0518735111602896e-33, + 0.03325028344988823, + -0.02321682870388031, + -0.01944510079920292, + -0.005370974540710449, + -0.07345077395439148, + 0.044443950057029724, + 0.03522840142250061, + 0.04425772652029991, + 0.012941216118633747, + 0.04305830970406532, + -0.013760724104940891, + 0.01578991860151291, + 0.005479725543409586, + -0.033725883811712265, + -0.012972187250852585, + 0.031930845230817795, + 0.01813681796193123, + 0.03929893299937248, + 0.031096776947379112, + -0.04877809062600136, + -0.05001787096261978, + -0.037551142275333405, + -0.05439065769314766, + 0.15372498333454132, + 0.02068047784268856, + 0.008017122745513916, + 0.06940984725952148, + -0.07664532959461212, + -0.04000568389892578, + -0.04350540041923523, + -0.019032960757613182, + -0.10479249805212021, + 0.003726945724338293, + 0.10123181343078613, + 0.0002830212761182338, + 0.03946012258529663, + -0.02792525291442871, + -0.07414744794368744, + -0.0009347912855446339, + 0.008571011014282703, + 0.035452701151371, + -0.025841867551207542, + -0.041507456451654434, + 0.055704787373542786, + -0.01546477247029543, + -0.03387286886572838, + -0.08569307625293732, + -0.03263212367892265, + 0.04003872722387314, + 0.046346280723810196, + -0.014403270557522774, + -0.02666536718606949, + 0.011360297910869122, + -0.059746064245700836, + -0.09943965822458267, + 0.008510107174515724, + -0.027982665225863457, + -0.006525849457830191, + -0.052107229828834534, + 0.04658058285713196, + 0.010226655751466751, + 0.07857654988765717, + -0.03554021939635277, + 0.06816969811916351, + -0.06946592777967453, + -0.0919717326760292, + 0.0021729436703026295, + -0.06938616186380386, + 0.025754092261195183, + -0.02337292768061161, + 0.04728643596172333, + 0.0806431770324707, + -0.05733971670269966, + -0.02631017193198204, + -0.038764189928770065, + 0.04331411421298981, + 0.1267908662557602, + -0.012288813479244709, + -0.05098167806863785, + 0.0038500481750816107, + 0.008043311536312103, + -0.04657883197069168, + -0.01937205344438553, + 0.08409376442432404, + 0.020081477239727974, + -0.011690120212733746, + -0.04509874805808067, + 0.10013148188591003, + 0.013231374323368073, + -0.031071428209543228, + 0.013002880848944187, + 0.08259254693984985, + -0.01567208208143711, + -0.021723326295614243, + 0.004248067270964384, + -2.3708564000912702e-08, + -0.041848473250865936, + -0.06897418200969696, + -0.045212406665086746, + -0.0025538404006510973, + 0.09844067692756653, + -0.016828320920467377, + -0.01744479313492775, + -0.09260588139295578, + -0.047808654606342316, + 0.04121293127536774, + 0.05808587372303009, + -0.07041604071855545, + -0.09886206686496735, + -0.050321172922849655, + 0.11129187047481537, + 0.07281839102506638, + 0.00915017444640398, + 0.07979496568441391, + 0.02334919385612011, + 0.004426668863743544, + -0.10561166703701019, + 0.04700422286987305, + -0.0010681247804313898, + -0.031387798488140106, + -0.061746831983327866, + -0.0007362888427451253, + -0.03337321802973747, + -0.00024853795184753835, + -0.0037862244062125683, + 0.00345076946541667, + 0.07885562628507614, + 0.057670943439006805, + 0.007874066941440105, + 0.02000967226922512, + 0.04053043574094772, + -0.08462662994861603, + 0.011224217712879181, + -0.09265697002410889, + -0.0037268137093633413, + 0.06257428228855133, + 0.03590793535113335, + 0.01963738352060318, + -0.04091724380850792, + -0.03830089792609215, + -0.03038792498409748, + 0.029999973252415657, + 0.11181427538394928, + -0.01544884778559208, + 0.007304061204195023, + -0.019034868106245995, + -0.0526483915746212, + 0.035207390785217285, + 0.059167973697185516, + 0.011460565961897373, + -0.03383810818195343, + -0.03558349609375, + -0.00426818523555994, + -0.02107025682926178, + 0.0533900111913681, + 0.05840093642473221, + 0.1184430792927742, + 0.004663243889808655, + 0.08125737309455872, + 0.0950840413570404 + ], + "paypal-logo-bold||payments,paying,purchase,logos": [ + 0.011303907260298729, + 0.07274650037288666, + 0.007122956216335297, + -0.001245866878889501, + 0.04209589958190918, + 0.011682884767651558, + 0.09039871394634247, + -0.0699104517698288, + 0.07735175639390945, + -0.02943684719502926, + 0.01607838086783886, + 0.033276401460170746, + 0.033761829137802124, + -0.04393439367413521, + 0.023490557447075844, + -0.02710682526230812, + -0.021704265847802162, + 0.031028013676404953, + 0.08593139797449112, + -0.026718618348240852, + 0.028964124619960785, + -0.02909836918115616, + -0.005527383182197809, + -0.011496542021632195, + -0.0009742997353896499, + -0.0513589084148407, + 0.04235542565584183, + -0.006058838218450546, + -0.013226406648755074, + -0.08544132858514786, + 0.004420672543346882, + 0.025739343836903572, + 0.07272937148809433, + 0.008011085912585258, + 0.013996072113513947, + -0.0040793330408632755, + 0.0066859060898423195, + -0.028069695457816124, + -0.007512031588703394, + 0.021488038823008537, + 0.06818101555109024, + -0.06619500368833542, + -0.01862548664212227, + 0.026973839849233627, + -0.01687033660709858, + 0.03262024372816086, + -0.01860962063074112, + 0.048453912138938904, + 0.0007360529853031039, + 0.01249721460044384, + 0.0496557243168354, + -0.09843598306179047, + -0.06381776183843613, + -0.012095889076590538, + -0.034420404583215714, + -0.06776224821805954, + 0.014833111315965652, + -0.03593200445175171, + 0.07069078087806702, + -0.11293017119169235, + 0.015239834785461426, + 0.04387328028678894, + -0.028440671041607857, + 0.03801322355866432, + 0.08412802219390869, + 0.02301976829767227, + 0.006361565086990595, + 0.036440491676330566, + -0.1272943764925003, + 0.05440489202737808, + 0.013706209138035774, + 0.0425942987203598, + 0.009167151525616646, + -0.08322052657604218, + -0.043822675943374634, + -0.016378190368413925, + 0.07526635378599167, + 0.0169048048555851, + -0.09297013282775879, + -0.026361968368291855, + -0.052902840077877045, + 0.009621958248317242, + 0.0022156790364533663, + -0.05394439399242401, + 0.0521150641143322, + 0.08082404732704163, + -0.03958028182387352, + -0.02301635965704918, + 0.009492343291640282, + -0.07419389486312866, + -0.06961631029844284, + 0.01721840910613537, + 0.06534279137849808, + -0.054299887269735336, + -0.03762064501643181, + 0.023531220853328705, + 0.026222122833132744, + -0.059920307248830795, + 0.002134450478479266, + 0.026711029931902885, + 0.04042229801416397, + 0.06512270867824554, + 0.06933069974184036, + -0.040350429713726044, + 0.07447731494903564, + 0.09644613415002823, + -0.02668296918272972, + 0.05143572762608528, + 0.07812761515378952, + 0.06498225778341293, + -0.0745277851819992, + -0.034825731068849564, + -0.00405755452811718, + -0.009379437193274498, + -0.052228882908821106, + 0.05659990757703781, + -0.07568709552288055, + -0.021463794633746147, + 0.12494278699159622, + -0.04013243317604065, + 0.05272870883345604, + -0.029332924634218216, + -0.09729205071926117, + -0.10487806051969528, + -0.0698757916688919, + -0.04796896502375603, + 0.022000914439558983, + -3.9527268549666244e-33, + 0.0326087661087513, + 0.029781069606542587, + 0.012785263359546661, + 0.007903053425252438, + 0.023874636739492416, + 0.012246471829712391, + 0.022328689694404602, + -0.04894094169139862, + -0.09599710255861282, + 0.0814007818698883, + 0.02195778116583824, + 0.015937672927975655, + 0.025179129093885422, + 0.1494833528995514, + -0.049799516797065735, + 0.005635181907564402, + -0.0380682609975338, + 0.018792595714330673, + 0.02007390931248665, + 0.024355167523026466, + -0.08629189431667328, + 0.024882452562451363, + -0.053913649171590805, + -0.008950489573180676, + -0.024102548137307167, + -0.018294988200068474, + 0.07431317120790482, + 0.039473336189985275, + 0.029564158990979195, + -0.01938638463616371, + 0.05954954773187637, + -0.00852767564356327, + 0.029916711151599884, + 0.0725109875202179, + -0.04605386406183243, + -0.003784585976973176, + 0.014806371182203293, + -0.007973152212798595, + 0.03808332607150078, + -0.028072282671928406, + 0.012840388342738152, + -0.0682358518242836, + -0.05351739004254341, + -0.03629861772060394, + -0.042613182216882706, + 0.16004477441310883, + -0.010576697997748852, + -0.13803985714912415, + 0.036990027874708176, + 0.008732983842492104, + -0.05261684209108353, + -0.004932948388159275, + -0.030932238325476646, + -0.07751494646072388, + -0.003519614227116108, + -0.10181519389152527, + 0.006653879769146442, + 0.05642229691147804, + -0.041708268225193024, + -0.09191881865262985, + 0.0008406907436437905, + -0.0970999002456665, + 0.06055087223649025, + -0.04794549196958542, + -0.08819302916526794, + 0.0730213075876236, + -0.050860390067100525, + 0.0033461162820458412, + 0.031525250524282455, + 0.02140476182103157, + -0.07933247834444046, + 0.10341598838567734, + 0.13070593774318695, + 0.02443709224462509, + -0.012577882967889309, + 0.013953756541013718, + 0.00018709390133153647, + 0.060371968895196915, + 0.045019734650850296, + 0.10979960858821869, + -0.04703618213534355, + 0.0002940365520771593, + -0.013064314611256123, + 0.13275271654129028, + 0.027216626331210136, + 0.08797857910394669, + 0.024049915373325348, + -0.0496135950088501, + -0.025618134066462517, + -0.028645699843764305, + -0.035415519028902054, + -0.010048069059848785, + 0.012803679332137108, + 0.008418179117143154, + -0.025093985721468925, + 9.264795560895134e-34, + 0.009683536365628242, + 0.026792120188474655, + 0.043594248592853546, + 0.007148526143282652, + -0.04530398175120354, + 0.008565016090869904, + 0.03299617022275925, + 0.08829473704099655, + -0.03876642510294914, + -0.0024815008509904146, + 0.03793922811746597, + 0.01932833157479763, + -0.12232960760593414, + -0.0686216801404953, + 0.05659222602844238, + -0.011913866735994816, + 0.0047071524895727634, + 0.03596683591604233, + -0.008536200039088726, + 0.007699201814830303, + -0.026079105213284492, + 0.022513845935463905, + -0.019870074465870857, + 0.041722189635038376, + -0.016275208443403244, + 0.03128504380583763, + 0.03978298231959343, + -0.017476022243499756, + -0.05382198467850685, + 0.06014491245150566, + -0.010367393493652344, + -0.03822271153330803, + 0.005491608753800392, + 0.054253943264484406, + -0.019836552441120148, + -0.008321571163833141, + -0.04402323439717293, + 0.042228519916534424, + 0.05466802418231964, + 0.06320617347955704, + -0.02688957378268242, + -0.0384066067636013, + 0.007512219715863466, + 0.04267053306102753, + 0.002332362812012434, + -0.1155155822634697, + -0.034736745059490204, + -0.1303156465291977, + -0.00039020233089104295, + 0.030887432396411896, + -0.04093816131353378, + 0.012466104701161385, + 0.008850345388054848, + 0.04485263675451279, + -0.11458141356706619, + 0.03894885629415512, + 0.057278942316770554, + 0.06970161199569702, + 0.035793669521808624, + 0.02574204094707966, + -0.024108663201332092, + 0.04288746044039726, + 0.014388484880328178, + -0.014339031651616096, + -0.002606484107673168, + -0.004761910066008568, + 0.048986274749040604, + -0.03592456132173538, + 0.007795420475304127, + 0.0415789820253849, + -0.03767979517579079, + -0.021625636145472527, + 0.0024666362442076206, + 0.08059889078140259, + 0.05887436121702194, + -0.06815553456544876, + 0.03663744404911995, + -0.021270984783768654, + -0.0622100830078125, + 0.0584992989897728, + -0.013160058297216892, + -0.028516167774796486, + 0.0071693467907607555, + 0.07619885355234146, + -0.008377313613891602, + -0.030526457354426384, + -0.044760361313819885, + -0.025406111031770706, + 0.01040863711386919, + -0.061633843928575516, + -0.05777144804596901, + 0.03181922435760498, + 0.037798281759023666, + 0.02525361441075802, + -0.0643329843878746, + -1.667022253570849e-08, + -0.04753714054822922, + -0.006878464482724667, + 0.04408331215381622, + -0.002398519543930888, + 0.005043833050876856, + -0.005606791935861111, + -0.01539958082139492, + -0.022148102521896362, + -0.07641307264566422, + -0.024664325639605522, + -0.02337060682475567, + -0.021157236769795418, + -0.08091796189546585, + -0.034277286380529404, + -0.02433054894208908, + -0.010881118476390839, + -0.0651693120598793, + -0.005061736796051264, + -0.03528628870844841, + -0.024518456310033798, + -0.09085782617330551, + 0.08751952648162842, + -0.0019244077848270535, + -0.0033756084740161896, + -0.052343159914016724, + 0.0032699601724743843, + 0.07341986149549484, + 0.07048492878675461, + 0.00783607643097639, + 0.03276055306196213, + -0.038943421095609665, + 0.11357773095369339, + 0.03043503127992153, + -0.017361972481012344, + -0.049144864082336426, + -0.03984944149851799, + -0.02009018324315548, + 0.012992825359106064, + -0.03843226656317711, + 0.06141384318470955, + 0.0337601974606514, + -0.05414333939552307, + -0.030815789476037025, + -0.026951393112540245, + 0.0270975474268198, + 0.05111147463321686, + 0.007266745902597904, + -0.013468560762703419, + -0.04430868476629257, + -0.0944245457649231, + 0.04976090043783188, + 0.009293110109865665, + 0.005286748521029949, + 0.028190977871418, + -0.10298936814069748, + -0.13053682446479797, + 0.03446438908576965, + 0.05934969335794449, + 0.047326650470495224, + -0.006241065450012684, + 0.14880432188510895, + -0.11046389490365982, + 0.0483485646545887, + -0.04429810494184494 + ], + "peace-bold||love,hippies,peace sign,symbols": [ + 0.02638406679034233, + 0.09897724539041519, + 0.05841349437832832, + 0.0009845101740211248, + -0.013384884223341942, + 0.027165934443473816, + 0.08280912786722183, + -0.1143084466457367, + 0.0587700754404068, + 0.003215246833860874, + -0.0007815725984983146, + -0.020011533051729202, + 0.06365052610635757, + -0.1071208044886589, + 0.021258948370814323, + 0.0829969272017479, + -0.050367094576358795, + 0.02462274581193924, + -0.013788165524601936, + 0.023525604978203773, + -0.07519352436065674, + 0.03630237653851509, + 0.000282749708276242, + 0.09902019053697586, + -0.008459338918328285, + 0.0874677449464798, + 0.03832998126745224, + 0.04492354765534401, + 0.0239365603774786, + 0.074266217648983, + 0.007142217364162207, + -0.06044766306877136, + 0.02760884165763855, + 0.0511610172688961, + 0.021292245015501976, + 0.0705416202545166, + 0.029118159785866737, + 0.008419541642069817, + 0.04358060285449028, + -0.0021200785413384438, + 0.07255400717258453, + -0.0824570506811142, + -0.024983249604701996, + 0.004010817967355251, + -0.024043073877692223, + 0.016414690762758255, + -0.037389446049928665, + -0.013468910939991474, + -0.00697043864056468, + -0.0427386611700058, + 0.015343781560659409, + -0.055787838995456696, + -0.10847846418619156, + -0.00946173258125782, + 0.02617882378399372, + -0.03531067818403244, + -0.03298971801996231, + -0.0030039555858820677, + 0.03636159375309944, + 0.002789549995213747, + -0.04639758542180061, + 0.05558525025844574, + 0.0589095875620842, + 0.034846968948841095, + 0.04357525706291199, + -0.02920863963663578, + 0.03717593103647232, + 0.09247593581676483, + -0.08734443783760071, + 0.05602644383907318, + -0.04076891019940376, + 0.022072385996580124, + 0.017636477947235107, + -0.0652356818318367, + -0.0910477489233017, + -0.012349382974207401, + -0.00025560977519489825, + -0.028382502496242523, + -0.009291112422943115, + -0.08697672188282013, + -0.04921882972121239, + -0.05156675726175308, + -0.07867725938558578, + 0.005081071984022856, + -0.0033443483989685774, + 0.022178340703248978, + -0.048266757279634476, + -0.06905197352170944, + 0.06725580245256424, + -0.058016251772642136, + -0.08052142709493637, + -0.0017425579717382789, + 0.06295959651470184, + -0.005011985544115305, + -0.004082591738551855, + -0.0009564445936121047, + 0.0627136081457138, + -0.043458711355924606, + -0.09083301573991776, + 0.085767962038517, + 0.034554075449705124, + 0.025551812723279, + 0.036437224596738815, + -0.04775793477892876, + 0.039210740476846695, + -0.03178751468658447, + -0.07429260015487671, + -0.06748464703559875, + -0.02279519848525524, + -0.022399703040719032, + -0.043578263372182846, + -0.11147616803646088, + 0.00264923763461411, + -0.03510094806551933, + 0.03531378135085106, + 0.022373341023921967, + -0.03684175759553909, + -0.09771569073200226, + 0.0740867555141449, + 0.0038988653104752302, + -0.04670596495270729, + -0.11178993433713913, + -0.028095100075006485, + -0.022313706576824188, + -0.04129008576273918, + -0.04805130511522293, + -0.04237300157546997, + -2.411890696618693e-33, + -0.0014760823687538505, + 0.038826003670692444, + 0.04089285433292389, + 0.033609915524721146, + 0.004409254062920809, + -0.003709876211360097, + -0.03169914335012436, + -0.0779302567243576, + -0.05402670428156853, + 0.031538885086774826, + 0.03502118960022926, + 0.0756191834807396, + 0.039736006408929825, + 0.06743061542510986, + -0.0330117903649807, + -0.04752398282289505, + -0.06094593182206154, + -0.06365940719842911, + -0.08214173465967178, + 0.012787400744855404, + -0.032403551042079926, + 0.004145883489400148, + -0.08207609504461288, + 0.02508498914539814, + -0.008665097877383232, + -0.041322972625494, + 0.05565212294459343, + 0.02240702696144581, + 0.015442234463989735, + 0.023491930216550827, + 0.009132098406553268, + 0.08041030913591385, + 0.040866099298000336, + -0.06857135891914368, + 0.010235496796667576, + 0.037860773503780365, + -0.08084593713283539, + -0.018521450459957123, + -0.008212095126509666, + -0.037022557109594345, + 0.04024982079863548, + -0.017893806099891663, + -0.024115562438964844, + -0.012358131818473339, + 0.05637331306934357, + 0.1346457600593567, + 0.06533075869083405, + -0.07638514786958694, + 0.04475995525717735, + -0.03304922208189964, + -0.01894630491733551, + 0.011955239810049534, + -0.07784374058246613, + -0.023313743993639946, + -0.027574703097343445, + -0.055144261568784714, + -0.003541261423379183, + 0.1262221783399582, + -0.0332229807972908, + -0.0369245819747448, + -0.03558895364403725, + -0.01865025795996189, + 0.08295615017414093, + -0.07600326836109161, + 0.062119100242853165, + 0.053684432059526443, + -0.06112625077366829, + 0.021213943138718605, + 0.037181295454502106, + 0.01720478944480419, + 0.02192734368145466, + 0.057261303067207336, + -0.002297318307682872, + 0.0018526901258155704, + 0.0015793584752827883, + 0.009376609697937965, + 0.004849579185247421, + 0.02476627565920353, + 0.02018793299794197, + -0.0034779554698616266, + -0.10328598320484161, + 0.03787146136164665, + -0.04655804857611656, + 0.05270238220691681, + 0.07515894621610641, + -0.05043305084109306, + 0.06474435329437256, + -0.08343403786420822, + -0.111252062022686, + 0.004833621438592672, + 0.023703668266534805, + 0.021631518378853798, + 0.08668242394924164, + -0.05259041115641594, + -0.206547349691391, + -4.923508152868115e-35, + 0.04079677537083626, + 0.01557138841599226, + 0.0012389488983899355, + 0.08154190331697464, + 0.03411409631371498, + -0.014513393864035606, + -0.013332408852875233, + 0.02631145901978016, + 0.002100655110552907, + 0.08020588755607605, + 0.05594455450773239, + -0.06469687819480896, + 0.006564888171851635, + -0.008047726936638355, + 0.017708778381347656, + -0.02405991591513157, + 0.0856916606426239, + 0.06649245321750641, + 0.019854849204421043, + 0.055268701165914536, + 0.01461775042116642, + -0.000804554729256779, + -0.06242584064602852, + 0.06217664107680321, + -0.03390340507030487, + 0.03245734050869942, + 0.08359970897436142, + -0.06119716912508011, + -0.026594050228595734, + -0.03754887357354164, + -0.0018980334280058742, + 0.001446421374566853, + -0.06146789714694023, + 0.01171292643994093, + 0.03797493129968643, + -0.03330042213201523, + 0.01565144769847393, + -0.062294431030750275, + 0.004885864909738302, + 0.005031841341406107, + 0.03596261888742447, + 0.004876917693763971, + 0.022297659888863564, + 0.08230800926685333, + -0.04492603987455368, + -0.015532017685472965, + -0.03872337564826012, + 0.01909121870994568, + -0.07733967900276184, + 0.03296368569135666, + 0.05938905104994774, + -0.05653640255331993, + -0.017907805740833282, + 0.017631374299526215, + 0.011726847849786282, + 0.03437530994415283, + -0.03948390111327171, + 0.004849948454648256, + -0.0568431131541729, + 0.004408405628055334, + -0.023971157148480415, + 0.05348991975188255, + -0.05723603442311287, + 0.02885301411151886, + -0.04724075272679329, + -0.04276688024401665, + -0.0367402620613575, + 0.019280938431620598, + -0.03259975463151932, + 0.06474022567272186, + -0.009902025572955608, + -0.006608687341213226, + -0.08700782805681229, + -0.0005242082406766713, + 0.037657078355550766, + -0.0027225071098655462, + 0.034373171627521515, + -0.01952516846358776, + -0.029541613534092903, + 0.03818739205598831, + -0.047703374177217484, + -0.01654556393623352, + -0.08161123842000961, + 0.08575042337179184, + -0.024902720004320145, + 0.016954202204942703, + -0.0937400609254837, + 0.06494727730751038, + -0.012690538540482521, + 0.036865800619125366, + -0.02348756231367588, + -0.023825498297810555, + -0.03254341334104538, + 0.00048089693882502615, + -0.007279959972947836, + -1.7740415358957762e-08, + -0.029345223680138588, + -0.025888869538903236, + -0.046617500483989716, + -0.05830319598317146, + 0.013597272336483002, + 0.04637793451547623, + 0.005709808319807053, + -0.10434949398040771, + -0.05123136192560196, + 0.08492691814899445, + 0.01029093749821186, + 0.05570398271083832, + -0.0853688195347786, + -0.0005902827833779156, + -0.024280769750475883, + 0.03620653599500656, + -0.024138331413269043, + -0.0174134261906147, + -0.017822397872805595, + -0.054608624428510666, + 0.022143971174955368, + 0.017949992790818214, + 0.02716623991727829, + -0.03866000473499298, + -0.0015120967291295528, + 0.06796512752771378, + -0.04861536994576454, + -0.054157670587301254, + -0.06963832676410675, + 0.025378387421369553, + 0.08570494502782822, + -0.006435681600123644, + -0.037745919078588486, + -0.06345931440591812, + -0.0038313271943479776, + 0.006590887904167175, + -0.045200977474451065, + -0.018295299261808395, + 0.0682189017534256, + 0.1512434184551239, + 0.08133867383003235, + 0.0840686559677124, + 0.009443034417927265, + -0.03920448571443558, + -0.03226699307560921, + 0.03537217900156975, + 0.06346870958805084, + 0.03909271955490112, + -0.09904822707176208, + -0.042837534099817276, + -0.004925043322145939, + 0.008138373494148254, + 0.022712498903274536, + -0.007963670417666435, + -0.056584350764751434, + -0.023822395130991936, + 0.033306099474430084, + 0.13594253361225128, + 0.0334162712097168, + -0.013767408207058907, + 0.17378808557987213, + 0.013834263198077679, + 0.0359019860625267, + 0.00662375008687377 + ], + "pen-bold||ink,write,writing,editing,sign,signature": [ + 0.014313227497041225, + -0.03450274467468262, + -0.010732690803706646, + 0.02541787549853325, + -0.02237664721906185, + -0.015968238934874535, + 0.07917796820402145, + -0.009313218295574188, + 0.03008216992020607, + -0.011231605894863605, + 0.021532880142331123, + 0.06350579857826233, + 0.029491787776350975, + -0.00896142702549696, + -0.0100675905123353, + -0.007055888418108225, + -0.03676527738571167, + 0.009230315685272217, + 0.025444908067584038, + -0.0028017787262797356, + 0.03226141631603241, + 0.008509593084454536, + 0.054862119257450104, + -0.02465379424393177, + 0.024402007460594177, + 0.0135590685531497, + 0.04556252062320709, + -0.009784514084458351, + 0.025237705558538437, + -0.07663317769765854, + -0.06778931617736816, + -0.012449263595044613, + 0.080899178981781, + 0.008591443300247192, + 0.06481184810400009, + -0.0067034498788416386, + 0.0031621630769222975, + 0.04529589042067528, + 0.021078500896692276, + -0.030450107529759407, + 0.012132823467254639, + -0.14108705520629883, + -0.0035696029663085938, + 0.04408907890319824, + 0.01103550661355257, + -0.02240597829222679, + -0.052573636174201965, + 0.06392057985067368, + -0.049625687301158905, + 0.03495581075549126, + 0.043392132967710495, + -0.12420240044593811, + -0.13713932037353516, + 0.02080114372074604, + 0.022768406197428703, + -0.0629737451672554, + -0.022076526656746864, + 0.0008255996508523822, + 0.007502889726310968, + -0.06459879875183105, + -0.0157904215157032, + 0.05877257511019707, + -0.03192863240838051, + 0.03432585299015045, + 0.03205278888344765, + 0.030063746497035027, + 0.012013370171189308, + 0.0005704333307221532, + -0.049516092985868454, + 0.016822313889861107, + 0.02339172549545765, + 0.01600656285881996, + -0.056423671543598175, + -0.026736637577414513, + -0.013360434211790562, + 0.02306237444281578, + 0.006510592997074127, + 0.013038021512329578, + -0.01381651684641838, + -0.051398634910583496, + -0.06564886122941971, + -0.05094956234097481, + -0.03566347062587738, + 0.07968128472566605, + 0.06759408116340637, + 0.05484044924378395, + -0.06436211615800858, + -0.062182508409023285, + -0.01727844774723053, + -0.009035596624016762, + -0.043222613632678986, + 0.04401949793100357, + 0.002968559740111232, + -0.05934327468276024, + -0.10911982506513596, + -0.005698109976947308, + 0.09126204252243042, + 0.044628240168094635, + -0.03476877883076668, + 0.07247933745384216, + 0.022197473794221878, + 0.020578423514962196, + 0.019203897565603256, + -0.020017845556139946, + 0.06517614424228668, + -0.041299328207969666, + -0.011469922959804535, + -0.12515132129192352, + 0.0024659859482198954, + -0.050876230001449585, + -0.01436975784599781, + -0.07360905408859253, + -0.028284229338169098, + -0.03835931792855263, + 0.012051110155880451, + -0.06615223735570908, + -0.07964318245649338, + 0.030229423195123672, + 0.11415443569421768, + 0.08913850039243698, + -0.02805117703974247, + -0.021661732345819473, + -0.07664241641759872, + -0.03487970307469368, + -0.07117119431495667, + -0.009032703936100006, + 0.023156780749559402, + -2.5380710153008422e-33, + 0.06844150274991989, + 0.1058003231883049, + -0.047006480395793915, + 0.09679491072893143, + -0.00042236942681483924, + 0.06721358001232147, + -0.040582600980997086, + -0.0686127096414566, + -0.10472226142883301, + -0.00720742205157876, + 0.07794740051031113, + 0.023415809497237206, + 0.021351870149374008, + 0.1701703816652298, + 0.06856943666934967, + 0.03351288661360741, + 0.020020680502057076, + -0.04399153217673302, + -0.05793427303433418, + 0.02875697799026966, + -0.014318062923848629, + 0.04912218451499939, + -0.03108331188559532, + 0.004171769134700298, + -0.01021671574562788, + -0.022838866338133812, + -0.02390216290950775, + -0.026694513857364655, + -0.019410807639360428, + 0.01328355073928833, + -0.00784723274409771, + -0.007489428855478764, + 0.06339707225561142, + -0.033185720443725586, + -0.07461727410554886, + -0.006350302137434483, + -0.004006667993962765, + -0.09631438553333282, + 0.04580439254641533, + 0.01644166186451912, + -0.04522167891263962, + -0.01400194875895977, + -0.020263899117708206, + -0.05305204540491104, + 0.03896204009652138, + 0.1609925776720047, + -0.027141766622662544, + 0.0018895393004640937, + 0.052004292607307434, + 0.004199531860649586, + -0.01635710895061493, + -0.0018434833036735654, + 0.005348723381757736, + 0.01559098344296217, + 0.007187696173787117, + -0.08085214346647263, + 0.018744518980383873, + 0.01526971161365509, + -0.016141440719366074, + 0.007536264136433601, + 0.01212557777762413, + 0.11803459376096725, + 0.03311469405889511, + 0.023423193022608757, + -0.06498581916093826, + 0.024753205478191376, + -0.057586029171943665, + -0.01022253930568695, + 0.11049205809831619, + -0.03385055437684059, + -0.060176026076078415, + 0.06482960283756256, + 0.003778361715376377, + 0.012805914506316185, + -0.054256606847047806, + -0.02896430715918541, + 0.03483268618583679, + -0.047369007021188736, + 0.03704598918557167, + -0.019303912296891212, + -0.11823151260614395, + 0.024979783222079277, + -0.07277286797761917, + 0.000773764681071043, + 0.031675130128860474, + -0.026629220694303513, + 0.0027330059092491865, + -0.06803665310144424, + -0.03830792009830475, + -0.008933324366807938, + -0.034718554466962814, + -0.0013250993797555566, + 0.01730300672352314, + -0.05284221097826958, + -0.0972052663564682, + 3.122372431060642e-34, + -0.0009801107225939631, + 0.01589142344892025, + -0.03650821000337601, + 0.08895140141248703, + -0.06671980023384094, + 0.015957141295075417, + 0.02969016321003437, + 0.011554907076060772, + 0.06108278036117554, + 0.007579162251204252, + -7.52812484279275e-05, + -0.0022073222789913416, + -0.018496092408895493, + -0.012935019098222256, + -0.023328881710767746, + -0.04655652120709419, + -0.013195961713790894, + 0.09271765500307083, + 0.035697512328624725, + -0.02279891073703766, + -0.06637919694185257, + -0.03566211834549904, + 0.007521149702370167, + 0.1243225559592247, + 0.014098996296525002, + 0.009261205792427063, + 0.008565587922930717, + -0.05262512341141701, + -0.09812034666538239, + 0.011219210922718048, + -0.013971133157610893, + 0.02902819961309433, + 0.07169159501791, + 0.06653690338134766, + -0.05944447964429855, + -0.043058376759290695, + 0.06569917500019073, + -0.04368532821536064, + 0.010153594426810741, + 0.037168215960264206, + 0.04861202463507652, + -0.0016571240266785026, + 0.04720205441117287, + 0.05328482761979103, + -0.04833627864718437, + -0.014482608065009117, + -0.08318252861499786, + -0.019128870218992233, + 0.0021605854853987694, + 0.08713879436254501, + 0.04952406510710716, + -0.05853353440761566, + -0.037009596824645996, + -0.008916047401726246, + -0.08090994507074356, + -0.027432411909103394, + 0.059377532452344894, + -0.0631772130727768, + 0.03353443741798401, + 0.08094926923513412, + -0.017095578834414482, + 0.04825010150671005, + -0.008882802911102772, + 0.012576346285641193, + 0.05698702856898308, + -0.050439558923244476, + 0.04233795776963234, + 0.006414479576051235, + -0.016982857137918472, + 0.002824894618242979, + 0.07357634603977203, + 0.012353776022791862, + 0.013799800537526608, + 0.025838041678071022, + 0.041147489100694656, + -0.03901548311114311, + 0.012751921080052853, + -0.03421054035425186, + -0.050106022506952286, + -0.016409175470471382, + -0.07651795446872711, + -0.011584309861063957, + -0.0635656788945198, + 0.09814861416816711, + -0.012221107259392738, + 0.0475621335208416, + -0.042682986706495285, + -0.033209435641765594, + -0.010908490978181362, + 0.023205149918794632, + 0.008622162975370884, + 0.10247034579515457, + 0.07118357717990875, + -0.0056558214128017426, + -0.061574820429086685, + -1.7341042379825922e-08, + -0.029304642230272293, + -9.986065560951829e-05, + 0.005858151707798243, + -0.06193607673048973, + 0.04472915083169937, + -0.013571166433393955, + 0.04865312948822975, + -0.10839463025331497, + 0.01637401431798935, + -0.0038211820647120476, + 0.0791492760181427, + -0.02864537201821804, + -0.09724419564008713, + -0.12352355569601059, + 0.05709344893693924, + 0.03318353742361069, + -0.017935752868652344, + -0.00011253940465394408, + -0.07157551497220993, + -0.06584923714399338, + 0.006111330818384886, + 0.06168271228671074, + -0.026733053848147392, + -0.04421352595090866, + 0.005847529042512178, + -0.019313044846057892, + 0.00818449817597866, + 0.07135201245546341, + -0.00769861089065671, + 0.05206272006034851, + 0.028659360483288765, + 0.008996047079563141, + 0.11368371546268463, + 0.022756030783057213, + -0.05115940421819687, + -0.004429045598953962, + 0.042874593287706375, + 0.0006360567640513182, + 0.02366866171360016, + 0.18150383234024048, + 0.002622694242745638, + -0.026379594579339027, + -0.0721835270524025, + -0.06326822936534882, + -0.01196620799601078, + -0.021505407989025116, + 0.08900292962789536, + -0.04218754172325134, + -0.07586590200662613, + -0.09573850780725479, + -0.02235100045800209, + -0.0045327977277338505, + 0.073746457695961, + 0.07482611387968063, + -0.03464403375983238, + -0.023539181798696518, + 0.008883470669388771, + 0.13558268547058105, + 0.040026843547821045, + -0.016028471291065216, + 0.12749309837818146, + 0.029049256816506386, + 0.03889848291873932, + 0.01163291186094284 + ], + "pen-nib-bold||ink,write,writing,editing,sign,signature,fountain pen,illustrator": [ + 0.0035829476546496153, + -0.05299811065196991, + -0.028560105711221695, + 0.025729289278388023, + -0.021770140156149864, + -0.02613227628171444, + 0.07526278495788574, + -0.04028411954641342, + 0.013679941184818745, + -0.04392169043421745, + -0.01719631999731064, + 0.021458018571138382, + 0.006274158600717783, + 0.0001776938297552988, + -0.042148664593696594, + 0.018676195293664932, + -0.023563046008348465, + -0.01827268861234188, + 0.04810548201203346, + -0.006049513351172209, + 0.021993624046444893, + 0.019728461280465126, + 0.0592372827231884, + -0.030257660895586014, + 0.027500616386532784, + 0.03579648584127426, + 0.05233735591173172, + -0.02502395771443844, + 0.03842911869287491, + -0.10259728133678436, + -0.022623689845204353, + -0.01472327671945095, + 0.09239713847637177, + -0.020544160157442093, + 0.07598213106393814, + -0.022789007052779198, + -0.025774158537387848, + 0.055991265922784805, + 0.001558861811645329, + -0.05851835384964943, + 0.020948315039277077, + -0.09444108605384827, + 0.003045894904062152, + 0.04942117631435394, + 0.027931496500968933, + 0.015747947618365288, + -0.03206464648246765, + 0.053853537887334824, + -0.04510120674967766, + 0.036898232996463776, + 0.031054500490427017, + -0.16653046011924744, + -0.1551521122455597, + 0.025793327018618584, + 0.040148016065359116, + -0.046756561845541, + -0.0366266630589962, + -0.03629140928387642, + 0.03413941711187363, + -0.04495210945606232, + 0.006901205983012915, + 0.07306559383869171, + -0.008603285066783428, + 0.04227438569068909, + 0.055254194885492325, + 0.05381172150373459, + 0.0009933055844157934, + -0.023448223248124123, + -0.04874212294816971, + -0.031418804079294205, + 0.03749043121933937, + 0.010786226950585842, + -0.05492714047431946, + -0.019212251529097557, + -0.014922496862709522, + 0.015662245452404022, + 0.033242542296648026, + 0.017409062013030052, + -0.007197094615548849, + -0.07041320949792862, + -0.04312626272439957, + 0.006454661954194307, + 0.011011999100446701, + 0.10635921359062195, + 0.06000414490699768, + 0.06897255033254623, + -0.04021917283535004, + -0.05514155328273773, + -0.011424850672483444, + -0.020547989755868912, + -0.031058400869369507, + 0.04681030288338661, + -0.0060189636424183846, + -0.024832969531416893, + -0.1223979964852333, + -0.015952587127685547, + 0.05034489929676056, + 0.016856199130415916, + -0.050060659646987915, + 0.07189486920833588, + 0.025625960901379585, + 0.012042810209095478, + 0.016663657501339912, + -0.02773163467645645, + -0.007945269346237183, + -0.040461860597133636, + -0.002367663662880659, + -0.12465379387140274, + 0.029384862631559372, + 0.03156157582998276, + 0.0037615925539284945, + -0.056863587349653244, + -0.03136122226715088, + -0.03816131502389908, + 0.01893576979637146, + -0.08426549285650253, + -0.09830649197101593, + 0.047588106244802475, + 0.10732834786176682, + 0.10480599105358124, + -0.044559210538864136, + 0.009104298427700996, + -0.06452284008264542, + -0.02297373302280903, + -0.09920316189527512, + 0.030558358877897263, + 0.011321821250021458, + -1.7792625958801775e-33, + 0.047233741730451584, + 0.07758435606956482, + -0.051945578306913376, + 0.0825384259223938, + 0.025519846007227898, + 0.0015927250497043133, + -0.016351498663425446, + -0.07955365628004074, + -0.0748845711350441, + -0.013774409890174866, + 0.07459579408168793, + 0.01342059951275587, + -0.01696595549583435, + 0.17497266829013824, + 0.07416366040706635, + 0.026361800730228424, + 0.03329228237271309, + -0.03585222736001015, + -0.05399565398693085, + 0.021629055961966515, + -0.024091513827443123, + 0.048464223742485046, + -0.0655491054058075, + 0.01704070158302784, + -0.012956973165273666, + -0.013622723519802094, + -0.03587773069739342, + -0.024471495300531387, + -0.004750036168843508, + 0.005538035649806261, + 0.002200938295572996, + -0.005892707500606775, + 0.05641103535890579, + -0.046528879553079605, + -0.08346952497959137, + -0.04308253154158592, + 0.010614100843667984, + -0.07234229892492294, + 0.0451524518430233, + 0.011080486699938774, + -0.06574425101280212, + -0.010981434024870396, + -0.024188756942749023, + -0.032345250248909, + 0.0524817518889904, + 0.13396534323692322, + -0.007059084251523018, + 0.02267853543162346, + 0.061645787209272385, + -0.007621887139976025, + -0.04935368150472641, + -0.015667036175727844, + -0.0151278767734766, + 0.009895284660160542, + 0.0035090751480311155, + -0.07974562793970108, + 0.0069663506001234055, + 0.03260139375925064, + -0.0032682365272194147, + -0.024880070239305496, + 0.019325347617268562, + 0.11914466321468353, + 0.025239715352654457, + 0.0310176070779562, + -0.061479076743125916, + 0.035722166299819946, + -0.03603501245379448, + -0.019049983471632004, + 0.10955023020505905, + -0.0356241911649704, + -0.08738236129283905, + 0.07102375477552414, + 0.04584719240665436, + -0.00612375745549798, + -0.06814752519130707, + -0.054579876363277435, + 0.039830125868320465, + -0.06449605524539948, + 0.04203769937157631, + -0.0180796068161726, + -0.12163853645324707, + 0.008179879747331142, + -0.10003978759050369, + -0.020057182759046555, + 0.009735225699841976, + -0.03969409316778183, + 0.008069139905273914, + -0.039190083742141724, + -0.046179428696632385, + -0.032424867153167725, + -0.05186624079942703, + 0.018605219200253487, + -0.013796646147966385, + -0.07016190886497498, + -0.10359124839305878, + 3.0591893801152036e-34, + 0.01011993084102869, + -0.0033806452993303537, + -0.04790528118610382, + 0.06650430709123611, + -0.04586074501276016, + 0.021145200356841087, + 0.028033016249537468, + -0.015047052875161171, + 0.061973292380571365, + 0.007244977634400129, + -0.012905008159577847, + -0.0007829464157111943, + 0.0010966795962303877, + -0.0004647941968869418, + -0.007479766383767128, + -0.05139555037021637, + -0.013168653473258018, + 0.0743141695857048, + 0.028469331562519073, + -0.04079718142747879, + -0.056273479014635086, + 0.005002717021852732, + -0.0119833555072546, + 0.06171875447034836, + 0.016482116654515266, + 0.027727844193577766, + 0.02447396144270897, + -0.030320705845952034, + -0.027972511947155, + 0.018116263672709465, + -0.008413855917751789, + 0.029977131634950638, + 0.07687684893608093, + 0.07868802547454834, + -0.06641625612974167, + -0.048005685210227966, + 0.10132084786891937, + -0.08331730216741562, + -0.026760971173644066, + 0.002165259560570121, + 0.033767782151699066, + 0.0183431264013052, + 0.03723098337650299, + 0.06575284898281097, + -0.06260380893945694, + 0.004962073173373938, + -0.10786497592926025, + 0.0013229100732132792, + 0.016875045374035835, + 0.0657351166009903, + 0.05352522432804108, + -0.028836015611886978, + -0.056758880615234375, + 0.009292417205870152, + -0.1053062453866005, + -0.017077339813113213, + 0.06600356101989746, + -0.05877980217337608, + 0.0035780754406005144, + 0.0705055221915245, + -0.025517676025629044, + 0.04786133021116257, + 0.029574351385235786, + -0.00019643509585876018, + 0.04670971632003784, + -0.04266093671321869, + 0.029512600973248482, + 0.015790799632668495, + -0.0020172002259641886, + -0.009112606756389141, + 0.04063569754362106, + 0.04869512841105461, + 0.05171942338347435, + 0.016604352742433548, + 0.029488805681467056, + -0.018526390194892883, + 0.060729410499334335, + -0.01920781470835209, + -0.032152168452739716, + -0.04585963115096092, + -0.07329565286636353, + 0.01585632935166359, + -0.03357324376702309, + 0.11315350234508514, + 0.01262248121201992, + 0.03520224988460541, + -0.04782770574092865, + -0.021387754008173943, + 0.02193635143339634, + 0.037574101239442825, + 0.015113938599824905, + 0.10107768326997757, + 0.06491727381944656, + 0.03844105079770088, + -0.09525351226329803, + -2.0242767462264055e-08, + -0.03447125479578972, + -0.025598980486392975, + 0.01868104748427868, + -0.06808117777109146, + 0.05610177293419838, + 0.0048352195881307125, + 0.045138344168663025, + -0.08431873470544815, + 0.0014954721555113792, + -0.015187684446573257, + 0.09905637055635452, + -0.04059424623847008, + -0.11404570937156677, + -0.08975253999233246, + 0.07642548531293869, + 0.02831355109810829, + 0.011292004026472569, + -0.031515877693891525, + -0.04793313890695572, + -0.0810520276427269, + 0.01230850163847208, + 0.05425295606255531, + 0.006017121486365795, + -0.05385835841298103, + -0.023013565689325333, + -0.012253839522600174, + -0.02400992624461651, + 0.034189388155937195, + -0.03554019704461098, + 0.04027055948972702, + 0.02237250655889511, + 0.047446198761463165, + 0.14942626655101776, + 0.005820738151669502, + -0.010596143081784248, + -0.002583377528935671, + 0.05827648192644119, + 0.013219867832958698, + -0.02582751028239727, + 0.14823541045188904, + 0.0023641635198146105, + -0.02520165778696537, + -0.0485183484852314, + -0.07127703726291656, + 0.0011462817201390862, + -0.040022727102041245, + 0.07831210643053055, + -0.04922257736325264, + -0.05335517227649689, + -0.05928576737642288, + -0.039925795048475266, + -0.008018925786018372, + 0.05544501915574074, + 0.09810706973075867, + -0.04068261384963989, + 0.0044450052082538605, + -0.014265434816479683, + 0.08965728431940079, + 0.037563957273960114, + 0.006789872422814369, + 0.12486310303211212, + 0.03509371727705002, + 0.02117260918021202, + 0.037958141416311264 + ], + "pen-nib-straight-bold||ink,write,writing,editing,sign,signature,fountain pen,illustrator": [ + 0.002015228383243084, + -0.04421454668045044, + -0.029517199844121933, + 0.0223343875259161, + -0.03853874281048775, + -0.027918867766857147, + 0.07460734993219376, + -0.039894819259643555, + 0.014656036160886288, + -0.037529926747083664, + -0.006929632276296616, + 0.029095465317368507, + -0.003968567121773958, + 0.013273282907903194, + -0.04539649933576584, + 0.01003784965723753, + -0.04221687838435173, + -0.014455358497798443, + 0.05219460278749466, + 0.009789051488041878, + 0.016158083453774452, + 0.012854966334998608, + 0.05401849001646042, + -0.026581084355711937, + 0.018165161833167076, + 0.0495220422744751, + 0.07423527538776398, + -0.028764313086867332, + 0.03990892693400383, + -0.10227327793836594, + -0.03523523733019829, + -0.005387951619923115, + 0.07797542214393616, + -0.014525962993502617, + 0.04824450612068176, + -0.043196022510528564, + -0.03294198587536812, + 0.06623554974794388, + 0.0006143946084193885, + -0.06603134423494339, + 0.021262645721435547, + -0.100736603140831, + 0.008243286050856113, + 0.051694709807634354, + 0.03290651738643646, + 0.014294386841356754, + -0.011681352742016315, + 0.06333374977111816, + -0.042679354548454285, + 0.04596896842122078, + 0.03066699020564556, + -0.17656995356082916, + -0.15853586792945862, + 0.019217325374484062, + 0.02945006638765335, + -0.026926472783088684, + -0.03532848879694939, + -0.016474997624754906, + 0.0395420640707016, + -0.040762726217508316, + 0.02936549484729767, + 0.05738092213869095, + -0.01543619204312563, + 0.03887690231204033, + 0.03515878692269325, + 0.05677105486392975, + -0.006896583363413811, + -0.01732541061937809, + -0.03890817239880562, + -0.027408037334680557, + 0.035835206508636475, + 0.008890059776604176, + -0.06148200482130051, + -0.03335069492459297, + -0.0050670853815972805, + -0.011478832922875881, + 0.03437082841992378, + 0.020092984661459923, + -0.0006269334116950631, + -0.0604010708630085, + -0.04277139902114868, + -0.00561120081692934, + 0.008706661872565746, + 0.11293444782495499, + 0.051676277071237564, + 0.05730392783880234, + -0.02616749331355095, + -0.05598593130707741, + -0.011358467862010002, + -0.021262412890791893, + -0.020128073170781136, + 0.054440923035144806, + 0.0010878500761464238, + -0.045659903436899185, + -0.1179490014910698, + -0.020311178639531136, + 0.044518500566482544, + 0.005146188195794821, + -0.05909646674990654, + 0.06634321808815002, + 0.03793783113360405, + 0.0025214494671672583, + 0.015436223708093166, + -0.015222732909023762, + 0.0065714954398572445, + -0.04127480462193489, + -0.0061708600260317326, + -0.11976075917482376, + 0.03257569670677185, + 0.03199242055416107, + -0.0016681180568411946, + -0.04937465861439705, + -0.016618629917502403, + -0.032932642847299576, + 0.0096035897731781, + -0.0839579701423645, + -0.11270260810852051, + 0.04470586031675339, + 0.09710126370191574, + 0.10007542371749878, + -0.06259731948375702, + 0.02176518552005291, + -0.07589665055274963, + -0.0265573151409626, + -0.10192267596721649, + 0.04771064594388008, + 0.017524361610412598, + -2.141441037905163e-33, + 0.04462558776140213, + 0.08816854655742645, + -0.04667872563004494, + 0.07242610305547714, + 0.020267855376005173, + -0.004919484723359346, + -0.018354428932070732, + -0.07583214342594147, + -0.07009664177894592, + 0.008371297270059586, + 0.0746522769331932, + 0.006168666761368513, + -0.02605668641626835, + 0.19620199501514435, + 0.07564371824264526, + 0.019705288112163544, + 0.03579016774892807, + -0.03713385760784149, + -0.05497987940907478, + 0.02891065925359726, + -0.031452812254428864, + 0.048371557146310806, + -0.05713948234915733, + 0.0037197433412075043, + -0.021395258605480194, + -0.020546535030007362, + -0.03104306012392044, + -0.017643289640545845, + -0.0076862298883497715, + 0.005712862126529217, + -0.009534662589430809, + 0.007084481883794069, + 0.06994616985321045, + -0.05616055056452751, + -0.08182328939437866, + -0.0450943298637867, + 0.01391424611210823, + -0.07952344417572021, + 0.04354594275355339, + 0.01326361857354641, + -0.07400292158126831, + -0.013781338930130005, + -0.011216835118830204, + -0.027111250907182693, + 0.06339918076992035, + 0.13668110966682434, + -0.00499992910772562, + 0.027371982112526894, + 0.06386338174343109, + -0.00578672531992197, + -0.05266803503036499, + -0.011829459108412266, + -0.019032711163163185, + 0.02227761037647724, + -0.005402467213571072, + -0.08428753912448883, + 0.00446698535233736, + 0.048089027404785156, + -0.027276666834950447, + -0.023538142442703247, + 0.018090516328811646, + 0.12661997973918915, + 0.01829126663506031, + 0.0179471205919981, + -0.07441309094429016, + 0.026515282690525055, + -0.04373999312520027, + -0.022109709680080414, + 0.12300459295511246, + -0.020890219137072563, + -0.08600874990224838, + 0.06283740699291229, + 0.0403892956674099, + -0.023636840283870697, + -0.05904751271009445, + -0.04691998288035393, + 0.03019888885319233, + -0.05811105668544769, + 0.04740770533680916, + -0.004685654770582914, + -0.11897730082273483, + 0.016898317262530327, + -0.10317309945821762, + -0.05955817922949791, + -0.008958449587225914, + -0.03927508369088173, + 0.012705969624221325, + -0.03788871318101883, + -0.03472530469298363, + -0.0333772674202919, + -0.06810607016086578, + 0.03474999964237213, + 0.000679939694236964, + -0.04670160636305809, + -0.09477649629116058, + 6.167541056388665e-34, + 0.012762975879013538, + -0.017447760328650475, + -0.05287839472293854, + 0.07726841419935226, + -0.029035130515694618, + 0.023253582417964935, + 0.03094802051782608, + -0.008576997555792332, + 0.06931087374687195, + 0.011968672275543213, + -0.0038892230950295925, + -0.013488907366991043, + -0.003811303060501814, + 0.0068420530296862125, + 0.01201734971255064, + -0.05357391759753227, + -0.011955281719565392, + 0.06600241363048553, + 0.03063870780169964, + -0.038005560636520386, + -0.04696832224726677, + -0.00565136456862092, + -0.012831569649279118, + 0.05858989432454109, + 0.025119923055171967, + 0.027617154642939568, + 0.02537352964282036, + -0.03747415542602539, + -0.026667317375540733, + 0.031632065773010254, + -0.010161303915083408, + 0.018368985503911972, + 0.06986207515001297, + 0.061844803392887115, + -0.06138699874281883, + -0.06420372426509857, + 0.10325343161821365, + -0.0583273321390152, + -0.031036781147122383, + -0.010899298824369907, + 0.02811550348997116, + 0.009251955896615982, + 0.0502033568918705, + 0.08110926300287247, + -0.061332862824201584, + -0.003517875913530588, + -0.11082281917333603, + 0.0033423560671508312, + 0.006633889861404896, + 0.07032133638858795, + 0.030704539269208908, + -0.015629136934876442, + -0.050151076167821884, + 0.017806166782975197, + -0.10018318146467209, + -0.02768421173095703, + 0.03082558885216713, + -0.06076036021113396, + -0.0027075884863734245, + 0.0776682123541832, + -0.035683512687683105, + 0.033622000366449356, + 0.031061779707670212, + -0.012498006224632263, + 0.05864318460226059, + -0.03785289078950882, + 0.03855886310338974, + 0.005502857267856598, + -0.010926815681159496, + 0.005360128823667765, + 0.029375260695815086, + 0.0638069361448288, + 0.042360007762908936, + 0.02078448049724102, + 0.027505651116371155, + -0.02067878656089306, + 0.06638462096452713, + -0.025887683033943176, + -0.025265799835324287, + -0.03939305245876312, + -0.07577674090862274, + 0.011413679458200932, + -0.026315277442336082, + 0.10933265835046768, + -0.002238707384094596, + 0.02142939902842045, + -0.05760638415813446, + -0.01874067634344101, + 0.036505695432424545, + 0.04662203788757324, + 0.012091055512428284, + 0.09212717413902283, + 0.061152394860982895, + 0.026186106726527214, + -0.08170640468597412, + -2.170716939531303e-08, + -0.034833766520023346, + -0.03727596253156662, + 0.018337126821279526, + -0.06231183186173439, + 0.05759548023343086, + 0.010895460844039917, + 0.04068053886294365, + -0.07731138169765472, + 0.0010893750004470348, + -0.02594601921737194, + 0.09704561531543732, + -0.03315703198313713, + -0.11810774356126785, + -0.08059698343276978, + 0.07433559000492096, + 0.021185342222452164, + -0.002050776267424226, + -0.018005426973104477, + -0.036091145128011703, + -0.07603014260530472, + 0.017315730452537537, + 0.04485667869448662, + 0.0025660921819508076, + -0.052108023315668106, + -0.03963988646864891, + -0.00779371103271842, + -0.018497735261917114, + 0.02789674699306488, + -0.047981441020965576, + 0.03612280264496803, + 0.019264042377471924, + 0.047665711492300034, + 0.14959318935871124, + 0.006221666932106018, + -0.01202006172388792, + -0.0014536746311932802, + 0.06770242005586624, + 0.014089533127844334, + -0.018908141180872917, + 0.1271684467792511, + 0.008471640758216381, + -0.011138342320919037, + -0.03132371976971626, + -0.06755895167589188, + 0.009296572767198086, + -0.054731231182813644, + 0.1110498458147049, + -0.03890403360128403, + -0.04283582791686058, + -0.06509370356798172, + -0.040377426892519, + 0.006863096728920937, + 0.06341468542814255, + 0.09178603440523148, + -0.03143537789583206, + 4.927184636471793e-05, + -0.018522776663303375, + 0.08219821751117706, + 0.023986397311091423, + 0.019018732011318207, + 0.12307582795619965, + 0.037075676023960114, + 0.018933534622192383, + 0.02758576162159443 + ], + "pencil-bold||write,writing,editing,sign,signature": [ + -0.014755450189113617, + -0.05678695812821388, + -0.013869166374206543, + 0.022039424628019333, + -0.030512629076838493, + -0.016347786411643028, + 0.05964697152376175, + 0.0062181479297578335, + -0.010043433867394924, + 0.03330086171627045, + -0.0006088953814469278, + 0.058822374790906906, + 0.03411007300019264, + 0.002655735705047846, + 0.018092960119247437, + 0.019974758848547935, + -0.0288371741771698, + -0.010392550379037857, + 0.012883460149168968, + 0.0037269219756126404, + 0.04465866833925247, + 0.00502322381362319, + 0.04133080691099167, + 0.025099219754338264, + 0.047230079770088196, + -0.005201894789934158, + 0.05703749135136604, + -0.0033786168787628412, + 0.02072829380631447, + -0.07065345346927643, + -0.06142903491854668, + -0.03197633847594261, + 0.09874178469181061, + 0.018034007400274277, + 0.0506526380777359, + 0.03250108286738396, + -0.006235343404114246, + 0.036605238914489746, + 0.017497055232524872, + -0.02995130978524685, + -0.008360474370419979, + -0.11268580704927444, + -0.02665572799742222, + 0.0785864070057869, + 0.023901404812932014, + -0.04311079904437065, + -0.025986814871430397, + 0.010262063704431057, + -0.03690376132726669, + 0.03522111475467682, + 0.008536643348634243, + -0.09574069082736969, + -0.17344197630882263, + -0.017921406775712967, + 0.011597812175750732, + -0.017057238146662712, + -0.04119962826371193, + -0.009633765555918217, + 0.04339434951543808, + -0.049093879759311676, + -0.0035265625920146704, + 0.06569720059633255, + 0.012614167295396328, + -0.0012131650000810623, + 0.04161743074655533, + 0.052706941962242126, + -0.004908922594040632, + -0.0005342508666217327, + -0.04753049463033676, + 0.029000751674175262, + 0.038054801523685455, + -0.000786120246630162, + -0.04635240137577057, + -0.04972373694181442, + -0.012601645663380623, + -0.015939611941576004, + -0.016965743154287338, + 0.023422515019774437, + -0.03167557716369629, + -0.08306949585676193, + -0.10127140581607819, + -0.06055577099323273, + -0.05688218027353287, + 0.08137129247188568, + 0.04141363874077797, + 0.08224624395370483, + -0.03905116394162178, + -0.05185559019446373, + 0.011542496271431446, + -0.009295479394495487, + -0.04289120435714722, + 0.018291765823960304, + -0.008897151798009872, + -0.02348789945244789, + -0.11475052684545517, + -0.039627913385629654, + 0.12524674832820892, + 0.0366290882229805, + -0.0144024807959795, + 0.07114822417497635, + 0.03926151990890503, + 0.02713065966963768, + 0.04575824365019798, + -0.007244377862662077, + 0.07664039731025696, + -0.015627894550561905, + -0.007848046720027924, + -0.10585574060678482, + -0.02222101204097271, + -0.06502794474363327, + -0.002815710846334696, + -0.054005686193704605, + -0.03584950789809227, + -0.009310086257755756, + 0.05063273012638092, + -0.0337764248251915, + -0.023323701694607735, + 0.005387821234762669, + 0.06693834811449051, + 0.07516028732061386, + 0.029916252940893173, + -0.01981186307966709, + -0.053492456674575806, + -0.001329502323642373, + -0.08451329171657562, + 0.004968099761754274, + 0.011275195516645908, + -2.2954963684071396e-33, + 0.10786911845207214, + 0.09381265193223953, + -0.045984674245119095, + 0.07358673959970474, + 0.011005537584424019, + 0.0526273250579834, + -0.04896562546491623, + -0.026997512206435204, + -0.0970781221985817, + 0.03433841094374657, + 0.09836971759796143, + 0.01033190730959177, + 0.034777894616127014, + 0.17676900327205658, + 0.035265278071165085, + 0.039732564240694046, + 0.023879768326878548, + -0.056912973523139954, + -0.0448240302503109, + 0.010397621430456638, + -0.048842739313840866, + 0.02693723700940609, + -0.056366123259067535, + 0.008600998669862747, + -0.014574112370610237, + 0.01739238202571869, + 0.011904199607670307, + 0.003454333869740367, + -0.037735581398010254, + -0.0011007923167198896, + 0.011715000495314598, + -0.003840827848762274, + 0.031318146735429764, + -0.05153224617242813, + -0.06601254642009735, + -0.012731865979731083, + -0.030580606311559677, + -0.0821986049413681, + 0.0663742870092392, + -0.005780747625976801, + -0.03410414978861809, + -0.01597519777715206, + -0.008483389392495155, + -0.06425278633832932, + 0.043029043823480606, + 0.14339707791805267, + -0.037902530282735825, + 0.012210058979690075, + 0.07676168531179428, + -0.01525125652551651, + -0.03478637710213661, + 0.035184137523174286, + 0.05547456443309784, + 0.022112498059868813, + 0.012012616731226444, + -0.0598205104470253, + 0.026608843356370926, + 0.05806110426783562, + -0.015682252123951912, + -0.00991089642047882, + 0.018884852528572083, + 0.0931348130106926, + -0.002252393402159214, + 0.0490102618932724, + -0.08285433053970337, + 0.06787460297346115, + -0.08424170315265656, + 0.013378419913351536, + 0.13091471791267395, + -0.060194987803697586, + -0.07307027280330658, + 0.07502102106809616, + -0.016428103670477867, + 0.0019483068026602268, + -0.06677783280611038, + -0.05536578223109245, + 0.0007438986795023084, + -0.04127306118607521, + 0.037741947919130325, + -0.04376668855547905, + -0.1063036397099495, + 0.03648469224572182, + -0.059940531849861145, + 0.003902984084561467, + 0.021355321630835533, + -0.020878011360764503, + 0.0365360826253891, + -0.06927473843097687, + -0.06330873817205429, + 0.0058804890140891075, + -0.04992810636758804, + -0.0074012246914207935, + 0.007774507626891136, + -0.05292074754834175, + -0.09351059049367905, + 6.2333912397312714e-34, + 0.02617197297513485, + 0.030927637591958046, + -0.03468232974410057, + 0.10895038396120071, + -0.06174037232995033, + 0.00384130934253335, + -0.011376590467989445, + -0.012058326043188572, + 0.06735892593860626, + 0.01520755048841238, + 0.013450118713080883, + -0.014612874016165733, + -0.028536278754472733, + -0.03823671489953995, + 0.01707855425775051, + -0.038650404661893845, + -0.059454262256622314, + 0.0752255767583847, + 0.0005849346634931862, + -0.04887905344367027, + -0.08489499241113663, + -0.024927178397774696, + 0.0006961553590372205, + 0.07999322563409805, + 0.007988806813955307, + 0.02064608596265316, + -0.0375698022544384, + -0.03452890366315842, + -0.08745972812175751, + -0.00741887092590332, + -0.03842703998088837, + 0.011078783310949802, + 0.05994001403450966, + 0.004570063203573227, + -0.07635795325040817, + -0.058750662952661514, + 0.0641360729932785, + -0.04597289115190506, + 0.012581676244735718, + 0.03118819370865822, + 0.044401928782463074, + 0.003554733470082283, + 0.09026490896940231, + 0.04447472095489502, + -0.05476652830839157, + 0.04262994974851608, + -0.04181963950395584, + 0.020345082506537437, + -0.01974872313439846, + 0.12335473299026489, + 0.04768485203385353, + -0.042598072439432144, + -0.06061628833413124, + -0.04237544909119606, + -0.06612130999565125, + -0.03221743553876877, + 0.06203555688261986, + -0.05715087801218033, + 0.036015234887599945, + 0.05575316399335861, + -0.023934755474328995, + 0.03016878291964531, + 0.00978870876133442, + 0.03088252618908882, + 0.051254674792289734, + -0.0700230523943901, + 0.05483447387814522, + 0.0008789055864326656, + 0.04018643498420715, + 0.004507279489189386, + 0.08904754370450974, + 0.0011760854395106435, + 0.022442618384957314, + 0.040285006165504456, + 0.07672921568155289, + -0.03601996228098869, + 0.015572876669466496, + -0.006701280828565359, + -0.02885214053094387, + -0.03120400942862034, + -0.03556051477789879, + 0.0038089666049927473, + -0.043945763260126114, + 0.09290233999490738, + -0.029619449749588966, + 0.07587165385484695, + -0.028917871415615082, + -0.0002985628671012819, + -0.03270542994141579, + -0.00463109603151679, + -0.00121075299102813, + 0.113910011947155, + 0.03686778247356415, + -0.0490097850561142, + -0.05768289789557457, + -1.6257743595815555e-08, + -0.031225193291902542, + 0.028147723525762558, + -0.017419228330254555, + -0.05346383899450302, + 0.03595714271068573, + -0.002453775377944112, + 0.07789427787065506, + -0.06146452575922012, + -0.01332105789333582, + 0.0023726546205580235, + 0.09395738691091537, + -0.006500584073364735, + -0.10177542269229889, + -0.09420817345380783, + 0.0014225327176973224, + -0.002975311828777194, + -0.003097846871241927, + 0.01458690594881773, + -0.08110730350017548, + -0.05992114916443825, + -0.014785109087824821, + 0.044698238372802734, + -0.034859269857406616, + -0.015676327049732208, + -0.020172851160168648, + -0.016667792573571205, + -0.016830792650580406, + 0.0870930626988411, + -0.004900229629129171, + 0.09394960850477219, + 0.022825276479125023, + 0.02772148698568344, + 0.11884906142950058, + 0.01810799166560173, + -0.05475681275129318, + -0.04370009899139404, + 0.03437041491270065, + 0.029533715918660164, + 0.026216451078653336, + 0.17535875737667084, + -0.00802714191377163, + -0.03365635499358177, + -0.05692335218191147, + -0.04263131693005562, + -0.015806084498763084, + -0.017414525151252747, + 0.08078013360500336, + -0.049967650324106216, + -0.0649537518620491, + -0.08595974743366241, + -0.04346393048763275, + -0.03274122253060341, + 0.06355341523885727, + 0.020652132108807564, + -0.05479419603943825, + -0.007999221794307232, + 0.01126475166529417, + 0.1302022486925125, + 0.020520731806755066, + -0.044560447335243225, + 0.11980198323726654, + 0.01706063374876976, + 0.0017864465480670333, + -0.0013780156150460243 + ], + "pencil-circle-bold||write,writing,editing,sign,signature": [ + -0.005573981907218695, + -0.0439261794090271, + -0.04825770482420921, + 0.047893185168504715, + 0.006563146598637104, + -0.05401431769132614, + 0.060880016535520554, + 0.009704899042844772, + 0.020154766738414764, + -0.008529754355549812, + -0.005431472789496183, + 0.06889313459396362, + 0.04831065982580185, + -0.01512538269162178, + 0.03761536628007889, + 0.005615561734884977, + -0.049057360738515854, + -0.013293477706611156, + 0.02004019357264042, + -0.025899268686771393, + 0.0206000953912735, + -0.004158460069447756, + 0.056742578744888306, + 0.06568873673677444, + 0.021093429997563362, + 0.015412667766213417, + 0.053808122873306274, + -0.005192799959331751, + 0.011585487052798271, + -0.080117367208004, + -0.08314330875873566, + -0.005983786657452583, + 0.08801960200071335, + 0.007743118330836296, + 0.033078067004680634, + 0.037589747458696365, + -0.022713132202625275, + 0.05518069863319397, + 0.01846272498369217, + -0.05981602147221565, + 0.011693882755935192, + -0.10632562637329102, + 0.004010931123048067, + 0.05939602479338646, + 0.006377714686095715, + -0.015517529100179672, + -0.06683837622404099, + 0.017155742272734642, + -0.0366845466196537, + 0.04809174686670303, + 0.005673527251929045, + -0.10898016393184662, + -0.17854292690753937, + -0.03980337083339691, + 0.02146029844880104, + -0.016668740659952164, + -0.03848876431584358, + -0.017902502790093422, + 0.05977838113903999, + -0.05522617697715759, + 0.022907672449946404, + 0.04247931391000748, + 0.02784908376634121, + 0.017824700102210045, + 0.02177303656935692, + 0.04667963460087776, + -0.011016150936484337, + -0.019397670403122902, + -0.050020333379507065, + -0.000569732568692416, + 0.038439277559518814, + -0.004202229902148247, + -0.05762339383363724, + -0.05970320850610733, + -0.0007361776661127806, + 0.008792349137365818, + -0.030210403725504875, + 0.027445541694760323, + -0.051491882652044296, + -0.08468743413686752, + -0.08090394735336304, + -0.04133749008178711, + -0.03699660673737526, + 0.10810976475477219, + 0.04618362337350845, + 0.10026848316192627, + -0.021798470988869667, + -0.07487405091524124, + 0.001251591369509697, + 0.0005811117589473724, + -0.03928156942129135, + 0.0279571320861578, + -0.029238171875476837, + -0.031156420707702637, + -0.1414341926574707, + -0.04325383901596069, + 0.10308185964822769, + 0.006868266966193914, + -0.05334872007369995, + 0.09298308193683624, + 0.04415566846728325, + 0.01839267835021019, + 0.05385385453701019, + -0.023678189143538475, + 0.057889532297849655, + -0.028031695634126663, + 0.00017525340081192553, + -0.09635458886623383, + -0.018717708066105843, + -0.041822321712970734, + -0.0018263160018250346, + -0.06201842054724693, + -0.03957824409008026, + -0.011353084817528725, + 0.03603852912783623, + -0.014491873793303967, + -0.024542976170778275, + 0.01023173052817583, + 0.07056884467601776, + 0.07894405722618103, + 0.02633114531636238, + -0.006611543707549572, + -0.07676006853580475, + -0.01138303056359291, + -0.10855703800916672, + 0.007101357448846102, + -0.0027733545284718275, + -2.7382492543802312e-33, + 0.09195857495069504, + 0.11721894890069962, + -0.0374159999191761, + 0.04514620453119278, + -0.013512959703803062, + 0.013492166996002197, + -0.03544258326292038, + -0.036928702145814896, + -0.04992601275444031, + 0.016129838302731514, + 0.08980431407690048, + 0.0011801724322140217, + 0.04720216989517212, + 0.15838944911956787, + 0.047154370695352554, + 0.011859490536153316, + 0.05399465933442116, + -0.06804175674915314, + -0.06846895068883896, + -0.01727580651640892, + -0.05277153104543686, + 0.025129541754722595, + -0.08751403540372849, + -0.009091934189200401, + -0.026132097467780113, + 0.031190995126962662, + 0.009302672930061817, + 0.014030474238097668, + -0.022426728159189224, + 0.011228755116462708, + 0.013132013380527496, + -0.0008535278611816466, + 0.029712069779634476, + -0.023989584296941757, + -0.038262467831373215, + -0.0054502934217453, + -0.031675975769758224, + -0.06596869230270386, + 0.048124052584171295, + -0.009280659258365631, + -0.020957201719284058, + -0.030258076265454292, + -0.027476824820041656, + -0.03985009714961052, + 0.032588329166173935, + 0.15151314437389374, + -0.02122150920331478, + 0.016792384907603264, + 0.06169150024652481, + -0.025851041078567505, + -0.05333836004137993, + 0.04957697167992592, + 0.028572749346494675, + -0.0032951252069324255, + 0.00863494910299778, + -0.07132371515035629, + 0.03361168131232262, + 0.03637164458632469, + -0.033780310302972794, + -0.02066616527736187, + 0.032185349613428116, + 0.08661439269781113, + -0.007505808956921101, + 0.03377337008714676, + -0.0904049426317215, + 0.0737934336066246, + -0.10669496655464172, + -0.02137073129415512, + 0.13025160133838654, + -0.0801125094294548, + -0.05194023624062538, + 0.0718681663274765, + 0.024503249675035477, + 0.031702980399131775, + -0.061218131333589554, + -0.0321417972445488, + -0.0032595687080174685, + -0.03270534425973892, + 0.044335633516311646, + -0.03815551847219467, + -0.10355612635612488, + 0.046247612684965134, + -0.06178370118141174, + -0.005677922163158655, + 0.04833722114562988, + -0.04274989664554596, + 0.046587761491537094, + -0.05711590498685837, + -0.05598152428865433, + 0.012290271930396557, + -0.04967750981450081, + 0.01171798910945654, + 0.03979848697781563, + -0.014010674320161343, + -0.11104633659124374, + 8.45686911002536e-34, + 0.018957683816552162, + 0.036163583397865295, + -0.014902898110449314, + 0.09153711795806885, + -0.05450063198804855, + 0.0031421061139553785, + -0.014670963399112225, + -0.01636507920920849, + 0.05660778656601906, + 0.029687536880373955, + -0.01313529722392559, + -0.020713351666927338, + -0.015730876475572586, + -0.016045380383729935, + 0.03944284841418266, + -0.03135928884148598, + -0.03300263360142708, + 0.0818861871957779, + -0.0038139952812343836, + -0.03000505641102791, + -0.09220804274082184, + -0.019971385598182678, + -0.0052730245515704155, + 0.07055988907814026, + -0.008858527056872845, + 0.03428936377167702, + -0.01584102399647236, + -0.058005962520837784, + -0.08423756062984467, + 0.007366569712758064, + -0.08474463224411011, + -0.006062869913876057, + 0.07926078885793686, + 0.018117010593414307, + -0.044360216706991196, + -0.07945670187473297, + 0.060041338205337524, + -0.06893627345561981, + -0.02353086695075035, + -0.009947742335498333, + 0.017896737903356552, + -0.005142197012901306, + 0.08595076203346252, + 0.04087798297405243, + -0.03253110870718956, + 0.01244399044662714, + -0.00039586881757713854, + 0.04460224509239197, + -0.04038158804178238, + 0.12558791041374207, + 0.04824482277035713, + -0.02659609168767929, + -0.0231489147990942, + -0.03208838775753975, + -0.06068044155836105, + -0.0035117734223604202, + 0.04962984845042229, + -0.027056558057665825, + 0.04638947173953056, + 0.05224663391709328, + -0.03539459779858589, + 0.009992782026529312, + 0.0007273941882885993, + 0.059251926839351654, + 0.06083894148468971, + -0.054166119545698166, + 0.0678374320268631, + 0.00012123252963647246, + 0.008201725780963898, + 0.03791528940200806, + 0.05741086229681969, + 0.0375177226960659, + 0.01996617577970028, + 0.019286388531327248, + 0.08312486857175827, + -0.027380840852856636, + 0.035259176045656204, + -0.016591906547546387, + -0.04774938151240349, + -0.016644364222884178, + -0.044589411467313766, + 0.018913157284259796, + -0.04308580979704857, + 0.07556367665529251, + -0.023355036973953247, + 0.052244991064071655, + -0.023898230865597725, + 0.002289224648848176, + -0.035209253430366516, + 0.003042771713808179, + 0.0013848756207153201, + 0.11599493026733398, + 0.03535625338554382, + -0.01210772804915905, + -0.015520048327744007, + -1.7165934451668363e-08, + -0.025073500350117683, + 0.022390494123101234, + -0.01715237833559513, + -0.03540920466184616, + 0.07613018155097961, + -0.02448612079024315, + 0.06390000879764557, + -0.07975780963897705, + -0.03212720528244972, + -0.0054634613916277885, + 0.066347137093544, + 0.00749568734318018, + -0.11696171760559082, + -0.09299464523792267, + -0.010951517149806023, + 0.006206346210092306, + 0.0005298793548718095, + 0.02844659984111786, + -0.06118931621313095, + -0.05164244398474693, + -0.005372089333832264, + 0.015482557937502861, + -0.005334893707185984, + -0.04917389526963234, + -0.02381168305873871, + -0.019829878583550453, + -0.0026083565317094326, + 0.0856407955288887, + -0.020849600434303284, + 0.05391179025173187, + 0.01833871565759182, + 0.02563611976802349, + 0.10170609503984451, + 0.019213799387216568, + -0.04690597206354141, + -0.07953216880559921, + 0.023831510916352272, + 0.03847726806998253, + 0.03335258737206459, + 0.17705179750919342, + 0.006988562177866697, + -0.0019282313296571374, + -0.0331631675362587, + -0.034522052854299545, + -0.002999439835548401, + 0.009723236784338951, + 0.08057009428739548, + -0.06003422290086746, + -0.0824785828590393, + -0.0876200869679451, + -0.06114792078733444, + -0.03235197067260742, + 0.08958657830953598, + 0.020916178822517395, + -0.03896681219339371, + -0.02435974031686783, + 0.03799998387694359, + 0.1420251876115799, + -0.018527524545788765, + -0.013868394307792187, + 0.10022205859422684, + 0.04207336902618408, + 0.012025997042655945, + -0.0024699000641703606 + ], + "pencil-line-bold||write,writing,editing,sign,signature": [ + -0.035757724195718765, + -0.04352996125817299, + -0.01895526610314846, + 0.03482603654265404, + -0.026888426393270493, + -0.017119379714131355, + 0.0485498271882534, + 0.0020358539186418056, + -0.021790560334920883, + 0.02605314739048481, + -0.015319891273975372, + 0.06312550604343414, + 0.030070925131440163, + -0.011228899471461773, + 0.013349059969186783, + 0.029585599899291992, + -0.04233852028846741, + -0.0209627915173769, + 0.010714697651565075, + 0.009547770954668522, + 0.02890160121023655, + 0.01345203910022974, + 0.03509770706295967, + 0.030355626717209816, + 0.029934192076325417, + -0.005225724540650845, + 0.07467563450336456, + 0.012255581095814705, + 0.0014632545644417405, + -0.0691823735833168, + -0.0712294802069664, + -0.02208641543984413, + 0.09620975703001022, + 0.022116610780358315, + 0.06179694086313248, + 0.036269038915634155, + 0.010899852961301804, + 0.03921300545334816, + 0.01638234406709671, + -0.032618988305330276, + -0.00536143034696579, + -0.11576078832149506, + -0.03825754299759865, + 0.07838717848062515, + 0.022584974765777588, + -0.04525601863861084, + -0.029538951814174652, + -0.011720780283212662, + -0.014499543234705925, + 0.041559912264347076, + 0.010338995605707169, + -0.08467140793800354, + -0.17372383177280426, + -0.01652076654136181, + 0.011641542427241802, + -0.006631204858422279, + -0.024733688682317734, + -0.011303499341011047, + 0.04113387316465378, + -0.05745657533407211, + 0.002758418209850788, + 0.06567148864269257, + 0.010185178369283676, + -0.010511537082493305, + 0.032557208091020584, + 0.051607973873615265, + -0.01682664267718792, + 0.019457044079899788, + -0.04651116207242012, + 0.03312556818127632, + 0.02724270336329937, + -0.009602842852473259, + -0.05061106011271477, + -0.05228375270962715, + -0.011498017236590385, + -0.011862684041261673, + -0.02242930233478546, + 0.03431270271539688, + -0.02846183069050312, + -0.07729087769985199, + -0.09666229039430618, + -0.05859548971056938, + -0.05309775844216347, + 0.08236384391784668, + 0.03649752214550972, + 0.08691482990980148, + -0.04011651501059532, + -0.07123324275016785, + 0.031873688101768494, + 0.003287876956164837, + -0.0395435094833374, + 0.024688750505447388, + -0.006764156743884087, + -0.014619092456996441, + -0.11849548667669296, + -0.03698401153087616, + 0.1170538142323494, + 0.026241783052682877, + -0.02812618389725685, + 0.06563407182693481, + 0.03734118118882179, + 0.03606237471103668, + 0.04739856719970703, + 0.017721347510814667, + 0.07059615850448608, + -0.006556423380970955, + 0.012570880353450775, + -0.09297629445791245, + -0.018200427293777466, + -0.06554623693227768, + 0.013901622034609318, + -0.0701465979218483, + -0.03830089047551155, + -0.01228790171444416, + 0.048755042254924774, + -0.03330061584711075, + -0.016055628657341003, + 0.013312985189259052, + 0.07095567137002945, + 0.07491537928581238, + 0.024230798706412315, + -0.02348131127655506, + -0.07244693487882614, + -0.0027258568443357944, + -0.06661535054445267, + 0.01605989970266819, + 0.043823543936014175, + -2.6237458190345707e-33, + 0.10991837084293365, + 0.08625491708517075, + -0.025044212117791176, + 0.06604252010583878, + 0.027834229171276093, + 0.058272164314985275, + -0.07118739187717438, + -0.02173982374370098, + -0.09618419408798218, + 0.051676612347364426, + 0.10333643853664398, + -0.047652292996644974, + 0.04225913807749748, + 0.1681169718503952, + 0.02733183465898037, + 0.027266012504696846, + 0.015841055661439896, + -0.07354671508073807, + -0.0468829907476902, + 0.02779272571206093, + -0.06268930435180664, + 0.010004683397710323, + -0.052329566329717636, + -0.0038443775847554207, + -0.00807859841734171, + 0.003998683765530586, + 0.012140565551817417, + 0.013452884741127491, + -0.04039299488067627, + -0.0009540162282064557, + 0.019249532371759415, + -0.0229811891913414, + 0.03545347601175308, + -0.048539549112319946, + -0.0896211639046669, + -0.0019094698363915086, + -0.043131355196237564, + -0.07733878493309021, + 0.061748262494802475, + -0.0007694065570831299, + -0.025778967887163162, + -0.015366851352155209, + -0.0018418986583128572, + -0.062462206929922104, + 0.04271094501018524, + 0.14534784853458405, + -0.038154833018779755, + 0.011303451843559742, + 0.07080292701721191, + -0.012763455510139465, + -0.051138076931238174, + 0.0425882488489151, + 0.054122213274240494, + 0.012867189012467861, + 0.0206467155367136, + -0.07335826009511948, + 0.025155434384942055, + 0.07140906155109406, + -0.014407466165721416, + -0.013579530641436577, + 0.025568975135684013, + 0.07820233702659607, + -0.014087538234889507, + 0.05451697111129761, + -0.06702877581119537, + 0.06650803983211517, + -0.08400464802980423, + 0.014673927798867226, + 0.12508971989154816, + -0.059648580849170685, + -0.07658326625823975, + 0.0616072416305542, + -0.005949109792709351, + 0.011465698480606079, + -0.06579902023077011, + -0.05784658342599869, + -0.013100124895572662, + -0.034230779856443405, + 0.0668848529458046, + -0.05831379070878029, + -0.09477917850017548, + 0.03705595061182976, + -0.05425091087818146, + 0.011892537586390972, + 0.02954162284731865, + -0.020571285858750343, + 0.04274384677410126, + -0.06343509256839752, + -0.06360632926225662, + 0.011421173810958862, + -0.054846011102199554, + -0.0026888190768659115, + -0.0013833497650921345, + -0.04886563494801521, + -0.09531468898057938, + 5.9396921394684e-34, + 0.03896376118063927, + 0.034941159188747406, + -0.03697485476732254, + 0.10086294263601303, + -0.06957852840423584, + 0.011203118599951267, + -0.013030529953539371, + -0.001892555272206664, + 0.08610676229000092, + 0.05191710218787193, + 0.019621653482317924, + 0.0013922246871516109, + -0.034863702952861786, + -0.02624894678592682, + 0.030861156061291695, + -0.03343287110328674, + -0.06434449553489685, + 0.06512177735567093, + 0.004588404204696417, + -0.05751275271177292, + -0.08467616140842438, + -0.04644337669014931, + 0.018369479104876518, + 0.07229773700237274, + 0.006089723203331232, + -0.0031082092318683863, + -0.02370346523821354, + -0.023886047303676605, + -0.0905383750796318, + -0.015861257910728455, + -0.04167762026190758, + 0.018064400181174278, + 0.050201378762722015, + -0.0032672863453626633, + -0.06889762729406357, + -0.04943117871880531, + 0.05261944979429245, + -0.017316235229372978, + 0.015265775844454765, + 0.022490236908197403, + 0.0297197587788105, + 0.0184810608625412, + 0.09051095694303513, + 0.00977300200611353, + -0.06651745736598969, + 0.05404134839773178, + -0.03513403236865997, + 0.025737902149558067, + -0.025209922343492508, + 0.14008429646492004, + 0.02521839365363121, + -0.024950791150331497, + -0.05487959086894989, + -0.02257484942674637, + -0.06992366909980774, + -0.03137321397662163, + 0.05632508918642998, + -0.03536922112107277, + 0.019006256014108658, + 0.04832237958908081, + -0.024444783106446266, + 0.03162780776619911, + -0.0023386881221085787, + 0.022436030209064484, + 0.07030654698610306, + -0.061783768236637115, + 0.06363006681203842, + -0.005516554228961468, + 0.05482269823551178, + 0.012255399487912655, + 0.08925604075193405, + 0.006029163487255573, + 0.014071027748286724, + 0.0487155057489872, + 0.06912188231945038, + -0.03647001087665558, + 0.026778697967529297, + -0.002868391340598464, + -0.028304873034358025, + -0.028933200985193253, + -0.014314613305032253, + -0.006714795250445604, + -0.045698996633291245, + 0.0921981930732727, + -0.041148241609334946, + 0.07054747641086578, + -0.033773478120565414, + 0.015260408632457256, + -0.023696307092905045, + -0.011831867508590221, + -0.011561328545212746, + 0.0982297733426094, + 0.0067967320792376995, + -0.049956243485212326, + -0.06190905719995499, + -1.7146698283454498e-08, + -0.02950182370841503, + 0.009942373260855675, + -0.00781920738518238, + -0.05326494202017784, + 0.04458471015095711, + 0.0018143056659027934, + 0.08582573384046555, + -0.06591424345970154, + -0.009113224223256111, + -0.007432371843606234, + 0.08348964899778366, + 0.003950505051761866, + -0.11031591892242432, + -0.08287730067968369, + -0.00561526557430625, + 0.0022387804929167032, + -0.015262095257639885, + 0.005106406286358833, + -0.07820636034011841, + -0.058859702199697495, + -0.025565942749381065, + 0.03035702183842659, + -0.034113600850105286, + -0.013005035929381847, + -0.013934213668107986, + -0.012420165352523327, + -0.01921597123146057, + 0.09891202300786972, + -0.007260218728333712, + 0.07980753481388092, + 0.028807606548070908, + 0.026569046080112457, + 0.13161452114582062, + 0.0037793919909745455, + -0.03804180026054382, + -0.06728586554527283, + 0.033059027045965195, + 0.03831454738974571, + 0.02768409065902233, + 0.1654764711856842, + -0.0192851684987545, + -0.01201582420617342, + -0.037204109132289886, + -0.0526287741959095, + -0.01089620403945446, + -0.01818249747157097, + 0.07210630923509598, + -0.0437999963760376, + -0.07964690029621124, + -0.09794694930315018, + -0.04460994899272919, + -0.03178522735834122, + 0.07223094999790192, + 0.005152216646820307, + -0.07335034757852554, + -0.01406028587371111, + 0.016669830307364464, + 0.11653535813093185, + 0.0068914396688342094, + -0.034978389739990234, + 0.11338651180267334, + 0.018856018781661987, + 0.0011034422786906362, + -0.009468437172472477 + ], + "pencil-ruler-bold||*new*,drawing,drafting,construction,tools": [ + -0.010443504899740219, + -0.008110081776976585, + -0.027808059006929398, + 0.006615965627133846, + -0.08331704139709473, + -0.05749649927020073, + 0.011040248908102512, + 0.015520752407610416, + -0.033145803958177567, + 0.09772004187107086, + -0.011822565458714962, + 0.000541884801350534, + 0.008101523853838444, + 0.036234088242053986, + -0.032330386340618134, + 0.03620452061295509, + -0.037008192390203476, + -0.009791075251996517, + -0.01992637664079666, + 0.023351427167654037, + 0.04138398915529251, + -0.024951962754130363, + 0.018181877210736275, + 0.05286632478237152, + 0.08877373486757278, + 0.029821541160345078, + 0.028833942487835884, + -0.005317624658346176, + 0.07465735077857971, + -0.09501466900110245, + -0.07790801674127579, + -0.01679493486881256, + 0.07689294964075089, + 0.005822243634611368, + 0.07667986303567886, + -0.025514014065265656, + 0.0025923249777406454, + 0.05451801419258118, + 9.159821638604626e-05, + -0.006643826141953468, + -0.036348987370729446, + -0.06303301453590393, + -0.02282695658504963, + 0.08700992166996002, + 0.014730575494468212, + 0.00806163065135479, + -0.025801820680499077, + -0.0004355756682343781, + -0.010442257858812809, + 0.02097143605351448, + -0.03401919826865196, + -0.09479274600744247, + -0.18760818243026733, + -0.03965182602405548, + 0.05626939609646797, + 0.08554195612668991, + -0.009817260317504406, + -0.026691937819123268, + 0.04382782429456711, + -0.03173576295375824, + -0.016315586864948273, + 0.05200337991118431, + -0.012850099243223667, + 0.0036037142854183912, + -0.05336356908082962, + -0.0005043538985773921, + -0.03662392869591713, + -0.030097318813204765, + -0.04001304879784584, + 0.05380665138363838, + 0.024737445637583733, + 0.007561177480965853, + -0.00797227956354618, + -0.00829229224473238, + 0.04352300614118576, + -0.08927936106920242, + -0.0238525178283453, + 0.04480597376823425, + -0.006335446611046791, + -0.09762214869260788, + -0.0851312205195427, + 0.028107814490795135, + -0.06017352268099785, + 0.05830246955156326, + 0.006466374266892672, + 0.08512730896472931, + -0.02119080349802971, + -0.02445777878165245, + 0.0460641048848629, + -0.042894329875707626, + -0.0239794310182333, + 0.0025225854478776455, + -0.09816515445709229, + 0.05331684648990631, + -0.10274533927440643, + -0.015338166616857052, + 0.08229408413171768, + -0.00036400716635398567, + -0.002961729420349002, + 0.0638335794210434, + 0.03271166607737541, + -0.006878826301544905, + 0.06273914873600006, + 0.009136456064879894, + -0.0011669836239889264, + 0.004570433404296637, + -0.05388101562857628, + -0.05226629599928856, + -0.031847111880779266, + -0.03324185684323311, + -0.007551883347332478, + -0.08808238804340363, + -0.033444277942180634, + 0.03241953253746033, + 0.035512495785951614, + -0.005487954709678888, + -0.017031393945217133, + -0.019036123529076576, + 0.08343499898910522, + 0.05722438916563988, + 0.04195306450128555, + -0.008316249586641788, + -0.021509701386094093, + -0.011393818072974682, + -0.06983170658349991, + 0.05482539162039757, + 0.03120734728872776, + -3.18654220849455e-33, + 0.07191839814186096, + 0.04356689751148224, + -0.030724072828888893, + 0.11374527961015701, + 0.004068596754223108, + 0.031754110008478165, + 0.013129296712577343, + 0.04550331458449364, + -0.001476102159358561, + 0.057668544352054596, + 0.06135357543826103, + -0.005156902130693197, + -0.0003442916786298156, + 0.174345001578331, + 0.07434868812561035, + -0.05273132771253586, + 0.041946783661842346, + -0.027501195669174194, + -0.03785766288638115, + 0.004824402276426554, + -0.10086177289485931, + 0.018327457830309868, + 0.00014468890731222928, + 0.0013774973340332508, + 0.018482841551303864, + 0.003801284823566675, + 0.03641275689005852, + -0.006357203703373671, + -0.060389988124370575, + 0.014968509785830975, + -0.023203011602163315, + -0.008112549781799316, + 0.06301235407590866, + -0.045508164912462234, + -0.07602491229772568, + 0.020620379596948624, + -0.020315613597631454, + -0.0934019461274147, + 0.05184260383248329, + -0.01989726908504963, + -0.05322146788239479, + -0.022235898301005363, + 0.00487504294142127, + -0.020146172493696213, + 0.01626718044281006, + 0.12533798813819885, + -0.039551347494125366, + 0.003877801587805152, + 0.011487971059978008, + -0.012421716004610062, + -0.039248522371053696, + 0.04353887215256691, + 0.1276329755783081, + 0.01752876490354538, + 0.02392510324716568, + -0.07255467772483826, + -0.03714592009782791, + 0.07439255714416504, + -0.010772059671580791, + 0.0020387028343975544, + 0.010408585891127586, + 0.11884189397096634, + -0.05086865276098251, + 0.1413733959197998, + -0.06403336673974991, + 0.038334667682647705, + -0.04165378212928772, + 0.025847215205430984, + 0.1229679137468338, + -0.07296086847782135, + -0.08264534175395966, + 0.046484362334012985, + 0.005074983928352594, + 0.005708721932023764, + -0.052373006939888, + -0.030588818714022636, + 0.008976194076240063, + -0.0037953651044517756, + 0.017812516540288925, + -0.0882013663649559, + -0.11222260445356369, + 0.06304121017456055, + -0.029236264526844025, + -0.04709160327911377, + -0.008910302072763443, + -0.014754794538021088, + 0.09100288897752762, + -0.02858731336891651, + -0.024201376363635063, + 0.009344070218503475, + -0.13931436836719513, + -0.026618141680955887, + -0.02676733024418354, + -0.0005106694879941642, + -0.08854776620864868, + 7.616059582223775e-34, + -0.015058531425893307, + 0.017855999991297722, + -0.02416958287358284, + 0.08160358667373657, + -0.06560531258583069, + -0.0014534032670781016, + -0.027544258162379265, + -0.06970500946044922, + 0.04891793429851532, + -0.017868852242827415, + -0.015489964745938778, + 0.01635805144906044, + -0.008999140001833439, + -0.03193521499633789, + 0.09871774911880493, + -0.023812605068087578, + -0.12299314141273499, + -0.006243993062525988, + -0.045549288392066956, + -0.004856261890381575, + -0.030915183946490288, + -0.00831507332623005, + -0.0785776898264885, + -0.00643322104588151, + -0.010867800563573837, + 0.011343301273882389, + -0.0618746392428875, + -0.038788091391325, + -0.07857676595449448, + 0.03032185696065426, + -0.037450600415468216, + -0.1309058517217636, + 0.059132177382707596, + 0.05214586481451988, + -0.06862861663103104, + -0.08426159620285034, + 0.09278751164674759, + -0.06170094013214111, + 0.028241727501153946, + 0.006454167887568474, + 0.005890886299312115, + 0.017325276508927345, + 0.10577832162380219, + 0.037021856755018234, + -0.07447392493486404, + 0.011101127602159977, + -0.02272610180079937, + 0.01749720238149166, + -0.05126601830124855, + 0.06676384061574936, + 0.002470004837960005, + 0.017791569232940674, + -0.000436391361290589, + -0.05749984458088875, + -0.0503431111574173, + -0.028691206127405167, + 0.00978857558220625, + -0.05926913022994995, + 0.03267459571361542, + 0.08108767122030258, + -0.03235287964344025, + -0.02280156873166561, + -0.026578018441796303, + 0.07291826605796814, + 0.04407435655593872, + -0.021931907162070274, + 0.05731891840696335, + -0.016936220228672028, + 0.019481053575873375, + 0.03680356219410896, + 0.03904134780168533, + 0.07974619418382645, + -0.00025352631928399205, + -0.0061652460135519505, + 0.04180819168686867, + -0.008751894347369671, + 0.047820862382650375, + 0.0573771633207798, + -0.007298752665519714, + -0.00619000056758523, + 0.01147126778960228, + -0.01562562584877014, + -0.0021163972560316324, + 0.06827465444803238, + -0.053628385066986084, + 0.06694461405277252, + -0.005172334611415863, + 0.030840469524264336, + 0.007984216324985027, + -0.018358644098043442, + -0.008500502444803715, + 0.024393316358327866, + -0.033032555133104324, + -0.02191082388162613, + -0.04901370778679848, + -2.0012748791486956e-08, + -0.03719886392354965, + 0.05913514643907547, + -0.03994828090071678, + -0.05102536082267761, + 0.06120014190673828, + -0.007381858769804239, + 0.06102253496646881, + 0.002095811767503619, + -0.0844046100974083, + 0.003945839125663042, + 0.11475289613008499, + -2.817473614413757e-05, + -0.03562324494123459, + 0.009990833699703217, + 0.01630844548344612, + -0.02352060005068779, + 0.033781178295612335, + 0.05225757509469986, + -0.048012204468250275, + -0.08456439524888992, + -0.018240097910165787, + 0.021600011736154556, + 0.057461030781269073, + 0.0031314382795244455, + -0.03515493497252464, + -0.017401831224560738, + -0.09649484604597092, + 0.04360147938132286, + 0.03997686505317688, + 0.09847437590360641, + 0.06508682668209076, + 0.07172010093927383, + 0.102613665163517, + 0.053065136075019836, + -0.013997356407344341, + -0.0641837865114212, + -0.07523276656866074, + 0.04944534972310066, + -0.011421462520956993, + 0.11514490097761154, + -0.0318150632083416, + -0.017596637830138206, + -0.026040419936180115, + -0.040440358221530914, + 0.016064533963799477, + -0.014927350915968418, + 0.05587179958820343, + -0.04569943621754646, + -0.06758479028940201, + -0.09386878460645676, + -0.07082445919513702, + 0.004303015302866697, + 0.05492974817752838, + -0.008159952238202095, + 0.01043427549302578, + 0.014581689611077309, + 0.009920473210513592, + 0.06800193339586258, + -0.034002143889665604, + -0.01436732430011034, + 0.07421194761991501, + 0.001501089776866138, + -0.005332425236701965, + 0.024758243933320045 + ], + "pencil-simple-bold||write,writing,editing,sign,signature": [ + -0.018388524651527405, + -0.050320226699113846, + -0.004422619938850403, + 0.030255625024437904, + -0.022645264863967896, + -0.021128179505467415, + 0.043871283531188965, + 0.01751457341015339, + -0.03361489623785019, + 0.039645615965127945, + 0.0005238081212155521, + 0.05263786017894745, + 0.03523118793964386, + -0.0004603873530868441, + 0.018486332148313522, + 0.017364364117383957, + -0.03381964936852455, + -0.022736774757504463, + 0.015908250585198402, + 0.010492764413356781, + 0.028457215055823326, + -0.008421806618571281, + 0.026293324306607246, + 0.027736328542232513, + 0.040166959166526794, + -0.0025289440527558327, + 0.0584307499229908, + 0.008207080885767937, + 0.03244347125291824, + -0.06622250378131866, + -0.046878278255462646, + -0.0360790453851223, + 0.10262113064527512, + 0.0107372822239995, + 0.04714861884713173, + 0.02815169282257557, + 0.005734167993068695, + 0.03837617114186287, + 0.008667372167110443, + -0.03587920591235161, + -0.015063554979860783, + -0.11224081367254257, + -0.021577540785074234, + 0.08202821016311646, + 0.0045042484998703, + -0.04111882671713829, + -0.028458882123231888, + 0.010557153262197971, + -0.026893287897109985, + 0.016341526061296463, + 0.021356813609600067, + -0.08831427991390228, + -0.17840079963207245, + -0.027396902441978455, + 0.017901014536619186, + -0.012826317921280861, + -0.0525260791182518, + -0.004998783580958843, + 0.0394696407020092, + -0.05598752945661545, + 0.011314856819808483, + 0.05315108224749565, + 0.012538815848529339, + -0.013108841143548489, + 0.0340954028069973, + 0.04261668026447296, + -0.014314535073935986, + 5.315154339768924e-05, + -0.043920788913965225, + 0.024949995800852776, + 0.030030736699700356, + -0.007948075421154499, + -0.06457055360078812, + -0.03546840324997902, + -0.020893815904855728, + -0.032375652343034744, + -0.02407791279256344, + 0.03957286477088928, + -0.04585018381476402, + -0.06278031319379807, + -0.11212486773729324, + -0.07009483128786087, + -0.06394373625516891, + 0.09454166889190674, + 0.038930267095565796, + 0.07531271129846573, + -0.03682031109929085, + -0.04005841538310051, + 0.026344602927565575, + -0.008216492831707, + -0.031071098521351814, + 0.03310238569974899, + 0.004520815797150135, + -0.015950443223118782, + -0.10671783238649368, + -0.039053190499544144, + 0.13619114458560944, + 0.04146464541554451, + -0.0413631834089756, + 0.0722772479057312, + 0.03752638399600983, + 0.03686410188674927, + 0.05698304995894432, + -0.020237436518073082, + 0.08274158835411072, + -0.01327755767852068, + -0.005683897063136101, + -0.1110442504286766, + -0.019136013463139534, + -0.0735311508178711, + -0.006469423417001963, + -0.05638677626848221, + -0.030229905620217323, + -0.004609326366335154, + 0.052216969430446625, + -0.023497341200709343, + -0.027485087513923645, + 0.0026522779371589422, + 0.06217635050415993, + 0.08379487693309784, + 0.033100634813308716, + -0.022914286702871323, + -0.07175267487764359, + 0.0021000660490244627, + -0.08242446929216385, + 0.011239939369261265, + 0.015935633331537247, + -2.8605996655306074e-33, + 0.11615309864282608, + 0.10989825427532196, + -0.05267144367098808, + 0.07875923067331314, + 0.009862639009952545, + 0.04869939759373665, + -0.04773443937301636, + -0.024351511150598526, + -0.08991321921348572, + 0.03158631548285484, + 0.1125803142786026, + -0.0025340612046420574, + 0.04036203771829605, + 0.17135567963123322, + 0.029767414554953575, + 0.03448088839650154, + 0.025968948379158974, + -0.0587223619222641, + -0.040489520877599716, + 0.0004496932670008391, + -0.047471314668655396, + 0.04402441531419754, + -0.05615371838212013, + 0.001424584654159844, + -0.01538787130266428, + 0.021737443283200264, + 0.014803671278059483, + 0.004870501346886158, + -0.029665248468518257, + -0.005007656756788492, + 0.01149166002869606, + -0.007619704585522413, + 0.027130544185638428, + -0.044446609914302826, + -0.06499692052602768, + -0.01870797760784626, + -0.015259599313139915, + -0.077735535800457, + 0.06321396678686142, + -0.025972183793783188, + -0.03849581629037857, + -0.012257149443030357, + -0.004167437553405762, + -0.0751475840806961, + 0.05177336186170578, + 0.14245077967643738, + -0.04138197749853134, + 0.005795360077172518, + 0.08683421462774277, + -0.024929305538535118, + -0.04760764166712761, + 0.032595161348581314, + 0.04377015307545662, + 0.03726091608405113, + 0.011977817863225937, + -0.047299813479185104, + 0.023933084681630135, + 0.06616126745939255, + -0.017412640154361725, + -0.007753672543913126, + 0.021260004490613937, + 0.1025184839963913, + -0.014175479300320148, + 0.05751780793070793, + -0.08934991806745529, + 0.07309751212596893, + -0.08142399787902832, + 0.006736697629094124, + 0.12525928020477295, + -0.05579414963722229, + -0.07341621816158295, + 0.07650557905435562, + -0.017141306772828102, + -0.011698763817548752, + -0.05097310245037079, + -0.04593752697110176, + 0.017200902104377747, + -0.06096901372075081, + 0.03546367585659027, + -0.04256689175963402, + -0.09723779559135437, + 0.046481676399707794, + -0.0652368888258934, + 0.021515849977731705, + 0.0018192729912698269, + -0.025209031999111176, + 0.029814351350069046, + -0.046925608068704605, + -0.07037939131259918, + -0.0005828089779242873, + -0.056686483323574066, + -0.005956211127340794, + 0.008071173913776875, + -0.051299091428518295, + -0.08772613853216171, + 1.0252921622326119e-33, + 0.03518151491880417, + 0.03158260136842728, + -0.038878317922353745, + 0.10156502574682236, + -0.06447392702102661, + 0.014486758038401604, + -0.0001142797846114263, + -0.020995674654841423, + 0.0699940174818039, + 0.021747225895524025, + 0.006669426336884499, + -0.01721721515059471, + -0.03868861496448517, + -0.024469411000609398, + 0.022006329149007797, + -0.031591955572366714, + -0.06803704798221588, + 0.07942044734954834, + 0.0036370926536619663, + -0.060535281896591187, + -0.08094082772731781, + -0.01251520961523056, + -0.009109829552471638, + 0.06351504474878311, + 0.01742536947131157, + 0.01844673976302147, + -0.04534631967544556, + -0.022509438917040825, + -0.08017229288816452, + -0.012469174340367317, + -0.03924310579895973, + 0.010525244288146496, + 0.06964028626680374, + -0.006766727194190025, + -0.07317458838224411, + -0.05306653305888176, + 0.043026991188526154, + -0.036357514560222626, + 0.010745462030172348, + 0.016370587050914764, + 0.034765325486660004, + 0.009425455704331398, + 0.09792251139879227, + 0.030379021540284157, + -0.04784074053168297, + 0.04170714318752289, + -0.025424029678106308, + 0.006958204321563244, + -0.026833150535821915, + 0.11036721616983414, + 0.04553709179162979, + -0.0586906336247921, + -0.06100109964609146, + -0.037546925246715546, + -0.05733242258429527, + -0.027046827599406242, + 0.07720581442117691, + -0.044314540922641754, + 0.03569185733795166, + 0.054060738533735275, + -0.03273671492934227, + 0.034720178693532944, + 0.004633217118680477, + 0.029252352192997932, + 0.038830481469631195, + -0.0659245178103447, + 0.055436283349990845, + -0.0046160584315657616, + 0.039253558963537216, + 0.001943542854860425, + 0.0783776119351387, + 0.006077693309634924, + 0.03533875569701195, + 0.024351777508854866, + 0.08751920610666275, + -0.033940404653549194, + 0.007441364694386721, + -0.003303902456536889, + -0.028497179970145226, + -0.04470490664243698, + -0.02047196961939335, + 0.004196431953459978, + -0.04948689788579941, + 0.07351287454366684, + -0.02834322117269039, + 0.0688471570611, + -0.027280302718281746, + -0.005407328251749277, + -0.03386330232024193, + 0.0018083155155181885, + -0.013464751653373241, + 0.12648612260818481, + 0.05419471487402916, + -0.037920646369457245, + -0.05745359882712364, + -1.708606767181209e-08, + -0.028282519429922104, + 0.007730969227850437, + -0.023359129205346107, + -0.04957547411322594, + 0.04411350190639496, + 0.0005672922125086188, + 0.08189352601766586, + -0.06422240287065506, + -0.012134574353694916, + 0.013490237295627594, + 0.0862567350268364, + -0.016961676999926567, + -0.09983915090560913, + -0.07749301940202713, + -0.018530061468482018, + 0.016180235892534256, + -0.0053076664917171, + 0.010005318559706211, + -0.07303841412067413, + -0.05083116143941879, + -0.012357262894511223, + 0.036462604999542236, + -0.03952872008085251, + -0.01599077880382538, + -0.016008665785193443, + -0.016825735569000244, + -0.01383250392973423, + 0.0966622456908226, + 0.002306696493178606, + 0.08883467316627502, + 0.022641431540250778, + 0.02819066494703293, + 0.12357093393802643, + 0.026263879612088203, + -0.060455407947301865, + -0.03962680697441101, + 0.030432123690843582, + 0.034044649451971054, + 0.020028842613101006, + 0.15706399083137512, + -0.0049715787172317505, + -0.016927048563957214, + -0.05873516574501991, + -0.052292849868535995, + -0.016229571774601936, + -0.01785271055996418, + 0.07890116423368454, + -0.061154842376708984, + -0.0657833069562912, + -0.09213649481534958, + -0.04345047101378441, + -0.031976163387298584, + 0.0675119087100029, + 0.01338544487953186, + -0.05687475576996803, + 0.0034421661403030157, + 0.01062770839780569, + 0.12787333130836487, + 0.0140000618994236, + -0.0377146452665329, + 0.11852812021970749, + 0.051906269043684006, + -0.004049884155392647, + 0.00016383123875129968 + ], + "pencil-simple-line-bold||write,writing,editing,sign,signature": [ + -0.03854086995124817, + -0.0445600263774395, + -0.013087510131299496, + 0.035195376724004745, + -0.03252623602747917, + -0.021759629249572754, + 0.03138463944196701, + 0.02014431543648243, + -0.03651343286037445, + 0.04044950380921364, + -0.008408895693719387, + 0.05598447471857071, + 0.027133146300911903, + -0.007784946821630001, + 0.005462181754410267, + 0.02558748610317707, + -0.04677397012710571, + -0.03367194905877113, + 0.016694799065589905, + 0.013133231550455093, + 0.01925821416079998, + -0.0015271822921931744, + 0.01997976191341877, + 0.025589291006326675, + 0.029861753806471825, + -0.0013761353911831975, + 0.06881020218133926, + 0.01746508851647377, + 0.018693288788199425, + -0.06971269845962524, + -0.06463108956813812, + -0.02383442223072052, + 0.09876586496829987, + 0.018630096688866615, + 0.05266975238919258, + 0.026687048375606537, + 0.02554447017610073, + 0.03814610466361046, + 0.003472439246252179, + -0.03917538374662399, + -0.012302840128540993, + -0.1158217117190361, + -0.03454955667257309, + 0.07915566861629486, + 0.017316656187176704, + -0.043837886303663254, + -0.02538653463125229, + -0.007603432051837444, + -0.01770724542438984, + 0.03034985437989235, + 0.020453104749321938, + -0.07524064183235168, + -0.17962568998336792, + -0.016661640256643295, + 0.02432030625641346, + -0.006560273934155703, + -0.03630470857024193, + -0.004200821276754141, + 0.041998498141765594, + -0.06072090193629265, + 0.012065083719789982, + 0.0542660616338253, + 0.0053125717677176, + -0.012802118435502052, + 0.02451319620013237, + 0.04013165086507797, + -0.027341069653630257, + 0.01641838625073433, + -0.03861502185463905, + 0.02423468604683876, + 0.01733749359846115, + -0.012553224340081215, + -0.06931540369987488, + -0.03489160165190697, + -0.014466636814177036, + -0.02905205450952053, + -0.024838466197252274, + 0.0399152897298336, + -0.0385001003742218, + -0.05869799107313156, + -0.10639967769384384, + -0.06068383902311325, + -0.05938677862286568, + 0.09302385151386261, + 0.027580728754401207, + 0.0808790773153305, + -0.03302566707134247, + -0.05165510252118111, + 0.041295114904642105, + -0.0046042995527386665, + -0.026919644325971603, + 0.04153910651803017, + 0.003526119515299797, + -0.015446283854544163, + -0.11484242230653763, + -0.035301364958286285, + 0.1252754181623459, + 0.022600041702389717, + -0.043706998229026794, + 0.06687591969966888, + 0.03708387911319733, + 0.03529971465468407, + 0.06340240687131882, + 0.00488658482208848, + 0.07276827096939087, + -0.0036903421860188246, + 0.016491638496518135, + -0.10064687579870224, + -0.02078423835337162, + -0.07023168355226517, + 0.007642291486263275, + -0.0692027136683464, + -0.03677745535969734, + -0.014268905855715275, + 0.05340035259723663, + -0.03175012767314911, + -0.023356258869171143, + 0.011424452066421509, + 0.07184391468763351, + 0.08807416260242462, + 0.023456424474716187, + -0.019406307488679886, + -0.07691719383001328, + 0.002507392782717943, + -0.06911513954401016, + 0.02208399400115013, + 0.0417189821600914, + -2.9535662076592805e-33, + 0.11759291589260101, + 0.09918435662984848, + -0.029645191505551338, + 0.07494587451219559, + 0.023141348734498024, + 0.05227014049887657, + -0.06525391340255737, + -0.02009829692542553, + -0.08560868352651596, + 0.052858442068099976, + 0.10845131427049637, + -0.046421173959970474, + 0.04330682009458542, + 0.17407701909542084, + 0.03430468216538429, + 0.028128206729888916, + 0.017375418916344643, + -0.07113169133663177, + -0.0416000559926033, + 0.014215073548257351, + -0.06834933161735535, + 0.03147393465042114, + -0.04324004426598549, + -0.006901360582560301, + -0.0003555835864972323, + 0.00859423354268074, + 0.013123063370585442, + 0.005895466078072786, + -0.037342898547649384, + -0.007478759624063969, + 0.016068553552031517, + -0.02610788680613041, + 0.038782455027103424, + -0.04060277342796326, + -0.09334410727024078, + -0.0034662324469536543, + -0.026606114581227303, + -0.08385657519102097, + 0.05941920354962349, + -0.016519786790013313, + -0.031262487173080444, + -0.01296427845954895, + 0.003043115371838212, + -0.06667787581682205, + 0.05350129306316376, + 0.14087149500846863, + -0.04641442745923996, + 0.010124938562512398, + 0.07237270474433899, + -0.018588626757264137, + -0.06154552474617958, + 0.038764238357543945, + 0.04995182901620865, + 0.024237127974629402, + 0.02820197120308876, + -0.055931709706783295, + 0.02501533553004265, + 0.07194240391254425, + -0.0233319029211998, + -0.003847470972687006, + 0.024011550471186638, + 0.09530101716518402, + -0.027134880423545837, + 0.06115150824189186, + -0.0695885717868805, + 0.07209931313991547, + -0.07495235651731491, + 0.006917182821780443, + 0.12252794951200485, + -0.055302686989307404, + -0.08777330815792084, + 0.06311888992786407, + -0.007818479090929031, + -0.001860647345893085, + -0.05156390741467476, + -0.05251448228955269, + 0.002388269640505314, + -0.05517185106873512, + 0.055612217634916306, + -0.04606437310576439, + -0.0906735435128212, + 0.04133477061986923, + -0.06097373738884926, + 0.02180333249270916, + 0.004476864356547594, + -0.021542929112911224, + 0.03835831210017204, + -0.04958341643214226, + -0.06781330704689026, + 0.003442618530243635, + -0.061634957790374756, + 0.0007767897332087159, + 0.00021908785856794566, + -0.05027599260210991, + -0.09100423008203506, + 9.376125896177544e-34, + 0.037039343267679214, + 0.03488694503903389, + -0.037094596773386, + 0.10068455338478088, + -0.0683365911245346, + 0.019414855167269707, + -0.0057370588183403015, + -0.008285594172775745, + 0.09053988009691238, + 0.05353270843625069, + 0.009268776513636112, + -0.0013948107371106744, + -0.037228599190711975, + -0.02032928168773651, + 0.04134181886911392, + -0.028559446334838867, + -0.07559958100318909, + 0.07204873114824295, + 0.01969844661653042, + -0.06739688664674759, + -0.07693253457546234, + -0.031111693009734154, + 0.0020804405212402344, + 0.05799273028969765, + 0.009906919673085213, + 0.0015770017635077238, + -0.03592253848910332, + -0.018786318600177765, + -0.08536820113658905, + -0.01595304161310196, + -0.039476428180933, + 0.007278903853148222, + 0.06068864464759827, + -0.008948738686740398, + -0.07402072101831436, + -0.04345479980111122, + 0.04158077389001846, + -0.008790540508925915, + 0.013574964366853237, + 0.01332634873688221, + 0.02238735556602478, + 0.019175011664628983, + 0.10879410803318024, + 0.004391080234199762, + -0.06355971843004227, + 0.04564138129353523, + -0.03468528017401695, + 0.017643658444285393, + -0.03728652372956276, + 0.12098049372434616, + 0.01651298999786377, + -0.03196528181433678, + -0.06426480412483215, + -0.02042343094944954, + -0.06262534111738205, + -0.027602287009358406, + 0.06908298283815384, + -0.03445657342672348, + 0.019611965864896774, + 0.05102870240807533, + -0.02699284628033638, + 0.026524515822529793, + -0.016171863302588463, + 0.030740603804588318, + 0.055028725415468216, + -0.05787267908453941, + 0.05901084095239639, + -0.012450292706489563, + 0.04773304983973503, + 0.007093990221619606, + 0.08493952453136444, + 0.010417711921036243, + 0.024267783388495445, + 0.03146790340542793, + 0.07732901722192764, + -0.03218935802578926, + 0.015224556438624859, + -0.0047818454913794994, + -0.02548849768936634, + -0.03710034862160683, + -0.00834742933511734, + -0.0019587581045925617, + -0.04885994642972946, + 0.08066080510616302, + -0.03422827273607254, + 0.07014917582273483, + -0.030393682420253754, + 0.006916198413819075, + -0.019181357696652412, + -0.006441593635827303, + -0.019503451883792877, + 0.11339715868234634, + 0.020226266235113144, + -0.03191910684108734, + -0.05892284959554672, + -1.7840804389379628e-08, + -0.02759571745991707, + -0.00022302447177935392, + -0.006451976485550404, + -0.05014415085315704, + 0.04930443316698074, + 0.008112059906125069, + 0.09213871508836746, + -0.06490325182676315, + -0.013504368253052235, + 0.006786998827010393, + 0.08314631134271622, + 0.0005762110813520849, + -0.1109524816274643, + -0.0677393451333046, + -0.008776659145951271, + 0.017629830166697502, + -0.010237674228847027, + 0.004765251651406288, + -0.07074565440416336, + -0.048850852996110916, + -0.017978999763727188, + 0.02680652029812336, + -0.04347981885075569, + -0.012964789755642414, + -0.01641872152686119, + -0.013598957099020481, + -0.010979828424751759, + 0.10716614872217178, + -0.006699841469526291, + 0.08389866352081299, + 0.029447229579091072, + 0.025780538097023964, + 0.13126221299171448, + 0.013677889481186867, + -0.04553641378879547, + -0.05599039047956467, + 0.026610875502228737, + 0.038543689996004105, + 0.01835803873836994, + 0.1483018398284912, + -0.011701957322657108, + -0.0025741239078342915, + -0.04581436514854431, + -0.059755902737379074, + -0.006850877311080694, + -0.023571431636810303, + 0.0670986920595169, + -0.058184005320072174, + -0.07676836103200912, + -0.09936521202325821, + -0.04835350811481476, + -0.03209354355931282, + 0.07108340412378311, + -0.007217587903141975, + -0.07363004237413406, + 0.0009275143384002149, + 0.017728548496961594, + 0.11575908958911896, + 0.005378337111324072, + -0.029605992138385773, + 0.11116950213909149, + 0.04874572902917862, + -0.002295502694323659, + -0.008524488657712936 + ], + "pencil-simple-slash-bold||read-only,write,writing,editing": [ + -0.024645505473017693, + -0.0632551982998848, + -0.01841958425939083, + 0.07138820737600327, + -0.012101718224585056, + -0.014103276655077934, + -0.012808052822947502, + 0.01775292679667473, + -0.007818304002285004, + 0.0905170738697052, + 0.010538802482187748, + 0.07889777421951294, + -0.0057334271259605885, + 0.010227354243397713, + -0.06963122636079788, + 0.016928261145949364, + -0.004684791434556246, + -0.012800874188542366, + 0.0037988938856869936, + 0.0037333855871111155, + 0.020769871771335602, + 0.025529805570840836, + 0.019911866635084152, + 0.014487728476524353, + 0.01785331591963768, + 0.004515364766120911, + 0.018627719953656197, + 0.0038300720043480396, + 0.0017727683298289776, + -0.08804485201835632, + -0.02556152082979679, + -0.05590049549937248, + 0.08435402810573578, + 0.008358368650078773, + 0.05931146442890167, + 0.010504771023988724, + 0.00726492702960968, + -0.022298991680145264, + 0.005782065447419882, + -0.038858845829963684, + -0.006664820946753025, + -0.0857403352856636, + -0.03777967020869255, + 0.05585949495434761, + 0.0032847998663783073, + -0.09301941096782684, + -0.010247516445815563, + -0.06311621516942978, + -0.011405190452933311, + 0.04215126112103462, + 0.005616371985524893, + -0.03938402608036995, + -0.15648069977760315, + -0.02484171651303768, + 0.0685589537024498, + -0.015225166454911232, + -0.046321574598550797, + 0.030127856880426407, + 0.07021276652812958, + -0.0551709346473217, + -0.014948714524507523, + 0.04253663495182991, + 0.026353660970926285, + -0.01987421326339245, + 0.012139324098825455, + 0.03953007981181145, + -0.03207565099000931, + 0.027711132541298866, + -0.05359083041548729, + 0.004341236315667629, + 0.023656459525227547, + 0.008630736730992794, + -0.05770343169569969, + -0.006979623809456825, + -0.01872706227004528, + -0.05108148977160454, + -0.035880640149116516, + 0.03545710816979408, + -0.006779755000025034, + -0.03816663846373558, + -0.07436610758304596, + -0.04306419938802719, + -0.021693212911486626, + 0.09383498877286911, + 0.031755805015563965, + 0.10911612957715988, + -0.001362863928079605, + -0.009269836358726025, + 0.044053394347429276, + -0.034591253846883774, + -0.013032390736043453, + 0.015762178227305412, + 0.011852731928229332, + 0.04347340390086174, + -0.10406545549631119, + -0.04291065037250519, + 0.12041802704334259, + 0.053406644612550735, + -0.07434271275997162, + 0.055638913065195084, + 0.0865827277302742, + 0.0565798394382, + 0.019132712855935097, + -0.01118773128837347, + 0.06937986612319946, + 0.007960346527397633, + 0.04361780732870102, + -0.05751784145832062, + -0.05057968944311142, + -0.05800637602806091, + 0.013062653131783009, + -0.05183200538158417, + -0.027102576568722725, + 0.002694960217922926, + 0.02694055065512657, + -0.03553761541843414, + 0.006050963420420885, + -0.017256194725632668, + 0.0726122185587883, + 0.16366340219974518, + 0.0415121391415596, + -0.013820587657392025, + -0.08707856386899948, + 0.021884549409151077, + -0.01575951650738716, + -0.010620377957820892, + 0.04868658259510994, + -3.580150981737623e-33, + 0.1285800039768219, + 0.0682462826371193, + -0.054566361010074615, + 0.041086502373218536, + -0.004197257105261087, + 0.03725539520382881, + -0.02309289202094078, + -0.01709670200943947, + -0.10732362419366837, + -0.003456953912973404, + 0.11518733203411102, + -0.03174456208944321, + 0.024060016497969627, + 0.11556004732847214, + 0.021900122985243797, + 0.029620017856359482, + 0.05422442406415939, + -0.06864666193723679, + -0.016246946528553963, + -0.012021470814943314, + -0.03527297079563141, + 0.05678057298064232, + -0.0762905403971672, + -0.011246706359088421, + -0.031558871269226074, + 0.006290890276432037, + 0.0032533539924770594, + -0.014175537042319775, + -0.005780399311333895, + 0.029775723814964294, + -0.03761349618434906, + 0.012726031243801117, + -0.004128681495785713, + -0.0450018011033535, + -0.11519359797239304, + -0.008082841522991657, + 0.01201925240457058, + -0.049516115337610245, + 0.015053377486765385, + -0.009956284426152706, + -0.04664018750190735, + -0.05013240873813629, + -0.009256251156330109, + -0.06463770568370819, + 0.03539126738905907, + 0.10961546748876572, + -0.05771300569176674, + -0.028094403445720673, + -0.019167687743902206, + -0.007519003003835678, + -0.07736672461032867, + 0.043267495930194855, + 0.08863826096057892, + 0.0329115204513073, + 0.023926815018057823, + -0.0613613985478878, + 0.01721474714577198, + 0.009379222057759762, + 0.019783474504947662, + -0.008014212362468243, + 0.04082291200757027, + 0.11006990820169449, + -0.03150714188814163, + 0.0600898414850235, + -0.10859277844429016, + 0.07663577049970627, + -0.06716896593570709, + -0.008663171902298927, + 0.07127963751554489, + -0.08703704923391342, + -0.13051894307136536, + 0.026481635868549347, + 0.01919834315776825, + -0.022168947383761406, + -0.09477345645427704, + -0.0370061919093132, + -0.008646886795759201, + -0.06324051320552826, + 0.061424389481544495, + -0.07740990817546844, + -0.08447826653718948, + 0.019313156604766846, + -0.04180538281798363, + 0.0396624431014061, + -0.003336893627420068, + -0.04523063078522682, + 0.009173533879220486, + 0.007329530082643032, + -0.05868701636791229, + -0.025161150842905045, + -0.006542810704559088, + -0.04003622755408287, + -0.013391699641942978, + -0.12380912899971008, + -0.05392898619174957, + 1.9782021577873875e-33, + 0.035545215010643005, + 0.057152993977069855, + -0.06182925030589104, + 0.09769673645496368, + -0.11189457774162292, + -0.013970722444355488, + -0.03066948615014553, + -0.022168099880218506, + 0.08460728079080582, + -0.01268420647829771, + -0.018143653869628906, + 0.011368383653461933, + -0.008587375283241272, + -0.032381653785705566, + 0.06037329137325287, + -0.011352136731147766, + -0.09397181123495102, + 0.026360105723142624, + -0.030109014362096786, + -0.034830689430236816, + -0.0948973000049591, + -0.019316285848617554, + 0.014469917863607407, + 0.08893190324306488, + 0.032967180013656616, + 0.0379459448158741, + -0.07551589608192444, + -0.008766808547079563, + -0.054753102362155914, + -0.015044189989566803, + -0.05042441189289093, + 0.013920309022068977, + 0.016586706042289734, + -0.02835414744913578, + -0.07557548582553864, + -0.0015109203523024917, + -0.019082607701420784, + 0.0017400856595486403, + -0.007825822569429874, + 0.0021201239433139563, + 0.052289340645074844, + 0.017116235569119453, + 0.08591075986623764, + 0.03156435117125511, + -0.026017269119620323, + 0.05651215836405754, + -0.016890769824385643, + -0.037496697157621384, + -0.005531834438443184, + 0.09714410454034805, + 0.00864430796355009, + -0.021042145788669586, + -0.03942932188510895, + -0.024449478834867477, + -0.00039058318361639977, + -0.045422617346048355, + 0.050602350383996964, + -0.017550379037857056, + -0.04138503223657608, + 0.04419877007603645, + -0.00408925162628293, + 0.024932757019996643, + -0.05725852772593498, + 0.04877345636487007, + 0.03069271147251129, + -0.07962213456630707, + 0.052384790033102036, + 0.01575661450624466, + 0.08498457819223404, + -0.011084713973104954, + 0.11138471961021423, + 0.036206018179655075, + 0.08702060580253601, + 0.017285795882344246, + 0.1340177208185196, + -0.010557811707258224, + -0.020904557779431343, + 0.01280070561915636, + -0.011722235940396786, + 0.02319582737982273, + -0.0063705239444971085, + 0.030764617025852203, + -0.02202368713915348, + 0.07683660835027695, + -0.017214320600032806, + 0.05645330995321274, + -0.04438481107354164, + 0.03023030050098896, + -0.024712122976779938, + -0.06120946630835533, + -0.033190663903951645, + 0.05842543765902519, + 0.04036344215273857, + -0.030098535120487213, + -0.05088656395673752, + -1.783327263638057e-08, + -0.01908344216644764, + -0.017684098333120346, + -0.01972254365682602, + 0.009376093745231628, + 0.05969236418604851, + -0.012074216268956661, + 0.059133902192115784, + -0.041488539427518845, + -0.001487707020714879, + 0.07095653563737869, + 0.08868569135665894, + -0.012433790601789951, + -0.03311609849333763, + -0.05293041095137596, + -0.025718238204717636, + 0.07472964376211166, + 0.046875592321157455, + 0.009899837896227837, + -0.05558064207434654, + -0.007677790243178606, + -0.033219415694475174, + 0.030047081410884857, + -0.017701322212815285, + 0.02284909598529339, + 0.016408447176218033, + -0.043454792350530624, + -0.02864851988852024, + 0.013879906386137009, + 0.0432770773768425, + 0.09592121094465256, + 0.018704399466514587, + 0.01855326257646084, + 0.08129339665174484, + 0.08515088260173798, + -0.07594682276248932, + -0.017044831067323685, + 0.0290784053504467, + 0.09115046262741089, + 0.012180100195109844, + 0.14931023120880127, + -0.012581724673509598, + -0.07189852744340897, + -0.02405458129942417, + -0.03660326451063156, + -0.05066286027431488, + -0.038115907460451126, + 0.07419745624065399, + -0.08746561408042908, + -0.0690939873456955, + -0.08199908584356308, + -0.044695883989334106, + 0.032217010855674744, + 0.029636625200510025, + 0.04198738560080528, + -0.030736688524484634, + 0.003048353362828493, + 0.03533099219202995, + 0.12721745669841766, + -0.0390082523226738, + -0.022188562899827957, + 0.10857883095741272, + 0.03812776505947113, + -0.005549074616283178, + 0.00526215648278594 + ], + "pencil-slash-bold||read-only,write,writing,editing": [ + -0.02103162743151188, + -0.07438554614782333, + -0.02188541740179062, + 0.06891020387411118, + -0.010103351436555386, + -0.01430967915803194, + 0.0018931165104731917, + 0.01111003290861845, + 0.011738509871065617, + 0.07935448735952377, + 0.009610629640519619, + 0.08739327639341354, + -0.0023838444612920284, + 0.008014461025595665, + -0.06233905628323555, + 0.025639405474066734, + -0.003912253770977259, + -0.012886353768408298, + -0.00012386594607960433, + 0.005654191132634878, + 0.024423759430646896, + 0.042899541556835175, + 0.037067338824272156, + 0.0141923688352108, + 0.017574092373251915, + 0.004420372657477856, + 0.02036593109369278, + -0.009772577323019505, + -0.015359899029135704, + -0.08780582994222641, + -0.030005820095539093, + -0.04975026845932007, + 0.0782148540019989, + 0.012298068031668663, + 0.07097865641117096, + 0.022805029526352882, + -0.0052333916537463665, + -0.03330739960074425, + 0.010271551087498665, + -0.03539523854851723, + 0.002051046583801508, + -0.07710685580968857, + -0.040501393377780914, + 0.054385967552661896, + 0.008283805102109909, + -0.09128064662218094, + -0.009963550604879856, + -0.06931635737419128, + -0.015085636638104916, + 0.0555008165538311, + -0.005792958661913872, + -0.04092879220843315, + -0.14371263980865479, + -0.024592852219939232, + 0.05782847851514816, + -0.018812384456396103, + -0.03379686921834946, + 0.029980847612023354, + 0.07558301836252213, + -0.05017528682947159, + -0.02496914379298687, + 0.05049331113696098, + 0.03170556202530861, + -0.015754451975226402, + 0.017172574996948242, + 0.05100848153233528, + -0.022201308980584145, + 0.027195289731025696, + -0.0597369447350502, + 0.008687108755111694, + 0.03140316903591156, + 0.01351248286664486, + -0.043904561549425125, + -0.015345658175647259, + -0.010268539190292358, + -0.0369284488260746, + -0.03058028407394886, + 0.024655433371663094, + 0.006140196695923805, + -0.06486106663942337, + -0.05996803194284439, + -0.041705723851919174, + -0.020162491127848625, + 0.08293038606643677, + 0.03454934433102608, + 0.12161219120025635, + -0.008475801907479763, + -0.026286235079169273, + 0.03432074934244156, + -0.030831512063741684, + -0.020872971042990685, + -0.0069199916906654835, + 0.0031451687682420015, + 0.05029456689953804, + -0.10623486340045929, + -0.04859329015016556, + 0.11338956654071808, + 0.05901544541120529, + -0.06436551362276077, + 0.05439302697777748, + 0.08517163246870041, + 0.05575965344905853, + 0.002963567851111293, + 0.003680667607113719, + 0.06748099625110626, + 0.007744735572487116, + 0.04532996937632561, + -0.04738613963127136, + -0.05658077076077461, + -0.05586763843894005, + 0.019340168684720993, + -0.05418173596262932, + -0.03150917589664459, + 0.002402035752311349, + 0.01736513338983059, + -0.04178481176495552, + 0.013001149520277977, + -0.016079360619187355, + 0.0695410817861557, + 0.16031889617443085, + 0.04613778367638588, + -0.016055971384048462, + -0.08452626317739487, + 0.015382044017314911, + -0.01057872362434864, + -0.018712403252720833, + 0.05233636498451233, + -3.283181803127558e-33, + 0.12022408097982407, + 0.052884601056575775, + -0.05357583984732628, + 0.031780268996953964, + 0.00313320429995656, + 0.039676930755376816, + -0.02400733344256878, + -0.01842639036476612, + -0.11493587493896484, + -0.010946065187454224, + 0.11136872321367264, + -0.03081035055220127, + 0.02564224600791931, + 0.1116195023059845, + 0.01655222661793232, + 0.03268565237522125, + 0.058967627584934235, + -0.06855255365371704, + -0.01817438192665577, + -0.0014966996386647224, + -0.031169677153229713, + 0.045431893318891525, + -0.08620933443307877, + -0.010234232991933823, + -0.04386304318904877, + 0.0071788388304412365, + -0.002504019532352686, + -0.003591019893065095, + -0.007828834466636181, + 0.033425237983465195, + -0.03792137652635574, + 0.01736498437821865, + -0.006515652872622013, + -0.04880761727690697, + -0.11901261657476425, + -0.007008108776062727, + -0.0003246417618356645, + -0.046650853008031845, + 0.008668866939842701, + 0.006036357954144478, + -0.03958436846733093, + -0.054233063012361526, + -0.01859610714018345, + -0.058595795184373856, + 0.021505208685994148, + 0.10670403391122818, + -0.05951601266860962, + -0.030165428295731544, + -0.024639179930090904, + 0.004937079735100269, + -0.07147154211997986, + 0.048817381262779236, + 0.09706105291843414, + 0.023140061646699905, + 0.017987292259931564, + -0.07704810053110123, + 0.013660642318427563, + 0.005521439015865326, + 0.02724410779774189, + -0.011875535361468792, + 0.04504301771521568, + 0.09762555360794067, + -0.018558567389845848, + 0.05228639394044876, + -0.10706464946269989, + 0.06830611079931259, + -0.06907215714454651, + 0.006078425794839859, + 0.07274026423692703, + -0.093434639275074, + -0.12296278029680252, + 0.023291567340493202, + 0.024386493489146233, + -0.0019027285743504763, + -0.10509517043828964, + -0.045077838003635406, + -0.029916467145085335, + -0.04793514311313629, + 0.07157553732395172, + -0.08500299602746964, + -0.09076063334941864, + 0.010656234808266163, + -0.03549908846616745, + 0.02768094092607498, + 0.0150352343916893, + -0.04103861749172211, + 0.005920713301748037, + -0.01046334020793438, + -0.05481280758976936, + -0.008546620607376099, + 0.005824731197208166, + -0.039401620626449585, + -0.01853974722325802, + -0.12453054636716843, + -0.0557904914021492, + 1.6773760720096787e-33, + 0.033032987266778946, + 0.05664968118071556, + -0.06600587069988251, + 0.0973786860704422, + -0.11491893976926804, + -0.025602536275982857, + -0.04124283790588379, + -0.013570927083492279, + 0.07914534211158752, + -0.022736065089702606, + -0.009045290760695934, + 0.016725480556488037, + -0.0053179580718278885, + -0.03862582892179489, + 0.05678698793053627, + -0.014372877776622772, + -0.08583667129278183, + 0.013244686648249626, + -0.03610880672931671, + -0.02771100401878357, + -0.0951279029250145, + -0.03162766247987747, + 0.03230006992816925, + 0.10232079774141312, + 0.02769182063639164, + 0.03514380007982254, + -0.06469976902008057, + -0.01112425234168768, + -0.05773233249783516, + -0.011259087361395359, + -0.042370475828647614, + 0.02604815550148487, + 0.007439807057380676, + -0.021153094246983528, + -0.06951839476823807, + -0.00957514438778162, + -0.007976891472935677, + -0.005092867184430361, + -0.005669072270393372, + 0.009895948693156242, + 0.0669921487569809, + 0.012154236435890198, + 0.07567169517278671, + 0.03970164433121681, + -0.03268110752105713, + 0.06361929327249527, + -0.023004872724413872, + -0.03352881595492363, + 0.01199191901832819, + 0.10765480995178223, + 0.020355453714728355, + -0.012505927123129368, + -0.026558702811598778, + -0.029557591304183006, + -0.007833358831703663, + -0.04644855484366417, + 0.033690206706523895, + -0.022833488881587982, + -0.043423064053058624, + 0.04527289792895317, + 0.008134064264595509, + 0.028002694249153137, + -0.05495450645685196, + 0.04365136846899986, + 0.04552830383181572, + -0.087045818567276, + 0.05634136497974396, + 0.02370995655655861, + 0.09836883097887039, + -0.009432082064449787, + 0.11138314753770828, + 0.0322117805480957, + 0.07830306142568588, + 0.027230989187955856, + 0.12946030497550964, + -0.012953468598425388, + -0.015611241571605206, + 0.007786625996232033, + -0.009833458811044693, + 0.03921133279800415, + -0.008685728535056114, + 0.03079431690275669, + -0.021540308371186256, + 0.09621640294790268, + -0.016680408269166946, + 0.05667756125330925, + -0.046465709805488586, + 0.04284481331706047, + -0.030894067138433456, + -0.06912190467119217, + -0.02270159125328064, + 0.040229152888059616, + 0.023494070395827293, + -0.03864133730530739, + -0.05559009686112404, + -1.6949533332422106e-08, + -0.026249349117279053, + -0.009852214716374874, + -0.02311241813004017, + 0.012409370392560959, + 0.06011911481618881, + -0.021103672683238983, + 0.04701240733265877, + -0.04154608026146889, + -0.0018509107176214457, + 0.061509452760219574, + 0.08438173681497574, + -0.010001789778470993, + -0.028603529557585716, + -0.06818833202123642, + -0.012111473828554153, + 0.053312063217163086, + 0.04716777056455612, + 0.01202321331948042, + -0.062436480075120926, + -0.016378991305828094, + -0.03300471976399422, + 0.03289949521422386, + -0.009141639806330204, + 0.020951053127646446, + 0.014814955182373524, + -0.04360637813806534, + -0.030511703342199326, + 0.005480318330228329, + 0.039264027029275894, + 0.09021087735891342, + 0.018885262310504913, + 0.018675724044442177, + 0.07541897147893906, + 0.07590904086828232, + -0.0706012025475502, + -0.023569293320178986, + 0.03890811651945114, + 0.08780943602323532, + 0.021932650357484818, + 0.1617506742477417, + -0.015153447166085243, + -0.08356538414955139, + -0.016873478889465332, + -0.030283059924840927, + -0.05852425843477249, + -0.03736797720193863, + 0.07682820409536362, + -0.07317285984754562, + -0.06410221010446548, + -0.08023243397474289, + -0.04782789945602417, + 0.03593849390745163, + 0.029926344752311707, + 0.05632389336824417, + -0.02854320779442787, + -0.015322713181376457, + 0.03632871061563492, + 0.13322320580482483, + -0.03884014114737511, + -0.02550101839005947, + 0.10907301306724548, + 0.003991533536463976, + -0.003171448828652501, + 0.0070617059245705605 + ], + "pentagon-bold||*new*,shapes,polygons,5": [ + 0.020777398720383644, + -0.0014123714063316584, + 0.011465371586382389, + 0.05794159322977066, + 0.012248159386217594, + -0.06426134705543518, + -0.008450252003967762, + -0.04775618389248848, + 0.03748973086476326, + 0.04217574745416641, + -0.009917532093822956, + 0.004340333864092827, + -0.019832327961921692, + -0.015703031793236732, + 0.019534431397914886, + 0.006107685621827841, + -0.01834583282470703, + -0.013737054541707039, + -0.05432593822479248, + -0.025780871510505676, + 0.036348097026348114, + -0.04933943971991539, + -0.004218284040689468, + 0.04109136760234833, + 0.03319987654685974, + 0.027851279824972153, + 0.060590557754039764, + -0.011111841537058353, + -0.008477739058434963, + -0.07602349668741226, + -0.04179658740758896, + 0.04362993314862251, + 0.02831725776195526, + 0.009240732528269291, + 0.01880553551018238, + -0.016018662601709366, + -0.04997243359684944, + 0.050851210951805115, + 0.111669160425663, + 0.07062330096960068, + -0.006506670732051134, + -0.062003474682569504, + 0.07307669520378113, + 0.024105707183480263, + -0.10102615505456924, + -0.0011697270674631, + -0.10154502838850021, + 0.061092641204595566, + 0.051441490650177, + -0.040749840438365936, + 0.0038084429688751698, + -0.1410759687423706, + -0.10540780425071716, + -0.040566444396972656, + 0.014492951333522797, + -0.023487139493227005, + -0.09584186226129532, + -0.0714413970708847, + 0.011930498294532299, + -0.07740186154842377, + 0.10566280037164688, + 0.04489805921912193, + 0.03444020077586174, + 0.021202467381954193, + -0.07422330230474472, + 0.060516320168972015, + 0.014595807529985905, + -0.012962532229721546, + -0.018251845613121986, + 0.011552106589078903, + 0.011958776973187923, + 0.11624466627836227, + -0.021518992260098457, + -0.06050434708595276, + 0.023881006985902786, + -0.08344833552837372, + 0.02446555905044079, + -0.0296032577753067, + -0.011733966879546642, + -0.08359937369823456, + -0.07529371231794357, + 0.059920020401477814, + 0.0008989282068796456, + -0.0031371505465358496, + 0.020204270258545876, + 0.14174741506576538, + -0.07845811545848846, + -0.024763239547610283, + -0.06306295841932297, + -0.030710238963365555, + -0.019956393167376518, + 0.00931299664080143, + -0.033903609961271286, + 0.04630172625184059, + -0.0968971699476242, + 0.032145630568265915, + 0.028227845206856728, + -0.011741592548787594, + -0.029706520959734917, + 0.06714782863855362, + 0.0888829156756401, + -0.00942214485257864, + 0.058398038148880005, + -0.030215635895729065, + -0.030465180054306984, + 0.02313651517033577, + 0.010189596563577652, + 0.007508005481213331, + 0.018774215131998062, + 0.04191621020436287, + -0.0725160464644432, + -0.033609915524721146, + 0.0015363835263997316, + -0.07401177287101746, + -0.06710711121559143, + 0.018911750987172127, + -0.07577891647815704, + -0.03525255247950554, + 0.010829856619238853, + 0.0634089857339859, + 0.048328690230846405, + -0.05290130153298378, + -0.0386907123029232, + -0.0016724957386031747, + -0.03891230747103691, + -0.0019084506202489138, + -0.027919625863432884, + -3.050557715913566e-33, + 0.029261667281389236, + 0.017109116539359093, + 0.05461308732628822, + 0.129469633102417, + -0.001414944534189999, + -0.026826074346899986, + 0.04182398319244385, + -0.0548165962100029, + -0.03729907050728798, + 0.037806861102581024, + -0.12073831260204315, + 0.034384094178676605, + -0.0033070335630327463, + 0.04457647353410721, + 0.12270376831293106, + -0.06761128455400467, + 0.009510296396911144, + -0.01374866720288992, + -0.06486765295267105, + -0.0046217781491577625, + -0.03827500343322754, + 0.08475437760353088, + -0.04463151469826698, + -0.041566140949726105, + -0.01678701490163803, + 0.030062075704336166, + -0.0028407752979546785, + 0.018462439998984337, + -0.04688664525747299, + 0.04675713926553726, + -0.061542656272649765, + 0.013803370296955109, + -0.00733310729265213, + 0.0415983721613884, + -0.020053962245583534, + 0.04234844446182251, + 0.004621872678399086, + -0.004444116726517677, + 0.005981311202049255, + -0.02298976294696331, + 0.009560459293425083, + 0.015885695815086365, + -0.010393320582807064, + 0.03779302537441254, + 0.043034423142671585, + 0.1372721940279007, + -0.009620081633329391, + -0.05387524515390396, + 0.01591501384973526, + 0.024291008710861206, + -0.018988171592354774, + 0.10480895638465881, + 0.004645305220037699, + -0.026496754959225655, + -0.04480887949466705, + -0.0676710233092308, + -0.04657993093132973, + 0.05231704190373421, + -0.046533964574337006, + 0.04706704616546631, + 0.0781724825501442, + 0.04350612312555313, + -0.02781454473733902, + 0.022976309061050415, + -0.10017608106136322, + 0.07510340958833694, + -0.03943711519241333, + 0.05027879774570465, + 0.06453746557235718, + -0.026107970625162125, + -0.015826033428311348, + 0.07720169425010681, + -0.008274119347333908, + 0.062250636518001556, + -0.007965701632201672, + 0.05203850567340851, + 0.002222649520263076, + -0.021610094234347343, + 0.034512776881456375, + -0.023700034245848656, + -0.04775446280837059, + -0.03556947782635689, + -0.040024902671575546, + -0.05601256713271141, + 0.009284615516662598, + 0.028672268614172935, + 0.04843984916806221, + -0.0072241285815835, + 0.03592553362250328, + 0.06002741679549217, + -0.052724454551935196, + -0.06239945441484451, + 0.028985939919948578, + 0.028192218393087387, + -0.059062641113996506, + -8.462497477996143e-35, + -0.08392027020454407, + -0.023955492302775383, + -0.07462994754314423, + -0.11796532571315765, + -0.05480876564979553, + 0.06972912698984146, + -0.009456385858356953, + 0.01166658103466034, + -0.10049428790807724, + -0.024346543475985527, + 0.04593590646982193, + 0.03614458069205284, + -0.0314720943570137, + -0.012322884052991867, + -0.009539196267724037, + -0.04209316521883011, + -0.01890033669769764, + 0.020277859643101692, + -0.013959920965135098, + 0.0558093823492527, + 0.05406176298856735, + -0.015756040811538696, + -0.11181481927633286, + 0.010578765533864498, + -0.021753134205937386, + 0.09499666839838028, + -0.01275635976344347, + -0.0672314465045929, + 0.02419726364314556, + 0.028834311291575432, + -0.05144951120018959, + -0.141993910074234, + 0.030404366552829742, + 0.11535482108592987, + -0.030201157554984093, + -0.05871875211596489, + 0.014294149354100227, + -0.08555848896503448, + 0.03036351315677166, + -0.03564924746751785, + -0.0020313411951065063, + 0.00435222964733839, + 0.020421579480171204, + 0.11678280681371689, + -0.0345202274620533, + -0.02134544774889946, + -0.04372773692011833, + -0.05112570524215698, + -0.044956088066101074, + 0.00836008507758379, + -0.04772500693798065, + -0.060726623982191086, + 0.060910843312740326, + -0.05914656072854996, + 0.019626883789896965, + 0.03738902509212494, + -0.021526576951146126, + 0.05851058289408684, + 0.03617868945002556, + 0.07216097414493561, + -0.1347205936908722, + 0.05282571166753769, + -0.02201816998422146, + 0.053064875304698944, + 0.06591302901506424, + -0.027839843183755875, + 0.06376675516366959, + -0.0003382287104614079, + -0.05725116655230522, + 0.02317015267908573, + 0.049234453588724136, + 0.05206592381000519, + -0.11243913322687149, + 0.011896032840013504, + 0.013618900440633297, + -0.06661128252744675, + 0.03630457818508148, + 0.028537439182400703, + -0.03665783628821373, + 0.1097712367773056, + -0.04789367690682411, + -0.0490366593003273, + -0.02261136844754219, + 0.01422688364982605, + 0.005004350561648607, + 0.006366932764649391, + 0.0825200229883194, + 0.024640996009111404, + 0.023838642984628677, + 0.04416213929653168, + -0.010625319555401802, + 0.06486647576093674, + 0.03747057169675827, + 0.02447742596268654, + 0.025501495227217674, + -1.8827540415600197e-08, + 0.029633594676852226, + -0.020825497806072235, + -0.05409478023648262, + -0.039300791919231415, + -0.00013903641956858337, + -0.08135852962732315, + -0.021871432662010193, + -0.052216898649930954, + -0.10455269366502762, + -0.019992949441075325, + 0.08276650309562683, + 0.058523572981357574, + -0.04440682753920555, + 0.06866554170846939, + -0.005872279405593872, + -0.021542856469750404, + -0.013050721026957035, + 0.026941915974020958, + 0.020624354481697083, + -0.11307448148727417, + -0.04348161816596985, + 0.03141925111413002, + 0.06289111077785492, + -0.015336944721639156, + 0.044670697301626205, + 0.015508568845689297, + 0.031900785863399506, + 0.0011465416755527258, + 0.004637541715055704, + 0.07065902650356293, + -0.022573670372366905, + 0.05131746828556061, + 0.0023303579073399305, + 0.011564510874450207, + -0.06191233545541763, + 0.02656215988099575, + -0.10076787322759628, + 0.014451744966208935, + -0.029522700235247612, + 0.08216740190982819, + 0.01451884862035513, + -0.016375858336687088, + 0.018392715603113174, + -0.032487064599990845, + 0.06470651179552078, + 0.00405488396063447, + 0.04646305367350578, + -0.06465265154838562, + -0.020722918212413788, + -0.13463829457759857, + -0.05907956883311272, + -0.006496107671409845, + 0.020514579489827156, + 0.06844018399715424, + -0.03086140938103199, + -0.016994647681713104, + 0.03119674324989319, + 0.07147973030805588, + 0.04009731486439705, + 0.016771743074059486, + 0.08034419268369675, + 0.025162598118185997, + 0.01254646573215723, + 0.028995074331760406 + ], + "pentagram-bold||star,wicca,satan,satanism,religion,spirituality,evil,magic": [ + -0.010135436430573463, + -0.0814899429678917, + -0.009963066317141056, + 0.028657598420977592, + -0.0066033415496349335, + -0.05666714161634445, + 0.03426279500126839, + -0.086046501994133, + 0.08693192154169083, + -0.025902293622493744, + 0.005059901624917984, + 0.024370253086090088, + 0.03446545451879501, + -0.039752501994371414, + -0.036802783608436584, + -0.01550324633717537, + -0.0433286689221859, + 0.0068924520164728165, + -0.002399468794465065, + 0.03816705942153931, + -0.04359698295593262, + 0.024358248338103294, + 0.021682919934391975, + -0.028016824275255203, + 0.039809487760066986, + -0.004008165095001459, + -0.025317411869764328, + -0.031790465116500854, + 0.0013883503852412105, + -0.07545290142297745, + -0.0454731322824955, + 0.05531752109527588, + -0.09759458899497986, + -0.005454543046653271, + -0.019680989906191826, + -0.003429315285757184, + -0.016229242086410522, + 0.006597877945750952, + 0.01050250232219696, + 0.0007612378103658557, + 0.0244506374001503, + -0.04024394229054451, + -0.0042881593108177185, + 0.008936690166592598, + -0.056943077594041824, + 0.02240162342786789, + -0.06834622472524643, + 0.028324835002422333, + -0.02094411477446556, + -0.01899266429245472, + -0.012654734775424004, + -0.0715850293636322, + -0.015442240983247757, + 0.10202242434024811, + 0.0035769729875028133, + -0.10765501856803894, + -0.03668362274765968, + -0.0567171573638916, + 0.02914530411362648, + -0.007561082951724529, + 0.07614266127347946, + 0.025968195870518684, + 0.06461931765079498, + 0.06442171335220337, + 0.05854314938187599, + -0.07251425087451935, + -0.058826860040426254, + 0.06032506376504898, + -0.024942683055996895, + -0.047149889171123505, + -0.026980137452483177, + 0.008910720236599445, + -0.09359903633594513, + 0.03874959796667099, + -0.005564429797232151, + 0.004288931377232075, + 0.022218337282538414, + -0.09553272277116776, + -0.06418024748563766, + -0.03892587870359421, + 0.09021767973899841, + 0.02992788702249527, + 0.05414939299225807, + 0.08226733654737473, + 0.0968308374285698, + 0.001133630983531475, + -0.029198767617344856, + -0.026796046644449234, + -0.04819976165890694, + 0.056118663400411606, + -0.047899600118398666, + 0.07233826071023941, + -0.013585373759269714, + -0.0016762318555265665, + -0.06636302173137665, + 0.009140944108366966, + -0.002731467830017209, + -0.07834911346435547, + -0.11656098812818527, + 0.16041181981563568, + -0.07386455684900284, + 0.05044592544436455, + 0.010957366786897182, + 0.04642094671726227, + 0.015128270722925663, + -0.03438951075077057, + -0.03625238686800003, + -0.06042061373591423, + -0.005502044688910246, + -0.007581761572510004, + 0.05313144996762276, + -0.05572354048490524, + -0.0842265784740448, + -0.13090556859970093, + 0.06297937780618668, + -0.024945879355072975, + -0.05000388249754906, + 0.05810171738266945, + 0.061903078109025955, + 0.0024177173618227243, + 0.011368594132363796, + 0.07193368673324585, + 0.06187646836042404, + 0.043001316487789154, + -0.013715232722461224, + -0.024045778438448906, + -0.0433647595345974, + -8.164266525586615e-34, + 0.02921355329453945, + 0.04228822886943817, + 0.04691677540540695, + 0.0246236864477396, + 0.01267156284302473, + -0.007870547473430634, + -0.037114836275577545, + -0.04262034595012665, + -0.058056581765413284, + -0.07769927382469177, + 0.0794806033372879, + 0.06070728227496147, + 0.0017662092577666044, + 0.10369966924190521, + -0.014194350689649582, + 0.006471332628279924, + 0.05748040974140167, + -0.048668764531612396, + -0.006076515186578035, + -0.0047925119288265705, + 0.018324917182326317, + 0.020139187574386597, + -0.03149320185184479, + -0.012007636949419975, + 0.05081167072057724, + -0.06752721220254898, + -0.009173041209578514, + 0.0412200503051281, + 0.021389590576291084, + 0.05068804696202278, + -0.00035761765320785344, + 0.04670627415180206, + 0.08865610510110855, + -0.03760455548763275, + 0.008419700898230076, + -0.04679685831069946, + 0.03556486591696739, + -0.11867246776819229, + 0.054213747382164, + -0.08283993601799011, + -0.00020728317031171173, + 0.014539608731865883, + -0.041718173772096634, + 0.007071138359606266, + -0.017823388800024986, + 0.1533224880695343, + -0.008113548159599304, + -0.06597461551427841, + 0.021766776219010353, + 0.10170727223157883, + -0.02796587534248829, + 0.016377240419387817, + -0.012711348943412304, + -0.01240263320505619, + -0.05361706763505936, + -0.06152264401316643, + -0.0588696151971817, + -0.0015382444253191352, + 0.03432769700884819, + -0.02231062389910221, + -0.018021224066615105, + 0.06056145578622818, + -0.016729678958654404, + -0.045992594212293625, + -0.04737749695777893, + 0.0017401183722540736, + 0.018594857305288315, + 0.04452170431613922, + 0.07342589646577835, + 0.015654107555747032, + -0.11450345069169998, + 0.07339949160814285, + -0.0032324506901204586, + 0.0007566444692201912, + -0.010891562327742577, + -0.020311929285526276, + 0.013959323987364769, + -0.048855073750019073, + -0.07970507442951202, + 0.05085097998380661, + -0.03826019540429115, + -0.01244526170194149, + 0.046816375106573105, + 0.0011334011796861887, + 0.02154412679374218, + -0.05312584340572357, + 0.004872186575084925, + -0.06657649576663971, + 0.016019433736801147, + -0.03439168259501457, + 0.021502681076526642, + 0.11315620690584183, + 0.07333394885063171, + -0.02647745981812477, + -0.18836739659309387, + -3.0152830589908084e-34, + -0.0006962085608392954, + -0.03857647627592087, + -0.0031660161912441254, + 0.0021365268621593714, + 0.004186333157122135, + -0.031536441296339035, + -0.0814645066857338, + 0.04846518486738205, + 0.046617504209280014, + 0.061353377997875214, + 0.0020533546339720488, + 0.009459618479013443, + -0.066822849214077, + -0.032497335225343704, + 0.04203900322318077, + -0.11167522519826889, + 0.01201709359884262, + 0.07735012471675873, + -0.049521107226610184, + 0.05485062301158905, + 0.03331669792532921, + 0.07172742486000061, + -0.07310372591018677, + 0.021374288946390152, + -0.005989134777337313, + 0.03747107461094856, + 0.09595078229904175, + -0.01665670983493328, + -0.0006693204049952328, + 0.01916542835533619, + 0.026503322646021843, + 0.024126091971993446, + 0.05174390226602554, + 0.04349981248378754, + -0.031252048909664154, + 0.01204694528132677, + -0.01443384401500225, + -0.010673357173800468, + -0.005235228221863508, + -0.053202975541353226, + 0.05721525475382805, + 0.04838409647345543, + 0.03345484659075737, + -0.06312713027000427, + -0.055126022547483444, + -0.010061354376375675, + -0.034631408751010895, + 0.10116709023714066, + 0.00880454946309328, + 0.020851347595453262, + 0.03169365972280502, + -0.023774566128849983, + 0.0011296194279566407, + 0.02767108753323555, + -0.014186730608344078, + -0.05721162632107735, + 0.018207235261797905, + -0.03123103268444538, + 0.06185051426291466, + 0.08486844599246979, + 0.03048166260123253, + 0.04973192885518074, + -0.008991844020783901, + 0.031040066853165627, + 0.013108927756547928, + -0.04079953953623772, + 0.013096148148179054, + 0.07293885946273804, + -0.02505248412489891, + 0.0030520991422235966, + -0.009874601848423481, + 0.049219463020563126, + -0.04056985303759575, + 0.025380577892065048, + 0.061186425387859344, + 0.029997142031788826, + 0.06164126098155975, + -0.03295208886265755, + -0.014095508493483067, + 0.02206582948565483, + -0.07162624597549438, + -0.011564457789063454, + -0.03761499002575874, + 0.04390136897563934, + 0.08250603824853897, + 0.026836251839995384, + -0.10017839074134827, + 0.04046882688999176, + -0.019100354984402657, + 0.04420355334877968, + -0.026704173535108566, + 0.01481153629720211, + 0.08176454901695251, + -0.006071809679269791, + 0.013583684340119362, + -2.3010951366586596e-08, + -0.030387870967388153, + -0.004973051603883505, + 0.0027250132989138365, + 0.04105597361922264, + 0.043883562088012695, + -0.017272718250751495, + 0.05346614122390747, + -0.11300476640462875, + -0.032376062124967575, + 0.027337025851011276, + 0.028836024925112724, + 0.08539870381355286, + 0.0017395486356690526, + -0.05234115198254585, + 0.04996384680271149, + -0.007774951867759228, + -0.04348735511302948, + -0.002680616918951273, + 0.005813600495457649, + -0.028321024030447006, + 0.04616944119334221, + 0.04983150586485863, + 0.04061560332775116, + -0.11539912968873978, + 0.03310650587081909, + -0.033929694443941116, + -0.08578325062990189, + 0.031830333173274994, + -0.03168770670890808, + -0.017069580033421516, + 0.06586536020040512, + 0.027239646762609482, + -0.009071447886526585, + 0.012164208106696606, + -0.12500210106372833, + 0.013383262790739536, + -0.11996307969093323, + -0.048564665019512177, + 0.01395102683454752, + 0.04254180192947388, + 0.07239409536123276, + -0.03548254817724228, + 0.11013972759246826, + -0.041205815970897675, + -0.09521283209323883, + -0.014108865521848202, + 0.04322177916765213, + -0.058833371847867966, + 0.014404632151126862, + -0.08947819471359253, + -0.0729280412197113, + -0.0026631553191691637, + 0.024211931973695755, + 0.06302547454833984, + -0.01456400565803051, + -0.03909987583756447, + -0.0012811896158382297, + 0.1056179404258728, + -0.017997652292251587, + -0.03575994074344635, + 0.14909864962100983, + -0.038042787462472916, + 0.016087427735328674, + 0.054704081267118454 + ], + "pepper-bold||food,spicy,chile,vegetable": [ + -0.004620070569217205, + -0.07905220240354538, + -0.07775121182203293, + 0.112279511988163, + 0.08329083025455475, + 0.057351209223270416, + -0.028779130429029465, + -0.009241552092134953, + -0.015052272006869316, + -0.07223670184612274, + 0.12100371718406677, + -0.08419669419527054, + 0.03552328795194626, + -0.03182259574532509, + 0.044569503515958786, + -0.037054795771837234, + 0.09093329310417175, + 0.017594696953892708, + 0.008463259786367416, + -0.04493308067321777, + 0.018050307407975197, + 0.05966997146606445, + 0.026255391538143158, + 0.03205976262688637, + 0.04119831696152687, + 0.06653506308794022, + 0.02276492491364479, + -0.01347233448177576, + -0.0198683999478817, + -0.11847036331892014, + 0.018183384090662003, + 0.04183405265212059, + 0.08234801888465881, + -0.012614835985004902, + 0.02900436893105507, + -0.0421285517513752, + -0.0504097081720829, + -0.10004114359617233, + 0.1027209460735321, + 0.011104677803814411, + -0.005699058063328266, + -0.04095394164323807, + 0.05742960795760155, + -0.0390193797647953, + 0.012757409363985062, + -0.01994358003139496, + -0.057145170867443085, + 0.015907129272818565, + 0.013438453897833824, + -0.026974188163876534, + -0.02336098439991474, + -0.024374889209866524, + -0.06353557109832764, + 0.05919661372900009, + 0.022171102464199066, + 0.009441946633160114, + -0.04986909404397011, + -0.07819988578557968, + 0.03481312096118927, + 0.1017724871635437, + -0.024763958528637886, + -0.008164968341588974, + 0.01305641233921051, + 0.04685280844569206, + -0.07002677768468857, + -0.019398795440793037, + -0.018735358491539955, + 0.018298272043466568, + 0.021179869771003723, + -0.008018692024052143, + 0.03288106992840767, + 0.0010696141980588436, + 0.009294445626437664, + 0.03665793314576149, + -0.04663144424557686, + -0.0036836552899330854, + 0.056520938873291016, + -0.04023010656237602, + -0.05669218674302101, + -0.04467577859759331, + -0.04634714499115944, + -0.024572499096393585, + -0.07790158689022064, + -0.0013684517471119761, + 0.022180810570716858, + 0.0382184162735939, + -0.05847768485546112, + -0.058274999260902405, + -0.049267735332250595, + 0.013108275830745697, + -0.013117345049977303, + -0.0026780832558870316, + -0.011064063757658005, + 0.0507369227707386, + -0.03336732089519501, + 0.07799479365348816, + 0.06246935948729515, + -0.08660925179719925, + -0.09755834937095642, + 0.030130842700600624, + 0.002876624232158065, + -0.015179922804236412, + -0.08745062351226807, + -0.029078686609864235, + -0.014588123187422752, + -0.03714406490325928, + -0.02197861857712269, + -0.042096447199583054, + -0.008555666543543339, + 0.03218734636902809, + 0.008696019649505615, + -0.0457942858338356, + -0.09236408025026321, + -0.09591773897409439, + -0.010670988820493221, + -0.08291973918676376, + 0.04801008850336075, + -0.05886745825409889, + 0.037305355072021484, + 0.011912166140973568, + -0.01995714381337166, + -0.05063195526599884, + -0.06124592199921608, + -0.02999504655599594, + 0.008265528827905655, + -0.03654181584715843, + 0.05261567234992981, + -1.3362693764136404e-33, + 0.05221688002347946, + -0.00679531367495656, + -0.015601337887346745, + 0.07158175855875015, + 0.0031518565956503153, + -0.00011766549141611904, + -0.03260298818349838, + -0.009248037822544575, + -0.02729886583983898, + -0.020010076463222504, + 0.005040743388235569, + 0.06871524453163147, + -0.0895899087190628, + 0.10944684594869614, + 0.03104652650654316, + -0.016391688957810402, + 0.035114187747240067, + -0.02204628847539425, + -0.011204126290977001, + -0.004414601717144251, + -0.03801598772406578, + 0.09632368385791779, + 0.000929598871152848, + 0.010317797772586346, + -0.060847844928503036, + -0.0019243883434683084, + 0.024876762181520462, + -0.09204606711864471, + -0.04545215144753456, + 0.013162176124751568, + 0.021007036790251732, + 0.005043020937591791, + 0.02100505866110325, + 0.07668544352054596, + 0.0032262762542814016, + 0.036173515021800995, + -0.07440546900033951, + -0.02986995130777359, + -0.046188365668058395, + 0.056169819086790085, + -0.03372560068964958, + 0.011518526822328568, + -0.06311482191085815, + 0.04248298332095146, + 0.025568950921297073, + 0.0776774063706398, + -0.0025507519021630287, + -0.020027967169880867, + 0.05406549572944641, + 0.009794379584491253, + 0.02872498333454132, + 0.00829392857849598, + 0.043649595230817795, + 0.027385925874114037, + 0.046331439167261124, + 0.019493741914629936, + 0.0010698313126340508, + 0.09873323142528534, + 0.00856887735426426, + -0.03519129753112793, + -0.014438695274293423, + 0.03766551986336708, + 0.023813754320144653, + -0.060080524533987045, + 0.02189057134091854, + 0.08738665282726288, + -0.15253399312496185, + -0.0007045886595733464, + 0.08083683997392654, + -0.0007283753366209567, + 0.018669622018933296, + 0.029637983068823814, + 0.031652797013521194, + 0.039679571986198425, + 0.030570365488529205, + 0.05077381432056427, + -0.007666976191103458, + 0.049472130835056305, + 0.07097053527832031, + -0.01039302907884121, + -0.00895503256469965, + 0.028366636484861374, + 0.021276310086250305, + 0.1361960768699646, + -0.02138478308916092, + 0.0703067034482956, + -0.013012418523430824, + -0.04942522197961807, + 0.08661317825317383, + 0.03549825772643089, + -0.06572449952363968, + 0.003448287257924676, + 0.016747096553444862, + -0.03999074921011925, + -0.09256007522344589, + -5.647875207699286e-34, + -0.003397191409021616, + 0.006164130289107561, + -0.0002896405931096524, + 0.05531584843993187, + -0.008846821263432503, + -0.020519685000181198, + -0.13058114051818848, + 0.014539424329996109, + 0.02217450737953186, + 0.02239673025906086, + -0.03183440864086151, + -0.07888393104076385, + -0.010025672614574432, + -0.1442384421825409, + -0.004392321687191725, + 0.07403873652219772, + 0.029133006930351257, + 0.11718058586120605, + -0.04244903847575188, + 0.07167398184537888, + -0.10855714231729507, + -0.013570521026849747, + -0.021105891093611717, + 0.04337397962808609, + -0.009887688793241978, + 0.07170826196670532, + 0.06873654574155807, + -0.04498026892542839, + -0.03420659899711609, + -0.04183147847652435, + 0.04109200835227966, + -0.023327317088842392, + 0.023905739188194275, + 0.0016195573844015598, + -0.035026915371418, + 0.11906338483095169, + -0.05097772926092148, + -0.04919711872935295, + 0.03547224774956703, + 0.030790291726589203, + -0.06784088164567947, + 0.01501280814409256, + 0.07309187203645706, + 0.016614744439721107, + 0.03493267297744751, + -0.07539626210927963, + 0.0054329088889062405, + -0.06935685127973557, + -0.06670480221509933, + 0.10090503096580505, + 0.035558104515075684, + -0.016298070549964905, + -0.08769503980875015, + -0.01723043993115425, + -0.03402968496084213, + -0.10151036083698273, + -0.04026056081056595, + 0.010402558371424675, + 0.026718299835920334, + -0.047224223613739014, + -0.0026452005840837955, + 0.04932941496372223, + -0.03773486986756325, + 0.06851910054683685, + 0.02895234152674675, + -0.030207667499780655, + 0.008784004487097263, + -0.04192058742046356, + 0.05184609815478325, + -0.023083562031388283, + 0.07696206122636795, + 0.011500295251607895, + 0.039495959877967834, + 0.004793499130755663, + 0.07334747165441513, + -0.04261338710784912, + 0.004284503869712353, + -0.016845719888806343, + 0.008181667886674404, + 0.05863542482256889, + -0.052435074001550674, + -0.01732226274907589, + -0.049090426415205, + 0.037532489746809006, + -0.062365371733903885, + 0.04645659029483795, + -0.038759421557188034, + 0.030773283913731575, + 0.0778631716966629, + 0.0256514772772789, + -0.019846748560667038, + 0.054061658680438995, + -0.014268714003264904, + -0.026643749326467514, + 0.09349139779806137, + -1.692819395771039e-08, + 0.05730047821998596, + -0.050999607890844345, + -0.08357308804988861, + 0.10223188251256943, + 0.04014598950743675, + -0.018979227170348167, + -0.06502934545278549, + -0.11250929534435272, + -0.003122818423435092, + 0.004936177749186754, + 0.010863198898732662, + 0.11583258956670761, + -0.07557125389575958, + -0.05541543662548065, + -0.0005799915525130928, + 0.010237281210720539, + -0.012330937199294567, + 0.05915052443742752, + -0.012263261713087559, + 0.06392122805118561, + -0.02297213487327099, + 0.0406278558075428, + 0.02144092507660389, + -0.09853233397006989, + 0.07233107089996338, + 0.005526107270270586, + -0.05070839449763298, + -0.011500759981572628, + 0.11748552322387695, + 0.02451629377901554, + 0.09887966513633728, + -0.032347094267606735, + -0.027749301865696907, + -0.038735389709472656, + -0.05513741075992584, + -0.010702216997742653, + -0.005563492886722088, + -0.03215480223298073, + -0.03987598419189453, + 0.05923555791378021, + -0.03615112975239754, + -0.03667097166180611, + -0.035106364637613297, + 0.017707346007227898, + -0.1278061866760254, + -0.023995881900191307, + -0.03114638850092888, + 0.012951684184372425, + -0.06829841434955597, + -0.02988021820783615, + -0.07302432507276535, + -0.06420507282018661, + 0.04794935882091522, + -0.013170711696147919, + -0.05349890887737274, + -0.028633465990424156, + 0.07789765298366547, + 0.04107803478837013, + -0.0036666973028331995, + -0.003791271010413766, + 0.05893131345510483, + 0.023067058995366096, + 0.024845369160175323, + 0.06842682510614395 + ], + "percent-bold||%,percentage,percentile,ratio,delta,mathematics,arithmetic,calculator": [ + 0.007784613408148289, + -0.06883728504180908, + -0.0660402923822403, + -0.0020250899251550436, + -0.01760675199329853, + -0.05404859036207199, + -0.006933422759175301, + 0.056484103202819824, + -0.018138675019145012, + 0.015378528274595737, + 0.06425131112337112, + -0.028869198635220528, + 0.0463164858520031, + -0.002535708714276552, + 0.010665517300367355, + 0.0019090048735961318, + 0.0034223031252622604, + 0.0377999022603035, + -0.07423900067806244, + -0.03422554209828377, + -0.03378734365105629, + 0.023236975073814392, + 0.0731203481554985, + 0.019523702561855316, + 0.11926785856485367, + 0.0052061667665839195, + 0.04800209775567055, + 0.025018278509378433, + 0.05653543025255203, + -0.04970130696892738, + -0.08838678896427155, + 0.03269875422120094, + 0.15840771794319153, + -0.023884842172265053, + -0.04476332291960716, + -0.019702432677149773, + -0.026994958519935608, + -0.0030901788268238306, + -0.009357054717838764, + 0.08055786043405533, + -0.04724739491939545, + -0.059097353368997574, + 4.706328400061466e-05, + 0.06323207914829254, + -0.020749792456626892, + -0.029965190216898918, + -0.09579892456531525, + -0.015716133639216423, + 0.006319452077150345, + 0.05147093906998634, + -0.08523731678724289, + -0.011311862617731094, + -0.12594017386436462, + 0.044012945145368576, + 0.008662528358399868, + 0.0032259183935821056, + 0.00522709870710969, + -0.026190955191850662, + 0.028321126475930214, + -0.07615780085325241, + -0.029273899272084236, + 0.040110014379024506, + 0.02150469645857811, + 0.028716711327433586, + 0.05238378793001175, + 0.02296873740851879, + -0.0017626543994992971, + 0.024250255897641182, + 0.006692932453006506, + -0.013267136178910732, + -0.0139607023447752, + 0.012127605266869068, + -0.013918166980147362, + 0.00799594633281231, + -0.02160811424255371, + 0.005130248609930277, + 0.03889918699860573, + 0.05083901807665825, + 0.013575073331594467, + -0.08973357081413269, + -0.033172253519296646, + -0.04016644507646561, + -0.034124549478292465, + 0.009354721754789352, + 0.0145039027556777, + 0.051237646490335464, + 0.009009811095893383, + -0.03032035380601883, + 0.01916554383933544, + -0.06606147438287735, + -0.0073388079181313515, + -0.007044745143502951, + -0.03697047010064125, + -0.023764271289110184, + -0.018255459144711494, + 0.10059928894042969, + -0.023724455386400223, + -0.05629553645849228, + 0.030568374320864677, + 0.020977264270186424, + 0.013634196482598782, + -0.01025460846722126, + 0.008135142736136913, + -0.030210163444280624, + -0.07586479932069778, + -0.10396970808506012, + 0.05637519434094429, + 0.02786288410425186, + 0.04190293699502945, + -0.010648042894899845, + -0.00794418528676033, + -0.07206851989030838, + -0.029352419078350067, + -0.033682290464639664, + 0.03142896294593811, + -0.11589370667934418, + 0.022324824705719948, + -0.00731627969071269, + 0.145526722073555, + 0.024444865062832832, + 0.00960469339042902, + 0.04562631994485855, + 0.0006625597015954554, + -0.046951476484537125, + 0.016946086660027504, + -0.020895646885037422, + -0.029085952788591385, + -1.6957969868420256e-33, + 0.0204732995480299, + -0.008674528449773788, + -0.06320726871490479, + 0.07681001722812653, + -0.02405870519578457, + -0.04773164913058281, + -0.04759126156568527, + -0.005617168266326189, + -0.03723246604204178, + 0.014801779761910439, + 0.03280577063560486, + 0.11431121081113815, + -0.02316482923924923, + 0.07691416144371033, + 0.10219775885343552, + 0.012859891168773174, + 0.008069675415754318, + -0.008286876603960991, + -0.059802599251270294, + -0.04559078812599182, + -0.0261357631534338, + 0.1166260689496994, + 0.03917631134390831, + -0.008980459533631802, + 0.004980402998626232, + 0.02347986400127411, + 0.04388553276658058, + 0.023295264691114426, + -0.127753347158432, + 0.01028423011302948, + 0.0411854013800621, + 0.042744603008031845, + -0.010127704590559006, + -0.06532551348209381, + 0.001492229988798499, + 0.029743390157818794, + -0.012414027936756611, + 0.01397155411541462, + 0.0558600015938282, + 0.01632918231189251, + -0.17186996340751648, + -0.026163147762417793, + 0.016538256779313087, + -0.014631754718720913, + 0.002932491945102811, + 0.056844376027584076, + -0.039759356528520584, + 0.013719657436013222, + 0.11056511104106903, + 0.00471761729568243, + -0.08332353085279465, + -0.030919156968593597, + 0.07099815458059311, + -0.006639765575528145, + 0.000550850119907409, + 0.026206299662590027, + -0.009042493999004364, + 0.06935126334428787, + 0.0008158324053511024, + 0.03331906348466873, + -0.03762760013341904, + 0.1031864807009697, + 0.04130451753735542, + -0.10735759139060974, + -0.11700132489204407, + 0.011680394411087036, + -0.08405476808547974, + 0.013838790357112885, + 0.05666437745094299, + 0.05185408890247345, + -0.026807058602571487, + 0.051642872393131256, + 0.006070755422115326, + 0.03198867663741112, + 0.01882866956293583, + 0.03987419605255127, + 0.04249667376279831, + -0.04343749210238457, + -0.035005223006010056, + -0.030072810128331184, + -0.10086943954229355, + -0.05426042899489403, + -0.03875190019607544, + 0.018446192145347595, + -0.020657718181610107, + -0.033288586884737015, + 0.04865212365984917, + -0.02587929740548134, + -0.02618308924138546, + -0.04183459281921387, + -0.06183435022830963, + 0.005932987201958895, + -0.002442212775349617, + -0.031970489770174026, + -0.1213565245270729, + -1.484664977122896e-33, + -0.09305795282125473, + 0.08593270182609558, + -0.07031697779893875, + 0.05645781755447388, + -0.05595269054174423, + 0.048035308718681335, + 0.034713264554739, + -0.020443987101316452, + 0.04572766274213791, + 0.0026984226424247026, + -0.035270947962999344, + 0.032239630818367004, + -0.0643557459115982, + -0.07117778062820435, + -0.06144578009843826, + -0.018080346286296844, + -0.05628809705376625, + 0.03338044881820679, + -0.0831294134259224, + 0.049229755997657776, + -0.055930767208337784, + 0.07739053666591644, + -0.07761792838573456, + 0.06425407528877258, + 0.03388530761003494, + -0.012247579172253609, + -0.05353299900889397, + -0.04884843900799751, + -0.02570744790136814, + -0.05268334969878197, + 0.030731264501810074, + -0.08607311546802521, + 0.07989487051963806, + -0.01053170207887888, + -0.14082233607769012, + -0.06731139123439789, + 0.08637494593858719, + -0.036211419850587845, + 0.032942917197942734, + -0.011750389821827412, + 0.051306843757629395, + -0.034153204411268234, + 0.07639213651418686, + -0.00116624659858644, + -0.020798752084374428, + 0.004596016835421324, + 0.06857331097126007, + -0.07898497581481934, + -0.02363405004143715, + 0.06630288064479828, + 0.07969029992818832, + 0.013883881270885468, + 0.03038516454398632, + 0.0860385000705719, + 0.007760751061141491, + 0.017596246674656868, + 0.003438119078055024, + 0.0013625123538076878, + -0.008490226231515408, + 0.09989824891090393, + -0.009547753259539604, + 0.04281571879982948, + 0.07033619284629822, + 0.02969883568584919, + -0.03704323619604111, + -0.08984118700027466, + -0.010494781658053398, + -0.0019404249032959342, + 0.006809385959059, + -0.02977738343179226, + 0.038223788142204285, + 0.056373585015535355, + 0.06425008922815323, + 0.04546703025698662, + -0.042602524161338806, + -0.03706234693527222, + -0.0003916383138857782, + 0.04191649332642555, + 0.007306312210857868, + 0.04243750870227814, + 0.06385116279125214, + 0.018660757690668106, + -0.06801354140043259, + 0.002258670749142766, + -0.12138767540454865, + 0.029498176649212837, + 0.06957267224788666, + -0.00602453388273716, + 0.033633895218372345, + -0.09489239752292633, + -0.05461078882217407, + 0.008824086748063564, + -0.03641052171587944, + 0.03966715931892395, + -0.047226060181856155, + -2.4814537979978013e-08, + -0.004959475714713335, + -0.02499108389019966, + -0.0047355894930660725, + 0.00041567502194084227, + 0.011449615471065044, + 0.04427851364016533, + -0.012720219790935516, + -0.0053471727296710014, + -0.0568912997841835, + 0.019181372597813606, + 0.07213381677865982, + 0.014127333648502827, + -0.16400982439517975, + -0.07771800458431244, + -0.02354496531188488, + -0.006387251894921064, + 0.051745347678661346, + 0.0818047896027565, + -0.006889538839459419, + -0.08673323690891266, + 0.012215405702590942, + 0.07181471586227417, + 0.05240890011191368, + 0.0063153766095638275, + 0.04754380136728287, + 0.05771040543913841, + -0.0887783095240593, + 0.05049998313188553, + 0.011751503683626652, + 0.003485362743958831, + 0.019673308357596397, + -0.020901739597320557, + 0.044594716280698776, + -0.01935959793627262, + -0.06012004241347313, + 0.040674611926078796, + -0.013945823535323143, + 0.0075287423096597195, + 0.010768605396151543, + 0.1042804941534996, + -0.04139575734734535, + -0.011915449984371662, + -0.018464596942067146, + 0.003199262311682105, + 0.07748144865036011, + -0.006889171898365021, + -0.002006836701184511, + 0.018069645389914513, + -0.03142289072275162, + -0.08793995529413223, + -0.012891408056020737, + 0.0072246273048222065, + -0.03468872979283333, + 0.030746441334486008, + -0.059568606317043304, + -0.030277306213974953, + -0.023825164884328842, + 0.03362365439534187, + -0.06457623094320297, + -0.011204732581973076, + 0.13794441521167755, + 0.07484013587236404, + 0.006508000660687685, + 0.013829988427460194 + ], + "person-bold||walking,human,woman,man,body,transit,transportation,travel,commuter,user": [ + 0.01243928074836731, + -0.0876147672533989, + 0.01572723314166069, + 0.05772153288125992, + 0.00026662807795219123, + -0.027822887524962425, + 0.1645626574754715, + -0.035252489149570465, + -0.04682546854019165, + 0.012498087249696255, + 0.0468868762254715, + -0.015562237240374088, + -0.008311081677675247, + -0.004704718012362719, + 0.012712976895272732, + 0.024860452860593796, + 0.07568322867155075, + 0.05191889777779579, + 0.01950041390955448, + 0.08030007034540176, + -0.008443568833172321, + 0.023333460092544556, + -0.027248287573456764, + 0.0634981244802475, + 0.008084114640951157, + -0.035162582993507385, + 0.053515005856752396, + -0.010172754526138306, + -0.008349173702299595, + -0.018861763179302216, + -0.005823315121233463, + 0.05205832049250603, + 0.07522527128458023, + 0.05954274907708168, + -0.06980980187654495, + 0.013689044862985611, + -0.014411491341888905, + 0.025129875168204308, + 0.004434697329998016, + 0.02268938533961773, + -0.043490033596754074, + -0.06603717803955078, + -0.012841172516345978, + 0.04329994320869446, + 0.0371253602206707, + -0.07099609076976776, + -0.020055482164025307, + -0.01482475083321333, + -0.013733928091824055, + 0.010936190374195576, + -0.05088357254862785, + -0.044010311365127563, + -0.08552117645740509, + 0.09274479001760483, + -0.02513681910932064, + -0.04586086422204971, + -0.03266660496592522, + 0.006244636606425047, + 0.015102779492735863, + 0.023795314133167267, + 0.0029557812958955765, + -0.0077226185239851475, + 0.04499848932027817, + 0.06482241302728653, + 0.0817401260137558, + -0.023974686861038208, + -0.031095311045646667, + -0.05445880815386772, + 0.015143895521759987, + 0.03938274830579758, + 0.046361178159713745, + 0.007855401374399662, + -0.06043468788266182, + 0.03566315397620201, + -0.025910794734954834, + -0.06629987061023712, + 0.04022561386227608, + -0.018870947882533073, + -0.012206194922327995, + -0.007954062893986702, + -0.06329718977212906, + -0.060728173702955246, + -0.02427201345562935, + -0.014272961765527725, + 0.018965864554047585, + 0.06549527496099472, + -0.11416751891374588, + -0.034357961267232895, + -0.15059669315814972, + -0.02421604096889496, + -0.06827230006456375, + -0.009540138766169548, + 0.07533635944128036, + -0.029764987528324127, + -0.13832122087478638, + -0.02024930529296398, + -0.027294980362057686, + 0.012685657478868961, + -0.00864922534674406, + 0.09410200268030167, + -0.03977619484066963, + 0.0887235626578331, + 0.06278477609157562, + 0.08975805342197418, + -0.012085732072591782, + -0.03353402391076088, + -0.020682761445641518, + -0.0492577999830246, + -0.016802610829472542, + 0.032187189906835556, + -0.011114856228232384, + -0.10048844665288925, + -0.05695764347910881, + -0.04384433850646019, + 0.0004338406724855304, + -0.06756513565778732, + -0.08368808776140213, + -0.011969546787440777, + 0.10404644161462784, + 0.07681872695684433, + -0.05429936200380325, + 0.0007251467322930694, + 0.03362661600112915, + -0.04301900044083595, + -0.044547516852617264, + -0.013779743574559689, + 0.09675906598567963, + -4.124762289919389e-33, + -0.03231481462717056, + 0.03617708012461662, + 0.069045789539814, + 0.14748762547969818, + -0.024607384577393532, + -0.009550090879201889, + -0.09847164899110794, + -0.03808136284351349, + -0.030516374856233597, + 0.015741251409053802, + 0.030538173392415047, + 0.018037740141153336, + -0.017245788127183914, + 0.09072209149599075, + -0.004326858092099428, + 0.009993436746299267, + -0.01917761005461216, + -0.030810536816716194, + -0.09173648804426193, + 0.045252878218889236, + 0.06898288428783417, + 0.04903680458664894, + -0.02061625011265278, + -0.04377627745270729, + -0.015520534478127956, + -0.05971179157495499, + 0.041308801621198654, + -0.03005494922399521, + 0.03191235288977623, + 0.024074947461485863, + 0.0035422758664935827, + 0.07009250670671463, + 0.06149425730109215, + 0.020917315036058426, + -0.011053334921598434, + -0.03638911247253418, + -0.02220045030117035, + -0.05014972761273384, + -0.022226812317967415, + -0.0005719002219848335, + -0.07783033698797226, + -0.054331451654434204, + 0.009991261176764965, + -0.01148805022239685, + -0.057699888944625854, + 0.10362925380468369, + 0.028769224882125854, + -0.03906138241291046, + -0.04095983877778053, + 0.07800199091434479, + -0.06397918611764908, + -0.009036499075591564, + -0.033262949436903, + 0.005847136955708265, + -0.023292815312743187, + -0.03231023624539375, + 0.008814098313450813, + 0.06921422481536865, + -0.020683137699961662, + 0.007452960591763258, + 0.0057570417411625385, + 0.05234576016664505, + 0.09364206343889236, + -0.013438381254673004, + 0.06154446676373482, + -0.04304254800081253, + -0.0513528473675251, + -0.03226282447576523, + 0.044231247156858444, + 0.07696998864412308, + 0.027023296803236008, + 0.0932501032948494, + 0.04083438590168953, + 0.05846765264868736, + 0.042675066739320755, + 0.04758712276816368, + 0.004235453903675079, + -0.0337008461356163, + -0.05893443152308464, + -0.02774760313332081, + -0.12182710319757462, + 0.021055469289422035, + -0.024044454097747803, + 0.06364597380161285, + 0.03445810824632645, + 0.022254453971982002, + -0.013496367260813713, + -0.1314934343099594, + 0.008935939520597458, + 0.055398061871528625, + -0.008349679410457611, + 0.027807246893644333, + 0.0132835628464818, + -0.006148352753371, + -0.10535246133804321, + 2.689367148320752e-34, + -0.0008686077781021595, + 0.04100218415260315, + -0.00819756742566824, + -0.08302409201860428, + 0.02459433116018772, + -0.03768541291356087, + 0.023394368588924408, + 0.04033152014017105, + 0.04197753220796585, + 0.07577939331531525, + -0.09906524419784546, + -0.098656065762043, + 0.04811515286564827, + -0.017900126054883003, + 0.09821644425392151, + 0.008300731889903545, + 0.037777211517095566, + -0.024758437648415565, + -0.03476373851299286, + 0.054324857890605927, + -0.04560671001672745, + -0.019272712990641594, + -0.11273133009672165, + 0.017067594453692436, + -0.00562242791056633, + -0.0012536578578874469, + 0.08326221257448196, + -0.012771757319569588, + -0.05023598670959473, + -0.039597176015377045, + -0.056110065430402756, + 0.0108190244063735, + -0.008045739494264126, + -0.025502430275082588, + -0.061381928622722626, + 0.0732542872428894, + -0.07130346447229385, + 0.03587533161044121, + 0.03315206617116928, + 0.027946453541517258, + -0.04026303440332413, + 0.06992097198963165, + 0.023365912958979607, + -0.029737072065472603, + 0.02657232992351055, + -0.028098341077566147, + -0.10938616842031479, + -0.10046802461147308, + -0.06208695098757744, + 0.04864181578159332, + 0.042805515229701996, + 0.0021334332413971424, + -0.04764566570520401, + 0.025163786485791206, + 0.019334284588694572, + -0.02665211819112301, + 0.043224360793828964, + -0.09433696419000626, + 0.016291098669171333, + 0.005985571537166834, + -0.044128626585006714, + 0.024300944060087204, + -0.03128163889050484, + 0.09958257526159286, + -0.04691473767161369, + -0.10210394859313965, + -0.03908690810203552, + -0.05857687070965767, + -0.05896569788455963, + -0.06877322494983673, + 0.06339946389198303, + -0.09730701148509979, + -0.05348788574337959, + 0.03771310672163963, + 0.040268562734127045, + -0.05797049403190613, + 0.029115909710526466, + 0.04421663656830788, + 0.02834879793226719, + -0.03474560007452965, + -0.02808917500078678, + -0.023785794153809547, + -0.02714754082262516, + 0.03197910636663437, + -0.005714752711355686, + 0.04468785598874092, + -0.03961170092225075, + 0.019105324521660805, + -0.012324826791882515, + 0.0006833278457634151, + -0.012034004554152489, + 0.06518492847681046, + -0.10189639776945114, + -0.02902672253549099, + -0.10499387979507446, + -2.631208140257968e-08, + -0.04488426446914673, + -0.0001596043148310855, + -0.021911680698394775, + -0.010851569473743439, + 0.043103717267513275, + 0.015879660844802856, + 0.0033111267257481813, + -0.049864403903484344, + -0.060406286269426346, + 0.03741518035531044, + -0.009177413769066334, + 0.06427294760942459, + 0.001866282313130796, + 0.05016062408685684, + 0.09538768976926804, + 0.018205275759100914, + -0.018112245947122574, + 0.006189708597958088, + -0.0633140578866005, + -0.04027833789587021, + 0.03128758445382118, + 0.027382299304008484, + -0.02423163130879402, + 0.03379662707448006, + 0.02669188380241394, + 0.040097642689943314, + -0.09377842396497726, + -0.0109321977943182, + 0.021241603419184685, + 0.02148415520787239, + 0.015025249682366848, + 0.12400778383016586, + -0.050204478204250336, + 0.004654666408896446, + -0.028084928169846535, + 0.036195576190948486, + 0.048368871212005615, + 0.007513216696679592, + -0.006071268115192652, + 0.1135144978761673, + 0.04395388066768646, + -0.014099995605647564, + -0.018436208367347717, + 0.037839263677597046, + 0.09095865488052368, + 0.004784952383488417, + 0.035039592534303665, + -0.07557700574398041, + -0.039207980036735535, + -0.047861989587545395, + -0.02504468336701393, + -0.08553794026374817, + 0.03587033227086067, + 0.04186779260635376, + -0.002671114867553115, + -0.05775279551744461, + 0.016268614679574966, + 0.08385643362998962, + -0.017416970804333687, + -0.021779952570796013, + 0.12003542482852936, + 0.017063170671463013, + -0.023992013186216354, + -0.009105571545660496 + ], + "person-arms-spread-bold||accessibility,vitruvian,stretch,sports": [ + 0.03830999881029129, + -0.012615717016160488, + 0.010474661365151405, + -0.031035928055644035, + 0.008659237064421177, + 0.018115317448973656, + 0.086524099111557, + 0.018593432381749153, + -0.019709385931491852, + 0.023775413632392883, + 0.08980945497751236, + -0.024840444326400757, + 0.020695826038718224, + -0.010056426748633385, + 0.03370487317442894, + -0.007019680924713612, + 0.029370298609137535, + 0.08508992195129395, + -0.02837619185447693, + 0.13788405060768127, + -0.014806666411459446, + 0.057676006108522415, + 0.01693078875541687, + 0.044100355356931686, + 0.004721034783869982, + 0.005999682005494833, + 0.019141841679811478, + -0.019769879058003426, + 0.021477293223142624, + -0.04695744439959526, + -0.10105269402265549, + 0.016181381419301033, + 0.03595653548836708, + 0.05300791189074516, + -0.05155757814645767, + 0.002058591227978468, + -0.00612017372623086, + 0.057354819029569626, + -0.044510625302791595, + 0.048194896429777145, + -0.028980854898691177, + -0.07731460779905319, + 0.016829775646328926, + 0.027765341103076935, + 0.023281442001461983, + 0.05627300217747688, + -0.02991287223994732, + 0.06283555924892426, + -0.02920069918036461, + 0.013992059975862503, + -0.0826096162199974, + -0.10199642181396484, + -0.04719847813248634, + 0.07556845992803574, + 0.00040972826536744833, + -0.00399229908362031, + -0.06260168552398682, + -0.049302950501441956, + 0.020764105021953583, + 0.006354887969791889, + 0.03645728901028633, + 0.008120470680296421, + 0.007312427274882793, + 0.06427811831235886, + -0.015473742038011551, + -0.02360159531235695, + 0.04624364897608757, + 0.031705617904663086, + -0.09034350514411926, + 0.05692414939403534, + 0.06171641871333122, + 0.01649223081767559, + -0.014899222180247307, + 0.0109646525233984, + -8.556879038223997e-05, + 0.002207081066444516, + 0.008971869945526123, + -0.07854307442903519, + 0.0030873629730194807, + -0.041335076093673706, + -0.06683631241321564, + -0.060565367341041565, + -0.05295776203274727, + -0.011107340455055237, + -0.006003414746373892, + 0.10400040447711945, + -0.04189591854810715, + -0.043893419206142426, + -0.09203709661960602, + -0.002593136625364423, + -0.09339985251426697, + -0.05151775851845741, + -2.3028909708955325e-05, + -0.003336847061291337, + -0.06480571627616882, + -0.0020373831503093243, + -0.0026908530853688717, + -0.05783151835203171, + -0.04463579133152962, + 0.09137646853923798, + 0.022340700030326843, + 0.02291765809059143, + 0.08871590346097946, + 0.062065087258815765, + -0.06422706693410873, + -0.07841916382312775, + -0.05026789754629135, + -0.048718955367803574, + 0.019370445981621742, + 0.01734313555061817, + -0.006811922416090965, + -0.0792856514453888, + -0.06639979034662247, + -0.05156439542770386, + -0.017174432054162025, + -0.013696161098778248, + -0.09474010765552521, + -0.04803219437599182, + 0.09655290842056274, + -0.005659480579197407, + 0.007863483391702175, + 0.037421125918626785, + -0.020539725199341774, + -0.031595367938280106, + -0.009136942215263844, + 0.015536285005509853, + -0.0223004762083292, + -3.717597862759427e-33, + -0.021168507635593414, + -0.008174809627234936, + 0.026301542297005653, + 0.11643301695585251, + -0.05644705519080162, + -0.021147102117538452, + -0.0867839828133583, + -0.07040081173181534, + -0.044589847326278687, + -0.007035440299659967, + 0.035124413669109344, + 0.08142261207103729, + -0.008059145882725716, + 0.04655299335718155, + 0.056183915585279465, + 0.002574707381427288, + -0.022087644785642624, + 0.03361762315034866, + -0.07519108057022095, + 0.07334836572408676, + 0.016304783523082733, + 0.09477782994508743, + -0.004587217699736357, + 0.025513533502817154, + -0.09410347789525986, + -0.04072185233235359, + -0.021286077797412872, + -0.03753090277314186, + -0.008107692934572697, + 0.041206516325473785, + -0.017415061593055725, + 0.056355223059654236, + -0.007246473804116249, + -0.05214428901672363, + 0.05950462445616722, + -0.05251476168632507, + -0.04794910177588463, + -0.09062473475933075, + -0.012699604034423828, + 0.034574996680021286, + -0.021735765039920807, + -0.03523259237408638, + -0.0299068633466959, + -0.06046218052506447, + 0.0004663760191760957, + 0.12312925606966019, + 0.04872965067625046, + -0.025967132300138474, + -0.0589301697909832, + -0.041752465069293976, + 0.016595812514424324, + 0.027551162987947464, + -0.03276849910616875, + -0.09057484567165375, + 0.004455240443348885, + -0.01887611858546734, + -0.02559027075767517, + 0.049306534230709076, + -0.07605770230293274, + 0.0075349765829741955, + 0.058150991797447205, + 0.006124095991253853, + 0.12104272842407227, + -0.022406235337257385, + -0.04393501207232475, + -0.02044164389371872, + -0.0624903179705143, + 0.007699401583522558, + 0.07354023307561874, + 0.025223348289728165, + 0.016134046018123627, + 0.052224814891815186, + 0.033610496670007706, + 0.12342830747365952, + 0.0035787238739430904, + 0.03537367656826973, + 0.055818550288677216, + 0.015238303691148758, + 0.008393214084208012, + -0.03683442249894142, + -0.13030607998371124, + 0.07076510787010193, + -0.02726193144917488, + 0.03148142620921135, + 0.01939859427511692, + -0.06189175322651863, + -0.009535432793200016, + -0.1047331839799881, + -0.06735733896493912, + 0.06085243448615074, + -0.05927059054374695, + 0.03948623314499855, + -0.029967058449983597, + -0.0521998293697834, + -0.1432776302099228, + 1.4547368220743384e-34, + -0.01299193874001503, + -0.011742478236556053, + -0.0326748862862587, + -0.006178554613143206, + 0.047999147325754166, + -0.014944690279662609, + 0.034518565982580185, + 0.11654642969369888, + 0.05865241214632988, + 0.0397057980298996, + -0.03528127819299698, + -0.08937527984380722, + -0.046353068202733994, + -0.07630349695682526, + 0.030663728713989258, + 0.028356509283185005, + 0.0858006700873375, + 0.040309976786375046, + -0.025979135185480118, + 0.05154816806316376, + 0.04889325052499771, + -0.049310870468616486, + -0.007909429259598255, + 0.0372830331325531, + -0.0348665714263916, + 0.016658248379826546, + 0.0006855248939245939, + -0.02516733855009079, + -0.09499302506446838, + -0.029920140281319618, + -0.03323199599981308, + -0.01542230136692524, + -0.0011988572077825665, + 0.04265611246228218, + -0.04763370752334595, + 0.03357658535242081, + -0.03998393192887306, + -0.03800709918141365, + 0.048815444111824036, + 0.021421875804662704, + 0.0313880518078804, + 0.005668562836945057, + 0.044181495904922485, + 0.029332095757126808, + 0.027180273085832596, + -0.01741984859108925, + -0.11084692180156708, + -0.04181743785738945, + -0.09046793729066849, + 0.037425629794597626, + 0.026868246495723724, + 0.038106441497802734, + 0.009576593525707722, + -0.016765814274549484, + -0.04385523498058319, + -0.03226924315094948, + 0.03198603168129921, + -0.04981323331594467, + -0.02400151640176773, + 0.08534745126962662, + -0.00958498939871788, + 0.0191050935536623, + -0.12407679855823517, + 0.035291701555252075, + 0.002814034465700388, + 0.022619018331170082, + -0.05599990114569664, + -0.05704035982489586, + -0.058787379413843155, + -0.030984824523329735, + 0.05454903095960617, + -0.08155951648950577, + -0.026834717020392418, + 0.028502361848950386, + -0.055347975343465805, + -0.004936880897730589, + 0.05343331769108772, + -0.03943222016096115, + 0.006865064147859812, + 0.014001439325511456, + -0.06934560090303421, + -0.08403414487838745, + -0.04462694376707077, + 0.09028604626655579, + 0.021400073543190956, + 0.14184115827083588, + -0.01977134495973587, + 0.025764284655451775, + 0.03273481875658035, + 0.016007155179977417, + -0.010139593854546547, + 0.059283170849084854, + -0.0444108210504055, + 0.006476358510553837, + -0.025525053963065147, + -2.417029065782117e-08, + -0.025771906599402428, + 0.02248183637857437, + -0.008866013959050179, + -0.006825078744441271, + -0.011614128947257996, + 0.030415885150432587, + -0.014651992358267307, + -0.08897912502288818, + -0.007317368872463703, + 0.02366323582828045, + -0.029569193720817566, + 0.017067382112145424, + 0.04323415830731392, + 0.02569211833178997, + 0.09534762799739838, + 0.0001060811773641035, + -0.07674086093902588, + 0.07170677185058594, + -0.08720109611749649, + -0.011132429353892803, + 0.0464259535074234, + 0.004396385047584772, + 0.0034273406490683556, + 0.00978908222168684, + -0.028185784816741943, + -0.024722248315811157, + -0.11218736320734024, + -0.021448316052556038, + -0.028363337740302086, + 0.018742715939879417, + 0.07992444187402725, + 0.08531497418880463, + -0.052602820098400116, + -0.05329534783959389, + -0.08186917752027512, + 0.05555138736963272, + 0.027827687561511993, + -0.042370859533548355, + -0.009011059068143368, + 0.15753954648971558, + 0.04734392464160919, + -0.04780740663409233, + 0.010148677974939346, + 0.050689708441495895, + 0.06124002858996391, + 0.027488257735967636, + 0.08569011092185974, + -0.006407059729099274, + -0.019257616251707077, + -0.05696415901184082, + 0.02724229358136654, + -0.005086959805339575, + 0.025755852460861206, + 0.06765231490135193, + -0.043518681079149246, + -0.002273963065817952, + 0.039165839552879333, + 0.12595893442630768, + -0.03125812113285065, + 0.021092025563120842, + 0.08816839009523392, + 0.012833760119974613, + -0.02331884577870369, + 0.0927586778998375 + ], + "person-simple-bold||pedestrian,walking,human,woman,man,body,transit,transportation,travel,commuter,user,exercise": [ + 0.03215302154421806, + -0.04173017665743828, + 0.02949324995279312, + 0.043627019971609116, + 0.0005962476716376841, + 0.005662608426064253, + 0.14366456866264343, + 0.00572562450543046, + -0.08089101314544678, + 0.025642629712820053, + 0.06229214370250702, + -0.022061113268136978, + -0.021676218137145042, + -0.009697975590825081, + 0.0315222442150116, + 0.0220724418759346, + 0.05480310320854187, + 0.06284262984991074, + 0.01987248845398426, + 0.08630736172199249, + -0.038484517484903336, + 0.02235398255288601, + -0.036649927496910095, + 0.0684841200709343, + -0.026691922917962074, + -0.0019048452377319336, + 0.05486620217561722, + -0.004396242555230856, + 0.02292187325656414, + -0.03257044404745102, + 0.009321607649326324, + 0.04919913411140442, + 0.06776458024978638, + 0.040831636637449265, + -0.04539851099252701, + 0.008053225465118885, + 0.01319964975118637, + 0.03807913511991501, + -0.00021400395780801773, + 0.017450615763664246, + -0.06038215756416321, + -0.07459168136119843, + -0.02942047081887722, + 0.026738159358501434, + 0.04761333763599396, + -0.05579802021384239, + -0.011122280731797218, + -0.027804818004369736, + -0.004304980859160423, + -0.03867451474070549, + -0.010652122087776661, + -0.04972197487950325, + -0.08770802617073059, + 0.059008266776800156, + 0.007249204441905022, + -0.047896310687065125, + -0.03796316310763359, + 0.019131099805235863, + 0.020892351865768433, + 0.005931579973548651, + 0.03332321345806122, + -0.05674821138381958, + 0.036653485149145126, + 0.06016143783926964, + 0.0421074777841568, + -0.04065341874957085, + -0.010333895683288574, + -0.048674460500478745, + 0.04544679448008537, + 0.041189178824424744, + 0.03510252386331558, + -0.0026543436106294394, + -0.03991710767149925, + 0.024589398875832558, + -0.010876363143324852, + -0.08883704245090485, + 0.01017835084348917, + -0.01152342464774847, + -0.01741241104900837, + -0.004246292635798454, + -0.08261982351541519, + -0.07095170021057129, + -0.05233922228217125, + 0.010933942161500454, + 0.011517641134560108, + 0.07829145342111588, + -0.08520297706127167, + 0.01717812940478325, + -0.1079859584569931, + -0.05340541526675224, + -0.08133362978696823, + 0.020940255373716354, + 0.06540755927562714, + -0.02627311460673809, + -0.125680610537529, + -0.017844341695308685, + -0.029961299151182175, + -0.023614294826984406, + -0.0484560951590538, + 0.09838853776454926, + -0.0319601371884346, + 0.08775405585765839, + 0.1012977808713913, + 0.0915270447731018, + -0.010626162402331829, + -0.05564292147755623, + -0.027219627052545547, + -0.08007050305604935, + -0.005984309129416943, + 0.036970339715480804, + -0.005998143460601568, + -0.12210848182439804, + -0.05000338703393936, + -0.02962268888950348, + -0.008116580545902252, + -0.04029211774468422, + -0.0699930340051651, + -0.040417369455099106, + 0.09011047333478928, + 0.0974939838051796, + -0.06476300954818726, + -0.011166942305862904, + -0.001164145884104073, + -0.02918793261051178, + -0.04483877122402191, + -0.007636445574462414, + 0.09710539877414703, + -4.260654947004215e-33, + -0.030444316565990448, + 0.05397593975067139, + 0.07393820583820343, + 0.14335870742797852, + -0.0332539863884449, + -0.04116061329841614, + -0.08930189162492752, + -0.044626764953136444, + 0.0010939683998003602, + 0.011887961067259312, + 0.06967150419950485, + -0.04464296996593475, + 0.007478265091776848, + 0.12362147122621536, + -0.0022465158253908157, + -0.007395004853606224, + -0.0209474116563797, + -0.00843693595379591, + -0.10348207503557205, + 0.08346207439899445, + 0.06560502201318741, + 0.08453012257814407, + -0.037588853389024734, + -0.05400530621409416, + -0.007861682213842869, + -0.0313558354973793, + 0.0487026646733284, + -0.01947256177663803, + 0.018544699996709824, + 0.012175566516816616, + 0.029319003224372864, + 0.08454819023609161, + 0.04690823704004288, + 0.04391912370920181, + -0.003569573862478137, + -0.04402715712785721, + 0.0053332154639065266, + -0.031302645802497864, + -0.0234837643802166, + -0.053154341876506805, + -0.07613541930913925, + -0.029487980529665947, + 0.025558972731232643, + -0.03113403357565403, + 0.00251463963650167, + 0.1059853583574295, + 0.03982212021946907, + -0.06027065962553024, + -0.03554216027259827, + 0.04046417772769928, + -0.07801530510187149, + 0.024785177782177925, + -0.03038703091442585, + 0.02125530317425728, + -0.018513675779104233, + -0.03569481521844864, + -0.01856469362974167, + 0.0748966708779335, + -0.035678260028362274, + 0.011542724445462227, + 0.0033239389304071665, + 0.08480896800756454, + 0.031246209517121315, + -0.0041217743419110775, + 0.014084222726523876, + -0.05194776877760887, + -0.06675758957862854, + -0.03975846618413925, + 0.04997748136520386, + 0.06767801195383072, + 0.021393440663814545, + 0.09684772044420242, + 0.058078911155462265, + 0.029605168849229813, + 0.07023514807224274, + 0.054981779307127, + 0.04152644798159599, + -0.06037868186831474, + -0.07181762903928757, + -0.01887042634189129, + -0.10900729894638062, + 0.02767781727015972, + -0.0008286421652883291, + 0.03235429897904396, + 0.02299206703901291, + 0.007908266969025135, + -0.009180749766528606, + -0.09413288533687592, + -0.028977317735552788, + 0.05340017005801201, + -0.015867747366428375, + 0.04461845010519028, + -0.021401451900601387, + 0.004994357470422983, + -0.10090243816375732, + 2.152740201845954e-34, + -0.010311046615242958, + 0.057117220014333725, + -0.016351448372006416, + -0.06707222759723663, + 0.015279878862202168, + -0.016665557399392128, + 0.017480887472629547, + 0.015304150991141796, + 0.04357706010341644, + 0.08027487993240356, + -0.11428198963403702, + -0.09398983418941498, + 0.037526484578847885, + -0.02005438692867756, + 0.08984582871198654, + 0.028804710134863853, + 0.006213805638253689, + 0.005742981564253569, + -0.019918810576200485, + 0.06795670837163925, + -0.03813736140727997, + 0.01416613720357418, + -0.10808028280735016, + -0.02332712709903717, + -0.008095426484942436, + 0.011507699266076088, + 0.06906744837760925, + -0.008710775524377823, + -0.03345289081335068, + -0.04945296049118042, + -0.04148322343826294, + -0.018595624715089798, + -0.028269603848457336, + -0.05059753358364105, + -0.04274516552686691, + 0.05080951005220413, + -0.09373071044683456, + 0.021889518946409225, + 0.01155878696590662, + 0.015255037695169449, + -0.04697825014591217, + 0.06788352876901627, + 0.039744846522808075, + -0.03374270722270012, + 0.05308785289525986, + -0.04517528414726257, + -0.1084827333688736, + -0.13082346320152283, + -0.10795436799526215, + 0.023914232850074768, + 0.015194384381175041, + -0.006657185964286327, + -0.04205577075481415, + -0.0009583659702911973, + 0.05311975255608559, + -0.014631332829594612, + 0.036806780844926834, + -0.07241474092006683, + 0.0091078020632267, + 0.014490300789475441, + -0.012333192862570286, + 0.03214073181152344, + -0.0640113428235054, + 0.11366544663906097, + -0.03250417858362198, + -0.07444685697555542, + -0.06325417011976242, + -0.056537795811891556, + -0.042999692261219025, + -0.04246685281395912, + 0.043642524629831314, + -0.05201854929327965, + -0.06790617853403091, + 0.006494180765002966, + 0.03287506848573685, + -0.05581047758460045, + 0.025231027975678444, + 0.035266581922769547, + 0.028742283582687378, + -0.054474350064992905, + -0.004816237837076187, + -0.04794660955667496, + -0.03778630122542381, + 0.008297714404761791, + 0.017290540039539337, + 0.0353211835026741, + -0.06226050481200218, + 0.015576749108731747, + -0.018854400143027306, + 0.028523532673716545, + -0.023688416928052902, + 0.09621145576238632, + -0.0989513248205185, + 0.007114277686923742, + -0.09326091408729553, + -2.7980316730236154e-08, + -0.030102265998721123, + -0.028746377676725388, + -0.04408937692642212, + -0.02907261997461319, + 0.02800973877310753, + 0.0008713977877050638, + 0.004123998805880547, + -0.055779654532670975, + -0.049626030027866364, + 0.0641944408416748, + -0.006381804123520851, + 0.03369104117155075, + 0.013248521834611893, + 0.0898669883608818, + 0.05898655205965042, + 0.045279428362846375, + -0.025202585384249687, + 0.007326425984501839, + -0.06536192446947098, + -0.009971478953957558, + 0.03332187235355377, + 0.010758483782410622, + -0.06254848092794418, + 0.026752319186925888, + 0.004549763631075621, + 0.020576413720846176, + -0.0584876574575901, + 0.024534625932574272, + -0.005011755973100662, + 0.003927239682525396, + 0.028229817748069763, + 0.12412739545106888, + -0.038179971277713776, + 0.02576473169028759, + -0.04026543349027634, + 0.03146331384778023, + 0.0667964294552803, + 0.025155922397971153, + -0.02273351326584816, + 0.09141456335783005, + 0.0388384647667408, + -0.019277049228549004, + -0.024823036044836044, + 0.036581605672836304, + 0.09882470965385437, + 0.009198031388223171, + 0.02634745091199875, + -0.10137280821800232, + -0.025373462587594986, + -0.058316126465797424, + -0.007165131624788046, + -0.07472430169582367, + 0.03147564455866814, + 0.023494098335504532, + 0.0026340484619140625, + -0.02015213668346405, + 0.0088413767516613, + 0.07374625653028488, + -0.03594817966222763, + -0.035579416900873184, + 0.11867830902338028, + 0.07054074108600616, + -0.03163823485374451, + 0.004772762767970562 + ], + "person-simple-bike-bold||pedestrian,biking,bicycle,human,woman,man,body,sports,exercise": [ + 0.03303815424442291, + 0.04340744391083717, + -0.0032448763959109783, + 0.037674106657505035, + -0.02645198255777359, + -0.013249843381345272, + 0.10992225259542465, + 0.0006676275515928864, + -0.06689165532588959, + 0.041645489633083344, + 0.044110074639320374, + -0.04692253842949867, + 0.035345032811164856, + -0.022263221442699432, + 0.04505671188235283, + 0.053860124200582504, + 0.049129877239465714, + 0.05329231917858124, + 0.02922247350215912, + 0.1145709902048111, + -0.04642651230096817, + 0.05038251355290413, + -0.013346057385206223, + 0.0737953633069992, + -0.011205699294805527, + -0.008423077873885632, + 0.012887535616755486, + 0.014058914966881275, + 0.00878455676138401, + -0.038243647664785385, + 0.0023272489197552204, + 0.07866398990154266, + 0.09501433372497559, + 0.010552623309195042, + -0.04513382911682129, + -0.00914768036454916, + 0.01884843036532402, + 0.06841755658388138, + -0.017703939229249954, + 0.015217343345284462, + -0.027185073122382164, + -0.053740277886390686, + -0.055515676736831665, + 0.002741848351433873, + 0.05898256227374077, + 0.025174012407660484, + 0.033327165991067886, + -0.04914272949099541, + -0.022507837042212486, + -0.05005697160959244, + 0.018294285982847214, + -0.044880449771881104, + -0.05191991105675697, + 0.04611954092979431, + 0.020338693633675575, + -0.06922395527362823, + -0.09845899790525436, + 0.0366743803024292, + 0.0037795340176671743, + -0.024873657152056694, + 0.08720772713422775, + -0.03925424814224243, + 0.020423751324415207, + 0.06503939628601074, + 0.030051877722144127, + -0.028510624542832375, + 0.01859566569328308, + -0.06094278022646904, + 0.03393736109137535, + 0.016327915713191032, + 0.049564167857170105, + 0.007763300556689501, + -0.04892956465482712, + -0.037558939307928085, + -0.010067650116980076, + -0.08226662874221802, + 0.027977634221315384, + 0.00046546818339265883, + -0.07549798488616943, + -0.02818303555250168, + -0.10568555444478989, + -0.10105819255113602, + 0.0039452239871025085, + 0.03326196223497391, + 0.045975461602211, + 0.06941602379083633, + -0.0299177598208189, + 0.03527681529521942, + -0.1078396663069725, + -0.05455932393670082, + -0.16039609909057617, + 0.03443743288516998, + 0.09230531752109528, + -0.008097311481833458, + -0.12522758543491364, + 0.005339325405657291, + 0.009167786687612534, + -0.014869464561343193, + -0.04633595049381256, + 0.08858130127191544, + 0.003293410176411271, + 0.03715676814317703, + 0.12934695184230804, + 0.08941514045000076, + -0.008004545234143734, + -0.021856551989912987, + -0.010788096114993095, + -0.07077149301767349, + 0.031214607879519463, + 0.04245517775416374, + -0.007270027417689562, + -0.10695124417543411, + -0.024257296696305275, + -0.026612920686602592, + -0.006598438136279583, + -0.005008906126022339, + -0.09458884596824646, + -0.02311788871884346, + 0.1097518652677536, + 0.0984748974442482, + -0.08299080282449722, + 0.006550295744091272, + -0.0014593459200114012, + -0.013631865382194519, + -0.008497330360114574, + -0.012689887546002865, + 0.07701046764850616, + -5.3563600473705476e-33, + -0.042846404016017914, + 0.049511659890413284, + 0.07827197760343552, + 0.10195188969373703, + -0.031305473297834396, + -0.05048228055238724, + -0.0395481139421463, + -0.0726940929889679, + -0.011208604089915752, + -0.0022554786410182714, + 0.1109083965420723, + -0.03359989821910858, + 0.03467174991965294, + 0.11038962006568909, + 0.032525427639484406, + -0.012849128805100918, + -0.043892573565244675, + -0.048115793615579605, + -0.07883793860673904, + 0.10376954078674316, + 0.04008524492383003, + 0.0768226683139801, + -0.04250357300043106, + -0.004183483775705099, + -0.015339608304202557, + -0.03998175263404846, + 0.10250472277402878, + -0.006577444262802601, + -0.02031625062227249, + 0.010737351141870022, + 0.0035301242023706436, + 0.055825307965278625, + 0.03538021817803383, + 0.03137247636914253, + 0.001556450268253684, + -0.03668161854147911, + -0.003564028535038233, + 0.0066592213697731495, + -0.030733931809663773, + -0.034309811890125275, + -0.030063632875680923, + -0.06031951680779457, + -0.005169122014194727, + -0.04305608198046684, + 0.005258978344500065, + 0.11950187385082245, + 0.034377649426460266, + -0.006014443468302488, + -0.055766403675079346, + 0.027920858934521675, + -0.07281674444675446, + 0.03554798662662506, + 0.0003767405869439244, + 0.048183172941207886, + -0.03706587851047516, + -0.036553122103214264, + -0.019275454804301262, + 0.04466801881790161, + -0.10698015987873077, + 0.04095347225666046, + 0.0009400290437042713, + 0.09242842346429825, + 0.009026313200592995, + 0.009348836727440357, + -0.059713613241910934, + -0.021953590214252472, + -0.0459798239171505, + -0.03231494873762131, + 0.02194860205054283, + 0.028538545593619347, + -0.0013387489598244429, + 0.09533533453941345, + 0.08232656866312027, + 0.030973106622695923, + 0.0857187882065773, + 0.06187957897782326, + 0.036675576120615005, + -0.07157056033611298, + -0.07697032392024994, + 0.01171930506825447, + -0.06265488266944885, + 0.029248550534248352, + -0.047353245317935944, + 0.002810060977935791, + -0.022185226902365685, + 0.00934248510748148, + 0.0020203622989356518, + -0.09679523855447769, + -0.024193672463297844, + 0.0523892417550087, + -0.029913028702139854, + -0.006497809663414955, + -7.83906871220097e-05, + 0.016048744320869446, + -0.06649060547351837, + 1.5232283549985673e-33, + 0.005960246082395315, + 0.05822713300585747, + 0.045663267374038696, + -0.04853780195116997, + 0.0642293319106102, + -0.022058535367250443, + 0.06335514038801193, + -0.031012680381536484, + -0.007793677970767021, + 0.05801142752170563, + -0.07856965065002441, + -0.11532486230134964, + 0.004625386092811823, + -0.01933266408741474, + 0.06405236572027206, + 0.03176280856132507, + -0.023534638807177544, + 0.013421755284070969, + 0.005565870553255081, + 0.05591382458806038, + -0.021186575293540955, + 0.0012007781770080328, + -0.09247443079948425, + -0.03214472904801369, + -0.0407712385058403, + 0.0451635904610157, + 0.029689736664295197, + 0.013231809251010418, + -0.00406091520562768, + -0.020744387060403824, + -0.07697375118732452, + -0.013730509206652641, + -0.004822907969355583, + -0.011065942235291004, + -0.05566152557730675, + 0.07677309960126877, + -0.12527014315128326, + -0.03823446109890938, + 0.029070338234305382, + -0.005387545097619295, + -0.06554058194160461, + 0.038313135504722595, + 0.01765706017613411, + -0.002638696227222681, + 0.07466364651918411, + -0.0338645875453949, + -0.07483390718698502, + -0.09025570750236511, + -0.09870738536119461, + -0.020721690729260445, + 0.03055153600871563, + 0.03351627290248871, + -0.021230023354291916, + -0.023368068039417267, + 0.07413145154714584, + -0.019618283957242966, + 0.05707233399152756, + -0.04398281127214432, + 0.012696260586380959, + 0.01578369177877903, + -0.016819296404719353, + 0.0333685427904129, + -0.08103324472904205, + 0.11110454797744751, + -0.06763395667076111, + -0.08070091903209686, + -0.05020183324813843, + -0.06386008113622665, + -0.05570562556385994, + -0.03614699840545654, + 0.026174604892730713, + -0.016802510246634483, + -0.03448763117194176, + -0.006907720118761063, + 0.03822582587599754, + -0.028217123821377754, + 0.019288327544927597, + 0.0016255397349596024, + 0.013986525125801563, + -0.0536746084690094, + -0.02647930197417736, + -0.05597659572958946, + 0.00013531865261029452, + 0.04970511049032211, + 0.01769554428756237, + 0.035863250494003296, + -0.06375633180141449, + -0.01732051931321621, + -0.006352819502353668, + 0.02272757701575756, + -0.024915749207139015, + 0.1251687854528427, + -0.10490602999925613, + 0.018335003405809402, + -0.05715642124414444, + -2.4652173635786312e-08, + 0.007754921447485685, + -0.03941137716174126, + -0.08602569997310638, + -0.03251585364341736, + 0.04118558019399643, + 0.014064955525100231, + 0.026036161929368973, + -0.09208835661411285, + -0.09162238985300064, + 0.04437314346432686, + 0.010908917523920536, + 0.02825831063091755, + 0.012132460251450539, + 0.08170300722122192, + 0.04003109410405159, + 0.020762508735060692, + -0.009270611219108105, + 0.018254386261105537, + -0.039519596844911575, + -0.03749581426382065, + 0.03582439571619034, + -0.012340865097939968, + -0.03977558761835098, + 0.006514017004519701, + -0.011829393915832043, + -0.03467731177806854, + -0.03275982663035393, + 0.01696327142417431, + -0.025848552584648132, + 0.005969644989818335, + 0.028587164357304573, + 0.08762899786233902, + -0.053084589540958405, + 0.01075852382928133, + -0.031227797269821167, + -0.013623083010315895, + 0.02618015930056572, + 0.03561078757047653, + -0.02150583826005459, + 0.08396449685096741, + 0.00045411541941575706, + -0.008207147940993309, + -0.02031833864748478, + 0.040345028042793274, + 0.07910630106925964, + -0.006943816784769297, + 0.018133744597434998, + -0.12729158997535706, + -0.015374644659459591, + -0.07487766444683075, + 0.01837201789021492, + -0.09001520276069641, + 0.036824386566877365, + 0.02964230626821518, + -0.0018795341020449996, + 0.06046714633703232, + -0.011694616638123989, + 0.03720579296350479, + -0.04401831328868866, + -0.014387199655175209, + 0.0888054147362709, + 0.06819595396518707, + -0.022243691608309746, + -0.039343394339084625 + ], + "person-simple-circle-bold||*new*,human,accessibility,a11y,vitruvius,vitruvian": [ + -0.0027346417773514986, + -0.029210111126303673, + -0.051192451268434525, + 0.003615570953115821, + -0.014407610520720482, + -0.058981336653232574, + 0.06392629444599152, + -0.0015108693623915315, + -0.010072525590658188, + -0.01646706648170948, + 0.07642655074596405, + -0.08430031687021255, + -0.015428116545081139, + -0.05134272202849388, + -0.004453308414667845, + -0.01947336457669735, + -0.0018785272259265184, + 0.04630735144019127, + 0.03636863827705383, + 0.08300381898880005, + -0.011057872325181961, + 0.030538314953446388, + 0.006409178953617811, + 0.045679956674575806, + 0.011068489402532578, + 0.03954051062464714, + 0.033108633011579514, + -0.0011815596371889114, + 0.06699250638484955, + -0.04166522994637489, + -0.07071372121572495, + 0.04411787912249565, + 0.11288028955459595, + 0.024621933698654175, + 0.0018904119497165084, + 0.01418327447026968, + -0.041394878178834915, + 0.03337971866130829, + 0.02321021445095539, + -0.0032707692589610815, + -0.0333285890519619, + -0.03718241676688194, + 0.01865355297923088, + 0.03573469817638397, + -0.008897963911294937, + 0.010552429594099522, + -0.04705009609460831, + -0.009145298041403294, + 0.007603696081787348, + 0.027991365641355515, + -0.0751965194940567, + -0.07396876811981201, + -0.1150360032916069, + 0.020379703491926193, + -0.007372236344963312, + -0.016420280560851097, + -0.03180411830544472, + -0.06595975160598755, + 0.033298950642347336, + -0.03281863406300545, + 0.04353485256433487, + -0.0318777933716774, + 0.091976098716259, + 0.06725519150495529, + 0.029638826847076416, + -0.02383788675069809, + -0.032173823565244675, + -0.08537603169679642, + -0.053365953266620636, + 0.0024745457340031862, + -0.004273909609764814, + 0.03744253143668175, + 0.01444688905030489, + 0.012561538256704807, + -0.01809019222855568, + -0.002980611054226756, + -0.0519791878759861, + -0.025313924998044968, + -0.005723671056330204, + -0.06793209165334702, + -0.015713784843683243, + -0.04193005710840225, + -0.012351037003099918, + 0.04330357536673546, + 0.014470851048827171, + 0.1282660812139511, + -0.04226066917181015, + -0.06506134569644928, + -0.08270281553268433, + -0.03463919833302498, + -0.05160875618457794, + 0.01230408251285553, + 0.016982080414891243, + -0.03714581951498985, + -0.11085087805986404, + -0.01687743328511715, + -0.0008665657369419932, + -0.05349615216255188, + -0.07694347202777863, + 0.10144108533859253, + -0.04515119642019272, + 0.02684013545513153, + 0.06858040392398834, + 0.04311995208263397, + -0.055771492421627045, + -0.034439217299222946, + -0.0028789399657398462, + -0.0973760113120079, + -0.01537266280502081, + 0.027360623702406883, + -0.02432539127767086, + -0.10110343992710114, + -0.05277111753821373, + -0.05550610274076462, + 0.0008714577998034656, + -0.0037089218385517597, + -0.07273690402507782, + -0.050375714898109436, + 0.0806560292840004, + 0.09302324056625366, + 0.01891365461051464, + -0.013046784326434135, + -0.02409176528453827, + -0.013550658710300922, + -0.06366715580224991, + 0.008466605097055435, + 0.01006224099546671, + -1.6887932445630325e-33, + -0.0007217109086923301, + 0.0978795737028122, + -0.001871482003480196, + 0.07434948533773422, + -0.05053401365876198, + -0.024740809574723244, + -0.10673217475414276, + -0.0431700274348259, + -0.013630389235913754, + 0.0008686456130817533, + -0.004577065352350473, + -0.061834052205085754, + -0.03295264393091202, + 0.1189473420381546, + -0.022529801353812218, + -0.0009432804072275758, + 0.058764029294252396, + -0.04826074838638306, + -0.12074742466211319, + 0.014344382099807262, + 0.016061406582593918, + 0.13722454011440277, + -0.01192217692732811, + -0.019380532205104828, + -0.08085305988788605, + -0.03946300968527794, + 0.028564617037773132, + -0.04591355845332146, + 0.01181955449283123, + 0.02893105335533619, + 0.01219462975859642, + 0.0605194978415966, + 0.013040272518992424, + 0.020696230232715607, + 0.039910994470119476, + 0.0005229618400335312, + -0.0023941907566040754, + -0.07018241286277771, + -0.00988695863634348, + 0.024825209751725197, + -0.04115466773509979, + 0.04194457083940506, + 0.003543018363416195, + -0.02177618257701397, + -0.011676366440951824, + 0.10129421204328537, + 0.04357575252652168, + 0.014890152961015701, + -0.04524965211749077, + -0.02154622972011566, + -0.09780468791723251, + 0.056018367409706116, + -0.08585803955793381, + -0.04397367686033249, + -0.02498050220310688, + -0.05495302751660347, + 0.006900641601532698, + 0.07634231448173523, + -0.072749063372612, + 0.002779051661491394, + 0.0583188496530056, + 0.06653929501771927, + 0.07062015682458878, + -0.007542745675891638, + -0.029813118278980255, + -0.008751306682825089, + -0.06462674587965012, + -0.011283092200756073, + 0.10172805190086365, + -0.010496264323592186, + 0.002867505419999361, + 0.06293027848005295, + 0.02982097491621971, + 0.07725387066602707, + 0.00732101034373045, + 0.055941056460142136, + 0.05913127213716507, + -0.06921935081481934, + -0.016276560723781586, + -0.04368864744901657, + -0.11794056743383408, + 0.06512344628572464, + -0.024748004972934723, + -0.015151245519518852, + -0.011478952132165432, + -0.06103891134262085, + 0.027538670226931572, + -0.05523599311709404, + -0.03260420262813568, + 0.04603487253189087, + -0.001297778682783246, + 0.04183709993958473, + 0.020241117104887962, + -0.007859248667955399, + -0.13612079620361328, + -1.783950797959043e-33, + -0.0532158687710762, + -0.0076483916491270065, + -0.016172299161553383, + -0.06891504675149918, + -0.004377288278192282, + 0.01364242471754551, + 0.009398035705089569, + 0.03303036838769913, + 0.026706550270318985, + 0.0384124331176281, + -0.0667579397559166, + -0.0424969308078289, + 0.04411286860704422, + -0.04943851754069328, + 0.11694581061601639, + 0.0376882441341877, + 0.008125538937747478, + 0.04243317246437073, + 0.0006935328128747642, + 0.05233628302812576, + -0.02726101316511631, + -0.0244151558727026, + -0.11499615013599396, + -0.032891519367694855, + -0.021237175911664963, + 0.060104675590991974, + 0.07498247176408768, + -0.034803278744220734, + -0.08313867449760437, + 0.009502115659415722, + -0.11545918881893158, + -0.04022633284330368, + -0.0450698621571064, + 0.04269604757428169, + 0.033030468970537186, + 0.04869953542947769, + -0.028024308383464813, + -0.0961502343416214, + -0.0037045530043542385, + 0.00977238453924656, + -0.04240372031927109, + 0.06043822318315506, + 0.044447533786296844, + -0.021474288776516914, + 0.012036505155265331, + -0.03666301071643829, + -0.020149409770965576, + -0.053910866379737854, + -0.10091663897037506, + 0.02809683419764042, + 0.04563494399189949, + -0.0005137412808835506, + 0.012588664889335632, + -0.01220700889825821, + -0.0012775450013577938, + 0.03817495331168175, + 0.021363403648138046, + -0.03720942884683609, + 0.051363445818424225, + 0.06826139241456985, + -0.04862925410270691, + -0.008789916522800922, + -0.07062841951847076, + 0.10169347375631332, + -0.015093442983925343, + -0.04062185809016228, + 0.0049438453279435635, + -0.02317672036588192, + -0.045220114290714264, + -0.007824202999472618, + 0.07436157763004303, + -0.013228246942162514, + -0.06537146866321564, + -0.028381872922182083, + 0.030333928763866425, + -0.03711627051234245, + 0.0014660604065284133, + -0.04748237133026123, + -0.028597721830010414, + -0.03672797605395317, + -0.04011038318276405, + -0.04858708381652832, + -0.04338393732905388, + 0.06354701519012451, + 0.055691443383693695, + 0.0351419672369957, + 0.0078452592715621, + 0.030329393222928047, + 0.0275176502764225, + 0.02617955207824707, + -0.02131914347410202, + 0.08751719444990158, + -0.06740128993988037, + 0.009403817355632782, + -0.03343208506703377, + -2.860006098615031e-08, + -0.045060113072395325, + -0.017383579164743423, + -0.019176287576556206, + 0.013431872241199017, + 0.09141659736633301, + -0.05818928778171539, + -0.0549127459526062, + -0.07398463785648346, + -0.05822077393531799, + 0.0632629320025444, + -0.01640438474714756, + 0.05977823957800865, + 0.02775467000901699, + 0.010634300298988819, + 0.08949839323759079, + 0.06689796596765518, + 0.006734424736350775, + 0.08547139912843704, + -0.016523990780115128, + 0.02435722015798092, + 0.04390576481819153, + 0.03049260936677456, + -0.005433772224932909, + -0.058102838695049286, + -0.03698240965604782, + 0.00946466252207756, + -0.05030776187777519, + -0.009371697902679443, + -0.04862922430038452, + 0.022078193724155426, + 0.08425891399383545, + 0.11775436252355576, + -0.029252732172608376, + -0.04477042704820633, + -0.0658414363861084, + 0.027142992243170738, + -0.010864516720175743, + 0.05512541905045509, + -0.0047043743543326855, + 0.09304783493280411, + 0.09460566192865372, + 0.013098328374326229, + -0.001495737349614501, + 0.03265096992254257, + 0.06179472431540489, + 0.0473717525601387, + 0.06465668231248856, + -0.0800761878490448, + -0.05562824383378029, + -0.088081955909729, + -0.01938065141439438, + -0.010914123617112637, + 0.06743434816598892, + 0.06585520505905151, + -0.023465143516659737, + -0.05452101305127144, + 0.0874686911702156, + 0.17881281673908234, + -0.03160310164093971, + 0.013308526016771793, + 0.08245465159416199, + 0.09307969361543655, + 0.02119472064077854, + -0.01677875779569149 + ], + "person-simple-hike-bold||*new*,pedestrian,climbing,mountaineering,bouldering": [ + -0.03686462342739105, + -0.04337974637746811, + 0.055284567177295685, + 0.06452704966068268, + 0.014685182832181454, + -0.005832746159285307, + 0.06814809888601303, + 0.007752785924822092, + -0.08118333667516708, + 0.028742240741848946, + 0.0628916323184967, + -0.033831145614385605, + -0.023934373632073402, + 0.041419096291065216, + 0.034213289618492126, + 0.07664988189935684, + 0.024037102237343788, + 0.10731368511915207, + 0.06850862503051758, + 0.029286563396453857, + -0.03745928779244423, + 0.013443980365991592, + -0.012755058705806732, + 0.10382489860057831, + 0.019839292392134666, + -0.007440072018653154, + 0.01575140655040741, + -0.01493404433131218, + 0.06325173377990723, + -0.0454200878739357, + -0.003029490588232875, + 0.03187227249145508, + 0.0644805058836937, + 0.009061937220394611, + 0.014104785397648811, + 0.10466895252466202, + 0.014826415106654167, + 0.02258973941206932, + -0.044039927423000336, + 0.05106581002473831, + -0.029146337881684303, + -0.04942166060209274, + -0.019698161631822586, + -0.006714468356221914, + 0.029968641698360443, + -0.041785094887018204, + 0.013850174844264984, + -0.006805061362683773, + -0.004117439966648817, + 0.013284152373671532, + -0.004465488251298666, + -0.09100758284330368, + -0.125054270029068, + -0.01006155926734209, + 0.019444823265075684, + -0.004333206918090582, + -0.03918318822979927, + -0.02364538423717022, + 0.02081638015806675, + -0.0004972249735146761, + 0.08017109334468842, + -0.025046374648809433, + -0.003459891537204385, + 0.028405871242284775, + 0.013279869221150875, + -0.024034850299358368, + -0.030893372371792793, + -0.05519067123532295, + 0.06925106048583984, + 0.035362206399440765, + 0.03455605357885361, + 0.019047696143388748, + -0.008660049177706242, + -0.021415187045931816, + -0.040298476815223694, + -0.06418535113334656, + -0.011400655843317509, + 0.053545646369457245, + -0.06599564850330353, + -0.050034139305353165, + -0.06727993488311768, + -0.05647038668394089, + 0.019284620881080627, + -0.054038263857364655, + 0.021634215489029884, + 0.04166930541396141, + -0.07205668836832047, + 0.014944593422114849, + -0.054123278707265854, + -0.038923002779483795, + -0.0580299012362957, + 0.03466203063726425, + -0.052199557423591614, + -0.0012370372423902154, + -0.12894853949546814, + -0.005093930754810572, + -0.04300496727228165, + -0.027421938255429268, + -0.06481199711561203, + 0.10303300619125366, + 0.0018762083491310477, + 0.030695166438817978, + 0.04062445089221001, + 0.0785541832447052, + 0.04471960291266441, + -0.07852232456207275, + -0.03117976151406765, + -0.057648949325084686, + -0.02862045168876648, + 0.07776837795972824, + 0.030429499223828316, + -0.10434968769550323, + 0.030736614018678665, + -0.02361474558711052, + 0.012415106408298016, + 0.011516787111759186, + -0.10993842780590057, + 0.022876881062984467, + 0.03293924406170845, + 0.15576402842998505, + -0.021342532709240913, + -0.02075212635099888, + 0.05563345551490784, + -0.05637074634432793, + -0.0500207394361496, + -0.011508719995617867, + 0.06527981162071228, + -3.142972510381322e-33, + 0.043000854551792145, + 0.07397391647100449, + 0.02955448441207409, + 0.11471153050661087, + -0.011617948301136494, + -0.021363932639360428, + -0.12099259346723557, + -0.037545107305049896, + -0.014580432325601578, + 0.03524816408753395, + 0.07536651939153671, + 0.010655599646270275, + 0.02557128295302391, + 0.1491803675889969, + 0.0028136689215898514, + -0.08447295427322388, + 0.004315648693591356, + -0.05334138125181198, + -0.08456914126873016, + 0.03671356290578842, + 0.030523471534252167, + 0.047253675758838654, + -0.013419953174889088, + 0.01918461173772812, + -0.003161181230098009, + -0.04675964638590813, + 0.06732510775327682, + -0.03415080904960632, + -0.036742400377988815, + 0.015727099031209946, + 0.0020713924895972013, + 0.015092143788933754, + 0.03981022909283638, + -0.013059267774224281, + 0.03614920377731323, + 0.009086882695555687, + 0.0722445547580719, + -0.05738126114010811, + 0.004581892397254705, + -0.0077767218463122845, + -0.03518102318048477, + -0.02251082845032215, + 0.030731499195098877, + -0.04098217561841011, + -0.017350630834698677, + 0.11618485301733017, + 0.0928882583975792, + -0.03557317331433296, + -0.10084421932697296, + 0.011120128445327282, + -0.08485832065343857, + -0.002979877172037959, + -0.02046828158199787, + 0.04293907433748245, + -0.03391280025243759, + -0.03871818259358406, + -0.012253455817699432, + 0.03548600152134895, + -0.00776833388954401, + -0.01641065999865532, + 0.05881521478295326, + 0.11006349325180054, + -0.019763609394431114, + 0.017033865675330162, + -0.07717624306678772, + -0.11467409133911133, + -0.019899193197488785, + -0.006784338969737291, + 0.05243421345949173, + 0.02367762103676796, + -0.0006594142178073525, + 0.08868111670017242, + 0.05008513852953911, + 0.02633899450302124, + 0.003613627515733242, + -0.001459036604501307, + 0.025465061888098717, + -0.04950285330414772, + -0.008263308554887772, + -0.03195257857441902, + -0.1297096610069275, + 0.010524825192987919, + -0.01571686752140522, + 0.03282281756401062, + -0.013633466325700283, + 0.009198663756251335, + 0.011275898665189743, + -0.1112285703420639, + 0.012730552814900875, + 0.05236160010099411, + -0.0834181010723114, + 0.04208068549633026, + -0.027823548763990402, + -0.005752034951001406, + -0.045879703015089035, + 3.931079024470278e-34, + 0.01932152919471264, + 0.015882432460784912, + 0.07341007888317108, + -0.058639202266931534, + 0.0253705196082592, + -0.004923820961266756, + 0.027746912091970444, + -0.005308706779032946, + 0.049036238342523575, + 0.05360686033964157, + -0.13845284283161163, + -0.026595234870910645, + 0.03453487902879715, + -0.01078980602324009, + 0.12794214487075806, + -0.01126102078706026, + -0.055396441370248795, + 0.05075895041227341, + -0.0031608054414391518, + 0.08986882120370865, + -0.01772482879459858, + 0.030792515724897385, + -0.1637180745601654, + -0.047327276319265366, + 0.036800529807806015, + 0.036740612238645554, + 0.04115546494722366, + 0.026930533349514008, + -0.0031367926858365536, + -0.06427527219057083, + -0.03754650428891182, + -0.013668452389538288, + -0.03978271409869194, + -0.057495370507240295, + -0.07163034379482269, + 0.12038535624742508, + -0.05362490192055702, + -0.026657024398446083, + -0.011721172370016575, + 0.04416130483150482, + 0.008353699930012226, + 0.03772033005952835, + 0.07073602080345154, + -0.04795970767736435, + 0.01745559647679329, + -0.03432184457778931, + -0.07685628533363342, + -0.039197683334350586, + -0.15271899104118347, + -0.007458514999598265, + -0.01754225604236126, + -0.005128130316734314, + -0.03995529189705849, + 0.01764655113220215, + 0.022581713274121284, + -0.03635135665535927, + -0.011846884153783321, + -0.03499389439821243, + -0.016878165304660797, + -0.014008522033691406, + -0.02375909872353077, + 0.01163241546601057, + -0.0701601654291153, + 0.09811287373304367, + -0.01819988712668419, + -0.04961828142404556, + -0.0406140498816967, + -0.05499431490898132, + -0.07566787302494049, + 0.017133057117462158, + -0.01246007438749075, + -0.02723519876599312, + -0.07217057049274445, + -0.0507526658475399, + 0.015205195173621178, + -0.05674339830875397, + -0.010303632356226444, + 0.001743577653542161, + 0.04296804219484329, + -0.11714993417263031, + -0.019114434719085693, + -0.029162948951125145, + -0.05623643472790718, + 0.04002143442630768, + 0.03344014659523964, + 0.054336145520210266, + 0.013570599257946014, + 0.025567172095179558, + -0.027376387268304825, + -0.02087838016450405, + 0.009474322199821472, + 0.03684065118432045, + -0.09060943126678467, + 0.046348292380571365, + -0.08908813446760178, + -2.2215754569288038e-08, + -0.05654015392065048, + 0.053773075342178345, + -0.09746066480875015, + 0.0032451702281832695, + 0.06661003828048706, + -0.007597810123115778, + 0.008259300142526627, + -0.05175182968378067, + -0.02267233096063137, + 0.03735380992293358, + -0.004374879412353039, + 0.04556427523493767, + 0.03276226669549942, + 0.08690064400434494, + 0.021092072129249573, + 0.030609214678406715, + -0.006655671168118715, + 0.040390629321336746, + -0.06565017998218536, + -0.007349834777414799, + 0.014681698754429817, + 0.05775948241353035, + -0.0030777740757912397, + 0.020534774288535118, + -0.02614164538681507, + -0.002401005709543824, + -0.009499246254563332, + 0.014147002249956131, + 0.024255024269223213, + 0.05011889711022377, + 0.03411952778697014, + 0.11328616738319397, + -0.06301461160182953, + 0.0507851168513298, + 0.002174683613702655, + 0.05073990672826767, + 0.01885443553328514, + 0.05559900403022766, + 0.002328665694221854, + 0.09023337811231613, + -0.005395378451794386, + 0.023829268291592598, + 0.023722486570477486, + 0.04985114187002182, + -0.03422340378165245, + -0.013236132450401783, + 0.014905789867043495, + -0.09385886043310165, + -0.01879919320344925, + -0.08868571370840073, + -0.005697678308933973, + -0.06785418093204498, + 0.013549030758440495, + 0.04452986270189285, + 0.048185206949710846, + 0.038738809525966644, + 0.03678137809038162, + 0.07018803060054779, + -0.05220876261591911, + 0.002159178489819169, + 0.058988057076931, + -0.049561917781829834, + -0.0479857511818409, + -0.03818608075380325 + ], + "person-simple-run-bold||pedestrian,running,human,woman,man,body,transit,transportation,travel,commuter,user,exercise": [ + 0.0428878478705883, + -0.031083283945918083, + 0.01695207878947258, + 0.043298523873090744, + -0.006191910244524479, + 0.01756410486996174, + 0.07818436622619629, + 0.004332640208303928, + -0.09590660780668259, + 0.014242387376725674, + 0.04228431358933449, + -0.014419157058000565, + -0.008935789577662945, + -0.019507035613059998, + 0.03742280602455139, + 0.007823705673217773, + 0.06514354795217514, + 0.053280461579561234, + 0.013247053138911724, + 0.10358303040266037, + -0.02538663148880005, + 0.011117072775959969, + -0.009861411526799202, + 0.03795648366212845, + -0.06943675130605698, + 0.012380233965814114, + 0.0371551476418972, + -0.01388420257717371, + -0.0028716723900288343, + -0.027403157204389572, + 0.018889084458351135, + -0.004265469964593649, + 0.09009207785129547, + 0.04041772708296776, + -0.03737686946988106, + 0.016694992780685425, + 0.01608590967953205, + 0.04989304021000862, + -0.0202616136521101, + 0.04458918049931526, + -0.03334682062268257, + -0.1264713853597641, + -0.02910427935421467, + 0.02781888283789158, + 0.04439625144004822, + -0.03037388063967228, + -0.037989310920238495, + -0.03193686902523041, + -0.01951260305941105, + -0.026129581034183502, + 0.003429046366363764, + -0.058125272393226624, + -0.08211252838373184, + 0.05816405639052391, + 0.012250891886651516, + -0.026579592376947403, + -0.04079042375087738, + 0.029006117954850197, + 0.016868626698851585, + 0.02161070518195629, + 0.02725137211382389, + -0.02334216609597206, + 0.017005033791065216, + 0.056926459074020386, + 0.024664683267474174, + -0.047817762941122055, + -0.020056946203112602, + -0.035402216017246246, + 0.06264849007129669, + 0.041327834129333496, + 0.045386869460344315, + 0.006376247387379408, + -0.04326821491122246, + 0.003062039613723755, + -0.06218992546200752, + -0.04497852176427841, + 0.026477424427866936, + -0.03829364478588104, + -0.037379465997219086, + -0.04251589626073837, + -0.061425477266311646, + -0.08684152364730835, + -0.07375775277614594, + 0.02111690118908882, + 0.035853154957294464, + 0.11496277153491974, + -0.0789904072880745, + 0.011023495346307755, + -0.08220825344324112, + -0.02634967677295208, + -0.08888278156518936, + 0.02982250228524208, + 0.058915864676237106, + -0.01767052710056305, + -0.07504841685295105, + -0.008067016489803791, + -0.022651003673672676, + -0.010664564557373524, + -0.04558064788579941, + 0.08247852325439453, + -0.03234763815999031, + 0.018745537847280502, + 0.11502983421087265, + 0.10204526782035828, + -0.024749837815761566, + -0.05816688388586044, + -0.023914040997624397, + -0.05570990964770317, + 0.009948089718818665, + 0.002763662952929735, + 0.03782864660024643, + -0.13184165954589844, + -0.028709951788187027, + -0.017950832843780518, + 0.005335609428584576, + -0.055808063596487045, + -0.08693995326757431, + -0.01765316165983677, + 0.08547720313072205, + 0.1313062459230423, + -0.056405920535326004, + -0.009564511477947235, + -0.002361760474741459, + -0.044315602630376816, + -0.01598377712070942, + -0.04204028099775314, + 0.10499028116464615, + -4.083306644927718e-33, + -0.04685473069548607, + 0.005243141204118729, + 0.09937714040279388, + 0.11810582131147385, + -0.015820909291505814, + -0.03823675215244293, + -0.08342447876930237, + -0.05889200046658516, + -0.02413817308843136, + 0.03678952530026436, + 0.06894879788160324, + -0.017208939418196678, + 0.005282553378492594, + 0.11870615184307098, + 0.032510384917259216, + -0.017954371869564056, + -0.005282856523990631, + -0.020948829129338264, + -0.08879291266202927, + 0.10991552472114563, + 0.08416290581226349, + 0.09374839812517166, + -0.06165291741490364, + -0.04074052721261978, + 0.013420430943369865, + -0.043929047882556915, + 0.05328712984919548, + -0.009040599688887596, + 0.03297629952430725, + 0.022350339218974113, + 0.015741191804409027, + 0.039856478571891785, + 0.007436526473611593, + 0.04288210719823837, + -0.023410195484757423, + -0.04547465965151787, + -0.009074178524315357, + -0.02921818383038044, + -0.02032877504825592, + -0.041310377418994904, + -0.0869327113032341, + -0.04023437201976776, + 0.036513179540634155, + -0.03636128827929497, + -0.01048146653920412, + 0.08845897763967514, + 0.024832595139741898, + -0.015647118911147118, + -0.03820721060037613, + 0.05763494595885277, + -0.06851257383823395, + 0.028625164180994034, + -0.01137357484549284, + 0.01023793499916792, + -0.0029163730796426535, + -0.04794669523835182, + 0.001219200319610536, + 0.06949570029973984, + -0.0414891242980957, + 0.03958503529429436, + 0.0006779342074878514, + 0.08486954122781754, + -0.01022206712514162, + 0.014132600277662277, + -0.022317007184028625, + -0.056783635169267654, + -0.049726713448762894, + -0.06356584280729294, + 0.031092656776309013, + 0.0556112676858902, + 0.027105968445539474, + 0.06508810818195343, + 0.0405576154589653, + 0.0656806230545044, + 0.07719185948371887, + 0.04916348308324814, + 0.07001625746488571, + -0.018659941852092743, + -0.11762554943561554, + -0.03676852583885193, + -0.09285858273506165, + 0.0008651827229186893, + 0.0011590749491006136, + 0.020369790494441986, + 0.029304809868335724, + 0.034161292016506195, + -0.005612099543213844, + -0.12127087265253067, + -0.019892996177077293, + 0.039998285472393036, + -0.00018962266040034592, + 0.021708223968744278, + -0.05659904330968857, + 0.029533524066209793, + -0.10203832387924194, + 6.913547883151394e-34, + -0.01541236974298954, + 0.06749889254570007, + -0.0009789785835891962, + -0.04422362148761749, + 0.06110639497637749, + 0.015030448324978352, + 0.04173216223716736, + -0.013519568368792534, + 0.03995559737086296, + 0.07474023103713989, + -0.11967632919549942, + -0.08077187836170197, + 0.029560374096035957, + 0.0005579052376560867, + 0.09355274587869644, + 0.010975477285683155, + 0.011641344986855984, + 0.02427816018462181, + -0.026465216651558876, + 0.08445074409246445, + -0.046061910688877106, + 0.031170513480901718, + -0.08459954708814621, + -0.029848460108041763, + 0.025105897337198257, + 0.028846608474850655, + 0.08966828882694244, + -0.001998343039304018, + -0.04637199640274048, + -0.04506026208400726, + -0.04813972860574722, + -0.03943632170557976, + -0.04050152376294136, + -0.052509501576423645, + -0.07402679324150085, + 0.04380708560347557, + -0.10113482177257538, + 0.011645541526377201, + 0.0262089055031538, + 0.009936579503118992, + -0.019681069999933243, + 0.054269034415483475, + 0.054964713752269745, + -0.010583613999187946, + 0.018855813890695572, + -0.03182386979460716, + -0.11582736670970917, + -0.12008288502693176, + -0.14993922412395477, + 0.01012267917394638, + 0.007663806900382042, + -0.008861856535077095, + -0.04353826120495796, + 0.012670833617448807, + 0.042734529823064804, + -0.06351465731859207, + 0.06831309199333191, + -0.07665594667196274, + -0.02499750442802906, + 0.020013263449072838, + 0.0037347818724811077, + 0.04163812845945358, + -0.05511615425348282, + 0.10070541501045227, + -0.04229876771569252, + -0.07239984720945358, + -0.0815170630812645, + -0.06342621892690659, + -0.051460254937410355, + -0.036169711500406265, + 0.0018657862674444914, + -0.03334283456206322, + -0.08728952705860138, + 0.031042348593473434, + -0.020897533744573593, + -0.05446257442235947, + -0.009114625863730907, + 0.022624369710683823, + 0.021731261163949966, + -0.011175200343132019, + -0.015602568164467812, + -0.04638936370611191, + 0.0027614713180810213, + -0.016580011695623398, + -0.00114630744792521, + 0.055702827870845795, + -0.04605463147163391, + 0.04191765561699867, + -0.03239983320236206, + 0.03634345158934593, + 0.025206172838807106, + 0.10430373251438141, + -0.06588447093963623, + 0.03500793129205704, + -0.09084297716617584, + -2.7335133268024947e-08, + -0.01929408498108387, + 0.014920881949365139, + -0.016490744426846504, + -0.01752731204032898, + 0.0319911427795887, + 0.016509002074599266, + 0.021261341869831085, + -0.07337895780801773, + -0.02570878528058529, + 0.03934630751609802, + -0.00014530592306982726, + 0.01280207559466362, + 0.03654365614056587, + 0.1008838415145874, + 0.06862951815128326, + 0.04854898899793625, + -0.03283680975437164, + 0.01482967846095562, + -0.07206148654222488, + 0.00501194316893816, + 0.021718356758356094, + 0.03361479565501213, + -0.07726020365953445, + 0.05259263515472412, + 0.011027871631085873, + 0.016334323212504387, + -0.06646085530519485, + 0.0034928021486848593, + -0.0011644158512353897, + 0.013101429678499699, + 0.011192417703568935, + 0.12453531473875046, + -0.043268926441669464, + -0.011047529056668282, + -0.06426709145307541, + 0.05945576727390289, + 0.04938535764813423, + 0.04931366443634033, + -0.03128758445382118, + 0.08701614290475845, + 0.024524813517928123, + -0.020521430298686028, + -0.008184448815882206, + 0.03166552260518074, + 0.09374718368053436, + -0.014515943825244904, + 0.006733522284775972, + -0.09771261364221573, + -0.008132990449666977, + -0.06953132152557373, + -0.013967479579150677, + -0.07397110015153885, + 0.011999656446278095, + 0.0061349282041192055, + 0.03616803511977196, + 0.008965400978922844, + -0.004181997384876013, + 0.06417214870452881, + -0.047601837664842606, + -0.02711758017539978, + 0.07443030178546906, + 0.025375649333000183, + -0.004933488555252552, + 0.026019398123025894 + ], + "person-simple-ski-bold||*new*,sports,skiing,winter,mountain": [ + -0.037107717245817184, + -0.0003381490823812783, + 0.030892085283994675, + 0.024080296978354454, + 0.011483420617878437, + -0.003166175214573741, + 0.1001076027750969, + -0.01833641156554222, + -0.054658908396959305, + 0.0648634284734726, + -0.004146527033299208, + -0.032953038811683655, + -0.006299435626715422, + 0.026757126674056053, + 0.01448532659560442, + 0.02280219830572605, + -0.014467105269432068, + 0.08832323551177979, + 0.044392574578523636, + 0.029192721471190453, + 0.002200950402766466, + 0.016406860202550888, + -0.021055370569229126, + 0.07528343796730042, + 0.01774819754064083, + 0.017934422940015793, + -0.022041548043489456, + 0.030912693589925766, + -0.002146947430446744, + 0.0025906965602189302, + -0.06526944786310196, + -0.006851903162896633, + 0.09534068405628204, + 0.049806300550699234, + -0.030532563105225563, + 0.07083681970834732, + -0.015460182912647724, + 0.04825233295559883, + -0.08065997809171677, + 0.10120018571615219, + -0.005484197288751602, + -0.04080764576792717, + -0.038948822766542435, + 0.008139883168041706, + 0.02813687175512314, + 0.020731326192617416, + 0.01273565273731947, + 0.000434903078712523, + 0.025806227698922157, + 0.07326357811689377, + -0.06472202390432358, + -0.04067239165306091, + -0.10731357336044312, + 0.01655598357319832, + 0.0517706573009491, + 0.005249521229416132, + -0.08348874002695084, + -0.0031708816532045603, + 0.0020797126926481724, + -0.004423238802701235, + 0.06740104407072067, + -0.02567981369793415, + -0.011181825771927834, + 0.0770498514175415, + 0.03304903209209442, + -0.016129106283187866, + -0.04121784493327141, + -0.042132418602705, + -0.025261005386710167, + 0.028494251891970634, + -0.007174464408308268, + 0.06380696594715118, + -0.017799895256757736, + 0.029205860570073128, + -0.0376284085214138, + -0.10000862926244736, + -0.01788698136806488, + -0.0159576628357172, + -0.0803806483745575, + 0.007499644532799721, + -0.0416102260351181, + -0.12325430661439896, + 0.003086869604885578, + -0.021934248507022858, + 0.03169314190745354, + -0.006692409981042147, + -0.034236323088407516, + -0.07613881677389145, + -0.016327057033777237, + -0.015305296517908573, + -0.13048703968524933, + -0.010507523082196712, + 0.030562207102775574, + 0.02043013833463192, + -0.10550776869058609, + 0.07042043656110764, + -0.019433053210377693, + -0.021725276485085487, + -0.05071917921304703, + 0.0902838408946991, + -0.022902412340044975, + -0.017868829891085625, + 0.07195371389389038, + 0.0612809993326664, + 0.012065358459949493, + -0.027745181694626808, + -0.0018733927281573415, + -0.024827327579259872, + -0.04324305057525635, + 0.05716799572110176, + 0.0041083223186433315, + -0.05648950859904289, + -0.00502093555405736, + -0.04781125858426094, + 0.03009546920657158, + 0.01875714212656021, + -0.13444629311561584, + -0.04919186979532242, + 0.04409020394086838, + 0.09740326553583145, + -0.021777687594294548, + 0.02662126161158085, + 0.04190828651189804, + -0.005615361034870148, + -0.05119893327355385, + 0.03123447671532631, + 0.09665945172309875, + -4.6758391843726626e-33, + 0.018565218895673752, + 0.044766865670681, + 0.02076508291065693, + 0.13237352669239044, + -0.06585533916950226, + 0.02436883933842182, + -0.0662294551730156, + -0.027701573446393013, + -0.021659327670931816, + 0.041299887001514435, + 0.06681680679321289, + 0.05375942587852478, + -0.04789028689265251, + 0.0655614361166954, + 0.04253937676548958, + 0.05467892810702324, + -0.005525787360966206, + -0.09361476451158524, + -0.08736713230609894, + 0.08088497817516327, + 0.07116203010082245, + 0.14052802324295044, + 0.011148344725370407, + 0.008713277988135815, + -0.0662231296300888, + -0.06752961874008179, + 0.08102335035800934, + -0.06970436125993729, + -0.064079150557518, + 0.02315489761531353, + 0.04822790250182152, + -0.020106708630919456, + 0.05669204890727997, + -0.008948806673288345, + 0.07782648503780365, + -0.00029379516490735114, + 0.01635918952524662, + -0.03585793823003769, + 0.026629537343978882, + 0.034899335354566574, + -0.047522205859422684, + -0.06594366580247879, + 0.013708792626857758, + -0.024940431118011475, + -0.038796816021203995, + 0.08288504928350449, + 0.06468536704778671, + 0.0038292184472084045, + -0.0642063170671463, + 0.017051735892891884, + -0.030659615993499756, + 0.04574716091156006, + -0.01078142412006855, + 0.003561390796676278, + -0.02641182765364647, + 0.0008386268746107817, + 0.011746185831725597, + 0.07955314964056015, + -0.0469333715736866, + 0.007653305307030678, + 0.00547325424849987, + 0.0659816712141037, + 0.042060405015945435, + -0.04212241619825363, + -0.04522138461470604, + -0.05776628851890564, + 0.03696953132748604, + -0.00019189865270163864, + 0.0453311987221241, + -0.004598912317305803, + 0.030090544372797012, + 0.06008974462747574, + -0.004425820894539356, + 0.03211616724729538, + 0.028917083516716957, + 0.05623738095164299, + 0.06052994728088379, + -0.051467254757881165, + -0.04080439731478691, + -0.010435924865305424, + -0.06652088463306427, + 0.00045587887871079147, + -0.015471722930669785, + 0.08760891109704971, + -0.1263742744922638, + 0.02801426872611046, + 0.03536135330796242, + -0.08848678320646286, + -0.010904737748205662, + 0.05994191765785217, + -0.09186325967311859, + 0.04572274535894394, + 0.023104796186089516, + -0.024372849613428116, + -0.06303583830595016, + 7.681483189686728e-34, + 0.0373891219496727, + -0.02324613556265831, + 0.0036088167689740658, + -0.03264554217457771, + -0.010570680722594261, + 0.014728170819580555, + 0.07073186337947845, + 0.017518285661935806, + 0.016584791243076324, + 0.07358767837285995, + -0.09804626554250717, + -0.10339177399873734, + 0.02100406028330326, + -0.06005847081542015, + 0.05406692251563072, + 0.003472281154245138, + -0.0663534477353096, + 0.07117212563753128, + -0.006312614306807518, + 0.04110199585556984, + 0.012782718986272812, + 0.057275354862213135, + -0.13693328201770782, + -0.026707805693149567, + 0.020072689279913902, + 0.017988070845603943, + 0.0853269100189209, + 0.06372109800577164, + -0.10965517908334732, + -0.04259904846549034, + -0.02493426762521267, + 0.01580914668738842, + 0.014974430203437805, + -0.02312467247247696, + -0.07848253101110458, + 0.14885348081588745, + -0.07056105136871338, + -0.12282635271549225, + -0.030597709119319916, + -0.0029567349702119827, + 0.027174411341547966, + -0.012120798230171204, + 0.07253684103488922, + -0.04979054257273674, + 0.06508814543485641, + -0.042087286710739136, + -0.07395290583372116, + -0.03355900198221207, + -0.08077400177717209, + 0.011810915544629097, + -0.014181889593601227, + 0.008662410080432892, + -0.09270251542329788, + 0.01881047524511814, + 0.02647290751338005, + -0.044951826333999634, + -0.012486040592193604, + -0.06575951725244522, + -0.016249466687440872, + -0.0011192854726687074, + -0.03919483348727226, + -0.019065164029598236, + -0.07242624461650848, + 0.05217910557985306, + -0.005372185260057449, + -0.06699743866920471, + -0.016190340742468834, + -0.10437716543674469, + -0.03187614306807518, + -0.03750591725111008, + 0.00716072553768754, + -0.07531744241714478, + -0.03756926953792572, + -0.08293517678976059, + -0.013683117926120758, + -0.0006268987199291587, + 0.014718467369675636, + 0.0527547225356102, + 0.03277337923645973, + -0.07862668484449387, + -0.023227879777550697, + -0.04289872199296951, + -0.05345917120575905, + 0.07283797860145569, + 0.023672007024288177, + 0.08525560051202774, + -0.010146766901016235, + -0.016172047704458237, + -0.0009127674275077879, + -0.0010551521554589272, + 0.012327632866799831, + 0.035445693880319595, + -0.0633685514330864, + -0.006458059884607792, + -0.11045396327972412, + -2.1664927629672093e-08, + 0.0170527882874012, + 0.06051734834909439, + -0.07070160657167435, + 0.05292721837759018, + 0.046106018126010895, + 0.020762989297509193, + -0.05233914032578468, + -0.08351586014032364, + -0.052996501326560974, + 0.03158539533615112, + 0.02065415494143963, + 0.04185689613223076, + 0.04327510669827461, + 0.07240395247936249, + 0.06356602907180786, + 0.05215596407651901, + -0.032163094729185104, + 0.08176231384277344, + -0.05386663228273392, + 0.001579495845362544, + -0.005868114531040192, + 0.022037126123905182, + -0.04553582891821861, + 0.04416487365961075, + -0.030473673716187477, + -0.042507827281951904, + -0.040610361844301224, + -0.022841408848762512, + 0.06242280825972557, + 0.012616937048733234, + -0.029578186571598053, + 0.07015564292669296, + -0.023735247552394867, + -0.0049459622241556644, + -0.0004677531833294779, + 0.034333158284425735, + -0.01989961974322796, + 0.035707950592041016, + -0.02702605165541172, + 0.03478062525391579, + -0.01143042091280222, + 0.04526682198047638, + 0.07367539405822754, + 0.04752777889370918, + -0.031963929533958435, + 0.005642421077936888, + 0.02501675672829151, + -0.09675437957048416, + -0.027052897959947586, + -0.04709703102707863, + 0.002481738803908229, + -0.06617443263530731, + 0.022248849272727966, + 0.08703800290822983, + -0.06589895486831665, + 0.04797765985131264, + 0.01379418931901455, + 0.051271986216306686, + -0.06292789429426193, + -0.014769965782761574, + 0.06416548043489456, + -0.03597009554505348, + -0.06481834501028061, + -0.016561267897486687 + ], + "person-simple-snowboard-bold||*new*,sports,snowboarding,winter,mountain": [ + -0.01268535666167736, + -0.06485972553491592, + 0.016810985282063484, + 0.003882800228893757, + 0.0040672472678124905, + -0.019496040418744087, + 0.0876927599310875, + 0.004649546463042498, + -0.03921344876289368, + 0.039128318428993225, + -0.03406330570578575, + -0.0348334014415741, + -0.025359386578202248, + -0.0004468010156415403, + -0.0032944490667432547, + 0.03597121685743332, + 0.024159641936421394, + 0.03653740882873535, + 0.04782601445913315, + 0.044211726635694504, + -0.021908778697252274, + 0.012480444274842739, + -0.02493279054760933, + 0.07942403107881546, + -0.010310734622180462, + 0.03430549055337906, + -0.018757576122879982, + 0.03151020035147667, + -0.016717594116926193, + -0.012409473769366741, + -0.035626672208309174, + 0.009789885021746159, + 0.12114305794239044, + 0.019074633717536926, + -0.013933790847659111, + 0.05752629414200783, + 0.004317750688642263, + 0.07701713591814041, + -0.09051557630300522, + 0.04187227413058281, + -0.01605777069926262, + -0.06396865844726562, + -0.009475433267652988, + 0.06890778988599777, + 0.0016016581794247031, + 0.05229732021689415, + 0.013236789964139462, + 0.00030007355962879956, + 0.022098619490861893, + 0.029512790963053703, + -0.018936501815915108, + -0.10071241855621338, + -0.1316862553358078, + 0.030543845146894455, + 0.04364575073122978, + 0.006556025706231594, + -0.0916142463684082, + -0.035042740404605865, + 0.02956293523311615, + -0.010849202051758766, + 0.02176007442176342, + -0.0015643042279407382, + 0.022923460230231285, + 0.0910111591219902, + 0.0682515949010849, + 0.022920740768313408, + -0.01583545096218586, + -0.049930475652217865, + -0.001107573858462274, + 0.007866661064326763, + 0.020181706175208092, + 0.04765275865793228, + -0.027295053005218506, + 0.027345579117536545, + -0.02283094823360443, + -0.04773489758372307, + -0.002054989105090499, + -0.004999068100005388, + -0.050344813615083694, + -0.0010905617382377386, + -0.05797790363430977, + -0.11186987906694412, + 0.0048518129624426365, + -0.032422274351119995, + 0.036441490054130554, + 0.01761515624821186, + -0.10298033803701401, + -0.03449041023850441, + -0.07022935152053833, + -0.01899660937488079, + -0.12964759767055511, + 0.020752152428030968, + 0.06677930802106857, + 0.04828183352947235, + -0.17315568029880524, + 0.057519085705280304, + -0.031145183369517326, + -0.027437442913651466, + -0.09354369342327118, + 0.08340448886156082, + -0.010586944408714771, + 0.016074446961283684, + 0.06229579076170921, + 0.0434238538146019, + 0.0002006257273023948, + -0.03660663962364197, + -0.05410102382302284, + -0.027237968519330025, + -0.05141730606555939, + 0.05500926077365875, + -0.033062174916267395, + -0.07490935176610947, + -0.050566062331199646, + -0.003894771682098508, + 0.06554082781076431, + -0.018800197169184685, + -0.11820033192634583, + -0.01748592033982277, + 0.028769860044121742, + 0.0958726778626442, + -0.04155072942376137, + 0.020522186532616615, + 0.06470120698213577, + -0.015094977803528309, + -0.05546225979924202, + 0.010895716957747936, + 0.08327506482601166, + -3.267431648194478e-33, + 0.04329835996031761, + 0.031245743855834007, + 0.020124096423387527, + 0.09934420883655548, + -0.027405643835663795, + -0.022810015827417374, + -0.04487746208906174, + -0.014437875710427761, + -0.005444618873298168, + 0.07277559489011765, + 0.08869103342294693, + 0.02742423303425312, + -0.04323625564575195, + 0.06519142538309097, + 0.05533488467335701, + 0.033711809664964676, + -0.025312276557087898, + -0.09061691910028458, + -0.11253295838832855, + 0.14025606215000153, + 0.04185641556978226, + 0.14408092200756073, + 0.027461664751172066, + 0.060685787349939346, + -0.0259468462318182, + -0.08795429021120071, + 0.03316489979624748, + -0.05076587200164795, + -0.05635898560285568, + -0.001518848817795515, + 0.0314675010740757, + -0.04237974435091019, + 0.022387798875570297, + -0.004365921951830387, + 0.0680922269821167, + -0.04137864708900452, + 0.09316246956586838, + -0.0467941015958786, + 0.01237231120467186, + 0.017931878566741943, + -0.06862183660268784, + -0.06810813397169113, + -0.005718338303267956, + -0.025876257568597794, + 0.011398634873330593, + 0.08068127185106277, + 0.06727129966020584, + 0.036611899733543396, + -0.059759270399808884, + -0.018711207434535027, + -0.02628416009247303, + -0.0038416641764342785, + 0.002812596270814538, + -0.013699670322239399, + 0.002259325236082077, + -0.046045396476984024, + -0.006634291727095842, + 0.08958163857460022, + -0.03775249794125557, + -0.020504631102085114, + 0.014615862630307674, + 0.08321104943752289, + 0.04176229611039162, + -0.0075126211158931255, + -0.09435120224952698, + -0.04596755653619766, + 0.03920268267393112, + -0.00424920953810215, + 0.05149144306778908, + -0.013555684126913548, + 0.03878188133239746, + 0.07593020051717758, + 0.0579148605465889, + 0.05094302073121071, + 0.006337510421872139, + 0.06844985485076904, + 0.029242506250739098, + -0.10259000957012177, + -0.048015423119068146, + 0.019424408674240112, + -0.050443973392248154, + 0.04200564697384834, + -0.04485223442316055, + 0.09599234163761139, + -0.056902606040239334, + 0.010645267553627491, + 0.02478722296655178, + -0.0740865170955658, + -0.02594216726720333, + 0.07803703099489212, + -0.08016335219144821, + 0.011378745548427105, + 0.0039010802283883095, + -0.00583099527284503, + -0.06599409878253937, + 9.619471192116693e-36, + 0.022125910967588425, + -0.03362710028886795, + 0.017594611272215843, + -0.04932040721178055, + 0.011435069143772125, + 0.013930312357842922, + 0.05794740468263626, + 0.001761075109243393, + 0.04933968558907509, + 0.04559707269072533, + -0.04973999783396721, + -0.029043110087513924, + -0.0024405138101428747, + -0.06588008254766464, + 0.05820220336318016, + 0.008036636747419834, + -0.08902628719806671, + 0.09750479459762573, + -0.01122978888452053, + -0.007794744335114956, + 0.05914861708879471, + 0.02474304474890232, + -0.13119053840637207, + -0.023732997477054596, + -0.013286758214235306, + 0.02508515864610672, + 0.03412361070513725, + 0.09114561229944229, + -0.03299526870250702, + -0.024746695533394814, + -0.05172010138630867, + 0.04398685321211815, + 0.049062397330999374, + -0.05439113453030586, + -0.062251266092061996, + 0.14600782096385956, + -0.06614723801612854, + -0.0928090438246727, + 0.0024572755210101604, + -0.01755562424659729, + 0.010995825752615929, + 0.03625655174255371, + 0.05045229569077492, + -0.02551085688173771, + 0.06646059453487396, + -0.03330904245376587, + -0.09693503379821777, + -0.04536932706832886, + -0.027509642764925957, + 0.012065465562045574, + -0.04055524244904518, + -0.018759626895189285, + -0.07887544482946396, + 0.010615721344947815, + -0.001480393810197711, + -0.013299173675477505, + 0.023851962760090828, + -0.06341788917779922, + -0.013133064843714237, + 0.018726015463471413, + -0.04748552292585373, + -0.028803884983062744, + -0.07321479916572571, + 0.07190940529108047, + -0.025653403252363205, + -0.06580916792154312, + -0.03806999698281288, + -0.06691135466098785, + -0.0705098807811737, + 0.012760628014802933, + 0.004454127047210932, + -0.05622263252735138, + -0.05291129648685455, + -0.047109972685575485, + -0.03528893366456032, + -0.032965727150440216, + 0.018500283360481262, + 0.04956742748618126, + 0.033036861568689346, + -0.043693121522665024, + -0.05617734417319298, + 0.013752661645412445, + -0.04435420036315918, + 0.07255078852176666, + 0.05476057529449463, + 0.08180595934391022, + 0.023429661989212036, + 0.03204934671521187, + -0.011276516132056713, + -0.016795983538031578, + 0.04588105157017708, + 0.04243871197104454, + -0.03671702742576599, + 0.00024262251099571586, + -0.11441744118928909, + -2.313587366131742e-08, + 0.00909655261784792, + 0.05886837840080261, + -0.04462619870901108, + 0.034780144691467285, + 0.06108598783612251, + 0.044901639223098755, + -0.033161502331495285, + -0.11345182359218597, + -0.05712597072124481, + 0.013109544292092323, + 0.027878405526280403, + 0.059479970484972, + 0.0338994562625885, + 0.06632541865110397, + 0.04848656430840492, + 0.059877436608076096, + -0.020003987476229668, + 0.05531277507543564, + -0.04797692969441414, + -0.0766429528594017, + 0.040628205984830856, + -0.012052314355969429, + -0.04052645340561867, + 0.02328711561858654, + -0.0568123534321785, + -0.053644925355911255, + -0.03914937749505043, + -0.02331637404859066, + 0.03421294316649437, + 0.06729699671268463, + -0.03412768244743347, + 0.054721198976039886, + 0.02811756357550621, + -0.015012086369097233, + 0.03460169583559036, + 0.015287846326828003, + -1.3949823369330261e-05, + -0.0077822767198085785, + -0.046389054507017136, + 0.010722290724515915, + -0.02991185523569584, + -0.0017317681340500712, + 0.022410651668906212, + 0.0424283929169178, + 0.025072699412703514, + -0.013280478306114674, + 0.027016496285796165, + -0.08587190508842468, + -0.02929418906569481, + -0.05875767394900322, + 0.033437423408031464, + -0.055348705500364304, + -0.0077895913273096085, + 0.056723419576883316, + -0.018747037276625633, + 0.09972666203975677, + 0.013354125432670116, + 0.05847062170505524, + -0.0141222532838583, + -0.045229073613882065, + 0.05560300499200821, + -0.009348174557089806, + -0.07530446350574493, + -0.01869191788136959 + ], + "person-simple-swim-bold||*new*,pedestrian,swimming,human,woman,man,body,sports,exercise": [ + 0.025764111429452896, + -0.017103035002946854, + 0.04566796496510506, + 0.021084917709231377, + -0.0020198794081807137, + -0.01217377558350563, + 0.10862743109464645, + -0.053994983434677124, + -0.10698620975017548, + 0.04430496320128441, + 0.06402363628149033, + -0.09210731834173203, + -0.054108601063489914, + 0.0451386421918869, + 0.061723317950963974, + -0.0011682715266942978, + 0.011041659861803055, + 0.05886199697852135, + 0.0038393724244087934, + 0.08152087777853012, + -0.04709606617689133, + 0.015273489989340305, + -0.030460037291049957, + 0.0442286841571331, + -0.061179112643003464, + 0.011355568654835224, + 0.05028773099184036, + 0.011872890405356884, + -0.0005816005286760628, + -0.03935077786445618, + -0.025828609243035316, + 0.05306047573685646, + 0.10365619510412216, + -0.0334097184240818, + -0.02235225960612297, + 0.031512510031461716, + 0.0035964278504252434, + 0.024251913651823997, + -0.04026356711983681, + 0.034314170479774475, + -0.031499166041612625, + -0.07529809325933456, + 0.004892808385193348, + 0.0872666984796524, + 0.051318101584911346, + 0.03469620272517204, + 0.018693245947360992, + 0.015248655341565609, + 0.0007954692700877786, + 0.0067338705994188786, + -0.048254720866680145, + -0.05368538945913315, + -0.09311384707689285, + 0.01810787245631218, + 0.04480526223778725, + -0.043171476572752, + -0.06486061960458755, + 0.0024713098537176847, + -0.011118659749627113, + -0.02724255435168743, + 0.10459421575069427, + -0.010843559168279171, + 0.03991219401359558, + 0.061062172055244446, + 0.03008916974067688, + -0.08407793194055557, + -0.04890244081616402, + 0.002511603757739067, + 0.0645788311958313, + 0.03652861714363098, + 0.03253994509577751, + 0.037541162222623825, + -0.001161260879598558, + 0.02997780777513981, + -0.03609919175505638, + -0.09616798907518387, + 0.01577703468501568, + 0.01783004216849804, + -0.029973851516842842, + 0.03539444878697395, + -0.08296026289463043, + -0.13494697213172913, + -0.029257778078317642, + -0.008935158140957355, + 0.04851457104086876, + 0.06930754333734512, + -0.05066617205739021, + -0.027595337480306625, + -0.09572964161634445, + -0.005794779397547245, + -0.13326822221279144, + 0.025015939027071, + 0.014900625683367252, + -0.04367432743310928, + -0.07953915745019913, + 0.03706277161836624, + -0.08126752823591232, + -0.0032019515056163073, + -0.027621254324913025, + 0.08601796627044678, + 0.0011638504220172763, + 0.04035361111164093, + 0.07637248188257217, + 0.1368778645992279, + 0.07068082690238953, + -0.07508522272109985, + -0.01323451567441225, + -0.02123754285275936, + 0.04566959664225578, + 0.0318826362490654, + -0.005502084735780954, + -0.11599984765052795, + 0.010802876204252243, + -0.005971488077193499, + 0.0004737394629046321, + 7.014413131400943e-05, + -0.09822292625904083, + -0.06487589329481125, + 0.07368588447570801, + 0.12481271475553513, + -0.04108636826276779, + -0.0021271342411637306, + -0.01711675152182579, + -0.04588574916124344, + -0.023122038692235947, + 0.028016671538352966, + 0.029031407088041306, + -6.130912744252538e-33, + -0.017371464520692825, + 0.02033180557191372, + 0.051920611411333084, + 0.12247074395418167, + -0.05047551169991493, + -0.027042200788855553, + -0.041083160787820816, + -0.06763341277837753, + -0.005339620169252157, + -0.03336881846189499, + 0.028764333575963974, + -0.047820303589105606, + -0.040195804089307785, + 0.12252310663461685, + -0.011577277444303036, + -0.01631202921271324, + -0.027776842936873436, + -0.04366743192076683, + -0.12233518064022064, + 0.07529258728027344, + 0.09414798021316528, + 0.13360702991485596, + -0.047492749989032745, + -0.06331326067447662, + -0.026890473440289497, + -0.07132218033075333, + 0.0344100221991539, + -0.05276751518249512, + -0.025812922045588493, + 0.03794771432876587, + -0.014859297312796116, + -0.005418266169726849, + 0.03152473270893097, + 0.034857377409935, + 0.016179686412215233, + -0.016947424039244652, + 0.035181134939193726, + -0.028402112424373627, + 0.02443222887814045, + -0.01715853437781334, + -0.06085267290472984, + -0.031475890427827835, + 0.03002750314772129, + -0.03174354508519173, + -0.022492798045277596, + 0.035068899393081665, + 0.0261627696454525, + -0.008691245689988136, + -0.014554721303284168, + -0.0018660442437976599, + -0.018392348662018776, + -0.0068363044410943985, + -0.02368655614554882, + 0.02567426487803459, + -0.03296289220452309, + -0.0286355409771204, + -0.03585520386695862, + 0.059692107141017914, + -0.09579518437385559, + 0.04501810669898987, + 0.013659143820405006, + 0.11506038159132004, + -0.019997768104076385, + 0.011333831585943699, + -0.020308667793869972, + -0.00032241648295894265, + 0.011137258261442184, + -0.02944944053888321, + 0.04536742344498634, + 0.0224924199283123, + -0.018395166844129562, + 0.07062705606222153, + 0.012557068839669228, + 0.04025663435459137, + 0.06030447781085968, + 0.04387075826525688, + 0.10569406300783157, + -0.0727868601679802, + -0.048491157591342926, + 0.01754455640912056, + -0.05142226070165634, + 0.09955287724733353, + -0.012504479847848415, + 0.07224543392658234, + -0.044229790568351746, + 0.017738938331604004, + 0.0049603842198848724, + -0.06050393730401993, + 0.026881873607635498, + 0.034902118146419525, + -0.03334690257906914, + -0.0010913813021034002, + 0.00234725303016603, + -0.03845929354429245, + -0.06105908751487732, + 1.5324958422578549e-33, + -0.04253404214978218, + 0.02332918345928192, + 0.009385204873979092, + -0.042495038360357285, + 0.030296629294753075, + 0.01721262000501156, + 0.04600507393479347, + 0.028059696778655052, + 0.02562413364648819, + 0.042818833142519, + -0.12384744733572006, + -0.1014801487326622, + 0.012863263487815857, + -0.051696594804525375, + 0.0649048462510109, + 0.029133392497897148, + -0.026436924934387207, + 0.013832454569637775, + 0.01731228083372116, + 0.06460321694612503, + 0.02740824595093727, + 0.0018633356085047126, + -0.039361149072647095, + 0.00029099342646077275, + -0.018190158531069756, + 0.008478877134621143, + 0.07475990056991577, + 0.013822820037603378, + -0.015416453592479229, + -0.06529519706964493, + -0.058058783411979675, + 0.01130480132997036, + -0.015737565234303474, + -0.003253096481785178, + -0.012641453184187412, + 0.0572194866836071, + -0.07679539918899536, + -0.007933953776955605, + -0.00975879468023777, + 0.021119466051459312, + -0.0027420755941420794, + -0.006970067508518696, + 0.04968418553471565, + -0.025570768862962723, + 0.03751254454255104, + -0.0017300230683758855, + -0.06496157497167587, + -0.0783393457531929, + -0.11438723653554916, + 0.005770284682512283, + -0.049491241574287415, + -0.06346207112073898, + -0.030419012531638145, + -0.010678295977413654, + 0.054186563938856125, + -0.036160461604595184, + 0.06331007182598114, + -0.02266605570912361, + 0.006497414782643318, + 0.05179484561085701, + -0.009737624786794186, + 0.02966909669339657, + -0.10692901164293289, + 0.11317946761846542, + -0.05472184345126152, + -0.017558403313159943, + -0.0804571881890297, + -0.021514492109417915, + -0.11374246329069138, + -0.048289697617292404, + -0.006773712579160929, + -0.0578421987593174, + -0.08262000232934952, + -0.0494672991335392, + 0.012136713601648808, + -0.08162742853164673, + -0.055488813668489456, + 0.03849883750081062, + 0.011319855228066444, + -0.01999758370220661, + -0.026945732533931732, + 0.016818109899759293, + -0.0501275397837162, + 0.01783958077430725, + 0.060751575976610184, + 0.055558834224939346, + -0.03897342458367348, + -0.01162116788327694, + -0.03550663962960243, + 0.022952068597078323, + -0.026153983548283577, + 0.04860872030258179, + -0.1282748430967331, + 0.009799650870263577, + -0.05745277926325798, + -2.5343773302211048e-08, + -0.01048071775585413, + 0.02084343694150448, + -0.04056099057197571, + 0.027141399681568146, + 0.01092772651463747, + 0.0076460824348032475, + -0.04110763594508171, + -0.06725819408893585, + -0.007534382864832878, + 0.008327809162437916, + -0.008392480202019215, + 0.015061108395457268, + 0.08093095570802689, + 0.07150907814502716, + 0.0365668386220932, + 0.03568842634558678, + 0.004925072658807039, + 0.007026551757007837, + -0.05968409776687622, + -0.027510328218340874, + 0.04744940996170044, + 0.015016677789390087, + -0.06380588561296463, + 0.049949344247579575, + -0.03278377652168274, + -0.011099399998784065, + -0.07658988982439041, + -0.0038033751770853996, + 7.514938624808565e-05, + -0.016114456579089165, + 0.05468272790312767, + 0.07946167886257172, + -0.06867054104804993, + 0.07497667521238327, + -0.051022253930568695, + 0.04216110706329346, + 0.051694754511117935, + 0.010840748436748981, + -0.08319414407014847, + 0.05601625517010689, + -0.018451981246471405, + 0.046873193234205246, + 0.017648011445999146, + 0.03620433807373047, + 0.08953859657049179, + -0.02104763872921467, + 0.083022341132164, + -0.14863185584545135, + -0.004335119388997555, + -0.07985758036375046, + 0.02681785821914673, + -0.03520635515451431, + 0.04908037185668945, + 0.05953172594308853, + -0.008993268944323063, + 0.07849877327680588, + -0.021136172115802765, + 0.014115016907453537, + -0.03973787650465965, + 0.004783613607287407, + 0.09597940742969513, + 0.0052992734126746655, + -0.0075481184758245945, + 0.05395272746682167 + ], + "person-simple-tai-chi-bold||*new*,mindfulness,martial arts,meditation,sports,exercise,yoga": [ + 0.05026041716337204, + -0.0697900801897049, + 0.055884648114442825, + 0.05132671445608139, + -0.034462496638298035, + 0.012863554991781712, + 0.08017554879188538, + -0.1013481467962265, + 0.0036160077434033155, + 0.042642101645469666, + 0.10201448202133179, + -0.04707598313689232, + -0.02372160367667675, + -0.0016208161832764745, + 0.08538907766342163, + 0.05035442113876343, + -0.0003704966220539063, + 0.0537029393017292, + 0.0037775845266878605, + -0.010970144532620907, + -0.09606938809156418, + 0.01614287868142128, + 0.04383150488138199, + 0.07801675796508789, + -0.021609444171190262, + 0.03749729320406914, + -0.012306831777095795, + -0.03781963139772415, + 0.05173953250050545, + -0.029887691140174866, + -0.03707889840006828, + 0.0447174571454525, + 0.06367427855730057, + 0.06008484959602356, + -0.07601673901081085, + 0.07625098526477814, + 0.022486349567770958, + 0.04355492815375328, + -0.005321809556335211, + 0.06199602782726288, + -0.06393168121576309, + 0.017210165038704872, + 0.038727227598428726, + 0.017706451937556267, + 0.07365693151950836, + 0.01242074090987444, + 0.011107671074569225, + -0.04399498924612999, + 0.00935833714902401, + -0.06329403817653656, + -0.031928516924381256, + -0.029119186103343964, + -0.06028759852051735, + 0.11116617918014526, + 0.06510316580533981, + -0.04527135565876961, + -0.042722124606370926, + -0.013673066161572933, + 0.005830120760947466, + 0.09501658380031586, + 0.028233256191015244, + -0.02732832543551922, + 0.0660722479224205, + 0.024044912308454514, + -0.008917907252907753, + -0.013107851147651672, + -0.02417518012225628, + 0.040268946439027786, + 0.06372510641813278, + 0.00456756167113781, + -0.02672216296195984, + -0.06323356181383133, + -0.038356099277734756, + 0.05373790115118027, + -0.010773664340376854, + -0.07790454477071762, + -0.007793669123202562, + -0.038323648273944855, + -0.025813978165388107, + -0.04129695147275925, + -0.09477343410253525, + -0.04296598955988884, + -0.0023075786884874105, + -0.013310683891177177, + 0.006711065303534269, + 0.08789940178394318, + -0.04999847710132599, + -0.024028858169913292, + -0.03485102951526642, + 0.031807444989681244, + -0.040375396609306335, + 0.03436588868498802, + -0.03309130668640137, + 0.021362703293561935, + -0.0637136772274971, + 0.027228308841586113, + -0.02757875807583332, + -0.0163370780646801, + -0.0551944337785244, + 0.0708480104804039, + 0.04186614975333214, + 0.027969209477305412, + 0.02868291549384594, + 0.06868525594472885, + -0.006913269869983196, + -0.029927605763077736, + -0.01902647316455841, + -0.06141290441155434, + 0.026397839188575745, + 0.028209082782268524, + 0.00816107913851738, + -0.010316034778952599, + -0.07686890661716461, + -0.04960804060101509, + 0.045799389481544495, + 0.07768479734659195, + -0.05243133753538132, + 0.0002257867163280025, + 0.030375352129340172, + 0.06159893795847893, + 0.007964692078530788, + -0.010379990562796593, + 0.04202263802289963, + -0.065406434237957, + -0.05083209276199341, + -0.023572945967316628, + -0.00917406938970089, + -2.054069665215412e-33, + 0.047216810286045074, + 0.016165420413017273, + 0.036893874406814575, + 0.09100858867168427, + -0.07245840132236481, + -0.017342261970043182, + -0.044747062027454376, + -0.08825583010911942, + 0.04388809949159622, + 0.02089436538517475, + 0.017234472557902336, + 0.05981780216097832, + -0.04107500612735748, + 0.1078064888715744, + 0.015975510701537132, + -0.015377967618405819, + -0.0955168753862381, + -0.03419859707355499, + -0.029292497783899307, + 0.02864108793437481, + 0.07390051335096359, + 0.11237101256847382, + -0.05858341231942177, + 0.014531677588820457, + -0.042680900543928146, + -0.016134772449731827, + 0.10471029579639435, + -0.05589138716459274, + -0.01730787195265293, + -0.0004590234602801502, + -0.03566254675388336, + 0.03806975856423378, + 0.01964889094233513, + -0.013483894057571888, + -0.03036133386194706, + -0.014636077918112278, + 0.059727445244789124, + 0.003651194041594863, + 0.05791401490569115, + 0.009140947833657265, + 0.02479243092238903, + 0.016760552302002907, + -0.015971286222338676, + -0.010327640920877457, + 0.013169405050575733, + 0.011927930638194084, + 0.04646727442741394, + -0.10682879388332367, + -0.007199508138000965, + -0.03927106782793999, + -0.06485629826784134, + -0.03669870272278786, + 0.04493827372789383, + -0.0028497728053480387, + -0.042124658823013306, + -0.0882672592997551, + -0.03229815885424614, + 0.07155992090702057, + -0.062359172850847244, + 0.023914489895105362, + 0.027193505316972733, + -0.03403830528259277, + -0.06185997650027275, + -0.00788260716944933, + -0.074478879570961, + -0.019708357751369476, + -0.042949236929416656, + -0.03765392303466797, + 0.0646451786160469, + -0.0586194172501564, + -0.08924627304077148, + 0.10434138774871826, + 0.07430575042963028, + 0.007562367245554924, + -0.006734626367688179, + -0.044716011732816696, + 0.0025565277319401503, + -0.08044786751270294, + -0.06741512566804886, + 0.04189853370189667, + -0.027308858931064606, + 0.07596154510974884, + -0.0894392728805542, + 0.16638919711112976, + 0.02217767760157585, + 0.006062409840524197, + -0.02906213141977787, + -0.05388041213154793, + -0.026095528155565262, + 0.039434559643268585, + -0.06985488533973694, + 0.04651791974902153, + 0.12366719543933868, + 0.012120352126657963, + -0.07386202365159988, + -6.049202754394439e-34, + 0.01149003580212593, + 0.01008325070142746, + -0.018004784360527992, + 0.00792497768998146, + 0.06421578675508499, + 0.006445903331041336, + 0.014385176822543144, + 0.06282753497362137, + -0.0072893607430160046, + 0.0356525182723999, + -0.04420492798089981, + -0.08391986787319183, + -0.007913216017186642, + -0.043335992842912674, + -0.03806494176387787, + 0.02167758159339428, + -0.07174335420131683, + 0.09972141683101654, + -0.06492802500724792, + 0.11398707330226898, + 0.024788592010736465, + 0.04225052148103714, + -0.031840868294239044, + -0.06554833799600601, + 0.004139334429055452, + 0.04851487651467323, + 0.019775493070483208, + 0.015195225365459919, + 0.031901199370622635, + 0.008094669319689274, + -0.001298197079449892, + -0.0008735513547435403, + 0.045866310596466064, + -0.03820447996258736, + -0.04266117513179779, + 0.024168072268366814, + -0.027711931616067886, + -0.07306082546710968, + -0.05515948310494423, + 0.05475359037518501, + 0.05711374804377556, + 0.04006215184926987, + -0.0038171112537384033, + -0.007498227059841156, + 0.033705685287714005, + 0.029280059039592743, + -0.13891880214214325, + -0.06613300740718842, + -0.1324404627084732, + -0.024078618735074997, + 0.0366596020758152, + -0.1037396639585495, + -0.08658486604690552, + -0.0583656020462513, + 0.06867775321006775, + -0.05400890111923218, + 0.03520255163311958, + -0.02438928373157978, + -0.04852384701371193, + -0.015634004026651382, + -0.055083610117435455, + 0.04533079266548157, + -0.01229309942573309, + 0.06446972489356995, + -0.01624412275850773, + 0.06651794165372849, + -0.03959868103265762, + 0.05561960116028786, + -0.09480826556682587, + -0.040155887603759766, + -0.002797292545437813, + 0.020177531987428665, + -0.015282319858670235, + -0.0067828986793756485, + 0.004276410210877657, + -0.03790599852800369, + -0.027017954736948013, + -0.0376979224383831, + 0.03630466014146805, + 0.009847518056631088, + -0.05113458260893822, + -0.06360135972499847, + -0.061156850308179855, + -0.004709389992058277, + 0.04032577946782112, + 0.12122613191604614, + -0.04419292137026787, + 0.04274936765432358, + 0.012890667654573917, + -0.02238503098487854, + -0.06414736807346344, + 0.03887718543410301, + -0.03998346999287605, + 0.06498218327760696, + -0.05990033224225044, + -2.4146734389773883e-08, + -0.058519139885902405, + -0.05925783887505531, + -0.01194540411233902, + 0.0299060195684433, + 0.0003754681092686951, + 0.04498675838112831, + -0.023578811436891556, + -0.060778580605983734, + -0.014631140977144241, + -0.011497393250465393, + 0.03257507085800171, + 0.03658390790224075, + 0.04377700388431549, + 0.025839660316705704, + 0.028796499595046043, + -0.040825121104717255, + 0.0018661526264622808, + 0.08667361736297607, + 0.012086528353393078, + -0.08778994530439377, + 0.05220645293593407, + -0.00699219573289156, + 0.01577645167708397, + -0.016347331926226616, + -0.06026929244399071, + -0.05533081665635109, + -0.07535910606384277, + 0.0414135605096817, + -0.05926065519452095, + 0.01920522190630436, + 0.01637299545109272, + 0.0347420834004879, + -0.0243531446903944, + -0.044450413435697556, + -0.08701500296592712, + 0.015538972802460194, + -0.01831659860908985, + -0.08030866831541061, + -0.036267898976802826, + 0.1151503399014473, + -0.0401964969933033, + -0.004280414432287216, + 0.019511381164193153, + 0.029261332005262375, + 0.05602247640490532, + -0.07992670685052872, + 0.0017382428050041199, + -0.0627581849694252, + 0.07051937282085419, + -0.07801170647144318, + 0.0833825170993805, + -0.02377188391983509, + 0.05684893578290939, + -0.032062727957963943, + -0.02358798310160637, + 0.1323089450597763, + 0.019037168473005295, + 0.06390245258808136, + -0.054404135793447495, + -0.03758484125137329, + 0.0770522728562355, + -0.04522102326154709, + -0.04467741400003433, + 0.03287411853671074 + ], + "person-simple-throw-bold||pedestrian,tennis,human,woman,man,body,sports,exercise": [ + 0.0727371796965599, + 0.009189868345856667, + 0.030824076384305954, + -0.0397004671394825, + 0.018558695912361145, + 0.012067354284226894, + 0.13858941197395325, + -0.0013226775918155909, + -0.038225144147872925, + 0.06918451935052872, + 0.03454986587166786, + -0.027505766600370407, + -0.0506766252219677, + 0.008210262283682823, + 0.0628892183303833, + 0.0030219012405723333, + 0.03877101466059685, + 0.08384757488965988, + 0.024104813113808632, + 0.10353198647499084, + -0.03471062704920769, + 0.019445212557911873, + 0.01857718639075756, + 0.04741006717085838, + -0.04490534961223602, + -0.022894632071256638, + 0.031208083033561707, + 0.015145336277782917, + -0.01240749191492796, + -0.03629710525274277, + -0.01111827977001667, + 0.01939201168715954, + 0.0640307143330574, + 0.04451632499694824, + -0.09605508297681808, + 0.010656040161848068, + -0.022626470774412155, + 0.07361244410276413, + -0.0348491445183754, + 0.02040550485253334, + -0.034567151218652725, + -0.06887780129909515, + -0.02554658055305481, + 0.07145319133996964, + 0.039547599852085114, + 0.006291493307799101, + -0.012056378647685051, + 0.02626180835068226, + -0.0031619032379239798, + -0.05570302903652191, + -0.04535222426056862, + -0.019568195566534996, + -0.037258587777614594, + 0.05515072122216225, + 0.0673213005065918, + -0.06806086003780365, + -0.024272169917821884, + -0.008889345452189445, + 0.012185972183942795, + 0.006744774058461189, + 0.08554797619581223, + -0.03911268338561058, + 0.010497890412807465, + 0.03488345071673393, + 0.029136409983038902, + -0.07980607450008392, + 0.03363369405269623, + 0.011788951233029366, + 0.042021527886390686, + 0.06749554723501205, + 0.04294062778353691, + 0.008449847809970379, + -0.05331629514694214, + 0.0186558049172163, + 0.02308540791273117, + -0.028297338634729385, + -0.0062707229517400265, + -0.06101767718791962, + -0.038821812719106674, + 0.05142369493842125, + -0.07879813760519028, + -0.10327178239822388, + -0.07503154128789902, + -0.010838132351636887, + 0.006600522436201572, + 0.08046035468578339, + -0.04680163785815239, + 0.05944143608212471, + -0.08566059917211533, + -0.03531595692038536, + -0.16392993927001953, + -0.0015468752244487405, + 0.024436835199594498, + -0.03378625586628914, + -0.11436599493026733, + 0.015705237165093422, + -0.046544402837753296, + -0.049806926399469376, + -0.07213465124368668, + 0.09327799081802368, + -0.00018363054550718516, + 0.04274844750761986, + 0.10601335763931274, + 0.08820103853940964, + -0.004080858547240496, + -0.05040360987186432, + -0.05196411907672882, + -0.0503559336066246, + 0.016357213258743286, + 0.01013615820556879, + -0.01822461560368538, + -0.07232996821403503, + -0.05897008255124092, + -0.006626402959227562, + -0.03758006915450096, + -0.018984854221343994, + -0.07216501981019974, + -0.04197143763303757, + 0.04097301885485649, + 0.021974526345729828, + -0.025722896680235863, + 0.023462418466806412, + -0.027709929272532463, + -0.023318612948060036, + -0.021051499992609024, + 0.0050066132098436356, + 0.05945942923426628, + -4.728649370109308e-33, + -0.017764862626791, + 0.03516552969813347, + 0.08094215393066406, + 0.12111788243055344, + -0.06958203762769699, + -0.059661101549863815, + -0.04150739684700966, + -0.06944305449724197, + 0.036054015159606934, + 0.0031858591828495264, + 0.05539944767951965, + -0.08527246862649918, + 0.015345780178904533, + 0.0998399630188942, + 0.03807518631219864, + -0.005949496757239103, + -0.03359927237033844, + -0.0033157526049762964, + -0.10522164404392242, + 0.12570561468601227, + 0.045080702751874924, + 0.07113819569349289, + -0.057737309485673904, + -0.054422251880168915, + -0.04662308096885681, + 0.014402458444237709, + 0.04172411188483238, + -0.011768489144742489, + -0.00935558695346117, + -0.007131034508347511, + 0.04294183477759361, + 0.024719618260860443, + 0.008383734151721, + 0.04725126177072525, + 0.03655222803354263, + -0.09931643307209015, + -0.03307734429836273, + -0.04099978879094124, + 0.04947352036833763, + -0.020106760784983635, + -0.07673626393079758, + -0.03454960137605667, + 0.028073124587535858, + -0.06674443930387497, + 0.003570070257410407, + 0.05935833975672722, + -0.011608005501329899, + -0.032741960138082504, + -0.018601296469569206, + 0.007598658557981253, + 0.02924415096640587, + 0.029304061084985733, + 0.05283612757921219, + 0.0467621386051178, + 0.03189451992511749, + -0.017741365358233452, + -0.009543792344629765, + 0.04258911684155464, + -0.0708896741271019, + 0.04103628545999527, + 0.04983633756637573, + 0.06811748445034027, + -0.008850871585309505, + 0.017602799460291862, + -0.05234038084745407, + -0.0287126787006855, + -0.049800846725702286, + 0.005739349406212568, + 0.04645589739084244, + 0.029426008462905884, + 0.01534954085946083, + 0.0861339271068573, + 0.03388906270265579, + 0.07733187824487686, + 0.06019321829080582, + 0.06618373095989227, + 0.0989563912153244, + -0.02773267962038517, + -0.03557562455534935, + -0.01999584399163723, + -0.04940396919846535, + 0.03363341465592384, + -0.046555548906326294, + -0.006098917685449123, + -0.06256889551877975, + 0.04583872854709625, + -0.01069300901144743, + -0.11354955285787582, + -0.0214723888784647, + 0.09127133339643478, + -0.04999293014407158, + 0.016808560118079185, + -0.054674770683050156, + 0.0003456178237684071, + -0.08986842632293701, + 5.937731451625427e-34, + -0.04927244037389755, + 0.05264826491475105, + -0.01919143833220005, + -0.04699622467160225, + 0.05484535172581673, + 0.02584649622440338, + 0.02868823893368244, + 0.037025511264801025, + 0.03944210335612297, + 0.04305994510650635, + -0.11335864663124084, + -0.10767948627471924, + 0.00435725599527359, + -0.025341421365737915, + 0.06762979924678802, + 0.029247703030705452, + -0.02255323715507984, + 0.014896519482135773, + -0.043952129781246185, + 0.05073826014995575, + 0.010739020071923733, + 0.029840266332030296, + -0.022153416648507118, + -0.050193674862384796, + -0.05823920667171478, + -0.010560160502791405, + 0.07238605618476868, + 0.012161042541265488, + -0.049565501511096954, + -0.044150110334157944, + -0.02433105930685997, + 0.029351048171520233, + -0.007016660179942846, + -0.006102757062762976, + -0.04270925745368004, + 0.019826965406537056, + -0.06079944968223572, + -0.0181933231651783, + 0.037809595465660095, + 0.04803963378071785, + -0.006308999378234148, + 0.06175544857978821, + 0.022037222981452942, + 0.01469826977699995, + 0.02420751191675663, + -0.01150162611156702, + -0.11502963304519653, + -0.10062447935342789, + -0.06942480802536011, + 0.013066167011857033, + -0.039112843573093414, + 0.02384895645081997, + -0.06801453977823257, + -0.0347677506506443, + 0.043559055775403976, + -0.05519228056073189, + 0.08603627979755402, + -0.07874592393636703, + 0.022980382665991783, + 0.02753935009241104, + -0.06328975409269333, + 0.03503311425447464, + -0.0893876701593399, + 0.10265161097049713, + -0.006797844544053078, + -0.0016980223590508103, + -0.08727791160345078, + -0.0485522598028183, + -0.11416899412870407, + -0.03660440072417259, + 0.0013158671790733933, + -0.03877280279994011, + -0.06688475608825684, + 0.01606534793972969, + -0.012589949183166027, + -0.010016405954957008, + -0.008249879814684391, + 0.02940809167921543, + 0.020800361409783363, + -0.03930283710360527, + -0.037024807184934616, + -0.054621875286102295, + -0.05882912129163742, + 0.02332247979938984, + 0.042604394257068634, + 0.08571581542491913, + -0.0998055562376976, + -0.031194746494293213, + -0.049222320318222046, + 0.024281010031700134, + 0.00522587588056922, + 0.11009479314088821, + -0.0429588183760643, + -0.013388920575380325, + -0.04446791857481003, + -2.6803729014091005e-08, + -0.03352847322821617, + 0.03391723707318306, + -0.039638686925172806, + -0.002226328942924738, + 0.006518254056572914, + 0.07009438425302505, + 0.013517701998353004, + -0.0979393720626831, + 0.008866929449141026, + -0.015275274403393269, + -0.013395064510405064, + 0.021469496190547943, + 0.06431617587804794, + 0.054185908287763596, + 0.050838347524404526, + -0.006296485662460327, + -0.07069187611341476, + 0.035402458161115646, + -0.07505514472723007, + 0.01359502412378788, + 0.07266945391893387, + 0.010431461036205292, + -0.06717879325151443, + 0.014621647074818611, + -0.03374436870217323, + -0.01350434496998787, + -0.045198891311883926, + 0.06210637465119362, + -0.054991867393255234, + 0.007042875979095697, + 0.06171044707298279, + 0.09498366713523865, + -0.04251333326101303, + 0.025682728737592697, + -0.06643965095281601, + 0.0757666751742363, + 0.0515686459839344, + 0.018417710438370705, + -0.0307901781052351, + 0.11231045424938202, + -0.04398190230131149, + -0.02384329028427601, + -0.06990951299667358, + 0.045352254062891006, + 0.10584969073534012, + 0.02501208893954754, + 0.015928922221064568, + -0.11105422675609589, + -0.02237849496304989, + -0.017512595281004906, + -0.001566000166349113, + -0.05179073289036751, + 0.04164741560816765, + 0.009485170245170593, + -0.002950383350253105, + 0.01975240930914879, + -0.04765802621841431, + 0.05098913609981537, + -0.011661301366984844, + -0.03907662257552147, + 0.09527580440044403, + 0.021177515387535095, + -0.021691158413887024, + 0.04752726852893829 + ], + "person-simple-walk-bold||pedestrian,walking,human,woman,man,body,transit,transportation,travel,commuter,user,exercise": [ + 0.023015035316348076, + -0.06285211443901062, + 0.03574271872639656, + 0.048707857728004456, + 0.007345252204686403, + 0.01469290442764759, + 0.1255207061767578, + 0.0010384691413491964, + -0.08034882694482803, + 0.029709460213780403, + 0.06435538828372955, + -0.0041734687983989716, + -0.019223658367991447, + 0.008722145110368729, + 0.03074285387992859, + 0.026149094104766846, + 0.040427032858133316, + 0.07575191557407379, + 0.04182140901684761, + 0.07910595834255219, + -0.02836507000029087, + 0.022020583972334862, + -0.0237609650939703, + 0.07782845199108124, + -0.030442707240581512, + 0.0011371439322829247, + 0.05870432406663895, + -0.0034114792943000793, + 0.020309928804636, + -0.03105933405458927, + 0.02841087430715561, + 0.06815577298402786, + 0.07520173490047455, + 0.03933308646082878, + -0.036136820912361145, + -0.0004176450311206281, + 0.02330128848552704, + 0.02625727839767933, + 4.4079624785808846e-05, + 0.026246577501296997, + -0.052438415586948395, + -0.06860687583684921, + -0.02066386491060257, + 0.014477133750915527, + 0.05582163482904434, + -0.05406537652015686, + -0.014717306941747665, + -0.03222772479057312, + -0.012966548092663288, + -0.023390984162688255, + 0.0030348822474479675, + -0.0433381162583828, + -0.08548180013895035, + 0.07211500406265259, + 0.007142729125916958, + -0.058358557522296906, + -0.025962524116039276, + 0.017806829884648323, + 0.026980889961123466, + 0.00557716004550457, + 0.04539092257618904, + -0.057281553745269775, + 0.01987808384001255, + 0.05384743958711624, + 0.03785153850913048, + -0.05575783550739288, + -0.02128448709845543, + -0.046867549419403076, + 0.057634904980659485, + 0.04937158524990082, + 0.02361137978732586, + -0.012726332992315292, + -0.03190382570028305, + 0.011997940950095654, + -0.03049040585756302, + -0.07193709164857864, + 0.0005464488640427589, + -0.003666226053610444, + -0.027083201333880424, + -0.016175946220755577, + -0.10496676713228226, + -0.06802642345428467, + -0.038670629262924194, + 0.014428186230361462, + -0.0015109872911125422, + 0.08565422892570496, + -0.08594793826341629, + 0.034833669662475586, + -0.08682450652122498, + -0.05256723612546921, + -0.08593892306089401, + 0.021802686154842377, + 0.04603193700313568, + -0.027012119069695473, + -0.12973317503929138, + -0.02331586368381977, + -0.04224294424057007, + -0.03231612220406532, + -0.037763915956020355, + 0.07786126434803009, + -0.029537366703152657, + 0.08453459292650223, + 0.10139434784650803, + 0.08406314998865128, + -0.012047210708260536, + -0.05885165184736252, + -0.02130325697362423, + -0.07816135138273239, + 0.0024488328490406275, + 0.0655556470155716, + -0.0013012049021199346, + -0.11296570301055908, + -0.025752434507012367, + -0.020351817831397057, + -0.011958502233028412, + -0.03991157189011574, + -0.07971595227718353, + -0.04113168641924858, + 0.09177862107753754, + 0.11791221797466278, + -0.06827719509601593, + -0.01072559505701065, + 0.013889575377106667, + -0.039794065058231354, + -0.05543960630893707, + -0.017808135598897934, + 0.09349306672811508, + -4.632927028411926e-33, + -0.025034470483660698, + 0.04834326356649399, + 0.08748329430818558, + 0.13376599550247192, + -0.010055240243673325, + -0.05016298592090607, + -0.07990310341119766, + -0.057946447283029556, + 0.006354259327054024, + 0.012946880422532558, + 0.0784175843000412, + -0.039177436381578445, + 0.0356510654091835, + 0.10268456488847733, + -0.005272538401186466, + -0.022443920373916626, + -0.0012187713291496038, + -0.011097912676632404, + -0.10171227902173996, + 0.06971686333417892, + 0.0886344164609909, + 0.06420142203569412, + -0.018241744488477707, + -0.037393663078546524, + 0.0228437427431345, + -0.031047120690345764, + 0.035789307206869125, + -0.01766386814415455, + 0.036545757204294205, + 0.012650473043322563, + 0.034821949899196625, + 0.08302733302116394, + 0.034517187625169754, + 0.042426712810993195, + -0.008120551705360413, + -0.04087410494685173, + 0.02031652443110943, + -0.016793036833405495, + -0.012083755806088448, + -0.06617038697004318, + -0.08483036607503891, + -0.04249454289674759, + 0.03902274742722511, + -0.04422631487250328, + 0.015754595398902893, + 0.09602861851453781, + 0.043245550245046616, + -0.06105087324976921, + -0.04311472177505493, + 0.05272872373461723, + -0.0766512006521225, + 0.013280320912599564, + -0.017713410779833794, + 0.01733999326825142, + -0.0034769135527312756, + -0.04680323973298073, + -0.0064126914367079735, + 0.06675286591053009, + -0.038341548293828964, + 0.02071559615433216, + 0.012438195757567883, + 0.09643160551786423, + 0.032874010503292084, + -0.007388364989310503, + 0.01744176261126995, + -0.04318443685770035, + -0.07151716947555542, + -0.03311998024582863, + 0.04009150713682175, + 0.0635729506611824, + 0.0234942976385355, + 0.09209270030260086, + 0.06587458401918411, + 0.038435351103544235, + 0.09557993710041046, + 0.03822449967265129, + 0.015693413093686104, + -0.06992467492818832, + -0.0764368399977684, + -0.04277891293168068, + -0.1484658122062683, + 0.010420686565339565, + -0.007944931276142597, + 0.02938838116824627, + 0.04287034273147583, + 0.01128259114921093, + -0.017766091972589493, + -0.07517537474632263, + -0.04662201181054115, + 0.029257306829094887, + -0.013765974901616573, + 0.042048051953315735, + -0.019817223772406578, + 0.016836415976285934, + -0.07897942513227463, + 9.003117661432631e-34, + -0.009231501258909702, + 0.08376378566026688, + 0.0053007821552455425, + -0.06932994723320007, + 0.003857830772176385, + -0.01526396069675684, + 0.008800099603831768, + 0.002956892130896449, + 0.061543140560388565, + 0.07425335794687271, + -0.12678736448287964, + -0.08944741636514664, + 0.03541490435600281, + -0.005263881292194128, + 0.10150203108787537, + 0.034511495381593704, + 0.03276690095663071, + 0.006953050848096609, + -0.022121256217360497, + 0.0749531239271164, + -0.044142600148916245, + 0.01684611849486828, + -0.13665981590747833, + -0.02502339333295822, + -0.0054417820647358894, + 0.010530657134950161, + 0.08414342254400253, + 0.002523347269743681, + -0.022660842165350914, + -0.03772281855344772, + -0.0240199975669384, + -0.027901453897356987, + -0.03406616672873497, + -0.0574154295027256, + -0.04201614111661911, + 0.038853272795677185, + -0.10591169446706772, + 0.041756194084882736, + 0.02192176692187786, + 0.007543385028839111, + -0.032448817044496536, + 0.049931883811950684, + 0.05012744292616844, + -0.037230849266052246, + 0.04342203587293625, + -0.030736137181520462, + -0.12432488799095154, + -0.11263126134872437, + -0.13670901954174042, + 0.0015321668470278382, + 0.01507940050214529, + -0.003700767643749714, + -0.0471377894282341, + -0.01117028295993805, + 0.06219853088259697, + 6.351638148771599e-05, + 0.01709684170782566, + -0.05984733998775482, + -0.02886364422738552, + -0.027743425220251083, + 1.5733385225757957e-05, + 0.04312218353152275, + -0.06168384477496147, + 0.10073930770158768, + -0.03504994139075279, + -0.06547065824270248, + -0.06956600397825241, + -0.06337536126375198, + -0.03518669679760933, + -0.03869490697979927, + 0.02640947699546814, + -0.027050714939832687, + -0.06698443740606308, + 0.009205995127558708, + 0.042702578008174896, + -0.04647594317793846, + 0.03810356929898262, + 0.02708311937749386, + 0.03680270165205002, + -0.06692038476467133, + -0.008252252824604511, + -0.04807006195187569, + -0.014647705480456352, + -0.006467964965850115, + 0.013188080862164497, + 0.04112781584262848, + -0.07591621577739716, + 0.0041081164963543415, + -0.022782156243920326, + 0.03198465704917908, + -0.020738687366247177, + 0.0883769616484642, + -0.08170905709266663, + 0.0062115066684782505, + -0.08116162568330765, + -2.7625020493360353e-08, + -0.042272042483091354, + -0.013212739489972591, + -0.037335123866796494, + -0.034678664058446884, + 0.03958907350897789, + 0.015742041170597076, + 0.01640358194708824, + -0.02414303459227085, + -0.04006051644682884, + 0.0704868957400322, + -0.01659279502928257, + 0.045080315321683884, + 0.02174452506005764, + 0.10668741911649704, + 0.05062452331185341, + 0.04558299854397774, + -0.011996579356491566, + 0.00815530028194189, + -0.06525398045778275, + -0.0036680668126791716, + 0.021914394572377205, + -0.007039166986942291, + -0.057870857417583466, + 0.03325596824288368, + -0.0009791285265237093, + 0.006806420162320137, + -0.05147160217165947, + 0.00277740228921175, + 0.0014537435490638018, + -0.009053466841578484, + 0.041628338396549225, + 0.10926023125648499, + -0.04311525076627731, + 0.02889232710003853, + -0.04007786512374878, + 0.024729769676923752, + 0.07934457063674927, + 0.025581493973731995, + -0.028276972472667694, + 0.07861034572124481, + 0.0352926105260849, + -0.02207650989294052, + -0.03337651118636131, + 0.024133287370204926, + 0.061657387763261795, + -0.005215829703956842, + 0.009973596781492233, + -0.09838715195655823, + -0.030657244846224785, + -0.06680964678525925, + -0.013709548860788345, + -0.06500865519046783, + 0.03225114196538925, + 0.0035265085753053427, + 0.0238629337400198, + -0.005012365523725748, + -0.001427354640327394, + 0.05590961128473282, + -0.03493785485625267, + -0.017699558287858963, + 0.10801168531179428, + 0.05418965965509415, + -0.03290794417262077, + 0.009243976324796677 + ], + "perspective-bold||3d,skew,warp,trapezoid": [ + -0.05633145198225975, + -0.04032498225569725, + -0.029216451570391655, + -0.06137418374419212, + 0.0188396405428648, + -0.03562794625759125, + 0.03456561639904976, + -0.0027995388954877853, + 0.017968272790312767, + -0.0314331017434597, + 0.0023572014179080725, + 0.03149454668164253, + 0.0014787811087444425, + -0.0111869927495718, + -0.034076858311891556, + 0.027072731405496597, + -0.016406459733843803, + 0.05893858149647713, + -0.03854244202375412, + 0.11653105169534683, + 0.04205285385251045, + -0.03617300093173981, + 0.0015111640095710754, + 0.025097845122218132, + 0.0302225723862648, + 0.03235841915011406, + 0.0839819386601448, + -0.0015847367467358708, + -0.042247600853443146, + -0.06415170431137085, + -0.02435087412595749, + 0.0358419343829155, + -0.016135750338435173, + 0.011280367150902748, + 0.011974629946053028, + -0.046855777502059937, + -0.017168179154396057, + 0.009090500883758068, + -0.054148972034454346, + 0.04902011528611183, + -0.031032605096697807, + 0.06552844494581223, + -0.00954507477581501, + -0.004823415540158749, + -0.0232565738260746, + 0.018314506858587265, + -0.026211153715848923, + 0.0061580222100019455, + 0.012279142625629902, + -0.034983668476343155, + -0.07160764187574387, + -0.11025270819664001, + -0.07878982275724411, + -0.02867239899933338, + 0.0015265060355886817, + 0.05933334678411484, + -0.08800974488258362, + -0.03467859327793121, + 0.09152819216251373, + -0.054123636335134506, + 0.10846775025129318, + 0.026015009731054306, + 0.008631475269794464, + 0.029203353449702263, + -0.004433087073266506, + 0.016578929498791695, + -0.02160057984292507, + -0.06785865128040314, + 0.0015875110402703285, + 0.021385449916124344, + -0.07338154315948486, + -0.00943900179117918, + 0.027109064161777496, + -0.12898357212543488, + 0.012173510156571865, + -0.08973736315965652, + 0.09970541298389435, + -0.07035572826862335, + 0.03586298227310181, + -0.06379379332065582, + -0.03323397412896156, + 0.013370297849178314, + -0.06592510640621185, + -0.005406536161899567, + -0.022249942645430565, + 0.02885916642844677, + -0.07542107254266739, + 0.03110053762793541, + 0.008942492306232452, + 0.0032257698476314545, + -0.029539037495851517, + 0.005833691917359829, + -0.10823021829128265, + -0.04103488847613335, + -0.03188256174325943, + -0.0131572550162673, + -0.006963113322854042, + -0.05902806296944618, + 0.018627546727657318, + 0.06725089251995087, + 0.06694400310516357, + -0.002637379104271531, + 0.09130644798278809, + 0.05130430683493614, + 5.765463720308617e-05, + -0.018665501847863197, + 0.05442535877227783, + 0.043595876544713974, + 0.02105358988046646, + 0.052508965134620667, + 0.0037413446698337793, + -0.0333266481757164, + 0.01002401951700449, + -0.05703725665807724, + 0.015615335665643215, + -0.032055292278528214, + -0.005303492303937674, + -0.042340490967035294, + 0.03339437395334244, + -0.023800283670425415, + 0.002431474393233657, + 0.011158094741404057, + 0.003866141429170966, + 0.02640221081674099, + -0.030836859717965126, + 0.027931369841098785, + -0.005213570781052113, + -9.823888224795062e-34, + 0.008762962184846401, + 0.10765532404184341, + -0.03603019937872887, + 0.028661934658885002, + -0.03211517632007599, + -0.03675233945250511, + -0.04134958237409592, + 0.051315709948539734, + -0.03200355917215347, + 0.1040177270770073, + -0.03192654624581337, + -0.004800104536116123, + 0.0268149022012949, + 0.02656220830976963, + -0.018572311848402023, + -0.015142620541155338, + -0.020836131647229195, + 0.08412790298461914, + -0.08184866607189178, + 0.02357225865125656, + -0.03261099383234978, + 0.024238884449005127, + 0.021290253847837448, + -0.04834432899951935, + -0.10916145890951157, + -0.02847532369196415, + 0.04952460154891014, + 0.03371017798781395, + -0.1036403626203537, + -0.003221882274374366, + 0.06585913896560669, + 0.015894625335931778, + -0.005429351702332497, + -0.05745092034339905, + -0.036881137639284134, + 0.007378679234534502, + -0.02654935233294964, + -0.014742592349648476, + 0.0010696075623854995, + 0.04391828551888466, + -0.07616376876831055, + 0.05875513702630997, + 0.03648766130208969, + -0.033297035843133926, + 0.053343627601861954, + 0.15359565615653992, + 0.07508672028779984, + 0.08380770683288574, + 0.05787873640656471, + -0.027098631486296654, + 0.036970555782318115, + -0.053721118718385696, + -0.03992686793208122, + -0.020935755223035812, + 0.008556106127798557, + 0.023977020755410194, + 0.03210005909204483, + 0.018236514180898666, + 0.03156508505344391, + -0.047499880194664, + 0.01831570267677307, + -0.04026021808385849, + 0.00849134661257267, + -0.08173490315675735, + -0.05098157003521919, + -0.05319507047533989, + -0.03343943506479263, + 0.02750508114695549, + 0.0868641659617424, + 0.09145842492580414, + -0.050506342202425, + -0.0033161090686917305, + 0.023383263498544693, + 0.06789681315422058, + 0.0019195678178220987, + 0.10125941038131714, + -0.017301661893725395, + -0.01230664923787117, + 0.0921531692147255, + 0.05354088544845581, + -0.1301245391368866, + -0.0002820377121679485, + -0.04922584444284439, + -0.048796527087688446, + -0.07692885398864746, + 0.026708737015724182, + -0.02026747725903988, + -0.06797271221876144, + 0.03794792294502258, + 0.011195790953934193, + -0.13920949399471283, + -0.05202602222561836, + -0.02868233621120453, + -0.05867208540439606, + -0.06643848121166229, + -5.855718220959013e-34, + -0.027530625462532043, + 0.0010337472194805741, + -0.0582113154232502, + -0.09713758528232574, + 0.030186478048563004, + 0.04245017096400261, + 0.015515782870352268, + 0.06969202309846878, + -0.06875772029161453, + -0.05259859189391136, + 0.025184396654367447, + -0.004169187508523464, + 0.01626771315932274, + -0.00407036766409874, + 0.03389572352170944, + -0.004573804326355457, + 0.04745056480169296, + -0.0835091769695282, + -0.10512728989124298, + 0.0322839729487896, + 0.04690948501229286, + 0.03685302287340164, + -0.08882753551006317, + 0.059028781950473785, + -0.037659626454114914, + 0.10108072310686111, + 0.025724109262228012, + 0.021931931376457214, + -0.00592998880892992, + 0.04199351370334625, + -0.00250307098031044, + -0.07399463653564453, + 0.05036741867661476, + 0.033849846571683884, + -0.0459585078060627, + 0.037476543337106705, + -0.05211738497018814, + -0.030914150178432465, + 0.005691278725862503, + -0.12629537284374237, + -0.043960168957710266, + 0.09806206822395325, + 0.03462637960910797, + 0.08434583246707916, + -0.0152881545946002, + -0.03374900296330452, + 0.03818804770708084, + -0.008245549164712429, + -0.022249886766076088, + 0.08101199567317963, + -0.10079788416624069, + 0.022669317200779915, + 0.01596803031861782, + -0.03912188857793808, + -0.02910461090505123, + -0.0456649512052536, + -0.04576532170176506, + -0.10520549863576889, + 0.03266651928424835, + 0.038066085427999496, + -0.02313404157757759, + -0.0030131309758871794, + -0.023754393681883812, + 0.04153120517730713, + 0.02391098625957966, + 0.0445745587348938, + 0.03688948228955269, + -0.09466397017240524, + 0.002585781505331397, + 0.043544940650463104, + 0.04362514987587929, + 0.05179035663604736, + -0.018313243985176086, + -0.008581661619246006, + 0.020514758303761482, + -0.07120451331138611, + 0.04278869554400444, + 0.09527403116226196, + 0.02829679660499096, + 0.05467432737350464, + 0.024872498586773872, + -0.05069059506058693, + 0.05444330722093582, + 0.14015397429466248, + -0.018944595009088516, + 0.08706986159086227, + -0.0588810034096241, + 0.005541106685996056, + 0.09900534898042679, + 0.03839980065822601, + -0.06012256070971489, + 0.0077794999815523624, + -0.01555466465651989, + -0.028248464688658714, + 0.031173819676041603, + -2.1488252954782183e-08, + -0.025111433118581772, + 0.05262189358472824, + 0.012276134453713894, + -0.023601852357387543, + -0.08503059297800064, + -0.04492389038205147, + -0.06970037519931793, + -0.005681845359504223, + -0.09959419071674347, + -0.07321134209632874, + -0.007557205390185118, + 0.015932360664010048, + -0.07672678679227829, + 0.06289824098348618, + 0.047689855098724365, + -0.009548790752887726, + -0.06085437908768654, + 0.0908883586525917, + -0.04626169428229332, + -0.03938724100589752, + -0.032830387353897095, + 0.05068041756749153, + 0.06381677836179733, + -0.02385595254600048, + 0.04342702776193619, + 0.05635767802596092, + -0.07589458674192429, + 0.010355192236602306, + 0.0879463478922844, + 0.03807678073644638, + 0.07731376588344574, + 0.05962235480546951, + 0.031014174222946167, + 0.009810036979615688, + -0.09615836292505264, + -0.006471632514148951, + -0.05616011843085289, + 0.015004466287791729, + 0.011571604758501053, + 0.08726425468921661, + -0.025486746802926064, + 0.01561247929930687, + 0.06562435626983643, + 0.02523941919207573, + 0.008526802994310856, + 0.04704618081450462, + 0.04492820054292679, + -0.051758162677288055, + -0.05524057522416115, + -0.056064676493406296, + -0.017394935712218285, + -0.013711290434002876, + -0.020665043964982033, + 0.11821489036083221, + 0.019295113161206245, + -0.014380783773958683, + 0.027592523023486137, + -0.008825842291116714, + 0.00015334662748500705, + 0.036005955189466476, + 0.12561723589897156, + 0.010977329686284065, + -0.04468050226569176, + -0.0017225445481017232 + ], + "phone-bold||calls,telephone,landline,talk": [ + -0.03796275332570076, + -0.035345613956451416, + 0.006108304485678673, + -0.02288692444562912, + -0.03397011384367943, + -0.05212082341313362, + 0.09322702139616013, + -0.027881978079676628, + 0.023889638483524323, + -0.06878162920475006, + -0.024225948378443718, + 0.022156262770295143, + 0.006662982515990734, + -0.04091527685523033, + 0.019167283549904823, + 0.0065062567591667175, + 0.016594355925917625, + -0.02348649501800537, + -0.0417000912129879, + 0.03797043859958649, + 0.06429307162761688, + 0.1599896103143692, + -0.0016734902746975422, + 0.0052140927873551846, + 0.09094587713479996, + -0.0029244753532111645, + 0.022242175415158272, + 0.005777671467512846, + 0.052330318838357925, + -0.08539443463087082, + -0.013006279245018959, + 0.11367438733577728, + 0.13315072655677795, + 0.045562248677015305, + 0.0069667925126850605, + 0.04436942934989929, + 0.012079074047505856, + 0.0033140641171485186, + -0.038535233587026596, + 0.03703844174742699, + 0.0053717149421572685, + -0.08468303084373474, + -0.006969452369958162, + 0.028569068759679794, + -0.020834455266594887, + -0.06280586123466492, + -0.08329255878925323, + -0.014089916832745075, + 0.0407913401722908, + 0.0026388182304799557, + 0.00947867427021265, + -0.0404512919485569, + -0.0916690081357956, + 0.08808830380439758, + -0.03615621477365494, + 0.037511248141527176, + -0.033628880977630615, + 0.05119210109114647, + 0.056967973709106445, + 0.06591913849115372, + 0.011799771338701248, + 0.05695628374814987, + 9.004998719319701e-05, + 0.0396425724029541, + -0.031055239960551262, + 0.06563451886177063, + -0.07199481129646301, + 0.03712484613060951, + -0.021200552582740784, + 0.051300566643476486, + 0.007333056535571814, + 0.025008829310536385, + -0.025927964597940445, + -0.0010350276716053486, + -0.055901747196912766, + 0.02907218411564827, + 0.0074646673165261745, + -0.021823737770318985, + -0.023641183972358704, + -0.06690133363008499, + -0.07182285189628601, + -0.10506314784288406, + -0.021004745736718178, + -0.01480557955801487, + 0.07552370429039001, + 0.031818937510252, + -0.07885625213384628, + -0.04872353747487068, + -0.03609050437808037, + -0.047010596841573715, + -0.0849849134683609, + -0.03437419235706329, + -0.009890351444482803, + 0.040935635566711426, + -0.18741075694561005, + -0.012551886960864067, + 0.022242777049541473, + -0.11305020749568939, + -0.06679141521453857, + 0.08692102879285812, + -0.0050826468504965305, + 0.044610898941755295, + 0.0321199856698513, + 0.012068955227732658, + -0.03769075497984886, + -0.07246492803096771, + -0.019548874348402023, + -0.03324886038899422, + 0.00538315623998642, + 0.014293529093265533, + -0.02343732677400112, + -0.11757814884185791, + -0.026865694671869278, + -0.02454559877514839, + -0.03626633062958717, + -0.08402971178293228, + -0.016335824504494667, + -0.0579228512942791, + 0.1664452701807022, + -0.005886065773665905, + -0.016661066561937332, + -0.003106201533228159, + -0.012419387698173523, + -0.013693934306502342, + -0.009553452022373676, + -0.03013792261481285, + 0.09661424905061722, + -1.0588022919321898e-33, + 0.0609377957880497, + 0.05708109214901924, + -0.0006765788421034813, + 0.1215711161494255, + 0.03241729363799095, + -4.60672308690846e-05, + -0.06971970945596695, + -0.03266715630888939, + -0.06229232996702194, + 0.09361671656370163, + 0.036736294627189636, + 0.014532405883073807, + 0.03146765008568764, + 0.007722797803580761, + 0.066484734416008, + -1.439522657165071e-05, + -0.02498290129005909, + -0.07658354192972183, + -0.03540429472923279, + -0.002343225060030818, + -0.03049234114587307, + 0.08676046133041382, + -0.006873842794448137, + 0.04170627146959305, + 0.0844617486000061, + -0.08912905305624008, + 0.0497131310403347, + -0.05621973052620888, + 0.011175354942679405, + 0.02712995558977127, + 0.04921061918139458, + -0.009390105493366718, + 0.04230400174856186, + 0.04953073710203171, + -0.0026351239066570997, + 0.07894179970026016, + -0.048775382339954376, + -0.0415189266204834, + -0.0770440474152565, + 0.028775006532669067, + -0.09076956659555435, + -0.03702496737241745, + -0.04210519418120384, + -0.0065120854414999485, + 0.06497736275196075, + 0.0659245178103447, + -0.056435659527778625, + -0.004060673993080854, + 0.0020085100550204515, + 0.04560079053044319, + -0.027623740956187248, + 0.036091145128011703, + -0.011582465842366219, + 0.0473606139421463, + 0.021377747878432274, + -0.044268831610679626, + 0.0064004347659647465, + 0.060160767287015915, + 0.008527553640305996, + 0.002840568544343114, + 0.04506753757596016, + 0.002708141226321459, + 0.019320474937558174, + -0.02907133288681507, + 0.0020114704966545105, + 0.015696121379733086, + -0.06755490601062775, + 0.009180054068565369, + 0.06373516470193863, + -0.018349984660744667, + -0.008362227119505405, + 0.06784519553184509, + 0.05189048498868942, + 0.07123307138681412, + -0.02710770070552826, + 0.03508482128381729, + -0.015567146241664886, + -0.014041459187865257, + 0.004243252798914909, + -0.006469786632806063, + -0.014198084361851215, + 0.008783380500972271, + -0.04662550613284111, + 0.1133045107126236, + 0.10898515582084656, + 0.01581915095448494, + -0.00707809766754508, + -0.16496358811855316, + -0.04210228472948074, + 0.08453549444675446, + -0.0961412563920021, + 0.01680612936615944, + -0.023400889709591866, + -0.05480877682566643, + -0.08795170485973358, + -1.2833353964281742e-33, + -0.002964556682854891, + 0.022551143541932106, + -0.01359909400343895, + 0.020629428327083588, + -0.053992077708244324, + -0.018205801025032997, + 0.07500091195106506, + 0.039284493774175644, + -0.008802469819784164, + 0.030517084524035454, + -0.025757428258657455, + 0.02066194824874401, + 0.018274551257491112, + -0.0345136858522892, + 0.05388719588518143, + 0.008528769947588444, + 0.056361123919487, + -0.004795841872692108, + 0.03219578042626381, + 0.05626984313130379, + -0.02735125459730625, + -0.08510911464691162, + -0.06552989035844803, + 0.1269913613796234, + -0.05680011585354805, + -0.01749533973634243, + -0.01191103458404541, + -0.018220985308289528, + -0.008923711255192757, + -0.052713748067617416, + -0.02861812151968479, + -0.012575631029903889, + -0.009354015812277794, + 0.050445955246686935, + -0.08606907725334167, + 0.06697573512792587, + 0.07889256626367569, + 0.010311922989785671, + 0.018733220174908638, + -0.030767491087317467, + 0.046362489461898804, + -0.010230044834315777, + 0.0481874942779541, + -0.007508326321840286, + -0.02983149141073227, + -0.0478716604411602, + -0.07047644257545471, + -0.007566614542156458, + -0.14339573681354523, + 0.022802555933594704, + 0.055107370018959045, + 0.008439336903393269, + -0.011836137622594833, + 0.08505292236804962, + -0.07106750458478928, + -0.0596485510468483, + 0.061578117311000824, + -0.0671563446521759, + 0.009167639538645744, + 0.07407722622156143, + 0.042330704629421234, + 0.0029660463333129883, + -0.02957107126712799, + 0.005969676189124584, + 0.05018189549446106, + -0.01627247966825962, + -0.003021777607500553, + -0.033766455948352814, + 0.06951270997524261, + -0.0002642793988343328, + 0.060295768082141876, + -0.016255764290690422, + -0.024543646723031998, + 0.026073023676872253, + -0.010966446250677109, + -0.03714374080300331, + -0.042384859174489975, + -0.01300350297242403, + -0.03688565269112587, + 0.039443548768758774, + 0.009647401981055737, + -0.01926257833838463, + -0.02364984340965748, + 0.0460946187376976, + -0.021252447739243507, + 0.08093871176242828, + 0.009018654935061932, + 0.04177363961935043, + 0.017230123281478882, + -0.04038034752011299, + -0.0461917482316494, + 0.031124820932745934, + -0.04352226480841637, + -0.0018087856005877256, + -0.05698809027671814, + -1.926350812198052e-08, + 0.013606292195618153, + -0.02322828769683838, + 0.005049438215792179, + -0.09786650538444519, + 0.01722673512995243, + -0.0602666474878788, + 0.01707257330417633, + -0.07302003353834152, + 0.008384826593101025, + -0.0518786683678627, + -0.026834866032004356, + 0.0005864567938260734, + -0.11319738626480103, + 0.021391959860920906, + 0.09125182777643204, + 0.039460133761167526, + 0.004979916848242283, + 0.016365377232432365, + -0.024418482556939125, + 0.0034641786478459835, + -0.001491553382948041, + -0.006283882074058056, + -0.03793149068951607, + 0.03697478771209717, + 0.022892674431204796, + -2.0223433239152655e-05, + -0.023391148075461388, + 0.0455116368830204, + 0.06858982890844345, + 0.0394839346408844, + 0.03105386160314083, + 0.07975177466869354, + -0.04348075017333031, + 0.005364521406590939, + -0.10948855429887772, + -0.06502871215343475, + 0.0031240994576364756, + -0.055910300463438034, + 0.04631759971380234, + 0.08621013164520264, + 0.03481099754571915, + -0.0319519080221653, + -0.06747079640626907, + 0.0010682280408218503, + 0.06705234199762344, + 0.00035814466536976397, + 0.044255781918764114, + -0.07692133635282516, + -0.02134699933230877, + -0.12124362587928772, + -0.050189610570669174, + -0.009713064879179, + 0.05703459307551384, + 0.015984898433089256, + 0.004837579559534788, + -0.07031752914190292, + 0.036228764802217484, + -0.011869501322507858, + 0.035661108791828156, + 0.08901442587375641, + 0.06758297234773636, + 0.01400077249854803, + -0.030439892783761024, + 0.02837936021387577 + ], + "phone-call-bold||calls,calling,ringing,telephone,landline,talk": [ + -0.04245508089661598, + -0.03227367252111435, + -0.014051123522222042, + -0.036074355244636536, + -0.05008341372013092, + -0.05110199749469757, + 0.10230396687984467, + -0.01765815168619156, + 0.035215578973293304, + -0.07342845946550369, + -0.010460706427693367, + 0.012981932610273361, + 0.009836068376898766, + -0.038540519773960114, + 0.011762707494199276, + 0.018751012161374092, + 0.006690066773444414, + -0.015599323436617851, + -0.033890463411808014, + 0.011186311952769756, + 0.06743451952934265, + 0.11770307272672653, + -0.008403906598687172, + 0.0006662615342065692, + 0.08881131559610367, + 0.0023177091497927904, + 0.009528671391308308, + 0.0004913443117402494, + 0.04154136776924133, + -0.07596041262149811, + -0.017400424927473068, + 0.12606921792030334, + 0.1277875453233719, + 0.026524320244789124, + 0.0006384780281223357, + 0.05536692589521408, + -0.01982669159770012, + 0.012240306474268436, + -0.03935467079281807, + 0.022040216252207756, + -0.003874237881973386, + -0.0825473815202713, + -0.018979553133249283, + 0.008014592342078686, + -0.02971448190510273, + -0.0642990693449974, + -0.09617205709218979, + -0.03129025548696518, + 0.042012304067611694, + -0.003924863878637552, + 0.027445005252957344, + -0.03501541167497635, + -0.09264272451400757, + 0.08078611642122269, + -0.019797896966338158, + 0.05437436327338219, + -0.014311837032437325, + 0.0374448262155056, + 0.06582193821668625, + 0.057447731494903564, + 0.0077902162447571754, + 0.06163717061281204, + -0.021543428301811218, + 0.034588977694511414, + -0.039333831518888474, + 0.07779410481452942, + -0.07488428056240082, + 0.017529744654893875, + -0.0018254199530929327, + 0.05768505856394768, + 9.957479051081464e-05, + 0.0206565260887146, + -0.033114541321992874, + 0.0028566503897309303, + -0.04769754037261009, + 0.038484156131744385, + -0.012872767634689808, + -0.03500206768512726, + -0.03233247622847557, + -0.06770051270723343, + -0.08176834136247635, + -0.1057063564658165, + -0.01103235874325037, + -0.00821698922663927, + 0.08805063366889954, + 0.05139422044157982, + -0.060959622263908386, + -0.03867767006158829, + -0.02567530982196331, + -0.0350303128361702, + -0.09390801936388016, + -0.04370556026697159, + -0.02039211243391037, + 0.04821949452161789, + -0.20698182284832, + -0.00987159088253975, + 0.03426769748330116, + -0.10404618084430695, + -0.07174289971590042, + 0.07708041369915009, + -0.021030843257904053, + 0.025721408426761627, + 0.0206619743257761, + 0.007178147789090872, + -0.026348497718572617, + -0.06345735490322113, + -0.012953643687069416, + -0.030049050226807594, + 0.011675900779664516, + 0.007920357398688793, + -0.01955701969563961, + -0.10589010268449783, + 0.010436958633363247, + -0.03726505488157272, + -0.02906731329858303, + -0.060289207845926285, + -0.012977146543562412, + -0.05024171993136406, + 0.15432116389274597, + 0.017088381573557854, + 0.03651993349194527, + -0.008684745989739895, + -0.041083287447690964, + -0.024851584807038307, + -0.021799171343445778, + -0.00385370384901762, + 0.09240959584712982, + -1.0006972388290595e-33, + 0.0693669244647026, + 0.03646533936262131, + -0.003917857073247433, + 0.10422567278146744, + 0.04776330292224884, + -0.018244335427880287, + -0.07496754080057144, + -0.0295037180185318, + -0.06652185320854187, + 0.0762350782752037, + 0.04181932285428047, + 0.0005632643587887287, + 0.03080710954964161, + -0.00020613483502529562, + 0.06638451665639877, + -0.027477223426103592, + -0.004161965101957321, + -0.06645200401544571, + -0.027774518355727196, + 0.005286641418933868, + -0.030350839719176292, + 0.08815107494592667, + -0.0008991443319246173, + 0.05029384046792984, + 0.10159821063280106, + -0.08254875242710114, + 0.03819599747657776, + -0.06203954294323921, + 0.014566258527338505, + 0.03360513597726822, + 0.05718563497066498, + -0.021499596536159515, + 0.0353202149271965, + 0.04649965465068817, + 0.006284316536039114, + 0.06266243010759354, + -0.05929519608616829, + -0.01946776732802391, + -0.07091986387968063, + 0.017041977494955063, + -0.09258349984884262, + -0.06664068251848221, + -0.06647326797246933, + -0.023969823494553566, + 0.08426656574010849, + 0.045875146985054016, + -0.0817481055855751, + 0.005027759820222855, + 0.00023127767781261355, + 0.054304808378219604, + -0.011280880309641361, + 0.046411555260419846, + 0.008943537250161171, + 0.048123799264431, + 0.03580952435731888, + -0.04783553257584572, + 0.008979790844023228, + 0.05234336107969284, + 0.005215601529926062, + 0.009968454949557781, + 0.06125740706920624, + -0.006703052669763565, + 0.002357409568503499, + -0.04168081283569336, + -0.008939743041992188, + 0.022773945704102516, + -0.06520812958478928, + -0.011760958470404148, + 0.04551132768392563, + -0.004013640806078911, + -0.019412850961089134, + 0.08161269128322601, + 0.0419379286468029, + 0.06515290588140488, + -0.02985270321369171, + 0.027924412861466408, + -0.00825702678412199, + -0.020010855048894882, + 0.012546103447675705, + -0.00866414699703455, + -0.004470057785511017, + 0.006872089579701424, + -0.05684702843427658, + 0.09117153286933899, + 0.10339953750371933, + 0.02927367389202118, + -0.013303055427968502, + -0.1693635880947113, + -0.08116094768047333, + 0.07745921611785889, + -0.08722621947526932, + 0.02258472703397274, + -0.032193079590797424, + -0.05015944689512253, + -0.10915441811084747, + -1.3082439380511062e-33, + 0.010023940354585648, + 0.022735128179192543, + -0.006839572452008724, + 0.04764985665678978, + -0.04268590360879898, + -0.01803266629576683, + 0.0655660629272461, + 0.026710109785199165, + -0.005571348126977682, + 0.021308381110429764, + 0.0009388288017362356, + 0.033588800579309464, + 0.014843536540865898, + -0.03587131202220917, + 0.05616261437535286, + 0.014601047150790691, + 0.03745349124073982, + 0.0023967456072568893, + 0.019289935007691383, + 0.08445397019386292, + -0.03773451969027519, + -0.07891985028982162, + -0.06495503336191177, + 0.11881015449762344, + -0.06524686515331268, + -0.02769620344042778, + -0.008774440735578537, + -0.007012563291937113, + 0.019472448155283928, + -0.0673418864607811, + -0.03738200664520264, + -0.0007672657957300544, + -0.0026443228125572205, + 0.034118667244911194, + -0.07430464029312134, + 0.0626550242304802, + 0.11829833686351776, + 0.021656233817338943, + 0.011891874484717846, + -0.01616979017853737, + 0.04732022061944008, + -0.008812122978270054, + 0.049195654690265656, + -0.0006472180248238146, + -0.04744286462664604, + -0.05994320288300514, + -0.05821117013692856, + 0.001950722187757492, + -0.15567107498645782, + 0.020927317440509796, + 0.06836248934268951, + -0.01797821745276451, + 0.004538586363196373, + 0.10329146683216095, + -0.05346095561981201, + -0.039641428738832474, + 0.07739736884832382, + -0.06776226311922073, + 0.0021399357356131077, + 0.06742043793201447, + 0.03166582062840462, + 0.0028030311223119497, + 0.0036844618152827024, + 0.013399357907474041, + 0.052602507174015045, + -0.010779528878629208, + -0.003116016276180744, + -0.03449597209692001, + 0.07083896547555923, + -0.007309798616915941, + 0.0719100758433342, + -0.002745681907981634, + -0.03416226804256439, + 0.011855293065309525, + 0.0012641623616218567, + -0.0536799319088459, + -0.05473226308822632, + -0.03393373265862465, + -0.03682619705796242, + 0.026143614202737808, + 0.023486297577619553, + -0.015760349109768867, + -0.0013811774551868439, + 0.03144245594739914, + -0.024244001135230064, + 0.0629003643989563, + 0.004254806321114302, + 0.05610475689172745, + -0.0008726008818484843, + -0.03026452101767063, + -0.03720127046108246, + 0.0418708436191082, + -0.030963968485593796, + -0.004484537057578564, + -0.054606664925813675, + -2.0224879548891295e-08, + 0.01122454646974802, + -0.0325908437371254, + 0.010713907890021801, + -0.10507520288228989, + 0.04076753929257393, + -0.05074937641620636, + 0.04750967025756836, + -0.06839028745889664, + 0.01214568130671978, + -0.08227364718914032, + -0.012863507494330406, + -0.010224916972219944, + -0.10597025603055954, + 0.010780740529298782, + 0.08075299859046936, + 0.053195130079984665, + -0.006128356792032719, + 0.015711549669504166, + -0.019925134256482124, + 0.0018053733510896564, + -0.02349771186709404, + 0.005536776501685381, + -0.02302759513258934, + 0.022276517003774643, + 0.0001161961117759347, + -0.0038499280344694853, + -0.035589057952165604, + 0.06787513196468353, + 0.06790468096733093, + 0.01926424913108349, + 0.03141890838742256, + 0.0883321613073349, + -0.032262172549963, + -0.036182865500450134, + -0.10532885789871216, + -0.05598553270101547, + -0.005875869654119015, + -0.04440398886799812, + 0.036324501037597656, + 0.06453540176153183, + 0.03603333234786987, + -0.013070697896182537, + -0.08222100138664246, + 0.010949919000267982, + 0.05314844474196434, + -0.018856409937143326, + 0.057147517800331116, + -0.0811300203204155, + -0.011535987257957458, + -0.10921386629343033, + -0.03622230514883995, + 0.011504939757287502, + 0.06254120171070099, + 0.016947967931628227, + -0.007342738565057516, + -0.030629152432084084, + 0.04661572724580765, + -0.010018461383879185, + 0.0426623597741127, + 0.08615301549434662, + 0.049188412725925446, + 0.012077921070158482, + -0.028577180579304695, + 0.028567776083946228 + ], + "phone-disconnect-bold||calls,hang up,disconnected,telephone,landline,talk": [ + -0.021949002519249916, + -0.023679595440626144, + 0.013006310909986496, + -0.008580929599702358, + -0.033906206488609314, + -0.04986497014760971, + 0.10521271079778671, + -0.04161232337355614, + 0.03388182073831558, + -0.07377644628286362, + 0.013925068080425262, + 0.04357827827334404, + -0.013828306458890438, + -0.04457760229706764, + -0.030930569395422935, + 0.027105724439024925, + -0.005373912397772074, + -0.02396203763782978, + -0.02645198442041874, + 0.040174178779125214, + 0.03553268685936928, + 0.1127435564994812, + -0.025990743190050125, + 0.015610183589160442, + 0.1444115936756134, + -0.020724788308143616, + 0.05821466073393822, + -0.00650453194975853, + -0.01206205040216446, + -0.051477156579494476, + -0.04387747868895531, + 0.06854189187288284, + 0.028286002576351166, + -0.036909881979227066, + 0.024104490876197815, + -0.0026813000440597534, + 0.003277975833043456, + 0.06851489096879959, + -0.043016936630010605, + 0.019393017515540123, + 0.01714092493057251, + -0.08299292623996735, + -0.019744396209716797, + -0.040223296731710434, + -0.018149884417653084, + -0.013543268665671349, + -0.1356145590543747, + -0.04376428201794624, + 0.0207538865506649, + -0.012584518641233444, + 0.032403115183115005, + 0.01330224983394146, + -0.08053911477327347, + 0.12183348089456558, + -0.00585413770750165, + 0.026384325698018074, + 0.01217398140579462, + 0.05634384602308273, + 0.05926821753382683, + 0.02537595108151436, + 0.010411267168819904, + 0.07778696715831757, + -0.02579137496650219, + 0.050599031150341034, + -0.0021189886610955, + 0.10439479351043701, + -0.036769259721040726, + 0.02919674664735794, + 0.05131801217794418, + 0.023597564548254013, + -0.04243125766515732, + 0.028594549745321274, + -0.0458676740527153, + -0.03851427510380745, + -0.03908410295844078, + 0.055521298199892044, + 0.029096372425556183, + -0.0059493593871593475, + -0.02325996197760105, + -0.0283633042126894, + -0.03252546489238739, + -0.045083899050951004, + -0.029261743649840355, + -0.020309260115027428, + 0.07262394577264786, + 0.049276381731033325, + -0.03754277527332306, + -0.06121428683400154, + -0.0713132694363594, + -0.036416713148355484, + -0.07174599170684814, + 0.046086471527814865, + 0.02026495151221752, + 0.01656196638941765, + -0.173093780875206, + -0.022017939016222954, + 0.025389941409230232, + -0.06109139323234558, + -0.040174927562475204, + 0.07188279181718826, + 0.007315339520573616, + 0.0297503974288702, + -0.0020360401831567287, + 0.009094135835766792, + -0.02927142009139061, + -0.048046667128801346, + -0.010076346807181835, + -0.05539276823401451, + 0.02432924509048462, + -0.021917909383773804, + -0.03645307943224907, + -0.09191249310970306, + -0.029313458129763603, + -0.02136162668466568, + -0.012322729453444481, + 0.020639145746827126, + -0.00428054528310895, + 0.010767421685159206, + 0.19430974125862122, + 0.025108100846409798, + 0.009250250644981861, + -0.03244427591562271, + -0.030597485601902008, + -0.08816779404878616, + 0.01020135823637247, + 0.018916258588433266, + 0.0974002480506897, + -1.3785463062474524e-33, + 0.07079169899225235, + -0.004930281080305576, + -0.060562439262866974, + 0.12322923541069031, + 0.08025023341178894, + -0.010944955050945282, + -0.08740296214818954, + 0.009025783278048038, + -0.026906413957476616, + 0.0587608627974987, + -0.001015423913486302, + -0.01341244112700224, + 0.026502883061766624, + -0.0013255586382001638, + 0.10292574763298035, + -0.05471162870526314, + 0.06968147307634354, + -0.05757015943527222, + -0.0015087403589859605, + -0.014748945832252502, + -0.007189878728240728, + 0.07435242831707001, + 0.026017867028713226, + 0.062437839806079865, + 0.1023344025015831, + -0.03378273919224739, + 0.011914756149053574, + -0.02242160215973854, + 0.010441778227686882, + 0.02185633033514023, + 0.02254635840654373, + -0.008673198521137238, + 0.048910193145275116, + 0.04418158903717995, + 0.019010072574019432, + 0.031521301716566086, + -0.05547384172677994, + -0.020635804161429405, + -0.08156824856996536, + -0.025914659723639488, + -0.08627063781023026, + -0.0544215627014637, + -0.09276049584150314, + -0.013197657652199268, + 0.08311174064874649, + -0.030094023793935776, + -0.04355623573064804, + -0.04829343408346176, + -0.009086944162845612, + 0.04179725423455238, + -0.006801862269639969, + 0.03162897750735283, + 0.010602516122162342, + 0.01515781506896019, + -0.009725074283778667, + -0.040361810475587845, + -0.02468828856945038, + 0.04058387875556946, + 0.008129986003041267, + 0.008007069118320942, + 0.06834064424037933, + 0.03801117464900017, + 0.012970536947250366, + -0.04183012247085571, + 0.038808248937129974, + 0.04343748837709427, + -0.06754328310489655, + 0.009407281875610352, + -0.017782729119062424, + -0.040989890694618225, + -0.07307874411344528, + 0.07581719756126404, + 0.04859461635351181, + 0.02996448054909706, + -0.03069739043712616, + 0.0037499323952943087, + -0.04755944758653641, + -0.03810632973909378, + 0.010470067150890827, + 0.0015608468092978, + 0.04219634830951691, + -0.009476857259869576, + -0.06369566917419434, + 0.0646478682756424, + 0.0838783010840416, + -0.02024904079735279, + -0.015369764529168606, + -0.15021245181560516, + -0.08294720202684402, + 0.09649615734815598, + -0.08325737714767456, + 0.0702301636338234, + 0.00046475432463921607, + -0.009498095139861107, + -0.04290465638041496, + -1.0983956967327691e-33, + -0.019245924428105354, + 0.01948993094265461, + 0.011854163371026516, + -0.006662262603640556, + -0.02028748393058777, + -0.012376987375319004, + 0.09076269716024399, + 0.06929443031549454, + -0.007744134403765202, + 0.01913340389728546, + 0.04665948823094368, + 0.01710427552461624, + -0.018601907417178154, + -0.0047449273988604546, + 0.03853011503815651, + -0.010808410122990608, + 0.05947272852063179, + -0.025895515456795692, + -0.046311698853969574, + 0.13307659327983856, + -0.010943315923213959, + -0.06037810072302818, + -0.009192869067192078, + 0.022058991715312004, + -0.03667820245027542, + -0.07279721647500992, + -0.030447356402873993, + -0.0223756805062294, + -0.03290519863367081, + -0.030565960332751274, + -0.01745687425136566, + 0.023447634652256966, + -0.00995058286935091, + 0.06692793220281601, + -0.08284401893615723, + 0.07795275002717972, + 0.04326622560620308, + 0.033210739493370056, + -0.03606535494327545, + -0.07387162744998932, + 0.07059776037931442, + 0.021965254098176956, + 0.019965311512351036, + 0.00715492432937026, + -0.006484331097453833, + -0.01101199071854353, + -0.1047881692647934, + -0.03597572445869446, + -0.1814914345741272, + 0.07248876988887787, + 0.0723579004406929, + -0.029560532420873642, + 0.007539649028331041, + 0.11707969009876251, + -0.06389226019382477, + -0.020406700670719147, + 0.07522193342447281, + -0.04803448170423508, + -0.04400777816772461, + 0.026020381599664688, + 0.06724034249782562, + -0.042985714972019196, + -0.041470371186733246, + 0.04518197849392891, + 0.10561420768499374, + -0.042845893651247025, + 0.022032838314771652, + 0.010636752471327782, + 0.07660496979951859, + 0.0030563424807041883, + 0.04999677091836929, + -0.034989532083272934, + 0.0005909185274504125, + -0.004925584886223078, + -0.001862859819084406, + -0.05780079960823059, + -0.1087200865149498, + -0.09988539665937424, + -0.05796140432357788, + 0.039633363485336304, + 0.05368722230195999, + 0.01618983969092369, + -0.029238061979413033, + 0.014760089106857777, + -0.05010814964771271, + 0.027684349566698074, + -0.01567201130092144, + 0.08451060950756073, + 0.013303856365382671, + -0.028072968125343323, + -0.04873507842421532, + -0.011740817688405514, + -0.03457510843873024, + 0.03613082319498062, + -0.10756943374872208, + -2.2304702085307326e-08, + 0.05735653638839722, + -0.037637852132320404, + 0.011099551804363728, + -0.10633082687854767, + 0.0549120157957077, + -0.0529930554330349, + -0.006325703579932451, + -0.05526255443692207, + -0.002261948538944125, + -0.03769228607416153, + 0.005341388285160065, + 0.014448646456003189, + -0.09567494690418243, + 0.05882808938622475, + 0.04792102426290512, + 0.0008054349455051124, + 0.008169472217559814, + 0.0053138467483222485, + -0.008659731596708298, + 0.011735624633729458, + -0.018031295388936996, + -0.0024939668364822865, + -0.05091439560055733, + 0.08928335458040237, + 0.029554542154073715, + -0.013386722654104233, + -0.020209969952702522, + 0.06975863128900528, + 0.020718783140182495, + -0.019490540027618408, + 0.03960755839943886, + 0.06380199640989304, + -0.018570661544799805, + 0.008462849073112011, + -0.13238954544067383, + 0.03162210062146187, + -0.02118459902703762, + -0.014686166308820248, + 0.0069708372466266155, + 0.039218537509441376, + 0.07145581394433975, + -0.013173655606806278, + -0.06125042214989662, + 0.019066255539655685, + 0.06050378084182739, + -0.013930932618677616, + 0.051762744784355164, + -0.030088281258940697, + -0.002044414170086384, + -0.03887815773487091, + -0.06813457608222961, + -0.0039520543068647385, + 0.0255686417222023, + -0.014411980286240578, + 0.028249144554138184, + -0.09109440445899963, + 0.06925080716609955, + 0.012125893495976925, + -0.02202947996556759, + 0.007142904680222273, + 0.05178549885749817, + 0.014428429305553436, + -0.054175227880477905, + -0.023684998974204063 + ], + "phone-incoming-bold||calls,calling,telephone,landline,talk": [ + -0.04728948324918747, + -0.03748675808310509, + 0.0033882553689181805, + -0.042289793491363525, + -0.025071127340197563, + -0.07096591591835022, + 0.07739430665969849, + -0.0339566171169281, + 0.029701489955186844, + -0.05605173110961914, + -0.012791434302926064, + 0.036170247942209244, + 0.013884464278817177, + -0.04411177337169647, + 0.03400977700948715, + 0.010637192055583, + 0.02499675564467907, + -0.038567326962947845, + -0.03186054527759552, + 0.03830711543560028, + 0.05529485270380974, + 0.13540451228618622, + -0.02603953890502453, + -0.009954449720680714, + 0.0804838240146637, + -0.03355186805129051, + 0.01177294086664915, + 0.01369563490152359, + 0.06161035597324371, + -0.09466732293367386, + -0.00023595665697939694, + 0.11939627677202225, + 0.16355398297309875, + 0.04683653637766838, + -0.02641984634101391, + 0.024408016353845596, + 0.012289107777178288, + 0.013351251371204853, + -0.049531806260347366, + 0.047651804983615875, + 0.011247283779084682, + -0.08353114128112793, + -0.0005156826809979975, + 0.031380269676446915, + -0.01785055361688137, + -0.07008679211139679, + -0.0789804756641388, + -0.005723475944250822, + 0.019534802064299583, + -0.02868105098605156, + 0.02820342779159546, + -0.03712456300854683, + -0.10389670729637146, + 0.10795171558856964, + -0.04058164358139038, + 0.024447204545140266, + -0.0416342094540596, + 0.04509248584508896, + 0.061911389231681824, + 0.055219586938619614, + -0.013254423625767231, + 0.059931255877017975, + -0.014865534380078316, + 0.023140044882893562, + -0.05117504671216011, + 0.08868058770895004, + -0.06861689686775208, + 0.043435271829366684, + -0.003946376033127308, + 0.024599630385637283, + 0.011651032604277134, + 0.036108002066612244, + -0.005457292310893536, + -0.002769863000139594, + -0.03167734667658806, + 0.04528408870100975, + 0.004188012331724167, + -0.018667593598365784, + -0.01993410848081112, + -0.05929451808333397, + -0.031742729246616364, + -0.11391805857419968, + -0.024822354316711426, + -0.019728632643818855, + 0.0877288430929184, + 0.05102461576461792, + -0.07852812856435776, + -0.04472000524401665, + -0.0393800362944603, + -0.013352200388908386, + -0.09239965677261353, + -0.055536042898893356, + -0.0004953189054504037, + 0.042682137340307236, + -0.18969620764255524, + -0.005577486008405685, + 0.04805224761366844, + -0.1481180638074875, + -0.05357819423079491, + 0.08097133785486221, + -0.014147216454148293, + 0.015670888125896454, + 0.008906573988497257, + 0.002178443828597665, + -0.03781253471970558, + -0.09140875935554504, + 0.007642773911356926, + -0.02388552576303482, + 0.01876121386885643, + 0.011570955626666546, + -0.01916542276740074, + -0.12731392681598663, + -0.011525987647473812, + -0.0643763467669487, + -0.04180198162794113, + -0.0454925000667572, + -0.02596915327012539, + -0.0422024242579937, + 0.14257413148880005, + -0.012324072420597076, + -0.005364926531910896, + 0.003686607116833329, + -0.02077607810497284, + -0.03310016542673111, + -0.002839647699147463, + -0.031145483255386353, + 0.09271713346242905, + -9.056682551276703e-34, + 0.05652162432670593, + 0.048192206770181656, + -0.019764557480812073, + 0.10330758988857269, + 0.048139262944459915, + 0.0033950484357774258, + -0.06037244200706482, + -0.059683237224817276, + -0.05470724776387215, + 0.057442016899585724, + 0.03310317173600197, + 0.03730856627225876, + 0.036943789571523666, + 0.02736574597656727, + 0.038019176572561264, + -0.02365332655608654, + -0.009561946615576744, + -0.030017485842108727, + -0.03426495939493179, + 0.01852840930223465, + -0.0372849777340889, + 0.07903601974248886, + -0.017326822504401207, + 0.013797696679830551, + 0.09927048534154892, + -0.06150589883327484, + 0.03607919439673424, + -0.04241620749235153, + 0.02431497909128666, + 0.028699874877929688, + 0.0730249211192131, + -0.012269374914467335, + 0.02140078693628311, + 0.07445152848958969, + 0.0021090833470225334, + 0.05430249497294426, + -0.06793536990880966, + -0.026463918387889862, + -0.03886999562382698, + -0.0023506307043135166, + -0.09153842180967331, + -0.05774648115038872, + -0.09038812667131424, + -0.01745736412703991, + 0.05792082101106644, + 0.05362629145383835, + -0.09227427840232849, + -0.022406084463000298, + -0.021405979990959167, + 0.05510362610220909, + -0.023647109046578407, + 0.03540235757827759, + -0.024073123931884766, + 0.05952372029423714, + -0.004105971194803715, + -0.02369992807507515, + 0.006002411711961031, + 0.06876816600561142, + 0.014859523624181747, + 0.011165865696966648, + 0.051459651440382004, + 0.016957398504018784, + -0.004899789113551378, + -0.035311259329319, + -0.002364246640354395, + 0.014125336892902851, + -0.06517084687948227, + -0.006226592231541872, + 0.03956184908747673, + -0.014972024597227573, + 0.00646396866068244, + 0.05784252658486366, + 0.04913799837231636, + 0.07704390585422516, + -0.02556030824780464, + 0.04043592885136604, + -0.00613257335498929, + -0.007960082963109016, + 0.0323856920003891, + -0.0025610749144107103, + -0.024033907800912857, + 0.004321170039474964, + -0.04873470589518547, + 0.10168016701936722, + 0.08163037151098251, + 0.047346144914627075, + -0.015896188095211983, + -0.14611883461475372, + -0.07220785319805145, + 0.09414926916360855, + -0.09006963670253754, + 0.014708719216287136, + -0.034317996352910995, + -0.043366704136133194, + -0.07026450335979462, + -1.4140352153827465e-33, + -0.0019831438548862934, + 0.05800866708159447, + -0.037112634629011154, + 0.012944367714226246, + -0.0627308189868927, + -0.023263636976480484, + 0.09084400534629822, + 0.07596050202846527, + 0.0007501242216676474, + 0.0300208181142807, + 0.020182238891720772, + 0.0496009960770607, + 0.01798992045223713, + -0.028116537258028984, + 0.019769562408328056, + 0.0006368700414896011, + 0.03579509258270264, + 0.011567279696464539, + 0.02147683873772621, + 0.07442400604486465, + -0.03965308889746666, + -0.06460020691156387, + -0.060711272060871124, + 0.08560407906770706, + -0.04265086352825165, + -0.016746290028095245, + -0.01218669768422842, + -0.004112218040972948, + -0.003026760881766677, + -0.06075109541416168, + -0.040879201143980026, + 0.017565367743372917, + -0.0016202630940824747, + 0.03853419050574303, + -0.056204814463853836, + 0.05340443179011345, + 0.09534566104412079, + 0.021787524223327637, + 0.032913628965616226, + -0.021463211625814438, + 0.05437922105193138, + -0.008294524624943733, + 0.04021463543176651, + 0.003596141003072262, + -0.033991433680057526, + -0.057488713413476944, + -0.08338940143585205, + 0.010836631990969181, + -0.12854231894016266, + 0.0090491883456707, + 0.05175066739320755, + 0.006923537701368332, + -0.0010989856673404574, + 0.10014791041612625, + -0.05240281671285629, + -0.03615318983793259, + 0.09784422814846039, + -0.048826172947883606, + -0.007148792035877705, + 0.09140189737081528, + 0.04475565627217293, + -0.018084479495882988, + -0.024782834574580193, + -0.022470569238066673, + 0.055993929505348206, + -0.006024466827511787, + 0.00784442387521267, + -0.040893614292144775, + 0.0868653655052185, + -0.011597047559916973, + 0.07739800214767456, + -0.026490027084946632, + -0.028228431940078735, + 0.005465896800160408, + 0.027789613232016563, + -0.06023992598056793, + -0.0602346807718277, + -0.00701477425172925, + -0.03800378739833832, + 0.021629542112350464, + 0.0009232037118636072, + 0.0028198701329529285, + -0.02401261031627655, + 0.036266665905714035, + -0.023819340392947197, + 0.06063161790370941, + 0.03284246101975441, + 0.038923267275094986, + 0.01009244006127119, + -0.05100882053375244, + -0.04719775542616844, + 0.03835781291127205, + -0.041990138590335846, + 0.011165725067257881, + -0.06340634822845459, + -2.0475722450896683e-08, + 0.009315098635852337, + -0.05681172013282776, + 0.0209098681807518, + -0.09079090505838394, + 0.015079334378242493, + -0.05225946754217148, + 0.009095304645597935, + -0.0899336040019989, + 0.016286712139844894, + -0.10254567861557007, + -0.024894971400499344, + -0.009903932921588421, + -0.0935007780790329, + 0.03291351720690727, + 0.10689113289117813, + 0.03977465629577637, + -0.0029397979378700256, + -0.008550913073122501, + -0.0489768348634243, + -0.01691008359193802, + -0.01257151085883379, + 0.011310177855193615, + -0.0008670119568705559, + 0.029975134879350662, + 0.031524915248155594, + -0.013148363679647446, + -0.04342622309923172, + 0.027408424764871597, + 0.04825665429234505, + 0.02431963011622429, + 0.024059908464550972, + 0.0893859788775444, + -0.049609601497650146, + -0.023105956614017487, + -0.09569339454174042, + 0.0022528450936079025, + -0.005705228075385094, + -0.06279044598340988, + 0.03365295007824898, + 0.07075412571430206, + 0.03030337579548359, + -0.04782380908727646, + -0.06750421971082687, + -0.00252991053275764, + 0.06711283326148987, + 7.999780063983053e-05, + 0.03689197823405266, + -0.06916452944278717, + -0.002006824128329754, + -0.11207251995801926, + -0.033548757433891296, + 0.0016887220554053783, + 0.05435911566019058, + -0.002060644095763564, + -0.012468733824789524, + -0.06887988746166229, + 0.022316496819257736, + -0.02315041609108448, + 0.041309159249067307, + 0.07940085977315903, + 0.06137751787900925, + 0.034395113587379456, + -0.00951005145907402, + 0.03855489194393158 + ], + "phone-list-bold||*new*,calls,call-center,telephone,landline,talk": [ + -0.08055794984102249, + -0.053505733609199524, + -0.03223271295428276, + -0.010848822072148323, + -0.009118798188865185, + -0.022334910929203033, + 0.08383561670780182, + -0.028117941692471504, + 0.0015178692992776632, + -0.03525031730532646, + -0.002285061636939645, + 0.021627165377140045, + 0.0059676808305084705, + -0.048324041068553925, + 0.005500293802469969, + 0.009962683543562889, + -0.001473017386160791, + -0.0011635259725153446, + -0.004767246078699827, + 0.010106805711984634, + 0.07018575072288513, + 0.13455267250537872, + -0.012959937565028667, + 0.002919902326539159, + 0.08502760529518127, + 0.018626730889081955, + -0.004532248247414827, + 0.01288654375821352, + 0.014780355617403984, + -0.10061903297901154, + -0.02236749790608883, + 0.09142471849918365, + 0.17861968278884888, + 0.058200862258672714, + 0.0403384193778038, + 0.04057395085692406, + 0.015621932223439217, + 0.03319667652249336, + -0.026649776846170425, + 0.04586724191904068, + 0.006402948405593634, + -0.08226152509450912, + -0.03332284092903137, + 0.012212165631353855, + -0.03526035323739052, + -0.02756677381694317, + -0.07485675066709518, + -0.017158053815364838, + 0.06520472466945648, + -0.02184145525097847, + 0.0019509383710101247, + -0.036910250782966614, + -0.1226070448756218, + 0.07319832593202591, + -0.029727552086114883, + 0.04498277232050896, + -0.03088921681046486, + 0.008963895961642265, + 0.03959987685084343, + 0.02926051989197731, + 0.0233168862760067, + 0.05483750253915787, + 0.02349337376654148, + 0.0652010515332222, + -0.06329498440027237, + 0.05469532683491707, + -0.08079138398170471, + 0.03212013095617294, + 0.007880568504333496, + 0.015250027179718018, + -0.009229150600731373, + 0.0476996935904026, + -0.024501865729689598, + -0.008570426143705845, + -0.04532724991440773, + 0.03060310147702694, + -0.017417944967746735, + -0.046101901680231094, + -0.04517291113734245, + -0.05193325877189636, + -0.05335761606693268, + -0.08044466376304626, + -0.0120658865198493, + 0.013838657177984715, + 0.05213223397731781, + 0.06019652634859085, + -0.08532499521970749, + -0.052708517760038376, + -0.0670853778719902, + -0.04462249204516411, + -0.08521895855665207, + -0.035276155918836594, + -0.018858296796679497, + 0.009912701323628426, + -0.19463269412517548, + 0.022245781496167183, + 0.02936939336359501, + -0.12813220918178558, + -0.07663208991289139, + 0.057239726185798645, + -0.03649098053574562, + 0.009613673202693462, + 0.037777554243803024, + 0.014687604270875454, + -0.028765330091118813, + -0.08476492762565613, + -0.012364831753075123, + -0.04000617191195488, + -0.004152792971581221, + 0.038493283092975616, + -0.015234239399433136, + -0.07918136566877365, + -0.03949230536818504, + -0.08759375661611557, + -0.05488421022891998, + -0.06942564249038696, + -0.01614796184003353, + -0.031194018200039864, + 0.1500750184059143, + 0.05773693323135376, + 0.03454131633043289, + -0.03660546988248825, + -0.020319197326898575, + -0.05905340239405632, + -0.02746991626918316, + 0.0010845954529941082, + 0.033428169786930084, + -2.0252344214477565e-33, + 0.04264477267861366, + 0.032302968204021454, + 0.01704784482717514, + 0.1124529242515564, + 0.012074347585439682, + 0.005495247896760702, + -0.09155301004648209, + -0.008697905577719212, + -0.043049417436122894, + 0.045800451189279556, + 0.0749368891119957, + 0.019890757277607918, + 0.03162343055009842, + 0.02553621493279934, + 0.051171526312828064, + -0.007634561974555254, + 0.011229611933231354, + -0.04411560669541359, + -0.03675318509340286, + -0.037044599652290344, + -0.07368459552526474, + 0.10415517538785934, + 0.011331216432154179, + 0.039406321942806244, + 0.07290258258581161, + -0.0536963976919651, + 0.047836098819971085, + -0.061976924538612366, + -0.016805080696940422, + 0.021297389641404152, + 0.02143976092338562, + 0.0011706312652677298, + 0.06754153221845627, + 0.06962770968675613, + 0.01417012419551611, + 0.11574625968933105, + -0.048543911427259445, + -0.053175561130046844, + -0.046852126717567444, + 0.005699219647794962, + -0.09415280073881149, + -0.03989630192518234, + -0.05780404061079025, + 0.007864212617278099, + 0.08899641036987305, + 0.06742627173662186, + -0.07567224651575089, + 0.003908686339855194, + 0.05198364704847336, + 0.043195873498916626, + -0.009104645811021328, + 0.03573715314269066, + -0.06794684380292892, + 0.06227394565939903, + -0.0011549002956598997, + -0.06628385931253433, + 0.011753389611840248, + 0.03800131753087044, + 0.03922353684902191, + -0.0004262212314642966, + 0.04193655773997307, + 0.02681368589401245, + -0.009433552622795105, + 0.008730637840926647, + -0.0024126155767589808, + -0.009257028810679913, + -0.06147783249616623, + 0.007056784350425005, + 0.056924235075712204, + 0.005140701774507761, + 0.004490171559154987, + 0.050531696528196335, + 0.06867269426584244, + 0.11662376672029495, + -0.054022934287786484, + 0.03981110826134682, + -0.0017516498919576406, + -0.04415258392691612, + 0.0016235924558714032, + -0.04235319048166275, + 0.008588644675910473, + -0.00976044125854969, + -0.04656662419438362, + 0.11111202836036682, + 0.07711467146873474, + -0.010602838359773159, + 0.028522130101919174, + -0.12262467294931412, + -0.041343946009874344, + 0.04963710159063339, + -0.10715699940919876, + 0.007738042157143354, + -0.04603686183691025, + -0.02373814396560192, + -0.1328304409980774, + -1.7248495133935907e-33, + 0.015970874577760696, + 0.01820765994489193, + -0.01868421770632267, + -0.0037293927744030952, + -0.0553024597465992, + -0.019401375204324722, + 0.0774478167295456, + 0.02773183397948742, + 0.021577604115009308, + 0.03871279954910278, + 0.02552635408937931, + 0.03214021772146225, + 0.014522982761263847, + -0.048251744359731674, + 0.05244694650173187, + 0.027019260451197624, + 0.014329828321933746, + 0.021840102970600128, + -0.011363904923200607, + 0.057639919221401215, + -0.012890562415122986, + -0.05022519826889038, + -0.08290639519691467, + 0.09925127029418945, + -0.0320301353931427, + -0.05938476324081421, + -0.028597388416528702, + -0.031442154198884964, + 0.015370997600257397, + -0.06647664308547974, + -0.030670128762722015, + -0.02573254331946373, + 0.011571512557566166, + 0.09925474971532822, + -0.060377087444067, + 0.033917754888534546, + 0.07306110858917236, + 0.03158343583345413, + 0.015172610059380531, + 0.007879110984504223, + 0.047047343105077744, + -0.008001111447811127, + 0.06568697839975357, + -0.010034539736807346, + -0.032138641923666, + -0.0803879052400589, + -0.07095404714345932, + 0.010323943570256233, + -0.11641758680343628, + 0.045631542801856995, + 0.045496147125959396, + -0.03561696782708168, + -0.029484190046787262, + 0.06433712691068649, + -0.029985088855028152, + 0.02568763494491577, + 0.041249699890613556, + -0.044841039925813675, + 0.028922615572810173, + 0.03328024223446846, + 0.03268915042281151, + -0.004766227677464485, + -0.04105716571211815, + 0.019023029133677483, + 0.055043648928403854, + -0.046257831156253815, + -0.012081568129360676, + -0.025110024958848953, + 0.02517319843173027, + -0.035337138921022415, + 0.02295539714396, + -0.02355031669139862, + -0.05329456925392151, + -0.034178875386714935, + -0.03780648484826088, + -0.07869225740432739, + -0.06407663226127625, + -0.027394166216254234, + -0.056667935103178024, + 0.035775598138570786, + 0.0040382687002420425, + 0.004073686897754669, + -0.007520770654082298, + 0.007891756482422352, + -0.0038196255918592215, + 0.059031300246715546, + 0.03246379643678665, + 0.06595450639724731, + 0.043038252741098404, + -0.03316459804773331, + -0.05301014333963394, + 0.006489702966064215, + -0.013305965811014175, + 0.021945947781205177, + -0.0838579386472702, + -2.3568869522705427e-08, + -0.04550149664282799, + -0.05335531011223793, + 0.0009505358757451177, + -0.06011577695608139, + 0.045097075402736664, + -0.08257704228162766, + -0.0008224217453971505, + -0.055794402956962585, + 0.025836745277047157, + -0.036436453461647034, + 0.021465860307216644, + 0.00390667375177145, + -0.11434266716241837, + 0.03397331014275551, + 0.1171003133058548, + 0.05736544728279114, + 0.006033829413354397, + 0.03581351414322853, + -0.0003596647293306887, + -0.0038080888334661722, + -0.023327277973294258, + 0.002522751921787858, + -0.015348457731306553, + 0.02447783760726452, + 0.004814736545085907, + -0.012637767940759659, + -0.04990176483988762, + 0.04524868726730347, + 0.06168101727962494, + 0.06792430579662323, + 0.03328407555818558, + 0.06547661125659943, + -0.022137733176350594, + -0.036392197012901306, + -0.08908149600028992, + -0.037943657487630844, + -0.04115193337202072, + -0.05089816823601723, + 0.04698001593351364, + 0.08951330184936523, + 0.04923908784985542, + -0.03337061032652855, + -0.07087966799736023, + 0.03241259604692459, + 0.04147280007600784, + -0.03520313277840614, + 0.021693801507353783, + -0.055632296949625015, + -0.0018984794151037931, + -0.14124006032943726, + -0.02593849040567875, + 0.012642860412597656, + 0.057024065405130386, + -0.04915403947234154, + 0.003525844542309642, + -0.0331207737326622, + 0.05646893382072449, + 0.015302245505154133, + 0.0627346858382225, + 0.039702098816633224, + 0.046688590198755264, + 0.02949945628643036, + -0.018639998510479927, + 0.06563003361225128 + ], + "phone-outgoing-bold||calls,calling,telephone,landline,talk": [ + -0.02971593663096428, + -0.06050517410039902, + -0.022375525906682014, + -0.049824945628643036, + -0.03574509546160698, + -0.08349758386611938, + 0.09512455016374588, + -0.0201734472066164, + 0.022065669298171997, + -0.059241026639938354, + -0.00856768898665905, + 0.029703209176659584, + 0.02501399628818035, + -0.052856266498565674, + 0.029479820281267166, + 0.026272263377904892, + 0.01492482889443636, + -0.038602523505687714, + -0.02846652828156948, + 0.03471614420413971, + 0.026085741817951202, + 0.12582409381866455, + -0.02358696237206459, + -0.012717356905341148, + 0.09271650016307831, + -0.03430476784706116, + 0.0005810545990243554, + 0.028708990663290024, + 0.04488727077841759, + -0.09689027070999146, + -0.015236266888678074, + 0.11292941868305206, + 0.14880214631557465, + 0.042760610580444336, + -0.04968845844268799, + 0.008179161697626114, + 0.019845085218548775, + 0.024771442636847496, + -0.06203427538275719, + 0.04724559932947159, + -0.00044331446406431496, + -0.07197672873735428, + -0.007442368660122156, + 0.012464277446269989, + -0.010937727987766266, + -0.06263809651136398, + -0.07499182224273682, + -0.008073119446635246, + -0.01563875749707222, + -0.019036971032619476, + 0.06217482313513756, + -0.02201516553759575, + -0.09716137498617172, + 0.13659755885601044, + -0.02936442382633686, + 0.037818267941474915, + -0.03934873268008232, + 0.05323897302150726, + 0.043237604200839996, + 0.06843015551567078, + 0.011161155998706818, + 0.06068967655301094, + -0.052817054092884064, + 0.036465782672166824, + -0.0443313792347908, + 0.08077279478311539, + -0.08139769732952118, + 0.04557443782687187, + -0.006636514328420162, + 0.013624217361211777, + -0.01063159853219986, + 0.011122053489089012, + -0.0018006345489993691, + -0.01595328375697136, + -0.02808501571416855, + 0.058235906064510345, + 0.010816444642841816, + -0.012845629826188087, + -0.023022141307592392, + -0.04937146231532097, + -0.031494494527578354, + -0.09419318288564682, + -0.030345262959599495, + -0.0009088371298275888, + 0.08735617250204086, + 0.04994279146194458, + -0.07328133285045624, + -0.018273353576660156, + -0.04511707276105881, + -0.018209882080554962, + -0.08936883509159088, + -0.02541859820485115, + 0.0005087782046757638, + 0.010948817245662212, + -0.18351984024047852, + 0.011480235494673252, + 0.04698599502444267, + -0.13814418017864227, + -0.033592917025089264, + 0.08106910437345505, + -0.015482522547245026, + 0.0038714581169188023, + 0.023589275777339935, + 0.002973241498693824, + -0.04548420384526253, + -0.09128949046134949, + 0.012673923745751381, + -0.016729718074202538, + 0.020155025646090508, + 0.008212491869926453, + -0.02530824951827526, + -0.11804164946079254, + 0.011484888382256031, + -0.0569472536444664, + -0.031144503504037857, + -0.034333374351263046, + -0.028285006061196327, + -0.017687397077679634, + 0.1414482444524765, + -0.019315609708428383, + -0.033692616969347, + 0.013157065026462078, + -0.020353691652417183, + -0.020852884277701378, + -0.011538916267454624, + -0.02003229595720768, + 0.11107007414102554, + -9.899659855965097e-34, + 0.06140052154660225, + 0.022614993155002594, + -0.004349296446889639, + 0.09568332880735397, + 0.04621274024248123, + 0.02302355319261551, + -0.05058429762721062, + -0.06190115958452225, + -0.0383412204682827, + 0.08459064364433289, + 0.024942567571997643, + 0.005258806515485048, + 0.048979658633470535, + 0.046597663313150406, + 0.04860228672623634, + -0.003508829977363348, + -0.010701376013457775, + -0.03055601567029953, + -0.0008276052540168166, + 0.004768661223351955, + -0.00811845250427723, + 0.0721745565533638, + -0.031216079369187355, + 0.014469784684479237, + 0.12949195504188538, + -0.08290956169366837, + 0.04705202206969261, + -0.036890655755996704, + 0.00022204915876500309, + 0.01747538149356842, + 0.08606866002082825, + -0.009679177775979042, + 0.03778395429253578, + 0.07179690152406693, + -0.00039080248097889125, + 0.021080177277326584, + -0.0767027884721756, + -0.034457407891750336, + -0.042626023292541504, + -0.007952861487865448, + -0.07333999127149582, + -0.058394983410835266, + -0.09458436816930771, + 0.004863073118031025, + 0.03732629120349884, + 0.06448705494403839, + -0.09793829917907715, + -0.03966604918241501, + 0.0038488125428557396, + 0.05072364583611488, + -0.027454517781734467, + 0.034054946154356, + -0.014449923299252987, + 0.0672404021024704, + 0.022534094750881195, + -0.0319603867828846, + 0.0018570193788036704, + 0.07114364951848984, + -0.009756620973348618, + 0.013139846734702587, + 0.05034256353974342, + 0.028027743101119995, + -0.015150433406233788, + -0.06532318145036697, + 0.008164371363818645, + 0.029245298355817795, + -0.08220858871936798, + -0.01007106527686119, + 0.040921635925769806, + -0.018240630626678467, + -0.0011599453864619136, + 0.06433480978012085, + 0.0445963479578495, + 0.06718622148036957, + -0.0038006978575140238, + 0.023956313729286194, + -0.009116049855947495, + -0.01676441729068756, + -0.004502927418798208, + 0.012194658629596233, + -0.03007299080491066, + 0.029011981561779976, + -0.07617442309856415, + 0.09543702751398087, + 0.08101441711187363, + 0.04179323464632034, + -0.003999666776508093, + -0.12300626188516617, + -0.05089792609214783, + 0.10027843713760376, + -0.08292940258979797, + 0.009866300970315933, + -0.03610730543732643, + -0.020714016631245613, + -0.07019110023975372, + -9.440207787041629e-34, + -0.03341753035783768, + 0.06606987118721008, + -0.038364510983228683, + 0.03475317731499672, + -0.04584648460149765, + -0.01795842871069908, + 0.10114428400993347, + 0.06549762189388275, + 0.03210870549082756, + 0.04576578363776207, + 0.002956921700388193, + 0.07298807054758072, + 0.025186648592352867, + -0.019144698977470398, + 0.04862450435757637, + -0.014239693991839886, + -0.0009676546324044466, + 0.0023762767668813467, + 0.02189670503139496, + 0.05845440924167633, + -0.04512890428304672, + -0.06185216084122658, + -0.06468356400728226, + 0.06619840860366821, + -0.0349792055785656, + -0.016384949907660484, + -0.04541110619902611, + 0.023709502071142197, + -0.026520075276494026, + -0.04644047096371651, + -0.033986419439315796, + 0.044361405074596405, + -0.007557922974228859, + 0.05738307163119316, + -0.06508367508649826, + 0.028238389641046524, + 0.08362899720668793, + 0.043735112994909286, + 0.0374939925968647, + -0.00477426266297698, + 0.03255158290266991, + -0.006499053444713354, + 0.04436898231506348, + 0.010164138861000538, + -0.02890724688768387, + -0.06612858176231384, + -0.1057451069355011, + -0.014282464981079102, + -0.122475765645504, + -0.01246214471757412, + 0.05550136789679527, + 0.011316733434796333, + -0.015111537650227547, + 0.1058298647403717, + -0.011905101127922535, + -0.019133303314447403, + 0.1071178987622261, + -0.04861486330628395, + 0.009129444137215614, + 0.08989246189594269, + 0.03706636652350426, + -0.04852954298257828, + 0.0017635110998526216, + -0.0005950168124400079, + 0.04458395391702652, + -0.002728966996073723, + 0.014635163359344006, + -0.04469596967101097, + 0.08545458316802979, + -0.01610250025987625, + 0.05448465794324875, + -0.024570073932409286, + -0.016738658770918846, + 0.027461381629109383, + 0.028409035876393318, + -0.06250538676977158, + -0.06494402140378952, + -0.003829166293144226, + -0.04461097717285156, + 0.03810305520892143, + -0.005372770596295595, + -0.003044337732717395, + -0.01554403081536293, + 0.031212622299790382, + -0.009426018223166466, + 0.06073355674743652, + 0.014838690869510174, + 0.035027168691158295, + 0.01825621724128723, + -0.05072925239801407, + -0.049041666090488434, + 0.04355454072356224, + -0.03512011468410492, + -0.003989818971604109, + -0.060356952250003815, + -2.0248101861852774e-08, + 0.010229678824543953, + -0.06649665534496307, + 0.023809289559721947, + -0.05268252268433571, + 0.005922509357333183, + -0.01871291548013687, + 0.017494844272732735, + -0.07842006534337997, + 0.031206514686346054, + -0.10343329608440399, + -0.03963564708828926, + -0.005227259825915098, + -0.10280892997980118, + 0.03774876892566681, + 0.10788709670305252, + 0.015364695340394974, + -0.015453849919140339, + -0.035549432039260864, + -0.045584362000226974, + -0.029421312734484673, + -0.00425651203840971, + 0.00035751890391111374, + -0.031428586691617966, + 0.05494469404220581, + 0.028211044147610664, + -0.019035836681723595, + -0.022128906100988388, + 0.06467489898204803, + 0.041955526918172836, + 0.02212550677359104, + 0.02863524854183197, + 0.06629353016614914, + -0.04055323079228401, + -0.025956710800528526, + -0.12115367501974106, + -0.011263400316238403, + -0.024604735895991325, + -0.05746352672576904, + 0.015054428018629551, + 0.07030558586120605, + 0.04542653262615204, + -0.06977036595344543, + -0.0872676894068718, + -0.006586744450032711, + 0.06546599417924881, + 0.013345524668693542, + 0.02844175323843956, + -0.07540026307106018, + 0.014041541144251823, + -0.0939238891005516, + -0.019995296373963356, + -0.002731938846409321, + 0.06493417173624039, + -0.0056219156831502914, + -0.004889173433184624, + -0.08599704504013062, + 0.006666190456598997, + -0.02918132394552231, + 0.054421402513980865, + 0.08867529034614563, + -8.978422556538135e-06, + 0.043035440146923065, + -0.006644331384450197, + 0.014711307361721992 + ], + "phone-pause-bold||*new*,calls,hold,call-center,telephone,landline,talk": [ + -0.06763984262943268, + -0.07505078613758087, + -0.02180667594075203, + -0.030089834704995155, + -0.048707254230976105, + -0.00738896057009697, + 0.08535680919885635, + -0.051674846559762955, + 0.027073493227362633, + -0.04034608602523804, + 0.009151608683168888, + 0.0315258614718914, + -0.03604334592819214, + -0.07126733660697937, + -0.013777608051896095, + 0.02252836339175701, + -0.012021788395941257, + -0.00018168675887864083, + -0.010271664708852768, + 0.02984873205423355, + 0.06982852518558502, + 0.12289131432771683, + 0.0022576842457056046, + 0.03258218243718147, + 0.049535032361745834, + 0.03116910718381405, + -0.026369895786046982, + 0.006425047293305397, + 0.07932625710964203, + -0.0813942700624466, + -0.043677493929862976, + 0.07066354900598526, + 0.16527606546878815, + 0.044069357216358185, + -0.028098640963435173, + 0.06160604953765869, + -0.0037420294247567654, + 0.0386633463203907, + -0.03144546225667, + 0.03062896989285946, + -0.0072007495909929276, + -0.08909318596124649, + -0.026124589145183563, + -0.01998775824904442, + -0.011854185722768307, + -0.05130152404308319, + -0.10049356520175934, + -0.004788896068930626, + 0.06938084959983826, + 0.013538348488509655, + -0.0019940638449043036, + -0.0725628063082695, + -0.09139125049114227, + 0.06804423779249191, + 0.018802056089043617, + 0.05285847932100296, + 0.03393560275435448, + 0.029437795281410217, + 0.0730179101228714, + 0.039668887853622437, + 0.0022096135653555393, + 0.04789406433701515, + -0.02101757936179638, + 0.06510094553232193, + -0.05401604622602463, + 0.10900268703699112, + -0.07217612117528915, + 0.016620349138975143, + -0.0031395498663187027, + 0.02662518434226513, + -0.04332946240901947, + 0.03397432342171669, + -0.005721008405089378, + 0.009138996712863445, + -0.042955830693244934, + 0.014207407832145691, + -0.0009774573845788836, + -0.033595971763134, + -0.026760147884488106, + -0.042766764760017395, + -0.013035454787313938, + -0.13264036178588867, + -0.019890369847416878, + -0.004187202546745539, + 0.050653718411922455, + 0.06392733007669449, + -0.029752252623438835, + -0.02547238953411579, + -0.03733187913894653, + -0.04549982771277428, + -0.12080462276935577, + -0.04642108827829361, + -0.01765821874141693, + 0.02354096807539463, + -0.19988492131233215, + 0.009451957419514656, + 0.01658000238239765, + -0.10802500694990158, + -0.03690255060791969, + 0.049192287027835846, + 0.016517076641321182, + 0.011992367915809155, + 0.03444376960396767, + 0.0007746192277409136, + -0.03799927607178688, + -0.09727803617715836, + 0.00698819849640131, + -0.024962816387414932, + -0.01941831409931183, + 0.02261701598763466, + -0.015110946260392666, + -0.08887279033660889, + -0.028550075367093086, + -0.031018506735563278, + -0.034502241760492325, + -0.005332347936928272, + -0.03374122083187103, + -0.05912652984261513, + 0.1568635106086731, + 0.011263230815529823, + 0.06642740964889526, + 0.01641416922211647, + -0.04305460304021835, + -0.07882612198591232, + -0.023531479761004448, + -0.02264917828142643, + 0.05723605304956436, + -2.4023684576930633e-33, + 0.02463231422007084, + 0.017252832651138306, + -0.02888767048716545, + 0.12641000747680664, + 0.02598288469016552, + -0.0028319554403424263, + -0.08546552062034607, + -0.0159227903932333, + -0.05781952291727066, + 0.05273830145597458, + 0.04930324852466583, + -0.01729287952184677, + 0.01985873095691204, + -0.02332494966685772, + 0.04671347141265869, + -0.06658072769641876, + 0.04109795764088631, + -0.014424284920096397, + -0.04132881015539169, + -0.02771948277950287, + -0.02557043358683586, + 0.0801394134759903, + 0.019111676141619682, + 0.0846598818898201, + 0.100579172372818, + -0.037015151232481, + 0.00958067737519741, + -0.07368651777505875, + 0.032767023891210556, + 0.02185029163956642, + 0.03037818893790245, + 0.014896582812070847, + 0.03579292446374893, + 0.04192201793193817, + 0.016319654881954193, + 0.06444869935512543, + -0.031318143010139465, + -0.03403138741850853, + -0.021560167893767357, + -0.032063860446214676, + -0.14900852739810944, + -0.03969703987240791, + -0.07962019741535187, + -0.01678902842104435, + 0.06113198772072792, + -0.030227670446038246, + -0.08424986153841019, + 0.018711404874920845, + -0.0099392831325531, + 0.04821712523698807, + -0.00985593069344759, + 0.07901789993047714, + -0.04716852307319641, + 0.03503632918000221, + 0.014445831999182701, + -0.05418382212519646, + 0.011181816458702087, + 0.07697764039039612, + 0.003434694604948163, + 0.029625847935676575, + 0.036093734204769135, + 0.01946059986948967, + 0.01569884642958641, + 0.012426184490323067, + -0.016112642362713814, + 0.0486534908413887, + -0.08016622811555862, + -0.013114484027028084, + 0.05209558829665184, + 0.006243773270398378, + -0.028739988803863525, + 0.012171749956905842, + 0.03836294636130333, + 0.09921705722808838, + -0.04430140554904938, + 0.04525076597929001, + -0.03442806378006935, + -0.02561257779598236, + -0.0013610133901238441, + -0.015358957462012768, + 0.004749813582748175, + -0.015823690220713615, + -0.04528893157839775, + 0.05865159258246422, + 0.09360682219266891, + -0.026508968323469162, + -0.007607900071889162, + -0.10451313853263855, + -0.0684482753276825, + 0.058891452848911285, + -0.14492568373680115, + 0.03425418213009834, + -0.03484658524394035, + -0.020195329561829567, + -0.10277661681175232, + -3.4846230557856078e-34, + 0.033745672553777695, + 0.025631258264183998, + -0.023378074169158936, + 0.036519017070531845, + -0.04853961989283562, + -0.0028467723168432713, + 0.06901434063911438, + 0.028541110455989838, + -0.021650129929184914, + 0.0028894213028252125, + 0.03577684238553047, + 0.037066489458084106, + 0.015554037876427174, + -0.0039209844544529915, + 0.03572646528482437, + 0.010761186480522156, + 0.06027877703309059, + 0.023255037143826485, + 0.012576519511640072, + 0.10702069848775864, + 0.006369627080857754, + -0.11773402243852615, + -0.07240984588861465, + 0.09781267493963242, + -0.06919138133525848, + -0.011509845033288002, + -0.0566125325858593, + -0.02020893432199955, + 0.03171098977327347, + -0.05718732997775078, + -0.060807712376117706, + -0.027638452127575874, + -0.00768060889095068, + 0.04610052332282066, + -0.03550887480378151, + 0.026848992332816124, + 0.041932351887226105, + 0.017618387937545776, + -0.003104150528088212, + -0.011310644447803497, + 0.10436762124300003, + -0.010224759578704834, + 0.06585929542779922, + 0.00650117639452219, + 0.00021231736172921956, + -0.035068608820438385, + -0.06743443012237549, + 0.019211404025554657, + -0.17074213922023773, + 0.02236376516520977, + 0.015959417447447777, + -0.03344978019595146, + -0.011520164087414742, + 0.04349774122238159, + -0.03535429388284683, + 0.033974744379520416, + 0.03832009434700012, + -0.06421474367380142, + -0.038296669721603394, + 0.03558424860239029, + 0.07964256405830383, + -0.040422260761260986, + -0.038703031837940216, + -0.014791118912398815, + 0.07837213575839996, + 0.0020381740760058165, + 0.02959701232612133, + -0.007068106904625893, + 0.04728361591696739, + -0.0016111340373754501, + 0.0701465755701065, + 0.003757589729502797, + -0.02394005097448826, + -0.01600215956568718, + -0.03696562722325325, + -0.03695041686296463, + -0.06966622173786163, + -0.056038130074739456, + -0.027650397270917892, + 0.008014307357370853, + 0.022675421088933945, + 0.02299720235168934, + 0.008429650217294693, + 0.02232729084789753, + -0.015348700806498528, + 0.12114297598600388, + 0.005856750067323446, + 0.06290984153747559, + 0.015650669112801552, + -0.03693161532282829, + -0.05081953480839729, + 0.0718708410859108, + -0.024157632142305374, + 0.002565158996731043, + -0.06898166984319687, + -2.343531591009196e-08, + -0.026187509298324585, + -0.014540554955601692, + 0.035133786499500275, + -0.0973396822810173, + 0.039406776428222656, + -0.08713828772306442, + -0.0030058647971600294, + -0.09839663654565811, + 0.005591321736574173, + -0.05611785501241684, + 0.006868163123726845, + 0.015841083601117134, + -0.04697836562991142, + 0.048712365329265594, + 0.051242344081401825, + 0.06200074777007103, + 0.003471988020464778, + 0.053816135972738266, + -0.0062509216368198395, + -0.005158992018550634, + 0.025444690138101578, + -0.007398931309580803, + 0.005141151137650013, + 0.009546155110001564, + 0.005302841309458017, + -0.03510745242238045, + -0.040293436497449875, + 0.0638168603181839, + 0.05656684562563896, + -0.04215728119015694, + 0.03314611315727234, + 0.06946263462305069, + -0.04575025662779808, + -0.035798437893390656, + -0.07595314085483551, + -0.01653924398124218, + -0.01938403956592083, + -0.03597370162606239, + 0.0868210569024086, + 0.0586712509393692, + 0.07432352006435394, + -0.03709433227777481, + -0.05591804161667824, + 0.023065216839313507, + 0.028630437329411507, + 0.01259804517030716, + 0.038679540157318115, + -0.05158183351159096, + 0.002527006436139345, + -0.0972469300031662, + -0.06519627571105957, + 0.008283467032015324, + 0.06268683075904846, + 0.006922334432601929, + 0.03441429138183594, + 0.007988926023244858, + 0.0377529039978981, + -0.0023217792622745037, + 0.023046240210533142, + 0.044429853558540344, + 0.02460668981075287, + 0.02322259172797203, + -0.042189788073301315, + 0.05759556591510773 + ], + "phone-plus-bold||calls,telephone,landline,talk,conference,add": [ + -0.05781881511211395, + -0.05346229672431946, + -0.00447511114180088, + -0.012884051539003849, + -0.02802419289946556, + 0.011749510653316975, + 0.07708331942558289, + -0.029237564653158188, + 0.02328592538833618, + -0.04157627001404762, + 0.004004286136478186, + 0.028895730152726173, + 0.004085669759660959, + -0.05800633504986763, + 0.025629473850131035, + -0.012311280705034733, + 0.004934954922646284, + -0.019471898674964905, + -0.034521907567977905, + -0.008541738614439964, + 0.06055518612265587, + 0.08507250249385834, + 0.0021785690914839506, + 0.012243686243891716, + 0.12162798643112183, + -0.00881970301270485, + -0.05862477794289589, + 0.016464604064822197, + 0.09306440502405167, + -0.06263593584299088, + 0.004441846162080765, + 0.11106625944375992, + 0.17282052338123322, + 0.04311824589967728, + -0.003785946639254689, + -0.00444539962336421, + 0.00668971985578537, + 0.0363861545920372, + -0.034578967839479446, + 0.03167678043246269, + -0.015286101959645748, + -0.09132157266139984, + 0.0007783048786222935, + 0.03120185062289238, + -0.02983151376247406, + -0.10063651204109192, + -0.0992068350315094, + -0.04404774680733681, + 0.05779949948191643, + 0.04092572629451752, + 0.06042248010635376, + -0.027291463688015938, + -0.12121805548667908, + 0.08592842519283295, + -0.01274532824754715, + 0.060482271015644073, + -0.07687490433454514, + 0.058107975870370865, + 0.03915197402238846, + 0.03312356397509575, + 0.017771178856492043, + 0.03388168290257454, + 0.0021652579307556152, + 0.049391765147447586, + -0.04346929490566254, + 0.08746363967657089, + -0.0978030189871788, + 0.06758511066436768, + -0.024181785061955452, + 0.048495229333639145, + 0.02048102580010891, + 0.029075341299176216, + 0.002118739066645503, + 0.0012762421974912286, + -0.028940241783857346, + 0.03522571921348572, + -0.01194771658629179, + -0.04467856511473656, + -0.0210953950881958, + -0.054800406098365784, + -0.0467928983271122, + -0.06361552327871323, + -0.0158596970140934, + 0.0012730846647173166, + 0.0975763127207756, + 0.05051913857460022, + -0.052941013127565384, + -0.06041688472032547, + -0.04550951346755028, + -0.062482189387083054, + -0.09150707721710205, + -0.03362195938825607, + -0.03477412462234497, + 0.015407891944050789, + -0.1683969646692276, + -0.004352083429694176, + -0.005906674545258284, + -0.11398782581090927, + -0.06586357206106186, + 0.056612856686115265, + -0.023167047649621964, + 0.017481407150626183, + 0.008445359766483307, + 0.0004810540413018316, + -0.006472052074968815, + -0.09685774892568588, + -0.013434619642794132, + -0.020439233630895615, + 0.017276668921113014, + 0.022974994033575058, + -0.0017656212439760566, + -0.084724560379982, + -0.0160138588398695, + -0.09282992780208588, + -0.04828943684697151, + -0.029814979061484337, + -0.008733161725103855, + -0.0426010861992836, + 0.196288600564003, + -0.034096475690603256, + 0.028281880542635918, + -0.004200418014079332, + -0.005065414123237133, + -0.03775578737258911, + -0.04946984723210335, + -0.0384242869913578, + 0.0693838819861412, + -1.9822768987519176e-33, + 0.06552977114915848, + 0.042539868503808975, + -0.024490831419825554, + 0.11753151565790176, + 0.05030440539121628, + 0.02476697415113449, + -0.10166484862565994, + -0.034543681889772415, + -0.10363958775997162, + 0.04291156679391861, + 0.03219982609152794, + 0.02673153206706047, + 0.023973235860466957, + 0.043494872748851776, + 0.06069079414010048, + -0.013539958745241165, + 0.018371038138866425, + -0.043967682868242264, + -0.02359500527381897, + -0.010795612819492817, + -0.03462705761194229, + 0.06230757385492325, + -0.007912928238511086, + 0.07001661509275436, + 0.12642140686511993, + -0.01876600831747055, + 0.05834576487541199, + -0.02407246083021164, + 0.027293875813484192, + 0.02815336361527443, + 0.03529571741819382, + -0.01386971678584814, + -0.008904797956347466, + 0.06802497059106827, + 0.013156106695532799, + 0.08557871729135513, + -0.04300014674663544, + -0.049912359565496445, + -0.0011069482425227761, + 0.010917006991803646, + -0.12579986453056335, + -0.04514675959944725, + -0.09598620980978012, + -0.05366705358028412, + 0.05625550448894501, + 0.06390625238418579, + -0.05012556165456772, + -0.02970835193991661, + 0.023307669907808304, + 0.015454474836587906, + -0.030920488759875298, + 0.039608463644981384, + -0.03030364029109478, + 0.058262016624212265, + -0.02642783336341381, + -0.038010768592357635, + -0.005406512413173914, + 0.05099932476878166, + 0.016436867415905, + 0.007547727786004543, + 0.0489630252122879, + 0.02364428900182247, + 0.005335608962923288, + -0.008884783834218979, + -0.02534034289419651, + 0.01905749924480915, + -0.0689423605799675, + 0.0006013413076288998, + 0.08885884284973145, + -0.029135771095752716, + -0.008002983406186104, + 0.06165403872728348, + 0.023146849125623703, + 0.09608262777328491, + 0.009465232491493225, + 0.018538106232881546, + -0.01953093707561493, + -0.02424856647849083, + 0.010121694765985012, + 0.02390103042125702, + -0.030527930706739426, + -0.0073676384054124355, + -0.01640445739030838, + 0.09317271411418915, + 0.09579519182443619, + 0.02148902416229248, + -0.014998816885054111, + -0.09938536584377289, + -0.027201497927308083, + 0.03780950605869293, + -0.10671273618936539, + 0.008255500346422195, + -0.029973262920975685, + -0.00707206130027771, + -0.10568057000637054, + -1.1369299857150325e-34, + -0.040403809398412704, + 0.02166539616882801, + -0.04434631019830704, + 0.009449395351111889, + -0.06623612344264984, + -0.015797574073076248, + 0.09196022152900696, + -0.0021714128088206053, + -0.010665408335626125, + -0.005467889830470085, + 0.028896702453494072, + 0.04660578817129135, + -0.01085770782083273, + -0.028129354119300842, + 0.01594400778412819, + -0.0032404556404799223, + -0.007443217094987631, + 0.015596248209476471, + 0.022175822407007217, + 0.06223084405064583, + 0.003304910147562623, + -0.08379102498292923, + -0.045226629823446274, + 0.08763565123081207, + -0.02556515671312809, + -0.009079575538635254, + -0.037134550511837006, + -0.01840013638138771, + 0.013183723203837872, + -0.06492031365633011, + -0.016899138689041138, + 0.01672636903822422, + -0.025072181597352028, + 0.03341053053736687, + -0.05827578529715538, + 0.04726172983646393, + 0.06777806580066681, + 0.03279418870806694, + 0.019345968961715698, + -0.03434019908308983, + 0.06331253796815872, + -0.03947066888213158, + 0.07299729436635971, + 0.032269470393657684, + -0.0013321980368345976, + -0.05348911136388779, + -0.06171690300107002, + -0.020471075549721718, + -0.1435355842113495, + 0.000532386067789048, + 0.0550614595413208, + -0.008829750120639801, + -0.05509064346551895, + 0.07666632533073425, + -0.06136396527290344, + -0.03990161418914795, + 0.0669017806649208, + -0.06857319176197052, + 0.017260631546378136, + 0.02915569208562374, + 0.031932178884744644, + -0.014757676981389523, + -0.01202446036040783, + -0.006828582379966974, + 0.045472338795661926, + -0.0015799194807186723, + 0.0014240086311474442, + -0.03329279646277428, + 0.009065087884664536, + -0.016195546835660934, + 0.06814362108707428, + 0.006098822690546513, + -0.008314793929457664, + 0.02126297913491726, + -0.04509798064827919, + -0.05365197733044624, + -0.028773389756679535, + 0.02385900542140007, + -0.0004340261220932007, + 0.03805554658174515, + -0.0021671385038644075, + 0.011174321174621582, + 0.0008888790616765618, + 0.02598814107477665, + 0.0003037241112906486, + 0.06122354418039322, + 0.008861619047820568, + 0.09483218193054199, + -0.0081632724031806, + -0.006603730842471123, + -0.05776550620794296, + 0.07287093251943588, + -0.03957673907279968, + 0.01464860886335373, + -0.08218895643949509, + -2.021520728590076e-08, + 0.000978295342065394, + -0.06238703057169914, + -0.02199292555451393, + -0.11864973604679108, + 0.02852899767458439, + -0.07053924351930618, + 0.002003224566578865, + -0.059129465371370316, + 0.026088817045092583, + -0.08978284895420074, + -0.0036157595459371805, + 0.01204724982380867, + -0.1072259247303009, + 0.03322715684771538, + 0.05390550568699837, + 0.06220489367842674, + 0.013616429641842842, + 0.014288506470620632, + -0.018328702077269554, + -0.01223024632781744, + 0.010644479654729366, + 0.0361592061817646, + -0.035483527928590775, + 0.03978297859430313, + 0.01338972058147192, + 0.013369959779083729, + -0.009016250260174274, + 0.046024564653635025, + 0.0529368594288826, + 0.018239155411720276, + 0.04172474518418312, + 0.059166256338357925, + -0.06078477203845978, + 0.012485172599554062, + -0.0578341968357563, + -0.017035042867064476, + -0.00565642025321722, + -0.05046553537249565, + 0.034745875746011734, + 0.09391310811042786, + 0.02176196686923504, + -0.04774347320199013, + -0.024180132895708084, + 0.007529275957494974, + 0.10217020660638809, + -0.006826232653111219, + 0.024198317900300026, + -0.0896376371383667, + -0.02733013592660427, + -0.12969869375228882, + -0.012747165746986866, + -0.013682102784514427, + 0.07503680139780045, + -0.02428031899034977, + -0.0316762812435627, + -0.04102560505270958, + 0.06556842476129532, + 0.013018612749874592, + 0.07088936865329742, + 0.0834861472249031, + 0.03160645067691803, + -0.023884406313300133, + -0.029439523816108704, + 0.03250284492969513 + ], + "phone-slash-bold||calls,disabled,disconnected,telephone,landline,talk": [ + -0.07106795161962509, + -0.040878843516111374, + 0.017911240458488464, + -0.020646942779421806, + -0.04191642254590988, + -0.04695427417755127, + 0.03379475697875023, + -0.006417963188141584, + 0.039348408579826355, + -0.06035449355840683, + 0.03924962133169174, + 0.056078385561704636, + -0.0029042824171483517, + 0.006755038630217314, + -0.04749613255262375, + 0.0071662734262645245, + 0.030234146863222122, + -0.04041428118944168, + -0.039545465260744095, + 0.06694907695055008, + 0.01593683660030365, + 0.1945037692785263, + -0.02061777561903, + -0.01251634955406189, + 0.10651838779449463, + -0.04030756652355194, + 0.003927912097424269, + 0.020185796543955803, + 0.012058008462190628, + -0.054763853549957275, + -0.005500723607838154, + 0.06999631226062775, + 0.12793157994747162, + 0.014418530277907848, + 0.02447233721613884, + 0.02014017663896084, + 0.024032508954405785, + 0.017642289400100708, + -0.01760050281882286, + -0.005594250746071339, + -0.010321103036403656, + -0.09774638712406158, + -0.018610520288348198, + -0.021835505962371826, + -0.028591925278306007, + -0.05782364681363106, + -0.06923341751098633, + -0.06496132910251617, + 0.013765849173069, + 0.0014037546934559941, + 0.03820079192519188, + -0.004743758123368025, + -0.0840102955698967, + 0.07257457077503204, + -0.0010222820565104485, + 0.032833922654390335, + -0.0234325360506773, + 0.10247298330068588, + 0.0881371721625328, + 0.04679855331778526, + 0.016511889174580574, + 0.06005457788705826, + -0.00912022590637207, + 0.028830574825406075, + -0.046377502381801605, + 0.09731879830360413, + -0.062184978276491165, + -0.004300545435398817, + -0.008647422306239605, + 0.017682069912552834, + -0.01764793135225773, + 0.0147812869399786, + -0.043122947216033936, + -0.017167355865240097, + -0.04075543209910393, + 0.0365385077893734, + 0.009228001348674297, + -0.0178644098341465, + -0.005541164893656969, + -0.0695570632815361, + -0.01822276972234249, + -0.07003141194581985, + -0.004276598338037729, + 0.059468187391757965, + 0.07340338826179504, + 0.06536061316728592, + -0.06225837394595146, + -0.042056918144226074, + -0.032302312552928925, + -0.061823874711990356, + -0.06870805472135544, + -0.03406218811869621, + 0.03691987693309784, + 0.01351861096918583, + -0.17631930112838745, + -0.02435944974422455, + -0.002973593305796385, + -0.07164110243320465, + -0.08649948984384537, + 0.07524438947439194, + 0.02196257933974266, + 0.03175601363182068, + -0.044664833694696426, + 0.00898903701454401, + 0.0073847961612045765, + -0.04357565939426422, + 0.02825216017663479, + -0.041649989783763885, + -0.010685252025723457, + -0.0038588931784033775, + -0.001663779839873314, + -0.09298847615718842, + -0.044435203075408936, + -0.03559538349509239, + -0.03225981816649437, + -0.0658252090215683, + -0.04916907474398613, + -0.04731056094169617, + 0.16317853331565857, + 0.04951371252536774, + -0.011869078502058983, + -0.051866739988327026, + -0.04078756272792816, + -0.07814592123031616, + 0.0039659827016294, + -0.00576811982318759, + 0.10989505052566528, + -2.5894489346394073e-33, + 0.0904553011059761, + 0.06384609639644623, + -0.016184844076633453, + 0.0706893652677536, + 0.08514615148305893, + -0.02408616431057453, + -0.04748239740729332, + -0.0001339550653938204, + -0.06308881938457489, + 0.03767379745841026, + 0.045843999832868576, + 0.013978910632431507, + 0.04605509340763092, + -0.020782407373189926, + 0.0425473190844059, + -0.02372768148779869, + 0.06678134202957153, + -0.06847047060728073, + -0.038418691605329514, + -0.020868323743343353, + 0.001795463147573173, + 0.10082434862852097, + 0.010623691603541374, + 0.051887061446905136, + 0.091124027967453, + -0.03456900268793106, + 0.009825548157095909, + -0.020179571583867073, + 0.06002585589885712, + 0.0366828627884388, + 0.01716110110282898, + 0.0049843089655041695, + 0.04200313985347748, + 0.047774527221918106, + -0.016415396705269814, + 0.09615293890237808, + -0.03817487880587578, + -0.01597537472844124, + -0.09213005751371384, + 0.015155662782490253, + -0.09550517052412033, + -0.06506184488534927, + -0.10913969576358795, + -0.0203549861907959, + 0.03715944662690163, + 0.00317513570189476, + -0.040715333074331284, + -0.07791288942098618, + -0.015793224796652794, + 0.05366232246160507, + -0.0532916784286499, + 0.055259570479393005, + 0.031800780445337296, + 0.03862496092915535, + -0.028643053025007248, + -0.05951337516307831, + -0.0460774265229702, + 0.02419440448284149, + 0.011828625574707985, + -0.022024348378181458, + 0.05365981161594391, + 0.019649596884846687, + -0.009874698705971241, + -0.02629922144114971, + -0.0317431278526783, + -0.0026551811024546623, + -0.05565003305673599, + 0.011454036459326744, + -0.00291714770719409, + -0.018803438171744347, + -0.04251867160201073, + 0.030201410874724388, + 0.08838176727294922, + 0.04923493415117264, + -0.06731868535280228, + 0.02766401879489422, + -0.05792972818017006, + -0.02694876864552498, + -0.008582870475947857, + -0.0021183278877288103, + -0.04819289222359657, + -0.02887430600821972, + -0.03205018490552902, + 0.06996726989746094, + 0.1282743662595749, + -0.013900306075811386, + -0.024938615038990974, + -0.10106419771909714, + -0.060745228081941605, + 0.08928467333316803, + -0.049650587141513824, + 0.038530196994543076, + -0.06750816851854324, + -0.024618025869131088, + -0.059740375727415085, + 2.4125616467536234e-34, + -0.0014317333698272705, + 0.05348045378923416, + -0.019856609404087067, + 0.007269540335983038, + -0.06282952427864075, + -0.042551152408123016, + 0.04905194416642189, + 0.05612553656101227, + -0.026475638151168823, + 0.002452182350680232, + 0.040126439183950424, + 0.054666534066200256, + 0.038176972419023514, + -0.062044113874435425, + 0.05886813625693321, + -0.0031701121479272842, + -0.002963161328807473, + -0.01983080618083477, + -0.018591083586215973, + 0.11360450834035873, + -0.02111600898206234, + -0.036294613033533096, + -0.027201145887374878, + 0.09151873737573624, + -0.061619460582733154, + -0.005289159249514341, + -0.013090172782540321, + -0.008184704929590225, + -0.00035369532997719944, + -0.02801036834716797, + -0.0011451879981905222, + 0.02943480759859085, + -0.04244689270853996, + 0.024082016199827194, + -0.060761459171772, + 0.07936014980077744, + -0.020363206043839455, + 0.04512815549969673, + 0.0006633811863139272, + -0.08351893723011017, + 0.04967135936021805, + 0.014341561123728752, + 0.06803135573863983, + 0.05708157643675804, + -0.0011051734909415245, + -0.0446304976940155, + -0.06652878224849701, + -0.05130518972873688, + -0.09834495931863785, + 0.04718359187245369, + 0.08947731554508209, + -0.0023019532673060894, + 0.026460468769073486, + 0.10437573492527008, + -0.05574452131986618, + -0.023494718596339226, + 0.0367923229932785, + -0.03535148873925209, + -0.06035514920949936, + 0.07864637672901154, + 0.09677641838788986, + -0.010546484962105751, + -0.0765688344836235, + 0.022825142368674278, + 0.06832236796617508, + -0.028265679255127907, + 0.012723777443170547, + 0.007234261836856604, + 0.09421738982200623, + -0.0012415668461471796, + 0.05120912566781044, + 8.223560871556401e-05, + 0.02084016613662243, + -0.007523806765675545, + 0.029575757682323456, + -0.07425340265035629, + -0.10317947715520859, + -0.01172228716313839, + -0.03436599671840668, + 0.07062278687953949, + 0.05836974084377289, + 0.022643115371465683, + -0.042330268770456314, + 0.022688936442136765, + -0.02335718646645546, + 0.032597433775663376, + -0.030294736847281456, + 0.1286167949438095, + 0.0041156369261443615, + -0.07243279367685318, + -0.06825758516788483, + 0.017354663461446762, + -0.06649702042341232, + 0.06721008569002151, + -0.09507173299789429, + -2.0920612797681315e-08, + 0.018548084422945976, + -0.03791363537311554, + 0.0053668213076889515, + -0.09141264855861664, + 0.04790202155709267, + -0.048617344349622726, + -0.0008047521696425974, + -0.07338132709264755, + 0.018963875249028206, + -0.04965374618768692, + -0.013576335273683071, + -0.02540799416601658, + -0.09838803857564926, + 0.03813863918185234, + 0.05917864292860031, + 0.045487307012081146, + -0.0022659702226519585, + 0.037238430231809616, + -0.01987316831946373, + 0.0355660542845726, + -0.013619530946016312, + -0.004226746037602425, + -0.0036406274884939194, + 0.0731302797794342, + 0.0448380708694458, + -0.026411592960357666, + -0.009844422340393066, + 0.033111944794654846, + 0.034978050738573074, + 0.00500648096203804, + 0.020377902314066887, + 0.05979841202497482, + -0.02316298708319664, + -0.005212677177041769, + -0.1123373806476593, + 0.017918039113283157, + -0.008149201981723309, + -0.02451302856206894, + 0.03978172317147255, + 0.011812057346105576, + 0.052839092910289764, + -0.083306223154068, + -0.018027273938059807, + 0.013799171894788742, + 0.04315296560525894, + -0.006694608833640814, + 0.05691024288535118, + -0.018085267394781113, + -0.008005974814295769, + -0.09993768483400345, + -0.056847527623176575, + 0.013954146765172482, + 0.03285849466919899, + 0.009471427649259567, + 0.022231746464967728, + -0.048305146396160126, + 0.06285172700881958, + 0.00725182332098484, + 0.0003890017105732113, + 0.037026382982730865, + 0.07262909412384033, + 0.001984506379812956, + -0.04431818425655365, + -0.008532593958079815 + ], + "phone-transfer-bold||*new*,calls,call-center,telephone,landline,talk": [ + -0.0664123147726059, + -0.05713282525539398, + -0.02773396484553814, + -0.05500276759266853, + -0.02272830158472061, + -0.044327300041913986, + 0.08641348034143448, + -0.023762542754411697, + 0.02198747731745243, + -0.051049187779426575, + 0.01593020372092724, + 0.0056937993504107, + 0.014656652696430683, + -0.0613294392824173, + -0.013003848493099213, + -0.0023822057992219925, + -0.014655309729278088, + -0.013810750097036362, + -0.042975183576345444, + 0.04995156079530716, + 0.04344434663653374, + 0.08139754086732864, + -0.03146967664361, + -0.020007319748401642, + 0.13890381157398224, + 0.023229239508509636, + -0.009177498519420624, + 0.003471700707450509, + 0.025199873372912407, + -0.10655993968248367, + -0.04508276656270027, + 0.10889281332492828, + 0.10089021921157837, + 0.044923946261405945, + -0.009039003401994705, + 0.0753069519996643, + 0.012894934043288231, + 0.0030711840372532606, + -0.027908867225050926, + 0.0037850793451070786, + 0.02910870499908924, + -0.08948696404695511, + -0.0011312431888654828, + 0.030109543353319168, + -0.0422077439725399, + -0.01527849119156599, + -0.06286036223173141, + 0.035068102180957794, + 0.04546305164694786, + -0.017773445695638657, + 0.014586240984499454, + -0.08141688257455826, + -0.1291656345129013, + 0.13628464937210083, + -0.06239674612879753, + 0.08572343736886978, + 0.03012792393565178, + 0.00575682707130909, + 0.03815460205078125, + 0.04010568931698799, + -0.005072691012173891, + 0.08830421417951584, + 0.013871577568352222, + 0.05187271535396576, + -0.04176434502005577, + 0.010304493829607964, + -0.08512544631958008, + 0.05233345180749893, + -0.04007583111524582, + 0.029872652143239975, + -0.04657255858182907, + 0.03589227795600891, + -0.07270311564207077, + 0.004533661995083094, + 0.005546315107494593, + 0.00818583182990551, + -0.03154933080077171, + 0.02564755640923977, + -0.05170783773064613, + -0.04499109089374542, + -0.016538867726922035, + -0.08518313616514206, + -0.03542622923851013, + -0.004940941464155912, + 0.05136110633611679, + 0.08040803670883179, + -0.10530662536621094, + -0.04204945266246796, + -0.06741389632225037, + -0.06264983862638474, + -0.08504974842071533, + -0.0127515634521842, + -0.010816640220582485, + -0.008226553909480572, + -0.21143612265586853, + -0.008560174144804478, + -0.014249362982809544, + -0.08838864415884018, + 0.0014248965308070183, + 0.06066920608282089, + -0.012353579513728619, + 0.03595704957842827, + 0.04387625679373741, + 0.013157492503523827, + -0.04546286538243294, + -0.08795839548110962, + 0.006747758015990257, + -0.0182725191116333, + 0.006698340177536011, + 0.027458392083644867, + -0.018342994153499603, + -0.07137014716863632, + -0.025548884645104408, + -0.06335608661174774, + -0.032525621354579926, + -0.012176323682069778, + -0.07100207358598709, + -0.019413724541664124, + 0.11186421662569046, + 0.024685204029083252, + 0.018903734162449837, + -0.020186565816402435, + -0.014155044220387936, + -0.017023557797074318, + -0.058111343532800674, + 0.0007637867820449173, + 0.07526615262031555, + -2.377250531138891e-33, + 0.018735164776444435, + 0.08740881830453873, + 0.005028764251619577, + 0.11953019350767136, + -0.0011188676580786705, + -0.002756047062575817, + -0.058499231934547424, + -0.013231148011982441, + -0.029042912647128105, + 0.025454845279455185, + 0.0008807764388620853, + -0.009214726276695728, + 0.02778255194425583, + 0.023912932723760605, + 0.013934871181845665, + -0.03390484303236008, + 0.016149980947375298, + -0.03637264668941498, + 0.038878582417964935, + -0.0008210356463678181, + -0.02318776398897171, + 0.12633587419986725, + 0.0023140215780586004, + 0.015830133110284805, + 0.10413339734077454, + -0.06984689831733704, + 0.010370397940278053, + -0.0779528021812439, + 0.04852033406496048, + 0.0055442205630242825, + 0.016421493142843246, + 0.016431456431746483, + 0.05524350702762604, + 0.0716610699892044, + 0.01081836223602295, + 0.0820731669664383, + -0.04309914633631706, + -0.06881926208734512, + -0.012210492976009846, + -0.0030822015833109617, + -0.088226318359375, + -0.06485673785209656, + -0.09819725155830383, + 0.007868091575801373, + 0.08214778453111649, + 0.05352079123258591, + -0.05601143091917038, + -0.041043080389499664, + 0.031359389424324036, + 0.0607382096350193, + -0.024003857746720314, + -0.006362474523484707, + -0.0458882711827755, + 0.03764395788311958, + 0.01027127169072628, + -0.06302964687347412, + 0.012944811023771763, + 0.045789849013090134, + 0.007517427206039429, + -0.012168138287961483, + 0.047489963471889496, + 0.0379292294383049, + 0.008463563397526741, + 0.020139232277870178, + 0.03080623969435692, + 0.0035520277451723814, + -0.06333703547716141, + -0.036494527012109756, + 0.04684402048587799, + 0.010815703310072422, + -0.05126383528113365, + 0.06806210428476334, + 0.03316275402903557, + 0.10801856964826584, + -0.007420192006975412, + 0.028310807421803474, + -0.04637795314192772, + -0.012717677280306816, + 0.02007763646543026, + -0.01315836887806654, + -0.05265572667121887, + 0.03746699541807175, + -0.06217712536454201, + 0.07315023988485336, + 0.09720019996166229, + 0.0332249216735363, + -0.0061822556890547276, + -0.13352541625499725, + -0.0645938590168953, + 0.09714873880147934, + -0.06609904766082764, + 0.018016258254647255, + -0.06885650008916855, + -0.008207336068153381, + -0.040385812520980835, + -6.424810392858104e-34, + 0.009425535798072815, + 0.013274725526571274, + -0.00035192767973057926, + 0.05321083590388298, + -0.08828496932983398, + -0.039447885006666183, + 0.11361674964427948, + 0.04678947851061821, + 0.034455567598342896, + 0.06970187276601791, + -0.020580757409334183, + 0.020773105323314667, + 0.024601725861430168, + -0.04694083705544472, + 0.05647040903568268, + -0.025912325829267502, + 0.0443354956805706, + -0.006229297257959843, + -0.018911343067884445, + 0.06183851137757301, + 0.011869984678924084, + -0.03901655972003937, + -0.05952818691730499, + 0.10223591327667236, + -0.04899706691503525, + -0.05273589864373207, + -0.03447931632399559, + -0.004321096930652857, + 0.023562055081129074, + -0.03692758455872536, + -0.05967151001095772, + -0.025521501898765564, + 0.002321898005902767, + 0.09446194767951965, + -0.061684899032115936, + 0.045623816549777985, + 0.10075356066226959, + 0.07599444687366486, + 0.031032711267471313, + 0.015829484909772873, + 0.02589607611298561, + -0.030773326754570007, + 0.04790312051773071, + 0.00016819404845591635, + -0.0033236469607800245, + -0.05203502997756004, + -0.08931935578584671, + -0.0037373597733676434, + -0.13103348016738892, + 0.021668607369065285, + 0.07215989381074905, + -0.0035848072730004787, + -0.059650372713804245, + 0.03802597150206566, + 0.0022049855906516314, + 0.036221619695425034, + 0.11054465919733047, + -0.06714276969432831, + 0.012354882434010506, + -0.005281917750835419, + 0.05083204805850983, + -0.03269275650382042, + -0.05702060088515282, + -0.03447872772812843, + 0.038845982402563095, + 0.00259029190056026, + 0.04341254010796547, + -0.03132769092917442, + 0.04860157147049904, + 0.0024387091398239136, + 0.029946343973279, + -0.003646943951025605, + -0.027686940506100655, + -0.033220887184143066, + -0.022191796451807022, + -0.07522862404584885, + -0.03635803982615471, + -0.019395260140299797, + -0.04751591756939888, + 0.024568134918808937, + -0.019417261704802513, + 0.01387721300125122, + 0.007413501385599375, + 0.033311620354652405, + 0.028233738616108894, + 0.05922892689704895, + 0.03236011415719986, + 0.02561904676258564, + 0.01689968630671501, + -0.0850687175989151, + -0.07205666601657867, + 0.02566874772310257, + -0.020520947873592377, + -0.023274404928088188, + -0.1063491478562355, + -2.384973285529668e-08, + -0.02790444903075695, + -0.023611342534422874, + 0.008887531235814095, + -0.0592535138130188, + 0.02947218157351017, + -0.0530310682952404, + -0.01320279948413372, + -0.06596708297729492, + 0.02846536785364151, + -0.043902438133955, + -0.05475305765867233, + 0.016721593216061592, + -0.07423101365566254, + 0.052020564675331116, + 0.05908949300646782, + 0.047680556774139404, + 0.05052835866808891, + -0.017940396443009377, + -0.013696405105292797, + -0.0459601953625679, + -0.013262423686683178, + 0.018891850486397743, + -0.017942415550351143, + 0.048603449016809464, + 0.01299463864415884, + -0.051518090069293976, + -0.02002483792603016, + 0.08380342274904251, + 0.09408727288246155, + -0.03952528536319733, + 0.026603825390338898, + 0.05285234376788139, + -0.0311916284263134, + 0.006251679267734289, + -0.07292071729898453, + -0.029800081625580788, + 0.00375596946105361, + -0.02434532903134823, + 0.03245136886835098, + 0.06796308606863022, + 0.056128863245248795, + 0.006792803760617971, + -0.09339076280593872, + 0.00698979152366519, + 0.07142693549394608, + -0.020600738003849983, + 0.013131874613463879, + -0.07661747187376022, + -0.009229603223502636, + -0.10566765069961548, + 0.001834429451264441, + -0.004993100184947252, + 0.04974730685353279, + 0.01689290441572666, + 0.0039025619626045227, + -0.054473161697387695, + 0.023610852658748627, + -0.0064598084427416325, + 0.0464409776031971, + 0.07463850826025009, + 0.045490726828575134, + 0.06213116645812988, + -0.00494766142219305, + 0.032570164650678635 + ], + "phone-x-bold||calls,missed,errors,telephone,landline,talk": [ + -0.03561735898256302, + -0.020385747775435448, + 0.02201131358742714, + -0.037053000181913376, + -0.00684207770973444, + -0.050544992089271545, + 0.10345888882875443, + -0.01776987314224243, + 0.008004196919500828, + -0.06415365636348724, + 0.021980730816721916, + 0.020969176664948463, + 0.04482465609908104, + -0.04627615213394165, + -0.013234039768576622, + -0.02468578889966011, + 0.005248178727924824, + -0.03332415595650673, + -0.04153741896152496, + 0.019205279648303986, + 0.03023490123450756, + 0.14545975625514984, + -0.016288820654153824, + 0.01600479520857334, + 0.08795128017663956, + 0.012487435713410378, + -0.01934974081814289, + -0.003042733296751976, + 0.025373360142111778, + -0.07536471635103226, + -0.02157255820930004, + 0.12006421387195587, + 0.14408481121063232, + 0.03972151130437851, + 0.012910990975797176, + 0.030268816277384758, + 0.006809684913605452, + 0.003274649614468217, + -0.0456191785633564, + 0.014948241412639618, + -0.019695401191711426, + -0.07769561558961868, + -0.0010552479652687907, + 0.04749714210629463, + -0.03797435015439987, + -0.09399011731147766, + -0.07818727195262909, + -0.028435174375772476, + 0.032068535685539246, + 0.015147550031542778, + 0.03783508762717247, + -0.015691254287958145, + -0.06529325991868973, + 0.0650506466627121, + 0.003836812451481819, + 0.04963843896985054, + -0.06345297396183014, + 0.05897236242890358, + 0.04840348660945892, + 0.02570432983338833, + 0.027802765369415283, + 0.07665254920721054, + -0.01515718549489975, + 0.047625232487916946, + -0.018407637253403664, + 0.10198985785245895, + -0.06045675277709961, + -0.028693154454231262, + 0.0041514066979289055, + 0.0778731107711792, + -0.02283232845366001, + 0.02908899448812008, + -0.044397007673978806, + 0.009969455190002918, + -0.06357668340206146, + 0.04882434010505676, + 0.03293592110276222, + -0.050888627767562866, + -0.026611750945448875, + -0.07554710656404495, + -0.08723749220371246, + -0.08868680149316788, + -0.032105378806591034, + 0.030741320922970772, + 0.12649467587471008, + 0.043765220791101456, + -0.04815330356359482, + -0.00914405845105648, + -0.028041549026966095, + -0.047901902347803116, + -0.07265862077474594, + -0.029322171583771706, + -0.002264275448396802, + 0.03811721131205559, + -0.15735062956809998, + 0.000472499814350158, + 0.04487719386816025, + -0.10145264118909836, + -0.029809368774294853, + 0.08750036358833313, + -0.0005630208761431277, + 0.01552549283951521, + 0.017826022580266, + 0.020967179909348488, + -0.027824275195598602, + -0.0786188468337059, + -0.017054365947842598, + -0.030503619462251663, + -0.0066305603832006454, + 0.02631567046046257, + -0.01905907690525055, + -0.11501013487577438, + -0.006451995577663183, + -0.03410853073000908, + -0.0141214057803154, + -0.059934452176094055, + -0.009925967082381248, + -0.027426157146692276, + 0.12165424972772598, + -0.010278328321874142, + 0.0059994542971253395, + -0.038345932960510254, + -0.03023684397339821, + -0.017422156408429146, + 0.005495209246873856, + -0.03551711142063141, + 0.09565556049346924, + -1.714416450017066e-33, + 0.03463047370314598, + 0.06780999898910522, + -0.025544436648488045, + 0.08822185546159744, + 0.04196031019091606, + -0.006989011075347662, + -0.0359295979142189, + -0.04653840512037277, + -0.03582748398184776, + 0.09442763030529022, + 0.0274205282330513, + 0.035211946815252304, + 0.017486317083239555, + -0.026571903377771378, + 0.04988256096839905, + 0.012762303464114666, + 0.010260000824928284, + -0.034958504140377045, + -0.07015501707792282, + 0.032579418271780014, + -0.0012681902153417468, + 0.011496839113533497, + -0.009453332051634789, + -0.004637312609702349, + 0.09679494053125381, + -0.026109354570508003, + 0.03871357440948486, + -0.04840909317135811, + 0.043675925582647324, + 0.02136080712080002, + 0.016880851238965988, + -0.009876051917672157, + 0.06032833456993103, + 0.05454041063785553, + 0.006729270331561565, + 0.058721695095300674, + -0.029601823538541794, + -0.04302755370736122, + -0.053549643605947495, + 0.023128023371100426, + -0.12270793318748474, + -0.03266175091266632, + -0.07681509107351303, + -0.060333121567964554, + 0.05898146703839302, + 0.0222603902220726, + -0.061751119792461395, + -0.038162197917699814, + 0.034428536891937256, + 0.036343224346637726, + -0.04323592409491539, + 0.0561048686504364, + -0.012765306048095226, + 0.03690256178379059, + 0.01095396839082241, + -0.033834781497716904, + 0.01200432050973177, + 0.06603775918483734, + -0.0033622782211750746, + 0.022549698129296303, + 0.07807479798793793, + -0.03615763038396835, + -0.0055070254020392895, + -0.03181472793221474, + -0.002046072157099843, + 0.016101300716400146, + -0.06418564915657043, + -0.035311147570610046, + 0.015746258199214935, + -0.0015272656455636024, + -0.04372306540608406, + 0.009643182158470154, + 0.07703706622123718, + 0.07573986053466797, + 0.0042668236419558525, + 0.021041499450802803, + -0.03178434446454048, + 0.00019748444901779294, + 0.01735256239771843, + -0.030763152986764908, + -0.01729428581893444, + -0.033424388617277145, + -0.04603508114814758, + 0.08741357177495956, + 0.07974699884653091, + 0.006514274049550295, + 0.012600583024322987, + -0.09429720044136047, + -0.09846459329128265, + 0.1019764170050621, + -0.10278496146202087, + 0.01085246354341507, + -0.05682716891169548, + -0.06293773651123047, + -0.11249827593564987, + -3.0131074760868256e-34, + -0.05361533164978027, + 0.03556135296821594, + 0.014214366674423218, + 0.028500428423285484, + -0.08255840837955475, + -0.04427559673786163, + 0.09471320360898972, + 0.053133729845285416, + 0.024623075500130653, + 0.005743840709328651, + 0.013283911161124706, + 0.02446853555738926, + -0.00923832319676876, + -0.023883916437625885, + 0.005738210864365101, + 0.02844717539846897, + 0.03529806435108185, + -0.0436423234641552, + -0.02320846915245056, + 0.08246377110481262, + -7.794391422066838e-05, + -0.0433277003467083, + -0.05170783773064613, + 0.0998542532324791, + -0.05295306071639061, + -0.01035690400749445, + 0.007066297810524702, + -0.03062930889427662, + -0.033826299011707306, + -0.11893624812364578, + -0.048038121312856674, + 0.008539259433746338, + -0.0027246507816016674, + 0.06840912252664566, + -0.033238351345062256, + 0.030292078852653503, + 0.08190182596445084, + 0.05286630988121033, + -0.008494163863360882, + -0.0033042493741959333, + 0.08043064177036285, + 0.0052002593874931335, + 0.051251836121082306, + -0.0021383813582360744, + -0.022619890049099922, + -0.0358014851808548, + -0.09456627815961838, + 0.006946728564798832, + -0.09729094803333282, + 0.05344405770301819, + 0.08662246912717819, + -0.005582320503890514, + -0.01002168096601963, + 0.1151900514960289, + -0.0774535983800888, + -0.006416282616555691, + 0.060193441808223724, + -0.041319314390420914, + -6.399221456376836e-05, + 0.07929428666830063, + 0.022764362394809723, + -0.03168516978621483, + -0.02437075413763523, + -0.01878996752202511, + 0.045848432928323746, + -0.029315883293747902, + 0.005280820652842522, + -0.045182161033153534, + 0.07540027797222137, + 0.012941560707986355, + 0.05816953256726265, + -0.03373175486922264, + -0.0471930056810379, + -0.0009557840530760586, + 0.007303292863070965, + -0.056906551122665405, + -0.08604825288057327, + -0.024781102314591408, + -0.018197672441601753, + 0.029163293540477753, + 0.06868016719818115, + 0.02231059968471527, + 0.020648686215281487, + 0.05804182216525078, + -0.007487674709409475, + 0.11424966901540756, + 0.013317644596099854, + 0.077678382396698, + 0.007451426237821579, + -0.06241936236619949, + -0.0519413985311985, + 0.053328465670347214, + -0.04007410258054733, + -4.568726581055671e-05, + -0.06828499585390091, + -2.0926679056287867e-08, + -0.01922120526432991, + -0.03638579696416855, + 0.000984676880761981, + -0.10708621144294739, + 0.02044382318854332, + -0.06822705268859863, + 0.008155450224876404, + -0.09216850996017456, + 0.020505262538790703, + -0.09695380181074142, + -0.008029774762690067, + -0.04174332320690155, + -0.12831076979637146, + 0.005585557781159878, + 0.06750784069299698, + 0.020552601665258408, + 0.018338123336434364, + 0.048244960606098175, + -0.041221290826797485, + -0.003404575167223811, + 0.004092935007065535, + 0.053463611751794815, + -0.017904220148921013, + 0.0020462810061872005, + 0.03676808625459671, + -0.01937473751604557, + -0.02098522149026394, + 0.09078235179185867, + 0.05986059829592705, + -0.0016983672976493835, + 0.020223723724484444, + 0.05545022338628769, + 0.025693047791719437, + -0.03829292953014374, + -0.07076219469308853, + 0.001697987550869584, + 0.026328586041927338, + -0.042351726442575455, + 0.06694458425045013, + 0.04686930030584335, + 0.03579247370362282, + -0.05986233428120613, + -0.035707443952560425, + 0.022997718304395676, + 0.07623875141143799, + -0.006640717852860689, + 0.03176546096801758, + -0.10262611508369446, + -0.01408535335212946, + -0.1527484655380249, + -0.011217212304472923, + -0.004239511676132679, + 0.034032244235277176, + -0.005772206000983715, + -0.013131731189787388, + -0.05105680599808693, + 0.05028627812862396, + -0.011588798835873604, + 0.03773694112896919, + 0.055315278470516205, + 0.05302472040057182, + 0.04717615246772766, + -0.03521984443068504, + 0.011950040236115456 + ], + "phosphor-logo-bold||logos": [ + 0.004360067658126354, + 0.09537553042173386, + -0.028707336634397507, + -0.024056417867541313, + 0.08261824399232864, + -0.03836695849895477, + 0.09924479573965073, + -0.044593095779418945, + 0.05485231801867485, + 0.02154415473341942, + 0.0390910841524601, + 0.056962136179208755, + 0.03356391564011574, + -0.02616892382502556, + 0.018471309915184975, + -0.028404640033841133, + -0.04891084507107735, + 0.019815711304545403, + 0.020227644592523575, + 0.007331700995564461, + 0.0698380395770073, + -0.026742659509181976, + 0.02540091797709465, + 0.04449139162898064, + -0.03466379642486572, + 0.010315376333892345, + 0.05271289125084877, + 0.006833864841610193, + -0.01966836117208004, + -0.0792737752199173, + 0.0025464636273682117, + 0.017799189314246178, + 0.05757669731974602, + -0.016280706971883774, + 0.02468070760369301, + 0.022092148661613464, + 0.033437084406614304, + -0.005014809779822826, + 0.030793124809861183, + 0.037195418030023575, + 0.05357387661933899, + -0.0538267120718956, + 0.029500367119908333, + 0.014452081173658371, + -0.048084091395139694, + 0.06767987459897995, + -0.059716954827308655, + 0.029640426859259605, + 0.05922531709074974, + -0.013186655938625336, + -0.005175317171961069, + -0.11170828342437744, + -0.04522659257054329, + -0.060364075005054474, + -0.04529856890439987, + 0.03142090141773224, + -0.0698268935084343, + 0.008930586278438568, + 0.051938142627477646, + -0.05172267556190491, + 0.000256895727943629, + 0.03497566655278206, + 0.044480741024017334, + 0.10537412017583847, + 0.09033069759607315, + 0.024786261841654778, + -0.006176210008561611, + -0.008716882206499577, + -0.07400631159543991, + 0.0328645184636116, + 0.08871178328990936, + -0.0096229687333107, + 0.028329970315098763, + -0.08597557246685028, + 0.004700936377048492, + 0.0860876515507698, + 0.06138964369893074, + 0.055667899549007416, + -0.0213125292211771, + -0.05119446665048599, + -0.03890518844127655, + -0.04075998812913895, + -0.0350799486041069, + 0.011408291757106781, + 0.05924057215452194, + 0.0765683501958847, + -0.10795657336711884, + -0.0756399929523468, + 0.019802317023277283, + 0.015841934829950333, + -0.04635724797844887, + -0.011578953824937344, + 0.03693164139986038, + 0.012468761764466763, + -0.05908399820327759, + -0.011666741222143173, + -0.023173129186034203, + -0.004939237609505653, + -0.07739017903804779, + 0.07829698175191879, + -0.00862034223973751, + 0.05434561148285866, + 0.08221990615129471, + -0.040173377841711044, + 0.00992242619395256, + 0.050770509988069534, + 0.011262151412665844, + -0.03160237893462181, + 0.007622177246958017, + 0.06801356375217438, + 0.032848604023456573, + -0.019016603007912636, + -0.023871978744864464, + -0.04035916551947594, + -0.052820805460214615, + -0.035791169852018356, + -0.029865959659218788, + -0.07015540450811386, + 0.08743643760681152, + -0.051610223948955536, + -0.0004913070006296039, + -0.06007356196641922, + -0.07208987325429916, + -0.05566680431365967, + -0.029815198853611946, + 0.00020313305140007287, + -0.09964060038328171, + -1.8266686300099095e-33, + -0.005090424790978432, + 0.07949474453926086, + 0.013754733838140965, + 0.03643767908215523, + -0.00385330431163311, + 0.012763787992298603, + -0.0232500359416008, + -0.11040569096803665, + -0.11731207370758057, + -0.03590526059269905, + 0.030786942690610886, + 0.06294499337673187, + -0.030116328969597816, + 0.06672126799821854, + 0.013373528607189655, + -0.0714280754327774, + 0.019177768379449844, + -0.009745722636580467, + -0.10466017574071884, + -0.05751283839344978, + -0.01917846128344536, + -0.01833212748169899, + -0.09218103438615799, + -0.005908933002501726, + -0.0276217982172966, + 0.03342980146408081, + -0.0027315800543874502, + -0.019360177218914032, + -0.035244617611169815, + 0.026510294526815414, + 0.10443861782550812, + 0.030184179544448853, + 0.035402100533246994, + 0.019313938915729523, + -0.105415940284729, + -0.027354899793863297, + -0.05765022337436676, + -0.03737838193774223, + 0.017327705398201942, + -0.009974476881325245, + -0.04568640887737274, + -0.07929540425539017, + -0.017436835914850235, + 0.10633447766304016, + -0.013425915502011776, + 0.10296956449747086, + -0.01642303727567196, + -0.09616079181432724, + 0.0701560378074646, + 0.00018873396038543433, + -0.07172820717096329, + -0.0402420349419117, + -0.018468519672751427, + -0.023213639855384827, + 0.004648779518902302, + -0.08273433893918991, + -0.04548851028084755, + 0.0372338704764843, + -0.003158485982567072, + -0.03515437990427017, + -0.013256668113172054, + 0.05908232927322388, + 0.02790236286818981, + 0.03094913251698017, + -0.042906828224658966, + 0.06092726066708565, + -0.00743242260068655, + 0.0460803285241127, + 0.020210929214954376, + -0.027303488925099373, + 0.030994493514299393, + 0.05740014463663101, + 0.09531696140766144, + 0.01596206985414028, + -0.047717176377773285, + 0.013153006322681904, + 0.05331156402826309, + -0.009924031794071198, + -0.02165302447974682, + 0.08801086246967316, + -0.0052621872164309025, + -0.014679107815027237, + -0.044956158846616745, + 0.0543239563703537, + 0.03293241932988167, + 0.02798718400299549, + 0.06032184883952141, + -0.029253030195832253, + -0.03291541337966919, + 0.044661808758974075, + 0.0024621570482850075, + -0.05522633716464043, + 0.036789365112781525, + 0.023412412032485008, + -0.14219295978546143, + 3.918323992408895e-34, + 0.06398492306470871, + 0.0027681465726345778, + 0.10259556770324707, + 0.006186397280544043, + -0.017563587054610252, + -0.009505913592875004, + 0.06202024966478348, + 0.07940907776355743, + -0.06874532997608185, + -0.033571965992450714, + 0.08940858393907547, + 0.01749333366751671, + -0.09465742856264114, + -0.05154995247721672, + -0.006156410090625286, + 0.06169098988175392, + 0.09044161438941956, + 0.06211724877357483, + -0.05554049462080002, + 0.021090753376483917, + -0.012418232858181, + 0.016849055886268616, + -0.04531453922390938, + 0.10007137060165405, + -0.040368255227804184, + 0.004514702130109072, + 0.03343935310840607, + 0.013296445831656456, + -0.10016457736492157, + 0.011647099629044533, + -0.05044427141547203, + -0.015484529547393322, + -0.01144595816731453, + 0.05258193612098694, + -0.01414576731622219, + 0.00783267617225647, + -0.04647577181458473, + -0.0399986207485199, + -0.011175263673067093, + 0.016662145033478737, + -0.014070026576519012, + -0.03137660771608353, + 0.001833612797781825, + -0.011828339658677578, + -0.04318748041987419, + -0.011819246225059032, + -0.009687422774732113, + -0.10232185572385788, + -0.03277991712093353, + 0.08623307943344116, + 0.013653255067765713, + 0.02122790366411209, + 0.04368997737765312, + 0.07017568498849869, + -0.022397976368665695, + -0.03355822339653969, + -0.048062752932310104, + 0.09619203209877014, + -0.06187567114830017, + 0.05839129909873009, + 0.041467949748039246, + -0.0467255637049675, + -0.06170047074556351, + -0.006246299482882023, + -0.0031064539216458797, + 0.01093397755175829, + 0.03717480227351189, + -0.005969798658043146, + -0.023643938824534416, + 0.0916081890463829, + 0.012478324584662914, + 0.013850239105522633, + 0.008598447777330875, + 0.07995772361755371, + 0.013212429359555244, + -0.03384177386760712, + 0.009348218329250813, + -0.007023048587143421, + -0.05042504146695137, + 0.04676042124629021, + -0.07286287099123001, + -0.028283225372433662, + -0.06603426486253738, + 0.06329333037137985, + 0.07378102093935013, + 0.025730960071086884, + -0.0015375243965536356, + 0.000936839438509196, + 0.003409024327993393, + -0.006391799543052912, + -0.06000356748700142, + 0.028250403702259064, + 0.07387752085924149, + 0.004763961303979158, + 0.014043412171304226, + -1.6177772010905755e-08, + 0.0068258559331297874, + -0.03827962279319763, + 0.054651014506816864, + -0.07114890962839127, + 0.06321550160646439, + -0.016973229125142097, + 0.029849665239453316, + -0.14905492961406708, + -0.10171247273683548, + -0.020599573850631714, + -0.02571435086429119, + -0.01464120950549841, + -0.026603996753692627, + -0.017596248537302017, + 0.07565420866012573, + -0.008600752800703049, + -0.10622788965702057, + 0.11801523715257645, + 0.0033903205767273903, + -0.05970132350921631, + -0.06992562115192413, + 0.05805976688861847, + 0.03504886105656624, + -0.015456918627023697, + 0.011193212121725082, + 0.08148804306983948, + 0.00489845871925354, + -0.05866395682096481, + -0.007438594475388527, + 0.04512535408139229, + 0.022333228960633278, + 0.051662273705005646, + 0.01879221200942993, + 0.00022356300905812532, + -0.035700906068086624, + -0.011514312587678432, + -0.05200045555830002, + 0.011612694710493088, + -0.08518484979867935, + 0.0598994679749012, + -0.02467588149011135, + 0.0026414531748741865, + 0.0049592237919569016, + 0.02165049873292446, + -0.03107648529112339, + 0.0077907619997859, + 0.07374811172485352, + -0.00200660084374249, + -0.07122943550348282, + -0.062306780368089676, + 0.04525822773575783, + 0.02535828948020935, + -0.02858918532729149, + 0.024448513984680176, + -0.0745781883597374, + -0.16947528719902039, + 0.05725172162055969, + 0.08468546718358994, + 0.00835973210632801, + 0.036659009754657745, + 0.15429463982582092, + -0.04349096119403839, + -0.0005560258869081736, + -0.027593519538640976 + ], + "pi-bold||\u03c0,symbol,mathematics,circle": [ + -0.018468478694558144, + 0.009936977177858353, + -0.052151989191770554, + 0.060370951890945435, + -0.025128817185759544, + -0.017983682453632355, + 0.06065947189927101, + 0.024421541020274162, + 0.08627470582723618, + -0.062301501631736755, + 0.013764198869466782, + 0.04255959764122963, + 0.10299451649188995, + -0.05230921134352684, + 0.03703229874372482, + -0.043874431401491165, + -0.009449673816561699, + -0.03401249647140503, + 0.011365333572030067, + -0.0015342861879616976, + 0.0045313299633562565, + -0.014419387094676495, + 0.06668955087661743, + 0.0678531751036644, + 0.0029830727726221085, + -0.00032178545370697975, + 0.09955087304115295, + -0.07306314259767532, + 0.06009390950202942, + -0.05109206959605217, + -0.06961987167596817, + 0.020666416734457016, + 0.028304656967520714, + 0.001753403921611607, + 0.007717263884842396, + 0.024292193353176117, + -0.0022435211576521397, + -0.020621897652745247, + 0.03304512798786163, + 0.04846733435988426, + 0.07796216756105423, + -0.05301394686102867, + 0.08348385244607925, + -0.010275047272443771, + -0.0541304275393486, + 0.04812074452638626, + -0.07788379490375519, + -0.01208521332591772, + -0.011494898237287998, + -0.06215950846672058, + 0.013144869357347488, + -0.015315927565097809, + -0.1076248362660408, + -0.01082209125161171, + 0.04857473820447922, + 0.007125853095203638, + -0.0496077798306942, + -0.012543092481791973, + 0.033754270523786545, + -0.06855686753988266, + -0.015563387423753738, + 0.015326830558478832, + 0.07376737892627716, + -0.012634065002202988, + 0.010031082667410374, + -0.006719847209751606, + -0.025183100253343582, + -0.06117212027311325, + -0.004016723949462175, + -0.000879289407748729, + 0.0022870772518217564, + 0.07519019395112991, + -0.0867212787270546, + -0.07683311402797699, + -0.032154809683561325, + 0.09053736925125122, + -0.02978990040719509, + 0.019904816523194313, + -0.08681508153676987, + -0.04248868674039841, + -0.04899982735514641, + -0.07890938222408295, + -0.02204202488064766, + 0.05566806718707085, + 0.03251954913139343, + 0.12926451861858368, + -0.04855696111917496, + -0.06964108347892761, + 0.011227702721953392, + -0.0022484019864350557, + -0.007471470627933741, + 0.018990905955433846, + -0.0719560757279396, + 0.02040197141468525, + -0.04649520292878151, + -0.003401750000193715, + 0.00846450962126255, + 0.013180214911699295, + -0.10387610644102097, + 0.07882340997457504, + 0.06948503106832504, + 0.031093962490558624, + 0.03147938475012779, + -0.04288670793175697, + -0.032690394669771194, + -0.04649926722049713, + 0.0679580420255661, + -0.06131308153271675, + 0.04872947186231613, + 0.024994444102048874, + 0.027819452807307243, + -0.1226518452167511, + -0.0030212339479476213, + -0.03448204696178436, + -0.010197784751653671, + 0.046545691788196564, + -0.006268225144594908, + -0.038264453411102295, + 0.0740867480635643, + 0.060628701001405716, + 0.011268039233982563, + -0.001815146766602993, + -0.058179259300231934, + 0.021702850237488747, + -0.06540419906377792, + 0.01686258427798748, + -0.0722619965672493, + -2.7415114348747554e-33, + 0.028872497379779816, + 0.13141724467277527, + 0.0018001683056354523, + 0.014618820510804653, + -0.0898267924785614, + 0.028793495148420334, + -0.04218655824661255, + -0.09693896025419235, + -0.00839171838015318, + -0.01384763140231371, + 0.017277199774980545, + 0.15127326548099518, + 0.014097679406404495, + 0.040724173188209534, + 0.04219980537891388, + -0.05805055424571037, + 0.0918799638748169, + -0.026767950505018234, + -0.07116428017616272, + -0.05698886141180992, + -0.001515764044597745, + 0.009544608183205128, + -0.1264297217130661, + -0.014628100208938122, + -0.04841150343418121, + 0.0641370564699173, + 0.0030303162056952715, + 0.0003415054234210402, + -0.052336435765028, + 0.03292984142899513, + 0.004362060688436031, + -0.017218848690390587, + 0.01336659025400877, + 0.03769996389746666, + 0.014004186727106571, + -0.03423106297850609, + -0.05238589271903038, + 0.018547089770436287, + -0.003171168500557542, + 0.020665714517235756, + -0.007220868021249771, + -0.05668208375573158, + 0.0001275469403481111, + 0.05232152342796326, + 0.03954385221004486, + 0.07904630154371262, + 0.027216607704758644, + -0.08575300127267838, + 0.02699684165418148, + -0.01649600639939308, + -0.04591274634003639, + -0.010851952247321606, + 0.00887864176183939, + -0.012929115444421768, + 0.002237338339909911, + -0.09431398659944534, + -0.008313178084790707, + 0.000595082703512162, + -0.053070515394210815, + 0.02737337164580822, + 0.03637884557247162, + 0.052146222442388535, + 0.0374729186296463, + -0.016556711867451668, + -0.061206087470054626, + 0.0650671124458313, + -0.12575627863407135, + 0.06159054487943649, + 0.08685880154371262, + 0.03513413667678833, + -0.0005713654099963605, + 0.06921778619289398, + 0.07802595943212509, + 0.032099395990371704, + 0.03744868189096451, + 0.016029227524995804, + -0.019498655572533607, + 0.0006159241893328726, + 0.010784681886434555, + 0.03286035731434822, + -0.04195103421807289, + -0.009482749737799168, + -0.009551424533128738, + -0.009366177022457123, + 0.010388818569481373, + -0.02998444251716137, + 0.08980719745159149, + 0.005823750980198383, + -0.016212813556194305, + 0.009767136536538601, + -0.08176501840353012, + -0.01919497735798359, + 0.07072503864765167, + 0.030922386795282364, + -0.12067835032939911, + 1.5066440812127582e-34, + -0.09029818326234818, + 0.05234897881746292, + -0.01279383059591055, + -0.02265148237347603, + -0.054676853120326996, + -0.035077985376119614, + 0.023737097159028053, + -0.03390108421444893, + -0.031107036396861076, + 0.006084666587412357, + -0.006491892971098423, + -0.05681611970067024, + 0.02699609100818634, + -0.012387142516672611, + 0.038970042020082474, + -0.015388990752398968, + -0.03911897912621498, + 0.01615067943930626, + -0.011909596621990204, + 0.02990054152905941, + -0.1459875851869583, + -0.03681590035557747, + -0.02974962815642357, + 0.03874250501394272, + -0.052416831254959106, + 0.07940198481082916, + 0.036895785480737686, + -0.09296726435422897, + -0.05989488214254379, + 0.01914374716579914, + -0.08513491600751877, + -0.04543568193912506, + 0.025489840656518936, + 0.08970119059085846, + -0.08443839848041534, + 0.007821004837751389, + 0.05055208504199982, + -0.023798899725079536, + 0.019145796075463295, + -0.09431425482034683, + -0.013793286867439747, + -0.08717351406812668, + 0.10065784305334091, + -0.018370043486356735, + -0.022312989458441734, + -0.045397959649562836, + 0.11584200710058212, + -0.04155460000038147, + -0.05944038927555084, + 0.08274496346712112, + 0.0049291071482002735, + -0.005161343142390251, + 0.07176320999860764, + 0.019113412126898766, + -0.05589957907795906, + -0.029338078573346138, + -0.03716636449098587, + 0.07711702585220337, + -0.029142756015062332, + 0.061518386006355286, + -0.019821736961603165, + -0.004284162074327469, + 0.031422797590494156, + 0.10764623433351517, + -0.003912739455699921, + -0.03371313586831093, + 0.07815875858068466, + -0.03011201322078705, + -0.007226565852761269, + 0.0195157453417778, + 0.00583579670637846, + 0.07231009751558304, + 0.00844515860080719, + 0.0567261166870594, + 0.02995796501636505, + -0.018445594236254692, + 0.019135883077979088, + 0.018204398453235626, + -0.044291362166404724, + 0.06700756400823593, + -0.061619363725185394, + -0.013628393411636353, + -0.1034681648015976, + -0.013399984687566757, + -0.015421198680996895, + -0.04710540547966957, + 0.005188677925616503, + -0.013045010156929493, + -0.03103301301598549, + -0.046699732542037964, + -0.04399069398641586, + 0.07516442984342575, + -0.04015736281871796, + -0.024409454315900803, + 0.041985493153333664, + -1.5593553115422765e-08, + 0.02058972418308258, + 0.03427810221910477, + -0.027229582890868187, + -0.014481188729405403, + 0.08713685721158981, + -0.036358002573251724, + 0.011057076044380665, + -0.11347735673189163, + -0.09522494673728943, + 0.020332902669906616, + -0.008863321505486965, + -0.0076365042477846146, + -0.045865654945373535, + -0.07270876318216324, + 0.0460011288523674, + 0.03964400663971901, + -0.008881096728146076, + 0.032140884548425674, + 0.04669896513223648, + 0.003459611441940069, + 0.011339361779391766, + 0.015107771381735802, + 0.09394951909780502, + -0.10497144609689713, + -0.021108949556946754, + 0.017213933169841766, + 0.008811469189822674, + 0.012175404466688633, + -0.023393433541059494, + 0.020584776997566223, + 0.05583704262971878, + -0.03608161583542824, + 0.028945349156856537, + -0.016104452311992645, + -0.03940552845597267, + -0.06958513706922531, + 0.026793036609888077, + 0.02885647490620613, + 0.022615516558289528, + 0.17866651713848114, + -0.016080865636467934, + 0.05464617535471916, + 0.0005944489385001361, + -0.022465255111455917, + 0.04274991899728775, + 0.047307681292295456, + 0.08189020305871964, + -0.057094212621450424, + -0.04853249341249466, + 0.00950213149189949, + -0.09537436813116074, + 0.04851638525724411, + 0.04585868492722511, + 0.013546476140618324, + -0.00034664510167203844, + -0.04845528304576874, + 0.018324032425880432, + 0.06276281177997589, + -0.0864717960357666, + 0.04551297053694725, + 0.04922113195061684, + 0.07574242353439331, + 0.03242894262075424, + -0.01824667863547802 + ], + "piano-keys-bold||music,instrument,keyboard": [ + 0.014968186616897583, + -0.039336711168289185, + -0.01572994515299797, + -0.02285868674516678, + -0.039067815989255905, + 0.03497748076915741, + 0.08407756686210632, + -0.06637989729642868, + 0.058468762785196304, + 0.04426216334104538, + 0.031858500093221664, + 0.013630702160298824, + 0.07037923485040665, + -0.10240791738033295, + 0.017867764458060265, + 0.028584759682416916, + -0.027148842811584473, + 0.009032510221004486, + -0.023491308093070984, + 0.028166182339191437, + -0.049928341060876846, + 0.00615570368245244, + -0.0227682925760746, + -0.008632506243884563, + 0.013359665870666504, + 0.07301841676235199, + 0.05162253603339195, + 0.06440552324056625, + 0.021252069622278214, + -0.033490829169750214, + -0.03547905385494232, + -0.050825923681259155, + 0.05840569734573364, + 0.013059115037322044, + 0.007818818092346191, + 0.03373880311846733, + -0.036435097455978394, + -0.05428067967295647, + -0.06528154760599136, + 0.04725249111652374, + 0.0024173480924218893, + -0.05022415146231651, + 0.01272605825215578, + 0.040040645748376846, + -0.04496081918478012, + -0.016448138281702995, + -0.08303626626729965, + -0.0666809231042862, + -0.046392351388931274, + -0.010721144266426563, + -0.05409526079893112, + -0.06213847175240517, + -0.05772148445248604, + -0.009899172931909561, + -0.037564679980278015, + 0.012101943604648113, + -0.06866348534822464, + 0.06306955963373184, + 0.08938805013895035, + 0.003936692140996456, + 0.0006884633330628276, + -0.0041560223326087, + 0.05033581703901291, + 0.005404727533459663, + 0.025512121617794037, + 0.07620149105787277, + -0.016929853707551956, + -0.042479269206523895, + -0.08024071902036667, + 0.06934677064418793, + 0.07297313958406448, + -0.03177401050925255, + -0.012412983924150467, + -0.11255791783332825, + -0.01816834695637226, + -0.013334007933735847, + -0.02297559380531311, + -0.05215686932206154, + -0.04946687072515488, + -0.04586770758032799, + -0.08034253120422363, + -0.06573332101106644, + -0.06691775470972061, + -0.030767150223255157, + 0.04571463167667389, + 0.07232267409563065, + -0.09412609785795212, + -0.052270907908678055, + -0.06532265245914459, + -0.0009198033949360251, + -0.07403673231601715, + -0.048100847750902176, + 0.005441723391413689, + 0.051318444311618805, + -0.02819134294986725, + 0.017778845503926277, + 0.13302752375602722, + -0.027783136814832687, + -0.02356264926493168, + 0.07812368124723434, + 0.044641051441431046, + 0.07378468662500381, + 0.054764941334724426, + 0.03724800422787666, + -0.026854639872908592, + -0.0016137500060722232, + -0.001333674881607294, + -0.009188536554574966, + -0.03256402164697647, + -0.07127848267555237, + 0.026932215318083763, + -0.10123652219772339, + -0.023596003651618958, + -9.185879753204063e-05, + -0.07586675137281418, + -0.02598150074481964, + 0.005965313408523798, + 0.024682682007551193, + 0.12955379486083984, + 0.09028570353984833, + 0.0163473691791296, + -0.07375500351190567, + -0.10411760210990906, + 0.022826863452792168, + -0.058073386549949646, + 0.012135137803852558, + -0.005984854884445667, + -3.278382480098341e-33, + 0.06560441106557846, + 0.02935723215341568, + 0.00913114845752716, + 0.028416946530342102, + 0.030619237571954727, + -0.023199699819087982, + -0.00893405545502901, + 0.03824269399046898, + -0.01896541193127632, + 0.050941187888383865, + 0.013496310450136662, + 0.05800415575504303, + -0.010284855030477047, + 0.03257877007126808, + 0.02355816401541233, + -0.005291621666401625, + 0.01083527971059084, + 0.03157809004187584, + -0.05425945296883583, + 0.004942451138049364, + -0.01504295039921999, + 0.04179680347442627, + -0.02577393688261509, + 0.008960878476500511, + 0.0027478046249598265, + 0.002309746341779828, + 0.027597730979323387, + -0.02856268361210823, + -0.04477890953421593, + 0.007313061039894819, + 0.04171336814761162, + 0.03456781059503555, + -0.015883056446909904, + -0.05830393359065056, + -0.04787173122167587, + 0.040767520666122437, + -0.03986237570643425, + 0.06331708282232285, + 0.010955942794680595, + -0.032124582678079605, + -0.08416204154491425, + -0.008899424225091934, + -0.035239897668361664, + -0.028634948655962944, + 0.0268754530698061, + 0.0918913185596466, + 0.015267849899828434, + -0.022182142361998558, + 0.07758621126413345, + -0.016065124422311783, + -0.025445040315389633, + 0.0012926600174978375, + -0.022557934746146202, + 0.036275893449783325, + 0.051976606249809265, + -0.06495381891727448, + -0.012343420647084713, + 0.12741123139858246, + 0.008183788508176804, + 0.04168644919991493, + 0.06338324397802353, + 0.008931354619562626, + 0.08478979021310806, + 0.03014615923166275, + -0.03313989192247391, + 0.056018006056547165, + -0.004392823204398155, + -0.005552198272198439, + 0.11189760267734528, + -0.023284098133444786, + -0.026842569932341576, + 0.028489291667938232, + 0.04150458797812462, + 0.063082754611969, + -0.05465305596590042, + 0.0046500032767653465, + -0.008600559085607529, + -0.09270978718996048, + 0.03666217625141144, + -0.11708121746778488, + -0.05405125394463539, + 0.08917645364999771, + -0.08670413494110107, + 0.08168895542621613, + -0.039911650121212006, + 0.07188303023576736, + -0.04599582031369209, + -0.12163303047418594, + -0.04778913035988808, + 0.05767481029033661, + -0.12180857360363007, + 0.005652531515806913, + -0.06557395309209824, + -0.09676523506641388, + -0.11804704368114471, + -7.457325830123274e-35, + 0.06807313859462738, + 0.05390080437064171, + -0.05120185390114784, + -0.021666768938302994, + -0.021778736263513565, + 0.06558607518672943, + 0.010204976424574852, + 0.0177664365619421, + 0.023827416822314262, + 0.06982111930847168, + 0.04703826084733009, + -0.019070522859692574, + 0.02224712073802948, + -0.08947404474020004, + -0.013268699869513512, + 0.040774643421173096, + -0.03397238627076149, + 0.08996323496103287, + 0.03614272177219391, + -0.02348175086081028, + -0.10520116984844208, + -0.063635915517807, + 0.005010819993913174, + 0.09996434301137924, + -0.047976959496736526, + 0.02545769140124321, + -0.015682470053434372, + 0.007208609022200108, + -0.08491163700819016, + 0.013846601359546185, + -0.015322224237024784, + 0.008408847264945507, + 0.004581865388900042, + 0.0043417103588581085, + -0.06688474118709564, + 0.004389370791614056, + -0.01889565773308277, + -0.024034349247813225, + 0.045996811240911484, + 0.0017062644474208355, + 0.01355047058314085, + 0.022319786250591278, + 0.07751709222793579, + 0.06746163964271545, + -0.051054272800683975, + 0.012778157368302345, + 0.011108587495982647, + -0.011799010448157787, + -0.0016123539535328746, + 0.024394625797867775, + 0.08320166915655136, + -0.06904859840869904, + -0.03235727176070213, + -0.07092314958572388, + -0.12412518262863159, + 0.011488987132906914, + -0.04801642522215843, + -0.005353097338229418, + -0.0013849304523319006, + 0.07182429730892181, + 0.005482065491378307, + 0.07195767760276794, + 0.038543809205293655, + 0.07075051218271255, + 0.057943034917116165, + -0.03531407564878464, + 0.07030535489320755, + 0.004712078720331192, + 0.05702803283929825, + 0.024221373721957207, + 0.0416778028011322, + 0.03634343668818474, + 0.04223845154047012, + 0.07751226425170898, + -0.018924489617347717, + -0.05990096554160118, + 0.008459130302071571, + -0.013395329006016254, + 0.0014278236776590347, + 0.012305368669331074, + 0.019864073023200035, + -0.0047110700979828835, + -0.007660595700144768, + 0.01362253725528717, + -0.03736870363354683, + 0.09857315570116043, + 0.030472392216324806, + 0.0003063406911678612, + -0.042946334928274155, + 0.04399274289608002, + 0.01173056848347187, + 0.06512121856212616, + -0.011062630452215672, + -0.04620791971683502, + -0.00808403454720974, + -1.6021296289636666e-08, + 0.05271952971816063, + 0.040853653103113174, + -0.09190919995307922, + -0.02387833222746849, + -0.03560025617480278, + -0.06151547282934189, + 0.003303719451650977, + -0.07201821357011795, + -0.04288877546787262, + -0.028700388967990875, + 0.026361754164099693, + -0.03577614575624466, + -0.047614362090826035, + -0.021405445411801338, + 0.014575286768376827, + 0.06839627027511597, + -0.07871969789266586, + 0.07644642889499664, + -0.037803683429956436, + -0.016817724332213402, + 0.03304239362478256, + 0.022919267416000366, + 0.07754269242286682, + -0.05064104497432709, + 0.01745752803981304, + 0.03923805058002472, + -0.07967380434274673, + 0.037487853318452835, + 0.11421550065279007, + 0.06828637421131134, + 0.02877555415034294, + 0.011907362379133701, + 0.05524556711316109, + -0.01651960238814354, + -0.0658770427107811, + -0.0640854462981224, + -0.04016471281647682, + -0.04914434999227524, + -0.0681477040052414, + 0.09131848067045212, + -0.04230504855513573, + -0.02455252967774868, + -0.10175611823797226, + -0.039868563413619995, + -0.07863759994506836, + 0.015692351385951042, + 0.08663319796323776, + -0.0010698665864765644, + -0.08415613323450089, + -0.01000304613262415, + -0.04432402923703194, + -0.027902662754058838, + 0.02304520644247532, + 0.07208725064992905, + -0.06400562077760696, + 0.015542001463472843, + -0.014436501078307629, + 0.13509881496429443, + -0.027473948895931244, + -0.03881673514842987, + 0.10161019116640091, + 0.01936388947069645, + -0.025270888581871986, + 0.013391215354204178 + ], + "picnic-table-bold||*new*,bench,park,outdoors": [ + 0.027238106355071068, + 0.0034805992618203163, + 0.053592704236507416, + 0.00581187242642045, + 0.07334007322788239, + 0.020280450582504272, + 0.09917160868644714, + -0.06438963860273361, + 0.0024486365728080273, + 0.0495956689119339, + 0.0019928826950490475, + -0.04585026577115059, + -0.013452552258968353, + -0.03800569474697113, + 0.07530785351991653, + 0.05299270898103714, + 0.08976495265960693, + 0.01803424395620823, + 0.022053375840187073, + -0.0049696727655828, + -0.06320177763700485, + 0.008103982545435429, + 0.009340601973235607, + 0.019007468596100807, + 0.008982120081782341, + 0.013783982023596764, + -0.020385995507240295, + 0.06513535231351852, + 0.019611982628703117, + -0.01861513964831829, + -0.027017485350370407, + -0.027803974226117134, + 0.07260428369045258, + 0.019865814596414566, + 0.05767875537276268, + 0.020537646487355232, + -0.008288645185530186, + -0.07249569892883301, + 0.028188828378915787, + 0.06488416343927383, + -0.036333080381155014, + -0.04721968621015549, + -0.04489971697330475, + 0.05505407974123955, + -0.017832497134804726, + 0.015595432370901108, + -0.03750484809279442, + 0.0030562833417207003, + 0.07075826823711395, + 0.0019326903857290745, + -0.023809010162949562, + 0.004482268821448088, + -0.07809603214263916, + -0.05625605210661888, + -0.025251921266317368, + 0.029281821101903915, + -0.055073678493499756, + -0.06215907260775566, + 0.030873632058501244, + 0.04867255315184593, + 0.05720672383904457, + -0.020725002512335777, + 0.04010116308927536, + 0.027281073853373528, + 0.01663283258676529, + -0.0414891391992569, + -0.08432275056838989, + 0.0039123659953475, + 0.05027195066213608, + 0.028525207191705704, + 0.011745885945856571, + 0.07076297700405121, + -0.025580432265996933, + -0.11118869483470917, + -0.10003907233476639, + -0.043722379952669144, + -0.008765765465795994, + -0.006822725757956505, + -0.04730820283293724, + -0.11955779045820236, + -0.09862213581800461, + -0.03853139281272888, + 0.0023896920029073954, + -0.041229769587516785, + -0.022636178880929947, + 0.024545716121792793, + -0.08052252978086472, + 0.010279027745127678, + -0.012445442378520966, + -0.03674445301294327, + -0.1071145310997963, + -0.0006202134536579251, + -0.06331989169120789, + 0.05840051919221878, + -0.12046537548303604, + 0.0872955471277237, + 0.07467556744813919, + -0.08068172633647919, + 0.01609102636575699, + 0.12161879241466522, + 0.03257319703698158, + 0.07907970249652863, + -0.02755126543343067, + 0.039196718484163284, + -0.03132161125540733, + -0.0792648196220398, + -0.09649080038070679, + -0.011370870284736156, + -0.010930012911558151, + 0.004426732659339905, + -0.007170069497078657, + -0.030691402032971382, + 0.03184100612998009, + 0.03805062547326088, + -0.13655512034893036, + 0.010986090637743473, + 0.006983072031289339, + -0.10710833966732025, + 0.06222518905997276, + 0.0778782069683075, + 0.06503929197788239, + 0.019356658682227135, + -0.0032193621154874563, + 0.06227370351552963, + -0.08839190751314163, + -0.010437331162393093, + 0.09792817384004593, + -4.0526332218689645e-33, + 0.016986917704343796, + 0.010110710747539997, + 0.07672740519046783, + 0.05716928467154503, + 0.1066330149769783, + 0.020807689055800438, + -0.03358795866370201, + 0.02610795572400093, + -0.03936842083930969, + 0.07332295924425125, + 0.02954779379069805, + -0.05071227625012398, + 0.05236601084470749, + -0.03982245549559593, + 0.026258666068315506, + -0.01090924721211195, + -0.012977016158401966, + -0.049872029572725296, + 0.007360718213021755, + 0.019610712304711342, + -0.14522500336170197, + 0.02414114959537983, + 0.020291289314627647, + 0.030717231333255768, + -0.03871295601129532, + 0.006350975017994642, + 0.04769521206617355, + 0.02178783342242241, + -0.016014527529478073, + 0.029134880751371384, + 0.05095089599490166, + -0.03686833381652832, + 0.004173426888883114, + 0.0029509183950722218, + 0.029996821656823158, + -0.011811762116849422, + -0.016036005690693855, + 0.016310732811689377, + 0.042973365634679794, + -0.000952700327616185, + -0.0990477129817009, + 0.009429452009499073, + -0.005587189458310604, + -0.006004330236464739, + 0.02313491329550743, + 0.061793189495801926, + 0.029979391023516655, + 0.005005136597901583, + -0.06861203908920288, + -0.034943170845508575, + -0.03754230588674545, + 0.02822377160191536, + 0.027480415999889374, + 0.031093057245016098, + -0.013980569317936897, + -0.06366738677024841, + -0.0019140270305797458, + 0.0836111381649971, + 0.021691948175430298, + -0.0009230249561369419, + 0.11044328659772873, + 0.09100328385829926, + -0.01602681539952755, + -0.011839465238153934, + -0.03436581790447235, + 0.021929854527115822, + -0.039515167474746704, + 0.03739425539970398, + 0.08088457584381104, + -0.01653231307864189, + 0.05158113315701485, + 0.0589153990149498, + 0.07322757691144943, + 0.07911882549524307, + 0.006717689801007509, + 0.0415683388710022, + 0.01761038601398468, + -0.00036990593071095645, + 0.035565320402383804, + -0.08113295584917068, + 0.014039621688425541, + 0.06021667644381523, + -0.08247599750757217, + 0.055172987282276154, + -0.13152450323104858, + -0.03832410275936127, + -0.02480732835829258, + -0.06403537839651108, + -0.056331537663936615, + 0.03977251797914505, + -0.10364596545696259, + -0.003642501775175333, + -0.0642220675945282, + -0.0456259623169899, + -0.07538867741823196, + -2.304130787673662e-34, + 0.03272980451583862, + 0.0549582839012146, + -0.0657074972987175, + -0.14845138788223267, + 0.018386103212833405, + -0.012521222233772278, + -0.04759862646460533, + -0.0467393696308136, + -0.0003836093528661877, + 0.035312898457050323, + -0.11073388159275055, + -0.021874260157346725, + 0.024881606921553612, + -0.014879264868795872, + 0.01958312653005123, + 0.03326157480478287, + -0.020963618531823158, + 0.07962895184755325, + -0.08684186637401581, + 0.0905819907784462, + -0.009577428922057152, + 0.05667844042181969, + -0.03362743556499481, + 0.08584429323673248, + 0.03260701149702072, + 0.01586715504527092, + 0.006729522254317999, + 0.024940038099884987, + -0.09624739736318588, + -0.005435443948954344, + -0.06034140661358833, + -0.060796111822128296, + 0.030263645574450493, + 0.031244557350873947, + -0.020150700584053993, + -0.00031969096744433045, + -0.02053239196538925, + -0.12899282574653625, + -0.01127335149794817, + 0.002691577887162566, + 0.056414440274238586, + -0.006865221541374922, + 0.055428121238946915, + 0.060356006026268005, + 0.038691964000463486, + 0.011985697783529758, + -0.10151919722557068, + 0.025761697441339493, + -0.07046143710613251, + 0.027814634144306183, + -0.009611893445253372, + -0.06573708355426788, + -0.08628541231155396, + -0.050806302577257156, + 0.05480168014764786, + -0.0029895449988543987, + -0.05222227796912193, + 0.01642814837396145, + -0.07982482016086578, + 0.0073099383153021336, + 0.0006222003139555454, + 0.07186641544103622, + -0.025966648012399673, + 0.13510645925998688, + 0.02992255426943302, + -0.05309050902724266, + -0.02841908112168312, + -0.014010343700647354, + -0.03315819799900055, + 0.04790070280432701, + -0.07253182679414749, + 0.029950210824608803, + -0.05589647218585014, + 0.009870301932096481, + 0.027709349989891052, + 0.037179332226514816, + 0.04670090228319168, + 0.024340104311704636, + -0.0461406446993351, + 0.022274764254689217, + -0.06799805909395218, + -0.028572771698236465, + 0.018628641963005066, + 0.014798490330576897, + 0.06038982793688774, + 0.00846443884074688, + -0.038209352642297745, + 0.014186804182827473, + -0.04763868451118469, + 0.01789182797074318, + -0.03380672261118889, + 0.006211038213223219, + -0.06549252569675446, + 0.06728911399841309, + -0.04038621112704277, + -1.9028693287737042e-08, + 0.03094523958861828, + 0.012008391320705414, + -0.08975005149841309, + -0.030851364135742188, + 0.007638229057192802, + -0.11041595786809921, + -0.011858657002449036, + -0.07511693239212036, + -0.04673473536968231, + -0.027890393510460854, + 0.03966372832655907, + 0.05649227276444435, + 0.008622117340564728, + 0.07851046323776245, + -0.06278818100690842, + 0.02455974370241165, + 0.009117493405938148, + -0.005383219104260206, + -0.03699798882007599, + -0.023245761170983315, + -0.017126968130469322, + 0.007950549945235252, + 0.010811575688421726, + -0.02345931902527809, + 0.03765883296728134, + -0.027433523908257484, + -0.045139893889427185, + -0.016386134549975395, + 0.05899805575609207, + 0.07425526529550552, + 0.055502455681562424, + 0.03686540573835373, + -0.0013132266467437148, + 0.04614774510264397, + 0.009772781282663345, + -0.045969363301992416, + -0.05700986459851265, + 0.01334183569997549, + 0.0006968058878555894, + 0.08245912939310074, + -0.09036364406347275, + 0.013875256292521954, + -0.05457298085093498, + -0.018410267308354378, + 0.007071807514876127, + 0.06570626050233841, + 0.009397169575095177, + 0.03500095382332802, + -0.044797446578741074, + -0.09011586755514145, + -0.05522628873586655, + -0.10621563345193863, + 0.026140790432691574, + -0.004285849630832672, + 0.020943840965628624, + 0.024745425209403038, + 0.0021708228159695864, + 0.07656935602426529, + 0.016186675056815147, + -0.016539456322789192, + 0.06115315854549408, + 0.027458440512418747, + -0.05573854222893715, + -0.0021613910794258118 + ], + "picture-in-picture-bold||pip,pop-out,minimize,maximize": [ + 0.023296741768717766, + 0.05462424084544182, + -0.00877485703676939, + 0.06872913241386414, + 0.046324122697114944, + -0.011944436468183994, + 0.03933742642402649, + 0.06993064284324646, + -0.011959404684603214, + -0.034282367676496506, + 0.012906057760119438, + 0.0692637637257576, + 0.10277529060840607, + 0.03436184301972389, + 0.05949988216161728, + 0.011068923398852348, + 0.004121370147913694, + -0.004921223036944866, + -0.06454774737358093, + -0.09467145800590515, + -0.08761614561080933, + -0.09522221237421036, + 0.05295715853571892, + -0.01248506922274828, + -0.00988845992833376, + -0.00530008040368557, + -0.003960237838327885, + 0.017093170434236526, + 0.026213815435767174, + -0.08809724450111389, + -0.0026440024375915527, + 0.0011617699638009071, + 0.09322435408830643, + 0.0052008070051670074, + 0.04537488892674446, + 0.10468623042106628, + 0.00448860926553607, + -0.01809779368340969, + 0.007369552738964558, + 0.026674505323171616, + 0.026264406740665436, + -0.03124156966805458, + -0.018136041238904, + -0.09751217812299728, + 0.01967514120042324, + 0.0064795720390975475, + -0.053119149059057236, + -0.03469831123948097, + 0.0313420332968235, + -0.034658148884773254, + -0.0724254921078682, + -0.02573566511273384, + -0.08814235776662827, + 0.010899825021624565, + 0.04524664580821991, + -0.001427695620805025, + 0.01400015875697136, + -0.060290951281785965, + 0.09319273382425308, + -0.01021213922649622, + -0.02352028526365757, + 0.03587186336517334, + 0.022662583738565445, + 0.08005533367395401, + 0.06616894155740738, + 0.028295308351516724, + -0.024550873786211014, + -0.035713814198970795, + 0.008790580555796623, + -0.030284741893410683, + 0.007119069341570139, + -0.002390183974057436, + -0.0027783974073827267, + -0.08039724826812744, + 0.005543821956962347, + -0.07730381190776825, + 0.04399552196264267, + -0.018273111432790756, + -0.004152901470661163, + 0.009342796169221401, + 0.01432303711771965, + -0.014957576990127563, + -0.043885231018066406, + 0.009938628412783146, + 0.04929577559232712, + 0.014933292753994465, + -0.08370231091976166, + -0.0912897139787674, + 0.02566135860979557, + -0.07017724961042404, + -0.0956127867102623, + -0.06178392842411995, + -0.05251162126660347, + 0.13459186255931854, + -0.06253290176391602, + -0.040430694818496704, + 0.042325422167778015, + -0.10688617080450058, + -0.0774296224117279, + 0.10269802808761597, + 0.024938518181443214, + -0.02992795594036579, + 0.1081022322177887, + 0.03491809964179993, + 0.08037027716636658, + -0.00014937942614778876, + 0.012994742952287197, + 0.002278287196531892, + 0.05565398558974266, + -0.06547217071056366, + 0.04428340122103691, + -0.11264287680387497, + 0.043154772371053696, + -0.04979925602674484, + -0.020988289266824722, + -0.04547259211540222, + 0.013214333914220333, + 0.0013121864758431911, + 0.06986668705940247, + -0.011256891302764416, + 0.07157257199287415, + -0.03946259990334511, + -0.09554027020931244, + -0.04382219910621643, + -0.01726943626999855, + 0.0012037602718919516, + -0.0029051529709249735, + -1.740400936312985e-33, + 0.022331122308969498, + -0.03618145361542702, + 0.031102336943149567, + 0.08717573434114456, + 0.106943279504776, + 0.04511666297912598, + 0.04039939120411873, + -0.08779353648424149, + -0.08958501368761063, + 0.0018485172186046839, + 0.042525310069322586, + 0.017288194969296455, + -0.1158967986702919, + 0.10383348166942596, + 0.028547437861561775, + -0.04620533064007759, + -0.024871643632650375, + 0.07489043474197388, + -0.07745871692895889, + 0.024257520213723183, + -0.015022688545286655, + -0.0040818569250404835, + -0.04144959896802902, + -0.027033226564526558, + 0.007078675087541342, + -0.007305289153009653, + 0.0478438101708889, + -0.07973821461200714, + -0.13070276379585266, + 0.04050467908382416, + 0.0035851544234901667, + 0.023686174303293228, + 0.018204959109425545, + 0.04208273068070412, + -0.07133624702692032, + -0.06385061144828796, + -0.11168424785137177, + 0.005492241587489843, + 0.014645418152213097, + 0.055607687681913376, + -0.08919396996498108, + 0.00864688865840435, + -0.028189077973365784, + 0.012018319219350815, + -0.01259635854512453, + 0.12656107544898987, + -0.0009703532559797168, + 0.07801014930009842, + -0.0546865314245224, + -0.0011093626962974668, + 0.05946791172027588, + 0.009496418759226799, + -0.020205093547701836, + 0.04849310591816902, + -0.012014319188892841, + -0.08723370730876923, + -0.04592769965529442, + 0.0188515093177557, + 0.03751252964138985, + -0.03615723177790642, + 0.04990321397781372, + 0.06260683387517929, + -0.011472495272755623, + 0.04609771445393562, + 0.02248716540634632, + 0.0381929837167263, + 0.025273684412240982, + 0.04692385718226433, + -0.0359465554356575, + 0.06337369233369827, + -0.05826306343078613, + 0.11486908048391342, + 0.010345540940761566, + -0.046950336545705795, + 0.08266283571720123, + 0.007250733207911253, + 0.052325066179037094, + 0.0007355196285061538, + 0.04277936369180679, + -0.02887485735118389, + -0.06558559089899063, + 0.046640899032354355, + 0.03195410221815109, + -0.031234947964549065, + -0.08266636729240417, + -0.009770399890840054, + 0.08892254531383514, + -0.020147452130913734, + -0.08957600593566895, + -0.02749527059495449, + -0.08463584631681442, + 0.07903975248336792, + 0.001011823071166873, + 0.010362887755036354, + -0.05685102194547653, + 1.7220220821378785e-33, + 0.1119067519903183, + 0.1015518382191658, + -0.02617729641497135, + -0.051881611347198486, + -0.04439445957541466, + 0.01334009412676096, + 0.10924813151359558, + 0.028380414471030235, + 0.043227117508649826, + 0.0055474271066486835, + 0.016160782426595688, + -0.0014131044736132026, + -0.013867019675672054, + -0.043236467987298965, + -0.04227113723754883, + 0.00925622321665287, + 0.006930454168468714, + -0.029495462775230408, + -0.08109969645738602, + 0.01089934166520834, + -0.07700212299823761, + -0.04016508162021637, + -0.0453481450676918, + 0.07839988172054291, + -0.05796757712960243, + 0.052663128823041916, + 0.03988536819815636, + 0.004737565293908119, + -0.01296640932559967, + -0.051350221037864685, + -0.04596230387687683, + 0.015108488500118256, + -0.015582447871565819, + 0.0304843932390213, + -0.09211631864309311, + 0.04792482405900955, + 0.010820595547556877, + -0.02968600019812584, + 0.026251599192619324, + 0.05647219717502594, + 0.012761305086314678, + 0.02483147196471691, + -0.014464096166193485, + 0.029231734573841095, + -0.03638651967048645, + 0.007419071160256863, + 0.04415622726082802, + -0.08145861327648163, + 0.002021310618147254, + 0.07390846312046051, + -0.04356052353978157, + -0.036801498383283615, + 0.00861397199332714, + 0.03984484076499939, + -0.043397728353738785, + -0.04174182564020157, + -0.05411290004849434, + 0.04080146551132202, + -0.04200645163655281, + -0.006638512481004, + 0.013233544304966927, + -0.0236822459846735, + -0.0585431233048439, + -0.024822374805808067, + -0.03841663897037506, + 0.0010951326694339514, + -0.01573997363448143, + -0.046743135899305344, + 0.037607211619615555, + -0.01657864823937416, + 0.07292162626981735, + -0.018064938485622406, + 0.08657681196928024, + -0.003033712971955538, + 0.046916499733924866, + -0.002067186404019594, + 0.02311006747186184, + 0.03455966338515282, + 0.07679896801710129, + 0.009537012316286564, + -0.03664560988545418, + -0.06728490442037582, + 0.016459651291370392, + 0.061918213963508606, + -0.029527047649025917, + 0.04881812259554863, + -0.041983019560575485, + -0.002066259505227208, + 0.0818992629647255, + 0.009590056724846363, + -0.0742594301700592, + 0.019650109112262726, + 0.0819152295589447, + -0.039586540311574936, + 0.05722598358988762, + -2.005038624020017e-08, + -0.02268536016345024, + -0.08875253796577454, + -0.012487354688346386, + -0.004714657086879015, + -0.030994875356554985, + -0.007363982032984495, + 0.006606139242649078, + 0.0317055881023407, + -0.035932090133428574, + -0.08544547110795975, + 0.08408669382333755, + 0.05985205993056297, + -0.05373866856098175, + -0.03506898134946823, + -0.008482213132083416, + 0.060730982571840286, + -0.05738582834601402, + 0.07220341265201569, + 0.010362702421844006, + -0.041910186409950256, + -0.06500034034252167, + -0.010574053972959518, + 0.056771170347929, + 0.002872726647183299, + -0.07967447489500046, + -0.0058371927589178085, + -0.06178073212504387, + -0.0008136657415889204, + 0.03906523808836937, + 0.00828495156019926, + -0.004352015908807516, + -0.0014326340751722455, + 0.03871477022767067, + 0.047777965664863586, + -0.015565372072160244, + -0.003891234053298831, + -0.09123968333005905, + -0.010044514201581478, + -0.05672203376889229, + 0.056770775467157364, + -0.04229947179555893, + -0.035296741873025894, + 0.02005201205611229, + -0.0521855354309082, + 0.024864206090569496, + 0.04346921294927597, + 0.12951838970184326, + -0.017098424956202507, + -0.050343722105026245, + -0.006763164419680834, + 0.0058096908032894135, + 0.00499727064743638, + 0.03249279037117958, + 0.0678272396326065, + -0.027304740622639656, + -0.10455707460641861, + 0.07404668629169464, + 0.013308089226484299, + -0.013378596864640713, + 0.07259375602006912, + -0.027896065264940262, + 0.07302901148796082, + 0.03411492705345154, + 0.02013365924358368 + ], + "piggy-bank-bold||savings,deposit,money,coins": [ + 0.07056418061256409, + 0.06919901072978973, + -0.034919388592243195, + -0.006140715908259153, + -0.047708287835121155, + -0.027803361415863037, + 0.04843423143029213, + -0.016622455790638924, + 0.01622825860977173, + -0.005321540869772434, + 0.04263950511813164, + -0.041921090334653854, + 0.02039477415382862, + -0.02353971265256405, + 0.008979931473731995, + -0.019142378121614456, + 0.006792476866394281, + 0.014608231373131275, + -0.007764118257910013, + 0.010308809578418732, + 0.017902357503771782, + -0.069600909948349, + -0.01757863163948059, + 0.026599951088428497, + 0.05437168478965759, + -0.01982700824737549, + 0.045497603714466095, + 0.011274083517491817, + -0.047838110476732254, + -0.07180054485797882, + 0.01733914576470852, + 0.050478801131248474, + -0.031058738008141518, + -0.11857224255800247, + 0.056648191064596176, + 0.05423228070139885, + 0.022595452144742012, + 0.06935359537601471, + 0.08173523098230362, + -0.03418247401714325, + -0.03976159542798996, + -0.17154820263385773, + 0.030029036104679108, + -0.02384321019053459, + -0.06003429740667343, + 0.02688925713300705, + 0.02636883221566677, + 0.02043844386935234, + 0.0018134071724489331, + 0.0182978343218565, + 0.08318951725959778, + -0.06656300276517868, + -0.08007127046585083, + -0.014927932061254978, + -0.025959724560379982, + 0.0013929001288488507, + -0.02753809094429016, + 0.008974987082183361, + 0.034852128475904465, + -0.06054878234863281, + 0.02126220427453518, + 0.0807575210928917, + 0.006734413094818592, + 0.06900607794523239, + 0.023849086835980415, + -0.020659448578953743, + -0.007601679768413305, + 0.03949549049139023, + -0.04459396004676819, + 0.001395385479554534, + 0.021257884800434113, + -0.08308500051498413, + -0.0691552683711052, + -0.11596553772687912, + -0.05804673582315445, + 0.010044798254966736, + 0.08942712843418121, + 0.013885396532714367, + 0.057948894798755646, + -0.08165393024682999, + -0.05877237766981125, + -0.07716185599565506, + -0.004228872712701559, + -0.03014126420021057, + 0.012525525875389576, + 0.035258326679468155, + -0.08756577968597412, + -0.03487022593617439, + -0.015873385593295097, + -0.0805777832865715, + -0.021112997084856033, + -0.007189698982983828, + 0.03653063252568245, + 0.015434792265295982, + 0.029551660642027855, + -0.030624981969594955, + 0.0062424298375844955, + 0.05131782963871956, + -0.04354998096823692, + 0.08053546398878098, + 0.12021628767251968, + 0.0905536338686943, + 0.08988987654447556, + 0.04533751681447029, + 0.09611009806394577, + -0.017303558066487312, + 0.0009292959584854543, + -0.004510961938649416, + 0.055979374796152115, + -0.03910428285598755, + -0.04702204465866089, + -0.015327309258282185, + 0.020728306844830513, + 0.0057518272660672665, + -0.030015766620635986, + 0.04360656067728996, + -0.1344599425792694, + -0.06776925921440125, + 0.07084313035011292, + 0.05056207254528999, + 0.09967473894357681, + 0.0966670885682106, + -0.06118036061525345, + -0.027987144887447357, + -0.050348833203315735, + -0.011435114778578281, + 0.037857409566640854, + -3.302304524821544e-33, + -0.01260689552873373, + 0.02721940167248249, + -0.017186155542731285, + 0.010768185369670391, + 0.041798099875450134, + 0.018426503986120224, + -0.046111732721328735, + 0.00239711650647223, + -0.05411818251013756, + 0.09238963574171066, + -0.01153163518756628, + -0.002772666048258543, + 0.006228190381079912, + 0.057044193148612976, + -0.06205566227436066, + -0.019030682742595673, + -0.02397110126912594, + -0.048374805599451065, + 0.039967503398656845, + 0.01963932067155838, + -0.07781125605106354, + 0.07923434674739838, + -0.05062885209918022, + 0.009442475624382496, + 0.04729830101132393, + -0.042151883244514465, + -0.038979772478342056, + -0.07371437549591064, + 0.011624768376350403, + 0.05566631257534027, + 0.026117898523807526, + -0.02714824303984642, + 0.01263186801224947, + -0.058643095195293427, + -0.0707252100110054, + -0.0360998772084713, + -0.008988005109131336, + -0.07425586134195328, + 0.05571344122290611, + -0.06397072970867157, + 0.0395377017557621, + -0.06053999066352844, + 0.01609421893954277, + 0.06714808940887451, + -0.05775861814618111, + 0.14967401325702667, + 0.01427026279270649, + 0.061869729310274124, + -0.048478685319423676, + 0.016627691686153412, + 0.0006435707327909768, + -0.0501345731317997, + -0.09907010197639465, + 0.02729211188852787, + -0.015614880248904228, + -0.1309170126914978, + -0.022511841729283333, + 0.014745794236660004, + -0.06195073574781418, + -0.017422731965780258, + 0.06354518234729767, + 0.0690089538693428, + -0.05662262812256813, + -0.014865527860820293, + -0.059351369738578796, + 0.03310001268982887, + -0.019786333665251732, + 0.056022483855485916, + -0.006861727684736252, + 0.04278478026390076, + -0.06523962318897247, + 0.061426836997270584, + 0.02016732469201088, + 0.009422672912478447, + 0.006784869357943535, + -0.06911123543977737, + 0.06005268543958664, + 0.008437455631792545, + -0.04321844503283501, + -0.022719668224453926, + -0.010376030579209328, + 0.013566465117037296, + -0.08684012293815613, + 0.016709281131625175, + -0.01826382428407669, + 0.09896793216466904, + 0.06344965100288391, + -0.13970685005187988, + 0.03839759901165962, + -0.06299511343240738, + -0.03389555215835571, + -0.008275498636066914, + 0.03224587067961693, + -0.03111552819609642, + -0.04206524044275284, + 6.905056313999145e-34, + -0.028222324326634407, + -0.016334429383277893, + 0.008479838259518147, + 0.05898835510015488, + -0.010308665223419666, + 0.045176658779382706, + 0.10164931416511536, + -0.06098982319235802, + 0.03961987420916557, + 0.005882724653929472, + -0.08297193050384521, + 0.009087583050131798, + -0.03463602438569069, + -0.005413639359176159, + 0.028857696801424026, + -0.045940060168504715, + 0.008404886350035667, + -0.05258329585194588, + 0.002756803762167692, + -0.010038405656814575, + -0.08276369422674179, + 0.015738284215331078, + 0.010707327164709568, + 0.07957065850496292, + 0.0139858303591609, + 0.028473762795329094, + -0.03481779992580414, + -0.042944930493831635, + -0.010407972149550915, + 0.08775646984577179, + -0.03199125453829765, + -0.036107368767261505, + 0.026735207065939903, + 0.04314156249165535, + -0.09144917130470276, + -0.004249793477356434, + 0.0695551261305809, + -0.05122997984290123, + -0.07252448797225952, + 0.00027583970222622156, + 0.0015442740404978395, + -0.03549372777342796, + -0.06959158182144165, + 0.02168782614171505, + 0.02929069660604, + 0.059525445103645325, + -0.0031464032363146544, + -0.004239135421812534, + 0.0021872136276215315, + 0.04472007602453232, + 0.039421211928129196, + -0.03892222046852112, + -4.291280129109509e-05, + 0.04888268560171127, + -0.08417133241891861, + 0.11756876111030579, + 0.05587996169924736, + -0.038701266050338745, + 0.04510197788476944, + -0.0037877841386944056, + -0.047476429492235184, + 0.07335338741540909, + -0.00034470160608179867, + 0.08803388476371765, + -0.022359970957040787, + -0.05979963019490242, + -0.04336153343319893, + -0.03351566568017006, + 0.08314931392669678, + -0.019789598882198334, + -0.0270838625729084, + 0.04742955043911934, + -0.030067116022109985, + -0.010284671559929848, + 0.0374024473130703, + 0.10301665961742401, + 0.03439236432313919, + -0.078555166721344, + -0.004581976216286421, + -0.024900443851947784, + -0.041366830468177795, + 0.023495465517044067, + 0.05449550226330757, + 0.03579375892877579, + 0.046896521002054214, + -0.05410673841834068, + -0.023280244320631027, + 0.055047813802957535, + -0.01240609772503376, + -0.03938348591327667, + 0.002839897759258747, + 0.027126053348183632, + -0.014086064882576466, + 0.04504568502306938, + -0.0397646427154541, + -1.723110010232176e-08, + -0.005492473021149635, + -0.026530331000685692, + 0.006476604379713535, + -0.029423708096146584, + 0.0648297443985939, + -0.01962575688958168, + 0.02093028463423252, + -0.0645081028342247, + -0.009699162095785141, + 0.06569705903530121, + -0.015982000157237053, + 0.07114995270967484, + -0.11539119482040405, + -0.07485523074865341, + -0.0659933090209961, + 0.08597559481859207, + 0.007488795556128025, + -0.007707019802182913, + -0.026466399431228638, + 0.006292460951954126, + 0.044507451355457306, + 0.051263824105262756, + -7.085564720910043e-05, + -0.06437446922063828, + 0.014356568455696106, + 0.010897915810346603, + 0.011838056147098541, + 0.10003296285867691, + 0.038550227880477905, + -0.02406168542802334, + 0.01795954629778862, + 0.06710550934076309, + 0.029034607112407684, + -0.06569807231426239, + -0.03523115813732147, + 0.010085088200867176, + 0.016730668023228645, + 0.06221981346607208, + 0.04202139750123024, + 0.053546275943517685, + -0.04611273109912872, + -0.11140981316566467, + -0.005557253025472164, + -0.060160063207149506, + -0.003930435050278902, + -0.041820790618658066, + 0.025416167452931404, + 0.007328900508582592, + 0.030898334458470345, + -0.09681874513626099, + -0.04108419641852379, + 0.04480081796646118, + 0.0884111076593399, + 0.08207117021083832, + 0.055898819118738174, + -0.04560026898980141, + -0.09734469652175903, + 0.021249661222100258, + 0.022162552922964096, + -0.04826299101114273, + 0.10057584941387177, + -0.013752286322414875, + 0.05338195338845253, + -0.06559048593044281 + ], + "pill-bold||capsule,medicine,rx,pharmacy,pharmacist,pharmaceuticals,prescription,drugs": [ + 0.007645603269338608, + -0.04659418761730194, + -0.06617557257413864, + 0.012519105337560177, + -0.0205918550491333, + -0.020985735580325127, + 0.09517344832420349, + 0.10116034001111984, + 0.02908140979707241, + -0.042315103113651276, + 0.007601269520819187, + 0.030938666313886642, + 0.05280645564198494, + 0.005450468510389328, + -0.02156255953013897, + 0.005449451971799135, + 0.03728507086634636, + 0.023276761174201965, + -0.008155262097716331, + 0.06292682886123657, + 0.021045539528131485, + 0.08900190889835358, + 0.08443078398704529, + 0.1289902925491333, + 0.0206633098423481, + 0.07303550839424133, + 0.06007170304656029, + -0.002469837199896574, + -0.018376285210251808, + -0.03313012421131134, + 0.04500531032681465, + 0.061976589262485504, + 0.11244277656078339, + -0.032506875693798065, + 0.03549730032682419, + 0.029077034443616867, + -0.07404729723930359, + 0.01279161125421524, + 0.08792655169963837, + 0.04318398982286453, + 0.030301298946142197, + -0.07761245965957642, + -0.029110681265592575, + 0.05816793069243431, + 0.010148756206035614, + -0.07572059333324432, + -0.04151879996061325, + 0.030435245484113693, + 0.04399018734693527, + 0.1020243912935257, + -0.05479731410741806, + -0.16556473076343536, + -0.0781935378909111, + 0.08418244868516922, + 0.001906106248497963, + -0.02674672193825245, + -0.1479511708021164, + -0.0391976498067379, + -0.02373450994491577, + 0.012434377335011959, + -0.0843677669763565, + -0.025710804387927055, + 0.07104836404323578, + 0.10635198652744293, + -0.041709545999765396, + 0.09287142008543015, + 0.015730183571577072, + -0.0015333617338910699, + 0.0422360859811306, + -0.010457124561071396, + 0.04816528037190437, + 0.012018409557640553, + 0.01673266477882862, + 0.042935971170663834, + -0.05474548414349556, + -0.046772550791502, + 0.1192769855260849, + 0.001074315863661468, + -0.0006101896869949996, + -0.03949923440814018, + -0.03081865981221199, + -0.005937436129897833, + -0.05283963307738304, + 0.04554324969649315, + 0.05264918506145477, + 0.062209490686655045, + -0.01930517703294754, + -0.0342397578060627, + -0.03762798011302948, + -0.03584500029683113, + -0.012022024020552635, + 0.001220723264850676, + 0.0575626976788044, + -0.0026429237332195044, + -0.05858713388442993, + -0.07714401930570602, + -0.011369462125003338, + 0.005857653450220823, + -0.05735919997096062, + 0.017810514196753502, + 0.00853115413337946, + 0.02472757361829281, + -0.025618823245167732, + 0.022076409310102463, + -0.060103729367256165, + -0.06467897444963455, + 0.001192652271129191, + -0.059306349605321884, + -0.025284690782427788, + -0.01837734505534172, + -0.061524275690317154, + -0.04847298935055733, + -0.03189736604690552, + -0.03532493859529495, + -0.09169943630695343, + -0.017550533637404442, + -0.02721550688147545, + 0.011641111224889755, + 0.05243048071861267, + 0.019120220094919205, + -0.08441654592752457, + -0.049558091908693314, + -0.011221603490412235, + -0.11840546131134033, + -0.0016245287843048573, + -0.026395343244075775, + 0.0019613616168498993, + -8.338787947420377e-34, + -0.05957507714629173, + 0.046171218156814575, + 0.005819698330014944, + 0.10595038533210754, + -0.01378678996115923, + 0.03511682152748108, + -0.03492312133312225, + -0.07725056260824203, + -0.0833442434668541, + -0.010898217558860779, + -0.050874367356300354, + 0.05855794996023178, + -0.036702245473861694, + 0.12500356137752533, + 0.0273139588534832, + 0.001859313459135592, + 0.028503915295004845, + -0.0003078078443650156, + 0.00787406601011753, + 0.0013431665720418096, + -0.009951191022992134, + 0.12442035973072052, + -0.01906425878405571, + -0.0064501333981752396, + -0.1061810553073883, + -0.013997075147926807, + -0.00202021817676723, + 0.004938851576298475, + 0.016528720036149025, + 0.010490179061889648, + 0.03516416996717453, + 0.0226194579154253, + 0.039301399141550064, + 0.009674773551523685, + -0.062041137367486954, + 0.02439146861433983, + -0.07965666800737381, + -0.07786524295806885, + -0.0013351045781746507, + 0.016843272373080254, + -0.07570762932300568, + 0.04622269049286842, + -0.015029148198664188, + 0.030073311179876328, + 0.06003832444548607, + 0.08041278272867203, + -0.05114620923995972, + 0.0043239654041826725, + 0.020245157182216644, + 0.028726322576403618, + -0.029605425894260406, + 0.014313746243715286, + 0.048227954655885696, + 0.0004767288628499955, + -0.010077949613332748, + -0.015130317769944668, + -0.08702399581670761, + 0.0973510891199112, + 0.01141110248863697, + 0.02672288939356804, + 0.03210859373211861, + 0.04901009425520897, + 0.02874496392905712, + 0.01415551733225584, + 0.004332393407821655, + 0.07956234365701675, + -0.05558285489678383, + -0.05742544308304787, + 0.0013236625818535686, + 0.06350842863321304, + 0.028271140530705452, + 0.05480841174721718, + 0.06908462941646576, + 0.05951455980539322, + 0.07592359185218811, + -0.03230748325586319, + -0.007093122228980064, + -0.037104684859514236, + 0.011680022813379765, + -0.0499948151409626, + -0.09448034316301346, + -0.05693024769425392, + -0.05308947339653969, + 0.15194520354270935, + -0.026806961745023727, + 0.030552934855222702, + 0.004241781309247017, + -0.046740371733903885, + 0.02330642007291317, + -0.008254516869783401, + -0.09940369427204132, + -0.07226276397705078, + -0.045971207320690155, + -0.021412905305624008, + -0.0946604460477829, + -1.739889963612362e-33, + 0.047874871641397476, + -0.004137821961194277, + -0.041389305144548416, + 0.00847924780100584, + -0.01996721513569355, + 0.017228687182068825, + 0.02708129584789276, + -0.009393190033733845, + 0.03987516462802887, + 0.046371325850486755, + 0.04368477687239647, + -0.006169943604618311, + -0.10409270972013474, + -0.026406122371554375, + -0.03505066782236099, + 0.00219575222581625, + 0.0643099844455719, + -0.01440408080816269, + -0.06062992662191391, + 0.0060180844739079475, + -0.06549525260925293, + -0.0541221909224987, + -0.03157764673233032, + 0.08050110191106796, + 0.020254993811249733, + 0.053807806223630905, + 0.10450134426355362, + 0.017460590228438377, + 0.002492328640073538, + -0.03877183794975281, + -0.06864935159683228, + 0.014789773151278496, + -0.026386413723230362, + 0.000726030848454684, + -0.05994963273406029, + 0.09234313666820526, + 0.013496378436684608, + -0.06666912883520126, + -0.03414202481508255, + -0.04223090410232544, + -0.02765926904976368, + -0.023165807127952576, + 0.010666352696716785, + 0.05541758984327316, + -0.008362819440662861, + -0.06544923037290573, + -0.06554531306028366, + -0.01162930391728878, + -0.008953927084803581, + 0.04329327493906021, + -0.05456595867872238, + 0.016035744920372963, + 0.010380178689956665, + 0.023638758808374405, + -0.00609469274058938, + -0.06497036665678024, + -0.08102528750896454, + -0.04372837394475937, + 0.04683315381407738, + -0.02329918183386326, + 0.01677790842950344, + 0.013840042985975742, + -0.022027982398867607, + 0.047743089497089386, + -0.030488144606351852, + -0.09211428463459015, + 0.004605285823345184, + 0.006913941819220781, + 0.02478526160120964, + 0.02738773822784424, + 0.10426278412342072, + 0.006062558852136135, + 0.03510516509413719, + 0.018371090292930603, + -0.021996889263391495, + -0.03863530978560448, + -0.031887348741292953, + -0.08812816441059113, + -0.03889262303709984, + 0.029181092977523804, + 0.05778716504573822, + -0.12063366919755936, + -0.03281119093298912, + 0.13677772879600525, + -0.06520643085241318, + 0.018093902617692947, + 0.020329896360635757, + -0.04796764254570007, + 0.01692892424762249, + -0.012341117486357689, + 0.02721841260790825, + -0.0018698651110753417, + -0.07041608542203903, + 0.06329739093780518, + 0.001448207302019, + -2.2406862143498074e-08, + 0.09927329421043396, + -0.0444297157227993, + 0.02889908477663994, + -0.0224732868373394, + 0.04530997946858406, + -0.017515357583761215, + -0.07842105627059937, + -0.06952172517776489, + -0.03679078444838524, + 0.052924517542123795, + 0.023878656327724457, + 0.05684870854020119, + -0.05151502788066864, + -0.061287976801395416, + -0.01969335973262787, + 0.037189144641160965, + -0.05830017477273941, + 0.05781463533639908, + 0.002546780975535512, + -0.05557488277554512, + -0.11931972205638885, + 0.021132027730345726, + 0.03510094806551933, + -0.04052865505218506, + 0.06632149964570999, + 0.0009206538088619709, + -0.011296700686216354, + -0.025111379101872444, + 0.05694754421710968, + 0.015064761973917484, + 0.06790169328451157, + 0.0389702245593071, + 0.10118358582258224, + 0.002435101894661784, + -0.08043026179075241, + -0.03300615772604942, + 0.005543527193367481, + 0.059585459530353546, + 0.0010350379161536694, + 0.05115523189306259, + -0.024850746616721153, + -0.058489300310611725, + -0.00054954580264166, + 0.021779943257570267, + -0.003925560507923365, + -0.008598050102591515, + 0.05473332479596138, + 0.023934923112392426, + 0.0013532462762668729, + -0.10910013318061829, + -0.01581440679728985, + 0.015777522698044777, + -0.0038913267198950052, + -0.006530436687171459, + -0.07479823380708694, + -0.028539564460515976, + -0.03566160425543785, + 0.005618181079626083, + 0.0028616294730454683, + -0.009698854759335518, + 0.01568940468132496, + -0.030958514660596848, + 0.07040804624557495, + -0.0016214201459661126 + ], + "ping-pong-bold||*new*,sports,paddle": [ + 0.056915026158094406, + 0.032969966530799866, + 0.041130710393190384, + -0.05175356566905975, + -0.0066352481953799725, + -0.03955298662185669, + 0.11377263069152832, + -0.07123589515686035, + 0.0055744280107319355, + 0.07565469294786453, + 0.015244323760271072, + -0.026465829461812973, + -0.016923170536756516, + -0.03134371340274811, + 0.03901136294007301, + -0.01809576340019703, + 0.025591153651475906, + -0.00015490305668208748, + 0.020209617912769318, + -0.06289327889680862, + 0.037545133382081985, + 0.02025184966623783, + 0.014292891137301922, + -0.00710648950189352, + -0.07999446988105774, + 0.09816480427980423, + 0.05149666219949722, + 0.06625077873468399, + -0.049180906265974045, + -0.09590452909469604, + -0.0954539030790329, + 0.018615469336509705, + 0.05051363259553909, + 0.0488448329269886, + 0.03553984314203262, + 0.01072758436203003, + 0.02976309135556221, + 0.02461710013449192, + -0.04819188266992569, + -0.04605787247419357, + 0.02141682803630829, + -0.11778593063354492, + 0.058048151433467865, + 0.05191674456000328, + -0.0017797630280256271, + 0.06695529818534851, + -0.03899253159761429, + -0.013926946558058262, + -0.013464885763823986, + 0.07759494334459305, + 0.011216570623219013, + -0.09510094672441483, + -0.020415563136339188, + -0.031227143481373787, + 0.11140472441911697, + 0.04499153792858124, + -0.05921807885169983, + 0.017932841554284096, + 0.036136697977781296, + -0.04457477480173111, + 0.0013976889895275235, + 0.024853810667991638, + -0.04495585709810257, + 0.06948616355657578, + -0.008727731183171272, + -0.09664468467235565, + -0.008984394371509552, + 0.019946519285440445, + -0.05910620093345642, + 0.08283095806837082, + 0.026839492842555046, + 0.041848521679639816, + -0.0186600461602211, + 0.037075307220220566, + -0.017823556438088417, + 0.05120092257857323, + 0.005906594451516867, + 0.021069811657071114, + 0.010849091224372387, + -0.013094082474708557, + -0.07660172879695892, + -0.04691501706838608, + -0.03534115478396416, + 0.03869085758924484, + 0.025168925523757935, + -0.0065550957806408405, + -0.05440306290984154, + -0.0901959240436554, + -0.0019467687234282494, + -0.026724720373749733, + -0.11954764276742935, + -0.005295999348163605, + 0.006408482789993286, + 0.08129709959030151, + -0.1428173929452896, + 0.0598515160381794, + -0.024096300825476646, + -0.021148106083273888, + -0.05722040683031082, + 0.09884272515773773, + -0.004084927961230278, + 0.06744043529033661, + 0.07684832811355591, + 0.03289235755801201, + 0.024917922914028168, + -0.0013069282285869122, + -0.025284303352236748, + 0.010177181102335453, + 0.09871770441532135, + 0.06511135399341583, + -0.0569072961807251, + -0.03293905779719353, + 0.008501777425408363, + -0.050745297223329544, + -0.015595381148159504, + 0.004350830800831318, + -0.094087153673172, + 0.005570311564952135, + 0.09058418869972229, + 0.023250261321663857, + 0.030925003811717033, + -0.026041140779852867, + -0.05995345860719681, + -0.003757781581953168, + -0.037102553993463516, + -0.0013714605011045933, + 0.027731306850910187, + -3.122164423661844e-33, + 0.037782128900289536, + 0.03111761249601841, + 0.0331498384475708, + 0.04136158898472786, + -0.008433094248175621, + -0.07005522400140762, + -0.030885575339198112, + -0.06787688285112381, + -0.02990737557411194, + 0.04091712832450867, + 0.008733813650906086, + 0.03787257894873619, + -0.041579071432352066, + 0.06840915977954865, + 0.12007347494363785, + -0.0415106937289238, + 0.04692889004945755, + -0.061414990574121475, + -0.03621213883161545, + 0.02312634140253067, + -0.015373955480754375, + 0.045441970229148865, + 0.02533734031021595, + -0.05008227378129959, + -0.008563550189137459, + 0.02288086526095867, + 0.0810992568731308, + -0.07630817592144012, + -0.008172543719410896, + 0.06164839491248131, + 0.04544855281710625, + -0.027611002326011658, + 0.04961535334587097, + -0.016572164371609688, + -0.041886359453201294, + -0.0013085477985441685, + -0.022583551704883575, + -0.010530952364206314, + -0.05977901071310043, + 0.041865624487400055, + -0.0567617192864418, + -0.12417928129434586, + -0.09154507517814636, + -0.015689145773649216, + -0.010735766030848026, + -0.00854344479739666, + -0.022929640486836433, + -0.033634983003139496, + -0.04898592457175255, + 0.034518830478191376, + 0.024170493707060814, + -0.015918204560875893, + 0.006335370242595673, + 0.003719485830515623, + -0.029980424791574478, + -0.06005752459168434, + 0.03355759382247925, + 0.049517951905727386, + -0.00034383879392407835, + -0.04386226460337639, + 0.05018363520503044, + 0.03138020262122154, + 0.08976105600595474, + 0.0008215725538320839, + 0.003792023751884699, + 0.05878004431724548, + 0.035436999052762985, + -0.0032891856972128153, + 0.0377940908074379, + -0.028129497542977333, + -0.02970942296087742, + 0.04513450339436531, + -0.018842661753296852, + 0.003227589651942253, + -0.04467276856303215, + 0.024073224514722824, + -0.010403790511190891, + -0.02004219777882099, + 0.028417162597179413, + -0.052910104393959045, + -0.07419762015342712, + 0.003880415577441454, + -0.0707898661494255, + 0.06859905272722244, + -0.02274627797305584, + -0.019162915647029877, + 0.05072181299328804, + -0.08772511780261993, + -0.0257249902933836, + 0.04222584888339043, + -0.16845786571502686, + 0.0031303989235311747, + -0.06563480943441391, + 0.004861094057559967, + -0.07117907702922821, + 4.015902421319126e-34, + 0.03598719462752342, + 0.021791787818074226, + -0.04802989959716797, + 0.026221295818686485, + -0.046054404228925705, + -0.006834980100393295, + 0.11142106354236603, + 0.049696605652570724, + -0.011776885949075222, + -0.014209901914000511, + -0.07211312651634216, + -0.05848056077957153, + -0.03600231930613518, + -0.029599925503134727, + 0.0517391674220562, + 0.045434072613716125, + -0.022999918088316917, + 0.10421230643987656, + 0.01485311146825552, + 0.07539767026901245, + -0.03612055629491806, + -0.0032083431724458933, + -0.050236672163009644, + 0.046004995703697205, + 0.029245881363749504, + 0.010453418828547001, + 0.09931594878435135, + -0.007880149409174919, + -0.15279141068458557, + -0.0119938300922513, + -0.013278566300868988, + 0.04097893461585045, + 0.1003975123167038, + 0.08177920430898666, + -0.08303407579660416, + 0.06885264068841934, + 0.09294736385345459, + -0.03983628749847412, + 0.009829951450228691, + 0.0004896369646303356, + 0.07373740524053574, + -0.01911063864827156, + -0.0033716431353241205, + 0.08831167221069336, + -0.012912495993077755, + -0.011415020562708378, + -0.0437176488339901, + -0.00957733578979969, + -0.08300748467445374, + 0.104243203997612, + 0.0824536457657814, + -0.06157127395272255, + -0.020778436213731766, + -0.03555670380592346, + 0.01200852170586586, + -0.010584679432213306, + -0.06035371869802475, + -0.03522530198097229, + -0.06652599573135376, + -0.010141872800886631, + -0.0501629114151001, + 0.012330419383943081, + -0.10222240537405014, + 0.12546655535697937, + 0.0624193474650383, + 0.0006261742673814297, + -0.002961193211376667, + -0.007237336598336697, + -0.047747377306222916, + -0.039091601967811584, + -0.022059347480535507, + 0.04169358313083649, + -0.054642628878355026, + 0.025067506358027458, + 0.006625866983085871, + -0.018855245783925056, + 0.03131752088665962, + 0.0834035575389862, + -0.024800796061754227, + 0.0639818012714386, + -0.08681332319974899, + 0.01396846305578947, + -0.013228697702288628, + 0.024154813960194588, + -0.004708897788077593, + 0.04050701484084129, + -0.015189101919531822, + 0.05615675821900368, + -0.018900252878665924, + 0.024775315076112747, + 0.06712260097265244, + 0.08279155939817429, + -0.04046226665377617, + 0.041650429368019104, + -0.06140581890940666, + -2.024440881598366e-08, + -0.025745511054992676, + -0.0033501763828098774, + -0.093485526740551, + 0.0552799254655838, + 0.009125009179115295, + 0.030461959540843964, + -0.02641396038234234, + -0.08992686867713928, + 0.011761638335883617, + -0.047708962112665176, + 0.025719283148646355, + -0.005514298565685749, + -0.020864423364400864, + 0.032586999237537384, + 0.03965069726109505, + 0.061545517295598984, + -0.04970771074295044, + 0.029023461043834686, + -0.09503348171710968, + -0.002644235733896494, + -0.04794655367732048, + 0.051690276712179184, + 0.00924069993197918, + 0.024136411026120186, + -0.013344771228730679, + -0.019306635484099388, + -0.09121932834386826, + -0.07252305001020432, + -0.0063759577460587025, + -0.0013892637798562646, + 0.011636224575340748, + 0.059611838310956955, + -0.018116826191544533, + -0.04130876436829567, + -0.029086174443364143, + 0.0431966558098793, + 0.006521729752421379, + 0.021970096975564957, + 0.029307344928383827, + 0.08902943879365921, + -0.11309836804866791, + 0.030581669881939888, + -0.018959738314151764, + -0.034626979380846024, + -0.030901547521352768, + -0.005536939483135939, + -0.005262360442429781, + -0.0535021536052227, + -0.09060931950807571, + -0.0947367250919342, + -0.04470369219779968, + 0.0535174123942852, + 0.058550454676151276, + -0.011037423275411129, + -0.025434058159589767, + 0.0820237472653389, + 0.031121831387281418, + 0.05031122639775276, + -0.033682722598314285, + 0.019575083628296852, + 0.0970321074128151, + -0.05035579949617386, + -0.02314915508031845, + 0.0059830788522958755 + ], + "pint-glass-bold||*new*,water,beverage,drinks,beverages,food,dining": [ + 0.007648609112948179, + -0.06853009015321732, + 0.005201111081987619, + 0.035038210451602936, + 0.0417180098593235, + -0.04958111792802811, + 0.1416287124156952, + -0.05891142040491104, + 0.004690860398113728, + -0.03218347951769829, + 0.009632447734475136, + -0.009685304947197437, + -0.06808426231145859, + -0.0008322955691255629, + -0.036566510796546936, + -0.09402108937501907, + 0.01603558473289013, + -0.04049959033727646, + 0.054918404668569565, + 0.0006733734044246376, + 0.04158947244286537, + -0.007054097019135952, + 0.0823722556233406, + 0.09216289967298508, + 0.06620410084724426, + 0.0030046619940549135, + 0.05589880421757698, + -0.0033251014538109303, + -0.050783153623342514, + -0.06285791844129562, + -0.004947246517986059, + 0.07240723818540573, + 0.09245777875185013, + -0.033780958503484726, + -0.02609887160360813, + -0.01901678554713726, + 0.05479413643479347, + -0.05937787517905235, + 0.011112716980278492, + 0.002697638003155589, + -0.01960480771958828, + -0.06291407346725464, + -0.0013311696238815784, + 0.05961519852280617, + 0.013903875835239887, + 0.03483575955033302, + -0.028047513216733932, + -0.0021191046107560396, + -0.009869009256362915, + 0.06423383951187134, + -0.04813985526561737, + -0.018146168440580368, + -0.0572424978017807, + -0.06513629108667374, + 0.10548170655965805, + -0.013615656644105911, + 0.02698330581188202, + -0.04776664450764656, + 0.04671996831893921, + 0.049927692860364914, + 0.07841366529464722, + 0.0033380654640495777, + -0.02608027681708336, + 0.08206290751695633, + 0.021286364644765854, + -0.02543526142835617, + -0.07210518419742584, + 0.08304046094417572, + -0.018417786806821823, + -0.05336169898509979, + -0.050161778926849365, + -0.00920550711452961, + 0.06632731109857559, + -0.011225891299545765, + -0.042722247540950775, + -0.0564645417034626, + 0.030849972739815712, + -0.03857658803462982, + -0.04840300604701042, + 0.06810743361711502, + -0.07160832732915878, + -0.031194396317005157, + -0.04166654869914055, + 0.03356091305613518, + -0.06729227304458618, + 0.014341609552502632, + -0.0690850242972374, + -0.01892818696796894, + -0.08378861844539642, + -0.07346191257238388, + -0.13219578564167023, + -0.010829315520823002, + -0.026094334200024605, + -0.008082238957285881, + -0.004021365661174059, + 0.013644659891724586, + -0.026281511411070824, + -0.06344467401504517, + -0.026790598407387733, + 0.043618094176054, + 0.016566229984164238, + 0.10277257859706879, + 0.03689567372202873, + -0.056229181587696075, + 0.04091878607869148, + -0.07797406613826752, + -0.04271537810564041, + 0.035204414278268814, + 0.06066278740763664, + 0.00011182857269886881, + -0.04434172064065933, + -0.05129026994109154, + -0.0164398942142725, + -0.0371863916516304, + -0.08179526776075363, + -0.005446801893413067, + -0.04052269086241722, + -0.058478571474552155, + 0.05695618316531181, + 0.08385364711284637, + -0.0005363381351344287, + 0.009622165001928806, + 0.0007890208507888019, + -0.0670347511768341, + -0.08877537399530411, + 0.03580924868583679, + -0.007502241060137749, + -4.345850736789984e-33, + 0.01442321389913559, + -0.055748943239450455, + 0.033255435526371, + 0.051370467990636826, + 0.0358026884496212, + 0.025843413546681404, + -0.03735947608947754, + -0.06050149351358414, + -0.011510656215250492, + 0.01953662931919098, + 0.0489678792655468, + -0.10008157789707184, + -0.06648535281419754, + 0.027271917089819908, + 0.03762844204902649, + -0.05811983346939087, + -0.019816523417830467, + 0.02040184661746025, + -0.06700533628463745, + -0.011914723552763462, + -0.09577793627977371, + 0.08908023685216904, + -0.05206306278705597, + 0.013080457225441933, + 0.033492088317871094, + -0.05403770133852959, + 0.029994074255228043, + -0.02501084841787815, + -0.003294213442131877, + 0.008948096074163914, + 0.058154359459877014, + 0.06773876398801804, + 0.041424110531806946, + 0.06194229796528816, + -0.029210606589913368, + -0.018404368311166763, + -0.0027577513828873634, + -0.06531138718128204, + 0.059344466775655746, + -0.05197210982441902, + -0.01458851620554924, + 0.0036353569012135267, + 0.09438512474298477, + 0.06638500839471817, + 0.003403259441256523, + 0.08493909984827042, + -0.08139719069004059, + -0.004618106875568628, + -0.019488457590341568, + 0.028224442154169083, + -0.019602730870246887, + 0.015271332114934921, + -0.04655460640788078, + 0.016229836270213127, + -0.07479233294725418, + -0.07223387807607651, + -0.01054498739540577, + 0.05546131730079651, + 0.03033631108701229, + -0.08561330288648605, + -0.010129444301128387, + 0.026950212195515633, + -0.010870104655623436, + -0.031862273812294006, + -0.015496176667511463, + 0.0881355032324791, + -0.050076283514499664, + -0.009160391055047512, + 0.02069930173456669, + 0.002159721218049526, + -0.03597138077020645, + 0.02248982898890972, + -0.003484195563942194, + 0.06869752705097198, + 0.032442957162857056, + 0.034757986664772034, + 0.04590018093585968, + 0.0355166532099247, + 0.004929508548229933, + -0.05290141701698303, + -0.0710747092962265, + -0.015680670738220215, + -0.02254127897322178, + 0.08439788222312927, + -0.015104285441339016, + 0.04305865988135338, + 0.0013450029073283076, + -0.09825830906629562, + 0.08554549515247345, + 0.03304869309067726, + -0.12207064032554626, + -0.01271421741694212, + -0.04155038669705391, + -0.049153756350278854, + -0.09367489069700241, + 7.3912862360698415e-34, + 0.031177451834082603, + -0.010725904256105423, + -0.02845056727528572, + -0.01553394366055727, + 0.03341006860136986, + -0.08496978133916855, + -0.05194545537233353, + -0.0100361043587327, + 0.0688318982720375, + -0.07756932824850082, + 0.029209604486823082, + 0.003529162146151066, + -0.04612848907709122, + -0.009130718186497688, + 0.005894641857594252, + 0.11748050153255463, + 0.06695961207151413, + 0.07982677966356277, + 0.00969470851123333, + 0.07093347609043121, + 0.010387382470071316, + 0.017142249271273613, + -0.030277278274297714, + -0.025005439296364784, + -0.041763633489608765, + 0.029388003051280975, + 0.08428771048784256, + -0.04690134897828102, + -0.07048813998699188, + -0.02515934593975544, + -0.0073892646469175816, + -0.060180455446243286, + 0.060196276754140854, + 0.07797247171401978, + -0.036967672407627106, + 0.030098525807261467, + 0.06403039395809174, + -0.1255217343568802, + -0.08969543129205704, + 0.008471375331282616, + 0.018974250182509422, + -0.037494201213121414, + 0.07927672564983368, + 0.05575757473707199, + 0.005270717665553093, + -0.03507726639509201, + -0.08441755175590515, + -0.0825520008802414, + -0.04729418084025383, + 0.04916352033615112, + 0.02477382868528366, + -0.04794875532388687, + 3.262159225414507e-05, + -0.00521694915369153, + -0.02767588198184967, + 0.04580828547477722, + 0.021748680621385574, + -0.009359132498502731, + -0.02201078273355961, + -0.015344998799264431, + -0.0003537887241691351, + 0.10597444325685501, + 0.0173181239515543, + 0.011153239756822586, + 0.029225710779428482, + -0.10430038720369339, + -0.06452380865812302, + 0.014875894412398338, + 0.02305067703127861, + -0.027161424979567528, + 0.02316887490451336, + 0.003619010094553232, + 0.0027227806858718395, + 0.0816323310136795, + -0.010001061484217644, + -0.05230735242366791, + -0.03446396067738533, + 0.0002644114720169455, + -0.03790806978940964, + 0.05628731846809387, + -0.03977975621819496, + 0.043230898678302765, + -0.029024455696344376, + 0.07733593881130219, + 0.0696101039648056, + -0.07270444184541702, + 0.0553274042904377, + -0.028935562819242477, + -0.04804959520697594, + 0.05195992439985275, + -0.028482353314757347, + 0.03798414394259453, + -0.053737200796604156, + 0.039615679532289505, + 0.03821921348571777, + -2.329829840164166e-08, + 0.04660659655928612, + -0.015141338109970093, + -0.12412920594215393, + 0.05362696573138237, + 0.03687605634331703, + -0.05267561972141266, + -0.060465458780527115, + -0.010407756082713604, + -0.05077070742845535, + -0.009577058255672455, + -0.00993727333843708, + 0.10062011331319809, + -0.044626422226428986, + -0.02895219437777996, + 0.016036977991461754, + 0.02109665237367153, + -0.032399486750364304, + 0.013501591980457306, + -0.02772168628871441, + 0.014435111545026302, + 0.022440779954195023, + -0.0020181648433208466, + 0.057484131306409836, + 0.050787728279829025, + -0.03387647494673729, + 0.0698627382516861, + 0.003857234725728631, + 0.008406490087509155, + 0.10606788843870163, + 0.08809884637594223, + 0.08263544738292694, + 0.08417650312185287, + -0.03376002982258797, + 0.06418551504611969, + -0.06128869578242302, + -0.00585635332390666, + -0.09167889505624771, + 0.009575526230037212, + -0.03237593173980713, + 0.06916632503271103, + -0.0339115634560585, + -0.1400553435087204, + -0.040908996015787125, + 0.00031011164537630975, + -0.042465534061193466, + -0.045519549399614334, + -0.02148737758398056, + 0.057447753846645355, + -0.02812649868428707, + -0.009269953705370426, + 0.05133737251162529, + 0.08136722445487976, + 0.08563697338104248, + 0.024037476629018784, + 0.04750099033117294, + 0.02186688780784607, + 0.03894471377134323, + 0.022703075781464577, + 0.059484340250492096, + -0.011169545352458954, + 0.11580148339271545, + 0.04479745402932167, + 0.0416584275662899, + 0.03214830905199051 + ], + "pinterest-logo-bold||logos,vision board,mood board,social media": [ + 0.011581555008888245, + -0.05765730142593384, + -0.039417751133441925, + 0.005796447861939669, + 0.11545822024345398, + -0.05498397350311279, + 0.07856902480125427, + -0.03938724845647812, + 0.08690223842859268, + -0.018784288316965103, + -0.01625215634703636, + 0.11362859606742859, + 0.015137345530092716, + -0.04842543229460716, + -0.010382493957877159, + 0.00032192125217989087, + 0.0007830737740732729, + -0.015434169210493565, + 0.06663071364164352, + -0.0003221776569262147, + 0.0029764208011329174, + -0.021953370422124863, + 0.017276247963309288, + 0.06748732179403305, + -0.012774978764355183, + 0.021190142259001732, + -0.03670371323823929, + 0.002644048072397709, + -0.019825400784611702, + -0.08404017984867096, + 0.05011683702468872, + 0.06256116181612015, + 0.11152350902557373, + 0.042223185300827026, + 0.007470381446182728, + -0.001967926509678364, + 0.006039138417690992, + -0.013515440747141838, + 0.002950037131085992, + 0.055403485894203186, + -0.0013841716572642326, + -0.05474669113755226, + 0.018807459622621536, + 0.06763233989477158, + -0.024752886965870857, + 0.016800157725811005, + -0.026521524414420128, + -0.018460851162672043, + -0.012379178777337074, + 0.018368931487202644, + -0.010449274443089962, + -0.11125432699918747, + -0.05429638922214508, + -0.05710738152265549, + -0.032931506633758545, + -0.041911423206329346, + -0.04319440573453903, + -0.036294735968112946, + 0.07737400382757187, + -0.02036910504102707, + 0.04394689202308655, + 0.047157276421785355, + 0.08596064150333405, + 0.053707435727119446, + 0.11277541518211365, + -0.038645025342702866, + -0.07051027566194534, + 0.07466211169958115, + -0.046474967151880264, + -0.03167767822742462, + 0.0339219830930233, + -0.015663933008909225, + 0.002527725649997592, + 0.005399483256042004, + -0.004036459606140852, + 0.011042600497603416, + 0.06484071165323257, + -0.020639358088374138, + 0.02267446741461754, + -0.014923883602023125, + -0.0689832791686058, + -0.07524140924215317, + -0.037459056824445724, + -0.035461075603961945, + 0.03549809753894806, + 0.019136173650622368, + -0.04622596502304077, + 0.0006896366830915213, + -0.07316090911626816, + -0.014952128753066063, + -0.12520848214626312, + 0.038173988461494446, + 0.06497760862112045, + -0.014968921430408955, + -0.0546356700360775, + -0.0243438221514225, + -0.017981277778744698, + -0.10140401124954224, + -0.08676572889089584, + 0.10018529742956161, + -0.01170961745083332, + 0.11163400113582611, + 0.07950224727392197, + -0.07061093300580978, + 0.04078682139515877, + 0.005504771135747433, + 0.013014081865549088, + 0.061549555510282516, + 0.045386891812086105, + 0.033787548542022705, + -0.020445095375180244, + -0.007437746971845627, + -0.041780393570661545, + -0.019543567672371864, + 0.0005861466052010655, + -0.09767117351293564, + -0.01650693267583847, + -0.00326487491838634, + 0.18156591057777405, + -0.03324494883418083, + 0.035035163164138794, + 0.0262578334659338, + -0.005811665207147598, + -0.08425509929656982, + -0.01239083707332611, + 0.034034766256809235, + -0.06564393639564514, + -1.6169192955209346e-33, + 0.03862503916025162, + 0.0521538220345974, + -0.010972796007990837, + 0.022868167608976364, + 0.02230297029018402, + 0.032983239740133286, + -0.0690862312912941, + -0.10461054742336273, + -0.10805726796388626, + 0.04190700128674507, + 0.044242095202207565, + 0.0412258580327034, + -0.03140537068247795, + 0.11092296242713928, + 0.0509953610599041, + -0.056863509118556976, + -0.03755698353052139, + -0.044285379350185394, + -0.0860375314950943, + -0.04346659407019615, + -0.06707106530666351, + 0.027641288936138153, + -0.06017565727233887, + 0.019664516672492027, + 0.013844514265656471, + -0.053305212408304214, + 0.049572695046663284, + -0.01435416005551815, + 0.0017276792787015438, + 0.004579246509820223, + 0.04622052237391472, + 0.023565230891108513, + 0.04573445022106171, + -0.015577356331050396, + 0.009584573097527027, + -0.08961451798677444, + 0.02588166669011116, + -0.06317085027694702, + 0.04651434347033501, + -0.01062425971031189, + -0.015397099778056145, + -0.05111551284790039, + -0.015818849205970764, + 0.04506412148475647, + -0.006845054216682911, + 0.16153548657894135, + 0.007050756365060806, + -0.04491467773914337, + 0.059614844620227814, + 0.0022133695892989635, + -0.013295436277985573, + -0.044121190905570984, + 0.0005540233687497675, + -0.037725530564785004, + -0.050944939255714417, + -0.10133995860815048, + -0.03746502846479416, + 0.005353662651032209, + 0.033693742007017136, + -0.08874671906232834, + 0.005200664978474379, + -0.011145442724227905, + 0.019480187445878983, + -0.07581425458192825, + 0.008576414547860622, + 0.06752093881368637, + 0.004478592425584793, + 0.018569398671388626, + -0.0038872214499861, + 0.015598628669977188, + -0.0245714969933033, + 0.0724521279335022, + 0.0925910621881485, + -0.05100380629301071, + -0.08315926045179367, + 0.02070881798863411, + -0.034857768565416336, + -0.008858497254550457, + -0.019959764555096626, + -0.015269502066075802, + -0.0807499960064888, + -0.017657708376646042, + -0.028481872752308846, + 0.05311558023095131, + 0.06655242294073105, + 0.020325014367699623, + 0.02188153937458992, + -0.07937124371528625, + -0.09777229279279709, + 0.049482397735118866, + -0.0706021785736084, + 0.03438260033726692, + 0.04222142696380615, + 0.013211295939981937, + -0.11067209392786026, + 1.8392521879808104e-35, + 0.011423171497881413, + -0.03048870898783207, + 0.026786474511027336, + 0.012833765707910061, + 0.03594588115811348, + -0.01770941913127899, + -0.031420525163412094, + 0.018920473754405975, + -0.020781008526682854, + 0.005142240319401026, + 0.06466595828533173, + 0.01976628601551056, + -0.0895736888051033, + -0.025221174582839012, + 0.021245526149868965, + 0.06173752620816231, + 0.09677039086818695, + 0.04701748862862587, + -0.0952254980802536, + -0.03860834240913391, + 0.027183610945940018, + 0.05658736824989319, + -0.04413161799311638, + 0.026828721165657043, + -0.05406167358160019, + 0.03225665166974068, + 0.10416504740715027, + -0.01117983553558588, + -0.05880063399672508, + -0.04090217500925064, + -0.00017440998635720462, + -0.016819799318909645, + 0.043418243527412415, + 0.028200283646583557, + 0.006195056717842817, + 0.055331554263830185, + -0.050417784601449966, + -0.10522321611642838, + -0.031085355207324028, + 0.003006555372849107, + 0.007817910052835941, + 0.0009621145436540246, + -0.007078056689351797, + 0.01916748471558094, + -0.03400281071662903, + -0.04363146796822548, + -0.09258542954921722, + -0.037545766681432724, + -0.005323396064341068, + 0.060858916491270065, + -0.020504316315054893, + -0.04989107698202133, + 0.023141928017139435, + 0.005915711633861065, + -0.07536732405424118, + 0.009191198274493217, + -0.018157394602894783, + 0.06468767672777176, + -0.005515276920050383, + 0.037133973091840744, + 0.002746702404692769, + 0.017449909821152687, + -0.05019676312804222, + 0.00975797325372696, + -0.006901126820594072, + -0.052780650556087494, + 0.002925893757492304, + 0.032540056854486465, + -0.04775349795818329, + 0.06225862354040146, + 0.08741141855716705, + 0.06911244243383408, + -0.018550502136349678, + 0.09099362045526505, + 0.024260826408863068, + 0.0025911014527082443, + 0.07645111531019211, + 0.08660704642534256, + -0.008459024131298065, + 0.03285771235823631, + -0.07685694843530655, + 0.009071492590010166, + -0.0586760938167572, + 0.05816780403256416, + 0.07444470375776291, + 0.015024806372821331, + -0.019850444048643112, + 0.0008715501753613353, + -0.030669186264276505, + -0.0337512381374836, + -0.011931829154491425, + 0.026560809463262558, + 0.05173785611987114, + 0.010608825832605362, + -0.011211319826543331, + -2.1277156037058376e-08, + -0.026553578674793243, + -0.012670442461967468, + -0.04841194301843643, + -0.03873021528124809, + 0.05681893229484558, + -0.0032875172328203917, + -0.012156783603131771, + -0.08931593596935272, + -0.03767022490501404, + -0.016643648967146873, + 0.030804073438048363, + 0.007140166591852903, + -0.09461280703544617, + -0.004847122356295586, + 0.03968246281147003, + -0.01678459160029888, + -0.09339989721775055, + 0.05074550583958626, + 0.011500264517962933, + -0.04173915088176727, + 0.0010464804945513606, + 0.022529004141688347, + 0.046307194977998734, + -0.021087003871798515, + -0.05192507803440094, + 0.030133912339806557, + 0.011481084860861301, + -0.018788928166031837, + -0.002344129839912057, + 0.06807427853345871, + 0.07599494606256485, + 0.0989653691649437, + 0.01760941371321678, + -0.052819933742284775, + -0.034462545067071915, + -0.013833657838404179, + -0.08538240194320679, + -0.03943764418363571, + -0.03366151452064514, + 0.09715063869953156, + 0.026659078896045685, + -0.06406094878911972, + 0.029361024498939514, + -0.023515166714787483, + -0.05757825821638107, + 0.024731013923883438, + 0.07145825773477554, + 0.014787302352488041, + -0.03005322627723217, + -0.06588809937238693, + -0.033459775149822235, + 0.022589320316910744, + -0.017699867486953735, + 0.07404385507106781, + 0.032287828624248505, + -0.0746697336435318, + 0.022137358784675598, + 0.10758738964796066, + 0.07720618695020676, + 0.03718721866607666, + 0.17614996433258057, + 0.005764133296906948, + -0.05530497804284096, + 0.005399397108703852 + ], + "pinwheel-bold||toys,whirligig": [ + -0.05507338419556618, + -0.026631850749254227, + 0.015773002058267593, + 0.018124524503946304, + -0.04625220224261284, + -0.0380052775144577, + 0.11722886562347412, + -0.027526134625077248, + -0.014131521806120872, + -0.0032243086025118828, + 0.04067416861653328, + 0.055799636989831924, + 0.02448049560189247, + -0.059848345816135406, + -0.009521937929093838, + 0.06754425168037415, + 0.00016055030573625118, + 0.049327652901411057, + -0.039005666971206665, + -0.0016409024829044938, + 0.06210669130086899, + -0.028021695092320442, + 0.053396619856357574, + 0.08810219168663025, + -0.0725214034318924, + 0.059507522732019424, + -0.007891966961324215, + 0.047327663749456406, + -0.03549688681960106, + -0.05079255253076553, + -0.004639156628400087, + 0.07683490961790085, + 0.01544877141714096, + -0.028576841577887535, + -0.011907312087714672, + 0.03174946829676628, + -0.06116749718785286, + -0.10440339148044586, + 0.006538632791489363, + -0.006265990436077118, + 0.03949054703116417, + 0.018201155588030815, + 0.037073321640491486, + 0.003664421383291483, + -0.0537058562040329, + 0.018276166170835495, + -0.01876749098300934, + -0.011453621089458466, + -0.010382563807070255, + 0.08240236341953278, + -0.013576592318713665, + -0.07460257411003113, + 0.08351220935583115, + -0.012678250670433044, + 0.04545586556196213, + 0.027879372239112854, + 0.045511554926633835, + -0.009107557125389576, + 0.036032821983098984, + -0.020566146820783615, + 0.0196754839271307, + 0.03164276108145714, + 0.0670405849814415, + -0.01919882744550705, + -0.0013692189240828156, + -0.08197402954101562, + -0.011020718142390251, + 0.015208117663860321, + -0.009586731903254986, + 0.04028449207544327, + 0.054684244096279144, + -0.029493866488337517, + 0.0188673697412014, + 0.010833708569407463, + 0.008129648864269257, + -0.058803338557481766, + -0.009236356243491173, + -0.050972871482372284, + -0.012898588553071022, + 0.0008616645354777575, + -0.11331619322299957, + -0.09420167654752731, + -0.0010309041244909167, + -0.06493740528821945, + 0.008983674459159374, + 0.04899788647890091, + -0.023964116349816322, + 0.03368528187274933, + -0.050286948680877686, + -0.0019266670569777489, + -0.14404304325580597, + -0.027390116825699806, + -0.015121448785066605, + 0.014666427858173847, + 0.0063818651251494884, + -0.026165353134274483, + 0.005783786531537771, + -0.04430915787816048, + -0.11498881131410599, + 0.034750401973724365, + -0.0035299155861139297, + 0.05105755105614662, + 0.1158260926604271, + -0.02361506037414074, + 0.00037091178819537163, + -0.0014955311780795455, + -0.019979821518063545, + 0.024537956342101097, + -0.016117814928293228, + -0.011057768948376179, + -0.002474936656653881, + -0.045493777841329575, + 0.03565261512994766, + 0.02115255407989025, + -0.07174081355333328, + -0.07945460826158524, + -0.07194405794143677, + -0.02516910992562771, + -0.014437914825975895, + 0.10041403770446777, + 0.10890135914087296, + -0.03072655014693737, + -0.020788485184311867, + -0.06034180149435997, + -0.07186809927225113, + -0.01737160049378872, + -0.044935595244169235, + -6.9633612929774114e-34, + -0.0010986350243911147, + 0.014994043856859207, + 0.012085015885531902, + -0.001028955914080143, + 0.033756766468286514, + -0.003048825776204467, + 0.0005741853383369744, + -0.07397746294736862, + -0.05181870982050896, + 0.11391986906528473, + 0.007798039820045233, + 0.03433002531528473, + -0.0666361004114151, + 0.01943071559071541, + 0.04750565439462662, + -0.1407196968793869, + -0.050843797624111176, + -0.023293446749448776, + -0.06317301839590073, + 0.024893810972571373, + -0.022497424855828285, + 0.0625709816813469, + -0.06205189600586891, + -0.023436086252331734, + -0.03756121173501015, + -0.0006140483310446143, + 0.033769428730010986, + -0.007548540364950895, + 0.04547286033630371, + 0.047993067651987076, + 0.06295034289360046, + -0.018873069435358047, + -0.00883871503174305, + -0.03327391296625137, + 0.0042115808464586735, + -0.039964281022548676, + -0.08711475878953934, + -0.07587140798568726, + -0.046584486961364746, + 0.0024418707471340895, + 0.052132703363895416, + -0.09944383054971695, + -0.049622368067502975, + 0.04976258799433708, + -0.029291165992617607, + 0.11297798901796341, + 0.05792183429002762, + -0.019198033958673477, + 0.05965558812022209, + 0.039119619876146317, + 0.04068212956190109, + -0.009117888286709785, + -0.004564311821013689, + -0.05685441941022873, + -0.00395177910104394, + -0.042929790914058685, + 0.010615780018270016, + 0.0065551633015275, + -0.02865227311849594, + -0.020597297698259354, + 0.018288584426045418, + -0.04446566849946976, + 0.04212692007422447, + -0.07006043195724487, + -0.01596296764910221, + 0.016986096277832985, + 0.01952146738767624, + 0.050577741116285324, + -0.0031638697255402803, + 0.02746748924255371, + -0.002897283062338829, + -0.01572239212691784, + -0.016887979581952095, + 0.05664709955453873, + 0.02923521026968956, + 0.016333328559994698, + 0.04437055066227913, + 0.045652203261852264, + -0.02728259563446045, + -0.11604592204093933, + -0.07241937518119812, + 0.05577040836215019, + -0.10373197495937347, + 0.09371297061443329, + 0.03463157266378403, + 0.009732354432344437, + -0.038717713207006454, + -0.08969379216432571, + -0.019131740555167198, + 0.09558989852666855, + -0.036784738302230835, + 0.011586770415306091, + -0.05071666091680527, + -0.04270588606595993, + -0.12114761769771576, + -1.7450788528162807e-33, + 0.0010527247795835137, + 0.007925440557301044, + 0.03528968244791031, + 0.021036764606833458, + 0.036357372999191284, + 0.06251298636198044, + -0.019967658445239067, + 0.019059112295508385, + 0.0013778387801721692, + -0.00767256785184145, + 0.03678368404507637, + -0.00795509573072195, + -0.0756068304181099, + -0.0152483731508255, + 0.08430097997188568, + 0.06351743638515472, + 0.07361408323049545, + 0.08847172558307648, + 0.05047697201371193, + -0.006042039021849632, + 0.05441237613558769, + -0.03675147518515587, + -0.063223697245121, + 0.020799295976758003, + -0.07366546243429184, + 0.039516035467386246, + 0.04554267227649689, + -0.02011299692094326, + -0.04260163754224777, + 0.016529027372598648, + -0.0005404766998253763, + -0.004314730875194073, + 0.0387815497815609, + 0.0968208983540535, + -0.06522716581821442, + -0.032383643090724945, + -0.013988430611789227, + -0.07788635790348053, + -0.01363182533532381, + -0.06570108234882355, + -0.022035570815205574, + -0.030400101095438004, + 0.04980090633034706, + 0.07117518037557602, + -0.05433959886431694, + -0.05156658589839935, + -0.056012075394392014, + 0.011908743530511856, + 0.03728542476892471, + 0.11396008729934692, + 0.015094220638275146, + 0.005861849989742041, + 0.02095240354537964, + -0.09100151807069778, + -0.07149095833301544, + 0.02482922188937664, + -0.004244464449584484, + -0.08269563317298889, + 0.0705055221915245, + 0.05116567760705948, + -0.004981392063200474, + 0.055606257170438766, + 0.04577445983886719, + 0.05314544960856438, + -0.009183313697576523, + -0.034117020666599274, + 0.041568152606487274, + -0.02570517361164093, + 0.027034299448132515, + -0.027208657935261726, + 0.020063798874616623, + 0.1251629739999771, + 0.06868870556354523, + 0.014684800058603287, + 0.012185179628431797, + 0.007892884314060211, + 0.013680385425686836, + -0.016356762498617172, + 0.036588747054338455, + -0.0812407061457634, + 0.02930666320025921, + -0.010770408436655998, + 0.008028862997889519, + 0.03954117372632027, + -0.043031420558691025, + -0.0039408085867762566, + -0.051204048097133636, + 0.04369491711258888, + -0.008549551479518414, + -0.0028956348542124033, + 0.04300190880894661, + 0.09107236564159393, + 0.01787126064300537, + 0.005650965962558985, + 0.03207266330718994, + -1.9643776383304612e-08, + -0.05503343790769577, + 0.0751599594950676, + -0.07575904577970505, + -0.09985482692718506, + 0.06776704639196396, + 0.07650274783372879, + -0.10104209184646606, + -0.05720897018909454, + -0.09580119699239731, + -0.01156548596918583, + 0.09725829213857651, + 0.02779592201113701, + -0.005214635748416185, + -0.009459340944886208, + 0.023915361613035202, + 0.012524496763944626, + -0.10019586980342865, + 0.07277369499206543, + -0.03163644298911095, + 0.017639148980379105, + -0.022961657494306564, + 0.03559085726737976, + 0.04451458156108856, + 0.025263499468564987, + -0.0525628998875618, + 0.05931903421878815, + -0.021399756893515587, + 0.055956024676561356, + 0.06089808791875839, + 0.029099663719534874, + 0.13111913204193115, + 0.08599355816841125, + -0.024441348388791084, + -0.020158695057034492, + -0.1211521178483963, + -0.06502830982208252, + -0.10305014252662659, + 0.055720917880535126, + -0.03632470965385437, + 0.10348964482545853, + 0.028913123533129692, + 0.006624522153288126, + 0.026461727917194366, + -0.01847587712109089, + -0.1381581425666809, + -0.039241891354322433, + -0.014016910456120968, + -0.029333150014281273, + -0.07437014579772949, + 0.014264175668358803, + -0.05105032026767731, + -0.01122613251209259, + -0.02387760952115059, + 0.09815581142902374, + -0.0119976457208395, + 0.022273089736700058, + 0.020800169557332993, + 0.033895302563905716, + -0.06588605046272278, + -0.003000932279974222, + 0.06671108305454254, + -0.019945861771702766, + 0.07121075689792633, + 0.06624145805835724 + ], + "pipe-bold||*new*,tube,plumber,plumbing,construction": [ + -0.010717893950641155, + -0.05187912657856941, + 0.009674184024333954, + -0.021743493154644966, + -0.03561988100409508, + -0.034140944480895996, + 0.007088123355060816, + 0.0016230855835601687, + -0.03795785456895828, + -0.01188195776194334, + -0.019590800628066063, + -0.014517960138618946, + 0.017834628000855446, + -0.019169868901371956, + -0.06104079261422157, + 0.012589066289365292, + -0.02248680777847767, + 0.019686201587319374, + 0.003122912719845772, + -0.08949720859527588, + -0.0030546977650374174, + 0.10880038142204285, + 0.003958762623369694, + 0.01725820079445839, + 0.07934361696243286, + 0.03990575298666954, + 0.00756516307592392, + 0.010599618777632713, + 0.04345060512423515, + -0.08030195534229279, + -0.03766737878322601, + 0.012632186524569988, + 0.05686954781413078, + -0.046795785427093506, + 0.088313028216362, + 0.002327222842723131, + 0.04435478150844574, + 0.002761016832664609, + 0.030790502205491066, + 0.03174065425992012, + 0.061227619647979736, + -0.14170268177986145, + -0.03093462437391281, + -0.017301002517342567, + -0.013436881825327873, + 0.028880491852760315, + -0.015747779980301857, + -0.06652078032493591, + 0.027170389890670776, + 0.0228820089250803, + -0.06545346230268478, + -0.12245994806289673, + -0.122032031416893, + 0.05430549755692482, + 0.02298007719218731, + 0.012105748057365417, + -0.06173340976238251, + -0.05524706095457077, + 0.05444455146789551, + -0.03492538258433342, + 0.04042867571115494, + 0.007634666282683611, + 0.049121443182229996, + 0.09388738125562668, + 0.05279488489031792, + 0.004561804234981537, + -0.05364982783794403, + 0.03124508075416088, + 0.006266290321946144, + 0.01673414744436741, + -0.03033335693180561, + 0.05415786802768707, + -0.0951332300901413, + -0.0034412795212119818, + -0.06457876414060593, + 0.006106729619204998, + 0.07421471178531647, + 0.05362449586391449, + -0.04897501319646835, + -0.012505137361586094, + -0.08617673814296722, + -0.04737276956439018, + -0.010701769962906837, + -0.011391544714570045, + -0.03676266968250275, + 0.14258013665676117, + -0.05411297455430031, + -0.05481505021452904, + -0.03143708035349846, + -0.0730758011341095, + -0.12435625493526459, + -0.04560164734721184, + -0.001656596316024661, + 0.0425371378660202, + -0.02008962631225586, + 0.02086506225168705, + 0.007223181426525116, + -0.005296163260936737, + -0.005929160863161087, + 0.08867575228214264, + -0.029152994975447655, + 0.007220116909593344, + 0.05018647760152817, + -0.004663200583308935, + -0.05149944871664047, + -0.06327909976243973, + -0.04969504475593567, + 0.02506411261856556, + -0.0068369461223483086, + -0.007119532208889723, + 0.029228033497929573, + -0.12277877330780029, + -0.01409974880516529, + -0.0726781114935875, + -0.04150385782122612, + -0.023767786100506783, + -0.06081954389810562, + -0.033573031425476074, + 0.04426109045743942, + 0.12159517407417297, + 0.0035991945769637823, + -0.010314271785318851, + -0.047710005193948746, + -0.07697862386703491, + -0.04638613387942314, + -0.012033145874738693, + -0.012561306357383728, + -2.6749152717968572e-33, + 0.021504584699869156, + 0.010062825866043568, + 0.027459122240543365, + 0.08320871740579605, + 0.045747336000204086, + 0.09213217347860336, + 0.0014768773689866066, + 0.005716622341424227, + -0.020724667236208916, + 0.03886151313781738, + 0.04767180606722832, + 0.06265028566122055, + -0.041237059980630875, + 0.04344195872545242, + -0.007301415782421827, + -0.07034942507743835, + 0.006901387125253677, + -0.02417527325451374, + -0.05987675487995148, + 0.013279551640152931, + -0.06673016399145126, + 0.10185267776250839, + -0.03167513757944107, + -0.025071291252970695, + -0.006929286289960146, + -0.10463804751634598, + 0.03566563501954079, + -0.019609766080975533, + -0.11473307013511658, + 0.041474323719739914, + -0.016124101355671883, + 0.004411308094859123, + 0.09435640275478363, + 0.05191566050052643, + -0.02280605398118496, + -0.026227569207549095, + -0.07229000329971313, + -0.04902507737278938, + 0.0058374470099806786, + 0.0602765753865242, + -0.04712418094277382, + -0.028347047045826912, + -0.017998887225985527, + 0.05755695700645447, + 0.051462385803461075, + 0.07495009899139404, + -0.05340640991926193, + -0.05254852771759033, + 0.009962716139853, + 0.02321396954357624, + 0.05119282379746437, + 0.07772736251354218, + -0.014846180565655231, + 0.049234457314014435, + 0.0402531623840332, + -0.08113297075033188, + -0.04501919075846672, + 0.0970567837357521, + 0.013906070031225681, + 0.03832829371094704, + -0.055914364755153656, + 0.11559130996465683, + 0.003845282830297947, + 0.05233693867921829, + -0.048936232924461365, + 0.039120566099882126, + -0.008429043926298618, + 0.08421023190021515, + 0.14246973395347595, + 0.0013735868269577622, + -0.08524144440889359, + 0.0916283130645752, + -0.038748521357774734, + 0.05108270421624184, + -0.00029793602880090475, + -0.0013150832382962108, + -0.023188265040516853, + 0.02706913836300373, + 0.07623429596424103, + -0.06540719419717789, + -0.0801791176199913, + -0.000425109377829358, + -0.025755442678928375, + 0.07889709621667862, + 0.02741168811917305, + 0.02178499661386013, + 0.025451475754380226, + -0.07128580659627914, + -0.015720628201961517, + 0.03585773706436157, + -0.09941098839044571, + 0.048259928822517395, + -0.08005335181951523, + -0.009422572329640388, + 0.00976709183305502, + -1.1887393252556738e-33, + 0.06301400065422058, + 0.035822656005620956, + -0.0900525227189064, + 0.040364135056734085, + -0.01065811701118946, + -0.01905045285820961, + 0.01957135833799839, + -0.08041664958000183, + 0.041164785623550415, + 0.03660883009433746, + 0.047589678317308426, + 0.07438448071479797, + -0.013023022562265396, + -0.040289703756570816, + 0.030714556574821472, + 1.0237091373710427e-05, + -0.0016397882718592882, + -0.09859739243984222, + 0.0031906894873827696, + 0.06433508545160294, + -0.03961433470249176, + 0.03783508762717247, + -0.0735807940363884, + -0.003153981873765588, + -0.06750030815601349, + 0.023262400180101395, + -0.02599828876554966, + -0.0794743224978447, + -0.013598735444247723, + -0.0008413830073550344, + -0.10020853579044342, + 0.00025994196766987443, + 0.0021328418515622616, + 0.054054707288742065, + -0.10780941694974899, + 0.018020493909716606, + 0.04857845976948738, + -0.019379720091819763, + 0.07629955559968948, + -0.02873215824365616, + 0.026953745633363724, + 0.003112546866759658, + 0.06413140892982483, + -0.002049992559477687, + -0.099139004945755, + -0.018329551443457603, + 0.044344060122966766, + -0.11440081149339676, + -0.08086182922124863, + 0.03900260478258133, + 0.01214794535189867, + 0.012542403303086758, + 0.003578527132049203, + 0.015699345618486404, + -0.009480507113039494, + -0.018531035631895065, + 0.002002825029194355, + 0.002824123715981841, + -0.09447700530290604, + 0.06722819805145264, + 0.017215395346283913, + 0.0345747172832489, + -0.011447040364146233, + 0.009853353723883629, + 0.031743280589580536, + -0.06454519927501678, + -0.0038683742750436068, + -0.05667278170585632, + 0.009528368711471558, + -0.024755684658885002, + 0.047836270183324814, + -0.0028541218489408493, + -0.012002717703580856, + -0.0023100541438907385, + 0.035993754863739014, + -0.08936039358377457, + -0.0008755815797485411, + 0.012069807387888432, + -0.014589637517929077, + 0.08358447253704071, + -0.09408999234437943, + 0.037721116095781326, + -0.027342380955815315, + 0.09524219483137131, + 0.05784633383154869, + -0.035482779145240784, + -0.020703602582216263, + 0.022126799449324608, + 0.048316169530153275, + -0.019967788830399513, + -0.00784621573984623, + 0.05907121300697327, + -0.12289782613515854, + -0.005108261480927467, + -0.005911342334002256, + -2.1037008579583016e-08, + -0.03704563528299332, + 0.014128947630524635, + -0.07036060094833374, + -0.0034169903956353664, + 0.07369325309991837, + -0.09705988317728043, + -0.03875582292675972, + 0.02397223934531212, + -0.038493067026138306, + -0.030323512852191925, + 0.0590694323182106, + 0.0671185627579689, + -0.014133740216493607, + 0.009341070428490639, + 0.09595069289207458, + 0.018435552716255188, + -0.04207055643200874, + -0.009259923361241817, + -0.04994160309433937, + -0.09847025573253632, + -0.029644429683685303, + 0.042093321681022644, + 0.03346681967377663, + 0.005080899689346552, + -0.053258080035448074, + -0.0328342504799366, + 3.366137752891518e-05, + -0.03656638041138649, + 0.02633245289325714, + 0.0799485445022583, + 0.05166234076023102, + 0.0423780232667923, + -0.026008240878582, + -0.01210225373506546, + -0.023483464494347572, + -0.008655209094285965, + 0.006179626099765301, + -0.0038549809250980616, + -0.0001868492254288867, + 0.07061123102903366, + -0.006763041950762272, + -0.03613996505737305, + 0.020304786041378975, + -0.00575433112680912, + -0.03669383376836777, + 0.03783215954899788, + -0.0009415809181518853, + 0.011457105167210102, + -0.08311937749385834, + -0.09880886226892471, + -0.00455280439928174, + 0.03564340993762016, + 0.07197792083024979, + 0.07625849545001984, + 0.016243206337094307, + 0.010293576866388321, + 0.03925693780183792, + 0.03146607428789139, + -0.04933139309287071, + 0.016401998698711395, + 0.0772722065448761, + 0.03752485290169716, + 0.10261361300945282, + -0.011809860356152058 + ], + "pipe-wrench-bold||*new*,plumber,plumbing,tools,construction": [ + -0.04478759318590164, + -0.052730903029441833, + -6.5304652707709465e-06, + 0.0247589573264122, + -0.03911912813782692, + -0.06749647855758667, + 0.004420191515237093, + -0.05577317252755165, + -0.012230344116687775, + -0.003276134142652154, + -0.008766881190240383, + -0.04151623696088791, + 0.0033670119009912014, + -0.052530840039253235, + -0.09211219847202301, + 0.013233755715191364, + -0.07101792097091675, + 0.015130971558392048, + -0.00848914124071598, + -0.060789912939071655, + -0.05089866369962692, + 0.04243898019194603, + 0.013407675549387932, + 0.02305849827826023, + 0.07788992673158646, + 0.05464322119951248, + 0.015684574842453003, + 0.0016542479861527681, + 0.028379658237099648, + -0.0612790547311306, + -0.004318760707974434, + -0.03367672860622406, + 0.032101474702358246, + -0.018144957721233368, + 0.07005669921636581, + 0.04119811952114105, + 0.0662490576505661, + -0.0067433519288897514, + -0.005934982560575008, + 0.014861252158880234, + 0.033704038709402084, + -0.09097178280353546, + 0.01913355104625225, + -0.03908590227365494, + -0.0002745327656157315, + 0.0066090296022593975, + -0.014346196316182613, + -0.11089015752077103, + 0.02650238573551178, + 0.010959619656205177, + -0.05047135800123215, + -0.11266878992319107, + -0.12044218182563782, + 0.043789010494947433, + 0.02589004673063755, + 0.04454188793897629, + -0.02845076099038124, + -0.07697523385286331, + 0.03758431226015091, + -0.03381556272506714, + 0.040930431336164474, + 0.03970932960510254, + 0.0023304990027099848, + 0.10965763032436371, + 0.010702550411224365, + 0.004382386337965727, + -0.024209870025515556, + -0.04480807110667229, + -0.012513292022049427, + 0.016637394204735756, + -0.02705194056034088, + 0.03732158616185188, + -0.08788635581731796, + 0.0011495758080855012, + 0.0037417812272906303, + -0.039374176412820816, + 0.06797289103269577, + 0.03961270675063133, + -0.009620641358196735, + -0.02316141128540039, + -0.05832456424832344, + -0.0030751992017030716, + -0.018738318234682083, + 0.02001035399734974, + -0.02637605369091034, + 0.10503710806369781, + -0.03465142473578453, + -0.050130147486925125, + 0.03067089430987835, + -0.03526012971997261, + -0.0924219861626625, + -0.05391412600874901, + -0.006967790424823761, + 0.03449401259422302, + -0.03015577234327793, + 0.034839414060115814, + 0.006458987016230822, + 0.028848471119999886, + -0.03915272280573845, + 0.07878106087446213, + -0.06652534008026123, + 0.020747872069478035, + 0.06967655569314957, + -0.03322732448577881, + -0.06835365295410156, + -0.009558331221342087, + -0.07391871511936188, + 0.02605254016816616, + -0.025664031505584717, + 0.013261177577078342, + 0.04865117743611336, + -0.07839197665452957, + -0.012736125849187374, + -0.0494425967335701, + -0.0007058401824906468, + -0.019830668345093727, + -0.06142496317625046, + -0.025144990533590317, + 0.005382368806749582, + 0.1350976824760437, + 0.015934588387608528, + 0.006026018410921097, + -0.07073364406824112, + -0.049628596752882004, + -0.028516264632344246, + 0.0516766682267189, + 0.00210427469573915, + -2.965733676216245e-33, + 0.055572424083948135, + -0.025688843801617622, + 0.005605402868241072, + 0.0996863916516304, + 0.01804913766682148, + 0.10799343883991241, + 0.025546085089445114, + 0.01678253524005413, + -0.05948479101061821, + 0.06522856652736664, + 0.07783888280391693, + 0.0950542688369751, + -0.0847330316901207, + 0.04243382439017296, + 0.044167738407850266, + -0.06795841455459595, + 0.024680210277438164, + -0.01188783161342144, + -0.05037274211645126, + -0.0004522297531366348, + -0.06686429679393768, + 0.03837229311466217, + -0.057055193930864334, + 0.03308756276965141, + 0.03826349228620529, + -0.06542514264583588, + 0.10479038208723068, + 0.0071817305870354176, + -0.06747988611459732, + 0.015935100615024567, + -0.06760883331298828, + 0.021527688950300217, + 0.07973793148994446, + 0.03593715652823448, + -0.036063604056835175, + -0.03946055844426155, + -0.04149584472179413, + -0.07686030119657516, + 0.01955898478627205, + 0.051530126482248306, + -0.03228926658630371, + -0.01518512424081564, + -0.06912911683320999, + -0.03397079557180405, + 0.04986969009041786, + 0.02477695420384407, + -0.03540496528148651, + 0.018357010558247566, + 0.03808404505252838, + 0.04828890040516853, + -0.004704829305410385, + 0.06672888249158859, + 0.04585437849164009, + 0.08273019641637802, + -0.00428546778857708, + -0.041972529143095016, + -0.0409572534263134, + 0.08288624882698059, + 0.043657105416059494, + 0.06351952999830246, + -0.06421232968568802, + 0.12151020020246506, + 0.03526313602924347, + 0.07304369658231735, + 0.02577979490160942, + 0.030403191223740578, + 0.04187280312180519, + 0.07958632707595825, + 0.12351752817630768, + -0.006331395823508501, + -0.12609778344631195, + 0.025326013565063477, + -0.016963602975010872, + 0.061361294239759445, + -0.017032206058502197, + 0.0311912652105093, + 0.015588912181556225, + 0.020185690373182297, + 0.06310609728097916, + -0.030372686684131622, + -0.06927835196256638, + 0.03982271999120712, + -0.0004194789216853678, + 0.11591614037752151, + 0.01165507361292839, + 0.03193890303373337, + 0.0013880669139325619, + -0.09874610602855682, + -0.003237746888771653, + 0.03202887997031212, + -0.132417231798172, + 0.008762172423303127, + -0.11312977224588394, + -0.020353103056550026, + -0.041167017072439194, + -1.5092305131676778e-33, + 0.03365204855799675, + 0.013126787729561329, + -0.11928127706050873, + 0.03435128182172775, + -0.019706862047314644, + -0.024584831669926643, + -0.005086824763566256, + -0.11364465206861496, + 0.04297199472784996, + -0.002371543785557151, + 0.04838778078556061, + 0.05482663959264755, + -0.03585159406065941, + -0.04261046648025513, + 0.0802750289440155, + 0.021323196589946747, + 0.0056005376391112804, + -0.08815149962902069, + -0.01565595529973507, + 0.0736963227391243, + -0.01611788384616375, + 0.07677110284566879, + -0.04641806334257126, + -0.028192663565278053, + -0.03412340208888054, + -0.019326766952872276, + -0.045545704662799835, + -0.07074090093374252, + -0.06607270985841751, + 0.021082498133182526, + -0.0628010630607605, + -0.0061357165686786175, + 0.048263270407915115, + 0.05334175378084183, + -0.1081010103225708, + -0.01600053533911705, + 0.06385195255279541, + -0.018547680228948593, + 0.06651169061660767, + 0.023270074278116226, + 0.030574562028050423, + 0.01668986678123474, + 0.07158204913139343, + 0.025872109457850456, + -0.11324605345726013, + -0.0053941477090120316, + -0.00824502669274807, + -0.13601155579090118, + -0.07812512665987015, + 0.05270027369260788, + 0.007542463485151529, + 0.00468656187877059, + -0.02063388004899025, + -0.001613110420294106, + -0.05114610865712166, + -0.031367212533950806, + 0.01863211952149868, + -0.09851576387882233, + -0.0346352644264698, + 0.0664772093296051, + 0.02065586857497692, + 0.03611418977379799, + 0.0019977933261543512, + 0.034574076533317566, + 0.013039241544902325, + -0.06450208276510239, + 0.015370171517133713, + -0.07640480995178223, + -0.02834928408265114, + -0.040566977113485336, + 0.07845363765954971, + 0.0016960182692855597, + 0.08331957459449768, + -0.03050963021814823, + 0.048890236765146255, + -0.07433401793241501, + -0.004437861032783985, + -0.014193001203238964, + 0.0068566929548978806, + 0.03354768827557564, + -0.0305168554186821, + 0.015002980828285217, + 0.01630146987736225, + 0.06898166239261627, + -0.03706987574696541, + -0.031009454280138016, + -0.06753702461719513, + 0.030793488025665283, + 0.04995245486497879, + -0.021122537553310394, + -0.04107716679573059, + 0.001754198339767754, + -0.07174638658761978, + 0.02312398888170719, + -0.03943098708987236, + -2.262916076745114e-08, + -0.019567733630537987, + 0.015116234309971333, + -0.08522076904773712, + -0.00125964917242527, + 0.06540250778198242, + -0.01591123268008232, + -0.056144747883081436, + 0.07330642640590668, + -0.0489448718726635, + -0.01348540373146534, + 0.09019149094820023, + 0.017886625602841377, + -0.009558041580021381, + 0.03470921516418457, + 0.08823332190513611, + 0.004175893031060696, + -0.030029386281967163, + -0.001359392423182726, + -0.059707723557949066, + -0.1354580819606781, + 0.023720186203718185, + 0.023304833099246025, + 0.07131936401128769, + 0.014581323601305485, + -0.010142184793949127, + -0.04467499628663063, + -0.07669051736593246, + -0.03558026999235153, + 0.001289782696403563, + 0.12434080243110657, + 0.028458870947360992, + 0.019723407924175262, + -0.024516530334949493, + 0.03187459707260132, + 0.026257334277033806, + -0.02043176256120205, + -0.046953342854976654, + 0.0020089850295335054, + -0.017798500135540962, + 0.07932887226343155, + -0.013856695033609867, + 0.002106417901813984, + -0.034200798720121384, + 0.005119503475725651, + -0.0836823433637619, + 0.043366800993680954, + -0.034976184368133545, + -0.017837023362517357, + -0.0565192811191082, + -0.05137774348258972, + -0.019526461139321327, + 0.04608993977308273, + 0.06356526911258698, + 0.05907730013132095, + 0.007677491754293442, + 0.04373570904135704, + 0.05893738195300102, + -0.0035438640043139458, + -0.07042016088962555, + -0.004553444217890501, + 0.04366563260555267, + 0.015311816707253456, + 0.05997172370553017, + -0.002273912075906992 + ], + "pix-logo-bold||*new*,payments,paying,purchase,logos": [ + -0.015783611685037613, + 0.05241989716887474, + -0.013451009057462215, + -0.02997877076268196, + 0.022443395107984543, + 0.01793372444808483, + 0.08221781998872757, + -0.05817834287881851, + 0.06065436825156212, + -0.0319976769387722, + -0.01264278870075941, + 0.05377420037984848, + 0.07974349707365036, + -0.06989523768424988, + -0.006726288236677647, + -0.0770426094532013, + -0.0228611808270216, + 0.023557031527161598, + 0.08641727268695831, + -0.007865536957979202, + 0.026705175638198853, + -0.04480848088860512, + 0.008108026348054409, + -0.00034798745764419436, + 0.02222718670964241, + 0.02653738670051098, + 0.08301624655723572, + 0.0017473151674494147, + 0.021080028265714645, + -0.11087413877248764, + 0.008877635933458805, + 0.08362137526273727, + 0.12255174666643143, + -0.010479615069925785, + 0.06413932889699936, + -0.016519686207175255, + 0.030538290739059448, + -0.0294897872954607, + -0.0024360259994864464, + 0.022132301703095436, + 0.08011432737112045, + -0.06959407031536102, + -0.027929363772273064, + 0.008278713561594486, + -0.021248944103717804, + 0.01699795201420784, + -0.016751665621995926, + -0.016332633793354034, + 0.056379493325948715, + 0.03989085182547569, + 0.01049797423183918, + -0.12426259368658066, + -0.0699840560555458, + -0.015421034768223763, + -0.012089722789824009, + -0.012443994171917439, + -0.01764705404639244, + -0.06286655366420746, + 0.025065476074814796, + -0.08015760034322739, + -0.005385909229516983, + 0.015463483519852161, + 0.01156647503376007, + 0.07227857410907745, + 0.07223398238420486, + 0.05672916769981384, + -0.05965085327625275, + -0.013785779476165771, + -0.110378198325634, + 0.017245149239897728, + 0.032342951744794846, + 0.025713441893458366, + -0.05280108377337456, + -0.04916052147746086, + -0.04514544457197189, + 0.040115028619766235, + 0.06707727164030075, + 0.0026508450973778963, + -0.07846750319004059, + -0.06420188397169113, + -0.06355514377355576, + -0.03557189553976059, + -0.01761075295507908, + 0.021480700001120567, + 0.06202922761440277, + 0.10141666978597641, + -0.013785471208393574, + -0.022825196385383606, + 0.013818557374179363, + -0.006502124480903149, + -0.07579564303159714, + 0.06193520501255989, + 0.0446438230574131, + -0.042692530900239944, + -0.0771251693367958, + -0.0026794767472893, + -0.017018139362335205, + -0.033656682819128036, + -0.02038080058991909, + 0.05807385593652725, + 0.03236944228410721, + 0.02169809117913246, + 0.10830718278884888, + -0.03673463687300682, + 0.019313717260956764, + 0.02389165759086609, + -0.009663775563240051, + 0.022783849388360977, + 0.018059169873595238, + 0.07835426926612854, + -0.03281565383076668, + -0.05792030319571495, + -0.04404101148247719, + -0.06261558085680008, + -0.05701620504260063, + 0.07450231909751892, + -0.05261456221342087, + -0.0589153990149498, + 0.1175050288438797, + 0.00827016681432724, + 0.0644642785191536, + -0.008159995079040527, + -0.10433662682771683, + -0.045525822788476944, + -0.08174789696931839, + -0.013717393390834332, + -0.07890413701534271, + -3.15009086335952e-33, + -0.03324727341532707, + 0.06420911848545074, + -0.02129577286541462, + 0.05568163841962814, + -0.010957970283925533, + 0.06806071847677231, + 0.0010369742522016168, + -0.11534331738948822, + -0.12163541465997696, + 0.026137592270970345, + 0.02429470606148243, + 0.11912692338228226, + -0.015045431442558765, + 0.11319717019796371, + -0.0040334719233214855, + -0.050607096403837204, + -0.015188528224825859, + 0.014032290317118168, + -0.017376070842146873, + -0.013214352540671825, + -0.04867035150527954, + 0.018726779147982597, + -0.021256478503346443, + -0.02093322016298771, + 0.0002767781843431294, + -0.028406037017703056, + 0.024379175156354904, + -0.030888384208083153, + -0.009422438219189644, + -0.015511046163737774, + 0.038942985236644745, + -0.026750145480036736, + 0.09648303687572479, + 0.06029640883207321, + -0.06222088262438774, + -0.003621035488322377, + -0.029008032754063606, + -0.010459748096764088, + 0.019456667825579643, + 0.02935550920665264, + -0.042296189814805984, + -0.08296173065900803, + -0.026097169145941734, + 0.007175881415605545, + -0.039847422391176224, + 0.11142974346876144, + -0.019930902868509293, + -0.12906114757061005, + 0.04195364564657211, + -0.0013417339650914073, + -0.0031124912202358246, + -0.007416791282594204, + -0.017472783103585243, + -0.06534502655267715, + -0.05795124173164368, + -0.13746653497219086, + -0.011628428474068642, + 0.03673804551362991, + -0.03329591825604439, + -0.0963912084698677, + 0.03674931451678276, + -0.00662279361858964, + 0.07430736720561981, + 0.040555644780397415, + -0.04157232865691185, + 0.09362012892961502, + -0.007397793233394623, + 0.051477763801813126, + 0.01268667634576559, + 0.04915615916252136, + -0.05771511420607567, + 0.07232178747653961, + 0.10574020445346832, + 0.018746091052889824, + 0.01827135495841503, + -0.0428335964679718, + 0.002136130817234516, + 0.02941281534731388, + 0.009769302792847157, + 0.05816975235939026, + -0.0646032765507698, + -0.03321331366896629, + -0.028292715549468994, + 0.13407114148139954, + 0.04777545854449272, + 0.054413534700870514, + 0.11947125196456909, + 0.004098732024431229, + -0.03511824458837509, + 0.0011012164177373052, + -0.05207885429263115, + -0.04484320059418678, + -0.00548147177323699, + 0.01691563054919243, + -0.05516889691352844, + 3.376026433635081e-34, + 0.004526876378804445, + 0.025120336562395096, + 0.03889646753668785, + 0.0027491296641528606, + -0.0729653611779213, + 0.0073972586542367935, + 0.06653785705566406, + 0.055691998451948166, + -0.007899926975369453, + 0.012667449191212654, + 0.07214625924825668, + 0.014977955259382725, + -0.08289112895727158, + -0.03494131937623024, + 0.018052149564027786, + -0.012646352872252464, + 0.021185511723160744, + 0.022967400029301643, + -0.050180550664663315, + 0.01960555650293827, + -0.08406940847635269, + 0.021220160648226738, + -0.062439192086458206, + 0.08332805335521698, + -0.04905502498149872, + 0.02857220359146595, + 0.07158331573009491, + -0.011394837871193886, + -0.07191688567399979, + -0.0204782597720623, + -0.09763699769973755, + -0.024313466623425484, + -0.017048031091690063, + 0.08800354599952698, + -0.01790935918688774, + 0.018356483429670334, + 0.011745864525437355, + 0.0135829271748662, + 0.03849944472312927, + 0.020111247897148132, + -0.04463241621851921, + -0.07580514997243881, + 0.02277490124106407, + 0.039634302258491516, + -0.03916093334555626, + -0.11662834137678146, + -0.015074927359819412, + -0.12571832537651062, + -0.06607315689325333, + 0.11770425736904144, + -0.027628080919384956, + 0.0013780361041426659, + 0.018217191100120544, + 0.04925251007080078, + -0.08907506614923477, + 0.03509577736258507, + 0.014616920612752438, + 0.07185658067464828, + 0.02530619688332081, + 0.04805784672498703, + -0.0036273596342653036, + 0.015139835886657238, + -0.022915532812476158, + 0.04877672344446182, + 0.012724334374070168, + 2.048320311587304e-05, + 0.027611153200268745, + -0.06431123614311218, + -0.03238353133201599, + 0.06236392632126808, + 0.004713569302111864, + 0.016686201095581055, + -0.05670278146862984, + 0.0298222117125988, + 0.01820841059088707, + -0.009881016798317432, + 0.04107058048248291, + 0.02523864433169365, + -0.06606290489435196, + 0.0155859449878335, + -0.024589819833636284, + -0.02761738747358322, + -0.06737668812274933, + 0.07796686142683029, + 0.03187081590294838, + -0.028171557933092117, + -0.05700100213289261, + -0.020624743774533272, + 0.03765909746289253, + -0.04162009432911873, + -0.08593691140413284, + 0.06418491154909134, + 0.022930074483156204, + 0.004903556313365698, + -0.1049780324101448, + -2.0314674387122977e-08, + -0.06883331388235092, + -0.006476067937910557, + 0.012691673822700977, + 0.0329117514193058, + 0.07396160811185837, + -0.025753431022167206, + -0.0023372326977550983, + -0.06139517202973366, + -0.0396297425031662, + -0.026908541098237038, + 0.011799391359090805, + -0.05259408429265022, + -0.03531208634376526, + -0.04918717220425606, + 0.016073176637291908, + 0.026947014033794403, + -0.05848317965865135, + 0.03801645338535309, + 0.007808072026818991, + -0.03957131505012512, + -0.10424647480249405, + 0.09758003801107407, + 0.02976442314684391, + 0.012123341672122478, + -0.036614157259464264, + -0.0013366101775318384, + 0.034067388623952866, + 0.024459274485707283, + 0.013017897494137287, + 0.04590040445327759, + 0.044394973665475845, + 0.06185455620288849, + 0.02793968841433525, + -0.035061296075582504, + -0.03121936321258545, + -0.04623499885201454, + -0.02404416725039482, + 0.028485454618930817, + -0.03291890397667885, + 0.06623026728630066, + 0.012093857862055302, + 0.0031101200729608536, + -0.061707597225904465, + -0.0347135066986084, + -0.03507339209318161, + 0.015329064801335335, + 0.021612487733364105, + -0.06546686589717865, + 0.02281385473906994, + -0.061458833515644073, + 0.03411925956606865, + 0.0228909719735384, + 0.03726428747177124, + 0.011356374248862267, + -0.054431892931461334, + -0.08068813383579254, + 0.07643496990203857, + 0.08302907645702362, + 0.06498270481824875, + 0.026267128065228462, + 0.07672261446714401, + -0.04213372990489006, + 0.045521482825279236, + -0.028805896639823914 + ], + "pizza-bold||fast food,party,places,locations,restaurants,food,dining": [ + 0.010113002732396126, + 0.007200003135949373, + 0.03012778051197529, + 0.09712480753660202, + -0.07898781448602676, + 0.04215791076421738, + 0.029529066756367683, + -0.10700381547212601, + -0.0412142276763916, + -0.10992880910634995, + 0.08098068833351135, + -0.03087719902396202, + 0.010107768699526787, + -0.0423438586294651, + 0.07481521368026733, + -0.1017015278339386, + 0.20947957038879395, + 0.02450394444167614, + 0.07394915819168091, + -0.0014701277250424027, + -0.03516547381877899, + -0.05870469659566879, + 0.02138298936188221, + 0.05898839607834816, + 0.07259935885667801, + 0.03738353028893471, + 0.013973630033433437, + 0.052030403167009354, + -0.047017332166433334, + -0.07835885137319565, + -0.005457165651023388, + 0.06697563827037811, + 0.07882700860500336, + 0.01450450997799635, + 0.03713240101933479, + 0.04434940963983536, + 0.034574367105960846, + -0.1216120719909668, + 0.0699150562286377, + 0.054458681493997574, + 0.010044150054454803, + -0.020335054025053978, + 0.043377235531806946, + -0.04578772559762001, + -0.022386107593774796, + -0.03346814960241318, + -0.06217276304960251, + 0.008874863386154175, + -0.02435193955898285, + 0.013673887588083744, + -0.05531257018446922, + 0.0026363194920122623, + -0.05133401229977608, + -0.010210370644927025, + 0.03568137809634209, + -0.01052820309996605, + -0.07998128980398178, + -0.009524784982204437, + 0.020628897473216057, + 0.03367114067077637, + 0.00125781015958637, + -0.04217148944735527, + 0.01523954700678587, + 0.09333081543445587, + -0.051075760275125504, + -0.047892164438962936, + -0.05835886672139168, + 0.009503901936113834, + -0.0679917111992836, + -0.04479178041219711, + 0.008910240605473518, + 0.04876971244812012, + 0.01879972405731678, + -0.01890040934085846, + -0.041337333619594574, + -0.06369270384311676, + 0.029846278950572014, + -0.08480571210384369, + -0.08057836443185806, + -0.03850806504487991, + -0.044287554919719696, + -0.05509533733129501, + -0.0686250627040863, + -0.005320689175277948, + -0.03667648881673813, + 0.018189003691077232, + -0.054253894835710526, + 0.035167302936315536, + -0.015220125205814838, + -0.05300568789243698, + -0.05829564854502678, + -0.01992972008883953, + -0.040745656937360764, + -0.017698388546705246, + -0.04405644163489342, + 0.02245877869427204, + -0.010317398235201836, + -0.044822897762060165, + -0.027266135439276695, + 0.053478747606277466, + 0.04009386524558067, + 0.06808886677026749, + 0.044885482639074326, + -0.026175905019044876, + 0.009001580998301506, + -0.035029444843530655, + -0.016396500170230865, + 0.034341055899858475, + 0.007589923683553934, + 0.034532055258750916, + -0.04647580534219742, + -0.007548533380031586, + 0.01960146427154541, + -0.06794378161430359, + -0.06418019533157349, + -0.00802725087851286, + 0.07041385024785995, + -0.09109913557767868, + 0.11287366598844528, + -0.0060341074131429195, + -0.053780365735292435, + 0.04039406776428223, + -0.01913563162088394, + -0.0240169707685709, + -0.06572947651147842, + 0.035114262253046036, + -0.008689342066645622, + -3.7431832319890434e-33, + 0.004595651291310787, + -0.02732647769153118, + -0.007215727120637894, + 0.07315734028816223, + 0.08922342211008072, + 0.01035222690552473, + 0.004076396580785513, + -0.08282224088907242, + -0.0554380938410759, + 0.009118971414864063, + 0.07908658683300018, + -0.049697622656822205, + 0.028392085805535316, + 0.08367301523685455, + 0.07684044539928436, + -0.032257016748189926, + 0.01878500171005726, + -0.0014479206874966621, + -0.06712404638528824, + -0.06582418084144592, + -0.05253369361162186, + -0.009411117993295193, + 0.012242493219673634, + 0.02299576997756958, + -0.06932537257671356, + -0.014845523983240128, + 0.004603212233632803, + -0.0008612369420006871, + -0.011445235460996628, + 0.017188046127557755, + 0.026372265070676804, + 0.04824073612689972, + 0.024030599743127823, + 0.007915140129625797, + 0.04375476762652397, + 0.011593996547162533, + -0.03619186580181122, + -0.05851273983716965, + -0.043296460062265396, + 0.014247064478695393, + -0.06604789942502975, + 0.013262311927974224, + -0.08957978338003159, + 0.041120659559965134, + 0.004386025946587324, + 0.07929883152246475, + -0.015669221058487892, + -0.01790790818631649, + 0.03590238094329834, + 0.012644445523619652, + -0.0077461604960262775, + -0.01938675530254841, + -0.013468063436448574, + -0.0180401261895895, + -0.047321148216724396, + 0.014026389457285404, + -0.011027826927602291, + 0.016686752438545227, + 0.010877303779125214, + -0.03615977242588997, + 0.0600920245051384, + 0.08860359340906143, + 0.004600719548761845, + -0.04738457500934601, + -0.024215923622250557, + 0.04426872730255127, + -0.015759743750095367, + -0.014855025336146355, + 0.07696221023797989, + 0.018445976078510284, + 0.09582918137311935, + 0.01575467362999916, + 0.07555203884840012, + 0.03475372865796089, + 0.03779144585132599, + 0.07095514982938766, + -0.08137530088424683, + -0.029130764305591583, + 0.053777601569890976, + -0.019494540989398956, + 0.02038932591676712, + -0.01167839765548706, + 0.0053690215572714806, + 0.04876723513007164, + -0.0056568412110209465, + 0.044526636600494385, + 0.046904556453228, + -0.10449038445949554, + 0.044431090354919434, + 0.03297795355319977, + -0.09614924341440201, + -0.04964428395032883, + 0.0273766927421093, + -0.05599648132920265, + -0.08118805289268494, + 7.721240153505965e-34, + 0.009684046730399132, + -0.03029157966375351, + 0.004278639797121286, + -0.06007547304034233, + 0.00231365323998034, + -0.014605551958084106, + -0.08376391232013702, + -0.04450179263949394, + 0.04249950870871544, + 0.0017972730565816164, + -0.09997523576021194, + 0.010164515115320683, + 0.03133976832032204, + -0.06932033598423004, + 0.01221631933003664, + 0.06842222809791565, + 0.05614710599184036, + 0.04332089424133301, + 0.01459007989615202, + 0.06425973773002625, + -0.03847162425518036, + -0.04522015154361725, + -0.094279944896698, + 0.14236386120319366, + -0.004113407805562019, + 0.07871463149785995, + 0.004255410749465227, + 0.0027878950349986553, + -0.08797386288642883, + -0.026602517813444138, + -0.10156325250864029, + -0.041388362646102905, + 0.051031630486249924, + 0.01155999954789877, + 0.004014282487332821, + 0.13851147890090942, + -0.07147473096847534, + -0.03296704590320587, + 0.046316273510456085, + -0.02012571319937706, + -0.013180081732571125, + -0.055363044142723083, + 0.05754962936043739, + 0.12561920285224915, + 0.0057037947699427605, + 0.007478324696421623, + -0.08270321041345596, + -0.08919405937194824, + -0.05408233776688576, + 0.07049484550952911, + -0.035620275884866714, + -0.013439474627375603, + -0.054976191371679306, + 0.05596272647380829, + 0.021350068971514702, + 0.02769828401505947, + -0.07133355736732483, + 0.01745782606303692, + -0.06394018977880478, + -0.06025848537683487, + -0.03729654848575592, + 0.038364578038454056, + 0.003378314897418022, + 0.13736438751220703, + 0.07778465747833252, + -0.03837792947888374, + 0.005425438284873962, + -0.08455096185207367, + 0.0019967369735240936, + 0.03510027006268501, + -0.04436418041586876, + 0.07123646885156631, + -0.01491017360240221, + 0.03657717630267143, + -0.076450876891613, + -0.04738583415746689, + 0.02739362232387066, + 0.07866085320711136, + -0.0511455200612545, + 0.0674474835395813, + 0.005416305270045996, + -0.026876531541347504, + -0.06331940740346909, + 0.019731706008315086, + -5.702228008885868e-05, + -0.01190145593136549, + 0.015674367547035217, + -0.010994560085237026, + -0.04092498868703842, + 0.013711698353290558, + -0.028985818848013878, + 0.07775604724884033, + -0.02347046695649624, + -0.02953503094613552, + 0.04111693799495697, + -2.2894496964909195e-08, + 0.09306486696004868, + -0.020314516499638557, + -0.1180671826004982, + 0.05541684851050377, + 0.04331044852733612, + -0.08936354517936707, + -0.01633361168205738, + -0.05100454017519951, + -0.02340485155582428, + 0.05840021371841431, + -0.025104587897658348, + 0.07687030732631683, + 0.01873045414686203, + -0.025911280885338783, + -0.022863609716296196, + 0.0100761279463768, + 0.01071858312934637, + 0.011002817191183567, + 0.00192096212413162, + 0.049542102962732315, + 0.005820196587592363, + 0.06234055384993553, + 0.019016167148947716, + -0.05605189502239227, + 0.013788611628115177, + 0.0529651865363121, + 0.0034809608478099108, + 0.0340561643242836, + 0.08296146988868713, + 0.0026006035041064024, + 0.00312995002605021, + 0.0071276272647082806, + -0.04819614812731743, + 0.003283582627773285, + -0.05710018053650856, + -0.032440949231386185, + -0.04674750939011574, + -0.05546519532799721, + -0.013681000098586082, + 0.03427793085575104, + -0.014797237701714039, + -0.05318034812808037, + -0.03841548040509224, + -0.018455002456903458, + -0.03323615714907646, + 0.07382643222808838, + -0.028844023123383522, + -0.048437945544719696, + -0.05991044268012047, + 0.013348705135285854, + -0.09775708615779877, + 0.040734849870204926, + 0.057605765759944916, + -0.03956836462020874, + 0.0482742115855217, + 0.0532880462706089, + 0.03777732700109482, + 0.08201321214437485, + 0.06834296137094498, + 0.04447775334119797, + 0.08261288702487946, + 0.05249980464577675, + -0.006642697844654322, + 0.0016716463724151254 + ], + "placeholder-bold||empty,notdef,tofu,rectangle slash,missing": [ + 0.062452178448438644, + -0.06673957407474518, + -0.002973455237224698, + 0.07933555543422699, + 0.044644009321928024, + -0.015266399830579758, + 0.008647747337818146, + -0.030067136511206627, + 0.07658115774393082, + -0.0631985142827034, + 0.0135119603946805, + -0.06427299976348877, + -0.01939740963280201, + -0.007767376024276018, + 0.024268321692943573, + 0.02244918793439865, + 0.019343916326761246, + -0.040397562086582184, + 0.03376040607690811, + 0.003822493366897106, + -0.04069705307483673, + 0.035692568868398666, + 0.04513537138700485, + 0.007533040829002857, + 0.03619848191738129, + 0.03991563245654106, + -0.0461416020989418, + 0.007265766616910696, + 0.07442072778940201, + -0.08961161226034164, + 0.016108594834804535, + 0.03566360101103783, + 0.0932900607585907, + -0.048384808003902435, + 0.09480498731136322, + 0.12120863795280457, + 0.048257216811180115, + -0.009152215905487537, + 0.08197075128555298, + -0.0048924945294857025, + -0.029064320027828217, + -0.033487383276224136, + -0.018290847539901733, + 0.017932908609509468, + 0.006806550081819296, + 0.005817792844027281, + 0.0030921914149075747, + -0.05736877769231796, + 0.01187677588313818, + -0.016835346817970276, + 0.022817648947238922, + -0.05549490824341774, + -0.00429426459595561, + -0.0874328687787056, + 0.030663184821605682, + -0.02192545495927334, + 0.021916793659329414, + -0.05450943112373352, + 0.01990954950451851, + 0.02259226143360138, + -0.0011729698162525892, + -0.03145987540483475, + 0.032047148793935776, + 0.020721998065710068, + 0.04979781433939934, + -0.005729907192289829, + -0.034168146550655365, + -0.007997624576091766, + -0.10421258211135864, + 0.006194598041474819, + 0.004180504474788904, + 0.009232631884515285, + -0.025410687550902367, + 0.02735317498445511, + -0.01421245839446783, + 0.031306471675634384, + 0.007947303354740143, + 0.05109603330492973, + 0.042422614991664886, + 0.015088343061506748, + 0.07348917424678802, + -0.043640293180942535, + 0.008442460559308529, + 0.03297879174351692, + 0.06124832108616829, + -0.020541375502943993, + -0.08541935682296753, + -0.1028963103890419, + 0.009897304698824883, + -0.033002980053424835, + 0.0212220661342144, + 0.019470784813165665, + 0.0028272264171391726, + 0.06717850267887115, + -0.04401477053761482, + -0.040143053978681564, + -0.001311154686845839, + 0.11781701445579529, + -0.12250611186027527, + 0.04707437753677368, + 0.002592692384496331, + 0.022604268044233322, + -0.01580537110567093, + 0.004976515658199787, + 0.02753574401140213, + 0.047431204468011856, + -0.004925388842821121, + -0.03630177304148674, + 0.029667101800441742, + 0.020844625309109688, + -0.0016231322661042213, + -0.038746777921915054, + -0.00924554094672203, + -0.05091716721653938, + -0.1104484274983406, + -0.042614322155714035, + -0.04037031531333923, + -0.12562322616577148, + 0.05687782168388367, + 0.053831666707992554, + 0.003219650126993656, + -0.044657353311777115, + -0.0822300985455513, + 0.003939361311495304, + -0.054775599390268326, + 0.0006048149662092328, + 0.046312324702739716, + -8.4102047393626e-34, + 0.045464448630809784, + 0.060471318662166595, + -0.04442751035094261, + 0.08490040898323059, + 0.04183199629187584, + -0.019167108461260796, + -0.012610776349902153, + -0.04311530664563179, + -0.07661481201648712, + 0.011203343980014324, + 0.09007170796394348, + -0.0775783583521843, + -0.028855737298727036, + 0.03391237556934357, + -0.08308286219835281, + -0.06560313701629639, + 0.033524639904499054, + -0.04150795191526413, + -0.055317990481853485, + -0.026308510452508926, + -0.00023358830367214978, + 0.08418570458889008, + -0.11513356119394302, + -0.04647373408079147, + -0.0006005106261000037, + 0.043007493019104004, + 0.009710000827908516, + -0.011543845757842064, + -0.05952896922826767, + 0.03574199229478836, + -0.019237693399190903, + -0.017067596316337585, + 0.06825627386569977, + 0.03521932661533356, + -0.039429180324077606, + 0.013132396154105663, + 0.02839011885225773, + -0.00014568641199730337, + -0.06160752847790718, + 0.010031231679022312, + 0.0027571762911975384, + 0.024392589926719666, + -0.04448263719677925, + -0.05197836831212044, + 0.016966834664344788, + 0.00030100412550382316, + 0.002478462178260088, + 0.04616299644112587, + 0.02022385224699974, + 0.03714738413691521, + -0.10045715421438217, + 0.08437776565551758, + -0.010011594742536545, + 0.0437011644244194, + 0.00019893374701496214, + -0.050953458994627, + -0.07532458007335663, + 0.017095377668738365, + 0.03383611515164375, + -0.04951270669698715, + -0.006285069976001978, + 0.07444559037685394, + -0.017956776544451714, + -0.03179337456822395, + -0.06532580405473709, + 0.038053736090660095, + 0.024080723524093628, + 0.008631106466054916, + 0.04116642475128174, + -0.03956053778529167, + 0.021814530715346336, + 0.06802688539028168, + 0.034848544746637344, + 0.03573235124349594, + -0.02028043568134308, + -0.06447220593690872, + -0.049086954444646835, + -0.051798272877931595, + 0.030950026586651802, + -0.09129101783037186, + 0.005209865514189005, + -0.0525612011551857, + -0.022695573046803474, + 0.08334068208932877, + 0.02184595726430416, + -0.058959342539310455, + 0.05665678158402443, + -0.0011471954640001059, + -0.04572123661637306, + -0.053757406771183014, + 0.052347756922245026, + -0.11706496775150299, + -0.02493247576057911, + -0.10017520934343338, + 0.004484266042709351, + -4.544076828727542e-34, + 0.03760881349444389, + 0.03810795024037361, + -0.04608255624771118, + 0.020041463896632195, + -0.04400473088026047, + 0.027673784643411636, + 0.07141656428575516, + 0.04325629770755768, + 0.09528978914022446, + 0.04364281892776489, + -0.04028305783867836, + 0.03545770049095154, + -0.03437817096710205, + -0.09621682018041611, + -0.036629535257816315, + 0.10717829316854477, + -0.050628308206796646, + 0.015253383666276932, + -0.06483727693557739, + -0.09237045794725418, + -0.011206970550119877, + -0.024863874539732933, + 0.003104059724137187, + 0.12062429636716843, + -0.09147494286298752, + 0.13687783479690552, + 0.0488751046359539, + -0.051758088171482086, + -0.03140288591384888, + 0.04984869435429573, + 0.009185675531625748, + 0.04801070690155029, + -0.027177494019269943, + 0.039818648248910904, + -0.010448869317770004, + -0.07218383252620697, + -0.06991567462682724, + 0.042808935046195984, + 0.020316723734140396, + 0.015694309026002884, + 0.03776019439101219, + 0.0330011285841465, + 0.0021213432773947716, + 0.06899762153625488, + -0.05516096204519272, + -0.010968985967338085, + -0.03683346137404442, + -0.05201965197920799, + 0.1867285817861557, + -0.011112423613667488, + -0.01591116562485695, + -0.08524521440267563, + -0.03333184868097305, + 0.06034009903669357, + -0.06731057912111282, + -0.0010849041864275932, + 0.030588960275053978, + 0.02777998521924019, + -0.07325483113527298, + 0.06265047192573547, + -0.020769910886883736, + 0.061284150928258896, + -0.050487667322158813, + -0.04168369248509407, + 0.04441383108496666, + -0.026358583942055702, + -0.035351768136024475, + 0.04294640198349953, + 0.05975038558244705, + -0.04389217495918274, + -0.032999295741319656, + 0.006664475426077843, + 0.03382444009184837, + -0.014774777926504612, + 0.025052780285477638, + 0.06446227431297302, + 0.07641948014497757, + 0.026462506502866745, + 0.039219003170728683, + 0.07887587696313858, + 0.022437242791056633, + 0.005481830798089504, + -0.055684395134449005, + 0.02589932642877102, + 0.057553086429834366, + -0.05507601797580719, + -0.028483087196946144, + 0.04246891662478447, + -0.08792402595281601, + -0.0757923349738121, + -0.005307242274284363, + 0.054422568529844284, + -0.0025106556713581085, + 0.04092824086546898, + 0.005962045397609472, + -2.42700153307851e-08, + -0.01898348703980446, + -0.027494199573993683, + -0.043759118765592575, + -0.059461142867803574, + -0.05131981894373894, + -0.02181079238653183, + 0.046159397810697556, + -0.09451747685670853, + -0.010003809817135334, + -0.010008472949266434, + 0.013798766769468784, + 0.044976748526096344, + -0.09499800205230713, + -0.08746957033872604, + 0.051439885050058365, + 0.02168627269566059, + -0.0678534135222435, + 0.04989173635840416, + -0.06903693079948425, + -0.013920817524194717, + -0.01851523295044899, + 0.016600266098976135, + 0.04481329023838043, + -0.09813682734966278, + 0.025592776015400887, + -0.0021148594096302986, + -0.07694602757692337, + 0.019778575748205185, + 0.08381480723619461, + 0.05960599705576897, + 0.022353794425725937, + 0.031119298189878464, + 0.0051679108291864395, + -0.02363520860671997, + -0.07981429249048233, + 0.019485346972942352, + 0.0714850127696991, + -0.03260646015405655, + -0.04720209911465645, + 0.11230863630771637, + -0.014903915114700794, + -0.1329352855682373, + -0.02349829487502575, + -0.06672430783510208, + -0.05923270061612129, + 0.06156454235315323, + 0.035652752965688705, + 0.0649818405508995, + 0.03841722384095192, + 0.0035447098780423403, + -0.02368493750691414, + 0.013642790727317333, + -0.026820773258805275, + 0.08785907924175262, + 0.009176895953714848, + -0.07606618851423264, + 0.004052870441228151, + 0.11532869935035706, + 0.07939602434635162, + -0.010371462441980839, + 0.04166920483112335, + 0.003593296278268099, + 0.044603828340768814, + 0.03317016735672951 + ], + "planet-bold||saturn,world,globe,astronomy,space": [ + 0.04950491338968277, + -0.06274647265672684, + 0.03238290920853615, + 0.025146763771772385, + 0.04688280448317528, + -0.04616137966513634, + 0.0390574187040329, + 0.027123257517814636, + 0.034881021827459335, + 0.012087133713066578, + -0.04510309174656868, + -0.012068518437445164, + -0.013431527651846409, + -0.049665357917547226, + -0.0474768802523613, + -0.04030909389257431, + -0.017572026699781418, + -0.018559539690613747, + 0.00911413598805666, + -0.0011364060919731855, + -0.0016928338445723057, + 0.08421377092599869, + 0.007446100935339928, + 0.08547122776508331, + 0.03551269695162773, + 0.08175872266292572, + 0.019904043525457382, + 0.01823621615767479, + -0.013656833209097385, + -0.024063866585493088, + 0.01911352574825287, + 0.005856621079146862, + 0.029398933053016663, + -0.011491639539599419, + -0.010317879728972912, + 0.023831838741898537, + -0.05996503680944443, + -0.050914663821458817, + -0.010096566751599312, + 0.030903900042176247, + 0.06446174532175064, + -0.018613016232848167, + 0.0704331248998642, + 0.034547820687294006, + -0.04524034261703491, + -0.0148333590477705, + -0.05565337836742401, + 0.008452003821730614, + 0.041769418865442276, + -0.009178617037832737, + -0.03943175822496414, + -0.07596185803413391, + -0.09536450356245041, + -0.00816340558230877, + -0.030208975076675415, + 0.053902775049209595, + -0.0953763872385025, + -0.0988101214170456, + 0.09982850402593613, + -0.07878769189119339, + -0.004293185658752918, + -0.0012358161620795727, + 0.061585087329149246, + 0.03703268617391586, + 0.030176348984241486, + 0.05922318622469902, + -0.06449497491121292, + 0.04125143215060234, + -0.026318157091736794, + 0.011240873485803604, + -0.014432118274271488, + 0.037373241037130356, + -0.024615101516246796, + -0.045999035239219666, + -0.07432962208986282, + 0.011960848234593868, + 0.07842069864273071, + 0.008921450935304165, + -0.027209904044866562, + -0.07197870314121246, + -0.014890709891915321, + -0.015585222281515598, + -0.12553897500038147, + 0.05636072903871536, + 0.010532817803323269, + 0.052137959748506546, + -0.1095508486032486, + -0.030478406697511673, + -0.00576807139441371, + -0.07138552516698837, + -0.003830315312370658, + -0.04813947528600693, + 0.042842116206884384, + -0.0049880207516252995, + -0.10719418525695801, + 0.03529104217886925, + 0.06856837123632431, + -0.07798325270414352, + 0.01479794830083847, + 0.04062000289559364, + 0.0511321984231472, + 0.048553578555583954, + -0.015970680862665176, + 0.09385383874177933, + -0.05406273901462555, + 0.031385637819767, + -0.01314227283000946, + 0.013527666218578815, + -0.01272401213645935, + -0.03743840008974075, + -0.08807239681482315, + -0.01570439152419567, + -0.02819274552166462, + -0.06147861108183861, + -0.04132610186934471, + -0.05737052485346794, + -0.039566949009895325, + 0.0329701267182827, + 0.010129237547516823, + 0.057070404291152954, + -0.05374911427497864, + -0.027481408789753914, + -0.00884294230490923, + 0.05385958403348923, + -0.03034128248691559, + 0.010958177037537098, + -0.004186585079878569, + -2.751988579289436e-33, + 0.06114492192864418, + 0.043188679963350296, + 0.07676325738430023, + 0.09953568130731583, + 0.01570799946784973, + -0.011149651370942593, + 0.003066771663725376, + 0.011118149384856224, + -0.03921162337064743, + 0.017975782975554466, + -0.0628974661231041, + 0.055055100470781326, + 0.034147847443819046, + -0.017836544662714005, + 0.008107775822281837, + 0.05705713853240013, + 0.09296759963035583, + -0.002846840536221862, + -0.10360338538885117, + 0.04538504779338837, + -0.11303642392158508, + 0.05202977731823921, + -0.016120415180921555, + -0.08326155692338943, + -0.02081283926963806, + -0.03965224325656891, + 0.04089553654193878, + -0.05126320943236351, + -0.0066577051766216755, + 0.005784917622804642, + 0.06048111245036125, + 0.02527717687189579, + -0.026651965454220772, + 0.05455727130174637, + -0.024958740919828415, + -0.0009728727745823562, + -0.04865795001387596, + 0.013417213223874569, + 0.005239400081336498, + -0.0005306974053382874, + -0.05607104301452637, + 0.013290015049278736, + -0.006962182000279427, + 0.03535675257444382, + 0.06116912141442299, + 0.12081610411405563, + 0.06264064460992813, + -0.039678264409303665, + 0.0829230472445488, + 0.08508630096912384, + -0.025596287101507187, + -0.01782117411494255, + -0.04658672958612442, + 0.009224197827279568, + 0.044366564601659775, + 0.021265240386128426, + -0.032614659518003464, + 0.003960156347602606, + -0.05594461411237717, + 0.057960573583841324, + 0.03421204164624214, + -0.035923101007938385, + 0.026450062170624733, + -0.031755480915308, + -0.005366500001400709, + 0.09543579816818237, + -0.07620463520288467, + 8.871407771948725e-05, + 0.017158938571810722, + -0.005829268600791693, + -0.017053011804819107, + 0.057852983474731445, + 0.08060450851917267, + 0.10661041736602783, + 0.06763596087694168, + 0.015450451523065567, + 0.01524555403739214, + -0.08684524893760681, + -0.012447170913219452, + 0.00234287790954113, + -0.136830672621727, + 0.01326133031398058, + -0.04805997386574745, + -0.02895178832113743, + -0.007540090475231409, + 0.009047198109328747, + 0.018573850393295288, + -0.02587134763598442, + 0.0909794270992279, + 0.08418785780668259, + -0.047082945704460144, + -0.06476607918739319, + -0.005207597278058529, + -0.03593561798334122, + -0.14754106104373932, + 6.391895632680118e-34, + -0.03617670014500618, + -0.008678635582327843, + -0.044297512620687485, + -0.0640803650021553, + 0.01010923832654953, + 0.01301740575581789, + -0.10357949882745743, + 0.0835656002163887, + -0.10689932852983475, + 0.025384332984685898, + 0.03268146514892578, + 0.011818375438451767, + -0.04175974428653717, + -0.15092627704143524, + -0.022958766669034958, + -0.00026251215604133904, + 0.056857164949178696, + 0.028225161135196686, + -0.05947696417570114, + 0.0225954819470644, + 0.03557360917329788, + -0.060156043618917465, + -0.016238389536738396, + -0.028333958238363266, + -0.04571038484573364, + 0.06066146120429039, + 0.03742863982915878, + -0.0168605986982584, + -0.010837658308446407, + 0.050536029040813446, + -0.10180987417697906, + 0.03024371899664402, + -0.02760893478989601, + 0.035101402550935745, + -0.051858000457286835, + 0.09078552573919296, + 0.008840344846248627, + -0.061104923486709595, + 0.008638666942715645, + -0.04002544656395912, + -0.09584315866231918, + 0.06506691873073578, + 0.03452737256884575, + 0.04550136625766754, + -0.005976973567157984, + -0.015135237015783787, + 0.033878594636917114, + 0.06277856230735779, + 0.019381636753678322, + 0.07226376235485077, + -0.03271244093775749, + -0.10788856446743011, + 0.03676844388246536, + 0.03613026440143585, + 0.007303851190954447, + 0.009831571951508522, + -0.05178432539105415, + 0.05558743327856064, + -0.015638159587979317, + -0.012499014846980572, + 0.07142313569784164, + 0.02247309312224388, + -0.02838362753391266, + -0.004059094935655594, + -0.027896065264940262, + -0.1824198067188263, + 0.05121862143278122, + 0.07578025758266449, + 0.001957670086994767, + 0.07509827613830566, + -0.09914805740118027, + -0.0454736053943634, + -0.0043335906229913235, + 0.060847315937280655, + 0.08085639029741287, + 0.03642142191529274, + 0.0727805346250534, + -0.04377643018960953, + -0.011511278338730335, + 0.05050846189260483, + -0.02479080855846405, + 0.061732590198516846, + 0.008448038250207901, + 0.04257023334503174, + 0.02800636552274227, + 0.09332936257123947, + 0.016813792288303375, + 0.009382725693285465, + -0.05147877708077431, + -0.014781211502850056, + -0.05048046261072159, + 0.06019260361790657, + 0.0007743105525150895, + 0.006362651474773884, + -0.024724116548895836, + -1.7468035906631485e-08, + 0.08406667411327362, + 0.00808868557214737, + -0.07482858002185822, + 0.015414180234074593, + -0.03327440842986107, + -0.03365587815642357, + 0.00785531010478735, + -0.0378841906785965, + -0.11419452726840973, + -0.013695357367396355, + 0.01753155142068863, + 0.016970155760645866, + -0.021889278665184975, + -0.055296942591667175, + -0.016542160883545876, + 0.029102418571710587, + -0.043627385050058365, + 0.03991479426622391, + 0.006196713540703058, + 0.025509197264909744, + 0.04590219631791115, + 0.09854324907064438, + 0.08490288257598877, + -0.07502676546573639, + 0.05703950673341751, + 0.009776151739060879, + 0.017726276069879532, + 0.04793662577867508, + -0.013232874684035778, + -0.027662718668580055, + 0.06227020546793938, + -0.014609740115702152, + -0.004590525291860104, + -0.029235363006591797, + -0.07369595766067505, + -0.0017168098129332066, + -0.05909859761595726, + 0.04905109852552414, + 0.02302692085504532, + 0.043720047920942307, + 0.020460214465856552, + 0.08833786845207214, + -0.0212714783847332, + 0.03355446457862854, + -0.0034946349915117025, + 0.0576588474214077, + 0.0501251220703125, + -0.07070218771696091, + -0.06496582180261612, + -0.07831450551748276, + -0.05891811475157738, + -0.020961886271834373, + 0.044744957238435745, + -0.018047232180833817, + -0.04817235842347145, + -0.05319885164499283, + -0.047816310077905655, + 0.060666993260383606, + -0.0483991801738739, + 0.03184560313820839, + 0.05726012960076332, + -0.013597470708191395, + -0.08639391511678696, + 0.029189854860305786 + ], + "plant-bold||sprout,vegan,farm,farming,garden,gardening": [ + -0.004919655621051788, + -0.05806133151054382, + -0.05453415960073471, + 0.03862247243523598, + 0.07635563611984253, + 0.02443583682179451, + -0.02969716116786003, + -0.08330269902944565, + -0.008539333939552307, + -0.006852429825812578, + 0.15138666331768036, + -0.04951784014701843, + -0.07701922953128815, + -0.07165578752756119, + -0.016181305050849915, + 0.06934850662946701, + 0.0024088674690574408, + 0.11100160330533981, + -0.007795441895723343, + -0.005729312542825937, + -0.010694845579564571, + 0.0570196732878685, + 0.002617886057123542, + 0.10178951919078827, + 0.057331379503011703, + -0.019343150779604912, + -0.05331365019083023, + 0.021404964849352837, + 0.007564079016447067, + -0.06398430466651917, + -0.016028566285967827, + 0.14417411386966705, + 0.08504588901996613, + -0.01951957680284977, + 0.001250077853910625, + 0.04631824046373367, + -0.004450823646038771, + -0.05316074565052986, + 0.04235457256436348, + 0.04900893196463585, + 0.028026362881064415, + -0.1089458018541336, + 0.030339127406477928, + -0.03126844763755798, + -0.0517558790743351, + -0.013008187524974346, + -0.019782718271017075, + -0.0349448099732399, + -0.009039722383022308, + -0.0697748214006424, + -0.02722608856856823, + -0.10533055663108826, + -0.08749193698167801, + -0.025189019739627838, + -0.013163258321583271, + 0.029021022841334343, + -0.08183068037033081, + 0.04513484984636307, + 0.05618546903133392, + 0.005326938349753618, + 0.08185521513223648, + -0.0282151997089386, + -0.03601331263780594, + 0.029914669692516327, + -0.006927843205630779, + -0.01429800782352686, + -0.048978328704833984, + 0.013763049617409706, + -0.0017123942961916327, + -0.010793794877827168, + 0.04119762405753136, + -0.038995161652565, + -0.05430028587579727, + 0.027035629376769066, + -0.11344344913959503, + 0.05182169750332832, + 0.01102132722735405, + -0.009880504570901394, + 0.02954881079494953, + -0.052261173725128174, + -0.011102328076958656, + 0.005795983597636223, + -0.07179044187068939, + 0.005816080141812563, + 0.03491539508104324, + 0.03442683070898056, + -0.03399471938610077, + 0.04516992345452309, + -0.0007631179178133607, + 0.0002447384176775813, + -0.03300691023468971, + -0.02036239206790924, + 0.02722179889678955, + 0.03737848624587059, + -0.08036956936120987, + 0.09395446628332138, + 0.06087299436330795, + -0.11784102022647858, + -0.049537885934114456, + -0.0010328898206353188, + -0.02898658812046051, + -0.022459903731942177, + 0.007160230539739132, + -0.0522727444767952, + -0.03553285822272301, + -0.003418733598664403, + -0.1340171992778778, + -0.05106476694345474, + 0.03225167840719223, + 0.04491729661822319, + -0.05535050854086876, + -0.027343878522515297, + -0.05734000355005264, + -0.04960290342569351, + -0.06066863611340523, + 0.016239788383245468, + 0.013797604478895664, + -0.08114193379878998, + 0.0509130097925663, + 0.0528409406542778, + -0.05731764808297157, + -0.012883164919912815, + 0.0029427180998027325, + -0.02374134585261345, + 0.02815398760139942, + -0.03938940912485123, + 0.012127416208386421, + -8.016646475642414e-34, + 0.038542699068784714, + -0.009464507922530174, + -0.006292457692325115, + 0.07748104631900787, + 0.036941323429346085, + -0.012401090003550053, + -0.04144534841179848, + -0.09390339255332947, + -0.03718550503253937, + -0.01750299334526062, + -0.002912326017394662, + 0.010496429167687893, + -0.015121586620807648, + 0.08952457457780838, + -0.01726311445236206, + -0.06808851659297943, + -0.025808213278651237, + -0.052533525973558426, + -0.03128160536289215, + 0.06305563449859619, + -0.045750826597213745, + 0.05745914205908775, + -0.10490229725837708, + 0.019927721470594406, + 0.0234785545617342, + -0.11972728371620178, + 0.07352817058563232, + -0.09587903320789337, + -0.01647499017417431, + 0.01146839838474989, + 0.06676944345235825, + -0.04797995463013649, + -0.006945461500436068, + 0.032127801328897476, + -0.04219772294163704, + -0.004817594308406115, + -0.0066827465780079365, + -0.11291655153036118, + -0.034690212458372116, + 0.10074218362569809, + 0.013494961895048618, + 0.0331682525575161, + 0.0997776910662651, + -0.0010733348317444324, + 0.06206008046865463, + 0.13619261980056763, + -0.016698701307177544, + -0.003973528277128935, + 0.05968740954995155, + 0.09203269332647324, + -0.019662166014313698, + 0.04092666879296303, + 0.048373427242040634, + -0.0027236102614551783, + 0.012969679199159145, + -0.025303995236754417, + -0.01943781226873398, + 0.11262685060501099, + -0.030634287744760513, + 0.03776340186595917, + -0.042418938130140305, + 0.03602943196892738, + -0.011096655391156673, + -0.0425957627594471, + -0.02167024463415146, + 0.03208950161933899, + -0.13495153188705444, + 0.02378312684595585, + 0.07421285659074783, + 0.013561279512941837, + 0.011086700484156609, + 0.011554562486708164, + 0.03744709864258766, + 0.015146436169743538, + 0.0059258523397147655, + 0.03223980963230133, + -0.020429493859410286, + 0.023024816066026688, + -0.01049073040485382, + -0.028693147003650665, + -0.03673379123210907, + 0.0013335219118744135, + -0.0656716600060463, + 0.06957510858774185, + -0.027785999700427055, + 0.053961142897605896, + -0.09370241314172745, + -0.04632628709077835, + 0.026601076126098633, + -0.03778812289237976, + -0.027346866205334663, + 0.03758466988801956, + -0.017722992226481438, + -0.07146080583333969, + -0.10736224800348282, + -1.7057453424698284e-33, + -0.031786397099494934, + 0.03335581347346306, + -0.0014016884379088879, + 0.07167428731918335, + -0.015452811494469643, + 0.032950934022665024, + -0.04140571877360344, + 0.002866836031898856, + 0.07610403746366501, + 0.039669331163167953, + -0.023231301456689835, + 0.03571895882487297, + -0.006327789276838303, + -0.028647515922784805, + -0.048155829310417175, + 0.0394003763794899, + 0.010051364079117775, + 0.04192425310611725, + -0.006736228242516518, + 0.029513772577047348, + -0.11528491973876953, + 0.058970291167497635, + -0.0776480957865715, + 0.06777001917362213, + 0.049057766795158386, + 0.04746968299150467, + 0.0159352608025074, + 0.03745074197649956, + -0.01841663382947445, + -0.03877547010779381, + 0.003911102190613747, + -0.04663655906915665, + 0.009518452920019627, + 0.017937032505869865, + -0.029001601040363312, + 0.02891913801431656, + -0.015022682957351208, + -0.06413345038890839, + 0.044232599437236786, + 0.05172145739197731, + 0.020389996469020844, + -0.03767034411430359, + 0.020588377490639687, + 0.04820509999990463, + -0.02357994206249714, + -0.05458575114607811, + -0.042779866605997086, + 0.040054526180028915, + 0.004448969382792711, + 0.07519788295030594, + 0.02198450081050396, + 0.03045041859149933, + 0.015843790024518967, + 0.023885304108262062, + 0.021671272814273834, + -0.10402223467826843, + 0.029419103637337685, + 0.030086901038885117, + -0.07545697689056396, + 0.03349658101797104, + 0.026663826778531075, + 0.09610139578580856, + -0.002422445686534047, + 0.07653380930423737, + -0.012893247418105602, + 0.021158011630177498, + -0.059624236077070236, + -0.030518868938088417, + -0.009346958249807358, + -0.03217644244432449, + -0.00933768879622221, + 0.014370518736541271, + 0.02668873593211174, + 0.02048143744468689, + 0.006520806346088648, + -0.0157166738063097, + 0.0666378065943718, + -0.04258318245410919, + -0.003401343710720539, + 0.046671733260154724, + -0.05206730216741562, + -0.04793635383248329, + -0.004212383646517992, + 0.03162524104118347, + 0.06012558564543724, + 0.03943513706326485, + -0.07774278521537781, + -0.013238107785582542, + 0.11002765595912933, + 0.01907706819474697, + -0.05632166564464569, + 0.01129993051290512, + -0.012788672000169754, + 0.01850687712430954, + 0.07071726024150848, + -2.1745512057691485e-08, + 0.0692593902349472, + -0.06604117900133133, + -0.017752094194293022, + -0.019856004044413567, + 0.06367969512939453, + -0.04079287499189377, + 0.01759575493633747, + -0.054445065557956696, + -0.010016456246376038, + 0.05864374712109566, + -0.05140681937336922, + 0.07902751117944717, + -0.0929611399769783, + 0.051495011895895004, + 0.11507906019687653, + -0.008649114519357681, + 0.017954666167497635, + 0.03435700014233589, + -0.042678724974393845, + 0.021619055420160294, + -0.0887991413474083, + 0.03296974301338196, + -0.08879000693559647, + -0.020441262051463127, + 0.06728487461805344, + 0.0006527561345137656, + -0.00015062971215229481, + 0.003130940953269601, + 0.12672139704227448, + 0.04516381397843361, + 0.1336267590522766, + 0.05736479163169861, + -0.04059026390314102, + 0.015769371762871742, + -0.14148646593093872, + 0.01640099100768566, + -0.05549868568778038, + 0.01562444120645523, + 0.00922751147300005, + 0.10027408599853516, + -0.05234629660844803, + -0.06235405057668686, + 0.026376744732260704, + -0.030643479898571968, + -0.10118430107831955, + 0.012985043227672577, + -0.023912595584988594, + 0.0068998620845377445, + -0.020844461396336555, + -0.048863161355257034, + -0.033649932593107224, + -0.01060047559440136, + 0.032511040568351746, + 0.0018076725536957383, + -0.05502590164542198, + -0.02099199965596199, + 0.05639755353331566, + 0.002393958391621709, + 0.0569906160235405, + -0.044442687183618546, + 0.0011128660989925265, + -0.010887724347412586, + 0.053770214319229126, + 0.005299971904605627 + ], + "play-bold||music,audio,resume,start": [ + 0.05525078997015953, + -0.10019552707672119, + -0.010936161503195763, + -0.037322644144296646, + 0.018418002873659134, + 0.10803283751010895, + 0.02303406223654747, + -0.05733605846762657, + -0.030824754387140274, + -0.004788955673575401, + -0.030669303610920906, + 0.06640894711017609, + -0.02124599553644657, + -0.05997907370328903, + -0.00461588567122817, + 0.01494587305933237, + 0.014646812342107296, + 0.06469210982322693, + 0.046168986707925797, + -0.00831433106213808, + -0.014628777280449867, + 0.03917745500802994, + 0.02012685127556324, + 0.01800992712378502, + -0.016894828528165817, + 0.049279045313596725, + 0.047601331025362015, + 0.025561846792697906, + 0.01935425214469433, + -0.09217721223831177, + 0.04326546937227249, + -0.017018694430589676, + 0.1806173026561737, + -0.0026629704516381025, + -0.019427785649895668, + 0.033837031573057175, + -0.09725873172283173, + -0.057193052023649216, + -0.09449007362127304, + 0.013626056723296642, + 0.04844250902533531, + -0.054536089301109314, + -0.009595338255167007, + -0.02602836675941944, + -0.10680537670850754, + -0.10530855506658554, + -0.11300361156463623, + -0.06752661615610123, + 0.07142329961061478, + 0.031959403306245804, + -0.025175997987389565, + -0.0819304883480072, + -0.05626611039042473, + -0.0007396017899736762, + -0.010070597752928734, + 0.05361827835440636, + 0.030430993065238, + 0.08925062417984009, + 0.08190795034170151, + 0.022791344672441483, + -0.0006883046589791775, + -0.04738079383969307, + 0.030641574412584305, + -0.003511241637170315, + 0.043180834501981735, + -0.009367281571030617, + -0.01947290264070034, + 0.043113481253385544, + -0.05248139798641205, + 0.04164639860391617, + 0.011289619840681553, + 0.032147765159606934, + 0.0037045758217573166, + 0.0068850405514240265, + -0.02515537105500698, + -9.21834071050398e-05, + 0.03944886475801468, + -0.026475615799427032, + -0.09733293205499649, + -0.008899117819964886, + -0.03389816731214523, + -0.10552173107862473, + -0.057082969695329666, + -0.03136354684829712, + 0.06709656119346619, + 0.0479351207613945, + -0.03158760070800781, + -0.11308553069829941, + -0.06520537286996841, + 0.001484279753640294, + -0.1587989181280136, + -0.0117705212906003, + -0.0042191543616354465, + 0.035418760031461716, + -0.024211352691054344, + 0.02617480978369713, + 0.05161489173769951, + -0.0530056431889534, + 0.027285946533083916, + 0.032946277409791946, + 0.01861407980322838, + 0.02662312053143978, + 0.04280952736735344, + 0.025802141055464745, + -0.08100276440382004, + -0.12192582339048386, + -0.02842835895717144, + 0.046220358461141586, + -0.058088526129722595, + -0.04067583382129669, + 0.03209539130330086, + -0.09114278107881546, + -0.014690243639051914, + 0.004365422297269106, + 0.04768357425928116, + 0.06678428500890732, + 0.006095788441598415, + 0.0034003539476543665, + 0.08479786664247513, + 0.053663622587919235, + 0.0994960144162178, + -0.02889975719153881, + -0.07916654646396637, + -0.0651685819029808, + -0.02600444294512272, + 0.006622712593525648, + 0.07151495665311813, + -2.2293050161963058e-33, + 0.037640687078237534, + -0.035635318607091904, + -0.035225749015808105, + 0.12967786192893982, + 0.0434737429022789, + -0.07704856246709824, + -0.052767056971788406, + 0.04048585891723633, + -0.058391693979501724, + 0.06834335625171661, + 0.07135742902755737, + 0.06959555298089981, + -0.010105614550411701, + 0.015443617478013039, + -0.007947624661028385, + -0.07044758647680283, + -0.02226361073553562, + 0.018846232444047928, + -0.11990539729595184, + 0.0004778312286362052, + -0.022597819566726685, + -0.005365546327084303, + -0.011931152082979679, + 0.014619129709899426, + 0.028680410236120224, + 0.025729598477482796, + 0.03846248239278793, + -0.06369676440954208, + 0.014065532945096493, + 0.009214472025632858, + 0.0013787307543680072, + -0.042564619332551956, + -0.014589720405638218, + -0.020235396921634674, + 0.033787790685892105, + 0.04446546360850334, + -0.06215701997280121, + 0.05277801677584648, + 0.006727810949087143, + -0.07102331519126892, + -0.08835070580244064, + -0.031064672395586967, + -0.0313229113817215, + -0.05123218521475792, + -0.003002704354003072, + -0.033777087926864624, + 0.0005320035270415246, + 0.023573338985443115, + 0.04487662389874458, + 0.0451803058385849, + 0.038945168256759644, + 0.07507888972759247, + 0.0007962195668369532, + -0.01400805450975895, + 0.00387553870677948, + -0.04221105948090553, + -0.01176177617162466, + 0.10618138313293457, + 0.015112308785319328, + -0.005390694364905357, + 0.14113149046897888, + 0.008539484813809395, + 0.04332973435521126, + -0.028634365648031235, + 0.010045510716736317, + 0.08975017070770264, + 0.06289340555667877, + -0.009061324410140514, + 0.08621983975172043, + -0.03816426172852516, + 0.010592428967356682, + -0.02239038050174713, + 0.052564624696969986, + 0.05428197607398033, + -0.06497181951999664, + 0.07231798022985458, + -0.004742285702377558, + -0.07108941674232483, + -0.012303817085921764, + -0.05552962049841881, + -0.0035383780486881733, + 0.010948206298053265, + -0.06461729109287262, + 0.051597848534584045, + 0.04572177305817604, + 0.010199262760579586, + -0.030056264251470566, + -0.1289689689874649, + -0.061368513852357864, + 0.011906667612493038, + -0.10405024141073227, + 0.039645299315452576, + 0.003789301495999098, + -0.040306203067302704, + -0.02045908011496067, + 1.5147523519629175e-34, + 0.13102488219738007, + 0.05520378798246384, + -0.013016254641115665, + -0.06719156354665756, + -0.004599578678607941, + 0.031888075172901154, + 0.06819675862789154, + 0.0949159786105156, + -0.02615274302661419, + 0.0387483648955822, + 0.016449974849820137, + -0.04316973686218262, + -0.03709474205970764, + -0.02676445059478283, + -0.027239859104156494, + 0.01958034746348858, + 0.006212750915437937, + 0.06967959553003311, + 0.041103798896074295, + 0.03511552885174751, + -0.05013573542237282, + -0.09229447692632675, + 0.014794571325182915, + 0.032638613134622574, + -0.02190820872783661, + -0.0030981111340224743, + 0.029468568041920662, + 0.03704741224646568, + -0.05564061552286148, + 0.013044425286352634, + 0.07249957323074341, + 0.008628378622233868, + -0.02943776175379753, + -0.06517446786165237, + -0.031986482441425323, + 0.03595837950706482, + 0.02712644264101982, + 0.008579147979617119, + 0.011748246848583221, + -0.023050906136631966, + 0.0684676244854927, + 0.04424111172556877, + 0.011900619603693485, + -0.002782763447612524, + 0.008669884875416756, + 0.002533429767936468, + -0.015420807525515556, + 0.0033583545591682196, + -0.07448423653841019, + 0.02742736041545868, + 0.03916136920452118, + -0.029731374233961105, + 0.03284261375665665, + -0.11198654025793076, + -0.06544948369264603, + 0.004659287165850401, + 0.002311335876584053, + 0.0007855325820855796, + -0.048440199345350266, + 0.03649290278553963, + 0.06281840056180954, + 0.04901227727532387, + -0.07196091115474701, + -0.0998169407248497, + 0.06450381129980087, + 0.03138294816017151, + 0.0361107774078846, + -0.007459104992449284, + -0.016409970819950104, + -0.020901711657643318, + -0.013628070242702961, + 0.02356763184070587, + 0.01230723038315773, + 0.04123980551958084, + -0.07589931041002274, + 0.00648076506331563, + -0.03613537549972534, + -0.023142509162425995, + -0.0063896169885993, + 0.01746676117181778, + 0.016892025247216225, + -0.014494112692773342, + -0.007660035975277424, + -0.039701953530311584, + -0.009914434514939785, + 0.11755096167325974, + 0.03750380873680115, + 0.04232209920883179, + -0.01647239923477173, + 0.01938103325664997, + -0.029252981767058372, + 0.0876353308558464, + 0.06473241001367569, + -0.010235152207314968, + -0.08669360727071762, + -1.5993878221820523e-08, + -0.08377176523208618, + -0.019997235387563705, + 0.024013090878725052, + -0.02175537496805191, + -0.03348996490240097, + -0.049781739711761475, + -0.016699347645044327, + -0.10447115451097488, + -0.00012671839795075357, + -0.0755508691072464, + 0.01484746765345335, + -0.030443886294960976, + 0.032157544046640396, + 0.024219244718551636, + 0.01253103744238615, + 0.0640791803598404, + -0.04374999552965164, + 0.11657723784446716, + -0.03327566012740135, + -0.012570774182677269, + 0.0112301679328084, + 0.10205385088920593, + 0.04359031841158867, + -0.019960712641477585, + 0.04362717270851135, + 0.010087063536047935, + -0.0011774895247071981, + 0.011912108398973942, + 0.09904492646455765, + 0.0028319121338427067, + 0.02533584088087082, + 0.05644109845161438, + 0.0035852245055139065, + -0.0704180970788002, + -0.0790242999792099, + -0.01590142771601677, + 0.048134028911590576, + -0.02932383306324482, + -0.03922475874423981, + 0.05898742005228996, + 0.040674809366464615, + 0.02576540783047676, + -0.016496356576681137, + -0.0271151103079319, + -0.0836627259850502, + -0.0031284401193261147, + 0.039828479290008545, + 0.002220052992925048, + -0.041723500937223434, + -0.021471736952662468, + -0.10717066377401352, + 0.01976209506392479, + -0.03551877290010452, + 0.006650532130151987, + 0.050519440323114395, + -0.019520137459039688, + -0.006429973058402538, + 0.10855691879987717, + -0.07506381720304489, + -0.016108818352222443, + 0.00875821802765131, + 0.03172019124031067, + 0.021830851212143898, + 0.054265715181827545 + ], + "play-circle-bold||music,audio,resume,start,round": [ + 0.047208815813064575, + -0.05975606292486191, + -0.06773333996534348, + -0.04948263615369797, + 0.027101460844278336, + 0.06344349682331085, + 0.04887806251645088, + -0.04417470470070839, + 0.033386796712875366, + -0.0489216148853302, + -0.029892759397625923, + 0.0629471093416214, + -0.003376825712621212, + -0.057915303856134415, + 0.017567310482263565, + -0.0023521820548921824, + -0.024119360372424126, + 0.05334736406803131, + 0.05998280271887779, + -0.04496777057647705, + -0.028381600975990295, + 0.005658324807882309, + 0.030404120683670044, + 0.0707627683877945, + -0.04473627358675003, + 0.08534947782754898, + 0.0420270711183548, + 0.03758731484413147, + 0.003041868330910802, + -0.10387317091226578, + -0.029566511511802673, + 0.039932575076818466, + 0.1590563952922821, + -0.031398508697748184, + -0.05347147956490517, + -0.0006183454534038901, + -0.09530577063560486, + 0.001213805633597076, + -0.06400946527719498, + -0.019785620272159576, + 0.060406722128391266, + -0.04386105760931969, + 0.042269304394721985, + -0.036593109369277954, + -0.10562507808208466, + -0.052686795592308044, + -0.1676645129919052, + -0.056007083505392075, + 0.04590623080730438, + 0.05423940718173981, + -0.02626384235918522, + -0.11293819546699524, + -0.07042913138866425, + -0.0032605722080916166, + 0.004308673553168774, + 0.04239391162991524, + 0.042332347482442856, + 0.05721922591328621, + 0.11462173610925674, + 0.0005953412037342787, + 0.028136711567640305, + -0.05919599533081055, + 0.04669126495718956, + 0.019306892529129982, + 0.006353728473186493, + -0.029119133949279785, + -0.0263547170907259, + -0.010851593688130379, + -0.039882224053144455, + -0.0023179175332188606, + 0.00899721123278141, + 0.03122103214263916, + -0.024008024483919144, + -0.016805650666356087, + 0.02342616207897663, + 0.026379046961665154, + -0.00717697199434042, + 0.006051955278962851, + -0.1282040923833847, + -0.0024415210355073214, + -0.030168302357196808, + -0.07921672612428665, + -0.016567062586545944, + 0.015165945515036583, + 0.044953603297472, + 0.04985896125435829, + 0.015925627201795578, + -0.11649317294359207, + -0.06921490281820297, + -0.012273058295249939, + -0.1683703362941742, + 0.025403695181012154, + -0.04706961289048195, + 0.009262314066290855, + -0.05296504497528076, + 0.01926577091217041, + 0.03840380907058716, + -0.09075091034173965, + -0.03154280036687851, + 0.05581428483128548, + 0.05602172017097473, + -0.010028759017586708, + 0.052733566612005234, + -0.013996371068060398, + -0.06241403520107269, + -0.11435610800981522, + -0.008231036365032196, + 0.03583436459302902, + -0.03828304633498192, + -0.009675794281065464, + 0.02382921800017357, + -0.08305491507053375, + -0.005097531713545322, + 0.010099921375513077, + 0.04115300253033638, + 0.05196073278784752, + -0.025328855961561203, + 0.00527413422241807, + 0.0924035981297493, + 0.04463855177164078, + 0.10748342424631119, + -0.004834167193621397, + -0.11695786565542221, + -0.05824803188443184, + -0.047289349138736725, + 0.022462258115410805, + 0.05194392055273056, + -2.758871466055485e-33, + 0.005695413798093796, + 0.005367920733988285, + -0.017325865104794502, + 0.07945846021175385, + 0.03343778848648071, + -0.10160720348358154, + -0.04987877607345581, + 0.02253136783838272, + 0.008680902421474457, + 0.04461776092648506, + 0.03941996395587921, + 0.04173975810408592, + -0.00888653751462698, + -0.0005775629542768002, + 0.03926747292280197, + -0.08957802504301071, + 0.020882613956928253, + 0.006689260248094797, + -0.13669167459011078, + -0.024277281016111374, + -0.04460451751947403, + 0.0071433549746870995, + -0.025003958493471146, + 0.009196992963552475, + 0.014676708728075027, + 0.059889085590839386, + 0.019594047218561172, + -0.06770136952400208, + 0.006720394361764193, + 0.026449231430888176, + 0.009109298698604107, + -0.029021501541137695, + 0.008735126815736294, + 0.0015689559513702989, + 0.04818807169795036, + 0.05117882415652275, + -0.05302607640624046, + 0.0542815737426281, + -0.013249160721898079, + -0.05482761189341545, + -0.08310296386480331, + -0.047724876552820206, + -0.05691748112440109, + -0.013278841972351074, + -0.003243574872612953, + 0.005381967406719923, + 0.00011648505460470915, + 0.035898059606552124, + 0.0216293353587389, + 0.037774305790662766, + 0.00426182895898819, + 0.09000260382890701, + -0.022331824526190758, + -0.03714391961693764, + 0.026300759986042976, + -0.07389328628778458, + 0.03255005180835724, + 0.08855544775724411, + -0.0392216332256794, + -0.018494464457035065, + 0.14979003369808197, + 0.024756204336881638, + 0.026565462350845337, + -0.06601099669933319, + -0.015889599919319153, + 0.08082012087106705, + 0.016593024134635925, + -0.05264473706483841, + 0.07704196125268936, + -0.04645398631691933, + 0.01424065139144659, + 0.002843032358214259, + 0.07866379618644714, + 0.09250415116548538, + -0.08075543493032455, + 0.04233633726835251, + 0.0006977140437811613, + -0.04759519174695015, + 0.008212218061089516, + -0.06164577975869179, + -0.029839862138032913, + 0.012370442040264606, + -0.053061190992593765, + 0.003575421404093504, + 0.04242739826440811, + -0.02523569017648697, + 0.018592648208141327, + -0.11026648432016373, + -0.06396223604679108, + -0.018783964216709137, + -0.11496137082576752, + 0.06462927162647247, + 0.024375801905989647, + 0.013096721842885017, + -0.0659833699464798, + 6.876254865694076e-34, + 0.09801128506660461, + 0.05417795106768608, + 0.013677951879799366, + -0.022384852170944214, + 0.010566066019237041, + 0.04827798157930374, + 0.06037946045398712, + 0.07740801572799683, + -0.0019650741014629602, + 0.06401867419481277, + -0.006556946784257889, + -0.031864214688539505, + -0.03910111263394356, + -0.01563427969813347, + 0.022503172978758812, + 0.03495905548334122, + 0.03340519219636917, + 0.05099134519696236, + 0.03749464079737663, + 0.04591410979628563, + -0.0454837940633297, + -0.08986973017454147, + 0.003702276386320591, + 0.04668829217553139, + -0.04910656064748764, + 0.019244512543082237, + 0.04712760075926781, + -0.015686092898249626, + -0.048745039850473404, + 0.04041876643896103, + 0.004499285947531462, + -0.04131040349602699, + 0.0049107871018350124, + -0.03842877596616745, + -0.012707282789051533, + -0.023888498544692993, + 0.04526524245738983, + -0.01969846710562706, + -0.048355963081121445, + -0.045263200998306274, + 0.011910947971045971, + 0.012493125163018703, + 0.01832214556634426, + 0.011301789432764053, + 0.017216825857758522, + -0.043507080525159836, + 0.03972160071134567, + 0.061021894216537476, + -0.09162353724241257, + 0.0454542450606823, + 0.04701603949069977, + -0.005909942090511322, + 0.056353162974119186, + -0.07567174732685089, + -0.05924045294523239, + 0.03624787926673889, + -0.025926601141691208, + 0.02210630290210247, + -0.00985250249505043, + 0.024801237508654594, + 0.024058448150753975, + 0.021816955879330635, + -0.06846336275339127, + -0.03885464370250702, + 0.06087863817811012, + 0.07038382440805435, + 0.04843166470527649, + -0.01782560534775257, + -0.04032830893993378, + 0.03867824375629425, + -0.024130813777446747, + 0.0760057121515274, + -0.00020022387616336346, + 0.012989836744964123, + -0.052947163581848145, + 0.016651306301355362, + -0.012380441650748253, + -0.03419626131653786, + -0.025523442775011063, + 0.023944661021232605, + -0.003334339242428541, + 0.01037009060382843, + 0.0018925589974969625, + -0.035491518676280975, + -0.0035325605422258377, + 0.0758444294333458, + 0.03855430334806442, + 0.04546837881207466, + -0.028658395633101463, + 0.05203285068273544, + -0.007158040069043636, + 0.09446399658918381, + 0.05021790787577629, + 0.01409159041941166, + -0.01843573898077011, + -1.779728542317116e-08, + -0.07463875412940979, + -0.008430995978415012, + 0.014239726588129997, + 0.000638237630482763, + 0.03633037209510803, + -0.050401464104652405, + -0.006966015789657831, + -0.12097091227769852, + -0.017692994326353073, + -0.08476470410823822, + 0.013308138586580753, + -0.006429027300328016, + 0.018957361578941345, + 0.02216675691306591, + -0.0020680490415543318, + 0.07265949994325638, + -0.061072174459695816, + 0.14206473529338837, + -0.020486025139689445, + 0.004879058804363012, + 0.007349333260208368, + 0.05891324207186699, + 0.0593472495675087, + -0.07703579217195511, + 0.018010932952165604, + 0.009835266508162022, + -0.016236206516623497, + 0.05140450596809387, + 0.0596400685608387, + -0.031498074531555176, + 0.0010779976146295667, + 0.05580233782529831, + -0.005800205282866955, + -0.052293561398983, + -0.06948542594909668, + -0.05712704360485077, + 0.003402810310944915, + 0.004041128791868687, + -0.022251902148127556, + 0.061304569244384766, + 0.024436580017209053, + 0.05519542843103409, + -0.0054722935892641544, + -0.014284372329711914, + -0.05156302824616432, + 0.013829506933689117, + 0.06634148210287094, + -0.014592837542295456, + -0.06989771872758865, + -0.03394761309027672, + -0.11961229890584946, + 0.01619395799934864, + 0.009068375453352928, + 0.026982715353369713, + 0.058051321655511856, + -0.01404254138469696, + 0.02706846408545971, + 0.11369707435369492, + -0.11638186872005463, + 0.016270725056529045, + -0.025394821539521217, + 0.069505974650383, + 0.04272604361176491, + 0.04325903579592705 + ], + "play-pause-bold||music,audio,resume,start,stop": [ + 0.04933851957321167, + -0.07158097624778748, + -0.015949416905641556, + -0.05643193796277046, + 0.03159487619996071, + 0.09447877109050751, + 0.043749094009399414, + -0.08966878056526184, + -0.017825057730078697, + -0.00028957767062820494, + -0.012485526502132416, + 0.039180170744657516, + -0.024515831843018532, + -0.06758541613817215, + -0.04181438684463501, + 0.030552653595805168, + -0.00920235924422741, + 0.07939593493938446, + 0.043954260647296906, + -0.013548964634537697, + 0.005727172363549471, + 0.054759394377470016, + 0.028650231659412384, + 0.045599568635225296, + -0.03702308610081673, + 0.06191876903176308, + 0.02616923674941063, + 0.01708684116601944, + 0.031973473727703094, + -0.0773225873708725, + 0.03144100680947304, + -0.031717635691165924, + 0.1728915274143219, + -0.004438193514943123, + -0.027903031557798386, + -0.005613741464912891, + -0.09502826631069183, + -0.014636767096817493, + -0.07602386921644211, + 0.017134809866547585, + 0.025976959615945816, + -0.0708572193980217, + 0.01646801084280014, + -0.06473606079816818, + -0.10034754872322083, + -0.084459587931633, + -0.13145612180233002, + -0.07447437942028046, + 0.06278172135353088, + 0.04429975152015686, + -0.026501361280679703, + -0.07794468849897385, + -0.06600210815668106, + 0.01599469594657421, + 0.030711542814970016, + 0.032684676349163055, + 0.04749295115470886, + 0.0914713591337204, + 0.09598657488822937, + 0.027326202020049095, + -0.023778770118951797, + -0.03567127510905266, + -0.004916846752166748, + 0.0023598403204232454, + 0.03365854546427727, + 0.0460263229906559, + -0.01168217696249485, + 0.02146878093481064, + -0.028476133942604065, + 0.04248278960585594, + -0.003682873910292983, + 0.03831356018781662, + 0.007502926513552666, + 0.008855490945279598, + -0.026152804493904114, + 0.009293671697378159, + 0.042768124490976334, + -0.023749688640236855, + -0.10031341016292572, + -0.009077848866581917, + -0.027687018737196922, + -0.11439967155456543, + -0.029132042080163956, + -0.04504614323377609, + 0.05610845983028412, + 0.051394104957580566, + -0.01829778589308262, + -0.0893244817852974, + -0.05141516402363777, + -0.016118749976158142, + -0.1730351746082306, + -0.023969238623976707, + 0.028925349935889244, + 0.027626916766166687, + -0.03415553644299507, + 0.04758957028388977, + 0.062170643359422684, + -0.05308814346790314, + 0.030463891103863716, + 0.008735374547541142, + 0.04158435016870499, + 0.0083770165219903, + 0.036035798490047455, + 0.0005673205014318228, + -0.06209828704595566, + -0.12878429889678955, + 0.00479867635294795, + 0.04021894186735153, + -0.05987551808357239, + -0.028527693822979927, + 0.02634492702782154, + -0.0789729580283165, + -0.026071805506944656, + -0.008355004712939262, + 0.04083671793341637, + 0.07979701459407806, + 0.01208443008363247, + 0.007793874945491552, + 0.11561132222414017, + 0.01882176287472248, + 0.09810112416744232, + -0.01214668620377779, + -0.08491187542676926, + -0.0848589539527893, + -0.017654122784733772, + -0.004595385864377022, + 0.05507602170109749, + -2.383115513265525e-33, + 0.022812679409980774, + -0.06027883663773537, + -0.0438162200152874, + 0.12253482639789581, + 0.04978509992361069, + -0.050178561359643936, + -0.07595101743936539, + 0.03198876604437828, + -0.062345873564481735, + 0.05832260847091675, + 0.07263895124197006, + 0.037225257605314255, + -0.006159289740025997, + -0.0022892761044204235, + 0.027615655213594437, + -0.07928760349750519, + 0.0111631965264678, + 0.017802881076931953, + -0.11193368583917618, + -0.004569362383335829, + 0.014644392766058445, + -0.013138685375452042, + 0.007838809862732887, + 0.07874731719493866, + 0.0393778532743454, + 0.02971167303621769, + 0.005343171767890453, + -0.06613355875015259, + 0.04061346873641014, + 0.010338044725358486, + -0.010326105169951916, + -0.023163912817835808, + -0.015681663528084755, + -0.03301176428794861, + 0.02998506650328636, + 0.03703797981142998, + -0.06726144254207611, + 0.0503128319978714, + 0.02026345767080784, + -0.08385005593299866, + -0.13192881643772125, + -0.05583007261157036, + -0.04858255013823509, + -0.03104107640683651, + 0.020764727145433426, + -0.06645709276199341, + -0.005085535813122988, + 0.01410298515111208, + 0.012861757539212704, + 0.04450957477092743, + 0.02935360185801983, + 0.1005726158618927, + -0.011154606938362122, + -0.014835787005722523, + 0.01695817895233631, + -0.04467059671878815, + 0.003564450889825821, + 0.14233742654323578, + -0.009891480207443237, + 0.03621071204543114, + 0.11552731692790985, + -0.007268399465829134, + 0.06363872438669205, + -0.02767968364059925, + -0.009930470027029514, + 0.11650391668081284, + 0.038940880447626114, + 0.0028487276285886765, + 0.050277937203645706, + -0.027165524661540985, + 0.0028851081151515245, + -0.024344895035028458, + 0.05112157016992569, + 0.05434237793087959, + -0.09785201400518417, + 0.060671888291835785, + -0.02418374828994274, + -0.06225268915295601, + 0.0010989594738930464, + -0.046728942543268204, + -0.0095110097900033, + 0.009800543077290058, + -0.0798569992184639, + 0.020357191562652588, + 0.021785371005535126, + -0.013987772166728973, + -0.03798069432377815, + -0.09949643164873123, + -0.06710876524448395, + -0.007055971771478653, + -0.11430368572473526, + 0.0713493674993515, + 0.01214988250285387, + -0.05117417126893997, + -0.04957186058163643, + -1.5448198673768948e-34, + 0.11774469912052155, + 0.05419580638408661, + -0.018154647201299667, + -0.04840359464287758, + -0.012510410510003567, + 0.031349487602710724, + 0.0698668509721756, + 0.08826745301485062, + -0.03368780016899109, + 0.02336115948855877, + 0.037548258900642395, + -0.033537834882736206, + -0.028115909546613693, + -0.025987200438976288, + -0.03728858381509781, + 0.034726787358522415, + 0.03314421698451042, + 0.05032919719815254, + 0.04387446120381355, + 0.028984803706407547, + -0.06200556084513664, + -0.0928279235959053, + 0.00491779251024127, + 0.03796765208244324, + -0.05695192515850067, + -0.005901779048144817, + -0.0026986883021891117, + 0.029159221798181534, + -0.01689939573407173, + 0.008761454373598099, + 0.0625155046582222, + 0.02871120721101761, + -0.02311680279672146, + -0.06659476459026337, + -0.021377917379140854, + 0.017353888601064682, + 0.00030394745408557355, + 0.012698430567979813, + -0.0011042924597859383, + 2.1043621018179692e-05, + 0.08346395939588547, + 0.04121590033173561, + 0.041220590472221375, + 0.010094204917550087, + 0.010842641815543175, + 0.009337227791547775, + 0.0014318614266812801, + -0.003947989083826542, + -0.0813671424984932, + 0.01940975710749626, + 0.021182266995310783, + -0.031552765518426895, + 0.021161144599318504, + -0.11060676723718643, + -0.07477636635303497, + -0.003401686204597354, + -0.019191529601812363, + 0.014488005079329014, + -0.0690312460064888, + 0.01911672204732895, + 0.07414238154888153, + 0.025770168751478195, + -0.04393203929066658, + -0.05496979132294655, + 0.07642729580402374, + 0.04518946260213852, + 0.06069440022110939, + 0.0001851449633250013, + -0.00300508551299572, + -0.006815082859247923, + 0.03795168176293373, + 0.011242030188441277, + 0.008594670332968235, + 0.040037013590335846, + -0.07937943935394287, + 0.003956261556595564, + -0.038126394152641296, + -0.041426222771406174, + 0.0015731852035969496, + -0.006936691235750914, + 0.03246606886386871, + 0.00790385715663433, + 0.03153415396809578, + -0.022526012733578682, + -0.0371742844581604, + 0.10166946798563004, + -0.008470077998936176, + 0.037714265286922455, + -0.006733235437422991, + 0.028966790065169334, + -0.031161705031991005, + 0.0787975937128067, + 0.05294867604970932, + -0.019770720973610878, + -0.08050300925970078, + -1.8129563628122014e-08, + -0.04885696992278099, + -0.036099549382925034, + 0.020416928455233574, + -0.04149256646633148, + -0.039629027247428894, + -0.05850156769156456, + -0.025094186887145042, + -0.09259375184774399, + -0.015469455160200596, + -0.05586737021803856, + 0.03195427730679512, + 0.003050236264243722, + 0.04526360705494881, + 0.032022666186094284, + -0.004224074073135853, + 0.061080243438482285, + -0.036847811192274094, + 0.12504561245441437, + -0.003447973169386387, + -0.016790637746453285, + 0.020018545910716057, + 0.07377707213163376, + 0.021724335849285126, + -0.04162745177745819, + 0.02851300686597824, + 0.005913387052714825, + -0.022571986541152, + 0.033570900559425354, + 0.10070100426673889, + -0.04408165067434311, + 0.02721490152180195, + 0.0377463698387146, + -0.022458117455244064, + -0.06937281787395477, + -0.059766173362731934, + -0.009056261740624905, + 0.0241870004683733, + -0.035983309149742126, + -0.010409514419734478, + 0.04111423343420029, + 0.051672130823135376, + 0.01814032718539238, + -0.03252464160323143, + -0.007628541439771652, + -0.09022461622953415, + 0.008694875985383987, + 0.051366791129112244, + 0.006380400154739618, + -0.02515530213713646, + 0.015197968110442162, + -0.1275038719177246, + 0.028486035764217377, + -0.01704043708741665, + 0.027386801317334175, + 0.04708994925022125, + -0.00044841394992545247, + -0.023526502773165703, + 0.0922623872756958, + -0.06604499369859695, + -0.033409543335437775, + 0.025268729776144028, + 0.012489957734942436, + 0.029294386506080627, + 0.04518590494990349 + ], + "playlist-bold||*updated*,music,audio,queue": [ + -0.009486361406743526, + -0.07309728115797043, + -0.07137350738048553, + -0.008265398442745209, + 0.021358396857976913, + 0.04868762940168381, + 0.12803685665130615, + -0.09915243834257126, + 0.007172701880335808, + 0.0335625521838665, + -0.02862371690571308, + 0.055969975888729095, + -0.025625288486480713, + -0.08658605813980103, + -0.026469429954886436, + -0.009102512151002884, + 0.05855368450284004, + 0.05003467574715614, + 0.0015844778390601277, + -0.05363478139042854, + -0.03287379816174507, + 0.06743644922971725, + -0.016756819561123848, + 0.044956766068935394, + 0.0009649681742303073, + -0.0207855012267828, + 0.012378460727632046, + -0.012432863004505634, + -0.012456589378416538, + -0.08753875643014908, + 0.024803509935736656, + -0.012969020754098892, + 0.15075132250785828, + -0.03523921221494675, + 0.019221259281039238, + -0.06264232099056244, + -0.04811533913016319, + -0.0724312886595726, + -0.06100286915898323, + 0.039003800600767136, + 0.06609731167554855, + 0.023571563884615898, + -0.01917842961847782, + 0.00544967083260417, + -0.15524132549762726, + -0.044110313057899475, + -0.12362554669380188, + -0.10051117837429047, + 0.004322268534451723, + 0.028137335553765297, + -0.016552111133933067, + -0.08678030967712402, + -0.10495037585496902, + -0.030824825167655945, + -0.029886409640312195, + -0.014129082672297955, + -0.024579597637057304, + 0.05156508833169937, + 0.032992519438266754, + -0.026607533916831017, + 0.01412034872919321, + -0.03296435624361038, + 0.0940399244427681, + 0.007041056174784899, + 0.02016514353454113, + -0.04849784076213837, + 0.013424703851342201, + 0.013671107590198517, + -0.005397043190896511, + 0.041798945516347885, + 0.047387413680553436, + 0.08528931438922882, + 0.039753999561071396, + -0.036973677575588226, + -0.01242736168205738, + 0.022714445367455482, + 0.038820307701826096, + -0.028379905968904495, + -0.09822633862495422, + -0.047485195100307465, + -0.014621994458138943, + -0.11176297813653946, + -0.04357277601957321, + -0.10212263464927673, + 0.053502146154642105, + -0.05434669181704521, + -0.06478014588356018, + -0.04605241119861603, + -0.1179635301232338, + -0.0249727051705122, + -0.08140498399734497, + 0.031024418771266937, + 0.009928157553076744, + -0.005143844988197088, + -0.040518391877412796, + 0.09450162202119827, + 0.02127094194293022, + -0.01220922451466322, + -0.061570920050144196, + 0.05760578066110611, + 0.0031265479046851397, + 0.0681016594171524, + -0.018821684643626213, + 0.03560655936598778, + -0.027978383004665375, + -0.06566053628921509, + -0.043283894658088684, + 0.05616263672709465, + -0.020330335944890976, + -0.015785304829478264, + -0.015122855082154274, + -0.03317923843860626, + -0.005457927007228136, + -0.06269761174917221, + -0.031684502959251404, + 0.05364704504609108, + 0.055473752319812775, + 0.032646410167217255, + 0.03836240619421005, + 0.10565020889043808, + 0.09212269634008408, + -0.042141228914260864, + -0.04963233321905136, + -0.09357496351003647, + -0.0038002710789442062, + 0.0331059992313385, + 0.09111148118972778, + -3.5582041348657866e-33, + 0.04864194989204407, + -0.08230376988649368, + -0.02196587063372135, + 0.03443681076169014, + 0.048993293195962906, + -0.04212502762675285, + -0.010598376393318176, + 0.0029918882064521313, + -0.01630866713821888, + -0.005470641423016787, + 0.1025858074426651, + 0.036980174481868744, + 0.0035983382258564234, + 0.07501542568206787, + -0.005407890770584345, + -0.0418192520737648, + -0.028195012360811234, + 0.05646286532282829, + -0.06129201501607895, + -0.005080076865851879, + -0.05163872614502907, + -0.021727414801716805, + -0.015922587364912033, + -0.00133036938495934, + -0.0021358367521315813, + 0.030142493546009064, + 0.015521070919930935, + -0.022823523730039597, + 0.015775499865412712, + 0.010095209814608097, + -0.016628000885248184, + -0.019632896408438683, + 0.04201258718967438, + -0.0021575605496764183, + -0.0007188873132690787, + 0.102434903383255, + -0.09657282382249832, + 0.012339431792497635, + 0.043949760496616364, + -0.13640527427196503, + -0.03103281930088997, + -0.07403746992349625, + -0.08407009392976761, + -0.05253032594919205, + -0.011305908672511578, + 0.058700963854789734, + -0.07963281124830246, + -0.033540062606334686, + 0.020442308858036995, + 0.02613118849694729, + 0.022983651608228683, + 0.0660475343465805, + -0.03186095133423805, + 0.0193474143743515, + 0.011987634934484959, + -0.03474324569106102, + 0.04167916998267174, + 0.08504141867160797, + 0.05076261982321739, + 0.044828590005636215, + 0.10263320058584213, + 0.03370864689350128, + 0.036918237805366516, + -0.04708026349544525, + 0.02571634016931057, + 0.14835473895072937, + 0.033058784902095795, + -0.02166338637471199, + 0.10944247245788574, + -0.010499609634280205, + 0.049420662224292755, + -0.005873264744877815, + 0.07698541134595871, + 0.08141601830720901, + -0.0725574642419815, + 0.0041634803637862206, + -0.048511143773794174, + -0.08360473811626434, + 0.02347087301313877, + -0.06936828792095184, + -0.0035622052382677794, + -0.030133061110973358, + -0.0698055550456047, + 0.12503142654895782, + 0.001825888641178608, + 0.007817858830094337, + 0.006205218378454447, + -0.02451637014746666, + -0.03340930491685867, + 0.010299772024154663, + -0.08949072659015656, + 0.04969652742147446, + 0.009129498153924942, + -0.04494938626885414, + -0.00808744691312313, + -4.6253448143426335e-34, + 0.07508201152086258, + 0.06298879534006119, + -0.05651704594492912, + -0.05679570883512497, + 0.004371470306068659, + 0.0048104845918715, + -0.05471689626574516, + 0.10850465297698975, + 0.07454559206962585, + 0.013175384141504765, + -0.012247574515640736, + -0.023419521749019623, + -0.08633463084697723, + -0.04563916102051735, + 0.019923029467463493, + 0.02140503190457821, + -0.03295363485813141, + 0.02208639495074749, + 0.004462066572159529, + 0.012813135050237179, + -0.09051638841629028, + -0.004559486173093319, + 0.011872701346874237, + 0.11635806411504745, + -0.018495015799999237, + -0.04834842309355736, + 0.034980349242687225, + -0.003982932772487402, + -0.011174491606652737, + -0.03805045410990715, + 0.04309982433915138, + -0.03893860802054405, + -0.035934384912252426, + -0.047823645174503326, + 0.04013332352042198, + 0.01564735732972622, + 0.09850244224071503, + 0.04617359861731529, + -0.011622561141848564, + 0.03749392554163933, + -0.010947572998702526, + 0.04942968487739563, + 0.0023652706295251846, + -0.05422281101346016, + 0.014365136623382568, + -0.012498046271502972, + -0.009365752339363098, + 0.03250671178102493, + -0.031047547236084938, + 0.05348191782832146, + 0.04604469612240791, + -0.04185163974761963, + 0.025397373363375664, + 0.009820076636970043, + -0.03829522058367729, + 0.019028248265385628, + -0.0575454905629158, + -0.005554163362830877, + 0.023172464221715927, + 0.07431696355342865, + -0.01888093538582325, + 0.04483479633927345, + -0.025430088862776756, + -0.10574139654636383, + 0.057520270347595215, + 0.0025911058764904737, + 0.02570887841284275, + -0.09646732360124588, + 0.041980255395174026, + 0.014899931848049164, + -0.007473850157111883, + 0.005050444509834051, + -0.05582165718078613, + 0.059255052357912064, + -0.022063767537474632, + -0.04432941973209381, + -0.03748796135187149, + -0.029694637283682823, + -0.008117221295833588, + -0.0033988142386078835, + 0.017724785953760147, + 0.013717595487833023, + 0.030946332961320877, + -0.03829609975218773, + -0.008393843658268452, + 0.05084121227264404, + 0.08014873415231705, + -0.011555706150829792, + -0.022257527336478233, + -0.05639075115323067, + -0.02189846709370613, + -0.019801035523414612, + 0.02533656917512417, + -0.004768525715917349, + -0.06566771119832993, + -1.9105238280303638e-08, + -0.061458248645067215, + -0.0030629835091531277, + -0.030566072091460228, + 0.022425398230552673, + 0.046593859791755676, + -0.021837815642356873, + -0.04553837701678276, + -0.07677266001701355, + -0.006762612145394087, + -0.05225037783384323, + 0.06298988312482834, + -0.05490685626864433, + 0.05359763652086258, + 0.009724438190460205, + 0.05916329473257065, + 0.04226455092430115, + -0.05859310179948807, + 0.07590927183628082, + -0.03269190713763237, + 0.005345294252038002, + -0.0385071225464344, + 0.09297823905944824, + 0.041736721992492676, + -0.0711498036980629, + 0.00800393894314766, + 0.016878334805369377, + 0.038565345108509064, + -0.010355565696954727, + 0.07614055275917053, + 0.08627686649560928, + 0.031894486397504807, + 0.009240706451237202, + 0.025142909958958626, + -0.008907117880880833, + -0.03184061497449875, + -0.05727369710803032, + 0.009727240540087223, + -0.041575729846954346, + -0.023273032158613205, + 0.12150224298238754, + 0.005330072715878487, + 0.005670954938977957, + -0.037823230028152466, + 0.007089816965162754, + -0.05650385841727257, + -0.030286524444818497, + -0.005445263814181089, + -0.04482926055788994, + -0.08539265394210815, + -0.03031768836081028, + -0.047617439180612564, + 0.04878213256597519, + 0.010366571135818958, + -0.010364312678575516, + 0.028865698724985123, + -0.010415356606245041, + 0.03493299335241318, + 0.09507586061954498, + -0.007336141541600227, + -0.009524342603981495, + 0.06915215402841568, + 0.014965853653848171, + 0.04159579426050186, + 0.1092386469244957 + ], + "plug-bold||outlet,socket,plugin,integration": [ + -0.029326843097805977, + -0.027203839272260666, + -0.05656873807311058, + 0.06391257047653198, + 0.02509644441306591, + 0.006272556725889444, + 0.016736330464482307, + -0.03703967481851578, + 0.008588599972426891, + -0.028798507526516914, + 0.09656736254692078, + 0.032405730336904526, + 0.021883836016058922, + 0.02381453476846218, + -0.008363061584532261, + 0.02644861862063408, + -0.021633129566907883, + -0.016764486208558083, + -0.008189571090042591, + -0.0034988427069038153, + -0.028632843866944313, + 0.029148463159799576, + -0.024903612211346626, + -0.014329744502902031, + 0.0377902127802372, + 0.017783932387828827, + 0.1200135350227356, + 0.06046793609857559, + 0.003021353855729103, + -0.07419640570878983, + 0.007311029825359583, + -0.05016937106847763, + -0.0013329539215192199, + 0.0013837430160492659, + 0.003747797105461359, + 0.004936947952955961, + 0.010399013757705688, + -0.0588141493499279, + -0.016669360920786858, + -0.0021437406539916992, + 0.06901968270540237, + -0.0980420932173729, + -0.004084426909685135, + 0.007144328206777573, + -0.014250798150897026, + -0.06967930495738983, + -0.07337168604135513, + -0.0734500139951706, + 0.029896315187215805, + -0.09993946552276611, + 0.051382485777139664, + -0.07541482895612717, + -0.05930648371577263, + 0.06617672741413116, + 0.0764927864074707, + -0.02391497790813446, + -0.08717604726552963, + 0.006432984955608845, + 0.04178343713283539, + -0.014919376000761986, + -0.011316865682601929, + 0.01121473591774702, + 0.0689731240272522, + 0.04259701073169708, + -0.08273477852344513, + -0.0030232437420636415, + 0.0018377822125330567, + 0.027657687664031982, + -0.090700663626194, + -0.018051227554678917, + -0.04807571694254875, + -0.05142617225646973, + -0.032576266676187515, + -0.11359822750091553, + -0.02025238238275051, + 0.025753915309906006, + 0.021279536187648773, + 0.004614014178514481, + -0.08718101680278778, + -0.03627260774374008, + 0.0320604145526886, + -0.05091869831085205, + -0.08612821251153946, + 0.07159386575222015, + 0.0617130845785141, + 0.10613537579774857, + -0.04240238294005394, + -0.12217418849468231, + -0.09717093408107758, + -0.021480925381183624, + -0.006709268782287836, + -0.00526601355522871, + 0.018951594829559326, + -0.00747984554618597, + -0.007391942664980888, + -0.0063918051309883595, + 0.04153633862733841, + -0.005808868911117315, + -0.07907064259052277, + 0.06597589701414108, + 0.02044922485947609, + 0.027905290946364403, + -0.0109479371458292, + -0.01509115844964981, + 0.011129295453429222, + -0.04614460840821266, + -0.06949230283498764, + 0.03345585614442825, + 0.004481789655983448, + -0.027245953679084778, + 0.014719618484377861, + -0.07945939898490906, + -0.024169638752937317, + -0.033132463693618774, + -0.0026370608247816563, + -0.0018676811596378684, + -0.00013371276145335287, + -0.0007544865366071463, + 0.08005470037460327, + 0.08464127779006958, + 0.01752437651157379, + 0.012715843506157398, + -0.0412757508456707, + -0.0052107092924416065, + 0.036313753575086594, + 0.010223260149359703, + 0.09368865191936493, + -2.6737908379818988e-33, + 0.032692186534404755, + -0.019821155816316605, + -0.09435690194368362, + 0.06585080921649933, + -0.009019539691507816, + -0.0017725529614835978, + -0.025436080992221832, + 0.05775599554181099, + -0.06550439447164536, + 0.03672242909669876, + 0.060348231345415115, + 0.09907466918230057, + 0.022922303527593613, + 0.11768700927495956, + 0.027269558981060982, + -0.02581085078418255, + 0.00529174879193306, + 0.02927962876856327, + 0.020652081817388535, + 0.038037654012441635, + -0.02624911442399025, + -0.01859845407307148, + -0.02147018164396286, + -0.0016837890725582838, + 0.03594131022691727, + 0.014084674417972565, + -0.01860702969133854, + 0.01888217031955719, + -0.03545379638671875, + -0.0050345128402113914, + -0.012345709837973118, + 0.022589998319745064, + 0.09147141128778458, + 0.05766033008694649, + -0.037916604429483414, + -0.011629249900579453, + 0.001905201468616724, + -0.06687606871128082, + -0.04791860654950142, + 0.040553510189056396, + -0.02167592942714691, + -0.002876663813367486, + -0.06229862570762634, + -0.03270059451460838, + 0.09111083298921585, + 0.13124147057533264, + -0.043330490589141846, + -0.05419326573610306, + 0.13625487685203552, + 0.018253495916724205, + -0.04928606376051903, + 0.015663689002394676, + 0.0917636975646019, + 0.03494459018111229, + 0.06302175670862198, + -0.0048849983140826225, + -0.04777849093079567, + 0.11445076763629913, + 0.03568323701620102, + -0.04366503283381462, + -0.08383693546056747, + 0.027744252234697342, + -0.06113260239362717, + -0.016361987218260765, + -0.020566971972584724, + 0.09698297828435898, + -0.05245795100927353, + 0.05316177010536194, + 0.00895013753324747, + -0.029216859489679337, + -0.01288176141679287, + 0.07688412815332413, + -0.03130963072180748, + 0.010907333344221115, + -0.017655406147241592, + 0.042162131518125534, + 0.0007558998186141253, + 0.02286168746650219, + 0.10403173416852951, + -0.10903123766183853, + -0.09525458514690399, + -0.0437648743391037, + -0.054241519421339035, + 0.060603346675634384, + 0.0660080686211586, + 0.03999726474285126, + -0.005195175297558308, + -0.022762902081012726, + 0.03180846571922302, + 0.029460232704877853, + 0.0018972055986523628, + 0.126306414604187, + -0.028183575719594955, + -0.0671917200088501, + -0.04136805981397629, + -9.434462558401985e-34, + 0.0059200976975262165, + 0.041957560926675797, + -0.08809799700975418, + -0.004641680978238583, + -0.01988864131271839, + 0.004012024030089378, + -0.03601846098899841, + -0.04415546730160713, + 0.03769991174340248, + 0.024781370535492897, + 0.048281800001859665, + 0.02705324813723564, + -0.016115646809339523, + -0.10341770946979523, + 0.024877268821001053, + -0.0017920982791110873, + -0.1427561491727829, + -0.01409793458878994, + -0.014818084426224232, + 0.07792598754167557, + -0.06424986571073532, + 0.03195836395025253, + 0.06318016350269318, + -0.015267301350831985, + -0.006437196861952543, + 0.03613049164414406, + -0.017467057332396507, + -0.008114079013466835, + -0.05816490203142166, + 0.049630194902420044, + -0.01654118113219738, + 0.02328384853899479, + -0.03755815699696541, + 0.06347594410181046, + -0.11305467039346695, + 0.07422103732824326, + -0.00975978747010231, + 0.057868000119924545, + 0.05529516190290451, + 0.006521677598357201, + 0.016918526962399483, + 0.003064946038648486, + -0.03876693919301033, + 0.02915443480014801, + -0.10932011157274246, + -0.028121348470449448, + -0.0552920401096344, + -0.12472932040691376, + 0.016526082530617714, + 0.03304845467209816, + -0.02094275690615177, + 0.0012021521106362343, + -0.017662836238741875, + 0.04906431585550308, + -0.06056410074234009, + -0.04817552492022514, + 0.08821213990449905, + 0.019968217238783836, + -0.01466661598533392, + 0.027552897110581398, + 0.07314267009496689, + -0.0272088423371315, + 0.021583398804068565, + -0.002452997025102377, + -0.023570070043206215, + -0.06529251486063004, + 0.02199377678334713, + -0.04507700353860855, + 0.07636583596467972, + -0.03372584655880928, + 0.039864812046289444, + -0.011585041880607605, + -0.00559522770345211, + -0.014837700873613358, + 0.0052016437985002995, + -0.006452401168644428, + 0.008386466652154922, + 0.001965397736057639, + 0.0012628567637875676, + 0.06365487724542618, + -0.055604487657547, + 0.03012075647711754, + -0.06543207168579102, + -0.0029486329294741154, + -0.07406208664178848, + -0.0433088056743145, + -0.04559468477964401, + 0.04522112011909485, + 0.02856541983783245, + -0.029263168573379517, + -0.05167655274271965, + 0.12202610820531845, + -0.057212285697460175, + -0.016846999526023865, + -0.07989530265331268, + -2.01488035145303e-08, + -0.015774747356772423, + -0.02214862033724785, + -0.05809614062309265, + -0.03585444763302803, + 0.043128643184900284, + -0.10153193026781082, + -0.016955390572547913, + -0.0640639066696167, + -0.008886899799108505, + 0.05478009581565857, + 0.05791415646672249, + 0.021059706807136536, + -0.02238502912223339, + -0.03704484924674034, + 0.07994784414768219, + 0.034978654235601425, + -0.07272084057331085, + 0.020275743678212166, + -0.03731253370642662, + 0.010120682418346405, + -0.011866764165461063, + 0.10466204583644867, + -0.01903506927192211, + -0.012047121301293373, + 0.08254805207252502, + -0.024680636823177338, + -0.0050543248653411865, + 0.07553759217262268, + -0.016176139935851097, + 0.06900318711996078, + 0.02471088618040085, + 0.04251041263341904, + -0.0373138003051281, + 0.02804180607199669, + -0.08017519861459732, + -0.004622225649654865, + 0.025211719796061516, + -0.0005702456692233682, + -0.0586661770939827, + 0.10546386986970901, + -0.05521846190094948, + -0.12834642827510834, + -0.08862830698490143, + -0.05822669342160225, + -0.01839260943233967, + 0.012022232636809349, + 0.07470670342445374, + -0.040306009352207184, + -0.029466411098837852, + 0.005351925268769264, + -0.06569688022136688, + -0.019309187307953835, + -0.009012541733682156, + 0.04573668912053108, + -0.00048440732643939555, + -0.03159859776496887, + 0.0088651767000556, + 0.1161084845662117, + -0.005616337060928345, + -0.02462136000394821, + 0.005020379088819027, + 0.018837768584489822, + 0.13169263303279877, + -0.035361018031835556 + ], + "plug-charging-bold||outlet,socket,plugin,integration,charge,charging": [ + -0.04597865790128708, + 0.028751544654369354, + -0.05671975761651993, + 0.07293214648962021, + 0.04304538294672966, + 0.0011258383747190237, + 0.053751155734062195, + -0.052983932197093964, + -0.009475321508944035, + -0.026527734473347664, + 0.1436399519443512, + -0.02142108790576458, + 0.047689083963632584, + 0.0748298317193985, + -0.03276154398918152, + -0.00636853463947773, + -0.045596908777952194, + -0.008111154660582542, + 0.014944998547434807, + 0.055829841643571854, + -0.04350685328245163, + 0.007705268450081348, + -0.0168523620814085, + -0.05965607985854149, + 0.061019010841846466, + 0.04762757197022438, + 0.10809247195720673, + 0.03491894528269768, + -0.020659303292632103, + -0.12062615901231766, + 0.0038103533443063498, + -0.032281093299388885, + 0.02784305065870285, + -0.004757871851325035, + 0.027196289971470833, + 0.004061576444655657, + 0.0034280247054994106, + -0.032838739454746246, + -0.028866030275821686, + -0.0006962953484617174, + 0.06547857075929642, + -0.1133018285036087, + -0.004601520951837301, + 0.04649456962943077, + 0.027160266414284706, + -0.01004549115896225, + -0.05520273745059967, + -0.036605801433324814, + 0.03911298140883446, + -0.06101443991065025, + 0.03173043578863144, + -0.09418439865112305, + -0.10020285099744797, + 0.06142836809158325, + 0.01556860376149416, + -0.018637947738170624, + -0.09339558333158493, + 0.025499064475297928, + 0.05271279811859131, + -0.07638490945100784, + -0.029401160776615143, + 0.03151542320847511, + 0.03295351192355156, + 0.07555057853460312, + -0.05313437432050705, + 0.004314889200031757, + -0.01260688528418541, + 0.027585595846176147, + -0.11572608351707458, + -0.0008700524922460318, + -0.02070806547999382, + -0.013161546550691128, + -0.046731870621442795, + -0.1009974405169487, + -0.018400760367512703, + -0.001318082446232438, + 0.011101284064352512, + 0.03061060607433319, + -0.11788203567266464, + -0.013911101035773754, + 0.01762041635811329, + -0.018669305369257927, + -0.08977057039737701, + 0.02350403182208538, + 0.058819834142923355, + 0.0789182260632515, + -0.025787822902202606, + -0.11640489101409912, + -0.09449487924575806, + -0.042472511529922485, + 0.003335297107696533, + 0.023985855281352997, + 0.022989485412836075, + -0.057493578642606735, + -0.03746609762310982, + 0.07212747633457184, + 0.04438207298517227, + -0.013108775950968266, + -0.05811189115047455, + 0.046444520354270935, + 0.03702724352478981, + 0.04026155546307564, + 0.007898233830928802, + -0.018347548320889473, + 0.005469813011586666, + -0.061173442751169205, + -0.06578309834003448, + 0.051292188465595245, + 0.028939813375473022, + -0.02032240480184555, + 0.0038983996491879225, + -0.0917685329914093, + -0.04183533042669296, + -0.03739297389984131, + 0.016104621812701225, + 0.03957662358880043, + -0.02989700809121132, + 0.011746141128242016, + 0.10994632542133331, + 0.02629563771188259, + 0.010829415172338486, + 0.00797075405716896, + -0.0488104373216629, + -0.05952419713139534, + -0.029391774907708168, + -0.0058297147043049335, + 0.09544999897480011, + -3.0298794845856557e-33, + 0.05524475872516632, + -0.04116730019450188, + -0.08507606387138367, + 0.021658465266227722, + -0.01480048056691885, + -0.01430289912968874, + -0.006195974536240101, + 0.09660081565380096, + -0.03509819880127907, + 0.029450060799717903, + 0.0251612551510334, + 0.08925943076610565, + 0.047474004328250885, + 0.11142434179782867, + 0.06220470741391182, + 0.01522677019238472, + -0.0203609187155962, + 0.05531298741698265, + 0.041989054530858994, + 0.05965684726834297, + -0.03993908688426018, + 0.03450874611735344, + 0.008862861432135105, + 0.03471101447939873, + 0.018408119678497314, + 0.028996678069233894, + 0.03330365568399429, + 0.011542385444045067, + -0.043176718056201935, + -0.017351191490888596, + -0.006484176032245159, + 0.06185458227992058, + 0.07605969905853271, + 0.052812427282333374, + -0.060713473707437515, + 0.04740552231669426, + 0.033056508749723434, + -0.06862598657608032, + -0.017268961295485497, + -0.031531594693660736, + -0.033157795667648315, + -0.036971088498830795, + -0.07078436017036438, + -0.06020398065447807, + 0.06497002393007278, + 0.08311186730861664, + -0.030937373638153076, + -0.08710463345050812, + 0.07050640136003494, + 0.038415055721998215, + -0.09318094700574875, + -0.030238820239901543, + 0.09585723280906677, + 0.017656253650784492, + 0.047111738473176956, + 0.01691918633878231, + -0.05829082429409027, + 0.11427309364080429, + 0.012586343102157116, + -0.016691777855157852, + -0.044987767934799194, + -0.01997305080294609, + -0.05726476013660431, + -0.058037277311086655, + -0.07636479288339615, + 0.041996605694293976, + -0.09293393790721893, + 0.022307274863123894, + -0.010615354403853416, + -0.0017991020577028394, + -0.03312395513057709, + 0.07329995185136795, + -0.008517839945852757, + 0.02123159170150757, + -0.010700806975364685, + 0.0736408531665802, + 0.018448738381266594, + -0.0012323104310780764, + 0.05879289284348488, + -0.05292366072535515, + -0.11690536141395569, + -0.041494838893413544, + -0.04408799484372139, + 0.052838049829006195, + 0.01523913536220789, + 0.042572058737277985, + 0.0021517262794077396, + -0.01950412429869175, + 0.03998466208577156, + -0.013583344407379627, + -0.026801439002156258, + 0.09896703064441681, + -0.06511255353689194, + -0.09412461519241333, + -0.004133695736527443, + -1.4701677338638993e-33, + 0.020136680454015732, + 0.03328472003340721, + -0.08388198912143707, + -0.02149088680744171, + -0.023260891437530518, + 0.014326651580631733, + -0.05813276395201683, + -0.05028516799211502, + 0.010927111841738224, + 0.004494146443903446, + -0.020185988396406174, + 0.026965396478772163, + -0.020216742530465126, + -0.12082886695861816, + 0.03568973019719124, + -0.00034988997504115105, + -0.10974469035863876, + -0.014776470139622688, + 0.02047935500741005, + 0.07032077759504318, + -0.07931080460548401, + 0.07571699470281601, + 0.04358693212270737, + -0.0077813672833144665, + 0.04963932931423187, + 0.02236696518957615, + 0.02315583825111389, + -0.042777132242918015, + 0.029314961284399033, + 0.07323067635297775, + -0.0039014751091599464, + -0.04993379861116409, + 0.008344371803104877, + 0.05711573362350464, + -0.10741502791643143, + 0.06132376939058304, + 0.003546962281689048, + 0.037198133766651154, + 0.053694140166044235, + 0.012277724221348763, + 0.028071803972125053, + -0.04023238644003868, + -0.009691489860415459, + 0.04388976842164993, + -0.04547395184636116, + -0.05439186096191406, + -0.10376418381929398, + -0.08544258773326874, + -0.0064788199961185455, + 0.03850974515080452, + -0.03581606596708298, + -0.02055661752820015, + -0.04545465484261513, + 0.028230827301740646, + -0.061137571930885315, + -0.03126423805952072, + 0.122478187084198, + 0.026466183364391327, + -0.006226862780749798, + -0.006031252443790436, + 0.06438183039426804, + -0.008971543051302433, + 0.04347936809062958, + -0.008031456731259823, + -0.06287723779678345, + -0.05411114543676376, + 0.026420757174491882, + -0.03208697587251663, + 0.04655293747782707, + -0.022772783413529396, + -0.01490839198231697, + -0.028404992073774338, + -0.022184206172823906, + -0.046802960336208344, + -0.025374731048941612, + -0.017664674669504166, + -0.005585458129644394, + -0.0032054816838353872, + 0.0029571037739515305, + 0.01246129721403122, + 0.001784811494871974, + 0.02143160067498684, + -0.034540142863988876, + -0.002733293455094099, + -0.09013260155916214, + -0.05871867761015892, + -0.03398158401250839, + 0.03530849888920784, + 0.0019170562736690044, + -0.03026990033686161, + -0.036741409450769424, + 0.1026901975274086, + -0.04115507751703262, + 0.07525303959846497, + -0.12054755538702011, + -2.158624390347086e-08, + -0.030178964138031006, + 0.021032415330410004, + -0.04424865171313286, + -0.007849548943340778, + 0.060153864324092865, + -0.08946925401687622, + -0.016603734344244003, + -0.02108587883412838, + -0.004865731578320265, + 0.04391486942768097, + 0.05760185420513153, + 0.014638522639870644, + -0.005898301489651203, + -0.02853666990995407, + 0.09210314601659775, + 0.07571033388376236, + -0.06635333597660065, + 0.05197448655962944, + -0.04291725903749466, + 0.010456274263560772, + -0.020373154431581497, + 0.06956859678030014, + -0.06739327311515808, + -0.017902331426739693, + 0.06617678701877594, + -0.03461439162492752, + 0.005667123012244701, + 0.0820935070514679, + 0.02760019712150097, + 0.018161848187446594, + -0.0007854101131670177, + 0.061483193188905716, + -0.01135324314236641, + -0.011662371456623077, + -0.07194654643535614, + -0.047669872641563416, + 0.010281973518431187, + -0.026358069851994514, + -0.03547384962439537, + 0.07120013236999512, + -0.034225478768348694, + -0.11106675863265991, + -0.07345015555620193, + -0.04490387812256813, + -0.011953066103160381, + 0.0017373912269249558, + 0.09089699387550354, + -0.03825555369257927, + -0.053060855716466904, + 0.030145753175020218, + -0.07267758250236511, + 0.0041945381090044975, + -0.0038315807469189167, + 0.035331979393959045, + -0.0027530996594578028, + 0.03868738189339638, + 0.019163452088832855, + 0.05848165601491928, + 0.018732208758592606, + -0.013267268426716328, + 0.05741069093346596, + 0.014019371941685677, + 0.15079447627067566, + 0.0033426766749471426 + ], + "plugs-bold||outlet,socket,plugin,integration,disconnected": [ + 0.008056484162807465, + -0.03672761097550392, + -0.03974025323987007, + 0.07825427502393723, + 0.017267825081944466, + -0.009522981010377407, + 0.010751968249678612, + -0.06451600044965744, + 0.023213623091578484, + -0.030594736337661743, + 0.10273052752017975, + 0.03528042510151863, + 0.0003977473534177989, + 0.00952531024813652, + -0.03976263478398323, + 0.030233891680836678, + -0.0400782935321331, + -0.06892258673906326, + -0.011374774388968945, + 0.008114054799079895, + -0.04718921333551407, + 0.022261273115873337, + -0.0387364998459816, + -0.013620046898722649, + 0.07391105592250824, + 0.024618232622742653, + 0.11029649525880814, + 0.05167832598090172, + -0.02656755968928337, + -0.07253776490688324, + -0.015061712823808193, + -0.03597349300980568, + -0.025513257831335068, + -0.04500844329595566, + 0.04326479882001877, + 0.0003933600091841072, + -0.004880968481302261, + -0.03541867807507515, + -0.007672917563468218, + -0.019297344610095024, + 0.05735298618674278, + -0.10801133513450623, + 0.0024254072923213243, + -0.007810491602867842, + -0.016087211668491364, + -0.038218505680561066, + -0.08132743090391159, + -0.09438055753707886, + 0.03774538263678551, + -0.10412135720252991, + 0.03802869841456413, + -0.055180203169584274, + -0.05335264280438423, + 0.053317997604608536, + 0.08525805175304413, + -0.018405867740511894, + -0.05100039765238762, + 0.014625082723796368, + 0.04079807922244072, + -0.027999982237815857, + 4.27831218985375e-05, + 0.024282461032271385, + 0.05969160422682762, + 0.031147461384534836, + -0.07898756116628647, + 0.03662750869989395, + 0.005600064527243376, + 0.02179647423326969, + -0.06596841663122177, + -0.015257900580763817, + -0.006184389349073172, + -0.012840746901929379, + -0.03521545231342316, + -0.10478473454713821, + -0.01669607311487198, + 0.03930619731545448, + 0.022439878433942795, + -0.004601519089192152, + -0.07680247724056244, + -0.04015650227665901, + 0.014505107887089252, + -0.03733563423156738, + -0.0792204812169075, + 0.0740990862250328, + 0.06646024435758591, + 0.10698753595352173, + -0.02298734523355961, + -0.12811848521232605, + -0.10508724302053452, + -0.012092527002096176, + -0.02605283446609974, + 0.0016670792829245329, + 0.049603164196014404, + 0.024374881759285927, + -0.026507265865802765, + -0.018781686201691628, + 0.05819077044725418, + 0.00286229164339602, + -0.06973667442798615, + 0.07709361612796783, + 0.023611458018422127, + 0.04108084738254547, + 0.025515353307127953, + -0.003879378316923976, + 0.012130682356655598, + -0.020504379644989967, + -0.059899162501096725, + 0.007246843539178371, + -0.009567206725478172, + -0.038380369544029236, + 0.018728964030742645, + -0.0815630853176117, + -0.02106994204223156, + 0.005096798297017813, + 0.013093369081616402, + 0.007823745720088482, + -0.01572491228580475, + -0.006865525618195534, + 0.08223516494035721, + 0.10795389115810394, + 0.003768133232370019, + 0.0077481879852712154, + -0.01346946693956852, + -0.0344160832464695, + 0.02439708635210991, + 0.022951822727918625, + 0.09939739108085632, + -2.4616923515012025e-33, + 0.059285178780555725, + -0.04869384691119194, + -0.09264165908098221, + 0.09185048192739487, + 0.0189572274684906, + -0.015553905628621578, + -0.03741288557648659, + 0.05556011572480202, + -0.0532660186290741, + 0.02395048178732395, + 0.05225948244333267, + 0.09152058511972427, + 0.008550664409995079, + 0.0903506726026535, + 0.0664026066660881, + -0.048676833510398865, + 0.07536842674016953, + 0.014645863324403763, + -0.007856747135519981, + 0.0400051549077034, + -0.014520196244120598, + 0.008336174301803112, + -0.008669066242873669, + -0.002722926437854767, + 0.04144309461116791, + 0.04137144237756729, + -0.03243830054998398, + 0.023252179846167564, + -0.03177453950047493, + -0.00430790800601244, + -0.001038638991303742, + 0.04505034536123276, + 0.11310262978076935, + 0.05425828695297241, + -0.02525251917541027, + -0.003157430561259389, + 0.0009184967493638396, + -0.030016642063856125, + -0.07691732048988342, + 0.028430474922060966, + -0.038024675101041794, + -0.013138809241354465, + -0.06048490107059479, + -0.028053445741534233, + 0.1030433252453804, + 0.11231283843517303, + -0.03752646595239639, + -0.0607587993144989, + 0.0915846899151802, + 0.027130231261253357, + -0.055162061005830765, + 0.010958152823150158, + 0.1037948727607727, + 0.026087693870067596, + 0.01465676911175251, + -0.020742975175380707, + -0.057717278599739075, + 0.11443345993757248, + 0.006461055018007755, + -0.055385563522577286, + -0.03621021285653114, + 0.038640912622213364, + -0.05372854694724083, + -0.04074951261281967, + 0.00347292423248291, + 0.09322981536388397, + -0.07469845563173294, + 0.07464242726564407, + -0.010356822051107883, + -0.02932361699640751, + -0.044381074607372284, + 0.05931418761610985, + -0.006054807920008898, + 0.010241338051855564, + -0.021946920081973076, + 0.03790898621082306, + -0.03218755125999451, + 0.00794127769768238, + 0.0892409011721611, + -0.07784972339868546, + -0.03339417278766632, + -0.04235130921006203, + -0.06987931579351425, + 0.04322492331266403, + 0.05478804558515549, + 0.03950868174433708, + -0.013396339491009712, + -0.015577993355691433, + 0.02562452107667923, + 0.08253089338541031, + -0.005095914006233215, + 0.13787318766117096, + -0.0291995070874691, + -0.06407348811626434, + -0.056873664259910583, + -1.713149854854055e-33, + -0.01175178773701191, + 0.045513443648815155, + -0.0888548344373703, + -0.03201908618211746, + -0.013651966117322445, + 0.012202919460833073, + -0.03397679701447487, + -0.006229947321116924, + 0.015545586124062538, + 0.03031211532652378, + 0.09393240511417389, + 0.03378968685865402, + -0.050152890384197235, + -0.09776093810796738, + 0.01737041398882866, + -0.0031164963729679585, + -0.10711017996072769, + 0.006436147261410952, + -0.007119321264326572, + 0.09119533002376556, + -0.04500196501612663, + 0.042458776384592056, + 0.05583294853568077, + -0.03317008540034294, + -0.0041039385832846165, + 0.02675994299352169, + -0.026707982644438744, + -0.021691469475626945, + -0.06876568496227264, + 0.05800466239452362, + 0.011769947595894337, + 0.03235761821269989, + -0.02608991414308548, + 0.08925406634807587, + -0.10141017287969589, + 0.07557489722967148, + -0.028209753334522247, + 0.02974989078938961, + 0.018454132601618767, + -0.02879435010254383, + -0.00040983964572660625, + 0.030094359070062637, + -0.023995840921998024, + 0.037896838039159775, + -0.10305509716272354, + -0.024778733029961586, + -0.075136698782444, + -0.13783200085163116, + -0.020294953137636185, + 0.04431897774338722, + -0.018046017736196518, + -0.01910790614783764, + -0.01474116649478674, + 0.0387008972465992, + -0.06757455319166183, + -0.04191097244620323, + 0.07646767050027847, + 0.020867325365543365, + -0.022597773000597954, + 0.014164682477712631, + 0.08720573037862778, + -0.017386531457304955, + -0.025956878438591957, + 0.013594957999885082, + 0.004416954703629017, + -0.08662901818752289, + 0.02549809403717518, + -0.02279626578092575, + 0.08693989366292953, + -0.055061373859643936, + 0.042503390461206436, + 0.005811241455376148, + -0.004381423816084862, + -0.05430416017770767, + 0.013770493678748608, + -0.002432496752589941, + -0.06206691265106201, + -0.03009137138724327, + -0.005907931365072727, + 0.04787973314523697, + -0.029317239299416542, + 0.011693224310874939, + -0.06828991323709488, + -0.005739249754697084, + -0.07542635500431061, + -0.05437822267413139, + -0.04885144159197807, + 0.04937358200550079, + 0.032945770770311356, + -0.021755065768957138, + -0.053498223423957825, + 0.0956471785902977, + -0.045385297387838364, + 0.016829218715429306, + -0.09204282611608505, + -2.1986377163329962e-08, + 0.004980884026736021, + -0.011049400083720684, + -0.06601717323064804, + -0.0099147604778409, + 0.083467997610569, + -0.13003887236118317, + -0.02073841169476509, + -0.04488653689622879, + -0.02696121856570244, + 0.05976416915655136, + 0.03631037473678589, + 0.02885926514863968, + -0.052516136318445206, + -0.017057552933692932, + 0.07570738345384598, + -0.0022862155456095934, + -0.09456661343574524, + 0.01486380584537983, + -0.03146045655012131, + -0.028367452323436737, + -0.014900747686624527, + 0.06900855153799057, + -0.022433297708630562, + 0.016495294868946075, + 0.06926112622022629, + -0.028964629396796227, + 0.004875839222222567, + 0.06019843369722366, + -0.03378494828939438, + 0.05809443071484566, + 0.0345727764070034, + 0.03662818297743797, + -0.0441802516579628, + 0.012715700082480907, + -0.10063529014587402, + 0.02125685103237629, + 0.017826030030846596, + 0.018968334421515465, + -0.06612496078014374, + 0.05443210527300835, + -0.049389440566301346, + -0.11615153402090073, + -0.0765463188290596, + -0.03624490648508072, + -0.009163311682641506, + 0.013483189046382904, + 0.08724449574947357, + 0.016811376437544823, + -0.01681075431406498, + -0.00839526578783989, + -0.07308370620012283, + -0.0079490402713418, + -0.019610416144132614, + 0.03377813100814819, + 0.005555782001465559, + -0.06298545747995377, + 0.03015497885644436, + 0.12924790382385254, + -0.01660146564245224, + -0.04061881825327873, + 0.02005694806575775, + -0.010070014744997025, + 0.08840883523225784, + -0.0587761253118515 + ], + "plugs-connected-bold||*updated*,outlet,socket,plugin,integration": [ + -0.02907109633088112, + -0.031390368938446045, + -0.06396255642175674, + 0.08277882635593414, + -0.002970607951283455, + -0.0014379385393112898, + 0.01221633143723011, + -0.085149385035038, + 0.00020835855684708804, + 0.002075646538287401, + 0.07633468508720398, + 0.041074950248003006, + -0.008229764178395271, + -0.011492148973047733, + -0.04653707519173622, + 0.03856359422206879, + -0.014335254207253456, + -0.037106405943632126, + -0.008439638651907444, + -0.014800108037889004, + -0.07282482832670212, + 0.01238261815160513, + -0.035601675510406494, + -0.009707827121019363, + 0.05007205531001091, + 0.028724264353513718, + 0.0810442641377449, + 0.03920787572860718, + -0.020188499242067337, + -0.06700299680233002, + -0.037339843809604645, + -0.03618784248828888, + -0.005932735279202461, + -0.056125055998563766, + 0.00421883026137948, + -0.0340389646589756, + 0.031138190999627113, + -0.03485943377017975, + -0.007593080867081881, + -0.007899641059339046, + 0.08432836830615997, + -0.1104823648929596, + 0.011436467990279198, + 0.009699605405330658, + -0.02918398752808571, + -0.03478429093956947, + -0.10863704234361649, + -0.07990743219852448, + -0.014475698582828045, + -0.10711406916379929, + 0.03760908171534538, + -0.08121119439601898, + -0.056861795485019684, + 0.04328566789627075, + 0.09420453757047653, + 0.0016715597594156861, + -0.041608378291130066, + 0.011190270073711872, + 0.01274850033223629, + -0.040331218391656876, + 0.016528552398085594, + 0.0300841573625803, + 0.06258997321128845, + 0.03560490533709526, + -0.09971507638692856, + 0.011244898661971092, + 0.028865501284599304, + -0.005188553128391504, + -0.05676760524511337, + -0.012858370319008827, + -0.03314971178770065, + 0.015021109022200108, + -0.02163662575185299, + -0.15007852017879486, + -0.023244529962539673, + 0.013575948774814606, + 0.03980785235762596, + -0.0004946471890434623, + -0.04649561271071434, + -0.07792576402425766, + 0.04474212974309921, + -0.030407797545194626, + -0.0740964263677597, + 0.030172565951943398, + 0.06405511498451233, + 0.06313039362430573, + -0.0379796102643013, + -0.10809554159641266, + -0.09329577535390854, + -0.026794353500008583, + -0.005415884777903557, + -0.01772991381585598, + 0.02760297805070877, + -0.009033642709255219, + -0.07067377865314484, + 0.04228741675615311, + 0.016009343788027763, + 0.003458447987213731, + -0.09026852250099182, + 0.08310090005397797, + 0.007002820260822773, + 0.029588749632239342, + -0.0033162403851747513, + 0.013239589519798756, + 0.018310416489839554, + 0.012174371629953384, + -0.059209905564785004, + 0.0638924166560173, + 0.019811656326055527, + -0.033677078783512115, + 0.00372552708722651, + -0.09527245163917542, + -0.029670247808098793, + -0.03604717552661896, + -0.02134718745946884, + 0.017865661531686783, + -0.014764099381864071, + 0.023514730855822563, + 0.060372158885002136, + 0.08728660643100739, + 0.042955271899700165, + 0.013448679819703102, + -0.018546804785728455, + -0.023244965821504593, + 0.00818398967385292, + 0.014020263217389584, + 0.09369324147701263, + -3.6549168305537364e-33, + 0.0581037737429142, + -0.031520429998636246, + -0.06038498878479004, + 0.0572810024023056, + 0.022620806470513344, + -0.017364894971251488, + -0.03239033743739128, + 0.030494673177599907, + -0.039769914001226425, + -0.00017654363182373345, + 0.05015604943037033, + 0.11576277762651443, + -0.0019306355388835073, + 0.12072370946407318, + 0.026089582592248917, + -0.0714334100484848, + 0.05119761452078819, + 0.036160122603178024, + 0.025223223492503166, + 0.04283315688371658, + -0.018285568803548813, + -0.01244286447763443, + -0.01928636059165001, + -0.041247934103012085, + 0.07327918708324432, + 0.01156878937035799, + -0.013868357054889202, + 0.03826246038079262, + -0.01693202182650566, + -0.011594491079449654, + -0.000480168528156355, + 0.05487869679927826, + 0.09664694964885712, + 0.05027542635798454, + -0.05550069361925125, + -0.02685626596212387, + -0.04138009250164032, + -0.06226758658885956, + -0.068879134953022, + 0.015472745522856712, + 0.0027566635981202126, + -0.02603757381439209, + -0.10456549376249313, + -0.03346394747495651, + 0.09695948660373688, + 0.11921021342277527, + -0.08686652779579163, + -0.04056508094072342, + 0.10556566715240479, + 0.015379456803202629, + -0.039631836116313934, + 0.024156708270311356, + 0.026222513988614082, + -0.0002302822977071628, + 0.009725399315357208, + -0.0065198298543691635, + -0.05929598957300186, + 0.12328736484050751, + 0.021387720480561256, + -0.052502021193504333, + -0.03377237543463707, + 0.00761277973651886, + -0.0704796314239502, + -0.03430694714188576, + -0.0025549179408699274, + 0.13219165802001953, + -0.035671718418598175, + 0.03824569284915924, + 0.024234065786004066, + -0.017936566844582558, + -0.05705425143241882, + 0.07754301279783249, + -0.03615832328796387, + 0.029164336621761322, + -0.024628689512610435, + 0.0064424085430800915, + -0.058571215718984604, + 0.047744590789079666, + 0.0729827806353569, + -0.05150773376226425, + -0.015464198775589466, + -0.07353929430246353, + -0.09306048601865768, + 0.08073810487985611, + 0.050922803580760956, + 0.04284367710351944, + -0.021059149876236916, + 0.020566534250974655, + 0.019466817378997803, + 0.06500454246997833, + 0.0053452686406672, + 0.12721078097820282, + -0.01849198155105114, + -0.056759316474199295, + -0.05071881040930748, + -8.362899356936657e-34, + 0.008203607983887196, + 0.03242294117808342, + -0.08188014477491379, + 0.002706610132008791, + -0.02422858215868473, + -0.018011748790740967, + -0.04390379786491394, + -0.030925411731004715, + 0.05422418564558029, + 0.029135268181562424, + 0.10560451447963715, + 0.04295575991272926, + -0.04281200096011162, + -0.12378187477588654, + 0.025929847732186317, + 0.010645224712789059, + -0.1276111602783203, + -0.0397970974445343, + -0.015152272768318653, + 0.09399417787790298, + -0.041078221052885056, + 0.045147329568862915, + 0.04232463985681534, + -0.0136436577886343, + 0.00886453315615654, + 0.006288023665547371, + -0.009051449596881866, + -0.011752535589039326, + -0.04091087728738785, + 0.03625185787677765, + -0.009088297374546528, + 0.011919905431568623, + -0.06801163405179977, + 0.07341019809246063, + -0.08645685762166977, + 0.09729471057653427, + 0.03647954761981964, + 0.008937167003750801, + 0.020876485854387283, + 0.015267275273799896, + 0.03890008106827736, + 0.0069207241758704185, + -0.04649343714118004, + 0.05774398893117905, + -0.05359344929456711, + -0.02849932573735714, + -0.10829576849937439, + -0.08640367537736893, + -0.08379175513982773, + 0.025541245937347412, + -0.003407832933589816, + -0.013180049136281013, + -0.030374253168702126, + 0.06094146519899368, + -0.024432476609945297, + -0.0025218355003744364, + 0.07190633565187454, + 0.0277326088398695, + -0.02447916567325592, + 0.026553258299827576, + 0.07087843865156174, + -0.03613094240427017, + 0.0010794217232614756, + 0.015155820176005363, + -0.03149252384901047, + -0.043670233339071274, + 0.011633503250777721, + -0.06292291730642319, + 0.09821700304746628, + -0.026284795254468918, + 0.03749117627739906, + -0.002485231962054968, + -0.030615679919719696, + -0.048557743430137634, + 0.01564454659819603, + -0.048441361635923386, + -0.03162422776222229, + -0.043670546263456345, + 0.008104483596980572, + 0.023622458800673485, + -0.05796753987669945, + 0.028890645131468773, + -0.025091087445616722, + 0.0010179749224334955, + -0.061893854290246964, + -0.0355561189353466, + -0.02123887836933136, + 0.05605670437216759, + 0.0523274801671505, + -0.027171380817890167, + -0.08614334464073181, + 0.08629248291254044, + -0.059751998633146286, + 0.011012101545929909, + -0.11300636827945709, + -2.4294370959410116e-08, + 0.007088666781783104, + -0.005122422240674496, + -0.09807396680116653, + -0.01919008232653141, + 0.10171953588724136, + -0.1021076887845993, + -0.01708955317735672, + -0.02880559116601944, + -0.024058407172560692, + 0.038137681782245636, + 0.05869906395673752, + 0.029320616275072098, + -0.01186246145516634, + 0.011341096833348274, + 0.09145978838205338, + 0.03918784484267235, + -0.05314365774393082, + 0.007344719488173723, + -0.03867356851696968, + -0.013493812642991543, + -0.006339923944324255, + 0.10795936733484268, + -0.022050639614462852, + 0.031307533383369446, + 0.08963911980390549, + -0.04530603811144829, + 0.028556451201438904, + 0.06314428895711899, + -0.0470503605902195, + 0.05511074885725975, + 0.04347054660320282, + 0.012213041074573994, + -0.030177466571331024, + 0.04416201636195183, + -0.040465373545885086, + 0.01361016184091568, + -0.0009190145065076649, + 0.00908054318279028, + -0.04491666704416275, + 0.09026946872472763, + -0.03874710202217102, + -0.10078183561563492, + -0.05279533192515373, + -0.02608221396803856, + 0.006746807135641575, + 0.026202023029327393, + 0.04676927998661995, + 0.0028134577441960573, + -0.04852672666311264, + -0.019010033458471298, + -0.059937912970781326, + 0.005249911919236183, + -0.011767690069973469, + 0.028486447408795357, + -0.0013223011046648026, + -0.02785669080913067, + 0.03195677325129509, + 0.10604967176914215, + -0.002595549449324608, + -0.027518734335899353, + 0.002995498711243272, + -0.023087864741683006, + 0.1263124793767929, + -0.0259662214666605 + ], + "plus-bold||addition,sum,mathematics,arithmetic,calculator,+": [ + -0.03996245563030243, + -0.0031286878511309624, + -0.026842188090085983, + -0.0027029006741940975, + -0.027624621987342834, + 0.010584362782537937, + 0.025652442127466202, + -0.040668267756700516, + -0.02573694847524166, + 0.022941909730434418, + 0.027051765471696854, + -0.01655784249305725, + 0.04550188407301903, + -0.04207807034254074, + -0.019031040370464325, + -0.0021958660800009966, + -0.056010086089372635, + 0.0346536785364151, + -0.005708429031074047, + -0.06590577214956284, + 0.028411297127604485, + -0.024833112955093384, + 0.004888036288321018, + 0.03419274464249611, + 0.11537119746208191, + 0.05246802791953087, + -0.014023569412529469, + -0.018551141023635864, + 0.09188620001077652, + -0.03470269590616226, + -0.043504875153303146, + -0.02251167595386505, + 0.151012122631073, + -0.025212876498699188, + -0.03975782170891762, + -0.025866754353046417, + -0.012774731032550335, + 0.025614434853196144, + -0.022459642961621284, + 0.051563091576099396, + -0.0658242255449295, + -0.10052598267793655, + 0.04746606573462486, + 0.05607842653989792, + -0.04784712195396423, + -0.0689939633011818, + -0.081407830119133, + -0.05574692413210869, + 0.06883357465267181, + 0.0012890079524368048, + -0.006584781687706709, + 0.0034555867314338684, + -0.16677987575531006, + 0.03850133717060089, + 0.0646081417798996, + -0.020491382107138634, + -0.06568509340286255, + 0.01647818833589554, + 0.010738842189311981, + -0.10646927356719971, + -0.004830311052501202, + -0.012988042086362839, + 0.06665441393852234, + 0.0005932023632340133, + 0.03479655459523201, + 0.0450022928416729, + -0.026926198974251747, + 0.062212005257606506, + 0.008288467302918434, + 0.08717960119247437, + 0.02179916761815548, + 0.01849927380681038, + -0.005198243539780378, + 0.0014914505882188678, + -0.016471097245812416, + 0.0110631687566638, + 0.026349922642111778, + 0.004290660843253136, + -0.015310290269553661, + -0.03273898735642433, + -0.05321072041988373, + -0.043003302067518234, + -0.04013453423976898, + 0.0343557670712471, + 0.05938092991709709, + 0.057464178651571274, + -0.02012494206428528, + -0.06891020387411118, + 0.042753223329782486, + -0.07191784679889679, + -0.019233359023928642, + -0.04175040125846863, + -0.029874471947550774, + 0.04613620415329933, + -0.0430050753057003, + -0.00240632938221097, + 0.025916485115885735, + -0.0076596406288445, + -0.06380512565374374, + 0.050611987709999084, + 0.024783065542578697, + 0.06768494099378586, + 0.000422521959990263, + -0.01060959231108427, + 0.017758438363671303, + -0.04420328512787819, + 0.04624151438474655, + -0.02242819406092167, + -0.007638187147676945, + -0.008426891639828682, + 0.02186587080359459, + -0.05636993795633316, + 0.002438550116494298, + -0.02676074579358101, + 0.0031487648375332355, + -0.012720348313450813, + 0.021984193474054337, + -0.008268555626273155, + 0.1243416890501976, + -0.0191023051738739, + 0.09199675172567368, + 0.023906053975224495, + 0.026409441605210304, + -0.01694684848189354, + -0.009887253865599632, + -0.0334126316010952, + -0.0409555658698082, + -1.2882352793256838e-33, + 0.02168036438524723, + 0.034474585205316544, + -0.03292780742049217, + 0.12308307737112045, + -0.0009012447553686798, + 0.03190571814775467, + -0.07854362577199936, + 0.0188765749335289, + -0.07242095470428467, + 0.07332613319158554, + 0.04281805455684662, + 0.11475697159767151, + -0.04432405158877373, + 0.09082584083080292, + 0.12925854325294495, + 0.015062706544995308, + 0.07199420779943466, + -0.07183320075273514, + -0.032756008207798004, + -0.00023705008788965642, + 0.013275898061692715, + -0.014165275730192661, + -0.04693996533751488, + 0.05131900683045387, + 0.04208672046661377, + 0.039305269718170166, + 0.07120160758495331, + 0.021009499207139015, + -0.037237491458654404, + 0.019409986212849617, + -0.00988384522497654, + -0.008776294998824596, + -0.037459857761859894, + 3.4164237149525434e-05, + 0.04104851186275482, + 0.025395672768354416, + -0.013186944648623466, + -0.020408403128385544, + 0.09684497117996216, + 0.0021385529544204473, + -0.13122031092643738, + -0.02591809816658497, + -0.03723583742976189, + -0.08421595394611359, + 0.03927537798881531, + 0.08279827982187271, + 0.0014071161858737469, + -0.022421052679419518, + 0.08538993448019028, + -0.009717618115246296, + -0.09571755677461624, + -0.03224595636129379, + 0.02404586784541607, + 0.028220856562256813, + -0.052174363285303116, + 0.019636055454611778, + -0.02322680503129959, + 0.11979059875011444, + 0.009205669164657593, + 0.045283835381269455, + -0.034972455352544785, + 0.027654308825731277, + 0.06227781996130943, + -0.04097898304462433, + -0.14277440309524536, + 0.043676525354385376, + -0.13479019701480865, + 0.021849386394023895, + 0.11543965339660645, + 0.024856649339199066, + -0.05621814355254173, + 0.09247645735740662, + 0.00416195672005415, + 0.06726400554180145, + 0.09117496013641357, + -0.01320959534496069, + 0.01859438233077526, + -0.08295290917158127, + -0.02070852741599083, + -0.024856291711330414, + -0.026826826855540276, + -0.017041392624378204, + 0.054317086935043335, + 0.0754692330956459, + 0.033557288348674774, + 0.020575404167175293, + -0.03272785618901253, + -0.007008834276348352, + -0.0032200589776039124, + -0.022166600450873375, + -0.09125203639268875, + -0.018043192103505135, + -0.000512604892719537, + -0.04052422195672989, + -0.12733478844165802, + -1.6075491361769424e-33, + -0.09262595325708389, + 0.025671720504760742, + -0.0821874663233757, + -0.013049404136836529, + -0.04175511747598648, + 0.05706905946135521, + 0.027588045224547386, + -0.07631894201040268, + 0.010860475711524487, + -0.027962373569607735, + 0.041542086750268936, + 0.016311267390847206, + -0.06654617935419083, + -0.016241904348134995, + -0.02479066699743271, + -0.006407177075743675, + -0.08859650045633316, + -0.002362387953326106, + 0.001778954523615539, + -0.00428970530629158, + -0.05848420783877373, + 0.021240677684545517, + -0.028925875201821327, + 0.024556158110499382, + 0.045609381049871445, + 0.054012782871723175, + -0.03769521042704582, + -0.01643611490726471, + -0.022291192784905434, + -0.014018776826560497, + 0.029855718836188316, + -0.023822033777832985, + 0.05498773232102394, + 0.01920563541352749, + -0.11021727323532104, + -0.015249810181558132, + 0.09649243205785751, + 0.008988805115222931, + -0.003806106746196747, + 0.006021543405950069, + 0.028681082651019096, + -0.07697189599275589, + 0.11704713106155396, + 0.02741275168955326, + 0.015379499644041061, + 0.0043434216640889645, + 0.024536943063139915, + -0.07115944474935532, + -0.04342006519436836, + 0.04458208382129669, + 0.031014353036880493, + -0.054850298911333084, + -0.0798444151878357, + 0.025359725579619408, + -0.04929504171013832, + -0.025449763983488083, + 0.025859154760837555, + 0.015357531607151031, + -0.008459780365228653, + 0.04203985631465912, + -0.06704868376255035, + 0.022771663963794708, + 0.018277615308761597, + 0.006577704567462206, + -0.04500189051032066, + -0.03505256772041321, + 0.011221104301512241, + -0.04450127109885216, + -0.021364811807870865, + -0.05638635531067848, + 0.0570126548409462, + 0.03182819113135338, + 0.008311194367706776, + 0.04138628765940666, + -0.08735629916191101, + -0.04519088566303253, + 0.024087531492114067, + 0.052457500249147415, + 0.056103579699993134, + 0.03686266019940376, + 0.010049089789390564, + -0.006464206613600254, + 0.012288463301956654, + -0.002034509088844061, + -0.08230248093605042, + 0.05309867113828659, + 0.013944695703685284, + 0.06882137805223465, + -0.00907923560589552, + -0.04866096004843712, + -0.05258392542600632, + 0.13665512204170227, + -0.08901187777519226, + -0.06446359306573868, + -0.056219905614852905, + -2.0977180881232016e-08, + -0.011858336627483368, + -0.06748221069574356, + -0.10074850916862488, + -0.07762247323989868, + 0.066988006234169, + -0.03482885658740997, + -0.02060561627149582, + -0.039638932794332504, + -0.04079445078969002, + -0.041598979383707047, + 0.020453520119190216, + 0.053209222853183746, + -0.07550933212041855, + -0.05844894051551819, + -0.008457348681986332, + 0.05645650997757912, + 0.06945864111185074, + 0.02058865688741207, + -0.041502609848976135, + -0.08385642617940903, + 0.0448048897087574, + 0.06407712399959564, + 0.019934268668293953, + -0.019422274082899094, + -0.011922447010874748, + 0.008768763393163681, + -0.019509106874465942, + 0.02860632725059986, + 0.06277886033058167, + 0.0626508966088295, + 0.08476001769304276, + 0.04635514318943024, + -0.020945362746715546, + 0.006275603547692299, + -0.05012049525976181, + 0.03588943928480148, + 0.02328035794198513, + 0.03131819888949394, + 0.005988876335322857, + 0.10392601788043976, + -0.06788154691457748, + -0.03181260824203491, + -0.0008596163243055344, + -0.014558808878064156, + 0.0710049644112587, + -0.0074813393875956535, + -0.013370213098824024, + -0.044806189835071564, + -0.05077267810702324, + -0.12339939922094345, + 0.022130334749817848, + 0.02715594507753849, + 0.060280941426754, + 0.04799693822860718, + -0.047791220247745514, + -0.049951981753110886, + -0.03795953094959259, + 0.025435838848352432, + 0.00039040768751874566, + 0.04123767092823982, + 0.08481840789318085, + -0.09310582280158997, + 0.029899099841713905, + -0.012482472695410252 + ], + "plus-circle-bold||addition,sum,mathematics,arithmetic,calculator,round,+": [ + -0.026533832773566246, + 0.017072618007659912, + -0.07143374532461166, + 0.02272719331085682, + -0.017462005838751793, + -0.039229996502399445, + 0.04488327354192734, + -0.01930675096809864, + 0.0221164058893919, + -0.01666310802102089, + -0.0007913419976830482, + -0.01807941123843193, + 0.038948506116867065, + -0.04500953108072281, + 0.029465267434716225, + -0.02986983209848404, + -0.07344361394643784, + 0.022703096270561218, + 0.024905510246753693, + -0.07670023292303085, + 0.004408977925777435, + -0.029575513675808907, + 0.036855168640613556, + 0.0966506227850914, + 0.08215304464101791, + 0.050690460950136185, + 0.011687210761010647, + -0.01830456033349037, + 0.07375247031450272, + -0.04843967407941818, + -0.09207317233085632, + 0.020160138607025146, + 0.1182127520442009, + -0.03375595062971115, + -0.046232495456933975, + -0.019499436020851135, + -0.03202931955456734, + 0.05296706408262253, + 0.005307247396558523, + 0.009437136352062225, + -0.02848931960761547, + -0.0819922536611557, + 0.08509029448032379, + 0.030755242332816124, + -0.08031504601240158, + -0.04294583201408386, + -0.1235005185008049, + -0.02234119549393654, + 0.044856078922748566, + 0.01209521759301424, + -0.004459690302610397, + -0.017704516649246216, + -0.17902830243110657, + 0.006750097032636404, + 0.06757698953151703, + -0.021430475637316704, + -0.05174027383327484, + -8.221279131248593e-05, + 0.04199609532952309, + -0.08891958743333817, + 0.01975070871412754, + -0.03409633785486221, + 0.07037897408008575, + 0.015677237883210182, + -0.006007644813507795, + 0.0336921326816082, + -0.0334114171564579, + -0.005133091472089291, + 0.00949969794601202, + 0.029861532151699066, + 0.012563259340822697, + 0.044230323284864426, + -0.021756678819656372, + -0.029385453090071678, + 0.0018639910267665982, + 0.03800257295370102, + -0.01625395193696022, + 0.018714167177677155, + -0.04102987423539162, + -0.04786211624741554, + -0.02954285778105259, + -0.031799718737602234, + 0.0048800124786794186, + 0.052789732813835144, + 0.05681006610393524, + 0.08756504952907562, + 0.00026323911151848733, + -0.09531274437904358, + 0.04566726088523865, + -0.05962154269218445, + -0.03578659147024155, + -0.014763148501515388, + -0.06467829644680023, + 0.02394150011241436, + -0.0922449454665184, + -0.0037246490828692913, + 0.01610567420721054, + -0.01944894716143608, + -0.09729764610528946, + 0.08033738285303116, + 0.04840408265590668, + 0.03066609427332878, + 0.018382463604211807, + -0.01630142331123352, + 0.010945282876491547, + -0.02172367461025715, + 0.05929688364267349, + -0.03494098410010338, + 0.0035046865232288837, + 0.01148676685988903, + 0.014442739076912403, + -0.08153096586465836, + 0.02594834193587303, + -0.0275952760130167, + -0.009704925119876862, + 0.022800441831350327, + 0.0011427083518356085, + -0.01699250377714634, + 0.12617826461791992, + 0.01604595221579075, + 0.08473385870456696, + 0.033034149557352066, + 0.009956988506019115, + -0.00990796834230423, + -0.055363819003105164, + -0.017221549525856972, + -0.03843335062265396, + -2.1382802437983974e-33, + -0.002377486787736416, + 0.07813075184822083, + -0.017658129334449768, + 0.0652969628572464, + -0.03475188836455345, + -0.019819922745227814, + -0.0425594225525856, + -0.005451201926916838, + 0.014181036502122879, + 0.04828701540827751, + 0.024627652019262314, + 0.09261433780193329, + -0.004286704584956169, + 0.06450904905796051, + 0.13349515199661255, + -0.011355792172253132, + 0.10197759419679642, + -0.06772704422473907, + -0.050852540880441666, + -0.03440232202410698, + 0.0032999722752720118, + -0.00813833437860012, + -0.084394671022892, + 0.03362414240837097, + 0.033136509358882904, + 0.0543493777513504, + 0.06422007828950882, + 0.03967355936765671, + -0.01993134804069996, + 0.034266676753759384, + 0.0226749200373888, + -0.0024098027497529984, + -0.022543342784047127, + 0.033666301518678665, + 0.05015774071216583, + 0.015505339950323105, + -0.04069187492132187, + 5.5013664677971974e-05, + 0.09614032506942749, + 0.009427455253899097, + -0.11312907934188843, + -0.03550334647297859, + -0.04253854230046272, + -0.0441044345498085, + 0.02500065043568611, + 0.1109771728515625, + 0.00010116994963027537, + -0.010562840849161148, + 0.05785510316491127, + -0.01343858428299427, + -0.11714429408311844, + -0.024646416306495667, + -0.00981814879924059, + -0.003957224544137716, + -0.04699385166168213, + -0.006817256566137075, + -0.0043909926898777485, + 0.08191461116075516, + -0.029478611424565315, + 0.0298029575496912, + -0.012955025769770145, + 0.038023438304662704, + 0.038353923708200455, + -0.05037926137447357, + -0.15269675850868225, + 0.059737592935562134, + -0.1463925987482071, + -0.014247664250433445, + 0.1009269431233406, + -0.002955646486952901, + -0.03958912193775177, + 0.095607228577137, + 0.02378675900399685, + 0.09439469128847122, + 0.07537061721086502, + -0.02295195683836937, + 0.023451421409845352, + -0.04386955872178078, + 0.0024906061589717865, + -0.013307374902069569, + -0.018637601286172867, + 0.002628778573125601, + 0.028388286009430885, + 0.029085034504532814, + 0.03916684538125992, + -0.012720081023871899, + -0.004528874531388283, + 0.0012087381910532713, + 0.015336154960095882, + -0.0027159599121659994, + -0.08144068717956543, + 0.0038228800985962152, + 0.03915487229824066, + 0.021416988223791122, + -0.14370810985565186, + -6.041552398386997e-34, + -0.09323175996541977, + 0.033965446054935455, + -0.06519491970539093, + -0.008032239973545074, + -0.03797713667154312, + 0.05230135843157768, + 0.008492127060890198, + -0.08200483024120331, + 0.013128380291163921, + 0.0057593765668570995, + 0.013892573304474354, + 0.0036982232704758644, + -0.055739838629961014, + -0.012876451946794987, + 0.015234759077429771, + -0.029328810051083565, + -0.07045654207468033, + 0.007521356455981731, + 0.00036704257945530117, + 0.010225110687315464, + -0.06528244912624359, + 0.015105849131941795, + -0.03515664488077164, + 0.002021594438701868, + 0.0005153158563189209, + 0.06663525104522705, + -0.02019486017525196, + -0.0600159615278244, + -0.02074694260954857, + 0.02728342078626156, + -0.04052837938070297, + -0.05043373256921768, + 0.07263168692588806, + 0.03095611371099949, + -0.07131684571504593, + -0.05435614660382271, + 0.11076218634843826, + -0.0418972410261631, + -0.03413026034832001, + -0.033067066222429276, + -0.0026801968924701214, + -0.09944584965705872, + 0.12107237428426743, + 0.036703649908304214, + 0.03369729220867157, + -0.03397724777460098, + 0.07436592876911163, + -0.021312061697244644, + -0.09353070706129074, + 0.04842899367213249, + 0.012062640860676765, + -0.023198166862130165, + -0.03687926381826401, + 0.03711026534438133, + -0.05250191688537598, + 0.0024065084289759398, + 0.016814451664686203, + 0.046696994453668594, + 0.0015552419936284423, + 0.03179805353283882, + -0.07821028679609299, + -0.0002718917967285961, + 0.006456676404923201, + 0.04187570884823799, + -0.015662502497434616, + -0.023976938799023628, + 0.040889155119657516, + -0.03872249647974968, + -0.04750073701143265, + -0.013206827454268932, + 0.01813005469739437, + 0.07578268647193909, + 0.008060312829911709, + 0.02668588235974312, + -0.07213588058948517, + -0.032818716019392014, + 0.05306908115744591, + 0.028365962207317352, + 0.038469403982162476, + 0.0398806668817997, + 0.010501086711883545, + 0.021876811981201172, + -0.014714178629219532, + -0.01607719622552395, + -0.049849797040224075, + 0.020323801785707474, + 0.014316623099148273, + 0.05864638462662697, + -0.008621077053248882, + -0.021916639059782028, + -0.047986581921577454, + 0.13426239788532257, + -0.07451361417770386, + -0.03595530986785889, + 0.006956265773624182, + -2.16069171443678e-08, + -0.02018108405172825, + -0.025357982143759727, + -0.09378232806921005, + -0.050922490656375885, + 0.09956446290016174, + -0.05453934893012047, + -0.0080205537378788, + -0.06465591490268707, + -0.07817727327346802, + -0.03697964549064636, + 0.008784078992903233, + 0.07983231544494629, + -0.08856041729450226, + -0.05884828418493271, + -0.023934824392199516, + 0.05907845124602318, + 0.07262279838323593, + 0.02552376501262188, + -0.01944168657064438, + -0.06349390745162964, + 0.03763464093208313, + 0.0359211303293705, + 0.04283579811453819, + -0.06936680525541306, + -0.023288505151867867, + -0.004007726442068815, + -0.007845361717045307, + 0.035494592040777206, + 0.007895554415881634, + 0.017488211393356323, + 0.06301099061965942, + 0.04931222274899483, + -0.03284614160656929, + 0.017434947192668915, + -0.04879600182175636, + -0.02271983027458191, + 0.019732464104890823, + 0.06512042880058289, + 0.004762772936373949, + 0.13041262328624725, + -0.07041415572166443, + -0.005579927936196327, + 0.016758011654019356, + -0.026179447770118713, + 0.08205044269561768, + 0.0335053913295269, + -0.011611699126660824, + -0.05211332067847252, + -0.09229185432195663, + -0.11473589390516281, + -0.029444679617881775, + 0.03334946930408478, + 0.08127642422914505, + 0.04903397709131241, + -0.03451168164610863, + -0.05726879835128784, + 0.007582515478134155, + 0.05597516894340515, + -0.04634692519903183, + 0.0941687598824501, + 0.0638858750462532, + -0.06059077009558678, + 0.051373280584812164, + -0.009656091220676899 + ], + "plus-minus-bold||plus or minus,plus/minus,add/subtract,addition,sum,subtraction,difference,mathematics,arithmetic,calculator,+,-,\u00b1": [ + -0.03472408652305603, + 0.0006962367915548384, + -0.05020298436284065, + -0.031046252697706223, + -0.03803934156894684, + -0.03480265289545059, + -0.012387577444314957, + 0.03540627285838127, + -0.031787317246198654, + 0.016454538330435753, + 0.04795270413160324, + -0.01710727997124195, + 0.0673435777425766, + 0.008679783903062344, + -0.02077636681497097, + -0.01908412203192711, + -0.04221319779753685, + 0.05892908573150635, + 0.006041870918124914, + -0.06009939685463905, + -0.0046132938005030155, + -0.042990051209926605, + -0.026799777522683144, + 0.02552490308880806, + 0.15020312368869781, + 0.024479232728481293, + -0.03315119072794914, + 0.024459833279252052, + 0.08461213111877441, + -0.03173740208148956, + -0.06818315386772156, + -0.020384442061185837, + 0.18660598993301392, + -0.014256777241826057, + -0.0491756871342659, + -0.04058295115828514, + 0.004013408441096544, + 0.036810677498579025, + -0.006653654854744673, + 0.04246746003627777, + -0.077217698097229, + -0.08617502450942993, + 0.012828380800783634, + 0.03545403108000755, + -0.035589829087257385, + -0.0585530549287796, + -0.1057218462228775, + -0.03652492165565491, + 0.05917270481586456, + 0.0032862972002476454, + 0.015032172203063965, + 0.019635217264294624, + -0.18977369368076324, + 0.05778606981039047, + 0.026160718873143196, + -0.003334068227559328, + -0.050585515797138214, + 0.029657358303666115, + -0.011672422289848328, + -0.055151134729385376, + -0.022672267630696297, + 0.004038963001221418, + -0.004636993631720543, + -0.032512277364730835, + 0.029592040926218033, + 0.04105871543288231, + -0.012026996351778507, + 0.028981482610106468, + 0.04458761215209961, + 0.08914386481046677, + -0.00962493009865284, + 0.012078117579221725, + 0.0007487740367650986, + -0.0002902911219280213, + -0.044968489557504654, + 0.022949909791350365, + -0.013456868939101696, + 0.04881429672241211, + -0.023905334994196892, + -0.032942142337560654, + -0.03598295524716377, + 0.005237814970314503, + -0.02086806483566761, + 0.06091286242008209, + 0.06093646213412285, + 0.046761404722929, + 0.0072539933025836945, + -0.029087724164128304, + 0.022672323510050774, + -0.05171593278646469, + -0.030179206281900406, + -0.04389245808124542, + -0.0032169432379305363, + -0.003917774651199579, + -0.058264002203941345, + 0.02454650215804577, + 0.012392733246088028, + 0.020124269649386406, + -0.02175261080265045, + 0.059897489845752716, + 0.007773704826831818, + 0.02686489373445511, + -0.05688059329986572, + -0.02395988628268242, + 0.006167997140437365, + -0.0460384339094162, + 0.023453721776604652, + -0.04345570132136345, + 0.028994586318731308, + -0.010959569364786148, + -0.010613037273287773, + -0.030549107119441032, + 0.004861469846218824, + -0.05444984510540962, + -0.0019339720020070672, + -0.0018870298517867923, + 0.030655639246106148, + 0.035667482763528824, + 0.1226535439491272, + -0.01065963227301836, + 0.048671554774045944, + 0.014047021977603436, + 0.031003111973404884, + -0.019744042307138443, + 0.009381468407809734, + 0.023870231583714485, + -0.019981062039732933, + -7.966255420545562e-34, + 0.01096853706985712, + 0.034598395228385925, + 0.008991742506623268, + 0.10377717018127441, + -0.020101817324757576, + -0.008224238641560078, + -0.11884387582540512, + 0.01295057125389576, + -0.07888328284025192, + 0.12398860603570938, + 0.07277699559926987, + 0.1069965586066246, + 0.011686846613883972, + 0.0677153691649437, + 0.11902298778295517, + 0.0093793710693717, + 0.0750756710767746, + -0.09017927944660187, + -0.06819988042116165, + -0.012707918882369995, + 0.04004856199026108, + -0.020850926637649536, + -0.028739772737026215, + 0.04421956464648247, + 0.07535988092422485, + 0.024936635047197342, + 0.03879137337207794, + 0.019927019253373146, + -0.016588211059570312, + 0.007494761608541012, + 0.01540414709597826, + -0.034887440502643585, + -0.023780375719070435, + 0.002078764606267214, + 0.046512752771377563, + 0.006958897225558758, + -0.03759926185011864, + -0.03070555068552494, + 0.09135125577449799, + -0.010423990897834301, + -0.15744604170322418, + -0.023820364847779274, + -0.04918559640645981, + -0.10774093121290207, + 0.07359005510807037, + 0.10001961141824722, + 0.002062857151031494, + -0.027364283800125122, + 0.0653437003493309, + 0.0023728101514279842, + -0.08058390021324158, + -0.010050906799733639, + 0.01982753723859787, + 0.0063478173688054085, + -0.04782019183039665, + 0.0017607727786526084, + 0.016790617257356644, + 0.09466420114040375, + 0.014386497437953949, + 0.03063354268670082, + -0.037375569343566895, + 0.03876417875289917, + 0.06666405498981476, + -0.08121514320373535, + -0.10245431214570999, + 0.04735704883933067, + -0.16600115597248077, + -0.0029640221036970615, + 0.06610790640115738, + 0.01955392397940159, + -0.0924791693687439, + 0.06999317556619644, + -0.02280745841562748, + 0.041480015963315964, + 0.05745326727628708, + -0.017331138253211975, + 0.017162561416625977, + -0.07606955617666245, + 0.010835403576493263, + -0.04012629762291908, + -0.05240451917052269, + -0.009683814831078053, + 0.03951060399413109, + 0.011913224123418331, + -0.016066089272499084, + -0.0010614837519824505, + -0.008546754717826843, + -0.01446294691413641, + 0.0018023517914116383, + -0.053881172090768814, + -0.08860476315021515, + 0.0073493123054504395, + -0.008884918875992298, + -0.01867526024580002, + -0.08217901736497879, + -1.5169015321617548e-33, + -0.08749669045209885, + 0.015361426398158073, + -0.12544801831245422, + -0.006965651176869869, + -0.06829705834388733, + 0.05821240320801735, + 0.06856974214315414, + -0.051429376006126404, + 0.04397900402545929, + -0.02568911202251911, + 0.054739464074373245, + 0.041999638080596924, + -0.06959468871355057, + -0.011116900481283665, + -0.020479973405599594, + -0.012437301687896252, + -0.10164147615432739, + -0.012984117493033409, + -0.014887047000229359, + 0.023641275241971016, + -0.06892324239015579, + 0.06305232644081116, + -0.041082415729761124, + 0.015822041779756546, + 0.0760984867811203, + 0.0215980913490057, + -0.023102419450879097, + -0.020563047379255295, + -0.014285292476415634, + -0.02411031909286976, + 0.010321791283786297, + 0.02231643535196781, + 0.08389275521039963, + -0.004900253843516111, + -0.1252840757369995, + -0.0430263951420784, + 0.04963734745979309, + 0.027417639270424843, + -0.024114087224006653, + 0.007411507423967123, + -0.014773783273994923, + -0.04098750650882721, + 0.1601100116968155, + 0.053694210946559906, + 0.010449533350765705, + 0.001380058121867478, + -0.05591455101966858, + -0.046580586582422256, + -0.02399185672402382, + 0.047102220356464386, + 0.027971168980002403, + -0.041312869638204575, + -0.09508772939443588, + 0.01761035993695259, + 0.006173878908157349, + -0.019164076074957848, + 0.034129057079553604, + 0.012286469340324402, + -0.00036862576962448657, + 0.06321299076080322, + -0.09224982559680939, + 0.005903503857553005, + 0.044024284929037094, + 0.021061154082417488, + -0.06598526239395142, + -0.004781980998814106, + 0.0014077413361519575, + -0.040790900588035583, + -0.0061752027831971645, + -0.07274707406759262, + 0.05971496179699898, + 0.060867276042699814, + -0.01443059928715229, + 0.0026552267372608185, + -0.07287205010652542, + -0.0857146605849266, + 0.0184535700827837, + 0.09071039408445358, + 0.03792848438024521, + 0.01975507102906704, + 0.01646246388554573, + -0.004407944623380899, + -0.019479934126138687, + 0.012785281054675579, + -0.10504218190908432, + 0.05827708914875984, + -0.03195897117257118, + 0.09747741371393204, + -0.026912260800600052, + -0.014860156923532486, + -0.06623038649559021, + 0.11465626955032349, + -0.0418548546731472, + -0.04199949651956558, + -0.0026533969212323427, + -2.937745691156124e-08, + -0.02351454086601734, + -0.02744952216744423, + -0.05058171600103378, + -0.037864916026592255, + 0.03884750232100487, + -0.0046737357042729855, + 0.0012957205763086677, + -0.009949716739356518, + -0.008767453022301197, + -0.02991453930735588, + 0.046263180673122406, + 0.05456036701798439, + -0.10066349804401398, + -0.06112552434206009, + 0.008927877992391586, + 0.062365639954805374, + 0.09718942642211914, + 0.050879497081041336, + -0.036107320338487625, + -0.043994586914777756, + 0.036036327481269836, + 0.06312593072652817, + 0.010172100737690926, + 0.0023322030901908875, + 0.029174774885177612, + 0.008409720845520496, + -0.03803357854485512, + 0.07302353531122208, + 0.0371074341237545, + 0.03117087110877037, + 0.06306837499141693, + 0.04763047769665718, + 0.026427829638123512, + -0.0015958428848534822, + -0.028403455391526222, + 0.05100104957818985, + 0.00666842283681035, + 0.06221960857510567, + 0.005553968716412783, + 0.05807805061340332, + -0.0585780031979084, + -0.04949663579463959, + -0.016703903675079346, + -0.023047713562846184, + 0.05871865153312683, + 0.0030109549406915903, + 0.02643541805446148, + -0.04359550029039383, + -0.05544839799404144, + -0.08819585293531418, + 0.0404801219701767, + 0.031355325132608414, + 0.04975104704499245, + 0.05863547325134277, + -0.03517531976103783, + -0.01890426315367222, + -0.03442876785993576, + -0.009489948861300945, + 0.006963236257433891, + 0.07554100453853607, + 0.08253606408834457, + -0.0776025801897049, + -0.0026760778855532408, + -0.021694211289286613 + ], + "plus-square-bold||addition,sum,mathematics,arithmetic,calculator,+": [ + -0.021014336496591568, + 0.01882973685860634, + -0.011373012326657772, + 0.02910795249044895, + -0.04684368148446083, + 0.0196221936494112, + 0.020863480865955353, + -0.0521729551255703, + -0.005377389490604401, + -1.4616221051255707e-05, + 0.020918117836117744, + 0.009067951701581478, + 0.0547395683825016, + -0.0436910055577755, + -0.048555586487054825, + -0.0012378593673929572, + -0.0459262877702713, + 0.03222539648413658, + 0.010579024441540241, + -0.046236950904130936, + 0.03378869593143463, + -0.025222638621926308, + -0.007244499400258064, + 0.04033442959189415, + 0.10969517379999161, + 0.03438882902264595, + 0.012195141054689884, + 0.011652910150587559, + 0.07820234447717667, + -0.033484429121017456, + -0.026370735839009285, + -0.032470911741256714, + 0.15433046221733093, + -0.023710791021585464, + -0.04088316485285759, + -0.010206016711890697, + -0.007225909736007452, + 0.03774671629071236, + -0.0007026251987554133, + 0.05353216081857681, + -0.05130520090460777, + -0.13323013484477997, + 0.044453687965869904, + 0.06129125878214836, + -0.052500538527965546, + -0.07201485335826874, + -0.06532774120569229, + -0.05194674804806709, + 0.06797181069850922, + -0.02898186258971691, + -0.008598911575973034, + -0.0044712405651807785, + -0.15323714911937714, + 0.012062137946486473, + 0.06569381058216095, + -0.024146169424057007, + -0.05519990995526314, + 0.017923494800925255, + 0.03599262610077858, + -0.093101367354393, + 0.009107684716582298, + -0.0043979850597679615, + 0.067206472158432, + 0.004120203200727701, + 0.009597059339284897, + 0.0572802796959877, + -0.025543903931975365, + 0.028543448075652122, + 0.014197561889886856, + 0.06735246628522873, + 0.029655326157808304, + 0.04479275271296501, + -0.004821550101041794, + 0.0012512248940765858, + -0.013303105719387531, + -0.03362426161766052, + 0.01726250909268856, + 0.004955761134624481, + -0.016643371433019638, + -0.03191602602601051, + -0.03998209163546562, + -0.048398684710264206, + -0.05868350341916084, + 0.0290409903973341, + 0.0460423044860363, + 0.0560184009373188, + -0.022966304793953896, + -0.07945103943347931, + 0.02958051860332489, + -0.08478013426065445, + -0.013043186627328396, + -0.03984580934047699, + -0.02067067101597786, + 0.06016586720943451, + -0.058776743710041046, + -0.01238974928855896, + 0.04193010926246643, + 0.005619724281132221, + -0.07549011707305908, + 0.05671647563576698, + 0.048940181732177734, + 0.05316716060042381, + -0.01183436531573534, + -0.019215667620301247, + 0.03507257252931595, + -0.03486855700612068, + 0.08529873192310333, + -0.006127348635345697, + -0.011152621358633041, + 0.011537370271980762, + 0.007582788355648518, + -0.07151912152767181, + 0.0023457652423530817, + 0.011956162750720978, + -0.013779175467789173, + 0.001900476054288447, + 0.00147080491296947, + -0.01904316619038582, + 0.12731273472309113, + -0.01757735200226307, + 0.10109066963195801, + 0.007775230333209038, + 0.02875610813498497, + -0.015016666613519192, + -0.016932673752307892, + -0.014543167315423489, + -0.049878258258104324, + -1.471441675866603e-33, + 0.020451268181204796, + 0.053035054355859756, + 0.0032269407529383898, + 0.1278611123561859, + -0.003537062555551529, + -0.004161179065704346, + -0.0780276358127594, + -0.023569688200950623, + -0.02654125541448593, + 0.09670861810445786, + 0.05162370577454567, + 0.09132120013237, + -0.0650748610496521, + 0.0870809406042099, + 0.14116376638412476, + 0.024257035925984383, + 0.0696427971124649, + -0.053122445940971375, + -0.007052737288177013, + 0.004105797037482262, + 0.006192874629050493, + -0.014349514618515968, + -0.07034412026405334, + 0.054402995854616165, + 0.03270338848233223, + 0.02644108422100544, + 0.07830892503261566, + 0.006736611016094685, + -0.004175879526883364, + 0.03729342296719551, + 0.019227344542741776, + 0.020874349400401115, + -0.048903197050094604, + -0.016768835484981537, + 0.0452657975256443, + 0.0030540768057107925, + -2.1602130800602026e-05, + -0.016293704509735107, + 0.09698119014501572, + -0.017401907593011856, + -0.12277623265981674, + -0.017494970932602882, + -0.014418662525713444, + -0.0911552906036377, + 0.052465107291936874, + 0.07604341208934784, + 0.026275569573044777, + -0.033760540187358856, + 0.0740741640329361, + -0.010822203010320663, + -0.08646579831838608, + -0.035161156207323074, + 0.026294687762856483, + 0.050179507583379745, + -0.0136137455701828, + -0.006016753148287535, + -0.04148852825164795, + 0.11992356181144714, + 0.03526078909635544, + 0.05954177305102348, + -0.027902163565158844, + 0.014460636302828789, + 0.04500022903084755, + -0.05010755732655525, + -0.14050018787384033, + 0.056751471012830734, + -0.13829901814460754, + 0.005748344119638205, + 0.08289781957864761, + 0.02290407195687294, + -0.05513681843876839, + 0.07726108282804489, + 0.013466543518006802, + 0.051382876932621, + 0.07502726465463638, + -0.02364092320203781, + 0.01006243098527193, + -0.07118429243564606, + 0.0016426756046712399, + -0.0681600421667099, + -0.026392126455903053, + 0.005518300924450159, + 0.011401652358472347, + 0.03443062677979469, + 0.029743118211627007, + 0.012302149087190628, + -0.04547599330544472, + -0.017449548467993736, + -0.00840052030980587, + -0.0051696873269975185, + -0.10442125797271729, + -0.017870960757136345, + 0.0005171596421860158, + -0.027559975162148476, + -0.1291103959083557, + -1.3974646021269909e-33, + -0.08800812065601349, + 0.04747610539197922, + -0.0889919176697731, + -0.02101387456059456, + -0.029657872393727303, + 0.04795752093195915, + 0.01835893653333187, + -0.08063974231481552, + 0.010125105269253254, + -0.015402412042021751, + 0.04777687415480614, + -0.011358611285686493, + -0.08151934295892715, + -0.02844751439988613, + -0.012752576731145382, + 0.0033308134879916906, + -0.05224381759762764, + -0.0016181690152734518, + -0.03325333446264267, + -0.035190779715776443, + -0.0754627212882042, + 0.00649359542876482, + -0.0041330792009830475, + 0.02029251493513584, + 0.020800258964300156, + 0.05944642052054405, + -0.03698605298995972, + -0.01951935514807701, + -0.01063237339258194, + 0.008938244543969631, + 0.011902179569005966, + -0.011803291738033295, + 0.055107343941926956, + 0.02092011831700802, + -0.13558578491210938, + -0.02628329023718834, + 0.09009886533021927, + -0.004900741390883923, + 0.011079362593591213, + -0.007382161915302277, + 0.03349842131137848, + -0.08222074061632156, + 0.12327960133552551, + 0.03779183700680733, + 0.026312096044421196, + 0.0175800584256649, + 0.04160637408494949, + -0.06657237559556961, + -0.038686808198690414, + 0.022404517978429794, + 0.005827412940561771, + -0.06470842659473419, + -0.08170884847640991, + 0.03870806097984314, + -0.06317544728517532, + -0.004692306742072105, + 0.025990476831793785, + 0.04416446387767792, + -0.018934069201350212, + 0.051303356885910034, + -0.062035635113716125, + 0.03271220624446869, + -0.005036874208599329, + 0.009287853725254536, + -0.06670311093330383, + -0.0330115370452404, + 0.04394448548555374, + -0.016862893477082253, + -0.0032723546028137207, + -0.015283367596566677, + 0.03867470473051071, + 0.04505682364106178, + 0.0024357640650123358, + 0.04285496473312378, + -0.08884318917989731, + -0.042428433895111084, + -0.006730070803314447, + 0.03757033124566078, + 0.0394199974834919, + 0.05516142025589943, + 0.03276968002319336, + 0.020438771694898605, + 0.01127553079277277, + -0.034715745598077774, + -0.07895804941654205, + 0.03314633294939995, + 0.012815640307962894, + 0.0703786239027977, + -0.017100587487220764, + -0.06206683814525604, + -0.05349711328744888, + 0.10855989158153534, + -0.09737858921289444, + -0.07483799010515213, + -0.04720263183116913, + -2.2088350704052573e-08, + -0.014831503853201866, + -0.04113667085766792, + -0.09207351505756378, + -0.08435000479221344, + 0.053655922412872314, + -0.057368792593479156, + -0.008457000367343426, + -0.04267590492963791, + -0.04145931079983711, + -0.04755555838346481, + -0.007914794608950615, + 0.05438291281461716, + -0.0879349410533905, + -0.05669289827346802, + -0.019131310284137726, + 0.058434829115867615, + 0.058073170483112335, + 0.010757971554994583, + -0.038460440933704376, + -0.07701443135738373, + 0.046177010983228683, + 0.04361814260482788, + 0.038287654519081116, + -0.0024622115306556225, + -0.034035131335258484, + 0.01927461288869381, + -0.037696290761232376, + 0.04085790365934372, + 0.06597650796175003, + 0.07709091156721115, + 0.08006218075752258, + 0.06755992025136948, + -0.031014591455459595, + -0.002967175329104066, + -0.05681540444493294, + -0.01180584542453289, + -0.0001811548718251288, + 0.050019022077322006, + 0.001417728140950203, + 0.0858653262257576, + -0.0542241670191288, + -0.03904114291071892, + 0.021314488723874092, + -0.014280222356319427, + 0.0840829610824585, + 0.01932831108570099, + -0.0014770759735256433, + -0.03724854439496994, + -0.065562404692173, + -0.1309024691581726, + 0.018135013058781624, + 0.015685101971030235, + 0.046518392860889435, + 0.07320023328065872, + -0.059022292494773865, + -0.06148448586463928, + -0.06019650772213936, + 0.03125797584652901, + 0.0053445580415427685, + 0.030416013672947884, + 0.10003001987934113, + -0.05929338186979294, + 0.030818404629826546, + -0.011270605958998203 + ], + "poker-chip-bold||chips,tokens,cards,gambling,casino": [ + -0.022397462278604507, + 0.040714066475629807, + -0.09086115658283234, + -0.0003123486530967057, + -0.07411854714155197, + 0.011521068401634693, + 0.12804308533668518, + -0.029589857906103134, + 0.06496883928775787, + -0.030359825119376183, + -0.009860758669674397, + -0.023296834900975227, + -0.010333194397389889, + -0.06556947529315948, + 0.020405713468790054, + -0.020937897264957428, + 0.03929900750517845, + 0.04129917174577713, + 0.03592425212264061, + 0.06808115541934967, + 0.011748709715902805, + -0.026798278093338013, + -0.0036287454422563314, + 0.026911694556474686, + 0.012001770548522472, + 0.06181354820728302, + 0.001288420520722866, + 0.013187135569751263, + -0.03233301267027855, + -0.02701481245458126, + -0.020749742165207863, + 0.08121560513973236, + 0.09536221623420715, + 0.040746647864580154, + 0.06723832339048386, + -0.07404651492834091, + -0.07742439955472946, + -0.045859966427087784, + -0.01738913170993328, + -0.01388129498809576, + 0.025018785148859024, + -0.08121692389249802, + -0.02692025899887085, + 0.09178745746612549, + 0.028028352186083794, + 0.013728699646890163, + -0.0183082427829504, + 0.03675435855984688, + -0.03180111199617386, + -0.0036492652725428343, + -0.004861664958298206, + -0.004421978257596493, + -0.05269018933176994, + -0.00939713791012764, + 0.06780269742012024, + -0.0075509995222091675, + -0.09400312602519989, + -0.00026483373949304223, + 0.01941860280930996, + 0.03237355872988701, + 0.04786818474531174, + 0.03593992069363594, + -0.002775172470137477, + 0.0674409493803978, + -0.08094865083694458, + -0.05981452390551567, + 0.04014142230153084, + 0.07965962588787079, + -0.030397139489650726, + 0.020029990002512932, + 0.05564208701252937, + -0.0009008169290609658, + 0.004935414530336857, + -0.0410769060254097, + 0.04857924208045006, + 0.032759301364421844, + 0.052781686186790466, + -0.037512972950935364, + 0.03152094781398773, + -0.1098189428448677, + -0.08335468918085098, + -0.1234126091003418, + 0.008526057004928589, + -0.033431436866521835, + 0.030176782980561256, + 0.017620909959077835, + -0.061657972633838654, + -0.009608356282114983, + 0.031209148466587067, + -0.10132303088903427, + -0.07509253919124603, + -0.03094700165092945, + 0.011505496688187122, + -0.0042219641618430614, + -0.008655281737446785, + -0.03333839029073715, + 0.018890077248215675, + -0.03733411803841591, + -0.019529415294528008, + 0.08331900089979172, + 0.03394990786910057, + 0.08190149068832397, + 0.0034434639383107424, + 0.006838142406195402, + 0.08281788229942322, + 0.05458826571702957, + -0.02287399396300316, + 0.0037396124098449945, + 0.04136411100625992, + -0.007174184080213308, + -0.06776394695043564, + 0.011773038655519485, + 0.03134831413626671, + -0.031249456107616425, + -0.05926402285695076, + 0.021339206025004387, + -0.09177544713020325, + -0.024405239149928093, + 0.1298917680978775, + 0.08703586459159851, + 0.021901465952396393, + 0.03896036371588707, + -0.04376683011651039, + -0.022290248423814774, + -0.0946832075715065, + 0.021022576838731766, + 0.0523981936275959, + -3.838016973425601e-33, + 0.0012183308135718107, + -0.0012117724400013685, + -0.04788108915090561, + 0.0333084911108017, + -0.008320669643580914, + 0.02509097009897232, + 0.021934442222118378, + -0.09964298456907272, + -0.06358779966831207, + 0.07183295488357544, + 0.031900957226753235, + 0.011892861686646938, + -0.028610359877347946, + 0.1870957612991333, + 0.0667537972331047, + -0.0006327601731754839, + -0.06631706655025482, + -0.05759825184941292, + 0.023830190300941467, + -0.020050767809152603, + -0.10347145795822144, + 0.08870912343263626, + 0.0214594267308712, + -0.038922280073165894, + -0.03800484910607338, + -0.005751423072069883, + -0.05741020664572716, + -0.07250416278839111, + 0.08841133117675781, + 0.03900114819407463, + 0.018821708858013153, + 0.020339814946055412, + 0.027555178850889206, + -0.05238847807049751, + 0.04645581915974617, + 0.1499895602464676, + 0.05120207369327545, + -0.008147048763930798, + -0.0732739195227623, + -0.030718492344021797, + -0.12491767853498459, + -0.006745684891939163, + -0.05676213279366493, + -0.039452631026506424, + -0.021126797422766685, + 0.0580674484372139, + -0.007841778919100761, + -0.06095932424068451, + 0.0055861808359622955, + 0.04412608593702316, + -0.058470938354730606, + -0.01292351819574833, + 0.052701566368341446, + -0.02991725131869316, + -0.011190086603164673, + -0.08003804832696915, + 0.020560188218951225, + 0.06241877004504204, + -0.05831296741962433, + -0.04081355780363083, + -0.06111157685518265, + -0.03832442685961723, + -0.019646722823381424, + 0.013799387961626053, + -0.060955554246902466, + 0.13922519981861115, + -0.02268213778734207, + -0.002836523111909628, + 0.01641826331615448, + 0.004883770365267992, + 0.03825884684920311, + 0.056912969797849655, + 0.017184773460030556, + -0.020205525681376457, + -0.059122052043676376, + 0.05071049556136131, + 0.0009284419356845319, + 0.007505148649215698, + -0.06729881465435028, + -0.005105293821543455, + -0.01459421869367361, + -0.00958269089460373, + -0.053811583667993546, + 0.040887609124183655, + -0.013825607486069202, + 0.08240485191345215, + 0.03738005459308624, + -0.09534953534603119, + 0.05429088696837425, + 0.006465269718319178, + -0.10378997772932053, + -0.005084028467535973, + 0.10739462077617645, + -0.07214555144309998, + -0.05062400922179222, + 5.5698545252283415e-34, + -0.09694413840770721, + 0.004448047373443842, + -0.008428557775914669, + 0.0408666767179966, + -0.03646383062005043, + -0.06295125186443329, + 0.010600090026855469, + -0.008767383173108101, + 0.05071432143449783, + -0.07469318062067032, + -0.057004064321517944, + -0.013359203934669495, + -0.006070622708648443, + -0.05392375960946083, + -0.0010573440231382847, + -0.02699126861989498, + -0.04854429140686989, + 0.09672243148088455, + 0.03259514272212982, + 0.06473095715045929, + 0.003581896424293518, + -0.02272823266685009, + -0.08634952455759048, + 0.11717497557401657, + 0.02237093821167946, + 0.04958358779549599, + -0.027902359142899513, + -0.02800523303449154, + -0.018385952338576317, + -0.05813929811120033, + 0.009978784248232841, + -0.10153628140687943, + 0.07038118690252304, + 0.05383401736617088, + -0.021400704979896545, + 0.06735723465681076, + 0.05232957378029823, + 0.02909012697637081, + -0.017667029052972794, + -0.07999908924102783, + -0.027512503787875175, + -0.07129348069429398, + 0.017877917736768723, + 0.08371845632791519, + 0.009202457964420319, + 0.0026836830656975508, + -0.0341058112680912, + -0.01704229786992073, + -0.0012668863637372851, + 0.0595378577709198, + -0.02265268936753273, + -0.014902746304869652, + -0.07324256747961044, + -0.013197893276810646, + -0.06484872847795486, + -0.013233162462711334, + 0.0072969249449670315, + 0.002209237776696682, + -0.012320946902036667, + 0.0281531885266304, + 0.015730582177639008, + 0.061537668108940125, + 0.013152225874364376, + 0.064829520881176, + 0.07916989177465439, + -0.047698285430669785, + -0.025731509551405907, + -0.004170000087469816, + 0.02018018066883087, + -0.00416053831577301, + -0.017590632662177086, + 0.048853617161512375, + -0.06124547868967056, + 0.030800119042396545, + 0.010848484002053738, + 0.015912121161818504, + -0.03138339892029762, + 0.02681749127805233, + 0.005608208943158388, + 0.0247819721698761, + -0.010631879791617393, + -0.03780100494623184, + 0.014249885454773903, + 0.07699348032474518, + -0.03399381414055824, + 0.04494389146566391, + 0.06736043840646744, + -0.01654559187591076, + -0.07236547023057938, + -0.03952943533658981, + 0.011065707542002201, + 0.002148240339010954, + 0.05920596048235893, + -0.044969674199819565, + -0.09015943109989166, + -1.888498601942956e-08, + 0.07647934556007385, + -0.04575343057513237, + -0.07297782599925995, + -0.009003741666674614, + 3.210740715076099e-06, + 0.006192202679812908, + -0.009108506143093109, + -0.07180646061897278, + -0.03950470685958862, + -0.015153024345636368, + 0.05997245013713837, + 0.05444476008415222, + -0.06543024629354477, + -0.11050263792276382, + 0.023255078122019768, + -0.02341480366885662, + -0.059924736618995667, + 0.0024588436353951693, + -0.027894264087080956, + 0.0129769928753376, + 0.02418658882379532, + 0.1010141521692276, + 0.056969597935676575, + -0.0987355038523674, + -0.01649627275764942, + 0.027232684195041656, + -0.023402014747262, + 0.018221097066998482, + 0.06979880481958389, + 0.07829710096120834, + 0.06568887084722519, + 0.014162897132337093, + 0.0835980772972107, + -0.0075510344468057156, + 0.006854228675365448, + -0.00789181049913168, + 0.04518761858344078, + 0.030527930706739426, + 0.006724718492478132, + 0.04509111866354942, + -0.05073218792676926, + -0.07924283295869827, + -0.037242066115140915, + -0.0379643477499485, + -0.03356871381402016, + -0.037589218467473984, + 0.023102063685655594, + -0.006145230028778315, + 0.03888433054089546, + -0.13434304296970367, + -0.017297562211751938, + 0.011221358552575111, + -0.006866668350994587, + -0.004852356389164925, + -0.012236161157488823, + -0.02222713828086853, + -0.010648511350154877, + 0.07939224690198898, + 0.05717417970299721, + -0.08390853554010391, + 0.07326459884643555, + 0.008805826306343079, + 0.004571190569549799, + 0.03495293855667114 + ], + "police-car-bold||*updated*,vehicles,cars,automobiles,law enforcement": [ + -0.025405004620552063, + 0.0021499365102499723, + -0.004249623976647854, + -0.0026986030861735344, + 0.020977118983864784, + 0.025515081360936165, + 0.019608695060014725, + -0.028257178142666817, + -0.05571187287569046, + 0.004892953205853701, + 0.09559207409620285, + 0.011731349863111973, + 0.05734019726514816, + -0.007635812275111675, + -0.04962508752942085, + 0.010355774313211441, + 0.10050956904888153, + 0.01112848799675703, + -0.03162304684519768, + 0.00818928238004446, + -0.03205687925219536, + 0.06501797586679459, + 0.09769227355718613, + 0.05978190526366234, + -0.0469704270362854, + 0.04428350180387497, + -0.021855270490050316, + 0.026660829782485962, + -0.06806643307209015, + -0.05277520790696144, + -0.04713677987456322, + 0.03162036091089249, + 0.08161412924528122, + 0.020370392128825188, + 0.02912840247154236, + -0.08635228127241135, + 0.043586280196905136, + -0.005131140351295471, + 0.021663455292582512, + 0.041562728583812714, + 0.04764168709516525, + -0.08799560368061066, + -0.0489702932536602, + 0.03456877917051315, + -0.020904794335365295, + -0.019141163676977158, + 0.013933023437857628, + 0.017933402210474014, + 0.012405631132423878, + -0.07636040449142456, + -0.01652439869940281, + -0.04784439131617546, + -0.07966171205043793, + 0.0011420410592108965, + -0.057678621262311935, + -0.05637526512145996, + -0.04020307585597038, + 0.06213133782148361, + 0.008507009595632553, + 0.011881612241268158, + 0.023821737617254257, + 0.04223709926009178, + 0.05063501372933388, + 0.0782991424202919, + 0.006712818518280983, + -0.02687912806868553, + -0.01730833761394024, + -0.0010574465850368142, + -0.00678217550739646, + 0.08492919057607651, + 0.05288277193903923, + 0.03301643952727318, + -0.004201704636216164, + -0.004817597102373838, + -0.054767537862062454, + -0.016743935644626617, + 0.0616874136030674, + 0.023343248292803764, + 6.44993779133074e-05, + -0.15964248776435852, + 0.02511059306561947, + -0.09069634974002838, + -0.06719006597995758, + -0.08034531027078629, + 0.005244550760835409, + -0.01657511480152607, + -0.09264657646417618, + -0.02285902015864849, + -0.07632341235876083, + -0.023554887622594833, + -0.06835414469242096, + -0.060637183487415314, + 0.0534365177154541, + -0.0076579987071454525, + -0.09958285093307495, + 0.047484785318374634, + 0.01541856024414301, + -0.007358556147664785, + -0.026191843673586845, + 0.06932059675455093, + 0.04230919107794762, + 0.018800867721438408, + -0.009413002990186214, + 0.004867957439273596, + -0.07811272144317627, + 0.019295113161206245, + -0.06651520729064941, + 0.04356856644153595, + -0.02901487797498703, + 0.04827704653143883, + 0.09985403716564178, + -0.07700605690479279, + -0.061124786734580994, + -0.017911473289132118, + -0.041795987635850906, + -0.007708368357270956, + -0.0735878199338913, + 0.05898057669401169, + 0.04913540557026863, + 0.09832586348056793, + -0.04510759934782982, + -0.05854585021734238, + -0.05993165820837021, + -0.04602937400341034, + 0.048905279487371445, + 0.0074704778380692005, + 0.028536146506667137, + -5.13546959782967e-33, + -0.010449374094605446, + -0.0066258287988603115, + 0.009929712861776352, + 0.09447537362575531, + 0.01172789465636015, + -0.004121803678572178, + -0.04882828891277313, + 0.01712368056178093, + -0.012271690182387829, + 0.09360750764608383, + 0.042441897094249725, + 0.047703515738248825, + -0.03909764066338539, + -0.012051422148942947, + 0.058228056877851486, + 0.03092188946902752, + -0.0655132606625557, + -0.0011147336335852742, + -0.04465116560459137, + 0.03748480603098869, + -0.03102749027311802, + 0.05793486163020134, + -0.028596259653568268, + 0.007145864423364401, + 0.024162042886018753, + 0.0030741491355001926, + -0.04447018727660179, + -0.016190124675631523, + 0.05965234339237213, + 0.03688683733344078, + 0.018968863412737846, + 0.15094448626041412, + 0.03534766659140587, + 0.05271334946155548, + 0.01368601806461811, + 0.023416658863425255, + -0.0579460971057415, + -0.08151518553495407, + -0.06766529381275177, + -0.06688957661390305, + -0.03931683674454689, + -0.040253665298223495, + -0.04992007091641426, + -0.017461709678173065, + 0.023628732189536095, + 0.05585801601409912, + -0.043781742453575134, + -0.07925808429718018, + -0.023840850219130516, + 0.013885323889553547, + -0.01270359382033348, + -0.05532924458384514, + -0.0389474555850029, + -0.005655220709741116, + -0.018073001876473427, + 0.06669020652770996, + -0.05021006986498833, + 0.08640008419752121, + 0.005314763635396957, + -0.03573622927069664, + -0.023616543039679527, + 0.09523022174835205, + 0.013729180209338665, + -0.04147403687238693, + -0.015011872164905071, + 0.0037615010514855385, + -0.02450348064303398, + 0.029225559905171394, + 0.08355581760406494, + 0.04667045921087265, + 0.002575631020590663, + 0.03765843063592911, + 0.0007130355224944651, + 0.07727251946926117, + 0.022028354927897453, + 0.015999941155314445, + -0.04278835654258728, + -0.007083432283252478, + -0.026026155799627304, + -0.05286989361047745, + -0.1314394474029541, + 0.033374566584825516, + -0.04471168294548988, + 0.07806016504764557, + 0.1282622516155243, + 0.06126701086759567, + -0.008624861016869545, + -0.07019521296024323, + 0.03128809854388237, + 0.07941561192274094, + -0.10555045306682587, + -0.017249641939997673, + -0.0373925045132637, + 0.03553396835923195, + -0.07928285747766495, + -6.19441614036745e-35, + 0.021457253023982048, + -0.04528093710541725, + -0.04141394793987274, + -0.015462190844118595, + -0.026989899575710297, + -0.001519596204161644, + -0.049514152109622955, + -0.002294594654813409, + 0.05235565826296806, + -0.02507620118558407, + -0.05136899650096893, + -0.03363850340247154, + -0.016164051368832588, + -0.008423345163464546, + 0.056496523320674896, + -0.06533928215503693, + 0.052812717854976654, + -0.03719440847635269, + -0.09148149937391281, + 0.09075199067592621, + -0.04206380620598793, + -0.09253287315368652, + -0.015758145600557327, + 0.10372787714004517, + 0.031096110120415688, + 0.005785840563476086, + 0.009894175454974174, + -0.0021094384137541056, + 0.04204645752906799, + -0.013570345938205719, + -0.043432556092739105, + -0.091773122549057, + 0.01081178430467844, + 0.010186991654336452, + -0.09069778025150299, + 0.039000559598207474, + 0.06388938426971436, + -0.08752497285604477, + -0.047276608645915985, + 0.006551549769937992, + -0.023368611931800842, + 0.02284565567970276, + 0.0396328866481781, + 0.06090153381228447, + -0.044753264635801315, + -0.03269199654459953, + -0.08399888128042221, + 0.00898202694952488, + -0.07919039577245712, + 0.03043755516409874, + 0.03225458040833473, + -0.012342092581093311, + -0.06593405455350876, + 0.06295645982027054, + -0.030741441994905472, + 0.04603936895728111, + 0.024065254256129265, + -0.008063971064984798, + -0.044411685317754745, + 0.06984471529722214, + 0.015471084043383598, + 0.07984659820795059, + -0.07646385580301285, + 0.0488477498292923, + -0.040689773857593536, + -0.11498979479074478, + -0.022943483665585518, + -0.039690036326646805, + 0.095904141664505, + -0.04098096117377281, + 0.09176572412252426, + -0.005383303388953209, + -0.07284407317638397, + 0.031641412526369095, + -0.0458066463470459, + -0.05023226886987686, + 0.03277602419257164, + 0.006702002603560686, + 0.007384929805994034, + 0.005038674455136061, + 0.02221190184354782, + -0.034190356731414795, + -0.030438076704740524, + 0.1662472039461136, + -0.03680703043937683, + 0.035395603626966476, + -0.00731082446873188, + -0.005069875158369541, + 0.07156796753406525, + 0.024371381849050522, + -0.03854178264737129, + 0.04024623706936836, + -0.036964479833841324, + 0.02520974911749363, + -0.11210327595472336, + -2.266757270774633e-08, + 0.023669390007853508, + 0.05980518460273743, + -0.06592432409524918, + 0.004878744948655367, + 0.059019725769758224, + -0.003991587087512016, + -0.052530158311128616, + -0.044673070311546326, + -0.10851821303367615, + -0.06933654844760895, + 0.06773842126131058, + -0.004490081686526537, + 0.005414157174527645, + -0.04987751692533493, + -0.005019787698984146, + -0.007138045970350504, + -0.0018828549655154347, + 0.033132340759038925, + -0.03462547808885574, + -0.027223175391554832, + -0.07515931874513626, + 0.02234041504561901, + -0.0677025318145752, + 0.05936932563781738, + 0.025195427238941193, + 0.022908903658390045, + -0.07799328118562698, + -0.046586040407419205, + 0.06375768035650253, + 0.07867950201034546, + -0.02544468082487583, + 0.05656283348798752, + 0.03314312547445297, + 0.012254416011273861, + 0.008159193210303783, + -0.07654275745153427, + 0.048729147762060165, + 0.02306145243346691, + 0.015692733228206635, + -0.028382815420627594, + 0.06083960458636284, + -0.008319268003106117, + 0.014228546060621738, + -0.0023952785413712263, + 0.028525132685899734, + 0.01291512418538332, + 0.028919512405991554, + -0.05354497954249382, + -0.06067174673080444, + -0.08333677053451538, + -0.0037862497847527266, + -0.04874086752533913, + -0.0467759370803833, + 0.11152280122041702, + -0.0010920544154942036, + -0.00567547557875514, + 0.049210887402296066, + 0.0288371741771698, + -0.06080842763185501, + -0.0014236952411010861, + 0.10107756406068802, + 0.007483173627406359, + 0.0699840858578682, + 0.072097547352314 + ], + "polygon-bold||shapes,drawing": [ + 0.09617064148187637, + 0.0006568928947672248, + -0.01286713033914566, + 0.037858907133340836, + -0.022173140197992325, + -0.046512678265571594, + 0.052766188979148865, + -0.05805327370762825, + 0.019408851861953735, + -0.01290250476449728, + -0.049415964633226395, + 0.014400570653378963, + 0.019332539290189743, + -0.00509957829490304, + 0.021426495164632797, + -0.0107047064229846, + 0.01658317632973194, + 0.00042991217924281955, + 0.016120273619890213, + 0.025629963725805283, + 0.02669622004032135, + -0.05657688528299332, + 0.016521010547876358, + 0.03138252720236778, + 0.025923293083906174, + 0.012918193824589252, + 0.1212354376912117, + -0.005033521447330713, + 0.05066720023751259, + -0.06065262109041214, + -0.05802867189049721, + 0.0038356988225132227, + 0.07692375779151917, + -0.015650037676095963, + 0.0017517462838441133, + -0.015113252215087414, + -0.043796561658382416, + 0.06583596765995026, + 0.021268092095851898, + 0.06514062732458115, + 0.018147680908441544, + -0.03850913047790527, + 0.07807252556085587, + 0.051650457084178925, + -0.06028357520699501, + 0.007778616156429052, + -0.1108889952301979, + 0.005501703359186649, + 0.02570200525224209, + -0.031577859073877335, + 0.042969170957803726, + -0.16003547608852386, + -0.08872827887535095, + -0.034703973680734634, + -0.002271924400702119, + -0.020483536645770073, + -0.08891069889068604, + -0.02717067301273346, + 0.03555973991751671, + -0.08490557223558426, + 0.04560483992099762, + 0.016841145232319832, + 0.07741472125053406, + 0.03218469396233559, + -0.03352503478527069, + 0.048201967030763626, + 0.05074658244848251, + 0.028412342071533203, + -0.028019558638334274, + 0.01018492877483368, + 0.0772508904337883, + 0.10160868614912033, + -0.020286742597818375, + -0.11534339934587479, + 0.003527113702148199, + -0.017554309219121933, + -0.0016384539194405079, + 0.04373602941632271, + -0.05488336458802223, + -0.08154904842376709, + -0.09810878336429596, + 0.001839349279180169, + -0.011817698366940022, + 0.02703547477722168, + 0.009427319280803204, + 0.13022178411483765, + -0.09379395842552185, + -0.0820392370223999, + -0.034474655985832214, + 0.0016800888115540147, + -0.011132302694022655, + 0.09942801296710968, + -0.00024348997976630926, + 0.05105717480182648, + -0.05427245423197746, + -0.01793447695672512, + 0.08352849632501602, + 0.02357545681297779, + -0.06108938157558441, + 0.04393993690609932, + 0.09653609246015549, + 0.028235794976353645, + 0.0726516917347908, + -0.048744071274995804, + 0.014292477630078793, + 0.011843846179544926, + -0.0013265940360724926, + -0.041435714811086655, + 0.01950610615313053, + 0.04466615617275238, + -0.0583757683634758, + -0.06520873308181763, + 0.031958892941474915, + -0.0406653992831707, + -0.06882417947053909, + -0.02573656290769577, + -0.060162194073200226, + -0.0424712672829628, + 0.018314404413104057, + 0.05004073306918144, + 0.003939835820347071, + -0.015703650191426277, + -0.025103487074375153, + -0.004335095174610615, + 0.058463312685489655, + 0.005369954742491245, + -0.018635343760252, + -2.7000884833197165e-33, + 0.08048789948225021, + 0.006617872044444084, + -0.016332531347870827, + 0.11074193567037582, + -0.0010726918699219823, + -0.005311235785484314, + 0.028349053114652634, + -0.07424161583185196, + -0.033560436218976974, + 0.03016797825694084, + -0.08960217237472534, + 0.017934974282979965, + -0.011334511451423168, + 0.07257446646690369, + 0.08714205026626587, + -0.0536666214466095, + 0.022877780720591545, + -0.005201223772019148, + -0.1037127897143364, + 0.014474570751190186, + -0.00704016862437129, + -0.0021134905982762575, + -0.07901815325021744, + -0.04709067940711975, + -0.09236692637205124, + 0.019182367250323296, + -0.015439189039170742, + 0.051508620381355286, + -0.09323154389858246, + 0.030371522530913353, + -0.02858237735927105, + 0.008395986631512642, + -0.010923421010375023, + 0.03486449271440506, + -0.07179010659456253, + -0.007717140484601259, + -0.012490633875131607, + -0.026895569637417793, + 0.03930405154824257, + 0.0020366187673062086, + -0.03451668843626976, + -0.037772320210933685, + 0.05896996334195137, + -0.03548329323530197, + 0.062297988682985306, + 0.1332937330007553, + -0.021843576803803444, + -0.07098802179098129, + -0.043821267783641815, + 0.03654041141271591, + -0.0016931244172155857, + 0.05994654819369316, + 0.05348789319396019, + 0.030618038028478622, + 0.0015243212692439556, + -0.08928117156028748, + -0.04660501331090927, + 0.06753741949796677, + -0.04949377849698067, + 0.06624524295330048, + 0.020210960879921913, + 0.05682528764009476, + -0.02657492458820343, + 0.03434670343995094, + -0.12448033690452576, + 0.04452398419380188, + -0.04330270364880562, + 0.04499778151512146, + 0.04890151694417, + -0.06493394821882248, + 0.036860208958387375, + 0.046405378729104996, + -0.01171895395964384, + -0.023047348484396935, + -0.028045477345585823, + 0.044272035360336304, + -0.015595287084579468, + 0.01140204630792141, + 0.026722831651568413, + -0.03417301923036575, + -0.05289782956242561, + -0.032584842294454575, + -0.07735846191644669, + -0.03968895971775055, + 0.0017379287164658308, + 0.04757526144385338, + 0.07356465607881546, + -0.01881527528166771, + -0.010506127960979939, + 0.0631197914481163, + -0.0818633958697319, + -0.047353100031614304, + 0.054290883243083954, + -0.00411069393157959, + -0.05051850154995918, + 1.3341922411615389e-33, + -0.07367586344480515, + 0.030376240611076355, + -0.034019649028778076, + -0.05335807800292969, + -0.049948155879974365, + 0.03447236493229866, + 0.03627234324812889, + 0.0008504960569553077, + -0.08241036534309387, + -0.010211692191660404, + 0.011431451886892319, + -0.007637770846486092, + -0.05982571840286255, + -0.035902928560972214, + -0.017561089247465134, + -0.016884787008166313, + 0.02480040118098259, + 0.027167024090886116, + -0.08741921931505203, + -0.06103748083114624, + -0.07630036771297455, + -0.04470118135213852, + -0.09202466905117035, + 0.03057176247239113, + -0.05405193194746971, + 0.09953045845031738, + -0.028050582855939865, + -0.018205946311354637, + -0.035177819430828094, + 0.020813113078475, + -0.03612104058265686, + -0.058117616921663284, + 0.023883629590272903, + 0.09938578307628632, + -0.06327645480632782, + -0.07385686784982681, + 0.022379567846655846, + -0.09117960184812546, + 0.09487879276275635, + 0.004899344872683287, + -0.001011800253763795, + -0.004690452013164759, + 0.03931828588247299, + 0.08591240644454956, + -0.06359937787055969, + 0.07466930896043777, + 0.015945961698889732, + -0.06014185771346092, + -0.01570827141404152, + 0.014516327530145645, + -0.04454958066344261, + -0.011521898210048676, + 0.0925314649939537, + 0.014049891382455826, + 0.010121406055986881, + -0.04988107830286026, + -0.016029059886932373, + 0.036775410175323486, + -0.013042186386883259, + 0.052659545093774796, + -0.05914314091205597, + 0.05213940516114235, + -0.011517456732690334, + 0.050060976296663284, + 0.05291835218667984, + -0.0014086677692830563, + 0.10335221886634827, + -0.056497957557439804, + 0.04795748367905617, + 0.042521506547927856, + 0.0723881945014, + 0.07571934908628464, + -0.02845163643360138, + 0.05917749181389809, + 0.06360171735286713, + -0.0551430843770504, + 0.05872508883476257, + 0.04650018364191055, + -0.024443093687295914, + 0.04758512228727341, + -0.050767455250024796, + -0.0680168941617012, + -0.006624357309192419, + 0.05166022852063179, + -0.001360477996058762, + 0.012740576639771461, + 0.009166027419269085, + -0.026537908241152763, + -0.01021217368543148, + -0.00235979282297194, + -0.018676331266760826, + 0.06423146277666092, + -0.006293331738561392, + 0.013580369763076305, + 0.0482223704457283, + -1.4495610045628382e-08, + 0.01832425966858864, + -0.04387397691607475, + -0.02807331085205078, + -0.06849458813667297, + 0.03670113906264305, + -0.0446736104786396, + -0.009194973856210709, + -0.06496931612491608, + -0.11634540557861328, + 0.009694994427263737, + 0.04676458239555359, + -0.003053816966712475, + -0.05873379111289978, + -0.02092478796839714, + 0.050237271934747696, + -0.02853730507194996, + 0.03852181136608124, + 0.06508167833089828, + 0.0026178546249866486, + -0.0854625552892685, + -0.027914103120565414, + 0.007059076800942421, + 0.023160085082054138, + 0.025302069261670113, + 0.02734096720814705, + -0.0022732543293386698, + -0.020241718739271164, + 0.02078256569802761, + 0.10760831832885742, + 0.07891908288002014, + -0.018999945372343063, + 0.0438755638897419, + 0.05095784366130829, + 0.05887583643198013, + -0.04996810480952263, + -0.034600067883729935, + -0.031401704996824265, + 0.017340125516057014, + -0.05373029038310051, + 0.12840546667575836, + -0.0077156322076916695, + 0.010026849806308746, + 0.05754745751619339, + -0.07238499820232391, + 0.03175199776887894, + 0.010654293932020664, + 0.07864553481340408, + -0.029450902715325356, + -0.05537066236138344, + -0.05274244770407677, + -0.09565391391515732, + 0.02345452271401882, + 0.052835069596767426, + 0.11049988865852356, + -0.05902200937271118, + -0.07180250436067581, + -0.005516578443348408, + 0.06668583303689957, + -0.00692661153152585, + 0.03864961490035057, + 0.0765012726187706, + 0.042057786136865616, + -0.013031963258981705, + -0.02336796745657921 + ], + "popcorn-bold||food,movies,theater": [ + -0.012793540954589844, + -0.1028977707028389, + -0.023604493588209152, + 0.027228504419326782, + 0.008799968287348747, + 0.039109934121370316, + 0.07121593505144119, + -0.091796875, + 0.034232623875141144, + -0.09031911939382553, + 0.044197797775268555, + -0.013825250789523125, + -0.012765642255544662, + 0.0005527408793568611, + -0.03661665692925453, + -0.08792971074581146, + 0.16825519502162933, + 0.013185457326471806, + 0.061270616948604584, + -0.03611113876104355, + 0.013773652724921703, + 0.008140003308653831, + 0.0732010006904602, + 0.0742613896727562, + 0.04997562617063522, + 0.03010670654475689, + 0.03996539115905762, + 0.05420731380581856, + -0.0829315036535263, + -0.07300508767366409, + 0.06513553857803345, + -0.02432060055434704, + 0.007119208574295044, + -0.03471298888325691, + 0.061179738491773605, + -0.012464574538171291, + -0.0483904592692852, + -0.10637181252241135, + 0.05376492813229561, + 0.011452527716755867, + 0.024974247440695763, + -0.10254215449094772, + 0.04943418130278587, + 0.005648678168654442, + -0.0032667634077370167, + -0.06469020992517471, + -0.07977010309696198, + -0.039356544613838196, + 0.06937948614358902, + 0.02886166423559189, + -0.037114474922418594, + 0.009922468103468418, + -0.08455871045589447, + -0.007590623572468758, + 0.06047394499182701, + -0.04028887674212456, + -0.06299442052841187, + -0.010445134714245796, + 0.03792337700724602, + 0.008100316859781742, + -0.011617947369813919, + -0.032615404576063156, + 0.05033949762582779, + 0.08194995671510696, + 0.01051047071814537, + -0.043292853981256485, + -0.0026095404755324125, + 0.04948211833834648, + -0.052845634520053864, + 0.030367720872163773, + -0.06861475110054016, + 0.047944340854883194, + 0.09385491907596588, + -0.009136740118265152, + -0.03196628391742706, + -0.02994135022163391, + -0.00868027750402689, + -0.09334105998277664, + -0.05823441967368126, + -0.07053545862436295, + 0.024395262822508812, + -0.06330736726522446, + -0.06719694286584854, + -0.09552907943725586, + -0.05790077894926071, + -0.015427548438310623, + -0.023850535973906517, + -0.011640571989119053, + -0.02346496470272541, + 0.03521524742245674, + -0.07902943342924118, + -0.0338880680501461, + -0.10063209384679794, + 0.08046018332242966, + -0.005594388581812382, + 0.007527667563408613, + -0.025361420586705208, + -0.13036328554153442, + 0.022554991766810417, + 0.06015269458293915, + 0.008723304606974125, + 0.01751689426600933, + 0.023953480646014214, + -0.03310149535536766, + -0.027056004852056503, + -0.08609981089830399, + -0.05926824361085892, + -0.026680776849389076, + -0.034886088222265244, + 0.04235632345080376, + -0.03563650697469711, + 0.02776850201189518, + -0.005508982110768557, + -0.028701504692435265, + -0.013380337506532669, + -0.047695841640233994, + 0.04821716621518135, + -0.08247824758291245, + 0.04994405806064606, + -0.01932237483561039, + -0.024849914014339447, + -0.017745867371559143, + -0.036100294440984726, + -0.002524628071114421, + -0.020260125398635864, + -0.01433713547885418, + 0.041862573474645615, + -3.16529698481336e-33, + -0.050346508622169495, + -0.045257046818733215, + -0.02743658795952797, + 0.10672277957201004, + 0.04790280759334564, + 0.00771469296887517, + -0.007178591564297676, + -0.009272887371480465, + -0.0340849794447422, + 0.050746072083711624, + 0.06690284609794617, + -0.0011293699499219656, + -0.11289015412330627, + 0.014566929079592228, + 0.022287417203187943, + 0.0012830720515921712, + -0.02708345279097557, + -0.007917318493127823, + -0.09488947689533234, + -0.027753490954637527, + -0.15132565796375275, + 0.08366618305444717, + -0.027142653241753578, + 0.008011623285710812, + -0.03960920870304108, + -0.023056115955114365, + -0.043077755719423294, + -0.03304131701588631, + 0.013495446182787418, + 0.03973613306879997, + 0.03776348754763603, + 0.0654657632112503, + 0.026564138010144234, + 0.006357430014759302, + 0.05152736231684685, + 0.0062272679060697556, + -0.11358218640089035, + -0.053007837384939194, + -0.009529015980660915, + 0.0704241469502449, + -0.07366497814655304, + 0.0250538419932127, + -0.04294243082404137, + 0.05466673523187637, + -0.047858938574790955, + 0.11300808191299438, + -0.011443587951362133, + 0.01607554592192173, + 0.0494573637843132, + 0.021404201164841652, + 0.03797057271003723, + -0.06898640841245651, + -0.039344433695077896, + -0.05712120607495308, + 0.02611365169286728, + 0.0074004968628287315, + -0.02662677876651287, + -0.011131946928799152, + 0.04509463906288147, + -0.11514998227357864, + 0.011815790086984634, + 0.08905377238988876, + 0.04184936359524727, + -0.12896397709846497, + -0.05716168135404587, + 0.06350674480199814, + 0.0031954506412148476, + 0.029088668525218964, + 0.1020139679312706, + 0.03019418567419052, + 0.02630835771560669, + 0.026865776628255844, + 0.04010937735438347, + 0.0480353944003582, + 0.02452521026134491, + 0.08215389400720596, + 0.021137207746505737, + 0.041955094784498215, + 0.01766888052225113, + -0.047476619482040405, + 0.047521550208330154, + -0.006619974505156279, + 0.030211495235562325, + 0.056936636567115784, + 0.012566430494189262, + 0.03922669589519501, + -0.10454929620027542, + -0.0866580531001091, + 0.05072920769453049, + 0.0420234240591526, + -0.029364295303821564, + -0.026310071349143982, + -0.03877200186252594, + -0.034041859209537506, + -0.0895361676812172, + -4.3899562031877975e-34, + 0.10286170244216919, + -0.01052200235426426, + -0.07336609810590744, + -0.029103191569447517, + 0.012388017028570175, + -0.013098793104290962, + -0.081502266228199, + -0.0015984565252438188, + 0.10232950001955032, + -0.015658652409911156, + -0.1078253984451294, + -0.010909698903560638, + -0.008298425935208797, + -0.07912960648536682, + 0.05706362426280975, + 0.008571983315050602, + 0.023932935670018196, + 0.031879983842372894, + 0.02770843170583248, + 0.08055789768695831, + -0.07371821254491806, + -0.0027174297720193863, + -0.098284512758255, + 0.06933925300836563, + -0.0036702731158584356, + 0.06540731340646744, + -0.021521929651498795, + 0.06802178919315338, + -0.06418148428201675, + -0.04749724641442299, + 0.007667608559131622, + -0.09928257018327713, + 0.032926999032497406, + 0.014128025621175766, + -0.037171997129917145, + 0.0693574771285057, + 0.10641518235206604, + -0.08007358759641647, + -0.043274346739053726, + -0.026990292593836784, + -0.027820678427815437, + 0.04597638547420502, + 0.03691420704126358, + 0.04695942625403404, + 0.018100906163454056, + 0.009009486064314842, + -0.022406209260225296, + -0.0070346868596971035, + 0.006575372070074081, + 0.09053148329257965, + -0.026691587641835213, + 0.019326064735651016, + -0.047598499804735184, + -0.041978321969509125, + 0.0041639544069767, + 0.0079701729118824, + -0.03209029510617256, + -0.03570093959569931, + 0.049709830433130264, + 0.029118938371539116, + -0.037588004022836685, + 0.03129848465323448, + -0.04134063050150871, + 0.007673599291592836, + 0.02045436203479767, + -0.01858295314013958, + 0.013047194108366966, + -0.02994481660425663, + 0.05163188278675079, + 0.05450126528739929, + 0.022236427292227745, + -0.0018062677700072527, + -0.018001003190875053, + -0.03369234502315521, + -0.03660112991929054, + 0.056201864033937454, + 0.0562780536711216, + 0.04435953125357628, + 0.027236783877015114, + 0.05109899863600731, + 0.006437354721128941, + 0.04043154790997505, + -0.012543139979243279, + 0.017059652134776115, + 0.005946652498096228, + 0.11941937357187271, + 0.021295644342899323, + 0.004534557461738586, + -0.028680874034762383, + -0.0026395958848297596, + 0.03522694483399391, + 0.03177160397171974, + 0.03793923929333687, + -0.05731205269694328, + 0.008373741060495377, + -1.7138594543553154e-08, + 0.016430916264653206, + 0.022545475512742996, + -0.09363953024148941, + -0.002830882091075182, + 0.05393165349960327, + -0.044606659561395645, + -0.034591857343912125, + -0.013642467558383942, + 0.038422003388404846, + -0.015733784064650536, + -0.028196733444929123, + 0.03675242140889168, + 0.026630636304616928, + 0.018760710954666138, + -0.008224929682910442, + 0.03655495122075081, + -0.0644349753856659, + 0.004499539267271757, + -0.046725284308195114, + 0.016974490135908127, + 0.016711249947547913, + 0.014062539674341679, + 0.008042345754802227, + -0.05020315572619438, + 0.04498827084898949, + 0.08493833243846893, + 0.008221184834837914, + 0.01944347470998764, + 0.06401556730270386, + 0.03463783115148544, + 0.003101055044680834, + 0.01657559722661972, + -0.10106351971626282, + 0.004457088652998209, + -0.08025835454463959, + -0.019015436992049217, + 0.045983705669641495, + -0.035001929849386215, + -0.03259134665131569, + 0.07094994932413101, + 0.034951407462358475, + -0.07173117995262146, + 0.03871962055563927, + -0.003092332510277629, + -0.02738983929157257, + 0.1222979873418808, + 0.035718660801649094, + -0.031494129449129105, + -0.06498386710882187, + -0.004949957598000765, + -0.019425271078944206, + -0.0018839105032384396, + -0.06982740014791489, + -0.004340687766671181, + -0.0011155069805681705, + -0.07675463706254959, + 0.06816405802965164, + 0.11749493330717087, + -0.00038253518869169056, + -0.015584410168230534, + 0.09244639426469803, + 0.020008165389299393, + 0.016261236742138863, + 0.07210107892751694 + ], + "popsicle-bold||*new*,ice cream,dessert,summer,food": [ + -0.051785945892333984, + -0.07195638865232468, + 0.03923803195357323, + 0.04629351571202278, + 0.04662845656275749, + 0.019116735085844994, + 0.09033207595348358, + -0.061931293457746506, + -0.02591031976044178, + -0.05391149967908859, + 0.056957487016916275, + -0.048224423080682755, + 0.019255969673395157, + -0.07536659389734268, + 0.055533673614263535, + 0.012004203163087368, + 0.10033895075321198, + -0.020414970815181732, + 0.02014058642089367, + -0.028373176231980324, + 0.04821344092488289, + -0.02883717231452465, + 0.007630936801433563, + 0.029184969142079353, + 0.003587536746636033, + 0.11643778532743454, + 0.03241369500756264, + 0.013538642786443233, + -0.04526623338460922, + -0.02678716741502285, + 0.023569758981466293, + 0.0584520548582077, + 0.050549693405628204, + -0.05443883687257767, + 0.08370307832956314, + -0.006706927437335253, + 0.023642512038350105, + -0.040514908730983734, + 0.03834399953484535, + 0.04140305519104004, + 0.031573474407196045, + -0.017715703696012497, + -0.0034046401269733906, + 0.039668455719947815, + -0.012590432539582253, + 0.020158689469099045, + -0.03253168985247612, + -0.002460912335664034, + 0.022124826908111572, + 0.06934637576341629, + -0.016368992626667023, + -0.0562903955578804, + -0.08311866968870163, + 0.017093120142817497, + 0.04794665053486824, + -0.0009683968382887542, + -0.06400613486766815, + -0.07613367587327957, + 0.0018074228428304195, + 0.06983287632465363, + -0.020419783890247345, + -0.014100450091063976, + 0.0606394037604332, + 0.04399900883436203, + 0.019202545285224915, + -0.05302407592535019, + -0.04141649976372719, + -0.018012018874287605, + -0.026490343734622, + 0.009166501462459564, + -0.019162917509675026, + 0.06682644039392471, + -0.026716185733675957, + 0.04053923115134239, + -0.05426075682044029, + -0.018518315628170967, + 0.007385983131825924, + -0.046904899179935455, + -0.04975716024637222, + 0.05751250311732292, + -0.05435320362448692, + -0.09173185378313065, + -0.01858643814921379, + -0.11589165776968002, + -0.04805932939052582, + -0.02201438881456852, + -0.002202283591032028, + -0.059604302048683167, + -0.01892790012061596, + -0.0036442186683416367, + -0.06447800993919373, + -0.027048559859395027, + 0.005658483132719994, + 0.09822598844766617, + -0.04964972659945488, + 0.036511559039354324, + 0.003986815456300974, + -0.13329997658729553, + -0.010169105604290962, + 0.05914829298853874, + -0.006489959079772234, + -0.03580889850854874, + 0.006935521494597197, + 0.014405167661607265, + -0.04951730743050575, + -0.10352379828691483, + -0.07502558827400208, + -0.016880305483937263, + 0.008450952358543873, + 0.12331199645996094, + 0.01030409149825573, + -0.05580902472138405, + 0.039807576686143875, + -0.045121658593416214, + -0.06246273219585419, + -0.12545844912528992, + -0.0061042699962854385, + -0.04284409061074257, + 0.036583077162504196, + -0.019725780934095383, + -0.007439056411385536, + 0.03368627652525902, + -0.006644815672188997, + 0.011515851132571697, + -0.02577846311032772, + -0.02140210010111332, + -0.007275649346411228, + -2.873313004276735e-33, + 0.038104765117168427, + -0.011067257262766361, + 0.0186005812138319, + 0.08052360266447067, + 0.05383196100592613, + 0.008464017882943153, + 0.023370951414108276, + -0.004717346280813217, + 0.06676331907510757, + 0.035363320261240005, + 0.0036895982921123505, + 0.04824306070804596, + -0.06504802405834198, + 0.02683066762983799, + -0.014702175743877888, + -0.05122680589556694, + 0.024324603378772736, + -0.017546918243169785, + 0.0007981618400663137, + 0.031047208234667778, + -0.1421259194612503, + 0.06189494580030441, + 0.04970991611480713, + 0.07755618542432785, + -0.06100211665034294, + 0.012220807373523712, + -0.021390220150351524, + -0.1041143536567688, + 0.024075282737612724, + 0.0020773664582520723, + 0.04068365693092346, + 0.000684616097714752, + 0.041624438017606735, + 0.05860936641693115, + 0.013116434216499329, + 0.05607568472623825, + -0.02631341852247715, + -0.045235008001327515, + -0.033748824149370193, + 0.01812334917485714, + -0.033127132803201675, + -0.0783456340432167, + 0.02955665811896324, + 0.07638072967529297, + -0.0538729652762413, + 0.08733337372541428, + -0.0016145854024216533, + 0.03068307414650917, + 0.051294587552547455, + -0.07703070342540741, + -0.01101914793252945, + -0.015057560056447983, + -0.016953978687524796, + 0.04041436314582825, + -0.04537888243794441, + 0.007458050735294819, + -0.08519112318754196, + 0.050772931426763535, + 0.022053245455026627, + -0.13181717693805695, + 0.0156698115170002, + 0.05508426949381828, + 0.05458774045109749, + -0.04701874405145645, + -0.03357624262571335, + 0.06055047735571861, + -0.0590088777244091, + 0.029539091512560844, + 0.07031413167715073, + 0.06492876261472702, + 0.0804651528596878, + 0.060936715453863144, + 0.029783474281430244, + 0.019931362941861153, + 0.03602276369929314, + 0.051928095519542694, + 0.0743023082613945, + -0.00806879997253418, + 0.05266984924674034, + -0.017300033941864967, + 0.018991654738783836, + -0.08487624675035477, + -0.051864705979824066, + 0.096465103328228, + -0.05261104553937912, + 0.05500850826501846, + -0.023508504033088684, + -0.013459235429763794, + 0.11045078933238983, + 0.0676666796207428, + -0.12457013875246048, + -0.025483766570687294, + -0.003560028737410903, + 0.017999829724431038, + -0.13817518949508667, + -9.227503002615297e-34, + 0.01688654161989689, + -0.05725735053420067, + -0.024044977501034737, + 0.018859203904867172, + 0.033004242926836014, + 7.186690345406532e-05, + -0.11438918858766556, + 0.044302716851234436, + 0.01625923253595829, + -0.05018623545765877, + -0.08969837427139282, + -0.05662381276488304, + 0.017541812732815742, + -0.07815854996442795, + -0.002630045171827078, + 0.10809330642223358, + 0.043031662702560425, + 0.07236779481172562, + 0.011164277791976929, + 0.07456406205892563, + -0.07855778932571411, + 0.04398440197110176, + -0.12158268690109253, + 0.0769229456782341, + -0.01756254769861698, + 0.020617933943867683, + 0.09306485950946808, + -0.030408449470996857, + -0.0009699659422039986, + -0.051918212324380875, + -0.004218746442347765, + -0.06762543320655823, + 0.05270678922533989, + -0.005029786378145218, + -0.00405106833204627, + 0.10741071403026581, + 0.030039511620998383, + -0.13960523903369904, + -0.04219541326165199, + 0.03737495839595795, + -0.06976011395454407, + -0.06652581691741943, + 0.038646843284368515, + 0.11915098130702972, + 0.03571411594748497, + -0.05075271055102348, + -0.07922771573066711, + 0.03723331540822983, + 0.031504396349191666, + 0.07116871327161789, + -0.0276104174554348, + -0.01607583835721016, + -0.04481052979826927, + -0.01909462921321392, + -0.012696399353444576, + -0.02205785922706127, + -0.08144349604845047, + -0.039690662175416946, + 0.028294190764427185, + -0.06507313996553421, + -0.027293801307678223, + -0.018378613516688347, + -0.036117520183324814, + 0.011033584363758564, + 0.01740802265703678, + 0.016091542318463326, + -0.06230742484331131, + -0.09767992049455643, + -0.07323072105646133, + 0.03410641476511955, + -0.008175341412425041, + -0.008426213636994362, + 0.012137540616095066, + -0.05920753255486488, + 0.037732843309640884, + -0.03384339436888695, + 0.01343631837517023, + -0.02452421933412552, + -0.003543392289429903, + -0.017074493691325188, + -0.05229039862751961, + 0.04641105234622955, + -0.024759041145443916, + 0.05627837032079697, + -0.05605825409293175, + 0.04883703216910362, + 0.002946730237454176, + -0.04885725677013397, + -0.04592877998948097, + 0.03516637533903122, + -0.019031841307878494, + 0.03590201213955879, + -0.014862673357129097, + 0.07101655006408691, + 0.001915608998388052, + -2.3671562487947995e-08, + 0.12105873227119446, + 0.033953841775655746, + -0.06364558637142181, + -0.021494610235095024, + 0.04850587248802185, + -0.0065724607557058334, + -0.03961365669965744, + -0.05952752009034157, + 0.00212712399661541, + -0.08762148767709732, + -0.023299260064959526, + 0.051473408937454224, + 0.005747828632593155, + 0.053745564073324203, + 0.05018192529678345, + 0.001024150406010449, + -0.012210072949528694, + 0.04524170607328415, + -0.017117777839303017, + -0.021470660343766212, + -0.04012453556060791, + 0.024268724024295807, + 0.09054303169250488, + -0.08538834005594254, + -0.05458681285381317, + 0.07560774683952332, + -0.01251851487904787, + -0.05085761100053787, + 0.024891339242458344, + 0.010863615199923515, + 0.0031687114387750626, + 0.07389777153730392, + -0.00850018858909607, + 0.03690950572490692, + -0.07128827273845673, + 0.0048868912272155285, + 0.02103526145219803, + -0.027423936873674393, + -0.07479529827833176, + 0.01603631302714348, + -0.03531938046216965, + -0.010620392858982086, + 0.005726413801312447, + 0.006320789456367493, + -0.13149724900722504, + -0.04891098290681839, + -0.02013617381453514, + 0.016407622024416924, + 0.013908605091273785, + 0.042847275733947754, + -0.04329042509198189, + 0.031116193160414696, + -0.016067082062363625, + 0.028618231415748596, + 0.03474041447043419, + 0.02388128452003002, + 0.011870132759213448, + 0.035118766129016876, + -0.004027675371617079, + 0.07610214501619339, + 0.05172876641154289, + 0.01723473146557808, + 0.035852059721946716, + -0.006817408837378025 + ], + "potted-plant-bold||sprout,vegan,garden,gardening": [ + 0.004304982256144285, + -0.04171030968427658, + -0.0441315658390522, + 0.023579826578497887, + 0.05949976667761803, + 0.04608394578099251, + 0.014445426873862743, + -0.07249724119901657, + 0.035189345479011536, + -0.00784599594771862, + 0.11377045512199402, + -0.05533107742667198, + -0.08143150806427002, + -0.04489490017294884, + -0.03712807595729828, + 0.022595491260290146, + -0.005309784319251776, + 0.09812815487384796, + 0.0010295003885403275, + 0.018537189811468124, + -0.037435706704854965, + 0.055765748023986816, + 0.0066245924681425095, + 0.09847407042980194, + 0.03701773285865784, + 0.01618403196334839, + -0.05742933228611946, + 0.037106581032276154, + -0.002707557985559106, + -0.03628721833229065, + -0.035186223685741425, + 0.13105224072933197, + -0.0016088695265352726, + -0.017533671110868454, + 0.0016454757424071431, + 0.024779055267572403, + -0.01060724351555109, + -0.014657799154520035, + 0.05964544415473938, + 0.015646077692508698, + 0.0587407723069191, + -0.10247406363487244, + 0.0326995849609375, + -0.015362229198217392, + -0.04698299244046211, + 0.004925631918013096, + -0.03086933121085167, + -0.06068042293190956, + -0.047835852950811386, + -0.0654928982257843, + -0.04422973468899727, + -0.08269965648651123, + -0.07029922306537628, + -0.02534881792962551, + -0.027993973344564438, + 0.029427701607346535, + -0.042058441787958145, + 0.09453561902046204, + 0.05136219412088394, + -0.0078047895804047585, + 0.08289166539907455, + -0.016415318474173546, + -0.07763408869504929, + 0.03973815590143204, + -0.02739427052438259, + -0.04791554808616638, + -0.023253710940480232, + 0.023983843624591827, + -0.016570741310715675, + 0.007467247545719147, + 0.08574876934289932, + -0.009274798445403576, + -0.04848531633615494, + 0.018663104623556137, + -0.07625094056129456, + 0.06936260312795639, + 0.0071548400446772575, + -0.02839435450732708, + -0.007541576400399208, + -0.028631730005145073, + 0.0350477509200573, + 0.04039507359266281, + -0.08570535480976105, + -0.008097119629383087, + 0.030212096869945526, + 0.0010200680699199438, + -0.026785412803292274, + 0.042627472430467606, + -0.02154926024377346, + -0.017052292823791504, + -0.019936608150601387, + 0.04746481403708458, + 0.04078056290745735, + 0.02573845349252224, + -0.06966441124677658, + 0.08944474160671234, + 0.05873032659292221, + -0.11190075427293777, + -0.053989313542842865, + 0.008885630406439304, + -0.03910380229353905, + -0.004516205284744501, + -0.02340748906135559, + -0.04609329253435135, + 0.025762643665075302, + 0.023701224476099014, + -0.12730248272418976, + -0.05635920166969299, + 0.016398316249251366, + 0.020257577300071716, + -0.056650176644325256, + -0.04099791869521141, + -0.028592383489012718, + -0.06916695833206177, + -0.059234775602817535, + 0.03736352548003197, + -0.007620833348482847, + -0.06339780241250992, + 0.04436327517032623, + 0.01445686910301447, + -0.0667094737291336, + -0.04007457569241524, + 0.013641263358294964, + 0.00667422404512763, + 0.002757072215899825, + -0.08284121751785278, + 0.012864261865615845, + -1.7741335834197537e-33, + 0.04256501421332359, + -0.03132180869579315, + 0.04222910851240158, + 0.0734536424279213, + 0.048355910927057266, + -0.01975860819220543, + -0.038706086575984955, + -0.09517859667539597, + -0.03935203701257706, + -0.04609733819961548, + -0.006709920708090067, + -0.023233717307448387, + -0.04478704556822777, + 0.09479700773954391, + -0.02883009985089302, + -0.06774072349071503, + -0.034663885831832886, + -0.04363219067454338, + -0.018384018912911415, + 0.027207333594560623, + -0.04300183057785034, + 0.059937138110399246, + -0.10008855164051056, + 0.03954536095261574, + 0.022225748747587204, + -0.16166090965270996, + 0.087336465716362, + -0.09082890301942825, + -0.03144446015357971, + 0.002319652820006013, + 0.048060473054647446, + -0.024521874263882637, + 0.010607696138322353, + 0.02324608527123928, + -0.06825791299343109, + -0.01669413037598133, + 0.022348424419760704, + -0.09182409942150116, + -0.01982775703072548, + 0.0751497820019722, + 0.04599732533097267, + 0.03125959634780884, + 0.10112275183200836, + 0.026599790900945663, + 0.03073721192777157, + 0.12901413440704346, + -0.0438474640250206, + -0.0012082505272701383, + 0.0421484112739563, + 0.12120711803436279, + -0.014509603381156921, + 0.0198543518781662, + 0.027430769056081772, + 0.005804921500384808, + -0.009785990230739117, + -0.006776732392609119, + -0.0036798925139009953, + 0.1491052210330963, + -0.013360616751015186, + 0.021266547963023186, + -0.03386982902884483, + 0.02618148736655712, + -0.009434769861400127, + -0.016084250062704086, + -0.045267410576343536, + 0.021164117380976677, + -0.12704186141490936, + 0.00980749074369669, + 0.09876379370689392, + -0.002147853607311845, + -0.025649283081293106, + 0.027990926057100296, + 0.05168909952044487, + 0.0044747525826096535, + 0.03654509410262108, + 0.0018710597651079297, + -0.028657104820013046, + 0.03169114887714386, + 0.012665431946516037, + -0.02131475880742073, + -0.024944225326180458, + -0.005872948095202446, + -0.08649623394012451, + 0.06626802682876587, + -0.05083459988236427, + 0.05015308037400246, + -0.09128211438655853, + -0.026747729629278183, + 0.004018954932689667, + -0.015200840309262276, + -0.020591847598552704, + 0.043947964906692505, + -0.03392867371439934, + -0.07441723346710205, + -0.11330103129148483, + -9.040165937292688e-34, + -0.0331139974296093, + 0.0647648274898529, + -0.005265952553600073, + 0.0990653932094574, + -0.031428996473550797, + -0.004294304642826319, + -0.056540437042713165, + 0.033465899527072906, + 0.09829902648925781, + 0.01976753957569599, + -0.017467834055423737, + 0.006667484063655138, + 0.015638630837202072, + 0.0006511443061754107, + -0.06025189161300659, + 0.04254889488220215, + -0.017641210928559303, + 0.016551446169614792, + 0.003293913323432207, + 0.043599069118499756, + -0.12324745953083038, + 0.013747443445026875, + -0.08480663597583771, + 0.05325385928153992, + 0.05839656665921211, + 0.054027970880270004, + 0.04133769869804382, + 0.043797168880701065, + -0.03648119792342186, + -0.029966728761792183, + 0.04131171852350235, + -0.027967309579253197, + -0.0413455106317997, + 0.028150292113423347, + -0.022281544283032417, + 0.031419798731803894, + 0.005173902492970228, + -0.05533643066883087, + 0.015551719814538956, + 0.07005316764116287, + 0.008993887342512608, + -0.02243543043732643, + 0.008139734156429768, + 0.08018922060728073, + 0.012136154808104038, + -0.052199263125658035, + -0.027820110321044922, + 0.044166430830955505, + 0.03855937346816063, + 0.06266656517982483, + 0.013287799432873726, + 0.02677011862397194, + 0.03084057942032814, + 0.02727399207651615, + 0.04390912503004074, + -0.12193136662244797, + 0.03687261790037155, + 0.03697746992111206, + -0.06783150136470795, + 0.0157010518014431, + 0.03857086971402168, + 0.08872640877962112, + 0.009930129162967205, + 0.012103136628866196, + -0.015784919261932373, + 0.004868056625127792, + -0.05929545685648918, + -0.02477020025253296, + 0.03604935109615326, + -0.03239208087325096, + -0.031126776710152626, + 0.012371055781841278, + 0.02318616211414337, + 0.008676350116729736, + 0.034017033874988556, + -0.035229410976171494, + 0.08025864511728287, + -0.033593256026506424, + 0.01997494511306286, + 0.0593731552362442, + -0.0540183000266552, + -0.014247645623981953, + -0.003492903197184205, + -0.022051414474844933, + 0.076613649725914, + 0.02445746213197708, + -0.060556355863809586, + -0.021158117800951004, + 0.07570956647396088, + 0.03574133664369583, + -0.03517859801650047, + 0.03140633925795555, + 0.019899016246199608, + 0.0031732735224068165, + 0.07044698297977448, + -2.104256147106298e-08, + 0.10100451111793518, + -0.07371193170547485, + -0.05584615468978882, + 0.0003664118703454733, + 0.051891181617975235, + -0.04221522808074951, + 0.03373577445745468, + -0.060347218066453934, + -0.0036920683924108744, + 0.02031218633055687, + -0.06882396340370178, + 0.03480209410190582, + -0.08224228769540787, + 0.08641300350427628, + 0.09562977403402328, + 0.016498152166604996, + -0.013951207511126995, + 0.023484205827116966, + -0.05753081664443016, + 0.04846315085887909, + -0.10072917491197586, + 0.029985759407281876, + -0.11506256461143494, + -0.024873036891222, + 0.0513407364487648, + 0.034140024334192276, + -0.013383232057094574, + -0.022777795791625977, + 0.07215848565101624, + 0.08178617805242538, + 0.1199611946940422, + 0.048266563564538956, + -0.07140196859836578, + 0.012245040386915207, + -0.10088098794221878, + 0.003836558200418949, + -0.07276096940040588, + 0.02485485002398491, + 0.04192740097641945, + 0.03449631109833717, + -0.07708225399255753, + -0.08002379536628723, + 0.004412619397044182, + -0.031175244599580765, + -0.0949716791510582, + -0.014232212677598, + -0.03443296626210213, + 0.031788747757673264, + -0.023183465003967285, + -0.011926903389394283, + -0.01331524457782507, + -0.004694797098636627, + 0.055133167654275894, + -0.017198024317622185, + -0.057606715708971024, + 9.371771739097312e-05, + 0.0748525857925415, + 0.04072938114404678, + 0.03294791653752327, + -0.06201840564608574, + -0.03044603019952774, + 0.007210397627204657, + 0.07424870133399963, + 0.031034374609589577 + ], + "power-bold||charged,charger,charging,on,off,on/off,switch,power switch": [ + -0.06526633352041245, + 0.03836072236299515, + -0.05660170316696167, + 0.062280479818582535, + 0.06676865369081497, + 0.009127017110586166, + 0.11343324184417725, + -0.004183188080787659, + -0.0303588155657053, + 0.02484920434653759, + 0.10561332106590271, + -0.015086669474840164, + 0.03690691664814949, + 0.03257286921143532, + -0.02434341050684452, + 0.11926214396953583, + -0.0010827230289578438, + -0.025328880175948143, + 0.025421902537345886, + 0.05468752980232239, + 0.05720580741763115, + -0.0005294146831147373, + 0.015782872214913368, + -0.0002833471226040274, + 0.05029352009296417, + 0.01861489564180374, + 0.07238667458295822, + -0.03226643428206444, + -0.04879441857337952, + -0.09543716907501221, + -0.03254126384854317, + -0.016068290919065475, + 0.047421105206012726, + -0.03726169466972351, + 0.020801469683647156, + 0.008690823800861835, + -0.0018781429389491677, + 0.04805590212345123, + 0.009394478984177113, + -0.0027096213307231665, + 0.04243431240320206, + -0.15611733496189117, + 0.020944226533174515, + 0.017586998641490936, + -0.058335233479738235, + 0.031130529940128326, + -0.02143130637705326, + 0.010598737746477127, + 0.02346099354326725, + -0.008538898080587387, + 0.04078775271773338, + -0.10296224057674408, + -0.08936474472284317, + 0.008418016135692596, + 0.057889603078365326, + -0.01799601875245571, + -0.023060288280248642, + 0.005142039153724909, + 0.11603713035583496, + -0.07048460096120834, + -0.04144732654094696, + 0.0005301387864165008, + 0.007623445708304644, + 0.05031393840909004, + 0.01795109361410141, + 0.03752940520644188, + 0.011297688819468021, + 0.026972196996212006, + -0.057151224464178085, + 0.000772604369558394, + -0.0023791950661689043, + 0.026307368651032448, + -0.008814369328320026, + -0.04502953961491585, + -0.058426499366760254, + -0.036106303334236145, + 0.04388447105884552, + -0.01257189828902483, + -0.08972133696079254, + -0.020280728116631508, + -0.07626309245824814, + -0.04798836261034012, + -0.044042617082595825, + 0.01876235008239746, + 0.05898056551814079, + 0.02333725057542324, + -0.04561479389667511, + -0.06190769746899605, + -0.015781881287693977, + -0.06567981839179993, + -0.06729396432638168, + 0.05282808095216751, + 0.07463714480400085, + -0.010897401720285416, + -0.07787907123565674, + 0.005804895889014006, + 0.06873691827058792, + -0.04843821004033089, + -0.04060560092329979, + 0.0647471472620964, + 0.0807638093829155, + 0.030727341771125793, + 0.046272337436676025, + -0.031094105914235115, + -0.039062559604644775, + -0.03651479259133339, + -0.06699731945991516, + -0.0034622063394635916, + 0.003713061101734638, + -0.03327391669154167, + 0.01956981047987938, + -0.04915841296315193, + -0.06799422949552536, + -0.060063306242227554, + -0.00019276585953775793, + 0.016143526881933212, + -0.036390937864780426, + 0.013578631915152073, + 0.14012308418750763, + -0.012375444173812866, + 0.03760340437293053, + -0.02524629794061184, + -0.037911105901002884, + -0.11502330005168915, + -0.03883154317736626, + 0.00461120018735528, + 0.0833476334810257, + -1.930246580048646e-33, + 0.07271980494260788, + 0.0025428603403270245, + -0.04027118533849716, + 0.059154052287340164, + 0.03348585590720177, + 0.027613574638962746, + 0.014498388394713402, + 0.014246273785829544, + -0.04146713390946388, + 0.08976317942142487, + 0.06603065878152847, + 0.0941743478178978, + 0.04947736859321594, + 0.05981577932834625, + 0.07919596880674362, + -0.05610523745417595, + 0.03061131201684475, + -0.05574871972203255, + -0.01025525014847517, + -0.01097680814564228, + 0.032483767718076706, + 0.10991975665092468, + 0.03859856724739075, + 0.034457847476005554, + 0.007668652571737766, + 0.0010101149091497064, + 0.019524117931723595, + -0.04769109934568405, + -0.061048414558172226, + -0.007451713550835848, + 0.06218011677265167, + 0.0387309193611145, + 0.04173465445637703, + 0.021824238821864128, + -0.05114869400858879, + 0.08407934010028839, + 0.004198099952191114, + -0.05569794028997421, + 0.022354304790496826, + -0.0390169732272625, + -0.07626467198133469, + -0.07581626623868942, + -0.04420340806245804, + -0.07395480573177338, + 0.06098365783691406, + 0.0315040722489357, + -0.009184572845697403, + -0.11636906862258911, + 0.021174978464841843, + 0.03239152207970619, + -0.0674830973148346, + -0.06301042437553406, + 0.055845994502305984, + 0.03264794871211052, + 0.05357585474848747, + -0.015400568954646587, + -0.08380338549613953, + 0.10595796257257462, + 0.0593385249376297, + 0.03233284503221512, + 0.04000129923224449, + -0.013319834135472775, + 0.03442796692252159, + -0.11780863255262375, + -0.10201647877693176, + 0.04090943560004234, + -0.024491753429174423, + -0.06901939958333969, + -0.011319494806230068, + -0.01721506379544735, + -0.02214975096285343, + 0.07757650315761566, + 0.02046072483062744, + -0.003441878128796816, + 0.03487926349043846, + 0.05986679717898369, + -0.03664158657193184, + -0.03435339406132698, + -0.048915110528469086, + -0.05407164245843887, + -0.09093545377254486, + -0.0026549468748271465, + -0.04518144950270653, + 0.07274625450372696, + 0.012762672267854214, + -0.006444830913096666, + -0.0478571392595768, + -0.06413320451974869, + -0.04858677461743355, + 0.025108974426984787, + -0.019728632643818855, + 0.038487572222948074, + 0.0022267496678978205, + -0.10036494582891464, + -0.018553759902715683, + -7.366225247523287e-34, + -0.0035540482494980097, + 0.022113284096121788, + -0.016113528981804848, + 0.025033660233020782, + -0.036722488701343536, + 0.001323714037425816, + -0.031995490193367004, + 0.019800476729869843, + -0.046671826392412186, + -0.011392449960112572, + 0.003992757294327021, + 0.0014608846977353096, + -0.05065031722187996, + -0.11004861444234848, + 0.06737260520458221, + 0.036588020622730255, + -0.026554472744464874, + 0.019706718623638153, + 0.026783408597111702, + 0.06882326304912567, + -0.004733182955533266, + 0.07776577770709991, + -0.038420893251895905, + 0.08829726278781891, + -0.028701724484562874, + 0.053638756275177, + 0.04579177871346474, + -0.06548336148262024, + 0.04440269246697426, + 0.050179313868284225, + -0.034697484225034714, + -0.05301307886838913, + 0.06804585456848145, + 0.11322048306465149, + -0.10288814455270767, + 0.040814004838466644, + -0.0035328217782080173, + 0.05554339662194252, + 0.01232894230633974, + 0.026944471523165703, + -0.02536511793732643, + 0.012600562535226345, + 0.025512369349598885, + 0.057956356555223465, + -0.10181491076946259, + -0.06367254257202148, + -0.05362265184521675, + -0.028315328061580658, + -0.06855019927024841, + 0.02688651904463768, + -0.02549166977405548, + -0.04602301865816116, + -0.04674873128533363, + 0.03731647506356239, + -0.06262978166341782, + -0.09073121845722198, + 0.03508725017309189, + 0.013278194703161716, + -0.009267463348805904, + -0.0036503509618341923, + 0.03699827194213867, + -0.026661528274416924, + 0.017849203199148178, + 0.03139643743634224, + -0.060115303844213486, + -0.07485605031251907, + 0.051519520580768585, + -0.007866695523262024, + 0.05807125195860863, + -0.031592708081007004, + -0.020769648253917694, + -0.07178980857133865, + 0.012319094501435757, + -0.06321516633033752, + -0.02276015281677246, + -0.04872508719563484, + -0.006005835719406605, + -0.04233107343316078, + -0.04496466740965843, + -0.017045803368091583, + 0.013375582173466682, + -0.038024306297302246, + -0.016916973516345024, + -0.021931806579232216, + -0.06284244358539581, + 0.006393701769411564, + 0.01557877566665411, + 0.043341606855392456, + 0.0724995955824852, + -0.04286660999059677, + -0.07439420372247696, + 0.031838931143283844, + 0.02346840873360634, + 0.061917178332805634, + -0.07357525825500488, + -2.4214319438442544e-08, + 0.010037857107818127, + 0.02745557576417923, + 0.029592398554086685, + -0.05619338899850845, + 0.03675609454512596, + -0.04427319020032883, + 0.01222987286746502, + -0.015292767435312271, + -0.08843977004289627, + -0.017399916425347328, + 0.07503810524940491, + 0.008852209895849228, + 0.007893028669059277, + -0.06303034722805023, + 0.08157345652580261, + 0.10964085906744003, + -0.03265303000807762, + 0.13072744011878967, + -0.03431082144379616, + 0.013969548046588898, + -0.07049468904733658, + 0.027331890538334846, + -0.0394350066781044, + 0.015714827924966812, + 0.07768058776855469, + 0.03565477207303047, + -0.028449025005102158, + 0.02936301939189434, + 0.06216108798980713, + 0.009989502839744091, + 0.025077281519770622, + 0.06358404457569122, + 0.022495565935969353, + 0.0004949938738718629, + -0.08262840658426285, + 0.003150858450680971, + -0.01001881156116724, + -0.042593613266944885, + 0.04348919168114662, + 0.06601089984178543, + -0.016050025820732117, + -0.11309593915939331, + -0.0705755278468132, + 0.026616765186190605, + -0.08687469363212585, + 0.0034558260813355446, + 0.00654220674186945, + -0.06976137310266495, + -0.06948406994342804, + -0.0060266354121267796, + -0.05485466122627258, + 0.02421661466360092, + 0.0192528385668993, + 0.05954348295927048, + -0.01319852378219366, + 0.042880572378635406, + -0.003955793101340532, + 0.05529959499835968, + -0.007395898457616568, + -0.018866239115595818, + 0.15203753113746643, + 0.020195020362734795, + 0.004667407367378473, + -0.023708447813987732 + ], + "prescription-bold||rx,medicine,drugs,pharmacy,pharmacist,pharmaceuticals,doctor": [ + 0.026484554633498192, + -0.0370185486972332, + -0.03618146851658821, + 7.528511196142063e-05, + -0.03622177615761757, + -0.013792518526315689, + 0.08775929361581802, + 0.08803180605173111, + 0.010105150751769543, + -0.03250008076429367, + -0.03257527947425842, + 0.07823574542999268, + 0.06179391220211983, + 0.031163563951849937, + -0.03133600205183029, + -0.005607393570244312, + 0.013035292737185955, + 0.003076631808653474, + 0.02566230669617653, + 0.10424283891916275, + 0.03023138828575611, + 0.07585442811250687, + 0.05462195351719856, + 0.08472467213869095, + 0.020267218351364136, + 0.08190277963876724, + 0.049050383269786835, + -0.020768674090504646, + -0.004964910447597504, + -0.02604258805513382, + 0.027622055262327194, + 0.07905495911836624, + 0.09973061829805374, + -0.038201555609703064, + 0.008175594732165337, + 0.019197560846805573, + -0.07079745829105377, + 0.03257869929075241, + 0.08016205579042435, + 0.0794527530670166, + 0.038661208003759384, + -0.061413731426000595, + -0.024848323315382004, + 0.0724804624915123, + 0.003474564990028739, + -0.11195386946201324, + -0.04153945669531822, + 0.030141226947307587, + 0.055495601147413254, + 0.09878826141357422, + -0.05939489230513573, + -0.11604433506727219, + -0.07689806818962097, + 0.06920214742422104, + 0.026173032820224762, + -0.0140017569065094, + -0.10810856521129608, + -0.053386539220809937, + -0.024006010964512825, + -0.027473827823996544, + -0.07948635518550873, + 0.0072629740461707115, + 0.06104705110192299, + 0.10551343113183975, + 0.00025299517437815666, + 0.06720659136772156, + -0.0033478806726634502, + -0.015645595267415047, + -0.010332411155104637, + 0.004556089174002409, + 0.01884446293115616, + 0.006599607411772013, + 0.028237320482730865, + 0.02819155901670456, + -0.040070679038763046, + -0.0029548904858529568, + 0.09086867421865463, + -0.00039745098911225796, + -0.028228797018527985, + -0.07385548204183578, + 0.004381575156003237, + -0.028689438477158546, + -0.0923905000090599, + 0.02488674223423004, + 0.04346185550093651, + 0.05771177262067795, + -0.017327921465039253, + -0.07430743426084518, + -0.02856847271323204, + -0.06595779210329056, + 0.018842821940779686, + -0.030313272029161453, + 0.058588895946741104, + -0.01857968606054783, + -0.04115124046802521, + -0.0666620209813118, + -0.01259993389248848, + 0.008109553717076778, + -0.042865633964538574, + 0.04111173376441002, + 0.0162651427090168, + -0.008186587132513523, + -0.011744375340640545, + 0.05025600269436836, + -0.10073824226856232, + -0.05384952202439308, + -0.0265206266194582, + -0.045575208961963654, + -0.03528846055269241, + -0.0024413648061454296, + -0.02931263856589794, + -0.018141431733965874, + -0.02142084576189518, + -0.008276456966996193, + -0.07741730660200119, + 0.041803523898124695, + -0.05141488090157509, + -0.010884013026952744, + 0.10028114914894104, + 0.01855235919356346, + -0.06885696947574615, + -0.04447546601295471, + -0.04276610538363457, + -0.10496050864458084, + 0.0038522554095834494, + 0.00584650132805109, + -0.006290052086114883, + -7.46647241595187e-34, + -0.045257240533828735, + 0.06746391952037811, + 0.011453785933554173, + 0.06486427038908005, + -0.00032543030101805925, + 0.052686657756567, + -0.05125349760055542, + -0.08178538084030151, + -0.08173772692680359, + -0.004668578039854765, + -0.022325191646814346, + 0.09870342910289764, + 0.002834098879247904, + 0.08513756841421127, + -0.01005852222442627, + 0.016990266740322113, + 0.03366420045495033, + 0.035125646740198135, + -0.035207513719797134, + 0.05661287531256676, + -0.0012318879598751664, + 0.08020159602165222, + -0.039401523768901825, + 0.042534586042165756, + -0.11437412351369858, + 0.018779508769512177, + -0.00589563837274909, + 0.028534337878227234, + 0.03996986523270607, + 0.009328213520348072, + 0.05668547376990318, + 0.031159887090325356, + 0.04020892456173897, + -0.016166575253009796, + -0.03208257257938385, + 0.013643201440572739, + -0.02899787575006485, + -0.051771000027656555, + 0.019506676122546196, + -0.031744085252285004, + -0.06772200763225555, + 0.03568393364548683, + 0.004901346750557423, + 0.014647080563008785, + 0.06748080998659134, + 0.07699127495288849, + -0.039875198155641556, + -0.011993582360446453, + 0.006432372145354748, + 0.033678676933050156, + -0.06319282948970795, + -0.0009754492784850299, + 0.015284531749784946, + -0.006643552798777819, + 0.02225140668451786, + -0.022288646548986435, + -0.08288287371397018, + 0.08137933164834976, + 0.027549736201763153, + 0.017210418358445168, + 0.02334713749587536, + 0.05969519913196564, + 0.0017017789650708437, + 0.01246599294245243, + -0.002690840046852827, + 0.06063195317983627, + -0.04841790348291397, + -0.06911446899175644, + 0.04368968307971954, + 0.05506640672683716, + 0.006492370739579201, + 0.09122780710458755, + 0.05397975444793701, + 0.06428580731153488, + 0.027827808633446693, + -0.010295718908309937, + -0.021917928010225296, + -0.037480346858501434, + 0.04683246091008186, + -0.0473666749894619, + -0.13824957609176636, + -0.011743219569325447, + -0.05123533681035042, + 0.1853228211402893, + -0.0035623274743556976, + -0.0017320569604635239, + -0.015965474769473076, + -0.031776804476976395, + 0.0069973967038095, + 0.01808760315179825, + -0.08169086277484894, + -0.06945397704839706, + -0.022800344973802567, + -0.035097673535346985, + -0.11088607460260391, + -2.11777117345441e-33, + 0.028459250926971436, + 0.015785591676831245, + -0.028210222721099854, + 0.004749591927975416, + -0.009524819441139698, + 0.010445266030728817, + 0.05114292725920677, + 0.0013089296407997608, + 0.05743706226348877, + 0.0030553736723959446, + 0.06635479629039764, + 0.03735177963972092, + -0.08708067983388901, + -0.01791205257177353, + -0.02599969692528248, + -0.021806487813591957, + 0.03973478078842163, + -0.005553249269723892, + -0.0725923553109169, + -0.0006128898239694536, + -0.012885547243058681, + -0.06381592154502869, + -0.041022785007953644, + 0.09389639645814896, + 0.023792259395122528, + 0.05989779531955719, + 0.08782767504453659, + 0.007762556429952383, + -0.05687282234430313, + -0.04376395419239998, + -0.08177062124013901, + 0.01075726468116045, + -0.03667500987648964, + 0.011268418282270432, + -0.0911799818277359, + 0.09534487873315811, + -0.026266401633620262, + -0.04694625735282898, + -0.026833973824977875, + -0.008219429291784763, + -0.007358019705861807, + -0.032020773738622665, + 0.007970317266881466, + 0.033661894500255585, + -0.016934094950556755, + -0.09488864243030548, + -0.1000242680311203, + -0.028305646032094955, + 0.05077347531914711, + 0.006072990596294403, + -0.06700165569782257, + 0.016589989885687828, + 0.031882837414741516, + -0.013092214241623878, + -0.04657942056655884, + -0.06161429360508919, + -0.04250502213835716, + -0.03322851285338402, + 0.0654715821146965, + 0.0309835784137249, + 0.013790063560009003, + 0.04843052849173546, + -0.03620930761098862, + 0.05157879367470741, + -0.05573118478059769, + -0.09759574383497238, + 0.026805032044649124, + -0.0034515317529439926, + 0.04585297033190727, + -0.010123159736394882, + 0.11280735582113266, + -0.0037090720143169165, + 0.018365096300840378, + 0.015267420560121536, + -0.020423226058483124, + -0.03745952248573303, + -0.019376875832676888, + -0.0343201644718647, + -0.054540663957595825, + 0.05552614852786064, + 0.06565924733877182, + -0.08689350634813309, + -0.05065787956118584, + 0.14451861381530762, + -0.09780886769294739, + 0.04113047942519188, + 0.008656799793243408, + -0.08034531027078629, + 0.036111172288656235, + -0.04139285162091255, + 0.006977475248277187, + 0.011036806739866734, + -0.091039277613163, + -0.01479770801961422, + -0.039044298231601715, + -2.2144330813489432e-08, + 0.03891673684120178, + -0.039481014013290405, + 0.0397084541618824, + -0.0014353771694004536, + 0.03442329168319702, + -0.03837336599826813, + -0.060111433267593384, + -0.10338710993528366, + -0.03909025341272354, + 0.053132444620132446, + 0.04314233735203743, + 0.018105167895555496, + -0.02900649607181549, + -0.07972737401723862, + 0.04084096476435661, + 0.029825937002897263, + -0.033877573907375336, + 0.07051791250705719, + -0.031560663133859634, + -0.04982491955161095, + -0.08152042329311371, + 0.03146585077047348, + 0.02794627845287323, + -0.01744445413351059, + 0.06295525282621384, + 0.00029625624301843345, + -0.01178691629320383, + -0.05192404240369797, + 0.0448082871735096, + 0.06868556886911392, + 0.07114243507385254, + 0.058039139956235886, + 0.06875522434711456, + 0.008016364648938179, + -0.08677124232053757, + -0.07660873979330063, + 0.020927997305989265, + 0.048313453793525696, + 0.02209443598985672, + 0.05162374675273895, + -0.05715944990515709, + -0.036115992814302444, + -0.00916577223688364, + 0.011918648146092892, + -0.0072959777899086475, + -0.028402024880051613, + 0.0410175547003746, + 0.01644979417324066, + 0.017896922305226326, + -0.12605105340480804, + -0.01682552509009838, + 0.020284168422222137, + -0.027387622743844986, + -0.04680570214986801, + -0.06909268349409103, + -0.044179365038871765, + -0.02146553434431553, + 0.024196675047278404, + -0.06851186603307724, + -0.046074919402599335, + 0.03809104487299919, + -0.04218653216958046, + 0.06978189200162888, + 0.006380540318787098 + ], + "presentation-bold||whiteboard,flipchart,charts,statistics,analyze,analysis,meeting": [ + 0.046543486416339874, + -0.02475389838218689, + -0.04980938136577606, + 0.030931124463677406, + 0.009145316667854786, + 0.00664055161178112, + -0.030581461265683174, + 0.024456258863210678, + 0.03180349990725517, + 0.0019028893439099193, + -0.043174609541893005, + 0.02223198674619198, + 0.009032944217324257, + 0.03093111142516136, + -0.016030291095376015, + 0.008868077769875526, + 0.04879707470536232, + -0.0325581356883049, + 0.048850178718566895, + 0.04140664264559746, + 0.020836828276515007, + -0.007479922380298376, + 0.054909661412239075, + -0.004260287620127201, + 0.04320090636610985, + 0.03935147076845169, + 0.0175540279597044, + 0.012862453237175941, + 0.06697037070989609, + -0.03134475648403168, + -0.017002291977405548, + -0.001507273642346263, + 0.18265892565250397, + 0.003996018320322037, + -0.022034011781215668, + -0.02769581973552704, + 0.025506852194666862, + 0.017200492322444916, + 0.017848016694188118, + 0.08351348340511322, + -0.03540928289294243, + -0.0264934990555048, + 0.04028883948922157, + 0.04897269979119301, + -0.02794613689184189, + -0.07591738551855087, + -0.13677988946437836, + -0.05469268187880516, + 0.01525703351944685, + 0.06783073395490646, + -0.09071853011846542, + -0.0786215215921402, + -0.12282460182905197, + -0.01895974390208721, + 0.03616359829902649, + 0.03351065516471863, + -0.10854225605726242, + -0.06341978907585144, + 0.07900186628103256, + -0.02781972475349903, + -0.019118351861834526, + 0.04953858628869057, + 0.031089037656784058, + 0.07967892289161682, + 0.09371371567249298, + 0.07451138645410538, + -0.03338777646422386, + 0.08865224570035934, + -0.007432079408317804, + 0.04676074907183647, + 0.015179945155978203, + -0.03833114355802536, + 0.004845008719712496, + -0.05794886127114296, + -0.029882444068789482, + -0.01632796600461006, + -0.04162047803401947, + -0.02745244838297367, + -0.03350270912051201, + -0.09429099410772324, + -0.0097504872828722, + -0.053508881479501724, + -0.05723556503653526, + 0.06068829819560051, + 0.03271937742829323, + -0.018259437754750252, + -0.05843529850244522, + -0.02623402699828148, + -0.05059986189007759, + -0.0416727252304554, + -0.089901402592659, + 0.02123674750328064, + -0.0371210090816021, + 0.03161763772368431, + -0.045017924159765244, + 0.0119929239153862, + 0.006918965373188257, + -0.06685496866703033, + 0.049046020954847336, + 0.11326133459806442, + 0.024955598637461662, + 0.00809083878993988, + 0.07251247763633728, + 0.023822013288736343, + -0.1651419997215271, + -0.093682661652565, + 0.01609223149716854, + 0.015684736892580986, + -0.043880630284547806, + 0.048350125551223755, + 0.026275139302015305, + -0.01966804824769497, + -0.06488514691591263, + -0.036077626049518585, + -0.0003935120184905827, + -0.051444124430418015, + -0.046726346015930176, + -0.030760768800973892, + 0.0604519285261631, + 0.044872574508190155, + 0.054630525410175323, + 0.04924141615629196, + 0.04352391138672829, + -0.0031783138401806355, + -0.02735470049083233, + 0.0035168796312063932, + 0.012183735147118568, + -1.4652251474606762e-33, + 0.027065694332122803, + -0.004048836883157492, + -0.059802185744047165, + 0.1082780584692955, + 0.04521356150507927, + 0.03322578966617584, + -0.07660027593374252, + -0.0522712767124176, + -0.032443005591630936, + 0.07173310220241547, + 0.09147530794143677, + 0.16274327039718628, + 0.02972031570971012, + 0.06032892316579819, + 0.03727042302489281, + -0.0006860147113911808, + 0.06172661855816841, + 0.06656025350093842, + -0.14524845778942108, + -0.06820794939994812, + -0.06544645875692368, + 0.006216645706444979, + 0.055694788694381714, + 0.01992333121597767, + 0.041328877210617065, + 0.03794163465499878, + 0.03137765824794769, + 0.00536193186417222, + -0.0835476741194725, + 0.0034558263141661882, + 0.025972863659262657, + 0.02202446572482586, + 0.01504402793943882, + -0.04534078389406204, + 0.01088312640786171, + -0.00626504747197032, + -0.05388880521059036, + -0.08183924108743668, + 0.08636725693941116, + 0.08903878927230835, + -0.13660654425621033, + -0.03415139392018318, + -0.011327848769724369, + 0.015234124846756458, + 0.05044922977685928, + 0.14337895810604095, + 0.0011310267727822065, + -0.008335627615451813, + 0.04986252635717392, + 0.008072647266089916, + -0.10007272660732269, + -0.04089478403329849, + 0.012699924409389496, + -0.03195514902472496, + 0.013417155481874943, + -0.04650021344423294, + 0.0031756728421896696, + 0.04766760393977165, + 0.0011130651691928506, + -0.0033416065853089094, + -0.01667378842830658, + 0.08033358305692673, + -0.04430624097585678, + -0.07028096914291382, + -0.08165007084608078, + 0.061355412006378174, + -0.09763623774051666, + -0.012108346447348595, + 0.07262209802865982, + -0.042157482355833054, + 0.008220001123845577, + 0.04972538352012634, + -0.008163773454725742, + 0.04985577613115311, + 0.018859459087252617, + 0.04508611559867859, + 0.022607771679759026, + 0.010278429836034775, + -0.029847614467144012, + -0.04915636032819748, + -0.06845038384199142, + -0.08263527601957321, + -0.016116376966238022, + 0.006258034147322178, + -0.008195074275135994, + 0.000646802713163197, + 0.00851885974407196, + -0.007973277010023594, + -0.05311264842748642, + 0.07799388468265533, + -0.11184798181056976, + 0.017605874687433243, + -0.03479284420609474, + 0.017434196546673775, + -0.03746118023991585, + -8.910287586851249e-34, + -0.03544729948043823, + 0.05087006464600563, + -0.05192778632044792, + 0.0033149358350783587, + 0.040768228471279144, + 0.0777830258011818, + 0.02249913476407528, + 0.010226807557046413, + 0.05197334289550781, + 0.0272065419703722, + 0.04783124849200249, + -0.03897015005350113, + -0.04406910389661789, + -0.054774802178144455, + -0.015657562762498856, + 0.026676243171095848, + 0.06426893174648285, + 0.0565568208694458, + -0.09830885380506516, + -0.02374984137713909, + -0.024434726685285568, + 0.09420491755008698, + -0.08145813643932343, + 0.01984831504523754, + 0.05153929069638252, + 0.06591087579727173, + 0.034454088658094406, + -0.07913904637098312, + -0.05721051245927811, + 0.014514775946736336, + -0.08485838770866394, + -0.05841542407870293, + 0.013974560424685478, + 0.01869199611246586, + -0.016683565452694893, + 0.10747688263654709, + 0.07123752683401108, + -0.07197939604520798, + -0.03283438831567764, + -0.026756243780255318, + -0.0028361682780086994, + -0.002729922765865922, + 0.027857961133122444, + 0.0013776404084637761, + -0.028806233778595924, + 0.03735747188329697, + -0.06863796710968018, + 0.026848046109080315, + 0.02515549026429653, + 0.003378645284101367, + -0.011178835295140743, + 0.011501023545861244, + 0.04295435920357704, + -0.11050828546285629, + -0.046353038400411606, + -0.07177939265966415, + 0.040856871753931046, + -0.040760889649391174, + -0.035672929137945175, + 0.03876484930515289, + 0.0007104406249709427, + 0.035028908401727676, + -0.00856955349445343, + 0.0012357216328382492, + 0.041686370968818665, + -0.044822756201028824, + 0.0023506362922489643, + -0.0425800085067749, + -0.015420408919453621, + 0.01768726482987404, + -0.02554808184504509, + -0.019972672685980797, + 0.007577318232506514, + -0.032961197197437286, + -0.0014707492664456367, + 0.02391781657934189, + -0.008792521432042122, + 0.049208786338567734, + 0.002328006085008383, + 0.04746013134717941, + -0.0028108188416808844, + -0.0021053245291113853, + 0.04077039659023285, + 0.01337564829736948, + -0.005760157015174627, + 0.07050668448209763, + -0.023238591849803925, + 0.002596391597762704, + -0.0011549978516995907, + 0.02722403220832348, + -0.07890453934669495, + -0.0027643274515867233, + 0.02662740647792816, + 0.018366415053606033, + 0.019973456859588623, + -2.2201417593237238e-08, + -0.004611522890627384, + -0.019824067130684853, + 0.03054817207157612, + -0.04223208874464035, + -0.01679965853691101, + -0.014557627961039543, + -0.02460666000843048, + -0.06247987225651741, + -0.04092657193541527, + 0.0077197919599711895, + 0.015540651977062225, + 0.0014647356001660228, + -0.05943216383457184, + -0.015564029105007648, + 0.0012515089474618435, + -0.009397693909704685, + -0.023526789620518684, + 0.06499181687831879, + -0.018608812242746353, + -0.1531544178724289, + 0.05688095465302467, + -0.025085486471652985, + 0.07592569291591644, + 0.016490349546074867, + 0.02651912532746792, + -0.004240531474351883, + -0.0179578959941864, + 0.06997769325971603, + 0.0007790201343595982, + 0.008721383288502693, + -0.017177047207951546, + 0.01044881995767355, + -0.0005245939828455448, + -0.01316812727600336, + -0.024731503799557686, + -0.04496819153428078, + -0.05692227929830551, + 0.034926772117614746, + 0.031819235533475876, + 0.10721669346094131, + -0.09584131836891174, + -0.011965670622885227, + -0.02794676274061203, + 0.03460613265633583, + 0.0038216726388782263, + 0.09904737770557404, + -0.0019529564306139946, + 0.016367381438612938, + -0.03572218865156174, + -0.12632611393928528, + -0.04114193469285965, + -0.1143709048628807, + 0.011411855928599834, + 0.024378104135394096, + -0.005009836051613092, + 0.02020833268761635, + 0.06930326670408249, + 0.09379193931818008, + 0.0003801278944592923, + -0.02770290896296501, + 0.06453227996826172, + 0.043089207261800766, + -0.05884747952222824, + -0.02749466337263584 + ], + "presentation-chart-bold||whiteboard,flipchart,graphs,graphing,charts,statistics,analyze,analysis,meeting": [ + 0.040502939373254776, + -0.02726401761174202, + -0.03245455399155617, + 0.024722902104258537, + 0.004528803285211325, + -0.007548053283244371, + -0.027845092117786407, + 0.03714543581008911, + 0.029176907613873482, + 0.015707284212112427, + -0.018121277913451195, + 0.006388018373399973, + 0.021222461014986038, + 0.03586558997631073, + 0.01187809742987156, + 0.029540762305259705, + 0.042163025587797165, + -0.04625044763088226, + 0.055557943880558014, + 0.012408088892698288, + 0.01100230310112238, + -0.01961032673716545, + 0.03212844580411911, + 0.0009539755410514772, + 0.06986567378044128, + 0.025595294311642647, + 0.00429330812767148, + 0.018168266862630844, + 0.08039078116416931, + -0.023482324555516243, + -0.034219853579998016, + -0.0014849216677248478, + 0.1649523675441742, + 0.003748915856704116, + -0.024208633229136467, + -0.022557057440280914, + 0.02591550536453724, + 0.01735544018447399, + 0.028299354016780853, + 0.10119336098432541, + -0.022308718413114548, + -0.021810606122016907, + 0.027873629704117775, + 0.03913374990224838, + -0.024421362206339836, + -0.05549837648868561, + -0.16338984668254852, + -0.042796723544597626, + 0.007414994761347771, + 0.05681482329964638, + -0.0899142324924469, + -0.09355705231428146, + -0.13854366540908813, + -0.028430970385670662, + 0.04755741357803345, + 0.028356356546282768, + -0.10097508877515793, + -0.05258854851126671, + 0.10231596231460571, + -0.023685280233621597, + -0.008962837979197502, + 0.0477491170167923, + 0.02908356860280037, + 0.07792665809392929, + 0.09088894724845886, + 0.07917001098394394, + -0.023112455382943153, + 0.07893701642751694, + -0.016412783414125443, + 0.0804111585021019, + 0.03569955378770828, + -0.0458916611969471, + -0.02063579298555851, + -0.05012667924165726, + -0.021165834739804268, + 0.012485452927649021, + -0.031501613557338715, + -0.005144039168953896, + -0.05544847995042801, + -0.12202059477567673, + -0.02631092444062233, + -0.040253836661577225, + -0.06373444944620132, + 0.058029890060424805, + -0.005620994605123997, + 0.010510675609111786, + -0.07553301751613617, + -0.04698319733142853, + -0.024273192510008812, + -0.03675631806254387, + -0.0972919762134552, + 0.022785602137446404, + -0.050514016300439835, + 0.0438426174223423, + -0.03728772699832916, + 0.04677532613277435, + 0.02305527590215206, + -0.044467899948358536, + 0.02438162826001644, + 0.10076017677783966, + 0.04019838199019432, + -0.02040521241724491, + 0.06102282553911209, + 0.03138446807861328, + -0.13661393523216248, + -0.070640429854393, + -0.005052030552178621, + 0.014983323402702808, + -0.05113775655627251, + 0.04244546592235565, + 0.015169967897236347, + -0.02183927595615387, + -0.049868371337652206, + -0.012842788361012936, + -0.019672667607665062, + -0.04639163240790367, + -0.03748505190014839, + -0.0452459491789341, + 0.04459733888506889, + 0.0607425756752491, + 0.039738915860652924, + 0.06266260892152786, + 0.03728378564119339, + -0.014479906298220158, + -0.049606967717409134, + -0.009926365688443184, + 0.018628770485520363, + -1.396762519758863e-33, + 0.026423487812280655, + -0.008381030522286892, + -0.04143286868929863, + 0.07809005677700043, + 0.06076753884553909, + 0.02476554363965988, + -0.10996327549219131, + -0.05702657997608185, + -0.03820104897022247, + 0.08311788737773895, + 0.05724996328353882, + 0.15290476381778717, + 0.028932321816682816, + 0.06338068097829819, + 0.05617395415902138, + -0.01012074202299118, + 0.10214188694953918, + 0.024430712684988976, + -0.13422143459320068, + -0.0798274502158165, + -0.05552716925740242, + 0.004288712982088327, + 0.060726042836904526, + 0.03136518970131874, + 0.04563896730542183, + 0.04651612788438797, + 0.02786262519657612, + -0.002238235669210553, + -0.07137206196784973, + -0.0012462310260161757, + 0.017767123878002167, + 0.040116846561431885, + 0.013506717048585415, + -0.03216662257909775, + -0.009783477522432804, + -0.011802535504102707, + -0.0709209218621254, + -0.06563043594360352, + 0.06128498539328575, + 0.05941528454422951, + -0.1336970329284668, + -0.03038044273853302, + -0.021959790959954262, + 0.01912614330649376, + 0.04783762991428375, + 0.1309659779071808, + -0.002559511223807931, + -0.01874733902513981, + 0.0451795719563961, + 0.018351268023252487, + -0.11067230254411697, + -0.027370169758796692, + 0.016768919304013252, + -0.022957362234592438, + 0.009918208234012127, + -0.0370267815887928, + 0.02990390732884407, + 0.05723147839307785, + -0.024037793278694153, + 0.01088071521371603, + -0.006916695274412632, + 0.056782208383083344, + -0.02359090931713581, + -0.056903012096881866, + -0.08276452869176865, + 0.06479312479496002, + -0.1183311939239502, + -0.0066175018437206745, + 0.07256698608398438, + -0.034739188849925995, + -0.006082234904170036, + 0.06587594002485275, + 0.006048927083611488, + 0.04714275524020195, + 0.03173632174730301, + 0.03623426333069801, + 0.0006951529067009687, + -0.0011878703953698277, + -0.03920302912592888, + -0.04395473375916481, + -0.0907997190952301, + -0.11060731112957001, + -0.024758029729127884, + 0.017689811065793037, + -0.003082721494138241, + -0.01927332393825054, + 0.018279725685715675, + 0.018261922523379326, + -0.03366319090127945, + 0.0642935261130333, + -0.10411006957292557, + 0.02098771743476391, + -0.022481732070446014, + 0.01654968224465847, + -0.03915071487426758, + -1.127389356731297e-33, + -0.03794555366039276, + 0.0927593782544136, + -0.024493921548128128, + 0.027812115848064423, + 0.028037121519446373, + 0.074349045753479, + 0.02226674184203148, + 0.005603324621915817, + 0.042366016656160355, + 0.051679402589797974, + 0.05540372431278229, + -0.05675631761550903, + -0.05379515513777733, + -0.050920575857162476, + -0.028456149622797966, + 0.007259791251271963, + 0.034489378333091736, + 0.05914417281746864, + -0.10240153968334198, + -0.027148157358169556, + -0.028404926881194115, + 0.08534063398838043, + -0.09906132519245148, + 0.016853010281920433, + 0.07415153831243515, + 0.07046801596879959, + 0.026550276204943657, + -0.0739453136920929, + -0.06130165979266167, + 0.026984207332134247, + -0.08878031373023987, + -0.043616726994514465, + 0.030005550011992455, + -0.008597219362854958, + -4.991151399735827e-06, + 0.10060208290815353, + 0.09090948849916458, + -0.0533185750246048, + -0.03725354000926018, + -0.030023759230971336, + -0.016750646755099297, + -0.01139125321060419, + 0.019678249955177307, + -0.008483563549816608, + -0.04310397803783417, + 0.0442851185798645, + -0.06788669526576996, + 0.021476848050951958, + -0.0008360783685930073, + 0.024248279631137848, + -0.012971778400242329, + 0.02372201904654503, + 0.07115484774112701, + -0.08806172758340836, + -0.05034659430384636, + -0.09073898941278458, + 0.04603837803006172, + -0.004878811538219452, + -0.05781848728656769, + 0.028091706335544586, + -0.009643630124628544, + 0.01479489728808403, + -0.010999302379786968, + -0.004177689552307129, + 0.012967790476977825, + -0.05055943503975868, + 0.0031345654278993607, + -0.06364307552576065, + 0.004251858219504356, + 0.017502740025520325, + -0.02436557598412037, + -0.011396420188248158, + -0.004911379888653755, + -0.043068815022706985, + 0.0024229015689343214, + 0.014166145585477352, + -0.011918281204998493, + 0.06395447254180908, + 0.004499292001128197, + 0.05637410655617714, + -0.0029323031194508076, + -0.012077496387064457, + 0.030700715258717537, + 0.05627402663230896, + -0.010792194865643978, + 0.06417496502399445, + -0.02438751794397831, + 0.021192731335759163, + 0.014732470735907555, + 0.016840605065226555, + -0.06906221061944962, + 0.005048451945185661, + -0.005373504478484392, + 0.027680683881044388, + 0.029329195618629456, + -2.3751731248466967e-08, + -0.024147769436240196, + -0.005514212884008884, + 0.026324747130274773, + -0.04413393512368202, + 0.01997985690832138, + -0.0006992730777710676, + 0.006907432805746794, + -0.04699406772851944, + -0.05202653631567955, + 0.037690669298172, + 0.043699778616428375, + 0.006803461816161871, + -0.061189204454422, + -0.04013776406645775, + -0.008648119866847992, + -0.018325509503483772, + -0.012345223687589169, + 0.0626378133893013, + 0.0057356832548975945, + -0.13899026811122894, + 0.016665954142808914, + -0.0360337533056736, + 0.06591392308473587, + 0.033347196877002716, + 0.02617613784968853, + -0.04524979367852211, + -0.02744833193719387, + 0.07758234441280365, + -0.013510450720787048, + 0.012958912178874016, + -0.008847574703395367, + -2.4796679554128787e-06, + 0.028223490342497826, + -0.01781412586569786, + -0.029913904145359993, + -0.04318692162632942, + -0.058089643716812134, + 0.029529528692364693, + 0.007600582204759121, + 0.10474661737680435, + -0.09854184836149216, + 0.01145216729491949, + -0.024939004331827164, + 0.022821839898824692, + 0.000672940572258085, + 0.0918753445148468, + 0.021608969196677208, + 0.03152818605303764, + -0.02826783061027527, + -0.13119205832481384, + -0.049094308167696, + -0.1005539521574974, + 0.007778559811413288, + -0.005606122314929962, + 0.007031712215393782, + 0.02203476056456566, + 0.043470051139593124, + 0.08790026605129242, + -0.014598668552935123, + -0.017678603529930115, + 0.05467227101325989, + 0.011132818646728992, + -0.05512280762195587, + -0.0680709183216095 + ], + "printer-bold||printing": [ + -0.031982824206352234, + 0.02457626909017563, + -0.10523009300231934, + 0.06525998562574387, + 0.011246360838413239, + -0.03665662929415703, + 0.043725404888391495, + -0.044412434101104736, + -0.07427389174699783, + -0.04286830127239227, + 0.06633684039115906, + 0.05676252767443657, + 0.04416040703654289, + -0.05881776288151741, + -0.017917050048708916, + -0.00020042763208039105, + 0.017363857477903366, + 0.01771131530404091, + 0.010738937184214592, + -0.002488088794052601, + -0.019602885469794273, + 0.009556463919579983, + 0.03515026345849037, + 0.04369334131479263, + 0.0036605368368327618, + -0.025365691632032394, + 0.03616006672382355, + -0.00367474602535367, + 0.03329455479979515, + -0.038642894476652145, + -0.004561076872050762, + -0.01332195196300745, + 0.07689524441957474, + 0.033854514360427856, + 0.11298918724060059, + -0.024974878877401352, + 0.025873566046357155, + -0.024975551292300224, + 0.03957002982497215, + 0.002754190471023321, + 0.06350479274988174, + -0.07769639045000076, + -0.03458067402243614, + 0.04308038204908371, + -0.06269418448209763, + -0.030683981254696846, + -0.14236219227313995, + 0.011875161901116371, + -0.006889240816235542, + -0.008213050663471222, + 0.025321127846837044, + -0.08046573400497437, + -0.07177605479955673, + -0.07453236728906631, + 0.05711064860224724, + -0.005375478882342577, + -0.03163382038474083, + 0.04154876619577408, + 0.01392376609146595, + -0.06389671564102173, + -0.048919450491666794, + 0.011013174429535866, + -0.0444408617913723, + 0.0006407061009667814, + 0.06482171267271042, + 0.055047839879989624, + -0.0029214476235210896, + 0.066709965467453, + -0.08685338497161865, + 0.05864103510975838, + 0.042187876999378204, + 0.04439188167452812, + 0.012504585087299347, + -0.046352073550224304, + 0.008939685299992561, + 0.017778707668185234, + 0.06505859643220901, + 0.007432658690959215, + -0.045339185744524, + 0.04566765949130058, + -0.0868532583117485, + -0.026738755404949188, + -0.004500019364058971, + 0.04128091409802437, + 0.050830427557229996, + 0.00514032831415534, + -0.05722591280937195, + -0.09380093216896057, + 0.0034906500950455666, + -0.003925957717001438, + -0.02966892719268799, + 0.01982865296304226, + -0.04499369114637375, + 0.013683781027793884, + -0.09124421328306198, + 0.038942206650972366, + 0.08726928383111954, + -0.014785929583013058, + -0.023243259638547897, + 0.07306988537311554, + 0.0020018809009343386, + 0.037160880863666534, + 0.047850102186203, + -0.00978996604681015, + -0.030707430094480515, + -0.01557471789419651, + -0.01676337979733944, + -0.049564432352781296, + -0.007162881549447775, + -0.04727090522646904, + 0.01512458547949791, + -0.0743199810385704, + 0.015560931526124477, + -0.05758709833025932, + -0.02288767881691456, + -0.06712289899587631, + -0.049295514822006226, + -0.05010038614273071, + 0.09824097156524658, + -0.008986881002783775, + -0.028245119377970695, + -0.03915950283408165, + -0.07669420540332794, + -0.06171675771474838, + -0.014232702553272247, + 0.028210390359163284, + 0.06388287991285324, + -3.1916368744794106e-33, + 0.041019536554813385, + 0.040110889822244644, + -0.043451182544231415, + 0.0877053439617157, + 0.05814963951706886, + 0.08970467001199722, + -0.037161268293857574, + -0.06750059127807617, + -0.06770875304937363, + -0.0037048307713121176, + 0.05371387302875519, + 0.07059793919324875, + 0.010663728229701519, + 0.05518355965614319, + 0.010306501761078835, + 0.0033031306229531765, + 0.04777713492512703, + 0.02684040553867817, + -0.11216244101524353, + 0.04960884898900986, + -0.04432271420955658, + -0.021802185103297234, + -0.01224014163017273, + -0.061152875423431396, + -0.023248516023159027, + 0.0160405021160841, + 0.001326183439232409, + -0.010174944996833801, + -0.09100781381130219, + 0.032184675335884094, + 0.025436142459511757, + 0.05412263423204422, + 0.039386969059705734, + -0.0034601290244609118, + -0.059203386306762695, + 0.03021572344005108, + -0.05295508727431297, + 0.009636031463742256, + 0.003219379810616374, + 0.05989955738186836, + -0.12200722843408585, + 0.009967800229787827, + 0.023601602762937546, + -0.06545879691839218, + 0.02512657456099987, + 0.10114192962646484, + -0.03875984624028206, + -0.054413896054029465, + 0.005156688392162323, + 0.007631918881088495, + 0.0031721824780106544, + -0.021618522703647614, + 0.013397250324487686, + 0.04706074297428131, + 0.024166289716959, + -0.06646896153688431, + 0.043601006269454956, + 0.03700920194387436, + 0.026508690789341927, + -0.06343760341405869, + 0.023334603756666183, + 0.0446990467607975, + 0.07688236981630325, + 0.034194983541965485, + 0.0006594168371520936, + 0.10296542197465897, + -0.015860915184020996, + 0.04913172870874405, + 0.05461481958627701, + -0.024595491588115692, + -0.0065324269235134125, + 0.04369630664587021, + 0.024014698341488838, + 0.0031852885149419308, + 0.009749178774654865, + 0.0845533162355423, + 0.04085535183548927, + -0.025684883818030357, + 0.04292767122387886, + -0.08435503393411636, + -0.09318163245916367, + 0.04521320387721062, + -0.09178062528371811, + 0.0015936943236738443, + 0.007851924747228622, + -0.004228208679705858, + -0.0655035600066185, + -0.012024366296827793, + -0.0031722048297524452, + 0.06508567184209824, + -0.04121096804738045, + -0.06635238975286484, + 0.016818851232528687, + -0.04524599388241768, + -0.08850161731243134, + 3.6213560076602793e-34, + 0.05155935138463974, + 0.053725678473711014, + -0.04476608708500862, + -0.06001858785748482, + -0.10113008320331573, + -0.007099973037838936, + 0.09937772899866104, + 0.0457274429500103, + -0.03382587060332298, + 0.020892180502414703, + 0.07115355134010315, + -0.005388541147112846, + -0.06690162420272827, + 0.02947058342397213, + 0.012448851019144058, + 0.012733851559460163, + 0.012013446539640427, + 0.11198452860116959, + -0.013851544819772243, + -0.05476043373346329, + -0.024181250482797623, + -0.09061270952224731, + -0.027464741840958595, + 0.16351132094860077, + 0.058462392538785934, + 0.010278803296387196, + -0.003374929539859295, + 0.002192701678723097, + -0.04902360588312149, + -0.012171470560133457, + -0.008083470165729523, + 0.012495738454163074, + 0.08650653809309006, + 0.07647419720888138, + -0.01341152098029852, + 0.03672471642494202, + 0.03788910433650017, + 0.030999459326267242, + 0.08333428204059601, + -0.014995256438851357, + 0.0015415203524753451, + 0.020932795479893684, + -0.015583263710141182, + 0.03504005819559097, + -0.06625016778707504, + -0.008288553915917873, + 0.02331293374300003, + -0.10933014005422592, + 0.013973803259432316, + 0.05622752010822296, + 0.03074665181338787, + -0.034066181629896164, + 0.0550168976187706, + 0.01676343008875847, + -0.0904969722032547, + -0.03841857612133026, + -0.02089732512831688, + 0.02687019482254982, + -0.08608809113502502, + 0.08705319464206696, + -0.010205316357314587, + 0.05242639034986496, + -0.009892456233501434, + -0.004492095671594143, + -0.0031244573183357716, + -0.028185158967971802, + 0.07361114770174026, + -0.04139791801571846, + 0.0431629940867424, + 0.004321387968957424, + 0.02573639154434204, + 0.02591770887374878, + 0.03234579786658287, + 0.09006450325250626, + 0.008152750320732594, + -0.027704669162631035, + 0.004060276318341494, + 0.04842415079474449, + -0.04022793471813202, + 0.08867927640676498, + -0.007991973310709, + -0.0052284495905041695, + -0.04340289160609245, + 0.03449947014451027, + -0.08833326399326324, + -0.005840547848492861, + 0.036482613533735275, + -0.027556100860238075, + -0.02134736068546772, + -0.05423792079091072, + 0.0019714361988008022, + 0.06888261437416077, + 0.03355766832828522, + -0.018183231353759766, + -0.03153279796242714, + -1.3063223391895917e-08, + -0.047608330845832825, + -0.04659963771700859, + 0.03011602722108364, + -0.042397793382406235, + 0.044346243143081665, + -0.05647895857691765, + 0.02510988898575306, + -0.12020789086818695, + -0.06924166530370712, + -0.02382158301770687, + 0.03472691774368286, + -0.060715947300195694, + -0.023924926295876503, + -0.11271156370639801, + 0.08578977733850479, + 0.017260417342185974, + 0.00977872684597969, + -0.05064511299133301, + -0.04440987855195999, + -0.05186447501182556, + -0.04438606649637222, + -0.0013702840078622103, + 0.07078463584184647, + -0.01937534660100937, + -0.028048397973179817, + -0.06441273540258408, + -0.029238367453217506, + 0.04390045627951622, + 0.08968213200569153, + -0.003040224313735962, + 0.03200097754597664, + 0.04116677865386009, + 0.006809518672525883, + 0.08903492242097855, + -0.0707150399684906, + -0.03496796637773514, + 0.01810280606150627, + -0.02296304516494274, + 0.016818515956401825, + 0.1397317796945572, + -0.0928988829255104, + 0.026701921597123146, + -0.08173557370901108, + -0.05710314214229584, + -0.013269712217152119, + 0.004544668830931187, + 0.11348499357700348, + -0.03484714403748512, + -0.08796802908182144, + -0.039091553539037704, + -0.010049656964838505, + 0.027697568759322166, + 0.06697230786085129, + 0.0962076410651207, + -0.07502995431423187, + -0.1024022325873375, + -0.02717936411499977, + 0.09844205528497696, + -0.004112302791327238, + 0.04779447615146637, + 0.08282916992902756, + -0.03964109718799591, + 0.07402744889259338, + -0.005057685077190399 + ], + "prohibit-bold||forbidden,prohibited,cancelled,prevent,stop,do not enter": [ + -0.007523674052208662, + 0.04257559776306152, + -0.026490995660424232, + -0.03069549798965454, + 0.04639700427651405, + -0.005693691782653332, + 0.0021415676455944777, + -0.11777298152446747, + -0.012746227905154228, + -0.02140902169048786, + 0.03118782676756382, + 0.05165018141269684, + 0.05861528962850571, + 0.023143945261836052, + -0.037386853247880936, + 0.012612391263246536, + 0.049100492149591446, + -0.007509986869990826, + 0.008747035637497902, + -0.005758819170296192, + 0.13469336926937103, + 0.09622351825237274, + -0.03418315574526787, + 0.052239008247852325, + -0.07756748050451279, + 0.017822442576289177, + -0.041959248483181, + 0.03268545866012573, + 0.032073866575956345, + -0.04556965082883835, + -0.06849921494722366, + -0.006847236305475235, + 0.0703509971499443, + 0.03236925229430199, + 0.026727095246315002, + -0.06336799263954163, + -0.00421890476718545, + -0.04074953496456146, + -0.009673438034951687, + -0.05661444365978241, + -0.024697281420230865, + -0.03912537917494774, + -0.06533734500408173, + 0.010736231692135334, + -0.03223585709929466, + -0.03450440987944603, + -0.10832016170024872, + -0.04980872943997383, + 0.025035686790943146, + 0.014305115677416325, + -0.020697053521871567, + -0.011023308150470257, + -0.06523216515779495, + 0.022267399355769157, + 0.05243079364299774, + -0.05129377543926239, + -0.04866006225347519, + -0.014442705549299717, + 0.0597495436668396, + -0.00782992597669363, + -0.01773969456553459, + -0.007118189707398415, + -0.05359905958175659, + -0.012106286361813545, + -0.014110565185546875, + 0.030446097254753113, + -0.08961290121078491, + 0.02430608496069908, + 0.010215798392891884, + 0.13216862082481384, + -0.02392074652016163, + -0.043263696134090424, + -0.05096114054322243, + 0.0338037945330143, + -0.028572745621204376, + -0.005596877541393042, + -0.062200214713811874, + 0.008259950205683708, + -0.020862119272351265, + -0.10881391167640686, + -0.07978074252605438, + -0.10926875472068787, + 0.03841616213321686, + -0.0051547568291425705, + -0.00015089316002558917, + 0.07438859343528748, + -0.059054456651210785, + 0.013366339728236198, + 0.08152179419994354, + 0.02942267246544361, + -0.0373888835310936, + -0.07451228052377701, + 0.08277427405118942, + 0.03962142392992973, + -0.07133768498897552, + -0.046167004853487015, + 0.044013407081365585, + -0.08057470619678497, + -0.04586771875619888, + 0.06292597949504852, + 0.050578366965055466, + 0.028498049825429916, + -0.046166080981492996, + -0.0318266786634922, + 0.01178287249058485, + -0.07227571308612823, + 0.057567108422517776, + 0.009328783489763737, + -0.012094197794795036, + 0.015751929953694344, + -0.013120521791279316, + -0.0016650496982038021, + 0.0753401517868042, + -0.11416725069284439, + -0.0436382070183754, + 0.08332934975624084, + -0.020506100729107857, + 0.01666003279387951, + 0.08498740196228027, + 0.06525132805109024, + -0.0111948661506176, + -0.017778141424059868, + 0.031065603718161583, + -0.031700968742370605, + 0.007374296896159649, + -0.0673031210899353, + -0.014574612490832806, + -1.8964081384503034e-33, + 0.06277856975793839, + 0.018268773332238197, + -0.08822058141231537, + 0.03431930020451546, + 0.03024037927389145, + 0.029484475031495094, + -0.06881678104400635, + 0.012797543779015541, + -0.10950443893671036, + 0.08687921613454819, + 0.07497937977313995, + -0.01944434456527233, + 0.014442233368754387, + 0.025369927287101746, + 0.12628376483917236, + -0.027297360822558403, + 0.08843173831701279, + -0.010651818476617336, + 0.007872004061937332, + 0.003205550368875265, + 0.030235320329666138, + 0.0032833695877343416, + -0.010690047405660152, + 0.0394228920340538, + -0.04724261537194252, + -0.029683837667107582, + -0.10827863961458206, + -0.01731303334236145, + 0.0744597539305687, + 0.05686236172914505, + -0.010751672089099884, + -0.01789076253771782, + 0.027312718331813812, + 0.04443724825978279, + 0.05126935616135597, + 0.009915204718708992, + -0.07763157039880753, + -0.03819296136498451, + 0.035505738109350204, + -0.03219003230333328, + -0.08261101692914963, + -0.06743103265762329, + -0.08514389395713806, + -0.0011145754251629114, + 0.07265321165323257, + 0.03444145247340202, + -0.036303117871284485, + -0.042815353721380234, + -0.047577179968357086, + 0.03301556035876274, + 0.020382562652230263, + 0.07746828347444534, + 0.010379389859735966, + -0.027202967554330826, + -0.005128646269440651, + -0.04619415104389191, + -0.07342882454395294, + 0.07018330693244934, + -0.029955988749861717, + 0.010556206107139587, + 0.04700198024511337, + 0.01739715225994587, + 0.03962351009249687, + 0.0015477498527616262, + -0.05364200845360756, + 0.01816306822001934, + -0.08729516714811325, + 0.004356594756245613, + 0.012863232754170895, + -0.03561849147081375, + -0.05830511450767517, + -0.013552828691899776, + 0.04420468956232071, + 0.06778585910797119, + -0.049387700855731964, + -0.040153443813323975, + 0.008592342957854271, + 0.009357687085866928, + 0.08820469677448273, + -0.11084072291851044, + -0.06242302805185318, + -0.04173799231648445, + -0.07568130642175674, + 0.04235148802399635, + 0.02306712046265602, + 0.015134351328015327, + 0.004253236576914787, + -0.008267219178378582, + 0.012445133179426193, + -0.028298167511820793, + -0.0317198745906353, + 0.010773965157568455, + 0.012416863813996315, + -0.055852342396974564, + -0.06652004271745682, + -2.68172827175033e-34, + 0.07141999155282974, + 0.049329936504364014, + -0.048449836671352386, + -0.05813157558441162, + -0.0363030731678009, + 0.024129951372742653, + 0.01971307396888733, + 0.007846984080970287, + 0.07140012830495834, + -0.04298386722803116, + 0.08986102044582367, + 0.008991626091301441, + 0.026438701897859573, + -0.045349132269620895, + -0.038245949894189835, + -0.05099642276763916, + -0.007195382844656706, + 0.056738387793302536, + -0.054649028927087784, + 0.0480501763522625, + -0.045122984796762466, + -0.07939039170742035, + -0.04359610006213188, + 0.08853153139352798, + -0.06741731613874435, + 0.03654291853308678, + -0.008155624382197857, + 0.029688064008951187, + -0.013954908587038517, + -0.013510411605238914, + 0.009375968016684055, + 0.07052917033433914, + -0.02723357267677784, + 0.02152981050312519, + -0.017158955335617065, + -0.047501012682914734, + -0.002049713861197233, + 0.0800931379199028, + -0.028942929580807686, + -0.01688634790480137, + 0.09737475961446762, + 0.05580565333366394, + 0.04859078675508499, + 0.09232839941978455, + -0.06258407235145569, + 0.00610968004912138, + -0.002503027208149433, + -0.06131945922970772, + 0.021185386925935745, + 0.036281391978263855, + 0.015118704177439213, + -0.053810372948646545, + 0.05032646656036377, + -0.031978048384189606, + -0.021996790543198586, + -0.046478521078825, + 0.04822532832622528, + -0.05543293431401253, + -0.002425507176667452, + 0.059967055916786194, + 0.03537585958838463, + -0.012589133344590664, + -0.00992146972566843, + 0.0858035758137703, + 0.07621287554502487, + -0.01741754449903965, + -0.030169403180480003, + 0.08744589984416962, + 0.0996437594294548, + -0.024067040532827377, + 0.1203140839934349, + -0.02194216288626194, + -0.012216076254844666, + 0.02858760766685009, + 0.04193359985947609, + -0.08880279958248138, + 0.003158390987664461, + -0.01808655820786953, + -0.06031140312552452, + 0.052756261080503464, + 0.01385515183210373, + 0.030721737071871758, + -0.05106182396411896, + 0.07696833461523056, + -0.007802344858646393, + -0.014867691323161125, + -0.1079087033867836, + 0.047862131148576736, + 0.013215257786214352, + 0.022176586091518402, + 0.0035757189616560936, + 0.04188839718699455, + -0.00022106862161308527, + -0.0018282209057360888, + -0.013989352621138096, + -2.1326066246274422e-08, + -0.028107192367315292, + -0.08086343109607697, + -0.03557758033275604, + -0.014852202497422695, + 0.0754331648349762, + 0.011506499722599983, + -0.022815663367509842, + -0.11774716526269913, + -0.03040834330022335, + -0.04953279718756676, + 0.07041436433792114, + 0.06679137796163559, + -0.056883469223976135, + -0.09030196815729141, + -0.00020670938829425722, + 0.033817436546087265, + 0.03001718968153, + -0.010902260430157185, + -0.024460654705762863, + -0.004338007885962725, + -0.08301614969968796, + 0.012664634734392166, + -0.02823236584663391, + 0.0023709600791335106, + -0.011818084865808487, + 0.023908408358693123, + -0.04265350103378296, + 0.01619892381131649, + 0.06936655938625336, + 0.10680971294641495, + 0.0678396001458168, + 0.03308518975973129, + -0.009076433256268501, + 0.000369272573152557, + -0.1271793395280838, + 0.03449350595474243, + -0.07056788355112076, + 0.014163009822368622, + 0.01905512437224388, + 0.043718740344047546, + 0.03470480814576149, + 0.02885739877820015, + 0.03252415359020233, + 0.012134143151342869, + -0.026767969131469727, + -0.0006064125918783247, + 0.03334006667137146, + 0.003858117153868079, + -0.006915457081049681, + -0.04195038229227066, + -0.07485697418451309, + 0.08161009103059769, + 0.05234043300151825, + 0.10944389551877975, + -0.009589951485395432, + 0.032298311591148376, + 0.04820939898490906, + 0.03376539796590805, + -0.06617572903633118, + 0.04951415956020355, + 0.18550512194633484, + -0.0008489366737194359, + 0.08840469270944595, + 0.004225428681820631 + ], + "prohibit-inset-bold||forbidden,prohibited,cancelled,prevent,stop,do not enter": [ + -0.01094542071223259, + 0.0612262599170208, + -0.061468660831451416, + -0.02634361758828163, + 0.04629365727305412, + -0.028942978009581566, + 0.055454205721616745, + -0.07925757765769958, + 0.0015626164386048913, + -0.02359209768474102, + 0.04327055811882019, + 0.06957449018955231, + 0.04100356251001358, + -0.009398174472153187, + -0.024301234632730484, + 0.0075997780077159405, + 0.03547484427690506, + -0.016266362741589546, + 0.00436893105506897, + -0.008346405811607838, + 0.09471125900745392, + 0.06403227895498276, + -0.028061222285032272, + 0.05274196341633797, + -0.08610963076353073, + -0.011225503869354725, + -0.022165054455399513, + 0.056895166635513306, + 0.01177944429218769, + -0.05792967975139618, + -0.06184711679816246, + 0.014623129740357399, + 0.05789538100361824, + 0.026171207427978516, + 0.03649258241057396, + -0.07096997648477554, + -0.017274625599384308, + -0.04186064004898071, + -0.029799140989780426, + -0.05695350095629692, + -0.010640117339789867, + -0.05435479059815407, + -0.0787867084145546, + 0.011229029856622219, + -0.026949329301714897, + -0.011350300163030624, + -0.1285303384065628, + -0.01957477629184723, + 0.02471550926566124, + 0.017142102122306824, + -0.022940799593925476, + 0.015769347548484802, + -0.04954223707318306, + 0.0007832937990315259, + 0.02632264792919159, + -0.03798478841781616, + -0.047897543758153915, + 0.0011872610775753856, + 0.04085249826312065, + 0.011606442742049694, + -0.011609474197030067, + 0.013937892392277718, + -0.05193178728222847, + 0.034864310175180435, + -0.05843004211783409, + 0.06553386151790619, + -0.0643952414393425, + 0.036394957453012466, + -0.01266496628522873, + 0.12803393602371216, + -0.005787312053143978, + -0.051464732736349106, + -0.06463896483182907, + 0.03282804787158966, + 0.013352402485907078, + -0.0015549830859526992, + -0.041954297572374344, + -0.00722062261775136, + -0.02448223903775215, + -0.10062407702207565, + -0.0703456923365593, + -0.10919997096061707, + 0.061930615454912186, + 0.026340529322624207, + 0.007905052043497562, + 0.06743326038122177, + -0.04168707877397537, + 0.012062151916325092, + 0.06131194904446602, + 0.04842638596892357, + -0.047748059034347534, + -0.05928793549537659, + 0.0714346244931221, + 0.04351455718278885, + -0.07071425020694733, + -0.01962706819176674, + 0.02145335078239441, + -0.07228796929121017, + -0.08991357684135437, + 0.05745638161897659, + 0.04319563880562782, + 0.012139806523919106, + -0.03097382001578808, + 0.01017836481332779, + 0.002898268634453416, + -0.07361873984336853, + 0.07277943938970566, + -0.006448762957006693, + 0.006909858901053667, + -0.009622974321246147, + -0.041174206882715225, + -0.032848671078681946, + 0.07945586740970612, + -0.09658560156822205, + -0.05612754821777344, + 0.05855850875377655, + -0.015794115141034126, + 0.04668424651026726, + 0.1200757622718811, + 0.02888580784201622, + 0.0068778363056480885, + -0.00894397497177124, + -0.003010750748217106, + -0.058096468448638916, + -0.011621450074017048, + -0.06645163148641586, + 0.016256006434559822, + -1.6801555651363965e-33, + 0.04651361331343651, + 0.044093795120716095, + -0.08687904477119446, + 0.024653129279613495, + 0.02002853900194168, + 0.01205398328602314, + -0.08715738356113434, + -0.0034064806532114744, + -0.10890393704175949, + 0.11118108034133911, + 0.07390610873699188, + -0.0611332431435585, + 0.014920730143785477, + 0.04804280027747154, + 0.15701188147068024, + -0.02869202382862568, + 0.07319290190935135, + 0.028696401044726372, + -0.00017000474326778203, + -0.0016981394728645682, + 0.02414829470217228, + 0.008060666732490063, + -0.004884458612650633, + 0.010815499350428581, + -0.02608315646648407, + 0.005557612981647253, + -0.07111803442239761, + -0.031594790518283844, + 0.05823695287108421, + 0.055100228637456894, + 0.0010311708319932222, + -0.004165132995694876, + 0.0364411324262619, + 0.055417269468307495, + 0.04674245044589043, + 0.013215044513344765, + -0.05779320374131203, + -0.04698114097118378, + 0.03184394910931587, + -0.02659602276980877, + -0.08849509060382843, + -0.08970195055007935, + -0.05740822106599808, + -0.006167436949908733, + 0.06302319467067719, + 0.05313624441623688, + -0.019559230655431747, + -0.0094921188428998, + -0.024013642221689224, + 0.02410554699599743, + -0.011854326352477074, + 0.10616562515497208, + 0.02355080470442772, + -0.01749907247722149, + -0.007811388466507196, + -0.04100795090198517, + -0.08570928871631622, + 0.07084189355373383, + -0.008374768309295177, + -0.006043123546987772, + 0.04260051250457764, + 0.007119186222553253, + 0.037650998681783676, + 0.004206697456538677, + -0.03717948496341705, + 0.016709139570593834, + -0.10742216557264328, + -0.03527393564581871, + 0.0028476077131927013, + -0.06086849048733711, + -0.0725819543004036, + -0.014439783059060574, + 0.05076288431882858, + 0.06231698766350746, + -0.05872797966003418, + -0.05321834608912468, + 0.009094336070120335, + 0.013813610188663006, + 0.07520800828933716, + -0.1045902818441391, + -0.01747252233326435, + -0.04848913848400116, + -0.061106126755476, + 0.009512283839285374, + 0.047860752791166306, + 0.002139891032129526, + -0.00011535902012838051, + 0.021144147962331772, + 0.019445190206170082, + 0.011360283941030502, + -0.015822293236851692, + -0.003502598963677883, + -0.0030681078787893057, + -0.051011309027671814, + -0.08086270093917847, + -3.1331181024660885e-34, + 0.047198086977005005, + 0.0260794498026371, + -0.038991931825876236, + -0.04107695072889328, + -0.021023256704211235, + 0.0278786551207304, + 0.03782309591770172, + 0.04719489812850952, + 0.08445406705141068, + -0.05373065173625946, + 0.1066703125834465, + 0.02834237553179264, + 0.022330494597554207, + -0.07669400423765182, + -0.06872718781232834, + -0.031446103006601334, + -0.03761269152164459, + 0.06641506403684616, + -0.033425234258174896, + 0.020375585183501244, + -0.046956758946180344, + -0.11529359221458435, + -0.05598292127251625, + 0.1033133864402771, + -0.06765732169151306, + 0.021680155768990517, + -0.007061881944537163, + 0.03573232144117355, + -0.02667308785021305, + -0.018632343038916588, + 0.007319746073335409, + 0.06528148055076599, + -0.033886656165122986, + 0.024322936311364174, + -0.019559750333428383, + -0.04036402329802513, + 0.02038719318807125, + 0.07697941362857819, + -0.062253981828689575, + -0.02604483999311924, + 0.07561353594064713, + 0.046950746327638626, + 0.04361112043261528, + 0.07417871057987213, + -0.05215342342853546, + 0.010372207500040531, + -0.01972089521586895, + -0.051021985709667206, + 0.02011152170598507, + 0.05920473486185074, + -0.002157959621399641, + -0.03490511327981949, + 0.07822298258543015, + -0.022394882515072823, + -0.027560461312532425, + -0.07597178965806961, + 0.03354804217815399, + -0.06967335194349289, + -0.028670741245150566, + 0.05905968323349953, + 0.05297118425369263, + -0.005647376645356417, + 0.001390361227095127, + 0.08314723521471024, + 0.10434408485889435, + -0.02898390032351017, + -0.023511724546551704, + 0.09291808307170868, + 0.07840757817029953, + -0.04228091239929199, + 0.1121874675154686, + -0.03909209370613098, + -0.004685410298407078, + 0.003427795832976699, + 0.04330378398299217, + -0.10682249069213867, + 0.007729202508926392, + -0.05001109838485718, + -0.06626252084970474, + 0.05663750320672989, + 0.03882486745715141, + 0.010372506454586983, + -0.047546397894620895, + 0.076819509267807, + -0.01599792391061783, + 0.011510316282510757, + -0.1051819771528244, + 0.06976484507322311, + 0.007360443007200956, + 0.029694953933358192, + -0.015202845446765423, + 0.055570632219314575, + 0.02423979341983795, + 0.031575243920087814, + -0.02744479291141033, + -2.202127369343998e-08, + -0.012021849863231182, + -0.08767340332269669, + -0.004900412634015083, + -0.034861236810684204, + 0.05775986239314079, + -0.0009166651871055365, + 0.0056000673212111, + -0.11853142827749252, + -0.04142269864678383, + -0.06577883660793304, + 0.04362428933382034, + 0.06868896633386612, + -0.040012989193201065, + -0.08958113193511963, + -0.006186311133205891, + 0.004231923259794712, + 0.027608659118413925, + 0.017617875710129738, + -0.023649942129850388, + -0.022411340847611427, + -0.055852413177490234, + 0.002457939786836505, + -0.012409588322043419, + -0.019876740872859955, + -0.007689294405281544, + 0.04315762594342232, + -0.048223793506622314, + 0.002938186516985297, + 0.0699663981795311, + 0.1271996945142746, + 0.021257029846310616, + 0.03309077024459839, + 0.015639685094356537, + -0.010557164438068867, + -0.12407480925321579, + 0.04148617759346962, + -0.08868599683046341, + 0.013159334659576416, + 0.020246975123882294, + -0.005840992089360952, + 0.02544577606022358, + 0.02402348257601261, + 0.03219519183039665, + 0.01226771716028452, + -0.029655147343873978, + -0.006441958714276552, + 0.05341401696205139, + 0.014277047477662563, + -0.024623554199934006, + -0.040853459388017654, + -0.07591549307107925, + 0.06792578101158142, + 0.056492455303668976, + 0.11242104321718216, + 0.0011576663237065077, + 0.0182975884526968, + 0.05556657537817955, + 0.056188374757766724, + -0.006758206058293581, + 0.06147603690624237, + 0.13292741775512695, + 0.008108125999569893, + 0.07781102508306503, + 0.01516110822558403 + ], + "projector-screen-bold||projection,presentation,slideshow,movies,charts,statistics,analyze,analysis": [ + -0.03837667033076286, + -0.033722080290317535, + -0.06789810955524445, + -0.05552861839532852, + 0.029479650780558586, + -0.008916864171624184, + -0.0020257453434169292, + 0.020000793039798737, + 0.045771315693855286, + -0.0002127015177393332, + 0.002780154813081026, + 0.001875347108580172, + 0.06381010264158249, + 0.05131024494767189, + -0.05347810685634613, + -0.021603131666779518, + 0.04622678831219673, + -0.016408652067184448, + 0.060514260083436966, + -0.006056137382984161, + 0.050991982221603394, + -0.00681772967800498, + 0.01807330548763275, + -0.028141088783740997, + 0.10766493529081345, + 0.02300223521888256, + 0.05837402120232582, + 0.03965713828802109, + -0.008779776282608509, + -0.04257899895310402, + -0.0843777060508728, + 0.01753438636660576, + 0.11469727754592896, + 0.03442847728729248, + 0.016148198395967484, + -0.03343662619590759, + 0.00756085803732276, + -0.012709884904325008, + -0.07608924806118011, + 0.03480689600110054, + -0.04572572559118271, + -0.02853829599916935, + 0.020507436245679855, + -0.024257468059659004, + -0.016156423836946487, + -0.06389962136745453, + -0.06671078503131866, + -0.054709069430828094, + 0.029690951108932495, + -0.03855717182159424, + -0.058292560279369354, + -0.03733900934457779, + -0.1047215685248375, + -0.0001411230769008398, + 0.03384462371468544, + -0.0163559690117836, + -0.007365919649600983, + -0.006210270803421736, + 0.09847690165042877, + 0.007593742571771145, + 0.026252785697579384, + 0.03159261867403984, + 0.022712063044309616, + 0.07868196070194244, + 0.09405488520860672, + 0.031542371958494186, + 0.01655450277030468, + 0.0420428067445755, + -0.011958303861320019, + -0.00032282338361255825, + -0.07380196452140808, + 0.012044393457472324, + 0.048471156507730484, + -0.11314520239830017, + 0.0002440919488435611, + -0.058448150753974915, + -0.009538679383695126, + -0.06433454155921936, + -0.04084720090031624, + -0.07640078663825989, + -0.0030967078637331724, + -0.04321467503905296, + -0.05316893383860588, + 0.06646440178155899, + 0.06538551300764084, + 0.048355814069509506, + -0.03432724252343178, + -0.006148511543869972, + -0.00898018293082714, + 0.009120206348598003, + -0.1024579405784607, + -0.07800795137882233, + -0.10421628504991531, + 0.06055879220366478, + -0.032817669212818146, + -0.04791983589529991, + -0.0039657424204051495, + -0.12299899756908417, + 0.019534511491656303, + 0.06571659445762634, + -0.0007828317466191947, + -0.03223013877868652, + 0.11286340653896332, + -0.01042075827717781, + -0.11860882490873337, + -0.05504300445318222, + 0.036839891225099564, + 0.009982269257307053, + -0.0031394073739647865, + 0.03893878683447838, + 0.016666866838932037, + -0.030988996848464012, + -0.09048228710889816, + -0.03500265255570412, + 0.05196675285696983, + -0.04847186058759689, + -0.0571877583861351, + 0.03919260576367378, + 0.10702037811279297, + -0.023716073483228683, + 0.010153966955840588, + 0.013935357332229614, + -0.013646671548485756, + -0.012033368460834026, + -0.006011535879224539, + 0.013238939456641674, + -0.035106949508190155, + -1.186630047579917e-33, + 0.05136020854115486, + -0.01150618027895689, + -0.0464479960501194, + 0.11004394292831421, + -0.018471140414476395, + 0.047428350895643234, + -0.05212244391441345, + 0.0774354487657547, + 0.00010436705633765087, + -0.002128324471414089, + 0.0986122265458107, + 0.0874401181936264, + -0.04481486976146698, + 0.1051924079656601, + 0.07617643475532532, + -0.04917297139763832, + 0.04006139189004898, + 0.07777798175811768, + -0.12522965669631958, + 0.0005678809247910976, + -0.062369655817747116, + 0.03716643527150154, + 0.0006876977276988328, + -0.025917481631040573, + 0.02895088866353035, + 0.032938696444034576, + 0.02386649325489998, + 0.028201863169670105, + -0.13401274383068085, + 0.00723625672981143, + 0.024012282490730286, + 0.028120309114456177, + 0.0659981518983841, + -0.009517683647572994, + -0.013427140191197395, + -0.04512619972229004, + -0.0575600266456604, + -0.037149056792259216, + 0.04130956158041954, + 0.035851024091243744, + -0.16058693826198578, + 0.04814273118972778, + -0.03610856086015701, + 0.032563239336013794, + -0.004635445307940245, + 0.10032093524932861, + 0.001768863876350224, + 0.0014452663017436862, + 0.044926516711711884, + 0.04358411207795143, + -0.06283727288246155, + -0.003949394915252924, + -0.009531962685286999, + -0.11857163906097412, + 0.01670393906533718, + -0.020180486142635345, + -0.0019474521977826953, + 0.02342206984758377, + 0.04964654520153999, + -0.05441608652472496, + -0.034941207617521286, + 0.0662548765540123, + -0.04553325101733208, + -0.05613412708044052, + -0.04788433760404587, + 0.11764678359031677, + -0.029114674776792526, + 0.013495965860784054, + 0.02772170677781105, + 0.02667536400258541, + -0.06865183264017105, + 0.07423748821020126, + 0.06020990014076233, + 0.04002219811081886, + 0.046186722815036774, + 0.07852835208177567, + -0.02967413328588009, + 0.046965084969997406, + -0.06622567772865295, + -0.0004499307833611965, + -0.13429062068462372, + -0.03606807440519333, + -0.001338307629339397, + 0.00338927423581481, + -0.07703200727701187, + 5.225136919762008e-05, + -0.05628414452075958, + -0.05899885296821594, + -0.014561074785888195, + 0.042756255716085434, + -0.0750245451927185, + -0.01862739585340023, + -0.06744790077209473, + -0.0073960148729383945, + -0.10263372957706451, + -1.3390873486132483e-33, + 0.024303795769810677, + 0.013725701719522476, + -0.057549796998500824, + -0.03682371601462364, + 0.012389161624014378, + 0.001349259284324944, + 0.017284076660871506, + 0.01385618094354868, + 0.06081727147102356, + 0.016163747757673264, + 0.04627855867147446, + -0.021354902535676956, + -0.07785926014184952, + -0.057548683136701584, + 0.004135469906032085, + 0.05637538805603981, + -0.017906073480844498, + -0.027869492769241333, + -0.10937545448541641, + 0.0256035216152668, + -0.03625020012259483, + 0.08167430758476257, + -0.04323011636734009, + -0.024539537727832794, + 0.023904891684651375, + 0.005188758485019207, + -0.00496214535087347, + -0.07243550568819046, + -0.039264801889657974, + -0.017720816656947136, + -0.006626326125115156, + -0.09464099258184433, + -0.01727467216551304, + 0.04499303549528122, + -0.03337196260690689, + 0.0687575563788414, + 0.06550700217485428, + -0.10416670143604279, + -0.03874983638525009, + 0.009367135353386402, + 0.009387325495481491, + 0.08433100581169128, + 0.01226202305406332, + 0.053049441426992416, + 0.00343974307179451, + 0.03336604684591293, + -0.003211332717910409, + -0.011443381197750568, + -0.006111942697316408, + 0.046005234122276306, + -0.004564524628221989, + 0.02965374104678631, + 0.022939743474125862, + -0.10791867971420288, + 0.02840249240398407, + -0.10975636541843414, + -0.01639890857040882, + 0.007512583397328854, + -0.04119449481368065, + 0.028757857158780098, + 0.04167424514889717, + -0.028612811118364334, + -0.05958045646548271, + -0.012792849913239479, + -0.05176570266485214, + 0.009433288127183914, + 0.027563469484448433, + 0.0024506195914000273, + 0.0599115826189518, + 0.02583833411335945, + 0.04524180665612221, + -0.02799997851252556, + 0.04267970472574234, + 0.029580039903521538, + -0.022170215845108032, + -0.045304909348487854, + 0.01058131642639637, + 0.04405806213617325, + 0.03942303732037544, + 0.044211599975824356, + 0.024746278300881386, + 0.009801482781767845, + 0.030905529856681824, + 0.03555823490023613, + 0.040848590433597565, + 0.10192763805389404, + 0.003766265232115984, + -0.010357611812651157, + 0.05067289248108864, + 0.011724431067705154, + -0.03955172374844551, + 0.05393208563327789, + 0.00805360171943903, + 0.017121892422437668, + -0.003952528815716505, + -2.1163213403951886e-08, + -0.0004399484605528414, + -0.006426448002457619, + 0.020929282531142235, + -0.07582017034292221, + -0.055135563015937805, + -0.10891896486282349, + 0.04289913550019264, + 0.016506241634488106, + -0.0017682001926004887, + -0.059161875396966934, + 0.06639650464057922, + -0.025812599807977676, + -0.028926178812980652, + -0.014132597483694553, + 0.02167360857129097, + 0.0017902281833812594, + 0.02092764526605606, + 0.05824606120586395, + 0.0030277699697762728, + -0.07073152810335159, + 0.015061838552355766, + 0.00882693286985159, + 0.055728886276483536, + -0.007898679934442043, + 0.003094772808253765, + 0.023942040279507637, + -0.041132304817438126, + 0.00807778537273407, + 0.03338217735290527, + 0.016124140471220016, + 0.02138540893793106, + 0.04923243448138237, + -0.07080354541540146, + -0.06497421860694885, + 0.010309453122317791, + 0.031375106424093246, + -0.054128751158714294, + 0.005121918860822916, + 0.06281524151563644, + 0.15528574585914612, + -0.028740055859088898, + -0.0655900239944458, + -0.0007191626355051994, + 0.052486665546894073, + 0.06670838594436646, + 0.06692536920309067, + 0.0034669749438762665, + -0.05797579884529114, + -0.06716446578502655, + -0.10710838437080383, + -0.05271543189883232, + 0.010417439974844456, + -0.04080946370959282, + 0.038279421627521515, + 0.043114349246025085, + -0.018404383212327957, + 0.11497817933559418, + 0.03533076494932175, + -0.05016998574137688, + 0.008917910046875477, + 0.0954941138625145, + 0.078274205327034, + -0.041549526154994965, + 0.03854532539844513 + ], + "projector-screen-chart-bold||projection,presentation,slideshow,graphs,graphing,charts,statistics,analyze,analysis": [ + -0.029951779171824455, + -0.026465270668268204, + -0.04380722716450691, + -0.05380434915423393, + 0.014893091283738613, + -0.030825022608041763, + -0.018944788724184036, + 0.047020189464092255, + 0.020788617432117462, + 0.022657543420791626, + 0.02242054045200348, + -0.018134482204914093, + 0.07065361738204956, + 0.06866087764501572, + -0.030726423487067223, + 0.0002484169090166688, + 0.029280131682753563, + -0.04240823909640312, + 0.07127275317907333, + -0.03416253253817558, + 0.020673777908086777, + -0.022752784192562103, + 0.00468665175139904, + -0.03295910730957985, + 0.1295025497674942, + 0.03390089049935341, + 0.030703555792570114, + 0.023699268698692322, + 0.026384368538856506, + -0.035172536969184875, + -0.10035853832960129, + 0.0034458967857062817, + 0.11852924525737762, + 0.029028313234448433, + 0.0012428847840055823, + -0.022380825132131577, + 0.0474310927093029, + -0.002753098029643297, + -0.05394526198506355, + 0.05589408054947853, + -0.051491037011146545, + -0.03188103064894676, + 0.014263462275266647, + -0.013805112801492214, + 0.002783102449029684, + -0.03997930884361267, + -0.11294171214103699, + -0.061035893857479095, + 0.016238685697317123, + 0.002296919235959649, + -0.07277911901473999, + -0.05548284202814102, + -0.10382645577192307, + -0.018954547122120857, + 0.061295755207538605, + -0.005843076389282942, + -0.019560763612389565, + -0.010902398265898228, + 0.11375900357961655, + 0.00793254841119051, + 0.029297715052962303, + 0.0278144683688879, + -0.0032801989000290632, + 0.08691735565662384, + 0.08739017695188522, + 0.03286123648285866, + -0.0015602329513058066, + 0.06253848224878311, + -0.002270944882184267, + 0.0297587551176548, + -0.048304084688425064, + -0.021656153723597527, + 0.01718863658607006, + -0.09041110426187515, + 0.007440810091793537, + -0.04041259363293648, + -0.022439593449234962, + -0.0579780712723732, + -0.05017339438199997, + -0.10175498574972153, + -0.013930750079452991, + -0.01813717558979988, + -0.06593989580869675, + 0.08855946362018585, + 0.02970273047685623, + 0.042908232659101486, + -0.04075348377227783, + -0.018569791689515114, + 0.02015812136232853, + -0.0032546957954764366, + -0.08695034682750702, + -0.059142205864191055, + -0.1040123850107193, + 0.07283104211091995, + -0.020843127742409706, + -0.011037489399313927, + 0.00879271887242794, + -0.10609879344701767, + 0.009919731877744198, + 0.07196041196584702, + -0.00021379419195000082, + -0.05991484597325325, + 0.10114215314388275, + -0.01097797229886055, + -0.12433800101280212, + -0.044297363609075546, + 0.003511598566547036, + 0.013732070103287697, + -0.007504240609705448, + 0.03472745046019554, + 0.009247228503227234, + -0.015735385939478874, + -0.0951891764998436, + -0.01630713790655136, + 0.05390762537717819, + -0.05155891925096512, + -0.06308434158563614, + 0.008524774573743343, + 0.09446392208337784, + -0.005658888258039951, + -0.004099417012184858, + 0.05026721954345703, + -0.00247134268283844, + -0.011764767579734325, + -0.022437116131186485, + 0.009660321287810802, + -0.05465428903698921, + -1.753288946172805e-33, + 0.049230657517910004, + -0.014223375357687473, + -0.043059684336185455, + 0.09657487273216248, + 0.008903425186872482, + 0.03559746593236923, + -0.08815363794565201, + 0.05905730277299881, + 0.02306503802537918, + 0.019519194960594177, + 0.07311159372329712, + 0.11753448098897934, + -0.0360015369951725, + 0.12040392309427261, + 0.09897474944591522, + -0.04598220810294151, + 0.08058629930019379, + 0.055841654539108276, + -0.12147331237792969, + -0.03074442781507969, + -0.058483343571424484, + 0.022677673026919365, + 0.023975402116775513, + 0.0026098412927240133, + 0.05922996997833252, + 0.06808964163064957, + 0.030702734366059303, + 0.021826770156621933, + -0.1171414852142334, + 0.004981929436326027, + 0.011512297205626965, + 0.030930742621421814, + 0.04910871013998985, + 0.000742100237403065, + -0.029830697923898697, + -0.05147913843393326, + -0.05650133267045021, + -0.05440888926386833, + 0.031211620196700096, + 0.02994733490049839, + -0.13869637250900269, + 0.03294532373547554, + -0.03219849616289139, + 0.03151309862732887, + -0.0041992682963609695, + 0.08916176110506058, + -0.003449368756264448, + -0.009546108543872833, + 0.06174556165933609, + 0.016311151906847954, + -0.09972496330738068, + 0.01047381479293108, + -0.007146462798118591, + -0.08835922181606293, + 0.020610636100172997, + -0.034891873598098755, + 0.01730281300842762, + 0.02732488512992859, + 0.015798477455973625, + -0.016268238425254822, + -0.030827010050415993, + 0.07940996438264847, + -0.03405531123280525, + -0.05108642578125, + -0.050854943692684174, + 0.10237709432840347, + -0.07142020761966705, + -0.009286672808229923, + 0.03488261252641678, + 0.019303567707538605, + -0.09464447945356369, + 0.07478490471839905, + 0.07379136234521866, + 0.02712167426943779, + 0.05759753659367561, + 0.06334979832172394, + -0.049392908811569214, + 0.028716038912534714, + -0.09824372082948685, + 0.018731510266661644, + -0.1533142328262329, + -0.0763172134757042, + -0.015256163664162159, + -0.0047493488527834415, + -0.0676586776971817, + -0.03312407433986664, + -0.019775059074163437, + -0.013165496289730072, + -0.0053011467680335045, + 0.029532788321375847, + -0.08286458998918533, + -0.004724129568785429, + -0.055611807852983475, + 0.01540302112698555, + -0.0835256576538086, + -8.912024196083596e-34, + -0.012051256373524666, + 0.06727324426174164, + -0.019274316728115082, + 0.0011786030372604728, + 0.020874865353107452, + 0.022693635895848274, + 0.01917341910302639, + 0.0013036512536928058, + 0.042901817709207535, + 0.0402524471282959, + 0.028186136856675148, + -0.04200677573680878, + -0.06224745884537697, + -0.04048638045787811, + -0.003968731965869665, + 0.05406348034739494, + -0.02595173753798008, + -0.027749456465244293, + -0.12410705536603928, + 7.718806955381297e-06, + -0.031070951372385025, + 0.09887856990098953, + -0.08164884150028229, + -0.03454941511154175, + 0.0567900575697422, + 0.016203396022319794, + -0.008054652251303196, + -0.09199739992618561, + -0.039549894630908966, + 0.011140949092805386, + -0.030171433463692665, + -0.1053818017244339, + -0.0006226914119906723, + 0.01360707450658083, + -0.01258109137415886, + 0.06971818208694458, + 0.08827494084835052, + -0.08284947276115417, + -0.05827620252966881, + 0.0013178872177377343, + 0.012632661499083042, + 0.03649980574846268, + 0.02268148399889469, + 0.03586022928357124, + -0.007446985226124525, + 0.0506938211619854, + -0.020924635231494904, + -0.0021256585605442524, + -0.031983405351638794, + 0.03785300254821777, + 0.005843826569616795, + 0.03824276104569435, + 0.06219317018985748, + -0.11521105468273163, + 0.033369891345500946, + -0.1295069307088852, + 0.006031734403222799, + 0.026843173429369926, + -0.06853549182415009, + 0.010198969393968582, + 0.016963595524430275, + -0.04757757857441902, + -0.03335931524634361, + -0.02218824252486229, + -0.06035635247826576, + 0.0002945750020444393, + 0.023679381236433983, + -0.030793186277151108, + 0.03910544887185097, + 0.020022593438625336, + 0.03853918984532356, + -0.00727814668789506, + 0.04274493083357811, + 0.007659342139959335, + -0.003014554735273123, + -0.04068639501929283, + -0.009654049761593342, + 0.060447707772254944, + 0.03439478576183319, + 0.041958048939704895, + 0.028161872178316116, + 0.004232603590935469, + 0.023264486342668533, + 0.07014286518096924, + 0.03655463084578514, + 0.09885687381029129, + -0.006409591995179653, + -0.004650087561458349, + 0.0613371916115284, + 0.00974592287093401, + -0.029872477054595947, + 0.052605658769607544, + -0.014012382365763187, + 0.06962418556213379, + 0.002139525953680277, + -2.1941854555507234e-08, + -0.0009793026838451624, + 0.003735737409442663, + 0.020235814154148102, + -0.08071063458919525, + -0.01234951987862587, + -0.0758720263838768, + 0.06462042778730392, + 0.038436561822891235, + -0.019713446497917175, + -0.0008153399103321135, + 0.09903231263160706, + -0.020262591540813446, + -0.033974647521972656, + -0.024157723411917686, + 0.020219482481479645, + -0.02542392536997795, + 0.018695369362831116, + 0.061606086790561676, + 0.020000359043478966, + -0.07326271384954453, + 0.006772758439183235, + -0.013163067400455475, + 0.03944247588515282, + 0.013167246244847775, + -0.00029289728263393044, + -0.022990688681602478, + -0.021602075546979904, + 0.021002091467380524, + 0.001317173126153648, + 0.01335468702018261, + 0.015388608910143375, + 0.031213751062750816, + -0.030069807544350624, + -0.05195588245987892, + 0.011492889374494553, + 0.02122490108013153, + -0.07114969193935394, + 0.0033529673237353563, + 0.04713002219796181, + 0.1489957571029663, + -0.0401901938021183, + -0.015169910155236721, + -0.007276520598679781, + 0.049623627215623856, + 0.06123720481991768, + 0.07697834819555283, + -0.0031915325671434402, + -0.029667649418115616, + -0.0355856753885746, + -0.10138291865587234, + -0.06953269243240356, + -0.010628391057252884, + -0.02614964172244072, + 0.006925446912646294, + 0.05836503580212593, + 0.01900702714920044, + 0.08487709611654282, + 0.00916599202901125, + -0.03666233643889427, + 0.024270009249448776, + 0.07224765419960022, + 0.05475399270653725, + -0.056040436029434204, + -0.008268652483820915 + ], + "pulse-bold||activity,heartbeat,medical,ecg,ekg,vitals,monitor,medicine": [ + -0.012000888586044312, + -0.041435495018959045, + -0.03243469446897507, + -0.005595023278146982, + 0.01898573711514473, + 0.013390851207077503, + 0.003634462831541896, + -0.043505653738975525, + 0.0028566867113113403, + -0.04726211726665497, + 0.03902672976255417, + -0.06288381665945053, + -0.00620998814702034, + -0.03414721041917801, + -0.020606571808457375, + -0.02481106109917164, + -0.007626628968864679, + -0.013111181557178497, + -0.021750038489699364, + 0.04604719951748848, + 0.015708642080426216, + 0.02647886425256729, + 0.03912138193845749, + 0.04524902626872063, + -0.016511723399162292, + 0.030026238411664963, + 0.012300483882427216, + -0.01020784117281437, + 0.01055055484175682, + -0.06817944347858429, + 0.05646371468901634, + -0.03126729652285576, + 0.12152523547410965, + 0.06532003730535507, + 0.0038188647013157606, + 0.024659669026732445, + 0.07698752731084824, + 0.004724354483187199, + -0.02863415703177452, + 0.05012964829802513, + 0.06549438089132309, + -0.12117324769496918, + 0.009233052842319012, + 0.013073116540908813, + 0.043126754462718964, + 0.012701478786766529, + -0.05664106458425522, + -0.09737436473369598, + -0.026296887546777725, + -0.0063136545941233635, + -0.07967806607484818, + -0.08639878779649734, + -0.0637473315000534, + 0.09570431709289551, + 0.07559400796890259, + 0.015955224633216858, + -0.08855188637971878, + -0.028797468170523643, + 0.0371725857257843, + -0.0474679060280323, + -0.056620415300130844, + 0.025602253153920174, + 0.06287325918674469, + 0.027237338945269585, + -0.027563218027353287, + 0.014734940603375435, + -0.0004127303836867213, + 0.06027818098664284, + 0.010966084897518158, + 0.025123372673988342, + 0.011217042803764343, + -0.05165742710232735, + 0.03675541281700134, + -0.009458303451538086, + -0.07800409197807312, + -0.012313205748796463, + -0.009850404225289822, + -0.04191691055893898, + -0.05982036143541336, + -0.059530165046453476, + -0.04249707609415054, + -0.0766601711511612, + -0.09597558528184891, + 0.0033728638663887978, + 0.05150653049349785, + 0.09033824503421783, + -0.05801478773355484, + -0.06919863075017929, + -0.09739527106285095, + -0.037190694361925125, + 0.0038488898426294327, + -0.07423266023397446, + 0.06212940067052841, + 0.019506607204675674, + 0.004200982395559549, + 0.0350998155772686, + 0.023535393178462982, + -0.019877364858984947, + 0.049746401607990265, + -0.01565869338810444, + 0.02809254638850689, + 0.024033326655626297, + -0.03759276494383812, + 0.08585847914218903, + -0.05114790052175522, + -0.060716662555933, + -0.04292023554444313, + 0.00975862704217434, + 0.04049323499202728, + 0.05738963931798935, + 0.05199744552373886, + -0.028480900451540947, + -0.010476143099367619, + -0.03259027376770973, + 0.07048341631889343, + 0.06922402232885361, + -0.06141180172562599, + 0.01807272993028164, + 0.11621622741222382, + 0.08457254618406296, + 0.003525705775246024, + -0.08507263660430908, + -0.012811499647796154, + -0.08576352894306183, + 0.008733800612390041, + 0.03408742696046829, + 0.012736187316477299, + -1.1921847175650331e-33, + 0.06327110528945923, + -0.009644978679716587, + 0.017572419717907906, + 0.03405781462788582, + -0.04656339809298515, + 0.026954544708132744, + -0.04764319211244583, + -0.05365926772356033, + 0.051388174295425415, + 0.05295814946293831, + -0.009130927734076977, + 0.13140858709812164, + -0.00804920308291912, + 0.10545390099287033, + -0.04129048064351082, + -0.03108108416199684, + -0.044141750782728195, + 0.015435906127095222, + -0.05917922779917717, + -0.0004920196952298284, + -0.041903894394636154, + 0.01050429604947567, + -0.06233338266611099, + 0.046798016875982285, + -0.0006322624976746738, + 0.04706922918558121, + 0.0035525669809430838, + 0.010743511840701103, + -0.03338722884654999, + -0.008364919573068619, + 0.0016305004246532917, + 0.0096092838793993, + -0.012119142338633537, + -0.05414453148841858, + 0.01261016633361578, + 0.07243617624044418, + -0.05908376723527908, + 0.021781867370009422, + -0.03314753994345665, + -0.01752481982111931, + -0.05521359294652939, + -0.02644040435552597, + -0.031492702662944794, + -0.023750437423586845, + 0.05291890352964401, + 0.05612882599234581, + -0.0048035443760454655, + -0.01566021516919136, + 0.07384544610977173, + -0.031192196533083916, + -0.023868197575211525, + -0.0879158303141594, + 0.06601720303297043, + -0.07403624802827835, + 0.0382733978331089, + 0.05739525333046913, + 0.014281310141086578, + 0.10139882564544678, + -0.032442063093185425, + 0.04802105948328972, + 0.018103191629052162, + -0.0062285675667226315, + 0.05502856522798538, + -0.057918064296245575, + -0.004666061140596867, + 0.07730786502361298, + -0.12943799793720245, + -0.03164864331483841, + 0.039239466190338135, + 0.0417046919465065, + -0.00658904854208231, + 0.08195582032203674, + 0.067432701587677, + -0.005296668037772179, + 0.05946759134531021, + 0.06861507892608643, + -0.04761437699198723, + 0.0652080625295639, + -0.085084468126297, + -0.05170600488781929, + -0.07262099534273148, + -0.0076562101021409035, + -0.017324306070804596, + 0.09727808833122253, + 0.032074373215436935, + -0.0038252267986536026, + -0.01042699720710516, + -0.022410213947296143, + -0.10082944482564926, + 0.027045294642448425, + -0.08187630772590637, + 0.08618324249982834, + -0.003565372433513403, + -0.02011893130838871, + -0.13330227136611938, + -2.8786969520744935e-33, + 0.01575659215450287, + 0.08274772763252258, + -0.05090164393186569, + -0.013405347242951393, + 0.01839931309223175, + 0.04157393053174019, + 0.058849409222602844, + 0.04961664229631424, + 0.04686972126364708, + 0.0164219718426466, + 0.06841305643320084, + -0.049682095646858215, + -0.08800318092107773, + -0.05871753394603729, + -0.06891799718141556, + 0.04333392158150673, + -0.06654506921768188, + 0.020011385902762413, + -0.01704380102455616, + 0.07412566244602203, + -0.10642227530479431, + -0.056573186069726944, + -0.01954227313399315, + 0.10765613615512848, + 0.03285437449812889, + 0.05412435904145241, + 0.008768741972744465, + -0.038158487528562546, + -0.002612278563901782, + -0.07669563591480255, + 0.01903652958571911, + -0.03455701842904091, + -0.014986773952841759, + 0.03663697466254234, + -0.08742012083530426, + 0.010917933657765388, + 0.016019487753510475, + 0.002785510616376996, + -0.01890745759010315, + -0.029881635680794716, + 0.0373995341360569, + 0.10880782455205917, + 0.06589788943529129, + 0.07445891201496124, + -0.044178564101457596, + 0.020486142486333847, + -0.032400377094745636, + -0.017010940238833427, + -0.12644609808921814, + 0.052337903529405594, + -0.007226885296404362, + -0.03180594742298126, + -0.04054771363735199, + 0.054745908826589584, + -0.01479825098067522, + 0.012801464647054672, + -0.035803597420454025, + 0.018190927803516388, + -0.05270133912563324, + -0.03493352234363556, + 0.019492408260703087, + -0.03333249315619469, + -0.053635574877262115, + 0.05990016460418701, + -0.00760998111218214, + -0.006508761551231146, + 0.038999345153570175, + -0.06324803829193115, + -0.030089961364865303, + -0.02412702515721321, + 0.0476517528295517, + -0.03105827048420906, + -0.03387267887592316, + -0.011448434554040432, + -0.02347768098115921, + -0.051224324852228165, + -0.05302191898226738, + -0.049072250723838806, + -0.03464122116565704, + 0.013496826402842999, + 0.025270435959100723, + -0.06547413766384125, + -0.04832020401954651, + -0.006962092127650976, + -0.0620075948536396, + 0.0717688575387001, + 0.03552110493183136, + -0.027799643576145172, + 0.028200702741742134, + -0.018490783870220184, + -0.07096758484840393, + 0.08693041652441025, + -0.09979932755231857, + -0.016059787943959236, + -0.04432159289717674, + -2.2067473182119102e-08, + 0.026969043537974358, + -0.028530823066830635, + -0.023037178441882133, + -0.06460535526275635, + -0.03032658062875271, + -0.06002243980765343, + -0.015076607465744019, + 0.009643787518143654, + -0.009252392686903477, + 0.02030770294368267, + -0.0029800976626574993, + -0.014801868237555027, + -0.059492986649274826, + -0.07917015999555588, + 0.10897420346736908, + -0.059667084366083145, + -0.05276351794600487, + 0.08227740228176117, + -0.022920433431863785, + -0.01986468769609928, + 0.03668023273348808, + 0.005757225211709738, + -0.024852372705936432, + 0.026847921311855316, + 0.09818459302186966, + 0.003174224868416786, + 0.004925512708723545, + 0.0005258708843030035, + 0.07701487094163895, + 0.03241562470793724, + 0.055300284177064896, + 0.030735120177268982, + 0.09070166200399399, + -0.03915310278534889, + -0.046573810279369354, + -0.006984934210777283, + -0.0031834000255912542, + -0.04860788583755493, + -0.0329701229929924, + 0.15874627232551575, + -0.015884501859545708, + -0.10852447897195816, + -0.07822777330875397, + -0.008485850878059864, + -0.021955763921141624, + -0.07142239063978195, + 0.04777077957987785, + -0.009837184101343155, + -0.00691286800429225, + -0.06147252023220062, + 0.04248449578881264, + -0.03379875048995018, + 0.03860127180814743, + -0.004841085523366928, + -0.052277058362960815, + 0.034295376390218735, + 0.017961643636226654, + 0.035426266491413116, + -0.005815109703689814, + 0.015238149091601372, + 0.15738393366336823, + 0.036651138216257095, + 0.04545154422521591, + 0.040654201060533524 + ], + "push-pin-bold||favorites,favorited,pushpin": [ + -0.019689347594976425, + -0.11269177496433258, + -0.03897124156355858, + 0.03728001192212105, + 0.020788220688700676, + 0.0009082425385713577, + 0.05051054060459137, + -0.019957207143306732, + 0.027921782806515694, + -0.002932010916993022, + -0.018459362909197807, + 0.062190864235162735, + 0.015754593536257744, + -0.02114066667854786, + -0.02050021104514599, + 0.04416961595416069, + -0.06712424755096436, + -0.01692243106663227, + 0.025495491921901703, + -0.02613973245024681, + -0.007161809131503105, + -0.04413855820894241, + 0.05920115113258362, + 0.04318879544734955, + 0.0023424578830599785, + 0.0185127854347229, + 0.05750361084938049, + -0.029546895995736122, + -0.028206566348671913, + -0.020095309242606163, + 0.03934105485677719, + -0.028805455192923546, + 0.04993050917983055, + 0.0216541588306427, + 0.027799680829048157, + -0.0027349512092769146, + -0.03282354772090912, + -0.03253212198615074, + -0.038011886179447174, + -0.015057356096804142, + 0.062459126114845276, + -0.07534028589725494, + 0.05087276175618172, + 0.004722657613456249, + -0.02692732773721218, + -0.012770974077284336, + -0.04810713231563568, + 0.02551739104092121, + 0.012227686122059822, + 0.05336246266961098, + 0.05996780842542648, + -0.09966003894805908, + -0.04921870306134224, + -0.02151256985962391, + 0.1049257293343544, + 0.043882258236408234, + -0.03901704400777817, + -0.0349174328148365, + 0.07215964049100876, + -0.0020458984654396772, + 0.0645696371793747, + -0.001523418352007866, + 0.07088568061590195, + -0.00818676594644785, + 0.03996916487812996, + -0.05480695143342018, + 0.016610123217105865, + 0.043350908905267715, + -0.045016366988420486, + -0.0010764945764094591, + 0.04992152750492096, + 0.003377025481313467, + -0.0022009527310729027, + -0.0563206821680069, + 0.04849989712238312, + -0.025133753195405006, + -0.029754530638456345, + -0.06808251142501831, + -0.07745833694934845, + 0.0119925606995821, + -0.11242536455392838, + -0.10524073988199234, + -0.028465313836932182, + -0.02524016983807087, + 0.03648822009563446, + 0.03114776685833931, + -0.05089434236288071, + -0.055525731295347214, + -0.08415145426988602, + -0.04758968576788902, + -0.07732507586479187, + -0.05675886198878288, + 0.03317628800868988, + 0.033765748143196106, + -0.04583544656634331, + 0.009447726421058178, + 0.05922752246260643, + -0.06779401749372482, + -0.14981697499752045, + 0.04342961683869362, + -0.0019780027214437723, + 0.1040351390838623, + 0.0013087732950225472, + -0.01876126602292061, + 0.07650911808013916, + 0.003357346635311842, + -0.04817517474293709, + 0.02074681594967842, + -0.09026036411523819, + -0.01980147883296013, + 0.002024224027991295, + -0.04161279648542404, + 0.024685677140951157, + -0.020902713760733604, + -0.0866345539689064, + -0.06449509412050247, + -0.056434452533721924, + 0.01669234409928322, + 0.09715523570775986, + 0.0753147304058075, + 0.07485669106245041, + -0.020117904990911484, + -0.034553732722997665, + -0.07483319193124771, + -0.08007445931434631, + 0.025335390120744705, + 0.0030148569494485855, + -3.9484370237906553e-35, + 0.07319433242082596, + -0.0009168589022010565, + -0.14958274364471436, + 0.003432379337027669, + -0.038318272680044174, + -0.0008155988180078566, + -0.04620581120252609, + -0.05688963457942009, + -0.071305051445961, + -0.026170853525400162, + 0.09414301812648773, + 0.05170451104640961, + -0.0007946332916617393, + 0.09181437641382217, + -0.0006113417912274599, + -0.07781986892223358, + 0.0032371797133237123, + 0.007053304463624954, + -0.07574515044689178, + -0.04131118953227997, + -0.08158500492572784, + 0.09059402346611023, + -0.06018500402569771, + -0.08440297842025757, + 0.005214114207774401, + -0.054892510175704956, + -0.010680186562240124, + 0.012455208227038383, + -0.008935246616601944, + 0.03071146458387375, + 0.023945514112710953, + -0.009955774061381817, + 0.01722806878387928, + -0.003266591113060713, + -0.0386250801384449, + 0.030351314693689346, + -0.03237868845462799, + -0.0771220251917839, + 0.02979995124042034, + 0.005561004392802715, + 0.05022557079792023, + -0.09021826088428497, + -0.026113448664546013, + -0.029894158244132996, + -0.018161950632929802, + 0.1797380894422531, + -0.0022116675972938538, + -0.0067948647774755955, + 0.010045520029962063, + -0.09299404919147491, + 0.03657824918627739, + -0.04575379565358162, + -0.051570385694503784, + 0.01801105961203575, + -0.038254156708717346, + -0.07441139966249466, + -0.019313082098960876, + 0.07319658249616623, + 0.07608895003795624, + -0.03610415756702423, + -0.04754537716507912, + 0.03985587880015373, + 0.04439335688948631, + -0.03541165962815285, + -0.05173572897911072, + 0.12423819303512573, + 0.0011836192570626736, + 0.06783411651849747, + 0.03317064046859741, + 0.044605694711208344, + -0.004074180964380503, + 0.10044597834348679, + -0.0018766899593174458, + -0.05335615947842598, + -0.033150628209114075, + -0.02609623782336712, + 0.014970522373914719, + -0.009537393227219582, + 0.04528454691171646, + -0.08156781643629074, + -0.030134396627545357, + -0.06052087992429733, + -0.04479938745498657, + 0.03936072811484337, + 0.07988790422677994, + 0.03470882773399353, + -0.024568242952227592, + -0.06278086453676224, + -0.034279294312000275, + 0.015036461874842644, + -0.029236946254968643, + 0.0464845634996891, + 0.0648210421204567, + -0.05405302718281746, + -0.07880896329879761, + -1.1676344262126135e-33, + 0.03174709156155586, + 0.028985729441046715, + 0.034791000187397, + 0.07918049395084381, + 0.010292129591107368, + -0.056007642298936844, + -0.03760723024606705, + 0.027901578694581985, + -0.017078669741749763, + -0.058600008487701416, + -0.04417263716459274, + -0.047157175838947296, + -0.0379319004714489, + 0.009543418884277344, + 0.08408434689044952, + 0.11649870127439499, + -0.022863268852233887, + 0.054789017885923386, + -0.038619156926870346, + -0.052717894315719604, + -0.07330068945884705, + -0.07815713435411453, + -0.04832201823592186, + 0.06617763638496399, + -0.06956730037927628, + -0.028025314211845398, + 0.04445542022585869, + -0.06078480929136276, + 0.004495417699217796, + -0.08982042968273163, + 0.0864357203245163, + -0.00439972709864378, + -0.09380986541509628, + 0.05340588837862015, + -0.03621057793498039, + 0.10497704893350601, + -0.03853410482406616, + 0.025184450671076775, + 0.03722834587097168, + 0.0453302338719368, + 0.0021596539299935102, + -0.012262043543159962, + 0.019767271354794502, + 0.032024141401052475, + -0.012838237918913364, + 0.01604347862303257, + 0.014924425631761551, + -0.0031913057900965214, + -0.0021509367506951094, + 0.01776004210114479, + 0.03316789120435715, + 0.03156663104891777, + 0.05991504341363907, + 0.02836167812347412, + -0.05374419316649437, + 0.037180837243795395, + 0.07989668846130371, + 0.003915657289326191, + 0.031132308766245842, + -0.03512917831540108, + 0.03650974854826927, + -0.06082412227988243, + 0.03461840748786926, + 0.01930226944386959, + 0.04984794184565544, + -0.04471457377076149, + 0.0176590196788311, + -0.007575144525617361, + -0.042362213134765625, + 0.03983237221837044, + 0.017925700172781944, + 0.017236091196537018, + 0.04876032471656799, + 0.0157963614910841, + 0.057341545820236206, + -0.03249591588973999, + 0.00036383027327246964, + 0.002870304509997368, + 0.05051484704017639, + 0.014349602162837982, + 0.005741901230067015, + 0.06498972326517105, + -0.01642151176929474, + -0.026415584608912468, + 0.01651802472770214, + -0.0028433294501155615, + 0.03116600401699543, + 0.037183452397584915, + -0.029876776039600372, + -0.012629316188395023, + 0.04177109897136688, + 0.04413745924830437, + 0.09832186996936798, + -0.07768481969833374, + -0.014302896335721016, + -1.7269238483663685e-08, + -0.06873008608818054, + -0.05809532478451729, + -0.010309573262929916, + 0.0002260259643662721, + 0.0590142197906971, + 0.023468144237995148, + -0.07274044305086136, + -0.049363911151885986, + -0.015680808573961258, + -0.024731244891881943, + 0.004408977925777435, + 0.046623729169368744, + -0.06958761066198349, + -0.018451666459441185, + 0.07713238149881363, + 0.020665369927883148, + -0.029104454442858696, + 0.05067439749836922, + -0.01853914000093937, + 0.03063289262354374, + -0.029088981449604034, + 0.030424535274505615, + 0.0813041478395462, + 0.009917405433952808, + -0.014130129478871822, + 0.055642303079366684, + -0.0019154847832396626, + 0.07741092145442963, + 0.08385452628135681, + 0.0942746251821518, + 0.05601430684328079, + -0.0018127429066225886, + 0.014477374963462353, + -0.003138534724712372, + -0.06249745562672615, + 0.02498331107199192, + 0.01324522402137518, + 0.0008100243285298347, + -0.018833428621292114, + 0.0983201116323471, + 0.08203592151403427, + -0.10641180723905563, + 0.008285080082714558, + -0.002284248825162649, + -0.14008311927318573, + -0.04093627631664276, + 0.048116717487573624, + -0.014892062172293663, + -0.023357564583420753, + -0.041336264461278915, + -0.03823471814393997, + -0.03815046325325966, + 0.04406215623021126, + 0.024544380605220795, + 0.016337385401129723, + -0.034323133528232574, + 0.01523628644645214, + 0.1027824878692627, + 0.05185547471046448, + 0.006399589125066996, + 0.12722355127334595, + 0.06136472523212433, + -0.015384634956717491, + 0.10236712545156479 + ], + "push-pin-simple-bold||favorites,favorited,pushpin": [ + -0.014695070683956146, + -0.11149811744689941, + -0.0334644690155983, + 0.04151694104075432, + 0.026397285982966423, + 0.005754378158599138, + 0.03510037064552307, + -0.007870939560234547, + 0.014522007666528225, + 0.005856579169631004, + -0.026081997901201248, + 0.06194525212049484, + 0.015070918016135693, + -0.021323028951883316, + -0.011467809788882732, + 0.037203844636678696, + -0.07060060650110245, + -0.0297992043197155, + 0.025149034336209297, + -0.011424211785197258, + -0.011852935887873173, + -0.05208743363618851, + 0.04909162595868111, + 0.04407836124300957, + -0.00456782802939415, + 0.0152449244633317, + 0.05761212483048439, + -0.021724464371800423, + -0.01972179114818573, + -0.01323497574776411, + 0.044191014021635056, + -0.035847537219524384, + 0.05714009329676628, + 0.015913933515548706, + 0.025019550696015358, + -0.004243085160851479, + -0.030599111691117287, + -0.03290744870901108, + -0.047503553330898285, + -0.024493299424648285, + 0.054748889058828354, + -0.07749823480844498, + 0.05347101762890816, + 0.007128970231860876, + -0.03584025800228119, + -0.02022506110370159, + -0.03976573050022125, + 0.027102505788207054, + 0.009976892732083797, + 0.04576174542307854, + 0.06700567156076431, + -0.0936417505145073, + -0.05114953592419624, + -0.02911088615655899, + 0.10602743178606033, + 0.0488133430480957, + -0.050063177943229675, + -0.026269694790244102, + 0.07478024065494537, + -0.008047972805798054, + 0.0716085135936737, + -0.008793031796813011, + 0.07411862909793854, + -0.010586884804069996, + 0.03532664105296135, + -0.05612602457404137, + 0.0134021220728755, + 0.03466005623340607, + -0.04727131128311157, + -0.009594138711690903, + 0.048017047345638275, + -0.0007856108713895082, + -0.00839220266789198, + -0.0497659407556057, + 0.051436103880405426, + -0.03894107788801193, + -0.02752123773097992, + -0.054347552359104156, + -0.0800759494304657, + 0.024807361885905266, + -0.11664899438619614, + -0.10385650396347046, + -0.036273304373025894, + -0.013969196006655693, + 0.04184125363826752, + 0.029671553522348404, + -0.04896504431962967, + -0.04794018715620041, + -0.0758146271109581, + -0.049115683883428574, + -0.061822179704904556, + -0.046596676111221313, + 0.036562900990247726, + 0.032201334834098816, + -0.03990672528743744, + 0.009272759780287743, + 0.06291718035936356, + -0.061620183289051056, + -0.1672496497631073, + 0.03907119110226631, + 0.0007831793045625091, + 0.10159273445606232, + 0.011921639554202557, + -0.025065407156944275, + 0.07778220623731613, + 0.001916508306749165, + -0.04024914652109146, + 0.014900951646268368, + -0.09519338607788086, + -0.02308749035000801, + 0.0026323464699089527, + -0.04577052220702171, + 0.028272181749343872, + -0.016949964687228203, + -0.07973560690879822, + -0.06130953133106232, + -0.06174116209149361, + 0.01565365679562092, + 0.09615764766931534, + 0.08967264741659164, + 0.07073909044265747, + -0.021326690912246704, + -0.04512283578515053, + -0.07566600292921066, + -0.07808668166399002, + 0.0316765271127224, + 0.001808123430237174, + -3.555652531522785e-34, + 0.08176261186599731, + 0.013519559055566788, + -0.15356488525867462, + 0.004424557089805603, + -0.040987834334373474, + -0.010030008852481842, + -0.04679327830672264, + -0.05733002349734306, + -0.07117336988449097, + -0.024316726252436638, + 0.11053868383169174, + 0.039008527994155884, + 0.0011606264160946012, + 0.09702473878860474, + -0.0003150421835016459, + -0.07579746842384338, + 0.004897419363260269, + 0.0055381241254508495, + -0.06904790550470352, + -0.05409860983490944, + -0.08420347422361374, + 0.101009801030159, + -0.056065890938043594, + -0.0914437472820282, + 0.007194781210273504, + -0.04568507522344589, + -0.004653476178646088, + 0.014089548960328102, + -0.00900538545101881, + 0.027870846912264824, + 0.02475126087665558, + -0.01441157329827547, + 0.014813096262514591, + 0.0034143764059990644, + -0.03499170392751694, + 0.025531122460961342, + -0.019482696428894997, + -0.07234856486320496, + 0.03319454565644264, + -0.00710082845762372, + 0.039336640387773514, + -0.08614025264978409, + -0.015930550172924995, + -0.02806946076452732, + -0.006190321873873472, + 0.18144476413726807, + -0.00775967026129365, + -0.008216291666030884, + 0.017261620610952377, + -0.09567033499479294, + 0.028249887749552727, + -0.042587172240018845, + -0.05160244181752205, + 0.022297965362668037, + -0.034295834600925446, + -0.061472196131944656, + -0.025179991498589516, + 0.07224462926387787, + 0.07446133345365524, + -0.03895256668329239, + -0.04696834832429886, + 0.04758641868829727, + 0.03536287695169449, + -0.027187032625079155, + -0.05208859592676163, + 0.12998655438423157, + -0.001374277169816196, + 0.06461913883686066, + 0.0301965344697237, + 0.03877834975719452, + 9.331294131698087e-05, + 0.09925977140665054, + -0.003436490660533309, + -0.06277235597372055, + -0.0222476813942194, + -0.016981404274702072, + 0.029654862359166145, + -0.027439575642347336, + 0.04802704229950905, + -0.08276751637458801, + -0.029676014557480812, + -0.056422945111989975, + -0.04789501056075096, + 0.05118797346949577, + 0.062202613800764084, + 0.032769788056612015, + -0.01991932839155197, + -0.046123068779706955, + -0.03606627881526947, + 0.012273156084120274, + -0.03154829889535904, + 0.046120140701532364, + 0.05428507179021835, + -0.05388057976961136, + -0.07932338863611221, + -8.057458170135025e-34, + 0.029630985110998154, + 0.028988191857933998, + 0.029974153265357018, + 0.08816041797399521, + 0.007253139745444059, + -0.04576513543725014, + -0.029947606846690178, + 0.02143731899559498, + -0.012966888956725597, + -0.05518442019820213, + -0.04213694855570793, + -0.04771469160914421, + -0.04495185986161232, + 0.008161185309290886, + 0.0865146815776825, + 0.12066876888275146, + -0.03177639842033386, + 0.062394045293331146, + -0.03158723935484886, + -0.057568490505218506, + -0.0674593523144722, + -0.07276464998722076, + -0.06107763200998306, + 0.05081596225500107, + -0.0688202828168869, + -0.027417760342359543, + 0.031469784677028656, + -0.052019935101270676, + 0.005569021217525005, + -0.09408774226903915, + 0.08191698789596558, + -0.008279618807137012, + -0.08789163827896118, + 0.04511154070496559, + -0.033058471977710724, + 0.10617754608392715, + -0.048226624727249146, + 0.024474961683154106, + 0.03961533308029175, + 0.03464706614613533, + -0.00016450646216981113, + -0.014097512699663639, + 0.03389022499322891, + 0.020485036075115204, + -0.010665349662303925, + 0.01617027260363102, + 0.02908911556005478, + -0.015211795456707478, + -0.007556616328656673, + 0.00827661994844675, + 0.031216762959957123, + 0.01887110434472561, + 0.05959008261561394, + 0.028706474229693413, + -0.05406546965241432, + 0.043995220214128494, + 0.08670405298471451, + 0.009456598199903965, + 0.03301553428173065, + -0.031349487602710724, + 0.03300859034061432, + -0.05485822632908821, + 0.027761219069361687, + 0.017898548394441605, + 0.03975025191903114, + -0.041544873267412186, + 0.01488085463643074, + -0.011722368188202381, + -0.04256464168429375, + 0.03815238177776337, + 0.012424185872077942, + 0.02379220351576805, + 0.06021958217024803, + -0.00012091399548808113, + 0.059523459523916245, + -0.03353749215602875, + -0.0005602272576652467, + 0.0033237948082387447, + 0.04941800981760025, + 0.004990749526768923, + 0.021740393713116646, + 0.06595589965581894, + -0.026797151193022728, + -0.04432254657149315, + 0.019537897780537605, + -0.007489292416721582, + 0.030720792710781097, + 0.029112018644809723, + -0.031858179718256, + -0.011933950707316399, + 0.029311003163456917, + 0.052020344883203506, + 0.11152669042348862, + -0.07254838198423386, + -0.017792746424674988, + -1.82265136317028e-08, + -0.06060943007469177, + -0.06698223203420639, + -0.007376824039965868, + -0.0023870293516665697, + 0.06213841214776039, + 0.02184080332517624, + -0.06508806347846985, + -0.055657919496297836, + -0.008718680590391159, + -0.014008956961333752, + -0.0002735074085649103, + 0.041762299835681915, + -0.07187492400407791, + -0.010043616406619549, + 0.056099846959114075, + 0.032561492174863815, + -0.03277134522795677, + 0.047696277499198914, + -0.009720081463456154, + 0.026552274823188782, + -0.02452743798494339, + 0.028264155611395836, + 0.08013089746236801, + 0.009326699189841747, + -0.0135277034714818, + 0.06358214467763901, + 0.0022114154417067766, + 0.08418814092874527, + 0.08649715781211853, + 0.0979125052690506, + 0.04784784093499184, + -0.0009792777709662914, + 0.01522104348987341, + 0.0007721379515714943, + -0.07136798650026321, + 0.025701990351080894, + 0.008562070317566395, + 0.002906136680394411, + -0.023146454244852066, + 0.08296573162078857, + 0.08670981973409653, + -0.09974779188632965, + 0.007112025748938322, + -0.005640474613755941, + -0.1337958425283432, + -0.04063347354531288, + 0.04188908264040947, + -0.019479261711239815, + -0.024385863915085793, + -0.043238185346126556, + -0.03550608828663826, + -0.035203877836465836, + 0.041928064078092575, + 0.02308703400194645, + 0.010806817561388016, + -0.029399007558822632, + 0.019342975690960884, + 0.10609602928161621, + 0.04019737243652344, + 0.0033450054470449686, + 0.13397516310214996, + 0.08701609075069427, + -0.018932724371552467, + 0.10100190341472626 + ], + "push-pin-simple-slash-bold||favorites,favorited,pushpin,disabled": [ + -0.010599053464829922, + -0.11168625950813293, + -0.024706579744815826, + 0.046440571546554565, + 0.04310144484043121, + 0.012555285356938839, + -0.02471444010734558, + -0.017942165955901146, + 0.012010185047984123, + 0.007814762182533741, + -0.006935652811080217, + 0.083156518638134, + -0.007330019026994705, + 0.002615320263430476, + -0.027613984420895576, + 0.027039142325520515, + -0.052572980523109436, + -0.04780558496713638, + 0.021008407697081566, + 0.023014526814222336, + -0.04195185378193855, + -0.038741517812013626, + 0.04833453148603439, + 0.04516715928912163, + 0.01862546056509018, + -0.01304367184638977, + 0.03373098745942116, + -0.014377793297171593, + -0.03558669984340668, + -0.0168151892721653, + 0.05038721486926079, + -0.04266268014907837, + 0.05686943233013153, + 0.0012281672097742558, + 0.024270812049508095, + -0.01629389263689518, + -0.013683435507118702, + -0.05701613426208496, + -0.03752666339278221, + -0.04882723093032837, + 0.04381502792239189, + -0.08306746929883957, + 0.050775907933712006, + -0.019157007336616516, + -0.03222949802875519, + -0.021284624934196472, + -0.010278294794261456, + -0.0070737386122345924, + -0.0015127025544643402, + 0.04069126024842262, + 0.06683088839054108, + -0.05826721712946892, + -0.04305152967572212, + -0.03533688932657242, + 0.125380277633667, + 0.03922763466835022, + -0.04056968167424202, + 0.012221950106322765, + 0.10253088921308517, + 0.0029909489676356316, + 0.06119263917207718, + -0.015050551854074001, + 0.0819232314825058, + -0.03078029304742813, + 0.009703658521175385, + -0.03890937566757202, + 0.009723363444209099, + 0.004921559244394302, + -0.0571775808930397, + -0.011555816046893597, + 0.0548919178545475, + 0.010049896314740181, + -0.02293129824101925, + -0.0677151307463646, + 0.07142685353755951, + -0.05205988138914108, + -0.029746461659669876, + -0.057239118963479996, + -0.05229607969522476, + 0.005750278942286968, + -0.09238974750041962, + -0.09294279664754868, + -0.02632519230246544, + 0.006609895266592503, + 0.018047314137220383, + 0.037979111075401306, + -0.04866674169898033, + -0.045779597014188766, + -0.057759322226047516, + -0.06371250003576279, + -0.03333570063114166, + -0.06102316454052925, + 0.05313766375184059, + 0.014814411289989948, + -0.034635841846466064, + -0.006576545536518097, + 0.0393046997487545, + -0.047417543828487396, + -0.18493710458278656, + 0.02490365505218506, + 0.024642016738653183, + 0.08944055438041687, + 0.004727417603135109, + 0.011940925382077694, + 0.09467415511608124, + 0.015125629492104053, + 0.003034624271094799, + 0.020613089203834534, + -0.12310466915369034, + -0.03743285685777664, + 0.014260703697800636, + -0.02958798222243786, + 0.029139449819922447, + 0.004703473299741745, + -0.09871628880500793, + -0.06458655744791031, + -0.07287446409463882, + -0.0012249277206137776, + 0.08745100349187851, + 0.09522122889757156, + 0.07028919458389282, + -0.021082822233438492, + -0.030659783631563187, + -0.08541072905063629, + -0.059059008955955505, + 0.0321025624871254, + 0.013333642855286598, + -1.3689787924222167e-33, + 0.08990228176116943, + 0.0015573172131553292, + -0.147803395986557, + -0.026594579219818115, + -0.008273185230791569, + -0.02847605012357235, + -0.026553191244602203, + -0.056121375411748886, + -0.059221964329481125, + -0.03947467729449272, + 0.13002066314220428, + 0.021997014060616493, + 0.02498587965965271, + 0.071749247610569, + 0.00623425142839551, + -0.05609357729554176, + 0.03957545384764671, + -0.011359994299709797, + -0.057801853865385056, + -0.04185076802968979, + -0.055664725601673126, + 0.11220255494117737, + -0.055161554366350174, + -0.0721551775932312, + -0.005698053166270256, + -0.015623215585947037, + -0.012169142253696918, + 0.024369852617383003, + 0.022879842668771744, + 0.04066694527864456, + 0.010115452110767365, + -0.01300058513879776, + 0.011550369672477245, + 0.014321090653538704, + -0.045021235942840576, + 0.042941637337207794, + -0.010425577871501446, + -0.05835145339369774, + 0.017909064888954163, + -0.017700152471661568, + 0.023568185046315193, + -0.09835004061460495, + -0.054162442684173584, + -0.025205589830875397, + -0.015398954041302204, + 0.16146591305732727, + 0.010284424759447575, + -0.03512481972575188, + 0.009873694740235806, + -0.08443022519350052, + 0.0028057792223989964, + -0.02171381562948227, + -0.0016871343832463026, + 0.013342090882360935, + -0.04748590290546417, + -0.05762810632586479, + -0.060059551149606705, + 0.039648447185754776, + 0.05507560446858406, + -0.04162503406405449, + -0.04333458095788956, + 0.04596446081995964, + 0.03980701416730881, + -0.0375957228243351, + -0.06226208433508873, + 0.11640499532222748, + -0.005702650640159845, + 0.07203028351068497, + 0.027255957946181297, + 0.01791294291615486, + -0.010524064302444458, + 0.06300757080316544, + 0.017150983214378357, + -0.056015558540821075, + -0.034653183072805405, + -0.039854858070611954, + 0.018601270392537117, + -0.038991596549749374, + 0.04184573143720627, + -0.05947445333003998, + -0.043897103518247604, + -0.06257878988981247, + -0.02661881409585476, + 0.050406575202941895, + 0.09382259100675583, + 0.0043521178886294365, + -0.03311832621693611, + -0.025406569242477417, + -0.027922755107283592, + 0.006955403368920088, + 0.004827423952519894, + 0.04901562258601189, + 0.02499014511704445, + -0.04700734093785286, + -0.07937141507863998, + 4.460734164459872e-35, + 0.020140331238508224, + 0.044663187116384506, + 0.013484795577824116, + 0.09393147379159927, + -0.03324015438556671, + -0.03792600333690643, + -0.043188367038965225, + 0.024161718785762787, + -0.017097683623433113, + -0.09052155166864395, + -0.031233688816428185, + -0.03453529253602028, + -0.02072203904390335, + -0.005599115509539843, + 0.09344535320997238, + 0.11293008923530579, + -0.08262881636619568, + 0.05644800886511803, + -0.03991381824016571, + -0.054889991879463196, + -0.0684644803404808, + -0.05549534782767296, + -0.04955822601914406, + 0.06510736793279648, + -0.08791502565145493, + -0.010385408066213131, + 0.021076584234833717, + -0.059365350753068924, + 0.029972609132528305, + -0.08845788985490799, + 0.1001393049955368, + 0.015643661841750145, + -0.10026685893535614, + 0.00764993904158473, + -0.021012216806411743, + 0.10495564341545105, + -0.10458024591207504, + 0.055352795869112015, + 0.0229211263358593, + 0.0017344994703307748, + 0.01624283939599991, + -0.0062518953345716, + 0.04955605790019035, + 0.050017956644296646, + 0.015514146536588669, + 0.03758358210325241, + 0.03982406109571457, + -0.046331554651260376, + 0.008872675709426403, + 0.020155612379312515, + 0.034977491945028305, + 0.028335465118288994, + 0.07669498026371002, + 0.01999041810631752, + -0.025023072957992554, + 0.036468181759119034, + 0.07904820144176483, + 0.0031893537379801273, + -0.004239395260810852, + -0.018382320180535316, + 0.06819651275873184, + -0.05223081633448601, + -0.007578999735414982, + 0.027070723474025726, + 0.05329468101263046, + -0.025460202246904373, + 0.009871182963252068, + 0.02804507315158844, + -0.014600109308958054, + 0.0334489643573761, + 0.003760602558031678, + 0.04057060927152634, + 0.08750894665718079, + -0.019606681540608406, + 0.0700816661119461, + -0.023806501179933548, + -0.036937471479177475, + -0.0032987594604492188, + 0.05463101714849472, + 0.03726613149046898, + 0.01984366402029991, + 0.08040615916252136, + -0.046232134103775024, + -0.07528634369373322, + 0.02037321962416172, + -0.030684344470500946, + 0.0047613028436899185, + 0.07089883834123611, + -0.04162420704960823, + -0.024980254471302032, + 0.034687839448451996, + 0.043563999235630035, + 0.07664316147565842, + -0.03975483030080795, + -0.015684084966778755, + -2.0004659262440327e-08, + -0.03546595573425293, + -0.07231251150369644, + -0.023290138691663742, + -0.010680776089429855, + 0.0754709467291832, + 0.034886434674263, + -0.051328759640455246, + -0.04721943661570549, + -0.01212651189416647, + -0.012269573286175728, + -0.01714278757572174, + 0.030037596821784973, + -0.07684408873319626, + 0.00773104140534997, + 0.054213523864746094, + 0.03606712445616722, + -0.050009533762931824, + 0.059395670890808105, + -0.02047467790544033, + 0.02273171953856945, + -0.051454152911901474, + 0.013447687029838562, + 0.06656952947378159, + 0.016369448974728584, + 0.0026138522662222385, + 0.04877278208732605, + 0.0216238871216774, + 0.051759541034698486, + 0.0783153846859932, + 0.07879997044801712, + 0.027729451656341553, + -0.00793484877794981, + 0.002379631856456399, + 0.006819278467446566, + -0.08074525743722916, + 0.026075420901179314, + 0.02938864380121231, + 0.02167770452797413, + -0.011336923576891422, + 0.046120401471853256, + 0.0947609394788742, + -0.11173030734062195, + 0.01878601685166359, + -0.011119627393782139, + -0.1399960070848465, + -0.012583081610500813, + 0.03966477885842323, + 0.014281691052019596, + -0.026447413489222527, + -0.031003544107079506, + -0.04382159933447838, + -0.003350666956976056, + 0.04795454442501068, + 0.04046612232923508, + 0.026905519887804985, + -0.020153099671006203, + 0.019080644473433495, + 0.0858725905418396, + 0.04280277341604233, + -0.016011511906981468, + 0.16662226617336273, + 0.07455413043498993, + -0.025710174813866615, + 0.08627468347549438 + ], + "push-pin-slash-bold||favorites,favorited,pushpin,disabled": [ + -0.015124834142625332, + -0.1080702617764473, + -0.02958618849515915, + 0.04746786504983902, + 0.04078751429915428, + 0.006815842352807522, + -0.011314132250845432, + -0.026660131290555, + 0.018563907593488693, + -0.0033539077267050743, + -0.0049536339938640594, + 0.08581621944904327, + -0.00012370570038910955, + -0.004460539203137159, + -0.028301255777478218, + 0.03354983031749725, + -0.05246566981077194, + -0.04143449664115906, + 0.021893123164772987, + 0.016788117587566376, + -0.04250967875123024, + -0.033899638801813126, + 0.053269099444150925, + 0.04274111986160278, + 0.025461984798312187, + -0.007177793886512518, + 0.029942497611045837, + -0.02233385480940342, + -0.04344616457819939, + -0.020607074722647667, + 0.041425250470638275, + -0.039087943732738495, + 0.0511469729244709, + 0.004268455319106579, + 0.03141994774341583, + -0.018496783450245857, + -0.024418368935585022, + -0.06159092113375664, + -0.03258247300982475, + -0.04220939055085182, + 0.05114560201764107, + -0.07480790466070175, + 0.05082328990101814, + -0.026034697890281677, + -0.028682084754109383, + -0.01253239344805479, + -0.018750520423054695, + -0.003342401934787631, + -0.005805726163089275, + 0.04361436516046524, + 0.0632699728012085, + -0.05490851402282715, + -0.04082004725933075, + -0.034968502819538116, + 0.1191946417093277, + 0.04043669253587723, + -0.029440710321068764, + 0.0012842578580603004, + 0.09792684018611908, + 0.009284134954214096, + 0.05638834834098816, + -0.0077698552049696445, + 0.08033575862646103, + -0.028252260759472847, + 0.011907803826034069, + -0.03767988458275795, + 0.012215656228363514, + 0.008441571146249771, + -0.055206187069416046, + -0.0020389212295413017, + 0.060945115983486176, + 0.018613319844007492, + -0.017733987420797348, + -0.06798592209815979, + 0.07700498402118683, + -0.04263068363070488, + -0.03129458799958229, + -0.07174236327409744, + -0.049771010875701904, + -0.006006893236190081, + -0.08742760121822357, + -0.09428244084119797, + -0.023385055363178253, + -0.0034077062737196684, + 0.020551763474941254, + 0.04221384972333908, + -0.05199320986866951, + -0.05531137064099312, + -0.06079618260264397, + -0.05841410532593727, + -0.043423112481832504, + -0.07014133781194687, + 0.05361320078372955, + 0.020981095731258392, + -0.04111984372138977, + -0.0031159224454313517, + 0.04040118306875229, + -0.05160009488463402, + -0.17680144309997559, + 0.03137600049376488, + 0.0214772317558527, + 0.08862559497356415, + 0.005636034999042749, + 0.017726538702845573, + 0.09153831005096436, + 0.015830984339118004, + -0.0011365481186658144, + 0.024396171793341637, + -0.12312217801809311, + -0.04043447598814964, + 0.012439516372978687, + -0.029318559914827347, + 0.02813732996582985, + 0.002287520095705986, + -0.10981613397598267, + -0.06548286974430084, + -0.06879580020904541, + 0.003525142092257738, + 0.08800319582223892, + 0.08518754690885544, + 0.07749148458242416, + -0.019740106537938118, + -0.0249223243445158, + -0.0885474681854248, + -0.056159552186727524, + 0.02484605647623539, + 0.016461344435811043, + -1.2035659824393892e-33, + 0.08272165060043335, + -0.00913948379456997, + -0.1536443531513214, + -0.025296634063124657, + 0.0015218243934214115, + -0.02266606315970421, + -0.029387744143605232, + -0.05715892091393471, + -0.060503434389829636, + -0.04283555969595909, + 0.12696722149848938, + 0.033227354288101196, + 0.022140944376587868, + 0.07247819751501083, + 0.011788534000515938, + -0.056235816329717636, + 0.04466729983687401, + -0.006413699593394995, + -0.05863646790385246, + -0.0384553037583828, + -0.055329881608486176, + 0.1060338243842125, + -0.05956098809838295, + -0.06387370824813843, + -0.016201095655560493, + -0.016839010640978813, + -0.01670653559267521, + 0.024270161986351013, + 0.018372589722275734, + 0.042210355401039124, + 0.006541352719068527, + -0.005650435108691454, + 0.014166504144668579, + 0.006098979152739048, + -0.04769618436694145, + 0.04286119341850281, + -0.018023500218987465, + -0.06611892580986023, + 0.01163526438176632, + -0.011784195899963379, + 0.02365887723863125, + -0.09878332167863846, + -0.05692698433995247, + -0.027605067938566208, + -0.027028651908040047, + 0.16550157964229584, + 0.014002088457345963, + -0.02952689118683338, + 0.0034646347630769014, + -0.08413530141115189, + 0.003239181824028492, + -0.023866131901741028, + -0.0017118174582719803, + 0.010834618471562862, + -0.049564432352781296, + -0.05930878221988678, + -0.055561281740665436, + 0.03851137310266495, + 0.05907784774899483, + -0.03911083564162254, + -0.03179044649004936, + 0.038929130882024765, + 0.05211469158530235, + -0.04809075593948364, + -0.057167183607816696, + 0.11174383759498596, + -0.005107262637466192, + 0.07055556029081345, + 0.028722479939460754, + 0.017500661313533783, + -0.011227857321500778, + 0.06519892811775208, + 0.023723730817437172, + -0.042418524622917175, + -0.03872893378138542, + -0.04935453459620476, + 0.00721756974235177, + -0.028759637847542763, + 0.039316002279520035, + -0.06343767791986465, + -0.03657995164394379, + -0.06886525452136993, + -0.025916945189237595, + 0.041623447090387344, + 0.10148018598556519, + 0.002547526266425848, + -0.03998726233839989, + -0.03458893671631813, + -0.02821458876132965, + 0.013548088259994984, + 0.006689121946692467, + 0.050654876977205276, + 0.031165126711130142, + -0.04588347300887108, + -0.0882372185587883, + -2.605170987910663e-34, + 0.01520298421382904, + 0.042254798114299774, + 0.018163325265049934, + 0.08636819571256638, + -0.027474338188767433, + -0.04124733805656433, + -0.04845237359404564, + 0.03200608119368553, + -0.017813095822930336, + -0.09153666347265244, + -0.025725077837705612, + -0.03355076164007187, + -0.013536911457777023, + -0.008631122298538685, + 0.09209544956684113, + 0.11596006155014038, + -0.07495146244764328, + 0.051463399082422256, + -0.04994278401136398, + -0.05427974462509155, + -0.07023238390684128, + -0.06017933785915375, + -0.04527513310313225, + 0.07768664509057999, + -0.08802058547735214, + -0.013052997179329395, + 0.024822525680065155, + -0.0646420270204544, + 0.0257568396627903, + -0.0872015580534935, + 0.1059374287724495, + 0.020545294508337975, + -0.10257735103368759, + 0.015398180112242699, + -0.01746361330151558, + 0.10291174799203873, + -0.09416981786489487, + 0.045951273292303085, + 0.012679283507168293, + 0.004184155259281397, + 0.023915208876132965, + -0.001894123386591673, + 0.04361218214035034, + 0.0573747344315052, + 0.014909104444086552, + 0.04236564040184021, + 0.027964506298303604, + -0.03903985768556595, + 0.01778370514512062, + 0.02372203953564167, + 0.038463179022073746, + 0.027891172096133232, + 0.08197160065174103, + 0.012728949077427387, + -0.0269763246178627, + 0.03561911731958389, + 0.07983046025037766, + -0.005662083625793457, + -0.0010391540126875043, + -0.02198800817131996, + 0.0693780779838562, + -0.05861489474773407, + -0.009644363075494766, + 0.026652008295059204, + 0.05591108277440071, + -0.027718359604477882, + 0.014826941303908825, + 0.03475921228528023, + -0.010233567096292973, + 0.03634774684906006, + 0.012004456482827663, + 0.037549834698438644, + 0.07873780280351639, + -0.014560543932020664, + 0.06761060655117035, + -0.0293098296970129, + -0.03190293535590172, + -0.0017236635321751237, + 0.05366456136107445, + 0.04197796434164047, + 0.013203264214098454, + 0.0794638842344284, + -0.04244725778698921, + -0.06254436820745468, + 0.015345576219260693, + -0.03168896213173866, + 0.002402968006208539, + 0.07591688632965088, + -0.04407130181789398, + -0.02569681592285633, + 0.04381804168224335, + 0.03666383773088455, + 0.06881213188171387, + -0.038841165602207184, + -0.010190567001700401, + -1.9322104805041818e-08, + -0.04250400885939598, + -0.06948762387037277, + -0.027018869295716286, + -0.0060307723470032215, + 0.0783410370349884, + 0.028364963829517365, + -0.05710016191005707, + -0.04730623960494995, + -0.017082413658499718, + -0.022673320025205612, + -0.021484069526195526, + 0.03144240379333496, + -0.07057994604110718, + -0.0025957124307751656, + 0.06396070867776871, + 0.02366536669433117, + -0.04818541556596756, + 0.06474218517541885, + -0.025939693674445152, + 0.01700696349143982, + -0.05379503220319748, + 0.015303201042115688, + 0.0672096312046051, + 0.01481245830655098, + 0.004556520376354456, + 0.04594481363892555, + 0.017947519198060036, + 0.043356236070394516, + 0.07795585691928864, + 0.07665856927633286, + 0.028108222410082817, + -0.009105219505727291, + 0.001235881936736405, + 0.0006689768633805215, + -0.0759727954864502, + 0.025664404034614563, + 0.029319288209080696, + 0.01256971713155508, + -0.005925173405557871, + 0.05137960612773895, + 0.09353416413068771, + -0.11031504720449448, + 0.021105283871293068, + -0.007492870558053255, + -0.14628705382347107, + -0.014418614096939564, + 0.042648013681173325, + 0.01999085210263729, + -0.020565170794725418, + -0.030487537384033203, + -0.048998650163412094, + -0.0029092689510434866, + 0.05366814509034157, + 0.04434560239315033, + 0.026632314547896385, + -0.03321601450443268, + 0.01784321293234825, + 0.08480329066514969, + 0.05076112598180771, + -0.014403155073523521, + 0.16389241814613342, + 0.05668417364358902, + -0.02308151312172413, + 0.08992970734834671 + ], + "puzzle-piece-bold||board game,element,component,extension,plugin": [ + -0.006977617274969816, + -0.020127704367041588, + -0.038460247218608856, + -0.009050442837178707, + 0.038688775151968, + 0.03499488905072212, + 0.06819017976522446, + -0.03995237499475479, + -0.029848912730813026, + 0.008060065098106861, + -0.06448253989219666, + -0.0007668663747608662, + -0.020835306495428085, + -0.0393950529396534, + 0.06964810937643051, + 0.055375564843416214, + -0.002214464358985424, + 0.01852307841181755, + 0.008368958719074726, + -0.05542391538619995, + -0.014602240175008774, + -0.08037932962179184, + -0.023726440966129303, + -0.01744863949716091, + 0.0005227609653957188, + 0.06016741320490837, + 0.0831906870007515, + 0.034851133823394775, + 0.06264617294073105, + -0.06437377631664276, + 0.07974058389663696, + 0.015634967014193535, + 0.06421077996492386, + -0.013260342180728912, + 0.01195035595446825, + 0.0530802384018898, + -0.09279368817806244, + -0.04083167761564255, + -0.06240570545196533, + -0.019824961200356483, + -0.01967013068497181, + 0.025457866489887238, + -0.011114701628684998, + 0.05515534058213234, + -0.06393366307020187, + -0.01634644716978073, + -0.056923091411590576, + -0.08639433979988098, + 0.01764252968132496, + -0.015682267025113106, + -0.015096773393452168, + -0.10851189494132996, + -0.06522902846336365, + -0.04417760297656059, + 0.02339605614542961, + 0.010356243699789047, + -0.028396161273121834, + 0.004400384612381458, + 0.0747460275888443, + -0.07121006399393082, + 0.015330682508647442, + 0.050738994032144547, + 0.07768835127353668, + 0.016520120203495026, + 0.00592360133305192, + -0.005164504516869783, + -0.011258691549301147, + 0.008831082843244076, + -0.10613361746072769, + -0.0027715556789189577, + 0.08144544064998627, + -0.017277972772717476, + 0.07179372012615204, + 0.01411658525466919, + 0.030139021575450897, + 0.023861907422542572, + 0.006435188464820385, + -0.02624370902776718, + -0.04654465615749359, + 0.0048826285637915134, + -0.09408317506313324, + -0.042004700750112534, + -0.03944285586476326, + 0.04545500501990318, + 0.10056552290916443, + 0.0816584900021553, + -0.050541650503873825, + -0.022445321083068848, + -0.04626566171646118, + -0.047831546515226364, + -0.0395209826529026, + -0.004981341306120157, + 0.13276806473731995, + 0.07572104036808014, + 0.04327289015054703, + 0.07246090471744537, + 0.02512252703309059, + -0.011258209124207497, + -0.10856297612190247, + 0.07064218074083328, + 0.0004083917592652142, + 0.09388694167137146, + 0.010691484436392784, + -0.013971686363220215, + -0.01837356947362423, + 0.02572757378220558, + -0.06603395193815231, + 0.03659273311495781, + 0.06544400006532669, + 0.015000705607235432, + -0.04523998498916626, + -0.06585679203271866, + 0.00779828242957592, + -0.06632795184850693, + -0.04359566047787666, + -0.07936658710241318, + -0.012392481788992882, + -0.03773266449570656, + 0.0866498127579689, + 0.027139633893966675, + 0.14675691723823547, + 0.019305594265460968, + -0.042413774877786636, + -0.035562094300985336, + 0.013222727924585342, + 0.04504062235355377, + 0.0241712499409914, + -3.16024676720864e-33, + 0.06331007927656174, + -0.010590078309178352, + -0.03939477726817131, + 0.06498540937900543, + 0.0911913588643074, + -0.04259442165493965, + 0.006837364751845598, + -0.007696070708334446, + -0.11007131636142731, + 0.10396763682365417, + 0.02594517171382904, + 0.06169480085372925, + -0.08236607164144516, + 0.07863616198301315, + 0.07259845733642578, + -0.0905647724866867, + -0.0026218967977911234, + -0.03783414140343666, + -0.0800754576921463, + 0.01146666705608368, + -0.029529452323913574, + 0.00025178189389407635, + -0.02326342463493347, + -0.0038093277253210545, + -0.01744089648127556, + 0.04094875231385231, + -0.0015700020594522357, + -0.01827261969447136, + -0.04065130278468132, + -0.009146141819655895, + -0.02992928959429264, + -0.05466784909367561, + -0.0214977003633976, + 0.012091347016394138, + -0.025473468005657196, + -0.03056962601840496, + -0.03385983407497406, + -0.019999125972390175, + -0.050759147852659225, + 0.038706302642822266, + -0.04970642924308777, + -0.07499594241380692, + -0.030108261853456497, + -0.03796740248799324, + 0.07056392729282379, + 0.011348928324878216, + -0.03273219242691994, + 0.03767659142613411, + 0.011000561527907848, + -0.020525773987174034, + 0.02556753344833851, + 0.030706463381648064, + 0.06792034953832626, + -0.0733436793088913, + 0.016436215490102768, + -0.05978463217616081, + -0.012803589925169945, + 0.0376008041203022, + 0.04827564209699631, + -0.018507836386561394, + 0.053163956850767136, + 0.005324273370206356, + 0.026544751599431038, + 0.10607192665338516, + -0.028274022042751312, + 0.17318445444107056, + -0.009987515397369862, + -0.00351920397952199, + 0.04444095119833946, + -0.1091768890619278, + 0.03658707067370415, + 0.007795213256031275, + 0.06453879922628403, + 0.00900178961455822, + -0.021024450659751892, + -0.0233747661113739, + -0.05914157256484032, + -0.07711264491081238, + 0.017805228009819984, + -0.1083880066871643, + -0.09895841032266617, + -0.06558743864297867, + -0.0488450787961483, + 0.03462616354227066, + 0.05065711587667465, + 0.008121875114738941, + 0.0017573501681908965, + -0.047287240624427795, + -0.035822730511426926, + 0.0035202528815716505, + -0.05730537325143814, + -0.027984248474240303, + -0.02780897356569767, + -0.008634756319224834, + -0.03504902496933937, + 1.5374685507038178e-33, + -0.049200039356946945, + 9.863034210866317e-05, + -0.056778136640787125, + -0.02754885144531727, + 0.03114897385239601, + -0.009186790324747562, + -0.026903361082077026, + 0.0006501668249256909, + 0.05960311368107796, + 0.06218753010034561, + -0.008313450962305069, + 0.04975603520870209, + -0.024291187524795532, + -0.04828900098800659, + -0.05088300257921219, + 0.060882311314344406, + -0.011987949721515179, + 0.0740962028503418, + 0.030512498691678047, + -0.012514381669461727, + -0.03989087790250778, + -0.017177414149045944, + -0.021313922479748726, + -0.01796497404575348, + 0.06873594224452972, + 0.04461858794093132, + 0.10291501879692078, + -0.035919200628995895, + 0.007686187978833914, + 0.02544979751110077, + -0.024380875751376152, + 0.0029054651968181133, + 0.03806180879473686, + -0.005776106379926205, + -0.0324498750269413, + 0.04806884005665779, + -0.021137775853276253, + -0.0747344046831131, + 0.023439565673470497, + -0.0642920508980751, + -0.04695895314216614, + -0.011820565909147263, + -0.0015357224037870765, + 0.09792407602071762, + -0.061090223491191864, + 0.0425582155585289, + -0.021081242710351944, + 0.03464733064174652, + 0.018905866891145706, + 0.08445632457733154, + 0.000947824155446142, + -0.033542826771736145, + 0.025517204776406288, + -0.04309284687042236, + -0.041481684893369675, + 0.02088662050664425, + -0.07538449764251709, + 0.02887672185897827, + -0.010304250754415989, + 0.03548290953040123, + 0.06115349382162094, + 0.07263336330652237, + -0.013626406900584698, + 0.07083965837955475, + 0.10375097393989563, + 0.02028803527355194, + -0.04770834371447563, + -0.002547838957980275, + 0.031015697866678238, + -0.02098103240132332, + -0.013436435721814632, + 0.03541872650384903, + 0.03999585658311844, + 0.024283824488520622, + 0.035208478569984436, + -0.005730859469622374, + 0.054814308881759644, + 0.13845986127853394, + 0.07151053845882416, + 0.022989632561802864, + -0.06358560919761658, + -0.055570971220731735, + -0.0369526706635952, + -0.020571637898683548, + -0.04109063744544983, + -0.0047068349085748196, + -0.04365047812461853, + 0.06243351846933365, + -0.00971996784210205, + -0.038517385721206665, + -0.04338398948311806, + 0.09094652533531189, + 0.060189493000507355, + 0.024567293003201485, + -0.04372996836900711, + -2.3267473281407547e-08, + 0.014099730178713799, + -0.006215859670192003, + -0.08043577522039413, + -0.13243837654590607, + 0.04632451757788658, + -0.005676449742168188, + -0.025909047573804855, + -0.09553209692239761, + -0.08807123452425003, + 0.023744892328977585, + 0.10937269032001495, + 0.03278622403740883, + -0.04779032617807388, + -0.047609809786081314, + -0.0004487643309403211, + 0.023279549553990364, + -0.0372796393930912, + 0.0727476254105568, + -0.057845499366521835, + -0.03431657701730728, + 0.028651606291532516, + 0.08292192220687866, + 0.016279978677630424, + -0.01564752869307995, + -0.04301559552550316, + 0.011222789995372295, + -0.10502146184444427, + 0.004294263198971748, + 0.04638255015015602, + 0.09511765837669373, + 0.04061044007539749, + 0.03476378694176674, + 0.10318177938461304, + 0.0029462568927556276, + -0.06381858140230179, + -0.01529703103005886, + -0.014038601890206337, + 0.0333050899207592, + -0.01598374731838703, + 0.039655860513448715, + -0.03129823878407478, + -0.10589912533760071, + -0.021035702899098396, + -0.05718245357275009, + -0.06412306427955627, + 0.02224264107644558, + -0.02827654592692852, + -0.04315473884344101, + -0.0562371164560318, + -0.05870606377720833, + -0.024199023842811584, + 0.006470153573900461, + -0.06439878791570663, + 0.018238166347146034, + 0.07777804136276245, + -0.0031308475881814957, + 0.03672953322529793, + 0.13013508915901184, + 0.0051925526931881905, + -0.04424259066581726, + -0.00281051779165864, + 0.05677240714430809, + 0.06041242554783821, + 0.05503348633646965 + ], + "qr-code-bold||upc,barcode,products,shopping,scanner": [ + -0.10131017863750458, + 0.01742706261575222, + -0.12536726891994476, + -0.02066648378968239, + -0.043447345495224, + 0.03405651077628136, + 0.025519778952002525, + -0.061768848448991776, + 0.003358639543876052, + -0.03537324070930481, + 0.05313275009393692, + 0.03046899475157261, + 0.10034093260765076, + -0.03495389595627785, + 0.008329970762133598, + 0.06587152183055878, + -0.04800032079219818, + -0.003331676824018359, + 0.021577036008238792, + -0.03385399654507637, + -0.022347550839185715, + 0.026401294395327568, + 0.009653404355049133, + 0.02954714745283127, + 0.004912944510579109, + 0.017368048429489136, + -0.022165579721331596, + 0.07142356783151627, + 0.037366222590208054, + -0.0573030523955822, + 0.052180565893650055, + 0.01914500631392002, + 0.17105886340141296, + 0.039417363703250885, + 0.0673338994383812, + -0.002662800019606948, + -0.039797745645046234, + -0.04598390311002731, + -0.02480023168027401, + 0.028614861890673637, + -0.044981759041547775, + -0.0063254800625145435, + -0.12423299998044968, + 0.047566547989845276, + 0.020661838352680206, + -0.02623894438147545, + -0.07020475715398788, + 0.00947562512010336, + 0.009667780250310898, + -0.09730993956327438, + 0.012308894656598568, + -0.03002317249774933, + -0.07714702934026718, + 0.007675178814679384, + -0.026569223031401634, + -0.019612276926636696, + -0.05048682913184166, + -0.041748836636543274, + 0.0737462192773819, + 0.021343858912587166, + -0.02453022077679634, + 0.07519548386335373, + 0.04629075154662132, + 0.04085913300514221, + 0.06664370745420456, + 0.03419771045446396, + -0.046583399176597595, + 0.06371350586414337, + -0.05173715204000473, + -0.006610590033233166, + -0.015282362699508667, + -0.0742264911532402, + -0.031232943758368492, + -0.013283987529575825, + 0.0183371901512146, + -0.05295535922050476, + -0.005477222613990307, + 0.03665284067392349, + -0.03617753088474274, + -0.049411624670028687, + -0.06449317932128906, + -0.08356044441461563, + -0.04943142458796501, + 0.07001177221536636, + 0.08046060055494308, + 0.035982538014650345, + -0.030402233824133873, + -0.039587732404470444, + 0.0034123710356652737, + -0.009832958690822124, + -0.027976175770163536, + -0.059856243431568146, + -0.006862002890557051, + -0.002692391397431493, + -0.04307902976870537, + -0.06089277192950249, + 0.09007878601551056, + -0.017546646296977997, + 0.037364836782217026, + 0.006058784667402506, + 0.040116384625434875, + -0.012109990231692791, + 0.058928731828927994, + -0.04196315258741379, + -0.07383370399475098, + -0.027546226978302002, + 0.09141665697097778, + 0.047752901911735535, + 0.08230727910995483, + 0.0270376019179821, + -0.03354353457689285, + -0.011512639001011848, + -0.018825532868504524, + -0.08653807640075684, + -0.036842454224824905, + 0.03234555572271347, + 0.03947092965245247, + 0.07155004888772964, + 0.11075301468372345, + 0.024168606847524643, + -0.006749325897544622, + -0.049567628651857376, + -0.08517450094223022, + -0.04864629730582237, + -0.034299615770578384, + -0.018818017095327377, + -0.008582659997045994, + -1.9259604337719603e-33, + -0.0006711998721584678, + 0.031422242522239685, + -0.046504907310009, + 0.02921639010310173, + 0.02274307794868946, + 0.026440391317009926, + 0.003114136168733239, + -0.013178820721805096, + -0.08193902671337128, + 0.03969300538301468, + 0.10886915028095245, + 0.013297983445227146, + -0.05817137658596039, + 0.09825058281421661, + 0.01991277188062668, + 0.017248598858714104, + -0.0680876299738884, + -0.0428023599088192, + -0.04050808399915695, + -0.020189056172966957, + -0.07124285399913788, + -0.08713674545288086, + -0.02815442532300949, + 0.027433093637228012, + 0.04675246402621269, + 0.0635770633816719, + 0.03194005787372589, + 0.05695682018995285, + -0.02090095542371273, + 0.004121282137930393, + 0.022619757801294327, + -0.01622510328888893, + 0.01817682757973671, + -0.05764244869351387, + -0.0615861713886261, + 0.07866116613149643, + -0.047631897032260895, + 0.06602659821510315, + -0.027239222079515457, + 0.021438071504235268, + -0.03378354385495186, + -0.04279227927327156, + 0.009690184146165848, + -0.04916481301188469, + 0.0651315227150917, + 0.06987740844488144, + -0.05130866542458534, + -0.0180667657405138, + -0.030183052644133568, + 0.05611862242221832, + -0.0320337638258934, + -0.008753027766942978, + -0.033828072249889374, + 0.01115493942052126, + -0.002582437125965953, + -0.02819317951798439, + 0.01849791221320629, + 0.08022848516702652, + -0.0046016620472073555, + 0.005847663152962923, + 0.012944360263645649, + 0.006463230587542057, + 0.04028688371181488, + 0.002231413731351495, + -0.03223896026611328, + 0.00854711513966322, + -0.004392504692077637, + -0.02342088334262371, + -0.002030068077147007, + 0.08962132036685944, + -0.028939949348568916, + 0.06983126699924469, + 0.033703770488500595, + 0.07426206022500992, + 0.016212210059165955, + 0.010877372696995735, + -0.03232992812991142, + 0.0033880481496453285, + 0.024497903883457184, + -0.12568530440330505, + -0.04667402803897858, + 0.01117896381765604, + 0.006029761862009764, + 0.10878058522939682, + -0.016895320266485214, + -0.020956283435225487, + 0.06527141481637955, + -0.08319664746522903, + -0.097927987575531, + 0.11031695455312729, + -0.04150974750518799, + -0.009812717325985432, + -0.018021218478679657, + -0.03899369016289711, + -0.04177255555987358, + -7.720099556643683e-34, + 0.08567965775728226, + 0.003680318593978882, + 0.015444708988070488, + -0.009183840826153755, + -0.0927610993385315, + -0.026448458433151245, + 0.019053880125284195, + 0.023441612720489502, + 0.05884157493710518, + -0.006828646175563335, + 0.05567430704832077, + 0.0013495486928150058, + -0.040856536477804184, + -0.031291134655475616, + 0.033554557710886, + 0.07744339853525162, + -0.01834283024072647, + 0.12057236582040787, + -0.012827818281948566, + 0.03544505313038826, + -0.051494061946868896, + -0.01323023159056902, + -0.04030513018369675, + 0.05512036010622978, + -0.06248275190591812, + 0.03577987477183342, + 0.020542344078421593, + 0.05428733676671982, + 0.013170168735086918, + -0.06556467711925507, + -0.024748455733060837, + -0.12187547981739044, + -0.020001396536827087, + 0.0074086375534534454, + -0.08641690760850906, + -0.005446824245154858, + 0.059504952281713486, + -0.038578469306230545, + 0.02388169802725315, + 0.025207601487636566, + 0.04467165097594261, + 0.05751048028469086, + -0.04258270561695099, + 0.04862897843122482, + -0.02243179827928543, + -0.054458990693092346, + 0.012311826460063457, + -0.06655359268188477, + 0.029428662732243538, + 0.011650783009827137, + 0.06449086219072342, + 0.017632024362683296, + -0.04589566960930824, + 0.07246624678373337, + -0.09942532330751419, + 0.034011296927928925, + 0.02670276165008545, + 0.05001753941178322, + -0.03528827056288719, + 0.03078409843146801, + -0.032480090856552124, + 0.02973073534667492, + -0.021333664655685425, + -0.0034119077026844025, + 0.03618421033024788, + -0.10608240962028503, + 0.09127482771873474, + 0.0016873175045475364, + -0.004990797024220228, + -0.0553777851164341, + 0.022814752534031868, + -0.06646516174077988, + 0.028613394126296043, + 0.05555573105812073, + -0.02470320649445057, + -0.0437045656144619, + -0.023085756227374077, + 0.027752889320254326, + 0.01473262533545494, + -0.015659665688872337, + 0.01118917390704155, + -0.06477252393960953, + -0.003195747034624219, + 0.10747373104095459, + -0.028724126517772675, + 0.055960386991500854, + 0.01972385123372078, + -0.004481476731598377, + -0.008359536528587341, + -0.06260120123624802, + 0.014565550722181797, + 0.09451156109571457, + 0.0736517533659935, + 0.0007850541151128709, + -0.058449435979127884, + -1.886485101465496e-08, + 0.04186446964740753, + -0.10810165107250214, + -0.07440296560525894, + -0.045306142419576645, + 0.0195426307618618, + -0.02140396647155285, + -0.04027189686894417, + -0.017751583829522133, + -0.08682655543088913, + -0.04547795653343201, + 0.0758703425526619, + 0.02308632619678974, + -0.13215023279190063, + -0.02176577039062977, + 0.05764877796173096, + 0.02730274200439453, + -0.03571324050426483, + 0.03224166855216026, + -0.00044830067781731486, + -0.04684128239750862, + -0.02522636018693447, + 0.12580770254135132, + 0.043523844331502914, + -0.004499370232224464, + -0.016956135630607605, + 0.0015072125243023038, + -0.019312303513288498, + 0.07264936715364456, + 0.07811658084392548, + 0.011461256071925163, + 0.10662282258272171, + 0.05585211142897606, + 0.056124817579984665, + -0.03469538316130638, + -0.03986422345042229, + -0.05933378264307976, + -0.002442522905766964, + -0.049537915736436844, + 0.011920238845050335, + 0.13224783539772034, + -0.008610978722572327, + -0.11531976610422134, + -0.16368448734283447, + -0.04483798146247864, + -0.03914355859160423, + 0.012709066271781921, + 0.005092112813144922, + -0.04917987063527107, + -0.10100230574607849, + -0.02623618394136429, + 0.0031961831264197826, + -0.015870466828346252, + 0.05581904202699661, + 0.0052302563562989235, + -0.03649277240037918, + -0.07144603133201599, + 0.009394481778144836, + 0.03645185008645058, + 0.04000353813171387, + 0.01191675290465355, + 0.06068234518170357, + -0.0008287820965051651, + 0.015443429350852966, + 0.013294102624058723 + ], + "question-bold||information,help,support,questions": [ + 0.01294144056737423, + 0.0477258637547493, + -0.01773809641599655, + 0.0780484601855278, + 0.04941954463720322, + 0.028520848602056503, + 0.11124718934297562, + 0.01755986176431179, + -0.05902987718582153, + 0.00945385079830885, + -0.04094686359167099, + 0.02539236657321453, + 0.013761942274868488, + -0.033104706555604935, + 0.025595648214221, + 0.07047980278730392, + 0.03685977682471275, + -0.05768931657075882, + -0.13538774847984314, + 0.07700793445110321, + 0.009149352088570595, + 0.07007598876953125, + 0.032697755843400955, + 0.08351810276508331, + 0.012977776117622852, + -0.019661622121930122, + 0.06813188642263412, + -0.020592667162418365, + 0.022516045719385147, + -0.06064489483833313, + -0.025710519403219223, + -0.03330697864294052, + 0.08311721682548523, + 0.031033441424369812, + 0.07258432358503342, + 0.014590880833566189, + -0.015473536215722561, + 0.023892611265182495, + -0.011691231280565262, + 0.054797302931547165, + -0.01803775317966938, + -0.09031123667955399, + -0.011846230365335941, + 0.0309517253190279, + -0.035160940140485764, + -0.05339254438877106, + -0.05229058116674423, + -0.005891100503504276, + -0.01534705888479948, + -0.03134544566273689, + -0.0574798509478569, + -0.09699978679418564, + -0.10393532365560532, + -0.02271403558552265, + 0.002296947408467531, + -0.00584563659504056, + -0.11483393609523773, + -0.03680417314171791, + 0.014745817519724369, + 0.04159697890281677, + 0.023090602830052376, + 0.03048430010676384, + 0.056490588933229446, + 0.09422258287668228, + 0.07130677998065948, + 0.0042271395213902, + -0.012131523340940475, + -0.01287110149860382, + -0.05144095793366432, + -0.006211451254785061, + -0.02555142529308796, + 0.033718328922986984, + -0.01933472789824009, + 2.9358678148128092e-05, + -0.038217321038246155, + 0.0034159414935857058, + -0.019662903621792793, + -0.0034436716232448816, + -0.01578357070684433, + -0.06242735683917999, + 0.0018857019022107124, + -0.044824469834566116, + -0.034790363162755966, + 0.061354562640190125, + 0.07978838682174683, + 0.06131240352988243, + -0.04347771778702736, + -0.013089778833091259, + -0.041802044957876205, + -0.039186105132102966, + -0.043062251061201096, + -0.0704168751835823, + 0.020525673404335976, + 0.0687294751405716, + 0.007776972372084856, + 0.05575929582118988, + 0.010578538291156292, + -0.08950886130332947, + -0.0533905066549778, + 0.09174848347902298, + 0.06758936494588852, + 0.07191372662782669, + 0.032672010362148285, + -0.016090715304017067, + -0.0517645888030529, + -0.04724626988172531, + -0.029391128569841385, + 0.035993803292512894, + 0.014188484288752079, + 0.0020033130422234535, + -0.04234545677900314, + -0.08124694228172302, + -0.0639573186635971, + -0.06947430968284607, + -0.027944030240178108, + -0.11211735010147095, + 0.044958703219890594, + 0.026275988668203354, + 0.03818420320749283, + -0.0063842348754405975, + 0.010624506510794163, + -0.004074643366038799, + 0.010966337285935879, + -0.045097991824150085, + 0.00960218720138073, + -0.03652103245258331, + -0.03893902525305748, + -2.7770346904856126e-33, + 0.0370342843234539, + 0.050759684294462204, + 0.01287437230348587, + 0.1182352676987648, + -0.005438241641968489, + 0.020916175097227097, + -0.09900585561990738, + 0.0025405357591807842, + -0.05996512621641159, + 0.02767193503677845, + 0.11900516599416733, + 0.06616117060184479, + 0.026592610403895378, + 0.03373129293322563, + -0.004526528064161539, + -0.024232694879174232, + -0.026434099301695824, + 0.011045903898775578, + -0.09736257791519165, + -0.010164197534322739, + -0.017259202897548676, + 0.06305965781211853, + -0.035019244998693466, + -0.01757536455988884, + 0.0026268207002431154, + -0.04387513920664787, + 0.03417712822556496, + 0.0048448191955685616, + -0.05953460931777954, + -0.020349958911538124, + -0.07185695320367813, + -0.028934825211763382, + 0.0006626710528507829, + -0.07517056167125702, + 0.036428309977054596, + 0.05048845335841179, + -0.009660794399678707, + -0.049026887863874435, + -0.02813236229121685, + -0.014944581314921379, + -0.052076637744903564, + 0.009573431685566902, + 0.02084210515022278, + -0.002913813106715679, + 0.023097435012459755, + 0.10854515433311462, + 0.028709687292575836, + -0.10526895523071289, + 0.017797283828258514, + -0.028307193890213966, + -0.025018874555826187, + -0.008525663986802101, + 0.0026428464334458113, + -0.0017589383060112596, + 0.07367600500583649, + -0.023909663781523705, + -0.07751812040805817, + 0.04241184890270233, + -0.007102401461452246, + -0.00517488457262516, + 0.01577855460345745, + -0.037631772458553314, + 0.05507907271385193, + -0.04322473704814911, + -0.050115905702114105, + 0.07510596513748169, + -0.10014569014310837, + -0.00028527239919640124, + 0.14139771461486816, + -0.04192769527435303, + 0.02686523087322712, + 0.07043896615505219, + 0.03307299315929413, + 0.007552384864538908, + -0.0373217798769474, + 0.06701820343732834, + -0.05289102718234062, + 0.025447718799114227, + 0.06867481768131256, + -0.07465336471796036, + -0.037410080432891846, + -0.08899075537919998, + -0.012789781205356121, + 0.065580815076828, + 0.01775926724076271, + 0.017996041104197502, + 0.0726972445845604, + -0.007252584211528301, + 0.011257102712988853, + 0.034365177154541016, + -0.0338674820959568, + 0.016859883442521095, + -0.0738726407289505, + -0.10394085198640823, + -0.029683221131563187, + -9.556304384574638e-34, + 0.01466005016118288, + -0.015094297006726265, + -0.10161115974187851, + -0.02938402071595192, + 0.0013018319150432944, + 0.011189174838364124, + -0.0863618552684784, + -0.01361431460827589, + 0.050545744597911835, + 0.013089905492961407, + 0.019388938322663307, + -0.03684709966182709, + -0.0661744698882103, + -0.03149847313761711, + -0.05463181063532829, + 0.02877635322511196, + 0.019248655065894127, + 0.002121411031112075, + -0.02293585054576397, + 0.05243716761469841, + -0.07216202467679977, + 0.04341111704707146, + -0.07765975594520569, + 0.06843062490224838, + -0.028343887999653816, + 0.06716689467430115, + 0.018882855772972107, + -0.022799022495746613, + -0.01896849274635315, + -0.004040864761918783, + -0.06570503115653992, + -0.10393465310335159, + 0.04709188640117645, + 0.017526527866721153, + -0.08047017455101013, + 0.05291616544127464, + 0.018323339521884918, + -0.06691133230924606, + 0.024195661768317223, + 0.014424236491322517, + 0.06593618541955948, + 0.045083072036504745, + 0.006540647707879543, + -0.010190988890826702, + -0.07275949418544769, + -0.022216595709323883, + -0.0027462560683488846, + -0.05399128794670105, + 0.052510250359773636, + 0.05394841358065605, + 0.030859632417559624, + -0.08907996863126755, + 0.03257109969854355, + 0.03620677441358566, + -0.07636070251464844, + 0.0070746541023254395, + -0.02541394531726837, + 0.039536599069833755, + -0.011809874325990677, + 0.04642367362976074, + -0.015716368332505226, + 0.09664559364318848, + -0.04600023105740547, + -0.009669014252722263, + 0.04774600267410278, + -0.06653564423322678, + -0.01886763423681259, + -0.04550967738032341, + 0.03634477034211159, + -0.08759934455156326, + -0.02871478907763958, + -0.06892407685518265, + -0.00227634166367352, + -0.0005712676793336868, + 0.09413658082485199, + -0.015501939691603184, + 0.048773713409900665, + -0.06349893659353256, + -0.025363272055983543, + 0.034266598522663116, + 0.03393474966287613, + -0.029765497893095016, + 0.0031840396113693714, + 0.07048533111810684, + -0.04905736446380615, + 0.030205342918634415, + 0.020541997626423836, + 0.05504084751009941, + 0.051883842796087265, + -0.06267984956502914, + -0.007203139364719391, + 0.030214743688702583, + -0.0555226095020771, + -0.01803665980696678, + -0.06384475529193878, + -2.1762799562452528e-08, + 0.012616366147994995, + 0.008475346490740776, + -0.04338033124804497, + 0.03503343462944031, + 0.018596455454826355, + 0.011705650016665459, + -0.05989912152290344, + -0.06487219035625458, + -0.04913267120718956, + 0.033339280635118484, + -0.0017704996280372143, + 0.043257106095552444, + -0.04659703001379967, + -0.03013741411268711, + 0.03669988363981247, + -0.009430190548300743, + -0.06307625770568848, + 0.026581453159451485, + -0.018133366480469704, + -0.12554199993610382, + 0.021971043199300766, + 0.029563814401626587, + 0.02431364171206951, + 0.053415123373270035, + 0.03458306938409805, + 0.1246892586350441, + -0.04003242403268814, + 0.03956076502799988, + -0.04665489122271538, + 0.0767032578587532, + 0.05816417559981346, + 0.033222392201423645, + -0.03793693333864212, + 0.08532848954200745, + 0.0072450400330126286, + -0.03838004916906357, + -0.032184943556785583, + -0.015871919691562653, + -0.002519139088690281, + 0.102920763194561, + -0.061324987560510635, + 0.00035967034636996686, + -0.0035910264123231173, + 0.0072923582047224045, + 0.0049764798022806644, + 0.04743953049182892, + -0.029251579195261, + -0.0550650879740715, + -0.1090245321393013, + -0.13133463263511658, + -0.034136898815631866, + -0.023204823955893517, + 0.0632537454366684, + 0.10045868903398514, + -0.031517621129751205, + -0.04410617798566818, + 0.015903189778327942, + 0.14932523667812347, + -0.07688069343566895, + -0.013949145562946796, + 0.16268041729927063, + 0.02874911203980446, + 0.043307047337293625, + 0.032308295369148254 + ], + "question-mark-bold||*new*,?,information,help,support,questions,punctuation,symbol": [ + 0.0078393230214715, + 0.015674280002713203, + 0.010959948413074017, + 0.05519424378871918, + 0.016162807121872902, + 0.020209817215800285, + 0.09151886403560638, + 0.03791648894548416, + -0.061464760452508926, + 0.011334000155329704, + 0.02416655607521534, + -0.03155702352523804, + 0.014659157954156399, + -0.019661162048578262, + 0.051639676094055176, + 0.05945684760808945, + -0.010767181403934956, + -0.0725627988576889, + -0.06320375949144363, + 0.04801594093441963, + 0.0208511371165514, + 0.07244390994310379, + -0.0038082522805780172, + 0.060411203652620316, + 0.02193993516266346, + 0.018096037209033966, + 0.022621670737862587, + -0.02129969745874405, + 0.028665456920862198, + -0.03795778378844261, + -0.0558595135807991, + -0.07220181822776794, + 0.08899638056755066, + 0.03758513554930687, + 0.12075915932655334, + 0.023436306044459343, + 0.06846661865711212, + 0.010955632664263248, + 0.02536850795149803, + 0.012723966501653194, + -0.016322391107678413, + -0.11907936632633209, + -0.03749917075037956, + 0.028031283989548683, + 0.020172476768493652, + -0.016450898721814156, + -0.05608369782567024, + 0.03205442801117897, + -0.020936334505677223, + 0.001299636554904282, + -0.0756794661283493, + -0.10269753634929657, + -0.1277095526456833, + -0.013096208684146404, + 0.0480215810239315, + 0.031807463616132736, + -0.09328599274158478, + -0.04917852580547333, + -0.0012774268398061395, + -0.005515400320291519, + -0.028973586857318878, + 0.043514054268598557, + 0.04748110845685005, + 0.10586419701576233, + 0.06976699084043503, + -0.02708754874765873, + -0.03310134634375572, + -0.02822679467499256, + 0.0010028346441686153, + 0.03350535035133362, + -0.11587833613157272, + 0.0118893226608634, + -0.04436873272061348, + 0.011301334947347641, + -0.04687308147549629, + 0.02243073843419552, + -0.027582312002778053, + -0.0020766560919582844, + 0.005550255998969078, + -0.03761213272809982, + -0.027633950114250183, + -0.06455986201763153, + -0.007849900983273983, + 0.07562080025672913, + 0.08855918794870377, + 0.05436532944440842, + -0.035842254757881165, + -0.057795118540525436, + -0.014616543427109718, + -0.009349675849080086, + -0.041501790285110474, + -0.06687261164188385, + 0.01046756561845541, + 0.05996287241578102, + -0.05331270024180412, + 0.06457893550395966, + 0.02980525977909565, + -0.03930945321917534, + -0.043988049030303955, + 0.11286453157663345, + 0.06277384608983994, + 0.03656395897269249, + 0.06394357979297638, + -0.029044657945632935, + -0.05043105408549309, + -0.026906734332442284, + -0.03377934917807579, + -0.03340349346399307, + 0.035440921783447266, + -0.01947425678372383, + -0.030621541664004326, + -0.07494892925024033, + -0.06965165585279465, + -0.09273979067802429, + -0.060161713510751724, + -0.054875005036592484, + -0.0010749318171292543, + -0.009279605001211166, + 0.08530427515506744, + 0.017145896330475807, + 0.011489168740808964, + -0.05112883448600769, + -0.06707262247800827, + -0.04717523232102394, + -0.04122865945100784, + -0.023948347195982933, + -0.02512388490140438, + -2.1592108390697498e-33, + 0.02981540560722351, + 0.06372688710689545, + -0.012356703169643879, + 0.05466383323073387, + -0.04042437672615051, + 0.04289402440190315, + -0.08303843438625336, + 0.02923998422920704, + -0.07363474369049072, + -0.014754434116184711, + 0.15332148969173431, + 0.0010172832990065217, + 0.025393040850758553, + 0.05945327877998352, + 0.022869668900966644, + -0.00813964381814003, + 0.035830482840538025, + -0.048779040575027466, + -0.07475409656763077, + -0.021881546825170517, + -0.03268709033727646, + 0.09067042171955109, + -0.01574837416410446, + 0.04029165953397751, + 0.0381353422999382, + 0.007385062985122204, + 0.04873140528798103, + -0.03166734054684639, + -0.030285488814115524, + -0.006240639369934797, + -0.013450353406369686, + -0.05984172970056534, + 0.008988392539322376, + -0.05789557844400406, + 0.013776917941868305, + 0.08635272085666656, + -0.003951921593397856, + -0.050659362226724625, + -0.03589717298746109, + -0.04972786456346512, + -0.05419798940420151, + -0.025663409382104874, + 0.0014721561456099153, + 0.01341916061937809, + 0.0006657508201897144, + 0.04637313634157181, + 0.02495408244431019, + -0.09039482474327087, + 0.0566939115524292, + -0.029502829536795616, + -0.03868477791547775, + -0.0331331230700016, + -0.011101306416094303, + -0.03421512246131897, + 0.0525159128010273, + -0.04851426184177399, + -0.07681530714035034, + 0.054812073707580566, + 0.011918647214770317, + -0.004379228688776493, + 0.00514407129958272, + -0.011629309505224228, + 0.11758315563201904, + 0.013813010416924953, + -0.049467261880636215, + 0.04530765488743782, + -0.06563526391983032, + 0.01794733852148056, + 0.11910315603017807, + 0.03314203396439552, + -0.025322940200567245, + 0.03899960592389107, + 0.039038948714733124, + 0.036439649760723114, + -0.04821084439754486, + 0.027563078328967094, + -0.07341019064188004, + -0.0018120842287316918, + 0.016395453363656998, + -0.03951772674918175, + -0.05931760370731354, + -0.08717487007379532, + -0.007389195263385773, + 0.04273576661944389, + 0.035893164575099945, + -0.028847094625234604, + 0.07615868002176285, + -0.016209812834858894, + 0.0020013030152767897, + -0.03889153525233269, + -0.0032923647668212652, + 0.03442664444446564, + -0.08185303956270218, + -0.036873139441013336, + -0.04337844252586365, + -1.594841674902569e-33, + 0.0390615351498127, + 0.0026506336871534586, + -0.13512541353702545, + 0.00881689041852951, + -0.05448955297470093, + -0.03343359753489494, + -0.05861413851380348, + 0.009425818920135498, + 0.06513506174087524, + 0.02766680344939232, + 0.02426333911716938, + -0.01993226259946823, + -0.02218611352145672, + -0.050200365483760834, + -0.03894347697496414, + 0.02542225830256939, + -0.03398342430591583, + 0.042078085243701935, + 0.0025644765701144934, + 0.03973669558763504, + -0.06438924372196198, + 0.04024365171790123, + -0.08200614154338837, + 0.04755420610308647, + 0.02246781624853611, + 0.023340193554759026, + 0.04268713667988777, + -0.05412471294403076, + -0.054789792746305466, + -0.006398232653737068, + -0.08483190089464188, + -0.054577458649873734, + 0.0609004832804203, + 0.041682176291942596, + -0.07431668788194656, + 0.010405151173472404, + 0.030232997611165047, + -0.1061166450381279, + 0.005475933663547039, + 0.017017653211951256, + 0.07744157314300537, + 0.03705209493637085, + 0.079077810049057, + 0.02437898889183998, + -0.06401430815458298, + 0.01519687008112669, + -0.04201492667198181, + -0.038026947528123856, + 0.023094333708286285, + 0.09115693718194962, + 0.05054768919944763, + -0.10439098626375198, + 0.01182006299495697, + -0.02483745850622654, + -0.07368456572294235, + 0.06518581509590149, + -0.049506478011608124, + 0.06368540972471237, + -0.05015191808342934, + -0.003733394667506218, + -0.016779156401753426, + 0.05159301683306694, + -0.005222746171057224, + -0.005597373005002737, + 0.08648302406072617, + -0.10226890444755554, + -0.0021723820827901363, + -0.024083951488137245, + 0.013653697445988655, + -0.06496256589889526, + -0.018370069563388824, + -0.020624298602342606, + -0.036223094910383224, + 0.022878378629684448, + 0.02994230017066002, + -0.03675435855984688, + 0.03933897987008095, + -0.06333868950605392, + -0.04211675003170967, + 0.02742026560008526, + 0.020110441371798515, + -0.027027882635593414, + -0.016253400593996048, + 0.10253426432609558, + -0.050196874886751175, + 0.008840538561344147, + -0.04014487937092781, + 0.09232005476951599, + -0.003890259424224496, + -0.016334978863596916, + 0.000664840976241976, + 0.04874863848090172, + -0.04103339463472366, + 0.04937530308961868, + -0.10030370205640793, + -2.789396624791607e-08, + -0.0077092149294912815, + -0.0077994950115680695, + -0.0601634606719017, + 0.001687005627900362, + 0.04193297028541565, + 0.02856706641614437, + -0.0431632474064827, + -0.07601151615381241, + -0.03245517238974571, + -0.01301581971347332, + 0.022892151027917862, + 0.05900312960147858, + -0.07350783795118332, + -0.07512310147285461, + 0.025177275761961937, + -0.036893896758556366, + -0.06413768976926804, + 0.04585707560181618, + -0.027609732002019882, + -0.09048047661781311, + 0.002023441018536687, + 0.03966544196009636, + 0.012099183164536953, + 0.04929041117429733, + 0.009769860655069351, + 0.1227676272392273, + 0.01048885565251112, + 0.06598029285669327, + -0.04166626185178757, + 0.03672690689563751, + 0.06342407315969467, + 0.03262200579047203, + 0.027618734166026115, + -0.011103673838078976, + -0.02465495653450489, + 0.03631465882062912, + -0.026673102751374245, + 0.026380158960819244, + 0.030770404264330864, + 0.1362922638654709, + -0.0008865597774274647, + 0.007508288137614727, + -0.026991702616214752, + 0.000444492296082899, + -0.04070879891514778, + -0.006126448977738619, + -0.013083396479487419, + -0.01102219708263874, + -0.06499508023262024, + -0.16180388629436493, + -0.008952919393777847, + -0.008620710112154484, + 0.04213585704565048, + 0.03732083737850189, + -0.036416683346033096, + 0.03459075465798378, + 0.04591422155499458, + 0.11521478742361069, + -0.037735290825366974, + -0.04341774806380272, + 0.1887141317129135, + 0.03701808303594589, + 0.04467592015862465, + 0.03607957810163498 + ], + "queue-bold||*updated*,music,audio,playlist": [ + -0.017767399549484253, + -0.06431334465742111, + -0.06377270817756653, + 3.10088689730037e-05, + -0.02129286155104637, + 0.03240826353430748, + 0.13641683757305145, + -0.14235632121562958, + 0.03696012124419212, + 0.015945924445986748, + -0.020091939717531204, + 0.031235387548804283, + -0.0213276706635952, + -0.09431982040405273, + -0.03022015281021595, + -0.0003241616359446198, + 0.11208479851484299, + -0.0022564255632460117, + -0.013114945963025093, + -0.043231427669525146, + -0.043772418051958084, + 0.049051154404878616, + -0.013871223665773869, + 0.032778143882751465, + -0.015361137688159943, + -0.02425282634794712, + -0.03875212371349335, + -0.014682366512715816, + -0.001798209734261036, + -0.10249456763267517, + 0.03363731503486633, + -0.01056700013577938, + 0.11224085837602615, + -0.03728204593062401, + 0.02893725223839283, + -0.06115446239709854, + -0.023612555116415024, + -0.07896168529987335, + -0.041865382343530655, + 0.027731727808713913, + 0.07528658211231232, + 0.03195086866617203, + -0.025938544422388077, + 0.0376008115708828, + -0.11511360853910446, + -0.05796350538730621, + -0.1271621733903885, + -0.10230111330747604, + 0.007076606620103121, + 0.04980688914656639, + -0.014195806346833706, + -0.09122882783412933, + -0.07979828864336014, + -0.011528132483363152, + -0.00012507793144322932, + -0.0027754127513617277, + -0.0004873012949246913, + 0.04024277254939079, + 0.026698753237724304, + -0.04058345407247543, + -0.011755198240280151, + -0.025986885651946068, + 0.07824462652206421, + 0.00757521903142333, + 0.023103957995772362, + -0.04657604917883873, + 0.0023766872473061085, + 0.036087386310100555, + 0.014810108579695225, + 0.06267105042934418, + 0.020007286220788956, + 0.07375114411115646, + 0.03889346867799759, + -0.007976260967552662, + -0.015498294495046139, + 0.04855805262923241, + 0.02601948194205761, + -0.019890880212187767, + -0.11496900767087936, + -0.06265454739332199, + -0.00840218085795641, + -0.12314000725746155, + -0.026451826095581055, + -0.08257351070642471, + 0.04440036416053772, + -0.04668184742331505, + -0.05369601026177406, + -0.06898725032806396, + -0.08545300364494324, + -0.05640126392245293, + -0.048599325120449066, + 0.04216989129781723, + 0.015329069457948208, + -0.014656806364655495, + -0.05255187302827835, + 0.08510004729032516, + 0.008447813801467419, + -0.020936109125614166, + -0.02656519040465355, + 0.07894163578748703, + 0.02478881925344467, + 0.07774849981069565, + 0.017312513664364815, + 0.028903581202030182, + -0.030785206705331802, + -0.04782800003886223, + -0.03578465059399605, + 0.041966091841459274, + -0.025595277547836304, + -0.024127479642629623, + -0.015675192698836327, + -0.049516066908836365, + 0.015885503962635994, + -0.053396183997392654, + -0.01552985142916441, + 0.04107467457652092, + 0.024630997329950333, + 0.019191987812519073, + 0.03702285885810852, + 0.09756071120500565, + 0.08225563913583755, + -0.0415809340775013, + -0.06499159336090088, + -0.09798997640609741, + 0.017093677073717117, + 0.022527705878019333, + 0.1287478506565094, + -2.7663351204992373e-33, + 0.07289332151412964, + -0.07016131281852722, + -0.011322878301143646, + 0.026353739202022552, + 0.09840206801891327, + -0.007529912982136011, + 0.012177706696093082, + 0.005445025395601988, + -0.010700788348913193, + -0.004794020671397448, + 0.07600031048059464, + 0.019637010991573334, + -0.004159722942858934, + 0.038050319999456406, + -0.029307056218385696, + -0.04397972673177719, + -0.020347055047750473, + 0.07001464813947678, + -0.02705703116953373, + -0.028975490480661392, + -0.05249795317649841, + -0.016943197697401047, + -0.04474233090877533, + 0.005388259422034025, + 0.01731872744858265, + 0.029620280489325523, + 0.031580813229084015, + -0.029787879437208176, + 0.029522977769374847, + 0.023806804791092873, + -0.02683768793940544, + 0.023155126720666885, + 0.021982651203870773, + 0.009005111642181873, + -0.03795136883854866, + 0.10184356570243835, + -0.10800741612911224, + 0.03235532343387604, + 0.03677141293883324, + -0.13206279277801514, + -0.0433577336370945, + -0.06471949815750122, + -0.10929645597934723, + -0.06067544221878052, + -0.05727687478065491, + 0.03870183974504471, + -0.06442530453205109, + -0.07643165439367294, + 0.008612451143562794, + -0.018088970333337784, + 0.012503845617175102, + 0.0308001060038805, + -0.009330617263913155, + 0.03044450655579567, + 0.017273714765906334, + -0.032813698053359985, + 0.0688110813498497, + 0.1000092476606369, + 0.039241380989551544, + 0.03848617151379585, + 0.07433700561523438, + 0.04720784351229668, + 0.03485006093978882, + -0.050843022763729095, + 0.03680277615785599, + 0.12425955384969711, + 0.011798282153904438, + -0.03310898691415787, + 0.14137259125709534, + 0.006747739389538765, + 0.02535228803753853, + -0.01685664989054203, + 0.07800702750682831, + 0.08081313967704773, + -0.03565346449613571, + 0.024857254698872566, + -0.08232693374156952, + -0.08554386347532272, + 0.012538718059659004, + -0.05143027380108833, + -0.0329439714550972, + -0.0257392730563879, + -0.06345243006944656, + 0.0723341628909111, + 0.027540169656276703, + -0.012259023264050484, + 0.023502711206674576, + -0.019836731255054474, + -0.03434111922979355, + 0.01467173919081688, + -0.09931007027626038, + 0.04936564341187477, + 0.00720674404874444, + -0.03953733667731285, + 0.0037240679375827312, + -6.622781549458328e-34, + 0.04872571676969528, + 0.03554711490869522, + -0.05367690324783325, + -0.009919286705553532, + -0.016084924340248108, + 0.0033033944200724363, + -0.055324722081422806, + 0.0755496472120285, + 0.09259513020515442, + 0.0041730268858373165, + -0.03648659214377403, + 0.005994000937789679, + -0.04157223552465439, + -0.026401937007904053, + 0.036653436720371246, + 0.0034869478549808264, + -0.03499956429004669, + -0.02058945596218109, + 0.020014934241771698, + 0.05624692887067795, + -0.08019375056028366, + -0.04310091212391853, + -0.02725287340581417, + 0.14729896187782288, + -0.016612445935606956, + -0.029224853962659836, + 0.03670720010995865, + -0.008849232457578182, + 0.00466241454705596, + -0.035339273512363434, + 0.0002721064956858754, + -0.06288238614797592, + -0.025364547967910767, + -0.057653941214084625, + 0.048894722014665604, + 0.0021538836881518364, + 0.09412727504968643, + 0.07881604880094528, + -0.0170447938144207, + 0.03976546972990036, + -0.007757770363241434, + 0.04144367575645447, + 0.006334992591291666, + -0.05768132954835892, + 0.0025759830605238676, + -0.017004190012812614, + -0.01875182054936886, + 0.01360185258090496, + -0.06848802417516708, + 0.02991030365228653, + 0.03388334810733795, + -0.050983358174562454, + 0.021624645218253136, + 0.04398521035909653, + -0.036663495004177094, + 0.012142996303737164, + -0.05762196704745293, + 0.0028628406580537558, + 0.010023809969425201, + 0.09066221863031387, + -0.010169139131903648, + 0.04027039557695389, + -0.030331023037433624, + -0.12028787285089493, + 0.04683929309248924, + -0.012819098308682442, + 0.03427388146519661, + -0.09604983031749725, + 0.0381510965526104, + 0.020156048238277435, + 0.025131262838840485, + 0.012017028406262398, + -0.054377783089876175, + 0.0930495336651802, + -0.025748392567038536, + -0.04305880516767502, + -0.008339554071426392, + -0.0668242946267128, + -0.015253430232405663, + 0.007096193730831146, + 0.017277713865041733, + 0.04612141475081444, + 0.04115615785121918, + -0.007598616182804108, + -0.01493620965629816, + 0.05093153938651085, + 0.08819817006587982, + -0.012803545221686363, + -0.021198570728302002, + -0.07714225351810455, + -0.0170842744410038, + -0.029499655589461327, + 0.0008200231241062284, + -0.003255115821957588, + -0.09152661263942719, + -1.8912677646198972e-08, + -0.06331141293048859, + -0.007157693151384592, + -0.007049259729683399, + 0.06145969778299332, + 0.06732382625341415, + -0.048198018223047256, + -0.043457645922899246, + -0.046495236456394196, + -0.01715950295329094, + -0.06057792156934738, + 0.08161718398332596, + -0.042912304401397705, + 0.060704126954078674, + -0.0008397124474868178, + 0.06062741577625275, + 0.023525122553110123, + -0.047750283032655716, + 0.07362687587738037, + -0.03185296431183815, + -0.00751791475340724, + -0.009656776674091816, + 0.09513576328754425, + 0.025567471981048584, + -0.0587422177195549, + 0.0019778988789767027, + 0.01946045272052288, + 0.05245010182261467, + -0.018968956544995308, + 0.08285246789455414, + 0.06521594524383545, + 0.01844637468457222, + 0.0049707465805113316, + 0.035624608397483826, + -0.009096715599298477, + -0.04138236492872238, + -0.06519488245248795, + 0.024099241942167282, + -0.03169003874063492, + -0.003833121620118618, + 0.08452463895082474, + 0.03156179562211037, + -0.0030819610692560673, + -0.04380129650235176, + -0.003358887042850256, + -0.04136238247156143, + -0.012659664265811443, + -0.010108039714396, + -0.028215687721967697, + -0.09509988129138947, + -0.035299282521009445, + -0.04079316556453705, + 0.014447054825723171, + 0.0370013490319252, + 0.023661218583583832, + 0.023201609030365944, + -0.019223149865865707, + 0.049472447484731674, + 0.1095799058675766, + -0.00800713337957859, + 0.021661389619112015, + 0.08485225588083267, + -0.005186753813177347, + 0.0655871108174324, + 0.07995980232954025 + ], + "quotes-bold||quoations,quotation marks,double-quotes,writing,books": [ + -0.05568452551960945, + -0.019459141418337822, + 0.03607387840747833, + 0.08553768694400787, + 0.000721689488273114, + 0.013285775668919086, + 0.06408372521400452, + -0.0060310945846140385, + 0.02839798852801323, + 0.02663259021937847, + -0.021092131733894348, + 0.02379652112722397, + 0.04913034290075302, + -0.07361607998609543, + 0.026382075622677803, + 0.06231507658958435, + -0.009298981167376041, + 0.01227369625121355, + 0.012129010632634163, + -0.046829286962747574, + 0.057741302996873856, + 0.12798213958740234, + 0.039994336664676666, + 0.05934295803308487, + 0.0953986868262291, + -0.0007117944769561291, + -0.03330564871430397, + -0.00011841161176562309, + 0.009636999107897282, + 0.01366066001355648, + -0.06122704967856407, + -0.035203758627176285, + 0.10610752552747726, + 0.017196979373693466, + 0.06985042244195938, + 0.04439092054963112, + 0.04603608325123787, + -0.024728400632739067, + 0.08704276382923126, + 0.024045368656516075, + -0.006694714073091745, + -0.08520592004060745, + -0.015544812195003033, + 0.04201440513134003, + -0.002906691748648882, + -0.029162056744098663, + -0.1008589044213295, + -0.0007409906247630715, + 0.030157968401908875, + 0.0259613748639822, + -0.07404911518096924, + -0.07039546221494675, + -0.09426673501729965, + -0.03210780769586563, + 0.01727198250591755, + 0.023582302033901215, + -0.02589486911892891, + 0.10219947248697281, + 0.08301394432783127, + -0.011912791058421135, + 0.013918651267886162, + -0.04782421514391899, + -0.017607128247618675, + 0.11194002628326416, + 0.03700348362326622, + 0.02811870165169239, + -0.012813824228942394, + 0.01864771358668804, + -0.12063967436552048, + 0.09435029327869415, + -0.07605759799480438, + 0.014673372730612755, + -0.046560876071453094, + -0.02663218416273594, + -0.07426590472459793, + 0.004890669137239456, + 0.017457054927945137, + -0.07184237986803055, + -0.004220115020871162, + -0.0036506298929452896, + -0.11332648992538452, + -0.12012606114149094, + -0.016218796372413635, + -0.018408572301268578, + -0.031826410442590714, + 0.012169776484370232, + -0.039782412350177765, + -0.10037752985954285, + -0.018085796386003494, + -0.0476057305932045, + -0.03606295958161354, + -0.08989871293306351, + -0.007630608044564724, + 0.08080986887216568, + -0.0797334685921669, + 0.05289004370570183, + -0.012289109639823437, + 0.02576761692762375, + -0.005154039710760117, + 0.028826195746660233, + 0.035815950483083725, + 0.049303580075502396, + -0.009027848020195961, + 0.022570883855223656, + -0.038579463958740234, + -0.040523119270801544, + -0.0020941458642482758, + -0.073366180062294, + -0.012009570375084877, + 0.002427539089694619, + -0.05095404386520386, + -0.053493715822696686, + 0.017321579158306122, + -0.017642725259065628, + 0.01580369845032692, + -0.02953028306365013, + 0.040562719106674194, + -0.08146216720342636, + 0.07012320309877396, + 0.06416074931621552, + -0.02192622795701027, + -0.013423371128737926, + -0.017175830900669098, + -0.043911438435316086, + -0.03799493983387947, + -0.08131368458271027, + 0.06680496037006378, + -1.3919954309887979e-33, + 0.06819122284650803, + 0.048886410892009735, + 0.002963504521176219, + 0.05328312888741493, + -0.031153479591012, + 0.018494516611099243, + -0.004614183213561773, + -0.035370223224163055, + -0.05401376262307167, + 0.001221415470354259, + 0.052151117473840714, + 0.008270981721580029, + 0.0062763020396232605, + 0.019824916496872902, + 0.007488774135708809, + -0.0032046877313405275, + 0.0005348931881599128, + -0.0357927568256855, + 0.0130750248208642, + -0.013458602130413055, + -0.009802248328924179, + 0.10497446358203888, + 0.05843843147158623, + 0.029565025120973587, + 0.006797029171139002, + -0.05200003832578659, + 0.09054388850927353, + -0.050053685903549194, + -0.061088498681783676, + 0.038736552000045776, + 0.0037669683806598186, + -0.049178414046764374, + 0.03336247429251671, + -0.03413987159729004, + 0.008940977044403553, + 0.04237661883234978, + -0.08461088687181473, + 0.017450714483857155, + 0.04974540323019028, + 0.05295576527714729, + -0.14232228696346283, + -0.008982234634459019, + 0.019733374938368797, + -0.025864670053124428, + 0.04049212858080864, + 0.13488703966140747, + -0.04959248751401901, + -0.07191947847604752, + 0.055407699197530746, + -0.008574489504098892, + -0.0753232091665268, + 0.0012120527680963278, + 0.007951795123517513, + -0.04398288577795029, + 0.12093590199947357, + -0.02066793479025364, + 0.0013985458062961698, + 0.05151282623410225, + 0.0034645174164325, + -0.016003193333745003, + 0.04523443058133125, + 0.016596756875514984, + 0.056356679648160934, + -0.03054811619222164, + 0.008343104273080826, + 0.043486326932907104, + -0.08799365907907486, + 0.03809924051165581, + 0.07776276022195816, + 0.061521291732788086, + -0.007972740568220615, + 0.07461466640233994, + 0.004726232960820198, + 0.017324823886156082, + -0.07317693531513214, + 0.012689863331615925, + -0.03150111064314842, + -0.008638187311589718, + 0.009528051130473614, + -0.025888975709676743, + -0.1001586839556694, + -0.06639571487903595, + -0.03867775946855545, + 0.03453681990504265, + 0.008763568475842476, + -0.02788812853395939, + -0.05431506410241127, + -0.06003456562757492, + -0.037996821105480194, + 0.0570245124399662, + 0.026472941040992737, + 0.00195418787188828, + -0.09310388565063477, + -0.11372707784175873, + -0.10697871446609497, + -1.4733504766542468e-33, + 0.05348854884505272, + 0.0672905221581459, + -0.06647120416164398, + 0.07655193656682968, + -0.018124813213944435, + 0.018969479948282242, + -0.06533589959144592, + 0.03721066936850548, + 0.06550280749797821, + -0.03896356001496315, + -0.06717134267091751, + 0.030278222635388374, + 0.02975764125585556, + -0.05324322357773781, + -0.0894397720694542, + -0.04474497213959694, + 0.03812910616397858, + 0.02665254846215248, + -0.029759785160422325, + -0.0015962328761816025, + -0.03151119872927666, + -0.015794992446899414, + -0.04475943371653557, + 0.07732372730970383, + 0.07964228838682175, + -0.012407888658344746, + -0.041864633560180664, + -0.10098432004451752, + -0.05670810118317604, + -0.011620458215475082, + -0.00936422124505043, + 0.029633348807692528, + 0.00036788152647204697, + 0.09134744107723236, + -0.07263332605361938, + 0.013710247352719307, + 0.03900598734617233, + -0.028388768434524536, + 0.03629712387919426, + 0.0029802778735756874, + 0.054604992270469666, + 0.027703242376446724, + 0.014376071281731129, + -0.026556897908449173, + -0.02208814211189747, + -0.02887931652367115, + -0.09225159883499146, + -0.06261344254016876, + -0.038948509842157364, + 0.05956557020545006, + -0.0443134680390358, + -0.03890622407197952, + -0.05555182322859764, + 0.013565571047365665, + -0.028619006276130676, + -0.08320088684558868, + 0.009856071323156357, + 0.0033574318513274193, + 0.0037215854972600937, + 0.033572833985090256, + -0.04377875477075577, + 0.06825534999370575, + -0.06387031078338623, + 0.03512626513838768, + -0.010559557937085629, + -0.1488807499408722, + 0.030020566657185555, + 0.03784598037600517, + 0.06283241510391235, + -0.026936331763863564, + 0.03668976202607155, + -0.05573911592364311, + -0.002674852730706334, + 0.01218534354120493, + -0.04491323605179787, + 0.006384263280779123, + 0.04399798437952995, + -0.019180847331881523, + -0.07030460238456726, + 0.037667397409677505, + -0.004970826208591461, + -0.02004610188305378, + -0.019880160689353943, + 0.1321040540933609, + 0.015584374777972698, + 0.03341776877641678, + -0.04021148011088371, + 0.0021649613045156, + -0.014739757403731346, + 0.013806070201098919, + -0.043503452092409134, + 0.03550010174512863, + 0.0033399700187146664, + 0.011920527555048466, + -0.012084262445569038, + -2.2939360633245087e-08, + 0.003486566711217165, + -0.035406652837991714, + -0.03852226957678795, + -0.0010180932004004717, + -0.0011632577516138554, + -0.00505122821778059, + -0.027906138449907303, + -0.03152966499328613, + -0.06596945226192474, + 0.021725306287407875, + 0.08354505896568298, + 0.03815535455942154, + -0.031195027753710747, + -0.05880946293473244, + -0.0004510850412771106, + 0.02208791673183441, + -0.015828749164938927, + -0.0009289792506024241, + 0.021564414724707603, + -0.011357312090694904, + -0.003409748896956444, + 0.02438507229089737, + -0.002052157884463668, + -0.023539161309599876, + -0.008556225337088108, + 0.07888005673885345, + -0.06667238473892212, + -0.006230351515114307, + -0.012251037172973156, + 0.07482153177261353, + 0.05313616991043091, + 0.07510185986757278, + 0.05972060188651085, + -0.08362570405006409, + -0.0436846986413002, + -0.007171430625021458, + 0.03424547612667084, + 0.04122702032327652, + 0.002801986411213875, + 0.13314330577850342, + -0.057014014571905136, + -0.009571204893290997, + -0.00196216837503016, + -0.0060988254845142365, + -0.029142731800675392, + 0.019931312650442123, + 0.051296208053827286, + 0.052548445761203766, + -0.010821935720741749, + -0.12459132075309753, + 0.07362110167741776, + -0.05414562672376633, + 0.06499985605478287, + 0.03879725933074951, + -0.027989525347948074, + 0.06254589557647705, + 0.0376492515206337, + 0.1059861034154892, + 0.014857650734484196, + -0.029005354270339012, + 0.1624932885169983, + 0.03453443571925163, + 0.0478096678853035, + -0.05060409754514694 + ], + "rabbit-bold||*new*,hare,fast,animal": [ + 0.04897559434175491, + -0.03769712522625923, + 0.05025462433695793, + 0.08461844176054001, + 0.004037706647068262, + 0.01953316666185856, + 0.06408604234457016, + -0.10171771794557571, + 0.03273167833685875, + 0.046117883175611496, + 0.0742093175649643, + -0.0012460127472877502, + -0.04745074734091759, + 0.02458002232015133, + 0.044550105929374695, + -0.007998937740921974, + 0.09291256219148636, + -0.01171453483402729, + -0.011149768717586994, + -0.03228994831442833, + -0.013787049800157547, + -0.011994577944278717, + 0.046087685972452164, + 0.042833004146814346, + -0.016007855534553528, + -0.09313681721687317, + -0.042232707142829895, + -0.021234340965747833, + -0.00885810051113367, + -0.12561973929405212, + -0.025912856683135033, + 0.024775680154561996, + 0.07122551649808884, + 0.049093641340732574, + 0.002594461664557457, + -0.020050499588251114, + 0.008503797464072704, + -0.015059491619467735, + 0.10652797669172287, + 0.06306741386651993, + 0.042211972177028656, + -0.11066847294569016, + -0.02634252980351448, + -0.005729104857891798, + -0.0017647974891588092, + -0.004281429573893547, + -0.034721046686172485, + 0.013145268894731998, + 0.03428367152810097, + 0.04620904102921486, + -0.08502182364463806, + -0.07072434574365616, + -0.1269710659980774, + 0.07569506019353867, + 0.020342743024230003, + 0.06843896955251694, + -0.048837147653102875, + -0.08235297352075577, + 0.05050276964902878, + -0.04711553081870079, + -0.012449021451175213, + 0.028163975104689598, + 0.0935429185628891, + 0.03704124316573143, + -0.015709031373262405, + -0.0544518418610096, + -0.03109748847782612, + 0.024451354518532753, + 0.029589422047138214, + 0.028771420940756798, + 0.026199229061603546, + 0.04116205871105194, + -0.03400776535272598, + -0.049659956246614456, + -0.11117827892303467, + -0.022102558985352516, + 0.01833677850663662, + 0.0054207416251301765, + 0.02117619290947914, + -0.05254147946834564, + -0.07016724348068237, + -0.07500465959310532, + -0.04534109681844711, + -0.029450589790940285, + -0.00012604334915522486, + 0.06912904232740402, + -0.07795244455337524, + -0.0651206374168396, + -0.13668671250343323, + -0.09582993388175964, + -0.055832087993621826, + -0.0205665472894907, + 0.03513065725564957, + 0.07896587252616882, + 0.02133103646337986, + -0.007341872435063124, + 0.11454802006483078, + -0.03965369611978531, + -0.040339384227991104, + 0.06688754260540009, + 0.031634099781513214, + -0.00904461182653904, + 0.04374697804450989, + 0.017643189057707787, + 0.0566004142165184, + -0.045562926679849625, + 0.0002953927614726126, + -0.030276497825980186, + 0.03176756948232651, + -0.012825554236769676, + -0.0031625493429601192, + -0.09001752734184265, + 0.03586896136403084, + 0.024248156696558, + 0.008694167248904705, + 0.01605699025094509, + -0.04954493045806885, + -0.07936564087867737, + 0.06668251752853394, + 0.09143619984388351, + 0.08963793516159058, + -0.022625984624028206, + -0.0038274533580988646, + -0.012030052952468395, + -0.039506442844867706, + 0.0368335023522377, + -0.006487508770078421, + -1.1055069783777632e-33, + 0.07992904633283615, + 0.024613650515675545, + -0.04649059846997261, + 0.04677312821149826, + 0.014428386464715004, + -0.0014103564899414778, + -0.08453356474637985, + -0.042663540691137314, + -0.10406149178743362, + 0.02305852435529232, + -0.05969972908496857, + 0.02351217530667782, + -0.06771941483020782, + 0.06663119047880173, + 0.05274084955453873, + -0.02261945977807045, + 0.029841063544154167, + -0.0408090204000473, + 0.030467482283711433, + 0.021674200892448425, + -0.0634445920586586, + 0.10525378584861755, + -0.04906577616930008, + -0.026735080406069756, + -0.014106901362538338, + -0.08643101155757904, + -0.0029406328685581684, + -0.10864425450563431, + -0.03648214414715767, + 0.05642397329211235, + 0.05061192065477371, + 0.014610969461500645, + 0.05852913856506348, + 0.0516529381275177, + -0.06223414093255997, + -0.05257025733590126, + -0.07367602735757828, + -0.04492710903286934, + -0.01751120761036873, + 0.04979323595762253, + -0.010834738612174988, + -0.04598035290837288, + -0.04481387138366699, + 0.014822708442807198, + -0.0031083128415048122, + 0.06457644701004028, + -0.06126284599304199, + 0.024158289656043053, + -0.050730105489492416, + 0.0351504348218441, + 0.0009796428494155407, + 0.053288474678993225, + 0.005958557594567537, + 0.042563002556562424, + -0.002041547792032361, + -0.014518407173454762, + 0.020668301731348038, + 0.041293203830718994, + -0.037002820521593094, + 0.05474197492003441, + -0.03870512917637825, + 0.03436402231454849, + 0.020754240453243256, + -0.011233394965529442, + 0.02245047129690647, + -0.021464332938194275, + -0.06991595774888992, + 0.0488947294652462, + 0.014901600778102875, + 0.045236147940158844, + 0.025122126564383507, + 0.030581507831811905, + -0.0029025913681834936, + -0.10333554446697235, + 0.007583972532302141, + -0.03454430401325226, + 0.015287589281797409, + 0.04198242351412773, + -0.024853255599737167, + -0.09932425618171692, + -0.04376594349741936, + 0.10160445421934128, + -0.0979604423046112, + 0.08081471920013428, + 0.008154476061463356, + 0.018365204334259033, + 0.08375517278909683, + -0.08138291537761688, + 0.03620385378599167, + -0.02786700800061226, + -0.012683297507464886, + 0.0372774600982666, + -0.0526331327855587, + -0.06076883152127266, + -0.016044385731220245, + 5.887294478780496e-34, + 0.04443187639117241, + 0.01252408605068922, + -0.016910437494516373, + 0.03797745332121849, + 0.017130877822637558, + -0.001597380731254816, + 0.03384259715676308, + 0.01794983260333538, + 0.031923409551382065, + 0.020038550719618797, + -0.07735935598611832, + -0.03566313534975052, + -0.030968831852078438, + -0.09044545888900757, + 0.1472347229719162, + 0.010963208973407745, + 0.016350971534848213, + -0.03550611436367035, + 0.052394602447748184, + 0.033969298005104065, + -0.03981243446469307, + -0.05633575841784477, + -0.0897308811545372, + 0.0839751735329628, + 0.05561980605125427, + 0.049171436578035355, + 0.04028928652405739, + 0.023104289546608925, + -0.0685214027762413, + -0.11248604953289032, + -0.0675671175122261, + -0.0356135368347168, + 0.0013794520637020469, + 0.07805772125720978, + -0.026704508811235428, + 0.022321075201034546, + -0.034935444593429565, + -0.021607020869851112, + -0.00350134982727468, + -0.06533332914113998, + 0.01663457602262497, + 0.0010603322880342603, + -0.022771863266825676, + 0.03217030316591263, + -0.006701406091451645, + -0.0022431104443967342, + 0.027477674186229706, + -0.00973158422857523, + -0.03898944333195686, + 0.09275233000516891, + 0.06733568012714386, + -0.13003647327423096, + 0.016331015154719353, + -0.03403642028570175, + 0.012942683883011341, + -0.008407628163695335, + -0.01653066836297512, + 0.021597396582365036, + 0.0007795466226525605, + 0.010045836679637432, + -0.018412964418530464, + 0.008748773485422134, + 0.03933761641383171, + 0.06533200293779373, + -0.01509671751409769, + -0.09884969890117645, + 0.005582316778600216, + -0.07149763405323029, + 0.04734944552183151, + -0.05330151319503784, + 0.08927060663700104, + 0.06982841342687607, + -0.03936084359884262, + 0.031181389465928078, + 0.054015763103961945, + 0.016119588166475296, + -0.040483202785253525, + -0.008627194911241531, + -0.030695877969264984, + 0.048363763839006424, + -0.0906921997666359, + -0.022086646407842636, + 0.0002515948726795614, + 0.04800529032945633, + -0.020854508504271507, + 0.08165102452039719, + -0.024058569222688675, + 0.09377755224704742, + 0.026942571625113487, + 0.0032562746200710535, + 0.017184168100357056, + 0.039457958191633224, + -0.027217335999011993, + -0.0013455679873004556, + -0.015218707732856274, + -1.7394018669847355e-08, + -0.0361168198287487, + -0.006757132243365049, + -0.08095864206552505, + 0.004969313740730286, + 0.06136870011687279, + -0.010512730106711388, + -0.03522789850831032, + -0.05328598618507385, + -0.04173671081662178, + 0.013248714618384838, + 0.06694327294826508, + 0.07761717587709427, + 0.057222653180360794, + 0.03239147365093231, + 0.05269887298345566, + 0.0069906753487885, + 0.029062911868095398, + -0.0010320354485884309, + -0.009896036237478256, + 0.015793392434716225, + -0.05040495842695236, + 0.08731363713741302, + 0.06847189366817474, + -0.02993950992822647, + -0.0606636106967926, + -0.020033149048686028, + -0.04620234668254852, + -0.019736187532544136, + 0.02876133657991886, + 0.01912398263812065, + 0.014134511351585388, + 0.0630115270614624, + -0.035461779683828354, + 0.011377200484275818, + -0.0056995367631316185, + -0.02538466826081276, + -0.042772091925144196, + 0.03729136660695076, + 0.05132739245891571, + 0.09341271221637726, + 0.04664471372961998, + 0.05192733183503151, + 0.05113794282078743, + -0.05214328318834305, + -0.036046355962753296, + -0.09388439357280731, + 0.05226139351725578, + -0.1322776824235916, + -0.015951599925756454, + -0.09741613268852234, + -0.05541183054447174, + 0.01643245294690132, + 0.016926417127251625, + 0.04591572657227516, + -0.0815514549612999, + -0.00504877045750618, + 0.0032565670553594828, + 0.050915516912937164, + -0.020275676622986794, + 0.026915065944194794, + 0.11294045299291611, + -0.019122984260320663, + 0.04941551014780998, + 0.0014608751516789198 + ], + "racquet-bold||*new*,sports,tennis,squash,pickleball": [ + 0.010115498676896095, + -0.014053404331207275, + -0.030084781348705292, + -0.014837301336228848, + -0.002358522266149521, + -0.02667693980038166, + 0.06586722284555435, + -0.006827599834650755, + 0.010698274709284306, + 0.06481017917394638, + -0.009018958546221256, + -0.012471710331737995, + -0.017840605229139328, + -0.0023178390692919493, + 0.04330941662192345, + -0.024594489485025406, + 0.11408063769340515, + -0.01006348431110382, + 0.00033877897658385336, + 0.026261035352945328, + -0.031455907970666885, + -0.03690696880221367, + 0.0312186386436224, + 0.008258175104856491, + -0.0001885238743852824, + 0.025471458211541176, + 0.06210445985198021, + 0.045895252376794815, + -0.056948885321617126, + -0.10554123669862747, + -0.07645674049854279, + 0.011741099879145622, + 0.03497590497136116, + 0.04524165019392967, + -0.011528990231454372, + -0.0661114752292633, + -0.009746462106704712, + 0.004723575431853533, + -0.0866096094250679, + 0.02200998365879059, + 0.059878718107938766, + -0.08647402375936508, + 0.01505088061094284, + 0.13475540280342102, + -0.022244544699788094, + 0.056886278092861176, + -0.05040640011429787, + 0.041773196309804916, + 0.010599425993859768, + 0.014931930229067802, + -0.05407482758164406, + -0.06438688933849335, + -0.04344738647341728, + 0.0008985212771221995, + 0.05367737263441086, + 0.013312283903360367, + -0.062462907284498215, + -0.002614367287606001, + 0.03440487012267113, + 0.014980089850723743, + 0.03782927244901657, + -0.04903293028473854, + 0.007689234334975481, + 0.05801922455430031, + -0.04165486991405487, + -0.04364013671875, + -0.020923137664794922, + 0.0221403818577528, + -0.007402507122606039, + 0.07290734350681305, + -0.0004492462321650237, + 0.07329598814249039, + 0.0028022844344377518, + 0.014108705334365368, + 0.0018257308984175324, + 0.05762094631791115, + -0.01844342052936554, + 0.03301278129220009, + -0.0026019758079200983, + 0.009446559473872185, + -0.08094055205583572, + -0.062246765941381454, + -0.12335614860057831, + -0.009637719951570034, + 0.06305074691772461, + 0.012959696352481842, + -0.01314220018684864, + -0.00777768949046731, + -0.061332765966653824, + -0.0016777050914242864, + -0.08293763548135757, + 0.05934075638651848, + -0.005695382133126259, + 0.044250939041376114, + -0.15511904656887054, + 0.06083575263619423, + -0.006214389577507973, + 0.022992698475718498, + -0.07155738025903702, + 0.06589733064174652, + 0.05650433152914047, + -0.013856354169547558, + 0.11211984604597092, + 0.13112688064575195, + -0.07303274422883987, + -0.04510959982872009, + -0.06519406288862228, + 0.026263678446412086, + 0.03884231299161911, + 0.04138733446598053, + -0.07138016074895859, + -0.035558827221393585, + -0.05636254698038101, + -0.04856368899345398, + -0.06797245889902115, + 0.014460314996540546, + -0.03104320354759693, + 0.022979188710451126, + 0.03685146942734718, + 0.033967502415180206, + 0.02152668684720993, + -0.03244520351290703, + -0.03442879021167755, + -0.07171603292226791, + -0.04152907803654671, + 0.037375785410404205, + 0.04146452620625496, + -1.066013955514203e-35, + 0.028430458158254623, + 0.027689404785633087, + -0.0011487144511193037, + 0.08620566874742508, + -0.10683741420507431, + -0.03508230671286583, + -0.02387944795191288, + -0.05458500608801842, + -0.029418019577860832, + -0.015251166187226772, + 0.05130495876073837, + 0.06533614546060562, + 0.015182186849415302, + 0.04286806657910347, + 0.10549104958772659, + -0.05837513506412506, + 0.013178815133869648, + 0.002441602060571313, + -0.0022351820953190327, + 0.02269434556365013, + -0.045713700354099274, + 0.11502967774868011, + 0.0075668590143322945, + -0.01933257095515728, + -0.08267992734909058, + -0.002427687169983983, + 0.06306219846010208, + -0.09133392572402954, + -0.024217680096626282, + 0.03067021816968918, + 0.03616773709654808, + -0.04200388491153717, + 0.03385237231850624, + 0.04231926426291466, + -0.008722665719687939, + 0.05195886269211769, + -0.033034663647413254, + -0.0777197852730751, + 0.051151618361473083, + -0.0013192356564104557, + -0.03260773792862892, + -0.05022263899445534, + -0.005993708036839962, + -0.003483196720480919, + 0.024623241275548935, + 0.010697953402996063, + -0.036013536155223846, + 0.01752525009214878, + -0.07834770530462265, + -0.053418178111314774, + 0.06842320412397385, + -0.06819260865449905, + 0.08727062493562698, + 0.020850634202361107, + 0.0013369505759328604, + 0.02561855874955654, + -0.0043174391612410545, + 0.04479080066084862, + -0.05484016612172127, + -0.05537214130163193, + 0.07918531447649002, + -0.013501150533556938, + -0.018480926752090454, + 0.035959046334028244, + -0.0936114639043808, + 0.07227355986833572, + -0.045930229127407074, + -0.04154173284769058, + 0.04949953407049179, + -0.0033872940111905336, + 0.04808888956904411, + 0.05952128395438194, + 0.01527249813079834, + 0.09715308248996735, + 0.052010759711265564, + 0.05072049796581268, + 0.046931155025959015, + 0.019338227808475494, + -0.022571098059415817, + -0.08873079717159271, + -0.05213041976094246, + 0.06747621297836304, + -0.1227700337767601, + 0.052907902747392654, + -0.09275037795305252, + 0.037863124161958694, + -0.01741792820394039, + -0.10443288832902908, + 0.04475921392440796, + 0.03316352888941765, + -0.12159203737974167, + -0.05369700491428375, + -0.0633406713604927, + -0.006338248495012522, + -0.05360023304820061, + -1.7776297607584884e-33, + 0.061661165207624435, + -0.030373085290193558, + -0.001929416903294623, + 0.02438376657664776, + 0.07373490929603577, + 0.010036444291472435, + 0.046350739896297455, + 0.05544174090027809, + 0.033678676933050156, + -0.07869187742471695, + 0.012738216668367386, + -0.0731448382139206, + -0.037083402276039124, + -0.07618587464094162, + 0.010798810049891472, + 0.06297601014375687, + -0.02850382961332798, + 0.010558975860476494, + 0.01974693313241005, + 0.013180248439311981, + -0.045385148376226425, + 0.014304626733064651, + 0.011746165342628956, + -0.0015260112704709172, + -0.02895667962729931, + 0.01233921479433775, + -0.008193912915885448, + 0.009801837615668774, + -0.04164988920092583, + 0.014425589703023434, + -0.011725052259862423, + -0.006518075708299875, + 0.07859183102846146, + 0.07842905074357986, + -0.0703604593873024, + 0.06489253044128418, + 0.057971592992544174, + -0.05084219202399254, + 0.042065758258104324, + -0.010528712533414364, + -0.010715089738368988, + -0.03600568324327469, + 0.012513862922787666, + 0.06540986150503159, + 0.016688795760273933, + 0.010443365201354027, + -0.01833888329565525, + 0.044384412467479706, + -0.008546195924282074, + 0.017344573512673378, + -0.008077559992671013, + -0.008859829045832157, + -0.06044132634997368, + 0.008390392176806927, + -0.03220096603035927, + -0.006923303008079529, + -0.022152768447995186, + -0.07813910394906998, + -0.021899567916989326, + 0.010875368490815163, + -0.03723042458295822, + 0.10015730559825897, + -0.08663903176784515, + 0.03894171491265297, + 0.030559010803699493, + 0.017133507877588272, + -0.0538489855825901, + -0.02597084455192089, + -0.08998221158981323, + -0.059409141540527344, + -0.05385800451040268, + 0.04107895866036415, + -0.026022573933005333, + 0.009904853068292141, + 0.04044293984770775, + -0.040598541498184204, + 0.02364097349345684, + 0.08668789267539978, + -0.0048834215849637985, + 0.10453981161117554, + -0.054520051926374435, + 0.061173148453235626, + -0.09398434311151505, + 0.015070311725139618, + 0.03167461231350899, + 0.10829141736030579, + -0.017597315832972527, + 0.017741842195391655, + -0.026976503431797028, + -0.028177933767437935, + 0.053932733833789825, + 0.06797586381435394, + -0.020591776818037033, + 0.08312666416168213, + 0.03226907551288605, + -2.2150686618260806e-08, + 0.05726560950279236, + 0.10296627879142761, + -0.022036630660295486, + -0.016407743096351624, + 0.005229553673416376, + 0.01797519624233246, + -0.051986970007419586, + -0.07679995149374008, + 0.017829053103923798, + -0.02900519035756588, + -0.011824741028249264, + -0.013830132782459259, + 0.008551700972020626, + -0.014021676033735275, + -0.043169230222702026, + 0.07266589999198914, + -0.017606230452656746, + 0.027339737862348557, + -0.03906162083148956, + 0.008396511897444725, + 0.03378923609852791, + -0.009422950446605682, + 0.040115948766469955, + 0.007356490474194288, + -0.06680183112621307, + -0.06168925762176514, + -0.13763868808746338, + -0.12123839557170868, + 0.024450404569506645, + 0.0646853968501091, + 0.06454522162675858, + 0.028886133804917336, + 0.07833277434110641, + 0.0007531641749665141, + -0.06729257851839066, + 0.07806837558746338, + -0.049628593027591705, + 0.004712103866040707, + 0.010957039892673492, + 0.12401777505874634, + -0.05549648404121399, + -0.008332339115440845, + -0.02435263618826866, + -0.009613296948373318, + -0.061610154807567596, + -0.058024220168590546, + -0.021678593009710312, + -0.09218146651983261, + -0.07482043653726578, + -0.040729548782110214, + -0.03964117541909218, + 0.0008204696350730956, + 0.006563328206539154, + -0.009015029296278954, + 0.027522966265678406, + 0.052116889506578445, + -0.01810717023909092, + 0.02176203951239586, + -0.04228167235851288, + -0.008593659847974777, + 0.08162480592727661, + -0.09666448086500168, + 0.006990710273385048, + 0.10928035527467728 + ], + "radical-bold||\u221a,radix,radicand,square root,squareroot,mathematics,arithmetic,calculator": [ + 0.008799886330962181, + -0.04685920849442482, + -0.08796318620443344, + 0.05392991751432419, + -0.03402120992541313, + -0.0858558863401413, + -0.03575192391872406, + 0.019203703850507736, + -0.01102260872721672, + 0.01695460081100464, + 0.058573804795742035, + 0.05770903825759888, + 0.06790174543857574, + 0.009415693581104279, + -0.016167491674423218, + 0.05612528324127197, + -0.06520307064056396, + 0.02012128010392189, + -0.024829592555761337, + 0.039402008056640625, + 0.043032094836235046, + -0.00327310711145401, + -0.012455456890165806, + 0.03742784634232521, + 0.09435198456048965, + 0.004944861400872469, + 0.10148349404335022, + -0.03791609779000282, + 0.0662371814250946, + 0.005863599479198456, + 0.02574480138719082, + 0.03871902450919151, + 0.16777484118938446, + 0.028931135311722755, + -0.04061441123485565, + 0.0277306716889143, + 0.010160533711314201, + 0.008331235498189926, + 0.025211432948708534, + 0.03351430594921112, + -0.05436098948121071, + -0.1181366965174675, + 0.038473062217235565, + 0.07550008594989777, + -0.024505510926246643, + -0.054061319679021835, + -0.033480748534202576, + 0.02186634950339794, + -0.007958469912409782, + -0.03913700580596924, + -0.049004025757312775, + -0.039693690836429596, + -0.16146057844161987, + 0.011502979323267937, + 0.008270890451967716, + 0.03875278681516647, + -0.010569704696536064, + -0.015885820612311363, + 0.0706782117486, + -0.008988178335130215, + 0.040775977075099945, + 0.01878036931157112, + 0.009211287833750248, + -0.014483669772744179, + -0.06087813898921013, + 0.0333879254758358, + 0.0430731326341629, + -0.01904354989528656, + 0.002532607177272439, + 0.01579609140753746, + -0.02817954309284687, + 0.018272964283823967, + -0.03742891177535057, + -0.014189953915774822, + -0.008113618940114975, + -0.0497162826359272, + -0.01971794106066227, + -0.00032332344562746584, + -0.05782527104020119, + -0.058777499943971634, + -0.07895667850971222, + -0.059266384690999985, + -0.019589580595493317, + -0.036815255880355835, + 0.03928287699818611, + 0.0865296944975853, + -0.004558957647532225, + 0.0012245019897818565, + -0.009858322329819202, + -0.05471671000123024, + -0.007831869646906853, + -0.032981134951114655, + 0.013085716404020786, + 0.000945327861700207, + -0.02552640251815319, + 0.017363110557198524, + 0.09554067999124527, + -0.024868035688996315, + -0.03844217211008072, + 0.037656739354133606, + 0.014571157284080982, + 0.010105985216796398, + -0.02405564673244953, + 0.006744225509464741, + -0.019493116065859795, + -0.060954056680202484, + 0.05158247798681259, + -0.006289347540587187, + 0.008630363270640373, + 0.06501279771327972, + -0.012733852490782738, + -0.043500084429979324, + -0.010640759952366352, + -0.033008553087711334, + 0.06409595161676407, + 0.025656353682279587, + -0.009914602153003216, + -0.029380405321717262, + 0.08535106480121613, + 0.06593884527683258, + 0.021023152396082878, + 0.009638424962759018, + -0.012789842672646046, + -0.007011642679572105, + 0.029117492958903313, + -0.00012799352407455444, + -0.027717623859643936, + 1.791295800941759e-33, + 0.03038495033979416, + 0.08921492844820023, + -0.038644321262836456, + 0.048920441418886185, + -0.055885206907987595, + -0.04690226912498474, + -0.06965325772762299, + -0.083702452480793, + 0.02158864587545395, + 0.10333215445280075, + 0.11039809882640839, + 0.11463718861341476, + 0.03482433035969734, + 0.014455682598054409, + 0.10868662595748901, + -0.01616668701171875, + 0.04898132011294365, + -0.013906262814998627, + -0.04051641374826431, + -0.029304781928658485, + -0.03951384499669075, + 0.053783610463142395, + -0.0894283801317215, + 0.027007218450307846, + -0.03805618733167648, + 0.02134307101368904, + 0.07206737995147705, + -0.007533784955739975, + 0.018483594059944153, + 0.020825130864977837, + 0.015557642094790936, + 0.04044875502586365, + -0.0339006632566452, + 0.0043240077793598175, + 0.0034053302370011806, + 0.01352324616163969, + -0.03625195100903511, + -0.05454007536172867, + 0.02319946326315403, + -0.030086694285273552, + -0.09022468328475952, + -0.013423923403024673, + 0.02746935561299324, + -0.012625263072550297, + 0.11588301509618759, + 0.057094063609838486, + -0.02430829405784607, + -0.05098946392536163, + 0.07900813221931458, + -0.006954601500183344, + -0.09409881383180618, + 0.0020190777722746134, + 0.08058808743953705, + 0.02856626734137535, + 0.05964457616209984, + -0.06933577358722687, + -0.0279905516654253, + 0.07533345371484756, + -0.012340080924332142, + 0.05281786620616913, + -0.027936123311519623, + -0.029689649119973183, + -0.02693098597228527, + -0.09503331035375595, + -0.16134069859981537, + 0.03508831560611725, + -0.1824028342962265, + -0.05045130476355553, + 0.0449628047645092, + 0.030354026705026627, + -0.03633459284901619, + 0.0791173204779625, + 0.015364403836429119, + 0.050190988928079605, + 0.0035344110801815987, + 0.020939050242304802, + 0.049022920429706573, + 0.04535714164376259, + -0.03693845868110657, + -0.061192434281110764, + -0.05970056354999542, + 0.02895050123333931, + -0.08075688779354095, + 0.006111376453191042, + 0.029081832617521286, + -0.0022195640485733747, + -0.020573826506733894, + -0.044426172971725464, + -0.03322870656847954, + -0.04415128752589226, + -0.07897625863552094, + -0.000875357014592737, + -0.017750056460499763, + -0.024928508326411247, + -0.07026726007461548, + -3.242051255792286e-33, + -0.06151624396443367, + 0.04183310270309448, + -0.09525448828935623, + 0.04139186069369316, + -0.0001565132843097672, + 0.0945475846529007, + -0.00871971994638443, + -0.07603125274181366, + -0.0036881675478070974, + -0.11976838111877441, + 0.0058898599818348885, + -0.010352498851716518, + -0.035548873245716095, + -0.08894208818674088, + -0.011770831421017647, + -0.001420391141436994, + 0.06825320422649384, + -0.05345471203327179, + -0.08175332099199295, + 0.023895414546132088, + -0.08091955631971359, + 0.04689502716064453, + -0.009023171849548817, + -0.0025743411388248205, + 0.009065345861017704, + 0.014306488446891308, + 0.01139792986214161, + -0.030343331396579742, + 0.03282138705253601, + 0.008902028203010559, + 0.036554671823978424, + -0.01725625991821289, + 0.04903547093272209, + 0.018897980451583862, + -0.08785403519868851, + -0.006929305847734213, + 0.053625985980033875, + -0.030363479629158974, + -0.01213507354259491, + -0.03170808032155037, + 0.05471932888031006, + -0.05007117614150047, + 0.09616991132497787, + 0.06000747159123421, + -0.0151425302028656, + -0.01918734423816204, + 0.033434223383665085, + -0.03524366393685341, + 0.02097739465534687, + 0.022079959511756897, + 0.037998754531145096, + -0.08576053380966187, + 0.03963644057512283, + 0.0006431108922697604, + -0.038676634430885315, + -0.04036029428243637, + 0.0789417177438736, + 0.057472072541713715, + 0.0281143169850111, + 0.01316635962575674, + -0.04504724219441414, + 0.08971118927001953, + 0.0349259153008461, + 0.018817482516169548, + -0.0927780494093895, + -0.09625867754220963, + 0.014565608464181423, + 0.020519347861409187, + -0.046737123280763626, + -0.004102378152310848, + -0.048636544495821, + 0.04999905452132225, + 0.010572466999292374, + 0.020460112020373344, + -0.03472466394305229, + -0.021208548918366432, + -0.005884363315999508, + 0.022126849740743637, + -0.0224524587392807, + 0.05040588602423668, + 0.07589606940746307, + 0.08170142024755478, + -0.07041071355342865, + -0.01932106725871563, + -0.057774677872657776, + 0.04154537245631218, + 0.03358516842126846, + 0.002559665823355317, + 0.027342254295945168, + -0.11837232857942581, + -0.05360448360443115, + 0.05966651439666748, + -0.06482312083244324, + -0.02719070017337799, + 0.060885973274707794, + -2.2622858253384948e-08, + -0.031851597130298615, + 0.027347613126039505, + -0.05209928750991821, + -0.05766528472304344, + 0.11663331836462021, + 0.011388563551008701, + 0.023376641795039177, + -0.027560371905565262, + -0.06992580741643906, + 0.01391200628131628, + 0.012529231607913971, + 0.08293921500444412, + -0.06442634761333466, + -0.030645256862044334, + 0.05013265460729599, + 0.01861368678510189, + 0.05623883008956909, + -0.0390363447368145, + 0.015069529414176941, + -0.03038407303392887, + 0.02722891792654991, + -0.005239563994109631, + 0.08489091694355011, + -0.016436517238616943, + -0.044478483498096466, + 0.06965319812297821, + -0.05121459811925888, + -0.005918670445680618, + 0.05050045624375343, + 0.07095783948898315, + 0.090018630027771, + 0.060912810266017914, + 0.03302149102091789, + -0.03233117237687111, + -0.10704512149095535, + -0.03176993131637573, + 0.039041176438331604, + 0.06650308519601822, + -0.026124080643057823, + 0.1337631493806839, + -0.022936126217246056, + -0.052786026149988174, + -0.024795161560177803, + -0.006408665794879198, + -0.013517758809030056, + -0.004394573625177145, + 0.03987384960055351, + 0.0027181145269423723, + -0.05146818608045578, + -0.1404743641614914, + -0.06529857963323593, + 0.022649843245744705, + -0.014826533384621143, + 0.027345577254891396, + -0.025300808250904083, + -0.04224302992224693, + -0.030940327793359756, + 0.03553400933742523, + -0.0007725274772383273, + 0.017007149755954742, + 0.06775640696287155, + 0.04938964918255806, + 0.015482399612665176, + 0.05752967298030853 + ], + "radio-bold||broadcast,fm,am,xm,transmitter,receiver": [ + 0.0860496237874031, + -0.018913472071290016, + -0.12327584624290466, + -0.011188684962689877, + 0.04684656858444214, + -0.003909166902303696, + 0.07320316135883331, + -0.02957383543252945, + -0.04961578547954559, + 0.0015262977685779333, + 0.01058234553784132, + -0.006018774583935738, + 0.11748502403497696, + -0.03298588842153549, + 0.016572685912251472, + 0.013602804392576218, + 0.06292050331830978, + -0.03372060880064964, + 0.026100825518369675, + 0.02273239567875862, + 0.019223392009735107, + 0.08066198229789734, + 0.0059276423417031765, + 0.024600477889180183, + 0.05778995156288147, + -0.052425943315029144, + 0.07050447165966034, + 0.0419011153280735, + 0.03319721296429634, + -0.08217696845531464, + -0.04618550464510918, + 0.05457371845841408, + 0.1500251591205597, + 0.026042237877845764, + -0.008533787913620472, + -0.0030762716196477413, + 0.011929847300052643, + -0.051034849137067795, + -0.058475036174058914, + 0.06513603031635284, + 0.011747936718165874, + -0.061145953834056854, + -0.003153532976284623, + 0.0029676479753106833, + -0.09028615802526474, + -0.017213130369782448, + -0.01380204502493143, + -0.006016735453158617, + -0.016437258571386337, + -0.01833753101527691, + 0.0596144013106823, + -0.051094625145196915, + -0.1122901439666748, + 0.15414421260356903, + 0.05181606113910675, + -0.027137672528624535, + -0.1089937686920166, + 0.05118447169661522, + 0.011384929530322552, + 0.061489395797252655, + -0.02995634637773037, + 0.04407583177089691, + 0.0007126561249606311, + -0.00276264944113791, + 0.07338216155767441, + 0.0003629039856605232, + -0.044199876487255096, + 0.048276387155056, + -0.019524477422237396, + 0.01011786051094532, + 0.004742369055747986, + -0.021263226866722107, + 0.00046592988655902445, + -0.0668187066912651, + -0.0007770600495859981, + 0.01713727042078972, + 0.05507096275687218, + 0.018471304327249527, + 0.001331010484136641, + -0.004771532025188208, + -0.11568263173103333, + -0.10336565971374512, + -0.05936584249138832, + -0.10704001039266586, + 0.07130283117294312, + 0.0013901970814913511, + -0.0656161680817604, + -0.006836998742073774, + -0.02876329980790615, + 0.017445076256990433, + -0.16130374372005463, + 0.020482143387198448, + -0.01312517561018467, + -0.0021011359058320522, + -0.03722400218248367, + 0.023320605978369713, + 0.09076853096485138, + -0.03013189509510994, + -0.00021824092254973948, + 0.09098557382822037, + 0.08960545063018799, + -0.0009152627317234874, + 0.004817847162485123, + -0.0028721941635012627, + -0.06444966793060303, + -0.1117548793554306, + -0.013660337775945663, + 0.07282837480306625, + 0.00014227573410607874, + 0.026908325031399727, + -0.011667232029139996, + -0.03659084066748619, + -0.011461898684501648, + -0.0551900677382946, + -0.022350415587425232, + 0.034738361835479736, + -0.0195135660469532, + 0.0617729052901268, + 0.07465965300798416, + 0.007698670960962772, + -0.05314962938427925, + -0.06141233444213867, + -0.019498342648148537, + 0.02689443528652191, + 0.04740867018699646, + -0.004956845659762621, + 0.03289604187011719, + -1.2185995449959485e-33, + 0.015557520091533661, + 0.09277543425559998, + -0.06244070082902908, + 0.10239645838737488, + 0.008212219923734665, + 0.06513147056102753, + -0.02043817564845085, + 0.008477501571178436, + 0.008871769532561302, + 0.08466880023479462, + 0.057943761348724365, + 0.15376634895801544, + -0.028776150196790695, + 0.02508525364100933, + 0.04554612934589386, + -0.054890599101781845, + -0.014369059354066849, + -0.012242971919476986, + -0.09362325817346573, + 0.02554292418062687, + -0.009573766961693764, + 0.041476618498563766, + -0.05164605379104614, + -0.05022977292537689, + 0.07510840147733688, + -0.0035631228238344193, + -0.01970430091023445, + -0.035574138164520264, + -0.02589029259979725, + 0.023206358775496483, + 0.03618090972304344, + 0.04565901681780815, + 0.01248687319457531, + 0.025080382823944092, + -0.005672011990100145, + -0.011458635330200195, + -0.06540145725011826, + -0.01680675894021988, + -0.06282702833414078, + -0.030596984550356865, + 0.006885971873998642, + -0.03619532659649849, + -0.04971726983785629, + -0.0602453239262104, + 0.034573256969451904, + 0.04665223881602287, + -0.027768071740865707, + -0.06311425566673279, + 0.061564087867736816, + 0.045436978340148926, + -0.015617404133081436, + -0.023278333246707916, + -0.03667178750038147, + -0.014186066575348377, + 0.12506164610385895, + -0.0049102697521448135, + -0.021790700033307076, + 0.09112708270549774, + -0.0033230846747756004, + 0.03945930674672127, + -0.03983951359987259, + 0.017843050882220268, + 0.046247273683547974, + -0.0865555852651596, + 0.01961119845509529, + 0.036725230515003204, + -0.0426008403301239, + -0.03301514312624931, + 0.05959136784076691, + 0.009744247421622276, + -0.010583518072962761, + 0.01983986794948578, + 0.053026530891656876, + 0.003428560448810458, + 0.0032022781670093536, + 0.06115870922803879, + -0.020008472725749016, + 0.007693525403738022, + -0.003650031751021743, + -0.016223760321736336, + -0.0409839004278183, + 0.034728266298770905, + -0.07766316086053848, + 0.06407415866851807, + -0.004110083449631929, + 0.028865838423371315, + -0.019431719556450844, + -0.028755752369761467, + -0.034344643354415894, + 0.07757065445184708, + -0.06674855202436447, + 0.07453437149524689, + -0.08350782096385956, + -0.02115011215209961, + -0.08747255802154541, + -1.2407552946626706e-34, + -0.019904835149645805, + 0.09558071196079254, + -0.043505389243364334, + -0.06073250621557236, + -0.050694312900304794, + -0.03513915464282036, + -0.011714480817317963, + 0.04461490362882614, + -0.03813932463526726, + -0.0026008309796452522, + 0.026579376310110092, + -0.09135012328624725, + -0.06040675565600395, + 0.013508523814380169, + -0.0860835611820221, + 0.01195066049695015, + 0.05556467920541763, + 0.037279706448316574, + -0.019147556275129318, + -0.002536583924666047, + -0.04886482283473015, + 0.04894011840224266, + -0.028609100729227066, + 0.04008723050355911, + -0.012788912281394005, + -0.0019009376410394907, + 0.05744778364896774, + 0.03840797021985054, + -0.03493816405534744, + -0.001259838929399848, + -0.05025894567370415, + -0.04681870713829994, + 0.02814350090920925, + 0.02048790268599987, + 0.006257211789488792, + 0.058372970670461655, + 0.03887424245476723, + 0.05438801646232605, + -0.0001453736622352153, + -0.04835573211312294, + -0.01750577613711357, + 0.02944597229361534, + 0.04324609041213989, + 0.06101846694946289, + -0.05921819806098938, + -0.04171619564294815, + -0.024740230292081833, + 0.010184669867157936, + 0.004365819972008467, + 0.03749161213636398, + 0.015373523347079754, + -0.1473170518875122, + -0.015633538365364075, + -0.001878340495750308, + -0.09442779421806335, + -0.032260626554489136, + 0.01572812721133232, + -0.00662375008687377, + -0.00364352366887033, + 0.029251251369714737, + 0.07851507514715195, + 0.00044416371383704245, + -0.020291874185204506, + -0.03315197676420212, + -0.019299454987049103, + -0.0787796676158905, + 0.05345975607633591, + -0.03071505017578602, + 0.022359687834978104, + 0.07734409719705582, + 0.05345432832837105, + -0.043944135308265686, + 0.03217817097902298, + 0.008559859357774258, + -0.009461049921810627, + -0.0003347050223965198, + -0.0012896000407636166, + 0.0704985037446022, + -0.0332673117518425, + -0.01044060941785574, + -0.011103696189820766, + 0.04841412603855133, + -0.04044764116406441, + 0.040853261947631836, + -0.007526564411818981, + 0.09155102074146271, + 0.055316124111413956, + 0.02947702817618847, + 0.009469741024076939, + -0.07078623026609421, + 0.031134409829974174, + 0.0941714495420456, + -0.05437164008617401, + -0.03340161591768265, + -0.04089492931962013, + -1.9520205896128573e-08, + -0.04369200021028519, + -0.10383394360542297, + -0.08993032574653625, + -0.07230538874864578, + 0.030548855662345886, + -0.007629804313182831, + 0.029181307181715965, + -0.1470802277326584, + -0.000658535398542881, + -0.036137908697128296, + 0.004356695804744959, + -0.0043897381983697414, + -0.08479056507349014, + -0.025120573118329048, + 0.09378357976675034, + -0.025590304285287857, + -0.09230466187000275, + 0.03738532215356827, + -0.03276846930384636, + -0.035378314554691315, + -0.029664359986782074, + 0.03643932566046715, + 0.05364679545164108, + -0.008513216860592365, + 0.11614347249269485, + 0.018201787024736404, + 0.012795969843864441, + 0.011641224846243858, + 0.09455511718988419, + 0.09139721840620041, + 0.029468661174178123, + 0.04328726977109909, + -0.04612698033452034, + 0.008681033737957478, + -0.11307235062122345, + -0.0075925192795693874, + -0.015749135985970497, + 0.020193438977003098, + -0.012352312915027142, + 0.07937268167734146, + 0.026347583159804344, + -0.06310711055994034, + -0.061195626854896545, + 0.01088312454521656, + -0.010719269514083862, + 0.03789797052741051, + 0.06883040070533752, + -0.02731487713754177, + -0.041314102709293365, + -0.1476469337940216, + -0.038619332015514374, + 0.027141256257891655, + 0.044729091227054596, + -0.03457453474402428, + -0.04908759891986847, + -0.00011414261825848371, + 0.01913893036544323, + -0.018030190840363503, + -0.0005433089681901038, + -0.007860887795686722, + 0.01929168775677681, + 0.037056196480989456, + 0.008273828774690628, + -0.00016253710782621056 + ], + "radio-button-bold||input,checkbox,checked": [ + 0.06621658802032471, + -0.01335139013826847, + -0.1637933850288391, + 0.04795904830098152, + 0.062247134745121, + -0.03644305095076561, + 0.120501309633255, + -0.0739113986492157, + -0.024156086146831512, + 0.0023131852503865957, + -0.01898971013724804, + 0.012551544234156609, + 0.06118781492114067, + 0.0018087412463501096, + 0.013717780821025372, + -0.026638265699148178, + -0.026488041505217552, + -0.0760691910982132, + -0.020095940679311752, + -0.019624967128038406, + -0.07674529403448105, + 0.0214085690677166, + 0.07856466621160507, + 0.00284636695869267, + -0.0022376645356416702, + -0.06268159300088882, + 0.06316687911748886, + -0.025851109996438026, + -0.05497724562883377, + -0.039992764592170715, + -0.019063787534832954, + 0.0026065928395837545, + 0.08551526069641113, + -0.042496275156736374, + 0.009759967215359211, + -0.014019345864653587, + -0.02175150439143181, + -0.04991292953491211, + -0.05934450402855873, + -0.017037255689501762, + -0.07260549813508987, + -0.10173919051885605, + -0.0383601151406765, + 0.00352626945823431, + -0.10550065338611603, + -0.024354051798582077, + -0.04457232356071472, + -0.0381409153342247, + 0.08879094570875168, + 0.00010776310955407098, + 0.07617730647325516, + -0.07290913164615631, + -0.0024767285212874413, + 0.07142506539821625, + -0.005248169880360365, + -0.03446162864565849, + -0.08799837529659271, + 0.012065477669239044, + 0.035229090601205826, + 0.004395834635943174, + -0.046480368822813034, + 0.004257406108081341, + 0.0047368332743644714, + -0.009648839943110943, + 0.09479480981826782, + 0.08546474575996399, + -0.05549583584070206, + -0.029060477390885353, + -0.04426697641611099, + 0.03558562695980072, + 0.014234612695872784, + 0.02470475062727928, + 0.03388405591249466, + -0.060009803622961044, + -0.054767023772001266, + -0.02173476293683052, + 0.05347725749015808, + 0.007853030227124691, + 0.006544475443661213, + 0.03999647498130798, + -0.14763745665550232, + -0.04281911626458168, + -0.11511404812335968, + -0.0727546438574791, + 0.04266813024878502, + 0.047882329672575, + -0.038557130843400955, + -0.018816452473402023, + -0.029313046485185623, + -0.05653313174843788, + -0.061619773507118225, + 0.09450533241033554, + -0.001980283297598362, + 0.016520878300070763, + 0.028715912252664566, + 0.005725078284740448, + 0.06774714589118958, + 0.03183121234178543, + -0.04003332555294037, + 0.06884807348251343, + 0.07626413553953171, + -0.01563919335603714, + -0.056168004870414734, + -0.044278498739004135, + 0.04399639740586281, + -0.030791139230132103, + 0.0019068451365455985, + 0.08959786593914032, + -0.02338149957358837, + -0.007010547909885645, + -0.04975494369864464, + -0.06606252491474152, + 0.07318340241909027, + 0.0015721163945272565, + -0.044848646968603134, + 0.05369321629405022, + 0.03502224385738373, + -0.014738500118255615, + 0.010432116687297821, + 0.03954955190420151, + -0.0029729714151471853, + -0.0609954334795475, + -0.1475980281829834, + -0.03583773598074913, + 0.06898277252912521, + -0.01316504180431366, + 0.07089325040578842, + -2.560173615174163e-33, + 0.09544284641742706, + 0.12153840810060501, + -0.028732825070619583, + 0.06349405646324158, + 0.03016575239598751, + 0.05420377478003502, + -0.04810859262943268, + 0.006916847545653582, + -0.06592518836259842, + 0.07330841571092606, + 0.08027585595846176, + 0.08926287293434143, + -0.049057845026254654, + -0.039655864238739014, + 0.020052703097462654, + -0.04098186269402504, + -0.09666832536458969, + 0.03431658446788788, + -0.07404930889606476, + -0.04303715378046036, + -0.005453966557979584, + 0.015755582600831985, + -0.03664305806159973, + -0.013399160467088223, + -0.014376235194504261, + 0.038519274443387985, + 0.044473059475421906, + 0.03600476682186127, + 0.019181890413165092, + 0.025663748383522034, + 0.006035518832504749, + -0.026124319061636925, + 0.01875918172299862, + 0.04673199728131294, + -0.048018231987953186, + 0.033532481640577316, + -0.06814096868038177, + 0.027849115431308746, + -0.002810535952448845, + 0.012466492131352425, + 0.07165871560573578, + -0.070218525826931, + 0.01768830232322216, + -0.004939780570566654, + 0.03978092223405838, + 0.07017157971858978, + 0.027447031810879707, + -0.09129837900400162, + 0.021278690546751022, + -0.04218224808573723, + -0.02953205816447735, + 0.020554982125759125, + -0.03229711204767227, + -0.012655703350901604, + 0.01655365712940693, + -0.03232533484697342, + 0.050511687994003296, + 0.10478358715772629, + -0.004515621345490217, + 0.024684550240635872, + 0.01297852024435997, + 0.029022861272096634, + 0.05067523941397667, + -0.03213375061750412, + -0.032496098428964615, + 0.0697152391076088, + -0.10142355412244797, + 0.05309703201055527, + 0.08096295595169067, + -0.005997289903461933, + -0.012439812533557415, + 0.04274113103747368, + 0.037187639623880386, + 0.0034866754431277514, + -0.021533142775297165, + 0.059432100504636765, + 0.019658759236335754, + -0.058592505753040314, + 0.04614202305674553, + -0.04888075590133667, + -0.04439998418092728, + 0.010964767076075077, + -0.10801491886377335, + 0.08760706335306168, + 0.06301736831665039, + -0.05658183619379997, + -0.05533502250909805, + -0.052084796130657196, + -0.037676285952329636, + 0.006199258379638195, + -0.00875246711075306, + 0.03011971525847912, + -0.03264496475458145, + -0.09231908619403839, + -0.04176196828484535, + -1.6843481769602454e-34, + 0.033225882798433304, + 0.05731035768985748, + 0.011101346462965012, + -0.005681279581040144, + -0.021171899512410164, + -0.049826886504888535, + -0.0344112366437912, + 0.05035174638032913, + 0.0307229682803154, + -0.01794036477804184, + 0.05933152511715889, + -0.05617719143629074, + 0.012987755239009857, + -0.02941594272851944, + -0.05499664321541786, + 0.006078675854951143, + 0.04010332375764847, + 0.0351935550570488, + -0.024888912215828896, + 0.013576198369264603, + 0.014005308039486408, + 0.04323597624897957, + -0.012312841601669788, + 0.12447112798690796, + -0.06410769373178482, + -0.012826578691601753, + 0.0076052346266806126, + 0.0037132082507014275, + 0.044042397290468216, + 0.08225912600755692, + -0.047080930322408676, + 0.006573895458132029, + 0.0008255918510258198, + 0.06241217255592346, + 0.035884201526641846, + -0.01140043418854475, + 0.05655689164996147, + 0.06056860834360123, + 0.05312952399253845, + 0.008796949870884418, + -0.05443610996007919, + -0.02047725021839142, + 0.038473621010780334, + 0.02756841480731964, + -0.062286317348480225, + -0.007470064330846071, + -0.005720240063965321, + 0.0644441545009613, + -0.038836922496557236, + 0.02252311259508133, + 0.010323157534003258, + -0.0838271975517273, + -0.022855209186673164, + 0.028859615325927734, + -0.04026676341891289, + -4.937695121043362e-05, + -0.013610188849270344, + -0.01605208031833172, + 0.0381866954267025, + 0.04172724112868309, + 0.01279488019645214, + -0.0168796144425869, + 0.01761028729379177, + -0.0550394281744957, + -0.01745891384780407, + -0.02000373974442482, + 0.04222988337278366, + 0.00481001241132617, + 0.1402747631072998, + 0.1065278947353363, + 0.08450167626142502, + -0.062420133501291275, + 0.053525377064943314, + 0.007444010581821203, + 0.006817935034632683, + -0.006303074769675732, + 0.054818399250507355, + 0.08714963495731354, + -0.07751891016960144, + -0.00988389179110527, + 0.019176263362169266, + 0.0175750982016325, + -0.003843882819637656, + -0.006044180132448673, + 0.007348415907472372, + 0.09064178168773651, + 0.006919421721249819, + -0.026904894039034843, + -0.026784323155879974, + -0.03438529372215271, + -0.06451717019081116, + 0.04506863281130791, + 0.021614570170640945, + -0.03363410383462906, + -0.10643069446086884, + -1.762603929478246e-08, + -0.011797024868428707, + -0.010802184231579304, + -0.03276988863945007, + 0.030298836529254913, + 0.0392860472202301, + -0.03430628404021263, + -0.007447869051247835, + -0.09235270321369171, + -0.006244248244911432, + -0.01547231525182724, + -0.030530188232660294, + 0.05094829946756363, + -0.012101791799068451, + -0.05702321231365204, + 0.06326154619455338, + 0.04106639698147774, + -0.13649901747703552, + 0.07887595146894455, + -0.002987668849527836, + 0.007414091844111681, + 0.02978423237800598, + -0.006122523453086615, + 0.021372105926275253, + 0.06379061937332153, + 0.023334678262472153, + 0.04386176913976669, + -0.04257533326745033, + 0.005465732421725988, + 0.09903710335493088, + 0.05636033043265343, + 0.020889895036816597, + 0.04555407166481018, + -0.03551629185676575, + -0.008639591746032238, + -0.10733140259981155, + -0.03955353796482086, + -0.029558997601270676, + 0.02733236737549305, + -0.011799060739576817, + 0.10850271582603455, + 0.00518638314679265, + -0.008977361023426056, + -0.10641758143901825, + -0.05528645217418671, + -0.1048353761434555, + 0.03803199902176857, + 0.04126591235399246, + 0.04179004579782486, + -0.0648101419210434, + -0.1524236500263214, + -0.008803939446806908, + -0.017129870131611824, + 0.02602912299335003, + -0.041641052812337875, + -0.006704994011670351, + -0.024570956826210022, + -0.0013445719378069043, + 0.05719306319952011, + 0.012226180173456669, + 0.008490441367030144, + 0.05946493521332741, + 0.014627746306359768, + 0.005768510513007641, + -0.04753632843494415 + ], + "radioactive-bold||radiation,danger,warning,nuclear,atomic": [ + 0.023222994059324265, + 0.016626471653580666, + -0.0490170456469059, + 0.1089334636926651, + 0.0459660068154335, + 0.014149481430649757, + 0.09451524913311005, + 0.05533743277192116, + -0.029881175607442856, + 0.02385706640779972, + 0.07586512714624405, + -0.06829278916120529, + 0.10363981872797012, + 0.018245751038193703, + -0.05858916789293289, + 0.01244335062801838, + 0.012806778773665428, + -0.04879121854901314, + -0.015448377467691898, + 0.07428312301635742, + -0.04846252128481865, + 0.07914242148399353, + 0.01958393305540085, + 0.04506964609026909, + 0.03291553258895874, + -0.022981353104114532, + 0.05310860276222229, + -0.029968390241265297, + 0.014549879357218742, + -0.030189532786607742, + -0.003173268400132656, + 0.0071487510576844215, + 0.09979629516601562, + -0.03308764472603798, + 0.0800836831331253, + 0.004138954449445009, + -0.05069969967007637, + -0.029099872335791588, + -0.006438100710511208, + 0.0009640458156354725, + 0.01239433977752924, + -0.045397236943244934, + -0.005554639734327793, + 0.09242989867925644, + -0.06382221728563309, + 0.006787225138396025, + -0.04217098653316498, + -0.12238307297229767, + -0.00029267865465953946, + 0.019189342856407166, + 0.05733884498476982, + -0.09173643589019775, + -0.11605842411518097, + 0.03679642826318741, + 0.01104387640953064, + -0.06615768373012543, + -0.040995627641677856, + -0.028481774032115936, + -0.004989621229469776, + 0.012927673757076263, + 0.038830701261758804, + -0.039970025420188904, + 0.007883504033088684, + 0.012161005288362503, + 0.12872694432735443, + 0.0314645916223526, + 0.009035586379468441, + 0.02648528851568699, + 0.008330035023391247, + 0.08214206993579865, + 0.05544309318065643, + -0.0006521263858303428, + -0.022478636354207993, + -0.038363322615623474, + -0.06772657483816147, + -0.04415189102292061, + 0.04831220954656601, + 0.03937637060880661, + 0.02210269495844841, + -0.04803412780165672, + -0.08313798904418945, + -0.08329027891159058, + -0.05217583104968071, + -0.08804915845394135, + -0.001526147359982133, + 0.10310211777687073, + -0.015085387043654919, + -0.032615967094898224, + 0.026374556124210358, + 0.015731189399957657, + -0.06398513168096542, + 0.0043181367218494415, + 0.05253015086054802, + 0.058306287974119186, + -0.04173126071691513, + 0.08204763382673264, + 0.03279197961091995, + -0.037506695836782455, + -0.022353660315275192, + 0.04094015434384346, + 0.09880804270505905, + 0.031251754611730576, + -0.055758312344551086, + 0.025074290111660957, + -0.07628804445266724, + -0.09356376528739929, + 0.017989017069339752, + -0.033322736620903015, + -0.04624098911881447, + 0.029422620311379433, + 0.016295628622174263, + -0.05867266654968262, + 0.0046075489372015, + -0.06738655269145966, + -0.01911185123026371, + 0.024897269904613495, + -0.011895790696144104, + -0.010896827094256878, + 0.038291074335575104, + 0.015279979445040226, + 0.0034116553142666817, + -0.03651430830359459, + -0.03495217487215996, + 0.0019516361644491553, + 0.03231557831168175, + -0.03524615615606308, + 0.03991129994392395, + -3.555617312610008e-33, + 0.05778581649065018, + 0.09891083091497421, + -0.055137600749731064, + 0.04870448634028435, + -0.0012772342888638377, + 0.002234040992334485, + -0.05677852779626846, + -0.11598004400730133, + -0.09395182877779007, + 0.04564402252435684, + 0.0844651460647583, + 0.07475661486387253, + 0.031840745359659195, + -0.004340298939496279, + -0.011906757019460201, + -0.01589975506067276, + 0.017721766605973244, + 0.04746023565530777, + -0.04124029353260994, + -0.016058731824159622, + -0.025625331327319145, + 0.036870673298835754, + -0.05320502817630768, + -0.019499851390719414, + -0.005756810307502747, + 0.022086959332227707, + -0.029673079028725624, + -0.023138701915740967, + -0.048574309796094894, + 0.016431614756584167, + 0.020684687420725822, + 0.057688817381858826, + -0.02117852121591568, + 0.02697593718767166, + -0.0032579652033746243, + -0.011222047731280327, + -0.15180900692939758, + -0.007539653219282627, + -0.012467247433960438, + -0.03552219271659851, + 0.018886638805270195, + -0.016478408128023148, + -0.019439322873950005, + 0.06278485804796219, + 0.17687982320785522, + 0.0622328482568264, + -0.03253018110990524, + -0.06718648970127106, + 0.016636041924357414, + -0.017711959779262543, + -0.08277300000190735, + -0.01880822889506817, + -0.0020191289950162172, + 0.02332794852554798, + 0.037571635097265244, + 0.008285527117550373, + 0.029876329004764557, + 0.07149170339107513, + -0.06755651533603668, + 0.004051619209349155, + -0.012521789409220219, + 0.03149387985467911, + 0.06102503091096878, + -0.043462350964546204, + 0.017612311989068985, + 0.051554642617702484, + -0.123689666390419, + -0.0249217227101326, + 0.08519387990236282, + -0.007119846064597368, + -0.06191514804959297, + 0.03461674600839615, + 0.04682093858718872, + 0.007809324190020561, + 0.008674836717545986, + 0.02417287416756153, + -0.027179287746548653, + 0.017698409035801888, + 0.003032427281141281, + -0.032530128955841064, + -0.12229173630475998, + -0.04313139244914055, + -0.04808066040277481, + 0.04322444647550583, + -0.018764400854706764, + 0.004676446784287691, + -0.04286545142531395, + -0.049493420869112015, + -0.014742624945938587, + 0.11015146970748901, + 0.028370803222060204, + -0.023028427734971046, + 0.018411539494991302, + -0.02039301209151745, + -0.09820190817117691, + 1.652003761131149e-33, + -0.025472182780504227, + 0.06533479690551758, + -0.04566057026386261, + -0.01673656329512596, + -0.05633442848920822, + -0.0037944046780467033, + -0.06921318918466568, + 0.017287716269493103, + -0.020758459344506264, + 0.026079287752509117, + 0.023008404299616814, + 0.020051557570695877, + -0.12810483574867249, + -0.08846569061279297, + -0.058015186339616776, + 0.013430635444819927, + 0.10996197909116745, + 0.05922481045126915, + 0.03987462446093559, + -0.0054039787501096725, + -0.05223745107650757, + -0.026210540905594826, + -0.07930675894021988, + 0.07215342670679092, + -0.0009360906551592052, + 0.07896102219820023, + 0.10105564445257187, + -0.08103926479816437, + 0.03969696909189224, + -0.0008205802878364921, + -0.08823155611753464, + 0.0627422034740448, + 0.02909550815820694, + 0.06461677700281143, + 0.01005114708095789, + -0.038505300879478455, + 0.123658686876297, + -0.03102465532720089, + -0.015718258917331696, + -0.05739777162671089, + -0.013178259134292603, + 0.08915585279464722, + 0.026086393743753433, + -0.013639922253787518, + -0.03362391144037247, + 0.0011825457913801074, + 0.03992614522576332, + 0.019652780145406723, + -0.06354862451553345, + 0.06352672725915909, + 0.026007402688264847, + -0.08472985774278641, + 0.007972425781190395, + 0.012333948165178299, + -0.04913569614291191, + -0.055539362132549286, + -0.04154891148209572, + 0.0033864956349134445, + -0.0009905094048008323, + 0.053307633846998215, + 0.04172097146511078, + 0.03949720412492752, + -0.01108284667134285, + -0.0018032108200713992, + -0.08785766363143921, + -0.04428695887327194, + -0.06976960599422455, + 0.035969484597444534, + 0.032179899513721466, + 0.006915336940437555, + 0.037859588861465454, + 0.0031143224332481623, + -0.025278273969888687, + -0.048806946724653244, + -0.01018975954502821, + -0.05681735649704933, + 0.06159866973757744, + -0.034870367497205734, + -0.027843594551086426, + 0.007501158397644758, + -0.04124182462692261, + 0.06001883000135422, + -0.08057893067598343, + 0.025408154353499413, + 0.048516448587179184, + 0.03415645658969879, + -0.016421042382717133, + 0.03956567496061325, + -0.006200505420565605, + -0.08584180474281311, + -0.050137460231781006, + 0.049171991646289825, + -0.0445026196539402, + -0.022945431992411613, + 0.0327015183866024, + -1.651182301998233e-08, + 0.01728658936917782, + -0.021290481090545654, + -0.0571025013923645, + -0.09039629995822906, + 0.12295956909656525, + 0.01162402331829071, + -0.0024336478672921658, + -0.06535020470619202, + -0.050815682858228683, + 0.037520620971918106, + 0.005280560348182917, + 0.07163932919502258, + -0.009349413216114044, + -0.0531257763504982, + 0.06187142804265022, + 0.05837516114115715, + -0.05325520038604736, + -0.0032810531556606293, + -0.030391843989491463, + -0.021362127736210823, + 0.0031626024283468723, + 0.007914883084595203, + 0.031192248687148094, + -0.025336746126413345, + 0.021275922656059265, + 0.061938706785440445, + 0.03454824537038803, + 0.03267402946949005, + 0.04209570214152336, + 0.02461547590792179, + 0.06866370886564255, + 0.024583443999290466, + -0.00059769197832793, + 0.016624614596366882, + -0.0655246302485466, + 0.013581285253167152, + 0.065031498670578, + -0.036025501787662506, + -0.013044586405158043, + 0.1501331925392151, + -0.03650040552020073, + 0.013501784764230251, + 0.020137103274464607, + 0.04677732288837433, + -0.06508630514144897, + 0.013621781952679157, + 0.013449959456920624, + -0.011937204748392105, + 0.004203349351882935, + -0.05263219773769379, + -0.04868078604340553, + -0.012334528379142284, + -0.013554031029343605, + 0.0007424771902151406, + -0.08616326004266739, + 0.0326949805021286, + 0.045146290212869644, + 0.023791834712028503, + -0.04798143729567528, + 0.05642348527908325, + 0.15362206101417542, + -0.05374033376574516, + 0.04554769769310951, + -0.009542910382151604 + ], + "rainbow-bold||meteorology,rainstorm,arc,pride,lgbtq+,leprechaun": [ + 0.027102790772914886, + -0.005811944138258696, + 0.08601410686969757, + 0.04650404676795006, + 0.034710586071014404, + 0.026323817670345306, + 0.023768067359924316, + -0.07441181689500809, + 0.03286653384566307, + -0.048689164221286774, + -0.012791979126632214, + -0.04581574723124504, + -0.0004175796639174223, + -0.043668292462825775, + 0.016264544799923897, + 0.10851433873176575, + 0.00044029756099916995, + -0.011997517198324203, + -0.01865260675549507, + -0.010966191068291664, + -0.00478361314162612, + -0.021133940666913986, + -0.06691335886716843, + 0.04593652859330177, + -0.0075081875547766685, + 0.0897480770945549, + 0.0021471672225743532, + 0.032042667269706726, + 0.00725373113527894, + -0.024459313601255417, + 0.016092179343104362, + 0.0030303101520985365, + 0.0667620599269867, + -0.006098794750869274, + -0.05401456356048584, + -0.02826245129108429, + -0.020208152011036873, + -0.021174440160393715, + 0.009553383104503155, + 0.11741127818822861, + -0.006256928667426109, + -0.0595272034406662, + -0.0017820755019783974, + -0.09097950905561447, + -0.018131881952285767, + -0.029839785769581795, + -0.00042417197255417705, + -0.020125752314925194, + -0.06485498696565628, + 0.016362881287932396, + 0.05395972728729248, + -0.07573854923248291, + -0.10673362761735916, + -0.003220692742615938, + 0.022735506296157837, + -0.0002584894245956093, + -0.04990722984075546, + -0.07707829773426056, + 0.08724711835384369, + -0.005094315391033888, + 0.023541949689388275, + 0.04293832927942276, + -0.04358625039458275, + 0.03894323855638504, + 0.024448689073324203, + -0.010016313754022121, + -0.04695162549614906, + 0.13421614468097687, + 0.014633961021900177, + 0.007429108023643494, + 0.01971096731722355, + 0.09548433870077133, + 0.00474578607827425, + 0.05420445650815964, + -0.015943922102451324, + 0.002710483269765973, + 0.005545532796531916, + -0.014087879098951817, + -0.016860323026776314, + -0.0939507782459259, + 0.031209129840135574, + -0.048288751393556595, + 0.003113425336778164, + 0.009155889973044395, + 0.05508749559521675, + 0.06444671005010605, + -0.02149352617561817, + -0.011504332534968853, + -0.06485973298549652, + -0.060939937829971313, + -0.07160716503858566, + -0.04300698637962341, + 0.03650858253240585, + 0.017725424841046333, + -0.01669851690530777, + 0.05679136514663696, + 0.01679670810699463, + -0.1367291361093521, + -0.047587692737579346, + 0.051969558000564575, + 0.03133025020360947, + -0.04079028591513634, + -0.006968863774091005, + 0.01067187450826168, + -0.0428108312189579, + -0.07269065827131271, + -0.09452418237924576, + 0.01223707664757967, + 0.004399534780532122, + 0.006123395636677742, + 0.024460621178150177, + -0.14652270078659058, + 0.024743448942899704, + -0.06513330340385437, + -0.021303489804267883, + -0.03067837841808796, + -0.07859949767589569, + -0.01886768825352192, + -0.012057446874678135, + 0.06995180249214172, + -0.05741441249847412, + 0.03269495815038681, + 0.04118718206882477, + 0.0512964241206646, + 0.04860568046569824, + 0.0668715164065361, + -0.017415648326277733, + -9.629027077272228e-34, + 0.11051499098539352, + -0.011845787055790424, + -0.028595782816410065, + 0.049502503126859665, + 0.07159426063299179, + -0.011044813320040703, + 0.010035662911832333, + -0.041769858449697495, + -0.10155365616083145, + 0.012060918845236301, + 0.003941773436963558, + 0.15516512095928192, + -0.07902362197637558, + 0.050375159829854965, + 0.026231111958622932, + -0.04849124327301979, + 0.07251160591840744, + -0.03542495146393776, + -0.10104171931743622, + -0.006980366539210081, + -0.051309410482645035, + 0.06001163274049759, + -0.04105401411652565, + -0.040580298751592636, + -0.024950670078396797, + -0.027234530076384544, + 0.06767553091049194, + 0.02344786934554577, + -0.004823413211852312, + 0.06884194165468216, + 0.0470016673207283, + -0.0030588184017688036, + 0.013000557199120522, + 0.03197750076651573, + 0.062238674610853195, + -0.03489967808127403, + -0.0451132096350193, + -0.05968693643808365, + 0.02865389734506607, + 0.028722960501909256, + -0.1004229485988617, + -0.043214552104473114, + -0.10413100570440292, + 0.017925336956977844, + 0.07399804145097733, + 0.06570599973201752, + 0.1086561530828476, + -0.030390335246920586, + 0.043950945138931274, + 0.01535436138510704, + -0.0857013538479805, + 0.03005896508693695, + -0.040888167917728424, + 0.023336801677942276, + -0.008709196001291275, + 0.05515711382031441, + -0.001525344094261527, + -0.002083822386339307, + 0.009788107126951218, + -0.03901989012956619, + -0.03735803812742233, + 0.10570665448904037, + 0.037778861820697784, + -0.1092553585767746, + 0.03570582717657089, + 0.04781098663806915, + -0.02273443154990673, + 0.029817938804626465, + 0.06971795856952667, + 0.01947203278541565, + 0.046625010669231415, + -0.02311835251748562, + 0.017611069604754448, + 0.009562259539961815, + 0.05583951622247696, + 0.015043048188090324, + 0.010497156530618668, + 0.006950810551643372, + 0.0565510168671608, + -0.016425201669335365, + -0.12470266968011856, + 0.013448972254991531, + 0.027867890894412994, + -0.014082929119467735, + -0.04770956560969353, + 0.03442554175853729, + 0.06699410080909729, + -0.07604730129241943, + -0.03699316829442978, + 0.03759363293647766, + -0.022248657420277596, + 0.028446370735764503, + 0.062278956174850464, + -0.11587809026241302, + -0.08586353063583374, + -3.998276434541523e-34, + 0.04952050745487213, + -0.015182401053607464, + -0.030700474977493286, + 0.04535948857665062, + 0.11065726727247238, + 0.03563667833805084, + -0.002585798967629671, + 0.02409319207072258, + 0.025378789752721786, + 0.06074574217200279, + -0.018198806792497635, + 0.02293400838971138, + -0.04549417272210121, + -0.055170994251966476, + 0.05342709645628929, + -0.03855213522911072, + 0.037402812391519547, + 0.07407989352941513, + 0.009123661555349827, + 0.04402633011341095, + -0.03306637331843376, + -0.020640505477786064, + -0.03321215882897377, + 0.043997228145599365, + 0.005537379998713732, + 0.04574863240122795, + 0.14571650326251984, + -0.07231166958808899, + 0.03232468292117119, + -0.012309761717915535, + -0.07703385502099991, + 0.05377441272139549, + -0.017613038420677185, + -0.016734834760427475, + -0.051378000527620316, + -0.007673664018511772, + 0.05454299971461296, + -0.04388473182916641, + -0.06768739968538284, + -0.07194023579359055, + -0.023578694090247154, + -0.05264004319906235, + 0.08985049277544022, + -0.007091460283845663, + 0.03613816574215889, + -0.007930714637041092, + -0.06875307112932205, + 0.1125837042927742, + 0.027092715725302696, + -0.021559644490480423, + -0.011351507157087326, + -0.08898644894361496, + 0.034817662090063095, + 0.06489630043506622, + 0.023669006302952766, + -0.1467021107673645, + 0.03794318810105324, + -0.014468960464000702, + -0.1184418722987175, + 0.04265912249684334, + -0.02138267643749714, + -0.020110446959733963, + 0.038540102541446686, + 0.043180108070373535, + 0.030640099197626114, + -0.06384598463773727, + -0.024479230865836143, + -0.08037641644477844, + -0.04148411005735397, + -0.01904592290520668, + 0.011814967729151249, + -0.10196945071220398, + -0.05108439549803734, + -0.06061788275837898, + 0.045253854244947433, + 0.008816435933113098, + -0.021210141479969025, + 0.019711963832378387, + -0.017436154186725616, + 0.06295895576477051, + -0.06685604155063629, + 0.03276090696454048, + -0.06336040794849396, + 0.048209648579359055, + 0.0015657448675483465, + -0.039666373282670975, + -0.006175667978823185, + 0.040317025035619736, + 0.031263988465070724, + 0.04528208449482918, + -0.06423059105873108, + 0.06785909831523895, + -0.051979511976242065, + -0.046258024871349335, + 0.05824164301156998, + -2.296594558970355e-08, + 0.002879583975300193, + 0.0040143933147192, + -0.042999714612960815, + 0.00897892564535141, + 0.004258926026523113, + -0.01900104433298111, + 0.016031980514526367, + -0.07937724143266678, + -0.02832142822444439, + 0.03764771297574043, + -0.010227551683783531, + 0.05055805668234825, + 0.007451353594660759, + 0.045789021998643875, + 0.03453340381383896, + -0.04702267050743103, + 0.06728125363588333, + -0.06816233694553375, + -0.023298723623156548, + -0.050989095121622086, + -0.0004133351903874427, + 0.051676779985427856, + 0.0308573916554451, + -0.10329728573560715, + 0.028754130005836487, + 0.03340630978345871, + -0.019657887518405914, + -0.07555553317070007, + 0.006434657145291567, + 0.055410366505384445, + 0.02500106394290924, + -0.004886964336037636, + -0.035549964755773544, + -0.037173956632614136, + -0.011918709613382816, + 0.03648966923356056, + -0.02687462605535984, + 0.03376811742782593, + -0.006457922048866749, + 0.013349911198019981, + 0.043398309499025345, + 0.08361829817295074, + 0.07921978086233139, + 0.017532432451844215, + -0.010057528503239155, + 0.03380320966243744, + 0.065670907497406, + 0.003382534720003605, + -0.05979328975081444, + -0.04902205988764763, + -0.07127942144870758, + -0.0711139664053917, + -0.012939956970512867, + 0.014928429387509823, + 0.003695576684549451, + -0.022501207888126373, + 0.0007890320266596973, + -0.003693217411637306, + -0.02370436117053032, + 0.021211596205830574, + 0.14743149280548096, + -0.06495441496372223, + -0.032321665436029434, + 0.01920940913259983 + ], + "rainbow-cloud-bold||meteorology,rainstorm,cloudy,partly cloudy,partly sunny,pride,lgbtq+,leprechaun": [ + 0.04474830627441406, + 0.020515142008662224, + 0.1129763275384903, + 0.032716069370508194, + 0.023522648960351944, + 0.023662911728024483, + 0.05812833458185196, + -0.10002782940864563, + 0.028194746002554893, + -0.04091408848762512, + 0.013511097058653831, + -0.04279494285583496, + 0.02065492793917656, + -0.06361076980829239, + -0.004378947429358959, + 0.08522991836071014, + 0.015266098082065582, + -0.051771342754364014, + -0.023148925974965096, + -0.0014119818806648254, + -0.025074688717722893, + -0.0043869768269360065, + -0.08886882662773132, + 0.03562207147479057, + 0.026776639744639397, + 0.09841952472925186, + -0.01234729029238224, + 0.04005134850740433, + 0.01648036390542984, + -0.03497305512428284, + 0.044841889292001724, + -0.0009044697508215904, + 0.05232279747724533, + 0.03286855295300484, + -0.02482561394572258, + -0.030584493651986122, + -0.0379166454076767, + -0.04535764828324318, + 0.010433007963001728, + 0.09421346336603165, + -0.0004014939768239856, + -0.09096983820199966, + -0.04443252459168434, + -0.09600763022899628, + -0.0038446765393018723, + -0.030290724709630013, + -0.008617566898465157, + -0.011668626219034195, + -0.03306744247674942, + -0.012371973134577274, + 0.01405688002705574, + -0.09729286283254623, + -0.09955716878175735, + 0.021149933338165283, + 0.005777549464255571, + 0.023603158071637154, + -0.050727616995573044, + -0.06705792993307114, + 0.0642901286482811, + -0.002838078187778592, + 0.011241063475608826, + 0.057234976440668106, + -0.0424753800034523, + 0.035470861941576004, + 0.06515207886695862, + -0.003375845495611429, + -0.07984308153390884, + 0.1209394633769989, + 0.05136287957429886, + 0.006033753510564566, + 0.017337413504719734, + 0.09872037172317505, + -0.006450368091464043, + 0.0587630420923233, + -0.026093751192092896, + -0.05459285527467728, + 0.0016833218978717923, + -0.024038735777139664, + 0.00883980467915535, + -0.08150026947259903, + 0.061099011451005936, + -0.027483751997351646, + 0.003164664376527071, + 0.013621613383293152, + -0.0017189362552016973, + 0.06061560660600662, + 0.00040613714372739196, + -0.0008340366766788065, + -0.03531898558139801, + -0.09687960147857666, + -0.04220803081989288, + -0.017032122239470482, + 0.013540467247366905, + 0.03798028454184532, + -0.04970322549343109, + 0.06960048526525497, + 0.0389624685049057, + -0.1283559799194336, + -0.02299119159579277, + 0.05558419227600098, + 0.035830166190862656, + -0.05537612363696098, + 0.015032789669930935, + -0.015909848734736443, + -0.015155616216361523, + -0.048621006309986115, + -0.07026121020317078, + -0.023594854399561882, + 0.009064393118023872, + -0.019094571471214294, + -0.00391853554174304, + -0.14587754011154175, + -0.008579566143453121, + -0.0516020767390728, + -0.016286974772810936, + -0.013993789441883564, + -0.07197706401348114, + 0.003888124832883477, + -0.0451943464577198, + 0.00991792045533657, + -0.04484148696064949, + -0.030417632311582565, + 0.041047029197216034, + 0.03688305616378784, + 0.025560563430190086, + 0.08003034442663193, + -0.04341144114732742, + -1.0583207984258334e-33, + 0.12276477366685867, + -0.01987256109714508, + 0.017079927027225494, + 0.02343727834522724, + 0.11058812588453293, + -0.015830526128411293, + 0.012107943184673786, + -0.06702662259340286, + -0.14569346606731415, + 0.0325813926756382, + -0.024975692853331566, + 0.10290791839361191, + -0.09029155224561691, + 0.054736874997615814, + 0.050780851393938065, + -0.05554087087512016, + 0.05057331919670105, + -0.009848622605204582, + -0.06281985342502594, + 0.004019089043140411, + -0.07279657572507858, + 0.06764764338731766, + -0.02295791357755661, + -0.03146447613835335, + 0.0014749635010957718, + -0.058706000447273254, + 0.09118882566690445, + 0.015439676120877266, + 0.031784478574991226, + 0.05258190631866455, + 0.08795931190252304, + 0.019300268962979317, + 0.021460002288222313, + 0.004819847177714109, + 0.04317188635468483, + -0.04097847267985344, + -0.035308849066495895, + -0.028514545410871506, + 0.033244140446186066, + 0.015449844300746918, + -0.06745335459709167, + -0.04586067795753479, + -0.07952378690242767, + 0.008467454463243484, + 0.05604862794280052, + 0.04521651566028595, + 0.09950932115316391, + -0.03228455409407616, + 0.06140178442001343, + 0.017282482236623764, + -0.07934921234846115, + 0.023956306278705597, + -0.062121760100126266, + 0.01750641129910946, + -0.015990180894732475, + 0.07676181942224503, + 0.005805632099509239, + -0.00625579571351409, + 0.029681555926799774, + -0.016634199768304825, + -0.05382700264453888, + 0.035774484276771545, + 0.04250919818878174, + -0.13629573583602905, + 0.023068757727742195, + 0.0070618148893117905, + -0.03648868948221207, + 0.06845851242542267, + 0.05742254853248596, + 0.02902667038142681, + 0.05698106437921524, + -0.019888317212462425, + 0.04718572646379471, + 0.011851213872432709, + 0.0892346203327179, + 0.0007169546443037689, + -0.018506206572055817, + 0.019496645778417587, + 0.02947038598358631, + -0.0026371136773377657, + -0.10555454343557358, + 0.043766915798187256, + 0.006800473667681217, + -0.0032440682407468557, + -0.08903062343597412, + 0.06182907894253731, + 0.05455577000975609, + -0.04013814404606819, + -0.05728769674897194, + 0.05782470479607582, + -0.03128387778997421, + 0.05719238892197609, + 0.0777796283364296, + -0.10570116341114044, + -0.1012837365269661, + -7.899870754615316e-35, + 0.06996463239192963, + -0.018372030928730965, + -0.050100985914468765, + 0.06799672544002533, + 0.12067502737045288, + 0.02974226139485836, + 0.025172483175992966, + 0.0557391382753849, + 0.022466950118541718, + 0.09826146066188812, + -8.221438474720344e-05, + 0.009706774726510048, + -0.04312494769692421, + -0.052862443029880524, + 0.036116231232881546, + 0.014321872964501381, + 0.017652656883001328, + 0.05986027792096138, + -0.007053241599351168, + 0.05197986215353012, + -0.033577512949705124, + -0.040482088923454285, + 0.02601400949060917, + 0.059970442205667496, + -0.014836998656392097, + 0.04496071860194206, + 0.1506298929452896, + -0.02955765835940838, + 0.04537148401141167, + 0.014629131183028221, + -0.08465514332056046, + 0.03371821343898773, + -0.0247986800968647, + -0.013132095336914062, + -0.06462805718183517, + 0.0010818307055160403, + 0.046683162450790405, + -0.04313315823674202, + -0.07017175853252411, + -0.05827376991510391, + -0.05774388834834099, + -0.0628373771905899, + 0.08043339103460312, + -0.027544239535927773, + 0.05932515114545822, + -0.018740469589829445, + -0.060804735869169235, + 0.11523740738630295, + -0.0004711205547209829, + -0.048415251076221466, + 0.011745510622859001, + -0.08471965044736862, + 0.022179635241627693, + 0.0999276340007782, + 0.030049297958612442, + -0.11212821304798126, + -0.01507617812603712, + 0.01595241203904152, + -0.105500727891922, + 0.017026523128151894, + -0.013785519637167454, + -0.05630277097225189, + 0.03441682830452919, + 0.023879269137978554, + 0.01606563851237297, + -0.05109349638223648, + -0.024870770052075386, + -0.08297847956418991, + -0.01567269302904606, + -0.022031236439943314, + -0.002263056579977274, + -0.1243048682808876, + -0.051083166152238846, + -0.06284159421920776, + 0.05725611373782158, + 0.01810421608388424, + -0.036129310727119446, + 0.0177899282425642, + -0.0025137297343462706, + 0.07090473920106888, + -0.054019808769226074, + 0.026986103504896164, + -0.058590225875377655, + 0.02010686881840229, + -0.007135854568332434, + -0.05797853320837021, + 0.025194291025400162, + 0.015434108674526215, + 0.022804774343967438, + 0.049907781183719635, + -0.06641208380460739, + 0.08734232932329178, + -0.06289152801036835, + -0.02528451569378376, + 0.04929099604487419, + -2.4625066430417064e-08, + 0.0018439393024891615, + -0.040482670068740845, + -0.0009141576010733843, + -0.01004837267100811, + 0.02249254658818245, + -0.04041999578475952, + 0.050233785063028336, + -0.05715436488389969, + 0.0021173274144530296, + 0.02166500873863697, + -0.0017738358583301306, + -0.0024653307627886534, + -0.009731021709740162, + 0.02251899614930153, + 0.008176814764738083, + -0.03362376615405083, + 0.040774907916784286, + -0.02825441025197506, + -0.018341312184929848, + -0.0414094403386116, + -0.019048020243644714, + 0.05206919088959694, + 0.023715326562523842, + -0.05767921730875969, + 0.043572042137384415, + 0.03517730534076691, + -0.014524801634252071, + -0.07356738299131393, + -0.013097833842039108, + 0.041665323078632355, + 0.00385330431163311, + 0.018391434103250504, + -0.0007651051855646074, + -0.05592542141675949, + -0.005047274753451347, + 0.028632663190364838, + -0.045839808881282806, + 0.02043265663087368, + -0.02458653412759304, + 0.015686120837926865, + 0.05762433633208275, + 0.06874976307153702, + 0.09408850967884064, + -0.009953959845006466, + -0.013938826508820057, + 0.030715463683009148, + 0.08189614117145538, + 0.009952249005436897, + -0.04843512922525406, + -0.021607227623462677, + -0.019008653238415718, + -0.06342652440071106, + 0.0031765413004904985, + 0.004595484584569931, + 0.007899977266788483, + -0.0338410809636116, + -0.007907279767096043, + -0.0160264503210783, + -0.00588106969371438, + 0.03917752578854561, + 0.12793701887130737, + -0.04696252942085266, + -0.040121711790561676, + 0.051756132394075394 + ], + "ranking-bold||*new*,medal,rank,leaderboard,winner,sports": [ + -0.005362730473279953, + -0.05990098416805267, + -0.01899179257452488, + -0.033857427537441254, + 0.021398138254880905, + 0.08943319320678711, + 0.0070430743508040905, + 0.01721261814236641, + -0.033948082476854324, + 0.05545910820364952, + -0.07148490846157074, + 0.024795042350888252, + 0.04193303734064102, + 0.028810575604438782, + -0.08397691696882248, + -0.007226577494293451, + 0.038770973682403564, + 0.017768515273928642, + -0.0036293049342930317, + -0.058122407644987106, + 0.05317159369587898, + -0.025718655437231064, + 0.01536557450890541, + 0.019122065976262093, + 0.07801219820976257, + -0.0173017680644989, + -0.05421808362007141, + 0.059801194816827774, + -0.018885504454374313, + -0.09140636771917343, + -0.10197962820529938, + -0.03821032866835594, + 0.14295364916324615, + 0.04820694774389267, + -0.07506506890058517, + -0.01963440328836441, + -0.025871312245726585, + -0.018949301913380623, + 0.01212381012737751, + 0.054502934217453, + 0.006053577642887831, + -0.04140453413128853, + -0.0030025155283510685, + 0.05769277736544609, + 0.03798395395278931, + 0.03611278906464577, + -0.054491542279720306, + -0.04723072797060013, + -0.017266154289245605, + 0.050198886543512344, + -0.0340336374938488, + 0.003121376736089587, + -0.06648029386997223, + 0.05836294963955879, + 0.0370187982916832, + 0.03556647151708603, + -0.05862760171294212, + -0.10929650068283081, + -0.011281576938927174, + -0.04680370166897774, + 0.004142918158322573, + 0.03827724978327751, + 0.013797814026474953, + 0.043716102838516235, + 0.05159973353147507, + -0.07312274724245071, + -0.05641914904117584, + 0.02769305743277073, + -0.032206941395998, + 0.005228690803050995, + 0.06346137076616287, + -0.019154969602823257, + 0.01221020519733429, + -0.005900152027606964, + -0.004896849859505892, + 0.033985935151576996, + -0.0001845837978180498, + 0.04264344647526741, + -0.00477179791778326, + 0.015874741598963737, + -0.01952122524380684, + -0.08856800943613052, + -0.02934775874018669, + 0.02308461256325245, + 0.0915711373090744, + -0.013438016176223755, + -0.06711661070585251, + -0.09160297363996506, + -0.0769912451505661, + 0.013549084775149822, + -0.06927147507667542, + 0.011799227446317673, + 0.045559950172901154, + 0.05929309129714966, + -0.06237053871154785, + 0.07068372517824173, + -0.010580106638371944, + -0.0417884886264801, + 0.003353635547682643, + 0.09687479585409164, + -0.00014388738782145083, + 0.051626015454530716, + -0.05712391808629036, + -0.007448369637131691, + 0.029357729479670525, + -0.006759613752365112, + 0.012787681072950363, + 0.023166101425886154, + 0.00013756532280240208, + 0.0016369277145713568, + 0.020850498229265213, + -0.01833951845765114, + -0.034075189381837845, + -0.03075282834470272, + -0.08081383258104324, + 0.02444060891866684, + -0.05166008695960045, + 0.05228721722960472, + 0.0886782556772232, + 0.05204164236783981, + 0.03436073660850525, + -0.008822120726108551, + 0.00935652107000351, + -0.05546366050839424, + -0.03507092967629433, + 0.09322541207075119, + 0.05826277658343315, + -2.2837833018851647e-33, + 0.06564129143953323, + -0.01954183168709278, + 0.013712603598833084, + 0.05459131300449371, + -0.08017656952142715, + -0.012193754315376282, + -0.01084821205586195, + -0.0831015557050705, + -0.0714738592505455, + -0.052291836589574814, + -0.01621243916451931, + 0.11939521878957748, + 0.023935509845614433, + 0.05126388743519783, + 0.09310643374919891, + -0.022178281098604202, + -0.006967494264245033, + 0.002955564297735691, + -0.07996320724487305, + -0.0017625032924115658, + 0.017555110156536102, + 0.08869139105081558, + 0.042658474296331406, + -0.07065659016370773, + 0.010614259168505669, + -0.029700083658099174, + -0.06920822709798813, + -0.09468507021665573, + -0.1064649373292923, + 0.031766269356012344, + 0.048136819154024124, + -0.09050706028938293, + -0.025770587846636772, + -0.008922422304749489, + -0.0006216260953806341, + 0.024903135374188423, + 0.03897089138627052, + -0.02641034498810768, + 0.0893620029091835, + -0.02973495051264763, + -0.0830434039235115, + -0.08919528126716614, + -0.08074383437633514, + -0.024553371593356133, + -0.0016345694893971086, + 0.08862465620040894, + -0.0825931653380394, + 0.02215948887169361, + 0.0052195764146745205, + 0.06735318899154663, + -0.03721710294485092, + -0.020894097164273262, + 0.06270315498113632, + -0.000977926654741168, + 0.016939425840973854, + -0.008779549971222878, + 0.03225227817893028, + 0.05715295299887657, + -0.05462155491113663, + -0.05564158037304878, + -0.008611360564827919, + 0.06729859858751297, + -0.00151396996807307, + -0.02446112595498562, + -0.003925686702132225, + 0.009118586778640747, + -0.017392484471201897, + -0.029193921014666557, + 0.07024325430393219, + -0.03332645073533058, + 0.01891125738620758, + 0.06043477728962898, + -0.008673119358718395, + 0.0012951750541105866, + -0.004548205062747002, + 0.06123814359307289, + 0.027165863662958145, + -0.0171915665268898, + 0.03684042766690254, + -0.0978868305683136, + -0.08787903934717178, + 0.007617441937327385, + -0.04383574426174164, + -0.017904067412018776, + -0.015129593200981617, + 0.012453384697437286, + 0.0339251346886158, + -0.04814762994647026, + 0.004136900417506695, + 0.002403159625828266, + -0.062280017882585526, + -0.03281591460108757, + 0.017223985865712166, + 0.026698144152760506, + -0.12929381430149078, + 5.957138473056644e-35, + -0.010839598253369331, + 0.025853240862488747, + 0.04924573004245758, + -0.016292130574584007, + 0.0475795604288578, + 0.009518945589661598, + 0.002333712298423052, + 0.018576273694634438, + -0.06007809937000275, + 0.0576343908905983, + 0.05928480997681618, + 0.021587032824754715, + -0.010146518237888813, + -0.03777004033327103, + 0.06307247281074524, + 0.013443443924188614, + -0.061075929552316666, + 0.06652909517288208, + -0.14602205157279968, + 0.022908270359039307, + 0.0394991897046566, + 0.07536673545837402, + -0.06427514553070068, + 0.07527501881122589, + 0.026550447568297386, + 0.019299637526273727, + 0.05950862169265747, + -0.04638086259365082, + -0.05572264641523361, + -0.10478150844573975, + 0.06313128024339676, + -0.028633667156100273, + 0.008277400396764278, + 0.047128453850746155, + -0.053037043660879135, + 0.09105725586414337, + 0.039139240980148315, + -0.157098188996315, + 0.022675110027194023, + 0.09694315493106842, + -0.011863170191645622, + -0.013362415134906769, + -0.024615876376628876, + 0.03738085925579071, + 0.029803765937685966, + 0.01130630262196064, + -0.08485208451747894, + -0.018917471170425415, + -0.015476779080927372, + 0.031996097415685654, + -0.026498988270759583, + 0.03929094597697258, + -0.03458166867494583, + 0.0684119313955307, + -0.02712942101061344, + 0.03150242567062378, + -0.08258626610040665, + 0.023876730352640152, + -0.05723956227302551, + 0.07098592817783356, + 0.014410707168281078, + 0.030807681381702423, + -0.05406161770224571, + 0.0664302334189415, + -0.013935769908130169, + -0.05536593124270439, + -0.006188421510159969, + 0.004714798182249069, + -0.11326776444911957, + 0.02257467433810234, + -0.019324341788887978, + 0.015933360904455185, + -0.007602795027196407, + -0.0013640552060678601, + -0.02993990294635296, + 0.024675222113728523, + 0.00447479821741581, + 0.13323740661144257, + -0.014389975927770138, + -0.01286666002124548, + -0.040189456194639206, + 0.028162134811282158, + 0.002683391096070409, + 0.035638485103845596, + -0.025034286081790924, + 0.033786673098802567, + 0.13789664208889008, + -0.026833685114979744, + 0.045076463371515274, + -0.013226867653429508, + 0.017841503024101257, + -0.06912951171398163, + 0.022185197100043297, + -0.05326099693775177, + -0.03522009402513504, + -2.2365952645486686e-08, + -0.03410865738987923, + 0.06293431669473648, + -0.07221093028783798, + 0.10895013064146042, + -0.0362839549779892, + 0.06991712749004364, + -0.05394718796014786, + -0.04980604723095894, + -0.023628052324056625, + 0.0007477360195480287, + 0.05018709599971771, + -0.02329195663332939, + -0.08403085172176361, + -0.030834674835205078, + 0.04037974029779434, + -0.006087303627282381, + -0.108090840280056, + 0.05868217349052429, + -0.020163781940937042, + -0.11618681252002716, + 0.016161100938916206, + 0.06974692642688751, + 0.030130954459309578, + -0.0075319805182516575, + -0.0020236626733094454, + 0.02512522228062153, + -0.06840894371271133, + -0.022220928221940994, + 0.03152918443083763, + 0.09608892351388931, + 0.06060761958360672, + 0.046684231609106064, + 0.03368193283677101, + -0.01839629001915455, + -0.010411636903882027, + 0.03286544978618622, + -0.04716583713889122, + -0.04116077721118927, + -0.04143371805548668, + 0.04233267158269882, + -0.04722842946648598, + 0.007949684746563435, + -0.017739366739988327, + 0.03499777242541313, + 0.020208679139614105, + 0.015238167718052864, + 0.019409935921430588, + -0.028110293671488762, + -0.015326508320868015, + -0.11935554444789886, + -0.002533217426389456, + -0.07160121947526932, + -0.004919301252812147, + -0.022081634029746056, + -0.017464131116867065, + 0.08312562108039856, + 0.017944665625691414, + 0.06155210733413696, + -0.01089403871446848, + -0.056186873465776443, + 0.13082648813724518, + -0.04367774724960327, + -0.003946451935917139, + 0.09072200953960419 + ], + "read-cv-logo-bold||resume,jobs,logos": [ + -0.03276757523417473, + 0.03048180229961872, + -0.09709258377552032, + 0.04433411359786987, + 0.1065230593085289, + 0.03804253786802292, + -0.023418769240379333, + -0.04390240088105202, + -0.031148739159107208, + -0.06260596960783005, + -0.025858905166387558, + 0.03029778227210045, + 0.06353017687797546, + -0.053736958652734756, + -0.0459105409681797, + -0.017868490889668465, + -0.022301388904452324, + 0.10797424614429474, + 0.08017080277204514, + -0.03466381877660751, + 0.018154380843043327, + 0.04559095948934555, + 0.0447811558842659, + -0.05547317489981651, + -0.02623715065419674, + 0.059208497405052185, + -0.0358269065618515, + 0.023734496906399727, + -0.03458112105727196, + -0.0917145237326622, + -0.01920575276017189, + -0.02797359973192215, + 0.10910486429929733, + 0.04998869448900223, + 0.10283204168081284, + 0.05130266025662422, + -0.029816489666700363, + 0.06429658085107803, + 0.016515713185071945, + 0.03691158443689346, + 0.02135618031024933, + -0.09026742726564407, + -0.029949644580483437, + 0.03325338661670685, + 0.03628480061888695, + -0.022077644243836403, + -0.027850471436977386, + -0.03461354598402977, + 0.04873313754796982, + -0.013521281071007252, + -0.021525507792830467, + -0.12645304203033447, + -0.053390972316265106, + -0.034359585493803024, + -0.053552478551864624, + 0.015055814757943153, + -0.03413994610309601, + -0.04113783314824104, + -0.04654153808951378, + -0.04827200621366501, + -0.01061986479908228, + 0.046245090663433075, + 0.017271246761083603, + 0.08209824562072754, + 0.05636099353432655, + 0.011860243044793606, + -0.013478283770382404, + 0.07602974027395248, + -0.09353777766227722, + -0.021695895120501518, + -0.003153077559545636, + -0.02384142577648163, + -0.05211828276515007, + -0.0067301043309271336, + -0.025984186679124832, + 0.03509251028299332, + 0.043451353907585144, + 0.009569589048624039, + -0.007564125116914511, + -0.10502889752388, + -0.07696680724620819, + -0.045143309980630875, + -0.02039896324276924, + 0.0199973676353693, + 0.08444229513406754, + 0.09263508766889572, + -0.06634741276502609, + -0.07318980991840363, + 0.008030415512621403, + 0.042329441756010056, + -0.03408516198396683, + -0.05393540486693382, + 0.027925480157136917, + 0.05022047460079193, + -0.09959246963262558, + 0.03137827292084694, + 0.019927801564335823, + 0.009884729981422424, + 0.03973960876464844, + 0.05731987580657005, + -0.053848475217819214, + -0.013243183493614197, + 0.0809488520026207, + -0.0024617353919893503, + 0.0031226372811943293, + 0.022489923983812332, + 0.017955536022782326, + 0.03419540822505951, + -0.01201392337679863, + 0.06198054552078247, + 0.06679698824882507, + 0.07390084862709045, + -0.09085962176322937, + -0.0257081538438797, + -0.006618854124099016, + -0.01406292337924242, + -0.057957686483860016, + -0.026898469775915146, + 0.012744694948196411, + 0.042009226977825165, + -0.0022428645752370358, + -0.004360157996416092, + -0.050618331879377365, + -0.049988292157649994, + -0.08883470296859741, + -0.08457361906766891, + 0.06028742715716362, + -3.864155192342088e-33, + 0.026597384363412857, + 0.07516386359930038, + 0.020147033035755157, + 0.0874299705028534, + -0.023392565548419952, + 0.07198825478553772, + -0.053197916597127914, + -0.03822827711701393, + -0.08754529058933258, + 0.04080229625105858, + 0.017356889322400093, + 0.09387549012899399, + 0.004941713064908981, + 0.14218394458293915, + -0.054725587368011475, + 0.04518432542681694, + -0.0186208114027977, + -0.013190255500376225, + -0.07451988756656647, + -0.05081544071435928, + -0.04939764738082886, + -0.030804401263594627, + -0.0915861427783966, + 0.01582660898566246, + -0.0024101457092911005, + -0.043121207505464554, + 0.05465196818113327, + -0.015006188303232193, + -0.022323712706565857, + 0.018703896552324295, + 0.04556657746434212, + 0.014198722317814827, + 0.04967734217643738, + 0.015366272069513798, + 0.015884950757026672, + 0.007399348542094231, + -0.0125550152733922, + -0.04057471826672554, + 0.012193704023957253, + 0.044914986938238144, + -0.01780243217945099, + -0.02241549827158451, + 0.0444706566631794, + 0.0008011154714040458, + -0.008876489475369453, + 0.0652560368180275, + 0.0422404482960701, + -0.03864063695073128, + 0.015847036615014076, + 0.032883722335100174, + 0.015623421408236027, + -0.06977377086877823, + -0.03490747511386871, + -0.048545315861701965, + -0.04520609229803085, + -0.06276179105043411, + -0.019259503111243248, + 0.10598693042993546, + 0.0102207837626338, + -0.029714705422520638, + 0.056880537420511246, + 0.023555004969239235, + 0.028471456840634346, + -0.02338171936571598, + -0.023227445781230927, + 0.009430605918169022, + -0.02689051255583763, + 0.0310075581073761, + 0.03411849960684776, + -0.022560104727745056, + 0.02599501982331276, + 0.048830073326826096, + 0.0620850995182991, + -0.015454594977200031, + -0.023113220930099487, + 0.027251476421952248, + 0.01332118734717369, + 0.02146764285862446, + -0.0110475430265069, + 0.005221451632678509, + -0.007266288623213768, + 0.026166124269366264, + -0.06920071691274643, + 0.0232467669993639, + 0.07569572329521179, + 0.08297288417816162, + 0.06624087691307068, + -0.0738232210278511, + -0.013606335036456585, + 0.021405572071671486, + -0.039090607315301895, + 0.007135101594030857, + 0.04463190212845802, + -0.048552628606557846, + -0.0822598859667778, + 1.2357964763355016e-33, + 0.08155455440282822, + 0.024400843307375908, + 0.042291298508644104, + -0.01945345290005207, + -0.03133578971028328, + -0.00762114766985178, + 0.05200349912047386, + 0.059113435447216034, + -0.10284265875816345, + -0.03186262771487236, + 0.0895950123667717, + 0.0013901208294555545, + -0.11822401732206345, + -0.03171559050679207, + -0.020428156480193138, + 0.013209779746830463, + 0.0024083128664642572, + 0.08541946858167648, + -0.10659147053956985, + 0.027542533352971077, + -0.010481291450560093, + -0.03169085830450058, + -0.05050778388977051, + 0.06389953941106796, + -0.027540622279047966, + 0.0019112284062430263, + -0.015998506918549538, + -0.03235367685556412, + -0.0758441612124443, + 0.015192586928606033, + -0.05926620587706566, + 0.03239230439066887, + -0.011134455911815166, + 0.0996050089597702, + -0.029255995526909828, + -0.028260700404644012, + -0.032737404108047485, + -0.07558520138263702, + 0.030838772654533386, + 0.08872981369495392, + -0.003705733921378851, + -0.011731780134141445, + -0.07512874901294708, + -0.021692495793104172, + -0.04080939665436745, + -0.014746303670108318, + -0.031886931508779526, + -0.08111980557441711, + -0.02689889445900917, + 0.06357178092002869, + 0.018466509878635406, + -0.010438899509608746, + -0.07089030742645264, + 0.09644286334514618, + -0.059541452676057816, + -0.015209659934043884, + 0.014129181392490864, + 0.03255222365260124, + 0.021022913977503777, + 0.009487860836088657, + 0.03441915288567543, + 0.048662036657333374, + -0.0565740168094635, + -0.0038927835412323475, + 0.06572476774454117, + -0.06778359413146973, + 0.053729183971881866, + -0.012686565518379211, + -0.10951075702905655, + -0.015103542245924473, + 0.020905962213873863, + -0.06889310479164124, + 0.027436669915914536, + 0.0002642526524141431, + -0.04062629118561745, + -0.10776402056217194, + 0.07125794142484665, + -0.017781762406229973, + -0.0850900188088417, + 0.0297748614102602, + -0.042636025696992874, + -0.036677200347185135, + -0.020300166681408882, + 0.09239005297422409, + 0.023440098389983177, + 0.08265209943056107, + -0.03313437104225159, + -0.03982194513082504, + 0.0458902008831501, + -0.00928093958646059, + -0.07517315447330475, + 0.03893294557929039, + 0.10877475887537003, + 0.013825560919940472, + -0.08336929976940155, + -1.764884416388668e-08, + -0.027418972924351692, + -0.013034094125032425, + 0.03940238058567047, + -0.00190887285862118, + 0.04002051427960396, + 0.004538564011454582, + -0.047327183187007904, + -0.04704013466835022, + 0.00820408295840025, + -0.016020992770791054, + -0.02423516847193241, + -0.0438450388610363, + -0.1019262820482254, + -0.05423988774418831, + 0.0627065896987915, + 0.07069175690412521, + -0.04710191860795021, + 0.10196944326162338, + 0.0016925830859690905, + -0.05642780289053917, + -0.004528319928795099, + 0.08869706094264984, + 0.02505604363977909, + 0.06627878546714783, + 0.054268334060907364, + 0.03132181614637375, + -0.07769350707530975, + -0.01527240127325058, + 0.09489672631025314, + 0.0048675136640667915, + 0.011312847025692463, + 0.07752251625061035, + 0.08101557940244675, + -0.04682287201285362, + -0.017907392233610153, + 0.007856062613427639, + 0.027193518355488777, + -0.032596223056316376, + -0.025302374735474586, + 0.05917156860232353, + 0.03780559077858925, + -0.04245622083544731, + -0.006146069150418043, + -0.009035121649503708, + 0.02927178330719471, + -0.00939953327178955, + 0.08926443010568619, + 0.016044914722442627, + -0.06422697007656097, + -0.05207772180438042, + -0.010901725850999355, + -0.0013343452010303736, + 0.007655751891434193, + 0.05830109491944313, + -0.10038679093122482, + -0.1261027604341507, + 0.09530461579561234, + 0.03209143131971359, + 0.014733538031578064, + 0.01309596560895443, + 0.10443919152021408, + -0.08866969496011734, + -0.013598193414509296, + -0.024144262075424194 + ], + "receipt-bold||purchase,money,clipping,expense": [ + -0.03349045291543007, + 0.08560730516910553, + -0.01576986163854599, + -0.03360455483198166, + 0.05029231309890747, + -0.012179718352854252, + 0.13634558022022247, + 0.0009203818626701832, + 0.06760849058628082, + -0.004638909362256527, + 0.10122501850128174, + -0.04058343917131424, + 0.0267082117497921, + -0.023930883035063744, + -0.05886807292699814, + -0.052310243248939514, + 0.03410889208316803, + 0.056948743760585785, + -0.019050588831305504, + 0.03348756209015846, + 0.02519874833524227, + 0.03314454108476639, + -0.010960225015878677, + 0.07900892943143845, + 0.05763231962919235, + 0.006612039636820555, + 0.014505939558148384, + 0.016173290088772774, + 0.029183197766542435, + -0.11547552049160004, + 0.04487319663167, + -0.04166220873594284, + 0.14171580970287323, + -0.010453528724610806, + 0.07691670209169388, + 0.004250189755111933, + 0.009361119009554386, + -0.0008478809613734484, + 0.007363421376794577, + 0.002165508223697543, + -0.01832249015569687, + -0.059036821126937866, + -0.080695241689682, + -0.010559357702732086, + -0.013153979554772377, + -0.02814427949488163, + -0.00921983364969492, + 0.037335291504859924, + 0.006748826242983341, + 0.08031655102968216, + 0.024381190538406372, + -0.05205059051513672, + -0.06360965222120285, + -0.002697410760447383, + -0.03772908076643944, + -0.02292655035853386, + 0.031709879636764526, + -0.02759665623307228, + -0.020870711654424667, + -0.06942552328109741, + -0.022326095029711723, + -0.012534945271909237, + 0.007580696139484644, + 0.01935429684817791, + 0.030501244589686394, + 0.07442884892225266, + -0.03688133880496025, + 0.012394118122756481, + -0.10045009106397629, + 0.015046904794871807, + 0.06243908777832985, + 0.0021363617852330208, + -0.06759858876466751, + -0.025100184604525566, + -0.04032333940267563, + 0.008771716617047787, + 0.1022564247250557, + -0.014871956780552864, + -0.08929257839918137, + -0.05325642228126526, + -0.04451855644583702, + 0.022787103429436684, + -0.027900591492652893, + 0.008347153663635254, + 0.06744985282421112, + 0.04882413521409035, + -0.03841370344161987, + -0.03050380013883114, + 0.012717824429273605, + -0.04316036030650139, + 0.004423241596668959, + -0.04760858789086342, + 0.007987081073224545, + -0.015966316685080528, + -0.0650353655219078, + -0.026650097221136093, + 0.022662103176116943, + -0.0720272809267044, + 0.0986289530992508, + 0.08778375387191772, + 0.05203128233551979, + 0.08864855766296387, + 0.045481547713279724, + -0.04006718471646309, + -0.013457289896905422, + -0.02389594353735447, + 0.013806432485580444, + -0.0013319684658199549, + 0.012358131818473339, + 0.005655909888446331, + 0.012681347317993641, + -0.04411374405026436, + -0.01343871932476759, + -0.03417668491601944, + 0.010416136123239994, + 0.054831523448228836, + -0.09271153807640076, + 0.0121552012860775, + 0.1020924299955368, + -0.04160444065928459, + 0.007821273058652878, + 0.03499681502580643, + -0.05023439601063728, + -0.045970071107149124, + -0.04602314531803131, + -0.028354309499263763, + 0.0879891887307167, + -2.4929560931292597e-33, + -0.03254883736371994, + 0.04353131353855133, + -0.0639776736497879, + 0.008540024980902672, + 0.007801810745149851, + 0.023238254711031914, + 0.01633104868233204, + -0.023257015272974968, + -0.07387445122003555, + -0.016860956326127052, + 0.03201047331094742, + 0.08003757148981094, + 0.016408847644925117, + 0.048972103744745255, + -0.01371140219271183, + 0.020477294921875, + -0.05862799659371376, + 0.10060203075408936, + 0.016172129660844803, + 0.07181013375520706, + -0.04794177785515785, + -0.08356721699237823, + 0.026703841984272003, + 0.03332879766821861, + 0.05175945907831192, + -0.051161352545022964, + -0.0013901108177378774, + 0.0216794665902853, + -0.03968474268913269, + 0.02592552825808525, + 0.07193165272474289, + -0.0013500747736543417, + 0.10967961698770523, + 0.006620403379201889, + -0.00701532606035471, + 0.04644301161170006, + 0.01743309386074543, + -0.0179958064109087, + 0.07081132382154465, + 0.015524216927587986, + -0.06792493909597397, + -0.038458600640296936, + 0.04033773019909859, + -0.03132293000817299, + -0.07630889862775803, + 0.04388801008462906, + -0.015536860562860966, + 0.008362607099115849, + -0.003934722859412432, + 0.02751913294196129, + -0.026566356420516968, + -0.022783983498811722, + 0.030010702088475227, + -0.0410672090947628, + -0.05617443099617958, + -0.09450644254684448, + 0.017352046445012093, + -0.0047572604380548, + 0.02618064172565937, + -0.025200923904776573, + 0.01911698840558529, + 0.06568703800439835, + 0.049087997525930405, + -0.05992020666599274, + -0.07875111699104309, + 0.024558797478675842, + -0.035361725836992264, + -0.003965151961892843, + 0.06116620823740959, + -0.02936708554625511, + -0.06713046878576279, + 0.0870315209031105, + 0.0055026765912771225, + 0.03616216406226158, + 0.009232424199581146, + -0.014410941861569881, + -0.004909520503133535, + 0.021803174167871475, + 0.12975984811782837, + -0.03978656604886055, + -0.09490947425365448, + -0.03363967686891556, + 0.04482535272836685, + 0.06587419658899307, + -0.02476484328508377, + 0.10806123167276382, + 0.03281406685709953, + -0.09956075251102448, + -0.04710567370057106, + 0.01813850924372673, + -0.00425912719219923, + 0.012029925361275673, + -0.04198193550109863, + -0.028642915189266205, + 0.03001820296049118, + 8.04830584458792e-34, + 0.037508588284254074, + 0.1028047651052475, + 0.024713557213544846, + 0.025821387767791748, + -0.10785029828548431, + 0.06204554811120033, + -0.041473496705293655, + 0.0296099241822958, + -0.0671389102935791, + -0.003323531709611416, + -0.05032109096646309, + 0.013555345125496387, + -0.11575763672590256, + -0.012487933970987797, + -0.01802625134587288, + -0.05697586014866829, + 0.05321263149380684, + 0.018181510269641876, + 0.014837979339063168, + -0.04049927368760109, + 0.01150117814540863, + -0.013280900195240974, + -0.032500702887773514, + 0.004560994915664196, + -0.06993316113948822, + 0.060718733817338943, + -0.03387131169438362, + -0.06991561502218246, + -0.0356699638068676, + 0.006763555575162172, + -0.008124450221657753, + 0.016947142779827118, + -0.023643039166927338, + 0.0483052022755146, + -0.052904415875673294, + -0.042570628225803375, + 0.029835592955350876, + 0.06270341575145721, + 0.07841292768716812, + -0.008322879672050476, + 0.010424179024994373, + 0.02115071378648281, + 0.022156164050102234, + 0.007732632104307413, + 0.0034025507047772408, + -0.11848299205303192, + -0.008612868376076221, + -0.02790156379342079, + 0.08172149211168289, + 0.01637285389006138, + -0.02688450925052166, + -0.022157713770866394, + -0.030473733320832253, + 0.09208106249570847, + -0.1562182903289795, + 0.12049111723899841, + 0.04919269308447838, + -0.056933946907520294, + 0.004614187404513359, + 0.033040646463632584, + -0.08669927716255188, + 0.08834517002105713, + -0.008333204314112663, + 0.02321799285709858, + 0.01263484451919794, + -0.09141872078180313, + 0.08647708594799042, + -0.052957162261009216, + 0.07207836210727692, + -0.03867625445127487, + -0.018437067046761513, + -0.051921866834163666, + 0.022438768297433853, + -0.06806106120347977, + 0.059085678309202194, + 0.027585530653595924, + -0.026731695979833603, + 0.01616664044559002, + -0.0006417183903977275, + 0.044531021267175674, + 0.03573760762810707, + -0.007951081730425358, + 0.04604382440447807, + 0.018608955666422844, + -0.054372452199459076, + -0.02252126857638359, + -0.06844233721494675, + -0.016754435375332832, + 0.0031108648981899023, + 0.01952552981674671, + -0.04683169350028038, + 0.03426530212163925, + 0.0016657308442518115, + 0.01462673768401146, + -0.036193784326314926, + -1.9121769057051097e-08, + 0.011281806975603104, + 0.014482666738331318, + 0.027421927079558372, + -0.004055333789438009, + 0.03351278603076935, + -0.07149352133274078, + 0.012437774799764156, + -0.043549783527851105, + -0.06660781800746918, + -0.031198231503367424, + 0.002567715710029006, + -0.050922080874443054, + -0.12947581708431244, + -0.08542048186063766, + -0.03429534658789635, + 0.05471537262201309, + -0.009638053365051746, + 0.0021164645440876484, + -0.07607857137918472, + 0.002955846721306443, + -0.03131488338112831, + 0.03488415479660034, + 0.019179409369826317, + -0.01172100380063057, + -0.0039012182969599962, + -0.067022405564785, + -0.03704065829515457, + 0.1241767480969429, + 0.06812011450529099, + -0.012270153500139713, + 0.04705877602100372, + 0.08399326354265213, + 0.03599513694643974, + 0.009367559105157852, + 0.010118621401488781, + -0.0410308875143528, + -0.029019193723797798, + 0.002967205597087741, + 0.020548667758703232, + 0.13711358606815338, + -0.015352077782154083, + -0.09728594869375229, + -0.028478557243943214, + -0.00944279134273529, + 0.05151665210723877, + 0.024039115756750107, + -0.0070424205623567104, + -0.08977579325437546, + -0.09352371841669083, + -0.07374152541160583, + 0.004390924237668514, + -0.07878889888525009, + 0.053592607378959656, + 0.10101792216300964, + -0.08744671195745468, + -0.06296356767416, + 0.049272630363702774, + 0.04589158669114113, + 0.03219688683748245, + -0.0059319245629012585, + 0.1270158886909485, + -0.1082514300942421, + 0.03607805073261261, + -0.009404260665178299 + ], + "receipt-x-bold||purchase,money,clipping,expense,cancel": [ + -0.022043529897928238, + 0.07708633691072464, + -0.0014989686897024512, + -0.01620984449982643, + 0.047100506722927094, + -0.0067759910598397255, + 0.154104083776474, + -0.021788205951452255, + 0.0760679766535759, + -0.0007814148557372391, + 0.12200822681188583, + -0.039022307842969894, + 0.06004202738404274, + -0.040393978357315063, + -0.07523269951343536, + -0.026968976482748985, + 0.0029969271272420883, + 0.05620920658111572, + -0.018610024824738503, + 0.016724087297916412, + 0.03419001027941704, + 0.051578816026449203, + -0.008869454264640808, + 0.09339108318090439, + 0.06577921658754349, + -0.0017084915889427066, + -0.0060714553110301495, + 0.02087544836103916, + 0.02191004529595375, + -0.10594720393419266, + 0.04884843900799751, + -0.018371781334280968, + 0.1551211029291153, + -0.021410828456282616, + 0.06021177023649216, + -0.0023018685169517994, + -0.006276249885559082, + -0.009778904728591442, + 0.0031274016946554184, + -0.008959987200796604, + -0.017901862040162086, + -0.0752897784113884, + -0.07742849737405777, + -0.01281921286135912, + -0.03836492449045181, + -0.04289756342768669, + -0.035071518272161484, + 0.019502123817801476, + 0.02655048482120037, + 0.09965062141418457, + 0.057508859783411026, + -0.0629800409078598, + -0.08151911199092865, + 0.019794374704360962, + -0.014512568712234497, + -0.007846800610423088, + 0.00788947381079197, + -0.009096254594624043, + -0.022497043013572693, + -0.06740271300077438, + -0.02165144309401512, + 0.0020088148303329945, + -0.018358193337917328, + 0.043185826390981674, + 0.017946360632777214, + 0.09812096506357193, + -0.05892636254429817, + -0.01198324654251337, + -0.0843186005949974, + 0.027584761381149292, + 0.06404761224985123, + -0.01418982446193695, + -0.05839065462350845, + -0.027138177305459976, + -0.05819769948720932, + 0.030641308054327965, + 0.10721653699874878, + -0.009049136191606522, + -0.10383392870426178, + -0.022278569638729095, + -0.08291404694318771, + -0.008524931035935879, + -0.023090461269021034, + 0.003325715195387602, + 0.0790889784693718, + 0.05303256958723068, + -0.03571191802620888, + -0.013570698909461498, + 0.022556981071829796, + -0.03740872070193291, + -0.012607358396053314, + -0.03077724017202854, + 0.03170745074748993, + 0.0007605432183481753, + -0.08466993272304535, + -0.04849075898528099, + 0.05281748250126839, + -0.05205196887254715, + 0.07264816015958786, + 0.0791320651769638, + 0.04804350063204765, + 0.09101829677820206, + 0.012400807812809944, + -0.04574696719646454, + -0.010543998330831528, + -0.03604520484805107, + -0.004635713528841734, + -0.0006550920661538839, + -0.003949865698814392, + -0.016721904277801514, + 0.0025347864720970392, + -0.07347626239061356, + 0.015048325061798096, + -0.03284797817468643, + -0.008521532639861107, + 0.09468229115009308, + -0.054538048803806305, + 0.01301588211208582, + 0.1078006699681282, + -0.07520666718482971, + 0.007404630538076162, + 0.02902938798069954, + -0.05503429099917412, + -0.03281072527170181, + -0.040818795561790466, + -0.038670025765895844, + 0.09126146137714386, + -2.2973720165806704e-33, + -0.03878326341509819, + 0.045311857014894485, + -0.055017780512571335, + -0.006378200836479664, + 0.029465479776263237, + 0.030775729566812515, + 0.004973059985786676, + -0.016232028603553772, + -0.07854955643415451, + 0.025094948709011078, + 0.030353335663676262, + 0.07716064900159836, + 0.02135789766907692, + 0.028672806918621063, + -0.02814699523150921, + 0.01219194009900093, + -0.014324349351227283, + 0.0811249390244484, + -0.007078627124428749, + 0.07490501552820206, + -0.006159437820315361, + -0.07264020293951035, + 0.0020763655193150043, + 0.046075284481048584, + 0.04595768451690674, + -0.04978320747613907, + -0.013226890936493874, + 0.013716159388422966, + -0.019213203340768814, + 0.021906018257141113, + 0.04310539737343788, + -0.007353803142905235, + 0.09783173352479935, + 0.03460206463932991, + -0.005439819768071175, + 0.04617073014378548, + 0.002835603430867195, + -0.014383615925908089, + 0.07775360345840454, + 0.02204200066626072, + -0.0945454090833664, + -0.021182997152209282, + -0.011010359041392803, + -0.06524508446455002, + -0.0457279346883297, + 0.023378875106573105, + -0.019236022606492043, + -0.04855404421687126, + 0.031135885044932365, + 0.0027994068805128336, + -0.009460191242396832, + -0.009854206815361977, + 0.03199538215994835, + -0.02489395998418331, + -0.04685456305742264, + -0.09333033859729767, + 0.006080305203795433, + 0.040385935455560684, + 0.0027346734423190355, + -0.023799264803528786, + 0.04043745622038841, + 0.038507986813783646, + 0.03688080981373787, + -0.07094714045524597, + -0.11386839300394058, + 0.030356165021657944, + -0.03217610344290733, + -0.028871720656752586, + 0.031399305909872055, + -0.027865203097462654, + -0.06585089862346649, + 0.08369247615337372, + 0.02918390929698944, + 0.028281860053539276, + 0.02200237847864628, + -0.03780112415552139, + -0.029620235785841942, + 0.020688433200120926, + 0.14271138608455658, + -0.03185085952281952, + -0.06666259467601776, + -0.026916299015283585, + 0.015125937759876251, + 0.09233924746513367, + 0.01613544300198555, + 0.10989253222942352, + 0.03562889248132706, + -0.06608090549707413, + -0.0641576275229454, + 0.025442762300372124, + -0.036594685167074203, + -0.00045339189819060266, + -0.028803935274481773, + -0.01655679941177368, + 0.015883542597293854, + 5.720830244202156e-34, + 0.018687186762690544, + 0.09441787004470825, + -0.005997226573526859, + 0.026175035163760185, + -0.11995809525251389, + 0.06784868240356445, + -0.004079299513250589, + 0.030335990712046623, + -0.035943396389484406, + -0.015787426382303238, + 0.0007471988210454583, + 0.02282281219959259, + -0.11245627701282501, + 0.0025425793137401342, + -0.01319342851638794, + -0.04112757742404938, + 0.06396687030792236, + 0.027145439758896828, + -0.035084713250398636, + -0.03854891657829285, + 0.00011505150177981704, + -0.012077097781002522, + -0.03046027384698391, + 0.0050277491100132465, + -0.06376200914382935, + 0.030145781114697456, + -0.008406201377511024, + -0.0361463688313961, + -0.024199306964874268, + -0.0052018235437572, + -0.017035722732543945, + 0.031597260385751724, + -0.01728423871099949, + 0.05825966224074364, + -0.015899747610092163, + -0.05696742609143257, + 0.02509620040655136, + 0.07741988450288773, + 0.052809178829193115, + 0.019116785377264023, + 0.023752272129058838, + 0.0009374511428177357, + 0.02257959544658661, + 0.01580173708498478, + 0.0033943215385079384, + -0.09520725160837173, + -0.01263077650219202, + -0.05114699527621269, + 0.0749431699514389, + 0.025171330198645592, + -0.027559656649827957, + -0.026061244308948517, + -0.030463026836514473, + 0.1125933900475502, + -0.1406508982181549, + 0.1012457087635994, + 0.05817490443587303, + -0.04836556315422058, + 0.0009439329151064157, + 0.027688046917319298, + -0.08619853109121323, + 0.06838300079107285, + 0.030863355845212936, + 0.027462011203169823, + 0.015151053667068481, + -0.0804586410522461, + 0.07267466932535172, + -0.0250124279409647, + 0.05246493220329285, + -0.04145693778991699, + 0.0003805392188951373, + -0.04371332377195358, + -0.010405321605503559, + -0.04749242216348648, + 0.04278908669948578, + -0.0005434388876892626, + -0.0320274755358696, + -0.0027230086270719767, + 0.015689844265580177, + 0.0319381058216095, + 0.06094865873456001, + 0.0018266349798068404, + 0.0649481862783432, + 0.032180238515138626, + -0.07198464125394821, + 0.0004774073895532638, + -0.07871953397989273, + 0.02795405685901642, + 0.0050095184706151485, + 0.017462894320487976, + -0.017916027456521988, + 0.01810290850698948, + 0.02630842849612236, + -0.022873008623719215, + -0.047828543931245804, + -2.0236511133475688e-08, + -0.017596881836652756, + -0.019120873883366585, + 0.0325433723628521, + -0.02492680959403515, + 0.035191453993320465, + -0.05585257336497307, + -0.0062157525680959225, + -0.05004545673727989, + -0.05909383296966553, + -0.06750748306512833, + 0.023191014304757118, + -0.039613429456949234, + -0.11938545107841492, + -0.10412436723709106, + -0.052128568291664124, + 0.03480017930269241, + 0.01451844908297062, + 0.0006122224731370807, + -0.05761459842324257, + -0.004430817905813456, + -0.04110673442482948, + 0.03182131424546242, + -0.005215349607169628, + -0.03268234804272652, + -0.003566219238564372, + -0.08161408454179764, + -0.038161009550094604, + 0.13741959631443024, + 0.07468340545892715, + -0.024019518867135048, + 0.036604393273591995, + 0.05821269378066063, + 0.03653782233595848, + 0.0040543763898313046, + -0.004224454052746296, + -0.04534778371453285, + -0.014015903696417809, + 0.006780941039323807, + 0.017223021015524864, + 0.12510524690151215, + -0.004148018546402454, + -0.10474687814712524, + -0.026795243844389915, + -0.0035200419370085, + 0.05026179924607277, + 0.03558164834976196, + 0.015894638374447823, + -0.12925875186920166, + -0.08534575998783112, + -0.08126740157604218, + 0.01550100278109312, + -0.053076036274433136, + 0.06380657851696014, + 0.09095331281423569, + -0.08571210503578186, + -0.06283339858055115, + 0.04217725619673729, + 0.03920697793364525, + 0.025981610640883446, + 0.0050502982921898365, + 0.1302185207605362, + -0.09689956903457642, + 0.03245130181312561, + -0.03014523535966873 + ], + "record-bold||music,audio,recording,recorder,voice memo": [ + -0.0019626901485025883, + -0.01420233678072691, + -0.09324141591787338, + -0.05729101225733757, + -0.014676353894174099, + 0.06014261767268181, + 0.056586869060993195, + -0.04964466392993927, + -0.011283040046691895, + -0.0783810243010521, + 0.01609409600496292, + -0.006017612759023905, + 0.03699075058102608, + -0.07583130896091461, + -0.019701318815350533, + 0.023307936266064644, + 0.006183854769915342, + 0.09098745882511139, + 0.01824045740067959, + 0.0019153638277202845, + 0.06552566587924957, + 0.0949433371424675, + 0.048768553882837296, + 0.03543549403548241, + 0.033115681260824203, + 0.05606159567832947, + -0.014906496740877628, + 0.03810640051960945, + 0.08242619037628174, + -0.08646281063556671, + -0.012026541866362095, + 0.007581842597573996, + 0.14285671710968018, + 0.028494490310549736, + 0.04395443946123123, + -0.01857304759323597, + -0.04982906952500343, + -0.008929979987442493, + -0.03307836502790451, + -0.005611096508800983, + 0.02707473747432232, + 0.007453812286257744, + -0.02157854102551937, + 0.020840365439653397, + -0.0773819163441658, + -0.002631742972880602, + -0.0967884212732315, + -0.03783596307039261, + -0.07190895825624466, + 0.020707134157419205, + -0.042781002819538116, + -0.014318331144750118, + -0.06495746225118637, + 0.07998073101043701, + -0.05614719167351723, + -0.02289627492427826, + 0.005571722984313965, + 0.043151963502168655, + -0.00039607082726433873, + 0.05698122829198837, + -0.030256321653723717, + -0.008980666287243366, + -0.001854941714555025, + 0.007522461470216513, + -0.012596840038895607, + 0.018748026341199875, + -0.027714330703020096, + 0.06622183322906494, + -0.017789047211408615, + 0.032107047736644745, + -0.042367663234472275, + 0.049770839512348175, + -0.02834468148648739, + -0.03742193430662155, + -0.0065553938038647175, + -0.0269156564027071, + 0.007171051111072302, + -0.009697357192635536, + -0.0625181570649147, + -0.08446837216615677, + -0.033205028623342514, + -0.10540872812271118, + -0.037847019731998444, + -0.061610300093889236, + 0.0691865012049675, + 0.04760701581835747, + -0.06353215873241425, + -0.06955220550298691, + -0.08237328380346298, + -0.011651591397821903, + -0.13359040021896362, + -0.032121431082487106, + -0.015846755355596542, + -0.03936135768890381, + -0.07081808149814606, + 0.047362588346004486, + 0.05650831386446953, + -0.003437719540670514, + 0.047669585794210434, + 0.05297815427184105, + 0.040480997413396835, + 0.05418164283037186, + 0.0005517906392924488, + 0.003285712096840143, + -0.047198470681905746, + -0.09570547193288803, + -0.0046411980874836445, + 0.002630622358992696, + 0.031808167695999146, + -0.01584315299987793, + 0.016451451927423477, + -0.01085949782282114, + -0.04462520033121109, + -0.051215674728155136, + 0.08072219789028168, + -0.022670762613415718, + -0.08322180062532425, + -0.013650600798428059, + 0.07100947946310043, + 0.0065734973177313805, + -0.004998822696506977, + -0.060654282569885254, + -0.04748707637190819, + 0.027021436020731926, + -0.04796776920557022, + -0.02536679431796074, + 0.07539080828428268, + -9.288623198728287e-34, + 0.10911953449249268, + 0.02638670615851879, + -0.05516718700528145, + 0.052412062883377075, + 0.06868977844715118, + 0.030637381598353386, + -0.07823234796524048, + 0.036100104451179504, + -0.05119435861706734, + 0.09939518570899963, + 0.05186975747346878, + 0.05775260925292969, + -0.024252573028206825, + 0.06778013706207275, + 0.02053098939359188, + 0.05509264022111893, + -0.1087656319141388, + 0.020801439881324768, + -0.06517928838729858, + -0.004361833445727825, + -0.04234876111149788, + 0.08543264120817184, + 0.05996565520763397, + 0.0336197130382061, + 0.06840042769908905, + -0.04336647689342499, + 0.01791512593626976, + -0.04288909211754799, + 0.007074653636664152, + 0.003548151347786188, + 0.00295454659499228, + -0.049860745668411255, + 0.0429999865591526, + -0.05179930850863457, + 0.07452376186847687, + 0.09356465935707092, + -0.04221499338746071, + -0.00994669459760189, + 0.005572937428951263, + -0.03319379687309265, + -0.07283890247344971, + -0.014834183268249035, + -0.0421956367790699, + -0.11063337326049805, + -0.014019426889717579, + 0.06449136137962341, + -0.01898827776312828, + 0.017549294978380203, + 0.046733733266592026, + 0.056662850081920624, + 0.005835511721670628, + -0.000938104756642133, + -0.0034347858745604753, + -0.007529114838689566, + 0.015021620318293571, + 0.005342714488506317, + 0.02612205781042576, + 0.0820031613111496, + 0.028185740113258362, + 0.07420307397842407, + 0.05139691382646561, + 0.03393835201859474, + 0.09436255693435669, + -0.0635618343949318, + -0.02929748222231865, + 0.0932333916425705, + -0.011669299565255642, + -0.012433767318725586, + 0.13886995613574982, + -0.03669603914022446, + -0.024815095588564873, + -0.00877399928867817, + -0.02004696987569332, + 0.0022954335436224937, + -0.014070314355194569, + 0.040091175585985184, + 0.013225918635725975, + -0.04481524974107742, + -0.014595527201890945, + -0.018297508358955383, + -0.08342018723487854, + 0.05260230973362923, + -0.09422339498996735, + 0.10824644565582275, + -0.010441819205880165, + 0.05102831870317459, + 0.006997748743742704, + -0.11491019278764725, + -0.014172821305692196, + 0.04673928767442703, + -0.0737418606877327, + 0.07573766261339188, + -0.0035974362399429083, + -0.047424133867025375, + -0.09685131907463074, + -1.8859243818798994e-33, + 0.04457956179976463, + 0.09738868474960327, + 0.0029212988447397947, + 0.014347860589623451, + -0.039112553000450134, + 0.0025070759002119303, + 0.07719792425632477, + 0.07807532697916031, + -0.0001842150668380782, + 0.009132010862231255, + 0.015106634236872196, + -0.053164366632699966, + -0.0286851953715086, + -0.05402320623397827, + -0.0521286241710186, + -0.022733140736818314, + -0.029041120782494545, + 0.059163983911275864, + 0.011587412096560001, + 0.06536313891410828, + -0.03215137496590614, + 0.003247643820941448, + 0.031818754971027374, + 0.1180417612195015, + -0.05232462286949158, + 0.006960183847695589, + -0.03163610026240349, + -0.00796990841627121, + -0.003988898359239101, + -0.07004256546497345, + 0.038204461336135864, + -0.031010501086711884, + -0.000911891576834023, + -0.03946256637573242, + -0.06539802998304367, + -0.03197522833943367, + 0.12657001614570618, + -0.0030995786655694246, + 0.0385945588350296, + -0.01570240594446659, + 0.003970087971538305, + 0.06524477154016495, + 0.006303449161350727, + 0.03272521123290062, + -0.011974618770182133, + -0.05895718187093735, + -0.09087416529655457, + 0.0539797842502594, + -0.048562031239271164, + 0.06160632520914078, + 0.011127696372568607, + -0.054165493696928024, + -0.015012027695775032, + -0.004278476815670729, + -0.07478216290473938, + -0.06904669851064682, + -0.008827614597976208, + -0.09973345696926117, + 0.006688979919999838, + 0.08318778872489929, + -0.030282210558652878, + 0.055163681507110596, + -0.06874728947877884, + -0.060869887471199036, + 0.028950160369277, + -0.008327996358275414, + 0.08829864114522934, + -0.0540914386510849, + -0.021175188943743706, + 0.038633763790130615, + 0.03594556450843811, + 0.017625907436013222, + 0.005090431775897741, + 0.06571675837039948, + -0.03250351920723915, + -0.02030516229569912, + -0.08885571360588074, + -0.03808842971920967, + -0.07089364528656006, + -0.02476789429783821, + -0.03804979473352432, + -0.029335718601942062, + -0.0019177618669345975, + 0.05170080438256264, + -0.02958972565829754, + 0.08572804927825928, + 0.07312731444835663, + -0.051499348133802414, + -0.01273499894887209, + 0.0052791619673371315, + -0.02326272241771221, + 0.08125457167625427, + 0.0035583435092121363, + 0.007727252785116434, + -0.04683663696050644, + -1.8109959754042393e-08, + -0.08013400435447693, + -0.012600800022482872, + 0.006192554719746113, + -0.0780070424079895, + 0.017530404031276703, + -0.08150283992290497, + 0.03671804815530777, + -0.03581934794783592, + -0.025265412405133247, + -0.08731074631214142, + 0.09684930741786957, + -0.052223190665245056, + -0.08554492890834808, + -0.030762039124965668, + 0.016899412497878075, + 0.032008785754442215, + -0.008489536121487617, + 0.066072978079319, + -0.03176407888531685, + -0.0737757459282875, + -0.020144041627645493, + 0.058599818497896194, + 0.038920026272535324, + -0.022269535809755325, + 0.06164049729704857, + -0.01345744077116251, + 0.010629965923726559, + 0.08520042896270752, + 0.05768541991710663, + 0.045218221843242645, + 0.03302129730582237, + 0.08308229595422745, + 0.0615757554769516, + -0.0009512569522485137, + -0.04791416972875595, + -0.061923105269670486, + -0.011151723563671112, + 0.002278916072100401, + -0.013166524469852448, + 0.06475435197353363, + -0.03563426807522774, + 0.0036066591273993254, + -0.06974614411592484, + -0.011331361718475819, + -0.010735848918557167, + 0.0029081839602440596, + 0.07043741643428802, + -0.06719794869422913, + -0.06971042603254318, + -0.06628262251615524, + -0.07172682881355286, + -0.0064566475339233875, + 0.02098437212407589, + 0.08971066027879715, + 0.00032128620659932494, + 0.007209230214357376, + 0.011998744681477547, + 0.07727579027414322, + -0.015278494916856289, + -0.033199384808540344, + 0.0795016884803772, + 0.033314552158117294, + 0.012934680096805096, + 0.02380126155912876 + ], + "rectangle-bold||4,shapes,polygons,box": [ + 0.13403189182281494, + 0.028386181220412254, + -0.016799233853816986, + 0.037128228694200516, + -0.026480840519070625, + -0.012824145145714283, + 0.04032024368643761, + -0.07160885632038116, + 0.007671775761991739, + -0.034054942429065704, + -0.08328737318515778, + -0.011999440379440784, + 0.016276312991976738, + -0.004795881453901529, + -0.04917195066809654, + -0.0107456399127841, + 0.015528974123299122, + 0.034128569066524506, + -0.027589349076151848, + -0.0010705097811296582, + -0.0451502688229084, + -0.053077857941389084, + -0.0026244125328958035, + 0.013604886829853058, + 0.024034982547163963, + 0.01668669655919075, + 0.08410649001598358, + 0.01887688785791397, + 0.028797166422009468, + -0.0988176092505455, + 0.008562020026147366, + 0.008309958502650261, + 0.10079078376293182, + 0.050870541483163834, + -0.015202905051410198, + 0.03476493060588837, + -0.025896890088915825, + 0.022545110434293747, + 0.053367093205451965, + 0.06625375151634216, + -0.03274638578295708, + -0.010754321701824665, + 0.06184075027704239, + 0.07589934766292572, + -0.023821435868740082, + -0.0011919473763555288, + -0.08260614424943924, + -0.022403543815016747, + 0.03800933435559273, + -0.10122847557067871, + 0.059710774570703506, + -0.0867045521736145, + -0.11318173259496689, + 0.03257640823721886, + -0.015324320644140244, + -0.03975718468427658, + -0.03936613351106644, + -0.02803475223481655, + 0.03061136044561863, + -0.04458357021212578, + 0.046729762107133865, + 0.01641150936484337, + 0.06434010714292526, + 0.02954797074198723, + -0.007295337039977312, + 0.10014944523572922, + -0.0369776152074337, + 0.024425797164440155, + -0.0665782019495964, + -0.009868571534752846, + 0.05814967304468155, + 0.11247873306274414, + 0.027750058099627495, + -0.09593003243207932, + 0.007600292097777128, + -0.09514487534761429, + 0.007331965025514364, + 0.0030574300326406956, + -0.022796763107180595, + 0.005808367859572172, + -0.11379535496234894, + 0.04217217490077019, + 0.004439318552613258, + 0.025856120511889458, + 0.010943446308374405, + 0.0706077292561531, + -0.09214389324188232, + -0.08235462009906769, + -0.040390610694885254, + -0.009102527052164078, + -0.03537803515791893, + 0.04180056229233742, + 0.007082237862050533, + 0.08910924941301346, + -0.07663318514823914, + 0.009073033928871155, + -0.005093178246170282, + -0.0018905199831351638, + -0.036921583116054535, + 0.03100963681936264, + 0.09347471594810486, + -0.0023942962288856506, + 0.04921841621398926, + -0.04422556608915329, + 0.009466871619224548, + -0.0008971754577942193, + 0.0266878604888916, + -0.01132343988865614, + 0.020558645948767662, + 0.038485828787088394, + -0.05472764000296593, + -0.08815251290798187, + -0.011148697696626186, + -0.01346142590045929, + -0.0820915699005127, + -0.02599938213825226, + -0.08553998917341232, + -0.05612415447831154, + 0.02588825859129429, + -0.0034856596030294895, + 0.07403413951396942, + -0.02827550657093525, + -0.02173958159983158, + -0.06820687651634216, + 0.01775430142879486, + 0.026339301839470863, + 0.013502707704901695, + -1.2457101181457567e-33, + -0.0041268449276685715, + -0.00924756657332182, + -0.006883422378450632, + 0.13855677843093872, + 0.11028192192316055, + 0.006601743400096893, + -0.00412234989926219, + -0.05832291767001152, + -0.04029761254787445, + 0.043959733098745346, + -0.05136231705546379, + 0.035728052258491516, + -0.026776224374771118, + 0.004665367770940065, + 0.07669513672590256, + -0.06881629675626755, + -0.025869663804769516, + 0.023299312219023705, + -0.10922437161207199, + 0.005792113486677408, + -0.073272205889225, + 0.0118624959141016, + -0.09289877116680145, + 0.01799151860177517, + -0.07071256637573242, + 0.03172963485121727, + 0.04006614163517952, + 0.047353100031614304, + -0.05479208007454872, + 0.025488726794719696, + -0.018462013453245163, + 0.0340484157204628, + -0.001409666147083044, + 0.04651101678609848, + -0.037519630044698715, + -0.02811959944665432, + -0.0004636227386072278, + 0.0066679404117167, + 0.0674637109041214, + 0.0586816668510437, + -0.032573599368333817, + -0.05790867283940315, + 0.022359540686011314, + -0.049883272498846054, + 0.12259580940008163, + 0.0451127253472805, + -0.024071771651506424, + -0.029078839346766472, + -0.03697003051638603, + 0.03895051032304764, + 0.007041622418910265, + 0.04646449536085129, + 0.03574320673942566, + 0.003705797251313925, + -0.01124944444745779, + -0.12365275621414185, + -0.09076236933469772, + 0.1205688863992691, + 0.01836983487010002, + 0.0539223849773407, + 0.05249323695898056, + 0.04624251276254654, + -0.019167158752679825, + -0.021083282306790352, + -0.08561789244413376, + 0.02709033153951168, + -0.07096526026725769, + 0.010106476955115795, + -0.018431734293699265, + 0.02720649354159832, + 0.0799180343747139, + 0.05855691432952881, + 0.010943828150629997, + -0.009892242960631847, + 0.025659142062067986, + 0.01622908003628254, + 0.011981618590652943, + 0.036712683737277985, + 0.027419889345765114, + -0.07748355716466904, + -0.07997008413076401, + 0.015097850933670998, + -0.06835661083459854, + -0.006048924755305052, + -0.011275562457740307, + -0.023792486637830734, + 0.07913811504840851, + 0.022877302020788193, + 0.040120843797922134, + 0.007062504068017006, + -0.06639041006565094, + -0.03465622663497925, + 0.013070834800601006, + -0.0318024568259716, + -0.041870903223752975, + -1.7636221413171173e-36, + -0.01490658801048994, + 0.0646846741437912, + -0.039896588772535324, + -0.05484513193368912, + -0.008179062977433205, + 0.040008869022130966, + 0.03414922207593918, + 0.024313610047101974, + 0.0012459814315661788, + 0.052152663469314575, + 0.009140639565885067, + -0.03676838427782059, + -0.05576251074671745, + -0.014920869842171669, + -0.03662547469139099, + 0.06578897684812546, + -0.02082979492843151, + -0.0026041956152766943, + -0.09149102866649628, + -0.0750851109623909, + -0.06996545940637589, + 0.006990864407271147, + -0.08941840380430222, + 0.07053957879543304, + -0.09900766611099243, + 0.07033374160528183, + 0.004214500542730093, + -0.0325407050549984, + -0.023471875116229057, + 0.011717778630554676, + -0.03723752126097679, + -0.091758593916893, + 0.011096184141933918, + 0.12022370100021362, + -0.08712917566299438, + -0.05030716955661774, + 0.05591033399105072, + -0.06424641609191895, + 0.05329407751560211, + -0.003178269835188985, + 0.009124129079282284, + 0.0016613765619695187, + 0.008850939571857452, + 0.09605033695697784, + -0.050019435584545135, + -0.013981599360704422, + -0.023015109822154045, + -0.010044374503195286, + 0.009505129419267178, + 0.032933566719293594, + -0.05794937163591385, + -0.036852747201919556, + 0.04699583351612091, + -0.01810360699892044, + -0.054721686989068985, + 0.002107578096911311, + -0.08143878728151321, + 0.015190200880169868, + 0.033579178154468536, + 0.08427680283784866, + -0.07246127724647522, + 0.012717598117887974, + 0.010985228233039379, + 0.10218507796525955, + 0.0740639939904213, + -0.05271591246128082, + 0.07566814869642258, + -0.03828245401382446, + 0.006275268737226725, + 0.021444058045744896, + 0.07805055379867554, + 0.07176779210567474, + -0.04253854230046272, + 0.0207158662378788, + 0.013681315816938877, + -0.0018541277386248112, + 0.032092925161123276, + 0.013178372755646706, + -0.024939632043242455, + 0.08881410956382751, + -0.04772787168622017, + -0.03500882908701897, + 0.015021828934550285, + 0.038748081773519516, + -0.02796090394258499, + -0.07079795747995377, + 0.00617254339158535, + 0.027527477592229843, + 0.0014207507483661175, + -0.04048194736242294, + -0.038656286895275116, + 0.03773447498679161, + 0.02119925431907177, + 0.015486864373087883, + 0.016634676605463028, + -1.8649657818059495e-08, + 0.01658768579363823, + -0.033122144639492035, + -0.06909872591495514, + -0.042044539004564285, + 0.001729049370624125, + -0.029314719140529633, + -0.031837597489356995, + -0.012585698626935482, + -0.06026941165328026, + -0.02629692852497101, + 0.043876633048057556, + 0.0019234413048252463, + -0.1310860514640808, + 0.011602413840591908, + 0.04802819713950157, + 0.010538931004703045, + -0.053042080253362656, + 0.05326899513602257, + 0.008444338105618954, + -0.04562457650899887, + 0.0714641734957695, + 0.0016889988910406828, + 0.06880515068769455, + 0.0806412398815155, + -0.030982254073023796, + 0.033376261591911316, + -0.04470904916524887, + 0.032069817185401917, + 0.07944024354219437, + 0.08498910814523697, + 0.015555502846837044, + 0.054882507771253586, + 0.0923272892832756, + 0.027597105130553246, + -0.05328526347875595, + -0.06174769997596741, + -0.0636042132973671, + 0.03972605988383293, + -0.06963641941547394, + 0.10646026581525803, + 0.009223481640219688, + -0.10528815537691116, + 0.05103490874171257, + -0.061888858675956726, + 0.02123233489692211, + 0.025329465046525, + 0.020217182114720345, + -0.0463358610868454, + -0.010728948749601841, + -0.05081551522016525, + -0.035666536539793015, + 0.028778288513422012, + 0.0424652099609375, + 0.12598171830177307, + -0.04546930268406868, + -0.0684516504406929, + -0.01626160927116871, + 0.05111076682806015, + 0.07371099293231964, + -0.006064515095204115, + 0.03951958939433098, + 0.11062876135110855, + -0.002574838697910309, + -0.02696974202990532 + ], + "rectangle-dashed-bold||*new*,4,shapes,polygons,box,missing": [ + 0.059036679565906525, + -0.00982831884175539, + 0.05044173821806908, + 0.02561260014772415, + 0.0002799965732265264, + -0.02482430823147297, + 0.012195877730846405, + -0.09093352407217026, + -0.01120981015264988, + -0.015490039251744747, + -0.006598473060876131, + 0.0003486204950604588, + -0.016134819015860558, + -0.027986953034996986, + 0.00496617890894413, + 0.02508508786559105, + 0.003192298114299774, + -0.055357858538627625, + -0.019125251099467278, + 0.0030267105903476477, + -0.12050030380487442, + -0.0866943895816803, + -0.04357879236340523, + 0.025020666420459747, + 0.05980023741722107, + 0.06420553475618362, + 0.059189558029174805, + 0.002090464113280177, + -0.004861191380769014, + -0.09386487305164337, + -0.00733961071819067, + 0.04196053743362427, + 0.09201185405254364, + -0.002216067397966981, + 0.050781361758708954, + 0.01416324358433485, + 0.02211446687579155, + 0.04967952147126198, + 0.046758949756622314, + 0.0177301112562418, + -0.020179538056254387, + -0.014794272370636463, + 0.004317613318562508, + 0.062220629304647446, + -0.030767083168029785, + -0.022753344848752022, + -0.05425509065389633, + -0.03666717931628227, + 0.07742618024349213, + -0.07978256046772003, + 0.023354973644018173, + -0.058463629335165024, + -0.09210659563541412, + -0.0010661972919479012, + 0.001833049114793539, + 0.024670036509633064, + -0.004481888841837645, + 0.011043587699532509, + 0.03586288169026375, + -0.05397549271583557, + 0.04765362665057182, + -0.007884412072598934, + 0.04232167825102806, + 0.017131652683019638, + -0.017308561131358147, + 0.030810246244072914, + -0.09704717248678207, + -0.01819787733256817, + -0.0530211478471756, + 0.07087670266628265, + 0.027587173506617546, + 0.11702144891023636, + -0.02001676894724369, + -0.050610724836587906, + 0.013128264807164669, + -0.1041874960064888, + 0.002890791278332472, + 0.024315712973475456, + -0.019198469817638397, + -0.024307377636432648, + -0.08822154253721237, + 0.028218375518918037, + -0.040967658162117004, + 0.025856928899884224, + 0.05705562233924866, + 0.10395842045545578, + -0.09080442041158676, + -0.1010064035654068, + -0.057386815547943115, + -0.039731938391923904, + -0.0416601188480854, + 0.0025213249027729034, + -0.016749413684010506, + 0.08800797909498215, + -0.08248294144868851, + -0.025103522464632988, + 0.04507424309849739, + 0.024965306743979454, + -0.003125710878521204, + 0.07335720211267471, + 0.06066971272230148, + -0.016433341428637505, + 0.09111710637807846, + 0.005016185808926821, + -0.03609997406601906, + 0.013017069548368454, + -0.0337674543261528, + 0.02649657242000103, + 0.025478608906269073, + 0.04130372032523155, + -0.04094075411558151, + -0.06945502758026123, + 0.031492095440626144, + -0.022824816405773163, + -0.08586065471172333, + -0.009371612221002579, + -0.15607959032058716, + -0.10245345532894135, + 0.03834272176027298, + 0.05301275849342346, + 0.09697910398244858, + -0.036898765712976456, + -0.03454864025115967, + -0.06617098301649094, + -0.0037626547273248434, + -0.006869203876703978, + -0.026157885789871216, + -2.012250351658955e-33, + -0.005029845517128706, + 0.01424166839569807, + 0.005231472197920084, + 0.11354508996009827, + 0.07844024151563644, + 0.032986752688884735, + 0.004108597058802843, + -0.045867644250392914, + -0.027431540191173553, + 0.019063914194703102, + -0.027126848697662354, + 0.040507715195417404, + 0.0012582041090354323, + 0.039877671748399734, + -0.0009507659124210477, + -0.04448409005999565, + 0.036389999091625214, + -0.016341432929039, + -0.0893033817410469, + 0.004627326503396034, + -0.054100096225738525, + 0.05910532921552658, + -0.10448821634054184, + -0.023792164400219917, + -0.09717550873756409, + 0.03609037399291992, + 0.06588295847177505, + 0.004791843239217997, + -0.04382481798529625, + 0.04978257790207863, + -0.04177362471818924, + 0.03681926801800728, + 0.08047614991664886, + 0.024507921189069748, + -0.05315079167485237, + 0.010963178239762783, + -0.006491538602858782, + -0.04730795696377754, + 0.022558629512786865, + 0.019984081387519836, + 0.007031179498881102, + -0.05362437665462494, + -0.01811090297996998, + 0.010868901386857033, + 0.11361438035964966, + 0.028266118839383125, + 0.02499048225581646, + -0.020451948046684265, + -0.041073836386203766, + 0.04903988912701607, + -0.06448297947645187, + 0.058800917118787766, + 0.050034161657094955, + 0.002225965028628707, + -0.02749459818005562, + -0.11951620876789093, + -0.09000605344772339, + 0.09836331754922867, + 0.0007438165484927595, + 0.003162507200613618, + 0.11782405525445938, + 0.09801109880208969, + -0.036628950387239456, + -0.018388519063591957, + -0.04050446301698685, + 0.024703850969672203, + -0.059490762650966644, + 0.051999568939208984, + -0.020342420786619186, + 0.03075675293803215, + 0.0574699230492115, + 0.056421637535095215, + 0.012255026958882809, + 0.06543001532554626, + 0.08072823286056519, + -0.030932577326893806, + 0.025069396942853928, + 0.037329938262701035, + 0.030231483280658722, + -0.13284389674663544, + -0.05144187808036804, + 0.007330065593123436, + -0.054888494312763214, + -0.026277631521224976, + -0.013274503871798515, + -0.059234619140625, + 0.10461124777793884, + 0.01962985470890999, + -0.020674411207437515, + 0.021121295168995857, + -0.05664572864770889, + -0.03410736843943596, + -0.05524008348584175, + -0.005249178037047386, + -0.043149881064891815, + -4.840520432793096e-34, + -0.028895178809762, + 0.08829654008150101, + -0.07435334473848343, + -0.0718083307147026, + -0.06274768710136414, + 0.06714144349098206, + 0.06830117106437683, + -0.011105027981102467, + 0.029870575293898582, + 0.02882087603211403, + 0.010403595864772797, + -0.005353495478630066, + -0.003287597093731165, + 0.010723384097218513, + -0.002965723630040884, + 0.0929964929819107, + -0.03677874058485031, + -0.03329726681113243, + -0.09679452329874039, + -0.06752586364746094, + -0.07973337918519974, + 0.026042409241199493, + -0.04886723309755325, + 0.06478101760149002, + -0.07154608517885208, + 0.042145006358623505, + 0.07213058322668076, + -0.028017204254865646, + -0.018490349873900414, + 0.0015516290441155434, + -0.05794316902756691, + -0.09480541944503784, + -0.03246681019663811, + 0.1405254304409027, + -0.04981172829866409, + -0.038272686302661896, + 0.03959577530622482, + -0.06377692520618439, + 0.023891443386673927, + -0.024197448045015335, + -0.007388147059828043, + -0.043000247329473495, + 0.047365352511405945, + 0.07896479964256287, + -0.029491988942027092, + -0.020044419914484024, + -0.006668820045888424, + 0.04023592919111252, + 0.010489429347217083, + 0.04090811684727669, + 0.0026085255667567253, + -0.07037585973739624, + 0.07737789303064346, + -0.049004197120666504, + -0.0347130224108696, + 0.01986653357744217, + -0.041847504675388336, + 0.02529611438512802, + 0.03800397738814354, + 0.08462301641702652, + -0.080347940325737, + 0.0375753790140152, + -0.02992485836148262, + 0.07283451408147812, + 0.053210098296403885, + -0.07474200427532196, + 0.04064192622900009, + -0.03654773533344269, + 0.04201198369264603, + -0.03190876543521881, + 0.017437364906072617, + 0.1101410761475563, + -0.07760240137577057, + -0.037106648087501526, + 0.0366780050098896, + 0.04131299629807472, + 0.006886739283800125, + 0.01863071322441101, + -0.032190244644880295, + 0.09418478608131409, + -0.03844764083623886, + -0.03756166994571686, + 0.011058509349822998, + 0.03395026549696922, + 0.006785765755921602, + -0.05068626254796982, + -0.0675172358751297, + 0.05437884479761124, + -0.0053079151548445225, + -0.05485930293798447, + 0.006914238911122084, + 0.05838239938020706, + -0.018950816243886948, + 0.06159014627337456, + 0.015346993692219257, + -2.3058648324081332e-08, + 0.0265634935349226, + -0.0043352399952709675, + -0.07579149305820465, + -0.021053258329629898, + 0.060430001467466354, + -0.04821905493736267, + -0.010155411437153816, + -0.03609949350357056, + -0.09890041500329971, + -0.037255529314279556, + 0.01612645760178566, + -0.01304531842470169, + -0.0951293557882309, + 0.06412819772958755, + 0.01428974699229002, + 0.00231037731282413, + -0.019264020025730133, + 0.04433451592922211, + -0.004953209310770035, + -0.07637356221675873, + 0.016924485564231873, + 0.005266479216516018, + 0.08005358278751373, + 0.04503187537193298, + -0.026190508157014847, + -0.0007170186727307737, + -0.013886808417737484, + -0.01802182011306286, + 0.0302923321723938, + 0.05277188867330551, + -0.002382550621405244, + 0.05992566794157028, + 0.06951911002397537, + -0.04930975288152695, + -0.03817082569003105, + -0.0485226996243, + -0.059635307639837265, + 0.08634071052074432, + -0.03806496784090996, + 0.014261326752603054, + 0.018166495487093925, + -0.058878690004348755, + 0.05411936715245247, + -0.05520803481340408, + 0.004005830269306898, + 0.027668803930282593, + 0.023143958300352097, + -0.014975933358073235, + -0.0046076164580881596, + -0.09769991785287857, + -0.01975306309759617, + 0.011810587719082832, + 0.03534979373216629, + 0.08329694718122482, + -0.030778320506215096, + -0.029445450752973557, + 0.006549022626131773, + 0.05154133215546608, + 0.09682799130678177, + -0.0038865311071276665, + 0.04463201388716698, + 0.05594480410218239, + -0.017112404108047485, + 0.003925800323486328 + ], + "recycle-bold||recycling,trash,environmental,green": [ + -0.03424229472875595, + 0.02435889281332493, + 0.028922202065587044, + -0.011632027104496956, + 0.10543795675039291, + -0.007275056559592485, + 0.0845772996544838, + -0.08840235322713852, + 1.6574005712755024e-05, + -0.002114326460286975, + 0.03513644263148308, + -0.01823733001947403, + 0.05369769036769867, + -0.0031643426045775414, + -0.04537862911820412, + 0.0516597256064415, + -0.06580543518066406, + 0.06190066784620285, + -0.017494572326540947, + 0.035822343081235886, + 0.03542817756533623, + 0.03359800577163696, + 0.03877291828393936, + 0.00902017205953598, + 0.00738645950332284, + 0.07464230805635452, + -0.011775610968470573, + 0.0179083701223135, + -0.021247440949082375, + -0.11963820457458496, + 0.03748975321650505, + 0.062448903918266296, + 0.05963508039712906, + -0.026448121294379234, + 0.10599018633365631, + 0.06964379549026489, + -0.005464415997266769, + -0.021709201857447624, + 0.025035310536623, + -0.021934742107987404, + -0.06514600664377213, + -0.01764003001153469, + -0.013178513385355473, + 0.028067907318472862, + -0.05732418969273567, + -0.03695926070213318, + -0.01938623934984207, + -0.04634634405374527, + -0.008958913385868073, + -0.0810227245092392, + 0.11548013240098953, + -0.06046217679977417, + -0.12136921286582947, + -0.007416396401822567, + 0.07635122537612915, + -0.03188372775912285, + 0.00808133464306593, + -0.042302899062633514, + 0.02994919940829277, + -0.022932766005396843, + 0.07790865004062653, + -0.03900042921304703, + -0.0025791011285036802, + 0.06435313075780869, + 0.0917641669511795, + 0.023770075291395187, + -0.03200767561793327, + 0.0686933621764183, + -0.056780681014060974, + -0.03619539365172386, + 0.00536386389285326, + 0.0255682822316885, + 0.02789604477584362, + -0.03482942655682564, + -0.00801022443920374, + 0.0510905385017395, + 0.06766343861818314, + 0.04810314625501633, + -0.11411570757627487, + 0.011806591413915157, + -0.07271633297204971, + -0.0038158318493515253, + -0.023228736594319344, + -0.046455249190330505, + 0.025902848690748215, + 0.05627075955271721, + -0.09116742759943008, + -0.08036705106496811, + -0.007420705631375313, + -0.0013565830886363983, + -0.04576313495635986, + 0.036085981875658035, + 0.11553560197353363, + -0.0010575030464679003, + -0.10492272675037384, + 0.048027098178863525, + 0.025042781606316566, + -0.057521697133779526, + 0.047730907797813416, + 0.043409187346696854, + 0.001187480054795742, + 0.07519003003835678, + 0.03305190056562424, + -0.08028800040483475, + -0.07583785057067871, + -0.05174822732806206, + -0.07303185015916824, + 0.010254445485770702, + -0.025206608697772026, + -0.0005435164202935994, + -0.02917330153286457, + -0.04587981849908829, + 0.0019324488239362836, + 0.025550175458192825, + -0.0197092704474926, + 0.017529848963022232, + -0.02251829020678997, + -0.0641540139913559, + 0.06503883749246597, + -0.03252015635371208, + -0.000759221613407135, + -0.05165578052401543, + -0.03620752692222595, + -0.08057060837745667, + -0.046447306871414185, + 0.016391199082136154, + 0.03170396015048027, + -1.4651033735927707e-33, + 0.017408812418580055, + 0.023230966180562973, + 0.016054175794124603, + 0.03090941160917282, + 0.07982323318719864, + -0.031080590561032295, + -0.006004277151077986, + 0.005859600845724344, + -0.0208135973662138, + -0.00037691701436415315, + 0.07769788801670074, + 0.05610159412026405, + -0.0493382066488266, + 0.026823151856660843, + 0.008977067656815052, + -0.042472582310438156, + -0.06291414797306061, + 0.014296685345470905, + -0.10215688496828079, + -0.04287423565983772, + -0.04828082025051117, + 0.0954124704003334, + 0.0011729755206033587, + 0.026609808206558228, + 0.05954408645629883, + -0.06212567165493965, + 0.04380049929022789, + -0.01458695437759161, + -0.01746828854084015, + 0.0008301624329760671, + 0.05788138136267662, + 0.06763380020856857, + 0.003333911532536149, + 0.05414682626724243, + -0.009902306832373142, + 0.0009624283411540091, + -0.10482561588287354, + 0.052368633449077606, + -0.04719001054763794, + 0.052950941026210785, + -0.022904690355062485, + 0.0032437420450150967, + -0.0532425194978714, + 0.022703809663653374, + 0.10029001533985138, + 0.019451867789030075, + 0.05381406471133232, + -0.012981115840375423, + -0.0045173279941082, + 0.009655915200710297, + -0.010167296975851059, + 0.02932976931333542, + 0.0017927393782883883, + 0.008117524906992912, + -0.02316140942275524, + -0.03777700290083885, + 0.01917974278330803, + 0.015776295214891434, + -0.016135772690176964, + -0.07099036127328873, + 0.07715408504009247, + 0.1518140435218811, + 0.011552649550139904, + -0.0307309590280056, + 0.02392520196735859, + 0.0644218921661377, + -0.034751273691654205, + 0.10573290288448334, + 0.061190079897642136, + 0.020740129053592682, + 0.03104039840400219, + 0.022925199940800667, + -0.020723439753055573, + 0.07878720015287399, + 0.03828463330864906, + -0.013600067235529423, + -0.009131892584264278, + -0.038843635469675064, + 0.002045081462711096, + -0.0506429597735405, + -0.11458630859851837, + -0.0079145897179842, + -0.09949370473623276, + 0.0044021643698215485, + -0.02470986545085907, + -0.008921965956687927, + 0.033072423189878464, + -0.04059496521949768, + 0.07153565436601639, + 0.029308917000889778, + -0.030817879363894463, + 0.003903857199475169, + -0.023748256266117096, + -0.11595425009727478, + -0.08811230957508087, + -1.6570297341648835e-33, + 0.09285171329975128, + -0.006391105707734823, + 0.013574826531112194, + -0.032596345990896225, + -0.024420451372861862, + -0.07486124336719513, + -0.0815906971693039, + 0.035417236387729645, + 0.08027826249599457, + 0.0032226257026195526, + -0.10977594554424286, + 0.04922284185886383, + -0.03307154029607773, + 0.048173703253269196, + 0.03372691199183464, + 0.04391484335064888, + -0.004326960537582636, + 0.014253824949264526, + -0.11855042725801468, + -0.014590893872082233, + -0.04945409297943115, + -0.004097963683307171, + -0.025269411504268646, + 0.10149485617876053, + -0.089983731508255, + 0.04192444309592247, + -0.008375726640224457, + -0.01316864788532257, + 0.09843470901250839, + -0.037491243332624435, + -0.0695873498916626, + -0.05560252070426941, + 0.041016265749931335, + 0.05922779068350792, + -0.010305407457053661, + -0.05583679676055908, + 0.01240658387541771, + -0.07301605492830276, + 0.029952945187687874, + 0.03354000672698021, + -0.001038281712681055, + 0.0055524795316159725, + -0.043771084398031235, + 0.06462633609771729, + -0.07434269785881042, + -0.06385906040668488, + -0.1140245571732521, + -0.03964218497276306, + 0.022174358367919922, + -0.003638478461652994, + 0.07585303485393524, + 0.019082289189100266, + -0.08438874036073685, + -0.05701134353876114, + 0.005225448869168758, + 0.03082144260406494, + 0.0565570667386055, + 0.011318909004330635, + -0.04456671327352524, + 0.030102282762527466, + -0.027673332020640373, + 0.022314373403787613, + -0.07807762920856476, + 0.05230199173092842, + 0.012419264763593674, + -0.09672331809997559, + 0.06128218397498131, + -0.028772661462426186, + -0.08369021117687225, + -0.019904527813196182, + -0.004539376124739647, + 0.04444058611989021, + -0.05044388025999069, + -0.05605627968907356, + 0.02130502089858055, + -0.054206881672143936, + 0.014094548299908638, + 0.025399839505553246, + -0.01891659013926983, + 0.00893701333552599, + 0.002675896743312478, + 0.004920379724353552, + -0.01625559851527214, + 0.0517430305480957, + -0.01578088104724884, + -0.05453244969248772, + -0.0848337933421135, + -0.043605830520391464, + 0.0012532987166196108, + -0.0069387308321893215, + -0.005561988800764084, + 0.006159942597150803, + 0.016860119998455048, + 0.1298602819442749, + 0.02115737833082676, + -1.8461545181480687e-08, + 0.0166460070759058, + -0.0052863676100969315, + 0.01603665016591549, + 0.045623499900102615, + 0.027141647413372993, + -0.020894017070531845, + 0.028759494423866272, + 0.055060938000679016, + -0.016381684690713882, + -0.015399586409330368, + 0.018754353746771812, + 0.06456701457500458, + -0.07106485217809677, + 0.02055956982076168, + 0.019978344440460205, + -0.01868799328804016, + -0.04796915501356125, + -0.01564030908048153, + -0.034914176911115646, + 0.020260440185666084, + -0.06572027504444122, + -0.011963047087192535, + -0.009411536157131195, + 0.040353644639253616, + 0.030813422054052353, + 0.037308596074581146, + -0.00313344644382596, + 0.03451627865433693, + 0.041228678077459335, + 0.06374987214803696, + 0.08877719193696976, + 0.0779486894607544, + -0.04571673646569252, + 0.007947353646159172, + -0.08462171256542206, + -0.08345536887645721, + 0.028963996097445488, + 0.00564235495403409, + -0.04333316162228584, + 0.09385711699724197, + -0.051986534148454666, + -0.04836324602365494, + -0.08005831390619278, + 0.0034273837227374315, + -0.03625231236219406, + -0.05192038044333458, + -0.0520816333591938, + 0.014255589805543423, + -0.029621321707963943, + -0.06595741212368011, + -0.07302969694137573, + -0.044866256415843964, + -0.005429104436188936, + 0.07674853503704071, + -0.015606991946697235, + 0.0038176891393959522, + 0.06549203395843506, + 0.07417747378349304, + 0.0043419827707111835, + 0.01039793249219656, + 0.15721943974494934, + 0.01082359254360199, + 0.11344872415065765, + -0.04025314375758171 + ], + "reddit-logo-bold||logos,subreddit,snoo,social media": [ + 0.0012868567137047648, + 0.003808180335909128, + -0.07283338904380798, + -0.009321914054453373, + 0.1342923641204834, + -0.049513302743434906, + 0.06119288504123688, + -0.011275175027549267, + 0.04017452150583267, + -0.025056296959519386, + -0.003477094927802682, + 0.060817066580057144, + 0.037047263234853745, + -0.005678561050444841, + 0.022077694535255432, + 0.0012136594159528613, + 0.028583213686943054, + 0.014730056747794151, + 0.05267771705985069, + -0.047206319868564606, + 0.030060525983572006, + -0.0020173522643744946, + -0.036841120570898056, + 0.051490381360054016, + 0.03039804846048355, + 0.04370350018143654, + -0.020204663276672363, + 0.02404361590743065, + -0.07776358723640442, + -0.05552961304783821, + -0.04879805073142052, + 0.015334997326135635, + 0.11870670318603516, + 0.012778788805007935, + -0.00034107404644601047, + 0.03198336437344551, + 0.02279805764555931, + -0.018068604171276093, + 0.03976983204483986, + 0.052903011441230774, + 0.005456033628433943, + -0.09537435322999954, + 0.0220855250954628, + 0.026346556842327118, + 0.000553908059373498, + 0.07393771409988403, + -0.09845289587974548, + 0.03122684732079506, + -0.024949638172984123, + -0.012448372319340706, + 0.0011390656000003219, + -0.12361393123865128, + -0.0976305678486824, + -0.012391245923936367, + -0.004688292276114225, + -0.02292243018746376, + -0.07454898953437805, + -0.023428717628121376, + 0.021882986649870872, + -0.003119085915386677, + 0.04756208509206772, + -0.03636157140135765, + 0.03234654292464256, + 0.12188195437192917, + 0.13373713195323944, + -0.03202885389328003, + 0.0013951770961284637, + 0.066476970911026, + -0.0716036856174469, + 0.052596621215343475, + 0.07356259971857071, + 0.016735931858420372, + -0.04057607427239418, + 0.02759234793484211, + -0.05826852098107338, + -0.04312936216592789, + 0.053448207676410675, + 0.024718601256608963, + 0.008276158012449741, + -0.10553264617919922, + -0.0034863336477428675, + 0.022928224876523018, + -0.025590436533093452, + -0.0009328825981356204, + 0.05562286078929901, + 0.10230282694101334, + -0.07099531590938568, + -0.05198143795132637, + -0.049266647547483444, + 0.027181964367628098, + -0.07948054373264313, + 0.02704896219074726, + 0.031075160950422287, + -0.024590356275439262, + -0.10902953147888184, + 0.00777590973302722, + -0.014311617240309715, + -0.03109845519065857, + -0.06636248528957367, + 0.07856744527816772, + -0.016240421682596207, + 0.12242715060710907, + 0.07586779445409775, + -0.05225079879164696, + 0.04331856220960617, + 0.04627145826816559, + -0.02017458714544773, + 0.016640793532133102, + 0.04345552623271942, + 0.09735921025276184, + -0.02665564976632595, + -0.009568076580762863, + -0.061845533549785614, + -0.04924296960234642, + 0.002082539489492774, + -0.05979624763131142, + -0.003034970723092556, + -0.022653261199593544, + 0.10632414370775223, + 0.006753891706466675, + -0.019880063831806183, + -0.022271301597356796, + -0.06191430985927582, + -0.07990877330303192, + 0.05142257735133171, + -0.036163415759801865, + -0.07505043596029282, + -5.945450684254987e-35, + 0.05054328218102455, + 0.08322936296463013, + 0.011275180615484715, + 0.07806874811649323, + 0.031099561601877213, + 0.05447700619697571, + -0.057416364550590515, + -0.05643829330801964, + -0.1327013075351715, + 0.03160543367266655, + -0.012325494550168514, + 0.07353269308805466, + -0.028977975249290466, + 0.06011589989066124, + 0.05936471000313759, + -0.035319868475198746, + 0.012202695943415165, + -0.06277022510766983, + -0.0565611831843853, + -0.0811987966299057, + -0.026108773425221443, + 0.01763979345560074, + -0.058830905705690384, + 0.021879959851503372, + -0.02108822576701641, + -0.0805785208940506, + 0.07052940130233765, + -0.08072838932275772, + -0.001178602920845151, + 0.01499858032912016, + 0.02691827341914177, + 0.09485157579183578, + 0.021205995231866837, + 0.011397586204111576, + -0.003253951435908675, + -0.05921183153986931, + -0.02225480228662491, + -0.07581300288438797, + 0.009297290816903114, + 0.04046230390667915, + -0.04702397435903549, + -0.005704765673726797, + -0.08176393806934357, + 0.040338438004255295, + -0.006956521887332201, + 0.13007256388664246, + -0.020523615181446075, + -0.06803368777036667, + 0.1139817088842392, + -0.02418631687760353, + 0.008494478650391102, + -0.036637794226408005, + 0.040270980447530746, + -0.025305919349193573, + -0.03909221664071083, + -0.05222563445568085, + -0.044594671577215195, + 0.05389953777194023, + -0.022721242159605026, + -0.03538069874048233, + 0.015469541773200035, + -0.006314682774245739, + 0.03897853195667267, + -0.03706391900777817, + -0.03751927614212036, + 0.10760439932346344, + -0.048764973878860474, + 0.013475579209625721, + 0.050026971846818924, + -0.034299399703741074, + 0.016174763441085815, + 0.04951642453670502, + 0.04132014140486717, + 0.06014656275510788, + -0.09464074671268463, + 0.01092241145670414, + 0.005421451758593321, + 0.010132554918527603, + 0.010351389646530151, + 0.060784999281167984, + -0.03404569998383522, + -0.02222455106675625, + -0.022089844569563866, + 0.03531918674707413, + 0.09435759484767914, + 0.037594880908727646, + 0.038764964789152145, + -0.07303453981876373, + -0.0327511727809906, + 0.043437227606773376, + -0.04135570675134659, + 0.003918087109923363, + 0.032188765704631805, + -0.03198393061757088, + -0.11378799378871918, + -1.4018719712586052e-33, + -0.01062025036662817, + -0.033477164804935455, + -0.02192244865000248, + 0.03349164500832558, + -0.03143041208386421, + 0.01745535433292389, + -0.008093106560409069, + 0.04829307645559311, + -0.03864279016852379, + 0.06757470220327377, + 0.06304334104061127, + -0.013661649078130722, + -0.06645112484693527, + -0.043014127761125565, + -0.0007156313513405621, + 0.0349898561835289, + 0.09119021892547607, + 0.013797488994896412, + -0.12450792640447617, + -0.0034406466875225306, + -0.035456184297800064, + -0.0019808413926512003, + -0.034227874130010605, + 0.10663075745105743, + -0.0032221160363405943, + 0.03435541316866875, + 0.04672778770327568, + 0.0077055818401277065, + -0.049958985298871994, + -0.04143163189291954, + -0.026551494374871254, + -0.07166498154401779, + -0.008335554972290993, + 0.023356692865490913, + 0.024849094450473785, + 0.045083556324243546, + -0.06856231391429901, + -0.026273192837834358, + 0.02699090912938118, + 0.03068462572991848, + 0.03396045044064522, + 0.02336556278169155, + 0.04117577522993088, + 0.06562609225511551, + -0.016982149332761765, + -0.058105215430259705, + -0.1556852161884308, + -0.07999362796545029, + -0.06617861241102219, + 0.050223566591739655, + -0.020024219527840614, + -0.07094050943851471, + 0.02868337370455265, + 0.01878608576953411, + -0.05584901571273804, + -0.03539935499429703, + -0.03685556352138519, + 0.05557825788855553, + -0.037043362855911255, + 0.05019445717334747, + -0.00015485390031244606, + -0.0022208092268556356, + -0.1261845827102661, + 0.045987699180841446, + 0.004132446832954884, + -0.03785058110952377, + 0.0037134536541998386, + -0.02159881964325905, + -0.06034044921398163, + 0.04036572948098183, + 0.0630924329161644, + 0.011032288894057274, + -0.0364065021276474, + -0.0027362105902284384, + -0.021491041406989098, + -0.07352429628372192, + 0.05522659793496132, + 0.07078542560338974, + -0.04892152547836304, + 0.04475977644324303, + -0.027431726455688477, + 0.028272127732634544, + -0.07403282076120377, + 0.08416100591421127, + -0.005709359422326088, + -0.005836990661919117, + -0.014227517880499363, + 0.020855756476521492, + 0.0034828372299671173, + -0.054409924894571304, + 0.013774342834949493, + 0.06372932344675064, + 0.0076727247796952724, + 0.0007923453231342137, + -0.01923607848584652, + -2.0644831622007587e-08, + -0.012668735347688198, + -0.07398566603660583, + 0.03053307719528675, + 0.0072397030889987946, + 0.1147318184375763, + 0.01868382655084133, + 0.017026757821440697, + -0.08323017507791519, + 0.003912682645022869, + -0.022352799773216248, + -0.00757410004734993, + -0.002350687514990568, + -0.06242506206035614, + -0.032836854457855225, + 0.039345163851976395, + -0.01890481449663639, + -0.08740624040365219, + 0.0906403586268425, + 0.00267947930842638, + -0.038615938276052475, + -0.03428906574845314, + 0.017520688474178314, + -0.009928998537361622, + -0.0326995924115181, + 0.0212862491607666, + 0.03363847732543945, + -0.023622805252671242, + -0.03442993015050888, + 0.033357761800289154, + 0.001174242584966123, + 0.034409232437610626, + 0.04510943964123726, + -0.002356964396312833, + -0.011794066056609154, + -0.0827297568321228, + 0.006155119743198156, + -0.02449561469256878, + -0.024097155779600143, + -0.027801278978586197, + -0.005271981470286846, + 0.035488151013851166, + -0.02397599071264267, + 0.07566270232200623, + 0.010493649169802666, + -0.06195765733718872, + 0.02497192472219467, + 0.024927804246544838, + 0.011465664952993393, + -0.019217949360609055, + -0.09303135424852371, + -0.03228383883833885, + -0.00488285394385457, + 0.022626224905252457, + 0.0498063787817955, + -0.013986137695610523, + -0.09932081401348114, + 0.07691981643438339, + 0.10087631642818451, + 0.06991078704595566, + 0.0621713362634182, + 0.12276732176542282, + -0.004042531363666058, + -0.0011004615807905793, + 0.009995191358029842 + ], + "repeat-bold||music,audio,recycle": [ + -0.0011838306672871113, + -0.06858164072036743, + -0.003016020404174924, + 0.013254583813250065, + 0.018624577671289444, + 0.07803376764059067, + 0.06211221218109131, + -0.10322077572345734, + 0.0200550127774477, + -0.07391665130853653, + -0.0013788911746814847, + 0.06442238390445709, + 0.07856171578168869, + -0.08963251113891602, + -0.0357113815844059, + 0.039508648216724396, + -0.02623050846159458, + 0.10111822932958603, + 0.03985738754272461, + -0.04533923417329788, + 0.019787780940532684, + 0.05837094411253929, + 0.024743162095546722, + 0.05111631006002426, + 0.003853015834465623, + 0.05399131029844284, + 0.009672700427472591, + 0.04252215847373009, + 0.021863427013158798, + -0.0734526515007019, + 0.0999457910656929, + 0.0011673817643895745, + 0.104644276201725, + -0.04090094938874245, + 0.03313341364264488, + -0.010084879584610462, + -0.08427925407886505, + -0.012442033737897873, + -0.04590406268835068, + 0.010194451548159122, + 0.018603496253490448, + 0.03084452450275421, + -0.0196409672498703, + -0.061596572399139404, + -0.1326802670955658, + -0.14357800781726837, + -0.08911263197660446, + -0.06852279603481293, + 0.06076233461499214, + 0.0012068331707268953, + 0.07273270189762115, + -0.06970233470201492, + -0.05502235144376755, + 0.018905457109212875, + 0.029534099623560905, + -0.007616123184561729, + -0.0033869852777570486, + 0.09149139374494553, + 0.06573008745908737, + 0.03868430107831955, + 0.06309559941291809, + -0.01808164454996586, + 0.04050362482666969, + 0.013181107118725777, + 0.05987214669585228, + 0.013090439140796661, + -0.033774059265851974, + 0.06178882718086243, + -0.026194684207439423, + 0.06739955395460129, + 0.04607986658811569, + 0.033041324466466904, + 0.017164811491966248, + 0.02925283834338188, + 0.0376129150390625, + 0.05041959881782532, + -0.00568161066621542, + -0.04878921061754227, + -0.12300220131874084, + 0.055967073887586594, + -0.07740182429552078, + -0.10188852995634079, + -0.021093448624014854, + -0.09650074690580368, + 0.09075403958559036, + 0.008204066194593906, + -0.045050229877233505, + -0.09096579253673553, + -0.05953327938914299, + -0.041883308440446854, + -0.07390296459197998, + -0.013608387671411037, + 0.05203671008348465, + 0.009462795220315456, + -0.017847754061222076, + 0.056318629533052444, + 0.06741669774055481, + -0.06156683340668678, + 0.02507561817765236, + 0.035050373524427414, + 0.006259141489863396, + 0.028231525793671608, + 0.0024903984740376472, + 0.0038220081478357315, + -0.064225934445858, + -0.12858495116233826, + -0.04514167830348015, + 0.05330017954111099, + -0.04655449092388153, + -0.03240948170423508, + -0.000677990261465311, + -0.04102471098303795, + 0.008152984082698822, + 0.022655615583062172, + -0.0020206705667078495, + 0.014118794351816177, + -0.016186917200684547, + 0.0033864369615912437, + 0.054331231862306595, + 0.043378423899412155, + 0.03130144253373146, + -0.05667509138584137, + -0.06661072373390198, + -0.054812632501125336, + 0.026865700259804726, + -0.004156129900366068, + 0.060789402574300766, + 4.3136693031378344e-36, + 0.0115287397056818, + 0.05399153754115105, + -0.033961907029151917, + 0.0755883976817131, + 0.07438036054372787, + -0.05818430334329605, + -0.027502000331878662, + 0.06376255303621292, + -0.04904939606785774, + 0.004351705312728882, + 0.09127701818943024, + 0.06865384429693222, + 0.004073149990290403, + 0.01636732928454876, + -0.05071001872420311, + -0.06547386944293976, + 0.012327701784670353, + 0.06085412949323654, + -0.0757112205028534, + -0.04746829718351364, + -0.08856962621212006, + 0.033005159348249435, + 0.01999911479651928, + 0.01004787813872099, + 0.042715635150671005, + 0.0034614121541380882, + 0.06116664409637451, + -0.04721544310450554, + 0.048987600952386856, + 0.01145999040454626, + 0.0030431218910962343, + 0.008629395626485348, + 0.008725467137992382, + 0.008348122239112854, + -0.021341251209378242, + 0.05363943427801132, + -0.02454168163239956, + 0.06925710290670395, + -0.00353487697429955, + -0.02943638153374195, + -0.029963571578264236, + -0.04176955297589302, + -0.07486747950315475, + -0.0724465548992157, + 0.03226419910788536, + 0.023203443735837936, + 0.022293830290436745, + 0.025044124573469162, + -0.0001912635052576661, + 0.01189615298062563, + 0.05160507559776306, + 0.08793900907039642, + -0.027380652725696564, + 0.0420045331120491, + 0.002615666948258877, + -0.06524976342916489, + -0.004444923251867294, + 0.03493287041783333, + 0.07176265865564346, + 0.027454445138573647, + 0.13444370031356812, + 0.08921818435192108, + 0.07217030972242355, + -0.04681041091680527, + -0.006628222763538361, + 0.06932178139686584, + 0.06664100289344788, + 0.03631075471639633, + 0.07537897676229477, + 0.03500150516629219, + 0.03693554922938347, + -0.020595362409949303, + -0.015269032679498196, + 0.0054587917402386665, + -0.05359738692641258, + -0.00726237753406167, + 0.01232067123055458, + -0.09189354628324509, + 0.04295017942786217, + -0.07249687612056732, + -0.11542560160160065, + -0.01176118291914463, + -0.02963944524526596, + 0.054707009345293045, + -0.004392052534967661, + 0.032386548817157745, + 0.008603525348007679, + -0.14441223442554474, + -0.00791181717067957, + -0.002565745497122407, + -0.03191051259636879, + 0.023202646523714066, + -0.005529622081667185, + -0.07350616157054901, + -0.02798059582710266, + -1.6135414023012514e-33, + 0.10800919681787491, + 0.031278468668460846, + 0.05192946642637253, + -0.058463044464588165, + 0.0036987140774726868, + 0.017304927110671997, + -0.0631227195262909, + 0.10242082178592682, + -0.013778275810182095, + -0.029526662081480026, + -0.01937316730618477, + -0.056949540972709656, + -0.04421481117606163, + 0.014193104580044746, + -0.05573327839374542, + 0.08193808048963547, + -0.0159018374979496, + 0.01182075310498476, + -0.03707076236605644, + -0.016604376956820488, + -0.024217363446950912, + -0.03373095020651817, + 0.03696373477578163, + 0.05219899117946625, + -0.06289521604776382, + -0.014887161552906036, + -0.0038646580651402473, + 0.04299662634730339, + 0.06614547222852707, + -0.043228037655353546, + 0.021368741989135742, + -0.04286760464310646, + -0.0011099529219791293, + -0.08459050953388214, + 0.05232749134302139, + 0.02285298891365528, + 0.09102969616651535, + 0.034577079117298126, + 0.0076128821820020676, + 0.031391654163599014, + -0.011284834705293179, + 0.020860975608229637, + -0.010638254694640636, + -0.009411346167325974, + -0.020538723096251488, + -0.0746723935008049, + -0.022924168035387993, + 0.05097276717424393, + 0.03874232992529869, + 0.03511255979537964, + 0.10001107305288315, + -0.09682048112154007, + -0.029890023171901703, + -0.05552787706255913, + -0.06833834946155548, + 0.010734798386693, + 0.009134938940405846, + 0.014911823906004429, + -0.050489116460084915, + 0.032168198376894, + -0.034919869154691696, + -0.0014807743718847632, + -0.056673429906368256, + -0.047227442264556885, + 0.013216166757047176, + -0.0025242348201572895, + 0.09189192205667496, + -0.06777580082416534, + -0.05121926963329315, + 0.03609143942594528, + 0.004165505524724722, + 0.04489004984498024, + -0.029863420873880386, + 0.0473259836435318, + -0.01690799370408058, + 0.008824372664093971, + -0.03534264862537384, + -0.029819650575518608, + -0.036601658910512924, + 0.005025820806622505, + -0.00042884828872047365, + 0.00806818064302206, + 0.024834057316184044, + 0.003768021007999778, + -0.04720432683825493, + 0.02071325108408928, + 0.010642679408192635, + 0.0006519447197206318, + 0.016603419557213783, + 0.0029318511951714754, + -0.0440233051776886, + 0.016204649582505226, + 0.026159675791859627, + 0.06268759816884995, + -0.022423388436436653, + -1.7202129498627983e-08, + -0.07695802301168442, + 0.0006976856384426355, + 0.008284537121653557, + 0.010328062810003757, + 0.01612606830894947, + -0.06099669262766838, + 0.023525545373558998, + -0.11625088006258011, + -0.024781377986073494, + -0.11895999312400818, + 0.03759651631116867, + -0.033180225640535355, + 0.0006882045418024063, + 0.03223933279514313, + -0.03611983731389046, + -0.008413806557655334, + -0.05275413766503334, + 0.061816610395908356, + -0.027340291067957878, + -0.03197881579399109, + -0.03313571587204933, + 0.05144776776432991, + 0.07880474627017975, + -0.009768737480044365, + 0.03805531561374664, + 0.033575188368558884, + -0.004551315680146217, + 0.05920373648405075, + 0.07595496624708176, + 0.03057211823761463, + 0.0019317111000418663, + 0.02491733431816101, + 0.0006434567039832473, + -0.017785336822271347, + -0.09135912358760834, + -0.08048323541879654, + 0.008723566308617592, + -0.018292399123311043, + -0.10081212967634201, + 0.08380924165248871, + -0.01678566075861454, + -0.04427981749176979, + -0.01015296671539545, + -0.006095647346228361, + -0.04358552023768425, + -0.07526224851608276, + 0.013011125847697258, + 0.0034237722866237164, + -0.044508714228868484, + -0.04599805176258087, + -0.11752032488584518, + -0.014712114818394184, + -0.014704772271215916, + 0.07771927863359451, + 0.02475009486079216, + -0.036873895674943924, + 0.004349628463387489, + 0.16955138742923737, + -0.0670677125453949, + -0.007253393996506929, + 0.050383005291223526, + 0.045463837683200836, + 0.07488659769296646, + -0.024517949670553207 + ], + "repeat-once-bold||music,audio,recycle": [ + 0.0027198537718504667, + -0.06938903033733368, + 0.0065357196144759655, + 0.02677389793097973, + 0.01319019217044115, + 0.08120448887348175, + 0.06905189901590347, + -0.11443153768777847, + 0.023188088089227676, + -0.08891408890485764, + -0.007012965623289347, + 0.06544452905654907, + 0.07778318971395493, + -0.08752898871898651, + -0.044649869203567505, + 0.044501472264528275, + -0.019318729639053345, + 0.09656398743391037, + 0.03693854436278343, + -0.05762729421257973, + 0.013730091974139214, + 0.046963803470134735, + 0.011744559742510319, + 0.057060204446315765, + 0.005158144980669022, + 0.02479350008070469, + 0.008860516361892223, + 0.04508236423134804, + 0.014546072110533714, + -0.07098499685525894, + 0.0994751900434494, + 0.008694504387676716, + 0.09101791679859161, + -0.024543078616261482, + 0.035012029111385345, + -0.0023571443744003773, + -0.09115754812955856, + 0.0070977117866277695, + -0.041574347764253616, + 0.013786399737000465, + 0.01942369155585766, + 0.0204437468200922, + -0.031127342954277992, + -0.07561801373958588, + -0.12047789990901947, + -0.1461896002292633, + -0.09555386751890182, + -0.05181381106376648, + 0.06447981297969818, + 0.00424172030761838, + 0.06691013276576996, + -0.06902683526277542, + -0.0604155994951725, + 0.019252965226769447, + 0.035495612770318985, + 0.014970364049077034, + 0.01079775020480156, + 0.09277202934026718, + 0.04936547577381134, + 0.02475712262094021, + 0.05242999270558357, + -0.014334093779325485, + 0.038122545927762985, + 0.02212679758667946, + 0.06464821845293045, + 0.01802898198366165, + -0.029367808252573013, + 0.04085546359419823, + -0.018432410433888435, + 0.08168677985668182, + 0.038286738097667694, + 0.029767056927084923, + 0.02442617155611515, + 0.041702885180711746, + 0.03173591569066048, + 0.04915744811296463, + -0.015773987397551537, + -0.0607324093580246, + -0.12586858868598938, + 0.06007475033402443, + -0.07923097163438797, + -0.09594506025314331, + -0.020736275240778923, + -0.09555713832378387, + 0.08932241797447205, + 0.007067627739161253, + -0.028465166687965393, + -0.07482617348432541, + -0.040382880717515945, + -0.04634726792573929, + -0.08282314985990524, + -0.01751539297401905, + 0.05847286432981491, + 0.005235794931650162, + -0.01536885742098093, + 0.047775790095329285, + 0.06631909310817719, + -0.060105569660663605, + 0.03395683690905571, + 0.02762189693748951, + -0.0006427073967643082, + 0.02479211799800396, + -0.0023914698977023363, + 0.0057070497423410416, + -0.06552820652723312, + -0.1349335014820099, + -0.03968073055148125, + 0.05768851935863495, + -0.03598405793309212, + -0.03239662945270538, + -0.0010778409196063876, + -0.04313089698553085, + 0.013375947251915932, + 0.030993258580565453, + -0.0031386378686875105, + 0.024550190195441246, + -0.013828791677951813, + 0.012479686178267002, + 0.04746662452816963, + 0.051993947476148605, + 0.03612400218844414, + -0.05638659745454788, + -0.0517360121011734, + -0.05329618230462074, + 0.00896544475108385, + -0.011440029367804527, + 0.06986939907073975, + -8.19504151870412e-35, + 0.01297406293451786, + 0.03530086204409599, + -0.03185100853443146, + 0.07436503469944, + 0.07238940894603729, + -0.05897790938615799, + -0.021251296624541283, + 0.06251770257949829, + -0.0545010045170784, + -0.007886570878326893, + 0.0934290662407875, + 0.07230780273675919, + -0.001248299959115684, + 0.016064323484897614, + -0.060871679335832596, + -0.05058785155415535, + 0.02649700455367565, + 0.05698081851005554, + -0.05616048723459244, + -0.038587335497140884, + -0.08591649681329727, + 0.028812404721975327, + 0.018494464457035065, + 0.0013203587150201201, + 0.039184488356113434, + -0.00036379857920110226, + 0.06332753598690033, + -0.04187735542654991, + 0.05151456966996193, + 0.010536717250943184, + -0.006879813503473997, + 0.012042364105582237, + -0.013673982582986355, + 0.016827141866087914, + -0.022223511710762978, + 0.04280710965394974, + -0.01209364552050829, + 0.08148553222417831, + -0.0014069587923586369, + -0.036029648035764694, + -0.02972458302974701, + -0.037395332008600235, + -0.06980107724666595, + -0.08609158545732498, + 0.028647644445300102, + 0.01073414832353592, + -0.011997400783002377, + 0.04103606566786766, + -0.009212815202772617, + 0.004262642003595829, + 0.05261378362774849, + 0.10078247636556625, + -0.02438339591026306, + 0.029728615656495094, + -0.006575855892151594, + -0.06372533738613129, + -0.002686173189431429, + 0.02107400633394718, + 0.08326097577810287, + 0.03189653530716896, + 0.1483556479215622, + 0.08409105986356735, + 0.04645610228180885, + -0.034666020423173904, + -0.004327341914176941, + 0.07393408566713333, + 0.07637432962656021, + 0.03474590554833412, + 0.056668538600206375, + 0.02818593569099903, + 0.03199901059269905, + -0.03217295929789543, + -0.027205610647797585, + -0.01678435318171978, + -0.05138899013400078, + -0.017207054421305656, + 0.018734320998191833, + -0.08570641279220581, + 0.04472915828227997, + -0.06343600153923035, + -0.11129109561443329, + -0.020920826122164726, + -0.03668222948908806, + 0.05663607269525528, + 0.010783663019537926, + 0.04200960695743561, + 0.018931368365883827, + -0.1526053249835968, + -0.016971617937088013, + -0.0002429779851809144, + -0.022480016574263573, + 0.02925373800098896, + -0.00017737859161570668, + -0.08740472048521042, + -0.018996644765138626, + -1.7741504811510467e-33, + 0.11336145550012589, + 0.029508238658308983, + 0.051930200308561325, + -0.04287279024720192, + 0.014582458883523941, + 0.01828845962882042, + -0.08461843430995941, + 0.10850552469491959, + -0.022913457825779915, + -0.03071795403957367, + -0.025686953216791153, + -0.05656185373663902, + -0.03970513865351677, + 0.009520799852907658, + -0.06183924898505211, + 0.08602931350469589, + -0.01628362387418747, + 0.009482207708060741, + -0.053636740893125534, + -0.004712607711553574, + -0.023858794942498207, + -0.0411694310605526, + 0.03866787254810333, + 0.0492238812148571, + -0.0697258710861206, + -0.016979442909359932, + 0.001674083760008216, + 0.03280743956565857, + 0.052110303193330765, + -0.04421282187104225, + 0.01641092635691166, + -0.04172932356595993, + 0.006608594674617052, + -0.09095896780490875, + 0.04762936756014824, + 0.025895295664668083, + 0.08455761522054672, + 0.022180533036589622, + -0.006164641585201025, + 0.05083785206079483, + 0.003100548405200243, + 0.006372008938342333, + -0.01757201738655567, + -0.016772601753473282, + -0.022824205458164215, + -0.07685161381959915, + -0.033658966422080994, + 0.06470273435115814, + 0.03150387108325958, + 0.046278215944767, + 0.08264472335577011, + -0.09215867519378662, + -0.037278417497873306, + -0.07128086686134338, + -0.0708220824599266, + 0.008933575823903084, + 0.01896691508591175, + 0.02221061848104, + -0.05337244272232056, + 0.03011459857225418, + -0.03524131700396538, + -0.01712561771273613, + -0.057206910103559494, + -0.02750365436077118, + 0.00823119655251503, + -0.014536167494952679, + 0.0901252031326294, + -0.06303432583808899, + -0.059938520193099976, + 0.046597614884376526, + 0.0018724226392805576, + 0.051275625824928284, + -0.03632776439189911, + 0.03146979957818985, + -0.03089013881981373, + 0.007837309502065182, + -0.04228437319397926, + -0.03538651019334793, + -0.03557472676038742, + -0.01268286257982254, + -0.007237436715513468, + 0.00465814396739006, + 0.020636508241295815, + -0.0028847241774201393, + -0.042492348700761795, + 0.019503457471728325, + 0.022381726652383804, + -0.00351017527282238, + 0.022353198379278183, + 0.015104048885405064, + -0.038400061428546906, + 0.016464758664369583, + 0.03652282431721687, + 0.0582137368619442, + -0.037168990820646286, + -1.7544772745736736e-08, + -0.07920951396226883, + -0.0010692592477425933, + 0.015534077771008015, + 0.017149237915873528, + 0.018937043845653534, + -0.06334725767374039, + 0.0333065427839756, + -0.1113949790596962, + -0.025394201278686523, + -0.13499018549919128, + 0.05358567833900452, + -0.02068513259291649, + 0.013399465940892696, + 0.03946269676089287, + -0.05251256003975868, + -0.007990526035428047, + -0.04983127489686012, + 0.04452982544898987, + -0.029068825766444206, + -0.028262391686439514, + -0.028733519837260246, + 0.04449143260717392, + 0.08283604681491852, + -0.011131783947348595, + 0.032870855182409286, + 0.03759277984499931, + 0.00229920563288033, + 0.06329946219921112, + 0.07480590790510178, + 0.0345664918422699, + -0.012871727347373962, + 0.014563844539225101, + -0.0006854437524452806, + -0.012923353351652622, + -0.07926737517118454, + -0.08340699225664139, + 0.007415966130793095, + -0.019481370225548744, + -0.08719456195831299, + 0.06456320732831955, + -0.011223475448787212, + -0.03566526621580124, + -0.013693154789507389, + -0.0028513758443295956, + -0.02981213852763176, + -0.07268929481506348, + 0.013408718630671501, + -0.007066064514219761, + -0.03941110894083977, + -0.028959404677152634, + -0.11947298794984818, + -0.010478404350578785, + -0.022123444825410843, + 0.0863153263926506, + 0.03996911272406578, + -0.015897372737526894, + 0.028971469029784203, + 0.16206933557987213, + -0.05410332605242729, + -0.004418965429067612, + 0.035436779260635376, + 0.051843851804733276, + 0.08199827373027802, + -0.02510625310242176 + ], + "replit-logo-bold||*new*,logos,ide,editor,coding": [ + -0.044952355325222015, + -0.012089687399566174, + -0.07422473281621933, + 0.03411289304494858, + 0.0819205716252327, + -0.02208491787314415, + 0.07318905740976334, + -0.0462578721344471, + 0.03587694093585014, + 0.029136620461940765, + -0.019124377518892288, + 0.05515546724200249, + 0.05547294393181801, + -0.08921534568071365, + 0.02957756258547306, + -0.031863436102867126, + -0.06760825961828232, + 0.01123365480452776, + 0.02424483560025692, + -0.08949067443609238, + 0.02230178564786911, + -0.05860772356390953, + -0.012097611092031002, + -0.018320586532354355, + 0.03220794349908829, + 0.032909147441387177, + 0.05404277890920639, + 0.03529660031199455, + 0.012290528044104576, + -0.15668223798274994, + 0.01721362955868244, + -0.011982090771198273, + 0.11481960117816925, + 0.0031052520498633385, + 0.06807582825422287, + 0.08546765893697739, + 0.02094857022166252, + -0.005448504351079464, + -0.03393172845244408, + 0.02201603353023529, + -0.0104161212220788, + -0.036799147725105286, + -0.024892685934901237, + 0.014176602475345135, + 0.018298957496881485, + -0.022170938551425934, + -0.05133510380983353, + -0.03552956134080887, + -0.02209378592669964, + -0.008912596851587296, + 0.04289180412888527, + -0.16798266768455505, + -0.08772792667150497, + -0.058779433369636536, + -0.009148471057415009, + -0.041371673345565796, + -0.02429724484682083, + -0.023959781974554062, + 0.05338854715228081, + -0.05389844998717308, + 0.05207407474517822, + 0.05523856729269028, + 0.020879533141851425, + 0.050258178263902664, + 0.02580912783741951, + -0.031207863241434097, + 0.00951539259403944, + 0.04823603108525276, + -0.04930770769715309, + -0.04417892172932625, + -0.015761619433760643, + -0.0033975113183259964, + -0.034393105655908585, + -0.0041535296477377415, + -0.02077265828847885, + -0.011088172905147076, + 0.032998088747262955, + 0.006338506005704403, + -0.005617730785161257, + -0.11121168732643127, + 0.009269265457987785, + 0.02546539343893528, + 0.0023218311835080385, + 0.04888073354959488, + 0.10148962587118149, + 0.10426920652389526, + -0.003156127408146858, + -0.016960499808192253, + 0.04252553731203079, + 0.05823955312371254, + -0.06771809607744217, + 0.027929002419114113, + 0.04738530144095421, + -0.011874579824507236, + -0.08603683859109879, + 0.04415476322174072, + -0.006095260847359896, + -0.04710852727293968, + -0.004281186498701572, + 0.12062712758779526, + -0.0266288910061121, + 0.03645120561122894, + 0.07355020195245743, + -0.041932977735996246, + 0.04394295811653137, + 0.043446652591228485, + 0.03507467359304428, + 0.04978574439883232, + -0.0014676107093691826, + 0.06969457864761353, + 0.023203257471323013, + 0.012664233334362507, + -0.05931375175714493, + -0.05379500612616539, + 0.012279454618692398, + 0.02258700132369995, + -0.0404193289577961, + -0.024962328374385834, + 0.0751916840672493, + 0.005373419262468815, + 0.03950035572052002, + -0.003982177469879389, + -0.07902472466230392, + -0.11753800511360168, + -0.03875264525413513, + 0.0011254990240558982, + -0.0008362318039871752, + -2.065912036115977e-33, + 0.044453516602516174, + 0.11845824867486954, + -0.08511052280664444, + 0.08139367401599884, + 0.033280618488788605, + 0.037674251943826675, + -0.042796533554792404, + -0.038117971271276474, + -0.11143249273300171, + 0.01869327388703823, + 0.06981254369020462, + 0.0360841229557991, + -0.02664279192686081, + 0.15122880041599274, + 0.0066130803897976875, + -0.019958171993494034, + 0.018283413723111153, + 0.028331883251667023, + -0.1260320097208023, + -0.0978369191288948, + -0.10306079685688019, + 0.004746608901768923, + -0.04214751347899437, + -0.038188379257917404, + 0.004552377853542566, + 0.02741817571222782, + 0.06814282387495041, + -0.005415112711489201, + -0.032820992171764374, + -0.02133789286017418, + 0.016621092334389687, + 0.007501179352402687, + 0.07253564894199371, + 0.07879379391670227, + -0.04577673599123955, + -0.008525851182639599, + -0.01678205281496048, + -0.041230712085962296, + 0.004018979147076607, + 0.06655912846326828, + -0.02319154515862465, + -0.0405241884291172, + -0.04741371423006058, + -0.028720403090119362, + 0.05997539311647415, + 0.08900809288024902, + -0.03608954697847366, + -0.06672276556491852, + 0.0258224755525589, + -0.010479484684765339, + -0.0011388605926185846, + 0.056673333048820496, + 0.01694689318537712, + -0.024361329153180122, + -0.07230684906244278, + -0.03448352590203285, + -0.02280932292342186, + 0.06023024767637253, + 0.07836972922086716, + -0.028405707329511642, + 0.04680273309350014, + 0.062472954392433167, + 0.014281238429248333, + 0.025493554770946503, + -0.016267044469714165, + 0.14239495992660522, + 0.0016734005184844136, + 0.035488106310367584, + 0.03629610314965248, + -0.0002733070868998766, + -0.03804106265306473, + 0.02154378406703472, + 0.05604158341884613, + 0.024197041988372803, + -0.06909935921430588, + -0.022772541269659996, + -0.000931082759052515, + 0.027524929493665695, + 0.006861156318336725, + 0.012765354476869106, + -0.10343912243843079, + -0.016291115432977676, + -0.09102287143468857, + 0.0492369644343853, + 0.02455255202949047, + 0.022290268912911415, + 0.05971386283636093, + -0.004560929257422686, + -0.006417735014110804, + -0.016453150659799576, + -0.01310177706182003, + -0.0005171832162886858, + -0.004806152079254389, + -0.05795956775546074, + -0.09652944654226303, + 5.204183487448971e-34, + 0.02697967365384102, + 0.050288233906030655, + 0.030397918075323105, + -0.003459655214101076, + -0.07723653316497803, + -0.013834384270012379, + -0.007483643013983965, + 0.07251429557800293, + -0.05754174664616585, + -0.04132594168186188, + 0.07801748067140579, + -0.01747659221291542, + -0.09696824848651886, + -0.04714849591255188, + 0.012168090790510178, + 0.01545291393995285, + -0.007297948934137821, + 0.07015328854322433, + -0.0682331994175911, + 0.04001980274915695, + 0.042456094175577164, + 0.03662191331386566, + -0.060446251183748245, + 0.08063355833292007, + -0.017004335299134254, + -0.007385863456875086, + 0.048575397580862045, + 0.029564062133431435, + -0.03215188905596733, + -0.022089291363954544, + -0.004236266482621431, + -0.018723158165812492, + -0.006821949500590563, + 0.04475416988134384, + -0.013145333155989647, + -0.02389358915388584, + 0.02114414982497692, + -0.008004537783563137, + -0.003889074083417654, + 0.06044577807188034, + -0.021380741149187088, + -0.03260345757007599, + -0.011710871942341328, + 0.10620883107185364, + -0.053506333380937576, + -0.03726451098918915, + -0.1038205623626709, + -0.08054107427597046, + -0.020083017647266388, + 0.06355474889278412, + -0.0057791429571807384, + -0.09796108305454254, + 0.014416431076824665, + 0.0033122021704912186, + -0.07198711484670639, + -0.055726129561662674, + -0.009245840832591057, + 0.04683981463313103, + -0.00038090613088570535, + 0.07525959610939026, + 0.0001281640725210309, + -0.025783535093069077, + -0.02869591861963272, + 0.021888192743062973, + 0.033199720084667206, + -0.017141068354249, + -0.03919156268239021, + -0.016629260033369064, + -0.04456360638141632, + 0.0353861004114151, + 0.04500577598810196, + -0.028278356418013573, + -0.024522271007299423, + -0.031602416187524796, + -0.014683591201901436, + -0.08286641538143158, + 0.04967866092920303, + 0.02649468183517456, + -0.035228144377470016, + 0.028233835473656654, + -0.009610112756490707, + -0.012019768357276917, + -0.05601000413298607, + 0.04051332548260689, + 0.0008022497640922666, + 0.03665437176823616, + -0.03682580962777138, + 0.02010374516248703, + 0.044474873691797256, + -0.012375881895422935, + -0.08102288097143173, + 0.10897538810968399, + 0.10441991686820984, + 0.07038140296936035, + -0.026149844750761986, + -2.3048066566389025e-08, + -0.041022080928087234, + -0.027713172137737274, + 0.023711591958999634, + -0.01910853572189808, + 0.060060955584049225, + 0.006266229320317507, + -0.04285460710525513, + -0.09630902111530304, + -0.03281429782509804, + -0.054401006549596786, + 0.01612338051199913, + -0.040410879999399185, + -0.05220792442560196, + -0.01264877524226904, + 0.02029595524072647, + 0.021748319268226624, + -0.09020160883665085, + 0.11946989595890045, + -0.01460554450750351, + -0.042142391204833984, + -0.06041282042860985, + 0.09411484748125076, + 0.035032834857702255, + -0.01811569556593895, + 0.03502960503101349, + 0.006047241389751434, + 0.02051449567079544, + -0.005749631207436323, + -0.04037560150027275, + 0.06121917814016342, + 0.022134749218821526, + 0.10827390104532242, + 0.0890183299779892, + 0.000859307125210762, + -0.04836822301149368, + 0.007435670588165522, + 0.015078751370310783, + 0.038306865841150284, + -0.07783810049295425, + -0.020258069038391113, + 0.005218673497438431, + -0.018213747069239616, + -0.03190616890788078, + -0.05629923194646835, + -0.0936402678489685, + -0.01634453982114792, + 0.059575747698545456, + -0.0003600437776185572, + -0.04577655345201492, + -0.10574228316545486, + 0.020671453326940536, + -0.01628887839615345, + 0.0007129997829906642, + -0.009060760028660297, + -0.06614506244659424, + -0.019698509946465492, + 0.0310527216643095, + 0.11286481469869614, + 0.07447782903909683, + 0.04167209938168526, + 0.11681950837373734, + -0.03775089606642723, + 0.053089018911123276, + -0.06328362226486206 + ], + "resize-bold||*new*,maximize,expand,grow": [ + 0.020215943455696106, + 0.005860718432813883, + -0.014195919036865234, + 0.09043093770742416, + 0.035942722111940384, + -0.026825807988643646, + 0.026748837903141975, + -0.014767522923648357, + -0.06730040162801743, + 0.06659258902072906, + -0.0409693643450737, + 0.08732503652572632, + 0.039223503321409225, + -0.022446826100349426, + 0.0065299393609166145, + 0.08352489769458771, + 0.02252976782619953, + 0.10042338073253632, + -0.11503192782402039, + -0.049335967749357224, + 0.010426699183881283, + -0.04841122776269913, + -0.04302423819899559, + 0.04116649180650711, + 0.05120236799120903, + 0.012189211323857307, + -0.0019565518014132977, + 0.034680336713790894, + 0.05093031004071236, + -0.09619975835084915, + 0.022549133747816086, + -0.0021487183403223753, + 0.13602958619594574, + 0.011293851770460606, + 0.05399644747376442, + 0.054693881422281265, + -0.0257424209266901, + -0.02056983672082424, + -0.0024135964922606945, + 0.02322758361697197, + 0.016402166336774826, + -0.02468816749751568, + -0.025220787152647972, + 0.04120777174830437, + -0.01978132873773575, + -0.04136676713824272, + -0.06157326325774193, + 0.03505123779177666, + 0.02088366448879242, + -0.051678918302059174, + -0.02724948152899742, + -0.059506554156541824, + -0.09795373678207397, + 0.02525106631219387, + 0.0209716334939003, + -0.0026305965147912502, + -0.05658852681517601, + -0.06309057772159576, + 0.07636650651693344, + -0.03802383318543434, + 0.028963731601834297, + 0.05476982146501541, + 0.08041053265333176, + 0.038175683468580246, + -0.010681498795747757, + -0.02927435375750065, + -0.02524535357952118, + 0.020181266590952873, + -0.031056666746735573, + 0.06699816137552261, + 0.043088678270578384, + 0.04389164224267006, + -0.0009207377443090081, + -0.0028840508311986923, + 0.027243349701166153, + -0.047614071518182755, + 0.011689218692481518, + 0.04628835245966911, + 0.013651788234710693, + 0.06777336448431015, + -0.05499644577503204, + 0.010958460159599781, + -0.04818509519100189, + 0.0031194700859487057, + 0.0451541431248188, + 0.044732749462127686, + -0.08640848845243454, + -0.10890891402959824, + 0.01866096816956997, + -0.04202241823077202, + -0.0378311350941658, + 0.01705778017640114, + -0.12929174304008484, + 0.08155275881290436, + -0.11947275698184967, + -0.09763191640377045, + -0.05119205638766289, + -0.12228845059871674, + -0.032553188502788544, + 0.10141674429178238, + 0.02727215550839901, + 0.06629250943660736, + 0.08338805288076401, + -0.009641424752771854, + -0.004678916651755571, + -0.039822399616241455, + -0.050962191075086594, + 0.04320386052131653, + 0.009741046465933323, + 0.02439422719180584, + 0.02455507591366768, + -0.04846746847033501, + 0.0269914660602808, + 0.01239154115319252, + -0.006564381066709757, + 0.01801161840558052, + -0.02349264547228813, + -0.015602960251271725, + 0.08291977643966675, + 0.023201312869787216, + 0.1161796823143959, + 0.0064917393028736115, + -0.0760146826505661, + -0.036971621215343475, + -0.03701648861169815, + 0.042864877730607986, + -0.03429006412625313, + -7.117506254923638e-34, + -0.06241387501358986, + 0.05845962092280388, + -0.02726168930530548, + 0.14972907304763794, + 0.015389579348266125, + 0.0662221685051918, + -0.06570401042699814, + -0.0075163813307881355, + -0.10714947432279587, + -0.021563876420259476, + 0.07685786485671997, + 0.10434886813163757, + -0.023548703640699387, + 0.05431801453232765, + 0.06428858637809753, + -0.08722421526908875, + 0.01876472495496273, + 0.13080081343650818, + -0.07675183564424515, + -0.054103657603263855, + -0.10230255872011185, + 0.07096920907497406, + 0.010408495552837849, + 0.023812901228666306, + -0.016977278515696526, + -0.11102843284606934, + 0.08060775697231293, + -0.0388595387339592, + -0.13427864015102386, + 0.00039549244684167206, + -0.049104876816272736, + -0.03118642047047615, + -0.0121053671464324, + 0.02300531230866909, + -0.04181380197405815, + 0.064658522605896, + -0.01990630105137825, + -0.019789433106780052, + 0.003818338504061103, + 0.051105812191963196, + -0.0429418683052063, + 0.001409537740983069, + 0.02245412766933441, + -0.04493032023310661, + 0.020501835271716118, + 0.09536294639110565, + 0.011684141121804714, + -0.03645699471235275, + -0.013436203822493553, + -0.092222660779953, + 0.027351394295692444, + 0.029029810801148415, + 0.012366353534162045, + -0.0021790843456983566, + 0.016376562416553497, + -0.030445750802755356, + -0.012564887292683125, + 0.039588943123817444, + 0.05423753708600998, + -0.027468066662549973, + -0.03132260963320732, + -0.07109583914279938, + 0.009813109412789345, + 0.09964749217033386, + -0.010015379637479782, + -0.013397987931966782, + 0.0069265165366232395, + 0.04975195974111557, + 0.04447690024971962, + 0.05077696219086647, + 0.0329667404294014, + 0.07858139276504517, + 0.0788954347372055, + 0.034127820283174515, + -0.018179135397076607, + -0.024283943697810173, + 0.05156511440873146, + 0.02302262745797634, + -0.0017895629862323403, + -0.08287753909826279, + -0.038803860545158386, + 0.024760697036981583, + -0.0001411601697327569, + 0.05091240257024765, + 0.0037074023857712746, + -0.08245756477117538, + -0.005837304051965475, + -0.0072259376756846905, + 0.014949128031730652, + -0.01573476940393448, + -0.0863201767206192, + -0.05262754112482071, + 0.0020242654718458652, + -0.0569210946559906, + -0.05248898267745972, + -4.601548859755656e-34, + 0.05998605117201805, + 0.005026804283261299, + -0.023210639134049416, + -0.046067237854003906, + -0.050719693303108215, + 0.051449183374643326, + -0.05031361058354378, + 0.08561454713344574, + -0.05393722653388977, + -0.06207657977938652, + 0.05569013953208923, + 0.0068978010676801205, + 0.00048814344336278737, + -0.03742466866970062, + -0.03807033598423004, + 0.03674512729048729, + 0.024806983768939972, + 0.00295021990314126, + -0.051557958126068115, + 0.012877616100013256, + -0.008015044033527374, + 0.0005937415990047157, + -0.05149900168180466, + 0.08181149512529373, + 0.021834786981344223, + -0.026253873482346535, + -0.009594513103365898, + 0.08606766909360886, + -0.003957606852054596, + -0.002250081393867731, + -0.037739794701337814, + -0.07782845944166183, + -0.017141999676823616, + 0.09379954636096954, + -0.0029637140687555075, + 0.012104271911084652, + 0.007122746668756008, + -0.05870667099952698, + 0.07067979127168655, + 0.07300223410129547, + 0.009960400871932507, + 0.0017711606342345476, + 0.0409746952354908, + -0.007803545333445072, + -0.0034880295861512423, + -0.017997650429606438, + 0.06873466074466705, + -0.08211011439561844, + 0.0037295969668775797, + 0.029602931812405586, + 0.023649150505661964, + -0.05251874029636383, + -0.011993802152574062, + -0.024966657161712646, + -0.10567514598369598, + 0.027576994150877, + -0.006311326753348112, + 0.03747425600886345, + -0.06263501942157745, + 0.004590474534779787, + -0.01697959564626217, + -0.020856240764260292, + -0.06475910544395447, + -0.03293721750378609, + -0.033928096294403076, + -0.029032889753580093, + 0.02602827362716198, + -0.0640915259718895, + -0.03744785115122795, + 0.015197491273283958, + 0.10221807658672333, + 0.04112325981259346, + -0.03958391025662422, + 0.0394071526825428, + -0.05608271062374115, + -0.06947095692157745, + 0.05216207727789879, + -0.022781651467084885, + -0.03369063884019852, + -0.012707173824310303, + -0.03670167922973633, + -0.02184756100177765, + 0.02738249860703945, + 0.04261857643723488, + -0.027012702077627182, + 0.06112116575241089, + -0.0016359166475012898, + 0.06644147634506226, + -0.03208914026618004, + -0.03040948137640953, + -0.07919302582740784, + 0.0002818458597175777, + -0.008489202708005905, + -0.07102712243795395, + -0.033295415341854095, + -1.9874351053772443e-08, + -0.07717768102884293, + 0.01439256314188242, + -0.06988973915576935, + 0.03875522315502167, + 0.057265788316726685, + -0.04607928916811943, + 0.001992646371945739, + -0.004890541546046734, + -0.043840471655130386, + -0.023484518751502037, + -0.0029480443336069584, + 0.050511132925748825, + 0.008637039922177792, + 0.02786983922123909, + 0.005174821242690086, + -0.008875266648828983, + -0.032340727746486664, + 0.030527792870998383, + -0.018648909404873848, + -0.1161358654499054, + -0.029924597591161728, + 0.09640423208475113, + 0.049959443509578705, + 0.019976932555437088, + 0.02121160551905632, + -0.06700585782527924, + -0.09631767123937607, + 0.04678378254175186, + 0.08065255731344223, + 0.04648424685001373, + 0.07234437018632889, + 0.04401097446680069, + 0.015365110710263252, + 0.053772710263729095, + -0.06401678919792175, + -0.017739081755280495, + -0.050779569894075394, + 0.0722842738032341, + -0.01281152106821537, + 0.027982568368315697, + -0.07423091679811478, + 0.033779326826334, + 0.029008613899350166, + -0.0194991584867239, + -0.08083971589803696, + -0.03384839743375778, + -0.001905425451695919, + -0.007111562415957451, + -0.018412983044981956, + -0.08462999016046524, + 0.05770045891404152, + 0.007105018477886915, + 0.028317134827375412, + 0.03515462204813957, + 0.0006374609656631947, + -0.01910874806344509, + -0.042146239429712296, + 0.15802183747291565, + -0.031332049518823624, + 0.042966753244400024, + 0.06028757616877556, + 0.007473128382116556, + -0.006342547480016947, + 0.015531827695667744 + ], + "rewind-bold||music,audio,seek,scrub,scan,skip,back,backwards,reverse": [ + 0.028488775715231895, + -0.05374649167060852, + 0.004230631981045008, + -0.03687659278512001, + -0.02922062575817108, + 0.04095831140875816, + 0.04480453208088875, + -0.13540469110012054, + -0.003970663528889418, + -0.05063288286328316, + -0.01207452267408371, + 0.05518714711070061, + 0.019705459475517273, + -0.08188854902982712, + -0.08109839260578156, + 0.02519334852695465, + 0.007674073334783316, + 0.12638291716575623, + 0.03037102334201336, + -0.0203123539686203, + -0.03784206882119179, + 0.03239313140511513, + -0.03377233073115349, + -0.0011367480037733912, + 0.003829461755231023, + 0.05900609865784645, + -0.04195186495780945, + 0.012855413369834423, + -0.0004138217482250184, + -0.0762835144996643, + 0.007344269193708897, + 0.044232673943042755, + 0.11578501015901566, + 0.01680506020784378, + -0.053898561745882034, + -0.013272847048938274, + -0.0892355665564537, + 0.017648568376898766, + -0.061498645693063736, + 0.05971479043364525, + -0.01810315065085888, + 0.02355760894715786, + -0.0155537324026227, + -0.05917799100279808, + -0.047770120203495026, + -0.09039562195539474, + -0.13321739435195923, + -0.033302512019872665, + 0.08592576533555984, + 0.0508040189743042, + -0.029107946902513504, + -0.06142686679959297, + -0.12663652002811432, + 0.07528269290924072, + -0.005067502148449421, + 0.04605575278401375, + 0.041236236691474915, + 0.051878925412893295, + 0.06872858852148056, + 0.04095333069562912, + 0.017585186287760735, + -0.041941381990909576, + -0.009231781587004662, + 0.0025325296446681023, + 0.07234468311071396, + 0.003725889604538679, + -0.029890907928347588, + 0.03603469580411911, + 0.022326437756419182, + 0.06237121671438217, + -0.023562010377645493, + -0.007038469891995192, + 0.021602870896458626, + -0.0018473755335435271, + 0.00253515737131238, + -0.03558249771595001, + 0.05224384739995003, + -0.04650532081723213, + -0.09970194101333618, + -0.057298917323350906, + -0.03173206001520157, + -0.09817013889551163, + -0.055349886417388916, + 0.004353983793407679, + 0.074164018034935, + 0.03817811980843544, + -0.0745600089430809, + -0.08435917645692825, + 0.009603912010788918, + -0.010018340311944485, + -0.1306607574224472, + -0.08821963518857956, + -0.007461959961801767, + -0.020734768360853195, + 0.005943384952843189, + 0.025933600962162018, + 0.05804325267672539, + -0.0217913668602705, + -0.0038101011887192726, + 0.05743126571178436, + 0.061020005494356155, + -0.008488915860652924, + 0.05404571071267128, + -0.011601561680436134, + -0.070342518389225, + -0.09132274985313416, + 0.020738182589411736, + 0.04308910667896271, + -0.06257247179746628, + -0.038888685405254364, + 0.010891157202422619, + -0.03474221006035805, + 0.06640615314245224, + -0.08944129198789597, + 0.05526813119649887, + 0.0063010104931890965, + -0.03426896035671234, + 0.02659337781369686, + 0.05698946863412857, + 0.07673691213130951, + 0.019159410148859024, + -0.033790867775678635, + -0.0816255658864975, + -0.055248115211725235, + 0.03702234476804733, + -0.036262739449739456, + 0.07286052405834198, + -1.524302371126135e-33, + 0.04650692641735077, + 0.06500862538814545, + -0.013578163459897041, + 0.044188011437654495, + 0.05020862817764282, + 0.02795392833650112, + -0.016824454069137573, + 0.03501085937023163, + -0.03357827663421631, + 0.06100091338157654, + 0.057729221880435944, + 0.06070207059383392, + -0.03846404701471329, + 0.016872340813279152, + -0.015770308673381805, + -0.07471053302288055, + -0.020237548276782036, + 0.0567595511674881, + -0.13503265380859375, + -0.008546261116862297, + -0.06507886201143265, + 0.023996300995349884, + 0.005828180816024542, + -0.05876518040895462, + 0.017705751582980156, + -0.02513118088245392, + 0.014860236085951328, + -0.07713770866394043, + 0.007095169275999069, + 0.03181523457169533, + -0.04731934517621994, + 0.04697428271174431, + 0.007347068749368191, + -0.027100102975964546, + -0.012895386666059494, + 0.060999538749456406, + -0.06053008884191513, + 0.03819340839982033, + 0.049323126673698425, + -0.03984738141298294, + -0.09940205514431, + -0.01617700792849064, + -0.0842781811952591, + -0.09015431255102158, + 0.015569907613098621, + -0.03143146261572838, + -0.023756735026836395, + 0.07172856479883194, + 0.0011983878212049603, + 0.059941019862890244, + 0.09063027799129486, + 0.061888132244348526, + -0.0457567423582077, + -0.005039989948272705, + 0.005788919981569052, + -0.027032453566789627, + 0.06708776205778122, + 0.15609659254550934, + -0.006865990813821554, + 0.09981463849544525, + 0.08992622792720795, + 0.08235950767993927, + 0.07378524541854858, + -0.016038063913583755, + -0.011753867380321026, + 0.05195309966802597, + 0.03410957753658295, + -0.0057274820283055305, + 0.06136249750852585, + -0.0036544576287269592, + -0.06291142851114273, + 0.0012472079833969474, + 0.019588662311434746, + 0.02385007031261921, + -0.007998159155249596, + 0.035567156970500946, + 0.017883485183119774, + -0.04130779951810837, + 0.07103350758552551, + -0.07770479470491409, + -0.0908123254776001, + 0.0012178095057606697, + -0.06909636408090591, + 0.009247425012290478, + 0.0010508726118132472, + -0.006869505625218153, + 0.007436726707965136, + -0.15137189626693726, + -0.0479130744934082, + -0.0654430091381073, + -0.0994417667388916, + 0.06766542792320251, + -0.004189702216535807, + -0.010563487187027931, + -0.04263017699122429, + -7.480370340762939e-34, + 0.08575063198804855, + 0.04148481786251068, + 0.02144671231508255, + -0.012572202831506729, + -0.06881154328584671, + 0.026765696704387665, + 0.06214267015457153, + 0.08916804939508438, + -0.0007835806463845074, + 0.015503497794270515, + 0.051749251782894135, + -0.03999267518520355, + -0.03647499531507492, + -0.03739418461918831, + 0.00509834848344326, + 0.04464377090334892, + 0.04255341738462448, + 0.03486808389425278, + -0.01266524102538824, + 0.016973629593849182, + -0.017261849716305733, + -0.021460939198732376, + 0.013600914739072323, + 0.11611957103013992, + -0.0691303163766861, + 0.005291957873851061, + 0.06500915437936783, + 0.049117814749479294, + 0.028238492086529732, + -0.040726643055677414, + 0.04004506394267082, + -0.027934905141592026, + -0.00979054719209671, + -0.03217906504869461, + -0.005908339750021696, + 0.04088645800948143, + 0.06327521055936813, + 0.04549490287899971, + -0.03327813372015953, + -0.010116671212017536, + 0.03711573779582977, + 0.08735927194356918, + 0.07188179343938828, + 0.011903036385774612, + -0.03224626183509827, + -0.0090281181037426, + -0.07741399109363556, + 0.07327760010957718, + -0.01647392474114895, + 0.02151504158973694, + 0.04355764761567116, + -0.07514519989490509, + -0.023254964500665665, + -0.04086962342262268, + -0.07564409077167511, + -0.01578078791499138, + -0.009858506731688976, + -0.023985575884580612, + -0.05089921876788139, + 0.06957028061151505, + -0.032579340040683746, + 0.008685530163347721, + -0.025784848257899284, + -0.09260620921850204, + 0.00017065867723431438, + 0.026286274194717407, + 0.0754551887512207, + -0.05819021910429001, + -0.027909861877560616, + -0.002884435700252652, + 0.01152798067778349, + 0.03343092277646065, + 0.004750899504870176, + 0.0002588054339867085, + -0.025828272104263306, + -0.012104318477213383, + -0.0029904323164373636, + -0.0408821702003479, + -0.07359810173511505, + -0.004193244967609644, + 0.009063768200576305, + 0.003889324376359582, + 0.04013621062040329, + 0.02955646812915802, + -0.031669292598962784, + 0.0794738233089447, + -0.03961224481463432, + -0.0036209356039762497, + 0.02611791156232357, + 0.005213384050875902, + -0.016855541616678238, + 0.04672551527619362, + 0.06063869595527649, + -0.03481874242424965, + -0.017187733203172684, + -2.1567259977928188e-08, + -0.05788184702396393, + -0.028471767902374268, + 0.06483351439237595, + -0.002408765722066164, + 0.016292203217744827, + -0.05202054604887962, + -0.006808774545788765, + -0.036250948905944824, + -0.07489243894815445, + -0.14212416112422943, + 0.07576175034046173, + -0.009603898040950298, + 0.006988178472965956, + 0.02611236460506916, + 0.0253047626465559, + 0.01083544921129942, + -0.003061574650928378, + 0.036105647683143616, + -0.01885722577571869, + -0.0663696676492691, + 0.015691008418798447, + 0.05585052818059921, + 0.07688482850790024, + 0.02105722948908806, + 0.0026289650704711676, + 0.007090029772371054, + -0.015027008950710297, + 0.0052573187276721, + 0.08430233597755432, + -0.04388949275016785, + 0.008431839756667614, + 0.04722539335489273, + 0.0021953212562948465, + -0.01724761351943016, + -0.07816056162118912, + -0.005582607351243496, + 0.02964031510055065, + 0.024613874033093452, + -0.08107279241085052, + 0.043494436889886856, + -0.009537761099636555, + 0.0005900068790651858, + -0.03078818880021572, + -0.0024832983035594225, + -0.12618619203567505, + -0.0743425264954567, + 0.08707888424396515, + -0.03339966759085655, + -0.01352611556649208, + -0.11357168108224869, + -0.004965455271303654, + -0.008334499783813953, + 0.03048529475927353, + -0.009420429356396198, + 0.03662724047899246, + 0.02929110825061798, + -0.021056639030575752, + 0.0861782357096672, + -0.08117590099573135, + 0.044165875762701035, + 0.030362306162714958, + 0.05103712156414986, + 0.015273390337824821, + 0.026611318811774254 + ], + "rewind-circle-bold||music,audio,seek,scrub,scan,skip,back,backwards,reverse": [ + 0.034338172525167465, + -0.03895300254225731, + -0.03550947830080986, + -0.03278220817446709, + -0.004107144195586443, + 0.010825559496879578, + 0.06157856434583664, + -0.12388342618942261, + 0.02673524245619774, + -0.08419130742549896, + -0.010973893105983734, + 0.051063891500234604, + 0.03136196359992027, + -0.07489063590765, + -0.05704880133271217, + 0.01710221916437149, + -0.008296927437186241, + 0.1097843199968338, + 0.04528537392616272, + -0.04048822447657585, + -0.057638559490442276, + 0.010683251544833183, + -0.017382998019456863, + 0.03649427741765976, + -0.019416676834225655, + 0.08628677576780319, + -0.03693534433841705, + 0.003615083871409297, + -0.014910177327692509, + -0.08797122538089752, + -0.016153082251548767, + 0.056171562522649765, + 0.09932854771614075, + -0.0010248320177197456, + -0.05912206694483757, + -6.707255670335144e-05, + -0.09740831702947617, + 0.0277483519166708, + -0.05225588008761406, + 0.021600328385829926, + -0.004558308981359005, + 0.022698238492012024, + 0.016124699264764786, + -0.06552508473396301, + -0.05721128359436989, + -0.0652349516749382, + -0.16287484765052795, + -0.03409325331449509, + 0.08031053096055984, + 0.06186731532216072, + -0.03836502879858017, + -0.08041413128376007, + -0.1329648643732071, + 0.04621458798646927, + 0.007185362745076418, + 0.04657317325472832, + 0.04323330521583557, + 0.04226604849100113, + 0.09161562472581863, + 0.025620440021157265, + 0.03361942246556282, + -0.06593954563140869, + 0.01132705807685852, + 0.014647575095295906, + 0.05390290915966034, + -0.016863463446497917, + -0.047754742205142975, + 0.004770213738083839, + 0.014469047077000141, + 0.03693586587905884, + -0.010078863240778446, + -0.001639318186789751, + 0.011054121889173985, + -0.01703854463994503, + 0.026198461651802063, + -0.009104753844439983, + 0.028243599459528923, + -0.011853880248963833, + -0.1281132847070694, + -0.0605386458337307, + -0.014071445912122726, + -0.08415190130472183, + -0.04625535011291504, + 0.029845435172319412, + 0.06734868884086609, + 0.05595071613788605, + -0.05178634077310562, + -0.09715354442596436, + -0.0010949192801490426, + -0.01130528375506401, + -0.1264452487230301, + -0.06862647086381912, + -0.03998887538909912, + -0.033988114446401596, + -0.010962565429508686, + 0.012586267665028572, + 0.041390612721443176, + -0.051534585654735565, + -0.03866191208362579, + 0.07603298872709274, + 0.07402756065130234, + -0.022028224542737007, + 0.06963589042425156, + -0.022407161071896553, + -0.07321304827928543, + -0.08346156775951385, + 0.01702313870191574, + 0.040459342300891876, + -0.06168524920940399, + -0.022746747359633446, + 0.01004075538367033, + -0.04125015065073967, + 0.05546091869473457, + -0.06144696846604347, + 0.0417301245033741, + 0.014316621236503124, + -0.04254843667149544, + 0.03333326801657677, + 0.062398117035627365, + 0.08618885278701782, + 0.038749657571315765, + -0.015661008656024933, + -0.11310452967882156, + -0.05837079882621765, + 0.009483723901212215, + -0.03316163644194603, + 0.058418452739715576, + -1.9496238697379822e-33, + 0.02792435511946678, + 0.08221225440502167, + -0.003368572099134326, + 0.020489467307925224, + 0.042738597840070724, + -0.02292758785188198, + -0.007494222838431597, + 0.032385945320129395, + 0.009247061796486378, + 0.060044337064027786, + 0.03869786486029625, + 0.0469343364238739, + -0.02834334783256054, + 0.01168081909418106, + 0.0025116694159805775, + -0.07944928854703903, + 0.009269672445952892, + 0.032775990664958954, + -0.15043403208255768, + -0.03343119099736214, + -0.06746012717485428, + 0.025286369025707245, + -0.02229960449039936, + -0.053890589624643326, + 0.007950868457555771, + -0.0022352999076247215, + 0.004358950071036816, + -0.0706079825758934, + 0.01533325295895338, + 0.04225118085741997, + -0.03662123531103134, + 0.04715733602643013, + 0.01766899600625038, + -0.007762659341096878, + -4.627992893802002e-05, + 0.07551734894514084, + -0.05330830439925194, + 0.04521426931023598, + 0.024563994258642197, + -0.043504539877176285, + -0.08627775311470032, + -0.02350917086005211, + -0.09584497660398483, + -0.05316726490855217, + 0.021093154326081276, + -0.018134506419301033, + -0.015359549783170223, + 0.06602026522159576, + -0.003972866106778383, + 0.06479949504137039, + 0.06207277253270149, + 0.07151740789413452, + -0.06049156188964844, + -0.02282854914665222, + 0.011016073636710644, + -0.04556792601943016, + 0.07799849659204483, + 0.1397288590669632, + -0.037781745195388794, + 0.07744915038347244, + 0.10191819816827774, + 0.07782930880784988, + 0.06291015446186066, + -0.03843245282769203, + -0.026388507336378098, + 0.05173793435096741, + 0.010009166784584522, + -0.030302943661808968, + 0.06823688745498657, + -0.017488371580839157, + -0.049953024834394455, + 0.017153898254036903, + 0.04877319931983948, + 0.05507289990782738, + -0.009247001260519028, + 0.03723571076989174, + 0.009351328946650028, + -0.03331786394119263, + 0.07124655693769455, + -0.07880397886037827, + -0.08730781078338623, + 0.002454133704304695, + -0.06148219108581543, + 0.002126770094037056, + 0.027816934511065483, + -0.02693856507539749, + 0.03014271892607212, + -0.13709542155265808, + -0.047455426305532455, + -0.06311400234699249, + -0.09675765782594681, + 0.09004729241132736, + 0.015528719872236252, + 0.020130256190896034, + -0.06671109050512314, + -5.671105455629931e-34, + 0.08124621212482452, + 0.04684866964817047, + 0.045143213123083115, + -0.010766571387648582, + -0.05308195576071739, + 0.026974229142069817, + 0.05545070767402649, + 0.08339139074087143, + -0.008192895911633968, + 0.028514010831713676, + 0.021594364196062088, + -0.04438842833042145, + -0.020339196547865868, + -0.0242408886551857, + 0.032804425805807114, + 0.05064927414059639, + 0.0526592954993248, + 0.030214251950383186, + -0.009426583535969257, + 0.04068189114332199, + -0.02695750817656517, + -0.0139636704698205, + 0.01684310846030712, + 0.10304035991430283, + -0.08096514642238617, + 0.022887419909238815, + 0.08450066298246384, + 0.01599598117172718, + 0.020883696153759956, + -0.012134983204305172, + -0.003669572062790394, + -0.04678836837410927, + 0.006902093067765236, + -0.017796913161873817, + 0.015279480256140232, + 0.012924138456583023, + 0.06314461678266525, + 0.013435536995530128, + -0.06635800004005432, + -0.051990754902362823, + 0.008036223240196705, + 0.06954550743103027, + 0.06992437690496445, + 0.010767688043415546, + -0.014873309060931206, + -0.034751515835523605, + -0.03542569279670715, + 0.09974797815084457, + -0.04297122359275818, + 0.036237023770809174, + 0.05223793536424637, + -0.05730650573968887, + 0.011616481468081474, + -0.041773874312639236, + -0.059860777109861374, + 0.01720084436237812, + -0.02260708622634411, + -0.013930629007518291, + -0.02405295893549919, + 0.0687405988574028, + -0.042178455740213394, + -0.006999773904681206, + -0.037983089685440063, + -0.06001698970794678, + 0.0031892263796180487, + 0.036969784647226334, + 0.07860986888408661, + -0.05162396281957626, + -0.037458837032318115, + 0.033038705587387085, + -0.01248156651854515, + 0.06531424075365067, + 0.00072978570824489, + -0.019774548709392548, + -0.021511565893888474, + 0.0029589426703751087, + 0.012606370262801647, + -0.04965779557824135, + -0.08064138144254684, + 0.008018615655601025, + -0.005549842957407236, + 0.017333323135972023, + 0.031301334500312805, + 0.025631459429860115, + -0.025523897260427475, + 0.05136489123106003, + -0.03765639290213585, + -0.012701108120381832, + 0.006193095352500677, + 0.018046988174319267, + 0.004802311304956675, + 0.05098055303096771, + 0.045635126531124115, + -0.005730683449655771, + 0.025424927473068237, + -2.266641985215756e-08, + -0.054697468876838684, + -0.017896899953484535, + 0.0495854951441288, + 0.00498815905302763, + 0.06582457572221756, + -0.06613733619451523, + -0.008023038506507874, + -0.04791640117764473, + -0.08650673180818558, + -0.13066253066062927, + 0.06173119321465492, + -0.00211501307785511, + 0.00501730851829052, + 0.027789384126663208, + 0.007934369146823883, + 0.01817205175757408, + -0.010009304620325565, + 0.05484646186232567, + -0.0066756634041666985, + -0.04609062150120735, + 0.023839011788368225, + 0.02492847666144371, + 0.09311766922473907, + -0.029460551217198372, + -0.0046511199325323105, + 0.0035531490575522184, + -0.013570236042141914, + 0.01124483160674572, + 0.06012419983744621, + -0.05953650176525116, + -0.004212112165987492, + 0.047558028250932693, + -0.011746181175112724, + -0.009219293482601643, + -0.06908513605594635, + -0.048441920429468155, + 0.019220221787691116, + 0.03389795869588852, + -0.06933382153511047, + 0.04462364688515663, + -0.0002128018531948328, + 0.03948690742254257, + -0.011455098167061806, + -0.00251481169834733, + -0.1142086610198021, + -0.055984679609537125, + 0.09104249626398087, + -0.040999576449394226, + -0.039630576968193054, + -0.10468565672636032, + -0.03655307739973068, + -0.015066470019519329, + 0.04886642470955849, + -0.015287995338439941, + 0.04132799431681633, + 0.024487115442752838, + 0.003477627644315362, + 0.10700376331806183, + -0.12150681763887405, + 0.06043693795800209, + 0.0033291669096797705, + 0.06654196232557297, + 0.01999668776988983, + 0.01749299094080925 + ], + "road-horizon-bold||trip,drive,road,travel,transportation,highway": [ + 0.06031173840165138, + -0.07063689827919006, + -0.0055901119485497475, + 0.031501878052949905, + 0.010452618822455406, + -0.0030992121901363134, + 0.052063681185245514, + -0.029342111200094223, + -0.020802030339837074, + -0.05295621603727341, + -0.024318965151906013, + -0.0022122131194919348, + 0.0064295753836631775, + 0.03784319758415222, + -0.05957372114062309, + 0.04188178852200508, + 0.022993380203843117, + -0.009463855996727943, + 0.04495270177721977, + -0.001230955240316689, + -0.012995640747249126, + 0.0644189715385437, + -0.05511154234409332, + 0.09660859405994415, + -0.009424550458788872, + 0.08760257065296173, + 0.04652990773320198, + 0.015627726912498474, + -0.04722876846790314, + -0.014463563449680805, + -0.035857848823070526, + 0.06020766869187355, + 0.0394410714507103, + 0.020186902955174446, + -0.0033925047609955072, + 0.025880172848701477, + 0.012839841656386852, + -0.0211521964520216, + 0.01603805273771286, + -0.0266916174441576, + -0.01665722206234932, + -0.04354102537035942, + 0.05305418744683266, + 0.0036134165711700916, + 0.04940590262413025, + -0.07480192184448242, + -0.0328027680516243, + 0.0005568977794609964, + 0.0639880895614624, + -0.022156046703457832, + -0.04780125617980957, + -0.08468838781118393, + -0.12177257984876633, + 0.018954182043671608, + -0.008279023692011833, + 0.08773936331272125, + -0.0751585140824318, + 0.02006598375737667, + -0.015169428661465645, + 0.02681846357882023, + -0.026988288387656212, + -0.07323150336742401, + 0.006475429516285658, + 0.07044905424118042, + 0.022781236097216606, + -0.004601288586854935, + -0.06983258575201035, + -0.015925278887152672, + -0.059857744723558426, + 0.10184928774833679, + -0.002376678865402937, + 0.02306341752409935, + -0.03484615683555603, + -0.07096874713897705, + 0.03349804878234863, + -0.04257109761238098, + 0.04235425218939781, + -0.017077229917049408, + -0.06661760061979294, + -0.11939319968223572, + 0.008166068233549595, + 0.029838865622878075, + -0.0019781915470957756, + -0.009530353359878063, + -0.0136072663590312, + -0.02904757484793663, + -0.0431101955473423, + -0.03296969458460808, + 0.02781064435839653, + -0.027395136654376984, + -0.027895262464880943, + -0.10026968270540237, + -0.025225019082427025, + 0.012088054791092873, + -0.11418890208005905, + -0.033866483718156815, + -0.015936212614178658, + -0.05897337570786476, + 0.029486235231161118, + 0.04722793772816658, + 0.025746185332536697, + -0.001321790856309235, + 0.014598059467971325, + -0.010028662160038948, + -0.0001828621025197208, + 0.05321603640913963, + 0.03216563165187836, + 0.038217488676309586, + -0.010702096857130527, + 0.04636098071932793, + 0.04868430271744728, + -0.05768749490380287, + 0.011084062047302723, + -0.06499576568603516, + -0.0369468629360199, + -0.01911134272813797, + -0.07533988356590271, + -0.007953914813697338, + 0.06066260114312172, + 0.10284373164176941, + -0.08463844656944275, + -0.04968855902552605, + 0.06733162701129913, + -0.00986658688634634, + -0.09662604331970215, + -0.05575300380587578, + 0.10630615800619125, + -3.558320582274915e-33, + -0.018563345074653625, + 0.03462852165102959, + 0.04339888319373131, + 0.10261080414056778, + 0.06527278572320938, + -0.03105631284415722, + -0.07908560335636139, + -0.005385462660342455, + -0.09413133561611176, + 0.02213461510837078, + 0.0829056054353714, + 0.0608346201479435, + 0.0074752275831997395, + 0.026870474219322205, + 0.10733956098556519, + -0.026961516588926315, + -0.024936767295002937, + -0.008037853986024857, + -0.04266903176903725, + 0.02140423096716404, + 0.0023387714754790068, + 0.040594786405563354, + -0.03420461341738701, + -0.08290450274944305, + 0.031989049166440964, + -0.08533889055252075, + 0.014305857941508293, + -0.018510952591896057, + 0.030619975179433823, + 0.04981570318341255, + -0.02764182724058628, + 0.10692228376865387, + -0.009729454293847084, + 0.02976488694548607, + 0.003214695258066058, + 0.08480219542980194, + -0.07590389996767044, + -0.03980306163430214, + -0.03076804056763649, + 9.08661459106952e-05, + -0.09916650503873825, + -0.03893926367163658, + -0.08203962445259094, + 0.004931023810058832, + 0.0219572726637125, + 0.08467081934213638, + 0.0327945351600647, + -0.028262590989470482, + -0.034741178154945374, + 0.06794881075620651, + -0.09795721620321274, + -0.05101563036441803, + -0.05624568462371826, + -0.039105698466300964, + -0.03876352682709694, + -0.021186018362641335, + -0.016098765656352043, + 0.03128112852573395, + 0.0057232072576880455, + -0.0034179522190243006, + 0.009555469267070293, + 0.03380557522177696, + 0.029139580205082893, + -0.05802570655941963, + -0.009880581870675087, + 0.04145585373044014, + 0.004467353690415621, + 0.0022677273955196142, + -0.001664825133047998, + 0.02723795548081398, + 0.025263851508498192, + -0.028398660942912102, + 0.051417455077171326, + 0.08318544924259186, + 0.08239520341157913, + 0.0005193138495087624, + -0.04756971076130867, + 0.02649657242000103, + -0.02253706194460392, + -0.043822091072797775, + -0.18189013004302979, + 0.050743453204631805, + -0.046593308448791504, + 0.06275926530361176, + 0.06233008950948715, + 0.06319867819547653, + 0.01713712327182293, + -0.08014414459466934, + 0.0003453812678344548, + -0.04428311809897423, + -0.1753794550895691, + 0.01172519102692604, + 0.03519149497151375, + -0.03976104035973549, + -0.09632445126771927, + -2.447972266128443e-34, + 0.05827838182449341, + -0.010265824384987354, + -0.013684126548469067, + -0.028086809441447258, + 0.003904173616319895, + 0.03411611542105675, + 0.013720648363232613, + 0.019175730645656586, + 0.04855858534574509, + 0.04931195080280304, + -0.08762028813362122, + -0.020239314064383507, + 0.011590945534408092, + -0.046511147171258926, + 0.02872653491795063, + -0.12758243083953857, + 0.07903067022562027, + -0.008899279870092869, + -0.04034062474966049, + 0.08250036090612411, + -0.0076749371364712715, + -0.07073026895523071, + -0.12127121537923813, + 0.013310302048921585, + 0.007041063625365496, + 0.05821012333035469, + 0.04811441898345947, + 0.027742309495806694, + -0.03554527461528778, + 0.002539620269089937, + -0.07988802343606949, + -0.013544810004532337, + 0.028759688138961792, + 0.0013924316735938191, + -0.06405001878738403, + 0.13737863302230835, + -0.015924949198961258, + -0.04827822372317314, + -0.08232735097408295, + 0.0009292508475482464, + -0.009167289361357689, + -0.02316787838935852, + 0.08212082833051682, + 0.05638260766863823, + 0.010589265264570713, + -0.029568076133728027, + -0.07044339179992676, + 0.08158906549215317, + -0.05050929635763168, + 0.014430754818022251, + 0.04768916219472885, + 0.024111755192279816, + -0.0266067273914814, + 0.09732966870069504, + -0.04793823882937431, + 0.018604358658194542, + 0.020828677341341972, + -0.029427044093608856, + 0.010069007985293865, + 0.0254510547965765, + 0.015758516266942024, + 0.037708453834056854, + -0.0816890224814415, + 0.07553623616695404, + 0.02349545620381832, + -0.13431395590305328, + -0.024945957586169243, + -0.03862499073147774, + -0.0004982653772458434, + -0.017837392166256905, + -0.04800315946340561, + 0.004574488382786512, + -0.04902854189276695, + 0.051302239298820496, + -0.004793057218194008, + -0.04950689896941185, + 0.059124905616045, + 0.05493249371647835, + 0.007862124592065811, + 0.02439078316092491, + 0.025150667876005173, + -0.041030872613191605, + -0.014241806231439114, + 0.15008974075317383, + -0.001697910251095891, + 0.03686327487230301, + -0.040009792894124985, + -0.06830890476703644, + 0.008830718696117401, + 0.07453135401010513, + 0.002750835847109556, + 0.020226240158081055, + -0.08576717972755432, + 0.0013944582315161824, + -0.1179780587553978, + -2.0969217473520985e-08, + 0.00034426269121468067, + 0.07610152661800385, + -0.046516720205545425, + -0.002112515037879348, + -0.03621768206357956, + -0.01918565295636654, + 0.0510522685945034, + -0.04724730923771858, + -0.06787319481372833, + 0.051155392080545425, + 0.01268603466451168, + 0.03634040057659149, + -0.06583114713430405, + 0.08576317131519318, + -0.06060590595006943, + 0.04119788110256195, + -0.02065458707511425, + -0.005281356163322926, + -0.02307868003845215, + 0.004794788081198931, + 0.015759320929646492, + -0.0021276723127812147, + 0.025002188980579376, + -0.06113272160291672, + 0.04253793880343437, + 0.014444387517869473, + -0.0303156990557909, + 0.023763393983244896, + 0.03876626119017601, + 0.015968723222613335, + -0.017407938838005066, + 0.09637358784675598, + -0.04591485485434532, + 0.03241807222366333, + 0.025451600551605225, + -0.049054812639951706, + -0.007523517124354839, + 0.055052485316991806, + 0.027504492551088333, + 0.08868078887462616, + 0.017376989126205444, + 0.07626329362392426, + 0.04338270053267479, + 0.003013239474967122, + 0.016352657228708267, + 0.013607056811451912, + 0.04267386347055435, + -0.012794839218258858, + -0.04455442354083061, + -0.036180246621370316, + -0.06834301352500916, + -0.010037257336080074, + -0.01200238149613142, + 0.06390226632356644, + 0.014066825620830059, + -0.0017538999672979116, + 0.030420152470469475, + -0.009202878922224045, + -0.057985253632068634, + 0.04349217936396599, + 0.12245853990316391, + -0.006213467102497816, + 0.024143900722265244, + 0.007429368328303099 + ], + "robot-bold||automaton,artificial intelligence,ai": [ + -0.05332885682582855, + -0.03999445587396622, + -0.019440511241555214, + 0.012269286438822746, + 0.034308213740587234, + -0.049262337386608124, + 0.051805853843688965, + -0.026529507711529732, + -0.08819261193275452, + 0.02423364669084549, + 0.029158221557736397, + -0.028409870341420174, + 0.04014352709054947, + -0.00036060900310985744, + -0.010900935158133507, + 0.0784209743142128, + 0.00866344291716814, + -0.004128349479287863, + -0.08939100056886673, + -0.0399261936545372, + 0.012425645254552364, + 0.04492444172501564, + 0.03930330276489258, + 0.009622213430702686, + 0.026825571432709694, + 0.06037300452589989, + 0.06783086061477661, + -0.06209302321076393, + 0.0011785930255427957, + -0.063372403383255, + 0.002355886623263359, + -0.01934244856238365, + 0.11687805503606796, + 0.00936427153646946, + 0.07510820031166077, + 0.0592614971101284, + -0.09395923465490341, + 0.015191578306257725, + 0.03975466266274452, + 0.013305182568728924, + 0.036116983741521835, + -0.06132375821471214, + 0.066522017121315, + -0.029612915590405464, + 0.010089918039739132, + 0.0606788694858551, + -0.09433061629533768, + -0.03953218460083008, + 0.06731262058019638, + 0.02373112365603447, + -0.13000163435935974, + -0.09253229200839996, + -0.0462106391787529, + -0.010561139322817326, + -0.012912958860397339, + 0.03471963480114937, + -0.014577832072973251, + 0.0053777676075696945, + 0.0433739572763443, + -0.07171650975942612, + 0.04962226375937462, + -0.018609998747706413, + 0.07971286028623581, + 0.02995959483087063, + 0.09227130562067032, + 0.03766126558184624, + -0.07734787464141846, + -0.05623085796833038, + -0.03433447331190109, + 0.09976400434970856, + 0.03338078781962395, + 0.04447704926133156, + 0.029336344450712204, + -0.010420860722661018, + -0.014680749736726284, + -0.017571203410625458, + 0.04408276081085205, + -0.025403039529919624, + 0.00777091970667243, + -0.07425690442323685, + -0.0724063515663147, + -0.10932161659002304, + -0.06451165676116943, + 0.04471196234226227, + -0.03766525909304619, + 0.00628111744299531, + -0.07824740558862686, + -0.03431089594960213, + 0.019704390317201614, + -0.005896960850805044, + -0.03698399290442467, + -0.0729362890124321, + -0.039308372884988785, + 0.004159361124038696, + -0.057586658746004105, + 0.055419377982616425, + 0.024109065532684326, + -0.08232533186674118, + -0.05137861147522926, + 0.08181346952915192, + 0.01709136925637722, + 0.05447849631309509, + 0.03023400902748108, + 0.008812315762043, + -0.050665926188230515, + 0.013994165696203709, + 0.018907884135842323, + -0.01633744314312935, + 0.06885278970003128, + -0.02783423289656639, + 0.010822241194546223, + -0.1050703227519989, + 0.05809874087572098, + -0.027704661712050438, + -0.02941896580159664, + -0.01265233475714922, + -0.011294049210846424, + 0.017225027084350586, + 0.07767852395772934, + 0.05299133062362671, + 0.05366009846329689, + -0.05027821287512779, + -0.034632954746484756, + 0.04030802845954895, + 0.09588457643985748, + -0.006967630703002214, + 0.004182134289294481, + -2.0752300328981515e-33, + 0.019441457465291023, + 0.04886753484606743, + -0.007691073697060347, + 0.07572761178016663, + 0.018304038792848587, + -0.036627668887376785, + -0.024482687935233116, + -0.03831399604678154, + -0.05851062014698982, + 0.052200473845005035, + -0.04054009169340134, + 0.06789511442184448, + -0.07270800322294235, + 0.07053598016500473, + 0.005689081735908985, + -0.06538351625204086, + 0.03895530477166176, + -0.023235954344272614, + -0.11891426146030426, + 0.0511377789080143, + 0.05988745763897896, + 0.07737145572900772, + -0.0728997215628624, + -0.06526939570903778, + -0.007958900183439255, + -0.0004420049663167447, + 0.05304095521569252, + -0.02002030424773693, + -0.012485149316489697, + 0.040902093052864075, + -0.008660378865897655, + 0.12207310646772385, + -0.013769551180303097, + 0.10782840847969055, + -0.033914726227521896, + 0.04672616720199585, + -0.08642180263996124, + -0.012049130164086819, + -0.0057459631934762, + 0.023088887333869934, + -0.016539786010980606, + -0.014574434608221054, + -0.019357994198799133, + -0.035701725631952286, + 0.003212932962924242, + 0.00994074996560812, + 0.019044185057282448, + -0.021615710109472275, + 0.0018537414725869894, + 0.010004647076129913, + 0.006230880971997976, + 0.018151413649320602, + 0.04014473780989647, + -0.025320861488580704, + 0.09457782655954361, + -0.05024406686425209, + -0.0037588847335428, + 0.08814992010593414, + -0.015782661736011505, + -0.005345453042536974, + 0.044698316603899, + 0.012985242530703545, + 0.02215229533612728, + 0.03043878823518753, + -0.028637677431106567, + 0.0751880556344986, + -0.009438271634280682, + 0.016919903457164764, + 0.16022241115570068, + 0.04245247691869736, + 0.02706095576286316, + 0.026193533092737198, + 0.002407568274065852, + 0.03279901668429375, + -0.02914765290915966, + 0.00397764565423131, + -0.0035277598071843386, + -0.06344172358512878, + 0.022934360429644585, + -0.07220303267240524, + -0.13503213226795197, + 0.02704889141023159, + -0.0734148770570755, + 0.026868432760238647, + 0.04825397580862045, + 0.012753390707075596, + -0.030206600204110146, + -0.040348201990127563, + -0.035764891654253006, + 0.03319232538342476, + -0.09129168838262558, + -0.05313955247402191, + -0.03954042121767998, + 0.05239950865507126, + -0.1011543944478035, + -5.952782830268241e-34, + 0.028413953259587288, + 0.06796857714653015, + -0.04660815745592117, + 0.0069677988067269325, + -0.019957419484853745, + 0.0003778025566134602, + -0.04210979864001274, + 0.03739481046795845, + 0.020833482965826988, + 0.06972399353981018, + -0.03756474703550339, + -0.025854170322418213, + -0.027714140713214874, + -0.0144887063652277, + 0.04010378196835518, + -0.0005087390309199691, + 0.060700803995132446, + -0.03060213290154934, + 0.013113940134644508, + 0.009393768385052681, + -0.053027279675006866, + 0.03227654844522476, + -0.09612394124269485, + 0.09572073072195053, + 0.014120749197900295, + 0.044389210641384125, + -0.006686453707516193, + 0.0037145100068300962, + -0.06777132302522659, + 0.04787749424576759, + -0.07127945125102997, + -0.05218043923377991, + 0.02199501171708107, + 0.10230309516191483, + -0.0157289020717144, + 0.054592035710811615, + -0.029358869418501854, + -0.05627358332276344, + 0.021187467500567436, + -0.026709772646427155, + 0.03171703219413757, + 0.02356513775885105, + -0.059497468173503876, + 0.017494652420282364, + -0.03408612310886383, + -0.04281015321612358, + -0.07575678825378418, + 0.03447598218917847, + -0.03711584582924843, + 0.007476024329662323, + -0.02430219016969204, + -0.04013236239552498, + 0.00010651309275999665, + -0.06161157414317131, + -0.08525028824806213, + 0.03252395987510681, + -0.0016793248942121863, + 0.0160805806517601, + -0.03045016899704933, + 0.08875641971826553, + -0.05045406520366669, + -0.024116497486829758, + 0.004235381726175547, + 0.05551557615399361, + -0.022778701037168503, + -0.01789514161646366, + -0.01485888659954071, + 0.009775073267519474, + 0.06149962544441223, + -0.05530337616801262, + 0.08049777150154114, + 0.056661080569028854, + 0.04302499070763588, + 0.11400190740823746, + 0.05426650121808052, + -0.04872940480709076, + -0.01686917245388031, + 0.024524245411157608, + 0.04584566876292229, + 0.006796181667596102, + -0.07195493578910828, + -0.022593170404434204, + -0.013407642021775246, + 0.138933002948761, + -0.11422298848628998, + 0.08763303607702255, + -0.0693894475698471, + 0.032995402812957764, + 0.02290709875524044, + 0.0248535368591547, + -0.02972308173775673, + 0.07067380100488663, + 0.00815050583332777, + -0.011300148442387581, + -0.12608088552951813, + -1.891407386267474e-08, + -0.012305021286010742, + -0.0001373457780573517, + -0.0022595145273953676, + -0.027616916224360466, + 0.04772139713168144, + 0.0013618218945339322, + -0.0596788227558136, + -0.0654861330986023, + -0.07572537660598755, + -0.040532998740673065, + 0.06694669276475906, + 0.017675235867500305, + -0.03853164613246918, + -0.037515122443437576, + -0.022042393684387207, + 0.03637167811393738, + -0.04957961663603783, + 0.015519305132329464, + -0.018847592175006866, + -0.0037896274589002132, + 0.047621700912714005, + 0.011486494913697243, + -0.004963623825460672, + -0.006183096207678318, + -0.004686439875513315, + 0.009855174459517002, + -0.09560776501893997, + -0.014106483198702335, + -0.03992782533168793, + 0.09175674617290497, + 0.02288563922047615, + 0.005970443598926067, + 0.007793018128722906, + 0.023481477051973343, + -0.040106162428855896, + 0.015882279723882675, + 0.02934349700808525, + -0.07619374990463257, + -0.04928188771009445, + 0.06461937725543976, + 0.019574711099267006, + 0.07165031135082245, + -0.03732822462916374, + -0.07658334076404572, + 0.0018067262135446072, + 0.019880330190062523, + -0.014572263695299625, + -0.15372522175312042, + -0.054714031517505646, + -0.09661334753036499, + -0.009027069434523582, + -0.014567874372005463, + -0.019791211932897568, + 0.09977883845567703, + 0.06051598861813545, + -0.05735403671860695, + 0.051080480217933655, + -0.020961152389645576, + -0.04389781877398491, + 0.06734771281480789, + 0.10005523264408112, + 0.07019512355327606, + 0.056251175701618195, + -0.027567394077777863 + ], + "rocket-bold||spaceship,launch,deployment,rocketship": [ + 0.028588011860847473, + -0.040589429438114166, + 0.020800817757844925, + -0.011882438324391842, + -0.012542902491986752, + 0.011843730695545673, + 0.05675848573446274, + -0.03277932479977608, + -0.04409991204738617, + -0.002749331761151552, + 0.011401963420212269, + 0.04491933435201645, + 0.02426382526755333, + -0.03360166400671005, + -0.014961971901357174, + 0.06199825555086136, + 0.050004612654447556, + -0.013138179667294025, + -0.018126966431736946, + -0.00011058094969484955, + 0.04629651457071304, + 0.022631872445344925, + 0.014464677311480045, + 0.08899135887622833, + 0.022787965834140778, + 0.031010717153549194, + 0.030822979286313057, + 0.03390296548604965, + -0.032530151307582855, + -0.07655476778745651, + -0.0028572455048561096, + -0.02755272388458252, + 0.028039701282978058, + 0.03319765627384186, + 0.09807410836219788, + 0.05871068686246872, + -0.013481286354362965, + -0.022925347089767456, + -0.0003887666389346123, + 0.013147763907909393, + 0.027242470532655716, + -0.08212513476610184, + -0.020029857754707336, + 0.11352916061878204, + -0.033126670867204666, + -0.044498004019260406, + -0.0777469351887703, + -0.09358220547437668, + 0.06802686303853989, + 0.03579194098711014, + -0.07683200389146805, + -0.12517984211444855, + -0.0777636468410492, + -0.020992571488022804, + 0.037107519805431366, + 0.02942020632326603, + -0.06815224140882492, + 0.0132480813190341, + 0.0703391507267952, + -0.06570450216531754, + -0.020331233739852905, + 0.01949300430715084, + 0.05212283879518509, + 0.030397379770874977, + -0.008262463845312595, + 0.002047187415882945, + -0.0021151909604668617, + 0.02220115065574646, + -0.007872361689805984, + 0.051690470427274704, + 0.057528529316186905, + 0.06389869749546051, + -0.00493453536182642, + -0.03010975569486618, + -0.06968092173337936, + 0.018398337066173553, + 0.07036100327968597, + 0.05945360288023949, + 0.0008078908431343734, + -0.07292363047599792, + -0.00897220615297556, + -0.10566479712724686, + -0.15023855865001678, + -0.004863298032432795, + -0.000425259378971532, + 0.011247964575886726, + -0.009980687871575356, + -0.050481196492910385, + 0.02070724219083786, + 0.030842391774058342, + -0.10198686271905899, + -0.07641379535198212, + 0.08063696324825287, + 0.027912048622965813, + -0.13395822048187256, + -0.017130905762314796, + 0.02393033169209957, + -0.06057536602020264, + -0.028905712068080902, + 0.03915568068623543, + 0.020977478474378586, + 0.038398027420043945, + 0.05608323961496353, + -0.005504956468939781, + -0.09360767155885696, + -0.00891802366822958, + -0.03199787437915802, + 0.01177490595728159, + 0.008183401077985764, + -0.07808366417884827, + -0.008180086500942707, + -0.0738295242190361, + -0.045482661575078964, + -0.014927677810192108, + -0.09974230825901031, + -0.015005881898105145, + -0.12280691415071487, + -0.051086414605379105, + 0.10529948770999908, + -0.011119404807686806, + 0.021683601662516594, + -0.08602984994649887, + 0.06329295784235, + -0.020313551649451256, + -0.05322335660457611, + -0.021558431908488274, + 0.05089932307600975, + -2.799821281134318e-33, + 0.05418380722403526, + 0.005481278989464045, + -0.048950258642435074, + 0.1335751712322235, + 0.05014374852180481, + 0.012874838896095753, + -0.06358914822340012, + -0.01922791078686714, + -0.12006784975528717, + 0.004696642979979515, + 0.04683045670390129, + 0.040130309760570526, + -0.01904493384063244, + 0.08015605807304382, + 0.031167756766080856, + -0.06727515906095505, + 0.05343467369675636, + 0.022251401096582413, + -0.06786497682332993, + 0.00094876519870013, + -0.04043961316347122, + 0.06575752049684525, + -0.10439899563789368, + -0.026095105335116386, + 0.01086487341672182, + -0.035110123455524445, + 0.004657418467104435, + -0.0006560821202583611, + -0.08003749698400497, + 0.05614811182022095, + -0.016605468466877937, + 0.08541354537010193, + 0.033605653792619705, + 0.009939463809132576, + 0.024234211072325706, + 0.0183606818318367, + -0.07002704590559006, + -0.06522472947835922, + -0.03173934668302536, + 0.02312430366873741, + -0.12573480606079102, + -0.04892561957240105, + -0.024337714537978172, + 0.005245726089924574, + -0.0012447168119251728, + 0.0917484238743782, + -0.015036331489682198, + -0.0523502454161644, + 0.09058571606874466, + 0.02791505679488182, + -0.02613181620836258, + -0.025270933285355568, + 0.06045941635966301, + -0.008373982273042202, + 0.0930221676826477, + -0.05873063951730728, + 0.021295661106705666, + 0.058724287897348404, + 0.012329301796853542, + -0.028313789516687393, + -0.019085228443145752, + 0.03547991067171097, + 0.04273243993520737, + 0.01602964848279953, + 0.04780612140893936, + 0.06116827577352524, + -0.05429185926914215, + 0.005980587098747492, + 0.07063499838113785, + 0.05429806187748909, + -0.007491070311516523, + 0.06420715898275375, + 0.005274641793221235, + 0.022059792652726173, + 0.0458151139318943, + -0.023003101348876953, + 0.016450945287942886, + -0.015160242095589638, + -0.03419221192598343, + -0.02907366305589676, + -0.07017429172992706, + -0.019832327961921692, + -0.06863553076982498, + 0.08376345783472061, + 0.038593702018260956, + 0.006506805773824453, + -0.00440228171646595, + -0.011757852509617805, + -0.03668394312262535, + 0.07646893709897995, + -0.08347673714160919, + -0.02086270973086357, + -0.032001618295907974, + -0.006937677972018719, + -0.09542299807071686, + 3.1677084012714767e-34, + 0.08300899714231491, + 0.07760269194841385, + -0.00688212551176548, + -0.012699204497039318, + -0.033786479383707047, + 0.05286549776792526, + 0.08883704245090485, + -0.006367601454257965, + -0.0734395906329155, + 0.04101704806089401, + -0.031758472323417664, + -0.020298773422837257, + -0.04292653128504753, + -0.057659812271595, + -0.03881213814020157, + 0.011409190483391285, + 0.050463855266571045, + 0.043645959347486496, + 0.01911437138915062, + 0.018576597794890404, + -0.03221229463815689, + -0.04917588829994202, + -0.0848105326294899, + 0.11202690005302429, + 0.03089025616645813, + -0.0018345402786508203, + 0.07214861363172531, + 0.0333908274769783, + -0.08995648473501205, + -0.02377907559275627, + 0.022260436788201332, + 0.03751608729362488, + -0.009157787077128887, + 0.04445485770702362, + -0.04809056594967842, + 0.06638967990875244, + 0.03852170333266258, + 0.02941640093922615, + 0.04510056972503662, + -0.044269490987062454, + -0.04389948025345802, + -0.017081841826438904, + 0.022638734430074692, + 0.07907970994710922, + -0.08499021083116531, + -0.023657936602830887, + 0.010818173177540302, + -0.01127355732023716, + -0.021328672766685486, + 0.10410502552986145, + -0.023902466520667076, + -0.07630132883787155, + -0.011566019617021084, + -0.015790214762091637, + -0.003823816543444991, + -0.04932564124464989, + -0.05255422368645668, + -0.01587381400167942, + 0.009749055840075016, + 0.07208433002233505, + 0.07824888825416565, + -0.012955420650541782, + 0.03726062551140785, + -0.001240808516740799, + -0.08706589788198471, + -0.10944228619337082, + 0.03434646874666214, + 0.038641005754470825, + -0.03284052014350891, + 0.011348312720656395, + 0.026912370696663857, + -0.009744483046233654, + -0.00894252210855484, + 0.08197285979986191, + -0.023023324087262154, + -0.0751117542386055, + 0.035535749047994614, + 0.00019278173567727208, + -0.008010724559426308, + 0.0414290651679039, + 0.046695079654455185, + -0.010623417794704437, + -0.03877532109618187, + 0.012654823251068592, + -0.05203884840011597, + 0.028495443984866142, + -0.004347170703113079, + 0.08442109823226929, + 0.017951134592294693, + -0.014485660009086132, + -0.005224950145930052, + 0.05001458153128624, + 0.010457336902618408, + 0.0016408992232754827, + -0.055405523627996445, + -1.7970302579328745e-08, + -0.014483961276710033, + -0.010909516364336014, + -0.00044871686259284616, + -0.03900753706693649, + 0.004880813881754875, + -0.04445139691233635, + -0.014910726808011532, + -0.0381707064807415, + -0.03974130004644394, + -0.06858274340629578, + 0.01792594976723194, + 0.00898156501352787, + -0.10232160240411758, + 0.03715871274471283, + -0.014077786356210709, + 0.05964510142803192, + -0.050782833248376846, + 0.09861569106578827, + -0.03659718856215477, + -0.038393933326005936, + -0.07358907163143158, + 0.04585785046219826, + 0.04394445940852165, + -0.016108563169836998, + -0.011458934284746647, + 0.048625532537698746, + -0.032580047845840454, + 0.01059862319380045, + 0.09762591123580933, + 0.021144872531294823, + 0.08114601671695709, + 0.02250424213707447, + -0.03699685260653496, + 0.012671191245317459, + -0.07420170307159424, + 0.009180419147014618, + 0.01834922842681408, + 0.04240734502673149, + 0.018203841522336006, + 0.08957192301750183, + -0.009156335145235062, + 0.0441698357462883, + -0.002020573941990733, + 0.012481357902288437, + -0.03165918588638306, + 0.06815370172262192, + -0.012998553924262524, + -0.04846097156405449, + -0.15337195992469788, + -0.10262882709503174, + 0.014523652382194996, + -0.04993535950779915, + -0.06300157308578491, + 0.08756395429372787, + -0.02416582778096199, + 0.005823062267154455, + 0.033004987984895706, + 0.10293648391962051, + 0.045583099126815796, + 0.02049705758690834, + 0.09257010370492935, + 0.011792981065809727, + 0.039389435201883316, + 0.030686939135193825 + ], + "rocket-launch-bold||*updated*,spaceship,flying,blastoff,deployment,rocketship": [ + 0.005176288075745106, + -0.02505655400454998, + 0.018077069893479347, + -0.018802864477038383, + 0.010244901292026043, + 0.009161735884845257, + 0.050425026565790176, + -0.04912042245268822, + -0.07410294562578201, + 0.033318549394607544, + 0.014697892591357231, + 0.051598478108644485, + -0.011357284151017666, + -0.04666334018111229, + -0.020375078544020653, + 0.06983683258295059, + 0.044139742851257324, + -0.012117634527385235, + -0.024431241676211357, + 0.015219108201563358, + 0.027678076177835464, + 0.0428292453289032, + 0.014222689904272556, + 0.11596953123807907, + 0.05668742209672928, + 0.03968273103237152, + -0.003532977541908622, + 0.015013881959021091, + -0.06076458841562271, + -0.08845500648021698, + -0.0034676510840654373, + 0.02389425039291382, + 0.051131557673215866, + -0.0011326251551508904, + 0.08672445267438889, + 0.026994790881872177, + -0.012037303298711777, + -0.0214486513286829, + 0.005612857174128294, + 0.01668437011539936, + 0.010562622919678688, + -0.08737796545028687, + -0.020653823390603065, + 0.12179729342460632, + -0.054283831268548965, + -0.025355808436870575, + -0.08813092112541199, + -0.09740714728832245, + 0.057433754205703735, + 0.05657346546649933, + -0.07176725566387177, + -0.13875645399093628, + -0.08966554701328278, + -0.04179268330335617, + 0.058303918689489365, + 0.003402337897568941, + -0.04912932962179184, + -0.0023841492366045713, + 0.06971845775842667, + -0.07814301550388336, + -0.01932748407125473, + 0.019779736176133156, + 0.053155165165662766, + 0.047005150467157364, + -0.021403156220912933, + -0.014088456518948078, + -0.005822563543915749, + -0.02278672344982624, + 0.007280257996171713, + 0.030470464378595352, + 0.034786663949489594, + 0.07492736726999283, + 0.007015718147158623, + -0.03881353512406349, + -0.09127432852983475, + 0.02130793407559395, + 0.07428518682718277, + 0.05355360358953476, + 0.007981621660292149, + -0.08182508498430252, + 0.011814642697572708, + -0.13433578610420227, + -0.1581626534461975, + -0.04118671640753746, + 0.019105592742562294, + 0.032311346381902695, + -0.015314693562686443, + -0.050651632249355316, + 0.004997973795980215, + 0.038791339844465256, + -0.11167845875024796, + -0.08764389157295227, + 0.0928177461028099, + 0.019625065848231316, + -0.1550281047821045, + 0.02078266255557537, + 0.006049970630556345, + -0.08995183557271957, + -0.028625257313251495, + 0.06046082079410553, + 0.020046062767505646, + 0.045862309634685516, + 0.06298375874757767, + 0.011994385160505772, + -0.07837514579296112, + -0.010466158390045166, + -0.01713390089571476, + 0.02527173049747944, + 0.009277735836803913, + -0.06416270136833191, + -0.0125128123909235, + -0.08707612007856369, + -0.04919126257300377, + -0.05584670975804329, + -0.08629168570041656, + 0.00020363301155157387, + -0.09761010855436325, + -0.026654906570911407, + 0.07753127068281174, + -0.005462935194373131, + 0.05767614021897316, + -0.07714201509952545, + 0.04524296522140503, + -0.028952300548553467, + -0.075800321996212, + -0.02292918972671032, + 0.04464472085237503, + -3.4218684633474945e-33, + 0.057432811707258224, + -0.017209425568580627, + -0.046706900000572205, + 0.13564223051071167, + 0.052404362708330154, + -0.01752627082169056, + -0.07339396327733994, + -0.0361006036400795, + -0.09411702305078506, + 0.014181399717926979, + 0.030723784118890762, + 0.059447843581438065, + -0.021143745630979538, + 0.07899373024702072, + 0.04597939923405647, + -0.09207545220851898, + 0.04779623821377754, + 0.02328241802752018, + -0.037443529814481735, + 0.021829839795827866, + -0.013742231763899326, + 0.032965388149023056, + -0.10026304423809052, + -0.03632862865924835, + 0.040245674550533295, + -0.01963036134839058, + -0.005296915769577026, + -0.004869622644037008, + -0.0696033164858818, + 0.049530867487192154, + -0.01173052005469799, + 0.08147913217544556, + 0.021555645391345024, + -0.008496474474668503, + 0.011669392697513103, + -0.01779559813439846, + -0.09511426091194153, + -0.09264446794986725, + -0.03527135029435158, + -0.013734458014369011, + -0.12525033950805664, + -0.050821322947740555, + -0.07984955608844757, + -0.021264776587486267, + 0.038125041872262955, + 0.07453469187021255, + -0.023773761466145515, + -0.0409819558262825, + 0.09581349790096283, + 0.025255518034100533, + -0.03310660272836685, + 0.017372818663716316, + 0.022386377677321434, + -0.02487460896372795, + 0.049417901784181595, + -0.07198985666036606, + 0.018797488883137703, + 0.041780855506658554, + 0.030939342454075813, + -0.01976262591779232, + 0.021840618923306465, + 0.020526550710201263, + 0.029117068275809288, + -0.021945258602499962, + 0.030728265643119812, + 0.07406696677207947, + -0.02819043956696987, + -0.0007661826093681157, + 0.05394121631979942, + 0.0636066347360611, + -0.019544588401913643, + 0.044574346393346786, + 0.030445700511336327, + 0.05839576944708824, + 0.03739559277892113, + -0.023255236446857452, + -0.01937991939485073, + -0.0162876658141613, + -0.03234580159187317, + -0.022962847724556923, + -0.01925726793706417, + -0.041017796844244, + -0.05595555528998375, + 0.08196534216403961, + 0.03643414005637169, + 0.005274564027786255, + -0.009091719053685665, + -0.005119065288454294, + -0.04896972328424454, + 0.05810793861746788, + -0.07792504876852036, + -0.019500967115163803, + -0.038681939244270325, + -0.019532479345798492, + -0.08670663088560104, + -9.286019662412208e-35, + 0.08250319957733154, + 0.06087201461195946, + -0.05346238985657692, + -0.015431107953190804, + -0.053199123591184616, + 0.052468374371528625, + 0.050849225372076035, + 0.02114851027727127, + -0.040326133370399475, + 0.021694522351026535, + -0.034876350313425064, + -0.0017575382953509688, + -0.03240850940346718, + -0.0676162987947464, + -0.019824707880616188, + 0.010151187889277935, + 0.04259296879172325, + 0.022932788357138634, + 0.002942135324701667, + 0.038264136761426926, + -0.00034712633350864053, + -0.03575519472360611, + -0.09427022188901901, + 0.08314196765422821, + 0.037842899560928345, + -0.007376194465905428, + 0.08159472793340683, + 0.0361105278134346, + -0.04545936360955238, + -0.05569921433925629, + 0.014908787794411182, + 0.03054899536073208, + 0.00044468583655543625, + 0.04477005824446678, + -0.022276772186160088, + 0.06035671755671501, + 0.0734490230679512, + -0.015983743593096733, + 0.019676240161061287, + -0.02521584741771221, + 0.00014157913392409682, + -0.0033970889635384083, + 0.04737386852502823, + 0.0759190171957016, + -0.057774368673563004, + 0.0005595476250164211, + -0.016314145177602768, + 0.030269114300608635, + -0.03794507309794426, + 0.07464130222797394, + -0.02048582397401333, + -0.07732044905424118, + -0.02887050434947014, + -0.021556401625275612, + 0.012684497982263565, + -0.014719844795763493, + -0.036724869161844254, + -0.017608651891350746, + 0.014079630374908447, + 0.04896903410553932, + 0.05880865082144737, + -0.009356237947940826, + 0.0407501645386219, + 0.012446709908545017, + -0.08812464773654938, + -0.0996624231338501, + 0.03532930091023445, + 0.033937081694602966, + -0.009568451903760433, + 0.01101992093026638, + 0.027583226561546326, + -0.04217679426074028, + -0.028655096888542175, + 0.04762941971421242, + -0.02655838243663311, + -0.07758305966854095, + 0.0538812093436718, + -0.013793669641017914, + 0.000523311085999012, + 0.03989926353096962, + 0.051377929747104645, + 0.01050239335745573, + -0.012457648292183876, + 0.008811989799141884, + -0.03353779762983322, + 0.059141580015420914, + -0.0167668629437685, + 0.09381040185689926, + 0.01017471682280302, + -0.017917316406965256, + -0.03971319645643234, + 0.03417179360985756, + 0.024864066392183304, + 0.030881235376000404, + -0.03524475544691086, + -2.2154187817591264e-08, + -0.000638619705568999, + 0.015530986711382866, + -0.0138851972296834, + -0.039336711168289185, + 0.053914643824100494, + -0.021143296733498573, + -0.029070289805531502, + -0.01871766708791256, + -0.027486078441143036, + -0.09988542646169662, + 0.031845975667238235, + 0.009808729402720928, + -0.07112577557563782, + 0.05147045850753784, + 0.01917973719537258, + 0.051639046519994736, + -0.07727393507957458, + 0.12453611940145493, + -0.02069941535592079, + -0.03766383230686188, + -0.071757473051548, + 0.053496457636356354, + 0.02631741762161255, + -0.03906560316681862, + -0.003188278991729021, + 0.03972513601183891, + -0.039727624505758286, + 0.01629713922739029, + 0.07760975509881973, + 0.010083671659231186, + 0.06980663537979126, + 0.03692494332790375, + -0.022720566019415855, + -0.013120565563440323, + -0.08491078019142151, + 0.020946817472577095, + 0.027618343010544777, + 0.05579402297735214, + 0.016260989010334015, + 0.08607631176710129, + 0.01456729881465435, + 0.04379367083311081, + 0.02080504037439823, + 0.02097376063466072, + -0.05461370572447777, + 0.041711896657943726, + -0.009512895718216896, + -0.06177019700407982, + -0.14876846969127655, + -0.12420227378606796, + 0.008985593914985657, + -0.01029456127434969, + -0.039726532995700836, + 0.07176391780376434, + 0.006241524126380682, + 0.04516628012061119, + 0.008996069431304932, + 0.05911717191338539, + 0.060892485082149506, + 0.0017820402281358838, + 0.10412807762622833, + -0.016392897814512253, + 0.003355825785547495, + 0.05282236635684967 + ], + "rows-bold||2,shapes,polygons,box,stack,list,table,cards": [ + 0.040801502764225006, + -0.01549438014626503, + -0.07871028035879135, + 0.06265607476234436, + -0.011729602701961994, + -0.006844892166554928, + 0.012156366370618343, + -0.04996005445718765, + -0.002037963829934597, + -0.004030541051179171, + -0.01885688677430153, + -0.02071239799261093, + 0.03372116759419441, + -0.05255249887704849, + -0.015743723139166832, + 0.04050619900226593, + 0.016043730080127716, + 0.030710779130458832, + 0.01570320688188076, + 0.034441027790308, + 0.026692895218729973, + -0.002310521434992552, + -0.0010559383081272244, + 0.007178197614848614, + 0.01638728566467762, + 0.086756631731987, + 0.045702822506427765, + 0.01060694083571434, + 0.024671634659171104, + -0.08850915729999542, + -0.018436366692185402, + 0.009496569633483887, + 0.08469241857528687, + 0.07768477499485016, + -0.0032574443612247705, + -0.034585028886795044, + -0.042483262717723846, + 0.006863499991595745, + 0.04490138217806816, + 0.07717930525541306, + -0.0027986818458884954, + -0.10330278426408768, + 0.04427117481827736, + 0.0059930612333118916, + -0.03520481288433075, + -0.01754421554505825, + -0.08962596207857132, + -0.048406846821308136, + 0.006241245195269585, + -0.07733048498630524, + -0.036032404750585556, + -0.052798327058553696, + -0.07397296279668808, + -0.048100169748067856, + 0.0049581401981413364, + -0.01027918141335249, + -0.03632780537009239, + -0.05248560756444931, + 0.012960557825863361, + -0.012011115439236164, + 0.00944291241466999, + 0.0252994317561388, + 0.06304045021533966, + 0.04715079069137573, + 0.00728187570348382, + 0.051203709095716476, + -0.037964869290590286, + 0.04645199328660965, + -0.03469047695398331, + 0.029177678748965263, + 0.05298367515206337, + 0.12556709349155426, + -0.025553805753588676, + -0.05436931550502777, + -0.055670179426670074, + -0.025184696540236473, + 0.044052477926015854, + -0.053437672555446625, + -0.012891336344182491, + -0.00868472270667553, + -0.13270273804664612, + 0.008498533628880978, + -0.011731085367500782, + 0.05870746076107025, + 0.003350888378918171, + 0.07374382764101028, + -0.041804783046245575, + -0.0014546974562108517, + -0.09968915581703186, + -0.05896406248211861, + -0.013320758007466793, + 0.03426465019583702, + 0.047701455652713776, + 0.08077938854694366, + -0.08183442801237106, + 0.06019219011068344, + 0.08691036701202393, + -0.03585074469447136, + -0.06859844923019409, + 0.02196996659040451, + 0.0528944693505764, + 0.04541132226586342, + 0.01991642266511917, + 0.009286496788263321, + -0.05493312329053879, + -0.022443633526563644, + 0.019469888880848885, + -0.09092877805233002, + 0.03212026506662369, + -0.01452053152024746, + -0.026933660730719566, + -0.0732513815164566, + -0.06998881697654724, + -0.08731544762849808, + -0.10875935107469559, + -0.03337502479553223, + -0.04833851382136345, + -0.03252027556300163, + 0.06326571851968765, + 0.03850086033344269, + 0.06191292032599449, + -0.07589396834373474, + -0.01536340732127428, + -0.039862122386693954, + -0.008633640594780445, + 0.019834335893392563, + -0.004262934904545546, + -2.9978485492226946e-33, + -0.014433903619647026, + -0.03936848044395447, + 0.043171320110559464, + 0.08394907414913177, + 0.091148741543293, + -0.02126438543200493, + -0.032511260360479355, + -0.12086094915866852, + -0.05163092911243439, + 0.07905831933021545, + -0.0102195143699646, + 0.041572924703359604, + -0.01685948483645916, + 0.06911170482635498, + 0.07647912204265594, + -0.03478706255555153, + -0.026837946847081184, + -0.0013154179323464632, + -0.09580131620168686, + -0.053363651037216187, + -0.07634790986776352, + 0.02621125988662243, + 0.020032307133078575, + 0.04480285197496414, + -0.046697769314050674, + -0.0047287121415138245, + -0.019140955060720444, + 0.014256144873797894, + -0.030260952189564705, + 0.026024769991636276, + 0.024646781384944916, + -0.003627885365858674, + -0.03079782985150814, + -0.005897571798413992, + -0.040481772273778915, + 0.01743634045124054, + -0.020207475870847702, + -0.027459027245640755, + 0.09178459644317627, + 0.07331354171037674, + -0.016080206260085106, + -0.02205643802881241, + 0.04111719876527786, + -0.02948206663131714, + 0.05507111921906471, + 0.09240668267011642, + 0.038885097950696945, + -0.022360820323228836, + -0.036293745040893555, + 0.02978150174021721, + 0.0030060173012316227, + -0.004112755414098501, + 0.011409389786422253, + 0.011566441506147385, + 0.020624343305826187, + -0.1034894660115242, + -0.02341124415397644, + 0.13113278150558472, + 0.06352617591619492, + 0.10145138204097748, + -0.012276142835617065, + -0.025838112458586693, + 0.004924645647406578, + 0.010797732509672642, + -0.11046496778726578, + 0.0635506734251976, + -0.0877441018819809, + 0.00047086234553717077, + 0.0350896418094635, + 0.008625472895801067, + 0.0898706465959549, + 0.08043498545885086, + 0.023126307874917984, + 0.01858915388584137, + -0.021070675924420357, + 0.04122300073504448, + 0.011003365740180016, + -0.0627916231751442, + 0.013082458637654781, + -0.060830749571323395, + -0.02808845415711403, + -0.011571367271244526, + -0.09703291207551956, + 0.02490405924618244, + -0.06757428497076035, + 0.009556734003126621, + 0.05108676850795746, + -0.009294865652918816, + -0.011294251307845116, + 0.05512252449989319, + -0.11913970112800598, + -0.017321866005659103, + 0.04941432923078537, + -0.08762513101100922, + -0.06835294514894485, + -6.534265906486448e-34, + -0.01138973981142044, + 0.06342622637748718, + -0.06021144613623619, + -0.05298421531915665, + 0.013717610388994217, + -0.008143075741827488, + 0.040732767432928085, + 0.03366515785455704, + 0.021592523902654648, + 0.01852356269955635, + 0.04102407768368721, + 0.035187456756830215, + -0.05665557458996773, + -0.07824640721082687, + -0.022705042734742165, + 0.02682763896882534, + -0.016621002927422523, + 0.06991655379533768, + -0.08015977591276169, + -0.05575135722756386, + -0.005165080539882183, + 0.0009826135355979204, + -0.06966433674097061, + 0.10045579075813293, + -0.03861178085207939, + 0.010531684383749962, + -0.03796166181564331, + -0.07545582205057144, + -0.005125059280544519, + 0.013934081420302391, + 0.024742312729358673, + -0.08229691535234451, + 0.0443020761013031, + 0.1318049132823944, + -0.0706031322479248, + 0.0010306879412382841, + 0.04521237313747406, + -0.08298026025295258, + 0.04961664229631424, + -0.013556240126490593, + -0.05794058367609978, + -0.00011371592700015754, + 0.055466048419475555, + 0.07795680314302444, + -0.03070879727602005, + -0.014796366915106773, + -0.027689550071954727, + -0.056534357368946075, + 0.008781051263213158, + 0.002303499961271882, + -0.09595819562673569, + -0.017847156152129173, + 0.03662136569619179, + 0.04780855402350426, + -0.023737195879220963, + -0.001495214062742889, + -0.031177064403891563, + 0.03240199014544487, + -0.014519554562866688, + 0.04226052016019821, + -0.08125526458024979, + 0.07953647524118423, + 0.008926688693463802, + 0.04360035061836243, + 0.06860930472612381, + -0.04688548669219017, + 0.02382831461727619, + -0.06674356013536453, + -0.033413469791412354, + 0.020719194784760475, + 0.013030263595283031, + 0.03467262163758278, + -0.06649532914161682, + 0.021770622581243515, + -0.01724926568567753, + -0.037329670041799545, + -0.020628897473216057, + 0.03404122218489647, + -0.03504311293363571, + 0.04429749771952629, + -0.04687647521495819, + -0.05343112722039223, + 0.03724981099367142, + -0.012523911893367767, + -0.04555842652916908, + -0.009842678904533386, + 0.06411392241716385, + 0.0053198691457509995, + 0.023370878770947456, + -0.014667156152427197, + -0.02636978216469288, + -0.036457452923059464, + 0.04536233842372894, + 0.013123724609613419, + -0.03407399728894234, + -2.3005480187521243e-08, + -0.04225184768438339, + -0.13136839866638184, + 0.008218435570597649, + -0.033054474741220474, + 0.014625100418925285, + -0.04771951213479042, + -0.006678073666989803, + -0.008996563963592052, + -0.043878912925720215, + -0.0003237379714846611, + 0.0884263813495636, + 0.05068027600646019, + -0.08440311253070831, + -0.03043474815785885, + 0.07263872027397156, + 0.02246079035103321, + -0.01846861094236374, + 0.05233751982450485, + 0.016589762642979622, + -0.0357852540910244, + -0.002887431066483259, + 0.018569253385066986, + 0.03600224107503891, + 0.03292641416192055, + -0.025933854281902313, + 0.012710386887192726, + -0.08308997005224228, + -0.0035355398431420326, + 0.12321367859840393, + 0.08359513431787491, + 0.08399216085672379, + 0.011153304018080235, + 0.13207314908504486, + 0.01161177083849907, + 0.0012776153162121773, + -0.03721742704510689, + -0.012774012051522732, + 0.008814658969640732, + -0.034703776240348816, + 0.09023489058017731, + -0.020688354969024658, + -0.08616705983877182, + 0.010633094236254692, + -0.04960034415125847, + 0.021542461588978767, + 0.044315580278635025, + -0.05049659684300423, + -0.010615012608468533, + -0.02429816871881485, + -0.1340172439813614, + -0.00469632912427187, + -0.024235619232058525, + 0.009751171804964542, + 0.09193438291549683, + -0.03267235308885574, + -0.026633668690919876, + -0.02523268572986126, + 0.12449229508638382, + 0.11201844364404678, + -0.027626266703009605, + 0.10388749837875366, + 0.1010209321975708, + 0.013433607295155525, + 0.025905149057507515 + ], + "rows-plus-bottom-bold||*new*,2,shapes,polygons,box,stack,list,table,cards,prepend,insert": [ + 0.007179081439971924, + -0.02539791539311409, + -0.0706142783164978, + 0.06991482526063919, + -0.005888646934181452, + -0.005439110565930605, + -0.01409874763339758, + -0.034732747822999954, + -0.005078440997749567, + 0.04458414390683174, + -0.008624782785773277, + -0.0031834712717682123, + 0.028591372072696686, + -0.08565700799226761, + -0.0006659559439867735, + 0.028789132833480835, + 0.021515237167477608, + 0.0075325979851186275, + 0.012225376442074776, + 0.0025651357136666775, + -0.007657511159777641, + -0.026319067925214767, + 1.73069529409986e-05, + 0.011408763937652111, + 0.06152116134762764, + 0.07784458249807358, + 0.008128523826599121, + 0.02418040670454502, + 0.04870491102337837, + -0.06050028279423714, + -0.06036987528204918, + -0.009366050362586975, + 0.10986889898777008, + 0.08763175457715988, + 0.0154258506372571, + -0.03432054445147514, + -0.02920146845281124, + 0.05407895892858505, + 0.06779699772596359, + 0.03810623288154602, + 0.027052942663431168, + -0.13151665031909943, + 0.025115538388490677, + 0.027412699535489082, + -0.0467812679708004, + -0.04858812689781189, + -0.09509337693452835, + -0.09646923840045929, + 0.011718402616679668, + -0.022613881155848503, + -0.02135193534195423, + -0.08106792718172073, + -0.09082536399364471, + -0.007950718514621258, + 0.0051443264819681644, + 0.007100972812622786, + -0.027129150927066803, + -0.09841571003198624, + 0.003087253076955676, + -0.021214734762907028, + 0.05710545554757118, + 0.03441283479332924, + 0.06763922423124313, + 0.05326278507709503, + 0.01735779643058777, + -0.011419154703617096, + -0.08058269321918488, + 0.09227894246578217, + -0.0376170389354229, + 0.06543207913637161, + 0.04139746353030205, + 0.09346865862607956, + -0.029139099642634392, + -0.018925730139017105, + -0.04715830832719803, + -0.04203208163380623, + 0.020262714475393295, + 0.00022403793991543353, + -0.002441820688545704, + 0.018545743077993393, + -0.05585509538650513, + 0.04033280164003372, + -0.012050943449139595, + 0.06243028864264488, + 0.0015416176756843925, + 0.0652334913611412, + -0.011813374236226082, + -0.0010328269563615322, + -0.12023233622312546, + -0.0712311714887619, + -0.020090922713279724, + 0.022788913920521736, + -0.008999107405543327, + 0.06084514781832695, + -0.09947138279676437, + 0.03973940387368202, + 0.06327664107084274, + -0.05241730436682701, + -0.058499131351709366, + 0.028175342828035355, + 0.04735454171895981, + 0.01825411058962345, + 0.012223749421536922, + 0.02477562427520752, + -0.04525502026081085, + -0.059370771050453186, + -0.0009719189256429672, + -0.07460927218198776, + -0.004126835148781538, + 0.021456997841596603, + -0.005930479150265455, + -0.057575907558202744, + -0.006883104331791401, + -0.10269341617822647, + -0.13685953617095947, + 0.020525654777884483, + -0.07089141756296158, + -0.025497855618596077, + 0.05853470042347908, + -0.0016775253461673856, + 0.09031892567873001, + -0.05126933380961418, + -0.0333225391805172, + -0.0207865871489048, + -0.04174848645925522, + 0.005311465822160244, + -0.003709351411089301, + -2.4942678713563805e-33, + 0.03511035069823265, + -0.029558176174759865, + 0.03887103125452995, + 0.110464908182621, + 0.08691293001174927, + 0.02051536552608013, + -0.0606917068362236, + -0.08785857260227203, + -0.06911682337522507, + 0.0766579806804657, + -0.005591771099716425, + -0.0037413667887449265, + -0.059773318469524384, + 0.09509087353944778, + 0.008671877905726433, + -0.022506527602672577, + -0.01592102088034153, + -0.021402422338724136, + -0.0849773958325386, + -0.049645811319351196, + -0.06530287116765976, + 0.012203298509120941, + 0.01964598335325718, + 0.05991324409842491, + -0.002322056796401739, + 0.039125796407461166, + -0.011934936046600342, + -0.03095529042184353, + -0.06992271542549133, + 0.021450048312544823, + 0.019031932577490807, + -0.027519263327121735, + -0.026254476979374886, + 0.0037377311382442713, + -0.04591227322816849, + 0.05525313317775726, + -0.017844107002019882, + -0.03587140887975693, + 0.11175079643726349, + 0.04135943949222565, + -0.03105565905570984, + 0.012860869988799095, + 0.012081025168299675, + -0.02795357257127762, + 0.050199348479509354, + 0.07815302163362503, + 0.03963809460401535, + -0.030106695368885994, + -0.02326950803399086, + 0.001257867319509387, + -0.03772174194455147, + -0.02648915909230709, + -0.003822165075689554, + 0.022772137075662613, + -0.044598691165447235, + -0.08308343589305878, + -0.05286702513694763, + 0.09047772735357285, + 0.054367341101169586, + 0.07526952773332596, + 0.009488483890891075, + -0.029880622401833534, + -0.021699419245123863, + 0.06356104463338852, + -0.07698829472064972, + 0.034320421516895294, + -0.039055872708559036, + 0.010564281605184078, + 0.06651122868061066, + -0.015224014408886433, + 0.04961136728525162, + 0.03708944097161293, + -0.03805678337812424, + 0.05846339464187622, + -0.02295239455997944, + 0.0024480430874973536, + 0.014644504524767399, + -0.06488212198019028, + 0.009981461800634861, + -0.0732719674706459, + 0.0031018678564578295, + -0.009759582579135895, + -0.07218295335769653, + -0.008469409309327602, + -0.04144848883152008, + -0.011657750234007835, + 0.03215138614177704, + 0.012656955048441887, + 0.032520607113838196, + 0.024182060733437538, + -0.10558968782424927, + -0.0632333755493164, + 0.04262992739677429, + -0.07939139753580093, + -0.05948912724852562, + -6.517734598823048e-34, + 0.013691346161067486, + 0.030550280585885048, + -0.07663782685995102, + -0.033418506383895874, + -0.014715860597789288, + -0.010101430118083954, + 0.05107160657644272, + 0.02004706673324108, + 0.02386615239083767, + 0.031646281480789185, + 0.03765258938074112, + 0.04781271144747734, + -0.005398608278483152, + -0.05432276055216789, + -0.025523629039525986, + 0.00567228440195322, + -0.06786242127418518, + 0.08850668370723724, + -0.0659957230091095, + -0.056871142238378525, + 0.022003743797540665, + -0.031129326671361923, + -0.033553656190633774, + 0.08627299219369888, + 0.012189850211143494, + 0.006777182221412659, + -0.009857377037405968, + -0.0016651236219331622, + -0.05896313861012459, + 0.004525827243924141, + 0.03659500554203987, + -0.047762587666511536, + 0.033646758645772934, + 0.12653639912605286, + -0.06677831709384918, + -0.01546870730817318, + 0.059926509857177734, + -0.037741146981716156, + 0.045979272574186325, + -0.0045381165109574795, + -0.0827777311205864, + -0.020446287468075752, + 0.07510483264923096, + 0.1153511255979538, + -0.03562568500638008, + -0.01864735595881939, + -0.07926369458436966, + -0.04971340671181679, + 0.014432314783334732, + -0.03156837821006775, + -0.10039352625608444, + -0.03411991521716118, + 0.008032482117414474, + 0.011671499349176884, + -0.010577903129160404, + 0.006187917198985815, + -0.02362384833395481, + 0.044467248022556305, + -0.01652953214943409, + 0.003038991242647171, + -0.08621462434530258, + 0.0787440836429596, + 0.03747769445180893, + -0.020460734143853188, + 0.0673474594950676, + -0.003935297951102257, + 0.007080452516674995, + -0.0484699048101902, + -0.0753251388669014, + 0.010470892302691936, + -0.0017357729375362396, + 0.06934011727571487, + -0.11686024069786072, + 0.005725172348320484, + -0.03362053632736206, + -0.06299681216478348, + -0.013185971416532993, + 0.02765701524913311, + -0.032114434987306595, + 0.010260775685310364, + -0.07623593509197235, + -0.052773911505937576, + 0.01972559466958046, + -0.0038705237675458193, + -0.0677299052476883, + -0.015882272273302078, + 0.039494872093200684, + 0.050634775310754776, + -0.021649017930030823, + -0.005882910452783108, + -0.07808603346347809, + -0.0017944049322977662, + 0.00942082330584526, + 0.019281040877103806, + -0.05891655758023262, + -2.7941405633669092e-08, + -0.0559292733669281, + -0.13361287117004395, + -0.01017048116773367, + -0.014706562273204327, + 0.022510282695293427, + -0.03903168439865112, + -0.004866006318479776, + 0.011156328953802586, + -0.008691142313182354, + -0.04482882842421532, + 0.06717929244041443, + 0.0870661735534668, + -0.03580861911177635, + -0.05434945598244667, + 0.069060318171978, + 0.045652855187654495, + -0.016298620030283928, + 0.03400474414229393, + 0.008153935894370079, + -0.08692553639411926, + 0.027857866138219833, + 0.07661538571119308, + 0.016235338523983955, + 0.03430663421750069, + 0.01679358258843422, + -0.008675775490701199, + -0.09243392199277878, + 0.006645353976637125, + 0.11660335958003998, + 0.07004053145647049, + 0.12199520319700241, + 0.019808316603302956, + 0.13991445302963257, + 0.031447459012269974, + 0.017842452973127365, + 0.0012212008005008101, + 0.012987862341105938, + 0.02621363289654255, + -0.009501242078840733, + 0.03086944669485092, + -0.015752721577882767, + -0.05516419932246208, + 0.024557631462812424, + -0.05257211625576019, + -0.01676875911653042, + 0.02178051881492138, + -0.04560895636677742, + 0.008992252871394157, + -0.014730116352438927, + -0.12479932606220245, + 0.04632704332470894, + -0.030834810808300972, + 0.07810650765895844, + 0.05824007838964462, + -0.03453594818711281, + 0.007134672254323959, + 0.021881787106394768, + 0.12955458462238312, + 0.1522453874349594, + 0.0034628487192094326, + 0.05965876951813698, + 0.06748535484075546, + 0.06821296364068985, + 0.025515219196677208 + ], + "rows-plus-top-bold||*new*,2,shapes,polygons,box,stack,list,table,cards,prepend,insert": [ + 0.00951316673308611, + -0.03308144956827164, + -0.07963099330663681, + 0.07307153940200806, + 0.0010001594200730324, + 0.021845882758498192, + -0.00749545730650425, + -0.04805559292435646, + -0.03082098625600338, + 0.06876304745674133, + -0.005176262464374304, + -0.013128070160746574, + 0.03285194933414459, + -0.0924733430147171, + 0.00893485452979803, + 0.015404501929879189, + 0.013085776939988136, + 0.0012702523963525891, + 0.025892816483974457, + -0.013233392499387264, + -0.012364016845822334, + -0.03292548656463623, + -0.015219874680042267, + 0.01935262233018875, + 0.05019884556531906, + 0.07173959165811539, + 0.0013870798284187913, + 0.01977204531431198, + 0.043779157102108, + -0.061193883419036865, + -0.053539760410785675, + -0.016727067530155182, + 0.09008706361055374, + 0.08763400465250015, + 0.005386735778301954, + -0.010547597892582417, + -0.04673892632126808, + 0.030702747404575348, + 0.06809884309768677, + 0.034236740320920944, + 0.019840572029352188, + -0.12626415491104126, + 0.021507706493139267, + 0.022891346365213394, + -0.044211409986019135, + -0.050907790660858154, + -0.09955281764268875, + -0.07564947009086609, + 0.015267922542989254, + -0.03730140998959541, + -0.0401674285531044, + -0.08206547796726227, + -0.06739041954278946, + -0.024803921580314636, + 0.02001388743519783, + 0.020106131210923195, + -0.02881186082959175, + -0.0964488834142685, + 8.452760812360793e-05, + -0.03741235285997391, + 0.022696921601891518, + 0.03537306934595108, + 0.08249679952859879, + 0.052761390805244446, + 0.01444806344807148, + -0.007560038007795811, + -0.06636021286249161, + 0.09775019437074661, + -0.028279686346650124, + 0.06223798915743828, + 0.042109861969947815, + 0.11916626244783401, + -0.03794197738170624, + -0.01769178919494152, + -0.04014652222394943, + -0.04242534190416336, + 0.011626000516116619, + -0.004577719606459141, + -0.02562762051820755, + 0.03415517508983612, + -0.06756497174501419, + 0.04380040615797043, + -0.02306848019361496, + 0.0474136620759964, + 0.029060237109661102, + 0.06652374565601349, + -0.02262791246175766, + -0.004188063554465771, + -0.12439333647489548, + -0.0770091861486435, + -0.02060050517320633, + 0.033133696764707565, + -0.0002526728203520179, + 0.05954951047897339, + -0.10566285997629166, + 0.045041970908641815, + 0.04915899410843849, + -0.04424882307648659, + -0.05584399402141571, + 0.014186196029186249, + 0.03717569261789322, + 0.02659180387854576, + 0.0041263774037361145, + 0.024117568507790565, + -0.04124191775918007, + -0.0491543784737587, + 0.012719538062810898, + -0.05450701713562012, + -0.00625658268108964, + 0.02932318113744259, + -0.007414715830236673, + -0.0723632425069809, + -0.013295399025082588, + -0.10809388756752014, + -0.13004738092422485, + 0.025295231491327286, + -0.063986636698246, + -0.0357431061565876, + 0.07660667598247528, + 0.0002055664808722213, + 0.10550507158041, + -0.058528948575258255, + -0.03701604902744293, + -0.03799451142549515, + -0.0626213401556015, + 0.012634564191102982, + 0.00872623547911644, + -2.442434080614887e-33, + 0.02284429408609867, + -0.02555548958480358, + 0.04309811070561409, + 0.11809776723384857, + 0.08308514207601547, + 0.013643696904182434, + -0.05807677283883095, + -0.09567150473594666, + -0.05858501419425011, + 0.06947851181030273, + -0.016167055815458298, + 0.008593589998781681, + -0.06907195597887039, + 0.10563907772302628, + 0.018181204795837402, + -0.041026826947927475, + -0.017360635101795197, + -0.005224630236625671, + -0.10276343673467636, + -0.04014994576573372, + -0.09913371503353119, + 0.021245216950774193, + 0.006502079777419567, + 0.059226375073194504, + -0.009454724378883839, + 0.03621552884578705, + -0.01723630167543888, + -0.03768640384078026, + -0.05054701492190361, + 0.02129378356039524, + 0.020011350512504578, + -0.02773386240005493, + -0.02944696508347988, + 0.012628148309886456, + -0.04625723510980606, + 0.04869353398680687, + -0.01301730889827013, + -0.035235609859228134, + 0.1149553507566452, + 0.05961288511753082, + -0.019488148391246796, + 0.01572548970580101, + 0.021573353558778763, + -0.029079388827085495, + 0.03668708726763725, + 0.09616375714540482, + 0.02829250879585743, + -0.028617775067687035, + -0.035121068358421326, + -0.012617133557796478, + -0.02388921193778515, + -0.012049089185893536, + -0.002445882884785533, + 0.033108677715063095, + -0.054908785969018936, + -0.0670870691537857, + -0.02351287379860878, + 0.09098292142152786, + 0.08369848132133484, + 0.08707933872938156, + -0.01167759858071804, + -0.03291090950369835, + -0.020831286907196045, + 0.08239258080720901, + -0.07806913554668427, + 0.032386887818574905, + -0.02597079984843731, + -0.0014055011561140418, + 0.05691634118556976, + -0.00029489275766536593, + 0.04390392825007439, + 0.04473859444260597, + -0.039520263671875, + 0.05864984914660454, + -0.011783750727772713, + 0.011613008566200733, + 0.008497213944792747, + -0.06566189229488373, + 0.010024365037679672, + -0.07029532641172409, + 0.006744680926203728, + -0.018490660935640335, + -0.06969141215085983, + -0.006169748492538929, + -0.032384030520915985, + -0.009428471326828003, + 0.02082633227109909, + 0.011743485927581787, + 0.03183739259839058, + 0.013828889466822147, + -0.083595409989357, + -0.029572678729891777, + 0.057598818093538284, + -0.09330739825963974, + -0.0703929141163826, + -9.072832741631047e-34, + 0.018592705950140953, + 0.03595155477523804, + -0.05383368209004402, + -0.03873487561941147, + -0.013285952620208263, + 0.00925279501825571, + 0.034461766481399536, + 0.0037952049169689417, + 0.009551485069096088, + 0.016527889296412468, + 0.05210164561867714, + 0.025369055569171906, + -0.015103724785149097, + -0.05909273773431778, + -0.01876370795071125, + 0.017389478161931038, + -0.055534057319164276, + 0.08730281889438629, + -0.08705423027276993, + -0.061254944652318954, + 0.034000616520643234, + -0.04163931682705879, + -0.036475565284490585, + 0.08725270628929138, + -0.0031145226676017046, + 0.0009224853129126132, + -0.02728578820824623, + 0.00657089427113533, + -0.01815253123641014, + 0.00537903793156147, + 0.03230446204543114, + -0.056883543729782104, + 0.03231112286448479, + 0.14898620545864105, + -0.07473166286945343, + -0.005578596610575914, + 0.060727424919605255, + -0.041239652782678604, + 0.04922746866941452, + 0.023187818005681038, + -0.061673879623413086, + -0.03193731606006622, + 0.07598645240068436, + 0.11079856008291245, + -0.03452673926949501, + -0.013629940338432789, + -0.08959376066923141, + -0.05470944195985794, + 0.00018110997916664928, + -0.01333368569612503, + -0.1019250750541687, + -0.014988944865763187, + 0.00440268125385046, + 0.013062690384685993, + -0.00916343554854393, + 0.010833924636244774, + -0.02295922487974167, + 0.0357418917119503, + -0.011822984553873539, + -0.01584026589989662, + -0.07968304306268692, + 0.0771021917462349, + 0.024751221761107445, + 0.00038530834717676044, + 0.06025632470846176, + -0.025700591504573822, + 0.008347767405211926, + -0.0680413544178009, + -0.07946159690618515, + 0.0017564533045515418, + -0.015125562436878681, + 0.062049418687820435, + -0.10708587616682053, + 0.0007848677923902869, + -0.04678495600819588, + -0.048959121108055115, + -0.016444535925984383, + 0.023208411410450935, + -0.011030656285583973, + -0.0022010444663465023, + -0.06261532753705978, + -0.03932241350412369, + 0.025643153116106987, + -0.012152956798672676, + -0.05245690420269966, + -0.005525154992938042, + 0.04393193870782852, + 0.028986459597945213, + -0.015573649667203426, + -0.020707566291093826, + -0.07515839487314224, + -0.0015897074481472373, + 0.011037169955670834, + 0.010604645125567913, + -0.05980279669165611, + -2.8566843113253526e-08, + -0.05946359783411026, + -0.14546534419059753, + -0.014455163851380348, + -0.018089594319462776, + 0.020827803760766983, + -0.050524674355983734, + -0.007090434897691011, + 0.010904808528721333, + -0.007863707840442657, + -0.03836999088525772, + 0.06497230380773544, + 0.0760854035615921, + -0.03201206773519516, + -0.044953666627407074, + 0.055609509348869324, + 0.046546224504709244, + -0.021804146468639374, + 0.026365049183368683, + 0.019411694258451462, + -0.083890400826931, + 0.009597093798220158, + 0.08922665566205978, + 0.01651669107377529, + 0.029336508363485336, + 0.00754817109555006, + -3.657273555290885e-05, + -0.08280599862337112, + 0.018484637141227722, + 0.11673050373792648, + 0.07497944682836533, + 0.09394842386245728, + 0.005552504677325487, + 0.11580245196819305, + 0.033186402171850204, + 0.023402847349643707, + 0.007926697842776775, + 0.012567101046442986, + 0.024243315681815147, + -0.023886457085609436, + 0.020924851298332214, + -0.003926219418644905, + -0.04187925532460213, + 0.012945770286023617, + -0.05344748497009277, + -0.013187470845878124, + 0.009513743221759796, + -0.0582890585064888, + 0.01020943745970726, + -0.01644185185432434, + -0.13220441341400146, + 0.02449907921254635, + -0.012435969896614552, + 0.07169163227081299, + 0.05077199265360832, + -0.03261541575193405, + 0.021520648151636124, + 0.021720174700021744, + 0.12900233268737793, + 0.152064710855484, + -0.0013785845367237926, + 0.08738461881875992, + 0.061394378542900085, + 0.0664277896285057, + 0.04729418084025383 + ], + "rss-bold||radio,broadcast,web feed,news,aggregator": [ + 0.012207221239805222, + -0.0827031135559082, + -0.10976460576057434, + 0.022197533398866653, + 0.0652398094534874, + 0.0074050226248800755, + -0.004444400779902935, + -0.03636226803064346, + 0.025947200134396553, + -0.01617501676082611, + -0.019157547503709793, + 0.071209616959095, + 0.09101042151451111, + 0.04189804941415787, + 0.03195064514875412, + -0.06461696326732635, + 0.04313480108976364, + -0.02372589521110058, + -0.011661446653306484, + -0.07707666605710983, + -0.001989253330975771, + 0.0460946299135685, + -0.02327304147183895, + 0.0045900107361376286, + 0.12194749712944031, + -0.015148629434406757, + 0.01541940588504076, + 0.03506670147180557, + 0.05195460096001625, + -0.06166144087910652, + 0.027736200019717216, + -0.04342721030116081, + 0.1282498985528946, + 0.004727651830762625, + -0.02896982617676258, + -0.020409930497407913, + 0.00407770462334156, + -0.03241797536611557, + -0.028583873063325882, + 0.11748600006103516, + 0.03736594691872597, + -0.05903230234980583, + -0.016748230904340744, + -0.0054019358940422535, + -0.08635704964399338, + -0.048194628208875656, + -0.10007037967443466, + 0.05052574351429939, + 0.01023994293063879, + -0.058388806879520416, + -0.02486589550971985, + -0.07341310381889343, + -0.05625832453370094, + 0.13315625488758087, + 0.025760039687156677, + -0.058229729533195496, + -0.13122424483299255, + 0.017666801810264587, + 0.009579665027558804, + -0.048315539956092834, + 0.019148221239447594, + 0.008161344565451145, + 0.039573948830366135, + 0.007030989974737167, + 0.041866905987262726, + 0.038046278059482574, + -0.019253220409154892, + 0.07092737406492233, + 0.04393385723233223, + 0.00964495912194252, + -0.03161466494202614, + 0.022303573787212372, + -0.015412119217216969, + 0.005338211078196764, + -0.06065471097826958, + -0.009892933070659637, + 0.07355020940303802, + -0.009471443481743336, + -0.06508732587099075, + -0.04958812892436981, + -0.09129996597766876, + -0.08422420918941498, + -0.07959085702896118, + -0.036097731441259384, + 0.08350195735692978, + 0.053428567945957184, + -0.046840522438287735, + -0.04094120115041733, + -0.0323672741651535, + -0.014332287013530731, + -0.08427368849515915, + 0.013754586689174175, + 0.07989916950464249, + 0.05990386754274368, + -0.06758258491754532, + 0.05351659283041954, + 0.04354742541909218, + -0.024603862315416336, + -0.019163157790899277, + 0.06182472035288811, + 0.024473851546645164, + 0.055475372821092606, + -0.03915367275476456, + -0.025097833946347237, + -0.034305389970541, + -0.08739084750413895, + -0.08463216572999954, + 0.08655623346567154, + 0.009170839563012123, + 0.05577826872467995, + -0.033157024532556534, + 0.014163128100335598, + -0.0029214953538030386, + -0.060543522238731384, + -0.06442748755216599, + 0.019873809069395065, + -0.00960055086761713, + 0.013360517099499702, + 0.06859046965837479, + 0.06064249947667122, + 0.004504293669015169, + 0.013313531875610352, + -0.059678591787815094, + 0.02002485655248165, + 0.07556480914354324, + 0.012067173607647419, + 0.06680025160312653, + -3.709676959380304e-34, + 0.015691103413701057, + 0.049288149923086166, + -0.041033875197172165, + 0.02755071595311165, + 0.004251064267009497, + 0.040216997265815735, + -0.10703153908252716, + -0.035848140716552734, + -0.003986363299190998, + 0.014685263857245445, + 0.07177726924419403, + 0.1633242666721344, + -0.026518896222114563, + 0.023336270824074745, + 0.05095873773097992, + -0.04052148014307022, + 0.017931301146745682, + 0.044741805642843246, + -0.009071622043848038, + -0.02687658928334713, + -0.05838743597269058, + 0.014110027812421322, + -0.03053797408938408, + -0.03679758310317993, + 0.042067237198352814, + -0.008148618042469025, + 0.03537425026297569, + 0.018619218841195107, + -0.04114886745810509, + 0.03666554018855095, + 0.06849178671836853, + 0.0008840989321470261, + -0.04558756947517395, + -0.0037689791060984135, + -0.009457790292799473, + -0.03960217162966728, + -0.04995178058743477, + -0.02194301038980484, + -0.023214921355247498, + 0.015204690396785736, + -0.02072654664516449, + -0.0012822705321013927, + -0.07068447023630142, + -0.045058686286211014, + 0.0049291979521512985, + 0.12489616125822067, + -0.01260423194617033, + -0.02415006048977375, + 0.06492628157138824, + 0.033193640410900116, + 0.008766715414822102, + -0.009610206820070744, + 0.007203433662652969, + -0.0044787572696805, + 0.04717494547367096, + 0.024588365107774734, + -0.004465972073376179, + 0.007093517575412989, + 0.004636356141418219, + -0.021225212141871452, + 4.6095679863356054e-05, + -0.04188811033964157, + 0.04656495153903961, + -0.09206786006689072, + 0.001961075235158205, + 0.03759074583649635, + 0.026819445192813873, + 0.062408801168203354, + 0.05493706837296486, + 0.0399809293448925, + -0.00478576822206378, + 0.057382091879844666, + 0.06671513617038727, + 0.08844731003046036, + -0.0792526826262474, + 0.05998840555548668, + -0.003922676667571068, + -0.016866430640220642, + 0.028401074931025505, + 0.004418646916747093, + -0.04464852064847946, + 0.01734008826315403, + 0.018399516120553017, + 0.03356793522834778, + 0.06754416972398758, + 0.05669571831822395, + -0.03158432990312576, + -0.04318846017122269, + -0.03729832544922829, + 0.03552427142858505, + -0.09071962535381317, + 0.07058864086866379, + -0.04413827881217003, + -0.03416582569479942, + -0.09860294312238693, + -6.8618472538793295e-34, + -0.07019965350627899, + 0.05537312105298042, + -0.11235805600881577, + -0.056082092225551605, + -0.06423535197973251, + -0.0362863726913929, + -0.060071878135204315, + 0.050595566630363464, + 0.04572674259543419, + 0.0642189159989357, + 0.03926468268036842, + -0.10032971948385239, + -0.08217117190361023, + -0.018634360283613205, + -0.016119152307510376, + 0.014245642349123955, + 0.019214021041989326, + 0.004955549258738756, + -0.04533212259411812, + 0.021872110664844513, + -0.08148657530546188, + 0.019326213747262955, + -0.047609925270080566, + 0.08212938159704208, + 0.07637380808591843, + 0.013044668361544609, + 0.0010380513267591596, + 0.06693907082080841, + -0.08013652265071869, + 0.0012474007671698928, + 0.006704564671963453, + -0.05931348353624344, + 0.0005677776061929762, + -0.030697062611579895, + -0.02383122779428959, + 0.10347555577754974, + 0.009570060297846794, + 0.005433936137706041, + 0.0665130689740181, + -0.0159063208848238, + -0.025046084076166153, + 0.06766306608915329, + 0.03335209935903549, + -0.0020680688321590424, + -0.08540982753038406, + -0.027650486677885056, + 0.007849985733628273, + 0.04571975767612457, + -0.035409264266490936, + 0.014957663603127003, + 0.03383931517601013, + -0.05110824480652809, + -0.010806825943291187, + 0.036453552544116974, + -0.0185990110039711, + -0.04733830317854881, + 0.007373008411377668, + 0.04671251401305199, + -0.020682375878095627, + -0.0363827720284462, + 0.05567498132586479, + 0.014924230054020882, + -0.0545039102435112, + 0.03820037469267845, + 0.013807452283799648, + -0.07672394812107086, + 0.05994565039873123, + -0.09388034790754318, + 0.026748955249786377, + 0.019263561815023422, + 0.10699883848428726, + -0.027287567034363747, + 0.0041513582691550255, + 0.005481647327542305, + 0.00025338484556414187, + 0.01805165223777294, + 0.03794259577989578, + 0.08486690372228622, + -0.048482805490493774, + -0.0061569856479763985, + -0.03415660187602043, + 0.07039202749729156, + 0.0073973494581878185, + -0.03232541307806969, + -0.006836341693997383, + 0.06511637568473816, + 0.039419662207365036, + 0.021052133291959763, + 0.021524567157030106, + -0.047431256622076035, + -0.011459968984127045, + 0.058832623064517975, + -0.03463270515203476, + 0.058582406491041183, + 0.03792327269911766, + -1.8595288864275972e-08, + -0.020397547632455826, + -0.10356030613183975, + -0.11199945956468582, + 0.0284351147711277, + 0.015158603899180889, + -0.04321536794304848, + -0.04121089354157448, + -0.07516337931156158, + -0.04976421967148781, + -0.029837286099791527, + 0.0374922938644886, + -0.028983261436223984, + -0.07403787225484848, + -0.02726908028125763, + 0.04792032390832901, + -0.06631314754486084, + -0.0408632718026638, + 0.02273375354707241, + -0.012129266746342182, + -0.081293024122715, + 0.05493183061480522, + 0.0349930003285408, + 0.05554160848259926, + -0.017762940376996994, + 0.13496336340904236, + 0.04110865294933319, + -0.03194936364889145, + -0.03937744349241257, + 0.08374698460102081, + 0.05033395066857338, + 0.047182727605104446, + 0.007427888456732035, + -0.04344561696052551, + -0.03374331071972847, + -0.08078860491514206, + 0.002202836563810706, + -0.06017109006643295, + 0.018875712528824806, + -0.04847503826022148, + 0.124578557908535, + 0.024711403995752335, + -0.07457643747329712, + -0.017319677397608757, + 0.011865416541695595, + -0.05375491455197334, + 0.020750103518366814, + 0.029571302235126495, + -0.010739128105342388, + 0.04866497963666916, + -0.13629426062107086, + -0.0001961477246368304, + -0.08531679958105087, + 0.06064470484852791, + -0.03618443384766579, + -0.0017993452493101358, + -0.05540841072797775, + 0.04173655062913895, + 0.04554630070924759, + 0.008667605929076672, + -0.00047443178482353687, + 0.10917887836694717, + 0.041345469653606415, + -0.0441160574555397, + 0.02227920852601528 + ], + "rss-simple-bold||radio,broadcast,web feed,news,aggregator": [ + 0.016549034044146538, + -0.06731897592544556, + -0.0952410027384758, + 0.027274880558252335, + 0.05939127504825592, + 0.005170909222215414, + -0.017500272020697594, + -0.029159529134631157, + 0.009414754807949066, + -0.00811244547367096, + -0.02364167384803295, + 0.06470310688018799, + 0.09051207453012466, + 0.038385193794965744, + 0.02907354198396206, + -0.07332179695367813, + 0.037803761661052704, + -0.03403128683567047, + -0.008300995454192162, + -0.07351303100585938, + -0.022305894643068314, + 0.03543229028582573, + -0.03706081956624985, + 0.006366767454892397, + 0.1136617362499237, + -0.017508666962385178, + 0.009853645227849483, + 0.05116260424256325, + 0.05867311358451843, + -0.06296802312135696, + 0.04194539040327072, + -0.04931708425283432, + 0.13308493793010712, + -0.0026108701713383198, + -0.02929600514471531, + -0.021156806498765945, + 0.008491446264088154, + -0.02376733161509037, + -0.03518529608845711, + 0.10674746334552765, + 0.03102920390665531, + -0.059077948331832886, + -0.0212030541151762, + -0.0013287131441757083, + -0.10543479025363922, + -0.05633882060647011, + -0.094423808157444, + 0.05513066425919533, + 0.011909679509699345, + -0.06888176500797272, + -0.020897947251796722, + -0.07379499077796936, + -0.063738614320755, + 0.12367112934589386, + 0.03252935782074928, + -0.05197220295667648, + -0.14005373418331146, + 0.02587352693080902, + 0.005479734856635332, + -0.05523737892508507, + 0.022054212167859077, + -0.0070847258903086185, + 0.0418131984770298, + -0.0035414209123700857, + 0.03640304505825043, + 0.028742050752043724, + -0.01727982796728611, + 0.06694018840789795, + 0.035339996218681335, + 0.008101975545287132, + -0.03290589526295662, + 0.019296923652291298, + -0.02542690932750702, + 0.023797962814569473, + -0.06951732188463211, + -0.026322701945900917, + 0.06553243845701218, + 0.004103845451027155, + -0.08101683109998703, + -0.03151577711105347, + -0.10156375169754028, + -0.09681693464517593, + -0.08795599639415741, + -0.01653093844652176, + 0.08152911812067032, + 0.04575631767511368, + -0.046292662620544434, + -0.03252962604165077, + -0.02147894725203514, + -0.010522066615521908, + -0.07113819569349289, + 0.03478162735700607, + 0.09872813522815704, + 0.058813489973545074, + -0.0584360770881176, + 0.04872194677591324, + 0.053127944469451904, + -0.015458212234079838, + -0.048104558140039444, + 0.06573495268821716, + 0.019447972998023033, + 0.059250254184007645, + -0.028082750737667084, + -0.04443821683526039, + -0.03303956240415573, + -0.08177712559700012, + -0.0807536244392395, + 0.08142149448394775, + -0.0005167354829609394, + 0.04558916389942169, + -0.04010676592588425, + 0.017590835690498352, + -0.0030352543108165264, + -0.057106297463178635, + -0.0678785890340805, + 0.026653792709112167, + -0.017941465601325035, + 0.011346913874149323, + 0.06562577188014984, + 0.07930046319961548, + 0.007287516724318266, + 0.012925536371767521, + -0.07274003326892853, + 0.022744299843907356, + 0.0693507120013237, + 0.02089969627559185, + 0.07430881261825562, + -1.0006543516523537e-33, + 0.02153657004237175, + 0.06687408685684204, + -0.03808831050992012, + 0.03177177160978317, + 0.0023519019596278667, + 0.03190045431256294, + -0.11704858392477036, + -0.02812987193465233, + -0.004988509230315685, + 0.011384866200387478, + 0.0954672172665596, + 0.1410362720489502, + -0.024095267057418823, + 0.01917882077395916, + 0.04486272111535072, + -0.04152804613113403, + 0.024390462785959244, + 0.0393616259098053, + -0.0035329433158040047, + -0.04138593748211861, + -0.0637267455458641, + 0.031026048585772514, + -0.027708010748028755, + -0.04718850925564766, + 0.041794419288635254, + -0.011204436421394348, + 0.03865313157439232, + 0.01007258053869009, + -0.028569526970386505, + 0.03099820390343666, + 0.07098092883825302, + -0.0026745800860226154, + -0.03577763959765434, + 0.0028931957203894854, + -0.012468244880437851, + -0.04615384712815285, + -0.03131262585520744, + -0.028603993356227875, + -0.02840407006442547, + -0.000785981013905257, + -0.019770508632063866, + 0.009816741570830345, + -0.05990113690495491, + -0.046913325786590576, + 0.010630345903337002, + 0.13443723320960999, + -0.015147797763347626, + -0.022913645952939987, + 0.062164127826690674, + 0.02807852439582348, + 0.0026690668892115355, + 0.004382845479995012, + -0.0029098179657012224, + -0.0010848349193111062, + 0.05476134270429611, + 0.03463652357459068, + -0.008209272287786007, + 0.00928026158362627, + -0.0038375328294932842, + -0.025262396782636642, + 0.0026348778046667576, + -0.02723890356719494, + 0.03908734768629074, + -0.07976700365543365, + -0.001050294958986342, + 0.0332203209400177, + 0.02287556789815426, + 0.05211217328906059, + 0.0465373620390892, + 0.03960994631052017, + -0.0014884576667100191, + 0.05677744746208191, + 0.060956213623285294, + 0.06774936616420746, + -0.0648154467344284, + 0.06206563487648964, + 0.016180234029889107, + -0.03378940746188164, + 0.03317458555102348, + 0.0005560917779803276, + -0.03602725639939308, + 0.01884358376264572, + 0.007944753393530846, + 0.04682961106300354, + 0.04999351128935814, + 0.057556360960006714, + -0.030880790203809738, + -0.023304134607315063, + -0.04257706180214882, + 0.03895917162299156, + -0.09091018885374069, + 0.07280748337507248, + -0.04733388498425484, + -0.03633399307727814, + -0.0894421711564064, + -2.175473160564903e-34, + -0.07542065531015396, + 0.04941152408719063, + -0.11058616638183594, + -0.050965458154678345, + -0.05319460108876228, + -0.022001774981617928, + -0.05563304200768471, + 0.048630211502313614, + 0.05159744620323181, + 0.07174932211637497, + 0.03341641649603844, + -0.10165863484144211, + -0.09344840794801712, + -0.013532668352127075, + -0.010408981703221798, + 0.01739472709596157, + 0.018449269235134125, + 0.013667291030287743, + -0.034878406673669815, + 0.021347148343920708, + -0.07135209441184998, + 0.033338580280542374, + -0.06375569850206375, + 0.06396663188934326, + 0.08576942980289459, + 0.016919352114200592, + -0.0017395825125277042, + 0.07717272639274597, + -0.0785692036151886, + -0.0026664722245186567, + 0.000199162372155115, + -0.05966898798942566, + -0.0016991840675473213, + -0.04775910824537277, + -0.022158171981573105, + 0.10323702543973923, + -0.013466546311974525, + 0.004913986194878817, + 0.06857696175575256, + -0.01824813336133957, + -0.028193745762109756, + 0.06316886842250824, + 0.04184300824999809, + -0.014463578350841999, + -0.08422864228487015, + -0.03904841095209122, + 0.012465209700167179, + 0.03183068707585335, + -0.044560618698596954, + 0.006623488385230303, + 0.029108552262187004, + -0.06795834004878998, + -0.013272765092551708, + 0.03538980707526207, + -0.014920607209205627, + -0.04202292859554291, + 0.01959642395377159, + 0.058761268854141235, + -0.015568089671432972, + -0.02826978638768196, + 0.04763338714838028, + 0.017470577731728554, + -0.06633725017309189, + 0.02983638271689415, + 0.008279242552816868, + -0.07412602007389069, + 0.0589129813015461, + -0.09687534719705582, + 0.02222447469830513, + 0.017904561012983322, + 0.10533946007490158, + -0.019055254757404327, + 0.016219433397054672, + -0.006433268077671528, + 0.005175107158720493, + 0.02824309840798378, + 0.03320182487368584, + 0.08446840941905975, + -0.0552574060857296, + -0.015666628256440163, + -0.021837059408426285, + 0.07901100069284439, + -0.0027941642329096794, + -0.04844581335783005, + 0.011150171048939228, + 0.058326464146375656, + 0.04418105259537697, + 0.012438265606760979, + 0.020189592614769936, + -0.037081100046634674, + -0.014655673876404762, + 0.0681854858994484, + -0.0036923070438206196, + 0.06654728949069977, + 0.035807907581329346, + -1.934582627427517e-08, + -0.012188559398055077, + -0.1191001757979393, + -0.10726099461317062, + 0.03449251130223274, + 0.019788667559623718, + -0.03485754504799843, + -0.038660742342472076, + -0.08247590810060501, + -0.04353099688887596, + -0.011089437641203403, + 0.02823008969426155, + -0.03960728645324707, + -0.07170303910970688, + -0.010571271181106567, + 0.025946784764528275, + -0.04865991696715355, + -0.05172324180603027, + 0.025528481230139732, + -0.01004513818770647, + -0.07277286797761917, + 0.053264111280441284, + 0.03205088898539543, + 0.05332453176379204, + -0.01663869433104992, + 0.12647485733032227, + 0.04864891245961189, + -0.024988319724798203, + -0.025840356945991516, + 0.07988649606704712, + 0.048933353275060654, + 0.04003329947590828, + 0.010349410586059093, + -0.04245121031999588, + -0.023384451866149902, + -0.08768610656261444, + 0.0008015098283067346, + -0.06544118374586105, + 0.019714849069714546, + -0.051944974809885025, + 0.10496353358030319, + 0.030262429267168045, + -0.06463709473609924, + -0.0125895906239748, + 0.010896679945290089, + -0.04843064397573471, + 0.015748510137200356, + 0.033682093024253845, + -0.02643452025949955, + 0.04116534814238548, + -0.13594307005405426, + 0.008868676610291004, + -0.09103279560804367, + 0.06337229907512665, + -0.04787905886769295, + -0.003263286780565977, + -0.04818666726350784, + 0.05897212401032448, + 0.05548853054642677, + -0.004086523316800594, + 0.009280429221689701, + 0.10769551992416382, + 0.07193641364574432, + -0.06119222193956375, + 0.02378535270690918 + ], + "rug-bold||*updated*,tapestry,carpet": [ + 0.007504611741751432, + 0.0389566533267498, + 0.04534062743186951, + 0.0029906819108873606, + 0.02499278634786606, + 0.021833078935742378, + -0.0036588578950613737, + -0.07905825227499008, + -0.03719852864742279, + -0.00759397866204381, + -0.015406934544444084, + 0.0389123409986496, + -0.008579189889132977, + -0.003328001592308283, + -0.016213908791542053, + 0.05892186984419823, + 0.06243361905217171, + 0.06363070756196976, + -0.017410192638635635, + 0.028251253068447113, + -0.05956868827342987, + 0.08139995485544205, + -0.0012337511871010065, + 0.029611743986606598, + 0.013971565291285515, + -0.02545127086341381, + -0.038279466331005096, + -0.04312434047460556, + 0.02393793687224388, + -0.0649489313364029, + 0.01923285983502865, + 0.023981386795639992, + 0.08896270394325256, + 0.022030683234333992, + 0.029699457809329033, + 0.008529366925358772, + 0.005257543176412582, + 0.007194814272224903, + 0.0414709746837616, + 0.09467911720275879, + 0.06217694655060768, + -0.016923749819397926, + -0.0930093452334404, + 0.0006737182848155499, + -0.058710165321826935, + -0.03289879485964775, + -0.007591141853481531, + -0.004316865000873804, + 0.0015370637411251664, + 0.08440184593200684, + -0.08345575630664825, + -0.09781628847122192, + -0.0951501801609993, + 0.002604908775538206, + -0.030192630365490913, + 0.017543433234095573, + 0.06541192531585693, + -0.0038837918546050787, + 0.04153398424386978, + -0.10213866829872131, + 0.025350918993353844, + 0.03107623942196369, + 0.016353322193026543, + 0.049805548042058945, + 0.05620086193084717, + -0.005898632109165192, + 0.00646555470302701, + 0.026057157665491104, + 0.002881221938878298, + 0.06927534192800522, + -0.00702342065051198, + 0.047410935163497925, + 0.02978425659239292, + 0.003967409022152424, + -0.07775509357452393, + 0.004838264547288418, + -0.01456165499985218, + -0.03587149456143379, + 0.001387923490256071, + -0.06379524618387222, + -0.06454438716173172, + -0.0951753705739975, + -0.07939990609884262, + -0.029975201934576035, + 0.01696000061929226, + 0.020789699628949165, + -0.0788024291396141, + -0.02482755109667778, + -0.019240863621234894, + -0.07286711782217026, + 0.0009724779520183802, + -0.026288172230124474, + -0.02261791005730629, + -0.00042404542909935117, + -0.04780883714556694, + 0.06103060767054558, + 0.019306374713778496, + 0.04528127238154411, + -0.06155042350292206, + 0.0602201484143734, + 0.01228228397667408, + 0.03878476470708847, + 0.040364380925893784, + 0.026136236265301704, + -0.09256234019994736, + -0.02512247860431671, + -0.030921101570129395, + -0.04219313710927963, + -0.0167353805154562, + -0.019345659762620926, + 0.022715475410223007, + -0.14023029804229736, + -0.011337915435433388, + -0.10423141717910767, + -0.022617027163505554, + -0.026849504560232162, + 0.008978578262031078, + -0.033496636897325516, + -0.008229555562138557, + 0.11627615243196487, + 0.11651810258626938, + -0.05149514973163605, + 0.038365576416254044, + -0.036635734140872955, + -0.07391625642776489, + -0.04076895862817764, + 0.025598065927624702, + -3.5376241675187654e-33, + 0.03756425902247429, + 0.06695310026407242, + -0.005348294973373413, + 0.0981033593416214, + 0.0872458964586258, + -0.00498935068026185, + 0.006388228852301836, + -0.05494481325149536, + -0.06625096499919891, + 0.032249581068754196, + 0.077608622610569, + 0.04885415360331535, + -0.07199299335479736, + 0.0032364102080464363, + -0.05225570127367973, + -0.03317263722419739, + 0.037085000425577164, + 0.010152492672204971, + -0.0567493662238121, + 0.06019388511776924, + -0.01914490945637226, + 0.10307539999485016, + -0.07730783522129059, + -0.04975420981645584, + -0.06758911907672882, + -0.03742130100727081, + 0.012653584592044353, + 0.017615843564271927, + -0.07123922556638718, + 0.02927621826529503, + 0.069637231528759, + 0.046521879732608795, + 0.035505641251802444, + 0.053055841475725174, + -0.08009545505046844, + -0.029534917324781418, + -0.14952825009822845, + -0.03493547439575195, + 0.020895041525363922, + 0.045014020055532455, + -0.0038068874273449183, + -0.009825313463807106, + 0.03405170142650604, + 0.016645684838294983, + 0.029077846556901932, + 0.07390662282705307, + 0.001736295409500599, + -0.018795868381857872, + 0.05395890027284622, + 0.0190426092594862, + 0.08148439973592758, + 0.05405843257904053, + -0.06542834639549255, + -0.032849621027708054, + -0.003998457454144955, + -0.07559273391962051, + -0.027618734166026115, + 0.03878810256719589, + 0.011324552819132805, + -0.027065593749284744, + 0.0986751914024353, + 0.012071498669683933, + 0.06373005360364914, + 0.03170336037874222, + -0.03563174232840538, + -0.0018760942621156573, + -0.009696012362837791, + 0.046697910875082016, + 0.09708520770072937, + 0.07553525269031525, + -0.047852665185928345, + 0.06979326158761978, + 0.017597898840904236, + 0.061427731066942215, + 0.038731012493371964, + -0.010264169424772263, + -0.0975632295012474, + -0.003935599233955145, + 0.011153817176818848, + -0.1382656693458557, + -0.14104996621608734, + 0.02965514548122883, + -0.09142283350229263, + 0.07794371247291565, + -0.024392498657107353, + -0.01688992790877819, + -0.051678504794836044, + 0.061470963060855865, + -0.054559700191020966, + -0.013245513662695885, + 0.0026840928476303816, + 0.003917813766747713, + -0.02906681038439274, + -0.05601738765835762, + -0.004140239208936691, + 4.695841873790835e-34, + 0.08758420497179031, + 0.025644516572356224, + -0.047608159482479095, + 0.01658981665968895, + -0.06970632821321487, + 0.02916526608169079, + -0.032744400203228, + 0.07713416963815689, + -0.03539479151368141, + 0.06411180645227432, + 0.039293840527534485, + 0.017969120293855667, + -0.06329160183668137, + -0.01249100174754858, + 0.04614107683300972, + 0.04476020857691765, + 0.10912991315126419, + -0.05028001219034195, + -0.01772228814661503, + -0.023215295746922493, + 0.011488130316138268, + -0.060791704803705215, + -0.020910004153847694, + 0.09157940745353699, + -0.06482525914907455, + 0.033854592591524124, + 0.09268893301486969, + -0.05691564455628395, + 0.04236296936869621, + -0.016734985634684563, + -0.047014907002449036, + -0.017474131658673286, + -0.04022878408432007, + 0.09351135790348053, + -0.01604251191020012, + -0.029068760573863983, + 0.0157907884567976, + -0.05737762525677681, + -0.040204327553510666, + -0.03922151401638985, + 0.003789593931287527, + 0.008287186734378338, + 0.0060340906493365765, + 0.047525715082883835, + -0.04970378801226616, + -0.06733746826648712, + -0.004484963603317738, + 0.035052381455898285, + -0.0006218864582479, + 0.015826893970370293, + 0.0027604226488620043, + -0.02034512162208557, + -0.0019063124200329185, + -0.035279352217912674, + -0.0114209009334445, + 0.06970450282096863, + -0.0470588393509388, + 0.0107977744191885, + -0.025545712560415268, + 0.10312064737081528, + -0.038198765367269516, + 0.13080617785453796, + -0.027194421738386154, + -0.08957559615373611, + 0.00015673857706133276, + 0.020008720457553864, + -0.048285141587257385, + -0.07389592379331589, + -0.006543149705976248, + 0.05378050357103348, + 0.04844018071889877, + 0.03876214474439621, + -0.036815766245126724, + 0.03474026173353195, + 0.01354613620787859, + -0.026141971349716187, + 0.1194901242852211, + -0.06457844376564026, + -0.026639724150300026, + -0.007480749394744635, + -0.05490849167108536, + -0.027776651084423065, + -0.041833601891994476, + 0.022743986919522285, + -0.008684906177222729, + 0.02903668023645878, + -0.06542248278856277, + 0.0602792352437973, + 0.035323478281497955, + -0.0633711889386177, + -0.004573195241391659, + 0.020612306892871857, + -0.020136089995503426, + -0.04690675437450409, + -0.03846628963947296, + -1.733012133797729e-08, + -0.05520516261458397, + 0.03051215410232544, + -0.029275521636009216, + -0.06395912915468216, + -0.0033385036513209343, + -0.050301969051361084, + -0.025323234498500824, + 0.0018092455575242639, + -0.06466039270162582, + -0.01787017285823822, + 0.11679757386445999, + -0.030227938666939735, + 0.001065439311787486, + 0.02830570936203003, + 0.09806090593338013, + 0.02345462515950203, + -0.05480008199810982, + -0.00343992724083364, + -0.07629826664924622, + -0.06712521612644196, + -0.023285437375307083, + 0.012203778140246868, + 0.016601337119936943, + 0.020524630323052406, + -0.05510038137435913, + -0.0034959674812853336, + -0.04633985832333565, + -0.0020512237679213285, + 0.05093355476856232, + 0.06153891235589981, + 0.11443230509757996, + 0.009172530844807625, + 0.019202180206775665, + 0.05109238997101784, + -0.07332030683755875, + -0.013268658891320229, + 0.038948383182287216, + -0.024510756134986877, + 0.04464093595743179, + 0.09689106792211533, + 0.03032008931040764, + -0.05003105476498604, + 0.041583046317100525, + -0.013542018830776215, + 0.006625505164265633, + -0.04862923175096512, + 0.021844949573278427, + -0.059196118265390396, + -0.07651975005865097, + -0.03936533257365227, + 0.004307451192289591, + -0.033990174531936646, + 0.002433177549391985, + 0.08373352140188217, + -0.016314592212438583, + -0.0802931860089302, + -0.013035155832767487, + 0.05879329517483711, + 0.017000583931803703, + 0.06306315958499908, + 0.13959714770317078, + -0.07377281039953232, + 0.03735560551285744, + 0.03562302514910698 + ], + "ruler-bold||measure,scale,distance": [ + 0.04067439213395119, + 0.037560611963272095, + -0.06909237802028656, + 0.010127514600753784, + -0.021034978330135345, + 0.0008181194425560534, + -0.003106933319941163, + 0.029904542490839958, + 0.027582773938775063, + 0.011121794581413269, + 0.03086843341588974, + -0.06270129233598709, + 0.04439426213502884, + 0.02116456627845764, + -0.08583375066518784, + -0.03130783140659332, + -0.011517687700688839, + 0.06168144941329956, + -0.11966808140277863, + 0.045685455203056335, + 0.053189124912023544, + 0.016663456335663795, + 0.042484134435653687, + 0.09492912143468857, + 0.015240323729813099, + -0.008328703232109547, + 0.027115819975733757, + -0.009057986550033092, + 0.02687259018421173, + -0.05832594260573387, + -0.01594051904976368, + -0.06665485352277756, + 0.11222251504659653, + 0.027292661368846893, + 0.0008722830680198967, + -0.02758249267935753, + 0.027890535071492195, + 0.032587938010692596, + 0.000880843261256814, + 0.01824028789997101, + 0.02006533183157444, + -0.004013570491224527, + 0.02592604234814644, + 0.07505106925964355, + -0.050692785531282425, + 0.06530404835939407, + -0.06290382146835327, + 0.0068642813712358475, + -0.03875935077667236, + -0.03988546133041382, + -0.03583922237157822, + -0.016786444932222366, + -0.11809033900499344, + -0.044812608510255814, + 0.05290853977203369, + 0.09189383685588837, + 0.001312691136263311, + -0.0628487840294838, + 0.07714840024709702, + -0.03197138383984566, + -0.0015584181528538465, + 0.041087064892053604, + -0.021044693887233734, + 0.021427566185593605, + -0.058615054935216904, + 0.02326088957488537, + -0.027493417263031006, + -0.024035053327679634, + -0.04324972629547119, + 0.031941406428813934, + 0.02345201186835766, + -0.007705728989094496, + 0.056989289820194244, + -0.006362410262227058, + -0.018550949171185493, + -0.06901883333921432, + -0.039584022015333176, + 0.008576744236052036, + 0.015684472396969795, + -0.023932909592986107, + -0.16300302743911743, + -0.03452300280332565, + -0.010353324934840202, + 0.05971138924360275, + 0.0894443616271019, + 0.05515875667333603, + -0.021204810589551926, + -0.09039788693189621, + 0.029382234439253807, + -0.06595506519079208, + 0.030428461730480194, + -0.019644221290946007, + -0.12144079059362411, + 0.05081722512841225, + -0.09824205189943314, + -0.048519790172576904, + 0.01958366110920906, + 6.0370457504177466e-05, + 0.01015196368098259, + 0.08359865099191666, + 0.006907628383487463, + 0.030121618881821632, + -0.002201411174610257, + 0.036667678505182266, + -0.006977427285164595, + 0.02945990301668644, + -0.03122726082801819, + -0.04899159073829651, + 0.07951756566762924, + -0.01659386046230793, + 0.06530854851007462, + -0.09964759647846222, + -0.0617218054831028, + 0.057601235806941986, + 0.050647612661123276, + -0.061051417142152786, + 0.045102059841156006, + -0.0024549681693315506, + 0.05885922163724899, + -0.05226515233516693, + 0.008211958222091198, + -0.034653667360544205, + -0.09033234417438507, + -0.055501386523246765, + 0.004915569443255663, + 0.09436751157045364, + 0.08842749893665314, + -2.3935210259932024e-33, + -0.022610832005739212, + -0.016573971137404442, + 0.0024915847461670637, + 0.06751016527414322, + 0.008513795211911201, + 0.022578174248337746, + -0.054972417652606964, + 0.018016399815678596, + 0.017058897763490677, + 0.07279372960329056, + 0.09476436674594879, + 0.13859744369983673, + 0.02949851006269455, + 0.04695240408182144, + 0.07108122855424881, + -0.04168744757771492, + 0.0588836632668972, + -0.016611093655228615, + -0.10046247392892838, + 0.007251497358083725, + -0.03828555345535278, + -0.06849443167448044, + 0.04122977331280708, + 0.003742851782590151, + -0.03251807019114494, + -0.06232675537467003, + 0.012620066292583942, + 0.01986847259104252, + -0.03563069552183151, + 0.007800698280334473, + 0.006749298889189959, + -0.032504770904779434, + 0.027909453958272934, + -0.047314148396253586, + -0.024347959086298943, + -0.005282037425786257, + -0.019395573064684868, + -0.0011071001645177603, + 0.031701695173978806, + -0.05911780893802643, + -0.003309367224574089, + -0.04802248999476433, + -0.0004401936603244394, + -0.021737966686487198, + -0.03200093284249306, + 0.14772555232048035, + 0.020354831591248512, + -0.053972747176885605, + 0.07252735644578934, + -0.08442502468824387, + 0.03628170117735863, + -0.02144300751388073, + 0.08138387650251389, + -0.032440848648548126, + 0.07195749133825302, + -0.006798993330448866, + -0.024024875834584236, + 0.07720011472702026, + 0.010143207386136055, + 0.01332020666450262, + -0.007719045039266348, + 0.012910179793834686, + 0.06754706799983978, + 0.08248630911111832, + 0.04665995389223099, + -0.025178825482726097, + -0.05421706661581993, + 0.02673138491809368, + 0.0755401998758316, + -0.07753558456897736, + 0.028643015772104263, + 0.026326945051550865, + -0.005648490507155657, + 0.021070998162031174, + -0.03268666937947273, + 0.029577041044831276, + 0.053477246314287186, + -0.021489480510354042, + 0.02634558081626892, + -0.032140254974365234, + -0.11528512090444565, + 0.04180542379617691, + 0.003752875840291381, + -0.0026313590351492167, + -0.03046547807753086, + -0.043849747627973557, + 0.02331014908850193, + -9.591693697075243e-07, + -0.022909918799996376, + 0.003912133164703846, + -0.09679794311523438, + -0.019300108775496483, + -0.002544331131502986, + -0.012712162919342518, + -0.12483073025941849, + 6.046627227904688e-34, + -0.011569514870643616, + 0.01666853204369545, + 0.01609007455408573, + 0.03171459957957268, + -0.004321565385907888, + 0.055611368268728256, + -0.004937390331178904, + 0.06552478671073914, + -0.007349302992224693, + 0.02244783379137516, + -0.021804364398121834, + 0.01673327572643757, + -0.047495756298303604, + -0.07795576006174088, + 0.02979452535510063, + 0.020906032994389534, + -0.013147981837391853, + -0.0357012003660202, + -0.07805275917053223, + -0.023949796333909035, + 0.007162809371948242, + -0.0012543471530079842, + -0.07178831845521927, + 0.03640422224998474, + -0.06422886252403259, + 0.031233852729201317, + -0.029433216899633408, + -0.03206149488687515, + -0.14232146739959717, + -0.04281138256192207, + -0.017396418377757072, + -0.13649457693099976, + 0.08552397042512894, + -0.0031795836985111237, + -0.056616634130477905, + -0.06287652999162674, + 0.048820316791534424, + -0.07595427334308624, + 0.016701715067029, + 0.05445333570241928, + -0.03476244583725929, + 0.06288709491491318, + 0.05309077724814415, + -0.03561526909470558, + -0.021510813385248184, + -0.014329069294035435, + 0.07696203142404556, + -0.05250022932887077, + -0.021663149818778038, + 0.03456704318523407, + 0.010004879906773567, + 0.06870047003030777, + 0.03001321852207184, + 0.04186961427330971, + -0.10149580985307693, + 0.013672306202352047, + -0.040731824934482574, + -0.023664148524403572, + 0.02395412139594555, + 0.05099128186702728, + -0.031507618725299835, + -0.013314943760633469, + 0.00018122886831406504, + 0.08446662873029709, + 0.028152354061603546, + 0.04710174351930618, + 0.07509281486272812, + 0.0011163781164214015, + -0.018057800829410553, + 0.05720316618680954, + 0.011510290205478668, + 0.023075604811310768, + 0.011177408508956432, + 0.00014696893049404025, + -0.05230221524834633, + -0.05111091583967209, + 0.023793261498212814, + 0.013361134566366673, + 0.007778602186590433, + 0.08683522045612335, + 0.024762069806456566, + -0.007665092591196299, + -0.009514730423688889, + 0.0682973563671112, + -0.03937138617038727, + -0.010831316001713276, + 0.07837516069412231, + 0.00815917644649744, + 0.037265561521053314, + 0.02361593395471573, + -0.023486465215682983, + -0.01926383003592491, + -0.012561400420963764, + -0.11769311875104904, + -0.00919262133538723, + -1.599598853374573e-08, + -0.04421989247202873, + -0.01831122860312462, + -0.029405787587165833, + -0.039205219596624374, + -0.004704370629042387, + 0.008492991328239441, + 0.016851618885993958, + -0.012552518397569656, + -0.14022627472877502, + 0.054064203053712845, + 0.07806235551834106, + -0.0032718093134462833, + -0.0865892767906189, + 0.08523237705230713, + -0.02873878739774227, + -0.06315717101097107, + 0.016154326498508453, + 0.04611728712916374, + -0.03866758570075035, + -0.03501974046230316, + -0.03241468593478203, + 0.06844194233417511, + 0.05502202361822128, + 0.024333862587809563, + 0.0031365281902253628, + -0.0016224669525399804, + -0.09914004802703857, + 0.06732263416051865, + 0.05346798896789551, + 0.020482664927840233, + 0.08697941154241562, + 0.07086741179227829, + 0.09937366098165512, + 0.06572988629341125, + -0.05948590487241745, + -0.06244973838329315, + -0.11117234081029892, + 0.04828879237174988, + 0.006299352739006281, + 0.10704411566257477, + -0.05110601708292961, + -0.03083856776356697, + 0.01863955520093441, + 0.03414110466837883, + 0.045737236738204956, + 0.015203580260276794, + 0.058492373675107956, + -0.001833927584812045, + -0.06113061308860779, + -0.03291776776313782, + -0.006612541154026985, + 0.03030095435678959, + -0.0028878410812467337, + 0.029108861461281776, + -0.07448827475309372, + -0.08962800353765488, + -0.02682899683713913, + 0.02565348707139492, + -0.08176516741514206, + 0.017468860372900963, + 0.09583405405282974, + -0.08048521727323532, + -0.049034811556339264, + -0.009792950004339218 + ], + "sailboat-bold||*new*,sailing,ship,vehicles,transportation,sports,places,locations": [ + 0.029801901429891586, + -0.020942414179444313, + -0.012884266674518585, + 0.06759244948625565, + 0.00667967926710844, + -0.04017505794763565, + 0.0011071667540818453, + -0.05194738507270813, + -0.11692917346954346, + 0.005008144304156303, + 0.047114212065935135, + 0.012807382270693779, + -0.027676984667778015, + 0.04595474153757095, + -0.01124435756355524, + 0.049741558730602264, + 0.04673914238810539, + 0.008207499049603939, + 0.019742030650377274, + 0.05896880477666855, + -0.005738334264606237, + 0.06710371375083923, + -0.014251131564378738, + 0.024342617020010948, + 0.0381905771791935, + 0.00625659991055727, + 0.05256227031350136, + 0.01979195699095726, + -0.04688055068254471, + -0.005723961628973484, + -0.08138170093297958, + 0.0661172866821289, + 0.033583249896764755, + 0.030812468379735947, + 0.06071281060576439, + 0.047249920666217804, + -0.01578868366777897, + -0.034588273614645004, + -0.011215954087674618, + -0.009355630725622177, + -0.024960855022072792, + -0.03040333092212677, + -0.0041587576270103455, + 0.14134585857391357, + -0.008441908285021782, + -0.09123216569423676, + 0.014550763182342052, + 0.010205648839473724, + 0.03820160776376724, + 0.07602392137050629, + -0.064347043633461, + -0.07480206340551376, + -0.07627085596323013, + -0.05988958477973938, + -0.028164559975266457, + -0.037140071392059326, + -0.07256340980529785, + 0.02930479124188423, + 0.030894864350557327, + 0.03618364408612251, + 0.08930610865354538, + 0.04179440066218376, + -0.00775322737172246, + 0.06084298714995384, + -0.012491400353610516, + -0.009818914346396923, + -0.06424496322870255, + 0.05371768772602081, + -0.07120270282030106, + 0.0156586691737175, + 0.032132551074028015, + 0.02172139659523964, + 0.07284142076969147, + 0.003927677869796753, + -0.02284892648458481, + -0.1113617941737175, + 0.020499955862760544, + 0.03984717279672623, + -0.018115466460585594, + 0.02211604453623295, + -0.06828394532203674, + -0.07141820341348648, + -0.06234334781765938, + -0.00036116151022724807, + 0.00032255268888548017, + 0.0005825840635225177, + -0.011513715609908104, + -0.0019581138622015715, + -0.029263971373438835, + -0.010363495908677578, + -0.065025195479393, + -0.08010949194431305, + -0.05350693315267563, + 0.0004548434808384627, + -0.11702249199151993, + 0.06837721914052963, + -0.03436907008290291, + 0.05769915506243706, + 0.007152419537305832, + 0.014359443448483944, + 0.06807630509138107, + 0.027392566204071045, + 0.04338626563549042, + 0.03860724717378616, + -0.06453439593315125, + 0.04690536856651306, + -0.02844572253525257, + 0.026403749361634254, + 0.015756933018565178, + -0.07141949236392975, + -0.05844861641526222, + -0.017227064818143845, + -0.033401090651750565, + -0.03572150319814682, + -0.1013217568397522, + 0.00023183187295217067, + -0.09422575682401657, + -0.026946010068058968, + 0.07714775949716568, + 0.08086701482534409, + 0.039219409227371216, + -0.04727446660399437, + 0.1007433608174324, + -0.005241577047854662, + -0.07724901288747787, + 0.007883375510573387, + 0.08376751840114594, + -4.6274132252226e-33, + -0.015128825791180134, + 0.012113159522414207, + -0.031040474772453308, + 0.1006430834531784, + 0.03529887646436691, + -0.008012461476027966, + -0.01233580894768238, + -0.02964608743786812, + -0.07663917541503906, + 0.02303406223654747, + 0.04803115501999855, + 0.042063601315021515, + -0.035598643124103546, + 0.03946110978722572, + 0.09967633336782455, + -0.05700940638780594, + 0.0011225967900827527, + -0.09408579766750336, + -0.07763665169477463, + -0.06221221759915352, + -0.00379417696967721, + 0.04385082423686981, + -0.005518485326319933, + -0.0943867415189743, + -0.048800185322761536, + -0.08721375465393066, + 0.030750354751944542, + -0.043751657009124756, + -0.05261552706360817, + 0.08747896552085876, + -0.01709229126572609, + 0.00422188825905323, + 0.05006132647395134, + -0.003026828169822693, + -0.0047518969513475895, + 0.01678287237882614, + -0.03376082330942154, + -0.06933135539293289, + -0.03692284971475601, + 0.02468481846153736, + -0.10686557739973068, + -0.0307613592594862, + -0.0767698660492897, + 0.10420431196689606, + -0.008730442263185978, + 0.010131201706826687, + -0.015116013586521149, + -0.00608504144474864, + 0.0664835125207901, + 0.04552501440048218, + -0.04387388005852699, + -0.07760331779718399, + -0.036266252398490906, + -0.02930239588022232, + -0.024176442995667458, + -0.014258787967264652, + 0.0025084714870899916, + 0.055239107459783554, + -0.0021546289790421724, + -0.07809503376483917, + -0.012238641269505024, + -0.011081362143158913, + 0.08214986324310303, + -0.05543720722198486, + 0.03374204784631729, + 0.11740051209926605, + 0.04044736549258232, + -0.030455857515335083, + -0.01226755604147911, + 0.016730111092329025, + -0.024874992668628693, + 0.016244234517216682, + 0.025602763518691063, + 0.057022713124752045, + 0.06506984680891037, + 0.07624740898609161, + 0.04403846338391304, + -0.0059856753796339035, + -0.030413057655096054, + -0.038169752806425095, + -0.13835501670837402, + 0.05929845571517944, + -0.08348821103572845, + 0.12971459329128265, + 0.010347554460167885, + -0.04069148749113083, + -0.02098427340388298, + -0.034453656524419785, + -0.005059120245277882, + 0.013889109715819359, + -0.07420948147773743, + 0.028122946619987488, + 0.01938283070921898, + -0.08719098567962646, + -0.05136149376630783, + 5.269962498282056e-34, + 0.008950463496148586, + 0.032973628491163254, + -0.02038508653640747, + -0.07603932917118073, + -0.02746281586587429, + 0.006467720028012991, + 0.012663823552429676, + -0.019303470849990845, + 0.032353874295949936, + 0.01068784762173891, + -0.13227802515029907, + -0.0483219251036644, + 0.0003441135340835899, + 0.01664458028972149, + -0.03821035102009773, + 0.025320585817098618, + 0.050099462270736694, + 0.0881001353263855, + -0.014547367580235004, + -0.007089914754033089, + 0.06597563624382019, + 0.0064428881742060184, + -0.033296138048172, + 0.05386165902018547, + 0.05274052917957306, + 0.007337986025959253, + 0.020498860627412796, + -0.04521511495113373, + -0.05597730726003647, + -0.05295097082853317, + -0.03179275244474411, + 0.023929964751005173, + 0.08999350666999817, + 0.06990335881710052, + -0.0897851213812828, + 0.12350212782621384, + 0.055414628237485886, + 0.010393530130386353, + -0.009793748147785664, + -0.009770180098712444, + 0.06359157711267471, + -0.08049893379211426, + 0.07910872995853424, + 0.0755431056022644, + -0.02527584135532379, + -0.041101619601249695, + -0.12480340152978897, + 0.03781657665967941, + 0.019567877054214478, + 0.05039374157786369, + -0.023832939565181732, + 0.010003633797168732, + 0.05102229118347168, + 0.03006928041577339, + -0.012963684275746346, + 0.0004588618758134544, + -0.0403548888862133, + -0.05104624107480049, + -0.01323990523815155, + 0.04890964552760124, + -0.001064307289198041, + 0.020459569990634918, + -0.08702176064252853, + 0.0986989364027977, + 0.0012475326657295227, + -0.07260910421609879, + -0.03575899824500084, + -0.01065294723957777, + -0.09213583171367645, + -0.012456478551030159, + -0.061052557080984116, + 0.00647876039147377, + -0.10863454639911652, + 0.0562039278447628, + -0.05612282454967499, + -0.03256085515022278, + 0.029230957850813866, + 0.04358634352684021, + -0.01328333280980587, + 0.08163341879844666, + 0.05612064525485039, + -0.021831413730978966, + -0.004079681821167469, + 0.01997905597090721, + -0.019161706790328026, + 0.00965962279587984, + -0.004114924464374781, + -0.0363435223698616, + 0.03504171967506409, + -0.025225380435585976, + 0.024946533143520355, + 0.05089598149061203, + -0.10128696262836456, + -0.06140141934156418, + -0.058811940252780914, + -2.3353393885372498e-08, + 0.0534229539334774, + 0.01409134455025196, + -0.018117494881153107, + 0.008425213396549225, + 0.0002594022953417152, + -0.05675874277949333, + -0.01990034431219101, + 0.029266417026519775, + -0.05144043266773224, + -0.04498191550374031, + 0.030242575332522392, + -0.01638248935341835, + 0.0006722487160004675, + -0.026740053668618202, + 0.0297866128385067, + 0.0017297030426561832, + 0.02799704670906067, + 0.028070751577615738, + -0.021424217149615288, + -0.053962450474500656, + 0.018706539645791054, + 0.02120661549270153, + 0.011940817348659039, + 0.02164563164114952, + -0.07031117379665375, + -0.003606347367167473, + -0.03569825738668442, + -0.014643944799900055, + 0.09950705617666245, + -0.05217856168746948, + 0.04503655806183815, + 0.07850925624370575, + -0.03063056617975235, + 0.03988095372915268, + -0.09027169644832611, + -0.014890152029693127, + -0.0601782351732254, + -0.01726210117340088, + -0.09962914139032364, + 0.018557380884885788, + -0.0463360920548439, + 0.08188554644584656, + -0.003634205088019371, + -0.0047311317175626755, + 0.025952113792300224, + 0.05957527831196785, + 0.08389594405889511, + -0.05676136910915375, + -0.04356474429368973, + -0.07709751278162003, + -0.017490068450570107, + -0.01120973564684391, + 0.06902454048395157, + 0.0519687794148922, + 0.015684209764003754, + 0.11205015331506729, + 0.013103915378451347, + 0.06652330607175827, + 0.012110330164432526, + -0.0012162936618551612, + 0.07001421600580215, + 0.004174235742539167, + 0.041148412972688675, + 0.09534057229757309 + ], + "scales-bold||measure,balance,law,justice,government": [ + 0.008500362746417522, + -0.009578707627952099, + -0.07132942974567413, + -0.013626795262098312, + 0.003337014699354768, + 0.052298493683338165, + 0.011450210586190224, + 0.035543158650398254, + -0.0010600867681205273, + 0.03864623233675957, + 0.06399256736040115, + -0.029602909460663795, + -0.009496915154159069, + 0.00402601296082139, + -0.022476673126220703, + -0.023601680994033813, + 0.010047855786979198, + 0.06947147846221924, + -0.08743080496788025, + 0.07434114068746567, + 0.04009804502129555, + 0.00885257963091135, + -0.011848410591483116, + 0.06789299100637436, + -0.004078029654920101, + -0.0201706700026989, + -0.05618342384696007, + -0.029568618163466454, + -0.0183468759059906, + -0.05432916805148125, + 0.008907070383429527, + 0.0421023964881897, + 0.10283691436052322, + 0.0741448849439621, + -0.027646061033010483, + -0.004625232890248299, + 0.07791723310947418, + -0.05200376361608505, + -0.0002520260459277779, + -0.03053201362490654, + 0.023877225816249847, + 0.010062392801046371, + 0.04621183127164841, + 0.022735532373189926, + -0.0157626923173666, + 0.008165387436747551, + -0.017397265881299973, + -0.015170960687100887, + -0.07879854738712311, + -0.023863444104790688, + -0.03353121131658554, + 0.010754694230854511, + -0.10378609597682953, + 0.019675610587000847, + -0.005649575497955084, + -0.02059566229581833, + -0.0013170121237635612, + -0.03989790380001068, + 0.011706947349011898, + -0.0552738681435585, + -0.015595856122672558, + 0.02517758123576641, + -0.02041502669453621, + 0.05751872435212135, + 0.050152551382780075, + -0.002155025489628315, + -0.014956997707486153, + -0.03208586201071739, + -0.05325014144182205, + 0.026815524324774742, + 0.022509459406137466, + -0.03470214828848839, + 0.03197614848613739, + 0.009371939115226269, + -0.022513771429657936, + -0.08105416595935822, + -0.028057556599378586, + -0.03761725500226021, + 0.007780801970511675, + -0.0037364244926720858, + -0.09599591791629791, + -0.03751077502965927, + -0.03411317244172096, + 0.05915005877614021, + 0.019121233373880386, + -0.04556073248386383, + -0.04623844474554062, + -0.07828211784362793, + 0.03018028661608696, + -0.029834695160388947, + 0.03009461611509323, + 0.045909538865089417, + 0.04928750917315483, + 0.021203195676207542, + -0.005732367746531963, + 0.026691241189837456, + -0.02271667681634426, + -0.04845092445611954, + 0.036841005086898804, + 0.06559433043003082, + 0.04876917973160744, + 0.07046271860599518, + 0.05021754279732704, + 0.03818133473396301, + -0.010712694376707077, + -0.028676381334662437, + -0.016078820452094078, + -0.021778564900159836, + 0.011073400266468525, + -0.03328017145395279, + 0.028153231367468834, + -0.06881915032863617, + 0.008774952962994576, + -0.011281348764896393, + 0.11776933819055557, + -0.053803008049726486, + 0.003308245912194252, + 0.04263882339000702, + 0.024163048714399338, + 0.031216854229569435, + 0.013878263533115387, + -0.003544060979038477, + -0.10372340679168701, + -0.07906071841716766, + -0.01505881454795599, + 0.07079734653234482, + 0.023498577997088432, + -4.049727546770526e-33, + -0.037888262420892715, + -0.05982232838869095, + 0.012455500662326813, + 0.026410600170493126, + -0.03986775875091553, + -0.0029531149193644524, + -0.04858613759279251, + -0.03326723724603653, + -0.053127069026231766, + 0.07582277804613113, + 0.02714006043970585, + 0.17643038928508759, + 0.040821753442287445, + 0.059219036251306534, + 0.049349088221788406, + -0.05444277077913284, + -0.0655435174703598, + 0.019566679373383522, + 0.016328591853380203, + 0.03693847730755806, + 0.008227808400988579, + -0.040109533816576004, + 0.012718340381979942, + -0.009520737454295158, + -0.0018042615847662091, + -0.08760899305343628, + -0.008589884266257286, + 0.033703651279211044, + -0.05751105770468712, + -0.02839013934135437, + 0.012710540555417538, + 0.052129048854112625, + 0.03542565926909447, + -0.0353214368224144, + -0.03348338231444359, + 0.02420393005013466, + -0.011517553590238094, + 0.00834087748080492, + 0.02901815064251423, + -0.11021357029676437, + -0.04088563472032547, + -0.013258340768516064, + -0.0033096116967499256, + -0.004259612876921892, + 0.07773423939943314, + 0.062443725764751434, + 0.002107805572450161, + 0.017462173476815224, + 0.007059621158987284, + -0.010185477323830128, + 0.018071364611387253, + -0.022942494601011276, + 0.0752183198928833, + -0.06975167989730835, + 0.022869572043418884, + 0.07242126017808914, + -0.03945294767618179, + 0.09981320053339005, + -0.03941761329770088, + 0.004922152496874332, + 0.021544916555285454, + -0.03442768752574921, + -0.019630277529358864, + 0.021733928471803665, + 0.05749949812889099, + 0.05100754648447037, + -0.08935634791851044, + -0.0041677625849843025, + 0.0811515748500824, + -0.02580859884619713, + 0.03920521214604378, + 0.04851797595620155, + 0.003658985486254096, + 0.062004365026950836, + -0.07755133509635925, + 0.01328271720558405, + 0.005765006877481937, + -0.035328902304172516, + -0.03018399327993393, + 0.008543906733393669, + -0.14015275239944458, + 0.034194108098745346, + 0.024620747193694115, + 0.05822485312819481, + 0.02714621275663376, + -0.03293056786060333, + 0.03849928453564644, + -0.08823661506175995, + 0.03415651246905327, + 0.029512643814086914, + -0.11242130398750305, + -0.0856030210852623, + 0.0559038445353508, + -0.035907525569200516, + -0.06720086932182312, + 5.526213838276583e-34, + -0.027708932757377625, + -0.011645007878541946, + -0.1146053671836853, + 0.05565422773361206, + 0.05003254860639572, + 0.07852361351251602, + -0.06788903474807739, + -0.009481064043939114, + 0.01945674605667591, + 0.009269258007407188, + -0.06400705873966217, + -0.06338544189929962, + -0.007751709781587124, + 0.004884875845164061, + 0.03563506528735161, + -0.05131553113460541, + 0.05109015107154846, + -0.014463461935520172, + -0.019860178232192993, + 0.035643529146909714, + 0.09403451532125473, + 0.002221792470663786, + -0.06313993781805038, + 0.14628221094608307, + 0.005594747606664896, + -0.010828111320734024, + -0.044981054961681366, + -0.1543557345867157, + -0.05903634801506996, + -0.023198861628770828, + -0.033077456057071686, + -0.10333116352558136, + 0.07479682564735413, + 0.037550292909145355, + -0.048475466668605804, + -0.04881573095917702, + 0.07498928904533386, + -0.12031611055135727, + -0.03542692959308624, + 0.014398942701518536, + -0.03570924699306488, + 0.06713728606700897, + 0.01476137526333332, + -0.05066455900669098, + -0.040358904749155045, + -0.024376077577471733, + 0.007149165030568838, + -0.018313223496079445, + -0.07597681879997253, + -0.02994999662041664, + -0.021036507561802864, + 0.04339202865958214, + -0.03233029320836067, + 0.015500365756452084, + -0.06442151218652725, + -0.026591680943965912, + 0.03374043107032776, + -0.04044259339570999, + 0.0010254629887640476, + 0.01822626031935215, + 0.02073497511446476, + 0.0005074256332591176, + -0.09927202016115189, + 0.02699499949812889, + -0.030765904113650322, + 0.015304592438042164, + 0.02080966904759407, + -0.052841901779174805, + -0.0032869905699044466, + 0.0027182160411030054, + -0.0306672602891922, + -0.08086904883384705, + 0.042100343853235245, + -0.042907971888780594, + -0.03366205096244812, + -0.07075066864490509, + 0.01870649866759777, + 0.03255341574549675, + -0.045786745846271515, + 0.01859833300113678, + 0.05142514407634735, + -0.08596895635128021, + -0.0215972438454628, + 0.03429866209626198, + -0.03754925727844238, + 0.03678617998957634, + 0.009602295234799385, + -0.011808177456259727, + 0.08185722678899765, + 0.11792737990617752, + -0.10937551409006119, + -0.045334186404943466, + -0.031161198392510414, + -0.05835419520735741, + -0.002969675464555621, + -2.0452118221214732e-08, + 0.012730924412608147, + 0.05811292305588722, + -0.03183985501527786, + 0.08261196315288544, + -0.0806199163198471, + 0.05514315515756607, + 0.0044468785636126995, + -0.038091663271188736, + -0.126924067735672, + 0.08442272245883942, + 0.08695386350154877, + -0.01379993837326765, + -0.056304194033145905, + 0.02990427240729332, + 0.0444934256374836, + -0.01740521937608719, + 0.01724969409406185, + 0.012216218747198582, + -0.03635816648602486, + -0.012342087924480438, + -0.002989197615534067, + 0.0947129875421524, + -0.047653719782829285, + -0.051024775952100754, + 0.03766957297921181, + 0.05199473723769188, + -0.06538069248199463, + 0.03665401041507721, + 0.0002986796898767352, + 0.06893565505743027, + 0.04888216406106949, + 0.08625125885009766, + -0.04722580313682556, + -0.01310668047517538, + -0.05461486801505089, + -0.02848413772881031, + -0.037098780274391174, + 0.10606322437524796, + 0.06356454640626907, + 0.0337153896689415, + -0.013909716159105301, + 0.03149474412202835, + 0.03207435458898544, + 0.034660324454307556, + 0.07948751002550125, + 0.01799430139362812, + -0.05551377311348915, + 0.1293240487575531, + 0.06098637729883194, + -0.0904850959777832, + 0.009999698959290981, + 0.00617644377052784, + -0.01781550422310829, + 0.026952434331178665, + -0.00643436424434185, + -0.014566516503691673, + 0.0690649226307869, + 0.06845749914646149, + -0.12075205147266388, + 0.006296391133219004, + 0.2000034749507904, + -0.0529266893863678, + 0.002551745157688856, + -0.01485616434365511 + ], + "scan-bold||upc,barcode,products,shopping,scanner": [ + -0.034728847444057465, + -0.004181106574833393, + -0.16309136152267456, + -0.03498236835002899, + 0.018763206899166107, + -0.014507762156426907, + 0.08881112188100815, + -0.057130537927150726, + -0.0844881609082222, + -0.0453626923263073, + 0.04294027015566826, + 0.08745430409908295, + 0.14569537341594696, + -0.03487260267138481, + -0.04389915615320206, + 0.01177859865128994, + -0.004725275561213493, + 0.03426738455891609, + 0.026376310735940933, + 0.007406325079500675, + -0.025750769302248955, + 0.006066969595849514, + 0.013828889466822147, + -0.006940151564776897, + -0.07728710770606995, + 0.029404718428850174, + 0.007629611995071173, + -0.04316907748579979, + -0.030652258545160294, + -0.06249167025089264, + 0.0027176274452358484, + 0.014142366126179695, + 0.16063599288463593, + 0.04602409154176712, + 0.05141177773475647, + -0.03966711461544037, + 0.0171478521078825, + -0.027128152549266815, + -0.04692305251955986, + 0.0012310940073803067, + -0.05857161059975624, + -0.029416989535093307, + -0.08807351440191269, + 0.07372844219207764, + 0.022181861102581024, + -0.06356509029865265, + -0.06933876127004623, + -0.0010873365681618452, + 0.034521084278821945, + -0.024959132075309753, + -0.03262345865368843, + -0.04779942333698273, + -0.13356821238994598, + 0.029667546972632408, + -0.045649245381355286, + -0.022839998826384544, + -0.0742606520652771, + -0.047385163605213165, + 0.07850059866905212, + 0.04162943363189697, + -0.03995363414287567, + 0.05753042921423912, + 0.02030356600880623, + 0.04329511150717735, + 0.10743028670549393, + 0.02624458447098732, + 0.006080024875700474, + 0.04637772589921951, + -0.0018739064689725637, + -0.0012110663810744882, + 0.02652321197092533, + -0.026981400325894356, + 0.031465284526348114, + 0.02051599882543087, + 0.016077276319265366, + -0.004963848274201155, + 0.042734283953905106, + 0.008121514692902565, + 0.02016112208366394, + -0.10438938438892365, + -0.10419565439224243, + -0.02836836688220501, + -0.034979645162820816, + 0.062033385038375854, + 0.04723682254552841, + 0.0039008636958897114, + -0.05532660707831383, + -0.04650874808430672, + 0.04815860465168953, + -0.008441747166216373, + -0.006121483165770769, + -0.036451030522584915, + -0.053714822977781296, + -0.02313745953142643, + -0.030462048947811127, + -0.0474952831864357, + 0.1244186982512474, + -0.017019182443618774, + 0.02882228046655655, + 0.05421460047364235, + 0.01375820767134428, + 0.00021542761533055454, + 0.07409577071666718, + -0.07017829269170761, + -0.12672416865825653, + -0.04288845881819725, + 0.07302464544773102, + 0.024492498487234116, + 0.05992666259407997, + 0.0163100715726614, + -0.03139530494809151, + -0.023796698078513145, + -0.020920898765325546, + -0.10500422865152359, + -0.033417053520679474, + -0.02498411200940609, + 0.037530697882175446, + -0.0051981136202812195, + 0.11259157955646515, + 0.04208489879965782, + -0.03999038413167, + -0.028345515951514244, + -0.04239703342318535, + -0.0613439567387104, + -0.06724108010530472, + 0.0011608039494603872, + 0.032042212784290314, + -1.6284940577856955e-33, + -0.007128097582608461, + 0.07497791200876236, + -0.056131038814783096, + 0.08683793991804123, + -0.015147251076996326, + 0.040622778236866, + -0.07198293507099152, + -0.0022003790363669395, + -0.07190941274166107, + 0.06457514315843582, + 0.06267738342285156, + 0.08988594263792038, + -0.04526698961853981, + 0.14714862406253815, + 0.052968330681324005, + 0.026183277368545532, + 0.009549015201628208, + 0.05324571579694748, + -0.0556873083114624, + -0.02095981314778328, + -0.06485720723867416, + -0.04933823645114899, + 0.03307159245014191, + -0.007139235269278288, + 0.07482736557722092, + 0.051301803439855576, + -0.02270699478685856, + 0.019689267501235008, + -0.005627946462482214, + 0.03791733458638191, + 0.04684726893901825, + 0.0024373324122279882, + 0.018259013071656227, + 0.003400969784706831, + -0.04156404733657837, + 0.07347243279218674, + -0.056646861135959625, + 0.04254886135458946, + 0.00810023583471775, + -0.0033401723485440016, + -0.0295869130641222, + -0.02966521866619587, + -0.005978605709969997, + -0.04576390981674194, + 0.04894460365176201, + 0.05811544507741928, + -0.0707717314362526, + -0.024754013866186142, + -0.024055546149611473, + 0.06306032091379166, + -0.042605429887771606, + 0.013330136425793171, + -0.051365435123443604, + -0.0037075162399560213, + -0.042782850563526154, + -0.03579898178577423, + 0.03828037530183792, + 0.06663554906845093, + 0.04959212988615036, + -0.010201933793723583, + -0.00017555837985128164, + 0.024980934336781502, + 0.0746866762638092, + -0.007592984940856695, + -0.041274432092905045, + -0.017818065360188484, + -0.010003942996263504, + 0.002712187124416232, + 0.016432981938123703, + 0.040968459099531174, + -0.08801159262657166, + 0.05574272200465202, + 0.039387047290802, + 0.0476824976503849, + -0.005526387598365545, + 0.011453494429588318, + 0.0006794687360525131, + 0.016786277294158936, + -0.0008237365400418639, + -0.07937750220298767, + -0.09458116441965103, + -0.052462201565504074, + 0.00112601974979043, + 0.05521482601761818, + -0.006020303815603256, + 0.03426139056682587, + 0.014383801259100437, + -0.050227392464876175, + -0.0926772803068161, + 0.06318255513906479, + -0.06167173758149147, + 0.07933195680379868, + -0.06831656396389008, + -0.06616983562707901, + -0.0043677897192537785, + -1.0748459531109908e-33, + 0.027255190536379814, + -0.054181624203920364, + -0.024540981277823448, + 0.002093673450872302, + -0.11772502213716507, + -0.060900162905454636, + 0.01897956058382988, + 0.01405949704349041, + 0.021162455901503563, + -0.0028754647355526686, + 0.04061572253704071, + -0.03418221324682236, + -0.03308524563908577, + -0.08079525083303452, + 0.011393020860850811, + 0.06087745353579521, + -0.01615670882165432, + 0.10113047808408737, + 0.006982698570936918, + 0.0335577167570591, + -0.04021362215280533, + 0.011084887199103832, + -0.1065986230969429, + 0.07035248726606369, + -0.029464241117239, + 0.04239199310541153, + -0.01435347180813551, + 0.05666614696383476, + 0.02579251304268837, + 0.003630749648436904, + -0.00703261187300086, + -0.03837471455335617, + 0.006243542768061161, + 0.09130267053842545, + -0.09604071825742722, + 0.012238306924700737, + 0.07359053194522858, + 0.004090217407792807, + 0.024351177737116814, + 0.03380988910794258, + 0.037242259830236435, + 0.06428119540214539, + -0.028297537937760353, + 0.061899274587631226, + -0.0324987955391407, + -0.05201980099081993, + 0.01152040995657444, + 0.006877593230456114, + 0.021415898576378822, + 0.030382413417100906, + 0.055968087166547775, + -0.02627158723771572, + -0.0414801649749279, + 0.0032018646597862244, + -0.07652033120393753, + 0.013005165383219719, + 0.029774492606520653, + 0.035237934440374374, + -0.05968767777085304, + 0.044594716280698776, + -0.03512661159038544, + 0.029110977426171303, + -0.02225087396800518, + -0.014753476716578007, + 0.0032961603719741106, + -0.07659626007080078, + 0.10312012583017349, + -0.022638004273176193, + -0.03170476481318474, + -0.026687128469347954, + 0.03545783460140228, + -0.06503987312316895, + 0.0160648375749588, + 0.035164009779691696, + -0.021083489060401917, + -0.022106744349002838, + 0.048396043479442596, + 0.04673760384321213, + -0.023741083219647408, + -0.028677036985754967, + 0.0023887997958809137, + -0.023560456931591034, + 0.0052542067132890224, + 0.13816769421100616, + -0.02522207610309124, + 0.08185732364654541, + -0.026609523221850395, + -0.027118217200040817, + -0.029940014705061913, + -0.060582585632801056, + 0.019016945734620094, + 0.04831195995211601, + -0.011259657330811024, + -0.04127469286322594, + -0.04749741405248642, + -1.884597899959317e-08, + -0.014822755940258503, + -0.056857820600271225, + -0.042089659720659256, + -0.02057453617453575, + 0.06702869385480881, + -0.022526640444993973, + -0.07113748788833618, + 0.028490949422121048, + -0.056320980191230774, + -0.06730396300554276, + 0.09033328294754028, + -0.022768789902329445, + -0.09331599622964859, + -0.05208694189786911, + 0.08785175532102585, + -0.004559360444545746, + -0.008433572016656399, + 0.006383271422237158, + -0.045038852840662, + -0.01664711721241474, + -0.03270917758345604, + 0.10080257058143616, + 0.07063170522451401, + 0.022161534056067467, + 0.007665876764804125, + -0.019559504464268684, + -0.002570296870544553, + 0.05853649228811264, + 0.05799303203821182, + 0.017436310648918152, + 0.05121108517050743, + 0.051626820117235184, + 0.009705119766294956, + -0.0373527891933918, + -0.008417626842856407, + -0.027781417593359947, + 0.045254308730363846, + -0.012986867688596249, + -0.05096812918782234, + 0.11271731555461884, + 0.04376394674181938, + -0.09298138320446014, + -0.13564953207969666, + -0.06178891658782959, + -0.07198888808488846, + -0.008206133730709553, + 0.03893711790442467, + -0.01290256530046463, + -0.04925432428717613, + -0.03736809268593788, + -0.030120788142085075, + -0.012895573861896992, + 0.06287936866283417, + -0.0028777127154171467, + -0.05547012761235237, + -0.07897508889436722, + 0.013235678896307945, + 0.0076430863700807095, + 0.07089301943778992, + 0.08643154054880142, + 0.0734584853053093, + -0.02737867645919323, + 0.008363195694983006, + 0.0003044671902898699 + ], + "scan-smiley-bold||*new*,facial recognition,face unlock,scanner": [ + -0.04954551160335541, + -0.010592401027679443, + -0.07095368206501007, + -0.02140151895582676, + 0.03401261568069458, + -0.022258274257183075, + 0.10133223980665207, + -0.09652097523212433, + -0.07646047323942184, + -0.0023540265392512083, + 0.10212596505880356, + 0.016035212203860283, + 0.0827464684844017, + 0.02819114923477173, + 0.0001369216915918514, + -0.020509373396635056, + -0.015980329364538193, + -0.02333638072013855, + 0.0292606633156538, + 0.026976734399795532, + -0.027044815942645073, + -0.06484167277812958, + 0.019819730892777443, + -0.03927753493189812, + -0.008365665562450886, + 0.02329852059483528, + -0.02405044622719288, + -0.02243644930422306, + 0.003910702187567949, + -0.07104802876710892, + 0.011290856637060642, + 0.004275967832654715, + 0.16643959283828735, + 0.06278502941131592, + 0.02549784816801548, + 0.0023116988595575094, + 0.002391285728663206, + 0.028170552104711533, + -0.06858176738023758, + -0.03371969610452652, + -0.11725839227437973, + -0.10827130824327469, + -0.06630823016166687, + 0.07990406453609467, + 0.05915610492229462, + -0.03227118030190468, + -0.04895279183983803, + -0.0006507273064926267, + 0.03448900207877159, + -0.029453419148921967, + -0.06430526077747345, + -0.11682742089033127, + -0.12359707057476044, + 0.03147941455245018, + -0.030804816633462906, + 0.0054639847949147224, + -0.022313496097922325, + -0.04256606101989746, + 0.030462607741355896, + 0.0831906720995903, + -0.041646573692560196, + 0.039951495826244354, + 0.037364255636930466, + 0.0621737502515316, + -0.0043431841768324375, + 0.01877354085445404, + 0.004980664234608412, + -0.09178288280963898, + 0.012715965509414673, + 0.017110012471675873, + -0.009640096686780453, + 0.003272912697866559, + -0.014178268611431122, + -0.021912500262260437, + -0.014290368184447289, + -0.01737564243376255, + 0.03540600463747978, + -0.00586351566016674, + 0.03434247151017189, + -0.07726812362670898, + -0.04057309031486511, + -0.035589367151260376, + -0.022464312613010406, + 0.0280714463442564, + 0.045064885169267654, + 0.05661017447710037, + -0.09239773452281952, + -0.08764052391052246, + -0.00043149784323759377, + -0.007842505350708961, + -0.02031918615102768, + -0.01457434706389904, + -0.030743306502699852, + -0.032803136855363846, + -0.0400376170873642, + -0.032251469790935516, + 0.09152290970087051, + 0.0044664787128567696, + -0.018338168039917946, + 0.10736365616321564, + 0.004431908950209618, + -0.03587127849459648, + 0.04652253910899162, + -0.04198255389928818, + 0.0019815966952592134, + -0.012455887161195278, + 0.03939954936504364, + -0.060464803129434586, + 0.060291796922683716, + -0.0396958664059639, + 0.015335896983742714, + -0.006391560658812523, + 0.01633966900408268, + -0.07750009745359421, + 0.022333793342113495, + 0.005540591664612293, + -0.04417933151125908, + 0.0036706989631056786, + 0.11265339702367783, + 0.06730183959007263, + 0.02218196913599968, + -0.09300845861434937, + -0.03391459211707115, + -0.11633703857660294, + -0.030967209488153458, + 0.039336610585451126, + -0.04311573877930641, + -6.424160656722786e-34, + 0.04752412438392639, + 0.10924144834280014, + -0.03614920750260353, + 0.12702713906764984, + -0.01932244375348091, + 0.043685633689165115, + -0.06400423496961594, + 0.0003319666429888457, + -0.10291528701782227, + 0.02996915392577648, + 0.02423214167356491, + 0.08094412833452225, + -0.04810800403356552, + 0.15872378647327423, + 0.0320376381278038, + 0.0211749579757452, + 0.025057557970285416, + 0.05586041882634163, + -0.05997733399271965, + -0.03609522432088852, + -0.005438993219286203, + -0.04474789276719093, + 0.03416813164949417, + 0.045094046741724014, + 0.03117346577346325, + 0.06260155886411667, + 0.027143020182847977, + -0.08173134922981262, + 0.0281352661550045, + 0.032620951533317566, + -0.029782598838210106, + 0.07298605889081955, + 0.029925988987088203, + -0.016115179285407066, + 0.009135707281529903, + 0.05681446194648743, + -0.005487549584358931, + -0.021234851330518723, + 0.0039376672357320786, + -0.043551117181777954, + -0.022660203278064728, + -0.0439005084335804, + -0.062340278178453445, + -0.0646277517080307, + 0.026381371542811394, + 0.054088443517684937, + -0.04315638914704323, + 0.01931273750960827, + 0.008801667019724846, + 0.02688998356461525, + -0.041794151067733765, + 0.03154851496219635, + -0.07745411992073059, + -0.028894035145640373, + -0.047229524701833725, + -0.007782731670886278, + 0.010388585738837719, + 0.03903784602880478, + 0.0019527605036273599, + -0.005210609640926123, + 0.004640952683985233, + 0.0041191489435732365, + 0.08049283921718597, + -0.030147600919008255, + -0.017888687551021576, + -0.02299303002655506, + 0.0029062959365546703, + -0.010942675173282623, + -0.002417526673525572, + 0.06413599103689194, + -0.05102774128317833, + 0.05518927052617073, + 0.005047081038355827, + 0.004356110468506813, + -0.056790586560964584, + 0.010611466132104397, + 0.07655087858438492, + 0.04378792643547058, + -0.011745844967663288, + -0.03775651380419731, + -0.07054383307695389, + 0.001976229250431061, + -0.028645657002925873, + 0.013967006467282772, + 0.017220567911863327, + 0.0022536974865943193, + 0.00213966378942132, + -0.07869024574756622, + -0.06631701439619064, + 0.07971605658531189, + -0.060393400490283966, + 0.0506242997944355, + -0.06289896368980408, + -0.02633957378566265, + -0.0940125361084938, + -1.433775989965876e-33, + -0.03355134278535843, + -0.04656592756509781, + -0.1087016761302948, + -0.03222746402025223, + -0.09508992731571198, + -0.048023588955402374, + 0.06306534260511398, + 0.07177793234586716, + 0.025240560993552208, + 0.027203263714909554, + 0.07194555550813675, + 0.0015991677064448595, + 0.002295851241797209, + -0.08953972905874252, + 0.022262640297412872, + 0.03335725888609886, + 0.0062685320153832436, + 0.05604138225317001, + -0.03778549283742905, + 0.10416276752948761, + -0.03160049021244049, + 0.03448262810707092, + -0.11605753004550934, + 0.09354639053344727, + 0.021633010357618332, + 0.049830447882413864, + 0.009553319774568081, + 0.026830829679965973, + -0.004194863140583038, + 0.01612972468137741, + -0.0034684936981648207, + -0.013942648656666279, + 0.00919499434530735, + 0.12931343913078308, + -0.02392161637544632, + -0.0011059246025979519, + 0.03684823960065842, + -0.0549926720559597, + -0.024135001003742218, + 0.057981718331575394, + 0.03624355047941208, + 0.04372299462556839, + -0.022208109498023987, + 0.09396891295909882, + 0.01138804666697979, + -0.05101005733013153, + -0.05147511512041092, + -0.008939805440604687, + -0.03954554349184036, + 0.0614766851067543, + 0.06551031768321991, + -0.10828243941068649, + -0.019113587215542793, + -0.026986902579665184, + -0.10525112599134445, + 0.026590019464492798, + -0.010225805453956127, + 0.010581652633845806, + -0.009616764262318611, + 0.03198658674955368, + -0.028819261118769646, + -0.0517708845436573, + -0.07300341129302979, + 0.016829337924718857, + -0.03646570444107056, + -0.032651595771312714, + 0.08045820146799088, + 0.013737003318965435, + -0.046403490006923676, + -0.003695423947647214, + 0.07721123099327087, + -0.008159459568560123, + 0.01562645472586155, + -0.002599437488242984, + 0.023530634120106697, + -0.015632597729563713, + -0.009092729538679123, + 0.026625463739037514, + -0.07573705911636353, + 0.010932158678770065, + -0.02414480596780777, + -0.0242219977080822, + 0.026411613449454308, + 0.07139604538679123, + -0.040124353021383286, + 0.06282741576433182, + 0.008338769897818565, + 0.0033011503983289003, + -0.017585204914212227, + -0.07364249229431152, + -0.046990372240543365, + 0.11471887677907944, + -0.03402986750006676, + -0.007236747536808252, + -0.0033491398207843304, + -1.9828592101589493e-08, + -0.029981227591633797, + -0.0496404767036438, + -0.0019475118024274707, + -0.06339501589536667, + 0.10106566548347473, + -0.0459647960960865, + -0.06638817489147186, + -0.009940681979060173, + -0.05888545513153076, + -0.045900098979473114, + 0.07640289515256882, + 0.010730361565947533, + -0.022705255076289177, + -0.026532702147960663, + 0.08892305195331573, + 0.024358605965971947, + -0.04884627088904381, + 0.06387539207935333, + -0.03424082696437836, + -0.061567943543195724, + -0.022311970591545105, + 0.06462398916482925, + 0.057831332087516785, + 0.011462556198239326, + 0.016734318807721138, + -0.056434404104948044, + 0.0018891763174906373, + 0.043173085898160934, + 0.004970564041286707, + 0.038175854831933975, + 0.005296121817082167, + 0.037478525191545486, + 0.041811805218458176, + -0.04093277081847191, + -0.021799180656671524, + 0.022941062226891518, + 0.003833015915006399, + -0.029656797647476196, + 0.01617218367755413, + 0.09060290455818176, + 0.07820998877286911, + -0.007186864502727985, + -0.06851616501808167, + -0.05509725958108902, + -0.15937739610671997, + 0.004326674155890942, + 0.07605692744255066, + -0.06264425814151764, + -0.017898736521601677, + -0.02263602241873741, + 0.007273703347891569, + -0.010067455470561981, + 0.021620579063892365, + 0.05761545151472092, + -0.03081199713051319, + -0.02001512050628662, + 0.07380437105894089, + 0.02429371140897274, + 0.08026181161403656, + 0.09235949069261551, + 0.09976892918348312, + 0.00025570759316906333, + 0.0365411601960659, + -0.02041412517428398 + ], + "scissors-bold||*updated*,cut,snip,clipboard": [ + -0.005361808929592371, + -0.01487037818878889, + -0.02438255026936531, + 0.014732002280652523, + 0.029901927337050438, + -0.015045881271362305, + 0.04009926691651344, + -0.041233886033296585, + -0.021729929372668266, + 0.0632106363773346, + 0.04701553285121918, + 0.007344953250139952, + -0.043490659445524216, + -0.025178460404276848, + -0.06591234356164932, + 0.025058045983314514, + -0.0468563437461853, + 0.056702978909015656, + -0.02349519170820713, + 0.03156073018908501, + 0.03287466615438461, + 0.007781763561069965, + 0.014570989646017551, + 0.07560599595308304, + 0.09028197079896927, + 0.08690035343170166, + -0.0065378365106880665, + -0.057541441172361374, + -0.009369208477437496, + -0.0567178949713707, + 0.03359345719218254, + -0.0484532006084919, + 0.1755710244178772, + 0.004202817101031542, + 0.05116916820406914, + -0.02406105026602745, + -0.03679060563445091, + 0.03997400775551796, + 0.05065041407942772, + 0.002458999864757061, + -0.029931960627436638, + -0.0780562236905098, + -0.04522505775094032, + 0.021154452115297318, + -0.009169871918857098, + -0.011863373219966888, + -0.07928713411092758, + -0.04324532300233841, + -0.04047960788011551, + 0.021371614187955856, + -0.06350468844175339, + -0.14877308905124664, + -0.1676425337791443, + -0.049340322613716125, + -0.01052164938300848, + 0.025256091728806496, + -0.0043500494211912155, + -0.003034820780158043, + 0.08941451460123062, + -0.02183583378791809, + 0.04469484090805054, + -0.0033261231146752834, + 0.04049098864197731, + 0.0333571657538414, + 0.048571113497018814, + 0.008422047831118107, + 0.04486555978655815, + -0.05892138183116913, + -0.04350246489048004, + 0.016694318503141403, + 0.01784689351916313, + 0.04781968519091606, + -0.04674546420574188, + -0.04429834708571434, + -0.06852517277002335, + -0.05885883793234825, + 0.05999324098229408, + 0.016258515417575836, + 0.003344880882650614, + 0.04257720708847046, + -0.04413667321205139, + -0.0897463858127594, + -0.000578522274736315, + 0.0719890147447586, + 0.07306662946939468, + 0.028938060626387596, + -0.14041787385940552, + -0.051609382033348083, + -0.026472734287381172, + -0.005422060843557119, + -0.010290938429534435, + 0.0017268822994083166, + 0.0504203662276268, + 0.0354500412940979, + -0.036321431398391724, + 0.006259420420974493, + 0.015140996314585209, + 0.02500801347196102, + -0.008685793727636337, + 0.09251520037651062, + 0.005644416436553001, + 0.014881476759910583, + 0.005064057186245918, + 0.0011351341381669044, + 0.010721767321228981, + 0.022369902580976486, + -0.04653812572360039, + -0.09148846566677094, + -0.01484685204923153, + -0.02068261243402958, + 0.015000777319073677, + -0.06211509555578232, + -0.0009106394136324525, + -0.04718481004238129, + 0.029563162475824356, + -0.01687251590192318, + 0.012831342406570911, + -0.006669977679848671, + 0.09502463787794113, + 0.09834055602550507, + 0.02067713625729084, + 0.008589489385485649, + -0.09419886767864227, + 0.03854619711637497, + -0.008822456002235413, + 0.06071144714951515, + 0.05032755061984062, + -7.70966428921525e-34, + 0.05899817869067192, + 0.04167401045560837, + -0.04375813901424408, + 0.05634032189846039, + 0.007854163646697998, + 0.014867862686514854, + -0.05290747806429863, + -0.02301616221666336, + -0.09217453002929688, + -0.02396353892982006, + 0.024098237976431847, + -0.0013465660158544779, + -0.0019008894450962543, + 0.047599367797374725, + 0.019674474373459816, + -0.08617003262042999, + 0.030251367017626762, + 0.039113838225603104, + -0.12256203591823578, + 0.045144274830818176, + -0.06751707941293716, + 0.011615182273089886, + 0.0028167706914246082, + 0.004144715610891581, + 0.053931135684251785, + -0.05010048300027847, + -0.019670428708195686, + -0.043169960379600525, + 0.011751039884984493, + 0.04301886260509491, + -0.05304568260908127, + 0.0019582922104746103, + 0.016368664801120758, + 0.0004810822429135442, + -0.04353533312678337, + 0.10223617404699326, + 0.017022546380758286, + -0.03852463513612747, + -0.001857213326729834, + 0.019449332728981972, + -0.00532622542232275, + 0.002692802343517542, + -0.015692945569753647, + -0.028344538062810898, + 0.05463404953479767, + 0.04513963311910629, + -0.03863862529397011, + 0.11821123212575912, + -0.022709714248776436, + -0.023701678961515427, + 0.038375623524188995, + 0.02530347928404808, + 0.021738724783062935, + -0.039535555988550186, + -0.029245274141430855, + -0.042127978056669235, + 0.043216925114393234, + 0.10842250287532806, + 0.0135499257594347, + 0.019701432436704636, + 0.02960350550711155, + 0.08848372846841812, + -0.012479779310524464, + 0.05449305847287178, + -0.02434428781270981, + 0.07331594079732895, + 0.0008749746484681964, + 0.04166446626186371, + 0.0854019746184349, + -0.08239509910345078, + -0.09422009438276291, + 0.10802912712097168, + -0.015250946395099163, + 0.026630012318491936, + -0.03469609469175339, + -0.048876188695430756, + -0.016516324132680893, + -0.017963727936148643, + 0.04878699779510498, + -0.1259790062904358, + -0.03498441353440285, + 0.06937316805124283, + -0.0503651425242424, + -0.06243989244103432, + 0.0524531789124012, + -0.041434355080127716, + 0.006175871007144451, + -0.020629113540053368, + -0.024803072214126587, + -0.018482379615306854, + -0.02491317316889763, + -0.031537629663944244, + -0.05687173083424568, + -0.020960446447134018, + 0.008324071764945984, + -8.525553795956884e-34, + 0.0055180205963552, + -0.006786921992897987, + -0.01845865696668625, + 0.05119936913251877, + -0.05008881166577339, + 0.04072928801178932, + -0.04639613255858421, + -0.014943691901862621, + -0.03498837724328041, + -0.057410769164562225, + -0.01412323396652937, + -0.012942606583237648, + -0.04134201630949974, + -0.07406970113515854, + -0.00013526972907129675, + 0.0038793019484728575, + -0.010413187555968761, + 0.07262386381626129, + -0.04635588824748993, + -0.03340022638440132, + -0.049228835850954056, + -0.04372492432594299, + 0.03234945610165596, + 0.07394116371870041, + -0.055663835257291794, + 0.025223128497600555, + -0.007155038416385651, + -0.062311746180057526, + 0.047625232487916946, + -0.011051087640225887, + -0.05439573898911476, + -0.06596927344799042, + -0.05710821971297264, + 0.009379164315760136, + -0.013769013807177544, + 0.09604053199291229, + -0.04863715171813965, + 0.004840513225644827, + 0.06100265681743622, + -0.0043191793374717236, + 0.0013433103449642658, + 0.010142380371689796, + 0.026457078754901886, + 0.11469003558158875, + -0.016452617943286896, + 0.019551878795027733, + -0.061570826917886734, + 0.05785103887319565, + -0.0533590205013752, + 0.010367498733103275, + -0.039555102586746216, + -0.006810097023844719, + -0.06468009203672409, + -0.02540229633450508, + -0.050881277769804, + 0.02170894853770733, + -0.05443555489182472, + -0.06006363034248352, + -0.05905600264668465, + 0.019515516236424446, + -0.06809569895267487, + 0.07198343425989151, + -0.024410273879766464, + 0.086751289665699, + 0.11764703691005707, + -0.019815435633063316, + -0.009868585504591465, + -0.03198239579796791, + 0.0016470523551106453, + -0.022756675258278847, + 0.08731328696012497, + -0.004962702747434378, + -0.027368301525712013, + -0.030432071536779404, + 0.020630531013011932, + -0.02785181812942028, + -0.029906686395406723, + 0.08167076110839844, + -0.012805568985641003, + 0.08002234995365143, + -0.02858118526637554, + 0.022773338481783867, + 0.07374182343482971, + 0.04532875120639801, + -0.06919901072978973, + 0.02137565053999424, + 0.012653409503400326, + 0.08346695452928543, + -0.008686147630214691, + -0.08887200802564621, + -0.05544627457857132, + 0.021178876981139183, + 0.07586836069822311, + 0.03853477165102959, + -0.029989037662744522, + -2.0955109647502468e-08, + 0.07713537663221359, + 0.02710348553955555, + -0.05656591057777405, + 0.00935687031596899, + 0.0700458437204361, + 0.0076597267761826515, + -0.07652553170919418, + -0.07376188784837723, + -0.03516132012009621, + -0.05712297186255455, + 0.0617452934384346, + 0.016811568289995193, + -0.06783176958560944, + -0.01732364110648632, + 0.06599929183721542, + -0.033243052661418915, + 0.019297247752547264, + 0.10112297534942627, + -0.01922302320599556, + -0.0317436084151268, + -0.017861492931842804, + 0.007645840756595135, + 0.06650904566049576, + -0.0010161264799535275, + -0.010100984014570713, + -0.06229691952466965, + -0.15010058879852295, + 0.07180316746234894, + 0.07615192234516144, + 0.08608070015907288, + 0.07439173758029938, + 0.006086616776883602, + 0.03992520645260811, + 0.06559345126152039, + -0.05267529934644699, + -0.050865523517131805, + -0.0103019243106246, + 0.0280726607888937, + 0.03798104450106621, + 0.15277092158794403, + 0.0027573343832045794, + -0.0979287251830101, + -0.012898407876491547, + -0.005846248473972082, + -0.07541430741548538, + -0.021004652604460716, + 0.10512348264455795, + -0.09287723898887634, + -0.0661763846874237, + -0.06993334740400314, + -0.03116205707192421, + -0.023122018203139305, + -0.013053204864263535, + 0.08333249390125275, + -0.010063227266073227, + 0.015332804061472416, + 0.06770271062850952, + 0.05134660378098488, + -0.012306789867579937, + -0.014337515458464622, + 0.019913341850042343, + -0.011272549629211426, + -0.018767062574625015, + 0.0401386059820652 + ], + "scooter-bold||vehicles,transportation,travel,transit": [ + 0.041915882378816605, + -0.0695091038942337, + -0.0038548409938812256, + 0.0602453276515007, + 0.05630822852253914, + 0.01604919321835041, + 0.036806218326091766, + 0.008770116604864597, + -0.08021936565637589, + -0.006503320764750242, + 0.047320205718278885, + 0.04975366219878197, + 0.07912557572126389, + 0.027604965493083, + -0.05725909397006035, + 0.03218875452876091, + 0.06314611434936523, + -0.027397477999329567, + 0.021680191159248352, + 0.023795096203684807, + 0.025251587852835655, + 0.05246632546186447, + -0.00830911472439766, + 0.10092351585626602, + -0.018890412524342537, + 0.0372195839881897, + 0.007158377207815647, + -0.0015408361796289682, + -0.05880933254957199, + 0.011843695305287838, + -0.05789991095662117, + 0.05335894599556923, + -0.0009667209815233946, + -0.0009456694824621081, + -0.024761566892266273, + -0.019905373454093933, + 0.020067300647497177, + 0.006199463736265898, + 0.08010338246822357, + -0.060521598905324936, + 0.011286553926765919, + -0.10373812168836594, + 0.014513363130390644, + -0.013307237066328526, + -0.015992535278201103, + -0.026111358776688576, + 0.04779054969549179, + -0.032395560294389725, + -0.0002084056322928518, + -0.008522762916982174, + 0.02318277768790722, + -0.09108583629131317, + 0.008858384564518929, + 0.01538559328764677, + -0.025659089908003807, + -0.018495719879865646, + -0.10252603888511658, + 0.05804925784468651, + 0.07537196576595306, + -0.0010961208026856184, + 0.005005746614187956, + -0.02676457352936268, + 0.03712120279669762, + 0.09392858296632767, + 0.05774613097310066, + -0.07507850229740143, + -0.022889724001288414, + -0.034851107746362686, + -0.08327793329954147, + 0.04435178264975548, + 0.03968856483697891, + -0.015735872089862823, + 0.011630687862634659, + -0.0015077288262546062, + -0.03488709777593613, + -0.08119411021471024, + 0.06656824052333832, + 0.04245429113507271, + -0.06209196150302887, + -0.04725228622555733, + -0.03833029791712761, + -0.023080388084053993, + -0.03396536409854889, + 0.017118997871875763, + 0.029694383963942528, + 0.014323865063488483, + -0.07489178329706192, + -0.02720583789050579, + -0.044137388467788696, + 0.0036165332421660423, + -0.03635323420166969, + 0.0011603841558098793, + 0.03361847996711731, + -0.013508269563317299, + -0.09401363879442215, + 0.042318474501371384, + 0.01813320256769657, + 0.008625157177448273, + -0.018819017335772514, + 0.06087945029139519, + 0.05179166793823242, + 0.08630925416946411, + 0.08876555413007736, + 0.0406791977584362, + -0.0331570990383625, + 0.0358535461127758, + -0.02227439172565937, + 0.007248335983604193, + 0.0009357290691696107, + 0.08378758281469345, + 0.03785989060997963, + -0.03685843199491501, + -0.02398243546485901, + -0.03166785463690758, + -0.06816840171813965, + -0.05723818764090538, + -0.08790694922208786, + 0.011249477975070477, + 0.10261891782283783, + -0.005532274954020977, + -0.01988961361348629, + -0.0357188917696476, + 0.03726712614297867, + -0.0392434261739254, + 0.027948135510087013, + -0.021756233647465706, + 0.06445038318634033, + -3.371055883323278e-33, + -0.08460337668657303, + 0.029693182557821274, + 0.022443894296884537, + 0.11318349093198776, + 0.0019175471970811486, + -0.034360840916633606, + -0.058535508811473846, + 0.004698838107287884, + -0.030555156990885735, + 0.05200892686843872, + 0.032858703285455704, + 0.08010812848806381, + 0.008925259113311768, + 0.023495307192206383, + 0.08297320455312729, + -0.02767193131148815, + -0.06138640642166138, + -0.07708018273115158, + -0.02123299427330494, + -0.051506295800209045, + -0.026508187875151634, + -0.01922149956226349, + -0.00787168089300394, + -0.01750369369983673, + -0.011591637507081032, + -0.06843522191047668, + 0.04317767918109894, + -0.06706088781356812, + 0.07060564309358597, + 0.044077470898628235, + 0.010711317881941795, + 0.1376258283853531, + 0.029278675094246864, + 0.027106670662760735, + -0.040744900703430176, + -0.019019614905118942, + -0.07264114916324615, + -0.09309977293014526, + -0.10122751444578171, + -0.005275512579828501, + -0.02668103761970997, + -0.09436571598052979, + -0.06938941031694412, + 0.023036787286400795, + -0.0030090203508734703, + 0.11706051975488663, + 0.01933366246521473, + -0.03473323956131935, + 0.004889088682830334, + 0.044793207198381424, + -0.09083164483308792, + -0.07731285691261292, + -0.024415530264377594, + -0.024876793846488, + -0.019002368673682213, + -0.0012593510327860713, + 0.002036634599789977, + 0.019448522478342056, + 0.010000322014093399, + -0.026953715831041336, + -0.11777643114328384, + 0.009999667294323444, + 0.05906010419130325, + -0.05201175436377525, + 0.037114616483449936, + 0.0038752167019993067, + -0.028695611283183098, + 0.007300302851945162, + 0.07330170273780823, + -0.014716529287397861, + 0.0277630053460598, + 0.06801672279834747, + 0.01579905115067959, + 0.08367937803268433, + 0.06388434767723083, + 0.021635061129927635, + -0.0725640058517456, + 0.0037587506230920553, + -0.024713808670639992, + 0.007909741252660751, + -0.14506489038467407, + -0.006644418928772211, + -0.0971413254737854, + 0.12744560837745667, + 0.15238209068775177, + -0.0064656916074454784, + -0.03130580484867096, + -0.09509021788835526, + 0.018062923103570938, + -0.0031943395733833313, + -0.11998098343610764, + -0.041008949279785156, + -0.03311639279127121, + 0.02297784574329853, + -0.06028175354003906, + -5.296251786589723e-34, + 0.012864876538515091, + 0.06534753739833832, + 0.02875070460140705, + 0.028408803045749664, + -0.0057921321131289005, + 0.016066987067461014, + 0.009353100322186947, + -0.012797936797142029, + 0.035504091531038284, + 0.030831124633550644, + -0.05939902365207672, + -0.004508448764681816, + 0.03103143721818924, + -0.014117809012532234, + 0.0604926198720932, + -0.00650662649422884, + 0.04739483818411827, + -0.02958759292960167, + -0.056806594133377075, + 0.0358792208135128, + -0.016032736748456955, + 0.013887351378798485, + -0.056294072419404984, + 0.05041912943124771, + 0.04792425036430359, + 0.055484358221292496, + -0.02357647754251957, + 0.004933794494718313, + -0.05928763002157211, + 0.07055534422397614, + -0.04880597069859505, + -0.03481408208608627, + 0.08754969388246536, + 0.04592899978160858, + -0.10646049678325653, + 0.08139795809984207, + -0.043885331600904465, + -0.0076179783791303635, + 0.010119874030351639, + -0.0398329459130764, + 0.036462265998125076, + -0.024752184748649597, + 0.05101815611124039, + 0.06596898287534714, + 0.0011360914213582873, + -0.07646843045949936, + -0.07589507848024368, + 0.04062975198030472, + 0.015406501479446888, + 0.023661430925130844, + 0.06168799102306366, + 0.026599053293466568, + -0.020581388846039772, + 0.030994106084108353, + 0.07208497077226639, + 0.008030461147427559, + 0.029691284522414207, + -0.0445486344397068, + -0.049671098589897156, + -0.05919541046023369, + 0.04434777423739433, + 0.11603355407714844, + -0.08411921560764313, + 0.08562583476305008, + 0.009923822246491909, + -0.15464884042739868, + -0.029284419491887093, + -0.07117584347724915, + 0.004642265848815441, + -0.07715215533971786, + 0.009222696535289288, + -0.04462827742099762, + -0.006064881104975939, + 0.03360102325677872, + 0.025349365547299385, + -0.05197637155652046, + 0.1038287878036499, + 0.08131702244281769, + 0.03833436593413353, + 0.019280048087239265, + 0.008534282445907593, + -0.012583731673657894, + 0.02990967407822609, + 0.07561402767896652, + -0.05354977026581764, + 0.003388976911082864, + -0.06668997555971146, + -0.08044566959142685, + 0.08184554427862167, + 0.01955912634730339, + -0.031495679169893265, + 0.09326809644699097, + -0.047957807779312134, + -0.005199314095079899, + -0.0530555322766304, + -2.004244770148489e-08, + 0.03273722529411316, + 0.029127882793545723, + -0.04610248655080795, + -0.0622386708855629, + 0.017731228843331337, + -0.03525956720113754, + -0.0046568396501243114, + -0.000816145446151495, + -0.1164400652050972, + 0.020708195865154266, + 0.011947166174650192, + 0.00659413356333971, + -0.022528594359755516, + 0.03024260699748993, + 0.011179924011230469, + 0.016581648960709572, + 0.003932042513042688, + 0.07598098367452621, + -0.08970129489898682, + -0.035961005836725235, + -0.006746315862983465, + -0.05719286948442459, + 0.028013844043016434, + 0.012927808798849583, + -0.0053527262061834335, + -0.0032537125516682863, + -0.06489791721105576, + -0.05073666572570801, + 0.06595462560653687, + -0.034823670983314514, + -0.019067350775003433, + 0.06285960227251053, + -0.00817801896482706, + -0.020568963140249252, + -0.07582741230726242, + -0.03131479397416115, + -0.05102098360657692, + -0.01412742119282484, + 0.0477970689535141, + 0.09684973955154419, + -0.01663411408662796, + -0.030872056260704994, + -0.00041972228791564703, + -0.010415646247565746, + -0.033708203583955765, + -0.0016082953661680222, + -0.06475339084863663, + -0.01567273773252964, + -0.041038621217012405, + -0.02557254210114479, + -0.1134912446141243, + -0.07769761234521866, + -0.005497158970683813, + 0.08723904937505722, + 0.02201054058969021, + -0.04414219409227371, + 0.031710185110569, + 0.03532523661851883, + -0.05017397552728653, + -0.011684197932481766, + 0.08778687566518784, + 0.04476432502269745, + 0.016983946785330772, + 0.009929968975484371 + ], + "screencast-bold||apple,airplay,screencasting,screen share,television,tv": [ + 0.011707738973200321, + -0.11142996698617935, + -0.006766163278371096, + -0.09145911037921906, + 0.06678653508424759, + 0.0027536561246961355, + 0.06351356953382492, + -0.0799955204129219, + -0.010433036834001541, + -0.027121054008603096, + 0.010083909146487713, + 0.009624041616916656, + 0.05874200537800789, + 0.0011678324081003666, + -0.03708872199058533, + -0.12207997590303421, + 0.09454522281885147, + -0.0755646750330925, + 0.027373090386390686, + -0.007484350353479385, + 0.011634750291705132, + 0.017617812380194664, + -0.012817567214369774, + 0.02800769731402397, + 0.14323227107524872, + -0.013959520496428013, + 0.07441374659538269, + 0.0035674532409757376, + 0.027443699538707733, + -0.06067594885826111, + -0.017340755090117455, + -0.016734307631850243, + 0.09133529663085938, + 0.03599227964878082, + -0.04612352326512337, + -0.09571626037359238, + 0.0016209223540499806, + -0.0355023518204689, + -0.1456354856491089, + -0.011426844634115696, + -0.005303115583956242, + -0.04323141649365425, + 0.02708461880683899, + 0.03197895735502243, + -0.0668647512793541, + -0.04091205447912216, + -0.055938027799129486, + -0.035726360976696014, + 0.009404768235981464, + 0.03594489023089409, + -0.06155448406934738, + -0.0451139435172081, + -0.04339431971311569, + 0.07418213784694672, + 0.055800411850214005, + -0.020920641720294952, + -0.05332481488585472, + 0.06455876678228378, + 0.08452524244785309, + 0.021884413436055183, + -0.015613974072039127, + 0.010799307376146317, + 0.06306131184101105, + 0.05130942165851593, + 0.08422242850065231, + 0.01764160767197609, + 0.03345862403512001, + 0.06826173514127731, + -0.039016325026750565, + -0.012169809080660343, + -0.07443509250879288, + 0.03986708074808121, + 0.11557185649871826, + -0.053362566977739334, + 0.010853049345314503, + 0.010777108371257782, + 0.04339160397648811, + -0.08724579215049744, + -0.06204662844538689, + -0.0499824620783329, + -0.08701435476541519, + -0.04011524096131325, + -0.09353446960449219, + 0.009804476983845234, + 0.055346712470054626, + 0.023456744849681854, + -0.08237534761428833, + -0.04938970506191254, + -0.03993532061576843, + 0.0976548120379448, + -0.18261542916297913, + 0.05424356088042259, + -0.03845575451850891, + -0.031168609857559204, + -0.05599170923233032, + 0.03592216223478317, + 0.001005567261017859, + -0.06533348560333252, + -0.01805327646434307, + 0.07974836230278015, + -0.02773594669997692, + 0.0070874434895813465, + 0.06932886689901352, + 0.012970766052603722, + -0.04965721815824509, + -0.08840055763721466, + -0.048000674694776535, + -0.013846118003129959, + 0.026361146941781044, + 0.10614723712205887, + -0.009917081333696842, + -0.02129460498690605, + -0.03292743116617203, + -0.02515440620481968, + 0.04379739984869957, + 0.027075065299868584, + 0.0022351809311658144, + -0.003570696571841836, + 0.10664217919111252, + -0.03753603622317314, + 0.007382925134152174, + -0.009527748450636864, + -0.0001845788210630417, + -0.006458843592554331, + 0.022168457508087158, + -0.01610605977475643, + 0.013720548711717129, + -9.507152190320958e-34, + 0.054036013782024384, + 0.019310954958200455, + -0.04804597422480583, + 0.07232611626386642, + 0.030288485810160637, + 0.032910898327827454, + -0.05197642371058464, + 0.04617207869887352, + -0.01802253909409046, + -0.01757834479212761, + 0.0748792439699173, + 0.07207264751195908, + -0.018634311854839325, + 0.03051823377609253, + 0.06666675209999084, + -0.057958997786045074, + -0.014483940787613392, + 0.04726957902312279, + -0.12759432196617126, + 0.033272404223680496, + -0.0377163328230381, + 0.039599232375621796, + -0.03558769449591637, + -0.04135836660861969, + 0.00046552030835300684, + -0.014528702944517136, + 0.01298845000565052, + -0.026148347184062004, + -0.0016936165047809482, + 0.022843867540359497, + 0.010915914550423622, + 0.023440081626176834, + 0.04306439310312271, + -0.053736794739961624, + 0.04906484857201576, + -0.06876138597726822, + -0.04478336125612259, + -0.0528021939098835, + 0.024641329422593117, + 0.038590870797634125, + -0.14024563133716583, + -0.038636744022369385, + -0.0631256029009819, + -0.06598502397537231, + 0.02062758058309555, + 0.0815626010298729, + -0.04834945499897003, + 0.0032096675131469965, + -0.02643296681344509, + 0.036646123975515366, + -0.0004147081926930696, + -0.012246188707649708, + 0.008983923122286797, + -0.09069737792015076, + -0.0033905620221048594, + 0.02510916255414486, + -0.021809855476021767, + 0.004575082566589117, + 0.017628366127610207, + -0.023427080363035202, + -0.0012499045114964247, + 0.052286550402641296, + 0.048220254480838776, + -0.035704825073480606, + -0.08980176597833633, + 0.09522546082735062, + 0.062226302921772, + 0.0742909163236618, + 0.021265707910060883, + -0.02507462538778782, + -0.036486826837062836, + 0.07936841994524002, + 0.03961467370390892, + 0.08099142462015152, + -0.026625948026776314, + 0.0505552738904953, + -0.0389978289604187, + -0.012384740635752678, + -0.031365133821964264, + -0.02191976085305214, + -0.059501562267541885, + 0.03618345782160759, + -0.04138196259737015, + 0.06423946470022202, + -0.02653174288570881, + 0.013595456257462502, + -0.07196243107318878, + -0.04984056577086449, + -0.07923585176467896, + 0.07971947640180588, + -0.07393700629472733, + 0.008724908344447613, + 0.012498750351369381, + -0.01735488697886467, + -0.09724076837301254, + -1.2336091384880106e-33, + 0.013431877829134464, + 0.025972338393330574, + -0.09014277905225754, + -0.07766405493021011, + -0.004162891767919064, + -0.08218473941087723, + 0.04411545768380165, + 0.04565901681780815, + 0.04694148525595665, + 0.018450746312737465, + 0.059742480516433716, + -0.0388403944671154, + -0.07277218252420425, + -0.027035744860768318, + -0.05720081552863121, + 0.01945996657013893, + 0.016172438859939575, + 0.0065332697704434395, + -0.029431981965899467, + -0.005787523463368416, + 0.009032882750034332, + -0.026134464889764786, + 0.02364153228700161, + 0.05996417999267578, + 0.07107336074113846, + -0.01880844309926033, + 0.017337167635560036, + 0.08596879988908768, + -0.03918481990695, + -0.001105747651308775, + 0.015094082802534103, + 0.0030051623471081257, + 0.018481753766536713, + -0.012011854909360409, + 0.01742217130959034, + 0.11969300359487534, + 0.046641405671834946, + -0.028039537370204926, + -0.033173080533742905, + -0.05609608441591263, + 0.07506594061851501, + 0.03856506571173668, + 0.000339679914759472, + 0.050557419657707214, + 0.02420654334127903, + 0.06344328075647354, + -0.02033008262515068, + 0.016248313710093498, + -0.026476360857486725, + 0.02512202039361, + 0.07691039890050888, + -0.02144276350736618, + 0.01985265500843525, + -0.03130338713526726, + -0.06444678455591202, + -0.022497504949569702, + 0.06940959393978119, + 0.02901306003332138, + 0.0011001633247360587, + 0.0586136095225811, + 0.033956728875637054, + -0.018076281994581223, + -0.04255184903740883, + -0.009303907863795757, + 0.017679065465927124, + -0.02323220856487751, + 0.07579421997070312, + 0.0030972163658589125, + 0.02025010995566845, + 0.041488341987133026, + 0.04952774941921234, + -0.07424985617399216, + 0.054086800664663315, + 0.034204207360744476, + 0.014186859130859375, + 0.024919671937823296, + 0.03361165151000023, + 0.04869537428021431, + -0.036857906728982925, + 0.031139865517616272, + 0.015883198007941246, + 0.07262003421783447, + 0.08604353666305542, + 0.0364893302321434, + 0.038478415459394455, + 0.06406686455011368, + 0.0636872798204422, + 0.053007155656814575, + 0.015328735113143921, + 0.017200611531734467, + -0.061943043023347855, + 0.04860014468431473, + 0.006992036942392588, + -0.07446352392435074, + -0.04241636022925377, + -1.905461566309441e-08, + -0.06804966181516647, + -0.04902530834078789, + 0.013525189831852913, + -0.06349213421344757, + -0.04053211584687233, + -0.04383779317140579, + 0.019753750413656235, + -0.0789174810051918, + 0.05816742405295372, + -0.09215942025184631, + -0.011439893394708633, + -0.022971687838435173, + -0.07482092082500458, + 0.01776530221104622, + 0.05726480856537819, + -0.01117509976029396, + -0.06387611478567123, + 0.014483857899904251, + -0.048236358910799026, + -0.04890559986233711, + -0.031106574460864067, + 0.012903307564556599, + -0.019977176561951637, + -0.006912151351571083, + 0.0019081425853073597, + 0.014860434457659721, + -0.025365281850099564, + 0.002794937463477254, + 0.043284691870212555, + 0.020276494324207306, + -0.011479935608804226, + 0.020286889746785164, + -0.0799778401851654, + -0.0441577211022377, + -0.10836701095104218, + 0.01691923663020134, + -0.03380560502409935, + -0.006178810261189938, + 0.04418795183300972, + 0.12636779248714447, + -0.05627435818314552, + -0.05343325436115265, + -0.021905086934566498, + -0.03384912386536598, + 0.030519459396600723, + 0.08152184635400772, + 0.004958018194884062, + -0.018020574003458023, + -0.021576235070824623, + -0.10168562084436417, + 0.003054732456803322, + 0.03394971415400505, + 0.014581653289496899, + -0.013268831185996532, + 0.02797381766140461, + -0.07255864143371582, + 0.07701234519481659, + -0.052928004413843155, + 0.041150953620672226, + -0.04366733133792877, + 0.07772636413574219, + 0.062130775302648544, + 0.0010493664303794503, + 0.09470994025468826 + ], + "screwdriver-bold||*new*,tools,construction,flathead,drill": [ + -0.06346505880355835, + -0.007830123417079449, + -0.007987798191606998, + 0.0483439564704895, + -0.06219634786248207, + -0.04629998654127121, + 0.003541673067957163, + -0.050249747931957245, + -0.014764953404664993, + 0.007183724548667669, + 0.011996014975011349, + 0.004582055378705263, + 0.03868373855948448, + -0.02959948219358921, + -0.03593224659562111, + 0.018744707107543945, + -0.029570559039711952, + -0.031593143939971924, + 0.05920971557497978, + 0.021691203117370605, + -0.02621028572320938, + 0.05445456877350807, + 0.0014606148470193148, + 0.05357157811522484, + 0.059652701020240784, + 0.027234597131609917, + 0.045827899128198624, + 0.0006250360165722668, + -0.005271857138723135, + -0.07004474103450775, + -0.0022952454164624214, + -0.009084069170057774, + 0.04497727379202843, + -0.023326151072978973, + 0.08004453778266907, + 0.031089404597878456, + 0.006990222726017237, + 0.01180411595851183, + -0.02427411638200283, + -0.027106085792183876, + 0.010859159752726555, + -0.06011131405830383, + 0.07913234829902649, + -0.003438191022723913, + 0.0007712418446317315, + 0.06168823316693306, + -0.04272663965821266, + -0.07240884751081467, + 0.06555061042308807, + 0.017720570787787437, + -0.034483280032873154, + -0.1130959540605545, + -0.07872342318296432, + -0.04964875802397728, + 0.054027754813432693, + 0.010380725376307964, + -0.026781074702739716, + -0.04218049347400665, + 0.02628481574356556, + -0.02275201678276062, + 0.013074839487671852, + 0.016241205856204033, + 0.016091981902718544, + 0.04911364987492561, + -0.013019581325352192, + 0.020972024649381638, + -0.014376513659954071, + -0.09140366315841675, + -0.09111104160547256, + 0.05276324972510338, + 0.017236484214663506, + 0.009483770467340946, + -0.05759219825267792, + -0.006056657992303371, + 0.030816294252872467, + -0.04752842336893082, + 0.017315778881311417, + 0.05615393817424774, + -0.014443189837038517, + -0.03037777915596962, + -0.09764862805604935, + 0.020444834604859352, + 0.001628146506845951, + -0.01875656098127365, + 0.0509602427482605, + 0.06468065083026886, + -0.0071794213727116585, + -0.02976306900382042, + -0.02004685252904892, + -0.0029604218434542418, + -0.028046008199453354, + -0.04170483350753784, + -0.04905015975236893, + 0.05852567031979561, + -0.002710904460400343, + 0.0036645173095166683, + 0.0012564572971314192, + 0.043177828192710876, + -0.10191929340362549, + 0.05357823520898819, + 0.017870135605335236, + -0.0046610478311777115, + 0.008990357629954815, + -0.045027658343315125, + -0.08121456205844879, + 0.029051443561911583, + -0.09616468846797943, + -0.06783808767795563, + -0.05703212693333626, + 0.0393853634595871, + 0.055250801146030426, + -0.07873290777206421, + 0.001987867522984743, + -0.07395299524068832, + -0.0353509895503521, + -0.07317546755075455, + -0.08863169699907303, + -0.021464593708515167, + 0.05353585630655289, + 0.0264885276556015, + 0.07810986787080765, + -0.03701087087392807, + -0.03862297162413597, + -0.0926474928855896, + -0.014589823782444, + -0.002240391680970788, + 0.05050092563033104, + -3.183216294165692e-33, + 0.09130985289812088, + -0.014281009323894978, + -0.07331585139036179, + 0.11659970879554749, + -0.019823171198368073, + 0.06071849539875984, + 0.0491824708878994, + 0.050541117787361145, + -0.034472398459911346, + 0.03291340917348862, + 0.06570227444171906, + 0.049727994948625565, + -0.0454418808221817, + 0.12101767957210541, + 0.050674743950366974, + -0.06765033304691315, + 0.06652446836233139, + 0.008488784544169903, + -0.04980792850255966, + -0.0386345349252224, + -0.06674812734127045, + 0.05633797496557236, + -0.040586866438388824, + 0.07210364937782288, + 0.036560237407684326, + 0.012811305932700634, + 0.07431907206773758, + -0.021402744576334953, + -0.09446531534194946, + 0.027196897193789482, + -0.062175460159778595, + 0.0466039776802063, + 0.03419415280222893, + 0.007530658971518278, + -0.011175255291163921, + 0.037676289677619934, + -0.04290707781910896, + -0.07135090231895447, + -0.043283261358737946, + -0.04183864966034889, + -0.02508375234901905, + -0.020793946459889412, + -0.0851956382393837, + -0.07037533074617386, + 0.037376321852207184, + 0.06929866969585419, + -0.011514930985867977, + 0.02067865990102291, + 0.020742271095514297, + 0.02575017511844635, + -0.04479691758751869, + 0.017280172556638718, + 0.05520075559616089, + 0.08598268777132034, + -0.036705560982227325, + 0.019271226599812508, + -0.041380614042282104, + 0.03872848302125931, + 0.04149949923157692, + 0.01492336392402649, + -0.01507975161075592, + 0.12580019235610962, + 0.05870112031698227, + 0.07818374782800674, + 0.02399534359574318, + 0.04205586388707161, + 0.06772014498710632, + 0.03482240438461304, + 0.06241453438997269, + 0.008318654261529446, + 0.06716222316026688, + 0.005326317623257637, + -0.04960992559790611, + 0.03981338441371918, + -0.061242230236530304, + 0.022659769281744957, + 0.014431932009756565, + -0.046159397810697556, + 0.09464146196842194, + -0.09034176170825958, + -0.03618819639086723, + 0.06643372029066086, + -0.05574087053537369, + 0.013759814202785492, + -0.007991759106516838, + 0.015043063089251518, + 0.020754149183630943, + -0.04263633117079735, + 0.010933337733149529, + 0.029315341264009476, + -0.08972053974866867, + -0.08559782803058624, + -0.07684631645679474, + -0.017978055402636528, + -0.08726456761360168, + -2.134960390612286e-34, + 0.03311806172132492, + -0.03461277112364769, + 0.004288827069103718, + 0.01710987091064453, + -0.03364511579275131, + -0.008759688585996628, + 0.0011455552885308862, + -0.06778647005558014, + 0.021602919325232506, + 0.031763289123773575, + 0.04583950713276863, + 0.025687240064144135, + -0.007879282347857952, + -0.06644407659769058, + 0.13395722210407257, + 0.034776199609041214, + -0.08599472045898438, + -0.017244845628738403, + -0.06321019679307938, + 0.07680227607488632, + 0.026125390082597733, + 0.03235068917274475, + -0.07143834978342056, + 0.06144658476114273, + 0.041440531611442566, + -0.029639746993780136, + -0.03425654023885727, + -0.029013192281126976, + -0.05075982213020325, + 0.04390748217701912, + -0.04509855806827545, + -0.02077299728989601, + -0.02078985422849655, + 0.04806428775191307, + -0.05325203388929367, + 0.015544147230684757, + 0.05407062545418739, + -0.032363444566726685, + 0.03959561139345169, + -0.0039568934589624405, + 0.013751599937677383, + 0.023060034960508347, + 0.020542219281196594, + 0.08275135606527328, + -0.07920774817466736, + -0.07062375545501709, + -0.041217174381017685, + -0.027165835723280907, + 0.013692168518900871, + 0.09351297467947006, + -0.010251740925014019, + 0.0007848044042475522, + 0.05131319537758827, + -0.03425249084830284, + -0.08449751138687134, + -0.03506958484649658, + -0.05335584282875061, + -0.10499837249517441, + 0.0416177362203598, + 0.06287506222724915, + 0.023872623220086098, + -0.02816360630095005, + 0.0243495162576437, + 0.09435243904590607, + -0.00982036255300045, + -0.053196556866168976, + 0.05534636601805687, + -0.04911741614341736, + -0.09008869528770447, + 0.04376276955008507, + 0.07049351185560226, + 0.05441327765583992, + 0.08208850026130676, + -0.03807564824819565, + 0.041960861533880234, + -0.06258010864257812, + 0.025352369993925095, + 0.0013965734979137778, + -0.04146157577633858, + 0.033223848789930344, + 0.0939880833029747, + -0.010445835068821907, + 0.025495801120996475, + 0.06849369406700134, + -0.08228905498981476, + -0.01698438636958599, + -0.027474984526634216, + 0.05146481469273567, + -0.03282368555665016, + -0.023971322923898697, + -0.03547733277082443, + 0.014631054364144802, + -0.014575895853340626, + 0.04433070868253708, + -0.08948242664337158, + -2.2914317554523222e-08, + -0.011781172826886177, + -0.031561512500047684, + -0.031172333285212517, + -0.08117615431547165, + 0.020980892702937126, + -0.058877911418676376, + -0.045143984258174896, + 0.025586450472474098, + -0.07099530100822449, + -0.01287371851503849, + 0.10690386593341827, + -0.03279374912381172, + -0.034515414386987686, + 0.024074062705039978, + 0.03102213144302368, + 0.02904048189520836, + -0.020655354484915733, + 0.04691917821764946, + -0.04745517671108246, + -0.10860021412372589, + 0.05706408992409706, + 0.036165751516819, + 0.12852852046489716, + 0.0008022135007195175, + 0.007462729699909687, + 0.035346969962120056, + -0.12050934880971909, + -0.027642926201224327, + 0.037730857729911804, + 0.10543496906757355, + 0.07398676872253418, + 0.0702039822936058, + 0.037572383880615234, + 0.009439950808882713, + -0.01828986592590809, + -0.04479852318763733, + 0.006151190493255854, + 0.06884803622961044, + -0.011303054168820381, + 0.086403489112854, + -0.07183026522397995, + 0.008213995955884457, + -0.06396501511335373, + -0.018593067303299904, + -0.14700725674629211, + -0.01719842664897442, + -0.07236956804990768, + -0.0361759290099144, + -0.0900639221072197, + -0.08614456653594971, + -0.0372454896569252, + 0.04692414402961731, + -0.0039696586318314075, + 0.07054543495178223, + -0.006905143614858389, + 0.03765098750591278, + 0.022023819386959076, + 0.06418892741203308, + -0.02260340005159378, + -0.0011813514865934849, + 0.055951833724975586, + -0.0014879369409754872, + 0.06806086748838425, + 0.02929176576435566 + ], + "scribble-bold||*new*,doodles,squiggle,drawing,sign,signature": [ + -0.022152569144964218, + -0.09516674280166626, + 0.027712281793355942, + -0.011936570517718792, + -0.07794416695833206, + -0.023493768647313118, + 0.058088187128305435, + -0.02907523699104786, + -0.05515962839126587, + 0.0013704944867640734, + 0.02980097010731697, + 0.006735644768923521, + 0.0753299817442894, + 0.009477720595896244, + -0.003461231244727969, + 0.05670616030693054, + -0.01843041181564331, + 0.0007756516570225358, + 0.043675635010004044, + 0.0005811829469166696, + 0.044604863971471786, + -0.019145354628562927, + -0.002369244582951069, + 0.021239183843135834, + 0.08099038153886795, + 0.07314357906579971, + 0.0362609401345253, + -0.02584214136004448, + 0.05017274618148804, + -0.03197115287184715, + -0.026399847120046616, + 0.038304634392261505, + 0.10998895764350891, + 0.014191323891282082, + 0.08802258968353271, + 0.05741133540868759, + -0.03869549557566643, + 0.04164198413491249, + 0.06609952449798584, + -0.019152656197547913, + -0.030715465545654297, + -0.09030851721763611, + -0.009622504934668541, + 0.0381324402987957, + 0.007277612574398518, + -0.008657269179821014, + -0.03613033890724182, + 0.02454608865082264, + -0.03559861332178116, + 0.031874604523181915, + -0.031532444059848785, + -0.12911555171012878, + -0.14146798849105835, + -0.05395754799246788, + 0.04217850789427757, + -0.008678900077939034, + 0.022788722068071365, + -0.07473058998584747, + 0.04314063489437103, + -0.03567816689610481, + -0.033415041863918304, + 0.03682318329811096, + 0.05981914699077606, + 0.01649588719010353, + 0.04636365547776222, + -0.024914821609854698, + -0.030154341831803322, + 0.00974496454000473, + -0.010016483254730701, + 0.0960184633731842, + 0.009590486995875835, + 0.02729787304997444, + -0.00566481426358223, + 0.005697579588741064, + 0.04800501838326454, + -0.060272131115198135, + 0.010033966042101383, + -0.02262362837791443, + 0.04929937422275543, + -0.08540316671133041, + -0.15101587772369385, + -0.028600357472896576, + -0.05234093591570854, + 0.055748630315065384, + 0.055856119841337204, + 0.05467570200562477, + -0.07717474550008774, + -0.03275404870510101, + 0.01015232503414154, + 0.024952907115221024, + -0.018752235919237137, + -0.0509132482111454, + -0.010024459101259708, + 0.009738833643496037, + -0.07823113352060318, + 0.009302436374127865, + 0.07740700989961624, + 0.007317353505641222, + -0.05500177666544914, + 0.07246819138526917, + 0.01784837245941162, + 0.045551400631666183, + 0.11792216449975967, + -0.044126540422439575, + 0.029748357832431793, + -0.01947668194770813, + 0.0042861890979111195, + -0.10252834856510162, + 0.01071736216545105, + 0.0030638915486633778, + -0.0246496070176363, + -0.10169988125562668, + 0.015985870733857155, + -0.03863010182976723, + -0.06940968334674835, + -0.02563382126390934, + -0.07961171120405197, + -0.018840519711375237, + 0.0901968777179718, + 0.06122477352619171, + 0.06762444227933884, + -0.020191706717014313, + -0.0695153996348381, + -0.03606891259551048, + -0.09519897401332855, + -0.015884026885032654, + -0.0240674689412117, + -7.772985667376777e-35, + 0.06345442682504654, + 0.10781953483819962, + -0.056163061410188675, + 0.09281504154205322, + 0.03239847347140312, + -0.037781234830617905, + -0.05152910202741623, + -0.050139058381319046, + -0.07968657463788986, + 0.07156994193792343, + 0.03830675035715103, + -0.0005750663694925606, + -0.004258947446942329, + 0.15558764338493347, + 0.014474372379481792, + -0.040331799536943436, + 0.0008900357061065733, + -0.05361140891909599, + -0.04439773038029671, + 0.0300305038690567, + -0.06203000247478485, + 0.02627890557050705, + -0.028882693499326706, + -0.005229076370596886, + -0.02625400573015213, + -0.055019084364175797, + -0.010756650008261204, + -0.038876380771398544, + -0.02244439162313938, + 0.049064796417951584, + 0.052839670330286026, + -0.005723291542381048, + 0.0423143170773983, + -0.035539884120225906, + -0.042206086218357086, + -0.03782862797379494, + -0.009123760275542736, + -0.09298976510763168, + 0.02160142920911312, + 0.05308698117733002, + 0.021970564499497414, + -0.04251979663968086, + -0.006009984761476517, + -0.009941360913217068, + 0.04322919249534607, + 0.06732006371021271, + -0.002511471975594759, + 0.06868641078472137, + 0.055098727345466614, + -0.012392953969538212, + 0.026118453592061996, + 0.006402937229722738, + 0.039572086185216904, + 0.03131253272294998, + 0.006756840739399195, + -0.07908264547586441, + -0.02437753975391388, + 0.02938636764883995, + -0.0160534530878067, + -0.011400175280869007, + 0.0014323329087346792, + 0.0881335586309433, + 0.10486128181219101, + 0.0249710101634264, + -0.049352094531059265, + 0.014650341123342514, + -0.05552829056978226, + -0.03437389060854912, + 0.04975632578134537, + -0.04492078721523285, + -0.01929159089922905, + 0.06248233839869499, + -0.03751334175467491, + -0.015133650973439217, + -0.07700866460800171, + -0.03374309465289116, + 0.06502722948789597, + -0.012674451805651188, + 0.013874885626137257, + -0.07050316780805588, + -0.05657511577010155, + 0.02695545181632042, + -0.07812318950891495, + -0.0064393384382128716, + 0.0069212946109473705, + -0.010045908391475677, + 0.07123461365699768, + -0.11928532272577286, + -0.06717369705438614, + -0.0193705465644598, + -0.11097604036331177, + -0.07137883454561234, + -0.03425758332014084, + -0.05152427777647972, + -0.06935883313417435, + -9.442633162495161e-34, + -0.05742034688591957, + 0.04836352914571762, + -0.030398624017834663, + 0.04839778691530228, + -0.08686515688896179, + 0.009288458153605461, + 0.03761877492070198, + -0.020485881716012955, + 0.046245090663433075, + 0.028528567403554916, + -0.02926221303641796, + 0.013803998939692974, + -0.029012301936745644, + -0.09156331419944763, + 0.03850652277469635, + 0.0192984901368618, + 0.030549708753824234, + 0.06630783528089523, + 0.04002177715301514, + -0.033412057906389236, + -0.0396181158721447, + -0.008586508221924305, + -0.06395012140274048, + 0.05509709566831589, + 0.041392408311367035, + 0.05647645518183708, + 0.03544338792562485, + -0.017964079976081848, + -0.023392388597130775, + 0.03607683256268501, + -0.006504291668534279, + -0.019790511578321457, + 0.044438235461711884, + 0.05219000577926636, + -0.034751519560813904, + -0.04114757105708122, + 0.061691004782915115, + -0.06662466377019882, + -0.003805936546996236, + -0.016734113916754723, + 0.04082590714097023, + 0.005250261630862951, + 0.10351713001728058, + 0.11511550098657608, + -0.030420886352658272, + 0.03346235305070877, + -0.04976269230246544, + 0.035929858684539795, + 0.033981043845415115, + 0.06960143893957138, + 0.06267502903938293, + -0.02617916837334633, + 0.005374812986701727, + -0.05449478328227997, + -0.07747673243284225, + 0.050637874752283096, + -0.030791571363806725, + -0.009609597735106945, + -0.012700569815933704, + -0.003156680380925536, + -0.04566795751452446, + 0.02675553224980831, + 0.0022594514302909374, + 0.02311430498957634, + 0.055244214832782745, + -0.07199753075838089, + -0.019157463684678078, + -0.0278423223644495, + -0.029660804197192192, + -0.0710686594247818, + 0.0021465346217155457, + 0.028036605566740036, + -0.04604359716176987, + -0.01761408895254135, + 0.026396986097097397, + 0.0021121373865753412, + 0.015380761586129665, + -0.0161453727632761, + -0.0649438127875328, + 0.010641271248459816, + -0.02037031762301922, + 0.0037461500614881516, + -0.013613170012831688, + 0.06211383640766144, + -0.0030448813922703266, + 0.041710056364536285, + -0.07303999364376068, + 0.031354792416095734, + 0.015493438579142094, + -0.000469032529508695, + 0.008771250955760479, + 0.10223741829395294, + 0.04348248615860939, + -0.006841450929641724, + -0.03305592015385628, + -2.1946917172499525e-08, + -0.05001738667488098, + -0.035795606672763824, + -0.012069422751665115, + -0.09828424453735352, + 0.04984193295240402, + -0.0020094597712159157, + -0.02607979066669941, + -0.12712855637073517, + -0.03703557327389717, + -0.03247437626123428, + 0.07998451590538025, + -0.023649131879210472, + -0.1195828765630722, + -0.07354646176099777, + 0.075828418135643, + 0.0202530138194561, + 0.0019558097701519728, + 0.06431225687265396, + -0.0836324617266655, + -0.07943614572286606, + -0.021280059590935707, + 0.056467026472091675, + -0.020673900842666626, + -0.004073129966855049, + -0.08811135590076447, + 0.018261024728417397, + -0.026578441262245178, + 0.01273854449391365, + -0.028882212936878204, + 0.028004484251141548, + 0.07745267450809479, + 0.08249005675315857, + 0.08679059892892838, + -0.037518590688705444, + -0.03326563537120819, + -0.05471555516123772, + 7.750046643195674e-05, + 0.02822820097208023, + 0.00504146097227931, + 0.17234891653060913, + 0.04385486990213394, + -0.003146670525893569, + -0.015621927566826344, + -0.03155430406332016, + -0.0711636170744896, + -0.03131233528256416, + 0.054521359503269196, + -0.009865217842161655, + -0.009445698000490665, + -0.05702149122953415, + -0.00523922685533762, + 0.04695545509457588, + 0.04730523005127907, + 0.05973850190639496, + -0.018735278397798538, + 0.008176038973033428, + 0.02435588650405407, + 0.11477731913328171, + 0.045397061854600906, + 0.03920220956206322, + 0.05453066527843475, + 0.0783262774348259, + 0.05688263848423958, + 0.029085984453558922 + ], + "scribble-loop-bold||doodles,drawing,sign,signature": [ + -0.012788364663720131, + -0.05152535066008568, + 0.014910214580595493, + -0.039178647100925446, + -0.070572629570961, + -0.03040424920618534, + 0.06962613016366959, + -0.02294270135462284, + -0.04722808673977852, + -0.04252256080508232, + 0.014226571656763554, + 0.02356741949915886, + 0.08534713089466095, + -0.012823700904846191, + -0.026646358892321587, + 0.0595678873360157, + -0.05834077671170235, + 0.01548370998352766, + 0.06319412589073181, + -0.008219663985073566, + 0.015199385583400726, + -0.016896696761250496, + 0.021594777703285217, + 0.018819348886609077, + 0.04637584090232849, + 0.08278576284646988, + 0.049451794475317, + -0.03145007789134979, + 0.04217343404889107, + -0.02464446984231472, + -0.0047633410431444645, + 0.00815946701914072, + 0.0831955298781395, + -0.002741717966273427, + 0.13388395309448242, + 0.04854864254593849, + -0.039644524455070496, + 0.04862556234002113, + 0.05731530487537384, + 0.004360862076282501, + 0.021296335384249687, + -0.07177310436964035, + 0.0157023835927248, + 0.005819694139063358, + -0.0036366090644150972, + -0.0036665727384388447, + -0.080137699842453, + 0.030163493007421494, + -0.04617922753095627, + 0.03821516036987305, + -0.009285793639719486, + -0.10787950456142426, + -0.14389708638191223, + -0.09927558898925781, + 0.03221543878316879, + -0.02170221321284771, + 0.023197434842586517, + -0.052281416952610016, + 0.03620557487010956, + -0.06668110191822052, + 0.005635866429656744, + 0.038136377930641174, + 0.036162227392196655, + 0.0090703796595335, + 0.07431242614984512, + -0.0263201966881752, + -0.024667460471391678, + 0.03249051421880722, + -0.021325673907995224, + 0.1127258762717247, + 0.0249138493090868, + 0.046512577682733536, + 0.007774326018989086, + -0.02778478153049946, + 0.06489834189414978, + -0.015435019508004189, + 0.0046700951643288136, + -0.022131454199552536, + 0.03753998503088951, + -0.11707589775323868, + -0.165517196059227, + -0.03446801379323006, + -0.03271998092532158, + 0.07008659839630127, + 0.06643838435411453, + 0.04448520019650459, + -0.08537980914115906, + -0.019674675539135933, + 0.030586762353777885, + 0.026418523862957954, + -0.016070645302534103, + -0.042465951293706894, + -0.020577702671289444, + -0.021776456385850906, + -0.06439466029405594, + 0.030975911766290665, + 0.09756895154714584, + 0.016006508842110634, + -0.07547056674957275, + 0.06662286818027496, + 0.024694519117474556, + 0.05915628746151924, + 0.1133226677775383, + -0.06943152099847794, + 0.022105418145656586, + -0.012922598980367184, + -0.008931626565754414, + -0.09988203644752502, + -0.014277024194598198, + -0.038694363087415695, + 0.012480893172323704, + -0.10043992847204208, + 0.0488673560321331, + -0.017787359654903412, + -0.06244014576077461, + -0.04331617057323456, + -0.06937498599290848, + 0.012895522639155388, + 0.08560305833816528, + 0.029529262334108353, + 0.061455510556697845, + -0.013826148584485054, + -0.08676103502511978, + -0.02649982087314129, + -0.08516258746385574, + -0.03140129894018173, + -0.022037407383322716, + -2.0271607628151665e-33, + 0.03755711764097214, + 0.08012820780277252, + -0.019764263182878494, + 0.071320079267025, + 0.05245525762438774, + -0.04817448928952217, + -0.04713475704193115, + -0.06195627152919769, + -0.10186442732810974, + 0.0889793336391449, + 0.0565144419670105, + -0.026642518118023872, + 0.020923389121890068, + 0.1559026688337326, + 0.009281503036618233, + -0.03125913441181183, + 0.02819008193910122, + -0.0617530457675457, + -0.08442997932434082, + 0.0591205358505249, + -0.03391335904598236, + -0.04105276241898537, + -0.03529032692313194, + -0.03762086108326912, + -0.02827424742281437, + -0.02478121593594551, + -0.03483657166361809, + 0.01578417420387268, + -0.02196454256772995, + 0.03395124524831772, + 0.04199742153286934, + -0.002715517533943057, + 0.02140079252421856, + -0.05277102068066597, + -0.04240042343735695, + -0.050842490047216415, + 0.017928633838891983, + -0.08181333541870117, + 0.021016567945480347, + 0.07995186746120453, + 0.03993578627705574, + -0.03450145199894905, + -0.007868683896958828, + -0.011468143202364445, + 0.040253106504678726, + 0.06975259631872177, + 0.02502506412565708, + 0.0703892782330513, + 0.043398261070251465, + 0.02399328537285328, + 0.006804096978157759, + 0.007523547857999802, + 0.038659896701574326, + 0.0044500213116407394, + 0.021385077387094498, + -0.08224084973335266, + -0.003374491585418582, + 0.04634341597557068, + -0.026112228631973267, + 0.039883460849523544, + 0.012482069432735443, + 0.0926903709769249, + 0.0742671862244606, + 0.03815009817481041, + -0.0665939524769783, + 0.021989086642861366, + -0.026872331276535988, + -0.0293412022292614, + 0.04140882194042206, + -0.050355322659015656, + -0.026504194363951683, + 0.06022786721587181, + -0.023778246715664864, + -0.035829126834869385, + -0.07676480710506439, + -0.03183994069695473, + 0.027994200587272644, + -0.02815689519047737, + 0.011700197122991085, + -0.07792903482913971, + -0.044353339821100235, + 0.018290149047970772, + -0.0730571374297142, + -0.03509156405925751, + 0.026341944932937622, + -0.00386905949562788, + 0.0478619784116745, + -0.11822248250246048, + -0.08330906927585602, + 0.006100652273744345, + -0.10749007761478424, + -0.05091292783617973, + 0.012787486426532269, + -0.03837130591273308, + -0.06439203023910522, + 5.861187024755222e-34, + -0.019949566572904587, + 0.0404764823615551, + 0.015942035242915154, + 0.033969275653362274, + -0.06623926013708115, + 0.0049976506270468235, + 0.04708002507686615, + -0.040641069412231445, + 0.004103812389075756, + 0.026206811890006065, + -0.028213128447532654, + 0.02936566434800625, + -0.05340765044093132, + -0.037909433245658875, + 0.05913359671831131, + -0.0032011824660003185, + 0.016440538689494133, + 0.07173267751932144, + 0.029627997428178787, + -0.08381485939025879, + -0.04377370700240135, + -0.003692337078973651, + -0.009731893427670002, + 0.0667385458946228, + -0.0019328620983287692, + 0.06762909144163132, + 0.017367571592330933, + -0.016896581277251244, + -0.015731247141957283, + 0.038796279579401016, + 0.00019903919019270688, + -0.01907178945839405, + 0.059652671217918396, + 0.031684283167123795, + -0.029878541827201843, + -0.018868986517190933, + 0.05352030694484711, + -0.05127407982945442, + 0.021731045097112656, + -0.004318675491958857, + 0.03398313745856285, + -0.015829550102353096, + 0.08625146001577377, + 0.07310527563095093, + -0.035105280578136444, + 0.039084214717149734, + -0.04429434612393379, + 0.06748750060796738, + 0.03444957733154297, + 0.07048814743757248, + 0.025772754102945328, + -0.021094942465424538, + -0.007390867918729782, + -0.054719477891922, + -0.10777878016233444, + 0.052930884063243866, + -0.0357678085565567, + -0.021847441792488098, + -0.015600371174514294, + -0.005429823417216539, + -0.06151244789361954, + 0.023306557908654213, + 0.026154128834605217, + 0.017270637676119804, + 0.08824170380830765, + -0.0515168271958828, + -0.001225302810780704, + -0.055939700454473495, + -0.0323348268866539, + -0.01938381791114807, + -0.005199003499001265, + 0.01994742639362812, + -0.05061778426170349, + 0.0113515704870224, + 0.042929984629154205, + 0.002717988332733512, + 0.02941473014652729, + 0.0013667126186192036, + -0.008450151421129704, + -0.021765246987342834, + -0.06726743280887604, + -0.01020804699510336, + -0.015970641747117043, + 0.08486608415842056, + -0.013129541650414467, + 0.04606384038925171, + -0.10863850265741348, + -0.005866575054824352, + 0.012242027558386326, + 0.01537055242806673, + 0.0426141731441021, + 0.0887196734547615, + 0.07204705476760864, + -0.00576572772115469, + -0.03307228907942772, + -1.8028035952966093e-08, + -0.04849136248230934, + -0.041937731206417084, + -0.020968744531273842, + -0.09073950350284576, + 0.0347931906580925, + 0.0062393443658947945, + 0.016565462574362755, + -0.13999637961387634, + -0.008557764813303947, + 0.004437637515366077, + 0.10353311896324158, + -0.038497451692819595, + -0.10253512114286423, + -0.06636004894971848, + 0.04287415370345116, + 0.008471968583762646, + -0.010538283735513687, + 0.04921098053455353, + -0.09798632562160492, + -0.08501610159873962, + -0.035196393728256226, + 0.05715744197368622, + -0.024079816415905952, + -0.007566207088530064, + -0.06191658601164818, + -0.012357553467154503, + -0.015917981043457985, + 0.06101486086845398, + -0.015341292135417461, + 0.018168997019529343, + 0.06155429780483246, + 0.04272974282503128, + 0.08592024445533752, + -0.001218893681652844, + 0.0029154769144952297, + -0.09651583433151245, + -0.0015596866142004728, + 0.026497026905417442, + 0.015212963335216045, + 0.16222688555717468, + 0.018861789256334305, + 0.01882002502679825, + -0.006631670519709587, + -0.046630583703517914, + -0.050904180854558945, + -0.01407940499484539, + 0.06537545472383499, + 0.016694815829396248, + -0.025001920759677887, + -0.030813230201601982, + -0.06863952428102493, + 0.04472554102540016, + 0.05014244094491005, + 0.04383652284741402, + -0.02002577669918537, + -0.02832217887043953, + 0.016158537939190865, + 0.11166874319314957, + 0.037184856832027435, + 0.07739295810461044, + 0.035916175693273544, + 0.05327597260475159, + 0.020394697785377502, + 0.012525370344519615 + ], + "scroll-bold||*updated*,parchment,paper,script,spell,fantasy": [ + -0.059869591146707535, + -0.015821820124983788, + 0.0037923019845038652, + 0.012606156058609486, + 0.03835223615169525, + -0.01239280216395855, + 0.06654378771781921, + -0.0703069344162941, + 0.017138725146651268, + 0.04922432079911232, + -0.04285115376114845, + 0.06706929951906204, + 0.009270261973142624, + -0.05853414535522461, + -0.05101019889116287, + 0.007348151411861181, + -0.012424965389072895, + 0.08125279098749161, + -0.04828762635588646, + -0.01743345521390438, + -0.024890774860978127, + 0.0803603082895279, + 0.05057292431592941, + 0.04567721486091614, + -0.029321353882551193, + 0.010628597810864449, + -0.03133483603596687, + -0.09249282628297806, + -0.012324810028076172, + -0.0741347074508667, + -0.020314116030931473, + 0.08637896925210953, + 0.06583266705274582, + 0.0054763187654316425, + 0.0409826934337616, + 0.04600462317466736, + -0.056882649660110474, + -0.024145282804965973, + 0.030617091804742813, + 0.023828178644180298, + -0.014656109735369682, + -0.06106165051460266, + -0.05909813567996025, + 0.10503102838993073, + -0.01086344663053751, + -0.02831970900297165, + -0.06816369295120239, + -0.0374467633664608, + -0.04208777844905853, + 0.02950475364923477, + -0.030651802197098732, + -0.08126469701528549, + -0.06302610039710999, + 0.028687069192528725, + -0.013054240494966507, + -0.015070321038365364, + -0.02716241218149662, + -0.02920549362897873, + 0.04512353613972664, + -0.003717351472005248, + -0.03035820834338665, + 0.06503144651651382, + 0.04971205070614815, + 0.06671915203332901, + -0.006567533127963543, + 0.013304614461958408, + 0.008420536294579506, + 0.03453918918967247, + -0.04542164131999016, + 0.054429735988378525, + -0.03106197714805603, + 0.03225843980908394, + 0.043745044618844986, + 0.01832628808915615, + -0.024300439283251762, + -0.06958550959825516, + -0.01913820579648018, + -0.1189153790473938, + -0.016345489770174026, + -0.08056364208459854, + -0.0885150283575058, + -0.07624836266040802, + 0.002273180289193988, + 0.07106713950634003, + 0.01519288681447506, + 0.06661498546600342, + -0.03343048691749573, + -0.0017679338343441486, + 0.023814117535948753, + -0.007904613390564919, + 0.009376877918839455, + -0.06348896771669388, + 0.03191160410642624, + 0.05463489890098572, + -0.14384502172470093, + 0.05674104392528534, + 0.07003738731145859, + -0.0026784411165863276, + -0.05727582424879074, + 0.1056433767080307, + 0.026188600808382034, + 0.05428505316376686, + 0.06537162512540817, + 0.010459494777023792, + -0.027227193117141724, + -0.014545904472470284, + 0.005093134008347988, + -0.06055194512009621, + -0.03301633894443512, + -0.030799269676208496, + -0.007621957920491695, + -0.10579124838113785, + -0.043157655745744705, + -0.07965625822544098, + -0.024452293291687965, + -0.042627446353435516, + 0.03708900511264801, + -0.030582653358578682, + 0.05732272192835808, + 0.0930926576256752, + 0.050672516226768494, + 0.02858842723071575, + -0.05904721841216087, + -0.023795953020453453, + -0.06613221764564514, + -0.023437706753611565, + 0.026288585737347603, + -2.5416955786632058e-33, + 0.05692971870303154, + 0.057775095105171204, + -0.06260475516319275, + 0.08465877920389175, + 0.054012030363082886, + -0.0064874496310949326, + -0.031251292675733566, + -0.08506619185209274, + -0.10490448772907257, + 0.03391795605421066, + 0.09593019634485245, + 0.08463947474956512, + -0.03881135210394859, + 0.14092738926410675, + 0.008848194032907486, + -0.06833575665950775, + 0.007780556101351976, + -0.0025995855685323477, + -0.010772728361189365, + -0.0042502074502408504, + -0.07080662995576859, + 0.028910450637340546, + -1.0879241017391905e-05, + -0.045663021504879, + -0.05407831445336342, + 0.018666481599211693, + -0.03109363466501236, + 0.02470691129565239, + 0.005324657075107098, + 0.04664286598563194, + -0.004119346849620342, + 0.02429269813001156, + 0.037005502730607986, + -0.061818018555641174, + -0.03897438943386078, + -0.012109301052987576, + -0.05223146080970764, + -0.0640430673956871, + 0.02453569322824478, + 0.05425431951880455, + -0.10965456813573837, + -0.02709966152906418, + -0.030471013858914375, + -0.04389216750860214, + 0.04054136201739311, + 0.06995556503534317, + -0.03652701526880264, + 0.045692890882492065, + 0.0460541807115078, + 0.01665990613400936, + -0.007097472902387381, + 0.042742568999528885, + 0.018039826303720474, + -0.03935399278998375, + 0.034614164382219315, + -0.055288609117269516, + -0.02474316582083702, + 0.05134139582514763, + 0.08892840892076492, + 0.023172268643975258, + 0.042166728526353836, + -0.01122544426470995, + 0.016593126580119133, + -0.021645374596118927, + -0.003773159347474575, + 0.0014472100883722305, + -0.022353453561663628, + 0.0680995061993599, + 0.04709550738334656, + -0.03476019576191902, + -0.02691684290766716, + 0.06773746013641357, + 0.04339439421892166, + 0.0889381617307663, + -0.004780342802405357, + -0.012786089442670345, + -0.005689061712473631, + -0.022432582452893257, + -0.01624227687716484, + -0.06413102149963379, + -0.03548663854598999, + -0.050118885934352875, + -0.11049044132232666, + 0.061586759984493256, + 0.009591236710548401, + -0.03349130600690842, + 0.0031642864923924208, + -0.030922075733542442, + -0.056944020092487335, + 0.01955813355743885, + -0.03318093344569206, + 0.018940486013889313, + 0.046961814165115356, + -0.15006519854068756, + -0.08702072501182556, + 1.1193713832327351e-34, + 0.021384121850132942, + 0.02047494798898697, + -0.13734157383441925, + 0.05410917475819588, + -0.04652242362499237, + 0.005210082978010178, + -0.02690037153661251, + 0.05594422295689583, + 0.09175826609134674, + -0.011684272438287735, + -0.011177882552146912, + 0.024211350828409195, + -0.06491855531930923, + -0.019710348919034004, + 0.0009797272505238652, + 0.03752235323190689, + 0.006185530219227076, + 0.07109910994768143, + -0.0018267588457092643, + 0.03668547794222832, + -0.013113702647387981, + -0.04400285333395004, + -0.12387604266405106, + 0.0947374626994133, + 0.022542787715792656, + 0.01503504253923893, + -0.00730524817481637, + 0.061782948672771454, + -0.09536635875701904, + -0.01528041809797287, + -0.027649767696857452, + -0.0610719695687294, + 0.0016195055795833468, + 0.048835210502147675, + -0.032045308500528336, + 0.014053265564143658, + 0.07891642302274704, + -0.043294962495565414, + -0.04593219980597496, + 0.026444511488080025, + 0.053780559450387955, + -0.02763906493782997, + 0.06513507664203644, + -0.015681063756346703, + -0.08483005315065384, + 0.01636301726102829, + -0.09763126820325851, + 0.04508357495069504, + 0.07051444053649902, + 0.011462008580565453, + 0.007253357674926519, + -0.03308902680873871, + 0.011141115799546242, + -0.11546672880649567, + -0.008958646096289158, + -0.0007544496329501271, + -0.05522248148918152, + -0.05129407346248627, + -0.06333527714014053, + 0.04885052889585495, + 0.00043635841575451195, + 0.10286365449428558, + 0.030882880091667175, + 0.04483845829963684, + 0.010813120752573013, + -0.05556875094771385, + -0.022779453545808792, + -0.056517984718084335, + -0.05512208864092827, + 0.022722037509083748, + -0.00022409585653804243, + -0.024176524952054024, + -0.03681439906358719, + 0.02168942242860794, + 0.031873393803834915, + -0.007095634005963802, + 0.09930212795734406, + -0.007825861684978008, + 0.028146062046289444, + 0.03263285756111145, + 0.03930250182747841, + 0.012663803063333035, + -0.0210553128272295, + -0.023911409080028534, + -0.005775554571300745, + 0.07654478400945663, + -0.09343937784433365, + -0.00038799975300207734, + 0.0047197844833135605, + -0.06732358783483505, + -0.018315965309739113, + 0.07466752082109451, + 0.017147108912467957, + 0.021731751039624214, + -0.02096027135848999, + -2.0132226552505017e-08, + -0.03045029193162918, + -0.04951845481991768, + -0.026784498244524002, + -0.021539602428674698, + 0.04055996611714363, + -0.021753454580903053, + 0.053445667028427124, + -0.047897737473249435, + -0.07659178227186203, + -0.07054781913757324, + 0.09332245588302612, + 0.03038259595632553, + 0.015389489941298962, + 0.007258961908519268, + 0.08307115733623505, + 0.009176414459943771, + 0.02047310583293438, + 0.02976320870220661, + -0.04992670938372612, + -0.09855883568525314, + 0.02370600216090679, + 0.08985163271427155, + 0.041783906519412994, + -0.06607740372419357, + -0.014983517117798328, + 0.047784894704818726, + -0.04488350823521614, + 0.020900772884488106, + 0.00962747447192669, + 0.06492866575717926, + 0.10460194200277328, + 0.03218930587172508, + 0.010593223385512829, + 0.011933749541640282, + -0.04551665857434273, + -0.039425093680620193, + -0.03139035403728485, + -0.01228128932416439, + -0.06410738080739975, + 0.10855075716972351, + 0.029890839010477066, + 0.026802178472280502, + 0.02967899851500988, + -0.010983978398144245, + -0.007902927696704865, + -0.036056701093912125, + 0.046729788184165955, + -0.040725529193878174, + -0.04054829478263855, + -0.10331986844539642, + 0.03412944823503494, + -0.016965294256806374, + 0.10656294226646423, + 0.07797082513570786, + 0.003510082606226206, + -0.03730021044611931, + -0.0003425228351261467, + 0.157165989279747, + -0.04344267398118973, + -0.005892625078558922, + 0.06757226586341858, + -0.009599807672202587, + 0.04526025056838989, + 0.030436325818300247 + ], + "seal-bold||badge,verified,verification,shapes,polygons,circle-wavy": [ + -0.021035537123680115, + 0.05568833649158478, + -0.015040957368910313, + 0.0036479071713984013, + 0.021939119324088097, + -0.04524177685379982, + 0.10587041825056076, + -0.02403760701417923, + -0.024833552539348602, + -0.08139123022556305, + 0.011867555789649487, + 0.004111855290830135, + 0.045743945986032486, + 0.002720074262470007, + -0.013576393947005272, + 0.003822862869128585, + -0.015580208972096443, + 0.032300908118486404, + -0.03281369432806969, + -0.06277173012495041, + 0.007297731935977936, + -0.025724876672029495, + 0.026196662336587906, + 0.029956649988889694, + -0.04094207286834717, + 0.0192754864692688, + -0.0004140644450671971, + 0.0022942773066461086, + 0.058970119804143906, + -0.0867697149515152, + -0.055415842682123184, + -0.003453692188486457, + 0.07503955066204071, + 0.027902506291866302, + -0.005416541360318661, + 0.016057239845395088, + 0.009731870144605637, + 0.045012395828962326, + 0.04693510755896568, + 0.009033062495291233, + -0.015910327434539795, + -0.1239161416888237, + 1.4938081221771426e-05, + 0.10144080966711044, + -0.013243863359093666, + 0.05217121168971062, + -0.052740875631570816, + 0.03700336813926697, + -0.04493090510368347, + 0.012270140461623669, + 0.027513982728123665, + -0.10076698660850525, + -0.12265541404485703, + -0.0012419145787134767, + -0.04483596980571747, + -0.011519457213580608, + -0.06753803789615631, + -0.05061279237270355, + 0.018908992409706116, + -0.021511683240532875, + 0.10439053922891617, + 0.04809049516916275, + 0.00037486371002160013, + 0.11040692031383514, + -0.017865972593426704, + 0.025367047637701035, + -0.006585301831364632, + -0.01727229170501232, + -0.016300687566399574, + -0.03930645436048508, + 0.06958112865686417, + 0.028730209916830063, + -0.01550990343093872, + -0.043414678424596786, + 0.006082008592784405, + -0.008348372764885426, + -0.028784338384866714, + -0.01099011767655611, + -0.030401527881622314, + -0.06528401374816895, + -0.07931219041347504, + -0.047154977917671204, + -0.04103585332632065, + 0.08682350069284439, + 0.03592640906572342, + 0.08700715750455856, + -0.04656963422894478, + -0.1080341711640358, + -0.013144261203706264, + 0.015381616540253162, + -0.0036500238347798586, + 0.024273723363876343, + 0.023685548454523087, + -0.029921453446149826, + -0.094757579267025, + 0.014575975947082043, + 0.03660055622458458, + -0.02526654675602913, + -0.01821611449122429, + 0.10964329540729523, + -0.036654599010944366, + -0.00725196348503232, + 0.020874541252851486, + -0.06120730936527252, + 0.03604947403073311, + 0.004641011357307434, + -0.037496332079172134, + -0.06437914818525314, + 0.07861694693565369, + 0.04130787402391434, + -0.02647966518998146, + -0.037247925996780396, + 0.005476424004882574, + -0.07074978947639465, + -0.07677153497934341, + -0.022297577932476997, + -0.09733396768569946, + 0.008959943428635597, + 0.08743701875209808, + 0.030990811064839363, + 0.026519831269979477, + -0.011577867902815342, + -0.008585081435739994, + -0.0689816027879715, + -0.03969648852944374, + 0.0145444730296731, + -0.0169775802642107, + -2.118023904739837e-33, + 0.02364487387239933, + 0.08697746694087982, + -0.025720706209540367, + 0.12341479957103729, + -0.004514873959124088, + 0.0023060624953359365, + 0.03386453166604042, + -0.12230654805898666, + -0.11173587292432785, + 0.06258806586265564, + -0.0013181932736188173, + 0.08782650530338287, + -0.0514034666121006, + 0.07598831504583359, + 0.06700121611356735, + 0.024714021012187004, + 0.011216968297958374, + -0.0372510701417923, + -0.06403400003910065, + -0.04383585602045059, + -0.006116622593253851, + 0.008423104882240295, + -0.021406790241599083, + -0.010502981022000313, + -0.01237398013472557, + -0.010934672318398952, + 0.04324760660529137, + 0.048383619636297226, + -0.017084408551454544, + 0.048250891268253326, + 0.06644660979509354, + -0.0063411458395421505, + 0.05784085765480995, + 0.027756936848163605, + 0.011551199480891228, + 0.014661604538559914, + 0.023484129458665848, + -0.05988464877009392, + 0.03644322231411934, + -0.04912874102592468, + -0.030394509434700012, + -0.07996802031993866, + -0.009222437627613544, + 0.03378598764538765, + 0.017417285591363907, + 0.03180869668722153, + 0.004334775265306234, + 0.00043239950900897384, + 0.09473240375518799, + -0.02060043253004551, + -0.0142652727663517, + 0.036253925412893295, + -0.032720766961574554, + -0.045799098908901215, + -0.06992870569229126, + -0.09734546393156052, + 0.008653434924781322, + 0.08065475523471832, + -0.11688421666622162, + 0.01645185984671116, + -0.03555041551589966, + 0.043587636202573776, + 0.017285548150539398, + -0.07008077949285507, + -0.026704605668783188, + 0.031668972223997116, + -0.06568144261837006, + 0.023479782044887543, + 0.08832908421754837, + -0.052454933524131775, + -0.010564249940216541, + 0.08381583541631699, + 0.01569170132279396, + -0.009750896133482456, + -0.004267646465450525, + -0.0014789465349167585, + 0.025715772062540054, + 0.03672492504119873, + 0.042783383280038834, + -0.006943996995687485, + -0.08145365118980408, + 0.03447512909770012, + -0.055756788700819016, + -0.011912583373486996, + 0.014639717526733875, + 0.0031488605309277773, + 0.05975868180394173, + 0.007787661626935005, + -0.046680424362421036, + 0.0036812233738601208, + -0.05804901942610741, + 0.07014727592468262, + 0.10617366433143616, + 0.029322510585188866, + -0.11740588396787643, + 7.208000493660242e-34, + -0.06746014952659607, + -0.005593201145529747, + 0.014255034737288952, + 0.06453860551118851, + 0.02512102760374546, + 0.045534346252679825, + -0.008344958536326885, + 0.05011707544326782, + -0.04027646780014038, + -0.0021393948700278997, + 0.05881208926439285, + 0.02826816774904728, + -0.009710586629807949, + -0.006137339398264885, + -0.08136893808841705, + -0.0070212120190262794, + 0.009712893515825272, + 0.02590964548289776, + -0.05876199156045914, + 0.02802756428718567, + -0.027668626978993416, + 0.030807677656412125, + -0.12392666190862656, + 0.08946983516216278, + -0.08944617956876755, + 0.073102667927742, + -0.0012685114052146673, + -0.08197834342718124, + 0.012815252877771854, + 0.027437491342425346, + 0.042926814407110214, + -0.02676507458090782, + 0.004301560111343861, + 0.035570863634347916, + -0.06325045973062515, + -0.09039795398712158, + 0.10279452800750732, + -0.03811344504356384, + -0.02542039006948471, + -0.014550045132637024, + 0.005714879836887121, + -0.04486054182052612, + 0.03641711547970772, + 0.03146584331989288, + -0.03949107974767685, + -0.035836361348629, + 0.032414402812719345, + -0.04768269881606102, + -0.057516735047101974, + 0.07003944367170334, + 0.04154291749000549, + -0.02317592315375805, + -0.006324136629700661, + 0.04121847823262215, + -0.0059884381480515, + 0.07196959853172302, + -0.11761524528265, + 0.07278572767972946, + 0.0037329779006540775, + 0.06833864003419876, + -0.009159139357507229, + 0.036228589713573456, + 0.004009264055639505, + 0.06301800161600113, + 0.042926687747240067, + -0.032734695822000504, + 0.03894134983420372, + 0.006189888808876276, + -0.0885547325015068, + 0.033484701067209244, + 0.017755145207047462, + 0.06146197393536568, + -0.03564470633864403, + -0.0073685236275196075, + 0.06409373134374619, + -0.07771554589271545, + 0.06929146498441696, + -0.04808708652853966, + -0.04306676611304283, + 0.07133087515830994, + -0.05241407826542854, + 0.01911751925945282, + -0.041719961911439896, + 0.061550531536340714, + 0.029055699706077576, + -0.035318341106176376, + 0.011666610836982727, + -0.012489670887589455, + 0.06781142204999924, + 0.0179753340780735, + -0.02040518820285797, + 0.13155759871006012, + -0.040944553911685944, + -0.00846517737954855, + 0.053369488567113876, + -2.1771551672600253e-08, + 0.037607546895742416, + 0.0029889338184148073, + -0.029863016679883003, + -0.06787075847387314, + 0.009796619415283203, + -0.030562978237867355, + 0.01529773510992527, + -0.056543707847595215, + -0.10632839798927307, + -0.09343940764665604, + 0.05794871971011162, + 0.02442246302962303, + -0.15963272750377655, + -0.04538137838244438, + 0.03954923897981644, + -0.0676984190940857, + -0.05719657987356186, + 0.08317860960960388, + -0.012878798879683018, + -0.1477915644645691, + 0.00524075236171484, + 0.007711451034992933, + 0.08629075437784195, + -0.04202653840184212, + -0.052393488585948944, + -0.014164215885102749, + 0.025119319558143616, + 0.012744682841002941, + 0.001986555987969041, + 0.038917798548936844, + 0.002941613085567951, + 0.006136834621429443, + 0.0875299945473671, + -0.045586761087179184, + -0.001235045026987791, + 0.03441446274518967, + -0.03672855347394943, + -0.04573424160480499, + -0.022941531613469124, + 0.13680815696716309, + 0.034433312714099884, + -0.004770717583596706, + 0.014593224041163921, + 0.0058609722182154655, + 0.003556676208972931, + 0.0892319306731224, + 0.06352085620164871, + 0.01814289018511772, + -0.06861283630132675, + -0.012439420446753502, + 0.0262640081346035, + -0.05935008451342583, + 0.016906192526221275, + 0.03981269896030426, + -0.07027703523635864, + 0.020056821405887604, + 0.04370185360312462, + 0.06971349567174911, + 0.05429399013519287, + 0.02813376858830452, + 0.05630684643983841, + -0.013659810647368431, + 0.02507166564464569, + 0.009260479360818863 + ], + "seal-check-bold||badge,verified,verification,shapes,polygons,circle-wavy": [ + -0.005575798451900482, + 0.06132037192583084, + -0.027343295514583588, + 0.011606395244598389, + 0.03918648883700371, + -0.05715155974030495, + 0.11263076215982437, + -0.05022958293557167, + -0.021972527727484703, + -0.08654297888278961, + 0.0216078981757164, + 0.0018617904279381037, + 0.053338371217250824, + 0.004457757342606783, + -0.014526978135108948, + -0.007068291772156954, + -0.022969257086515427, + 0.025691650807857513, + -0.029749147593975067, + -0.06957408785820007, + 0.0019604682456701994, + -0.04702423885464668, + 0.034446798264980316, + 0.024363789707422256, + -0.049470145255327225, + 0.016215035691857338, + -0.0030219813343137503, + -0.0001575512724230066, + 0.048774685710668564, + -0.09001675248146057, + -0.05163891613483429, + 0.0001898314367281273, + 0.0693671852350235, + 0.032578855752944946, + 0.00841846875846386, + 0.02273540571331978, + 0.0013873386196792126, + 0.04218126833438873, + 0.04634910821914673, + -0.009107434190809727, + -0.026217887178063393, + -0.12800081074237823, + -0.0045082843862473965, + 0.09266860038042068, + -0.01595568284392357, + 0.05644167587161064, + -0.06285278499126434, + 0.028356226161122322, + -0.026357483118772507, + 0.009291157126426697, + 0.03200536593794823, + -0.09884806722402573, + -0.11576788872480392, + -0.014665483497083187, + -0.042234428226947784, + -0.008820501156151295, + -0.060336071997880936, + -0.050732605159282684, + 0.023614292964339256, + -0.020794879645109177, + 0.10216950625181198, + 0.04790820926427841, + -0.008579064160585403, + 0.10332493484020233, + -0.013068673200905323, + 0.0376569889485836, + -0.027505822479724884, + -0.019832391291856766, + -0.01650814712047577, + -0.02058831974864006, + 0.0649554505944252, + 0.020772580057382584, + -0.00010836089495569468, + -0.028337722644209862, + -0.0007437006570398808, + 0.0004169602179899812, + -0.02877369336783886, + -0.01962983049452305, + -0.02941850572824478, + -0.07147746533155441, + -0.09694889187812805, + -0.04555727541446686, + -0.038620393723249435, + 0.09677647799253464, + 0.04670751467347145, + 0.10496529191732407, + -0.0367949940264225, + -0.10431171953678131, + -0.017553478479385376, + 0.007258572615683079, + 0.005968506447970867, + 0.015512868762016296, + 0.013070576824247837, + -0.02023404650390148, + -0.09554745256900787, + 0.012428139336407185, + 0.027903961017727852, + -0.022276464849710464, + -0.01035651471465826, + 0.10751324892044067, + -0.033694054931402206, + -0.011653294786810875, + 0.024891788139939308, + -0.07415740936994553, + 0.04133201763033867, + 0.017088379710912704, + -0.029297981411218643, + -0.046165864914655685, + 0.08197975903749466, + 0.04018363729119301, + -0.022914733737707138, + -0.031568679958581924, + 0.0401739664375782, + -0.05954453721642494, + -0.06482607871294022, + -0.00798608548939228, + -0.0933995246887207, + 0.01364066731184721, + 0.0718410536646843, + 0.03278951719403267, + 0.03460492193698883, + -0.023278893902897835, + -0.012820449657738209, + -0.0786554291844368, + -0.023384053260087967, + 0.0035651824437081814, + -0.008272158913314342, + -2.3155640773565915e-33, + 0.03704012185335159, + 0.08299238979816437, + -0.02433711476624012, + 0.1232641339302063, + -0.01342090405523777, + -0.0037789319176226854, + 0.0356442928314209, + -0.11357710510492325, + -0.11351648718118668, + 0.07794001698493958, + 0.01028942596167326, + 0.08114678412675858, + -0.06149239465594292, + 0.05360300838947296, + 0.06131129711866379, + 0.02972850576043129, + 0.011391086503863335, + -0.027642397210001945, + -0.06585591286420822, + -0.0400141142308712, + -0.011836332269012928, + -0.030525319278240204, + -0.026879528537392616, + -0.016540197655558586, + -0.020154904574155807, + -0.0016582083189859986, + 0.04479474201798439, + 0.062028393149375916, + -0.009777273051440716, + 0.04080141708254814, + 0.04922058805823326, + -0.008161365054547787, + 0.05862438678741455, + 0.04263097420334816, + 0.00960328709334135, + 0.018792329356074333, + 0.029704228043556213, + -0.03313164785504341, + 0.0342392660677433, + -0.06094646826386452, + -0.025907916948199272, + -0.08984348177909851, + -0.006131137255579233, + 0.026903603225946426, + 0.02016184665262699, + 0.03067026287317276, + -0.008645130321383476, + 0.0003023024764843285, + 0.1027686595916748, + -0.017978545278310776, + -0.0015813374193385243, + 0.04998030140995979, + -0.03489163517951965, + -0.038332726806402206, + -0.07942984253168106, + -0.094262033700943, + 0.015672922134399414, + 0.08276405930519104, + -0.10155873000621796, + 0.0190590713173151, + -0.030581755563616753, + 0.0393545925617218, + 0.0007888652617111802, + -0.0710107684135437, + -0.031815752387046814, + 0.035404425114393234, + -0.07496889680624008, + 0.03322918340563774, + 0.08539391309022903, + -0.05051055923104286, + -0.023356057703495026, + 0.07461968809366226, + 0.02649443782866001, + -0.0015621710335835814, + -0.004821709357202053, + -0.005933611188083887, + 0.02722265012562275, + 0.042497407644987106, + 0.04461061209440231, + -0.020699461922049522, + -0.06068052724003792, + 0.029027443379163742, + -0.059361495077610016, + 0.0022386498749256134, + 0.014688737690448761, + -0.007402259390801191, + 0.0611705407500267, + 0.0022306772880256176, + -0.0509117990732193, + 0.0013427580706775188, + -0.06226003170013428, + 0.07079526036977768, + 0.10331326723098755, + 0.012144469656050205, + -0.11674345284700394, + 7.167349511285907e-34, + -0.05709919333457947, + -0.009526621550321579, + 0.02273082360625267, + 0.0662546157836914, + -0.0006819043774157763, + 0.033014535903930664, + -0.0014882354298606515, + 0.0480063259601593, + -0.03153574466705322, + -0.0018857807153835893, + 0.07162494957447052, + 0.015431717969477177, + -0.0048941271379590034, + -0.015192081220448017, + -0.08780988305807114, + -0.0019580614753067493, + -0.00035447211121208966, + 0.03110591694712639, + -0.05830606445670128, + 0.043212685734033585, + -0.017283253371715546, + 0.03826107084751129, + -0.11849097907543182, + 0.10445619374513626, + -0.09014946967363358, + 0.07642826437950134, + -0.008024168200790882, + -0.08416686952114105, + 0.016198506578803062, + 0.04073495417833328, + 0.05718813091516495, + -0.008474919945001602, + 0.0004484384844545275, + 0.03878075256943703, + -0.0594867505133152, + -0.11422236263751984, + 0.0996817946434021, + -0.021235736086964607, + -0.02243458479642868, + -0.004353768657892942, + 0.00041124250856228173, + -0.04250796139240265, + 0.027615157887339592, + 0.027854343876242638, + -0.05412520468235016, + -0.03768281266093254, + 0.043046969920396805, + -0.04110819473862648, + -0.06687558442354202, + 0.07322361320257187, + 0.048969194293022156, + -0.03189165145158768, + -0.005277659744024277, + 0.04403219372034073, + 0.0012829754268750548, + 0.09244418144226074, + -0.11279942095279694, + 0.06370405852794647, + -0.006136675830930471, + 0.07350652664899826, + -0.02064657025039196, + 0.0209561288356781, + 0.004112846218049526, + 0.0502948984503746, + 0.038822270929813385, + -0.027692433446645737, + 0.03735251724720001, + 0.0146058714017272, + -0.05972495302557945, + 0.0455864779651165, + 0.011577391996979713, + 0.049190275371074677, + -0.04000121355056763, + -0.012500658631324768, + 0.06563479453325272, + -0.08016592264175415, + 0.06559114903211594, + -0.05025053769350052, + -0.04571349546313286, + 0.06403064727783203, + -0.03695988282561302, + 0.009418987669050694, + -0.04039093479514122, + 0.06250006705522537, + 0.024500099942088127, + -0.03197525441646576, + -0.0005219255108386278, + -0.017737997695803642, + 0.05244828388094902, + 0.02005617320537567, + -0.02988549694418907, + 0.1281578689813614, + -0.018750008195638657, + -0.027691056951880455, + 0.034649986773729324, + -2.2368563890040605e-08, + 0.014920026995241642, + -0.010813076980412006, + -0.02081385813653469, + -0.06321503967046738, + 0.013082374818623066, + -0.03571847081184387, + 0.018120864406228065, + -0.06172475218772888, + -0.10415975004434586, + -0.1099616065621376, + 0.047405678778886795, + 0.024917591363191605, + -0.1613624393939972, + -0.05383463203907013, + 0.03337777405977249, + -0.0720895454287529, + -0.06057985872030258, + 0.08259257674217224, + -0.022814618423581123, + -0.13289333879947662, + -0.0012935720151290298, + 0.004912359640002251, + 0.0757802426815033, + -0.01873227022588253, + -0.05056065693497658, + -0.008483092300593853, + 0.012456899508833885, + 0.016383901238441467, + 0.0056495643220841885, + 0.044557325541973114, + -0.000595910765696317, + 0.007160974200814962, + 0.08475393801927567, + -0.05266035348176956, + 0.008915332145988941, + 0.04839135706424713, + -0.0290836151689291, + -0.03499583527445793, + -0.014078051783144474, + 0.13660398125648499, + 0.033232126384973526, + 0.005220286548137665, + -0.0018396523082628846, + 0.008156216703355312, + -0.0005093294894322753, + 0.07670825719833374, + 0.06550732254981995, + 0.007473264820873737, + -0.0734778493642807, + -0.028519373387098312, + 0.036179617047309875, + -0.06222636625170708, + 0.017648611217737198, + 0.037714507430791855, + -0.08358040452003479, + 0.011605494655668736, + 0.04642944037914276, + 0.07972957193851471, + 0.05278778448700905, + 0.03106478415429592, + 0.058123908936977386, + -0.005241545382887125, + 0.04738275334239006, + -0.00823475793004036 + ], + "seal-percent-bold||*new*,badge,discount,sale,shapes,polygons,circle-wavy": [ + -0.0023611572105437517, + 0.018283072859048843, + -0.030149735510349274, + 7.665184239158407e-05, + 0.016465317457914352, + -0.013241291977465153, + 0.08823909610509872, + -0.0035123401321470737, + -0.013951316475868225, + -0.06485346704721451, + 0.0461028628051281, + -0.0033223796635866165, + 0.03224040940403938, + -0.015125928446650505, + 0.02914990484714508, + 0.021936601027846336, + 0.004917899612337351, + 0.05185552313923836, + -0.07026980072259903, + -0.05784497782588005, + -0.0004335749545134604, + -0.01797928474843502, + 0.01590130291879177, + 0.02946346625685692, + 0.03106069378554821, + 0.03873104974627495, + 0.01783059351146221, + -0.014829298481345177, + 0.05101705342531204, + -0.06661232560873032, + -0.07788319140672684, + 0.010187557898461819, + 0.10472375154495239, + 0.024699106812477112, + 0.0009679825161583722, + -0.020891446620225906, + -0.03140389919281006, + 0.0376645103096962, + 0.040331315249204636, + 0.033632829785346985, + -0.010546264238655567, + -0.09202750027179718, + -0.04515961930155754, + 0.09449369460344315, + 0.008521373383700848, + 0.04846879839897156, + -0.06186543405056, + 0.06738007068634033, + -0.020647361874580383, + 0.045282840728759766, + 0.01826775260269642, + -0.08219058811664581, + -0.13703560829162598, + 0.016566729173064232, + -0.005323390476405621, + -0.0034837753046303988, + -0.053102292120456696, + -0.06807021051645279, + 0.012264850549399853, + -0.07082541286945343, + 0.07229118049144745, + 0.03273554518818855, + 0.008890431374311447, + 0.09289588779211044, + -0.023281697183847427, + 0.011337196454405785, + -0.030039578676223755, + 0.011597096920013428, + -0.043438784778118134, + -0.04266781359910965, + 0.051149580627679825, + 0.0420864038169384, + 0.007571673020720482, + -0.05000295862555504, + -0.013209889642894268, + -0.012361875735223293, + 0.01817154884338379, + -0.02816854603588581, + -0.06026509031653404, + -0.08102256804704666, + -0.05185791850090027, + -0.03947800397872925, + -0.03730146214365959, + 0.03841838613152504, + 0.022131262347102165, + 0.09491665661334991, + -0.01817420683801174, + -0.10637395828962326, + -0.006791934836655855, + -0.004517367109656334, + -0.05291371792554855, + 0.020794769749045372, + -0.02264733612537384, + -0.03513631969690323, + -0.13254299759864807, + 0.06698469817638397, + 0.0247853621840477, + -0.01796102710068226, + 0.018824301660060883, + 0.08979623019695282, + -0.0015562375774607062, + -0.021245131269097328, + 0.031509436666965485, + -0.0665171891450882, + -0.021686095744371414, + -0.051354192197322845, + -0.043555665761232376, + 0.005616846028715372, + 0.06425108760595322, + 0.05413200333714485, + -0.04072808846831322, + -0.053227152675390244, + -0.021168963983654976, + -0.07273350656032562, + -0.06252600252628326, + -0.06055179983377457, + -0.05285517871379852, + -0.01638716831803322, + 0.1085633635520935, + 0.05062922090291977, + 0.07296409457921982, + 0.015703022480010986, + -0.005705874878913164, + -0.06576360017061234, + -0.054634299129247665, + 0.022199498489499092, + -0.018554266542196274, + -2.7081894761068052e-33, + 0.007926428690552711, + 0.03508757799863815, + -0.057222187519073486, + 0.06858506798744202, + 0.009146011434495449, + 0.008417661301791668, + 0.02197268232703209, + -0.07283993065357208, + -0.06043000519275665, + 0.08698920160531998, + -0.029090674594044685, + 0.055589545518159866, + -0.04215911775827408, + 0.06691838055849075, + 0.05967377498745918, + 0.018707627430558205, + -0.018226878717541695, + -0.0043590799905359745, + -0.029011700302362442, + -0.05467551574110985, + -0.0790676400065422, + 0.08501912653446198, + 0.005833835806697607, + -0.015168764628469944, + -0.026827199384570122, + -0.037064000964164734, + 0.02774781361222267, + 0.022214733064174652, + -0.03619379922747612, + 0.0417434424161911, + 0.0984579473733902, + 0.03259492293000221, + 0.07728096097707748, + -0.0032116423826664686, + -0.02748819999396801, + 0.044575389474630356, + -0.002785342512652278, + -0.051143329590559006, + 0.07646865397691727, + -0.026437826454639435, + -0.12045998871326447, + -0.06706572324037552, + 0.006483006756752729, + 0.009158537723124027, + -0.01467848476022482, + 0.01828114688396454, + -0.02789519540965557, + -0.006702161394059658, + 0.0850488618016243, + -0.03234117850661278, + -0.013543955981731415, + 0.02749350294470787, + -0.012423098087310791, + -0.015623850747942924, + -0.08190637081861496, + -0.1135101243853569, + 0.0005426511634141207, + 0.058476872742176056, + -0.07862301915884018, + -0.009622753597795963, + -0.029994593933224678, + 0.05460053309798241, + 0.039848435670137405, + -0.08289030194282532, + -0.07582420855760574, + 0.027064725756645203, + -0.028628548607230186, + 0.034775979816913605, + 0.04892675578594208, + -0.01860778033733368, + 0.0013766448246315122, + 0.07059245556592941, + -0.010930035263299942, + 0.010765750892460346, + 0.01587587222456932, + 0.016727536916732788, + 0.07996173948049545, + 0.04753435403108597, + 0.06487639248371124, + -0.02011406235396862, + -0.09793580323457718, + -0.010356834158301353, + -0.04165053367614746, + 0.018824098631739616, + -0.007612877991050482, + 0.034767549484968185, + 0.09669876843690872, + -0.01604408025741577, + -0.032626986503601074, + -0.025941530242562294, + -0.07897400110960007, + 0.05674256756901741, + 0.045566074550151825, + 0.01709425449371338, + -0.1031259149312973, + 4.5347417505430825e-34, + -0.0699678435921669, + 0.016547657549381256, + -0.023790670558810234, + 0.05785864591598511, + -0.007289945613592863, + 0.06631441414356232, + -0.051095761358737946, + 0.0034572656732052565, + 0.008304785937070847, + -0.006950013339519501, + 0.004606490954756737, + 0.052094485610723495, + -0.03727482631802559, + -0.005490737035870552, + -0.07543613761663437, + -0.0019568917341530323, + 0.009526396170258522, + 0.06518836319446564, + -0.04802270233631134, + 0.03988577052950859, + -0.03815628960728645, + 0.04294109344482422, + -0.13023118674755096, + 0.09365317225456238, + -0.08670205622911453, + 0.048260994255542755, + -0.023419396951794624, + -0.07291842997074127, + 0.0033491665963083506, + -0.009418275207281113, + 0.002174013527110219, + -0.10451460629701614, + 0.021672982722520828, + 0.03927242383360863, + -0.10141444206237793, + -0.07649656385183334, + 0.08569172024726868, + -0.07459934055805206, + -0.014743831939995289, + 0.01309501938521862, + 9.587187378201634e-05, + -0.038770075887441635, + 0.06552563607692719, + 0.048664141446352005, + -0.05865169316530228, + -0.02351723238825798, + 0.053612060844898224, + -0.06035902351140976, + -0.030130663886666298, + 0.05779235437512398, + 0.06905686110258102, + 0.03703015670180321, + 0.002924708416685462, + 0.08243536204099655, + -0.03184431418776512, + 0.11456938087940216, + -0.1258712112903595, + 0.04828768968582153, + -0.0035497320350259542, + 0.0845375657081604, + -0.018873944878578186, + 0.08392779529094696, + 0.0017428476130589843, + 0.030817123129963875, + 0.05604206770658493, + -0.04747097194194794, + 0.037546832114458084, + -0.038800161331892014, + -0.07351657003164291, + 0.02316109649837017, + 0.03321317955851555, + 0.06902799755334854, + -0.054524581879377365, + -0.011504163034260273, + -0.003899150062352419, + -0.06996984034776688, + 0.04785794019699097, + -0.019659610465168953, + -0.028258027508854866, + 0.07475131005048752, + -0.02489808015525341, + 0.021961569786071777, + -0.04234658181667328, + 0.043630097061395645, + -0.011002443730831146, + -0.031222930178046227, + 0.002422214252874255, + 0.011150484904646873, + 0.07656286656856537, + -0.024591516703367233, + -0.04774536192417145, + 0.11467061191797256, + -0.04405980184674263, + 0.012450050562620163, + 0.017026374116539955, + -2.4474728022028103e-08, + 0.03779555857181549, + 0.009487899951636791, + -0.024840034544467926, + -0.030112721025943756, + 0.025764940306544304, + -0.002151250373572111, + 0.031840261071920395, + -0.005940215662121773, + -0.10577933490276337, + -0.041380610316991806, + 0.09199891984462738, + 0.030165895819664, + -0.1942397952079773, + -0.06970767676830292, + 0.009290436282753944, + -0.05927323177456856, + -0.021885590627789497, + 0.10115973651409149, + -0.0017821390647441149, + -0.1340818852186203, + 0.012218711897730827, + 0.04127320647239685, + 0.08839691430330276, + -0.05198339372873306, + -0.03789699077606201, + -0.0007293186499737203, + 0.02471408061683178, + 0.03043161705136299, + -0.0017408690182492137, + 0.03724289312958717, + 0.014596893452107906, + 0.007332881446927786, + 0.0632408857345581, + -0.03647999465465546, + -0.0009496808052062988, + 0.03804734721779823, + -0.05449964106082916, + -0.03458396717905998, + -0.03203921392560005, + 0.12172991782426834, + 0.029066238552331924, + -0.03028092160820961, + 0.0050281682051718235, + 0.03275856748223305, + -0.0011077099479734898, + 0.028985798358917236, + 0.055953796952962875, + -0.005445790942758322, + -0.038966432213783264, + -0.05430925264954567, + 0.036751583218574524, + -0.04357684776186943, + 0.00202174368314445, + 0.031410906463861465, + -0.06584256142377853, + 0.021777072921395302, + 0.03105360083281994, + 0.06022327393293381, + 0.025579772889614105, + 0.012862089090049267, + 0.06846887618303299, + -0.01941094920039177, + 0.01391272060573101, + 0.036364924162626266 + ], + "seal-question-bold||badge,unverified,verification,shapes,polygons,circle-wavy": [ + -0.014281082898378372, + 0.0859624594449997, + 0.016184154897928238, + 0.019496792927384377, + 0.015888195484876633, + -0.037124283611774445, + 0.1122259572148323, + -0.03406067565083504, + -0.04534056410193443, + -0.08983740955591202, + -0.014376580715179443, + -0.0021941796876490116, + 0.04870384559035301, + -0.017164722084999084, + -0.009204747155308723, + 0.014014672487974167, + -0.02533431351184845, + -0.01117436122149229, + -0.06712915748357773, + -0.05138414725661278, + 0.01982547901570797, + -0.0006996238953433931, + 0.021207407116889954, + 0.04342268407344818, + -0.050749268382787704, + 0.012591525912284851, + 0.011070684529840946, + -0.004785808268934488, + 0.05906691029667854, + -0.07093672454357147, + -0.061581943184137344, + -0.0002858078514691442, + 0.04896046593785286, + 0.040919624269008636, + 0.016301684081554413, + 0.025924207642674446, + -0.004064416047185659, + 0.0471230112016201, + 0.04043441265821457, + 0.027913013473153114, + -0.007957499474287033, + -0.11157633364200592, + -0.0018478176789358258, + 0.10113475471735, + -0.01132794376462698, + 0.031647004187107086, + -0.0646786019206047, + 0.03013950027525425, + -0.04135490208864212, + -0.031045421957969666, + 0.015553046017885208, + -0.10634103417396545, + -0.12752960622310638, + -0.008957271464169025, + -0.051854200661182404, + -0.027324307709932327, + -0.08168160915374756, + -0.049402378499507904, + 0.016973817721009254, + -0.0046984050422906876, + 0.10676877200603485, + 0.06011877581477165, + 0.018040088936686516, + 0.11164309829473495, + -0.007866770029067993, + 0.0036266567185521126, + -0.010915901511907578, + -0.023302823305130005, + -0.019642863422632217, + -0.02187270298600197, + 0.08469768613576889, + 0.04248137027025223, + -0.014855342917144299, + -0.05458031967282295, + 0.0072865113615989685, + 0.0026359292678534985, + -0.05684772878885269, + 0.008093931712210178, + -0.031206989660859108, + -0.06471652537584305, + -0.05126020312309265, + -0.08960196375846863, + -0.046009477227926254, + 0.07880060374736786, + 0.045728009194135666, + 0.07465386390686035, + -0.04466566815972328, + -0.13087575137615204, + -0.016645347699522972, + 0.031901195645332336, + -0.009211496450006962, + 0.001147344708442688, + 0.016965409740805626, + -0.00016718798724468797, + -0.06948734819889069, + 0.010809133760631084, + 0.01089130062609911, + -0.0030126171186566353, + -0.04006360471248627, + 0.11213110387325287, + -0.015134604647755623, + 0.006495542358607054, + 0.003755609504878521, + -0.06881913542747498, + 0.029970187693834305, + 0.006189308129251003, + -0.04504362493753433, + -0.03994370624423027, + 0.07235054671764374, + 0.02605355717241764, + -0.022879326716065407, + -0.027496593073010445, + 0.021228110417723656, + -0.05237729102373123, + -0.06990596652030945, + -0.01651264913380146, + -0.07188425958156586, + 0.020934080705046654, + 0.039406705647706985, + 0.05258776247501373, + 0.02122061885893345, + -0.01077290065586567, + -0.00912463292479515, + -0.05094528943300247, + -0.03749769553542137, + -0.01039867289364338, + -0.02100726217031479, + -2.1608027155601524e-33, + -0.002644140971824527, + 0.08249612897634506, + -0.019537972286343575, + 0.12478458136320114, + -0.011677898466587067, + 0.0032099157106131315, + 0.0329924039542675, + -0.10022448748350143, + -0.09269362688064575, + 0.0740872174501419, + 0.011363308876752853, + 0.0639895424246788, + -0.04847477748990059, + 0.04504358023405075, + 0.0510137602686882, + 0.017092257738113403, + 0.021836670115590096, + -0.03375467285513878, + -0.07563956081867218, + -0.042322877794504166, + 0.015317877754569054, + 0.004919160157442093, + -0.04333288595080376, + -0.04941117390990257, + -0.04575445502996445, + -0.008669326081871986, + 0.035273075103759766, + 0.045193787664175034, + 0.001680554123595357, + 0.039921630173921585, + 0.027058450505137444, + -0.010654564015567303, + 0.06231331080198288, + 0.03656516969203949, + 0.012095466256141663, + 0.03087671473622322, + 0.07610644400119781, + -0.04729869216680527, + 0.022782351821660995, + -0.07343307137489319, + -0.044911812990903854, + -0.05845223367214203, + 0.010067143477499485, + 0.018242189660668373, + 0.0019719169940799475, + 0.035457827150821686, + 0.02248779684305191, + -0.024533558636903763, + 0.08560560643672943, + -0.009740635752677917, + 0.006037984974682331, + 0.040614087134599686, + -0.023256180807948112, + -0.04026927426457405, + -0.05432399734854698, + -0.09697356820106506, + 0.000593316275626421, + 0.07793313264846802, + -0.10768990218639374, + 0.004584473092108965, + -0.02727844938635826, + 0.03162791579961777, + 0.028309954330325127, + -0.057884279638528824, + -0.021208154037594795, + 0.05127020180225372, + -0.05755509063601494, + 0.03591425344347954, + 0.0832057073712349, + -0.056930121034383774, + 0.0055748592130839825, + 0.06780003756284714, + -0.018288983032107353, + -0.020462213084101677, + 0.004526428412646055, + 0.026149790734052658, + 0.02748224139213562, + 0.06220187619328499, + 0.06628933548927307, + -0.033504847437143326, + -0.061430107802152634, + 0.03829188272356987, + -0.05277426168322563, + -0.0009674890898168087, + 0.017154881730675697, + -0.008330415934324265, + 0.08541437983512878, + 0.03283252567052841, + -0.02843024581670761, + 0.027738941833376884, + -0.017871562391519547, + 0.06566637009382248, + 0.11095046997070312, + 0.023413507267832756, + -0.08982936292886734, + 3.214964651706975e-34, + -0.06930150091648102, + -0.007536804303526878, + -0.016996268182992935, + 0.037014786154031754, + 0.04885243996977806, + 0.04870925471186638, + -0.03257360681891441, + 0.05322297662496567, + -0.035010695457458496, + -0.011074141599237919, + 0.027753807604312897, + 0.023679377511143684, + -0.018987078219652176, + 0.011074906215071678, + -0.09842948615550995, + -0.02068229392170906, + 0.026280593127012253, + 0.035026665776968, + -0.08018363267183304, + 0.053340744227170944, + -0.0422944501042366, + 0.05022881552577019, + -0.12225935608148575, + 0.06458448618650436, + -0.10218176990747452, + 0.10585690289735794, + -0.007373056840151548, + -0.043736305087804794, + 0.02685951255261898, + 0.03564316779375076, + 0.032770171761512756, + -0.045258454978466034, + -0.0010723612504079938, + 0.034823864698410034, + -0.0880935862660408, + -0.0671081617474556, + 0.09293869137763977, + -0.058142129331827164, + -0.019015196710824966, + -0.02158716879785061, + 0.005318129900842905, + -0.058871179819107056, + 0.007790975272655487, + 0.01357315108180046, + -0.0521693229675293, + -0.03438381850719452, + 0.056682437658309937, + -0.05098884552717209, + -0.036884233355522156, + 0.08700887858867645, + 0.039873406291007996, + -0.01850728504359722, + 0.014302846975624561, + 0.052730411291122437, + -0.029686713591217995, + 0.09577306360006332, + -0.14638063311576843, + 0.06217643991112709, + 0.015095513314008713, + 0.07043664157390594, + 0.002816628199070692, + 0.06054972484707832, + -0.015014974400401115, + 0.013490881770849228, + 0.04924442991614342, + -0.04450562596321106, + 0.034962497651576996, + 0.005947457626461983, + -0.08057088404893875, + 0.014336491003632545, + -0.04283193498849869, + 0.06375535577535629, + -0.05620191618800163, + -0.01796354167163372, + 0.08265011757612228, + -0.05203746631741524, + 0.0638846606016159, + -0.06565872579813004, + -0.0310759786516428, + 0.05310898274183273, + -0.05683603882789612, + 0.005775551311671734, + -0.06447552889585495, + 0.06150947883725166, + 0.04385032132267952, + -0.04655230790376663, + 0.023493044078350067, + -0.015430472791194916, + 0.06130377575755119, + 0.020312562584877014, + -0.0026921392418444157, + 0.12200859934091568, + -0.034143734723329544, + -0.024012506008148193, + 0.050720565021038055, + -2.408383004137704e-08, + 0.03980991616845131, + 0.030177362263202667, + -0.04699486866593361, + -0.04843372479081154, + 0.009511026553809643, + -0.027600331231951714, + -0.0020381181966513395, + -0.0682460218667984, + -0.11887717992067337, + -0.08639921247959137, + 0.023031996563076973, + 0.012445815838873386, + -0.13775916397571564, + -0.053740933537483215, + -0.005842377431690693, + -0.0903439000248909, + -0.06990509480237961, + 0.06627021729946136, + -0.017530787736177444, + -0.16317324340343475, + 0.020718036219477654, + 0.0005818158970214427, + 0.08102534711360931, + -0.03768428415060043, + -0.06805280596017838, + 0.005312138237059116, + 0.03580348193645477, + 0.015142016112804413, + -0.01810022071003914, + 0.06053922697901726, + -0.006961545906960964, + 0.00605167169123888, + 0.05877881497144699, + -0.005638341885060072, + 0.01367086824029684, + 0.02009536698460579, + -0.03262356296181679, + -0.0329989418387413, + -0.023873545229434967, + 0.133646160364151, + 0.02182835340499878, + 0.004259011242538691, + 0.03032815083861351, + 0.03216925263404846, + 0.012831438332796097, + 0.08783145248889923, + 0.05647311359643936, + 0.01000912208110094, + -0.06433811783790588, + -0.0050268894992768764, + 0.02586463652551174, + -0.06710392981767654, + 0.015819618478417397, + 0.03272141143679619, + -0.03675904497504234, + 0.013295070268213749, + 0.04133527725934982, + 0.11189989000558853, + -0.005890482570976019, + 0.03545089066028595, + 0.05343213677406311, + -0.030064808204770088, + 0.01886654831469059, + 0.019884243607521057 + ], + "seal-warning-bold||badge,unverified,verification,errors,shapes,polygons,circle-wavy": [ + -0.011923013255000114, + 0.05482840538024902, + -0.007906843908131123, + 0.012218346819281578, + 0.0519130565226078, + -0.05028269439935684, + 0.10201295465230942, + -0.010741334408521652, + -0.03679393604397774, + -0.09001687914133072, + 0.019986502826213837, + -0.01687718741595745, + 0.07115968316793442, + 0.0034102387726306915, + -0.03954971581697464, + 0.002217859961092472, + -0.030279966071248055, + 0.004176562186330557, + -0.0366361178457737, + -0.05624668672680855, + 0.02721833437681198, + 0.0235610231757164, + 0.0066296011209487915, + 0.05714273452758789, + -0.04291180521249771, + 0.024322111159563065, + -0.027947841212153435, + 0.00405270978808403, + 0.022610919550061226, + -0.07459890097379684, + -0.06345219165086746, + 0.017483538016676903, + 0.0648159384727478, + 0.030978137627243996, + 0.015546773560345173, + 0.045608919113874435, + 0.003098806133493781, + 0.033402394503355026, + 0.027916118502616882, + 0.0012082785833626986, + -0.002589869312942028, + -0.09266071021556854, + -0.014223672449588776, + 0.12250430881977081, + -0.022743454203009605, + 0.028790073469281197, + -0.07191482186317444, + -0.010487043298780918, + -0.04483561962842941, + -0.017857525497674942, + 0.012504925951361656, + -0.09653403609991074, + -0.10014820098876953, + -0.02318703569471836, + -0.02120329439640045, + -0.029812339693307877, + -0.07785756140947342, + -0.04190613701939583, + 0.008880783803761005, + -0.00851020123809576, + 0.10468003153800964, + 0.045684341341257095, + 0.003481909865513444, + 0.09473916888237, + -0.02375878393650055, + 0.019754629582166672, + -0.020975759252905846, + 0.0032747858203947544, + -0.012370546348392963, + 0.018742000684142113, + 0.05138159170746803, + 0.021774742752313614, + -0.030431736260652542, + 0.0009246059344150126, + 0.002334194490686059, + 0.01572462171316147, + -0.03466655686497688, + -0.0060198078863322735, + -0.024904094636440277, + -0.09109146147966385, + -0.08929947763681412, + -0.0627378299832344, + -0.022284843027591705, + 0.05410310626029968, + 0.06150269880890846, + 0.09326441586017609, + -0.03518384322524071, + -0.10929929465055466, + 0.014524065889418125, + 0.026802435517311096, + 0.009707859717309475, + -0.033358801156282425, + 0.017548780888319016, + 0.047686073929071426, + -0.09458739310503006, + 0.004802705254405737, + 0.007138144690543413, + -0.03460258990526199, + -0.04401129111647606, + 0.10917025059461594, + -0.03302979841828346, + -0.0015750464517623186, + 0.03520585969090462, + -0.053060658276081085, + 0.035138703882694244, + -0.016914544627070427, + -0.023688973858952522, + -0.03630833327770233, + 0.04670742154121399, + 0.018132014200091362, + -0.03715889900922775, + -0.028386123478412628, + 0.016137702390551567, + -0.09046537429094315, + -0.07062431424856186, + -0.0012276014313101768, + -0.10363741219043732, + 0.0017776762833818793, + 0.06364842504262924, + 0.07553887367248535, + 0.030902445316314697, + -0.028687190264463425, + -0.020188482478260994, + -0.03723059222102165, + -0.0005431355675682425, + -0.0010524570243433118, + -0.0180604737251997, + -1.768658167467822e-33, + 0.032203610986471176, + 0.09211617708206177, + -0.04048333689570427, + 0.12429151684045792, + 0.020959915593266487, + -0.0021777101792395115, + 0.018206151202321053, + -0.1294674426317215, + -0.09714964777231216, + 0.05804751440882683, + 0.018963966518640518, + 0.07862072438001633, + -0.06108424440026283, + 0.0550709031522274, + 0.059513263404369354, + 0.027435826137661934, + 0.033878225833177567, + 0.0009246394038200378, + -0.05405573546886444, + -0.045769400894641876, + 0.0033258339390158653, + -0.004865844268351793, + -0.024950269609689713, + -0.05015014857053757, + -0.026780789718031883, + 0.028206074610352516, + 0.02909388765692711, + 0.045311033725738525, + 0.008968223817646503, + 0.04670188948512077, + 0.05035252124071121, + 0.00037527477252297103, + 0.09429306536912918, + 0.017095182090997696, + 0.010025274008512497, + 0.01737019792199135, + 0.015106286853551865, + -0.047762513160705566, + 0.010836553759872913, + -0.05573767051100731, + -0.037710271775722504, + -0.07203049212694168, + -0.02519628405570984, + 0.021228423342108727, + 0.054158929735422134, + 0.02802577242255211, + -0.01092786155641079, + -0.0013621293473988771, + 0.09960152953863144, + -0.006534206215292215, + -0.004304400645196438, + 0.037646375596523285, + -0.005739096086472273, + -0.012515672482550144, + -0.07911644130945206, + -0.09155420958995819, + 0.023087477311491966, + 0.0756930485367775, + -0.10622365772724152, + -0.016776366159319878, + -0.028696231544017792, + 0.04109133407473564, + 0.006191742606461048, + -0.08381511270999908, + -0.007071579806506634, + 0.03218056634068489, + -0.048348285257816315, + 0.04391530156135559, + 0.0515340194106102, + -0.0724107101559639, + -0.05114873871207237, + 0.047647371888160706, + 0.008085760287940502, + 0.0350535549223423, + -0.019889619201421738, + -0.01894398033618927, + 0.02333330549299717, + 0.029498692601919174, + 0.04797536879777908, + -0.060014963150024414, + -0.08010566234588623, + 0.009493649005889893, + -0.052078936249017715, + -0.0004952903836965561, + -0.001658294233493507, + 0.011364779435098171, + 0.049309805035591125, + 0.03188126161694527, + -0.08693817257881165, + 0.06909482181072235, + -0.027703145518898964, + 0.08066302537918091, + 0.10219727456569672, + 0.034514859318733215, + -0.13583284616470337, + 1.645509223719478e-34, + -0.07157579809427261, + -0.018472805619239807, + -0.010204767808318138, + 0.05829726904630661, + 0.002013477263972163, + 0.04178013280034065, + -0.0009944281773641706, + 0.06353563070297241, + -0.017209459096193314, + -0.020679615437984467, + 0.02284063771367073, + 0.012159651145339012, + -0.005436745472252369, + -0.0020438702777028084, + -0.09194796532392502, + -0.008047244511544704, + 0.008068482391536236, + 0.03614285588264465, + -0.0714799016714096, + 0.03910861164331436, + -0.02071480080485344, + 0.04408063367009163, + -0.11834831535816193, + 0.0904136523604393, + -0.10084488987922668, + 0.09156104177236557, + -0.004333027172833681, + -0.053464312106370926, + -0.0037036798894405365, + 0.00990928616374731, + 0.05045385658740997, + -0.006228714250028133, + -0.0034442730247974396, + 0.03770563751459122, + -0.05839689448475838, + -0.09349378943443298, + 0.10751429200172424, + -0.06551572680473328, + -0.03698878735303879, + -0.01001755427569151, + 0.018840501084923744, + -0.011224810965359211, + 0.0194192323833704, + 0.009349562227725983, + -0.04201138764619827, + -0.03146262839436531, + 0.04438915103673935, + -0.0661018118262291, + -0.04514281451702118, + 0.08329520374536514, + 0.05049566179513931, + -0.029843362048268318, + -0.000806452299002558, + 0.0327349454164505, + -0.01797754503786564, + 0.07443100959062576, + -0.12100208550691605, + 0.05156421288847923, + -0.019820399582386017, + 0.08253974467515945, + 0.0004976935451850295, + 0.027666712179780006, + -0.04260886460542679, + 0.02569722756743431, + 0.03520428016781807, + -0.03763424605131149, + 0.028489025309681892, + 0.03309530392289162, + -0.046880755573511124, + 0.03637085109949112, + -0.0007489703712053597, + 0.06693791598081589, + -0.08756955713033676, + -0.026621144264936447, + 0.06440158188343048, + -0.09172919392585754, + 0.07164200395345688, + -0.04768950492143631, + -0.042166754603385925, + 0.05044524744153023, + -0.023480061441659927, + 0.02343432977795601, + -0.04205622151494026, + 0.07516482472419739, + 0.047247566282749176, + -0.03978625312447548, + 0.014809146523475647, + 0.015544439665973186, + 0.037684839218854904, + 0.025446707382798195, + -0.02213030308485031, + 0.12140811234712601, + -0.025624258443713188, + 0.015277829021215439, + 0.042388468980789185, + -2.5052154128957227e-08, + 0.01991335302591324, + 0.009250558912754059, + -0.03400828316807747, + -0.090794138610363, + 0.04129161313176155, + -0.053918514400720596, + 0.004543797113001347, + -0.05493086203932762, + -0.10444505512714386, + -0.09737659245729446, + 0.03019741363823414, + 0.01575596071779728, + -0.1471397429704666, + -0.06616338342428207, + 0.03256355971097946, + -0.09340300410985947, + -0.07471460103988647, + 0.08144719898700714, + -0.025371911004185677, + -0.1389535516500473, + 0.00914409477263689, + 0.011434884741902351, + 0.06018461287021637, + -0.05364948883652687, + -0.0328497439622879, + -0.026120970025658607, + 0.040005870163440704, + 0.047371264547109604, + 0.011236828751862049, + 0.041919417679309845, + -0.009986486285924911, + -0.0018022417789325118, + 0.09601359814405441, + -0.03032328188419342, + 0.00017610893701203167, + 0.08185272663831711, + 0.000785629905294627, + -0.04145734757184982, + 0.001152473734691739, + 0.15110233426094055, + 0.03260575234889984, + 0.006878344342112541, + 0.024216504767537117, + 0.03568914532661438, + -3.663967800093815e-05, + 0.06664974242448807, + 0.039113566279411316, + 0.017951136454939842, + -0.03682689368724823, + -0.02779160998761654, + 0.03259091451764107, + -0.03639101982116699, + -0.003492280375212431, + 0.05546645075082779, + -0.050964053720235825, + 0.009288792498409748, + 0.03351316973567009, + 0.0754268616437912, + 0.029974501579999924, + 0.03967728093266487, + 0.06248776242136955, + -0.039212413132190704, + 0.03191068768501282, + 0.023928366601467133 + ], + "seat-bold||*new*,chair,car seat,airplane seat,transit,transportation,traveling": [ + 0.040070753544569016, + -0.05664707347750664, + 0.023530123755335808, + 0.05781900882720947, + -0.033779703080654144, + 0.008122988976538181, + 0.0771494135260582, + -0.0764118880033493, + -0.03051963448524475, + 0.05688364431262016, + 0.03311048820614815, + -0.0103666502982378, + 0.05756186693906784, + -0.012741954997181892, + -0.05315181612968445, + -0.030623657628893852, + 0.06834489852190018, + -0.0128453578799963, + -0.013411115854978561, + 0.07982144504785538, + -0.02337556518614292, + 0.03262384608387947, + -0.03753172606229782, + 0.059868816286325455, + 0.008928593248128891, + -0.012452024035155773, + 0.05622623860836029, + -0.0008602098096162081, + 0.012458140961825848, + -0.034255243837833405, + -0.05132145807147026, + -0.0408143512904644, + 0.058469634503126144, + 0.029254836961627007, + 0.019065015017986298, + -0.04465648531913757, + 0.05726335942745209, + -0.04431169107556343, + 0.05819004774093628, + -0.041396159678697586, + -0.014140769839286804, + -0.06629811972379684, + -0.02301032468676567, + 0.039560746401548386, + 0.03525225445628166, + 0.012061596848070621, + -0.021462440490722656, + -0.0335933193564415, + 0.019664084538817406, + 0.03147675096988678, + -0.03228284418582916, + -0.08788511902093887, + -0.06479484587907791, + -0.001631577149964869, + -0.02072327956557274, + -0.002312075812369585, + -0.09588714689016342, + -0.02657800167798996, + -0.037453703582286835, + 0.00529167614877224, + 0.018769050016999245, + -0.005039492156356573, + 0.04143916815519333, + 0.07162404805421829, + -0.018566466867923737, + -0.00962729100137949, + -0.05760221928358078, + -0.06575627624988556, + -0.02820293977856636, + 0.03004569746553898, + -0.06338324397802353, + 0.06216205283999443, + 0.006601453758776188, + 0.021280916407704353, + -0.07377538830041885, + -0.05713677778840065, + 0.05118556693196297, + 0.008991806767880917, + 0.016445625573396683, + -0.01972452737390995, + -0.03366534411907196, + -0.026067806407809258, + -0.05824573338031769, + -0.009813823737204075, + 0.04178276285529137, + 0.051254838705062866, + -0.127994105219841, + -0.06479784846305847, + -0.18939225375652313, + -0.05342060327529907, + -0.01431501004844904, + -0.04331057891249657, + 0.04047723487019539, + 0.04032942280173302, + -0.12389983236789703, + 0.07157748937606812, + 0.009972641244530678, + 0.03828280419111252, + 0.06667569279670715, + 0.06131342798471451, + 0.010035363957285881, + 0.09104550629854202, + 0.1021520122885704, + 0.07058053463697433, + -0.12648294866085052, + -0.050750210881233215, + -0.04340434446930885, + -0.07735197246074677, + 0.009734664112329483, + -0.022559810429811478, + -0.0798625499010086, + -0.051065996289253235, + -0.04379582777619362, + -0.021200798451900482, + -0.1247115433216095, + 0.053549859672784805, + -0.09726661443710327, + -0.061024900525808334, + 0.09771165251731873, + 0.033400118350982666, + -0.05242204666137695, + -0.013811508193612099, + 0.044578757137060165, + 0.006978322751820087, + -0.10595729947090149, + -0.07076773047447205, + 0.0349271185696125, + -3.957309446224908e-33, + -0.04959180951118469, + -0.005595423746854067, + 0.0541977658867836, + 0.09791162610054016, + 0.007736321538686752, + 0.004408239386975765, + -0.07019319385290146, + 0.024127865210175514, + -0.01938362792134285, + -0.007950590923428535, + -0.009428153745830059, + -0.0288065318018198, + 0.054276879876852036, + 0.0016721810679882765, + 0.07120213657617569, + 0.01060090959072113, + -0.0717078298330307, + -0.05374336615204811, + -0.05272214487195015, + -0.008466805331408978, + -0.03677947819232941, + 0.1032978966832161, + 0.02110753394663334, + -0.006964607164263725, + 0.027200033888220787, + -0.009530522860586643, + 0.025444157421588898, + -0.05294286459684372, + -0.06770768761634827, + 0.048533014953136444, + 0.00796838290989399, + 0.08176932483911514, + -0.009329389780759811, + 0.03060852363705635, + -0.04500150680541992, + -0.02249804511666298, + -0.004115334711968899, + -0.0562552772462368, + -0.047310423105955124, + -0.010072865523397923, + -0.0927869901061058, + -0.02156929485499859, + -0.03138008713722229, + 0.0724312961101532, + 0.005904695484787226, + 0.09111089259386063, + -0.02404026687145233, + -0.026350177824497223, + 0.027944043278694153, + 0.07676173746585846, + -0.09501262754201889, + 0.03634782135486603, + -0.007384403143078089, + -0.08218173682689667, + -0.08418481796979904, + -0.0348750576376915, + 0.018123529851436615, + 0.05499996244907379, + -0.0016394618432968855, + -0.03714104741811752, + -0.00834718905389309, + 0.04518706351518631, + 0.07321934401988983, + -0.0025161250960081816, + -0.004678919445723295, + 0.04950840771198273, + -0.03486545383930206, + -0.045109812170267105, + 0.11044834554195404, + 0.0674763172864914, + 0.03075525537133217, + 0.06872282922267914, + -0.004794670268893242, + 0.06407851725816727, + 0.04019119217991829, + 0.02347223088145256, + 0.0033401786349713802, + -0.025385649874806404, + -0.011161322705447674, + -0.07859640568494797, + -0.04927670955657959, + 0.055635396391153336, + 0.019645774737000465, + 0.11479214578866959, + 0.05791962146759033, + -0.0657779648900032, + -0.028606627136468887, + -0.0618467703461647, + 0.04640058055520058, + -0.00018293714674655348, + -0.06642184406518936, + -0.0012752945767715573, + -0.014476973563432693, + -0.031507838517427444, + -0.05946017801761627, + -1.0285120065634072e-33, + 0.0864609107375145, + 0.03629237785935402, + -0.08030984550714493, + -0.04247850552201271, + -0.018734585493803024, + -0.022372616454958916, + -0.03331492841243744, + -0.03791619837284088, + 0.006087968125939369, + 0.03871561959385872, + -0.026774749159812927, + -0.0256832093000412, + 0.08614268898963928, + -0.03951248154044151, + 0.06636271625757217, + -0.009143058210611343, + 0.02240225486457348, + 0.03983502835035324, + -0.05595238134264946, + 0.08233396708965302, + 0.033893704414367676, + 0.012497629970312119, + -0.037269484251737595, + -0.0044517493806779385, + 0.007410867139697075, + -0.004533592611551285, + 0.03820699453353882, + 0.012707301415503025, + -0.05564768612384796, + -0.02185186557471752, + -0.08888502418994904, + -0.0006690988666377962, + 0.05600081384181976, + 0.09894295036792755, + -0.0864495187997818, + 0.0357738621532917, + -0.01946517638862133, + -0.03806992247700691, + -0.021331151947379112, + 0.007975205779075623, + 0.027496617287397385, + -0.06815318018198013, + 0.11482591927051544, + 0.07946739345788956, + 0.043125052005052567, + -0.09274639189243317, + -0.09416134655475616, + -0.049340784549713135, + -0.016099195927381516, + 0.022379277274012566, + 0.011495203711092472, + -0.02800559438765049, + -0.015553081408143044, + 0.006375291384756565, + 0.02436879090964794, + 0.07015112042427063, + -0.035146210342645645, + -0.09578317403793335, + 0.0010597644140943885, + 0.030613690614700317, + 0.006517978385090828, + 0.06586860120296478, + -0.04705561324954033, + 0.0644039660692215, + -0.012661551125347614, + -0.11327521502971649, + -0.032102782279253006, + -0.03936324641108513, + -0.002462690928950906, + -0.002894336124882102, + 0.050258904695510864, + -0.049995146691799164, + -0.03328247368335724, + 0.07076992094516754, + -0.0037742634303867817, + -0.05405513197183609, + 0.10877572000026703, + 0.10402654856443405, + 0.02324613183736801, + 0.03204823657870293, + -0.018774989992380142, + -0.03559137508273125, + 0.05814579501748085, + 0.013961156830191612, + 0.022268598899245262, + 0.037345513701438904, + -0.03648434951901436, + -0.007840631529688835, + -0.04432419687509537, + -0.00546654500067234, + -0.026647135615348816, + 0.09448114037513733, + -0.0661945641040802, + 0.007895337417721748, + -0.05509159341454506, + -2.3383227798490225e-08, + 0.019840434193611145, + 0.0031640781089663506, + -0.057726919651031494, + 0.009968739002943039, + -0.008438914082944393, + -0.10985568910837173, + -0.045581135898828506, + -0.011553606949746609, + -0.0921570211648941, + 0.01892869360744953, + 0.01584675721824169, + 0.067329041659832, + -0.009142657741904259, + 0.039687883108854294, + -0.006488475948572159, + 0.07815562933683395, + -0.06343115121126175, + 0.04240138456225395, + -0.06704888492822647, + -0.031826574355363846, + -0.060583215206861496, + 0.013561300933361053, + 0.034480538219213486, + 0.017727043479681015, + 0.058204200118780136, + 0.005800617393106222, + -0.05705229938030243, + -0.010839716531336308, + 0.07189218699932098, + 0.04044447839260101, + 0.016937794163823128, + 0.08167580515146255, + -0.030112840235233307, + -0.04571295902132988, + -0.10027182102203369, + 0.007963570766150951, + -0.0040518855676054955, + -0.011959781870245934, + 0.011007753200829029, + 0.045643147081136703, + -0.018910132348537445, + -0.009355018846690655, + -0.016666939482092857, + 0.005667995661497116, + 0.08923911303281784, + 0.02002151496708393, + -0.005543449893593788, + -0.0023267697542905807, + -0.013084555976092815, + -0.07795318216085434, + -0.033512961119413376, + -0.030466070398688316, + -0.011075579561293125, + 0.06634054332971573, + -0.009034882299602032, + 0.026226317510008812, + 0.022234108299016953, + 0.050348829478025436, + 0.04808953031897545, + 0.046313054859638214, + 0.08954615890979767, + 0.06565063446760178, + 0.025833910331130028, + 0.032510507851839066 + ], + "seatbelt-bold||*new*,vehicles,safety": [ + 0.0048652514815330505, + 0.03413940966129303, + -0.04227317124605179, + 8.078123937593773e-05, + 0.05236605927348137, + 0.006289125885814428, + 0.08750385046005249, + -0.04790152981877327, + -0.03199806809425354, + 0.056494854390621185, + 0.09598293155431747, + 0.02092895470559597, + 0.10268277674913406, + 0.0013315904652699828, + -0.06646955758333206, + 0.02405458688735962, + 0.08847744017839432, + 0.0525251105427742, + -0.07768645137548447, + 0.022065352648496628, + -0.020649008452892303, + 0.09040265530347824, + 0.031033918261528015, + 0.06258244067430496, + -0.13703316450119019, + -0.025157300755381584, + 0.03461045026779175, + 0.01030651293694973, + -0.019670071080327034, + -0.041697319597005844, + -0.02932506985962391, + -0.1409178525209427, + 0.08597373962402344, + 0.02799108251929283, + 0.010856838896870613, + -0.066855788230896, + 0.05824822559952736, + -0.014543648809194565, + 0.006214612629264593, + 0.022358207032084465, + -0.009062619879841805, + -0.061798255890607834, + -0.04762784391641617, + 0.03661823272705078, + 0.04982713237404823, + 0.056561101227998734, + -0.01461702585220337, + -0.004321481101214886, + 0.04054674878716469, + -0.010908554308116436, + -0.034457359462976456, + -0.04701283201575279, + -0.04842870309948921, + -0.06067017838358879, + 0.0022797733545303345, + -0.03820052370429039, + -0.1244930773973465, + 0.02805083990097046, + -0.03173016756772995, + 0.005377532914280891, + 0.06827274709939957, + 0.007198636885732412, + 0.0365259014070034, + 0.055613305419683456, + -0.04768385365605354, + -0.009098738431930542, + 0.005168851464986801, + 0.019650019705295563, + -0.005321105942130089, + 0.13952118158340454, + -0.019831696525216103, + 0.04082736745476723, + -0.01858106628060341, + -0.02693192847073078, + -0.01689959317445755, + -0.06046796217560768, + 0.04389258474111557, + 0.09115498512983322, + 0.016904817894101143, + -0.05660007521510124, + -0.004552936647087336, + -0.08574969321489334, + -0.028360750526189804, + 0.011020299978554249, + 0.057127945125103, + 0.027105286717414856, + -0.1096625104546547, + -0.03931289538741112, + -0.0746975690126419, + 0.0040555656887590885, + -0.04970052093267441, + -0.016815893352031708, + 0.02301255241036415, + 0.05703021585941315, + -0.08300747722387314, + 0.0516718365252018, + -0.0014063831185922027, + 0.02052963711321354, + -0.0015256134793162346, + 0.04674742743372917, + 0.006054517347365618, + -0.000472111685667187, + -0.012316571548581123, + 0.028084121644496918, + -0.030880529433488846, + 0.021475665271282196, + -0.012049365788698196, + -0.02439410798251629, + -0.024419061839580536, + 0.05355693772435188, + 0.055034950375556946, + -0.010484376922249794, + -0.024199282750487328, + -0.026920577511191368, + -0.07375489175319672, + 0.023135624825954437, + -0.09261485189199448, + -0.022757895290851593, + 0.052013564854860306, + 0.08970458060503006, + -0.036182697862386703, + -0.06659305840730667, + -0.02057298645377159, + -0.012973795644938946, + 0.012834577821195126, + -0.04205089062452316, + -0.015136709436774254, + -4.8204433566230355e-33, + -0.05859502777457237, + 0.041551623493433, + 0.03765890374779701, + 0.10857013612985611, + -0.03839327022433281, + -0.012054890394210815, + -0.059384800493717194, + -0.050116900354623795, + -0.03875270113348961, + 0.011201255954802036, + 0.02458755485713482, + -0.060921430587768555, + -0.024366753175854683, + -0.05325201153755188, + 0.09121587127447128, + -0.03433835878968239, + -0.11345534771680832, + -0.0666704848408699, + -0.09257937967777252, + -0.021337848156690598, + -0.09996102750301361, + 0.13478504121303558, + -0.002233800943940878, + -0.029139526188373566, + -0.012942498549818993, + 0.014040513895452023, + 0.07442110031843185, + -0.053016338497400284, + -0.015348631888628006, + 0.06702738255262375, + -0.04455247521400452, + 0.046162199229002, + -0.02342396229505539, + 0.07562874257564545, + -0.056251972913742065, + 0.10330241918563843, + -0.09390396624803543, + -0.059472303837537766, + -0.049446914345026016, + 0.025120891630649567, + -0.07464125007390976, + -0.029107751324772835, + -0.06366898119449615, + 0.04514602571725845, + -0.02323664166033268, + 0.05699148774147034, + 0.007501465268433094, + -0.008381407707929611, + -0.02327023446559906, + 0.03536952659487724, + -0.06579548865556717, + 0.015364093706011772, + 0.04273832216858864, + -0.024370545521378517, + -0.09121672809123993, + -0.012959450483322144, + -0.016738738864660263, + 0.07595760375261307, + -0.025722255930304527, + -0.03570176661014557, + 0.00420558312907815, + -0.005608320236206055, + 0.06708352267742157, + -0.0013786365743726492, + -0.006392012815922499, + 0.012226060032844543, + 0.008259658701717854, + 0.00458612572401762, + 0.12370486557483673, + 0.017555683851242065, + -0.01983967237174511, + 0.04488585144281387, + -0.04363112151622772, + 0.04008079692721367, + 3.793176438193768e-05, + 0.030392887070775032, + 0.02012062445282936, + -0.01754487119615078, + 0.018741484731435776, + -0.09321951866149902, + -0.03743508458137512, + 0.05976865068078041, + -0.001370315090753138, + 0.09760928899049759, + 0.06663588434457779, + -0.048302747309207916, + -0.03581050783395767, + -0.007296901196241379, + -0.007899351418018341, + 0.048929791897535324, + -0.048035021871328354, + -0.04343229532241821, + -0.024192601442337036, + 0.001952971564605832, + -0.021048078313469887, + 1.4823035191746894e-33, + 0.07235279679298401, + 0.03776359185576439, + 0.016539186239242554, + 0.037969063967466354, + -0.02505744807422161, + -0.03288375958800316, + -0.09055345505475998, + 0.021192455664277077, + -0.04483683407306671, + 0.03607146814465523, + 0.019593773409724236, + -0.04531637951731682, + 0.02673676609992981, + 0.022745046764612198, + 0.09109023213386536, + -0.02553894929587841, + -0.029921244829893112, + 0.01638512685894966, + -0.08873516321182251, + 0.03507421165704727, + 0.006994773633778095, + -0.05033372342586517, + -0.025044383481144905, + 0.08528941869735718, + -0.05224684625864029, + 0.037767037749290466, + -0.02028803527355194, + 0.043550845235586166, + -0.022392554208636284, + -0.052708424627780914, + -0.05986594408750534, + -0.025482406839728355, + 0.017663026228547096, + 0.10561854392290115, + -0.05458102375268936, + 0.008320230059325695, + 0.023287691175937653, + -0.07992447167634964, + -0.019651666283607483, + -0.0009674776811152697, + 0.03053423762321472, + -0.03872406855225563, + 0.07091423124074936, + 0.034874845296144485, + -0.024791358038783073, + -0.03463360294699669, + 0.06415361166000366, + 0.008323638699948788, + -0.04513463377952576, + 0.07347772270441055, + 0.00481471186503768, + -0.03114517219364643, + -0.03883666545152664, + -0.0027577329892665148, + 0.013780957087874413, + 0.0454559326171875, + 0.0034723575226962566, + -0.0364241786301136, + -0.02457713894546032, + 0.05984187126159668, + 0.0007989004370756447, + 0.09941989928483963, + -0.09267168492078781, + 0.05112319067120552, + -0.0017188626807183027, + -0.07058268040418625, + -0.007488719653338194, + -0.026350567117333412, + 0.01628951169550419, + -0.003619567258283496, + 0.06361222267150879, + -0.007518910337239504, + -0.07616161555051804, + -0.023100880905985832, + -0.01350313425064087, + -0.05654264986515045, + 0.05012572929263115, + 0.021871406584978104, + -0.0029066174756735563, + 0.054256871342659, + 0.0074143921956419945, + -0.06559300422668457, + 0.05126301944255829, + 0.09023047983646393, + 0.019892025738954544, + 0.06869477033615112, + -0.005237358156591654, + 0.03852548077702522, + -0.050218142569065094, + -0.0006978350575082004, + -0.026553336530923843, + 0.0977584645152092, + -0.08376982063055038, + 0.07834675163030624, + -0.09203563630580902, + -1.8950043312315756e-08, + 0.0033905417658388615, + 0.04598095640540123, + -0.09770874679088593, + -0.037976618856191635, + -0.019956862553954124, + -0.013505769893527031, + -0.09893030673265457, + -0.04841051250696182, + -0.12380655854940414, + 0.03256462514400482, + 0.06352923810482025, + 0.014355591498315334, + -0.032288480550050735, + 0.011226789094507694, + -0.0817122682929039, + 0.05189695209264755, + -0.05850999057292938, + 0.03582603484392166, + -0.07467656582593918, + -0.03452971950173378, + -0.02093927003443241, + 0.05903218314051628, + 0.009768701158463955, + 0.03904809430241585, + 0.026492925360798836, + 0.012649377807974815, + -0.0809197649359703, + 0.03305026888847351, + 0.07025665789842606, + 0.029812054708600044, + 0.030927661806344986, + 0.05228283256292343, + -0.037568580359220505, + -0.016017314046621323, + -0.13260477781295776, + -0.0326746441423893, + -0.032932743430137634, + 0.030866116285324097, + 0.08258254826068878, + 0.08367174863815308, + 0.008137494325637817, + 0.038485750555992126, + 0.050324585288763046, + 0.03717914596199989, + 0.0131287956610322, + 0.05500902608036995, + 0.010124193504452705, + -0.0041816383600234985, + -0.06436538696289062, + -0.05831989645957947, + -0.0133531354367733, + -0.10034690797328949, + 0.000651596172247082, + 0.11359645426273346, + -0.03129006549715996, + 0.02002289518713951, + 0.010750637389719486, + 0.06829819083213806, + 0.016252106055617332, + 0.04660423845052719, + 0.05479276552796364, + -0.0019401235040277243, + 0.026423107832670212, + 0.06081728637218475 + ], + "security-camera-bold||*new*,cctv,surveillance,video,monitor,motion detector,safety": [ + -0.006409806665033102, + -0.00487295538187027, + -0.09391982853412628, + -0.08265328407287598, + 0.13145354390144348, + 0.0197973120957613, + 0.07754281908273697, + -0.023133430629968643, + -0.015721511095762253, + 0.020888887345790863, + 0.10717394202947617, + -0.040088921785354614, + 0.05279535800218582, + 0.019859114661812782, + -0.02666463330388069, + -0.028238900005817413, + 0.08762238174676895, + -0.020771672949194908, + -0.038978029042482376, + 0.026678264141082764, + -0.03660374507308006, + -0.055905308574438095, + 0.08625294268131256, + 0.011132283136248589, + -0.059429045766592026, + 0.027580272406339645, + 0.012822580523788929, + -0.01659386046230793, + -0.031704843044281006, + -0.056718483567237854, + -0.03336325287818909, + -0.03928503394126892, + 0.13210958242416382, + 0.05488847941160202, + 0.037060756236314774, + -0.05341436341404915, + 0.09420939534902573, + -0.04730364307761192, + -0.04231765493750572, + 0.04178144410252571, + -0.0537201352417469, + -0.03915030136704445, + 0.026005418971180916, + 0.055474232882261276, + -0.014189166016876698, + 0.06847239285707474, + 0.03443431854248047, + -0.057618509978055954, + -0.0032104800920933485, + -0.06703704595565796, + -0.03496580198407173, + -0.012769046239554882, + -0.0609421469271183, + 0.031189147382974625, + -0.010677683167159557, + -0.07430633902549744, + -0.07865540683269501, + -0.016410598531365395, + 0.06973133236169815, + 0.0024564778432250023, + 0.04756239429116249, + 0.02581055648624897, + 0.019484061747789383, + 0.09110064059495926, + -0.0010549846338108182, + 0.020981943234801292, + -0.027942216023802757, + -0.022252749651670456, + 0.07860412448644638, + 0.03265110030770302, + -0.07473229616880417, + 0.07083515077829361, + -0.007590158376842737, + -0.007625970058143139, + -0.05607856810092926, + -0.03700888901948929, + 0.043834760785102844, + -0.02062644436955452, + 0.016315439715981483, + -0.15029530227184296, + 0.04160209745168686, + -0.09615324437618256, + -0.05517488718032837, + 0.004972897004336119, + 0.060345012694597244, + 0.0752272754907608, + -0.12081406265497208, + -0.03747037053108215, + -0.01509743370115757, + -0.048461880534887314, + -0.11212704330682755, + -0.04475199431180954, + -0.017447590827941895, + -0.0037722985725849867, + -0.06422679126262665, + -0.021941743791103363, + 0.013545284979045391, + -0.05628073588013649, + -0.012459143996238708, + 0.04856036230921745, + 0.026597093790769577, + -0.04136566072702408, + 0.04655285179615021, + 0.016900625079870224, + -0.0002061027189483866, + -0.03182119503617287, + -0.032195691019296646, + 0.03483877331018448, + 0.052481044083833694, + 0.06982751190662384, + 0.01259438693523407, + -0.017865415662527084, + -0.033585526049137115, + -0.07841667532920837, + 0.03451593965291977, + 0.035102665424346924, + -0.12641765177249908, + 0.022466609254479408, + 0.06471437960863113, + 0.07074441015720367, + 0.06876421719789505, + -0.05076301097869873, + -0.03218723461031914, + -0.05556509271264076, + -0.011920159682631493, + -0.030040832236409187, + 0.017685363069176674, + -2.9960322267796818e-33, + -0.006805015727877617, + 0.05336255580186844, + -0.06010457128286362, + 0.06602466106414795, + 0.00883249007165432, + 0.05888620764017105, + -0.023345032706856728, + 0.026821788400411606, + -0.03245201334357262, + 0.09890887141227722, + 0.05674733966588974, + 0.03673752397298813, + -0.023373981937766075, + 0.05734046921133995, + 0.07681784778833389, + 0.027786897495388985, + 0.003719521453604102, + -0.02026509866118431, + -0.020889315754175186, + -0.016460169106721878, + -0.009737392887473106, + 0.02472970448434353, + 0.03105759434401989, + 0.06974675506353378, + 0.08020710945129395, + -0.00997079350054264, + 0.06609141081571579, + 0.000357628712663427, + 0.012967992573976517, + 0.0157855786383152, + -2.9830665880581364e-05, + 0.061586905270814896, + 0.03769678995013237, + -0.005750362295657396, + 0.07588173449039459, + 0.011197284795343876, + -0.04666551947593689, + -0.06284251809120178, + -0.03493453562259674, + -0.05155747011303902, + -0.07600802183151245, + -0.006012803874909878, + -0.08763981610536575, + -0.03485901653766632, + 0.09925152361392975, + 0.054013945162296295, + -0.029066413640975952, + 0.030830446630716324, + -0.06189458817243576, + 0.05616716295480728, + -0.04804141819477081, + -0.000986487721092999, + -0.050592370331287384, + -0.06623650342226028, + -0.07089676707983017, + 0.032608792185783386, + -0.04605591669678688, + 0.036194540560245514, + 0.01686771959066391, + -0.030339298769831657, + -0.031653549522161484, + 0.06248416006565094, + 0.013524629175662994, + -0.04460645094513893, + -0.03313462436199188, + -0.030487291514873505, + 0.03446166589856148, + 0.048725683242082596, + 0.04228890314698219, + 0.05831161513924599, + -0.054299790412187576, + 0.03936350718140602, + 0.02394411526620388, + 0.025785865262150764, + 0.018511025235056877, + 0.0699719786643982, + -0.08055036514997482, + 0.006813413929194212, + -0.030261235311627388, + -0.024689368903636932, + -0.13769294321537018, + 0.03863534331321716, + 0.06985531002283096, + 0.10452144593000412, + -0.009045242331922054, + 0.03166352957487106, + -0.022915543988347054, + -0.06142497435212135, + -0.07643362879753113, + 0.06897932291030884, + -0.028407596051692963, + 0.014040864072740078, + -0.009513981640338898, + 0.04098081588745117, + -0.06372012943029404, + 5.830826668902871e-34, + -0.0017813488375395536, + 0.045121412724256516, + -0.11420242488384247, + -0.058753132820129395, + -0.09774406254291534, + -0.05310806259512901, + 0.011209533549845219, + 0.020543789491057396, + 0.06746651977300644, + 0.004172497428953648, + 0.03257264196872711, + -0.07842178642749786, + -0.0403878428041935, + -0.028438014909625053, + 0.033394962549209595, + -0.0069255162961781025, + -0.003684402909129858, + 0.001921155140735209, + -0.04268241301178932, + 0.06410527229309082, + 0.03188331797719002, + 0.046393658965826035, + -0.08484166860580444, + 0.05606488883495331, + 0.05585811659693718, + 0.057542938739061356, + 0.04996589943766594, + 0.030735336244106293, + 0.030863964930176735, + -0.028583116829395294, + -0.02097458951175213, + -0.06259772926568985, + 0.07013474404811859, + 0.10294338315725327, + -0.056925274431705475, + 0.009421629831194878, + 0.12105972319841385, + -0.08874274045228958, + -0.03444686532020569, + -0.010832336731255054, + 0.01892443560063839, + 0.07275769114494324, + 0.03149028867483139, + 0.022287731990218163, + -0.08619710057973862, + -0.020692424848675728, + -0.0008967432077042758, + 0.043214257806539536, + -0.0936494767665863, + -0.0010254367953166366, + -0.03752654418349266, + -0.06820927560329437, + -0.07773574441671371, + -0.0036801518872380257, + -0.015601027756929398, + 0.08242105692625046, + -0.01705089956521988, + 0.01657446101307869, + 0.030645716935396194, + 0.015236785635352135, + 0.05949564278125763, + 0.030223052948713303, + -0.08026102185249329, + 0.03534886613488197, + -0.016356362029910088, + -0.0005467299488373101, + -0.028479253873229027, + 0.014033475890755653, + -0.029452184215188026, + 0.010577179491519928, + 0.0974026694893837, + 0.014936252497136593, + -0.022219019010663033, + -0.024626513943076134, + -0.044146135449409485, + -0.08201508224010468, + 0.04387487471103668, + -0.02878844551742077, + -0.03490026295185089, + 0.03637737035751343, + 0.00018730689771473408, + -0.09785228967666626, + -0.012225870043039322, + 0.0965568795800209, + 0.034455981105566025, + 0.059013087302446365, + 0.007834384217858315, + -0.05297043174505234, + 0.01890118420124054, + -0.027192797511816025, + -0.10710962861776352, + 0.03877393901348114, + -0.046935416758060455, + 0.05138963833451271, + -0.009911882691085339, + -2.081524463903861e-08, + -0.04783349111676216, + 0.006821321323513985, + -0.08667273074388504, + -0.05740295723080635, + 0.0451718270778656, + -0.05603117495775223, + -0.047396570444107056, + 0.009098196402192116, + -0.029704825952649117, + -0.09380114078521729, + 0.06314431130886078, + 0.015807436779141426, + -0.027221329510211945, + 0.007948664017021656, + -0.00979655422270298, + -0.008631746284663677, + -0.03734905272722244, + -0.0028587549459189177, + -0.021763863041996956, + 0.00631742412224412, + -0.002288354327902198, + -0.027908852323889732, + -0.0026513831689953804, + -0.01719919592142105, + 0.022005002945661545, + 7.598695810884237e-05, + -0.047545574605464935, + -0.04592970758676529, + 0.10061389952898026, + 0.07403998076915741, + -0.017590012401342392, + 0.021659398451447487, + 0.04241528362035751, + -0.009241637773811817, + -0.01872953586280346, + 0.01776478998363018, + -0.05436331778764725, + -0.03102411888539791, + 0.06195167079567909, + 0.05258673056960106, + 0.015427575446665287, + -0.05668265372514725, + 0.008174278773367405, + 0.05125458538532257, + -0.023761512711644173, + 0.014679492451250553, + 0.03584388270974159, + -0.07532719522714615, + -0.017112944275140762, + -0.06529171019792557, + -0.03101341426372528, + -0.037002384662628174, + 0.004881636705249548, + 0.1350395679473877, + 0.021891741082072258, + 0.029430437833070755, + 0.12769240140914917, + -0.022202791646122932, + -0.018433481454849243, + 0.06295381486415863, + 0.07426102459430695, + 0.015392369590699673, + 0.011574232950806618, + 0.006925567984580994 + ], + "selection-bold||marquis,select,square dashed": [ + 0.0002552816877141595, + -0.013023871928453445, + 0.033853381872177124, + 0.09161486476659775, + 0.006816072855144739, + -0.0021686421241611242, + 0.07570398598909378, + -0.061421167105436325, + 0.011133375577628613, + -0.01040244847536087, + 0.03155307471752167, + 0.05468938872218132, + 0.014969556592404842, + -0.09338194876909256, + -0.0287771113216877, + 0.07114875316619873, + 0.08597470074892044, + 0.003234746865928173, + -0.001511085545644164, + 0.01810513064265251, + -0.023464981466531754, + -0.009450877085328102, + 0.00492654787376523, + 0.03565632179379463, + -0.045750923454761505, + 0.033980101346969604, + 0.11435148119926453, + 0.056861940771341324, + -0.018034888431429863, + -0.08552353829145432, + -0.03509078547358513, + -0.010602099820971489, + 0.0854758694767952, + -0.010913192294538021, + -0.02923930622637272, + -0.023793214932084084, + 0.00757285300642252, + 0.027396870777010918, + 0.10838095843791962, + 0.005825715139508247, + 0.051146455109119415, + -0.12671391665935516, + -0.051248934119939804, + 0.0617048442363739, + -0.053678907454013824, + -0.10596778243780136, + -0.03763345256447792, + -0.02552558295428753, + 0.04100218042731285, + 0.00035339119494892657, + 0.0262364000082016, + 0.00911350455135107, + -0.046369053423404694, + -0.029471851885318756, + -0.04282166063785553, + 0.002575070597231388, + -0.06080225855112076, + -0.03651571646332741, + 0.08842873573303223, + -0.053469084203243256, + -0.04971129819750786, + 0.03948982059955597, + -0.016047542914748192, + 0.01579272747039795, + 0.0020985754672437906, + 0.005427397787570953, + -0.00955582968890667, + -0.06941761821508408, + -0.0451764278113842, + 0.06367942690849304, + 0.01663465052843094, + 0.01211182028055191, + -0.022973766550421715, + -0.02232552133500576, + -0.025990402325987816, + 0.02353203482925892, + 0.04012347012758255, + 0.0020786146633327007, + 0.024073373526334763, + -0.03754039853811264, + -0.07736673206090927, + 0.016284311190247536, + -0.09208209812641144, + 0.10043665766716003, + 0.06968145072460175, + 0.03437643125653267, + -0.06732062995433807, + -0.052591368556022644, + 0.025860488414764404, + -0.00921365525573492, + -0.016625063493847847, + -0.015357648953795433, + 0.01741774193942547, + 0.011707725934684277, + -0.09619848430156708, + 0.02133657969534397, + 0.10514502227306366, + -0.008502934128046036, + -0.02641517110168934, + 0.05219866707921028, + 0.03869487717747688, + 0.022260461002588272, + -0.003580081509426236, + 0.02724594995379448, + -0.10846440494060516, + -0.05667843669652939, + 0.02166840247809887, + -0.020268097519874573, + 0.01563868671655655, + -0.051489681005477905, + -0.03982704505324364, + -0.08145439624786377, + 0.047335486859083176, + -0.023108873516321182, + -0.07761991769075394, + 0.006331532262265682, + -0.07923582941293716, + -0.04733232781291008, + 0.09431446343660355, + -0.019756756722927094, + 0.07597064226865768, + 0.006083181127905846, + -0.06688591837882996, + -0.04855415225028992, + 0.007526823785156012, + 0.01857045106589794, + 0.06764253228902817, + -1.859374005256655e-33, + -0.016780180856585503, + 0.06670597940683365, + 0.04896169528365135, + 0.08323710411787033, + -0.04533964395523071, + 0.013917245902121067, + -0.0626668706536293, + -0.04388809576630592, + -0.051582422107458115, + 0.0709160715341568, + 0.05243451148271561, + -0.028063243255019188, + 0.004681126214563847, + 0.02672789990901947, + -0.024553604423999786, + 0.048347942531108856, + 0.041548363864421844, + -0.0008041787659749389, + -0.01879650168120861, + 0.03840114176273346, + -0.09673834592103958, + 0.096920907497406, + -0.03891320899128914, + -0.03724180907011032, + 0.012145088985562325, + -0.03128312528133392, + 0.006101704202592373, + -0.015857089310884476, + 0.008575956337153912, + 0.06264651566743851, + 0.017189519479870796, + 0.06769627332687378, + 0.030897073447704315, + -0.013537697494029999, + 0.024529414251446724, + 0.10517239570617676, + -0.0863899514079094, + -0.047428522258996964, + 0.059444695711135864, + 0.10221217572689056, + -0.0066610719077289104, + -0.01961708441376686, + 0.04419388994574547, + 0.03696480020880699, + 0.0008773930603638291, + 0.0972406417131424, + -0.01927894353866577, + -0.041373755782842636, + -0.017379790544509888, + -0.01511204894632101, + 0.008307869546115398, + -0.00040088867535814643, + -0.005787165369838476, + 0.00810389593243599, + 0.04652310535311699, + -0.008438315242528915, + -0.021134376525878906, + 0.0980045348405838, + 0.003281619865447283, + 0.03878756985068321, + 0.019949806854128838, + 0.016070587560534477, + -0.02576913870871067, + 0.0059113893657922745, + 0.009311393834650517, + -0.018426645547151566, + -0.11565244942903519, + -0.045731235295534134, + 0.014978478662669659, + -0.029260538518428802, + 0.0367901474237442, + 0.07483095675706863, + 0.08701525628566742, + -0.007750322576612234, + -0.01918003335595131, + -0.027796730399131775, + 0.10795332491397858, + 0.00297476421110332, + 0.11092086881399155, + -0.14447256922721863, + -0.10968321561813354, + -0.026382779702544212, + -0.10119301825761795, + -0.003195816185325384, + 0.03176306188106537, + -0.01726234331727028, + 0.004500416573137045, + -0.03594176471233368, + -0.044485192745923996, + 0.005394819192588329, + -0.07809381186962128, + -0.024686051532626152, + -0.052184998989105225, + -0.05280138552188873, + -0.08169595152139664, + -4.488531506408824e-34, + 0.035082098096609116, + 0.0421254001557827, + 0.04087403044104576, + 0.02115613967180252, + -0.07389166951179504, + 0.017056476324796677, + 0.023641902953386307, + -0.041216686367988586, + -0.028995191678404808, + -0.01820463500916958, + 0.07254931330680847, + 0.07243534922599792, + -0.004587095696479082, + -0.08354295790195465, + 0.049958426505327225, + 0.08535425364971161, + 0.005208977032452822, + -0.014531216584146023, + -0.09631991386413574, + 0.0002639847807586193, + -0.06265778839588165, + -0.02748810313642025, + 0.004199070390313864, + 0.0912921205163002, + -0.0068407729268074036, + -0.008854362182319164, + 0.03889168053865433, + 0.048958439379930496, + 0.03285624459385872, + 0.01032932847738266, + 0.0019656680524349213, + 0.015572245232760906, + -0.008468743413686752, + 0.052294302731752396, + -0.05898245796561241, + 0.059837378561496735, + 0.0568033903837204, + -0.008329643867909908, + 0.011439806781709194, + 0.0567551925778389, + -0.04084924980998039, + -0.03587028384208679, + 0.07362723350524902, + 0.02781447395682335, + 0.0022652973420917988, + 0.009709934704005718, + 0.022947322577238083, + -0.00579141266644001, + 0.03751629590988159, + 0.05414188653230667, + -7.079608508320234e-07, + 0.010644028894603252, + -0.06842228025197983, + 0.11327086389064789, + -0.044915150851011276, + -0.03412745147943497, + 0.03707496076822281, + 0.03192583844065666, + 0.04903831705451012, + 0.02750352770090103, + -0.04420218989253044, + 0.12755708396434784, + 0.021727055311203003, + 0.012788267806172371, + 0.03136701509356499, + -0.09299466758966446, + 0.003115925472229719, + -0.0016463303472846746, + 0.026335567235946655, + -0.024802712723612785, + 0.01967008411884308, + -0.04691304638981819, + 0.03371575102210045, + -0.03112809918820858, + 0.05184588208794594, + -0.02867550402879715, + 0.04355546832084656, + 0.02159842476248741, + -0.037560947239398956, + 0.11207129806280136, + 0.021175773814320564, + 0.021334871649742126, + 0.015474414452910423, + 0.04078228026628494, + -0.11779113858938217, + 0.034513168036937714, + -0.02058275416493416, + 0.09132731705904007, + 0.02630767412483692, + -0.11025054007768631, + 0.03090605139732361, + -0.032526932656764984, + 0.02357422187924385, + -0.08577840030193329, + -0.05203782394528389, + -1.6241921585447017e-08, + -0.0462137907743454, + -0.054481711238622665, + -0.0014303721254691482, + -0.0817527174949646, + 0.04349489510059357, + -0.026085758581757545, + -0.07248025387525558, + -0.06352744251489639, + -0.03424017131328583, + 0.014543558470904827, + -0.007358407136052847, + 0.029625551775097847, + -0.03975464776158333, + -0.07890491187572479, + -0.0022995874751359224, + 0.04327252879738808, + 0.0078082759864628315, + 0.04532871022820473, + -0.021610110998153687, + -0.07267551124095917, + -0.10087797790765762, + 0.011882768012583256, + 0.0025777025148272514, + 0.0031053083948791027, + -0.012738234363496304, + -0.03688725829124451, + -0.13333292305469513, + -0.08437397330999374, + 0.0233947541564703, + 0.12367900460958481, + 0.01619541458785534, + 0.07189010083675385, + 0.07575297355651855, + -0.04505528137087822, + -0.017138326540589333, + -0.09191104024648666, + -0.015442995354533195, + -0.011463791131973267, + 0.0753374770283699, + 0.07584574818611145, + -0.008614428341388702, + -0.04722381755709648, + -0.03591363504528999, + -0.04387657716870308, + -0.032367803156375885, + 0.03261617198586464, + 0.07688965648412704, + -0.04261878505349159, + -0.04714960232377052, + -0.07841240614652634, + -0.014558282680809498, + -0.05466510355472565, + 0.03963628038764, + 0.015344331972301006, + -0.03240986168384552, + -0.05705629661679268, + -0.02148435264825821, + 0.09503545612096786, + -0.018163494765758514, + -0.02148561365902424, + 0.07429349422454834, + 0.011584760621190071, + -0.03908028453588486, + -0.008349573239684105 + ], + "selection-all-bold||marquis,select all": [ + 0.038845762610435486, + -0.018511850386857986, + 0.000473508465802297, + 0.08788997679948807, + 0.06573602557182312, + -0.00854948628693819, + 0.05282773822546005, + -0.08376063406467438, + 0.019520681351423264, + 0.023684334009885788, + 0.020010408014059067, + 0.030010592192411423, + 0.01562664471566677, + -0.11856163293123245, + -0.0313575342297554, + 0.04473254829645157, + 0.08228613436222076, + 0.057388175278902054, + -0.009203438647091389, + -0.013441911898553371, + -0.03691647946834564, + 0.05806433781981468, + 0.023786213248968124, + 0.030278602614998817, + -0.05378491058945656, + 0.0233820378780365, + 0.07688520848751068, + -0.011235769838094711, + -0.026552937924861908, + -0.0908200815320015, + -0.06215321272611618, + -0.04328252747654915, + 0.0846855416893959, + 0.04276290535926819, + 0.039799127727746964, + -0.008456934243440628, + -0.021573176607489586, + 0.0008130993228405714, + 0.08739735186100006, + 0.0244001317769289, + 0.013776461593806744, + -0.0956311896443367, + -0.02761216275393963, + 0.06668388098478317, + -0.06120298057794571, + -0.07769808173179626, + -0.026367096230387688, + -0.05932777374982834, + 0.061218973249197006, + 0.015560866333544254, + 0.04276800528168678, + -0.019637789577245712, + -0.048773642629384995, + 0.007060845848172903, + -0.007346901576966047, + -0.03307343274354935, + -0.08916085958480835, + -0.05047876387834549, + 0.06592489033937454, + -0.06335267424583435, + -0.08327336609363556, + 0.028113367035984993, + 0.009879259392619133, + 0.044632166624069214, + 0.013481511734426022, + 0.01981707289814949, + 0.012062804773449898, + -0.03837370127439499, + -0.05372869223356247, + 0.02903619036078453, + 0.020162934437394142, + 0.009622147306799889, + 0.03149520978331566, + 0.021258126944303513, + -0.011784807778894901, + 0.04729720577597618, + 0.04472082480788231, + -0.00914594903588295, + 0.03336659446358681, + 0.03261499106884003, + -0.058720044791698456, + 0.013486883603036404, + -0.050473250448703766, + 0.03686438500881195, + 0.05948634445667267, + 0.038946472108364105, + -0.0699298232793808, + -0.02643921598792076, + 0.05458158999681473, + -0.0057321274653077126, + -0.027752740308642387, + -0.02498992718756199, + -0.0012443247251212597, + 0.035925544798374176, + -0.09871074557304382, + 0.05359482765197754, + 0.058646876364946365, + -0.027890676632523537, + -0.031835708767175674, + 0.03376153111457825, + 0.021586459130048752, + 0.04843318089842796, + -0.002667504595592618, + 0.03484586998820305, + -0.12422411888837814, + -0.04233367741107941, + 0.05695900321006775, + -0.05644551292061806, + -0.03987940773367882, + -0.05382659658789635, + -0.052756417542696, + -0.06066238507628441, + 0.03819137066602707, + -0.023596856743097305, + -0.03661409765481949, + -0.010999485850334167, + -0.03046165034174919, + -0.03125850856304169, + 0.03960409387946129, + 0.0028644350823014975, + 0.03118266351521015, + -0.024933641776442528, + -0.08449725806713104, + -0.0030356966890394688, + -0.020978447049856186, + 0.04954807087779045, + 0.04778718575835228, + -2.521545952451181e-33, + -0.005063359159976244, + 0.03288866579532623, + 0.026930883526802063, + 0.0749223381280899, + -0.055452875792980194, + 0.03546424210071564, + -0.03824808821082115, + -0.031527698040008545, + -0.06401090323925018, + 0.07416319847106934, + 0.08133650571107864, + -0.021896010264754295, + -0.008464743383228779, + 0.037022627890110016, + -0.01676948368549347, + 0.05703863129019737, + 0.032093461602926254, + -0.007508586160838604, + -0.012231362983584404, + 0.042936403304338455, + -0.1009279415011406, + 0.08422589302062988, + -0.04099088907241821, + -0.019078830257058144, + -0.03708984702825546, + -0.022899014875292778, + 0.029607636854052544, + 0.01043400727212429, + -0.029353847727179527, + 0.02807024121284485, + -0.017295798286795616, + 0.05707843601703644, + -0.021081015467643738, + 0.04954461753368378, + 0.021911071613430977, + 0.12114053964614868, + -0.08439082652330399, + -0.0032878180500119925, + 0.05984508991241455, + 0.08525881916284561, + -0.05228880047798157, + -0.008706644177436829, + 0.053222693502902985, + -0.023656906560063362, + -0.03382740169763565, + 0.08460726588964462, + -0.10955661535263062, + -0.026599951088428497, + 0.0006911107338964939, + -0.009767230600118637, + 0.02855139598250389, + -0.012568584643304348, + -0.06752261519432068, + -0.025841956958174706, + -0.008779890835285187, + -0.0008051437325775623, + -0.05573507770895958, + 0.11020626872777939, + 0.004399934317916632, + 0.03326091170310974, + 0.006171098910272121, + -0.042007047683000565, + -0.019622480496764183, + 0.02695934846997261, + -0.009053090587258339, + -0.017556194216012955, + -0.07143726944923401, + -0.01827634871006012, + -0.0038552568294107914, + -0.031895048916339874, + 0.05574950948357582, + 0.048836253583431244, + 0.06865419447422028, + -0.036034781485795975, + -0.002207399345934391, + -0.006984198931604624, + 0.10428988933563232, + -0.035262010991573334, + 0.10478135943412781, + -0.06411394476890564, + -0.09839927405118942, + -0.030046414583921432, + -0.08578789234161377, + 0.07316696643829346, + 0.06014663353562355, + 0.015307951718568802, + -0.010022515431046486, + -0.018301812931895256, + 0.03720656409859657, + 0.026827562600374222, + -0.06594297289848328, + -0.02453310787677765, + -0.026362476870417595, + -0.1095234751701355, + -0.09599825739860535, + -4.2798270761951345e-34, + 0.09190340340137482, + -0.010127117857336998, + 0.05194127559661865, + -0.012783234938979149, + -0.06823820620775223, + -0.012324359267950058, + -0.03105403110384941, + -0.015198228880763054, + -0.009168519638478756, + -0.01866781711578369, + 0.13731618225574493, + 0.039617590606212616, + -0.022933926433324814, + -0.0651293620467186, + 0.019325675442814827, + 0.09380912035703659, + -0.005036686547100544, + 0.006131725385785103, + -0.0776333138346672, + 0.022214947268366814, + -0.03230394795536995, + -0.014855429530143738, + -0.021481703966856003, + 0.10737074166536331, + 0.005926890764385462, + -0.027439210563898087, + -0.005444713868200779, + 0.1098787784576416, + 0.031452666968107224, + 0.015276934020221233, + 0.035360049456357956, + 0.04069060832262039, + -0.007347491104155779, + 0.09853236377239227, + -0.060230765491724014, + 0.07001090794801712, + 0.04844367504119873, + 0.02768285758793354, + 0.02561621367931366, + 0.06433489173650742, + -0.034898269921541214, + -0.03581620752811432, + 0.020784957334399223, + -0.0044754729606211185, + -0.017423924058675766, + 0.0084138885140419, + -0.017863333225250244, + -0.04936441779136658, + 0.03875064104795456, + 0.11931629478931427, + -0.016065388917922974, + -0.01322317123413086, + -0.04740794375538826, + 0.07097600400447845, + -0.02900092862546444, + 0.004166489467024803, + 0.06273692101240158, + 0.022072961553931236, + 0.010384771972894669, + -0.016335178166627884, + -0.03312120959162712, + 0.16286686062812805, + -0.0009956301655620337, + -0.01326901838183403, + 0.023000158369541168, + -0.058928728103637695, + 0.026293380185961723, + 0.0322503037750721, + 0.0015739469090476632, + -0.03424402326345444, + 0.014299995265901089, + -0.08623327314853668, + -0.022241368889808655, + -0.03662627935409546, + 0.051652468740940094, + -0.03254259005188942, + 0.0046209609135985374, + -0.005507208872586489, + -0.04673754796385765, + 0.049882922321558, + 0.038483910262584686, + 0.0031217888463288546, + 0.019484149292111397, + 0.031248249113559723, + -0.07815299928188324, + 0.0228012315928936, + 0.03449977561831474, + 0.02578715793788433, + 0.025933535769581795, + -0.11468382179737091, + 0.025853928178548813, + -0.06808331608772278, + 0.08271182328462601, + -0.08993972092866898, + -0.07029300928115845, + -1.6590895768331393e-08, + -0.07158010452985764, + -0.05746069550514221, + -0.03142797574400902, + -0.07644986361265182, + 0.016570981591939926, + -0.048665523529052734, + -0.05731144919991493, + -0.012085015885531902, + -0.019924234598875046, + 0.028496889397501945, + 0.017129555344581604, + 0.016505610197782516, + 0.0005908916355110705, + -0.10330548882484436, + 0.03543325141072273, + 0.025592826306819916, + -0.0018101478926837444, + 0.02200302481651306, + -0.02911938540637493, + -0.04665109142661095, + -0.09083331376314163, + 0.022455107420682907, + 0.005675466265529394, + -0.021176472306251526, + 0.05243450403213501, + -0.010749131441116333, + -0.14465025067329407, + -0.10146878659725189, + 0.070192351937294, + 0.1521935760974884, + 0.01445462740957737, + 0.02915826253592968, + 0.054577264934778214, + -0.04390794411301613, + -0.023576876148581505, + -0.035450465977191925, + 0.011448632925748825, + -0.07289938628673553, + 0.0705464780330658, + 0.10746331512928009, + -0.0460168719291687, + -0.06076289713382721, + -0.056684888899326324, + -0.022004365921020508, + -0.09104587882757187, + -0.02999814786016941, + 0.03040134720504284, + -0.04564811661839485, + 0.006468099541962147, + -0.028326386585831642, + 0.002294457284733653, + -0.0039055112283676863, + 0.0411374531686306, + 0.01615356281399727, + -0.05323825404047966, + -0.06795552372932434, + 0.01453653909265995, + 0.12750567495822906, + -0.011762484908103943, + -0.037744976580142975, + 0.10020510852336884, + -0.021378420293331146, + -0.01292768120765686, + -0.028026171028614044 + ], + "selection-background-bold||marquis": [ + -0.01012458186596632, + 0.03381546586751938, + -0.03280257806181908, + 0.07032424211502075, + 0.09328275173902512, + 0.00389278307557106, + 0.07565327733755112, + -0.06193811073899269, + 0.021327821537852287, + -0.02063281275331974, + 0.004103121347725391, + 0.044060755521059036, + 0.023147737607359886, + -0.09322376549243927, + -0.012807386927306652, + 0.05787463113665581, + 0.0800250992178917, + 0.05351407825946808, + -0.03401681408286095, + 0.025582626461982727, + -0.06959234923124313, + -0.0022127022966742516, + 0.07840268313884735, + 0.01388185191899538, + -0.07154102623462677, + 0.02440691366791725, + 0.12984593212604523, + 0.019095903262495995, + 0.018903182819485664, + -0.08165217190980911, + -0.043335869908332825, + -0.019445054233074188, + 0.11551786214113235, + 0.01603247970342636, + -0.0502038411796093, + -0.004390442278236151, + -0.028293738141655922, + 0.031337328255176544, + 0.05921102687716484, + 0.031100573018193245, + 0.0454314760863781, + -0.10940331965684891, + -0.032176874577999115, + 0.06871750950813293, + -0.06852013617753983, + -0.050383660942316055, + -0.0072900778613984585, + -0.015355722047388554, + 0.04392389580607414, + 0.010048462077975273, + 0.029270412400364876, + -0.0851895660161972, + -0.02799234911799431, + 0.013992972671985626, + -0.049203161150217056, + 0.0061720614321529865, + -0.03780323639512062, + -0.040879931300878525, + 0.09230954200029373, + -0.02906356006860733, + -0.029333746060729027, + 0.06840440630912781, + -0.02020592801272869, + 0.02820880338549614, + 0.053651098161935806, + 0.03786642849445343, + -0.0007518377969972789, + -0.046000853180885315, + -0.054437555372714996, + -0.007146731484681368, + 0.0734773576259613, + 0.010669071227312088, + 0.017842022702097893, + -0.04622279480099678, + -0.00877621304243803, + 0.020743636414408684, + 0.05428297072649002, + -0.006823257077485323, + 0.015654368326067924, + -0.06650971621274948, + -0.016067003831267357, + -0.05908052250742912, + -0.042589928954839706, + 0.08776221424341202, + 0.04580201953649521, + 0.05000430345535278, + -0.08224762231111526, + -0.05721420794725418, + -0.018417619168758392, + 0.0060585192404687405, + 0.00951925665140152, + 0.0001882414799183607, + -0.021926026791334152, + 0.004336606245487928, + -0.11735662817955017, + 0.05600032955408096, + 0.01496930606663227, + -0.035814497619867325, + -0.021841710433363914, + 0.05536681041121483, + 0.018841208890080452, + -0.019673854112625122, + 0.028713077306747437, + 0.07197710126638412, + -0.06377348303794861, + -0.040629319846630096, + 0.017495740205049515, + -0.01336926594376564, + -0.029683271422982216, + -0.06733784824609756, + -0.01939748041331768, + -0.05256672203540802, + 0.007476889528334141, + -0.018102027475833893, + -0.04816293716430664, + -0.01262799184769392, + 0.03340474143624306, + -0.029306886717677116, + 0.07848045974969864, + -0.0499030239880085, + 0.08992503583431244, + 0.010725141502916813, + -0.09231840074062347, + -0.09376419335603714, + -0.013820989057421684, + -0.029992321506142616, + 0.07367947697639465, + -2.598431731860605e-33, + 0.014498050324618816, + 0.04806234687566757, + -0.029085107147693634, + 0.0807330384850502, + 0.02043120190501213, + 0.01097028236836195, + -0.05964266136288643, + -0.06068509444594383, + -0.09409702569246292, + 0.08459366112947464, + 0.06250058859586716, + -0.03662573918700218, + -0.02247854508459568, + 0.003446530783548951, + 0.01284692995250225, + -0.006480695214122534, + 0.03876734897494316, + -0.0005692472914233804, + -0.0356442853808403, + 0.006040011066943407, + -0.10215023905038834, + 0.07247676700353622, + -0.04698359593749046, + -0.012332781217992306, + -0.03619121387600899, + 0.029506677761673927, + 0.06425218284130096, + -0.012270164676010609, + -0.013471716083586216, + 0.019655875861644745, + 0.021568531170487404, + 0.08020376414060593, + 0.02075885981321335, + 0.03796841576695442, + 0.0013816654682159424, + 0.11012990027666092, + -0.10819907486438751, + -0.03809696435928345, + 0.07228486984968185, + 0.06991633772850037, + -0.0789116621017456, + 0.0016279906267300248, + 0.028190473094582558, + 0.015802230685949326, + -0.01003775279968977, + 0.0498918853700161, + -0.02428736723959446, + -0.012253846973180771, + 0.01577354595065117, + 0.03162505850195885, + 0.01572035439312458, + -0.01248998288065195, + -0.03533779829740524, + -0.03929035738110542, + -0.029481658712029457, + 0.018744071945548058, + -0.03210350498557091, + 0.11091222614049911, + 0.023823663592338562, + 0.0007732537342235446, + 0.04771680012345314, + -0.0034692096523940563, + -0.0025029201060533524, + 0.06510002911090851, + 0.0015412683133035898, + -0.01803339086472988, + -0.08183635026216507, + -0.005018339026719332, + 0.01034825574606657, + -0.058072227984666824, + 0.031317953020334244, + 0.07621725648641586, + 0.06637708842754364, + -0.03246719762682915, + -0.0003791667113546282, + -0.023020297288894653, + 0.08106785267591476, + 0.003922054078429937, + 0.046557776629924774, + -0.08927354961633682, + -0.11818916350603104, + -0.014002729207277298, + -0.03926333785057068, + 0.025109389796853065, + 0.035634834319353104, + 0.039986010640859604, + -0.004966463427990675, + -0.03093002364039421, + 0.0016178578371182084, + 0.021540557965636253, + -0.07577072829008102, + -0.04777907207608223, + -0.05370333045721054, + -0.04133319854736328, + -0.06719745695590973, + 8.603768251324722e-34, + 0.06052887812256813, + 0.018294615671038628, + 0.05975644662976265, + 0.012184967286884785, + -0.03192520514130592, + 0.01033858209848404, + 0.011273895390331745, + 0.013073599897325039, + -0.04163186252117157, + 0.005072274710983038, + 0.09859603643417358, + 0.10389325022697449, + -0.039742790162563324, + -0.042736414819955826, + 0.038743991404771805, + 0.0672888532280922, + -0.031780604273080826, + 0.05152272805571556, + -0.10598016530275345, + 0.029239743947982788, + -0.05560101568698883, + -0.03354732319712639, + -0.06847011297941208, + 0.09294616430997849, + -0.036933425813913345, + -0.016742568463087082, + 0.020291820168495178, + 0.09765366464853287, + 0.015799641609191895, + -0.010726931504905224, + -0.012610696256160736, + 0.000465073564555496, + -0.013593059033155441, + 0.09167847037315369, + -0.03291681408882141, + 0.05213664472103119, + 0.06852741539478302, + -0.005954201333224773, + -0.009620686993002892, + 0.057185761630535126, + -0.04796113818883896, + -0.0011805160902440548, + -0.004840399604290724, + -0.026849716901779175, + -0.0799708142876625, + 0.005599034484475851, + -0.015710363164544106, + -0.026974160224199295, + 0.03411490097641945, + 0.053787775337696075, + -0.01264994591474533, + 0.0007291286019608378, + -0.04610197991132736, + 0.08730176836252213, + -0.04755833372473717, + 0.024462752044200897, + 0.013103649020195007, + 0.07019857317209244, + 0.060182955116033554, + 0.020485894754529, + -0.01912379078567028, + 0.13184475898742676, + -0.01728907972574234, + -0.053088266402482986, + 0.051342952996492386, + -0.05326858535408974, + 0.00472924392670393, + 0.04005322605371475, + -0.012847520411014557, + -0.008454648777842522, + 0.0583551749587059, + -0.05307847261428833, + 0.015244696289300919, + 0.008495818823575974, + 0.01962730474770069, + -0.046422723680734634, + 0.07175282388925552, + -0.026904642581939697, + -0.047357503324747086, + 0.11010895669460297, + 0.033670030534267426, + -0.029309721663594246, + -0.021936466917395592, + 0.015492681413888931, + -0.0720033273100853, + 0.07253727316856384, + 0.013266201131045818, + 0.07159304618835449, + 0.004766271449625492, + -0.14468683302402496, + -0.011192019097507, + 0.009872257709503174, + 0.06530886888504028, + -0.10019184648990631, + -0.05163386091589928, + -1.4591973851452167e-08, + -0.05119390785694122, + -0.01598782278597355, + -0.012913043610751629, + -0.07850853353738785, + -0.001971551449969411, + -0.03573298454284668, + -0.07766442000865936, + -0.0947151705622673, + -0.03667756915092468, + -0.005483099725097418, + -0.014031549915671349, + 0.009802156127989292, + -0.026017574593424797, + -0.08913988620042801, + -0.016086068004369736, + 0.032918330281972885, + -0.05971694365143776, + 0.01803182065486908, + -0.028692586347460747, + -0.05034976452589035, + -0.08040913194417953, + 0.02472476288676262, + 0.017491040751338005, + 0.01721496693789959, + 0.003503945656120777, + 0.008112943731248379, + -0.12616799771785736, + -0.0335458479821682, + 0.05429280921816826, + 0.12868735194206238, + 0.04801777005195618, + 0.10303311794996262, + 0.08384630084037781, + -0.07196014374494553, + -0.016310183331370354, + -0.018329700455069542, + 0.0049900454469025135, + -0.04506535828113556, + 0.027866560965776443, + 0.0882372111082077, + 0.022048503160476685, + -0.0942554771900177, + -0.04537574574351311, + -0.006284287665039301, + -0.055110324174165726, + 0.011413555592298508, + 0.07728654891252518, + -0.04859689995646477, + -0.044891394674777985, + -0.04300359636545181, + 0.034981656819581985, + -0.08225288987159729, + 0.031336743384599686, + 0.061478231102228165, + -0.01371821854263544, + -0.09959103167057037, + 0.02215835452079773, + 0.12770171463489532, + -0.012072505429387093, + 0.01258119661360979, + 0.04904917627573013, + 0.016604064032435417, + 0.0048924037255346775, + -0.02043500915169716 + ], + "selection-foreground-bold||marquis": [ + 0.0014150108909234405, + -0.02118566818535328, + -0.007558859884738922, + 0.06844411790370941, + 0.1036868467926979, + -0.0009294112678617239, + 0.08388317376375198, + -0.05151095613837242, + 0.035984188318252563, + -0.018868446350097656, + 0.024836957454681396, + 0.026773402467370033, + 0.007251664064824581, + -0.08039364218711853, + -0.014597220346331596, + 0.0533045269548893, + 0.08650505542755127, + 0.04550023376941681, + -0.018065491691231728, + 0.044480033218860626, + -0.041585773229599, + -0.01530743669718504, + 0.06846447288990021, + 0.024601373821496964, + -0.06077979505062103, + 0.009474275633692741, + 0.10128168016672134, + 0.03841356188058853, + 0.006362391170114279, + -0.10187681019306183, + -0.03477459028363228, + -0.014131230302155018, + 0.14759264886379242, + 0.01750088669359684, + -0.06075821444392204, + -0.006618699990212917, + 0.004138884134590626, + 0.017154449597001076, + 0.061642132699489594, + 0.04181378707289696, + 0.04697788134217262, + -0.0932813510298729, + -0.024975387379527092, + 0.050330329686403275, + -0.05396483838558197, + -0.04474671557545662, + -0.013191469945013523, + -0.024515889585018158, + 0.016812697052955627, + 0.011118099093437195, + 0.05687081068754196, + -0.06886421889066696, + -0.038430385291576385, + 0.04007876291871071, + -0.049774229526519775, + -0.004467552062124014, + -0.039103489369153976, + -0.0493282712996006, + 0.10527777671813965, + -0.04309733584523201, + -0.028357164934277534, + 0.061220403760671616, + -0.045870523899793625, + 0.015520034357905388, + 0.04693308100104332, + 0.017710288986563683, + 0.023968130350112915, + -0.06993023306131363, + -0.06021025404334068, + 0.017110591754317284, + 0.053146492689847946, + -0.007403413765132427, + 0.03568189591169357, + -0.0715240091085434, + -0.030753152444958687, + 0.04481511563062668, + 0.038800567388534546, + -0.03070708177983761, + 0.024563465267419815, + -0.07462342828512192, + 0.003417586674913764, + -0.02784719504415989, + -0.05255372077226639, + 0.08342434465885162, + 0.056271497160196304, + 0.06254647672176361, + -0.09490280598402023, + -0.03539302945137024, + -0.02565942518413067, + 0.005203490611165762, + -0.03440798819065094, + -0.01938222534954548, + -0.027026863768696785, + 0.03169095143675804, + -0.13318562507629395, + 0.04564017057418823, + 0.011720232665538788, + -0.024396179243922234, + -0.04200948029756546, + 0.0605558380484581, + 0.04295799136161804, + -0.01966588757932186, + 0.013563813641667366, + 0.07242703437805176, + -0.06461580842733383, + -0.06059747189283371, + 0.013639917597174644, + -0.021048925817012787, + -0.037001434713602066, + -0.06798362731933594, + -0.026835445314645767, + -0.04925088584423065, + 0.0297690462321043, + -0.01568690687417984, + -0.06516368687152863, + 0.01666048727929592, + 0.006582893431186676, + -0.01274033635854721, + 0.06781613826751709, + -0.04290403425693512, + 0.08255449682474136, + -0.004797867964953184, + -0.06658245623111725, + -0.0812331810593605, + 0.010463645681738853, + -0.05917628854513168, + 0.0694563165307045, + -1.467907019454978e-33, + 0.0018833465874195099, + 0.016196493059396744, + -0.008189434185624123, + 0.06451419740915298, + -0.0042057582177221775, + 0.010227016173303127, + -0.07996754348278046, + -0.05780430883169174, + -0.08776820451021194, + 0.09950488060712814, + 0.05161099508404732, + -0.013700420968234539, + -0.014163807965815067, + -0.011600998230278492, + 0.010059993714094162, + -0.005782881751656532, + 0.03657658025622368, + 0.007244833279401064, + -0.059031806886196136, + -0.00011282769992249086, + -0.09618576616048813, + 0.06798841059207916, + -0.06356921792030334, + -0.023679791018366814, + -0.003911119420081377, + 0.02565154992043972, + 0.026402156800031662, + -0.010963592678308487, + -0.01208947692066431, + 0.025913525372743607, + 0.010123569518327713, + 0.06984350830316544, + 0.033651743084192276, + 0.05043933913111687, + -0.013881312683224678, + 0.09059921652078629, + -0.09619272500276566, + -0.043968427926301956, + 0.059315361082553864, + 0.07073908299207687, + -0.06580273807048798, + -0.010602063499391079, + 0.03460074961185455, + 0.01982865110039711, + -0.015332823619246483, + 0.06454549729824066, + -0.0614684596657753, + 0.003365797223523259, + -0.010449378751218319, + 0.028843609616160393, + 0.024551093578338623, + -0.0065317777916789055, + -0.02094372734427452, + -0.04132736101746559, + -0.00025448919041082263, + 0.04241801053285599, + -0.03579418361186981, + 0.13134132325649261, + 0.021631289273500443, + 0.008274318650364876, + 0.03886260464787483, + -0.006146756000816822, + -0.006913613062351942, + 0.04865873605012894, + 0.004869137890636921, + -0.005143546964973211, + -0.07901137322187424, + -0.02457285113632679, + 0.015688305720686913, + -0.04183715209364891, + 0.019601235166192055, + 0.09952374547719955, + 0.05346009135246277, + -0.009949457831680775, + 0.013039739802479744, + -0.03335520252585411, + 0.08579942584037781, + 0.006587854120880365, + 0.059718456119298935, + -0.10289894789457321, + -0.1207272857427597, + -0.017125150188803673, + -0.0475817434489727, + 0.026045845821499825, + 0.015376126393675804, + 0.03091036155819893, + 0.004383059684187174, + -0.022343305870890617, + -0.000662438862491399, + 0.0230623297393322, + -0.06924081593751907, + -0.0523652583360672, + -0.06923817098140717, + -0.048911068588495255, + -0.048706505447626114, + 3.284031602891256e-34, + 0.05351410061120987, + 0.0395071804523468, + 0.03198344260454178, + 0.02441345900297165, + -0.04394355043768883, + 0.01152359414845705, + 0.024282004684209824, + 0.006731022149324417, + -0.061109986156225204, + 0.008919138461351395, + 0.07626906037330627, + 0.10792449861764908, + -0.04444650933146477, + -0.004805137403309345, + 0.04414977878332138, + 0.0714920237660408, + -0.048741664737463, + 0.04212694242596626, + -0.09798295795917511, + 0.017149994149804115, + -0.04217689856886864, + -0.0193971935659647, + -0.05864083766937256, + 0.08572939038276672, + -0.0352022685110569, + -0.015115226618945599, + 0.02854316122829914, + 0.12524987757205963, + 0.0110582634806633, + -0.034555573016405106, + 0.0032570131588727236, + 0.020745329558849335, + -0.011342152953147888, + 0.0738227367401123, + -0.04935326799750328, + 0.08118506520986557, + 0.058264393359422684, + 0.004005322232842445, + -0.02001889795064926, + 0.07460949569940567, + -0.048917680978775024, + 0.012329560704529285, + 0.01743924245238304, + -0.004368066322058439, + -0.06841643154621124, + 0.006567939650267363, + 0.0060545471496880054, + -0.007328046020120382, + 0.03500484675168991, + 0.042108092457056046, + -0.05221126601099968, + 0.0005037877708673477, + -0.06911725550889969, + 0.08720577508211136, + -0.03609732165932655, + 0.039044663310050964, + 0.037152618169784546, + 0.036394502967596054, + 0.02054903283715248, + 0.002780638635158539, + -0.016959914937615395, + 0.11379234492778778, + -0.019864892587065697, + -0.035088907927274704, + 0.07050051540136337, + -0.058463141322135925, + 0.014426197856664658, + 0.03028268553316593, + 0.020968064665794373, + -0.00032162523712031543, + 0.07121656835079193, + -0.049715008586645126, + 0.03001377172768116, + -0.0039939871057868, + 0.03074285387992859, + -0.04668281972408295, + 0.06359449774026871, + -0.005095858592540026, + -0.035764411091804504, + 0.0844421312212944, + 0.026266278699040413, + -0.041274700313806534, + -0.009137800894677639, + 0.04491296783089638, + -0.08999554067850113, + 0.08974027633666992, + 0.02851550467312336, + 0.07536228001117706, + 0.0013826581416651607, + -0.12825974822044373, + -0.005183553788810968, + 0.008714207448065281, + 0.07074209302663803, + -0.09070221334695816, + -0.05861932039260864, + -1.5322315860544222e-08, + -0.07872793078422546, + -0.019661450758576393, + -0.015453695319592953, + -0.09453169256448746, + -0.00023788934049662203, + -0.022446248680353165, + -0.06298831105232239, + -0.09093574434518814, + -0.02783675491809845, + 0.003223896026611328, + -0.04381196200847626, + 0.01271863840520382, + -0.003911909181624651, + -0.07834725081920624, + 0.004992885049432516, + 0.03507305309176445, + -0.043708525598049164, + 0.035813964903354645, + -0.04405450075864792, + -0.0335717611014843, + -0.08168798685073853, + 0.018447251990437508, + 0.015387325547635555, + 0.02338767983019352, + 0.010205283761024475, + -0.006360904313623905, + -0.13559702038764954, + -0.037137895822525024, + 0.06567975878715515, + 0.14718934893608093, + 0.056608013808727264, + 0.1062086969614029, + 0.0791621133685112, + -0.05718429386615753, + -0.029233146458864212, + 0.0016740502323955297, + -0.006355637684464455, + -0.023931032046675682, + 0.04064705967903137, + 0.11315180361270905, + 0.0152185233309865, + -0.10807584226131439, + -0.04400797560811043, + -0.014421774074435234, + -0.06023552641272545, + 0.01010570116341114, + 0.06248248741030693, + -0.0577518530189991, + -0.019196728244423866, + -0.039609394967556, + 0.032279063016176224, + -0.07637795805931091, + 0.014504360035061836, + 0.0546741858124733, + -0.02468089386820793, + -0.08278786391019821, + 0.024675467982888222, + 0.1127595603466034, + -0.012960431165993214, + 0.016636420041322708, + 0.026172805577516556, + 0.002827437361702323, + -0.009606648236513138, + -0.024299442768096924 + ], + "selection-inverse-bold||marquis,invert": [ + -0.02716497704386711, + -0.0034197282511740923, + 0.008055397309362888, + 0.09003408253192902, + 0.051140084862709045, + -0.053014881908893585, + 0.066008560359478, + -0.06680446118116379, + 0.024025311693549156, + 0.037315111607313156, + 0.03220105171203613, + 0.0352979376912117, + 0.027515079826116562, + -0.0852455124258995, + -0.04797426238656044, + 0.10221444070339203, + 0.08299195021390915, + 0.02696848101913929, + -0.0003776726662181318, + 0.025560611858963966, + -0.040821854025125504, + 0.013718328438699245, + 0.005955340340733528, + 0.00901124719530344, + -0.02247966267168522, + -0.026787057518959045, + 0.09618226438760757, + 0.05189032107591629, + -0.051521673798561096, + -0.060488179326057434, + -0.010002600960433483, + -0.014755367301404476, + 0.13897433876991272, + -0.00607892032712698, + -0.06423289328813553, + 0.04970340430736542, + 0.029009945690631866, + -0.019350722432136536, + 0.11353000998497009, + 0.03417889028787613, + 0.023315683007240295, + -0.07907240092754364, + -0.007818887010216713, + 0.041899606585502625, + -0.027485106140375137, + -0.07143840938806534, + -0.06465118378400803, + -0.008852316066622734, + 0.057863831520080566, + 0.036500345915555954, + 0.04204461723566055, + 0.027838047593832016, + -0.09167182445526123, + -0.017200633883476257, + -0.039495229721069336, + -0.001206819200888276, + -0.05390332266688347, + -0.059416282922029495, + 0.07559787482023239, + -0.05111775919795036, + -0.0003273382899351418, + 0.025152122601866722, + -0.05308592692017555, + 0.03948153927922249, + 0.03026615083217621, + 0.010481620207428932, + 0.03474872186779976, + -0.06976410746574402, + -0.06759364157915115, + 0.05333344265818596, + 0.0012791581684723496, + -0.026346342638134956, + -0.009647800587117672, + -0.036478836089372635, + -0.014333361759781837, + 0.01843002624809742, + 0.03663308918476105, + -0.0003228322311770171, + 0.035203974694013596, + -0.016111886128783226, + 0.012188022956252098, + -0.026172228157520294, + -0.05155742168426514, + 0.05020210146903992, + 0.0814908891916275, + 0.02143092080950737, + -0.09815549850463867, + -0.017908820882439613, + 0.04574998840689659, + 0.04001829773187637, + -0.007025507744401693, + -0.02885446883738041, + -0.0032475602347403765, + -0.0009629079140722752, + -0.07229986786842346, + 0.02354586124420166, + 0.05205536633729935, + 0.01631818898022175, + -0.024959787726402283, + 0.060320042073726654, + 0.029004966840147972, + 0.06254466623067856, + -0.052018918097019196, + 0.009272415190935135, + -0.12461629509925842, + -0.07041654735803604, + 0.044179029762744904, + 0.01262710615992546, + -0.038367222994565964, + -0.05524847283959389, + -0.019243920221924782, + -0.09599781781435013, + 0.06768616288900375, + -0.012000808492302895, + -0.05976526811718941, + 0.01280877087265253, + 0.002859753090888262, + 0.032625824213027954, + 0.03982289507985115, + -0.0025951655115932226, + 0.004546310752630234, + -0.013322524726390839, + -0.05691179260611534, + -0.032843977212905884, + 0.007923436351120472, + 0.0012048735516145825, + 0.038259878754615784, + -8.995041647900497e-34, + -0.03074771724641323, + 0.06230707839131355, + 0.0335923470556736, + 0.07315865904092789, + -0.056883182376623154, + 0.034889813512563705, + -0.0233695637434721, + -0.06983587145805359, + -0.09249461442232132, + 0.04142323136329651, + 0.04320892319083214, + -0.001868399209342897, + -0.022013280540704727, + 0.018104054033756256, + -0.03342016041278839, + 0.061473798006772995, + 0.03627535328269005, + 0.00845732819288969, + -0.038929905742406845, + -0.03181610628962517, + -0.07462410628795624, + 0.09199140965938568, + -0.04944209009408951, + -0.04232043772935867, + -0.029197752475738525, + -0.051056135445833206, + 0.011665099300444126, + -0.03212340176105499, + -0.02867536060512066, + 0.01843094639480114, + -0.010806008242070675, + 0.08161246031522751, + 0.010389702394604683, + 0.035798218101263046, + -0.011288991197943687, + 0.1332048624753952, + -0.044162798672914505, + -0.042503997683525085, + 0.07772672176361084, + 0.11141941696405411, + -0.06366889923810959, + 0.03172364830970764, + 0.04775383323431015, + -0.036237217485904694, + -0.040362972766160965, + 0.0650096908211708, + -0.051198191940784454, + -0.017085393890738487, + 0.05073552206158638, + 0.012538968585431576, + 0.0017726257210597396, + -0.017463689669966698, + -0.03607450798153877, + -0.04599207639694214, + 0.006973735056817532, + 0.03280281648039818, + -0.007924014702439308, + 0.12182319909334183, + 0.046553727239370346, + 0.0003393437364138663, + -0.004776071757078171, + -0.017201310023665428, + -0.011883409693837166, + 0.04393252357840538, + -0.03684050217270851, + -0.0049721417017281055, + -0.03871319442987442, + -0.08660756796598434, + -0.007404147181659937, + -0.00352714816108346, + 0.02729429118335247, + 0.05630097538232803, + -0.001656673732213676, + -0.0021648898255079985, + -0.006300616078078747, + 0.013351633213460445, + 0.09157934039831161, + -0.047141365706920624, + 0.048433855175971985, + -0.12476562708616257, + -0.13074548542499542, + -0.005800329148769379, + -0.06260281801223755, + 0.044433146715164185, + 0.046804510056972504, + 0.0039599305018782616, + -0.007361640688031912, + -0.054088983684778214, + -0.00978558324277401, + 0.04827152565121651, + -0.0701138824224472, + -0.04607153683900833, + -0.09556566178798676, + -0.03322048485279083, + 0.00886237807571888, + -5.743875902785523e-34, + 0.02687733620405197, + 0.005010884255170822, + 0.02287604846060276, + -0.02130214124917984, + -0.08794596046209335, + -7.244817970786244e-05, + 0.020218215882778168, + 0.007341995369642973, + -0.04081892594695091, + -0.05373281240463257, + 0.07981666177511215, + 0.06786936521530151, + -0.015296908095479012, + -0.04066220670938492, + 0.03781873360276222, + 0.04424232989549637, + 0.0007237786194309592, + 0.0011857106583192945, + -0.06674088537693024, + -0.03062569722533226, + -0.023846372961997986, + 0.026383521035313606, + 0.01960049383342266, + 0.10740838944911957, + -0.051840074360370636, + 0.016536790877580643, + 0.0061577437445521355, + 0.1239013597369194, + 0.03498174622654915, + -0.01963796652853489, + -0.017558634281158447, + 0.024643709883093834, + 0.04990093782544136, + 0.08196619153022766, + -0.04622090607881546, + 0.1520477533340454, + 0.058947280049324036, + -0.007779340259730816, + -0.018044471740722656, + 0.06319886445999146, + -0.04590070620179176, + 0.008439389057457447, + 0.008794081397354603, + -0.0001450338604627177, + -0.020199215039610863, + -0.04538002237677574, + 0.02828855626285076, + -0.0069285668432712555, + 0.08385463804006577, + 0.03726309537887573, + -0.03892815485596657, + -0.022421926259994507, + -0.05480288714170456, + 0.09591122716665268, + -0.08279087394475937, + -0.016241980716586113, + 0.0600397065281868, + 0.037155210971832275, + 0.08663533627986908, + 0.010863577015697956, + -0.0538301058113575, + 0.14966550469398499, + 0.04420948028564453, + -0.04215191304683685, + -0.0015308348229154944, + -0.041161324828863144, + 0.05019652470946312, + 0.020992884412407875, + 0.02310345694422722, + -0.02091311477124691, + 0.043134141713380814, + -0.06343761086463928, + 0.045311491936445236, + -0.0243550855666399, + 0.05210418999195099, + -0.07723037153482437, + 0.027100883424282074, + 0.03886110335588455, + -0.036355819553136826, + 0.06151645630598068, + 0.019907288253307343, + 0.024449465796351433, + -0.012888562865555286, + 0.0656653419137001, + -0.11982923746109009, + 0.014722556807100773, + 0.02681092359125614, + 0.030493464320898056, + 0.0016016565496101975, + -0.09671472758054733, + 0.002706702798604965, + 0.007617648225277662, + 0.037642206996679306, + -0.10417547821998596, + -0.012932835146784782, + -1.6040500483427422e-08, + -0.07066910713911057, + -0.03702016547322273, + 0.028191637247800827, + -0.051909465342760086, + 0.005811889190226793, + -0.015074186958372593, + -0.004584198817610741, + -0.07176516205072403, + -0.017124632373452187, + -0.017222074791789055, + -0.010475828312337399, + 0.05112101882696152, + 0.0021503225434571505, + -0.10950025171041489, + -0.018452053889632225, + 0.03151506930589676, + -0.01592688262462616, + 0.008410327136516571, + -0.04505964741110802, + -0.05048428848385811, + -0.04656939208507538, + -0.0011977548711001873, + 0.03861851617693901, + -0.03639551252126694, + 0.04877207428216934, + -0.0248440969735384, + -0.14213131368160248, + -0.0862959623336792, + 0.05432189628481865, + 0.12576653063297272, + 0.010961854830384254, + 0.07426496595144272, + 0.07515092194080353, + 0.007616809103637934, + -0.07080818712711334, + -0.02068631909787655, + 0.010597656480967999, + -0.03371302783489227, + 0.023019803687930107, + 0.06667272001504898, + -0.06307483464479446, + -0.07948242872953415, + -0.05785985663533211, + -0.034197255969047546, + -0.06151783466339111, + 0.011035945266485214, + 0.05142633244395256, + -0.013845636509358883, + -0.014394748955965042, + -0.05264927074313164, + 0.03441695123910904, + -0.06777210533618927, + 0.03767693415284157, + 0.022095179185271263, + -0.039524808526039124, + -0.10213025659322739, + -0.03332213684916496, + 0.15243758261203766, + -0.01376855093985796, + 0.02198987454175949, + 0.04102369397878647, + 0.01341322809457779, + 0.026166465133428574, + -0.048952121287584305 + ], + "selection-plus-bold||marquis,add": [ + -0.019459817558526993, + -0.03132069855928421, + -0.021445060148835182, + 0.10959193110466003, + 0.06426245719194412, + 0.04817450791597366, + 0.06336764246225357, + -0.07241405546665192, + 0.020929066464304924, + 0.017264826223254204, + 0.046045370399951935, + 0.01745838113129139, + -0.008172869682312012, + -0.10962928086519241, + -0.011122672818601131, + 0.04792298376560211, + 0.04670573025941849, + 0.03986181318759918, + -0.011207766830921173, + -0.03277038037776947, + -0.011944822035729885, + -0.0021167732775211334, + 0.042989298701286316, + 0.03174271434545517, + -0.016797155141830444, + -0.010320178233087063, + 0.0719330832362175, + 0.05417824909090996, + -0.001731164287775755, + -0.06572071462869644, + -0.03172032907605171, + -0.011162406764924526, + 0.10986670851707458, + 0.003441780572757125, + -0.025577928870916367, + -0.0009541200706735253, + -0.015500703826546669, + 0.027818355709314346, + 0.07339327782392502, + 0.0025816811248660088, + 0.02873004600405693, + -0.122811459004879, + -0.012480996549129486, + 0.07858237624168396, + -0.09449097514152527, + -0.0927901342511177, + -0.04166316241025925, + -0.05937107652425766, + 0.08011876046657562, + 0.04849106818437576, + 0.06377055495977402, + -0.013471951708197594, + -0.06925862282514572, + 0.002876292448490858, + -0.04006378725171089, + -0.021031424403190613, + -0.09937130659818649, + -0.03348017483949661, + 0.04722139984369278, + -0.0834629088640213, + -0.023220928385853767, + 0.014797371812164783, + 0.013804196380078793, + 0.03576306998729706, + 0.015938086435198784, + 0.019118793308734894, + -0.022713225334882736, + -0.013121550902724266, + -0.07368943840265274, + 0.06656601279973984, + 0.0563013032078743, + -0.002988403895869851, + 0.018702717497944832, + -0.0158846378326416, + -0.016658984124660492, + 0.020389916375279427, + 0.04076313599944115, + 0.002077273325994611, + 0.03221919760107994, + 0.006237083114683628, + -0.05278313532471657, + 0.0009400055860169232, + -0.057393115013837814, + 0.08317514508962631, + 0.06299120932817459, + 0.04208197072148323, + -0.08127768337726593, + -0.06300631165504456, + 0.022653011605143547, + 0.004682569298893213, + 0.025517908856272697, + -0.004470047540962696, + -0.022319097071886063, + 0.028761794790625572, + -0.09447561949491501, + 0.02819860354065895, + 0.024807516485452652, + 0.0024286173284053802, + -0.09590467065572739, + 0.035527896136045456, + 0.004276844672858715, + 0.03715207800269127, + -0.048218559473752975, + 0.05539339780807495, + -0.05938627943396568, + -0.07240710407495499, + 0.022710446268320084, + -0.038489215075969696, + -0.050098370760679245, + -0.0375298447906971, + -0.016267063096165657, + -0.03652297705411911, + 0.03714959695935249, + -0.04111068323254585, + -0.07571005076169968, + 0.040760450065135956, + 0.004968817345798016, + -0.008953854441642761, + 0.07295654714107513, + -0.0571158267557621, + 0.09016282856464386, + -0.015021655708551407, + -0.06493397057056427, + -0.0730995461344719, + -0.030624616891145706, + -0.00035869795829057693, + 0.042844176292419434, + -2.8064451918012016e-33, + -0.018877899274230003, + 0.04383242130279541, + -0.014913025312125683, + 0.12068463116884232, + -0.027469588443636894, + 0.030647030100226402, + -0.08825664967298508, + -0.03978218883275986, + -0.11952334642410278, + 0.03860040754079819, + 0.06204738840460777, + -0.044124435633420944, + -0.02827678807079792, + 0.030088763684034348, + -0.002531172474846244, + 0.03060421347618103, + 0.04608101025223732, + -0.010402833111584187, + -0.003625250421464443, + 0.02436739020049572, + -0.10747938603162766, + 0.08729087561368942, + -0.019947735592722893, + -0.004718915559351444, + -0.0011670092353597283, + 0.021619001403450966, + 0.027484171092510223, + -0.015732714906334877, + -0.009229199960827827, + 0.03153618052601814, + 0.015671513974666595, + 0.0337885320186615, + -0.021034816280007362, + 0.05911942571401596, + 0.014771968126296997, + 0.1290612518787384, + -0.06687965244054794, + -0.029067765921354294, + 0.09122998267412186, + 0.06481633335351944, + -0.03689219057559967, + -0.012195845134556293, + 0.02444233000278473, + -0.0445261225104332, + -0.027528101578354836, + 0.07642094790935516, + -0.050206005573272705, + -0.029432252049446106, + 0.02072027511894703, + -0.020431281998753548, + 0.003979470115154982, + 0.0011845567496493459, + -0.04512641206383705, + -0.012738135643303394, + -0.05223926529288292, + 0.03752601891756058, + -0.06943724304437637, + 0.11315116286277771, + 0.026341279968619347, + 0.016338488087058067, + 0.0033714037854224443, + -0.004722778685390949, + 0.02434420771896839, + 0.06128545105457306, + 0.0005059057730250061, + -0.0326608270406723, + -0.06414468586444855, + -0.01620747707784176, + 0.0507051944732666, + -0.052108701318502426, + 0.022813480347394943, + 0.046959102153778076, + 0.05357266589999199, + 0.019381189718842506, + 0.029709475114941597, + -0.02396434172987938, + 0.08410835266113281, + -0.03513656556606293, + 0.0867733582854271, + -0.1005060002207756, + -0.09375344961881638, + -0.06770569086074829, + -0.05458909273147583, + 0.06522175669670105, + 0.06451728940010071, + 0.02308574691414833, + -0.0442500039935112, + -0.0035522645339369774, + 0.0406612828373909, + 0.016174256801605225, + -0.07226579636335373, + -0.05866630747914314, + -0.07001117616891861, + -0.05214560404419899, + -0.05739631503820419, + 5.550820929883377e-35, + 0.03553768992424011, + -0.01547758188098669, + 0.04442232847213745, + -0.013243911787867546, + -0.0628368929028511, + 0.019047850742936134, + 0.00141042098402977, + -0.03348127752542496, + -0.03185417503118515, + -0.04456682503223419, + 0.09126365929841995, + 0.07367618381977081, + -0.057584863156080246, + -0.052073922008275986, + 0.026519764214754105, + 0.07964053004980087, + -0.0729927271604538, + 0.03866963088512421, + -0.06893710047006607, + -0.009751553647220135, + -0.01546013355255127, + -0.03292795270681381, + -0.017179936170578003, + 0.08625487983226776, + -0.018285218626260757, + -0.012082611210644245, + 7.179646490840241e-05, + 0.09607184678316116, + 0.006446147337555885, + -0.03747313469648361, + 0.03167583793401718, + 0.045823220163583755, + -0.010751667432487011, + 0.08506634086370468, + -0.024785706773400307, + 0.06903703510761261, + 0.08693882077932358, + 0.016846083104610443, + 0.010077567771077156, + 0.08752115070819855, + -0.032294951379299164, + -0.021739447489380836, + 0.025680480524897575, + 0.024343132972717285, + -0.006620415486395359, + 0.0010696320096030831, + 0.029489673674106598, + -0.02993549033999443, + 0.04458365589380264, + 0.06454721093177795, + -0.007589286658912897, + -0.022458551451563835, + -0.1069541722536087, + 0.07313396781682968, + -0.04015106335282326, + -0.007913561537861824, + 0.054451897740364075, + 0.012106810696423054, + 0.06628400087356567, + -0.021315813064575195, + -0.039272911846637726, + 0.1325792670249939, + 0.008874909020960331, + -0.07211196422576904, + 0.05873476713895798, + -0.05578179657459259, + 0.01450718380510807, + 0.007702721282839775, + 0.0067983996123075485, + -0.019704004749655724, + 0.05156644433736801, + -0.05658778175711632, + 0.02298864535987377, + -0.02845156006515026, + 0.026313025504350662, + -0.06512834876775742, + 0.04494285210967064, + 0.018732143566012383, + -0.013855033554136753, + 0.046691231429576874, + 0.019929055124521255, + -0.01582728698849678, + 0.010069928131997585, + 0.02275271713733673, + -0.06950552761554718, + 0.03561766818165779, + 0.026613881811499596, + 0.10096278786659241, + -0.003609230974689126, + -0.10727360099554062, + 0.006279651075601578, + 0.011762912385165691, + 0.010879840701818466, + -0.08177166432142258, + -0.11136874556541443, + -1.652461989465337e-08, + -0.04178474098443985, + -0.06169493868947029, + -0.035757433623075485, + -0.11246517300605774, + 0.029725849628448486, + -0.05057178810238838, + -0.07582183182239532, + -0.051390498876571655, + -0.025809332728385925, + -0.007001974154263735, + 0.013565847650170326, + 0.03547787293791771, + -0.003789280541241169, + -0.09438397735357285, + -0.020617356523871422, + 0.029257453978061676, + -0.007166007999330759, + 0.044546157121658325, + -0.03846760466694832, + -0.04692590609192848, + -0.05684080719947815, + 0.03949703648686409, + 0.02118942141532898, + 0.010021224617958069, + 0.019081370905041695, + -0.028949981555342674, + -0.13973817229270935, + -0.08545464277267456, + 0.04600564017891884, + 0.1477411538362503, + 0.0716681033372879, + 0.0861503854393959, + 0.06425914168357849, + -0.0027579644229263067, + -0.027157621458172798, + -0.02397991716861725, + 0.01756143942475319, + -0.05232387036085129, + 0.05514950305223465, + 0.09224707633256912, + -0.029168104752898216, + -0.07683679461479187, + -0.03227118402719498, + -0.016205299645662308, + -0.025061490014195442, + -0.005714389029890299, + 0.04719269648194313, + -0.04998501390218735, + -0.03761965036392212, + -0.038517218083143234, + 0.03938230872154236, + -0.040528036653995514, + 0.08592823892831802, + -0.004317697137594223, + -0.051195740699768066, + -0.06971409171819687, + 0.014368479140102863, + 0.13339711725711823, + 0.005564251448959112, + 0.014723998494446278, + 0.04905826970934868, + -0.042372629046440125, + 0.022228248417377472, + -0.040167830884456635 + ], + "selection-slash-bold||marquis,unselect": [ + -0.030993327498435974, + -0.024261806160211563, + -0.006120962556451559, + 0.11638034880161285, + 0.04846672713756561, + -0.02221723459661007, + 0.020744184032082558, + -0.09185145050287247, + 0.03831319138407707, + 0.011493682861328125, + 0.03092348948121071, + 0.01609247736632824, + -0.016345258802175522, + -0.08799026161432266, + -0.03866396099328995, + 0.04786143824458122, + 0.07791880518198013, + 0.047418829053640366, + -0.010996871627867222, + 0.015655532479286194, + -0.005494649056345224, + 0.06258974969387054, + 0.04037462919950485, + 0.022554516792297363, + 0.009216899052262306, + -0.01622125506401062, + 0.10942530632019043, + 0.0357523113489151, + -0.03708488121628761, + -0.10008588433265686, + 0.004348112270236015, + -0.029718870297074318, + 0.08889303356409073, + -0.003908083308488131, + 0.0062789348885416985, + 0.038724660873413086, + 0.02368774637579918, + -0.025301938876509666, + 0.08511362224817276, + 0.0008233578992076218, + 0.024590348824858665, + -0.11547017842531204, + -0.06874363124370575, + 0.025195281952619553, + -0.054685160517692566, + -0.08097514510154724, + -0.02631162293255329, + -0.051994070410728455, + 0.020899470895528793, + 0.03644951432943344, + 0.03639409318566322, + 0.004766857251524925, + -0.050657548010349274, + 0.009355447255074978, + -0.010965132154524326, + -0.017946986481547356, + -0.0631151795387268, + -0.03627985715866089, + 0.10323379188776016, + -0.05941760912537575, + -0.04522161930799484, + 0.02964707277715206, + -0.019519897177815437, + 0.013215969316661358, + 0.02052081562578678, + 0.025278102606534958, + 0.011533018201589584, + -0.04405084252357483, + -0.0581464059650898, + 0.04553402215242386, + 0.03051549196243286, + -0.017643984407186508, + 0.00960205402225256, + -0.036617495119571686, + -0.008584501221776009, + 0.034070935100317, + 0.021141313016414642, + 0.003496649209409952, + 0.029377365484833717, + 0.011139776557683945, + -0.014682978391647339, + 0.006179724354296923, + -0.03877004235982895, + 0.10540495812892914, + 0.04762790724635124, + 0.0512877032160759, + -0.11016175895929337, + -0.04749803990125656, + 0.03667299821972847, + -0.010631893761456013, + -0.01254050713032484, + -0.032213564962148666, + 0.039216507226228714, + 0.024092864245176315, + -0.08307196199893951, + 0.017549894750118256, + 0.030520092695951462, + 0.01788363978266716, + -0.07430674135684967, + 0.026479670777916908, + 0.01920711249113083, + 0.05577032268047333, + -0.06651749461889267, + 0.026322398334741592, + -0.09950517863035202, + -0.04139038547873497, + 0.016947908326983452, + -0.032350607216358185, + -0.023507358506321907, + -0.024957528337836266, + -0.029477188363671303, + -0.058245569467544556, + -0.013479342684149742, + -0.005507538095116615, + -0.06684412062168121, + 0.014730402268469334, + -0.00640611257404089, + -0.03938744589686394, + 0.07341243326663971, + 0.024496592581272125, + 0.03748377040028572, + -0.04017777368426323, + -0.10381831973791122, + -0.029240647330880165, + -0.02082238160073757, + 0.012467221356928349, + 0.0698971077799797, + -2.5791918280735213e-33, + -0.010265037417411804, + 0.030617237091064453, + 0.0016625018324702978, + 0.05786473676562309, + -0.024630574509501457, + 0.023674895986914635, + -0.0650433748960495, + -0.02603328786790371, + -0.07849860191345215, + 0.07757434993982315, + 0.05564926192164421, + -0.04330989345908165, + 0.005753875244408846, + -0.0004889991832897067, + -0.010432761162519455, + 0.03803844377398491, + 0.026154775172472, + -0.020004715770483017, + -0.0472557507455349, + 0.01812959648668766, + -0.08500616997480392, + 0.14282989501953125, + -0.041117191314697266, + -0.042151112109422684, + -0.03118782490491867, + -0.02173790894448757, + -0.014964987523853779, + -0.005293285474181175, + 0.025739451870322227, + 0.04809865728020668, + 0.0010523124365136027, + 0.058114148676395416, + -0.00200876547023654, + 0.05046343430876732, + -0.00908291433006525, + 0.17757470905780792, + -0.056490786373615265, + -0.008617454208433628, + 0.04869021847844124, + 0.07847188413143158, + -0.04928964748978615, + -0.02310328371822834, + 0.014079209417104721, + -0.008894449099898338, + -0.010327517986297607, + 0.03768852353096008, + -0.08154661953449249, + -0.06569980084896088, + 0.023345667868852615, + -0.018174797296524048, + 0.027570677921175957, + 0.018296992406249046, + 0.030447501689195633, + -0.024167422205209732, + -0.02049896866083145, + 8.811947191134095e-05, + -0.029944507405161858, + 0.11247050017118454, + 0.009175688959658146, + 0.004878766369074583, + -0.035779934376478195, + 1.021311527438229e-05, + 0.0036765204276889563, + 0.04941854253411293, + -0.033097561448812485, + -0.006437853444367647, + -0.07429774105548859, + 0.018313994631171227, + -0.012027805671095848, + -0.049846187233924866, + -0.008717271499335766, + 0.06828844547271729, + 0.06867926567792892, + -0.04982890188694, + -0.03750927001237869, + -0.02516927756369114, + 0.036850571632385254, + -0.04531022533774376, + 0.1000378355383873, + -0.07422240078449249, + -0.0984075739979744, + -0.036346446722745895, + -0.04905502125620842, + 0.06360653042793274, + 0.08781056106090546, + -0.014764966443181038, + -0.033528201282024384, + 0.001146069262176752, + 0.023616621270775795, + 0.030625322833657265, + -0.023204917088150978, + -0.03978443890810013, + -0.09068968892097473, + -0.08406925946474075, + -0.009837659075856209, + -8.92370383448497e-34, + 0.11004459112882614, + 0.036746781319379807, + 0.051972419023513794, + 0.028031475841999054, + -0.08998080343008041, + -0.019188031554222107, + -0.019696518778800964, + 0.01014830730855465, + -0.028321491554379463, + -0.043285638093948364, + 0.061574891209602356, + 0.08692406862974167, + -0.0023959544487297535, + -0.0848696157336235, + 0.06935977935791016, + 0.07814030349254608, + -0.06126550957560539, + 0.0049646045081317425, + -0.1011756956577301, + 0.01238400861620903, + -0.03048821911215782, + -0.053467441350221634, + 0.0018048671772703528, + 0.07835249602794647, + -0.04053723067045212, + -0.023159930482506752, + 0.030131595209240913, + 0.08003166317939758, + 0.04707136005163193, + -0.005241753999143839, + 0.03314109146595001, + 0.0546124093234539, + -0.030830558389425278, + 0.04194578155875206, + -0.04870278388261795, + 0.09908361732959747, + -0.017883388325572014, + 0.04721296206116676, + 0.025632701814174652, + 0.05586406961083412, + -0.033777590841054916, + 0.0025903761852532625, + -0.0008750074193812907, + 0.035307470709085464, + -0.006801488343626261, + -0.0015826676972210407, + 0.005620578303933144, + -0.008155734278261662, + 0.0751066654920578, + 0.07881392538547516, + -0.02603239379823208, + 0.006774092558771372, + -0.0681891217827797, + 0.08185096830129623, + -0.039270102977752686, + 0.016242308542132378, + 0.0049258070066571236, + 0.03912388160824776, + 0.01541848387569189, + 0.034025561064481735, + -0.0036573640536516905, + 0.15309251844882965, + -0.03166433423757553, + 0.0029624970629811287, + 0.05807354301214218, + -0.08863986283540726, + 0.016295550391077995, + 0.059383418411016464, + 0.007146024610847235, + -0.049894798547029495, + 0.048379719257354736, + -0.04324987158179283, + 0.03792022913694382, + -0.043413564562797546, + 0.0485052652657032, + -0.07749491184949875, + 0.007994754239916801, + 0.03539824113249779, + -0.015380444005131721, + 0.0670151561498642, + 0.038349416106939316, + 0.0036939068231731653, + 0.008709331043064594, + 0.02056313492357731, + -0.0805489793419838, + 0.021562989801168442, + -0.0021845167502760887, + 0.079415462911129, + -0.017705583944916725, + -0.15296724438667297, + 0.02696998417377472, + -0.059749603271484375, + 0.06458082050085068, + -0.08764009922742844, + -0.08041244745254517, + -1.7285046283177508e-08, + -0.0755200982093811, + -0.04828323796391487, + -0.008049135096371174, + -0.06810375303030014, + 0.005231013521552086, + -0.020674528554081917, + -0.08966518193483353, + -0.01793588139116764, + -0.005340711213648319, + 0.04090555012226105, + 0.014540626667439938, + 0.02687242440879345, + -0.026622772216796875, + -0.09400448203086853, + -0.01101785060018301, + 0.02482902631163597, + 0.01655871607363224, + 0.05604913830757141, + -0.030094793066382408, + -0.014109224081039429, + -0.08860553056001663, + 0.0008659797022119164, + 0.05100781098008156, + 0.013624163344502449, + 0.0406360886991024, + -0.05927569046616554, + -0.16557863354682922, + -0.07665690034627914, + 0.06338626146316528, + 0.13094541430473328, + 0.02364150993525982, + 0.06233521178364754, + 0.05815858766436577, + -0.022632567211985588, + -0.039176095277071, + -0.014260401017963886, + 0.03491505980491638, + -0.03542494401335716, + 0.0809837281703949, + 0.06485195457935333, + -0.024901149794459343, + -0.08312314748764038, + -0.06458360701799393, + -0.02508622035384178, + -0.10390560328960419, + -0.018267078325152397, + 0.0701926127076149, + -0.019247448071837425, + -0.011548004113137722, + -0.014573924243450165, + -0.003789289155974984, + -0.00441566901281476, + -0.002512595383450389, + 0.00870609749108553, + -0.001380962785333395, + -0.0828566625714302, + 0.009259256534278393, + 0.10833114385604858, + -0.049721136689186096, + -0.008148281835019588, + 0.09283297508955002, + -0.008091744966804981, + -0.02710067853331566, + -0.044692374765872955 + ], + "shapes-bold||geometry,square,circle,triangle": [ + 0.06333204358816147, + -0.008168940432369709, + -0.04350747913122177, + 0.06604866683483124, + -0.01879895105957985, + -0.04678284749388695, + 0.0038753808476030827, + -0.049188897013664246, + 0.047837596386671066, + -0.05928735062479973, + -0.0123565923422575, + -0.0012348834425210953, + 0.05626239255070686, + -0.012997356243431568, + 0.06175454705953598, + -0.010637466795742512, + 0.0030764229595661163, + 0.011348608881235123, + 0.005992164835333824, + 0.020171664655208588, + -0.009851290844380856, + -0.012990856543183327, + 0.01621955819427967, + 0.07062806189060211, + 0.00862918421626091, + 0.02774423360824585, + 0.10445151478052139, + -0.029052602127194405, + 0.022269723936915398, + -0.08514491468667984, + -0.030701329931616783, + -0.021258121356368065, + 0.0848376601934433, + -0.010904382914304733, + -0.03236009553074837, + -0.029940694570541382, + -0.05744241550564766, + 0.04813940078020096, + 0.03399910032749176, + 0.03913763165473938, + -0.009214630350470543, + -0.06130477041006088, + 0.08700863271951675, + 0.039129532873630524, + -0.055588047951459885, + 0.02829141542315483, + -0.09099814295768738, + 0.015608496963977814, + 0.004082532599568367, + -0.058303385972976685, + -0.03596009686589241, + -0.13077916204929352, + -0.17550630867481232, + -0.042455583810806274, + 0.05240953341126442, + -0.00451751658692956, + -0.05648191273212433, + -0.016386108472943306, + 0.0787060484290123, + -0.06951252371072769, + 0.06256872415542603, + 0.0034875390119850636, + 0.05640166625380516, + 0.04652542248368263, + -0.04719961807131767, + 0.06693951785564423, + 0.007653133478015661, + -0.02326660417020321, + -0.02093123458325863, + -0.01823469251394272, + 0.03516911342740059, + 0.08409275114536285, + -0.037380021065473557, + -0.08394782245159149, + -0.005222857929766178, + -0.015865229070186615, + 0.012079437263309956, + 0.032360922545194626, + -0.06854353100061417, + -0.07385457307100296, + -0.14442124962806702, + -0.03393784910440445, + -0.0031987610273063183, + 0.024198491126298904, + 0.00973800104111433, + 0.11691343039274216, + -0.06167354807257652, + -0.1252891719341278, + -0.046484027057886124, + -0.03402673080563545, + 0.0008667853544466197, + 0.07722024619579315, + -0.05545753613114357, + 0.04577455297112465, + -0.08735435456037521, + 0.001247829175554216, + 0.05826270580291748, + -0.011046499945223331, + -0.052942533046007156, + 0.06827984005212784, + 0.10863969475030899, + -0.0018522210884839296, + 0.06300614029169083, + -0.005946220830082893, + 0.0010515194153413177, + 0.009735562838613987, + 0.03985049948096275, + -0.05381712317466736, + 0.06717649847269058, + 0.06361327320337296, + -0.010516606271266937, + -0.08918929100036621, + -0.00649383245036006, + -0.02452312968671322, + -0.08101697266101837, + -0.02319936826825142, + -0.07496757805347443, + -0.04351935163140297, + 0.10493865609169006, + 0.045220304280519485, + 0.015395562164485455, + 0.029382510110735893, + -0.018941055983304977, + -0.01452645380049944, + -0.00017294583085458726, + 0.050811223685741425, + -0.008583917282521725, + -2.578845240911021e-33, + 0.015173957683146, + 0.05466427654027939, + 0.006356635596603155, + 0.08547236770391464, + -0.009435449726879597, + -0.03449311852455139, + -0.003179804654791951, + -0.08507131785154343, + 0.0773184671998024, + 0.02762542851269245, + -0.040487829595804214, + 0.024115104228258133, + -0.018265405669808388, + 0.033651940524578094, + 0.11817649751901627, + -0.05215084180235863, + 0.05814588814973831, + 0.010101839900016785, + -0.1301540732383728, + 0.02161828987300396, + -0.028984781354665756, + 0.008525487966835499, + -0.07623671740293503, + -0.008498375304043293, + -0.05856729671359062, + 0.028364824131131172, + 0.024490587413311005, + 0.05033122003078461, + -0.07046215236186981, + 0.04637666046619415, + 0.04521528631448746, + -0.0019703104626387358, + 0.01296717394143343, + 0.027550840750336647, + -0.01879918947815895, + 0.016158612444996834, + -0.028312990441918373, + 0.026832785457372665, + 0.017279062420129776, + -0.04708857089281082, + -0.0027337537612766027, + -0.03096630796790123, + -0.007123173680156469, + 0.020219122990965843, + 0.025149043649435043, + 0.11176406592130661, + -0.0012532374821603298, + -0.06799640506505966, + -0.03308967500925064, + -0.03090990148484707, + -0.011182841844856739, + -0.015563811175525188, + 0.013633796945214272, + 0.011640929616987705, + 0.06112224608659744, + -0.02873191609978676, + -0.06348646432161331, + 0.05976230278611183, + -0.0335562638938427, + 0.031008245423436165, + 0.03766874223947525, + 0.04551621899008751, + 0.004424752201884985, + -0.05015410855412483, + -0.12100251019001007, + 0.025743624195456505, + -0.06144893541932106, + 0.017846615985035896, + 0.04739435762166977, + -0.011868173256516457, + 0.05231378600001335, + 0.051239948719739914, + 0.036073703318834305, + 0.04914742708206177, + -0.018164677545428276, + 0.04392773658037186, + -0.010532216168940067, + -0.0009545991779305041, + 0.03420808166265488, + -0.019967488944530487, + -0.0627363920211792, + 0.011498061940073967, + -0.05807414650917053, + -0.06416334956884384, + 0.004039503633975983, + -0.023503392934799194, + 0.06311402469873428, + -0.07625697553157806, + -0.001014724955894053, + 0.05338682606816292, + -0.107044517993927, + -0.0012853041989728808, + 0.03191765025258064, + -0.00912302453070879, + -0.09931070357561111, + 5.85347858279646e-35, + -0.05465494468808174, + 0.053663142025470734, + -0.03663891181349754, + -0.052417099475860596, + -0.03229714557528496, + 0.045087240636348724, + -0.024787278845906258, + -0.023107556626200676, + -0.053088121116161346, + 0.00732258940115571, + -0.05559889227151871, + -0.029741201549768448, + -0.033330973237752914, + -0.13187837600708008, + -0.016824563965201378, + 0.0005816203192807734, + 0.019595924764871597, + -0.008571202866733074, + -0.09702888131141663, + -0.02673225849866867, + -0.06814101338386536, + -0.027358781546354294, + -0.061214592307806015, + 0.008148211054503918, + -0.053624555468559265, + 0.08548016101121902, + -0.035634491592645645, + -0.04263048619031906, + -0.03407212346792221, + 0.0354597344994545, + -0.059225473552942276, + -0.0820101946592331, + 0.06157069280743599, + 0.07858149707317352, + -0.09079404920339584, + -0.050320617854595184, + 0.036606304347515106, + -0.06199752539396286, + 0.05655062571167946, + -0.046709634363651276, + 0.006288307718932629, + -0.02466893196105957, + 0.03102278709411621, + 0.10053399205207825, + -0.027431828901171684, + 0.009867353364825249, + 0.079939104616642, + -0.04658602923154831, + -0.06054525077342987, + -0.011806558817625046, + -0.006049761548638344, + -0.012466846033930779, + 0.05614176765084267, + 0.032184284180402756, + -0.010052728466689587, + -0.011592810973525047, + -0.011060995049774647, + 0.045266490429639816, + 0.016183655709028244, + 0.06641598790884018, + -0.03891129419207573, + 0.03301173448562622, + -0.028188981115818024, + 0.09183160960674286, + 0.030150553211569786, + -0.0008696890436112881, + 0.055169641971588135, + -0.03966629132628441, + 0.004532049875706434, + 0.07061797380447388, + 0.01840922050178051, + 0.06558483093976974, + -0.03003886342048645, + 0.03182327374815941, + -0.0037580092903226614, + -0.020700233057141304, + 0.006374432239681482, + 0.01989782229065895, + -0.061180245131254196, + 0.07241950184106827, + -0.01045386865735054, + 0.006171813700348139, + 0.007009486202150583, + 0.06860458105802536, + -0.009991892613470554, + 0.008068971335887909, + 0.02684140019118786, + 0.0023110751062631607, + 0.004398692864924669, + 0.026405025273561478, + -0.06443791091442108, + 0.0857132151722908, + -0.0341455452144146, + 0.059833627194166183, + 0.05820077285170555, + -1.7936736540491438e-08, + -0.013054699636995792, + -0.003908101934939623, + -0.03277876600623131, + -0.03544116020202637, + 0.020120497792959213, + -0.04920803755521774, + -0.03324759006500244, + -0.046619024127721786, + -0.13009847700595856, + -0.0092371366918087, + -0.0332050621509552, + 0.04789881035685539, + -0.10346627980470657, + 0.005926091689616442, + 0.01978691853582859, + 0.00586495827883482, + 0.03686140477657318, + 0.0654715895652771, + -0.0013537175254896283, + -0.02560979127883911, + 0.010480176657438278, + 0.007330403197556734, + 0.05152018368244171, + 0.011256828904151917, + 0.009613532572984695, + 0.00933078397065401, + -0.012753131799399853, + 0.03939291834831238, + 0.08208132535219193, + 0.061468273401260376, + 0.026617249473929405, + 0.023304950445890427, + 0.032817091792821884, + 0.027082279324531555, + -0.06266402453184128, + -0.10032987594604492, + -0.032914772629737854, + 0.009919832460582256, + -0.05931216478347778, + 0.13702601194381714, + -0.006674875505268574, + -0.025676140561699867, + 0.04967053234577179, + -0.04931100830435753, + 0.05484389886260033, + 0.07729458808898926, + 0.056222472339868546, + -0.0025204201228916645, + -0.07485160231590271, + -0.04119157791137695, + -0.09345048666000366, + 0.016817299649119377, + 0.04817906767129898, + 0.1182386577129364, + -0.05037836357951164, + -0.07075013965368271, + 0.02378740720450878, + 0.09778542816638947, + -0.0024654814042150974, + 0.03275541961193085, + 0.1060066670179367, + 0.04740866646170616, + 0.026968449354171753, + -0.025397399440407753 + ], + "share-bold||send to,export,arrows": [ + 0.01875179074704647, + -0.07692082226276398, + -0.031157290562987328, + 0.12454582005739212, + 0.06942006200551987, + -0.002933390438556671, + 0.042115356773138046, + -0.07143734395503998, + 0.00950520671904087, + -0.003983435221016407, + -0.015224958769977093, + 0.06254400312900543, + 0.02161933295428753, + 0.00956212729215622, + 0.007996181957423687, + 0.06832774728536606, + -0.017879623919725418, + -0.02377939783036709, + -0.03525984659790993, + -0.03391628339886665, + -0.0349980965256691, + 0.054530996829271317, + 0.047711122781038284, + 0.05179301276803017, + 0.050404880195856094, + -0.09080393612384796, + -0.005876956041902304, + -0.035019390285015106, + 0.008063621819019318, + -0.03847899287939072, + -0.020606383681297302, + -0.05065416917204857, + 0.036964673548936844, + 0.07850953191518784, + -0.008769530802965164, + 0.08975455909967422, + -0.006865995936095715, + -0.000853720644954592, + 0.022790536284446716, + 0.024673692882061005, + 0.03485073894262314, + 0.012248232960700989, + -0.006427336949855089, + -0.006704821716994047, + -0.0900576114654541, + 0.02532273344695568, + -0.006647653412073851, + 0.016326773911714554, + 0.008377830497920513, + 0.07076244801282883, + -0.012332175858318806, + -0.0588347427546978, + -0.06536920368671417, + -0.022558271884918213, + 0.0700950101017952, + 0.03557340428233147, + -0.12020732462406158, + -0.054763052612543106, + 0.06339028477668762, + -0.026870962232351303, + -0.0032815737649798393, + -0.02343118190765381, + 0.060696836560964584, + -0.016382914036512375, + 0.04525897279381752, + -0.008566156961023808, + -0.027890440076589584, + 0.14755624532699585, + -0.09014899283647537, + -0.008578889071941376, + 0.0029364624060690403, + -0.00035489629954099655, + -0.06176668778061867, + -0.009086182340979576, + -0.037153396755456924, + 0.04060891270637512, + 0.011594664305448532, + 0.04127337783575058, + -0.08419879525899887, + -0.04507311061024666, + -0.06883927434682846, + -0.021685516461730003, + -0.0854748860001564, + 0.01108628325164318, + 0.08029421418905258, + 0.10902396589517593, + -0.06512250751256943, + -0.0823754295706749, + -0.08298429101705551, + -0.03174528852105141, + -0.05646819248795509, + -0.0036555593833327293, + 0.005392926279455423, + 0.05467865243554115, + -0.04383504390716553, + 0.0004575944331008941, + 0.049782149493694305, + 0.026089467108249664, + -0.11822661757469177, + 0.07512570172548294, + 0.04348961263895035, + 0.07722786068916321, + 0.030441608279943466, + -0.10435950756072998, + 0.005648784805089235, + 0.00030036724638193846, + 0.05861526355147362, + -0.003700682194903493, + -0.02619229443371296, + -0.002094477415084839, + -0.03153024613857269, + -0.03764048218727112, + -0.04760625958442688, + -0.12546208500862122, + -0.04081984981894493, + -0.0669703334569931, + -0.07669494301080704, + -0.056164927780628204, + 0.11547364294528961, + -0.00781745370477438, + 0.05452921241521835, + -0.057495810091495514, + -0.005405147559940815, + -0.029294509440660477, + -0.012636619620025158, + -0.029104752466082573, + 0.04048297926783562, + -2.083314678966924e-33, + 0.01807934045791626, + 0.033879075199365616, + -0.028106817975640297, + 0.05931887775659561, + 0.0052350605838000774, + 0.04877008497714996, + -0.037597592920064926, + -0.0964125245809555, + -0.13061155378818512, + -0.03475125879049301, + 0.047870151698589325, + 0.05998111888766289, + -0.00012285275442991406, + 0.05484757199883461, + -0.02223595418035984, + -0.06111551821231842, + 0.0742650032043457, + 0.009100951254367828, + 0.007388331927359104, + -0.007807369343936443, + -0.033894483000040054, + 0.028096375986933708, + -0.11035828292369843, + -0.0020243809558451176, + -0.05239934101700783, + -0.01687900722026825, + 0.0016662650741636753, + 0.011209125630557537, + -0.033841412514448166, + 0.03190960735082626, + 0.004124638624489307, + 0.07967396080493927, + 0.02687833644449711, + -0.008479353971779346, + -0.05704222619533539, + 0.010722470469772816, + -0.05210175737738609, + -0.0015614243457093835, + -0.02867705561220646, + 0.07431324571371078, + -0.00698385713621974, + -0.06669320166110992, + -0.06187892332673073, + -0.024471910670399666, + -0.04031556844711304, + 0.11079596728086472, + -0.07326816767454147, + -0.06515289098024368, + 0.06001431867480278, + -0.020456844940781593, + 0.017262890934944153, + 0.007614973932504654, + 0.03551926463842392, + -0.01695827767252922, + 0.06519778817892075, + -0.03883416950702667, + -0.04316220432519913, + 0.01611959934234619, + 0.04339223727583885, + -0.02781352773308754, + -0.00483641866594553, + 0.035771600902080536, + 0.06504026800394058, + 0.02285877801477909, + -0.009901361539959908, + 0.0841427594423294, + -0.08434689044952393, + 0.03798528388142586, + 0.010040929540991783, + -0.04736718162894249, + 0.006543992552906275, + 0.0789380744099617, + -0.006274468265473843, + -0.026546278968453407, + 0.04621847718954086, + -0.030958276242017746, + -0.0491705983877182, + -0.010749698616564274, + 0.14327867329120636, + -0.0543409064412117, + -0.131646528840065, + -0.05017999932169914, + -0.06501805782318115, + 0.05944802984595299, + 0.03924546390771866, + 0.03731667995452881, + -0.023702140897512436, + -0.008326442912220955, + -0.06588960438966751, + 0.1121467798948288, + 0.00916830450296402, + -0.009198427200317383, + -0.011227976530790329, + -0.013197905384004116, + -0.037118908017873764, + 1.5745332421588128e-34, + 0.03834347799420357, + 0.11638496816158295, + -0.058792952448129654, + 0.04293932765722275, + -0.027638647705316544, + 0.013892211019992828, + 0.04795001074671745, + 0.025906672701239586, + -0.004147399682551622, + 0.09033694118261337, + -0.004610548727214336, + -0.01826702617108822, + -0.08129708468914032, + -0.0550120547413826, + 0.021693343296647072, + -0.009747671894729137, + 0.12099556624889374, + 0.05762870982289314, + -0.018887896090745926, + -0.06977543979883194, + -0.0023997107055038214, + -0.025412507355213165, + 0.004346446134150028, + 0.08313348144292831, + -0.0005174562684260309, + 0.06730250269174576, + 0.021314727142453194, + 0.04856615886092186, + -0.04485470429062843, + -0.05787882208824158, + 0.005743672139942646, + 0.05859218165278435, + 0.016937188804149628, + 0.021565988659858704, + -0.07253751903772354, + 0.0021202394273132086, + -0.025423791259527206, + 0.04638493433594704, + 0.12088798731565475, + 0.05054311081767082, + 0.054440684616565704, + -0.01103955041617155, + -0.019160090014338493, + 0.07906053215265274, + -0.0042173066176474094, + 0.02549153007566929, + -0.008073482662439346, + -0.08775899559259415, + 0.05511897802352905, + 0.06626459211111069, + 0.12197037041187286, + -0.02771490253508091, + 0.013139558024704456, + -0.045015715062618256, + -0.030140690505504608, + -0.033256761729717255, + 0.02961858920753002, + 0.03965715691447258, + -0.0224470142275095, + -0.02557418681681156, + -0.01829916425049305, + -0.04200515151023865, + 0.02194495126605034, + 0.0005589400534518063, + -0.031080087646842003, + -0.05818980559706688, + 0.03270702809095383, + 0.034729503095149994, + 0.0975542664527893, + 0.04779916629195213, + 0.04924733564257622, + -0.013235698454082012, + 0.008284034207463264, + 0.024043599143624306, + 0.08918412774801254, + -0.061117853969335556, + 0.045147836208343506, + 0.01243238802999258, + -0.013642001897096634, + 0.050762761384248734, + -0.033709123730659485, + -0.005813210736960173, + 0.029867229983210564, + 0.05626196414232254, + 0.017150558531284332, + -0.018795622512698174, + 0.0018361833645030856, + 0.045104049146175385, + -0.01923527754843235, + -0.03401624411344528, + -0.04102359339594841, + -0.015576967038214207, + 0.027310868725180626, + -0.088450588285923, + -0.04320412129163742, + -1.6143440362270667e-08, + -0.10154997557401657, + -0.05143413692712784, + -0.010865837335586548, + -0.03193065896630287, + -0.03685956448316574, + 0.004724300000816584, + -0.013590417802333832, + -0.034212563186883926, + -0.005387216340750456, + 0.02529211901128292, + -0.007337293587625027, + 0.04473467543721199, + -0.04157092049717903, + -0.040727827697992325, + 0.01758953370153904, + 0.00016187057190109044, + -0.007159375585615635, + -0.010778235271573067, + -0.03848832845687866, + -0.09694131463766098, + -0.04166167974472046, + 0.03701289743185043, + 0.024643652141094208, + 0.04738190025091171, + 0.026097314432263374, + -0.0056449370458722115, + -0.04973861202597618, + 0.047298986464738846, + 0.09027667343616486, + 0.02292964980006218, + 0.01688528060913086, + -0.007678978610783815, + -0.025730760768055916, + 0.03304407000541687, + -0.11572468280792236, + -0.06622583419084549, + -0.014097806066274643, + -0.029609322547912598, + 0.0123283751308918, + 0.10845325142145157, + -0.017271943390369415, + 0.006190254352986813, + -0.01803896389901638, + -0.02589353732764721, + -0.0791853666305542, + 0.027731064707040787, + -0.010701877065002918, + -0.03020508401095867, + -0.10691867768764496, + -0.03167716786265373, + 0.006662339903414249, + -0.0009681950323283672, + -0.03253179043531418, + 0.12768851220607758, + -0.038165438920259476, + -0.09910847246646881, + -0.0034207776188850403, + 0.0650220662355423, + 0.008332050405442715, + -0.016128800809383392, + 0.05274474620819092, + 0.07325808703899384, + -0.05783609673380852, + 0.05872910097241402 + ], + "share-fat-bold||export,send to": [ + 0.018862154334783554, + -0.02506517805159092, + -0.03580696880817413, + 0.1506202071905136, + 0.09462571144104004, + -0.0049657681956887245, + 0.021117132157087326, + -0.06746699661016464, + -0.015549086034297943, + -0.008664431050419807, + -0.012401302345097065, + -0.004293641075491905, + 0.011342696845531464, + -0.02249971404671669, + 0.009626596234738827, + -0.019141094759106636, + -0.00039347930578514934, + -0.013962771743535995, + -0.07037331163883209, + -0.018411077558994293, + 0.0022832280956208706, + 0.06132716313004494, + 0.08009679615497589, + 0.07236115634441376, + 0.050534192472696304, + -0.09817999601364136, + -0.008525445125997066, + -0.07953224331140518, + -0.007664184086024761, + -0.059496719390153885, + -0.002938121324405074, + -0.05096317082643509, + 0.05944819748401642, + 0.03935796767473221, + 0.03551153466105461, + 0.1003900095820427, + -0.024525843560695648, + -0.047892868518829346, + 0.03545761853456497, + -0.03909526765346527, + 0.054057635366916656, + -0.038608089089393616, + -0.011715003289282322, + -0.0014707637019455433, + -0.08825168758630753, + 0.0008021105895750225, + 0.006632814183831215, + 0.04687053710222244, + 0.025306420400738716, + 0.053441114723682404, + -0.01638142578303814, + -0.03070000186562538, + -0.052827246487140656, + -0.017692482098937035, + 0.04758046194911003, + 0.05875728651881218, + -0.08797167986631393, + -0.02927880361676216, + 0.013929774053394794, + -0.017209624871611595, + -0.01771186850965023, + -0.020464923232793808, + 0.07471401989459991, + -0.009093516506254673, + 0.036544546484947205, + -0.05860211327672005, + -0.051721230149269104, + 0.13160288333892822, + -0.09267156571149826, + -0.009458969347178936, + -0.004269684199243784, + 0.017268793657422066, + -0.10319288074970245, + -0.018709976226091385, + -0.03539296239614487, + 0.056495409458875656, + -0.02308875136077404, + 0.019148575142025948, + -0.0646611750125885, + -0.024660373106598854, + -0.06759613007307053, + -0.024896850809454918, + -0.06642203032970428, + 0.006978465244174004, + 0.07365899533033371, + 0.08424551039934158, + -0.033685579895973206, + -0.04095427319407463, + -0.08737070113420486, + -0.02323826588690281, + -0.0483398362994194, + -0.01544210221618414, + -0.021074969321489334, + 0.08147352933883667, + -0.13306540250778198, + 0.0043768081814050674, + -0.0016884581418707967, + 0.07789286971092224, + -0.08671682327985764, + 0.05797461420297623, + 0.05041733756661415, + 0.10253527760505676, + 0.03815828636288643, + -0.06357622891664505, + -0.01972908526659012, + -0.03183537349104881, + 0.05927051976323128, + 0.023170949891209602, + 0.01054365187883377, + -0.00018599792383611202, + -0.013182204216718674, + -0.007580399513244629, + -0.036658547818660736, + -0.09240888059139252, + -0.02424691617488861, + -0.03356890380382538, + -0.025029150769114494, + -0.023014333099126816, + 0.06951487064361572, + 0.006533690262585878, + 0.028115589171648026, + -0.0699462965130806, + -0.0016373839462175965, + -0.02795068360865116, + 0.019720831885933876, + -0.047368597239255905, + 0.06363335996866226, + -2.449579065886971e-33, + -0.028824198991060257, + 0.010113049298524857, + -0.028239352628588676, + 0.07122443616390228, + 0.040289994329214096, + 0.0048299310728907585, + -0.03257666155695915, + -0.10801637172698975, + -0.12846794724464417, + -0.017167137935757637, + 0.045663122087717056, + 0.054517682641744614, + 0.004950760398060083, + 0.0722893700003624, + -0.025285016745328903, + -0.06549607962369919, + 0.06702025979757309, + 0.018077954649925232, + 0.07289624959230423, + 0.010352684184908867, + -0.02825997583568096, + 0.029093993827700615, + -0.06614682823419571, + -0.028646906837821007, + -0.05086051672697067, + -0.03138238191604614, + -0.01155277993530035, + -0.0012273249449208379, + -0.002249538665637374, + 0.03988675773143768, + 0.006016201805323362, + 0.044330988079309464, + 0.04808856546878815, + -0.033353451639413834, + -0.05528640374541283, + -0.024688445031642914, + -0.017052626237273216, + 0.01071969699114561, + -0.07474230229854584, + 0.06657684594392776, + 0.02450435422360897, + -0.05219017714262009, + -0.055536650121212006, + -0.044899918138980865, + -0.052736807614564896, + 0.12826594710350037, + -0.022748533636331558, + -0.026723584160208702, + 0.08449732512235641, + -0.05389918014407158, + 0.028109852224588394, + -0.00803442019969225, + 0.029266878962516785, + -0.0023412713780999184, + 0.042745113372802734, + -0.03597644716501236, + -0.021737881004810333, + -0.025080639868974686, + 0.0654950961470604, + -0.06668005138635635, + 0.035143572837114334, + 0.07431624084711075, + 0.02218005806207657, + 0.004594019614160061, + -0.03432490676641464, + 0.0514826737344265, + -0.03559018671512604, + 0.015294584445655346, + -0.03549474850296974, + -0.011185849085450172, + 0.02627890184521675, + 0.08020736277103424, + -0.0202281903475523, + 0.007386569399386644, + 0.07279030233621597, + -0.02399531938135624, + -0.024351993575692177, + 0.00646551139652729, + 0.09901406615972519, + -0.038964688777923584, + -0.0748794749379158, + -0.03624100610613823, + -0.06534518301486969, + 0.04372397065162659, + -0.010827210731804371, + 0.07700464874505997, + -0.05145338177680969, + 0.008778931573033333, + -0.016688289120793343, + 0.06961135566234589, + -0.0013269438641145825, + -0.03057793714106083, + -0.015228000469505787, + -0.047119732946157455, + -0.060211263597011566, + 3.648289062796014e-34, + 0.05604146793484688, + 0.05012596771121025, + -0.04637541249394417, + 0.02267797291278839, + -0.012709347531199455, + 0.02977064810693264, + 0.03745372220873833, + 0.032363411039114, + 0.01548502966761589, + 0.08036484569311142, + -0.036912690848112106, + -0.029851282015442848, + -0.07540128380060196, + -0.0574021153151989, + 0.012563188560307026, + 0.02025211788713932, + 0.09021392464637756, + 0.02368137240409851, + -0.05191466212272644, + -0.06596530228853226, + -0.048524193465709686, + -0.021791648119688034, + 0.02051936276257038, + 0.15505363047122955, + 0.0023847161792218685, + 0.0753258541226387, + 0.003755804616957903, + 0.08968191593885422, + -0.060902319848537445, + -0.06943748146295547, + -0.008861226961016655, + 0.050236694514751434, + -0.014142928645014763, + 0.006428402382880449, + -0.08208129554986954, + -0.013710634782910347, + -0.052945327013731, + 0.09761663526296616, + 0.10075772553682327, + 0.0767323225736618, + 0.050252120941877365, + -0.04736170172691345, + -0.026817254722118378, + 0.06099142134189606, + 0.0044761234894394875, + -0.0477924644947052, + -9.242308442480862e-05, + -0.1113760843873024, + 0.05863014608621597, + 0.08458150923252106, + 0.14304250478744507, + -0.021136729046702385, + 0.03555154427886009, + -0.007218550890684128, + -0.006860624998807907, + 0.02310871332883835, + 0.00553955789655447, + 0.01443344634026289, + -0.023218683898448944, + -0.05813898891210556, + -0.014510052278637886, + -0.02362072840332985, + -0.004203710239380598, + -0.01465345174074173, + -0.010164744220674038, + -0.04919473081827164, + 0.03172032907605171, + 0.029843822121620178, + 0.07358035445213318, + 0.08049029111862183, + 0.0046195462346076965, + -0.058741677552461624, + 0.012512937188148499, + 0.054315391927957535, + 0.05165945738554001, + -0.03218986093997955, + 0.019545238465070724, + -0.0083993561565876, + -0.018494833260774612, + 0.08354752510786057, + -0.014955412596464157, + -0.01002977229654789, + 0.02711331844329834, + 0.0036473798099905252, + 0.03596755489706993, + -0.01706383004784584, + 0.005762010812759399, + 0.05765457823872566, + -0.03433016315102577, + -0.025981314480304718, + -0.05400587245821953, + 0.013935178518295288, + 0.026983963325619698, + -0.08378934860229492, + -0.06284313648939133, + -1.582982989134507e-08, + -0.08328212797641754, + -0.08986256271600723, + 0.0007969907601363957, + 0.027193548157811165, + -0.04672536998987198, + 0.015414996072649956, + -0.0008792362059466541, + -0.07467688620090485, + 0.023999206721782684, + 0.027910593897104263, + -0.05111883208155632, + 0.01622648909687996, + -0.004701674450188875, + -0.01541148591786623, + -0.03563167527318001, + -0.017789209261536598, + -0.001692035235464573, + 0.017777085304260254, + -0.0499790757894516, + -0.13549359142780304, + -0.054421018809080124, + 0.02754506655037403, + 0.04266855865716934, + 0.004847729112952948, + 0.06257715821266174, + 0.013156186789274216, + -0.05805013328790665, + 0.04106830060482025, + 0.07777058333158493, + 0.018435603007674217, + 0.04504095017910004, + 0.012927629984915257, + -0.036384355276823044, + 0.0348781980574131, + -0.06764256954193115, + -0.03823874518275261, + 0.025274842977523804, + -0.019625617191195488, + -0.011978422291576862, + 0.13077066838741302, + -0.04931878298521042, + 0.05608363077044487, + 0.027600394561886787, + -0.03577689826488495, + -0.057404786348342896, + -0.0222182534635067, + -0.04933967441320419, + 0.0059512099251151085, + -0.04971711337566376, + -0.01514025405049324, + 0.03348182886838913, + -0.0030257145408540964, + -0.07281343638896942, + 0.15758539736270905, + -0.04869838058948517, + -0.1321532428264618, + -0.01504613645374775, + 0.0669252872467041, + 0.008865861222147942, + -0.013827727176249027, + 0.07807803899049759, + 0.016795260831713676, + -0.022838223725557327, + 0.06678804010152817 + ], + "share-network-bold||send to,export": [ + 0.011229213327169418, + -0.023982981219887733, + -0.005536564625799656, + 0.11290735006332397, + 0.07088073343038559, + 0.005029001273214817, + 0.03145309537649155, + -0.061193570494651794, + -0.012738632969558239, + 0.002371013630181551, + -0.04028390347957611, + 0.046641960740089417, + 0.014014063403010368, + -0.007987583987414837, + -0.02862454392015934, + 0.04723719134926796, + 0.005260937847197056, + -0.04443885758519173, + -0.018501000478863716, + -0.017876947298645973, + -0.003419757355004549, + 0.060721781104803085, + 0.05631154403090477, + 0.01963854767382145, + 0.07286298274993896, + -0.09309707581996918, + 0.012825550511479378, + -0.04517042636871338, + 0.002768777310848236, + -0.030830126255750656, + -0.03055700473487377, + 0.00024015609233174473, + 0.01837785728275776, + 0.0632774606347084, + 0.040941204875707626, + 0.05868341773748398, + -0.03528204560279846, + 0.02216159924864769, + 0.03534715622663498, + -0.027535220608115196, + 0.07941114902496338, + -0.017244946211576462, + 0.0029341939371079206, + 0.015554985962808132, + -0.087542824447155, + -0.002653338946402073, + 0.009032078087329865, + -0.0021417897660285234, + 0.0310530923306942, + 0.0028264604043215513, + 0.025595568120479584, + -0.010721966624259949, + -0.05300775542855263, + -0.017087040469050407, + 0.09189397841691971, + 0.03947414830327034, + -0.11930792778730392, + 0.0026218658313155174, + 0.045685868710279465, + -0.046752557158470154, + -0.023302076384425163, + -0.03256169706583023, + 0.05898822098970413, + -0.022499732673168182, + 0.06215205043554306, + -0.0038827876560389996, + -0.03642219677567482, + 0.1391090452671051, + -0.11441221833229065, + -0.014914289116859436, + 0.000499366782605648, + 0.03020337037742138, + -0.09768971055746078, + -0.023345591500401497, + -0.007492277771234512, + 0.06793041527271271, + 0.041223201900720596, + 0.011493653059005737, + -0.08595159649848938, + -0.03668765351176262, + -0.03649233281612396, + -0.011678222566843033, + -0.08328934758901596, + 0.005395963322371244, + 0.0801582857966423, + 0.05553586035966873, + -0.04857918620109558, + -0.06554879993200302, + -0.05480983480811119, + 0.0063976407982409, + -0.08478356897830963, + -0.01808859221637249, + -0.030457718297839165, + 0.06258168071508408, + -0.09690598398447037, + 0.023640742525458336, + -0.008142998442053795, + 0.038263950496912, + -0.10720991343259811, + 0.061124227941036224, + 0.06808983534574509, + 0.0595058873295784, + 0.040180254727602005, + -0.09405479580163956, + -0.03754788264632225, + -0.02937358058989048, + 0.10238075256347656, + -0.002217652276158333, + 0.03163543716073036, + 0.009168114513158798, + -0.022790225222706795, + 0.007339647971093655, + -0.05517158284783363, + -0.11273742467164993, + -0.027425616979599, + -0.04608569294214249, + -0.04109642654657364, + -0.013576480560004711, + 0.09394001215696335, + -0.007155686616897583, + 0.004959305748343468, + -0.0611468106508255, + -0.010144136846065521, + -0.009049482643604279, + 0.027250446379184723, + -0.012265389785170555, + 0.10199303179979324, + -2.2306230392371653e-33, + -0.023931045085191727, + 0.03660927712917328, + -0.05673215910792351, + 0.06759092211723328, + 0.0493929460644722, + 0.022493261843919754, + -0.0075754462741315365, + -0.13694564998149872, + -0.10088106989860535, + -0.026651278138160706, + -0.02770153246819973, + 0.05501663684844971, + 0.030392564833164215, + 0.048985157161951065, + -0.03102438524365425, + -0.07206249982118607, + 0.0879257321357727, + -0.030176455155014992, + 0.037619780749082565, + 0.020039573311805725, + -0.029082514345645905, + 0.011455979198217392, + -0.06176894158124924, + -0.0313665047287941, + -0.04548370838165283, + -0.06574075669050217, + -0.0004389967361930758, + -0.015976905822753906, + -0.014577563852071762, + 0.011359806172549725, + -0.01872643455862999, + 0.06618832051753998, + 0.05676795914769173, + 0.006918716244399548, + -0.05554330721497536, + -0.0026678992435336113, + -0.035236626863479614, + 0.02596663497388363, + -0.019648628309369087, + 0.07651125639677048, + -0.03457389771938324, + -0.03403975069522858, + -0.059119924902915955, + -0.02048533409833908, + -0.020496441051363945, + 0.10297833383083344, + -0.042531758546829224, + -0.05375318229198456, + 0.041724465787410736, + 0.007475861813873053, + 0.01253710500895977, + -0.01049800869077444, + 0.0430760495364666, + -0.03107859194278717, + 0.07549239695072174, + -0.02266494743525982, + 0.01881743222475052, + 0.008890938013792038, + 0.061934396624565125, + -0.03343772143125534, + 0.02867986634373665, + 0.03704012930393219, + 0.04014665633440018, + 0.021679112687706947, + 0.011762229725718498, + 0.11648865044116974, + -0.05155397579073906, + 0.04370092228055, + -0.012286411598324776, + -0.07471602410078049, + -0.0004642835119739175, + 0.058340586721897125, + -0.03112991712987423, + -0.013461344875395298, + 0.05581305921077728, + 0.0010909201810136437, + -0.08647985756397247, + 0.016892345622181892, + 0.1118822917342186, + -0.03726521506905556, + -0.09234704822301865, + -0.00811730045825243, + -0.08365478366613388, + 0.05752618610858917, + 0.011632779613137245, + 0.0455593466758728, + -0.05943973734974861, + -0.04586833342909813, + -0.023537440225481987, + 0.11181451380252838, + 0.02689511887729168, + -0.009878946468234062, + -0.00578413438051939, + -0.0024796018842607737, + -0.049036357551813126, + 1.6295202046608909e-34, + 0.02796652726829052, + 0.10356692224740982, + -0.07107153534889221, + 0.0018579481402412057, + -0.052733901888132095, + 0.010937861166894436, + 0.08367031067609787, + 0.0396861769258976, + -0.035754941403865814, + 0.08064425736665726, + 0.03941316530108452, + -0.03776726499199867, + -0.06970347464084625, + -0.07237476110458374, + 0.008742662146687508, + -0.022908907383680344, + 0.07045256346464157, + 0.08628632128238678, + -0.022678934037685394, + -0.04486020281910896, + -0.026050211861729622, + -0.010747923515737057, + -0.0361778698861599, + 0.09735162556171417, + 0.008685764856636524, + 0.07293475419282913, + 0.021348077803850174, + 0.06970507651567459, + -0.05854097753763199, + -0.05103965476155281, + -0.05760711058974266, + 0.0935048758983612, + 0.014134983532130718, + 0.03667492792010307, + -0.042226944118738174, + 0.056264594197273254, + 0.014464418403804302, + 0.061605095863342285, + 0.09826778620481491, + 0.05412115156650543, + 0.07672742754220963, + -0.01735953986644745, + -0.06694723665714264, + 0.09146645665168762, + -0.029179519042372704, + 0.004888731986284256, + -0.03509030491113663, + -0.09850359708070755, + -0.009371493943035603, + 0.0879385843873024, + 0.1341426521539688, + 0.0024319856893271208, + 0.005357880145311356, + -0.014540649950504303, + 0.008703241124749184, + -0.0036747136618942022, + -0.01154909934848547, + 0.01875394955277443, + 0.021598907187581062, + 0.008301214314997196, + -0.015462616458535194, + -0.07353917509317398, + -0.003944032359868288, + 0.008242064155638218, + -0.01826149970293045, + -0.05894424766302109, + 0.0503137968480587, + 0.04942511394619942, + 0.08745700865983963, + 0.05193418264389038, + 0.012340384535491467, + -0.028293205425143242, + -0.011092758737504482, + 0.050852227956056595, + 0.0608939565718174, + -0.06038166955113411, + 0.03451862186193466, + 0.012909816578030586, + -0.036278124898672104, + 0.09213194251060486, + -0.027507994323968887, + 0.010486509650945663, + -0.026787208393216133, + 0.029085109010338783, + 0.055489059537649155, + -0.03777781501412392, + 0.011695199646055698, + 0.06094997748732567, + 0.005155324470251799, + -0.04274774715304375, + -0.05998193845152855, + -0.03725476190447807, + 0.01808301731944084, + -0.057322293519973755, + -0.059796422719955444, + -1.7509441008201065e-08, + -0.11048652976751328, + -0.08117739856243134, + -0.01686977781355381, + -0.014960931614041328, + -0.029811596497893333, + 0.014439177699387074, + -0.0040450869128108025, + -0.11391078680753708, + 0.0090740155428648, + 0.017944123595952988, + -0.06525503098964691, + -0.02290760912001133, + -0.06283843517303467, + -0.03028787299990654, + -0.019097905606031418, + -0.006114673335105181, + -0.008995477110147476, + -0.006911784876137972, + -0.02678515948355198, + -0.07896528393030167, + -0.04519972205162048, + 0.024081436917185783, + -0.010883749462664127, + 0.046140752732753754, + 0.04366328567266464, + 0.01203980203717947, + -0.07337544858455658, + 0.029028501361608505, + 0.06859233975410461, + 0.004715851042419672, + 0.007807412184774876, + 0.008856011554598808, + -0.024244127795100212, + 0.020382648333907127, + -0.14510700106620789, + -0.018661929294466972, + 0.005114961881190538, + -0.0073716226033866405, + 0.0206671841442585, + 0.11029909551143646, + -0.10069436579942703, + 0.010821260511875153, + 0.007359196897596121, + -0.047168754041194916, + -0.058307189494371414, + -0.005096228327602148, + -0.046658433973789215, + -0.002764626871794462, + -0.04998774453997612, + -0.04383350908756256, + 0.03410622850060463, + -0.005175116937607527, + -0.044182270765304565, + 0.11153165996074677, + -0.03241755813360214, + -0.13779909908771515, + -0.0050084274262189865, + 0.054803866893053055, + -0.0018451842479407787, + -0.023711781948804855, + 0.04528359696269035, + 0.03349290043115616, + -0.04308653995394707, + 0.0181018877774477 + ], + "shield-bold||badge,security,secured,defense,defended,authentication,authenticated,guarded,locked,encrypted,encryption": [ + -0.04608147591352463, + 0.03178919106721878, + -0.05755416303873062, + -0.019969038665294647, + 0.009632463566958904, + 0.02849755994975567, + 0.10426630824804306, + -0.03627768158912659, + -0.021374450996518135, + -0.03477809205651283, + 0.062278155237436295, + -0.04731173813343048, + 0.0948822870850563, + 0.02104637399315834, + -0.011309553869068623, + 0.017197459936141968, + 0.027225110679864883, + -0.039929188787937164, + 0.005615755915641785, + 0.020737716928124428, + -0.014412816613912582, + 0.012532208114862442, + 0.014037623070180416, + 0.02194664441049099, + -0.040037114173173904, + 0.027094803750514984, + -0.007400977425277233, + -0.02651400677859783, + -0.007032600697129965, + -0.08014669269323349, + -0.04460960626602173, + -0.0696716234087944, + 0.07164818793535233, + 0.081733837723732, + -0.06867920607328415, + -0.026659205555915833, + 0.03779517486691475, + 0.05625405162572861, + -0.01957673951983452, + -0.016682416200637817, + -0.0787104144692421, + -0.0998452827334404, + -0.02598070539534092, + 0.08655326813459396, + -0.010128139518201351, + 0.03377291187644005, + 0.03239772841334343, + 0.023164445534348488, + -0.010842201299965382, + -0.02691037766635418, + -0.01476368959993124, + -0.024097466841340065, + -0.12133834511041641, + 0.08088403195142746, + 0.016950711607933044, + -0.044646888971328735, + -0.06707217544317245, + -0.033567097038030624, + 0.043115708976984024, + 0.025801662355661392, + 0.015594159252941608, + 0.056100454181432724, + 0.018251758068799973, + 0.12359984964132309, + -0.03218359127640724, + -0.006756448652595282, + -0.015771275386214256, + 0.0236138254404068, + -0.005620838608592749, + -0.01011747494339943, + 0.0014990355120971799, + 0.004768388345837593, + -0.033526670187711716, + -0.02266630157828331, + 0.007153394166380167, + 0.046009745448827744, + -0.012380896136164665, + -0.016343124210834503, + 0.036267902702093124, + -0.0752565935254097, + -0.03610105440020561, + -0.026919635012745857, + -0.08466678857803345, + 0.07610894739627838, + 0.023421121761202812, + 0.059501975774765015, + -0.05101293697953224, + -0.08136848360300064, + -0.0012994344579055905, + -0.014064359478652477, + 0.014499408192932606, + -0.026061927899718285, + 0.04718707501888275, + 0.026553764939308167, + -0.08617980033159256, + -0.01367366872727871, + 0.030361410230398178, + -0.026499580591917038, + -0.08221926540136337, + 0.06884264200925827, + -0.03493787720799446, + -0.005480479449033737, + -0.05796755850315094, + 0.0019346773624420166, + 0.002803357783704996, + -0.02571714110672474, + 0.013788742013275623, + -0.08809805661439896, + -0.0230022594332695, + 0.046127885580062866, + 0.025019224733114243, + -0.04750388115644455, + -0.1039649248123169, + -0.09396062791347504, + -0.03317970037460327, + 0.023999854922294617, + -0.11040310561656952, + 0.036554478108882904, + 0.12281393259763718, + 0.08607307821512222, + 0.058309268206357956, + 0.00949857011437416, + 0.07004007697105408, + -0.07614872604608536, + 0.0043656486086547375, + -0.013990271836519241, + 0.008232103660702705, + -1.9366146370232335e-33, + 0.02012733370065689, + 0.030567239969968796, + -0.05816969648003578, + 0.10182510316371918, + -0.003347689751535654, + -0.039974380284547806, + 0.020544787868857384, + -0.051267124712467194, + -0.05766858533024788, + 0.09534718096256256, + 0.030253121629357338, + 0.08641939610242844, + 0.010379365645349026, + 0.07699675858020782, + 0.10762565582990646, + 0.032135095447301865, + -0.018181212246418, + -0.031035546213388443, + 0.044722024351358414, + -0.03107309900224209, + -0.012442032806575298, + 0.08865077048540115, + 0.009945145808160305, + 0.03267382085323334, + 0.07076100260019302, + -0.05076216533780098, + 0.019392918795347214, + 0.01738736219704151, + 0.0004957783385179937, + 0.06725866347551346, + 0.009030379354953766, + -0.02108210138976574, + 0.028425034135580063, + 0.04572935774922371, + 0.04534125700592995, + 0.03354140743613243, + -0.017521409317851067, + -0.1044442430138588, + 0.03726053237915039, + -0.08234936743974686, + -0.09275604039430618, + -0.08527477085590363, + -0.06194756552577019, + -0.041582271456718445, + 0.07395566999912262, + -0.010025604628026485, + -0.038848236203193665, + -0.029408587142825127, + 0.00955003872513771, + -0.008295555599033833, + 0.002195941749960184, + -0.01953382045030594, + -0.02633010409772396, + -0.046798162162303925, + -0.05379835516214371, + -0.05307495594024658, + -0.0007209351751953363, + 0.15277381241321564, + -0.04761214554309845, + 0.028745243325829506, + -0.0817442536354065, + 0.027373794466257095, + 0.03688285872340202, + -0.058055222034454346, + -0.0005461692926473916, + -0.009619340300559998, + -0.036387596279382706, + -0.016239242628216743, + 0.021751783788204193, + 0.027923420071601868, + -0.03179856762290001, + 0.0763622373342514, + 0.07192350924015045, + 0.03332626447081566, + -0.014037531800568104, + -0.023061148822307587, + 0.033124350011348724, + 0.025699911639094353, + 0.014741542749106884, + -0.018191631883382797, + -0.12332087755203247, + 0.06736783683300018, + -0.06780879199504852, + 0.12210351228713989, + -0.056919630616903305, + 0.017383424565196037, + 0.024265635758638382, + -0.024587752297520638, + -0.08166281878948212, + -0.027872025966644287, + -0.027252333238720894, + 0.012099764309823513, + 0.09090416133403778, + -0.007686781696975231, + -0.10614918172359467, + -5.184438855775003e-34, + -0.014007089659571648, + -0.057107940316200256, + 0.005906396545469761, + -0.025767194107174873, + -0.03712417930364609, + -0.025453081354498863, + -0.0032208373304456472, + 0.07891949266195297, + -0.02081604115664959, + 0.02907681278884411, + 0.03305591642856598, + 0.021390041336417198, + -0.028866034001111984, + -0.011332344263792038, + -0.006368593778461218, + -0.015878217294812202, + 0.008567594923079014, + 0.010117263533174992, + -0.016849113628268242, + 0.037840649485588074, + -0.0030523266177624464, + 0.03826260566711426, + -0.010816385969519615, + 0.06758780032396317, + 0.027486158534884453, + 0.04510050266981125, + -0.024409303441643715, + 0.016619255766272545, + 0.048556823283433914, + 0.010735546238720417, + 0.04628052935004234, + -0.038790084421634674, + 0.006442919373512268, + 0.053784679621458054, + -0.08533146977424622, + -0.0371771939098835, + 0.10237263888120651, + -0.0180901400744915, + -0.06746602803468704, + -0.06501159816980362, + 0.014618856832385063, + -2.6352096028858796e-05, + 0.033559080213308334, + 0.01901685819029808, + 0.008283405564725399, + -0.050560787320137024, + -0.022504838183522224, + -0.05223574489355087, + -0.016460712999105453, + 0.03612959012389183, + 0.03315821290016174, + -0.013093031011521816, + -0.02674347348511219, + 0.03705495223402977, + -0.05840006098151207, + 0.007339375093579292, + -0.010588311590254307, + 0.03642244264483452, + 0.025005092844367027, + 0.028345122933387756, + 0.07616560161113739, + -0.004873570054769516, + 0.010606438852846622, + 0.07896710187196732, + -0.025709673762321472, + -0.013830313459038734, + -0.057599976658821106, + 0.05133428797125816, + -0.10669063031673431, + 0.005100525449961424, + 0.07713408023118973, + 0.008340363390743732, + -0.03292906656861305, + -0.025090323761105537, + 0.01412361953407526, + -0.061473298817873, + 0.01638227142393589, + -0.06629815697669983, + -0.08059966564178467, + 0.11450590938329697, + 0.014234602451324463, + -0.008131338283419609, + -0.1510428637266159, + 0.08664213865995407, + -0.006411996204406023, + -0.04379976913332939, + 0.053042374551296234, + -0.0129274632781744, + 0.060721155256032944, + -0.03338489681482315, + -0.03319653496146202, + 0.03890708461403847, + -0.07170333713293076, + 0.02896345779299736, + -0.0023175731766968966, + -2.3236200519249905e-08, + 0.04446648433804512, + 0.008148163557052612, + 0.003118842141702771, + -0.06201598420739174, + -0.008490253239870071, + 0.02515280246734619, + -0.060838308185338974, + -0.14937086403369904, + -0.046781208366155624, + -0.0993097797036171, + 0.13120362162590027, + 0.03419464826583862, + -0.09677790850400925, + -0.06099938601255417, + -0.01195001881569624, + -0.03054526075720787, + -0.09249020367860794, + -0.022306637838482857, + 0.0026197314728051424, + -0.047510404139757156, + 0.018706362694501877, + -0.00037167075788602233, + -0.021536102518439293, + -0.006099943071603775, + 0.003487953217700124, + 0.059665247797966, + -0.05763548985123634, + -0.09299114346504211, + 0.03926720842719078, + 0.07956558465957642, + -0.006692458875477314, + -0.017339104786515236, + 0.09316935390233994, + -0.004308611154556274, + -0.03260273113846779, + 0.10143958032131195, + -0.017660249024629593, + -0.08316098898649216, + 0.04279088228940964, + 0.12518948316574097, + 0.06401398032903671, + -0.03899501636624336, + 0.021149953827261925, + 0.006624979432672262, + -0.01396957878023386, + 0.04377545416355133, + 0.014722988940775394, + -0.004031933378428221, + 0.02268226630985737, + -0.06698571145534515, + 0.023172197863459587, + -0.04153737425804138, + -0.020776571705937386, + 0.043033793568611145, + -0.06371020525693893, + 0.030463211238384247, + 0.047216303646564484, + 0.016328129917383194, + 0.04565243050456047, + 0.02361212484538555, + 0.11241202801465988, + -0.017468156293034554, + 0.05065341666340828, + 0.050090014934539795 + ], + "shield-check-bold||badge,security,defense,authentication,authenticated,guarded,locked,encrypted,encryption": [ + -0.04394858703017235, + 0.04477069154381752, + -0.06590401381254196, + -0.014632051810622215, + 0.0336201973259449, + 0.017487885430455208, + 0.147660493850708, + -0.06445753574371338, + -0.01817295514047146, + -0.03563834726810455, + 0.0768270418047905, + -0.03633273392915726, + 0.08959901332855225, + 0.010048680938780308, + -0.027314377948641777, + 0.002990402514114976, + 0.012421424500644207, + -0.03904839977622032, + 0.008424399420619011, + 0.005138526204973459, + -0.025376027449965477, + -0.011637503281235695, + 0.012246311642229557, + 0.021429218351840973, + -0.04673045873641968, + 0.024032101035118103, + -0.004325492307543755, + -0.031105641275644302, + -0.021669894456863403, + -0.07493153214454651, + -0.038397420197725296, + -0.04607051983475685, + 0.056205011904239655, + 0.08028354495763779, + -0.04261636734008789, + -0.028933634981513023, + 0.05046987161040306, + 0.04034114256501198, + -0.01778106763958931, + -0.04083230346441269, + -0.09541703760623932, + -0.12542282044887543, + -0.03696465864777565, + 0.08593160659074783, + -0.013804678805172443, + 0.04521460086107254, + 0.005037879105657339, + 0.024401700124144554, + -0.0037866586353629827, + -0.027596302330493927, + -0.0031244182027876377, + -0.013134938664734364, + -0.10877495259046555, + 0.06689998507499695, + 0.028290361166000366, + -0.038955509662628174, + -0.04816268011927605, + -0.042813099920749664, + 0.03839111328125, + 0.02680271305143833, + 0.009997623972594738, + 0.054706767201423645, + -0.007173524238169193, + 0.11805855482816696, + -0.01640646532177925, + 0.010619604028761387, + -0.04677354544401169, + 0.00865095853805542, + 0.0061155054718256, + 0.000850808690302074, + -0.010458302684128284, + -0.014012834057211876, + -0.018247542902827263, + -0.003999500535428524, + 0.0035128628369420767, + 0.038367725908756256, + -0.014457791112363338, + -0.0439295656979084, + 0.029240181669592857, + -0.09025409072637558, + -0.06362926959991455, + -0.023484500125050545, + -0.07513582706451416, + 0.09415820986032486, + 0.03575180843472481, + 0.07684021443128586, + -0.048377834260463715, + -0.07271464914083481, + -0.00741974962875247, + -0.03389202058315277, + 0.026594726368784904, + -0.03514803946018219, + 0.022766314446926117, + 0.017752381041646004, + -0.08597537130117416, + -0.0074737947434186935, + 0.01742391474545002, + -0.02270619571208954, + -0.06648357212543488, + 0.08318411558866501, + -0.029694849625229836, + 0.00040713135967962444, + -0.04830807447433472, + -0.022854309529066086, + 0.011238325387239456, + -0.019903380423784256, + 0.024592645466327667, + -0.05210890248417854, + -0.0022822937462478876, + 0.04137840494513512, + 0.018156684935092926, + -0.04659866914153099, + -0.05894146487116814, + -0.07601523399353027, + -0.0199599489569664, + 0.028789130970835686, + -0.09216947853565216, + 0.03983452916145325, + 0.11062847822904587, + 0.08561752736568451, + 0.06493157893419266, + 2.5381370960531058e-06, + 0.05951666086912155, + -0.09556319564580917, + 0.009610173292458057, + -0.022514037787914276, + 0.020130695775151253, + -2.0956070437986636e-33, + 0.03739534318447113, + 0.04336056113243103, + -0.05160834640264511, + 0.11122182756662369, + -0.003455515019595623, + -0.046948447823524475, + 0.015119005925953388, + -0.05682358890771866, + -0.05490431934595108, + 0.11964501440525055, + 0.04554618149995804, + 0.08362047374248505, + 6.723165279254317e-05, + 0.058442167937755585, + 0.11386913061141968, + 0.03787969797849655, + -0.016067031770944595, + -0.024774450808763504, + 0.0425981730222702, + -0.026952438056468964, + -0.01368340477347374, + 0.03991313278675079, + 0.02353319339454174, + 0.023415671661496162, + 0.05793403834104538, + -0.038040973246097565, + 0.018371332436800003, + 0.021596131846308708, + 0.012298407033085823, + 0.06332176923751831, + 0.0005208064685575664, + -0.017045920714735985, + 0.03974094241857529, + 0.05126653611660004, + 0.04069151729345322, + 0.041442371904850006, + -0.0056513226591050625, + -0.09239794313907623, + 0.031188474968075752, + -0.09619961678981781, + -0.08628254383802414, + -0.09602730721235275, + -0.04616176337003708, + -0.046779416501522064, + 0.0670444443821907, + -0.012520486488938332, + -0.042729541659355164, + -0.028074804693460464, + 0.03280862793326378, + -0.00185121048707515, + 0.013183403760194778, + 0.002819487825036049, + -0.021527433767914772, + -0.047307826578617096, + -0.06441432237625122, + -0.05727827176451683, + 0.015362808480858803, + 0.13950808346271515, + -0.03082847222685814, + 0.023155707865953445, + -0.05979276821017265, + 0.03232264146208763, + 0.020508471876382828, + -0.05347944423556328, + -0.010537320747971535, + 0.0061438679695129395, + -0.05079490318894386, + -0.01427299901843071, + 0.03873737156391144, + 0.03379435837268829, + -0.0650857537984848, + 0.0690470039844513, + 0.06905325502157211, + 0.03632325306534767, + -0.017435628920793533, + -0.021134795621037483, + 0.030229393392801285, + 0.03793232515454292, + 0.01619211584329605, + -0.03792425990104675, + -0.09302344173192978, + 0.0525897853076458, + -0.07529877126216888, + 0.13608485460281372, + -0.05117432773113251, + 0.004369689617305994, + 0.01863992027938366, + -0.02912253886461258, + -0.0840974748134613, + -0.03608172759413719, + -0.033551763743162155, + 0.011380632407963276, + 0.087570920586586, + -0.02311660721898079, + -0.11036309599876404, + -7.073540011138e-34, + -0.009863141924142838, + -0.07166200131177902, + 0.021016618236899376, + -0.03029388189315796, + -0.046946097165346146, + -0.03493883088231087, + 1.4964545698603615e-05, + 0.07138913124799728, + -0.009309320710599422, + 0.027308868244290352, + 0.062126126140356064, + 0.01551838032901287, + -0.011051366105675697, + -0.018268877640366554, + -0.007083619479089975, + -0.016732338815927505, + 0.003918126225471497, + 0.013474561274051666, + -0.013863558880984783, + 0.055672746151685715, + 0.007908839732408524, + 0.052244678139686584, + -0.004855787847191095, + 0.0841028019785881, + 0.021077530458569527, + 0.052080608904361725, + -0.029162542894482613, + 0.005032504443079233, + 0.04575340449810028, + 0.020482413470745087, + 0.05280270427465439, + -0.005959862377494574, + 0.014034188352525234, + 0.0707302913069725, + -0.08491875231266022, + -0.07123130559921265, + 0.10877782851457596, + 0.0026249464135617018, + -0.07033812254667282, + -0.05127427354454994, + 0.01935161091387272, + 0.012179925106465816, + 0.021670598536729813, + 0.023411115631461143, + -0.01936993934214115, + -0.056799400597810745, + -0.030283953994512558, + -0.042555082589387894, + -0.02584299072623253, + 0.037835538387298584, + 0.03351521119475365, + -0.031026527285575867, + -0.010307502001523972, + 0.04244066774845123, + -0.06581316888332367, + 0.036967433989048004, + -0.010533028282225132, + 0.019889863207936287, + 0.0238932054489851, + 0.03594594448804855, + 0.060894377529621124, + -0.01665530726313591, + 0.006475946865975857, + 0.058607105165719986, + -0.024222368374466896, + -0.024265702813863754, + -0.04860101267695427, + 0.05582881718873978, + -0.07429581135511398, + 0.024845415726304054, + 0.06264194846153259, + -0.00692738639190793, + -0.042652495205402374, + -0.03323875740170479, + 0.020109552890062332, + -0.06693156063556671, + 0.020747194066643715, + -0.06408334523439407, + -0.0817880630493164, + 0.10475187003612518, + 0.020755527541041374, + -0.027549458667635918, + -0.14291056990623474, + 0.08661480993032455, + 0.0003584704245440662, + -0.05644262209534645, + 0.02889825776219368, + -0.005129124969244003, + 0.045335929840803146, + -0.038764528930187225, + -0.04732908308506012, + 0.04355499893426895, + -0.053339943289756775, + 0.00837617740035057, + -0.029724102467298508, + -2.3399509885280168e-08, + 0.019372593611478806, + -0.0038464926183223724, + 0.017761897295713425, + -0.058976367115974426, + 0.011182504706084728, + 0.02346051298081875, + -0.06080750748515129, + -0.1527256816625595, + -0.05276811122894287, + -0.11748330295085907, + 0.12091880291700363, + 0.044415801763534546, + -0.10715768486261368, + -0.07251200079917908, + -0.005856769159436226, + -0.02968599833548069, + -0.10835552960634232, + -0.009089047089219093, + -0.019963979721069336, + -0.04177790880203247, + 0.01627008058130741, + 0.0050757043063640594, + -0.021241098642349243, + 0.007632864639163017, + -0.008471564389765263, + 0.06678082793951035, + -0.04342897608876228, + -0.07098952680826187, + 0.03361627086997032, + 0.08385995775461197, + -0.003324599005281925, + 0.004720442462712526, + 0.1035914272069931, + -0.022190144285559654, + -0.028897147625684738, + 0.11360418796539307, + -0.01251451950520277, + -0.0676765888929367, + 0.04270293563604355, + 0.11544258892536163, + 0.05579178035259247, + -0.04768192768096924, + -0.011201392859220505, + 0.012323041446506977, + -0.02325408346951008, + 0.02688474953174591, + 0.01644199714064598, + -0.0025951776187866926, + -0.01448163390159607, + -0.07973895221948624, + 0.02338526025414467, + -0.048921190202236176, + -0.01855931058526039, + 0.047271404415369034, + -0.07352261245250702, + 0.037864603102207184, + 0.04500573128461838, + 0.022906113415956497, + 0.04735092446208, + 0.023997105658054352, + 0.11963082104921341, + -0.008485901169478893, + 0.06496518850326538, + 0.023888861760497093 + ], + "shield-checkered-bold||badge,security,defense,authentication,authenticated,guarded,locked,encrypted,encryption": [ + -0.05203584209084511, + 0.03383336588740349, + -0.06966746598482132, + -0.005140394903719425, + 0.02183167077600956, + 0.024488266557455063, + 0.15689119696617126, + -0.04005452245473862, + -0.017320943996310234, + -0.03311733528971672, + 0.07138031721115112, + -0.017150282859802246, + 0.08472549170255661, + 0.008849110454320908, + -0.047815628349781036, + -0.001823939266614616, + 0.010182793252170086, + -0.06927687674760818, + 0.010690061375498772, + 0.015433805994689465, + -0.02819286845624447, + 0.0026579275727272034, + 0.031388889998197556, + 0.030754713341593742, + -0.04988885670900345, + 0.01664646901190281, + -0.0019513206789270043, + -0.017583008855581284, + -0.021885940805077553, + -0.07268630713224411, + -0.03018019162118435, + -0.03627145290374756, + 0.04684621840715408, + 0.08261103183031082, + -0.05008162558078766, + -0.03586014732718468, + 0.04408935084939003, + 0.03915705159306526, + -0.01505282148718834, + -0.03959285095334053, + -0.08290857821702957, + -0.14204353094100952, + -0.033433590084314346, + 0.07313033938407898, + -0.013021799735724926, + 0.06826438754796982, + 0.03747066482901573, + 0.03823860362172127, + -0.01515093632042408, + -0.008189952932298183, + 0.008758448995649815, + -0.021330520510673523, + -0.11161527782678604, + 0.06629814207553864, + 0.013579790480434895, + -0.033541224896907806, + -0.05200713500380516, + -0.039967797696590424, + 0.03546960651874542, + 0.024492647498846054, + 0.027623910456895828, + 0.06340265274047852, + -0.0017683024052530527, + 0.12353738397359848, + -0.027063660323619843, + 0.011191080324351788, + -0.05306769907474518, + -0.009492921642959118, + 0.0013875924050807953, + 0.0013507212279364467, + 0.013327579014003277, + -0.001423186855390668, + -0.007484044414013624, + -0.023376980796456337, + 0.0009353460045531392, + 0.014089941047132015, + 0.0020813699811697006, + -0.03403370827436447, + 0.04646531492471695, + -0.08748133480548859, + -0.059146661311388016, + -0.03553290292620659, + -0.07968872785568237, + 0.08028250187635422, + 0.02411406859755516, + 0.04959540069103241, + -0.04328402876853943, + -0.06977861374616623, + -0.016452617943286896, + -0.03986049070954323, + 0.021834509447216988, + -0.01430260669440031, + 0.03418692573904991, + 0.007119761314243078, + -0.0846196785569191, + -0.016926880925893784, + 0.02670465037226677, + -0.013859694823622704, + -0.07174026966094971, + 0.08754127472639084, + -0.026231389492750168, + 0.0023868840653449297, + -0.0499192476272583, + -0.009930700063705444, + 0.002695768140256405, + -0.00901873130351305, + 0.014800206758081913, + -0.039202455431222916, + -0.006563377566635609, + 0.03272060677409172, + 0.018001029267907143, + -0.03687030449509621, + -0.05130074918270111, + -0.06682382524013519, + -0.02669447287917137, + 0.020767340436577797, + -0.10326322913169861, + 0.048859935253858566, + 0.13228458166122437, + 0.07808806747198105, + 0.05382745712995529, + 0.003099092748016119, + 0.062341634184122086, + -0.108165442943573, + 0.020721551030874252, + -0.007518996484577656, + 0.005320400930941105, + -2.2448746225439393e-33, + 0.03091050498187542, + 0.04626258462667465, + -0.052500512450933456, + 0.08955515176057816, + 0.0016503693768754601, + -0.05063571780920029, + 0.01871754415333271, + -0.05936833471059799, + -0.051430732011795044, + 0.13229867815971375, + 0.04813927784562111, + 0.07936950773000717, + 0.007784225977957249, + 0.07023320347070694, + 0.13205300271511078, + 0.029200954362750053, + -0.04428816959261894, + -0.030608050525188446, + 0.039679016917943954, + -0.040795404464006424, + -0.02570059336721897, + 0.049309249967336655, + 0.02655963785946369, + 0.03114752285182476, + 0.051217976957559586, + -0.047013625502586365, + 0.016776874661445618, + 0.025090565904974937, + -0.001740234438329935, + 0.06114722415804863, + -0.0008507007150910795, + -0.0036144559271633625, + 0.04819031059741974, + 0.034904852509498596, + 0.03376331552863121, + 0.028586402535438538, + 0.008428889326751232, + -0.10682912915945053, + 0.012545807287096977, + -0.09511338174343109, + -0.06229715049266815, + -0.07826808094978333, + -0.04369064420461655, + -0.0396433100104332, + 0.06030437350273132, + -0.0013676561648026109, + -0.02465221844613552, + -0.015508403070271015, + 0.03960205242037773, + -0.007249125279486179, + 0.00048265248187817633, + -0.020288286730647087, + -0.022027432918548584, + -0.04273331165313721, + -0.06752649694681168, + -0.05700530484318733, + 0.0089736832305789, + 0.1470048427581787, + -0.039061710238456726, + 0.018508445471525192, + -0.06584440916776657, + 0.04711196571588516, + 0.0323491133749485, + -0.05101361125707626, + -0.016315121203660965, + 0.011474303901195526, + -0.03632061183452606, + -0.017097849398851395, + 0.03521834686398506, + 0.03307877108454704, + -0.06714227795600891, + 0.06885485351085663, + 0.07475528866052628, + 0.029469741508364677, + -0.01620282605290413, + -0.02053936943411827, + 0.02840522490441799, + 0.030754169449210167, + 0.00605763541534543, + -0.028248470276594162, + -0.09215033799409866, + 0.06124060973525047, + -0.06584241986274719, + 0.12924714386463165, + -0.05287356302142143, + -0.0015783860580995679, + 0.02148227021098137, + -0.04985452815890312, + -0.06921639293432236, + -0.03980110213160515, + -0.02865550108253956, + 0.0072019402869045734, + 0.08051331341266632, + -0.021479960530996323, + -0.10434257239103317, + -2.1925423946470484e-34, + -0.024473702535033226, + -0.07162626832723618, + 0.032510511577129364, + -0.003963026683777571, + -0.021785574033856392, + -0.04228407144546509, + -0.0036590818781405687, + 0.07632438838481903, + -0.013130919076502323, + 0.012736705131828785, + 0.048295341432094574, + 0.022150304168462753, + 0.0008202387834899127, + -0.014798542484641075, + 0.008609941229224205, + -0.02109650894999504, + 0.013023517094552517, + 0.019960371777415276, + -0.020953398197889328, + 0.044278841465711594, + 0.03436851501464844, + 0.04319673031568527, + 0.016054704785346985, + 0.058757055550813675, + 0.027926450595259666, + 0.06531308591365814, + -0.03090794011950493, + 0.012166452594101429, + 0.04958103597164154, + 0.02418127842247486, + 0.04702603816986084, + -0.020686747506260872, + 0.02467351034283638, + 0.07299427688121796, + -0.08681081235408783, + -0.048662878572940826, + 0.10003016144037247, + -0.012464254163205624, + -0.06253982335329056, + -0.06094107776880264, + 0.013082515448331833, + 0.007233317941427231, + 0.03957360237836838, + 0.04613113030791283, + -0.011216478422284126, + -0.06728948652744293, + -0.035320837050676346, + -0.02967957779765129, + -0.035332903265953064, + 0.031857412308454514, + 0.005752237979322672, + -0.022256337106227875, + -0.013734240084886551, + 0.052390772849321365, + -0.06045970320701599, + 0.03362467139959335, + -0.020863860845565796, + 0.003915600944310427, + 0.029567541554570198, + 0.04391603171825409, + 0.0803246796131134, + -0.018170788884162903, + 0.01538881566375494, + 0.06462403386831284, + -0.015447556972503662, + -0.04518144205212593, + -0.049295663833618164, + 0.04871851205825806, + -0.0775393694639206, + 0.04314024746417999, + 0.0731920450925827, + -0.011881870217621326, + -0.039112720638513565, + -0.02617391012609005, + 0.03470974415540695, + -0.05229734256863594, + 0.009992444887757301, + -0.04594691842794418, + -0.08915562927722931, + 0.0961923599243164, + -0.0026688233483582735, + -0.029153741896152496, + -0.13688167929649353, + 0.0818442702293396, + 0.016257306560873985, + -0.05362599715590477, + 0.0388680063188076, + -0.01747947372496128, + 0.05670493468642235, + -0.05418282002210617, + -0.03821782395243645, + 0.02930040843784809, + -0.04566100612282753, + 0.01548945251852274, + -0.03258100897073746, + -2.353717043490633e-08, + 0.01914938911795616, + 0.009700767695903778, + 0.0021976553834974766, + -0.06374632567167282, + 0.005497253034263849, + 0.01290853414684534, + -0.05695544555783272, + -0.1526835411787033, + -0.05451612547039986, + -0.10640817135572433, + 0.13101503252983093, + 0.021435795351862907, + -0.10611521452665329, + -0.06684831529855728, + -0.0072785341180861, + -0.025343377143144608, + -0.1296025514602661, + 0.010747791267931461, + -0.03522864356637001, + -0.05106069892644882, + 0.03576032817363739, + -0.009361740201711655, + -0.01700441911816597, + -0.007086106110364199, + -0.011290139518678188, + 0.06512469798326492, + -0.05601656436920166, + -0.07266470789909363, + 0.024403663352131844, + 0.08497428148984909, + -0.003783559426665306, + 0.011782650835812092, + 0.1033148467540741, + -0.010822047479450703, + -0.011429084464907646, + 0.11022132635116577, + -0.014739871956408024, + -0.06389909982681274, + 0.045668669044971466, + 0.11626541614532471, + 0.05831821635365486, + -0.06683401018381119, + -0.0070051997900009155, + 0.024208558723330498, + -0.02240612916648388, + 0.0222531259059906, + 0.009027153253555298, + 0.001092294929549098, + -0.024684438481926918, + -0.08636736869812012, + 0.02880535088479519, + -0.04993165656924248, + -0.02180572971701622, + 0.04423319548368454, + -0.07239439338445663, + 0.034046370536088943, + 0.052327606827020645, + 0.04150255396962166, + 0.041060496121644974, + 0.02267252467572689, + 0.10783462226390839, + -0.001941428636200726, + 0.029108839109539986, + 0.02162165753543377 + ], + "shield-chevron-bold||badge,security,defense,authentication,authenticated,guarded,locked,encrypted,encryption": [ + -0.0657903403043747, + 0.03440367802977562, + -0.03392234817147255, + -0.006514095235615969, + 0.002948059467598796, + 0.03251664340496063, + 0.10526363551616669, + -0.024605117738246918, + -0.006791074760258198, + -0.05715387687087059, + 0.0694114938378334, + -0.01124438364058733, + 0.07560770213603973, + -0.007732986006885767, + -0.008295342326164246, + 0.0257404912263155, + 0.007466231472790241, + -0.04154077544808388, + 0.010471312329173088, + 0.009193938225507736, + -0.009954932145774364, + -0.002027390990406275, + -0.004525044001638889, + 0.026949292048811913, + -0.05694745108485222, + 0.02986716479063034, + -0.01490357518196106, + -0.023470357060432434, + -0.010296191088855267, + -0.06743976473808289, + -0.032629627734422684, + -0.03142944723367691, + 0.05434286966919899, + 0.07358193397521973, + -0.05497733876109123, + -0.023051390424370766, + 0.05349915102124214, + 0.04900087043642998, + 0.0063939811661839485, + -0.014871146529912949, + -0.06664784252643585, + -0.12542903423309326, + -0.05802156403660774, + 0.0850384384393692, + -0.016843698918819427, + 0.026162417605519295, + 0.03430968523025513, + 0.006184627767652273, + -0.021740542724728584, + -0.005376544315367937, + 0.0021857114043086767, + -0.0015983893536031246, + -0.1300153285264969, + 0.06696916371583939, + 0.01556018739938736, + -0.05831538513302803, + -0.07163471728563309, + -0.02303754724562168, + 0.05903211236000061, + 0.009378666058182716, + 0.04102740436792374, + 0.05650531128048897, + -0.008706587366759777, + 0.1266484260559082, + -0.03176376596093178, + 0.006310159806162119, + -0.009908449836075306, + -0.008848879486322403, + 0.011400355026125908, + 0.0034534477163106203, + -0.00930758472532034, + 0.013657782226800919, + -0.04094831272959709, + -0.025709763169288635, + 0.010866096243262291, + 0.02346685715019703, + 0.007996251806616783, + -0.02185513637959957, + 0.03538091853260994, + -0.09450533241033554, + -0.03502374514937401, + -0.0020672697573900223, + -0.06456441432237625, + 0.07848510891199112, + 0.03306726738810539, + 0.07914204895496368, + -0.046346236020326614, + -0.07214666903018951, + -0.01414420548826456, + -0.01658753491938114, + 0.010052235797047615, + -0.0459907241165638, + 0.04532324895262718, + -0.00018239935161545873, + -0.07239007949829102, + -0.01109517365694046, + 0.023548433557152748, + -0.025389187037944794, + -0.06289765238761902, + 0.08095315098762512, + -0.003254143288359046, + 0.014326872304081917, + -0.05573824420571327, + -0.003415103303268552, + -0.013121217489242554, + 0.006305520888417959, + 3.191997166140936e-05, + -0.04517248645424843, + -0.007832282222807407, + 0.05656195059418678, + 0.02171332575380802, + -0.04024172201752663, + -0.06737235933542252, + -0.10429400950670242, + -0.06347618252038956, + 0.021851902827620506, + -0.12601909041404724, + 0.02468506433069706, + 0.14571432769298553, + 0.10260926932096481, + 0.03515535593032837, + -0.01903511770069599, + 0.03705822676420212, + -0.08245111256837845, + -0.00467149680480361, + -0.014217997901141644, + -0.012272050604224205, + -2.082263162535915e-33, + 0.0099136121571064, + 0.04434584453701973, + -0.054597869515419006, + 0.07397003471851349, + 0.029321569949388504, + -0.01713741570711136, + 0.009291987866163254, + -0.06548064947128296, + -0.07585135847330093, + 0.10737789422273636, + 0.06236894801259041, + 0.10545656085014343, + 0.0009056201088242233, + 0.07110308855772018, + 0.08189614117145538, + 0.02392541989684105, + -0.028865071013569832, + -0.039237406104803085, + 0.030378062278032303, + -0.06054021418094635, + -0.008021029643714428, + 0.07860373705625534, + 0.0012908922508358955, + 0.035137519240379333, + 0.07960982620716095, + -0.010416693985462189, + 0.007745193317532539, + 0.042674385011196136, + -0.02243180014193058, + 0.07496084272861481, + 0.016688546165823936, + -0.03938078135251999, + 0.04166164994239807, + 0.028701821342110634, + 0.04448295757174492, + 0.03852871432900429, + -0.004907046910375357, + -0.12385105341672897, + 0.009789897128939629, + -0.08394401520490646, + -0.05799492076039314, + -0.07414001226425171, + -0.04631524533033371, + -0.039382994174957275, + 0.03836536407470703, + 0.0012893863022327423, + -0.016387568786740303, + -0.019210701808333397, + 0.03462962806224823, + -0.02290375344455242, + -0.016533900052309036, + -0.00316595914773643, + -0.02939850091934204, + -0.05933254584670067, + -0.04976150766015053, + -0.07103335112333298, + -0.01037402730435133, + 0.1367078721523285, + -0.040961842983961105, + 0.020804908126592636, + -0.06961121410131454, + 0.04759502038359642, + 0.052354805171489716, + -0.03751326724886894, + -0.015279104933142662, + -0.0020869742147624493, + -0.0441451333463192, + 0.006217173300683498, + 0.04073955491185188, + 0.043089594691991806, + -0.046340759843587875, + 0.07811567187309265, + 0.06301205605268478, + 0.03251906856894493, + -0.01203668862581253, + -0.017403295263648033, + 0.013874933123588562, + -0.005956957116723061, + 0.018180958926677704, + 0.006475991569459438, + -0.13713900744915009, + 0.023286020383238792, + -0.052680354565382004, + 0.11855504661798477, + -0.03769167885184288, + -0.004318032413721085, + 0.029754096642136574, + -0.028287993744015694, + -0.08856276422739029, + -0.02393246255815029, + -0.04931136965751648, + -0.0005906440783292055, + 0.06984500586986542, + 0.003553455462679267, + -0.10466902703046799, + -6.4371466550570065e-34, + -0.03756437823176384, + -0.03558001667261124, + 0.028613710775971413, + -0.044967930763959885, + -0.06037113070487976, + -0.00401880731806159, + 0.014990909025073051, + 0.06516844779253006, + -0.02808191254734993, + 0.030807672068476677, + 0.06075681373476982, + 0.05642617493867874, + -0.015626704320311546, + -0.023200562223792076, + -0.0105945048853755, + -0.023727431893348694, + 0.035315245389938354, + -0.004243351053446531, + -0.017217112705111504, + 0.044052522629499435, + 0.009175539948046207, + 0.03735846281051636, + -0.03703479468822479, + 0.11429796367883682, + 0.02888309396803379, + 0.05918748676776886, + -0.002740600612014532, + -0.002503122901543975, + 0.03727373853325844, + 0.027975652366876602, + 0.05435500666499138, + -0.03255748748779297, + 0.0042441352270543575, + 0.06401105970144272, + -0.09149261564016342, + -0.06307045370340347, + 0.07300198823213577, + 0.002390926470980048, + -0.057106003165245056, + -0.059412144124507904, + 0.015957802534103394, + -0.012304664589464664, + 0.059340376406908035, + 0.03016710840165615, + -0.02729431726038456, + -0.05874241515994072, + -0.03521500155329704, + -0.05500362068414688, + -0.0013609337620437145, + 0.037182897329330444, + 0.022027919068932533, + -0.006278249900788069, + -0.02152196504175663, + 0.06444709748029709, + -0.06992638856172562, + 0.04088817909359932, + -0.016712317243218422, + 0.05415630340576172, + 0.032133039087057114, + 0.03496020659804344, + 0.0800555944442749, + 0.0012567575322464108, + 0.020598476752638817, + 0.040408723056316376, + -0.010563098825514317, + -0.03689296543598175, + -0.06553329527378082, + 0.03034432791173458, + -0.07939138263463974, + 0.01086711697280407, + 0.06501953303813934, + 0.012673689052462578, + -0.054008327424526215, + -0.04589080810546875, + -0.00563811045140028, + -0.059843759983778, + 0.0340852327644825, + -0.06949324905872345, + -0.09159461408853531, + 0.1091139167547226, + 0.016989989206194878, + -0.025635750964283943, + -0.12572214007377625, + 0.08833634853363037, + -0.01883610710501671, + -0.04510718211531639, + 0.031908828765153885, + 0.01583867520093918, + 0.07865913212299347, + -0.04562006890773773, + -0.03778054937720299, + 0.03592902049422264, + -0.07644394040107727, + 0.03073493018746376, + -0.04433400183916092, + -2.181361935527093e-08, + 0.027812287211418152, + 0.00030245340894907713, + 0.0064244261011481285, + -0.07743819057941437, + -0.018067797645926476, + 0.013341830112040043, + -0.06367119401693344, + -0.13010814785957336, + -0.08011996746063232, + -0.09088656306266785, + 0.14538182318210602, + 0.023981796577572823, + -0.10994401574134827, + -0.05475173890590668, + 0.02417043223977089, + -0.013763012364506721, + -0.1016048789024353, + -0.0028357210103422403, + -0.015508628450334072, + -0.06330671161413193, + 0.004143686965107918, + -0.003457356244325638, + -0.005488966591656208, + 0.013582199811935425, + -0.01767738349735737, + 0.05357867106795311, + -0.008816046640276909, + -0.06972113996744156, + 0.052846796810626984, + 0.08433517813682556, + -0.013169188983738422, + 0.013163707219064236, + 0.08885806053876877, + -0.014056825079023838, + -0.0303401630371809, + 0.08385641127824783, + 0.0006321572582237422, + -0.07031923532485962, + 0.040240634232759476, + 0.11145558953285217, + 0.08134512603282928, + -0.058365270495414734, + 0.011157234199345112, + 0.025250433012843132, + -0.04109635204076767, + 0.03832295164465904, + 0.02849428914487362, + 0.02569624036550522, + -0.009562550112605095, + -0.06598710268735886, + 0.047744426876306534, + -0.042874775826931, + -0.050337668508291245, + 0.044755786657333374, + -0.07621148973703384, + 0.019468309357762337, + 0.03512991964817047, + 0.024092037230730057, + 0.04213155433535576, + 0.006764760706573725, + 0.10275793820619583, + -0.01347206812351942, + 0.0695948451757431, + 0.007369735278189182 + ], + "shield-plus-bold||badge,security,defense,authentication,authenticated,guarded,locked,encrypted,encryption": [ + -0.06601319462060928, + 0.03505660966038704, + -0.04648420587182045, + -0.013337453827261925, + 0.029860761016607285, + 0.0465441569685936, + 0.10894719511270523, + -0.04790373519062996, + -0.025922738015651703, + -0.03169374167919159, + 0.07659003138542175, + -0.030774738639593124, + 0.08201582729816437, + 0.00321311317384243, + -0.007564891129732132, + -0.00037373436498455703, + 0.007595480885356665, + -0.03428168594837189, + 0.0034513543359935284, + 0.0020834398455917835, + -0.020458631217479706, + -0.008586901240050793, + 0.004538324195891619, + 0.018830159679055214, + -0.028774328529834747, + 0.024085912853479385, + -0.021061303094029427, + -0.018746936693787575, + 0.010194167494773865, + -0.06811629980802536, + -0.02747246064245701, + -0.0474577471613884, + 0.0667860135436058, + 0.06879047304391861, + -0.07764881104230881, + -0.04691101238131523, + 0.05003455653786659, + 0.05208825692534447, + -0.02124682255089283, + -0.04162194952368736, + -0.07949946075677872, + -0.10985665768384933, + -0.024209382012486458, + 0.09053872525691986, + -0.020777668803930283, + 0.020844431594014168, + 0.017080316320061684, + 0.00449210312217474, + 0.0017739427275955677, + -0.01935366727411747, + 0.017038404941558838, + -0.008378474041819572, + -0.1250767707824707, + 0.08790898323059082, + 0.031552039086818695, + -0.038408659398555756, + -0.07550682872533798, + -0.03191615268588066, + 0.02476540394127369, + 0.01851459965109825, + 0.02341650240123272, + 0.04121597483754158, + 0.010924765840172768, + 0.12079717963933945, + -0.028397584334015846, + -7.387388905044645e-05, + -0.034140460193157196, + 0.022311599925160408, + -0.0026865294203162193, + -0.0034485328942537308, + 0.003861859906464815, + -0.004715295508503914, + -0.03328341618180275, + -0.010382391512393951, + 0.013043154962360859, + 0.04704464226961136, + -0.023968884721398354, + -0.021997228264808655, + 0.022991470992565155, + -0.0734008252620697, + -0.03519025072455406, + -0.018791787326335907, + -0.06914704293012619, + 0.09198714792728424, + 0.04119822010397911, + 0.06513503193855286, + -0.05257008224725723, + -0.09315469861030579, + -0.01761152781546116, + -0.02282634563744068, + 0.012251309119164944, + -0.03694391995668411, + 0.017275206744670868, + 0.022629493847489357, + -0.09304484724998474, + -0.02016652747988701, + 0.011922352947294712, + -0.019671205431222916, + -0.09765457361936569, + 0.07137596607208252, + -0.0311282891780138, + 0.0031359666027128696, + -0.047722604125738144, + -0.011388757266104221, + 0.018021777272224426, + -0.04166066646575928, + 0.009240364655852318, + -0.06900922954082489, + -0.011920102871954441, + 0.03620215877890587, + 0.03801146149635315, + -0.040645208209753036, + -0.09199292212724686, + -0.09405677765607834, + -0.022699743509292603, + 0.029019206762313843, + -0.0884498730301857, + 0.03961317613720894, + 0.13660664856433868, + 0.06476923823356628, + 0.07133214175701141, + 0.00597824901342392, + 0.07647541910409927, + -0.08535410463809967, + -0.01157133188098669, + -0.023241529241204262, + 0.007720849942415953, + -1.6643126563521968e-33, + 0.021192563697695732, + 0.04163814336061478, + -0.06738118827342987, + 0.0996812954545021, + 0.01034757774323225, + -0.02305217646062374, + 0.008663136512041092, + -0.05206586420536041, + -0.05453582480549812, + 0.09766335785388947, + 0.031342074275016785, + 0.08832748234272003, + 0.00491448724642396, + 0.0870191901922226, + 0.1128934770822525, + 0.024466775357723236, + -0.010263855569064617, + -0.045939620584249496, + 0.050969358533620834, + -0.02829628624022007, + -0.0030212034471333027, + 0.07521185278892517, + 0.020256074145436287, + 0.038941238075494766, + 0.0929616317152977, + -0.02374502457678318, + 0.032011453062295914, + 0.019671542569994926, + 0.006562996190041304, + 0.06884313374757767, + 0.00925125740468502, + -0.013695897534489632, + 0.011575426906347275, + 0.04304073750972748, + 0.04430172219872475, + 0.05265433341264725, + -0.007820882834494114, + -0.10856066644191742, + 0.045627202838659286, + -0.08766642957925797, + -0.09579505026340485, + -0.08178055286407471, + -0.07861102372407913, + -0.06603644788265228, + 0.05318022891879082, + -0.007720560766756535, + -0.02773243747651577, + -0.039071571081876755, + 0.026370525360107422, + -0.005058825947344303, + -0.01574963703751564, + -0.013099879957735538, + -0.031012091785669327, + -0.04618062824010849, + -0.07425803691148758, + -0.04918299987912178, + -0.0033132745884358883, + 0.15598571300506592, + -0.034257400780916214, + 0.02420453354716301, + -0.07119239121675491, + 0.016652213409543037, + 0.04162806272506714, + -0.04611160233616829, + -0.009149965830147266, + -5.216683348407969e-05, + -0.028277549892663956, + -0.02603580616414547, + 0.029380377382040024, + 0.028874298557639122, + -0.042527616024017334, + 0.06735317409038544, + 0.05495614930987358, + 0.039446305483579636, + -0.005337686277925968, + -0.027103561908006668, + 0.026455670595169067, + 0.030848173424601555, + 0.01860954612493515, + -0.02115015871822834, + -0.12045449018478394, + 0.058964841067790985, + -0.04583423584699631, + 0.13361236453056335, + -0.0500832200050354, + 0.03029683604836464, + 0.01583620347082615, + -0.017346031963825226, + -0.07298341393470764, + -0.03999267891049385, + -0.026558510959148407, + 0.01669463887810707, + 0.08014680445194244, + -0.007255587261170149, + -0.12562237679958344, + -7.73437354781152e-34, + -0.036833684891462326, + -0.06777162849903107, + -0.007336533162742853, + -0.038793593645095825, + -0.04072702303528786, + -0.021522078663110733, + 0.005785186309367418, + 0.06954048573970795, + -0.026551006361842155, + 0.025142783299088478, + 0.056950848549604416, + 0.03836151584982872, + -0.030719147995114326, + -0.004259906243532896, + -0.003997537307441235, + -0.018830280750989914, + -0.00482439249753952, + 0.010951275005936623, + -0.0027466053143143654, + 0.01945415511727333, + 0.005226766224950552, + 0.040333040058612823, + 0.0016248346073552966, + 0.06000549718737602, + 0.029794732108712196, + 0.051307618618011475, + -0.03456925228238106, + 0.030081357806921005, + 0.04806000739336014, + -0.007678846828639507, + 0.053759414702653885, + -0.013323334977030754, + 0.003700916189700365, + 0.05500355735421181, + -0.09801209717988968, + -0.04704951122403145, + 0.09363415092229843, + 0.004426403436809778, + -0.06806646287441254, + -0.05860484763979912, + 0.021634086966514587, + -0.0061681135557591915, + 0.037190139293670654, + 0.026175398379564285, + 0.007053495850414038, + -0.05717496946454048, + -0.01993141509592533, + -0.061556342989206314, + -0.018681807443499565, + 0.02623346634209156, + 0.0438663586974144, + -0.018198421224951744, + -0.021170899271965027, + 0.04614284262061119, + -0.0704726055264473, + 0.004702883772552013, + -0.0018317492213100195, + 0.036699339747428894, + 0.025139322504401207, + 0.0192522332072258, + 0.07743610441684723, + 0.007036022376269102, + 0.008320644497871399, + 0.0546443834900856, + -0.02083716355264187, + -0.013435855507850647, + -0.043957337737083435, + 0.0367763452231884, + -0.10695317387580872, + 0.0031681617256253958, + 0.06822434067726135, + 0.001445071422494948, + -0.035356491804122925, + -0.02632245421409607, + -0.007871778681874275, + -0.06284964084625244, + 0.016719210892915726, + -0.055186234414577484, + -0.055999960750341415, + 0.10285855084657669, + 0.006037104409188032, + -0.01087738387286663, + -0.14645500481128693, + 0.09133918583393097, + 0.0030719449277967215, + -0.05172359570860863, + 0.03530788794159889, + 0.023238634690642357, + 0.056596893817186356, + -0.04136350378394127, + -0.03797689080238342, + 0.0664169043302536, + -0.09516500681638718, + 0.025618119165301323, + -0.014394343830645084, + -2.277129418359891e-08, + 0.04537858068943024, + -0.007293002214282751, + -0.009853031486272812, + -0.08218546211719513, + 0.0018626225646585226, + 0.021772800013422966, + -0.06942310929298401, + -0.129999577999115, + -0.05288320034742355, + -0.103697769343853, + 0.1260242909193039, + 0.03678581863641739, + -0.09533223509788513, + -0.06147494167089462, + -0.016564037650823593, + -0.015720108523964882, + -0.08706370741128922, + -0.021430552005767822, + -0.010643026791512966, + -0.05156081169843674, + 0.02774498052895069, + 0.01255104225128889, + -0.025347771123051643, + -0.012172537855803967, + -0.00457671657204628, + 0.0674324482679367, + -0.02699282579123974, + -0.07555607706308365, + 0.03964414820075035, + 0.07467156648635864, + -0.010984905064105988, + -0.007230675779283047, + 0.09484492987394333, + 0.0018055990803986788, + -0.022896533831954002, + 0.09820464253425598, + -0.011712562292814255, + -0.07457364350557327, + 0.03498833626508713, + 0.11206110566854477, + 0.052178673446178436, + -0.06202292814850807, + 0.032538626343011856, + 0.010067607276141644, + -0.007558418437838554, + 0.03833778202533722, + 0.010822677984833717, + -0.010625752620398998, + -0.0022709290497004986, + -0.047664061188697815, + 0.03184514492750168, + -0.041415728628635406, + -0.000746033270843327, + 0.04423604905605316, + -0.0867888405919075, + 0.03264468535780907, + 0.045802440494298935, + 0.015397479757666588, + 0.06076694652438164, + 0.02366485632956028, + 0.11278437823057175, + -0.043252091854810715, + 0.053145233541727066, + 0.052560750395059586 + ], + "shield-slash-bold||badge,security,unsecured,defense,undefended,authentication,unauthenticated,unguarded,unlocked,unencrypted,encryption,disabled": [ + -0.08261871337890625, + 0.01840808056294918, + -0.053379125893116, + -0.007866582833230495, + 0.028912438079714775, + 0.03327728062868118, + 0.06465563178062439, + -0.03685707226395607, + -0.02289566770195961, + -0.04438687488436699, + 0.12026049941778183, + -0.023005567491054535, + 0.05053725093603134, + 0.04562437906861305, + -0.03501627966761589, + 0.0022002162877470255, + 0.026519354432821274, + -0.04618721827864647, + 0.013411265797913074, + 0.027490178123116493, + -0.04393558204174042, + 0.06342409551143646, + -0.03206832334399223, + -0.0037749630864709616, + -0.03642219305038452, + -0.0045158942230045795, + -0.02323644794523716, + -0.020820675417780876, + -0.016503924503922462, + -0.0809190422296524, + -0.026349306106567383, + -0.055508002638816833, + 0.07542571425437927, + 0.07081692665815353, + -0.020581116899847984, + -0.017281239852309227, + 0.07260257750749588, + 0.03818127140402794, + -0.016451820731163025, + -0.03649796545505524, + -0.06451663374900818, + -0.10794007033109665, + -0.044974006712436676, + 0.07766987383365631, + -0.013999132439494133, + -0.014587038196623325, + 0.014381426386535168, + -0.007565543986856937, + -0.00616396963596344, + -0.019142404198646545, + -0.023149928078055382, + -0.01677575707435608, + -0.10376414656639099, + 0.04947029799222946, + 0.030356405302882195, + -0.05368540436029434, + -0.06777957826852798, + -0.007881336845457554, + 0.05846097692847252, + 0.03362308815121651, + 0.035675231367349625, + 0.030023759230971336, + 0.0024073596578091383, + 0.10736946016550064, + -0.05146900191903114, + -0.001646965043619275, + -0.009850805625319481, + -0.0035209052730351686, + -0.008379681967198849, + -0.004684431478381157, + -0.016046008095145226, + -0.008331254124641418, + -0.07088854163885117, + -0.020149456337094307, + 0.02336987666785717, + 0.0359438993036747, + -0.022839311510324478, + -0.023704752326011658, + 0.03943378105759621, + -0.08143414556980133, + -0.04007649049162865, + -0.02551516890525818, + -0.05654185265302658, + 0.10801424086093903, + 0.04864910989999771, + 0.08785048872232437, + -0.07142867147922516, + -0.07957006245851517, + 0.009265362285077572, + -0.022251272574067116, + 0.00889615248888731, + -0.026846373453736305, + 0.04002011939883232, + 0.023656565696001053, + -0.09517677128314972, + -0.021480200812220573, + 0.028344275429844856, + -0.03972230851650238, + -0.13017073273658752, + 0.09604359418153763, + -0.034206636250019073, + 0.003740221494808793, + -0.07179640978574753, + -0.002723847283050418, + 0.015474018640816212, + -0.01626013219356537, + 0.05371477082371712, + -0.0625235065817833, + -0.016335831955075264, + 0.022998938336968422, + 0.03722340986132622, + -0.027029119431972504, + -0.08691660314798355, + -0.09803261607885361, + -0.025983650237321854, + -0.003769605653360486, + -0.10901129990816116, + -0.010132553055882454, + 0.12297554314136505, + 0.10194362699985504, + 0.05684307962656021, + -0.022146444767713547, + 0.05113551393151283, + -0.09152283519506454, + -0.009485880844295025, + -0.010216610506176949, + 0.02635522373020649, + 6.39931961418953e-34, + 0.04856643080711365, + 0.054059021174907684, + -0.04595642164349556, + 0.07570481300354004, + 0.04773664474487305, + -0.03996514156460762, + 0.018865928053855896, + -0.041205208748579025, + -0.07721076905727386, + 0.07794590294361115, + 0.04602096602320671, + 0.08126916736364365, + 0.006272453814744949, + 0.05779813602566719, + 0.10663007944822311, + 0.019500786438584328, + 0.02371448092162609, + -0.029453685507178307, + 0.037276674062013626, + -0.02543899044394493, + 0.00708122830837965, + 0.09062876552343369, + 0.025778697803616524, + 0.0029987746383994818, + 0.057253576815128326, + -0.009322762489318848, + -0.0036165788769721985, + 0.010639790445566177, + 0.052861958742141724, + 0.0737558975815773, + 0.006991514936089516, + -0.013744394294917583, + 0.031603727489709854, + 0.02608003094792366, + 0.022637419402599335, + 0.05828191339969635, + -0.02649427205324173, + -0.0840333104133606, + 0.026163531467318535, + -0.04782824590802193, + -0.09442885220050812, + -0.09177091717720032, + -0.09375052154064178, + -0.057675622403621674, + 0.0670461654663086, + -0.014358884654939175, + -0.021275769919157028, + -0.07420666515827179, + 0.01605546660721302, + 0.026050135493278503, + -0.04769948124885559, + -0.003753944067284465, + 0.029807403683662415, + -0.04586389660835266, + -0.06753173470497131, + -0.06638498604297638, + -0.028773855417966843, + 0.11092063784599304, + -0.03794875741004944, + 0.001019998686388135, + -0.05086570605635643, + 0.02680600807070732, + 0.0175778828561306, + -0.05707724019885063, + -0.02505190670490265, + -0.004321121145039797, + -0.035253409296274185, + -0.020785139873623848, + 0.004799636080861092, + 0.034553173929452896, + -0.07005965709686279, + 0.05896971747279167, + 0.0683363825082779, + 0.052736710757017136, + -0.057660896331071854, + -0.0202301274985075, + -0.003135940060019493, + 0.018372921273112297, + 0.02220734767615795, + -0.025613121688365936, + -0.14342084527015686, + 0.035424571484327316, + -0.04455475136637688, + 0.1252334713935852, + -0.03095763362944126, + 0.010607670992612839, + 0.009470867924392223, + -0.008723314851522446, + -0.08465344458818436, + -0.016528526321053505, + -0.0011371128493919969, + 0.04134675860404968, + 0.05186958983540535, + -0.028991879895329475, + -0.09281648695468903, + -2.7750102688083058e-33, + -0.00754324859008193, + -0.04619051516056061, + 0.006389160640537739, + -0.04146125167608261, + -0.030010312795639038, + -0.0192913468927145, + -0.012586018070578575, + 0.08911024779081345, + -0.021872052922844887, + 0.012317952699959278, + 0.05861041694879532, + 0.07225637882947922, + 0.013750586658716202, + -0.03793748840689659, + 0.037536539137363434, + 0.008379681035876274, + -0.027512364089488983, + 0.003175943624228239, + -0.03618117794394493, + 0.043982379138469696, + -0.011774348095059395, + 0.0608324259519577, + 0.022493908181786537, + 0.08406933397054672, + 0.010387505404651165, + 0.0588107705116272, + -0.004218763206154108, + 0.012173100374639034, + 0.022472159937024117, + 0.003391701728105545, + 0.08358655869960785, + 0.006675503682345152, + -0.019724363461136818, + 0.051328010857105255, + -0.08331096917390823, + -0.003501555183902383, + 0.03788752481341362, + 0.006855310406535864, + -0.06821522861719131, + -0.08806024491786957, + 0.04223236069083214, + 0.0038049977738410234, + 0.01650032214820385, + 0.05543067678809166, + 0.010428059846162796, + -0.03644370287656784, + -0.02909068763256073, + -0.0700618326663971, + 0.009577899239957333, + 0.06217512860894203, + 0.041533783078193665, + -0.028998523950576782, + 0.020871343091130257, + 0.06021587550640106, + -0.06543537229299545, + -0.003052967367693782, + -0.01261960156261921, + 0.06491117924451828, + 0.017132429406046867, + 0.06344117224216461, + 0.07572813332080841, + -0.001778080710209906, + -0.04793013259768486, + 0.06038898229598999, + 0.00799587182700634, + -0.033773381263017654, + -0.05030464008450508, + 0.08496350049972534, + -0.0679551288485527, + -0.010253291577100754, + 0.05379358306527138, + 0.03762504458427429, + -0.028886577114462852, + -0.06717696785926819, + 0.036811769008636475, + -0.055148422718048096, + -0.010443202219903469, + -0.0429559089243412, + -0.07888143509626389, + 0.11454899609088898, + 0.02771669812500477, + -0.007867835462093353, + -0.14320892095565796, + 0.07352343201637268, + 0.0034704352729022503, + -0.07838354259729385, + 0.050048019737005234, + 0.03756502643227577, + 0.04316169396042824, + -0.054417941719293594, + -0.046093493700027466, + 0.04709772765636444, + -0.09243147075176239, + 0.05486445873975754, + -0.0015641028294339776, + -3.069392207066812e-08, + 0.041320204734802246, + -0.004868256393820047, + 0.0001157226724899374, + -0.05517967417836189, + 0.017507489770650864, + 0.024539519101381302, + -0.0807199478149414, + -0.14778564870357513, + -0.05134176090359688, + -0.0850430503487587, + 0.11533255130052567, + 0.0002840188972186297, + -0.07561887055635452, + -0.04602392390370369, + -0.01399154495447874, + -0.027713406831026077, + -0.10440756380558014, + 0.025507589802145958, + -0.014363674446940422, + -0.053716495633125305, + 0.00607989402487874, + 0.0002535737003199756, + 0.0013034834992140532, + -0.011255466379225254, + 0.0121724558994174, + 0.019537663087248802, + -0.0299061331897974, + -0.06816135346889496, + 0.03963793069124222, + 0.05713501572608948, + -0.02035698853433132, + -0.004634104669094086, + 0.09306564927101135, + -0.015071559697389603, + -0.03357785567641258, + 0.11350324004888535, + -0.027722349390387535, + -0.052607253193855286, + 0.04385950788855553, + 0.05318931117653847, + 0.04991220310330391, + -0.0394396036863327, + 0.03793969750404358, + 0.014195538125932217, + -0.04769160971045494, + 0.02466854266822338, + 0.012386252172291279, + 0.011859981343150139, + 0.021935416385531425, + -0.07008784264326096, + 0.01778033748269081, + -0.006654037162661552, + -0.02025109902024269, + 0.051949478685855865, + -0.048853352665901184, + 0.026046238839626312, + 0.04602981358766556, + 0.024795925244688988, + 0.014612332917749882, + 0.0241239033639431, + 0.14448858797550201, + -0.01668175496160984, + 0.031499411910772324, + 0.034646425396203995 + ], + "shield-star-bold||badge,security,defense,authentication,authenticated,guarded,locked,encrypted,encryption": [ + -0.06228426471352577, + 0.035710595548152924, + -0.04326309263706207, + -0.0067144776694476604, + 0.002496859058737755, + 0.029902756214141846, + 0.118821881711483, + -0.049501046538352966, + -0.011857614852488041, + -0.02590111270546913, + 0.0344260074198246, + -0.020801221951842308, + 0.09706722944974899, + -0.009834961965680122, + -0.01621928997337818, + 0.010044016875326633, + 0.0038848042022436857, + -0.04575422406196594, + 0.02069438062608242, + 0.018793411552906036, + -0.021518295630812645, + -0.007695550564676523, + -0.002899223007261753, + 0.03963714838027954, + -0.01074470579624176, + 0.022065486758947372, + -0.021621454507112503, + -0.01685689575970173, + -0.0185153279453516, + -0.09295781701803207, + -0.024037856608629227, + -0.027618635445833206, + 0.04783686622977257, + 0.10394197702407837, + -0.0681532546877861, + -0.03812772408127785, + 0.05388970300555229, + 0.03767632693052292, + -0.03692486137151718, + -0.026347078382968903, + -0.056834615767002106, + -0.12759028375148773, + -0.04276232793927193, + 0.09479473531246185, + -0.01709516905248165, + 0.040757473558187485, + -0.009190764278173447, + 0.013293430209159851, + -0.01974209025502205, + -0.005740893539041281, + -0.0211216751486063, + -0.025663385167717934, + -0.1188020333647728, + 0.07011986523866653, + 0.04670404642820358, + -0.03325733169913292, + -0.04113095626235008, + -0.04857633262872696, + 0.044980403035879135, + 0.014137325808405876, + 0.03419208526611328, + 0.04257657751441002, + -0.001507200300693512, + 0.11836480349302292, + -0.021826639771461487, + -0.023179132491350174, + -0.03812514245510101, + 0.013097725808620453, + -0.013741942122578621, + -0.015200079418718815, + -0.0014179152203723788, + 0.004281188361346722, + -0.042184390127658844, + -0.013213691301643848, + 0.008118048310279846, + 0.0268829595297575, + 0.0077687655575573444, + -0.04158914461731911, + 0.037013065069913864, + -0.07090407609939575, + -0.032933466136455536, + -0.01953650638461113, + -0.08173684030771255, + 0.09917996823787689, + 0.015484976582229137, + 0.045480694621801376, + -0.052632708102464676, + -0.07007124274969101, + -0.021176235750317574, + -0.008202050812542439, + 0.007023954298347235, + -0.03644382953643799, + 0.017041323706507683, + 0.005930323153734207, + -0.08283370733261108, + -0.017615295946598053, + 0.01786886341869831, + -0.07699573785066605, + -0.05297199636697769, + 0.08935876935720444, + -0.033901944756507874, + -0.0028066462837159634, + -0.040608540177345276, + -0.015874452888965607, + 0.014393704943358898, + -0.018930943682789803, + 0.02152479626238346, + -0.08703730255365372, + -0.0027453131042420864, + 0.05668807774782181, + 0.012308168224990368, + -0.046431221067905426, + -0.09732536226511002, + -0.08994585275650024, + -0.04242240637540817, + 0.051051780581474304, + -0.10919489711523056, + 0.04876808077096939, + 0.12711329758167267, + 0.05939240753650665, + 0.04659099876880646, + -0.003503053914755583, + 0.08621042966842651, + -0.06140730902552605, + -0.02797025442123413, + -0.0038505191914737225, + -0.005677761975675821, + -2.19325370648254e-33, + 0.01690038852393627, + 0.0415155254304409, + -0.052104365080595016, + 0.10283800959587097, + -0.0035281297750771046, + -0.027202056720852852, + 0.005877991672605276, + -0.054005444049835205, + -0.04163296893239021, + 0.07524480670690536, + 0.032579097896814346, + 0.09753474593162537, + 0.024825582280755043, + 0.08147922903299332, + 0.12671001255512238, + 0.019746027886867523, + -0.019646653905510902, + -0.04843740910291672, + 0.02270136959850788, + -0.03697093948721886, + -0.001671125995926559, + 0.07950768619775772, + 0.007439255248755217, + 0.022779366001486778, + 0.07372252643108368, + -0.039309386163949966, + 0.018101053312420845, + 0.013137677684426308, + 0.009033674374222755, + 0.07129763066768646, + 0.02427287958562374, + -0.01670541800558567, + 0.05924298241734505, + 0.05106385424733162, + 0.040513549000024796, + 0.04386155679821968, + -0.013537142425775528, + -0.1118588075041771, + 0.033547308295965195, + -0.1062656044960022, + -0.057191334664821625, + -0.09322803467512131, + -0.08080919086933136, + -0.03627637028694153, + 0.03407515212893486, + -0.008136830292642117, + -0.01982203684747219, + -0.029644779860973358, + 0.026837728917598724, + 0.0033715299796313047, + -0.013080470263957977, + 0.0025505805388092995, + -0.0491892471909523, + -0.07707217335700989, + -0.052948880940675735, + -0.038648348301649094, + -0.003453293349593878, + 0.1219208762049675, + -0.03747629374265671, + 0.008098314516246319, + -0.06907862424850464, + 0.027376793324947357, + 0.04366490617394447, + -0.057033319026231766, + -0.00022079423069953918, + 0.03759090602397919, + -0.014027539640665054, + -0.010909606702625751, + 0.017128488048911095, + 0.039722852408885956, + -0.06101301684975624, + 0.08124498277902603, + 0.06453670561313629, + 0.011100409552454948, + -0.031679581850767136, + -0.014536360278725624, + 0.048472996801137924, + 0.04269404336810112, + 0.0007550281588919461, + -0.022371066734194756, + -0.1254846602678299, + 0.04936446622014046, + -0.035899173468351364, + 0.12992623448371887, + -0.03838169947266579, + 0.0002819481596816331, + 0.02019805833697319, + -0.012363681569695473, + -0.07797211408615112, + -0.04624086245894432, + -0.0032112072221934795, + 0.014169408939778805, + 0.09983589500188828, + -0.020727919414639473, + -0.13962361216545105, + -6.636968756082295e-34, + -0.026214513927698135, + -0.06192398816347122, + 0.01040649600327015, + -0.01690022274851799, + -0.0026745565701276064, + -0.027563031762838364, + -0.01330126728862524, + 0.0667029395699501, + -0.03269873186945915, + 0.04357175529003143, + 0.017893927171826363, + 0.02455729804933071, + -0.022922024130821228, + -0.03750625252723694, + 0.035487521439790726, + -0.022874217480421066, + 0.005451335571706295, + 0.033339790999889374, + -0.025703351944684982, + 0.039439428597688675, + 0.010948574170470238, + 0.06119302287697792, + -0.011722871102392673, + 0.06639810651540756, + 0.011483537964522839, + 0.02283334918320179, + -0.033996645361185074, + 0.0056016757152974606, + 0.023478779941797256, + 0.006897865794599056, + 0.050731007009744644, + -0.0279532503336668, + 0.0047413683496415615, + 0.06792416423559189, + -0.08374886959791183, + -0.05360514670610428, + 0.09322598576545715, + 0.006299796048551798, + -0.09013556689023972, + -0.04993081092834473, + 0.015839608386158943, + 0.00904392171651125, + 0.023317400366067886, + 0.028903517872095108, + 0.015305893495678902, + -0.05502881109714508, + -0.02463320642709732, + -0.04827291890978813, + -0.03371472656726837, + 0.0477374829351902, + 0.03969275578856468, + -0.024923162534832954, + -0.006113896612077951, + 0.03942083939909935, + -0.07562707364559174, + 0.031472403556108475, + -0.012577624060213566, + 0.04456184804439545, + 0.05375521630048752, + 0.03441387042403221, + 0.09047962725162506, + -0.011260665953159332, + 0.011716327629983425, + 0.07297544926404953, + -0.0179566852748394, + -0.04790463671088219, + -0.030390925705432892, + 0.0611855611205101, + -0.11773193627595901, + 0.017717832699418068, + 0.07672415673732758, + 0.015464112162590027, + -0.04946590214967728, + -0.011738591827452183, + 0.030945727601647377, + -0.03505770489573479, + -0.0015653332229703665, + -0.05945601314306259, + -0.08661702275276184, + 0.08627278357744217, + 0.0058798217214643955, + 0.013598872348666191, + -0.1287427544593811, + 0.08001015335321426, + 0.028121603652834892, + -0.03799029439687729, + 0.044694285839796066, + -0.004528596997261047, + 0.05498635023832321, + -0.035421498119831085, + -0.03517697751522064, + 0.050558190792798996, + -0.05969622731208801, + 0.02662690356373787, + 0.0030733151361346245, + -2.2066805271947487e-08, + 0.038130734115839005, + 0.013440260663628578, + -0.011047111824154854, + -0.03542502969503403, + 0.00637308694422245, + 0.020011097192764282, + -0.0603489875793457, + -0.1381038874387741, + -0.033346645534038544, + -0.09800110012292862, + 0.11086554825305939, + 0.024694599211215973, + -0.1039542704820633, + -0.07794024795293808, + -0.011332497000694275, + -0.036373838782310486, + -0.11516080796718597, + -0.015011788345873356, + -0.010681544430553913, + -0.006103942636400461, + 0.021151799708604813, + 0.01711563766002655, + -0.0011497273808345199, + -0.022734055295586586, + -0.005743443500250578, + 0.04713277518749237, + -0.03684230148792267, + -0.05821709334850311, + 0.027875736355781555, + 0.0566425584256649, + -0.005594482645392418, + 0.007791879121214151, + 0.08367845416069031, + -0.01959485188126564, + -0.045960549265146255, + 0.10375507175922394, + -0.0003162030188832432, + -0.06956513971090317, + 0.04721090942621231, + 0.1428251415491104, + 0.0798984244465828, + -0.04635678976774216, + 0.027951182797551155, + 0.008837133646011353, + -0.043986499309539795, + 0.06144946813583374, + 0.010265544056892395, + -0.027895772829651833, + 0.009343767538666725, + -0.056178588420152664, + 0.014845206402242184, + -0.03026745282113552, + -0.052471958100795746, + 0.023924365639686584, + -0.07098598778247833, + 0.04243846982717514, + 0.024996943771839142, + 0.026455489918589592, + 0.0593382865190506, + 0.008708849549293518, + 0.13151857256889343, + -0.02418798953294754, + 0.034547653049230576, + 0.05579519271850586 + ], + "shield-warning-bold||badge,security,unsecured,defense,undefended,authentication,unauthenticated,unguarded,unlocked,unencrypted,encryption,errors": [ + -0.06706155836582184, + 0.04163522273302078, + -0.04528670385479927, + 0.004943540319800377, + 0.053287506103515625, + 0.029742876067757607, + 0.10303425788879395, + -0.03822293132543564, + -0.027978884056210518, + -0.06285186111927032, + 0.1018306240439415, + -0.05252949520945549, + 0.08723924309015274, + 0.03603390231728554, + -0.03619534894824028, + 0.003238705452531576, + 0.01113048754632473, + -0.06514860689640045, + 0.013296925462782383, + 0.014038890600204468, + -0.030639508739113808, + 0.039260782301425934, + -0.027326691895723343, + 0.02823667600750923, + -0.052613455802202225, + -0.001049146638251841, + -0.03074369952082634, + -0.013774503953754902, + -0.03394757956266403, + -0.054525114595890045, + -0.03240799531340599, + -0.04629332944750786, + 0.052232105284929276, + 0.06285405904054642, + -0.027111513540148735, + -0.0050338031724095345, + 0.04349851235747337, + 0.049388036131858826, + -0.030786633491516113, + -0.03605123236775398, + -0.04429979994893074, + -0.09360326081514359, + -0.028665486723184586, + 0.11663059890270233, + -0.020269865170121193, + -0.00663791922852397, + 0.005440175533294678, + -0.008314148522913456, + 0.015287301503121853, + -0.04996958002448082, + -0.027907880023121834, + -0.023403866216540337, + -0.0881890058517456, + 0.024856766685843468, + 0.006705771200358868, + -0.04563978686928749, + -0.06380429863929749, + -0.031590256839990616, + 0.023541372269392014, + 0.02385018952190876, + 0.042614277452230453, + 0.023989107459783554, + 0.007491310592740774, + 0.10621081292629242, + -0.04490976780653, + -0.0009135804139077663, + -0.027101142331957817, + 0.01918637566268444, + 0.0014848593855276704, + 0.031356699764728546, + -0.018433766439557076, + -0.006416867487132549, + -0.06407096236944199, + 0.0014304517535492778, + 0.043477654457092285, + 0.05740291625261307, + -0.028272684663534164, + -0.03468876704573631, + 0.03611156716942787, + -0.07423654198646545, + -0.05223451554775238, + -0.04252862557768822, + -0.05502263829112053, + 0.06776418536901474, + 0.04972909018397331, + 0.07819361239671707, + -0.05311564728617668, + -0.08336294442415237, + 0.021335294470191002, + -0.007848718203604221, + 0.03247698396444321, + -0.042091283947229385, + 0.0027987374924123287, + 0.07949148118495941, + -0.09425806254148483, + -0.030070999637246132, + 0.01815771497786045, + -0.05688471347093582, + -0.12973929941654205, + 0.09992515295743942, + -0.03754604607820511, + 0.003448653733357787, + -0.039723899215459824, + 0.00014555483357980847, + 0.021217815577983856, + -0.027513446286320686, + 0.04726232960820198, + -0.06589873135089874, + -0.013714578002691269, + 0.025736944749951363, + 0.0270764771848917, + -0.03184833005070686, + -0.05320494994521141, + -0.08358899503946304, + -0.015457657165825367, + 0.03445299714803696, + -0.11085787415504456, + 0.011494721285998821, + 0.09251869469881058, + 0.0998421311378479, + 0.06017530336976051, + -0.018409468233585358, + 0.05671728774905205, + -0.07229507714509964, + 0.012603932991623878, + -0.018719157204031944, + 0.028401659801602364, + 7.054881793383581e-34, + 0.03413404896855354, + 0.06530635058879852, + -0.032259587198495865, + 0.0949639230966568, + 0.04676998406648636, + -0.0473630353808403, + 0.010810545645654202, + -0.07773308455944061, + -0.06716549396514893, + 0.07991308718919754, + 0.04518245533108711, + 0.08323562890291214, + 0.010675720870494843, + 0.057738129049539566, + 0.09340489655733109, + 0.027698051184415817, + 0.025633879005908966, + -0.0028927980456501245, + 0.048620518296957016, + -0.030197108164429665, + 0.0046851797960698605, + 0.02720106951892376, + 0.030873682349920273, + -0.02045019343495369, + 0.04900229349732399, + -0.003726121736690402, + -0.0004025388916488737, + 0.019883153960108757, + 0.05362484231591225, + 0.059626102447509766, + -0.002036691876128316, + -0.0001282832963624969, + 0.047064293175935745, + 0.01208990067243576, + 0.03775776922702789, + 0.030158070847392082, + -0.03423236310482025, + -0.0852174386382103, + 0.030944576486945152, + -0.06749074906110764, + -0.0715007558465004, + -0.08393903821706772, + -0.05787630379199982, + -0.04211784899234772, + 0.09556541591882706, + -0.0058447918854653835, + -0.022803472355008125, + -0.03242068737745285, + 0.0429011695086956, + 0.030828405171632767, + -0.05098392069339752, + -0.01223425380885601, + -0.004147427622228861, + -0.030683664605021477, + -0.07338456809520721, + -0.04611196741461754, + 0.009289599023759365, + 0.11603622138500214, + -0.057641033083200455, + -0.03351126238703728, + -0.04393177106976509, + 0.020383598282933235, + 0.015122545883059502, + -0.09067557007074356, + -0.0023852193262428045, + -0.008514038287103176, + -0.028859896585345268, + -0.010360644198954105, + -0.010846387594938278, + 0.016301898285746574, + -0.07003562897443771, + 0.04150382801890373, + 0.06215225160121918, + 0.07326678931713104, + -0.05178942158818245, + -0.027654260396957397, + 0.014243109151721, + 0.028967948630452156, + 0.032331135123968124, + -0.0520116351544857, + -0.10173644870519638, + 0.03189130872488022, + -0.0528179369866848, + 0.10736650228500366, + -0.06700097024440765, + 0.03670436888933182, + 0.009283436462283134, + 0.0113918362185359, + -0.11674537509679794, + 0.04471438005566597, + 0.0007953786407597363, + 0.05489093065261841, + 0.09294778853654861, + -0.012167747132480145, + -0.11746272444725037, + -3.0489823698124717e-33, + -0.03806132450699806, + -0.059966713190078735, + 0.006487536244094372, + -0.05942879989743233, + -0.026313195005059242, + -0.02298976294696331, + 0.0010922807268798351, + 0.10591994971036911, + -0.0003368013130966574, + 0.025912122800946236, + 0.038676321506500244, + 0.03391469642519951, + 0.007171903736889362, + -0.021698515862226486, + -0.0070035383105278015, + 0.011208168230950832, + -0.00791186559945345, + 0.024453172460198402, + -0.05040053278207779, + 0.031903401017189026, + 0.005336499772965908, + 0.06946270167827606, + 0.002155032241716981, + 0.07529847323894501, + 0.003711943980306387, + 0.06183423846960068, + -0.006881199311465025, + 0.023430366069078445, + 0.008424155414104462, + -0.013256235979497433, + 0.07245776057243347, + 0.007281188853085041, + -0.0057261367328464985, + 0.08476292341947556, + -0.061246469616889954, + -0.04497140645980835, + 0.10707293450832367, + -0.04184503108263016, + -0.061554547399282455, + -0.0634760782122612, + 0.040928442031145096, + 0.024722512811422348, + -0.002996535040438175, + -0.00308361672796309, + 0.00038140203105285764, + -0.045859407633543015, + -0.005559108220040798, + -0.058433547616004944, + -0.011234644800424576, + 0.062213461846113205, + 0.030161339789628983, + -0.039764534682035446, + 0.02051880955696106, + 0.036014966666698456, + -0.06717225164175034, + 0.02100992389023304, + -0.004174088127911091, + 0.04739737883210182, + 0.05162632092833519, + 0.039167556911706924, + 0.04899352416396141, + -0.005710113327950239, + -0.04099174961447716, + 0.025192419067025185, + -0.003752028103917837, + -0.014545096084475517, + -0.03433087840676308, + 0.09462393820285797, + -0.041915297508239746, + 0.002374399220570922, + 0.039127085357904434, + 0.033557288348674774, + -0.059989627450704575, + -0.07794871181249619, + 0.030673954635858536, + -0.06350494921207428, + 0.017511438578367233, + -0.041526589542627335, + -0.09055489301681519, + 0.07186399400234222, + 0.0468696691095829, + -0.013813458383083344, + -0.1354016661643982, + 0.07351543754339218, + 0.011202304624021053, + -0.08206206560134888, + 0.09439286589622498, + 0.007331318221986294, + 0.022105667740106583, + -0.021880466490983963, + -0.044277384877204895, + 0.04350627586245537, + -0.05807560309767723, + 0.05018133670091629, + 0.020726677030324936, + -3.163528461413989e-08, + 0.05137182027101517, + 0.002577051520347595, + -0.0026532679330557585, + -0.08072098344564438, + 0.03879456967115402, + 0.005930604878813028, + -0.0823780819773674, + -0.16308315098285675, + -0.08179855346679688, + -0.10635367035865784, + 0.09013446420431137, + 0.011344817467033863, + -0.07054755091667175, + -0.05550016462802887, + -0.017683623358607292, + -0.06767497211694717, + -0.12420119345188141, + 0.017695432528853416, + -0.014350580982863903, + -0.07731158286333084, + 0.017432747408747673, + 0.002489105798304081, + -0.012233885005116463, + -0.03217291086912155, + 0.007342124357819557, + 0.030886618420481682, + -0.018398020416498184, + -0.04319978505373001, + 0.03641323745250702, + 0.06079423800110817, + -0.04603990167379379, + -0.025566451251506805, + 0.1030636727809906, + -0.017772827297449112, + -0.023279815912246704, + 0.13361449539661407, + -0.00497880345210433, + -0.08386890590190887, + 0.039499979466199875, + 0.07691869884729385, + 0.0410064198076725, + -0.0011683745542541146, + 0.0358053520321846, + 0.017386386170983315, + -0.044432200491428375, + 0.011715141125023365, + -0.015546503476798534, + 0.0012374938232824206, + 0.04892663285136223, + -0.056682586669921875, + 0.020751163363456726, + -0.027142643928527832, + -0.022546028718352318, + 0.06463798880577087, + -0.06074511632323265, + -0.0002559022104833275, + 0.02376837283372879, + 0.014830098487436771, + 0.010645651258528233, + 0.05006175860762596, + 0.12681788206100464, + -0.028831850737333298, + 0.03690125793218613, + 0.0346749909222126 + ], + "shipping-container-bold||*new*,shipping,transportation,places,locations": [ + 0.03042243793606758, + -0.03470820561051369, + 0.008464569225907326, + 0.06328679621219635, + 0.09920654445886612, + -0.024214543402194977, + 0.03758392110466957, + -0.06659442186355591, + -0.09753110259771347, + 0.018577395007014275, + 0.038684677332639694, + -0.01786874048411846, + -0.04575533792376518, + 0.006126675754785538, + -0.03066498227417469, + -0.028080850839614868, + 0.09256111830472946, + 0.029278432950377464, + -0.05590295419096947, + 0.01270002219825983, + 0.003993957303464413, + 0.05686454474925995, + -0.009919162839651108, + 0.015462326817214489, + 0.025875991210341454, + 0.045396529138088226, + -0.015439892187714577, + -0.04587620869278908, + 0.007931665517389774, + -0.08572288602590561, + -0.05290032923221588, + 0.05299719423055649, + 0.030589818954467773, + 0.06351616233587265, + 0.13109654188156128, + 0.056360360234975815, + 0.019353987649083138, + -0.04780931770801544, + 0.043732739984989166, + -0.053449057042598724, + -0.01231086254119873, + -0.08093143999576569, + -0.03009686805307865, + 0.10523880273103714, + -0.04922880232334137, + -0.08987864851951599, + 0.03155577555298805, + -0.02923092432320118, + 0.05323535203933716, + 0.03299066051840782, + 0.02701881155371666, + -0.04926808923482895, + -0.07420884072780609, + -0.013321885839104652, + -0.023803865537047386, + 0.020966658368706703, + -0.04798978194594383, + -0.028885887935757637, + -0.0017130417982116342, + 0.012793691828846931, + 0.037023864686489105, + 0.025807056576013565, + 0.0267330389469862, + 0.04379432275891304, + 0.06306077539920807, + -0.045999325811862946, + -0.0573735311627388, + 0.05355697125196457, + -0.07928705215454102, + -0.014180679805576801, + 0.029086338356137276, + 0.043290477246046066, + 0.02797391638159752, + 0.04710417985916138, + 0.010264983400702477, + -0.07476761937141418, + 0.039713844656944275, + 0.014293053187429905, + -0.05415660887956619, + 0.029890798032283783, + -0.02585427276790142, + -0.04994482174515724, + -0.02235187031328678, + -0.028039511293172836, + -0.06216343119740486, + 0.017972007393836975, + -0.06253479421138763, + -0.0028667673468589783, + -0.034587159752845764, + -0.060139041393995285, + -0.03198379650712013, + -0.07477696239948273, + 0.0017324413638561964, + 0.03190544992685318, + -0.1249282956123352, + 0.0063779475167393684, + -0.0017538879765197635, + 0.029115578159689903, + 0.03286008536815643, + 0.05968126654624939, + 0.060898780822753906, + 0.08954551815986633, + 0.042141612619161606, + 0.03145752102136612, + -0.07666949182748795, + -0.05714058503508568, + -0.08887449651956558, + -0.009545031934976578, + -0.022021060809493065, + 0.031107831746339798, + -0.042260199785232544, + -0.028710588812828064, + -0.06776010990142822, + -0.03328046575188637, + -0.11234989017248154, + -0.008458073250949383, + -0.049872566014528275, + -0.05990973860025406, + 0.08467476069927216, + -0.028159141540527344, + 0.03673146292567253, + -0.08607306331396103, + 0.0421321839094162, + -0.02827567420899868, + -0.09665392339229584, + 0.020955849438905716, + 0.007910473272204399, + -3.554402880008815e-33, + -0.017140060663223267, + -0.0018722704844549298, + -0.0044498383067548275, + 0.07679122686386108, + 0.07451443374156952, + -0.004461426753550768, + -0.04304498806595802, + -0.040791433304548264, + -0.02036585472524166, + 0.05742448940873146, + -0.027521174401044846, + 0.08771754056215286, + -0.030061062425374985, + 0.0336621068418026, + -0.019047893583774567, + -0.1021709144115448, + -0.018209166824817657, + 0.005803814623504877, + -0.03474126383662224, + -0.045838840305805206, + -0.06790135055780411, + -0.011035543866455555, + -0.0497785359621048, + -0.03569067269563675, + 0.018606433644890785, + -0.0395679734647274, + 0.02369025908410549, + -0.05097559094429016, + -0.015695687383413315, + 0.06208762526512146, + 0.012481918558478355, + 0.05167550966143608, + 0.07170511037111282, + 0.043798528611660004, + -0.014284959062933922, + 0.01860751211643219, + -0.06638425588607788, + -0.04288750886917114, + -0.03433297947049141, + -0.014108753763139248, + -0.09421848505735397, + -0.0461028516292572, + -0.03123771771788597, + 0.09033559262752533, + 0.034625791013240814, + 0.07603349536657333, + -0.01463901624083519, + -0.11047220230102539, + 0.0656047910451889, + 0.015548041090369225, + -0.05915254354476929, + -0.047142475843429565, + -0.07751282304525375, + -0.02420150116086006, + -0.002242670627310872, + -0.05791905149817467, + 0.0063713593408465385, + 0.00840067584067583, + 0.05844736844301224, + -0.02938792109489441, + -0.020711788907647133, + 0.036120567470788956, + 0.03853760287165642, + -0.027471039444208145, + 0.042933978140354156, + 0.013426285237073898, + -0.048633795231580734, + 0.020799733698368073, + 0.01482198666781187, + 0.03807143121957779, + 0.002517573069781065, + 0.08528976142406464, + 0.060801275074481964, + 0.09571193903684616, + 0.09671628475189209, + 0.040688399225473404, + -0.006844594143331051, + 0.05057435855269432, + 0.006794376764446497, + -0.09797496348619461, + -0.08800819516181946, + 0.008227427490055561, + -0.0657970979809761, + 0.13200180232524872, + 0.03399772569537163, + -0.057326965034008026, + -0.011734592728316784, + -0.032442741096019745, + -0.02767317183315754, + 0.01365736499428749, + -0.09549816697835922, + 0.04238380491733551, + -0.025339974090456963, + -0.08420194685459137, + -0.07730495929718018, + -5.708218475514779e-34, + 0.030076323077082634, + 0.01814807765185833, + -0.08207107335329056, + -0.012181359343230724, + -0.047346435487270355, + 0.003070780076086521, + 0.04920759052038193, + 0.005363223142921925, + 0.10500779002904892, + 0.03800812363624573, + -0.10151205956935883, + -0.007280188146978617, + 0.047492630779743195, + 0.05067628249526024, + -0.06316696107387543, + 0.04900496453046799, + 0.03427009657025337, + 0.048659905791282654, + -0.018622174859046936, + 0.05065551772713661, + 0.0005675716092810035, + -0.004912793170660734, + -0.09855430573225021, + 0.07148531824350357, + -0.03478669002652168, + 0.000535370665602386, + 0.04913090914487839, + -0.04858400672674179, + -0.07337801158428192, + -0.06143147125840187, + -0.05444331467151642, + -0.035965416580438614, + 0.06333839893341064, + 0.11251985281705856, + -0.10672659426927567, + 0.022052187472581863, + 0.028539348393678665, + 0.07812893390655518, + 0.06149866804480553, + 0.007605804596096277, + -0.004613384138792753, + -0.0233848188072443, + 0.015084647573530674, + 0.06424081325531006, + -0.06357598304748535, + -0.06534837931394577, + -0.06082933023571968, + -0.05379742383956909, + 0.06269112974405289, + 0.029353981837630272, + -0.028863849118351936, + 0.0053808302618563175, + -0.016745971515774727, + -0.006083193700760603, + -0.007355349138379097, + 0.09429474920034409, + -0.05052937567234039, + 0.0313231498003006, + -0.03361509367823601, + 0.04193982854485512, + 0.012926992028951645, + 0.0699315220117569, + -0.008976869285106659, + 0.04716035723686218, + 0.026773901656270027, + -0.06659037619829178, + 0.03058801405131817, + -0.03224054351449013, + -0.024134628474712372, + 0.03751896321773529, + 0.031576864421367645, + -0.02689301036298275, + -0.04390868544578552, + 0.06564515084028244, + -0.007896807044744492, + -0.10096142441034317, + 0.06473527103662491, + 0.04883542284369469, + -0.013542279601097107, + 0.044179074466228485, + 0.020466867834329605, + -0.013790925964713097, + -0.04110100120306015, + 0.05277417600154877, + 0.00838429294526577, + -0.026355622336268425, + 0.06181253865361214, + -0.0021574259735643864, + 0.03604910150170326, + 0.015223472379148006, + -0.0468621663749218, + 0.06597824394702911, + -0.10201531648635864, + -0.042790487408638, + -0.051746614277362823, + -2.0874740158660643e-08, + 0.02406197227537632, + -0.013368000276386738, + -0.050339147448539734, + 0.022946981713175774, + 0.002867064904421568, + -0.034575480967760086, + 0.04234623908996582, + 0.052845992147922516, + -0.07848113030195236, + -0.018109779804944992, + -0.02351304516196251, + 0.028110181912779808, + -0.10904651135206223, + -0.02047806605696678, + 0.0106342239305377, + 0.037127818912267685, + -0.02541150338947773, + 0.04979196935892105, + -0.05241569131612778, + -0.0898677408695221, + -0.030099548399448395, + 0.08792118728160858, + 0.09907814115285873, + 0.0038622727151960135, + -0.016704177483916283, + 0.05627890303730965, + 0.010097476653754711, + -0.015073798596858978, + 0.15010909736156464, + -0.008018418215215206, + 0.03791920840740204, + 0.05627548694610596, + -0.02931172028183937, + 0.0030318882782012224, + -0.07496874034404755, + -0.05417868122458458, + -0.0874977707862854, + -0.008545937016606331, + -0.02725810930132866, + 0.04977204278111458, + -0.05950343981385231, + -0.010659188032150269, + -0.012878385372459888, + -0.01895355060696602, + 0.046063121408224106, + 0.02238854207098484, + -0.0459461584687233, + -0.02666482888162136, + -0.06076696515083313, + -0.05422477796673775, + -0.0022130690049380064, + -0.012182030826807022, + 0.019688988104462624, + 0.10679853707551956, + 0.0659007728099823, + 0.03794976323843002, + -0.029143989086151123, + 0.03670351579785347, + 0.0810496062040329, + 0.059062644839286804, + 0.03749401122331619, + 0.027726182714104652, + 0.04155891761183739, + 0.05566265434026718 + ], + "shirt-folded-bold||clothes,clothing": [ + -0.02347300574183464, + 0.04509756714105606, + -0.021411102265119553, + 0.08857379853725433, + 0.1153019368648529, + -0.018022570759058, + 0.09068465977907181, + -0.011174210347235203, + -0.0528680756688118, + 0.018265990540385246, + 0.05433003976941109, + -0.0006799873663112521, + 0.03951515257358551, + -0.016416426748037338, + 0.05565439909696579, + 0.07384705543518066, + -0.005796894431114197, + 0.07933801412582397, + -0.06459212303161621, + 0.009653571993112564, + 0.02264975756406784, + 0.03490929678082466, + 0.03359575942158699, + 0.0552184097468853, + 0.017072854563593864, + -0.003199450671672821, + 0.03956392779946327, + -0.02608100324869156, + -0.009647712111473083, + -0.057823434472084045, + 0.01273876242339611, + 0.028171680867671967, + 0.09316360205411911, + 0.03384082391858101, + 0.0325976200401783, + 0.025106018409132957, + 0.03655368462204933, + 0.004984534345567226, + -0.0034153182059526443, + 0.07671123743057251, + -0.02746504545211792, + -0.0762382373213768, + -0.09788019210100174, + 0.026673536747694016, + -0.0229598730802536, + 0.0177194494754076, + -0.013399066403508186, + 0.05877487361431122, + -0.02852375991642475, + 0.0634494200348854, + 0.04009070619940758, + -0.05860479176044464, + -0.06445064395666122, + 0.009763411246240139, + -0.020098567008972168, + 0.03992319107055664, + -0.03484276309609413, + -0.039203912019729614, + 0.015964824706315994, + 0.019076354801654816, + 0.04386895149946213, + -0.005116167478263378, + -0.04135960713028908, + 0.05595775693655014, + 0.07477425783872604, + 0.00816519558429718, + 0.03566337749361992, + 0.05010686442255974, + -0.11822451651096344, + 0.002616170095279813, + 0.06163377687335014, + 0.0014761313796043396, + -0.06121683865785599, + 0.030498920008540154, + -0.022474907338619232, + -0.05358152464032173, + 0.08617914468050003, + -0.06183909252285957, + -0.019120605662465096, + 0.03578949347138405, + -0.12147342413663864, + -0.059815503656864166, + -0.025246186181902885, + -0.025640809908509254, + -0.02881971374154091, + 0.03803959861397743, + -0.08630046993494034, + -0.06996028870344162, + -0.061128564178943634, + -0.04679057374596596, + -0.08952587097883224, + -0.0036966889165341854, + 0.011118690483272076, + 0.006461645010858774, + -0.05835196003317833, + 0.04077667370438576, + 0.03853434696793556, + 0.041903235018253326, + 0.016112202778458595, + 0.09311998635530472, + 0.01662863977253437, + 0.0709909126162529, + 0.09497392922639847, + 0.02864493988454342, + -0.07849462330341339, + -0.0963040292263031, + 0.038929153233766556, + 0.016554543748497963, + 0.023897888138890266, + 0.010989518836140633, + -0.03515196219086647, + -0.0784718245267868, + 0.006206347141414881, + -0.01656908541917801, + 0.001521518686786294, + -0.0250503271818161, + 0.013727541081607342, + 0.035188719630241394, + 0.05323977768421173, + 0.04878172650933266, + 0.014378167688846588, + 0.030247638002038002, + 0.039080776274204254, + -0.05194453150033951, + -0.07354321330785751, + 0.0021970889065414667, + 0.03384022042155266, + -3.011642975429594e-33, + 0.024858176708221436, + 0.07270895689725876, + -0.03720743954181671, + 0.13230499625205994, + 0.031875841319561005, + -0.024458525702357292, + -0.03169992193579674, + -0.07514877617359161, + -0.08773680776357651, + 0.13596779108047485, + 0.05197872221469879, + 0.08253844082355499, + -0.03633730486035347, + 0.07938630878925323, + 0.06456717848777771, + -0.03548986092209816, + 0.027317097410559654, + -0.06967759877443314, + -0.07409068942070007, + -0.021022191271185875, + -0.04873562976717949, + 0.07535363733768463, + 0.028566619381308556, + -0.015766901895403862, + -0.028659317642450333, + -0.07208248972892761, + 0.024560021236538887, + -0.008210523054003716, + -0.021204425022006035, + 0.0058084940537810326, + 0.05701712518930435, + 0.030447762459516525, + 0.045952655375003815, + -0.018012244254350662, + -0.03817613795399666, + 0.011947579681873322, + -0.10663050413131714, + 0.024940691888332367, + 0.010652652941644192, + 0.06610098481178284, + -0.005452701821923256, + -0.028341922909021378, + 0.03211744502186775, + -0.014725055545568466, + -0.0030379057861864567, + 0.05110891908407211, + 0.05595504492521286, + 0.013323893770575523, + 0.0014089146861806512, + 0.0023811846040189266, + 0.018366845324635506, + -0.014479619450867176, + 0.011252413503825665, + -0.07828295230865479, + 0.00419211620464921, + -0.037673480808734894, + 0.013035939075052738, + 0.028238190338015556, + -0.04563575237989426, + -0.025068650022149086, + 0.0420135073363781, + 0.036449555307626724, + 0.06144334003329277, + -0.03941278159618378, + -0.017148328945040703, + -0.015242199413478374, + -0.014684859663248062, + 0.000599194667302072, + 0.04181402549147606, + -0.047401465475559235, + -0.0518084280192852, + 0.11959197372198105, + 0.011867614462971687, + 0.03765128552913666, + 0.021614346653223038, + 0.021071162074804306, + 0.027341894805431366, + 0.019166510552167892, + -0.0070675695315003395, + -0.07174970954656601, + -0.04344397038221359, + 0.03702358156442642, + -0.020655432716012, + 0.09074951708316803, + 0.008746035397052765, + -0.01406794786453247, + -0.02393021062016487, + -0.06641915440559387, + -0.03188104182481766, + 0.014498941600322723, + -0.04010249301791191, + 0.011416887864470482, + 0.0009032076923176646, + -0.1317887008190155, + -0.002747996710240841, + 7.90730162378694e-34, + 0.11858749389648438, + 0.03447346016764641, + -0.005363314878195524, + -0.031282614916563034, + 0.00676540844142437, + -0.0033661776687949896, + -0.0007445703959092498, + 0.06278103590011597, + -0.12854760885238647, + 0.021146776154637337, + 0.015036355704069138, + -0.05510026961565018, + -0.09144752472639084, + -0.037416134029626846, + 0.043228086084127426, + 0.09034959226846695, + 0.09706132858991623, + 0.03465051203966141, + -0.030454959720373154, + -0.015023129992187023, + -0.02057993970811367, + -0.04131884500384331, + -0.03929704427719116, + -0.002678245073184371, + -0.061240166425704956, + 0.008593861013650894, + 0.03261644393205643, + 0.013588874600827694, + -0.014584341086447239, + -0.04643096402287483, + -0.04514019936323166, + -0.06219319626688957, + 0.04438792169094086, + 0.1050405278801918, + -0.030337171629071236, + -0.03031560592353344, + -0.040879812091588974, + -0.04561977833509445, + 0.053495388478040695, + -0.06620124727487564, + -0.02137993834912777, + 0.009811058640480042, + -0.007369049824774265, + 0.07079695910215378, + 0.001402393914759159, + -0.0819033831357956, + -0.11532165855169296, + -0.07408668845891953, + -0.09308797121047974, + 0.009695572778582573, + -0.044288136065006256, + 0.0012304309057071805, + -0.021525148302316666, + -0.014276871457695961, + -0.030790477991104126, + 0.028727279976010323, + -0.07322844862937927, + 0.01623917929828167, + -0.01988433487713337, + 0.0727350041270256, + 0.00468564173206687, + 0.07671144604682922, + -0.08638051152229309, + -0.011801030486822128, + 0.04627720266580582, + 0.018404902890324593, + -0.026840144768357277, + -0.04013659432530403, + -0.053288187831640244, + 0.02121487632393837, + 0.04252667725086212, + -0.07720950990915298, + 0.018651967868208885, + -0.01476764865219593, + -0.013334577903151512, + -0.043438125401735306, + 0.04227655380964279, + 0.06960403174161911, + 0.0019484052900224924, + 0.021576838567852974, + -0.010347810573875904, + -0.09959659725427628, + -0.08978269249200821, + 0.021755028516054153, + -0.012021081522107124, + 0.022402295842766762, + -0.05855787172913551, + 0.03497627004981041, + 0.06082858890295029, + -0.0006235890905372798, + -0.027803130447864532, + 0.018575329333543777, + 0.02086891420185566, + 0.10630620270967484, + 0.0024178032763302326, + -1.6557487825252792e-08, + 0.001036889269016683, + -0.013933997601270676, + 0.004675489850342274, + -0.01042143814265728, + 0.015127094462513924, + 0.02764051780104637, + -0.015203483402729034, + -0.1449154168367386, + -0.04938741773366928, + 0.023210320621728897, + -0.0367312952876091, + -0.0017448171274736524, + -0.07605107128620148, + 0.02135070040822029, + 0.016491662710905075, + -0.027353864163160324, + -0.08336023986339569, + 0.09175068140029907, + -0.03002084791660309, + -0.005003328900784254, + -0.017859693616628647, + -0.0008306278614327312, + 0.01694045402109623, + 0.08447445929050446, + 0.051611416041851044, + -0.01644441857933998, + -0.09564624726772308, + 0.05780177190899849, + 0.025142118334770203, + 0.09255959838628769, + 0.04241729900240898, + 0.08477582782506943, + -0.021866077557206154, + -0.04929516464471817, + -0.12506312131881714, + -0.07244979590177536, + 0.0029237144626677036, + -0.08790113776922226, + 0.040868014097213745, + 0.07693444192409515, + 0.05960718169808388, + -0.005516733042895794, + -0.007132286671549082, + 0.028325941413640976, + 0.07941125333309174, + -0.04697909578680992, + 0.07348665595054626, + -0.03240273892879486, + 0.003062241245061159, + -0.02118297852575779, + -0.04214749112725258, + -0.09639652818441391, + 0.0005903961719013751, + 0.08130783587694168, + -0.08078356832265854, + -0.04192224517464638, + 0.023226017132401466, + 0.10921876132488251, + -0.009228675626218319, + 0.024920407682657242, + 0.04418875277042389, + -0.08967860788106918, + -0.04372193291783333, + -0.06728927791118622 + ], + "shooting-star-bold||wish,comet,meteor": [ + 0.0005920543917454779, + 0.06848853826522827, + 0.09017505496740341, + 0.029208824038505554, + 0.07558796554803848, + -0.03922874480485916, + 0.07702372223138809, + -0.011125599034130573, + 0.04340897500514984, + -0.0024612152483314276, + -0.030780412256717682, + 0.0049958438612520695, + -0.011427802965044975, + -0.04968949779868126, + 0.06387907266616821, + 0.013847874477505684, + 0.028602205216884613, + -0.04359716922044754, + 0.054536815732717514, + 0.03553919494152069, + -0.07523501664400101, + 0.011765479110181332, + -0.02454347349703312, + 0.094924695789814, + 0.050378501415252686, + 0.07641906291246414, + -0.00881861336529255, + 0.003470892086625099, + -0.016578592360019684, + -0.07566279917955399, + 0.05793627351522446, + -0.005093729589134455, + -0.021628456190228462, + 0.03643545135855675, + 0.022871142253279686, + 0.0038532204926013947, + -0.07619864493608475, + -0.07965561747550964, + -0.05772927403450012, + 0.0026076992508023977, + 0.04116459935903549, + -0.05856199935078621, + -0.026781965047121048, + -0.009544063359498978, + -0.06289058178663254, + -0.023267902433872223, + -0.08367214351892471, + -0.03221702203154564, + 0.023309482261538506, + 0.09075677394866943, + -0.09044012427330017, + -0.12898248434066772, + -0.08868666738271713, + -0.028623253107070923, + 0.08344930410385132, + 0.0733116865158081, + -0.011025710962712765, + -0.035222623497247696, + 0.10831485688686371, + -0.06389429420232773, + -0.04310937970876694, + -0.00023876363411545753, + -0.01786278747022152, + 0.023341691121459007, + 0.0668015107512474, + -0.04410592094063759, + -0.059601008892059326, + -0.019556738436222076, + -0.030194737017154694, + 0.03632478043437004, + -0.0014311388367787004, + 0.07957601547241211, + -0.049556657671928406, + -0.009734326973557472, + -0.03863056004047394, + 0.013907530345022678, + 0.08159825950860977, + -0.020575400441884995, + -0.04594048485159874, + 0.043444350361824036, + 0.03049296699464321, + -0.05062802881002426, + -0.13884025812149048, + -0.09013378620147705, + -0.007361367344856262, + 0.06982848793268204, + -0.03738565742969513, + 0.026030810549855232, + 0.02056766487658024, + -0.04486553743481636, + -0.10585284233093262, + -0.08872853964567184, + -0.03719888627529144, + 0.032948724925518036, + -0.08782007545232773, + 0.06198066845536232, + -0.001165068824775517, + -0.11778727918863297, + 0.028804920613765717, + 0.07886150479316711, + 0.07005706429481506, + -0.05523873120546341, + -0.004809679929167032, + 0.017482133582234383, + -0.02851279266178608, + -0.001051308587193489, + -0.045081596821546555, + 0.020894529297947884, + 0.0034656133502721786, + 0.01911577582359314, + -0.028538353741168976, + -0.043671343475580215, + 0.008691607974469662, + -0.050352130085229874, + -0.04172978922724724, + -0.021778343245387077, + -0.07794411480426788, + -0.0127019714564085, + 0.0178858432918787, + -0.04230285808444023, + 0.03099062293767929, + -0.005090953316539526, + 0.012432524934411049, + 0.008153053931891918, + -0.026637893170118332, + 0.010229747742414474, + 0.034826938062906265, + -4.04045069229063e-33, + 0.11189835518598557, + 0.03820859268307686, + 0.03036416321992874, + 0.0628979355096817, + 0.05818023160099983, + 0.021955227479338646, + -0.02978944219648838, + 0.04997432976961136, + -0.0948716402053833, + -0.0472661517560482, + -0.020330658182501793, + -0.017680885270237923, + -0.008826388977468014, + 0.0593208484351635, + 0.029337111860513687, + -0.044073835015296936, + 0.0739336609840393, + -0.020886598154902458, + -0.05200929939746857, + 0.06665287166833878, + -0.07561668008565903, + 0.06778059899806976, + -0.08874043077230453, + -0.03220479190349579, + -0.001962290145456791, + 0.08618094027042389, + 0.0061821527779102325, + 0.05099470913410187, + -0.045797284692525864, + 0.026515455916523933, + 0.14369536936283112, + -0.013710143975913525, + 0.03306221589446068, + 0.05113915726542473, + 0.01774149388074875, + -0.04089021310210228, + -0.09295604377985, + -0.0038164849393069744, + -0.0673026442527771, + -0.06028066575527191, + -0.047652170062065125, + 0.03429851308465004, + -0.12669965624809265, + 0.00040939709288068116, + -0.03144237399101257, + 0.00782392080873251, + 0.0539461225271225, + -0.019104596227407455, + 0.02350788563489914, + -0.02931985631585121, + -0.007652160245925188, + 0.0002833901671692729, + -0.05360739305615425, + 0.014675100333988667, + 0.034517835825681686, + 0.03709647059440613, + 0.016741745173931122, + -0.0088639035820961, + 0.051489897072315216, + -0.10757303982973099, + 0.05297674238681793, + 0.003427814692258835, + 0.06449636071920395, + -0.06874281913042068, + 0.054869379848241806, + 0.1188960000872612, + 0.0013349999208003283, + 0.06349688023328781, + 0.12146376073360443, + 0.02934587560594082, + 0.006731032393872738, + 0.049517400562763214, + 0.02575836516916752, + -0.01998799853026867, + -0.012767045758664608, + 0.05391693860292435, + 0.017898499965667725, + -0.0004269215860404074, + 0.07545843720436096, + -0.00753849558532238, + -0.1201736330986023, + -0.03292171284556389, + -0.01148241851478815, + 0.07445428520441055, + 0.025374431163072586, + 0.002347141969949007, + 0.0071930852718651295, + -0.10115450620651245, + -0.0735606923699379, + 0.043487951159477234, + -0.03550694137811661, + -0.02072986401617527, + -0.0246413704007864, + -0.02646077796816826, + -0.1400703638792038, + 9.869933624213717e-34, + 0.0914059430360794, + 0.06024998426437378, + -0.038075197488069534, + 0.007336884271353483, + 0.06068505719304085, + 0.03327184170484543, + -0.006617450620979071, + -0.008835299871861935, + -0.05947351083159447, + 0.035363491624593735, + -0.0919722393155098, + -0.018055066466331482, + -0.03184489160776138, + -0.09895801544189453, + 0.05633082985877991, + -0.00046191029832698405, + 0.051431044936180115, + 0.044570572674274445, + -0.02661680430173874, + 0.014534552581608295, + -0.021158477291464806, + -0.00585575308650732, + -0.02855743281543255, + 0.012628668919205666, + 0.015686724334955215, + -0.021677421405911446, + 0.07969631254673004, + -0.05899433419108391, + -0.07992128282785416, + -0.033046089112758636, + -0.10142674297094345, + 0.05860380455851555, + -0.007567070424556732, + 0.06209031865000725, + -0.0257697906345129, + 0.03732514753937721, + 0.018523583188652992, + -0.009831584058701992, + 0.0072978707030415535, + -0.06603966653347015, + -0.02533016726374626, + 0.03153011575341225, + 0.016207419335842133, + 0.02226307988166809, + -0.010457981377840042, + 0.018408004194498062, + -0.006651297677308321, + 0.09539689868688583, + 0.028580205515027046, + 0.11351757496595383, + -0.0005587213672697544, + -0.014169215224683285, + -0.02759830839931965, + 0.0568595714867115, + -0.008120459504425526, + -0.05723051354289055, + 0.002915124176070094, + -0.054749876260757446, + 0.06278415024280548, + 0.027661200612783432, + 0.0030673330184072256, + -0.026991261169314384, + -0.017835842445492744, + 0.008553299121558666, + 0.022878512740135193, + -0.04507400840520859, + -0.015042551793158054, + 0.02953435480594635, + -0.025804199278354645, + 0.04269532114267349, + 0.06074608862400055, + -0.04115413874387741, + -0.000220593050471507, + 0.0696357935667038, + 0.05859600752592087, + -0.023129569366574287, + -0.02140165865421295, + 0.02561546489596367, + 0.0055459048599004745, + 0.04662584885954857, + -0.039176538586616516, + 0.014934863895177841, + -0.06944620609283447, + 0.05108019337058067, + 0.046669624745845795, + 0.07195502519607544, + -0.00857595819979906, + 0.0056890579871833324, + -0.03805447369813919, + 0.027957187965512276, + -0.033412907272577286, + 0.09739328175783157, + 0.02491162158548832, + 0.011805808171629906, + 0.024870986118912697, + -1.665165605402308e-08, + 0.005593988113105297, + -0.019884271547198296, + -0.09435679763555527, + 0.01641097664833069, + 0.023405559360980988, + -0.00392169738188386, + -0.026192570105195045, + -0.021095048636198044, + 0.005730196833610535, + -0.0230966005474329, + 0.002158643212169409, + 0.01176897156983614, + -0.012066924944519997, + -0.0018962565809488297, + -4.122434256714769e-05, + 0.0036315014585852623, + -0.07341581583023071, + -0.044151805341243744, + -0.06460212916135788, + -0.010926460847258568, + -0.000634526542853564, + 0.0517202690243721, + 0.05331411585211754, + -0.0771191418170929, + 0.020351095125079155, + 0.005143413785845041, + -0.025813033804297447, + 0.016136927530169487, + -0.012527278624475002, + -0.02816769853234291, + -0.06139485910534859, + 0.06015694513916969, + -0.05695405974984169, + -0.05665842071175575, + -0.0548408143222332, + 0.051289740949869156, + 0.050704363733530045, + 0.03615979477763176, + 0.037094056606292725, + 0.09098908305168152, + 0.05185748264193535, + 0.07222189009189606, + 0.061732981353998184, + -0.012913783080875874, + -0.08636780828237534, + 0.06182250380516052, + 0.05986873805522919, + -0.07607550919055939, + -0.06983768194913864, + -0.04547462612390518, + -0.02266407571732998, + -0.01848551630973816, + -0.08739424496889114, + -0.010528851300477982, + -0.0488872267305851, + 0.042858485132455826, + 0.027501678094267845, + 0.02007973939180374, + -0.0020477145444601774, + -0.03599751368165016, + 0.17693786323070526, + -0.024251217022538185, + -0.03731679916381836, + -0.007364973425865173 + ], + "shopping-bag-bold||ecommerce,market,basket,cart,buying,checkout,places,locations": [ + 0.05835383012890816, + 0.014083445072174072, + -0.040258683264255524, + 0.05457132309675217, + 0.058721914887428284, + -0.02055869810283184, + 0.18568411469459534, + -0.050414059311151505, + 0.007237063720822334, + -0.07754222303628922, + 0.1000380888581276, + 0.021749090403318405, + 0.020737437531352043, + -0.028612101450562477, + 0.028932861983776093, + 0.003407476469874382, + 0.03776592016220093, + 0.02941441535949707, + -0.018221769481897354, + -0.03560324385762215, + -0.003953886218369007, + -0.005980115849524736, + 0.03615347668528557, + 0.061942651867866516, + -0.019269289448857307, + 0.03730607405304909, + -0.015316196717321873, + -0.020610110834240913, + -0.03458354249596596, + -0.06972456723451614, + -0.026537053287029266, + 0.035984426736831665, + 0.13557390868663788, + 0.058402691036462784, + 0.07062813639640808, + -0.04020514339208603, + -0.006273647304624319, + -0.04072437435388565, + 0.028437335044145584, + -0.024772848933935165, + -0.0011819219216704369, + -0.05154024437069893, + -0.08312990516424179, + 0.03811744600534439, + -0.017198404297232628, + -0.02186431549489498, + -0.0066703567281365395, + 0.04182882979512215, + 0.04181216284632683, + 0.060681987553834915, + 0.0005259276949800551, + -0.0063699218444526196, + -0.09529655426740646, + -0.004559407476335764, + -0.03301399201154709, + 0.030058983713388443, + -0.041078295558691025, + -0.04058222845196724, + 0.046599261462688446, + -0.040698107331991196, + 0.06260161101818085, + -0.04453359544277191, + 0.031888049095869064, + 0.06910333782434464, + 0.06618668884038925, + 0.0019958557095378637, + -0.06917154043912888, + 0.011601809412240982, + -0.1025625690817833, + -0.029102873057127, + 0.01612212508916855, + 0.008878622204065323, + -0.059066515415906906, + 0.03687892481684685, + 0.007440990302711725, + 0.01005457155406475, + 0.08096668869256973, + -0.054511360824108124, + -0.021082909777760506, + 0.015662729740142822, + -0.09567110240459442, + -0.05743188038468361, + -0.06054951995611191, + 0.011334860697388649, + -0.04426902160048485, + -0.01813952438533306, + -0.01916883885860443, + -0.12340758740901947, + 0.02352011203765869, + -0.08130217343568802, + -0.08108440041542053, + -0.06877292692661285, + -0.04160672798752785, + 0.01581212878227234, + -0.1381899118423462, + -0.021742256358265877, + 0.06200243532657623, + -0.0009071109816431999, + 0.03940477967262268, + 0.04702727124094963, + 0.06856240332126617, + 0.06526823341846466, + 0.09415732324123383, + -0.029950086027383804, + -0.0853273868560791, + -0.041759785264730453, + -0.0095217265188694, + 0.004178475122898817, + 0.002796383108943701, + 0.04257433861494064, + -0.07925276458263397, + -0.06423189491033554, + 0.045069627463817596, + -0.05848533287644386, + -0.07137679308652878, + 0.025225043296813965, + -0.050929296761751175, + 0.030148861929774284, + 0.10034862905740738, + 0.08031126111745834, + 0.0064092762768268585, + 0.04195837303996086, + -0.0007711854996159673, + -0.038239751011133194, + -0.044800132513046265, + 0.010425016283988953, + 0.01641937717795372, + -2.249496152052594e-33, + -0.03536858782172203, + 0.011794849298894405, + 0.006501136813312769, + 0.08790932595729828, + 0.03202168270945549, + -0.007264676038175821, + -0.0020286948420107365, + -0.08129656314849854, + -0.06080713868141174, + 0.10087491571903229, + 0.05089820548892021, + 0.0167817585170269, + -0.021945567801594734, + 0.07029401510953903, + 0.06306632608175278, + 0.018199853599071503, + -0.0660877674818039, + -0.009937628172338009, + 0.027827126905322075, + -0.04619978740811348, + -0.08710376918315887, + 0.01502124685794115, + 0.004437448922544718, + -0.04364023730158806, + -0.01547673624008894, + -0.012440178543329239, + 0.036625053733587265, + 0.05851013958454132, + 0.0863628089427948, + 0.05285370722413063, + 0.10140570253133774, + 0.021564558148384094, + 0.008641127496957779, + 0.03353140875697136, + -0.08328834176063538, + -0.007182734552770853, + -0.02839096263051033, + -0.006470363587141037, + 0.03688976168632507, + -0.0074861133471131325, + -0.10690263658761978, + -0.022931020706892014, + -0.010411977767944336, + 0.029508868232369423, + -0.0023646673653274775, + 0.042115118354558945, + 0.008937567472457886, + -0.021566586568951607, + 0.02622348628938198, + 0.06282414495944977, + -0.12204857915639877, + -0.020338155329227448, + 0.005926148500293493, + -0.013693057000637054, + -0.0379188098013401, + -0.08433797955513, + -0.010497751645743847, + 0.00736538041383028, + 0.01089506596326828, + -0.007105513475835323, + 0.05944109335541725, + 0.09280591458082199, + -0.035821180790662766, + -0.04186050966382027, + -0.0057742418721318245, + 0.02916429005563259, + 0.013275437988340855, + -0.009525695815682411, + 0.044072434306144714, + 0.060189347714185715, + -0.005521772429347038, + 0.09850378334522247, + 0.07377342134714127, + 0.07368867844343185, + 0.017203254625201225, + 0.03180711716413498, + 0.0014796884497627616, + 0.09026558697223663, + 0.01637674681842327, + -0.11405367404222488, + -0.052374932914972305, + -0.06035158410668373, + -0.016244351863861084, + 0.12919732928276062, + -0.10772199928760529, + 0.027957100421190262, + -0.010335530154407024, + -0.04833533614873886, + -0.018751228228211403, + -0.00841657817363739, + -0.07430963218212128, + 0.08502715826034546, + -0.030694419518113136, + -0.05460287258028984, + -0.052989427000284195, + -6.623362408971527e-34, + 0.08153095096349716, + -0.032819900661706924, + -0.041269972920417786, + 0.07379385828971863, + -0.003902110271155834, + 0.02233814261853695, + -0.05024171620607376, + -0.05538344010710716, + 0.036935482174158096, + -0.04029734060168266, + -0.09139873832464218, + -0.0021027724724262953, + 0.02201364003121853, + -0.0023179235868155956, + 0.030726773664355278, + 0.04993731155991554, + 0.05736708268523216, + -0.012466141022741795, + -0.03133799135684967, + -0.002182038500905037, + -0.0424349382519722, + 0.0040052165277302265, + -0.0921759158372879, + 0.04706311970949173, + -0.06475161015987396, + 0.007093209307640791, + -0.04341669753193855, + -0.008939774706959724, + -0.02435755357146263, + -0.02011045254766941, + -0.04908604174852371, + -0.06396966427564621, + 0.10212301462888718, + 0.11329101026058197, + -0.09084490686655045, + -0.028052762150764465, + -0.00986129604279995, + -0.0008414858020842075, + 0.1024797335267067, + 0.031626760959625244, + 0.017741233110427856, + -0.026999441906809807, + 0.011303963139653206, + 0.008757466450333595, + 0.0027501380536705256, + -0.05936901271343231, + -0.040336672216653824, + -0.023463847115635872, + 0.09356904774904251, + -0.021676799282431602, + -0.03431928530335426, + 0.08209259063005447, + -0.13292567431926727, + -0.04558633640408516, + -0.055788956582546234, + 0.14419709146022797, + -0.004030066542327404, + 0.0037870248779654503, + -0.020018182694911957, + -0.014251037500798702, + -0.048353161662817, + 0.06969096511602402, + 0.042341068387031555, + -0.007405375596135855, + 0.016550978645682335, + -0.06192769482731819, + 0.012094392441213131, + -0.060666121542453766, + 0.04725043475627899, + -0.041751742362976074, + 0.025456074625253677, + -0.00641827005892992, + 0.018440762534737587, + -0.031856123358011246, + -0.022282622754573822, + -0.0014266003854572773, + 0.11186700314283371, + 0.05632748827338219, + 0.029101375490427017, + -0.006813072599470615, + -0.021278779953718185, + -0.01531845424324274, + 0.014896068722009659, + 0.08598192036151886, + 0.03375855088233948, + 0.01926800049841404, + -0.11327627301216125, + -0.010837467387318611, + 0.0006312429904937744, + -0.046741992235183716, + -0.04775860533118248, + 0.01948143169283867, + -0.06007269024848938, + 0.007321998011320829, + -0.009606679901480675, + -2.3610523314232523e-08, + 0.027876010164618492, + -0.022205524146556854, + -0.028241124004125595, + 0.05649475380778313, + 0.07619864493608475, + -0.025191115215420723, + 0.040454037487506866, + 0.0643390342593193, + -0.058305855840444565, + 0.04805948957800865, + 0.03308536112308502, + 0.0013879260513931513, + -0.13865238428115845, + -0.0015188967809081078, + -0.005124962888658047, + 0.031788431107997894, + -0.0032086623832583427, + 0.04065089300274849, + -0.024533551186323166, + -0.03765834867954254, + -0.0422181636095047, + 0.03985525295138359, + 0.03947928175330162, + -0.007881359197199345, + -0.025811094790697098, + 0.029010677710175514, + -0.03251305967569351, + -0.017072776332497597, + 0.04477997124195099, + -0.004188198130577803, + 0.021038848906755447, + 0.055165525525808334, + -0.03950526937842369, + -0.03416251391172409, + -0.015000957064330578, + -0.06327497959136963, + -0.06444613635540009, + -0.009827193804085255, + -0.049709055572748184, + 0.07351361960172653, + -0.02501332201063633, + -0.0832504853606224, + -0.023913642391562462, + -0.040984734892845154, + 0.004465555772185326, + 0.043547097593545914, + 0.00023179559502750635, + -0.04406895488500595, + -0.03109755739569664, + 0.022334488108754158, + -0.06869817525148392, + -0.036050669848918915, + 0.07525469362735748, + 0.0025259023532271385, + -0.02428947202861309, + -0.01164491381496191, + -0.028810663148760796, + -0.03619736433029175, + 0.020928524434566498, + 0.06431540846824646, + 0.06770841032266617, + -0.03819890692830086, + -0.0018142869230359793, + -0.030647054314613342 + ], + "shopping-bag-open-bold||ecommerce,market,basket,cart,buying,checkout,places,locations": [ + 0.06807254254817963, + 0.0045405104756355286, + -0.04264555126428604, + 0.059124864637851715, + 0.06047559157013893, + -0.019185923039913177, + 0.1553272008895874, + -0.039714399725198746, + 0.015228993259370327, + -0.07278307527303696, + 0.10472801327705383, + 0.028056222945451736, + 0.003634764114394784, + -0.020385103300213814, + 0.04997119680047035, + 0.009938866831362247, + 0.020359965041279793, + 0.020388871431350708, + -0.01933041773736477, + -0.02589712105691433, + 0.007553274743258953, + -0.0060716173611581326, + 0.02672591432929039, + 0.026896601542830467, + -0.038984332233667374, + 0.031326767057180405, + -0.01611311547458172, + -0.013513470999896526, + -0.031613484025001526, + -0.07642851024866104, + -0.008475414477288723, + 0.028310101479291916, + 0.12668566405773163, + 0.05179832875728607, + 0.08797135949134827, + -0.034830883145332336, + 0.0044517493806779385, + -0.03800477087497711, + 0.011044027283787727, + -0.03921761363744736, + 0.016606392338871956, + -0.06352540850639343, + -0.0896768793463707, + 0.061099857091903687, + -0.007301559671759605, + -0.024461643770337105, + 0.0002537784166634083, + 0.03306230902671814, + 0.04630524665117264, + 0.05522647127509117, + -0.00444821547716856, + -0.008410412818193436, + -0.09902637451887131, + -0.004557550419121981, + -0.02751871943473816, + 0.03221513330936432, + -0.03008922189474106, + -0.05705071985721588, + 0.043476637452840805, + -0.04049926623702049, + 0.054921187460422516, + -0.044071264564991, + 0.005230886396020651, + 0.07418709248304367, + 0.06123055890202522, + -0.003648162819445133, + -0.08061283826828003, + 0.013043280690908432, + -0.10160668194293976, + -0.05474746599793434, + 0.020086189731955528, + 0.013701487332582474, + -0.054176852107048035, + 0.037592872977256775, + -0.001085792318917811, + 0.004119143821299076, + 0.054553255438804626, + -0.05577341094613075, + -0.015918349847197533, + 0.0145875234156847, + -0.07919653505086899, + -0.05748578533530235, + -0.06882627308368683, + 0.0066987560130655766, + -0.0515628419816494, + 0.003976116422563791, + -0.009254391305148602, + -0.10761570930480957, + 0.03817426413297653, + -0.06084812059998512, + -0.07792090624570847, + -0.06646940857172012, + -0.04281551018357277, + 0.012827740982174873, + -0.13248948752880096, + -0.048567190766334534, + 0.05148995295166969, + 0.0013007823145017028, + 0.05316443368792534, + 0.05090735852718353, + 0.06180434301495552, + 0.059086304157972336, + 0.09606528282165527, + -0.015254388563334942, + -0.09583824127912521, + -0.03439762815833092, + 0.0063330428674817085, + 0.024370023980736732, + -0.004234266001731157, + 0.03801928088068962, + -0.06163633614778519, + -0.08282177895307541, + 0.0737173929810524, + -0.07172498852014542, + -0.07240474224090576, + 0.022974910214543343, + -0.07231791317462921, + 0.022548481822013855, + 0.10922420024871826, + 0.07644525170326233, + -0.006983110215514898, + 0.04369194805622101, + 0.0031445608474314213, + -0.04940918833017349, + -0.054596930742263794, + 0.01706729643046856, + 0.013382382690906525, + -2.2665114327807467e-33, + -0.03653716668486595, + 0.008817635476589203, + 0.002794864121824503, + 0.08449560403823853, + 0.03241010382771492, + -0.00024877730174921453, + -0.016408449038863182, + -0.06827031075954437, + -0.0750243067741394, + 0.10736487805843353, + 0.06334344297647476, + 0.02936314232647419, + -0.030973751097917557, + 0.07513955235481262, + 0.07881028950214386, + 0.030721860006451607, + -0.051040519028902054, + 0.01483864989131689, + 0.030530506744980812, + -0.05949496850371361, + -0.0763988122344017, + 0.01694405823945999, + 0.008906549774110317, + -0.031216571107506752, + -0.02210855484008789, + -0.015835624188184738, + 0.031341567635536194, + 0.0423186793923378, + 0.07815705984830856, + 0.05100220441818237, + 0.11418995261192322, + 0.004772060550749302, + 0.005625488236546516, + 0.057045258581638336, + -0.0862041637301445, + 0.010463502258062363, + -0.025527803227305412, + -0.015259072184562683, + 0.049102772027254105, + -0.03273535519838333, + -0.12138202041387558, + -0.02106785960495472, + -0.007146625779569149, + 0.04286867380142212, + -0.005279595032334328, + 0.021292978897690773, + -0.013341673649847507, + -0.02092086337506771, + 0.017797354608774185, + 0.05772237479686737, + -0.11684785038232803, + -0.02182532474398613, + -0.015403426252305508, + -0.007375674322247505, + -0.04533008113503456, + -0.06761303544044495, + -0.015552259050309658, + 1.4141290193947498e-05, + 0.00784801784902811, + -0.002881924621760845, + 0.05775079131126404, + 0.10687035322189331, + -0.037200771272182465, + -0.06525924056768417, + -0.008268259465694427, + 0.02779529243707657, + 0.02329227700829506, + -0.019178112968802452, + 0.04571804776787758, + 0.06398174911737442, + -0.02109856717288494, + 0.08157101273536682, + 0.06667937338352203, + 0.0664815679192543, + 0.018561990931630135, + 0.05124052241444588, + 0.0009820874547585845, + 0.08249242603778839, + 0.030080946162343025, + -0.1011720523238182, + -0.02283455990254879, + -0.061947472393512726, + -0.010917778126895428, + 0.14457957446575165, + -0.12476757913827896, + 0.024554802104830742, + -0.01665499620139599, + -0.032543499022722244, + -0.028907718136906624, + 0.004421632271260023, + -0.08464813232421875, + 0.08707331866025925, + -0.032190583646297455, + -0.041309554129838943, + -0.05269946902990341, + -2.3274962633723993e-34, + 0.0735999047756195, + -0.03133222833275795, + -0.030055969953536987, + 0.06998293846845627, + -0.0020770765841007233, + 0.03145371749997139, + -0.0484541580080986, + -0.06582267582416534, + 0.04271809756755829, + -0.03293617069721222, + -0.07998909801244736, + 0.00637455377727747, + 0.05513722077012062, + 0.012428327463567257, + 0.02229175716638565, + 0.0252083670347929, + 0.0587761290371418, + 0.014671467244625092, + -0.040554046630859375, + 0.016367044299840927, + -0.0575263611972332, + -0.0054243141785264015, + -0.08826985955238342, + 0.03003806434571743, + -0.028744960203766823, + 0.018903164193034172, + -0.03922806680202484, + -0.012369225732982159, + -0.03025234490633011, + -0.021128423511981964, + -0.04833526536822319, + -0.06696277856826782, + 0.09210588783025742, + 0.11831965297460556, + -0.08378630876541138, + -0.019674791023135185, + -0.007782585918903351, + 0.0006928435759618878, + 0.10842441022396088, + 0.03633669763803482, + 0.01052609458565712, + -0.02237667888402939, + 0.005662498064339161, + 0.012068528681993484, + -0.01154205109924078, + -0.05854758247733116, + -0.06010359898209572, + -0.01881137117743492, + 0.07381239533424377, + -0.04590391740202904, + -0.05106546729803085, + 0.08792046457529068, + -0.12271580100059509, + -0.08015048503875732, + -0.04259760305285454, + 0.14992347359657288, + 0.014573044143617153, + -0.00890121515840292, + -0.024249466136097908, + -0.028328336775302887, + -0.027415363118052483, + 0.06767173856496811, + 0.03216061368584633, + -0.003229835070669651, + 0.011881930753588676, + -0.07762905210256577, + 0.02268591895699501, + -0.04002072662115097, + 0.01774303801357746, + -0.061919376254081726, + 0.016665589064359665, + -0.008951785042881966, + 0.03176100552082062, + -0.04322225973010063, + -0.024325881153345108, + 0.007967937737703323, + 0.11585939675569534, + 0.03645812347531319, + 0.02575322426855564, + 0.0024074630346149206, + -0.02494218945503235, + -0.02476411499083042, + 0.023153286427259445, + 0.06113341078162193, + 0.04509935528039932, + 0.016803447157144547, + -0.09410985559225082, + -0.01359463483095169, + 0.00708500761538744, + -0.020741600543260574, + -0.07120775431394577, + 0.03354640677571297, + -0.042903151363134384, + 0.01721975766122341, + -0.020533427596092224, + -2.3267975990393097e-08, + 0.009862990118563175, + -0.050431638956069946, + 0.0014982472639530897, + 0.06233398616313934, + 0.06409309804439545, + -0.027096722275018692, + 0.038222767412662506, + 0.07781439274549484, + -0.051409393548965454, + 0.06135271117091179, + 0.0372193269431591, + 0.02620616741478443, + -0.1378844529390335, + 0.0008063658606261015, + -0.015234759077429771, + 0.05188988149166107, + 0.012932175770401955, + 0.03076639585196972, + -0.018491707742214203, + -0.03163903206586838, + -0.03387843817472458, + 0.03750581294298172, + 0.05363067612051964, + 0.002604971406981349, + -0.042335473001003265, + 0.016125166788697243, + -0.04351934790611267, + -0.014314818195998669, + 0.05153845250606537, + 0.004316732753068209, + 0.027295399457216263, + 0.052036967128515244, + -0.032918840646743774, + -0.03035723976790905, + -0.027356687933206558, + -0.043286435306072235, + -0.06592736393213272, + 0.011438342742621899, + -0.05522524192929268, + 0.07293611019849777, + -0.008506848476827145, + -0.08279324322938919, + -0.02530939318239689, + -0.03977658599615097, + -0.010163388215005398, + 0.045806292444467545, + 0.0033679280895739794, + -0.026982381939888, + -0.033060457557439804, + 0.019580228254199028, + -0.07955419272184372, + -0.03111315704882145, + 0.07134213298559189, + -0.02096804790198803, + -0.025501497089862823, + -0.002684814389795065, + -0.021794967353343964, + -0.04390411451458931, + 0.021853547543287277, + 0.06834414601325989, + 0.05543304607272148, + -0.030121590942144394, + 0.0029292928520590067, + -0.025132158771157265 + ], + "shopping-cart-bold||ecommerce,market,basket,buying,groceries,checkout,places,locations": [ + 0.0686117559671402, + -0.024029066786170006, + -0.005521033890545368, + 0.053398970514535904, + 0.025943027809262276, + 0.003038784023374319, + 0.11982636898756027, + -0.045224860310554504, + -0.006368107162415981, + -0.07457137852907181, + 0.11659877002239227, + 0.0216246135532856, + 0.005784159991890192, + -0.03307526931166649, + 0.0394287072122097, + -0.014523936435580254, + 0.049588076770305634, + 0.04178266599774361, + -0.014096297323703766, + -0.036228615790605545, + -0.0008335085003636777, + -0.011513170786201954, + 0.010761981830000877, + 0.06516881287097931, + -0.011714853346347809, + 0.013621438294649124, + -0.005313182715326548, + -0.006141866557300091, + -0.04517029970884323, + -0.07763390988111496, + -0.021401921287178993, + 0.02831573225557804, + 0.1187455803155899, + 0.03934667631983757, + 0.054923608899116516, + -0.057283930480480194, + 0.030097568407654762, + -0.033891621977090836, + 0.034255221486091614, + -0.03749414533376694, + 0.0015128942904993892, + -0.07040367275476456, + -0.08784621953964233, + 0.03963476046919823, + 0.017403261736035347, + -0.03057856298983097, + 0.002891489304602146, + 0.01899655908346176, + 0.03801638260483742, + 0.05306699872016907, + -0.02058703824877739, + -0.003635111264884472, + -0.08107102662324905, + -0.012070100754499435, + -0.04737371951341629, + 0.05469615012407303, + -0.04497672989964485, + -0.015737047418951988, + 0.10668417811393738, + -0.0201384499669075, + 0.05229220539331436, + -0.05130068585276604, + 0.055944401770830154, + 0.05021025240421295, + 0.05708671733736992, + -0.0051062754355371, + -0.07895629853010178, + 0.00921381264925003, + -0.10864770412445068, + -0.024000247940421104, + 0.045045096427202225, + -0.022821204736828804, + -0.04293619468808174, + 0.008051584474742413, + 0.0013301967410370708, + -0.0025266208685934544, + 0.05775352939963341, + -0.06066349521279335, + -0.0502798855304718, + 0.039842333644628525, + -0.07662971317768097, + -0.045363858342170715, + -0.06711430847644806, + -0.001493446179665625, + -0.04645836725831032, + -0.016140788793563843, + -0.02490456961095333, + -0.09662718325853348, + 0.017318036407232285, + -0.07886774837970734, + -0.08309800922870636, + -0.06401342898607254, + -0.02890205942094326, + -0.01091648731380701, + -0.08965399861335754, + -0.03196622431278229, + 0.0548613965511322, + -0.032966937869787216, + 0.06836188584566116, + 0.048697683960199356, + 0.07482177019119263, + 0.044933293014764786, + 0.07723452895879745, + -0.006063610780984163, + -0.09421238303184509, + -0.047754865139722824, + -0.04619736224412918, + 0.04407576471567154, + 0.0001671707141213119, + 0.022626658901572227, + -0.06297780573368073, + -0.08824490755796432, + 0.021555345505475998, + -0.04116901755332947, + -0.09932748973369598, + -0.010296162217855453, + -0.06800727546215057, + -0.037439730018377304, + 0.12371556460857391, + 0.11098134517669678, + 0.024438807740807533, + 0.02472521737217903, + 8.023270652302017e-07, + -0.049396708607673645, + -0.0709499791264534, + 0.019759519025683403, + 0.03706261143088341, + -2.1095070808261448e-33, + -0.04161812365055084, + 0.003970495890825987, + 0.003238016739487648, + 0.03175730258226395, + 0.04135001823306084, + 0.03355405479669571, + -0.011800463311374187, + -0.06182507798075676, + -0.06099911779165268, + 0.07592878490686417, + 0.07854072004556656, + 0.0404236800968647, + -0.021608596667647362, + 0.07403489202260971, + 0.029498815536499023, + 0.01855206862092018, + -0.05219760909676552, + 0.03534834459424019, + 0.00448404299095273, + -0.039627835154533386, + -0.05057843029499054, + 0.024342678487300873, + -0.036267608404159546, + -0.01724299229681492, + -0.027003636583685875, + -0.004768065642565489, + 0.022463787347078323, + 0.0552457794547081, + 0.06958521157503128, + 0.03971199691295624, + 0.10177651792764664, + 0.01494686771184206, + 0.029193567112088203, + 0.0187996756285429, + -0.05156177282333374, + -0.005971584469079971, + -0.057750292122364044, + -0.01771603710949421, + 0.03656092658638954, + -0.04153125360608101, + -0.12900902330875397, + -0.011914250440895557, + -0.01596207544207573, + 0.03689529001712799, + 0.010295737534761429, + 0.08682429045438766, + -0.010712027549743652, + -0.053391970694065094, + 0.028783386573195457, + 0.04703405499458313, + -0.1269112080335617, + -0.01118376199156046, + -0.011927965097129345, + 0.0030145931523293257, + -0.0019318013219162822, + -0.06829103827476501, + -0.03234350308775902, + 0.015437977388501167, + -0.002672984264791012, + -0.024129843339323997, + 0.03292762488126755, + 0.058865826576948166, + -0.035777829587459564, + -0.08953550457954407, + -0.03433888033032417, + 0.033085212111473083, + -0.04023939371109009, + 0.016944166272878647, + 0.04076838493347168, + 0.07687877863645554, + 0.0031493017449975014, + 0.12054026126861572, + 0.08429592102766037, + 0.09125355631113052, + 0.02753300592303276, + 0.06786008179187775, + -0.02053799293935299, + 0.09428351372480392, + -0.013476216234266758, + -0.10852667689323425, + -0.10154102742671967, + -0.04148546978831291, + -0.025736559182405472, + 0.150530606508255, + -0.05988365784287453, + 0.030490372329950333, + -0.04841529577970505, + -0.05765717849135399, + -0.016567695885896683, + 0.02481619454920292, + -0.06573184579610825, + 0.10118565708398819, + -0.060370031744241714, + -0.016881028190255165, + -0.051327887922525406, + -1.551204753206153e-33, + 0.028703629970550537, + 0.00636587617918849, + -0.052521251142024994, + 0.05982717499136925, + -0.03846350312232971, + 0.024335138499736786, + -0.03621305152773857, + -0.044450726360082626, + 0.04787665233016014, + -0.040219902992248535, + -0.08744087815284729, + 0.003470814786851406, + 0.017734302207827568, + -0.01998593844473362, + -0.004953435156494379, + 0.04434742033481598, + 0.10178137570619583, + 0.008880266919732094, + -0.012753301300108433, + 0.009918625466525555, + -0.042534492909908295, + 0.004839715547859669, + -0.10288561135530472, + 0.05774268880486488, + -0.0020923749543726444, + 0.02611049823462963, + -0.0432031974196434, + -0.03250851482152939, + -0.03188025578856468, + 0.011647806502878666, + -0.05257444456219673, + -0.05898986756801605, + 0.1051575243473053, + 0.09391225129365921, + -0.0800396054983139, + 0.004394918214529753, + -0.02161387912929058, + -0.0005342998774722219, + 0.0819966271519661, + 0.027682466432452202, + 0.05050749331712723, + -0.021512549370527267, + 0.03487452119588852, + 0.0332895927131176, + 0.009181549772620201, + -0.037986744195222855, + -0.04468109831213951, + -0.018301445990800858, + 0.08999879658222198, + -0.008949234150350094, + -0.03753748908638954, + 0.07444780319929123, + -0.10155348479747772, + -0.05947546288371086, + -0.034955866634845734, + 0.10894101858139038, + 0.0507393442094326, + 0.02009519934654236, + -0.0397278256714344, + -0.025713657960295677, + -0.02837296761572361, + 0.05991000309586525, + 0.05918123573064804, + 0.021611420437693596, + 0.012854285538196564, + -0.09242771565914154, + 0.04109151288866997, + -0.07636533677577972, + 0.06417789310216904, + -0.06367114931344986, + 0.026529619470238686, + 0.03596597909927368, + 0.005720688961446285, + -0.023902634158730507, + -0.059461548924446106, + 0.0114832678809762, + 0.0859856903553009, + 0.03735974058508873, + -0.004492368549108505, + -0.01287253201007843, + -0.026732319965958595, + -0.015040028840303421, + 0.025598246604204178, + 0.05927645042538643, + 0.01735224947333336, + -0.008824190124869347, + -0.11016097664833069, + -0.033033840358257294, + 0.008511170744895935, + -0.04006672650575638, + -0.08271066844463348, + 0.02752535045146942, + -0.08226650208234787, + -0.015119162388145924, + -0.06064329668879509, + -2.383657715654408e-08, + 0.04897184297442436, + -0.03758253529667854, + -0.025062179192900658, + 0.05883963033556938, + 0.06265493482351303, + -0.03601229935884476, + 0.035263460129499435, + 0.07129616290330887, + -0.05664581060409546, + 0.03738630563020706, + 0.02298576757311821, + 0.013905867002904415, + -0.11431334167718887, + -0.01650441810488701, + 0.025919189676642418, + 0.020514892414212227, + 0.03844209015369415, + 0.012693347409367561, + -0.009498097002506256, + -0.016376400366425514, + -0.06858370453119278, + 0.04079146310687065, + 0.019153475761413574, + 0.006458266172558069, + -0.04156052693724632, + 0.02880406752228737, + -0.002197632100433111, + 0.019036240875720978, + 0.04505009204149246, + -0.013890950940549374, + 0.041393302381038666, + 0.04329529404640198, + -0.019551340490579605, + -0.005492033902555704, + -0.026328792795538902, + -0.06194178760051727, + -0.08207283169031143, + 0.007638948038220406, + -0.09107493609189987, + 0.04561556875705719, + -0.039082616567611694, + -0.06794249266386032, + -0.051000457257032394, + -0.04057448357343674, + 0.02908031828701496, + 0.03516819700598717, + 0.0006613789009861648, + -0.053196001797914505, + -0.006785700097680092, + -0.004493603482842445, + -0.07809658348560333, + -0.04099877551198006, + 0.07357772439718246, + 0.011163296177983284, + 0.014418240636587143, + -0.009571289643645287, + 0.014635621570050716, + -0.05813169106841087, + 0.01984279975295067, + 0.042845048010349274, + 0.10636361688375473, + -0.019801585003733635, + 0.03476582467556, + -0.020434316247701645 + ], + "shopping-cart-simple-bold||ecommerce,market,basket,buying,groceries,checkout,places,locations": [ + 0.07471825927495956, + -0.008758504875004292, + 0.0017769597470760345, + 0.06135997176170349, + 0.023798096925020218, + 0.003932592459022999, + 0.10722153633832932, + -0.02074584551155567, + -0.031135618686676025, + -0.06553222984075546, + 0.12009883671998978, + 0.005538074765354395, + 0.00747229577973485, + -0.027269911020994186, + 0.043159279972314835, + -0.028061388060450554, + 0.03491145744919777, + 0.022446036338806152, + -0.015271710231900215, + -0.028542673215270042, + -0.014570046216249466, + -0.022215407341718674, + -0.010621640831232071, + 0.057648833841085434, + -0.021633967757225037, + 0.02153637818992138, + -0.010716992430388927, + 0.010447056032717228, + -0.0289806816726923, + -0.07527223229408264, + -0.013540751300752163, + 0.024104338139295578, + 0.11658661812543869, + 0.03432142361998558, + 0.053384069353342056, + -0.0647287666797638, + 0.04393620043992996, + -0.025583704933524132, + 0.023718034848570824, + -0.046059731394052505, + -0.013601461425423622, + -0.07283826917409897, + -0.08954733610153198, + 0.053014736622571945, + 0.019475670531392097, + -0.03503481671214104, + 0.009060936979949474, + 0.024359989911317825, + 0.03356292098760605, + 0.043687984347343445, + -0.007603843230754137, + 0.005978388246148825, + -0.08529248088598251, + -0.01823737658560276, + -0.04161641374230385, + 0.060973577201366425, + -0.05253124237060547, + -0.005345726851373911, + 0.10861083120107651, + -0.025943387299776077, + 0.051291920244693756, + -0.06845787167549133, + 0.05264638364315033, + 0.05122939869761467, + 0.05273863673210144, + -0.017225194722414017, + -0.08283361047506332, + 0.0007492798031307757, + -0.10524150729179382, + -0.029178187251091003, + 0.03379198536276817, + -0.024818118661642075, + -0.06122599169611931, + 0.029377497732639313, + 0.0012028564233332872, + -0.02192537859082222, + 0.03644143044948578, + -0.05622202157974243, + -0.057035285979509354, + 0.05952152609825134, + -0.09963750839233398, + -0.04884457588195801, + -0.08119210600852966, + 0.014883321709930897, + -0.053628336638212204, + -0.018748249858617783, + -0.014941620640456676, + -0.08923885971307755, + 0.028679076582193375, + -0.07687737047672272, + -0.06162191554903984, + -0.04616065323352814, + -0.005193276330828667, + -0.0074135921895504, + -0.07419703900814056, + -0.032917823642492294, + 0.06298793852329254, + -0.029939495027065277, + 0.04568261280655861, + 0.0402095802128315, + 0.06662759184837341, + 0.040428526699543, + 0.09563542902469635, + -0.022049425169825554, + -0.08820502460002899, + -0.044414371252059937, + -0.03975853696465492, + 0.030640190467238426, + 0.00043530992115847766, + 0.012209894135594368, + -0.0779852569103241, + -0.08921561390161514, + 0.03159882128238678, + -0.04683912917971611, + -0.09124324470758438, + -0.010274816304445267, + -0.07620283961296082, + -0.042178038507699966, + 0.12141306698322296, + 0.12160858511924744, + 0.019978376105427742, + 0.019459491595625877, + -0.002217079047113657, + -0.04153691977262497, + -0.07843740284442902, + 0.021818723529577255, + 0.045901790261268616, + -2.0851161240595593e-33, + -0.032556675374507904, + 0.020988989621400833, + -0.0006492896354757249, + 0.04350227117538452, + 0.042201194912195206, + 0.02723134681582451, + -0.009015058167278767, + -0.05353902280330658, + -0.055926159024238586, + 0.07769950479269028, + 0.09683626145124435, + 0.03989221528172493, + -0.018340669572353363, + 0.08141009509563446, + 0.0422276072204113, + 0.030852187424898148, + -0.034888241440057755, + 0.03524522855877876, + 0.010156925767660141, + -0.04982984811067581, + -0.05303118750452995, + 0.04497496038675308, + -0.025993814691901207, + -0.0233564805239439, + -0.016062209382653236, + -0.002304165391251445, + 0.027189699932932854, + 0.05369258671998978, + 0.07342208921909332, + 0.03177034109830856, + 0.09798189252614975, + 0.000899696140550077, + 0.03244171291589737, + 0.022914616391062737, + -0.05333215743303299, + -0.005796071141958237, + -0.031412024050951004, + -0.014090272597968578, + 0.03866623342037201, + -0.059860341250896454, + -0.13739772140979767, + -0.010299764573574066, + -0.005185337737202644, + 0.03139837831258774, + 0.02115595154464245, + 0.08283020555973053, + -0.016153128817677498, + -0.047203123569488525, + 0.03520909696817398, + 0.043344251811504364, + -0.12473031878471375, + -0.004779035225510597, + -0.02037792280316353, + 0.010958254337310791, + 0.005746316164731979, + -0.04402168095111847, + -0.0355466865003109, + 0.012937434948980808, + -0.010293145664036274, + -0.016696704551577568, + 0.03191680461168289, + 0.06855706125497818, + -0.036825478076934814, + -0.08236061781644821, + -0.03166523575782776, + 0.03517715632915497, + -0.041555505245923996, + 0.0019854274578392506, + 0.043723881244659424, + 0.0808560773730278, + -0.009817029349505901, + 0.11812670528888702, + 0.07726830244064331, + 0.0700749009847641, + 0.04789898544549942, + 0.08050737529993057, + 0.004013693425804377, + 0.0637487918138504, + -0.027557596564292908, + -0.09578461945056915, + -0.09235808998346329, + -0.03149379417300224, + -0.031091168522834778, + 0.16510619223117828, + -0.08423575013875961, + 0.024522848427295685, + -0.047258589416742325, + -0.03989558666944504, + -0.030928034335374832, + 0.017228754237294197, + -0.06450726091861725, + 0.10184600204229355, + -0.06401582062244415, + -0.02239697426557541, + -0.03887626528739929, + -1.3330577972774992e-33, + 0.017816416919231415, + -0.004109117202460766, + -0.05068139731884003, + 0.0632501021027565, + -0.0399334579706192, + 0.03333233296871185, + -0.028814077377319336, + -0.054310739040374756, + 0.05631979927420616, + -0.028594639152288437, + -0.09962888807058334, + -0.001252171117812395, + 0.00938350334763527, + -0.01659134216606617, + -0.011451377533376217, + 0.05171822011470795, + 0.0847359299659729, + 0.010904348455369473, + -0.0009591461275704205, + 0.0154000548645854, + -0.03392990306019783, + 0.016020603477954865, + -0.11504165828227997, + 0.036484260112047195, + 0.00459019560366869, + 0.029661282896995544, + -0.05637681856751442, + -0.027430744841694832, + -0.03081573359668255, + 0.004951562732458115, + -0.0416063517332077, + -0.07310158014297485, + 0.1033916100859642, + 0.07649601995944977, + -0.07932060211896896, + 0.006078197155147791, + -0.03844952955842018, + 0.002349366433918476, + 0.07842974364757538, + 0.022855494171380997, + 0.04014744982123375, + -0.016837164759635925, + 0.04649622365832329, + 0.02786264941096306, + 0.01770748943090439, + -0.05138591304421425, + -0.035066157579422, + -0.038063738495111465, + 0.07979284226894379, + -0.02857622317969799, + -0.04435408115386963, + 0.06855042278766632, + -0.10342173278331757, + -0.06092904508113861, + -0.028252670541405678, + 0.11476153135299683, + 0.0705152228474617, + 0.02277299202978611, + -0.0328446701169014, + -0.024435894563794136, + -0.02914206124842167, + 0.05723484233021736, + 0.03939349949359894, + 0.026166656985878944, + 0.0021652502473443747, + -0.09114798158407211, + 0.03822898864746094, + -0.079475998878479, + 0.050145938992500305, + -0.07152028381824493, + 0.02029304951429367, + 0.039986226707696915, + 0.016987599432468414, + -0.04694966971874237, + -0.05571335181593895, + 0.024637719616293907, + 0.07802766561508179, + 0.03185371309518814, + -0.004286993760615587, + -0.02869434468448162, + -0.012086266651749611, + -0.010548660531640053, + 0.023525716736912727, + 0.03258644789457321, + 0.024815741926431656, + -0.012728515081107616, + -0.10451837629079819, + -0.04504181444644928, + 0.012852335348725319, + -0.024839062243700027, + -0.09524961560964584, + 0.03769606351852417, + -0.058805420994758606, + 0.0026390710845589638, + -0.06834839284420013, + -2.4206530113701774e-08, + 0.0451984703540802, + -0.06087983772158623, + -0.011141795665025711, + 0.05630054324865341, + 0.06380075961351395, + -0.029615625739097595, + 0.03679591789841652, + 0.0719950869679451, + -0.05953764170408249, + 0.051944080740213394, + 0.014092653058469296, + 0.004513861611485481, + -0.11612351983785629, + 0.011672519147396088, + 0.013737086206674576, + 0.04343634471297264, + 0.04881426692008972, + 0.0067008002661168575, + -0.0005651454557664692, + -0.004994221497327089, + -0.0606064535677433, + 0.03034215420484543, + 0.005147838965058327, + 0.011526080779731274, + -0.046179480850696564, + 0.023876432329416275, + 0.008390669710934162, + 0.03426758944988251, + 0.050113745033741, + -0.015253611840307713, + 0.042156871408224106, + 0.04020582139492035, + -0.013449891470372677, + 0.0060457210056483746, + -0.038013897836208344, + -0.05761986970901489, + -0.08093462884426117, + 0.011913313530385494, + -0.10610435158014297, + 0.024049250409007072, + -0.029470207169651985, + -0.055973391979932785, + -0.0511581115424633, + -0.04630056768655777, + 0.026399247348308563, + 0.03457310050725937, + 0.004869217984378338, + -0.06681621819734573, + 0.0016557644121348858, + -0.01587606407701969, + -0.0772668719291687, + -0.03826303035020828, + 0.08040827512741089, + -0.0157275702804327, + 0.008586544543504715, + 0.007423426955938339, + 0.02212517149746418, + -0.058632057160139084, + 0.01894955150783062, + 0.047728948295116425, + 0.10027413815259933, + 0.021641725674271584, + 0.030633974820375443, + -0.023178288713097572 + ], + "shovel-bold||*new*,tools,digging,construction": [ + -0.07888036221265793, + -0.029019812121987343, + 0.03418596088886261, + 0.036431729793548584, + -0.012110396288335323, + -0.06072470173239708, + 0.005139859858900309, + -0.08888226747512817, + -0.08737344294786453, + 0.10071593523025513, + 0.019254444167017937, + -0.024414198473095894, + 0.020275289192795753, + 0.0016373489052057266, + -0.010669191367924213, + 0.061444107443094254, + -0.03317582607269287, + 0.04034218564629555, + 0.014325490221381187, + -0.029630227014422417, + 0.021723948419094086, + 0.0588083453476429, + 0.011846056208014488, + -0.006855888292193413, + 0.07710378617048264, + 0.04842962324619293, + -0.03433256223797798, + 0.005792645737528801, + 0.03699568286538124, + -0.054779913276433945, + 0.005990838631987572, + 0.009426465258002281, + 0.022558588534593582, + 0.04800449311733246, + 0.10439836233854294, + 0.09263688325881958, + -0.028829902410507202, + 0.0018837250536307693, + 0.017895612865686417, + 0.0442696213722229, + -0.05514274910092354, + -0.035299286246299744, + -0.005157908424735069, + -0.004626892972737551, + -0.0313732884824276, + -0.0017735521541908383, + -0.011447044089436531, + -0.09503456205129623, + 0.02027886174619198, + -0.04614172503352165, + -0.019016288220882416, + -0.1129046231508255, + -0.13584764301776886, + -0.06088293716311455, + 0.004264099057763815, + 0.025383614003658295, + -0.015451968647539616, + -0.0544959157705307, + 0.06682697683572769, + -0.002400485798716545, + 0.09198924899101257, + 0.051281750202178955, + -0.006190249230712652, + 0.04085531458258629, + 0.03408721461892128, + -0.016493530943989754, + -0.03525818511843681, + -0.06672212481498718, + -0.10545250028371811, + 0.06254778057336807, + 0.016024261713027954, + 0.022099383175373077, + -0.03410127013921738, + -0.006609060801565647, + -0.017748432233929634, + -0.021847324445843697, + 0.010949250310659409, + 0.010562305338680744, + -0.05553470924496651, + -0.07663802057504654, + -0.058201175183057785, + 0.035769637674093246, + -0.021608490496873856, + 0.017742998898029327, + 0.018811581656336784, + 0.07731790095567703, + -0.05688405781984329, + -0.06448610126972198, + 0.0239065270870924, + -0.03928924724459648, + -0.0744730532169342, + -0.08096551895141602, + -0.05573488771915436, + 0.10308589041233063, + -0.023830212652683258, + 0.024229224771261215, + 0.06825659424066544, + 0.057560790330171585, + -0.06926320493221283, + 0.07585490494966507, + -0.011462101712822914, + -0.0008683358319103718, + -0.018414627760648727, + -0.07358710467815399, + -0.0025884942151606083, + 0.02945093624293804, + -0.11732852458953857, + -0.025282151997089386, + -0.05232604593038559, + 0.07887014746665955, + 0.038196761161088943, + -0.0944591611623764, + -0.04977703467011452, + -0.0527898408472538, + -0.011427955701947212, + 0.003736974438652396, + -0.029191548004746437, + -0.04595573991537094, + 0.022332370281219482, + 0.10354980826377869, + 0.09302981942892075, + -0.02193189039826393, + -0.02644231915473938, + -0.07308156043291092, + -0.02794015407562256, + -0.006369907874614, + 0.07543196529150009, + -3.205218609677208e-33, + 0.11135474592447281, + 0.059669379144907, + -0.0490446500480175, + 0.10840591788291931, + 0.010498997755348682, + 0.03169157728552818, + 0.04009666293859482, + 0.06105019152164459, + -0.06538698822259903, + 0.09108897298574448, + -0.017194217070937157, + 0.13582605123519897, + -0.08049662411212921, + 0.0789378359913826, + 0.01506108045578003, + -0.08231186866760254, + 0.01482167188078165, + -0.05028881877660751, + -0.045239243656396866, + -0.011976740323007107, + -0.03192882984876633, + 0.031228041276335716, + -0.04105672985315323, + 0.01353586744517088, + 0.03194374591112137, + -0.052717674523591995, + 0.09447896480560303, + -0.06586305052042007, + -0.08150892704725266, + 0.032494690269231796, + -0.0035820910707116127, + 0.014084496535360813, + 0.048328984528779984, + 0.03270331025123596, + -0.03396981954574585, + 0.0339861623942852, + 0.008395626209676266, + -0.03768319636583328, + -0.042709965258836746, + -0.013523531146347523, + -0.0332442931830883, + -0.025024859234690666, + -0.026108546182513237, + -0.06699700653553009, + 0.06796707957983017, + 0.03988457843661308, + -0.010333601385354996, + 0.011915205977857113, + -0.02879428304731846, + 0.016209742054343224, + 0.04843360185623169, + 0.048250261694192886, + 0.06912514567375183, + 0.06686827540397644, + 0.0023091186303645372, + -0.009788730181753635, + 0.005983510985970497, + 0.05319873243570328, + 0.04857342317700386, + 0.06162072345614433, + 0.054245542734861374, + 0.06793362647294998, + 0.015674637630581856, + 0.07904530316591263, + -0.018597224727272987, + 0.03926408290863037, + 0.05826263874769211, + 0.09072370082139969, + 0.08846411854028702, + 0.006232897751033306, + 0.006924827117472887, + 0.04220246151089668, + 0.004102976061403751, + 0.03549528121948242, + -0.04865029826760292, + 0.015344231389462948, + 0.0011820566141977906, + -0.008158101700246334, + 0.055973395705223083, + -0.09208684414625168, + -0.04979081079363823, + 0.040955983102321625, + -0.06412878632545471, + 0.03696717694401741, + 0.037063583731651306, + -0.007409007754176855, + 8.507930760970339e-05, + -0.0535152368247509, + -0.027115408331155777, + 0.034620340913534164, + -0.11135897040367126, + -0.01599394530057907, + -0.07174351066350937, + -0.042648665606975555, + -0.08629055321216583, + -2.9970319020731096e-34, + 0.03857681527733803, + 0.00595572404563427, + -0.030706973746418953, + 0.03742806240916252, + -0.040750641375780106, + -0.022239768877625465, + -0.004064538050442934, + -0.08716943860054016, + 0.0016590614104643464, + 0.03473799303174019, + -0.05464908480644226, + -0.007084512617439032, + 0.023893803358078003, + -0.030193358659744263, + 0.07532914727926254, + -0.04426942393183708, + -0.10784055292606354, + -0.02751363068819046, + -0.04145844280719757, + 0.10451003164052963, + -0.044166449457407, + 0.025670722126960754, + -0.1041402667760849, + 0.01846943609416485, + 0.011618289165198803, + -0.009003858081996441, + -0.05055960640311241, + -0.023379255086183548, + -0.062302492558956146, + 0.0011999350972473621, + -0.010821614414453506, + -0.05797622725367546, + -0.01175049226731062, + 0.03794848173856735, + -0.09128514677286148, + 0.0528935082256794, + 0.011481457389891148, + -0.055611830204725266, + 0.018097976222634315, + 0.020558783784508705, + 0.023377442732453346, + -0.014090082608163357, + 0.036762937903404236, + 0.10036955773830414, + -0.07627954334020615, + -0.0644899234175682, + -0.06522542983293533, + -0.03008193150162697, + -0.07405213266611099, + 0.057393480092287064, + 0.053208816796541214, + 0.028558999300003052, + -0.03527618199586868, + -0.05936569720506668, + -0.008269557729363441, + 0.021412556990981102, + -0.11673510819673538, + -0.06265291571617126, + -0.06608448177576065, + 0.07042959332466125, + 0.055671751499176025, + 0.016034657135605812, + -0.04872853681445122, + 0.143099844455719, + 0.0276804082095623, + -0.08695299923419952, + 0.0010670586489140987, + -0.04860067740082741, + -0.06267194449901581, + 0.02489553950726986, + 0.04473327472805977, + 0.015283037908375263, + -0.0065644183196127415, + -0.07638072967529297, + 0.028557371348142624, + -0.03977857530117035, + 0.028370892629027367, + 0.037242814898490906, + 0.011056865565478802, + 0.027192091569304466, + -0.006861630827188492, + -0.05157763138413429, + 0.01573149673640728, + 0.061890408396720886, + -0.043438468128442764, + 0.034928083419799805, + -0.010548333637416363, + 0.03299368917942047, + 0.011381322517991066, + -0.027566339820623398, + -0.018910670652985573, + 0.0060384999960660934, + -0.0529855452477932, + 0.0024924997705966234, + -0.06797203421592712, + -1.9657001359973947e-08, + 0.015467607416212559, + 0.06137983128428459, + -0.07138766348361969, + -0.013162492774426937, + 0.05460597202181816, + -0.03673650324344635, + 0.0039335922338068485, + 0.03256458416581154, + -0.0475567951798439, + -0.003717991756275296, + 0.05479521304368973, + 0.012615704908967018, + -0.06216325983405113, + 0.07437020540237427, + 0.024842940270900726, + 0.007035424001514912, + 0.017482273280620575, + 0.0331384502351284, + -0.054109472781419754, + -0.06622875481843948, + 0.02132561430335045, + 0.06327462941408157, + 0.043946076184511185, + -0.007160271983593702, + -0.013087945058941841, + -0.006234338041394949, + -0.10311069339513779, + -0.03720390796661377, + 0.011479193344712257, + 0.10872058570384979, + 0.033962007611989975, + 0.06059606373310089, + -0.03616875782608986, + 0.02218751795589924, + -0.04859832674264908, + -0.00955936312675476, + 0.008836757391691208, + 0.04132946953177452, + -0.009026887826621532, + 0.07360177487134933, + -0.04456573724746704, + 0.02465495839715004, + -0.019697517156600952, + -0.020936205983161926, + -0.11029766499996185, + 0.08061985671520233, + -0.04086980223655701, + -0.03560008853673935, + -0.03782675415277481, + -0.09593142569065094, + -0.016465868800878525, + 0.0055060307495296, + 0.013506614603102207, + 0.04125218838453293, + 0.048512350767850876, + 0.0882287323474884, + 0.04062045365571976, + 0.05673758685588837, + -0.02631058543920517, + 0.02947782538831234, + 0.02005939744412899, + -0.04945230484008789, + 0.041034501045942307, + 0.06000880151987076 + ], + "shower-bold||bath,bathtub,bathroom,faucet": [ + -0.009615868330001831, + -0.06606270372867584, + 0.058660998940467834, + -0.038281165063381195, + 0.0002699077595025301, + -0.00779156805947423, + 0.08506214618682861, + 0.003028021426871419, + -0.027473436668515205, + -0.03454028442502022, + 0.04515684396028519, + -0.004926885012537241, + 0.04897505044937134, + 0.012279658578336239, + -0.03202515095472336, + -0.04619692638516426, + 0.010074908845126629, + 0.07240298390388489, + 0.028587108477950096, + 0.005986209958791733, + 0.04592950642108917, + 0.07480333745479584, + 0.01190173253417015, + -0.0011529797920957208, + 0.05177418142557144, + 0.0726066380739212, + 0.025285281240940094, + -0.031821295619010925, + 0.012484938837587833, + -0.04615089297294617, + -0.02607112005352974, + 0.030712075531482697, + 0.03588385134935379, + -0.11476679146289825, + 0.040051449090242386, + -0.012175047770142555, + -0.043964240700006485, + -0.01781713217496872, + 0.025460071861743927, + 0.022135382518172264, + 0.018065324053168297, + -0.09767798334360123, + 0.03193025663495064, + 0.029358891770243645, + 0.03274864703416824, + 0.001815870637074113, + 0.03426656126976013, + -0.041976820677518845, + 0.021960154175758362, + 0.015102236531674862, + -0.02887187898159027, + -0.08439040929079056, + -0.12005562335252762, + 0.04483662545681, + -0.029246486723423004, + -0.023765157908201218, + -0.05278247594833374, + -0.026071978732943535, + 0.0668521299958229, + 0.060221780091524124, + -0.00019959980272687972, + 0.014241300523281097, + -0.028222324326634407, + 0.10599548369646072, + 0.07958545535802841, + 0.023053038865327835, + -0.0482618622481823, + 0.09121174365282059, + 0.02818060852587223, + -0.005068095866590738, + 0.01019370462745428, + 0.03656835854053497, + -0.032162126153707504, + 0.024547474458813667, + -0.027611399069428444, + 0.026250261813402176, + 0.050879526883363724, + 0.0627325028181076, + -0.06664405763149261, + 0.006132037378847599, + -0.10944658517837524, + -0.09544724225997925, + 0.013859129510819912, + 0.011259778402745724, + 0.07301125675439835, + 0.05375370755791664, + -0.041564326733350754, + -0.09422706067562103, + -0.014070206321775913, + -0.048253607004880905, + -0.11418086290359497, + -0.04756469652056694, + -0.020268335938453674, + -0.021259022876620293, + -0.0036834580823779106, + 0.046484336256980896, + -0.03379211574792862, + -0.0006488874205388129, + -0.021549224853515625, + 0.05691646412014961, + -0.025712335482239723, + 0.01989164762198925, + 0.029512496665120125, + 0.08689890056848526, + -0.002711034379899502, + -0.10880915075540543, + -0.06971992552280426, + 0.03053082525730133, + 0.02648063376545906, + -0.03445279225707054, + -0.03531690686941147, + -0.19284193217754364, + 0.02859933115541935, + -0.0673471987247467, + -0.07343746721744537, + -0.13125230371952057, + -0.021977871656417847, + -0.08364224433898926, + 0.09525664895772934, + 0.04589071497321129, + -0.029332604259252548, + -0.02539539709687233, + -0.005630018655210733, + -0.08997473120689392, + -0.04265715181827545, + 0.007979361340403557, + 0.020518193021416664, + -1.0319302155659038e-33, + 0.04128209128975868, + -0.02789803221821785, + 0.040225572884082794, + 0.031510915607213974, + 0.026011956855654716, + 0.04773343726992607, + -0.04143063724040985, + -0.03784624859690666, + -0.0380583181977272, + 0.03152173385024071, + 0.05857112631201744, + 0.03367854282259941, + -0.05936528742313385, + 0.06089533120393753, + 0.010639319196343422, + 0.056253500282764435, + 0.06286706775426865, + -0.014780927449464798, + -0.03345217928290367, + -0.011204837821424007, + 0.037136469036340714, + 0.15654556453227997, + -0.06223361939191818, + 0.0019469023682177067, + -0.06666117161512375, + -0.08348334580659866, + -0.021223073825240135, + -0.004110377281904221, + -0.10999005287885666, + 0.06757992506027222, + -0.007944228127598763, + -0.024380069226026535, + 0.07680406421422958, + 0.039418719708919525, + -0.0587540939450264, + -0.03294767811894417, + -0.05403511971235275, + -0.03839677572250366, + 0.05376700311899185, + 0.010051034390926361, + -0.08789944648742676, + -0.012686120346188545, + -0.008854884654283524, + 0.05933736264705658, + 0.07812049984931946, + 0.0809551402926445, + -0.02433100715279579, + -0.01365568209439516, + 0.04531897231936455, + 0.06359045952558517, + 0.042900729924440384, + 0.0037073513958603144, + -0.0045561715960502625, + 0.1202830970287323, + -0.009572247043251991, + -0.054158393293619156, + -0.049500834196805954, + 0.09996923059225082, + -0.017724230885505676, + 0.09104439616203308, + -0.059650782495737076, + 0.09524961560964584, + 0.031413350254297256, + -0.03187628835439682, + -0.023143215104937553, + 0.027813896536827087, + 0.00966754648834467, + 0.06791466474533081, + 0.09327231347560883, + 0.009529217146337032, + -0.09807924181222916, + 0.058721307665109634, + 0.025008827447891235, + 0.05379458889365196, + 0.048303958028554916, + -0.05475080385804176, + 0.014294727705419064, + -0.02336554415524006, + -0.030347462743520737, + -0.003171209478750825, + -0.09240671247243881, + 0.029749738052487373, + -0.031156156212091446, + 0.13594914972782135, + -0.018323559314012527, + 0.04991874843835831, + -0.001099667977541685, + -0.026828158646821976, + 0.019584843888878822, + 0.023704668506979942, + -0.035097554326057434, + 0.041746389120817184, + -0.013016944751143456, + 0.005911100655794144, + -0.03701332211494446, + -1.547040380797373e-33, + 0.04513728246092796, + -0.01093569491058588, + -0.06265252828598022, + 0.009362826123833656, + -0.03255830332636833, + -0.004708456341177225, + 0.04481637105345726, + -0.020259281620383263, + -0.07463697344064713, + 0.06884390115737915, + 0.01650707796216011, + 0.020057592540979385, + -0.05148819088935852, + -0.06470590084791183, + -0.016952576115727425, + 0.02144317515194416, + 0.10547632724046707, + -0.06413023918867111, + 0.005655993241816759, + 0.08425500243902206, + -0.031229525804519653, + 0.024333089590072632, + -0.02433978021144867, + 0.040777288377285004, + -0.05240941420197487, + 0.024040604010224342, + 0.037108294665813446, + -0.04338239133358002, + -0.003329761326313019, + 0.02597823552787304, + -0.07943514734506607, + 0.04001067578792572, + 0.04952573776245117, + 0.031369246542453766, + -0.022706955671310425, + 0.023627672344446182, + 0.06387940049171448, + -0.03924572095274925, + -0.02603945881128311, + -0.010417502373456955, + 0.06555552780628204, + -0.028102552518248558, + 0.07373104989528656, + 0.0679655596613884, + -0.017261916771531105, + 0.05648696795105934, + -0.03696956858038902, + -0.04691343754529953, + -0.08253752440214157, + 0.04940462112426758, + -0.04707996919751167, + -0.07135748118162155, + -0.018538638949394226, + -0.015169735997915268, + -0.014862180687487125, + -0.10723764449357986, + 0.01720430701971054, + -0.0009038957650773227, + -0.03456489369273186, + 0.10513991862535477, + 0.06093398481607437, + -0.0067833163775503635, + -0.024168655276298523, + 0.020093705505132675, + -0.026097945868968964, + -0.011355258524417877, + -0.023380763828754425, + 0.05485663190484047, + -0.03891758993268013, + 0.033348336815834045, + -0.012316687032580376, + 0.003076374065130949, + 0.026810262352228165, + -0.017606519162654877, + 0.11369219422340393, + -0.03862224146723747, + 0.025263994932174683, + 0.010916096158325672, + -0.07008790969848633, + 0.0213011521846056, + -0.08361641317605972, + 0.04924441874027252, + -0.07488664239645004, + -0.013464455492794514, + 0.004653565119951963, + -0.07033401727676392, + -0.06668680906295776, + 0.057143304497003555, + 0.01584894396364689, + -0.05279597267508507, + -0.023762457072734833, + 0.06297462433576584, + -0.042870525270700455, + -0.007362036965787411, + 0.025065165013074875, + -1.984672337584925e-08, + -0.036563269793987274, + 0.015699662268161774, + 0.03927135467529297, + -0.016373910009860992, + 0.020619403570890427, + -0.05051672086119652, + -0.037040889263153076, + 0.032247696071863174, + -0.036865830421447754, + -0.014680796302855015, + 0.03591391071677208, + 0.002562953159213066, + -0.04542458429932594, + -0.0018354551866650581, + 0.07415562868118286, + 0.07196994125843048, + -0.0498754158616066, + 0.0031012988183647394, + -0.058438267558813095, + -0.1165160983800888, + -0.03142537921667099, + 0.004171786829829216, + 0.0578952394425869, + 0.001871711341664195, + -0.020532090216875076, + 0.019229598343372345, + -0.028743764385581017, + 0.013705713674426079, + -0.027555087581276894, + -0.010995741933584213, + 0.06916395574808121, + -0.04526429995894432, + -0.05620891973376274, + 0.05873916298151016, + -0.06798470765352249, + 0.017574122175574303, + -0.0014174701645970345, + -0.0423247329890728, + -0.029080169275403023, + 0.017741363495588303, + -0.0854857936501503, + -0.13711880147457123, + -0.006015808787196875, + 0.018117038533091545, + 0.012880281545221806, + 0.03531442582607269, + 0.09624936431646347, + 0.013663665391504765, + -0.03255965933203697, + -0.08361268043518066, + -0.04567793011665344, + 0.00018648308468982577, + 0.07280916720628738, + 0.02521575801074505, + 0.030808715149760246, + -0.007826595567166805, + 0.040900133550167084, + -0.052661098539829254, + -0.055658817291259766, + 0.025163846090435982, + 0.09097130596637726, + 0.028615185990929604, + -0.0009296880452893674, + 0.01287460420280695 + ], + "shrimp-bold||food,seafood,prawn": [ + -0.05601644515991211, + 0.02888217382133007, + -0.05188695713877678, + 0.05178580805659294, + -0.03193878382444382, + -0.0075840107165277, + 0.04271320626139641, + -0.0743609219789505, + 0.02048487775027752, + -0.038687534630298615, + 0.12405107915401459, + -0.09220579266548157, + -0.02767733857035637, + -0.028292575851082802, + 0.02341199666261673, + 0.03132251650094986, + 0.12447690963745117, + 0.04455363377928734, + -0.000557925901375711, + 0.03141367435455322, + -0.005723411217331886, + 0.0992940366268158, + -0.013463945128023624, + -0.01028760988265276, + -0.0010088782291859388, + 0.030285034328699112, + 0.06116798520088196, + 0.03758585825562477, + -0.018724754452705383, + -0.025625912472605705, + 0.021290108561515808, + -0.012292488478124142, + 0.06935636699199677, + 0.023375626653432846, + 0.052024032920598984, + 0.04530085250735283, + -0.055787909775972366, + -0.13173742592334747, + 0.0618390254676342, + 0.11644536256790161, + 0.022886833176016808, + 0.011875458061695099, + 0.016547180712223053, + -0.03034825250506401, + -0.09439358860254288, + -0.07992801070213318, + -0.027491474524140358, + 0.05456756055355072, + -0.029837634414434433, + -0.0508381724357605, + -0.08106204122304916, + -0.11701853573322296, + -0.07674169540405273, + -0.013683956116437912, + 0.04037603735923767, + 0.006361220497637987, + -0.11498057097196579, + -0.053326766937971115, + -0.03820274770259857, + -0.05491695925593376, + 0.021150855347514153, + 0.03543780371546745, + 0.02145901322364807, + 0.02722984366118908, + -0.05426764115691185, + 0.0038836097810417414, + -0.002667530905455351, + 0.04130318760871887, + -0.05834498256444931, + 0.0014359054621309042, + 0.02692103572189808, + 0.04867028445005417, + 0.03130210191011429, + -0.024452311918139458, + -0.031604036688804626, + -0.07114055752754211, + 0.05844840779900551, + -0.03554261475801468, + -0.06549312174320221, + -0.11878883093595505, + -0.13734427094459534, + -0.06712419539690018, + -0.0750226378440857, + -0.034963458776474, + 0.02854391746222973, + 0.049845341593027115, + -0.04377928748726845, + 0.029239239171147346, + -0.09299228340387344, + 0.002387382322922349, + 0.008551430888473988, + -0.023285605013370514, + 0.022577930241823196, + -0.011456371285021305, + -0.0390559546649456, + 0.08108719438314438, + 0.01107971090823412, + -0.019168885424733162, + -0.03046412393450737, + 0.015518036670982838, + 0.044195421040058136, + 0.035904284566640854, + 0.0486878976225853, + -0.06126264110207558, + -0.05200900882482529, + 0.0061414181254804134, + -0.027272073552012444, + 0.04978696256875992, + 0.05279063805937767, + -0.03168344497680664, + -0.052921995520591736, + -0.02153373882174492, + 0.009879696182906628, + -0.03598962724208832, + -0.091545969247818, + -0.01432967372238636, + -0.07446335256099701, + -0.08855779469013214, + 0.14816592633724213, + 0.021156679838895798, + -0.02143941819667816, + -0.007682484574615955, + 0.007015805225819349, + 0.01992388255894184, + 0.030157456174492836, + 0.03641773387789726, + -0.010259023867547512, + -1.3918160762648013e-33, + 0.03952135890722275, + -0.012778178788721561, + 0.005677787587046623, + 0.022408735007047653, + 0.06784898042678833, + -0.011071138083934784, + -0.054292358458042145, + -0.05232791230082512, + 0.006772700231522322, + 0.02828345075249672, + -0.03876214846968651, + 0.058441370725631714, + -0.07515022903680801, + -0.005977812688797712, + 0.03782273456454277, + -0.018139265477657318, + -0.06795439124107361, + -0.024807531386613846, + -0.028652962297201157, + 0.03415438532829285, + -0.0313255749642849, + 0.029439551755785942, + 0.003988796845078468, + -0.05739722028374672, + -0.08157612383365631, + -0.021618466824293137, + 0.029702289029955864, + -0.044314734637737274, + -0.06246119365096092, + 0.0513041615486145, + 0.09452435374259949, + 0.020387059077620506, + -0.0005952951614744961, + -0.042634934186935425, + -0.04877457022666931, + 0.008675779215991497, + -0.02127252146601677, + -0.008468564599752426, + -0.05903737619519234, + 0.046843547374010086, + 0.005533470306545496, + -0.01970931887626648, + 0.010282449424266815, + 0.09381330013275146, + 0.06051101163029671, + 0.028686510398983955, + 0.01739725098013878, + 0.06832367181777954, + 0.032226286828517914, + 0.03150458261370659, + 0.035806506872177124, + -0.05535290390253067, + 0.05624290555715561, + 0.009418894536793232, + -0.06021035462617874, + 0.006735939998179674, + -0.028600897639989853, + 0.09397955238819122, + -0.02347949892282486, + -0.006560551468282938, + -0.007788568269461393, + 0.03934602811932564, + 0.012159097008407116, + -0.019642895087599754, + -0.020644411444664, + 0.07267028838396072, + -0.01855931431055069, + 0.0488891638815403, + 0.08575335890054703, + -0.01612226851284504, + 0.02322544902563095, + 0.03428373113274574, + 0.0638299435377121, + 0.02758273296058178, + 0.004453175701200962, + 0.006077449303120375, + 0.022347236052155495, + -0.01603022776544094, + 0.02560579404234886, + -0.023647315800189972, + -0.08640269190073013, + 0.0470588393509388, + -0.05532592907547951, + 0.047343477606773376, + -0.05670969560742378, + 0.09003228694200516, + 0.012376533821225166, + -0.06430714577436447, + 0.06850551068782806, + 0.13906623423099518, + -0.03797629103064537, + -0.015052392147481441, + -0.09507863968610764, + -0.10576979070901871, + -0.03416380286216736, + -3.883254312313562e-34, + -0.0416313037276268, + -0.0012038261629641056, + -0.09867207705974579, + -0.0271095409989357, + 0.005264914594590664, + -0.043403856456279755, + 0.02419319562613964, + 0.08247527480125427, + 0.024399390444159508, + -0.0430048331618309, + -0.055668193846940994, + -0.028793349862098694, + -0.05667417496442795, + -0.10131760686635971, + 0.017771346494555473, + 0.06073763966560364, + -0.0025597766507416964, + 0.04946368932723999, + 0.013186597265303135, + -0.02448643185198307, + -0.05681658908724785, + -0.04566566273570061, + -0.007587856613099575, + 0.12819397449493408, + 0.005900188814848661, + 0.07385013997554779, + 0.046636320650577545, + 0.07718013972043991, + -0.03358197957277298, + -0.03753681480884552, + 0.046983473002910614, + -0.019784901291131973, + 0.026158779859542847, + 0.05583462864160538, + -0.12175901234149933, + 0.04571769759058952, + -0.05509700998663902, + -0.023310793563723564, + 0.09828412532806396, + -0.001590446219779551, + 0.041188374161720276, + -0.014177478849887848, + -0.012944663874804974, + 0.13193105161190033, + -0.023741507902741432, + 0.06976626813411713, + -0.006594438571482897, + -0.08754400908946991, + -0.10176443308591843, + 0.044556982815265656, + -0.02921147085726261, + 0.021868277341127396, + 0.020708847790956497, + -0.019873738288879395, + -0.009680194780230522, + -0.002611005213111639, + -0.09665211290121078, + 0.03193953260779381, + 0.028571531176567078, + -0.0026852621231228113, + -0.05263424292206764, + 0.0773543268442154, + 0.017067454755306244, + 0.12606577575206757, + 0.060639217495918274, + -0.021057557314634323, + 0.030325958505272865, + -0.013129273429512978, + 0.053574513643980026, + 0.01467030681669712, + -0.00909631047397852, + 0.01645214855670929, + -0.06658150255680084, + -0.0184499341994524, + -0.021530678495764732, + -0.007962376810610294, + -0.029511500149965286, + -0.0055443099699914455, + -0.004316526465117931, + 0.060927532613277435, + -0.021746007725596428, + -0.03322348743677139, + -0.04268549755215645, + -0.03964843228459358, + -0.00061789684696123, + 0.09635443985462189, + -0.00866003055125475, + 0.09658419340848923, + 0.018921148031949997, + -0.0037753877695649862, + 0.001122508430853486, + 0.06853193044662476, + -0.031349003314971924, + -0.03655660152435303, + -0.00945877842605114, + -1.6733109120536938e-08, + 0.051239676773548126, + -0.021747708320617676, + -0.013605214655399323, + 0.06037120148539543, + 0.02077995426952839, + -0.05866271257400513, + -0.04869432747364044, + 0.007363877259194851, + -0.06501214951276779, + 0.016008339822292328, + 0.005802920553833246, + 0.03973202779889107, + -0.06400924921035767, + -0.011718053370714188, + 0.04088383540511131, + 0.041758812963962555, + -0.017090728506445885, + -0.010134092532098293, + -0.02472032606601715, + -0.09778424352407455, + -0.07072090357542038, + 0.07516773045063019, + -0.010169103741645813, + -0.026837116107344627, + -0.004417994059622288, + 0.07957920432090759, + -0.031306855380535126, + -0.004368727561086416, + 0.10243868082761765, + 0.057978060096502304, + 0.08425116539001465, + 0.022681528702378273, + -0.04004662111401558, + 0.03910326212644577, + -0.04525988548994064, + -0.02138339914381504, + -0.05580821633338928, + -0.03576623275876045, + 0.003258413402363658, + 0.013187650591135025, + -0.01670670323073864, + -0.06689539551734924, + -0.04372347891330719, + -0.023785492405295372, + -0.058245427906513214, + 0.026454169303178787, + 0.036065030843019485, + 0.017974108457565308, + 0.01528366468846798, + -0.03211511671543121, + -0.021580800414085388, + -0.032659079879522324, + 0.002161929151043296, + 0.02101513370871544, + -0.09223096817731857, + -0.015740765258669853, + 0.06304414570331573, + 0.06943228095769882, + -0.027581283822655678, + 0.049456655979156494, + 0.10397990047931671, + 0.039835356175899506, + -0.008657452650368214, + 0.09427427500486374 + ], + "shuffle-bold||music,audio,randomize,crossed": [ + -0.008385816588997841, + -0.06728998571634293, + -0.002057210775092244, + -0.046057283878326416, + 0.015197677537798882, + 0.05345394089818001, + 0.11644044518470764, + -0.11649388819932938, + -0.002825208706781268, + -0.027099262923002243, + -0.018704352900385857, + 0.04421467334032059, + 0.03823072463274002, + -0.12619096040725708, + -0.040586233139038086, + 0.03340732306241989, + -0.016007432714104652, + 0.08519000560045242, + -0.0035437322221696377, + -0.051143527030944824, + -0.020154045894742012, + 0.0017524461727589369, + 0.006593489553779364, + 0.051146768033504486, + -0.0037296300288289785, + -0.008256839588284492, + 0.05589720979332924, + 0.02237348072230816, + 0.004020665306597948, + -0.11371040344238281, + 0.07817550003528595, + 0.04830414429306984, + 0.1038794219493866, + -0.038864944130182266, + -0.02367246523499489, + -0.07308145612478256, + -0.11388622969388962, + -0.04637222737073898, + -0.009722497314214706, + 0.07665078341960907, + 0.03864394873380661, + 0.039493829011917114, + -0.013684787787497044, + 0.01638544537127018, + -0.10157585144042969, + -0.07539131492376328, + -0.07662348449230194, + -0.0624619759619236, + 0.0014089475153014064, + 0.07243070006370544, + -0.0010801780736073852, + -0.027462424710392952, + -0.06522873044013977, + 0.048006076365709305, + -0.04581308737397194, + -0.00027113105170428753, + -0.01049342006444931, + 0.07916384935379028, + 0.05936780944466591, + 0.039324164390563965, + 0.03137744590640068, + -0.05071360245347023, + 0.04670815169811249, + -0.01970474049448967, + 0.03527906909584999, + -0.0820462629199028, + 0.039702147245407104, + 0.06756526231765747, + 0.0309545136988163, + 0.03912503644824028, + -0.013719595037400723, + 0.05508260056376457, + 0.07303301990032196, + 0.04664415866136551, + 0.056881584227085114, + 0.03499479219317436, + -0.003304070793092251, + -0.0874774381518364, + -0.07169418036937714, + -0.011615934781730175, + -0.1038411408662796, + -0.12085536122322083, + -0.015357821248471737, + -0.07476713508367538, + 0.05661091208457947, + 0.0065874927677214146, + -0.02856115996837616, + -0.03140860050916672, + -0.044777315109968185, + -0.08534666895866394, + -0.12009292840957642, + 0.039338331669569016, + 0.008179191499948502, + -0.02862980216741562, + 0.006017503794282675, + 0.08521364629268646, + 0.10611240565776825, + -0.07958944141864777, + -0.006203848868608475, + 0.08190788328647614, + 0.07454775273799896, + 0.011420054361224174, + 0.05765746906399727, + 0.036515772342681885, + -0.0003416696563363075, + -0.1129152849316597, + 0.004731522873044014, + -0.007216688711196184, + -0.03447042033076286, + -0.03436987102031708, + 0.040124278515577316, + -0.010223767720162868, + 0.03577971085906029, + -0.00862956140190363, + -0.015232028439640999, + 0.034810326993465424, + -0.03026450239121914, + 0.03149809315800667, + 0.06928469985723495, + 0.09417534619569778, + -0.008098422549664974, + 0.014922712929546833, + -0.06919679790735245, + -0.021810587495565414, + -0.06142242252826691, + 0.05166992172598839, + 0.08186829835176468, + -1.5089275478658526e-33, + 0.06669619679450989, + -0.044798318296670914, + -0.03377264365553856, + 0.06863930076360703, + 0.11127488315105438, + -0.0257110558450222, + -0.02492954023182392, + -0.003842941951006651, + -0.04617118462920189, + 0.05439063161611557, + 0.06578599661588669, + 0.032812513411045074, + 0.011865840293467045, + 0.02106749638915062, + -0.024757230654358864, + -0.07835152000188828, + -0.011912711896002293, + 0.03407614305615425, + -0.044789254665374756, + -0.04201813414692879, + -0.022999929264187813, + 0.03481467440724373, + 0.02499386854469776, + -0.06960617750883102, + 0.007142350543290377, + -0.006803644355386496, + 0.008740206249058247, + -0.03195643797516823, + 0.0631016194820404, + 0.021777315065264702, + -0.03501855954527855, + 0.04268990829586983, + 0.016040729358792305, + -0.03626498207449913, + 0.02037634141743183, + 0.05326139181852341, + -0.029965493828058243, + 0.06397438794374466, + -0.029988685622811317, + -0.059897832572460175, + -0.003095424035564065, + -0.04853585734963417, + 0.015002931468188763, + -0.09849891811609268, + -0.01109921745955944, + 0.060589712113142014, + 0.03989033401012421, + 0.035924747586250305, + 0.046740517020225525, + 0.032713938504457474, + 0.019426846876740456, + 0.0185529962182045, + -0.007864108309149742, + 0.04789344221353531, + 0.09663435816764832, + -0.06675251573324203, + 0.07920254021883011, + 0.09773115068674088, + 0.041412435472011566, + 0.06817052513360977, + 0.05292017012834549, + 0.0514095313847065, + 0.04191245883703232, + -0.06355831027030945, + 0.007869115099310875, + 0.09512582421302795, + 0.04238681122660637, + -0.060245905071496964, + 0.10169653594493866, + -0.020110050216317177, + 0.03237840533256531, + 0.0001291126973228529, + -0.021992992609739304, + 0.055429622530937195, + -0.06812375783920288, + 0.06824105978012085, + 0.001366453361697495, + -0.015258034691214561, + 0.03449434041976929, + -0.10514833778142929, + -0.06995324790477753, + 0.009184041060507298, + -0.0846187174320221, + 0.027174711227416992, + -0.033749036490917206, + 0.039903730154037476, + -0.0015101655153557658, + -0.09812751412391663, + -0.09357517957687378, + -0.03207201510667801, + -0.04816009849309921, + 0.02775418944656849, + 0.02048490382730961, + -0.07106045633554459, + -0.019906146451830864, + -6.026160769230918e-34, + -0.0029714463744312525, + 0.06893713772296906, + 0.08000488579273224, + 0.009151521138846874, + 0.02032693848013878, + 0.014921552501618862, + 0.00842009112238884, + 0.06199972331523895, + -0.01858646795153618, + -0.012733547016978264, + -0.021846653893589973, + -0.0382644347846508, + -0.036850448697805405, + -0.025378508493304253, + 0.03403008356690407, + 0.005395807791501284, + 0.030929669737815857, + 0.04264816641807556, + 0.03793510049581528, + 0.04521680250763893, + -0.03808354213833809, + 0.009180230088531971, + -0.015216951258480549, + 0.06066293641924858, + -0.01990671269595623, + -0.003952478989958763, + 0.03282470256090164, + 0.027357002720236778, + 0.03447869047522545, + -0.03538363799452782, + -0.009981035254895687, + -0.03465880826115608, + -0.05054266005754471, + -0.08711595833301544, + 0.013923470862209797, + -0.03390182927250862, + 0.03627215698361397, + 0.04870105907320976, + -0.00033932155929505825, + 0.01443939283490181, + -0.0631382092833519, + -0.01699778437614441, + 0.02276550605893135, + -0.02041599340736866, + 0.021751532331109047, + -0.048535559326410294, + -0.10622026771306992, + 0.04591026529669762, + 0.01004110835492611, + 0.05125792697072029, + 0.024192936718463898, + -0.03087187558412552, + -0.03293682634830475, + -0.07781802862882614, + -0.0805465504527092, + -0.034839481115341187, + -0.10097561776638031, + 0.03578933700919151, + -0.005584166385233402, + 0.10798633098602295, + -0.015563308261334896, + 0.008285659365355968, + -0.03367435559630394, + -0.11666275560855865, + -0.015171539969742298, + 0.018047651275992393, + -0.01910918578505516, + -0.1144898384809494, + 0.022376172244548798, + 0.08452863991260529, + 0.03736764192581177, + 0.012279339134693146, + -0.05048060789704323, + 0.01915612630546093, + -0.020010123029351234, + -0.039226025342941284, + -0.002379246987402439, + -0.007317894604057074, + 0.0019562323577702045, + 0.002421050798147917, + 0.011406752280890942, + 0.027849193662405014, + 0.005034259054809809, + -0.02195960097014904, + -0.005699251312762499, + 0.06584832817316055, + 0.06613016128540039, + -0.052149441093206406, + 0.050716012716293335, + -0.020735561847686768, + 0.020914720371365547, + 0.013960928656160831, + 0.014027558267116547, + 0.01622127555310726, + -0.0562475211918354, + -1.680729688757765e-08, + 0.019552242010831833, + 0.011206506751477718, + -0.009131871163845062, + 0.07802347093820572, + 0.013740588910877705, + 0.004362518433481455, + -0.016452010720968246, + -0.1255161464214325, + -0.02952653355896473, + -0.0728311613202095, + 0.10326852649450302, + -0.006297976244240999, + 0.009934283792972565, + 0.04974750429391861, + 0.022862421348690987, + 0.008505921810865402, + -0.08393131196498871, + 0.10142000764608383, + -0.03791220486164093, + -0.021688107401132584, + -0.021647075191140175, + 0.09464943408966064, + 0.05789613723754883, + -0.05412536859512329, + -0.0052137477323412895, + 0.00569545803591609, + 0.04367499426007271, + 0.016965480521321297, + 0.09258472174406052, + -0.0008199661388061941, + 0.006966756656765938, + -0.00033592525869607925, + 0.007866684347391129, + -0.024782046675682068, + -0.10326217859983444, + -0.014830449596047401, + -0.04520753398537636, + -0.0030007087625563145, + -0.014616252854466438, + 0.018679432570934296, + -0.00459250109270215, + -0.011149418540298939, + 0.010487327352166176, + -0.021052978932857513, + -0.11825699359178543, + -0.07783666253089905, + 0.07428702712059021, + -0.06678538024425507, + -0.03637191653251648, + -0.06020869314670563, + -0.04229507967829704, + -0.03253177925944328, + 0.001073885359801352, + -0.0030279846396297216, + 0.06712634861469269, + 0.0030519692227244377, + -0.028967447578907013, + 0.11502011120319366, + -0.08892819285392761, + -0.008491624146699905, + 0.010040872730314732, + -0.014584961347281933, + -0.016391325742006302, + 0.013512744568288326 + ], + "shuffle-angular-bold||music,audio,randomize,crossed": [ + -0.03952223062515259, + -0.04955711215734482, + -0.029777470976114273, + -0.017679568380117416, + 0.009829654358327389, + 0.06261588633060455, + 0.07424216717481613, + -0.13012972474098206, + 0.011120489798486233, + -0.0033570420928299427, + -0.024090593680739403, + 0.07449695467948914, + 0.008258583955466747, + -0.10219353437423706, + 0.002857634797692299, + 0.03110244870185852, + -0.02737593464553356, + 0.07997377961874008, + -0.005441730841994286, + -0.04316026717424393, + -0.051285967230796814, + 0.003175781574100256, + 0.013394876383244991, + 0.04396452009677887, + 0.016331637278199196, + -0.006901934277266264, + 0.0900704637169838, + 0.007219638209789991, + 0.03763324022293091, + -0.10056279599666595, + 0.08589690178632736, + 0.04633272811770439, + 0.05748448148369789, + -0.036715902388095856, + -0.10281965136528015, + -0.05114264041185379, + -0.11505032330751419, + -0.03862132504582405, + 0.0013980387011542916, + 0.04749196022748947, + 0.0843733549118042, + 0.08892176300287247, + -0.020752988755702972, + -0.030236538499593735, + -0.10281927138566971, + -0.0848916694521904, + -0.09450663626194, + -0.04481356590986252, + -0.003623427590355277, + 0.0768984705209732, + -0.019388264045119286, + -0.06939071416854858, + -0.06750231981277466, + 0.03562101721763611, + -0.0547400638461113, + -0.015668127685785294, + -0.004491640254855156, + 0.07799790054559708, + 0.062376827001571655, + 0.025790082290768623, + 0.04206220433115959, + -0.06859280914068222, + 0.05278852581977844, + -0.0246209017932415, + 0.04349846392869949, + -0.06469983607530594, + 0.00445792218670249, + 0.04270777478814125, + 0.0037685357965528965, + 0.03926800563931465, + -0.0018063145689666271, + 0.016814157366752625, + 0.1028115451335907, + 0.024662718176841736, + 0.0485493466258049, + 0.022999612614512444, + -0.030012888833880424, + -0.07370185852050781, + -0.05582460016012192, + 0.014209066517651081, + -0.058391135185956955, + -0.08633705228567123, + -0.02226424217224121, + -0.05144742131233215, + 0.06881265342235565, + 0.019008317962288857, + -0.02241002768278122, + -0.04891960322856903, + -0.0664776861667633, + -0.12578721344470978, + -0.09252867102622986, + 0.04845849424600601, + 0.018093977123498917, + -0.0035005491226911545, + 0.012813776731491089, + 0.08141219615936279, + 0.08390998840332031, + -0.04813898354768753, + -0.014475580304861069, + 0.04877965524792671, + 0.0771414041519165, + -0.00994919240474701, + 0.08261384814977646, + 0.05780923739075661, + -0.04515539109706879, + -0.08273152261972427, + 0.002599813509732485, + -0.01716909371316433, + -0.044692423194646835, + -0.020203184336423874, + 0.045408282428979874, + 0.028249841183423996, + -0.002326811896637082, + -0.003996679093688726, + -0.04426420480012894, + 0.02121640369296074, + -0.03403787687420845, + 0.030866185203194618, + 0.05052051693201065, + 0.11143604665994644, + -0.022343764081597328, + 0.01114881131798029, + -0.03091982938349247, + -0.031194521114230156, + -0.017272358760237694, + 0.056022532284259796, + 0.0799105241894722, + -1.874633574969259e-33, + 0.05049322545528412, + -0.018022820353507996, + -0.04345535859465599, + 0.04336194694042206, + 0.12279849499464035, + -0.040712933987379074, + -0.03632048889994621, + -0.02448105439543724, + 0.001618137233890593, + 0.06146353483200073, + 0.08329488337039948, + 0.04436352476477623, + 0.019645189866423607, + -0.011325402185320854, + -0.019078116863965988, + -0.0971650779247284, + 0.004586006049066782, + 0.04395165666937828, + -0.02553243562579155, + -0.033175185322761536, + -0.020728306844830513, + 0.028344029560685158, + -0.006036209408193827, + -0.04541632905602455, + -0.0021753087639808655, + 0.01248360425233841, + 0.02892407216131687, + -0.037615809589624405, + 0.01974893920123577, + 0.012065946124494076, + 0.035162292420864105, + 0.0715637356042862, + -0.005413965787738562, + -0.019527634605765343, + 0.026381010189652443, + 0.0245826356112957, + -0.04351375252008438, + 0.056757159531116486, + -0.03549441695213318, + -0.0668884664773941, + 0.03697729483246803, + -0.052560433745384216, + -0.022071151062846184, + -0.05475538969039917, + -0.029101833701133728, + 0.05654560402035713, + 0.051098279654979706, + 0.023276472464203835, + 0.08696770668029785, + 0.03944867104291916, + -0.0026148874312639236, + 0.04533018544316292, + -0.04317214712500572, + 0.0477389357984066, + 0.10361915081739426, + -0.06534162163734436, + 0.05091119557619095, + 0.09932883828878403, + 0.06527398526668549, + 0.0449129119515419, + 0.04206094145774841, + 0.010494550690054893, + 0.034771136939525604, + -0.09313894063234329, + -0.008844621479511261, + 0.06204155460000038, + 0.045203160494565964, + -0.0826897844672203, + 0.1081475242972374, + -0.03718135133385658, + 0.06361326575279236, + -0.015475032851099968, + -0.010100608691573143, + 0.08538312464952469, + -0.05543800815939903, + 0.05746077001094818, + 0.002938504796475172, + 0.0036861503031104803, + 0.07986435294151306, + -0.10256756842136383, + -0.06907989084720612, + 0.009435582906007767, + -0.08817044645547867, + 0.04558039829134941, + -0.016054077073931694, + 0.011285399086773396, + -0.024933762848377228, + -0.09424738585948944, + -0.08968718349933624, + -0.02234320156276226, + -0.039462845772504807, + 0.06975042819976807, + 0.026899080723524094, + -0.05644047632813454, + -0.01096643228083849, + 1.4547579442384548e-34, + -0.011944043450057507, + 0.056096404790878296, + 0.05911089852452278, + 0.03238861262798309, + 0.020906364545226097, + 0.0025769120547920465, + 0.018482791259884834, + 0.08417855203151703, + -0.0006286501884460449, + 0.019492384046316147, + 0.026069190353155136, + -0.018909921869635582, + -0.02261296659708023, + 0.007977555505931377, + 0.026067813858389854, + 0.030098965391516685, + 0.029936090111732483, + 0.020028503611683846, + 0.06711120903491974, + 0.02298666350543499, + -0.01049715280532837, + 0.013935491442680359, + 0.0028625894337892532, + 0.03998001664876938, + -0.02719264291226864, + 0.02530110999941826, + 0.057615019381046295, + 0.002637435682117939, + 0.056664787232875824, + -0.004989753011614084, + -0.006035786587744951, + -0.0064018042758107185, + -0.05449957028031349, + -0.08649517595767975, + -0.023710200563073158, + -0.043927665799856186, + 0.040375880897045135, + 0.05889051780104637, + -0.02991187386214733, + 0.006313284393399954, + -0.08745912462472916, + -0.0304843969643116, + 0.04165501520037651, + -0.03766608610749245, + 0.005622906144708395, + -0.10337640345096588, + -0.07186063379049301, + 0.05776812881231308, + -0.0034079663455486298, + 0.03290407359600067, + 0.026097701862454414, + -0.012273821979761124, + -0.015394787304103374, + -0.06018538773059845, + -0.09244874864816666, + -0.03000929392874241, + -0.07734641432762146, + 0.015319728292524815, + 0.013544170185923576, + 0.09821143001317978, + -0.009591321460902691, + 0.017987804487347603, + -0.03738705441355705, + -0.11814022064208984, + -0.008163904771208763, + 0.05454379320144653, + -0.007513144984841347, + -0.13707996904850006, + 0.05478314310312271, + 0.09788288921117783, + 0.010166252963244915, + 0.0037774008233100176, + -0.014745035208761692, + 0.006579643115401268, + -0.015691081061959267, + -0.03217770904302597, + 0.05359339341521263, + -0.04624003916978836, + 0.04729617387056351, + -0.05469447374343872, + 0.025016343221068382, + 0.03555956110358238, + -0.02548815868794918, + -0.060918599367141724, + -0.021830379962921143, + 0.052000898867845535, + 0.02937367558479309, + -0.08528370410203934, + 0.05879220366477966, + 0.005244833882898092, + 0.009285574778914452, + -0.013356633484363556, + 0.01576680690050125, + -0.01151268556714058, + -0.01278101559728384, + -1.6443532757648427e-08, + -0.007886609062552452, + 0.018503380939364433, + -0.014284279197454453, + 0.08565611392259598, + 0.03420666605234146, + -0.031512629240751266, + -0.02427995204925537, + -0.12230779975652695, + -0.011483706533908844, + -0.0675743967294693, + 0.0829504132270813, + 0.012470969930291176, + 0.013230142183601856, + 0.048714712262153625, + 0.028878575190901756, + 0.016394363716244698, + -0.07573743164539337, + 0.10435416549444199, + -0.03448088467121124, + -0.005847578402608633, + -0.009517965838313103, + 0.09950301796197891, + 0.07569466531276703, + -0.05492580309510231, + 0.003051197389140725, + 0.008425288833677769, + 0.032506827265024185, + 0.012667505070567131, + 0.08952902257442474, + 0.009248070418834686, + -0.031134475022554398, + 0.0006661172956228256, + 0.035413533449172974, + -0.037260930985212326, + -0.11462457478046417, + -0.05193905532360077, + -0.04254479333758354, + -0.037128981202840805, + -0.013879104517400265, + -0.0005120533751323819, + 0.0015309350565075874, + -0.008005600422620773, + 0.03286479040980339, + -0.01886366680264473, + -0.11010760813951492, + -0.06399787962436676, + 0.044758301228284836, + -0.04854273423552513, + -0.005455750972032547, + -0.03318088874220848, + -0.05938810482621193, + -0.05330079793930054, + -0.042406145483255386, + -0.018267428502440453, + 0.044648703187704086, + -0.00942831952124834, + -0.015836460515856743, + 0.09830927848815918, + -0.06745796650648117, + -0.025643983855843544, + -0.00024755392223596573, + -0.030178356915712357, + -0.018082041293382645, + -0.01683039776980877 + ], + "shuffle-simple-bold||music,audio,randomize,crossed": [ + -0.0018637807806953788, + -0.06816817075014114, + 0.0027406392619013786, + -0.046748921275138855, + 0.01880325935781002, + 0.05335753783583641, + 0.10218449681997299, + -0.11232390999794006, + -0.014693069271743298, + -0.01808447204530239, + -0.021286603063344955, + 0.04176787659525871, + 0.04529331251978874, + -0.1216469332575798, + -0.03974025696516037, + 0.027427924796938896, + -0.01646438054740429, + 0.07954289019107819, + -0.0022887433879077435, + -0.046376172453165054, + -0.031373415142297745, + -0.01019816379994154, + -0.0019873189739882946, + 0.049397461116313934, + -0.0027619509492069483, + -0.009234942495822906, + 0.05512135103344917, + 0.03321095183491707, + 0.01388013456016779, + -0.1135348379611969, + 0.08145621418952942, + 0.04232845827937126, + 0.10544006526470184, + -0.04432150349020958, + -0.026460986584424973, + -0.0725986436009407, + -0.10327643156051636, + -0.04323771223425865, + -0.017442971467971802, + 0.07478426396846771, + 0.03439730778336525, + 0.040113020688295364, + -0.014540105126798153, + 0.01682295836508274, + -0.11310210078954697, + -0.07831910252571106, + -0.08714311569929123, + -0.057607512921094894, + 0.0031200945377349854, + 0.054405663162469864, + 0.005831385031342506, + -0.02135743759572506, + -0.07208535075187683, + 0.04594608396291733, + -0.04442464932799339, + -0.0023311087861657143, + -0.01964188553392887, + 0.08569077402353287, + 0.057003580033779144, + 0.030692823231220245, + 0.0358639694750309, + -0.06081964075565338, + 0.04790806770324707, + -0.02514282800257206, + 0.02743919938802719, + -0.08627805858850479, + 0.039565421640872955, + 0.06317481398582458, + 0.028234248980879784, + 0.03352053090929985, + -0.02086200751364231, + 0.04413313418626785, + 0.06671696156263351, + 0.05550418421626091, + 0.05213552340865135, + 0.02272076904773712, + 0.0024329768493771553, + -0.07206136733293533, + -0.08784522116184235, + 0.001720402273349464, + -0.11384542286396027, + -0.12485172599554062, + -0.017753852531313896, + -0.06117837131023407, + 0.05782509595155716, + 0.0005985082825645804, + -0.034886591136455536, + -0.02753196656703949, + -0.03625999018549919, + -0.08482004702091217, + -0.10927324742078781, + 0.04914463683962822, + 0.015366586856544018, + -0.02703455463051796, + 0.01384822465479374, + 0.08476230502128601, + 0.10478055477142334, + -0.07089804857969284, + -0.0220912154763937, + 0.07836727052927017, + 0.0739814043045044, + 0.012441078200936317, + 0.06896863132715225, + 0.023073624819517136, + 0.0023811685387045145, + -0.10817045718431473, + 0.00261438125744462, + -0.015851806849241257, + -0.03283544257283211, + -0.04448273777961731, + 0.03639869764447212, + -0.011480452492833138, + 0.03674396127462387, + 0.0009824202861636877, + -0.009425060823559761, + 0.037063438445329666, + -0.03545653820037842, + 0.026710165664553642, + 0.0685572549700737, + 0.10508662462234497, + -0.009653962217271328, + 0.01762242056429386, + -0.07222837954759598, + -0.01768527552485466, + -0.06492272019386292, + 0.05556351691484451, + 0.09035799652338028, + -1.8480179951437423e-33, + 0.07355325669050217, + -0.03781836852431297, + -0.0373709611594677, + 0.06885689496994019, + 0.11190002411603928, + -0.030760079622268677, + -0.027770796790719032, + 0.0006396566750481725, + -0.03973552957177162, + 0.050758104771375656, + 0.08209040015935898, + 0.0188168752938509, + 0.015439143404364586, + 0.022253474220633507, + -0.02570788748562336, + -0.07687342166900635, + -0.00639727246016264, + 0.029859717935323715, + -0.03770418465137482, + -0.0502411313354969, + -0.02536187693476677, + 0.04807189851999283, + 0.03214369714260101, + -0.07651560008525848, + 0.011089473031461239, + -0.007027017418295145, + 0.006824131589382887, + -0.03892049565911293, + 0.07017359882593155, + 0.018052510917186737, + -0.036386698484420776, + 0.043066490441560745, + 0.013472819700837135, + -0.027127327397465706, + 0.016272757202386856, + 0.046552762389183044, + -0.017077449709177017, + 0.06428731977939606, + -0.03298282250761986, + -0.0761285349726677, + -0.006360864732414484, + -0.035098012536764145, + 0.02282196842133999, + -0.10013449937105179, + -4.283444923203206e-06, + 0.05967803671956062, + 0.03082684800028801, + 0.0340479239821434, + 0.05110783502459526, + 0.031090784817934036, + 0.017937004566192627, + 0.022324465215206146, + -0.0163074042648077, + 0.05044286698102951, + 0.10021644085645676, + -0.05858952924609184, + 0.0789240300655365, + 0.09799353778362274, + 0.041482504457235336, + 0.0681237280368805, + 0.056988656520843506, + 0.05887947604060173, + 0.024097103625535965, + -0.052295584231615067, + 0.0012493227841332555, + 0.09911911934614182, + 0.04147876054048538, + -0.060800377279520035, + 0.09988655894994736, + -0.020145704969763756, + 0.03053107112646103, + -0.00031536241294816136, + -0.024360409006476402, + 0.04530489444732666, + -0.05737446993589401, + 0.07565739005804062, + 0.013087318278849125, + -0.03371778875589371, + 0.031048011034727097, + -0.10471173375844955, + -0.06416168063879013, + 0.015388207510113716, + -0.09048616141080856, + 0.031583331525325775, + -0.052581191062927246, + 0.037325870245695114, + 0.0036518441047519445, + -0.08424043655395508, + -0.09505447000265121, + -0.031016524881124496, + -0.054636310786008835, + 0.026610439643263817, + 0.01803402230143547, + -0.07103341072797775, + -0.018053805455565453, + -4.389292691728056e-34, + -0.004658497869968414, + 0.06639260798692703, + 0.0740685686469078, + 0.014334000647068024, + 0.02587701939046383, + 0.025089973583817482, + 0.014177029021084309, + 0.056369680911302567, + -0.014715521596372128, + -0.0077729253098368645, + -0.02775362879037857, + -0.03851758688688278, + -0.04833503067493439, + -0.02196141891181469, + 0.03950575366616249, + 0.011161550879478455, + 0.022076934576034546, + 0.050048086792230606, + 0.043750934302806854, + 0.03789689019322395, + -0.03113769367337227, + 0.023688307031989098, + -0.028649386018514633, + 0.04854383319616318, + -0.012729877606034279, + -0.004565633367747068, + 0.02028779871761799, + 0.0350537970662117, + 0.03629444167017937, + -0.03526652231812477, + -0.015532840974628925, + -0.03482387587428093, + -0.04618171602487564, + -0.09530895203351974, + 0.01674891635775566, + -0.035258013755083084, + 0.024170152842998505, + 0.05110475420951843, + 0.00031174460309557617, + 0.008957111276686192, + -0.06741088628768921, + -0.019525196403265, + 0.027241801843047142, + -0.029917269945144653, + 0.023676935583353043, + -0.048884302377700806, + -0.09853173792362213, + 0.03660908713936806, + -0.002513966988772154, + 0.04534022510051727, + 0.02304239571094513, + -0.044628653675317764, + -0.03487956151366234, + -0.07354731112718582, + -0.07446479052305222, + -0.03358275815844536, + -0.08905069530010223, + 0.04382805898785591, + -0.0066164350137114525, + 0.11429083347320557, + -0.018491560593247414, + 0.01669061928987503, + -0.041727542877197266, + -0.11427325755357742, + -0.02349167689681053, + 0.023185821250081062, + -0.022404249757528305, + -0.11764056980609894, + 0.0176099706441164, + 0.08154696971178055, + 0.031241493299603462, + 0.017215415835380554, + -0.03740715980529785, + 0.006212671287357807, + -0.022680139169096947, + -0.037293944507837296, + -0.004511010833084583, + -0.007547192741185427, + 0.0001490944268880412, + -0.008423291146755219, + 0.017584403976798058, + 0.02915315330028534, + -0.002176191657781601, + -0.03150028735399246, + -0.00196273485198617, + 0.06564919650554657, + 0.0717027485370636, + -0.059863731265068054, + 0.04749802127480507, + -0.019628409296274185, + 0.020156240090727806, + 0.0204587634652853, + 0.03385276719927788, + 0.016779981553554535, + -0.05030214414000511, + -1.7731606405391176e-08, + 0.02502697892487049, + 0.0021279340144246817, + -0.01081147138029337, + 0.08390950411558151, + 0.014853962697088718, + 0.005328713916242123, + -0.01012139581143856, + -0.12827427685260773, + -0.027201935648918152, + -0.06464669108390808, + 0.10265928506851196, + -0.00911027379333973, + 0.009353564120829105, + 0.05697590112686157, + 0.0010454419534653425, + 0.019998859614133835, + -0.08414864540100098, + 0.0908588320016861, + -0.030629783868789673, + -0.021038074046373367, + -0.018631162121891975, + 0.09435386955738068, + 0.05275557562708855, + -0.05459461361169815, + -0.008624466136097908, + 0.009072552435100079, + 0.0425412580370903, + 0.026166902855038643, + 0.09706591069698334, + 0.006370866671204567, + -0.0014985065208747983, + -0.0039681303314864635, + 0.007679249159991741, + -0.02176796831190586, + -0.10126722604036331, + -0.014804895035922527, + -0.05426744371652603, + -0.003169008996337652, + -0.0174366794526577, + 0.008252713829278946, + -0.0023974392097443342, + -0.005446729715913534, + 0.013717640191316605, + -0.02733166143298149, + -0.1094917580485344, + -0.0780455619096756, + 0.06871452927589417, + -0.07561013102531433, + -0.03599729388952255, + -0.06021403893828392, + -0.040063533931970596, + -0.034461021423339844, + -0.0003578651521820575, + -0.005252767354249954, + 0.06560749560594559, + 0.013787217438220978, + -0.021273618564009666, + 0.1208873763680458, + -0.09075648337602615, + -0.008160797879099846, + 0.009084273129701614, + 0.010286683216691017, + -0.025031685829162598, + 0.01583089679479599 + ], + "sidebar-bold||left rail,wireframe,ui,interface": [ + -0.052884843200445175, + -0.0033512371592223644, + 0.008777053095400333, + 0.11849067360162735, + 0.057199615985155106, + 0.0155333261936903, + 0.04490737244486809, + -0.0014170922804623842, + -0.08199622482061386, + -0.004562106914818287, + -0.001891842344775796, + 0.047980256378650665, + -0.00014285613724496216, + -0.01226475927978754, + -0.012053771875798702, + -0.012562235817313194, + 0.03056669980287552, + -0.029185140505433083, + 0.02303648367524147, + 0.05839576572179794, + -0.04488657787442207, + 0.015888767316937447, + 0.01338269468396902, + 0.016988394781947136, + -0.028902463614940643, + 0.05086607113480568, + 0.0913911759853363, + -0.002753961831331253, + -0.011695519089698792, + -0.043422382324934006, + -0.03547200933098793, + 0.0006854288512840867, + 0.027264341711997986, + 0.023592358455061913, + -0.0658491849899292, + -0.07891359180212021, + 0.042368244379758835, + -0.04928889125585556, + 0.014013388194143772, + 0.04798572137951851, + -0.04554904252290726, + -0.0030955488327890635, + -0.04602484777569771, + 0.06051892414689064, + 0.009120428003370762, + -0.08789891749620438, + -0.05605776607990265, + -0.037330225110054016, + 0.03474752977490425, + 0.021062644198536873, + 0.05967532470822334, + -0.025193635374307632, + -0.019684456288814545, + 0.06274709850549698, + 0.014919334091246128, + 0.02980635315179825, + -0.07724917680025101, + 0.028715305030345917, + 0.10216877609491348, + 0.06370345503091812, + -0.006130689289420843, + 0.04036037623882294, + 0.06818599253892899, + -0.032160013914108276, + 0.08618834614753723, + -0.030641740188002586, + -0.029441358521580696, + 0.05605967715382576, + -0.011250972747802734, + -0.026716165244579315, + 0.09599152207374573, + -0.013025208376348019, + -0.01970883086323738, + -0.0798676460981369, + 0.035779133439064026, + -0.06614327430725098, + 0.07224883884191513, + 0.049542445689439774, + -0.05619504675269127, + -0.024743160232901573, + -0.08988391607999802, + 0.005431482568383217, + -0.022037385031580925, + -0.009493734687566757, + 0.04730596765875816, + 0.035213444381952286, + -0.043985866010189056, + -0.06299111992120743, + -0.016874689608812332, + -0.0003122601192444563, + -0.031631287187337875, + 0.0488097257912159, + 0.01424554456025362, + -0.0027369109448045492, + 0.016305137425661087, + -0.013571489602327347, + -0.03262998163700104, + -0.024561772122979164, + -0.10989424586296082, + 0.05438512936234474, + 0.04990968853235245, + 0.0008225396159105003, + 0.05532568693161011, + 0.011538894847035408, + 0.018705634400248528, + 0.09032058715820312, + 0.008099901489913464, + 0.010825199075043201, + -0.07487237453460693, + 0.03711104020476341, + 0.03405460715293884, + -0.030382828786969185, + -0.051974788308143616, + -0.014604070223867893, + 0.02946990542113781, + -0.05151808261871338, + -0.07268606871366501, + 0.03217269852757454, + 0.09117661416530609, + 0.0012037163833156228, + -0.05754902958869934, + 0.02245272509753704, + -0.0097412234172225, + -0.05357157811522484, + 0.02404157631099224, + -0.006112304981797934, + 0.004094833508133888, + -1.2867004326783953e-33, + -0.02162538468837738, + -0.016436299309134483, + -0.06293019652366638, + 0.0939810574054718, + -0.032309986650943756, + -0.002140158088877797, + -0.039534345269203186, + 0.037256378680467606, + -0.08748093992471695, + 0.04182105511426926, + 0.07536587864160538, + 0.10072077065706253, + -0.06189759075641632, + 0.04698336869478226, + 0.051828283816576004, + -0.13626708090305328, + -0.028064657002687454, + -0.041090719401836395, + -0.06268467009067535, + 0.0029262318275868893, + -0.0500456839799881, + 0.0018836661474779248, + -0.05128336697816849, + -0.058972496539354324, + 0.0018857503309845924, + -0.015005880035459995, + 0.0893026739358902, + -0.011877506971359253, + -0.1066741794347763, + 0.014374806545674801, + -0.009947147220373154, + 0.05704454332590103, + 0.1294558346271515, + -0.026542138308286667, + -0.015412542968988419, + -0.0542164109647274, + 0.008435522206127644, + -0.013060460798442364, + -0.03664678707718849, + 0.0357792004942894, + -0.0919153168797493, + -0.0014439865481108427, + -0.017980020493268967, + -0.06462208926677704, + 0.01312255859375, + 0.21434196829795837, + 0.0892842635512352, + -0.020960813388228416, + 0.017710253596305847, + 0.004702093545347452, + -0.0640517845749855, + -0.008480132557451725, + 0.04124617204070091, + 0.019634108990430832, + 0.012892235070466995, + -0.04548007249832153, + -0.03753574192523956, + 0.15853916108608246, + 0.10459155589342117, + 0.004604191519320011, + -0.0296054407954216, + 0.061899978667497635, + -0.026728270575404167, + 0.028031568974256516, + -0.09109291434288025, + 0.04665719345211983, + -0.0038109321612864733, + -0.009444099850952625, + 0.023099366575479507, + -0.1265614777803421, + -0.05731192231178284, + 0.04872544854879379, + 0.07832494378089905, + 0.07185544818639755, + 0.03482578322291374, + -0.032922402024269104, + -0.0816015675663948, + 0.03947165980935097, + 0.0467166043817997, + -0.042857177555561066, + -0.05659719556570053, + -0.048770200461149216, + -0.027252960950136185, + 0.05786353349685669, + 0.07742591947317123, + -0.08198101818561554, + 0.03461659327149391, + -0.040518589317798615, + -0.02565646544098854, + 0.028990162536501884, + -0.047281745821237564, + 0.008155965246260166, + -0.0021189770195633173, + 0.014203522354364395, + -0.008348977193236351, + -3.878973859837638e-34, + 0.05892319232225418, + -0.05741690844297409, + -0.03832182288169861, + -0.0601474903523922, + -0.09149433672428131, + -0.018009331077337265, + 0.07405563443899155, + 0.02638237550854683, + -0.028222432360053062, + 0.09151864796876907, + 0.13893672823905945, + 0.03700093924999237, + -0.061841413378715515, + -0.08240168541669846, + 0.013044857420027256, + 0.0347520187497139, + -0.015252072364091873, + 0.03918702155351639, + 0.004396454431116581, + -0.013382944278419018, + -0.05446447432041168, + -0.019805872812867165, + -0.07607979327440262, + 0.015055489726364613, + 0.028901290148496628, + 0.05187223479151726, + 0.014959543012082577, + 0.03068496286869049, + -0.013295856304466724, + -0.032353974878787994, + -0.03915778920054436, + -0.02907734178006649, + 0.04210405796766281, + 0.03780185803771019, + -0.021307356655597687, + 0.016204560175538063, + -0.0076296343468129635, + 0.001010405132547021, + 0.025891156867146492, + -0.05409110337495804, + -0.01800813339650631, + 0.043375641107559204, + 0.038995902985334396, + 0.012968468479812145, + -0.06790854781866074, + 0.03788221627473831, + -0.007721374277025461, + -0.024836638942360878, + -0.08157453685998917, + -0.015042010694742203, + 0.022788219153881073, + 0.04099036753177643, + 0.029762722551822662, + -0.044005632400512695, + 0.011535820551216602, + -0.10836368799209595, + -0.03282899037003517, + 0.00766163133084774, + -0.024625606834888458, + 0.0981154665350914, + 0.10232511162757874, + 0.03717314079403877, + -0.03503545746207237, + -0.037455737590789795, + 0.03754087910056114, + -0.05392324551939964, + 0.004083541221916676, + -0.10589990764856339, + 0.08037938177585602, + -0.03855575993657112, + 0.11057077348232269, + -0.023439737036824226, + 0.015402599237859249, + -0.020792610943317413, + 0.04094275087118149, + 0.006064887624233961, + 0.10713662952184677, + -0.013691588304936886, + 0.004189217463135719, + 0.037108201533555984, + 0.02289789915084839, + -0.05099524185061455, + -0.027226068079471588, + 0.03233082965016365, + -0.04643377289175987, + 0.02745833247900009, + -0.03159991651773453, + 0.04070262238383293, + 0.026677275076508522, + -0.004661674611270428, + -0.040854621678590775, + -0.02924266643822193, + 0.041888486593961716, + 0.029256541281938553, + -0.018437407910823822, + -2.0386410781725317e-08, + -0.01829589158296585, + -0.015273740515112877, + 0.020141208544373512, + -0.06910881400108337, + -0.043652333319187164, + -0.0026613660156726837, + -0.03277556598186493, + -0.07132861763238907, + -0.07179532945156097, + -0.0451994426548481, + -0.00915367342531681, + 0.03056686371564865, + -0.12204784154891968, + 0.05257507413625717, + 0.021084876731038094, + 0.03666175156831741, + -0.1391790211200714, + 0.08199110627174377, + 0.01767296902835369, + 0.002821356523782015, + -0.0019084472442045808, + -0.0076034460216760635, + 0.05606592819094658, + 0.042702436447143555, + -0.0035713743418455124, + 0.024878188967704773, + -0.021826306357979774, + 0.027453528717160225, + 0.0697760134935379, + 0.03797603398561478, + 0.008038257248699665, + -0.050177253782749176, + 0.013358762487769127, + 0.007266778498888016, + -0.01113095972687006, + 0.005137802567332983, + -0.11043964326381683, + 0.02440083958208561, + 0.014459705911576748, + 0.02156185358762741, + -0.035774484276771545, + -0.13087081909179688, + 0.03311533480882645, + -0.029336242005228996, + 0.052345942705869675, + 0.04524662718176842, + -0.007049503270536661, + 0.041559018194675446, + -0.043026816099882126, + -0.14619146287441254, + -0.027048245072364807, + -0.012151280418038368, + -0.012582557275891304, + 0.044592659920454025, + -0.005082529969513416, + 0.014512970112264156, + 0.0014634070685133338, + 0.013546554371714592, + 0.01174958236515522, + -0.06386764347553253, + 0.07257087528705597, + 0.03609921783208847, + -0.023870084434747696, + 0.039761465042829514 + ], + "sidebar-simple-bold||left rail,wireframe,ui,interface": [ + -0.04749935865402222, + 0.0044442578218877316, + 0.019380614161491394, + 0.1194809079170227, + 0.059293802827596664, + 0.017478184774518013, + 0.02966986782848835, + 0.010622313246130943, + -0.10329845547676086, + 0.004977214615792036, + -0.005061894655227661, + 0.03810689598321915, + 0.007088200189173222, + -0.01251913420855999, + -0.011065932922065258, + -0.014071019366383553, + 0.031528301537036896, + -0.03238590434193611, + 0.02966410107910633, + 0.05761486664414406, + -0.06530769914388657, + 0.011398187838494778, + -0.00551218818873167, + 0.013267192989587784, + -0.033124376088380814, + 0.04859503358602524, + 0.08906213194131851, + 0.011070799082517624, + 0.0010282895527780056, + -0.04065468907356262, + -0.028802022337913513, + -0.007944167591631413, + 0.03581664338707924, + 0.017885353416204453, + -0.06837314367294312, + -0.07845061272382736, + 0.05220779404044151, + -0.03744989633560181, + 0.0025640008971095085, + 0.041117824614048004, + -0.047263097018003464, + -0.0024652923457324505, + -0.04683732986450195, + 0.06445711106061935, + -0.0077273123897612095, + -0.09706052392721176, + -0.05538760498166084, + -0.03575596958398819, + 0.034528475254774094, + 0.004596130456775427, + 0.0662548691034317, + -0.020061759278178215, + -0.027312882244586945, + 0.05454013869166374, + 0.017607038840651512, + 0.03445248305797577, + -0.09260097146034241, + 0.029969658702611923, + 0.09390696883201599, + 0.056404661387205124, + 0.0003582214703783393, + 0.029837055131793022, + 0.06727691739797592, + -0.039564769715070724, + 0.07570959627628326, + -0.03880112245678902, + -0.03269548714160919, + 0.0578434020280838, + -0.015468129888176918, + -0.024376846849918365, + 0.08117099851369858, + -0.020723653957247734, + -0.029668981209397316, + -0.062137920409440994, + 0.02310732752084732, + -0.08043625950813293, + 0.06312129646539688, + 0.06265867501497269, + -0.06476973742246628, + -0.010575154796242714, + -0.09545204043388367, + -0.0030581457540392876, + -0.033493272960186005, + 0.009701953269541264, + 0.04612565040588379, + 0.02691754139959812, + -0.043106574565172195, + -0.05677204579114914, + -0.0015670389402657747, + -0.00791546143591404, + -0.016220610588788986, + 0.05934099480509758, + 0.026956791058182716, + -0.0052604954689741135, + 0.019681457430124283, + -0.013671331107616425, + -0.019446665421128273, + -0.018177172169089317, + -0.13147906959056854, + 0.05832824856042862, + 0.04225964844226837, + 0.00845763087272644, + 0.06872643530368805, + -0.012851623818278313, + 0.020281601697206497, + 0.08891724050045013, + 0.008061456494033337, + 7.879840995883569e-05, + -0.0673193410038948, + 0.027137216180562973, + 0.03141367807984352, + -0.03809418901801109, + -0.05110055208206177, + -0.01719828136265278, + 0.040850382298231125, + -0.04305639863014221, + -0.07433363795280457, + 0.028271013870835304, + 0.09295724332332611, + 0.008612650446593761, + -0.057043224573135376, + 0.021198898553848267, + -0.025898082181811333, + -0.04891939088702202, + 0.024317165836691856, + -5.6814137678884435e-06, + 0.005409835372120142, + -1.8051850013806936e-33, + -0.0073775798082351685, + 0.0011663846671581268, + -0.06769442558288574, + 0.10015760362148285, + -0.03327926620841026, + -0.0052854460664093494, + -0.048422668129205704, + 0.03667835146188736, + -0.08868008852005005, + 0.03924544155597687, + 0.08918111026287079, + 0.08687696605920792, + -0.06374296545982361, + 0.04555154964327812, + 0.05111030489206314, + -0.134022518992424, + -0.023005297407507896, + -0.043149434030056, + -0.056419141590595245, + -0.007561387959867716, + -0.05460045114159584, + 0.019122570753097534, + -0.043597593903541565, + -0.06894046068191528, + 0.0015312953619286418, + -0.013144443742930889, + 0.09902214258909225, + -0.019059836864471436, + -0.10052897036075592, + 0.009194379672408104, + -0.013735086657106876, + 0.04867670312523842, + 0.1298798769712448, + -0.012648357078433037, + -0.016359254717826843, + -0.05995773896574974, + 0.02448773942887783, + -0.007887348532676697, + -0.03885273262858391, + 0.019247470423579216, + -0.09535008668899536, + 0.007383170537650585, + -0.007429452147334814, + -0.06588636338710785, + 0.01999128982424736, + 0.21653328835964203, + 0.08379972726106644, + -0.02034316584467888, + 0.029044121503829956, + -0.002602106425911188, + -0.06807135045528412, + -0.0016025640070438385, + 0.027823641896247864, + 0.03302164375782013, + 0.013939669355750084, + -0.03127838298678398, + -0.04578935727477074, + 0.1552487313747406, + 0.10663434118032455, + 0.0035061584785580635, + -0.027157817035913467, + 0.07245215773582458, + -0.033284496515989304, + 0.035874687135219574, + -0.08898811042308807, + 0.056199923157691956, + -0.010425413027405739, + -0.022848691791296005, + 0.0153738334774971, + -0.11933103203773499, + -0.0546758770942688, + 0.05391177535057068, + 0.06575721502304077, + 0.044199686497449875, + 0.05420013517141342, + -0.01414805743843317, + -0.058229513466358185, + 0.018525052815675735, + 0.046451833099126816, + -0.04905124381184578, + -0.046367816627025604, + -0.045677751302719116, + -0.032765887677669525, + 0.07110419124364853, + 0.05556768178939819, + -0.08260352164506912, + 0.03562892973423004, + -0.029656317085027695, + -0.03499402478337288, + 0.019070686772465706, + -0.055713579058647156, + 0.011923200450837612, + -0.006500363349914551, + 0.008779802359640598, + -0.002115977928042412, + 2.0645469014655886e-35, + 0.058950189501047134, + -0.05967393517494202, + -0.03670522943139076, + -0.05038393661379814, + -0.08640703558921814, + -0.004968651104718447, + 0.07907924801111221, + 0.02072589285671711, + -0.01973147504031658, + 0.09726665169000626, + 0.12379790842533112, + 0.036560818552970886, + -0.0670006200671196, + -0.07635772973299026, + 0.008609589189291, + 0.036884453147649765, + -0.01896265149116516, + 0.044083815068006516, + 0.014305837452411652, + -0.016370492056012154, + -0.04584507271647453, + -0.009430741891264915, + -0.09417086839675903, + 0.00769724790006876, + 0.03056356869637966, + 0.05677628517150879, + 0.011276133358478546, + 0.03784584254026413, + -0.010898472741246223, + -0.040514931082725525, + -0.04706395044922829, + -0.03813694417476654, + 0.04618072882294655, + 0.028805840760469437, + -0.02398763783276081, + 0.028830111026763916, + -0.023268381133675575, + 0.006907768547534943, + 0.02190510369837284, + -0.053893618285655975, + -0.02309546060860157, + 0.04478646069765091, + 0.042415276169776917, + -0.004698352422565222, + -0.06276918947696686, + 0.025676362216472626, + -0.002265268936753273, + -0.03346623480319977, + -0.08969220519065857, + -0.0214682649821043, + 0.014154249802231789, + 0.022898301482200623, + 0.01996566541492939, + -0.034239619970321655, + 0.011029582470655441, + -0.10224167257547379, + -0.01483567152172327, + 0.014907145872712135, + -0.023540806025266647, + 0.10539712011814117, + 0.08252371102571487, + 0.036268603056669235, + -0.050176408141851425, + -0.039820414036512375, + 0.028235428035259247, + -0.05006535351276398, + 0.0029076978098601103, + -0.11309869587421417, + 0.0697660893201828, + -0.04104039818048477, + 0.1079273596405983, + -0.01737363077700138, + 0.025925105437636375, + -0.030891144648194313, + 0.047379471361637115, + 0.0072374590672552586, + 0.10435943305492401, + -0.016906991600990295, + 0.0008353284792974591, + 0.025937967002391815, + 0.03419125825166702, + -0.05053892359137535, + -0.03891443461179733, + 0.013971245847642422, + -0.036336202174425125, + 0.027028629556298256, + -0.029889274388551712, + 0.03109084442257881, + 0.027890317142009735, + 0.007307092193514109, + -0.0471319742500782, + -0.013170567341148853, + 0.06679260730743408, + 0.03522839769721031, + -0.02075287140905857, + -2.125025133636882e-08, + -0.017306840047240257, + -0.02758706733584404, + 0.022228149697184563, + -0.06258139759302139, + -0.040686726570129395, + -0.0025298341643065214, + -0.025648219510912895, + -0.07198997586965561, + -0.06507016718387604, + -0.034263450652360916, + -0.008864430710673332, + 0.019839458167552948, + -0.12182748317718506, + 0.07234973460435867, + 0.002936075208708644, + 0.057838406413793564, + -0.13453252613544464, + 0.07941451668739319, + 0.021617019549012184, + -0.0029099551029503345, + -0.005924530327320099, + -0.004404391162097454, + 0.04904899001121521, + 0.04145389050245285, + -0.005045442376285791, + 0.03030695766210556, + -0.014062629081308842, + 0.04423745721578598, + 0.07374634593725204, + 0.043555330485105515, + 0.005235522054135799, + -0.04864287003874779, + 0.014906339347362518, + 0.013814904727041721, + -0.020431628450751305, + 0.00662188557907939, + -0.1209324523806572, + 0.029160775244235992, + 0.003935661632567644, + 0.00607777526602149, + -0.03749372437596321, + -0.11539597809314728, + 0.031897470355033875, + -0.034427620470523834, + 0.05636865273118019, + 0.04222842678427696, + -0.0009426011820323765, + 0.02548772282898426, + -0.039604246616363525, + -0.14688915014266968, + -0.017035236582159996, + -0.016626624390482903, + -0.004066506400704384, + 0.030561642721295357, + -0.00803416222333908, + 0.02873295731842518, + 0.014814475551247597, + 0.021286703646183014, + 0.0006041221204213798, + -0.05636690929532051, + 0.07584685832262039, + 0.06625331193208694, + -0.031019004061818123, + 0.04312484711408615 + ], + "sigma-bold||\u03c3,symbol,mathematics,sum": [ + 0.015483610332012177, + -0.021254215389490128, + 0.05221231281757355, + 0.05782206729054451, + -0.026492299512028694, + 0.016299771144986153, + 0.12744148075580597, + 0.026895543560385704, + 0.011737148277461529, + -0.016815559938549995, + -0.007381871342658997, + -0.008574075996875763, + 0.08142885565757751, + -0.066619873046875, + -0.0768260732293129, + 0.07155318558216095, + 0.03337449952960014, + 0.03424196317791939, + 0.01465369202196598, + 0.04917670041322708, + 0.03071151115000248, + -0.0008351444848813117, + 0.03420545905828476, + 0.079668790102005, + 0.08759874105453491, + -0.028364626690745354, + 0.03956424444913864, + -0.01864977926015854, + 0.051415491849184036, + 0.02313392609357834, + -0.09055769443511963, + -0.09407557547092438, + 0.08264780789613724, + 0.0357699953019619, + 0.042490363121032715, + -0.026621714234352112, + 0.015124076046049595, + 0.006979485508054495, + 0.06371384859085083, + 0.04832359775900841, + 0.0039009437896311283, + -0.08377613127231598, + 0.04733653366565704, + 0.05209728330373764, + -0.08703459799289703, + 0.035718996077775955, + -0.03861067444086075, + 0.004106008447706699, + 0.017436126247048378, + -0.004791161045432091, + 0.0215044803917408, + 0.039246492087841034, + -0.15914225578308105, + -0.014126579277217388, + 0.054962486028671265, + 0.019643235951662064, + -0.08190109580755234, + -0.019042683765292168, + 0.030957138165831566, + -0.11332006752490997, + 0.02172023057937622, + 0.0032575007062405348, + 0.10957112908363342, + 0.018556853756308556, + 0.04010219871997833, + -0.002811771584674716, + 0.021673422306776047, + 0.050464797765016556, + 0.0026122864801436663, + 0.016254417598247528, + -0.0006444373866543174, + 0.02007272280752659, + -0.037178609520196915, + -0.04409245774149895, + -0.03146486356854439, + 0.07176101952791214, + 0.10231892019510269, + -0.012607483193278313, + -0.008415312506258488, + 0.020985072478652, + -0.128910094499588, + -0.09332229197025299, + -0.027261978015303612, + -0.006239640060812235, + 0.05385975167155266, + 0.04436642676591873, + -0.03715023398399353, + -0.11562114953994751, + 0.05655214190483093, + -0.06161244213581085, + -0.060561127960681915, + -0.047684259712696075, + -0.0009065186022780836, + 0.027418263256549835, + -0.07251611351966858, + -0.023572150617837906, + -0.020488690584897995, + 0.037854503840208054, + 0.018896037712693214, + 0.09625682979822159, + 0.028832025825977325, + 0.06480494141578674, + -0.004078051075339317, + -0.05218646302819252, + -0.05743291229009628, + 0.014617957174777985, + 0.10634411871433258, + -0.12178347259759903, + -0.015064582228660583, + 0.012481603771448135, + 0.022794175893068314, + -0.10398111492395401, + -0.01489089336246252, + -0.008673575706779957, + -0.10755668580532074, + 0.009002958424389362, + -0.009627937339246273, + -0.007875367999076843, + 0.10248753428459167, + -0.038134168833494186, + 0.05018080770969391, + -0.04269365593791008, + 0.006817008834332228, + -0.035256776958703995, + 0.02837079018354416, + 0.0013328558998182416, + 0.021399475634098053, + -2.744654229224274e-33, + -0.061323244124650955, + -0.010937785729765892, + -0.02733810804784298, + 0.06580997258424759, + -0.0150246387347579, + 0.034210462123155594, + 0.0035399487242102623, + -0.06917251646518707, + -0.03747771307826042, + 0.046203408390283585, + 0.06059839949011803, + 0.0943458154797554, + -0.05604838207364082, + 0.006751273758709431, + 0.03648504987359047, + 0.016018593683838844, + 0.11021502315998077, + -0.06981723755598068, + -0.0592513307929039, + -0.037197213619947433, + 0.060929637402296066, + -0.007804547436535358, + -0.06419995427131653, + 0.05195406824350357, + -0.01046774536371231, + -0.012102554552257061, + 0.03606584668159485, + 0.0367727093398571, + -0.09674655646085739, + 0.04025823250412941, + 0.0024346609134227037, + -0.007655504159629345, + -0.027901798486709595, + -0.03869619220495224, + 0.022201143205165863, + 0.027484087273478508, + 0.007252376992255449, + -0.0008154359529726207, + 0.09668482095003128, + 0.003865850856527686, + -0.005679216235876083, + -0.005210099741816521, + 0.007163638714700937, + -0.06415713578462601, + 0.020909082144498825, + 0.13009600341320038, + 0.03738507628440857, + -0.04618660360574722, + 0.020212730392813683, + -0.05803897976875305, + -0.06676580011844635, + -0.08476046472787857, + 0.02983774244785309, + 0.07091809064149857, + 0.03763623908162117, + 0.00489564286544919, + -0.007949179038405418, + 0.0655951276421547, + 0.040822602808475494, + -0.000902216590475291, + -0.09482467174530029, + 0.03872004896402359, + 0.03889579698443413, + 0.06350891292095184, + -0.016538193449378014, + 0.03043235093355179, + -0.0029898197390139103, + 0.07105806469917297, + 0.13434980809688568, + -0.011519506573677063, + 0.0008037714287638664, + 0.062355268746614456, + -0.00042028792086057365, + 0.05763851851224899, + -0.02841995656490326, + 0.01809636689722538, + -0.01964271068572998, + -0.035588596016168594, + -0.04508458077907562, + -0.03802118077874184, + -0.04786485806107521, + -0.016916602849960327, + -0.049834445118904114, + 0.03598019853234291, + 0.04081647843122482, + 0.026332365348935127, + -0.06105053797364235, + -0.014707069844007492, + -0.01974666304886341, + -0.009369561448693275, + -0.021050486713647842, + -0.017895421013236046, + 0.013062314130365849, + -0.025840220972895622, + -0.1513100564479828, + -1.6290665373098704e-34, + -0.06108612194657326, + 0.0538506880402565, + -0.005191350355744362, + -0.03815967217087746, + -0.010943285189568996, + -0.01201029121875763, + -0.0037262861151248217, + -0.00225529121235013, + -0.034810520708560944, + 0.007048949133604765, + 0.07025084644556046, + -0.060187242925167084, + -0.07503875344991684, + 0.0120852617546916, + -0.05192728340625763, + 0.004458543378859758, + 0.02734687738120556, + 0.015134057030081749, + -0.002501237438991666, + -0.011621113866567612, + -0.08539030700922012, + 0.011805162765085697, + 0.012098725885152817, + 0.048217758536338806, + -0.03565303236246109, + 0.05657113716006279, + -0.007214176002889872, + 0.032897792756557465, + -0.10424426198005676, + 0.024611452594399452, + -0.019881721585989, + -0.043856702744960785, + 0.045361217111349106, + -0.04132706671953201, + -0.048303086310625076, + -0.0673605278134346, + 0.10001910477876663, + -0.04818102344870567, + 0.06004204601049423, + -0.06402355432510376, + 0.04274572804570198, + -0.00936110969632864, + 0.12299284338951111, + -0.036644577980041504, + -0.0012213480658829212, + 0.004822841379791498, + 0.027004024013876915, + -0.10189240425825119, + 0.011319593526422977, + 0.01514660194516182, + 0.020497078076004982, + -0.06530187278985977, + 0.038868289440870285, + 0.019218862056732178, + -0.07424576580524445, + 0.004235345870256424, + -0.017959926277399063, + 0.009019200690090656, + 0.020882735028862953, + 0.05757329240441322, + -0.03015008755028248, + 0.00463549979031086, + -0.09152045100927353, + 0.01521649956703186, + -0.010079575702548027, + -0.04496368020772934, + -0.008351106196641922, + -0.09913362562656403, + 0.035022128373384476, + 0.02984750084578991, + -0.04486772045493126, + 0.038404010236263275, + 0.0382283553481102, + 0.11915063858032227, + -0.0005113914958201349, + -0.01624096743762493, + 0.0019736927933990955, + -0.030263233929872513, + 0.029098011553287506, + 0.07671292871236801, + -0.040024284273386, + -0.06476856023073196, + -0.01434765662997961, + 0.00412611523643136, + -0.0016836583381518722, + -0.01625387743115425, + -0.021011492237448692, + 0.01820814423263073, + -0.0038975609932094812, + -0.03691273555159569, + -0.07165240496397018, + 0.00387326767668128, + -0.011525089852511883, + -0.08880512416362762, + -0.027895765379071236, + -1.6646637845951773e-08, + 0.005753183271735907, + -0.023305293172597885, + -0.01921684294939041, + -0.0946674644947052, + 0.0868401825428009, + -0.007225037086755037, + -0.08593886345624924, + -0.12762558460235596, + -0.021972976624965668, + 0.0015098494477570057, + -0.01459493301808834, + 0.07003383338451385, + -0.05515458434820175, + -0.043993402272462845, + 0.005002028774470091, + 0.033669520169496536, + -0.012084709480404854, + 0.040022727102041245, + -0.0009065148769877851, + -0.025523940101265907, + 0.07332906126976013, + 0.013927752152085304, + 0.03423271328210831, + -0.0884641706943512, + 0.019666526466608047, + 0.07540895789861679, + -0.03770756721496582, + 0.0022487505339086056, + 0.029586264863610268, + 0.0515512116253376, + 0.07594282180070877, + 0.05947710946202278, + 0.07973551005125046, + 0.021837450563907623, + -0.10728167742490768, + -0.007035651244223118, + -0.0038125214632600546, + 0.0005644658813253045, + -0.010268794372677803, + 0.12444470822811127, + -0.01811046712100506, + 0.01712416484951973, + 0.020653124898672104, + -0.024759527295827866, + -0.03379177674651146, + -0.02747602015733719, + 0.010437136515974998, + -0.034310489892959595, + -0.04385381191968918, + -0.0805746391415596, + 0.006085655651986599, + -0.026038220152258873, + 0.013877242803573608, + 0.04361288622021675, + -0.07243620604276657, + -0.07236846536397934, + -0.01047713402658701, + 0.039918556809425354, + -0.07263008505105972, + -0.045718852430582047, + 0.09983599931001663, + -0.031829047948122025, + -0.00489074969664216, + -0.049962908029556274 + ], + "sign-in-bold||*updated*,signin,login,log in,enter": [ + 0.031092660501599312, + -0.027957327663898468, + -0.06901439279317856, + 0.014173691160976887, + 0.040989503264427185, + -0.03622748330235481, + 0.08723757416009903, + -0.07062505185604095, + -0.01750054955482483, + 0.009505736641585827, + -0.011660548858344555, + 0.02176886983215809, + 0.052269309759140015, + -0.036574654281139374, + 0.06703537702560425, + 0.015106274746358395, + -0.0073789432644844055, + 0.043200548738241196, + -0.005175256170332432, + 0.007826521061360836, + -0.03433692082762718, + -0.02189253829419613, + -0.049519553780555725, + 0.0774676725268364, + 0.017580287531018257, + -0.05789375305175781, + 0.05389050766825676, + -0.023026462644338608, + -0.04102466255426407, + -0.05874752253293991, + -0.011253210715949535, + 0.007807265035808086, + 0.07744675874710083, + -0.018915101885795593, + 0.040168777108192444, + -0.016647491604089737, + -0.00020680557645391673, + -0.015079554170370102, + 0.024927496910095215, + -0.03079208917915821, + -0.015362786129117012, + -0.08140508830547333, + -0.0036226839292794466, + 0.038130901753902435, + -0.05458667874336243, + -0.01128013152629137, + -0.08675990253686905, + -0.03180108591914177, + 0.03047019988298416, + -0.04961322247982025, + 0.047471899539232254, + -0.05489698797464371, + -0.06049882993102074, + -0.006401062477380037, + -0.06795540452003479, + 0.03181992098689079, + -0.01674020290374756, + 0.002285344759002328, + 0.03631317988038063, + -0.023250959813594818, + 0.0011263132328167558, + -0.010317093692719936, + 0.08864296972751617, + 0.016056781634688377, + 0.009418356232345104, + 0.010010483674705029, + 0.004790156148374081, + -0.07426803559064865, + -0.04317960515618324, + 0.008700240403413773, + -0.008405773900449276, + -0.009439918212592602, + -0.035303995013237, + -0.08601640909910202, + -0.017314985394477844, + -0.025288987904787064, + 0.0042792451567947865, + 0.01989685744047165, + 0.017866123467683792, + -0.008504352532327175, + -0.015342243015766144, + -0.04877721145749092, + -0.08904454112052917, + -0.030239587649703026, + 0.09808889776468277, + 0.05794651433825493, + -0.0868273600935936, + -0.06914893537759781, + -0.02960103377699852, + 0.005264804698526859, + 0.016604218631982803, + -0.04401910677552223, + 0.0395350456237793, + -0.012925839982926846, + -0.11546609550714493, + -0.01883712038397789, + 0.05056828632950783, + 0.07970666140317917, + -0.030329132452607155, + 0.084298275411129, + -0.022459693253040314, + 0.07276318222284317, + 0.029459189623594284, + 0.012275803834199905, + 0.03820228576660156, + -0.03960367664694786, + 0.08941381424665451, + -0.0030123533215373755, + 0.020827220752835274, + -0.04970533028244972, + -0.014667187817394733, + -0.10081296414136887, + 0.02971545420587063, + 0.004822809249162674, + -0.012145111337304115, + 0.00708136148750782, + -0.0068406215868890285, + 0.041041918098926544, + 0.060256242752075195, + 0.11416278779506683, + 0.07958853244781494, + -0.06947682797908783, + -0.05638137459754944, + -0.06324294209480286, + 0.021133093163371086, + -0.023053966462612152, + 0.07558189332485199, + -4.1966305451607255e-34, + 0.07952647656202316, + 0.08560606092214584, + -0.05214992165565491, + 0.07834114879369736, + 0.00690168933942914, + 0.011848662048578262, + -0.032674748450517654, + -0.0895516648888588, + -0.08426658064126968, + 0.003427359042689204, + 0.06518919765949249, + 0.09797926992177963, + 0.025438791140913963, + 0.07940758019685745, + 0.03791027516126633, + -0.07331985235214233, + -0.00015197513857856393, + 0.005920202936977148, + -0.03832222893834114, + 0.02606121450662613, + -0.02304890751838684, + 0.0058299582451581955, + -0.015493898652493954, + -0.04182538762688637, + -0.005193507298827171, + 0.0009343701531179249, + 0.026867222040891647, + 0.05416832119226456, + -0.052399516105651855, + 0.0009104548953473568, + 0.051717471331357956, + 0.003057260299101472, + -0.026115573942661285, + 0.06659901887178421, + -0.0031869090162217617, + -0.025090303272008896, + -0.003150886157527566, + -0.03799765557050705, + -0.0009970876853913069, + -0.05118848383426666, + -0.07041458785533905, + -0.04636047035455704, + -0.06447798013687134, + -0.04390459880232811, + 0.005418156739324331, + 0.1252347230911255, + -0.038107458502054214, + -0.035389550030231476, + 0.07981055974960327, + -0.04900399595499039, + -0.045132849365472794, + 0.04679616168141365, + -0.10160351544618607, + -0.010599912144243717, + -0.050286825746297836, + -0.03478868305683136, + -0.053285565227270126, + 0.029857568442821503, + -0.014487003907561302, + -0.051769454032182693, + 0.0011113620130345225, + -0.0001945451949723065, + 0.02487172931432724, + -0.047855522483587265, + -0.05881902948021889, + 0.04156411811709404, + 0.0028625677805393934, + 0.021232446655631065, + 0.05031875893473625, + -0.04785527288913727, + -0.021425850689411163, + 0.01419086568057537, + 0.022960839793086052, + 0.06669017672538757, + -0.06106368824839592, + 0.012143963016569614, + 0.017198368906974792, + 0.05243600159883499, + 0.03298410773277283, + -0.008660884574055672, + 0.04186544939875603, + -0.02460813894867897, + -0.13414564728736877, + 0.17070618271827698, + 0.05402982234954834, + 0.08188989013433456, + -0.030586671084165573, + -0.035935986787080765, + -0.0894000306725502, + 0.023101596161723137, + -0.005547695327550173, + 0.00906376726925373, + 0.0411398783326149, + -0.04537339136004448, + -0.1031041070818901, + -3.856079913493924e-33, + 0.07007255405187607, + -0.0444449782371521, + -0.06919067353010178, + -0.035264283418655396, + -0.02238680049777031, + 0.043449144810438156, + 0.01294898334890604, + 0.010163802653551102, + 0.0020412178710103035, + -0.05864379182457924, + 0.11226797103881836, + 0.07408957183361053, + -0.00548258051276207, + 0.006583486683666706, + -0.01072272751480341, + 0.11060769110918045, + -0.027466388419270515, + 0.08960487693548203, + -0.0783780962228775, + 0.0077453902922570705, + -0.05529632419347763, + -0.03534730523824692, + -0.08305461704730988, + 0.08177841454744339, + 0.01683068461716175, + -0.018066223710775375, + 0.02574264071881771, + 0.06170293316245079, + -0.04856657609343529, + -0.015392772853374481, + 0.002935580676421523, + 0.06402895599603653, + -0.03287894278764725, + 0.03467698395252228, + -5.942214556853287e-05, + -0.003204196225851774, + 0.06315256655216217, + -0.01210071425884962, + -0.07680452615022659, + 0.02462158165872097, + 0.07648961991071701, + 0.006567433942109346, + 0.026619654148817062, + 0.018599584698677063, + -0.013394900597631931, + 0.027386408299207687, + -0.007794936653226614, + -0.08523282408714294, + -0.09777676314115524, + 0.1346549540758133, + 0.05136935040354729, + -0.07501746714115143, + 0.021289516240358353, + -0.0682397112250328, + -0.04415111616253853, + -0.031607985496520996, + 0.011238542385399342, + 0.011593146249651909, + 0.02103683352470398, + 0.05661384016275406, + -0.042776089161634445, + 0.05265897884964943, + 0.03474315255880356, + 0.07110800594091415, + -0.035051506012678146, + -0.08994174748659134, + 0.006385414395481348, + 0.04990999028086662, + 0.019763432443141937, + -0.03715413063764572, + 0.05753838270902634, + -0.0674993023276329, + 0.021789707243442535, + 0.05580732226371765, + 0.025799641385674477, + -0.11743687093257904, + 0.03376374766230583, + -0.06706440448760986, + -0.052762966603040695, + 0.02358769252896309, + -0.028380153700709343, + 0.01903531327843666, + -0.07946203649044037, + 0.0035467145498842, + -0.05123772472143173, + 0.01590818539261818, + -0.03998929262161255, + 0.05551411584019661, + -0.009541258215904236, + -0.0488712415099144, + -0.05232953652739525, + 0.05210588127374649, + 0.004912881180644035, + -0.07043025642633438, + -0.07411497831344604, + -2.3322220599197863e-08, + -0.00029382790671661496, + -0.07706379890441895, + 0.02550920844078064, + 0.03879839926958084, + 0.08143612742424011, + 0.000362986495019868, + -0.05779814347624779, + -0.05877258628606796, + -0.05619681999087334, + -0.07777225971221924, + -0.040451616048812866, + 0.021245786920189857, + 0.002857800107449293, + -0.07121613621711731, + -0.03762844577431679, + 0.0757828950881958, + -0.1213710829615593, + 0.024757226929068565, + 0.007538588251918554, + -0.07759387046098709, + -0.04926039278507233, + 0.05066846311092377, + 0.0332513265311718, + -0.005034882575273514, + 0.04327164217829704, + 0.04642714560031891, + -0.030170712620019913, + 0.04608403518795967, + 0.040649235248565674, + 0.016807449981570244, + 0.06232904642820358, + 0.06761127710342407, + 0.03463846072554588, + -0.048812657594680786, + -0.0892384797334671, + -0.020770637318491936, + 0.012517313472926617, + -0.00563262403011322, + -0.021156802773475647, + 0.04213131591677666, + -0.014305224642157555, + -0.00945970881730318, + 0.06440367549657822, + -0.05541504919528961, + -0.12492763251066208, + 0.04581102728843689, + 0.027865814045071602, + 0.023534610867500305, + 0.0059196786023676395, + -0.12758278846740723, + -0.04012683779001236, + 0.05732785165309906, + 0.03553391620516777, + 0.10386235266923904, + -0.029591098427772522, + -0.04087118059396744, + 0.03964545205235481, + 0.07062803208827972, + 0.06268828362226486, + -0.02723807282745838, + 0.0968991219997406, + -0.0279722698032856, + 0.0192471481859684, + -0.011747476644814014 + ], + "sign-out-bold||*updated*,signout,logout,log out,exit": [ + 0.08491845428943634, + 0.05967427045106888, + -0.0794205591082573, + 0.052299853414297104, + 0.08586259186267853, + -0.034697990864515305, + 0.06344055384397507, + -0.0669446811079979, + 0.01886345073580742, + 0.008402596227824688, + -0.013057760894298553, + 0.06582672894001007, + 0.032110314816236496, + -0.04917566850781441, + 0.04250558465719223, + 0.03512904420495033, + -0.02457621321082115, + 0.07520713657140732, + -0.029446331784129143, + 0.00012429179332684726, + -0.018021680414676666, + 0.011144377291202545, + -0.043656036257743835, + 0.10537010431289673, + 0.01990942656993866, + -0.02172989584505558, + 0.04918956384062767, + -0.08197707682847977, + -0.058767929673194885, + -0.04453663527965546, + 0.0009417762630619109, + -0.02306286245584488, + 0.014143453910946846, + -0.04608450084924698, + 0.05536384508013725, + -0.007473824545741081, + -0.016489708796143532, + 0.005642780102789402, + 0.018131552264094353, + -0.011518387123942375, + 0.016712194308638573, + -0.05191053822636604, + -0.029040219262242317, + 0.005231865216046572, + -0.06320438534021378, + 0.03720157966017723, + -0.096157006919384, + -0.08524307608604431, + 0.018801575526595116, + -0.010693171061575413, + 0.08286832273006439, + -0.0484178401529789, + -0.0671335756778717, + -0.007181595545262098, + -0.012068809010088444, + 0.03150486946105957, + -0.0014631975209340453, + -0.007901959121227264, + 0.03354291990399361, + 0.07505907118320465, + -0.0008755454327911139, + 0.028720876201987267, + 0.05368885397911072, + 0.0062763323076069355, + 0.02849362976849079, + 0.034228794276714325, + 0.06399557739496231, + -0.09429570287466049, + -0.008438625372946262, + 0.03713678568601608, + -0.037026070058345795, + 0.02174692414700985, + -0.018859846517443657, + -0.08109348267316818, + -0.004139313008636236, + -0.015830645337700844, + 0.04121583700180054, + -0.04440539702773094, + 0.00906570814549923, + -0.026515182107686996, + -0.02368658222258091, + -0.03556034713983536, + -0.07314279675483704, + -0.05539850890636444, + 0.04310499504208565, + 0.02067887969315052, + -0.02533915638923645, + -0.04250096529722214, + -0.014228510670363903, + -0.007377861998975277, + -0.061553966253995895, + 0.008640781044960022, + 0.052535530179739, + -0.029921067878603935, + -0.1134786307811737, + -0.04032668471336365, + 0.019713841378688812, + 0.06442044675350189, + -0.05157763883471489, + 0.05540723726153374, + 0.010855048894882202, + 0.08231158554553986, + 0.06722722947597504, + 0.011811130680143833, + 0.02299657091498375, + -0.025106271728873253, + 0.055398523807525635, + -0.017784323543310165, + 0.013840845786035061, + -0.050291139632463455, + -0.01794813573360443, + -0.04210597276687622, + 0.021755822002887726, + -0.021661581471562386, + 0.025169434025883675, + 0.06984893232584, + -0.0022564490791410208, + 0.08878220617771149, + 0.060170914977788925, + 0.06278537958860397, + 0.12099534273147583, + -0.06988176703453064, + -0.04214922711253166, + -0.06478631496429443, + 0.005387683864682913, + -0.0012556727742776275, + 0.1026349812746048, + -6.151522190793826e-34, + 0.07194056361913681, + 0.05268989875912666, + -0.06874516606330872, + 0.10718031227588654, + 0.10703914612531662, + -0.0073975855484604836, + -0.05382640287280083, + -0.09954945743083954, + -0.06699539721012115, + 0.021211523562669754, + 0.0794287696480751, + 0.0639103353023529, + 0.01499730721116066, + 0.05845349282026291, + 0.07136345654726028, + -0.06517348438501358, + 0.06587661802768707, + 0.026064299046993256, + 0.013922080397605896, + 0.011989637278020382, + 0.0198882557451725, + 0.042787712067365646, + -0.016676869243383408, + -0.004652535077184439, + 0.0009601394413039088, + 0.02439305931329727, + 0.001781841041520238, + 0.013743134215474129, + -0.09379614144563675, + -0.005881503224372864, + 0.04397815465927124, + 0.02599421516060829, + -0.030191687867045403, + 0.042076531797647476, + 0.011826008558273315, + -0.07554527372121811, + -0.0914483517408371, + -0.03531216084957123, + 0.022301960736513138, + -0.08019808679819107, + -0.07034703344106674, + -0.009354429319500923, + -0.11610059440135956, + -0.008561987429857254, + 0.024473993107676506, + 0.07003096491098404, + 0.0008040152606554329, + -0.07281550019979477, + 0.06764224171638489, + -0.06031573563814163, + -0.033276062458753586, + 0.06432610750198364, + -0.06167351081967354, + -0.0029594632796943188, + -0.0450531467795372, + -0.04380320757627487, + -0.062444429844617844, + 0.02958652935922146, + -0.023407738655805588, + -0.02128360979259014, + 0.0021583931520581245, + 0.010412843897938728, + 0.018381323665380478, + -0.058553263545036316, + -0.05406326800584793, + 0.04657081887125969, + -0.018532974645495415, + -0.011327886022627354, + -0.034787390381097794, + -0.03646833077073097, + -0.021119216457009315, + 0.019969148561358452, + 0.05608595162630081, + 0.03854422643780708, + -0.09482836723327637, + 0.009482694789767265, + 0.01761804148554802, + 0.0583268366754055, + 0.02264471910893917, + -0.009513501077890396, + 0.049816373735666275, + -0.00510382279753685, + -0.11879618465900421, + 0.07903902977705002, + 0.08097836375236511, + -0.005254401359707117, + -0.021295784041285515, + -0.0338575504720211, + -0.11533015966415405, + 0.03464920073747635, + -0.06508221477270126, + 0.0358656644821167, + 0.03956322744488716, + -0.057432062923908234, + -0.1042260080575943, + -3.065004541485172e-33, + 0.02673274464905262, + -0.018884757533669472, + -0.07916287332773209, + -0.02752392366528511, + -0.07567616552114487, + 0.042257241904735565, + -0.0022767498157918453, + 0.06643704324960709, + -0.03258132562041283, + 0.0025307200849056244, + 0.09244666248559952, + 0.04658021032810211, + 0.012242794968187809, + 0.014688200317323208, + -0.05802637338638306, + 0.06375107169151306, + -0.0075045363046228886, + 0.051276449114084244, + -0.12428843975067139, + 0.031429484486579895, + -0.061200499534606934, + -0.003616507863625884, + -0.08025695383548737, + 0.06430939584970474, + 0.0054955268278717995, + -0.03350982442498207, + -0.007664118893444538, + 0.028929930180311203, + -0.039785176515579224, + -0.06644599884748459, + 0.005776776000857353, + 0.04977143183350563, + 0.008675852790474892, + -0.03415853902697563, + -0.013460474088788033, + -0.0009873411618173122, + -0.03334743529558182, + 0.0002927651512436569, + -0.1039339229464531, + 0.09071270376443863, + 0.06494530290365219, + 0.04501643031835556, + 0.023861316964030266, + 0.0055294339545071125, + -0.004543256014585495, + 0.08906424045562744, + -0.027675462886691093, + -0.09426572173833847, + -0.0841604620218277, + 0.15372581779956818, + 0.022254353389143944, + -0.07418128848075867, + 0.04004495218396187, + -0.05047882720828056, + -0.058356743305921555, + -0.052411653101444244, + 0.010881377384066582, + 0.026294710114598274, + 0.0017791163409128785, + 0.011961608193814754, + 0.03325269743800163, + 0.014508909545838833, + 0.04006953164935112, + 0.06821213662624359, + -0.013719780370593071, + -0.07484815269708633, + 0.023377839475870132, + 0.09976169466972351, + 0.03482630103826523, + -0.02112712524831295, + 0.05689794570207596, + -0.07245875895023346, + 0.00429009972140193, + 0.057566456496715546, + 0.008919347077608109, + -0.06576751172542572, + -0.006954844109714031, + -0.14490824937820435, + -0.05056874454021454, + -0.0037773707881569862, + -0.016511570662260056, + 0.015167911536991596, + -0.05146125331521034, + -0.0008624654146842659, + -0.013339373283088207, + -0.008785558864474297, + -0.07744582742452621, + 0.08942248672246933, + -0.0030467731412500143, + -0.020408323034644127, + 0.0018931105732917786, + 0.05467205122113228, + 0.02516622468829155, + -0.05303768068552017, + -0.08268796652555466, + -2.3018870365376642e-08, + -0.005791067145764828, + -0.09093903750181198, + 0.05683078616857529, + 0.008579002693295479, + 0.06291814893484116, + -0.002346708672121167, + -0.03829722851514816, + 0.00788644328713417, + -0.07142584770917892, + -0.07324181497097015, + -0.01348830759525299, + -0.0001826597872423008, + 0.01662392169237137, + -0.045263778418302536, + -0.034557852894067764, + 0.08063697814941406, + -0.09383636713027954, + 0.01678173430263996, + 0.030180150642991066, + -0.054592084139585495, + -0.12200983613729477, + 0.021163200959563255, + -0.05849035829305649, + 0.02057626098394394, + 0.031088681891560555, + 0.011377115733921528, + 0.010278216563165188, + 0.07588031888008118, + 0.017619432881474495, + 0.03666466474533081, + 0.09409976750612259, + 0.045455820858478546, + 0.013041090220212936, + -0.041226282715797424, + -0.07333938032388687, + 0.03121933713555336, + 0.005962185561656952, + -0.0176556333899498, + -0.006140585523098707, + 0.07168882340192795, + -0.005426847375929356, + 0.015155212953686714, + -0.0007822603220120072, + 0.010139812715351582, + -0.07728387415409088, + 0.01084050815552473, + 0.0056571257300674915, + 0.0037254418712109327, + -0.03530624881386757, + -0.09279376268386841, + -0.03778862953186035, + 0.005143167916685343, + 0.029805688187479973, + 0.062086109071969986, + -0.006184722296893597, + -0.08675197511911392, + 0.028560806065797806, + 0.06803175061941147, + 0.05654149875044823, + -0.03298456594347954, + 0.08259599655866623, + -0.024852463975548744, + 0.008750870823860168, + -0.014765536412596703 + ], + "signature-bold||*updated*,sign,autograph,verify": [ + -0.03533783555030823, + 0.04296955466270447, + -0.002392266411334276, + -0.03945762664079666, + 0.05421791225671768, + -0.06534846872091293, + 0.08550836145877838, + -0.041680801659822464, + -0.03820156306028366, + -0.03514561057090759, + 0.0032466903794556856, + 0.0016145395347848535, + 0.06383415311574936, + -0.025366077199578285, + -0.0033939112909138203, + 0.03474211320281029, + -0.02037682570517063, + 0.014759541489183903, + -0.0016368135111406446, + -0.0027587420772761106, + -0.09466754645109177, + 0.004879143089056015, + 0.0016207225853577256, + 0.052321065217256546, + 0.0347512848675251, + -0.02684492990374565, + 0.02698713168501854, + 0.017429981380701065, + -0.008640634827315807, + -0.06485192477703094, + 0.017459653317928314, + 0.005079536698758602, + 0.06237134709954262, + 0.009970839135348797, + 0.07721470296382904, + 0.05058210343122482, + 0.01671815849840641, + 0.012747127562761307, + 0.055799342691898346, + -0.012464328669011593, + 0.050380878150463104, + -0.11740084737539291, + -0.058604512363672256, + 0.08010723441839218, + -0.03868614509701729, + 0.05081050470471382, + -0.04260798543691635, + 0.06439639627933502, + -0.028742710128426552, + 0.015224377624690533, + 0.0037865438498556614, + -0.10319988429546356, + -0.12108948081731796, + -0.0803007036447525, + -0.03922657296061516, + 0.013133428059518337, + -0.005513262469321489, + -0.015901973471045494, + -0.014536377973854542, + -0.047126706689596176, + 0.0789019912481308, + 0.03644304722547531, + -0.005433980841189623, + 0.009382037445902824, + 0.025246676057577133, + 0.056557971984148026, + -0.004326303955167532, + -0.058823466300964355, + -0.028500329703092575, + 0.07804065197706223, + 0.10543910413980484, + -0.009829515591263771, + -0.004720301367342472, + -0.05960109829902649, + -0.01932412199676037, + 0.012131921015679836, + -0.02507554180920124, + 0.01606409251689911, + 0.019906556233763695, + -0.09048571437597275, + -0.12455322593450546, + -0.10092815011739731, + -0.08300361782312393, + -0.02339891530573368, + 0.05184774473309517, + 0.026595478877425194, + -0.11076255142688751, + -0.07759808748960495, + -0.024358399212360382, + 0.03709663078188896, + 0.02915128879249096, + 0.00809791125357151, + 0.0223341453820467, + -0.0388638861477375, + -0.07718177139759064, + 0.04651759937405586, + 0.0799604058265686, + 0.027841130271553993, + -0.0011010410962626338, + 0.1311267912387848, + -0.05852454528212547, + 0.07591789960861206, + -0.015215386636555195, + 0.015345901250839233, + 0.056543271988630295, + 0.030248910188674927, + -0.02591344714164734, + -0.01655094511806965, + 0.014722177758812904, + -0.03575373813509941, + -0.01235591247677803, + -0.034916799515485764, + -0.019012974575161934, + -0.009107857942581177, + -0.044867921620607376, + 0.0014245238853618503, + -0.039328593760728836, + 0.045675721019506454, + 0.03319752588868141, + -0.0171913243830204, + 0.026439916342496872, + -0.04446140304207802, + -0.03646954894065857, + -0.028016723692417145, + -0.07543502002954483, + -0.0535186231136322, + 0.051218558102846146, + -1.4267058506231607e-33, + 0.02704152837395668, + 0.14136618375778198, + -0.006535274442285299, + 0.07015763223171234, + -0.015273040160536766, + 0.022593380883336067, + -0.07567741721868515, + -0.047758180648088455, + -0.0989975780248642, + 0.03138858079910278, + 0.11132945865392685, + 0.07263626158237457, + 0.03268469125032425, + 0.06564037501811981, + -0.02175665646791458, + 0.05342305079102516, + 0.00500578572973609, + -0.05424116179347038, + -0.05688668042421341, + 0.03646903485059738, + 0.01417310256510973, + -0.03427201882004738, + -0.05157278850674629, + -0.0029096074867993593, + -0.044452156871557236, + 0.000693535606842488, + 0.045966021716594696, + 0.11565064638853073, + -0.0255308635532856, + -0.007960643619298935, + 0.013483132235705853, + -0.006065051071345806, + 0.0972544252872467, + 0.05656970664858818, + 0.007661672309041023, + -0.0026177335530519485, + -0.026962246745824814, + -0.06096528097987175, + -0.012612361460924149, + -0.031012149527668953, + 0.06323366612195969, + 0.008369913324713707, + -0.041618410497903824, + -0.04859485477209091, + 0.02231895923614502, + 0.14296430349349976, + -0.0198639165610075, + 0.015469864010810852, + 0.12817662954330444, + -0.014638079330325127, + -0.0126430569216609, + 0.009064137004315853, + -0.040116071701049805, + 0.00044675770914182067, + -0.09478197246789932, + -0.06560252606868744, + -0.0325784794986248, + 0.08270731568336487, + 0.003482251660898328, + -0.05380475893616676, + 0.04971236363053322, + -0.005932325962930918, + 0.06349760293960571, + 0.004052074626088142, + -0.06856595724821091, + 0.048680901527404785, + -0.06697119772434235, + 0.005199178587645292, + 0.12476839125156403, + -0.003171977587044239, + 0.009456370957195759, + 0.08729115128517151, + -0.011162718757987022, + 0.05273223668336868, + -0.010204118676483631, + -0.039470233023166656, + -0.027312105521559715, + 0.03395547717809677, + -0.004206706769764423, + -0.0201584342867136, + -0.0640144795179367, + 0.041426993906497955, + -0.04878527671098709, + 0.08605609834194183, + 0.07850420475006104, + -0.0031201611272990704, + 0.00596994161605835, + -0.05038735270500183, + -0.047362007200717926, + 0.046358946710824966, + -0.02007153257727623, + 0.02713922969996929, + -0.048090435564517975, + -0.002774470020085573, + -0.052263643592596054, + -9.997038542671185e-34, + 0.06185724586248398, + -0.009117882698774338, + 0.026224015280604362, + 0.05136638134717941, + -0.023321717977523804, + -0.035813312977552414, + -0.03055834211409092, + 0.0707683190703392, + -0.012360590510070324, + 0.030342556536197662, + 0.08723326772451401, + -0.021949974820017815, + -0.04228053241968155, + -0.039246153086423874, + -0.011159594170749187, + -0.042408112436532974, + 0.008353219367563725, + 0.035640645772218704, + -0.03589494526386261, + 0.034776199609041214, + -0.018018953502178192, + 0.01858251541852951, + -0.056588005274534225, + 0.08750136196613312, + -0.026906251907348633, + -0.002032391494140029, + -0.029364801943302155, + -0.002138157607987523, + -0.05438730865716934, + 0.023515742272138596, + 0.027871375903487206, + 0.07859238237142563, + -0.004067783243954182, + 0.0033566115889698267, + 0.018632180988788605, + -0.040760308504104614, + 0.06739633530378342, + -0.013240025378763676, + 0.03158344700932503, + 0.044612761586904526, + 0.026024105027318, + 0.030752982944250107, + 0.009676974266767502, + 0.014344851486384869, + 0.0011491698678582907, + -0.005841047037392855, + 0.01709030382335186, + 0.013760069385170937, + -0.06807126104831696, + 0.0794445350766182, + 0.08388318121433258, + -0.05929911509156227, + 0.006869562901556492, + -0.0006217836053110659, + -0.020292330533266068, + 0.030167987570166588, + 0.05945461243391037, + 0.030556295067071915, + 0.027765924111008644, + 0.07101131230592728, + -0.029334666207432747, + 0.05021874979138374, + 0.00972086749970913, + -0.03218480944633484, + 0.0353352390229702, + -0.06562105566263199, + 0.014407428912818432, + -0.024088280275464058, + 0.01606501266360283, + 0.03754100576043129, + 0.006978864781558514, + -0.025979623198509216, + -0.0964948832988739, + 0.046215809881687164, + 0.040986429899930954, + -0.07800943404436111, + 0.019064290449023247, + -0.02182215452194214, + 0.0025283917784690857, + -0.017241979017853737, + -0.08283144980669022, + -0.0035978294909000397, + -0.018947970122098923, + 0.11171749979257584, + -0.03278092294931412, + 0.0067657651379704475, + -0.04851089045405388, + -0.01567653939127922, + -0.05224897712469101, + 0.029931318014860153, + 0.005387764424085617, + 0.052862584590911865, + 0.013238992542028427, + -0.046681053936481476, + -0.08639930188655853, + -1.9401868556201407e-08, + -0.061620332300662994, + -0.00826546922326088, + -0.03504093363881111, + -0.04659157618880272, + 0.029035218060016632, + -0.0313531868159771, + -0.01527385599911213, + -0.11257120966911316, + 0.003348172642290592, + -0.08177631348371506, + 0.03805882856249809, + -0.06218073517084122, + -0.09294057637453079, + -0.1024586632847786, + -0.01901617832481861, + -0.06882055848836899, + -0.08912195265293121, + 0.020442241802811623, + -0.09054232388734818, + -0.0718710869550705, + -0.059497907757759094, + 0.06323778629302979, + 0.004409292247146368, + -0.04929840564727783, + 0.05176009610295296, + -0.04380878061056137, + 0.02788423001766205, + 0.0877128541469574, + -0.02106368914246559, + 0.0013425853103399277, + 0.02107386291027069, + 0.03336026147007942, + 0.09674989432096481, + -0.0473346933722496, + -0.04917021095752716, + -0.0014385479735210538, + 0.06475475430488586, + -0.011109676212072372, + 0.04260370880365372, + 0.12087695300579071, + -0.03910692781209946, + 0.020319446921348572, + -0.06860079616308212, + -0.03470367193222046, + -0.04801282286643982, + 0.011993847787380219, + 0.054278962314128876, + -0.012525119818747044, + -0.07849311828613281, + -0.10484296083450317, + 0.036743175238370895, + -0.04444942995905876, + 0.042987801134586334, + 0.01617743819952011, + -0.10086726397275925, + -0.03704962506890297, + 0.012390397489070892, + 0.10986848920583725, + 0.08970319479703903, + -0.013628654181957245, + 0.13290533423423767, + -0.04890039563179016, + 0.027851711958646774, + -0.0369851216673851 + ], + "signpost-bold||direction,traffic,road sign,transit,transportation": [ + 0.07095851749181747, + -0.06355307996273041, + 0.029420100152492523, + 0.030397959053516388, + 0.02082831785082817, + -0.02381632849574089, + 0.03232864663004875, + -0.03310798481106758, + -0.06847546994686127, + -0.03751486539840698, + 0.03399377688765526, + 0.008313632570207119, + 0.03516474366188049, + 0.030408630147576332, + -0.01295100525021553, + 0.02901645563542843, + 0.049074213951826096, + 0.023389296606183052, + 0.02070213295519352, + 0.009797082282602787, + 0.014398504979908466, + 0.04099411889910698, + 0.0018032537773251534, + 0.05298015847802162, + 0.02664216049015522, + 0.014836679212749004, + 0.05894697830080986, + 0.002024715533480048, + -0.010431813076138496, + -0.03552867844700813, + -0.07692058384418488, + 0.015380016528069973, + 0.013331389054656029, + 0.04669235274195671, + -0.0187942273914814, + -0.014324643649160862, + 0.05317946895956993, + -0.017100056633353233, + 0.07272675633430481, + 0.005595415830612183, + 0.0007351988460868597, + -0.10428735613822937, + -0.01918170228600502, + 0.023536529392004013, + 0.01400263886898756, + 0.03376581147313118, + 0.015486364252865314, + 0.021648326888680458, + 0.03930176794528961, + -0.037528734654188156, + 0.019286049529910088, + -0.08539588004350662, + -0.0788436084985733, + 0.04546833783388138, + -0.02491592988371849, + -0.023655345663428307, + -0.07328026741743088, + -0.02016725018620491, + 0.035634297877550125, + -0.005668067838996649, + 0.027662431821227074, + 0.04003146290779114, + -0.007686540950089693, + 0.046042997390031815, + 0.07285256683826447, + -0.021574871614575386, + -0.03554746136069298, + 0.008749310858547688, + -0.02906128205358982, + 0.05815306678414345, + 0.004234436899423599, + -0.013256541453301907, + -0.008571210317313671, + -0.05155041441321373, + 0.023977283388376236, + -0.007800025399774313, + 0.041227422654628754, + 0.016600988805294037, + -0.0393122062087059, + -0.1336469203233719, + -0.06260120868682861, + -0.02740309201180935, + -0.0573941208422184, + 0.017871849238872528, + 0.05724821984767914, + 0.030086861923336983, + -0.07908474653959274, + -0.02162967622280121, + 0.01032212469726801, + 0.0036210056859999895, + -0.05832361802458763, + -0.04267013072967529, + 0.028094831854104996, + -0.024175504222512245, + -0.1030384972691536, + 0.007134911138564348, + -0.004419103730469942, + 0.004301511216908693, + -0.01753578707575798, + 0.07561741769313812, + 0.049339864403009415, + 0.07599496841430664, + 0.03395065292716026, + 0.01445033960044384, + 0.005484799854457378, + -0.031945619732141495, + -0.029730182141065598, + -0.022290794178843498, + 0.029719186946749687, + 0.02117539569735527, + 0.014657975174486637, + -0.03678571805357933, + -0.04901173338294029, + -0.050681665539741516, + -0.03468824550509453, + 0.009422694332897663, + -0.03605245426297188, + 0.016172289848327637, + 0.09909222275018692, + -0.023617073893547058, + -0.09564529359340668, + -0.056351907551288605, + -0.009171662852168083, + -0.03540574014186859, + 0.019402790814638138, + -0.07246551662683487, + 0.008661887608468533, + -4.1604029112943365e-33, + 0.011420531198382378, + 0.06144491955637932, + 0.07781735062599182, + 0.0992000624537468, + 0.029804034158587456, + -0.026842260733246803, + -0.10524000227451324, + -0.04350022226572037, + -0.030139917507767677, + 0.03501075133681297, + 0.08168536424636841, + 0.061853911727666855, + 0.042122021317481995, + 0.08845150470733643, + 0.05950452759861946, + -0.02468201331794262, + -0.01295626349747181, + -0.056150034070014954, + -0.10148688405752182, + 0.01603720150887966, + -0.012665248475968838, + -0.012098800390958786, + -0.022990655153989792, + -0.020963331684470177, + -0.015789445489645004, + -0.04158259183168411, + 0.01331485714763403, + 0.0025975836906582117, + -0.028067799285054207, + 0.047993578016757965, + 0.008089479990303516, + 0.062243301421403885, + 0.014734985306859016, + 0.03738006204366684, + -0.0031167820561677217, + 0.02397366426885128, + -0.061113983392715454, + -0.08513016998767853, + -0.014240477234125137, + -0.0010111465817317367, + -0.06793539971113205, + -0.05403662472963333, + -0.09145314991474152, + -0.0021599673200398684, + 0.032386697828769684, + 0.15136544406414032, + 0.008987568318843842, + -0.05541154742240906, + 0.08138983696699142, + 0.039916593581438065, + -0.00900362804532051, + -0.014014680869877338, + -0.060127586126327515, + -0.04425336420536041, + -0.028080236166715622, + 0.014474360272288322, + -0.014337520115077496, + 0.06448359787464142, + -0.0005317237228155136, + -0.007070988416671753, + -0.04808672517538071, + 0.05760297551751137, + 0.07703665643930435, + -0.012840617448091507, + 0.009654030203819275, + 0.02520431950688362, + -0.0879373550415039, + 0.024166081100702286, + 0.06644832342863083, + -0.004506178665906191, + 0.01804673671722412, + 0.04130832105875015, + -0.031174853444099426, + 0.09035200625658035, + 0.02223336510360241, + 0.04433818534016609, + -0.08869506418704987, + -0.0019840060267597437, + 0.029987450689077377, + 0.019852567464113235, + -0.14942875504493713, + 0.0034812698140740395, + -0.0825144350528717, + 0.039808351546525955, + 0.1047264039516449, + -0.024803003296256065, + 0.033022597432136536, + -0.0903887152671814, + -0.033195968717336655, + -0.02719050832092762, + -0.08956321328878403, + 0.07933245599269867, + -0.0027156067080795765, + 0.00013195785868447274, + -0.0867566391825676, + 5.242003640654236e-34, + -0.020939365029335022, + 0.03381288796663284, + -0.09237456321716309, + -0.011041836813092232, + -0.09409094601869583, + -0.016139186918735504, + 0.031830597668886185, + -0.01468689925968647, + 0.08629629760980606, + 0.10014497488737106, + -0.041268058121204376, + -0.03140288591384888, + -0.029168875887989998, + -0.0050374954007565975, + -0.008806245401501656, + -0.050064895302057266, + 0.10105611383914948, + 0.06074690446257591, + -0.09204966574907303, + 0.032752566039562225, + -0.11564255505800247, + 0.04842076450586319, + -0.05813930183649063, + 0.06831259280443192, + -0.017615724354982376, + 0.037276510149240494, + 0.06331365555524826, + 0.005173488054424524, + -0.07882910221815109, + -0.02247031219303608, + -0.047634806483983994, + 0.05439118668437004, + 0.1230839341878891, + 0.005728180520236492, + -0.08711226284503937, + 0.03157729282975197, + 0.015501128509640694, + -0.05213209241628647, + 0.04500675946474075, + 0.006867770571261644, + 0.004044930916279554, + -0.009066596627235413, + 0.1259692758321762, + 0.0018034385284408927, + -0.048812150955200195, + -0.032509561628103256, + -0.08194124698638916, + 0.00884919986128807, + -0.002759306225925684, + 0.09839113801717758, + 0.07989855110645294, + 0.010075242258608341, + -0.029311779886484146, + 0.016040222719311714, + -0.012213516980409622, + 0.04366300627589226, + -0.011065525934100151, + -0.013595730997622013, + 0.06203971430659294, + 0.010634049773216248, + -0.02186955139040947, + 0.10373103618621826, + -0.0262118149548769, + 0.012100977823138237, + 0.061385467648506165, + -0.1193828135728836, + 0.017357882112264633, + -0.10308098047971725, + 0.023193158209323883, + -0.03623797371983528, + 0.09496096521615982, + 0.023462893441319466, + -0.04719587787985802, + 0.0020674148108810186, + 0.002566492883488536, + -0.03997267410159111, + 0.10880851745605469, + 0.12970097362995148, + -0.03483324125409126, + -0.00792714860290289, + -0.04365069046616554, + -0.05986672639846802, + -0.03554917126893997, + 0.09009746462106705, + -0.05159205198287964, + -0.010196143761277199, + -0.06794915348291397, + -0.04642476513981819, + 0.005766402930021286, + 0.026473499834537506, + -0.023969613015651703, + 0.05965537577867508, + -0.04814526066184044, + -0.01988655887544155, + -0.09990597516298294, + -1.9015770291730405e-08, + -0.016870327293872833, + -0.002169444691389799, + -0.04448828473687172, + 0.00213381415233016, + -0.018798278644680977, + 0.04852430149912834, + 0.050631437450647354, + -0.004063589498400688, + -0.054948627948760986, + 0.0073988898657262325, + 0.0036781542003154755, + 0.07586482912302017, + -0.10464607179164886, + -0.0006892927340231836, + -0.01311457995325327, + -0.03677136078476906, + -0.07701773196458817, + -0.04542362317442894, + -0.1050707995891571, + -0.0663420632481575, + -0.018189668655395508, + -0.013389334082603455, + -0.06072454899549484, + 0.013441678136587143, + 0.04871181398630142, + 0.02175900526344776, + 0.0303440373390913, + 0.06774765998125076, + 0.03428648039698601, + -0.030342811718583107, + 0.01593845523893833, + 0.04933099448680878, + -0.027959000319242477, + -0.061741940677165985, + -0.06293486058712006, + 0.010310261510312557, + 0.014840745367109776, + -0.0027494376990944147, + 0.048331473022699356, + 0.13754333555698395, + -0.020290417596697807, + -0.004134533926844597, + 0.00997998658567667, + -0.014807255938649178, + 0.028293218463659286, + 0.06839875131845474, + 0.002847703406587243, + 0.016199283301830292, + -0.0563211515545845, + -0.11057310551404953, + -0.05069584399461746, + -0.04363822564482689, + 0.052446555346250534, + 0.09780081361532211, + -0.00662014028057456, + -0.024309052154421806, + 0.027798693627119064, + 0.010141444392502308, + 0.01836656965315342, + 0.011226705275475979, + 0.14803442358970642, + 0.05778208374977112, + 0.0019251677440479398, + 0.0324055477976799 + ], + "sim-card-bold||*updated*,cellular,cellphone,mobile": [ + -0.03820068761706352, + 0.04573756456375122, + 0.00507734389975667, + -0.009182879701256752, + 0.0030183910857886076, + -0.04948674514889717, + 0.0758465975522995, + -0.026545077562332153, + 0.05934711918234825, + -0.006183549761772156, + 0.06403150409460068, + 0.029057370498776436, + 0.01652776449918747, + -0.09271058440208435, + 0.05519476160407066, + -0.04232404753565788, + 0.04482049122452736, + -0.01834748312830925, + -0.044235408306121826, + 0.020071957260370255, + 0.020894885063171387, + 0.04149981215596199, + -0.013017411343753338, + 0.0355832539498806, + 0.07984369993209839, + -0.038752295076847076, + -0.035466209053993225, + -0.004378451034426689, + 0.025866752490401268, + -0.030309809371829033, + -0.016580846160650253, + 0.09743490070104599, + 0.11862682551145554, + 0.019770514219999313, + 0.02049078792333603, + -0.07832380384206772, + -0.04345841705799103, + -0.03028400056064129, + 0.024661945179104805, + 0.04561764746904373, + 0.03622341528534889, + -0.04908682033419609, + -0.01893666572868824, + 0.10164840519428253, + -0.03265123441815376, + -0.00982504989951849, + -0.013419834896922112, + 0.033947598189115524, + -0.03465346619486809, + -0.01828107051551342, + 0.03294572979211807, + -0.03808341175317764, + -0.13225339353084564, + -0.017937051132321358, + -0.03710488975048065, + -0.0076763019897043705, + -0.04877285659313202, + 0.04744549095630646, + 0.09892918169498444, + 0.03313702344894409, + 0.048972778022289276, + 0.04292920604348183, + 0.06230829283595085, + 0.05331999436020851, + -0.0202755406498909, + -0.023154867812991142, + -0.01508933212608099, + -0.029854364693164825, + -0.0015281087253242731, + 0.00405897106975317, + 0.05388990044593811, + 0.014532065019011497, + -0.0029198681004345417, + 0.001571322325617075, + -0.06391268223524094, + 0.0592365525662899, + -0.005085585173219442, + 0.020894711837172508, + 0.03607761487364769, + -0.0356997512280941, + -0.031605932861566544, + -0.09792966395616531, + 0.018122665584087372, + -0.08448916673660278, + 0.1087651178240776, + -0.01766141876578331, + -0.0694345012307167, + 0.021862847730517387, + -0.06205803528428078, + -0.11909141391515732, + -0.025675170123577118, + 0.06520120799541473, + -0.010565879754722118, + 0.03277673199772835, + -0.16577090322971344, + 0.042123425751924515, + 0.00036287447437644005, + -0.06574906408786774, + -0.10615469515323639, + 0.10326845198869705, + 0.028421875089406967, + 0.09232578426599503, + 0.045205920934677124, + 0.06966395676136017, + -0.00857873260974884, + -0.01258005853742361, + 0.008253825828433037, + 0.01728612557053566, + 0.028041379526257515, + 0.03645811602473259, + -0.06762860715389252, + -0.08545148372650146, + -0.04792075976729393, + -0.06454131752252579, + -0.08362823724746704, + 0.027027592062950134, + -0.044887617230415344, + 0.0344015397131443, + 0.0994192510843277, + 0.03953317552804947, + -0.00979544222354889, + -0.09090977907180786, + -0.08923627436161041, + -0.05874354764819145, + -0.01516503281891346, + 0.003002720884978771, + 0.044604286551475525, + -2.431794571042999e-33, + 0.02003060281276703, + 0.07141654938459396, + -0.015256446786224842, + 0.10944929718971252, + 0.008010219782590866, + 0.017617234960198402, + 0.006437151227146387, + -0.1279357522726059, + -0.020934781059622765, + 0.07322815805673599, + 0.0532340481877327, + 0.05445440486073494, + -0.027215763926506042, + 0.09691160917282104, + 0.02525852434337139, + -0.06558378040790558, + -0.04233330115675926, + -0.03344380110502243, + 0.009356335736811161, + 0.03739745914936066, + -0.011928627267479897, + 0.01063584629446268, + -0.03383243456482887, + -0.0665375143289566, + 0.03477584198117256, + 0.037936821579933167, + 0.006757634226232767, + -0.04465289041399956, + 0.04556473344564438, + 0.012638342566788197, + 0.06743477284908295, + 0.022127587348222733, + 0.04114909842610359, + -0.024671440944075584, + -0.025950726121664047, + 0.03570566326379776, + -0.0391668938100338, + -0.05502663552761078, + -0.09497582167387009, + -0.000846628041472286, + -0.09181874245405197, + -0.007802982814610004, + -0.07730600237846375, + -0.07401088625192642, + 0.04857837036252022, + 0.07290039956569672, + -0.03889919072389603, + -0.0775715634226799, + 0.03605850040912628, + 0.03196260705590248, + -0.044760964810848236, + -0.011393613182008266, + -0.029643462970852852, + -0.08334869146347046, + -0.02024957351386547, + 0.007986471056938171, + -0.009269538335502148, + 0.06753648817539215, + 0.010470598004758358, + -0.03179989010095596, + 0.011423819698393345, + -0.09081228822469711, + -0.044890910387039185, + -0.02248271554708481, + -0.04700842499732971, + 0.02374010905623436, + -0.05450214818120003, + -0.05040087550878525, + 0.03665776550769806, + 0.08477657288312912, + 0.023227762430906296, + 0.04547775909304619, + 0.045582760125398636, + 0.05234023556113243, + -0.045466966927051544, + 0.04712036997079849, + -0.057332322001457214, + 0.02848867140710354, + -0.06030067801475525, + -0.026872068643569946, + -0.04073508083820343, + -0.008135768584907055, + -0.08278432488441467, + 0.09199424088001251, + 0.03558845818042755, + 0.030062375590205193, + -0.010919589549303055, + -0.03631998971104622, + -0.028181761503219604, + 0.13662345707416534, + -0.07264392822980881, + 0.04456913098692894, + -0.006220890674740076, + -0.012676472775638103, + -0.06478812545537949, + -1.4783759905105006e-33, + -0.05580907315015793, + 0.03854264318943024, + -0.04186620935797691, + -0.056991416960954666, + -0.045424290001392365, + -0.009314598515629768, + 0.051343340426683426, + 0.09072065353393555, + -0.012640288099646568, + -0.060092225670814514, + 0.027058331295847893, + 0.006650324445217848, + -0.028930367901921272, + -0.019999271258711815, + -0.008264748379588127, + 0.04691575840115547, + 0.01586364395916462, + -0.008336568251252174, + -0.011808904819190502, + 0.09345699846744537, + -0.0927596464753151, + -0.04334235191345215, + -0.04966481775045395, + 0.14388471841812134, + 0.0506880097091198, + 0.003348399419337511, + -0.028859594836831093, + -0.005764397792518139, + -0.0016875154105946422, + -0.11512572318315506, + -0.05828488618135452, + -0.07255997508764267, + 0.029764829203486443, + 0.06929682940244675, + 0.013073000125586987, + 0.053237028419971466, + 0.062376443296670914, + 0.007976524531841278, + 0.03555850312113762, + 0.022865720093250275, + 0.014863422140479088, + 0.004820202011615038, + 0.00019632749899756163, + 0.05615786835551262, + -0.014663935638964176, + -0.02367238700389862, + -0.007245373912155628, + -0.07498890161514282, + -0.07581944018602371, + 0.020418280735611916, + 0.07145926356315613, + -0.04493667930364609, + -0.0216669924557209, + 0.038968686014413834, + -0.015397044830024242, + -0.0015732190804556012, + 0.014847679063677788, + -0.0053946226835250854, + -0.03595004975795746, + 0.016811558976769447, + 0.04416690394282341, + 0.010738572105765343, + -0.033073540776968, + -0.016512256115674973, + 0.01313558779656887, + -0.047408781945705414, + 0.014020739123225212, + -0.07158065587282181, + 0.07362757623195648, + -0.009065129794180393, + 0.01752103492617607, + -0.021659960970282555, + -0.06734957545995712, + 0.01671488769352436, + 0.001747204689309001, + -0.10085087269544601, + -0.03638748452067375, + 0.022005528211593628, + -0.029378321021795273, + 0.014259054325520992, + 0.0173051655292511, + 0.006294335704296827, + -0.03115147165954113, + 0.026635726913809776, + -0.03767376020550728, + 0.051916640251874924, + 0.050883688032627106, + 0.005764148663729429, + -0.0335998572409153, + -0.07005035877227783, + -0.10223621875047684, + 0.022022923454642296, + -0.05481221526861191, + 0.06229795143008232, + -0.1074877679347992, + -2.150902389530529e-08, + 0.030851861461997032, + -0.0309139471501112, + -0.036049749702215195, + -0.041579194366931915, + 0.0196103323251009, + -0.060872964560985565, + -0.04617549106478691, + -0.0672995001077652, + 0.011381502263247967, + -0.07640692591667175, + 0.04140365496277809, + 0.0029627985786646605, + -0.06519129127264023, + 0.029065074399113655, + 0.09586052596569061, + 0.05378009006381035, + -0.04674428328871727, + 0.043732695281505585, + -0.001317403744906187, + 0.010913296602666378, + -0.017196377739310265, + 0.09389451146125793, + 0.024042023345828056, + -0.03664543107151985, + 0.05514362081885338, + 0.0418713204562664, + 0.0012977224541828036, + 0.028210729360580444, + 0.08878667652606964, + 0.047090012580156326, + 0.06175011023879051, + 0.01621713675558567, + 0.03231706842780113, + -0.024374568834900856, + -0.10409722477197647, + -0.021014656871557236, + 0.020847385749220848, + -0.02493571676313877, + 0.08557641506195068, + 0.08080573379993439, + 0.043470464646816254, + -0.04799598082900047, + -0.01876930519938469, + -0.019143082201480865, + 0.024569861590862274, + -0.05048823729157448, + 0.026932677254080772, + -0.04254833981394768, + -0.05713140219449997, + -0.08420723676681519, + -0.05329528823494911, + -0.01961602084338665, + -0.01103066187351942, + 0.007349388208240271, + -0.011815652251243591, + -0.0999920442700386, + 0.03619696944952011, + 0.05744057893753052, + 0.005748586263507605, + 0.010139931924641132, + 0.11544002592563629, + 0.0016768939094617963, + -0.001837585587054491, + -0.008153482340276241 + ], + "siren-bold||alarm,police,lights,warning": [ + 0.056180208921432495, + 0.039320118725299835, + -0.0033855673391371965, + 0.0227360762655735, + 0.1178516149520874, + 0.011443249881267548, + 0.11530425399541855, + -0.016817530617117882, + -0.007827789522707462, + -0.05108156055212021, + 0.057690687477588654, + -0.0537857860326767, + 0.0470174141228199, + -0.019890516996383667, + -0.031025288626551628, + 0.05365518480539322, + 0.07252247631549835, + -0.042773548513650894, + 0.010535202920436859, + -0.008634388446807861, + 0.07012876868247986, + 0.05884653702378273, + 0.059966981410980225, + 0.04932568967342377, + -0.05510416626930237, + 0.04567369818687439, + 0.012538614682853222, + 0.028152242302894592, + -0.06050989404320717, + -0.061501774936914444, + -0.02515941672027111, + -0.013113225810229778, + 0.10018298774957657, + -0.010782412253320217, + 0.03274812921881676, + -0.03402043879032135, + 0.0796738862991333, + 0.005102618131786585, + 0.02968895062804222, + 0.024027032777667046, + 0.033101316541433334, + -0.052383922040462494, + -0.03985185548663139, + 0.019628183916211128, + -0.07510797679424286, + -0.01754309982061386, + -0.03182222321629524, + -0.05321401730179787, + -0.0033654533326625824, + -0.0658835917711258, + 0.03921942785382271, + -0.01625770516693592, + -0.027775511145591736, + 0.00034606625558808446, + 0.03149980679154396, + 0.014847141690552235, + -0.043091535568237305, + 0.04954499006271362, + 0.09225672483444214, + -0.021952299401164055, + 0.012196406722068787, + 0.048468783497810364, + 0.03318152204155922, + 0.036010198295116425, + 0.013070032931864262, + -0.03237173706293106, + -0.06030330806970596, + 0.049190424382686615, + 0.05541768670082092, + 0.0679408386349678, + 0.0068511865101754665, + 0.0019108683336526155, + 0.06922677904367447, + -0.02189774252474308, + -0.06024467200040817, + 0.05890805274248123, + 0.07581119239330292, + -0.0442943312227726, + -0.06474409252405167, + -0.0681932345032692, + -0.10195256769657135, + -0.09253860265016556, + -0.03276377171278, + -0.046785589307546616, + 0.06327923387289047, + 0.02588057518005371, + -0.09790992736816406, + -0.024267496541142464, + -0.03053075633943081, + -0.016831332817673683, + -0.04530685395002365, + -0.11445988714694977, + 0.021586576476693153, + 0.04880866780877113, + -0.04177547246217728, + -0.01867816597223282, + 0.01591646298766136, + -0.07272250205278397, + -0.054165806621313095, + 0.06499605625867844, + 0.0054472144693136215, + -0.010803747922182083, + -0.03388591855764389, + 0.000590822019148618, + -0.015265804715454578, + -0.04953546077013016, + -0.08037084341049194, + 0.026816310361027718, + 0.0021186545491218567, + -0.0032481078524142504, + 0.04328353330492973, + -0.05783005803823471, + 0.010248955339193344, + -0.008620614185929298, + 0.012607631273567677, + -0.027492599561810493, + -0.1107746884226799, + 0.0005131854559294879, + 0.04817519709467888, + 0.07380907982587814, + 0.09245941787958145, + -0.05634354054927826, + -0.024022869765758514, + -0.009290710091590881, + 0.07467769086360931, + 0.06945648044347763, + 0.030560454353690147, + -2.3251834782371564e-33, + 0.013545487076044083, + 0.09059083461761475, + -0.06025665998458862, + 0.0521061010658741, + 0.06925889104604721, + -0.010997507721185684, + -0.05284377560019493, + 0.006624153815209866, + -0.07457049190998077, + 0.07634502649307251, + 0.004475296009331942, + 0.08203078806400299, + -0.025179719552397728, + -0.022322284057736397, + 0.0076446533203125, + -0.009485811926424503, + 0.031013160943984985, + -0.015067088417708874, + -0.06992068141698837, + -0.03522737696766853, + -0.038397420197725296, + 0.03831307217478752, + -0.04421849176287651, + -0.03023630380630493, + 0.0304414089769125, + -0.004160215146839619, + 0.012635734863579273, + 0.017128078266978264, + 0.04743243008852005, + 0.02123231068253517, + 0.028112292289733887, + 0.06062204763293266, + 0.0878138393163681, + 0.053163886070251465, + 0.0583324171602726, + 0.04808954894542694, + -0.07686656713485718, + -0.020756427198648453, + -0.08945868164300919, + -0.0592709444463253, + -0.04209290072321892, + -0.05159362033009529, + -0.04276374354958534, + 0.01100131031125784, + 0.07086902856826782, + 0.029923420399427414, + -0.024928228929638863, + 0.013531730510294437, + 0.0072083198465406895, + -0.013221648521721363, + 0.012845930643379688, + -0.03651920706033707, + 0.004044366534799337, + 0.040367428213357925, + -0.02861011028289795, + 0.04875564947724342, + 0.027484726160764694, + -0.026426922529935837, + 0.013553750701248646, + -0.0660179853439331, + -0.03616964817047119, + 0.004519125912338495, + 0.07884171605110168, + -0.10378007590770721, + 0.04993753880262375, + 0.0008201004820875823, + 0.010105550289154053, + 0.03258144482970238, + 0.0878153145313263, + -0.04402552917599678, + -0.016751060262322426, + 0.03286755457520485, + 0.05613265931606293, + 0.09428698569536209, + -0.0277462899684906, + 0.025494089350104332, + -0.015843868255615234, + 0.004913820885121822, + 0.011707566678524017, + -0.07020758837461472, + -0.0891864150762558, + -0.0052159447222948074, + -0.05669306963682175, + 0.0797024518251419, + 0.12384098768234253, + -0.02005109004676342, + -0.050604358315467834, + -0.07853364944458008, + -0.11889331042766571, + 0.13520413637161255, + -0.05144142359495163, + -0.004442180041223764, + -0.005624540150165558, + 0.00015166591037996113, + -0.09545065462589264, + 4.9708910214939415e-34, + 0.06410913914442062, + 0.02616303414106369, + -0.06776735186576843, + -0.07324078679084778, + -0.028040986508131027, + -0.00379754020832479, + 0.022372672334313393, + 0.006022814195603132, + -0.030082330107688904, + -0.0020229434594511986, + -0.03335603326559067, + -0.03659491240978241, + -0.020258046686649323, + 0.01155276782810688, + 0.00973927415907383, + 0.005819808691740036, + 0.07691080868244171, + 0.07735037803649902, + -0.005350935738533735, + 0.03738239407539368, + -0.05493671074509621, + -0.03004094585776329, + -0.0997033640742302, + 0.0765041783452034, + -0.050928182899951935, + 0.039246782660484314, + 0.04267299547791481, + 0.03424800559878349, + -0.04334171116352081, + -0.0766633078455925, + -0.07821078598499298, + -0.028102556243538857, + 0.025625595822930336, + 0.045296810567379, + -0.022238846868276596, + -0.0017215172993019223, + 0.06849915534257889, + -0.042436860501766205, + -0.016946008428931236, + -0.013379980809986591, + -0.03958888351917267, + 0.08321669697761536, + 0.014213970862329006, + 0.004447590559720993, + -0.08845953643321991, + 0.017033791169524193, + 0.032119523733854294, + 0.010293935425579548, + -0.10226515680551529, + 0.04837465658783913, + 0.03720179945230484, + -0.09163092821836472, + -0.025547925382852554, + 0.06794562190771103, + -0.06858506053686142, + -0.017774490639567375, + 0.003636075183749199, + -0.01731359213590622, + -0.03563348576426506, + 0.06842803955078125, + 0.07314126193523407, + 0.04084639251232147, + -0.017857853323221207, + 0.04522612318396568, + 0.0033033834770321846, + -0.05657732114195824, + -0.016731131821870804, + 0.0072294422425329685, + 0.03973405808210373, + 0.007159891072660685, + 0.13044705986976624, + -0.015668606385588646, + -0.033446576446294785, + 0.03092922829091549, + -0.025470348075032234, + -0.10594477504491806, + -0.0510067455470562, + -0.03298451378941536, + -0.0764092430472374, + 0.0033568108920007944, + -0.021644342690706253, + -0.04419109597802162, + -0.0372181311249733, + 0.09246338158845901, + -0.04180030897259712, + -0.0022782711312174797, + 0.1027972623705864, + 0.09990981221199036, + -0.005615906324237585, + 0.041117411106824875, + -0.06874417513608932, + 0.11181846261024475, + 0.023156825453042984, + 0.033774882555007935, + -0.032005876302719116, + -1.6207064135187466e-08, + 0.016443219035863876, + -0.0268502626568079, + -0.021191751584410667, + -0.09231890738010406, + 0.09162238985300064, + -0.010371784679591656, + -0.02208079770207405, + -0.11201445758342743, + -0.09599059820175171, + -0.07792467623949051, + 0.0028999855276197195, + -0.02575049363076687, + -0.03382887318730354, + -0.026152733713388443, + 0.005476912949234247, + -0.012371713295578957, + -0.04085475951433182, + -0.02028430812060833, + -0.06097166985273361, + -0.0707821473479271, + -0.05670493096113205, + 0.07161001861095428, + -0.05574233829975128, + -0.0332629568874836, + 0.10264251381158829, + 0.03288964554667473, + -0.028114862740039825, + 0.002378907985985279, + 0.045515671372413635, + 0.10834693908691406, + 0.021563174203038216, + 0.025092177093029022, + -0.00560436025261879, + 0.007291949354112148, + -0.06552799791097641, + 0.03333934396505356, + 0.018634410575032234, + -0.031651291996240616, + 0.06188831105828285, + 0.011166990734636784, + 0.04338017851114273, + -0.022229084745049477, + -0.013733399100601673, + 0.014363674446940422, + 0.00038047958514653146, + -0.003701644716784358, + 0.04459526389837265, + -0.09779705852270126, + -0.034720588475465775, + -0.0029683068860322237, + -0.0031467857770621777, + -0.021722067147493362, + -0.053177107125520706, + 0.07057873904705048, + -0.03282641991972923, + -0.01880280300974846, + 0.033432912081480026, + 0.03195396065711975, + -0.05097451061010361, + 0.04587116092443466, + 0.12297887355089188, + -0.022088954225182533, + 0.05770934745669365, + -0.012539630755782127 + ], + "sketch-logo-bold||drawing,art,illustration,ui,interface,prototype,prototyping,gemstone,diamond": [ + -0.020137427374720573, + 0.0003051683306694031, + -0.052268970757722855, + -0.032758358865976334, + 0.03491770848631859, + -0.019987935200333595, + 0.05296744033694267, + -0.012400967068970203, + -0.026714032515883446, + 0.009267640300095081, + -0.015259914100170135, + 0.014211492612957954, + 0.05138799920678139, + 0.002648879773914814, + 0.03562318906188011, + 0.028865685686469078, + 0.0212041474878788, + -0.02355985715985298, + 0.04865778610110283, + 0.010206467472016811, + 0.06815959513187408, + -0.04694933071732521, + 0.013438345864415169, + 0.008521316573023796, + 0.06922546029090881, + 0.06233503296971321, + 0.07490155100822449, + -0.011433804407715797, + 0.04822726175189018, + -0.12179498374462128, + -0.0321291945874691, + 0.06978293508291245, + 0.10066767781972885, + 0.019119253382086754, + 0.03446264937520027, + -0.03036234714090824, + -0.009204324334859848, + 0.060682352632284164, + -0.005347509402781725, + 0.0162533950060606, + -0.0418972373008728, + -0.05047107860445976, + -0.050282105803489685, + 0.03301512449979782, + 0.02471410296857357, + -0.029246404767036438, + -0.05483268201351166, + 0.008662894368171692, + -0.020315831527113914, + 0.038049761205911636, + -0.01973792351782322, + -0.12167267501354218, + -0.11447751522064209, + -0.07465504109859467, + 0.027533983811736107, + -0.03275103121995926, + 0.0007879183394834399, + -0.03977731615304947, + 0.07679986953735352, + -0.049177587032318115, + 0.024218320846557617, + 0.04824909195303917, + 0.03651956096291542, + 0.040886059403419495, + 0.04973025992512703, + -0.03614049777388573, + -0.04194638878107071, + 0.04054945707321167, + -0.0034768604673445225, + -0.020543932914733887, + 0.06631577759981155, + -0.01334831491112709, + -0.021960033103823662, + -0.01792796328663826, + 0.03546762466430664, + -0.010456396266818047, + 0.07044356316328049, + 0.002435314701870084, + -0.054803863167762756, + -0.12718091905117035, + -0.11678783595561981, + 0.02916858159005642, + -0.0322483666241169, + 0.04764921963214874, + 0.00037913350388407707, + 0.11107098311185837, + -0.06981337815523148, + -0.012997651472687721, + -0.009171897545456886, + 0.02459825575351715, + -0.09853179007768631, + 0.006638078019022942, + -0.005392652004957199, + 0.006938741076737642, + -0.05861387029290199, + -0.018308822065591812, + 0.0885087251663208, + -0.0783504918217659, + -0.08818869292736053, + 0.0895397737622261, + 0.022533120587468147, + -0.00816105306148529, + 0.10900306701660156, + -0.03387404978275299, + 0.014107177034020424, + -0.010951042175292969, + 0.00959097035229206, + -0.05464412271976471, + 0.020499158650636673, + 0.06693094223737717, + 0.030296672135591507, + -0.07068417966365814, + -0.07510760426521301, + -0.03410157933831215, + -0.01579056866466999, + -0.0710371807217598, + -0.05377403646707535, + -0.019153891131281853, + 0.16583503782749176, + 0.055638235062360764, + 0.011148471385240555, + 0.07216575741767883, + -0.009648916311562061, + -0.061655256897211075, + -0.0707801878452301, + -0.0009172348654828966, + -0.03216663375496864, + -2.6664921200892462e-33, + 0.05806539207696915, + 0.07922756671905518, + -0.04658449441194534, + 0.12255425751209259, + 0.023303687572479248, + -0.0224326029419899, + -0.030380625277757645, + -0.05469854548573494, + -0.048168331384658813, + 0.0479184053838253, + 0.03807374835014343, + 0.07007603347301483, + -0.03520845249295235, + 0.15370501577854156, + 0.043227747082710266, + -0.04039060324430466, + -0.007297557778656483, + -0.03954068943858147, + -0.07555648684501648, + -0.000627057917881757, + -0.06978308409452438, + -0.014483851380646229, + -0.06551503390073776, + 0.028480421751737595, + -0.00812024436891079, + 0.029225504025816917, + 0.024256987497210503, + -0.005208965390920639, + -0.057995110750198364, + 0.015613816678524017, + 0.059243299067020416, + 0.0826721265912056, + 0.08549296855926514, + -0.009792666882276535, + -0.0618797242641449, + -0.028872698545455933, + -0.02320086397230625, + -0.05315672978758812, + 0.05201876163482666, + -0.022925911471247673, + -0.0551331453025341, + -0.07244791090488434, + -0.036771442741155624, + 0.026325425133109093, + 0.07381897419691086, + 0.07875856757164001, + -0.02239154651761055, + -0.017355667427182198, + 0.027036750689148903, + 0.036185190081596375, + -0.029460199177265167, + -0.007771120872348547, + 0.06946157664060593, + 0.01291234977543354, + -0.02633572556078434, + -0.12585541605949402, + -0.047994326800107956, + 0.027989711612462997, + 0.01663697510957718, + -0.01672297902405262, + 0.009585175663232803, + 0.059227801859378815, + -0.024540692567825317, + 0.05086834356188774, + -0.05869080126285553, + 0.11651787906885147, + -0.012860530987381935, + 0.029354684054851532, + 0.030314212664961815, + -0.028834497556090355, + -0.061250537633895874, + 0.04290902242064476, + 0.10925041884183884, + 0.015085668303072453, + -0.08758760988712311, + -0.02199702337384224, + -0.004621012602001429, + -0.006067238748073578, + -0.045489635318517685, + 0.016815081238746643, + -0.11715463548898697, + -0.01812463253736496, + -0.08840969949960709, + -0.025486845523118973, + -0.016450287774205208, + 0.03636404126882553, + 0.0888781026005745, + -0.0758754163980484, + -0.00918506644666195, + 0.028298133984208107, + -0.12061000615358353, + 0.002585433889180422, + 0.016274742782115936, + 0.004149369429796934, + -0.10317013412714005, + 1.1906244324853089e-33, + 0.03947916254401207, + 0.024046773090958595, + 0.027874412015080452, + 0.023234475404024124, + 0.01878034882247448, + -0.02437400072813034, + 0.056569915264844894, + -0.020656393840909004, + -0.022693414241075516, + 0.016122037544846535, + 0.05184636637568474, + -0.015430227853357792, + -0.06659761071205139, + -0.06367222964763641, + 0.015140186995267868, + -0.0002650935493875295, + 0.026714306324720383, + 0.027905087918043137, + -0.01267322525382042, + 0.03228359296917915, + -0.05224204435944557, + -0.001202455605380237, + -0.10444828867912292, + 0.020251203328371048, + -0.05349140241742134, + 0.06604189425706863, + 0.0004549417062662542, + -0.02728228271007538, + -0.02295294590294361, + 0.030665645375847816, + 0.013410741463303566, + -0.03662387654185295, + 0.09279097616672516, + 0.09013060480356216, + -0.023107528686523438, + -0.016996480524539948, + 0.052674125880002975, + -0.0477076955139637, + -0.0051491884514689445, + -0.017126258462667465, + 0.00039109349017962813, + -0.006623464170843363, + 0.0136633375659585, + 0.07954724878072739, + -0.04341958463191986, + 0.01731514185667038, + -0.03600459545850754, + -0.032165441662073135, + -0.04401622712612152, + 0.05860913172364235, + 0.04232517629861832, + -0.023944828659296036, + 0.033493772149086, + -0.03555452823638916, + -0.06192363053560257, + -0.08666536211967468, + 0.041639845818281174, + 0.0328352116048336, + 0.018850013613700867, + 0.08071286976337433, + 0.04047665372490883, + -0.003965218551456928, + -0.013595419935882092, + 0.023575901985168457, + 0.0009004872990772128, + -0.018338482826948166, + 0.020405303686857224, + -0.01624441333115101, + -0.024914998561143875, + 0.016010403633117676, + 0.023174207657575607, + 0.07592178881168365, + 0.051932066679000854, + 0.02404649928212166, + 0.032963044941425323, + -0.06031333655118942, + 0.0773855671286583, + -0.0032404609955847263, + -0.04966850206255913, + -0.056093573570251465, + -0.029224084690213203, + -0.0073386733420193195, + -0.016345089301466942, + 0.07901327311992645, + 0.009941533207893372, + 0.06681569665670395, + -0.08765454590320587, + 0.04503805562853813, + 0.008015784434974194, + 0.0012367735616862774, + -0.04290798306465149, + 0.10434521734714508, + 0.023178093135356903, + 0.01751507632434368, + -0.021786775439977646, + -2.4941584797488758e-08, + -0.002484175143763423, + 0.012996003031730652, + 0.03874674811959267, + -0.08858153223991394, + 0.009341876022517681, + -0.009685252793133259, + 0.06120714172720909, + -0.09907415509223938, + -0.044283173978328705, + -0.05630895122885704, + 0.03131195530295372, + 0.0049195257015526295, + -0.10347992181777954, + -0.02775043062865734, + 0.0748516246676445, + -0.024062570184469223, + -0.07491067051887512, + 0.0848875418305397, + 0.015088853426277637, + -0.08415787667036057, + -0.003536574775353074, + 0.06526397168636322, + 0.04020198807120323, + -0.04070335999131203, + -0.03986402228474617, + 0.0126207135617733, + -0.07673703879117966, + -0.029459791257977486, + 0.01532742753624916, + 0.05019380897283554, + 0.05498170107603073, + 0.08024244755506516, + 0.10468528419733047, + -0.007419445551931858, + -0.0206393264234066, + -0.04786566644906998, + -0.0057615963742136955, + 0.003235539188608527, + -0.06502765417098999, + 0.03485932573676109, + 0.012617019936442375, + -0.04008907079696655, + -0.039350077509880066, + -0.08747153729200363, + -0.028834229335188866, + -0.02627553790807724, + 0.07099096477031708, + -0.01712242141366005, + -0.043589405715465546, + -0.08151514828205109, + -0.0702839344739914, + 0.06827884912490845, + 0.013206630945205688, + 0.020978886634111404, + -0.007336127106100321, + -0.021006084978580475, + -0.015481101348996162, + 0.062096793204545975, + 0.04033582657575607, + 0.0221649669110775, + 0.1293095350265503, + -0.025901641696691513, + -0.010103374719619751, + -0.017861759290099144 + ], + "skip-back-bold||music,audio,seek,scrub,scan,back,backwards,reverse,previous": [ + 0.022194743156433105, + -0.048820074647665024, + -0.007023831829428673, + -0.04474957287311554, + -0.006186056882143021, + 0.059983428567647934, + 0.05422322824597359, + -0.13297858834266663, + -0.005350290797650814, + -0.03941808640956879, + 0.03361621871590614, + 0.06113504245877266, + 0.050491854548454285, + -0.06705884635448456, + -0.08374078571796417, + -0.0024848305620253086, + 0.0074984049424529076, + 0.10965529829263687, + 0.040809910744428635, + -0.02506328746676445, + -0.07093719393014908, + 0.051065269857645035, + 0.0017192901577800512, + 0.025023801252245903, + 0.008357432670891285, + 0.04969266429543495, + -0.010080702602863312, + 0.013433164916932583, + -0.009272429160773754, + -0.08289416134357452, + -0.015515901148319244, + 0.017056744545698166, + 0.14747992157936096, + 0.03367667645215988, + -0.04589898884296417, + -0.0218490120023489, + -0.09882858395576477, + 0.015126672573387623, + -0.03510190173983574, + 0.04782853648066521, + -0.02270396426320076, + -0.00251689157448709, + -0.012171018868684769, + -0.041457563638687134, + -0.06393648684024811, + -0.10062072426080704, + -0.12415576726198196, + -0.07315994054079056, + 0.07596337050199509, + 0.012144157662987709, + -0.02205226756632328, + -0.04818209260702133, + -0.11622503399848938, + 0.09922552853822708, + 0.005461994092911482, + 0.024210641160607338, + 0.01169960293918848, + 0.057383496314287186, + 0.0522831566631794, + 0.032982539385557175, + 0.021420512348413467, + -0.0419100858271122, + -0.025208590552210808, + -0.007359630428254604, + 0.07937240600585938, + 0.0022694983053952456, + -0.023448269814252853, + 0.008504385128617287, + 0.028180377557873726, + 0.0946478471159935, + -0.026683147996664047, + 0.014923777431249619, + 0.02167792059481144, + 0.045740991830825806, + 0.0073126861825585365, + 0.02166232280433178, + 0.046196453273296356, + -0.016524076461791992, + -0.09008835256099701, + -0.07632873952388763, + -0.04830629751086235, + -0.0944535881280899, + -0.026163943111896515, + 0.030822839587926865, + 0.023624373599886894, + 0.02451765350997448, + -0.07286149263381958, + -0.06585092842578888, + -0.008028119802474976, + -0.05250120908021927, + -0.08637714385986328, + -0.11883824318647385, + 0.008859672583639622, + -0.002966964617371559, + -0.04531676694750786, + 0.022967703640460968, + 0.06973119080066681, + -0.04887121915817261, + 0.010081888176500797, + 0.06535036116838455, + 0.05766769498586655, + -0.008108683861792088, + 0.06508628278970718, + 0.010342082008719444, + -0.05488000437617302, + -0.11098700016736984, + 0.052422601729631424, + 0.01833832822740078, + -0.0529366061091423, + -0.016069501638412476, + -0.004560656845569611, + -0.019137756898999214, + 0.035059116780757904, + -0.07223661243915558, + 0.030509233474731445, + -0.007487467024475336, + 0.0036956036929041147, + 0.01976597122848034, + 0.10063780844211578, + 0.042255476117134094, + -0.004536635708063841, + -0.026687685400247574, + -0.06324518471956253, + -0.03324821963906288, + 0.005306723993271589, + -0.03655726835131645, + 0.07028044015169144, + -1.4649330187473977e-33, + 0.06985175609588623, + 0.030740411952137947, + -0.008454819209873676, + 0.004505444318056107, + 0.019297204911708832, + 0.003956338856369257, + -0.03645343333482742, + 0.03191491588950157, + -0.04312765225768089, + 0.07909887284040451, + 0.06352540105581284, + 0.02452380768954754, + -0.01376171875745058, + 0.05748191848397255, + -0.01995372399687767, + -0.0675581693649292, + 0.021148420870304108, + 0.03715713322162628, + -0.10859515517950058, + -0.03352029249072075, + -0.035218656063079834, + 0.03295798972249031, + 0.024988245218992233, + -0.017583506181836128, + 0.03607010096311569, + 0.01456404384225607, + -0.0014515777584165335, + -0.09750484675168991, + 0.015274140983819962, + 0.037584494799375534, + -0.033777203410863876, + 0.014790571294724941, + 0.007303973659873009, + -0.02740464359521866, + 0.009643986821174622, + 0.07435113191604614, + -0.04556957259774208, + 0.024700894951820374, + 0.03706870973110199, + -0.061540938913822174, + -0.0824405625462532, + -0.051107849925756454, + -0.07383286207914352, + -0.0888076052069664, + 0.01918877102434635, + -0.03280022367835045, + -0.005840226076543331, + 0.013687739148736, + 0.012960695661604404, + 0.056277770549058914, + 0.07100987434387207, + 0.044928841292858124, + -0.03616455942392349, + -0.020884063094854355, + 0.005271754693239927, + -0.04367978498339653, + 0.0691256895661354, + 0.11427787691354752, + 0.011292229406535625, + 0.08227569609880447, + 0.10413641482591629, + 0.05365084111690521, + 0.057184185832738876, + -0.026706647127866745, + -0.05451800674200058, + 0.04086378961801529, + 0.012486967258155346, + -0.03168477490544319, + 0.06265661865472794, + 0.010379129089415073, + -0.07081855833530426, + -0.048071932047605515, + -0.008442061953246593, + 0.019073059782385826, + -0.021071096882224083, + 0.024232996627688408, + -0.0029368100222200155, + -0.08667275309562683, + 0.07377838343381882, + -0.081498883664608, + -0.1214776411652565, + -0.027674483135342598, + -0.07570590823888779, + 0.008756455034017563, + 0.011480103246867657, + 0.005868307780474424, + 0.03368338197469711, + -0.13271033763885498, + -0.01604113169014454, + -0.04141847789287567, + -0.1160653680562973, + 0.05546946078538895, + -0.03522440046072006, + -0.009181493893265724, + -0.04073623940348625, + -8.093330033289298e-34, + 0.08672966808080673, + 0.037131600081920624, + 0.023818200454115868, + 0.002022205386310816, + -0.0728379413485527, + -0.011736046522855759, + 0.07571563124656677, + 0.08986598998308182, + 0.05426964908838272, + 0.04053839296102524, + 0.05509084463119507, + -0.04210323467850685, + -0.0024537439458072186, + -0.061195529997348785, + 0.007771695964038372, + 0.0893779918551445, + 0.027039561420679092, + 0.009541948325932026, + 0.013299867510795593, + 0.03504161536693573, + -0.05638934671878815, + -0.02872324176132679, + -0.0005524929729290307, + 0.10383850336074829, + -0.07133042067289352, + -0.008361531421542168, + 0.07281944900751114, + 0.0831344798207283, + 0.004193048924207687, + -0.0345081128180027, + 0.03155425563454628, + 0.0023285644128918648, + 0.0027951409574598074, + -0.035316579043865204, + -0.04202543944120407, + 0.035281796008348465, + 0.01740863174200058, + 0.10335648059844971, + -0.049205731600522995, + 0.015973761677742004, + 0.02970684878528118, + 0.061133138835430145, + 0.04391058534383774, + 0.01742585562169552, + -0.031249389052391052, + -0.017800210043787956, + -0.08381042629480362, + 0.0639740526676178, + -0.022422047331929207, + 0.05834145098924637, + 0.06722428649663925, + -0.04273086413741112, + -0.004335753154009581, + -0.04694966971874237, + -0.07536669075489044, + -0.028174081817269325, + -0.013776485808193684, + 0.010184125043451786, + -0.03483597934246063, + 0.05625762417912483, + -0.016509240493178368, + -0.01149794738739729, + -1.5960822565830313e-05, + -0.11142075806856155, + 0.017663275822997093, + 0.03324686735868454, + 0.04566003382205963, + -0.028042932972311974, + -0.028481250628829002, + -0.02149808220565319, + 0.023912647739052773, + 0.057774581015110016, + -0.007451760116964579, + 0.015695519745349884, + -0.018571045249700546, + -0.019369887188076973, + -0.030947716906666756, + -0.028959697112441063, + -0.052476704120635986, + -0.023820575326681137, + 0.018633313477039337, + 0.015412500128149986, + 0.033756740391254425, + 0.04738840088248253, + -0.048905279487371445, + 0.10073543339967728, + -0.04937224090099335, + 0.007400286849588156, + -0.015028155408799648, + 0.00073763239197433, + -0.0012539366725832224, + 0.04676603525876999, + 0.08510913699865341, + -0.024569524452090263, + -0.02458086609840393, + -2.080479077903874e-08, + -0.06906377524137497, + -0.04065720736980438, + 0.0295451357960701, + 0.017188411206007004, + 0.013675625436007977, + -0.0648578628897667, + -0.031223269179463387, + -0.0397019125521183, + -0.05198545753955841, + -0.14037366211414337, + 0.0788419246673584, + -0.001024396624416113, + 0.010664724744856358, + 0.03292679786682129, + 0.02087891660630703, + 0.021416785195469856, + 0.003937821835279465, + 0.04936695843935013, + -0.03164888173341751, + -0.03345688432455063, + -0.0008936240919865668, + 0.07533076405525208, + 0.0352526530623436, + -0.0053474074229598045, + 0.045638225972652435, + 0.03671484813094139, + -0.008867309428751469, + 0.027561726048588753, + 0.07282128930091858, + -0.04664647579193115, + 0.0411398820579052, + 0.045697543770074844, + -0.010884515941143036, + -0.057164281606674194, + -0.06944827735424042, + 0.03685422241687775, + 0.06447818130254745, + -0.021966392174363136, + -0.06903751194477081, + 0.06107380986213684, + 0.008694619871675968, + -0.035464510321617126, + -0.029150450602173805, + -0.017269855365157127, + -0.1517779529094696, + -0.06167984381318092, + 0.07862278074026108, + -0.019012317061424255, + -0.002689898945391178, + -0.13653206825256348, + -0.007181813474744558, + -0.027546007186174393, + 0.02648414857685566, + 0.005243347957730293, + 0.04789688438177109, + 0.014257121831178665, + 0.0034672885667532682, + 0.06636419892311096, + -0.08868583291769028, + 0.057197146117687225, + 0.04220706224441528, + 0.04633088409900665, + 0.03419133275747299, + 0.017375821247696877 + ], + "skip-back-circle-bold||music,audio,seek,scrub,scan,back,backwards,reverse,previous": [ + 0.0253690667450428, + -0.046381767839193344, + -0.0457025021314621, + -0.04491329565644264, + 0.013095437549054623, + 0.03814249485731125, + 0.05986650288105011, + -0.12132393568754196, + 0.017130328342318535, + -0.06095738336443901, + 0.03623358532786369, + 0.0612272210419178, + 0.059816524386405945, + -0.06445380300283432, + -0.06767217069864273, + -0.004540571942925453, + -0.007157110143452883, + 0.09513140469789505, + 0.05083560571074486, + -0.03681475669145584, + -0.07529810070991516, + 0.027531061321496964, + 0.014980331063270569, + 0.05154025927186012, + -0.011846406385302544, + 0.07317445427179337, + -0.008888849057257175, + 0.014870110899209976, + -0.013558938167989254, + -0.09369386732578278, + -0.03933010622859001, + 0.029131058603525162, + 0.14647836983203888, + 0.026210829615592957, + -0.05246865749359131, + -0.023023782297968864, + -0.10365217179059982, + 0.026828696951270103, + -0.03015757165849209, + 0.023152867332100868, + -0.01194335613399744, + -0.004632270894944668, + 0.009061964228749275, + -0.04459547996520996, + -0.07435157150030136, + -0.08083593845367432, + -0.1464666873216629, + -0.07419290393590927, + 0.06698654592037201, + 0.024828916415572166, + -0.03082277812063694, + -0.06397023797035217, + -0.11716126650571823, + 0.08258586376905441, + 0.011373820714652538, + 0.02090326137840748, + 0.010821295902132988, + 0.05013728141784668, + 0.07663197070360184, + 0.02115577459335327, + 0.03692628815770149, + -0.0552196279168129, + -0.002886369824409485, + 0.0043264939449727535, + 0.06417936831712723, + -0.012475932016968727, + -0.034958433359861374, + -0.014013958163559437, + 0.017278794199228287, + 0.06092897057533264, + -0.017778536304831505, + 0.016486790031194687, + 0.011353733018040657, + 0.02741306461393833, + 0.026840267702937126, + 0.03181314840912819, + 0.03162195533514023, + 0.006768090184777975, + -0.11058646440505981, + -0.07887732237577438, + -0.03863020986318588, + -0.07371463626623154, + -0.0147399315610528, + 0.0545983761548996, + 0.019479840993881226, + 0.03626082465052605, + -0.05722649022936821, + -0.07636012136936188, + -0.021064935252070427, + -0.050233952701091766, + -0.08963320404291153, + -0.09787645936012268, + -0.018022198230028152, + -0.015954075381159782, + -0.06055297330021858, + 0.015250487253069878, + 0.06192661449313164, + -0.07544147223234177, + -0.022049730643630028, + 0.07839713990688324, + 0.07253541052341461, + -0.02565818652510643, + 0.07990935444831848, + -0.0013386697974056005, + -0.060302961617708206, + -0.10702816396951675, + 0.04129301756620407, + 0.016215259209275246, + -0.05471569672226906, + -0.004132416099309921, + -0.0036562825553119183, + -0.030993627384305, + 0.023846330121159554, + -0.055048439651727676, + 0.021928507834672928, + -0.0062388163059949875, + -0.009058769792318344, + 0.022550169378519058, + 0.10933418571949005, + 0.04700687527656555, + 0.011425642296671867, + -0.013736189343035221, + -0.08817105740308762, + -0.04222070425748825, + -0.014858855865895748, + -0.027118926867842674, + 0.05142736807465553, + -1.906871323869568e-33, + 0.05606713145971298, + 0.039030060172080994, + -0.009776761755347252, + -0.005411304533481598, + 0.018837658688426018, + -0.0321844145655632, + -0.03288713097572327, + 0.026340363547205925, + -0.005999729037284851, + 0.07789206504821777, + 0.04864325374364853, + 0.024135900661349297, + -0.010255874134600163, + 0.058763422071933746, + -0.0009421479771845043, + -0.0793689712882042, + 0.038140036165714264, + 0.020744293928146362, + -0.12331852316856384, + -0.05296719819307327, + -0.046995602548122406, + 0.03658508509397507, + 0.01028495840728283, + -0.016920218244194984, + 0.029765313491225243, + 0.03749528154730797, + -0.011736049316823483, + -0.09546574205160141, + 0.014109632931649685, + 0.04533868655562401, + -0.027446266263723373, + 0.02600778639316559, + 0.014147288165986538, + -0.017249388620257378, + 0.014664971269667149, + 0.08090784400701523, + -0.047240808606147766, + 0.027362270280718803, + 0.020300697535276413, + -0.06647371500730515, + -0.07637699693441391, + -0.05838143453001976, + -0.0802202895283699, + -0.0625319555401802, + 0.022540589794516563, + -0.01679057814180851, + 0.0017157687107101083, + 0.017111822962760925, + 0.014227153733372688, + 0.05788727477192879, + 0.05076196417212486, + 0.046657320111989975, + -0.04919632524251938, + -0.03422261029481888, + 0.01765574887394905, + -0.05605825409293175, + 0.07512374967336655, + 0.11147933453321457, + -0.015517862513661385, + 0.07041002810001373, + 0.10845673829317093, + 0.0585332028567791, + 0.049450699239969254, + -0.043412789702415466, + -0.06030777096748352, + 0.0505979023873806, + -0.004708597436547279, + -0.04371275007724762, + 0.07798485457897186, + -0.0016526570543646812, + -0.06351267546415329, + -0.02977895177900791, + 0.0227972399443388, + 0.049445200711488724, + -0.03591163456439972, + 0.029420416802167892, + -0.005985479336231947, + -0.07850424200296402, + 0.06742461025714874, + -0.08021896332502365, + -0.12303958088159561, + -0.020168626680970192, + -0.07481443136930466, + 0.0005618467694148421, + 0.024326235055923462, + -0.008067004382610321, + 0.05449790507555008, + -0.12337818741798401, + -0.020652322098612785, + -0.04522646963596344, + -0.12267813831567764, + 0.07359981536865234, + -0.017001302912831306, + 0.017311446368694305, + -0.06721635907888412, + -4.472324837224342e-34, + 0.07847823202610016, + 0.041453227400779724, + 0.0408022440969944, + 0.0013931578723713756, + -0.06196388602256775, + -0.0057985819876194, + 0.07580367475748062, + 0.0859660655260086, + 0.046911608427762985, + 0.05721491947770119, + 0.03585485368967056, + -0.038251541554927826, + 0.005773573182523251, + -0.05435730516910553, + 0.028726894408464432, + 0.09679296612739563, + 0.041326723992824554, + 0.01605914905667305, + 0.013256676495075226, + 0.0427810363471508, + -0.05936998128890991, + -0.023308109492063522, + -0.0036789197474718094, + 0.09901077300310135, + -0.07812830805778503, + 0.0028396572452038527, + 0.08542951196432114, + 0.04746231064200401, + 0.0005453016492538154, + -0.012719887308776379, + 0.0018646883545443416, + -0.01786847412586212, + 0.018624525517225266, + -0.02706029824912548, + -0.022712411358952522, + 0.006658589001744986, + 0.019393496215343475, + 0.07181181013584137, + -0.0746188685297966, + -0.018802998587489128, + 0.001140104723162949, + 0.050526153296232224, + 0.05480680987238884, + 0.018934862688183784, + -0.021887287497520447, + -0.03151601925492287, + -0.05330038070678711, + 0.08404294401407242, + -0.046507470309734344, + 0.06408380717039108, + 0.07640375196933746, + -0.030951034277677536, + 0.020809173583984375, + -0.043843261897563934, + -0.07086442410945892, + -0.008489797823131084, + -0.02656235359609127, + 0.021964771673083305, + -0.006599660962820053, + 0.05499666929244995, + -0.020003287121653557, + -0.017647596076130867, + -0.020263440907001495, + -0.07580766081809998, + 0.020324813202023506, + 0.04680132493376732, + 0.04748832806944847, + -0.029375867918133736, + -0.045567259192466736, + 0.006909629330039024, + 0.005773413460701704, + 0.07486030459403992, + -0.00897630862891674, + -0.002049356698989868, + -0.01235072873532772, + -0.01021078135818243, + -0.020842764526605606, + -0.03448844701051712, + -0.06491199135780334, + -0.014048798009753227, + 0.005737725645303726, + 0.024999434128403664, + 0.03002203069627285, + 0.042332857847213745, + -0.04278276115655899, + 0.08101560920476913, + -0.04116443544626236, + 0.00838596560060978, + -0.0175453070551157, + 0.011790773831307888, + 0.011105211451649666, + 0.0555850975215435, + 0.06843570619821548, + 0.0037356982938945293, + 0.0085535179823637, + -2.1937685446005162e-08, + -0.06799067556858063, + -0.030733149498701096, + 0.02120778150856495, + 0.01576804928481579, + 0.04836224392056465, + -0.07472170889377594, + -0.02452443353831768, + -0.05164448544383049, + -0.06049969419836998, + -0.1254621148109436, + 0.0710400864481926, + 0.003285784972831607, + 0.002754977671429515, + 0.032664671540260315, + 0.016831934452056885, + 0.026458963751792908, + -0.007990548387169838, + 0.06929457187652588, + -0.019648870453238487, + -0.028950246050953865, + 0.0064508188515901566, + 0.04954937845468521, + 0.05547410249710083, + -0.03840644285082817, + 0.03504503145813942, + 0.03306988626718521, + -0.007747017312794924, + 0.028586599975824356, + 0.05311180278658867, + -0.05916944518685341, + 0.02996150590479374, + 0.0449540950357914, + -0.01072156522423029, + -0.05013871192932129, + -0.06418361514806747, + 0.009243891574442387, + 0.048140108585357666, + -0.010749483481049538, + -0.06537885963916779, + 0.06735694408416748, + 0.020192474126815796, + -0.011806013062596321, + -0.013408592902123928, + -0.014303651638329029, + -0.13835859298706055, + -0.04167848452925682, + 0.0873134583234787, + -0.018891196697950363, + -0.027926914393901825, + -0.13187485933303833, + -0.02686874382197857, + -0.03412272408604622, + 0.043960243463516235, + -0.001857863157056272, + 0.04474121704697609, + 0.0053682029247283936, + 0.022286999970674515, + 0.08325037360191345, + -0.11070353537797928, + 0.07234658300876617, + 0.020290661603212357, + 0.06694934517145157, + 0.035019878298044205, + 0.014720731414854527 + ], + "skip-forward-bold||music,audio,seek,scrub,scan,ahead,next": [ + 0.024976911023259163, + -0.04662862792611122, + -0.015237580984830856, + -0.04868784919381142, + 0.025916745886206627, + 0.059039484709501266, + 0.0529467910528183, + -0.13840046525001526, + 0.009608672931790352, + -0.036398373544216156, + 0.013853944838047028, + 0.056720636785030365, + 0.035625893622636795, + -0.04861829802393913, + -0.06204530969262123, + -0.013934656977653503, + 0.00894971378147602, + 0.08863797038793564, + 0.04647693783044815, + -0.027315855026245117, + -0.041185520589351654, + 0.057014647871255875, + 0.012795289978384972, + 0.01488769892603159, + -0.017027391120791435, + 0.047052107751369476, + -0.024893509224057198, + -0.00846653338521719, + -0.004412446171045303, + -0.07261144369840622, + 0.009846823289990425, + 0.0020727694500237703, + 0.12604734301567078, + 0.039841052144765854, + -0.030628344044089317, + -0.03776020556688309, + -0.09273836761713028, + 0.010943504981696606, + -0.04961023107171059, + 0.02922707051038742, + 0.004987355787307024, + 0.007834058254957199, + -0.0067176553420722485, + -0.03452527895569801, + -0.07038220763206482, + -0.09697136282920837, + -0.12070755660533905, + -0.06333273649215698, + 0.04452025517821312, + -0.008940557017922401, + -0.06604370474815369, + -0.08223960548639297, + -0.09755496680736542, + 0.08702489733695984, + -0.002546164207160473, + 0.034571632742881775, + -0.006616081111133099, + 0.04507831484079361, + 0.08166850358247757, + 0.020607061684131622, + 0.0080763790756464, + -0.0457962229847908, + 0.010059219785034657, + -0.013064674101769924, + 0.08290720731019974, + -0.007659994997084141, + -0.010729960165917873, + 0.05548356845974922, + 0.013885175809264183, + 0.10920435190200806, + -0.02817489393055439, + 0.02176545187830925, + 0.03406669199466705, + 0.046552084386348724, + 0.02049158327281475, + 0.008430927991867065, + 0.05749698355793953, + -0.010264231823384762, + -0.08659794181585312, + -0.09629382938146591, + -0.06112534552812576, + -0.11239127069711685, + -0.02410224638879299, + -0.009244456887245178, + 0.02114175073802471, + 0.029921909794211388, + -0.07560896128416061, + -0.08863605558872223, + -0.02499888651072979, + -0.05607146397233009, + -0.08350426703691483, + -0.11921223998069763, + -0.03471657261252403, + 0.020592665299773216, + -0.02272230200469494, + 0.030081847682595253, + 0.06826217472553253, + -0.06611869484186172, + 0.0018567446386441588, + 0.05957832932472229, + 0.062185462564229965, + 0.019040148705244064, + 0.039951249957084656, + 0.00044753841939382255, + -0.04610351473093033, + -0.12161163985729218, + 0.0404939167201519, + 0.027689969167113304, + -0.04859461635351181, + -0.008737923577427864, + 0.014291795901954174, + -0.03604794293642044, + 0.03576727584004402, + -0.08299440890550613, + -0.00033046447788365185, + 0.024474462494254112, + 0.01633439213037491, + 0.025628091767430305, + 0.13958017528057098, + 0.03092695027589798, + 0.015511378645896912, + -0.040204014629125595, + -0.06674226373434067, + -0.01807970553636551, + 0.014448526315391064, + -0.03312195464968681, + 0.07218211889266968, + -1.92906998367187e-33, + 0.07158301770687103, + -0.0023765861988067627, + -0.03151014447212219, + 0.02741309255361557, + 0.04286237061023712, + -0.007542070467025042, + -0.031039290130138397, + 0.05109502747654915, + -0.0462578721344471, + 0.06577844172716141, + 0.05861798673868179, + 0.015901561826467514, + -0.011219294741749763, + 0.04598771408200264, + -0.027744997292757034, + -0.07934421300888062, + 0.03457605466246605, + 0.02888735942542553, + -0.09078428149223328, + -0.015130665153265, + -0.03443938493728638, + -0.012224901467561722, + 0.02354617603123188, + -0.021719790995121002, + 0.03959772735834122, + 0.04444551095366478, + -0.028032515197992325, + -0.0956299901008606, + 0.028874583542346954, + 0.05013872683048248, + -0.047484468668699265, + 0.011965525336563587, + -0.023799140006303787, + -0.00272919237613678, + 0.018139254301786423, + 0.07049044221639633, + -0.0698787122964859, + 0.039009444415569305, + 0.050434697419404984, + -0.06267271190881729, + -0.08373519778251648, + -0.05637640506029129, + -0.05809057876467705, + -0.07824869453907013, + 0.0012991050025448203, + -0.00034668322768993676, + -0.02577081508934498, + 0.02978508174419403, + 0.02360461838543415, + 0.07333185523748398, + 0.05823769420385361, + 0.05175461992621422, + -0.051611773669719696, + -0.015413149259984493, + 0.02189214900135994, + -0.054293788969516754, + 0.06802840530872345, + 0.09996619820594788, + 0.017537126317620277, + 0.07328291982412338, + 0.09498614072799683, + 0.049834076315164566, + 0.0545271560549736, + -0.017583826556801796, + -0.02335475943982601, + 0.05751751735806465, + -0.003790289396420121, + -0.00363290891982615, + 0.09272755682468414, + 0.007299049291759729, + -0.07153244316577911, + -0.0368683896958828, + 0.024704460054636, + 0.029610715806484222, + -0.022451752796769142, + 0.027856703847646713, + -0.011437473818659782, + -0.07835913449525833, + 0.09433135390281677, + -0.0815807580947876, + -0.10002223402261734, + -0.006660785060375929, + -0.08356060832738876, + 0.02741818316280842, + 0.010165184736251831, + 0.02695082128047943, + 0.025423208251595497, + -0.10868236422538757, + -0.03133111074566841, + -0.04912823066115379, + -0.11995626986026764, + 0.06711465865373611, + -0.036401186138391495, + 0.002870352705940604, + -0.056471891701221466, + -4.105628456130368e-34, + 0.11637452989816666, + 0.038838308304548264, + 0.029636859893798828, + 0.00968666560947895, + -0.04901883378624916, + -0.03341303765773773, + 0.08155626058578491, + 0.05074446275830269, + 0.07034087181091309, + 0.05565180629491806, + 0.02101585455238819, + -0.05208127573132515, + -0.003415257204324007, + -0.06262820214033127, + -0.0013978902716189623, + 0.07014777511358261, + 0.05508562549948692, + -0.011807112954556942, + 0.019466416910290718, + 0.021791931241750717, + -0.05752686411142349, + -0.02340739034116268, + -0.02514059841632843, + 0.09736636281013489, + -0.0673203244805336, + 0.000882278080098331, + 0.07383336871862411, + 0.08444815129041672, + -0.045789290219545364, + -0.03149104118347168, + 0.024686768651008606, + 0.0015528437215834856, + -0.008224454708397388, + -0.09202159196138382, + -0.02628590725362301, + 0.05856359004974365, + 0.03660592436790466, + 0.09781090170145035, + -0.010877999477088451, + 0.019086390733718872, + 0.04564257338643074, + 0.044009700417518616, + 0.017565714195370674, + 0.0122901676222682, + -0.00862384308129549, + -0.007083413191139698, + -0.056557584553956985, + 0.0696774423122406, + -0.05052127689123154, + 0.07879085093736649, + 0.07519572973251343, + -0.04032069444656372, + 0.01001978013664484, + -0.05994272977113724, + -0.09290406852960587, + -0.01876348815858364, + -0.05047973245382309, + 0.006612284574657679, + -0.053064391016960144, + 0.04794096574187279, + 0.005641093477606773, + -0.00468039233237505, + 0.002716523129492998, + -0.10422573983669281, + 0.02798234298825264, + 0.02315332554280758, + 0.04942277818918228, + -0.019860664382576942, + 0.015244903042912483, + -0.011254638433456421, + 0.04456114396452904, + 0.041948411613702774, + -0.013607049360871315, + 0.025518396869301796, + -0.03517057001590729, + -0.027986889705061913, + 0.009543264284729958, + -0.020013723522424698, + -0.031948164105415344, + -0.004069187678396702, + 0.022328799590468407, + 0.04813465476036072, + 0.020677441731095314, + 0.024965360760688782, + -0.04087231308221817, + 0.12689533829689026, + -0.006039786618202925, + -0.012270890176296234, + -0.024110499769449234, + -0.015313347801566124, + 0.007644555997103453, + 0.0397789441049099, + 0.07825811207294464, + -0.034035440534353256, + -0.044144317507743835, + -1.9429588604680248e-08, + -0.05544735863804817, + -0.040302496403455734, + -0.0007203579298220575, + 0.007897105999290943, + 0.014454314485192299, + -0.050392020493745804, + -0.02344723790884018, + -0.054266657680273056, + -0.04566233605146408, + -0.11262185126543045, + 0.08216104656457901, + 0.00708587234839797, + 0.04802222177386284, + 0.02233441174030304, + 0.011129944585263729, + -0.002655360149219632, + -0.003394193248823285, + 0.016882654279470444, + -0.06080028414726257, + -0.03986009210348129, + -0.002885672729462385, + 0.09392844140529633, + 0.021071769297122955, + -0.037028923630714417, + 0.04539616405963898, + 0.02374691516160965, + -0.002599614905193448, + -0.012389873154461384, + 0.09167908132076263, + -0.03966148570179939, + 0.014225514605641365, + 0.04704976826906204, + -0.026875123381614685, + -0.033437129110097885, + -0.0592789389193058, + 0.032313812524080276, + 0.05504443496465683, + -0.01831931434571743, + -0.07738251984119415, + 0.05258394032716751, + -0.0015092709800228477, + -0.016793251037597656, + -0.023792937397956848, + -0.01843961514532566, + -0.16080515086650848, + -0.07056538760662079, + 0.047230158001184464, + -0.024462487548589706, + -0.014424812979996204, + -0.09611351788043976, + -0.010431534610688686, + -0.009548952803015709, + 0.003143354319036007, + 0.03261050954461098, + 0.04720354825258255, + -0.022290484979748726, + 0.014310669153928757, + 0.0660196915268898, + -0.08391022682189941, + 0.054456815123558044, + 0.035338275134563446, + 0.005514953751116991, + 0.041268691420555115, + 0.04070082679390907 + ], + "skip-forward-circle-bold||music,audio,seek,scrub,scan,ahead,next": [ + 0.030502302572131157, + -0.03948280215263367, + -0.06126617640256882, + -0.04661009460687637, + 0.04031439870595932, + 0.03485256806015968, + 0.055033955723047256, + -0.12249128520488739, + 0.027408219873905182, + -0.06614285707473755, + 0.019357403740286827, + 0.05648340657353401, + 0.04457106441259384, + -0.05055363103747368, + -0.043543741106987, + -0.016133829951286316, + -0.009666220284998417, + 0.07503533363342285, + 0.058120422065258026, + -0.05112769454717636, + -0.04303384944796562, + 0.029543207958340645, + 0.02573925442993641, + 0.04115978628396988, + -0.03327818214893341, + 0.0729517787694931, + -0.01660289615392685, + -0.0024235013406723738, + -0.00505788205191493, + -0.08527272194623947, + -0.02162078395485878, + 0.023065973073244095, + 0.12587787210941315, + 0.02811729721724987, + -0.042407650500535965, + -0.038263753056526184, + -0.09488765150308609, + 0.026838235557079315, + -0.04231174662709236, + -0.0021443848963826895, + 0.01679660566151142, + 0.002963896142318845, + 0.01673409715294838, + -0.03928960859775543, + -0.08046137541532516, + -0.07083823531866074, + -0.15130704641342163, + -0.06287684291601181, + 0.03645515814423561, + 0.00909330602735281, + -0.07489912956953049, + -0.09592545032501221, + -0.10575388371944427, + 0.07310076057910919, + 0.010412332601845264, + 0.024206561967730522, + -0.006359226070344448, + 0.0335165411233902, + 0.10837329179048538, + 0.002884521381929517, + 0.024414803832769394, + -0.055945079773664474, + 0.027401752769947052, + 0.0038472844753414392, + 0.06737316399812698, + -0.018604477867484093, + -0.022856298834085464, + 0.02227015420794487, + 0.012176066637039185, + 0.07046205550432205, + -0.018434371799230576, + 0.02477065473794937, + 0.021870147436857224, + 0.025496210902929306, + 0.037898220121860504, + 0.027991844341158867, + 0.03630303218960762, + 0.012851977720856667, + -0.11055367439985275, + -0.09268998354673386, + -0.047397226095199585, + -0.08568129688501358, + -0.006084047723561525, + 0.028093839064240456, + 0.013415847904980183, + 0.04638924077153206, + -0.05646677315235138, + -0.10040123015642166, + -0.03828573599457741, + -0.05112295225262642, + -0.0851801335811615, + -0.09954691678285599, + -0.060851242393255234, + -0.0015937373973429203, + -0.04621431231498718, + 0.01598494127392769, + 0.06041519716382027, + -0.08962563425302505, + -0.029527148231863976, + 0.07394273579120636, + 0.07751569896936417, + -0.007496441248804331, + 0.056497182697057724, + -0.017103340476751328, + -0.05559345707297325, + -0.11704602837562561, + 0.033648230135440826, + 0.024120058864355087, + -0.051400214433670044, + 0.006362194661051035, + 0.011483771726489067, + -0.04468304663896561, + 0.022426847368478775, + -0.06735233962535858, + -0.0031893295235931873, + 0.025355739519000053, + 0.0015177106251940131, + 0.0306901466101408, + 0.14114947617053986, + 0.04167534410953522, + 0.028899729251861572, + -0.027213692665100098, + -0.0925527885556221, + -0.025615153834223747, + -0.011172485537827015, + -0.021016158163547516, + 0.0441562719643116, + -2.2601268454168508e-33, + 0.056206077337265015, + 0.014369110576808453, + -0.02511596493422985, + 0.012187927961349487, + 0.03194540739059448, + -0.05025486275553703, + -0.031337518244981766, + 0.040792591869831085, + -0.000626815075520426, + 0.06748975813388824, + 0.044737234711647034, + 0.011621583253145218, + -0.008700387552380562, + 0.047385476529598236, + -0.003448013449087739, + -0.0881941020488739, + 0.0510791651904583, + 0.006802387069910765, + -0.11543656140565872, + -0.03555973246693611, + -0.04890797287225723, + 0.0004953621537424624, + 0.003964712377637625, + -0.016578705981373787, + 0.0368335135281086, + 0.062473367899656296, + -0.036061931401491165, + -0.09471401572227478, + 0.023787595331668854, + 0.057726141065359116, + -0.0419502891600132, + 0.018801866099238396, + -0.00982188805937767, + 0.008137684315443039, + 0.02892686240375042, + 0.07990574836730957, + -0.07041516155004501, + 0.042242631316185, + 0.03343696519732475, + -0.07172196358442307, + -0.07737146317958832, + -0.06623484939336777, + -0.06830283999443054, + -0.053883086889982224, + 0.008885875344276428, + 0.014189228415489197, + -0.019035257399082184, + 0.030217904597520828, + 0.022487452253699303, + 0.07473774254322052, + 0.04053102061152458, + 0.05881297588348389, + -0.05584411323070526, + -0.027666548267006874, + 0.03238721191883087, + -0.06702585518360138, + 0.07687167078256607, + 0.09383484721183777, + -0.010603786446154118, + 0.05820178985595703, + 0.09909366816282272, + 0.052724674344062805, + 0.048034027218818665, + -0.03529142960906029, + -0.031054755672812462, + 0.06669750064611435, + -0.02582378126680851, + -0.02745438553392887, + 0.10227394849061966, + -0.008881350047886372, + -0.0652346983551979, + -0.01704457961022854, + 0.054191697388887405, + 0.059903278946876526, + -0.03980566933751106, + 0.03224934637546539, + -0.012939762324094772, + -0.06913970410823822, + 0.08990668505430222, + -0.08064598590135574, + -0.10325850546360016, + 0.0023617877159267664, + -0.07771053165197372, + 0.007724912371486425, + 0.021743958815932274, + 0.003452558070421219, + 0.04641927033662796, + -0.09768859297037125, + -0.03313799947500229, + -0.05595994368195534, + -0.11977877467870712, + 0.0846843421459198, + -0.016822436824440956, + 0.02585991658270359, + -0.08147892355918884, + -1.359121262100114e-34, + 0.09937576949596405, + 0.041750334203243256, + 0.048961661756038666, + 0.007442430127412081, + -0.04912208020687103, + -0.02394450455904007, + 0.08311186730861664, + 0.049382831901311874, + 0.06120241805911064, + 0.06985361874103546, + 0.005093581508845091, + -0.044105201959609985, + 0.006744632963091135, + -0.054404255002737045, + 0.023783443495631218, + 0.07892906665802002, + 0.06131559610366821, + 0.0016774741234257817, + 0.019778955727815628, + 0.04187719151377678, + -0.059880927205085754, + -0.022782478481531143, + -0.020713498815894127, + 0.09375203400850296, + -0.07532434910535812, + 0.016182826831936836, + 0.08748683333396912, + 0.045010559260845184, + -0.04553189501166344, + -0.01045911479741335, + -0.008391492068767548, + -0.01981355994939804, + 0.003761849133297801, + -0.0786057785153389, + -0.0068033188581466675, + 0.021727778017520905, + 0.04065345600247383, + 0.06277333199977875, + -0.047931522130966187, + -0.018227919936180115, + 0.004740748554468155, + 0.03733794391155243, + 0.030606968328356743, + 0.018212521448731422, + 0.0012556846486404538, + -0.027414865791797638, + -0.01896718330681324, + 0.09198985248804092, + -0.0772426649928093, + 0.07698697596788406, + 0.08329311013221741, + -0.0243246890604496, + 0.031992651522159576, + -0.05047062411904335, + -0.08028902858495712, + 0.0008172084344550967, + -0.05813917517662048, + 0.016810312867164612, + -0.02116219699382782, + 0.045643068850040436, + -0.004591104108840227, + -0.017720181494951248, + -0.019704671576619148, + -0.06062907725572586, + 0.0313679501414299, + 0.03697394207119942, + 0.054759666323661804, + -0.019712066277861595, + -0.015848496928811073, + 0.02130148373544216, + 0.023135220631957054, + 0.06314047425985336, + -0.012079456821084023, + 0.006968405097723007, + -0.027926718816161156, + -0.019650736823678017, + 0.018364934250712395, + -0.034259602427482605, + -0.049832139164209366, + 0.000755010754801333, + 0.0032131315674632788, + 0.05310458689928055, + 0.02016158029437065, + 0.022795138880610466, + -0.03645653277635574, + 0.10647787153720856, + -0.006611640099436045, + -0.012141386978328228, + -0.025791173800826073, + -0.001328169833868742, + 0.0170487891882658, + 0.05011073872447014, + 0.06583099067211151, + -0.0032172822393476963, + -0.003621750744059682, + -2.0229224517720468e-08, + -0.05827832221984863, + -0.030078252777457237, + -0.003464823355898261, + 0.009580765850841999, + 0.05741145834326744, + -0.06351403146982193, + -0.02070411667227745, + -0.06544526666402817, + -0.05320713669061661, + -0.10072820633649826, + 0.07415951788425446, + 0.012803861871361732, + 0.028283707797527313, + 0.020571531727910042, + 0.011556790210306644, + 0.006342578213661909, + -0.006875823717564344, + 0.04900546744465828, + -0.044425301253795624, + -0.030032312497496605, + 0.009274640120565891, + 0.06302272528409958, + 0.048885297030210495, + -0.06580960005521774, + 0.03466133028268814, + 0.018540319055318832, + 0.003637035144492984, + -0.0009925754275172949, + 0.0669107660651207, + -0.05174478143453598, + 0.005168644245713949, + 0.045778460800647736, + -0.025154074653983116, + -0.029285328462719917, + -0.0556330606341362, + 0.0033746107947081327, + 0.038237329572439194, + 0.0034568095579743385, + -0.07154576480388641, + 0.06360775232315063, + 0.008727077394723892, + 0.007604203652590513, + -0.00840593408793211, + -0.012646432034671307, + -0.13519108295440674, + -0.04287904128432274, + 0.06065430864691734, + -0.02626318670809269, + -0.040350642055273056, + -0.09049191325902939, + -0.03735634684562683, + -0.013381329365074635, + 0.0238950178027153, + 0.02178349904716015, + 0.039628274738788605, + -0.02923048473894596, + 0.038424741476774216, + 0.08752471953630447, + -0.10793399065732956, + 0.06844756007194519, + 0.013984108343720436, + 0.03422269597649574, + 0.04845678433775902, + 0.03336470574140549 + ], + "skull-bold||death,dead,kill": [ + -0.011649376712739468, + 0.0487758107483387, + -0.054884783923625946, + -0.06554379314184189, + 0.07720936834812164, + 0.014740278013050556, + 0.054590560495853424, + -0.08114130795001984, + 0.015082528814673424, + 0.007235376164317131, + 0.009706070646643639, + -0.0640324056148529, + 0.022891385480761528, + -0.049428198486566544, + -0.03566337376832962, + 0.010906108655035496, + -0.014843067154288292, + 0.057699237018823624, + 0.03623674809932709, + 0.04263472184538841, + -0.013484060764312744, + 0.09483424574136734, + 0.05756767466664314, + 0.007207255344837904, + -0.008404703810811043, + -0.011683845892548561, + -0.00456288643181324, + -0.03207463398575783, + -0.012743120081722736, + -0.09611862152814865, + 0.030570480972528458, + -0.037234555929899216, + -0.0010818360606208444, + -0.08744077384471893, + -0.0004924646927975118, + 0.06745929270982742, + -0.046237215399742126, + -0.009608001448214054, + -0.05203989893198013, + 0.037779856473207474, + -0.01510073896497488, + 0.05849962681531906, + -0.03501822426915169, + 0.03498980402946472, + -0.036142464727163315, + -0.03520236164331436, + -0.16333267092704773, + -0.04198460653424263, + -0.00042713122093118727, + -0.014095754362642765, + -0.028118811547756195, + -0.11482518166303635, + -0.06497690826654434, + 0.03880242630839348, + 0.00796490628272295, + 0.04013756290078163, + -0.01041143573820591, + 0.008794104680418968, + 0.002644696505740285, + -0.008827049285173416, + -0.03260238468647003, + 0.016520461067557335, + 0.053445491939783096, + 0.02070806734263897, + 0.06118632107973099, + -0.003762286389246583, + 0.024842360988259315, + -0.05632305145263672, + -0.0792246088385582, + 0.10433504730463028, + -0.01580783538520336, + -0.038318879902362823, + 0.01516738161444664, + -0.09798338264226913, + -0.12874211370944977, + 0.0037740329280495644, + 0.008188091218471527, + -0.10391340404748917, + -0.005134075880050659, + -0.06932105123996735, + -0.03539859130978584, + -0.03042200580239296, + -0.0656493678689003, + -0.05448310822248459, + 0.06760260462760925, + 0.04608868807554245, + -0.10171163082122803, + -0.015738200396299362, + -0.05560857430100441, + 0.05937998741865158, + -0.029583852738142014, + 0.017468055710196495, + 0.01484320405870676, + 0.05245503783226013, + 0.04599416255950928, + 0.04219932109117508, + 0.039612337946891785, + 0.06589002162218094, + -0.06004772335290909, + 0.08066035062074661, + 0.0022385178599506617, + -0.05601323023438454, + -0.026703208684921265, + -0.05392726510763168, + 0.05872277170419693, + -0.020430931821465492, + -0.07830771058797836, + -0.028521599248051643, + 0.012330989353358746, + 0.012456672266125679, + -0.003939402289688587, + -0.07158127427101135, + -0.03309767693281174, + 0.011631021276116371, + -0.006348519120365381, + 0.0029076822102069855, + -0.05019686371088028, + -0.0275199506431818, + 0.03205142915248871, + 0.08051546663045883, + 0.08306960016489029, + -0.020028306171298027, + -0.07455594092607498, + -0.07564183324575424, + 0.03650055453181267, + -0.0018396624363958836, + -0.013221818022429943, + -2.6683440747047683e-33, + 0.06868761032819748, + -0.024921491742134094, + -0.05210273340344429, + 0.07793880999088287, + 0.02398567460477352, + -0.04900030046701431, + -0.03368626907467842, + 0.016367236152291298, + -0.03473840653896332, + 0.1456083357334137, + 0.0010841961484402418, + -0.01005282998085022, + -0.040849924087524414, + 0.04972509667277336, + 0.0047518108040094376, + 0.00214731995947659, + 0.021747704595327377, + -0.04441869258880615, + -0.09153901040554047, + -0.05889938399195671, + -0.004899316933006048, + 0.09446464478969574, + -0.103336401283741, + -0.030418233945965767, + -0.012161685153841972, + 0.0042807357385754585, + -0.08828752487897873, + 0.0008316782186739147, + -0.009371738880872726, + 0.05691118165850639, + 0.0016508890548720956, + -0.029512181878089905, + 0.03625412657856941, + -0.02973059006035328, + 0.01781151257455349, + 0.034185923635959625, + -0.045264143496751785, + -0.02951384149491787, + -0.11599204689264297, + 0.06311589479446411, + 0.022849159315228462, + -0.005072601605206728, + -0.06662795692682266, + -0.018353629857301712, + 0.008701306767761707, + 0.0834590420126915, + 0.01167336292564869, + 0.05090625211596489, + -0.02477276511490345, + 0.0005176323466002941, + 0.03309075906872749, + -0.024613426998257637, + 0.016869844868779182, + 0.05735359340906143, + 0.023003853857517242, + 0.07537176460027695, + -0.022060612216591835, + 0.04046205058693886, + 0.06057989224791527, + 0.034374628216028214, + 0.029720084741711617, + -0.01184073556214571, + 0.05152090638875961, + -0.03926791250705719, + 0.013245612382888794, + -0.002764256438240409, + -0.012551797553896904, + -0.01876375451683998, + 0.04278555139899254, + -0.048523206263780594, + 0.019507301971316338, + 0.000681644887663424, + 0.0062075164169073105, + -0.008037751540541649, + -0.047300294041633606, + 0.04068740829825401, + 0.0470225028693676, + 0.003303819801658392, + -0.02391984313726425, + -0.055877938866615295, + -0.004900919273495674, + 0.10142811387777328, + -0.07482466846704483, + 0.08363105356693268, + 0.10999330878257751, + 0.020675688982009888, + 0.03983195871114731, + -0.09625345468521118, + -0.034529149532318115, + 0.02452251873910427, + -0.01753750815987587, + -0.04434392601251602, + -0.004648528527468443, + -0.1054614782333374, + -0.10967450588941574, + 1.0412730079320409e-33, + 0.04786761477589607, + -0.008058293722569942, + 0.002685269806534052, + 0.016252314671874046, + 0.0163862407207489, + 0.004525777418166399, + 0.00020170299103483558, + 0.01506887748837471, + -0.003892139997333288, + -0.021396717056632042, + -0.023560872301459312, + -0.03407888114452362, + -0.03330592066049576, + 0.038479067385196686, + 0.1213369369506836, + -0.039285797625780106, + 0.023031029850244522, + 0.00021320430096238852, + -0.022051658481359482, + 0.07845494896173477, + -0.05046107620000839, + -0.0445132851600647, + -0.0743701308965683, + 0.05874021723866463, + 0.010014173574745655, + 0.03163149952888489, + 0.004074059892445803, + 0.04571649804711342, + -0.07203041017055511, + 0.009185601957142353, + -0.023305734619498253, + 3.3054897357942536e-05, + 0.011481834575533867, + 0.09642308950424194, + -0.04466661065816879, + 0.10090521723031998, + 0.039409369230270386, + -0.055020831525325775, + -0.027152227237820625, + 0.024492980912327766, + -0.021759970113635063, + 0.010266199707984924, + 0.01619735173881054, + 0.0730116069316864, + -0.021875878795981407, + -0.05467218905687332, + -0.0019521355861797929, + 0.031692985445261, + -0.027437875047326088, + 0.07323602586984634, + 0.004164197947829962, + -0.01988888718187809, + 0.0036340525839477777, + -0.018612580373883247, + -0.08561671525239944, + -0.04557187482714653, + -0.0642925351858139, + -0.08895347267389297, + 0.029075443744659424, + -0.015695545822381973, + 0.05313391983509064, + 0.023835889995098114, + -0.06023044139146805, + 0.13796597719192505, + 0.06506241112947464, + 0.0016029452672228217, + -0.017199702560901642, + -0.002463642740622163, + -0.031040968373417854, + 0.034118399024009705, + 0.005979615263640881, + 0.015302767045795918, + -0.062221478670835495, + 0.06768575310707092, + 0.0034237015061080456, + 0.0016844875644892454, + -0.038761936128139496, + 0.001418737811036408, + 0.029635382816195488, + 0.06325897574424744, + -0.005553995259106159, + -0.02304106578230858, + -0.027147844433784485, + 0.06126106157898903, + 0.029072893783450127, + 0.0943271592259407, + -0.04185198247432709, + 0.06234617158770561, + -0.007035630289465189, + -0.0713067352771759, + -0.05468318238854408, + 0.03319987282156944, + 0.04911000281572342, + 0.013848532922565937, + -0.08322260528802872, + -1.6809037717280262e-08, + -0.012277021072804928, + 0.00038267180207185447, + -0.010501128621399403, + -0.0385054275393486, + 0.034028127789497375, + -0.012811479158699512, + -0.011534473858773708, + -0.07607345283031464, + -0.05486558750271797, + 0.04225824028253555, + 6.686645792797208e-05, + 0.03572230786085129, + -0.020473100244998932, + -0.019433386623859406, + -0.0035820649936795235, + 0.07194653153419495, + -0.09813114255666733, + 0.06270395219326019, + -0.045537374913692474, + -0.12112319469451904, + -0.043117959052324295, + 0.07737701386213303, + 0.09489541500806808, + -0.07786883413791656, + 0.07976081222295761, + 0.0603131428360939, + 0.001877623493783176, + 0.015463386662304401, + 0.050070177763700485, + 0.09266596287488937, + 0.029455311596393585, + 0.08711342513561249, + -0.04715660959482193, + 0.04345821589231491, + -0.03634732589125633, + -0.013963403180241585, + 0.06595747172832489, + 0.06837195158004761, + -0.049442119896411896, + 0.07596033066511154, + 0.043198905885219574, + 0.02497546188533306, + 0.04781259968876839, + -0.04055784270167351, + -0.034463416785001755, + -0.01195377204567194, + 0.11625226587057114, + -0.015466129407286644, + -0.041034944355487823, + -0.09704963117837906, + 0.03053644485771656, + 1.0175245961363544e-06, + -0.01881369948387146, + 0.10317763686180115, + -0.015024814754724503, + -0.049926068633794785, + 0.056282032281160355, + 0.1297605186700821, + -0.05034852772951126, + 0.03693484887480736, + 0.10567567497491837, + -0.025666560977697372, + 0.07684977352619171, + -0.03820114582777023 + ], + "skype-logo-bold||*new*,chat,video conference": [ + 0.014518051408231258, + -0.01708134636282921, + 0.03787071257829666, + -0.015087597072124481, + 0.10383107513189316, + -0.027079440653324127, + 0.08707581460475922, + -0.05859678238630295, + 0.0859975665807724, + 0.004382089711725712, + -0.07045751810073853, + 0.025921978056430817, + -0.09433817863464355, + -0.02265552431344986, + 0.06407412886619568, + -0.05231041833758354, + 0.017580341547727585, + -0.07741900533437729, + -0.0060272361151874065, + -0.005303411744534969, + 0.04063381627202034, + -0.02628484182059765, + 0.021109893918037415, + 0.04326162487268448, + 0.044488996267318726, + 0.01974482648074627, + -0.024624409154057503, + 0.030689135193824768, + 0.07682880014181137, + -0.06386864930391312, + 0.01889115944504738, + 0.07372311502695084, + 0.13314782083034515, + 0.08189649134874344, + 0.04042021930217743, + -0.0243082195520401, + 0.047639697790145874, + -0.0002771498402580619, + -0.01347135379910469, + 0.007972433231770992, + 0.014037230052053928, + -0.06917606294155121, + 0.041132863610982895, + 0.007835919968783855, + -0.017035838216543198, + -0.0184616856276989, + -0.0391126424074173, + -0.03966238722205162, + 0.044581376016139984, + 0.05426150932908058, + -0.011064688675105572, + -0.1313866376876831, + -0.05011795461177826, + -0.0487118624150753, + -0.022687390446662903, + 0.05765749514102936, + -0.0516996867954731, + -0.011997492983937263, + 0.09301556646823883, + -0.005545915570110083, + -0.0027082785964012146, + -0.0183901134878397, + 0.04434359073638916, + 0.07873798906803131, + 0.048456717282533646, + -0.005155470222234726, + 0.008391987532377243, + 0.055117081850767136, + -0.03839472681283951, + 0.025572778657078743, + -0.044906336814165115, + 0.013195817358791828, + -0.04848290979862213, + -0.015177960507571697, + -0.037397097796201706, + -0.016573313623666763, + 0.05157686397433281, + -0.025352707132697105, + -0.025093501433730125, + -0.0214978214353323, + 0.042441997677087784, + -0.0045580994337797165, + -0.009127555415034294, + -0.03335803002119064, + 0.1081642434000969, + 0.03220636770129204, + -0.038438811898231506, + -0.05431751161813736, + -0.07028651237487793, + -0.009131294675171375, + -0.20667029917240143, + 0.029226643964648247, + 0.012196936644613743, + -0.01060054637491703, + -0.05662813410162926, + 0.007952570915222168, + 0.011833497323095798, + -0.08337841928005219, + -0.009805697947740555, + 0.07626673579216003, + 0.015673091635107994, + 0.005321509204804897, + 0.10701464116573334, + -0.0433858223259449, + 0.009966191835701466, + 0.009530498646199703, + -0.008188281208276749, + 0.00620915275067091, + 0.06403669714927673, + 0.08527243137359619, + -0.0629601925611496, + -0.05794529244303703, + -0.04318319261074066, + -0.025562364608049393, + -0.014304807409644127, + 0.0438181534409523, + -0.03351660445332527, + -0.06649918109178543, + 0.04499408230185509, + -0.025769615545868874, + 0.04278513044118881, + -0.09090462327003479, + -0.0051138633862137794, + -0.04896743968129158, + -0.05439119040966034, + 0.009826978668570518, + 0.030683498829603195, + -3.520049792290003e-33, + 0.06886132806539536, + 0.04941641539335251, + -0.03829352930188179, + 0.07990681380033493, + 0.04835958406329155, + 0.011084946803748608, + 0.016158364713191986, + -0.03537899628281593, + -0.1221337839961052, + -0.004144033882766962, + 0.03525884449481964, + -0.04204103350639343, + 0.04576455056667328, + 0.035777702927589417, + 0.048522330820560455, + -0.020601650699973106, + -0.049290675669908524, + -0.002955532865598798, + -0.08130226284265518, + -0.1136091947555542, + -0.07728369534015656, + 0.05880286917090416, + -0.04780957102775574, + 0.060003794729709625, + 0.03976829722523689, + -0.008906119503080845, + 0.13788998126983643, + -0.014185463078320026, + 0.05215764418244362, + 0.009645163081586361, + 0.025432128459215164, + 0.04543774202466011, + 0.0497027263045311, + 0.04614948853850365, + 0.05170401930809021, + 0.049248117953538895, + -0.08355830609798431, + -0.039985448122024536, + 0.03228189796209335, + 0.04821381717920303, + -0.03866250440478325, + -0.05983118712902069, + -0.06509986519813538, + -0.03629809990525246, + 0.02294772118330002, + 0.05708187073469162, + -0.011880340985953808, + -0.09488558769226074, + 0.007893258705735207, + -0.017365816980600357, + -0.06545136123895645, + 0.018710115924477577, + -0.041074976325035095, + -0.02925906330347061, + -0.0005090867634862661, + -0.11279270052909851, + -0.010482227429747581, + 0.05818529054522514, + -0.001455285819247365, + -0.08089283108711243, + -0.013194246217608452, + -0.029085898771882057, + -0.019725928083062172, + 0.04783200845122337, + -0.06645339727401733, + 0.057825323194265366, + -0.0008238650043494999, + 0.07016537338495255, + 0.04077836126089096, + -0.07308141142129898, + 0.042269665747880936, + 0.0542788952589035, + 0.02907904051244259, + 0.0023190234787762165, + -0.039529506117105484, + 0.020539788529276848, + -0.030045732855796814, + 0.06247514858841896, + -0.026173973456025124, + 0.09537091851234436, + -0.0006543812341988087, + 0.05014903470873833, + 0.00012073282414348796, + 0.022788891568779945, + 0.00016489958215970546, + -0.03377305716276169, + 0.10249068588018417, + -0.057940397411584854, + -0.07580547034740448, + 0.01696241833269596, + -0.06729957461357117, + -0.019200250506401062, + 0.06769365072250366, + 0.02213878743350506, + -0.061521049588918686, + 2.059683752766542e-33, + 0.045892052352428436, + 0.0886283740401268, + 0.03191705793142319, + -0.004798358306288719, + -0.00543331541121006, + 0.0034585874527692795, + 0.14790749549865723, + 0.05759035423398018, + -0.046346619725227356, + -0.05814038962125778, + 0.08176273107528687, + 0.012767433188855648, + -0.0451323539018631, + -0.04296979308128357, + 0.014532111585140228, + -0.003319901181384921, + 0.0060651605017483234, + -0.039582956582307816, + -0.07570257037878036, + 0.01669355295598507, + 0.057546358555555344, + -0.04853028059005737, + -0.01976855657994747, + 0.02773359976708889, + -0.06351932138204575, + -0.028310954570770264, + 0.037390150129795074, + 0.011130212806165218, + -0.0009753313497640193, + -0.030262416228652, + -0.02496633119881153, + 0.04038672894239426, + -0.05981234833598137, + 0.0509064719080925, + 0.04078948125243187, + 0.016975676640868187, + 0.03593650087714195, + -0.05025215446949005, + -0.0517922043800354, + -0.038291435688734055, + 0.014924164861440659, + -0.011630513705313206, + -0.03406137600541115, + -0.019278105348348618, + 0.026472322642803192, + -0.022480018436908722, + -0.07124664634466171, + -0.07640228420495987, + -0.09262273460626602, + 0.030467871576547623, + 0.04336197301745415, + -0.04537780210375786, + 0.005035237409174442, + 0.010839820839464664, + -0.02142886258661747, + -0.0019417378352954984, + -0.00891088042408228, + 0.060327623039484024, + 0.006039122119545937, + 0.012007915414869785, + 0.007292682770639658, + -0.019569264724850655, + -0.004221155773848295, + -0.0008912295452319086, + 0.07254420220851898, + 0.005306296981871128, + 0.0023672827519476414, + 0.1084504947066307, + -0.03955874964594841, + 0.050485361367464066, + 0.027069736272096634, + 9.719179797684774e-05, + -0.013129995204508305, + 0.08731456100940704, + 0.013216925784945488, + -0.01619553007185459, + 0.06881240010261536, + -0.01240465696901083, + -0.08379064500331879, + 0.026724275201559067, + -0.0272930096834898, + -0.019544044509530067, + -0.036726292222738266, + 0.058600470423698425, + 0.027941010892391205, + 0.07636065781116486, + 0.05300675705075264, + 0.03178811073303223, + -0.09190830588340759, + -0.0014167403569445014, + -0.1319223940372467, + 0.015256992541253567, + 0.026308994740247726, + 0.042435694485902786, + 0.017309002578258514, + -1.7655009898476237e-08, + -0.08866380900144577, + -0.021862110123038292, + 0.015086712315678596, + 0.020589204505085945, + 0.012182117439806461, + 0.03493073582649231, + -0.03778768703341484, + -0.11203819513320923, + 0.06766659766435623, + -0.08941040188074112, + -0.08527575433254242, + -0.005722604691982269, + -0.021254735067486763, + 0.04960852116346359, + -0.005142716225236654, + -0.027127603068947792, + -0.12209337949752808, + 0.04265949875116348, + 0.028836699202656746, + -0.0810687243938446, + -0.01676284708082676, + 0.036047570407390594, + 0.04837386682629585, + 0.0251483041793108, + -0.046800997108221054, + 0.04175485670566559, + -0.030450323596596718, + 0.014831884764134884, + -0.008793816901743412, + -0.012559434399008751, + -0.06351602077484131, + 0.08551136404275894, + 0.04470974579453468, + -0.03466365858912468, + -0.043790243566036224, + -0.04048888012766838, + -0.07739157229661942, + -0.018589720129966736, + 0.005726753268390894, + 0.0924077257514, + 0.07881052792072296, + 0.017623892053961754, + -0.0020179548300802708, + -0.022676769644021988, + -0.018860459327697754, + 0.05432658642530441, + 0.045571211725473404, + -0.04998410493135452, + -0.07461670786142349, + -0.10718473047018051, + -0.019844383001327515, + 0.0318559966981411, + 0.01567084714770317, + 0.01992754079401493, + 0.03320750594139099, + -0.05122625455260277, + 0.0797983705997467, + 0.062451548874378204, + 0.04731222614645958, + 0.04283677786588669, + 0.06764239072799683, + 0.006193043198436499, + -0.0776418074965477, + 0.04863613843917847 + ], + "slack-logo-bold||logos,messaging": [ + 0.030515627935528755, + 0.017390651628375053, + -0.024312566965818405, + 0.044695448130369186, + 0.06529929488897324, + -0.032849062234163284, + 0.04847649484872818, + -0.023310601711273193, + 0.04554453864693642, + 0.027327200397849083, + 0.0040853978134691715, + 0.03339899703860283, + 0.04605529457330704, + 0.005857005249708891, + 0.09182135760784149, + -0.0034377078991383314, + -0.02367710880935192, + -0.036583319306373596, + 0.0179594699293375, + -0.030609043315052986, + 0.047974321991205215, + -0.005912003573030233, + 0.06880023330450058, + 0.022741176187992096, + 0.03944746404886246, + -0.02614784985780716, + 0.027696361765265465, + 0.0035057556815445423, + 0.008814875967800617, + -0.07193577289581299, + 0.011439905501902103, + -0.021030619740486145, + 0.10913071781396866, + 0.0389903299510479, + 0.058526743203401566, + 0.08587800711393356, + 0.05823851004242897, + -0.005225451663136482, + 0.047028496861457825, + 0.04638366401195526, + 0.03498172014951706, + -0.06274378299713135, + -0.012975872494280338, + 0.008331501856446266, + -0.013673637062311172, + 0.01931573823094368, + -0.026160161942243576, + -0.00888069812208414, + -0.0017146087484434247, + -0.006270232610404491, + 0.04987793415784836, + -0.12398945540189743, + -0.056747447699308395, + -0.0027337686624377966, + 0.015913795679807663, + -0.02387980930507183, + -0.06689607352018356, + 0.028061039745807648, + 0.057219602167606354, + -0.023319676518440247, + 0.016797063872218132, + -0.016140585765242577, + 0.030617674812674522, + 0.03371185064315796, + 0.0774805024266243, + 0.03963484242558479, + 0.009451773017644882, + 0.046372782438993454, + -0.08607117831707001, + 0.037895768880844116, + 0.0471835657954216, + -0.025071702897548676, + -0.03822626546025276, + -0.07320704311132431, + -0.011355431750416756, + 0.02130664885044098, + 0.10213130712509155, + 0.05604799836874008, + -0.04239543527364731, + -0.08131453394889832, + -0.08072224259376526, + 0.006374877877533436, + -0.025173861533403397, + 0.007539135403931141, + 0.055849116295576096, + 0.05485590174794197, + -0.0364748053252697, + -0.08369753509759903, + 0.0150461969897151, + 0.0039962599985301495, + -0.0731971487402916, + -0.009552176110446453, + 0.012374461628496647, + 0.06257469952106476, + -0.14247430860996246, + 0.007676099427044392, + -0.017604392021894455, + 0.03565940633416176, + -0.10041135549545288, + 0.0921076163649559, + -0.009560558013617992, + 0.037766922265291214, + 0.09212985634803772, + -0.04638094827532768, + 0.09325622022151947, + 0.03995808959007263, + 0.010717051103711128, + -0.02560489997267723, + 0.017595816403627396, + 0.06618387252092361, + 0.004016377963125706, + 0.012376946397125721, + -0.04858521744608879, + 0.015031496994197369, + 0.000411001848988235, + -0.016042551025748253, + 0.009178994223475456, + -0.008028794080018997, + 0.07620128989219666, + 0.0305933840572834, + 0.043642058968544006, + -0.057792965322732925, + -0.04038725048303604, + -0.000503737770486623, + -0.03331778198480606, + 0.024483099579811096, + -0.03015785478055477, + -3.738826923393293e-33, + 0.008323220536112785, + 0.06334745138883591, + -0.031604599207639694, + 0.09509041160345078, + -0.01969365030527115, + 0.00792959239333868, + -0.05865210294723511, + -0.06474790722131729, + -0.08293110132217407, + 0.03564407676458359, + 0.006040132604539394, + 0.03415500000119209, + 0.02914511412382126, + 0.10862358659505844, + -0.002902353648096323, + -0.07735100388526917, + 0.004914833698421717, + -0.0631103441119194, + -0.056261543184518814, + -0.04516523703932762, + -0.0780894085764885, + -0.027322057634592056, + -0.09039577096700668, + -0.04933170974254608, + 0.002982065547257662, + 0.007744022645056248, + 0.11802171915769577, + -0.01641189679503441, + -0.013031061738729477, + -0.002818207023665309, + 0.033085111528635025, + 0.027026982977986336, + 0.08516460657119751, + 0.056133102625608444, + -0.03684054687619209, + -0.017992950975894928, + -0.009518362581729889, + 0.008088899776339531, + -0.025478921830654144, + 0.061815716326236725, + 0.024368803948163986, + -0.042956117540597916, + -0.03921431303024292, + -0.024336598813533783, + -0.008021941408514977, + 0.06440841406583786, + 0.019414253532886505, + -0.09713418781757355, + 0.1093335822224617, + -0.046112626791000366, + 0.03322753682732582, + -0.004633485339581966, + 0.036605436354875565, + -0.02501116693019867, + 0.04175311699509621, + -0.09798067063093185, + -0.056511666625738144, + 0.04714229330420494, + 0.002201574621722102, + -0.012026476673781872, + -0.016798531636595726, + -0.047473203390836716, + 0.07477118074893951, + 0.0060091824270784855, + -0.004181241616606712, + 0.12100765854120255, + 0.011844041757285595, + 0.08523242920637131, + -0.0009441425791010261, + -0.06705484539270401, + -0.04203096032142639, + 0.03788313269615173, + 0.01900298520922661, + 0.01160719245672226, + -0.10628950595855713, + -0.0016394967678934336, + 0.037704721093177795, + 0.06088591367006302, + 0.056320689618587494, + 0.03525723144412041, + -0.02305630035698414, + -0.03510061651468277, + -0.06201795116066933, + 0.04507414996623993, + 0.01301228255033493, + 0.0421169251203537, + 0.0670882910490036, + -0.08083771914243698, + -0.04615704342722893, + 0.02020154893398285, + -0.06928909569978714, + 0.049687307327985764, + 0.0009821928106248379, + 0.03039996512234211, + -0.09473994374275208, + 2.1235830746642648e-33, + 0.06206797808408737, + 0.0713060274720192, + 0.02517739310860634, + -0.00305415247566998, + -0.038286078721284866, + 0.02846921794116497, + 0.08129871636629105, + 0.039275161921978, + -0.1064096987247467, + 0.054616887122392654, + 0.047205451875925064, + -0.04209187626838684, + -0.15856610238552094, + -0.02331346645951271, + 0.031040361151099205, + -0.01072377897799015, + 0.04352662339806557, + 0.03151330724358559, + -0.09278658777475357, + -0.022839559242129326, + -0.07260681688785553, + 0.010551325045526028, + -0.05810581147670746, + -0.009396874345839024, + -0.011618142016232014, + 0.05063432827591896, + 0.016897881403565407, + 0.04118872061371803, + -0.04931820183992386, + -0.07084695249795914, + -0.040869712829589844, + 0.01853562705218792, + -0.010115374810993671, + 0.03069300390779972, + 0.00948824267834425, + -0.004822212737053633, + -0.033019036054611206, + -0.014666877686977386, + -0.01133965328335762, + -0.01562909595668316, + 0.03963988274335861, + -0.004814349114894867, + -0.029978511855006218, + 0.060333192348480225, + -0.01591605506837368, + -0.003736933460459113, + -0.05484999343752861, + -0.16099010407924652, + -0.11792473495006561, + 0.11149296164512634, + 0.08395339548587799, + -0.03814079239964485, + 0.004675920587033033, + 0.0495719276368618, + -0.1241295114159584, + -0.020495787262916565, + -0.02798900380730629, + 0.029632391408085823, + -0.02992444485425949, + 0.007762125227600336, + 0.027159344404935837, + -0.04690340533852577, + -0.03381252661347389, + -0.04555940255522728, + 0.05521326884627342, + -0.04721944406628609, + 0.00959276407957077, + -0.03340373560786247, + -0.05542801693081856, + 0.06455425918102264, + 0.049625542014837265, + -0.05151096731424332, + -0.02480175346136093, + 0.001734912395477295, + 0.01977083459496498, + -0.01342950202524662, + 0.047984711825847626, + -0.03083280473947525, + -0.08511094748973846, + 0.009840159676969051, + -0.025500159710645676, + 0.010275280103087425, + -0.07357316464185715, + 0.092086561024189, + -0.022319015115499496, + 0.06491821259260178, + -0.011503428220748901, + 0.074711374938488, + 0.004976124968379736, + -0.04395882412791252, + -0.01815589889883995, + 0.023427097126841545, + 0.06463374942541122, + 0.050168875604867935, + -0.015046280808746815, + -1.4638015244372582e-08, + -0.034461185336112976, + -0.03688393533229828, + -0.006659489590674639, + -0.011620166711509228, + 0.036031268537044525, + 0.046434927731752396, + -0.06413434445858002, + -0.12245597690343857, + -0.04465630650520325, + 0.017693180590867996, + -0.06343343108892441, + -0.011352626606822014, + -0.10399217158555984, + -0.012358002364635468, + -0.024789704009890556, + -0.06475187093019485, + -0.10978060960769653, + 0.06253895908594131, + -0.008651415817439556, + -0.028968339785933495, + -0.05325263366103172, + 0.08949980139732361, + -0.007250746246427298, + 0.031542811542749405, + 0.020497437566518784, + -0.03103719651699066, + -0.015268967486917973, + 0.05064410716295242, + 0.018268827348947525, + 0.01376280002295971, + 0.0024139671586453915, + 0.04516574367880821, + 0.07913696765899658, + -0.013825362548232079, + -0.07000266760587692, + -0.015950236469507217, + -0.002066047163680196, + -0.014466064050793648, + -0.018956320360302925, + 0.09386830776929855, + 0.04393010586500168, + -0.04668320342898369, + 0.0039129783399403095, + -0.04534534737467766, + -0.032449714839458466, + 0.027063583955168724, + 0.03458472713828087, + 0.025110874325037003, + -0.02879643253982067, + -0.016845371574163437, + 0.00994398444890976, + -0.013534133322536945, + 0.003257535398006439, + 0.03367804363369942, + -0.09924189746379852, + -0.11344415694475174, + 0.02210547961294651, + 0.0851406529545784, + 0.03111598826944828, + 0.06879997998476028, + 0.12288118153810501, + -0.09820228815078735, + -0.06405771523714066, + -0.04591672495007515 + ], + "sliders-bold||music,audio,faders,filters,equalizer,volume,settings,preferences": [ + -0.012800249271094799, + -0.06562601029872894, + -0.01641603372991085, + 0.025758814066648483, + -0.0032173339277505875, + 0.02009916678071022, + 0.016007354483008385, + -0.060782741755247116, + 0.002050915965810418, + -0.0446254126727581, + -0.018662068992853165, + 0.015003559179604053, + 0.013398360460996628, + -0.07984142750501633, + 0.005423944443464279, + 0.04366106912493706, + 0.016823140904307365, + 0.05078165605664253, + -0.04153924807906151, + -0.03732364624738693, + -0.03323496878147125, + 0.006138940341770649, + -0.047443728893995285, + 0.03573319688439369, + -0.011535675264894962, + 0.042236849665641785, + -0.0006419881829060614, + 0.06278186291456223, + 0.0412893183529377, + -0.055057451128959656, + 0.045602861791849136, + -0.026418641209602356, + 0.14506466686725616, + 0.014986283145844936, + -0.09334040433168411, + -0.08731578290462494, + -0.04423489049077034, + -0.055940501391887665, + -0.04351802170276642, + 0.039145518094301224, + 0.025517534464597702, + -0.048492126166820526, + 0.017225060611963272, + -0.04912630468606949, + -0.12340949475765228, + -0.029192307963967323, + -0.06254024058580399, + -0.07468383759260178, + 0.002473073545843363, + -0.022113777697086334, + 0.025484614074230194, + -0.08417119085788727, + -0.03404848277568817, + 0.039320919662714005, + -0.008057360537350178, + -0.013068145141005516, + -0.057285651564598083, + 0.050249915570020676, + 0.09081490337848663, + -0.03430842608213425, + -0.03733764588832855, + -0.012717190198600292, + 0.0645969808101654, + 0.03201889991760254, + -0.008949308656156063, + 0.04545218497514725, + 0.023055827245116234, + 0.07219795882701874, + -0.011987446807324886, + 0.025473162531852722, + 0.0024679459165781736, + 0.006330261472612619, + 0.025224337354302406, + 0.006535767577588558, + -0.0010474876035004854, + -0.03806941211223602, + 0.03486690670251846, + -0.015246575698256493, + -0.10424762219190598, + 0.010104852728545666, + -0.019993791356682777, + -0.09654898196458817, + -0.06225207448005676, + -0.053100794553756714, + 0.03795626014471054, + 0.030890243127942085, + -0.056683287024497986, + -0.062077172100543976, + -0.04184962064027786, + 0.005583771504461765, + -0.11024092882871628, + -0.05778205394744873, + -0.034589219838380814, + -0.010005961172282696, + -0.024502823129296303, + -0.0019107179250568151, + 0.003864803584292531, + -0.06203877925872803, + 0.01755579188466072, + 0.031226037070155144, + -0.006914535071700811, + -0.024122662842273712, + 0.08720523118972778, + 0.05729207396507263, + -0.08669177442789078, + -0.10630641877651215, + -0.036603331565856934, + 0.10836288332939148, + -0.007214788813143969, + 0.031988002359867096, + 0.03166097030043602, + -0.07135070860385895, + -0.010573583655059338, + -0.04620782285928726, + 0.042621150612831116, + -0.043080415576696396, + 0.006840137764811516, + 0.04649823158979416, + 0.10617729276418686, + -0.03180532529950142, + 0.050864484161138535, + -0.02988245338201523, + -0.04428453370928764, + -0.06629422307014465, + 0.04710274189710617, + 0.006552690640091896, + -0.03799816966056824, + -1.3165617544446239e-33, + 0.04320637136697769, + -0.046591125428676605, + -0.03474946320056915, + 0.016478996723890305, + 0.03787451237440109, + 0.006218857131898403, + 0.005742062348872423, + -0.00609186477959156, + -0.0364852212369442, + 0.022101979702711105, + 0.09032683074474335, + 0.11558207869529724, + -0.04505254700779915, + 0.06768026202917099, + 0.03678666055202484, + -0.09650246053934097, + 0.03139181435108185, + 0.061186376959085464, + -0.05316048115491867, + -0.0838625356554985, + -0.08088817447423935, + 0.04980546608567238, + -0.01160688977688551, + -0.01196673046797514, + -0.0038629677146673203, + 0.047472018748521805, + 0.03952574357390404, + -0.014906588941812515, + -0.05570943281054497, + -0.0230004470795393, + -0.002794357016682625, + 0.02186286821961403, + 0.07921747863292694, + -0.011627483181655407, + 0.036584291607141495, + 0.04742211103439331, + -0.058606721460819244, + 0.03786550834774971, + 0.09657790511846542, + -0.0883774533867836, + -0.07998514920473099, + -0.060246724635362625, + -0.053766027092933655, + -0.02578529715538025, + -0.009929297491908073, + 0.09246593713760376, + -0.0038321164902299643, + 0.005731085315346718, + 0.04644165188074112, + 0.05484963580965996, + 0.010437204502522945, + 0.010136064141988754, + -0.03504621610045433, + 0.024749688804149628, + 0.0700879916548729, + -0.060681410133838654, + 0.004464359953999519, + 0.12656399607658386, + 0.04044995456933975, + 0.020681744441390038, + 0.06546270102262497, + 0.04581540450453758, + 0.06305868178606033, + -0.13168370723724365, + 0.03882803022861481, + 0.11253656446933746, + 0.05926259607076645, + -0.02722405083477497, + 0.03345053642988205, + -0.04825567826628685, + -0.016745775938034058, + 0.0203346386551857, + 0.040208954364061356, + 0.0770224779844284, + 0.0007456055609509349, + 0.038978949189186096, + 0.01046797540038824, + 0.011574206873774529, + 0.04290889576077461, + -0.05343193933367729, + -0.11151522397994995, + 0.03977370634675026, + -0.056058481335639954, + 0.12978731095790863, + -0.0581342950463295, + 0.04473043978214264, + -0.010145890526473522, + -0.039224956184625626, + -0.03636731207370758, + 0.0095896041020751, + -0.08269036561250687, + 0.03151979297399521, + -0.05006393790245056, + 0.0019494467414915562, + -0.09170687943696976, + -8.555191865631952e-34, + 0.05964070186018944, + 0.05226006731390953, + -0.02019692026078701, + 0.08490767329931259, + 0.016056973487138748, + 0.025963574647903442, + 0.019895197823643684, + 0.04573411867022514, + 0.105011485517025, + 0.0015900565776973963, + 0.10573238134384155, + -0.013087304309010506, + -0.036073390394449234, + -0.10038679838180542, + -0.04357165843248367, + 0.039257846772670746, + 0.02420155145227909, + 0.026224499568343163, + 0.010199430398643017, + -0.011234916746616364, + -0.04408203437924385, + 0.030499745160341263, + -0.022461457177996635, + 0.06857340782880783, + -0.09303948283195496, + -0.01317618414759636, + 0.04110581800341606, + 0.0055939434096217155, + -0.02547706477344036, + -0.025592736899852753, + 0.020534196868538857, + -0.05744641646742821, + -0.0188209880143404, + -0.07679035514593124, + -0.005202209576964378, + -0.03501265496015549, + 0.014295446686446667, + 0.04346579313278198, + 0.002615820849314332, + -0.024295920506119728, + -0.04688499867916107, + 0.04974903538823128, + 0.035217829048633575, + 0.05880182236433029, + 0.007850253954529762, + 0.028152301907539368, + 0.06257660686969757, + -0.004678463563323021, + 0.002975149778649211, + 0.006260296795517206, + 0.0664517879486084, + -0.036471981555223465, + 0.041197970509529114, + -0.018563153222203255, + -0.06983666121959686, + -0.06610391288995743, + -0.002208312740549445, + -0.05277074873447418, + 0.016817646101117134, + 0.04722115024924278, + 0.03233635425567627, + 0.05232543498277664, + -0.050485365092754364, + -0.044613488018512726, + -0.06457708030939102, + 0.05178022384643555, + 0.04866206273436546, + -0.0400087796151638, + 0.015974296256899834, + 0.017665758728981018, + 0.054348334670066833, + -0.07428611069917679, + 0.07034871727228165, + -0.020152421668171883, + 0.007201242260634899, + -0.07566703855991364, + -0.044067930430173874, + -0.02201460860669613, + -0.021998047828674316, + 0.05072597786784172, + -0.0025842387694865465, + 0.03751952946186066, + 0.050553418695926666, + -0.041055113077163696, + -0.037015151232481, + 0.10403990000486374, + -0.008187748491764069, + 0.0002867015718948096, + 0.0204685777425766, + -0.022080404683947563, + -0.015226338990032673, + 0.056600987911224365, + 0.05717172846198082, + -0.0008584308670833707, + -0.07646660506725311, + -2.156165557209988e-08, + 0.0047201975248754025, + -0.005531453527510166, + -0.012998012825846672, + -0.0903383418917656, + -0.051008712500333786, + -0.03805789723992348, + 0.05190957337617874, + 0.00697114085778594, + -0.05888640880584717, + -0.023944001644849777, + 0.09040389955043793, + -0.023954764008522034, + 0.0013698979746550322, + 0.019364820793271065, + 0.054253965616226196, + 0.02710006758570671, + -0.06528506428003311, + 0.14696872234344482, + -0.018782934173941612, + -0.07963819056749344, + 0.007987097837030888, + 0.02735544927418232, + 0.07782749831676483, + -0.07104083150625229, + 0.1048903614282608, + 0.05666416138410568, + -0.040941089391708374, + -0.005165902432054281, + 0.036222826689481735, + 0.03942088782787323, + 0.04779503867030144, + 0.03617820888757706, + 0.04155462980270386, + -0.014619627967476845, + -0.023330137133598328, + -0.010245267301797867, + -0.08355304598808289, + -0.04096248745918274, + -0.058237455785274506, + 0.09375326335430145, + -0.0495278462767601, + -0.07849518209695816, + -0.034242160618305206, + 0.025728803128004074, + -0.07488872110843658, + -0.006270489189773798, + 0.08557301759719849, + -0.01926264725625515, + -0.09589281678199768, + -0.04568295180797577, + 0.0005802519735880196, + 0.007494385354220867, + 0.0031980101484805346, + 0.042153459042310715, + 0.05336691811680794, + -0.09769895672798157, + -0.01814963109791279, + 0.09452442079782486, + -0.05235074460506439, + 0.02434707246720791, + 0.03775155544281006, + 0.025185182690620422, + 0.005621335934847593, + 0.06540898233652115 + ], + "sliders-horizontal-bold||music,audio,faders,filters,equalizer,volume,settings,preferences": [ + -0.014112930744886398, + -0.04155559465289116, + -0.02077588438987732, + -0.0037323031574487686, + -0.025769639760255814, + 0.038293175399303436, + -0.007168111857026815, + -0.06340835243463516, + 0.008528860285878181, + -0.04031513258814812, + -0.0054445695132017136, + 0.047195445746183395, + 0.019621046259999275, + -0.0455753430724144, + -0.009929938241839409, + 0.023997047916054726, + 0.00041313914698548615, + 0.05450310558080673, + -0.03369699791073799, + -0.031164387241005898, + -0.04843297228217125, + -0.019044887274503708, + -0.07104453444480896, + 0.025339283049106598, + -0.038711067289114, + 0.05822217836976051, + -0.007736723870038986, + 0.07811760902404785, + 0.05130675062537193, + -0.07865310460329056, + 0.03587067499756813, + -0.006982340011745691, + 0.11529839038848877, + 0.01625710353255272, + -0.10848374664783478, + -0.10757797211408615, + -0.05905836820602417, + -0.05222352221608162, + -0.03786077722907066, + 0.05285822972655296, + 0.019014062359929085, + -0.05856584385037422, + 0.005309059284627438, + -0.03777104616165161, + -0.12887462973594666, + -0.04491160437464714, + -0.08252833783626556, + -0.07380208373069763, + 0.02913365513086319, + -0.003304649144411087, + 0.0213543139398098, + -0.08601727336645126, + -0.021914741024374962, + 0.07655137777328491, + -0.006013675592839718, + -0.011977476999163628, + -0.03829577937722206, + 0.05888063460588455, + 0.10370248556137085, + -0.04708956182003021, + 0.0012890739599242806, + -0.009426990523934364, + 0.08325287699699402, + 0.022918451577425003, + 0.0010158082004636526, + 0.03246523067355156, + -0.00729081965982914, + 0.06593252718448639, + -0.02094373106956482, + 0.0372186154127121, + 0.015965860337018967, + -0.026072820648550987, + 0.031543757766485214, + -0.03393930196762085, + 0.011237426660954952, + -0.042862385511398315, + 0.02891756221652031, + -0.006752035114914179, + -0.1185302808880806, + 0.0038654471281915903, + -0.002687036758288741, + -0.06047091633081436, + -0.06860622763633728, + -0.032199613749980927, + 0.003829054068773985, + 0.023479359224438667, + -0.0656786784529686, + -0.04529470577836037, + -0.035764530301094055, + 0.0038848218973726034, + -0.10749932378530502, + -0.043227605521678925, + -0.0236907247453928, + -0.017027534544467926, + -0.03830069676041603, + -0.02026810310781002, + -0.015840016305446625, + -0.06608428061008453, + 0.0067109614610672, + 0.02669568918645382, + 0.0050867339596152306, + -0.039351336658000946, + 0.0813588947057724, + 0.04370087385177612, + -0.06279029697179794, + -0.10716697573661804, + -0.0559353306889534, + 0.08937538415193558, + -0.006457442417740822, + 0.02362564392387867, + 0.015235974453389645, + -0.03165048360824585, + -0.026409320533275604, + -0.01940159499645233, + 0.046798884868621826, + -0.0351896770298481, + 0.005839596502482891, + 0.0736248716711998, + 0.09085890650749207, + -0.02979912795126438, + 0.0583510547876358, + -0.02336856909096241, + -0.060662321746349335, + -0.06136889383196831, + 0.05439687520265579, + 0.034718241542577744, + -0.04055744782090187, + -2.008928294420936e-33, + 0.03839866444468498, + -0.06620218604803085, + -0.01728043146431446, + 0.030840788036584854, + 0.055840421468019485, + -0.0027155939023941755, + -0.0022133972961455584, + 0.013378681614995003, + -0.043661199510097504, + 0.010556082241237164, + 0.10800657421350479, + 0.11457966268062592, + -0.05963515490293503, + 0.06090778857469559, + 0.034805525094270706, + -0.12866410613059998, + 0.018225902691483498, + 0.05254851654171944, + -0.08561956882476807, + -0.07787103950977325, + -0.09251351654529572, + 0.022340135648846626, + 0.003998769912868738, + -0.02046382613480091, + 0.014966811053454876, + 0.04195645824074745, + 0.023750193417072296, + -0.033383626490831375, + -0.06679587066173553, + -0.01597844623029232, + -0.024334631860256195, + 0.016683530062437057, + 0.09111303091049194, + -0.03425731882452965, + 0.05098484829068184, + 0.05211370810866356, + -0.06832287460565567, + 0.04590815678238869, + 0.09068664908409119, + -0.06741120666265488, + -0.09776981920003891, + -0.06625963002443314, + -0.052737750113010406, + -0.043328333646059036, + 0.004770921543240547, + 0.10686589032411575, + 0.011700552888214588, + 0.01360992155969143, + 0.04199543222784996, + 0.03790251538157463, + 0.015109192579984665, + 0.015832670032978058, + -0.04057053104043007, + 0.008728014305233955, + 0.08154089748859406, + -0.06422311812639236, + -0.00117827660869807, + 0.16044944524765015, + 0.02355090342462063, + 0.00924610998481512, + 0.06516765058040619, + 0.03796083852648735, + 0.052273962646722794, + -0.1270490139722824, + 0.03244386240839958, + 0.08961161971092224, + 0.035866398364305496, + -0.026954539120197296, + 0.04347173124551773, + -0.030081748962402344, + -0.010492181405425072, + 0.010646237060427666, + 0.0453840047121048, + 0.08623921126127243, + -0.001826716004870832, + 0.032551128417253494, + -0.012098241597414017, + 0.02236408367753029, + 0.06029574200510979, + -0.056220244616270065, + -0.10304418206214905, + 0.05337454378604889, + -0.040602270513772964, + 0.08159010112285614, + -0.05983053147792816, + 0.03390376642346382, + -0.012036400847136974, + -0.03311760723590851, + -0.02602553553879261, + -0.009974504821002483, + -0.1056784987449646, + 0.04328970983624458, + -0.01645517721772194, + 0.012688837945461273, + -0.08684267103672028, + -9.1418370150892e-34, + 0.05083616077899933, + 0.03333453834056854, + -0.03261808305978775, + 0.0558464489877224, + -0.0012593355495482683, + 0.03725814074277878, + 0.029409995302557945, + 0.058660946786403656, + 0.07749184966087341, + 0.03490413725376129, + 0.11020894348621368, + -0.003753987140953541, + -0.06992223113775253, + -0.09097738564014435, + -0.03047334775328636, + 0.03842768445611, + 0.037110697478055954, + 0.03391077741980553, + 0.01773969456553459, + -0.007334865164011717, + -0.0281037837266922, + 0.018135029822587967, + -0.03509391471743584, + 0.07666424661874771, + -0.08066091686487198, + -0.01572398841381073, + 0.06533210724592209, + 0.014345343224704266, + -0.018384475260972977, + -0.008639249950647354, + 0.015696389600634575, + -0.06454488635063171, + -0.00530097633600235, + -0.088413305580616, + -0.019673597067594528, + -0.052138783037662506, + -0.00744116585701704, + 0.04218645021319389, + 0.02261688932776451, + -0.03910438343882561, + -0.06500772386789322, + 0.05197712033987045, + 0.08079230785369873, + 0.05261790379881859, + 0.0016524158418178558, + 0.012524775229394436, + 0.05105265602469444, + 0.01855466142296791, + -0.0016683825524523854, + 0.018598882481455803, + 0.03736111521720886, + -0.021930620074272156, + 0.03837798535823822, + -0.016210418194532394, + -0.06679310649633408, + -0.06958582997322083, + -0.03922291845083237, + -0.04257377237081528, + 0.003939259331673384, + 0.04699663817882538, + 0.01866268552839756, + 0.055215395987033844, + -0.05070175230503082, + -0.0631101131439209, + -0.05384160205721855, + 0.07043121010065079, + 0.04996724799275398, + -0.06875745207071304, + 0.008520236238837242, + 0.01831451803445816, + 0.060803718864917755, + -0.04820385202765465, + 0.05629311874508858, + -0.03545025363564491, + -0.002527103293687105, + -0.07708486914634705, + -0.032089754939079285, + -0.011135070584714413, + -0.02037968300282955, + 0.03114047273993492, + -0.02016362175345421, + 0.016597453504800797, + 0.05534417927265167, + -0.023538760840892792, + -0.05474161356687546, + 0.08637093007564545, + -0.017784660682082176, + 0.003786603221669793, + 0.0439508892595768, + -0.016120251268148422, + -0.004115838557481766, + 0.03713531047105789, + 0.05997154116630554, + -0.010913487523794174, + -0.0470898412168026, + -2.2035615998561298e-08, + 0.013116792775690556, + -0.036910492926836014, + 0.004200122784823179, + -0.08470045775175095, + -0.0627121776342392, + -0.018153229728341103, + 0.05609079822897911, + 0.007564313244074583, + -0.02703992836177349, + -0.024683961644768715, + 0.08839751034975052, + -0.010951324366033077, + 0.002366195432841778, + 0.02657843753695488, + 0.045368120074272156, + 0.023486848920583725, + -0.06922195851802826, + 0.16254575550556183, + -0.0014222734607756138, + -0.0667809322476387, + 0.024165116250514984, + 0.018707090988755226, + 0.07841828465461731, + -0.03971128910779953, + 0.10018676519393921, + 0.07036717981100082, + -0.06221125274896622, + 0.016259843483567238, + 0.039429984986782074, + 0.023246079683303833, + 0.029590867459774017, + 0.04369619861245155, + 0.04062558338046074, + -0.012058752588927746, + 0.006681383121758699, + -0.025124697014689445, + -0.0877632424235344, + -0.01494208537042141, + -0.04080096259713173, + 0.06165628507733345, + -0.05897967517375946, + -0.07564960420131683, + -0.023990465328097343, + 0.02278074063360691, + -0.045604340732097626, + -0.01742713898420334, + 0.09224805980920792, + 0.002022699685767293, + -0.09243270754814148, + -0.04753027483820915, + 0.006606063339859247, + 0.0030309006106108427, + 0.019436147063970566, + 0.05041179805994034, + 0.06753329932689667, + -0.07362211495637894, + -0.024382689967751503, + 0.07022229582071304, + -0.06462197750806808, + 0.007165724877268076, + 0.0390172153711319, + 0.043369144201278687, + -0.013808631338179111, + 0.06578575819730759 + ], + "slideshow-bold||pictures,images,photography,gallery,carousel": [ + -0.009666044265031815, + -0.03078298829495907, + -0.03817068040370941, + 0.0379137247800827, + 0.027267400175333023, + -0.008018672466278076, + 0.02909249998629093, + -0.03892522305250168, + 0.005353080574423075, + -0.0584220327436924, + -0.006094678770750761, + 0.09030521661043167, + 0.06623358279466629, + -0.001400817884132266, + -0.0007933737942948937, + 0.002270032651722431, + 0.02320239320397377, + 0.026844682171940804, + 0.011664453893899918, + 0.01572566106915474, + -0.03174939006567001, + -0.004278366919606924, + 0.02337961085140705, + 0.01953613944351673, + 0.012811652384698391, + 0.026378924027085304, + 0.025232067331671715, + -5.3497620683629066e-05, + 0.008965656161308289, + -0.04865468665957451, + -0.06127466261386871, + -0.0317545048892498, + 0.10606006532907486, + 0.04118674248456955, + 0.02640349790453911, + 0.0398695170879364, + -0.08878207206726074, + -0.008270205929875374, + -0.056924931704998016, + 0.07410792261362076, + 0.006332016084343195, + -0.06627482175827026, + 0.013084836304187775, + -0.022743819281458855, + -0.0031273162458091974, + -0.06711363792419434, + -0.03727835416793823, + -0.04304913431406021, + 0.05266720429062843, + 0.007542002014815807, + -0.03940184786915779, + -0.06902527809143066, + -0.08292418718338013, + 0.002659578574821353, + 0.02387767843902111, + -0.07373557239770889, + -0.011777576059103012, + -0.023706285282969475, + 0.0769302248954773, + -0.008525132201611996, + 0.0415564589202404, + 0.05561341717839241, + 0.07816373556852341, + 0.060977280139923096, + 0.05889029800891876, + 0.05078614130616188, + -0.005821974948048592, + 0.04933710768818855, + -0.02653461880981922, + -0.012413195334374905, + 0.015546005219221115, + 0.020946312695741653, + 0.015394889749586582, + -0.03473249077796936, + -0.02404467761516571, + -0.02639083005487919, + 0.01790066435933113, + -0.04053680971264839, + -0.07349010556936264, + -0.0304405577480793, + -0.009452814236283302, + -0.0813862755894661, + -0.050767432898283005, + -0.019022900611162186, + 0.09693711996078491, + -0.0033796278294175863, + -0.07615814357995987, + -0.058031126856803894, + -0.048990726470947266, + -0.027004562318325043, + -0.11013305187225342, + -0.02273685112595558, + -0.04822621867060661, + 0.029887571930885315, + -0.02906465344130993, + -0.02197781763970852, + 0.02380427159368992, + -0.07422865927219391, + -0.060698479413986206, + 0.06303268671035767, + 0.02420458011329174, + 0.01358670461922884, + 0.11337453126907349, + 0.04256567358970642, + -0.08690361678600311, + -0.024858660995960236, + -0.010014298371970654, + 0.015875380486249924, + -0.018575677648186684, + -0.008884049020707607, + -0.0020650126971304417, + -0.09387049823999405, + -0.021281898021697998, + -0.09817496687173843, + -0.05066225305199623, + -0.09938275814056396, + -0.05580318346619606, + -0.03337465971708298, + 0.06316515803337097, + -0.05402729660272598, + 0.07369805872440338, + -0.006944310385733843, + -0.020707979798316956, + -0.08982837200164795, + -0.03138979896903038, + 0.002179641742259264, + -0.0030206446535885334, + -1.4484649857408505e-33, + 0.06485826522111893, + -0.023172082379460335, + 0.020394667983055115, + 0.06864219903945923, + 0.037068482488393784, + 0.028599103912711143, + -0.03865770995616913, + -0.013631763868033886, + -0.12742286920547485, + 0.022233009338378906, + 0.1481611132621765, + 0.06795963644981384, + -0.019112637266516685, + 0.08469951897859573, + 0.011825711466372013, + -0.03359559178352356, + 0.035243093967437744, + 0.016157208010554314, + -0.010418579913675785, + -0.011074239388108253, + -0.07434377074241638, + 0.06548884510993958, + -0.02717055194079876, + 0.00762367807328701, + -0.06479045748710632, + 0.006620637606829405, + 0.057259608060121536, + -0.007746406830847263, + -0.057938337326049805, + 0.02161467634141445, + -0.025787830352783203, + 0.04664944112300873, + 0.057876452803611755, + -0.036844100803136826, + 0.04586925730109215, + -0.0516757108271122, + -0.08893470466136932, + -0.0298767127096653, + 0.07241436094045639, + 0.03715454041957855, + -0.08104297518730164, + -0.043468330055475235, + -0.020428383722901344, + 0.016464922577142715, + -0.027062105014920235, + 0.16501295566558838, + 0.010273240506649017, + -0.011788285337388515, + 0.02980067767202854, + 0.09489551186561584, + 0.013090472668409348, + -0.006212620995938778, + -0.029983045533299446, + 0.003841700265184045, + 0.03042878583073616, + -0.06009456515312195, + -0.03302180394530296, + 0.08195799589157104, + -0.0039163194596767426, + -0.06260635703802109, + 0.0453517772257328, + 0.0370626226067543, + 0.01237923838198185, + -0.06724847853183746, + -0.01186185609549284, + 0.11518368124961853, + -0.032003726810216904, + 0.08349654823541641, + 0.06770983338356018, + 0.021559618413448334, + -0.008486433885991573, + 0.04634101316332817, + 0.012996984645724297, + 0.02173946611583233, + 0.04632675275206566, + 0.0389958880841732, + 0.038558878004550934, + 0.018915237858891487, + 0.009282509796321392, + -0.03168284520506859, + -0.1490471363067627, + -0.016837967559695244, + -0.02295554243028164, + 0.06924132257699966, + -0.0814177542924881, + 0.03442029654979706, + -0.02033907361328602, + -0.01258894708007574, + -0.025147024542093277, + 0.04413755610585213, + -0.03105805441737175, + 0.08196723461151123, + -0.01620473526418209, + 0.04356011003255844, + -0.09890005737543106, + -9.624580402548258e-34, + 0.07591944187879562, + 0.06507924944162369, + -0.08061959594488144, + -0.05850568786263466, + -0.005837264005094767, + 0.008650774136185646, + 0.024472365155816078, + 0.050415921956300735, + 0.020692875608801842, + 0.03748933970928192, + 0.056752149015665054, + -0.02039191871881485, + -0.13110953569412231, + -0.07703042030334473, + -0.03528967499732971, + -0.017325857654213905, + 0.08383399248123169, + 0.003493391675874591, + -0.047494810074567795, + 0.03909088671207428, + 0.01915203221142292, + 0.07639727741479874, + -0.03486359491944313, + 0.06819754093885422, + -0.0591471791267395, + 0.07315585017204285, + 0.04183747246861458, + -0.012329964898526669, + -0.03259235620498657, + 0.01115331519395113, + 0.000575890822801739, + -0.06186018884181976, + 0.04142499715089798, + 0.02562747523188591, + -0.07293009757995605, + 0.03514779359102249, + 0.025339247658848763, + -0.11769971251487732, + 0.0012513281544670463, + -0.021564746275544167, + -0.008741920813918114, + 0.011945265345275402, + 0.025190550833940506, + 0.06838344037532806, + -0.011941812932491302, + -0.05714874714612961, + 0.00199656980112195, + 0.0003204396925866604, + 0.058502573519945145, + 0.059318657964468, + -0.04222781956195831, + -0.07060937583446503, + 0.020895620808005333, + -0.028831981122493744, + -0.04142884165048599, + -0.06138040870428085, + -0.04835212230682373, + 0.018526021391153336, + 0.058648593723773956, + 0.03848252445459366, + 0.0018039101269096136, + 0.07014310359954834, + -0.06003887206315994, + -0.04967597499489784, + -0.043946173042058945, + 0.016436472535133362, + 0.029621992260217667, + -0.07782813906669617, + -0.0064130546525120735, + 0.05440285801887512, + 0.024453425779938698, + 0.04547267407178879, + 0.09116281569004059, + 0.01171049103140831, + 0.02485659345984459, + -0.02510286681354046, + 0.0543757900595665, + 0.07571414858102798, + 0.06206078454852104, + -0.02970321848988533, + -0.01904102973639965, + 0.010866763070225716, + -0.022484438493847847, + 0.0028753781225532293, + -0.05458975210785866, + 0.06796858459711075, + -0.07086484134197235, + -0.06376726925373077, + 0.0360468365252018, + -0.05417351797223091, + -0.05765704810619354, + 0.06409157067537308, + 0.05038977041840553, + -0.01838776469230652, + -0.0344260148704052, + -1.9686071439650732e-08, + 0.022787759080529213, + -0.01037092786282301, + -0.02080274559557438, + -0.08725908398628235, + -0.029070446267724037, + -0.09278221428394318, + -0.02080952376127243, + -0.0018101680325344205, + -0.019941097125411034, + -0.056208327412605286, + 0.12755316495895386, + 0.006320185959339142, + -0.023080551996827126, + -0.028174828737974167, + 0.0431487075984478, + 0.02059077098965645, + -0.05225372314453125, + 0.07438299804925919, + -0.0054917545057833195, + -0.09525587409734726, + -0.010837724432349205, + -0.031241033226251602, + 0.07538733631372452, + 0.002314383862540126, + -0.02538912743330002, + 0.04293893650174141, + -0.05868636444211006, + -0.030344372615218163, + 0.011181426234543324, + 0.004021789412945509, + 0.037363551557064056, + -0.007669278420507908, + 0.015750862658023834, + 0.038825951516628265, + 0.0005798444035463035, + -0.027126898989081383, + -0.10579240322113037, + -0.08618225157260895, + -0.054271064698696136, + 0.06355844438076019, + -0.005421434063464403, + -0.03994496911764145, + 0.03119024634361267, + 0.028766054660081863, + -0.023796869441866875, + 0.05537500977516174, + 0.10456927120685577, + 0.021217558532953262, + -0.06261148303747177, + -0.06510372459888458, + -0.06461799889802933, + -0.07374318689107895, + -0.015747737139463425, + 0.08328796923160553, + 0.02184488996863365, + -0.11075571179389954, + 0.1009788066148758, + 0.0887913852930069, + -0.011891546659171581, + 0.07432947307825089, + 0.0841045007109642, + 0.01568705216050148, + -0.015704773366451263, + 0.037093304097652435 + ], + "smiley-bold||face,emoji,happy,grinning,smiling": [ + -0.04710785672068596, + -0.020512359216809273, + 0.00916262622922659, + 0.038825325667858124, + 0.028628097847104073, + -0.06641165167093277, + 0.10582871735095978, + -0.031782299280166626, + 0.022861525416374207, + -0.011867201887071133, + 0.10479917377233505, + -0.052356068044900894, + 0.03432570397853851, + 0.0012376251397654414, + 0.0780782625079155, + 0.023955311626195908, + 0.00015208983677439392, + -0.01885181851685047, + 0.0052202618680894375, + 0.010346740484237671, + -0.006895624566823244, + -0.011309069581329823, + 0.008122679777443409, + 0.031109018251299858, + 0.010060318745672703, + 0.016878845170140266, + -0.009368684142827988, + 0.04569869488477707, + 0.03181508183479309, + -0.03400055691599846, + -0.013514314778149128, + -0.020138373598456383, + 0.14244578778743744, + 0.05048227310180664, + -0.012893803417682648, + 0.05827903375029564, + -0.05026039481163025, + -0.005422604735940695, + 0.027113694697618484, + 0.026266302913427353, + -0.07590216398239136, + -0.11600428074598312, + -0.04582381621003151, + 0.04288000240921974, + 0.02101832814514637, + -0.005421795416623354, + -0.049847692251205444, + 0.006365763954818249, + -0.009563492611050606, + 0.027229003608226776, + -0.022524364292621613, + -0.1258658617734909, + -0.08485893160104752, + 0.006356644909828901, + -0.000997696304693818, + 0.020304186269640923, + -0.05184762179851532, + -0.0558997318148613, + 0.045486465096473694, + 0.05113903060555458, + -0.026398640125989914, + 0.02744443342089653, + 0.11620049178600311, + 0.039636846631765366, + -0.016477741301059723, + -0.038997482508420944, + 0.004551439546048641, + -0.04111557826399803, + -0.05333339795470238, + 0.05070262774825096, + 0.08330585807561874, + -0.0427454374730587, + -0.07916823774576187, + -0.011684136465191841, + -0.061021797358989716, + 0.007720659486949444, + 0.07941833138465881, + -0.014730907045304775, + 0.013393371365964413, + 0.03429361432790756, + -0.06243426725268364, + -0.042771924287080765, + -0.051722150295972824, + -0.023971708491444588, + 0.03384455293416977, + -0.0008436388452537358, + -0.08800192922353745, + -0.06957535445690155, + -0.05940893292427063, + 0.04435628280043602, + -0.06920162588357925, + 0.006273448467254639, + 0.08440940827131271, + 0.0015879239654168487, + -0.039149507880210876, + -0.01016321312636137, + 0.07230280339717865, + 0.005348695907741785, + -0.0505572110414505, + 0.10787959396839142, + -0.008402264676988125, + 0.0482887327671051, + 0.027229804545640945, + -0.014234038069844246, + 0.025262292474508286, + 0.003403701586648822, + -0.02339775674045086, + -0.04605453088879585, + 0.032031089067459106, + -0.07556145638227463, + -0.03368284925818443, + -0.08432494103908539, + 0.019460538402199745, + -0.06805581599473953, + 0.026690218597650528, + -0.022542867809534073, + -0.09396624565124512, + 0.010471013374626637, + 0.14835450053215027, + 0.030027857050299644, + 0.05153495818376541, + -0.0692322850227356, + -0.028332123532891273, + -0.011458915658295155, + -0.024773959070444107, + 0.04175027087330818, + -0.014075631275773048, + -6.107572018220016e-34, + 0.07819366455078125, + 0.07270403951406479, + 0.028832191601395607, + 0.1014099046587944, + -0.03513186424970627, + 0.023590661585330963, + -0.07365591824054718, + -0.05783001706004143, + -0.158574178814888, + -0.013402629643678665, + -0.005475922953337431, + 0.11485547572374344, + -0.05134778097271919, + 0.10431762784719467, + -0.012741811573505402, + -0.02905186638236046, + 0.010479121468961239, + -0.06658127903938293, + -0.039633609354496, + 0.0067434669472277164, + -0.005720451008528471, + -0.03846586123108864, + -0.010937324725091457, + -0.00770494993776083, + -0.00019363606406841427, + 0.009725896641612053, + 0.12320899963378906, + -0.02514742501080036, + -0.03725836053490639, + -0.0017907388973981142, + -0.02460469864308834, + 0.02972915582358837, + 0.053835105150938034, + -0.06652233004570007, + 0.051971692591905594, + 0.01965695433318615, + -0.03459114953875542, + -0.0433465801179409, + -0.0322437584400177, + 0.008176746778190136, + -0.0018510989611968398, + -0.018031610175967216, + -0.07623313367366791, + -0.007060012314468622, + 0.00023980675905477256, + 0.12060806900262833, + -0.02512136660516262, + -0.025005962699651718, + 0.042901914566755295, + -0.0445692278444767, + -0.0061912680976092815, + 0.019460313022136688, + 0.0011411801679059863, + 0.04723101854324341, + -0.012933417223393917, + -0.06336426734924316, + -0.005752333905547857, + 0.02852068841457367, + -0.01540219783782959, + 0.015994654968380928, + -0.050337545573711395, + -0.02762618288397789, + 0.06410706788301468, + -0.10913071036338806, + -0.021233398467302322, + 0.04527074471116066, + -0.08124172687530518, + 0.016401756554841995, + 0.07278259843587875, + 0.0156085891649127, + 0.04319831728935242, + 0.14454779028892517, + 0.02598133310675621, + -0.028911730274558067, + -0.08110050857067108, + 0.030862746760249138, + -0.005452112294733524, + 0.022125378251075745, + 0.007798550184816122, + -0.01961723528802395, + -0.02516663819551468, + 0.02333776466548443, + -0.07760877907276154, + 0.02552633546292782, + 0.05963515490293503, + -0.0015344548737630248, + -0.019340727478265762, + -0.12139380723237991, + -0.08835170418024063, + 0.07756868004798889, + -0.0351339727640152, + -0.012576152570545673, + 0.051434218883514404, + 0.018658867105841637, + -0.12508302927017212, + -1.0240185875718929e-33, + 0.008183220401406288, + 0.005000292789191008, + -0.10622938722372055, + -0.01067027635872364, + -0.08435982465744019, + 0.04837577044963837, + 0.05462225526571274, + 0.07220322638750076, + -0.02739425003528595, + 0.05240103229880333, + -0.009136698208749294, + -0.019714638590812683, + -0.015832645818591118, + -0.07654797285795212, + 0.02701706625521183, + 0.058823853731155396, + 0.06251112371683121, + 0.001953988801687956, + -0.04719018191099167, + 0.07201136648654938, + -0.051158562302589417, + -0.03813374787569046, + -0.005322904326021671, + 0.08697870373725891, + 0.015139937400817871, + 0.06911876797676086, + 0.0644070953130722, + -0.04035080224275589, + -0.0864909440279007, + -0.030919451266527176, + 0.004563509486615658, + -0.027781285345554352, + 0.021169692277908325, + 0.01751488819718361, + -0.0016583111137151718, + -0.018821828067302704, + -0.03422342985868454, + -0.05325344577431679, + -0.021509507670998573, + 0.030275747179985046, + 0.03839532658457756, + 0.02201884612441063, + 0.030548064038157463, + 0.11418621987104416, + 0.03328251093626022, + 0.03781592473387718, + -0.058172401040792465, + -0.04820442572236061, + -0.02204953506588936, + 0.05981246009469032, + 0.030423825606703758, + -0.07573861628770828, + -0.029013993218541145, + 0.012094519101083279, + -0.009773999452590942, + -0.08209216594696045, + -0.017393391579389572, + 0.030294163152575493, + -0.04415808245539665, + 0.004216436762362719, + -0.027691001072525978, + -0.057847343385219574, + 0.022072333842515945, + 0.04865126684308052, + -0.05686374008655548, + -0.03014388494193554, + 0.05909876525402069, + -0.009667804464697838, + -0.0044693113304674625, + -0.017376158386468887, + 0.108888179063797, + 0.029851384460926056, + -0.018573766574263573, + -0.023319607600569725, + 0.012149335816502571, + -0.026926610618829727, + -0.0018115791026502848, + 0.008340583182871342, + -0.05179543048143387, + 0.04885052889585495, + -0.08161541074514389, + -0.01480804942548275, + -0.03207620233297348, + 0.006172343622893095, + -0.10192801803350449, + -0.014390594325959682, + 0.012212391011416912, + 0.03922920674085617, + -0.010745007544755936, + 0.016335029155015945, + -0.06463592499494553, + 0.11430595815181732, + -0.01800611987709999, + -0.011736315675079823, + 0.050345584750175476, + -2.0711592441102766e-08, + -0.031441498547792435, + -0.055352386087179184, + -0.02345152385532856, + -0.06897136569023132, + 0.03966812789440155, + -0.01574890688061714, + -0.017180107533931732, + -0.06493840366601944, + -0.059215713292360306, + -0.03694051131606102, + 0.08706513047218323, + 0.07446984201669693, + -0.05008479952812195, + -0.05409678816795349, + 0.0644543245434761, + 0.025675520300865173, + -0.02196609228849411, + 0.10582748800516129, + 0.04582179710268974, + -0.0568334236741066, + -0.005311403889209032, + 0.06502903997898102, + -0.017917798832058907, + 0.020579928532242775, + -0.02343391254544258, + -0.045730311423540115, + -0.026244405657052994, + -0.0018913313979282975, + -0.05371534451842308, + 0.01379029918462038, + 0.0023428872227668762, + 0.031597331166267395, + 0.029230738058686256, + -0.05824718251824379, + -0.03152576833963394, + 0.023364298045635223, + -0.02249912917613983, + -0.04465596005320549, + 0.042909327894449234, + 0.11710473895072937, + 0.04652443900704384, + 0.03430787846446037, + -0.014693479053676128, + -0.0370071679353714, + -0.09798295050859451, + 0.03461715579032898, + 0.10359924286603928, + -0.03290050849318504, + -0.0050376951694488525, + -0.063142791390419, + -0.0022360682487487793, + -0.03481243550777435, + -0.013739953748881817, + 0.07985492795705795, + -0.037579093128442764, + -0.05038038641214371, + 0.02795025333762169, + 0.07027900964021683, + 0.021517520770430565, + 0.05522366985678673, + 0.13593143224716187, + -0.012091632932424545, + 0.039656609296798706, + -0.0023686017375439405 + ], + "smiley-angry-bold||face,emoji,mad,frown": [ + -0.04602408409118652, + -0.057401902973651886, + 0.007796864956617355, + 0.027237769216299057, + -0.0034796874970197678, + -0.03154163435101509, + 0.0736444815993309, + -0.05003838986158371, + 0.024934589862823486, + -0.001578781520947814, + 0.0920720100402832, + -0.043204788118600845, + 0.05217670649290085, + 0.007894718088209629, + 0.04601643607020378, + 0.07435490936040878, + -0.01510556135326624, + -0.01392517238855362, + 0.02850121445953846, + 0.0010876995511353016, + 0.003914238419383764, + 0.014690998010337353, + -0.030554506927728653, + 0.022147363051772118, + 0.010453564114868641, + 0.06278474628925323, + -0.038949716836214066, + 0.04560475051403046, + 0.02049602009356022, + -0.043355152010917664, + -0.0240866020321846, + -0.03781210631132126, + 0.11838028579950333, + 0.04717143252491951, + -0.020742865279316902, + 0.020423803478479385, + -0.032012101262807846, + 0.03431576117873192, + 0.013363603502511978, + 0.003954445011913776, + -0.06155182048678398, + -0.058301523327827454, + -0.046461280435323715, + 0.027630368247628212, + 0.03381776809692383, + -0.008422239683568478, + -0.02198735997080803, + -0.007519264705479145, + -0.03014589473605156, + -0.030756663531064987, + -0.03236616402864456, + -0.13126535713672638, + -0.09220153838396072, + 0.031024260446429253, + 0.014603525400161743, + -0.004257267341017723, + -0.021563323214650154, + -0.015693986788392067, + 0.0668494701385498, + 0.10803361237049103, + -0.04534449055790901, + 0.013712700456380844, + 0.10326153039932251, + -0.0023354082368314266, + -0.05507440119981766, + 0.01457158662378788, + 0.04458855092525482, + -0.022350022569298744, + -0.04125092923641205, + 0.08348148316144943, + 0.05934178829193115, + -0.04658370092511177, + -0.0768328458070755, + -0.03209143877029419, + -0.07189323753118515, + 0.016337808221578598, + 0.05534646287560463, + -0.01139622088521719, + 0.03696729987859726, + -0.003170036245137453, + -0.0968107283115387, + -0.03232831507921219, + -0.05912242829799652, + -0.007343461737036705, + 0.0405505932867527, + -0.0023864340037107468, + -0.061336349695920944, + -0.05207643657922745, + -0.07140687853097916, + 0.06299977749586105, + -0.028156081214547157, + -0.021316897124052048, + 0.12333790957927704, + -0.0020037926733493805, + -0.028665529564023018, + -0.012655793689191341, + 0.06989461183547974, + 0.009486994706094265, + -0.07578667998313904, + 0.0939030572772026, + 0.020297855138778687, + 0.013188480399549007, + 0.016743449494242668, + -0.005746576935052872, + 0.0455339141190052, + -0.010567083954811096, + 0.008749733678996563, + -0.09508298337459564, + -0.002802449744194746, + -0.06753938645124435, + -0.07082238048315048, + -0.08785772323608398, + -0.005723182111978531, + -0.10593873262405396, + 0.019049229100346565, + -0.02363370731472969, + -0.06994848698377609, + -0.021634677425026894, + 0.1857471913099289, + 0.05065117031335831, + 0.02561309188604355, + -0.0457255057990551, + -0.04564866051077843, + 0.0032180522102862597, + 0.014227367006242275, + 0.04905206710100174, + -0.06159764900803566, + -7.425309450686454e-34, + 0.1012001633644104, + 0.10520542412996292, + 0.00016857402806635946, + 0.09974732249975204, + -0.02825566753745079, + 0.008446923457086086, + -0.08217967301607132, + -0.03328261151909828, + -0.09384524822235107, + -0.007404376287013292, + 0.014806811697781086, + 0.05638714134693146, + -0.047458019107580185, + 0.13357983529567719, + -0.009085730649530888, + -0.004781221505254507, + 0.04625345394015312, + -0.0825415551662445, + -0.0362192839384079, + -0.01902427151799202, + -0.027350276708602905, + -0.004133507609367371, + -0.010324057191610336, + 0.0029911317396909, + -0.03557038679718971, + 0.002801034366711974, + 0.0662754699587822, + -0.026836993172764778, + -0.03861211985349655, + 0.01082943007349968, + 0.0064325109124183655, + 0.04505852982401848, + 0.07724501937627792, + -0.003978302702307701, + 0.026391467079520226, + 0.026077261194586754, + -0.006282410118728876, + -0.012248645536601543, + -0.06396839022636414, + 0.010114709846675396, + 0.008678270503878593, + -0.01038354728370905, + -0.07538457214832306, + -0.006409328430891037, + 0.027621665969491005, + 0.12382114678621292, + -0.011960984207689762, + -0.06847904622554779, + 0.06589504331350327, + -0.024512341246008873, + 0.022726166993379593, + 0.03922758996486664, + 0.051638223230838776, + 0.06366241723299026, + -0.006328304763883352, + -0.04587952420115471, + 0.0005400711670517921, + -0.009572182781994343, + -0.014306655153632164, + 0.02356426604092121, + -0.07553470134735107, + -0.03511267155408859, + 0.08399549871683121, + -0.08519432693719864, + -0.011956489644944668, + 0.04539819434285164, + -0.07291959971189499, + -0.005367327947169542, + 0.011526833288371563, + -0.01904113031923771, + 0.03426997736096382, + 0.08965201675891876, + 0.020882636308670044, + -0.032093595713377, + -0.08848962932825089, + 0.01939527317881584, + -0.01502907183021307, + 0.036087602376937866, + -0.00970541499555111, + -0.03738069534301758, + -0.047642119228839874, + -0.011366207152605057, + -0.06123227998614311, + 0.0084772277623415, + 0.04114868864417076, + -0.015328927896916866, + -0.004783011972904205, + -0.12897668778896332, + -0.05161100998520851, + 0.05757981911301613, + -0.07086431235074997, + 0.002902202308177948, + 0.059978049248456955, + 0.01510725449770689, + -0.13807888329029083, + -1.048749978522736e-33, + -0.005720018409192562, + -0.0025253265630453825, + -0.07291329652070999, + 0.01713559217751026, + -0.07234582304954529, + 0.06777815520763397, + 0.08323691040277481, + 0.09359519183635712, + 0.004638849291950464, + 0.06264756619930267, + -0.02662157267332077, + -0.04923040419816971, + -0.03722302243113518, + -0.06583507359027863, + 0.059892620891332626, + 0.03849611431360245, + 0.05743148922920227, + 0.0164476428180933, + -0.0051872082985937595, + 0.06948617845773697, + -0.06927229464054108, + -0.05049646273255348, + -0.005802268628031015, + 0.06189262121915817, + 0.051114559173583984, + 0.06981667876243591, + 0.06654714792966843, + -0.04578538239002228, + -0.04482723027467728, + -0.02766559273004532, + -0.0012842538999393582, + -0.00020842757658101618, + 0.010575870051980019, + 0.014549634419381618, + -0.00955895148217678, + 0.02158830128610134, + -0.07309148460626602, + -0.023886142298579216, + -0.03391536325216293, + 0.0019027969101443887, + 0.05060106888413429, + 0.032084569334983826, + 0.06646936386823654, + 0.15489089488983154, + 0.01845197007060051, + 0.016087770462036133, + -0.07197021692991257, + -0.06604503095149994, + -0.03367079794406891, + 0.030629422515630722, + 0.050194744020700455, + -0.07829330116510391, + -0.019930033013224602, + 0.02241998352110386, + -0.0420844629406929, + -0.09240560233592987, + -0.00961997825652361, + 0.029101721942424774, + -0.052894458174705505, + 0.02679336443543434, + -0.04710797965526581, + -0.0815267488360405, + -0.042870935052633286, + 0.026646021753549576, + -0.038899026811122894, + -0.04906739294528961, + 0.045088060200214386, + -0.025623273104429245, + -0.009198985993862152, + -0.044183578342199326, + 0.0891394168138504, + 0.03428589180111885, + -0.03910549730062485, + -0.03265916928648949, + 0.028992339968681335, + -0.02325819991528988, + 0.0010874220170080662, + 0.04554404318332672, + -0.06612038612365723, + 0.03300570324063301, + -0.036416757851839066, + 0.010789384134113789, + -0.05335591360926628, + 0.03361191973090172, + -0.11494535952806473, + -0.02352965623140335, + -0.014161833561956882, + 0.0736280232667923, + 0.009346588514745235, + 0.001446559326723218, + -0.06060269474983215, + 0.11559340357780457, + 0.0039686341769993305, + 0.0034843876492232084, + 0.044986262917518616, + -1.9029132047876374e-08, + -0.033036813139915466, + -0.04150154069066048, + -0.0016625236021354795, + -0.05416140332818031, + 0.030626758933067322, + -0.03306696191430092, + -0.009507846087217331, + -0.05225115641951561, + -0.06464715301990509, + -0.007529618684202433, + 0.09106702357530594, + 0.06134384125471115, + -0.05041330307722092, + -0.04345279186964035, + 0.026228340342640877, + 0.012564623728394508, + -0.055595818907022476, + 0.10071181505918503, + 0.05040905997157097, + -0.023938704282045364, + -0.017859745770692825, + 0.06848008185625076, + -0.011236836202442646, + 0.0092212725430727, + 0.003101215697824955, + -0.052346304059028625, + -0.028232291340827942, + 0.0038506449200212955, + -0.043018192052841187, + 0.05170329287648201, + 0.04168066009879112, + 0.019815366715192795, + 0.005528614390641451, + -0.048446252942085266, + -0.06394446641206741, + -0.0033131735399365425, + -0.021892450749874115, + -0.04500633105635643, + 0.034991856664419174, + 0.07810121774673462, + 0.03634124621748924, + 0.008327580988407135, + -0.03656112030148506, + -0.05635223910212517, + -0.04578891769051552, + 0.010862919501960278, + 0.0730038583278656, + -0.040604062378406525, + -0.03325718641281128, + -0.07122866064310074, + 0.00702877389267087, + -0.02117466740310192, + -0.02261483483016491, + 0.07071194797754288, + -0.017694339156150818, + -0.055077340453863144, + 0.06657519936561584, + 0.08563892543315887, + 0.012953090481460094, + 0.0455314926803112, + 0.16221456229686737, + -0.009126872755587101, + -0.0017698497977107763, + 0.00038269205833785236 + ], + "smiley-blank-bold||face,emoji,unimpressed,no face": [ + -0.021235298365354538, + -0.02783168852329254, + 0.03729420155286789, + 0.04206088185310364, + 0.04382854327559471, + -0.05940799042582512, + 0.0032198086846619844, + -0.06794530153274536, + 0.03911101818084717, + -0.017659299075603485, + 0.09954896569252014, + -0.05117107182741165, + 0.04498961567878723, + -0.006556243635714054, + 0.07007968425750732, + 0.02889973670244217, + -0.025703879073262215, + -0.08341829478740692, + -0.011985784396529198, + 0.0015748082660138607, + -0.014069064520299435, + -0.017540380358695984, + 0.008298643864691257, + -0.018989479169249535, + 0.034496866166591644, + 0.018429331481456757, + -0.04723546281456947, + 0.02339164912700653, + 0.03894023224711418, + -0.03905073180794716, + 0.014792382717132568, + -0.05509865656495094, + 0.12703096866607666, + 0.0303482785820961, + 0.042722031474113464, + 0.04285406321287155, + 0.021159255877137184, + 0.056705325841903687, + -0.00016216393851209432, + 0.04462020844221115, + -0.09012608975172043, + -0.0863594338297844, + -0.048668064177036285, + 0.0843263491988182, + 0.06539228558540344, + -0.003827865468338132, + -0.033806413412094116, + -0.036078695207834244, + -0.01058504544198513, + -0.039044518023729324, + -0.011770371347665787, + -0.12021206319332123, + -0.07588338106870651, + -0.0019863855559378862, + 0.019283991307020187, + 0.004819979891180992, + -0.060456547886133194, + -0.04313019663095474, + 0.058480534702539444, + 0.02144218236207962, + -0.03277372941374779, + 0.0047734882682561874, + 0.08732704073190689, + 0.020152855664491653, + -0.041918132454156876, + -0.004924963694065809, + 0.012183061800897121, + -0.058744240552186966, + -0.026215331628918648, + 0.08776600658893585, + 0.07514035701751709, + -0.029937226325273514, + -0.13742122054100037, + 0.00201269774697721, + -0.0722074955701828, + 0.01870143786072731, + 0.045528337359428406, + -0.027136879041790962, + 0.02150113508105278, + 0.08465845137834549, + -0.04544758424162865, + -0.05462339147925377, + -0.07850657403469086, + -0.026498744264245033, + 0.05147387087345123, + 0.030705250799655914, + -0.05199306830763817, + -0.07769563049077988, + -0.05258391425013542, + 0.0618378110229969, + -0.07423050701618195, + 0.03282961994409561, + 0.09935075789690018, + 0.003083426970988512, + -0.03187938779592514, + -0.01619865372776985, + 0.11112615466117859, + 0.0163714699447155, + -0.10227812081575394, + 0.1462007761001587, + -0.010560791939496994, + -0.011584999039769173, + 0.02645883709192276, + 0.013448627665638924, + 0.026605580002069473, + 0.005420423112809658, + 0.014253618195652962, + -0.03698164224624634, + -0.029499657452106476, + -0.03644576668739319, + 0.006839236244559288, + -0.10244947671890259, + -0.000830047472845763, + -0.07855107635259628, + -0.01553464587777853, + -0.03849167376756668, + -0.05462834611535072, + -0.0175024401396513, + 0.11825685203075409, + 0.056535813957452774, + 0.047623246908187866, + -0.09493077546358109, + -0.06758150458335876, + 0.0038877385668456554, + -0.020538775250315666, + 0.04899104684591293, + -0.015780888497829437, + 4.385160094400946e-34, + 0.08239000290632248, + 0.06082220748066902, + 0.006034772377461195, + 0.09917239099740982, + 0.010436796583235264, + 0.03864951804280281, + -0.06600416451692581, + -0.04971155896782875, + -0.09552212804555893, + 0.012431859970092773, + 0.019268972799181938, + 0.07640725374221802, + -0.049362074583768845, + 0.1197352409362793, + -0.0022631678730249405, + -0.03450213745236397, + 0.06790322810411453, + -0.04946310818195343, + -0.02705157734453678, + -0.025651434436440468, + 0.01040006335824728, + 0.0069978078827261925, + -0.025581130757927895, + 0.007370044477283955, + -0.07075422257184982, + 0.0387490838766098, + 0.10129033029079437, + -0.06758561730384827, + -0.05505698174238205, + -0.001957281958311796, + -0.060876477509737015, + 0.037911441177129745, + 0.09692544490098953, + -0.0734659805893898, + 0.036586061120033264, + 0.022466300055384636, + -0.007714093197137117, + -0.022263094782829285, + -0.021603958681225777, + -0.004211976658552885, + -0.030300313606858253, + -0.04053998365998268, + -0.08173315972089767, + -0.04357230290770531, + 0.019110057502985, + 0.10307762771844864, + -0.008097750134766102, + -0.05470148101449013, + 0.02018808387219906, + 0.003953748382627964, + -0.03595040366053581, + 0.043168697506189346, + -0.016626056283712387, + 0.05697236210107803, + -0.03890690952539444, + -0.05327719822525978, + -0.03642384707927704, + -0.018107090145349503, + -0.047090381383895874, + -0.01135919988155365, + -0.047406669706106186, + -0.021178700029850006, + 0.04775603860616684, + -0.07362104207277298, + -0.018597548827528954, + 0.019132738932967186, + -0.055207300931215286, + -0.00775992963463068, + 0.0007474618614651263, + -0.04147946834564209, + 0.04516204819083214, + 0.108225017786026, + 0.011402251198887825, + -0.008234498091042042, + -0.08590797334909439, + 0.012896234169602394, + 0.03514830023050308, + 0.02955942042171955, + 0.02602493204176426, + -0.014266233891248703, + 0.03974752128124237, + 0.040095970034599304, + -0.05373515188694, + -0.0035332327242940664, + 0.05487717315554619, + -0.007633945904672146, + -0.009725724346935749, + -0.04915399104356766, + -0.07507811486721039, + 0.047711171209812164, + -0.04316876828670502, + -0.021619800478219986, + 0.01486895326524973, + -0.023165617138147354, + -0.09075360745191574, + -1.5081195791706546e-33, + -0.011214738711714745, + 0.00542917475104332, + -0.09164664149284363, + 0.0006014995742589235, + -0.07016932964324951, + 0.07184091210365295, + 0.11563490331172943, + 0.09424886852502823, + 0.04336043447256088, + 0.0886761024594307, + 0.014172040857374668, + -0.010257983580231667, + 0.0018501756712794304, + -0.052179817110300064, + 0.025128372013568878, + 0.07949292659759521, + 0.028452368453145027, + 0.012297538109123707, + -0.046979185193777084, + 0.07551650702953339, + -0.057875920087099075, + -0.0017471355386078358, + -0.04799739271402359, + 0.057200588285923004, + 0.05064421519637108, + 0.07520437985658646, + 0.02576906606554985, + 0.001925553777255118, + -0.06923384219408035, + -0.04171111062169075, + 0.05494524538516998, + -0.014243759214878082, + 0.031207583844661713, + 0.03020136058330536, + -0.005289201159030199, + -0.01329052448272705, + -0.033938389271497726, + 0.005812529940158129, + -0.006407834589481354, + 0.02696971222758293, + 0.03590743616223335, + 0.05359947308897972, + 0.005456156097352505, + 0.10454579442739487, + 0.04251490533351898, + 0.02923811413347721, + -0.09092482179403305, + -0.08668281883001328, + 0.005388579796999693, + 0.027792666107416153, + 0.04373055696487427, + -0.05060749873518944, + -0.03556598350405693, + -0.0059919171035289764, + -0.024023553356528282, + -0.07238178700208664, + -0.006338220555335283, + 0.05501306802034378, + -0.010317509062588215, + 0.01049838773906231, + -0.00821024738252163, + -0.06343578547239304, + -0.023899832740426064, + 0.025671379640698433, + -0.03311334177851677, + -0.010416494682431221, + 0.06157905235886574, + 0.03127995505928993, + -0.000268046569544822, + -0.05576455965638161, + 0.06260251998901367, + 0.02928975597023964, + 0.00025975718745030463, + -0.061298877000808716, + 0.0638304054737091, + 0.012383030727505684, + 0.0014194065006449819, + 0.04604528099298477, + -0.05732577666640282, + 0.04587487876415253, + -0.04186515137553215, + 0.011503191664814949, + -0.03459624946117401, + 0.0019713242072612047, + -0.06935420632362366, + 0.023839281871914864, + 0.014593584463000298, + 0.03187976032495499, + -0.029920974746346474, + 0.029932839795947075, + -0.08494994789361954, + 0.13912361860275269, + 0.024898994714021683, + 0.04074099659919739, + 0.052578072994947433, + -2.168946444669473e-08, + -0.0047712503001093864, + -0.05564773827791214, + 0.0006307403673417866, + -0.07865304499864578, + 0.010552475228905678, + -0.04565554857254028, + 0.007975767366588116, + -0.11542107164859772, + -0.04696003347635269, + -0.03583812713623047, + 0.04458536207675934, + 0.029432468116283417, + -0.09718863666057587, + -0.02648836374282837, + 0.030027905479073524, + 0.030285708606243134, + -0.0685986578464508, + 0.09875288605690002, + 0.03222488611936569, + -0.07618902623653412, + -0.024559156969189644, + 0.08449368923902512, + -0.020153652876615524, + -0.0178852342069149, + 0.017834972590208054, + -0.06261987239122391, + -0.026838256046175957, + 0.018013400956988335, + -0.03614133596420288, + 0.01072612777352333, + 0.015735695138573647, + -0.0007213943172246218, + 0.06386066973209381, + -0.08798181265592575, + -0.06792127341032028, + 0.020705197006464005, + -0.00837097316980362, + -0.043779157102108, + -0.00333461188711226, + 0.03937046602368355, + 0.03672697767615318, + -0.0060178786516189575, + -0.011998727917671204, + -0.05699616298079491, + -0.08561965823173523, + 0.023015780374407768, + 0.08389309793710709, + -0.053602781146764755, + -0.02038380317389965, + -0.03850819543004036, + -0.008719095960259438, + -0.00887617003172636, + -0.039935968816280365, + 0.07692999392747879, + -0.022373640909790993, + -0.05325603857636452, + 0.06895972788333893, + 0.08857424557209015, + 0.005215443670749664, + 0.018460841849446297, + 0.15703321993350983, + 0.014147629961371422, + -0.014957716688513756, + 0.023938629776239395 + ], + "smiley-meh-bold||face,emoji,unimpressed,neutral": [ + -0.05129216983914375, + -0.048482123762369156, + 0.02514057420194149, + 0.014101832173764706, + 0.04792632535099983, + -0.07410293072462082, + 0.07791426032781601, + -0.034983325749635696, + 0.025548530742526054, + 0.016118010506033897, + 0.09263765811920166, + -0.06811679899692535, + 0.06566604971885681, + 0.0003382587747182697, + 0.050204768776893616, + 0.04456745460629463, + 0.028559967875480652, + -0.05124499276280403, + -0.012017987668514252, + -0.009264480322599411, + -0.014207993634045124, + -0.0038738963194191456, + 0.003856716910377145, + 0.023415278643369675, + 0.01902075856924057, + 0.012518443167209625, + -0.025042317807674408, + 0.061270616948604584, + 0.03742833435535431, + -0.07004553079605103, + -0.005440290551632643, + -0.06116760894656181, + 0.12897181510925293, + 0.06489710509777069, + -0.021824145689606667, + 0.054343126714229584, + 0.0006400207057595253, + 0.031595710664987564, + 0.01355679240077734, + 0.057115111500024796, + -0.08545537292957306, + -0.09290032088756561, + -0.021056339144706726, + 0.03539024665951729, + 0.061410706490278244, + 0.028774475678801537, + -0.055339131504297256, + 0.004057659301906824, + -0.019326822832226753, + -0.0006985857035033405, + 0.002023333217948675, + -0.10254929959774017, + -0.10632435977458954, + 0.03295205533504486, + 0.0010184642160311341, + -0.011126605793833733, + -0.05988607183098793, + -0.013257353566586971, + 0.04523971676826477, + 0.006261569447815418, + -0.04202542081475258, + -0.0012616229942068458, + 0.10449615120887756, + 0.003970814403146505, + -0.049408283084630966, + -0.007683814037591219, + 0.025302080437541008, + -0.03135407343506813, + -0.01954752951860428, + 0.06303295493125916, + 0.0715131089091301, + -0.05409959703683853, + -0.08207863569259644, + -0.008687745779752731, + -0.06517209112644196, + 0.02950749360024929, + 0.06611261516809464, + -0.04164271801710129, + 0.00032152715721167624, + 0.031787529587745667, + -0.04105578362941742, + -0.03885773569345474, + -0.057635024189949036, + -0.006870436482131481, + 0.03960566595196724, + 0.029315251857042313, + -0.07304129749536514, + -0.06384819000959396, + -0.05632958933711052, + 0.04813040420413017, + -0.0625569149851799, + -0.01965462975203991, + 0.12118002772331238, + -0.010248040780425072, + -0.016121981665492058, + 0.004783234558999538, + 0.07648886740207672, + -0.006932682357728481, + -0.08027638494968414, + 0.13007651269435883, + -0.016751181334257126, + 0.031663019210100174, + -0.012235194444656372, + -0.029158709570765495, + 0.031063806265592575, + -0.0046789818443357944, + -0.007142154034227133, + -0.06194595247507095, + 0.00895636435598135, + -0.025029798969626427, + -0.035249579697847366, + -0.10065915435552597, + -0.0012983463238924742, + -0.09362836927175522, + 0.025369299575686455, + -0.0032720526214689016, + -0.025435712188482285, + 0.02267271652817726, + 0.13908126950263977, + 0.02036314830183983, + 0.017988858744502068, + -0.07719673216342926, + -0.058330658823251724, + 0.01751217246055603, + -0.047009412199258804, + 0.04938805103302002, + -0.01655348762869835, + 5.617194805142824e-34, + 0.0721193179488182, + 0.08978603780269623, + 0.00391926895827055, + 0.07858093082904816, + -0.019113760441541672, + 0.018132861703634262, + -0.08136074244976044, + -0.030898286029696465, + -0.12267354130744934, + 0.0030297900084406137, + 0.036807138472795486, + 0.12846258282661438, + -0.05277964845299721, + 0.12948809564113617, + -0.005784711800515652, + -0.04581991583108902, + 0.039986591786146164, + -0.06194150075316429, + -0.033510059118270874, + -0.026618771255016327, + -0.016133254393935204, + 0.013735142536461353, + -0.013497029431164265, + -0.007930521853268147, + -0.06082753464579582, + 0.004730236250907183, + 0.08457735925912857, + -0.017136117443442345, + -0.05374177172780037, + -0.0013905358500778675, + -0.05142911151051521, + 0.030556950718164444, + 0.06783711910247803, + -0.04508664458990097, + 0.021241581067442894, + 0.0125728165730834, + -0.05339672043919563, + -0.03525238484144211, + -0.013995064422488213, + -0.018274415284395218, + -0.02169673889875412, + -0.01628367230296135, + -0.079538494348526, + -0.027376621961593628, + 0.04098214954137802, + 0.10752255469560623, + -0.030078338459134102, + -0.07552353292703629, + 0.020175587385892868, + -0.03326736390590668, + -0.007849165238440037, + 0.03657934442162514, + 0.00420643063262105, + 0.032762520015239716, + -0.028886616230010986, + -0.04450174421072006, + -0.006585951428860426, + 0.014622917398810387, + -0.010608721524477005, + 0.03495451807975769, + -0.06592553108930588, + -0.006147131323814392, + 0.0645919069647789, + -0.09287852793931961, + -0.016177436336874962, + -0.004815993364900351, + -0.10317864269018173, + 0.017115000635385513, + 0.01378979254513979, + 0.03366190567612648, + 0.0243328046053648, + 0.10635235160589218, + 0.030214697122573853, + -0.004268567077815533, + -0.0959259569644928, + 0.009487973526120186, + 0.012273061089217663, + 0.05411122366786003, + 0.01466501783579588, + -0.02179097756743431, + -0.0014307290548458695, + 0.025376837700605392, + -0.09226109832525253, + 0.009789291769266129, + 0.04223440960049629, + 0.010350054129958153, + -0.009913308545947075, + -0.09259617328643799, + -0.04885208606719971, + 0.057453833520412445, + -0.07425859570503235, + 0.0004474783781915903, + 0.05929943919181824, + -0.01596221700310707, + -0.12831974029541016, + -1.742215605717067e-33, + -0.0008885636343620718, + 0.0032572513446211815, + -0.12581326067447662, + 0.030992228537797928, + -0.04728030413389206, + 0.043764375150203705, + 0.0789448544383049, + 0.09702268987894058, + -0.008626037277281284, + 0.06424137204885483, + 0.010984905064105988, + -0.025416290387511253, + -0.011435982771217823, + -0.08107763528823853, + 0.03587616607546806, + 0.06385699659585953, + 0.03791949898004532, + 0.032637570053339005, + -0.019349059090018272, + 0.06257110089063644, + -0.04561326652765274, + -0.008587026968598366, + -0.04969274252653122, + 0.055476292967796326, + 0.03824805095791817, + 0.0747741162776947, + 0.029291803017258644, + -0.014530077576637268, + -0.04735109210014343, + -0.017780710011720657, + 0.027354370802640915, + 0.013068817555904388, + 0.02149779349565506, + 0.028254389762878418, + -0.01537354476749897, + -0.03013640083372593, + -0.06096644699573517, + 0.010043183341622353, + -0.005646659526973963, + 0.027809789404273033, + 0.03828660771250725, + 0.054357822984457016, + 0.03148314356803894, + 0.12255102396011353, + 0.02576533518731594, + 0.05240832269191742, + -0.1299160271883011, + -0.06152888759970665, + -0.009325295686721802, + 0.03525512292981148, + 0.009288717992603779, + -0.07554998248815536, + -0.03381960093975067, + 0.013546162284910679, + -0.025208059698343277, + -0.055901724845170975, + -0.007192491553723812, + 0.04771371930837631, + -0.022724874317646027, + 0.026139551773667336, + -0.027013832703232765, + -0.09393336623907089, + -0.011469749733805656, + 0.028479987755417824, + -0.08057662844657898, + -0.044800106436014175, + 0.05277213454246521, + -0.050659555941820145, + 0.005588683299720287, + -0.027436072006821632, + 0.11242544651031494, + 0.03426433354616165, + -0.01487269252538681, + -0.03701329231262207, + 0.023101143538951874, + -0.05713094770908356, + 0.008084747940301895, + 0.034864019602537155, + -0.05160970985889435, + 0.026688793674111366, + -0.052171334624290466, + 0.019887227565050125, + -0.03283116593956947, + 0.0154470419511199, + -0.09944283217191696, + 0.01554447878152132, + 0.008267450146377087, + 0.04257319122552872, + -0.0035325961653143167, + 0.01367321889847517, + -0.03819834813475609, + 0.129835844039917, + -0.01867951638996601, + 0.011484523303806782, + 0.07016553729772568, + -2.183654324028339e-08, + 5.9178673836868256e-05, + -0.07674194872379303, + 0.011114888824522495, + -0.05794958770275116, + 0.023681364953517914, + -0.041634198278188705, + -0.013438709080219269, + -0.08554953336715698, + -0.04976125434041023, + -0.02586127258837223, + 0.09043397009372711, + 0.03526976704597473, + -0.06952355802059174, + -0.01598447561264038, + 0.027180973440408707, + 0.045539259910583496, + -0.036424316465854645, + 0.09107882529497147, + 0.032541099935770035, + -0.03716987371444702, + -0.02285441756248474, + 0.08921782672405243, + -0.01645679771900177, + -0.0023128895554691553, + -0.007972387596964836, + -0.033680692315101624, + -0.007421873975545168, + 0.014375859871506691, + -0.05774696543812752, + 0.02979266457259655, + 0.028052132576704025, + 0.008327072486281395, + 0.014209561049938202, + -0.08898821473121643, + -0.08132552355527878, + 0.04692644998431206, + -0.037297800183296204, + -0.03780564293265343, + 0.005771852098405361, + 0.07494442909955978, + 0.05029384419322014, + 0.033126235008239746, + -0.044064804911613464, + -0.03247086703777313, + -0.05609510466456413, + 0.0001531644375063479, + 0.08239059895277023, + -0.06088376045227051, + -0.060677122324705124, + -0.04817736893892288, + 0.01865180768072605, + -0.027553463354706764, + -0.007656787522137165, + 0.07489987462759018, + -0.008852166123688221, + -0.04033452272415161, + 0.01628582552075386, + 0.06687500327825546, + 0.005232563707977533, + 0.03466072678565979, + 0.1853487193584442, + 0.022608086466789246, + 0.025164341554045677, + -0.020798245444893837 + ], + "smiley-melting-bold||*new*,face,emoji,embarrassment,sarcasm,shame,hot,heat": [ + -0.07965186983346939, + -0.06915967911481857, + 0.0701478123664856, + 0.06729455292224884, + 0.04410134628415108, + -0.03924638405442238, + 0.09236285835504532, + -0.040336739271879196, + 0.03854793682694435, + -0.0049844831228256226, + 0.08707406371831894, + -0.07176913321018219, + 0.04475397244095802, + -0.007297118194401264, + 0.07723263651132584, + 0.0242193341255188, + 0.011832059361040592, + -0.03558918833732605, + -0.00528650963678956, + -0.00250886264257133, + 0.02762925997376442, + -0.0002491550403647125, + -0.015536590479314327, + 0.025658681988716125, + 0.05543413385748863, + 0.03141482546925545, + -0.023017102852463722, + 0.07381295412778854, + -0.015105560421943665, + 0.02166418917477131, + -0.04722294211387634, + -0.0634300634264946, + 0.1126086413860321, + 0.07003162056207657, + 0.0036598271690309048, + 0.06318490207195282, + -0.04315927252173424, + 0.023775815963745117, + -0.024584053084254265, + 0.03568406030535698, + -0.05772269144654274, + -0.12080425024032593, + -0.03362851217389107, + 0.05084977671504021, + 0.05111686885356903, + -0.0048806616105139256, + -0.006121360696852207, + 0.005164535250514746, + -0.012236682698130608, + 0.026118852198123932, + -0.051565393805503845, + -0.11812916398048401, + -0.07844193279743195, + 0.02668747305870056, + -0.01746121048927307, + 0.01380632258951664, + -0.02606339007616043, + -0.07999232411384583, + 0.03444700315594673, + 0.011528786271810532, + -0.016063949093222618, + 0.004606309346854687, + 0.10017762333154678, + -0.003285191021859646, + -0.03628415986895561, + -0.04646865278482437, + 0.02139381319284439, + -0.032254379242658615, + -0.027060648426413536, + 0.1024257093667984, + 0.04373951256275177, + -0.038535892963409424, + -0.06385959684848785, + 0.024694005027413368, + -0.057025689631700516, + -0.01581847295165062, + 0.022511379793286324, + -0.0378509983420372, + 0.003685774514451623, + 0.047994133085012436, + 0.004185453522950411, + -0.0323353037238121, + -0.04245121404528618, + -0.017649900168180466, + -0.01550529059022665, + 0.021050410345196724, + -0.038166556507349014, + -0.07870424538850784, + -0.06370565295219421, + 0.017745211720466614, + -0.07771676033735275, + 0.003763061948120594, + 0.06430623680353165, + 0.010084467940032482, + -0.03725271672010422, + -0.011253783479332924, + 0.017011836171150208, + 0.00012969558883924037, + -0.06314948201179504, + 0.10207433253526688, + -0.012795839458703995, + -0.010444642044603825, + -0.06207987666130066, + 0.0007541495724581182, + 0.05596145614981651, + -0.02184274047613144, + -0.033460889011621475, + -0.05568936467170715, + -0.032413601875305176, + -0.023114023730158806, + -0.009912285022437572, + -0.0682801753282547, + 0.009259399957954884, + -0.11694013327360153, + 0.06797540932893753, + -0.01796036586165428, + -0.0773741602897644, + -0.01221086923032999, + 0.09529612213373184, + 0.10809245705604553, + 0.03572298213839531, + -0.01930188573896885, + -0.051911160349845886, + 0.020914830267429352, + -0.05857682228088379, + 0.013735356740653515, + -0.023572780191898346, + -2.0045940263442633e-33, + 0.07249962538480759, + 0.11328724771738052, + -0.008656702004373074, + 0.09548529982566833, + 0.012985286302864552, + 0.03458278998732567, + -0.06982310861349106, + -0.03065347485244274, + -0.07161062955856323, + -0.016442155465483665, + 0.04536791518330574, + 0.08162939548492432, + -0.06456366181373596, + 0.11993855237960815, + -0.01866593398153782, + -0.011760948225855827, + 0.05478769168257713, + -0.02345856837928295, + 0.0306513924151659, + -0.021785231307148933, + -0.06571462750434875, + 0.04983408376574516, + 0.04284243658185005, + -0.0038448190316557884, + -0.10638512670993805, + 0.011841650120913982, + 0.04706058278679848, + -0.025177350267767906, + -0.028067363426089287, + 0.011437457986176014, + -0.023860394954681396, + 0.005078263580799103, + 0.09143940359354019, + -0.04797551780939102, + 0.04361923038959503, + 0.008348183706402779, + -0.0153083810582757, + -0.043618422001600266, + -0.014555709436535835, + 0.005416089203208685, + -0.04637358710169792, + 0.0013703908771276474, + -0.04397254064679146, + -0.0018772039329633117, + -5.639577921101591e-06, + 0.1451544612646103, + -0.04523545876145363, + -0.00236418261192739, + 0.046414565294981, + -0.033389512449502945, + -0.012221352197229862, + 0.014735482633113861, + 0.020260944962501526, + 0.055241722613573074, + -0.02101505547761917, + -0.024250641465187073, + 0.011974026449024677, + 0.0051231710240244865, + -0.010268672369420528, + -0.04412927106022835, + -0.0656343549489975, + -0.004187506623566151, + 0.10039506107568741, + -0.10389145463705063, + -0.046776238828897476, + -0.008106653578579426, + -0.08304787427186966, + -0.0022766850888729095, + 0.011381338350474834, + 0.019813166931271553, + 0.026246916502714157, + 0.11086784303188324, + -0.012633931823074818, + 0.029618868604302406, + -0.06431712955236435, + 0.008323111571371555, + 0.04965997487306595, + 0.0020585486199706793, + 0.0369495153427124, + -0.023842796683311462, + -0.07775159180164337, + -0.020431941375136375, + -0.06630004197359085, + -0.022975053638219833, + 0.016777168959379196, + -0.024670731276273727, + -0.000750834820792079, + -0.08779159933328629, + -0.03447031229734421, + 0.04890842363238335, + -0.09971059858798981, + -0.03455359488725662, + 0.032110217958688736, + 0.008627016097307205, + -0.13772279024124146, + 2.939109647525082e-34, + 0.004794539883732796, + 0.0016664089635014534, + -0.10108990222215652, + 0.04924962669610977, + -0.07152364403009415, + 0.04443836584687233, + 0.04798709973692894, + 0.08695115894079208, + 0.02577953226864338, + 0.041882846504449844, + 0.002390749054029584, + -0.07360053062438965, + -0.02066998928785324, + -0.09633800387382507, + 0.06005249544978142, + 0.06165723130106926, + 0.03361208736896515, + 0.039495132863521576, + -0.016421817243099213, + 0.08497225493192673, + -0.08555043488740921, + -0.005254493560642004, + -0.039507657289505005, + 0.0932621955871582, + 0.02101772464811802, + 0.021065687760710716, + 0.05454617738723755, + -0.03259383141994476, + -0.02580815739929676, + -0.02744612656533718, + 0.01500086672604084, + 0.002517207758501172, + 0.022191811352968216, + 0.0168434027582407, + -0.013094487600028515, + 0.011119816452264786, + -0.01012819167226553, + -0.03244511038064957, + -0.014761218801140785, + -0.002177467569708824, + 0.05273154750466347, + -0.017751339823007584, + 0.03629930689930916, + 0.1558791548013687, + 0.027335288003087044, + -0.004052169620990753, + -0.12139203399419785, + -0.07069455087184906, + -0.03525827080011368, + 0.07327446341514587, + 0.06999338418245316, + -0.10905995219945908, + -0.06292007118463516, + 0.01245399471372366, + -0.008971991948783398, + -0.030157573521137238, + -0.048818618059158325, + 0.0667799785733223, + -0.07106596976518631, + 0.02033168263733387, + -0.03251316770911217, + -0.09226715564727783, + 0.016160469502210617, + 0.06627871841192245, + -0.029555058106780052, + -0.04050871729850769, + 0.029209326952695847, + -0.022903604432940483, + 0.008498544804751873, + -0.009840404614806175, + 0.08287575840950012, + 0.04186735674738884, + -0.09847965091466904, + -0.07089504599571228, + 0.01817663013935089, + -0.048473864793777466, + -0.01559549942612648, + 0.022193072363734245, + -0.06646684557199478, + 0.03999060019850731, + -0.07334251701831818, + -0.006040680687874556, + -0.047989025712013245, + 0.025971749797463417, + -0.04149655997753143, + -0.0056888507679104805, + 0.03456825390458107, + 0.06026659905910492, + -0.04055630415678024, + 0.010436412878334522, + -0.05105419456958771, + 0.07700791209936142, + -0.017553962767124176, + 0.015623359009623528, + 0.029705218970775604, + -2.4978106694106827e-08, + -0.03524946793913841, + -0.011272755451500416, + -0.013613504357635975, + -0.04213431105017662, + 0.04815171658992767, + -0.02934425324201584, + -0.045072488486766815, + -0.07640799880027771, + -0.01730979233980179, + -0.032957036048173904, + 0.09793677926063538, + 0.07686721533536911, + 0.005564460996538401, + 0.008129160851240158, + 0.013641186989843845, + 0.02112341858446598, + -0.022626515477895737, + 0.0698508620262146, + 0.029225029051303864, + -0.084587462246418, + -0.01661359891295433, + 0.1155170351266861, + -0.01580650918185711, + 0.030898509547114372, + -0.018290521577000618, + -0.023408371955156326, + -0.033177364617586136, + 0.015241472981870174, + -0.023651961237192154, + 0.03633933141827583, + 0.003501094877719879, + -0.0354200080037117, + -0.0024881663266569376, + -0.041243936866521835, + -0.05319015681743622, + 0.04127376526594162, + -0.006478683557361364, + -0.04173966497182846, + 0.05631259083747864, + 0.07615982741117477, + 0.03885617479681969, + 0.07469934970140457, + 0.002997779520228505, + -0.027577225118875504, + -0.08487270027399063, + -0.02721339277923107, + 0.0374118909239769, + -0.016074730083346367, + -0.013272698037326336, + -0.032541945576667786, + 0.021009141579270363, + -0.0032072842586785555, + -0.05443105101585388, + 0.07734296470880508, + 0.01891976408660412, + -0.0180408526211977, + 0.02937106043100357, + 0.1404293179512024, + 0.029486162588000298, + 0.0353371687233448, + 0.16277259588241577, + 0.002813017228618264, + -0.011046070605516434, + -0.0017900328384712338 + ], + "smiley-nervous-bold||*updated*,face,emoji,anxious,uncomfortable,uneasy,queasy,sick,ill": [ + -0.008188205771148205, + -0.06465274095535278, + 0.045445818454027176, + 0.0890362337231636, + -0.0019872679840773344, + -0.046583570539951324, + 0.14616020023822784, + -0.030269524082541466, + 0.00834086537361145, + -0.02923610433936119, + 0.05148949474096298, + -0.039752405136823654, + 0.048872340470552444, + -0.04709264263510704, + 0.0012130467221140862, + 0.023247288540005684, + 0.02611512318253517, + -0.07998155057430267, + -0.015894129872322083, + 0.08229748159646988, + -0.07425890117883682, + 0.026899762451648712, + 0.005281897261738777, + 0.04041944071650505, + -0.009395474568009377, + 0.056235868483781815, + -0.05027954280376434, + 0.024216927587985992, + 0.013743532821536064, + -0.0029180534183979034, + -0.04028121381998062, + -0.011832773685455322, + 0.10832887887954712, + 0.01192815974354744, + 0.03177743777632713, + 0.003093646140769124, + -0.02624663896858692, + 0.012323621660470963, + 0.022801360115408897, + 0.06819160282611847, + -0.05829642713069916, + -0.08850309997797012, + -0.0197980348020792, + 0.0533287450671196, + 0.020006977021694183, + -0.040820930153131485, + -0.07460498809814453, + -0.0005621919990517199, + -0.006579109933227301, + 0.024533210322260857, + -0.04146154597401619, + -0.17100614309310913, + -0.07521845400333405, + -0.0030815480276942253, + -0.012281944043934345, + -0.005806253291666508, + -0.05709504336118698, + -0.05270431190729141, + 0.007138578221201897, + 0.03773956373333931, + -0.0497577004134655, + 0.010666776448488235, + 0.10985375195741653, + 0.03779025375843048, + -0.012045945040881634, + -0.007818871177732944, + -0.0014684490161016583, + -0.09442975372076035, + 0.027164090424776077, + 0.06195294111967087, + 0.036408208310604095, + -0.04716291278600693, + -0.0779600515961647, + -0.00024147354997694492, + -0.04908943176269531, + -0.013938318006694317, + 0.08889808505773544, + -0.05497542396187782, + 0.04238901659846306, + 0.015005943365395069, + 0.018439384177327156, + -0.013932354748249054, + -0.02688048779964447, + -0.032256536185741425, + 0.055641788989305496, + 0.0005199228762649, + -0.0306354071944952, + -0.0659770518541336, + -0.07870711386203766, + 0.05471791699528694, + -0.02682686038315296, + -0.04146237298846245, + 0.06957937777042389, + 0.023183371871709824, + -0.015331298112869263, + 0.03396602347493172, + 0.0329684242606163, + -0.00931695569306612, + -0.10887863487005234, + 0.12969359755516052, + -0.00425071781501174, + 0.0013388644438236952, + 0.016707440838217735, + 0.045683588832616806, + 0.0027911425568163395, + 0.025931736454367638, + -0.016266576945781708, + -0.08791851997375488, + 0.010761270299553871, + -0.07949487119913101, + -0.09390702843666077, + -0.05209612473845482, + 0.0010508684208616614, + -0.10657335072755814, + 0.03123495914041996, + -0.0008844491094350815, + -0.06852154433727264, + 0.015634341165423393, + 0.11324158310890198, + 0.08152420818805695, + 0.04567286744713783, + -0.03471599146723747, + -0.06319525837898254, + -0.03783600032329559, + -0.01250939816236496, + 0.052422452718019485, + -0.0303850919008255, + -1.984706865980258e-33, + 0.07694053649902344, + 0.048083506524562836, + 0.003008525585755706, + 0.06977377086877823, + 0.02088768407702446, + 0.029096970334649086, + -0.056648965924978256, + -0.0535280741751194, + -0.07434795051813126, + 0.012542475946247578, + 0.005785840097814798, + 0.040690355002880096, + -0.06623467057943344, + 0.11489792168140411, + -0.008958122693002224, + -0.020514801144599915, + -0.013264426030218601, + -0.024956082925200462, + 0.03061889298260212, + -0.0023779748007655144, + -0.01918552815914154, + 0.0037080158945173025, + -0.020158546045422554, + 0.03111688233911991, + -0.028544984757900238, + 0.0052809868939220905, + 0.003190008457750082, + -0.01267088484019041, + 0.018946463242173195, + 0.013876552693545818, + -0.05770735815167427, + 0.05196908488869667, + 0.055029239505529404, + -0.07390724867582321, + -0.006696020253002644, + -0.006922272965312004, + 0.012437498196959496, + -0.030671143904328346, + -0.018338028341531754, + -0.031296372413635254, + 0.03398552164435387, + 0.009659002535045147, + -0.08550138026475906, + -0.005656369961798191, + -0.0020010543521493673, + 0.09987076371908188, + -0.05811893939971924, + -0.054422006011009216, + 0.03827187791466713, + -0.053561482578516006, + -0.014689884148538113, + 0.013847832567989826, + -0.0024137217551469803, + 0.021269576624035835, + -0.023515833541750908, + -0.04445844516158104, + 0.019186822697520256, + 0.022940170019865036, + -0.03514494001865387, + 0.019051024690270424, + -0.010153005830943584, + -0.04455307498574257, + 0.06844386458396912, + -0.12055845558643341, + -0.01934339851140976, + -0.001046657795086503, + -0.08872100710868835, + -0.03139981999993324, + 0.039803214371204376, + 0.027021251618862152, + -0.007527260575443506, + 0.10354626923799515, + 0.051929108798503876, + 0.03611704334616661, + -0.058803848922252655, + 0.0174558162689209, + 0.0006976096192374825, + 0.005379596725106239, + 0.0012327798176556826, + -0.04703535512089729, + -0.03998134657740593, + -0.00917412992566824, + -0.04118160903453827, + 0.07242555916309357, + 0.05312633514404297, + -0.006148043088614941, + -0.03085613250732422, + -0.05978579819202423, + -0.06686645746231079, + 0.06913845986127853, + -0.03026644140481949, + 0.01216782908886671, + 0.04927799105644226, + 0.023014584556221962, + -0.138342946767807, + -3.1690328987148153e-34, + -0.0076941829174757, + -0.0019004131900146604, + -0.11131878197193146, + 0.010270657017827034, + -0.062461357563734055, + 0.002656626980751753, + 0.05891651287674904, + 0.12200858443975449, + 0.0430741012096405, + 0.019931389018893242, + -0.014991494826972485, + -0.02671285904943943, + -0.023476680740714073, + -0.09228072315454483, + 0.018730856478214264, + 0.04333866387605667, + 0.018764710053801537, + 0.06629921495914459, + -0.007116475608199835, + 0.10085269808769226, + -0.07584362477064133, + -0.027311697602272034, + -0.02724050171673298, + 0.05189787223935127, + 0.04164831340312958, + 0.06284265220165253, + 0.03633161634206772, + -0.05140649527311325, + -0.06268797069787979, + -0.020049475133419037, + -0.037687525153160095, + -0.010817153379321098, + 0.03879977762699127, + 0.02654457464814186, + -0.01063478272408247, + 0.045910898596048355, + -0.016625700518488884, + -0.11350052058696747, + -0.06321926414966583, + -0.006554848980158567, + 0.03689536824822426, + 0.03244227543473244, + 0.08111292123794556, + 0.11612244695425034, + 0.07578887045383453, + 0.08033545315265656, + -0.09212999045848846, + -0.022077761590480804, + -0.02582727000117302, + 0.07137268781661987, + 0.07808391004800797, + -0.0191024262458086, + -0.04906296730041504, + 0.04947025701403618, + -0.00823735911399126, + -0.07959581911563873, + -0.10293285548686981, + -0.03441191837191582, + -0.07015819847583771, + 0.03305666521191597, + -0.03675997629761696, + -0.07408394664525986, + -0.03433108329772949, + 0.0002872249169740826, + -0.022543860599398613, + -0.02028249017894268, + 0.009449977427721024, + -0.00707300566136837, + 0.02861638553440571, + -0.03116653300821781, + 0.08305345475673676, + -0.00956794898957014, + -0.0921664908528328, + -0.002258666791021824, + 0.04259245842695236, + -0.0455138236284256, + -0.0053648087196052074, + 0.025287846103310585, + -0.0002372247981838882, + 0.03655831888318062, + -0.050099313259124756, + -0.003102520015090704, + -0.011509115807712078, + 0.0024327593855559826, + -0.08252394944429398, + 0.023997262120246887, + 0.022867819294333458, + 0.07347109168767929, + -0.009395568631589413, + -0.02152964472770691, + -0.022758983075618744, + 0.09377844631671906, + -0.015807272866368294, + 0.010641425848007202, + 0.012614100240170956, + -2.5493148925193054e-08, + 0.004713619593530893, + -0.06254857778549194, + -0.03237922862172127, + -0.06298158317804337, + 0.07221430540084839, + -0.05714878439903259, + -0.061781611293554306, + -0.04073493927717209, + -0.03648500144481659, + -0.03672883287072182, + 0.060198526829481125, + 0.05900723487138748, + -0.03335873782634735, + -0.03358994051814079, + -6.382309948094189e-06, + 0.027551457285881042, + -0.05619123950600624, + 0.15384428203105927, + 0.031067391857504845, + -0.08615776151418686, + -0.012445078231394291, + 0.0819208100438118, + -0.0395633801817894, + 0.004322492517530918, + 0.02107238955795765, + -0.0455704964697361, + -0.04184401407837868, + 0.012314188294112682, + -0.027606505900621414, + 0.015256136655807495, + 0.03064844198524952, + 0.018704915419220924, + 0.004515072330832481, + -0.05538035184144974, + -0.07256758958101273, + 0.020016232505440712, + 0.002024516463279724, + -0.07898180931806564, + 0.041128069162368774, + 0.04823220521211624, + 0.0736657977104187, + 0.01782652549445629, + 0.010045592673122883, + -0.039069272577762604, + -0.050266798585653305, + -0.033180251717567444, + 0.0871550664305687, + -0.02416250668466091, + 0.013957108370959759, + -0.09811405092477798, + 0.04010198265314102, + 0.0010586688295006752, + 0.02027970552444458, + 0.0934302806854248, + 0.0033156254794448614, + -0.00613985862582922, + -0.000348270550603047, + 0.12931257486343384, + 0.007151004392653704, + -0.00738037982955575, + 0.1413317173719406, + 0.012531577609479427, + -0.009646591730415821, + 0.021360570564866066 + ], + "smiley-sad-bold||face,emoji,unhappy,frowning": [ + -0.03176231309771538, + -0.0261334590613842, + 0.04329942166805267, + 0.060933638364076614, + 0.004033208359032869, + -0.041053880006074905, + 0.060488227754831314, + -0.040904417634010315, + 0.03786735609173775, + -0.01975349336862564, + 0.1023702621459961, + -0.038448575884103775, + 0.05167536064982414, + 0.003393676597625017, + 0.05224964767694473, + 0.04854324087500572, + -0.028632771223783493, + -0.0021699771750718355, + 0.018771560862660408, + 0.023387519642710686, + -0.025095446035265923, + 0.028070541098713875, + -0.030588917434215546, + 0.01690971478819847, + 0.002484632655978203, + 0.043776560574769974, + -0.037773653864860535, + 0.035213686525821686, + 0.007531789131462574, + -0.02412739209830761, + -0.03686562180519104, + -0.03826083615422249, + 0.11917567998170853, + 0.06365954130887985, + 0.006922093220055103, + 0.01736961305141449, + -0.02509094960987568, + 0.019744860008358955, + 0.01272902637720108, + 0.0032369673717767, + -0.06346135586500168, + -0.06776022166013718, + -0.034468911588191986, + 0.034566059708595276, + 0.03073972277343273, + -0.02649310976266861, + -0.0532292015850544, + -0.015011362731456757, + -0.014603138901293278, + -0.003165450179949403, + -0.02235214225947857, + -0.11580049246549606, + -0.07610788941383362, + 0.03220327943563461, + 0.025693360716104507, + -0.011534740217030048, + -0.028859199956059456, + -0.02708965353667736, + 0.0723569467663765, + 0.05625724419951439, + -0.031306490302085876, + -0.00284584891051054, + 0.09056714177131653, + -0.0052461470477283, + -0.011280677281320095, + -0.003071045968681574, + 0.029269905760884285, + -0.0735248327255249, + -0.03283416107296944, + 0.1166243925690651, + 0.020879877731204033, + -0.057920001447200775, + -0.08577453345060349, + -0.014038753695786, + -0.08022090792655945, + 0.011392492800951004, + 0.09732869267463684, + -0.025592323392629623, + 0.03501477092504501, + 0.008062515407800674, + -0.056145329028367996, + 0.0028905158396810293, + -0.050622083246707916, + -0.016818996518850327, + 0.01887565478682518, + 0.014638763852417469, + -0.04599008336663246, + -0.06259427964687347, + -0.0618799664080143, + 0.05398548021912575, + -0.0569559670984745, + -0.009355348534882069, + 0.11177179217338562, + 0.00996398739516735, + -0.022607959806919098, + -0.002829879056662321, + 0.07040330767631531, + 0.026659738272428513, + -0.08287642151117325, + 0.117719367146492, + -0.0008843326941132545, + 0.021053779870271683, + 0.03211435675621033, + -0.02354707010090351, + 0.038358960300683975, + -0.010528307408094406, + -0.030259661376476288, + -0.06362070143222809, + -0.011336333118379116, + -0.07238978147506714, + -0.08981703221797943, + -0.09219975769519806, + 0.00760970264673233, + -0.09845069795846939, + 0.01337283756583929, + -0.035788629204034805, + -0.07153848558664322, + -0.013565047644078732, + 0.13545778393745422, + 0.07276686280965805, + -0.001538412761874497, + -0.04353821277618408, + -0.04553020000457764, + -0.017688240855932236, + 0.027107790112495422, + 0.051260802894830704, + -0.07162830233573914, + -1.193874398858844e-33, + 0.11258979141712189, + 0.053414084017276764, + -0.005734708160161972, + 0.08479338884353638, + -0.012649579904973507, + 0.02500436268746853, + -0.07564340531826019, + -0.043076254427433014, + -0.08954481035470963, + -0.015830745920538902, + -0.011765114031732082, + 0.0647047758102417, + -0.0698612779378891, + 0.1064211055636406, + -0.013140163384377956, + -0.03661103919148445, + 0.0373646579682827, + -0.05043583735823631, + -0.04963550716638565, + 0.00934149045497179, + -0.02087005227804184, + 0.01194002665579319, + 0.013379830867052078, + -0.015728460624814034, + -0.022940941154956818, + 0.013050979934632778, + 0.06863804906606674, + -0.04180178791284561, + -0.018296806141734123, + 0.004448147490620613, + -0.0073027522303164005, + 0.030771378427743912, + 0.08969768136739731, + -0.04096956178545952, + 0.05277936905622482, + -0.007784368935972452, + -0.002844712231308222, + -0.0014662728644907475, + -0.06394197791814804, + -8.270640682894737e-05, + -0.020559515804052353, + 0.001365290256217122, + -0.08675983548164368, + -0.01997952163219452, + 0.015404934994876385, + 0.11452347040176392, + 0.017222648486495018, + -0.04517750442028046, + 0.055388931185007095, + -0.037096016108989716, + 0.021732522174715996, + 0.027401350438594818, + -0.006866198964416981, + 0.052707135677337646, + -0.007761738728731871, + -0.04385342448949814, + 0.005717429798096418, + -0.013647031038999557, + -0.024123964831233025, + 0.016512950882315636, + -0.039449542760849, + -0.03994143754243851, + 0.08356049656867981, + -0.11885233223438263, + -0.006662288680672646, + 0.024737073108553886, + -0.08012504875659943, + -0.013241796754300594, + 0.01967117376625538, + -0.007460020016878843, + 0.02994360774755478, + 0.1285168081521988, + 0.05048353970050812, + -0.014720207080245018, + -0.061635810881853104, + 0.033779043704271317, + 0.006739006377756596, + 0.006491623818874359, + -0.011455493979156017, + -0.03132322430610657, + -0.04423385486006737, + -0.015987209975719452, + -0.09197010844945908, + 0.0024696083273738623, + 0.030157271772623062, + -0.0021385045256465673, + -0.03653867542743683, + -0.1134021133184433, + -0.07263883948326111, + 0.06737679243087769, + -0.05855584144592285, + 0.00914736557751894, + 0.01769178919494152, + -0.0071587529964745045, + -0.09577063471078873, + -7.160838833785786e-34, + -0.016980398446321487, + -0.006611752789467573, + -0.09381884336471558, + -0.01452320534735918, + -0.055180780589580536, + 0.04826455935835838, + 0.060050174593925476, + 0.08369399607181549, + 0.016330376267433167, + 0.08891034126281738, + -0.01719539612531662, + -0.0534166656434536, + -0.01887679658830166, + -0.0625142753124237, + 0.016413545235991478, + 0.06508061289787292, + 0.056116510182619095, + 0.0020686613861471415, + -0.02234548144042492, + 0.05804114043712616, + -0.06851502507925034, + 0.003072940045967698, + -0.012210967019200325, + 0.06565441191196442, + 0.04201933741569519, + 0.08143805712461472, + 0.08086506277322769, + -0.02538164146244526, + -0.06994941085577011, + -0.0504189133644104, + 0.002830470446497202, + -0.0008502455893903971, + 0.011507386341691017, + 0.025322580710053444, + -0.003706021001562476, + 0.002926950342953205, + -0.09008347988128662, + -0.03693095222115517, + -0.05122841149568558, + 0.00018514053954277188, + 0.06608512252569199, + 0.0402471162378788, + 0.05855072662234306, + 0.13665062189102173, + 0.06164897233247757, + 0.04013420641422272, + -0.07788313180208206, + -0.06718219816684723, + -0.005332986358553171, + 0.050985150039196014, + 0.05838266387581825, + -0.04214338958263397, + -0.023287611082196236, + 0.04399016872048378, + -0.02108914405107498, + -0.07396667450666428, + -0.046461738646030426, + 0.003922806121408939, + -0.0671091228723526, + 0.04043992608785629, + -0.05078510940074921, + -0.08290945738554001, + -0.014538024552166462, + 0.05763569474220276, + -0.06888929754495621, + -0.05010039359331131, + 0.06371894478797913, + -0.03246547281742096, + -0.017997469753026962, + -0.03152318671345711, + 0.11793756484985352, + 0.021091101691126823, + -0.05890756472945213, + -0.03114435262978077, + 0.02952154166996479, + -0.0051180776208639145, + -0.009014538489282131, + 0.049114227294921875, + -0.04298181086778641, + 0.045524418354034424, + -0.05776853486895561, + 0.0008328849798999727, + -0.024032074958086014, + 0.02146858535706997, + -0.10196537524461746, + -0.004504944663494825, + -0.0007772810058668256, + 0.08682465553283691, + 0.005334129557013512, + 0.0002796824264805764, + -0.05944211035966873, + 0.1061163917183876, + 0.00024424135335721076, + 0.013035750016570091, + 0.057718757539987564, + -1.9346039437095897e-08, + -0.03221017122268677, + -0.07138611376285553, + -0.028854111209511757, + -0.06217364966869354, + 0.01065109297633171, + -0.04710717499256134, + -0.007567658554762602, + -0.03849352151155472, + -0.04823791980743408, + -0.0039235376752913, + 0.04552283510565758, + 0.07401664555072784, + -0.09262789040803909, + -0.05066980421543121, + 0.03281016647815704, + 0.015422118827700615, + -0.023301444947719574, + 0.1355263888835907, + 0.04101162031292915, + -0.03446327522397041, + -0.0013723809970542789, + 0.05485226958990097, + -0.03986945003271103, + 0.028423765674233437, + -0.015525590628385544, + -0.06528788805007935, + -0.011854100972414017, + -0.022800635546445847, + -0.07127206027507782, + 0.02383698895573616, + 0.06343558430671692, + 0.0369873046875, + 0.01352386362850666, + -0.05572418123483658, + -0.07669617235660553, + 0.033273790031671524, + -0.0005332909058779478, + -0.07208774983882904, + 0.012247616425156593, + 0.1169261634349823, + 0.049602217972278595, + 0.008949651382863522, + -0.02890852838754654, + -0.05518943816423416, + -0.041980404406785965, + 0.015970440581440926, + 0.09775549918413162, + -0.05963730439543724, + -0.013802750036120415, + -0.0735621526837349, + 0.021305780857801437, + 0.001691249548457563, + -0.025535648688673973, + 0.0716673955321312, + -0.007251105271279812, + -0.021681848913431168, + 0.0510641448199749, + 0.09367931634187698, + -0.0071230363100767136, + 0.04631432518362999, + 0.15708191692829132, + -0.0025063331704586744, + 0.017294729128479958, + 0.02876785770058632 + ], + "smiley-sticker-bold||face,emoji,happy,grinning,smiling": [ + -0.07594206929206848, + -0.02103162370622158, + -0.0012511740205809474, + 0.039727069437503815, + 0.04852904751896858, + -0.06230035796761513, + 0.12170414626598358, + -0.01923229731619358, + 0.03511742129921913, + -0.02667638286948204, + 0.10207207500934601, + -0.03849324956536293, + 0.050103556364774704, + -0.010514850728213787, + 0.07079555839300156, + 0.015395203605294228, + -0.011957656592130661, + -0.019645508378744125, + 0.037321411073207855, + -0.003057402092963457, + -0.018467603251338005, + 0.0015254613244906068, + -0.00642193341627717, + 0.04269967973232269, + -0.003725989256054163, + 0.017711641266942024, + -0.009275533258914948, + 0.043375201523303986, + 0.019487690180540085, + -0.029424648731946945, + 0.005577183794230223, + -0.0317508801817894, + 0.11566296964883804, + 0.038070566952228546, + -0.006299872417002916, + 0.026696668937802315, + -0.04704488813877106, + 0.001406511990353465, + 0.033744558691978455, + 0.03129804506897926, + -0.039990056306123734, + -0.15667259693145752, + -0.0347844734787941, + 0.02874099835753441, + 0.029100291430950165, + 0.00032744076452217996, + -0.018763693049550056, + 0.023777661845088005, + 0.0066152396611869335, + 0.03313114121556282, + -0.011486447416245937, + -0.13437075912952423, + -0.09607608616352081, + -0.04470599442720413, + -0.009961070492863655, + 0.0037737074308097363, + -0.031104926019906998, + -0.03925495594739914, + 0.048616621643304825, + 0.06086437404155731, + -0.02801389805972576, + 0.045196741819381714, + 0.137019082903862, + 0.058408334851264954, + -0.011893462389707565, + -0.05304713547229767, + -0.005386990029364824, + -0.04899051412940025, + -0.07294417917728424, + 0.06401053071022034, + 0.06566162407398224, + -0.03018048033118248, + -0.06297778338193893, + -0.010670552030205727, + -0.0506017729640007, + -0.00037432886892929673, + 0.06868685781955719, + 0.014359152875840664, + -0.01600426807999611, + 0.006558909080922604, + -0.06846395134925842, + -0.053405724465847015, + -0.05315477401018143, + -0.012176436372101307, + 0.031377315521240234, + 0.010331830009818077, + -0.07697232067584991, + -0.07155872881412506, + -0.0506000854074955, + 0.05665762349963188, + -0.08973260968923569, + 0.014632640406489372, + 0.10729081183671951, + -0.008373522199690342, + -0.07567103207111359, + -0.02427063137292862, + 0.06243743374943733, + 0.02362740784883499, + -0.05707082524895668, + 0.1063017025589943, + -0.03376292809844017, + 0.0357416495680809, + 0.03237219154834747, + -0.00370299001224339, + 0.005195188336074352, + -0.01194293238222599, + -0.041493844240903854, + -0.0422840379178524, + 0.04189106822013855, + -0.0463339127600193, + -0.039349302649497986, + -0.07533000409603119, + -0.004318199586123228, + -0.06860994547605515, + 0.0006803255528211594, + -0.05912042409181595, + -0.08650535345077515, + 0.012470078654587269, + 0.1785832643508911, + 0.014880401082336903, + 0.05856142193078995, + -0.07674965262413025, + -0.019945306703448296, + -0.03841795027256012, + -0.022012539207935333, + 0.041733477264642715, + -0.01357103232294321, + -9.529710661597207e-34, + 0.05440929904580116, + 0.06606359779834747, + 0.024492988362908363, + 0.06866930425167084, + -0.02249169535934925, + 0.0030097675044089556, + -0.044714052230119705, + -0.058828506618738174, + -0.13592465221881866, + 0.020362867042422295, + 0.031032685190439224, + 0.10533060878515244, + -0.03545050323009491, + 0.13517063856124878, + 0.018334675580263138, + -0.03333881124854088, + -0.013285770080983639, + -0.0587926022708416, + -0.03097165934741497, + -0.021018648520112038, + -0.004983237478882074, + -0.03611674904823303, + -0.017389444634318352, + -0.01398448459804058, + -0.02079838700592518, + 0.0028681817930191755, + 0.10036743432283401, + -0.02483162097632885, + -0.04105498269200325, + -0.015002336353063583, + -0.02517642453312874, + 0.034906454384326935, + 0.07476627081632614, + -0.08947622776031494, + 0.052638426423072815, + -0.007928232662379742, + -0.03902000933885574, + -0.06393220275640488, + -0.040403977036476135, + -0.008621733635663986, + 0.013483420014381409, + -0.030461175367236137, + -0.07066061347723007, + 0.018884634599089622, + 0.027413539588451385, + 0.1573496162891388, + -0.013259169645607471, + -0.00896230898797512, + 0.06130646541714668, + -0.04567025601863861, + -0.0002167732745874673, + -0.0168459452688694, + -0.01149659138172865, + 0.0335395485162735, + -0.013310552574694157, + -0.07613140344619751, + -0.02562042511999607, + 0.03357933089137077, + -0.028786225244402885, + -0.02215198613703251, + -0.05563969537615776, + -0.01445489376783371, + 0.06462767720222473, + -0.10080624371767044, + -0.016559651121497154, + 0.05289066582918167, + -0.06403326988220215, + 0.001071593607775867, + 0.06391026824712753, + 0.02894815057516098, + 0.06856336444616318, + 0.1438174843788147, + 0.02012489177286625, + -0.030890056863427162, + -0.05464473366737366, + 0.018627887591719627, + -0.004164506681263447, + 0.02081609144806862, + 0.0010020257905125618, + -0.028829263523221016, + -0.024125197902321815, + 0.02843368984758854, + -0.0771603062748909, + 0.020365651696920395, + 0.05945748835802078, + 0.006301306188106537, + -0.0031450707465410233, + -0.10298673808574677, + -0.08565167337656021, + 0.06414467841386795, + -0.014514777809381485, + -0.019737781956791878, + 0.0460360161960125, + 0.021549224853515625, + -0.13658158481121063, + -1.129706274463867e-33, + -0.00791109912097454, + -0.019915224984288216, + -0.05286695808172226, + 0.020252037793397903, + -0.06927794218063354, + 0.027641138061881065, + 0.04189693555235863, + 0.0878799706697464, + 0.0008320692577399313, + 0.023696299642324448, + -0.0008863815455697477, + 0.001116244588047266, + 0.014658547937870026, + -0.04936782643198967, + 0.02034982666373253, + 0.05277860909700394, + 0.04917380213737488, + 0.034846145659685135, + -0.049238625913858414, + 0.02673250436782837, + -0.0297731701284647, + -0.0287068672478199, + 0.008222700096666813, + 0.08767671883106232, + 0.001211250200867653, + 0.04219958931207657, + 0.03569445386528969, + -0.04634774476289749, + -0.08334877341985703, + -0.017832832410931587, + -0.0057160453870892525, + -0.03592032939195633, + 0.03474023565649986, + 0.016953028738498688, + 0.016668815165758133, + -0.04964050278067589, + -0.02059660106897354, + -0.06768050789833069, + -0.029074471443891525, + 0.0054861619137227535, + 0.025826873257756233, + 0.01622721180319786, + 0.059633031487464905, + 0.09820275753736496, + 0.035424843430519104, + 0.022853225469589233, + -0.07037519663572311, + -0.03482770547270775, + -0.013780281879007816, + 0.08974022418260574, + 0.014085525646805763, + -0.08035682141780853, + -0.027004987001419067, + 0.01539712492376566, + -0.04105990752577782, + -0.0468655601143837, + -0.010768973268568516, + 0.008202641271054745, + -0.005917525850236416, + 0.009368158876895905, + -0.015779761597514153, + -0.038289494812488556, + 0.013669813051819801, + 0.05334590747952461, + -0.04163356125354767, + -0.03330864757299423, + 0.07340510934591293, + -0.013472633436322212, + -0.023790352046489716, + -0.005510306917130947, + 0.10399167984724045, + 0.02643544413149357, + -0.02394527569413185, + -0.014665952883660793, + 0.0206680279225111, + -0.030149387195706367, + 0.02289697527885437, + 0.03212197870016098, + -0.07219266891479492, + 0.02627919428050518, + -0.07839034497737885, + -0.014375329948961735, + -0.04471544548869133, + 0.005621219985187054, + -0.10116143524646759, + -0.01363743282854557, + 0.0014003755059093237, + 0.018907178193330765, + 0.0055693709291517735, + 0.025369692593812943, + -0.041552770882844925, + 0.12055952101945877, + 0.013319063931703568, + 0.010034466162323952, + 0.013201962225139141, + -2.1095724278552552e-08, + -0.009317364543676376, + -0.05625919997692108, + -0.021798649802803993, + -0.0806591734290123, + 0.029295343905687332, + 0.0029116624500602484, + -0.015719998627901077, + -0.09523563086986542, + -0.06288760900497437, + -0.04654066637158394, + 0.10730860382318497, + 0.047181203961372375, + -0.06961652636528015, + -0.05476479232311249, + 0.05336581543087959, + 0.027120346203446388, + -0.02281363680958748, + 0.11309068650007248, + 0.039641909301280975, + -0.06223819777369499, + -0.0031025155913084745, + 0.05591084808111191, + 0.024541016668081284, + -0.00996849499642849, + -0.0388181172311306, + -0.03216152265667915, + -0.02752111107110977, + 0.02627475932240486, + -0.05559167638421059, + 0.009294873103499413, + 0.015778714790940285, + 0.03890072926878929, + 0.06610968708992004, + -0.051342714577913284, + 0.005367856007069349, + 0.0037449472583830357, + -0.029455972835421562, + -0.03828522190451622, + 0.044763561338186264, + 0.13788007199764252, + 0.03398040682077408, + 0.006361956242471933, + -0.014458004385232925, + -0.03706852346658707, + -0.08210211247205734, + 0.034109871834516525, + 0.0667300894856453, + -0.03658166527748108, + -0.02341313101351261, + -0.08608278632164001, + -0.005234182346612215, + -0.04651625081896782, + -0.021105341613292694, + 0.06854713708162308, + -0.04197235032916069, + -0.06256065517663956, + 0.03824327513575554, + 0.09726358205080032, + 0.010897849686443806, + 0.04503440484404564, + 0.12247160822153091, + 0.010775281116366386, + 0.02205813117325306, + 0.03589916229248047 + ], + "smiley-wink-bold||face,emoji,winking,flirting,cute": [ + -0.06084906682372093, + -0.08450619131326675, + 0.06516434252262115, + 0.0491347461938858, + -0.0038340194150805473, + -0.05519597977399826, + 0.08978695422410965, + -0.04281087592244148, + 0.022091761231422424, + 0.01808066852390766, + 0.11187633126974106, + -0.07587292790412903, + 0.01674179919064045, + 0.004324666224420071, + 0.08022905886173248, + 0.0417870432138443, + 0.002729559550061822, + -0.003077212255448103, + 0.018014585599303246, + -0.00011579149577300996, + 0.01617090031504631, + -0.031142672523856163, + 0.0022311436478048563, + 0.02151734195649624, + 0.032409388571977615, + -0.004332414828240871, + -0.03530579060316086, + 0.043218694627285004, + 0.02660352922976017, + -0.03544917330145836, + -0.04303990304470062, + 0.03777189180254936, + 0.06817072629928589, + 0.05958765000104904, + -0.030098481103777885, + 0.02639092691242695, + -0.015830188989639282, + 0.02198457345366478, + 0.0010731496149674058, + 0.012201470322906971, + -0.06744568794965744, + -0.07522924244403839, + -0.02861831709742546, + 0.036436501890420914, + 0.014269406907260418, + 0.02386517822742462, + -0.014337640255689621, + -0.002538875909522176, + -0.06810364872217178, + 0.05486621707677841, + -0.05390574410557747, + -0.11189606785774231, + -0.06902654469013214, + 0.08060848712921143, + 0.005642004776746035, + -0.030464237555861473, + -0.051146503537893295, + -0.034187596291303635, + 0.07079605013132095, + 0.023010767996311188, + -0.0541495755314827, + 0.0054790363647043705, + 0.11346771568059921, + 0.016422269865870476, + -0.05783709138631821, + -0.028689751401543617, + -0.004612169228494167, + -0.06932976096868515, + -0.007047247141599655, + 0.019897866994142532, + 0.05583415552973747, + -0.04603404179215431, + -0.08869452774524689, + 0.006895591504871845, + -0.04707295820116997, + -0.008687847293913364, + 0.07956824451684952, + -0.007845439948141575, + 0.01130337081849575, + 0.009873938746750355, + -0.0910375565290451, + -0.028380010277032852, + -0.02986784279346466, + -0.030517578125, + -0.0018073853570967913, + 0.0026724727358669043, + -0.05466226488351822, + -0.071486696600914, + -0.05784153565764427, + 0.04989476874470711, + -0.05991578474640846, + -0.00108960026409477, + 0.04598107561469078, + -0.020642803981900215, + -0.014020739123225212, + 0.010316511616110802, + 0.07514450699090958, + -0.051884833723306656, + -0.10478232055902481, + 0.08117213100194931, + -0.01100508589297533, + 0.033790960907936096, + 0.014482591301202774, + -0.03294740244746208, + 0.051476459950208664, + 0.02486974559724331, + -0.031192824244499207, + -0.10090354084968567, + 0.013763558119535446, + -0.05255519971251488, + -0.047856707125902176, + -0.056292638182640076, + 0.012146245688199997, + -0.07595311850309372, + 0.03786342963576317, + -0.03677218779921532, + -0.06882427632808685, + -0.003152573714032769, + 0.18139789998531342, + 0.03480929508805275, + 0.06565294414758682, + -0.028349585831165314, + 0.00973844900727272, + 0.0023754737339913845, + -0.0640120580792427, + 0.015367363579571247, + -0.024022968485951424, + 5.782227324336062e-34, + 0.11366652697324753, + 0.08042184263467789, + -0.016528062522411346, + 0.10697697848081589, + -0.018888821825385094, + 0.024512680247426033, + -0.020333167165517807, + -0.016070716083049774, + -0.08606181293725967, + -0.056834250688552856, + -0.015120552852749825, + 0.09097723662853241, + -0.06522072106599808, + 0.11078844964504242, + 0.023118745535612106, + 0.006521712522953749, + 0.032576654106378555, + -0.03016573190689087, + -0.013143032789230347, + -0.012120594270527363, + -0.020550502464175224, + -0.03062748908996582, + 0.011642503552138805, + 0.026094235479831696, + -0.014619282446801662, + 0.022909019142389297, + 0.0854407474398613, + -0.06697233021259308, + -0.03955378383398056, + 0.003906114026904106, + 0.05115685239434242, + 0.033260103315114975, + 0.02016517147421837, + -0.05390218645334244, + 0.06628375500440598, + -0.0012085953494533896, + -0.004521101713180542, + -0.050616197288036346, + -0.04089093953371048, + 0.03620050475001335, + -0.0448196604847908, + -0.04610682278871536, + -0.07016278803348541, + -0.02625771053135395, + -0.01046815700829029, + 0.05100797116756439, + -0.039399441331624985, + -0.0007043955265544355, + 0.0034619977232068777, + -0.0141941262409091, + 0.007510209456086159, + 0.02729899436235428, + 0.04746244475245476, + 0.0237226951867342, + -0.026607220992445946, + -0.03806484490633011, + -0.009421502240002155, + -0.02395751141011715, + -0.0643310397863388, + 0.041879527270793915, + -0.039563290774822235, + -0.03394092246890068, + 0.07050111889839172, + -0.09986284375190735, + -0.03903689607977867, + -0.005865848623216152, + -0.06595279276371002, + 0.022394491359591484, + 0.04797563701868057, + 0.0060944706201553345, + -0.002631067531183362, + 0.11445646733045578, + 0.057427290827035904, + 0.012453527189791203, + -0.10282429307699203, + -0.01707373559474945, + 0.01997223310172558, + 0.006143121048808098, + 0.06955914944410324, + -0.05538024753332138, + 0.011011834256350994, + 0.028118662536144257, + -0.08654765039682388, + -0.008155026473104954, + 0.04659856855869293, + -0.0075202989391982555, + -0.016111647710204124, + -0.12425389140844345, + -0.08661899715662003, + 0.028597498312592506, + -0.07032280415296555, + 0.013523321598768234, + 0.057013414800167084, + -0.007631443906575441, + -0.10890744626522064, + -2.031552519912434e-33, + 0.0030830949544906616, + -0.014483770355582237, + -0.08266200125217438, + -0.014572354964911938, + -0.08542843908071518, + 0.05823398754000664, + 0.08171810954809189, + 0.039727915078401566, + -0.0036134838592261076, + 0.06083494797348976, + -0.01296302955597639, + -0.023093553259968758, + -0.019448792561888695, + -0.06905234605073929, + 0.0509253554046154, + 0.04762854799628258, + 0.057706885039806366, + 0.0004094738105777651, + 0.021065983921289444, + 0.10846816748380661, + -0.05634790658950806, + -0.0667894184589386, + -0.052247628569602966, + 0.0688592791557312, + -0.0016694666119292378, + 0.06115288659930229, + 0.07415243983268738, + -0.056394197046756744, + -0.0446242056787014, + -0.0027520377188920975, + 0.024087807163596153, + 0.019209444522857666, + 0.01667020469903946, + 0.026541098952293396, + 0.01106848195195198, + 0.010780379176139832, + -0.03904740512371063, + -0.04269639030098915, + -0.030048567801713943, + 0.010858501307666302, + 0.07808324694633484, + 0.019330402836203575, + 0.02758374810218811, + 0.05835723504424095, + 0.057013291865587234, + 0.025894012302160263, + -0.10537158697843552, + -0.01054299809038639, + -0.06992903351783752, + 0.010954288765788078, + 0.05334492400288582, + -0.07454487681388855, + -0.036135751754045486, + 0.006345254834741354, + -0.03988981619477272, + -0.06990312784910202, + 0.03789946436882019, + 0.06156011298298836, + -0.019319729879498482, + 0.0019056283636018634, + -0.019191596657037735, + -0.07584517449140549, + 0.022313199937343597, + 0.07819987088441849, + -0.06455383449792862, + -0.02767534926533699, + 0.032428137958049774, + -0.024625344201922417, + -0.028554925695061684, + -0.06909684091806412, + 0.16454194486141205, + -0.009237043559551239, + -0.002516831737011671, + -0.03536029905080795, + 0.006018075160682201, + -0.032849330455064774, + 0.013525172136723995, + -0.030777838081121445, + -0.030036965385079384, + -0.005570821464061737, + -0.053148481994867325, + -0.034155696630477905, + -0.026857830584049225, + 0.013862384483218193, + -0.07802202552556992, + 0.0011960718547925353, + 0.012196828611195087, + 0.03965422138571739, + 0.023121779784560204, + -0.03915449604392052, + -0.07202016562223434, + 0.09770536422729492, + -0.02921227738261223, + 0.01443526428192854, + 0.07704665511846542, + -1.9579786680878897e-08, + -0.02050662785768509, + -0.026910608634352684, + -0.03525999188423157, + -0.04898952320218086, + 0.05420241504907608, + 0.004743342753499746, + -0.04097659885883331, + -0.03342503309249878, + -0.0598842017352581, + -0.05699971690773964, + 0.12841002643108368, + 0.06617026776075363, + -0.010518663562834263, + -0.05176255851984024, + 0.08597948402166367, + 0.00965374056249857, + -0.021492112427949905, + 0.10062447935342789, + 0.04975641146302223, + -0.01830979436635971, + -0.005669094622135162, + 0.09097211807966232, + -0.051099371165037155, + 0.005326148122549057, + -0.012442972511053085, + -0.023511391133069992, + 0.004116784315556288, + 0.07594044506549835, + -0.028646979480981827, + 0.0419626459479332, + 0.02521280199289322, + 0.008371812291443348, + 0.054003529250621796, + -0.07962082326412201, + -0.06400679051876068, + 0.043265074491500854, + -0.03295406326651573, + -0.06896983087062836, + 0.06993040442466736, + 0.08681423962116241, + 0.03133535012602806, + 0.02413691021502018, + -0.054037462919950485, + -0.05246412754058838, + -0.0869951918721199, + 0.059445228427648544, + 0.1041407510638237, + -0.07858008146286011, + -0.024707600474357605, + -0.03209659084677696, + -0.00943501852452755, + -0.00810967106372118, + 0.008422336541116238, + 0.06061331555247307, + -0.02040032111108303, + -0.043942905962467194, + 0.0436585396528244, + 0.054746370762586594, + 0.054807260632514954, + 0.01490239892154932, + 0.14045822620391846, + -4.511113729677163e-05, + -0.021273594349622726, + 0.009813421405851841 + ], + "smiley-x-eyes-bold||face,emoji,dead,killed,unconscious": [ + -0.012835437431931496, + -0.04998423159122467, + 0.027441250160336494, + 0.017064906656742096, + 0.07882394641637802, + -0.03788097947835922, + 0.1301162838935852, + -0.06742911040782928, + 0.02286524884402752, + 0.0107227498665452, + 0.13147981464862823, + -0.0559016615152359, + 0.06687965244054794, + -0.006855127867311239, + 0.02966950088739395, + 0.04894785210490227, + -0.010189007967710495, + -0.02869090996682644, + -0.018293555825948715, + 0.050936587154865265, + 0.011716351844370365, + -0.0009501260356046259, + 0.046340588480234146, + -0.013655026443302631, + 0.027697617188096046, + 0.022065551951527596, + -0.04646151512861252, + 0.0047110216692090034, + 0.016140706837177277, + -0.05967649444937706, + -0.03800124302506447, + -0.02546229399740696, + 0.07841292768716812, + 0.029291005805134773, + 0.0007860391051508486, + 0.0626736506819725, + 0.025611337274312973, + 0.028267068788409233, + -0.030273083597421646, + 0.027790358290076256, + -0.09779155999422073, + -0.07737211138010025, + -0.037428390234708786, + 0.07147480547428131, + 0.049266912043094635, + -0.009284322150051594, + -0.07031950354576111, + -0.019016124308109283, + -0.027770377695560455, + 0.007315872702747583, + -0.02766910009086132, + -0.12435393780469894, + -0.08690739423036575, + 0.04383213445544243, + 0.02859470248222351, + -0.04006539285182953, + -0.08629149198532104, + -0.045898884534835815, + 0.04273100569844246, + 0.009362420998513699, + -0.024547148495912552, + 0.006483474746346474, + 0.11943569034337997, + 0.01739509031176567, + -0.0449860580265522, + -0.01221470907330513, + 0.04409913718700409, + -0.09222356975078583, + 0.006226682104170322, + 0.07564357668161392, + 0.019232681021094322, + -0.03188871592283249, + -0.08063884824514389, + -0.03939391300082207, + -0.12112544476985931, + 0.042050957679748535, + 0.09712715446949005, + -0.09930466115474701, + -0.004439264070242643, + -0.009191256016492844, + -0.03613017126917839, + -0.017170153558254242, + -0.0364999882876873, + -0.005705063231289387, + 0.05029873177409172, + 0.047128140926361084, + -0.07721098512411118, + -0.08571943640708923, + -0.06693298369646072, + 0.08491630107164383, + -0.06325604766607285, + 0.019064323976635933, + 0.11093851178884506, + 0.00012056870036758482, + -0.023255005478858948, + -0.008360805921256542, + 0.09489602595567703, + 0.012409793213009834, + -0.09006751328706741, + 0.10093751549720764, + -0.02389851212501526, + -0.004437626339495182, + 0.034338030964136124, + -0.019684476777911186, + 0.059088334441185, + -0.01720157265663147, + -0.03972390294075012, + -0.06758421659469604, + -0.00032479624496772885, + -0.019203785806894302, + -0.017199276015162468, + -0.08517084270715714, + -0.006263948976993561, + -0.0711989626288414, + 0.05137978494167328, + 0.015117465518414974, + -0.08016195893287659, + -0.013058600015938282, + 0.14098286628723145, + 0.05022885650396347, + 0.059987347573041916, + -0.060961995273828506, + -0.05028681457042694, + 0.0028840999584645033, + 0.018374232575297356, + 0.04273181036114693, + -0.028545813634991646, + -1.2425273753554092e-33, + 0.08455093204975128, + 0.04066671058535576, + -0.010673385113477707, + 0.07206635177135468, + 0.013087308965623379, + -0.023999033495783806, + -0.07020218670368195, + -0.020667850971221924, + -0.0839790552854538, + 0.03401641920208931, + 0.013988037593662739, + 0.05337891727685928, + -0.06112917140126228, + 0.11460141837596893, + -0.0029940695967525244, + -0.011480914428830147, + 0.04346685856580734, + -0.023783793672919273, + -0.05570037290453911, + -0.045361489057540894, + -0.03158338740468025, + -0.013898808509111404, + -0.023660654202103615, + -0.002097145654261112, + -0.035316482186317444, + 0.01363005954772234, + 0.05903167277574539, + -0.011906580068171024, + -0.029726458713412285, + 0.0014572787331417203, + -0.03253569081425667, + 0.03883599489927292, + 0.06503219902515411, + -0.03460066393017769, + 0.03509130701422691, + 0.021142441779375076, + -0.025109684094786644, + -0.009897287003695965, + -0.050181660801172256, + 0.030219100415706635, + -0.06345558166503906, + 0.0014746588421985507, + -0.0951775312423706, + -0.03976329416036606, + 0.02072940208017826, + 0.09258165210485458, + -0.031959958374500275, + -0.0412449836730957, + 0.02405516617000103, + -0.06918586790561676, + -0.01571614295244217, + 0.0009304920095019042, + -0.014937172643840313, + 0.02647177129983902, + -0.006365587469190359, + 0.0029511807952076197, + -0.03518468514084816, + 0.019136931747198105, + -0.06877323240041733, + 0.02901913970708847, + -0.013498187065124512, + -0.014751832000911236, + 0.062449268996715546, + -0.05650702491402626, + 0.0020174882374703884, + -0.026000944897532463, + -0.06689751893281937, + -0.04277115315198898, + 0.015552171505987644, + -0.01145112793892622, + -0.017517203465104103, + 0.09324561804533005, + 0.06735031306743622, + -0.02179853804409504, + -0.07265666872262955, + 0.01582745462656021, + 0.017903601750731468, + 0.00650279875844717, + -0.0077486224472522736, + 0.006006988696753979, + 0.02724650502204895, + 0.04270371422171593, + -0.06950556486845016, + 0.01677849143743515, + 0.09494511783123016, + 0.010836982168257236, + -0.012141518294811249, + -0.11757688224315643, + -0.11417430639266968, + 0.03670760244131088, + -0.07643119990825653, + -0.0032477318309247494, + 0.025197375565767288, + -0.07996203750371933, + -0.14271068572998047, + -6.011611271574607e-34, + -0.04421936348080635, + -0.010642013512551785, + -0.06475022435188293, + 0.024754811078310013, + -0.052550315856933594, + 0.02441723272204399, + 0.035451337695121765, + 0.07591390609741211, + 0.021958474069833755, + 0.037704482674598694, + 0.002539670094847679, + -0.002783204661682248, + -0.032216645777225494, + -0.0199668500572443, + 0.05055539682507515, + 0.027722658589482307, + 0.054312121123075485, + 0.020309071987867355, + -0.0610087625682354, + 0.0887371301651001, + -0.05582680180668831, + -0.019155649468302727, + -0.06039628013968468, + 0.04784787818789482, + 0.023187533020973206, + 0.08923815935850143, + 0.03936905786395073, + -0.015086336992681026, + -0.05608176440000534, + -0.06198592856526375, + 0.012335947714745998, + 0.008911584503948689, + 0.05539676919579506, + 0.04912540689110756, + -0.023922627791762352, + -0.028200656175613403, + -0.04817080497741699, + -0.06183796375989914, + -0.03563479334115982, + 0.02417985536158085, + 0.05688673257827759, + 0.038348469883203506, + 0.043832629919052124, + 0.09544730186462402, + 0.03262139484286308, + -0.0030574339907616377, + -0.08916352689266205, + -0.045306261628866196, + -0.005520143546164036, + 0.04771287366747856, + 0.018461404368281364, + -0.09640311449766159, + -0.04640532657504082, + 0.028003189712762833, + -0.06053778901696205, + -0.05686165764927864, + -0.0004666068125516176, + 0.03359510749578476, + 0.01329104881733656, + -0.004046737682074308, + 0.007215096149593592, + -0.051128484308719635, + -0.008761481381952763, + 0.0782245546579361, + -0.026707936078310013, + -0.019036995247006416, + 0.02676915004849434, + 0.006541111972182989, + -0.04450744390487671, + -0.04952192306518555, + 0.14744628965854645, + 0.009428269229829311, + -0.09331317991018295, + 0.0019413353875279427, + 0.007933245971798897, + -0.04030854254961014, + -0.016648706048727036, + 0.02805180288851261, + -0.04924856498837471, + 0.03726671636104584, + -0.026424912735819817, + -0.01985868439078331, + -0.006277735810726881, + 0.06572975218296051, + -0.04217285290360451, + 0.03091631457209587, + 0.01749313622713089, + 0.08575445413589478, + 0.015900202095508575, + -0.021219374611973763, + -0.07743270695209503, + 0.08947993814945221, + 0.019271785393357277, + 0.0174245722591877, + 0.00037300342228263617, + -2.1692496687819585e-08, + -0.03555316478013992, + -0.0537990927696228, + -0.03712809085845947, + -0.061162084341049194, + 0.01705675758421421, + -0.023007789626717567, + -0.012070272117853165, + -0.048132363706827164, + -0.04257498309016228, + -0.01016195211559534, + 0.07281284779310226, + 0.0771200954914093, + -0.0597422793507576, + -0.034126318991184235, + 0.05303714796900749, + -0.005925836507230997, + -0.07015231251716614, + 0.1067340075969696, + 0.010142535902559757, + -0.08254975825548172, + -0.016908787190914154, + 0.06729213148355484, + -0.009380370378494263, + -0.0010095637990161777, + 0.03237856179475784, + -0.034413643181324005, + -0.013321165926754475, + 0.016688518226146698, + -0.04211658239364624, + 0.07612109929323196, + 0.021687669679522514, + 0.018309101462364197, + 0.036353662610054016, + -0.05781342089176178, + -0.04943733662366867, + 0.027163146063685417, + 0.005458335392177105, + -0.05131134018301964, + 0.006469408515840769, + 0.07524564117193222, + 0.036050133407115936, + -0.021065402776002884, + -0.017764974385499954, + -0.03311481326818466, + -0.019031889736652374, + -0.0009696418419480324, + 0.10103609412908554, + -0.08112150430679321, + -0.01926466077566147, + -0.04883291572332382, + 0.011686121113598347, + -0.012092255055904388, + 0.004507864359766245, + 0.0665598139166832, + -0.010865287855267525, + -0.04846790432929993, + 0.07571537792682648, + 0.1178257167339325, + 0.01804536022245884, + 0.02711171843111515, + 0.15670906007289886, + 0.03765552118420601, + 0.032492123544216156, + -0.018856707960367203 + ], + "snapchat-logo-bold||logos,messaging,social media": [ + 0.014222493395209312, + 0.030980629846453667, + -0.008763667196035385, + -0.0011774081503972411, + 0.063042052090168, + -0.0974455401301384, + 0.04468841850757599, + -0.040244098752737045, + 0.0828690156340599, + -0.0035097079817205667, + 0.04120813310146332, + 0.05293526127934456, + 0.04529184103012085, + -0.006385007407516241, + 0.055141303688287735, + -0.011442305520176888, + -0.04158691689372063, + 0.003456717124208808, + 0.03859039768576622, + -0.018314313143491745, + -0.014413703233003616, + -0.04655250906944275, + 0.03322703018784523, + 0.00563517352566123, + 0.053866274654865265, + -0.01785050518810749, + 0.0010724673047661781, + -0.003362140152603388, + -0.002126673934981227, + -0.049735598266124725, + 0.013575994409620762, + 0.032786644995212555, + 0.08841314166784286, + 0.07869850099086761, + 3.3261647331528366e-05, + 0.033858321607112885, + 0.056192345917224884, + 0.004438667558133602, + 0.0434795618057251, + 0.05715310573577881, + 0.02783353626728058, + -0.1182556226849556, + 0.018122602254152298, + 0.04462948068976402, + -0.0061508771032094955, + 0.05994338542222977, + -0.04590623080730438, + 0.006129294168204069, + -0.05138658732175827, + 0.029047103598713875, + -0.02581102028489113, + -0.10090216994285583, + -0.09975031018257141, + 0.034666821360588074, + 0.015584859997034073, + -0.021060097962617874, + -0.06382060050964355, + 0.02173011377453804, + 0.06529902666807175, + 0.00371367740444839, + 0.01150086522102356, + 0.0130689712241292, + 0.024042854085564613, + 0.07834089547395706, + 0.10489019006490707, + 0.018894869834184647, + 0.022291945293545723, + 0.0649283155798912, + -0.07094689458608627, + 0.028832050040364265, + 0.07891704142093658, + -0.004769465886056423, + -0.04002927243709564, + -0.01612173020839691, + -0.045905645936727524, + -0.007166161667555571, + 0.08076296001672745, + 0.009345470927655697, + -0.08565817028284073, + -0.00425675930455327, + -0.06559029966592789, + -0.020169928669929504, + -0.014647004194557667, + -0.023098699748516083, + 0.0549185574054718, + 0.07471340149641037, + -0.09603293985128403, + -0.08523407578468323, + -0.025178132578730583, + 0.0544491708278656, + -0.10774853825569153, + 0.0066945659928023815, + 0.03624356910586357, + 0.0049118767492473125, + -0.09585750102996826, + 0.011523058637976646, + -0.028818279504776, + -0.039906423538923264, + -0.09578128904104233, + 0.07033199816942215, + -0.04639651998877525, + 0.06831491738557816, + 0.0986650362610817, + -0.06101936846971512, + 0.0638687014579773, + 0.04619917646050453, + -0.02457280457019806, + -0.04314013198018074, + 0.049719903618097305, + 0.09069250524044037, + 0.011430473998188972, + -0.0341302827000618, + -0.07670562714338303, + -0.04192598909139633, + -0.007832568138837814, + -0.05364440381526947, + 0.0018429722404107451, + -0.02432248741388321, + 0.13037142157554626, + -0.06303796917200089, + -0.0004312962992116809, + 0.012851093895733356, + -0.042976055294275284, + -0.05600278452038765, + -0.023533467203378677, + 0.019617458805441856, + -0.02318379282951355, + -2.680085059217575e-33, + 0.06393583863973618, + 0.05899280309677124, + 0.01784653216600418, + 0.07646287977695465, + -0.02752523310482502, + 0.06542506814002991, + -0.05379344895482063, + -0.11937552690505981, + -0.0867706686258316, + -0.012916570529341698, + 0.04013457149267197, + 0.07593751698732376, + 0.02124384604394436, + 0.09291960299015045, + 0.027505788952112198, + -0.0316462516784668, + -0.04665416479110718, + -0.039833538234233856, + -0.06397145986557007, + -0.02344522438943386, + -0.05013268068432808, + 0.02964271977543831, + -0.07226918637752533, + 0.023258240893483162, + -0.025306861847639084, + -0.027466772124171257, + 0.12742578983306885, + -0.040889911353588104, + -0.018857423216104507, + 0.0032461511436849833, + -0.01083261426538229, + 0.07274320721626282, + 0.015275106765329838, + 0.008918492123484612, + 0.03789602220058441, + -0.03074507974088192, + -0.012564018368721008, + -0.04117707908153534, + 0.006800059229135513, + 0.05343126133084297, + 0.004824353847652674, + -0.044229041785001755, + -0.03893093764781952, + -0.03288411349058151, + -0.02067297324538231, + 0.09820601344108582, + -0.004508649930357933, + -0.08608271926641464, + 0.048432815819978714, + 0.0011027028085663915, + 0.01738455705344677, + -0.04982081800699234, + 0.011922343634068966, + -0.0072460169903934, + -0.018914641812443733, + -0.08426586538553238, + -0.03230661898851395, + 0.01732213795185089, + -0.013181660324335098, + 0.0023312524426728487, + -0.042706724256277084, + -0.0812770277261734, + 0.11083631217479706, + -0.026420703157782555, + 0.016848141327500343, + 0.12097205221652985, + -0.04038140922784805, + 0.050906501710414886, + 0.06483709812164307, + -0.005017670337110758, + 0.03343728557229042, + 0.04660765081644058, + 0.02127818576991558, + -0.008035320788621902, + -0.05639909952878952, + -0.019552724435925484, + 0.0033841305412352085, + 0.0721973329782486, + 0.0346280001103878, + 0.08432454615831375, + 0.011288409121334553, + -0.02525969408452511, + -0.05148769170045853, + 0.030789002776145935, + 0.0173328947275877, + 0.052047885954380035, + 0.040510524064302444, + -0.06808111816644669, + -0.0782134160399437, + 0.03499630093574524, + -0.13052189350128174, + 0.02871142514050007, + 0.0575910359621048, + 0.027679799124598503, + -0.11355563253164291, + 2.077128134850493e-34, + 0.021610716357827187, + 0.019396943971514702, + 0.012797947973012924, + -0.002923401305451989, + -0.035326696932315826, + -0.006832199636846781, + 0.07421889901161194, + 0.0832243412733078, + -0.07860934734344482, + 0.04216570407152176, + 0.03451124206185341, + -0.04058578237891197, + -0.11056298762559891, + -0.04933677241206169, + -0.019822482019662857, + 0.04602877423167229, + 0.09207742661237717, + -0.03028344362974167, + -0.109652578830719, + 0.011587284505367279, + -0.03615669533610344, + -0.030038487166166306, + -0.028199847787618637, + 0.11244837194681168, + 0.0010071274591609836, + 0.02032972127199173, + 0.05082233250141144, + -0.011798322200775146, + -0.014172188937664032, + -0.08358614891767502, + -0.02965589053928852, + 0.021115023642778397, + 0.03826156631112099, + 0.02106332965195179, + 0.015591655857861042, + 0.02827642671763897, + -0.028148729354143143, + -0.029680252075195312, + 0.03487207740545273, + -0.024306965991854668, + 0.038249753415584564, + -0.010837835259735584, + -0.03948705643415451, + 0.0724031925201416, + -0.039467599242925644, + 0.02558123506605625, + -0.07726258784532547, + -0.09409815818071365, + -0.11729766428470612, + 0.10492026805877686, + 0.03849393501877785, + -0.03644215688109398, + 0.05227790027856827, + 0.04162454977631569, + -0.1001901626586914, + -0.05584177002310753, + -0.013938572257757187, + 0.03635655343532562, + -0.04309414327144623, + 0.041503340005874634, + 0.03514319658279419, + -0.0187547467648983, + -0.0375811792910099, + -0.042410433292388916, + -0.006013520061969757, + -0.05367860570549965, + -0.0011364743113517761, + -0.021465729922056198, + -0.08236771076917648, + 0.01231416966766119, + 0.027468916028738022, + -0.052732426673173904, + 0.026231521740555763, + -0.0002703521749936044, + 0.0007027934771031141, + -0.08611569553613663, + 0.07467589527368546, + 0.029312364757061005, + -0.0460708886384964, + 0.028851289302110672, + -0.03005989082157612, + 0.022582491859793663, + -0.056494876742362976, + 0.06225181370973587, + -0.0011636307463049889, + 0.02869768626987934, + -0.022561615332961082, + 0.026972876861691475, + -0.011529549024999142, + -0.02192116528749466, + -0.05127524584531784, + 0.05914530158042908, + 0.011675962246954441, + 0.029770122841000557, + 0.015730125829577446, + -1.7319608858201718e-08, + -0.025088783353567123, + -0.06539439409971237, + 0.02201342210173607, + 0.010300223715603352, + 0.03985865041613579, + 0.05739378556609154, + -0.04851400852203369, + -0.05881286785006523, + -0.004195789340883493, + 0.009612909518182278, + -0.018543453887104988, + 0.017227357253432274, + -0.09920134395360947, + -0.005494209006428719, + 0.005908790975809097, + -0.041628092527389526, + -0.0935661643743515, + 0.01827630028128624, + 0.009599191136658192, + 0.005652450956404209, + -0.04773358255624771, + 0.051006823778152466, + -0.03284141793847084, + 0.032369840890169144, + 0.004092166665941477, + 0.033752549439668655, + -0.07994890958070755, + -0.026234209537506104, + -0.018675539642572403, + 0.02855030819773674, + 7.92253267718479e-05, + 0.018864687532186508, + 0.06227912753820419, + -0.04755295813083649, + -0.09800148755311966, + -0.0023256558924913406, + -0.006062778644263744, + -0.05403962358832359, + 0.009432622231543064, + 0.033075861632823944, + 0.04323950037360191, + 0.00030016311211511493, + 0.008722478523850441, + -0.027626916766166687, + -0.11332418024539948, + 0.004544829949736595, + 0.061230458319187164, + 0.019836967810988426, + -0.040818117558956146, + -0.03774815797805786, + -0.043880049139261246, + 0.004269116558134556, + 0.003234457690268755, + 0.016145071014761925, + -0.032184991985559464, + -0.08945542573928833, + 0.04432927444577217, + 0.08075865358114243, + 0.09885287284851074, + 0.06668312102556229, + 0.1599591076374054, + -0.07030286639928818, + -0.0558331273496151, + 0.02550138160586357 + ], + "sneaker-bold||clothes,clothing,shoes,trainers,sports": [ + -0.06697220355272293, + -0.04901469871401787, + -0.005030809435993433, + 0.03390795364975929, + 0.10983102768659592, + -0.018095675855875015, + 0.0833771675825119, + -0.024673692882061005, + -0.0551975853741169, + -0.0033660356421023607, + 0.059363264590501785, + 0.03174274042248726, + 0.016200875863432884, + -0.04413856193423271, + 0.037426017224788666, + 0.014836705289781094, + 0.028021514415740967, + 0.016773609444499016, + 0.0037523251958191395, + -0.04698414355516434, + -0.02373426780104637, + -0.017726922407746315, + 0.04185867682099342, + 0.12326429039239883, + -0.05064651742577553, + -0.02764863520860672, + 0.08978509157896042, + -0.005905983038246632, + -0.06792251020669937, + -0.07663305848836899, + -0.0015342773403972387, + -0.0126259196549654, + 0.10100763291120529, + 0.08694694936275482, + -0.011732887476682663, + -0.0860329419374466, + 0.05199103802442551, + -0.018922816962003708, + -0.061289772391319275, + 0.13067872822284698, + -0.008069021627306938, + -0.13781939446926117, + -0.08213023096323013, + 0.03980550169944763, + -0.008421541191637516, + -0.017897339537739754, + 0.02092066965997219, + 0.026910357177257538, + -0.01370388176292181, + 0.08898916840553284, + -0.026563413441181183, + -0.029552042484283447, + -0.08325697481632233, + 0.02588832564651966, + 0.05807086080312729, + -0.022781284525990486, + -0.10623013973236084, + -0.0022412482649087906, + 0.0347880981862545, + -0.07575483620166779, + 0.07957451045513153, + -0.002342025050893426, + 0.010693827643990517, + 0.05660579726099968, + 0.019322941079735756, + -0.026987021788954735, + -0.02567385695874691, + 0.03294174373149872, + -0.009366730228066444, + 0.001207654713653028, + 0.0031056394800543785, + 0.016033880412578583, + -0.016107814386487007, + 0.029377028346061707, + -0.06656322628259659, + 0.016447434201836586, + 0.06101333722472191, + -0.03448278456926346, + -0.05350331962108612, + -0.03443465009331703, + -0.06375953555107117, + -0.08690973371267319, + -0.04653535410761833, + -0.041645824909210205, + 0.0060034822672605515, + 0.005242380313575268, + -0.04553356394171715, + -0.05492732673883438, + -0.02695661596953869, + -0.02142656035721302, + -0.13891342282295227, + -0.03267641365528107, + -0.021296901628375053, + -0.021486008539795876, + -0.08290603011846542, + 0.07075430452823639, + 0.032798122614622116, + -0.021294595673680305, + -0.012979713268578053, + 0.07337743788957596, + 0.012657186016440392, + 0.05776209756731987, + 0.04941905662417412, + 0.06266164034605026, + -0.050324879586696625, + -0.05218680575489998, + 0.007718237116932869, + 0.05939467251300812, + 0.037073470652103424, + 0.10124266892671585, + -0.042438555508852005, + -0.0460837297141552, + -0.05275319144129753, + -0.04792040213942528, + -0.022344911471009254, + -0.018134770914912224, + -0.03306500241160393, + 0.08260493725538254, + 0.0908319503068924, + 0.06274937093257904, + -0.007394553627818823, + 0.005474440287798643, + 0.06962540745735168, + -0.04002152383327484, + -0.06978987157344818, + 0.0038058659993112087, + 0.0031084695365279913, + -1.273367663510682e-33, + 0.0039296504110097885, + 0.039892636239528656, + -0.050036247819662094, + 0.08521457016468048, + -0.05032321438193321, + -0.01083019096404314, + 0.04774371162056923, + -0.016296306625008583, + -0.07631158828735352, + 0.10697737336158752, + 0.017735539004206657, + 0.07084621489048004, + -0.05925380438566208, + 0.05704978108406067, + 0.11222895234823227, + -0.0005051613552495837, + -0.0218045711517334, + -0.02957220748066902, + -0.06329590082168579, + -0.023075683042407036, + -0.003563306760042906, + 0.08888056129217148, + 0.005000733770430088, + -0.008120766840875149, + 0.019088320434093475, + -0.03455216437578201, + 0.03919125348329544, + -0.001774166594259441, + -0.007060841657221317, + 0.004576664883643389, + 0.06454481929540634, + 0.04224782809615135, + 0.052219610661268234, + -0.027877209708094597, + -0.010184478014707565, + -0.03364633396267891, + -0.06796449422836304, + -0.06868025660514832, + 0.053130410611629486, + 0.02236351929605007, + -0.02410348504781723, + -0.043341558426618576, + 0.026062780991196632, + -0.03447713330388069, + -0.013198844157159328, + 0.13983042538166046, + 0.020555738359689713, + 0.02151075005531311, + 0.016405807808041573, + -0.007677512243390083, + -0.04461844265460968, + -0.008828472346067429, + -0.005855488125234842, + -0.04833792522549629, + 0.018144719302654266, + -0.09850174933671951, + 0.0003424637543503195, + 0.04264149069786072, + 0.011908936314284801, + -0.02173750102519989, + -0.00042665511136874557, + 0.07191405445337296, + 0.03893492743372917, + -0.061059217900037766, + -0.07285536825656891, + -0.0032138570677489042, + 0.007269104477018118, + -0.0021333000622689724, + 0.025085333734750748, + 0.036151494830846786, + -0.02550375647842884, + 0.09685971587896347, + 0.011928172782063484, + 0.050192683935165405, + 0.04303388297557831, + 0.003774079494178295, + 0.0049750227481126785, + 0.028909288346767426, + 0.014107526279985905, + -0.08605567365884781, + -0.10144153982400894, + -0.013508123345673084, + 0.010235925205051899, + 0.18484552204608917, + -0.04457256942987442, + 0.019817808642983437, + 0.011660570278763771, + -0.02531452104449272, + 0.03948669880628586, + 0.009293336421251297, + -0.07344453036785126, + 0.0068750702776014805, + -0.06210178881883621, + -0.04615585505962372, + -0.03047388233244419, + -2.4354865416595427e-33, + 0.1133221685886383, + 0.03800714761018753, + 0.05076118931174278, + 0.0034837042912840843, + 0.019357804208993912, + 0.030630698427557945, + -0.04820389673113823, + 0.04992316663265228, + 0.021606139838695526, + 0.05132113769650459, + 0.01852070540189743, + -0.011611372232437134, + -0.033721648156642914, + -0.060144975781440735, + 0.01835574395954609, + 0.039420634508132935, + 0.05104317516088486, + 0.04290882870554924, + 0.011566873639822006, + -0.034216396510601044, + 0.004028544295579195, + 0.0032540480606257915, + -0.02975665219128132, + -0.04902532324194908, + -0.07699467986822128, + -0.0003324607969261706, + 0.02373530901968479, + 0.03261827677488327, + -0.13985951244831085, + 0.01064589899033308, + 0.01971716247498989, + -0.0029249917715787888, + 0.056257281452417374, + 0.0663302019238472, + -0.054606128484010696, + 0.02545291744172573, + -0.10586953163146973, + -0.018806003034114838, + 0.03131626173853874, + -0.05776375159621239, + 0.023679926991462708, + -0.05878537893295288, + 0.04193563014268875, + 0.0451618954539299, + -0.009003049694001675, + -0.10857842862606049, + -0.049636971205472946, + -0.06952230632305145, + 0.004015603102743626, + 0.012890997342765331, + -0.0004954026662744582, + 0.0037362228613346815, + -0.01651711016893387, + 0.02275811694562435, + -0.08711410313844681, + 0.02916785143315792, + -0.08257150650024414, + 0.006954333279281855, + -0.00026073120534420013, + 0.04537966847419739, + -0.009238812141120434, + 0.09028712660074234, + -0.037355806678533554, + -0.007709579076617956, + -0.01366187259554863, + -0.07096848636865616, + -0.016407979652285576, + -0.010469439439475536, + -0.012645779177546501, + -0.04550943523645401, + 0.05991354584693909, + -0.09175900369882584, + 0.04230483993887901, + 0.07995425909757614, + -0.03880852088332176, + -0.03190232440829277, + 0.026035934686660767, + 0.05628179386258125, + 0.03366531804203987, + 0.06581687182188034, + -0.005904880817979574, + -0.06356587260961533, + -0.054948583245277405, + 0.06869327276945114, + 0.012617941945791245, + 0.15797090530395508, + -0.018445197492837906, + 0.05840349197387695, + 0.04562436789274216, + -0.04905353859066963, + 0.03242387995123863, + 0.06072933226823807, + -0.002528307493776083, + 0.0012726325076073408, + -0.05331725627183914, + -2.0293484226385772e-08, + 0.03454408049583435, + 0.057366080582141876, + -0.0030045912135392427, + 0.05844558775424957, + 0.008820699527859688, + -0.024162646383047104, + -0.059240639209747314, + -0.05974671244621277, + -0.04103093966841698, + 0.05137845501303673, + -0.0008616710547357798, + -0.007991652935743332, + -0.03341029956936836, + 0.004088439512997866, + 0.02356758341193199, + 0.002999107586219907, + -0.08934283256530762, + 0.11710666865110397, + -0.03726277872920036, + -0.03906906396150589, + -0.01086570043116808, + -0.009612523019313812, + 0.03804715350270271, + 0.024158459156751633, + -0.013589363545179367, + -0.04887442663311958, + -0.026410311460494995, + -0.04892483726143837, + 0.021793726831674576, + 0.10246403515338898, + 0.05125992372632027, + 0.030899448320269585, + 0.008640265092253685, + 0.012935660779476166, + -0.08699819445610046, + 0.023141376674175262, + -0.002310571726411581, + -0.055451083928346634, + -0.010126144625246525, + 0.047858502715826035, + -0.0109209343791008, + -0.11859972029924393, + -0.024684589356184006, + -0.011831597425043583, + -0.027700219303369522, + -0.03281077742576599, + -0.0028517432510852814, + -0.059772390872240067, + -0.11347294598817825, + -0.008611842058598995, + -0.01591167040169239, + -0.047910504043102264, + 0.01502685621380806, + 0.021830584853887558, + -0.038366831839084625, + -0.06269487738609314, + -0.04769971966743469, + 0.04830319061875343, + -0.02778630703687668, + -0.015061981976032257, + 0.07457703351974487, + -0.11078294366598129, + -0.043171703815460205, + 0.008898436091840267 + ], + "sneaker-move-bold||*updated*,clothes,clothing,shoes,trainers,sports": [ + -0.06715642660856247, + -0.06481317430734634, + 0.01845329813659191, + 0.002873663790524006, + 0.09894455969333649, + -0.003915542270988226, + 0.07284437119960785, + -0.039086371660232544, + -0.04878869652748108, + 0.018897339701652527, + 0.0765622928738594, + 0.051950301975011826, + 0.01819310151040554, + -0.041595373302698135, + -0.005115678068250418, + 0.02669674903154373, + 0.022049367427825928, + 0.035451509058475494, + -0.0031314941588789225, + -0.022777583450078964, + -0.039672039449214935, + -0.027839476242661476, + 0.0506930835545063, + 0.12394329160451889, + -0.009713263250887394, + 0.021842757239937782, + 0.03765445575118065, + -0.026495443657040596, + -0.07514022290706635, + -0.10218843817710876, + -0.026219455525279045, + 0.012504888698458672, + 0.09498388320207596, + 0.0533611997961998, + -0.01602967642247677, + -0.06636419892311096, + 0.04272209852933884, + -0.02022727020084858, + -0.03934350237250328, + 0.10948773473501205, + 0.004393365699797869, + -0.14893940091133118, + -0.06723497807979584, + 0.03419481962919235, + -0.030868059024214745, + -0.0035990658216178417, + 0.0183216892182827, + 0.017803877592086792, + -0.028355978429317474, + 0.08113428205251694, + -0.05696513131260872, + -0.06855648010969162, + -0.10431019961833954, + 0.0418257899582386, + 0.04140426218509674, + 0.016632920131087303, + -0.06983809173107147, + 0.012079802341759205, + 0.06235084310173988, + -0.08498799055814743, + 0.10801903158426285, + 0.01988961733877659, + 0.023979637771844864, + 0.07080843299627304, + -0.020974570885300636, + -0.03590261936187744, + -0.009740591049194336, + -0.009364444762468338, + 0.0012244494864717126, + 0.015127111226320267, + 0.004452698398381472, + 0.021292099729180336, + -0.022711152210831642, + 0.007436510641127825, + -0.06031063571572304, + -0.022840777412056923, + 0.06141681596636772, + -0.0141447763890028, + -0.026536358520388603, + -0.049490101635456085, + -0.04969939589500427, + -0.1373504251241684, + -0.078230120241642, + -0.058005232363939285, + 0.009311137720942497, + 0.01819959096610546, + -0.06375787407159805, + -0.0383322611451149, + -0.019272087141871452, + -0.036483779549598694, + -0.10933424532413483, + -0.04125604033470154, + -0.020522385835647583, + -0.01835406944155693, + -0.11390697956085205, + 0.0522160530090332, + -0.02420748770236969, + -0.03304481878876686, + 0.008249987848103046, + 0.08929551392793655, + 0.020166151225566864, + 0.08027257770299911, + 0.011863570660352707, + 0.059746719896793365, + -0.051973339170217514, + -0.0548076331615448, + 0.016382768750190735, + 0.08611845225095749, + 0.013063785620033741, + 0.1221141666173935, + -0.021437836810946465, + -0.05629339441657066, + -0.06322577595710754, + -0.03940623626112938, + -0.033796969801187515, + -0.013745131902396679, + -0.07230564951896667, + 0.11173447966575623, + 0.06824549287557602, + 0.05761675536632538, + 0.008480172604322433, + -0.004994950722903013, + 0.06146042048931122, + -0.03828115016222, + -0.09158726036548615, + -0.005513997748494148, + -0.018176397308707237, + -2.4361681447120273e-33, + 0.010552329942584038, + 0.0375179797410965, + -0.029888324439525604, + 0.10327684134244919, + -0.03346828371286392, + -0.0507577545940876, + 0.01112731546163559, + -0.009535523131489754, + -0.05483674257993698, + 0.08151960372924805, + 0.0316804014146328, + 0.07201254367828369, + -0.056745219975709915, + 0.05795232579112053, + 0.0943133533000946, + -0.06257022172212601, + 0.010093341581523418, + -0.011788321658968925, + -0.043043021112680435, + 0.0017510881880298257, + 0.01839396543800831, + 0.08179572224617004, + -0.003171472577378154, + -0.023814694955945015, + 0.047091927379369736, + -0.0082522202283144, + -0.012733373790979385, + -0.0064344764687120914, + 0.0023952361661940813, + -0.0009944479679688811, + 0.03628021106123924, + 0.04764740914106369, + 0.03236423805356026, + -0.04104031249880791, + 0.003123452654108405, + -0.029093362390995026, + -0.06410027295351028, + -0.10631806403398514, + 0.06594984978437424, + -0.010264893062412739, + -0.04152945056557655, + -0.06481193751096725, + -0.0483056902885437, + -0.05534173920750618, + 0.03158577159047127, + 0.1253964751958847, + 0.024981873109936714, + 0.03627080097794533, + 0.04339982941746712, + 0.0034473580308258533, + -0.03695199638605118, + 0.002212499501183629, + -0.03189234435558319, + -0.053846217691898346, + 0.03027784451842308, + -0.10307495296001434, + 0.01898287795484066, + 0.06014277786016464, + 0.01932894065976143, + -0.025095973163843155, + 0.021382877603173256, + 0.0527753122150898, + 0.032529767602682114, + -0.05560772866010666, + -0.05585002154111862, + -0.009097358211874962, + 0.007180536165833473, + 0.009476333856582642, + 0.032743606716394424, + 0.05013721436262131, + -0.04775931313633919, + 0.06464885920286179, + 0.02161279320716858, + 0.08918275684118271, + 0.04881912097334862, + -0.03140057623386383, + -0.061593107879161835, + -0.019017783924937248, + 0.0029580851551145315, + -0.092006616294384, + -0.09063837677240372, + -0.010141110047698021, + 0.001656617852859199, + 0.16856397688388824, + 0.0016218054806813598, + 0.0363900251686573, + -0.011102095246315002, + -0.01615559682250023, + 0.010878243483603, + 0.004364335909485817, + -0.08049699664115906, + -0.0051391455344855785, + -0.08906683325767517, + -0.015904875472187996, + -0.007677827961742878, + -1.9487521672084506e-33, + 0.09787805378437042, + 0.04255153611302376, + 0.039890795946121216, + 0.019682951271533966, + -0.0038229164201766253, + 0.011909080669283867, + -0.03763490915298462, + 0.07152890413999557, + 0.08329883217811584, + 0.03597823902964592, + -0.020143358036875725, + -0.01134959515184164, + -0.021971141919493675, + -0.056320901960134506, + 0.022136442363262177, + 0.026465630158782005, + 0.04650726541876793, + -0.0015226155519485474, + -0.02399924397468567, + -0.006534629967063665, + -0.014924916438758373, + 0.011439057998359203, + -0.05384436249732971, + -0.00191287521738559, + -0.06529782712459564, + -0.006440786644816399, + 0.05594930052757263, + 0.037119075655937195, + -0.09850174188613892, + 0.0002365286200074479, + -0.015869397670030594, + -0.05244378745555878, + 0.03549842908978462, + 0.06719750165939331, + -0.042274393141269684, + 0.03244522586464882, + -0.07912100106477737, + -0.015097228810191154, + 0.014048955403268337, + -0.010321788489818573, + 0.02620287425816059, + -0.05850227177143097, + 0.06256821751594543, + 0.049164723604917526, + 0.012531033717095852, + -0.07011701911687851, + -0.06464879959821701, + -0.039608266204595566, + -0.04032030701637268, + 0.00594797870144248, + 0.019652079790830612, + 0.014102824963629246, + -0.06201985105872154, + -0.005459883250296116, + -0.043896760791540146, + 0.0663260668516159, + -0.06445986777544022, + 0.0006052104872651398, + -0.00826611090451479, + 0.007388474885374308, + 0.004747788887470961, + 0.09749683737754822, + -0.039201799780130386, + -0.010912615805864334, + -0.013540120795369148, + -0.03173450380563736, + -0.026832539588212967, + -0.049243003129959106, + -0.0019775941036641598, + -0.043147262185811996, + 0.09236709028482437, + -0.08535734564065933, + -0.002376062562689185, + 0.05215498059988022, + -0.02861711196601391, + -0.07631788402795792, + 0.07222158461809158, + 0.04681568965315819, + 0.044894371181726456, + 0.04485141113400459, + -0.00940506998449564, + -0.03728289157152176, + -0.018505025655031204, + 0.05520863085985184, + -0.011060788296163082, + 0.17180974781513214, + -0.01851070299744606, + 0.040545929223299026, + 0.02049955539405346, + -0.047650016844272614, + 0.013602959923446178, + 0.06589005887508392, + 0.021049700677394867, + -0.012126567773520947, + -0.07836923003196716, + -2.36922836904796e-08, + 0.01895671710371971, + 0.08296047151088715, + -0.0005809515714645386, + 0.04610972851514816, + 0.031099651008844376, + 0.007467623800039291, + -0.045590270310640335, + -0.0312211737036705, + -0.010936765000224113, + 0.010102801024913788, + 0.004304452333599329, + -0.00722001027315855, + -0.004281875677406788, + 0.04298238456249237, + 0.03658636286854744, + 0.015409458428621292, + -0.10089763253927231, + 0.1318795382976532, + -0.04923358932137489, + -0.05252508446574211, + -0.02344859577715397, + -0.00010013749852078035, + 0.05048524960875511, + 0.023631203919649124, + -0.013568995520472527, + -0.06160501390695572, + -0.05501963943243027, + -0.02684573456645012, + 0.018073391169309616, + 0.07103471457958221, + 0.05346718803048134, + 0.02463989146053791, + 0.03169010207056999, + 0.02494594268500805, + -0.06385848671197891, + 0.028773605823516846, + 0.017493961378932, + -0.0022684673313051462, + 0.007908305153250694, + 0.06020762771368027, + -0.0248288381844759, + -0.09039109945297241, + -0.008354146964848042, + 0.011615674011409283, + -0.0440908782184124, + -0.005696229171007872, + -0.012775951996445656, + -0.09989655762910843, + -0.1296011209487915, + -0.030917905271053314, + 0.0180157832801342, + -0.04931041598320007, + -0.006164258811622858, + 0.05229610577225685, + -0.009856842458248138, + -0.007607681676745415, + -0.04151265323162079, + 0.027013976126909256, + -0.010306703858077526, + -0.008859061636030674, + 0.0546768456697464, + -0.11204272508621216, + -0.05469134449958801, + 0.034707799553871155 + ], + "snowflake-bold||meteorology,snowy,snowing,snowstorm": [ + -0.022336935624480247, + -0.01856989413499832, + 0.0854877233505249, + 0.0790465772151947, + 0.04906131699681282, + 0.004029714502394199, + 0.01123285572975874, + -0.007499990984797478, + 0.01963643915951252, + -0.048821501433849335, + -0.07496881484985352, + -0.005259640049189329, + 0.03725215047597885, + -0.040864333510398865, + -0.028702998533844948, + 0.01143490057438612, + -0.046869534999132156, + -0.025840947404503822, + -0.02530490979552269, + 0.00932939350605011, + 0.03402194380760193, + 0.05431069806218147, + -0.03082491084933281, + 0.048654407262802124, + 0.10543537139892578, + 0.06436199694871902, + -0.06636634469032288, + 0.02325800620019436, + -0.0302466731518507, + -0.02109909988939762, + 0.007418640423566103, + 0.038619887083768845, + 0.046080827713012695, + 0.03279024362564087, + 0.03764332830905914, + 0.047810714691877365, + -0.01641235314309597, + 0.056772127747535706, + -0.01953117363154888, + 0.11000949144363403, + 0.010431897826492786, + -0.06554757803678513, + 0.0402044914662838, + -0.04983535781502724, + -0.03994109481573105, + 0.030415425077080727, + -0.059024628251791, + 0.014344971626996994, + 0.013548741117119789, + 0.014184988103806973, + -0.05934779345989227, + -0.068401999771595, + -0.12747564911842346, + 0.08190260082483292, + 0.02179168350994587, + 0.014026036486029625, + -0.051866769790649414, + -0.10416752845048904, + 0.042675867676734924, + -0.02355256862938404, + -0.010968961752951145, + 0.0645766630768776, + -0.02320517599582672, + 0.07041236758232117, + 0.11568185687065125, + -0.013293160125613213, + -0.025579256936907768, + -0.03712811321020126, + 0.011056877672672272, + 0.05401173606514931, + -0.004641177132725716, + 0.1014089584350586, + 0.012784444727003574, + -0.02169061079621315, + -0.01966583915054798, + -0.01582796312868595, + -0.0267809871584177, + -0.0066867307759821415, + 0.0058307345025241375, + -0.06633330881595612, + 0.001422173110768199, + -0.00014466987340711057, + 0.04847149923443794, + -0.0452229380607605, + 0.03433428332209587, + 0.053746700286865234, + -0.038039371371269226, + -0.05552596598863602, + 0.008905215188860893, + -0.0236845463514328, + -0.08196565508842468, + -0.057492099702358246, + -0.006494048051536083, + 0.08805592358112335, + -0.17913419008255005, + 0.06793734431266785, + 0.0895903930068016, + -0.049395639449357986, + -0.037673331797122955, + 0.10420233756303787, + 0.040983691811561584, + -0.10244525223970413, + 0.021962158381938934, + 0.03001430816948414, + 0.02748946286737919, + -0.02146029658615589, + -0.09274784475564957, + -0.04341399669647217, + -0.07126548141241074, + 0.04644925147294998, + 0.0007840171456336975, + -0.10488778352737427, + -0.030912749469280243, + -0.04549220949411392, + 0.02342107892036438, + -0.04396471381187439, + -0.10722552984952927, + 0.0031006047502160072, + -0.018840504810214043, + 0.05445708706974983, + -0.0041765011847019196, + 0.024636343121528625, + -0.031843096017837524, + 0.027814116328954697, + 0.048967406153678894, + 0.014745263382792473, + 0.040426068007946014, + 1.9987017690752705e-34, + 0.1401233673095703, + 0.004299897234886885, + -0.025956563651561737, + 0.07823041081428528, + 0.0439995639026165, + -0.03739580884575844, + -0.06907720118761063, + -3.030132756975945e-05, + -0.04898219555616379, + 0.05694912374019623, + 0.05875009298324585, + 0.09010890871286392, + -0.07823958247900009, + 0.046498823910951614, + 0.018687929958105087, + -0.018383223563432693, + -0.007285022642463446, + -0.040487077087163925, + -0.09495604038238525, + 0.08486790210008621, + -0.03151388466358185, + 0.037674013525247574, + -0.03219817578792572, + 0.03212539479136467, + -0.05969074368476868, + -0.025452783331274986, + 0.039783090353012085, + -0.003723366418853402, + -0.05049745738506317, + 0.03657688945531845, + 0.08489678800106049, + 0.001990093383938074, + 0.037763193249702454, + 0.021654117852449417, + 0.01809696853160858, + -0.028563646599650383, + -0.0027850877959281206, + -0.048912812024354935, + 0.013938617892563343, + 0.02423935942351818, + -0.07391998916864395, + -0.0723123699426651, + -0.046519722789525986, + -0.06461716443300247, + 0.10460460186004639, + 0.08751685917377472, + 0.05817599967122078, + -0.0002535762032493949, + 0.0416320338845253, + 0.012149387039244175, + 0.004180853255093098, + 0.023665500804781914, + 0.05947854742407799, + 0.026269352063536644, + 0.04486200213432312, + 0.05730529502034187, + 0.022326204925775528, + 0.0226791612803936, + 0.015189394354820251, + -0.023786073550581932, + -0.07103340327739716, + 0.020073046907782555, + 0.08188599348068237, + -0.08991905301809311, + -0.05287568271160126, + -0.02096070908010006, + 0.022310739383101463, + 0.0995662733912468, + -0.0017770245904102921, + 0.006247354205697775, + 0.03370625525712967, + 0.060421496629714966, + 0.026459209620952606, + 0.07398609817028046, + -0.004492159932851791, + 0.04435408115386963, + -0.002620468847453594, + -0.0710693821310997, + 0.0504949726164341, + -0.00701921945437789, + -0.1233743205666542, + -0.05693353712558746, + -0.032829735428094864, + 0.020753217861056328, + -0.07719675451517105, + 0.006815712433308363, + 0.028173459693789482, + -0.021805865690112114, + -0.04402874410152435, + 0.04571826010942459, + -0.0819367989897728, + 0.04712304472923279, + 0.043602168560028076, + -0.056377287954092026, + -0.060736801475286484, + -2.6088644278951452e-33, + 0.04240186884999275, + -0.011840618215501308, + -0.06812556833028793, + 0.0265594944357872, + -0.04340606555342674, + 0.10030858963727951, + -0.011516059748828411, + 0.012134801596403122, + 0.01803806982934475, + 0.03986169397830963, + -0.05098151043057442, + -0.004777285736054182, + 0.0077715348452329636, + -0.12591029703617096, + 0.04670402407646179, + -0.023919129744172096, + 0.015537351369857788, + 0.079509437084198, + -0.03930239379405975, + 0.03655380383133888, + -0.03183392062783241, + 0.017071736976504326, + -0.1347086876630783, + 0.009611757472157478, + -0.011736097745597363, + 0.015133639797568321, + 0.037508606910705566, + -0.00035616697277873755, + -0.04512263089418411, + -0.002453336725011468, + -0.061411961913108826, + -0.023698581382632256, + 0.016564548015594482, + -0.04618767648935318, + -0.06929144263267517, + 0.09496358782052994, + 0.0462474450469017, + -0.15411926805973053, + -0.0736381933093071, + -0.07825685292482376, + 0.03505965694785118, + 0.012683422304689884, + 0.10100019723176956, + 0.027329083532094955, + 0.0553646981716156, + -0.012282011099159718, + -0.07950358837842941, + 0.0537051297724247, + 0.11654745787382126, + 0.02413022704422474, + -0.03627672418951988, + 0.005229409318417311, + -0.05896291881799698, + 0.06554076075553894, + -0.061504725366830826, + -0.01280379481613636, + -0.014238453470170498, + -0.08182177692651749, + -0.04084858298301697, + 0.011320090852677822, + -0.04464345425367355, + -0.019716911017894745, + -0.01599282957613468, + -0.015973437577486038, + 0.012471986934542656, + -0.10764310508966446, + -0.029151856899261475, + -0.07595863938331604, + 0.04152984172105789, + 0.07459276914596558, + 0.08838014304637909, + -0.002550308359786868, + -0.00395358307287097, + -0.03934521600604057, + 0.08342654258012772, + -0.025882836431264877, + 0.049200303852558136, + 0.05525016412138939, + -0.062219761312007904, + 0.024063322693109512, + -0.0005730523844249547, + 0.018360527232289314, + -0.03725481778383255, + 0.06301276385784149, + -0.003711897414177656, + -0.015749942511320114, + 0.04803358018398285, + -0.009489087387919426, + 0.004920796491205692, + 0.022785581648349762, + -0.004703909158706665, + 0.03950251638889313, + -0.03464379534125328, + 0.00047980129602365196, + -0.010565416887402534, + -2.1773887581844065e-08, + 0.062318433076143265, + 0.03611845150589943, + -0.05720125138759613, + -0.06750324368476868, + 0.04908834025263786, + -0.012268166057765484, + -0.021630266681313515, + -0.0668087750673294, + -0.0700184553861618, + -0.024213824421167374, + 0.032862816005945206, + 0.03749092295765877, + -0.024899199604988098, + 0.031113600358366966, + 0.015156328678131104, + 0.0009935710113495588, + -0.035389307886362076, + 0.004475115332752466, + -0.08251085877418518, + -0.09724351763725281, + 0.0031298580579459667, + 0.01965714804828167, + -0.021132495254278183, + -0.04204371199011803, + 0.03381603956222534, + 0.05572725087404251, + 0.012815650552511215, + -0.0010594623163342476, + 0.022724660113453865, + 0.061449382454156876, + -0.11422432959079742, + 0.024946950376033783, + -0.005741678178310394, + -0.050273120403289795, + -0.013225052505731583, + 0.03745613619685173, + 0.0102427639067173, + 0.03447134792804718, + 0.0024342513643205166, + 0.04484327509999275, + 0.003977903630584478, + -0.021105485036969185, + 0.03991733118891716, + 0.004312184173613787, + -0.06434645503759384, + 0.01167792733758688, + -0.020367830991744995, + -0.049015894532203674, + -0.007003553211688995, + -0.01290188729763031, + -0.03360427916049957, + -0.031463462859392166, + -0.02666010521352291, + 0.09651169180870056, + 0.0050397408194839954, + 0.06523311883211136, + -0.009530999697744846, + -0.012638416141271591, + -0.04839000478386879, + -0.043969400227069855, + 0.039047520607709885, + -0.06258701533079147, + -0.060887474566698074, + 0.01790519990026951 + ], + "soccer-ball-bold||*updated*,sports,football,mls": [ + 0.01747148297727108, + 0.01457170769572258, + -0.015856631100177765, + 0.005048366729170084, + 0.08057856559753418, + 0.004509821999818087, + 0.0823017954826355, + -0.019021056592464447, + 0.09170382469892502, + 0.0393325500190258, + -0.0026751570403575897, + -0.016662349924445152, + -0.0010603622067719698, + 0.025990143418312073, + 0.00044896709732711315, + 0.0038348238449543715, + 0.00020495803619269282, + -0.04099864885210991, + -0.0252350065857172, + -0.04006318747997284, + 0.02254674956202507, + 0.053112201392650604, + 0.0013697370886802673, + 0.03850392624735832, + 0.009018534794449806, + 0.057823989540338516, + 0.03947262465953827, + 0.043935660272836685, + -0.10902094095945358, + -0.05882114917039871, + -0.057021819055080414, + -0.005834159906953573, + 0.1156684160232544, + 0.023106684908270836, + 0.05661037564277649, + 0.0032289980445057154, + -0.02562697045505047, + -0.07381953299045563, + 0.008999386802315712, + 0.10729770362377167, + -0.014043751172721386, + -0.14931419491767883, + 0.007854531519114971, + 0.02630210667848587, + -0.06985139101743698, + 0.03812624141573906, + 0.011281159706413746, + -0.02425471320748329, + -0.011958708055317402, + 0.05022389441728592, + -0.013512411154806614, + -0.030381053686141968, + -0.06163237988948822, + 0.01744500733911991, + 0.062262631952762604, + 0.062385525554418564, + 0.005975691601634026, + 0.039485201239585876, + 0.0007026323000900447, + 0.0019021548796445131, + 0.03983418270945549, + 0.014647132717072964, + 0.003963641822338104, + 0.039555199444293976, + -0.0678638219833374, + -0.07174848020076752, + -0.016624141484498978, + -0.0049048298969864845, + -0.06741681694984436, + -0.019432689994573593, + 0.05942436307668686, + -0.008139101788401604, + -0.015084550715982914, + 0.022898077964782715, + 0.03177914023399353, + 0.0365476980805397, + 0.025656700134277344, + -0.0591508224606514, + -0.012806138023734093, + -0.08320209383964539, + -0.04875050485134125, + -0.09423919767141342, + -0.09681864827871323, + -0.06811849772930145, + 0.007088060490787029, + 0.027770724147558212, + -0.07770484685897827, + -0.014323364943265915, + -0.013561482541263103, + -0.042102716863155365, + -0.08252450078725815, + -0.02845107391476631, + 0.03570600226521492, + 0.08600902557373047, + -0.05557294189929962, + 0.09571047127246857, + 0.020098481327295303, + -0.044021811336278915, + -0.04218154400587082, + 0.08430007100105286, + 0.027418604120612144, + 0.011042902246117592, + 0.0077258688397705555, + 0.04718760401010513, + 0.0032567381858825684, + -0.026602257043123245, + 0.007670092862099409, + 0.11219924688339233, + -0.005692394450306892, + 0.04369776323437691, + 0.00408605532720685, + -0.04379105567932129, + -0.07571566849946976, + 0.02769361063838005, + -0.1281302124261856, + 0.009313383139669895, + -0.03245604783296585, + -0.009220799431204796, + 0.04447975754737854, + -0.006940493825823069, + 0.04697512835264206, + -0.05749781057238579, + -0.08100845664739609, + -0.008501386269927025, + 0.0004237706889398396, + 0.030410870909690857, + 0.06835608929395676, + -4.560668288640926e-33, + -0.03762682527303696, + -0.00862426869571209, + -0.0012144417269155383, + 0.07898125797510147, + -0.08159541338682175, + 0.04141630977392197, + 0.007854091934859753, + -0.03925095126032829, + -0.045679643750190735, + 0.032565005123615265, + 0.02320357970893383, + 0.04390273988246918, + -0.037151459604501724, + 0.04564081132411957, + 0.05237619951367378, + -0.04900098964571953, + -0.022692548111081123, + -0.044722579419612885, + -0.048479363322257996, + 0.09204021096229553, + -0.03296773508191109, + 0.07202661037445068, + 0.012646785005927086, + -0.04218681901693344, + -0.04204365238547325, + -0.01900429092347622, + -0.021544838324189186, + -0.10019414126873016, + 0.00041600788244977593, + 0.03282823786139488, + 0.07965297996997833, + 0.028725938871502876, + 0.02442409098148346, + 0.002327157650142908, + -0.004404075443744659, + 0.011659326031804085, + -0.026082638651132584, + -0.021490374580025673, + -0.06797266006469727, + -0.011130220256745815, + -0.03988188877701759, + -0.042531900107860565, + -0.07407752424478531, + -0.009678645990788937, + 0.029183249920606613, + 0.11681205034255981, + -0.06637271493673325, + -0.07127907872200012, + 0.01074246596544981, + -0.08549951761960983, + 0.07925700396299362, + 0.004325500223785639, + 0.025386907160282135, + 0.007730219047516584, + 0.0989954024553299, + -0.05472704768180847, + -0.02658817172050476, + 0.0685122013092041, + 0.008129832334816456, + -0.0900626927614212, + 0.028193261474370956, + -0.008852720260620117, + 0.06432268768548965, + -0.034361086785793304, + 0.00436794338747859, + 0.036445051431655884, + 0.08289191126823425, + 0.038020141422748566, + 0.03088338114321232, + -0.03670395538210869, + -0.0030855145305395126, + 0.07187793403863907, + 0.0023877378553152084, + 0.0643269345164299, + -0.05256982147693634, + 0.0006882850429974496, + -0.00044026720570400357, + 0.05002087727189064, + 0.0767512172460556, + -0.019327810034155846, + -0.09525682777166367, + 0.043597511947155, + -0.00037260769749991596, + 0.021920103579759598, + 0.035897817462682724, + 0.09082295000553131, + 0.010599953122437, + -0.046987637877464294, + -0.06471151113510132, + -0.016680588945746422, + -0.10072831064462662, + 0.04508830979466438, + -0.06504982709884644, + -0.008387821726500988, + -0.07799931615591049, + -2.073826648763613e-34, + 0.030600113794207573, + -0.05256626009941101, + -0.019993901252746582, + -0.011046193540096283, + -0.006152301095426083, + 0.01598254032433033, + -0.005936206318438053, + 0.05715060606598854, + 0.028212198987603188, + 0.021337900310754776, + 0.0215406846255064, + -0.06529555469751358, + -0.07151583582162857, + -0.08530094474554062, + -0.02384454943239689, + -0.008207964710891247, + 0.01433814037591219, + 0.0030583746265619993, + -0.08551183342933655, + 0.07381086051464081, + -0.038354359567165375, + -0.032561615109443665, + -0.0036131476517766714, + 0.01587234064936638, + -0.11293210089206696, + -0.03839180991053581, + 0.006525577511638403, + -0.005335625261068344, + -0.11808932572603226, + 0.004386114422231913, + -0.024682654067873955, + -0.03634922578930855, + 0.04403713718056679, + 0.0043683419935405254, + -0.07465674728155136, + 0.06301260739564896, + 0.054558321833610535, + -0.0618412159383297, + 0.029619021341204643, + 0.004940275568515062, + 0.03140852600336075, + 0.011226949281990528, + 0.010015628300607204, + -0.004445015452802181, + 0.011812131851911545, + -0.036054112017154694, + -0.06568170338869095, + -0.043501462787389755, + -0.057945653796195984, + 0.10983821749687195, + 0.01721331849694252, + -0.054796237498521805, + -0.08493752032518387, + 0.034139495342969894, + 0.03397554159164429, + -0.011497377417981625, + -0.0574660487473011, + 0.002455454785376787, + -0.024740392342209816, + -0.028632519766688347, + -0.055959541350603104, + 0.12087321281433105, + -0.10295286774635315, + 0.10362344235181808, + 0.05258697271347046, + 0.049450770020484924, + -0.0028939314652234316, + -0.08048267662525177, + 0.016198409721255302, + -0.03007492795586586, + 0.019690601155161858, + -0.002374387113377452, + -0.09328403323888779, + 0.04967469349503517, + -0.012547176331281662, + -0.02382527105510235, + 0.027545664459466934, + 0.10591651499271393, + 0.04668933153152466, + 0.06372341513633728, + -0.001292663742788136, + -0.04080578684806824, + -0.04587412253022194, + 0.0982033908367157, + 0.051654987037181854, + 0.028246605768799782, + -0.011224303394556046, + 0.016406726092100143, + -0.015038672834634781, + 0.06373850256204605, + -0.02331184409558773, + 0.04297693446278572, + 0.0108762476593256, + -0.025959808379411697, + 0.025775445625185966, + -2.2717117076354043e-08, + 0.0021683957893401384, + 0.05916368588805199, + -0.08324591815471649, + 0.016920994967222214, + 0.023495806381106377, + -0.006773284170776606, + -0.08527263253927231, + -0.11260081827640533, + 0.019901715219020844, + -0.0811045914888382, + -0.00048672471893951297, + -0.018415542319417, + -0.034050483256578445, + -0.012301323004066944, + -0.019182639196515083, + 0.04718618839979172, + -0.14968736469745636, + 0.12055425345897675, + 0.0011202635942026973, + 0.0017559854313731194, + -0.03543730452656746, + 0.011454821564257145, + -0.017693687230348587, + -0.00403593759983778, + 0.056080881506204605, + -0.00710633397102356, + -0.12627913057804108, + -0.05672465264797211, + 0.036886051297187805, + -0.07222412526607513, + 0.05123494938015938, + 0.021640507504343987, + 0.05296770855784416, + -0.01603616587817669, + -0.06059461459517479, + -0.015728862956166267, + 0.04232444986701012, + -0.09456632286310196, + -0.01988242007791996, + 0.03017045557498932, + 0.051864806562662125, + -0.022488746792078018, + -0.0168644730001688, + -0.06161518394947052, + 0.03221147507429123, + -0.016999797895550728, + 0.023900708183646202, + -0.06315061450004578, + -0.1282767355442047, + -0.0017495681531727314, + -0.03273900970816612, + 0.019232312217354774, + 0.06427619606256485, + 0.032455019652843475, + 0.016380522400140762, + 0.000887461646925658, + 0.04889332875609398, + 0.08624602854251862, + 0.0006880249711684883, + 0.050333891063928604, + 0.1052510067820549, + -0.030926009640097618, + 0.030156029388308525, + 0.057513605803251266 + ], + "sock-bold||*new*,clothes,clothing": [ + -0.07707265764474869, + -0.02351280488073826, + 0.008315137587487698, + 0.0033010945189744234, + 0.06450647115707397, + -0.004607182927429676, + 0.06595202535390854, + -0.08393195271492004, + -0.047763701528310776, + 0.030737409368157387, + 0.038162168115377426, + 0.017324401065707207, + -0.001382611459121108, + 0.002786260563880205, + 0.030643204227089882, + 0.045767880976200104, + 0.017582474276423454, + 0.035940106958150864, + 0.00890422984957695, + -0.07477719336748123, + -0.008089350536465645, + -0.014162584207952023, + 0.014841996133327484, + 0.016916321590542793, + 0.022286010906100273, + -0.031867872923612595, + 0.009172234684228897, + -0.023474419489502907, + -0.013208693824708462, + -0.04610348492860794, + -0.04072796180844307, + 0.017353463917970657, + 0.033879172056913376, + 0.07518988847732544, + 0.002594850491732359, + 0.010229974053800106, + 0.016594037413597107, + -0.06039447709918022, + -0.04056490957736969, + 0.11106747388839722, + 0.04502321034669876, + -0.11043668538331985, + -0.10570082068443298, + 0.01977619342505932, + -0.025238363072276115, + 0.04657430946826935, + 0.050102993845939636, + 0.0695689246058464, + 0.014837206341326237, + 0.02678198181092739, + -0.03184114396572113, + -0.060692086815834045, + -0.05770890787243843, + 0.06343728303909302, + 0.0791415125131607, + -0.07498769462108612, + -0.03713632747530937, + -0.08218555152416229, + 0.01767028123140335, + -0.04775310680270195, + 0.040789276361465454, + 0.05204881355166435, + 0.031662601977586746, + 0.06285708397626877, + 0.03380655497312546, + -0.024795547127723694, + -0.03196375444531441, + 0.07430942356586456, + -0.04662785679101944, + 0.062448594719171524, + -0.040071770548820496, + 0.03471805155277252, + -0.017345957458019257, + 0.0945202112197876, + -0.044165872037410736, + -0.0075774830766022205, + 0.044733647257089615, + -0.02535230852663517, + -0.044675569981336594, + -0.02393670193850994, + -0.12527334690093994, + -0.05198713764548302, + 0.005897234193980694, + -0.00024747831048443913, + -0.02736913226544857, + 0.03324979171156883, + -0.08192586898803711, + -0.06998591870069504, + -0.06646234542131424, + -0.0016273555811494589, + -0.12669938802719116, + -0.00840222928673029, + 0.005737567786127329, + -7.017821917543188e-05, + 0.0037824867758899927, + 0.04147673398256302, + 0.03389042615890503, + 0.021304039284586906, + -0.027515649795532227, + 0.09927023947238922, + -0.02937106043100357, + 0.049035727977752686, + 0.03396482765674591, + -5.3904026572126895e-05, + -0.02121060900390148, + -0.0716903954744339, + -0.007897538132965565, + 0.031826410442590714, + -0.005255019757896662, + 0.07283613085746765, + -0.024836644530296326, + -0.0767945796251297, + -0.005866812542080879, + -0.050333473831415176, + -0.021943209692835808, + -0.05000852420926094, + -0.0029140200931578875, + 0.056141410022974014, + 0.04112065210938454, + 0.11678070574998856, + 0.036486487835645676, + -0.007398546207696199, + 0.012946031987667084, + -0.06722234189510345, + -0.04725014418363571, + -0.00033371683093719184, + 0.01717810519039631, + -1.8470955994203315e-33, + 0.06039773300290108, + 0.0849989652633667, + -0.02974686026573181, + 0.12381821870803833, + -0.026756837964057922, + 0.09637273848056793, + -4.1553219489287585e-05, + -0.04515005648136139, + -0.026606611907482147, + 0.10662977397441864, + 0.013434721156954765, + 0.08068254590034485, + -0.0797271579504013, + 0.10202638804912567, + 0.03301103040575981, + 0.02049078419804573, + -0.002178568858653307, + -0.06578589975833893, + 0.015967093408107758, + -0.018741847947239876, + -0.03128553181886673, + 0.05741705372929573, + -0.013547203503549099, + -0.0015384216094389558, + -0.026790961623191833, + -0.046637024730443954, + 0.034484442323446274, + -0.03351660817861557, + -0.04042191803455353, + 0.017303241416811943, + 0.045192617923021317, + -0.022949958220124245, + 0.13117165863513947, + -0.0032363852951675653, + -0.05871913209557533, + -0.005616487469524145, + -0.055652983486652374, + -0.048977818340063095, + -0.03746647760272026, + 0.028859663754701614, + 0.05124179273843765, + -0.016364727169275284, + 0.03201916441321373, + 0.0276838056743145, + -0.031193073838949203, + 0.10268788784742355, + -0.035507332533597946, + -0.007639680989086628, + -0.015082765370607376, + 0.024768777191638947, + 0.05974987521767616, + 0.046428851783275604, + 0.003688286291435361, + -0.05739118531346321, + -0.032734524458646774, + -0.0497320331633091, + -0.024083785712718964, + 0.04048222303390503, + -0.007259839214384556, + -0.008574271574616432, + 0.033893510699272156, + 0.054150793701410294, + 0.03856470063328743, + -0.030433928593993187, + -0.0034979498013854027, + -0.031368356198072433, + -0.004538135603070259, + 0.024624774232506752, + -0.016753066331148148, + -0.001289462554268539, + -0.058205217123031616, + 0.04026326909661293, + 0.0064516873098909855, + 0.0646032765507698, + -0.022275058552622795, + -0.03046608343720436, + 0.04450070858001709, + -0.004025829024612904, + 0.028635427355766296, + -0.15957124531269073, + -0.08150367438793182, + -0.026664743199944496, + -0.003757493570446968, + 0.13666751980781555, + -0.025314388796687126, + 0.01967601105570793, + 0.014787956140935421, + -0.069858618080616, + -0.010195842944085598, + 0.017532603815197945, + -0.03209206834435463, + 0.011103719472885132, + -0.039866458624601364, + -0.07865366339683533, + -0.059212055057287216, + -9.18150260258976e-34, + 0.043117959052324295, + 0.026613691821694374, + -0.04866839945316315, + -0.006489858031272888, + -0.030932795256376266, + -0.0269089937210083, + 0.009227695874869823, + 0.04702172800898552, + 0.006107003428041935, + 0.0654677227139473, + 0.07717856019735336, + -0.07229488343000412, + -0.05698561295866966, + -0.030210398137569427, + 0.06739491969347, + 0.07073598355054855, + -0.011099698953330517, + 0.05518370866775513, + 0.010122758336365223, + 0.035380490124225616, + -0.039874471724033356, + 0.03601039946079254, + -0.008116276934742928, + -0.009000150486826897, + -0.07177405804395676, + 0.022785238921642303, + 0.07640041410923004, + 0.04379277676343918, + -0.15802507102489471, + -0.02904626727104187, + 0.013309900648891926, + -0.044800929725170135, + -0.004718256648629904, + 0.07739082723855972, + -0.055462535470724106, + 0.039076343178749084, + -0.056186601519584656, + -0.07396963983774185, + 0.06994427740573883, + 0.004278086591511965, + 0.040168073028326035, + -0.05311697721481323, + -0.008330048061907291, + 0.06105249747633934, + -0.03160375356674194, + -0.05377660319209099, + -0.11811326444149017, + -0.06230994686484337, + -0.03877684473991394, + 0.033982761204242706, + -0.026712507009506226, + 0.020120663568377495, + -0.002483370713889599, + -0.014515513554215431, + -0.062161434441804886, + 0.026224389672279358, + -0.08007342368364334, + 0.036125548183918, + -0.02648460678756237, + 0.06814483553171158, + -0.022341663017868996, + 0.05099564418196678, + -0.044366851449012756, + 0.03423823416233063, + 0.04106312245130539, + -0.06476683169603348, + -0.029938191175460815, + -0.05981316789984703, + 0.046091146767139435, + -0.00417727418243885, + 0.08974360674619675, + -0.025660967454314232, + -0.04237047955393791, + 0.02464752458035946, + -0.0630161315202713, + -0.05711471661925316, + 0.023932283744215965, + 0.0573880672454834, + 0.008993428200483322, + 0.07506667822599411, + -0.09917546808719635, + -0.02436595782637596, + -0.07666007429361343, + 0.08617278188467026, + 0.06149213761091232, + 0.087968610227108, + -0.00862163957208395, + 0.06426818668842316, + 0.04293685406446457, + -0.02772204764187336, + -0.026509687304496765, + 0.08949047327041626, + -0.06886357069015503, + 0.02508820965886116, + -0.03802603483200073, + -1.8331412832139904e-08, + -0.001255694543942809, + 0.01170375943183899, + -0.009605944156646729, + 0.049358196556568146, + 0.0680406242609024, + -0.02404969371855259, + -0.13148202002048492, + -0.045767080038785934, + -0.043581124395132065, + 0.03243876248598099, + 0.033858902752399445, + 0.05336926132440567, + -0.029294323176145554, + 0.0005739780608564615, + 0.06625253707170486, + 0.02175920084118843, + -0.016547558829188347, + 0.055315177887678146, + -0.06804309785366058, + -0.03894956409931183, + -0.038301222026348114, + 0.05020461603999138, + 0.0034554400481283665, + 0.0804114118218422, + 0.0346711166203022, + -0.04938683658838272, + 0.026769857853651047, + -0.014429464936256409, + -0.006949400994926691, + 0.14907978475093842, + 0.04470709711313248, + 0.03773922100663185, + -0.01766413450241089, + -0.018167363479733467, + -0.1250014752149582, + 0.023178303614258766, + -0.0577043853700161, + -0.022078128531575203, + -0.016973372548818588, + 0.06534229218959808, + -0.017237085849046707, + -0.03245522454380989, + -0.006539325695484877, + -0.01770034246146679, + -0.054903872311115265, + -0.0624774731695652, + 0.012772738002240658, + 0.01111282967031002, + -0.08382962644100189, + -0.05205452814698219, + 0.001654868246987462, + -0.03653617948293686, + 0.027641626074910164, + 0.06580986827611923, + -0.019254609942436218, + -0.09930234402418137, + -0.011700029484927654, + 0.1147136390209198, + 0.02186170406639576, + 0.04762620851397514, + 0.06588168442249298, + -0.06541940569877625, + -0.016584664583206177, + -0.04486466199159622 + ], + "solar-panel-bold||*new*,renewable,energy,power,electricity": [ + -0.0326094813644886, + 0.003051960375159979, + -0.007018481381237507, + 0.02210707776248455, + 0.041029468178749084, + -0.021890142932534218, + 0.04424503073096275, + -0.06777356564998627, + -0.012546928599476814, + 0.04242996498942375, + 0.05286846682429314, + 0.006807196419686079, + 0.010326903313398361, + -0.03947955369949341, + 0.023302610963582993, + 0.03455788269639015, + 0.00044896278996020555, + -0.02264002151787281, + 0.017198599874973297, + 0.04025702923536301, + 0.08133558183908463, + 0.014732275158166885, + -0.008877553977072239, + -0.03822477534413338, + 0.10689856857061386, + 0.12096075713634491, + -0.05260619893670082, + 0.029649080708622932, + -0.005278229713439941, + -0.007020026445388794, + -0.06835491210222244, + 0.08160935342311859, + 0.002105151303112507, + -0.01222545187920332, + 0.08905389904975891, + 0.03810204192996025, + 0.0024721366353332996, + 0.013934802263975143, + -0.011691348627209663, + 0.02653978392481804, + 0.03134523332118988, + -0.10847404599189758, + 0.03449125960469246, + 0.00945659726858139, + -0.09474505484104156, + 0.006507451180368662, + 0.00403046328574419, + -0.004429004620760679, + 0.052361082285642624, + -0.049330320209264755, + 0.01971985213458538, + -0.08375862240791321, + -0.05948849022388458, + -0.015168296173214912, + 0.010000929236412048, + 0.006463307421654463, + -0.010868594981729984, + -0.03191022947430611, + 0.054010797291994095, + 0.0061574592255055904, + 0.03236788883805275, + -0.04715580865740776, + 0.010627205483615398, + 0.03846697136759758, + 0.06355910003185272, + -0.036175891757011414, + -0.03448176756501198, + 0.048394910991191864, + -0.021579016000032425, + -0.00821531843394041, + 0.012744116596877575, + -0.0008299823384732008, + -0.05885765701532364, + -0.08835083246231079, + -0.03930716589093208, + -0.04418926313519478, + 0.08152402192354202, + 0.06132599338889122, + 0.07361610978841782, + -0.11057431995868683, + 0.014883252792060375, + 0.014149230904877186, + -0.05022543668746948, + -0.048033829778432846, + 0.025123853236436844, + 0.08417408168315887, + -0.024119753390550613, + -0.03132902458310127, + 0.018266990780830383, + -0.03928542882204056, + -0.0722893476486206, + 0.03075140342116356, + 0.030769992619752884, + 0.07487179338932037, + -0.08016349375247955, + 0.08919968456029892, + -0.01681782677769661, + -0.07782541960477829, + -0.040273576974868774, + 0.07723647356033325, + 0.09910769015550613, + 0.03414679318666458, + -0.01751422882080078, + 0.017060132697224617, + -0.04885387793183327, + -0.026159517467021942, + -0.05265134945511818, + 0.052095670253038406, + 0.0017705666832625866, + -0.01871957816183567, + -0.026364121586084366, + -0.05152634531259537, + -0.020818442106246948, + -0.03218581900000572, + -0.01717713475227356, + -0.015100072138011456, + -0.004379868973046541, + -0.01931295171380043, + 0.06382235139608383, + 0.02591409720480442, + -0.0019476298475638032, + -0.05635654926300049, + -0.022058933973312378, + 0.025850467383861542, + -0.0696539357304573, + 0.03646640479564667, + 0.03782467171549797, + -4.791233056689071e-33, + 0.022584343329072, + 0.05081777647137642, + 0.07063617557287216, + 0.051876381039619446, + -0.016965767368674278, + 0.11474975198507309, + -0.07022618502378464, + 0.05243049934506416, + -0.04728565365076065, + -0.022080807015299797, + 0.028604449704289436, + 0.04143423214554787, + 0.06652818620204926, + 0.09896630048751831, + 0.021594488993287086, + -0.11546795815229416, + 0.011824119836091995, + -0.023772353306412697, + 0.044336169958114624, + -0.05081575736403465, + -0.05747120827436447, + 0.11990689486265182, + 0.06503257155418396, + -0.030719393864274025, + 0.025356024503707886, + -0.06482868641614914, + 0.04864164814352989, + -0.07470188289880753, + -0.09359318017959595, + 0.03000553697347641, + 0.024641303345561028, + 0.030153140425682068, + 0.04488556087017059, + 0.013364037498831749, + -0.0967613160610199, + 0.02155289426445961, + -0.02423342689871788, + -0.035484690219163895, + -0.03557023033499718, + -0.030588984489440918, + -0.13798654079437256, + 0.02788076549768448, + -0.012213419191539288, + 0.06411722302436829, + 0.035367343574762344, + 0.11815843731164932, + 0.05431501567363739, + -0.04073077440261841, + -0.04662293195724487, + 0.058965422213077545, + -0.08174186199903488, + 0.050305742770433426, + -0.022196566686034203, + -0.03520878404378891, + 0.016491662710905075, + 0.045188598334789276, + -0.007568582892417908, + 0.0600322000682354, + 0.004591735545545816, + -0.05450098589062691, + -0.006316645536571741, + 0.023642700165510178, + -0.05949116870760918, + -0.016906321048736572, + -0.025400757789611816, + 0.1090192049741745, + -0.034719210118055344, + 0.019911345094442368, + 0.022729672491550446, + -0.023235995322465897, + -0.04521823674440384, + -0.05272604525089264, + -0.02293199487030506, + 0.10650432109832764, + 0.08138808608055115, + 0.022319531068205833, + -0.04540688917040825, + 0.0069215623661875725, + -0.061600375920534134, + -0.03607701137661934, + -0.12069082260131836, + 0.01193898543715477, + -0.025279179215431213, + 0.02782757394015789, + -0.042966168373823166, + -0.004864857066422701, + 0.010300136171281338, + -0.03435739874839783, + 0.02599577233195305, + -0.04198509454727173, + -0.036574140191078186, + -0.012547928839921951, + 0.05031631514430046, + -0.00690205954015255, + -0.07497970014810562, + 8.6204614190501e-35, + -0.030658915638923645, + 0.07129478454589844, + -0.1095489114522934, + -0.13746654987335205, + -0.011293224059045315, + -0.04331358149647713, + -0.05317304655909538, + -0.04961969330906868, + -0.03623686358332634, + 0.03313600271940231, + 0.06678242981433868, + -0.000145836835145019, + -0.06465819478034973, + -0.07888704538345337, + -0.03627220541238785, + 0.03651180863380432, + -0.07805491983890533, + 0.02804727666079998, + -0.02524922415614128, + 0.07644683867692947, + 0.0005862936959601939, + 0.052434299141168594, + -0.05301909148693085, + 0.09436710178852081, + -0.024043334648013115, + -0.00197157496586442, + 0.031669121235609055, + -0.07421521097421646, + 0.02360035665333271, + 0.01365521177649498, + -0.0574229434132576, + -0.03397352620959282, + -0.02908211201429367, + 0.08104249089956284, + -0.014953634701669216, + -0.007840657606720924, + 0.036660335958004, + -0.12176725268363953, + -0.0249819103628397, + 0.019470689818263054, + 0.06928887218236923, + -0.02073162980377674, + 0.048539094626903534, + 0.024965809658169746, + -0.07921727001667023, + -0.055201463401317596, + -0.08322184532880783, + 0.03102020174264908, + -0.12470965087413788, + 0.05600391700863838, + -0.036761391907930374, + -0.0674712285399437, + -0.015661081299185753, + -0.03289151191711426, + -0.0020781145431101322, + -0.08705415576696396, + 0.0365467295050621, + 0.09619765728712082, + -0.08168663084506989, + -0.0033444997388869524, + -0.009315885603427887, + -0.015924695879220963, + -0.008108215406537056, + 0.06749598681926727, + 0.013134314678609371, + -0.09326294809579849, + 0.04466863349080086, + -0.010171590372920036, + 0.06039729714393616, + -0.0931326150894165, + 0.024514175951480865, + 0.021827036514878273, + -0.1325094848871231, + -0.033093731850385666, + -0.019467176869511604, + -0.06496160477399826, + 0.04761064052581787, + -0.011026284657418728, + -0.048188723623752594, + 0.009976216591894627, + -0.008930628187954426, + 0.013506450690329075, + 0.02233278378844261, + -0.025048213079571724, + -0.007172216195613146, + -0.054141417145729065, + 0.037742000073194504, + -0.037294238805770874, + 0.04199865087866783, + 0.05678635090589523, + -0.03271225839853287, + 0.01600492000579834, + -0.007058376912027597, + 0.1132824718952179, + -0.051732391119003296, + -2.1448611775554127e-08, + 0.03227013722062111, + 0.04765448346734047, + -0.01068949792534113, + -0.07632148265838623, + 0.017176372930407524, + -0.09655024111270905, + -0.030668387189507484, + -0.02477625384926796, + -0.028380252420902252, + -0.010437656193971634, + 0.09239383041858673, + 0.020342521369457245, + 0.04301223158836365, + -0.020522141829133034, + -0.01485015731304884, + 0.035663869231939316, + -0.01125775184482336, + 0.0628441870212555, + -0.02179109677672386, + -0.026546116918325424, + -0.0008200628217309713, + 0.03602220490574837, + -0.0008494315552525222, + 0.03451034054160118, + 0.05481918156147003, + 0.03764418885111809, + 0.011886654421687126, + -0.03796033561229706, + 0.055398039519786835, + 0.006746871396899223, + 0.03540857508778572, + 0.035152725875377655, + 0.03158728778362274, + -0.021063918247818947, + -0.09314373880624771, + 0.052076492458581924, + -0.062037136405706406, + -0.04837232083082199, + 0.031228777021169662, + 0.0945718064904213, + -0.037267912179231644, + 0.0037755370140075684, + 0.006125276442617178, + -0.008082275278866291, + 8.329781121574342e-05, + 0.036736078560352325, + 0.016431493684649467, + -0.06455240398645401, + 0.022784782573580742, + -0.07873675227165222, + -0.03393982723355293, + 0.010696008801460266, + 0.01439258549362421, + 0.02353525720536709, + -0.020797669887542725, + 0.016627663746476173, + -0.11220413446426392, + 0.09516239166259766, + 0.017630726099014282, + -0.008682705461978912, + 0.13652737438678741, + 0.029474588111042976, + -0.00913446955382824, + 0.01900322735309601 + ], + "solar-roof-bold||*new*,renewable,energy,power,electricity": [ + -0.019637063145637512, + 0.08760429173707962, + 0.0019733617082238197, + 0.012405005283653736, + 0.044457025825977325, + -0.06854264438152313, + 0.018530970439314842, + -0.07744784653186798, + -0.009178237058222294, + 0.05449887737631798, + 0.01724008470773697, + 0.0025419334415346384, + 0.030158471316099167, + -0.047461193054914474, + 0.03006758540868759, + 0.062046293169260025, + -0.015881182625889778, + 0.010111815296113491, + 0.020822977647185326, + 0.042385607957839966, + 0.02045058086514473, + -0.016229568049311638, + -0.026294559240341187, + -0.022226043045520782, + 0.10262654721736908, + 0.07242714613676071, + -0.06364797800779343, + 0.05424593761563301, + -0.009330515749752522, + -0.04666385427117348, + -0.01808832585811615, + 0.0793452188372612, + -0.008455757051706314, + 0.01975923776626587, + 0.08198284357786179, + 0.09088487178087234, + -0.021954363211989403, + -0.010474673472344875, + -0.05853782221674919, + 0.054749298840761185, + 0.012557446025311947, + -0.10511728376150131, + 0.006528709549456835, + 0.009921981021761894, + -0.08168446272611618, + 0.008345804177224636, + -0.01896318420767784, + -0.010428129695355892, + 0.035321515053510666, + -0.022023390978574753, + -0.013478707522153854, + -0.09275759756565094, + -0.10033237189054489, + -0.004663901869207621, + 0.00962751917541027, + 0.0005243420018814504, + -0.026042500510811806, + -0.008381562307476997, + 0.043290041387081146, + 0.023466991260647774, + 0.059500932693481445, + -0.03743252903223038, + -0.05781562253832817, + 0.04530397430062294, + 0.0629102885723114, + 0.0042639924213290215, + -0.05613597482442856, + 0.054059166461229324, + -0.04441343620419502, + 0.010517300106585026, + 0.045964378863573074, + -0.027688976377248764, + -0.03453175351023674, + -0.09802088141441345, + -0.037218984216451645, + -0.060422368347644806, + 0.07377821207046509, + 0.009392897598445415, + 0.015785276889801025, + -0.10763363540172577, + 0.003535657422617078, + 0.015451105311512947, + -0.14508329331874847, + -0.05338365584611893, + -0.008972679264843464, + 0.09250413626432419, + -0.02388845570385456, + 0.014164082705974579, + 0.01771596260368824, + -0.035238999873399734, + -0.04456588253378868, + -0.013398836366832256, + -0.016139453276991844, + 0.04943860322237015, + -0.035968441516160965, + 0.09964081645011902, + -0.021796414628624916, + -0.11302990466356277, + -0.02205965854227543, + 0.06691441684961319, + 0.0370541550219059, + 0.023633001372218132, + 0.007113103289157152, + 0.0007559008663520217, + -0.06087935343384743, + -0.04401989281177521, + -0.053290341049432755, + 0.09102173149585724, + -0.026220379397273064, + 0.017426790669560432, + -0.012697724625468254, + -0.05014827102422714, + -0.06227303668856621, + -0.008072431199252605, + -0.03470596671104431, + -0.014493748545646667, + 0.02763199619948864, + -0.06074461340904236, + 0.06700282543897629, + 0.021059446036815643, + 0.041085999459028244, + -0.029357757419347763, + 0.015492613427340984, + 0.028554009273648262, + -0.05351053550839424, + -0.025098610669374466, + -0.014683771878480911, + -5.30406597712231e-33, + 0.0072254310362041, + 0.07378984987735748, + 0.06910306960344315, + 0.0725083202123642, + 0.025784354656934738, + 0.08534714579582214, + -0.08407177031040192, + 0.0009420783026143909, + -0.05588261038064957, + 0.03220895305275917, + -0.01067439652979374, + 0.0572473481297493, + 0.058255791664123535, + 0.09501279890537262, + 0.0686233639717102, + -0.10169707238674164, + 0.03928723186254501, + -0.049218758940696716, + -0.032950788736343384, + -0.07644681632518768, + -0.07774777710437775, + 0.14051054418087006, + 0.04873239994049072, + -0.03304098919034004, + 0.019931653514504433, + -0.0857873409986496, + 0.09060613065958023, + -0.08458394557237625, + -0.06347833573818207, + 0.020380984991788864, + 0.08050063997507095, + 0.00499107176437974, + 0.036667004227638245, + 0.06577425450086594, + -0.019884567707777023, + 0.06420675665140152, + -0.029333114624023438, + -0.032485999166965485, + -0.026306599378585815, + -0.033281080424785614, + -0.07885860651731491, + 0.007048394531011581, + 0.02488873340189457, + 0.08750627934932709, + 0.05240900442004204, + 0.08717231452465057, + 0.03337140753865242, + -0.04009929299354553, + -0.06751608103513718, + 0.03042657859623432, + -0.00899497326463461, + 0.07554113119840622, + -0.06077846512198448, + -0.03873307630419731, + -0.0012618033215403557, + 0.058845944702625275, + -0.0031941947527229786, + 0.054998304694890976, + 0.011959142982959747, + -0.017259273678064346, + -0.02448134496808052, + -0.01042930968105793, + -0.015042699873447418, + -0.06125333532691002, + -0.007094299886375666, + 0.04373393952846527, + -0.025926195085048676, + 0.05462658777832985, + -0.030450157821178436, + -0.010224970988929272, + -0.0007464641821570694, + -0.05087430775165558, + 0.014563186094164848, + 0.12234989553689957, + 0.04225577041506767, + 0.051145751029253006, + -0.02122316136956215, + -0.01281800027936697, + -0.029550572857260704, + 0.0023080636747181416, + -0.1144634410738945, + 0.036672193557024, + -0.01622813008725643, + 0.024168217554688454, + -0.007801669184118509, + -0.031967438757419586, + 0.021898115053772926, + -0.04527745768427849, + 0.0232608113437891, + 0.013416372239589691, + -0.043642327189445496, + 0.034022700041532516, + 0.05370069667696953, + -0.04821779206395149, + -0.06639041006565094, + 6.815679254073303e-34, + -0.018565813079476357, + 0.025009287521243095, + -0.06901547312736511, + -0.10158020257949829, + 0.014760024845600128, + -0.03245249018073082, + -0.05498434603214264, + -0.07212230563163757, + -0.07086662948131561, + 0.018202409148216248, + 0.025698237121105194, + 0.01360088400542736, + -0.06494071334600449, + -0.055970143526792526, + 0.018362367525696754, + 0.038218818604946136, + -0.030284659937024117, + 0.031791314482688904, + -0.07056871801614761, + 0.10178185254335403, + -0.0032324085477739573, + 0.0827903226017952, + -0.06134292855858803, + 0.11887547373771667, + -0.022893209010362625, + 0.005390795413404703, + 0.038704633712768555, + -0.0038294983096420765, + 0.027744172140955925, + 0.0030003865249454975, + -0.0939330980181694, + -0.036576997488737106, + -0.019730672240257263, + 0.07599235326051712, + -0.02027333527803421, + 0.0635995864868164, + 0.0554330088198185, + -0.10707546770572662, + -0.03588715195655823, + 0.021683162078261375, + 0.04327341914176941, + -0.050355348736047745, + 0.07229681313037872, + -0.018051695078611374, + -0.034639760851860046, + -0.05616670846939087, + -0.07018976658582687, + 0.01968531310558319, + -0.15608927607536316, + 0.016030557453632355, + 0.046223439276218414, + -0.06676708161830902, + -0.037335846573114395, + 0.008573221042752266, + 0.016606435179710388, + -0.0913977101445198, + 0.019238056614995003, + 0.06468093395233154, + -0.06644582748413086, + -0.03935623914003372, + 0.037822920829057693, + 0.005586609244346619, + 0.009649890474975109, + 0.03366665169596672, + 0.0028605572879314423, + -0.09280940145254135, + 0.010113297030329704, + -0.1027408093214035, + -8.960471313912421e-05, + -0.03245930001139641, + -0.012041185982525349, + 0.011371070519089699, + -0.15784430503845215, + -0.054217834025621414, + -0.043536074459552765, + -0.07040390372276306, + 0.033939559012651443, + 0.04234430566430092, + -0.02333790995180607, + -0.02428150549530983, + -0.02170534059405327, + 0.03551178053021431, + -0.013827411457896233, + 0.02185172773897648, + 0.0365593321621418, + -0.04548361897468567, + 0.05122966691851616, + -0.04385995492339134, + 0.0405079685151577, + 0.017192505300045013, + -0.005276472773402929, + 0.04622144252061844, + -0.04160857945680618, + 0.12309148907661438, + -0.05027814581990242, + -2.1814049233626065e-08, + 0.02078680507838726, + 0.061647508293390274, + -0.015911109745502472, + -0.0762162134051323, + 0.0006073479889892042, + -0.06925195455551147, + 0.039377644658088684, + -0.029941357672214508, + -0.036334600299596786, + -0.04001832380890846, + 0.021777598187327385, + 0.022799445316195488, + 0.03559679910540581, + 0.007081957068294287, + -0.00672789616510272, + 0.019818255677819252, + -0.04071568325161934, + 0.04366150498390198, + -0.03260422870516777, + -0.020701970905065536, + -0.0011306563392281532, + 0.07548751682043076, + -0.02816716954112053, + 0.06633244454860687, + 0.026714785024523735, + 0.0598466619849205, + 0.01652897335588932, + -0.05472869053483009, + 0.11520936340093613, + 0.030315788462758064, + 0.050177715718746185, + 0.056023970246315, + 0.008171898312866688, + -0.046175967901945114, + -0.12739697098731995, + 0.06205078959465027, + -0.0037816627882421017, + -0.032699666917324066, + -0.01493739616125822, + 0.04287147894501686, + -0.010110579431056976, + 0.0027802756521850824, + 0.008597402833402157, + -0.002744033932685852, + -0.06158044561743736, + 0.009602992795407772, + 0.019569141790270805, + -0.017784949392080307, + 0.011593373492360115, + -0.04919204115867615, + 0.03818404674530029, + 0.018741169944405556, + 0.009790116921067238, + -0.007972955703735352, + -0.04799140617251396, + 0.004022997338324785, + -0.05559881031513214, + 0.03517049923539162, + 0.01879964768886566, + -0.02040395326912403, + 0.14130038022994995, + -0.01585872657597065, + -0.006094895303249359, + 0.052943579852581024 + ], + "sort-ascending-bold||*updated*,sorted,sorting,increasing,a to z,arrows,list": [ + -0.027204131707549095, + -0.038484297692775726, + -0.005327251739799976, + 0.04413799196481705, + -0.007352047134190798, + -0.047981146723032, + 0.025531891733407974, + -0.030710166320204735, + -0.01978043094277382, + 0.07197733968496323, + 0.003226033179089427, + 0.12857332825660706, + 0.06057068705558777, + -0.039644505828619, + -0.054633188992738724, + 0.049685992300510406, + -0.01879557967185974, + 0.028507007285952568, + 0.008217891678214073, + -0.09153284132480621, + -0.0205461997538805, + 0.08116969466209412, + 0.010541386902332306, + 0.042310263961553574, + 0.020741024985909462, + -0.027129236608743668, + -0.034399520605802536, + 0.01801573485136032, + 0.016127781942486763, + -0.07832510024309158, + -0.02786962501704693, + 0.030206605792045593, + 0.10869074612855911, + 0.0529915988445282, + -0.002432007109746337, + -0.01179597619920969, + -0.0006131904665380716, + -0.035266149789094925, + 0.012422077357769012, + 0.07854397594928741, + -0.019025510177016258, + 0.018090425059199333, + 0.014867530204355717, + -0.01945493556559086, + -0.07770844548940659, + 0.03275124356150627, + -0.07276268303394318, + -0.07235974818468094, + -0.03786629065871239, + 0.01247449405491352, + -0.09187013655900955, + -0.05872591212391853, + -0.11593515425920486, + -0.006949701812118292, + -0.010269515216350555, + 0.024848759174346924, + -0.022177066653966904, + -0.08694401383399963, + 0.039776235818862915, + -0.07609817385673523, + 0.02410397119820118, + 0.017932960763573647, + 0.050776030868291855, + -0.022163916379213333, + 0.03379346802830696, + -0.013466660864651203, + 0.03332355245947838, + -0.02185039222240448, + -0.00827482994645834, + 0.037131089717149734, + 0.026679040864109993, + 0.017091460525989532, + -0.008858637884259224, + -0.014070138335227966, + -0.09531701356172562, + -0.003123493632301688, + 0.05264347419142723, + -0.0010421195765957236, + -0.10019201040267944, + -0.07616022229194641, + -0.039675142616033554, + -0.027249883860349655, + -0.04458720237016678, + 0.030390996485948563, + 0.07550040632486343, + 0.03125850483775139, + -0.08810726553201675, + -0.0552082322537899, + -0.09961482137441635, + -0.006925052963197231, + -0.011129013262689114, + -0.02850787341594696, + -0.0068816994316875935, + 0.0611049085855484, + -0.035414986312389374, + 0.03198646754026413, + 0.12833823263645172, + 0.005127965938299894, + -0.11703480780124664, + 0.10424718260765076, + -0.008319801650941372, + 0.047794848680496216, + -0.009208881296217442, + -0.014730000868439674, + 0.0008122687577269971, + 0.015777379274368286, + -0.02650667540729046, + -0.06580658257007599, + -0.0411200150847435, + -0.0017257950967177749, + -0.024268731474876404, + -0.10207759588956833, + -0.013744102790951729, + -0.0953599363565445, + -0.0779452994465828, + 0.0009615659364499152, + -0.04588523879647255, + 0.004735302645713091, + 0.05102531984448433, + 0.06857869774103165, + 0.08362771570682526, + -0.021786076948046684, + -0.03294192999601364, + 0.01818513497710228, + -0.022052204236388206, + 0.08895967155694962, + 0.03285608068108559, + -1.745274278752105e-33, + 0.0555451326072216, + 0.030916443094611168, + 0.03595859929919243, + 0.03833294287323952, + -0.021729959174990654, + 0.047327905893325806, + -0.07012057304382324, + -0.1257244348526001, + -0.03504486382007599, + 0.0022112256847321987, + 0.08552365750074387, + 0.13603152334690094, + -0.03695272281765938, + 0.04996207728981972, + 0.007680060341954231, + -0.11133850365877151, + 0.08332635462284088, + 0.023995421826839447, + -0.10828038305044174, + -0.048692964017391205, + -0.04129506275057793, + -0.053362924605607986, + -0.08190920203924179, + -0.03436180204153061, + -0.010348081588745117, + -0.020846718922257423, + -0.01791161112487316, + -0.042380109429359436, + -0.026064157485961914, + 0.011341970413923264, + -0.0088955732062459, + 0.025395017117261887, + -0.0016837691655382514, + 0.0035403191577643156, + -0.010408945381641388, + 0.01612425409257412, + -0.0671432763338089, + -0.009619787335395813, + 0.07321365922689438, + -0.02830386348068714, + -0.033328257501125336, + -0.06203972548246384, + -0.023175401613116264, + -0.02940681390464306, + 0.07006300985813141, + 0.12012878060340881, + -0.12048351019620895, + 0.006070045288652182, + 0.038957249373197556, + 0.013987396843731403, + -0.0012049672659486532, + -0.02819967269897461, + 0.01415323931723833, + -0.003914888948202133, + -0.006350873038172722, + -0.07302868366241455, + 0.006427991669625044, + 0.0786251500248909, + 0.01506727933883667, + 0.030880458652973175, + 0.015959735959768295, + -0.006661396473646164, + 0.023789213970303535, + 0.03189018368721008, + -0.014037441462278366, + -0.0006455830880440772, + -0.04907809942960739, + 0.019277065992355347, + 0.07490669935941696, + 0.01673809252679348, + 0.005443355534225702, + 0.0791330561041832, + 0.04554377868771553, + 0.06979118287563324, + 0.0038187468890100718, + 0.020264478400349617, + -0.02916981838643551, + -0.07371267676353455, + 0.04979293420910835, + -0.14459256827831268, + -0.02033880539238453, + -0.03156760334968567, + -0.03444795310497284, + 0.06301877647638321, + 0.09002437442541122, + -0.009106113575398922, + -0.034396618604660034, + 0.052746981382369995, + -0.0015777518274262547, + 0.008449201472103596, + -0.04727215692400932, + -0.008652638643980026, + 0.09330171346664429, + -0.04732304811477661, + -0.061198413372039795, + -1.1444434838743245e-33, + 0.044392846524715424, + 0.10012020915746689, + -0.04093746095895767, + 0.0238575991243124, + -0.012927941977977753, + -0.03675477206707001, + -0.03501555323600769, + 0.026682209223508835, + -0.04360669106245041, + 0.024546239525079727, + 0.0405389741063118, + 0.03303436189889908, + -0.023065797984600067, + -0.05649065971374512, + 0.11763036996126175, + -0.0020932541228830814, + 0.037630803883075714, + 0.002251078374683857, + -0.038583215326070786, + -0.01884215511381626, + 0.010645527392625809, + -0.015911037102341652, + -0.041652925312519073, + 0.0592879094183445, + -0.018855184316635132, + -0.0029349869582802057, + 0.07396075129508972, + 0.029502900317311287, + 0.009546183981001377, + -0.026294805109500885, + 0.009179689921438694, + 0.014937037602066994, + 0.028795285150408745, + 0.013981045223772526, + -0.04583656042814255, + -0.004873734898865223, + 0.053795285522937775, + -0.06064711511135101, + -0.014112211763858795, + 0.08545218408107758, + -0.033337801694869995, + 0.04284457117319107, + 0.03357173129916191, + -0.027160827070474625, + 0.027253026142716408, + 0.01586150750517845, + -0.053292788565158844, + -0.031779080629348755, + -0.004603786859661341, + -0.01000155322253704, + 0.02443615533411503, + 0.04622068628668785, + -0.025849072262644768, + -0.009091191925108433, + -0.03504546731710434, + 0.03586040809750557, + 0.019889293238520622, + 0.09179095178842545, + -0.06065980717539787, + 0.0005718775209970772, + -0.06293901801109314, + 0.04889415577054024, + 0.061452195048332214, + -0.04263758659362793, + -0.043638408184051514, + -0.029137838631868362, + -0.027129504829645157, + -0.11052218824625015, + -0.007826541550457478, + -0.025620093569159508, + 0.07142730802297592, + -0.0010031515266746283, + -0.02506500855088234, + -0.01904764398932457, + -0.0029375157319009304, + -0.13703547418117523, + 0.05723915249109268, + 0.068517304956913, + 0.040804799646139145, + -0.05195692181587219, + -0.039890579879283905, + 0.017299478873610497, + 0.03268234431743622, + 0.05563313141465187, + -0.08861032128334045, + 0.011713003739714622, + -0.0022868202067911625, + -0.002294661942869425, + 0.03265673294663429, + -0.04979328066110611, + -0.039704445749521255, + -0.09952805191278458, + 0.049543607980012894, + -0.07770875841379166, + -0.05268325284123421, + -2.3540566829183263e-08, + -0.04237651824951172, + -0.07641930878162384, + -0.059022001922130585, + 0.023300953209400177, + 0.09415208548307419, + -0.01135186292231083, + -0.022217076271772385, + 0.008919898420572281, + -0.0007984109106473625, + -0.02783949300646782, + 0.09206493198871613, + 0.07389603555202484, + 0.006814955733716488, + -0.025082454085350037, + 0.09277169406414032, + 0.06211404129862785, + 0.00477962102741003, + -0.06069323420524597, + -0.02218177355825901, + -0.060383524745702744, + -0.04090563580393791, + 0.08807652443647385, + 0.078005850315094, + 0.06355507671833038, + 0.018177110701799393, + -0.019912153482437134, + -0.06755687296390533, + 0.029798822477459908, + 0.11247385293245316, + 0.09205054491758347, + 0.04865920543670654, + 0.03445504233241081, + 0.04214682802557945, + -0.02782238833606243, + -0.06540767848491669, + -0.047776855528354645, + -0.02782151848077774, + -0.013937132433056831, + -0.012830426916480064, + 0.011511117219924927, + -0.053686872124671936, + -0.0007512717857025564, + 0.04674863442778587, + 0.015553834848105907, + -0.022626468911767006, + -0.06622353941202164, + 0.025502631440758705, + -0.029358305037021637, + -0.024377143010497093, + -0.10341832786798477, + -0.06785346567630768, + 0.04423139616847038, + 0.043691057711839676, + 0.07493580877780914, + -0.007072705775499344, + 0.02628997713327408, + -0.010486060753464699, + 0.10442157834768295, + -0.02706308662891388, + -0.01302412524819374, + 0.12048672139644623, + -0.04367489367723465, + -0.005072662141174078, + 0.048572152853012085 + ], + "sort-descending-bold||*updated*,sorted,sorting,decreasing,z to a,arrows,list": [ + -0.018505878746509552, + -0.020397784188389778, + 0.008399710059165955, + 0.031142283231019974, + -0.01817324198782444, + -0.05399470031261444, + 0.020908545702695847, + -0.008018789812922478, + -0.0115125747397542, + 0.08445412665605545, + -0.009141047485172749, + 0.14177206158638, + 0.07690682262182236, + -0.022112997248768806, + -0.06696265190839767, + 0.04115404561161995, + -0.016129685565829277, + 0.03966091573238373, + 0.016460631042718887, + -0.0733179897069931, + -0.022677546367049217, + 0.08390120416879654, + -0.006018257699906826, + 0.03625695779919624, + 0.017440926283597946, + -0.041648440062999725, + -0.03282196447253227, + 0.020430905744433403, + 0.009212098084390163, + -0.06425516307353973, + -0.03193216025829315, + 0.02474174089729786, + 0.11053299158811569, + 0.07188231498003006, + -0.03535362705588341, + -0.027342382818460464, + 0.009274647571146488, + -0.03724539652466774, + 0.04374884068965912, + 0.0952511802315712, + -0.017838221043348312, + 0.03550943732261658, + 0.00839125644415617, + -0.03234187141060829, + -0.06834732741117477, + 0.04808724671602249, + -0.07471484690904617, + -0.06933680176734924, + -0.0492427684366703, + 0.01709754951298237, + -0.05892927199602127, + -0.03292324021458626, + -0.10445623099803925, + -0.0032411187421530485, + -0.0047938707284629345, + 0.014391657896339893, + -0.029732119292020798, + -0.10449960827827454, + 0.02045557089149952, + -0.0765722244977951, + 0.05740099400281906, + -0.014664056710898876, + 0.03190295770764351, + -0.02229369431734085, + 0.03844830021262169, + -0.0033439467661082745, + 0.03687228262424469, + -0.011479511857032776, + -0.004349187947809696, + 0.042194876819849014, + 0.028167275711894035, + 0.007292743306607008, + -0.0011341117788106203, + -0.013320600613951683, + -0.10767802596092224, + -0.01389266550540924, + 0.06233646348118782, + 0.0058821882121264935, + -0.09832188487052917, + -0.07062346488237381, + -0.028414033353328705, + -0.010181445628404617, + -0.0599648654460907, + 0.023336216807365417, + 0.055918026715517044, + 0.026002835482358932, + -0.08296585828065872, + -0.05840972810983658, + -0.08858378976583481, + -0.010605319403111935, + -0.01888037845492363, + -0.01150301843881607, + 0.01314486376941204, + 0.06995176523923874, + -0.048858676105737686, + 0.024037163704633713, + 0.14525726437568665, + 0.0020413107704371214, + -0.11307795345783234, + 0.11211808025836945, + -0.00587161211296916, + 0.04512079805135727, + -0.024510875344276428, + -0.04439732804894447, + -0.010844917967915535, + 0.008272992447018623, + -0.024444570764899254, + -0.06749472767114639, + -0.03526967018842697, + -0.007929934188723564, + -0.03679552674293518, + -0.11006664484739304, + -0.02398780547082424, + -0.0800701305270195, + -0.06645594537258148, + -0.02075423300266266, + -0.02691360004246235, + 0.025417309254407883, + 0.026243293657898903, + 0.050347696989774704, + 0.08388979732990265, + -0.005358673166483641, + -0.02421429008245468, + 0.020116955041885376, + -0.013801033608615398, + 0.10736826062202454, + 0.018870890140533447, + -2.4775451785189872e-33, + 0.05821887031197548, + 0.012884343974292278, + 0.03549705818295479, + 0.01685638166964054, + -0.005804246757179499, + 0.04673051834106445, + -0.07943371683359146, + -0.1265905201435089, + -0.03158456087112427, + 0.008260299451649189, + 0.09148766845464706, + 0.11798351258039474, + -0.030372563749551773, + 0.028782887384295464, + -0.009971164166927338, + -0.11651886999607086, + 0.08739179372787476, + 0.023781662806868553, + -0.10535033047199249, + -0.06129634007811546, + -0.04278464615345001, + -0.03110765479505062, + -0.08936479687690735, + -0.04680439084768295, + -0.008063324727118015, + -0.01825386844575405, + -0.044020313769578934, + -0.045693229883909225, + -0.023598918691277504, + 0.008792804554104805, + -0.010354563593864441, + 0.01279408298432827, + -0.0056466879323124886, + -0.006354697979986668, + -0.002252346370369196, + 0.015817901119589806, + -0.06413781642913818, + 0.0003154239966534078, + 0.07138193398714066, + -0.045272327959537506, + -0.028725672513246536, + -0.06139996647834778, + -0.039947930723428726, + -0.02559777908027172, + 0.06033776327967644, + 0.10836997628211975, + -0.09301412850618362, + 0.0170383732765913, + 0.0516958013176918, + 0.0013867957750335336, + -0.010592379607260227, + -0.04492497816681862, + -0.003279629163444042, + -0.000812600483186543, + -0.005303571932017803, + -0.05925564095377922, + -0.0025218732189387083, + 0.08062217384576797, + -0.004177445080131292, + 0.0135427825152874, + 0.00986477080732584, + -0.006258866284042597, + 0.009679509326815605, + 0.026407934725284576, + -0.01127265952527523, + -0.0189217496663332, + -0.03890068456530571, + 0.021477581933140755, + 0.04795500263571739, + 0.03416425362229347, + 0.006513476371765137, + 0.08909376710653305, + 0.0438399538397789, + 0.06292339414358139, + 0.030384324491024017, + 0.03881606087088585, + 0.01602781005203724, + -0.07490535080432892, + 0.07954451441764832, + -0.15029536187648773, + -0.03171003982424736, + -0.0198059044778347, + -0.050859615206718445, + 0.04833626374602318, + 0.10097861289978027, + 0.0016990031581372023, + -0.009851318784058094, + 0.03335363417863846, + -0.008653379045426846, + 0.012393948622047901, + -0.07217622548341751, + -0.0054051922634243965, + 0.08843400329351425, + -0.037186529487371445, + -0.04150564223527908, + -4.538276957967684e-34, + 0.03437638655304909, + 0.10287169367074966, + -0.05150971561670303, + 0.02186867594718933, + -0.031755026429891586, + -0.03125176951289177, + -0.02507726661860943, + 0.022493232041597366, + -0.04858867824077606, + 0.02945169247686863, + 0.06446533650159836, + 0.02602391690015793, + -0.04705537110567093, + -0.050478048622608185, + 0.10494521260261536, + -0.007074363529682159, + 0.058468423783779144, + -0.011707890778779984, + -0.03082984685897827, + -0.048794034868478775, + -0.0015865648165345192, + 0.0144256092607975, + -0.039792500436306, + 0.03602675721049309, + -0.026909027248620987, + 0.014513338916003704, + 0.07439827173948288, + 0.03448404371738434, + 0.01682034134864807, + -0.025836197659373283, + 0.014258993789553642, + 0.008291397243738174, + 0.03546949476003647, + 0.0025168047286570072, + -0.07653484493494034, + -0.00862898863852024, + 0.04659704864025116, + -0.07057550549507141, + -0.023432927206158638, + 0.06989385187625885, + -0.04925888404250145, + 0.05589726194739342, + 0.05346646159887314, + -0.019079850986599922, + 0.05328928306698799, + 0.0026274400297552347, + -0.05560613051056862, + -0.02225615829229355, + 0.025038622319698334, + -0.007241261191666126, + 0.018858935683965683, + 0.03152427449822426, + -0.038205359131097794, + 0.019306756556034088, + -0.03919154033064842, + 0.021590273827314377, + 0.04486916586756706, + 0.08329281210899353, + -0.057067323476076126, + -0.010013395920395851, + -0.07211555540561676, + 0.04037695750594139, + 0.0666433572769165, + -0.03869941085577011, + -0.03788264840841293, + -0.026603667065501213, + -0.03395411744713783, + -0.08245667815208435, + -0.006470964755862951, + -0.03121190145611763, + 0.07215177267789841, + 0.035103242844343185, + -0.02090144157409668, + -0.03858306258916855, + 0.010121910832822323, + -0.15283514559268951, + 0.04151519760489464, + 0.07548276335000992, + 0.03810587525367737, + -0.057238802313804626, + -0.0500558577477932, + 0.024550318717956543, + 0.02905574068427086, + 0.04865816608071327, + -0.0830417275428772, + -0.012454410083591938, + -0.024616029113531113, + 0.0010707705514505506, + 0.04276493191719055, + -0.03074091114103794, + -0.05205746740102768, + -0.08016374707221985, + 0.07507411390542984, + -0.07733006030321121, + -0.0580730177462101, + -2.2653100728575737e-08, + -0.059629909694194794, + -0.062233299016952515, + -0.057658787816762924, + 0.0125853531062603, + 0.08552531898021698, + 0.021060938015580177, + -0.016320988535881042, + 0.0025751476641744375, + 0.011768259108066559, + -0.052354469895362854, + 0.08732637017965317, + 0.0876372829079628, + 0.002185126068070531, + -0.006924148183315992, + 0.09568873792886734, + 0.054208844900131226, + 0.0009875674732029438, + -0.06994529813528061, + -0.01712479442358017, + -0.07091555744409561, + -0.048731885850429535, + 0.07152656465768814, + 0.062423255294561386, + 0.06350895762443542, + 0.009864469058811665, + -0.027489786967635155, + -0.024891557171940804, + 0.03439271077513695, + 0.08471609652042389, + 0.08569411188364029, + 0.03041882999241352, + 0.04516839236021042, + 0.04041803255677223, + -0.021168505772948265, + -0.06063748523592949, + -0.04389400780200958, + -0.02506881207227707, + -0.012998287566006184, + 0.01460622251033783, + 0.026522981002926826, + -0.0796627551317215, + -0.008258134126663208, + 0.02643193118274212, + 0.036731649190187454, + -0.019160788506269455, + -0.07236320525407791, + 0.03441248834133148, + -0.032954055815935135, + -0.005876239854842424, + -0.09243008494377136, + -0.042270202189683914, + 0.03891940787434578, + 0.05050044134259224, + 0.08703617006540298, + -0.005974576808512211, + 0.030376002192497253, + -0.01577342487871647, + 0.10352014005184174, + -0.05671292915940285, + -0.0017554124351590872, + 0.10445010662078857, + -0.038055744022130966, + -0.0032696244306862354, + 0.05482067912817001 + ], + "soundcloud-logo-bold||music,social media,logos": [ + 0.017671221867203712, + 0.012131123803555965, + -0.01503792405128479, + -0.05964528024196625, + 0.09381812810897827, + -0.00704819755628705, + 0.07408685982227325, + -0.11073239147663116, + 0.0898573100566864, + 0.005629456602036953, + -0.010057390667498112, + 0.052909910678863525, + 0.044166047126054764, + -0.05170643329620361, + 0.012752874754369259, + -0.0027127317152917385, + -0.021932419389486313, + 0.02366264909505844, + 0.040424931794404984, + -0.030447306111454964, + -0.06973740458488464, + 0.027418037876486778, + -0.00954893697053194, + 0.022143375128507614, + 0.0004480953502934426, + 0.04420223459601402, + -0.02779887057840824, + 0.03331563621759415, + -0.01208523940294981, + -0.053481318056583405, + 0.06673368811607361, + 0.04032081365585327, + 0.08620680123567581, + -0.015952302142977715, + 0.013043472543358803, + 0.015180187299847603, + -0.030842116102576256, + -0.049428973346948624, + -0.012382062152028084, + 0.01917797513306141, + 0.05469278618693352, + -0.04610337316989899, + 0.020575515925884247, + 0.01151236891746521, + -0.08191238343715668, + 0.0037933546118438244, + -0.09739600867033005, + -0.061107270419597626, + 0.003980911336839199, + 0.024133767932653427, + -0.0028145730029791594, + -0.13314785063266754, + -0.05970737710595131, + -0.026135733351111412, + -0.04597212001681328, + -0.03723958134651184, + -0.04041590914130211, + 0.0763063058257103, + 0.059439439326524734, + 0.03759906440973282, + 0.05267342925071716, + -0.04080793634057045, + 0.04153270274400711, + 0.05319947376847267, + 0.1402653455734253, + -0.02259569801390171, + -0.0238856952637434, + 0.053907789289951324, + -0.06447438150644302, + 0.06936493515968323, + 0.11070211976766586, + 0.04113048315048218, + -0.03024919331073761, + -0.008442581631243229, + 0.019927512854337692, + -0.0012087648501619697, + 0.03973475843667984, + -0.01848931983113289, + -0.07481101155281067, + -0.06082978472113609, + 0.02697938121855259, + -0.019236968830227852, + -0.03990710899233818, + -0.057671938091516495, + 0.05355246365070343, + 0.05157123878598213, + -0.03731858730316162, + -0.10230082273483276, + -0.06015582010149956, + -0.02171865850687027, + -0.12913234531879425, + 0.03188490867614746, + 0.01977725140750408, + -0.013640079647302628, + -0.013069619424641132, + 0.03444300964474678, + -0.008776905946433544, + -0.09789413958787918, + -0.055701062083244324, + 0.08977222442626953, + -0.01103015337139368, + 0.07592163234949112, + 0.08275028318166733, + -0.03535327687859535, + 0.03388720750808716, + 0.027310477569699287, + -0.06262369453907013, + 0.10671745985746384, + 0.02504025027155876, + 0.0420428104698658, + 0.027329104021191597, + -0.03038286417722702, + -0.09856235980987549, + -0.003053617663681507, + -0.009233924560248852, + -0.030863305553793907, + -0.032360948622226715, + -0.028522830456495285, + 0.11046914756298065, + -0.04495551437139511, + 0.00369480368681252, + -0.023759860545396805, + -0.07940511405467987, + -0.0581103190779686, + -0.028288254514336586, + 0.011158052831888199, + -0.07317515462636948, + -1.608306228007269e-33, + 0.0352025106549263, + 0.05045953765511513, + 0.00458433385938406, + 0.061339981853961945, + 0.07784385979175568, + -0.028516478836536407, + -0.06440906971693039, + -0.049309760332107544, + -0.09931672364473343, + 0.03803152218461037, + 0.05465134233236313, + 0.082622230052948, + 0.01133105531334877, + 0.06948420405387878, + 0.032437559217214584, + -0.060813795775175095, + -0.022498292848467827, + -0.006153358146548271, + -0.05105997994542122, + -0.045623529702425, + -0.06146635115146637, + 0.02996675670146942, + -0.07186885923147202, + 0.021971063688397408, + 0.00982069130986929, + -0.040107160806655884, + 0.053433243185281754, + -0.07455515116453171, + 0.009020629338920116, + 0.0051275440491735935, + 0.005358274094760418, + 0.028285052627325058, + 0.06108727306127548, + -0.010697086341679096, + 0.021558059379458427, + -0.003035969100892544, + -0.019870804622769356, + -0.01111629605293274, + 0.024160614237189293, + -0.016373321413993835, + 0.007480618078261614, + -0.05795124173164368, + -0.07112467288970947, + 0.02968931943178177, + -0.027235202491283417, + 0.12141245603561401, + -0.035659413784742355, + -0.07555584609508514, + 0.07260855287313461, + 0.0411590151488781, + 0.010559018701314926, + -0.03129378706216812, + -0.0404050387442112, + -0.019070008769631386, + -0.02652338519692421, + -0.052184898406267166, + -0.03675998002290726, + 0.051049619913101196, + 0.026951849460601807, + -0.055534474551677704, + 0.058671385049819946, + -0.04855206981301308, + 0.07636997103691101, + -0.07991989701986313, + -0.02439250238239765, + 0.06451988965272903, + 0.010420108214020729, + 0.02477288618683815, + 0.08256969600915909, + 0.0027444781735539436, + -0.007511697243899107, + 0.028397198766469955, + 0.06057684123516083, + 0.015523201785981655, + -0.06682658940553665, + 0.0018035025568678975, + -0.0015455448301509023, + -0.054069358855485916, + 0.006520183756947517, + 0.08127047121524811, + -0.04733503237366676, + 0.021365532651543617, + -0.04988953843712807, + 0.07684316486120224, + 0.0307456161826849, + 0.05966955050826073, + 0.028874732553958893, + -0.09346112608909607, + -0.062452465295791626, + 0.037092503160238266, + -0.10964767634868622, + 0.04857330396771431, + 0.042837079614400864, + -0.02267674170434475, + -0.15409418940544128, + -2.867764257681121e-34, + 0.0318632610142231, + 0.03625629097223282, + 0.07024309784173965, + 0.022296156734228134, + 0.03291337564587593, + 0.008064480498433113, + 0.08406205475330353, + 0.07711682468652725, + -0.02742740698158741, + 0.0684909000992775, + 0.07666441798210144, + -0.03900762274861336, + -0.09911438822746277, + -0.05817890167236328, + -0.026906533166766167, + 0.0003591414715629071, + 0.040863607078790665, + -0.0025666917208582163, + -0.06985226273536682, + 0.03048679418861866, + -0.045733626931905746, + -0.019278183579444885, + 0.027321454137563705, + 0.09386230260133743, + -0.04932304844260216, + 0.02560015209019184, + 0.013946853578090668, + 0.016300197690725327, + -0.0050381384789943695, + -0.021680109202861786, + -0.040628690272569656, + -0.024896735325455666, + 0.005954451858997345, + -0.027911264449357986, + 0.033854011446237564, + 0.07075442373752594, + -0.003840820398181677, + 0.00508082564920187, + 0.008823568001389503, + -0.014448435045778751, + -0.059010475873947144, + 0.020810654386878014, + -0.012439416721463203, + 0.015310543589293957, + -0.029748430475592613, + -0.02624378353357315, + -0.019198203459382057, + -0.013482144102454185, + -0.07606248557567596, + 0.061517924070358276, + 0.08468456566333771, + -0.024395538493990898, + 0.09845265001058578, + 0.05296047404408455, + -0.07320927083492279, + -0.0037673618644475937, + -0.005395288113504648, + 0.030697651207447052, + -0.06253011524677277, + 0.08671076595783234, + 0.03120623715221882, + 0.03359972685575485, + -0.05724983289837837, + -0.03148949146270752, + -0.03738284483551979, + 0.01992715895175934, + 0.02819640375673771, + -0.012439128011465073, + -0.05072277411818504, + 0.07102782279253006, + -0.01282725390046835, + 0.02632482908666134, + -0.04000192880630493, + 0.04499904438853264, + -0.05405415967106819, + -0.07773619890213013, + 0.04510002210736275, + 0.008959528990089893, + -0.036365460604429245, + 0.03377111256122589, + -0.03578171879053116, + 0.046036966145038605, + -0.07865376025438309, + -0.009142370894551277, + 0.06329954415559769, + -0.00352503452450037, + 0.017096828669309616, + -0.024485481902956963, + -0.029437508434057236, + 0.006229363847523928, + -0.033453039824962616, + 0.07172368466854095, + 0.004148231353610754, + 0.00449148565530777, + -0.01793183572590351, + -1.681668493347388e-08, + -0.03423022851347923, + -0.00466685788705945, + 0.04910491779446602, + -0.0047902571968734264, + 0.04725692421197891, + 0.00847594253718853, + 0.04318438097834587, + -0.12954765558242798, + 0.03677808493375778, + -0.03817843645811081, + -0.028315646573901176, + -0.06853906810283661, + -0.02447241172194481, + 0.019212927669286728, + -0.07355313748121262, + 0.0007459285552613437, + -0.1141350269317627, + 0.07508554309606552, + -0.019700657576322556, + -0.10617238283157349, + -0.046954475343227386, + 0.08657538890838623, + 0.0022196369245648384, + -0.08962242305278778, + 0.011683597229421139, + 0.03748174384236336, + -0.004125786945223808, + -0.04079505801200867, + -0.007754859514534473, + 0.017314884811639786, + -0.04208478331565857, + 0.07040789723396301, + -0.023687340319156647, + -0.05076869949698448, + -0.03530184552073479, + -0.05128386616706848, + -0.038476090878248215, + -0.022164255380630493, + -0.10136092454195023, + 0.009626243263483047, + 0.038806747645139694, + 0.08780530095100403, + 0.04932931065559387, + -0.009453349746763706, + -0.06684223562479019, + 0.006398400291800499, + 0.11220438778400421, + 0.060698799788951874, + -0.05997825041413307, + -0.014859938062727451, + -0.03037513606250286, + 0.01731177791953087, + 0.0027240668423473835, + 0.02723477967083454, + -0.0014685019850730896, + -0.029999075457453728, + -0.008972694166004658, + 0.1598106026649475, + -0.000810842087958008, + 0.054692622274160385, + 0.06286390125751495, + 0.013208742253482342, + 0.016252297908067703, + -0.023912684991955757 + ], + "spade-bold||spades,suits,cards,gambling,casino,gaming": [ + -0.0018117226427420974, + 0.035901475697755814, + -0.06731746345758438, + -0.0037362738512456417, + -0.04854106903076172, + 0.04451051354408264, + 0.0514952726662159, + -0.01725192926824093, + 0.0019192375475540757, + 0.0037313378416001797, + -0.0373489111661911, + -0.020129788666963577, + 0.006262936629354954, + -0.004729635082185268, + 0.02989332005381584, + -0.002285804133862257, + 0.03865489363670349, + 0.009326715022325516, + 0.05459296330809593, + 0.08146528154611588, + 0.007981173694133759, + 0.02162039466202259, + -0.04314996674656868, + -0.0009636061149649322, + -0.0038295364938676357, + 0.06938713788986206, + 0.031206142157316208, + 0.019060904160141945, + -0.04194612801074982, + -0.07063595950603485, + -0.03121642954647541, + 0.07670535147190094, + 0.07927136868238449, + 0.05090545490384102, + -0.043536022305488586, + -0.033867042511701584, + -0.06917253136634827, + -0.03480640798807144, + -0.028647108003497124, + 0.024151794612407684, + -0.017272336408495903, + -0.07429703325033188, + -0.017198532819747925, + 0.018599888309836388, + -0.009993351995944977, + -0.045976124703884125, + -0.043638765811920166, + 0.07420527935028076, + 0.007504458073526621, + 0.05536605417728424, + -0.010033850558102131, + -0.02627195604145527, + -0.0945025235414505, + 0.024587132036685944, + 0.09699701517820358, + -0.017367709428071976, + -0.0842687338590622, + -0.025600429624319077, + -0.02011105976998806, + -0.034763555973768234, + 0.028181903064250946, + 0.06650710850954056, + -0.03639567643404007, + 0.07389186322689056, + -0.04952719807624817, + -0.02193525992333889, + 0.04299605265259743, + 0.021416909992694855, + -0.09329932183027267, + 0.04584363475441933, + 0.042137835174798965, + 0.0244644396007061, + 0.005421810317784548, + -0.058308206498622894, + -0.003527214517816901, + 0.06489254534244537, + -0.0011982782743871212, + -0.04866787791252136, + 0.01843341812491417, + -0.06188786029815674, + -0.11470037698745728, + -0.0642978698015213, + -0.06712904572486877, + -0.020060164853930473, + -0.003525092964991927, + 0.03347546234726906, + -0.07865463197231293, + -0.03352581709623337, + -0.002384011633694172, + -0.07565482705831528, + -0.0635828748345375, + -0.025554010644555092, + -0.004224174190312624, + 0.05081859230995178, + -0.05853761360049248, + -0.005657142493873835, + 0.01234945748001337, + 0.0439196415245533, + -0.03422856330871582, + 0.057599566876888275, + 0.05423527583479881, + 0.08428440243005753, + -0.0008293549763038754, + -0.014425104483962059, + 0.05108406022191048, + 0.01752403937280178, + 0.01861257292330265, + -0.002173222601413727, + 0.008639398962259293, + -0.014043793082237244, + -0.07843127101659775, + -0.03473309800028801, + 0.06687718629837036, + -0.10521213710308075, + -0.030728206038475037, + 0.02804308757185936, + -0.08534463495016098, + -0.01897166483104229, + 0.09070237725973129, + 0.1171289011836052, + 0.02653445117175579, + 0.035035207867622375, + -0.029646307229995728, + -0.05090567097067833, + -0.0763578712940216, + 0.022546762600541115, + 0.05699985474348068, + -3.2767602978942065e-33, + 0.05330301821231842, + 0.02176816016435623, + -0.0035910839214920998, + 0.09830959141254425, + 0.010772480629384518, + 0.02123611606657505, + 0.006086068693548441, + -0.021324491128325462, + -0.029215965420007706, + 0.09458518773317337, + 0.03595690429210663, + 0.10942938923835754, + -0.04280618205666542, + 0.12869663536548615, + 0.05879892408847809, + 0.025818629190325737, + -0.0042269472032785416, + -0.054346468299627304, + -0.05018274113535881, + -0.03454882651567459, + -0.043769970536231995, + 0.07602035999298096, + 0.008213958702981472, + -0.019244082272052765, + -0.06506329029798508, + 0.02308712899684906, + -0.0060453652404248714, + -0.026012785732746124, + 0.03482627123594284, + 0.04840952157974243, + 0.046615272760391235, + 0.007094630040228367, + 0.005742545239627361, + -0.029487406834959984, + -0.006491219624876976, + 0.078836590051651, + -0.028065228834748268, + -0.01697320118546486, + -0.05863182246685028, + 0.016999227926135063, + -0.10914158076047897, + -0.017353227362036705, + -0.07530563324689865, + -0.07867231965065002, + -0.04559456929564476, + 0.08275553584098816, + 0.007177623920142651, + -0.08413807302713394, + -0.07492709159851074, + 0.03666727617383003, + 0.00041757908184081316, + -0.003365684999153018, + 0.04799168184399605, + 0.04698678478598595, + -0.03859768062829971, + -0.07576324790716171, + 0.014359953813254833, + 0.03688408061861992, + -0.0845169797539711, + -0.007312684319913387, + 0.0017964853905141354, + 0.0038670783396810293, + 0.027181170880794525, + 0.030960392206907272, + -0.10347037017345428, + 0.09127741307020187, + 0.028888888657093048, + -0.02116622030735016, + 0.011172729544341564, + 0.05155616253614426, + 0.050556376576423645, + 0.09041763842105865, + 0.01345942821353674, + -0.04247095435857773, + -0.03634674474596977, + 0.03058747760951519, + 0.015585790388286114, + -0.02649458684027195, + 0.004108394496142864, + -0.0522284172475338, + -0.11282835155725479, + 0.032715167850255966, + -0.03794107213616371, + 0.0384688600897789, + -0.028913725167512894, + 0.018099619075655937, + 0.05426650866866112, + -0.09725596755743027, + -0.0010733844246715307, + 0.007041215430945158, + -0.1694749891757965, + -0.03392196074128151, + 0.06095683202147484, + -0.10452598333358765, + -0.029557954519987106, + -3.5108439266486374e-34, + -0.05358681082725525, + -0.012058456428349018, + 0.010412799194455147, + 0.003932712599635124, + -0.004868752788752317, + 0.011764412745833397, + -0.00800010934472084, + 0.004290430806577206, + 0.05822993069887161, + -0.05148887634277344, + -0.05538087710738182, + 0.03265070170164108, + 0.01642678491771221, + -0.06614910811185837, + 0.03994918614625931, + -0.03620658442378044, + -0.002909758361056447, + 0.014049182645976543, + -0.01862213760614395, + 0.04890823736786842, + 0.05109883472323418, + -0.006093097850680351, + -0.08931126445531845, + 0.09036742895841599, + 0.01839689537882805, + 0.010843674652278423, + -0.01779334247112274, + -0.10790210962295532, + -0.049713656306266785, + 0.0008216134738177061, + 0.03583693131804466, + -0.045492663979530334, + 0.026654602959752083, + 0.08043713867664337, + -0.08354567736387253, + 0.09413008391857147, + 0.043123818933963776, + 0.035447679460048676, + 0.00660206563770771, + -0.04674975946545601, + -0.012905491515994072, + -0.04082196578383446, + 0.043922264128923416, + 0.0768715962767601, + -0.009476560167968273, + -0.03200289234519005, + -0.049335699528455734, + -0.09221550077199936, + 0.04674405977129936, + 0.09505466371774673, + -0.04482654854655266, + 0.01136917807161808, + -0.05486203357577324, + 0.017427070066332817, + -0.09554248303174973, + -0.03970146179199219, + -0.07780548185110092, + -0.03287546709179878, + -0.03642314672470093, + 0.08331004530191422, + -0.009991886094212532, + 0.054897572845220566, + -0.03545103967189789, + 0.03142388164997101, + -0.017471646890044212, + -0.02647440694272518, + -0.0073274169117212296, + -0.04942391812801361, + 0.018946312367916107, + -0.020445818081498146, + -0.008106736466288567, + 0.011530699208378792, + -0.03478168696165085, + 0.06947488337755203, + -0.016560014337301254, + -0.029940126463770866, + 0.03370175510644913, + 0.06038105487823486, + -0.007388182915747166, + 0.04232959449291229, + 0.034431565552949905, + -0.06667543202638626, + 0.014280490577220917, + 0.060288555920124054, + -0.05683040991425514, + 0.06696999073028564, + 0.047849737107753754, + -0.025931870564818382, + -0.0385097935795784, + -0.03749978542327881, + 0.00618391577154398, + 0.05178310349583626, + 0.02591606415808201, + -0.06583387404680252, + -0.07766005396842957, + -1.9903882986227472e-08, + 0.009037035517394543, + -0.030938368290662766, + -0.041929833590984344, + 0.024396538734436035, + -0.05793946981430054, + 0.004815711174160242, + 0.00024042425502557307, + -0.030892256647348404, + -0.029948865994811058, + 0.01120530255138874, + 0.12282226979732513, + 0.05256996303796768, + -0.027426689863204956, + -0.11271671205759048, + 0.056564848870038986, + -0.017372075468301773, + -0.023829631507396698, + 0.012796779163181782, + -0.04584717005491257, + 0.006306923925876617, + 0.04014424979686737, + 0.08713787794113159, + 0.08657485246658325, + -0.09071676433086395, + -0.010746316984295845, + -0.011194954626262188, + -0.0508333183825016, + -0.1024765595793724, + 0.05625025928020477, + 0.16259197890758514, + 0.08602237701416016, + 0.02945597469806671, + 0.04915362969040871, + -0.012211737222969532, + 0.02172544039785862, + 0.016603561118245125, + 0.07228006422519684, + 0.05801010876893997, + 0.013304188847541809, + 0.09479093551635742, + -0.02007964439690113, + -0.06620452553033829, + -0.03958801552653313, + -0.042968105524778366, + -0.009176721796393394, + -0.027863983064889908, + 0.026980409398674965, + 0.01208396628499031, + 0.03402196988463402, + -0.12935589253902435, + -0.01983717828989029, + 0.021549783647060394, + 0.00043763156281784177, + -0.014411610551178455, + -0.00977951567620039, + -0.028834287077188492, + 0.028252337127923965, + 0.11085943877696991, + 0.03876793384552002, + -0.05188989266753197, + 0.0884782075881958, + -0.03363770991563797, + 0.004584062844514847, + 0.05360858514904976 + ], + "sparkle-bold||star,rate,ratings,favorites,favorited": [ + -0.08264313638210297, + -0.08903278410434723, + -0.0006482363678514957, + 0.022474093362689018, + 0.001351964776404202, + 0.05903054401278496, + 0.1515175700187683, + 0.006717185489833355, + -0.019885290414094925, + -0.047173578292131424, + -0.009314384311437607, + 0.010680208913981915, + 0.05476989969611168, + -0.03318069875240326, + -0.041783712804317474, + 0.06783148646354675, + 0.044464875012636185, + -0.055756472051143646, + -0.021783223375678062, + -0.023851120844483376, + 0.01979454979300499, + -0.043643128126859665, + -0.021344611421227455, + 0.04795675724744797, + 0.109930619597435, + 0.02919566072523594, + 0.01865539513528347, + 0.0477871410548687, + -0.029254097491502762, + -0.10526010394096375, + 0.029024697840213776, + 0.047850847244262695, + 0.06515783071517944, + 0.0022283520083874464, + -0.041590366512537, + -0.033287759870290756, + -0.06709648668766022, + -0.02850867435336113, + 0.006048908922821283, + 0.022306205704808235, + 0.04051348939538002, + -0.03956550359725952, + -0.0475393645465374, + 0.04517475143074989, + 0.007349599618464708, + -0.0676669031381607, + 0.008468519896268845, + -0.06732767820358276, + -0.002682359889149666, + 0.13131839036941528, + -0.0521625280380249, + -0.054825279861688614, + -0.09361828118562698, + 0.029371172189712524, + 0.04234447702765465, + 0.011614537797868252, + -0.02834523469209671, + -0.031322088092565536, + 0.02831447310745716, + -0.04467402771115303, + 0.013120727613568306, + -0.0012780996039509773, + 0.06668352335691452, + 0.04105811193585396, + 0.04821482673287392, + -0.08936735987663269, + -0.028488056734204292, + 0.019508684054017067, + -0.02862662822008133, + -0.03282760828733444, + 0.006531819235533476, + 0.04661159962415695, + 0.007232008036226034, + -0.04716088995337486, + -0.03500960022211075, + 0.03280040621757507, + 0.01619606465101242, + -0.09864505380392075, + -0.026480337604880333, + 0.04084223136305809, + -0.06565198302268982, + -0.08696902543306351, + -0.050925590097904205, + -0.028614670038223267, + 0.056450869888067245, + -0.02455833926796913, + -0.006963834166526794, + -0.045241232961416245, + -0.08725220710039139, + 0.021266913041472435, + -0.07591547071933746, + 0.04455909878015518, + -0.03217579796910286, + -0.0006876925472170115, + -0.07985541969537735, + 0.0445108488202095, + 0.0789603516459465, + -0.10969694703817368, + -0.0004510252911131829, + 0.0945008173584938, + -0.011972653679549694, + 0.021405622363090515, + -0.0063395933248102665, + -0.008769385516643524, + 0.038924019783735275, + -0.07883842289447784, + 0.024377111345529556, + 0.008520996198058128, + 0.03602905943989754, + 0.009536989033222198, + -0.002479547867551446, + -0.04768553003668785, + -0.02215663716197014, + -0.06928464025259018, + 0.012532727792859077, + -0.02047106623649597, + -0.035157211124897, + 0.021345099434256554, + 0.11229775846004486, + 0.04857907444238663, + 0.09998376667499542, + 0.053763411939144135, + 0.05387510359287262, + -0.028470797464251518, + -0.09089097380638123, + 0.047859858721494675, + 0.003916608169674873, + -1.0714945085142011e-33, + 0.0327308215200901, + 0.015126358717679977, + -0.03368891030550003, + 0.0633537694811821, + -0.015229347161948681, + -0.01637626625597477, + -0.06465713679790497, + 0.0008999448618851602, + -0.11381985992193222, + -0.03703535720705986, + 0.01291230134665966, + 0.08937598764896393, + -0.011492813006043434, + 0.053028885275125504, + 0.03807668760418892, + 0.0012163212522864342, + 0.02215716987848282, + -0.06198400259017944, + -0.06227788329124451, + -0.010104808956384659, + -0.01893806643784046, + 0.09335295110940933, + -0.033260051161050797, + -0.046322304755449295, + -0.07235287874937057, + -0.04944095015525818, + -0.0011082172859460115, + 0.02383153885602951, + -0.04638369381427765, + 0.02938579022884369, + 0.09434022009372711, + -0.01964457705616951, + 0.06326545774936676, + 0.03473961725831032, + 0.006912488490343094, + 0.019652221351861954, + -0.060972198843955994, + -0.05476761981844902, + 0.017904182896018028, + -0.030915554612874985, + -0.0340963676571846, + -0.06023051217198372, + -0.05405176803469658, + 0.016606684774160385, + -0.06652222573757172, + 0.08158980309963226, + -0.04606154188513756, + 0.014453702606260777, + 0.016540471464395523, + -0.022541094571352005, + -0.016985004767775536, + -0.05622023716568947, + 0.023229211568832397, + 0.10457193851470947, + -0.012707975693047047, + 0.051273755729198456, + 0.005650961771607399, + -0.027748895809054375, + 0.035576216876506805, + -0.027711279690265656, + 0.008741161786019802, + 0.05161623656749725, + 0.06579166650772095, + -0.13150615990161896, + -0.0017739229369908571, + 0.09579243510961533, + 0.02347363904118538, + 0.056339554488658905, + 0.06494378298521042, + 0.03575623407959938, + -0.0006216084002517164, + 0.09234403818845749, + 0.0020446903072297573, + -0.03789490833878517, + -0.027670640498399734, + 0.0028289875481277704, + 0.06296159327030182, + 0.020779261365532875, + 0.003298756666481495, + -0.07721930742263794, + -0.07848849892616272, + -0.039062418043613434, + -0.016991641372442245, + 0.02042342908680439, + -0.00021468731574714184, + -0.023230023682117462, + 0.0013311556540429592, + -0.06255552172660828, + -0.05492555350065231, + -0.004558415152132511, + -0.015225455164909363, + 0.012248070910573006, + 0.061334121972322464, + -0.07641316205263138, + -0.12944796681404114, + 5.6297826966012e-34, + 0.03898247703909874, + 0.00783461518585682, + 4.403068669489585e-05, + 0.07160148024559021, + 0.07588613033294678, + -0.005500994622707367, + -0.035223983228206635, + 0.031519051641225815, + 0.015157465822994709, + 0.004461878910660744, + -0.07652853429317474, + -0.07949648797512054, + -0.040141116827726364, + -0.08466238528490067, + 0.08793096244335175, + 0.022848764434456825, + 0.02469055913388729, + -0.0023846887052059174, + -0.005229938309639692, + 0.070039764046669, + -0.048555806279182434, + 0.009262707084417343, + -0.1272803097963333, + 0.027368851006031036, + -0.03781486302614212, + -0.003043468575924635, + 0.01057307980954647, + -0.09715009480714798, + -0.04343182221055031, + -0.04474489390850067, + 0.017609450966119766, + -0.007567115128040314, + -0.0009876596741378307, + 0.0558517687022686, + -0.07603172957897186, + 0.08006581664085388, + -0.010413681156933308, + -0.09148740768432617, + -0.038401249796152115, + 0.061052657663822174, + 0.01112072542309761, + -0.020518647506833076, + -0.0054156603291630745, + 0.06253039836883545, + 0.006851993501186371, + -0.00830698013305664, + -0.04808056727051735, + 0.056052058935165405, + -0.03384355828166008, + 0.0755995362997055, + 0.015149989165365696, + 0.058508098125457764, + -0.05635184049606323, + 0.12028754502534866, + -0.056293897330760956, + -0.030218755826354027, + 0.08148351311683655, + 0.01996169611811638, + 0.02577207237482071, + 0.04390755668282509, + 0.03409652039408684, + -0.03794703632593155, + -0.012502150610089302, + 0.027218440547585487, + -0.0029483879916369915, + -0.052464559674263, + 0.04191988334059715, + -0.050744011998176575, + -0.05454906448721886, + -0.01339754182845354, + 0.04341980814933777, + 0.007533481810241938, + -0.006273167207837105, + -0.002694944851100445, + 0.03721095249056816, + -0.004218137823045254, + -0.03757742792367935, + 0.04242375120520592, + 0.03725343942642212, + -0.008562970906496048, + 0.007523101754486561, + 0.09775054454803467, + -0.04979642108082771, + 0.0015608537942171097, + 0.039015594869852066, + 0.021204262971878052, + 0.05260536074638367, + 0.0205176193267107, + -0.012867076322436333, + -0.06976039707660675, + 0.051957253366708755, + 0.022409576922655106, + 0.002747057704254985, + -0.06460846960544586, + 0.037699948996305466, + -2.0550562140897455e-08, + -0.014779062941670418, + 0.011310855858027935, + -0.06602383404970169, + 0.03420637920498848, + 0.07699990272521973, + 0.026341916993260384, + -0.03406653180718422, + -0.018220970407128334, + -0.024923909455537796, + -0.007405727170407772, + 0.1171722486615181, + 0.0058142258785665035, + -0.11165127158164978, + -0.06626518815755844, + 0.06384418159723282, + -0.03724036365747452, + 0.016704291105270386, + 0.09493990242481232, + -0.01806388795375824, + -0.009740939363837242, + -0.009872102178633213, + 0.10150620341300964, + 0.020716162398457527, + -0.09355215728282928, + 0.001812174217775464, + 0.04359220713376999, + -0.05062127113342285, + 0.010897600091993809, + 0.04754966124892235, + 0.040862180292606354, + 0.06760836392641068, + 0.02802763320505619, + 0.0378681980073452, + -0.06530971825122833, + -0.07260645180940628, + 0.04971540346741676, + 0.00028073787689208984, + -0.03931726515293121, + -0.0002981560246553272, + 0.0959165021777153, + 0.07001157104969025, + 0.003948925528675318, + 0.04412653669714928, + -0.017295842990279198, + -0.08664089441299438, + 0.013864382170140743, + 0.092061348259449, + -0.09075818210840225, + -0.005174559541046619, + -0.027944959700107574, + -0.00915746670216322, + -0.08025442808866501, + -0.013582944869995117, + 0.006534631364047527, + -0.0384722463786602, + 0.017437772825360298, + 0.017942199483513832, + 0.1090782880783081, + -0.030506305396556854, + 0.004241506103426218, + 0.1603691577911377, + 0.0020158966071903706, + -0.00934126228094101, + 0.03434417024254799 + ], + "speaker-hifi-bold||music,audio,sound,stereo": [ + 0.049016475677490234, + -0.0018409875920042396, + -0.05417405813932419, + -0.057662274688482285, + 0.0385667085647583, + 0.019956614822149277, + 0.07192109525203705, + -0.05139511451125145, + 0.0056894212029874325, + -0.017648231238126755, + -0.017888939008116722, + 0.02172081172466278, + 0.006117545999586582, + -0.06341720372438431, + 0.018952451646327972, + 0.010599294677376747, + 0.042450398206710815, + 0.02289094589650631, + 0.047620292752981186, + 0.012059624306857586, + 0.015010750852525234, + 0.05814315751194954, + -0.05425533652305603, + 0.0496714822947979, + 0.060126230120658875, + 0.0022891166154295206, + 0.06368057429790497, + 0.1165776252746582, + -0.043514326214790344, + -0.09428208321332932, + 0.0106181176379323, + 0.043635293841362, + 0.16568981111049652, + -0.04818153381347656, + -0.031677696853876114, + -0.02356630563735962, + -0.0013030656846240163, + -0.08234872668981552, + -0.050661321729421616, + 0.013920134864747524, + -0.005290662404149771, + -0.04413249343633652, + 0.011333244852721691, + 0.009466467425227165, + -0.06466416269540787, + -0.077653668820858, + -0.09290432184934616, + -0.017655685544013977, + 0.01389250811189413, + -0.02869519032537937, + -0.04195001721382141, + -0.07761938124895096, + -0.05803651362657547, + 0.06621401757001877, + -0.018184049054980278, + 0.015766886994242668, + -0.017965110018849373, + 0.05011588707566261, + 0.11124258488416672, + -0.018610017374157906, + 0.0014263701159507036, + -0.039411090314388275, + 0.01733623817563057, + 0.00826441589742899, + 0.028994381427764893, + -0.019552990794181824, + -0.01198648288846016, + 0.042530275881290436, + -0.019502893090248108, + 0.04375496506690979, + -0.015386749990284443, + 0.03805414214730263, + -0.005456711631268263, + -0.028326965868473053, + 0.03819116950035095, + -0.010053914040327072, + 0.03565564006567001, + -0.01705111376941204, + -0.01808648556470871, + -0.032193202525377274, + -0.012711592949926853, + -0.009119895286858082, + -0.06916207820177078, + -0.09078700095415115, + 0.04608703777194023, + 0.022985417395830154, + -0.07041088491678238, + -0.05852729082107544, + -0.1276654601097107, + -0.07793155312538147, + -0.16640770435333252, + -0.027562811970710754, + -0.05632931366562843, + -0.031102392822504044, + -0.015039113350212574, + 0.0009550446411594748, + 0.017685046419501305, + -0.04776206985116005, + -0.004297835752367973, + 0.09290396422147751, + 0.06727667897939682, + 0.016574833542108536, + 0.08179578930139542, + -0.016356129199266434, + -0.08188752084970474, + -0.08761703968048096, + -0.035815637558698654, + 0.11967605352401733, + 0.020294969901442528, + -0.016286276280879974, + -0.01629474200308323, + -0.08241920173168182, + -0.020387394353747368, + -0.019228240475058556, + 0.036678094416856766, + 0.02057674713432789, + -0.025985756888985634, + 0.04350747540593147, + 0.0586293525993824, + -0.01879504695534706, + -0.014865939505398273, + -0.05967261642217636, + -0.01107890997081995, + -0.03882548585534096, + -0.029481474310159683, + 0.003979021683335304, + -0.0017314887372776866, + -8.474732032383051e-34, + 0.09172191470861435, + 0.04678975045681, + -0.03339102491736412, + 0.10908318310976028, + -0.0054581621661782265, + -0.039240192621946335, + -0.08562035858631134, + 0.006079503335058689, + -0.02837180532515049, + 0.0702388659119606, + 0.042846884578466415, + 0.05271359533071518, + -0.040391720831394196, + 0.0073279570788145065, + -0.009845218621194363, + -0.04657136648893356, + -0.05240046605467796, + 0.04713530093431473, + -0.0798587054014206, + 0.0072050136514008045, + -0.0751831978559494, + 0.09337939321994781, + 0.004550986457616091, + 0.021908652037382126, + 0.0820268765091896, + -0.03935859352350235, + 0.041899848729372025, + -0.07209151238203049, + -0.02753251977264881, + 0.022147616371512413, + 0.06550772488117218, + 0.0269448384642601, + 0.0841912254691124, + -0.022961033508181572, + 0.012061486020684242, + -0.0310759786516428, + -0.03692815825343132, + 0.02283204160630703, + 0.009352651424705982, + -0.0712345764040947, + -0.07190214842557907, + -0.011124774813652039, + -0.025972329080104828, + 0.004998754244297743, + 0.014753948897123337, + 0.05264650285243988, + -0.03200925886631012, + 0.019839342683553696, + 0.0647510439157486, + 0.042848605662584305, + -0.05035276338458061, + -0.018450969830155373, + -0.03668779507279396, + 0.04911942407488823, + -0.009987588971853256, + -0.03329041227698326, + 0.007151398342102766, + 0.11385202407836914, + 0.06293322145938873, + -0.043942976742982864, + 0.07115612179040909, + 0.04377605393528938, + 0.0130411796271801, + -0.13154631853103638, + -0.018445495516061783, + 0.02964349277317524, + -0.007277256343513727, + -0.023076927289366722, + 0.06905364245176315, + 0.029813965782523155, + 0.013263705186545849, + -0.01238994114100933, + 0.00975039042532444, + 0.1212252750992775, + -0.07460374385118484, + 0.05673127621412277, + 0.012545695528388023, + -0.007880052551627159, + 0.04435087367892265, + -0.0067128753289580345, + -0.08740396052598953, + 0.05953161418437958, + -0.0614922009408474, + 0.09932484477758408, + 0.0015761537943035364, + 0.05259433388710022, + -0.027408454567193985, + -0.1251767873764038, + -0.05267859995365143, + 0.03383808583021164, + -0.1039314940571785, + 0.03188980370759964, + -0.0885683074593544, + -0.06649350374937057, + -0.04918801784515381, + -7.0503001204802586e-34, + 0.08558322489261627, + 0.0858558863401413, + 0.01044100895524025, + -0.03540901467204094, + 0.03170854598283768, + 0.030956396833062172, + 0.0634240135550499, + 0.08795205503702164, + 0.004918867722153664, + 0.013296092860400677, + 0.08538201451301575, + -0.04223726689815521, + 0.003175803693011403, + -0.06755658239126205, + -0.022322434931993484, + 0.007394616026431322, + 0.01650603488087654, + -0.039392270147800446, + 0.017134729772806168, + 0.07631807774305344, + -0.054868098348379135, + -0.02538488619029522, + 0.0040648565627634525, + 0.03956613317131996, + -0.09628015011548996, + -0.012864776886999607, + 0.023870501667261124, + 0.010719073936343193, + -0.0502941720187664, + 0.009410537779331207, + 0.026947317644953728, + -0.0058698090724647045, + -0.03332296386361122, + -0.022462179884314537, + 0.01073566172271967, + 0.03948282450437546, + 0.04693540930747986, + 0.03105303831398487, + -0.019176987931132317, + -0.060551974922418594, + -0.035174962133169174, + 0.030092431232333183, + 0.012031805701553822, + 0.013715341687202454, + 0.022839387878775597, + -0.04429125040769577, + -0.030543092638254166, + -0.006081854924559593, + -0.0536171980202198, + 0.015518208965659142, + 0.06809454411268234, + -0.033973198384046555, + 0.05950693413615227, + -0.03150574117898941, + -0.09088394790887833, + -0.06139649823307991, + -0.004163048230111599, + -0.011406868696212769, + -0.011809464544057846, + 0.054507363587617874, + 0.02350151538848877, + 0.0747068002820015, + -0.039027925580739975, + -0.0326656848192215, + 0.013656754978001118, + 0.04054582491517067, + 0.018776874989271164, + 0.002839011838659644, + 0.06994176656007767, + 0.0020254580304026604, + 0.026556260883808136, + -0.009110650047659874, + 0.021444298326969147, + 0.05731814354658127, + -0.026858067139983177, + -0.0359114445745945, + -0.07509543001651764, + 0.00453660124912858, + 0.034703578799963, + 0.057317160069942474, + -0.0016444940119981766, + 0.026433277875185013, + -0.01871977187693119, + 0.010569804348051548, + 0.018255669623613358, + 0.07687629014253616, + 0.04304831102490425, + 0.04284732788801193, + 0.03261172026395798, + 0.02537325955927372, + 0.0008362905355170369, + 0.09895586967468262, + -0.04457513988018036, + -0.0028450600802898407, + -0.054339054971933365, + -1.8234137755257507e-08, + 0.001346006290987134, + -0.03889355808496475, + 0.014081673696637154, + -0.05842839181423187, + -0.08920975029468536, + -0.06690600514411926, + 0.07035578042268753, + -0.12699222564697266, + -0.010048622265458107, + -0.035364363342523575, + 0.017291070893406868, + -0.013941749930381775, + -0.07434315979480743, + -0.007012628484517336, + 0.041084375232458115, + 0.03585527464747429, + -0.10108069330453873, + 0.14491760730743408, + -0.05109936743974686, + -0.07852025330066681, + 0.05029289424419403, + 0.07910870760679245, + 0.08351081609725952, + 0.01941724494099617, + 0.08666541427373886, + -0.034405384212732315, + 0.0216972678899765, + -0.030565902590751648, + 0.04651118442416191, + 0.03445384278893471, + -0.0016588669968768954, + 0.08610391616821289, + -0.07524645328521729, + -0.0106107322499156, + -0.08728166669607162, + 0.03455981984734535, + -0.0770457535982132, + 0.0010576415807008743, + -0.03656725585460663, + 0.03093557618558407, + 0.0067695812322199345, + -0.0029106163419783115, + -0.07963906228542328, + -0.03324183449149132, + 0.015352652408182621, + -0.010996902361512184, + 0.08933863043785095, + 0.030978186056017876, + -0.08151020109653473, + -0.059563081711530685, + -0.08322858065366745, + 0.0214616097509861, + -0.011488488875329494, + 0.02825343795120716, + -0.044726356863975525, + -0.02519409917294979, + -0.003303883131593466, + 0.06254995614290237, + 0.016190525144338608, + -0.01977066695690155, + 0.07188846915960312, + 0.017511432990431786, + 0.05706815421581268, + 0.034251511096954346 + ], + "speaker-high-bold||*updated*,music,audio,volume,sound": [ + 0.04545223340392113, + -0.05036383122205734, + -0.04139421135187149, + -0.03576259687542915, + -0.000563428271561861, + -0.030601374804973602, + 0.03551324084401131, + -0.07352917641401291, + 0.017765462398529053, + 0.018081706017255783, + -0.031372908502817154, + 0.06543519347906113, + -0.018155131489038467, + -0.052059877663850784, + 0.0005353174055926502, + 0.0259949192404747, + 0.10027917474508286, + 0.015127958729863167, + -0.002909648697823286, + -0.00987799558788538, + -0.061175595968961716, + 0.06484965234994888, + -0.028240900486707687, + 0.06865549087524414, + 0.07356953620910645, + -0.0018985538044944406, + 0.025969823822379112, + 0.021319996565580368, + -0.035757288336753845, + -0.06976959854364395, + -0.007044337224215269, + 0.04319696128368378, + 0.1828220933675766, + -0.03523465618491173, + -0.06049324572086334, + -0.0640152096748352, + -0.02565283514559269, + -0.04173015430569649, + -0.030794883146882057, + 0.023244062438607216, + 0.02347862720489502, + -0.03520353510975838, + 0.023353056982159615, + 0.011811676435172558, + -0.10307495296001434, + -0.07710732519626617, + -0.08041244000196457, + -0.02120540663599968, + -0.013163800351321697, + -0.031059766188263893, + 0.014077326282858849, + -0.11096257716417313, + -0.041857995092868805, + 0.010170227847993374, + -0.04043345898389816, + -0.007027709856629372, + 0.012823330238461494, + 0.08538823574781418, + 0.12494507431983948, + -0.038003209978342056, + 0.01745584048330784, + 0.0037693618796765804, + 0.04516324773430824, + 0.02669502981007099, + 0.029586929827928543, + 0.007213983219116926, + 0.010297724045813084, + 0.01875925250351429, + -0.024069225415587425, + 0.06818757206201553, + 0.027596967294812202, + 0.08058996498584747, + 0.03316226601600647, + -0.0458533838391304, + 0.009156100451946259, + -0.020386993885040283, + 0.04128856211900711, + -0.0411822572350502, + 0.011878813616931438, + 0.021555699408054352, + -0.009038200601935387, + -0.07141038775444031, + -0.09564384818077087, + -0.09625496715307236, + 0.07035066932439804, + -0.006685711909085512, + -0.08332079648971558, + -0.06627919524908066, + -0.150344580411911, + -0.0684395581483841, + -0.10478045791387558, + -0.017952995374798775, + -0.03376089781522751, + 0.0008460554527118802, + -0.054880741983652115, + 0.021303875371813774, + 0.03780921548604965, + -0.0844179019331932, + -0.011396038345992565, + 0.10573571175336838, + 0.05195142701268196, + 0.049454133957624435, + 0.05639132112264633, + -0.014734219759702682, + -0.04423438012599945, + -0.07344646006822586, + -0.03553151339292526, + 0.13366861641407013, + -0.03968830034136772, + 0.0106727946549654, + -0.01822802796959877, + -0.07239236682653427, + -0.03982595354318619, + -0.02074131742119789, + 0.007602115161716938, + 0.01598372869193554, + -0.039624541997909546, + 0.05777435004711151, + 0.02034681849181652, + -0.00044623322901315987, + 0.02569749765098095, + -0.044300928711891174, + -0.02912982925772667, + -0.03338761627674103, + -0.008321511559188366, + 0.020478440448641777, + -0.0013046471867710352, + -1.7074891148708764e-33, + 0.07955428957939148, + 0.04381081834435463, + -0.05996384471654892, + 0.1113075390458107, + 0.024160651490092278, + -0.02522452175617218, + -0.05165748670697212, + -0.022845247760415077, + -0.02312384732067585, + 0.021587617695331573, + 0.05812046304345131, + 0.1312955766916275, + -0.034640248864889145, + 0.006645009387284517, + 0.007636353373527527, + -0.07542148977518082, + -0.04532650485634804, + 0.07222045958042145, + -0.06347746402025223, + 0.011690857820212841, + -0.034162212163209915, + 0.04055965691804886, + -0.03229715675115585, + 0.011752238497138023, + 0.05070435255765915, + -0.028646254912018776, + 0.053283046931028366, + -0.047935791313648224, + -0.031038818880915642, + 0.004885414149612188, + 0.023437073454260826, + 0.022768571972846985, + 0.09515152871608734, + -0.02171453833580017, + -0.025011472404003143, + 0.0076410481706261635, + -0.05086645856499672, + 0.011599396355450153, + 0.03586431220173836, + -0.07110638171434402, + -0.07388877868652344, + -0.04537154361605644, + -0.030703598633408546, + 0.02159048616886139, + 0.018897181376814842, + 0.09102049469947815, + -0.08390098810195923, + -0.02124474197626114, + 0.033495865762233734, + 0.031138768419623375, + -0.05926735699176788, + 0.010244285687804222, + -0.02945771813392639, + 0.03404788300395012, + -0.03054255247116089, + -0.017984574660658836, + 0.03482954204082489, + 0.09465014934539795, + 0.07603342831134796, + -0.05744849517941475, + 0.09135832637548447, + 0.03108632005751133, + 0.02607967145740986, + -0.0977594181895256, + -0.031237686052918434, + 0.03712943196296692, + -0.014640611596405506, + 0.011976876296103, + 0.0481826551258564, + 0.017467131838202477, + 0.03383050113916397, + -0.005744888447225094, + 0.04554849490523338, + 0.09577035158872604, + -0.08747410774230957, + 0.029247380793094635, + -0.014451662078499794, + -0.011606753803789616, + 0.016606668010354042, + -0.024004334583878517, + -0.06948890537023544, + 0.0052976408042013645, + -0.06389106065034866, + 0.09034769982099533, + 0.010610704310238361, + 0.05285678803920746, + -0.07091055065393448, + -0.0668177381157875, + -0.049662500619888306, + 0.033142805099487305, + -0.06647789478302002, + 0.021288592368364334, + -0.07822122424840927, + -0.07163891941308975, + -0.04603652283549309, + -8.841940855545587e-34, + 0.059564750641584396, + 0.07488137483596802, + -0.016195012256503105, + 0.004008192103356123, + 0.006329383235424757, + 0.019171100109815598, + -0.006444619968533516, + 0.09113562107086182, + -0.005591357592493296, + -0.01353114191442728, + 0.08692918717861176, + -0.023699771612882614, + -0.05628781393170357, + -0.06795968860387802, + 0.004581843968480825, + 0.029240135103464127, + 0.019658885896205902, + -0.007219329476356506, + 0.01908061094582081, + 0.052585478872060776, + -0.03380125015974045, + -0.0072086346335709095, + -0.028135547414422035, + 0.0544421561062336, + -0.0697769969701767, + -0.04060988128185272, + -0.0304251778870821, + -0.004572289064526558, + -0.047382812947034836, + -0.029563674703240395, + -0.0047577447257936, + -0.03145429491996765, + -0.018031585961580276, + -0.010607745498418808, + 0.017510317265987396, + 0.05733252316713333, + 0.08763936161994934, + -0.019552337005734444, + -0.009270750917494297, + -0.014775439165532589, + -0.004867036826908588, + 0.06319326162338257, + 0.040874239057302475, + 0.03357483819127083, + 0.04154317453503609, + -0.008227423764765263, + -0.05514499917626381, + -0.02913380041718483, + -0.008527867496013641, + 0.023158695548772812, + 0.0643891841173172, + -0.029422909021377563, + 0.08996090292930603, + 0.016664797440171242, + -0.08147449791431427, + -0.055986642837524414, + -0.021893450990319252, + 0.012256434187293053, + 0.009155085310339928, + 0.04745961353182793, + 0.026524292305111885, + 0.06292793899774551, + -0.054478514939546585, + -0.06062839925289154, + -0.018388506025075912, + 0.031154988333582878, + 0.041220348328351974, + -0.012314383871853352, + 0.07164281606674194, + 0.01749836839735508, + 0.035193830728530884, + -0.04118376225233078, + -0.005260281264781952, + 0.04018527269363403, + -0.0103334691375494, + -0.10564148426055908, + -0.05127386003732681, + -0.014824685640633106, + 0.01875079609453678, + 0.009454729966819286, + -0.009763549081981182, + 0.05619781091809273, + 0.022107286378741264, + 0.02215244621038437, + -0.02094591222703457, + 0.0603933110833168, + 0.033911243081092834, + 0.02445286139845848, + 0.010843285359442234, + -0.003175719641149044, + -0.039590559899806976, + 0.07848785072565079, + -0.05104624480009079, + -0.03951730579137802, + -0.03776279836893082, + -2.1166009389617102e-08, + 0.0035755247808992863, + -0.027253499254584312, + -0.0349026620388031, + -0.04988059028983116, + 0.008575206622481346, + -0.10425464063882828, + 0.013564555905759335, + -0.08566531538963318, + -0.00956330168992281, + -0.08581320941448212, + 0.009302514605224133, + -0.06148342043161392, + -0.021932212635874748, + -0.005279955919831991, + 0.06741654872894287, + 0.028244078159332275, + -0.11310034990310669, + 0.12314192205667496, + -0.04109163209795952, + -0.14035969972610474, + 0.02223876304924488, + 0.09454794973134995, + 0.11823518574237823, + -0.02790004201233387, + 0.10176905244588852, + -0.002009064657613635, + 0.001540964818559587, + -0.015429846942424774, + 0.06271468847990036, + 0.03736305609345436, + -0.00022997580526862293, + 0.06399508565664291, + -0.08447885513305664, + -0.014323955401778221, + -0.04245128855109215, + 0.04858976602554321, + -0.0912947878241539, + -0.004497433081269264, + -0.013557392172515392, + 0.08934085816144943, + -0.010860510170459747, + -0.04552822187542915, + -0.04382374510169029, + 0.017924737185239792, + 0.018343988806009293, + -0.01565808616578579, + 0.048240553587675095, + 0.017002196982502937, + -0.06070113554596901, + -0.06432393193244934, + -0.03982871398329735, + 0.06499849259853363, + 0.040728356689214706, + 0.012454131618142128, + -0.016327673569321632, + -0.034602295607328415, + -0.003501694183796644, + 0.09157184511423111, + 0.005464058835059404, + -0.024590052664279938, + 0.1407543122768402, + -0.02280065231025219, + -0.009998966939747334, + 0.027556993067264557 + ], + "speaker-low-bold||*updated*,music,audio,volume,sound": [ + 0.06517668068408966, + -0.04260609671473503, + -0.041894927620887756, + -0.024544959887862206, + 0.003516281023621559, + -0.025978220626711845, + 0.020688559859991074, + -0.06207609176635742, + 0.02285139635205269, + 0.015079985372722149, + -0.019438352435827255, + 0.0462244376540184, + -0.0047502885572612286, + -0.04455523192882538, + -0.006210082210600376, + 0.026850080117583275, + 0.09981995820999146, + 0.027454668655991554, + -0.0002810283622238785, + 0.0028450426179915667, + -0.06223753094673157, + 0.07100259512662888, + -0.03143860399723053, + 0.055029746145009995, + 0.06907961517572403, + -0.017453694716095924, + 0.026296081021428108, + 0.019385717809200287, + -0.02156822383403778, + -0.06746754050254822, + 0.0019965122919529676, + 0.032311078161001205, + 0.19982916116714478, + -0.039886586368083954, + -0.0507081039249897, + -0.07170049101114273, + 0.0036504652816802263, + -0.027267074212431908, + -0.03533804789185524, + 0.02930215559899807, + 0.020497461780905724, + -0.014060172252357006, + 0.00226203678175807, + 0.0191879291087389, + -0.11114571988582611, + -0.0834798738360405, + -0.09213433414697647, + -0.03305106982588768, + -0.026780126616358757, + -0.03688781335949898, + 0.025600530207157135, + -0.09535270929336548, + -0.06807926297187805, + 0.01948283053934574, + -0.0431690588593483, + -0.01894577033817768, + 0.0024279619101434946, + 0.0904775857925415, + 0.12240639328956604, + -0.03929455205798149, + 0.04913608357310295, + -0.018456362187862396, + 0.04102952405810356, + 0.021919624879956245, + 0.01985340379178524, + 0.0030485056340694427, + 0.011028594337403774, + 0.017811475321650505, + -0.01977972686290741, + 0.05803433060646057, + 0.018614569678902626, + 0.07770910859107971, + 0.04591508209705353, + -0.03173919767141342, + -0.00625657057389617, + -0.0197918601334095, + 0.04933697730302811, + -0.0360882431268692, + 0.005034537985920906, + 0.016522888094186783, + -0.01974467933177948, + -0.07671559602022171, + -0.11290490627288818, + -0.1046036034822464, + 0.053304336965084076, + -0.00396218104287982, + -0.07689888775348663, + -0.06697040051221848, + -0.1479136198759079, + -0.0712914913892746, + -0.1001509577035904, + -0.01245280634611845, + -0.03436435014009476, + -0.009110238403081894, + -0.04777855426073074, + 0.019077878445386887, + 0.05367783084511757, + -0.06485458463430405, + -0.025242315605282784, + 0.12120386213064194, + 0.03600751608610153, + 0.0545293465256691, + 0.053873125463724136, + -0.026469234377145767, + -0.04966355487704277, + -0.0694488063454628, + -0.03828145191073418, + 0.11061705648899078, + -0.05276142433285713, + 0.006655964069068432, + -0.011236962862312794, + -0.07717395573854446, + -0.039869166910648346, + -0.03181502968072891, + 0.0054419199004769325, + 0.002569648902863264, + -0.03359898552298546, + 0.053102411329746246, + 0.023301871493458748, + 0.02076292224228382, + 0.01669841632246971, + -0.045135561376810074, + -0.024388641119003296, + -0.027546251192688942, + -0.0071000149473547935, + 0.027379317209124565, + -0.016449235379695892, + -1.4469575060714171e-33, + 0.09963211417198181, + 0.030488640069961548, + -0.06563114374876022, + 0.09779111295938492, + 0.038170572370290756, + -0.021894261240959167, + -0.05594518408179283, + -0.03404458239674568, + -0.009797356091439724, + 0.026698237285017967, + 0.07011015713214874, + 0.11606850475072861, + -0.031736116856336594, + -0.014969389885663986, + 0.018978271633386612, + -0.07352148741483688, + -0.04304446280002594, + 0.06295988708734512, + -0.040067609399557114, + 0.009951958432793617, + -0.044967979192733765, + 0.04194797948002815, + -0.030367201194167137, + 0.012986600399017334, + 0.048797301948070526, + -0.0238293819129467, + 0.062066156417131424, + -0.05537308380007744, + -0.04298805817961693, + 0.0035763743799179792, + 0.005130205303430557, + 0.027358097955584526, + 0.09484927356243134, + -0.02525421231985092, + -0.005949988029897213, + 0.0036755716428160667, + -0.06350348144769669, + 0.021244894713163376, + 0.02594614215195179, + -0.0907798707485199, + -0.07562390714883804, + -0.047813016921281815, + -0.03432093933224678, + 0.004060802515596151, + 0.025792183354496956, + 0.06376480311155319, + -0.05781002342700958, + -0.02711576037108898, + 0.04471141844987869, + 0.0303279347717762, + -0.054384492337703705, + 0.01841554418206215, + -0.04243486747145653, + 0.03937738388776779, + -0.021296506747603416, + -0.026378119364380836, + 0.020794110372662544, + 0.07916498929262161, + 0.06711991131305695, + -0.06023119390010834, + 0.10104598104953766, + 0.033757612109184265, + 0.026406027376651764, + -0.1193593442440033, + -0.01784541830420494, + 0.041899487376213074, + -0.016047723591327667, + -0.004323643632233143, + 0.035669244825839996, + -0.003060581861063838, + 0.01845747046172619, + -0.0066511607728898525, + 0.05373896658420563, + 0.10239902883768082, + -0.07620425522327423, + 0.04184293746948242, + 0.0011683751363307238, + -0.02771223895251751, + 0.01515245996415615, + -0.0348694771528244, + -0.05875396728515625, + 0.013369477353990078, + -0.08154888451099396, + 0.10698433220386505, + 0.016461357474327087, + 0.052270472049713135, + -0.04917250573635101, + -0.030352381989359856, + -0.055766165256500244, + 0.017906876280903816, + -0.08784817904233932, + 0.005436645820736885, + -0.12101465463638306, + -0.06978768110275269, + -0.028181498870253563, + -1.2304119775247663e-33, + 0.04742611199617386, + 0.07579410076141357, + -0.02055823616683483, + 0.012750610709190369, + 0.004600058775395155, + 0.017931530252099037, + 0.023636681959033012, + 0.0746317133307457, + 0.02078980766236782, + 0.002786316443234682, + 0.07949758321046829, + -0.017769359052181244, + -0.042640507221221924, + -0.05599118769168854, + 0.002059343969449401, + 0.037793926894664764, + 0.0009882141603156924, + -0.015639374032616615, + 0.034404415637254715, + 0.06619038432836533, + -0.0459076426923275, + 0.01904361881315708, + -0.03969598188996315, + 0.06484237313270569, + -0.06261226534843445, + -0.03896012157201767, + -0.029698919504880905, + 0.0066164894960820675, + -0.06237645819783211, + -0.04923722520470619, + 0.005149319302290678, + -0.023011615499854088, + -0.009915834292769432, + -0.018354307860136032, + 0.01587391085922718, + 0.05209619179368019, + 0.08080864697694778, + -0.009377370588481426, + -0.016490738838911057, + -0.014068220742046833, + 0.006467148195952177, + 0.08269201219081879, + 0.03567904978990555, + 0.02712734043598175, + 0.04079017415642738, + -0.018108470365405083, + -0.04608727991580963, + -0.03286314755678177, + -0.010916649363934994, + 0.008753582835197449, + 0.06831801682710648, + -0.03845798596739769, + 0.08877794444561005, + 0.02091682329773903, + -0.06652817875146866, + -0.0508451908826828, + -0.014760234393179417, + 0.021022068336606026, + 0.02607840672135353, + 0.06767870485782623, + 0.01149435993283987, + 0.05605152249336243, + -0.04604789987206459, + -0.06079110875725746, + -0.02285907045006752, + 0.03200244531035423, + 0.0405796654522419, + 0.010154083371162415, + 0.0710449069738388, + 0.0033844930585473776, + 0.04652273282408714, + -0.031070370227098465, + 0.010159557685256004, + 0.01824237033724785, + 0.004274741746485233, + -0.09834212809801102, + -0.058699432760477066, + -0.01066302414983511, + 0.005624142475426197, + 0.009103975258767605, + -0.0030267389956861734, + 0.05494162067770958, + 0.021038513630628586, + 0.010766175575554371, + -0.013897127471864223, + 0.062456801533699036, + 0.03627670928835869, + 0.02238701656460762, + 0.0021328390575945377, + 0.004473558627068996, + -0.05439059063792229, + 0.08208027482032776, + -0.014338517561554909, + -0.02702452428638935, + -0.04706021398305893, + -2.1597179156174207e-08, + -0.0010480615310370922, + -0.0321941040456295, + -0.016385558992624283, + -0.04523416981101036, + 0.006114083342254162, + -0.10539171099662781, + 0.00168644730001688, + -0.11174269020557404, + -0.009888538159430027, + -0.06415534019470215, + 0.00995940063148737, + -0.05879046767950058, + -0.035254623740911484, + -0.002231755293905735, + 0.058293797075748444, + 0.05059055984020233, + -0.11546790599822998, + 0.11550576239824295, + -0.040892619639635086, + -0.1437152922153473, + 0.029919948428869247, + 0.09247667342424393, + 0.09936889261007309, + -0.03034261427819729, + 0.11803479492664337, + -0.02066800184547901, + 0.030119026079773903, + -0.029521139338612556, + 0.06534384936094284, + 0.02068171836435795, + 0.007142399437725544, + 0.0815688967704773, + -0.07118882238864899, + -0.020562132820487022, + -0.05646717920899391, + 0.05449771136045456, + -0.08451072126626968, + 0.006898472551256418, + -0.03638229891657829, + 0.09624607861042023, + -0.014688732102513313, + -0.04718774929642677, + -0.050511520355939865, + 0.0071618142537772655, + 0.010575242340564728, + -0.01075717993080616, + 0.0427185595035553, + 0.009834607131779194, + -0.05686222389340401, + -0.06305063515901566, + -0.026854515075683594, + 0.06890077143907547, + 0.03132029250264168, + 0.019909262657165527, + -0.027330301702022552, + -0.03057980351150036, + 0.006967202294617891, + 0.08593817800283432, + -0.0023839285131543875, + -0.0382184199988842, + 0.10945401340723038, + -0.010303392075002193, + 0.0038817282766103745, + 0.013139001093804836 + ], + "speaker-none-bold||*updated*,music,audio,muted,volume,sound": [ + 0.039575397968292236, + -0.052688829600811005, + -0.06390035897493362, + -0.02835952304303646, + 0.021496279165148735, + -0.023107174783945084, + 0.007275064010173082, + -0.10864663124084473, + 0.03907202184200287, + 0.0030312181916087866, + 0.015898779034614563, + 0.02012648805975914, + -0.02694748155772686, + -0.04340650513768196, + -0.031139394268393517, + 0.02314022369682789, + 0.06344114989042282, + -0.008498894982039928, + 0.02767055481672287, + -0.003029180457815528, + -0.06021079048514366, + 0.08639222383499146, + -0.029263893142342567, + 0.05889536067843437, + 0.0797138437628746, + -0.009384247474372387, + 0.0230738315731287, + 0.017249980941414833, + -0.026514535769820213, + -0.06814908981323242, + 0.0014003493124619126, + 0.031895969063043594, + 0.18844017386436462, + -0.024307027459144592, + -0.001404514885507524, + -0.0697893500328064, + -0.0034173361491411924, + -0.027768844738602638, + -0.04119256138801575, + 0.001609420869499445, + -0.008317817002534866, + -0.03300470858812332, + -0.008710144087672234, + -0.031085174530744553, + -0.09062942117452621, + -0.07318572700023651, + -0.10552649945020676, + -0.044368382543325424, + -0.027187161147594452, + -0.04037875309586525, + 0.03059612214565277, + -0.09595980495214462, + -0.06262103468179703, + 0.01989208161830902, + -0.025976913049817085, + -0.029598871245980263, + 0.0032961610704660416, + 0.08828970044851303, + 0.09352420270442963, + -0.03897705674171448, + 0.03406903147697449, + -0.022367265075445175, + 0.053667690604925156, + 0.024700015783309937, + 0.020558932796120644, + 0.010070216841995716, + -0.005897263064980507, + 0.00776282325387001, + -0.01635766588151455, + 0.048824187368154526, + 0.03366468846797943, + 0.07588479667901993, + 0.04671658203005791, + -0.04298771917819977, + 0.007998372428119183, + -0.03218592330813408, + 0.06721582263708115, + -0.04900885373353958, + 0.005029700696468353, + 0.03473091498017311, + -0.04926552623510361, + -0.05166764557361603, + -0.09875962138175964, + -0.06716267764568329, + 0.05898696556687355, + 0.017972039058804512, + -0.07757887244224548, + -0.04419428110122681, + -0.1258745789527893, + -0.06812962889671326, + -0.13540588319301605, + -0.004792323801666498, + -0.03815878555178642, + 0.005572709254920483, + -0.043160706758499146, + 0.03839341551065445, + 0.023409506306052208, + -0.040326762944459915, + -0.0348028689622879, + 0.11470849066972733, + 0.051134563982486725, + 0.06020083278417587, + 0.06976043432950974, + -0.018872061744332314, + -0.053553465753793716, + -0.052178043872117996, + -0.0594160333275795, + 0.08580480515956879, + -0.029254967346787453, + -0.0043923151679337025, + -0.015347631648182869, + -0.08621637523174286, + -0.028103748336434364, + 0.002694242401048541, + -0.012815259397029877, + 0.010612678714096546, + -0.03077348880469799, + 0.04204491525888443, + 0.040050849318504333, + 0.028889251872897148, + 0.020163321867585182, + -0.04193004593253136, + -0.027477648109197617, + -0.03585178777575493, + -0.04184182360768318, + 0.03876316919922829, + 0.00948889646679163, + -2.277208798715214e-33, + 0.10135768353939056, + 0.007188588846474886, + -0.0609779953956604, + 0.08234968036413193, + 0.049110978841781616, + -0.02576487325131893, + -0.02407260797917843, + -0.0477973148226738, + -0.029100686311721802, + 0.0045288256369531155, + 0.07317940145730972, + 0.10501383990049362, + -0.005075518973171711, + -0.02657124772667885, + 0.018851125612854958, + -0.06107950955629349, + -0.006971792783588171, + 0.06420569121837616, + -0.03419638052582741, + 0.0009494713158346713, + 0.0017936330987140536, + 0.050269778817892075, + -0.04117834195494652, + 0.02816854976117611, + 0.05685599893331528, + -0.007022892590612173, + 0.04996846988797188, + -0.05069940164685249, + -0.034318018704652786, + 0.0007817340083420277, + 0.0009248080314137042, + 0.06848195195198059, + 0.08856360614299774, + -0.02924538590013981, + 0.01391057763248682, + -0.005506021436303854, + -0.044014789164066315, + 0.027703842148184776, + 0.016494346782565117, + -0.11198415607213974, + -0.06390509754419327, + -0.07379480451345444, + -0.03210955113172531, + -0.014355943538248539, + 0.021175719797611237, + 0.03688546270132065, + -0.05741242691874504, + 0.0038309814408421516, + 0.04342710226774216, + 0.04429931193590164, + -0.054175157099962234, + 0.029570911079645157, + -0.015795724466443062, + 0.023332374170422554, + -0.027072377502918243, + -0.03465580195188522, + 0.013289695605635643, + 0.09757605195045471, + 0.038085438311100006, + -0.08505918085575104, + 0.11363064497709274, + 0.030650435015559196, + 0.020864449441432953, + -0.1408803015947342, + -0.011184491217136383, + 0.06106261536478996, + -0.03820488229393959, + 0.005808503367006779, + 0.05528250336647034, + -0.029650509357452393, + 0.0001095832631108351, + 0.006817864719778299, + 0.03292471542954445, + 0.11000705510377884, + -0.08483202010393143, + 0.02397032268345356, + -0.027516692876815796, + -0.027856716886162758, + -0.0020083608105778694, + -0.020180294290184975, + -0.06159066781401634, + 0.01890547014772892, + -0.09379617869853973, + 0.11275043338537216, + 0.02232648804783821, + 0.05492112413048744, + -0.0439184196293354, + -0.019581209868192673, + -0.02601647563278675, + 0.008525174111127853, + -0.05734676122665405, + 0.012807872146368027, + -0.1233665943145752, + -0.07675124704837799, + -0.0333697609603405, + -9.375811818780684e-34, + 0.03486267104744911, + 0.07665953040122986, + -0.039853379130363464, + -0.006057684775441885, + -0.004308837000280619, + 0.006473741959780455, + 0.012052532285451889, + 0.07282004505395889, + 0.026951691135764122, + -0.02841615490615368, + 0.09560433030128479, + -0.013235663995146751, + -0.05313790217041969, + -0.06911049783229828, + 0.005020463839173317, + 0.06471952795982361, + -0.009682601317763329, + -0.015889378264546394, + 0.01133929193019867, + 0.08375414460897446, + -0.031108420342206955, + 0.011566415429115295, + -0.03369034081697464, + 0.0870933085680008, + -0.09617408365011215, + -0.03154123201966286, + 0.011841787956655025, + -0.005061275791376829, + -0.037972062826156616, + -0.03860659897327423, + 0.028726806864142418, + 0.0007491342257708311, + -0.026967158541083336, + -0.014786656014621258, + 0.05305662378668785, + 0.049003612250089645, + 0.09923913329839706, + -0.008164460770785809, + -0.0007582781254313886, + -0.04318609833717346, + 0.01445687934756279, + 0.11050950735807419, + 0.03241336718201637, + 0.04231753945350647, + 0.034043509513139725, + -0.005310610868036747, + -0.026075107976794243, + -0.03817751258611679, + -0.005106021650135517, + 0.0025535193271934986, + 0.07666230946779251, + -0.04672609269618988, + 0.08229200541973114, + -0.013286199420690536, + -0.04785621538758278, + -0.049917325377464294, + -0.01196493674069643, + 0.021864695474505424, + 0.03895311802625656, + 0.054686639457941055, + 0.02939186803996563, + 0.055057935416698456, + -0.055702026933431625, + -0.05079086869955063, + -0.0413513146340847, + 0.03958722576498985, + 0.037746768444776535, + 0.0330783948302269, + 0.08846748620271683, + -0.015042143873870373, + 0.04185407608747482, + -0.019818613305687904, + 0.01621566340327263, + -0.009346251375973225, + 0.013549252413213253, + -0.057528890669345856, + -0.08792999386787415, + -0.025934239849448204, + -0.020433658733963966, + 0.02622244879603386, + 0.023148756474256516, + 0.04200680926442146, + 0.02507821097970009, + 0.0031397673301398754, + 0.012345931492745876, + 0.018667345866560936, + 0.05497818812727928, + 0.04225217550992966, + 0.0032449313439428806, + 0.00013928527187090367, + -0.04546046257019043, + 0.0754387229681015, + -0.02767675742506981, + -0.005429917946457863, + -0.04298604279756546, + -2.3105283020186107e-08, + 0.027291934937238693, + -0.022277522832155228, + -0.020770283415913582, + -0.06241520866751671, + -0.010884479619562626, + -0.11269784718751907, + 0.031619224697351456, + -0.14421777427196503, + -0.029556220397353172, + -0.06642936915159225, + 0.006782763637602329, + -0.06633744388818741, + -0.04057487100362778, + 0.005462290719151497, + 0.0579993799328804, + 0.0521358959376812, + -0.12848548591136932, + 0.10795407742261887, + -0.033349234610795975, + -0.13563291728496552, + 0.0057218559086322784, + 0.07715266942977905, + 0.06679590046405792, + -0.025487801060080528, + 0.10908728837966919, + -0.02324025332927704, + 0.02871263027191162, + -0.04264538362622261, + 0.07959878444671631, + 0.007708067540079355, + 0.00942312367260456, + 0.08231691271066666, + -0.064654640853405, + -0.017398178577423096, + -0.05866970121860504, + 0.060942426323890686, + -0.07473397254943848, + 0.017819108441472054, + -0.028564471751451492, + 0.08109131455421448, + -0.007508463691920042, + -0.03180921450257301, + -0.042578596621751785, + -0.005970217287540436, + 0.01296284794807434, + -0.0025763094890862703, + 0.03754759579896927, + -0.0083016874268651, + -0.058465588837862015, + -0.049883123487234116, + -0.028724249452352524, + 0.06246130168437958, + 0.018287254497408867, + 0.022857893258333206, + -0.008185029961168766, + -0.01956736482679844, + 0.015321428887546062, + 0.06587569415569305, + 0.004857880529016256, + -0.05038200691342354, + 0.10101910680532455, + -0.02411006949841976, + 0.0003318469098303467, + 0.01785755157470703 + ], + "speaker-simple-high-bold||music,audio,volume,sound": [ + 0.07599260658025742, + -0.03543637692928314, + -0.055068690329790115, + -0.0513785295188427, + -0.02026698924601078, + -0.011996450833976269, + 0.033658627420663834, + -0.022578539326786995, + 0.005641675088554621, + 0.01239322405308485, + -0.03792216256260872, + 0.04498634114861488, + 0.013922395184636116, + -0.02551335096359253, + 0.0005918687675148249, + 0.015980495139956474, + 0.07678766548633575, + 0.021694403141736984, + 0.01872546412050724, + 0.010765234008431435, + -0.031364526599645615, + 0.04569841921329498, + -0.06357830762863159, + 0.03711012005805969, + 0.05150717869400978, + -0.007427375763654709, + 0.055856525897979736, + 0.08206544071435928, + 0.0068907965905964375, + -0.07883498817682266, + 0.018719544634222984, + 0.029858706519007683, + 0.18445807695388794, + -0.020392658188939095, + -0.06740105897188187, + -0.06148018687963486, + -0.017109723761677742, + -0.0569140687584877, + -0.05211571976542473, + 0.01214795932173729, + 0.0033600034657865763, + -0.020652450621128082, + 0.03149600699543953, + -0.0012421414721757174, + -0.10461597144603729, + -0.09724981337785721, + -0.08521166443824768, + -0.0028401308227330446, + 0.003148868912830949, + -0.052197787910699844, + 0.0230114683508873, + -0.08466339856386185, + -0.06889942288398743, + 0.04217645898461342, + -0.020422667264938354, + -0.0027838924434036016, + -0.020803604274988174, + 0.08975253254175186, + 0.12780439853668213, + -0.03490006551146507, + 0.014864396303892136, + -0.03363948315382004, + 0.03273078799247742, + 0.011382915079593658, + 0.03719821572303772, + -0.00933670811355114, + -0.006270882673561573, + 0.05909526348114014, + -0.04534944146871567, + 0.06331702321767807, + 0.012489473447203636, + 0.047224730253219604, + 0.008766235783696175, + -0.03508530184626579, + 0.020733077079057693, + -0.03760809078812599, + 0.019676504656672478, + -0.026863722130656242, + -0.046369656920433044, + 0.05412108078598976, + -0.06087788566946983, + -0.060435935854911804, + -0.11107206344604492, + -0.06099770590662956, + 0.0317075289785862, + 0.0061105084605515, + -0.08504045754671097, + -0.036630768328905106, + -0.10025784373283386, + -0.05018928647041321, + -0.11700299382209778, + 0.011978855356574059, + -0.02996094897389412, + 0.013236128725111485, + 0.0005582443554885685, + -0.0004748716310132295, + 0.07161156088113785, + -0.09609527140855789, + -0.026057615876197815, + 0.09584224969148636, + 0.04984791576862335, + 0.03482116013765335, + 0.10233677923679352, + -0.05517737939953804, + -0.05163435637950897, + -0.08235867321491241, + -0.03158000484108925, + 0.0980401262640953, + -0.034175969660282135, + -0.0022013788111507893, + -0.025257833302021027, + -0.08108161389827728, + -0.016347413882613182, + -0.0014023201074451208, + 0.04663172736763954, + 0.0030806828290224075, + -0.03525109216570854, + 0.039819154888391495, + 0.04584907367825508, + -0.002466627862304449, + 0.009633819572627544, + -0.04319509118795395, + -0.05702090635895729, + -0.008376357145607471, + 0.010814327746629715, + 0.03796054422855377, + 0.010738781653344631, + -2.1380629610144875e-33, + 0.09975867718458176, + 0.04380234330892563, + -0.06025664135813713, + 0.1279563158750534, + 0.03370972350239754, + -0.03658873587846756, + -0.05979928746819496, + -0.008923046290874481, + -0.02909913659095764, + 0.049988988786935806, + 0.07183072715997696, + 0.08922822773456573, + -0.02522549219429493, + -0.0020135329104959965, + 0.020718783140182495, + -0.044754497706890106, + -0.040220580995082855, + 0.05689079314470291, + -0.08226671069860458, + -0.020191676914691925, + -0.06056544929742813, + 0.07272685319185257, + -0.02056063339114189, + 0.010869989171624184, + 0.057958491146564484, + -0.026435410603880882, + 0.06948215514421463, + -0.07317449152469635, + -0.04006306454539299, + 0.0019659774843603373, + 0.02225569263100624, + 0.02534416876733303, + 0.0835675299167633, + -0.01241985708475113, + 0.0009911855449900031, + 0.023661678656935692, + -0.009262355044484138, + 0.05671994760632515, + 0.041631754487752914, + -0.0766618624329567, + -0.09495305269956589, + -0.024569882079958916, + 0.003600162221118808, + 0.02703527733683586, + 0.022999363020062447, + 0.08483412116765976, + -0.056523922830820084, + -0.021333446726202965, + 0.044308390468358994, + 0.021575747057795525, + -0.06252951920032501, + -0.016778714954853058, + -0.0091255446895957, + 0.06577102839946747, + 0.006311033386737108, + -0.006627645809203386, + 0.007981857284903526, + 0.11361899971961975, + 0.04032645374536514, + -0.050502218306064606, + 0.0780363604426384, + 0.07284678518772125, + 0.0207498949021101, + -0.09971209615468979, + -0.029534855857491493, + 0.030788959935307503, + -0.040427401661872864, + -0.009334957227110863, + 0.050997503101825714, + -0.001329887774772942, + 0.03997868672013283, + -0.01756124757230282, + 0.04018072411417961, + 0.049303460866212845, + -0.04383000731468201, + 0.07307561486959457, + 0.04412516951560974, + -0.054405272006988525, + 0.028846725821495056, + -0.006411552429199219, + -0.11444795876741409, + 0.02994559146463871, + -0.06636101007461548, + 0.08586312085390091, + -0.04150690883398056, + 0.04457322135567665, + -0.05816202610731125, + -0.08842190355062485, + -0.040746744722127914, + 0.012227322906255722, + -0.09202634543180466, + 0.011689499020576477, + -0.0622888021171093, + -0.07745145261287689, + -0.02982987090945244, + 1.426672927597788e-34, + 0.0516071654856205, + 0.08791664242744446, + -0.008227289654314518, + -0.0022477011661976576, + 0.03165699169039726, + 0.054849300533533096, + 0.024882039055228233, + 0.06566916406154633, + -0.03083108738064766, + 0.014370153658092022, + 0.05554664134979248, + -0.022366749122738838, + -0.03158515319228172, + -0.06380747258663177, + -0.001568881212733686, + 0.021232672035694122, + 0.027601102367043495, + -0.002301725558936596, + 0.04575645923614502, + 0.03375810757279396, + -0.02272964082658291, + 0.0038239348214119673, + -0.03572089970111847, + 0.0371561236679554, + -0.08483287692070007, + -0.029305972158908844, + -0.03201046586036682, + -0.006039808038622141, + -0.06130538508296013, + -0.006931588985025883, + 0.02575438842177391, + -0.03434935584664345, + 0.0028479215689003468, + -0.03960786759853363, + -0.003062995383515954, + 0.047525882720947266, + 0.05471933260560036, + 0.022636277601122856, + 0.003911190200597048, + -0.06816687434911728, + -0.03451342508196831, + 0.04466477781534195, + 0.03697776794433594, + -0.0045221042819321156, + 0.030609022825956345, + -0.018246468156576157, + -0.007566297426819801, + -0.04438019171357155, + 0.006119966972619295, + -0.0044378861784935, + 0.04804009944200516, + -0.03625306114554405, + 0.1031179428100586, + -0.004851270001381636, + -0.0834902748465538, + -0.07556507736444473, + 0.0001745687040966004, + 0.004975867457687855, + 0.03125522658228874, + 0.0497976578772068, + 0.025511838495731354, + 0.06950009614229202, + -0.0791802853345871, + -0.041269317269325256, + -0.022650567814707756, + 0.037838924676179886, + 0.031159978359937668, + 0.00955028273165226, + 0.05258191004395485, + 0.01215291302651167, + 0.0165507011115551, + -0.008535710163414478, + 0.05624650791287422, + 0.03136767819523811, + -0.002572507131844759, + -0.06460949033498764, + -0.057368550449609756, + -0.0034517014864832163, + 0.023881398141384125, + 0.02008197084069252, + 0.021872863173484802, + 0.05408155918121338, + 0.0009596637100912631, + -0.010444371029734612, + -0.0008781779906712472, + 0.05428212881088257, + 0.04620358347892761, + 0.01269200537353754, + 0.0018020301358774304, + 0.025652794167399406, + -0.03656996041536331, + 0.10898064821958542, + -0.003872591769322753, + -0.054003000259399414, + -0.018569903448224068, + -1.919106829006978e-08, + -0.00895641278475523, + -0.07998685538768768, + -0.025533204898238182, + -0.06935445219278336, + -0.03303725644946098, + -0.08520929515361786, + 0.03156028315424919, + -0.09580586105585098, + -0.0009452315862290561, + -0.015292936004698277, + -0.014870616607367992, + -0.07299517840147018, + -0.03985700383782387, + 0.009680995717644691, + 0.018092993646860123, + 0.051911622285842896, + -0.10135189443826675, + 0.13163666427135468, + -0.03788864240050316, + -0.12381070107221603, + 0.03879845142364502, + 0.07122655212879181, + 0.10804291814565659, + -0.020679954439401627, + 0.08656897395849228, + 0.005126269534230232, + -0.008221812546253204, + -0.0027279986534267664, + 0.07173937559127808, + 0.05503939837217331, + -0.025383196771144867, + 0.07539917528629303, + -0.09541364014148712, + -0.011080559343099594, + -0.07665657997131348, + 0.04214458912611008, + -0.11852802336215973, + -0.016782168298959732, + -0.0564567930996418, + 0.04335859417915344, + -0.013130906037986279, + -0.01815749704837799, + -0.05365382134914398, + -0.009641471318900585, + 0.029413022100925446, + -0.01861719787120819, + 0.07859839498996735, + 0.009563402272760868, + -0.060213666409254074, + -0.05293912813067436, + -0.06329324841499329, + 0.05953036993741989, + 0.030853409320116043, + 0.009688165038824081, + -0.027084048837423325, + -0.024880865588784218, + -0.01017288863658905, + 0.09883496910333633, + -0.020046064630150795, + -0.02713806740939617, + 0.11785639077425003, + 0.06142918020486832, + -0.00849177222698927, + 0.032328296452760696 + ], + "speaker-simple-low-bold||music,audio,volume,sound": [ + 0.09156487137079239, + -0.028767524287104607, + -0.05279112979769707, + -0.03995174542069435, + -0.0169769749045372, + -0.012901022098958492, + 0.023799806833267212, + -0.018483569845557213, + 0.011831400915980339, + 0.009352927096188068, + -0.028086939826607704, + 0.0265722144395113, + 0.025736378505825996, + -0.018101252615451813, + -0.00903777964413166, + 0.0186875369399786, + 0.07585176080465317, + 0.025431107729673386, + 0.021064845845103264, + 0.02048535831272602, + -0.03552718460559845, + 0.04977963864803314, + -0.061535757035017014, + 0.023559214547276497, + 0.04978753998875618, + -0.015593377873301506, + 0.055322643369436264, + 0.07529682666063309, + 0.01667863130569458, + -0.07745859771966934, + 0.027681639418005943, + 0.02182956226170063, + 0.1937868297100067, + -0.02175487019121647, + -0.05499345436692238, + -0.06819123774766922, + 0.007540183607488871, + -0.04380371794104576, + -0.05696510523557663, + 0.01675581745803356, + 0.00456371670588851, + -0.0025813644751906395, + 0.015051418915390968, + -0.000556104292627424, + -0.10934023559093475, + -0.09910587966442108, + -0.09192800521850586, + -0.01411360502243042, + -0.0038207226898521185, + -0.05740631744265556, + 0.03109276480972767, + -0.07127571851015091, + -0.08822940289974213, + 0.048199791461229324, + -0.02734605222940445, + -0.010567461140453815, + -0.03209593519568443, + 0.08939757943153381, + 0.12041225284337997, + -0.03370606526732445, + 0.04272434115409851, + -0.04389374703168869, + 0.030567243695259094, + 0.007563921622931957, + 0.025983236730098724, + -0.009446178562939167, + -0.002799983136355877, + 0.06040911376476288, + -0.03833971172571182, + 0.05387428030371666, + 0.0037962174974381924, + 0.048093877732753754, + 0.01607917621731758, + -0.020253269001841545, + 0.00500465976074338, + -0.03420614078640938, + 0.027557609602808952, + -0.021903416141867638, + -0.04760041832923889, + 0.050108931958675385, + -0.07014811784029007, + -0.0635492205619812, + -0.12165403366088867, + -0.06665445119142532, + 0.016589133068919182, + 0.005862609017640352, + -0.07847639173269272, + -0.038876961916685104, + -0.09945300221443176, + -0.050983887165784836, + -0.11311880499124527, + 0.020855657756328583, + -0.03457913175225258, + 0.005874852649867535, + 0.007624071557074785, + -0.002999846125021577, + 0.08300920575857162, + -0.07410591095685959, + -0.035712264478206635, + 0.10617876797914505, + 0.035010840743780136, + 0.04122567176818848, + 0.10022950172424316, + -0.06716179102659225, + -0.05758977308869362, + -0.0742935910820961, + -0.03519381955265999, + 0.07715969532728195, + -0.04430687800049782, + -0.0032246923074126244, + -0.014280473813414574, + -0.08275247365236282, + -0.022239353507757187, + -0.01058186125010252, + 0.04091885685920715, + -0.006020494271069765, + -0.033318016678094864, + 0.03830147907137871, + 0.05011000111699104, + 0.013879664242267609, + 0.0004896115278825164, + -0.04127701744437218, + -0.053079135715961456, + -0.001924215699546039, + 0.014206296764314175, + 0.0421353280544281, + -0.004395661409944296, + -2.0866955109224844e-33, + 0.11132478713989258, + 0.03268948942422867, + -0.06200137361884117, + 0.11706439405679703, + 0.0417759045958519, + -0.028323590755462646, + -0.06389966607093811, + -0.018520237877964973, + -0.02040008269250393, + 0.05272134393453598, + 0.08003446459770203, + 0.0751945972442627, + -0.02441953867673874, + -0.019162915647029877, + 0.026423323899507523, + -0.04131079465150833, + -0.03921084105968475, + 0.04934367910027504, + -0.0647236630320549, + -0.01641295664012432, + -0.06871586292982101, + 0.07621759176254272, + -0.01741994544863701, + 0.011262872256338596, + 0.050285447388887405, + -0.022299373522400856, + 0.07549070566892624, + -0.07765110582113266, + -0.04979167878627777, + 0.0008041923865675926, + 0.008829326368868351, + 0.0318957194685936, + 0.08296504616737366, + -0.018237926065921783, + 0.018895933404564857, + 0.021245019510388374, + -0.013985564932227135, + 0.06475456804037094, + 0.032788150012493134, + -0.09153863787651062, + -0.09747263789176941, + -0.025671517476439476, + -0.00016135115583892912, + 0.009619508869946003, + 0.02201714552938938, + 0.06452055275440216, + -0.02736169658601284, + -0.025687726214528084, + 0.050817862153053284, + 0.019455386325716972, + -0.05549889802932739, + -0.012382274493575096, + -0.02087995782494545, + 0.07045247405767441, + 0.013952662236988544, + -0.012164183892309666, + -0.004349093418568373, + 0.09940788149833679, + 0.02991136536002159, + -0.050676338374614716, + 0.08228014409542084, + 0.07512586563825607, + 0.02011214569211006, + -0.11953315883874893, + -0.015654221177101135, + 0.033402107656002045, + -0.04269832372665405, + -0.014797723852097988, + 0.04062088951468468, + -0.018602212890982628, + 0.02720809355378151, + -0.012382332235574722, + 0.04717603325843811, + 0.05333426967263222, + -0.03015609085559845, + 0.08327282965183258, + 0.05733299255371094, + -0.0687730610370636, + 0.0259524118155241, + -0.012927960604429245, + -0.09806313365697861, + 0.0375257208943367, + -0.0767773911356926, + 0.09783955663442612, + -0.03624488785862923, + 0.04615115746855736, + -0.03791504725813866, + -0.05551251024007797, + -0.042933858931064606, + -0.0013966168044134974, + -0.1034206673502922, + -0.005170607008039951, + -0.09600167721509933, + -0.07253794372081757, + -0.02110413834452629, + -7.875893080540316e-35, + 0.041349634528160095, + 0.0892140343785286, + -0.009814029559493065, + 0.008845237083733082, + 0.029878029599785805, + 0.05419494956731796, + 0.05398605018854141, + 0.05392942205071449, + -0.0070183854550123215, + 0.030169840902090073, + 0.05193699151277542, + -0.014982861466705799, + -0.02505451813340187, + -0.054755523800849915, + -0.006235857494175434, + 0.029433155432343483, + 0.013219577260315418, + -0.007007977459579706, + 0.06070520356297493, + 0.040461283177137375, + -0.03491919860243797, + 0.02612091600894928, + -0.04064028337597847, + 0.0417967215180397, + -0.07942232489585876, + -0.02390338107943535, + -0.030371474102139473, + 0.0020145538728684187, + -0.0716375857591629, + -0.018252549692988396, + 0.03686485067009926, + -0.02321396954357624, + 0.011131671257317066, + -0.04571517929434776, + -0.0047429874539375305, + 0.04529104381799698, + 0.04734119772911072, + 0.030462466180324554, + 0.002822357229888439, + -0.06677846610546112, + -0.026669630780816078, + 0.06021680682897568, + 0.031521085649728775, + -0.011491337791085243, + 0.0273120254278183, + -0.02951037883758545, + -0.00019907056412193924, + -0.04519805684685707, + 0.004647613503038883, + -0.01591423898935318, + 0.04934370890259743, + -0.038682516664266586, + 0.09614135324954987, + -0.003915179520845413, + -0.07405862957239151, + -0.07113732397556305, + 0.002445063553750515, + 0.012237395159900188, + 0.045383743941783905, + 0.06662256270647049, + 0.005305796395987272, + 0.062061041593551636, + -0.06917869299650192, + -0.04260942339897156, + -0.027156762778759003, + 0.03513146564364433, + 0.030739445239305496, + 0.0254138745367527, + 0.05142097547650337, + -0.002963269129395485, + 0.030758121982216835, + -0.0008053382625803351, + 0.06332504004240036, + 0.011516240425407887, + 0.01245860941708088, + -0.05734674632549286, + -0.06341718882322311, + -0.0009425387252122164, + 0.016431540250778198, + 0.023599838837981224, + 0.027237875387072563, + 0.04706728085875511, + 0.0018953850958496332, + -0.020126823335886, + 0.004420037381350994, + 0.0525435134768486, + 0.04677123203873634, + 0.004706980660557747, + -0.01255593542009592, + 0.03706623613834381, + -0.048667360097169876, + 0.1103903204202652, + 0.025247881188988686, + -0.04424222931265831, + -0.024811608716845512, + -1.943201155540919e-08, + -0.011038615368306637, + -0.08126826584339142, + -0.012001028284430504, + -0.06410049647092819, + -0.03547602519392967, + -0.09002169221639633, + 0.02014779858291149, + -0.11378005892038345, + -0.004514115862548351, + -0.0011890730820596218, + -0.011805734597146511, + -0.06694556772708893, + -0.052796024829149246, + 0.013551932759582996, + 0.010351292788982391, + 0.06907587498426437, + -0.10140980035066605, + 0.12028662860393524, + -0.036624372005462646, + -0.12609994411468506, + 0.04067312553524971, + 0.0660858228802681, + 0.0926794782280922, + -0.022746171802282333, + 0.09459569305181503, + -0.008797538466751575, + 0.012467410415410995, + -0.015947934240102768, + 0.07647892832756042, + 0.04252054914832115, + -0.016300275921821594, + 0.0872698649764061, + -0.08145806193351746, + -0.015891458839178085, + -0.08967599272727966, + 0.046148210763931274, + -0.11115492135286331, + -0.011981410905718803, + -0.0748901292681694, + 0.047653473913669586, + -0.020733997225761414, + -0.019566455855965614, + -0.05807145684957504, + -0.021454134956002235, + 0.019064785912632942, + -0.01776975579559803, + 0.0756533294916153, + 0.0039092786610126495, + -0.056790173053741455, + -0.05167839676141739, + -0.049943383783102036, + 0.05864746496081352, + 0.020494092255830765, + 0.0163960549980402, + -0.036313496530056, + -0.025136904790997505, + -0.0008298138272948563, + 0.09403162449598312, + -0.02288753166794777, + -0.03376578912138939, + 0.08713746815919876, + 0.0648171603679657, + 0.003414359875023365, + 0.01815580204129219 + ], + "speaker-simple-none-bold||music,audio,muted,volume,sound": [ + 0.06774130463600159, + -0.032707180827856064, + -0.06190533936023712, + -0.043623898178339005, + 0.012196117080748081, + -0.005308999214321375, + 0.01305015105754137, + -0.06284353137016296, + 0.010587128810584545, + -0.004813667852431536, + 0.00847429595887661, + 0.007559357210993767, + -0.0006888963398523629, + -0.020231474190950394, + -0.022644786164164543, + -0.004945020191371441, + 0.04564778134226799, + -0.007857599295675755, + 0.04143577069044113, + -0.002130013657733798, + -0.031050508841872215, + 0.05931379646062851, + -0.0675816461443901, + 0.031223658472299576, + 0.06330041587352753, + 0.002876601880416274, + 0.04020225256681442, + 0.07754438370466232, + 0.01384560577571392, + -0.06843817979097366, + 0.018292974680662155, + 0.022372853010892868, + 0.1905720978975296, + -0.02111230418086052, + -0.022393792867660522, + -0.06957284361124039, + 0.005175359081476927, + -0.032240208238363266, + -0.06258311122655869, + -0.01720482110977173, + -0.03464414179325104, + -0.02919709123671055, + -0.00044640290434472263, + -0.03837994113564491, + -0.10770390927791595, + -0.09057678282260895, + -0.10634138435125351, + -0.03369249776005745, + -0.005404723342508078, + -0.06272117048501968, + 0.03723415359854698, + -0.07256508618593216, + -0.0817883163690567, + 0.041072770953178406, + -0.006315887905657291, + -0.023409660905599594, + -0.026236440986394882, + 0.0975777804851532, + 0.09595572203397751, + -0.026762105524539948, + 0.013702723197638988, + -0.051291339099407196, + 0.03717581927776337, + 0.025283634662628174, + 0.02559448964893818, + 0.004663211293518543, + -0.019021371379494667, + 0.052673615515232086, + -0.02947871759533882, + 0.03855046629905701, + 0.010199280455708504, + 0.04551606625318527, + 0.018783772364258766, + -0.014089123345911503, + 0.012777344323694706, + -0.04691157117486, + 0.03243982419371605, + -0.02696404419839382, + -0.046171512454748154, + 0.0703284814953804, + -0.10064900666475296, + -0.04730536788702011, + -0.10207988321781158, + -0.02648201584815979, + 0.03339776024222374, + 0.024803275242447853, + -0.07750876992940903, + -0.034481246024370193, + -0.09384509176015854, + -0.06234089285135269, + -0.14260564744472504, + 0.023929491639137268, + -0.02558538131415844, + 0.01735289953649044, + -0.000405445956857875, + 0.01814141683280468, + 0.0540989451110363, + -0.05457892268896103, + -0.0528695322573185, + 0.10203671455383301, + 0.04757602512836456, + 0.04290129244327545, + 0.1092565581202507, + -0.07522232830524445, + -0.055726680904626846, + -0.07302023470401764, + -0.044698286801576614, + 0.0533454604446888, + -0.03260450065135956, + -0.018175233155488968, + -0.027176233008503914, + -0.07857853174209595, + -0.004465753678232431, + 0.016237478703260422, + 0.028701448813080788, + 0.017689811065793037, + -0.028024140745401382, + 0.01998094655573368, + 0.06641573458909988, + 0.031437378376722336, + 0.0038740336894989014, + -0.039305076003074646, + -0.054385650902986526, + -0.022766903042793274, + -0.014705266803503036, + 0.04971654713153839, + 0.0210525281727314, + -2.548473221950658e-33, + 0.10216052085161209, + 0.01688811369240284, + -0.06073031201958656, + 0.10463064163923264, + 0.04559831693768501, + -0.029508555307984352, + -0.040061987936496735, + -0.025936398655176163, + -0.04090720787644386, + 0.029842248186469078, + 0.1040312722325325, + 0.061785731464624405, + -0.004747426602989435, + -0.023241538554430008, + 0.023586587980389595, + -0.02897072583436966, + -0.0019286059541627765, + 0.049408674240112305, + -0.05281566083431244, + -0.03912508860230446, + -0.02313043549656868, + 0.08664502203464508, + -0.011875426396727562, + 0.03020475246012211, + 0.06137410178780556, + 0.002749107079580426, + 0.06121573597192764, + -0.07484135031700134, + -0.028566820546984673, + -0.00043741127592511475, + 0.004315108526498079, + 0.0628652274608612, + 0.07700087130069733, + -0.019261615350842476, + 0.03226418048143387, + 0.01137528009712696, + 0.007038526702672243, + 0.0704674944281578, + 0.02160864695906639, + -0.1152486652135849, + -0.0930163785815239, + -0.05961973965167999, + -0.02020088955760002, + -0.010987170040607452, + 0.03109104372560978, + 0.05009328946471214, + -0.027414659038186073, + -0.008316042833030224, + 0.05372856929898262, + 0.03849146142601967, + -0.052286457270383835, + 0.008038386702537537, + -0.003176475176587701, + 0.05466518551111221, + 0.006093096453696489, + -0.003508295863866806, + -0.0005068820901215076, + 0.11301086843013763, + 0.01603378728032112, + -0.08073479682207108, + 0.09923886507749557, + 0.07154791802167892, + 0.02631928026676178, + -0.13199207186698914, + -0.013121344149112701, + 0.057270120829343796, + -0.05909770727157593, + -0.014101728796958923, + 0.04855824634432793, + -0.041165873408317566, + 0.003874348709359765, + 0.004280843771994114, + 0.0209030844271183, + 0.05636875331401825, + -0.0474398136138916, + 0.06084611266851425, + 0.03663012012839317, + -0.06849230825901031, + 0.0077476054430007935, + -0.0023608712945133448, + -0.08452893048524857, + 0.04825671762228012, + -0.08355940878391266, + 0.10433916747570038, + -0.0377691425383091, + 0.03478509560227394, + -0.026444075629115105, + -0.04375525936484337, + -0.022996101528406143, + -0.014976940117776394, + -0.07782312482595444, + 0.007763412781059742, + -0.10742054134607315, + -0.08638399839401245, + -0.022711165249347687, + -1.5840064179706202e-34, + 0.03242206200957298, + 0.07810419052839279, + -0.02789323963224888, + -0.0017967153107747436, + 0.012402270920574665, + 0.038716696202754974, + 0.03654764965176582, + 0.054039936512708664, + 0.013066529296338558, + 0.0006041002343408763, + 0.06953568011522293, + -0.024870658293366432, + -0.05208880454301834, + -0.060825373977422714, + -0.005634163040667772, + 0.050851479172706604, + 0.0043264515697956085, + 0.01343647949397564, + 0.03608601540327072, + 0.05820181593298912, + -0.02690698951482773, + 0.023603910580277443, + -0.038308385759592056, + 0.054620906710624695, + -0.10057897865772247, + -0.02206474356353283, + -0.0024814221542328596, + 0.0030031988862901926, + -0.038584042340517044, + -0.012623240239918232, + 0.05642702057957649, + 0.0038497745990753174, + -0.02186325378715992, + -0.04950379952788353, + 0.035435523837804794, + 0.03764554485678673, + 0.05193508788943291, + 0.040722981095314026, + 0.0006054954137653112, + -0.07620664685964584, + -0.01370378490537405, + 0.08341272920370102, + 0.02301752008497715, + 0.003034658031538129, + 0.024754593148827553, + -0.027483481913805008, + 0.017782889306545258, + -0.06967531889677048, + -7.47783706174232e-05, + -0.020841363817453384, + 0.06872262060642242, + -0.050506070256233215, + 0.08867747336626053, + -0.02321866899728775, + -0.044937774538993835, + -0.05392567813396454, + 0.013782603666186333, + 0.009860629215836525, + 0.04613059386610985, + 0.05384722724556923, + 0.027172936126589775, + 0.05522080138325691, + -0.09091342240571976, + -0.042275477200746536, + -0.03962090238928795, + 0.0440644770860672, + 0.03680496662855148, + 0.03791575878858566, + 0.06312110275030136, + -0.015314735472202301, + 0.026763102039694786, + 0.003972203936427832, + 0.06026558578014374, + -0.01272286381572485, + 0.022158008068799973, + -0.023835549131035805, + -0.0938350111246109, + -0.014741591177880764, + -0.02418183535337448, + 0.027169523760676384, + 0.05743364244699478, + 0.035749927163124084, + 0.005515510682016611, + -0.02818243019282818, + 0.027303025126457214, + 0.026171419769525528, + 0.052712131291627884, + 0.024051504209637642, + -0.00917268916964531, + 0.019932756200432777, + -0.03758735954761505, + 0.10638315975666046, + 0.014966986142098904, + -0.005912867374718189, + -0.04216193035244942, + -2.064011361824214e-08, + 0.012231078930199146, + -0.08111303299665451, + -0.009893148206174374, + -0.07187873125076294, + -0.0492229163646698, + -0.08551552891731262, + 0.04032447561621666, + -0.1475650519132614, + -0.02286899834871292, + -0.0018208130495622754, + -0.013159194961190224, + -0.0826658234000206, + -0.056151144206523895, + 0.03269219025969505, + 0.02538420259952545, + 0.08017029613256454, + -0.10845494270324707, + 0.12054386734962463, + -0.026255765929818153, + -0.10746283084154129, + 0.020133867859840393, + 0.05561978742480278, + 0.06193273141980171, + -0.008116749115288258, + 0.08794652670621872, + -0.00026563051505945623, + 0.028067538514733315, + -0.026245521381497383, + 0.08652858436107635, + 0.031531140208244324, + -0.014193141832947731, + 0.08634638041257858, + -0.07413465529680252, + -0.012289500795304775, + -0.08589042723178864, + 0.05975497141480446, + -0.09826334565877914, + 0.00249291374348104, + -0.06553670763969421, + 0.03910517692565918, + -0.009638003073632717, + -0.01751423254609108, + -0.055590733885765076, + -0.022945629432797432, + 0.020909380167722702, + -0.00771668553352356, + 0.06783182173967361, + -0.013089313171803951, + -0.05883766710758209, + -0.03677632287144661, + -0.051607582718133926, + 0.06102612987160683, + 0.008114797063171864, + 0.019708584994077682, + -0.016519932076334953, + -0.009223184548318386, + 0.022310148924589157, + 0.07705336809158325, + -0.0226733535528183, + -0.038018275052309036, + 0.074282206594944, + 0.05627591907978058, + -0.0018798976670950651, + 0.016997743397951126 + ], + "speaker-simple-slash-bold||music,audio,muted,volume,sound,disabled": [ + 0.059876471757888794, + -0.03696990758180618, + -0.029964430257678032, + -0.020881514996290207, + 0.008882224559783936, + -0.000712630630005151, + -0.02509576454758644, + -0.06892027705907822, + 0.004226382356137037, + 0.00613764114677906, + 0.0284248199313879, + 0.03455127775669098, + -0.013250020332634449, + 0.02501530386507511, + -0.05137678235769272, + 0.007218956481665373, + 0.07592187076807022, + 0.021404597908258438, + 0.015969738364219666, + 0.0018745909910649061, + -0.050708137452602386, + 0.08432798832654953, + -0.06463070213794708, + 0.020921768620610237, + 0.08220623433589935, + -0.026947522535920143, + 0.028108468279242516, + 0.08927347511053085, + -0.0017938422970473766, + -0.06989148259162903, + 0.03500029444694519, + -0.007706557400524616, + 0.20240828394889832, + -0.026041055098176003, + -0.029176676645874977, + -0.06351776421070099, + 0.008544131182134151, + -0.0557168684899807, + -0.025529146194458008, + -0.03386475518345833, + -0.04718076437711716, + -0.04734243452548981, + -0.009002870880067348, + -0.08678990602493286, + -0.11500047892332077, + -0.09148657321929932, + -0.07966230064630508, + -0.057512540370225906, + -0.0026443053502589464, + -0.03805853798985481, + 0.047405701130628586, + -0.04683681204915047, + -0.0500464141368866, + 0.03130621090531349, + 0.04158832132816315, + -0.018650129437446594, + -0.025896361097693443, + 0.13230779767036438, + 0.11846727877855301, + -0.03381180390715599, + -0.0011228806106373668, + -0.046777769923210144, + 0.03489857539534569, + -0.0017201858572661877, + -0.006770462729036808, + -0.013086451217532158, + -0.009348339401185513, + 0.05200987681746483, + -0.0510857030749321, + 0.0442379005253315, + 0.015161831863224506, + 0.05176537111401558, + 0.015933236107230186, + -0.02366841584444046, + 0.017046160995960236, + -0.02544017881155014, + 0.033604301512241364, + -0.020498398691415787, + -0.03691989555954933, + 0.04313390329480171, + -0.058692533522844315, + -0.05117658153176308, + -0.07664806395769119, + -0.01622682623565197, + 0.03511934354901314, + 0.026437727734446526, + -0.08512157201766968, + -0.06062348932027817, + -0.08103521913290024, + -0.07310948520898819, + -0.10249006748199463, + -0.01586526446044445, + 0.022014692425727844, + 0.002002605702728033, + 0.0039048094768077135, + -0.023337792605161667, + 0.03995826095342636, + -0.04649364948272705, + -0.06881872564554214, + 0.08430308848619461, + 0.06194957345724106, + 0.039081502705812454, + 0.04263733699917793, + -0.05976857244968414, + -0.024785399436950684, + -0.06223846971988678, + -0.023229308426380157, + 0.06460392475128174, + -0.062233053147792816, + -0.03889457508921623, + -0.023929927498102188, + -0.047769006341695786, + -0.006472650915384293, + 0.02445554919540882, + 0.005860709585249424, + 0.00956882443279028, + -0.043106503784656525, + 0.0060325320810079575, + 0.07477438449859619, + 0.03941071033477783, + -0.0042589507065713406, + -0.053270336240530014, + -0.05801926925778389, + -0.05455288290977478, + 0.010469745844602585, + 0.039031289517879486, + 0.024056119844317436, + -3.306175574655596e-33, + 0.11740522086620331, + 0.018488505855202675, + -0.0521998330950737, + 0.07081065326929092, + 0.04810856282711029, + -0.050833940505981445, + -0.03757075220346451, + 0.005523540545254946, + -0.04584532976150513, + -0.005903633777052164, + 0.1049174815416336, + 0.043389275670051575, + 0.013624902814626694, + -0.04958244413137436, + 0.022604355588555336, + -0.023241421207785606, + 0.024613967165350914, + 0.016770046204328537, + -0.07221364974975586, + -0.03798896074295044, + 0.003996251616626978, + 0.10770190507173538, + -0.015941955149173737, + 0.06371652334928513, + 0.046407632529735565, + 0.01905800588428974, + 0.047933854162693024, + -0.04230021685361862, + 0.008890528231859207, + 0.02189547009766102, + -0.007707289885729551, + 0.05730156973004341, + 0.06668096780776978, + 0.0010048908879980445, + 0.010259275324642658, + 0.06605188548564911, + 0.024578716605901718, + 0.08449211716651917, + -0.0006019753636792302, + -0.08969606459140778, + -0.09151722490787506, + -0.06622332334518433, + -0.06154376640915871, + 0.006728915497660637, + 0.011404246091842651, + 0.02853977680206299, + -0.022553978487849236, + -0.04462771117687225, + 0.05188130959868431, + 0.03932727500796318, + -0.05910153687000275, + 0.022927841171622276, + 0.04115026071667671, + 0.05752880871295929, + 0.018782436847686768, + -0.03130247816443443, + -0.03216167539358139, + 0.08465316146612167, + 0.02127331681549549, + -0.06392089277505875, + 0.10200078785419464, + 0.04921453818678856, + 0.030182231217622757, + -0.11840925365686417, + -0.03584574535489082, + 0.047457583248615265, + -0.055860478430986404, + 0.02647443488240242, + 0.023911770433187485, + -0.03973542898893356, + -0.008762327954173088, + -0.02947414666414261, + 0.04167883098125458, + 0.055730003863573074, + -0.08614399284124374, + 0.04197066277265549, + 0.011332985945045948, + -0.0715789794921875, + 0.008832846768200397, + -0.018885541707277298, + -0.11481315642595291, + 0.028347019106149673, + -0.05641229823231697, + 0.09432228654623032, + 0.00782689731568098, + 0.027164125815033913, + -0.025487959384918213, + -0.031644996255636215, + -0.019022686406970024, + -0.026091422885656357, + -0.05377894267439842, + 0.007109616417437792, + -0.10444580018520355, + -0.07853542268276215, + -0.016045553609728813, + 8.121513428705224e-34, + 0.04070300981402397, + 0.09939026832580566, + -0.03321640565991402, + 0.005652258172631264, + -0.0029191416688263416, + 0.0057762013748288155, + 0.0070341117680072784, + 0.051218777894973755, + -0.024814635515213013, + -0.014620254747569561, + 0.06397727876901627, + -0.015490814112126827, + -0.03008642978966236, + -0.07893336564302444, + 0.0028643717523664236, + 0.012253318913280964, + -0.025155706331133842, + -0.013174276798963547, + 0.0220194011926651, + 0.051256146281957626, + -0.03180045634508133, + 0.027473419904708862, + -0.01146356575191021, + 0.06185569614171982, + -0.12081317603588104, + -0.00890993420034647, + -0.002012896118685603, + 0.010705973953008652, + -0.01960396207869053, + 0.0012258971109986305, + 0.06033376604318619, + 0.02172006480395794, + -0.0554911307990551, + -0.05446180701255798, + 0.028891274705529213, + 0.04754433035850525, + -0.018036169931292534, + 0.07163949310779572, + -0.01762709766626358, + -0.0906381905078888, + -0.015488078817725182, + 0.07135152071714401, + 0.0390595868229866, + 0.04542936012148857, + 0.06122080981731415, + -0.01960129477083683, + 0.01984904706478119, + -0.09411865472793579, + 0.01920665241777897, + -0.013412482105195522, + 0.06721087545156479, + -0.045131616294384, + 0.11181339621543884, + -0.008697325363755226, + -0.04882126301527023, + -0.06449776887893677, + -0.007385761011391878, + 0.024995476007461548, + -0.011496772058308125, + 0.08893933892250061, + 0.03796924278140068, + 0.05440378189086914, + -0.10211563855409622, + -0.03492702171206474, + -0.01238792110234499, + 0.047951895743608475, + 0.032419830560684204, + 0.052005428820848465, + 0.09248817712068558, + -0.0025781590957194567, + 0.01307971403002739, + 0.039095621556043625, + 0.08029542118310928, + -0.00036726356483995914, + 0.04515865445137024, + -0.04560068994760513, + -0.12661215662956238, + -0.011118888854980469, + -0.0031595337204635143, + 0.061803754419088364, + 0.037952665239572525, + 0.03102901391685009, + 0.020546922460198402, + -0.027477875351905823, + 0.014699785970151424, + 0.010925126262009144, + 0.0016221778932958841, + 0.07075997442007065, + -0.0036237621679902077, + -0.014694109559059143, + -0.06317389011383057, + 0.07448481768369675, + -0.014719394966959953, + 0.01386098563671112, + -0.06326992809772491, + -2.1234786373725e-08, + 0.012885993346571922, + -0.07174891978502274, + -0.014167717657983303, + -0.057645898312330246, + -0.006306316237896681, + -0.07138297706842422, + 0.026806840673089027, + -0.119983971118927, + -0.012686285190284252, + -0.004810130689293146, + -0.023561794310808182, + -0.06541954725980759, + -0.026985714212059975, + 0.029185084626078606, + 0.025067491456866264, + 0.07460653781890869, + -0.11469659954309464, + 0.13743869960308075, + -0.030855698511004448, + -0.07570293545722961, + 0.0150983314961195, + 0.04631407558917999, + 0.06362149864435196, + 0.017520543187856674, + 0.1097826138138771, + -0.02292567864060402, + 0.02069750614464283, + -0.036388035863637924, + 0.08862581104040146, + 0.014456706121563911, + -0.03473714739084244, + 0.07139728218317032, + -0.07645288109779358, + -0.002074361313134432, + -0.08151029795408249, + 0.05008932575583458, + -0.09024521708488464, + 0.028869204223155975, + -0.047053784132003784, + 0.00774893956258893, + 2.0538295757432934e-06, + -0.0416693352162838, + -0.024992501363158226, + -0.013993659988045692, + 0.019773239269852638, + 0.02008739672601223, + 0.07290832698345184, + 0.04200412333011627, + -0.05714484676718712, + -0.026685422286391258, + -0.042990922927856445, + 0.07562415301799774, + 0.015077061019837856, + 0.01917976886034012, + -0.005562823265790939, + 0.0009934102417901158, + 0.023410256952047348, + 0.05260356143116951, + -0.030459661036729813, + -0.049619968980550766, + 0.09867627173662186, + 0.014454326592385769, + -0.0031318706460297108, + 0.006091021001338959 + ], + "speaker-simple-x-bold||music,audio,muted,volume,sound,disabled,errors": [ + 0.07387811690568924, + -0.03573492169380188, + -0.03803716599941254, + -0.04113689437508583, + 0.026119813323020935, + -0.002415137365460396, + 0.015640778467059135, + -0.05735078081488609, + -0.04080257937312126, + -0.0016214362112805247, + 0.032156798988580704, + 0.024211663752794266, + 0.01151703204959631, + 0.008958523161709309, + -0.02660752646625042, + 0.013978971168398857, + 0.06155235692858696, + -0.004071718081831932, + 0.02563653513789177, + 0.016593746840953827, + -0.03591407835483551, + 0.05359942838549614, + -0.07462178170681, + 0.04726920649409294, + 0.0617552325129509, + -0.005110871512442827, + 0.012604416348040104, + 0.06617145985364914, + 0.0015000718412920833, + -0.06413716822862625, + 0.011009929701685905, + 0.01714588887989521, + 0.2022954523563385, + -0.05210600048303604, + -0.0208189208060503, + -0.04593215137720108, + 0.004415198229253292, + -0.06521178781986237, + -0.06265100091695786, + -0.029858645051717758, + -0.040254510939121246, + -0.036876704543828964, + 0.0031813201494514942, + -0.03982457518577576, + -0.12409723550081253, + -0.11754991114139557, + -0.08841954916715622, + -0.04340216889977455, + 0.011395944282412529, + -0.036372095346450806, + 0.06056133285164833, + -0.04563692957162857, + -0.031236642971634865, + 0.029629766941070557, + 0.02541177161037922, + -0.007007921580225229, + -0.04098858684301376, + 0.10741826891899109, + 0.10360726714134216, + -0.032433316111564636, + 0.02636825107038021, + -0.03080185502767563, + 0.036400921642780304, + 0.022699974477291107, + -0.0044279880821704865, + -0.009002710692584515, + -0.007802358362823725, + 0.03729274496436119, + -0.04286053031682968, + 0.06147211045026779, + -0.008141497150063515, + 0.06814749538898468, + 0.010418533347547054, + -0.0004079162026755512, + 0.01185931172221899, + -0.01804107427597046, + 0.04691628739237785, + -0.04307005554437637, + -0.06154080107808113, + 0.03093436174094677, + -0.0795268639922142, + -0.05253079906105995, + -0.08913715928792953, + -0.03525245189666748, + 0.05155520513653755, + 0.033254921436309814, + -0.09558668732643127, + -0.040902119129896164, + -0.09124978631734848, + -0.045478057116270065, + -0.11339305341243744, + 0.006404779385775328, + 0.007630498614162207, + 0.015374130569398403, + 0.023810259997844696, + -0.022140713408589363, + 0.07743897289037704, + -0.05961513891816139, + -0.0521189346909523, + 0.09215579926967621, + 0.03216453641653061, + 0.03629855811595917, + 0.09078903496265411, + -0.043649688363075256, + -0.04368656128644943, + -0.09351985156536102, + -0.05307314544916153, + 0.06139957159757614, + -0.05477703735232353, + -0.03430364653468132, + -0.04021681472659111, + -0.06429144740104675, + 0.014173168689012527, + 0.020288193598389626, + 0.04381515830755234, + 0.01680949702858925, + -0.040934525430202484, + 0.024640535935759544, + 0.05340452864766121, + 0.004359861835837364, + -0.002132277237251401, + -0.05763652175664902, + -0.04374614730477333, + -0.031159156933426857, + 0.01330691110342741, + 0.039769791066646576, + 0.009152358397841454, + -2.2074577190023043e-33, + 0.09862278401851654, + 0.024401692673563957, + -0.07295042276382446, + 0.10331487655639648, + 0.04046601057052612, + -0.04690460488200188, + -0.032608259469270706, + -0.016029447317123413, + -0.04069426655769348, + 0.021916957572102547, + 0.11195258796215057, + 0.06062011420726776, + -0.008197164162993431, + -0.04524310678243637, + 0.034816596657037735, + -0.02956477366387844, + 0.01923421025276184, + 0.038046129047870636, + -0.08447583019733429, + -0.018559018149971962, + 0.009347758255898952, + 0.05857750028371811, + -0.014442672953009605, + 0.04060756787657738, + 0.041877564042806625, + 0.03487679734826088, + 0.04410460963845253, + -0.046452198177576065, + -0.0021287212148308754, + -0.0001637941604712978, + 0.0036899959668517113, + 0.040595609694719315, + 0.06939409673213959, + -0.010631921701133251, + 0.019054414704442024, + 0.026290256530046463, + 0.01917858235538006, + 0.06493101269006729, + -0.0051466249860823154, + -0.1144450306892395, + -0.10421887040138245, + -0.044063083827495575, + -0.024058006703853607, + -0.005466373171657324, + 0.03894694894552231, + 0.04016684368252754, + -0.04367668926715851, + -0.014148184098303318, + 0.07411832362413406, + 0.024293631315231323, + -0.0817263200879097, + 0.02498444728553295, + -0.015460852533578873, + 0.05902595818042755, + 0.030237693339586258, + -0.01114050392061472, + -0.014792374335229397, + 0.12534601986408234, + 0.0180654413998127, + -0.059558793902397156, + 0.13391321897506714, + 0.030965158715844154, + 0.01527564786374569, + -0.14098003506660461, + 0.0023614137899130583, + 0.045876242220401764, + -0.05501220002770424, + -0.02280973456799984, + 0.004761097952723503, + -0.025815410539507866, + -0.022528409957885742, + -0.03807101398706436, + 0.05402654781937599, + 0.06552587449550629, + -0.026751289144158363, + 0.036171648651361465, + 0.018173418939113617, + -0.0662790834903717, + 0.0005225620116107166, + -0.023530932143330574, + -0.09027097374200821, + 0.03731256723403931, + -0.08110442757606506, + 0.10440734028816223, + -0.026792626827955246, + 0.04989231005311012, + -0.02158210799098015, + 0.0016669416800141335, + -0.03517149016261101, + 0.021319245919585228, + -0.0693497583270073, + 0.027888551354408264, + -0.09492344409227371, + -0.09154628217220306, + -0.05921778827905655, + -8.243264337736681e-35, + 0.011265717446804047, + 0.08221079409122467, + -0.012803883291780949, + 0.010964118875563145, + 0.008269181475043297, + 0.020026249811053276, + 0.015331987291574478, + 0.06914929300546646, + 0.0023731007240712643, + -0.02138257771730423, + 0.051150187849998474, + -0.03027959354221821, + -0.05929039791226387, + -0.06420616060495377, + -0.03303087502717972, + 0.029303036630153656, + -0.004416337236762047, + -0.020517021417617798, + 0.021639013662934303, + 0.05258631706237793, + -0.004539607558399439, + 0.038962364196777344, + -0.017819132655858994, + 0.03973156586289406, + -0.11954308301210403, + -0.020276594907045364, + 0.00887589156627655, + 0.012605858035385609, + -0.04033226519823074, + -0.03705848753452301, + 0.051718227565288544, + 0.020644428208470345, + -0.03641936928033829, + -0.0051559871062636375, + 0.05628012493252754, + 0.013140950351953506, + 0.025219207629561424, + 0.053662680089473724, + -0.03355822712182999, + -0.07100628316402435, + -0.0015621342463418841, + 0.07224526256322861, + 0.026374004781246185, + 0.0007274028612300754, + 0.05164097994565964, + -0.016231464222073555, + -0.002890980336815119, + -0.08643587678670883, + 0.002847445895895362, + -0.0009044035105034709, + 0.06290712207555771, + -0.07997970283031464, + 0.10095516592264175, + -0.01635238341987133, + -0.05315839871764183, + -0.05181198567152023, + 0.019082840532064438, + 0.030743896961212158, + 0.03914392739534378, + 0.062873974442482, + 0.008506341837346554, + 0.05063273385167122, + -0.08600796014070511, + -0.05794405937194824, + -0.030815431848168373, + 0.03729135915637016, + 0.036837317049503326, + 0.048118848353624344, + 0.08744677156209946, + -0.0035530400928109884, + -0.0006717807264067233, + -0.008444709703326225, + 0.06893391162157059, + -0.007246196269989014, + 0.01198872271925211, + -0.03887007758021355, + -0.12710557878017426, + -0.017472945153713226, + -0.00025530156563036144, + 0.02291131392121315, + 0.04631061479449272, + 0.03616810217499733, + 0.050239305943250656, + -0.010019427165389061, + 0.027755452319979668, + 0.04639674723148346, + 0.04642302542924881, + 0.05562970042228699, + 0.0072433240711688995, + -0.011637682095170021, + -0.04908210411667824, + 0.09316645562648773, + 0.022960545495152473, + 0.006185960024595261, + -0.03491279110312462, + -2.2777086883252196e-08, + -0.0002943928411696106, + -0.08051225543022156, + -0.03350468724966049, + -0.07761051505804062, + -0.013266419060528278, + -0.09159667789936066, + 0.01924346573650837, + -0.1409296691417694, + -0.033144403249025345, + -0.009290803223848343, + -0.023476116359233856, + -0.0718144029378891, + -0.0417773574590683, + 0.026929005980491638, + -0.0034865334164351225, + 0.04474090784788132, + -0.11277877539396286, + 0.1590556800365448, + -0.02856672741472721, + -0.10838598757982254, + 0.017556002363562584, + 0.06373218446969986, + 0.059788208454847336, + -0.01810535602271557, + 0.09170795977115631, + -0.029460879042744637, + 0.036921314895153046, + -0.006983328144997358, + 0.09538134932518005, + 0.008363588713109493, + -0.03453723341226578, + 0.07835221290588379, + -0.040974266827106476, + -0.013187321834266186, + -0.05101303383708, + 0.05156569182872772, + -0.08880040794610977, + 0.016207896173000336, + -0.0382608100771904, + 0.017568038776516914, + -0.007601903285831213, + 0.007609620690345764, + -0.022106405347585678, + -0.019336985424160957, + 0.037066750228405, + 0.012853128835558891, + 0.049532752484083176, + 0.029387671500444412, + -0.03156192600727081, + -0.04089811071753502, + -0.04517456889152527, + 0.06844368577003479, + 0.0060220928862690926, + -0.00025655905483290553, + -0.026252353563904762, + 0.0022483328357338905, + 0.024428680539131165, + 0.05748490244150162, + -0.0033612470142543316, + -0.0436306968331337, + 0.06770222634077072, + 0.04213476926088333, + 0.008935160003602505, + -0.0077382661402225494 + ], + "speaker-slash-bold||*updated*,music,audio,muted,volume,sound,disabled": [ + 0.03262024000287056, + -0.05003303289413452, + -0.032583218067884445, + -0.01598813384771347, + 0.010876842774450779, + -0.02139171026647091, + -0.019189275801181793, + -0.1019851416349411, + 0.024490032345056534, + 0.00592489168047905, + 0.035534415394067764, + 0.04058851674199104, + -0.02655075490474701, + 0.0030842667911201715, + -0.054477304220199585, + 0.03509117662906647, + 0.08000855147838593, + 0.040673766285181046, + -0.0002678188029676676, + 0.0022392633836716413, + -0.07074593752622604, + 0.11906769126653671, + -0.04145241528749466, + 0.04643406718969345, + 0.09324341267347336, + -0.021047376096248627, + 0.006334451027214527, + 0.03629516437649727, + -0.026009446009993553, + -0.06565782427787781, + 0.02867988497018814, + 0.0010641376720741391, + 0.19900649785995483, + -0.035929881036281586, + -0.01327644381672144, + -0.05764642730355263, + 0.0013370983069762588, + -0.05043355002999306, + -0.0030667860992252827, + -0.013422089628875256, + -0.01152887288480997, + -0.05033376067876816, + -0.012321419082581997, + -0.06191841885447502, + -0.1133066862821579, + -0.06384044140577316, + -0.08843491226434708, + -0.059504829347133636, + -0.017601989209651947, + -0.02035481482744217, + 0.036917731165885925, + -0.06801427155733109, + -0.041083987802267075, + 0.012318220920860767, + 0.023395661264657974, + -0.025040874257683754, + 0.008934931829571724, + 0.13291852176189423, + 0.11974209547042847, + -0.030772719532251358, + 0.019679125398397446, + -0.02372102625668049, + 0.04996251314878464, + 0.0013652408961206675, + -0.008268434554338455, + -0.013902469538152218, + 0.0072632888332009315, + 0.01180698536336422, + -0.046707458794116974, + 0.04916125163435936, + 0.02560698613524437, + 0.07779061049222946, + 0.033364295959472656, + -0.03983687981963158, + 0.008687470108270645, + -0.01954282447695732, + 0.05378493294119835, + -0.028783172369003296, + -0.0036198797170072794, + 0.001404128153808415, + -0.013100081123411655, + -0.06460775434970856, + -0.07352347671985626, + -0.054873738437891006, + 0.0515686497092247, + 0.020227883011102676, + -0.08680374175310135, + -0.08142142742872238, + -0.10294459015130997, + -0.07751676440238953, + -0.09554200619459152, + -0.06341808289289474, + 0.020903097465634346, + -0.010806214064359665, + -0.03969838097691536, + 0.004082206636667252, + 0.013875536620616913, + -0.036803461611270905, + -0.05517939478158951, + 0.09290669858455658, + 0.05434761941432953, + 0.037017542868852615, + -0.0031597663182765245, + -0.02273259498178959, + -0.016825299710035324, + -0.05275211110711098, + -0.03293980658054352, + 0.09773754328489304, + -0.05417649820446968, + -0.030997538939118385, + -0.017912238836288452, + -0.06591327488422394, + -0.02477002888917923, + -6.9909576268401e-05, + -0.021724287420511246, + 0.016150999814271927, + -0.050174761563539505, + 0.026041897013783455, + 0.05733562633395195, + 0.04390935227274895, + 0.01749235764145851, + -0.06186564639210701, + -0.041486527770757675, + -0.06255757808685303, + 0.0007158137741498649, + 0.020522642880678177, + 0.04149557277560234, + -3.10084903766159e-33, + 0.11304425448179245, + 0.019268039613962173, + -0.05150756612420082, + 0.06341570615768433, + 0.05794195458292961, + -0.04683076962828636, + -0.03286798298358917, + 4.387945227790624e-05, + -0.02389698661863804, + -0.024127984419465065, + 0.08272901922464371, + 0.07489021122455597, + 0.014697639271616936, + -0.03984345123171806, + 0.008680367842316628, + -0.04709457978606224, + 0.021577676758170128, + 0.02850375697016716, + -0.06407147645950317, + -0.00961388275027275, + 0.01812523789703846, + 0.08187045902013779, + -0.025084329769015312, + 0.046692200005054474, + 0.04117507487535477, + 0.008557111024856567, + 0.03732697293162346, + -0.015806009992957115, + 0.01576572097837925, + 0.017803508788347244, + -0.010146341286599636, + 0.06199564412236214, + 0.07451043277978897, + -0.0014853538013994694, + -0.007663705851882696, + 0.05529202148318291, + -0.010825229808688164, + 0.04544340819120407, + -0.013075310736894608, + -0.08917286247015, + -0.056332528591156006, + -0.08588191121816635, + -0.08307717740535736, + 0.0020523425191640854, + 0.015657003968954086, + 0.020363813266158104, + -0.056428808718919754, + -0.04349445924162865, + 0.04436494782567024, + 0.044470496475696564, + -0.051332030445337296, + 0.04119937866926193, + 0.026348963379859924, + 0.03499635308980942, + -0.006734630558639765, + -0.055475614964962006, + -0.02166498266160488, + 0.0708373636007309, + 0.053159747272729874, + -0.07643166184425354, + 0.10604642331600189, + 0.02329922467470169, + 0.03555360063910484, + -0.11805732548236847, + -0.0387633815407753, + 0.05649730935692787, + -0.03445139899849892, + 0.04253317043185234, + 0.039820242673158646, + -0.019165202975273132, + -0.026265591382980347, + -0.01934218592941761, + 0.049574196338653564, + 0.09792671352624893, + -0.12886017560958862, + 0.011254072189331055, + -0.0471392422914505, + -0.036400698125362396, + 0.0002355830802116543, + -0.02518986351788044, + -0.09695478528738022, + 0.002368695568293333, + -0.06827482581138611, + 0.0958402007818222, + 0.05162477493286133, + 0.03979972004890442, + -0.03505602478981018, + -0.017019467428326607, + -0.034214913845062256, + -0.0021006243769079447, + -0.04023661091923714, + 0.022591080516576767, + -0.11876838654279709, + -0.06641949713230133, + -0.02008584700524807, + 2.284003201980715e-34, + 0.04634619876742363, + 0.0993688628077507, + -0.044539883732795715, + 0.002563630696386099, + -0.021883338689804077, + -0.026269759982824326, + -0.012883893214166164, + 0.061321474611759186, + -0.010371865704655647, + -0.03573715686798096, + 0.07010714709758759, + -0.0030735833570361137, + -0.0348217636346817, + -0.08610589057207108, + 0.008105989545583725, + 0.028571773320436478, + -0.03776485100388527, + -0.03900961950421333, + -0.006443308666348457, + 0.06929174065589905, + -0.04659556224942207, + 0.004347644746303558, + -0.001150277559645474, + 0.08918776363134384, + -0.10439397394657135, + -0.018284138292074203, + 0.017449678853154182, + 0.002235863357782364, + -0.013696050271391869, + -0.012065282091498375, + 0.04444724693894386, + 0.01521312166005373, + -0.083065927028656, + -0.03146703913807869, + 0.042675700038671494, + 0.05311082676053047, + 0.01772095076739788, + 0.03034268319606781, + -0.01582181081175804, + -0.06382402032613754, + 0.019512103870511055, + 0.07764092832803726, + 0.030023891478776932, + 0.07453425973653793, + 0.06866208463907242, + -0.007388527505099773, + -0.007208144757896662, + -0.06762295216321945, + -0.0028240575920790434, + 0.006582885980606079, + 0.0881827250123024, + -0.04167158901691437, + 0.0955534502863884, + -0.008844238705933094, + -0.040474217385053635, + -0.051161374896764755, + -0.03327985852956772, + 0.038289088755846024, + -0.022753799334168434, + 0.09304233640432358, + 0.03476212918758392, + 0.04533768445253372, + -0.07422399520874023, + -0.04473833739757538, + -0.015816567465662956, + 0.03918461501598358, + 0.0312504842877388, + 0.04020141065120697, + 0.10720372200012207, + 0.0034996289759874344, + 0.02987843006849289, + 0.02738768421113491, + 0.027043256908655167, + 0.006197585724294186, + 0.03191833570599556, + -0.07250496000051498, + -0.11387112736701965, + -0.0322151817381382, + -0.0033256160095334053, + 0.06040118262171745, + 0.00828524213284254, + 0.03156164288520813, + 0.037633802741765976, + -0.0014019141672179103, + -0.011022641323506832, + 0.013813909143209457, + -0.0008049001335166395, + 0.096411794424057, + 0.01401020772755146, + -0.03708290681242943, + -0.06175448000431061, + 0.046997081488370895, + -0.03142007812857628, + 0.010504353791475296, + -0.07010330259799957, + -2.2741749816646006e-08, + 0.018783727660775185, + -0.02858671173453331, + -0.02709341235458851, + -0.04599209874868393, + 0.02861231565475464, + -0.0837426409125328, + 0.013469388708472252, + -0.11593645811080933, + -0.01529527734965086, + -0.05142901465296745, + -0.006544932723045349, + -0.051974549889564514, + -0.019623618572950363, + 0.01889692433178425, + 0.04520813003182411, + 0.04949919506907463, + -0.11804129928350449, + 0.13647496700286865, + -0.027956148609519005, + -0.08323706686496735, + 0.01079913042485714, + 0.06614696234464645, + 0.06859071552753448, + 0.011189019307494164, + 0.12457583844661713, + -0.0417175255715847, + 0.024242589250206947, + -0.04570199176669121, + 0.07106347382068634, + -0.000270854594418779, + 0.00017684762133285403, + 0.060565285384655, + -0.067621611058712, + 0.004682252649217844, + -0.062498755753040314, + 0.050823044031858444, + -0.06774646043777466, + 0.040890540927648544, + -0.009849105961620808, + 0.05956583470106125, + 0.0033536830451339483, + -0.055556315928697586, + -0.01011413149535656, + -0.002178686670958996, + -0.00039200790342874825, + 0.02334054373204708, + 0.05310433730483055, + 0.048908866941928864, + -0.05508241429924965, + -0.05341203138232231, + -0.03012324497103691, + 0.08065547049045563, + 0.02546822465956211, + 0.018174802884459496, + 0.0015358811942860484, + -0.012627905234694481, + 0.01424776203930378, + 0.047393716871738434, + -0.00856694020330906, + -0.05999905243515968, + 0.1047358512878418, + -0.03526642173528671, + 0.006059771403670311, + 0.0005352344596758485 + ], + "speaker-x-bold||*updated*,music,audio,muted,volume,sound,disabled,errors": [ + 0.05073830112814903, + -0.0487455278635025, + -0.04300786182284355, + -0.035040270537137985, + 0.03907735273241997, + -0.02171442098915577, + 0.041922587901353836, + -0.09775674343109131, + -0.011443083174526691, + -0.003979250323027372, + 0.03522171080112457, + 0.03507157787680626, + -0.0006533332052640617, + -0.0112715819850564, + -0.021293196827173233, + 0.0304467361420393, + 0.0644504651427269, + 0.020584573969244957, + 0.006016765255481005, + 0.0077658649533987045, + -0.03937290981411934, + 0.08400674164295197, + -0.04341203346848488, + 0.07402978837490082, + 0.07718675583600998, + -0.0007055703899823129, + -0.006887554191052914, + 0.01184157282114029, + -0.02669188380241394, + -0.06013689935207367, + 0.00534222973510623, + 0.0331336073577404, + 0.20536386966705322, + -0.055385246872901917, + -0.012165041640400887, + -0.03753528743982315, + -0.006047082133591175, + -0.053074970841407776, + -0.046550653874874115, + -0.012381688691675663, + -0.013861550018191338, + -0.04705817624926567, + -0.0009767536539584398, + -0.025291386991739273, + -0.11352381110191345, + -0.09517607092857361, + -0.09154193103313446, + -0.04714331775903702, + 0.006707839667797089, + -0.010337884537875652, + 0.05361882969737053, + -0.07584363222122192, + -0.03162253275513649, + 0.019102266058325768, + 0.008791261352598667, + -0.003729748073965311, + -0.008577059954404831, + 0.0982794314622879, + 0.09703856706619263, + -0.03949147090315819, + 0.03488080948591232, + 0.006533545907586813, + 0.05003603175282478, + 0.03311275690793991, + 0.003289812942966819, + -0.004764580633491278, + 0.010653354227542877, + 0.0019964470993727446, + -0.03620519861578941, + 0.07120172679424286, + 0.011620765551924706, + 0.08541510254144669, + 0.036708056926727295, + -0.028278451412916183, + -0.0009640250355005264, + -0.014108269475400448, + 0.07479055970907211, + -0.059981606900691986, + -0.02957439422607422, + 0.0041530136950314045, + -0.04083920642733574, + -0.04659931734204292, + -0.08280418068170547, + -0.06842365860939026, + 0.06995939463376999, + 0.030940048396587372, + -0.08704106509685516, + -0.06298048794269562, + -0.11666544526815414, + -0.04284641146659851, + -0.11596283316612244, + -0.028950365260243416, + 0.0011699696769937873, + 0.00037536531453952193, + -0.02676302380859852, + 0.005575631745159626, + 0.057236358523368835, + -0.054296500980854034, + -0.027505114674568176, + 0.10119178146123886, + 0.028532546013593674, + 0.04242915287613869, + 0.05002620816230774, + -0.017171261832118034, + -0.046473149210214615, + -0.09036705642938614, + -0.07114048302173615, + 0.09100043028593063, + -0.05190807580947876, + -0.0163145512342453, + -0.036122314631938934, + -0.07959064841270447, + -0.0004196828813292086, + 0.005351543426513672, + 0.012087407521903515, + 0.028753990307450294, + -0.03628084808588028, + 0.044947072863578796, + 0.03334672749042511, + -0.0009890544461086392, + 0.02214849926531315, + -0.0682779923081398, + -0.018259946256875992, + -0.04027252271771431, + 0.009863619692623615, + 0.020701605826616287, + 0.016771964728832245, + -1.611264984022487e-33, + 0.08156923949718475, + 0.022487174719572067, + -0.07624209672212601, + 0.08130057156085968, + 0.04096098616719246, + -0.04879660904407501, + -0.012780556455254555, + -0.027442818507552147, + -0.03613809496164322, + 0.02130792662501335, + 0.08609501272439957, + 0.1026839017868042, + -0.00766371376812458, + -0.042258359491825104, + 0.02496982552111149, + -0.0557204894721508, + 0.015242856927216053, + 0.059757985174655914, + -0.08572247624397278, + 0.008122799918055534, + 0.029912730678915977, + 0.021964259445667267, + -0.032160185277462006, + 0.03755064681172371, + 0.04782018065452576, + 0.024521326646208763, + 0.03461582586169243, + -0.027374878525733948, + -0.005023343488574028, + -0.001587830251082778, + -0.001660004141740501, + 0.04497067257761955, + 0.07153065502643585, + -0.006190338637679815, + 0.002789090620353818, + 0.012725197710096836, + -0.032473430037498474, + 0.027207212522625923, + -0.006903591100126505, + -0.10724624246358871, + -0.07681214064359665, + -0.06487531960010529, + -0.048957712948322296, + -0.011097723618149757, + 0.03374593332409859, + 0.030877232551574707, + -0.07860589772462845, + -0.02560785599052906, + 0.06673974543809891, + 0.024301018565893173, + -0.06071002036333084, + 0.035555098205804825, + -0.026819664984941483, + 0.037436895072460175, + 0.004706212319433689, + -0.036672234535217285, + -0.0016298830742016435, + 0.11425308138132095, + 0.03682427108287811, + -0.07189713418483734, + 0.14535380899906158, + -0.006301551591604948, + 0.014666963368654251, + -0.13440868258476257, + -0.003861954202875495, + 0.04571128636598587, + -0.02548825927078724, + -0.01011747308075428, + 0.009957673959434032, + -0.014333860017359257, + -0.03658289089798927, + -0.03541473671793938, + 0.060491714626550674, + 0.09814130514860153, + -0.06830409169197083, + 0.0037058766465634108, + -0.03669438883662224, + -0.02342335134744644, + -0.0061243013478815556, + -0.02733745612204075, + -0.07309064269065857, + 0.008885730057954788, + -0.09494173526763916, + 0.11023342609405518, + 0.02280690148472786, + 0.0669059157371521, + -0.021628865972161293, + 0.012169000692665577, + -0.0439007468521595, + 0.034958235919475555, + -0.0712328553199768, + 0.029052020981907845, + -0.11071112751960754, + -0.08862937241792679, + -0.06686542183160782, + -8.972218690395313e-34, + 0.016106706112623215, + 0.07897372543811798, + -0.0139719657599926, + 0.011744977906346321, + -0.016816549003124237, + -0.008529486134648323, + -0.0005705946241505444, + 0.08133144676685333, + 0.01583816669881344, + -0.03787723183631897, + 0.06623557955026627, + -0.01634485460817814, + -0.05919315665960312, + -0.07160427421331406, + -0.029859958216547966, + 0.04813555255532265, + -0.00013281367137096822, + -0.04504825919866562, + -0.018447324633598328, + 0.07517121732234955, + -0.025411516427993774, + 0.01590701751410961, + -0.005686833988875151, + 0.06417752802371979, + -0.10618320852518082, + -0.03719402849674225, + 0.037022944539785385, + 0.007812106981873512, + -0.03575652837753296, + -0.06686404347419739, + 0.022635307163000107, + 0.01543342974036932, + -0.052148450165987015, + 0.01986442320048809, + 0.05827706679701805, + 0.019068239256739616, + 0.06567054986953735, + 0.02181849256157875, + -0.036713678389787674, + -0.02376769669353962, + 0.030594831332564354, + 0.08084746450185776, + 0.018885144963860512, + 0.03370007872581482, + 0.05573870614171028, + -0.0008798086200840771, + -0.04047170653939247, + -0.04658925533294678, + -0.00931363645941019, + 0.02464437112212181, + 0.08175826072692871, + -0.07952727377414703, + 0.08917354792356491, + -0.010929613374173641, + -0.0538179837167263, + -0.04619980975985527, + -0.00010390763054601848, + 0.04260960593819618, + 0.025989100337028503, + 0.05899700149893761, + 0.007419763598591089, + 0.03666434809565544, + -0.047345466911792755, + -0.06008065491914749, + -0.0353010855615139, + 0.025729430839419365, + 0.03223848715424538, + 0.0342857800424099, + 0.10087405145168304, + 0.009788215160369873, + 0.021210361272096634, + -0.02770727314054966, + 0.01115212682634592, + 0.007972786203026772, + -0.010552042163908482, + -0.07630214840173721, + -0.11261676996946335, + -0.03788696601986885, + 0.0033084528986364603, + 0.014617478474974632, + 0.027734845876693726, + 0.04195243492722511, + 0.07501978427171707, + 0.010916867293417454, + 0.0011441250098869205, + 0.055774442851543427, + 0.03994878754019737, + 0.09041246771812439, + 0.025209832936525345, + -0.031520068645477295, + -0.05098270624876022, + 0.06305096298456192, + 0.00011615842231549323, + -0.013607003726065159, + -0.0430234894156456, + -2.502211593480297e-08, + -0.00787030067294836, + -0.04069973900914192, + -0.03557790070772171, + -0.06547578424215317, + 0.0035560911055654287, + -0.08996221423149109, + 0.012545475736260414, + -0.13386182487010956, + -0.0215187668800354, + -0.05975751206278801, + -0.0034582745283842087, + -0.06486661732196808, + -0.030803076922893524, + 0.006807741243392229, + 0.015548634342849255, + 0.029108978807926178, + -0.10757652670145035, + 0.16139133274555206, + -0.027747036889195442, + -0.12856388092041016, + 0.008144291117787361, + 0.08529630303382874, + 0.06885628402233124, + -0.01830183155834675, + 0.10831797122955322, + -0.043497513979673386, + 0.03252860903739929, + -0.011089337058365345, + 0.08803286403417587, + -0.006016259081661701, + -0.019447050988674164, + 0.06864021718502045, + -0.035311099141836166, + -0.018687695264816284, + -0.03391711413860321, + 0.05017964914441109, + -0.07883463054895401, + 0.02354537509381771, + -0.001615392044186592, + 0.06634126603603363, + 0.002708995249122381, + -0.013279289938509464, + -0.014172444120049477, + -0.0032175048254430294, + 0.01605793461203575, + 0.021431922912597656, + 0.036588069051504135, + 0.020957019180059433, + -0.03059004805982113, + -0.05891236662864685, + -0.021100396290421486, + 0.06816115975379944, + 0.01708911545574665, + -0.00022156086924951524, + -0.024653863161802292, + -0.007071034517139196, + 0.016189275309443474, + 0.04446302354335785, + 0.02143266052007675, + -0.04868004843592644, + 0.07147494703531265, + -0.01668352261185646, + 0.021608680486679077, + -0.011594675481319427 + ], + "speedometer-bold||*new*,gauge,dashboard,meter,speed,odometer,performance": [ + -0.019376350566744804, + 0.00556240975856781, + -0.05517397075891495, + 0.008375147357583046, + 0.0006071837269701064, + -0.01620960421860218, + -0.009096107445657253, + -0.02977062202990055, + -0.014445004053413868, + -0.0662708654999733, + 0.03140833228826523, + -0.032635435461997986, + 0.006216063164174557, + -0.04870602861046791, + -0.058731503784656525, + -0.006449970416724682, + 0.08061879873275757, + 0.02147761359810829, + 0.0061972541734576225, + 0.0006017078994773328, + -0.0037629958242177963, + 0.009802348911762238, + 0.03930799663066864, + 0.08229967951774597, + 0.0060615683905780315, + 0.04554922133684158, + -0.06368062645196915, + 0.05353512987494469, + 0.002718693809583783, + -0.0632777214050293, + -0.02786409668624401, + -0.03261042758822441, + 0.047089193016290665, + 0.018101364374160767, + 0.00606537377461791, + -0.04380956292152405, + 0.07008839398622513, + -0.03096683695912361, + -0.00786755420267582, + 0.05171196162700653, + -0.007940991781651974, + -0.0917387530207634, + 0.01864684745669365, + 0.08446618169546127, + 0.052771348506212234, + 0.04264924302697182, + 0.013158882968127728, + -0.014921354129910469, + -0.00257313740439713, + 0.02146046608686447, + -0.07542886584997177, + -0.04432053491473198, + -0.06730994582176208, + -0.058853257447481155, + 0.03620431572198868, + 0.07594039291143417, + -0.04680789262056351, + 0.017047841101884842, + 0.041314516216516495, + -0.04830724373459816, + -0.021471943706274033, + -0.0014546597376465797, + 0.002458845032379031, + 0.06375336647033691, + 0.029102399945259094, + -0.030058899894356728, + -0.016667906194925308, + 0.03155134618282318, + 0.041338000446558, + 0.048195213079452515, + 0.04352099820971489, + 0.03053860180079937, + 0.05240810289978981, + 0.01226805429905653, + -0.008572337217628956, + -0.03470510244369507, + -0.03428642451763153, + 0.021939599886536598, + -0.0463072843849659, + -0.07773087173700333, + -0.04295085743069649, + -0.08344513177871704, + -0.0722370445728302, + 0.0195919256657362, + 0.045636024326086044, + 0.032064635306596756, + 0.014046182855963707, + -0.03631627559661865, + -0.03348327428102493, + -0.0949581041932106, + -0.024365749210119247, + -0.036905866116285324, + -0.061265524476766586, + -0.04371604695916176, + -0.0035178305115550756, + 0.08251906931400299, + -0.038631945848464966, + -0.025975791737437248, + -0.014478428289294243, + 0.048601265996694565, + 0.013790265657007694, + 0.024114668369293213, + -0.008187651634216309, + 0.160914808511734, + -0.056470535695552826, + -0.02326696552336216, + -0.011592857539653778, + 0.07779291272163391, + 0.015144921839237213, + 0.07957559078931808, + 0.059419646859169006, + -0.049498867243528366, + -0.03967192769050598, + -0.04615918546915054, + -0.003279520897194743, + -0.003364487085491419, + -0.12647035717964172, + 0.02953909896314144, + 0.10993872582912445, + 0.1481379270553589, + -0.005198722705245018, + -0.04813499003648758, + -0.03032367303967476, + -0.027355028316378593, + 0.04190881550312042, + 0.05571673437952995, + 0.050163500010967255, + -1.5137728804786444e-33, + -0.013107171282172203, + 0.010479133576154709, + 0.026396211236715317, + 0.052836861461400986, + -0.04356783628463745, + 0.04538767784833908, + -0.05178689584136009, + 0.05349109694361687, + 0.03256824612617493, + 0.06967012584209442, + 0.0066857230849564075, + 0.11590997129678726, + -0.05278603732585907, + 0.1188027411699295, + 0.06835895776748657, + -0.04369464889168739, + 0.028515329584479332, + 0.000886175490450114, + -0.03658976033329964, + -0.04220406338572502, + 0.009314213879406452, + 0.03339151665568352, + -0.04073808342218399, + -0.004362508188933134, + 0.04064883291721344, + 0.022284293547272682, + 0.05148453637957573, + 0.05474930256605148, + -0.09850965440273285, + 0.031638242304325104, + 0.01147716399282217, + -0.015736566856503487, + 0.0033166578505188227, + -0.0055974675342440605, + 0.0035478530917316675, + -0.0205136239528656, + -0.07523168623447418, + -0.04831366986036301, + 0.045251086354255676, + -0.002145335078239441, + -0.0700552761554718, + -0.02970978245139122, + -0.05502628907561302, + -0.039014607667922974, + -0.0671197697520256, + 0.07817257940769196, + -0.0390433631837368, + -0.02204427495598793, + 0.0889836847782135, + 0.03254829719662666, + -0.07924804091453552, + -0.03149415925145149, + -0.01511828601360321, + -0.02677304297685623, + 0.02137192152440548, + 0.0014672387624159455, + -0.023742912337183952, + 0.029463235288858414, + -0.0504256933927536, + 0.023648085072636604, + -0.10716380923986435, + 0.07634592801332474, + 0.03180212154984474, + -0.07246772199869156, + 0.007034996058791876, + 0.039577189832925797, + -0.04093688726425171, + 0.03002103418111801, + 0.07333691418170929, + 0.021273737773299217, + -0.0438244491815567, + 0.0022174979094415903, + 0.010771719738841057, + 0.0362158827483654, + 0.05464418977499008, + 0.05501833185553551, + -0.0045409235171973705, + 0.02330278418958187, + -0.06151691824197769, + -0.0952540934085846, + -0.13027150928974152, + 0.013394929468631744, + -0.022610647603869438, + 0.07734575867652893, + 0.0340791717171669, + -0.009102042764425278, + 0.03118281438946724, + -0.05404277518391609, + -0.013126075267791748, + -0.005752966273576021, + -0.05486167222261429, + 0.0558132641017437, + -0.10450313985347748, + -0.022141430526971817, + -0.1556740701198578, + -7.026492686456261e-34, + -0.042057909071445465, + 0.039066266268491745, + 0.02134012058377266, + 0.05869350954890251, + 0.014007708989083767, + 0.04613136500120163, + 0.012800745666027069, + 0.022787386551499367, + 0.034563325345516205, + 0.062428068369627, + 0.052754633128643036, + -0.050113048404455185, + -0.06971225142478943, + -0.033352065831422806, + -0.005715223960578442, + 0.06007598340511322, + -0.07221128046512604, + -0.03444017842411995, + -0.04892769083380699, + 0.007621146272867918, + -0.059312328696250916, + 0.022057944908738136, + -0.033049970865249634, + -0.023091372102499008, + 0.013936602510511875, + 0.0010267938487231731, + 0.038820769637823105, + -0.09184416383504868, + -0.04460760951042175, + -0.058353547006845474, + -0.030913449823856354, + -0.03743305429816246, + 0.04696754366159439, + 0.07297524809837341, + -0.0174191202968359, + 0.010400609113276005, + 0.10917793214321136, + -0.050464097410440445, + -0.04965619370341301, + 0.04143567755818367, + -0.011937400326132774, + 0.039567578583955765, + 0.11252864450216293, + -0.032275598496198654, + -0.047906793653964996, + 0.030691688880324364, + 0.006608516443520784, + -0.04498668015003204, + -0.061892639845609665, + 0.05120840296149254, + 0.044562507420778275, + -0.03550555557012558, + 0.0210567619651556, + 0.049650389701128006, + -0.07367218285799026, + -0.02011726424098015, + -0.02555808424949646, + -0.0073262532241642475, + -0.03661036118865013, + 0.07314291596412659, + 0.07966562360525131, + 0.009071080014109612, + -0.0489589124917984, + 0.12446601688861847, + -0.0070204222574830055, + -0.12896841764450073, + 0.030082913115620613, + -0.08580107241868973, + -0.03322487697005272, + 0.05089724808931351, + -0.01024704147130251, + -0.010993601754307747, + 0.005206395871937275, + -0.0030213347636163235, + -0.04760030284523964, + -0.08189205825328827, + 0.007234619464725256, + 0.04563865810632706, + -0.04261276498436928, + 0.027815094217658043, + 0.041201528161764145, + 0.0031444726046174765, + 0.006866689771413803, + 0.07520266622304916, + -0.07895723730325699, + 0.016740499064326286, + 0.012489696964621544, + 0.03164217248558998, + 0.059262458235025406, + 0.021223964169621468, + 0.018718136474490166, + 0.06805334985256195, + -0.08753892034292221, + 0.05318467691540718, + -0.09910598397254944, + -2.2840286106884378e-08, + -0.03247964754700661, + -0.005106515716761351, + -0.04710177332162857, + -0.005668143276125193, + 0.01708500273525715, + -0.00028581396327354014, + -0.04511759430170059, + 0.025887230411171913, + -0.10165007412433624, + -0.004273077007383108, + 0.11773767322301865, + 0.0009870987851172686, + -0.08306261897087097, + -0.021002650260925293, + -0.0005277763702906668, + -0.05002925172448158, + -0.020212750881910324, + 0.05084935575723648, + -0.02694949507713318, + -0.02571381814777851, + 0.04430849850177765, + 0.113033227622509, + 0.005871657282114029, + -0.03752851486206055, + 0.07539735734462738, + -0.009075812995433807, + -0.06448989361524582, + 0.005698953755199909, + 0.06761181354522705, + 0.052863553166389465, + 0.043712783604860306, + 0.04406462609767914, + 0.05558435618877411, + -0.024275800213217735, + -0.08089989423751831, + 0.00032498460495844483, + -0.08903179317712784, + 0.08985097706317902, + 0.05555233359336853, + 0.1282094568014145, + -0.02135918289422989, + 0.008822940289974213, + -0.09598598629236221, + 0.024609966203570366, + 0.06629253923892975, + -0.04421677440404892, + 0.015112961642444134, + -0.07017002999782562, + -0.11219609528779984, + -0.07968007028102875, + -0.0379389226436615, + 0.012443351559340954, + 0.01672729104757309, + 0.051252298057079315, + -0.0380626805126667, + 0.02609322778880596, + -0.010546577163040638, + -0.01323805470019579, + -0.054976895451545715, + 0.005272513255476952, + 0.07519474625587463, + 0.0154501274228096, + 0.015908794477581978, + 0.013200206682085991 + ], + "sphere-bold||*new*,circle,ball,3d,mesh,cad,model": [ + 0.010922277346253395, + -0.014578455127775669, + -0.02753276750445366, + -0.026323378086090088, + 0.0709555596113205, + -0.053660739213228226, + 0.010909575037658215, + -0.014190692454576492, + 0.056505121290683746, + 0.0369843952357769, + 0.0025207488797605038, + 0.007660880219191313, + 0.02414799854159355, + 0.04279937222599983, + 0.02830647863447666, + -0.03426242992281914, + 0.03577454388141632, + 0.0037800869904458523, + -0.04490913078188896, + 0.042960312217473984, + 0.006098522339016199, + 0.029470903798937798, + 0.0028535216115415096, + 0.04401751607656479, + 0.011280343867838383, + 0.008872956968843937, + 0.15285862982273102, + -0.013907440938055515, + -0.0020749575924128294, + -0.08294198662042618, + -0.036174532026052475, + -0.010649914853274822, + 0.03942691907286644, + 0.03237421065568924, + 0.054474130272865295, + -0.009408070705831051, + -0.03499604016542435, + 0.012423872947692871, + 0.005505620967596769, + -0.01315158512443304, + -0.007922026328742504, + -0.0652405321598053, + 0.04226867854595184, + -0.006390350870788097, + 0.017793815582990646, + 0.03736269474029541, + -0.09079162031412125, + -0.03198210522532463, + 0.032899126410484314, + -0.003578950883820653, + -0.044954873621463776, + -0.1540473848581314, + -0.14235012233257294, + -0.015321772545576096, + 0.07188159227371216, + 0.04055596888065338, + -0.06712153553962708, + -0.06683236360549927, + 0.039230942726135254, + -0.13480845093727112, + 0.06444952636957169, + -0.022147713229060173, + 0.03576073423027992, + 0.026020493358373642, + 0.02057594247162342, + -0.04688342288136482, + -0.07050444185733795, + 0.0026024419348686934, + -0.023086559027433395, + 0.02780379168689251, + 0.005238638259470463, + 0.022659944370388985, + -0.059372980147600174, + -0.05367946997284889, + 0.03175448253750801, + 0.013247382827103138, + 0.04660771042108536, + 0.021096302196383476, + -0.017978675663471222, + -0.048739902675151825, + -0.039520688354969025, + 0.043503835797309875, + -0.0726705864071846, + 0.0528317354619503, + -0.05357489734888077, + 0.08126424998044968, + -0.07674164324998856, + -0.0021271666046231985, + -0.01811664178967476, + -0.03524888679385185, + -0.0036400125827640295, + 0.009344466030597687, + -0.09035386145114899, + -0.013764348812401295, + -0.12801799178123474, + -0.0030720240902155638, + 0.024971628561615944, + -0.046800680458545685, + 0.008067270740866661, + 0.09423252195119858, + 0.034657079726457596, + -0.02258065901696682, + 0.12183532118797302, + 0.046756312251091, + -0.057237472385168076, + -0.04967649653553963, + 0.019344059750437737, + -0.011665978468954563, + 0.04670385643839836, + 0.04670058563351631, + 0.014707588590681553, + -0.06728725880384445, + -0.06799499690532684, + -0.06216016784310341, + -0.061261530965566635, + -0.021804412826895714, + -0.04652613401412964, + 0.018142810091376305, + 0.06915825605392456, + 0.06961676478385925, + 0.048615697771310806, + -0.0034428134094923735, + 0.010462965816259384, + 0.007869110442698002, + -0.05922028422355652, + 0.06128070503473282, + -0.06611239910125732, + -3.0379147231574953e-33, + 0.02618418075144291, + 0.11591541022062302, + 0.03420170024037361, + 0.13836362957954407, + -0.03344728425145149, + 0.02345179207623005, + 0.01233573630452156, + -0.011230419389903545, + 0.060745157301425934, + 0.011264264583587646, + -0.09166174381971359, + 0.05063508823513985, + -0.017657039687037468, + 0.05396989360451698, + 0.054159268736839294, + -0.034945737570524216, + 0.029386576265096664, + -0.013933184556663036, + -0.0951218381524086, + 0.07609888166189194, + -0.035789597779512405, + 0.02221674472093582, + -0.014670999720692635, + -0.03148159012198448, + -0.04292016476392746, + 0.057413890957832336, + 0.005921101663261652, + -0.030866678804159164, + -0.08362026512622833, + 0.0350261889398098, + 0.09074853360652924, + 0.014401833526790142, + 0.01013152301311493, + 0.046581923961639404, + 0.008510502986609936, + 0.04736953228712082, + -0.047199930995702744, + -0.0360516719520092, + -0.025870056822896004, + -0.08304328471422195, + -0.04271664842963219, + -0.03604280203580856, + -0.004801310133188963, + 0.030307646840810776, + -0.01218787208199501, + 0.07487322390079498, + -0.04730655252933502, + -0.0550677627325058, + 0.004502893891185522, + 0.011369296349585056, + 0.012074668891727924, + 0.027438683435320854, + 0.011752958409488201, + -0.007768166717141867, + -0.03517106920480728, + -0.03944722190499306, + -0.05833538994193077, + -0.007656898815184832, + 0.03203621134161949, + -0.026306400075554848, + 0.024847237393260002, + -0.0030133058317005634, + 0.021231429651379585, + 0.002767720725387335, + -0.006942175794392824, + 0.08733060956001282, + -0.04033340513706207, + 0.015506871044635773, + 0.04570270702242851, + -0.01313052512705326, + -0.030956536531448364, + 0.04688942804932594, + 0.01915622130036354, + 0.06299788504838943, + -0.007301390636712313, + 0.011188830249011517, + 0.026149816811084747, + -0.012002632021903992, + 0.054748278111219406, + -0.06343923509120941, + -0.12331622838973999, + 0.03401277959346771, + -0.04852425679564476, + -0.06492486596107483, + -0.03511960804462433, + -0.008610432036221027, + 0.02555837109684944, + -0.02817322127521038, + 0.038164373487234116, + 0.0016660166438668966, + -0.11953622847795486, + -0.029235074296593666, + -0.029517879709601402, + 0.004464346449822187, + -0.11911976337432861, + 4.6088579321005e-35, + -0.017008289694786072, + -0.02966768853366375, + -0.060183025896549225, + -0.006020205095410347, + 0.023622678592801094, + 0.015593483112752438, + -0.02776186913251877, + 0.033493246883153915, + -0.055218812078237534, + 0.006406256463378668, + 0.047492578625679016, + -0.01291364710777998, + 0.0042141759768128395, + 0.0032135448418557644, + 0.07669796049594879, + 0.028355486690998077, + -0.02647627890110016, + -0.08512724190950394, + -0.04366440698504448, + 0.0801679715514183, + -0.029500553384423256, + 0.009731181897222996, + -0.08543769270181656, + 0.00550814438611269, + -0.08532766252756119, + 0.05196170508861542, + -0.004009160678833723, + -0.026601552963256836, + -0.05035023018717766, + 0.08057154715061188, + -0.05379975214600563, + -0.01283002458512783, + 0.05624053254723549, + 0.11589101701974869, + -0.0807756632566452, + -0.027947016060352325, + 0.06892871856689453, + -0.034641336649656296, + 0.026906397193670273, + -0.03858277201652527, + 0.007829669862985611, + -0.0034565394744277, + -0.02686850167810917, + 0.111717090010643, + -0.02188035473227501, + -0.07323509454727173, + 0.029950842261314392, + -0.020342493429780006, + -0.03884080797433853, + 0.06804892420768738, + -0.02425132691860199, + -0.04108899086713791, + 0.05446302890777588, + -0.02254769206047058, + -0.01589723862707615, + 0.003006808692589402, + -0.02555602602660656, + 0.002945446176454425, + 0.06555887311697006, + 0.04917816445231438, + -0.07106427103281021, + -0.012499854899942875, + -0.05311998724937439, + 0.09724930673837662, + 0.04729491472244263, + -0.018992364406585693, + -0.010071794502437115, + -0.03878868743777275, + -0.04925030469894409, + 0.0342751070857048, + -0.0255971010774374, + 0.042382050305604935, + -0.02445709891617298, + 0.002307202434167266, + 0.03825678303837776, + -0.08200657367706299, + 0.06563770025968552, + 0.02434159815311432, + 0.004192223772406578, + 0.04955003038048744, + -0.026663491502404213, + -0.007102597504854202, + 0.03689141944050789, + 0.11051701009273529, + 0.052121907472610474, + -0.006058613769710064, + -0.024091029539704323, + 0.019964687526226044, + -0.08007881790399551, + 0.012214649468660355, + -0.0542372465133667, + 0.09764768928289413, + 0.018377842381596565, + 0.08732450008392334, + -0.04719648137688637, + -2.170201618412193e-08, + -0.021189136430621147, + -0.0013593175681307912, + 0.028138751164078712, + -0.03449460119009018, + 0.004417638760060072, + -0.06327556073665619, + -0.020346658304333687, + -0.05166219174861908, + -0.08210422098636627, + -0.061218101531267166, + -0.014647720381617546, + -0.055112119764089584, + -0.07730430364608765, + -0.00441296212375164, + 0.035210952162742615, + 0.05944545939564705, + -0.024361271411180496, + 0.10464829206466675, + -0.011171458289027214, + -0.013672699220478535, + -0.02955363132059574, + 0.08009455353021622, + 0.12065353989601135, + -0.02156885713338852, + 0.057863060384988785, + 0.0139258848503232, + -0.04073779657483101, + -0.03508602827787399, + 0.019093919545412064, + -0.03975101187825203, + 0.033602818846702576, + 0.07465282082557678, + 0.031151387840509415, + 0.0824214443564415, + -0.12037906050682068, + -0.026104683056473732, + -0.02274942770600319, + 0.004404713865369558, + -0.02712332084774971, + 0.11663848161697388, + -0.026546716690063477, + 0.08251629769802094, + -0.04734878987073898, + -0.07716554403305054, + 0.07473360747098923, + 0.07107020169496536, + 0.034384697675704956, + -0.12005281448364258, + -0.09158208221197128, + 0.013956896960735321, + -0.1348595917224884, + 0.06727579981088638, + 0.023028826341032982, + 0.03459100425243378, + -0.019585659727454185, + -0.007797908969223499, + 0.02681216225028038, + 0.07860386371612549, + 0.009346745908260345, + -0.00400324072688818, + 0.06767796725034714, + -0.04397755116224289, + 0.006343152839690447, + -0.011598637327551842 + ], + "spinner-bold||loading,loader,waiting,progress": [ + -0.0753849521279335, + -0.05189917981624603, + -0.07759790122509003, + 0.019618527963757515, + -0.037173423916101456, + -0.039808668196201324, + -0.08662272989749908, + -0.056011270731687546, + -0.005665815435349941, + -0.05511109530925751, + -0.001433446304872632, + 0.0939970538020134, + -0.003017106791958213, + -0.08886945247650146, + -0.03865136578679085, + 0.0768611952662468, + -0.008286611177027225, + -0.022839544340968132, + -0.02441716194152832, + -0.02205398492515087, + -0.03184008598327637, + -0.05520329624414444, + -0.005061028525233269, + 0.041375573724508286, + 0.019961973652243614, + -0.01167793944478035, + 0.016569633036851883, + -0.013618874363601208, + 0.057706184685230255, + -0.06678162515163422, + 0.02393854223191738, + 0.02148115634918213, + -0.0018676776671782136, + -0.03272030130028725, + -0.016538821160793304, + 0.03241950273513794, + -0.06732305139303207, + -0.07317868620157242, + 0.007792609743773937, + -0.03013044036924839, + 0.16777731478214264, + -0.040384575724601746, + -0.03370526060461998, + 0.005081766750663519, + -0.06454020738601685, + 0.03400552272796631, + 0.023528840392827988, + -0.0249340757727623, + 0.1051340103149414, + -0.023870857432484627, + 0.02583554945886135, + -0.07834829390048981, + -0.00935411173850298, + -0.062488771975040436, + 0.030205154791474342, + 0.04100611433386803, + 0.107416532933712, + -0.05571320280432701, + -0.015872998163104057, + -0.01792082004249096, + -0.01901726797223091, + 0.00716679310426116, + 0.031236231327056885, + 0.02672315202653408, + 0.08614122122526169, + 0.08688785135746002, + 0.01716027781367302, + -0.007311551831662655, + -0.0042467121966183186, + -0.02509159967303276, + 0.007974781095981598, + -0.03242972865700722, + -0.010274798609316349, + 0.0300843957811594, + -0.061820726841688156, + -0.05602776259183884, + 0.07625402510166168, + -0.017022162675857544, + -0.026843134313821793, + -0.07108714431524277, + -0.1224403902888298, + -0.12277203053236008, + 0.04007970541715622, + 0.002058078534901142, + 0.06405062973499298, + 0.022240491583943367, + -0.02464664913713932, + -0.045233894139528275, + 0.007250694558024406, + 0.02073083072900772, + -0.06383448839187622, + 0.037946369498968124, + -0.097386434674263, + 0.060388483107089996, + -0.03991233557462692, + 0.035908639430999756, + 0.03392550349235535, + 0.052678003907203674, + -0.14344879984855652, + 0.010617531836032867, + -0.003543674713000655, + 0.05707724764943123, + 0.10552465915679932, + -0.011724522337317467, + -0.10357385873794556, + -0.08892502635717392, + 0.03925077244639397, + 0.010951743461191654, + -0.1027848869562149, + 0.02515944093465805, + 0.046592749655246735, + -0.03359872102737427, + 0.026364369317889214, + -0.038053642958402634, + -0.0031599027570337057, + -0.025070572271943092, + -0.013509766198694706, + 0.03169857710599899, + 0.01726304553449154, + 0.06060468778014183, + 0.10480716079473495, + 0.0004612056945916265, + -0.027465425431728363, + -0.12966926395893097, + 0.040072258561849594, + -0.06861786544322968, + 0.029064465314149857, + -2.0108515133814765e-33, + 0.03844814375042915, + -0.05771491676568985, + -0.007101071532815695, + 0.10667701065540314, + -0.0155632384121418, + 0.07778710126876831, + 0.015432574786245823, + -0.08065934479236603, + -0.01357426680624485, + 0.025607822462916374, + 0.08857522159814835, + 0.03459585830569267, + -0.03139575198292732, + 0.0037466268986463547, + 0.01769397407770157, + -0.1318734884262085, + 0.06629321724176407, + 0.005440203472971916, + -0.04418295621871948, + -0.005577176343649626, + 0.03662079572677612, + -0.07084381580352783, + -0.10305841267108917, + 0.0063627720810472965, + 0.007294975686818361, + -0.033803895115852356, + 0.013727609999477863, + -0.03679698705673218, + -0.05948338657617569, + 0.01458240021020174, + 0.07658690214157104, + -0.004638597369194031, + -0.032179854810237885, + 0.005882159806787968, + 0.00257942546159029, + -0.1338391751050949, + 0.013371534645557404, + -0.020323533564805984, + -0.015703557059168816, + -0.04298093914985657, + -0.04698411375284195, + -0.059580281376838684, + 0.009326929226517677, + -0.0017849068390205503, + -0.07314841449260712, + 0.028372570872306824, + -0.03532196208834648, + -0.005046607460826635, + 0.0006594926817342639, + 0.04443477466702461, + 0.03062567673623562, + 0.011030703783035278, + 0.00829983875155449, + 0.006793867330998182, + 0.034072525799274445, + -0.002281262306496501, + 0.0055702440440654755, + 0.01837042346596718, + -0.023971369490027428, + 0.03213361278176308, + 0.027493150904774666, + 0.043881285935640335, + -0.005893288645893335, + 0.0238249022513628, + 0.03729020059108734, + 0.07332655042409897, + -0.037427205592393875, + -0.04250651225447655, + -0.028226692229509354, + 0.05319397523999214, + -0.011959818191826344, + -0.005724980495870113, + 0.0757448598742485, + 0.01893439330160618, + 0.10801716893911362, + 0.06033336743712425, + -0.04590548574924469, + -0.044945817440748215, + -0.019032254815101624, + -0.0599985271692276, + 0.02276686020195484, + -0.048777416348457336, + -0.08970717340707779, + 0.01618320867419243, + -0.001494180061854422, + 0.052088964730501175, + -0.06405496597290039, + -0.0711723044514656, + 0.021382777020335197, + 0.061397962272167206, + -0.03735274076461792, + -0.004488273989409208, + -0.005797096993774176, + -0.010379924438893795, + -0.08480317145586014, + -5.051350854742842e-34, + 0.02815832383930683, + -0.029000217095017433, + 0.03247235715389252, + 0.05527526140213013, + 0.0567556694149971, + 0.04708316922187805, + -8.900227112462744e-05, + 0.05935226380825043, + -0.048756618052721024, + 0.008347892202436924, + 0.04727201536297798, + 0.022143859416246414, + -0.08845484256744385, + 0.02223397232592106, + 0.0189248975366354, + 0.10222655534744263, + 0.025996651500463486, + 0.03694356605410576, + 0.01846347562968731, + 0.0607924684882164, + 0.061799343675374985, + 0.018393388018012047, + -0.0788421705365181, + 0.04509478062391281, + -0.006964627653360367, + -0.016234202310442924, + 0.010078053921461105, + 0.03208436816930771, + 0.004485803656280041, + 0.07275540381669998, + -0.01599816046655178, + 0.00579992076382041, + 0.022141560912132263, + 0.020916897803544998, + -0.08845687657594681, + 0.09351509064435959, + 0.04600505903363228, + -0.02219870500266552, + 0.0016791184898465872, + -0.02357405796647072, + 0.05677377060055733, + -0.03811129182577133, + -0.027353322133421898, + 0.005679755937308073, + -0.08162582665681839, + -0.06720896065235138, + 0.00723738968372345, + -0.02410992421209812, + -0.06630992889404297, + 0.06923236697912216, + 0.03946813568472862, + 0.0075849206186831, + 0.08679759502410889, + 0.04327113553881645, + 0.03698201850056648, + -0.034639183431863785, + 0.009858786128461361, + -0.10350899398326874, + -0.00781328696757555, + 0.028116216883063316, + -0.013578511774539948, + 0.012008348479866982, + 0.004164064768701792, + -0.09489984065294266, + -0.03286053240299225, + -0.0785476490855217, + 0.07774142920970917, + -0.018639322370290756, + 0.09412667155265808, + 0.03704818710684776, + 0.013667382299900055, + 0.019723761826753616, + 0.06104065477848053, + 0.020563645288348198, + 0.06702224910259247, + 0.020961809903383255, + 0.03937934339046478, + -0.07167486846446991, + 0.016931647434830666, + 0.020671939477324486, + -0.025454571470618248, + 0.012222079560160637, + -0.015619473531842232, + -0.012787934392690659, + 0.04972154274582863, + 0.012214924208819866, + 0.008739381097257137, + 0.04392910376191139, + 0.034101299941539764, + -0.08723628520965576, + 0.04754813387989998, + 0.036348648369312286, + 0.03371986374258995, + 0.05722992494702339, + -0.021435251459479332, + -1.744382771562414e-08, + -0.008413069881498814, + -0.06345739215612411, + 0.03299519419670105, + -0.06689758598804474, + 0.113289475440979, + -0.038239557296037674, + -0.007404968608170748, + -0.07035921514034271, + -0.08460209518671036, + 0.03622763603925705, + 0.0915682464838028, + 0.0030365963466465473, + 0.015900777652859688, + -0.06385520845651627, + 0.09901172667741776, + 0.017090236768126488, + 0.005128600634634495, + 0.05062925070524216, + -0.04701223224401474, + -0.0741596668958664, + 0.014292092062532902, + 0.012390337884426117, + 0.024925347417593002, + 0.004213663749396801, + 0.014871406368911266, + 0.04653991758823395, + -0.001194500713609159, + -0.03436022996902466, + -0.0008358042687177658, + 0.018323203548789024, + 0.04267650470137596, + 0.05858047306537628, + 0.045058898627758026, + -0.010779030621051788, + -0.08772310614585876, + 0.04657646268606186, + -0.02015652135014534, + 0.0343657061457634, + 0.0728081688284874, + 0.1251397579908371, + -0.06423740833997726, + -0.008669750764966011, + 0.01217809971421957, + 0.029200423508882523, + -0.06706903874874115, + -0.013317019678652287, + -0.15506601333618164, + -0.009738864377140999, + -0.046012070029973984, + -0.08459435403347015, + 0.006249483674764633, + -0.04215147718787193, + 0.01204471942037344, + 0.0933389887213707, + 4.9456884880783036e-05, + -0.038299284875392914, + 0.008315419778227806, + 0.046866390854120255, + 0.01516506727784872, + 0.08671189099550247, + 0.0882304236292839, + -0.04438295587897301, + -0.01682220958173275, + -0.008309501223266125 + ], + "spinner-ball-bold||*new*,loading,loader,waiting,progress": [ + -0.06549987196922302, + -0.02646162547171116, + -0.06825948506593704, + -0.017252465710043907, + -0.039380334317684174, + -0.026214223355054855, + -0.049756284803152084, + -0.04744473472237587, + 0.013715291395783424, + -0.0144337248057127, + 0.02351881004869938, + 0.09000801295042038, + -0.010780707001686096, + -0.07872956991195679, + -0.016191944479942322, + 0.07432001829147339, + -0.006134188733994961, + -0.048393260687589645, + -0.02359919622540474, + -0.04645467549562454, + -0.043386735022068024, + -0.05567900836467743, + -0.00029358704341575503, + 0.02720886655151844, + 0.016912173479795456, + 0.02588741108775139, + 0.031965114176273346, + 0.022604063153266907, + 0.028852276504039764, + -0.1042516678571701, + -0.001869331463240087, + 0.012904019095003605, + 0.016849227249622345, + -0.004335809499025345, + 0.007288678083568811, + 0.023900870233774185, + -0.05533529818058014, + -0.06249748542904854, + 0.036746859550476074, + -0.049149319529533386, + 0.14028531312942505, + -0.07942327111959457, + -0.006296689622104168, + 0.021266059949994087, + -0.07837752997875214, + 0.09052757173776627, + 0.0010496678296476603, + -0.014360864646732807, + 0.11260843276977539, + -0.014316435903310776, + -0.010740378871560097, + -0.12091168016195297, + -0.017715467140078545, + -0.0441916361451149, + 0.08970343321561813, + 0.05986880511045456, + 0.09790823608636856, + -0.03992491587996483, + -0.016917286440730095, + -0.04948186129331589, + 0.016547568142414093, + 0.005571288987994194, + 0.031981825828552246, + 0.03226573392748833, + 0.06857191026210785, + 0.0018237746553495526, + -0.033536117523908615, + -0.0029813603032380342, + 0.007418055087327957, + -0.0017423795070499182, + 0.013770748861134052, + -0.009399461559951305, + -0.04664573445916176, + 0.027913039550185204, + -0.05115816369652748, + -0.05793006718158722, + 0.052112143486738205, + -0.011889999732375145, + -0.03898700326681137, + -0.048995066434144974, + -0.12748602032661438, + -0.11585063487291336, + -0.020070603117346764, + -0.00024048375780694187, + 0.021360432729125023, + 0.020858652889728546, + -0.005975265055894852, + -0.023109642788767815, + 0.008008426986634731, + 0.014334521256387234, + -0.06470053642988205, + 0.033452026546001434, + -0.09584222733974457, + 0.07046939432621002, + -0.06939484924077988, + 0.0418391190469265, + 0.02563590556383133, + 0.014676477760076523, + -0.12314143031835556, + 0.05133262276649475, + -0.010359974578022957, + 0.046366941183805466, + 0.14320962131023407, + 0.01078720111399889, + -0.11016478389501572, + -0.08908974379301071, + -0.005947527941316366, + 0.011881064623594284, + -0.06555692106485367, + 0.05092351883649826, + 0.03298724442720413, + -0.0450625866651535, + 0.01674838550388813, + -0.02620476298034191, + -0.04709029570221901, + -0.03019614890217781, + -0.0467505119740963, + 0.04592859745025635, + 0.007123272400349379, + 0.05062546208500862, + 0.14821107685565948, + -0.01368666160851717, + -0.03634289279580116, + -0.10737665742635727, + -0.013998346403241158, + -0.03604592755436897, + -0.009345653466880322, + -2.775087043283094e-33, + 0.015151862055063248, + -0.041518863290548325, + 0.006425332278013229, + 0.11487782001495361, + -0.03154568746685982, + 0.05403071269392967, + -0.000789220561273396, + -0.028866445645689964, + 0.014236647635698318, + 0.020956872031092644, + 0.05280988663434982, + 0.019594313576817513, + -0.04208454489707947, + 0.001540824887342751, + 0.028294961899518967, + -0.15999583899974823, + 0.047458015382289886, + -0.0022949762642383575, + -0.026733363047242165, + 0.019420823082327843, + -0.017353231087327003, + -0.040762364864349365, + -0.08894002437591553, + -0.00013303069863468409, + -0.011105833575129509, + -0.020048992708325386, + 0.04403778538107872, + -0.09748093038797379, + -0.06637166440486908, + 0.018354473635554314, + 0.09294413775205612, + 0.009698702022433281, + -0.040367867797613144, + 0.023665310814976692, + 0.004417048767209053, + -0.11272268742322922, + -0.010933511890470982, + -0.03078807145357132, + -0.0396234393119812, + -0.06758749485015869, + -0.03594990447163582, + -0.10480847209692001, + -0.033941060304641724, + 0.02434619888663292, + -0.0630001574754715, + 0.0035899446811527014, + -0.042801644653081894, + -0.018150631338357925, + 0.008700324222445488, + 0.023877618834376335, + 0.057026755064725876, + -0.0040185097604990005, + 0.028095915913581848, + 0.01648162119090557, + 0.03216714784502983, + -0.02829647995531559, + -0.02467033639550209, + 0.0306243896484375, + -0.018639560788869858, + -0.016060777008533478, + 0.07257726043462753, + 0.058167096227407455, + 0.022325024008750916, + 0.0404781810939312, + 0.048976536840200424, + 0.0781305655837059, + -0.02888466976583004, + -0.0428055077791214, + -0.008622542023658752, + 0.05251085013151169, + -0.011742155067622662, + -0.005047499667853117, + 0.05903998017311096, + 0.05127755552530289, + 0.07426754385232925, + 0.04639201611280441, + -0.02769482135772705, + -0.0053964280523359776, + -0.005084256641566753, + -0.09321945905685425, + 0.0001341040333500132, + -0.031228048726916313, + -0.07823474705219269, + -0.0064364708960056305, + -0.02697637863457203, + 0.057466261088848114, + -0.04357456788420677, + -0.06395223736763, + 0.021013617515563965, + 0.04527847841382027, + -0.08322538435459137, + -0.014392446726560593, + -0.0485105998814106, + 0.003196247387677431, + -0.0802595391869545, + 9.743327142911647e-36, + 0.022152520716190338, + -0.02541891299188137, + 0.005376241635531187, + 0.05225382745265961, + 0.05867919698357582, + 0.061925288289785385, + 0.026201963424682617, + 0.04354632645845413, + -0.04305374622344971, + 0.0316377654671669, + 0.025336245074868202, + 0.004726934712380171, + -0.07916942983865738, + 0.010604515671730042, + 0.061127517372369766, + 0.09210143983364105, + -0.004963200073689222, + 0.012342528440058231, + -0.0020840787328779697, + 0.08930964022874832, + 0.0478275828063488, + 0.039544980973005295, + -0.06733646243810654, + 0.03715039789676666, + -0.038945406675338745, + -0.024727776646614075, + 0.03907100856304169, + 0.033825937658548355, + -0.02214488387107849, + 0.06654580682516098, + -0.0064631314016878605, + 0.006205185782164335, + 0.03866858780384064, + 0.06532278656959534, + -0.10819236934185028, + 0.05833439901471138, + 0.0854121595621109, + -0.02351096272468567, + 0.03167477622628212, + -0.008689607493579388, + 0.06154540926218033, + -0.025329915806651115, + -0.0335603691637516, + 0.03465646505355835, + -0.07479944080114365, + -0.09076790511608124, + -0.0027222000062465668, + -0.01168750785291195, + -0.07291796058416367, + 0.09072524309158325, + 0.02348981238901615, + -0.0060439747758209705, + 0.06439973413944244, + 0.014878805726766586, + 0.05536438897252083, + 0.02469743974506855, + 0.004151724744588137, + -0.08789567649364471, + 0.011430180631577969, + 0.002147297142073512, + -0.03593461215496063, + 0.015773050487041473, + -0.00252777012065053, + -0.05175361782312393, + -0.009763196110725403, + -0.03816135972738266, + 0.04082706570625305, + -0.019620001316070557, + 0.04037719964981079, + 0.03655200079083443, + 0.002942235441878438, + 0.07067511975765228, + 0.05788590759038925, + 0.009019758552312851, + 0.05652962997555733, + 0.016417311504483223, + 0.05732528120279312, + -0.05521632730960846, + -0.001250888453796506, + 0.025368329137563705, + -0.03909128159284592, + 0.021258868277072906, + -0.009175828658044338, + 0.019484208896756172, + 0.06321371346712112, + 0.005648388061672449, + -0.011746651493012905, + 0.048326797783374786, + 0.003668160643428564, + -0.059975408017635345, + 0.050769317895174026, + 0.06267538666725159, + 0.04580437391996384, + 0.0706494152545929, + -0.014976645819842815, + -2.204340177058839e-08, + -0.02541785128414631, + -0.06070733815431595, + 0.025825833901762962, + -0.048715442419052124, + 0.13302046060562134, + -0.03239487111568451, + -0.022434616461396217, + -0.08111630380153656, + -0.0589274987578392, + -0.036991335451602936, + 0.08001348376274109, + -0.022596066817641258, + 0.004152212291955948, + -0.0367705412209034, + 0.08701563626527786, + 0.038169462233781815, + -0.025698043406009674, + 0.07202441990375519, + -0.053319815546274185, + -0.053319018334150314, + 0.019277475774288177, + 0.00802774727344513, + 0.06104697659611702, + 0.00584529060870409, + 0.0165203046053648, + 0.03694453835487366, + -0.0374617874622345, + -0.06328929960727692, + -0.010606162250041962, + -0.0112883560359478, + 0.06891840696334839, + 0.08673353493213654, + 0.0786551982164383, + -0.019805092364549637, + -0.09947553277015686, + 0.04174434766173363, + -0.027329089120030403, + 0.02615705132484436, + 0.0507764033973217, + 0.1306871920824051, + -0.0702267661690712, + 0.0294035617262125, + -0.020977789536118507, + 0.007849087938666344, + -0.056048549711704254, + -0.02356312982738018, + -0.1482602208852768, + -0.034987498074769974, + -0.10177160799503326, + -0.05434959754347801, + 0.002880678977817297, + 0.01837180182337761, + 0.03089750185608864, + 0.07775968313217163, + 0.015914849936962128, + 0.017563074827194214, + 0.008944687433540821, + 0.04790327697992325, + 0.012734714895486832, + 0.08288247138261795, + 0.07314812391996384, + -0.04567423090338707, + 0.0016730574425309896, + -0.005510288756340742 + ], + "spinner-gap-bold||loading,loader,waiting,progress": [ + -0.07853392511606216, + -0.025465745478868484, + -0.0878198891878128, + 0.016310598701238632, + -0.021146656945347786, + -0.01941215991973877, + -0.10630673170089722, + -0.04142411798238754, + -0.008338787592947483, + -0.06288594752550125, + 0.01948051154613495, + 0.06510276347398758, + -0.017499765381217003, + -0.12046203762292862, + -0.0072481026872992516, + 0.07792103290557861, + -0.04115594923496246, + -0.04198361188173294, + -0.03282739222049713, + -0.04333021119236946, + -0.04781884327530861, + -0.045975301414728165, + -0.02114572934806347, + 0.031005490571260452, + 0.004033680073916912, + 0.0040296148508787155, + 0.04014510661363602, + 0.0009487926145084202, + 0.060130711644887924, + -0.05633756145834923, + 0.01697474718093872, + -0.006128803826868534, + -0.008157937787473202, + -0.0457276850938797, + 0.016669077798724174, + 0.026466311886906624, + -0.0635778158903122, + -0.02392137423157692, + -0.009065523743629456, + -0.04165555536746979, + 0.14910133183002472, + -0.03579150140285492, + -0.024881094694137573, + 0.020225802436470985, + -0.07175849378108978, + 0.0674925148487091, + 0.004851619713008404, + -0.02393415942788124, + 0.08736153692007065, + -0.03995067998766899, + -0.009163187816739082, + -0.08347207307815552, + -0.007248125039041042, + -0.03857920318841934, + 0.03181889280676842, + 0.03703657537698746, + 0.110072560608387, + -0.04257016256451607, + -0.031109178438782692, + -0.04902508854866028, + -0.0031930492259562016, + 0.008524456061422825, + 0.009747989475727081, + 0.023054808378219604, + 0.07634685188531876, + 0.0812530666589737, + 0.021081749349832535, + -0.0123997638002038, + -0.008589380420744419, + -0.002890858566388488, + 0.0010138837387785316, + -0.016533566638827324, + -0.03225518390536308, + 0.03701107203960419, + -0.04815108701586723, + -0.05245911702513695, + 0.08182505518198013, + 0.007277218624949455, + -0.018335387110710144, + -0.07210436463356018, + -0.12487632036209106, + -0.11345960199832916, + 0.00978931412100792, + 0.031566206365823746, + 0.031236449256539345, + 0.012557199224829674, + 0.009684482589364052, + -0.053865619003772736, + -0.01487976498901844, + -0.008607093244791031, + -0.058038923889398575, + 0.033894240856170654, + -0.1108262911438942, + 0.06778500229120255, + -0.04766160994768143, + 0.028866762295365334, + 0.0464547723531723, + 0.0603184700012207, + -0.1279515027999878, + 0.020619841292500496, + -0.006248774938285351, + 0.053202494978904724, + 0.12064849585294724, + -0.030734576284885406, + -0.10737840831279755, + -0.07691683620214462, + 0.04043394699692726, + 0.022139988839626312, + -0.07440776377916336, + 0.047854430973529816, + 0.05699244886636734, + -0.018164299428462982, + 0.006614734884351492, + -0.02830447442829609, + 0.004780520219355822, + -0.027964998036623, + -0.010363895446062088, + 0.019581463187932968, + 0.06541787832975388, + 0.06672660261392593, + 0.09986630827188492, + 0.02892078272998333, + -0.058520711958408356, + -0.12422047555446625, + 0.04460487514734268, + -0.07829646021127701, + 0.019943902269005775, + -2.8743786633741524e-33, + 0.03302888944745064, + -0.0770222470164299, + -0.024202117696404457, + 0.11162067949771881, + -0.009496927261352539, + 0.08039671182632446, + -0.014298876747488976, + -0.09233266860246658, + -0.018367653712630272, + 0.06699923425912857, + 0.057278264313936234, + 0.003546580672264099, + -0.019946452230215073, + -0.03286851942539215, + 0.04879608377814293, + -0.13890568912029266, + 0.06452937424182892, + -0.0282213743776083, + -0.052048102021217346, + -0.008123493753373623, + 0.006353052798658609, + -0.07674866169691086, + -0.08384963124990463, + 0.02752726711332798, + -0.005524533800780773, + -0.04029140621423721, + 0.028021205216646194, + -0.08226192742586136, + -0.05081916227936745, + 0.01587291620671749, + 0.05310933291912079, + 0.027751769870519638, + -0.0026553093921393156, + 0.01799340546131134, + 0.010906759649515152, + -0.11977577954530716, + 0.031146235764026642, + -0.033546075224876404, + -0.007446644827723503, + -0.03567291796207428, + -0.06849634647369385, + -0.04757597669959068, + 0.028150133788585663, + 0.0008651556563563645, + -0.052559103816747665, + -0.025776272639632225, + 0.019505178555846214, + -0.006488852668553591, + 0.015604543499648571, + 0.06965271383523941, + 0.03702060878276825, + 0.03012807108461857, + 0.013668680563569069, + -0.011569340713322163, + 0.02002773992717266, + -0.04400630295276642, + 0.009293674491345882, + 0.01712266355752945, + -0.024974478408694267, + 0.022091427817940712, + 0.03355639800429344, + 0.025869272649288177, + 0.031819090247154236, + 0.0428730733692646, + 0.05132418870925903, + 0.07432809472084045, + -0.04962693899869919, + -0.049390342086553574, + -0.04014873877167702, + 0.06613875925540924, + -0.03660067543387413, + -0.04308273270726204, + 0.06858456879854202, + 0.02207687310874462, + 0.09785112738609314, + 0.0634409487247467, + -0.03385676443576813, + -0.06095504015684128, + 0.01665491983294487, + -0.0823962390422821, + 0.044878747314214706, + -0.050145164132118225, + -0.07211904972791672, + -0.02125452272593975, + -0.04345468804240227, + 0.029187718406319618, + -0.05102095380425453, + -0.03835802525281906, + 0.010501611046493053, + 0.0346832275390625, + -0.06170026212930679, + 0.004572192672640085, + 0.005172134842723608, + 0.011782987974584103, + -0.05712110549211502, + 1.2962375948721508e-34, + 0.03787941858172417, + -0.024703241884708405, + 0.08316255360841751, + 0.04910678789019585, + 0.09671210497617722, + 0.048870231956243515, + 0.033385202288627625, + 0.06388985365629196, + -0.019716717302799225, + 0.05040273815393448, + 0.04905477166175842, + 0.019251519814133644, + -0.06604524701833725, + 0.014527102932333946, + -0.0040869335643947124, + 0.09838429093360901, + 0.06095282733440399, + 0.01701367273926735, + 0.046901214867830276, + 0.06749977171421051, + 0.08893401175737381, + -0.008581742644309998, + -0.08311695605516434, + 0.03274690732359886, + -0.00865729246288538, + -0.01570197381079197, + 0.01836257055401802, + 0.016191506758332253, + -0.002898644423112273, + 0.07603733986616135, + -0.025272879749536514, + -0.008713211864233017, + 0.008150806650519371, + 0.0041086734272539616, + -0.08243799209594727, + 0.07494762539863586, + 0.011905144900083542, + -0.0087018683552742, + -0.0075867692939937115, + -0.030079953372478485, + 0.03809495270252228, + -0.027028219774365425, + -0.03603050112724304, + 0.003968811593949795, + -0.08638960123062134, + -0.04029511660337448, + 0.0058347973972558975, + -0.007678109221160412, + -0.12313508987426758, + 0.06494397670030594, + 0.03341478854417801, + 0.027913298457860947, + 0.07274540513753891, + 0.04226459562778473, + 0.03044944442808628, + -0.008477968163788319, + -0.012792330235242844, + -0.0839269757270813, + -0.04224633425474167, + 0.031078269705176353, + 0.010115581564605236, + 0.015988938510417938, + 0.02391887456178665, + -0.13210180401802063, + 0.014926045201718807, + -0.05790509656071663, + 0.06295915693044662, + 0.00411318801343441, + 0.08392089605331421, + 0.032752733677625656, + -5.093194431537995e-06, + 0.021098408848047256, + 0.06884314864873886, + 0.012635783292353153, + 0.050502512603998184, + 0.012731933034956455, + 0.058081693947315216, + -0.08680108189582825, + 0.04887150600552559, + 0.036380402743816376, + -0.0035261998418718576, + -0.007520216982811689, + -0.011766412295401096, + -0.009883172810077667, + 0.03778092935681343, + 0.03772915527224541, + -0.0027899006381630898, + 0.04525360092520714, + 0.02725706808269024, + -0.09578259289264679, + 0.04033143073320389, + 0.05561414361000061, + 0.05763790383934975, + 0.05807465687394142, + -0.009417926892638206, + -1.8410776903010628e-08, + 0.006440950557589531, + -0.06610966473817825, + 0.02685805782675743, + -0.05329558998346329, + 0.11218740791082382, + -0.06157160922884941, + -0.009989888407289982, + -0.0493965744972229, + -0.06960704922676086, + 0.0591629259288311, + 0.10471473634243011, + 0.014729533344507217, + 0.00854515004903078, + -0.041122376918792725, + 0.07809694111347198, + 0.010612821206450462, + -0.007378069218248129, + 0.06332941353321075, + -0.048956338316202164, + -0.07095682621002197, + 0.007166595663875341, + 0.011333839036524296, + 0.015791963785886765, + -0.025629179552197456, + 0.01747707463800907, + 0.016904979944229126, + -0.0173553004860878, + -0.02098010666668415, + -0.005551915615797043, + -0.03531106188893318, + 0.02897307462990284, + 0.05477064847946167, + 0.0504058375954628, + -0.02802599035203457, + -0.08130049705505371, + 0.09106063842773438, + -0.01044826302677393, + 0.038216594606637955, + 0.06268889456987381, + 0.07784049957990646, + -0.042100559920072556, + -0.02598077431321144, + 0.048898156732320786, + 0.039168134331703186, + -0.090620256960392, + -0.03251452371478081, + -0.1129845529794693, + 0.027752084657549858, + -0.06365858763456345, + -0.08122076094150543, + 0.015772344544529915, + -0.03868768364191055, + 0.018882479518651962, + 0.057989951223134995, + -0.011616434901952744, + -0.05395034700632095, + -0.0019493531435728073, + 0.0404021181166172, + 0.0023458756040781736, + 0.05718193203210831, + 0.07563785463571548, + -0.056564465165138245, + -0.021509673446416855, + 0.004366651643067598 + ], + "spiral-bold||*updated*,spin,rotate,dizzy": [ + -0.06812575459480286, + -0.050008151680231094, + -0.04329489916563034, + -0.016159724444150925, + -0.04696299880743027, + -0.03186174854636192, + 0.008458646014332771, + -0.061635613441467285, + 0.018036963418126106, + -0.044234875589609146, + 0.041895169764757156, + 0.05169918015599251, + -0.0020536761730909348, + -0.06408794969320297, + -0.030705193057656288, + 0.06928253918886185, + -0.017508704215288162, + 0.03247104585170746, + -0.010838637128472328, + 0.020977120846509933, + -0.09774760901927948, + -0.011283991858363152, + 0.01808859221637249, + 0.11961136758327484, + -0.011255952529609203, + 0.09336764365434647, + 0.06549250334501266, + -0.022616079077124596, + -0.004766979720443487, + -0.1301058828830719, + 0.02619735524058342, + 0.08176665008068085, + 0.0077701169066131115, + -0.02942279540002346, + -0.040012042969465256, + -0.03975655883550644, + -0.06498794257640839, + 0.012484756298363209, + -0.0020230812951922417, + 0.0047647785395383835, + 0.06265944987535477, + 0.0019771417137235403, + 0.03819720819592476, + 0.018984081223607063, + -0.01265128143131733, + -0.00941128097474575, + -0.04039764031767845, + -0.020426802337169647, + 0.005359692964702845, + 0.04013996198773384, + -0.04924239590764046, + -0.13349613547325134, + -0.11720834672451019, + -0.019405683502554893, + 0.009241104125976562, + 0.07217471301555634, + 0.04392419010400772, + -0.0544075109064579, + 0.0508723147213459, + -0.07587435096502304, + 0.07926949113607407, + -0.017901405692100525, + 0.01783624477684498, + 0.05431413650512695, + 0.004316242411732674, + 0.01587403565645218, + 0.0008102249121293426, + -0.05022110417485237, + 0.026482785120606422, + 0.018537413328886032, + 0.02705392986536026, + 0.039007723331451416, + -0.045616939663887024, + -0.05739640071988106, + -0.023338763043284416, + -0.04642622545361519, + 0.027872418984770775, + -0.07887313514947891, + -0.004541225731372833, + -0.03671307861804962, + -0.07567264884710312, + -0.058806344866752625, + -0.04871637374162674, + -0.010574395768344402, + 0.09430363029241562, + 0.0459582582116127, + -0.04319684952497482, + 0.006877357605844736, + -0.055151380598545074, + 0.02700551226735115, + 0.012804506346583366, + 0.03674263507127762, + -0.059557776898145676, + -0.04730617627501488, + -0.06635260581970215, + 0.08885298669338226, + 0.04587182402610779, + -0.0487346425652504, + -0.1073489561676979, + 0.06610922515392303, + 0.058604348450899124, + -0.028120242059230804, + 0.08791646361351013, + 0.04774315282702446, + -0.031058190390467644, + 0.007627863436937332, + 0.048741720616817474, + -0.02303958497941494, + -0.05635722726583481, + 0.021623684093356133, + -0.028957156464457512, + -0.020736344158649445, + -0.01464360672980547, + -0.04568784683942795, + 0.03964073210954666, + -0.029856322333216667, + -0.022440852597355843, + 0.029088502749800682, + 0.01753147505223751, + 0.1228935569524765, + 0.07484734803438187, + -0.014866024255752563, + -0.07201754301786423, + -0.053237445652484894, + -0.06995854526758194, + 0.02118137665092945, + -0.02226307988166809, + -2.9550315348359774e-33, + 0.04185032099485397, + 0.1066356897354126, + -0.03645136207342148, + 0.11008347570896149, + -0.009599637240171432, + -0.02929374948143959, + -0.06219442933797836, + -0.09967521578073502, + -0.02888117916882038, + 0.04427328333258629, + -0.0025481441989541054, + 0.08045493066310883, + -0.04487064480781555, + 0.04723677784204483, + 0.01454648282378912, + -0.12320835888385773, + 0.0809117928147316, + -0.006019914988428354, + -0.055776987224817276, + -0.019094251096248627, + -0.021553289145231247, + 0.05828366428613663, + -0.08789879828691483, + -0.07313895970582962, + -0.0343577116727829, + -0.013562897220253944, + 0.014059125445783138, + 0.0044194855727255344, + -0.07299293577671051, + 0.041738513857126236, + 0.06867479532957077, + 0.04532533511519432, + -0.03430018946528435, + 0.01173187606036663, + -0.0045009637251496315, + -0.006818685680627823, + -0.0797254890203476, + -0.06663230061531067, + 0.00018390642071608454, + 0.06219044327735901, + -0.03838186338543892, + -0.02445231005549431, + -0.07626275718212128, + 0.020517298951745033, + 0.058427900075912476, + 0.13592137396335602, + 0.007472597993910313, + 0.021288754418492317, + 0.08571001142263412, + 0.013505651615560055, + 0.005172933451831341, + 0.030178699642419815, + -0.044273942708969116, + -0.03531186282634735, + 0.05361391603946686, + 0.0004445347294677049, + 0.05856473371386528, + 0.026996435597538948, + -0.02493656426668167, + 0.0008242917247116566, + 0.08489129692316055, + 0.05080908536911011, + 0.0348331518471241, + -0.08020791411399841, + -0.01745295152068138, + 0.012631747871637344, + -0.027005506679415703, + -0.029699180275201797, + 0.037747032940387726, + -0.015748189762234688, + -0.04194604232907295, + 0.05063237249851227, + -0.000735119916498661, + 0.10610488802194595, + 0.02293669991195202, + -0.006916249170899391, + -0.00698539474979043, + -0.008521701209247112, + 0.04267966002225876, + -0.0889701172709465, + -0.03155657649040222, + -0.02200106717646122, + -0.06489580124616623, + -0.004145419225096703, + 0.03304494917392731, + 0.05245549604296684, + -0.027127956971526146, + -0.04017003998160362, + -0.0549728088080883, + 0.03245437517762184, + -0.023923158645629883, + 0.05230512470006943, + 0.0031121582724153996, + -0.012937777675688267, + -0.09010858088731766, + -1.5468947756182144e-34, + -0.07099652290344238, + -0.01179156731814146, + -0.0021787607111036777, + 0.04165264591574669, + -0.02779194712638855, + 0.07392499595880508, + -0.026750432327389717, + 0.03625055402517319, + 0.019446928054094315, + -0.00877994205802679, + 0.04348813742399216, + -0.005825021769851446, + -0.050353579223155975, + -0.018883338198065758, + 0.15189194679260254, + 0.02923264168202877, + 0.005426299292594194, + 0.00491703487932682, + 0.003476946149021387, + 0.029466573148965836, + -0.00329797575250268, + -0.004023096989840269, + -0.08833308517932892, + 0.06548299640417099, + 0.021145468577742577, + 0.027983319014310837, + 0.07896644622087479, + -0.02173725515604019, + 0.08059569448232651, + 0.03233690559864044, + -0.07104547321796417, + -0.004057693295180798, + 0.0314030796289444, + 0.028709908947348595, + -0.07836797088384628, + 0.08448313176631927, + 0.0518408827483654, + -0.09810105711221695, + -0.056123655289411545, + -0.021255215629935265, + -0.02675148844718933, + 0.019281722605228424, + 0.09555742889642715, + 0.031041940674185753, + -0.08168015629053116, + -0.04559672996401787, + 0.012191860005259514, + 0.03868908807635307, + -0.02279520407319069, + 0.10225403308868408, + 0.014414070174098015, + 0.0037756594829261303, + 0.031533241271972656, + 0.033729929476976395, + -0.03418467566370964, + -0.03136129677295685, + -0.012119107879698277, + -0.05341058596968651, + 0.033554743975400925, + -0.04888436198234558, + -0.08416975289583206, + 0.04989411681890488, + -0.03999226167798042, + -0.03417564556002617, + 0.014669802971184254, + -0.034468378871679306, + 0.02483086660504341, + -0.11621389538049698, + 0.005688322242349386, + 0.016981856897473335, + 0.04538857936859131, + 0.05028143152594566, + -0.03478819876909256, + -0.05525856092572212, + 0.0719582810997963, + -0.018402645364403725, + 0.04252566024661064, + -0.05095099285244942, + -0.016353139653801918, + -0.01872449740767479, + -0.020907867699861526, + 0.08861875534057617, + 0.012960278429090977, + -0.0028840447776019573, + -0.06616852432489395, + -0.019062407314777374, + -0.059200309216976166, + 0.019958194345235825, + 0.030037162825465202, + -0.020411057397723198, + 0.028033476322889328, + 0.05582387372851372, + -0.05483391135931015, + 0.010799978859722614, + -0.011688822880387306, + -1.926970405463635e-08, + -0.043414074927568436, + -0.014591916464269161, + -0.0238212738186121, + -0.003933351021260023, + 0.09347792714834213, + -0.013968206010758877, + 0.02905905246734619, + -0.07456578314304352, + -0.0499318428337574, + -0.043113723397254944, + 0.046952493488788605, + 0.0566142238676548, + 0.011327615939080715, + -0.034029748290777206, + 0.06447862833738327, + 0.024732675403356552, + -0.11577971279621124, + 0.08152582496404648, + -0.026530321687459946, + -0.03813169151544571, + 0.05341197922825813, + 0.04585997760295868, + 0.04366128891706467, + -0.02465548738837242, + 0.006948924157768488, + 0.03439703956246376, + -0.03815663233399391, + 0.024219637736678123, + -0.002088477136567235, + -0.0031888948287814856, + 0.09098567068576813, + 0.03308926150202751, + 0.05818093568086624, + -0.005833277478814125, + -0.17420415580272675, + -0.04662282392382622, + 0.033869266510009766, + 0.06588669866323471, + 0.012289798818528652, + 0.13786105811595917, + -0.02914545126259327, + 0.022793687880039215, + -0.02784341387450695, + 0.0029025229159742594, + -0.06730665266513824, + -0.015942446887493134, + 0.030570559203624725, + -0.06391476094722748, + -0.06430257856845856, + -0.07648662477731705, + -0.02443573996424675, + 0.007555114571005106, + 0.0683518722653389, + 0.07264980673789978, + -0.05537053197622299, + 0.017151903361082077, + 0.029713008552789688, + 0.08304408192634583, + -0.04946398362517357, + 0.005033128894865513, + 0.05138339847326279, + -0.03316823020577431, + 0.0075509268790483475, + -0.0283262487500906 + ], + "split-horizontal-bold||resize,columns": [ + 0.03652148321270943, + 0.009617021307349205, + -0.03171778470277786, + 0.07274918258190155, + 0.09496085345745087, + 0.0015761957038193941, + -0.03645173832774162, + -0.006690461654216051, + -0.04112008586525917, + 0.06325089186429977, + -0.0376131571829319, + 0.04811197146773338, + -0.022130586206912994, + -0.008847605437040329, + -0.0016535944305360317, + 0.03567659109830856, + -0.01965508982539177, + 0.11434333771467209, + -0.08766085654497147, + 0.0008311342098750174, + -0.0377252995967865, + -0.06247612461447716, + 0.003569364780560136, + 0.03473944962024689, + 0.024100685492157936, + 0.06386255472898483, + 0.01345136109739542, + 0.042895473539829254, + -0.008817466907203197, + -0.099015973508358, + 0.017013832926750183, + -0.006466406863182783, + 0.01681201159954071, + 0.015051392838358879, + 0.005614030174911022, + -0.002287487965077162, + -0.013096556067466736, + 0.03546513244509697, + -0.0205136239528656, + 0.06554386019706726, + 0.01058960985392332, + -0.10175029188394547, + -0.013763469643890858, + 0.028818998485803604, + -0.030126258730888367, + -0.08604324609041214, + -0.09092269092798233, + 0.010550590232014656, + 0.040321338921785355, + -0.04984602332115173, + -0.031582895666360855, + 0.02661232277750969, + -0.06550876051187515, + 0.096065454185009, + 0.03274809569120407, + -0.06720998883247375, + -0.07707764953374863, + -0.025375621393322945, + 0.08771486580371857, + 0.0020962655544281006, + -0.009173237718641758, + 0.0625922754406929, + 0.08034517616033554, + -0.0008705458021722734, + 0.014919149689376354, + -0.00940819550305605, + -0.06475480645895004, + 0.025761937722563744, + -0.03219739720225334, + 0.055979855358600616, + 0.0002883264678530395, + 0.0071237944066524506, + 0.005150479730218649, + -0.04565032944083214, + -0.0296120997518301, + 0.015509724617004395, + 0.04226698726415634, + 0.04297807067632675, + 0.005367798265069723, + 0.05581888183951378, + -0.054018180817365646, + 0.02876618318259716, + -0.05136053264141083, + 0.022785084322094917, + 0.012184025719761848, + -0.015420240350067616, + -0.07854128628969193, + -0.06356934458017349, + -0.05624355375766754, + -0.02689272351562977, + -0.02187447063624859, + 0.04959957301616669, + 0.005161297507584095, + 0.08330883830785751, + -0.08995071798563004, + -0.10063550621271133, + -0.016328109428286552, + -0.044763416051864624, + -0.032956767827272415, + 0.06855122745037079, + 0.009286305867135525, + 0.09605339914560318, + 0.04390611872076988, + -0.038624588400125504, + -0.03263315558433533, + -0.06023184582591057, + 0.0020713701378554106, + 0.03219103440642357, + 0.07037535309791565, + 0.020327012985944748, + 0.022311462089419365, + -0.03041188418865204, + -0.07039684057235718, + 0.0040267580188810825, + 0.025746138766407967, + -0.014395248144865036, + -0.054619815200567245, + -0.0419122688472271, + 0.10170676559209824, + 0.019371794536709785, + 0.041681788861751556, + 0.00975392572581768, + -0.07707306742668152, + -0.05368892103433609, + 0.0358295775949955, + 0.08365018665790558, + 0.03428350016474724, + -1.278860069029403e-33, + -0.06290492415428162, + 0.0836697667837143, + -0.000750098202843219, + 0.14152352511882782, + 0.06536514312028885, + 0.02116425335407257, + -0.09631376713514328, + -0.017443299293518066, + -0.07887488603591919, + 0.010109311901032925, + 0.09610483795404434, + 0.09159855544567108, + -0.02062368579208851, + 0.0018305013654753566, + 0.021794727072119713, + -0.07290472090244293, + 0.010170761495828629, + 0.04160774126648903, + -0.12495236098766327, + -0.035038262605667114, + -0.07237743586301804, + 0.03471466898918152, + 0.06224365532398224, + 0.03145098313689232, + 0.004291420336812735, + -0.16992518305778503, + 0.013790840283036232, + -0.048005297780036926, + -0.07510783523321152, + 0.01748710870742798, + -0.05361044779419899, + -0.01835206337273121, + 0.0010300627909600735, + -0.010005197487771511, + -0.007595584262162447, + 0.007330331485718489, + -0.0301777683198452, + 0.04575835168361664, + -0.013074229471385479, + 0.07878590375185013, + -0.06329011917114258, + -0.02246866375207901, + 0.07170888781547546, + -0.09496843814849854, + 0.010690752416849136, + 0.09282752871513367, + 0.010993288829922676, + -0.023128943517804146, + -0.012007555924355984, + -0.09705500304698944, + 0.06044233590364456, + 0.03310373052954674, + 0.046275414526462555, + -0.010911593213677406, + 0.10557156056165695, + -0.058300234377384186, + 0.02019217610359192, + 0.07104454934597015, + 0.1046900674700737, + -0.0186841432005167, + -0.06472072005271912, + -0.027957681566476822, + -0.01208092924207449, + 0.06207237392663956, + -0.03197362646460533, + 0.005735474638640881, + -0.04093284532427788, + 0.006888098549097776, + 0.02313155308365822, + 0.04340653866529465, + 0.03724547103047371, + 0.04863067343831062, + 0.05493856593966484, + 0.0006734367343597114, + -0.07675535976886749, + 0.02333454228937626, + 0.051716700196266174, + 0.006062679458409548, + 0.0666840672492981, + -0.1101171225309372, + 0.003983938600867987, + 0.035240571945905685, + 0.0005130899371579289, + -0.0002980670833494514, + -0.029497310519218445, + -0.02073688618838787, + -0.043751031160354614, + 0.0004037949547637254, + -0.04942493140697479, + -0.06838403642177582, + -0.07257459312677383, + -0.031886376440525055, + 0.039505500346422195, + -0.11223263293504715, + 0.0017543660942465067, + -6.732033188285201e-34, + 0.07361380755901337, + -0.009638280607759953, + -0.038890939205884933, + -0.10231328010559082, + 0.007969784550368786, + 0.02625490538775921, + -0.05331416800618172, + 0.09518586099147797, + -0.053185466676950455, + 0.026868674904108047, + 0.037585146725177765, + -0.03349434956908226, + -0.0818483754992485, + -0.015007083304226398, + -0.05372919142246246, + -0.039742667227983475, + 0.06648985296487808, + 0.048088230192661285, + 0.0030301841907203197, + -0.03418643772602081, + -0.018284592777490616, + 0.01557473000138998, + -0.0029956542421132326, + 0.1105160191655159, + 0.013578657992184162, + -0.01661812886595726, + 0.05937481299042702, + 0.0022215652279555798, + -0.033396512269973755, + -0.008013306185603142, + -0.06127959117293358, + -0.09158461540937424, + 0.01116195134818554, + 0.07186447083950043, + -0.03657529875636101, + 0.03876791149377823, + -0.06126362830400467, + 3.5019187635043636e-05, + 0.0881793275475502, + 0.03386453911662102, + -0.06600657105445862, + 0.011915599927306175, + -0.00152805563993752, + -0.0019899867475032806, + 0.0045563532039523125, + 0.01197925303131342, + 0.07970945537090302, + -0.019037222489714622, + 9.686079283710569e-05, + 0.020871588960289955, + 0.01544952392578125, + 0.032612331211566925, + 0.006515051703900099, + 0.027503622695803642, + -0.08372041583061218, + -0.05490391328930855, + 0.00031121159554459155, + 0.026083294302225113, + -0.13278016448020935, + 0.003963956609368324, + -0.03949424996972084, + 0.03276922553777695, + -0.06141887232661247, + -0.022627536207437515, + 0.09141197055578232, + -0.002545993309468031, + 0.03758801892399788, + -0.09661823511123657, + -0.0021524098701775074, + 0.011563597247004509, + 0.05368383601307869, + 0.0006956816068850458, + -0.00794951431453228, + 0.036540206521749496, + 0.05643778666853905, + -0.05180571600794792, + -0.009730787016451359, + -0.011321385391056538, + -0.023638036102056503, + 0.01667092926800251, + -0.05411595106124878, + -0.1234809160232544, + 0.05186482146382332, + -0.012323829345405102, + -0.06535080075263977, + 0.00206287344917655, + -0.0009061363525688648, + 0.01219244860112667, + -0.006799318362027407, + -0.06065874174237251, + -0.029128773137927055, + -0.03811799734830856, + 0.05546814575791359, + -0.005141137633472681, + -0.06020958721637726, + -1.7129105245317078e-08, + 0.029960794374346733, + -0.02744845487177372, + -0.09583663940429688, + 0.03217289224267006, + 0.04482128843665123, + -0.030567791312932968, + -0.028512319549918175, + -0.052031923085451126, + -0.007761992514133453, + 0.08157390356063843, + -0.004012986086308956, + 0.03898072987794876, + -0.017608311027288437, + 0.020009811967611313, + -0.005396720487624407, + -0.0454288013279438, + 0.003725726157426834, + 0.10890139639377594, + -0.004644100088626146, + -0.08452513068914413, + 0.05575241521000862, + 0.037480589002370834, + 0.013143474236130714, + 0.052710045129060745, + 0.024979377165436745, + -0.046698831021785736, + -0.12253473699092865, + 0.07253918796777725, + 0.08745504915714264, + 0.051085710525512695, + 0.005250412970781326, + 0.03020089492201805, + 0.03195349499583244, + 0.030358484014868736, + -0.006045415531843901, + -0.05385865643620491, + 0.03658422827720642, + 0.05293342471122742, + 0.03445526957511902, + -0.005473735276609659, + -0.07872205972671509, + 0.019217059016227722, + 0.023368539288640022, + -0.0067878831177949905, + -0.024249529466032982, + -0.009937839582562447, + 0.02544933184981346, + 0.10035887360572815, + -0.014497444964945316, + -0.07761744409799576, + 0.04921911284327507, + -0.02152692712843418, + 0.028718795627355576, + 0.010250617749989033, + -0.010813924483954906, + -0.024866465479135513, + -0.014582409523427486, + 0.14161986112594604, + -0.024421850219368935, + -0.04384510964155197, + 0.08953632414340973, + 0.023689916357398033, + -0.045760393142700195, + -0.011756286025047302 + ], + "split-vertical-bold||resize,rows": [ + -0.007012140471488237, + 0.0032191721256822348, + -0.00458312826231122, + 0.04569075256586075, + 0.04968877136707306, + 0.021060118451714516, + -0.04238692298531532, + -0.00936148501932621, + -0.03423755615949631, + 0.05312168225646019, + -0.05637529492378235, + 0.04694278538227081, + -0.0036186454817652702, + -0.018977012485265732, + 0.008562569506466389, + 0.09565529972314835, + -0.017344554886221886, + 0.10702476650476456, + -0.09907778352499008, + -0.02420554682612419, + -0.02244880236685276, + -0.021389426663517952, + -0.003234992967918515, + 0.021840836852788925, + 0.05442259833216667, + 0.046679720282554626, + 0.05105745419859886, + 0.040928952395915985, + 0.0321945995092392, + -0.05164241045713425, + 0.03452242538332939, + -0.030988400802016258, + 0.029561955481767654, + 0.06487639993429184, + 0.023036260157823563, + -0.00439628679305315, + -0.01156286709010601, + -0.012623485177755356, + -0.011647055856883526, + 0.09030753374099731, + 0.05901751294732094, + -0.10091838985681534, + -0.014264566823840141, + -0.018121616914868355, + -0.02820223942399025, + -0.06427295506000519, + -0.042269352823495865, + -0.0168154239654541, + 0.012894980609416962, + -0.04956594854593277, + -0.014408325776457787, + 0.003680403344333172, + -0.058365270495414734, + 0.07174506038427353, + 0.049844250082969666, + -0.03510483354330063, + -0.018223194405436516, + -0.059661973267793655, + 0.06891334801912308, + 0.01801007054746151, + 0.012064582668244839, + 0.060186777263879776, + 0.03871263563632965, + -0.008308433927595615, + 0.014158225618302822, + 0.002128799445927143, + -0.06584575772285461, + 0.055513061583042145, + -0.01936623826622963, + 0.07023225724697113, + 0.01285351999104023, + 0.040921904146671295, + -0.003924492746591568, + -0.001328621874563396, + -0.05714549869298935, + -0.059378743171691895, + 0.03346840664744377, + 0.009823264554142952, + 0.010375263169407845, + 0.05149085447192192, + -0.0610792376101017, + 0.003514628391712904, + -0.07431939244270325, + 0.0441289097070694, + 0.01850319281220436, + 0.024509631097316742, + -0.07814498990774155, + -0.0594666451215744, + -0.06978955119848251, + -0.044883642345666885, + 0.0016046266537159681, + 0.06539809703826904, + -0.0173580814152956, + 0.0808149054646492, + -0.06297276169061661, + -0.04759005084633827, + 0.024251475930213928, + -0.0885155126452446, + -0.02612384967505932, + 0.0612260177731514, + 0.005013454705476761, + 0.10281722992658615, + 0.024178922176361084, + -0.020687490701675415, + -0.07936049997806549, + -0.05107776075601578, + 0.03852274641394615, + -0.0017942157573997974, + 0.010547281242907047, + 0.027285538613796234, + 0.007652992848306894, + -0.041006069630384445, + -0.014266177080571651, + 0.016483640298247337, + -0.018031902611255646, + -0.031858544796705246, + -0.04352939873933792, + -0.04789191484451294, + 0.09335584938526154, + 0.02149978280067444, + 0.02693811245262623, + -0.00482496852055192, + -0.04049371927976608, + -0.003549933899194002, + 0.05495158210396767, + 0.07129839062690735, + 0.04391452670097351, + -1.101078211575544e-33, + -0.045761968940496445, + 0.05905226245522499, + 0.048953671008348465, + 0.11969725787639618, + 0.12233006209135056, + 0.03942534700036049, + -0.13276250660419464, + -0.048252519220113754, + -0.09565133601427078, + 0.03382866829633713, + 0.02527325414121151, + 0.04140719026327133, + -0.010283086448907852, + 0.01454844418913126, + 0.0020149925258010626, + -0.06093258038163185, + -0.00867095310240984, + 0.017375564202666283, + -0.11986146867275238, + -0.05743703246116638, + -0.08173082768917084, + 0.05297369882464409, + 0.08541514724493027, + 0.09051760286092758, + -0.06807088851928711, + -0.18002595007419586, + 0.027453092858195305, + -0.03310632333159447, + -0.07808657735586166, + 0.013838974758982658, + -0.07167089730501175, + -0.01680588908493519, + -0.031214922666549683, + -0.05627588927745819, + -0.05139564722776413, + 0.03778310492634773, + -0.04794934391975403, + 0.024274036288261414, + 0.015712767839431763, + 0.11770427227020264, + -0.032532401382923126, + 0.013236637227237225, + 0.08360464125871658, + -0.064867302775383, + 0.01984788477420807, + 0.08783089369535446, + 0.018019888550043106, + -0.03950038179755211, + -0.014896939508616924, + -0.048237260431051254, + 0.054293327033519745, + -0.011376812122762203, + 0.03129624202847481, + -0.03945179656147957, + 0.07833196967840195, + -0.08768298476934433, + 0.0029004986863583326, + 0.09100781381130219, + 0.09373778104782104, + 0.012375365011394024, + -0.0598205141723156, + -0.04478597640991211, + -0.015616741962730885, + 0.09737133234739304, + -0.03304398059844971, + 0.015597125515341759, + -0.01973501220345497, + 0.04318850487470627, + 0.06145673245191574, + 0.032010868191719055, + 0.04062848165631294, + 0.07272994518280029, + 0.05294347554445267, + -0.029511693865060806, + -0.05876067280769348, + -0.0010689434129744768, + 0.04452940449118614, + 0.009652610868215561, + 0.07686461508274078, + -0.08365146070718765, + 0.026665015146136284, + -0.00609446270391345, + 0.006181153003126383, + 0.02832145057618618, + -0.040575865656137466, + -0.01067207008600235, + -0.04731735587120056, + -0.015514642931520939, + -0.029656846076250076, + -0.02042505517601967, + -0.07839440554380417, + -0.050330545753240585, + 0.018478356301784515, + -0.1455640345811844, + 0.005623946897685528, + -1.7208793041825625e-34, + 0.07791092246770859, + 0.035285573452711105, + -0.01734064146876335, + -0.08359917253255844, + -0.0030206090305000544, + 0.007869351655244827, + -0.05604752525687218, + 0.10669200867414474, + -0.08183950185775757, + 0.036136455833911896, + 0.031428609043359756, + -0.004547423683106899, + -0.031479716300964355, + -0.044272635132074356, + -0.040896110236644745, + -0.04106554761528969, + 0.019709402695298195, + 0.036538973450660706, + 0.018570007756352425, + -0.03329673409461975, + 0.02591378428041935, + -0.01837146282196045, + -0.011816340498626232, + 0.09431853145360947, + 0.01995084248483181, + -0.03215494379401207, + 0.060855720192193985, + 0.041336022317409515, + -0.005586222745478153, + -0.0024185373913496733, + 0.017628390341997147, + -0.07291316241025925, + -0.024120140820741653, + 0.07656146585941315, + -0.029327932745218277, + 0.027168836444616318, + -0.04280567541718483, + -0.016737954691052437, + 0.07538524270057678, + 0.03135349228978157, + -0.051521819084882736, + 0.014017930254340172, + 0.00702715152874589, + -0.0013123927637934685, + -0.009834283031523228, + 0.03332837298512459, + 0.04121658578515053, + -0.049855902791023254, + -0.03629741817712784, + -0.015177834779024124, + -0.02255098521709442, + 0.006054678000509739, + 0.025240357965230942, + 0.04950372874736786, + -0.05750361084938049, + -0.08753947913646698, + 0.02759782411158085, + 0.034452058374881744, + -0.14177270233631134, + 0.008627071976661682, + -0.055277518928050995, + 0.023519078269600868, + -0.045626722276210785, + -0.045117057859897614, + 0.08214364945888519, + 0.024241715669631958, + 0.08697322756052017, + -0.0395255871117115, + -0.03760819137096405, + 0.021620873361825943, + 0.028585301712155342, + -0.012662321329116821, + 0.005922126118093729, + 0.012939256615936756, + -0.004478911403566599, + -0.04184024780988693, + -0.00805920735001564, + 0.007480053696781397, + -0.04539434239268303, + 0.04764392599463463, + -0.05637416988611221, + -0.10884961485862732, + 0.010790125466883183, + -0.039010707288980484, + -0.07855589687824249, + 0.00812456849962473, + 0.010466158390045166, + 0.04566999152302742, + 0.02545304410159588, + -0.06473929435014725, + -0.0637722834944725, + -0.057898834347724915, + 0.010394644923508167, + -0.021726902574300766, + -0.05318044498562813, + -1.672412786035693e-08, + -0.053367432206869125, + -0.040967848151922226, + -0.05385860055685043, + 0.056029997766017914, + 0.02627984806895256, + -0.036668818444013596, + -0.030498096719384193, + -0.0022944347001612186, + 0.023988643661141396, + 0.05745157599449158, + 0.028069226071238518, + 0.017282458022236824, + 0.009741680696606636, + 0.00853183027356863, + 0.008333837613463402, + -0.024351511150598526, + -0.024918224662542343, + 0.07249919325113297, + 0.006411925423890352, + -0.05742386728525162, + 0.017414836212992668, + 0.07353648543357849, + 0.028885552659630775, + 0.0549670048058033, + 0.005930276121944189, + -0.06458810716867447, + -0.16507145762443542, + 0.061072949320077896, + 0.09983104467391968, + 0.02185104973614216, + 0.024683963507413864, + 0.031959548592567444, + 0.09713952988386154, + 0.031374018639326096, + -0.059473004192113876, + -0.03721604123711586, + 0.043033234775066376, + 0.04869191721081734, + 0.050673190504312515, + -0.028469519689679146, + -0.06808895617723465, + -0.0100358622148633, + 0.05174923315644264, + -0.018613461405038834, + -0.03802197054028511, + -0.0046950336545705795, + 0.009168398566544056, + 0.08747647702693939, + 0.006301055662333965, + -0.06523490697145462, + 0.056765954941511154, + -0.030675098299980164, + 0.04845684766769409, + 0.045321736484766006, + -0.03552454337477684, + -0.035551685839891434, + -0.06682629883289337, + 0.14768068492412567, + -0.004044735804200172, + -0.041457075625658035, + 0.08702768385410309, + -0.015773681923747063, + -0.05734630674123764, + 0.001058820285834372 + ], + "spotify-logo-bold||music,player,streaming": [ + 0.06202031299471855, + -0.03309761732816696, + -0.0036583892069756985, + -0.016519902274012566, + 0.09307054430246353, + 0.026819881051778793, + 0.08817865699529648, + -0.03504742681980133, + 0.0385405607521534, + -0.013810769654810429, + -0.049574971199035645, + 0.0490475669503212, + 0.011626807041466236, + -0.08389312028884888, + 0.04758141562342644, + -0.050690896809101105, + 0.0010923767695203424, + 0.01564185321331024, + 0.046044062823057175, + -0.062034208327531815, + -0.0335858128964901, + -0.060791872441768646, + -0.03846867009997368, + -0.00040930695831775665, + 0.01911003887653351, + 0.0238671712577343, + 0.021967263892292976, + 0.03536933660507202, + -0.01130489632487297, + -0.07811030745506287, + 0.018472256138920784, + -0.010998165234923363, + 0.13044151663780212, + -0.04715966433286667, + -0.0012682039523497224, + -0.01949133537709713, + -0.025336522608995438, + -0.0656202957034111, + -0.060181185603141785, + 0.03251807391643524, + 0.08484779298305511, + -0.01589370332658291, + 0.0589388869702816, + -0.008530234917998314, + -0.07112257182598114, + -0.006504946853965521, + -0.05473635345697403, + -0.04400904104113579, + 0.011603863909840584, + 0.027049235999584198, + 0.03888906165957451, + -0.1276218444108963, + -0.06075078994035721, + -0.040271513164043427, + -0.03782780468463898, + -0.05007537826895714, + -0.01732797361910343, + 0.08734103292226791, + 0.08757448941469193, + 0.00011781133798649535, + 0.045646388083696365, + -0.025064842775464058, + 0.04698452353477478, + 0.013118773698806763, + 0.09337157011032104, + -0.025119837373495102, + -0.041808225214481354, + 0.07918783277273178, + -0.04029223322868347, + 0.07011319696903229, + 0.055500298738479614, + 0.07970784604549408, + 0.009800296276807785, + -0.0752049908041954, + -0.017818376421928406, + 0.01856122352182865, + 0.03533848002552986, + 0.01619482971727848, + -0.06295258551836014, + -0.032337937504053116, + -0.031660523265600204, + -0.017708124592900276, + -0.06652991473674774, + -0.04017451032996178, + 0.09391091763973236, + 0.028102664276957512, + 0.011714731343090534, + -0.07189781218767166, + -0.07915155589580536, + -0.017567262053489685, + -0.14245085418224335, + 0.09861227124929428, + 0.023961413651704788, + -0.02554570697247982, + -0.03270470350980759, + 0.055071812123060226, + -0.017115550115704536, + -0.053655099123716354, + -0.0009682439267635345, + 0.03809717670083046, + 0.036921434104442596, + 0.0828046128153801, + 0.06788019835948944, + 0.0037455332931131124, + 0.006416083313524723, + -0.05915530025959015, + -0.03798089921474457, + 0.1242033913731575, + 0.05047096312046051, + 0.058960024267435074, + 0.02286558784544468, + -0.02344760112464428, + -0.03931787610054016, + 0.03181732818484306, + -0.08588528633117676, + 0.049417901784181595, + -0.02858196757733822, + -0.0281838346272707, + 0.09007709473371506, + 0.019722972065210342, + 0.02388944663107395, + -0.03911250829696655, + -0.10380788892507553, + -0.049685221165418625, + -0.008540485985577106, + 0.01647193729877472, + 0.0342143177986145, + -3.046887051132131e-33, + -0.02186187170445919, + 0.009780487976968288, + -0.04262736812233925, + 0.008715025149285793, + 0.050352659076452255, + -0.03364158421754837, + -0.022199293598532677, + -0.015746120363473892, + -0.1095820739865303, + 0.05197012424468994, + 0.06948107481002808, + 0.04119747132062912, + 0.0007915542228147388, + 0.11074864864349365, + 1.4582090443582274e-05, + -0.10427000373601913, + -0.019877783954143524, + -0.008652448654174805, + -0.062276408076286316, + -0.07144157588481903, + -0.03867797926068306, + -0.01998111419379711, + -0.09687653183937073, + -0.0238956231623888, + -0.021279605105519295, + 0.0021960174199193716, + 0.052326787263154984, + -0.023275796324014664, + 0.030769258737564087, + -0.020609071478247643, + 0.02870180457830429, + -0.03596878424286842, + 0.08555138111114502, + 0.0083778640255332, + 0.016436109319329262, + -0.048669662326574326, + -0.037287842482328415, + 0.006394369527697563, + -0.008953507989645004, + -0.07841429114341736, + 0.0006596770253963768, + -0.06648513674736023, + -0.09378979355096817, + 0.00880151242017746, + -0.04838895797729492, + 0.08590507507324219, + -0.009359383024275303, + -0.08780019730329514, + 0.05175729840993881, + -0.01946689933538437, + -0.033755190670490265, + 0.036848071962594986, + -0.005688594188541174, + 0.006198523100465536, + 0.031704213470220566, + -0.046615809202194214, + -0.06579911708831787, + 0.08909065276384354, + 0.028380412608385086, + -0.02774214744567871, + 0.07244789600372314, + 0.0449041910469532, + 0.06542851030826569, + -0.05393575504422188, + -0.03741208091378212, + 0.13085287809371948, + 0.07487574219703674, + 0.021149123087525368, + 0.08872535079717636, + -0.039485640823841095, + -0.001394716207869351, + -0.0004571470490191132, + 0.08184611052274704, + 0.0470113568007946, + -0.07840768247842789, + 0.019933395087718964, + 0.007144522853195667, + 0.011556131765246391, + -0.025248240679502487, + 0.046028632670640945, + -0.06149175763130188, + -0.060866579413414, + -0.0347345806658268, + 0.10894351452589035, + -0.025433296337723732, + 0.014902174472808838, + 0.013774894177913666, + -0.043390221893787384, + -0.08814150094985962, + 0.023908305913209915, + -0.05159313604235649, + 0.026622040197253227, + 0.03550645709037781, + -0.016738872975111008, + -0.10213150829076767, + 1.3325021006902472e-33, + 0.038508083671331406, + 0.030519884079694748, + 0.07567307353019714, + -0.05952586606144905, + -0.0030976608395576477, + -0.028087040409445763, + 0.033480603247880936, + 0.057795263826847076, + -0.037511926144361496, + 0.04765981435775757, + 0.032526370137929916, + -0.015545365400612354, + -0.12024510651826859, + -0.013289562426507473, + -0.10789348185062408, + 0.016696806997060776, + 0.01860048808157444, + 0.04748327285051346, + -0.030630428344011307, + 0.006549225654453039, + -0.10926125943660736, + -0.048757098615169525, + -0.004854658152908087, + 0.07421357184648514, + -0.021543800830841064, + 0.03591456264257431, + 0.09144182503223419, + 0.03130088001489639, + -0.09537337720394135, + -0.012581979855895042, + 0.049209415912628174, + 0.025052038952708244, + -0.05520470067858696, + -0.04564420133829117, + 0.01678358018398285, + -0.017552034929394722, + 0.03130139783024788, + 0.03159411996603012, + 0.004442924167960882, + -0.0060542915016412735, + -0.05747806280851364, + 0.002457640366628766, + 0.029364634305238724, + 0.050902750343084335, + 0.027978086844086647, + 0.015018459409475327, + -0.007550254929810762, + -0.007974776439368725, + -0.08019769936800003, + 0.072811558842659, + 0.06016338989138603, + -0.04223322495818138, + 0.05683740973472595, + -0.002950992900878191, + -0.05065200477838516, + -0.0057784439995884895, + 0.02656722255051136, + 0.014665643684566021, + -0.019458472728729248, + 0.03490189090371132, + 0.07348912209272385, + -0.03647471219301224, + -0.04205322265625, + -0.030277539044618607, + 0.026233572512865067, + 0.05296914651989937, + 0.054222431033849716, + 0.00030675498419441283, + -0.013017567805945873, + 0.09341026097536087, + -0.05497310310602188, + -0.02877022884786129, + -0.01479603722691536, + 0.06726539880037308, + -0.03894903138279915, + -0.004342221654951572, + 0.039111290127038956, + 0.03943181410431862, + -0.05560372769832611, + 0.007860012352466583, + 0.01107029803097248, + 0.022716065868735313, + -0.047625936567783356, + -0.0562187097966671, + 0.06478376686573029, + 0.0328160896897316, + 0.013041083700954914, + 0.016390342265367508, + -0.040328770875930786, + 0.009019529446959496, + -0.0717243179678917, + 0.05882984772324562, + -0.017756933346390724, + -0.015135856345295906, + -0.03247591480612755, + -1.6589293494462254e-08, + -0.08003293722867966, + -0.018688438460230827, + 0.015622747130692005, + -0.0034161689691245556, + 0.005441569723188877, + 0.043691106140613556, + -0.023389233276247978, + -0.11310377717018127, + 0.06050378456711769, + -0.05296920984983444, + -0.06786686182022095, + -0.11068049818277359, + -0.0524621345102787, + -0.03109017014503479, + 0.0031894973944872618, + -0.0008709289249964058, + -0.10892107337713242, + 0.08785958588123322, + -0.031762100756168365, + -0.004945816472172737, + -0.04930175095796585, + 0.0931665450334549, + 0.0166151262819767, + -0.032401081174612045, + 0.026211773976683617, + 0.019544804468750954, + 0.07630671560764313, + 0.009770628064870834, + 0.057226479053497314, + 0.007383306510746479, + 0.02236887812614441, + 0.0972471833229065, + 0.021237453445792198, + -0.04107847809791565, + -0.03778797760605812, + -0.004911843221634626, + -0.009145881049335003, + 0.015287758782505989, + -0.10353749990463257, + 0.058577295392751694, + 0.054473843425512314, + 0.05862990766763687, + -0.020098423585295677, + -0.04100913181900978, + -0.07061208039522171, + -0.025992341339588165, + 0.05537422001361847, + 0.07607486844062805, + -0.02037726901471615, + 0.0017514392966404557, + -0.006457024719566107, + 0.009407456032931805, + -0.024774886667728424, + 0.016434308141469955, + 0.028531042858958244, + -0.0916827991604805, + -0.008945491164922714, + 0.07645075023174286, + -0.023470090702176094, + 0.0535791739821434, + 0.07907409220933914, + -0.024060267955064774, + 0.045758239924907684, + 0.058446791023015976 + ], + "spray-bottle-bold||*new*,cleaner,cleaning": [ + -0.044399507343769073, + 0.0035623705480247736, + 0.0074953967705369, + -0.027456654235720634, + 0.08104582875967026, + -0.004354916512966156, + 0.10402017831802368, + -0.04517998918890953, + -0.034405890852212906, + -0.060491893440485, + 0.03381650522351265, + 0.048256173729896545, + 0.005211940500885248, + 0.007034620735794306, + 0.012929831631481647, + 0.06231216341257095, + 0.014740366488695145, + 0.023561595007777214, + -0.025494378060102463, + -0.014297440648078918, + -0.01656191237270832, + 0.044759005308151245, + 0.006893955171108246, + 0.07875238358974457, + -0.04213180020451546, + 0.056053075939416885, + 0.032087404280900955, + -0.010502217337489128, + 0.07330407947301865, + -0.06343194097280502, + 0.04560326412320137, + 0.08522523939609528, + 0.0639122724533081, + -0.03702665865421295, + 0.06446023285388947, + -0.027089284732937813, + -0.04515023157000542, + -0.010614120401442051, + 0.060704074800014496, + 0.03389083221554756, + 0.05978696048259735, + -0.09104745090007782, + -0.10502637922763824, + 0.09601450711488724, + -0.049374714493751526, + 0.017683120444417, + 0.00039628142258152366, + 0.06946537643671036, + 0.10804063081741333, + -0.008557531051337719, + -0.01817195490002632, + -0.11501599848270416, + -0.09686188399791718, + -0.07805228233337402, + 0.029488036409020424, + -0.057634104043245316, + 0.013322368264198303, + -0.059448111802339554, + 0.010117219761013985, + 0.003824950661510229, + 0.03810448199510574, + 0.03124169260263443, + 0.010107466019690037, + 0.10627681761980057, + 0.04216402396559715, + -0.02653280645608902, + -0.03949566185474396, + 0.04766394570469856, + -0.02331080473959446, + 0.09555274248123169, + -0.029850739985704422, + 0.03352755680680275, + -0.03811405599117279, + 0.08135853707790375, + -0.032441653311252594, + -0.0026266302447766066, + 0.015489310026168823, + -0.017404431477189064, + -0.0604536235332489, + -0.000537363812327385, + -0.05028863623738289, + -0.1087011769413948, + -0.0634310245513916, + 0.017996931448578835, + 0.06759141385555267, + 0.06911607086658478, + -0.09069695323705673, + -0.13191471993923187, + 0.008975669741630554, + -0.050558753311634064, + -0.043380897492170334, + 0.04874873906373978, + -0.062278326600790024, + -0.03662436828017235, + -0.10346516221761703, + 0.011625006794929504, + 0.011730436235666275, + 0.0086289681494236, + -0.030052006244659424, + 0.15756802260875702, + -0.040251996368169785, + 0.029397234320640564, + -0.04712864011526108, + -0.05010799691081047, + -0.04825824499130249, + -0.001806693966500461, + -0.009496601298451424, + -0.026522377505898476, + 0.0010368903167545795, + 0.06793186813592911, + -0.0934835895895958, + -0.0835271030664444, + -0.01544709037989378, + -0.038262709975242615, + -0.05860864371061325, + -0.033840958029031754, + -0.00891616940498352, + -0.022955933585762978, + 0.00826345756649971, + 0.013025901280343533, + 0.060146503150463104, + -0.06450413912534714, + -0.09540762007236481, + -0.050089750438928604, + -0.02969256602227688, + 0.00533581105992198, + 0.05246473476290703, + -5.0561365861186276e-33, + 0.06078765168786049, + 0.06063266843557358, + -0.005597026087343693, + 0.11980990320444107, + -0.02522447146475315, + 0.06053605675697327, + 0.014578632079064846, + -0.03850644454360008, + -0.014271240681409836, + 0.08037266135215759, + 0.07105740904808044, + -0.035860903561115265, + -0.08563737571239471, + 0.07764528691768646, + 0.015440710820257664, + -0.008342585526406765, + 0.014169877395033836, + -0.031559593975543976, + -0.04344131052494049, + 0.029256999492645264, + -0.021322274580597878, + 0.11471735686063766, + -0.09346295148134232, + -0.002566841896623373, + -0.07656395435333252, + -0.030030688270926476, + 0.009597346186637878, + -4.021906988782575e-06, + -0.014678198844194412, + 0.04790862649679184, + 0.028956053778529167, + 0.024196866899728775, + 0.0018189636757597327, + 0.09073622524738312, + -0.09195750206708908, + -0.025144511833786964, + -0.09015385061502457, + -0.033398501574993134, + 0.04722382500767708, + -0.026274677366018295, + -0.0821799784898758, + 0.04011363163590431, + 0.02719517983496189, + -0.031560204923152924, + 0.007022111676633358, + 0.06784794479608536, + -0.07811415195465088, + -0.042853448539972305, + 0.07544304430484772, + -0.025126153603196144, + 0.0014898559311404824, + 0.0298808254301548, + 0.01552271656692028, + 0.07147466391324997, + -0.050881367176771164, + 0.0019528304692357779, + -0.04654726758599281, + 0.028011105954647064, + 0.03930311277508736, + -0.024577870965003967, + -0.0145928505808115, + 0.07982517033815384, + -0.019699659198522568, + 0.03430710360407829, + 0.05369800701737404, + 0.014673533849418163, + -0.011831352487206459, + 0.10772427916526794, + 0.13112589716911316, + -0.029194621369242668, + -0.04551876708865166, + 0.1045306846499443, + -0.062158241868019104, + 0.053115591406822205, + -0.02182311937212944, + -0.03894471377134323, + 0.07316667586565018, + -0.010210616514086723, + 0.07857286930084229, + -0.07105014473199844, + -0.03560816869139671, + -0.011226747184991837, + -0.023600151762366295, + 0.08908773958683014, + -0.031029151752591133, + 0.01751015894114971, + -0.010531856678426266, + -0.0059836916625499725, + -0.014731091447174549, + 0.003230450674891472, + -0.01535247452557087, + -0.03764250501990318, + -0.03525649383664131, + -0.052745528519153595, + -0.06988798081874847, + -2.1987869787970514e-34, + 0.07702209800481796, + -0.004991660825908184, + 0.03126201778650284, + 0.049856871366500854, + -0.05914388969540596, + 0.0010275129461660981, + 0.01001115795224905, + 0.048211243003606796, + -0.001307956874370575, + 0.027896370738744736, + 0.002251717960461974, + 0.015448672696948051, + -0.036496929824352264, + -0.015726547688245773, + 0.023263493552803993, + 0.060144491493701935, + 0.03562336787581444, + -0.02062024548649788, + -0.06624864041805267, + 0.021869946271181107, + -0.006457631941884756, + 0.02716703712940216, + 0.011583705432713032, + 0.012371974065899849, + -0.03600542992353439, + -0.07826680690050125, + 0.025209946557879448, + 0.01081451028585434, + 0.010425005108118057, + -0.016747934743762016, + -0.04101799800992012, + -0.003256271593272686, + -0.007227515336126089, + 0.06822390854358673, + -0.04817793518304825, + -0.043863117694854736, + 0.06588548421859741, + -0.06442300975322723, + -0.009719861671328545, + 0.01926274597644806, + 0.04736452177166939, + -0.049290161579847336, + -0.0057455999776721, + 0.030595429241657257, + -0.008691124618053436, + 0.0030716003384441137, + -0.07110980153083801, + -0.07004588842391968, + -0.006744778715074062, + -0.0075250049121677876, + 0.017760490998625755, + 0.011343144811689854, + -0.06158490851521492, + 0.0217729564756155, + -0.02139780856668949, + -0.03222101181745529, + 0.027959922328591347, + -0.0854252502322197, + -0.01625426486134529, + 0.07690548151731491, + 0.004899710416793823, + 0.07385503500699997, + -0.11992897838354111, + 0.011885671876370907, + -0.07120273262262344, + -0.11984582990407944, + 0.027653297409415245, + 0.06111137196421623, + 0.039237912744283676, + -0.009728475473821163, + 0.004561415407806635, + 0.09423138201236725, + -0.02552926540374756, + -0.020877065137028694, + -0.04712726175785065, + -0.10557340085506439, + -0.013394508510828018, + -0.07809516787528992, + -0.01925833709537983, + 0.010654211044311523, + -0.050387922674417496, + -0.020287171006202698, + -0.037571217864751816, + 0.01755266822874546, + 0.009680327959358692, + -0.03634510189294815, + -0.06781813502311707, + 0.006224080454558134, + -0.008178859949111938, + -0.0540948361158371, + -0.055008433759212494, + 0.06786040216684341, + -0.032891131937503815, + 0.03170432150363922, + -0.03218905255198479, + -2.1640753189444695e-08, + -0.025106001645326614, + 0.010820225812494755, + 0.0722699910402298, + 0.01497417688369751, + 0.06690461933612823, + -0.02368437871336937, + -0.1037667915225029, + 0.022098561748862267, + -0.011183425784111023, + -0.0916111171245575, + 0.05332641676068306, + 0.07382924109697342, + -0.04749796912074089, + -0.005122057627886534, + 0.02695135958492756, + 0.009944461286067963, + -0.058341749012470245, + 0.005100602749735117, + -0.04066767543554306, + -0.06389056146144867, + -0.061778582632541656, + 0.09513957053422928, + 0.024946341291069984, + -0.05316447094082832, + -0.001412165816873312, + -8.482502744300291e-05, + -0.004484257195144892, + 0.04954187199473381, + 0.01626499928534031, + 0.03465230017900467, + 0.049548450857400894, + 0.05795257166028023, + -0.05791596695780754, + 0.022833673283457756, + -0.07627727836370468, + -0.030980097129940987, + -0.05567162483930588, + 0.004970752168446779, + -0.01189025491476059, + 0.02395426109433174, + -0.07076716423034668, + 0.05201880633831024, + -0.07884030044078827, + -0.004617974627763033, + 0.009802088141441345, + -0.029121950268745422, + 0.04891563951969147, + -0.04751209914684296, + -0.066788449883461, + -0.09360222518444061, + 0.03568760305643082, + -0.00015947392967063934, + 0.02204202488064766, + 0.07178487628698349, + 0.04340319335460663, + -0.00806734524667263, + -0.006536670960485935, + 0.018395544961094856, + 0.000772859959397465, + 0.010477510280907154, + 0.1053377240896225, + -0.03890088573098183, + 0.09584725648164749, + -0.012981322593986988 + ], + "square-bold||4,shapes,polygons,box": [ + 0.1461072713136673, + 0.03944835439324379, + 0.0008518424001522362, + 0.08202674239873886, + -0.018980195745825768, + -0.006585378665477037, + 0.00033948797499760985, + -0.08109983801841736, + 0.01035875454545021, + -0.026278173550963402, + -0.0646919533610344, + 0.03446832671761513, + 0.019344080239534378, + -0.013074327260255814, + -0.057622261345386505, + -0.01679391786456108, + 0.0059082992374897, + 0.03385930135846138, + -0.017206862568855286, + 0.010629968717694283, + 0.0067476751282811165, + -0.050210244953632355, + -0.006498265545815229, + 0.012796154245734215, + -0.006947685964405537, + 0.016691507771611214, + 0.07867595553398132, + 0.02156919054687023, + 0.03430710360407829, + -0.10445114970207214, + 0.013202170841395855, + 0.004257848020642996, + 0.0900731235742569, + 0.03024986758828163, + -0.034728240221738815, + 0.007961374707520008, + -0.04606778174638748, + 0.03176789730787277, + 0.07333572208881378, + 0.05622613802552223, + -0.0035912501625716686, + -0.06367446482181549, + 0.06695877015590668, + 0.051052600145339966, + -0.03218826279044151, + -0.011091426946222782, + -0.07709568738937378, + -0.041018690913915634, + 0.02774909697473049, + -0.10471685975790024, + 0.02254387177526951, + -0.10270637273788452, + -0.07795614004135132, + -0.011011779308319092, + -0.018895525485277176, + -0.04059182479977608, + -0.058750905096530914, + -0.044692929834127426, + 0.07837388664484024, + -0.022866591811180115, + 0.06898002326488495, + 0.03276418522000313, + 0.061035219579935074, + 0.02731289342045784, + -0.027431542053818703, + 0.10475923866033554, + -0.02764863707125187, + 0.013890393078327179, + -0.05701715126633644, + -0.00011900586832780391, + 0.07217581570148468, + 0.13625286519527435, + 0.00582882622256875, + -0.05802019312977791, + 0.005431909579783678, + -0.09337707608938217, + 0.008708307519555092, + -0.03143720701336861, + -0.015409084036946297, + 0.004590395372360945, + -0.1266363561153412, + 0.0147556709125638, + -0.024437494575977325, + 0.016617801040410995, + -0.02092503383755684, + 0.087358258664608, + -0.08415878564119339, + -0.060861602425575256, + -0.0656038448214531, + -0.01100651640444994, + -0.03087863139808178, + 0.040390390902757645, + 0.02744523622095585, + 0.07070188969373703, + -0.07731925696134567, + -0.007590934634208679, + 0.05240859091281891, + -0.007420082576572895, + -0.03812708333134651, + 0.03704405948519707, + 0.0839809700846672, + -0.023676807060837746, + 0.030688654631376266, + -0.06041597202420235, + 0.04321125149726868, + -0.006602133624255657, + 0.06694236397743225, + -0.03321439027786255, + 0.04796919226646423, + 0.03842589631676674, + -0.06026654690504074, + -0.09290753304958344, + -0.01285629253834486, + -0.016325484961271286, + -0.08296526223421097, + -0.022793155163526535, + -0.06372153759002686, + -0.05635471269488335, + 0.05779358372092247, + 0.00971168838441372, + 0.07062151283025742, + -0.039729274809360504, + 0.007120534777641296, + -0.049153391271829605, + 0.025945540517568588, + 0.04683941602706909, + -0.009372321888804436, + -1.5610533754851284e-33, + 0.018795015290379524, + 0.04350058734416962, + 0.02218482829630375, + 0.13554731011390686, + 0.07798221707344055, + -0.030882127583026886, + 0.008177326060831547, + -0.11627055704593658, + -0.0035817092284560204, + 0.08120297640562057, + -0.07310418784618378, + 0.02301444485783577, + -0.06390483677387238, + 0.03600558638572693, + 0.1054365262389183, + -0.053996264934539795, + 0.013549480587244034, + 0.018070252612233162, + -0.060576651245355606, + -0.001896914909593761, + -0.06173793599009514, + 0.022311639040708542, + -0.08702670782804489, + 0.048350989818573, + -0.04503995552659035, + 0.03844255581498146, + 0.038291752338409424, + 0.02012518420815468, + -0.028552988544106483, + 0.05114294961094856, + 0.022426100447773933, + 0.036726899445056915, + -0.013994312845170498, + 0.028683343902230263, + 0.00010010866390075535, + -0.027480440214276314, + 0.01638975366950035, + -0.003752398770302534, + 0.053724244236946106, + 0.029627060517668724, + -0.0173008032143116, + -0.06325774639844894, + 0.04752695932984352, + -0.028663359582424164, + 0.0939129889011383, + 0.07163583487272263, + 0.023760400712490082, + -0.05172901228070259, + -0.03111473098397255, + 0.003766409121453762, + 0.001704158028587699, + 0.04476476088166237, + 0.016017504036426544, + 0.020154235884547234, + 0.04035390168428421, + -0.10978072136640549, + -0.09703147411346436, + 0.07265468686819077, + 0.057441044598817825, + 0.09495756775140762, + 0.04877009987831116, + 0.00949582364410162, + -0.02646430768072605, + -0.0330810546875, + -0.08603417873382568, + 0.016277721151709557, + -0.07784415036439896, + -0.037317633628845215, + -0.03809841349720955, + 0.002728915074840188, + 0.05427234619855881, + 0.03073890134692192, + 0.010669148527085781, + 0.003270210698246956, + -0.016405973583459854, + 0.05309493839740753, + -0.00749128358438611, + 0.01157569233328104, + 0.061039719730615616, + -0.0932656079530716, + -0.07128491252660751, + 0.03435690328478813, + -0.10223221778869629, + -0.05347965657711029, + 0.006492303684353828, + -0.019141603261232376, + 0.06368327140808105, + -0.019157642498612404, + -0.004786623641848564, + 0.01728249527513981, + -0.11697351932525635, + -0.03619745001196861, + 0.01262428518384695, + -0.014203115366399288, + -0.06931723654270172, + 2.1999851378613396e-36, + -0.03821396455168724, + 0.07718998193740845, + -0.04451819136738777, + -0.02617434412240982, + 0.008763526566326618, + 0.034710031002759933, + 0.019490152597427368, + -0.003925883211195469, + 0.00027497397968545556, + 0.019434988498687744, + 0.021571900695562363, + -0.03385951370000839, + -0.0470769889652729, + -0.04604213684797287, + -0.025747746229171753, + 0.04862387850880623, + 0.03509610891342163, + -0.011681106872856617, + -0.08925164490938187, + -0.04671001061797142, + -0.07299832999706268, + -0.02636690065264702, + -0.073941670358181, + 0.056632641702890396, + -0.06038936972618103, + 0.06529442965984344, + -0.0041466508992016315, + -0.04202967882156372, + -0.022231563925743103, + 0.06739752739667892, + -0.03594277426600456, + -0.08005860447883606, + 0.01890948787331581, + 0.09288351982831955, + -0.10991951078176498, + -0.041632261127233505, + 0.058042000979185104, + -0.07035031169652939, + 0.06421556323766708, + -0.014327940531075, + 0.012598682194948196, + -0.018606100231409073, + 0.004312731791287661, + 0.0888587161898613, + -0.03133145719766617, + 0.0017164897872135043, + 0.01392724271863699, + -0.04586955904960632, + 0.005570197477936745, + -0.002353652147576213, + -0.05675174668431282, + -0.027401145547628403, + 0.03701714053750038, + 0.020981967449188232, + -0.03363019973039627, + -0.0071671996265649796, + -0.0662599727511406, + 0.06138500198721886, + 0.01566634513437748, + 0.07132451236248016, + -0.06199958920478821, + 0.007021951489150524, + 0.02120295725762844, + 0.04799328371882439, + 0.044909343123435974, + -0.024749357253313065, + 0.06698305159807205, + -0.03500545397400856, + -0.020842939615249634, + 0.04538089781999588, + 0.06219307705760002, + 0.040964893996715546, + -0.05736684054136276, + 0.04439631104469299, + 0.006982286460697651, + -0.025815768167376518, + -0.01746547967195511, + 0.010846426710486412, + -0.03649723902344704, + 0.09840845316648483, + -0.03856658563017845, + -0.003802486229687929, + 0.031029287725687027, + 0.003358477493748069, + -0.018341200426220894, + -0.047856252640485764, + 0.03765581548213959, + 0.055045489221811295, + 0.019020186737179756, + -0.02965964563190937, + -0.03432542458176613, + 0.05780522897839546, + 0.01025401707738638, + 0.007175920996814966, + 0.004234058782458305, + -1.8319537886668513e-08, + -0.005313551053404808, + -0.038281526416540146, + -0.014245578087866306, + -0.04756023734807968, + -0.012538961134850979, + -0.06101664900779724, + -0.022255830466747284, + -0.016656942665576935, + -0.0738464817404747, + -0.02561141736805439, + 0.0129515016451478, + 0.023888640105724335, + -0.13515254855155945, + -0.022197943180799484, + 0.04361499845981598, + 0.007118675857782364, + -0.045951612293720245, + 0.07235492020845413, + 0.008971331641077995, + -0.04144575446844101, + 0.04615560546517372, + 0.006794452201575041, + 0.043452080339193344, + 0.05959312245249748, + -0.04492441937327385, + 0.009547226130962372, + -0.02070530131459236, + 0.006054491735994816, + 0.08272253721952438, + 0.10147293657064438, + 0.034122757613658905, + 0.050928935408592224, + 0.06066250801086426, + 0.00012783679994754493, + -0.05468321964144707, + -0.07379035651683807, + -0.08417649567127228, + 0.012889982201159, + -0.053042396903038025, + 0.09852048754692078, + 0.011682956479489803, + -0.08514063060283661, + 0.06173335015773773, + -0.06257084757089615, + 0.051992710679769516, + 0.0833742767572403, + 0.01525593176484108, + -0.02838786691427231, + -0.04673459380865097, + -0.07161986827850342, + -0.04288020730018616, + -0.006049435120075941, + 0.019874777644872665, + 0.16128964722156525, + -0.035802096128463745, + -0.06591848284006119, + -0.014799323864281178, + 0.06990358233451843, + 0.07477543503046036, + -0.01794108748435974, + 0.06223110109567642, + 0.0870947390794754, + -0.015943892300128937, + -0.006196760106831789 + ], + "square-half-bold||4,shapes,polygons,box,columns,sidebar,split vertical": [ + 0.08403916656970978, + 0.041800934821367264, + 0.024717632681131363, + 0.05416643247008324, + 0.01681959629058838, + -0.030035613104701042, + -0.07215101271867752, + -0.04787217825651169, + -0.028827859088778496, + -0.011277936398983002, + -0.03837203234434128, + 0.03807734325528145, + 0.0293023232370615, + -0.02484911121428013, + -0.032494936138391495, + 0.005794974975287914, + 0.02803848311305046, + 0.00276371487416327, + -0.03563578426837921, + 0.030071550980210304, + -0.0381619930267334, + -0.08372543752193451, + -0.035231880843639374, + 0.020831571891903877, + 0.004151744302362204, + 0.054573290050029755, + 0.05379142612218857, + 0.03694088011980057, + 0.032109543681144714, + -0.10731219500303268, + 0.015246334485709667, + 0.011830653063952923, + 0.1004849523305893, + 0.03298303484916687, + -0.07014454156160355, + -0.021532563492655754, + 0.02509511448442936, + 0.029231196269392967, + 0.04001667723059654, + 0.05911831185221672, + -0.017738739028573036, + -0.09437894076108932, + 0.008564027026295662, + 0.08861710876226425, + -0.010269105434417725, + -0.0406014621257782, + -0.10769810527563095, + -0.036093395203351974, + 0.023082736879587173, + -0.04085659608244896, + 0.014057890512049198, + -0.06816878169775009, + -0.08705155551433563, + 0.037331920117139816, + -0.004018954001367092, + -0.041018325835466385, + -0.07606343179941177, + -0.02964075095951557, + 0.08997483551502228, + 0.016902992501854897, + 0.04073761776089668, + 0.054325252771377563, + 0.027230216190218925, + 0.034158285707235336, + -0.008277424611151218, + 0.03643418475985527, + -0.06260999292135239, + 0.042018260806798935, + -0.044513195753097534, + 0.010769110172986984, + 0.05192996934056282, + 0.08028791844844818, + -0.01758819818496704, + -0.0518697164952755, + 0.024475451558828354, + -0.12178817391395569, + 0.026606271043419838, + -0.033420488238334656, + -0.009230244904756546, + -0.017015991732478142, + -0.12000401318073273, + 0.022204643115401268, + -0.03387802466750145, + 0.019010746851563454, + -0.016360454261302948, + 0.04213576391339302, + -0.0533008798956871, + -0.028023499995470047, + -0.049763720482587814, + -0.021888742223381996, + -0.05481334775686264, + 0.03459206968545914, + 0.0816742405295372, + 0.04449725151062012, + -0.0633552074432373, + 0.011790730990469456, + 0.03960948809981346, + -0.04821411892771721, + -0.04243459552526474, + 0.05414818599820137, + 0.04773951321840286, + -0.01770169474184513, + 0.06715976446866989, + -0.07383554428815842, + 0.03596647083759308, + -0.028836997225880623, + 0.05355331674218178, + -0.023079296573996544, + 0.06017638370394707, + 0.037806201726198196, + -0.03973514586687088, + -0.06569106131792068, + -0.034675564616918564, + -0.04885907098650932, + -0.046358563005924225, + -0.03807305172085762, + -0.07600630074739456, + -0.04055272042751312, + 0.0924144983291626, + 0.017337216064333916, + 0.030888579785823822, + -0.026520388200879097, + -0.017383748665452003, + -0.047275360673666, + 0.03876965120434761, + 0.044415224343538284, + -0.02611464448273182, + -8.276405931590177e-34, + 0.009965725243091583, + 0.04029661789536476, + 0.001857025665231049, + 0.15068671107292175, + 0.07296095043420792, + -0.024868972599506378, + -0.029356423765420914, + -0.08947288244962692, + -0.04647168889641762, + 0.07762496918439865, + -0.004670902621001005, + 0.05098576471209526, + -0.08909062296152115, + 0.09572789818048477, + 0.11182864755392075, + -0.0897759199142456, + 0.02184104546904564, + 0.0031413077376782894, + -0.08879674971103668, + -0.05431356653571129, + -0.09233333170413971, + 0.023484742268919945, + -0.03907833248376846, + 0.04298483580350876, + -0.025601767003536224, + -0.02803357131779194, + 0.06694862991571426, + -0.01016862690448761, + -0.0480809360742569, + 0.04885188862681389, + 0.019482243806123734, + 0.02870110608637333, + -0.0016345774056389928, + -0.020513834431767464, + -0.001129421521909535, + -0.041110243648290634, + 0.002775461645796895, + 0.007850171998143196, + 0.02849949710071087, + 0.05029980093240738, + -0.08107685297727585, + -0.07360736280679703, + 0.02080603316426277, + -0.0735563412308693, + 0.06158509477972984, + 0.07621791958808899, + 0.044708747416734695, + -0.02174931764602661, + 0.013902452774345875, + -0.03801502659916878, + 0.0008683404885232449, + 0.039755210280418396, + 0.019310826435685158, + 0.006932579912245274, + 0.03362233564257622, + -0.09458263963460922, + -0.046071138232946396, + 0.0953836515545845, + 0.06953776627779007, + 0.06873661279678345, + 0.014613442122936249, + 0.026855429634451866, + -0.03194005414843559, + -0.03241970017552376, + -0.10439157485961914, + -0.009703725576400757, + -0.06967814266681671, + -0.03366897255182266, + -0.02866598218679428, + -0.02744762971997261, + 0.02650606259703636, + 0.027706589549779892, + 0.03934860974550247, + -0.002619453240185976, + -0.03847048059105873, + 0.029769476503133774, + 0.014603391289710999, + -0.0008717915043234825, + 0.05297543480992317, + -0.06787305325269699, + -0.04035191610455513, + 0.0036968516651540995, + -0.05321114882826805, + -0.06371849775314331, + -0.011786211282014847, + -0.0370427630841732, + 0.06813638657331467, + -0.028301795944571495, + -0.04693233594298363, + -0.02407446689903736, + -0.13491037487983704, + -0.0277841966599226, + 0.04094962403178215, + -0.030830392614006996, + -0.03825696185231209, + -1.0951693320817466e-33, + -0.039874766021966934, + 0.029410652816295624, + -0.057357560843229294, + -0.022588606923818588, + 0.01246845256537199, + 0.024553146213293076, + 0.011013388633728027, + 0.04611891135573387, + 0.00406779907643795, + 0.05264130234718323, + 0.06992310285568237, + 0.0020414411555975676, + -0.05054207518696785, + -0.05092751979827881, + -0.036458570510149, + 0.06493226438760757, + 0.06323572993278503, + 0.006880292668938637, + -0.05891963839530945, + -0.04058128967881203, + -0.05207561329007149, + 0.0047243316657841206, + -0.05631290003657341, + 0.11399269849061966, + -0.0015282767126336694, + 0.04678335413336754, + 0.03463267907500267, + -0.042612168937921524, + 0.003912103828042746, + 0.05998754873871803, + -0.06494688242673874, + -0.12030912935733795, + 0.0551585927605629, + 0.06561899930238724, + -0.08492660522460938, + -0.04156869649887085, + 0.010098626837134361, + -0.03416880592703819, + 0.03808022290468216, + -0.02499474212527275, + -0.019929496571421623, + -0.02105206809937954, + 0.013153037056326866, + 0.07758761197328568, + -0.04961158335208893, + 0.002813077764585614, + 0.04068373516201973, + -0.015212543308734894, + -0.010681761428713799, + -0.01770223118364811, + -0.015360979363322258, + 0.029997915029525757, + 0.03758044168353081, + 0.05265817418694496, + -0.0036873184144496918, + -0.07743696123361588, + -0.04922223463654518, + 0.0833640992641449, + -0.024146389216184616, + 0.06546897441148758, + -0.051496442407369614, + 0.03351032733917236, + -0.02379324659705162, + 0.030026542022824287, + 0.07545366138219833, + 0.004370654001832008, + 0.02803170308470726, + -0.05703844875097275, + -0.04062824323773384, + 0.02599950134754181, + 0.06575930118560791, + 0.059842515736818314, + -0.040161602199077606, + -0.0051053715869784355, + 0.015217078849673271, + -0.008782845921814442, + 0.004275493323802948, + -0.003716791979968548, + -0.05649593472480774, + 0.12323721498250961, + -0.013731444254517555, + -0.04975394904613495, + 0.03291799873113632, + -0.014507290907204151, + -0.060279544442892075, + -0.05536825954914093, + -0.0007972987950779498, + 0.05912020429968834, + 0.021923383697867393, + -0.061766549944877625, + -0.03552136942744255, + 0.04003598541021347, + 0.027362938970327377, + 0.064470574259758, + 0.009580767713487148, + -2.3917193558986583e-08, + 0.017394328489899635, + -0.0747237578034401, + 0.007933605462312698, + -0.051501449197530746, + -0.00644008768722415, + -0.040030065923929214, + -0.01811465062201023, + -0.024547453969717026, + -0.04850047826766968, + -0.0034133342560380697, + 0.004855864215642214, + 0.014347387477755547, + -0.14035280048847198, + 0.000371858652215451, + 0.04751449078321457, + -0.017220299690961838, + -0.012196467258036137, + 0.1448732614517212, + 0.018532289192080498, + -0.060633912682533264, + 0.053907208144664764, + -0.005201917607337236, + 0.07656165957450867, + 0.03496558219194412, + -0.04610053822398186, + 0.010299967601895332, + -0.05696671083569527, + 0.01127389632165432, + 0.0962405651807785, + 0.03311880677938461, + 0.011556651443243027, + 0.03829209506511688, + 0.06262827664613724, + -0.04648739844560623, + -0.018067723140120506, + 0.005157051142305136, + -0.07527908682823181, + 0.04669678956270218, + -0.054308850318193436, + 0.060869257897138596, + 0.025953829288482666, + -0.08403025567531586, + 0.07121145725250244, + -0.024711934849619865, + 0.04711267352104187, + 0.06624472141265869, + 0.04565884917974472, + 0.04196428880095482, + -0.03771932050585747, + -0.1392981857061386, + -0.03759332373738289, + -0.009046976454555988, + 0.04574894532561302, + 0.10027581453323364, + -0.04418139532208443, + -0.007206509355455637, + -0.022130195051431656, + 0.07559249550104141, + 0.0814262330532074, + -0.047091368585824966, + 0.09872470796108246, + 0.12616318464279175, + -0.04659418389201164, + 0.015349339693784714 + ], + "square-half-bottom-bold||4,shapes,polygons,box,columns,sidebar,split vertical": [ + 0.08730241656303406, + 0.040323249995708466, + 0.028765615075826645, + 0.04178987815976143, + 0.013850032351911068, + -0.05291229113936424, + -0.06857281923294067, + -0.02215949259698391, + -0.01342611201107502, + -0.017843563109636307, + -0.04372187331318855, + 0.04106716811656952, + 0.022272732108831406, + -0.025787314400076866, + -0.03963784500956535, + 0.0002609340299386531, + 0.03517379239201546, + 0.007950698025524616, + -0.025045739486813545, + 0.028111770749092102, + -0.030508581548929214, + -0.08545693755149841, + -0.024317443370819092, + 0.0076770721934735775, + 0.0012958463048562407, + 0.05579027906060219, + 0.0335235670208931, + 0.04693897068500519, + 0.02203281596302986, + -0.11296609789133072, + 0.011960954405367374, + 0.016702834516763687, + 0.10863234102725983, + 0.030876684933900833, + -0.06431550532579422, + -0.03843402490019798, + 0.03042972832918167, + 0.04798474162817001, + 0.04110467806458473, + 0.05614134669303894, + -0.012133083306252956, + -0.10091286897659302, + 0.01856098137795925, + 0.0908348485827446, + -0.012066489085555077, + -0.0202175322920084, + -0.10606856644153595, + -0.048964083194732666, + 0.00437313225120306, + -0.03446756303310394, + 0.03480452299118042, + -0.06906887888908386, + -0.0973888486623764, + 0.05360922962427139, + 0.007895062677562237, + -0.03609955683350563, + -0.06563745439052582, + -0.04455200582742691, + 0.08207011222839355, + 0.028532031923532486, + 0.06525396555662155, + 0.05312054604291916, + 0.012025789357721806, + 0.03701523318886757, + 0.004307902883738279, + 0.019472813233733177, + -0.0676509216427803, + 0.04353678598999977, + -0.05202886089682579, + 0.010092945769429207, + 0.038919851183891296, + 0.06337115168571472, + -0.00866972841322422, + -0.06802357733249664, + 0.011853009462356567, + -0.12929265201091766, + 0.026290223002433777, + -0.01155189797282219, + -0.0014535484369844198, + -0.022360553964972496, + -0.10803787410259247, + 0.02766367420554161, + -0.02548079378902912, + 0.024918895214796066, + -0.040183473378419876, + 0.04074900969862938, + -0.03752028942108154, + -0.012003184296190739, + -0.05605714023113251, + -0.019380316138267517, + -0.06310063600540161, + 0.022707270458340645, + 0.08276106417179108, + 0.042496830224990845, + -0.060602158308029175, + 0.016964010894298553, + 0.04305023327469826, + -0.05648263916373253, + -0.032609470188617706, + 0.05791480466723442, + 0.05089406296610832, + -0.031496331095695496, + 0.07550695538520813, + -0.07621767371892929, + 0.03189114108681679, + -0.032680295407772064, + 0.05235760658979416, + -0.0294635109603405, + 0.0710325613617897, + 0.03841700032353401, + -0.047592323273420334, + -0.05972656235098839, + -0.01966634951531887, + -0.047900836914777756, + -0.05134296044707298, + -0.034061577171087265, + -0.07787579298019409, + -0.029674014076590538, + 0.08050309866666794, + 0.0026356633752584457, + 0.027545234188437462, + -0.025946088135242462, + -0.006836116313934326, + -0.03869961202144623, + 0.04810578376054764, + 0.044300951063632965, + -0.02052239514887333, + -1.04909408612684e-33, + 0.029897959902882576, + 0.026745768263936043, + -0.0031566983088850975, + 0.1338932067155838, + 0.0734022930264473, + -0.02672872319817543, + -0.01615304872393608, + -0.08939013630151749, + -0.043219804763793945, + 0.10700017958879471, + -0.00839996337890625, + 0.04745585098862648, + -0.09109263122081757, + 0.08986078202724457, + 0.10846994817256927, + -0.07885231077671051, + 0.01878408156335354, + -0.0033788029104471207, + -0.08595152944326401, + -0.06852199882268906, + -0.06070715934038162, + 0.015898553654551506, + -0.033666592091321945, + 0.04763063043355942, + -0.004737887065857649, + -0.027776546776294708, + 0.06664779782295227, + -0.01747170276939869, + -0.058531504124403, + 0.0435430109500885, + 0.020271075889468193, + 0.029126489534974098, + 0.0021043650340288877, + -0.021876443177461624, + 0.005311918910592794, + -0.03618655353784561, + 0.012020787224173546, + 6.198421033332124e-05, + 0.02710801549255848, + 0.019223831593990326, + -0.07671796530485153, + -0.07945135235786438, + 0.01931077055633068, + -0.0580541230738163, + 0.05392518267035484, + 0.0680454671382904, + 0.029963094741106033, + -0.026623835787177086, + 0.022306861355900764, + -0.02130236104130745, + -0.01733226515352726, + 0.016104811802506447, + 0.025828232988715172, + 0.007465671747922897, + 0.034500207751989365, + -0.09934131801128387, + -0.06949014216661453, + 0.10216717422008514, + 0.04489517956972122, + 0.07399982959032059, + 0.028988802805542946, + 0.019253378733992577, + -0.048732560127973557, + -0.04202651232481003, + -0.09722790867090225, + -0.008429503999650478, + -0.06710697710514069, + -0.025098802521824837, + -0.02693500742316246, + -0.02735823579132557, + 0.024261312559247017, + 0.021052684634923935, + 0.03785770758986473, + 0.003117281012237072, + -0.04353589937090874, + 0.036908265203237534, + 0.007962740026414394, + -0.010765365324914455, + 0.03096189722418785, + -0.05992099642753601, + -0.03324544429779053, + 0.017734238877892494, + -0.05723137408494949, + -0.05605967342853546, + -0.014008522033691406, + -0.034337494522333145, + 0.08327316492795944, + -0.01781414821743965, + -0.035613011568784714, + -0.016952157020568848, + -0.16351939737796783, + -0.04585418105125427, + 0.050223544239997864, + -0.01907309517264366, + -0.04125475883483887, + -4.392243825397093e-34, + -0.04373259097337723, + 0.03359257057309151, + -0.05751847103238106, + -0.02397914230823517, + 0.012271692976355553, + 0.014904358424246311, + 0.017470790073275566, + 0.050673022866249084, + 0.005560149438679218, + 0.06748218089342117, + 0.043345559388399124, + 0.014445233158767223, + -0.021037904545664787, + -0.04470356926321983, + -0.03673690930008888, + 0.04474154859781265, + 0.040580689907073975, + -0.011362164281308651, + -0.05552924424409866, + -0.0506434328854084, + -0.060257501900196075, + 0.015093877911567688, + -0.06786953657865524, + 0.0983303114771843, + 0.0015479150461032987, + 0.05268610641360283, + 0.039831604808568954, + -0.042212020605802536, + -0.017283137887716293, + 0.0521700344979763, + -0.05694979056715965, + -0.1218763068318367, + 0.05828063562512398, + 0.061081405729055405, + -0.08614465594291687, + -0.0355268158018589, + 0.02162061259150505, + -0.04008067399263382, + 0.03164156898856163, + -0.04036371782422066, + -0.03734516352415085, + -0.011027343571186066, + 0.02491387352347374, + 0.0769544169306755, + -0.04365752264857292, + 0.007636943832039833, + 0.021217023953795433, + -0.005338173825293779, + -0.0038546696305274963, + -0.03864468261599541, + -0.0266409981995821, + 0.016266409307718277, + 0.03953001648187637, + 0.04184095188975334, + 0.013852772302925587, + -0.05828114598989487, + -0.0374770425260067, + 0.08627130836248398, + -0.035113375633955, + 0.06976813077926636, + -0.043436139822006226, + 0.030095910653471947, + -0.015095303766429424, + 0.020828327164053917, + 0.06310950964689255, + 0.024949247017502785, + 0.024158667773008347, + -0.045151032507419586, + -0.05881558731198311, + 0.03607800602912903, + 0.0522107295691967, + 0.06909479200839996, + -0.04523145407438278, + -0.011286512017250061, + 0.035951197147369385, + -0.01666584424674511, + 0.0011636039707809687, + 0.012823344208300114, + -0.06084411218762398, + 0.10856612026691437, + -0.022872908040881157, + -0.05644945800304413, + 0.03397819772362709, + -0.004292868543416262, + -0.06251753121614456, + -0.0624566376209259, + 0.00031144695822149515, + 0.06317777931690216, + 0.02312210015952587, + -0.05990356579422951, + -0.04934960603713989, + 0.03596464544534683, + 0.02369234338402748, + 0.07352489233016968, + 0.005861389916390181, + -2.3901140622228922e-08, + 0.022091727703809738, + -0.08014535158872604, + 0.0076791527681052685, + -0.04892921447753906, + -0.011611332185566425, + -0.022426797077059746, + 0.0007285242900252342, + -0.005584254860877991, + -0.04095475375652313, + -0.005729742348194122, + 0.004630179610103369, + 0.02631099335849285, + -0.13978728652000427, + -0.009013723582029343, + 0.058401431888341904, + -0.005911311134696007, + -0.007891697809100151, + 0.1596057116985321, + 0.017320910468697548, + -0.07654561847448349, + 0.06471468508243561, + -0.007393266540020704, + 0.0799071192741394, + 0.0329468734562397, + -0.042318738996982574, + 0.0010030783014371991, + -0.05203229561448097, + 0.010496814735233784, + 0.09933813661336899, + 0.028917785733938217, + 0.01955357939004898, + 0.052991315722465515, + 0.07691619545221329, + -0.04986637085676193, + -0.011720331385731697, + 0.007811178918927908, + -0.0878995954990387, + 0.05081174895167351, + -0.04758518934249878, + 0.06445207446813583, + 0.035198014229536057, + -0.08735325187444687, + 0.08482050895690918, + -0.015575499273836613, + 0.041834354400634766, + 0.07257914543151855, + 0.03526660427451134, + 0.04946494847536087, + -0.024353697896003723, + -0.12783555686473846, + -0.034321390092372894, + -0.013273103162646294, + 0.0499749518930912, + 0.10323715209960938, + -0.044444065541028976, + -0.0060697742737829685, + -0.012044193223118782, + 0.06295062601566315, + 0.0809161514043808, + -0.04690191149711609, + 0.0873991921544075, + 0.13568107783794403, + -0.04212644323706627, + 0.009008925408124924 + ], + "square-logo-bold||squareup,payment": [ + 0.028038013726472855, + 0.09515908360481262, + -0.0008631388773210347, + 0.0507071278989315, + -0.017746079713106155, + 0.013257794082164764, + 0.01900419034063816, + -0.06829099357128143, + 0.05332360789179802, + -0.012876749970018864, + -0.021617043763399124, + 0.10812750458717346, + 0.022646324709057808, + -0.05420089140534401, + -0.014674185775220394, + -0.04388783127069473, + -0.010787882842123508, + 0.04489189386367798, + 0.04133134335279465, + 0.007929403334856033, + 0.03177548199892044, + -0.0730423554778099, + -9.773892088560387e-05, + 0.011810594238340855, + 0.0301519762724638, + -0.02506392076611519, + 0.06929022818803787, + 0.04247196391224861, + 0.024357488378882408, + -0.08011312782764435, + 0.03113899566233158, + 0.02654867246747017, + 0.10684952884912491, + -0.048822950571775436, + -0.0071167368441820145, + -0.006384900771081448, + 0.00744767626747489, + -0.008336049504578114, + 0.0478280670940876, + -0.004350889008492231, + 0.04836220294237137, + -0.0904320701956749, + -0.0052031902596354485, + -0.02621607482433319, + -0.016963575035333633, + 0.00420829514041543, + 0.019977742806077003, + 0.054088376462459564, + 0.047666989266872406, + 0.008564906194806099, + 0.03470345586538315, + -0.12581269443035126, + -0.045267581939697266, + -0.07116986066102982, + -0.0028831311501562595, + -0.015467779710888863, + 0.021551957353949547, + -0.0405425988137722, + 0.08827316015958786, + -0.05567647144198418, + 0.04946809262037277, + 0.03186134248971939, + 0.018944865092635155, + 0.07340610772371292, + 0.042385805398225784, + 0.04733512923121452, + 0.005051650572568178, + 0.0003600184863898903, + -0.12384586781263351, + 0.024597961455583572, + 0.1033211424946785, + 0.02062981016933918, + 0.016096245497465134, + -0.05274561047554016, + -0.004146478604525328, + -0.04379308223724365, + 0.07634939253330231, + 0.0010810740059241652, + -0.013149138540029526, + -0.01714537851512432, + -0.08388977497816086, + -0.024100420996546745, + -0.03878561407327652, + -0.007745983544737101, + -0.004111583810299635, + 0.02789703942835331, + -0.05223192274570465, + -0.05375516042113304, + 0.018854863941669464, + -0.047630105167627335, + -0.04673554748296738, + 0.07622276991605759, + 0.05977952852845192, + -0.020704083144664764, + -0.057041797786951065, + -0.01675671525299549, + 0.007696990855038166, + -0.04035158082842827, + -0.08940388262271881, + 0.053859710693359375, + 0.030200259760022163, + 0.045746464282274246, + 0.07967646420001984, + -0.09126832336187363, + 0.08806686103343964, + 0.058982301503419876, + 0.07135045528411865, + 0.015668561682105064, + 0.06806822866201401, + 0.054063744843006134, + -0.03320293873548508, + -0.02239104174077511, + 0.001118963584303856, + 0.04754038527607918, + -0.0805438756942749, + 0.03566589578986168, + -0.05530339106917381, + -0.10274042934179306, + 0.11469471454620361, + -0.022999810054898262, + 0.049436282366514206, + -0.0005410327576100826, + -0.10139838606119156, + -0.1036980003118515, + -0.014136804267764091, + -0.022652048617601395, + 0.022678928449749947, + -3.200406062336545e-33, + 0.002362621482461691, + 0.09560636430978775, + 0.023253994062542915, + 0.042927566915750504, + 0.06496202945709229, + -0.006844198796898127, + -0.008750873617827892, + -0.10805124044418335, + -0.03161264955997467, + 0.09499282389879227, + 0.03320083022117615, + -0.01979723386466503, + -0.04460594058036804, + 0.08638207614421844, + -0.013633733615279198, + -0.031797144562006, + 0.007672297768294811, + 0.0230848491191864, + -0.024851350113749504, + 0.037026938050985336, + -0.055129848420619965, + -0.04476901516318321, + -0.07161358743906021, + 0.004736326634883881, + -0.010890094563364983, + 0.011850336566567421, + 0.032053668051958084, + 0.029295163229107857, + 0.051262617111206055, + 0.03148585557937622, + 0.11289973556995392, + 0.04049668088555336, + 0.03245629742741585, + 0.0082975123077631, + -0.03759767487645149, + -0.034355878829956055, + 0.057333286851644516, + 0.00856771133840084, + 0.029234718531370163, + 0.0026339779142290354, + -0.019187919795513153, + -0.02120005153119564, + -0.02811364084482193, + -0.0006113676354289055, + -0.0037843508180230856, + 0.08209900557994843, + 0.04293389618396759, + -0.13994187116622925, + 0.02711726725101471, + -0.03126271069049835, + -0.025203153491020203, + -0.018480971455574036, + -0.029952550306916237, + -0.014440645463764668, + 0.027313513681292534, + -0.10738885402679443, + -0.0319138802587986, + 0.06067502126097679, + 0.04188704490661621, + -0.03329545259475708, + -0.005814109463244677, + -0.09161754697561264, + 0.020070336759090424, + -0.016875501722097397, + -0.07604016363620758, + 0.06216287985444069, + -0.05840078368782997, + 0.007572948466986418, + -0.04335525259375572, + -0.026819538325071335, + -0.009868026711046696, + 0.031176147982478142, + 0.11810577660799026, + 0.02407415583729744, + -0.04064546152949333, + 0.00793453585356474, + 0.0036573107354342937, + 0.03766660392284393, + 0.09324586391448975, + -0.007781622931361198, + -0.07922559231519699, + 0.017778271809220314, + -0.06243351474404335, + 0.007871872745454311, + 0.05627822503447533, + 0.05473683774471283, + 0.026552988216280937, + -0.06515124440193176, + -0.03680098056793213, + -0.019670823588967323, + -0.04244701564311981, + -0.02409280277788639, + 0.018555734306573868, + 0.0013480456545948982, + -0.03547067567706108, + 1.285664987459214e-33, + -0.02233641780912876, + 0.07630565762519836, + -0.0004941340885125101, + 0.02071092650294304, + -0.04259049892425537, + 0.039181604981422424, + 0.039004337042570114, + 0.004441991448402405, + 0.003826532978564501, + 0.0028872110415250063, + 0.03627714514732361, + 0.030377032235264778, + -0.10665180534124374, + -0.08277253806591034, + 0.03522910922765732, + 0.03135546296834946, + 0.12081103771924973, + 0.026453323662281036, + -0.0713285431265831, + -0.03166400268673897, + -0.024266192689538002, + -0.09349817782640457, + -0.012523203156888485, + 0.02688181959092617, + 0.0021173469722270966, + 0.06614828109741211, + 0.0061311316676437855, + -0.01257358118891716, + -0.03688379377126694, + 0.08251593261957169, + -0.059885669499635696, + -0.0007517008925788105, + -0.010359957814216614, + 0.04004437476396561, + -0.009757465682923794, + -0.03212251514196396, + -0.05036846548318863, + -0.03961765021085739, + -0.001676052575930953, + 0.016420528292655945, + 0.03716586157679558, + -0.06446737796068192, + -0.027505621314048767, + 0.060337938368320465, + 0.020140202715992928, + -0.093962661921978, + 0.018373796716332436, + -0.12903892993927002, + 0.0020092036575078964, + 0.0336451381444931, + -0.03097127005457878, + -0.006206653080880642, + 0.026463167741894722, + 0.10267287492752075, + -0.08783956617116928, + 0.02801147848367691, + 0.03889089077711105, + 0.108496755361557, + 0.005064908415079117, + 0.06582167744636536, + -0.023395471274852753, + 0.044433120638132095, + 0.00018992371042259037, + -0.002771878382191062, + 0.021090583875775337, + 0.029972871765494347, + 0.07315148413181305, + -0.004888676106929779, + 0.002528115641325712, + 0.11360998451709747, + -0.0421091765165329, + -0.0014824302634224296, + 0.01052525732666254, + 0.060520898550748825, + 0.004424276761710644, + -0.01767483726143837, + 0.02929827570915222, + -0.02473670430481434, + -0.08604275435209274, + 0.07056284695863724, + -0.016376852989196777, + 0.029768723994493484, + -0.013042418286204338, + 0.0269315168261528, + -0.019675131887197495, + -0.0492132343351841, + -0.020860478281974792, + 0.053618934005498886, + -0.030134033411741257, + -0.04690519720315933, + -0.07648756355047226, + 0.038501616567373276, + 0.029851609840989113, + -0.00663771340623498, + -0.02766214683651924, + -1.6568105110081888e-08, + -0.09459604322910309, + -0.006895150989294052, + 0.04572928696870804, + -0.036981772631406784, + 0.048900898545980453, + -0.0598837174475193, + -0.06218278035521507, + -0.0842972993850708, + -0.08597497642040253, + -0.06042471528053284, + -0.07137436419725418, + 0.01576976664364338, + -0.051088280975818634, + -0.0474834106862545, + 0.01335258036851883, + -0.01311358530074358, + -0.07525209337472916, + 0.004822998773306608, + -0.052776020020246506, + -0.047821808606386185, + -0.04963138699531555, + 0.05438140407204628, + -0.01975458487868309, + 0.025869999080896378, + -0.0849386677145958, + 0.01511476095765829, + -0.005537933204323053, + 0.05812773108482361, + 0.01909811981022358, + 0.04023367166519165, + 0.006141094025224447, + 0.12488791346549988, + 0.03589153289794922, + -0.01979195512831211, + -0.03330552950501442, + -0.11138734221458435, + 0.019261861220002174, + 0.03817340359091759, + -0.03404785692691803, + 0.03824975714087486, + 0.030811326578259468, + -0.04794234782457352, + 0.01150608528405428, + -0.04456738010048866, + 0.023740500211715698, + 0.09961679577827454, + 0.03278825432062149, + 0.0008272184059023857, + -0.06468604505062103, + -0.10305065661668777, + 0.014502719976007938, + -0.00435019563883543, + -0.007024215999990702, + 0.0940239429473877, + -0.07693818211555481, + -0.1446242779493332, + -0.007662564050406218, + 0.08363313972949982, + 0.042198434472084045, + -0.0024627125822007656, + 0.10036070644855499, + -0.06657686829566956, + -0.016624100506305695, + -0.032152097672224045 + ], + "square-split-horizontal-bold||shapes,polygons,columns": [ + 0.07821136713027954, + 0.006825709715485573, + 0.007583048194646835, + 0.051733531057834625, + 0.02573246695101261, + -0.02238226681947708, + -0.046295713633298874, + -0.0663299560546875, + 0.0069414363242685795, + -0.0022410352248698473, + -0.02080911584198475, + 0.03969781473278999, + 0.0073962886817753315, + 0.024864139035344124, + -0.022251348942518234, + -0.003224762622267008, + 0.020172396674752235, + 0.05456434562802315, + -0.017185477539896965, + 0.02685859054327011, + -0.01171563658863306, + -0.0964590534567833, + -0.02962559647858143, + 0.011864379048347473, + 0.01367337629199028, + 0.050999194383621216, + 0.05813409760594368, + 0.023436611518263817, + 0.014797426760196686, + -0.1064743623137474, + 0.016948392614722252, + -0.006075842771679163, + 0.046877145767211914, + 0.004833037964999676, + -0.050204433500766754, + -0.0056119575165212154, + -0.03187020123004913, + 0.05654197558760643, + 0.011538284830749035, + 0.06365707516670227, + 0.0035044292453676462, + -0.12378605455160141, + 0.048910193145275116, + 0.0362359918653965, + -0.0013171143364161253, + -0.030746571719646454, + -0.11924995481967926, + -0.00723288394510746, + 0.03319411352276802, + -0.047637805342674255, + -0.02843671478331089, + -0.07008585333824158, + -0.06347115337848663, + 0.053209565579891205, + 0.02367078885436058, + -0.04674215614795685, + -0.05219503492116928, + -0.03718762844800949, + 0.08226717263460159, + -0.022272776812314987, + 0.05854242295026779, + 0.03634032607078552, + 0.06088392436504364, + 0.012646887451410294, + -0.02918907068669796, + 0.05526969954371452, + -0.036368340253829956, + 0.05281683802604675, + -0.022144809365272522, + 0.02509780414402485, + 0.005051199346780777, + 0.08136262744665146, + -0.0037626312114298344, + -0.07448608428239822, + -0.01782292313873768, + -0.04570699855685234, + 0.011098011396825314, + 0.002208920894190669, + -0.027611909434199333, + -0.03007725067436695, + -0.08568165451288223, + 0.0334349125623703, + -0.05813269689679146, + -0.005780428182333708, + -0.01651875302195549, + 0.03889517858624458, + -0.08452659100294113, + -0.034347377717494965, + -0.08910785615444183, + -0.01609279401600361, + -0.04127839580178261, + 0.0745493695139885, + 0.08308182656764984, + 0.06178760901093483, + -0.09505166858434677, + -0.03906260430812836, + 0.03931818902492523, + 0.0006735383649356663, + -0.012226153165102005, + 0.04597950354218483, + 0.03845953941345215, + 0.015836356207728386, + 0.06752677261829376, + -0.08875943720340729, + 0.01968785747885704, + -0.05237744376063347, + 0.03135771304368973, + -0.03730901703238487, + 0.11061438918113708, + 0.035243455320596695, + -0.027860140427947044, + -0.04983796551823616, + -0.05989519879221916, + -0.040465641766786575, + -0.05184471234679222, + -0.016059210523962975, + -0.09729869663715363, + -0.046123865991830826, + 0.1287439614534378, + 0.059786949306726456, + 0.0074932388961315155, + -0.044491853564977646, + -0.038920484483242035, + -0.01599602960050106, + 0.06459995359182358, + 0.0819724053144455, + -0.03932952135801315, + -1.964179244866047e-33, + 0.011095398105680943, + 0.05664229765534401, + 0.036008626222610474, + 0.12852086126804352, + 0.054846424609422684, + -0.05011677369475365, + -0.03325441852211952, + -0.11898930370807648, + 0.007267538458108902, + 0.07221802324056625, + -0.02370842732489109, + 0.04220166429877281, + -0.0669965147972107, + 0.06223932281136513, + 0.11945504695177078, + -0.08962823450565338, + 0.03117651306092739, + 0.030514247715473175, + -0.11006689071655273, + 0.0034627956338226795, + -0.05650319904088974, + 0.024740802124142647, + -0.014898961409926414, + 0.02096213959157467, + -0.03159351274371147, + -0.04738427326083183, + 0.009080540388822556, + -0.03584350645542145, + -0.01878921128809452, + 0.056483909487724304, + -0.01961754448711872, + 0.03511280193924904, + -0.015773680061101913, + 0.038308050483465195, + 0.007946700789034367, + -0.0037397772539407015, + -0.02798702009022236, + 0.01963621750473976, + 0.01314084604382515, + 0.0032086484134197235, + -0.047160517424345016, + -0.05990980565547943, + 0.042368900030851364, + -0.06794434785842896, + 0.03427786007523537, + 0.0925026386976242, + -0.005086209159344435, + -0.042183227837085724, + -0.010233874432742596, + -0.042600367218256, + 0.01604875549674034, + 0.030387064442038536, + 0.028769053518772125, + 0.039511341601610184, + 0.08559678494930267, + -0.09734750539064407, + -0.06442753225564957, + 0.08313505351543427, + 0.07763571292161942, + 0.05797315016388893, + -0.02849731221795082, + 0.021642768755555153, + -0.030847085639834404, + 0.0029352756682783365, + -0.11812160164117813, + 0.0030331825837492943, + -0.06378646939992905, + -0.005662079434841871, + -0.025677764788269997, + -0.005616278853267431, + 0.01413029059767723, + 0.007436029613018036, + -0.00041532207978889346, + -0.027652224525809288, + -0.05848483368754387, + 0.06770867109298706, + 0.0031101617496460676, + -0.010560726746916771, + 0.07902385294437408, + -0.12080756574869156, + -0.029769763350486755, + 0.04597042500972748, + -0.06665951758623123, + -0.11266472190618515, + -0.004137598443776369, + 0.026958350092172623, + 0.028923699632287025, + -0.014370454475283623, + -0.06292308121919632, + -0.032278209924697876, + -0.12109474837779999, + -0.012515628710389137, + 0.05809640884399414, + -0.03779955953359604, + -0.026530694216489792, + -7.862423453524453e-34, + -0.02533624693751335, + 0.04400114715099335, + -0.05775661766529083, + -0.08474978059530258, + 0.015824884176254272, + 0.032772451639175415, + -0.03982570767402649, + 0.026434922590851784, + -0.030677588656544685, + 0.043172284960746765, + 0.01057607401162386, + -0.02802395448088646, + -0.09082858264446259, + -0.03612357750535011, + -0.08438915759325027, + -0.017789270728826523, + 0.10228008031845093, + 0.02753208763897419, + -0.03871238976716995, + -0.038793183863162994, + -0.07680337131023407, + -0.007163995876908302, + -0.07385475933551788, + 0.08118995279073715, + -0.034969087690114975, + 0.06321099400520325, + 0.019661743193864822, + -0.029127970337867737, + -0.012948638759553432, + 0.06299284845590591, + -0.09011342376470566, + -0.08803047984838486, + 0.028746429830789566, + 0.0907018706202507, + -0.09767931699752808, + -0.026432042941451073, + -0.023128319531679153, + -0.04209066927433014, + 0.10843413323163986, + -0.015364096499979496, + -0.030407674610614777, + -0.02851596474647522, + 0.004347808659076691, + 0.09227573126554489, + -0.03461641073226929, + 0.021767081692814827, + 0.04182663559913635, + -0.017895178869366646, + -0.021993398666381836, + -0.011330106295645237, + -0.022829663008451462, + 0.024909550324082375, + 0.049242936074733734, + 0.022611726075410843, + -0.013679638504981995, + -0.055052489042282104, + -0.04304690659046173, + 0.07122153788805008, + -0.08567746728658676, + 0.028463684022426605, + -0.08198820054531097, + 0.06003718823194504, + -0.045048005878925323, + 0.05601887032389641, + 0.07571499794721603, + -0.008796031586825848, + 0.05231923609972, + -0.08870493620634079, + 0.002334633143618703, + 0.05481048300862312, + 0.051071081310510635, + 0.07166308164596558, + -0.02377600222826004, + 0.020475134253501892, + 0.0523153617978096, + -0.034955792129039764, + -0.046675391495227814, + -0.004435446113348007, + -0.056356031447649, + 0.07948306202888489, + -0.04544562101364136, + -0.07730340957641602, + 0.059074461460113525, + -0.014981715008616447, + -0.05044021084904671, + -0.048973992466926575, + 0.003927574958652258, + -0.0036456831730902195, + 0.027439681813120842, + -0.0529041513800621, + -0.0077528441324830055, + 0.016393601894378662, + 0.04153062030673027, + 0.06981077790260315, + -0.004073790740221739, + -2.0034789827150234e-08, + 0.050154101103544235, + -0.0533614382147789, + -0.04636870324611664, + -0.051261235028505325, + 0.032731350511312485, + -0.05726631358265877, + -0.03959129378199577, + -0.022708037868142128, + -0.06761865317821503, + 0.01937953196465969, + -0.00028840405866503716, + 0.029171345755457878, + -0.07288261502981186, + 0.015524369664490223, + 0.03149842098355293, + -0.022387351840734482, + 0.04488082602620125, + 0.1427345871925354, + 0.019814472645521164, + -0.030754858627915382, + 0.04781474173069, + -0.011639534495770931, + 0.02739562653005123, + 0.07467590272426605, + -0.019235428422689438, + -0.020766500383615494, + -0.06552711129188538, + 0.026354586705565453, + 0.10123471915721893, + 0.08050151914358139, + -0.0060349637642502785, + 0.047518257051706314, + 0.017613669857382774, + 0.021970529109239578, + -0.011577503755688667, + -0.016960622742772102, + -0.027440935373306274, + 0.04437873885035515, + -0.018841369077563286, + 0.046060942113399506, + 0.005728539079427719, + -0.014171060174703598, + 0.07348211109638214, + -0.04211026430130005, + 0.03962957113981247, + 0.04944640398025513, + 0.0447823703289032, + 0.0543409138917923, + -0.033705662935972214, + -0.062357738614082336, + -0.04815934970974922, + 0.0014568453188985586, + 0.017454592511057854, + 0.0866994559764862, + -0.0396527424454689, + -0.017185408622026443, + -0.0011248048394918442, + 0.0725550726056099, + 0.05458919703960419, + -0.06035006046295166, + 0.09377792477607727, + 0.05546414852142334, + -0.009004967287182808, + 0.0023726236540824175 + ], + "square-split-vertical-bold||shapes,polygons,rows": [ + 0.04317455738782883, + 0.012104098685085773, + 0.0294528566300869, + 0.03858359530568123, + 0.00196288269944489, + -0.002428468083962798, + -0.053199440240859985, + -0.058619946241378784, + 0.013976476155221462, + -0.00589147862046957, + -0.04181019216775894, + 0.040292758494615555, + 0.02324017696082592, + 0.012845606543123722, + -0.004744831006973982, + 0.039744582027196884, + 0.03024269826710224, + 0.0515267550945282, + -0.030653495341539383, + 0.008484032936394215, + -0.009740197099745274, + -0.07101835310459137, + -0.028812658041715622, + 0.001102324458770454, + 0.030624965205788612, + 0.04413505643606186, + 0.08042453974485397, + 0.017367055639624596, + 0.050694528967142105, + -0.07392358779907227, + 0.03006424754858017, + -0.018617499619722366, + 0.04830831289291382, + 0.03241106867790222, + -0.03636967018246651, + -0.014015762135386467, + -0.03203660622239113, + 0.02736106887459755, + 0.025951044633984566, + 0.07233460247516632, + 0.05148644745349884, + -0.12417949736118317, + 0.052322208881378174, + -0.0008778944611549377, + -0.011916345916688442, + -0.011323530226945877, + -0.07463470846414566, + -0.03278975561261177, + 0.010814020410180092, + -0.05588548630475998, + -0.01455474179238081, + -0.08514989912509918, + -0.06028454750776291, + 0.03959668055176735, + 0.033347997814416885, + -0.025146616622805595, + -0.018846970051527023, + -0.05853893980383873, + 0.07577288150787354, + -0.011548246257007122, + 0.07027677446603775, + 0.04114092141389847, + 0.026644432917237282, + 0.006449547596275806, + -0.028649827465415, + 0.07056925445795059, + -0.04436406120657921, + 0.07357419282197952, + -0.015460780821740627, + 0.041042085736989975, + 0.016588272526860237, + 0.11599521338939667, + 0.006235561333596706, + -0.038990508764982224, + -0.03325727954506874, + -0.08798905462026596, + 0.007477800827473402, + -0.020253915339708328, + -0.018472738564014435, + -0.029708392918109894, + -0.08660803735256195, + 0.005112485494464636, + -0.07699530571699142, + 0.015527958050370216, + -0.007109085563570261, + 0.06625702232122421, + -0.0718265101313591, + -0.039850831031799316, + -0.10430117696523666, + -0.024150516837835312, + -0.024065030738711357, + 0.07856840640306473, + 0.06963396817445755, + 0.06569644808769226, + -0.082516148686409, + -0.014065003953874111, + 0.05611662194132805, + -0.03388103470206261, + -0.0028107264079153538, + 0.03561690077185631, + 0.030665311962366104, + 0.02238493598997593, + 0.06416422873735428, + -0.06754839420318604, + -0.01400160975754261, + -0.05347009003162384, + 0.04684862121939659, + -0.054056648164987564, + 0.07604203373193741, + 0.050395380705595016, + -0.02832239493727684, + -0.06315240263938904, + -0.010184936225414276, + -0.030522340908646584, + -0.08552908152341843, + -0.021315161138772964, + -0.09660300612449646, + -0.06334274262189865, + 0.11881504952907562, + 0.05434504523873329, + 0.0015511566307395697, + -0.04402082785964012, + -0.018197622150182724, + 0.023387137800455093, + 0.07647572457790375, + 0.07088270783424377, + -0.020175930112600327, + -1.8761549217986123e-33, + 0.025342050939798355, + 0.03925799950957298, + 0.07078105211257935, + 0.1244124099612236, + 0.1033855527639389, + -0.02838449366390705, + -0.06644287705421448, + -0.1382528394460678, + -0.006386089138686657, + 0.0954701378941536, + -0.06962023675441742, + 0.007224804721772671, + -0.05370986461639404, + 0.0702536329627037, + 0.09960246831178665, + -0.07570434361696243, + 0.022009307518601418, + 0.010784364305436611, + -0.11699865013360977, + -0.025342285633087158, + -0.05492720752954483, + 0.025662686675786972, + 0.003614329732954502, + 0.06448774039745331, + -0.08533283323049545, + -0.062396612018346786, + 0.023573685437440872, + -0.033590689301490784, + -0.03270139917731285, + 0.05246935412287712, + -0.04185449704527855, + 0.030904730781912804, + -0.04367801547050476, + 0.004522235132753849, + -0.01743840053677559, + 0.019165238365530968, + -0.030502472072839737, + 0.005274550057947636, + 0.047982435673475266, + 0.026342002674937248, + -0.032460857182741165, + -0.04111355170607567, + 0.048858821392059326, + -0.05241524055600166, + 0.03969980403780937, + 0.08436784893274307, + -0.008614827878773212, + -0.0639549121260643, + -0.011535686440765858, + -0.001094177714549005, + 0.01618819683790207, + 0.0043642474338412285, + 0.019492819905281067, + 0.009252948686480522, + 0.06760019809007645, + -0.11281149834394455, + -0.07913737744092941, + 0.09839100390672684, + 0.07311206310987473, + 0.08887762576341629, + -0.019815238192677498, + 0.007887096144258976, + -0.03790661320090294, + 0.032146770507097244, + -0.11609956622123718, + 0.013428295962512493, + -0.04738674312829971, + 0.018129022791981697, + 0.0003930528473574668, + -0.010191844776272774, + 0.020078793168067932, + 0.011403245851397514, + -0.006348009686917067, + -0.04978344216942787, + -0.049189936369657516, + 0.05954455956816673, + -0.0013376892311498523, + -0.006060385145246983, + 0.08967083692550659, + -0.09742563217878342, + -0.00998840481042862, + 0.012279673479497433, + -0.056537359952926636, + -0.0923355221748352, + -0.006692105438560247, + 0.03383617103099823, + 0.021707937121391296, + -0.016606498509645462, + -0.035600315779447556, + 0.003367957891896367, + -0.12443916499614716, + -0.03586091101169586, + 0.041464339941740036, + -0.058309756219387054, + -0.022938420996069908, + -3.5935521224322263e-34, + -0.009189566597342491, + 0.07077397406101227, + -0.030726060271263123, + -0.0812988132238388, + 0.004279883578419685, + 0.018704276531934738, + -0.03791316971182823, + 0.04272671416401863, + -0.05735914409160614, + 0.05261283740401268, + 0.011707781814038754, + -0.002477120142430067, + -0.05378647893667221, + -0.04804130271077156, + -0.07061486691236496, + -0.0195064228028059, + 0.05995260179042816, + 0.013609220273792744, + -0.025970609858632088, + -0.04393567144870758, + -0.05616607889533043, + -0.02894514985382557, + -0.07777871191501617, + 0.07807304710149765, + -0.027215832844376564, + 0.04537121579051018, + 0.02487996406853199, + 0.008249897509813309, + 0.008581330068409443, + 0.06791078299283981, + -0.03420931100845337, + -0.07778047770261765, + 0.0016233870992437005, + 0.09086478501558304, + -0.09332165122032166, + -0.033813927322626114, + -0.01417007390409708, + -0.05678733065724373, + 0.09866635501384735, + -0.021304182708263397, + -0.03419303521513939, + -0.027676181867718697, + 0.008555620908737183, + 0.08045230805873871, + -0.052434928715229034, + 0.04358305409550667, + 0.020584959536790848, + -0.041683316230773926, + -0.038362178951501846, + -0.049336738884449005, + -0.05460670217871666, + 0.0029777316376566887, + 0.07078574597835541, + 0.04783524200320244, + -0.010252325795590878, + -0.0679609552025795, + -0.011913055554032326, + 0.07230525463819504, + -0.10203999280929565, + 0.024921482428908348, + -0.08744759857654572, + 0.050609298050403595, + -0.023808496072888374, + 0.03001648560166359, + 0.06726352870464325, + 0.021485449746251106, + 0.09404513239860535, + -0.05669020488858223, + -0.025979040190577507, + 0.059963516891002655, + 0.025752462446689606, + 0.06691773980855942, + -0.012688779272139072, + 0.0017946520820260048, + 0.008220615796744823, + -0.02138124592602253, + -0.04837464168667793, + 0.00629316596314311, + -0.06563342362642288, + 0.09582531452178955, + -0.053536396473646164, + -0.07656230032444, + 0.026026127859950066, + -0.034666817635297775, + -0.06821876019239426, + -0.04183248057961464, + 0.013144693337380886, + 0.02584291622042656, + 0.04263338819146156, + -0.07512638717889786, + -0.040076881647109985, + 0.0010894894367083907, + 0.011036712676286697, + 0.04587067663669586, + -0.0004158416122663766, + -1.9902099523960715e-08, + -0.013706570491194725, + -0.07081020623445511, + -0.013880046084523201, + -0.027186213061213493, + 0.029020823538303375, + -0.052850063890218735, + -0.045127324759960175, + 0.011610263958573341, + -0.04127990081906319, + 0.005488440860062838, + 0.013160675764083862, + 0.014678061939775944, + -0.04638760909438133, + 0.0064105563797056675, + 0.03451016917824745, + -0.019662804901599884, + 0.022970622405409813, + 0.12046680599451065, + 0.025866713374853134, + -0.018045714125037193, + 0.026465432718396187, + 0.018616871908307076, + 0.04877282679080963, + 0.08153080195188522, + -0.0310776736587286, + -0.026619311422109604, + -0.0969705581665039, + 0.01800660789012909, + 0.11985429376363754, + 0.05754315108060837, + 0.011125651188194752, + 0.04914575442671776, + 0.07176553457975388, + 0.015234370715916157, + -0.05003044754266739, + -0.004369373898953199, + -0.01655661128461361, + 0.040147386491298676, + -0.008938662707805634, + 0.017325159162282944, + 0.016455218195915222, + -0.035855650901794434, + 0.09190237522125244, + -0.04682182893157005, + 0.025090187788009644, + 0.056059014052152634, + 0.035976774990558624, + 0.044801659882068634, + -0.017096946015954018, + -0.05074988678097725, + -0.04188069328665733, + -0.008588754571974277, + 0.03069981560111046, + 0.11374019086360931, + -0.06653052568435669, + -0.03667328134179115, + -0.05347996577620506, + 0.07664359360933304, + 0.05311261862516403, + -0.06082546338438988, + 0.09821603447198868, + 0.02798863686621189, + -0.026955079287290573, + 0.008000997826457024 + ], + "squares-four-bold||4,shapes,polygons,apps,applications,grid,table,microsoft,logos": [ + 0.059863246977329254, + -0.004917118698358536, + -0.0634479820728302, + 0.007896860130131245, + 0.010801893658936024, + 0.004387922119349241, + 0.022247446700930595, + -0.024126043543219566, + 0.042679157108068466, + 0.0056955860927701, + -0.011317982338368893, + 0.03086048923432827, + 0.06544293463230133, + -0.008157732896506786, + -0.049800608307123184, + 0.04019147530198097, + -0.0039490144699811935, + 0.019234387204051018, + -0.025224626064300537, + 0.015846215188503265, + 0.03597052022814751, + -0.0668126568198204, + 0.002265089889988303, + 0.00474195834249258, + 0.06170942634344101, + 0.05181513726711273, + 0.00948901753872633, + 0.039777643978595734, + 0.02853953279554844, + -0.07047632336616516, + -0.03128863871097565, + 0.01835216023027897, + 0.10055840015411377, + 0.0497567318379879, + -0.010763926431536674, + -0.001296565285883844, + 0.022031785920262337, + 0.028566014021635056, + 0.013838335871696472, + 0.05175873264670372, + 0.0037814858369529247, + -0.08766303956508636, + 0.042445678263902664, + 0.06161700189113617, + -0.009639586322009563, + 0.006668787449598312, + -0.1034875437617302, + -0.04160063713788986, + -0.003705536015331745, + -0.028667042031884193, + -0.03484535589814186, + -0.13291814923286438, + -0.1090795025229454, + -0.02452676184475422, + 0.012392225675284863, + -0.05121856927871704, + -0.03835102543234825, + -0.019390882924199104, + 0.07752981036901474, + 0.026203341782093048, + 0.07244935631752014, + 0.03158130496740341, + 0.018383605405688286, + 0.09180786460638046, + -0.015007748268544674, + 0.10220879316329956, + -0.05740934610366821, + -0.002933119423687458, + -0.04657949507236481, + -0.020776452496647835, + 0.02961358241736889, + 0.07868412137031555, + -0.01939249411225319, + -0.04415770247578621, + -0.03089582920074463, + -0.07424170523881912, + 0.02028987929224968, + -0.025659654289484024, + -0.02370496839284897, + -0.04563186317682266, + -0.06389856338500977, + 0.0505358912050724, + -0.02833149954676628, + 0.06234521046280861, + 0.005688647273927927, + 0.08833717554807663, + -0.04946386441588402, + -0.08742734789848328, + 0.001906567020341754, + -0.013053526170551777, + -0.0654834434390068, + 0.012571954168379307, + 0.048328567296266556, + 0.05787722393870354, + -0.10689952224493027, + 0.009781675413250923, + 0.09210476279258728, + -0.0625348761677742, + -0.029402021318674088, + 0.050652410835027695, + 0.03405703231692314, + -0.039230283349752426, + 0.04257972538471222, + -0.024579161778092384, + 0.031138721853494644, + -0.03465497866272926, + 0.051999349147081375, + -0.05930451303720474, + 0.04902641847729683, + 0.03972955420613289, + -0.043548014014959335, + -0.07753559201955795, + -0.06261410564184189, + -0.056972015649080276, + -0.09661363810300827, + -0.06865299493074417, + -0.09192289412021637, + -0.07367290556430817, + 0.11498287320137024, + 0.027220718562602997, + 0.021241305395960808, + -0.014264010824263096, + -0.0016275405650958419, + -0.10566672682762146, + 0.011066858656704426, + 0.04063284769654274, + -0.0696178674697876, + -3.14034417848128e-33, + 0.01748809963464737, + 0.08221003413200378, + 0.06737149506807327, + 0.09673509001731873, + 0.07316190749406815, + -0.06279721111059189, + -0.04056256264448166, + -0.11566273123025894, + -0.0018040495924651623, + 0.06399087607860565, + -0.02723287045955658, + 0.06274694949388504, + -0.08985910564661026, + 0.08607424050569534, + 0.14536720514297485, + -0.02010931633412838, + 0.0732906386256218, + 0.015923986211419106, + -0.052095651626586914, + -0.038745731115341187, + -0.07610443234443665, + 0.018062837421894073, + -0.03458758816123009, + 0.009068596176803112, + -0.03181111440062523, + 0.033459052443504333, + 0.027782076969742775, + 0.008718769997358322, + 0.02017027512192726, + 0.052451882511377335, + 0.04192047938704491, + 0.05920708552002907, + -0.04012134671211243, + -0.0333075150847435, + -0.022947655990719795, + -0.047725263983011246, + -0.03127710893750191, + -0.039781276136636734, + 0.07896408438682556, + 0.02356000244617462, + -0.10958440601825714, + -0.048465125262737274, + 0.02406364120543003, + -0.018192818388342857, + 0.10536441206932068, + 0.0693422257900238, + 0.0065071857534348965, + -0.06601617485284805, + 0.03339121490716934, + -0.013900679536163807, + -0.011197411455214024, + 0.0241480004042387, + 0.003714250400662422, + 0.006440472323447466, + 0.008667565882205963, + -0.07982110232114792, + -0.049443479627370834, + 0.05462866276502609, + 0.01362985372543335, + 0.056970030069351196, + 0.00983347836881876, + -3.9751561416778713e-05, + 0.007706452161073685, + -0.04132576286792755, + -0.04778055101633072, + 0.01808999292552471, + -0.017328623682260513, + -0.045339956879615784, + -0.013283905573189259, + 0.0036542073357850313, + 0.013813082128763199, + -0.005391739774495363, + 0.05589240416884422, + 0.013814575038850307, + -0.04285426437854767, + -0.002165341516956687, + 0.0020250529050827026, + -0.018138768151402473, + -0.006759255193173885, + -0.053897690027952194, + -0.10400646924972534, + -0.008413420058786869, + -0.09644752740859985, + -0.04852486029267311, + -0.046355195343494415, + -0.02006908506155014, + 0.07141806930303574, + -0.0694991946220398, + 0.001702539506368339, + -0.004404592793434858, + -0.14098727703094482, + -0.00019503969815559685, + -0.0012381661217659712, + -0.01292399875819683, + -0.11282304674386978, + 5.210924212866968e-34, + -0.009491144679486752, + 0.05122791603207588, + -0.05581947788596153, + 0.005783032160252333, + -0.00608589593321085, + 0.023926330730319023, + 0.035095468163490295, + 0.0361814983189106, + 0.003165047150105238, + 0.035995401442050934, + 0.10228104889392853, + 0.021699247881770134, + -0.06634822487831116, + -0.03223489224910736, + -0.02924247272312641, + 0.05242482200264931, + 0.03181488439440727, + 0.018003540113568306, + -0.10385975986719131, + -0.027976499870419502, + -0.03908494859933853, + -0.04960860684514046, + -0.06544884294271469, + 0.08073248714208603, + 0.013210116885602474, + 0.053725484758615494, + 0.011653304100036621, + -0.10218876600265503, + 0.0013336368137970567, + 0.057175904512405396, + -0.05078933760523796, + -0.08193866908550262, + 0.023657066747546196, + 0.059394530951976776, + -0.06057197228074074, + -0.06096315756440163, + 0.03966568782925606, + -0.10792911797761917, + 0.02299974299967289, + -1.0016557098424528e-05, + 0.002460615010932088, + -0.013196319341659546, + 0.09565359354019165, + 0.1046154648065567, + -0.033984456211328506, + 0.016139965504407883, + -0.029646608978509903, + -0.0193604975938797, + -0.010197706520557404, + 0.01956341229379177, + 0.008541131392121315, + -0.013879727572202682, + -0.01402034517377615, + 0.007217372301965952, + -0.02213929407298565, + -0.024210818111896515, + -0.020308682695031166, + 0.07310876995325089, + -0.04032984748482704, + 0.05774973705410957, + -0.05053726211190224, + 0.00353382620960474, + -0.027495719492435455, + 0.05824298784136772, + 0.015163328498601913, + 0.030261205509305, + 0.006473245564848185, + -0.007806377951055765, + -0.07513149082660675, + 0.06552134454250336, + 0.030004121363162994, + 0.03111221082508564, + -0.08908303827047348, + 0.006916601676493883, + -0.04314754530787468, + -0.036334797739982605, + 0.013272188603878021, + 0.010982911102473736, + -0.09704870730638504, + 0.0635765865445137, + -0.0005947733297944069, + 0.03423001989722252, + 0.034009743481874466, + 0.014429804868996143, + -0.026226084679365158, + -0.02354463003575802, + 0.026528116315603256, + 0.06400217860937119, + 0.004165512975305319, + -0.00023965297441463917, + -0.007421952672302723, + 0.06619902700185776, + 0.023563435301184654, + 0.06825082004070282, + -0.021525520831346512, + -2.263943521541023e-08, + -0.025065351277589798, + -0.0049440981820225716, + 0.024337662383913994, + -0.09682931005954742, + -0.03785717487335205, + -0.04905863478779793, + -0.01910591684281826, + -0.0013559447834268212, + -0.03301230072975159, + -0.01034463383257389, + 0.005356239154934883, + 0.023556910455226898, + -0.14551270008087158, + 0.005294567905366421, + 0.07288965582847595, + 0.01241578534245491, + -0.04791666194796562, + 0.06739946454763412, + 0.007306892424821854, + -0.07591062039136887, + 0.02211903966963291, + 0.05102071911096573, + 0.0011206582421436906, + 0.04729067534208298, + -0.01179717481136322, + 0.02453450672328472, + -0.05170654505491257, + 0.02073429524898529, + 0.05059173330664635, + 0.08171935379505157, + 0.08547616004943848, + 0.07758130878210068, + 0.09193409234285355, + -0.031464122235774994, + -0.038533423095941544, + 0.02076779678463936, + -0.05307333916425705, + 0.01005885936319828, + -0.03482891246676445, + 0.04092750698328018, + 0.01972665637731552, + -0.09569063037633896, + -0.001686438568867743, + -0.026677638292312622, + 0.03298233076930046, + 0.10610271990299225, + 0.044571466743946075, + 0.017773425206542015, + -0.05416538566350937, + -0.08586426824331284, + -0.058008331805467606, + 0.015153729356825352, + 0.009345588274300098, + 0.09161163121461868, + -0.04917515814304352, + -0.015764489769935608, + -0.003260716563090682, + 0.027940010651946068, + 0.08751250058412552, + -0.028157135471701622, + 0.1088833436369896, + 0.060921307653188705, + -0.020342737436294556, + 0.022626787424087524 + ], + "stack-bold||cards,layers": [ + -0.034354597330093384, + -0.059981126338243484, + -0.04900497570633888, + 0.11247774958610535, + -0.005334198474884033, + 0.0002558721462264657, + 0.008124884217977524, + -0.017761139199137688, + 0.053924810141325, + -0.058116279542446136, + -0.039013683795928955, + 0.0024271532893180847, + -0.05559621751308441, + -0.04524270445108414, + 0.00899730995297432, + 0.06396418064832687, + 0.03158612549304962, + 0.06561898440122604, + 0.023763936012983322, + 0.030195122584700584, + 0.009341700933873653, + -0.0016934624873101711, + 0.002392502734437585, + 0.020910188555717468, + -0.021054541692137718, + 0.0028029640670865774, + -0.0671171098947525, + -0.04596608877182007, + 0.052166517823934555, + -0.035795871168375015, + 0.06944190710783005, + 0.002483442658558488, + 0.08723266422748566, + 0.06291733682155609, + 0.01085171289741993, + 0.01527342852205038, + -0.06238428130745888, + -0.035102054476737976, + -0.02444942481815815, + 0.038867805153131485, + 0.051424238830804825, + -0.05826764926314354, + -0.03458275645971298, + 0.00638478621840477, + -0.05100896209478378, + -0.03913267329335213, + -0.018095307052135468, + 0.02061842381954193, + 0.005601819138973951, + 0.018475931137800217, + 0.051674794405698776, + -0.04587016627192497, + -0.06787999719381332, + -0.07489389181137085, + 0.054110508412122726, + 0.05946727842092514, + -0.07686260342597961, + -0.0746864378452301, + 0.0022398752626031637, + 0.031859591603279114, + 0.005222010426223278, + 0.04150889068841934, + 0.05695999413728714, + 0.035355594009160995, + 0.07506415247917175, + 0.03000495582818985, + 0.025082336738705635, + 0.11269523203372955, + -0.006724325008690357, + 0.04365888610482216, + 0.08727318048477173, + 0.056890200823545456, + 0.017460918053984642, + -0.0394534207880497, + 0.0014972242061048746, + 0.07469452172517776, + 0.04900781437754631, + -0.06826747953891754, + -0.028960783034563065, + -0.07614201307296753, + -0.05102634057402611, + -0.047974638640880585, + 0.016923842951655388, + 0.007460901979357004, + 0.04343123733997345, + 0.040707990527153015, + -0.023732416331768036, + -0.05450151860713959, + -0.07905581593513489, + -0.06401524692773819, + -0.045867085456848145, + -0.03676478937268257, + 0.03309755027294159, + 0.11189033091068268, + -0.002715806011110544, + -0.0353340320289135, + 0.056266192346811295, + -0.07197335362434387, + -0.10575499385595322, + 0.06215192750096321, + 0.012572847306728363, + 0.05180910602211952, + 0.045744311064481735, + -0.015653900802135468, + -2.3640302970306948e-05, + -0.0011922236299142241, + -0.01853429712355137, + -0.01990928314626217, + -0.09247973561286926, + -0.05782784894108772, + 0.03221597895026207, + -0.10269960761070251, + 0.003446235554292798, + -0.0711054801940918, + -0.026342058554291725, + -0.04666893556714058, + 0.00504342932254076, + -0.026815174147486687, + 0.02368122711777687, + 0.05391215533018112, + 0.0050071896985173225, + -0.04701618850231171, + -0.031023727729916573, + -0.10266714543104172, + -0.03564445674419403, + -0.023158498108386993, + 0.041374482214450836, + -2.4658798664550146e-33, + 0.0834871232509613, + 0.04886172339320183, + -0.054107844829559326, + 0.12109121680259705, + 0.027204005047678947, + -0.004332810174673796, + -0.008919062092900276, + -0.1336708962917328, + -0.11083371937274933, + 0.08187803626060486, + 0.059772979468107224, + 0.04008632153272629, + -0.025026893243193626, + 0.09766850620508194, + 0.03976299613714218, + -0.07605637609958649, + 0.012948335148394108, + -0.003549424931406975, + -0.04309593513607979, + -0.05130301043391228, + -0.05693022161722183, + 0.023993343114852905, + -0.02649649791419506, + -0.055080901831388474, + -0.020282551646232605, + 0.01274803839623928, + -0.05205502361059189, + -0.034901902079582214, + -0.02113795094192028, + 0.028907127678394318, + 0.021292947232723236, + 0.003276385832577944, + 0.029849668964743614, + -0.02410411462187767, + -0.018651612102985382, + 0.09356005489826202, + -0.025829333811998367, + -0.013787534087896347, + 0.0021515991538763046, + 0.07225646823644638, + -0.05862870812416077, + -0.0021273086313158274, + 0.009254824370145798, + -0.037150703370571136, + -0.0181864146143198, + 0.06737611442804337, + 0.0049579148180782795, + -0.023197298869490623, + -0.04756498336791992, + -0.013009260408580303, + 0.020038943737745285, + -0.006034878548234701, + -0.017720865085721016, + -0.056023821234703064, + 0.06023167818784714, + -0.08385983109474182, + 0.00669994717463851, + 0.15065917372703552, + 0.08352427184581757, + 0.012751758098602295, + 0.022178485989570618, + -0.023956000804901123, + -0.08121609687805176, + 0.05576217547059059, + -0.08227601647377014, + 0.1197219043970108, + -0.002179289935156703, + 0.021057860925793648, + -0.01748991571366787, + -0.0177592895925045, + 0.04248284921050072, + 0.110670305788517, + -0.008649924769997597, + 0.01601511985063553, + -0.013348380103707314, + 0.026871580630540848, + -0.049231644719839096, + -0.04064260795712471, + 0.006973183713853359, + -0.0448969341814518, + -0.043004512786865234, + 0.024950088933110237, + -0.09259283542633057, + 0.014084587804973125, + -0.005731254816055298, + 0.08923689275979996, + 0.01465761661529541, + 0.022510452196002007, + 0.012518498115241528, + 0.11815731972455978, + -0.07662446796894073, + -0.00999272521585226, + 0.10985184460878372, + -0.11039994657039642, + -0.048008039593696594, + 1.4167298525110143e-33, + -0.006826853379607201, + 0.0068898387253284454, + -0.08515484631061554, + -0.010228405706584454, + -0.023414703086018562, + -0.05522318556904793, + 0.05116146430373192, + 0.08466382324695587, + -0.051728248596191406, + 0.01412139367312193, + 0.013625546358525753, + 0.06844130158424377, + -0.06631920486688614, + -0.04683106765151024, + 0.018223045393824577, + -0.009301106445491314, + -0.03688524290919304, + 0.044882964342832565, + 0.019790062680840492, + -0.0678713396191597, + -0.009156019426882267, + -0.04704665020108223, + -0.03095044009387493, + 0.1342143416404724, + -0.0026167763862758875, + 0.04691246151924133, + -0.029649315401911736, + -0.01714884676039219, + 0.0739784836769104, + -0.08074547350406647, + 0.004950075410306454, + -0.06559474021196365, + 0.022905593737959862, + 0.08990505337715149, + -0.053744442760944366, + 0.11232955008745193, + -0.00206564599648118, + 0.009675145149230957, + 0.0445297472178936, + -0.054608989506959915, + -0.07914198189973831, + -0.040115900337696075, + -0.021923039108514786, + 0.012347143143415451, + -0.0019960636273026466, + -0.03840812295675278, + -0.01448109932243824, + -0.012348911724984646, + 0.02149619534611702, + -0.04553050175309181, + -0.06732500344514847, + -0.030054494738578796, + 0.0020805371459573507, + 0.02702353149652481, + -0.05238639935851097, + 0.030231593176722527, + 0.005840203259140253, + -0.016591385006904602, + 0.03919856622815132, + -0.009767681360244751, + -0.02783910371363163, + -0.015635905787348747, + -0.011272025294601917, + -0.02972831018269062, + 0.054389894008636475, + -0.003110438585281372, + 0.021432936191558838, + -0.04788738489151001, + -0.005238869693130255, + 0.012841654010117054, + 0.04006984829902649, + 0.031111856922507286, + -0.02456839196383953, + 0.016920026391744614, + 0.022952618077397346, + -0.04321935027837753, + 0.03395945951342583, + 0.07532020658254623, + 0.03299122303724289, + -0.01578376069664955, + -0.0670238733291626, + -0.04125988483428955, + -0.01921483688056469, + 0.04948963597416878, + 0.019311420619487762, + 0.07408223301172256, + 0.06712761521339417, + 0.02332654409110546, + -0.00850512832403183, + -0.07730372250080109, + 0.007214091252535582, + -0.004713188391178846, + 0.12295937538146973, + -0.029731804504990578, + -0.0575028695166111, + -1.4070272058575028e-08, + 0.021207772195339203, + -0.044290054589509964, + 0.0233683492988348, + -0.022112766280770302, + -0.036368872970342636, + -0.047897543758153915, + 0.020620282739400864, + -0.09313978254795074, + -0.03091469779610634, + -0.009312177076935768, + 0.028957681730389595, + 0.07749452441930771, + -0.029521415010094643, + -0.07048531621694565, + 0.0691845715045929, + 0.03225160762667656, + -0.04175844416022301, + 0.08513925969600677, + -0.02982921712100506, + -0.04373255372047424, + 0.004803880117833614, + 0.0652036964893341, + 0.07014041393995285, + 0.08117123693227768, + -0.023422127589583397, + 0.029536977410316467, + -0.017437418922781944, + -0.019700374454259872, + 0.08295731246471405, + 0.10291893780231476, + 0.058312688022851944, + 0.020847775042057037, + 0.03223506361246109, + 0.05822308361530304, + 0.026828583329916, + 0.029235878959298134, + 0.00943541806191206, + 0.020234500989317894, + -0.03163463994860649, + 0.12603990733623505, + -0.037203896790742874, + -0.09292764216661453, + 0.019841231405735016, + -0.028553318232297897, + -0.0025977466721087694, + -0.037014614790678024, + -0.06374520063400269, + -0.011317203752696514, + -0.021928969770669937, + -0.09981441497802734, + -0.04723692685365677, + -0.039086755365133286, + -0.04422568902373314, + 0.13331733644008636, + -0.00704222172498703, + -0.08846615999937057, + 0.022414999082684517, + 0.08418645709753036, + 0.022253982722759247, + 0.030232738703489304, + 0.07565620541572571, + 0.009606639854609966, + 0.009179242886602879, + 0.012694659642875195 + ], + "stack-minus-bold||*new*,cards,layers,remove,delete": [ + -0.05652325227856636, + -0.04350299760699272, + -0.03468271344900131, + 0.12254922837018967, + 0.020121200010180473, + -0.03849918767809868, + 0.00502896448597312, + -0.0536765530705452, + 0.04324532300233841, + -0.0250916238874197, + 0.027197886258363724, + 0.018612004816532135, + -0.038083914667367935, + -0.047473419457674026, + -0.008129563182592392, + 0.0480816550552845, + 0.006687668617814779, + 0.03517655283212662, + -0.000424501282395795, + 0.015543210320174694, + -0.012116687372326851, + -0.026375431567430496, + -0.03969370201230049, + 0.03251716122031212, + 0.05583205446600914, + 0.01137226726859808, + -0.06316332519054413, + -0.06057899072766304, + 0.04542238637804985, + -0.06201435998082161, + 0.062091708183288574, + 0.002985509345307946, + 0.1463451087474823, + 0.04768244922161102, + 0.05338369309902191, + 0.0269648227840662, + -0.05574299022555351, + -0.03579149767756462, + -0.010105349123477936, + 0.00769795011729002, + 0.048810895532369614, + -0.06614399701356888, + -0.07385533303022385, + 0.013948189094662666, + -0.05815591290593147, + -0.02300775609910488, + -0.05033212527632713, + -0.031354520469903946, + 0.030431365594267845, + 0.02620922029018402, + 0.06491252779960632, + -0.04682255536317825, + -0.11356671899557114, + -0.07143443822860718, + 0.07607401907444, + 0.050720855593681335, + -0.040152572095394135, + -0.0926223173737526, + -0.02787330001592636, + 0.02395031973719597, + 0.0527496337890625, + 0.02894221618771553, + 0.04762083664536476, + 0.003791247960180044, + 0.0652666762471199, + 0.022536681964993477, + -0.003993170335888863, + 0.060488488525152206, + 0.031577516347169876, + 0.06763198971748352, + 0.02658466249704361, + 0.06144126132130623, + 0.002483217976987362, + -0.015461909584701061, + -0.011257045902311802, + 0.07016676664352417, + 0.036928288638591766, + -0.040031470358371735, + -0.05290237441658974, + -0.03625502064824104, + -0.0032925026025623083, + -0.016721541061997414, + 0.021332090720534325, + 0.014519676566123962, + 0.03389665111899376, + 0.06735548377037048, + -0.02645719423890114, + -0.05116592347621918, + -0.06676124781370163, + -0.07593611627817154, + -0.052597545087337494, + -0.032767195254564285, + 0.03497963026165962, + 0.0918659120798111, + -0.04982566088438034, + -0.023345300927758217, + 0.0474996380507946, + -0.03862069547176361, + -0.09745883196592331, + 0.09311753511428833, + 0.0035831488203257322, + 0.054764628410339355, + 0.052574522793293, + 0.0049625905230641365, + -0.0354761965572834, + 0.01058920007199049, + -0.046299468725919724, + -0.03799301013350487, + -0.1044265627861023, + -0.014963554218411446, + 0.02042955346405506, + -0.07166307419538498, + -0.02438722550868988, + -0.07856523990631104, + -0.026361899450421333, + 0.024381153285503387, + 0.015605236403644085, + 0.01461099274456501, + 0.014583571814000607, + 0.09062928706407547, + 0.042724624276161194, + -0.06702093780040741, + -0.020144300535321236, + -0.07944320142269135, + -0.05716041103005409, + 0.002526304218918085, + 0.019718149676918983, + -2.009340452127693e-33, + 0.09061983227729797, + 0.0255877748131752, + -0.06060510501265526, + 0.1060551181435585, + 0.05436442792415619, + 0.01664590835571289, + -0.025904513895511627, + -0.10037928074598312, + -0.09562975913286209, + 0.08232766389846802, + 0.09692572802305222, + 0.02263619378209114, + -0.025611409917473793, + 0.10347916930913925, + 0.05945941060781479, + -0.07233770191669464, + 0.03939879685640335, + -0.016328871250152588, + -0.036028262227773666, + -0.07857982069253922, + -0.05189814046025276, + 0.061562612652778625, + -0.03869229182600975, + -0.02943834289908409, + 0.009537527337670326, + -0.01819717511534691, + -0.04106171429157257, + -0.05397231504321098, + -0.05221064016222954, + 0.021636949852108955, + -0.01733110100030899, + -0.013099867850542068, + 0.006001538131386042, + 0.013156906701624393, + -0.02278808318078518, + 0.10757537186145782, + -0.052163515239953995, + -0.02800663560628891, + 0.015018210746347904, + 0.03715253621339798, + -0.07551142573356628, + 0.0018338268855586648, + -0.040709562599658966, + -0.048364173620939255, + 0.003819114528596401, + 0.047653570771217346, + 0.023408815264701843, + -0.03195065259933472, + -0.03381187841296196, + -0.03742052987217903, + 0.015406640246510506, + 0.030447088181972504, + -0.01194114051759243, + -0.055012911558151245, + -0.01885843276977539, + -0.10817933827638626, + -0.01749526895582676, + 0.13194340467453003, + 0.11645331978797913, + -0.017812874168157578, + 0.054029155522584915, + 0.009366996586322784, + -0.08515086770057678, + 0.07693565636873245, + -0.06420039385557175, + 0.10527864098548889, + -0.01796003244817257, + 0.03693073242902756, + -0.026654887944459915, + -0.0222308486700058, + 0.02245355024933815, + 0.09315873682498932, + -0.008624606765806675, + 0.026023706421256065, + -0.00731760123744607, + -0.008429608307778835, + -0.016112210229039192, + -0.047076188027858734, + 0.015945523977279663, + -0.05475073307752609, + -0.014280254952609539, + 0.04141925647854805, + -0.08613523095846176, + 0.004721116274595261, + 0.022302880883216858, + 0.03913683816790581, + 0.03811827301979065, + 0.0018335581989958882, + 0.03141267970204353, + 0.08492010831832886, + -0.09169686585664749, + -0.01322855893522501, + 0.05426989868283272, + -0.11151804774999619, + -0.046128805726766586, + 6.4702726368761556e-34, + 0.008754230104386806, + 0.0038853203877806664, + -0.10068170726299286, + -0.029666269198060036, + -0.07550602406263351, + -0.03159085661172867, + 0.05225228890776634, + 0.10373026132583618, + -0.02483929879963398, + -0.010194970294833183, + 0.03798731416463852, + 0.08355485647916794, + -0.05699782818555832, + -0.043704088777303696, + 0.032008230686187744, + 0.032493967562913895, + -0.10445549339056015, + 0.0009528491063974798, + -0.043295782059431076, + -0.030835598707199097, + 3.5555660815589363e-06, + 0.007539068348705769, + -0.037342093884944916, + 0.1260838806629181, + -5.1862566579075065e-06, + -0.00912528671324253, + -0.004263638518750668, + 0.02711782231926918, + 0.05514097213745117, + -0.07194491475820541, + -0.005052258726209402, + -0.009794770739972591, + 0.04002684727311134, + 0.06728121638298035, + -0.04899489879608154, + 0.05976260080933571, + -0.015804192051291466, + 0.019395237788558006, + 0.04884077608585358, + -0.01827390305697918, + -0.08967234939336777, + -0.03932857885956764, + 0.007815624587237835, + 0.02826639637351036, + -0.0016120296204462647, + -0.022814324125647545, + -0.04240412637591362, + -0.019747711718082428, + 0.04232338070869446, + -0.038610368967056274, + -0.04781671613454819, + -0.0649692490696907, + -0.03366139158606529, + -0.017763441428542137, + -0.03602471575140953, + 0.06348075717687607, + 0.029200468212366104, + -0.0017684472259134054, + 0.030997445806860924, + -0.029733048751950264, + -0.030598171055316925, + -0.0013119946233928204, + -0.04317368566989899, + -0.0045416285283863544, + 0.038318801671266556, + -0.01817777194082737, + 0.003355084452778101, + -0.024075476452708244, + -0.054712120443582535, + -0.015107660554349422, + 0.019824566319584846, + 0.07545413076877594, + -0.05920637026429176, + -0.01821030303835869, + -0.010745714418590069, + -0.0708024725317955, + 0.014982318505644798, + 0.06434847414493561, + 0.026994802057743073, + -0.011938018724322319, + -0.03788697347044945, + -0.009505667723715305, + -0.026994924992322922, + 0.005636339541524649, + -0.016077367588877678, + 0.03330836445093155, + -0.0068304333835840225, + 0.04803703725337982, + -0.03864864632487297, + -0.07549907267093658, + -0.00273510511033237, + -0.011614295653998852, + 0.11494171619415283, + -0.003914107568562031, + -0.06036859750747681, + -2.2328405790972283e-08, + 0.00766809843480587, + -0.06343045085668564, + 0.014901470392942429, + 0.010537754744291306, + 0.005999555345624685, + -0.045674778521060944, + -0.008126157335937023, + -0.01640494354069233, + -0.0007832904229871929, + -0.04897962510585785, + 0.06487208604812622, + 0.10285626351833344, + -0.06887105852365494, + -0.06532030552625656, + 0.05152125656604767, + 0.02928984723985195, + -0.002726802369579673, + 0.08282669633626938, + -0.015594406053423882, + -0.058237288147211075, + 0.00790238194167614, + 0.07662761956453323, + 0.0935373529791832, + 0.07741881906986237, + 0.0020743319764733315, + 0.011071001179516315, + 0.013667074032127857, + 0.000968759530223906, + 0.06972938776016235, + 0.09052864462137222, + 0.09925752133131027, + 0.019486764445900917, + 0.05856059864163399, + 0.05244750902056694, + 0.020212162286043167, + 0.041159141808748245, + -0.020720040425658226, + 0.05240854620933533, + -0.03446727618575096, + 0.12032223492860794, + -0.035258714109659195, + -0.03910549357533455, + -0.00016171442985069007, + -0.02538704127073288, + -0.06713853031396866, + -0.07549194246530533, + -0.055675506591796875, + -0.025991465896368027, + 0.002977861324325204, + -0.1245713010430336, + -0.01935022883117199, + 0.003851942718029022, + -0.03882487118244171, + 0.12648779153823853, + -0.013751164078712463, + -0.03678547963500023, + 0.04920323193073273, + 0.09565066546201706, + 0.04330884665250778, + 0.00944929663091898, + 0.11364194750785828, + 0.01504875160753727, + 0.054450228810310364, + -0.0013240163680166006 + ], + "stack-overflow-logo-bold||logos,code": [ + 0.007707442156970501, + 0.022408386692404747, + -0.07613123208284378, + 0.022088084369897842, + 0.07592169940471649, + -0.06896012276411057, + 0.04022526741027832, + -0.0627601146697998, + 0.04513253644108772, + -0.006245968397706747, + -0.029183270409703255, + 0.07770209014415741, + 0.0580512136220932, + -0.10734836012125015, + 0.0553651861846447, + -0.016569629311561584, + -0.0396273173391819, + 0.013473891653120518, + 0.02512718178331852, + -0.05205998569726944, + 0.04415607079863548, + -0.024728290736675262, + 0.004110191948711872, + 0.023638339713215828, + -0.017959557473659515, + 0.03883771225810051, + 0.021721355617046356, + -0.008168753236532211, + 0.04012252390384674, + -0.06723367422819138, + 0.009686234407126904, + -0.01164904423058033, + 0.11387678980827332, + 0.018732240423560143, + 0.05689304694533348, + 0.053759243339300156, + 0.017785029485821724, + -0.02490455098450184, + 0.023395026102662086, + 0.08898172527551651, + 0.002306530252099037, + -0.030050242319703102, + 0.057279061526060104, + 0.046672798693180084, + -0.050948526710271835, + 0.006793529260903597, + -0.07585066556930542, + -0.03368014469742775, + 0.01601226255297661, + -0.027564318850636482, + 0.06295850872993469, + -0.11315033584833145, + -0.061207015067338943, + -0.11355642229318619, + 0.022351007908582687, + -0.05434799939393997, + -0.03515130281448364, + -0.05013252794742584, + 0.00210722372867167, + -0.02375570870935917, + 0.014265775680541992, + 0.05907632037997246, + 0.05539233982563019, + 0.08374886214733124, + 0.08982262015342712, + -0.0014485894935205579, + 0.020188499242067337, + 0.058282218873500824, + -0.10605394095182419, + 0.01852257177233696, + 0.020977415144443512, + -0.00019165372941643, + 0.011391284875571728, + 0.008810564875602722, + -0.020334817469120026, + 0.042303573340177536, + 0.06370420753955841, + 0.05264892429113388, + -0.01589263789355755, + -0.048809073865413666, + -0.05415133759379387, + -0.027782127261161804, + 0.03133606165647507, + 0.04684895649552345, + 0.11847281455993652, + 0.07679228484630585, + -0.0767422467470169, + -0.009510930627584457, + 0.024107415229082108, + 0.07230643182992935, + -0.09699228405952454, + 0.004066480323672295, + 0.06920384615659714, + 0.03879541531205177, + -0.050410300493240356, + 0.010571666061878204, + 0.0017694327980279922, + -0.04743829369544983, + -0.09126196056604385, + 0.06257891654968262, + -0.039246171712875366, + 0.062095824629068375, + 0.10001277178525925, + -0.037609636783599854, + 0.0232615377753973, + 0.07107832282781601, + 0.023710239678621292, + 0.01810745894908905, + 0.021119143813848495, + 0.06096132472157478, + 0.024513933807611465, + -0.029791537672281265, + -0.04521718621253967, + -0.04748248681426048, + -0.06708776205778122, + -0.012337921187281609, + 0.007114768028259277, + -0.05932890996336937, + 0.06819096952676773, + -0.026437921449542046, + 0.01716654747724533, + -0.025209926068782806, + -0.0727725476026535, + -0.08452163636684418, + 0.020052064210176468, + 0.004113592207431793, + -0.032222650945186615, + -4.3662316047813344e-33, + 0.009780391119420528, + 0.05812649056315422, + -0.011173229664564133, + 0.08023227751255035, + 0.006184855010360479, + 0.002690071938559413, + -0.009420017711818218, + -0.0826389342546463, + -0.1514187455177307, + 0.046726565808057785, + 0.06359206885099411, + 0.0505644753575325, + 0.01238972321152687, + 0.09640304744243622, + 0.021992702037096024, + -0.06657187640666962, + 0.00551032368093729, + -0.06478233635425568, + -0.11112812906503677, + -0.05813002213835716, + -0.04211030900478363, + -0.02739616669714451, + -0.09084106981754303, + -0.016913264989852905, + -0.04182671383023262, + -0.0055185239762067795, + 0.023722581565380096, + 0.02423706091940403, + -0.011165796779096127, + 0.014985072426497936, + 0.05772227793931961, + -0.011588811874389648, + -0.021293967962265015, + 0.029609017074108124, + 0.0010631008772179484, + -0.002149812411516905, + -0.054129309952259064, + -0.013471906073391438, + 0.02604544907808304, + 0.06525831669569016, + -0.019822536036372185, + -0.05380067974328995, + -0.042494721710681915, + 0.021107012405991554, + 0.024479050189256668, + 0.11914002895355225, + -0.038744933903217316, + -0.11932290345430374, + 0.028682708740234375, + -0.024191930890083313, + -0.016207482665777206, + 0.009463598020374775, + -0.00201997859403491, + -0.032653890550136566, + -0.032809097319841385, + -0.041454512625932693, + -0.04454588517546654, + 0.06523070484399796, + 0.008577111177146435, + 0.0026492122560739517, + -0.004576136823743582, + -0.019126111641526222, + 0.00826951302587986, + -0.007980710826814175, + -0.005179355386644602, + 0.10137533396482468, + -0.014512412250041962, + 0.055021755397319794, + 0.026278121396899223, + -0.031071221455931664, + 0.05379043146967888, + 0.04607810080051422, + 0.06515701860189438, + 0.007047217804938555, + -0.08079828321933746, + 0.05001815780997276, + 0.02447911724448204, + 0.003091583726927638, + 0.036709241569042206, + 0.00398387061432004, + -0.0398699976503849, + -0.005761560518294573, + -0.03384049981832504, + 0.036176860332489014, + 0.04813866689801216, + 0.061085402965545654, + 0.030831241980195045, + -0.02063758485019207, + -0.064104363322258, + 0.05175583064556122, + -0.03591098636388779, + -0.07178840786218643, + 0.06918817013502121, + -0.06666700541973114, + -0.12796254456043243, + 1.7586100784911914e-33, + 0.05199575051665306, + 0.044482361525297165, + 0.015317605808377266, + -0.0005024874699302018, + -0.06774340569972992, + 0.01099222619086504, + 0.06516119092702866, + 0.06349514424800873, + -0.11602196097373962, + -0.0029369285330176353, + 0.09940393269062042, + 0.04117804020643234, + -0.11591736972332001, + -0.029441120103001595, + 0.016076110303401947, + 0.016700806096196175, + 0.018100140616297722, + 0.07346995919942856, + -0.08798827975988388, + -0.032389428466558456, + -0.021954135969281197, + -0.001859957817941904, + -0.04149356111884117, + 0.06340280175209045, + -0.06671421974897385, + 0.048065558075904846, + -0.00015953027468640357, + 0.02718091942369938, + -0.03504687547683716, + -0.028526373207569122, + -0.030902622267603874, + 0.02775038592517376, + -0.004469016101211309, + 0.03984688222408295, + 0.013471769168972969, + 0.0034978860057890415, + -0.01610804907977581, + -0.04020966216921806, + 0.015833383426070213, + 0.03937826678156853, + -0.029868103563785553, + -0.03265577554702759, + 0.0006817539106123149, + 0.03393058106303215, + -0.04064178466796875, + 0.002519152592867613, + -0.04211294651031494, + -0.10529907792806625, + -0.023560570552945137, + 0.05320034176111221, + -0.009584281593561172, + -0.016276083886623383, + 0.04655936732888222, + 0.0433197095990181, + -0.06495479494333267, + -0.04010099172592163, + -0.020005034282803535, + 0.05774883180856705, + -0.0018699277425184846, + 0.071410171687603, + 0.011818583123385906, + -0.02004898525774479, + -0.038341961801052094, + -0.009409070014953613, + 0.035486917942762375, + 0.009133285842835903, + -0.0028115289751440287, + -0.00980666745454073, + -0.07157894223928452, + 0.05429932102560997, + -0.012981601059436798, + -0.018547790125012398, + -0.038150157779455185, + 0.04556139186024666, + -0.016513517126441002, + -0.04399399086833, + 0.07879544049501419, + 0.013537498190999031, + -0.05680200085043907, + 0.05184308439493179, + -0.04777895286679268, + -0.046981073915958405, + -0.08625616878271103, + 0.09530655294656754, + -0.012283910997211933, + -0.004714170005172491, + -0.017085794359445572, + 0.005511135794222355, + -0.007038942538201809, + -0.058859847486019135, + -0.09732271730899811, + 0.05762806907296181, + 0.09876859933137894, + -0.033328503370285034, + -0.008364656008780003, + -1.7183396039399668e-08, + -0.0306758601218462, + -0.036970265209674835, + 0.039176441729068756, + -0.02115621604025364, + 0.04783596098423004, + 0.037460412830114365, + -0.010677570477128029, + -0.12468936294317245, + -0.04608473554253578, + -0.011669646948575974, + -0.03189050778746605, + 0.008855815045535564, + -0.035627756267786026, + -0.022379878908395767, + -0.02689330279827118, + 0.003669834230095148, + -0.10644730925559998, + 0.07896935194730759, + 0.023734621703624725, + -0.05169770494103432, + -0.0870412066578865, + 0.05982474237680435, + 0.046445414423942566, + 0.015672869980335236, + 0.010782254859805107, + 0.006714915856719017, + -0.022485975176095963, + 0.01149720884859562, + 0.05184384807944298, + 0.05641112104058266, + 0.008699931204319, + 0.10185177624225616, + 0.06064864993095398, + -0.018413042649626732, + -0.050750311464071274, + -0.07430869340896606, + 0.005391231272369623, + -0.020784597843885422, + -0.057094261050224304, + 0.062445517629384995, + 0.0007830563117749989, + 0.011865428648889065, + -0.006832180544734001, + -0.021263504400849342, + -0.0045731100253760815, + 0.012147579342126846, + 0.08295100182294846, + 0.04660224914550781, + -0.056935787200927734, + -0.08852053433656693, + -0.010717692784965038, + 0.04286898300051689, + -0.0676024854183197, + 0.09089914709329605, + -0.07569088041782379, + -0.14938275516033173, + -0.013952301815152168, + 0.10767021030187607, + 0.03666907176375389, + 0.09588740020990372, + 0.11299146711826324, + -0.025377782061696053, + 0.02020389772951603, + -0.06139659509062767 + ], + "stack-plus-bold||*new*,cards,layers,add": [ + -0.056884605437517166, + -0.09785908460617065, + -0.04279046505689621, + 0.12841454148292542, + 0.007968731224536896, + 0.010511733591556549, + -0.012756960466504097, + -0.03533203899860382, + 0.02560660056769848, + -0.015554554760456085, + 0.018782593309879303, + -0.017235126346349716, + -0.07712867110967636, + -0.07058639824390411, + 0.031004834920167923, + 0.05064161494374275, + 0.008331410586833954, + 0.04541361331939697, + 0.019002001732587814, + -0.03626329451799393, + 0.003111995989456773, + -0.032731056213378906, + -0.00765310600399971, + 0.021325578913092613, + 0.02161259762942791, + 0.010766541585326195, + -0.09821727126836777, + -0.057946957647800446, + 0.07763108611106873, + -0.04014992341399193, + 0.07176249474287033, + 0.008822981268167496, + 0.10466263443231583, + 0.04138839244842529, + 0.029818085953593254, + 0.0316431000828743, + -0.05092421919107437, + -0.014145615510642529, + -0.019871389493346214, + 0.006078890059143305, + 0.04737326130270958, + -0.07543395459651947, + -0.04011302813887596, + 0.01703808642923832, + -0.06570999324321747, + -0.061316173523664474, + -0.01008919533342123, + -0.02463529072701931, + 0.067532017827034, + 0.03461853042244911, + 0.0602741539478302, + -0.0601799339056015, + -0.10413840413093567, + -0.08583713322877884, + 0.07412397861480713, + 0.06974992901086807, + -0.07828643918037415, + -0.06735873222351074, + -0.026508744806051254, + 0.0013763394672423601, + 0.05015779286623001, + 0.021845154464244843, + 0.08912751823663712, + 0.02593947947025299, + 0.05233514681458473, + 0.009686256758868694, + -0.026759659871459007, + 0.11099059879779816, + 0.007445230148732662, + 0.06337656825780869, + 0.05232706293463707, + 0.07969502359628677, + 0.009665562771260738, + -0.005514016840606928, + -0.007108140736818314, + 0.042279697954654694, + 0.03222530707716942, + -0.057161346077919006, + -0.02799869515001774, + -0.04934036731719971, + -0.023584643378853798, + -0.01885923743247986, + 0.006172994151711464, + 0.01384711917489767, + 0.057556599378585815, + 0.06603202223777771, + -0.019248245283961296, + -0.0428302101790905, + -0.08845383673906326, + -0.07413928955793381, + -0.03250262141227722, + -0.025369873270392418, + -0.021303577348589897, + 0.09088819473981857, + -0.029376715421676636, + -0.011695578694343567, + 0.04565232992172241, + -0.07311859726905823, + -0.10232493281364441, + 0.053086429834365845, + -0.004010135307908058, + 0.03617400303483009, + 0.0523524172604084, + 0.006941510830074549, + 0.013293618336319923, + -0.0068900128826498985, + -0.044178541749715805, + -0.029845716431736946, + -0.11691824346780777, + -0.01663120649755001, + 0.0601772740483284, + -0.0663570836186409, + -0.0004420936747919768, + -0.08790605515241623, + -0.02626774273812771, + 0.023582911118865013, + 0.0019129684660583735, + -0.0273110494017601, + 0.019417807459831238, + 0.07309456169605255, + 0.07601871341466904, + -0.026782164350152016, + -0.017198365181684494, + -0.10038241744041443, + -0.08009496331214905, + -0.02552616037428379, + 0.006909502670168877, + -2.671994352006056e-33, + 0.08375696837902069, + 0.036035507917404175, + -0.06186683103442192, + 0.1317039579153061, + 0.024539146572351456, + 0.01989484764635563, + -0.025498569011688232, + -0.08962449431419373, + -0.12885478138923645, + 0.06243258714675903, + 0.06453034281730652, + 0.008697998709976673, + -0.04093495011329651, + 0.11857625097036362, + 0.03622953221201897, + -0.09252265840768814, + 0.03652142360806465, + -0.004717709496617317, + -0.013482657261192799, + -0.05724016949534416, + -0.0863477811217308, + 0.052372150123119354, + -0.02314189448952675, + -0.0035983824636787176, + 0.015453732572495937, + 0.022137681022286415, + -0.02058461681008339, + -0.03668593242764473, + -0.03502200171351433, + 0.017923349514603615, + 0.00627523148432374, + -0.016249876469373703, + 0.005324746482074261, + 0.015028665773570538, + -0.0307537280023098, + 0.09832310676574707, + -0.016440121456980705, + -0.020524922758340836, + 0.030215715989470482, + 0.02950575016438961, + -0.05380471423268318, + -0.0053069633431732655, + -0.03406193107366562, + -0.0487181656062603, + -0.013739182613790035, + 0.04403511807322502, + -0.014757161028683186, + -0.04099662974476814, + -0.036259982734918594, + -0.033006127923727036, + -0.016572291031479836, + 0.01496704202145338, + -0.046906840056180954, + -0.011333569884300232, + -0.021879326552152634, + -0.06621251255273819, + -0.04335501790046692, + 0.13568507134914398, + 0.1127539873123169, + -0.000252756814006716, + 0.03456473350524902, + 0.0017516437219455838, + -0.07888105511665344, + 0.08911871165037155, + -0.0681803748011589, + 0.10369235277175903, + 0.019869742915034294, + 0.04742124676704407, + 0.0018797778757289052, + -0.003090243088081479, + 0.04126281291246414, + 0.09232105314731598, + -0.04052964970469475, + 0.06786738336086273, + 0.01630505919456482, + -0.010352703742682934, + -0.04753192886710167, + -0.04897221550345421, + -0.013400758616626263, + -0.046251192688941956, + -0.015572581440210342, + 0.01899983361363411, + -0.07546556740999222, + 0.02946505695581436, + 0.014055810868740082, + 0.07133016735315323, + 0.002263815375044942, + 0.037210963666439056, + 0.03556390479207039, + 0.08398836851119995, + -0.08894748240709305, + -0.0328182578086853, + 0.0779242068529129, + -0.10210032016038895, + -0.05161837115883827, + 1.0134418016438808e-33, + -0.007584016770124435, + -0.009626943618059158, + -0.09895583242177963, + -0.026680808514356613, + -0.049810197204351425, + -0.029538342729210854, + 0.04545135796070099, + 0.053895726799964905, + -0.03501560911536217, + 0.0034572770819067955, + 0.016001377254724503, + 0.08093960583209991, + -0.05169783905148506, + -0.028723198920488358, + 0.019812192767858505, + 0.023007186129689217, + -0.12130273133516312, + 0.052454233169555664, + 0.024580251425504684, + -0.04364945366978645, + 0.004632038064301014, + -0.014136887155473232, + -0.012066921219229698, + 0.0978957861661911, + 0.01733519323170185, + 0.026903245598077774, + -0.010858016088604927, + 0.025867890566587448, + 0.06095218285918236, + -0.08859746903181076, + 0.020049436017870903, + -0.023687109351158142, + -0.00022062075731810182, + 0.10143953561782837, + -0.029965631663799286, + 0.08624856173992157, + 0.00962642952799797, + 0.011380293406546116, + 0.05014270171523094, + -0.019098129123449326, + -0.06247704103589058, + -0.06044771149754524, + 0.008159331046044827, + 0.03021574579179287, + 0.0015051481314003468, + -0.056743841618299484, + -0.010239054448902607, + -0.017742294818162918, + 0.008520186878740788, + -0.06019728258252144, + -0.03886846825480461, + -0.07064010202884674, + -0.017924195155501366, + 0.0054307980462908745, + -0.02875586971640587, + 0.0651904046535492, + 0.03120115026831627, + -0.011771907098591328, + 0.031769830733537674, + -0.03786463662981987, + -0.05057929456233978, + -0.02501004748046398, + -0.034079860895872116, + -0.03520236536860466, + 0.03512314334511757, + -0.0070061772130429745, + -0.012603051029145718, + -0.06348998844623566, + -0.04758746922016144, + -0.009435045532882214, + 0.029800735414028168, + 0.05100681632757187, + -0.05135840177536011, + -0.006034536752849817, + -0.017286406829953194, + -0.040723174810409546, + 0.010767565108835697, + 0.06385895609855652, + 0.044456373900175095, + -0.020446380600333214, + -0.07643374055624008, + -0.029808437451720238, + -0.0013579914811998606, + 0.012290917336940765, + 0.013399794697761536, + 0.0456356480717659, + 0.03717484325170517, + 0.07453801482915878, + -0.02489134855568409, + -0.0749111920595169, + -0.014085310511291027, + 0.031400423496961594, + 0.06361042708158493, + -0.014534305781126022, + -0.08041133731603622, + -1.9549577956468056e-08, + 0.011489424854516983, + -0.06439502537250519, + -0.013548524118959904, + -0.008673606440424919, + 0.010552083142101765, + -0.056023575365543365, + -0.017776060849428177, + -0.07257037609815598, + -0.035515155643224716, + -0.052447423338890076, + 0.030796512961387634, + 0.10060982406139374, + -0.001171374460682273, + -0.038219697773456573, + 0.03655647858977318, + 0.035063859075307846, + -0.0002740984200499952, + 0.06827311962842941, + -0.018108921125531197, + -0.06012151390314102, + 0.01222484651952982, + 0.0965878963470459, + 0.07599446922540665, + 0.07856151461601257, + -0.027267472818493843, + 0.03473752737045288, + 0.014307646080851555, + -0.037079013884067535, + 0.06144092604517937, + 0.09315517544746399, + 0.11134319007396698, + 0.02795710787177086, + 0.008134886622428894, + 0.06037633866071701, + 0.02072579599916935, + 0.038954704999923706, + -0.010073077864944935, + 0.028835522010922432, + -0.04149635136127472, + 0.09388048946857452, + -0.023428907617926598, + -0.05919545888900757, + 0.030484480783343315, + -0.030651366338133812, + -0.024968847632408142, + -0.07241204380989075, + -0.08012133836746216, + -0.032369133085012436, + 0.0005542549188248813, + -0.12329471856355667, + -0.018661338835954666, + -0.015148323029279709, + -0.002190094441175461, + 0.09000957012176514, + -0.019851217046380043, + -0.025863036513328552, + 0.03961925581097603, + 0.10722355544567108, + 0.0642639696598053, + 0.04055396094918251, + 0.06852108240127563, + -0.021374430507421494, + 0.05176635459065437, + 0.012803029268980026 + ], + "stack-simple-bold||cards,layers": [ + -0.027466006577014923, + -0.0546283982694149, + -0.04130052030086517, + 0.11892826855182648, + 0.004217395093291998, + -0.0022681879345327616, + -0.0046507250517606735, + -0.005603582598268986, + 0.03361670672893524, + -0.05304481089115143, + -0.04616497829556465, + -0.007532140705734491, + -0.055700693279504776, + -0.04635937139391899, + 0.016351880505681038, + 0.05757024139165878, + 0.03546042740345001, + 0.058001819998025894, + 0.02712996117770672, + 0.039815690368413925, + -0.00975796114653349, + -0.013315348885953426, + -0.006759346462786198, + 0.0255371555685997, + -0.029812036082148552, + 0.0048334961757063866, + -0.06010806933045387, + -0.030774986371397972, + 0.06201484799385071, + -0.035097409039735794, + 0.07073897868394852, + -0.006546412594616413, + 0.09267032146453857, + 0.05992437154054642, + 0.015717029571533203, + 0.006067516747862101, + -0.04614567756652832, + -0.037677038460969925, + -0.033929500728845596, + 0.03472721576690674, + 0.05036129802465439, + -0.05812637135386467, + -0.030008547008037567, + 0.015470332466065884, + -0.06369053572416306, + -0.039710015058517456, + -0.01176323089748621, + 0.015362575650215149, + 0.014125537127256393, + -0.0007881188066676259, + 0.065379798412323, + -0.03746521845459938, + -0.06643803417682648, + -0.08606646209955215, + 0.05603424832224846, + 0.06017225980758667, + -0.08974090963602066, + -0.060538843274116516, + 0.0004710920329671353, + 0.02440764382481575, + 0.009862685576081276, + 0.028256410732865334, + 0.05903385207056999, + 0.02876380831003189, + 0.05383335426449776, + 0.027109390124678612, + 0.022056739777326584, + 0.10324127227067947, + -0.009321160614490509, + 0.028147781267762184, + 0.0850493535399437, + 0.05610835179686546, + 0.0052292319014668465, + -0.02746383287012577, + -0.0009237765916623175, + 0.06310442835092545, + 0.04563843458890915, + -0.04781727492809296, + -0.0392666831612587, + -0.05804005637764931, + -0.06844135373830795, + -0.05945363640785217, + 0.003924761898815632, + 0.023795802146196365, + 0.05081314966082573, + 0.03250586986541748, + -0.028183922171592712, + -0.04192757606506348, + -0.06678574532270432, + -0.06871213763952255, + -0.03691747784614563, + -0.014966856688261032, + 0.03933004289865494, + 0.10479070246219635, + 0.004965189378708601, + -0.03634706884622574, + 0.06395357847213745, + -0.06777061522006989, + -0.13633275032043457, + 0.05950518324971199, + 0.010692499577999115, + 0.06004659831523895, + 0.06433089077472687, + -0.03131188824772835, + 0.008245100267231464, + 0.003913131542503834, + -0.015796873718500137, + -0.023385627195239067, + -0.09449862688779831, + -0.06881026923656464, + 0.0271244328469038, + -0.10089386254549026, + 0.0069196284748613834, + -0.06608682870864868, + -0.010904599912464619, + -0.03615980222821236, + -0.00350949470885098, + -0.0300185177475214, + 0.023449979722499847, + 0.06645891815423965, + 0.002881197025999427, + -0.04856318235397339, + -0.038741059601306915, + -0.09455731511116028, + -0.03639332577586174, + -0.0216840710490942, + 0.049313679337501526, + -3.1037267947691965e-33, + 0.09176930040121078, + 0.06291744858026505, + -0.056279007345438004, + 0.12633773684501648, + 0.02293994277715683, + -0.006761183030903339, + -0.006980658043175936, + -0.12669764459133148, + -0.10845071822404861, + 0.0810280442237854, + 0.07919993251562119, + 0.029480958357453346, + -0.025000229477882385, + 0.09134628623723984, + 0.0358014777302742, + -0.071159228682518, + 0.01569657027721405, + -0.010497870855033398, + -0.04009563848376274, + -0.05776037648320198, + -0.06452389806509018, + 0.04298144206404686, + -0.0230710431933403, + -0.05533134564757347, + -0.018220996484160423, + 0.012205909937620163, + -0.046539727598428726, + -0.04200805723667145, + -0.02210715413093567, + 0.0220255795866251, + 0.023200156167149544, + -0.004768752492964268, + 0.03512319177389145, + -0.007887802086770535, + -0.025551993399858475, + 0.07792047411203384, + -0.009988480247557163, + -0.005301607772707939, + -0.00033518343116156757, + 0.05542304739356041, + -0.06114054098725319, + 0.010108762420713902, + 0.019581181928515434, + -0.04348592832684517, + -0.016240622848272324, + 0.06761131435632706, + -0.001749011455103755, + -0.02708720602095127, + -0.032875265926122665, + -0.021825911477208138, + 0.007038005627691746, + -0.0062981583178043365, + -0.025104911997914314, + -0.04719749838113785, + 0.06110889092087746, + -0.08005036413669586, + -0.002175059402361512, + 0.1517643928527832, + 0.08326220512390137, + 0.008516923524439335, + 0.023633861914277077, + -0.007592087611556053, + -0.09884464740753174, + 0.059088848531246185, + -0.08099418878555298, + 0.1299697905778885, + -0.0008420459926128387, + 0.016617542132735252, + -0.029676849022507668, + -0.022157564759254456, + 0.048953186720609665, + 0.11739492416381836, + -0.01420405600219965, + -0.0012074698461219668, + 0.006284634117037058, + 0.042189162224531174, + -0.025090018287301064, + -0.06431605666875839, + 0.011075403541326523, + -0.045921441167593, + -0.03174389898777008, + 0.0353090725839138, + -0.09623222053050995, + 0.02796415239572525, + -0.02484225481748581, + 0.09226853400468826, + 0.01647624373435974, + 0.03755669668316841, + 0.003947633784264326, + 0.1092827096581459, + -0.07824557274580002, + -0.0091505516320467, + 0.1048443391919136, + -0.11807948350906372, + -0.04066711664199829, + 1.9473147580225857e-33, + -0.0021067329216748476, + 0.005340204108506441, + -0.08868464827537537, + -0.0063124462030828, + -0.023933086544275284, + -0.04452300816774368, + 0.06223436817526817, + 0.07792216539382935, + -0.03995412960648537, + 0.02296210266649723, + 0.013245445676147938, + 0.06297701597213745, + -0.08737780153751373, + -0.039193760603666306, + 0.01490012276917696, + -0.009354870766401291, + -0.04732879623770714, + 0.06265733391046524, + 0.03322068601846695, + -0.07040930539369583, + -0.00226595182903111, + -0.03209546580910683, + -0.04555153846740723, + 0.11916400492191315, + -0.005584387574344873, + 0.0495627224445343, + -0.04322056099772453, + -0.0027488432824611664, + 0.06847630441188812, + -0.08483227342367172, + 0.004597659222781658, + -0.06681536883115768, + 0.026110108941793442, + 0.0831291526556015, + -0.04980919510126114, + 0.10622847080230713, + -0.020049994811415672, + 0.01774025522172451, + 0.04466915875673294, + -0.058243997395038605, + -0.08476123958826065, + -0.03802989423274994, + -0.010846100747585297, + -0.006559726782143116, + -0.0028115303721278906, + -0.052602943032979965, + 0.002351350151002407, + -0.029354773461818695, + 0.014961416833102703, + -0.04718632996082306, + -0.06960863620042801, + -0.04732667654752731, + -0.0019887846428900957, + 0.033287230879068375, + -0.04580138251185417, + 0.02567770704627037, + 0.01851200871169567, + 0.0004986278945580125, + 0.03579229861497879, + -0.0066764033399522305, + -0.03670903667807579, + -0.003381876740604639, + -0.026674436405301094, + -0.03308206796646118, + 0.04431668668985367, + -0.004207748919725418, + 0.02058299258351326, + -0.0589979812502861, + -0.006706581450998783, + 0.008168271742761135, + 0.031096385791897774, + 0.03388670086860657, + -0.005139379762113094, + 0.005889589432626963, + 0.025844981893897057, + -0.04132503271102905, + 0.031001711264252663, + 0.06990089267492294, + 0.033383920788764954, + -0.03301024064421654, + -0.05054472014307976, + -0.046664491295814514, + -0.028272777795791626, + 0.028547532856464386, + 0.02603997103869915, + 0.06656648963689804, + 0.0694667249917984, + 0.008816642686724663, + -0.011032412759959698, + -0.07525186240673065, + -0.004965841770172119, + 0.01407042145729065, + 0.1434682309627533, + -0.026454193517565727, + -0.060445211827754974, + -1.5347726645131843e-08, + 0.024441247805953026, + -0.04943342134356499, + 0.012739869765937328, + -0.013241156935691833, + -0.03206337243318558, + -0.048950910568237305, + 0.01895318739116192, + -0.0948878675699234, + -0.029802395030856133, + -0.0024996716529130936, + 0.027435481548309326, + 0.06707265973091125, + -0.03053915873169899, + -0.05795302614569664, + 0.043015655130147934, + 0.054044198244810104, + -0.039939943701028824, + 0.07268833369016647, + -0.019604681059718132, + -0.03935590386390686, + 0.006730472669005394, + 0.06649365276098251, + 0.06482033431529999, + 0.08136021345853806, + -0.020958704873919487, + 0.03173859417438507, + -0.012063964270055294, + -0.005149079021066427, + 0.09105594456195831, + 0.10433200001716614, + 0.060952216386795044, + 0.019182516261935234, + 0.035051390528678894, + 0.06500780582427979, + 0.01605825684964657, + 0.02790047973394394, + 0.001378072309307754, + 0.026612041518092155, + -0.02814054675400257, + 0.11060190200805664, + -0.03801615908741951, + -0.07859300076961517, + 0.011534617282450199, + -0.03433351591229439, + 0.004592285491526127, + -0.03913309797644615, + -0.0611056350171566, + -0.0223118606954813, + -0.025839999318122864, + -0.10418228060007095, + -0.04731372743844986, + -0.038055382668972015, + -0.04263458400964737, + 0.12505483627319336, + -0.015704108402132988, + -0.08585157990455627, + 0.03471509367227554, + 0.09126153588294983, + 0.01225813664495945, + 0.03220372647047043, + 0.08300665020942688, + 0.03769109398126602, + -0.0021563214249908924, + 0.01742255501449108 + ], + "stairs-bold||staircase,steps,escalator,exit,signs": [ + 0.0055754114873707294, + 0.0004303698951844126, + 0.004645181819796562, + 0.026305953040719032, + -0.031150193884968758, + -0.003799502504989505, + -0.05411091074347496, + -0.007967514917254448, + 0.008638875558972359, + -0.014085344038903713, + 0.015083670616149902, + 0.010557789355516434, + 0.0776430293917656, + -0.031044000759720802, + 0.021822268143296242, + 0.09462199360132217, + -0.019816186279058456, + 0.08029533922672272, + -0.01045843306928873, + -0.007841897197067738, + 0.019445614889264107, + 0.006760574411600828, + 0.0031180523801594973, + 0.06442272663116455, + -0.026557529345154762, + 0.017242103815078735, + 0.06884434819221497, + 0.030621163547039032, + 0.019576305523514748, + -0.07696658372879028, + -0.008601191453635693, + -0.039280373603105545, + -0.021750759333372116, + 0.03729173541069031, + 0.0603521466255188, + 0.04145291447639465, + 0.03991597890853882, + -0.043642476201057434, + 0.018360257148742676, + -0.007335118483752012, + 0.024325832724571228, + -0.069911889731884, + -0.010571795515716076, + 0.05236341804265976, + -0.04982205107808113, + 0.04969299957156181, + -0.0549246221780777, + -0.06884206831455231, + -0.016513433307409286, + 0.009392084553837776, + 0.008373340591788292, + -0.028460796922445297, + -0.11208344995975494, + 0.10642705857753754, + 0.009164871647953987, + 0.03178628906607628, + -0.027003059163689613, + -0.050438329577445984, + 0.05246691033244133, + -0.019381603226065636, + -0.005358259193599224, + -0.003778420854359865, + -0.021010348573327065, + 0.0008329873671755195, + -0.020495856180787086, + -0.006992604583501816, + -0.002091078320518136, + -0.04007047787308693, + 0.036717310547828674, + 0.04715827479958534, + 0.014903937466442585, + -0.025177735835313797, + 0.015017407014966011, + -0.01931711472570896, + -0.07888780534267426, + 0.00864008255302906, + 0.03242742270231247, + 0.025303708389401436, + -0.06704054027795792, + -0.057066455483436584, + -0.11815614253282547, + -0.029155224561691284, + -0.04857549071311951, + 0.020705977454781532, + 0.07015091180801392, + 0.069502092897892, + -0.06330975145101547, + -0.037159938365221024, + 0.024696819484233856, + 0.029926927760243416, + -0.046380359679460526, + -0.08469586819410324, + 0.018737535923719406, + -0.01276220940053463, + -0.02269287221133709, + -0.02968784049153328, + -0.002887760056182742, + -0.0676959678530693, + -0.015283290296792984, + 0.022066878154873848, + -0.03697178140282631, + 0.04175729677081108, + 0.10674610733985901, + 0.029458126053214073, + -0.0198894664645195, + -0.04301857203245163, + 0.046754077076911926, + 0.007345410529524088, + 0.028276942670345306, + 0.03197871521115303, + -0.05453208088874817, + -0.15115821361541748, + 0.12213637679815292, + -0.023413987830281258, + 0.00644647004082799, + -0.0014035279164090753, + -0.05754588171839714, + -0.0123780257999897, + 0.05011356249451637, + 0.029370224103331566, + 0.042887356132268906, + -0.03579796850681305, + 0.004943951033055782, + -0.04490726813673973, + -0.04709861800074577, + -0.016508135944604874, + 0.04907993972301483, + -3.487732881192006e-33, + 0.041914768517017365, + 0.056985702365636826, + 0.006784729193896055, + 0.06863235682249069, + 0.10120924562215805, + 0.05576493963599205, + -0.07133645564317703, + -0.024007689207792282, + -0.038962073624134064, + 0.0773821622133255, + 0.023451702669262886, + 0.028053300455212593, + -0.017764661461114883, + 0.07022293657064438, + 0.05083348602056503, + -0.04839487373828888, + 0.05657906457781792, + -0.011326425708830357, + -0.10783622413873672, + -0.04665801674127579, + 0.0026485277339816093, + -0.0023075551725924015, + -0.013938880525529385, + 0.016747649759054184, + -0.008237662725150585, + -0.04993750900030136, + 0.010993264615535736, + 0.0027895718812942505, + -0.08823201805353165, + 0.014185276813805103, + 0.05971042439341545, + -0.01808210089802742, + -0.013025318272411823, + 0.02391497604548931, + 0.02441311813890934, + 0.015917040407657623, + -0.01779790036380291, + -0.01289015356451273, + 0.015919379889965057, + -0.019406409934163094, + -0.10294115543365479, + -0.08988645672798157, + 0.0032898469362407923, + 0.012398176826536655, + 0.025069890543818474, + 0.07900215685367584, + 0.006015675142407417, + -0.05069997161626816, + 0.047143928706645966, + -0.0019567806739360094, + -0.025718357414007187, + 0.04128982871770859, + 0.008419638499617577, + -0.013602922670543194, + 0.05267645791172981, + -0.019241366535425186, + -0.01637694239616394, + 0.05180909112095833, + -0.046449560672044754, + -0.01056099496781826, + -0.004509359132498503, + 0.10584478080272675, + 0.04589441046118736, + 0.023399613797664642, + -0.03513503819704056, + -0.04368462786078453, + -0.11030810326337814, + 0.009071093052625656, + 0.13180243968963623, + 0.028648734092712402, + -0.029355047270655632, + 0.02800598368048668, + 0.06742305308580399, + 0.043073028326034546, + 0.0040456573478877544, + 0.03295043110847473, + -0.1012258380651474, + -0.08779171854257584, + 0.11677718162536621, + -0.10871540755033493, + -0.1196650043129921, + -0.007376205176115036, + -0.07316340506076813, + 0.08889857679605484, + 0.15559643507003784, + 0.04705396667122841, + -0.02107883244752884, + -0.0693260058760643, + -0.05687164515256882, + 0.024206632748246193, + -0.08482789248228073, + 0.01857776567339897, + 0.002052167896181345, + -0.012681431137025356, + -0.072732113301754, + 1.009596741255242e-34, + 0.030094759538769722, + 0.07398764044046402, + -0.015304685570299625, + -0.02506759576499462, + -0.07130476832389832, + 0.024688711389899254, + -0.004301285371184349, + 0.0005922106793150306, + 0.07686594128608704, + 0.09000617265701294, + 0.027048703283071518, + 0.0444692000746727, + -0.03452030196785927, + -0.06888353079557419, + 0.07031642645597458, + -0.04560267552733421, + 0.10314009338617325, + 0.0010368608636781573, + 0.05502859503030777, + -0.0020405983086675406, + -0.03128412365913391, + -0.024927010759711266, + -0.17644135653972626, + 0.05267319828271866, + -0.01852073147892952, + -0.0004254941886756569, + 0.08933813124895096, + -0.006402136757969856, + -0.008213093504309654, + -0.030105315148830414, + -0.04201079532504082, + -0.03494419902563095, + 0.06628035008907318, + 0.03168436139822006, + -0.04067191854119301, + -0.03561899811029434, + 0.04275807365775108, + -0.040548741817474365, + -0.02127685211598873, + -0.0457431823015213, + 0.07167762517929077, + 0.02970309369266033, + 0.13870057463645935, + 0.03828065097332001, + -0.033903107047080994, + -0.005412735510617495, + -0.0417017936706543, + -0.0065054153092205524, + -0.05355512350797653, + -8.133867959259078e-05, + -0.009815950877964497, + -0.00664521474391222, + -0.06399253010749817, + 0.014188609085977077, + -0.044491466134786606, + -0.014176085591316223, + -0.030630894005298615, + 0.012541146017611027, + -0.0500001534819603, + 0.019620703533291817, + 0.025083502754569054, + 0.06414415687322617, + 0.04272602126002312, + 0.015707330778241158, + 0.013811067678034306, + -0.07251133024692535, + -0.013603050261735916, + -0.019218450412154198, + -0.023886563256382942, + -0.024914517998695374, + 0.036781441420316696, + 0.008730906993150711, + 0.011251342482864857, + -0.03791150823235512, + 0.07554841786623001, + -0.124585822224617, + 0.019786927849054337, + 0.0002453699125908315, + -0.0003845140163321048, + -0.0379246287047863, + 0.006506502628326416, + -0.06258886307477951, + -0.03403875231742859, + 0.01317823026329279, + -0.07282882183790207, + -0.011970956809818745, + -0.07081007957458496, + 0.07522361725568771, + 0.04652269557118416, + -0.012397205457091331, + -0.007320677395910025, + 0.06926993280649185, + 0.00029683817410841584, + -0.03858853876590729, + -0.03773600980639458, + -1.87804989337792e-08, + -0.061761483550071716, + -0.007329487707465887, + -0.019866321235895157, + -0.1137627586722374, + 0.038307636976242065, + -0.029107579961419106, + 0.037627458572387695, + 0.07036041468381882, + -0.04623120650649071, + 0.006117029115557671, + 0.07373607158660889, + 0.07668593525886536, + -0.03785553574562073, + 0.030566973611712456, + 0.031419429928064346, + 0.024167504161596298, + -0.06186467036604881, + 0.03988964110612869, + -0.03444685786962509, + -0.037192173302173615, + -0.05886145308613777, + 0.009410088881850243, + 0.0064878035336732864, + -0.0001057935951394029, + -0.0091067124158144, + -0.0025703732389956713, + -0.08114464581012726, + -0.006235175766050816, + -0.010255740955471992, + 0.0520518496632576, + 0.07420650124549866, + 0.07773373275995255, + 0.04597162455320358, + 0.007003814447671175, + -0.10456464439630508, + 0.022931726649403572, + 0.06310588121414185, + 0.012759972363710403, + 0.05757663771510124, + 0.09504485875368118, + -0.02318345569074154, + -0.06190187484025955, + -0.024543873965740204, + 0.010864689946174622, + -0.018465735018253326, + -0.008265271782875061, + 0.06327535957098007, + 0.005725560709834099, + -0.14851148426532745, + -0.09463383257389069, + -0.0444074310362339, + 0.01533870492130518, + 0.018196703866124153, + 0.055300816893577576, + -0.002447372768074274, + -0.06284346431493759, + -0.0011948271421715617, + -0.001596352201886475, + -0.016614355146884918, + 0.030677633360028267, + 0.19097578525543213, + 0.05750642344355583, + 0.04316016286611557, + -0.02505992166697979 + ], + "stamp-bold||clone,seal,official": [ + -0.07504819333553314, + 0.05056804418563843, + -0.005529235582798719, + 0.031235095113515854, + -0.01089375838637352, + -0.08510793000459671, + 0.08285030722618103, + -0.03101293183863163, + -0.030721405521035194, + -0.05056866258382797, + 0.028938699513673782, + 0.02311018295586109, + 0.02168816700577736, + -0.06173282116651535, + -0.04958944395184517, + 0.017809394747018814, + 0.027870425954461098, + 0.003408194985240698, + -0.01910453476011753, + -0.007377597037702799, + 0.01630856655538082, + -0.0055098882876336575, + 0.05089981481432915, + 0.04790786653757095, + 0.010377266444265842, + 0.028941622003912926, + -0.02182207629084587, + -0.009208079427480698, + 0.04698287695646286, + -0.10202492028474808, + -0.028883665800094604, + 0.013576449826359749, + 0.031062129884958267, + -0.008398559875786304, + 0.10747891664505005, + 0.08787851780653, + 0.014402113854885101, + 0.003153087804093957, + 0.14346931874752045, + -0.05447271466255188, + 0.03620743751525879, + -0.12129142135381699, + -0.07751984149217606, + 0.08543192595243454, + -0.06320424377918243, + 0.05683722719550133, + 0.015978822484612465, + 0.04732859879732132, + -0.012232553213834763, + 0.018586892634630203, + 0.0794692113995552, + -0.08050461858510971, + -0.0853026807308197, + -0.02116496115922928, + 0.04563181847333908, + -0.059581223875284195, + -0.030613962560892105, + -0.02374151535332203, + 0.020806297659873962, + -0.003079191083088517, + -0.022631093859672546, + 0.09802660346031189, + 0.011255751363933086, + 0.06898593157529831, + 0.07401050627231598, + 0.011319846846163273, + 0.008827830664813519, + -0.021406253799796104, + -0.03340954706072807, + -0.05041457712650299, + 0.06574563682079315, + 0.002228306606411934, + 0.0026157971005886793, + -0.009015558287501335, + -0.05410810932517052, + 0.010588274337351322, + -0.010043446905910969, + 0.056275736540555954, + -0.05471372604370117, + -0.014240844175219536, + -0.05764273181557655, + -0.12646856904029846, + -0.017627691850066185, + 0.06494786590337753, + 0.028764644637703896, + 0.03595343232154846, + -0.05560542643070221, + -0.0718032643198967, + 0.05636535584926605, + 0.030129889026284218, + -0.026582038030028343, + 0.022552648559212685, + 0.07512272149324417, + 0.019794471561908722, + -0.10029897093772888, + -0.006801065988838673, + 0.0513862743973732, + 0.017741072922945023, + -0.0762043446302414, + 0.08622489124536514, + -0.015512010082602501, + 0.05645440146327019, + -0.0028078369796276093, + -0.05934617668390274, + 0.03271633759140968, + -0.019260426983237267, + -0.04991820454597473, + -0.11888005584478378, + 0.039868224412202835, + -0.004250980447977781, + -0.0010377431754022837, + -0.023135697469115257, + -0.01607883721590042, + -0.04566824436187744, + -0.035548046231269836, + -0.10149168968200684, + -0.07438987493515015, + -0.032075945287942886, + 0.08027920126914978, + -0.04574408009648323, + 0.055051639676094055, + -0.06945067644119263, + -0.041705258190631866, + -0.08341573923826218, + -0.02973507158458233, + 0.00524497963488102, + 0.07217899709939957, + -3.850540763707658e-33, + 0.0575864277780056, + 0.12245087325572968, + 0.0032146009616553783, + 0.09050324559211731, + -0.010945014655590057, + 0.019390571862459183, + 0.047775812447071075, + -0.042714715003967285, + -0.14857010543346405, + -0.009226019494235516, + 0.0668775662779808, + -0.030198248103260994, + 0.01482557412236929, + 0.06452091038227081, + -0.06574639678001404, + 0.04951877519488335, + -0.007504095323383808, + -0.05854536592960358, + -0.013343785889446735, + 0.04474769905209541, + -0.017138687893748283, + 0.06183786317706108, + -0.06050297990441322, + -0.02045474573969841, + -0.026176512241363525, + -0.017653755843639374, + -0.013393940404057503, + -0.035398077219724655, + 0.008453083224594593, + 0.04867204278707504, + 0.035899583250284195, + 0.017520954832434654, + 0.10197459906339645, + 0.014104914851486683, + 0.010431633330881596, + 0.011708187870681286, + 0.037033811211586, + -0.06272097676992416, + -0.013411697000265121, + -0.015351103618741035, + 0.045660048723220825, + -0.011374580673873425, + 0.026312777772545815, + 0.0038420576602220535, + 0.029303783550858498, + 0.011088680475950241, + -0.017891505733132362, + -0.030902860686182976, + 0.12031062692403793, + -0.01281872671097517, + 0.007629679050296545, + -0.00797276757657528, + -0.014613285660743713, + -0.034235332161188126, + -0.06383121758699417, + -0.08806296437978745, + 0.006993546150624752, + 0.005763687659054995, + -0.014462417922914028, + -0.0050582787953317165, + -0.006343797314912081, + 0.03858451545238495, + 0.04088978096842766, + 0.04118356108665466, + 0.07522764056921005, + 0.07700690627098083, + -0.05022849515080452, + 0.014027141965925694, + 0.057598698884248734, + 0.03659496456384659, + -0.00808396004140377, + 0.044701144099235535, + -0.07277847081422806, + -0.00704698171466589, + -0.01202489621937275, + -0.020712194964289665, + 0.0467153824865818, + 0.03780372068285942, + 0.08808794617652893, + -0.05795865133404732, + -0.10679928213357925, + 0.03391024470329285, + -0.10077212005853653, + -0.02034984715282917, + 0.014549901708960533, + 0.006459745578467846, + 0.0388764925301075, + -0.003988499287515879, + -0.03389301151037216, + 0.0578128881752491, + -0.005505675915628672, + -0.01168125681579113, + 0.01504991203546524, + -0.049576207995414734, + -0.0645110085606575, + 1.6109751511966125e-33, + 0.01847829483449459, + -0.05286381393671036, + 0.011040297336876392, + 0.06974830478429794, + -0.03625605255365372, + -0.030254237353801727, + -0.024927645921707153, + 0.06024949252605438, + -0.05122918263077736, + 0.036136794835329056, + -0.0013339902507141232, + 0.037007324397563934, + -0.011975117959082127, + 0.030703533440828323, + -0.09269984066486359, + 0.01767801307141781, + 0.009981469251215458, + 0.0659472718834877, + -0.018879596143960953, + -0.04148288443684578, + -0.040193766355514526, + -0.024097396060824394, + 0.011006119661033154, + 0.164946049451828, + -0.04556816816329956, + 0.007120664697140455, + 0.029337992891669273, + -0.0009294029441662133, + 0.04274751618504524, + -0.07635485380887985, + -0.004639013670384884, + 0.013118250295519829, + -0.03571946918964386, + 0.06703182309865952, + -0.07347307354211807, + 0.018177900463342667, + 0.07907112687826157, + 0.039297085255384445, + 0.053769197314977646, + 0.010461044497787952, + -0.03571582958102226, + -0.062019240111112595, + -0.04719839245080948, + 0.014092872850596905, + -0.02809763140976429, + -0.05777360498905182, + 0.027964049950242043, + -0.0020146381575614214, + -0.015957506373524666, + 0.08514708280563354, + 0.07406745851039886, + -0.03225591033697128, + -0.03301291912794113, + 0.039074067026376724, + -0.020544813945889473, + 0.0197757575660944, + -0.06313975155353546, + 0.04362037777900696, + 0.050190430134534836, + 0.026086730882525444, + 0.0335063561797142, + 0.04838515818119049, + 0.01936384104192257, + -0.01579156517982483, + 0.03397766873240471, + -0.05037223547697067, + 0.03344738110899925, + 0.03243838995695114, + -0.05075439065694809, + 0.027145162224769592, + 0.012442860752344131, + 0.0035211623180657625, + -0.01793386973440647, + -0.015402163378894329, + 0.025094419717788696, + -0.07297401130199432, + 0.05228506773710251, + -0.038515351712703705, + -0.03956972807645798, + 0.04954786226153374, + -0.03241976723074913, + -0.01839013397693634, + -0.08068516850471497, + 0.07887567579746246, + 0.018392346799373627, + 0.009206421673297882, + 0.021186523139476776, + -0.03812021017074585, + -0.02042299695312977, + -0.01783110946416855, + -0.0755966529250145, + 0.08495138585567474, + -0.05634832754731178, + -0.03522650897502899, + 0.019242653623223305, + -1.4906023082517095e-08, + 0.012295015156269073, + 0.029175493866205215, + -0.05426015704870224, + -0.028090180829167366, + 0.00838074553757906, + -0.011377593502402306, + -0.021978572010993958, + -0.13107967376708984, + -0.07339100539684296, + -0.06104950234293938, + 0.046217866241931915, + 0.006701137404888868, + -0.04254839941859245, + -0.08440975844860077, + 0.0013334371615201235, + -0.03582299128174782, + -0.0649261474609375, + 0.008081627078354359, + -0.07952612638473511, + -0.07440416514873505, + -0.05465923249721527, + 0.0017607604386284947, + 0.04257768392562866, + -0.07909134775400162, + -0.06946294009685516, + 0.029533473774790764, + 0.024182487279176712, + -0.009806466288864613, + 0.004300271160900593, + 0.03743219003081322, + 0.04743450880050659, + 0.027879048138856888, + 0.09002944082021713, + -0.0173144843429327, + -0.01730356179177761, + -0.039135921746492386, + 0.027309436351060867, + -0.01486907433718443, + 0.03237060457468033, + 0.1346256136894226, + -0.0024055507965385914, + -0.0026633006054908037, + -0.06105945631861687, + 0.0004437708994373679, + -0.04322906956076622, + 0.04564579203724861, + 0.06566465646028519, + -0.001278390409424901, + -0.07054367661476135, + -0.05628645420074463, + 0.08791813254356384, + -0.04697929322719574, + -0.01029194425791502, + 0.11306934803724289, + -0.0369311161339283, + -0.03720428794622421, + 0.036835260689258575, + 0.1028359979391098, + 0.10953870415687561, + 0.08350147306919098, + 0.13328252732753754, + -0.039363183081150055, + 0.07721839100122452, + 0.04740520566701889 + ], + "standard-definition-bold||*new*,sd,resolution,video": [ + 0.06781738251447678, + -0.09601518511772156, + -0.040662046521902084, + -0.04277508333325386, + 0.07231225073337555, + -0.013565880246460438, + -0.016249878332018852, + 0.018074490129947662, + -0.005049519706517458, + 0.009333193302154541, + -0.01083923690021038, + -0.042005084455013275, + -0.023634275421500206, + -0.019061628729104996, + 0.008492686785757542, + -0.008851386606693268, + 0.046421244740486145, + 0.014032753184437752, + -0.04705427214503288, + 0.07798932492733002, + 0.08247951418161392, + -0.0420273095369339, + 0.01619555801153183, + -0.006627829745411873, + 0.05168566852807999, + 0.011603711172938347, + 0.07175954431295395, + 0.016746409237384796, + 0.08286423236131668, + -0.06345520913600922, + 0.03739679232239723, + 0.04905007407069206, + 0.22819718718528748, + 0.0539473332464695, + 0.10109584033489227, + -0.015365269966423512, + 0.016619259491562843, + -0.0775146409869194, + -0.1014031246304512, + 0.0011370622087270021, + 0.027924947440624237, + 0.004932889714837074, + 0.0035081582609564066, + 0.020958244800567627, + -0.06432556360960007, + 0.029489243403077126, + 0.005398616194725037, + -0.07999860495328903, + -0.006641428917646408, + -0.04750989004969597, + -0.009908486157655716, + 0.012424539774656296, + -0.1609170287847519, + 0.0018770404858514667, + 0.034486331045627594, + 0.01953177899122238, + -0.04827747866511345, + -0.035671964287757874, + 0.05603054165840149, + 0.0026542155537754297, + 0.007508059497922659, + -0.026237977668642998, + 0.058916911482810974, + 0.07160509377717972, + 0.023888779804110527, + 0.026915093883872032, + -0.010790032334625721, + -0.030740756541490555, + 0.04565712809562683, + 0.017566457390785217, + -0.1205035001039505, + 0.04915384575724602, + 0.023038815706968307, + 0.03590771183371544, + -0.07975354790687561, + -0.0861738994717598, + -0.005836810451000929, + 0.041768524795770645, + -0.005350866820663214, + -0.0664629116654396, + -0.05252452194690704, + -0.004551323130726814, + 0.005795381031930447, + 0.007427914068102837, + 0.0791919156908989, + 0.08112994581460953, + -0.04831576347351074, + -0.061946745961904526, + -0.03158639371395111, + -0.029682492837309837, + -0.12280067056417465, + -0.035174205899238586, + -0.059609029442071915, + 0.0027031260542571545, + -0.07584155350923538, + -0.04281073436141014, + 0.05294521898031235, + -0.1325860172510147, + 0.0410565584897995, + 0.07220421731472015, + 0.03604711592197418, + 0.0389450341463089, + 0.05705318972468376, + -0.0026923869736492634, + -0.03730427846312523, + -0.0325753353536129, + 0.08119838684797287, + 0.01916186697781086, + -0.03809244930744171, + 0.05068417266011238, + 0.03543107956647873, + -0.04231516271829605, + -0.05137593299150467, + -0.08310820907354355, + 0.06803180277347565, + 0.01916019804775715, + -0.06473030149936676, + -0.020007722079753876, + 0.091183602809906, + -0.01554877683520317, + -0.000584959052503109, + -0.08434250950813293, + -0.04032323509454727, + -0.08515409380197525, + -0.005053573753684759, + -0.04696045443415642, + 0.04394273832440376, + -2.729246437020871e-33, + 0.0440559983253479, + 0.023759951815009117, + -0.06445660442113876, + 0.10543912649154663, + -0.004869958385825157, + 0.07852216809988022, + 0.003110777586698532, + -0.02700800821185112, + 0.004586648661643267, + 0.030360840260982513, + 0.12550869584083557, + 0.05162779986858368, + -0.0744558721780777, + 0.08339991420507431, + 0.043877240270376205, + 0.017447996884584427, + -0.018324824050068855, + 0.059847526252269745, + 0.004486206918954849, + -0.010207691229879856, + 0.005428636446595192, + 0.09166088700294495, + -0.010687591508030891, + -0.012931713834404945, + -0.04050232842564583, + -0.04311337321996689, + 0.05810365453362465, + -0.055610354989767075, + -0.016193928197026253, + -0.006917407736182213, + -0.021836677566170692, + -0.043668266385793686, + 0.11418195068836212, + 0.018407028168439865, + 0.04171965271234512, + 0.018328115344047546, + -0.04229903966188431, + 0.0066042449325323105, + -0.04769628867506981, + -0.015712356194853783, + -0.020606225356459618, + 0.03518811985850334, + -0.043335799127817154, + -0.05807414650917053, + -0.03214182332158089, + 0.11882391571998596, + -0.023197678849101067, + -0.03978240489959717, + -0.03284876421093941, + -0.021304234862327576, + 0.027800561860203743, + 0.01411094143986702, + 0.035386815667152405, + -0.03595729544758797, + 0.01336713694036007, + -0.01256522536277771, + -0.002096756361424923, + -2.7798267183243297e-05, + 0.010334442369639874, + 0.016115425154566765, + -0.033604077994823456, + 0.02001376263797283, + -0.008115370757877827, + 0.03941795602440834, + -0.0429326668381691, + 0.03802427649497986, + -0.00769109558314085, + 0.02412237599492073, + 0.014649737626314163, + -0.02946719154715538, + -0.01952865906059742, + 0.0029599880799651146, + -0.03381556645035744, + -0.011208457872271538, + 0.001183672109618783, + 0.031194208189845085, + 0.03327148035168648, + -0.020901238545775414, + 0.0292785856872797, + -0.01657526195049286, + -0.13305795192718506, + 0.05173089727759361, + -0.03304465115070343, + 0.044191889464855194, + -0.04316682368516922, + -0.039083849638700485, + -0.00680510001257062, + -0.07568507641553879, + -0.04626775532960892, + 0.023102784529328346, + -0.09291564673185349, + -0.01012955792248249, + -0.04807225987315178, + -0.04856180027127266, + -0.053766440600156784, + 4.4448710748253915e-34, + 0.046568408608436584, + 0.0839817225933075, + -0.0411597341299057, + 0.0033916612155735493, + -0.041525948792696, + 0.012063235975801945, + -0.010015414096415043, + 0.05729198828339577, + 0.07744048535823822, + -0.041845910251140594, + 0.048668090254068375, + -0.07021646946668625, + -0.09354285150766373, + -0.03634025529026985, + -0.025271255522966385, + -0.006420118268579245, + -0.0060755000449717045, + -0.05841278284788132, + -0.05222666263580322, + 0.045548517256975174, + -0.022446613758802414, + 0.05035025253891945, + 0.0069607216864824295, + 0.04220505803823471, + 0.021523769944906235, + 0.02652830444276333, + 0.03716311976313591, + 0.09277055412530899, + -0.040916990488767624, + -0.09211698174476624, + 0.045509252697229385, + -0.07786071300506592, + 0.012473390437662601, + 0.06774774193763733, + -0.04457715526223183, + -0.032739851623773575, + 0.10097530484199524, + -0.08196848630905151, + -0.024468502029776573, + -0.0006251975428313017, + 0.04758033528923988, + 0.03406772390007973, + -0.03132597729563713, + 0.0029851379804313183, + -0.0343184620141983, + -0.020774397999048233, + 0.011460314504802227, + -0.07107999175786972, + 0.025148695334792137, + -0.04768199101090431, + -0.014571254141628742, + -0.04311469569802284, + -0.01367614883929491, + -0.02108713425695896, + -0.011593958362936974, + -0.016369052231311798, + -0.021893631666898727, + 0.038908734917640686, + 0.017693113535642624, + 0.02691156603395939, + 0.05203630402684212, + -0.014735700562596321, + -0.09619908034801483, + 0.014824728481471539, + 0.025364868342876434, + -0.03868504613637924, + 0.011919227428734303, + -0.041176460683345795, + -0.0258076973259449, + 0.04437529668211937, + -0.017406340688467026, + -0.026740357279777527, + -0.06137562170624733, + 0.029303651303052902, + -0.03732096031308174, + -0.08414236456155777, + 0.032791975885629654, + -0.02910337783396244, + 0.07117081433534622, + 0.03492414206266403, + -0.04063187539577484, + 0.03946444392204285, + 0.02895432896912098, + 0.0474466010928154, + 0.037006594240665436, + 0.08008065074682236, + 0.03084489516913891, + -0.01294348482042551, + 0.011288182809948921, + 0.020200014114379883, + -0.061820078641176224, + 0.06478635966777802, + -0.09024106711149216, + 0.0750795304775238, + -0.06770437210798264, + -2.0520406707191796e-08, + -0.0856500118970871, + -0.019428683444857597, + -0.08701249957084656, + -0.004020194057375193, + -0.014257630333304405, + -0.05209871008992195, + -0.05383998900651932, + -0.11225005984306335, + 0.026424583047628403, + -0.0725221112370491, + 0.07257188111543655, + -0.04065592959523201, + -0.08483000099658966, + 0.025977782905101776, + 0.00855913758277893, + -0.01991238445043564, + -0.014499361626803875, + 0.01621716283261776, + -0.03859252110123634, + -0.008454746566712856, + -0.025692731142044067, + 0.058667633682489395, + 0.04620558023452759, + -0.04276358708739281, + 0.03521903604269028, + 0.02149062231183052, + -0.002579672960564494, + 0.005910721607506275, + 0.06927964091300964, + 0.06824079900979996, + 0.08466044813394547, + 0.08393558859825134, + 0.041897084563970566, + 0.01793418452143669, + 0.002509617479518056, + -0.02315600961446762, + 0.006403220817446709, + 0.06879200786352158, + 0.06736627966165543, + 0.13780146837234497, + -0.05069103091955185, + 0.06724131107330322, + -0.017724350094795227, + -0.0024533565156161785, + -0.03052287921309471, + 0.039744965732097626, + -0.0010877680033445358, + -0.030429650098085403, + -0.07212939858436584, + -0.04607170820236206, + -0.028367245569825172, + 0.05461191385984421, + -0.04851522296667099, + 0.08386119455099106, + -0.03930974751710892, + -0.02207532711327076, + 0.06227913498878479, + 0.07050922513008118, + -0.06751671433448792, + 0.00832382682710886, + 0.11273305118083954, + -0.0020096185617148876, + 0.046579912304878235, + 0.047420255839824677 + ], + "star-bold||rate,ratings,favorites,favorited": [ + -0.04978524148464203, + -0.08884316682815552, + -0.06656810641288757, + 0.030677909031510353, + 0.03495345264673233, + 0.07098295539617538, + 0.0710386335849762, + 0.012285204604268074, + 0.010213241912424564, + 0.009013962931931019, + -0.05376850813627243, + 0.01958080194890499, + 0.06577790528535843, + -0.040046267211437225, + -0.06057441607117653, + 0.02014852873980999, + 0.04038260132074356, + -0.04803276062011719, + 0.002313025062903762, + -0.04459763318300247, + -0.029256144538521767, + 0.024029096588492393, + 0.027288060635328293, + 0.025574754923582077, + 0.11841247230768204, + -0.0037792560178786516, + 0.020306535065174103, + 0.03781814128160477, + -0.030482931062579155, + -0.0756852924823761, + -0.005545264575630426, + 0.03235733136534691, + 0.08386770635843277, + 0.045873090624809265, + -0.0632452741265297, + -0.028912972658872604, + -0.043579086661338806, + -0.04653653874993324, + -0.026514949277043343, + 0.04892024025321007, + 0.05351448431611061, + -0.06459571421146393, + 0.006099730264395475, + 0.027570940554142, + -0.016342874616384506, + -0.02549770288169384, + -0.11120329052209854, + -0.03152981400489807, + 0.018420778214931488, + 0.12043435871601105, + -0.026579471305012703, + -0.05572781339287758, + -0.06354960054159164, + -0.013730769045650959, + 0.03523619845509529, + 0.01884489692747593, + -0.07162900269031525, + -0.06391970813274384, + 0.00693106185644865, + -0.0612923800945282, + 0.043891213834285736, + -0.01768179051578045, + 0.024144820868968964, + 0.024531671777367592, + 0.0625527948141098, + -0.09834220260381699, + -0.03110402077436447, + 0.012384968809783459, + -0.05229020491242409, + 0.024617735296487808, + -0.03353399783372879, + 0.06832772493362427, + 0.0241693202406168, + -0.008967755362391472, + -0.01691417582333088, + -0.009905116632580757, + 0.023427613079547882, + -0.10183798521757126, + 0.025652224197983742, + -0.016522614285349846, + -0.03774432837963104, + -0.09137897193431854, + -0.027866778895258904, + -0.025769470259547234, + 0.05974894389510155, + -0.05283268913626671, + 0.025999821722507477, + -0.03563721477985382, + -0.07301665842533112, + 0.015312994830310345, + -0.046208787709474564, + 0.013593718409538269, + -0.02063433639705181, + -0.028810057789087296, + -0.0552537739276886, + 0.0501164086163044, + 0.04030659794807434, + -0.13971421122550964, + 0.0036303498782217503, + 0.08458132296800613, + 0.008016550913453102, + 0.04285314306616783, + -0.007180298678576946, + -0.011461880058050156, + 0.03727995604276657, + -0.048946551978588104, + 0.00628824345767498, + 0.018310697749257088, + 0.019633330404758453, + 0.023798033595085144, + -0.02753874845802784, + 0.003863731399178505, + -0.01954534836113453, + -0.07742883265018463, + -0.021544083952903748, + -0.029713282361626625, + -0.005734405480325222, + 0.028668401762843132, + 0.13699401915073395, + 0.03654671087861061, + 0.04419165477156639, + 0.0055849626660346985, + 0.024994609877467155, + -0.03508923575282097, + -0.06797143071889877, + 0.04165172204375267, + 0.051442574709653854, + -1.2327406502008444e-33, + 0.02210243046283722, + 0.0024708560667932034, + -0.032499074935913086, + 0.02311396226286888, + -0.027315398678183556, + 0.04075665771961212, + -0.06466950476169586, + -0.024041371420025826, + -0.07594438642263412, + -0.07623228430747986, + 0.0036172722466289997, + 0.11866430938243866, + -0.021495312452316284, + 0.12845197319984436, + 0.06430649012327194, + -0.015377435833215714, + 0.008383732289075851, + -0.0397387258708477, + -0.08490234613418579, + -0.04257306829094887, + -0.020311234518885612, + 0.1061892881989479, + -0.005378719884902239, + -0.062171317636966705, + -0.027816427871584892, + -0.0919361263513565, + 0.013943441212177277, + -0.011356872506439686, + -0.06063113734126091, + 0.020046181976795197, + 0.04032701253890991, + -0.030442459508776665, + 0.025937948375940323, + 0.00964965671300888, + -0.00780654139816761, + 0.06288276612758636, + -0.05262363702058792, + -0.015927568078041077, + 0.03208694979548454, + -0.037386905401945114, + -0.0033854118082672358, + -0.0525689460337162, + -0.08975999802350998, + -0.030434472486376762, + -0.08185829967260361, + 0.13464367389678955, + -0.034439846873283386, + -0.019446922466158867, + -0.001982002519071102, + 0.0006607872201129794, + 0.006287135183811188, + -0.0457032285630703, + -0.045913003385066986, + 0.03451536223292351, + -0.021271010860800743, + 0.04645426943898201, + 0.005045815836638212, + -0.006376862525939941, + 0.026807188987731934, + -0.04636580869555473, + -0.002937101759016514, + 0.061432983726263046, + 0.09585441648960114, + -0.11468864977359772, + -0.04435458034276962, + 0.13415229320526123, + 0.02901439368724823, + 0.057249441742897034, + 0.01923281140625477, + 0.03974025696516037, + -0.02060597576200962, + 0.087875597178936, + 0.03015723265707493, + -0.06487679481506348, + -0.043549902737140656, + 0.04061916097998619, + 0.054362956434488297, + 0.003254377283155918, + -0.0011786692775785923, + -0.0660986453294754, + -0.040005914866924286, + -0.018275508657097816, + 0.022590408101677895, + -0.006081742700189352, + 0.03302370011806488, + -0.01831931620836258, + -0.0023304028436541557, + -0.04691941291093826, + -0.015385760925710201, + -0.014698552899062634, + -0.008600299246609211, + 0.01070939376950264, + 0.0829143300652504, + -0.06444422155618668, + -0.11052434146404266, + -5.807700654260365e-34, + -0.013683768920600414, + 0.0036636081058532, + 0.009685296565294266, + 0.06556400656700134, + 0.011413580738008022, + -0.05454292148351669, + -0.09567318856716156, + 0.03077775612473488, + 0.012178401462733746, + 0.024928344413638115, + -0.04448630288243294, + -0.07135839760303497, + -0.059348635375499725, + -0.10230972617864609, + 0.08268819004297256, + 0.02390904352068901, + -0.01931193098425865, + 0.04781855270266533, + -0.09570743143558502, + 0.042666468769311905, + -0.007655866909772158, + 0.035174913704395294, + -0.09861009567975998, + 0.06540951877832413, + -0.031644128262996674, + -0.029207171872258186, + 0.010665128007531166, + -0.04757731407880783, + -0.08284769207239151, + -0.0879574790596962, + 0.05225985124707222, + -0.06373608857393265, + -0.0033818690571933985, + 0.053709447383880615, + -0.03423735126852989, + 0.06405903398990631, + 0.006530397105962038, + -0.07341357320547104, + -0.03397045657038689, + 0.10078252106904984, + 0.009493132121860981, + 0.017712663859128952, + -0.019422708079218864, + 0.018982522189617157, + 0.010064736008644104, + 0.012555906549096107, + -0.022065849974751472, + -0.008401873521506786, + -0.07445680350065231, + 0.06116528809070587, + -0.012083904817700386, + 0.02370222844183445, + 0.0009065708145499229, + 0.10718048363924026, + -0.06264850497245789, + -0.008665258064866066, + 0.05153001472353935, + 0.041500870138406754, + 0.0628688782453537, + 0.047805916517972946, + 0.019375745207071304, + -0.0011475853389129043, + -0.03250855952501297, + 0.015202842652797699, + 0.02326778508722782, + -0.07292836904525757, + 0.066935233771801, + -0.042470213025808334, + -0.03401623293757439, + 0.021729055792093277, + -0.006118993274867535, + 0.012020334601402283, + -0.021012960001826286, + 0.039659615606069565, + 0.06413427740335464, + 0.03184976801276207, + -0.006493267137557268, + 0.05807291343808174, + 0.010942886583507061, + 0.0027896780520677567, + 0.0026994035579264164, + 0.07487235963344574, + -0.02127712033689022, + -0.007305363658815622, + 0.04465200752019882, + 0.0478786937892437, + 0.0748835951089859, + 0.0057932608760893345, + -0.004527129698544741, + -0.03888455033302307, + 0.05099017918109894, + 0.01741456240415573, + 0.015789499506354332, + -0.05020926147699356, + 0.012510005384683609, + -1.7849197675445794e-08, + -0.044275518506765366, + -0.0509343296289444, + -0.07648877799510956, + 0.07174255698919296, + 0.030225375667214394, + 0.0020985847804695368, + -0.04851013049483299, + -0.013181486167013645, + -0.0038808477111160755, + -0.011321155354380608, + 0.08347028493881226, + -0.004917223006486893, + -0.13144497573375702, + -0.08557403832674026, + 0.04741831496357918, + -0.04971737787127495, + -0.006798400077968836, + 0.08661594241857529, + -0.004273153375834227, + 0.02989230677485466, + -0.007303365971893072, + 0.11848070472478867, + 0.06567773967981339, + -0.07019937038421631, + 0.050275225192308426, + 0.054593589156866074, + -0.034268710762262344, + 0.022749673575162888, + 0.022812504321336746, + 0.04102239012718201, + 0.0523863211274147, + 0.06838355958461761, + -0.018245037645101547, + -0.04581301659345627, + -0.035838961601257324, + 0.0694565623998642, + 0.03927387297153473, + -0.019769053906202316, + 0.02150695212185383, + 0.1380232274532318, + 0.0738481804728508, + 0.004210995510220528, + 0.011754367500543594, + -0.01903705671429634, + -0.07389005273580551, + 0.039412643760442734, + 0.04672699421644211, + -0.09075642377138138, + -0.01034755352884531, + -0.0919792577624321, + -0.037536654621362686, + -0.05563101917505264, + 0.0035060239024460316, + 0.040522679686546326, + -0.01322372630238533, + -0.0121338265016675, + -0.0440773107111454, + 0.0837506651878357, + -0.01371440663933754, + 0.027135055512189865, + 0.16336676478385925, + 0.00784680899232626, + -0.0243244431912899, + 0.07508113235235214 + ], + "star-and-crescent-bold||islam,muslim,moon,religion,worship,symbol": [ + 0.050641052424907684, + 0.07819589227437973, + -0.005407390650361776, + 0.025613196194171906, + -0.09582488238811493, + -0.07206409424543381, + -0.023914599791169167, + -0.10609406232833862, + 0.0904146060347557, + -0.05296938866376877, + -0.021313687786459923, + -0.049125734716653824, + 0.06226291507482529, + -0.08901403099298477, + 0.029381876811385155, + 0.0027341421227902174, + 0.007736697793006897, + -0.02040020190179348, + 0.022986846044659615, + -0.02573060803115368, + -0.058999769389629364, + -0.03769994527101517, + 0.026455119252204895, + 0.09635506570339203, + 0.05228821188211441, + 0.1049843430519104, + 0.022156858816742897, + 0.01807212084531784, + 0.003107928903773427, + -0.02947808988392353, + -0.025720980018377304, + 0.04261532425880432, + -0.040689293295145035, + 0.04986952617764473, + -0.01336624938994646, + 0.013545367866754532, + 0.012872033752501011, + -0.0045017460361123085, + 0.07658886909484863, + -0.014997201040387154, + 0.06171002611517906, + -0.11829566210508347, + 0.006156337913125753, + 0.011839517392218113, + -0.01211537141352892, + 0.06292087584733963, + -0.07800956070423126, + 0.05731557309627533, + 0.00021451224165502936, + 0.008699007332324982, + -0.01901375688612461, + -0.054034169763326645, + -0.07024592161178589, + 0.0011704793432727456, + 0.08773314952850342, + -0.0759163647890091, + -0.04482216387987137, + -0.01764903962612152, + 0.037284206598997116, + -0.026067767292261124, + 0.0006103185005486012, + 0.06731075793504715, + 0.03602530434727669, + 0.059217311441898346, + -0.022324632853269577, + -0.03884253278374672, + -0.04676765576004982, + -0.005927009973675013, + -0.0704188346862793, + -0.0251375213265419, + -0.043436240404844284, + -0.03841719776391983, + -0.012751864269375801, + -0.05006980895996094, + -0.05282484367489815, + -0.042866382747888565, + 0.01042770966887474, + -0.09639374911785126, + -0.1066611185669899, + -0.09254264831542969, + 0.0060941907577216625, + 0.028985878452658653, + -0.05729110911488533, + 0.0816633552312851, + 0.027650218456983566, + -0.012396602891385555, + -0.04603182151913643, + 0.021032020449638367, + -0.01330571435391903, + -0.0022739851847290993, + 0.014247589744627476, + -0.04138556122779846, + -0.03998451679944992, + -0.007318457122892141, + 0.003977774176746607, + -0.004743810277432203, + 0.008030273020267487, + -0.0775017961859703, + -0.027789659798145294, + 0.06964635848999023, + 0.042963866144418716, + 0.02179047465324402, + 0.0646156594157219, + 0.007582852151244879, + -0.02896740846335888, + -0.03237832710146904, + -0.0390361063182354, + -0.028075261041522026, + -0.025685934349894524, + -0.022278258576989174, + -0.053582239896059036, + -0.07793845981359482, + -0.08704490214586258, + -0.0678366869688034, + -0.036297038197517395, + 0.04527715966105461, + -0.0765763446688652, + -0.036134984344244, + 0.010863151401281357, + -0.03374722599983215, + -0.07262886315584183, + -0.022743163630366325, + 0.03129647672176361, + 0.03331539034843445, + -0.021370435133576393, + -0.0021104745101183653, + -0.0835949182510376, + -4.3207333612487885e-33, + 0.01965411938726902, + 0.05213824287056923, + 0.046040695160627365, + 0.0017597128171473742, + -0.0063360631465911865, + -0.09236212074756622, + -0.03520217910408974, + -0.00011542542779352516, + -0.041684217751026154, + -0.023570654913783073, + 0.04972078278660774, + 0.013675343245267868, + 0.06029641628265381, + 0.061502132564783096, + 0.05041893571615219, + -0.04758235439658165, + 0.0667576715350151, + -0.10382921248674393, + -0.10411711782217026, + -0.05250847712159157, + -0.07896625995635986, + 0.051050107926130295, + -0.09240535646677017, + -0.05768732726573944, + 0.015763014554977417, + 0.024027816951274872, + 0.0608525313436985, + 0.036714859306812286, + -0.03748179227113724, + 0.06996546685695648, + 0.07208108901977539, + 0.029469287022948265, + 0.017334215342998505, + -0.04975786432623863, + -0.05286223813891411, + 0.04987301304936409, + -0.06979084014892578, + -0.05468016862869263, + -0.08131719380617142, + -0.034401919692754745, + 0.0660359337925911, + -0.0340132899582386, + 0.0027873425278812647, + 0.05216071009635925, + 0.030794546008110046, + 0.09384273737668991, + 0.007648652419447899, + -0.0772273987531662, + 0.017639048397541046, + 0.034917596727609634, + 0.01782405935227871, + 0.028430908918380737, + -0.05252842977643013, + -0.04662630707025528, + 0.009362160228192806, + 0.023516332730650902, + -0.03277172893285751, + 0.0476166270673275, + -0.07416903972625732, + 0.008123422972857952, + -0.018868790939450264, + -0.04989783465862274, + 0.008751378394663334, + 0.022306453436613083, + -0.010590765625238419, + 0.0637536272406578, + -0.05365874618291855, + 0.06922543793916702, + -0.015363791957497597, + 0.051561225205659866, + -0.017060555517673492, + 0.03673451766371727, + 0.08359746634960175, + 0.09266796708106995, + -0.015043706633150578, + 0.0460587702691555, + 0.05291884019970894, + -0.016231032088398933, + 0.05134262517094612, + 0.03880372643470764, + -0.05762966349720955, + 0.07880548387765884, + 0.03397916257381439, + -0.0860903263092041, + 0.01533445343375206, + 0.013582069426774979, + 0.08720631897449493, + -0.03432780131697655, + -0.06421449035406113, + -0.09387855976819992, + -0.02348654717206955, + 0.05592687800526619, + 0.05634373426437378, + -0.025372665375471115, + -0.1613316535949707, + 4.599773679614922e-34, + -0.005016456823796034, + 0.02156364545226097, + -0.02660166658461094, + -0.03005388379096985, + -0.015997283160686493, + 0.003726767376065254, + -0.0015026427572593093, + 0.036732904613018036, + -0.06875841319561005, + 0.07320049405097961, + 0.0069053624756634235, + -0.022633982822299004, + -0.021938472986221313, + -0.0970609039068222, + 0.0833657830953598, + -0.08462066948413849, + 0.019744446501135826, + 0.09011751413345337, + -0.010297388769686222, + 0.06868167221546173, + 0.03601418435573578, + 0.03219248354434967, + -0.024135876446962357, + -0.021709494292736053, + -0.02743493765592575, + 0.035540610551834106, + 0.0557439886033535, + -0.02629268169403076, + -0.020285407081246376, + 0.0409708172082901, + -0.03088172897696495, + -0.037659652531147, + -0.02627204731106758, + -0.05431108921766281, + -0.01394116971641779, + -0.014604158699512482, + -0.008363714441657066, + -0.032780639827251434, + -0.08571449667215347, + -0.014529434032738209, + -0.007178835570812225, + 0.06638965755701065, + 0.06468182802200317, + 0.0491747222840786, + 0.019050005823373795, + 0.027846988290548325, + 0.023917181417346, + 0.07703639566898346, + -0.03391249105334282, + 0.011616770178079605, + 0.019372479990124702, + -0.02075730636715889, + 0.04075772315263748, + -0.006185370031744242, + 0.03986426442861557, + 0.02040582336485386, + -0.07660958915948868, + 0.045265305787324905, + 0.011938742361962795, + -0.0417478010058403, + -0.00513841537758708, + 0.03810780495405197, + 0.05287494510412216, + 0.031345803290605545, + 0.02539200335741043, + -0.06314735114574432, + 0.020941756665706635, + 0.03725304454565048, + -0.01563808135688305, + 0.07096455991268158, + -0.020011067390441895, + 0.015107778832316399, + -0.1398388296365738, + 0.05064462125301361, + 0.04177439957857132, + 0.020739350467920303, + -0.0008026746800169349, + -0.0023269285447895527, + -0.05548250302672386, + 0.0681917816400528, + -0.022624285891652107, + -0.0004573127662297338, + -0.1073329970240593, + 0.07727453857660294, + 0.06481301039457321, + -0.03868475928902626, + -0.0685051828622818, + 0.0224309004843235, + 0.001962299458682537, + 0.0024386397562921047, + -0.047191884368658066, + 0.055609170347452164, + -0.023152286186814308, + 0.019695812836289406, + 0.009718120098114014, + -1.767878465841477e-08, + 0.02231275849044323, + -0.04094379022717476, + -0.007400954142212868, + 0.006343574728816748, + 0.007369345054030418, + -0.0011608428321778774, + 0.00446128798648715, + -0.08818203955888748, + -0.062367454171180725, + -0.00996002834290266, + -0.017911339178681374, + 0.04425399750471115, + -0.10701221227645874, + -0.014279033057391644, + -0.04416617006063461, + 0.008040987886488438, + -0.011286172084510326, + -0.009302346035838127, + 0.031110305339097977, + 0.023873480036854744, + 0.0521419420838356, + 0.04373714327812195, + 0.06376953423023224, + -0.08875405043363571, + -0.02626618929207325, + 0.0969851016998291, + -0.0038488341961055994, + 0.04611782357096672, + -0.08685725927352905, + -0.018293458968400955, + 0.06894461810588837, + 0.022279679775238037, + 0.010325680486857891, + -0.06013083457946777, + -0.0814339742064476, + -0.014771165326237679, + -0.02601018361747265, + -0.002359317848458886, + 0.045793406665325165, + 0.13176068663597107, + 0.13073979318141937, + -0.002830074168741703, + 0.05620782449841499, + -0.0028064539656043053, + 0.012687348760664463, + 0.07997627556324005, + 0.06330631673336029, + 0.021487310528755188, + -0.06620555371046066, + -0.07908644527196884, + 0.026949061080813408, + 0.040062107145786285, + 0.04960525780916214, + -0.033440567553043365, + -0.0767190158367157, + -0.02668404020369053, + 0.04394647851586342, + 0.05642896145582199, + 0.05484339967370033, + 0.02331327460706234, + 0.18964554369449615, + -0.0196791160851717, + 0.028417369350790977, + 0.0174991674721241 + ], + "star-four-bold||rate,ratings,favorites,favorited": [ + -0.013022193685173988, + -0.06550201773643494, + -0.05292114242911339, + 0.009995847940444946, + 0.018672524020075798, + 0.09030968695878983, + 0.05866393819451332, + 0.0015216467436403036, + 0.01441710814833641, + -0.0024457634426653385, + -0.06848637014627457, + 0.004290625918656588, + 0.06311517208814621, + -0.039762526750564575, + -0.07974667102098465, + 0.036568790674209595, + 0.03998277708888054, + -0.051436733454465866, + -0.008810041472315788, + -0.031426142901182175, + -0.03459284454584122, + -0.0015975597780197859, + 0.04479311779141426, + 0.039855580776929855, + 0.10418429225683212, + 0.002421487122774124, + 0.012013391591608524, + 0.024051139131188393, + -0.043737929314374924, + -0.08458878099918365, + 0.01323629543185234, + 0.051139719784259796, + 0.07711844146251678, + 0.029036834836006165, + -0.062434323132038116, + -0.04162021353840828, + -0.019953370094299316, + -0.03952190652489662, + -0.014948497526347637, + 0.07974354922771454, + 0.06911594420671463, + -0.058898504823446274, + 0.012177380733191967, + 0.032759230583906174, + -0.028504302725195885, + -0.01949242316186428, + -0.1061403900384903, + -0.0444624237716198, + 0.046087197959423065, + 0.09538375586271286, + -0.013769719749689102, + -0.05173339322209358, + -0.07530216127634048, + -0.010618309490382671, + 0.02098213881254196, + 0.014026124030351639, + -0.08660802990198135, + -0.05680907890200615, + 0.01599332131445408, + -0.0351516529917717, + 0.09511060267686844, + -0.01651487685739994, + 0.017971165478229523, + 0.03323759138584137, + 0.06101517751812935, + -0.07666351646184921, + -0.03353467211127281, + -0.0049124471843242645, + -0.0688459649682045, + 0.02844376489520073, + -0.017090119421482086, + 0.07644519209861755, + 0.017568575218319893, + -0.016698120161890984, + -0.012755594216287136, + -0.012293803505599499, + 0.028894277289509773, + -0.10929323732852936, + 0.017902977764606476, + -0.032561447471380234, + -0.0018948165234178305, + -0.08759463578462601, + -0.04608702287077904, + -0.03829706832766533, + 0.029293963685631752, + -0.051422033458948135, + 0.013924511149525642, + -0.06253505498170853, + -0.07475584000349045, + 0.019551867619156837, + -0.050067316740751266, + 0.00877500232309103, + -0.02987699769437313, + -0.026904987171292305, + -0.06740434467792511, + 0.055723778903484344, + 0.040154509246349335, + -0.15487439930438995, + 0.02198820561170578, + 0.09730502218008041, + 0.024288607761263847, + 0.03365745395421982, + -0.039797935634851456, + -0.023814544081687927, + 0.05371663719415665, + -0.05176500231027603, + 0.027253437787294388, + 0.028247689828276634, + 0.008465012535452843, + 0.023808950558304787, + -0.01998847723007202, + -0.011420314200222492, + -0.02323724888265133, + -0.04908604174852371, + -0.041333504021167755, + -0.012635873630642891, + -0.007719412911683321, + 0.033371102064847946, + 0.1177525520324707, + 0.036846376955509186, + 0.027144692838191986, + 0.020478516817092896, + 0.05350695177912712, + -0.05477141588926315, + -0.058079905807971954, + 0.04210517555475235, + 0.033665552735328674, + -1.883362538879076e-33, + 0.03197367489337921, + 0.030435742810368538, + -0.00012501685705501586, + 0.04133421555161476, + -0.0047673424705863, + 0.004432131536304951, + -0.08502282202243805, + -0.03180227056145668, + -0.10367335379123688, + -0.06740006059408188, + -0.0017087811138480902, + 0.08557412773370743, + -0.032179079949855804, + 0.10910846292972565, + 0.07541158050298691, + -0.02088211104273796, + 0.02824634127318859, + -0.06089983135461807, + -0.0705924928188324, + -0.021986545994877815, + -0.04130995273590088, + 0.13771289587020874, + -0.0043725669384002686, + -0.0478828065097332, + -0.028710586950182915, + -0.06981591135263443, + 0.004100953694432974, + -0.014973076060414314, + -0.041136980056762695, + 0.03291965648531914, + 0.01140038762241602, + -0.0015124769415706396, + 0.00845201313495636, + -0.011700178496539593, + 0.0033048619516193867, + 0.03293783217668533, + -0.05387389659881592, + -0.0146562485024333, + 0.02681378275156021, + -0.03698510304093361, + -0.042541127651929855, + -0.06305209547281265, + -0.08149582147598267, + -0.02033172734081745, + -0.055853065103292465, + 0.13040287792682648, + -0.03540048003196716, + -0.025679953396320343, + 0.012080504558980465, + 0.014391805045306683, + -0.0027700532227754593, + -0.02883785404264927, + -0.024428384378552437, + 0.033956848084926605, + -0.02896267920732498, + 0.021492645144462585, + 0.0010903931688517332, + -0.012438374571502209, + 0.02356456033885479, + -0.046012867242097855, + 0.008688205853104591, + 0.06709695607423782, + 0.05578257516026497, + -0.11449769139289856, + -0.019310137256979942, + 0.12639360129833221, + 0.045815609395504, + 0.021644406020641327, + 0.0086309053003788, + 0.052035797387361526, + -0.0199555903673172, + 0.06125461682677269, + 0.04304968938231468, + -0.07046253979206085, + -0.0282590389251709, + 0.026617007330060005, + 0.0571766197681427, + -0.005082127638161182, + 0.009423314593732357, + -0.07484501600265503, + -0.06281796097755432, + 0.0024841437116265297, + 0.039689693599939346, + -0.0041146427392959595, + 0.040692321956157684, + -0.03473728522658348, + 0.018679935485124588, + -0.05144507437944412, + 0.012996147386729717, + -0.019133346155285835, + -0.023803679272532463, + 0.010086774826049805, + 0.06295337527990341, + -0.05712087079882622, + -0.11473339051008224, + -4.453383306964276e-34, + 0.0067822858691215515, + 0.030646517872810364, + -0.003348400117829442, + 0.06967764347791672, + 0.004332393873482943, + -0.027147015556693077, + -0.07457885146141052, + 0.049227550625801086, + 0.015049389563500881, + 0.04463370889425278, + -0.004971865564584732, + -0.06269607692956924, + -0.05632691830396652, + -0.09932626038789749, + 0.10724987089633942, + 0.03014402650296688, + -0.018636997789144516, + 0.003592788940295577, + -0.09183433651924133, + 0.03943581506609917, + 0.017425967380404472, + 0.031245088204741478, + -0.09966666996479034, + 0.06616957485675812, + -0.008522561751306057, + -0.0290426816791296, + 0.05561628192663193, + -0.06852667033672333, + -0.08624497056007385, + -0.07747681438922882, + 0.028660085052251816, + -0.07534313201904297, + 0.014943799003958702, + 0.07471197098493576, + -0.05206692963838577, + 0.053310200572013855, + -0.002912328112870455, + -0.06035817041993141, + -0.05266255885362625, + 0.10259320586919785, + -0.01094779185950756, + 0.02642509527504444, + -0.006515141110867262, + 0.04330378398299217, + -0.001669506193138659, + 0.002742039505392313, + -0.026004604995250702, + 0.038805678486824036, + -0.07407955825328827, + 0.0727841705083847, + -0.018889224156737328, + 0.015784990042448044, + -0.039299093186855316, + 0.09970531612634659, + -0.06639467924833298, + -0.025239432230591774, + 0.04648900404572487, + 0.026432208716869354, + 0.024422001093626022, + 0.0712486132979393, + 0.0013588961446657777, + -0.026332082226872444, + -0.010641565546393394, + 0.017669161781668663, + 0.023242538794875145, + -0.07261341065168381, + 0.05600998178124428, + -0.04827609658241272, + -0.036340199410915375, + 0.009009583853185177, + -0.01589960977435112, + 0.0008904806454665959, + -0.036572691053152084, + 0.03417819365859032, + 0.06710799783468246, + 0.033054690808057785, + -0.03573599457740784, + 0.047323569655418396, + -0.0031090336851775646, + 0.029136143624782562, + -0.024777643382549286, + 0.060465168207883835, + -0.023826831951737404, + -0.007449042517691851, + 0.04234781861305237, + 0.025521881878376007, + 0.09698931872844696, + 0.03106834553182125, + 0.011854855343699455, + -0.021295230835676193, + 0.07973450422286987, + 0.041045013815164566, + 0.031249966472387314, + -0.04428412765264511, + 0.0033792988397181034, + -1.968264129459385e-08, + -0.01710885763168335, + -0.021377773955464363, + -0.07052617520093918, + 0.05994565412402153, + -0.008207516744732857, + -0.0015324377454817295, + -0.06683875620365143, + -0.02142954245209694, + -0.0015079693403095007, + -0.014584928750991821, + 0.08137280493974686, + 0.0005156697588972747, + -0.1421087086200714, + -0.0851268470287323, + 0.043901845812797546, + -0.0420062281191349, + -0.05615208297967911, + 0.06252939254045486, + -0.015558840706944466, + 0.015750836580991745, + -0.005162050016224384, + 0.09644303470849991, + 0.04764075577259064, + -0.07393094897270203, + 0.041600581258535385, + 0.07144726812839508, + -0.03120693564414978, + 0.022668063640594482, + 0.009013921953737736, + 0.03840620815753937, + 0.09088587015867233, + 0.07535667717456818, + -0.03247840702533722, + -0.06972511112689972, + -0.06026563420891762, + 0.03823399171233177, + 0.04209241271018982, + -0.009616251103579998, + 0.05249358341097832, + 0.13738562166690826, + 0.06305663287639618, + 0.0037639292422682047, + 0.008605783805251122, + -0.011617589741945267, + -0.08047789335250854, + 0.04025648906826973, + 0.05104958638548851, + -0.091071717441082, + -0.011748511344194412, + -0.08223110437393188, + -0.038417138159275055, + -0.043460700660943985, + -0.016534019261598587, + 0.07077715545892715, + -0.001970567973330617, + -0.002898223465308547, + -0.03838954493403435, + 0.08905517309904099, + -0.03414425626397133, + 0.0005286089726723731, + 0.16390617191791534, + 0.010783648118376732, + -0.023396871984004974, + 0.07061070203781128 + ], + "star-half-bold||rate,ratings": [ + -0.03627524897456169, + -0.0482349656522274, + -0.009914142079651356, + 0.07131080329418182, + 0.01746966503560543, + 0.013128174468874931, + -0.0008742237114347517, + 0.016174878925085068, + 0.024012858048081398, + 0.0007842526538297534, + -0.06312962621450424, + -0.0028512689750641584, + 0.053992271423339844, + -0.05316494405269623, + -0.03719105198979378, + 0.028838347643613815, + 0.09675125777721405, + -0.056018613278865814, + -0.016954094171524048, + 0.020820701494812965, + -0.025222884491086006, + -0.0007250491762533784, + 0.02152225561439991, + 0.04922433942556381, + 0.12160392105579376, + -0.043645087629556656, + 0.0043279011733829975, + 0.032714467495679855, + -0.011297477409243584, + -0.08336012065410614, + 0.009464487433433533, + 0.06475774198770523, + 0.10281987488269806, + 0.0499335415661335, + -0.0827704444527626, + -0.04112483188509941, + -0.006615906488150358, + -0.059550464153289795, + 0.010087784379720688, + 0.057247865945100784, + 0.07913894206285477, + -0.0515676885843277, + -0.010278643108904362, + 0.041743796318769455, + -0.02608884871006012, + -0.02357456274330616, + -0.1294323354959488, + 0.0013137146597728133, + 0.0036783411633223295, + 0.07855546474456787, + -0.0324515700340271, + -0.03469385579228401, + -0.050281599164009094, + -0.023244816809892654, + -0.0038737680297344923, + 0.057956840842962265, + -0.1041523665189743, + -0.05091266706585884, + 0.04980780929327011, + -0.044924814254045486, + 0.012412785552442074, + 0.02077830769121647, + 0.0010923497611656785, + 0.014552497304975986, + 0.07901467382907867, + -0.08245036751031876, + -0.040144648402929306, + -0.04103134572505951, + -0.09105377644300461, + 0.04371141642332077, + -0.0050768619403243065, + 0.028702108189463615, + -0.0033644596114754677, + -0.03911634162068367, + -0.036313287913799286, + -0.030727043747901917, + 0.06001236289739609, + -0.07114797830581665, + 0.05229507386684418, + -0.057293254882097244, + -0.0012245289981365204, + -0.14005020260810852, + -0.023459196090698242, + -0.023887360468506813, + 0.02548803575336933, + -0.08470124006271362, + 0.0514359213411808, + -0.016415344551205635, + -0.0344533696770668, + 0.03852870687842369, + -0.018600082024931908, + -0.0161147303879261, + -0.058526601642370224, + -0.02228899486362934, + -0.022211983799934387, + 0.0650116354227066, + -0.01197169441729784, + -0.09971899539232254, + 0.03379430994391441, + 0.10705606639385223, + 0.01656951755285263, + -0.003639926901087165, + -0.006393921095877886, + -0.0695611834526062, + -0.02069116197526455, + -0.045841485261917114, + 0.054073356091976166, + 0.04863632842898369, + 0.024255510419607162, + 0.03869464248418808, + 0.02573969028890133, + 0.008291934616863728, + -0.019394606351852417, + -0.058521512895822525, + 0.006670339498668909, + -0.029467955231666565, + 0.0062653617933392525, + 0.03159961476922035, + 0.1176464706659317, + 0.0218415018171072, + 0.023588664829730988, + -0.030163396149873734, + 0.005800317972898483, + -0.03846387565135956, + -0.03212016075849533, + 0.041284557431936264, + 0.017626198008656502, + -3.489169188351917e-33, + -0.0050863600336015224, + 0.04743165522813797, + -0.003885129699483514, + 0.03825294226408005, + -0.020204495638608932, + 0.0540333092212677, + -0.07361913472414017, + -0.019404593855142593, + -0.08555199205875397, + -0.023365436121821404, + -0.0004826099320780486, + 0.0925765261054039, + -0.003884092438966036, + 0.08178810775279999, + 0.030786000192165375, + -0.05308588594198227, + 0.026398325338959694, + -0.008665761910378933, + -0.09963548183441162, + -0.032178763300180435, + -0.04511415213346481, + 0.08176039904356003, + -0.014674980193376541, + -0.04870789870619774, + -0.02866097167134285, + -0.09240476042032242, + 0.010439529083669186, + -0.025371577590703964, + -0.05252702161669731, + 0.02847154252231121, + 0.025443419814109802, + 0.02932647615671158, + 0.01668507046997547, + -0.007250221446156502, + -0.023416241630911827, + -0.005060552153736353, + -0.01599075458943844, + 0.03890035301446915, + 0.020793378353118896, + -0.0195835679769516, + -0.04588881507515907, + 0.027242673560976982, + -0.06964443624019623, + -0.05091463774442673, + -0.06786997616291046, + 0.10406123101711273, + 0.01991383172571659, + -0.03827793151140213, + -0.006802127696573734, + 0.022518588230013847, + -0.014838328585028648, + -0.0018766159191727638, + -0.03191564977169037, + 0.022226201370358467, + 0.004490436054766178, + 0.08187329769134521, + 0.025077058002352715, + -0.021020112559199333, + -0.00646177539601922, + -0.018514180555939674, + 0.02292732521891594, + 0.06969708204269409, + 0.045872002840042114, + -0.08786042779684067, + -0.07258319854736328, + 0.10959409922361374, + 0.016805896535515785, + 0.027812501415610313, + 0.007195961195975542, + -0.0034737910609692335, + -0.015700897201895714, + 0.07632435858249664, + 0.0242127887904644, + -0.049782704561948776, + -0.04206462576985359, + 0.019350752234458923, + 0.09564947336912155, + 0.018059682101011276, + 0.06911439448595047, + -0.06884370744228363, + -0.05090075731277466, + -0.015709955245256424, + 0.04576936736702919, + -0.06830602884292603, + 0.022352544590830803, + -0.03807846084237099, + -0.005877471994608641, + -0.04201409965753555, + -0.05786454305052757, + 0.02270793914794922, + -0.004626594018191099, + -0.037809520959854126, + 0.04050557315349579, + -0.05975789576768875, + -0.09009310603141785, + 3.219206762863253e-34, + -0.04640619456768036, + 0.0176682211458683, + -0.036593109369277954, + 0.06235199794173241, + -0.027234414592385292, + -0.0320630744099617, + -0.05909764766693115, + 0.050923436880111694, + 0.03718338534235954, + 0.05882618948817253, + 0.04396103695034981, + -0.004100895952433348, + -0.06358706206083298, + -0.10011377185583115, + 0.0851040631532669, + -0.018962331116199493, + 0.036447979509830475, + 0.07880554348230362, + -0.07454010099172592, + 0.04996904358267784, + 0.04644748196005821, + 0.038987111300230026, + -0.03968603163957596, + 0.10009186714887619, + -0.03990177437663078, + 0.0005732473800890148, + 0.001198950340040028, + -0.024603573605418205, + -0.0726097822189331, + -0.04454415664076805, + 0.0033515803515911102, + -0.09463897347450256, + 0.04766565561294556, + 0.04078298062086105, + -0.06526118516921997, + 0.02797507680952549, + -0.011508399620652199, + -0.0492079071700573, + 0.0042343479581177235, + 0.06606559455394745, + 0.0162362027913332, + 0.009469473734498024, + -0.05156337842345238, + 0.01782195083796978, + -0.0001456038444302976, + -0.03281398117542267, + 0.05052145570516586, + -0.03742772713303566, + -0.06266399472951889, + 0.041897617280483246, + -0.03417162224650383, + 0.023043202236294746, + -0.015800097957253456, + 0.17271605134010315, + -0.12264139950275421, + -0.07684548199176788, + -0.03750249370932579, + 0.034463781863451004, + 0.020165691152215004, + 0.09474854916334152, + 0.016713028773665428, + 0.07158201932907104, + -0.06832018494606018, + -0.013014880940318108, + 0.038074396550655365, + -0.07187089323997498, + 0.06867565214633942, + -0.045886579900979996, + 0.027689149603247643, + 0.01633516140282154, + 0.060701508074998856, + 0.008317272178828716, + -0.03015412949025631, + 0.05678822100162506, + 0.04307812079787254, + 0.061668720096349716, + -0.007103733252733946, + 0.023577610030770302, + -0.008969984017312527, + 0.04280717298388481, + -0.014903642237186432, + 0.036522042006254196, + -0.033406827598810196, + -0.029073964804410934, + 0.014745070599019527, + -0.0070043765008449554, + 0.10352680832147598, + -0.03546810895204544, + -0.01095523964613676, + -0.06657601147890091, + -0.00352920382283628, + -0.007979602552950382, + 0.04273545369505882, + -0.04658040776848793, + -0.004873315338045359, + -1.7066966506718018e-08, + 0.011184257455170155, + -0.0733683630824089, + -0.06298796087503433, + 0.04617074877023697, + 0.0222953949123621, + 0.014181585051119328, + -0.0416598916053772, + -0.043196968734264374, + -0.03898128867149353, + 0.03378502279520035, + 0.07480893284082413, + -0.013149932958185673, + -0.07909518480300903, + -0.09554757177829742, + 0.014086429961025715, + -0.048959262669086456, + -0.019715072587132454, + 0.1172720342874527, + -0.020534075796604156, + 0.03830393776297569, + -0.015666387975215912, + 0.10583414882421494, + 0.07072831690311432, + -0.07525189965963364, + 0.01760753244161606, + 0.06496677547693253, + -0.056352682411670685, + 0.006854367908090353, + -0.008668185211718082, + 0.004273622762411833, + 0.034228865057229996, + 0.07362556457519531, + -0.012092354707419872, + -0.012460559606552124, + -0.02838853932917118, + 0.03910583630204201, + 0.03492499142885208, + 0.03228701651096344, + 0.024309325963258743, + 0.1789710521697998, + 0.004901536740362644, + -0.029172804206609726, + 0.012477250769734383, + -0.029170401394367218, + -0.03051302768290043, + 0.05229797214269638, + 0.024082951247692108, + -0.04878542572259903, + -0.03804371505975723, + -0.09737851470708847, + 0.025856688618659973, + -0.003306478960439563, + -0.05516304820775986, + 0.05607548728585243, + -0.03283315896987915, + -0.03757254406809807, + -0.061588261276483536, + 0.11194434016942978, + -0.1028677299618721, + 0.03380393236875534, + 0.16219770908355713, + -0.03458695486187935, + -0.035007137805223465, + 0.02540457993745804 + ], + "star-of-david-bold||judaism,jewish,hexagram,religion,worship,symbol": [ + 0.07151877135038376, + 0.09864497929811478, + -0.01640857383608818, + 0.020934604108333588, + -0.09102214127779007, + 0.0028945994563400745, + 0.04411298409104347, + -0.09025691449642181, + 0.05431610345840454, + 0.038561902940273285, + -0.10105090588331223, + -0.05340195447206497, + 0.06412088125944138, + -0.06467578560113907, + 0.001467114663682878, + 0.0028853181283921003, + -0.04242399334907532, + -0.022479979321360588, + 0.0218572448939085, + 0.013600793667137623, + 0.018438614904880524, + 0.008295141160488129, + 0.012658455409109592, + 0.00044721842277795076, + 0.08256623148918152, + 0.07732278108596802, + -0.0018677947809919715, + 0.018369682133197784, + 0.02449209988117218, + -0.07360164821147919, + -0.0261964313685894, + 0.018229138106107712, + 0.0372299887239933, + 0.0154984500259161, + -0.0042348639108240604, + 0.04275951534509659, + 0.004713202826678753, + 0.030715789645910263, + 0.024776598438620567, + 0.02651096321642399, + 0.046345893293619156, + 0.00019822338072117418, + -0.04542195424437523, + 0.004144171718508005, + -0.06801737844944, + 0.06381966173648834, + -0.050395116209983826, + 0.012758981436491013, + -0.013036019168794155, + 0.02351314201951027, + -0.09051521867513657, + -0.0317215621471405, + 0.05385606363415718, + 0.010457027703523636, + 0.03934134542942047, + -0.054382603615522385, + -0.03330245986580849, + -0.08184908330440521, + 0.022808155044913292, + -0.07818987965583801, + 0.045070648193359375, + 0.013767475262284279, + 0.025704538449645042, + 0.07446683943271637, + 0.0383894219994545, + -0.06378451734781265, + -0.029936455190181732, + -0.0349678210914135, + -0.05902495235204697, + -0.02498340792953968, + -0.02225668914616108, + 0.007559516467154026, + 0.015134120360016823, + -0.03556472063064575, + -0.04806879162788391, + -0.05468849092721939, + 0.05561089888215065, + -0.09835099428892136, + -0.07785424590110779, + -0.05443038418889046, + -0.021927610039711, + -0.02708851546049118, + -0.05412185937166214, + 0.05816315487027168, + -0.01875600591301918, + 0.06459198147058487, + -0.014923510141670704, + -0.02294900454580784, + -0.06691959500312805, + -0.01861719973385334, + -0.023814739659428596, + -0.06450136750936508, + 0.021102819591760635, + -0.008256345987319946, + -0.008209160529077053, + 0.0021054206881672144, + 0.041689082980155945, + -0.06881579011678696, + -0.00165931461378932, + 0.07744506001472473, + 0.05893946811556816, + -0.02578572742640972, + 0.0553363598883152, + 0.02882193960249424, + 0.01729331910610199, + -0.04795726761221886, + -0.05028143152594566, + -0.019275056198239326, + 0.024439645931124687, + 0.0013060421915724874, + 0.02876489982008934, + -0.062458816915750504, + -0.05593860149383545, + 0.002916967961937189, + 0.01324569620192051, + 0.062361009418964386, + -0.045321911573410034, + -0.011545817367732525, + 0.021693017333745956, + -0.025053247809410095, + -0.02473420277237892, + -0.0191623717546463, + 0.03752370551228523, + 0.014386987313628197, + -0.0772576853632927, + 0.005485220812261105, + -0.08849907666444778, + -4.298945940798282e-33, + -0.004098751116544008, + 0.08239248394966125, + 0.01391706895083189, + 0.01973821595311165, + 0.008006246760487556, + -0.05926685407757759, + -0.022849293425679207, + 0.007332518696784973, + -0.03348280489444733, + -0.08150790631771088, + 0.04243708774447441, + 0.04857322573661804, + 0.05746426805853844, + 0.1020415723323822, + -0.04811134934425354, + -0.03035622276365757, + 0.03186730295419693, + -0.11120064556598663, + -0.007060450967401266, + -0.005671673454344273, + -0.03380157798528671, + 0.0221501886844635, + -0.09650691598653793, + 0.0009782278211787343, + 0.0504629984498024, + -0.06073426082730293, + 0.11865507811307907, + 0.07687415927648544, + -0.043066997081041336, + 0.026730667799711227, + 0.042981404811143875, + 0.05536812171339989, + 0.03241721913218498, + 0.0007104058167897165, + 0.018297860398888588, + 0.010626131668686867, + -0.04912533983588219, + -0.02638242207467556, + -0.058573976159095764, + -0.084019735455513, + 0.07852187752723694, + -0.012111182324588299, + -0.01369213405996561, + 0.08828474581241608, + -0.0221074391156435, + 0.1563432514667511, + -0.028661569580435753, + -0.07915160804986954, + 0.05068746581673622, + 0.02618756890296936, + 0.035774536430835724, + 0.0817362517118454, + -0.03637296333909035, + -0.10148262232542038, + -0.030364200472831726, + -0.004283599555492401, + -0.04182118922472, + 0.09634485840797424, + -0.04845346882939339, + 0.015586829744279385, + -0.013533820398151875, + 0.02038731426000595, + 0.028794625774025917, + 0.1127113625407219, + -0.028251446783542633, + 0.07374921441078186, + 0.02938104420900345, + 0.04304392263293266, + 0.030361758545041084, + 0.057415496557950974, + -0.072120301425457, + 0.07606187462806702, + 0.10819793492555618, + 0.033635400235652924, + -0.023485014215111732, + 0.05949455499649048, + -0.012079806998372078, + -0.07305167615413666, + 0.016795501112937927, + 0.01983810029923916, + -0.03702434524893761, + -0.006794705521315336, + -0.0405682697892189, + -0.03574271872639656, + -0.02726096659898758, + -0.08701549470424652, + 0.04944837465882301, + -0.01289768610149622, + -0.05403881520032883, + -0.06444893032312393, + 0.08305058628320694, + -0.007800582330673933, + 0.05889090895652771, + -0.09172948449850082, + -0.17794954776763916, + 6.307803246380688e-34, + -0.03743044286966324, + -0.0020981328561902046, + 0.020967606455087662, + -0.0021833356004208326, + 0.015430854633450508, + 0.017379533499479294, + 0.0032787935342639685, + 0.05486562103033066, + -0.043356671929359436, + -0.016392173245549202, + 0.04223061352968216, + -0.029848959296941757, + -0.02313421480357647, + -0.057021066546440125, + 0.05116134509444237, + -0.049522388726472855, + -0.008648302406072617, + 0.06611941754817963, + 0.0005149933276697993, + 0.02791525423526764, + 0.05342651531100273, + 0.029562847688794136, + -0.07658223062753677, + -0.04618842527270317, + -0.048142850399017334, + 0.03720026835799217, + 0.03988560661673546, + -0.0021373401395976543, + -0.06405911594629288, + -0.019715912640094757, + -0.012185091152787209, + -0.01865413598716259, + -0.03418402746319771, + -0.019636910408735275, + -0.08105096966028214, + 0.02752416767179966, + -0.022419394925236702, + -0.03650902584195137, + 0.02822691760957241, + -0.03503075987100601, + -0.026843322440981865, + 0.03278002887964249, + 0.0708957388997078, + 0.0562286339700222, + 0.055305905640125275, + 0.0013989583821967244, + -0.07150985300540924, + 0.028560291975736618, + -0.0033774080220609903, + 0.05483895167708397, + -0.05289221182465553, + -0.009602020494639874, + 0.024867143481969833, + -0.05347122251987457, + 0.03112449310719967, + 0.01749994233250618, + -0.036399807780981064, + 0.017970338463783264, + -0.005770629737526178, + 0.026703020557761192, + 0.009835248813033104, + 0.008468304760754108, + 0.0790666714310646, + 0.07633562386035919, + -0.03527633845806122, + -0.0778161883354187, + 0.03577730804681778, + -0.02837248332798481, + 0.022876646369695663, + 0.062024813145399094, + -0.0036876348312944174, + 0.014501044526696205, + -0.06578738242387772, + 0.07867637276649475, + 0.008580349385738373, + 0.03743071109056473, + -0.015962019562721252, + 0.016154654324054718, + -0.04400947690010071, + 0.023070264607667923, + -0.01529700867831707, + -0.004946138709783554, + -0.06545930355787277, + 0.1042802482843399, + 0.09040525555610657, + -0.008116436190903187, + -0.013939516618847847, + 0.020658161491155624, + 0.006587668787688017, + 0.0314258448779583, + 0.012898310087621212, + 0.02693209983408451, + -0.009771326556801796, + -0.05694301053881645, + 0.03731109946966171, + -2.0602247019496644e-08, + 0.06881586462259293, + -0.08167467266321182, + -0.0514969527721405, + -0.07838848233222961, + 0.05961913242936134, + 0.027881264686584473, + 0.010824944823980331, + -0.16016313433647156, + -0.020062128081917763, + 0.003433269914239645, + 0.006787749473005533, + 0.07629292458295822, + -0.10155882686376572, + 0.006044663488864899, + 0.039813533425331116, + -0.05535314232110977, + -0.040531110018491745, + -0.022401994094252586, + 0.013149444945156574, + 0.045069947838783264, + -0.013307045213878155, + 0.05225469917058945, + 0.03968953341245651, + -0.056746963411569595, + 0.0051923515275120735, + 0.0450175404548645, + -0.025419063866138458, + -0.02849704585969448, + -0.02934318222105503, + -0.061009325087070465, + 0.008729396387934685, + 0.09189579635858536, + -0.03332800045609474, + -0.06697466969490051, + -0.08795998990535736, + 0.025021007284522057, + -0.017182718962430954, + -0.013623134233057499, + 0.05731217935681343, + 0.13896434009075165, + 0.14956116676330566, + 0.016509979963302612, + -0.012337399646639824, + 0.013193494640290737, + -0.02873414196074009, + -0.0165532436221838, + -0.0032992593478411436, + 0.004191340412944555, + -0.03299085050821304, + -0.1121649220585823, + -0.005228001624345779, + 0.051635608077049255, + -0.033430781215429306, + -0.027766592800617218, + -0.08843911439180374, + 0.002036245306953788, + -0.13005340099334717, + 0.09067460894584656, + -0.007661569397896528, + 0.010228320024907589, + 0.1567264050245285, + -0.01871117763221264, + 0.007497307378798723, + -0.01532459631562233 + ], + "steam-logo-bold||*new*,gaming,games": [ + 0.010208000428974628, + 0.01199846900999546, + -0.02501760609447956, + -0.01029699482023716, + 0.06795334815979004, + -0.00409701419994235, + 0.10613759607076645, + -0.0719733014702797, + 0.038517627865076065, + 0.027149323374032974, + -0.03842319920659065, + 0.039646223187446594, + -0.08304392546415329, + -0.07358931750059128, + 0.032854098826646805, + 0.010425854474306107, + 0.032309070229530334, + 0.02024342305958271, + 0.02672375924885273, + -0.049330465495586395, + -0.019323401153087616, + -0.04498990625143051, + -0.028381751850247383, + 0.034935928881168365, + 0.026249241083860397, + 0.05916145443916321, + 0.03702126070857048, + 0.03069004975259304, + -0.021813247352838516, + -0.005672450643032789, + -0.03345741704106331, + 0.00021742556418757886, + 0.06165490299463272, + 0.053546544164419174, + 0.08153878152370453, + -0.012077025137841702, + 0.009362425655126572, + -0.06779911369085312, + -0.011990354396402836, + -0.038810424506664276, + 0.0214502215385437, + -0.06054006144404411, + -0.010779138654470444, + 0.09505019336938858, + 0.0007551971357315779, + 0.059332601726055145, + -0.08631062507629395, + -0.03209482133388519, + 0.06642531603574753, + 0.07463940232992172, + 0.007879356853663921, + -0.13957098126411438, + -0.0683038979768753, + -0.11557652801275253, + 0.026293179020285606, + -0.00912528671324253, + -0.017280148342251778, + 0.0580495223402977, + 0.02581612952053547, + 0.02655673399567604, + 0.03640115633606911, + -0.039050646126270294, + 0.020278938114643097, + 0.09538397938013077, + 0.06409890949726105, + -0.019967421889305115, + -0.018326153978705406, + 0.01362109836190939, + -0.0876937061548233, + -0.0015487336786463857, + 0.054672349244356155, + 0.014441234059631824, + -0.02489878237247467, + -0.052533842623233795, + -0.05356056988239288, + -0.049979306757450104, + -0.019369877874851227, + 0.005357935559004545, + -0.016217924654483795, + 0.008097714744508266, + -0.014840961433947086, + 0.000702800287399441, + 0.029717745259404182, + -0.005105475429445505, + 0.047087106853723526, + 0.07063694298267365, + -0.07630173861980438, + -0.0954294428229332, + -0.0017949555767700076, + -0.005112992133945227, + -0.17684036493301392, + 0.0062393201515078545, + 0.07806304097175598, + 0.08751407265663147, + -0.04702641814947128, + 0.028815152123570442, + 0.0433516651391983, + -0.08755846321582794, + -0.02632095105946064, + 0.10288045555353165, + -0.050827596336603165, + 0.08674517273902893, + 0.08945074677467346, + 0.03410022333264351, + -0.0025897512678056955, + 0.09048892557621002, + -0.022039052098989487, + 0.021396353840827942, + -0.03814263641834259, + 0.04146343842148781, + -0.0026099816896021366, + -0.011219089850783348, + -0.054920293390750885, + -0.006207563914358616, + 0.0037418934516608715, + -0.08087126910686493, + -0.04329846426844597, + 0.006424532271921635, + 0.04905920848250389, + 0.05982869490981102, + 0.051758743822574615, + -0.029868921265006065, + -0.05204927176237106, + -0.03199611231684685, + -0.03266075626015663, + -0.0067246644757688046, + 0.027581099420785904, + -4.68660634528421e-33, + 0.0007825124193914235, + 0.04110094532370567, + -0.0019036313751712441, + 0.0952942818403244, + -0.006958212237805128, + 0.030328379943966866, + 0.03932369500398636, + -0.10100311785936356, + -0.09849614650011063, + 0.08397319912910461, + 0.04356897249817848, + 0.09763147681951523, + -0.04127750173211098, + 0.10899908095598221, + 0.08774761855602264, + -0.08481403440237045, + 0.02169920690357685, + -0.016163833439350128, + -0.016069386154413223, + -0.053535811603069305, + -0.03804435580968857, + 0.08307502418756485, + 0.012478657998144627, + -0.06973548233509064, + -0.07674474269151688, + -0.017536118626594543, + -0.029736779630184174, + -0.0588962696492672, + -0.017258170992136, + 0.013932663016021252, + 0.04984300583600998, + -0.03226479887962341, + 0.026699576526880264, + -0.030763166025280952, + -0.025871634483337402, + -0.004170478321611881, + -0.05507848039269447, + -0.03051903285086155, + -0.02632644586265087, + 0.08026242256164551, + -0.038156285881996155, + 0.0034023334737867117, + -0.11826429516077042, + 0.00166460988111794, + -0.006459736730903387, + 0.10505888611078262, + -0.001896181027404964, + -0.1665344089269638, + 0.005225927568972111, + 0.0031577793415635824, + -0.07143674790859222, + -0.0017648583743721247, + -0.03057774342596531, + -0.004106143955141306, + -0.05615493282675743, + -0.13179901242256165, + 0.004158867988735437, + 0.037916943430900574, + 0.032907988876104355, + -0.04888610169291496, + -0.011292114853858948, + -0.04271065443754196, + 0.06290306150913239, + -0.004379851743578911, + -0.030265817418694496, + 0.06562770158052444, + 0.03953921049833298, + 0.08695916086435318, + 0.031655825674533844, + -0.02988719753921032, + 0.030421631410717964, + 0.0691586583852768, + 0.054440975189208984, + 0.01452702283859253, + -0.014000285416841507, + 0.009928605519235134, + -0.010509924963116646, + 0.006994530092924833, + -0.06218709051609039, + -0.04398272559046745, + -0.0422937236726284, + -0.014828711748123169, + -0.08936595916748047, + 0.07769326865673065, + 0.019230028614401817, + 0.0400502011179924, + -0.003860194468870759, + -0.03165789693593979, + -0.04224180057644844, + -0.004794370848685503, + -0.13614162802696228, + 0.006149493157863617, + 0.0342763289809227, + 0.004751051776111126, + -0.07392692565917969, + 1.5352188565544355e-33, + 0.03936789557337761, + -0.04550299048423767, + -0.03068767674267292, + -0.02893015556037426, + -0.06925651431083679, + -0.01203157752752304, + 0.005868928041309118, + 0.05238240584731102, + -0.019073722884058952, + 0.045602947473526, + 0.06847316026687622, + 0.06309154629707336, + -0.07298615574836731, + 0.009869488887488842, + -0.05054015293717384, + 0.013601216487586498, + 0.01932510733604431, + 0.0641380175948143, + -0.03483891114592552, + 0.011856311932206154, + -0.015433990396559238, + -0.011548877693712711, + -0.11428847163915634, + 0.026368187740445137, + 0.027116766199469566, + 0.07317167520523071, + 0.025595268234610558, + -0.03640509396791458, + -0.03222375735640526, + 0.03288688138127327, + 0.0018183881184086204, + 0.015966957435011864, + 0.06453704833984375, + 0.06275208294391632, + 0.057965777814388275, + 0.014773254282772541, + 0.08126207441091537, + -0.07483118772506714, + -0.06709752976894379, + -0.01588478311896324, + 0.02769368886947632, + -0.028779620304703712, + 0.0022752080112695694, + 0.03612927347421646, + -0.03431914374232292, + 0.057492271065711975, + -0.03698199987411499, + -0.09123899787664413, + -0.0412541888654232, + 0.09290345758199692, + 0.03162612020969391, + -0.054552219808101654, + -0.012840804643929005, + -0.04023748263716698, + -0.03828958794474602, + -0.048068124800920486, + -0.05175010859966278, + 0.020228665322065353, + -0.01942036859691143, + 0.03721510246396065, + 0.040786515921354294, + 0.03622477501630783, + -0.06770633161067963, + -0.006287710275501013, + 0.023247890174388885, + 0.015557598322629929, + 0.019169144332408905, + 0.03420061245560646, + 0.008670716546475887, + 0.01770501211285591, + -0.06868553161621094, + 0.016814488917589188, + -0.03914090618491173, + 0.027492433786392212, + -0.0855487734079361, + -0.04017866402864456, + 0.12854041159152985, + 0.03187015280127525, + -0.008213845081627369, + 0.06779223680496216, + -0.03720639646053314, + -0.032429300248622894, + -0.047622617334127426, + 0.04994747415184975, + 0.031945083290338516, + -0.011046801693737507, + 0.00036843394627794623, + -0.021526165306568146, + -0.020666467025876045, + -0.043622326105833054, + -0.0006049930234439671, + 0.07697934657335281, + 0.05092434585094452, + 0.04310515895485878, + -0.04433954134583473, + -1.8872897911137443e-08, + -0.02277662232518196, + -0.01650581881403923, + -0.0017046733992174268, + 0.03333612158894539, + 0.03236498311161995, + -0.0032845311798155308, + -0.05091340094804764, + -0.07638021558523178, + -0.04802227392792702, + -0.0635402724146843, + -0.007807762827724218, + -0.04065064713358879, + -0.020468585193157196, + 0.006376263219863176, + 0.05904754251241684, + 0.02759932540357113, + -0.08027324825525284, + 0.0329652838408947, + -0.00975404866039753, + -0.028567049652338028, + -0.07049058377742767, + 0.07266639173030853, + 0.09533493965864182, + -0.0978800430893898, + -0.0646854117512703, + -0.018646402284502983, + -0.03303581848740578, + -0.038702305406332016, + 0.02946135774254799, + 0.041202936321496964, + 0.03281573951244354, + 0.08806915581226349, + 0.058395422995090485, + -0.02156939171254635, + -0.046702802181243896, + -0.042065296322107315, + 0.007580735255032778, + 0.04365880787372589, + -0.019717607647180557, + -0.009923958219587803, + -0.050617799162864685, + -0.005809202790260315, + 0.002757833804935217, + -0.029375260695815086, + -0.028328390792012215, + 0.022571004927158356, + 0.07965976744890213, + -0.01873587816953659, + -0.04388460889458656, + -0.10791850835084915, + -0.014245925471186638, + 0.05715255066752434, + 0.04017717018723488, + 0.0677371546626091, + 0.0006981956539675593, + 0.008046984672546387, + 0.0061706667765975, + 0.12787237763404846, + 0.023064181208610535, + -0.03622831776738167, + 0.10488031804561615, + -0.02839929610490799, + 0.002049895003437996, + 0.002793633146211505 + ], + "steering-wheel-bold||cars,vehicles,automobiles,driving": [ + 0.016690226271748543, + -0.07026982307434082, + -0.015756573528051376, + 0.035241905599832535, + 0.054968349635601044, + -0.02604512870311737, + 0.0936984270811081, + -0.0024551423266530037, + -0.03175758570432663, + -0.020255153998732567, + 0.04731806740164757, + 0.07676524668931961, + 0.06728266924619675, + -0.01384251844137907, + -0.058614663779735565, + 0.049976374953985214, + -0.02095976285636425, + 0.01090181153267622, + -0.02900083363056183, + 0.02472802996635437, + -0.0302770733833313, + 0.055773649364709854, + 0.026718977838754654, + 0.05142621695995331, + -0.06902524083852768, + 0.04434069246053696, + 0.06301179528236389, + 0.047220222651958466, + -0.02083182893693447, + -0.050731875002384186, + -0.1202814131975174, + 0.048756152391433716, + 0.012991572730243206, + -0.006817759945988655, + -0.02400829643011093, + -0.0763343945145607, + -0.025579700246453285, + -0.012338799424469471, + -0.04377543926239014, + -0.008680465631186962, + 0.025256823748350143, + -0.0693429559469223, + 0.033793043345212936, + 0.026164507493376732, + 0.03213455155491829, + -0.030246781185269356, + 0.0077921184711158276, + -0.018836505711078644, + 0.03945160657167435, + 0.0010631702607497573, + -0.03807688131928444, + -0.027332667261362076, + -0.00963034201413393, + -0.06746572256088257, + -0.04382557421922684, + 0.05095642805099487, + -0.10600636899471283, + 0.07203611731529236, + 0.03520556166768074, + 0.01410616934299469, + 0.07251041382551193, + -0.02195487543940544, + 0.04064326733350754, + 0.049517177045345306, + 0.017488861456513405, + -0.013862918131053448, + 0.04467146098613739, + -0.0427003912627697, + -0.04535677656531334, + 0.09142175316810608, + 0.017620477825403214, + -0.023837130516767502, + 0.026513831689953804, + -0.05398086458444595, + 0.016629310324788094, + -0.08691883087158203, + 0.02750510908663273, + 0.013416155241429806, + -0.008378221653401852, + -0.09912155568599701, + -0.03395916149020195, + -0.003748559392988682, + -0.0332510881125927, + -0.0510866679251194, + 0.028576556593179703, + 0.004020345397293568, + -0.04568926617503166, + -0.008055496029555798, + -0.016804102808237076, + 0.02683241106569767, + -0.11912544816732407, + -0.0868508443236351, + -0.04563786834478378, + -0.0014527225866913795, + -0.08123777061700821, + 0.049009837210178375, + 0.07458987832069397, + -0.028410809114575386, + -0.018808862194418907, + 0.05067169666290283, + 0.04151562973856926, + 0.021334445104002953, + 0.034504860639572144, + 0.024433080106973648, + -0.0804254561662674, + 0.03200586885213852, + 0.02489526756107807, + 0.01084790751338005, + -0.03662235289812088, + 0.04424136504530907, + 0.05302727594971657, + -0.022408971562981606, + -0.07047703117132187, + -0.010542226955294609, + -0.050074502825737, + -0.03924378380179405, + -0.0352129302918911, + 0.02897539921104908, + 0.0889342874288559, + 0.0838090032339096, + -0.056816134601831436, + -0.04009099304676056, + 0.0010756528936326504, + 0.030522525310516357, + 0.00194643996655941, + -0.032257646322250366, + -0.03921699523925781, + -4.004458891978375e-33, + -0.06425385922193527, + 0.02978493459522724, + 0.02657214365899563, + 0.07771558314561844, + 0.000319450453389436, + -0.011850767768919468, + -0.03943431004881859, + -0.005998998414725065, + -0.03202889487147331, + 0.09493228048086166, + 0.0270831435918808, + 0.0476357527077198, + -0.07137295603752136, + -0.03841651603579521, + 0.08806141465902328, + -0.027765555307269096, + -0.08414063602685928, + 0.00408256147056818, + -0.1635548174381256, + -0.06267919391393661, + -0.0421018972992897, + 0.0771276131272316, + -0.019851982593536377, + -0.06347843259572983, + -0.017429886385798454, + 0.0027753307949751616, + 0.04551855847239494, + 0.03421825170516968, + 0.07704219222068787, + 0.02345236763358116, + 0.03510138392448425, + 0.09337645769119263, + -0.042309802025556564, + 0.02872968651354313, + 0.0020892967004328966, + 0.0356699675321579, + -0.1298063099384308, + -0.0484161376953125, + -0.002369257155805826, + 0.05010467395186424, + -0.0938364565372467, + -0.04576828330755234, + -0.004817757289856672, + -0.014926509000360966, + -0.03766027092933655, + 0.13090604543685913, + 0.02741382084786892, + -0.010480713099241257, + -0.02490684576332569, + -0.02683974616229534, + -0.07195252180099487, + -0.03976766765117645, + -0.004805975593626499, + -0.02265511080622673, + 0.040529388934373856, + 0.018260184675455093, + -0.01792094111442566, + 0.08557693660259247, + -0.0567910298705101, + -0.006829564925283194, + -0.041874196380376816, + -0.007804760243743658, + 0.030310871079564095, + -0.04893801361322403, + -0.055865418165922165, + 0.048557132482528687, + -0.030864151194691658, + 0.00523355370387435, + 0.06720177084207535, + -0.0074903094209730625, + 0.014188786968588829, + 0.03895627334713936, + -0.037522584199905396, + 0.12009682506322861, + 0.043166328221559525, + 0.016846053302288055, + 0.025456588715314865, + 0.026396743953227997, + 0.00932388473302126, + -0.06381718814373016, + -0.11260078847408295, + 0.03782782331109047, + -0.06577064841985703, + 0.07261784374713898, + 0.087553009390831, + 0.005202288739383221, + -0.1056080088019371, + -0.10964344441890717, + -0.0007356602582149208, + 0.06435927748680115, + -0.09244156628847122, + 0.047542400658130646, + -0.07513529062271118, + -0.03687356039881706, + -0.1335052102804184, + -1.9389122693016103e-34, + -0.001261456636711955, + 0.07337910681962967, + 0.029150869697332382, + -0.0036687911488115788, + -0.011038010939955711, + 0.018450448289513588, + 0.010909388773143291, + -0.02542070299386978, + 0.02678903006017208, + -0.025942284613847733, + -0.015082244761288166, + -0.01894194819033146, + -0.002292911522090435, + -0.007139834109693766, + 0.007972954772412777, + -0.037844467908144, + 0.0564098097383976, + 0.03926992416381836, + -0.03177617862820625, + 0.006635592319071293, + -0.08153538405895233, + -0.031283505260944366, + -0.023287473246455193, + 0.06343474984169006, + -0.05309351906180382, + -0.003018273739144206, + 0.0035097976215183735, + 0.05033964663743973, + -0.07789164781570435, + -0.02288077212870121, + 0.00013826281065121293, + 0.014967610128223896, + 0.037159040570259094, + 0.018535636365413666, + -0.059419628232717514, + -0.028363896533846855, + -0.017810162156820297, + -0.11314868927001953, + -0.04910329356789589, + -0.006679906509816647, + 0.022180180996656418, + -0.03689385950565338, + 0.09348294138908386, + 0.030680734664201736, + -0.008017024956643581, + -0.04902128875255585, + -0.024462834000587463, + 0.011737994849681854, + 0.005087480880320072, + 0.0666508674621582, + 0.063642717897892, + -0.030088039115071297, + -0.009212465025484562, + -0.031875964254140854, + -0.07343509793281555, + -0.022582819685339928, + 0.0728457048535347, + -0.026256993412971497, + 0.07002878189086914, + 0.07173655182123184, + 0.010440496727824211, + 0.08393117040395737, + -0.07032877206802368, + 0.023390499874949455, + 0.011181456968188286, + -0.11305596679449081, + 0.042833950370550156, + -0.040297508239746094, + 0.08776964247226715, + -0.027280734851956367, + 0.06779083609580994, + 0.03616268187761307, + -0.021730663254857063, + 0.04416860267519951, + 0.0014689690433442593, + -0.005422322545200586, + 0.07364668697118759, + -0.00672960327938199, + 0.06432811915874481, + -0.04167494177818298, + 0.04233560711145401, + -0.03508775308728218, + 0.04616783186793327, + 0.1289394646883011, + -0.06634149700403214, + 0.08244689553976059, + -0.0500250943005085, + -0.029429566115140915, + 0.07019626349210739, + 0.07325790822505951, + 0.0573837012052536, + 0.06356849521398544, + -0.05790053680539131, + 0.07004213333129883, + -0.06498995423316956, + -1.7726836887277386e-08, + 0.005972655024379492, + 0.1007579043507576, + -0.08199793100357056, + -0.053315259516239166, + -0.0320851095020771, + -0.00329576781950891, + 0.02611231617629528, + -0.042529117316007614, + -0.1439661681652069, + 0.0010425257496535778, + -0.043625347316265106, + 0.017822682857513428, + -0.014287607744336128, + 0.020594904199242592, + 0.04173070937395096, + 0.029859596863389015, + -0.04317654296755791, + 0.07056183367967606, + -0.05218029394745827, + -0.04315786063671112, + 0.018559081479907036, + 0.004381681326776743, + -0.0005795974866487086, + 0.06452999264001846, + 0.05276855081319809, + -0.014964721165597439, + -0.015929287299513817, + 0.057132601737976074, + 0.048723652958869934, + -0.04864863306283951, + 0.038231994956731796, + 0.07376737892627716, + -0.016898101195693016, + 0.05228400230407715, + -0.09632746130228043, + -0.05394100025296211, + -0.06944747269153595, + -0.008870772086083889, + 0.027421172708272934, + 0.08072223514318466, + -0.0011052308836951852, + 0.05467221140861511, + -0.005230099894106388, + -0.02253463864326477, + -0.04325557500123978, + 0.024756554514169693, + -0.009560834616422653, + -0.003689248114824295, + -0.06846491247415543, + -0.034496087580919266, + -0.019412493333220482, + -0.04895937070250511, + 0.02494148537516594, + 0.09882053732872009, + -0.03252555802464485, + -0.018246600404381752, + 0.012128115631639957, + 0.0631188452243805, + -0.09219217300415039, + -0.00833647046238184, + 0.056542109698057175, + 0.04912177100777626, + 0.028737403452396393, + 0.036329109221696854 + ], + "steps-bold||stairs,staircase,exit,signs": [ + -0.006693867035210133, + 0.017454007640480995, + 0.005565655883401632, + 0.037976574152708054, + -0.004274890758097172, + 0.004148283042013645, + -0.05644984170794487, + -0.02073204144835472, + -0.013104921206831932, + -0.01329780276864767, + 5.2714320190716535e-05, + 0.008998231031000614, + 0.07121579349040985, + -0.023297829553484917, + 0.023490529507398605, + 0.09863888472318649, + -0.048588477075099945, + 0.08299567550420761, + -0.0002012088953051716, + -0.0016269851475954056, + 0.02074466645717621, + 0.0011012472677975893, + 0.021580317988991737, + 0.06299018859863281, + -0.02395036071538925, + 0.04536232724785805, + 0.0755247101187706, + 0.018799686804413795, + 0.039808694273233414, + -0.07478518038988113, + 0.01015649363398552, + -0.004844102542847395, + 0.004386011511087418, + 0.02669893577694893, + 0.07478241622447968, + 0.03698347508907318, + 0.028251370415091515, + -0.0364500992000103, + 0.01327789481729269, + 0.006233797874301672, + 0.03074738197028637, + -0.06584051251411438, + -0.02680763602256775, + 0.050464093685150146, + -0.02679397538304329, + 0.03680242970585823, + -0.06346793472766876, + -0.06249096617102623, + 0.0068185641430318356, + 0.019903551787137985, + -0.029948322102427483, + -0.039558809250593185, + -0.11615461111068726, + 0.08312652260065079, + 0.021560803055763245, + 0.021725820377469063, + -0.02872203290462494, + -0.05396495759487152, + 0.05090552195906639, + -0.04021422192454338, + -0.0016401525354012847, + -0.006793625187128782, + -0.0304825771600008, + -0.013070347718894482, + 0.005969133693724871, + -0.009278342127799988, + -0.02544906921684742, + -0.06011328101158142, + 0.04511978104710579, + 0.07355882972478867, + -0.01444462314248085, + -0.03339403495192528, + 0.008958276361227036, + -0.056907691061496735, + -0.08182895928621292, + 0.015106575563549995, + 0.02217588759958744, + 0.00016336880798917264, + -0.09288328886032104, + -0.08913825452327728, + -0.1401979625225067, + -0.042159974575042725, + -0.044723011553287506, + 0.032456446439027786, + 0.06055265665054321, + 0.05830761417746544, + -0.06338651478290558, + -0.04102304205298424, + 0.026497911661863327, + 0.0031556503381580114, + -0.046213261783123016, + -0.06297288089990616, + 0.01775181107223034, + -0.03133440762758255, + -0.03455422818660736, + -0.011082527227699757, + 0.02459508739411831, + -0.0759475901722908, + 0.0006561377085745335, + 0.03863358870148659, + -0.02013963647186756, + 0.04604514315724373, + 0.08365575224161148, + 0.0036302627995610237, + -0.01687207631766796, + -0.02726658061146736, + 0.03852519392967224, + 0.004149414133280516, + 0.06536640226840973, + 0.05145006626844406, + -0.05862964317202568, + -0.14042016863822937, + 0.1103772297501564, + -0.0035051051527261734, + 0.020821861922740936, + 0.0009819569531828165, + -0.04767150059342384, + -0.001487208646722138, + 0.04118978604674339, + 0.03149378299713135, + 0.030599240213632584, + -0.027307482436299324, + -0.000941383303143084, + -0.026783116161823273, + -0.05874045565724373, + -0.042639993131160736, + 0.036489952355623245, + -4.07122770578905e-33, + 0.05859983339905739, + 0.05518343672156334, + 0.002554133301600814, + 0.07776013761758804, + 0.09065519273281097, + 0.04630354791879654, + -0.06137772276997566, + -0.04980495572090149, + -0.05295449122786522, + 0.10109028965234756, + 0.01919476129114628, + 0.010464241728186607, + -0.04577651619911194, + 0.05353173613548279, + 0.01246226392686367, + -0.05281449854373932, + 0.05204778537154198, + -0.018416916951537132, + -0.10667503625154495, + -0.01565299555659294, + 0.014720561914145947, + -0.0011285359505563974, + -0.012337922118604183, + 0.01674818806350231, + 0.029408875852823257, + -0.04688597097992897, + 0.015430244617164135, + 0.021476654335856438, + -0.08580228686332703, + 0.01106758788228035, + 0.07001244276762009, + -0.02414185181260109, + -0.02614305354654789, + 0.0031418604776263237, + 0.033286694437265396, + 0.020520497113466263, + -0.02311680093407631, + -0.008572938852012157, + 0.01166732981801033, + -0.01057310588657856, + -0.1088237389922142, + -0.08373582363128662, + 0.002089479472488165, + -0.0008533172076568007, + 0.02230309508740902, + 0.10502880811691284, + 0.009866617619991302, + -0.034057747572660446, + 0.0517776682972908, + 0.007435583975166082, + -0.027771269902586937, + 0.031543996185064316, + 0.02860124409198761, + -0.024525482207536697, + 0.03944821283221245, + -0.03004562482237816, + -0.013198357075452805, + 0.05121731013059616, + -0.04589679092168808, + 0.011660468764603138, + 0.016379831358790398, + 0.09470316022634506, + 0.029842710122466087, + 0.03855550289154053, + -0.04305112361907959, + -0.03298433870077133, + -0.1373194307088852, + 0.014517665840685368, + 0.12149566411972046, + 0.03664397448301315, + -0.03844314068555832, + 0.05140932649374008, + 0.06813882291316986, + 0.023321911692619324, + 0.023518934845924377, + 0.02268187329173088, + -0.08714808523654938, + -0.09795038402080536, + 0.09251085668802261, + -0.1255066692829132, + -0.12353340536355972, + -0.007770314812660217, + -0.08911775052547455, + 0.05817890167236328, + 0.15430431067943573, + 0.04207827150821686, + -0.011894803494215012, + -0.0754941999912262, + -0.07499244809150696, + -0.00683431513607502, + -0.09417217969894409, + 0.017937950789928436, + 0.021809151396155357, + -0.026556866243481636, + -0.07044558227062225, + 2.4007729537005624e-34, + 0.02339908666908741, + 0.07407630980014801, + -0.005157972685992718, + -0.04453202337026596, + -0.07922174036502838, + 0.015725888311862946, + -0.003642323659732938, + -0.006517710164189339, + 0.09142262488603592, + 0.08571674674749374, + 0.0012591836275532842, + 0.04605531319975853, + -0.03741531819105148, + -0.06296364963054657, + 0.04843705892562866, + -0.0392107330262661, + 0.10982387512922287, + 0.01694926619529724, + 0.06268478184938431, + 0.005182906053960323, + -0.07135814428329468, + -0.0007756030536256731, + -0.16823653876781464, + 0.06556977331638336, + -0.035085879266262054, + -0.0030059602577239275, + 0.11579529941082001, + 0.011701326817274094, + -0.008692666888237, + -0.016629474237561226, + -0.019490063190460205, + -0.018453333526849747, + 0.05319448187947273, + 0.03775821253657341, + -0.04841136559844017, + -0.026455996558070183, + 0.016539575532078743, + -0.03858469799160957, + -0.02748195454478264, + -0.033319827169179916, + 0.053024884313344955, + -0.004229162819683552, + 0.11419668793678284, + 0.028734682127833366, + -0.0386810265481472, + 0.012412446551024914, + -0.026060914620757103, + 0.014284496195614338, + -0.06313452124595642, + -0.010178526863455772, + 0.019419673830270767, + -0.0040002972818911076, + -0.06604718416929245, + 0.04080955311655998, + -0.03996988758444786, + 0.0017890924355015159, + -0.032837770879268646, + 0.018222350627183914, + -0.019687427207827568, + 0.007694349158555269, + 0.001231264672242105, + 0.07998992502689362, + 0.06197481229901314, + 0.022702818736433983, + 0.01917705312371254, + -0.06721197813749313, + -0.025132281705737114, + -0.008303639478981495, + -0.017368655651807785, + -0.023860983550548553, + 0.02680264785885811, + 0.015336166135966778, + 0.008522545918822289, + -0.013618074357509613, + 0.07043153047561646, + -0.11336871236562729, + 0.002819194458425045, + -0.0043789176270365715, + -0.002057099249213934, + -0.014617804437875748, + -0.000459583243355155, + -0.06063900515437126, + -0.037310436367988586, + 0.032090868800878525, + -0.07039811462163925, + 0.0053199403919279575, + -0.059617266058921814, + 0.06811559945344925, + 0.016785655170679092, + -0.009940295480191708, + -0.0038165885489434004, + 0.08466938138008118, + 0.021144315600395203, + -0.036229442805051804, + -0.03637921065092087, + -1.7751670355892202e-08, + -0.06647170335054398, + -0.037574656307697296, + -0.021730482578277588, + -0.09648310393095016, + 0.02660169079899788, + -0.04411018639802933, + 0.02496553398668766, + 0.06389210373163223, + -0.03639565035700798, + 0.0013509365962818265, + 0.0746566578745842, + 0.08359132707118988, + -0.03396763280034065, + 0.017375154420733452, + 0.0322955846786499, + 0.01645622029900551, + -0.045227229595184326, + 0.03004143387079239, + -0.024703288450837135, + -0.05119200795888901, + -0.056844230741262436, + -0.012540801428258419, + -0.007476316764950752, + -0.009001566097140312, + 0.0012146136723458767, + -0.003562007797881961, + -0.05046630650758743, + -0.001343134674243629, + -0.001505749998614192, + 0.0506453663110733, + 0.0916692465543747, + 0.06698182225227356, + 0.03286999836564064, + 0.026066632941365242, + -0.09605825692415237, + 0.00366921816021204, + 0.06690995395183563, + 0.02300109714269638, + 0.07275796681642532, + 0.09843074530363083, + -0.004105883184820414, + -0.033502329140901566, + -0.020860619843006134, + 0.006460932549089193, + -0.05107875540852547, + -0.020777368918061256, + 0.05478524789214134, + -0.01542703714221716, + -0.1393420398235321, + -0.09892572462558746, + -0.047468382865190506, + 0.011505850590765476, + 0.0319526344537735, + 0.05390087515115738, + 0.007625548169016838, + -0.05691998824477196, + -0.00033491005888208747, + 0.00804978795349598, + -0.02041621506214142, + 0.04847920313477516, + 0.1860603243112564, + 0.05197850242257118, + 0.04991503059864044, + -0.03489125892519951 + ], + "stethoscope-bold||hospital,medical,medicine,injury,safety,emergency,doctor,heart": [ + 0.03773432597517967, + 0.02951076067984104, + -0.07610683143138885, + -0.01853453367948532, + -0.07735510170459747, + -0.04905131459236145, + -0.012861822731792927, + 0.05375584587454796, + -0.022703707218170166, + -0.035147055983543396, + 0.021003304049372673, + 0.014190743677318096, + -0.012343139387667179, + -0.015550700016319752, + -0.0009028863860294223, + -0.07511743158102036, + 0.044406674802303314, + 0.022712906822562218, + -0.0092186089605093, + 0.04465508088469505, + -0.01529204286634922, + 0.0980914831161499, + 0.00283781997859478, + 0.024109620600938797, + -0.019706878811120987, + -0.007796410005539656, + -0.01729649305343628, + -0.021493762731552124, + 0.003538336604833603, + 0.007878071628510952, + -0.057208895683288574, + -0.10506510734558105, + 0.05434098467230797, + -0.0035194014199078083, + -0.005830073729157448, + 0.01982874795794487, + 0.004687870386987925, + 0.018370911478996277, + -0.08085773140192032, + 0.08704368025064468, + 0.027956485748291016, + -0.031100718304514885, + -0.03914501518011093, + 0.019210632890462875, + 0.07677394896745682, + 0.05194731056690216, + -0.03403626009821892, + -0.0227646604180336, + 0.044828228652477264, + 0.005860535427927971, + 0.008144465275108814, + -0.1638616919517517, + -0.03786509484052658, + 0.09880631417036057, + -0.020464319735765457, + -0.02134581096470356, + -0.09388246387243271, + -0.031297940760850906, + -0.04950718209147453, + -0.06850835680961609, + 0.0015155201544985175, + -0.010518977418541908, + 0.06267647445201874, + 0.08014829456806183, + -0.043384574353694916, + 0.01395144872367382, + 0.027550945058465004, + -0.06140176206827164, + 0.08076420426368713, + 0.0590030662715435, + 0.06162590533494949, + -0.026841921731829643, + 0.006930191069841385, + 0.03283550590276718, + -0.06098497286438942, + -0.0049886940978467464, + 0.07745923101902008, + -0.06538708508014679, + 0.021838776767253876, + -0.015161420218646526, + 0.05071920529007912, + -0.019854623824357986, + -0.061649758368730545, + -0.000480248243547976, + 0.008145632222294807, + 0.0913928747177124, + -0.06565002351999283, + -0.04230467230081558, + -0.06146654486656189, + -0.037601273506879807, + -0.016710596159100533, + -0.030009768903255463, + 0.060934796929359436, + 0.04326579347252846, + 0.012469497509300709, + -0.018811021000146866, + -0.026455391198396683, + -0.014869659207761288, + -0.08159349858760834, + -0.006721642799675465, + 0.03225685656070709, + -0.006037121172994375, + 0.0161494892090559, + 0.1468338668346405, + 0.008642109110951424, + -0.04282413795590401, + -0.04581307992339134, + -0.054047416895627975, + -0.033690035343170166, + 0.02259550616145134, + 0.025333289057016373, + 0.046128738671541214, + 0.05713651329278946, + -0.09266594797372818, + -0.005557293072342873, + 0.0839541032910347, + -0.08657307922840118, + 0.03775332495570183, + 0.02879110723733902, + 0.11135951429605484, + -0.03591809421777725, + 0.007391080725938082, + -0.05799790844321251, + -0.06892532110214233, + 0.045823320746421814, + 0.016551071777939796, + -0.021940257400274277, + -3.800979350483098e-33, + 0.03442797064781189, + 0.050815876573324203, + 0.061209216713905334, + 0.017482537776231766, + -0.038378164172172546, + -0.01157964114099741, + -0.03243868425488472, + -0.03560106083750725, + 0.014192922972142696, + -0.027611786499619484, + 0.020503386855125427, + 0.038348983973264694, + 0.030896021053195, + 0.08552391827106476, + -0.04118315503001213, + 0.009737837128341198, + 0.023810531944036484, + 0.11468463391065598, + -0.07813706994056702, + -0.021378353238105774, + -0.07308420538902283, + 0.004113082308322191, + -0.06577722728252411, + 0.03229167312383652, + -0.06319121271371841, + 0.03975279629230499, + -0.01536655891686678, + 0.029055116698145866, + -0.026703426614403725, + 0.01653764769434929, + -0.04726529121398926, + 0.0166965089738369, + 0.040666788816452026, + -0.0531013160943985, + 0.013434707187116146, + -0.041725922375917435, + -0.03231291472911835, + -0.05218403786420822, + -0.06576818972826004, + 0.007956662215292454, + -0.04465995356440544, + 0.0334777906537056, + -0.05466926842927933, + 0.03527447581291199, + 0.05455814674496651, + 0.047095801681280136, + -0.05998894199728966, + -0.0061364262364804745, + 0.1115943193435669, + -0.04063289985060692, + -0.02995920740067959, + -0.0005560405552387238, + -0.043913550674915314, + -0.022187065333127975, + 0.024424223229289055, + 0.03464973345398903, + 0.0005879562231712043, + 0.02903730235993862, + 0.00021627215028274804, + -0.014040659181773663, + 0.008280336856842041, + 0.10449329018592834, + 0.008792554028332233, + 0.031118134036660194, + -0.09490451216697693, + -0.0006329870084300637, + -0.02454441785812378, + -0.052079953253269196, + 0.02103964239358902, + -0.01071440614759922, + -0.06620262563228607, + 0.06089232861995697, + -0.06226934492588043, + 0.031813234090805054, + -0.005603806581348181, + 0.08982301503419876, + 0.02822428196668625, + 0.05352497100830078, + 0.030589831992983818, + -0.08632928133010864, + -0.07131966203451157, + -0.0059240651316940784, + 2.5142449885606766e-05, + 0.08570191264152527, + 0.0424543134868145, + 0.049199096858501434, + -0.010329953394830227, + -0.025220347568392754, + -0.012871772982180119, + 0.06619537621736526, + -0.09505683183670044, + 0.132792130112648, + -0.06260769814252853, + -0.016647974029183388, + -0.08394698798656464, + 1.1456592222614787e-35, + 0.017861150205135345, + -0.024131234735250473, + -0.00839925929903984, + 0.01065031997859478, + 0.013548264279961586, + 0.005714900325983763, + -0.06501341611146927, + 0.08506327122449875, + 0.08008689433336258, + 0.05916496738791466, + 0.01324322260916233, + -0.059531450271606445, + -0.06132389232516289, + -0.06371619552373886, + 0.028421085327863693, + 0.007749746087938547, + -0.06840989738702774, + -0.004029971081763506, + -0.07998257875442505, + 0.06459606438875198, + 0.003185609821230173, + -0.020687460899353027, + -0.027065997943282127, + 0.03761785849928856, + -0.02519114874303341, + 0.024640878662467003, + 0.009126217104494572, + -0.08633594214916229, + -0.03861759603023529, + -0.022813763469457626, + -0.0036026081070303917, + -0.0502498596906662, + -0.004376979544758797, + 0.07436846196651459, + -0.07353395968675613, + 0.08022493124008179, + 0.018953967839479446, + -0.05825725570321083, + -0.040076691657304764, + -0.042499344795942307, + -0.007327992934733629, + -0.017177732661366463, + 0.07158247381448746, + -0.022100741043686867, + -0.026986241340637207, + -0.05860426649451256, + 5.4002284741727635e-05, + -0.0249810591340065, + -0.0036960234865546227, + 0.04308963939547539, + 0.0004889006959274411, + -0.01876669004559517, + 0.034723639488220215, + 0.06812804937362671, + -0.0045617083087563515, + -0.03114897944033146, + -0.07674939185380936, + -0.01866050437092781, + 0.012397527694702148, + -0.02981262095272541, + 0.06753856688737869, + 0.0017415385227650404, + -0.09959664940834045, + 0.02382093295454979, + 0.03793345019221306, + 0.049192339181900024, + 0.05539039894938469, + -0.09435681998729706, + -0.01968364790081978, + 0.013515640050172806, + 0.009392288513481617, + 0.008411698043346405, + -0.039796069264411926, + -0.004509333986788988, + -0.0029188755434006453, + -0.03821805492043495, + -0.022485950961709023, + -0.03444486856460571, + -0.06782053411006927, + 0.05642038956284523, + 0.004975407384335995, + -0.018789241090416908, + 0.018344227224588394, + 0.124844990670681, + -0.016624106094241142, + 0.006129167042672634, + 0.026198679581284523, + -0.024933602660894394, + -0.045583948493003845, + 0.013692734763026237, + -0.017451230436563492, + 0.07504725456237793, + -0.10705941170454025, + -0.03501090779900551, + 0.022061973810195923, + -2.4302570622580788e-08, + -0.04498282074928284, + 0.048140980303287506, + -0.05972858518362045, + -0.07169260084629059, + -0.12519919872283936, + -0.08959991484880447, + 0.003798956982791424, + -0.03779761120676994, + -0.004432927817106247, + 0.01284077949821949, + -0.014299680478870869, + 0.056463148444890976, + 0.037734076380729675, + -0.08743134886026382, + 0.05713183805346489, + -0.03522820398211479, + -0.09246353805065155, + 0.05019763484597206, + -0.006914930883795023, + -0.04412270337343216, + 0.02560473419725895, + -0.003934822976589203, + 0.07127519696950912, + -0.08362584561109543, + 0.04956080764532089, + 0.009845654480159283, + 0.02311626262962818, + 0.07388418912887573, + -0.0330638512969017, + 0.0794585645198822, + 0.09000471979379654, + 0.007176651153713465, + 0.00030463127768598497, + 0.034351278096437454, + -0.041431643068790436, + 0.013045042753219604, + 0.054496727883815765, + -0.029724037274718285, + 0.015544896014034748, + 0.14049747586250305, + -0.04664802923798561, + -0.047575898468494415, + 0.05653392896056175, + 0.07090716809034348, + -0.0094630541279912, + -0.029640844091773033, + 0.1113225594162941, + 0.037113990634679794, + -0.0456203892827034, + -0.06003076955676079, + 0.021951336413621902, + -0.060155175626277924, + 0.0617610439658165, + 0.037216611206531525, + -0.09380531311035156, + 0.021902645006775856, + 0.08529018610715866, + -0.00047838641330599785, + -0.11021202057600021, + 0.10879968851804733, + 0.10019059479236603, + -0.027067668735980988, + 0.09641905874013901, + 0.059957873076200485 + ], + "sticker-bold||stickers,sticker pack,labels": [ + -0.04111623018980026, + -0.007392618339508772, + -0.06368541717529297, + 0.07681901752948761, + 0.09635797888040543, + 0.026321377605199814, + 0.08574593812227249, + -0.004366714973002672, + 0.027043387293815613, + -0.058592844754457474, + 0.022660253569483757, + 0.008310705423355103, + 0.039890583604574203, + -0.042312733829021454, + 0.06642916053533554, + 0.01696643978357315, + 0.01946103945374489, + 0.020227495580911636, + 0.04705614224076271, + -0.03430575132369995, + -0.0421847440302372, + 0.022143758833408356, + 0.03264400362968445, + 0.08451031148433685, + 0.0039675310254096985, + 0.040708113461732864, + 0.004313758108764887, + 0.027365637943148613, + 0.04397884011268616, + -0.018577106297016144, + 0.02164253033697605, + -0.02206726185977459, + 0.036605145782232285, + 0.04189789667725563, + 0.09691745042800903, + -0.03518585115671158, + -0.04059652239084244, + 0.021968454122543335, + 0.023471955209970474, + 0.013853868469595909, + 0.10351927578449249, + -0.14420494437217712, + 0.009898029267787933, + 0.011619570665061474, + -0.05294252932071686, + 0.01774098537862301, + -0.027073383331298828, + 0.0009468236821703613, + 0.020420528948307037, + 0.0020540589466691017, + 0.01475620735436678, + -0.10076027363538742, + -0.12020867317914963, + -0.09005957841873169, + -0.010075892321765423, + -0.03128949552774429, + -0.02037413790822029, + -0.03835031017661095, + 0.04227486997842789, + 0.03844527155160904, + -0.005816010292619467, + 0.04252215474843979, + 0.06456968933343887, + 0.08145996928215027, + 0.025710580870509148, + 0.02911871112883091, + 0.004959519952535629, + 0.047763630747795105, + -0.09571748971939087, + 0.07952863723039627, + 0.023325104266405106, + 0.06496470421552658, + 0.017064010724425316, + 0.0038076958153396845, + -0.018015753477811813, + 0.004602265544235706, + -0.007610381115227938, + 0.025616848841309547, + -0.05455487221479416, + -0.06792222708463669, + -0.10714205354452133, + -0.05291144177317619, + -0.051766157150268555, + 0.03654574602842331, + 0.018610361963510513, + 0.04995272308588028, + -0.023356787860393524, + -0.08940280228853226, + -0.04637684300541878, + 0.040797971189022064, + -0.07979404926300049, + 0.009175904095172882, + 0.09303150326013565, + 0.04626835510134697, + -0.13433314859867096, + -0.012587493285536766, + 0.06685686856508255, + 0.06078901141881943, + -0.03533478453755379, + 0.05003804340958595, + -0.02320682443678379, + 0.036534227430820465, + 0.056964948773384094, + 0.025489330291748047, + -0.056540850549936295, + -0.05003051087260246, + -0.07297801971435547, + -0.04718516767024994, + 0.02911735512316227, + 0.0430154949426651, + -0.022777408361434937, + -0.04057757928967476, + -0.05721616744995117, + -0.013506145216524601, + -0.097285196185112, + -0.07250098884105682, + 0.009040323086082935, + -0.032759685069322586, + 0.12414278835058212, + -0.027709105983376503, + 0.005117579363286495, + -0.05501952022314072, + 0.029429925605654716, + -0.09644994884729385, + 0.010128908790647984, + 0.03602372109889984, + 0.0453093945980072, + -8.092798305766543e-34, + 0.02452916093170643, + 0.01961533911526203, + -0.03151518106460571, + 0.06299114227294922, + 0.005486590787768364, + -0.02811526507139206, + -0.02261892333626747, + -0.058778923004865646, + -0.010363684967160225, + 0.09304390847682953, + 0.09730234742164612, + 0.06958156079053879, + 0.01983117125928402, + 0.1287834793329239, + 0.05795418843626976, + -0.03787250816822052, + -0.024502333253622055, + -0.025267263874411583, + -0.07504967600107193, + -0.049661122262477875, + -0.060290466994047165, + 0.0010873714927583933, + -0.03567267581820488, + -0.03237912803888321, + -0.05197024345397949, + -0.025105644017457962, + -0.022634897381067276, + -0.013883614912629128, + -0.05893222242593765, + -0.006491668522357941, + 0.01266692578792572, + -0.013590076006948948, + 0.11129223555326462, + -0.05231012776494026, + 0.0343334935605526, + 0.003943736664950848, + -0.04637734219431877, + -0.01607351191341877, + -0.005644799675792456, + 0.014720584265887737, + -0.034331995993852615, + -0.03838743269443512, + -0.016632243990898132, + -0.006478022318333387, + 0.0943024531006813, + 0.1698126643896103, + 0.031320758163928986, + -0.03869336470961571, + 0.06387455016374588, + -0.03803731128573418, + 0.01396598294377327, + -0.08547990024089813, + -0.031559716910123825, + -0.015949133783578873, + -0.0037092622369527817, + -0.06055671349167824, + -0.03218936547636986, + 0.06453950703144073, + -0.026323536410927773, + -0.06323046237230301, + 0.007702389732003212, + 0.051800988614559174, + 0.055108554661273956, + -0.013196924701333046, + -0.008041992783546448, + 0.07962256669998169, + -0.037856996059417725, + 0.030542079359292984, + 0.08302944898605347, + -0.0242345929145813, + 0.06186378002166748, + 0.10129112005233765, + 0.0051419842056930065, + 0.00010395402205176651, + 0.04631614312529564, + 0.0053679486736655235, + 0.0075613888911902905, + -0.016589777544140816, + -0.006194249726831913, + -0.06938756257295609, + -0.012849845923483372, + 0.006281295325607061, + -0.02740517258644104, + 0.057686932384967804, + 0.00155207933858037, + 0.004924460779875517, + -0.007866572588682175, + -0.027976861223578453, + -0.01467459462583065, + 0.024242406710982323, + 0.003036654554307461, + -0.017705600708723068, + -0.023304561153054237, + -0.04290317744016647, + -0.1295967549085617, + -1.7938532358387668e-33, + -0.013650787994265556, + -0.028656672686338425, + 0.04616190865635872, + 0.013157033361494541, + -0.006316689774394035, + 0.0027920634020119905, + 0.01031629741191864, + 0.07633022218942642, + 0.062250278890132904, + -0.03249819204211235, + -0.007657075300812721, + 0.005200088024139404, + -0.028659366071224213, + 0.005350129678845406, + -0.028867067769169807, + -0.008183606900274754, + -0.017256837338209152, + 0.1035812646150589, + -0.0032876122277230024, + -0.040607746690511703, + -0.056247685104608536, + 0.0014789116103202105, + -0.004600966814905405, + 0.10024207830429077, + -0.002380149671807885, + 0.01361830160021782, + -0.015509449876844883, + -0.000253153033554554, + -0.027586812153458595, + -0.013580435886979103, + 0.033190153539180756, + -0.06153279170393944, + 0.07920841127634048, + 0.006635833997279406, + -0.00373323867097497, + -0.024325767531991005, + 0.002485726261511445, + -0.018439896404743195, + -0.006693731062114239, + -0.05436040461063385, + -0.05849496275186539, + -0.012453993782401085, + -0.02698003500699997, + -0.018490774556994438, + -0.025341831147670746, + -0.014782064594328403, + 0.015362527221441269, + -0.053159963339567184, + -0.02321275882422924, + 0.09768539667129517, + -0.01611522026360035, + -0.02811599336564541, + -0.017745641991496086, + -0.011747053824365139, + -0.1177220568060875, + -0.029087183997035027, + -0.025292279198765755, + -0.01031538750976324, + 0.06741546094417572, + 0.024639498442411423, + 0.001735691912472248, + 0.05279599502682686, + -0.004786813631653786, + 0.016287202015519142, + 0.03591572120785713, + -0.03831532225012779, + 0.05698506906628609, + -0.04696790874004364, + -0.025805050507187843, + 0.021689677610993385, + 0.05336522310972214, + -0.001277915551327169, + -0.04617559164762497, + 0.02797871083021164, + 0.023186199367046356, + -0.038638222962617874, + 0.019987160339951515, + 0.04420718178153038, + -0.062042124569416046, + -0.0038151689805090427, + -0.06970564275979996, + -0.02146247588098049, + -0.07543689757585526, + 0.07080481201410294, + -0.0953839123249054, + 0.016372427344322205, + -0.007731112651526928, + -0.02802199497818947, + 0.06011750176548958, + -0.00694173714146018, + 0.023380162194371223, + 0.04963254556059837, + 0.06890518963336945, + 0.05461031571030617, + -0.0813807025551796, + -1.766989576879041e-08, + 0.03919758275151253, + -0.006767964456230402, + -0.026240499690175056, + -0.018628202378749847, + -0.01245868019759655, + 0.020531238988041878, + -0.04887224733829498, + -0.1047261580824852, + -0.059178661555051804, + 0.017222050577402115, + 0.08428965508937836, + -0.0015591435367241502, + -0.09241385757923126, + -0.048987116664648056, + 9.747444710228592e-05, + 0.026464268565177917, + -0.04983419552445412, + 0.08869969844818115, + -0.02283969335258007, + -0.047310881316661835, + -0.06334727257490158, + 0.021255020052194595, + 0.11424069851636887, + -0.030120760202407837, + 0.017261026427149773, + 0.014727994799613953, + -0.030573373660445213, + 0.02606540359556675, + 0.045688461512327194, + 0.06641657650470734, + 0.046365585178136826, + 0.050110384821891785, + 0.06543972343206406, + 0.044906243681907654, + 0.011321024969220161, + -0.05717133730649948, + -0.06901057064533234, + -0.020424261689186096, + 0.038376130163669586, + 0.1928153783082962, + -0.08544854819774628, + -0.07890023291110992, + -0.053447362035512924, + -0.028951002284884453, + -0.01308480091392994, + 0.03440754488110542, + -0.01773211359977722, + -0.006081614643335342, + -0.10278665274381638, + -0.15585263073444366, + -0.02351108007133007, + -0.05906002223491669, + -0.039346661418676376, + 0.05040125548839569, + -0.002594245597720146, + -0.1231132447719574, + 0.022587183862924576, + 0.09812799841165543, + -0.003487788373604417, + 0.015433662571012974, + 0.05870945379137993, + 0.024409616366028786, + 0.0005072323838248849, + 0.059771936386823654 + ], + "stool-bold||chair,seat,furniture": [ + 0.0587112158536911, + -0.04142637178301811, + -0.010361507534980774, + 0.05376182869076729, + -0.02156544104218483, + -0.02998717501759529, + 0.0688217431306839, + -0.09834882616996765, + 0.022617461159825325, + 0.0258820541203022, + -0.004315753001719713, + -0.003542279824614525, + 0.08242973685264587, + -0.041041452437639236, + -0.05383022874593735, + -0.03571406006813049, + 0.07047779858112335, + 0.04827943444252014, + 0.045252617448568344, + 0.0868004858493805, + -0.036739494651556015, + 0.06021260470151901, + 0.030412543565034866, + 0.057114146649837494, + -0.02128305844962597, + -0.022226743400096893, + 0.07446695864200592, + 0.010255086235702038, + 0.0022887317463755608, + -0.027524329721927643, + -0.013216884806752205, + -0.07728918641805649, + 0.10810686647891998, + -0.019935956224799156, + 0.018936224281787872, + -0.022569283843040466, + -0.006094774696975946, + -0.07362614572048187, + 0.03947971388697624, + 0.03355975076556206, + -0.052408140152692795, + -0.08808190375566483, + -0.008446197025477886, + -0.011632487177848816, + 0.008563565090298653, + 0.0005973296356387436, + -0.04569777473807335, + -0.06319133937358856, + 0.016932526603341103, + 0.04051344096660614, + -0.03930630907416344, + -0.08604410290718079, + -0.058270204812288284, + 0.014724059961736202, + -0.005230163689702749, + -0.0014923273120075464, + -0.05369037762284279, + -0.014688782393932343, + 0.04503031447529793, + -0.033367495983839035, + 0.028507493436336517, + 0.007599432487040758, + 0.036968622356653214, + 0.06915419548749924, + 0.043286848813295364, + 0.011271207593381405, + -0.003652639454230666, + -0.031484369188547134, + -0.07352012395858765, + 0.02805185690522194, + -0.0534374862909317, + 0.015078148804605007, + -0.0013506715185940266, + -0.030322017148137093, + -0.11625530570745468, + 0.005381124559789896, + 0.023179249837994576, + -0.020864421501755714, + 0.015345367603003979, + 0.018128756433725357, + -0.08398264646530151, + -0.02205280214548111, + -0.032218869775533676, + -0.02907165139913559, + 0.01614093966782093, + 0.054875779896974564, + -0.08537214249372482, + -0.008584222756326199, + -0.12018436193466187, + -0.10888804495334625, + -0.013698541559278965, + 0.010691548697650433, + 0.0003834344388451427, + 0.02526959776878357, + -0.0674460232257843, + 0.025446901097893715, + 0.05928099527955055, + 0.03911173343658447, + 0.04020875319838524, + 0.05627894029021263, + -0.012247471138834953, + 0.13380585610866547, + 0.05503097549080849, + -0.011215719394385815, + -0.12065611034631729, + -0.0680752694606781, + -0.007538401987403631, + -0.05645499378442764, + 0.04378271847963333, + -0.047533076256513596, + -0.06815642863512039, + -0.07452663034200668, + -0.0016050607664510608, + -0.024507898837327957, + -0.1000877395272255, + 0.028300974518060684, + -0.0631595328450203, + -0.07545004785060883, + 0.09115105867385864, + -0.010981934145092964, + -0.0308813638985157, + 0.026824094355106354, + 0.0013126640114933252, + 0.0477168895304203, + 0.01316036470234394, + -0.014360027387738228, + 0.06386639177799225, + -4.689947320634438e-33, + 0.02361278235912323, + -0.01990172453224659, + 0.025858303532004356, + 0.07302582263946533, + 0.06634455174207687, + 0.01984955556690693, + 0.009609605185687542, + -0.02194727398455143, + -0.020713355392217636, + 0.06855297088623047, + 0.04040546342730522, + -0.03099960647523403, + 0.03326039761304855, + -0.012030747719109058, + 0.03223549947142601, + 0.003930332604795694, + 0.014607583172619343, + -0.039958853274583817, + -0.07267097383737564, + 0.035587992519140244, + -0.032398536801338196, + 0.1411132961511612, + -0.007948452606797218, + 0.018567519262433052, + -0.02380426600575447, + 0.015088014304637909, + -0.01374405063688755, + 0.01635958068072796, + -0.029084889218211174, + 0.036993950605392456, + 0.06576285511255264, + 0.07314685732126236, + -0.0732216164469719, + 0.04235745593905449, + -0.0638352707028389, + -0.047893304377794266, + -0.033069103956222534, + -0.0036991203669458628, + -0.037749484181404114, + 0.027459880337119102, + -0.07907695323228836, + 0.009570041671395302, + 0.03904157876968384, + 0.030176114290952682, + -0.002694641472771764, + 0.06416289508342743, + -0.01153232716023922, + -0.02038738504052162, + -0.016781479120254517, + 0.04278579354286194, + -0.07327955961227417, + 0.08680640906095505, + 0.006360996048897505, + 0.007627064827829599, + -0.029987158253788948, + -0.08500050753355026, + 0.014154649339616299, + 0.05829358845949173, + -0.0045048571191728115, + 0.011562084779143333, + 0.03460850939154625, + 0.03872176259756088, + 0.06389426440000534, + -0.04423118010163307, + -0.04550530016422272, + 0.004929862450808287, + -0.052487149834632874, + 0.02648017555475235, + 0.170815110206604, + 0.06837286055088043, + 0.02475673146545887, + 0.09263333678245544, + 0.02701212465763092, + 0.054173264652490616, + -0.003671335056424141, + 0.005167035385966301, + -0.014143032021820545, + -0.04686238616704941, + 0.02937721461057663, + -0.10082599520683289, + -0.09371238201856613, + 0.014584352262318134, + -0.03084721975028515, + 0.09651891142129898, + 0.005794171243906021, + -0.01872333697974682, + -0.02949375845491886, + -0.016682220622897148, + -0.021835478022694588, + 0.07094041258096695, + -0.05606159567832947, + -0.012506434693932533, + -0.06840638816356659, + -0.06442364305257797, + -0.049750830978155136, + -3.526902970273045e-34, + 0.11335400491952896, + 0.045120395720005035, + -0.12957768142223358, + -0.02235988900065422, + -0.03626929596066475, + -0.021347656846046448, + -0.04481567069888115, + -0.04359850287437439, + -0.08621735870838165, + 0.02159755676984787, + -0.003996369428932667, + 0.018886171281337738, + 0.005788908340036869, + -0.06647234410047531, + 0.07143206149339676, + 0.05499843880534172, + 0.04585247114300728, + 0.030692582949995995, + -0.011085866019129753, + 0.016970319673419, + 0.017814146354794502, + 0.007653689477592707, + -0.020513072609901428, + 0.021461136639118195, + -0.009239752776920795, + -0.021381882950663567, + 0.06497835367918015, + -0.011487196199595928, + -0.09616176038980484, + 0.018187686800956726, + -0.08783714473247528, + 0.005897075869143009, + 0.009680750779807568, + 0.06599462032318115, + -0.072051502764225, + 0.011131968349218369, + -0.06110965833067894, + -0.07313010096549988, + 0.005585677921772003, + 0.024217946454882622, + 0.033707182854413986, + -0.032267555594444275, + 0.040216680616140366, + 0.11744062602519989, + -0.010319754481315613, + -0.07645032554864883, + -0.09394235163927078, + -0.05864229053258896, + 0.029621902853250504, + 0.02542717754840851, + -0.021306708455085754, + 0.011335521005094051, + 0.029748963192105293, + -0.054022710770368576, + 0.012641808949410915, + -0.007589598651975393, + -0.07627584040164948, + -0.09345848858356476, + -0.02740807645022869, + 0.08633405715227127, + -0.011815820820629597, + 0.13289465010166168, + -0.041667528450489044, + 0.03364245966076851, + 0.03639034926891327, + 0.014705130830407143, + -0.06521858274936676, + -0.015894394367933273, + 0.029275085777044296, + 0.023788748309016228, + 0.044665202498435974, + -0.050314780324697495, + 0.051399968564510345, + 0.07391815632581711, + 0.009886529296636581, + -0.04736478999257088, + 0.08357299119234085, + 0.08105341345071793, + 0.01940610632300377, + 0.02293688990175724, + -0.020151248201727867, + -0.05009307339787483, + 0.08504840731620789, + -0.00925934873521328, + -0.02297309786081314, + 0.022641604766249657, + -0.08149904012680054, + -0.002048654481768608, + -0.0513085275888443, + -0.033287785947322845, + -0.008733517490327358, + 0.05771564692258835, + -0.022789381444454193, + -0.021596843376755714, + -0.011425744742155075, + -1.7453839262770998e-08, + -0.040509000420570374, + -0.04989802464842796, + -0.034672364592552185, + -0.017661282792687416, + 0.010602973401546478, + -0.052184008061885834, + -0.029741594567894936, + -0.030566031113266945, + -0.08218315988779068, + -0.001077850698493421, + 0.012471452355384827, + 0.015399684198200703, + 0.011927545070648193, + 0.027743838727474213, + 0.04738486930727959, + 0.08107803761959076, + -0.06402405351400375, + 0.050388265401124954, + -0.06624045968055725, + 0.021070245653390884, + -0.049749214202165604, + -0.04032078757882118, + 0.038581740111112595, + -0.017160391435027122, + 0.04640094190835953, + -0.006773592904210091, + -0.06583644449710846, + 0.006579544860869646, + 0.0358966588973999, + 0.10027728974819183, + 0.07585301250219345, + 0.04043538495898247, + -0.05164903402328491, + 0.02097286470234394, + -0.08203231543302536, + 0.019216829910874367, + -0.05287385731935501, + -0.04603522643446922, + 0.025441143661737442, + 0.055382128804922104, + -0.09518759697675705, + -0.10483068972826004, + -0.02647862769663334, + -0.009332575835287571, + 0.03896283358335495, + 0.015929991379380226, + -0.019324062392115593, + -0.006712428759783506, + -0.04768810793757439, + -0.08401158452033997, + -0.033117737621068954, + -0.05854488164186478, + 0.03228870779275894, + 0.09298790991306305, + -0.014652001671493053, + -0.06749790906906128, + 0.07414484769105911, + 0.08861250430345535, + -0.0017618462443351746, + 0.0683574378490448, + 0.12096650898456573, + 0.05758567899465561, + 0.03269370645284653, + -0.04334011301398277 + ], + "stop-bold||music,audio": [ + 0.05338193476200104, + -0.01597803644835949, + -0.009065910242497921, + -0.013085547834634781, + 0.07779492437839508, + 0.04183025285601616, + 0.030731409788131714, + -0.12037434428930283, + -0.006956946104764938, + -0.020364630967378616, + -0.04420586675405502, + 0.012938195839524269, + -0.01603006199002266, + -0.08794007450342178, + -0.04871184006333351, + 0.04082939401268959, + 0.034095000475645065, + 0.08400943130254745, + 0.028581928461790085, + -0.030556948855519295, + 0.007040433585643768, + 0.09967536479234695, + 0.03815261647105217, + 0.04336075112223625, + -0.01878485083580017, + 0.03293287754058838, + 0.011744844727218151, + 0.013596965931355953, + 0.04197729006409645, + -0.08117178082466125, + 0.07484070956707001, + -0.02536207251250744, + 0.13462291657924652, + -0.027608368545770645, + -0.028866460546851158, + -0.057443972676992416, + -0.08910755068063736, + -0.01859855093061924, + -0.058030981570482254, + 0.015067975968122482, + 0.04345756024122238, + 0.007548264227807522, + 0.0030691910069435835, + -0.08810748904943466, + -0.11613556742668152, + -0.09213637560606003, + -0.1021762415766716, + -0.0895630493760109, + 0.04976636543869972, + 0.024488145485520363, + 0.00647000502794981, + -0.051846206188201904, + -0.05248474329710007, + 0.057446520775556564, + 0.003136126324534416, + -0.016486385837197304, + 0.04084068909287453, + 0.061528462916612625, + 0.10060174763202667, + 0.011247348971664906, + 0.0006504394696094096, + -0.0042311581782996655, + 0.007805909030139446, + -0.03548206016421318, + 0.05515444278717041, + 0.03585522994399071, + -0.0048055523075163364, + 0.03642293065786362, + -0.03344496339559555, + 0.085347481071949, + 0.012577114626765251, + -0.015576289035379887, + 0.02336663194000721, + -0.00662298733368516, + 0.005177533254027367, + 0.013307463377714157, + 0.020961785688996315, + -0.020685790106654167, + -0.08004945516586304, + -0.0215572789311409, + -0.029192494228482246, + -0.10432524979114532, + -0.015413344837725163, + -0.07911588996648788, + 0.0425148531794548, + 0.06471619009971619, + -0.05120576173067093, + -0.10455778986215591, + -0.043706342577934265, + -0.024911895394325256, + -0.16993802785873413, + -0.03176607936620712, + 0.03394686058163643, + 0.03742377087473869, + -0.02018032781779766, + 0.0019021958578377962, + 0.04087284579873085, + -0.040802232921123505, + 0.02892654575407505, + 0.035120632499456406, + 0.04436277225613594, + 0.010810992680490017, + 0.005559174343943596, + -0.006168166175484657, + -0.03744211047887802, + -0.1198243573307991, + 0.0008585858158767223, + 0.07892050594091415, + -0.008162175305187702, + -0.030615879222750664, + 0.03476245328783989, + -0.06810946017503738, + -0.016915693879127502, + -0.021910741925239563, + 0.012316606938838959, + 0.06676702201366425, + 0.029436472803354263, + 0.03986721485853195, + 0.0948370024561882, + 0.03379654511809349, + 0.06670491397380829, + -0.049528803676366806, + -0.10266121476888657, + -0.04215244576334953, + 0.043677449226379395, + -0.012834425084292889, + 0.03763521835207939, + -1.7024541419585184e-33, + 0.03813962638378143, + -0.03261018171906471, + -0.046989280730485916, + 0.11265082657337189, + 0.08126656711101532, + -0.02696223370730877, + -0.09364967793226242, + 0.020182326436042786, + -0.033747598528862, + 0.08707189559936523, + 0.10493738204240799, + 0.028738807886838913, + -0.022802148014307022, + -0.03147253021597862, + 0.038003355264663696, + -0.058311667293310165, + 0.006246824283152819, + -0.03280097618699074, + -0.08735311031341553, + -0.020765414461493492, + -0.055185627192258835, + -0.011793562211096287, + -0.019128229469060898, + 0.027447296306490898, + 0.030773982405662537, + 0.03757214546203613, + 0.02250765450298786, + -0.061194855719804764, + 0.025788085535168648, + 0.02876080386340618, + -0.02539900317788124, + -0.003747480222955346, + 0.05038273707032204, + 0.033339545130729675, + 0.010510419495403767, + 0.011778770014643669, + -0.08419398218393326, + 0.06705419719219208, + 0.035055357962846756, + -0.06879922747612, + -0.11031242460012436, + -0.045019011944532394, + -0.08174955099821091, + -0.01940915919840336, + 0.003775083925575018, + 0.015276816673576832, + -0.006608756259083748, + -0.01110973209142685, + 0.03446058928966522, + 0.03011171519756317, + 0.04029726982116699, + 0.07063315063714981, + -0.008156570605933666, + 0.04672154039144516, + 0.014764257706701756, + -0.029368802905082703, + 0.019461363554000854, + 0.12875765562057495, + 0.02999926544725895, + 0.0011813861783593893, + 0.06849097460508347, + 0.03144900128245354, + 0.10334386676549911, + -0.05635799467563629, + -0.052503496408462524, + 0.06936734914779663, + 0.034878700971603394, + 0.023084085434675217, + 0.04907335713505745, + -0.013733979314565659, + -0.04327140003442764, + -0.004813345614820719, + 0.04504295065999031, + 0.040963511914014816, + -0.09984493255615234, + 0.02984735555946827, + 0.003443967318162322, + -0.039901770651340485, + 0.09544852375984192, + -0.04414048790931702, + -0.03288179636001587, + 0.06320006400346756, + -0.035674817860126495, + 0.043004360049963, + 0.05032959580421448, + 0.0013084032107144594, + -0.026476263999938965, + -0.11339958012104034, + -0.034909993410110474, + -0.010767223313450813, + -0.10184108465909958, + 0.06322379410266876, + -0.056389398872852325, + -0.05519945174455643, + -0.08679476380348206, + -6.038140250527247e-34, + 0.10387162864208221, + 0.05728344991803169, + 0.002807981800287962, + -0.06875801086425781, + -0.04133681580424309, + 0.0336860790848732, + 0.07404736429452896, + 0.0747206062078476, + 0.012921084649860859, + 0.02488643303513527, + 0.1185813918709755, + -0.06674038618803024, + -0.04725387319922447, + -0.024762671440839767, + -0.0185537151992321, + -0.018679220229387283, + 0.017593828961253166, + 0.03393752872943878, + 0.009146985597908497, + 0.0184108205139637, + -0.08760026842355728, + -0.10197696089744568, + -0.012407916598021984, + 0.05474713444709778, + -0.07675407826900482, + -0.020288560539484024, + -0.01695892959833145, + 0.05618046224117279, + -0.02258998341858387, + -0.03848879784345627, + 0.03130948171019554, + 0.008235780522227287, + -0.01380742434412241, + -0.08340219408273697, + -0.013220654800534248, + 0.02732277102768421, + 0.009880059398710728, + 0.061519891023635864, + 0.006188522092998028, + 0.01452550943940878, + 0.008951717987656593, + 0.05544168874621391, + 0.024960190057754517, + 0.00017524007125757635, + -0.022548258304595947, + -0.03874851018190384, + 0.004899989347904921, + 0.01012840773910284, + -0.036401230841875076, + 0.05343916267156601, + 0.09053797274827957, + -0.03792129456996918, + 0.07086188346147537, + -0.03794353827834129, + -0.098623126745224, + -0.04598275572061539, + -0.030166931450366974, + 0.005265708547085524, + -0.04876044765114784, + 0.038154661655426025, + 0.040673524141311646, + 0.05367676913738251, + -0.04322309419512749, + -0.0535702183842659, + 0.062105417251586914, + 0.02624674141407013, + 0.05432400107383728, + 0.005301375407725573, + 0.04233196750283241, + 0.014472209848463535, + 0.05507184937596321, + 0.0009904633043333888, + -0.006619693711400032, + 0.09383822232484818, + -0.06553566455841064, + -0.015689531341195107, + -0.032446399331092834, + -0.0686740055680275, + -0.016107354313135147, + 0.013248305767774582, + 0.011410953477025032, + 0.010953965596854687, + 0.020845109596848488, + 0.00011297933087917045, + -0.005859385710209608, + 0.0862397700548172, + -0.015329636633396149, + 0.0016109757125377655, + -0.033746324479579926, + 0.02929958701133728, + -0.032304827123880386, + 0.06565704196691513, + 0.036427754908800125, + -0.022432731464505196, + -0.06605514883995056, + -1.4892089339468839e-08, + -0.05806946009397507, + -0.05436069890856743, + -0.00696336617693305, + -0.03888005018234253, + -0.011667437851428986, + -0.01633051596581936, + -0.03892868012189865, + -0.07425322383642197, + -0.03076220490038395, + -0.04120374843478203, + 0.03147992119193077, + 0.0218295119702816, + 0.04365716129541397, + 0.031448300927877426, + -0.05659462511539459, + 0.018889445811510086, + -0.02371310256421566, + 0.10389924794435501, + 0.001860093674622476, + -0.06352988630533218, + -0.015290478244423866, + 0.0699462816119194, + 0.005038050469011068, + -0.05615146458148956, + 0.039397306740283966, + 0.0058707501739263535, + 0.008637851104140282, + 0.010162485763430595, + 0.0907750353217125, + 0.003329907078295946, + 0.016259441152215004, + 0.023190414533019066, + -0.04121258109807968, + -0.02724907174706459, + -0.07862085103988647, + -0.013194638304412365, + -0.014512094669044018, + -0.03018570877611637, + -0.047658227384090424, + 0.06622464209794998, + 0.01105117704719305, + 0.039038535207509995, + -0.018512114882469177, + -0.023787932470440865, + -0.09283892810344696, + -0.002582470653578639, + 0.09382222592830658, + 0.008012714795768261, + -0.04838003218173981, + 0.014697689563035965, + -0.04350775480270386, + 0.01682729460299015, + -0.02573627233505249, + 0.0655154436826706, + 0.01684698462486267, + -0.07427766174077988, + -0.010763143189251423, + 0.14443133771419525, + -0.09580350667238235, + -0.0018842671997845173, + 0.0681031197309494, + -0.008023647591471672, + 0.04591292142868042, + 0.04382774606347084 + ], + "stop-circle-bold||music,audio,round": [ + 0.048613205552101135, + -0.009062309749424458, + -0.0639612153172493, + -0.020200567319989204, + 0.07883136719465256, + 0.009628991596400738, + 0.05438404530286789, + -0.08658486604690552, + 0.05174563080072403, + -0.0739218145608902, + -0.04874533787369728, + 0.02095750905573368, + -0.00371828256174922, + -0.07708565890789032, + -0.007109603378921747, + 0.017228132113814354, + 0.0016664545983076096, + 0.05584331601858139, + 0.049672629684209824, + -0.049842290580272675, + -0.02366608940064907, + 0.04990924894809723, + 0.05266555771231651, + 0.08932923525571823, + -0.06219419091939926, + 0.0811215415596962, + 0.02427402138710022, + 0.027368688955903053, + 0.0239118542522192, + -0.09656675904989243, + 0.00030092548695392907, + 0.035561591386795044, + 0.11455722153186798, + -0.05339796096086502, + -0.0454447865486145, + -0.057031501084566116, + -0.07329957187175751, + 0.04374922811985016, + -0.02676016464829445, + -0.017974326387047768, + 0.05887053161859512, + 0.00580433988943696, + 0.06551820784807205, + -0.080082006752491, + -0.11120326071977615, + -0.04585696756839752, + -0.15186046063899994, + -0.05538628250360489, + 0.038737863302230835, + 0.04652350768446922, + -0.002106274012476206, + -0.09447240829467773, + -0.06698209047317505, + 0.032892778515815735, + -0.002661528531461954, + -0.012897733598947525, + 0.04690022021532059, + 0.03034243732690811, + 0.12908324599266052, + -0.006636742036789656, + 0.033501215279102325, + -0.039613381028175354, + 0.0357392244040966, + -0.01074480265378952, + 0.01132151111960411, + -0.006288931705057621, + -0.033915579319000244, + -0.04245864972472191, + -0.02162439376115799, + 0.025797098875045776, + 0.01774575375020504, + 0.003344738157466054, + -0.01684213988482952, + -0.019175458699464798, + 0.04930734261870384, + 0.009577181190252304, + -0.032132502645254135, + 0.018891172483563423, + -0.11817865073680878, + -0.007350762840360403, + -0.030510008335113525, + -0.07438183575868607, + 0.004724755417555571, + -0.0244057048112154, + 0.025222282856702805, + 0.05993324890732765, + 0.0004166978469584137, + -0.10649769753217697, + -0.06968748569488525, + -0.032629553228616714, + -0.1636933833360672, + 0.015225324779748917, + -0.040669236332178116, + -0.0010988027788698673, + -0.04365171492099762, + -0.0020828512497246265, + 0.013313199393451214, + -0.08036105334758759, + -0.031026415526866913, + 0.05632922798395157, + 0.07675061374902725, + -0.02039349265396595, + 0.04491322860121727, + -0.026728035882115364, + -0.035810910165309906, + -0.08853410184383392, + 0.0018010763451457024, + 0.06642518937587738, + -0.004892861004918814, + -0.007295521907508373, + 0.024134183302521706, + -0.06202911213040352, + -0.011832057498395443, + -0.00232679839245975, + 0.009308258071541786, + 0.051714230328798294, + -0.009402344934642315, + 0.024738537147641182, + 0.10183552652597427, + 0.0409032367169857, + 0.08603627979755402, + -0.007516047451645136, + -0.12879636883735657, + -0.04399440810084343, + 0.004095040261745453, + 0.014494279399514198, + 0.02174290455877781, + -2.2864373477241307e-33, + 0.005502895452082157, + 0.01765914261341095, + -0.03224840760231018, + 0.06337986886501312, + 0.07215696573257446, + -0.07038335502147675, + -0.07495592534542084, + 0.008871007710695267, + 0.03141215443611145, + 0.06511647254228592, + 0.07438666373491287, + 0.0066412971355021, + -0.01825195550918579, + -0.044742800295352936, + 0.07239042222499847, + -0.07808128744363785, + 0.04828857630491257, + -0.04160438850522041, + -0.11914780735969543, + -0.048754140734672546, + -0.07000831514596939, + 0.0029088102746754885, + -0.030323520302772522, + 0.01909511536359787, + 0.01472768746316433, + 0.07598604261875153, + 0.014843614771962166, + -0.055232513695955276, + 0.014336301013827324, + 0.03727194666862488, + -0.0033653585705906153, + 0.0035643416922539473, + 0.061664242297410965, + 0.041202887892723083, + 0.02804148755967617, + 0.03197992220520973, + -0.07683523744344711, + 0.050315167754888535, + 0.016481727361679077, + -0.06075591593980789, + -0.0965556651353836, + -0.052728939801454544, + -0.08859079331159592, + 0.01221349649131298, + -0.0013592952163890004, + 0.054625362157821655, + 0.008202388882637024, + 0.006019724998623133, + 0.015943987295031548, + 0.03112822026014328, + -0.003254735842347145, + 0.07167825847864151, + -0.03443200886249542, + 0.010515286587178707, + 0.03378898277878761, + -0.05159343034029007, + 0.04950130358338356, + 0.10385686904191971, + -0.022054586559534073, + -0.02803039364516735, + 0.08952006697654724, + 0.04844284802675247, + 0.06069288030266762, + -0.07787206023931503, + -0.05501710623502731, + 0.05444062501192093, + -0.01199190691113472, + -0.019640015438199043, + 0.06347166746854782, + -0.02895941399037838, + -0.015445869415998459, + 0.01904955320060253, + 0.07625295966863632, + 0.09285927563905716, + -0.08522214740514755, + 0.017534760758280754, + -0.008806266821920872, + -0.03379727154970169, + 0.09538593143224716, + -0.04349593445658684, + -0.03811640664935112, + 0.057158686220645905, + -0.03401154652237892, + -0.006308132782578468, + 0.05947204306721687, + -0.028897130861878395, + 0.02402712032198906, + -0.09673984348773956, + -0.044523727148771286, + -0.023735733702778816, + -0.11597122251987457, + 0.08959928154945374, + -0.013359961099922657, + 0.01581326685845852, + -0.12209640443325043, + -7.829880053134056e-35, + 0.06372201442718506, + 0.06364838778972626, + 0.03189833462238312, + -0.019182726740837097, + -0.006983963772654533, + 0.05085546523332596, + 0.045934949070215225, + 0.05463922768831253, + 0.035958752036094666, + 0.06008971109986305, + 0.06395334750413895, + -0.057366061955690384, + -0.038464199751615524, + -0.021932927891612053, + 0.02327612042427063, + -0.004589122254401445, + 0.04834840074181557, + 0.020532485097646713, + 0.0005186469061300159, + 0.029033537954092026, + -0.07728518545627594, + -0.08757320046424866, + -0.019867876544594765, + 0.05200636386871338, + -0.09675005078315735, + 0.00917320977896452, + 0.021049201488494873, + -0.006841858848929405, + -0.01806573197245598, + 0.009870562702417374, + -0.039703354239463806, + -0.041092876344919205, + 0.02108919806778431, + -0.05914895236492157, + 0.004459388088434935, + -0.02503124810755253, + 0.032667212188243866, + -0.00338857457973063, + -0.05185970664024353, + -0.0350208654999733, + -0.040455613285303116, + 0.011272475123405457, + 0.025897067040205002, + -0.006279007997363806, + -0.02281976491212845, + -0.08151824027299881, + 0.057736143469810486, + 0.07751938700675964, + -0.07460489124059677, + 0.042695365846157074, + 0.0781308263540268, + -0.011501874774694443, + 0.09211911261081696, + -0.017823273316025734, + -0.07943490892648697, + 0.005574846640229225, + -0.04868985712528229, + 0.025064023211598396, + 0.0024574657436460257, + 0.021143222227692604, + 0.0009714093757793307, + 0.03751711919903755, + -0.046400487422943115, + -0.002444429323077202, + 0.06931888312101364, + 0.05025142431259155, + 0.04895957559347153, + -0.004435381386429071, + -0.007863854058086872, + 0.07011133432388306, + 0.017677713185548782, + 0.06735195219516754, + -0.006652770098298788, + 0.0475032776594162, + -0.04929929971694946, + -0.001049306709319353, + 0.004166680388152599, + -0.07496001571416855, + -0.019543539732694626, + 0.0210307314991951, + -0.012013404630124569, + 0.026691429316997528, + 0.01005882304161787, + -0.024730151519179344, + -0.0005808923742733896, + 0.055882249027490616, + 0.004305636044591665, + 0.011106615886092186, + -0.04581320658326149, + 0.05565601959824562, + -0.003595520043745637, + 0.07127577811479568, + 0.020936228334903717, + 0.0036560611333698034, + 0.0032116074580699205, + -1.6173899552995863e-08, + -0.05946582555770874, + -0.040047258138656616, + -0.014781475067138672, + -0.013048524968326092, + 0.043205153197050095, + -0.02610275149345398, + -0.010279970243573189, + -0.0981970950961113, + -0.046046704053878784, + -0.05185393616557121, + 0.01761925220489502, + 0.038676150143146515, + 0.02431122213602066, + 0.02897472307085991, + -0.06280868500471115, + 0.03822692483663559, + -0.04228303208947182, + 0.12960872054100037, + 0.005346642807126045, + -0.0285161342471838, + -0.011404699645936489, + 0.030214868485927582, + 0.04085293784737587, + -0.10558094829320908, + 0.013034529983997345, + 0.016010522842407227, + -0.011600908823311329, + 0.04238301143050194, + 0.04439343512058258, + -0.02577364072203636, + -0.017005501314997673, + 0.03272714838385582, + -0.0402548611164093, + -0.013085681945085526, + -0.05546101927757263, + -0.07823607325553894, + -0.03787928819656372, + 0.0072174957022070885, + -0.031082404777407646, + 0.053453970700502396, + 0.016627777367830276, + 0.06454633921384811, + 0.0012312822509557009, + -0.007993477396667004, + -0.05827680230140686, + 0.01970401220023632, + 0.09846049547195435, + -0.003500529797747731, + -0.08171772956848145, + -0.002505379030480981, + -0.06881395727396011, + 0.005570307374000549, + 0.026022175326943398, + 0.06985387206077576, + 0.027649477124214172, + -0.05094049125909805, + 0.02309495396912098, + 0.137745663523674, + -0.13234952092170715, + 0.022161344066262245, + 0.012790719978511333, + 0.04814865067601204, + 0.0531499907374382, + 0.04109976440668106 + ], + "storefront-bold||shops,shopping,markets,stores,buildings,places,locations": [ + 0.1224035993218422, + -0.05977623164653778, + -0.07987448573112488, + 0.013315939344465733, + 0.05068386346101761, + 0.02062288485467434, + -0.013692326843738556, + -0.040596768260002136, + -0.0516170859336853, + 0.003913038410246372, + 0.08517248928546906, + 0.03203572705388069, + 0.020843081176280975, + -0.02988194301724434, + 0.05996745452284813, + -0.03778247535228729, + 0.08600859344005585, + 0.03612401336431503, + 0.0679350420832634, + -0.003773851552978158, + -0.0039054781664162874, + 0.0020539488177746534, + 0.026791442185640335, + 0.04444470256567001, + -0.008739549666643143, + 0.027964316308498383, + -0.04465995356440544, + 0.02605121210217476, + 0.021722547709941864, + -0.059592653065919876, + 0.01020853966474533, + 0.03873120993375778, + 0.13250310719013214, + 0.03344760835170746, + 0.0449647530913353, + 0.006833317223936319, + 0.01110539399087429, + -0.02660425193607807, + 0.022745884954929352, + 0.02261117659509182, + 0.011458070017397404, + -0.027917832136154175, + -0.06451614201068878, + 0.021835194900631905, + 0.019868940114974976, + -0.014521507546305656, + 0.01307209674268961, + -0.003050668863579631, + 0.0342666432261467, + 0.005250648595392704, + 0.04845460131764412, + -0.05797388032078743, + -0.11965306848287582, + -0.02944086492061615, + -0.05294386297464371, + 0.034912001341581345, + -0.039240606129169464, + -0.051236316561698914, + 0.030772335827350616, + 0.018850203603506088, + 0.062254369258880615, + -0.04175160452723503, + -0.028861718252301216, + 0.05999656766653061, + 0.06181330978870392, + -0.017203787341713905, + -0.09834074974060059, + 0.06942274421453476, + -0.06629045307636261, + -0.07418373227119446, + 0.015596555545926094, + -0.04487432911992073, + 0.02514297515153885, + -0.022614775225520134, + -0.020525122061371803, + -0.005345274694263935, + 0.045778244733810425, + -0.0338519886136055, + -0.04377947747707367, + -0.04581566900014877, + -0.020338280126452446, + -0.032586611807346344, + -0.009887060150504112, + 0.011995051056146622, + -0.03638890013098717, + -0.022790512070059776, + -0.01016642153263092, + -0.0827394500374794, + 0.041894976049661636, + -0.05912802740931511, + -0.06956718862056732, + -0.05078734830021858, + -0.06385350227355957, + 0.0008555303793400526, + -0.09602519869804382, + -0.018446825444698334, + 0.01512131281197071, + 0.0007241800776682794, + 0.025403911247849464, + 0.013604994863271713, + 0.04611453413963318, + 0.009403083473443985, + 0.13646627962589264, + 0.026699528098106384, + -0.10231191664934158, + -0.03388034179806709, + -0.06651684641838074, + 0.08005306124687195, + -0.02407446689903736, + 0.003946327604353428, + -0.07674221694469452, + -0.042335670441389084, + 0.017147989943623543, + -0.06206338480114937, + -0.02528030052781105, + -0.021062443032860756, + -0.019531374797225, + -0.08143585920333862, + 0.14838483929634094, + -0.02885773405432701, + 0.013563062995672226, + -0.012922435998916626, + 0.06828466802835464, + -0.0617472380399704, + -0.07906747609376907, + 0.031520213931798935, + 0.014031896367669106, + -2.344787050589026e-33, + -0.00804574228823185, + 0.050413116812705994, + -0.025988386943936348, + 0.030550017952919006, + 0.010551901534199715, + -0.061828747391700745, + 0.001705058733932674, + -0.08632134646177292, + -0.012287045828998089, + 0.12404182553291321, + 0.11388999968767166, + 0.0571509525179863, + -0.06289159506559372, + 0.08855731785297394, + 0.08837785571813583, + 0.033986371010541916, + 0.007565865758806467, + -0.011130540631711483, + -0.057544391602277756, + -0.030735258013010025, + -0.009570242837071419, + 0.0633280947804451, + -0.04342440515756607, + -0.020819557830691338, + -0.02029040828347206, + -0.012697676196694374, + 0.02596033178269863, + 0.042318180203437805, + -0.030775513499975204, + 0.04281172528862953, + 0.07651596516370773, + 0.030976971611380577, + 0.030745642259716988, + 0.029139647260308266, + -0.03886057436466217, + 0.007305988576263189, + -0.036776043474674225, + -0.043565936386585236, + 0.031183380633592606, + -0.016046414151787758, + -0.09121492505073547, + 0.009375648573040962, + -0.005264440551400185, + 0.09642260521650314, + 0.07225657254457474, + 0.07136760652065277, + -0.0419795922935009, + -0.06367265433073044, + 0.06440608948469162, + 0.057051707059144974, + -0.07280737161636353, + -0.02924780361354351, + -0.08642405271530151, + 0.05450787767767906, + 0.007301763631403446, + -0.0180093701928854, + -0.03968643769621849, + -0.0132452929392457, + 0.04172196984291077, + 0.005424898117780685, + 0.011132861487567425, + 0.04976183548569679, + -0.015140118077397346, + -0.007105483207851648, + -0.046580635011196136, + -0.022173050791025162, + 0.006107251159846783, + -0.02544427663087845, + 0.04054401069879532, + 0.06126867234706879, + -0.010147728957235813, + 0.07150156050920486, + 0.1285654604434967, + 0.06768686324357986, + 0.014758557081222534, + 0.012606837786734104, + -0.04907986894249916, + 0.1317470818758011, + -0.016185887157917023, + -0.07892193645238876, + -0.08159440755844116, + 0.023707110434770584, + -0.04539143666625023, + 0.15529264509677887, + -0.004619651939719915, + 0.0022504949010908604, + 0.060207903385162354, + -0.09650745242834091, + -0.0491003692150116, + -0.008436039090156555, + -0.10825612396001816, + 0.03882082179188728, + -0.020105676725506783, + -0.049373142421245575, + -0.11896023154258728, + -1.0715861603393668e-33, + 0.06111446022987366, + -0.048705872148275375, + -0.043283917009830475, + 0.01865995116531849, + -0.06576461344957352, + 0.06498003751039505, + -0.04022016376256943, + -0.010698783211410046, + 0.03183351829648018, + 0.011863773688673973, + -0.11409514397382736, + 0.0457005575299263, + 0.021045982837677002, + 0.0015673758462071419, + -0.02440537139773369, + 0.006247235462069511, + 0.08702147006988525, + 0.014000496827065945, + -0.04756850004196167, + 0.013950175605714321, + -0.008445554412901402, + -0.0407496802508831, + -0.13561272621154785, + 0.04607512056827545, + -0.018137050792574883, + -0.023145804181694984, + -0.04759404808282852, + -0.06303198635578156, + -0.08213489502668381, + -0.047612741589546204, + -0.1057896763086319, + -0.06176562234759331, + 0.07026441395282745, + 0.06349632143974304, + -0.1056942269206047, + 0.00016628869343549013, + 0.011932749301195145, + -0.03738820180296898, + -0.012776277959346771, + 0.02508561499416828, + 0.02705162763595581, + -0.014918245375156403, + 0.03298246115446091, + 0.07852824032306671, + -0.00999542884528637, + -0.012100235559046268, + -0.1344226747751236, + -0.07647674530744553, + 0.05609742924571037, + 0.008616983890533447, + -0.02733619138598442, + 0.058925241231918335, + -0.017316391691565514, + -0.07989958673715591, + -0.02862236462533474, + 0.018062356859445572, + 0.024556729942560196, + 0.04360853508114815, + -0.059781480580568314, + 0.07381736487150192, + 0.04650883376598358, + 0.06722250580787659, + -0.047025296837091446, + 0.020368266850709915, + 0.04997529089450836, + -0.07835543900728226, + -0.008071307092905045, + -0.04040760174393654, + 0.017976494506001472, + 0.01228727214038372, + 0.02912001498043537, + 0.024820484220981598, + -0.0024651354178786278, + 0.002370421774685383, + -0.07060897350311279, + -0.02177543379366398, + 0.09903374314308167, + 0.04472481459379196, + -0.00996248610317707, + 0.03664594516158104, + 0.00493668531998992, + -0.03430506959557533, + -0.003983561880886555, + 0.07177634537220001, + 0.0019116208422929049, + 0.051274728029966354, + -0.06566796451807022, + 0.0239039845764637, + 0.013732765801250935, + -0.04642735794186592, + -0.049894679337739944, + 0.04853460192680359, + -0.07377360761165619, + -0.014760106801986694, + -0.046746592968702316, + -2.2223455076186838e-08, + -0.016541630029678345, + 0.028977740556001663, + -0.00028391098021529615, + 0.01760205440223217, + -0.032212842255830765, + -0.01825687848031521, + 0.07430442422628403, + 0.024715933948755264, + -0.023679690435528755, + 0.029581831768155098, + -0.028402037918567657, + 0.03208703175187111, + -0.08072219789028168, + -0.013405293226242065, + -0.00915528740733862, + 0.042732007801532745, + -0.03979893773794174, + 0.04006260260939598, + -0.002696495270356536, + 0.0036834622733294964, + -0.008129567839205265, + 0.09840057045221329, + 0.015119034796953201, + -0.012218846008181572, + 0.009677372872829437, + 0.028632009401917458, + -0.032527416944503784, + 0.022311827167868614, + 0.03315792605280876, + 0.025269990786910057, + 0.05069151148200035, + 0.04252060502767563, + 0.01539686694741249, + 0.018001768738031387, + -0.03271206468343735, + -0.0315256305038929, + 0.0024081063456833363, + 0.02412642352283001, + -0.056068990379571915, + 0.01980845257639885, + -0.03900907188653946, + -0.12943385541439056, + -0.015900466591119766, + -0.007014188915491104, + -0.004362886771559715, + 0.1014748364686966, + 0.02423134446144104, + 0.015824811533093452, + 0.019467482343316078, + -0.05793512985110283, + -0.10853685438632965, + -0.025319373235106468, + 0.007978040724992752, + -0.01523655652999878, + -0.018036697059869766, + -0.045775510370731354, + -0.03277997300028801, + -1.6202959159272723e-05, + 0.0640271008014679, + 0.002477544592693448, + 0.1010095477104187, + -0.014558311551809311, + -0.017650434747338295, + 0.08103172481060028 + ], + "strategy-bold||sports,strategem,plan,tic-tac-toe": [ + 0.0054957508109509945, + 0.014326303265988827, + -0.07360008358955383, + -0.045797355473041534, + 0.02598666027188301, + 0.07903314381837845, + 0.004398717544972897, + -0.007892810739576817, + 0.006447250489145517, + 0.07068202644586563, + -0.0348571240901947, + 0.016828065738081932, + 0.01309927273541689, + 0.0063326116651296616, + 0.031472668051719666, + -0.0010967791313305497, + -0.0007626615697517991, + -0.004225302953273058, + 0.019382275640964508, + -0.02226627618074417, + 0.033901017159223557, + -0.05707421526312828, + 0.08004270493984222, + -0.037864964455366135, + -0.004679950885474682, + 0.015642613172531128, + 0.03156767785549164, + 0.04000289738178253, + -0.0431579127907753, + -0.1144227609038353, + 0.027546318247914314, + 0.02171105146408081, + 0.07352664321660995, + 0.03501483052968979, + -0.04765913262963295, + 0.0302700437605381, + -0.12119700014591217, + -0.06687859445810318, + 0.019078928977251053, + 0.09939169138669968, + -0.026545492932200432, + -0.06846839934587479, + -0.04169338941574097, + 0.01797957718372345, + -0.010467427782714367, + 0.040651895105838776, + -0.03719206899404526, + 0.012804776430130005, + -0.002367827808484435, + 0.011758278124034405, + -0.06619254499673843, + -0.028070438653230667, + -0.06895562261343002, + -0.067847840487957, + 0.0992446169257164, + 0.04400161653757095, + -0.07365153729915619, + 0.009736073203384876, + 0.04153323918581009, + -0.06973697245121002, + 0.0426042266190052, + -0.029296886175870895, + -0.0436297245323658, + 0.002335130237042904, + -0.03725423663854599, + -0.03886440396308899, + -0.02044236846268177, + 0.09610062837600708, + -0.03882366418838501, + 0.04490333050489426, + 0.08549173921346664, + -0.04594285041093826, + -0.0005826533306390047, + -0.017042361199855804, + -0.01702873595058918, + 0.07828331738710403, + 0.02641386352479458, + -0.009661456570029259, + -0.03078656829893589, + -0.0678824856877327, + -0.06998281925916672, + -0.03862173110246658, + -0.03384513780474663, + 0.056093450635671616, + 0.0541972778737545, + 0.005408435128629208, + -0.05748715251684189, + -0.0642285943031311, + 0.06505019962787628, + 0.004783741198480129, + -0.053276561200618744, + -0.007700086105614901, + 0.03559144586324692, + 0.007089440245181322, + -0.0027436139062047005, + 0.120456263422966, + -0.026306334882974625, + -0.09982934594154358, + -0.03452679514884949, + 0.05143630877137184, + 0.05672583356499672, + 0.08829009532928467, + -0.015258842147886753, + 0.029794851318001747, + 0.0008338319603353739, + -0.060712188482284546, + -0.02046680822968483, + 0.04924759641289711, + 0.028383567929267883, + 0.018410105258226395, + -0.012041831389069557, + 0.007461846340447664, + -0.011800729669630527, + -0.0032823749352246523, + -0.05420541763305664, + -0.019358012825250626, + -0.06485676765441895, + 0.02694266475737095, + 0.04207362234592438, + 0.05272160470485687, + 0.04215264320373535, + -0.0007245959714055061, + 0.010932964272797108, + 0.014716625213623047, + -0.03672167658805847, + 0.028349539265036583, + 0.014405553229153156, + -1.253286546578791e-33, + -0.00349464756436646, + -0.0022816366981714964, + -0.028471313416957855, + 0.09814801067113876, + -0.06186883524060249, + 0.0014941560802981257, + 0.044122256338596344, + -0.06313484907150269, + -0.05064818635582924, + 0.004502713680267334, + -0.04659845307469368, + 0.0933840274810791, + -0.02653607167303562, + 0.07728374004364014, + 0.15431766211986542, + -0.06481574475765228, + -0.06552662700414658, + 0.042636383324861526, + -0.045084498822689056, + -0.016162889078259468, + 0.004970066715031862, + 0.07984708249568939, + 0.0654354840517044, + -0.08995744585990906, + 0.03734726831316948, + 0.014855151996016502, + -0.017854884266853333, + -0.04345133528113365, + -0.10929402709007263, + 0.018682895228266716, + 0.025025302544236183, + -0.03682665526866913, + -0.04806658625602722, + -0.02140270732343197, + 0.01872873865067959, + 0.06255722790956497, + -0.01900627464056015, + -0.017337294295430183, + 0.029565950855612755, + 0.05775045230984688, + -0.07051421701908112, + -0.027207111939787865, + -0.04777846485376358, + 0.0065673827193677425, + 0.006266232114285231, + 0.055526554584503174, + -0.02366635762155056, + -0.014800649136304855, + -0.05263996496796608, + -0.02291128784418106, + 0.02766711264848709, + -0.05473610386252403, + 0.08088632673025131, + -0.11320440471172333, + 0.08686313033103943, + -0.048260703682899475, + 0.0032204415183514357, + 0.011402393691241741, + -0.05388221889734268, + 0.04002738744020462, + 0.05871785804629326, + -0.014382456429302692, + -0.021855639293789864, + 0.04033145308494568, + -0.06467781215906143, + 0.07371662557125092, + -0.08559321612119675, + -0.02824649214744568, + 0.10713193565607071, + -0.07061054557561874, + 0.03762362152338028, + 0.07011706382036209, + 0.05038003623485565, + 0.04011639580130577, + 0.0028613675385713577, + 0.041766207665205, + 0.05188281834125519, + -0.007691658101975918, + -0.0018160383915528655, + -0.0856662467122078, + -0.06562470644712448, + 0.0016603167168796062, + -0.034951236099004745, + 0.0059688217006623745, + 0.019282197579741478, + 0.06857141852378845, + 0.07604171335697174, + -0.05611993372440338, + -0.0024518382269889116, + 0.1149740219116211, + -0.17495614290237427, + -0.0013714575907215476, + -0.042405564337968826, + -0.00386620475910604, + -0.007324417121708393, + -2.905842009453109e-34, + -0.0004952754243277013, + 0.04454844444990158, + -0.027189766988158226, + -0.01333783008158207, + 0.03102460503578186, + -0.00016163189138751477, + 0.01587025821208954, + -0.041314080357551575, + 0.01817362755537033, + 0.023883460089564323, + -0.03643462434411049, + -0.01846029981970787, + -0.056967176496982574, + -0.02093101479113102, + -0.02439860813319683, + -0.08083248883485794, + 0.043107081204652786, + 0.03792028874158859, + -0.04744110628962517, + 0.02048077993094921, + 0.00839807279407978, + -0.004478438291698694, + -0.1098577082157135, + 0.033284369856119156, + 0.024446312338113785, + 0.039739273488521576, + 0.03499963507056236, + -0.06345636397600174, + -0.06276454031467438, + 0.0038869036361575127, + 0.035779085010290146, + -0.12027022987604141, + 0.05771084502339363, + 0.07116424292325974, + -0.04124336689710617, + 0.09211640059947968, + 0.009852704592049122, + -0.042205385863780975, + 0.014972061850130558, + 0.07410679012537003, + 0.0268593430519104, + -0.020700663328170776, + -0.026803098618984222, + 0.016756171360611916, + -0.022830821573734283, + 0.01615244150161743, + -0.03738226369023323, + -0.016819452866911888, + -0.04206540808081627, + 0.04633772000670433, + 0.028213148936629295, + 0.021947741508483887, + -0.10127662122249603, + -0.020085150375962257, + -0.07102351635694504, + -0.056610338389873505, + -0.010081633925437927, + -0.04093003273010254, + -0.05897386372089386, + 0.032259926199913025, + 0.0603269524872303, + 0.1267015039920807, + -0.015327131375670433, + 0.04026029258966446, + 0.03904927894473076, + 0.05828065797686577, + -0.021001417189836502, + -0.02229350246489048, + 0.018425680696964264, + -0.03253734111785889, + -0.05534595251083374, + 0.02543581835925579, + 0.0032126253936439753, + 0.0435752235352993, + -0.0012463191524147987, + -0.004303093533962965, + -0.06620759516954422, + 0.0964631736278534, + 0.04944191873073578, + 0.06493096798658371, + -0.04317547008395195, + 0.0019307371694594622, + -0.007144388277083635, + 0.04380343109369278, + -0.03362596780061722, + 0.14573818445205688, + 0.016987605020403862, + 0.05582547187805176, + 0.009322278201580048, + -0.031747810542583466, + 0.045696090906858444, + -0.009180654771625996, + 0.0785193219780922, + 0.04002755135297775, + 0.010273002088069916, + -2.3718234487546397e-08, + -0.0357976071536541, + 0.01634226180613041, + 0.05308201536536217, + 0.08831183612346649, + 0.012233448214828968, + 0.011834725737571716, + -0.06700576841831207, + -0.10861918330192566, + 0.02945881523191929, + -0.0361107736825943, + 0.022114356979727745, + 0.06695972383022308, + -0.05525197088718414, + -0.015600292012095451, + 0.035734668374061584, + 0.012595701031386852, + -0.04822720214724541, + 0.05886799842119217, + -0.04121675714850426, + 0.01316833682358265, + -0.009037763811647892, + 0.05582374706864357, + -0.07486850023269653, + -0.019428903236985207, + 0.03460904583334923, + -0.03721098601818085, + -0.1172562763094902, + 0.019188113510608673, + 0.04984646290540695, + 0.11786820739507675, + 0.08096931874752045, + 0.005116738379001617, + 0.036551084369421005, + -0.03183313086628914, + -0.04262301325798035, + -0.005204284097999334, + 0.03372121974825859, + 0.007207988761365414, + 0.04575033485889435, + 0.07712265849113464, + -0.10329192876815796, + 0.032539140433073044, + -0.03492484986782074, + 0.007367124315351248, + -0.04351092129945755, + -0.014904762618243694, + -0.03212905675172806, + -0.08162014186382294, + -0.07360950857400894, + -0.16073967516422272, + -0.031095732003450394, + 0.04663398489356041, + 0.017524272203445435, + 0.052217960357666016, + 0.03656889125704765, + 0.044484008103609085, + -0.012632999569177628, + -0.008625777438282967, + -0.10040541738271713, + -0.003567541018128395, + 0.03939160704612732, + -0.02393573336303234, + -0.02103603444993496, + 0.04829825833439827 + ], + "stripe-logo-bold||payment": [ + -0.028968749567866325, + 0.09350192546844482, + -0.05249493196606636, + 0.007169440388679504, + 0.013369159772992134, + -0.03392861783504486, + 0.059999097138643265, + -0.0526423342525959, + 0.049191880971193314, + 0.004254781175404787, + -0.03172174096107483, + 0.022863076999783516, + -0.005626833066344261, + 0.0008061637636274099, + 0.003946512006223202, + -0.011921613477170467, + -0.02839692309498787, + 0.012354527600109577, + 0.08329491317272186, + 0.0039054439403116703, + 0.035925205796957016, + -0.010023918002843857, + 0.010902191512286663, + 0.02928517572581768, + 0.026420654729008675, + 0.008435805328190327, + 0.0731942355632782, + -0.036271702498197556, + 0.01611483283340931, + -0.09602079540491104, + -0.0072520081885159016, + 0.06100493669509888, + 0.1014527752995491, + -0.03414101153612137, + 0.0392330065369606, + 0.001145793474279344, + 0.015452289022505283, + -0.05527866259217262, + 0.013664430938661098, + -0.009662266820669174, + 0.10198864340782166, + -0.04277550429105759, + -0.010399928316473961, + -0.01589369773864746, + -0.004997000563889742, + -0.02063699997961521, + 0.004723598249256611, + 0.0296939630061388, + 0.019397536292672157, + 0.05939140543341637, + 0.0615769699215889, + -0.11265121400356293, + -0.0533759705722332, + -0.04304180666804314, + -0.017606468871235847, + -0.05779317766427994, + 0.0010744010796770453, + 0.01513266284018755, + 0.08274134993553162, + -0.11300866305828094, + 0.02748824656009674, + 0.011340680532157421, + 0.008289356715977192, + 0.05845025181770325, + 0.04424772039055824, + 0.04308956116437912, + 0.006514606531709433, + 0.03252611681818962, + -0.11554641276597977, + 0.030834844335913658, + 0.07295715808868408, + -0.021088512614369392, + -0.017878660932183266, + -0.09775392711162567, + 0.02315494604408741, + 0.015553604811429977, + 0.1006937250494957, + 0.07365582883358002, + -0.06042163446545601, + -0.05950021743774414, + -0.08405403047800064, + -0.07611726969480515, + -0.0009376402013003826, + -0.00100128969643265, + 0.04822718724608421, + 0.04424695670604706, + -0.08685596287250519, + -0.06305442005395889, + 0.05149601027369499, + -0.05154981464147568, + -0.01255178265273571, + 0.12522369623184204, + 0.014616510830819607, + -0.057949624955654144, + -0.07763426005840302, + -0.02113186940550804, + -0.0029904539696872234, + -0.056726787239313126, + -0.067987821996212, + 0.06117795407772064, + 0.03827841207385063, + 0.09026400744915009, + 0.030289504677057266, + 0.014970180578529835, + 0.09463176131248474, + 0.06702928245067596, + 0.06348893791437149, + 0.06398870050907135, + 0.03634412959218025, + 0.041641123592853546, + -0.012194759212434292, + -0.05458651855587959, + 0.02391899935901165, + -0.0017213206738233566, + -0.05455779284238815, + -0.014132136479020119, + -0.07948941737413406, + 0.0034541706554591656, + 0.1039905771613121, + 0.05232061445713043, + 0.029087239876389503, + -0.007381096016615629, + -0.10824143886566162, + -0.08626969903707504, + 0.0073682707734405994, + -0.005966906435787678, + 0.09514473378658295, + -4.249452485840879e-33, + 0.07670602947473526, + 0.052206408232450485, + -0.03859372437000275, + -0.002983235754072666, + 0.06827574223279953, + 0.015638155862689018, + 0.03145481273531914, + 0.012170527130365372, + -0.09648188203573227, + 0.04186177998781204, + 0.07253950089216232, + -0.05384216457605362, + 0.025783754885196686, + 0.0930827334523201, + -0.04430756717920303, + 0.02316731959581375, + -0.03437249734997749, + -0.0736037939786911, + -0.031620774418115616, + 0.08333484083414078, + -0.06277918070554733, + -0.017940178513526917, + -0.047789353877305984, + -0.01478798408061266, + -0.02250582166016102, + -0.01657685823738575, + 0.011725332587957382, + 0.02795504406094551, + 0.014381729066371918, + 0.024360571056604385, + 0.04497935250401497, + -0.008734996430575848, + 0.09516800940036774, + 0.0021499404683709145, + -0.03760089725255966, + 0.028957277536392212, + 0.005135783459991217, + 0.018124409019947052, + 0.034463316202163696, + 0.04963468387722969, + 0.048820652067661285, + -0.02349640056490898, + -0.00394362211227417, + -0.0379236564040184, + -0.04918694496154785, + 0.10828493535518646, + 0.08693912625312805, + -0.12396149337291718, + 0.04539664462208748, + -0.0018403746653348207, + -0.04008711501955986, + -0.033192023634910583, + -0.005139071494340897, + -0.028044307604432106, + -0.019118525087833405, + -0.052558500319719315, + 0.0035058946814388037, + 0.08196811378002167, + -0.028202645480632782, + -0.10508210211992264, + -0.010859829373657703, + -0.07010973244905472, + 0.023474622517824173, + -0.006111838389188051, + -0.046146459877491, + 0.07343833148479462, + -0.025523245334625244, + 0.046424441039562225, + 0.012147840112447739, + -0.02902589738368988, + -0.05093225836753845, + 0.0427938736975193, + 0.09126154333353043, + 0.01170889101922512, + -0.0237779151648283, + -0.002501199021935463, + -0.019249089062213898, + 0.030816063284873962, + 0.0864439383149147, + 0.021546432748436928, + -0.11277312785387039, + -0.0714489296078682, + -0.042801324278116226, + 0.046394649893045425, + 0.014545716345310211, + 0.11666505038738251, + 0.08800867944955826, + -0.087282195687294, + -0.013328882865607738, + -0.0015346353175118566, + -0.050432559102773666, + 0.01406864169985056, + 7.424935029121116e-05, + -0.057890597730875015, + -0.0029230103828012943, + 1.9831959883974667e-33, + 0.026153134182095528, + 0.042374782264232635, + 0.05037806183099747, + 0.004650513641536236, + -0.07364125549793243, + 0.008071825839579105, + 0.0431145504117012, + 0.03711433708667755, + -0.009062792174518108, + 0.018004857003688812, + 0.08913006633520126, + 0.03967425599694252, + -0.1022316962480545, + -0.034231558442115784, + 0.03480495139956474, + -0.00015110567619558424, + 0.01361813023686409, + 0.04148046672344208, + 0.005254427902400494, + -0.0010623085545375943, + -0.06945667415857315, + -0.024863803759217262, + 0.006007048767060041, + 0.026432380080223083, + -0.010860215872526169, + 0.03545325621962547, + 0.025385145097970963, + -0.032309263944625854, + -0.050877563655376434, + 0.020184354856610298, + -0.04105424880981445, + -0.014274604618549347, + -0.004241593647748232, + 0.01775640808045864, + -0.00821278803050518, + 0.03694157302379608, + -0.016942070797085762, + 0.030988294631242752, + 0.029473276808857918, + 0.009954317472875118, + -0.022442026063799858, + -0.06420885026454926, + -0.00293039926327765, + -0.02803122065961361, + -0.019366078078746796, + -0.08754912763834, + -0.015627659857273102, + -0.05974205210804939, + -0.07143454998731613, + 0.08444483578205109, + -0.03206691890954971, + 0.01624901592731476, + 0.023920923471450806, + 0.11932443827390671, + -0.09358024597167969, + 0.0030183892231434584, + 0.05448419600725174, + 0.0702648013830185, + -0.032593775540590286, + 0.03802916035056114, + -0.012213809415698051, + 0.0738721638917923, + -0.010079322382807732, + -0.021164432168006897, + 0.08045816421508789, + 0.02605738304555416, + 0.04910583049058914, + -0.004171489737927914, + 0.07195192575454712, + 0.03814663738012314, + -0.0562330037355423, + 0.0034069891553372145, + 0.005160829983651638, + 0.07052157074213028, + -0.03782550245523453, + -0.07578087598085403, + 0.0340401865541935, + -0.056683700531721115, + -0.03844315931200981, + 0.01164899580180645, + -0.030540043488144875, + -0.002549430588260293, + -0.030191821977496147, + 0.05291437730193138, + -0.034745629876852036, + -0.06457467377185822, + 0.00034003143082372844, + -0.017701972275972366, + -0.010419665835797787, + -0.03828974813222885, + -0.11605516821146011, + 0.0060362499207258224, + 0.006240360904484987, + -0.012658459134399891, + -0.0639258623123169, + -1.3249197294840087e-08, + -0.07089905440807343, + 0.015304740518331528, + -0.0011251887772232294, + 0.01521660853177309, + 0.06618790328502655, + -0.04367292672395706, + -0.06155141443014145, + -0.10983556509017944, + -0.07823310047388077, + -0.02040969394147396, + -0.0033098473213613033, + -0.01754504255950451, + -0.03441353887319565, + -0.0656980648636818, + -0.009774855338037014, + -0.024564487859606743, + -0.03327123820781708, + -0.01552917342633009, + -0.07504995167255402, + -0.023008089512586594, + -0.07010301202535629, + 0.06484878808259964, + -0.007905608043074608, + -0.03239674121141434, + -0.02476961724460125, + 0.002152318600565195, + -0.0219938512891531, + 0.018546992912888527, + 0.03325225040316582, + 0.02433728240430355, + 0.0017180329887196422, + 0.07758095860481262, + 0.08330506831407547, + 0.005378055386245251, + -0.020206617191433907, + -0.07520808279514313, + 0.015108919702470303, + 0.0014020950766280293, + 0.010404961183667183, + 0.09657955914735794, + 0.0067396643571555614, + -0.007340554613620043, + -0.03394601121544838, + -0.03818289563059807, + -0.045144423842430115, + 0.01694623753428459, + 0.022881504148244858, + 0.017133362591266632, + -0.056319985538721085, + -0.05766966566443443, + 0.03106771595776081, + 0.03055693581700325, + -0.035265590995550156, + 0.06226615607738495, + -0.06853364408016205, + -0.15298622846603394, + 0.05355148762464523, + 0.055745963007211685, + 0.01672598347067833, + 0.033894333988428116, + 0.16011449694633484, + -0.08846782892942429, + 0.06217116117477417, + -0.0934983491897583 + ], + "student-bold||pupil,graduate,classroom,teacher,education,school,college,university": [ + 0.04460689052939415, + -0.022893916815519333, + 0.015717750415205956, + 0.02678191103041172, + 0.02101179212331772, + -0.05829738825559616, + 0.018566379323601723, + -0.01522626169025898, + 0.010321984067559242, + 0.09540527313947678, + 0.1100664958357811, + 0.015407556667923927, + 0.006431139539927244, + -0.013542556203901768, + 0.009009010158479214, + 0.026876386255025864, + -0.032571155577898026, + -0.017414579167962074, + 0.024781543761491776, + -0.03096272610127926, + 0.01596069149672985, + 0.01973642222583294, + 0.004288075491786003, + 0.0707356259226799, + 0.1113646849989891, + 0.04104464128613472, + 0.06967034935951233, + -0.03866802528500557, + -0.023569483309984207, + -0.05289100483059883, + -0.05079575255513191, + 0.03532932326197624, + 0.05589810013771057, + 0.020386572927236557, + 0.04412776976823807, + 0.022877544164657593, + 0.0308727715164423, + 0.04394038766622543, + 0.040273599326610565, + 0.0507226437330246, + -0.023531442508101463, + -0.039444178342819214, + -0.007609269116073847, + 0.06018282473087311, + -0.02120828442275524, + -0.11184574663639069, + -0.05964217707514763, + -0.06147247552871704, + -0.013611850328743458, + 0.009817204438149929, + -0.01733904890716076, + -0.1055779755115509, + -0.15235644578933716, + 0.015522356145083904, + 0.011626382358372211, + 0.030465692281723022, + -0.055249106138944626, + -0.031041789799928665, + -0.019828006625175476, + 0.0014132678043097258, + -0.06393351405858994, + -0.024703124538064003, + 0.0292156133800745, + 0.0411132350564003, + 0.013202405534684658, + -0.04016532003879547, + -0.04227488860487938, + -0.023624243214726448, + -0.015180819667875767, + 0.0770825445652008, + 0.05730142816901207, + 0.007580001372843981, + 0.00926967803388834, + 0.006082354113459587, + 0.01853538304567337, + -0.0674678385257721, + 0.030605832114815712, + 0.046721186488866806, + 0.039172664284706116, + -0.009354542940855026, + -0.015781184658408165, + -0.06533479690551758, + -0.05593644082546234, + -0.07222294062376022, + 0.013940098695456982, + -0.04260522499680519, + -0.03110053390264511, + -0.0777718648314476, + -0.059426069259643555, + -0.03659914806485176, + -0.05830489471554756, + -0.029348082840442657, + -0.036903563886880875, + 0.04873264953494072, + 0.002580087399110198, + -0.021667225286364555, + 0.034330934286117554, + -0.06812408566474915, + 0.01636473275721073, + 0.06853962689638138, + -0.11291775852441788, + 0.05834260955452919, + 0.036632150411605835, + 0.03205741196870804, + -0.08683495223522186, + -0.04767146706581116, + 0.0036488256882876158, + -0.09557607769966125, + 0.008620954118669033, + 0.0005867942236363888, + -0.01753738336265087, + -0.08665153384208679, + -0.023309264332056046, + 0.02267395704984665, + 0.04178125783801079, + -0.0639558807015419, + 0.010588991455733776, + -0.008129818364977837, + 0.053239576518535614, + 0.12637709081172943, + 0.03095375932753086, + 0.04439385235309601, + 0.0027099442668259144, + -0.03137943148612976, + -0.09939253330230713, + -0.07351555675268173, + 0.013821180909872055, + -3.0502772503082994e-33, + 0.07422628253698349, + 0.06029945984482765, + -0.04068097844719887, + 0.11841802299022675, + -0.04902252182364464, + -0.02781747095286846, + -0.036495693027973175, + 0.00864950381219387, + -0.05623358488082886, + 0.007141523994505405, + 0.03724450618028641, + 0.02127436362206936, + 0.054446443915367126, + 0.1110767275094986, + 0.08343494683504105, + 0.05355818569660187, + -0.038034968078136444, + 0.013969870284199715, + -0.06420504301786423, + 0.06404213607311249, + 0.003992633428424597, + 0.07617197930812836, + -0.016412803903222084, + -0.09570029377937317, + -0.02944329008460045, + -0.07536188513040543, + -0.0035677761770784855, + -0.011660662479698658, + 0.02030385285615921, + 0.02632349729537964, + 0.10051760077476501, + 0.012189793400466442, + -0.0399150550365448, + -0.008818129077553749, + -0.012805130332708359, + -0.015436206944286823, + 0.041320256888866425, + -0.039759259670972824, + 0.015598515048623085, + -0.00950227864086628, + 0.01727318949997425, + -0.03779185190796852, + 0.0880378782749176, + 0.02315429411828518, + 0.04713355749845505, + 0.12256882339715958, + 0.000592328142374754, + -0.011424393393099308, + 0.0011430508457124233, + 0.004551378078758717, + -0.06888798624277115, + -0.06977701187133789, + -0.05328980088233948, + -0.03619208186864853, + 0.025066222995519638, + 0.033720389008522034, + -0.02971416339278221, + 0.06967498362064362, + -0.07152532041072845, + -0.06245049834251404, + -0.008106360211968422, + 0.06489724665880203, + -0.02633955143392086, + -0.033131472766399384, + -0.00609496608376503, + 0.05158277973532677, + -0.07721009850502014, + -0.0077125984244048595, + 0.19734328985214233, + -0.0460796020925045, + -0.03331273794174194, + 0.03709770366549492, + 0.008785773068666458, + 0.008617974817752838, + -0.034393224865198135, + -0.04144133999943733, + -0.0388873890042305, + -0.0566694475710392, + 0.029731905087828636, + -0.021029654890298843, + -0.06678074598312378, + -0.047241415828466415, + -0.0252163615077734, + 0.007758297957479954, + 0.013775711879134178, + 0.03440188989043236, + 0.012290839105844498, + -0.0874587893486023, + 0.11007111519575119, + 0.037110283970832825, + -0.005701412446796894, + -0.022487301379442215, + -0.025272443890571594, + 0.03466179594397545, + -0.07834668457508087, + -1.1214841506573459e-33, + 0.10327497124671936, + 0.017055656760931015, + -0.039229508489370346, + 0.0038051847368478775, + 0.05771022289991379, + 0.04227428138256073, + -0.010987045243382454, + 0.01718156412243843, + 0.0023387097753584385, + -0.00280709657818079, + -0.045646704733371735, + -0.051652222871780396, + -0.08800768852233887, + 0.00485847657546401, + 0.015138833783566952, + -0.024163031950592995, + 0.02225653827190399, + -0.007730455603450537, + -0.057352181524038315, + 0.026304947212338448, + -0.026096975430846214, + -0.044841084629297256, + -0.06870961934328079, + 0.0036523728631436825, + 0.03047020360827446, + -0.04384961351752281, + 0.02221011370420456, + -0.024809353053569794, + -0.10912906378507614, + 0.00860554352402687, + 0.03441930562257767, + -0.03380653262138367, + 0.03349975496530533, + -0.025405608117580414, + -0.05969935283064842, + 0.10912241041660309, + -0.027635719627141953, + -0.05726032704114914, + -0.04516948014497757, + 0.04856111481785774, + 0.003068567020818591, + -0.05742880329489708, + 0.05270838737487793, + -0.008613388985395432, + 0.056505169719457626, + 0.01065986230969429, + 0.003789780428633094, + -0.02312915027141571, + 0.0037459584418684244, + 0.06658708304166794, + -0.05912982299923897, + -0.039876699447631836, + 0.017349369823932648, + -0.041352711617946625, + 0.07666022330522537, + -0.05805240571498871, + 0.09168635308742523, + -0.0670524388551712, + 0.00823933258652687, + 0.0851643979549408, + 0.06545477360486984, + -0.027998479083180428, + 0.0010571982711553574, + 0.1352914720773697, + -0.05156540125608444, + -0.06172899529337883, + -0.046721603721380234, + 0.006269854959100485, + 0.0009512354736216366, + -0.002011102857068181, + 0.02515339106321335, + 0.04838506132364273, + -0.023541664704680443, + -0.04112153500318527, + -0.018900465220212936, + -0.038537174463272095, + -0.02177804708480835, + 0.024783682078123093, + -0.03409241884946823, + 0.010294648818671703, + -0.05491684377193451, + -0.06744125485420227, + -0.05988733097910881, + 0.027505623176693916, + -0.052511245012283325, + -0.053111180663108826, + 0.04241327941417694, + 0.0032802207861095667, + 0.08417759090662003, + -0.048256970942020416, + -0.01390573289245367, + 0.034943073987960815, + -0.03269001469016075, + -0.17710596323013306, + -0.03291890025138855, + -2.5747212362148275e-08, + -0.03086661547422409, + 0.023702727630734444, + -0.07117530703544617, + 0.0558665432035923, + 0.029239509254693985, + 0.03357226774096489, + -0.01584124006330967, + -0.06217766925692558, + 0.005090412683784962, + 0.05336419865489006, + -0.010829809121787548, + 0.014235192909836769, + 0.0021407713647931814, + -0.07265667617321014, + 0.14540927112102509, + 0.04603352025151253, + -0.0027496377006173134, + 0.03696265444159508, + 0.01953166350722313, + -0.06093195453286171, + 0.027692420408129692, + 0.030598917976021767, + 0.026940513402223587, + -0.019255781546235085, + 0.010377485305070877, + 0.018824288621544838, + -0.01786828599870205, + 0.054868366569280624, + -0.022733483463525772, + 0.06180190294981003, + 0.0037772967480123043, + 0.06364578753709793, + -0.014179890975356102, + -0.02216067537665367, + 0.018347805365920067, + -0.0007355608977377415, + 0.035875074565410614, + -0.010552802123129368, + 0.03149304538965225, + 0.13049566745758057, + -0.0031447450164705515, + -0.10989606380462646, + -0.02720511145889759, + -0.008096734061837196, + 0.10095909237861633, + 0.07015841454267502, + 0.02434423565864563, + 0.005071666091680527, + 0.0033347231801599264, + -0.07663795351982117, + -2.3455184418708086e-05, + -0.01888274773955345, + -0.01826486736536026, + -0.012221585027873516, + 0.028482522815465927, + -0.02595454268157482, + -0.055584561079740524, + 0.04462268576025963, + -0.10621213912963867, + -0.06679829955101013, + 0.15050458908081055, + 0.031833402812480927, + -0.024241724982857704, + 0.012840681709349155 + ], + "subset-of-bold||*new*,\u2286,subset of,set,member,mathematics,arithmetic,calculator": [ + -0.03980284184217453, + 0.00666002556681633, + 0.02301972359418869, + 0.03881486505270004, + -0.0009601468918845057, + -0.036835525184869766, + 0.08989747613668442, + -0.015919169411063194, + -0.031190555542707443, + 0.0009216911857947707, + -0.026284480467438698, + -0.04910286143422127, + 0.08551369607448578, + -0.13372637331485748, + 0.04947226122021675, + 0.044979799538850784, + 0.0035243816673755646, + -0.032419562339782715, + 0.027855869382619858, + -0.013196066953241825, + -0.02730618789792061, + -0.03837805241346359, + 0.003739061765372753, + 0.05800873413681984, + 0.06291894614696503, + 0.028356384485960007, + 0.020373845472931862, + -0.011205065064132214, + 0.05065875127911568, + 0.027487019076943398, + -0.09936309605836868, + -0.015500722452998161, + 0.09234105050563812, + -0.019770311191678047, + 0.05218789726495743, + 0.004539014771580696, + 0.04263988137245178, + 0.02207205630838871, + -0.011565834283828735, + 0.11366481333971024, + -0.027383694425225258, + -0.05269274115562439, + 0.04753386601805687, + 0.08964651077985764, + -0.07273856550455093, + 0.026789182797074318, + -0.0341874435544014, + 0.017277712002396584, + 0.027908748015761375, + -0.083867646753788, + -0.02344714105129242, + -0.048766691237688065, + -0.1242557018995285, + -0.020252306014299393, + 0.04585299268364906, + 0.02628473751246929, + -0.015205135568976402, + -0.03538481146097183, + -0.009105251170694828, + -0.08817923069000244, + 0.033561933785676956, + 0.004155081696808338, + 0.07361185550689697, + -0.011821268126368523, + -0.007609827909618616, + 0.026327218860387802, + -0.05630229413509369, + 0.05016319453716278, + 0.0210373904556036, + 0.013107871636748314, + 0.014298253692686558, + 0.05120303854346275, + 0.021606849506497383, + 0.05938387289643288, + -0.11436350643634796, + -0.0041399626061320305, + 0.09879586845636368, + 0.05323610454797745, + 0.0007113544270396233, + -0.020838730037212372, + -0.01805133931338787, + -0.025652902200818062, + -0.06400952488183975, + 0.019170863553881645, + 0.06599047780036926, + -0.004182037431746721, + 0.026692286133766174, + -0.14495849609375, + -0.07256542891263962, + -0.00913842674344778, + -0.053777065128088, + -0.048856403678655624, + -0.020072488114237785, + 0.07352952659130096, + -0.03173463046550751, + -0.008677978068590164, + 0.04250461608171463, + 0.0020076660439372063, + 0.011053010821342468, + 0.08844812959432602, + 0.0048903655260801315, + 0.12488467246294022, + 0.02580147609114647, + 0.03815869241952896, + -0.07048536837100983, + -0.037001047283411026, + -0.02334216982126236, + 0.010094691999256611, + 0.0027091302908957005, + -0.010954480618238449, + 0.05244067683815956, + -0.12152235209941864, + 0.02238098345696926, + -0.04084037244319916, + 0.0069608441554009914, + -0.01896108128130436, + -0.016970856115221977, + 0.010718847624957561, + 0.0672178640961647, + 0.09465029835700989, + 0.016112612560391426, + -0.009817197918891907, + 0.008089137263596058, + -0.0664454847574234, + 0.016606952995061874, + -0.03884999081492424, + -0.059030260890722275, + -2.094869604764515e-33, + 0.05442694202065468, + 0.037070631980895996, + -0.09136031568050385, + 0.10882598161697388, + -0.0368836335837841, + 0.047812771052122116, + -0.029088495299220085, + -0.03945663198828697, + -0.05940146744251251, + 0.029919300228357315, + 0.06834705173969269, + 0.05851943790912628, + 0.008685906417667866, + 0.10602863132953644, + 0.1192835196852684, + -0.02459021843969822, + 0.05658872425556183, + -0.09568837285041809, + -0.03856493532657623, + -0.050877299159765244, + -0.057129669934511185, + 0.03606346622109413, + -0.07466141134500504, + -0.01700725220143795, + -0.020959952846169472, + 0.03099789470434189, + 0.07470253854990005, + -0.032673630863428116, + -0.10418812930583954, + 0.016462963074445724, + -0.040526874363422394, + 0.03806924819946289, + 0.0457308255136013, + 0.04514504596590996, + 0.05050577595829964, + 0.016438476741313934, + 0.007733557373285294, + -0.028853999450802803, + 0.05993250384926796, + -0.06867080926895142, + -0.04154619574546814, + 0.013123685494065285, + 0.10285760462284088, + 0.030511023476719856, + 0.010244129225611687, + 0.06045868247747421, + -0.0974910706281662, + -0.005703016649931669, + 0.03704032301902771, + -0.013768491335213184, + -0.056213490664958954, + -0.009423096664249897, + -0.010863780975341797, + 0.0156586654484272, + -0.06685016304254532, + -0.058275628834962845, + -0.03474871814250946, + 0.06096206605434418, + 0.08517957478761673, + 0.04089196026325226, + 0.030045270919799805, + 0.02937561273574829, + 0.010877227410674095, + 0.021583842113614082, + -0.15837213397026062, + 0.0377691313624382, + -0.10778693109750748, + -0.04975876212120056, + 0.1030389741063118, + 0.03387373313307762, + -0.02059962972998619, + 0.08656617999076843, + -0.02033292129635811, + 0.06025419756770134, + 0.016469866037368774, + 0.006429439410567284, + 0.05276297405362129, + -0.023502755910158157, + -0.04617198184132576, + -0.06874747574329376, + 0.003970148507505655, + 0.01993238553404808, + -0.02103310450911522, + 0.07807916402816772, + 0.0532880499958992, + -0.0016667174641042948, + -0.0029802643693983555, + 0.0013966651167720556, + 0.02411879226565361, + -0.025482425466179848, + -0.1595873087644577, + -0.03566087409853935, + 0.018444253131747246, + -0.11128296703100204, + -0.1038573756814003, + -1.785800364851665e-33, + 0.04290837049484253, + 0.010082483291625977, + -0.026332182809710503, + -0.06814777851104736, + -0.007457714527845383, + -0.018327860161662102, + 0.032922886312007904, + -0.019536510109901428, + 0.015758702531456947, + 0.04253338277339935, + 0.03784361481666565, + 0.055401481688022614, + 0.007208164315670729, + -0.09879983216524124, + -0.0344090461730957, + -0.015029530972242355, + -0.047547027468681335, + -0.04127362743020058, + -0.02442953549325466, + 0.018249476328492165, + -0.01959504373371601, + -0.043867453932762146, + -0.007256456185132265, + 0.015266085974872112, + 0.053446102887392044, + -0.01360268797725439, + -0.03997263312339783, + 0.05015985667705536, + -0.06665698438882828, + -0.02622329443693161, + -0.028862761333584785, + -0.06088269501924515, + 0.005741798784583807, + 0.054607465863227844, + -0.09261941909790039, + -0.013226701878011227, + 0.09695642441511154, + -0.030800718814134598, + 0.02915261499583721, + -0.06348341703414917, + 0.0095937829464674, + -0.03319288417696953, + 0.039275120943784714, + 0.06440917402505875, + 0.02683652751147747, + -0.004270326346158981, + 0.04512843117117882, + -0.03992512822151184, + -0.022924309596419334, + 0.04360165074467659, + -0.01361042819917202, + -0.1206648200750351, + 0.04001694545149803, + 0.07023943960666656, + -0.042956747114658356, + 0.01664457656443119, + -0.005220386665314436, + 0.05893891304731369, + -0.009007908403873444, + 0.058770552277565, + -7.19095187378116e-05, + 0.036255307495594025, + 0.046078868210315704, + 0.06343219429254532, + -0.02674396149814129, + -0.07528482377529144, + -0.03485603630542755, + 0.03119114227592945, + -0.023088818415999413, + -0.03355565294623375, + -0.02515755407512188, + 0.0198192298412323, + -0.004215084481984377, + 0.01370236836373806, + -0.08308879286050797, + -0.03560621663928032, + 0.024142686277627945, + 0.023606233298778534, + -0.003718750551342964, + 0.03655276075005531, + 0.018156331032514572, + -0.012633374892175198, + -0.04524783790111542, + -0.014828180894255638, + -0.019662076607346535, + 0.05922690033912659, + 0.06094006076455116, + -0.010692548006772995, + -0.03331762179732323, + -0.12526056170463562, + -0.028284013271331787, + -0.004671609494835138, + -0.037991225719451904, + -0.06340940296649933, + -0.06983408331871033, + -2.6930935703717296e-08, + -0.006548915524035692, + -0.0508975125849247, + -0.04423007741570473, + 0.04676125943660736, + 0.058241020888090134, + -0.07245676219463348, + -0.043958425521850586, + -0.02348329871892929, + -0.03479425609111786, + -0.06329979747533798, + 0.03558790311217308, + 0.08299728482961655, + -0.03998684138059616, + -0.059678494930267334, + -0.048099298030138016, + -0.0009196525206789374, + 0.04089001938700676, + 0.05470732972025871, + -0.04815402254462242, + -0.014215514063835144, + 0.015237117186188698, + 0.052994146943092346, + 0.11651547253131866, + -0.0016436869045719504, + 0.04175039380788803, + 0.0051475390791893005, + -0.029865453019738197, + -0.08113265782594681, + 0.0475684329867363, + 0.02162186987698078, + 0.05311597138643265, + 0.07093837112188339, + 0.032533250749111176, + -0.01319282315671444, + -0.04657597839832306, + -0.010492777451872826, + -0.05655921250581741, + 0.02961350791156292, + -0.00984872318804264, + 0.04753973335027695, + -0.07582035660743713, + -0.044246651232242584, + -0.007419286761432886, + -0.019280582666397095, + 0.007946356199681759, + -0.0941576212644577, + -0.02060687355697155, + -0.04774067550897598, + -0.009012958034873009, + -0.07778359949588776, + -0.04006679728627205, + 0.06342817097902298, + 0.01762939989566803, + 0.010715928860008717, + 0.0028134146705269814, + -0.04593838006258011, + -0.0666520819067955, + 0.07655826210975647, + -0.032711490988731384, + -0.0003610046114772558, + 0.06554701924324036, + -0.021076174452900887, + 0.07037097215652466, + 0.024874910712242126 + ], + "subset-proper-of-bold||*new*,\u2282,proper subset of,set,member,mathematics,arithmetic,calculator": [ + -0.0015522054163739085, + 0.009499317966401577, + 0.03451675921678543, + 0.010705511085689068, + -0.05507872998714447, + -0.04747111350297928, + 0.06850335747003555, + -0.008716846816241741, + -0.061191391199827194, + 0.004050027579069138, + -0.03203219547867775, + -0.013748405501246452, + 0.08483545482158661, + -0.130165696144104, + 0.030065076425671577, + 0.038232382386922836, + 0.02288714610040188, + -0.04190840944647789, + 0.008656101301312447, + -0.011024185456335545, + -0.014576525427401066, + -0.02575284242630005, + 0.01792021468281746, + 0.02444974146783352, + 0.031425900757312775, + 0.009011806920170784, + 0.005397405009716749, + -0.02578894980251789, + 0.08599155396223068, + 0.04412785544991493, + -0.12141299992799759, + 0.02481309324502945, + 0.10938987880945206, + -0.01383299846202135, + 0.027020778506994247, + 0.013600356876850128, + 0.03746063634753227, + 0.025189977139234543, + 0.02528773434460163, + 0.11461940407752991, + -0.054650645703077316, + -0.06729082018136978, + 0.039199501276016235, + 0.03517089784145355, + -0.038260020315647125, + 0.057320255786180496, + -0.025110196322202682, + 0.0275302454829216, + 0.028494378551840782, + -0.05800318717956543, + -0.029619934037327766, + -0.053079936653375626, + -0.12521889805793762, + -0.012028755620121956, + 0.06310867518186569, + 0.058857228606939316, + -0.008603043854236603, + -0.05667402222752571, + -0.005096197593957186, + -0.11198395490646362, + 0.019291093572974205, + 0.027543582022190094, + 0.030122173950076103, + -0.003159262938424945, + -0.02076917327940464, + 0.05671544745564461, + -0.06551846861839294, + 0.05819899961352348, + 0.048570699989795685, + 0.026051849126815796, + -0.0027407717425376177, + 0.05153943970799446, + 0.031074531376361847, + 0.058555375784635544, + -0.1312757432460785, + 0.008883239701390266, + 0.07938080281019211, + 0.03536209091544151, + -0.01679014042019844, + 0.03051760420203209, + -0.0029772513080388308, + 0.00704158702865243, + -0.03442523255944252, + 0.011901241727173328, + 0.08938731253147125, + 0.012431535869836807, + 0.05311400815844536, + -0.14391419291496277, + -0.0398501381278038, + 0.04063740745186806, + -0.06603080779314041, + -0.03103513829410076, + 0.016097160056233406, + 0.05303722620010376, + -0.04942404478788376, + -0.003375785192474723, + 0.07166433334350586, + -0.004398115910589695, + 0.015015938319265842, + 0.08970532566308975, + 0.038387481123209, + 0.10377266258001328, + 0.007358892355114222, + -0.0010516123147681355, + -0.09163235872983932, + -0.03888874500989914, + 0.01070095133036375, + 0.05592113733291626, + 0.00742037920281291, + -0.0004911287687718868, + 0.053703371435403824, + -0.1295221745967865, + -0.02098640240728855, + -0.029914304614067078, + 0.004996257368475199, + 0.0060433559119701385, + -0.05101799964904785, + -0.013799609616398811, + 0.06385672092437744, + 0.05683375522494316, + 0.003258422715589404, + 0.0023227683268487453, + 0.03288765996694565, + -0.07743324339389801, + 0.008900695480406284, + -0.03889608755707741, + -0.05814845860004425, + -2.3187516874282354e-33, + 0.03417303040623665, + 0.03634300082921982, + -0.04168554022908211, + 0.0921550840139389, + -0.047465674579143524, + 0.04180068522691727, + -0.05914914235472679, + -0.057969190180301666, + -0.05361030995845795, + 0.039179351180791855, + 0.09604436904191971, + 0.04458414018154144, + -0.01112817320972681, + 0.09480702131986618, + 0.10901644825935364, + -0.026447242125868797, + 0.07149801403284073, + -0.0701577439904213, + -0.04271814599633217, + -0.015224072150886059, + -0.021411865949630737, + 0.04910837486386299, + -0.06802808493375778, + -0.03992918133735657, + 0.008211860433220863, + 0.03921611234545708, + 0.07451054453849792, + -0.0031830118969082832, + -0.08709017187356949, + 0.019085964187979698, + -0.029429340735077858, + 0.0077431523241102695, + 0.09238049387931824, + 0.01870868168771267, + 0.023565588518977165, + 0.008362372405827045, + -0.025115597993135452, + -0.03502257168292999, + 0.05403006821870804, + -0.05953250825405121, + -0.03123614937067032, + 0.029224833473563194, + 0.09800630062818527, + 0.038709864020347595, + 0.047347020357847214, + 0.04994842782616615, + -0.11176247149705887, + -0.00020604323071893305, + 0.014851544052362442, + -0.01400081254541874, + -0.07369517534971237, + -0.00857533048838377, + -0.0067065744660794735, + 0.007919971831142902, + -0.07277441769838333, + -0.04202019423246384, + -0.003077262546867132, + 0.07042630016803741, + 0.0401763953268528, + 0.019719602540135384, + 0.028322294354438782, + 0.016994431614875793, + 0.005568408872932196, + 0.039156489074230194, + -0.12823617458343506, + 0.04966067150235176, + -0.10756948590278625, + -0.07852524518966675, + 0.07315829396247864, + 0.02555464394390583, + -0.03699420019984245, + 0.056459471583366394, + -0.01105866301804781, + 0.06395312398672104, + 0.024844782426953316, + -0.012564520351588726, + 0.02956775762140751, + -0.006843223702162504, + -0.08918064832687378, + -0.033485040068626404, + 0.010841294191777706, + 0.031005948781967163, + -0.03526085242629051, + 0.06664136797189713, + 0.04063441976904869, + -0.01726229302585125, + -0.016536781564354897, + 0.024193041026592255, + 0.04633838310837746, + -0.026660367846488953, + -0.136898472905159, + 0.01945086382329464, + -0.0042255958542227745, + -0.1174936592578888, + -0.11212983727455139, + -1.123982535330324e-33, + 0.10578835010528564, + 0.03422736003994942, + -0.017344631254673004, + -0.009484382346272469, + -0.00430871918797493, + -0.01090265717357397, + 0.024261321872472763, + -0.02213214710354805, + 0.04602140933275223, + 0.030950333923101425, + 0.023572584614157677, + 0.027246860787272453, + -0.008103315718472004, + -0.10621900111436844, + -0.01672879233956337, + -0.010832116939127445, + -0.054816167801618576, + -0.04806384816765785, + -0.024564750492572784, + 0.01577935554087162, + 0.0036034132353961468, + -0.10137777775526047, + -0.0207291841506958, + 0.018056025728583336, + 0.06165185943245888, + 0.009282258339226246, + -0.09592174738645554, + 0.06023053824901581, + -0.06367596238851547, + 0.002894103992730379, + -0.03831285610795021, + -0.06990410387516022, + 0.013029685243964195, + 0.039860352873802185, + -0.07915650308132172, + -0.028021322563290596, + 0.09745006263256073, + -0.036812908947467804, + 0.010701187886297703, + -0.03834398090839386, + 0.0129046980291605, + -0.023406462743878365, + 0.02999444492161274, + 0.08649642020463943, + 0.019381362944841385, + -0.026667403057217598, + 0.03768403083086014, + -0.029719943180680275, + -0.023406539112329483, + 0.011739467270672321, + -0.06168127432465553, + -0.11550303548574448, + 0.014715526252985, + 0.051208242774009705, + -0.0011529509210959077, + 0.04169156402349472, + -0.006711792666465044, + 0.04679518938064575, + -0.007159304339438677, + 0.03834358975291252, + 0.01817093789577484, + -0.00014358690532390028, + 0.03178251534700394, + 0.0819295197725296, + -0.036987192928791046, + -0.07080844044685364, + -0.04654136672616005, + 0.06281054019927979, + -0.03406263142824173, + -0.06357038021087646, + -0.059095222502946854, + -0.01172478124499321, + -0.029600702226161957, + -0.05073847994208336, + -0.07454172521829605, + -0.022880228236317635, + 0.04696836695075035, + 0.04568919166922569, + 0.016923049464821815, + 0.06391216814517975, + 0.02031085081398487, + 0.013748113065958023, + -0.06647135317325592, + 0.0038018834311515093, + -0.033246539533138275, + 0.06690126657485962, + 0.058493472635746, + -0.031010359525680542, + -0.05943794548511505, + -0.09193824231624603, + -0.02165813185274601, + 0.007904252037405968, + -0.010816799476742744, + -0.06731948256492615, + -0.09094860404729843, + -2.856345204804711e-08, + -0.017529817298054695, + -0.04568682983517647, + -0.05233148857951164, + 0.043622713536024094, + 0.05507039651274681, + -0.0623764805495739, + -0.0445241779088974, + -0.025065429508686066, + -0.04274212568998337, + -0.06518485397100449, + 0.006042222026735544, + 0.06770534813404083, + -0.06664995104074478, + -0.07550026476383209, + -0.04328462481498718, + -0.005550947971642017, + -0.004895553924143314, + 0.08452669531106949, + -0.08319330960512161, + 0.001080494374036789, + 0.024376241490244865, + 0.015617155469954014, + 0.09879476577043533, + 0.016876259818673134, + 0.04032617062330246, + 0.04469098523259163, + -0.02693716622889042, + -0.0759243294596672, + -0.002292920369654894, + 0.029092060402035713, + 0.025624413043260574, + 0.04660535231232643, + 0.06333409249782562, + -0.034014392644166946, + -0.020485352724790573, + -0.0031257166992872953, + -0.07040878385305405, + 0.021116092801094055, + 0.01293070800602436, + 0.009667744860053062, + -0.04310624673962593, + -0.040171485394239426, + -0.01931968703866005, + -0.009949691593647003, + 0.027181707322597504, + -0.08014626801013947, + 0.01919960416853428, + 0.006234210450202227, + 0.0020085275173187256, + -0.06811805814504623, + -0.08099580556154251, + 0.10174007713794708, + 0.00799031276255846, + 0.002983488840982318, + -0.0017454639310017228, + -0.010804624296724796, + -0.04701036959886551, + 0.04424310103058815, + -0.013019739650189877, + -0.04058409482240677, + 0.0953565388917923, + 0.04772181063890457, + 0.06183953955769539, + 0.008573110215365887 + ], + "subtitles-bold||subtitles,television,tv,transcribed,transcription,accessibility,a11y": [ + -0.04495162144303322, + -0.07793723046779633, + 0.002744709374383092, + -0.04680944234132767, + 0.07800088077783585, + 0.021421940997242928, + 0.012902053073048592, + 0.005728307645767927, + 0.0037922782357782125, + -0.08869548887014389, + -0.03239898011088371, + -0.011676261201500893, + -0.000746366975363344, + -0.01564786396920681, + -0.06783910095691681, + 0.03581447899341583, + 0.10374397039413452, + -0.005075462162494659, + -0.0008572359220124781, + -0.03625555709004402, + 0.08338019996881485, + 0.08134240657091141, + 0.06546372920274734, + 0.0491238534450531, + 0.0911194458603859, + 0.016582271084189415, + -0.053218573331832886, + 0.03433815389871597, + 0.01964222639799118, + -0.05074121057987213, + -0.069828100502491, + 0.030988125130534172, + 0.17722733318805695, + 0.03898334875702858, + 0.0522039532661438, + 0.028890546411275864, + -0.034463461488485336, + -0.0511048287153244, + -0.018314972519874573, + 0.08665814250707626, + 0.0005479779210872948, + -0.05608638748526573, + 0.011094942688941956, + 0.022531915456056595, + -0.03431621566414833, + -0.011225759983062744, + -0.09230772405862808, + -0.05340063199400902, + -0.033359985798597336, + 0.029647836461663246, + -0.08069676160812378, + -0.031189681962132454, + -0.04492168501019478, + 0.01678677462041378, + -0.0030868982430547476, + -0.0284747164696455, + -0.018187275156378746, + 0.04178738221526146, + 0.09331032633781433, + -0.004614011384546757, + -0.014965914189815521, + -0.01662442460656166, + 0.04586179181933403, + 0.09476304799318314, + 0.07155494391918182, + -0.009979452937841415, + 0.013702969998121262, + 0.029191097244620323, + -0.07350809872150421, + 0.05664706602692604, + -0.06823059171438217, + 0.024497250095009804, + -0.010137253440916538, + 0.031523752957582474, + -0.04189763590693474, + -0.021935420110821724, + 0.03826301172375679, + -0.08486330509185791, + 0.020100589841604233, + -0.09030210226774216, + -0.08801636844873428, + -0.10086938738822937, + -0.005940739531069994, + 0.015897197648882866, + -0.010266433469951153, + -0.011180117726325989, + 0.013905543833971024, + -0.029874123632907867, + -0.0369611419737339, + 0.021323882043361664, + -0.1326238512992859, + -0.06618823111057281, + 0.042910926043987274, + 0.022988086566329002, + -0.0841507837176323, + 0.04523772373795509, + -0.000330015376675874, + -0.01299436017870903, + 0.00594406109303236, + 0.05706031993031502, + 0.041044656187295914, + 0.03314410150051117, + 0.0169574823230505, + -0.007397331763058901, + -0.08850773423910141, + -0.06508765369653702, + 0.07485765963792801, + -0.006832984741777182, + 0.022518256679177284, + 0.04771462082862854, + -0.02739083580672741, + -0.06416480243206024, + 0.007322248537093401, + -0.06423015147447586, + 0.049601491540670395, + 0.0015435327077284455, + -0.0016462689964100718, + -0.04922284185886383, + 0.04569277912378311, + 0.015066912397742271, + -0.00903300754725933, + -0.002797132357954979, + -0.00880754180252552, + 0.005807048641145229, + 0.014972349628806114, + -0.02897854521870613, + 0.033969223499298096, + -1.9182802312282675e-33, + 0.0472993478178978, + 0.03986462205648422, + -0.02168145217001438, + 0.06729831546545029, + 0.031839121133089066, + 0.003234416013583541, + -0.054617367684841156, + 0.03222404420375824, + -0.07573474198579788, + 0.0864439457654953, + -0.0007836047443561256, + 0.05943902209401131, + -0.05587366595864296, + 0.005189596209675074, + -0.024942846968770027, + -0.008185075595974922, + 0.021433981135487556, + -0.026677481830120087, + -0.0851779580116272, + 0.0263968612998724, + 0.005207085516303778, + 0.09030583500862122, + 0.038601361215114594, + -0.01599007099866867, + 0.01285112090408802, + -0.11650919169187546, + 0.02164055034518242, + -0.06456577777862549, + 0.0008840890950523317, + 0.028603216633200645, + -0.017300628125667572, + 0.021055875346064568, + 0.007827532477676868, + -0.023969285190105438, + 0.026699459180235863, + -0.05624554306268692, + -0.08234771341085434, + -0.016189545392990112, + 0.001404852606356144, + 0.028977563604712486, + -0.07786042988300323, + -0.046086929738521576, + -0.05618283525109291, + -0.02954123727977276, + 0.016129737719893456, + 0.05438772961497307, + -0.04877767711877823, + 0.042353611439466476, + 0.03739560395479202, + 0.07613679021596909, + -0.008652983233332634, + 0.04588871821761131, + -0.04340890422463417, + -0.0984918624162674, + 0.07994628697633743, + 0.023779025301337242, + -0.0070281680673360825, + 0.05319167301058769, + 0.008703716099262238, + -0.05964217334985733, + 0.04408808797597885, + -0.024698015302419662, + 0.11485470831394196, + -0.0540960393846035, + 0.011693337000906467, + 0.03698354959487915, + -0.02269960753619671, + 0.02669629268348217, + 0.07219871878623962, + -0.030277041718363762, + -0.0576348677277565, + 0.027495892718434334, + 0.03163570910692215, + 0.08649951219558716, + -0.052996523678302765, + 0.08781585842370987, + -8.642933244118467e-05, + -0.029226839542388916, + 0.011640467680990696, + 0.0076377298682928085, + -0.0819055363535881, + -0.03989211097359657, + -0.010399021208286285, + 0.03851315751671791, + 0.011598676443099976, + 0.016699818894267082, + 0.025657203048467636, + -0.1402732878923416, + -0.008907859213650227, + 0.08629637211561203, + -0.04329553246498108, + -0.030941959470510483, + -0.06771679222583771, + -0.12820179760456085, + -0.0050278836861252785, + 4.373940092657844e-34, + 0.0835605189204216, + 0.04786718264222145, + -0.11274361610412598, + -0.026974046602845192, + -0.04274043068289757, + -0.03768720477819443, + -0.007625019643455744, + 0.07013294845819473, + 0.09391570836305618, + 0.0254010409116745, + -0.06765413284301758, + -0.03737649694085121, + -0.06746954470872879, + -0.10463377088308334, + -0.0370301827788353, + -0.0450429692864418, + 0.073649100959301, + 0.03957881033420563, + 0.03200211748480797, + 0.06548336893320084, + -0.053124960511922836, + 0.01847522333264351, + -0.048702921718358994, + 0.0979636088013649, + -0.009089993312954903, + 0.06029240041971207, + 0.024006230756640434, + 0.07398300617933273, + -0.08450355380773544, + -0.04587322473526001, + -0.007826041430234909, + 0.004903949797153473, + -0.032409556210041046, + 0.0592903234064579, + -0.06290130317211151, + 0.010514294728636742, + 0.10441970080137253, + -0.056825216859579086, + -0.015346210449934006, + -0.005908402614295483, + 0.03724367544054985, + 0.030069369822740555, + -0.005463796202093363, + 0.004733179695904255, + 0.0026426129043102264, + 0.012645143084228039, + -0.09455913305282593, + -0.01895521581172943, + -0.024230007082223892, + 0.022462304681539536, + -0.0391649454832077, + -0.011157593689858913, + -0.050373777747154236, + 0.019475920125842094, + -0.013158513233065605, + -0.0919637456536293, + -0.022236239165067673, + 0.0020956830121576786, + 0.036044977605342865, + -0.003471328178420663, + -0.011150450445711613, + 0.046789634972810745, + -0.06880314648151398, + 0.01510111428797245, + 0.042159415781497955, + -0.030084628611803055, + 0.05045037344098091, + -0.003693800652399659, + 0.029268920421600342, + -0.016398657113313675, + 0.11580060422420502, + -0.08765458315610886, + 0.0053616659715771675, + 0.031240342184901237, + 0.0005456528742797673, + 0.009925642982125282, + -0.005854956805706024, + -0.005957391578704119, + -0.06606410443782806, + 0.02349891886115074, + -0.016095831990242004, + -0.06975436955690384, + -0.026484031230211258, + 0.13265317678451538, + 0.013962670229375362, + 0.10729193687438965, + 0.009492754004895687, + 0.03330100327730179, + 0.02620624005794525, + -0.002079354366287589, + -0.037670399993658066, + 0.031470704823732376, + -0.015917278826236725, + 0.014310741797089577, + -0.023672403767704964, + -2.100406071292582e-08, + -0.0030366377905011177, + -0.008391481824219227, + -0.08256165683269501, + -0.025156814604997635, + -0.0033291326835751534, + -0.03667822852730751, + -0.07605523616075516, + -0.06702610105276108, + -0.014011967927217484, + 0.009068802930414677, + 0.011987528763711452, + 0.0075774965807795525, + -0.032998211681842804, + -0.02509932778775692, + 0.041317716240882874, + 0.09502018988132477, + -0.03451705724000931, + 0.04335851967334747, + 0.0029667653143405914, + -0.05542377009987831, + -0.010473744012415409, + 0.06517808884382248, + 0.03638545423746109, + -0.022009722888469696, + -0.052634045481681824, + 0.048278387635946274, + -0.07630708813667297, + -0.006426479667425156, + 0.03305983170866966, + 0.0064121754840016365, + 0.0798262357711792, + 0.13774316012859344, + -0.026077188551425934, + -0.07606980949640274, + -0.0368674099445343, + 0.04452773183584213, + 0.027101948857307434, + -0.018128322437405586, + -0.010950339958071709, + 0.09353324770927429, + 0.05751935765147209, + -0.03643554076552391, + -0.018583720549941063, + -0.009022347629070282, + -0.026831455528736115, + 0.04546757787466049, + 0.052097760140895844, + -0.029977405443787575, + -0.005877439398318529, + -0.11791632324457169, + 0.0519520565867424, + -0.007481699343770742, + 0.0005625959020107985, + 0.10143708437681198, + 0.020507805049419403, + -0.006015602499246597, + 0.03023149073123932, + 0.05986984819173813, + 0.029704473912715912, + 0.02045220509171486, + 0.10131822526454926, + 0.08533598482608795, + 0.04136648029088974, + -0.10000976175069809 + ], + "subtitles-slash-bold||*new*,subtitles,television,tv,transcribed,transcription,accessibility,a11y,disabled": [ + -0.04141350835561752, + -0.08785858005285263, + -0.0053986781276762486, + -0.06947320699691772, + 0.03721369802951813, + 0.0332370363175869, + 0.007219627033919096, + 0.000757250003516674, + 0.031324803829193115, + -0.07219569385051727, + -0.0003351597988512367, + -0.009473413228988647, + -0.001401941874064505, + 0.0022048279643058777, + -0.08368571102619171, + 0.02070588804781437, + 0.10097547620534897, + 0.0024088891223073006, + -0.005258019082248211, + -0.04380977898836136, + 0.05563792958855629, + 0.12377375364303589, + 0.0285009928047657, + 0.044442396610975266, + 0.09902550280094147, + 0.013680607080459595, + -0.07834640145301819, + 0.045152854174375534, + 0.014955159276723862, + -0.034502383321523666, + -0.05622483417391777, + 0.006377500016242266, + 0.1978469043970108, + 0.02591037005186081, + 0.05816948413848877, + 0.022900307551026344, + 0.01728244498372078, + -0.04634921997785568, + -0.01899581402540207, + 0.05822870135307312, + -0.013121782802045345, + -0.07783782482147217, + -0.027207843959331512, + 0.007828129455447197, + -0.042926281690597534, + -0.025012245401740074, + -0.0603937953710556, + -0.0594390369951725, + -0.024086087942123413, + 0.05742534622550011, + -0.06176954507827759, + -0.041619062423706055, + -0.07872434705495834, + 0.04443950206041336, + 0.023425010964274406, + -0.036267925053834915, + -0.018447410315275192, + 0.06642342358827591, + 0.08689108490943909, + 0.018938226625323296, + -0.024769479408860207, + -0.03292267024517059, + 0.046093519777059555, + 0.07542935758829117, + 0.03976816684007645, + -0.0016703109722584486, + 0.005551966838538647, + -0.004119085147976875, + -0.07830711454153061, + 0.0365205742418766, + -0.0750298798084259, + 0.008328201249241829, + -0.008227596059441566, + 0.049272321164608, + -0.059239886701107025, + -0.06439284980297089, + 0.02885087952017784, + -0.08160433918237686, + 0.019024884328246117, + -0.09525778889656067, + -0.03903650864958763, + -0.06892253458499908, + -0.013434568420052528, + 0.0235071312636137, + -0.0017138533294200897, + 0.00998225249350071, + -0.0007167368894442916, + -0.037837013602256775, + -0.06215912103652954, + 0.0035208375193178654, + -0.13916067779064178, + -0.08038150519132614, + 0.06254897266626358, + 0.01693877950310707, + -0.09075699746608734, + 0.03806771710515022, + -0.02108282782137394, + -0.014321221970021725, + -0.004309729672968388, + 0.055523741990327835, + 0.0344516783952713, + 0.01217568013817072, + -0.023996727541089058, + -0.018626408651471138, + -0.062120310962200165, + -0.05185084789991379, + 0.09095895290374756, + 0.0013202553382143378, + 0.007215800695121288, + 0.05007516220211983, + -0.02104964666068554, + -0.05903700366616249, + -0.019671622663736343, + -0.06769836694002151, + 0.032533448189496994, + 0.009227141737937927, + -0.019669096916913986, + -0.057245537638664246, + 0.07215813547372818, + 0.07796933501958847, + -0.021911827847361565, + -0.034819167107343674, + -0.011187330819666386, + -0.034167710691690445, + -0.002175770001485944, + -0.025399135425686836, + 0.023471323773264885, + -2.5659989243664566e-33, + 0.052866559475660324, + 0.07530137151479721, + -0.013763021677732468, + 0.044575709849596024, + 0.030380934476852417, + -0.012032399885356426, + -0.060454949736595154, + 0.06976471841335297, + -0.06707514077425003, + 0.06522459536790848, + 0.01685371808707714, + 0.021813789382576942, + -0.048131078481674194, + 0.004218063782900572, + -0.016411088407039642, + 0.006686443462967873, + 0.03966255113482475, + -0.047442492097616196, + -0.08252501487731934, + 0.018134836107492447, + -0.0012092557735741138, + 0.14248254895210266, + 0.055918432772159576, + 0.01042951736599207, + 0.008029352873563766, + -0.11607381701469421, + 0.013352448120713234, + -0.06867575645446777, + 0.03462941199541092, + 0.03868555650115013, + -0.03537045419216156, + 0.030932245776057243, + 0.026908118277788162, + -0.008388370275497437, + 0.022018855437636375, + 0.005659180693328381, + -0.06849177181720734, + -0.034585777670145035, + -0.02660929225385189, + 0.031036771833896637, + -0.08129562437534332, + -0.03915086388587952, + -0.10187384486198425, + -0.030014565214514732, + 0.01417565532028675, + 0.043064992874860764, + -0.0346023328602314, + -0.005039130337536335, + 0.013023263774812222, + 0.08466030657291412, + -0.01221771351993084, + 0.0690503865480423, + -0.012353500351309776, + -0.08512949198484421, + 0.0421348512172699, + 0.0036539039574563503, + -0.038347020745277405, + 0.0337318517267704, + 0.03285522386431694, + -0.06523269414901733, + 0.043245717883110046, + -0.004991252440959215, + 0.0927930697798729, + -0.02435666136443615, + -0.016196418553590775, + 0.029425358399748802, + -0.006786752492189407, + 0.033043023198843, + 0.05416544899344444, + -0.014163434505462646, + -0.07355798035860062, + -0.01038025040179491, + 0.03189986199140549, + 0.0937369242310524, + -0.07871963083744049, + 0.06941703706979752, + -0.026331402361392975, + -0.033044375479221344, + 0.014359654858708382, + 0.0008294550352729857, + -0.1254824548959732, + -0.03329707309603691, + -0.002164625097066164, + 0.04983547702431679, + 0.04066987335681915, + 0.013068147003650665, + 0.010624215006828308, + -0.10123398900032043, + -0.017883386462926865, + 0.047998927533626556, + -0.029754064977169037, + -0.01912127435207367, + -0.11809173971414566, + -0.10645687580108643, + 0.006793556734919548, + 3.2004330619724153e-34, + 0.07918370515108109, + 0.06583420932292938, + -0.1321049928665161, + -0.037367042154073715, + -0.07142631709575653, + -0.047515928745269775, + 0.009002395905554295, + 0.060323577374219894, + 0.08189988136291504, + 0.011133207008242607, + -0.013166358694434166, + -0.020374881103634834, + -0.03835730999708176, + -0.10250010341405869, + 0.0017087626038119197, + -0.06454416364431381, + 0.023016110062599182, + 0.02335369773209095, + 0.022305462509393692, + 0.0969453975558281, + -0.03747956454753876, + 0.005131218582391739, + -0.04445916414260864, + 0.08074415475130081, + 0.007924639619886875, + 0.04471808671951294, + 0.02707659639418125, + 0.06301605701446533, + -0.052971918135881424, + -0.02751634456217289, + -0.0012968613300472498, + 0.020738225430250168, + -0.05044109746813774, + 0.05527614429593086, + -0.06395436823368073, + 0.02466430328786373, + 0.038759149610996246, + -0.04297126829624176, + -0.02827083319425583, + -0.02574324607849121, + 0.039296720176935196, + 0.03280850127339363, + 0.03249286115169525, + 0.05780857428908348, + 0.023707561194896698, + -0.01627202518284321, + -0.10132364183664322, + -0.028892040252685547, + -0.021622736006975174, + 0.029222480952739716, + -0.021021610125899315, + -0.029959537088871002, + -0.039283595979213715, + 0.005650730337947607, + -0.02320926822721958, + -0.06646700203418732, + -0.07315509021282196, + 0.022256581112742424, + -0.006704804487526417, + 0.02630739100277424, + 0.0064688860438764095, + 0.030223986133933067, + -0.09121071547269821, + 0.018485158681869507, + 0.044236037880182266, + -0.03525439649820328, + 0.03176218271255493, + 0.01341770775616169, + 0.03282128646969795, + 0.004158839583396912, + 0.12478738278150558, + -0.0484360009431839, + -0.005415399558842182, + -0.005377963185310364, + -0.01609717682003975, + -0.015270758420228958, + -0.05175948888063431, + 0.008716023527085781, + -0.06358480453491211, + 0.02858028933405876, + -0.01439976692199707, + -0.039613112807273865, + -0.023518923670053482, + 0.1198626458644867, + 0.01590150035917759, + 0.07527904212474823, + -0.008517881855368614, + 0.07320970296859741, + 0.012954450212419033, + -0.02131647616624832, + -0.019748453050851822, + 0.05011330172419548, + -0.03648065775632858, + 0.057174086570739746, + -0.06751353293657303, + -2.4700911538388937e-08, + -0.018757928162813187, + -0.007897935807704926, + -0.07184748351573944, + -0.015831246972084045, + 0.027267230674624443, + -0.018058087676763535, + -0.104329913854599, + -0.08054956048727036, + 0.019577207043766975, + 0.008963648229837418, + 0.012404893524944782, + -0.012756315059959888, + -0.026968063786625862, + -0.03172704204916954, + 0.03426961228251457, + 0.08830650895833969, + -0.015573927201330662, + 0.07474216818809509, + 0.0033457656390964985, + -0.013177154585719109, + -0.020324448123574257, + 0.05384312942624092, + 0.059449322521686554, + 0.00367467082105577, + -0.04342241585254669, + 0.01716570369899273, + -0.03981805220246315, + -0.019257986918091774, + 0.03826456889510155, + 0.003650143975391984, + 0.06560596078634262, + 0.12914307415485382, + -0.02742955833673477, + -0.07261788845062256, + -0.03721965476870537, + 0.06614094227552414, + 0.028200607746839523, + 0.008292588405311108, + 0.018700063228607178, + 0.06159555912017822, + 0.08147323131561279, + -0.04788557440042496, + 0.002676310483366251, + -0.012960224412381649, + -0.03475167602300644, + 0.0345124825835228, + 0.03945891559123993, + -0.013594633899629116, + -0.02325228415429592, + -0.13087010383605957, + 0.05758752301335335, + 0.03536975011229515, + -0.012333686463534832, + 0.09132453799247742, + 0.05701785534620285, + 0.018758738413453102, + 0.060448531061410904, + 0.06126510724425316, + 0.010774156078696251, + 0.004616600926965475, + 0.11998523026704788, + 0.06516408175230026, + 0.03708966448903084, + -0.08420241624116898 + ], + "subtract-bold||boolean,intersection,combine,split,merge,union": [ + 0.051382169127464294, + 0.003191883908584714, + 0.0052687558345496655, + 0.04174547269940376, + 0.060783982276916504, + -0.03959204629063606, + 0.0762685015797615, + -0.0407252199947834, + -0.038117341697216034, + -0.026639191433787346, + -0.003658316330984235, + -0.05137495696544647, + 0.05628399923443794, + -0.019321471452713013, + -0.020959338173270226, + 0.0668560042977333, + -0.06655150651931763, + 0.06944175064563751, + -0.04809394106268883, + -0.05270051956176758, + -0.022753767669200897, + -0.02194839157164097, + -0.034768395125865936, + 0.0638173446059227, + 0.09224821627140045, + 0.044446803629398346, + 0.0018598204478621483, + -0.004965160507708788, + 0.01610545814037323, + -0.07482913881540298, + -0.011151447892189026, + -0.04965084046125412, + 0.10736961662769318, + -0.011466645635664463, + 0.021199503913521767, + -0.07423246651887894, + 0.010403268039226532, + 0.017991797998547554, + 0.05240029841661453, + 0.06055444851517677, + -0.03145197033882141, + -0.09677460789680481, + -0.0012363360729068518, + -0.05267354100942612, + -0.016437197104096413, + 0.041331857442855835, + -0.10655739158391953, + 0.010399969294667244, + 0.05594941973686218, + -0.032860275357961655, + 0.07704677432775497, + -0.03878921642899513, + -0.10336554050445557, + -0.002298351377248764, + 0.0578484907746315, + 0.04961901530623436, + -0.08121930062770844, + -0.014116376638412476, + 0.023999618366360664, + -0.007906471379101276, + -0.016233103349804878, + 0.003223452949896455, + -0.016328109428286552, + 0.0028266983572393656, + 0.10152500867843628, + 0.0046373759396374226, + 0.006823476869612932, + 0.05666138976812363, + -0.013150173239409924, + 0.08263176679611206, + 0.003076425287872553, + 0.062386464327573776, + -0.0031601330265402794, + -0.06365904957056046, + -0.05343487113714218, + 0.034097667783498764, + 0.0994536280632019, + 0.020733121782541275, + -0.002692825859412551, + 0.02655947580933571, + -0.1278473436832428, + -0.030938008800148964, + -0.0728418156504631, + 0.015962941572070122, + 0.0734863430261612, + -0.0065212612971663475, + -0.09331870824098587, + -0.07902151346206665, + -0.09148050844669342, + -0.07763679325580597, + -0.03315459564328194, + 0.04526286944746971, + 0.027805021032691002, + -0.007034781388938427, + 0.013918745331466198, + 0.030873071402311325, + 0.06861722469329834, + 0.06998791545629501, + 0.09053967893123627, + 0.09199666976928711, + -0.03989019617438316, + 0.08112040907144547, + -0.026229649782180786, + -0.10395392030477524, + -0.025490276515483856, + 0.008359402418136597, + 0.06675983220338821, + -0.020145846530795097, + 0.029535582289099693, + -0.04895050823688507, + 0.04067179933190346, + -0.11564274877309799, + 0.03507426381111145, + -0.03196190670132637, + -0.0006265336996875703, + 0.05889609083533287, + 0.030152246356010437, + 0.043404627591371536, + 0.10589421540498734, + -0.03247487172484398, + -0.01773950457572937, + -0.00023048404545988888, + -0.007226818706840277, + -0.03167999908328056, + 0.004147785250097513, + 0.004162296187132597, + 0.03094019927084446, + -6.767035369290858e-34, + 0.018283596262335777, + -0.004185148049145937, + -0.027723027393221855, + 0.07660236209630966, + 0.011869564652442932, + -0.004772673826664686, + -0.11028104275465012, + -0.04871411621570587, + -0.10755390673875809, + 0.1204555481672287, + 0.0509013794362545, + 0.10388503968715668, + -0.014170512557029724, + -0.036449287086725235, + 0.07944405823945999, + -0.04693729802966118, + 0.047997117042541504, + -0.059916526079177856, + -0.1377653032541275, + 0.01050821878015995, + -0.041996147483587265, + 0.02901540696620941, + -0.019215049222111702, + 0.09532929211854935, + -0.0026354771107435226, + -0.06850054860115051, + 0.041586339473724365, + -0.00625617615878582, + 0.0018730461597442627, + 0.0023089831229299307, + -0.060175035148859024, + 0.059801455587148666, + 0.01140572689473629, + 0.07484062761068344, + 0.013819919899106026, + 0.03926968574523926, + -0.009528006426990032, + -0.03082515299320221, + 0.015735654160380363, + 0.026129355654120445, + -0.07939279079437256, + -0.029073437675833702, + 0.04155812785029411, + -0.10586163401603699, + 0.01755962148308754, + 0.06981036067008972, + -0.06351751834154129, + -0.02091939188539982, + 0.07728185504674911, + 0.08009130507707596, + 0.01665889471769333, + 0.05420604720711708, + 0.013462160713970661, + -0.013968752697110176, + 0.001527543761767447, + -0.006764506921172142, + 0.009857756085693836, + 0.11333063244819641, + 0.05718504637479782, + 0.041616201400756836, + -0.038612887263298035, + 0.01813913695514202, + 0.01080881804227829, + 0.031399741768836975, + -0.0780215859413147, + 0.07660429179668427, + -0.06792235374450684, + 0.050071731209754944, + 0.04970502108335495, + -0.06825248897075653, + -0.025271663442254066, + 0.03533213958144188, + -0.0130729665979743, + 0.0642341673374176, + 0.027373535558581352, + 0.003382359631359577, + 0.06403883546590805, + -0.006593250669538975, + 0.07391706109046936, + -0.13084080815315247, + -0.04025702551007271, + 0.05219322815537453, + -0.024904398247599602, + 0.00452399579808116, + 0.006819459144026041, + 0.06332536786794662, + -0.014229531399905682, + -0.021223710849881172, + -0.005657718516886234, + 0.031065676361322403, + -0.11423392593860626, + -0.004406468942761421, + 0.04433605074882507, + -0.07989409565925598, + 0.008561165072023869, + -8.400326913395847e-34, + 0.06234226003289223, + 0.02666383795440197, + -0.030933309346437454, + -0.1026245579123497, + -0.07948257029056549, + -0.05199521407485008, + 0.07420041412115097, + -0.023553306236863136, + -0.00027440820122137666, + 0.06029343232512474, + 0.05177459120750427, + 0.02800586074590683, + -0.07281127572059631, + -0.07590534538030624, + -0.06089125573635101, + 0.01121609192341566, + 0.02769814245402813, + 0.009264282882213593, + -0.02766500785946846, + -0.01835228130221367, + -0.03773394972085953, + 0.08162769675254822, + 0.005292094312608242, + -0.03735099360346794, + -0.028297316282987595, + 0.009142258204519749, + -0.013049574568867683, + 0.012800763361155987, + -0.0016486946260556579, + -0.010978978127241135, + -0.05002399533987045, + -0.05491238459944725, + 0.031268712133169174, + 0.05132729560136795, + -0.08139685541391373, + -0.051751796156167984, + 0.021571874618530273, + -0.06122659146785736, + 0.02097228728234768, + -0.08126112073659897, + -0.05769616737961769, + 0.0022146780975162983, + 0.0009178937179967761, + 0.06795720756053925, + 0.057277508080005646, + 0.036917779594659805, + -0.038560427725315094, + -0.049811311066150665, + -0.03883601725101471, + -0.030254749581217766, + -0.006522412411868572, + -0.0035857122857123613, + -0.027299219742417336, + 0.03272093087434769, + -0.05291353538632393, + -0.016242003068327904, + 0.07575961947441101, + -0.019725657999515533, + -0.017881495878100395, + 0.03723789006471634, + -0.008311121724545956, + 0.02503020130097866, + 0.0042057097889482975, + 0.07309450209140778, + 0.04457494989037514, + -0.03200772404670715, + 0.004232822451740503, + -0.02862503007054329, + 0.004751820117235184, + -0.016013391315937042, + 0.08605794608592987, + -0.05111198499798775, + 0.005536380689591169, + 0.004392083268612623, + -0.030180564150214195, + -0.00818333588540554, + 0.021083923056721687, + 0.015694480389356613, + -0.01754692755639553, + 0.07124139368534088, + -0.07967524975538254, + -0.057833120226860046, + 0.00839389581233263, + 0.04113288223743439, + -0.09424127638339996, + 0.031923990696668625, + -0.023313172161579132, + 0.02650243416428566, + -0.02556789293885231, + -0.05892124027013779, + -0.06843011826276779, + -0.0057592629455029964, + 0.09093940258026123, + -0.048776574432849884, + -0.04528144374489784, + -2.235954355001013e-08, + 0.05420703813433647, + -0.032034263014793396, + -0.08521448820829391, + -0.008620952256023884, + 0.04546025022864342, + 0.008299496956169605, + -0.0789823830127716, + -0.07478401064872742, + -0.022180376574397087, + -0.015981631353497505, + 0.021504532545804977, + 0.0710093155503273, + -0.13631993532180786, + -0.04927225783467293, + -0.018049076199531555, + 0.0038868249393999577, + -0.00029233499662950635, + 0.02648879960179329, + -0.023223865777254105, + -0.01753154955804348, + -0.031129887327551842, + 0.05444863811135292, + 0.022604933008551598, + 0.08799068629741669, + 0.0029002747032791376, + 0.032124944031238556, + -0.06321101635694504, + 0.08480039983987808, + 0.07032071799039841, + 0.006246620323508978, + 0.04567333310842514, + 0.07447446137666702, + 0.03448338061571121, + 0.02207927405834198, + 0.008368736132979393, + 0.013962313532829285, + -0.0008442941471002996, + 0.10796903073787689, + -0.032345205545425415, + 0.07476797699928284, + -0.06395493447780609, + -0.055141646414995193, + -0.002092438517138362, + -0.02511487528681755, + -0.017216045409440994, + -0.05422722548246384, + -0.0037676654756069183, + -0.02145378477871418, + -0.013254443183541298, + -0.028330009430646896, + -0.016529442742466927, + -0.012714563868939877, + 0.042730912566185, + 0.040174487978219986, + -0.06714017689228058, + -0.060365065932273865, + 0.0023819406051188707, + 0.10838964581489563, + -0.014610644429922104, + -0.005844789557158947, + 0.06079808622598648, + -0.045578137040138245, + 0.014765824191272259, + -0.020688015967607498 + ], + "subtract-square-bold||boolean,intersection,combine,split,merge,union": [ + 0.05899244174361229, + 0.02656104601919651, + 0.02423040382564068, + 0.06312862038612366, + 0.02833573706448078, + -0.013473831117153168, + 0.056922245770692825, + -0.05836742743849754, + -0.03567713126540184, + -0.04006993770599365, + 0.0024596599396318197, + -0.018722252920269966, + 0.05706702917814255, + -0.010620051994919777, + -0.06913823634386063, + 0.058712709695100784, + -0.053062405437231064, + 0.05738985165953636, + -0.029079871252179146, + -0.04073209688067436, + -0.03129922226071358, + -0.04377257078886032, + -0.04879352077841759, + 0.04747600108385086, + 0.0931510329246521, + 0.0377238467335701, + 0.010278090834617615, + 0.026724016293883324, + 0.021099820733070374, + -0.07605569064617157, + 0.006861720699816942, + -0.053765472024679184, + 0.11123470216989517, + -0.013311315327882767, + -6.969133210077416e-06, + -0.056944988667964935, + 0.0044455560855567455, + 0.031406305730342865, + 0.07029552012681961, + 0.04873471334576607, + -0.02448965795338154, + -0.12521444261074066, + 0.005794478114694357, + -0.049771104007959366, + -0.007433791644871235, + 0.03682812675833702, + -0.09755977988243103, + 0.008318077772855759, + 0.058828018605709076, + -0.055987585335969925, + 0.05988670140504837, + -0.04412686452269554, + -0.0762082114815712, + -0.028338095173239708, + 0.06835853308439255, + 0.03751956671476364, + -0.06416581571102142, + -0.012783133424818516, + 0.050382040441036224, + -0.0022896812297403812, + -0.002320211147889495, + 0.0006556119187735021, + -0.026062622666358948, + 0.006822849158197641, + 0.05315819010138512, + 0.021820707246661186, + -0.0030903771985322237, + 0.03529902175068855, + -0.009875282645225525, + 0.07561103254556656, + 0.015518950298428535, + 0.0856800451874733, + -0.005545172840356827, + -0.04588218033313751, + -0.036213766783475876, + -0.018577691167593002, + 0.08921787887811661, + 0.012103430926799774, + -0.0023322980850934982, + 0.04254082962870598, + -0.12746895849704742, + -0.021546857431530952, + -0.08597112447023392, + 0.00898787472397089, + 0.05424775183200836, + -0.011590847745537758, + -0.08900057524442673, + -0.08014409989118576, + -0.10679535567760468, + -0.08666891604661942, + -0.017949730157852173, + 0.04532472789287567, + 0.029976822435855865, + 0.0004069851420354098, + 0.0011075410293415189, + 0.022423412650823593, + 0.0820121094584465, + 0.06614828109741211, + 0.06536085903644562, + 0.08323544263839722, + -0.009917158633470535, + 0.05813664570450783, + -0.03263130411505699, + -0.11809127777814865, + 0.008634485304355621, + 0.007986979559063911, + 0.1101178452372551, + -0.006436739582568407, + 0.03869304805994034, + -0.04696512594819069, + 0.022052675485610962, + -0.12115077674388885, + 0.040431149303913116, + -0.002437331946566701, + -0.009991691447794437, + 0.07867982983589172, + 0.009319327771663666, + 0.029724521562457085, + 0.1278688758611679, + -0.0423259362578392, + -0.015405133366584778, + 0.005267090629786253, + -0.00023229107318911701, + -0.030347002670168877, + -0.007039909716695547, + 0.02924712933599949, + 0.007883214391767979, + -4.043077922164718e-34, + 0.0295262411236763, + 0.030914252623915672, + 0.006112458650022745, + 0.08168889582157135, + 0.013250058516860008, + -0.034909240901470184, + -0.10096099972724915, + -0.0804688036441803, + -0.04556907340884209, + 0.13246096670627594, + 0.04945305362343788, + 0.08307530730962753, + -0.05494491383433342, + -0.009208982810378075, + 0.09819883108139038, + -0.04058048129081726, + 0.0530497282743454, + -0.04144079610705376, + -0.10701315104961395, + 0.01232515461742878, + -0.040554605424404144, + 0.02544076181948185, + -0.03865896165370941, + 0.10162784159183502, + 0.009949661791324615, + -0.06543219834566116, + 0.05040263012051582, + -0.023957716301083565, + 0.04236239567399025, + 0.02459004521369934, + -0.028699716553092003, + 0.08835376799106598, + -0.004227860830724239, + 0.05465095490217209, + 0.022998681291937828, + 0.02309085614979267, + 0.009611901827156544, + -0.027939176186919212, + 0.013138876296579838, + 0.0028991103172302246, + -0.05817557871341705, + -0.02857338637113571, + 0.03573179617524147, + -0.10754671692848206, + 0.03575964644551277, + 0.0424516424536705, + -0.02501729130744934, + -0.039044786244630814, + 0.063666932284832, + 0.0702025517821312, + 0.01690351404249668, + 0.057282138615846634, + 0.012072469107806683, + 0.0036876194644719362, + 0.03790882229804993, + -0.026236284524202347, + -0.020710481330752373, + 0.10054641962051392, + 0.08131837099790573, + 0.06881573051214218, + -0.030748704448342323, + -0.009022274985909462, + 0.0003540758043527603, + 0.007483203429728746, + -0.08318373560905457, + 0.06594295054674149, + -0.0728362426161766, + 0.00351281207986176, + 0.0027737778145819902, + -0.061799559742212296, + -0.032540153712034225, + 0.014062021858990192, + -0.00022772367810830474, + 0.059655703604221344, + 0.015142110176384449, + 0.0012094763806089759, + 0.05497618019580841, + -0.019089501351118088, + 0.08895596116781235, + -0.18427740037441254, + -0.04023438319563866, + 0.0763406828045845, + -0.05783860385417938, + -0.055665500462055206, + 0.006851894315332174, + 0.03822414577007294, + -0.012693524360656738, + -0.04223652556538582, + -0.016619693487882614, + 0.025062378495931625, + -0.13752536475658417, + 0.003869682317599654, + 0.04324275627732277, + -0.05563180148601532, + -0.01445677038282156, + -1.1168117442838196e-33, + 0.0471765510737896, + 0.051159583032131195, + -0.03745495155453682, + -0.09384460747241974, + -0.06758786737918854, + -0.061037611216306686, + 0.07127616554498672, + -0.03448019176721573, + 0.013804885558784008, + 0.05771232768893242, + 0.03761637210845947, + 0.0014926220756024122, + -0.07615296542644501, + -0.08400016278028488, + -0.04482115060091019, + 0.0346907339990139, + 0.05900295451283455, + -0.0001793569972505793, + -0.06082050874829292, + -0.03469278663396835, + -0.053693387657403946, + 0.06707542389631271, + 0.037107035517692566, + -0.03908200189471245, + -0.037057727575302124, + 0.02523987926542759, + -0.007029028609395027, + 0.012032302096486092, + 0.018757708370685577, + 0.022836843505501747, + -0.06982722133398056, + -0.039096470922231674, + 0.017436247318983078, + 0.053286369889974594, + -0.1024899035692215, + -0.0662558525800705, + 0.024921536445617676, + -0.07125669717788696, + 0.022260479629039764, + -0.08373112976551056, + -0.026015957817435265, + -0.008114656433463097, + 0.0024372879415750504, + 0.09855962544679642, + 0.06269297003746033, + 0.040365058928728104, + -0.013672133907675743, + -0.05648249760270119, + -0.033494070172309875, + -0.062356870621442795, + -0.016965720802545547, + -0.009582040831446648, + -0.034941721707582474, + 0.04607076942920685, + -0.048034850507974625, + -0.0049912091344594955, + 0.06959789246320724, + 0.015221957117319107, + -0.016930343583226204, + 0.0260065495967865, + -0.011169983074069023, + 0.002879532752558589, + -0.006472067441791296, + 0.06739039719104767, + 0.023968670517206192, + -0.026752112433314323, + 0.02070256881415844, + 0.013355311937630177, + -0.000588425318710506, + 0.028041977435350418, + 0.06848128885030746, + -0.033635132014751434, + -0.0034121940843760967, + -0.005373175255954266, + -0.04266033694148064, + -0.0032044919207692146, + -0.013786508701741695, + -0.004962808918207884, + -0.025342609733343124, + 0.09550463408231735, + -0.06159040331840515, + -0.02703366056084633, + 0.019935395568609238, + 0.0142739312723279, + -0.07656046748161316, + 0.01940310001373291, + -0.027860132977366447, + 0.04678043723106384, + -0.02937932126224041, + -0.05441146716475487, + -0.06316929310560226, + -0.014780120924115181, + 0.07168598473072052, + -0.036656271666288376, + -0.03219315782189369, + -2.292836143169552e-08, + 0.041090626269578934, + -0.020711593329906464, + -0.06652213633060455, + -0.023756811395287514, + 0.029064448550343513, + -0.02499236725270748, + -0.07684972137212753, + -0.06209151819348335, + -0.022933654487133026, + -0.030032828450202942, + -0.0010212864726781845, + 0.07330251485109329, + -0.14904741942882538, + -0.046945810317993164, + -0.01595127582550049, + 0.013593262992799282, + -0.01372665073722601, + 0.028976647183299065, + -0.01660528965294361, + -0.0024860738776624203, + -0.027932416647672653, + 0.024792354553937912, + 0.014446222223341465, + 0.11151895672082901, + -0.03184011951088905, + 0.03802194818854332, + -0.05805646628141403, + 0.09490077197551727, + 0.06618737429380417, + 0.03161703422665596, + 0.045458875596523285, + 0.07970662415027618, + 0.031272221356630325, + 0.007720654364675283, + 0.007078767754137516, + -0.02699124999344349, + -0.0187197495251894, + 0.10692530870437622, + -0.035902511328458786, + 0.05673445761203766, + -0.041205938905477524, + -0.05971798673272133, + 0.02759809046983719, + -0.027134275063872337, + 0.005659134592860937, + -0.022451331838965416, + 0.012697149999439716, + -0.015600711107254028, + -0.021526919677853584, + -0.03177132084965706, + -0.015807731077075005, + -0.02843851037323475, + 0.02790493331849575, + 0.06216670200228691, + -0.080099917948246, + -0.05218322575092316, + -0.019206542521715164, + 0.10476195812225342, + 0.0029566173907369375, + -0.01377948373556137, + 0.05144511163234711, + -0.01301781926304102, + 0.009329459629952908, + -0.010501771233975887 + ], + "subway-bold||*new*,vehicles,underground,train,tunnel,metro,light rail,public transit,transportation,commuter,traveling,places,locations": [ + 0.012846141122281551, + -0.1289675384759903, + 0.05503669008612633, + 0.09080004692077637, + -0.01890634372830391, + 0.0324409082531929, + 0.03386988118290901, + -0.009748733602464199, + -0.08099795877933502, + -0.03380488604307175, + 0.009154385887086391, + 0.01968318410217762, + 0.020075490698218346, + -0.001242695958353579, + 0.024302449077367783, + 0.022735651582479477, + 0.12223339825868607, + 0.021256165578961372, + 0.0428457073867321, + -0.032357726246118546, + 0.04232269152998924, + -0.0674361065030098, + -0.003412725403904915, + 0.05886199697852135, + 0.025381531566381454, + 0.04045117273926735, + 0.031183363869786263, + -0.02206641249358654, + -0.059446632862091064, + -0.03771457076072693, + -0.10735142976045609, + 0.004790747072547674, + 0.02157202735543251, + 0.020247040316462517, + 0.03420098125934601, + 0.04402720928192139, + 0.0026180425193160772, + -0.028815478086471558, + 0.05141551420092583, + 0.044111717492341995, + -0.06018117815256119, + -0.09526962786912918, + -0.015389363281428814, + 0.03437093272805214, + 0.012307587079703808, + -0.03147231787443161, + 0.03415518254041672, + -0.07592782378196716, + 0.011578865349292755, + -0.03102022409439087, + 0.03746115788817406, + -0.02912825718522072, + -0.04134202003479004, + 0.050262145698070526, + -0.008165115490555763, + -0.042382001876831055, + -0.061451032757759094, + 0.009050498716533184, + 0.06207713484764099, + 0.09514358639717102, + -0.02804393135011196, + 0.0026627650950104, + -0.018609408289194107, + 0.06045018136501312, + 0.0491756945848465, + -0.01338289212435484, + -0.05955924838781357, + 0.04871377721428871, + 0.010957091115415096, + -0.019334997981786728, + 0.033948153257369995, + 0.044051408767700195, + 0.009951266460120678, + 0.002099595731124282, + -0.022672809660434723, + -0.05620739236474037, + 0.023416776210069656, + 0.014390180818736553, + -0.05869091674685478, + -0.06573395431041718, + -0.004283158574253321, + -0.0006367195164784789, + -0.03119148500263691, + -0.029179733246564865, + 0.00638091703876853, + 0.01993352733552456, + -0.03828844055533409, + -0.03577696904540062, + -0.0769023522734642, + -0.030851248651742935, + -0.049570366740226746, + -0.024330686777830124, + -0.003393486374989152, + 0.06674519181251526, + -0.017717957496643066, + 0.023492589592933655, + -0.05941593647003174, + -0.03288978710770607, + 0.011291337199509144, + 0.037742339074611664, + -0.013865580782294273, + 0.05414106696844101, + 0.05594509094953537, + 0.0657522901892662, + -0.013777829706668854, + -0.02515738271176815, + -0.016044339165091515, + 0.021077429875731468, + -0.00743131572380662, + 0.05866066366434097, + 0.04273132234811783, + -0.07625430077314377, + -0.018639681860804558, + -0.06453630328178406, + -0.08266014605760574, + -0.036004841327667236, + -0.05341780185699463, + -0.026728762313723564, + 0.06290317326784134, + 0.10176049917936325, + -0.0555790513753891, + -0.07538438588380814, + 0.03134067356586456, + -0.042919762432575226, + -0.0880919024348259, + -0.026715675368905067, + 0.028201811015605927, + -4.340775907272293e-33, + -0.0723869651556015, + 0.017377488315105438, + 0.013487163931131363, + 0.09947440028190613, + -0.0016398511361330748, + -0.0235796757042408, + -0.040597300976514816, + -0.07930376380681992, + -0.015675105154514313, + 0.058658719062805176, + 0.012050402350723743, + 0.046756576746702194, + -0.026668287813663483, + 0.09125841408967972, + 0.051937080919742584, + -0.04358020797371864, + 0.0188023429363966, + -0.051839765161275864, + -0.03054015338420868, + -0.02144382894039154, + 0.030011272057890892, + 0.07656228542327881, + 0.013254337944090366, + -0.05648217722773552, + -0.028024818748235703, + -0.03340233862400055, + -0.0013453105930238962, + -0.06446374207735062, + -0.019446907564997673, + 0.04829397052526474, + 0.009371899999678135, + 0.09988056123256683, + 0.04884114861488342, + 0.08340343832969666, + -0.021775592118501663, + 0.02476496435701847, + -0.010122962296009064, + -0.058469273149967194, + -0.03329181671142578, + -0.03930814564228058, + -0.08692800998687744, + -0.06352326273918152, + -0.08279798179864883, + 0.03820253536105156, + 0.06503304094076157, + 0.06496668606996536, + 0.00011652107059489936, + -0.08517216145992279, + 0.032528266310691833, + 0.06542278081178665, + -0.042915575206279755, + 0.01667078211903572, + -0.12742014229297638, + -0.04230177402496338, + -0.0037898938171565533, + -3.792740244534798e-05, + -0.005960771813988686, + 0.03472493216395378, + 0.09425095468759537, + 0.007988302037119865, + -0.012623116374015808, + 0.0691710039973259, + 0.04855625331401825, + 0.0025837167631834745, + 0.07625271379947662, + 0.041036687791347504, + -0.0021816573571413755, + -0.03551209717988968, + 0.031246107071638107, + 0.062322456389665604, + 0.007212907541543245, + -0.002558054169639945, + 0.008338873274624348, + 0.12257327139377594, + 0.06634815037250519, + -0.024605175480246544, + -0.10051482170820236, + 0.009655293077230453, + -0.008848011493682861, + 0.0013547450071200728, + -0.08920105546712875, + -0.02076718956232071, + -0.058525245636701584, + 0.13066045939922333, + 0.13864737749099731, + 0.055483970791101456, + -0.001799180405214429, + -0.054446734488010406, + 0.007942212745547295, + 0.023397309705615044, + -0.09219298511743546, + 0.023121746256947517, + -0.005003808531910181, + -0.01762157864868641, + -0.0636347234249115, + 3.786882372234106e-34, + 0.08031341433525085, + 0.054546382278203964, + -0.02686062641441822, + -0.07107086479663849, + -0.08423624187707901, + 0.016503697261214256, + -0.03002777509391308, + -0.015002690255641937, + 0.061811573803424835, + 0.17451328039169312, + -0.03317929059267044, + -0.013241028413176537, + 0.029829075559973717, + -0.039941564202308655, + -0.013401229865849018, + -0.034383926540613174, + 0.039047326892614365, + 0.010833886452019215, + -0.09162197262048721, + 0.09143806248903275, + -0.055068135261535645, + -0.030947232618927956, + -0.1792978197336197, + 0.04568646103143692, + 0.02578849345445633, + 0.012255548499524593, + 0.0192178376019001, + -0.011757337488234043, + -0.04189666733145714, + -0.03259576857089996, + -0.11280190944671631, + 0.02337266132235527, + 0.03799455612897873, + 0.02393956109881401, + -0.03959667310118675, + 0.06358630210161209, + 0.0315588116645813, + -0.009166351519525051, + 0.010535460896790028, + -0.03229783475399017, + -0.007051656022667885, + -0.02849961631000042, + 0.10980559140443802, + 0.034216951578855515, + -0.0190434493124485, + -0.03348298370838165, + -0.11557786166667938, + -0.05427998676896095, + -0.09717528522014618, + 0.037435658276081085, + 0.023155804723501205, + -0.00525077385827899, + -0.047588083893060684, + -0.028607124462723732, + 0.03678679093718529, + 0.03455350175499916, + -0.06964974850416183, + 0.005862746853381395, + -0.03281682729721069, + -0.045223671942949295, + 0.04730335995554924, + 0.02341512031853199, + -0.03539649769663811, + 0.07958593219518661, + 0.023073650896549225, + -0.12314512580633163, + -0.045883387327194214, + -0.0875876247882843, + -0.003917217254638672, + -0.023617055267095566, + 0.05893394723534584, + -0.0019449456594884396, + -0.026539163663983345, + -0.025220785290002823, + -0.010334794409573078, + -0.07299309968948364, + 0.053946152329444885, + 0.15359121561050415, + 0.013784265145659447, + 0.024652304127812386, + 0.08399830013513565, + -0.010800517164170742, + -0.015181219205260277, + 0.033210285007953644, + 0.0310557559132576, + 0.04424823820590973, + 0.013216576538980007, + 0.00870475359261036, + -0.0018870827043429017, + -0.01704583503305912, + -0.0081255491822958, + 0.0156606063246727, + -0.03986993804574013, + -0.03462152183055878, + -0.07561168819665909, + -2.6880014658559048e-08, + 0.0384787879884243, + 0.013331746682524681, + -0.07858497649431229, + -0.04418707266449928, + 0.03215937316417694, + -0.014198098331689835, + -0.051793698221445084, + 0.04705238714814186, + -0.10543358325958252, + 0.05446097254753113, + 0.03030581958591938, + 0.08441426604986191, + -0.056093696504831314, + 0.07079171389341354, + -0.02700199745595455, + 0.03132620081305504, + -0.04512075334787369, + 0.06365812569856644, + -0.03337846323847771, + 0.009283752180635929, + -0.03830110654234886, + 0.04592975229024887, + 0.023244189098477364, + 0.07981258630752563, + 0.02702907845377922, + 0.027208447456359863, + -0.025386465713381767, + -0.05247115716338158, + 0.08392620831727982, + -0.025734080001711845, + 0.06236725673079491, + 0.03242570906877518, + -0.02188161015510559, + -0.030051661655306816, + -0.0645318403840065, + 0.04761992767453194, + 0.03686511144042015, + 0.03694421797990799, + -0.018269801512360573, + 0.005846143234521151, + -0.017581844702363014, + -0.08433958142995834, + 0.03361719474196434, + -0.004289928823709488, + 0.006107684690505266, + 0.019378848373889923, + -0.0617632195353508, + -0.031517695635557175, + -0.06996451318264008, + -0.07392635941505432, + -0.07092910259962082, + -0.020901499316096306, + 0.011907901614904404, + 0.03491457551717758, + 0.052807290107011795, + -0.0019659632816910744, + -0.028790155425667763, + 0.029387447983026505, + -0.03495423123240471, + -0.01689726673066616, + 0.06339504569768906, + 0.06287136673927307, + -0.0004388615197967738, + 0.029002467170357704 + ], + "suitcase-bold||briefcase,valise,baggage,folders,portfolio": [ + 0.02054506354033947, + 0.03289686143398285, + -0.07263253629207611, + 0.06051289662718773, + 0.08752714097499847, + 0.004159844480454922, + 0.08758828043937683, + 0.014326375909149647, + 0.031935617327690125, + -0.0268099345266819, + 0.030933551490306854, + 0.07165877521038055, + 0.03347630798816681, + 0.01601370796561241, + -0.023097431287169456, + 0.03845138102769852, + 0.02700810134410858, + 0.03862176463007927, + -0.10183190554380417, + 0.0605132021009922, + -0.0513162799179554, + 0.02062440663576126, + 0.028055105358362198, + -0.018355023115873337, + 0.03693513199687004, + 0.02539384365081787, + 0.047200679779052734, + -0.04116497188806534, + 0.008239676244556904, + -0.03583572432398796, + 0.03599916025996208, + -0.015610028058290482, + 0.02853202261030674, + 0.08103980869054794, + 0.07669074833393097, + 0.061549749225378036, + -0.03899751603603363, + -0.016100674867630005, + -0.007101548369973898, + 0.034653306007385254, + -0.03905005380511284, + -0.006535796448588371, + -0.03235674276947975, + 0.059604234993457794, + -0.02978670410811901, + -0.12150026112794876, + -0.00998475681990385, + 0.004543712828308344, + 0.0030481871217489243, + 0.049614068120718, + -0.03841155394911766, + -0.10041552782058716, + -0.13840480148792267, + 0.04467770457267761, + -0.09117007255554199, + 0.036385491490364075, + -0.0706271156668663, + -0.01082430686801672, + -0.0020764085929840803, + -0.07036507874727249, + 0.03456801176071167, + 0.027510525658726692, + 0.04332001134753227, + 0.022419599816203117, + 0.07217390835285187, + 0.005468239076435566, + 0.007656590547412634, + 0.050322797149419785, + -0.08578328043222427, + 0.027976522222161293, + 0.08273711800575256, + -0.016818968579173088, + -0.08885041624307632, + 0.026246195659041405, + 0.01128636859357357, + -0.02022135630249977, + 0.005608801264315844, + -0.005687227472662926, + -0.01582971215248108, + -0.02272617071866989, + -0.050360698252916336, + 0.0002476403897162527, + -0.05838419869542122, + -0.004068012814968824, + 0.001125287264585495, + -0.026218203827738762, + -0.03834967315196991, + -0.0420084074139595, + -0.04940125346183777, + -0.023219579830765724, + -0.016787325963377953, + -0.08623586595058441, + 0.0453416146337986, + 0.06599517911672592, + -0.1242862120270729, + 0.03530418127775192, + 0.02290029637515545, + 0.10990912467241287, + -0.007127034477889538, + 0.02212594635784626, + 0.013266964815557003, + 0.031403396278619766, + 0.07411903887987137, + 0.0539100207388401, + -0.04352039471268654, + -0.0048066177405416965, + 0.03422704339027405, + -0.07738024741411209, + -0.03342774510383606, + -0.009377396665513515, + -0.06062565743923187, + -0.011800926178693771, + -0.012199615128338337, + -0.1046072319149971, + -0.043488115072250366, + 0.0037760313134640455, + -0.04391249269247055, + 0.09036511182785034, + 0.032158657908439636, + 0.07516859471797943, + 0.06254690140485764, + -0.02218419872224331, + 0.0628323033452034, + -0.03400120139122009, + -0.07150514423847198, + -0.018289942294359207, + 0.018033236265182495, + -1.8657411438762807e-33, + -0.027803201228380203, + 0.042028386145830154, + -0.02905423194169998, + 0.19677138328552246, + -0.001385914976708591, + -0.044305045157670975, + -0.018803730607032776, + -0.007029119413346052, + -0.07091686129570007, + 0.08588454872369766, + 0.006845724768936634, + 0.10223414748907089, + -0.04365985095500946, + 0.043096449226140976, + 0.029161404818296432, + -0.02967487834393978, + 0.0011729967081919312, + 0.007482822984457016, + 0.023654848337173462, + -0.06206578388810158, + -0.05262889713048935, + -0.03797491639852524, + -0.011157604865729809, + -0.07749118655920029, + 0.01823810301721096, + 0.019505763426423073, + 0.07050980627536774, + -0.041146453469991684, + -0.035409849137067795, + 0.05161884427070618, + -0.020313827320933342, + 0.048306651413440704, + 0.019147323444485664, + 0.030932821333408356, + -0.06279242038726807, + 0.04112430661916733, + -0.07630227506160736, + -0.004871946759521961, + 0.027642883360385895, + 0.06412021815776825, + -0.06796777248382568, + -0.05568082630634308, + -0.0266029704362154, + 0.009400531649589539, + -0.005050577688962221, + 0.06158512085676193, + 0.06239939481019974, + 0.00014130392810329795, + 0.031910546123981476, + -0.0031795210670679808, + -0.017915800213813782, + -0.05420215055346489, + 0.013206145726144314, + 0.016697542741894722, + 0.006366102024912834, + -0.03054831176996231, + -0.009149002842605114, + 0.04387661814689636, + 0.014004183933138847, + -0.022866353392601013, + 0.09030186384916306, + 0.05663777142763138, + 0.029782257974147797, + 0.026152636855840683, + 0.014128332026302814, + 0.05129046365618706, + -0.011767396703362465, + -0.015720171853899956, + 0.1044866219162941, + 0.0064797112718224525, + -0.08388489484786987, + 0.0971766859292984, + 0.1049404963850975, + 0.0339406356215477, + 0.024690739810466766, + 0.0030136234126985073, + 0.022319020703434944, + 0.004809084814041853, + -0.02352571301162243, + -0.1110633984208107, + -0.15602868795394897, + -0.027565158903598785, + 0.00933151226490736, + 0.13219548761844635, + -0.016784781590104103, + 0.021779103204607964, + 0.0007462255889549851, + -0.01581178791821003, + -0.025678224861621857, + -0.023862313479185104, + -0.09838706254959106, + 0.000100431359896902, + -0.02078726328909397, + -0.09106820821762085, + -0.010366084985435009, + 1.1074594010260821e-33, + 0.1295810490846634, + -0.015262684784829617, + -0.047629162669181824, + -0.03642139956355095, + 0.046851880848407745, + -0.039011288434267044, + -0.041952379047870636, + -0.0039628781378269196, + -0.06563764065504074, + 0.043269362300634384, + -0.04326629638671875, + -0.13147687911987305, + -0.018532969057559967, + -0.01534371729940176, + 0.04639308527112007, + 0.029028816148638725, + 0.0181588064879179, + -0.04148058965802193, + -0.032339245080947876, + -0.022561002522706985, + -0.04216761887073517, + -0.034358710050582886, + -0.030851008370518684, + 0.05970459058880806, + -0.047860387712717056, + 0.018328865990042686, + -0.013123605400323868, + -0.07729371637105942, + -0.008174213580787182, + 0.0464983731508255, + -0.035623062402009964, + -0.008266281336545944, + 0.037480179220438004, + 0.06522462517023087, + -0.0905519425868988, + 0.009278872050344944, + -0.03836112469434738, + -0.02116619236767292, + 0.06677176058292389, + -0.012652191333472729, + -0.012057013809680939, + -0.0030982440803200006, + -0.051486432552337646, + 0.050958070904016495, + -0.008564471267163754, + -0.0865689292550087, + -0.0016090888530015945, + -0.023517470806837082, + 0.08303883671760559, + -0.05483224615454674, + 0.08561505377292633, + 0.03508863225579262, + -0.09518904983997345, + 0.028876259922981262, + -0.01531186979264021, + 0.07774532586336136, + -0.06330199539661407, + -0.07800225168466568, + 0.06246974319219589, + 0.013670332729816437, + 0.02258974313735962, + 0.10750692337751389, + -0.02454831637442112, + -0.025613101199269295, + -0.02314082905650139, + -0.055385131388902664, + -0.05537203699350357, + -0.003009627340361476, + -0.07500715553760529, + 0.033626798540353775, + 0.02327144145965576, + -0.04178445413708687, + 0.04823148995637894, + 0.03166631609201431, + 0.1132313460111618, + -0.016413407400250435, + 0.09622178226709366, + 0.005674121901392937, + 0.08885624259710312, + 0.010401558130979538, + -0.016100304201245308, + -0.027412474155426025, + -0.05168040096759796, + 0.06028519570827484, + 0.016525857150554657, + 0.03569628298282623, + -0.04844078794121742, + -0.006401077378541231, + -0.015005667693912983, + -0.05175706744194031, + 0.026084939017891884, + 0.02884715050458908, + 0.016824696213006973, + 0.022562993690371513, + -0.02739311382174492, + -1.800470528223741e-08, + -0.029377592727541924, + 0.0205834973603487, + -0.018383951857686043, + -0.001089740893803537, + -0.06242287904024124, + -0.03619001433253288, + -0.0053327190689742565, + 0.05774614214897156, + -0.03072195313870907, + 0.0421777069568634, + 0.04010592773556709, + -0.039522167295217514, + -0.1610182672739029, + 0.0007321358425542712, + -0.07781431078910828, + 0.05257997289299965, + -0.06039993464946747, + 0.08983752876520157, + -0.03410053625702858, + -0.06299576908349991, + 0.05523010715842247, + 0.06773313879966736, + 0.05367186293005943, + -0.010012026876211166, + 0.015435055829584599, + 0.038942933082580566, + -0.08826528489589691, + -0.024791359901428223, + 0.08112972229719162, + 0.05768584832549095, + 0.02651260234415531, + 0.03543256223201752, + -0.03230644017457962, + -0.022647224366664886, + -0.07330109924077988, + -0.005048814695328474, + 0.030207915231585503, + -0.013006231747567654, + -0.007503089495003223, + 0.12395849078893661, + -0.027468517422676086, + -0.08424173295497894, + -0.02302533946931362, + -0.007110478822141886, + 0.010567374527454376, + 0.006242518778890371, + 0.011140339076519012, + -0.001145854126662016, + -0.06784044951200485, + -0.009654130786657333, + -0.00958534236997366, + -0.08103521913290024, + 0.01797768473625183, + 0.03993711993098259, + 0.03885868936777115, + 0.006084027234464884, + 0.027961328625679016, + 0.06467065960168839, + -0.022175773978233337, + 0.0396319143474102, + 0.024013467133045197, + -0.013617292046546936, + 0.0017195693217217922, + -0.008659623563289642 + ], + "suitcase-rolling-bold||suitcase,luggage,travel,transportation": [ + -0.004339402541518211, + 0.02535843662917614, + -0.06017071381211281, + 0.04551424831151962, + 0.08058440685272217, + -0.019345825538039207, + 0.08971347659826279, + -0.0002145025209756568, + -0.0009149908437393606, + -0.0173773355782032, + 0.06278841197490692, + 0.06985080987215042, + 0.04671906679868698, + 0.03493684157729149, + -0.007642647251486778, + 0.059813376516103745, + 0.001681027701124549, + 0.06846604496240616, + -0.10257535427808762, + 0.04292606562376022, + -0.030463827773928642, + 0.012830431573092937, + -0.02710176259279251, + 0.01593557931482792, + 0.02280106581747532, + 0.07663097232580185, + 0.07832764834165573, + -0.0235102791339159, + 0.025228481739759445, + -0.027448778972029686, + -0.03584751486778259, + 0.02467288076877594, + -0.01032592449337244, + 0.08955025672912598, + 0.036790065467357635, + 0.006703747436404228, + -0.007119946181774139, + -0.02517412230372429, + 0.008989251218736172, + 0.013647230342030525, + 0.012684209272265434, + -0.04365023225545883, + 0.009558948688209057, + 0.05913323163986206, + -0.004263816401362419, + -0.0686660036444664, + -0.011096330359578133, + 0.007012160494923592, + -0.009668715298175812, + 0.08874250203371048, + -0.0009571274276822805, + -0.08689653128385544, + -0.09277819842100143, + 0.10005899518728256, + -0.07880183309316635, + 0.00557500496506691, + -0.04144367203116417, + -0.004843728616833687, + 0.023299939930438995, + -0.010508631356060505, + 0.013459942303597927, + 0.04217832162976265, + 0.012342649511992931, + 0.07118866592645645, + 0.007231918629258871, + -0.0005668755038641393, + 0.018632853403687477, + -0.010051032528281212, + -0.11603891104459763, + 0.046349335461854935, + 0.053385719656944275, + -0.022603418678045273, + -0.044475436210632324, + 0.05220900848507881, + 0.01139004435390234, + -0.07463754713535309, + 0.011235502548515797, + -0.03375253081321716, + -0.0799383670091629, + 0.058224841952323914, + -0.07053104788064957, + -0.044847939163446426, + -0.08995926380157471, + -0.015923116356134415, + -0.03238283842802048, + -0.01509206835180521, + -0.050033584237098694, + -0.01666734740138054, + -0.05070037767291069, + 0.0020978113170713186, + -0.052826303988695145, + -0.04249769449234009, + 0.03789465129375458, + 0.04876111075282097, + -0.11396275460720062, + 0.06953149288892746, + 0.026687446981668472, + 0.05279180780053139, + -0.04980136454105377, + 0.04123859852552414, + 0.022965190932154655, + 0.0514565035700798, + 0.11671250313520432, + 0.046862032264471054, + -0.07238569855690002, + -0.044507935643196106, + 0.010556356981396675, + -0.06172908470034599, + -0.015552565455436707, + 0.03556349128484726, + -0.03586295247077942, + -0.026069318875670433, + 0.0339835062623024, + -0.09197982400655746, + -0.06777181476354599, + -0.04102836921811104, + -0.0666956752538681, + 0.08290012180805206, + 0.012972153723239899, + 0.032326020300388336, + 0.07181493192911148, + -0.030294952914118767, + 0.04548543319106102, + -0.044342055916786194, + -0.049813412129879, + -0.04488567262887955, + 0.02761758305132389, + -4.714874045685609e-33, + -0.04239708185195923, + 0.028680648654699326, + -0.018266567960381508, + 0.19601166248321533, + 0.0033877650275826454, + -0.004530203063040972, + -0.06492538005113602, + -0.03373543173074722, + -0.008749434724450111, + 0.11028187721967697, + -0.01551358588039875, + 0.11087331175804138, + -0.040827058255672455, + 0.04267732426524162, + 0.06501685082912445, + -0.0386468842625618, + -0.019486960023641586, + -0.08216850459575653, + 0.021571073681116104, + 0.05047512799501419, + -0.020067164674401283, + -0.045567307621240616, + 0.0581689290702343, + -0.08093783259391785, + -0.055259861052036285, + 0.014511420391499996, + 0.05390806123614311, + -0.07043243199586868, + -0.00404864689335227, + 0.04592030122876167, + 0.001121954875998199, + 0.05421930551528931, + -0.012611529789865017, + 0.017285507172346115, + -0.0036674286238849163, + -0.009487522765994072, + -0.06911994516849518, + -0.01690673828125, + -0.06863252818584442, + 0.04211418330669403, + -0.08378946781158447, + -0.08570936322212219, + -0.03615373745560646, + 0.03400558978319168, + 0.042237088084220886, + 0.10656136274337769, + 0.024648992344737053, + -0.033574990928173065, + 0.0660422295331955, + -0.004816793370991945, + -0.006415467243641615, + -0.05924811586737633, + 0.022929925471544266, + -0.018609685823321342, + 0.03401368483901024, + -0.059374112635850906, + 0.034028176218271255, + 0.0556388720870018, + -0.050256598740816116, + 0.011618160642683506, + 0.041632071137428284, + 0.04946909844875336, + 0.06895063072443008, + 0.008985896594822407, + 0.06356799602508545, + 0.014279088005423546, + -0.03132443502545357, + 0.03453173115849495, + 0.06674474477767944, + -0.04722905158996582, + -0.011758862994611263, + 0.07611528784036636, + 0.06312012672424316, + 0.0709088072180748, + 0.06087365001440048, + 0.008074237033724785, + 0.04453055560588837, + 0.02955080382525921, + 0.03237750753760338, + -0.10496163368225098, + -0.09495514631271362, + -0.03648483008146286, + -0.016863562166690826, + 0.029505126178264618, + -0.0010598285589367151, + 0.05785759165883064, + -0.05843835324048996, + -0.02834690734744072, + -0.03795572742819786, + 0.004859288223087788, + -0.09745997935533524, + 0.05056140199303627, + 0.010545558296144009, + -0.033909451216459274, + -0.04966895654797554, + 1.108901493822251e-33, + 0.06507942080497742, + 0.014093970879912376, + -0.03419959172606468, + -0.009996969252824783, + 0.03003126196563244, + -0.004626222420483828, + -0.0034178586211055517, + 0.016573648899793625, + 0.0005831427406519651, + 0.040224287658929825, + -0.043727807700634, + -0.13856615126132965, + -0.028129274025559425, + 0.030124465003609657, + 0.1283288151025772, + 0.03599318861961365, + 0.03199967369437218, + -0.030736131593585014, + -0.042093656957149506, + 0.035220686346292496, + -0.04949205368757248, + -0.021301116794347763, + -0.11707985401153564, + 0.07731451094150543, + -0.030213456600904465, + 0.025507230311632156, + 0.0164854284375906, + -0.006991580594331026, + -0.01589951477944851, + 0.022937506437301636, + -0.006859961431473494, + -0.018946992233395576, + 0.07376770675182343, + 0.038527488708496094, + -0.0884903222322464, + 0.05700569227337837, + 0.003478187834843993, + 0.034043099731206894, + 0.01431061327457428, + -0.04562317952513695, + -0.02571890875697136, + -0.03009054996073246, + -0.023729871958494186, + 0.032884448766708374, + -0.041453760117292404, + -0.061901118606328964, + -0.08228105306625366, + -0.010541137307882309, + 0.008372868411242962, + 0.00022707635071128607, + 0.03822251036763191, + 0.04792552441358566, + -0.09230905771255493, + -0.008019656874239445, + 0.0473749116063118, + 0.02338220179080963, + -0.12235221266746521, + -0.06947337090969086, + 0.042005348950624466, + -0.034300871193408966, + -0.0006180072668939829, + 0.08609386533498764, + -0.03689461573958397, + -0.048769138753414154, + -0.020324688404798508, + -0.027097828686237335, + -0.030503902584314346, + -0.09185317158699036, + -0.11463741213083267, + 0.06383310258388519, + -0.0020214985124766827, + 0.006232676561921835, + -0.008443020284175873, + 0.0023577900137752295, + 0.09346914291381836, + -0.045740026980638504, + 0.1049017608165741, + -0.015659509226679802, + 0.03895149752497673, + -0.0017470851307734847, + -0.04979581758379936, + -0.07270114868879318, + -0.054876603186130524, + -0.010771578177809715, + -0.06344162672758102, + -0.02459418587386608, + -0.06581181287765503, + -0.055411145091056824, + 0.0573062039911747, + 0.015112374909222126, + 0.037242915481328964, + 0.0631461814045906, + -0.04600391536951065, + -0.015396183356642723, + -0.009505894035100937, + -1.8879072527511198e-08, + -0.009070035070180893, + 0.008250049315392971, + -0.028159786015748978, + -0.05148939788341522, + -0.024670379236340523, + -0.023456847295165062, + 0.044493842869997025, + 0.023847457021474838, + -0.035371921956539154, + -0.0012318231165409088, + 0.017622195184230804, + -0.004256730899214745, + -0.08295129984617233, + 0.026464805006980896, + -0.02679620496928692, + 0.0830029621720314, + -0.1087702065706253, + 0.11121226102113724, + -0.01499639730900526, + -0.07755659520626068, + 0.010740975849330425, + 0.008149396628141403, + 0.04226037114858627, + -0.004214800428599119, + -0.022261423990130424, + -0.0031413703691214323, + -0.10648808628320694, + -0.04645635932683945, + 0.08496903628110886, + 0.017660995945334435, + 0.019836295396089554, + 0.033389002084732056, + -0.03095247782766819, + -0.06706661731004715, + -0.10488741844892502, + -0.03276772424578667, + 0.05943106859922409, + -0.06005896255373955, + 0.01541287824511528, + 0.10847300291061401, + -0.008778135292232037, + -0.019485434517264366, + -0.0747356191277504, + -0.00989456381648779, + -0.010219498537480831, + -0.0068101282231509686, + 0.005384689662605524, + 0.01829439587891102, + -0.07290169596672058, + 0.023884370923042297, + 0.0020041516982018948, + -0.06066152825951576, + 0.0009047883213497698, + 0.06411407887935638, + 0.03688551113009453, + 0.005560378544032574, + 0.02291087433695793, + 0.05006447061896324, + -0.005649401806294918, + 0.08215390890836716, + -0.019306421279907227, + -0.02270137332379818, + 0.07609421759843826, + 0.0013984434772282839 + ], + "suitcase-simple-bold||briefcase,valise,baggage,folders,portfolio": [ + 0.0325503833591938, + 0.04006136208772659, + -0.06283188611268997, + 0.07426860183477402, + 0.0958753153681755, + -0.0018188722897320986, + 0.08014023303985596, + 0.015586944296956062, + 0.018402744084596634, + -0.021289899945259094, + 0.029659800231456757, + 0.06463263928890228, + 0.03542570397257805, + 0.01567642204463482, + -0.01716502010822296, + 0.03416827321052551, + 0.020725121721625328, + 0.024728743359446526, + -0.09481000900268555, + 0.06259200721979141, + -0.05988277867436409, + 0.017931275069713593, + 0.019904877990484238, + -0.012402643449604511, + 0.02828257530927658, + 0.027323806658387184, + 0.054077669978141785, + -0.025377152487635612, + 0.01973283849656582, + -0.03732844814658165, + 0.03867960721254349, + -0.017725525423884392, + 0.03803033009171486, + 0.07655350863933563, + 0.07364256680011749, + 0.053835246711969376, + -0.026886628940701485, + -0.008214308880269527, + -0.01570824347436428, + 0.036131925880908966, + -0.042574070394039154, + -0.016817908734083176, + -0.02731652371585369, + 0.06807070225477219, + -0.040285874158144, + -0.12285631150007248, + -0.013726205565035343, + 0.005387359764426947, + 0.005896170157939196, + 0.036772627383470535, + -0.025810329243540764, + -0.09927184879779816, + -0.13821011781692505, + 0.030018968507647514, + -0.08796288818120956, + 0.03881138935685158, + -0.08397959172725677, + -0.0016145040281116962, + 0.004074847791343927, + -0.07826907187700272, + 0.040552470833063126, + 0.018974987789988518, + 0.043151479214429855, + 0.018652215600013733, + 0.06854650378227234, + 0.0037897664587944746, + 0.0065782698802649975, + 0.04265907406806946, + -0.08747874945402145, + 0.025703489780426025, + 0.0839967429637909, + -0.024256132543087006, + -0.096685491502285, + 0.03482835739850998, + 0.007650498766452074, + -0.0359039343893528, + -0.0008960269624367356, + 0.005301106721162796, + -0.028322000056505203, + -0.0055216411128640175, + -0.06288760900497437, + -0.01212791632860899, + -0.07361506670713425, + 0.011906399391591549, + 0.009300554171204567, + -0.023377666249871254, + -0.04435046762228012, + -0.039985377341508865, + -0.04355433210730553, + -0.027335844933986664, + -0.011922881007194519, + -0.0691990852355957, + 0.04955979064106941, + 0.067111536860466, + -0.12172572314739227, + 0.03711424767971039, + 0.03479733318090439, + 0.11137257516384125, + -0.03302602469921112, + 0.031633779406547546, + 0.016748933121562004, + 0.0340576209127903, + 0.08783405274152756, + 0.04382359981536865, + -0.04167209938168526, + -0.006149821914732456, + 0.03651463985443115, + -0.08181007206439972, + -0.031333208084106445, + -0.016306964680552483, + -0.06324025243520737, + -0.020061489194631577, + -0.0078171007335186, + -0.10237494856119156, + -0.03839578479528427, + 0.004870667587965727, + -0.04729871451854706, + 0.08394327014684677, + 0.037898436188697815, + 0.09045428782701492, + 0.06677964329719543, + -0.024029970169067383, + 0.049843061715364456, + -0.03147974982857704, + -0.06815671920776367, + -0.01487609464675188, + 0.028729330748319626, + -2.298353554363607e-33, + -0.01865384168922901, + 0.05309756100177765, + -0.03299518674612045, + 0.20457161962985992, + -0.003847425105050206, + -0.04413853585720062, + -0.026698488742113113, + -0.008786747232079506, + -0.07147165387868881, + 0.09227832406759262, + 0.024939514696598053, + 0.09442879259586334, + -0.0468570850789547, + 0.047921907156705856, + 0.038016464561223984, + -0.029542818665504456, + 0.006569281220436096, + 0.0030066678300499916, + 0.018616000190377235, + -0.06371250748634338, + -0.05543472617864609, + -0.016102127730846405, + -0.00735173374414444, + -0.08788847178220749, + 0.013832525350153446, + 0.01916148141026497, + 0.07504735141992569, + -0.04425601661205292, + -0.03594189137220383, + 0.046840835362672806, + -0.014058838598430157, + 0.04828735068440437, + 0.01725432090461254, + 0.03292924538254738, + -0.06344563513994217, + 0.03172716125845909, + -0.05713987722992897, + 0.0007803638000041246, + 0.021638059988617897, + 0.04783743992447853, + -0.08084369450807571, + -0.05496152117848396, + -0.018992751836776733, + 0.008835216984152794, + 0.007945201359689236, + 0.06879407167434692, + 0.055382139980793, + -0.007518019527196884, + 0.03366053104400635, + -0.005438162945210934, + -0.02609863132238388, + -0.05222851410508156, + 0.011971518397331238, + 0.024299215525388718, + 0.011361089535057545, + -0.021306082606315613, + -0.007520798593759537, + 0.051697809249162674, + 0.01058162935078144, + -0.023183481767773628, + 0.08219768851995468, + 0.062019240111112595, + 0.017525680363178253, + 0.029155902564525604, + 0.00888484250754118, + 0.054957903921604156, + -0.017323674634099007, + -0.012516499496996403, + 0.1020762249827385, + 0.005185676272958517, + -0.08188857138156891, + 0.10075747966766357, + 0.09997200965881348, + 0.02257821336388588, + 0.0327317900955677, + 0.014476709067821503, + 0.04170900210738182, + -0.009532970376312733, + -0.01964476704597473, + -0.10677649080753326, + -0.14951324462890625, + -0.017580974847078323, + 0.004013570956885815, + 0.14415059983730316, + -0.026314927265048027, + 0.018816625699400902, + 0.00041634333319962025, + -0.004777282942086458, + -0.03775180131196976, + -0.02100595273077488, + -0.10470845550298691, + 0.008031031116843224, + -0.020757250487804413, + -0.09396284073591232, + -0.009329540655016899, + 1.3516898419155133e-33, + 0.12603522837162018, + -0.016201820224523544, + -0.05522450804710388, + -0.0334836021065712, + 0.04276716709136963, + -0.029121970757842064, + -0.027468759566545486, + -0.005357318092137575, + -0.05524224787950516, + 0.04894492030143738, + -0.03710421547293663, + -0.13298659026622772, + -0.030650602653622627, + -0.012000281363725662, + 0.04552098736166954, + 0.036267589777708054, + 0.012041458860039711, + -0.023883488029241562, + -0.027799956500530243, + -0.02522217482328415, + -0.04155943915247917, + -0.023534787818789482, + -0.0455692857503891, + 0.04604938626289368, + -0.0466952808201313, + 0.01899164915084839, + -0.021187379956245422, + -0.06353595107793808, + -0.0113964369520545, + 0.04572650417685509, + -0.032153695821762085, + -0.005796042736619711, + 0.04119325429201126, + 0.06050890311598778, + -0.09119010716676712, + 0.012343964539468288, + -0.05284997075796127, + -0.016267579048871994, + 0.06880705058574677, + -0.018538907170295715, + -0.022898316383361816, + -0.0018111119279637933, + -0.03970331698656082, + 0.03792228922247887, + -0.008869235403835773, + -0.0921098068356514, + 0.010028613731265068, + -0.044056981801986694, + 0.06509596854448318, + -0.055695440620183945, + 0.07756279408931732, + 0.024225207045674324, + -0.09719020128250122, + 0.03246178478002548, + -0.013484255410730839, + 0.07086104899644852, + -0.056609269231557846, + -0.06646908819675446, + 0.05867650732398033, + 0.019135020673274994, + 0.014214328490197659, + 0.1144840270280838, + -0.04129742458462715, + -0.02528328448534012, + -0.024747023358941078, + -0.05590583756566048, + -0.05164579302072525, + -0.008374800905585289, + -0.071380615234375, + 0.031180037185549736, + 0.02406587451696396, + -0.03671162202954292, + 0.057564880698919296, + 0.022987397387623787, + 0.11249631643295288, + -0.023212390020489693, + 0.09138627350330353, + 0.006042591296136379, + 0.08711894601583481, + 0.0031392844393849373, + 0.00046716592623852193, + -0.031058499589562416, + -0.06567180901765823, + 0.04073294252157211, + 0.015025581233203411, + 0.03368951380252838, + -0.044979289174079895, + -0.01193456444889307, + -0.01448457408696413, + -0.04188356548547745, + 0.016867483034729958, + 0.04266120865941048, + 0.026331240311264992, + 0.02761048451066017, + -0.03723841905593872, + -1.9258102668118227e-08, + -0.025373907759785652, + 0.004029717296361923, + -0.022150179371237755, + -0.003245436819270253, + -0.05609874054789543, + -0.04347847402095795, + -0.0033702135551720858, + 0.04165846109390259, + -0.03094014897942543, + 0.048414990305900574, + 0.03181713819503784, + -0.045400120317935944, + -0.16023953258991241, + 0.015621250495314598, + -0.08995186537504196, + 0.06576817482709885, + -0.06591779738664627, + 0.09199966490268707, + -0.02718646638095379, + -0.0703960508108139, + 0.05261947959661484, + 0.06331352144479752, + 0.03873186558485031, + -0.008448534645140171, + 0.012543783523142338, + 0.036958884447813034, + -0.08880867063999176, + -0.011453906074166298, + 0.08529244363307953, + 0.05993561074137688, + 0.02839236706495285, + 0.03730163350701332, + -0.035514235496520996, + -0.014857686124742031, + -0.0834839940071106, + -0.0064269620925188065, + 0.025315189734101295, + -0.018046563491225243, + -0.012102428823709488, + 0.10776864737272263, + -0.02496756613254547, + -0.0756237804889679, + -0.024090716615319252, + -0.013829714618623257, + 0.009240771643817425, + 0.004323370289057493, + 0.013631590642035007, + -0.007602158933877945, + -0.06694642454385757, + -0.013601385988295078, + -0.007360848132520914, + -0.08212224394083023, + 0.020131587982177734, + 0.03294171020388603, + 0.03470848873257637, + 0.010381056927144527, + 0.034458909183740616, + 0.07509512454271317, + -0.029553672298789024, + 0.038428664207458496, + 0.02879832498729229, + 0.016613850370049477, + -0.007026003208011389, + -0.010472715832293034 + ], + "sun-bold||day,daytime,daylight,clear,sunny,sunshine,light mode,brightness,lighten,brighten": [ + 0.033624034374952316, + 0.02125118486583233, + 0.05791283771395683, + 0.04828229546546936, + 0.03092455118894577, + -0.06007160246372223, + 0.10385795682668686, + -0.06650173664093018, + -0.02572578191757202, + -0.03638041019439697, + 0.03913497179746628, + -0.01919078640639782, + 0.03133409097790718, + 0.0076032946817576885, + 0.07254565507173538, + 0.06108522787690163, + -0.002693199785426259, + 0.03200520947575569, + -0.0007348897634074092, + 0.0009129855316132307, + 0.016911836341023445, + 0.005010650493204594, + -0.024805543944239616, + 0.020337441936135292, + 0.06914966553449631, + 0.06561243534088135, + 0.01887025311589241, + 0.010181446559727192, + 0.0038560242392122746, + -0.07341635972261429, + -0.026350168511271477, + 0.08129745721817017, + 0.0802692249417305, + 0.023270180448889732, + -0.0033159530721604824, + -0.011924401856958866, + 0.03080178238451481, + -0.07362920790910721, + -0.01971229910850525, + 0.07946823537349701, + -0.010713081806898117, + -0.13326552510261536, + -0.018757937476038933, + -0.00959726795554161, + -0.035028278827667236, + -0.009631714783608913, + -0.07889454066753387, + 0.006408740766346455, + 0.02010457217693329, + -0.007681149058043957, + -0.037213824689388275, + -0.09101461619138718, + -0.10615962743759155, + 0.02918500453233719, + 0.012171912007033825, + 0.058241911232471466, + -0.05049974471330643, + -0.02712417207658291, + 0.09586618095636368, + -0.046543367207050323, + 0.007074594963341951, + 0.03967363387346268, + -0.03343883901834488, + 0.059578340500593185, + 0.09506082534790039, + 0.005006186664104462, + -0.05534852668642998, + -0.03184553235769272, + -0.019155586138367653, + -0.009223964996635914, + -0.049032893031835556, + 0.025952322408556938, + 0.016043853014707565, + 0.004117319360375404, + -0.09720831364393234, + 0.018209140747785568, + 0.041145067662000656, + -0.014786392450332642, + -0.009845812804996967, + -0.10047821700572968, + -0.02096453681588173, + 0.017837386578321457, + -0.04603209346532822, + 0.0855196863412857, + 0.07132240384817123, + 0.04590637609362602, + -0.07861577719449997, + 0.019314032047986984, + -0.0017340451013296843, + -0.01118385884910822, + -0.14485234022140503, + -0.001548835076391697, + -0.0465669259428978, + 0.014067879877984524, + -0.09270675480365753, + 0.017037874087691307, + 0.09598864614963531, + -0.027075208723545074, + -0.028558993712067604, + 0.06856861710548401, + 0.07640299946069717, + 0.019711941480636597, + -0.07232318073511124, + 0.041406285017728806, + -0.014848518185317516, + -0.05295989289879799, + -0.033007606863975525, + -0.029354803264141083, + -0.03521806746721268, + -0.025758564472198486, + -0.005775198806077242, + -0.024848399683833122, + 0.0032178934197872877, + -0.08575110137462616, + 0.010608844459056854, + -0.0217976626008749, + -0.04816807806491852, + 0.01972300000488758, + 0.06490025669336319, + 0.07296987622976303, + 0.019783521071076393, + -0.020559852942824364, + 0.04192645847797394, + 0.03336895629763603, + 0.028734179213643074, + 0.03274690359830856, + 0.08109548687934875, + -2.4381510567450707e-33, + 0.07979535311460495, + 0.054957639425992966, + -0.0024847707245498896, + 0.06829429417848587, + 0.03921765089035034, + 0.018087007105350494, + -0.07593528926372528, + -0.02415049634873867, + -0.10437647998332977, + -0.02701723389327526, + -0.005137652158737183, + 0.07994523644447327, + -0.00022742425790056586, + 0.07858321815729141, + 0.07457399368286133, + -0.025165287777781487, + 0.07624822854995728, + 0.007126267999410629, + -0.023198125883936882, + -0.008178512565791607, + -0.07432842999696732, + 0.09199981391429901, + -0.0022571831941604614, + -0.03737891465425491, + -0.01573827862739563, + -0.064901202917099, + 0.06559401005506516, + -0.0054616779088974, + -0.0570230707526207, + 0.02711358852684498, + 0.1032876968383789, + -0.04747622460126877, + 0.1097828820347786, + 0.07859370857477188, + 0.03995448723435402, + 0.02231169119477272, + -0.07669202238321304, + -0.006964270956814289, + -0.010935328900814056, + 0.010495765134692192, + -0.10881414264440536, + 0.004367244429886341, + -0.04637228325009346, + -0.0008803865639492869, + 0.011927807703614235, + 0.12577612698078156, + -0.016612745821475983, + -0.00958239659667015, + -0.030481547117233276, + 0.0466841384768486, + -0.054190538823604584, + 0.0052896905690431595, + 0.0010043289512395859, + -0.045132219791412354, + -0.008665388450026512, + 0.026446664705872536, + -0.011073722504079342, + 0.02575094625353813, + -0.08206328004598618, + -0.007803184445947409, + 0.018580611795186996, + -0.02252664975821972, + 0.06523539870977402, + -0.08318763971328735, + -0.014268864877521992, + 0.03097325563430786, + -0.06194029375910759, + 0.026920026168227196, + 0.01501536089926958, + 0.01555101852864027, + -0.025704432278871536, + 0.06523134559392929, + 0.0594601184129715, + 0.04773438349366188, + 0.05698288977146149, + 0.012971698306500912, + 0.11565900593996048, + -0.016326334327459335, + -0.023518551141023636, + 0.007343254052102566, + -0.1327711045742035, + 0.006914092693477869, + -0.03027784451842308, + -0.01724221371114254, + -0.015422113239765167, + -0.006690230220556259, + -0.019859932363033295, + -0.013014954514801502, + -0.05782756581902504, + -0.02592608705163002, + -0.04745450243353844, + 0.023256104439496994, + 0.021763399243354797, + -0.08259347081184387, + -0.10956715047359467, + 4.070777344515891e-34, + 0.04841336980462074, + 0.01659090630710125, + -0.10494838654994965, + 0.02516120858490467, + -0.031856466084718704, + -0.010321217589080334, + -0.02947421930730343, + 0.043983276933431625, + -0.017507091164588928, + 0.030633365735411644, + 0.054283611476421356, + 0.00028832463431172073, + -0.09675443172454834, + -0.09383375197649002, + -0.026002103462815285, + 0.0006790027837269008, + 0.0007940508658066392, + 0.08490891009569168, + -0.06352127343416214, + 0.10119690746068954, + -0.06807084381580353, + -0.01063215546309948, + -0.041339974850416183, + 0.0934792011976242, + 0.03832698240876198, + 0.042107854038476944, + 0.04744701832532883, + -0.004122699610888958, + -0.04625972732901573, + 0.00019081785285379738, + -0.02864181622862816, + -0.0313895009458065, + 0.002173185348510742, + 0.041777461767196655, + -0.02850939705967903, + 0.08099783211946487, + 0.06351428478956223, + -0.10689535737037659, + -0.033498842269182205, + 0.03552667796611786, + -0.04535569250583649, + 0.009344168938696384, + 0.03350279480218887, + -0.040275197476148605, + -0.041458096355199814, + 0.013436811976134777, + -0.05073197931051254, + 0.02472790703177452, + -0.07435314357280731, + 0.057999514043331146, + 0.02842116542160511, + -0.06054958328604698, + -0.012992453761398792, + 0.05245593935251236, + -0.013304012827575207, + -0.08191143721342087, + 0.0050245970487594604, + 0.004880435764789581, + -0.05534311756491661, + 0.06665291637182236, + -0.0025372866075485945, + -0.04136769473552704, + -0.0032347864471375942, + 0.051981423050165176, + -0.036444827914237976, + -0.0880599245429039, + 0.010563814081251621, + -0.0056795417331159115, + 0.026970965787768364, + -0.00896975677460432, + 0.07688864320516586, + -0.10937907546758652, + -0.0656803697347641, + 0.05441159009933472, + 0.026890048757195473, + -0.013575351797044277, + 0.04035762697458267, + 0.03145340830087662, + -0.11385046690702438, + 0.06311960518360138, + -0.06287030130624771, + -0.030661078169941902, + -0.031888339668512344, + 0.1011284589767456, + -0.03086254559457302, + 0.021609121933579445, + -0.015708524733781815, + -0.02973402850329876, + -0.007698745466768742, + 0.007855040952563286, + -0.04400704801082611, + 0.11666373163461685, + -0.06880004703998566, + 0.02863963134586811, + -0.02129209041595459, + -2.114493113936078e-08, + -0.01646154560148716, + -0.0776788592338562, + -0.025089723989367485, + -0.01733037643134594, + 0.03152896463871002, + -0.024424303323030472, + 0.033048175275325775, + -0.07667999714612961, + -0.025662103667855263, + -0.017664751037955284, + 0.07453711330890656, + 0.005738924257457256, + -0.07335835695266724, + -0.017590412870049477, + 0.05232507735490799, + -0.004516229033470154, + -0.01507850643247366, + 0.03365900740027428, + -0.005273436661809683, + -0.004381001461297274, + -0.00339701259508729, + 0.03802751377224922, + 0.05068865045905113, + -0.02581614814698696, + 0.05791711062192917, + 0.021291185170412064, + -0.05461663380265236, + 0.040061257779598236, + 0.08124659210443497, + 0.04705256223678589, + 0.08538246154785156, + 0.0796714797616005, + 0.010619460605084896, + -0.05928213521838188, + -0.10660509020090103, + 0.043951764702796936, + -0.02399183250963688, + 0.055041730403900146, + -0.016513144597411156, + 0.12605035305023193, + 0.0033663511276245117, + 0.05404059588909149, + -0.028441818431019783, + -0.0003249114961363375, + -0.008470466360449791, + 0.015789292752742767, + 0.08484938740730286, + -0.01693362183868885, + -0.058476585894823074, + -0.11887108534574509, + 0.021174924448132515, + 0.046263497322797775, + 0.04865099862217903, + 0.01886683702468872, + -0.06546147912740707, + -0.020728526636958122, + 0.002503536641597748, + 0.03514876589179039, + 0.024198926985263824, + -0.010866273194551468, + 0.08105757087469101, + -0.00819446425884962, + -0.06264403462409973, + -0.0189862921833992 + ], + "sun-dim-bold||day,daytime,daylight,clear,sunny,sunshine,light mode,brightness,darken": [ + 0.05979833006858826, + 0.04512984678149223, + 0.05383223667740822, + 0.04622558504343033, + -0.010093748569488525, + -0.05214454233646393, + 0.0764627605676651, + -0.01765068620443344, + -0.01846134662628174, + -0.04357438161969185, + 0.03901165351271629, + -0.04752808064222336, + 0.01933818683028221, + 0.007185305934399366, + 0.060012221336364746, + 0.06690561026334763, + -0.014062050729990005, + 0.021892473101615906, + 0.00984338577836752, + 0.006954386830329895, + 0.04148688167333603, + 0.012256584130227566, + -0.04303392767906189, + 0.014429273083806038, + 0.07710893452167511, + 0.07785472273826599, + 0.019916366785764694, + 0.011607390828430653, + 0.009588047862052917, + -0.08056235313415527, + -0.05113929510116577, + 0.10507414489984512, + 0.06523563712835312, + 0.039931073784828186, + 0.005085345357656479, + -0.032285623252391815, + 0.03184137120842934, + -0.0439419150352478, + -0.012206141836941242, + 0.06268173456192017, + 0.009245445020496845, + -0.12465323507785797, + -0.012218308635056019, + -0.004152374807745218, + -0.04741716757416725, + 0.011442504823207855, + -0.07136451452970505, + 0.028098829090595245, + 0.009180034510791302, + -0.02704000473022461, + -0.02732236310839653, + -0.08357329666614532, + -0.10323160886764526, + 0.05306234210729599, + 0.005883865989744663, + 0.06308851391077042, + -0.054627303034067154, + -0.027949409559369087, + 0.0880642682313919, + -0.04215947538614273, + 0.008101182989776134, + 0.03841470554471016, + -0.033589594066143036, + 0.04174765571951866, + 0.06647251546382904, + 0.025264060124754906, + -0.070066437125206, + -0.03887968137860298, + -0.02577509917318821, + -0.022755175828933716, + -0.06163303554058075, + 0.03546537831425667, + 0.001150084543041885, + 0.005625623743981123, + -0.1013295128941536, + -0.01055118814110756, + 0.03436581790447235, + -0.013390148989856243, + 0.009332967922091484, + -0.07476108521223068, + -0.011666862294077873, + 0.033388033509254456, + -0.06646174192428589, + 0.08890494704246521, + 0.06228892505168915, + 0.05155080184340477, + -0.05625659599900246, + 0.014916506595909595, + 0.003983324393630028, + -0.021316325291991234, + -0.14160998165607452, + 0.011589327827095985, + -0.03809438273310661, + 0.021087775006890297, + -0.08781309425830841, + 0.016519147902727127, + 0.09725239872932434, + -0.03943662345409393, + -1.0720544196374249e-05, + 0.07243337482213974, + 0.05695602297782898, + 0.0013422674965113401, + -0.08431581407785416, + 0.054098937660455704, + -0.027786849066615105, + -0.02175423502922058, + -0.0068547409027814865, + -0.018556592985987663, + -0.029864249750971794, + -0.04725544899702072, + 0.005831690970808268, + -0.023917976766824722, + 0.01340919453650713, + -0.07250234484672546, + 0.01582683064043522, + -0.0034910074900835752, + -0.05382100120186806, + 0.03702522814273834, + 0.0634763240814209, + 0.032008618116378784, + 0.02685397118330002, + -0.009082499891519547, + 0.024034688249230385, + 0.022995473816990852, + 0.0034631898161023855, + 0.024481281638145447, + 0.08562074601650238, + -2.5011041056903813e-33, + 0.08976254612207413, + 0.04988900199532509, + -0.012039863504469395, + 0.09096274524927139, + 0.04890415817499161, + 0.029571708291769028, + -0.08610773831605911, + -0.008999618701636791, + -0.10427261888980865, + -0.014783919788897038, + -0.001204279251396656, + 0.050844885408878326, + 0.0020235064439475536, + 0.07929924130439758, + 0.08210615813732147, + 0.010496832430362701, + 0.10778974741697311, + 0.00765665527433157, + -0.01203205157071352, + -0.03760731220245361, + -0.055947549641132355, + 0.10306129604578018, + 0.0065942611545324326, + -0.03083454631268978, + -0.025414513424038887, + -0.06609589606523514, + 0.07325208932161331, + -0.011840983293950558, + -0.05725603550672531, + 0.018275970593094826, + 0.10006719827651978, + -0.05111471563577652, + 0.11898311972618103, + 0.08146832138299942, + 0.053699567914009094, + 0.032792218029499054, + -0.06477302312850952, + 0.0036973615642637014, + -0.003929745405912399, + 0.0060020810924470425, + -0.12016252428293228, + 0.01096440851688385, + -0.045170772820711136, + 0.005147748161107302, + 0.0009644542005844414, + 0.11107876151800156, + 0.001040343544445932, + -0.0026956116780638695, + -0.02896616980433464, + 0.05511409416794777, + -0.06133418530225754, + -0.008906037546694279, + 0.0037213312461972237, + -0.052728597074747086, + -0.007333781570196152, + 0.01624372974038124, + -0.01906256563961506, + 0.036631420254707336, + -0.07534220069646835, + 0.007793962024152279, + 0.02525813691318035, + -0.014090095646679401, + 0.03698040544986725, + -0.09112370014190674, + -0.00813570711761713, + 0.003596359398216009, + -0.061558060348033905, + 0.010205446742475033, + 0.01054296363145113, + 0.0001245836028829217, + -0.028671197593212128, + 0.05129721760749817, + 0.07533814758062363, + 0.02268753945827484, + 0.03971690312027931, + -0.005427315831184387, + 0.11647500097751617, + -0.016212936490774155, + -0.029466921463608742, + 0.01719238981604576, + -0.1073535904288292, + 0.024326080456376076, + -0.045711930841207504, + -0.04046895354986191, + -0.022046661004424095, + -0.021092768758535385, + -0.01283216755837202, + 0.010221394710242748, + -0.045937709510326385, + -0.05162970349192619, + -0.08491268754005432, + 0.029506772756576538, + 0.026165056973695755, + -0.07932568341493607, + -0.09597529470920563, + 4.091369158641917e-34, + 0.06094801425933838, + 0.01871567964553833, + -0.1103578433394432, + 0.028239542618393898, + -0.024864131584763527, + -0.005900349467992783, + -0.007138713728636503, + 0.040659449994564056, + -0.040378741919994354, + 0.015919098630547523, + 0.06164957582950592, + 0.011012756265699863, + -0.09851914644241333, + -0.09278526902198792, + 0.01054900512099266, + 0.022175392135977745, + -0.027569137513637543, + 0.046354010701179504, + -0.08107756823301315, + 0.07219948619604111, + -0.06903678178787231, + -0.014455316588282585, + -0.05280175805091858, + 0.07246959954500198, + 0.023742765188217163, + 0.024874547496438026, + 0.04517572373151779, + 0.00013871447299607098, + -0.07951376587152481, + 0.03188341110944748, + -0.023000430315732956, + -0.033115677535533905, + -0.00491051422432065, + 0.04195764660835266, + -0.0175514817237854, + 0.05645674094557762, + 0.06734783947467804, + -0.11835481226444244, + -0.050007447600364685, + 0.0040582325309515, + -0.05291590839624405, + 0.008286794647574425, + 0.030831482261419296, + -0.047542691230773926, + -0.04973330721259117, + 0.01625308021903038, + -0.06159275397658348, + 0.010641415603458881, + -0.039205193519592285, + 0.04147550091147423, + 0.03592928498983383, + -0.05833859741687775, + -0.018524812534451485, + 0.05312033370137215, + -0.012968462891876698, + -0.08224514871835709, + 0.023543087765574455, + 0.023118160665035248, + -0.005845401901751757, + 0.05595846101641655, + -0.006532982923090458, + -0.0736774355173111, + 0.009817861020565033, + 0.03325219824910164, + -0.0342210978269577, + -0.0964905321598053, + 0.017273325473070145, + 0.010638085193932056, + 0.025173239409923553, + -0.0023920265957713127, + 0.08562512695789337, + -0.09877888113260269, + -0.06526762992143631, + 0.046856291592121124, + -0.009947269223630428, + -0.02698536403477192, + 0.036111947149038315, + 0.035149287432432175, + -0.12025580555200577, + 0.08470487594604492, + -0.04853416234254837, + -0.03070116601884365, + -0.02126050740480423, + 0.09145861119031906, + -0.0482177771627903, + 0.011684101074934006, + 0.00017633622337598354, + -0.021987631916999817, + 0.0094218198210001, + 0.02471300959587097, + -0.05319769307971001, + 0.08895955234766006, + -0.04898689687252045, + 0.007562325801700354, + -0.02131103165447712, + -2.0451349058703272e-08, + -0.018668172881007195, + -0.07032778114080429, + -0.03533847630023956, + -0.012411205098032951, + 0.007882501929998398, + -0.047758933156728745, + 0.04201643913984299, + -0.039236027747392654, + 0.0030726902186870575, + 0.002386636333540082, + 0.09827052801847458, + 0.009376691654324532, + -0.06465145945549011, + -0.03366956114768982, + 0.07706824690103531, + -0.012958145700395107, + -0.03454658389091492, + 0.046725913882255554, + 0.005225701257586479, + 0.007628634572029114, + 0.008378070779144764, + 0.018032792955636978, + 0.05552051588892937, + -0.018898338079452515, + 0.06284259259700775, + 0.006844661198556423, + -0.042077790945768356, + 0.03778877481818199, + 0.0800139307975769, + 0.044210031628608704, + 0.1036437600851059, + 0.10930051654577255, + 0.03250590339303017, + -0.07570846378803253, + -0.11461470276117325, + 0.03953975811600685, + -0.05980907008051872, + 0.05892619490623474, + -0.012707691639661789, + 0.11734503507614136, + -0.004003476817160845, + 0.034189336001873016, + -0.04269133880734444, + -0.0060729458928108215, + 0.010383247397840023, + -0.013808598741889, + 0.11195142567157745, + -0.015852784737944603, + -0.053835950791835785, + -0.10487321764230728, + 0.010409128852188587, + 0.07341691106557846, + 0.04485172778367996, + 0.023310841992497444, + -0.08026877790689468, + -0.036737315356731415, + -0.0023616598919034004, + 0.0330517552793026, + 0.000607502122875303, + -0.02329953759908676, + 0.07716910541057587, + 0.010712127201259136, + -0.06772783398628235, + -0.043233152478933334 + ], + "sun-horizon-bold||day,daytime,daylight,clear,sunny,sunshine,sunrise,sunset": [ + 0.05521129444241524, + 0.04062115028500557, + 0.02922085113823414, + 0.035013969987630844, + 0.019601833075284958, + -0.032429151237010956, + 0.08430971950292587, + -0.07168897241353989, + 0.031361330300569534, + -0.04462645202875137, + 0.0007579143275506794, + -0.047626905143260956, + 0.0010637128725647926, + 0.0003872638044413179, + 0.04666130989789963, + 0.03518453240394592, + 0.01680992916226387, + -0.004903008230030537, + 0.04024599492549896, + -0.010138780809938908, + -0.058192942291498184, + 0.03365359082818031, + -0.03263196721673012, + 0.08124517649412155, + 0.05777893215417862, + 0.10832256078720093, + 0.024109788239002228, + -0.012964299879968166, + -0.00902479887008667, + -0.03914443030953407, + -0.04357597976922989, + 0.06967608630657196, + 0.06103997677564621, + 0.017964769154787064, + 0.04386573284864426, + 0.006978567689657211, + 0.02154458314180374, + -0.06689883023500443, + -0.04972843825817108, + 0.03603927418589592, + -0.010742926970124245, + -0.10417616367340088, + 0.024497075006365776, + -0.000519019493367523, + -0.03439304605126381, + 0.004353675525635481, + -0.08472400158643723, + 0.03833147883415222, + 0.0650557354092598, + 0.01605573110282421, + -0.08653563261032104, + -0.06858204305171967, + -0.13910439610481262, + 0.020944222807884216, + 0.02348797209560871, + 0.13376738131046295, + -0.04862534627318382, + -0.028776908293366432, + 0.07596880197525024, + 0.024365799501538277, + -0.0293856430798769, + 0.04182787612080574, + -0.03837276250123978, + 0.08378967642784119, + 0.1054825559258461, + -0.016909509897232056, + -0.0966857373714447, + -0.029381150379776955, + -0.03147077187895775, + 0.028193853795528412, + -0.06190471723675728, + 0.036612823605537415, + 0.000550883065443486, + -0.044311750680208206, + -0.055139657109975815, + 0.026504216715693474, + 0.03255383297801018, + -0.044377028942108154, + -0.023699697107076645, + -0.10517216473817825, + 0.01633877120912075, + 0.03861214220523834, + -0.054243043065071106, + 0.035225532948970795, + 0.0021080311853438616, + 0.021591423079371452, + -0.08660946786403656, + 0.024578241631388664, + 0.027373207733035088, + -0.05587392672896385, + -0.1054464727640152, + -0.04394445940852165, + -0.0854291096329689, + 0.02221563272178173, + -0.08263419568538666, + 0.0011050407774746418, + 0.04643087834119797, + -0.0058532413095235825, + 0.004517444875091314, + 0.03081369400024414, + 0.08522901684045792, + 0.007987606339156628, + -0.0399719700217247, + 0.010570204816758633, + -0.002800903981551528, + 0.015097778290510178, + -0.05744758993387222, + -0.03698507696390152, + -0.04940089210867882, + -0.023443520069122314, + 0.00810191035270691, + -0.0464545376598835, + 0.025469515472650528, + -0.04410199075937271, + -0.003632768290117383, + -0.0003508965019136667, + -0.04505664482712746, + -0.04383191093802452, + 0.030150240287184715, + 0.07235801964998245, + -0.040238142013549805, + -0.006883868016302586, + 0.046077679842710495, + 0.04123598709702492, + -0.03307437151670456, + 0.04211720451712608, + 0.09781721979379654, + -4.642495552427619e-33, + 0.07079384475946426, + 0.05318523570895195, + 0.019393373280763626, + 0.05310129374265671, + 0.0532197505235672, + -0.026779988780617714, + -0.03194517642259598, + -0.002633277792483568, + -0.08798274397850037, + 0.0058537935838103294, + 0.017861435189843178, + 0.027703512459993362, + 0.001615583780221641, + 0.03541572019457817, + 0.0523432232439518, + -0.027945276349782944, + 0.07217906415462494, + 0.018663348630070686, + -0.07339684665203094, + 0.040027592331171036, + -0.06982347369194031, + 0.08876030147075653, + -0.039192330092191696, + -0.07357897609472275, + -0.034221041947603226, + -0.07218123227357864, + 0.05669354647397995, + -0.015923574566841125, + -0.04864705726504326, + 0.036765068769454956, + 0.09609248489141464, + -0.022358383983373642, + 0.08655667304992676, + 0.04780619218945503, + 0.04642266780138016, + 0.04547887668013573, + -0.029913267120718956, + 0.0018412197241559625, + -0.013363558799028397, + 0.012803677469491959, + -0.13561946153640747, + 0.022639717906713486, + -0.0520966611802578, + 0.0011862257961183786, + 0.01704970747232437, + 0.07760215550661087, + 0.011753787286579609, + -0.04145791009068489, + -0.013055908493697643, + 0.03960270807147026, + -0.05821017548441887, + -0.011748258955776691, + -0.04368624463677406, + -0.0405714325606823, + -0.021272534504532814, + -0.007877535186707973, + -0.035983435809612274, + 0.021741168573498726, + -0.07099240273237228, + 0.043326232582330704, + 0.008120434358716011, + -0.03406740352511406, + 0.005167000461369753, + -0.09216079860925674, + -0.015013753436505795, + 0.04148097336292267, + -0.013179654255509377, + 0.057197391986846924, + 0.00013960417709313333, + 0.03486016020178795, + 0.03840220719575882, + 0.014102783985435963, + 0.08351296186447144, + 0.05549947917461395, + 0.059702783823013306, + 0.017413726076483727, + 0.11420997232198715, + 0.055874112993478775, + -0.0331001915037632, + 0.0014078374952077866, + -0.11687913537025452, + 0.06843433529138565, + -0.01618908904492855, + -0.001393349259160459, + -0.028575807809829712, + 0.032827943563461304, + -0.0015921713784337044, + 0.021246805787086487, + -0.04453565552830696, + -0.026269393041729927, + -0.10341667383909225, + 0.0019197312649339437, + 0.06947635114192963, + -0.06734628975391388, + -0.11464749276638031, + 7.20234342709691e-34, + 0.06296336650848389, + -0.006858917884528637, + -0.1017422080039978, + -0.04583815857768059, + -0.024689793586730957, + 0.0213825311511755, + -0.039532337337732315, + 0.07830332219600677, + -0.07103074342012405, + 0.027687765657901764, + -0.02547425962984562, + 0.0015502194873988628, + -0.05464133992791176, + -0.0930841714143753, + -0.047510117292404175, + -0.04881156608462334, + 0.019566142931580544, + 0.07547024637460709, + -0.0813148245215416, + 0.11785894632339478, + -0.019312292337417603, + -0.05293571203947067, + -0.061195503920316696, + 0.08600973337888718, + 0.05357849970459938, + 0.0587681382894516, + 0.08148086816072464, + 0.016872145235538483, + -0.03109145723283291, + 0.03185608237981796, + -0.09105715155601501, + -0.04972398281097412, + -0.0207511018961668, + 0.025509390980005264, + -0.02492961660027504, + 0.08196242898702621, + 0.026757188141345978, + -0.10678058862686157, + -0.04592173919081688, + 0.01381013821810484, + -0.06908201426267624, + 0.020542308688163757, + 0.055326107889413834, + -0.03445376455783844, + -0.0122443325817585, + -0.00963490828871727, + -0.0775589793920517, + 0.0894564762711525, + -0.03516872599720955, + 0.05107655003666878, + -0.021790923550724983, + -0.05857088789343834, + 0.011218818835914135, + 0.06927219778299332, + -0.026063188910484314, + -0.05599810928106308, + 0.023626437410712242, + -0.012668518349528313, + 0.003984382841736078, + 0.014981260523200035, + -0.026649054139852524, + -0.01073830109089613, + -0.04669489338994026, + 0.03276607766747475, + 0.009029809385538101, + -0.08920224010944366, + 0.003735038684681058, + -0.00012816731759812683, + -0.005881499964743853, + 0.011614974588155746, + -0.019516190513968468, + -0.08529654145240784, + -0.07871811091899872, + 0.051882702857255936, + 0.013134555891156197, + 0.01411972101777792, + 0.04545898735523224, + 0.05221671983599663, + -0.055108796805143356, + 0.08185472339391708, + -0.057560719549655914, + -0.04490699619054794, + -0.004857722669839859, + 0.09721570461988449, + -0.008080405183136463, + 0.023741258308291435, + -0.006793414708226919, + -0.07159265130758286, + -0.03387068584561348, + 0.041241470724344254, + -0.07296819984912872, + 0.07440786063671112, + -0.0957242101430893, + 0.013353544287383556, + -0.04449397325515747, + -2.053861436479565e-08, + 0.03238924592733383, + -0.02799786813557148, + -0.04720456898212433, + 0.0007008368265815079, + -0.031093159690499306, + -0.030863750725984573, + 0.043766751885414124, + -0.08092782646417618, + -0.023344017565250397, + 0.009723419323563576, + 0.027738800272345543, + 0.003844579216092825, + -0.06926706433296204, + -0.004431635141372681, + -0.007620168384164572, + 0.006715176161378622, + -0.03911956399679184, + 0.015025981701910496, + 0.015506916679441929, + 0.009865457192063332, + 0.011133944615721703, + 0.035644229501485825, + 0.09964407980442047, + -0.05712172016501427, + 0.05369335040450096, + 0.03986474871635437, + -0.061522066593170166, + 0.03528299555182457, + 0.050684817135334015, + 0.0532439649105072, + 0.03672191873192787, + 0.0961686372756958, + -0.014603979885578156, + -0.013189400546252728, + -0.0774950161576271, + -0.023165583610534668, + -0.01663324236869812, + 0.05518152564764023, + -0.05037464201450348, + 0.09509766101837158, + 0.020762909203767776, + 0.08691934496164322, + 0.0014107039896771312, + -0.007898686453700066, + -0.0032511346507817507, + 0.02954583242535591, + 0.1460941880941391, + -0.037424445152282715, + -0.0630916878581047, + -0.09373591840267181, + -0.00870451144874096, + 0.013668054714798927, + 0.05345192924141884, + -0.004013335332274437, + -0.04474179819226265, + -0.02250344678759575, + 0.011498244479298592, + -0.021500905975699425, + 0.0127113563939929, + -0.022291574627161026, + 0.10848850756883621, + 0.001164739951491356, + -0.05156908184289932, + 0.008616535924375057 + ], + "sunglasses-bold||vision,sun,spectacles": [ + -0.008459297940135002, + 5.700863403035328e-05, + -0.004717222880572081, + 0.0212992075830698, + 0.0750570073723793, + -0.03747064992785454, + 0.16595803201198578, + -0.06948418915271759, + -0.012492816895246506, + 0.0016860109753906727, + 0.014059982262551785, + -0.04836484044790268, + 0.018580902367830276, + -0.0023031907621771097, + 0.054468490183353424, + 0.03865620121359825, + 0.011649581603705883, + -0.007901845499873161, + 0.015299435704946518, + 0.03410165384411812, + -0.01048807892948389, + -0.0014892196049913764, + -0.015925509855151176, + 0.06847932189702988, + 0.013267138972878456, + 0.09243618696928024, + 0.01749829202890396, + -0.02011820673942566, + -0.016774609684944153, + -0.030073024332523346, + -0.018971698358654976, + 0.02568356692790985, + 0.013922765851020813, + 0.02546054497361183, + -0.001016658847220242, + -0.018497956916689873, + -0.0170353502035141, + -0.01741795428097248, + -0.04407138749957085, + 0.053707778453826904, + -0.05075759440660477, + -0.05475189536809921, + -0.057616107165813446, + 0.013023207895457745, + -0.010811650194227695, + -0.0025114649906754494, + -0.012133335694670677, + 0.06538651883602142, + 0.013034244999289513, + -0.016864949837327003, + -0.12100918591022491, + -0.07875330001115799, + -0.14118634164333344, + -0.06951063126325607, + 0.06508738547563553, + 0.07374344766139984, + -0.1274838000535965, + -0.0009791390039026737, + 0.0930795669555664, + -0.002869634423404932, + 0.0841807946562767, + -0.013707125559449196, + -0.021822473034262657, + 0.07729251682758331, + -0.006931161507964134, + 0.004911824595183134, + -0.023474127054214478, + -0.01679491251707077, + 0.02024270035326481, + 0.047017913311719894, + -0.020092206075787544, + 0.033672232180833817, + -0.011309707537293434, + -0.07301946729421616, + -0.0795087069272995, + 0.001810121233575046, + 0.10184777528047562, + -0.09950349479913712, + -0.0540163479745388, + -0.0404072105884552, + -0.05537896230816841, + -0.04439007490873337, + -0.03633580356836319, + 0.02169109508395195, + 0.04806084185838699, + -0.0049397991970181465, + -0.10410349816083908, + -0.03336106240749359, + -0.02239125594496727, + -0.018917148932814598, + -0.10808253288269043, + -0.011417508125305176, + -0.0578278973698616, + -0.027637606486678123, + 0.0011777121108025312, + 0.01948555000126362, + 0.02116175927221775, + -0.019386393949389458, + 0.005074603948742151, + 0.08649100363254547, + 0.0877947211265564, + 0.024083534255623817, + -0.00869461614638567, + 0.033592648804187775, + -0.03441159799695015, + -0.018691616132855415, + 0.01648782193660736, + 0.02696433663368225, + -0.0006648694979958236, + 0.02169070579111576, + 0.007462687790393829, + -0.007185542955994606, + -0.015080146491527557, + -0.055370789021253586, + -0.06957319378852844, + -0.023466331884264946, + -0.005601796321570873, + -0.011155840009450912, + 0.13276483118534088, + 0.06451131403446198, + 0.007932365871965885, + 0.00882260873913765, + 0.06088755652308464, + 0.03678644448518753, + -0.0034656410571187735, + 0.009428839199244976, + 0.0034938473254442215, + -3.364904374448631e-33, + 0.05194814130663872, + 0.10198706388473511, + -0.006499160081148148, + 0.06667229533195496, + 0.0164701696485281, + 0.016850758343935013, + -0.018618671223521233, + 0.018031973391771317, + -0.09940429776906967, + 0.007341636344790459, + 0.01683112420141697, + 0.06615737825632095, + -0.036695487797260284, + 0.024481462314724922, + 0.10397660732269287, + -0.049086716026067734, + 0.05151485651731491, + 0.03209006041288376, + -0.1439528614282608, + -0.026724396273493767, + -0.07719411700963974, + 0.06309542804956436, + -0.037932589650154114, + 0.04174118861556053, + -0.024793492630124092, + -0.0037821251899003983, + 0.06630394607782364, + 0.007586462423205376, + -0.038655947893857956, + 0.05072504281997681, + 0.04516049474477768, + 0.047719039022922516, + 0.054645832628011703, + 0.04318850487470627, + -0.002973781432956457, + 0.05065416172146797, + -0.10481441020965576, + -0.006484847981482744, + 0.057980164885520935, + -0.023164384067058563, + -0.09621375799179077, + 0.07526187598705292, + 0.0191674642264843, + 0.01901007816195488, + -0.03654307872056961, + 0.11952190101146698, + -0.04935233294963837, + 0.047327566891908646, + -0.055059801787137985, + -0.02184281498193741, + -0.03441990539431572, + -0.04950366169214249, + -0.05214307829737663, + -0.025094587355852127, + -0.04098863527178764, + 0.003664687043055892, + -0.026931587606668472, + 0.08995223790407181, + -0.03802943974733353, + -0.08883842080831528, + 0.012266584672033787, + -0.029741190373897552, + -0.0029040968511253595, + -0.0402822345495224, + 0.0012666387483477592, + 0.0020327819511294365, + -0.02626594342291355, + 0.060238875448703766, + 0.0031479252502322197, + -0.018481120467185974, + 0.010515468195080757, + 0.07504650205373764, + 0.00461124861612916, + 0.055833615362644196, + 0.051758602261543274, + 0.021282771602272987, + 0.062287893146276474, + 0.025931252166628838, + -0.019908113405108452, + -0.004770694766193628, + -0.12183298915624619, + 0.07612219452857971, + 0.007372192107141018, + 0.009884696453809738, + 0.013227120973169804, + 0.008112803101539612, + -0.029253629967570305, + -0.07321660965681076, + -0.021658582612872124, + -0.003057818626984954, + -0.02809019759297371, + -0.024540213868021965, + -0.012746445834636688, + -0.09489331394433975, + -0.1304415613412857, + 3.6359920602717187e-34, + 0.04355856776237488, + 0.01206683088093996, + 0.03908771649003029, + -0.06744999438524246, + -0.012852566316723824, + -0.01830497942864895, + 0.0017422218807041645, + 0.02754700556397438, + -0.0224551260471344, + -0.03327395021915436, + 0.01739824004471302, + -0.01718197390437126, + -0.07786164432764053, + -0.059507131576538086, + -0.05861344933509827, + -0.02313682623207569, + 0.08185914158821106, + 0.01624116860330105, + -0.027382882311940193, + 0.015219509601593018, + 0.00467723561450839, + -0.01255785208195448, + -0.017035728320479393, + 0.01647770404815674, + -0.06534142792224884, + 0.05831945687532425, + 0.07542083412408829, + -0.06017083674669266, + -0.09461148828268051, + 0.0001204705040436238, + -0.0023831466678529978, + 0.01292109303176403, + -0.04681140184402466, + 0.09926054626703262, + 0.024936899542808533, + 0.0620654858648777, + -0.08277469128370285, + -0.0819869339466095, + -0.025075038895010948, + -0.014856395311653614, + -0.017472663894295692, + -0.015767961740493774, + 0.08613111078739166, + 0.002063997322693467, + 0.015286051668226719, + -0.08831316232681274, + -0.016060858964920044, + 0.022526465356349945, + -0.056341931223869324, + -0.00978203397244215, + -0.042374387383461, + -0.017815634608268738, + 0.0022256269585341215, + 0.042671676725149155, + -0.12458545714616776, + -0.08033914864063263, + -0.01271042786538601, + 0.048240408301353455, + 0.031501952558755875, + 0.015761150047183037, + 0.02686700038611889, + 0.015890521928668022, + -0.06435481458902359, + 0.014254695735871792, + -0.030995363369584084, + -0.013065089471638203, + -0.012299002148211002, + 0.007741753477603197, + 0.08314381539821625, + -0.00570828840136528, + 0.0602417066693306, + -0.09728030115365982, + -0.08266699314117432, + 0.0539863295853138, + -0.005125909578055143, + -0.008647437207400799, + 0.028424952179193497, + 0.08149170875549316, + -0.004779001697897911, + 0.1139434352517128, + -0.013631085865199566, + 0.0163172148168087, + -0.010802162811160088, + 0.12916238605976105, + 0.00412796251475811, + 0.040926866233348846, + 0.017505355179309845, + -0.023436706513166428, + -0.03137163445353508, + -0.01668037287890911, + -0.0511457696557045, + 0.0514875166118145, + -0.03193677216768265, + 0.02532736025750637, + -0.028395697474479675, + -1.6172908345879478e-08, + 0.01894238404929638, + 0.036359746009111404, + -0.01658739149570465, + 0.009305776096880436, + -0.013938993215560913, + -0.006430116482079029, + -0.06704358756542206, + -0.06388825923204422, + -0.08251833915710449, + -0.051135968416929245, + -0.015455192886292934, + 0.030541779473423958, + -0.0037628726568073034, + -0.0022571547888219357, + 0.0042914715595543385, + 0.00171654240693897, + -0.007969720289111137, + 0.058344509452581406, + -0.0053618294186890125, + -0.022489169612526894, + 0.013734805397689342, + 0.007884903810918331, + 0.08337855339050293, + 0.0627593994140625, + 0.0028215241618454456, + 0.04228506237268448, + -0.02813885360956192, + -0.005860456265509129, + 0.08614785969257355, + 0.1251247525215149, + 0.09719259291887283, + 0.07850342988967896, + 0.000820165267214179, + 0.02671382762491703, + -0.05460861697793007, + -0.04064038395881653, + -0.05764968693256378, + 0.01345646008849144, + 0.04108671844005585, + 0.0754433125257492, + -0.013771587051451206, + -0.0473630428314209, + 0.04216605797410011, + 0.05077865347266197, + -0.044931355863809586, + 0.014642825350165367, + 0.09537835419178009, + -0.03989558294415474, + -0.09546229243278503, + -0.05694563686847687, + 0.02781754918396473, + -0.002831800142303109, + -0.008242576383054256, + 0.05729098245501518, + -0.14588207006454468, + -0.09087598323822021, + 0.07632113248109818, + 0.029938509687781334, + -0.05782950296998024, + -0.021629711613059044, + 0.11612889915704727, + -0.002077519427984953, + -0.06260467320680618, + 0.005364763550460339 + ], + "superset-of-bold||*new*,\u2287,superset of,set,member,mathematics,arithmetic,calculator": [ + -0.036976877599954605, + -0.04400644823908806, + -0.017445221543312073, + 0.023418301716446877, + -0.031947460025548935, + -0.007775900419801474, + 0.06468426436185837, + 0.021043315529823303, + -0.039459727704524994, + 0.004958635661751032, + 0.06866080313920975, + -0.031938496977090836, + 0.08207587897777557, + -0.06716840714216232, + -0.01023617759346962, + 0.014847925864160061, + 0.006373370531946421, + -0.02997710183262825, + -0.06082804128527641, + -0.008172262459993362, + 0.07452365756034851, + -0.032915618270635605, + -0.020471377298235893, + 0.0971938893198967, + 0.07240399718284607, + 0.01959678903222084, + 0.003475023666396737, + -0.04529821127653122, + 0.08859579265117645, + 0.03381595388054848, + -0.11051122844219208, + 0.02188093215227127, + 0.10740199685096741, + 0.035383936017751694, + 0.046750348061323166, + 0.06292461603879929, + 0.025540009140968323, + -0.003182465909048915, + 0.012990929186344147, + 0.026421012356877327, + -0.04042910411953926, + -0.0719393640756607, + 0.04889916256070137, + 0.014225505292415619, + 0.003252846421673894, + 0.06748564541339874, + -0.053191132843494415, + 0.022622548043727875, + 0.003592667169868946, + -0.07048109173774719, + -0.02998926118016243, + -0.06290354579687119, + -0.09644979983568192, + 0.04170229658484459, + 0.088832788169384, + 0.07445301115512848, + -0.054726824164390564, + -0.1267988383769989, + -0.030782056972384453, + -0.09118945896625519, + -0.0346355214715004, + 0.018776236101984978, + 0.05548153817653656, + -0.02651926875114441, + 0.014619406312704086, + 0.0715407058596611, + -0.048332009464502335, + 0.031467583030462265, + 0.018961433321237564, + 0.0794794112443924, + -0.008677152916789055, + 0.027798771858215332, + 0.028023621067404747, + 0.07374352216720581, + -0.05170511081814766, + 0.011784037575125694, + 0.06834668666124344, + -0.03130774945020676, + -0.011058666743338108, + -0.011065663769841194, + -0.018999457359313965, + -0.06710126250982285, + 0.016630645841360092, + 0.027103159576654434, + 0.09133291989564896, + -0.012979703955352306, + 0.012061737477779388, + -0.06950130313634872, + -0.05442526564002037, + -0.002226012758910656, + -0.0586375966668129, + -0.01770457625389099, + -0.0004651371273212135, + 0.046221211552619934, + -0.07841291278600693, + 0.07773228734731674, + 0.07486330717802048, + 0.032399121671915054, + 0.006234539207071066, + 0.07125525921583176, + 0.022007495164871216, + 0.03659364953637123, + 0.005993796046823263, + -0.030072348192334175, + -0.04105103760957718, + -0.02243170328438282, + -0.002314652781933546, + -0.009290916845202446, + 0.04716670140624046, + -0.03490659222006798, + 0.04356524720788002, + -0.18911822140216827, + -0.024826129898428917, + -0.0984857976436615, + -0.034330323338508606, + 0.008681245148181915, + -0.04845813661813736, + 0.03282177075743675, + -0.0002154488756787032, + 0.017654450610280037, + 0.03225015476346016, + 0.05294772610068321, + 0.02472730353474617, + -0.010359696112573147, + 0.028623588383197784, + 0.02322676032781601, + -0.07477478682994843, + -8.933788290318079e-34, + 0.07975208759307861, + 0.046911418437957764, + -0.05216361582279205, + 0.008762123063206673, + -0.03905573859810829, + 0.014065270312130451, + -0.02406707964837551, + -0.023719726130366325, + -0.06804169714450836, + 0.06767846643924713, + 0.08900398015975952, + 0.09006325900554657, + -0.030640747398138046, + 0.052422910928726196, + 0.10245151072740555, + -0.028657259419560432, + 0.02081480622291565, + -0.11375312507152557, + -0.009127066470682621, + -0.026853041723370552, + -0.005583061370998621, + 0.09399863332509995, + -0.04518318176269531, + -0.038866076618433, + -0.0465400330722332, + -0.029579872265458107, + 0.07233962416648865, + 0.00050432636635378, + -0.11847610771656036, + 0.029975177720189095, + -0.03183327615261078, + 0.024451294913887978, + 0.008401473052799702, + 0.052456021308898926, + -0.033924251794815063, + -0.0375400073826313, + -0.018049687147140503, + -0.049399543553590775, + 0.06442971527576447, + -0.02576206624507904, + -0.004302747081965208, + 0.000978771597146988, + 0.02182314358651638, + 0.007354178931564093, + 0.02943209744989872, + 0.06421739608049393, + -0.057193927466869354, + 0.07464181631803513, + 0.07231936603784561, + -0.026684274896979332, + -0.030630560591816902, + -0.0368434339761734, + -0.029982484877109528, + 0.0030882309656590223, + -0.013175389729440212, + -0.01668933406472206, + -0.040566615760326385, + 0.09936566650867462, + 0.05504368245601654, + 0.03759126737713814, + -0.018685655668377876, + -0.022630056366324425, + 0.05226333439350128, + 0.09084776043891907, + -0.15549373626708984, + -0.00083986233221367, + -0.13770513236522675, + -0.006766531150788069, + 0.0695711299777031, + 0.04563764110207558, + -0.022949963808059692, + 0.07113751024007797, + 0.010871697217226028, + 0.062171246856451035, + 0.020679069682955742, + 0.02110779471695423, + 0.05061061680316925, + -0.04927778244018555, + -0.0675281435251236, + 0.006060603074729443, + -0.03309904783964157, + 0.07675649225711823, + -0.013320747762918472, + 0.07665787637233734, + 0.02586042322218418, + 0.026501743122935295, + 0.024350440129637718, + -0.055091824382543564, + 0.02622033655643463, + -0.06115899607539177, + -0.18871985375881195, + -0.04663470387458801, + 0.04980064183473587, + -0.11443434655666351, + -0.13267123699188232, + -3.372743452400677e-33, + -0.004245059564709663, + 0.03650524094700813, + -0.014980262145400047, + 0.012257849797606468, + -0.013778277672827244, + 0.010291511192917824, + 0.014565493911504745, + -0.033082906156778336, + 0.0034004738554358482, + 0.021021384745836258, + 0.04964181035757065, + 0.05914278328418732, + -0.0023212889209389687, + -0.10743416100740433, + 0.019889438524842262, + 0.0025138570927083492, + -0.0406557060778141, + -0.05566689744591713, + -0.005708047654479742, + -0.01432089600712061, + -0.010762011632323265, + -0.021514691412448883, + -0.048427022993564606, + 0.057400647550821304, + 0.0334949791431427, + -0.03528165817260742, + -0.04242784529924393, + 0.08742157369852066, + -0.016626806929707527, + 0.018838796764612198, + -0.024887749925255775, + -0.05267655849456787, + 0.01847417838871479, + 0.03383002430200577, + -0.1096186488866806, + -0.003613256849348545, + 0.08766638487577438, + -0.0465753935277462, + -0.046848226338624954, + 0.005998214706778526, + -0.030641211196780205, + -0.04036138951778412, + 0.022345198318362236, + 0.09440938383340836, + 0.014477106742560863, + -0.01564548909664154, + 0.022575780749320984, + -0.04415418207645416, + 0.014494821429252625, + 0.026459412649273872, + 0.006821181159466505, + -0.14499591290950775, + 0.029192274436354637, + 0.056359704583883286, + -0.03871959075331688, + -0.02697056718170643, + -0.0028667286969721317, + 0.027733677998185158, + -0.02744600549340248, + 0.04531688615679741, + 0.06828705966472626, + -0.009666722267866135, + 0.015736009925603867, + 0.06839626282453537, + -0.013940536417067051, + -0.07823088765144348, + -0.04233059287071228, + -0.02083178423345089, + -0.04302876815199852, + -0.031469739973545074, + 0.017347561195492744, + -0.020109547302126884, + -0.03368820995092392, + 0.029738854616880417, + -0.06723330169916153, + -0.022982759401202202, + -0.015500573441386223, + 0.01171310804784298, + -0.0009220658685080707, + 0.03630736470222473, + 0.0035814091097563505, + 0.019823994487524033, + -0.026786040514707565, + -0.011946012265980244, + -0.02763017825782299, + 0.03931211307644844, + 0.06779200583696365, + 0.04197603464126587, + -0.0308145172894001, + -0.08603273332118988, + -0.10519538819789886, + 0.038657043129205704, + -0.032373033463954926, + -0.04911920428276062, + -0.07847875356674194, + -2.752894268098771e-08, + -0.03931467607617378, + 0.0034798879642039537, + -0.005954233929514885, + -0.023603424429893494, + 0.06014100834727287, + -0.06737282127141953, + -0.039364974945783615, + -0.028458185493946075, + -0.0006559277535416186, + -0.08538790792226791, + 0.029990890994668007, + 0.029428627341985703, + -0.06028609722852707, + -0.03310920298099518, + -0.023754149675369263, + -0.036753542721271515, + 0.022226717323064804, + 0.0862099677324295, + -0.044148195534944534, + -0.05225534364581108, + -0.008544833399355412, + 0.01589611917734146, + 0.11386961489915848, + -0.0741540789604187, + -0.024086518213152885, + -0.0050997803919017315, + -0.0302417054772377, + -0.011850099079310894, + 0.014669208787381649, + 0.023486822843551636, + 0.0009013914386741817, + 0.041421301662921906, + 0.06121637299656868, + -0.013376125134527683, + -0.010691228322684765, + 0.03848696127533913, + -0.07610718160867691, + 0.04211662709712982, + 0.012555258348584175, + 0.06910669058561325, + -0.01277111191302538, + -0.05894530564546585, + -0.0420101135969162, + 0.03131837770342827, + 0.01732894778251648, + -0.09445241093635559, + 0.026418475434184074, + -0.029062291607260704, + 0.020548395812511444, + -0.04628417640924454, + -0.030033327639102936, + 0.08554089814424515, + -0.016025781631469727, + -0.00864796619862318, + -0.0023964776191860437, + 0.029092464596033096, + -0.057540349662303925, + 0.07858829200267792, + -0.024726703763008118, + -0.018511077389121056, + 0.09436863660812378, + -0.016750739887356758, + -0.012279163114726543, + 0.03947657346725464 + ], + "superset-proper-of-bold||*new*,\u2283,proper superset of,set,member,mathematics,arithmetic,calculator": [ + -0.023220578208565712, + -0.04626955837011337, + -0.00927689578384161, + 0.01152045652270317, + -0.07885943353176117, + -0.018979504704475403, + 0.027449073269963264, + 0.03667719289660454, + -0.05925503373146057, + 0.0115581713616848, + 0.054806098341941833, + -0.001149121904745698, + 0.06596805155277252, + -0.05781269818544388, + -0.03119524009525776, + 0.012669060379266739, + 0.031377870589494705, + -0.04361357539892197, + -0.07306499779224396, + -0.00237461319193244, + 0.0762995257973671, + -0.028017764911055565, + 0.005090035032480955, + 0.06429462879896164, + 0.048501476645469666, + 0.009613635018467903, + -0.022024093195796013, + -0.05603983253240585, + 0.1121925488114357, + 0.050990719348192215, + -0.12686438858509064, + 0.04882286116480827, + 0.10924533754587173, + 0.040181297808885574, + 0.027726318687200546, + 0.07094355672597885, + 0.023317599669098854, + 0.008173112757503986, + 0.038396093994379044, + 0.021656690165400505, + -0.05033545568585396, + -0.07671304792165756, + 0.0359039232134819, + -0.006900174543261528, + 0.016684135422110558, + 0.08420789986848831, + -0.03023190051317215, + 0.03495435044169426, + -0.001749537535943091, + -0.04128778725862503, + -0.04395872727036476, + -0.06956222653388977, + -0.09056060016155243, + 0.052571866661310196, + 0.09110157191753387, + 0.10514276474714279, + -0.04619074612855911, + -0.12283758819103241, + -0.03236011788249016, + -0.09943324327468872, + -0.03571699932217598, + 0.03829063102602959, + 0.023094695061445236, + -0.015902498736977577, + 0.015148147940635681, + 0.09524799138307571, + -0.057017095386981964, + 0.03667965531349182, + 0.021359801292419434, + 0.08697737753391266, + -0.007855153642594814, + 0.020891573280096054, + 0.03839082270860672, + 0.08560418337583542, + -0.052674129605293274, + 0.005787023808807135, + 0.0575823113322258, + -0.04244641959667206, + -0.018306363373994827, + 0.019833164289593697, + 0.001898235990665853, + -0.03670598939061165, + 0.029461219906806946, + 0.017025217413902283, + 0.10332738608121872, + 0.0013556878548115492, + 0.044056180864572525, + -0.08241557329893112, + -0.03219957649707794, + 0.016922174021601677, + -0.06916036456823349, + -0.01603703759610653, + 0.006680126301944256, + 0.03756250813603401, + -0.08300565183162689, + 0.06405448168516159, + 0.08644071966409683, + 0.03096151351928711, + 0.0015477221459150314, + 0.06005952134728432, + 0.048756860196590424, + 0.018071327358484268, + -0.010766503401100636, + -0.030181245878338814, + -0.042968787252902985, + -0.0394434779882431, + 0.011626928113400936, + 0.03396909311413765, + 0.049694374203681946, + -0.021449370309710503, + 0.049523331224918365, + -0.17855049669742584, + -0.05776219442486763, + -0.07181403785943985, + -0.042826540768146515, + 0.018000207841396332, + -0.07301871478557587, + 0.015364138409495354, + -0.013383249752223492, + -0.014928130432963371, + 0.01378275640308857, + 0.07290425896644592, + 0.038516730070114136, + -0.029994245618581772, + 0.0221568513661623, + 0.021198492497205734, + -0.07720054686069489, + -1.712061787895575e-33, + 0.06064721569418907, + 0.050057943910360336, + -0.014232765883207321, + 0.009331366047263145, + -0.045980021357536316, + 0.018368374556303024, + -0.04311654344201088, + -0.032536886632442474, + -0.04066549241542816, + 0.0716954693198204, + 0.1025986447930336, + 0.06239626556634903, + -0.039653878659009933, + 0.04392309486865997, + 0.09196261316537857, + -0.0093601169064641, + 0.019103677943348885, + -0.103145532310009, + 0.0003796913952101022, + -0.0010292617371305823, + 0.025617700070142746, + 0.10034329444169998, + -0.04847579076886177, + -0.05868494138121605, + -0.031811345368623734, + -0.02278481237590313, + 0.08249425888061523, + 0.02471732534468174, + -0.10000190883874893, + 0.03156699612736702, + -0.040360912680625916, + -0.001963295042514801, + 0.04625129699707031, + 0.029592981562018394, + -0.047423914074897766, + -0.05308636650443077, + -0.03222730755805969, + -0.060177624225616455, + 0.05694933608174324, + -0.022683970630168915, + -0.007119443267583847, + 0.01758686453104019, + 0.011035986244678497, + 0.006778830662369728, + 0.04354315251111984, + 0.04686478525400162, + -0.06220465898513794, + 0.068033866584301, + 0.03962362930178642, + -0.024850282818078995, + -0.04329274594783783, + -0.030486805364489555, + -0.007457103580236435, + -0.005049155559390783, + -0.02229250781238079, + -0.0061800978146493435, + -0.026186561211943626, + 0.09717519581317902, + 0.016221806406974792, + 0.016167405992746353, + -0.0004551885649561882, + -0.04145203158259392, + 0.04146236553788185, + 0.1074221208691597, + -0.13391521573066711, + 0.005708512384444475, + -0.12721773982048035, + -0.02783960849046707, + 0.05183149129152298, + 0.032280582934617996, + -0.03801387920975685, + 0.04353727772831917, + 0.026092257350683212, + 0.0760391354560852, + 0.023433377966284752, + 0.004729004111140966, + 0.03298843652009964, + -0.035240765661001205, + -0.08598807454109192, + 0.026532987132668495, + -0.01787659339606762, + 0.0782485231757164, + -0.0164605975151062, + 0.06624346226453781, + 0.016966266557574272, + 0.015082263387739658, + 0.0059634018689394, + -0.022972090169787407, + 0.04904662445187569, + -0.0539993979036808, + -0.1468796283006668, + -0.00555451912805438, + 0.03320685774087906, + -0.11235200613737106, + -0.1306130290031433, + -2.0947432391218015e-33, + 0.04361008480191231, + 0.047188639640808105, + -0.015034783631563187, + 0.06128071993589401, + -0.0011675640707835555, + 0.023174580186605453, + 0.018701935186982155, + -0.04560087248682976, + 0.03416712209582329, + 0.011610335670411587, + 0.032587695866823196, + 0.039039015769958496, + 0.0041602300480008125, + -0.10162962228059769, + 0.035818953067064285, + 0.0014097091043367982, + -0.05043579265475273, + -0.06575123220682144, + -0.00768187316134572, + -0.011263251304626465, + 0.03148665651679039, + -0.06219031661748886, + -0.06413232535123825, + 0.06014452874660492, + 0.039207130670547485, + -0.020480584353208542, + -0.08258292824029922, + 0.09402375668287277, + -0.01773812808096409, + 0.03956742584705353, + -0.0333561934530735, + -0.05769979953765869, + 0.02034834772348404, + 0.020777925848960876, + -0.09076742827892303, + -0.02291187457740307, + 0.08258773386478424, + -0.046153031289577484, + -0.05408131331205368, + 0.010338183492422104, + -0.03985786810517311, + -0.033007536083459854, + 0.0013773798709735274, + 0.11900244653224945, + 0.009516417980194092, + -0.03328338637948036, + 0.024661486968398094, + -0.028754660859704018, + 0.024217840284109116, + -0.012144787237048149, + -0.03171595558524132, + -0.1424543559551239, + 0.011137023568153381, + 0.029182545840740204, + -0.02028822712600231, + -0.007743288762867451, + -0.01391554158180952, + 0.02289940044283867, + -0.018126649782061577, + 0.03416070342063904, + 0.0718265175819397, + -0.019068997353315353, + 0.009236824698746204, + 0.07526669651269913, + -0.02498907782137394, + -0.06613944470882416, + -0.047812871634960175, + 0.009195378981530666, + -0.04211190342903137, + -0.05188193917274475, + -0.011864682659506798, + -0.0350852869451046, + -0.051644228398799896, + -0.018972057849168777, + -0.05317488685250282, + -0.00843594316393137, + -0.001214441261254251, + 0.019304584711790085, + 0.01996486634016037, + 0.05344587191939354, + -0.0004751214582938701, + 0.038295067846775055, + -0.03500945121049881, + 0.014914416708052158, + -0.024063527584075928, + 0.02546151727437973, + 0.052282724529504776, + 0.022244155406951904, + -0.047646086663007736, + -0.07923553884029388, + -0.08522889763116837, + 0.05102035030722618, + -0.029322318732738495, + -0.04927370697259903, + -0.10051805526018143, + -2.8075884728195888e-08, + -0.025403697043657303, + 0.022762306034564972, + -0.014847924001514912, + -0.008915276266634464, + 0.04573902487754822, + -0.07524603605270386, + -0.042087122797966, + -0.023683514446020126, + 0.00789206475019455, + -0.08311121165752411, + 0.0017178512644022703, + 0.026865003630518913, + -0.06952564418315887, + -0.039997201412916183, + -0.022888218984007835, + -0.043130647391080856, + -0.013400688767433167, + 0.10556081682443619, + -0.06678765267133713, + -0.03200528770685196, + 0.006514170207083225, + -0.0014399586943909526, + 0.10057931393384933, + -0.06661452353000641, + -0.03367302939295769, + 0.02678685635328293, + -0.016201378777623177, + -0.012778579257428646, + -0.015545511618256569, + 0.017201727256178856, + -0.012474491260945797, + 0.028208419680595398, + 0.07780496776103973, + -0.03436892479658127, + 0.0011032387847080827, + 0.046511538326740265, + -0.06778227537870407, + 0.042681895196437836, + 0.03658611699938774, + 0.019609088078141212, + 0.008975020609796047, + -0.045181553810834885, + -0.04474038630723953, + 0.037221670150756836, + 0.025894276797771454, + -0.07891490310430527, + 0.0539165660738945, + 0.005814830772578716, + 0.02420763298869133, + -0.03326048702001572, + -0.05036182329058647, + 0.11465974897146225, + -0.024180438369512558, + -0.012779844924807549, + 0.009617860428988934, + 0.05072212219238281, + -0.04501646012067795, + 0.04814580827951431, + -0.02241045981645584, + -0.038180671632289886, + 0.11321945488452911, + 0.0405176542699337, + -0.010552173480391502, + 0.021912625059485435 + ], + "swap-bold||layers,replace,exchange,reverse": [ + -0.04703144356608391, + -0.026782216504216194, + 0.044053614139556885, + 0.05531077831983566, + -0.005978664383292198, + -0.006181159522384405, + 0.017275014892220497, + -0.04382012039422989, + 0.02064148709177971, + 0.017833633348345757, + -0.01304713636636734, + 0.04820305481553078, + -0.005674781743437052, + -0.08316043019294739, + -0.003085147822275758, + 0.10350310802459717, + -0.0084302993491292, + 0.11096438020467758, + -0.004846649710088968, + 0.036943040788173676, + -0.03263342007994652, + -0.022547930479049683, + -0.035680726170539856, + -0.012626037932932377, + 0.06389956921339035, + 0.0013551184674724936, + -0.005456879269331694, + 0.02402755245566368, + -0.01685677096247673, + -0.12264277786016464, + -0.0016989974537864327, + -0.005580622237175703, + -0.030640751123428345, + 0.06389690190553665, + -0.03172101452946663, + 0.04481847211718559, + -0.06303736567497253, + -0.10475665330886841, + -0.0042907921597361565, + 0.02669626660645008, + 0.0897708311676979, + -0.009639170952141285, + -0.008596198633313179, + -0.02022145502269268, + -0.022850990295410156, + 0.027917085215449333, + -0.038772743195295334, + -0.01142254937440157, + 0.029300924390554428, + 0.01822144165635109, + 0.09495029598474503, + -0.007169270422309637, + -0.08478590846061707, + 0.09710473567247391, + 0.014629596844315529, + 0.09891811013221741, + -0.004065822809934616, + -0.028976811096072197, + 0.041962601244449615, + 0.003631375264376402, + 0.027366988360881805, + 0.046478454023599625, + 0.05298920348286629, + -0.0076356506906449795, + 0.024874430149793625, + -0.01733969710767269, + 0.04256826639175415, + 0.024572670459747314, + -0.0012971479445695877, + 0.0383075550198555, + -0.012702030129730701, + 0.04440047964453697, + -0.01832665130496025, + -0.030016187578439713, + 0.002094751223921776, + 0.01438908465206623, + 0.04556919261813164, + -0.016513148322701454, + -0.04887997359037399, + -0.03015829436480999, + -0.022133972495794296, + -0.01459557469934225, + -0.0010768132051452994, + -0.0012509480584412813, + 0.10829980671405792, + -0.007638352457433939, + -0.13272790610790253, + -0.12009783089160919, + -0.03099975176155567, + 0.005589392501860857, + -0.08592163771390915, + 0.009922176599502563, + 0.02986089326441288, + 0.026528749614953995, + 0.012266476638615131, + 0.0008141479920595884, + 0.052063602954149246, + 0.0649697557091713, + -0.036111511290073395, + 0.07708680629730225, + 0.025668226182460785, + 0.04889773204922676, + 0.005961475893855095, + -0.0719468891620636, + -0.05280889570713043, + -0.021645385771989822, + -0.007856207899749279, + 0.02490054816007614, + -0.14332476258277893, + -0.07949090749025345, + 0.031220419332385063, + -0.0427628830075264, + 0.016636444255709648, + -0.10835788398981094, + -0.0024955561384558678, + -0.041310865432024, + -0.0213693305850029, + 0.00840114988386631, + 0.0092051075771451, + 0.05279200151562691, + 0.001881368923932314, + -0.0015608086250722408, + -0.06641733646392822, + -0.015924174338579178, + -0.09088310599327087, + 0.003252954687923193, + 0.022000176832079887, + -2.100151064148561e-33, + 0.038753874599933624, + 0.06231987103819847, + -0.012793728150427341, + 0.11037153005599976, + -0.03255127742886543, + 0.08990765362977982, + -0.023386938497424126, + -0.09724913537502289, + -0.09744910895824432, + -0.00790020078420639, + 0.01847691833972931, + 0.06400635093450546, + -0.016795257106423378, + 0.0057282522320747375, + -0.06249873712658882, + -0.0716465413570404, + 0.05320422723889351, + -0.04403555020689964, + 0.02287030778825283, + -0.10506881773471832, + -0.029661875218153, + 0.05259989574551582, + -0.0779925137758255, + -0.03276779130101204, + -0.07439407706260681, + -0.022482845932245255, + -0.017947422340512276, + -0.09982556849718094, + -0.022813573479652405, + -0.005323825869709253, + -0.02066780999302864, + 0.06278740614652634, + 0.014923172071576118, + 0.013543881475925446, + -0.0407487116754055, + 0.00909693818539381, + 0.020927321165800095, + -0.029759712517261505, + -0.006889979355037212, + 0.014520779252052307, + -0.05539513751864433, + 0.023286733776330948, + -0.009366653859615326, + -0.0488399975001812, + 0.06998895853757858, + 0.09566313773393631, + 0.02044355310499668, + 0.002670381683856249, + 0.02313990145921707, + -0.02197759784758091, + 0.04104198142886162, + -0.004370876122266054, + -0.035640329122543335, + 0.014836323447525501, + 0.029922395944595337, + -0.024053839966654778, + 0.04195531830191612, + 0.07009581476449966, + 0.052093036472797394, + 0.0684109479188919, + 0.0726940929889679, + 0.0649874210357666, + -0.024626340717077255, + 0.052259258925914764, + -0.02639995887875557, + 0.0796821266412735, + 0.07703832536935806, + -0.038196220993995667, + -0.07487603276968002, + -0.08391786366701126, + -0.0358084999024868, + 0.04183446988463402, + -0.008090613409876823, + 0.09524515271186829, + -0.032069165259599686, + -0.007892893627285957, + -0.024100694805383682, + -0.03416048735380173, + 0.07936836779117584, + -0.09554485231637955, + -0.032805316150188446, + 0.050896383821964264, + -0.0671941488981247, + 0.045004185289144516, + 0.007467597257345915, + 0.015774063766002655, + -0.006137217860668898, + -0.07118768244981766, + 0.04923035204410553, + 0.10166511684656143, + 0.02225017361342907, + -0.034824103116989136, + 0.0371108278632164, + -0.07249820232391357, + 0.011688622646033764, + 7.938393449366189e-35, + 0.048107851296663284, + 0.014056318439543247, + -0.05872107297182083, + 0.06751196831464767, + -0.06556864082813263, + -0.05182906612753868, + 0.06873729825019836, + 0.08080586791038513, + 0.017181405797600746, + 0.06470561027526855, + 0.0623999759554863, + -0.03171347826719284, + -0.053892966359853745, + -0.07693519443273544, + 0.03195421025156975, + 0.013950365595519543, + -0.042270634323358536, + 0.019222425296902657, + -0.026141606271266937, + -0.02687148004770279, + -0.002616576850414276, + 0.10274538397789001, + -0.010232619009912014, + 0.10485014319419861, + -0.028528129681944847, + 0.013570248149335384, + 0.01396569237112999, + 0.0582575760781765, + 0.03202309459447861, + -0.03951112553477287, + -0.035085346549749374, + -0.036397792398929596, + 0.0627133846282959, + 0.09143967181444168, + -0.03990927338600159, + 0.10036304593086243, + 0.01325245201587677, + 0.008844196796417236, + 0.008436763659119606, + 0.03545686975121498, + -0.00505512859672308, + -0.06338510662317276, + -0.014927840791642666, + 0.003288743318989873, + -0.020166192203760147, + 0.017982687801122665, + -0.10836027562618256, + -0.051915571093559265, + 0.014066287316381931, + -0.016698192805051804, + 0.021136408671736717, + 0.02703249268233776, + -0.04517555609345436, + -0.05312176048755646, + 0.0012581823393702507, + -0.06047224625945091, + 0.015021433122456074, + 0.004494373686611652, + 0.051066771149635315, + 0.04572196677327156, + 0.01288681197911501, + -0.021962443366646767, + 0.05159397050738335, + -0.09112266451120377, + 0.03150300681591034, + -0.0364605113863945, + 0.033222995698451996, + -0.11791237443685532, + 0.05919010192155838, + -0.015211823396384716, + 0.1252920776605606, + -0.010141932405531406, + -0.012352622114121914, + -0.09303494542837143, + 0.07430681586265564, + -0.10875245183706284, + 0.009372260421514511, + 0.05950022488832474, + 0.01870994083583355, + 0.025202661752700806, + -0.0919836014509201, + -0.03688303008675575, + 0.04707786440849304, + 0.06932651251554489, + -0.031178059056401253, + 0.08764509856700897, + 0.015383943915367126, + 0.0586361326277256, + -0.04200536012649536, + -0.10158073902130127, + -0.0819043442606926, + -0.05023025721311569, + 0.08936502039432526, + -0.07227254658937454, + -0.005968266166746616, + -1.7756049075501323e-08, + 0.02080490253865719, + -0.013626349158585072, + 0.07644936442375183, + -0.008006356656551361, + -0.0199500173330307, + -0.06517746299505234, + 0.0043810829520225525, + 0.011961533688008785, + -0.03557238727807999, + 0.023889491334557533, + -0.01021033525466919, + 0.08640427887439728, + 0.03297761455178261, + -0.08308364450931549, + -0.014012128114700317, + 0.08284320682287216, + -0.009998232126235962, + 0.03228108957409859, + -0.03865712508559227, + -0.04777207225561142, + -0.05535772070288658, + 0.12973017990589142, + 0.017715027555823326, + 0.05494554340839386, + 0.03029458224773407, + -0.03911569342017174, + -0.020641112700104713, + 0.019870106130838394, + 0.0562911331653595, + 0.017428966239094734, + 0.020413314923644066, + -0.04312816634774208, + 0.029376095160841942, + 0.03899176046252251, + -0.06680604070425034, + 0.002147336257621646, + 0.014612692408263683, + 0.00697446009144187, + -0.009006592445075512, + 0.054751764982938766, + -0.1286752074956894, + -0.049854908138513565, + -0.046547263860702515, + 0.004705901723355055, + -0.05652278661727905, + 0.00040343101136386395, + 0.008453127928078175, + -0.02069510892033577, + -0.0745835229754448, + -0.08571300655603409, + 0.022957442328333855, + -0.013185928575694561, + -0.03613540157675743, + 0.05197051540017128, + -0.030906999483704567, + -0.057063136249780655, + 0.041067373007535934, + 0.11499898880720139, + -0.004530563950538635, + 0.033851392567157745, + 0.03616470843553543, + -0.010191204026341438, + -0.016614791005849838, + -0.0482405349612236 + ], + "swatches-bold||colors,color picker,samples,pantone": [ + -0.031699229031801224, + -0.041213057935237885, + -0.023517826572060585, + 0.011817342601716518, + 0.11539684236049652, + 0.027893882244825363, + 0.14769220352172852, + -0.06533674150705338, + 0.043524570763111115, + -0.03084476664662361, + -0.054633140563964844, + -0.024368224665522575, + 0.02749835141003132, + -0.03445332869887352, + 0.01439649797976017, + 0.07129760086536407, + 0.031451236456632614, + 0.05965784564614296, + -0.10341591387987137, + -0.04895856976509094, + -0.04355494678020477, + 0.004827059805393219, + 0.046812884509563446, + 0.03973307088017464, + -0.0445529967546463, + 0.007464883849024773, + 0.04607049375772476, + -0.016826165840029716, + 0.009029602631926537, + -0.0920875295996666, + 0.025405123829841614, + 0.021655965596437454, + 0.07382473349571228, + 0.024052541702985764, + 0.038940854370594025, + -0.05040065944194794, + -0.041049398481845856, + 0.05702975392341614, + -0.010174957104027271, + 0.05382823199033737, + 0.056323468685150146, + -0.06309511512517929, + -0.03727717325091362, + 0.011939505115151405, + -0.0891677513718605, + -0.007914066314697266, + 0.0010582682443782687, + -0.030968638136982918, + -0.002343516331166029, + 0.027828911319375038, + 0.01777820847928524, + -0.051832105964422226, + -0.08380895853042603, + -0.02613809145987034, + -0.023716844618320465, + 0.010030899196863174, + -0.052387092262506485, + -0.07247907668352127, + 0.08885184675455093, + -0.03259483352303505, + -0.045617055147886276, + -0.023787669837474823, + 0.016285084187984467, + 0.02541283331811428, + 0.08222948759794235, + 0.00019803577743005008, + 0.04052023962140083, + 0.020039692521095276, + 0.06542479991912842, + -0.022120749577879906, + 0.015206754207611084, + 0.06031494215130806, + 0.04471658915281296, + 0.04120509326457977, + 0.005666517652571201, + 0.03472471982240677, + 0.07144055515527725, + 0.025149652734398842, + 0.0331011563539505, + -0.10278519988059998, + -0.120516337454319, + -0.044073205441236496, + 0.009054264053702354, + 0.07617343217134476, + 0.10436863452196121, + 0.08933618664741516, + -0.0847628265619278, + 0.00720754312351346, + 0.02603868395090103, + -0.01944878324866295, + -0.0757567286491394, + 0.04915400221943855, + -0.04020930081605911, + -0.0031069342512637377, + -0.09875250607728958, + 0.01992509327828884, + 0.07775159180164337, + -0.014907043427228928, + -0.02248966321349144, + 0.07898201048374176, + 0.027620485052466393, + -0.008190885186195374, + 0.08152133226394653, + 0.03306731581687927, + -0.08830281347036362, + -0.055165328085422516, + -0.05455292388796806, + -0.002290878212079406, + 0.00020293185662012547, + 0.06623038649559021, + 0.036455437541007996, + -0.0594860278069973, + 0.0029616912361234426, + -0.016614818945527077, + -0.05468630790710449, + -0.00531648239120841, + -0.03890153393149376, + 0.0022208893205970526, + 0.09730197489261627, + -0.0045668757520616055, + 0.03352231904864311, + -0.011427506804466248, + -0.06971511989831924, + -0.05693945288658142, + -0.015650678426027298, + 0.03940947353839874, + 0.06684347987174988, + -2.0980682350956977e-34, + 0.04886769503355026, + -0.02063673920929432, + -0.005015837028622627, + 0.04880029335618019, + -0.019518189132213593, + -0.035226546227931976, + -0.015463903546333313, + -0.05048041790723801, + -0.06545697152614594, + 0.044191017746925354, + 0.09505430608987808, + 0.08092278242111206, + -0.04453783482313156, + 0.09828770160675049, + 0.02684977278113365, + -0.0016664516879245639, + -0.028099490329623222, + -0.036884523928165436, + -0.08327589184045792, + -0.0005121608846820891, + -0.07586672902107239, + 0.028500188142061234, + -0.04184110462665558, + 0.017442815005779266, + -0.059404563158750534, + -0.05941261351108551, + 0.013490731827914715, + 0.05653722584247589, + 0.00046781208948232234, + 0.02977391704916954, + 0.06722308695316315, + 0.01652451977133751, + 0.07871187478303909, + 0.05823836103081703, + -0.04052213951945305, + 0.04046627879142761, + -0.10477849841117859, + 0.02743319608271122, + 0.105476513504982, + 0.06940466910600662, + -0.0003906310594175011, + -0.04648137837648392, + 0.021585507318377495, + 0.025702012702822685, + -0.007062111049890518, + 0.06223069131374359, + -0.05029740184545517, + -0.04955923929810524, + 0.042908284813165665, + 0.017055146396160126, + -0.03948761895298958, + -0.05303597450256348, + 0.031372737139463425, + 0.034874964505434036, + 0.05437551438808441, + 0.03496355190873146, + -0.02012600377202034, + 0.05924105644226074, + 0.07979533821344376, + -0.032007962465286255, + -0.00836749467998743, + 0.049766700714826584, + 0.012675125151872635, + -0.0005617361166514456, + 0.04541444033384323, + 0.060824401676654816, + -0.0676850974559784, + 0.03399776294827461, + 0.049618884921073914, + -0.04021383821964264, + 0.057491615414619446, + 0.0722159892320633, + 0.04925050213932991, + 0.04785936698317528, + -0.002323389519006014, + -0.05193551257252693, + 0.058055177330970764, + 0.0023127482272684574, + 0.04383126273751259, + -0.06057854741811752, + -0.036441076546907425, + -0.027916429564356804, + -0.06639155745506287, + 0.05199776589870453, + -0.11742260307073593, + 0.03988448530435562, + 0.0007603364065289497, + -0.04677752032876015, + -0.04650691896677017, + -0.06648816168308258, + -0.08445491641759872, + 0.005933243315666914, + -0.03394138813018799, + -0.09144449979066849, + -0.13237501680850983, + -9.012774163853644e-34, + 0.012044060975313187, + 0.06870137155056, + 0.0036646625958383083, + 0.14692893624305725, + -0.015380587428808212, + 0.021650075912475586, + 0.03601779416203499, + 0.031179923564195633, + 0.028425244614481926, + 0.022892097011208534, + 0.02370813675224781, + 0.017082417383790016, + -0.060631364583969116, + -0.01014387235045433, + -0.050213173031806946, + 0.0669708326458931, + 0.019577648490667343, + 0.07744628190994263, + -0.044700827449560165, + -0.04982485994696617, + -0.08764535188674927, + -0.005185415502637625, + -0.05143789201974869, + 0.04714313521981239, + -0.06045963615179062, + 0.008219949901103973, + -0.013087647035717964, + -0.025257620960474014, + -0.02447432465851307, + -0.03067370131611824, + 0.0069556585513055325, + -0.007851704955101013, + 0.04249725118279457, + 0.024093106389045715, + 0.0060092671774327755, + -0.09593755006790161, + 0.09381618350744247, + -0.0688197910785675, + 0.0182281993329525, + 0.07435231655836105, + -0.07648151367902756, + -0.021528486162424088, + 0.010621292516589165, + -0.002082092920318246, + -0.026303140446543694, + -0.009114030748605728, + 0.007148292846977711, + 0.004440744873136282, + 0.008271985687315464, + -0.03019493818283081, + -0.0005896755610592663, + -0.006920622196048498, + -0.006537258625030518, + -0.0005006133578717709, + -0.05490809679031372, + -0.0034882507752627134, + 0.06375730037689209, + -0.018534662202000618, + 0.03213110938668251, + 0.05687914043664932, + -0.03376893326640129, + 0.057301800698041916, + -0.030425628647208214, + 0.027142174541950226, + 0.032836224883794785, + -0.0710269957780838, + -0.002868206473067403, + -0.04912737011909485, + 0.02797815389931202, + 0.03462453931570053, + 0.01887001469731331, + -0.04931415244936943, + 0.10029754787683487, + -0.01628550887107849, + 0.07456286251544952, + -0.1049472764134407, + 0.020952614024281502, + -0.0017324290238320827, + -0.023895418271422386, + -0.007168822921812534, + 0.0386119969189167, + -0.0108930179849267, + 0.033574000000953674, + 0.02635718695819378, + -0.030998872593045235, + 0.1156376302242279, + -0.014345967210829258, + 0.03912382572889328, + 0.020155897364020348, + -0.10317974537611008, + 0.010276961140334606, + 0.0018791378242895007, + 0.05788658931851387, + 0.04054548963904381, + -0.04625692591071129, + -2.0339523842949347e-08, + 0.05759115144610405, + -0.053463414311409, + 0.02414959855377674, + -0.04354291036725044, + -0.015807297080755234, + 0.02580890618264675, + 0.04912208765745163, + -0.057607896625995636, + -0.03812141716480255, + -0.01149236410856247, + 0.0036790731828659773, + -0.026980342343449593, + -0.0675058662891388, + -0.0307038351893425, + 0.011505655944347382, + 0.010375382378697395, + 0.011731869541108608, + 0.054090484976768494, + -0.054983384907245636, + -0.07532931119203568, + -0.04729420319199562, + 0.09536807984113693, + 0.08326834440231323, + -0.021950453519821167, + 0.02956206351518631, + 0.05954299494624138, + -0.1216881275177002, + -0.03420616686344147, + -0.03296026960015297, + 0.03616480156779289, + 0.022628914564847946, + 0.03907499089837074, + 0.08332794904708862, + 0.03717939183115959, + -0.024607904255390167, + -0.015456989407539368, + -0.07168624550104141, + -0.036686334758996964, + -0.03789491578936577, + 0.03539028763771057, + -0.09697380661964417, + -0.010671118274331093, + -0.03202422335743904, + -0.041555002331733704, + -0.024387607350945473, + -0.06044648960232735, + 0.015170952305197716, + -0.04941210523247719, + -0.12822487950325012, + -0.011731278151273727, + -0.03516257181763649, + -0.008701285347342491, + -0.011810822412371635, + 0.06281480193138123, + -0.03990333899855614, + -0.12749117612838745, + -0.05498761683702469, + 0.05639161169528961, + -0.0371127612888813, + 0.010150013491511345, + 0.0873413160443306, + -0.02750026062130928, + -0.08491923660039902, + -0.01429734192788601 + ], + "swimming-pool-bold||swim,sports,exercise,olympics,aquatics": [ + 0.004075515549629927, + 0.018378132954239845, + 0.034043457359075546, + 0.005163687746971846, + -0.007244477514177561, + -0.00865447148680687, + 0.07798484712839127, + -0.10110025852918625, + -0.05512761324644089, + 0.0006058649159967899, + -0.0449051596224308, + -0.07124300301074982, + -0.002483480144292116, + 0.08367834240198135, + 0.01999734528362751, + -0.0028260282706469297, + 0.014818183146417141, + 0.05933878943324089, + -0.020272450521588326, + 0.00163554516620934, + 0.016652368009090424, + 0.01585453189909458, + 0.024108797311782837, + 0.061856552958488464, + -0.04544021561741829, + 0.1065838411450386, + -0.01892167143523693, + 0.01911325193941593, + -0.06602278351783752, + -0.013361728750169277, + -0.07938642799854279, + 0.0675014853477478, + 0.08435233682394028, + -0.05664074420928955, + 0.04751410335302353, + 0.03781280666589737, + -0.02940279059112072, + -0.0449201837182045, + -0.0432964563369751, + 0.05259770527482033, + -0.002893580589443445, + -0.07069864869117737, + 0.036173563450574875, + 0.07648281008005142, + 0.04863028600811958, + 0.11413835734128952, + 0.014034679159522057, + 0.011613326147198677, + -0.016203317791223526, + 0.08911091834306717, + 0.00432841619476676, + -0.012095276266336441, + -0.003447718918323517, + -0.00526978587731719, + 0.07013560086488724, + 0.005041647236794233, + -0.128869891166687, + -0.017992744222283363, + -0.01851748488843441, + -0.003320518182590604, + 0.061851054430007935, + -0.0027469107881188393, + -0.015552044846117496, + 0.09428215771913528, + -0.016194097697734833, + -0.08250343054533005, + -0.0716807022690773, + 0.08232558518648148, + 0.031109463423490524, + -0.04395489767193794, + 0.05436812713742256, + 0.06124909594655037, + -0.016634304076433182, + -0.014745411463081837, + -0.0018682627705857158, + 0.009051552042365074, + 0.06560695916414261, + -0.014308974146842957, + -0.04362724348902702, + -0.0376470722258091, + -0.01914614625275135, + -0.12937000393867493, + 0.04165429249405861, + -0.01918797381222248, + 0.039776239544153214, + 0.013829722069203854, + -0.03714415058493614, + -0.08846991509199142, + -0.003508108900859952, + -0.011149558238685131, + -0.12315937131643295, + -0.020349325612187386, + -0.061422351747751236, + -0.01044098287820816, + -0.005091894883662462, + 0.08804358541965485, + -0.09040256589651108, + -0.0150514617562294, + -0.046823229640722275, + 0.039502087980508804, + 0.08773966878652573, + -0.007162333931773901, + 0.05738092586398125, + 0.09210222959518433, + 0.04579371586441994, + -0.09535595774650574, + 0.020368430763483047, + 0.09539410471916199, + 0.07265263795852661, + 0.06364565342664719, + 0.014547612518072128, + -0.08185087144374847, + 0.09805650264024734, + 0.005448352545499802, + -0.05560636892914772, + 0.05397273600101471, + -0.021995121613144875, + -0.004482612945139408, + 0.06656800955533981, + 0.13169917464256287, + -0.060101740062236786, + 0.02077091857790947, + -0.03922034800052643, + -0.027182726189494133, + -0.02215891145169735, + 0.03169529139995575, + 0.006585720926523209, + -4.2896000260252756e-33, + -0.00843285396695137, + -0.052029095590114594, + 0.04132680967450142, + 0.05492951720952988, + -0.07477413862943649, + -0.04766306281089783, + 0.0038261807058006525, + -0.12152381986379623, + -0.02133151888847351, + -0.05022571608424187, + 0.014469724148511887, + 0.06439715623855591, + -0.01824258454144001, + 0.030687084421515465, + 0.07566171139478683, + -0.016823220998048782, + -0.0257297120988369, + -0.022870546206831932, + -0.05286390706896782, + 0.07349200546741486, + 0.07182475924491882, + 0.06879142671823502, + -0.038414351642131805, + 0.00023874678299762309, + -0.02240733616054058, + -0.06168185546994209, + -0.017622461542487144, + -0.06222252920269966, + -0.011798405088484287, + 0.056469615548849106, + 0.00371452490799129, + -0.057760197669267654, + -0.03458881005644798, + 0.010806726291775703, + 0.010494820773601532, + 0.014598815701901913, + 0.017879920080304146, + -0.04461676627397537, + 0.029115688055753708, + 0.007425584364682436, + -0.03205379098653793, + -0.04386957734823227, + 0.010448247194290161, + -0.023106470704078674, + 0.04422884061932564, + 0.006646987050771713, + 0.04086664319038391, + 0.018051743507385254, + 0.026167137548327446, + 0.002713350113481283, + 0.0068030278198421, + -0.020163631066679955, + -0.00012482302554417402, + -0.07691636681556702, + 0.037046872079372406, + -0.02715718373656273, + -0.024804746732115746, + 0.03813872113823891, + -0.12150910496711731, + 0.04669926315546036, + 0.022650999948382378, + 0.08984820544719696, + -0.10226662456989288, + -0.05315270647406578, + -0.032354988157749176, + 0.03874212130904198, + 0.06177055835723877, + -0.012730490416288376, + 0.03573651984333992, + -0.03029627352952957, + -0.051103584468364716, + 0.05691647529602051, + -0.001549223903566599, + 0.06746229529380798, + 0.01941467821598053, + 0.048909567296504974, + -0.0005427554715424776, + -0.0033206159714609385, + -0.05912536382675171, + 0.043807320296764374, + -0.029151665046811104, + 0.10157088190317154, + -0.03498057648539543, + 0.12174054235219955, + -0.01219507958739996, + 0.047774117439985275, + 0.015817174687981606, + -0.03659773990511894, + -0.0009628242114558816, + -0.04746735841035843, + -0.05584995076060295, + -0.04796041548252106, + 0.04314209148287773, + -0.04572406783699989, + -0.05484200641512871, + 6.964241995385567e-34, + -0.014875666238367558, + -0.05223384499549866, + 0.03957591950893402, + -0.026285381987690926, + 0.05395740270614624, + 0.018462175503373146, + 0.03943903371691704, + -0.0010192390764132142, + -0.012500356882810593, + 0.001877474831417203, + -0.07325299084186554, + -0.03439227491617203, + -0.03474486619234085, + -0.058047305792570114, + -0.03253637254238129, + 0.004368442110717297, + -0.004470047540962696, + 0.04195694252848625, + -0.014951363205909729, + 0.0678660199046135, + 0.038954440504312515, + 0.017444076016545296, + 0.05124186351895332, + 0.06614217907190323, + -0.08120938390493393, + 0.008061799220740795, + -0.0038868486881256104, + -0.04385998845100403, + 0.015115395188331604, + 0.021421505138278008, + -0.0777914896607399, + 0.020578818395733833, + 0.06202591210603714, + 0.05957360938191414, + -0.04523180425167084, + 0.06416132301092148, + -0.0018558240262791514, + -0.061912842094898224, + -0.005511297378689051, + -0.029796000570058823, + 0.05563074350357056, + -0.07903887331485748, + 0.06151442974805832, + 0.02762463502585888, + 0.0030226223170757294, + 0.04108927771449089, + -0.06672509014606476, + 0.013528325594961643, + -0.1189674511551857, + 0.00438943924382329, + -0.09793791174888611, + -0.06660033017396927, + -0.03706556558609009, + -0.011003687046468258, + 0.051895517855882645, + -0.07678856700658798, + 0.01659443974494934, + -0.026470569893717766, + -0.07289130240678787, + -0.0012845118762925267, + -0.006613848265260458, + 0.08879723399877548, + -0.09889853000640869, + 0.0653710588812828, + 0.003942706156522036, + 0.03763327747583389, + -0.03273189812898636, + -0.008799134753644466, + -0.08465637266635895, + -0.016162078827619553, + -0.08853435516357422, + -0.0030806956347078085, + -0.027417780831456184, + -0.03678727522492409, + 0.012830512598156929, + -0.04262702912092209, + -0.0040677753277122974, + 0.13419370353221893, + -0.006327649112790823, + 0.09105143696069717, + -0.05820664390921593, + 0.07492626458406448, + -0.0503031387925148, + 0.061655111610889435, + 0.038455214351415634, + 0.043412305414676666, + -0.010668749921023846, + -0.027401577681303024, + -0.03280462697148323, + 0.00998159684240818, + -0.008745668455958366, + -0.006027549039572477, + -0.04255688935518265, + 0.03790198639035225, + 0.03319104015827179, + -1.763867807369479e-08, + 0.04574424773454666, + 0.08356869220733643, + -0.026801416650414467, + -0.021826881915330887, + -0.016580628231167793, + 0.0076243821531534195, + -0.03822587430477142, + 0.017612304538488388, + -0.010662907734513283, + -0.031007297337055206, + -0.016581637784838676, + 0.0093210618942976, + 0.03983592987060547, + -0.014200986362993717, + 0.03750915452837944, + 0.025448443368077278, + -0.003611800028011203, + 0.06161705404520035, + -0.029507458209991455, + -0.011755215004086494, + -0.006623978726565838, + -0.0420510470867157, + -0.03221585601568222, + 0.01947597786784172, + -0.005843722261488438, + -0.07777073234319687, + -0.09804949909448624, + -0.08957981318235397, + 0.052873022854328156, + -0.035601336508989334, + 0.06271705776453018, + -0.04509459435939789, + -0.04577801749110222, + 0.03589961305260658, + -0.07481864094734192, + -0.02711428329348564, + 0.034287191927433014, + -0.04593483731150627, + -0.09222465008497238, + 0.03720405325293541, + -0.05870038643479347, + 0.014281782321631908, + 0.02909393422305584, + 0.012724136002361774, + 0.09561348706483841, + -0.014070688746869564, + 0.09983877092599869, + -0.09653040021657944, + 0.006425186991691589, + -0.08885733783245087, + -0.06843618303537369, + -0.0039337933994829655, + 0.0047880117781460285, + 0.06883405894041061, + -0.006174825597554445, + 0.09626156091690063, + -0.04593364894390106, + -0.07693846523761749, + -0.06714404374361038, + 0.04936816170811653, + 0.09904077649116516, + -0.025674503296613693, + -0.03162611648440361, + 0.08090139925479889 + ], + "sword-bold||weapon,knife,dagger,gladius,video games,rpg,gaming,war": [ + -0.0009187826071865857, + -0.025057144463062286, + -0.05367546156048775, + -0.026643002405762672, + -0.014735430479049683, + 0.016600383445620537, + 0.06872782856225967, + -0.028865057975053787, + -0.033632829785346985, + 0.0781373605132103, + 0.0764685645699501, + -0.009508566930890083, + 0.025951340794563293, + -0.022017061710357666, + 0.06332970410585403, + 0.00398904038593173, + 0.04008668661117554, + 0.026950998231768608, + 0.006550328340381384, + 0.04546070471405983, + 0.01894068904221058, + 0.03121338039636612, + 0.0728064477443695, + 0.030223771929740906, + 0.04426218196749687, + 0.07204265892505646, + 0.04344913735985756, + 0.03756120428442955, + -0.026370298117399216, + -0.05772676691412926, + -0.03760389983654022, + 0.011835518293082714, + 0.03819083049893379, + 0.02595040760934353, + -0.017119891941547394, + 0.03480953723192215, + -0.008977311663329601, + -0.006049511022865772, + -0.08972056210041046, + 0.00578515138477087, + -0.08905858546495438, + 0.043227098882198334, + 0.007818804122507572, + 0.07854674011468887, + 0.011490871198475361, + -0.04419047012925148, + -0.10485368967056274, + -0.01603657379746437, + 0.0010519778588786721, + 0.04230451211333275, + -0.03274878114461899, + -0.07225500792264938, + -0.09503109008073807, + 0.06063512712717056, + 0.056727223098278046, + -0.04825248196721077, + -0.04819658398628235, + 0.012723270803689957, + 0.0819077268242836, + 0.05710885673761368, + -0.030548222362995148, + 0.03188920021057129, + 0.07033517956733704, + 0.014157412573695183, + -0.0042134481482207775, + -0.029880931600928307, + 0.023045169189572334, + 0.022522710263729095, + -0.10419627279043198, + -0.0017828289419412613, + -0.010318337008357048, + -0.033402249217033386, + 0.015979349613189697, + -0.01707153022289276, + -0.08637019991874695, + -0.03359637036919594, + -0.0007421019254252315, + -0.047964904457330704, + -0.04672115296125412, + -0.0025376351550221443, + -0.08910401910543442, + 0.023054519668221474, + -0.05292414501309395, + 0.03988220542669296, + -0.007567701395601034, + 0.03930525854229927, + -0.04351383075118065, + -0.04870019480586052, + -0.037539202719926834, + 0.0002502929710317403, + -0.06344221532344818, + -0.025076214224100113, + 0.08749235421419144, + 0.07109900563955307, + -0.04543112590909004, + 0.03591153025627136, + 0.035135287791490555, + 0.01608002558350563, + -0.05160561576485634, + 0.06289079785346985, + -0.00419567059725523, + -0.025655031204223633, + -0.025685369968414307, + 0.026422780007123947, + -0.010252270847558975, + 0.025783635675907135, + -0.017272576689720154, + -0.004569639451801777, + -0.08129782974720001, + -0.03972617909312248, + -0.04321897402405739, + -0.06515161693096161, + -0.09101016074419022, + -0.07139875739812851, + 0.018973566591739655, + -0.011249813251197338, + -0.03264232352375984, + 0.03686640039086342, + 0.02569274790585041, + 0.10963025689125061, + 0.03188939020037651, + 0.0025945971719920635, + 0.03217009827494621, + -0.013539927080273628, + 0.040921565145254135, + 0.035050295293331146, + -0.013049613684415817, + -1.407121288218996e-33, + 0.04947710782289505, + 0.013148621656000614, + -0.024259939789772034, + 0.0551040917634964, + -0.06738738715648651, + -0.1011742427945137, + 0.021263202652335167, + -0.013752507045865059, + -0.03206133469939232, + 0.08196219056844711, + 0.01738128624856472, + 0.11027984321117401, + -0.05437532812356949, + 0.05989780277013779, + 0.11240372806787491, + -0.0812162384390831, + 0.029353078454732895, + -0.016690023243427277, + -0.0017584505258128047, + 0.014520037919282913, + -0.037332672625780106, + 0.0757579654455185, + -0.015776170417666435, + -0.0516202487051487, + -0.07543979585170746, + 0.03639087826013565, + 0.02513059787452221, + 0.015655385330319405, + 0.0374089777469635, + 0.03358278423547745, + 0.043473441153764725, + -0.033826690167188644, + 0.06778145581483841, + -0.05118321627378464, + 0.02846994251012802, + 0.03471537306904793, + -0.05561182275414467, + -0.05214375630021095, + -0.06647774577140808, + 0.004814749583601952, + -0.07972303032875061, + 0.018402187153697014, + -0.09399755299091339, + -0.02024337835609913, + 0.05255763605237007, + 0.01116774883121252, + -0.01085155364125967, + -0.0343962088227272, + -0.058697283267974854, + -0.024133261293172836, + -0.04669737443327904, + 0.00956511776894331, + 0.07097955048084259, + 0.0587322972714901, + -0.10416461527347565, + -0.009198172949254513, + -0.012096052058041096, + 0.03540612384676933, + -0.02904197946190834, + 0.0004390672838781029, + 0.0022847470827400684, + -0.008114849217236042, + 0.06887853890657425, + -1.8696429833653383e-05, + -0.03919466584920883, + 0.07714851945638657, + 0.04369109496474266, + 0.028890496119856834, + 0.046447522938251495, + 0.02218088135123253, + -0.042024292051792145, + 0.09281191974878311, + 0.05088071525096893, + 0.026185281574726105, + 0.05352253094315529, + 0.004506855737417936, + -0.04007498547434807, + -0.016041742637753487, + -0.06782029569149017, + -0.11859068274497986, + -0.13584932684898376, + 0.056824952363967896, + -0.072704017162323, + 0.1515955924987793, + 0.006863860879093409, + -0.04087764769792557, + 0.01470186933875084, + -0.1259082555770874, + -0.04098884388804436, + 0.002158041810616851, + -0.10406367480754852, + -0.0038552191108465195, + 0.005654493812471628, + -0.06639856100082397, + -0.0750502422451973, + -7.315408994079224e-35, + 0.041044194251298904, + -0.006195409689098597, + -0.036394938826560974, + -0.010537869296967983, + 0.0069947512820363045, + 0.01165162306278944, + -0.10181745886802673, + 0.03758393973112106, + -0.06935127079486847, + 0.00999328214675188, + 0.014304855838418007, + -0.0028893351554870605, + -0.053797174245119095, + -0.08482460677623749, + -0.019545769318938255, + -0.029893117025494576, + 0.02924775518476963, + 0.03412223979830742, + 0.021230746060609818, + 0.008069644682109356, + 0.04177212715148926, + -0.03444574028253555, + -0.008299572393298149, + -0.08425066620111465, + 0.06838355213403702, + 0.06587100774049759, + -0.010991392657160759, + -0.024261746555566788, + -0.005512582138180733, + 0.059935033321380615, + 0.06260813772678375, + -0.025470281019806862, + 0.06039738655090332, + 0.0058946008794009686, + -0.02452288195490837, + 0.02918144501745701, + 0.02147875912487507, + -0.0437578484416008, + -0.0002698499010875821, + -0.033747341483831406, + 0.054892946034669876, + -0.04284479841589928, + 0.03867793828248978, + 0.11332826316356659, + -0.06356733292341232, + -0.008868248201906681, + -0.017844241112470627, + 0.04678502678871155, + 0.015935268253087997, + 0.02095527946949005, + 0.039127420634031296, + 0.05435210093855858, + 0.002779877046123147, + -0.0746760368347168, + -0.03520634025335312, + -0.039631567895412445, + -0.06394052505493164, + -0.10729189217090607, + -0.03721170872449875, + 0.08594252914190292, + 0.04055105149745941, + 0.019992826506495476, + -0.044160474091768265, + 0.09539447724819183, + 0.01608005352318287, + -0.03181103244423866, + -0.019995562732219696, + 0.0004868956748396158, + -0.02856498770415783, + -0.06516770273447037, + -0.01667606085538864, + 0.011663256213068962, + 0.016549600288271904, + 0.05858748033642769, + 0.0014625913463532925, + -0.050806835293769836, + -0.005877109710127115, + -0.010038641281425953, + 0.04057293012738228, + 0.07370725274085999, + -0.02793300896883011, + -0.0012197011383250356, + -0.08090407401323318, + 0.0573052316904068, + 0.008050436154007912, + 0.03872065246105194, + 0.011838294565677643, + 0.05656334012746811, + 0.0030158718582242727, + -0.030415121465921402, + 0.025582438334822655, + 0.01225235965102911, + 0.07403209060430527, + 0.002731937915086746, + -0.04709649085998535, + -2.1375024417125132e-08, + -0.025023745372891426, + 0.03294839337468147, + -0.019733913242816925, + 0.013694005087018013, + -0.03564596548676491, + 0.026175087317824364, + -0.0784192830324173, + -0.05215749144554138, + -0.03748849034309387, + 0.028368515893816948, + 0.10287489742040634, + 0.05687085539102554, + -0.11461328715085983, + -0.06134747341275215, + 0.039117537438869476, + 0.0013910781126469374, + 0.029009228572249413, + 0.011184319853782654, + -0.029901646077632904, + -0.011852893978357315, + 0.036022040992975235, + 0.01949954964220524, + 0.05665839836001396, + -0.08295759558677673, + -0.07925180345773697, + 0.03200886398553848, + -0.0986228883266449, + -0.05505986511707306, + 0.030269680544734, + 0.16997697949409485, + 0.11021891981363297, + 0.011238344945013523, + -0.005630897358059883, + -0.002410723129287362, + -0.06866304576396942, + 0.028907792642712593, + -0.05362188443541527, + -0.006973806768655777, + 0.021914443001151085, + 0.09614181518554688, + -0.009001790545880795, + -0.031806737184524536, + -0.0009574854630045593, + 0.03248339146375656, + -0.007216797675937414, + 0.04787203297019005, + 0.04639238491654396, + -0.08690288662910461, + -0.05894716829061508, + -0.13671375811100006, + -0.004630825016647577, + -0.0031889379024505615, + 0.021243177354335785, + -0.036596253514289856, + -0.021167432889342308, + 0.0884527787566185, + 0.11190415918827057, + 0.041430745273828506, + -0.018055560067296028, + -0.010291220620274544, + 0.11667934060096741, + -0.08853654563426971, + 0.0011768537806347013, + 0.07180725038051605 + ], + "synagogue-bold||jewish,judaism,temple,religion,worship": [ + 0.08054257184267044, + 0.009230933152139187, + -0.01975521445274353, + 0.0011055038776248693, + -0.09668981283903122, + -0.023609530180692673, + -0.0028970837593078613, + -0.07335007935762405, + 0.025763632729649544, + 0.016287602484226227, + -0.061147551983594894, + -0.06952661275863647, + 0.03527984395623207, + -0.012326573021709919, + 0.015911683440208435, + -0.020749524235725403, + 0.03714277595281601, + 0.04568701982498169, + -0.006296479143202305, + -0.01498029287904501, + -0.018536826595664024, + -0.021694688126444817, + -0.0002403121325187385, + 0.01616455800831318, + 0.11291422694921494, + 0.06878356635570526, + 0.0011176072293892503, + 0.00043162619112990797, + -0.010561390779912472, + -0.03823176026344299, + -0.08922989666461945, + -0.014972918666899204, + 0.04842139407992363, + -0.018612094223499298, + 0.03085234761238098, + -0.005213493946939707, + 0.01709275133907795, + 0.022532541304826736, + 0.04554416984319687, + 0.0021455856040120125, + -0.02766772173345089, + 0.03606380149722099, + -0.016780715435743332, + -0.020088881254196167, + -0.01229292992502451, + 0.05809062719345093, + -0.021561872214078903, + -0.03925237059593201, + -0.04468002915382385, + 0.004851114936172962, + -0.03243231773376465, + -0.00884257722645998, + 0.01830177567899227, + 0.096180759370327, + -0.0037257943768054247, + -0.009351278655230999, + -0.11298461258411407, + -0.007944676093757153, + 0.02178603783249855, + -0.004482931457459927, + 0.036681003868579865, + -0.03643234819173813, + 0.025416942313313484, + 0.09493104368448257, + 0.006372601725161076, + -0.06973892450332642, + 0.003892845707014203, + 0.03197188302874565, + 0.0019300570711493492, + -0.05940299481153488, + -0.018103498965501785, + -0.015100901015102863, + 0.011808850802481174, + -0.05894257500767708, + -0.0032939771190285683, + -0.061339858919382095, + 0.014017703011631966, + -0.06889194995164871, + -0.06465516239404678, + -0.08528198301792145, + -0.028971679508686066, + -0.07308299839496613, + -0.05437420681118965, + 0.004030998796224594, + -0.009810561314225197, + 0.014137734659016132, + -0.02995593659579754, + -0.018166908994317055, + -0.0149043845012784, + -0.02553415484726429, + 0.005094981286674738, + -0.0030166651122272015, + 0.0170078556984663, + -0.059650201350450516, + 0.006191575434058905, + 0.011726150289177895, + -0.0005171715747565031, + -0.019073858857154846, + -0.027078691869974136, + 0.08533346652984619, + 0.03761790320277214, + 0.04307034984230995, + 0.09812528640031815, + 0.008619101718068123, + -0.0001762584870448336, + -0.031461697071790695, + -0.0829104334115982, + 0.07033125311136246, + -0.002269391668960452, + -0.01024787686765194, + 0.025192787870764732, + -0.04779617860913277, + 0.007756090257316828, + 0.012080785818397999, + 0.01681596226990223, + 0.013013770803809166, + 0.013509179465472698, + -0.03851645812392235, + 0.043362416326999664, + 0.08587028086185455, + -0.028142372146248817, + -0.013881719671189785, + -0.013123664073646069, + -0.031164314597845078, + -0.04887755960226059, + 0.04859107360243797, + -0.05599097162485123, + -2.6453010793507898e-33, + 0.014969875104725361, + -0.012465961277484894, + -0.01748151332139969, + 0.018772291019558907, + 0.018029339611530304, + -0.05709386244416237, + 0.028635991737246513, + -0.052360787987709045, + -0.11147069931030273, + -0.02953432872891426, + 0.1466810554265976, + 0.03645944595336914, + 0.0446278415620327, + 0.015300959348678589, + 0.022195329889655113, + -0.03013058379292488, + 0.016462033614516258, + -0.04602930322289467, + -0.027552427724003792, + 0.025911984965205193, + 0.0005247784429229796, + 0.008669390343129635, + -0.10309205204248428, + 0.02922917902469635, + 0.0652434304356575, + -0.056306883692741394, + 0.0821399986743927, + 0.09954031556844711, + -0.09348326921463013, + 0.047699179500341415, + 0.01252348255366087, + 0.05583302676677704, + 0.003808856476098299, + 0.00720572704449296, + 0.05030111223459244, + 0.06257634609937668, + 0.05915851145982742, + 0.0016267461469396949, + -0.0297259371727705, + -0.12535952031612396, + 0.0008548502810299397, + -0.03754585236310959, + 0.0026755230501294136, + 0.11881542950868607, + 0.10172439366579056, + 0.11196085065603256, + -0.0720408707857132, + -0.032519400119781494, + 0.052214689552783966, + 0.07435933500528336, + 0.005791462957859039, + 0.006028205156326294, + -0.01368900015950203, + 0.024522991850972176, + 0.013614713214337826, + 0.029750997200608253, + -0.04430786892771721, + 0.1171187087893486, + -0.022603420540690422, + 0.04750185087323189, + -0.06447277963161469, + 0.05007254704833031, + -0.0868968591094017, + 0.03560279309749603, + -0.01443767175078392, + 0.03109430894255638, + -0.020160820335149765, + 0.04669981449842453, + 0.03672793135046959, + 0.04778607189655304, + 0.02118225023150444, + 0.06260795891284943, + 0.06119045242667198, + 0.0772041454911232, + -0.024410031735897064, + 0.03864959254860878, + -0.10047464817762375, + -0.039623986929655075, + 0.020215755328536034, + -0.024708302691578865, + -0.02537369728088379, + 0.04585162177681923, + -0.08237478882074356, + 0.10411185771226883, + -0.005445118993520737, + -0.04838080331683159, + 0.07409216463565826, + -0.0317230224609375, + -0.030567973852157593, + -0.05106889456510544, + 0.04160739853978157, + 0.050430335104465485, + 0.10018839687108994, + -0.06694488227367401, + -0.12607461214065552, + 6.938837082905901e-34, + 0.08794714510440826, + 0.013276203535497189, + -0.04448426514863968, + -0.016134606674313545, + -0.04739268496632576, + 0.0664002075791359, + -0.06824146211147308, + 0.03376728668808937, + -0.02869022637605667, + 0.013314064592123032, + -0.004654828459024429, + -0.04012550413608551, + -0.060628533363342285, + -0.009763071313500404, + -0.07528938353061676, + -0.05436226725578308, + 0.08511582762002945, + 0.04015766829252243, + -0.01219954900443554, + 0.042356520891189575, + 0.05543334409594536, + -0.017093785107135773, + -0.030856681987643242, + 0.038872890174388885, + -0.025361770763993263, + 0.03442421928048134, + 0.008513810113072395, + 0.038748592138290405, + -0.0771835520863533, + 0.005944502539932728, + -0.062128543853759766, + -0.04140220955014229, + 0.022095127031207085, + -0.06055048480629921, + -0.02114863134920597, + 0.00480165658518672, + 0.03210832551121712, + -0.0252011027187109, + 0.07093965262174606, + -0.10121572762727737, + -0.025064855813980103, + 0.02696947567164898, + 0.04387778788805008, + 0.13601720333099365, + 0.03035030886530876, + 0.013497735373675823, + -0.07485237717628479, + 0.01920757070183754, + -0.033151328563690186, + 0.004280109889805317, + -0.08170589059591293, + -0.07667286694049835, + 0.017909185960888863, + -0.07025714963674545, + 0.02963653951883316, + 0.01915787346661091, + -0.015332834795117378, + 0.010853087529540062, + -0.049663133919239044, + 0.031021498143672943, + 0.05334962531924248, + 0.07607381790876389, + 0.04704876244068146, + 0.10956963896751404, + 0.011439543217420578, + -0.0951460599899292, + 0.004760176874697208, + 0.024771086871623993, + 0.042891889810562134, + 0.05087333172559738, + -0.053153399378061295, + -0.006365363951772451, + -0.01985720731317997, + 0.012595218606293201, + 0.051317572593688965, + -0.02952432446181774, + 0.03862631320953369, + 0.03515612706542015, + -0.00301789166405797, + 0.044815901666879654, + 0.04402611032128334, + -0.004411690402776003, + -0.09185399860143661, + 0.060772694647312164, + 0.031305667012929916, + -0.03657638654112816, + 0.03287031129002571, + 0.061298761516809464, + 0.016302019357681274, + -0.011366642080247402, + -0.03762828931212425, + -0.019181685522198677, + -0.032882604748010635, + -0.06714201718568802, + 0.037573814392089844, + -1.6504472455380892e-08, + 0.11469641327857971, + -0.05893690884113312, + -0.0804435983300209, + 0.0027233141008764505, + 0.00653401855379343, + -0.034024059772491455, + -0.0276461411267519, + -0.113863006234169, + -0.06517784297466278, + 0.044115226715803146, + 0.002856859704479575, + 0.07831043750047684, + -0.12493927031755447, + 0.03405376896262169, + 0.02614297717809677, + -0.03948352858424187, + -0.011775671504437923, + -0.010689427144825459, + -0.0320047102868557, + -0.013636729680001736, + -0.018674641847610474, + 0.043353497982025146, + 0.030699240043759346, + -0.03406936675310135, + 0.0630076676607132, + 0.0065397582948207855, + -0.06944993883371353, + -0.03562217950820923, + -0.004525346215814352, + 0.02537332847714424, + -0.004882861394435167, + 0.041486937552690506, + -0.06833699345588684, + 0.023079615086317062, + -0.15838302671909332, + -0.05654969438910484, + -0.06736579537391663, + -0.03079085797071457, + -0.011803225614130497, + 0.059397585690021515, + 0.0129259517416358, + -0.08619551360607147, + -0.02520797587931156, + 0.0029752058908343315, + -0.03533031418919563, + -0.037507545202970505, + 0.05214621499180794, + 0.04250630363821983, + -0.027920009568333626, + -0.15610331296920776, + -0.03166884928941727, + -0.012850754894316196, + 0.06707348674535751, + -0.02557043544948101, + -0.06260576099157333, + 0.05019862577319145, + 0.005745891015976667, + 0.07740991562604904, + 0.01626972109079361, + -0.019306467846035957, + 0.19249561429023743, + 0.0370892733335495, + -0.014835555106401443, + -0.001154789817519486 + ], + "syringe-bold||needle,hypodermic,vaccine,medicine,doctor,shot,hospital": [ + 0.06448739767074585, + 0.017903102561831474, + -0.0253459420055151, + -0.04486098140478134, + -0.027336912229657173, + -0.0445319339632988, + 0.12989237904548645, + 0.07335475832223892, + -0.07142610102891922, + -0.0008325185626745224, + 0.044643331319093704, + 0.030724408105015755, + 0.014140942133963108, + 0.047219667583703995, + -0.05582914501428604, + -0.016297336667776108, + -0.027140308171510696, + -0.030704813078045845, + 0.0014331312850117683, + 0.031732041388750076, + -0.03814636543393135, + 0.064151331782341, + 0.033088259398937225, + 0.05718345195055008, + 0.007329703774303198, + -0.01765427552163601, + -0.014999364502727985, + 0.02291288785636425, + -0.015753760933876038, + -0.03510545566678047, + -0.0468212366104126, + -0.0895240530371666, + -0.06327060610055923, + -0.021152852103114128, + 0.09761714190244675, + -0.032730139791965485, + -0.034996289759874344, + 0.05812286213040352, + -0.004004694987088442, + 0.06933080404996872, + 0.06288190186023712, + -0.09483624249696732, + -0.03718322888016701, + 0.027461109682917595, + 0.022381434217095375, + 0.052678294479846954, + -0.005402091424912214, + -0.019535217434167862, + 0.026098743081092834, + 0.03730906918644905, + -0.060424283146858215, + -0.13189631700515747, + -0.06602756679058075, + 0.08166401833295822, + -0.047295697033405304, + -0.08478204905986786, + -0.07793199270963669, + -0.01501425076276064, + -0.031067244708538055, + 0.0022871410474181175, + -0.10813355445861816, + -0.012078708037734032, + 0.06156901270151138, + 0.06050931662321091, + 0.029400372877717018, + -0.017095785588026047, + 0.06288398802280426, + 0.01661001704633236, + 0.027469363063573837, + 0.0046563646756112576, + 0.020131682977080345, + 0.007657974027097225, + -0.03627420961856842, + 0.11236721277236938, + 0.0014135121600702405, + -0.018110428005456924, + 0.031044067814946175, + 0.01703370176255703, + 0.026002313941717148, + 0.018434327095746994, + 0.0009654936147853732, + -0.0357547253370285, + -0.003424026072025299, + 0.03310319781303406, + -0.037363000214099884, + 0.09852765500545502, + 0.008213846944272518, + -0.045630842447280884, + -0.051987361162900925, + -0.08038987964391708, + -0.01050546858459711, + -0.01618669368326664, + 0.01198403351008892, + 0.025520896539092064, + 0.021091504022479057, + 0.037174906581640244, + -0.01766895316541195, + 0.06602361053228378, + -0.06131545826792717, + 0.027310265228152275, + -0.020244712010025978, + -0.08142979443073273, + -0.005875734146684408, + 0.005376921035349369, + 0.037745118141174316, + -0.00815234612673521, + -0.08409533649682999, + -0.1069260761141777, + 0.05843251943588257, + -0.03806018829345703, + -0.04647712782025337, + 0.05710940808057785, + -0.01827371120452881, + -0.072891466319561, + -0.03882720321416855, + 0.07125687599182129, + -0.007692219223827124, + -0.00511283241212368, + 0.03262218087911606, + -0.014314370229840279, + 0.024072501808404922, + -0.05109398812055588, + -0.028285497799515724, + -0.08994565904140472, + 0.0488763265311718, + -0.02914757840335369, + 0.054080694913864136, + -2.7918310419555958e-33, + 0.062153320759534836, + 0.05592561140656471, + 0.10887626558542252, + 0.07100585848093033, + -0.027401447296142578, + 0.04607513174414635, + -0.04303685203194618, + 0.02484303154051304, + 0.03549782559275627, + 0.027589084580540657, + -0.09020227193832397, + -0.021162867546081543, + -0.026547404006123543, + 0.07118094712495804, + -0.003701387206092477, + -0.024521788582205772, + -0.04454421624541283, + -0.014283164404332638, + -0.05494051054120064, + 0.027958756312727928, + -0.0828617513179779, + 0.06872612237930298, + -0.060674358159303665, + 0.07523110508918762, + -0.012782081961631775, + 0.039296992123126984, + -0.030464783310890198, + 0.052444424480199814, + 0.04605124890804291, + -0.011985988356173038, + 0.04525716230273247, + -0.01245555654168129, + 0.027173541486263275, + -0.017513994127511978, + 0.0054515958763659, + -0.036115862429142, + -0.015490448102355003, + -0.040014252066612244, + -0.00974982138723135, + -0.03020472079515457, + 0.056609563529491425, + 0.030552439391613007, + 0.05585148558020592, + 0.02112686075270176, + 0.13060665130615234, + 0.004364754073321819, + -0.12997931241989136, + -0.07516742497682571, + -0.07853128761053085, + -0.03089664690196514, + 0.05510753393173218, + 0.016249557957053185, + 0.037437744438648224, + -0.0028487760573625565, + 0.000582197739277035, + -0.004545563366264105, + -0.04687797650694847, + 0.08161614835262299, + -0.0348924957215786, + 0.054837681353092194, + 0.02747899666428566, + 0.0002448891755193472, + 0.05236786603927612, + 0.026607416570186615, + -0.05902271717786789, + 0.09349385648965836, + -0.004863244015723467, + -0.04488794505596161, + 0.07894326001405716, + 0.003905229503288865, + -0.03250889480113983, + 0.08485095202922821, + -0.0383593924343586, + -0.0032277358695864677, + -0.029142243787646294, + 0.05820661038160324, + 0.0011824790854007006, + 0.026274412870407104, + 0.029286425560712814, + -0.09642072767019272, + -0.09555035084486008, + -0.006520185153931379, + -0.0510706752538681, + 0.15501005947589874, + -0.0006411827052943408, + -0.01033923588693142, + -0.005502787418663502, + -0.12652336061000824, + -0.01583114080131054, + -0.03348790854215622, + -0.04760097339749336, + 0.05820406228303909, + -0.0790775790810585, + -0.04708780720829964, + -0.07155553996562958, + 1.025065512228094e-34, + 0.050172358751297, + -0.026116449385881424, + -0.03717000409960747, + 0.05748984217643738, + 0.008195660077035427, + 0.03947794809937477, + 0.03955301269888878, + 0.043820884078741074, + 0.04647735878825188, + 0.03150268271565437, + 0.0006562963826581836, + -0.043216679245233536, + -0.04832993075251579, + -0.020610658451914787, + -0.06398945301771164, + 0.04960288852453232, + -0.04743707552552223, + 0.06036677956581116, + -0.05614152178168297, + 0.07303214818239212, + -0.050323329865932465, + 0.06218922510743141, + 0.0915401503443718, + -0.026496566832065582, + 0.05659765750169754, + 0.02782823145389557, + 0.017012758180499077, + -0.02150520496070385, + 0.032776325941085815, + -0.04925430193543434, + -0.0066576264798641205, + -0.03283797577023506, + 0.07308905571699142, + 0.016818847507238388, + -0.14681056141853333, + 0.02158128097653389, + 0.1085968017578125, + -0.1041300818324089, + 0.04154975712299347, + -0.06283572316169739, + -0.01580538973212242, + -0.06687948852777481, + 0.023725593462586403, + 0.04559891298413277, + -0.036806195974349976, + 0.04892966151237488, + -0.08926159143447876, + -0.0034323271829634905, + 0.012854116037487984, + 0.08239766955375671, + -0.0034276614896953106, + -0.037153106182813644, + -0.035092778503894806, + 0.025302544236183167, + -0.04129011929035187, + -0.038884829729795456, + -0.07765346765518188, + -0.09060695767402649, + -0.02066720835864544, + 0.05840679258108139, + 0.02550392970442772, + 0.011586855165660381, + -0.05623169243335724, + 0.017299333587288857, + 0.0021770792081952095, + 0.029899416491389275, + 0.024078354239463806, + -0.030505726113915443, + 0.02014911361038685, + -0.05062803253531456, + 0.07302667200565338, + -0.02038455568253994, + -0.02931170165538788, + 0.000754056905861944, + -0.01508269365876913, + -0.023945452645421028, + 0.027020711451768875, + 0.004012501332908869, + 0.016878772526979446, + 0.052545785903930664, + -0.03188253194093704, + -0.10882658511400223, + -0.043739572167396545, + 0.12952186167240143, + 0.02437853440642357, + -0.04126305878162384, + 0.06947222352027893, + -0.01871928572654724, + -0.06411098688840866, + 0.0012255145702511072, + -0.012809332460165024, + 0.05034298449754715, + -0.015099559910595417, + 0.08174110949039459, + -0.017124369740486145, + -2.2591169823726887e-08, + 0.09227903932332993, + 0.023053476586937904, + -0.028537346050143242, + -0.055379848927259445, + 0.010015248320996761, + -0.003718458116054535, + -0.07624741643667221, + 0.014305287972092628, + -0.014598561450839043, + 0.02714395523071289, + 0.0012721136445179582, + 0.07189139723777771, + -0.06327017396688461, + -0.059411946684122086, + 0.06404517590999603, + 0.02154511958360672, + -0.134504035115242, + 0.024092504754662514, + -0.07504045963287354, + -0.029214950278401375, + -0.022701770067214966, + 0.029267439618706703, + -0.07756014913320541, + -0.010152410715818405, + 0.019901379942893982, + 0.008633914403617382, + -0.011164645664393902, + 0.03990691155195236, + 0.014714381657540798, + 0.056527502834796906, + 0.023803483694791794, + 0.05179528146982193, + 0.04843857139348984, + -0.047551386058330536, + -0.14336584508419037, + 0.006647779606282711, + -0.014759710058569908, + 0.0012961509637534618, + 0.031723108142614365, + 0.050499092787504196, + 0.036291856318712234, + -0.08738477528095245, + -0.0026823359075933695, + -0.043842848390340805, + -0.044782739132642746, + -0.023077163845300674, + 0.03839839622378349, + 0.04795980453491211, + -0.04235808178782463, + -0.014451585710048676, + -0.007333600893616676, + 0.010459577664732933, + 0.05542295053601265, + -0.006317043211311102, + -0.09180741757154465, + 0.013518966734409332, + 0.010535459034144878, + -0.0017105569131672382, + 0.03024398535490036, + 0.012005608528852463, + 0.06257447600364685, + -0.023051291704177856, + 0.07937555760145187, + 0.07440812885761261 + ], + "t-shirt-bold||clothes,clothing": [ + -0.014177978038787842, + 0.04817238450050354, + -0.012311456725001335, + 0.030739448964595795, + 0.10315077006816864, + -0.025716233998537064, + 0.10990211367607117, + -0.04002660512924194, + -0.024203255772590637, + 0.0030784946866333485, + 0.04694339260458946, + -0.0338982492685318, + 0.0627804845571518, + -0.027399715036153793, + 0.05709393694996834, + 0.016673943027853966, + 0.07416625320911407, + 0.03925519064068794, + 0.024487372487783432, + -0.05316821485757828, + -0.029057702049613, + 0.06699521094560623, + 0.06567233800888062, + 0.06988180428743362, + 0.006777470465749502, + -0.044609829783439636, + 0.023547109216451645, + -0.026346273720264435, + -0.025247450917959213, + -0.04966337978839874, + -0.03622298315167427, + -0.0011188184143975377, + 0.05904136598110199, + 0.05840403214097023, + -0.007415502332150936, + -0.01868029683828354, + 0.01661456935107708, + 0.0038780667819082737, + 8.662194159114733e-05, + 0.09234427660703659, + -0.021496957167983055, + -0.1321793794631958, + -0.10987195372581482, + 0.017853165045380592, + -0.021867113187909126, + 0.020060017704963684, + 0.0022584996186196804, + 0.04982873052358627, + -0.04745772108435631, + 0.06329771876335144, + 0.00673309713602066, + -0.06196722760796547, + -0.08553113043308258, + 0.020243225619196892, + 0.0026518988888710737, + 0.03621288761496544, + -0.026719115674495697, + -0.019812721759080887, + 0.02444908767938614, + -0.028415197506546974, + 0.021102413535118103, + 1.749857619870454e-05, + -0.01702599599957466, + 0.07582602649927139, + 0.11465484648942947, + -0.014519721269607544, + 0.006449287757277489, + 0.09209170192480087, + -0.0949961468577385, + 0.026772288605570793, + 0.058946527540683746, + 0.01000276766717434, + -0.030191371217370033, + 0.06958350539207458, + -0.043743062764406204, + 0.019110267981886864, + 0.06248786672949791, + -0.016255665570497513, + -0.035436905920505524, + -0.010718057863414288, + -0.12779247760772705, + -0.07061021029949188, + -0.017143763601779938, + -0.041596513241529465, + 0.006769734434783459, + 0.030531134456396103, + -0.09829138219356537, + -0.039019037038087845, + -0.04864096641540527, + -0.014534393325448036, + -0.08135194331407547, + -0.000782119925133884, + -0.00573548162356019, + -0.01305453386157751, + -0.03651051223278046, + 0.02943786047399044, + 0.011498858220875263, + 0.0036368274595588446, + -0.0051033212803304195, + 0.07015898078680038, + -0.00822595413774252, + 0.0641104131937027, + 0.06379365175962448, + 0.03911086916923523, + -0.04834236204624176, + -0.07550375908613205, + 0.022210335358977318, + 0.009613610804080963, + 0.05547919496893883, + -0.006770304404199123, + -0.042213618755340576, + -0.06322004646062851, + 0.0018752510659396648, + -0.045890484005212784, + 0.0038147312588989735, + -0.08455336838960648, + 0.013754992745816708, + 0.04630337283015251, + 0.1088700145483017, + 0.01943949982523918, + 0.033506061881780624, + -0.0006088776863180101, + -0.040465302765369415, + -0.05035616457462311, + -0.03579561784863472, + 0.013297637924551964, + 0.05370301380753517, + -2.2976186867233507e-33, + 0.06854066252708435, + 0.0896960198879242, + -0.051452115178108215, + 0.1303674429655075, + -0.000615863420534879, + 0.018216699361801147, + -0.020757440477609634, + -0.09759945422410965, + -0.060347069054841995, + 0.13373136520385742, + 0.013373643159866333, + 0.0458931103348732, + -0.06790280342102051, + 0.10338301956653595, + 0.06209598109126091, + 0.010324324481189251, + -0.013064728118479252, + -0.10218816250562668, + -0.060135114938020706, + -0.00015910812362562865, + -0.03164586052298546, + 0.10393781960010529, + -0.04145268723368645, + -0.02121105045080185, + -0.032170530408620834, + -0.057227782905101776, + 0.06704563647508621, + -0.02965088002383709, + -0.06427978724241257, + 0.018056290224194527, + 0.05488424375653267, + 0.01597549207508564, + 0.05529865622520447, + -0.0010359345469623804, + 0.0003756077494472265, + 0.00247181486338377, + -0.1210423931479454, + 0.021960195153951645, + 0.03942819684743881, + 0.04482715204358101, + 0.046253204345703125, + -0.01709270477294922, + 0.010006449185311794, + 0.009023511782288551, + -0.017844706773757935, + 0.12030822038650513, + 0.06178194284439087, + -0.05091070383787155, + 0.001322331023402512, + 0.019488254562020302, + 0.03199968487024307, + -0.04478699713945389, + -0.024933122098445892, + -0.06849899142980576, + -0.010387159883975983, + -0.03462390601634979, + -0.004554938059300184, + 0.061321184039115906, + 0.011161619797348976, + -0.03656018525362015, + 0.02224745973944664, + -0.003359832102432847, + 0.07758518308401108, + -0.05345926806330681, + -0.028035243973135948, + 0.020019130781292915, + -0.020774686709046364, + -0.0018140804022550583, + 0.042984653264284134, + -0.026410188525915146, + -0.035689666867256165, + 0.09058140963315964, + 0.03523785248398781, + 0.012693103402853012, + 0.013557679019868374, + 0.008297584019601345, + 0.019010303542017937, + -0.004126344807446003, + 0.02320186421275139, + -0.10617245733737946, + -0.11030123382806778, + 0.014649352058768272, + -0.01025758869946003, + 0.1203419491648674, + 0.020615361630916595, + 0.0171711016446352, + 0.007252836134284735, + -0.0850476324558258, + -0.003345835953950882, + 0.00600150041282177, + -0.003512270050123334, + 0.01860947348177433, + -0.036035533994436264, + -0.06166188046336174, + -0.041728682816028595, + 3.6495343521239165e-34, + 0.10400062054395676, + 0.016658732667565346, + 0.00918253231793642, + -0.016232870519161224, + -0.004356297664344311, + -0.017057832330465317, + -0.02508627064526081, + 0.0727161318063736, + -0.052206914871931076, + 0.05356835573911667, + 0.07447097450494766, + -0.06255941092967987, + -0.12154475599527359, + -0.07541021704673767, + 0.05296020582318306, + 0.052991580218076706, + 0.09427282959222794, + 0.03871496766805649, + -0.031090134754776955, + -0.03175472095608711, + -0.03785106539726257, + -0.0598968043923378, + -0.029639488086104393, + 0.014203733764588833, + -0.052161380648612976, + 0.0275119636207819, + 0.026575027033686638, + 0.03208858519792557, + -0.07201181352138519, + -0.0494978092610836, + -0.055031582713127136, + -0.02496924251317978, + 0.0572940856218338, + 0.13351880013942719, + -0.021994534879922867, + 0.028304874897003174, + 0.0008122237049974501, + -0.011587671935558319, + 0.06525559723377228, + -0.0041804746724665165, + 0.029040243476629257, + -0.01915396936237812, + 0.03342248499393463, + 0.06872931122779846, + -0.03949183598160744, + -0.04964674264192581, + -0.0762084573507309, + -0.11166223883628845, + -0.06391428411006927, + 0.0344996377825737, + 0.0055104391649365425, + -0.0007881695055402815, + -0.006753908004611731, + -0.0028486307710409164, + -0.03852217644453049, + 0.002947422908619046, + -0.02359008602797985, + 0.01032350305467844, + -0.03156532347202301, + 0.06753257662057877, + 0.01297701895236969, + 0.08554017543792725, + -0.04669659584760666, + 0.01350468397140503, + 0.02482614666223526, + -0.02449725568294525, + -0.03144124895334244, + -0.031074339523911476, + 0.005731354467570782, + 0.027774298563599586, + 0.04383987560868263, + -0.05049027130007744, + 0.01011271309107542, + -0.01203693263232708, + -0.06302919238805771, + -0.11371248215436935, + 0.020336125046014786, + 0.07728566229343414, + -0.011321076191961765, + 0.026740657165646553, + -0.05311492457985878, + -0.051685214042663574, + -0.08337092399597168, + 0.06713469326496124, + 0.007974471896886826, + 0.086612269282341, + -0.0549926795065403, + 0.03745359927415848, + 0.02837936207652092, + -0.014843172393739223, + -0.043853867799043655, + 0.047731686383485794, + -0.004153452347964048, + 0.06225426122546196, + -0.011980997398495674, + -1.662177062655701e-08, + -0.02018323540687561, + -0.027983497828245163, + -0.03314819559454918, + 0.024732472375035286, + 0.030648386105895042, + 0.04580463469028473, + -0.0573151595890522, + -0.10713093727827072, + -0.03861339017748833, + 0.027576051652431488, + 0.0015580994077026844, + 0.013208219781517982, + -0.06628777831792831, + 0.014603940770030022, + 0.011304851621389389, + -0.023060400038957596, + -0.0861310213804245, + 0.01771705225110054, + -0.041612714529037476, + -0.023409977555274963, + -0.03206319734454155, + 0.021602582186460495, + 0.018379690125584602, + 0.025691905990242958, + 0.04904495179653168, + 0.025436248630285263, + -0.08829621970653534, + 0.05862527713179588, + 0.05115697160363197, + 0.09658630192279816, + 0.03470334783196449, + 0.03839636221528053, + -0.036447618156671524, + -0.020350411534309387, + -0.09708286076784134, + -0.05275587737560272, + -0.017300738021731377, + -0.07755035161972046, + 0.025292634963989258, + 0.0933133140206337, + 0.007144814822822809, + 0.0036141485907137394, + -0.0002824019466061145, + 0.014431774616241455, + 0.03378826007246971, + -0.04773510992527008, + 0.022790532559156418, + -0.024082191288471222, + -0.06120235472917557, + -0.05857798829674721, + -0.013225235976278782, + -0.061340536922216415, + -0.011206996627151966, + 0.09074413776397705, + -0.06927386671304703, + -0.08943948894739151, + 0.03962802141904831, + 0.08862344175577164, + 0.007745528127998114, + 0.047618646174669266, + 0.09319636225700378, + -0.09141447395086288, + -0.029053116217255592, + -0.07406380027532578 + ], + "table-bold||tables,tabular,speadsheets,excel,grid,form": [ + 0.010490108281373978, + -0.031702008098363876, + -0.10805635899305344, + 0.08703020960092545, + 0.02750207483768463, + 0.03578583896160126, + 0.017813753336668015, + -0.02378360740840435, + 0.02332119271159172, + 0.06296028196811676, + -0.009783429093658924, + -0.013919488526880741, + 0.054416075348854065, + -0.07079378515481949, + 0.008878006599843502, + -0.003201500978320837, + 0.043230682611465454, + 0.002474201610311866, + -0.009892296977341175, + 0.0738924890756607, + 0.02182687632739544, + 0.014826605096459389, + 0.03465062752366066, + 0.007267598062753677, + 0.07470294088125229, + 0.021317148581147194, + 0.00885045062750578, + 0.029439536854624748, + -0.026143811643123627, + -0.04384728521108627, + -0.07206074148416519, + -0.02943628467619419, + 0.05288953706622124, + 0.07505583763122559, + 0.027687598019838333, + -0.01583949103951454, + 0.02094649337232113, + 0.005154830869287252, + 0.053404949605464935, + 0.04277234151959419, + -0.051766280084848404, + -0.15317542850971222, + -0.016460508108139038, + 0.018792547285556793, + -0.025284294039011, + -0.041062984615564346, + -0.0572098009288311, + -0.05802847817540169, + -0.017888274043798447, + 0.0012208997504785657, + -0.074198417365551, + -0.028699498623609543, + -0.018968403339385986, + -0.011826159432530403, + 0.029016578570008278, + -0.03517230972647667, + -0.09720565378665924, + -0.03875037282705307, + 0.08536317199468613, + -0.010632975026965141, + -0.09138771146535873, + -0.000735390349291265, + 0.048844557255506516, + 0.044162996113300323, + -0.021238410845398903, + 0.06465071439743042, + -0.025063753128051758, + 0.01265104953199625, + -0.00523150060325861, + 0.014088866300880909, + 0.005595861934125423, + 0.027941163629293442, + -0.042555198073387146, + -0.04044908657670021, + -0.03850425407290459, + -0.000313368538627401, + -0.009058156982064247, + -0.021448131650686264, + -0.05112070217728615, + -0.03395887464284897, + -0.06998080015182495, + 0.04819396138191223, + -0.07396738976240158, + 0.05829823017120361, + 0.03480898588895798, + 0.0030476292595267296, + -0.002403580117970705, + -0.03928285464644432, + -0.043971847742795944, + -0.027836937457323074, + 0.01251818984746933, + 0.010946827940642834, + 0.04435103386640549, + 0.11275681853294373, + -0.13732494413852692, + 0.019354205578565598, + 0.07588730752468109, + -0.01361771672964096, + 0.010311905294656754, + 0.04192019999027252, + 0.00040999482735060155, + 0.04327579587697983, + 0.05124280974268913, + 0.05568264052271843, + -0.036895930767059326, + -0.04592710733413696, + 0.0577562190592289, + -0.06922532618045807, + 0.040987007319927216, + -0.03305114433169365, + -0.0159501563757658, + -0.11944093555212021, + -0.08819644153118134, + -0.09403026849031448, + -0.0656660795211792, + -0.017289847135543823, + -0.09241911768913269, + -0.09523294866085052, + 0.05059928819537163, + 0.0025102889630943537, + -0.021187836304306984, + 0.0007263851002790034, + -0.04710916802287102, + -0.015680596232414246, + -0.003287330036982894, + 0.04392936825752258, + -0.007166379131376743, + -1.1877213287807625e-34, + 0.0026133896317332983, + 0.03872038796544075, + 0.0202630627900362, + 0.08451537787914276, + 0.05859456956386566, + 0.022470029070973396, + -0.010546598583459854, + -0.018710322678089142, + 0.001794294803403318, + 0.07869825512170792, + 0.004604634363204241, + 0.0977252870798111, + -0.05582448095083237, + 0.056000374257564545, + 0.018641259521245956, + 0.04908217862248421, + -0.03552974760532379, + 0.018599508330225945, + -0.07199737429618835, + 0.030514782294631004, + -0.04402291029691696, + 0.010398408398032188, + 0.019628865644335747, + -0.012497988529503345, + 0.007738455198705196, + -0.014279277995228767, + 0.013560508377850056, + 0.04592262953519821, + -0.030287878587841988, + 0.020466338843107224, + 0.088538758456707, + -0.001974931452423334, + -0.018066667020320892, + -0.07218994945287704, + -0.04583267495036125, + 0.0055616470053792, + -0.05990751087665558, + 0.027416255325078964, + 0.05682766065001488, + 0.0699162483215332, + -0.09618836641311646, + 0.02129426598548889, + 0.023279009386897087, + -0.03877390921115875, + 0.07690991461277008, + 0.12508642673492432, + -0.026186222210526466, + -0.004155537113547325, + 0.023436937481164932, + -0.04573285952210426, + 0.005690611898899078, + -0.013181929476559162, + 0.031912848353385925, + 0.07289855182170868, + 0.02073248103260994, + -0.010082543827593327, + -0.06980980932712555, + 0.04800735414028168, + 0.07977160066366196, + 0.03048912063241005, + -0.010452521964907646, + -0.013166985474526882, + 0.0023224183823913336, + -0.01609918288886547, + -0.10726513713598251, + 0.07265670597553253, + -0.04742784798145294, + 0.0365823395550251, + 0.054688237607479095, + -0.101936936378479, + 0.050259318202733994, + 0.051461368799209595, + 0.043268848210573196, + 0.01004775334149599, + 0.019087456166744232, + -0.008247041143476963, + 0.01952528767287731, + -0.05986765772104263, + 0.03402266278862953, + -0.10818447917699814, + 0.00921604409813881, + 0.030761700123548508, + -0.11613884568214417, + 0.03645547851920128, + -0.10489144176244736, + 0.0029378028120845556, + -0.023708149790763855, + -0.055391233414411545, + -0.043992191553115845, + 0.039779260754585266, + -0.04469127953052521, + -0.004296511877328157, + -0.02908197045326233, + -0.08948055654764175, + -0.11196988075971603, + -2.241631543832616e-33, + 0.05969835817813873, + 0.027192719280719757, + -0.13503383100032806, + -0.04999137297272682, + 0.01115059107542038, + 0.09099135547876358, + 0.04067568853497505, + -0.018288837745785713, + 0.033654045313596725, + 0.02198389545083046, + 0.05831342935562134, + -0.03199763596057892, + -0.06218778342008591, + -0.04093411937355995, + -0.05614103376865387, + 0.046470366418361664, + -0.02881477028131485, + 0.0817309021949768, + -0.10467993468046188, + -0.04235747456550598, + -0.036722831428050995, + 0.05447150394320488, + -0.017297493293881416, + 0.11147597432136536, + 0.025024833157658577, + 0.005592281464487314, + -0.08370713889598846, + 0.014214173890650272, + -0.020073747262358665, + 0.057719312608242035, + -0.00573972100391984, + 0.0156513974070549, + 0.011779669672250748, + 0.050470076501369476, + -0.04474293068051338, + 0.0013610587920993567, + -0.014621628448367119, + -0.03623546287417412, + 0.05493903160095215, + -0.003987041302025318, + -0.03400414064526558, + 0.02894490957260132, + 0.06765148043632507, + 0.02795201726257801, + -0.0021257551852613688, + 0.08145260065793991, + 0.019442979246377945, + -0.08211714029312134, + -0.03764505684375763, + 0.04134581610560417, + -0.012206040322780609, + -0.034070517867803574, + -0.02869044989347458, + -0.012043367139995098, + -0.00116908666677773, + -0.03566846624016762, + -0.011755816638469696, + 0.03154392167925835, + -0.07249006628990173, + 0.009804215282201767, + -0.043495941907167435, + 0.1398514062166214, + 0.059049319475889206, + 0.06947070360183716, + 0.033785730600357056, + -0.04284559562802315, + 0.027572114020586014, + -0.03789697587490082, + 0.061920035630464554, + 0.00012870087812189013, + -0.03243212029337883, + -0.051993679255247116, + -0.02588888816535473, + 0.006449797190725803, + 0.045767661184072495, + 0.0013653493952006102, + -0.031875208020210266, + 0.011877614073455334, + -0.07712821662425995, + -0.0006717183860018849, + 0.02773333713412285, + 0.009183897636830807, + 0.0038016748148947954, + -0.006264187395572662, + -0.08072979748249054, + 0.04907688871026039, + 0.022582335397601128, + -0.04301401600241661, + -0.030201798304915428, + 0.05204268917441368, + -0.05096207931637764, + -0.025319242849946022, + 0.008691012859344482, + 0.02001614309847355, + -0.06903517991304398, + -2.1345481826529067e-08, + 0.03356340527534485, + -0.014131582342088223, + 0.02203190326690674, + -0.02611602284014225, + 0.021860476583242416, + -0.09441050887107849, + 0.021366305649280548, + 0.03671763837337494, + -0.04050520062446594, + -0.025361986830830574, + 0.09654099494218826, + 0.02365262433886528, + -0.02643262967467308, + -0.034999243915081024, + 0.034607693552970886, + 0.04750834032893181, + -0.036991722881793976, + -0.01564958691596985, + -0.039061326533555984, + -0.05523991584777832, + -0.00829983875155449, + 0.06868521869182587, + -0.008636576123535633, + 0.041103072464466095, + 0.12837116420269012, + -0.017070431262254715, + -0.13017931580543518, + 0.0007626579026691616, + 0.052479732781648636, + 0.10166125744581223, + 0.06890431046485901, + 0.013400443829596043, + 0.03862578049302101, + 0.04361143335700035, + -0.013033529743552208, + -0.02317013032734394, + -0.016456307843327522, + -0.007593087386339903, + -0.01260644756257534, + 0.12932638823986053, + -0.06414498388767242, + -0.04843733459711075, + -0.05534513294696808, + -0.06423801928758621, + -0.002898160368204117, + 0.07424852252006531, + -0.048138778656721115, + 0.015044798143208027, + -0.043255001306533813, + -0.08089949190616608, + -0.007790006697177887, + 0.005058232229202986, + 0.0034629940055310726, + 0.10386703163385391, + -0.09970606118440628, + -0.02412528730928898, + -0.027520976960659027, + 0.11871400475502014, + 0.08720617741346359, + -0.06904644519090652, + 0.10877668857574463, + 0.021319108083844185, + 0.02266279235482216, + 0.03291613608598709 + ], + "tabs-bold||*updated*,browser,window,folders,files": [ + 0.012180224061012268, + -0.03474680706858635, + -0.04128853604197502, + 0.06672834604978561, + 0.06556659936904907, + -0.05702938139438629, + 0.06982763111591339, + -0.05760987475514412, + 0.020092615857720375, + 0.02907547540962696, + -0.011889026500284672, + 0.07381772249937057, + 0.011516738682985306, + -0.014865714125335217, + -0.009549420326948166, + 0.0383414551615715, + -0.02139809913933277, + 0.03270546719431877, + -0.023936277255415916, + 0.013754420913755894, + -0.0769096165895462, + 0.057758308947086334, + 0.053578536957502365, + -0.015653220936655998, + 0.0293093491345644, + 0.040395889431238174, + -0.04034338891506195, + -0.07801221311092377, + -0.03142128139734268, + -0.06285078823566437, + -0.0006374481017701328, + -0.014251564629375935, + 0.05329672992229462, + -0.009717944078147411, + 0.03765678033232689, + -0.0091945119202137, + -0.0585034117102623, + -0.0284419022500515, + -0.014763236045837402, + 0.07560483366250992, + 0.0008174902759492397, + -0.029131826013326645, + -0.017094552516937256, + -0.031024755910038948, + -0.11812740564346313, + -0.0901569277048111, + -0.009154542349278927, + -0.04670228064060211, + -0.004743351601064205, + -0.05102209374308586, + -0.027773957699537277, + -0.02673236094415188, + -0.1376178115606308, + -0.060487471520900726, + -0.03148038312792778, + -0.017076805233955383, + -0.049584273248910904, + -0.044784385710954666, + 0.0438595712184906, + 0.005421379115432501, + 0.015941059216856956, + 0.008112816140055656, + 0.08386994898319244, + 0.007925216108560562, + 0.01864137500524521, + 0.09420327842235565, + 0.028240764513611794, + 0.021690184250473976, + 0.0005547997425310314, + 0.0008818352944217622, + 0.05248148366808891, + 0.023094559088349342, + -0.0043713548220694065, + -0.0016750977374613285, + -0.029558992013335228, + -0.07356101274490356, + 0.048259105533361435, + 0.07677920907735825, + -0.05221833288669586, + -0.08008280396461487, + -0.034482456743717194, + -0.10004027932882309, + 0.025742975994944572, + 0.027997156605124474, + 0.1112564206123352, + 0.08109806478023529, + -0.06347981840372086, + -0.03592878207564354, + -0.03530929237604141, + 0.005969141144305468, + -0.015402937307953835, + -0.10710613429546356, + 0.03160136565566063, + 0.07295484095811844, + -0.10044921189546585, + -0.0006975074065849185, + 0.09398777782917023, + 0.06233088672161102, + -0.030757540836930275, + 0.07999894767999649, + 0.03109845146536827, + 0.06718680262565613, + 0.07151471078395844, + 0.09604846686124802, + -0.02098792791366577, + 0.05007633939385414, + 0.01523879449814558, + 0.0276779867708683, + -0.017081674188375473, + -0.045338355004787445, + 0.020284639671444893, + -0.1159973219037056, + -0.060635801404714584, + -0.09863671660423279, + -0.06241678074002266, + -0.05143420025706291, + 0.0008565541938878596, + 0.009437265805900097, + 0.092564158141613, + 0.11761238425970078, + 0.09146951138973236, + -0.0663859099149704, + -0.05774607136845589, + -0.044089674949645996, + 0.023441215977072716, + 0.012598165310919285, + 0.032093487679958344, + -1.52240100901368e-33, + 0.0534994900226593, + 0.03364459425210953, + -0.040784697979688644, + 0.07130085676908493, + 0.09142228960990906, + 0.03893965855240822, + -0.017506083473563194, + -0.07423747330904007, + -0.05169016495347023, + -0.019612418487668037, + 0.08557026088237762, + 0.10047205537557602, + -0.07308979332447052, + 0.0055005354806780815, + 0.02657802775502205, + -0.04360361769795418, + -0.007902918383479118, + 0.0074714901857078075, + -0.03241179510951042, + -0.01963064819574356, + -0.09920299798250198, + 0.042090266942977905, + -0.04350446164608002, + -0.02780340239405632, + -0.007249400485306978, + -0.03535326570272446, + 0.016129517927765846, + 0.050015807151794434, + -0.08361715078353882, + 0.012724881991744041, + 0.04106074571609497, + 0.011250976473093033, + 0.049762606620788574, + 0.016175352036952972, + -0.12704946100711823, + 0.022978855296969414, + -0.1201901063323021, + -0.006592804100364447, + 0.041797272861003876, + 0.04670611396431923, + -0.06199600547552109, + -0.03301742672920227, + -0.0302917268127203, + -0.02173837274312973, + 0.00646087946370244, + 0.07932119071483612, + -0.05904588848352432, + -0.024170147255063057, + 0.004393631126731634, + 0.03282547742128372, + 0.005355199333280325, + 0.015264162793755531, + 0.0016058309702202678, + 0.00403716741129756, + -0.05703942850232124, + 0.0020181743893772364, + -0.053426194936037064, + 0.044364627450704575, + 0.03878365084528923, + 0.03902189061045647, + 0.026812376454472542, + -0.020398419350385666, + 0.004691299982368946, + -0.024875560775399208, + -0.08443224430084229, + 0.03481769189238548, + 0.03935001790523529, + 0.09550098329782486, + 0.03660361096262932, + -0.061774853616952896, + -0.02110389992594719, + 0.05309582129120827, + 0.051512300968170166, + 0.05331612005829811, + -0.007097089663147926, + -0.059925053268671036, + -0.0003373563231434673, + -0.02956102229654789, + 0.02070322260260582, + -0.05785336345434189, + 0.022747594863176346, + 5.591955050476827e-05, + -0.07746943831443787, + 0.06655958294868469, + -0.014770682901144028, + 0.0158033836632967, + 0.026650870218873024, + -0.007758201099932194, + -0.022460438311100006, + 0.05978609621524811, + -0.014936564490199089, + 0.06284850835800171, + -0.022581616416573524, + -0.09933745115995407, + -0.0787963792681694, + -1.3764210491953642e-33, + 0.0663619264960289, + -0.024046646431088448, + -0.12247799336910248, + -0.0071893371641635895, + -0.0820799246430397, + 0.08736646175384521, + 0.018604222685098648, + 0.03769288212060928, + 0.02209119312465191, + -0.00013975783076602966, + 0.08243022114038467, + 0.07591182738542557, + -0.06044419854879379, + -0.04865714907646179, + -0.03673852980136871, + 0.06781108677387238, + -0.0267629474401474, + 0.009660850279033184, + -0.030006088316440582, + -0.03338641673326492, + -0.025547076016664505, + -0.019428569823503494, + -0.041194792836904526, + 0.062368039041757584, + 0.04393420368432999, + -0.03732801601290703, + -0.01413779053837061, + 0.0064216312021017075, + 0.001053375075571239, + -0.041045065969228745, + 0.024790911003947258, + 0.015862058848142624, + -0.028314732015132904, + 0.006767153739929199, + 0.039004627615213394, + 0.011044259183108807, + -0.02389133721590042, + -0.07015137374401093, + -0.036532819271087646, + 0.01205432042479515, + -0.03839283809065819, + 0.038854748010635376, + 0.02737175114452839, + 0.04647919163107872, + -0.03284033387899399, + 0.06283242255449295, + 0.05182955041527748, + -0.06050913408398628, + -0.06093984469771385, + 0.05306364595890045, + 0.08769232779741287, + -0.08803919702768326, + 0.0009039089782163501, + -0.01948670484125614, + -0.02823410928249359, + -0.011837261728942394, + -0.04334744065999985, + 0.06057369336485863, + -0.09936588257551193, + -0.0009347088634967804, + -0.03266152739524841, + 0.030864140018820763, + -0.01759566366672516, + 0.007075958885252476, + -0.043240658938884735, + -0.021408140659332275, + 0.008668589405715466, + -0.045194562524557114, + 0.06977769732475281, + -0.013161169365048409, + 0.03771664947271347, + -0.05676059052348137, + -0.05173966661095619, + 0.00551689974963665, + 0.05275193601846695, + -0.05926544964313507, + 0.08118949830532074, + -0.00029073155019432306, + -0.06689990311861038, + -0.04330531135201454, + 0.023785514757037163, + 0.04372701421380043, + 0.007319660857319832, + -0.06264930963516235, + -0.08678396791219711, + 0.02439110353589058, + 0.006768266204744577, + 0.07484635710716248, + -0.013924681581556797, + -0.053638093173503876, + 0.0154530368745327, + 0.024477684870362282, + 0.013044655323028564, + -0.017097700387239456, + -0.05245647951960564, + -1.931501714125261e-08, + -0.08067558705806732, + 0.010794537141919136, + -0.0719342902302742, + 0.0463707335293293, + 0.06203581020236015, + -0.06448522210121155, + -0.0008793229353614151, + 0.007826450280845165, + -0.05043867975473404, + -0.08177458494901657, + 0.051215317100286484, + 0.032089974731206894, + 0.003531761933118105, + -0.05112902820110321, + 0.024740085005760193, + 0.07727693021297455, + -0.03825141489505768, + 0.038994189351797104, + 0.0002144982136087492, + -0.024317597970366478, + 0.013103836216032505, + 0.10473599284887314, + 0.10035340487957001, + 0.07047365605831146, + 0.04212285205721855, + 0.027578936889767647, + -0.06739038228988647, + -0.025375425815582275, + 0.04236125946044922, + 0.05179734155535698, + 0.015015887096524239, + -0.027970096096396446, + -0.03036731481552124, + -0.02175583876669407, + -0.023693909868597984, + -0.05449221283197403, + 0.006785042118281126, + -0.03330002352595329, + -0.012236842885613441, + 0.09042250365018845, + 0.018384752795100212, + -0.07721554487943649, + -0.0072206794284284115, + 0.00416208803653717, + -0.08640212565660477, + -0.00020236236741766334, + -0.03972730040550232, + 0.0430341511964798, + -0.052876297384500504, + -0.12699685990810394, + -0.0016797402640804648, + 0.04725346341729164, + 0.04136856272816658, + 0.08099109679460526, + -0.08854851871728897, + -0.03763548657298088, + 0.043987173587083817, + 0.12731267511844635, + 0.0022431754041463137, + -0.01779058761894703, + 0.09380566328763962, + 0.05668851360678673, + 0.0223015658557415, + 0.04298457130789757 + ], + "tag-bold||tags,hashtag,labels,sale,sell,price,discount": [ + 0.00026372959837317467, + -0.003761450992897153, + -0.106574647128582, + -0.007568709086626768, + 0.056909624487161636, + 0.00551906693726778, + 0.07748440653085709, + -0.003420379478484392, + 0.04267483949661255, + -0.014335797168314457, + 0.03711998835206032, + 0.0536346472799778, + 0.06624612212181091, + -0.04013834148645401, + 0.02870342880487442, + 0.043519843369722366, + -0.008374284021556377, + 0.06330492347478867, + -0.045952875167131424, + -0.008515307679772377, + 0.013353414833545685, + 0.021501725539565086, + 0.014281927607953548, + 0.050009194761514664, + 0.03742950037121773, + 0.0470280684530735, + 0.00015494409308303148, + 0.006379774305969477, + -0.0006239863578230143, + -0.05564620718359947, + 0.006617256905883551, + -0.050127167254686356, + 0.09381362050771713, + 0.05678928270936012, + 0.0825260728597641, + -0.029846632853150368, + -0.03873201832175255, + -0.02231147512793541, + 0.008106500841677189, + 0.05025501921772957, + 0.05051048472523689, + -0.06462981551885605, + -0.11492568254470825, + 0.012508904561400414, + -0.04869978129863739, + 0.029011959210038185, + -0.07906556874513626, + -0.005897935945540667, + 0.00010707475303206593, + 0.04677172750234604, + -0.013020717538893223, + -0.05937739834189415, + -0.0834292322397232, + 0.04923887923359871, + 0.03292948007583618, + 0.0656575858592987, + -0.11622362583875656, + -0.12898007035255432, + 0.05864093080163002, + -0.02169952169060707, + -0.012595673091709614, + -0.003887224942445755, + 0.04228424280881882, + 0.046258557587862015, + 0.039796967059373856, + 0.032046232372522354, + -0.022932402789592743, + 0.05624600499868393, + -0.07551763951778412, + 0.03185803443193436, + 0.06624370813369751, + 0.0016730357892811298, + 0.029191404581069946, + -0.02684304490685463, + -0.023777293041348457, + -0.027128830552101135, + 0.03842557966709137, + -0.05443752184510231, + -0.04443082585930824, + -0.03786737099289894, + -0.09878002852201462, + -0.0591980405151844, + -0.06084771081805229, + -0.0572860911488533, + 0.02370501309633255, + 0.041471485048532486, + -0.011751020327210426, + -0.048328518867492676, + 0.0217142216861248, + -0.012618280947208405, + -0.07135267555713654, + -0.050305914133787155, + -0.03158944472670555, + 0.0389973483979702, + -0.09534377604722977, + 0.03470168262720108, + 0.02753680758178234, + 0.039189860224723816, + -0.01229824498295784, + 0.09072525054216385, + 0.04417109116911888, + 0.007352944929152727, + 0.0033331012818962336, + -0.017516309395432472, + -0.04595579206943512, + -0.03261787071824074, + -0.035393115133047104, + 0.035694293677806854, + -0.019432852044701576, + -0.016755864024162292, + -0.017290202900767326, + -0.07944505661725998, + -0.07988033443689346, + -0.06990965455770493, + -0.030521975830197334, + -0.021995728835463524, + 0.010919522494077682, + -0.04840238019824028, + 0.10105034708976746, + 0.02388208545744419, + -0.013239950872957706, + 0.024748453870415688, + -0.013916107825934887, + -0.1269112527370453, + -0.05802474543452263, + 0.006151091773062944, + -0.022246217355132103, + -1.7881820266090262e-33, + 0.05412860959768295, + -0.022601095959544182, + -0.029155651107430458, + 0.004233019892126322, + -0.009354534558951855, + 0.07726457715034485, + -0.07908705621957779, + -0.06965173035860062, + -0.0728997215628624, + 0.07407944649457932, + 0.1197114959359169, + 0.038091983646154404, + -0.036480046808719635, + 0.03688966482877731, + 0.061632152646780014, + -0.030162444338202477, + 0.04182213917374611, + -0.018110347911715508, + -0.022131280973553658, + 0.011950677260756493, + -0.08741747587919235, + 0.04188144579529762, + 0.010032176040112972, + -0.0004817916778847575, + -0.047556087374687195, + 0.006280491594225168, + 0.007932723499834538, + -0.0017750542610883713, + 0.049176137894392014, + 0.051714226603507996, + 0.04068366438150406, + 0.019364578649401665, + 0.035153090953826904, + 0.033558640629053116, + -0.04128580167889595, + 0.034180447459220886, + -0.0861704871058464, + -0.02647118829190731, + 0.05989215150475502, + -0.03568769991397858, + -0.143931046128273, + -0.06475027650594711, + -0.005107142496854067, + -0.07467580586671829, + 0.02226938121020794, + 0.1347033679485321, + -0.041788652539253235, + -0.05692782253026962, + 0.06169377639889717, + 0.038158681243658066, + -0.0016864947974681854, + -0.06067420542240143, + 0.05401528254151344, + -0.03368864580988884, + -0.02227618545293808, + -0.04673072323203087, + -0.06145552918314934, + 0.05104558542370796, + 0.00021317723440006375, + 0.015404077246785164, + -0.0825224444270134, + -0.009847108274698257, + 0.07852388173341751, + -0.093626469373703, + -0.04399409890174866, + 0.07431786507368088, + 0.007801520638167858, + 0.0696655884385109, + 0.012658808380365372, + -0.013486144132912159, + -0.0109775485470891, + 0.07556568831205368, + 0.0006760965334251523, + 0.05798519775271416, + 0.03394542261958122, + 0.03272857144474983, + 0.027737613767385483, + -0.0030806977301836014, + 0.027495402842760086, + 0.01180942915380001, + -0.1107383519411087, + -0.04545696824789047, + -0.01942775957286358, + 0.15277020633220673, + -0.03128332272171974, + 0.030908189713954926, + 0.010096674785017967, + -0.09919179230928421, + 0.04993435740470886, + 0.029785390943288803, + -0.04766348749399185, + 0.06806778907775879, + -0.07148411124944687, + -0.07377952337265015, + -0.09853044152259827, + -9.751881848967504e-34, + 0.08055761456489563, + 0.01497704442590475, + -0.08956442773342133, + 0.022691678255796432, + -0.033860474824905396, + 0.027193035930395126, + -0.030781738460063934, + 0.07534707337617874, + 0.026823118329048157, + 0.014132719486951828, + 0.039193518459796906, + -0.003215471515432, + -0.13674040138721466, + -0.01570170186460018, + 0.014328151009976864, + 0.03466309607028961, + 0.03719930350780487, + 0.08116092532873154, + 0.019266674295067787, + 0.015109188854694366, + -0.009701789356768131, + 0.06387566775083542, + -0.07114841043949127, + 0.1083345040678978, + -0.0007498895283788443, + -0.0006045217742212117, + -0.0026383239310234785, + 0.030260400846600533, + 0.019309649243950844, + -0.03799283504486084, + -0.010639767162501812, + -0.05347975343465805, + 0.04847375303506851, + 0.007118238136172295, + -0.04932326823472977, + -0.01866644062101841, + 0.05725616216659546, + -0.05059947073459625, + 0.060341015458106995, + 0.027472620829939842, + -0.027602318674325943, + 0.05126066505908966, + 0.07087991386651993, + 0.0020919214002788067, + -0.05962290242314339, + -0.03806217759847641, + 0.00971949938684702, + -0.06127003952860832, + 0.017422230914235115, + 0.03755626454949379, + 0.026594994589686394, + -0.008048729971051216, + -0.05591048672795296, + -0.0018090270459651947, + -0.13163356482982635, + -0.061052095144987106, + 0.012534844689071178, + 0.03866684436798096, + -0.08899113535881042, + 0.0161336287856102, + -0.02772659994661808, + 0.10628467053174973, + 0.027101881802082062, + 0.0550076961517334, + 0.009810001589357853, + -0.04311636835336685, + 0.0065679773688316345, + -0.07228776812553406, + -0.034164030104875565, + -0.010640492662787437, + 0.07334472239017487, + 0.0027039467822760344, + -0.03961104527115822, + 0.012578231282532215, + -0.012754912488162518, + -0.061207037419080734, + 0.0012563649797812104, + 0.044938161969184875, + 0.03203806281089783, + -0.02901197224855423, + 0.042786769568920135, + -0.0051553212106227875, + -0.010102502070367336, + 0.07390931993722916, + -0.03106328472495079, + 0.01191991101950407, + -0.0015330162132158875, + 0.0021997755393385887, + -0.020144300535321236, + -0.07586105167865753, + -0.04951347038149834, + 0.004827030934393406, + 0.0394221730530262, + 0.053222816437482834, + -0.08664348721504211, + -2.184146197237169e-08, + -0.046214379370212555, + -0.00384126091375947, + -0.013709726743400097, + 0.018577121198177338, + 0.01352621242403984, + 0.02879619225859642, + 0.05624190345406532, + -0.04250149428844452, + -0.04446117952466011, + 0.02466062270104885, + 0.09282605350017548, + 0.08093979209661484, + -0.11833831667900085, + -0.07683759927749634, + -0.07012977451086044, + 0.0229362640529871, + -0.04763823747634888, + 0.035073891282081604, + 0.019637836143374443, + -0.048164933919906616, + -0.02441120706498623, + 0.10436460375785828, + 0.010926676914095879, + 0.029932286590337753, + 0.0988999754190445, + 0.031112363561987877, + -0.02920348197221756, + -0.0008650228846818209, + 0.033100925385951996, + 0.06976352632045746, + 0.07355143129825592, + 0.03104759193956852, + -0.005040729884058237, + -0.00039778838981874287, + 0.008215324021875858, + -0.01775122806429863, + -0.04069909453392029, + -0.04811679944396019, + -0.014738155528903008, + 0.09862329065799713, + -0.044756125658750534, + -0.017095189541578293, + -0.06889688968658447, + -0.03735418617725372, + -0.019115712493658066, + -0.008799429051578045, + -0.017559370025992393, + 0.008041460998356342, + -0.05524013936519623, + -0.12233863770961761, + -0.01071501336991787, + 0.005959848873317242, + -0.00670887203887105, + 0.014270544983446598, + -0.05764029920101166, + -0.01838899403810501, + 0.012364035472273827, + 0.018640022724866867, + 0.02263883501291275, + -0.00826684944331646, + 0.15775394439697266, + -0.01420462317764759, + 0.0030745607800781727, + -0.007467289455235004 + ], + "tag-chevron-bold||tags,hashtag,labels,sale": [ + -0.010765977203845978, + 0.016255179420113564, + -0.04211623966693878, + 0.011150345206260681, + 0.03937726840376854, + -0.018603622913360596, + 0.0723109319806099, + -0.020597483962774277, + 0.0423441156744957, + -0.04549860581755638, + 0.02399471588432789, + 0.07967057079076767, + 0.04774465784430504, + -0.0611528716981411, + 0.06032942235469818, + 0.07383634895086288, + -0.008076167665421963, + 0.031718380749225616, + -0.008055036887526512, + -0.02026810497045517, + -0.020354654639959335, + -0.0014676920836791396, + 0.03705649822950363, + 0.039341963827610016, + -0.018953535705804825, + 0.045043207705020905, + -0.0346451960504055, + 0.003996312152594328, + -0.008290434256196022, + -0.06123712286353111, + 0.043849654495716095, + -0.004736289847642183, + 0.03486274927854538, + 0.052937302738428116, + 0.04878039285540581, + -0.012179281562566757, + -0.021351231262087822, + 0.009635388851165771, + 0.057714011520147324, + 0.034905385226011276, + 0.07660796493291855, + -0.06582704931497574, + -0.10406437516212463, + 0.006453362293541431, + -0.08786725252866745, + -0.007579031866043806, + -0.036300431936979294, + -0.01977217197418213, + -0.013180551119148731, + 0.05744423344731331, + 0.014077876694500446, + -0.058180056512355804, + -0.06586267054080963, + 0.0167399849742651, + 0.02903803437948227, + 0.019567936658859253, + -0.10478733479976654, + -0.10344674438238144, + 0.09238752722740173, + -0.010841963812708855, + 0.04745826497673988, + 0.025535887107253075, + 0.016700707376003265, + 0.0486723817884922, + 0.021905075758695602, + 0.05553414300084114, + 0.01431191898882389, + 0.03459954261779785, + -0.06055817753076553, + 0.05921421945095062, + 0.054952312260866165, + 0.023518860340118408, + 0.03352586552500725, + -0.027125511318445206, + -0.022964153438806534, + -0.01508609764277935, + 0.05101131647825241, + -0.030346034094691277, + -0.005745064467191696, + -0.04706275090575218, + -0.1103610247373581, + -0.019992446526885033, + -0.06524655222892761, + -0.061049774289131165, + 0.029208164662122726, + 0.06037744879722595, + -0.008870953693985939, + -0.052461784332990646, + -0.0018135119462385774, + -0.016848906874656677, + -0.051803845912218094, + -0.03446342051029205, + 0.028697554022073746, + -0.010271296836435795, + -0.06628850102424622, + -0.008383587934076786, + 0.03749873489141464, + 0.057758111506700516, + 0.00412594061344862, + 0.0938258171081543, + 0.04470204934477806, + 0.06313414871692657, + -0.013600515201687813, + -0.02585972100496292, + -0.04187729209661484, + 0.05374967306852341, + -0.05371168255805969, + 0.060153618454933167, + -0.03469189628958702, + 0.03363165259361267, + 0.015014155767858028, + -0.06543944031000137, + -0.022714613005518913, + -0.05766334757208824, + -0.08530934900045395, + 0.017623206600546837, + -0.021348172798752785, + -0.055581532418727875, + 0.10726383328437805, + 0.05549246445298195, + -0.025050947442650795, + -0.02172079123556614, + -0.07222283631563187, + -0.1344946175813675, + -0.038588907569646835, + 0.03292237967252731, + -0.047354817390441895, + -2.7929499656407848e-33, + 0.009197245351970196, + 0.01811949908733368, + -0.023028090596199036, + 0.0032794931903481483, + 0.03582451865077019, + 0.0688960999250412, + -0.06883016228675842, + -0.0889836773276329, + -0.09707751870155334, + 0.09327922761440277, + 0.141435444355011, + 0.05100395530462265, + -0.051908187568187714, + 0.01018111314624548, + -0.021119846031069756, + -0.025347506627440453, + 0.015497136861085892, + -0.011923344805836678, + -0.06983135640621185, + -0.048896729946136475, + -0.07569583505392075, + 0.0014026276767253876, + -0.03748537600040436, + -0.022093672305345535, + -0.02373029664158821, + 0.02269088849425316, + -0.019006341695785522, + 0.042675770819187164, + 0.028531473129987717, + 0.051886171102523804, + 0.02818978764116764, + 0.0012251281877979636, + 0.06960901618003845, + 0.03341163694858551, + -0.03458882495760918, + 0.009240596555173397, + -0.0736793503165245, + -0.030113721266388893, + 0.029371006414294243, + -0.030253607779741287, + -0.06317286938428879, + -0.04574273154139519, + 0.032015297561883926, + -0.08548340201377869, + -0.011109490878880024, + 0.1527978479862213, + -0.01993335224688053, + -0.06184128299355507, + 0.07340378314256668, + -0.001776316436007619, + -0.009714620187878609, + -0.0464666523039341, + 0.01024127658456564, + -0.04008599370718002, + -0.034103818237781525, + -0.05798162892460823, + -0.054538294672966, + 0.04292755946516991, + -0.021647121757268906, + 0.010015256702899933, + -0.0698784813284874, + 0.014693760313093662, + 0.0968037024140358, + -0.06846167892217636, + -0.013594971038401127, + 0.0404813252389431, + 0.039059847593307495, + 0.11641155928373337, + 0.028221191838383675, + 0.00046211076551117003, + 0.0035746463108807802, + 0.06383194029331207, + 0.02918187715113163, + 0.04153522849082947, + 0.06696080416440964, + 0.018788011744618416, + -0.014257192611694336, + -0.06386686116456985, + 0.043542101979255676, + 0.05105556547641754, + -0.10034201294183731, + -0.0700613409280777, + -0.02532893791794777, + 0.12738938629627228, + -0.016194308176636696, + 0.002673226408660412, + -0.0014369402779266238, + -0.08057092130184174, + 0.01918351650238037, + 0.05580539256334305, + -0.05474138259887695, + 0.015963096171617508, + -0.059327125549316406, + -0.049260735511779785, + -0.10298680514097214, + 4.010693741565785e-35, + 0.04922950640320778, + 0.017889512702822685, + -0.024576878175139427, + -0.011134890839457512, + -0.06458345800638199, + 0.04932604357600212, + 0.02391248568892479, + 0.07141533493995667, + -0.023777179419994354, + 0.015801873058080673, + 0.08303260803222656, + 0.03329741582274437, + -0.1200614795088768, + -0.009283003397285938, + -0.006603619083762169, + 0.038358669728040695, + 0.0864921286702156, + 0.04943152889609337, + 0.01785716786980629, + 0.007370833773165941, + 0.023845920339226723, + 0.03874262794852257, + -0.0802997425198555, + 0.176108255982399, + 0.0008726809173822403, + 0.009419972077012062, + 0.027028551325201988, + 0.009295153431594372, + 0.0312851257622242, + -0.011785322800278664, + 0.007878357544541359, + -0.03233605995774269, + 0.0346829891204834, + 0.017880979925394058, + -0.038680076599121094, + -0.03719095513224602, + 0.018719356507062912, + 0.012729272246360779, + 0.09360790997743607, + 0.004372869618237019, + -0.04646417126059532, + 0.005968416575342417, + 0.07020784914493561, + 0.0025694032665342093, + -0.08363089710474014, + -0.0360470786690712, + 0.028292212635278702, + -0.05247177183628082, + 0.024437980726361275, + 0.04941935837268829, + 0.004767769947648048, + -0.0030824311543256044, + -0.040762122720479965, + 0.023903168737888336, + -0.11687952280044556, + -0.004637890961021185, + 0.021134687587618828, + 0.06412104517221451, + -0.12303009629249573, + 0.03548391908407211, + -0.027646837756037712, + 0.07055862247943878, + 0.04451126232743263, + -0.013983268290758133, + -0.006815740372985601, + -0.0291424747556448, + -0.037553172558546066, + -0.08016365766525269, + 0.029173173010349274, + 0.015055345371365547, + 0.05065804719924927, + 0.04662475362420082, + -0.055450815707445145, + -0.009872484020888805, + -0.0027978927828371525, + -0.055881354957818985, + 0.05124930664896965, + 0.013689813204109669, + -0.0027877208776772022, + -0.027444452047348022, + 0.049689795821905136, + -0.02245643176138401, + -0.013294333592057228, + 0.0909779965877533, + -0.02653484418988228, + -0.011181134730577469, + 0.00607296684756875, + 0.01178973913192749, + 0.03195618465542793, + -0.09715325385332108, + -0.05364257097244263, + -0.0014183789025992155, + -0.0008881179965101182, + 0.030940605327486992, + -0.10770142078399658, + -1.9239260851122708e-08, + -0.03797463700175285, + -0.0048053371720016, + -0.01694093458354473, + 0.0004976285854354501, + -0.009218207560479641, + 0.03111634962260723, + 0.03323226794600487, + -0.06346898525953293, + -0.10426969081163406, + 0.010036258026957512, + 0.06530050933361053, + 0.04226469248533249, + -0.091459259390831, + -0.05338294804096222, + -0.022166622802615166, + -0.004565881565213203, + -0.04731332138180733, + 0.07175862044095993, + -0.012814851477742195, + -0.06651680916547775, + -0.06745252013206482, + 0.07909542322158813, + 0.04074406996369362, + 0.06590624898672104, + 0.06072216108441353, + 0.02010270208120346, + -0.002233948092907667, + -0.025902410969138145, + 0.06554742902517319, + 0.0863092839717865, + 0.04985002800822258, + 0.054043155163526535, + -0.05384392663836479, + -0.019777260720729828, + 0.006128058303147554, + -0.061905961483716965, + -0.03504311293363571, + -0.05188729986548424, + -0.004721658769994974, + 0.08999241888523102, + -0.022656287997961044, + -0.030940478667616844, + -0.06739255785942078, + -0.024107350036501884, + -0.06962724030017853, + 0.004621623549610376, + -0.008339588530361652, + 0.06619596481323242, + -0.07057159394025803, + -0.09585724771022797, + 0.054795995354652405, + -0.03060770034790039, + -0.04559601843357086, + 0.01790538616478443, + -0.05387892946600914, + -0.03275532275438309, + -0.0038369258400052786, + 0.05010730028152466, + 0.018310148268938065, + -0.005223928019404411, + 0.1595275104045868, + -0.026625437662005424, + 0.04170067980885506, + -0.05334491282701492 + ], + "tag-simple-bold||tags,hashtag,labels,sale,sell,price,discount": [ + 0.0028163341339677572, + 0.01458539068698883, + -0.0887908861041069, + 0.002859879517927766, + 0.06843570619821548, + 0.0047066998668015, + 0.06781800836324692, + 0.008956879377365112, + 0.010270627215504646, + -0.00680230837315321, + 0.03362223133444786, + 0.035120829939842224, + 0.056528203189373016, + -0.039691466838121414, + 0.03322858735918999, + 0.033046066761016846, + -0.016890771687030792, + 0.042939066886901855, + -0.03590209409594536, + -0.005165323615074158, + -0.015683384612202644, + 0.0077793835662305355, + -0.004560061264783144, + 0.04978971183300018, + 0.027632366865873337, + 0.05542856454849243, + -0.008756476454436779, + 0.02566242776811123, + 0.013952622190117836, + -0.055894505232572556, + 0.015191451646387577, + -0.04997359961271286, + 0.0884331464767456, + 0.0440208874642849, + 0.0800994485616684, + -0.028361422941088676, + -0.02064666897058487, + -0.00484507018700242, + 0.0029095907229930162, + 0.035315629094839096, + 0.04760383069515228, + -0.058460164815187454, + -0.10990834981203079, + 0.022276295349001884, + -0.0660817101597786, + 0.01668928749859333, + -0.07631634920835495, + -0.009009342640638351, + 4.429189721122384e-05, + 0.04319120571017265, + 0.002485321369022131, + -0.05674099177122116, + -0.08597622066736221, + 0.03572290018200874, + 0.034467536956071854, + 0.07482898980379105, + -0.1336747109889984, + -0.118939608335495, + 0.05600183829665184, + -0.022922126576304436, + 0.0005338278133422136, + -0.022362923249602318, + 0.03780268877744675, + 0.043334342539310455, + 0.030655276030302048, + 0.024400444701313972, + -0.03002379648387432, + 0.04887724295258522, + -0.08229806274175644, + 0.018853995949029922, + 0.06443764269351959, + -0.006262393668293953, + 0.0046262191608548164, + -0.013021006248891354, + -0.024508588016033173, + -0.050699759274721146, + 0.025165949016809464, + -0.042379796504974365, + -0.058388978242874146, + -0.014746099710464478, + -0.11175220459699631, + -0.06870844960212708, + -0.07867078483104706, + -0.03474443405866623, + 0.02037537470459938, + 0.025817574933171272, + -0.00819031335413456, + -0.04248920828104019, + 0.03701296076178551, + -0.01550784707069397, + -0.05762851610779762, + -0.019193878397345543, + -0.0063325283117592335, + 0.03866240754723549, + -0.08517088741064072, + 0.03555085510015488, + 0.03632454201579094, + 0.03892436623573303, + -0.05062186345458031, + 0.09320096671581268, + 0.038433123379945755, + 0.010964925400912762, + 0.02133852057158947, + -0.04440353438258171, + -0.03627878427505493, + -0.03099728189408779, + -0.02995443344116211, + 0.03021738864481449, + -0.017985444515943527, + -0.034442584961652756, + -0.02371699921786785, + -0.07303839176893234, + -0.06966809928417206, + -0.06763739138841629, + -0.01791086234152317, + -0.01983836106956005, + 0.0029658405110239983, + -0.05803486332297325, + 0.09234332293272018, + 0.04544276371598244, + -0.016212468966841698, + 0.020787056535482407, + -0.03991377353668213, + -0.12083383649587631, + -0.06337310373783112, + 0.018353072926402092, + -0.019643349573016167, + -2.5552872320945885e-33, + 0.062320683151483536, + 0.0022663630079478025, + -0.02427913062274456, + 0.01691964454948902, + -0.007017945405095816, + 0.06606686115264893, + -0.08145835250616074, + -0.06309296935796738, + -0.06991401314735413, + 0.07150471955537796, + 0.15217706561088562, + 0.013887331821024418, + -0.04210607707500458, + 0.03356841951608658, + 0.06122775375843048, + -0.02457442507147789, + 0.05316873639822006, + -0.023791810497641563, + -0.02225111611187458, + 0.001441450440324843, + -0.09413758665323257, + 0.0676705464720726, + 0.009067555889487267, + -0.020565276965498924, + -0.03861073777079582, + 0.013651902787387371, + 0.00986850168555975, + -0.004970469046384096, + 0.06242549791932106, + 0.04505065828561783, + 0.04541008546948433, + 0.01707550697028637, + 0.03658249229192734, + 0.04813077300786972, + -0.047974005341529846, + 0.02506610006093979, + -0.061658866703510284, + -0.02815183997154236, + 0.05941617861390114, + -0.056459277868270874, + -0.14830471575260162, + -0.05536811798810959, + 0.006023148074746132, + -0.07928450405597687, + 0.026373526081442833, + 0.13916118443012238, + -0.03664731606841087, + -0.053163398057222366, + 0.06303171068429947, + 0.02185535430908203, + -0.01360295619815588, + -0.05180170014500618, + 0.038333456963300705, + -0.029421081766486168, + -0.024213457480072975, + -0.023403091356158257, + -0.06706465035676956, + 0.059628888964653015, + 0.006046036724001169, + 0.009988028556108475, + -0.07597804814577103, + 0.00063893519109115, + 0.06110154837369919, + -0.08189404755830765, + -0.0368625670671463, + 0.07658260315656662, + 0.018183596432209015, + 0.06150438264012337, + 0.006855277344584465, + -0.00475864065811038, + -0.016099542379379272, + 0.07348105311393738, + -0.006393207237124443, + 0.03743768483400345, + 0.05640842393040657, + 0.04156060144305229, + 0.05143536254763603, + -0.03447959944605827, + 0.024435853585600853, + 0.015895485877990723, + -0.1035030409693718, + -0.034336503595113754, + -0.02949070930480957, + 0.17135384678840637, + -0.049763038754463196, + 0.0193993728607893, + 0.007989185862243176, + -0.07908275723457336, + 0.042322494089603424, + 0.02960815653204918, + -0.05066951364278793, + 0.07179784774780273, + -0.08197924494743347, + -0.07706914842128754, + -0.09340523928403854, + -1.675163938578225e-34, + 0.08176612854003906, + 0.0035661000292748213, + -0.090164415538311, + 0.026728440076112747, + -0.02207759954035282, + 0.03597443550825119, + -0.01513563934713602, + 0.08025417476892471, + 0.03682180866599083, + 0.024778282269835472, + 0.03614310175180435, + -0.007123368792235851, + -0.15008971095085144, + -0.007793358992785215, + 0.016968708485364914, + 0.04123464226722717, + 0.031618695706129074, + 0.09205563366413116, + 0.04366867244243622, + 0.005892770830541849, + 0.007071556057780981, + 0.07647304981946945, + -0.08496417105197906, + 0.08316212892532349, + 0.004548794589936733, + 0.004812868777662516, + -0.014504678547382355, + 0.04120636731386185, + 0.02668551728129387, + -0.04654094949364662, + -0.017862580716609955, + -0.05496834218502045, + 0.04522378742694855, + -0.007303883787244558, + -0.04701634868979454, + -0.013179419562220573, + 0.030056850984692574, + -0.04222928732633591, + 0.056197188794612885, + 0.02118639089167118, + -0.0425477996468544, + 0.04636695235967636, + 0.0786861702799797, + -0.006264181341975927, + -0.050119783729314804, + -0.05560493841767311, + 0.027305450290441513, + -0.07442084699869156, + 0.0003177033213432878, + 0.024754079058766365, + 0.022132648155093193, + -0.028169702738523483, + -0.06974855065345764, + 0.0011806852417066693, + -0.1250523328781128, + -0.05467896908521652, + 0.033224210143089294, + 0.04621144384145737, + -0.08589344471693039, + 0.017165938392281532, + -0.03763946518301964, + 0.11229149252176285, + 0.007242901716381311, + 0.04685394838452339, + 0.003913296852260828, + -0.038771964609622955, + 0.002475983463227749, + -0.08548656105995178, + -0.04674543812870979, + -0.01245845202356577, + 0.06868687272071838, + 0.013645260594785213, + -0.022077735513448715, + -0.007054791320115328, + -0.0066496338695287704, + -0.05322719365358353, + -0.0006751631735824049, + 0.043139345943927765, + 0.03409760817885399, + -0.04562188312411308, + 0.061794791370630264, + -0.005993842147290707, + -0.02480066381394863, + 0.052700795233249664, + -0.005949743092060089, + 0.009266756474971771, + 0.004270070698112249, + -0.006696343421936035, + -0.018994713202118874, + -0.0693233460187912, + -0.06018223240971565, + 0.023370955139398575, + 0.06184856593608856, + 0.07044719904661179, + -0.09865356236696243, + -2.2078982198081576e-08, + -0.04464246332645416, + -0.021131251007318497, + -0.01374796498566866, + 0.016250133514404297, + 0.024042386561632156, + 0.03366116061806679, + 0.052344437688589096, + -0.05004657432436943, + -0.044664788991212845, + 0.035284534096717834, + 0.08301285654306412, + 0.06352223455905914, + -0.11608593910932541, + -0.046920258551836014, + -0.09227536618709564, + 0.04911594092845917, + -0.05638454854488373, + 0.03511084243655205, + 0.023335332050919533, + -0.03526994213461876, + -0.019385265186429024, + 0.10487497597932816, + 0.004787069745361805, + 0.025575906038284302, + 0.08446145802736282, + 0.0394844114780426, + -0.012000744231045246, + 0.013423735275864601, + 0.036500073969364166, + 0.06841961294412613, + 0.07580086588859558, + 0.037927526980638504, + -0.0023396729957312346, + 0.014013689011335373, + 0.001200134982354939, + -0.01516117062419653, + -0.04828375205397606, + -0.04430156573653221, + -0.021048804745078087, + 0.07111711800098419, + -0.034997716546058655, + -0.0072769527323544025, + -0.06568725407123566, + -0.041229069232940674, + -0.011176982894539833, + -0.020164914429187775, + -0.002986549399793148, + -0.007069778628647327, + -0.04840707778930664, + -0.129331573843956, + -0.0014407736016437411, + -0.009445663541555405, + -0.00155212776735425, + -0.001079732901416719, + -0.05776337906718254, + -0.00270202849060297, + 0.03296476975083351, + 0.02443637140095234, + 0.007228570524603128, + 0.0016761824954301119, + 0.16028112173080444, + 0.02479933574795723, + -0.0058791968040168285, + -0.0023600582499057055 + ], + "target-bold||bullseye,radar,archery,accuracy,precision": [ + 0.052937377244234085, + -0.078447625041008, + -0.056475285440683365, + -0.014986557886004448, + 0.05298946797847748, + -0.02169165201485157, + 0.08139263093471527, + -0.018720945343375206, + -0.07823997735977173, + -0.014539430849254131, + -0.006205102428793907, + -0.021558482199907303, + 0.04447847232222557, + -0.010310235433280468, + -0.006343070883303881, + 0.021253861486911774, + 0.06772923469543457, + 0.002110309898853302, + 0.010342356748878956, + 0.005315352696925402, + 0.0003272862813901156, + 0.013790450058877468, + 0.043700966984033585, + 0.038601864129304886, + 0.004509591963142157, + -0.021689321845769882, + -0.0002567023620940745, + -0.013086427003145218, + -0.012907493859529495, + -0.09759959578514099, + -0.008327694609761238, + -0.013616097159683704, + 0.0825144350528717, + 0.02153053879737854, + -0.08183959871530533, + -0.045761838555336, + 0.017084138467907906, + 0.019297778606414795, + 0.006616321392357349, + 0.07113924622535706, + 0.017158810049295425, + 0.0052933888509869576, + -0.0015002439031377435, + 0.0395539365708828, + 0.012967315502464771, + 0.06479331105947495, + -0.056262608617544174, + 0.027507472783327103, + -0.02308332733809948, + 0.03546309471130371, + -0.07395165413618088, + -0.07595915347337723, + -0.10041890293359756, + 0.007161421701312065, + 0.038833945989608765, + 0.049339309334754944, + -0.0945354551076889, + -0.0037236858624964952, + 0.10137803107500076, + -0.03235931694507599, + 0.0026865366380661726, + 0.012441600672900677, + -0.026663172990083694, + 0.001383548486046493, + 0.06507829576730728, + -0.000785691780038178, + -0.04883093386888504, + -0.025836976245045662, + 0.006320133805274963, + 0.0363401360809803, + 0.051406051963567734, + 0.017740337178111076, + 0.012878956273198128, + -0.04302277788519859, + -0.014372756704688072, + 0.004617358557879925, + 0.008103983476758003, + 0.022995224222540855, + 0.04134916886687279, + -0.05223306640982628, + -0.07564417272806168, + -0.10908352583646774, + -0.10996634513139725, + -0.013516630977392197, + 0.07689425349235535, + 0.012012859806418419, + -0.0547693632543087, + -0.022156747058033943, + 0.015579234808683395, + -0.057266321033239365, + -0.02095392905175686, + -0.07724519073963165, + -0.06093313917517662, + 0.01005392987281084, + 0.028955912217497826, + 0.009572057984769344, + 0.08269832283258438, + -0.02489914931356907, + -0.059837859123945236, + 0.07771489769220352, + 0.08172173798084259, + -0.04814266413450241, + -0.04882030189037323, + -0.016809983178973198, + -0.02626219019293785, + -0.010331629775464535, + -0.022375864908099174, + 0.05438344180583954, + 0.03675845265388489, + -0.02557883784174919, + 0.003527627792209387, + -0.07746675610542297, + -0.025730041787028313, + -0.033845219761133194, + 0.03263789042830467, + -0.016405466943979263, + -0.15387031435966492, + -0.011750500649213791, + 0.07188460230827332, + -0.010494858026504517, + 0.02659090980887413, + -0.006010786164551973, + 0.018687956035137177, + -0.019081775099039078, + 0.013902057893574238, + 0.059054747223854065, + -0.015268783085048199, + -1.2839545513432714e-33, + 0.007289973087608814, + 0.075164794921875, + -0.0625324547290802, + 0.006390810944139957, + -0.04888598620891571, + -0.03762511536478996, + -0.061484195291996, + -0.02572554349899292, + -0.03488687425851822, + 0.09565747529268265, + 0.06547489762306213, + 0.08050672709941864, + -0.0644049122929573, + 0.07842588424682617, + 0.12318454682826996, + -0.03254220634698868, + 0.035814445465803146, + 0.06228044256567955, + -0.09300162643194199, + 0.07888900488615036, + -0.016345469281077385, + 0.07596258074045181, + -0.11158433556556702, + -0.08871559798717499, + 0.03985897824168205, + 0.045033011585474014, + -0.017047081142663956, + 0.03423844277858734, + -0.1340412199497223, + 0.05333782732486725, + 0.022720584645867348, + 0.037905558943748474, + 0.008893629536032677, + -0.013082033023238182, + 0.030946265906095505, + -0.0461440347135067, + -0.0986277312040329, + -0.04080924391746521, + -0.029744543135166168, + -0.014154845848679543, + 0.022966869175434113, + 0.025684328749775887, + -0.030921803787350655, + -0.041246507316827774, + 0.03365146741271019, + 0.06562968343496323, + -0.08443019539117813, + 0.016697848215699196, + -0.007631800603121519, + 0.030455386266112328, + -0.00609753979369998, + 0.030171165242791176, + -0.017572341486811638, + -0.027207855135202408, + 0.049233805388212204, + 0.006122032646089792, + -0.019877048209309578, + 0.04020605608820915, + -0.021866025403141975, + -0.036403317004442215, + 0.0014274339191615582, + -0.04774884134531021, + 0.002492797328159213, + -0.02430684119462967, + -0.01313745230436325, + 0.0386066734790802, + -0.08577936142683029, + 0.014333253726363182, + 0.09840963035821915, + 0.043392956256866455, + -0.008689453825354576, + 0.03985700011253357, + 0.046208664774894714, + 0.023843176662921906, + -0.01533402968198061, + 0.020656192675232887, + 0.023775886744260788, + 0.05935933440923691, + 0.04840414598584175, + -0.06852131336927414, + -0.12455997616052628, + 0.0952024981379509, + -0.0890880823135376, + 0.013957995921373367, + -0.06489609181880951, + 0.0008999054552987218, + 0.005554325878620148, + -0.09985528141260147, + -0.08883608132600784, + 0.05199243128299713, + -0.047401051968336105, + 0.021155739203095436, + -0.08724401146173477, + -0.019584419205784798, + -0.08573304116725922, + 3.4604241729592367e-34, + -0.012029935605823994, + 0.11470004171133041, + 0.004710855893790722, + 0.03666650503873825, + -0.044022928923368454, + 0.053570039570331573, + 0.06462536007165909, + -0.002877991646528244, + 0.04869065061211586, + 0.06896410882472992, + -0.026474643498659134, + -0.006757310591638088, + -0.09271706640720367, + -0.0036883284337818623, + 0.02694403938949108, + 0.011316363699734211, + 0.03908661752939224, + 0.0716514140367508, + -0.012676695361733437, + -0.06716780364513397, + 0.05575570836663246, + -0.02325570583343506, + -0.03800032660365105, + 0.05391700193285942, + 0.034105412662029266, + 0.0627286434173584, + 0.0011104047298431396, + -0.04046328738331795, + -0.05383346602320671, + -0.11656540632247925, + -0.020174235105514526, + -0.020039286464452744, + 0.05155937001109123, + 0.004773403983563185, + -0.07498767226934433, + 0.014753684401512146, + 0.08232976496219635, + -0.052219800651073456, + 0.023968519642949104, + 0.007807201240211725, + 0.0608593225479126, + 0.050659988075494766, + 0.03594425320625305, + 0.006983322091400623, + -0.06080159544944763, + 0.031206196174025536, + 0.07249360531568527, + 0.04063369706273079, + 0.0015915315598249435, + 0.02085828222334385, + 0.027439799159765244, + -0.051902610808610916, + -0.051852717995643616, + 0.013447037898004055, + -0.05799669399857521, + -0.040163442492485046, + 0.02683216892182827, + -0.04424476996064186, + -0.008362877182662487, + 0.05191356688737869, + 0.0005277351010590792, + 0.058476630598306656, + -0.027427101507782936, + 0.08388159424066544, + 0.0009169855038635433, + -0.011560962535440922, + -0.03754100576043129, + -0.015180445276200771, + 0.01544954814016819, + 0.0239998921751976, + 0.04142245650291443, + -0.016165200620889664, + 0.09087236225605011, + 0.06204178184270859, + -0.05703723058104515, + -0.048174817115068436, + 0.0250704362988472, + 0.017677607014775276, + -0.01361543033272028, + 0.05318056419491768, + -0.019144291058182716, + -0.05563697591423988, + -0.054966799914836884, + 0.11688892543315887, + -0.01746445521712303, + 0.11933834105730057, + -0.010565425269305706, + 0.00947580486536026, + 0.010561509057879448, + -0.0006528192316181958, + -0.010689998045563698, + 0.08402582257986069, + 0.018472865223884583, + -0.03534301742911339, + -0.040927786380052567, + -1.7400395790900802e-08, + -0.06458874046802521, + 0.012207834050059319, + -0.06851421296596527, + 0.014747640118002892, + -0.023558203130960464, + 0.04658787325024605, + -0.0497850701212883, + -0.05478435382246971, + -0.035819727927446365, + -0.08058911561965942, + 0.04395398125052452, + 0.02686004899442196, + -0.0941297858953476, + -0.03062870167195797, + 0.05333418771624565, + -0.02113480493426323, + -0.05236198380589485, + 0.0026945790741592646, + -0.04624175280332565, + -0.011910953558981419, + 0.030118228867650032, + 0.05999361351132393, + 0.005876515526324511, + -0.015960147604346275, + -0.0005440302775241435, + 0.005106957629323006, + -0.06660456955432892, + 0.139473095536232, + 0.04367994889616966, + 0.1655881404876709, + 0.05801108106970787, + 0.06464233994483948, + 0.011539707891643047, + -0.022262733429670334, + -0.012793611735105515, + 0.003029573243111372, + -0.0149396862834692, + 0.03048255480825901, + 0.046877436339855194, + 0.10111977159976959, + -0.06686314195394516, + 0.028313104063272476, + -0.025807596743106842, + -0.003030424239113927, + 0.006054685916751623, + 0.052781976759433746, + 0.022496409714221954, + -0.10729563236236572, + -0.07347705960273743, + -0.09911791235208511, + -0.014482054859399796, + 0.03044106997549534, + -0.017769519239664078, + 0.0607607401907444, + -0.022234926000237465, + 0.022977478802204132, + 0.005916156340390444, + -0.0872921571135521, + -0.04015777260065079, + 0.007646861951798201, + 0.13294152915477753, + 0.00865914486348629, + -0.00477949995547533, + 0.05219922959804535 + ], + "taxi-bold||*updated*,vehicles,cars,automobiles,livery,limousine,uber": [ + 0.023940058425068855, + 0.008604815229773521, + 0.006226223427802324, + 0.019550010561943054, + -0.03407450020313263, + 0.0018921353621408343, + 0.07666336745023727, + -0.0478561595082283, + -0.05216117575764656, + -0.023982785642147064, + 0.01434021070599556, + 0.031608451157808304, + 0.042783062905073166, + -0.017332861199975014, + -0.03716311231255531, + 0.059620652347803116, + 0.11163646727800369, + -0.016695355996489525, + 0.023286620154976845, + 0.005837197415530682, + 0.012070398777723312, + 0.022439761087298393, + 0.005877952557057142, + 0.07331082224845886, + 0.05615094676613808, + 0.034094322472810745, + -0.03201465308666229, + 0.056086596101522446, + -0.006166753359138966, + -0.06430085003376007, + -0.05599978566169739, + 0.08458096534013748, + 0.043764229863882065, + -0.021447129547595978, + -0.0009513553231954575, + -0.027363551780581474, + 0.012226119637489319, + 7.044610538287088e-05, + 0.06624557822942734, + -0.008101429790258408, + 0.04249367490410805, + -0.06107313558459282, + -0.06643890589475632, + -0.00161648984067142, + -0.042625728994607925, + -0.07742252200841904, + 0.015852900221943855, + 0.0066136084496974945, + 0.00784375797957182, + -0.013562634587287903, + -0.006585403345525265, + -0.09178822487592697, + -0.04960813373327255, + -0.03369864448904991, + 0.008091938681900501, + -0.07107575237751007, + -0.0439034141600132, + 0.05420367419719696, + 0.018588891252875328, + 0.0008182162418961525, + -0.021058548241853714, + 0.004848329350352287, + 0.015388970263302326, + 0.07415783405303955, + 0.014605370350182056, + -0.014113543555140495, + -0.038881223648786545, + -0.06450589001178741, + -0.06389603763818741, + -0.00045186630450189114, + 0.010580494068562984, + -0.007277411408722401, + 0.00011357023322489113, + -0.04998010769486427, + -0.07013486325740814, + -0.047997619956731796, + 0.05333259329199791, + 0.0724390372633934, + -0.03922930732369423, + -0.10571148991584778, + -0.059752557426691055, + -0.019017236307263374, + -0.04556791111826897, + -0.027305832132697105, + 0.0015617397148162127, + -0.023561393842101097, + -0.07490824162960052, + -0.06709897518157959, + -0.07509824633598328, + 0.00865462701767683, + -0.0685385912656784, + -0.03833587095141411, + 0.044368237257003784, + 0.02197667770087719, + -0.09180941432714462, + 0.028484292328357697, + 0.04838922247290611, + -0.0085160993039608, + 0.013494007289409637, + 0.07185235619544983, + 0.03927341103553772, + 0.10093723982572556, + -0.026394182816147804, + 0.014818304218351841, + -0.07359550893306732, + 0.019250761717557907, + -0.00014349748380482197, + -0.021996917203068733, + 0.03078257478773594, + 0.01535199023783207, + 0.010727804154157639, + -0.0628986656665802, + -0.0031517280731350183, + -0.060594938695430756, + -0.10089379549026489, + -0.012985226698219776, + -0.09166683256626129, + 0.018759535625576973, + 0.09900686889886856, + 0.06297299265861511, + -0.04405021294951439, + -0.03539334610104561, + 0.05308868736028671, + -0.03184736892580986, + 0.028468474745750427, + -0.026739398017525673, + 0.06067416071891785, + -5.2643485944019177e-33, + -0.05005700886249542, + 0.04324784502387047, + 0.029340142384171486, + 0.13295648992061615, + 0.04665346071124077, + -0.017054211348295212, + -0.07565398514270782, + 0.05432049557566643, + -0.049623217433691025, + 0.019541721791028976, + 0.007198075298219919, + 0.05164003372192383, + -0.062415193766355515, + 0.03569437563419342, + 0.05067676678299904, + 0.04167124629020691, + -0.020983027294278145, + -0.048982974141836166, + -0.024346230551600456, + -0.06178830936551094, + -0.0568106546998024, + 0.03291019797325134, + 0.025925511494278908, + 0.02276463620364666, + 0.013383989222347736, + 0.00580021133646369, + 0.0034273816272616386, + -0.02337617799639702, + 0.03435412049293518, + 0.06787913292646408, + 0.017729533836245537, + 0.1131710335612297, + 0.06214889511466026, + -0.0036207118537276983, + -0.10303012281656265, + 0.0013843136839568615, + -0.07945358753204346, + -0.05560558661818504, + -0.06822031736373901, + 0.015230430290102959, + -0.0648951381444931, + -0.0821743831038475, + -0.07589495927095413, + -0.013011472299695015, + -0.02009757235646248, + 0.12754452228546143, + 0.028956914320588112, + -0.05685319006443024, + 0.01772354356944561, + 0.07711184769868851, + -0.037994302809238434, + -0.024212878197431564, + -0.01813393086194992, + -0.021803181618452072, + -0.08134929835796356, + 0.007459400687366724, + -0.023459699004888535, + 0.033965323120355606, + 0.008350702933967113, + -0.008583084680140018, + 0.0330030731856823, + 0.02744886837899685, + 0.05409687012434006, + -0.009723172523081303, + -0.022939329966902733, + 0.013774332590401173, + 0.024815769866108894, + -0.0007166900904849172, + 0.0867961123585701, + 0.0817776545882225, + 0.00555803906172514, + 0.04666003957390785, + 0.022348478436470032, + 0.07135964930057526, + 0.015110788866877556, + 0.021462110802531242, + -0.051221251487731934, + -0.025266394019126892, + -0.021616335958242416, + -0.030380474403500557, + -0.1268913596868515, + 0.016072746366262436, + -0.056265152990818024, + 0.02645118534564972, + 0.06752420216798782, + 0.04898281395435333, + 0.05781885236501694, + -0.08483975380659103, + 6.827907054685056e-05, + 0.0726713240146637, + -0.16792915761470795, + 0.031321264803409576, + -0.030698876827955246, + -0.05391069874167442, + -0.025544408708810806, + -2.339940432279288e-34, + 0.11188073456287384, + -0.031952306628227234, + -0.0001899278722703457, + -0.06812051683664322, + -0.027468571439385414, + 0.03653668612241745, + 0.017061417922377586, + -0.01128050684928894, + 0.015534762293100357, + 0.05202551558613777, + -0.0301552452147007, + -0.010606091469526291, + 0.03440699726343155, + 0.004829530604183674, + -0.00996936671435833, + -0.020985156297683716, + 0.019980479031801224, + -0.027189383283257484, + -0.04009442776441574, + 0.05005669221282005, + -0.07851620763540268, + -0.01980804279446602, + -0.048900507390499115, + 0.08706241846084595, + -0.026725884526968002, + 0.01183225866407156, + -0.0357033871114254, + -0.0002525937161408365, + 0.00908203050494194, + 0.0033419278915971518, + -0.06428278982639313, + -0.07308949530124664, + 0.01986992172896862, + 0.056195106357336044, + -0.060950908809900284, + 0.0813644528388977, + 0.03657107427716255, + -0.04723556712269783, + -0.00347189512103796, + 0.00809276569634676, + 0.004848018288612366, + -0.07272157073020935, + 0.04250403493642807, + 0.038563862442970276, + 0.036417748779058456, + -0.084952212870121, + -0.10251621901988983, + -0.021884692832827568, + -0.020270545035600662, + -0.0020085570868104696, + 0.093032106757164, + 0.03501950576901436, + -0.0870317742228508, + 0.11911090463399887, + -0.01607641391456127, + 0.05562844127416611, + 0.0013870886759832501, + -0.00011989006452495232, + 0.014941089786589146, + 0.018653329461812973, + -0.0329594612121582, + 0.04960934445261955, + -0.03487307205796242, + 0.009750756435096264, + -0.005819349549710751, + -0.13204322755336761, + 0.012916630133986473, + -0.06551022082567215, + 0.09464500844478607, + -0.0571792833507061, + 0.10044831037521362, + -0.06684621423482895, + -0.09175487607717514, + 0.05727798864245415, + -0.0727778747677803, + 0.012108608148992062, + 0.097913958132267, + 0.02240946888923645, + 0.031113609671592712, + -0.025344008579850197, + 0.045232757925987244, + -0.028935477137565613, + 0.021948354318737984, + 0.15882548689842224, + -0.024549169465899467, + 0.03516196832060814, + 0.03855342045426369, + -0.02573991008102894, + 0.07147164642810822, + 0.022146347910165787, + -0.028079146519303322, + 0.051268693059682846, + -0.05084579437971115, + -0.01062112394720316, + -0.0998748242855072, + -2.2334976534921225e-08, + 0.01996469683945179, + -0.004685404244810343, + -0.02759408764541149, + 0.0112539604306221, + 0.031788259744644165, + -0.07859249413013458, + -0.04000842198729515, + -0.010015334002673626, + -0.1690727174282074, + -0.018716752529144287, + 0.03537306562066078, + -0.027515769004821777, + -0.046126604080200195, + 0.04019704461097717, + 0.01137486007064581, + 0.04015866294503212, + -0.025516698136925697, + 0.10072585195302963, + -0.023556897416710854, + -0.050450198352336884, + -0.07186942547559738, + 0.02090577408671379, + 0.005935033317655325, + -0.007507782429456711, + 0.0023992047645151615, + -0.024525344371795654, + -0.06477613747119904, + -0.05758294090628624, + 0.0709189921617508, + -0.009793286211788654, + 0.003105317475274205, + 0.07561904937028885, + 0.024018146097660065, + -0.04865359514951706, + -0.06015269085764885, + -0.04527847841382027, + -0.015090004540979862, + 0.017815973609685898, + 0.04306982457637787, + 0.03146732226014137, + 0.05380043759942055, + -0.05285421758890152, + -0.008175168186426163, + -0.06034458428621292, + -0.008589736185967922, + 0.0007516724872402847, + 0.004370072390884161, + -0.03857468441128731, + -0.07717206329107285, + 0.00047203226131387055, + -0.008635083213448524, + -0.0269950982183218, + 0.029056036844849586, + 0.10365727543830872, + 0.01627391390502453, + -0.06763596087694168, + -0.034360624849796295, + 0.04200564697384834, + 0.04644804820418358, + 0.01685233786702156, + 0.14628243446350098, + 0.0473531149327755, + 0.0565493144094944, + -0.029946090653538704 + ], + "tea-bag-bold||*new*,drinks,beverages,sachet,caffeine,places,locations,bars,restaurants,food,dining": [ + 0.01059682946652174, + -0.020133214071393013, + -0.029519371688365936, + 0.0574786402285099, + 0.04804501309990883, + -0.007923445664346218, + 0.12247232347726822, + -0.06114298105239868, + -0.0007334891124628484, + -0.018395500257611275, + 0.03047083131968975, + -0.060851968824863434, + -0.001956072635948658, + 0.014395289123058319, + 0.023335961624979973, + -0.049874939024448395, + 0.06555473059415817, + -0.01221244502812624, + 0.05041263625025749, + -0.040895726531744, + 0.013651488348841667, + 0.0689779669046402, + 0.10780729353427887, + 0.05741807818412781, + 0.0650520995259285, + 0.10164134949445724, + 0.06183953955769539, + -0.03468610718846321, + -0.019751299172639847, + -0.016389954835176468, + -0.015001910738646984, + 0.037083838135004044, + 0.08782238513231277, + -0.0018364924471825361, + -0.034013718366622925, + 0.031083067879080772, + 0.04186185821890831, + -0.05749725177884102, + 0.09195322543382645, + 0.011865909211337566, + -0.04497767239809036, + -0.06309106200933456, + -0.05640111118555069, + 0.002424558624625206, + -0.04325668141245842, + -0.01689816638827324, + -0.01690405234694481, + 0.00894720945507288, + 0.03075176477432251, + 0.02716740593314171, + -0.032865822315216064, + -0.08672419935464859, + -0.07922805845737457, + 0.05183727294206619, + 0.0749555230140686, + -0.12584270536899567, + -0.07230768352746964, + -0.03981141000986099, + 0.003292802954092622, + 0.0755128264427185, + 0.04112156108021736, + -0.020069293677806854, + -0.010926887392997742, + 0.0900852307677269, + -0.009106354787945747, + 0.01198502816259861, + -0.0875593051314354, + 0.06836751848459244, + 0.022185949608683586, + -0.02809724397957325, + -0.04023786634206772, + 0.007391760125756264, + 0.06694810837507248, + 0.002619715640321374, + -0.07121749222278595, + -0.06703685224056244, + 0.11175172030925751, + -0.015192890539765358, + -0.012195205315947533, + -0.0003646058903541416, + -0.08071915060281754, + -0.01524131279438734, + 0.013038119301199913, + 0.09703665226697922, + -0.018259111791849136, + 0.01255535427480936, + 0.007954142056405544, + -0.051448408514261246, + 0.007715768646448851, + -0.07200219482183456, + -0.012468473985791206, + 0.02220926061272621, + -0.07590563595294952, + 0.05613531544804573, + -0.08645223826169968, + 0.027641452848911285, + 0.03795904293656349, + 0.0064363316632807255, + -0.025711502879858017, + 0.03853309527039528, + -0.006307519972324371, + 0.09914391487836838, + 0.004998883698135614, + -0.010878227651119232, + -0.02078118734061718, + -0.04147562384605408, + -0.05000508576631546, + -0.052380096167325974, + 0.04331947863101959, + 0.009631462395191193, + -0.007367855403572321, + 0.0022226448636502028, + -0.007927553728222847, + -0.021330691874027252, + -0.11925917118787766, + 0.0409885011613369, + -0.023164374753832817, + 0.006044209003448486, + 0.029790805652737617, + 0.038676101714372635, + -0.09277919679880142, + -0.0020475497003644705, + 0.008515045046806335, + -0.06984686851501465, + -0.045835308730602264, + 0.014504361897706985, + -0.016590040177106857, + -3.705617738614625e-33, + -0.027516180649399757, + -0.030127277597784996, + 0.042578745633363724, + 0.09759682416915894, + 0.10627644509077072, + -0.0695384070277214, + -0.04606295004487038, + -0.04906054958701134, + -0.026897400617599487, + 0.016483144834637642, + 0.03525923937559128, + -0.04608571529388428, + -0.05242101848125458, + 0.033545948565006256, + 0.062383588403463364, + -0.04074149578809738, + -0.03206547722220421, + -0.026787277311086655, + 0.01110828947275877, + -0.05896609649062157, + -0.060021739453077316, + 0.0021389666944742203, + 0.03896614536643028, + -0.026783186942338943, + -0.08466313034296036, + -0.023169947788119316, + 0.08422873169183731, + 0.036635227501392365, + 0.022134071215987206, + 0.037458743900060654, + 0.01959112472832203, + 0.010614207945764065, + 0.005236067809164524, + 0.02194087952375412, + -0.08532390743494034, + 0.01803756132721901, + 0.005013200920075178, + 0.000633549818303436, + -0.016416365280747414, + 0.07424668222665787, + -0.0315663143992424, + 0.07182952016592026, + -0.0006293097394518554, + 0.06466220319271088, + -0.04300900548696518, + 0.030333179980516434, + -0.014918901957571507, + -0.03587813302874565, + 0.06611182540655136, + 0.05773039534687996, + -0.06291518360376358, + -0.03678305074572563, + -0.02473984844982624, + -0.0065123760141432285, + -0.08281732350587845, + -0.06218738853931427, + -0.03445618599653244, + 0.07023584842681885, + 0.1064598336815834, + -0.03254088759422302, + 0.05456402152776718, + 0.013199777342379093, + -0.002060114871710539, + -0.024825915694236755, + 0.003519798628985882, + 0.025806184858083725, + -0.049867257475852966, + -0.05642228573560715, + 0.04234037920832634, + -0.048018164932727814, + -0.024918323382735252, + 0.07691731303930283, + 0.05012648180127144, + 0.05201800912618637, + 0.06808631122112274, + -0.00536061218008399, + -0.0029131120536476374, + 0.04136734828352928, + 0.03940194100141525, + -0.06564987450838089, + 0.009845566935837269, + -0.052020106464624405, + -0.024830758571624756, + 0.14002366364002228, + -0.0825359970331192, + 0.05835799127817154, + -0.01726529747247696, + -0.06619793176651001, + -0.005416137631982565, + -0.026675354689359665, + -0.1427045613527298, + 0.015944641083478928, + -0.0060811336152255535, + -0.08498341590166092, + -0.08029403537511826, + 4.865005612778739e-34, + 0.1226130798459053, + -0.06661076843738556, + -0.035017140209674835, + -0.001845042803324759, + 0.019136041402816772, + -0.015028172172605991, + 0.03581416606903076, + -0.02708246558904648, + 0.06295373290777206, + 0.0025084286462515593, + -0.03131015598773956, + 0.031197646632790565, + 0.024843964725732803, + 0.05250868946313858, + -0.007497177459299564, + 0.0998920425772667, + 0.0363130122423172, + 0.028503498062491417, + -0.08703501522541046, + 0.03596846014261246, + -0.0005739242187701166, + 0.03147701546549797, + -0.039034415036439896, + -0.008309359662234783, + -0.03481263667345047, + 0.04314759746193886, + 0.013928589411079884, + 0.012149080634117126, + -0.0808907225728035, + -0.04517940431833267, + -0.0014436357887461782, + -0.03247101232409477, + 0.019439561292529106, + 0.060245711356401443, + -0.09321202337741852, + 0.004009591415524483, + 0.03415398672223091, + -0.08471312373876572, + -0.003783373860642314, + 0.08567553013563156, + 0.0488264337182045, + -0.011657482013106346, + 0.010414603166282177, + 0.04651409015059471, + 0.061593107879161835, + -0.05051443353295326, + -0.08645199239253998, + -0.07285121083259583, + -0.05886104702949524, + 0.025979449972510338, + 0.03614521771669388, + -0.0255676731467247, + -0.1277914047241211, + -0.019180316478013992, + 0.012153616175055504, + 0.04507985711097717, + -0.0782916247844696, + -0.03545594587922096, + -0.04296397790312767, + -0.07021436095237732, + -0.04725964739918709, + 0.09778367727994919, + -0.029616940766572952, + 0.023429883643984795, + 0.05858277902007103, + 0.015288333408534527, + -0.0684826523065567, + -0.044993817806243896, + 0.10014093667268753, + -0.02390129864215851, + 0.03648458048701286, + -0.07676056772470474, + -0.03795187547802925, + -0.04592311382293701, + -0.025145621970295906, + -0.005564397666603327, + 0.04475116357207298, + 0.0031903767958283424, + -0.013594825752079487, + 0.051627643406391144, + -0.007335565518587828, + -0.011596464551985264, + -0.05908777937293053, + 0.028059570118784904, + 0.058740582317113876, + 0.026178831234574318, + 0.005149344448000193, + -0.009174354374408722, + -0.012204674072563648, + 0.04039539396762848, + -0.044969700276851654, + -0.02151038870215416, + -0.08857229351997375, + 0.058842144906520844, + 0.10741536319255829, + -2.8444015143236356e-08, + -0.03727484494447708, + -0.049683086574077606, + -0.07630794495344162, + 0.16102442145347595, + 0.03588953614234924, + -0.05610339343547821, + 0.010550240986049175, + -0.02148553915321827, + 0.0009747403673827648, + 0.011168040335178375, + 0.01316263247281313, + 0.044684216380119324, + -0.04089783877134323, + 0.005105120595544577, + -0.014746707864105701, + 0.0356852225959301, + -0.01926368661224842, + 0.06473942846059799, + -0.04616935923695564, + -0.040093157440423965, + -0.05547873675823212, + 0.008708223700523376, + 0.06568756699562073, + 0.002562769455835223, + 0.03881579637527466, + 0.009221933782100677, + -0.023165782913565636, + -0.0195689108222723, + 0.03520822525024414, + -0.04119884967803955, + 0.005680272821336985, + 0.06268496811389923, + -0.015649395063519478, + -0.005193181801587343, + -0.029523774981498718, + -0.07302100211381912, + -0.0582924485206604, + 0.014182480052113533, + -0.0007125150877982378, + 0.09101555496454239, + -0.030475998297333717, + -0.13895952701568604, + -0.045021917670965195, + 0.008832935243844986, + -0.04802471026778221, + 0.058357853442430496, + -0.03802520036697388, + 0.05878779664635658, + -0.028123339638113976, + 0.018324650824069977, + 0.05242843180894852, + 0.020679593086242676, + 0.10450737923383713, + -0.013972066342830658, + -0.05070266127586365, + 0.06435894221067429, + -0.0520046167075634, + 0.02843858301639557, + -0.029113637283444405, + -0.03624476119875908, + 0.11993642896413803, + -0.002246077870950103, + -0.004426406230777502, + -0.03878224641084671 + ], + "telegram-logo-bold||logos,messages,messaging": [ + 0.013504755683243275, + 0.056137703359127045, + 0.001801533391699195, + 0.002792678540572524, + 0.025034213438630104, + -0.06706661731004715, + 0.08725865185260773, + -0.04126088693737984, + 0.06425308436155319, + 0.004789391998201609, + 0.01846415176987648, + 0.013927160762250423, + 0.037800807505846024, + 0.02346007153391838, + 0.06297693401575089, + 0.01224597543478012, + -0.0006278943619690835, + -0.06725003570318222, + 0.046795349568128586, + -0.0031441415194422007, + 0.03869837149977684, + 0.00969971064478159, + 0.04786862060427666, + 0.017398564144968987, + 0.04680898040533066, + -0.005342536605894566, + -0.019904406741261482, + -0.0009650896536186337, + -0.008023850619792938, + -0.08771681040525436, + 0.007763984613120556, + 0.007815191522240639, + 0.04165177047252655, + 0.035207513719797134, + 0.014482052996754646, + 0.060432806611061096, + 0.053810570389032364, + -0.006805910728871822, + 0.06651538610458374, + 0.05492125079035759, + -0.0026889971923083067, + -0.0871078222990036, + -0.040248312056064606, + 0.04309029504656792, + 0.0031639670487493277, + 0.05342647805809975, + -0.02210869826376438, + 0.030295876786112785, + -0.01429166179150343, + -0.0007306545739993453, + 0.03578298166394234, + -0.10863716900348663, + -0.0912327989935875, + 0.0008572343504056334, + 0.057886313647031784, + -0.00023735091963317245, + -0.08832997828722, + 0.05761919543147087, + 0.04873281344771385, + -0.032883986830711365, + -0.014578577131032944, + 0.015742305666208267, + 0.00918679777532816, + 0.028990596532821655, + 0.040655940771102905, + 0.028797315433621407, + 0.017399845644831657, + 0.06455390155315399, + -0.0660024955868721, + 0.004295677412301302, + 0.08984903246164322, + -0.01210713293403387, + -0.018493205308914185, + -0.038527946919202805, + -0.05867280438542366, + 0.02735009789466858, + 0.09212308377027512, + 0.053426992148160934, + -0.1272740662097931, + -0.08240949362516403, + -0.05982939898967743, + -4.904062279820209e-06, + -0.002114013535901904, + -0.02860906906425953, + 0.06666175276041031, + 0.07363443821668625, + -0.059141382575035095, + -0.06116436794400215, + -0.009849716909229755, + 0.0469140000641346, + -0.04138260334730148, + -0.0017691164975985885, + 0.03792278841137886, + 0.036738209426403046, + -0.028030114248394966, + -0.013605437241494656, + -0.013283757492899895, + -0.02107323333621025, + -0.054523564875125885, + 0.07694749534130096, + 0.026221411302685738, + 0.014052332378923893, + 0.0412590317428112, + -0.039963480085134506, + 0.08487078547477722, + 0.047608789056539536, + -0.01966061256825924, + -0.03876129165291786, + 0.04259811341762543, + 0.05444011837244034, + -0.02092127874493599, + -0.020470159128308296, + -0.025713641196489334, + -0.010671377182006836, + -0.012781836092472076, + -0.05971994996070862, + 0.011966699734330177, + -0.03126944974064827, + 0.10156616568565369, + -0.010198043659329414, + 0.041254673153162, + -0.0929916724562645, + -0.0662996843457222, + -0.03978583589196205, + -0.06629373878240585, + 0.04606567695736885, + 0.025654997676610947, + -3.553103591409172e-33, + 0.026459122076630592, + 0.10749102383852005, + -0.06031472608447075, + 0.0909155085682869, + -0.034094177186489105, + 0.08251587301492691, + -0.058048516511917114, + -0.09218879789113998, + -0.10705768316984177, + -0.02519022487103939, + -0.03195817023515701, + 0.03819432109594345, + 0.03477625176310539, + 0.1180291473865509, + -0.011490224860608578, + -0.06212173402309418, + 0.012757032178342342, + -0.02863943576812744, + -0.050023939460515976, + -0.06845040619373322, + -0.06398862600326538, + 0.03537774085998535, + -0.08994751423597336, + 0.0043459995649755, + -0.008539981208741665, + 0.04716484621167183, + 0.0925789624452591, + -0.07142412662506104, + -0.03748214989900589, + 0.0014062549453228712, + 0.015059097670018673, + 0.013053168542683125, + 0.06380783021450043, + 0.040684688836336136, + 0.012846345081925392, + 0.0208132266998291, + -0.04823256656527519, + -0.00996397901326418, + -0.02414904721081257, + 0.025256387889385223, + -0.017320796847343445, + -0.055804114788770676, + -0.04936296492815018, + 0.011437412351369858, + -0.009990263730287552, + 0.0838233008980751, + -0.018844744190573692, + -0.126950204372406, + 0.026735607534646988, + -0.05019785463809967, + -0.0008627692586742342, + -0.04590380936861038, + 0.00971075426787138, + -0.024077538400888443, + 0.04517420008778572, + -0.08204053342342377, + -0.04744436591863632, + -0.005369717720896006, + -0.00639669643715024, + -0.005409286357462406, + 0.005721873138099909, + -0.040699902921915054, + 0.052397847175598145, + -0.009993955492973328, + -0.0007677498506382108, + 0.08964759111404419, + -0.02764141745865345, + 0.0554959774017334, + 0.012341626919806004, + -0.02534126304090023, + -0.025832045823335648, + 0.07617077976465225, + 0.032287999987602234, + 0.06018581986427307, + -0.09236543625593185, + -0.0021032372023910284, + 0.0035865495447069407, + 0.04324744641780853, + 0.0412738062441349, + 0.05159282311797142, + -0.07990915328264236, + -0.025406263768672943, + -0.015066093765199184, + 0.007865768857300282, + 0.07641618698835373, + 0.05588929355144501, + 0.06678510457277298, + -0.109035924077034, + -0.04275437444448471, + 0.08720322698354721, + -0.08903093636035919, + 0.05517841503024101, + 0.0195584949105978, + 0.0006597047904506326, + -0.11507187783718109, + 1.7265874083228845e-33, + 0.028937730938196182, + 0.04656810685992241, + 0.0049493093974888325, + 0.0021075503900647163, + -0.039622001349925995, + 0.01382271759212017, + 0.09742344915866852, + 0.09480924159288406, + -0.10745996236801147, + 0.02822635881602764, + 0.044586386531591415, + -0.030734285712242126, + -0.08586209267377853, + -0.027795789763331413, + 0.0007925000390969217, + -0.02106563374400139, + 0.02983378991484642, + 0.022799436002969742, + -0.05733577534556389, + 0.0020114188082516193, + -0.060063254088163376, + -0.038101792335510254, + -0.11102337390184402, + 0.07103738188743591, + -0.009547465480864048, + 0.03017893247306347, + 0.013022705912590027, + -0.04731426388025284, + -0.006178382784128189, + -0.08353273570537567, + -0.014259103685617447, + -0.014039644040167332, + -0.005674597807228565, + 0.0338929183781147, + 0.04305725172162056, + 0.04456069692969322, + 0.038468826562166214, + 0.011923043988645077, + 0.0003603536169975996, + 0.0215399619191885, + 0.03551729768514633, + 0.007830335758626461, + -0.04136492684483528, + 0.06537818163633347, + -0.047456204891204834, + -0.004861375782638788, + -0.07415495067834854, + -0.10344117879867554, + -0.14256086945533752, + 0.09844721108675003, + 0.11174460500478745, + -0.05985378101468086, + 0.043135300278663635, + 0.05447846278548241, + -0.09292702376842499, + -0.06712672114372253, + -0.004196221940219402, + 0.033655136823654175, + -0.025251353159546852, + 0.02381337806582451, + 0.06626856327056885, + -0.06749698519706726, + 0.006104503758251667, + -0.011739195324480534, + 0.037008628249168396, + -0.035089462995529175, + 0.03348509222269058, + 0.019541407003998756, + -0.047227643430233, + 0.05167662352323532, + 0.07899942249059677, + -0.0838514044880867, + -0.04684838280081749, + 0.007914761081337929, + 0.061010200530290604, + -0.05848193168640137, + 0.005697354208678007, + 0.0037460182793438435, + -0.08014167845249176, + 0.010838509537279606, + -0.02749118022620678, + -0.00270559499040246, + -0.05320706218481064, + 0.09329057484865189, + 0.00997324287891388, + 0.036765679717063904, + 0.006071307230740786, + 0.008222948759794235, + -0.03402000665664673, + -0.0254866611212492, + -0.040524840354919434, + 0.012702034786343575, + 0.04861745238304138, + 0.07326619327068329, + 0.029919622465968132, + -1.576171015926775e-08, + -0.032843757420778275, + -0.05141185596585274, + 0.01033760979771614, + -0.03955524414777756, + -0.0027430120389908552, + 0.06399085372686386, + -0.021638497710227966, + -0.1084495484828949, + -0.018938547000288963, + -0.03178521990776062, + -0.05692339316010475, + -0.0047645485028624535, + -0.09171721339225769, + -0.07895594090223312, + -0.002332354197278619, + -0.011588438414037228, + -0.1382548213005066, + 0.03292321041226387, + 0.02157178521156311, + -0.006438137497752905, + -0.0032924264669418335, + 0.12096483260393143, + -0.04909813031554222, + 0.002206907607614994, + 0.00837672408670187, + -0.012455287389457226, + 0.005036400631070137, + 0.03834525868296623, + 0.0017791837453842163, + 0.003901604562997818, + -0.001970478566363454, + 0.03862600773572922, + 0.05402319133281708, + -0.03524527698755264, + -0.0917772427201271, + 0.0016509596025571227, + 0.0057425545528531075, + -0.026161281391978264, + 0.007483560126274824, + 0.05880391597747803, + 0.06258974224328995, + -0.038497596979141235, + -0.03275898098945618, + -0.033008914440870285, + -0.023623807355761528, + -0.007297426462173462, + 0.0768100693821907, + -0.013429942540824413, + -0.06760136038064957, + -0.03946850448846817, + 0.028913332149386406, + 0.03510569408535957, + 0.02040102146565914, + 0.058458708226680756, + -0.059346433728933334, + -0.07903648167848587, + 0.06723726540803909, + 0.071996308863163, + 0.04943922534584999, + 0.055350784212350845, + 0.1459907442331314, + -0.04522159323096275, + 0.0006314876955002546, + -0.04562889412045479 + ], + "television-bold||screen,tv,displays": [ + 0.027945419773459435, + -0.05098584666848183, + -0.03699102625250816, + -0.07610123604536057, + 0.0036461097188293934, + 0.014952965080738068, + 0.009885329753160477, + -0.022786686196923256, + 0.04486638307571411, + -0.026781383901834488, + 0.016052838414907455, + 0.012697595171630383, + 0.06238371878862381, + 0.005170927848666906, + -0.03513050079345703, + -0.07786758989095688, + 0.06465189903974533, + -0.05535805597901344, + 0.03537748008966446, + 0.0350823849439621, + 0.03549585118889809, + -0.0015371720073744655, + -0.019385578110814095, + 0.025285838171839714, + 0.07343681156635284, + 0.024818286299705505, + 0.046127334237098694, + 0.053877148777246475, + -0.0011357093462720513, + -0.09442220628261566, + -0.04088163375854492, + 0.021406175568699837, + 0.10683418065309525, + 0.06291805952787399, + -0.01585293933749199, + -0.06747668981552124, + -0.020775755867362022, + -0.06457100063562393, + -0.07736211270093918, + 0.04036671295762062, + 0.01859365403652191, + -0.07554937154054642, + 0.0061738151125609875, + -0.02116086520254612, + -0.054457247257232666, + -0.08338135480880737, + -0.044460948556661606, + -0.019017010927200317, + 0.03453730046749115, + -0.03850783407688141, + -0.052928097546100616, + 0.010060232132673264, + -0.09248148649930954, + 0.02779007889330387, + 0.0062857260927557945, + -0.037973206490278244, + -0.01610579714179039, + 0.06244766339659691, + 0.06465256959199905, + 0.007210445124655962, + 0.06048823148012161, + 0.012060204520821571, + 0.0601072758436203, + 0.08307025581598282, + 0.045557573437690735, + 0.02411532774567604, + 0.024132879450917244, + 0.013874783180654049, + -0.04229257255792618, + 0.0107481200248003, + -0.0336918868124485, + 0.04664507880806923, + 0.03920293599367142, + -0.062216274440288544, + -0.01188232097774744, + 0.012624852359294891, + 0.03693167492747307, + -0.10128635168075562, + -0.022520901635289192, + -0.03079313226044178, + -0.09650295972824097, + -0.08695776760578156, + -0.12426053732633591, + 0.023546453565359116, + 0.0646866112947464, + 0.010225401259958744, + -0.07300810515880585, + -0.05638419836759567, + -0.034720711410045624, + -0.00600938918069005, + -0.1394597738981247, + 0.019238844513893127, + -0.0011451547034084797, + 0.051734574139118195, + -0.06523748487234116, + -0.019527047872543335, + 0.041244108229875565, + -0.059370629489421844, + -0.0010645977454259992, + 0.08546039462089539, + 0.03501586988568306, + 0.015945974737405777, + 0.11126093566417694, + 0.01955149881541729, + -0.05778130888938904, + -0.07731945812702179, + 0.043155547231435776, + 0.006113885901868343, + -0.024603499099612236, + 0.023966224864125252, + -0.0075788176618516445, + -0.008820325136184692, + -0.03917989134788513, + 0.010836634784936905, + -0.011537732556462288, + -0.025400152429938316, + -0.05535174906253815, + -0.04471466317772865, + 0.14000478386878967, + -0.02493460848927498, + -0.00035828998079523444, + -0.05715993046760559, + -0.05835188925266266, + -0.025971388444304466, + 0.070320263504982, + 0.008466418832540512, + 0.054191410541534424, + -3.108818889360165e-33, + -0.00513445632532239, + 0.026391668245196342, + -0.05056246742606163, + 0.08760741353034973, + -0.0025060195475816727, + 0.1306522786617279, + -0.040702421218156815, + 0.03916270285844803, + 0.011480922810733318, + 0.04615023732185364, + 0.09560701996088028, + 0.0896390825510025, + -0.023812174797058105, + 0.023035259917378426, + 0.03270436450839043, + -0.05988021567463875, + -0.009848298504948616, + -0.009024672210216522, + -0.15828798711299896, + 0.02751753479242325, + -0.025196775794029236, + 0.0376928448677063, + -0.027504922822117805, + -0.07530678063631058, + -0.013849732466042042, + -0.028435111045837402, + -0.008237690664827824, + -0.0006730445311404765, + -0.06863529235124588, + 0.011533639393746853, + 0.06766318529844284, + 0.03751450777053833, + 0.08789682388305664, + -0.0018959372537210584, + -0.032947953790426254, + -0.06042210012674332, + -0.019906651228666306, + -0.016966892406344414, + 0.013437645509839058, + 0.08627350628376007, + -0.12319835275411606, + 0.034039486199617386, + -0.03579605370759964, + -0.012279309332370758, + 0.02145191840827465, + 0.15191948413848877, + 0.031745728105306625, + -0.03936496376991272, + -0.017370400950312614, + 0.040482498705387115, + -0.0032213805243372917, + -0.03520093858242035, + 0.0065648118034005165, + -0.103365957736969, + 0.042126886546611786, + 0.002772233448922634, + -0.023949408903717995, + 0.013109637424349785, + 0.03627622872591019, + -0.044469304382801056, + 0.005580163095146418, + 0.05563995987176895, + 0.05384956672787666, + -0.011904754675924778, + -0.04162411391735077, + 0.05546211823821068, + 0.08956655114889145, + 0.06850190460681915, + 0.016772044822573662, + -0.03809329494833946, + -0.006998459342867136, + 0.0752878487110138, + 0.04388723149895668, + 0.0057801310904324055, + -0.03055940382182598, + 0.037544675171375275, + -0.023612666875123978, + 0.026464007794857025, + 0.008298540487885475, + -0.07478612661361694, + -0.00478089926764369, + -0.0035441676154732704, + 0.024803131818771362, + 0.045330166816711426, + -7.547732820967212e-05, + 0.021020010113716125, + -0.08484263718128204, + -0.11673814058303833, + -0.040693119168281555, + 0.027831483632326126, + -0.05336865782737732, + -0.03782304376363754, + -0.004983643069863319, + -0.03768402338027954, + -0.054472416639328, + 5.577914467548648e-34, + 0.07452628016471863, + 0.032685376703739166, + -0.06611385941505432, + -0.11479418724775314, + -0.017048511654138565, + -0.03237666189670563, + 0.05868985503911972, + 0.007752529811114073, + 0.012689507566392422, + -0.0074858772568404675, + 0.026591340079903603, + -0.026604576036334038, + -0.10344111174345016, + -0.0363369844853878, + -0.03368855640292168, + 0.002259790198877454, + 0.05474964901804924, + -0.014689210802316666, + -0.056206461042165756, + 0.013047215528786182, + -0.016769995912909508, + -0.030986206606030464, + -0.0640161782503128, + 0.07879873365163803, + 0.04939005896449089, + 0.007805831730365753, + 0.010230036452412605, + 0.03343982622027397, + -0.07810373604297638, + 0.04329206794500351, + -0.0028549337293952703, + -0.05378273129463196, + 0.052616093307733536, + 0.07562132924795151, + -0.03728901594877243, + 0.053218595683574677, + 0.07099636644124985, + -0.06127837672829628, + -0.018519286066293716, + -0.03881259635090828, + 0.03143971413373947, + 0.08192151039838791, + 0.0072737643495202065, + 0.08627388626337051, + -0.021280378103256226, + 0.059320732951164246, + -0.028664037585258484, + -0.08457112312316895, + -0.023679591715335846, + 0.03042015992105007, + 0.013820696622133255, + 0.007338058203458786, + -0.0025816012639552355, + -0.06868522614240646, + -0.041554272174835205, + -0.041295427829027176, + -0.010075868107378483, + 0.05966510996222496, + -0.007178825791925192, + 0.027789343148469925, + 0.038375768810510635, + -0.00337561359629035, + -0.08616247028112411, + -0.05171898007392883, + 0.006808952894061804, + 0.012679130770266056, + 0.07703743129968643, + 0.00285253394395113, + 0.08922784775495529, + 0.03384077548980713, + 0.039465680718421936, + -0.06953149288892746, + -0.0025442661717534065, + -0.02613946422934532, + 0.01034427247941494, + 0.046875324100255966, + -0.0006177259492687881, + 0.04603452980518341, + 0.01729644276201725, + 0.08767198771238327, + -0.002224201336503029, + -0.02301131747663021, + 0.01338789239525795, + 0.05356667563319206, + -0.017288584262132645, + 0.053614888340234756, + 0.014062638394534588, + 0.010031424462795258, + 0.005333444103598595, + 0.018625635653734207, + -0.04721885174512863, + 0.040316782891750336, + -0.002741560572758317, + -0.06246000528335571, + 0.008593728765845299, + -1.646377789654707e-08, + -0.019306251779198647, + -0.04972952604293823, + -0.014331012964248657, + -0.01742001250386238, + -0.023849427700042725, + -0.08338058739900589, + 0.013771631754934788, + -0.10422087460756302, + 0.001630918006412685, + -0.06969663500785828, + -0.02465440146625042, + -0.01156373880803585, + -0.023361263796687126, + -0.0023614519741386175, + 0.10130586475133896, + 0.0012038125423714519, + -0.07951583713293076, + 0.023166315630078316, + -0.037724610418081284, + 0.022481471300125122, + -0.027454158291220665, + 0.020097672939300537, + 0.06305389851331711, + 0.004690309055149555, + 0.04852227494120598, + 0.02323303185403347, + -0.057541199028491974, + -0.024503890424966812, + 0.09689724445343018, + 0.03688504546880722, + 0.018184103071689606, + 0.016432123258709908, + -0.05532374978065491, + -0.044342152774333954, + -0.025141021236777306, + -0.021857228130102158, + -0.00588914193212986, + -0.004382635001093149, + 0.08237816393375397, + 0.12446948140859604, + -0.010406714864075184, + -0.12592706084251404, + -0.02777986042201519, + -0.013614203780889511, + 0.03689819574356079, + 0.04875979200005531, + 0.06160331889986992, + -0.020055381581187248, + -0.04657496511936188, + -0.14369817078113556, + -0.005927527789026499, + 0.05584612861275673, + -0.024699056521058083, + 0.006856434978544712, + -0.0017602004809305072, + -0.12044385075569153, + 0.10377230495214462, + 0.08925223350524902, + 0.0010383528424426913, + 0.006331778131425381, + 0.11046691238880157, + 0.023823097348213196, + 0.021956440061330795, + 0.03930366784334183 + ], + "television-simple-bold||*updated*,screen,tv,displays": [ + 0.016427762806415558, + -0.042586494237184525, + 2.471024163241964e-05, + -0.0660489946603775, + 0.02877066284418106, + 0.006033404730260372, + -0.003107941010966897, + -0.02269900031387806, + -0.002563453046604991, + 0.0025611459277570248, + -0.003966540098190308, + 0.015481970272958279, + 0.0343073308467865, + -0.024865122511982918, + -0.04787878692150116, + -0.08044863492250443, + 0.066093809902668, + -0.06776732951402664, + 0.014138621278107166, + 0.03719472512602806, + -0.018713636323809624, + -0.002857034094631672, + -0.037252672016620636, + 0.036515749990940094, + 0.07510341703891754, + 0.04203513637185097, + 0.024831408634781837, + 0.04895243048667908, + 0.009085548110306263, + -0.0967983677983284, + -0.03716264292597771, + 0.023259202018380165, + 0.14934037625789642, + 0.041896041482686996, + -0.012760179117321968, + -0.07233463227748871, + -0.005455031059682369, + -0.0365443155169487, + -0.0821048840880394, + 0.0424504317343235, + 0.0038188984617590904, + -0.08317825943231583, + 0.00028232403565198183, + 9.986354416469112e-05, + -0.06658923625946045, + -0.09763628244400024, + -0.06401980668306351, + -0.04561581462621689, + 0.015174773521721363, + -0.03694475069642067, + -0.04692979156970978, + -0.01709786430001259, + -0.09524800628423691, + -0.008158412761986256, + 0.01543123833835125, + -0.030393028631806374, + -0.009138095192611217, + 0.07274213433265686, + 0.06983208656311035, + -0.01996424049139023, + 0.08458497375249863, + -0.0009766685543581843, + 0.06675492972135544, + 0.07476260513067245, + 0.015764128416776657, + 0.011961686424911022, + 0.02419118955731392, + -0.037463024258613586, + -0.026739373803138733, + -0.0024613223504275084, + -0.05133366584777832, + 0.06070524826645851, + 0.030668817460536957, + -0.05289459228515625, + -0.03729607164859772, + -0.027119556441903114, + 0.044753946363925934, + -0.07832542061805725, + -0.0007296398398466408, + -0.026833733543753624, + -0.0815240815281868, + -0.12437577545642853, + -0.1290600299835205, + 0.02550549991428852, + 0.09836028516292572, + 0.00025678190286271274, + -0.05828551948070526, + -0.04877021536231041, + -0.027054613456130028, + -0.026744436472654343, + -0.11031290888786316, + 0.0210923682898283, + 0.03489122539758682, + 0.03788502514362335, + -0.0909842997789383, + 0.009291568771004677, + 0.037836093455553055, + -0.06175592914223671, + -0.05091555044054985, + 0.11291105300188065, + 0.020816994830965996, + 0.0160591471940279, + 0.0970940962433815, + 0.014960341155529022, + -0.04267314076423645, + -0.06892544776201248, + 0.037567492574453354, + 0.029523884877562523, + -0.03288017958402634, + 0.022525519132614136, + -0.013713639229536057, + -0.030580326914787292, + -0.048870667815208435, + -0.023044535890221596, + -0.007733865641057491, + -0.003605914767831564, + -0.03886286914348602, + -0.026704583317041397, + 0.10930556803941727, + 0.02015084959566593, + 0.050745200365781784, + -0.06331480294466019, + -0.07623694092035294, + -0.03094162605702877, + 0.033065252006053925, + 0.004914145916700363, + 0.0701192319393158, + -3.8739073873500976e-33, + 0.006256607361137867, + 0.04791003838181496, + -0.044221192598342896, + 0.09852933883666992, + 0.011309407651424408, + 0.11406471580266953, + -0.052118461579084396, + 0.01567060314118862, + 0.010519330389797688, + 0.023019777610898018, + 0.11948677897453308, + 0.09008249640464783, + -0.04269134998321533, + 0.04089667648077011, + 0.019973428919911385, + -0.08856759965419769, + 0.011350669898092747, + 0.02505689300596714, + -0.11363360285758972, + 0.02062981016933918, + -0.020119749009609222, + 0.052132584154605865, + -0.01823057048022747, + -0.09300929307937622, + -0.009034465067088604, + -0.024808479472994804, + -0.006471775937825441, + -0.002753625623881817, + -0.05021434649825096, + 0.0018251434667035937, + 0.056402504444122314, + 0.035409703850746155, + 0.09095276892185211, + 0.010885977186262608, + -0.04065554961562157, + -0.08966434001922607, + -0.02938736602663994, + -0.03829483687877655, + 0.019431371241807938, + 0.04117441177368164, + -0.10921891033649445, + 0.031982842832803726, + -0.04531746357679367, + -0.03843558579683304, + 0.04550047591328621, + 0.15517427027225494, + 0.0021146012004464865, + -0.026279499754309654, + 0.009241770952939987, + 0.028614630922675133, + -0.009976966306567192, + 0.016792792826890945, + -0.033664364367723465, + -0.10790396481752396, + 0.02483047917485237, + 0.008312772028148174, + -0.029657498002052307, + 0.022788889706134796, + 0.05491618439555168, + -0.056813087314367294, + 0.03699007257819176, + 0.06477843970060349, + 0.03535294532775879, + -0.0008357148035429418, + -0.044462282210588455, + 0.07360800355672836, + 0.10976415872573853, + 0.06110530346632004, + 0.01351227518171072, + -0.028457820415496826, + -0.025512177497148514, + 0.07379378378391266, + 0.02566509135067463, + 0.0036010760813951492, + -0.025660015642642975, + 0.03775472193956375, + -0.02634543739259243, + -0.0028200193773955107, + -0.013028199784457684, + -0.07672084122896194, + 0.015880052000284195, + -0.02040863037109375, + -0.004594720900058746, + 0.07553264498710632, + 0.006709418725222349, + 0.004729901906102896, + -0.06354573369026184, + -0.048064809292554855, + -0.05784149095416069, + 0.022590860724449158, + -0.06353870779275894, + -0.03577073663473129, + -0.03913286328315735, + -0.03678038716316223, + -0.033114057034254074, + 6.371912228716139e-34, + 0.07037114351987839, + 0.025526177138090134, + -0.08027109503746033, + -0.09677279740571976, + -0.03122558444738388, + -0.027887629345059395, + 0.03048071078956127, + 0.02002212405204773, + 0.049933068454265594, + -0.011014554649591446, + 0.03710123896598816, + -0.026977865025401115, + -0.12607331573963165, + -0.04431324824690819, + -0.029641805216670036, + 0.02628975175321102, + 0.02065391093492508, + -0.011943871155381203, + -0.0677286833524704, + 0.025618979707360268, + -0.020162558183073997, + -0.01773913949728012, + -0.1085338145494461, + 0.058834075927734375, + 0.045029446482658386, + 0.004135968163609505, + 0.0020580745767802, + 0.0564880408346653, + -0.059731267392635345, + 0.00995195284485817, + -0.03058205544948578, + -0.07328260689973831, + 0.029342567548155785, + 0.054209694266319275, + -0.014960060827434063, + 0.07091911137104034, + 0.08486764132976532, + -0.08880062401294708, + -0.0414729006588459, + -0.002962981816381216, + 0.04013655334711075, + 0.07440729439258575, + 0.018411224707961082, + 0.0726187601685524, + 0.007562774699181318, + 0.040497638285160065, + -0.046867214143276215, + -0.07856018096208572, + -0.05039314925670624, + 0.019720468670129776, + 0.029029786586761475, + -0.026070181280374527, + -0.018213585019111633, + -0.05206521973013878, + -0.018716922029852867, + -0.00295780086889863, + 0.0030066249892115593, + 0.08040948957204819, + 0.0012430562637746334, + 0.03254709020256996, + 0.009326975792646408, + -0.0009097393485717475, + -0.09863235056400299, + -0.054777249693870544, + -0.006869338918477297, + 0.02192571945488453, + 0.057677581906318665, + -0.045066799968481064, + 0.06428134441375732, + 0.03215833753347397, + 0.04741694778203964, + -0.06085047125816345, + -0.02820766344666481, + -0.053423039615154266, + 0.023263897746801376, + 0.018465615808963776, + 0.0160914845764637, + 0.0454445481300354, + 0.018484024330973625, + 0.03321181610226631, + 0.00782221369445324, + -0.01196187175810337, + 0.03792690113186836, + 0.02483418956398964, + -0.008725271560251713, + 0.06365308165550232, + 0.03627782315015793, + 0.008708528243005276, + 0.011483926326036453, + -0.004348394460976124, + -0.08735637366771698, + 0.05278843641281128, + 0.02279103733599186, + -0.01988517865538597, + -0.017800815403461456, + -2.113246111434819e-08, + -0.003673441940918565, + -0.049573250114917755, + -0.04584559053182602, + -0.013679878786206245, + 0.02488943561911583, + -0.07853180915117264, + 0.0015483814058825374, + -0.11255894601345062, + 0.001152924494817853, + -0.09189372509717941, + -0.013960635289549828, + -0.0093759810552001, + 0.0024804433342069387, + 0.0404532328248024, + 0.07874920219182968, + 0.034993696957826614, + -0.09394966065883636, + 0.0314374677836895, + -0.02767426148056984, + 0.009780182503163815, + -0.02456691302359104, + 0.038915738463401794, + 0.06611336022615433, + -0.005560089834034443, + 0.05851717293262482, + 0.012097655795514584, + -0.038825083523988724, + 0.002466521691530943, + 0.0886106789112091, + 0.020479515194892883, + 0.02648375928401947, + 0.02688412554562092, + -0.040096018463373184, + -0.024380477145314217, + -0.01521766185760498, + -0.014762859791517258, + -0.0007810508250258863, + 0.023544510826468468, + 0.07127158343791962, + 0.11854419112205505, + -0.000918423873372376, + -0.10464094579219818, + -0.009542112238705158, + -0.011928440071642399, + 0.03607843443751335, + 0.0489182285964489, + 0.038053128868341446, + -0.056622039526700974, + -0.055690035223960876, + -0.1362757682800293, + 0.004137252923101187, + 0.05923331901431084, + -0.007144492119550705, + 0.005309686530381441, + 0.0025564495008438826, + -0.08829297125339508, + 0.10643307864665985, + 0.09993796795606613, + -0.009696890600025654, + 0.01967358961701393, + 0.10469097644090652, + 0.052836209535598755, + 0.0020605491008609533, + 0.047335222363471985 + ], + "tennis-ball-bold||sports,mlb": [ + 0.030141228809952736, + 0.0617491751909256, + 0.030008621513843536, + -0.06812917441129684, + -0.006571365986019373, + 0.03414328768849373, + 0.053146056830883026, + 0.021804535761475563, + 0.065326988697052, + 0.1055726408958435, + -0.06219951808452606, + 0.009731288999319077, + -0.04256042093038559, + -0.005302403122186661, + 0.014896929264068604, + 0.02404322661459446, + 0.09562435746192932, + 0.0005085504963062704, + 0.033756669610738754, + 0.03761875629425049, + 0.018747737631201744, + 0.026815051212906837, + 0.032553352415561676, + -0.00846363790333271, + 0.0436096228659153, + 0.035185690969228745, + 0.0069174617528915405, + 0.08560474216938019, + -0.09308687597513199, + -0.03154957666993141, + -0.10651841014623642, + -0.029557177796959877, + 0.062224119901657104, + 0.07444550096988678, + -0.07166832685470581, + -0.056472379714250565, + -0.041839562356472015, + -0.006131025031208992, + 0.05313234403729439, + 0.09248612821102142, + 0.044628359377384186, + -0.09595378488302231, + -0.003627161495387554, + 0.1087128072977066, + -0.0603962279856205, + 0.049148671329021454, + -0.04161208122968674, + 0.06027841195464134, + 0.010977079160511494, + 0.00660856906324625, + -0.02837434969842434, + -0.06817304342985153, + 0.015918465331196785, + 0.032321106642484665, + 0.1297556757926941, + 0.049248360097408295, + -0.02721553109586239, + 0.05416324362158775, + 0.01923792064189911, + 0.021663719788193703, + 0.08340727537870407, + -0.026152344420552254, + -0.028838369995355606, + 0.05049740523099899, + -0.031954895704984665, + -0.09305471181869507, + -0.0068140048533678055, + 0.05225403606891632, + -0.023483671247959137, + -0.0025369373615831137, + 0.0498238168656826, + 0.07820175588130951, + -0.007463669870048761, + -0.01215799618512392, + 0.00989926140755415, + 0.09787995368242264, + 0.015141574665904045, + -0.01948259212076664, + -0.030166322365403175, + -0.026576634496450424, + -0.056317221373319626, + -0.08563946187496185, + -0.0799151062965393, + -0.016556235030293465, + 0.015781287103891373, + -0.021764690056443214, + -0.039737433195114136, + -0.0076672094874084, + -0.02255219779908657, + 0.00793597660958767, + -0.1181863471865654, + -0.0014289311366155744, + -0.010091017931699753, + 0.016931289806962013, + -0.11597542464733124, + 0.06317713111639023, + -0.009488113224506378, + -0.053510185331106186, + -0.023928945884108543, + 0.07828769087791443, + 0.0751730278134346, + 0.011197121813893318, + 0.08319874107837677, + 0.05235283449292183, + 0.016159342601895332, + 0.03602047264575958, + -0.05896749347448349, + 0.018785275518894196, + 0.03240426629781723, + 0.031839460134506226, + -0.03182987868785858, + -0.030342869460582733, + -0.06948171555995941, + 0.04073004797101021, + -0.11819402128458023, + 0.014298226684331894, + -0.018446965143084526, + 0.012029972858726978, + 0.041829708963632584, + -0.018445314839482307, + -0.030491314828395844, + -0.031267255544662476, + -0.049547817558050156, + -0.03355863690376282, + -0.040820781141519547, + 0.03566521406173706, + 0.05250440537929535, + -4.972068903567664e-33, + 0.02113613858819008, + -0.014642644673585892, + 0.018598180264234543, + 0.06192825734615326, + -0.06846582144498825, + -5.42842572031077e-05, + -0.028174303472042084, + -0.0300562996417284, + -0.04090770334005356, + -0.040612783282995224, + -0.009556805714964867, + 0.05957961082458496, + 0.015435143373906612, + -0.029337625950574875, + 0.08372753113508224, + -0.044118158519268036, + -0.005183759611099958, + -0.023971065878868103, + -0.033270202577114105, + 0.050437651574611664, + -0.04952950030565262, + 0.016935773193836212, + -0.025106482207775116, + -0.03622279688715935, + -0.10401391983032227, + 0.013290236704051495, + 0.061671316623687744, + -0.10603982955217361, + -0.013145135715603828, + 0.017341267317533493, + 0.07092934846878052, + -0.02984265796840191, + 0.020930325612425804, + 0.05393892899155617, + 0.048137690871953964, + -0.037103164941072464, + 0.011032014153897762, + -0.026799557730555534, + 0.016189560294151306, + -0.04405320808291435, + -0.04930006340146065, + -0.06804190576076508, + -0.018207887187600136, + -0.010455524548888206, + -0.006519230082631111, + 0.03511741757392883, + -0.06742933392524719, + -0.03554808720946312, + 3.1697402391728247e-06, + -1.2037604392389767e-05, + 0.06828027963638306, + -0.04185442626476288, + 0.06396418809890747, + -0.0063581522554159164, + 0.03187037259340286, + -0.028242405503988266, + -0.030598564073443413, + 0.027904890477657318, + -0.04108399897813797, + -0.02835659123957157, + 0.03901958093047142, + -0.013352063484489918, + 0.023622993379831314, + 0.0169519130140543, + -0.045712634921073914, + 0.05823524668812752, + -0.013019408099353313, + -0.04174765199422836, + 0.03628534823656082, + 0.018367266282439232, + 0.05488025024533272, + 0.05506455898284912, + 0.00044223511940799654, + 0.07993178814649582, + 0.031113151460886, + 0.09279043227434158, + 0.06725335866212845, + 0.020730433985590935, + -0.015422950498759747, + -0.05234586074948311, + -0.08567002415657043, + 0.0005341401556506753, + -0.07076030969619751, + 0.032095711678266525, + -0.09114157408475876, + 0.050488557666540146, + -0.028072219341993332, + -0.039550017565488815, + 0.02314404956996441, + 0.07784555852413177, + -0.10776349902153015, + -0.03364372253417969, + -0.07516365498304367, + -0.0157405324280262, + -0.08083667606115341, + 2.0632006849274086e-33, + 0.03232091665267944, + -0.05138390511274338, + -0.04112940654158592, + -0.04808259382843971, + 0.07293139398097992, + 0.052372731268405914, + 0.024578753858804703, + 0.0688859298825264, + -0.00894810352474451, + -0.020058460533618927, + 0.02179308608174324, + -0.08206646144390106, + -0.06602613627910614, + -0.03525269031524658, + -0.04141129180788994, + 0.009626150131225586, + -0.03153635188937187, + 0.0052556865848600864, + -0.08627912402153015, + 0.03860888257622719, + 0.004590198863297701, + -0.015314512886106968, + -0.001412227749824524, + 0.036275044083595276, + -0.0699368566274643, + -0.0019179625669494271, + 0.0075344243086874485, + 0.006562222260981798, + -0.13889646530151367, + 0.03578372299671173, + 0.005885586608201265, + 0.04209594056010246, + 0.04620084911584854, + 0.0770186111330986, + -0.09947286546230316, + 0.12611663341522217, + 0.03078342042863369, + -0.03360670804977417, + 0.07145173102617264, + -0.04608052968978882, + 0.023487143218517303, + -0.004165864549577236, + -0.020826216787099838, + 0.04797707870602608, + 0.042939987033605576, + 0.04729020968079567, + -0.06436538696289062, + 0.037567730993032455, + -0.030070999637246132, + 0.07114139944314957, + -0.06833586096763611, + 0.005539139732718468, + 0.00154799222946167, + 0.013950282707810402, + -0.005343839060515165, + -0.0392429493367672, + -0.03528830409049988, + -0.04791686683893204, + -0.04842934384942055, + -0.014834381639957428, + -0.04773283749818802, + 0.09535488486289978, + -0.12913410365581512, + 0.07313699275255203, + 0.02430356666445732, + 0.07066555321216583, + -0.006801257841289043, + -0.055074747651815414, + -0.0495976097881794, + -0.03387126326560974, + -0.04661748930811882, + -0.00789716187864542, + -0.05010071396827698, + 0.050750359892845154, + 0.04200763255357742, + -0.019026730209589005, + 0.029123403131961823, + 0.10243742913007736, + -0.0489991158246994, + 0.12051095813512802, + -0.0029607645701617002, + 0.06379564851522446, + -0.042923349887132645, + 0.09012902528047562, + 0.07847315073013306, + 0.047705113887786865, + -0.011597941629588604, + -0.002302600536495447, + -0.08958449959754944, + 0.05559546500444412, + 0.01009293831884861, + 0.11024127155542374, + -0.02752334624528885, + -0.01749907061457634, + 0.036026857793331146, + -1.5709188616597203e-08, + 0.03616354614496231, + 0.08936818689107895, + -0.02458708919584751, + -0.031611017882823944, + 0.009103357791900635, + 0.011927837505936623, + -0.05318732559680939, + -0.06051197648048401, + 0.06849347054958344, + -0.0810793936252594, + -0.024169914424419403, + -0.04752419516444206, + -0.03141285106539726, + -0.020006630569696426, + 0.022924069315195084, + 0.028724169358611107, + -0.093377485871315, + 0.07207494229078293, + -0.060029517859220505, + 0.037470050156116486, + -0.02702278271317482, + -0.01627822034060955, + 0.01613437384366989, + 0.010925116948783398, + 0.03233538195490837, + -0.004290707875043154, + -0.08132804185152054, + -0.07031897455453873, + 0.015667300671339035, + -0.010631203651428223, + 0.06963253021240234, + 0.08319004625082016, + 0.03228126838803291, + -0.011921264231204987, + -0.06356560438871384, + 0.041165877133607864, + 0.002627687295898795, + -0.03215942904353142, + -0.01011784840375185, + 0.07663233578205109, + -0.08562895655632019, + 0.022927140817046165, + -0.05396929755806923, + -0.025477899238467216, + 0.019179778173565865, + -0.045325327664613724, + 0.05374046042561531, + -0.03950707986950874, + -0.09348518401384354, + -0.0227812472730875, + -0.08127307891845703, + 0.02187572978436947, + 0.028043754398822784, + -0.03446626290678978, + -0.07065661251544952, + 0.02310822159051895, + -0.03527393192052841, + 0.02574850060045719, + -0.037993643432855606, + 0.0016312883235514164, + 0.10641726851463318, + -0.06181301921606064, + 0.021784432232379913, + 0.09237631410360336 + ], + "tent-bold||camping,outdoors,tarp": [ + -0.006606090813875198, + 0.1195654571056366, + 0.023955130949616432, + 0.05836709588766098, + 0.13516367971897125, + -0.03138845041394234, + 0.0969306156039238, + -0.04604082182049751, + -0.02659374289214611, + 0.06255730241537094, + -0.03517245873808861, + -0.030545733869075775, + 0.01679316721856594, + 0.029384369030594826, + 0.0396597795188427, + 0.08613590896129608, + -0.003012562869116664, + 0.01079500187188387, + 0.056124161928892136, + 0.010516630485653877, + -0.02635827101767063, + 0.05741609260439873, + 0.04986557364463806, + 0.02142525278031826, + 0.05452090874314308, + 0.025159388780593872, + -0.04306935518980026, + 0.09359324723482132, + 0.060925040394067764, + -0.06227615103125572, + -0.026348676532506943, + 0.09948979318141937, + -0.05598132684826851, + -0.022133685648441315, + 0.13696804642677307, + 0.12561754882335663, + 0.006894497666507959, + -0.048120465129613876, + 0.009831427596509457, + 0.05262426286935806, + 0.04547626152634621, + -0.00854947604238987, + -0.024462804198265076, + -0.01763942465186119, + -0.08782455325126648, + 0.019964437931776047, + -0.03833277150988579, + 0.04727979749441147, + 0.02020319737493992, + -0.045303475111722946, + 0.04580015689134598, + -0.0402093306183815, + -0.10961592942476273, + 0.05684619024395943, + -0.028272932395339012, + -0.0444369837641716, + -0.06137412041425705, + -0.06386585533618927, + -0.006162825506180525, + -0.06908109784126282, + 0.01657523587346077, + 0.05907323583960533, + -0.02849876508116722, + 0.011147471144795418, + 0.029511287808418274, + -0.0011030198074877262, + -0.04482565447688103, + 0.013788570649921894, + 0.027191078290343285, + 0.009114488027989864, + 0.011596081778407097, + 0.020852871239185333, + -0.006386672146618366, + -0.053656600415706635, + -0.047526974231004715, + -0.017814822494983673, + 0.016836201772093773, + 0.05376281216740608, + -0.013129223138093948, + -0.08733310550451279, + -0.06413979083299637, + -0.007659716997295618, + 0.023537466302514076, + -0.04867595061659813, + -0.0614590048789978, + 0.015011344105005264, + 0.00661129504442215, + 0.010074997320771217, + 0.047788556665182114, + 0.014202945865690708, + -0.060529131442308426, + 0.006887315772473812, + -0.07248806208372116, + 0.03448912501335144, + -0.05588113144040108, + 0.03222036361694336, + 0.08423033356666565, + -0.02145307883620262, + -0.0623287558555603, + 0.06945133209228516, + 0.050080277025699615, + 0.025163885205984116, + 0.0182727612555027, + -0.07217005640268326, + 0.04506625980138779, + -0.06644293665885925, + 0.041278086602687836, + -0.05283595621585846, + 0.035247016698122025, + -0.00809867586940527, + -0.020492613315582275, + -0.02923189103603363, + 0.05480177327990532, + 0.0025646849535405636, + -0.04825467988848686, + -0.05079982429742813, + -0.033383939415216446, + -0.025396598502993584, + 0.052336134016513824, + 0.11145008355379105, + 0.03207940235733986, + -0.009361936710774899, + 0.12163475900888443, + 0.027234401553869247, + 0.019736314192414284, + -0.039768386632204056, + 0.029144389554858208, + -3.0235169377408377e-33, + 0.025563949719071388, + 0.03744097426533699, + -0.0320800356566906, + 0.14897854626178741, + 0.11254286020994186, + 0.006198165938258171, + -0.06258730590343475, + -0.06030025705695152, + -0.0919223502278328, + 0.08292865008115768, + -0.042443279176950455, + 0.00555906817317009, + -0.0315391905605793, + 0.053439121693372726, + 0.04893472418189049, + -0.06259352713823318, + -0.042901236563920975, + -0.0820995643734932, + -0.03968064486980438, + -0.05236583203077316, + -0.10587413609027863, + -0.0038574610371142626, + 0.0034747410099953413, + -0.04671533778309822, + 0.0243982020765543, + -0.01378430612385273, + 0.03253507986664772, + -0.01605340652167797, + -0.029914744198322296, + 0.031520355492830276, + 0.09202640503644943, + -0.03381676971912384, + 0.00792542565613985, + 0.025989416986703873, + -0.0012235252652317286, + 0.08992242068052292, + -0.01434730738401413, + -0.02704205922782421, + -0.062300194054841995, + 0.017794502899050713, + -0.06686156988143921, + -0.019015997648239136, + 0.017878267914056778, + -0.020650872960686684, + 0.044444262981414795, + 0.05818081647157669, + 0.06545805186033249, + -0.03198093920946121, + -0.07610265910625458, + -0.05053621158003807, + -0.029546426609158516, + 0.04823174700140953, + -0.011823753826320171, + -0.0626508966088295, + -0.04064106196165085, + -0.006377574056386948, + 0.045826151967048645, + 0.009120408445596695, + -0.01442056056112051, + 0.02642485871911049, + 0.043451279401779175, + 0.05745629221200943, + -0.0047722202725708485, + -0.0521654449403286, + -0.01306717749685049, + -0.08152411878108978, + -0.018117818981409073, + 0.052812643349170685, + 0.05905905365943909, + -0.07006615400314331, + -0.020849555730819702, + 0.02686990424990654, + 0.11039382219314575, + 0.04363067448139191, + -0.02682897448539734, + 0.0021798480302095413, + 0.04788578301668167, + 0.017910286784172058, + 0.07583770155906677, + -0.06271328777074814, + -0.05520448833703995, + -0.006536639761179686, + -0.04819981008768082, + 0.021662315353751183, + -0.003827960230410099, + -0.08437695354223251, + 0.016248010098934174, + -0.03785230219364166, + -0.028667032718658447, + 0.036263108253479004, + -0.0397212915122509, + 0.07180799543857574, + 0.04651987552642822, + -0.13090521097183228, + -0.052229855209589005, + 2.3869271455335625e-34, + 0.04061303287744522, + -0.019740156829357147, + 0.0013543717795982957, + -0.07602588832378387, + 0.015828752890229225, + 0.022229593247175217, + 0.0024497045669704676, + -0.05607852712273598, + 0.007610933855175972, + 0.0042758216150105, + -0.050825122743844986, + 0.022446339949965477, + 0.034979198127985, + 0.0009080975432880223, + 0.04220171272754669, + -0.0014396263286471367, + -0.023790162056684494, + 0.03057985007762909, + 0.014157610014081001, + 0.03152724355459213, + -0.07542134076356888, + -0.013448959216475487, + -0.10155132412910461, + 0.07909595221281052, + -0.06365394592285156, + 0.04075855016708374, + 0.007951037026941776, + 0.04158586636185646, + -0.031292662024497986, + -0.06864100694656372, + 0.010608618147671223, + -0.05734514445066452, + -0.00393877224996686, + 0.06257584691047668, + -0.033937014639377594, + 0.009929060935974121, + 0.045361727476119995, + -0.029865406453609467, + -0.07295941561460495, + -0.07024228572845459, + 0.09627758711576462, + -0.014768296852707863, + -0.04311047121882439, + -0.07612207531929016, + -0.012512347660958767, + -0.04616941884160042, + -0.07690171152353287, + -0.054741136729717255, + -0.0617256686091423, + 0.03890411928296089, + 0.019910534843802452, + -0.04092051088809967, + -0.08541912585496902, + -0.02005411684513092, + 0.002589829731732607, + -0.05422317609190941, + -0.10392391681671143, + 0.05117792636156082, + -0.037407055497169495, + 0.09838537126779556, + 0.05398840084671974, + 0.07239380478858948, + -0.014456848613917828, + 0.06865977495908737, + 0.021123940125107765, + -0.048163674771785736, + -0.06640169769525528, + -0.03101261705160141, + -0.017993323504924774, + 0.07265566289424896, + 0.008127558045089245, + 0.00695774145424366, + -0.05493643879890442, + 0.0392528660595417, + 0.03254467248916626, + -0.035500071942806244, + 0.09428656846284866, + -0.021196823567152023, + 0.05128367617726326, + -0.057173993438482285, + -0.031778473407030106, + -0.0409112311899662, + -0.1123051568865776, + 0.06598683446645737, + -0.009624192491173744, + -0.016500946134328842, + 0.06552940607070923, + 0.01096983440220356, + -0.013952160254120827, + -0.02747960016131401, + 0.026847757399082184, + -0.0040951138362288475, + -0.051371414214372635, + 0.07453624159097672, + 0.04326723515987396, + -1.601506838255773e-08, + -0.029630068689584732, + 0.07495760172605515, + -0.028065329417586327, + -0.012065143324434757, + 0.006376157980412245, + -0.04193544760346413, + 0.05493200197815895, + -0.09126019477844238, + -0.03229594975709915, + -0.03240122273564339, + 0.009933529421687126, + -0.023632090538740158, + 0.03590380772948265, + -0.0029557214584201574, + 0.01425193715840578, + 0.009991833008825779, + -0.10398056358098984, + 0.047930892556905746, + -0.03485539183020592, + -0.035193171352148056, + -0.035815756767988205, + 0.052824001759290695, + -0.024695390835404396, + 0.007717697415500879, + 0.052430134266614914, + 0.030950509011745453, + -0.03617684915661812, + 0.014557041227817535, + 0.09576480835676193, + 0.08208142966032028, + 0.028552602976560593, + 0.0698433518409729, + -0.02335568144917488, + 0.024632804095745087, + -0.09153489768505096, + -0.01743045449256897, + -0.008674398064613342, + -0.0024777334183454514, + 0.028964444994926453, + 0.12122100591659546, + -0.0010500452481210232, + 0.006675883196294308, + -0.01175619289278984, + -0.10133684426546097, + -0.07948485761880875, + 0.04364006221294403, + 0.030429013073444366, + -0.03193782642483711, + -0.13567917048931122, + -0.027539674192667007, + 0.05453792214393616, + -0.025542622432112694, + 0.06316731870174408, + 0.08031120896339417, + 0.039915796369314194, + -0.028228064998984337, + -0.003928470890969038, + 0.06973015516996384, + -0.021158304065465927, + -0.015184232965111732, + -0.006991352885961533, + -0.02371075004339218, + -0.04599360004067421, + -0.0019144072430208325 + ], + "terminal-bold||command line,cli,bash,shell,caret,console": [ + 0.08278657495975494, + -0.046333082020282745, + -0.06075102463364601, + -0.011835315264761448, + 0.06539999693632126, + -0.02573998272418976, + 0.03203047811985016, + 0.058485470712184906, + 0.042961299419403076, + 0.006283799652010202, + -0.014412140473723412, + -0.0024066371843218803, + 0.0684145987033844, + -0.02221049554646015, + 0.02049010992050171, + -0.013548212125897408, + -0.046766526997089386, + -0.0316038504242897, + -0.020058296620845795, + -0.030816104263067245, + 0.005516876932233572, + 0.05928138643503189, + 0.024919258430600166, + -0.033786553889513016, + -0.02945750579237938, + -0.023688964545726776, + 0.027471695095300674, + -0.0764208510518074, + -0.028231095522642136, + -0.09361600875854492, + -0.08800046890974045, + 0.0667751207947731, + 0.07152475416660309, + -0.01639014482498169, + 0.026945609599351883, + 0.07460905611515045, + 0.0626383125782013, + -0.00319598033092916, + -0.008783392608165741, + 0.016537146642804146, + 0.04129653051495552, + -0.010918733663856983, + -0.01174583937972784, + -0.01986764185130596, + -0.013187109492719173, + -0.07610994577407837, + -0.0822787657380104, + -0.12290868163108826, + 0.021297799423336983, + -0.02797023206949234, + 0.013268251903355122, + -0.02420727349817753, + -0.07383910566568375, + -0.0007578071090392768, + -0.0006745639839209616, + 0.03511099889874458, + -0.09516298025846481, + -0.0021734624169766903, + 0.10246192663908005, + -0.053593821823596954, + -0.0888013243675232, + 0.09348589181900024, + -0.009799973107874393, + 0.03817715495824814, + 0.017596712335944176, + -0.0076209199614822865, + 0.017070448026061058, + 0.0653129294514656, + 0.014014996588230133, + 0.026255708187818527, + -0.018281759694218636, + -0.06640851497650146, + -0.06462232768535614, + -0.05359407886862755, + -0.05301212891936302, + 0.02520405314862728, + 0.09615732729434967, + 0.00977091584354639, + -0.057164713740348816, + -0.010839248076081276, + -0.08571266382932663, + 0.03781525045633316, + -0.041836123913526535, + 0.038894739001989365, + 0.004923240281641483, + 0.11654285341501236, + -0.0385916605591774, + -0.03084060177206993, + -0.0021419317927211523, + 0.019845984876155853, + -0.03067108802497387, + -0.09174799919128418, + 0.016862474381923676, + 0.050279587507247925, + -0.11221098154783249, + 0.03656256943941116, + 0.06358545273542404, + -0.014321241527795792, + -0.05934963375329971, + 0.07823559641838074, + -0.01496924739331007, + 0.0013628019951283932, + 0.09856332093477249, + 0.0525318905711174, + 0.006028869189321995, + -0.009055616334080696, + 0.024333937093615532, + -0.01818511262536049, + 0.03292165696620941, + -0.009988333098590374, + 0.0114643145352602, + -0.11099058389663696, + -0.010773363523185253, + -0.05132748559117317, + 0.026136575266718864, + 0.006725568789988756, + -0.01687549613416195, + -0.05160399526357651, + 0.07718916982412338, + 0.10734112560749054, + 0.07269354164600372, + -0.018201688304543495, + -0.06621851027011871, + -0.028597941622138023, + 0.08266130089759827, + -0.024298518896102905, + 0.08403641730546951, + -1.291321870351554e-33, + 0.12187521159648895, + 0.005297231953591108, + 0.037007514387369156, + 0.054250266402959824, + 0.03701545298099518, + 0.07753166556358337, + -0.0252141784876585, + -0.03813149407505989, + -0.05199093371629715, + 0.05814442038536072, + 0.09392670542001724, + 0.03900793567299843, + -0.0668126717209816, + 0.061046991497278214, + 0.01632455363869667, + -0.04978582635521889, + 0.018879026174545288, + 0.002581232227385044, + -0.06124451383948326, + 0.00677440594881773, + -0.03668777272105217, + 0.0981159508228302, + -0.031044283881783485, + -0.04222476854920387, + 0.019574705511331558, + -0.08214780688285828, + 0.04485926404595375, + 0.023172957822680473, + 0.006653319112956524, + 0.010902928188443184, + 0.022363144904375076, + 0.007358412258327007, + 0.06332625448703766, + 0.04746159538626671, + -0.07672534137964249, + 0.0038934641052037477, + -0.07104743272066116, + -0.017328700050711632, + 0.039247915148735046, + 0.06852274388074875, + -0.08701633661985397, + 0.027592981234192848, + -0.009039871394634247, + -0.04270046576857567, + 0.07565990090370178, + 0.05667652562260628, + -0.043142955750226974, + -0.09286999702453613, + -0.033333923667669296, + 0.037316467612981796, + -0.009752433747053146, + 0.03897817060351372, + 0.06578971445560455, + 0.08066236227750778, + 0.015888797119259834, + 0.00028947569080628455, + 0.014757386408746243, + 0.022838562726974487, + -0.0016197685617953539, + 0.04061846807599068, + 0.021119503304362297, + 0.05178314074873924, + 0.07562024146318436, + 0.006828069221228361, + 0.030730944126844406, + 0.05689602717757225, + -0.10179625451564789, + -0.01679275743663311, + 0.038407228887081146, + 0.04845401272177696, + -0.06995505094528198, + 0.05336519703269005, + 0.022764403373003006, + 0.036185309290885925, + 0.03667839616537094, + 0.0170535147190094, + 0.003204957814887166, + 0.002436148701235652, + 0.04246125742793083, + -0.023121042177081108, + -0.0195201113820076, + -0.0026414503809064627, + -0.1082761213183403, + 0.047408327460289, + 0.04974671080708504, + -0.03080037049949169, + -0.006794486194849014, + -0.0010097165359184146, + -0.06423871219158173, + -0.020909234881401062, + -0.052074261009693146, + -0.0037917380686849356, + -0.004003893584012985, + -0.07679758965969086, + -0.12578216195106506, + -1.9792735106855666e-33, + 0.056495003402233124, + 0.017507491633296013, + -0.005085302982479334, + 0.0014527381863445044, + -0.09002280980348587, + -0.036314308643341064, + -0.055160705000162125, + -0.04673995077610016, + -0.04271402209997177, + -0.03889445960521698, + 0.000977067742496729, + 0.07224637269973755, + -0.003447755007073283, + -0.008273562416434288, + 0.04609780013561249, + 0.041580162942409515, + 0.015323272906243801, + 0.012747744098305702, + -0.011738910339772701, + -0.007971384562551975, + -0.057735320180654526, + -0.019906960427761078, + -0.04049386456608772, + 0.10664717853069305, + 0.0268428772687912, + -0.07980348914861679, + 0.013247913680970669, + 0.017065249383449554, + -0.008040267042815685, + -0.05580390989780426, + -0.02013678476214409, + 0.082016222178936, + 0.015493420884013176, + 0.04337297007441521, + -0.04534666985273361, + 0.023584989830851555, + 0.014333773404359818, + 0.04096207022666931, + 0.017463307827711105, + 0.02155931666493416, + 0.023501109331846237, + -0.0022994293831288815, + 0.022983890026807785, + 0.014495263807475567, + -0.10672303289175034, + 0.028174247592687607, + -0.0050863889046013355, + -0.10291385650634766, + 0.003559343982487917, + 0.03371136263012886, + 0.013570246286690235, + -0.06427385658025742, + -0.013631545007228851, + -0.002563056070357561, + -0.02010362036526203, + -0.11541968584060669, + 0.006546007934957743, + 0.01974407210946083, + -0.0875154584646225, + -0.01722952350974083, + -0.0023156285751610994, + 0.03765983134508133, + -0.05623546615242958, + -0.045484207570552826, + -0.022282853722572327, + -0.09538625180721283, + 0.015741657465696335, + -0.07077733427286148, + 0.016848765313625336, + -0.033458203077316284, + 0.11249903589487076, + -0.04307152330875397, + 0.00045820962986908853, + 0.05115358531475067, + 0.048895206302404404, + -0.05239756405353546, + 0.023198647424578667, + -0.0613509826362133, + -0.007006152532994747, + 0.08132999390363693, + 0.005516310688108206, + -0.018624527379870415, + -0.01612180471420288, + 0.014779234305024147, + -0.08323869109153748, + 0.036809615790843964, + -0.030053172260522842, + 0.05590195208787918, + -0.0295619647949934, + -0.011482210829854012, + -0.019830508157610893, + 0.04445270821452141, + 0.02600524201989174, + -0.03865490108728409, + -0.07704831659793854, + -2.1312528630801353e-08, + 0.0017461535753682256, + -0.11160741746425629, + -0.04922685772180557, + 0.04149666056036949, + -0.044842321425676346, + -0.06285515427589417, + -0.02445889078080654, + -0.08962991088628769, + -0.044354092329740524, + -0.007900092750787735, + 0.017995979636907578, + 0.050873901695013046, + -0.04894041270017624, + -0.07089128345251083, + 0.07955557107925415, + 0.08553270250558853, + -0.03655477985739708, + 0.016051704064011574, + -0.008876873180270195, + -0.021173903718590736, + -0.05928973853588104, + 0.08742330968379974, + 0.020432641729712486, + -0.001877716276794672, + -0.002991128945723176, + 0.04412931203842163, + -0.03458256274461746, + 0.04988180100917816, + -0.006540981121361256, + 0.08926881849765778, + 0.08522245287895203, + 0.007767137605696917, + -0.02417997270822525, + -0.041237182915210724, + 0.042683131992816925, + -0.0756734311580658, + 0.03302483260631561, + -0.02034813165664673, + -0.03942767158150673, + 0.09409211575984955, + 0.041501790285110474, + -0.00933238584548235, + -0.0003996757441200316, + -0.012034687213599682, + -0.06892229616641998, + -0.008246995508670807, + 0.07539304345846176, + 0.06474584341049194, + -0.050684854388237, + -0.20537236332893372, + -0.03421800956130028, + 0.05569538474082947, + -0.0481957346200943, + 0.05156071111559868, + -0.07379212230443954, + -0.022340575233101845, + -0.0015014350647106767, + 0.08513721078634262, + 0.013457716442644596, + 0.04466915875673294, + 0.055385150015354156, + -0.04493435472249985, + 0.04476125165820122, + 0.007222962100058794 + ], + "terminal-window-bold||command line,cli,bash,shell,caret,console": [ + 0.0838158056139946, + -0.014895398169755936, + -0.07094338536262512, + 0.007520369719713926, + 0.058779772371053696, + -0.028252357617020607, + 0.0474734902381897, + 0.04566110670566559, + 0.04228445887565613, + 0.005494686309248209, + -0.04778343811631203, + -0.02020728588104248, + 0.05952625349164009, + -0.02431723102927208, + 0.009814123623073101, + -0.0167512446641922, + -0.046075500547885895, + -0.015365073457360268, + -0.031357377767562866, + -0.034013260155916214, + -0.011175000108778477, + 0.04213172569870949, + 0.034572746604681015, + -0.03611547127366066, + -0.008572236634790897, + -0.02402655966579914, + 0.003843935439363122, + -0.05887904018163681, + -0.013787277974188328, + -0.073512502014637, + -0.0731884241104126, + 0.050837334245443344, + 0.05814380571246147, + -0.01289836410433054, + 0.02438822202384472, + 0.05361495167016983, + 0.04719465598464012, + -0.006413774564862251, + -0.008040850050747395, + 0.005709141027182341, + 0.049561161547899246, + 0.012299500405788422, + -0.04126378148794174, + -0.01752408966422081, + -0.03254248946905136, + -0.06517121940851212, + -0.08406417071819305, + -0.10780301690101624, + 0.018177054822444916, + -0.01513687614351511, + -0.005302402190864086, + -0.021289823576807976, + -0.07723462581634521, + -0.0062356567941606045, + -0.009230204857885838, + 0.025941843166947365, + -0.08049117773771286, + -0.01179832685738802, + 0.10236174613237381, + -0.02383718267083168, + -0.067135751247406, + 0.07646115124225616, + -0.02312750555574894, + 0.04549648240208626, + 0.012964092195034027, + -0.002582977758720517, + 0.0022880700416862965, + 0.07069947570562363, + 0.010218956507742405, + 0.004651721101254225, + -0.027728285640478134, + -0.07165678590536118, + -0.04506179317831993, + -0.06855879724025726, + -0.06785667687654495, + -0.012568271718919277, + 0.07605195045471191, + 0.007771637290716171, + -0.07083403319120407, + 0.0007020885241217911, + -0.05770844966173172, + 0.0381372906267643, + -0.06506633758544922, + 0.035874348133802414, + 0.039132632315158844, + 0.11098622530698776, + -0.05153262987732887, + -0.029177239164710045, + -0.007691881153732538, + 0.03007747419178486, + -0.05989995226264, + -0.10969333350658417, + -0.004519163630902767, + 0.07384128123521805, + -0.08940885961055756, + 0.04768449440598488, + 0.08354692906141281, + -0.011957859620451927, + -0.05458731949329376, + 0.07275447994470596, + -0.023744480684399605, + 0.013933033682405949, + 0.1096617802977562, + 0.06244716793298721, + -0.0064103007316589355, + 0.004673474468290806, + -0.003801375860348344, + 0.0022373904939740896, + 0.03291719779372215, + -0.01967611350119114, + 0.0012874869862571359, + -0.10345342755317688, + 0.008510595187544823, + -0.046204742044210434, + 0.03858641907572746, + -0.0004162031982559711, + -0.01810435950756073, + -0.044171348214149475, + 0.05671809986233711, + 0.10608689486980438, + 0.08841732889413834, + -0.03599293902516365, + -0.08882499486207962, + -0.04179537668824196, + 0.07361875474452972, + -0.021717321127653122, + 0.1042993813753128, + -1.7002618449942348e-33, + 0.12630879878997803, + 0.004457555711269379, + 0.040530748665332794, + 0.06375191360712051, + 0.06874226033687592, + 0.08071362972259521, + -0.026904096826910973, + -0.025336705148220062, + -0.06159023568034172, + 0.058591194450855255, + 0.0952257588505745, + 0.02837901934981346, + -0.07597223669290543, + 0.030519437044858932, + 0.02195485308766365, + -0.046505894511938095, + 0.016218487173318863, + 0.014494582079350948, + -0.0691930279135704, + 0.010788783431053162, + -0.026794379577040672, + 0.08793123811483383, + -0.04861266538500786, + -0.03268573060631752, + 0.04543587565422058, + -0.09131301194429398, + 0.050553832203149796, + 0.01323721744120121, + -0.007096948567777872, + 0.011984669603407383, + 0.01226799190044403, + 0.040566954761743546, + 0.04943418875336647, + 0.0452297180891037, + -0.07660090178251266, + -0.001231605070643127, + -0.07532813400030136, + -0.013858731836080551, + 0.04889994114637375, + 0.051278356462717056, + -0.11157103627920151, + 0.03579172119498253, + 0.013767807744443417, + -0.029363801702857018, + 0.07178794592618942, + 0.04898505285382271, + -0.03749275952577591, + -0.08506681025028229, + -0.03651783615350723, + 0.06255882233381271, + -0.006191637367010117, + 0.04130445793271065, + 0.03208485245704651, + 0.08461463451385498, + 0.0012104142224416137, + 0.0044483826495707035, + 0.021049436181783676, + 0.05391089245676994, + -0.006765780504792929, + 0.05082333832979202, + 0.011140590533614159, + 0.03503773361444473, + 0.04437732696533203, + 0.01674131117761135, + 0.019208062440156937, + 0.046170685440301895, + -0.1152595728635788, + -0.01439423207193613, + 0.009535332210361958, + 0.05646162107586861, + -0.06426829099655151, + 0.07049590349197388, + 0.00961995031684637, + 0.06530527770519257, + 0.052664656192064285, + 0.012933479622006416, + 0.01984434388577938, + 0.021239018067717552, + 0.04447923228144646, + -0.024793704971671104, + 0.010871254839003086, + 0.011012516915798187, + -0.10767611861228943, + 0.02207939885556698, + 0.04610089212656021, + -0.02948182076215744, + -0.00876891054213047, + 0.004943820647895336, + -0.05916842445731163, + -0.03210826963186264, + -0.05133878067135811, + 0.0022734827362000942, + 0.000496166292577982, + -0.07025828212499619, + -0.12510819733142853, + -2.1708930488650155e-33, + 0.07574205845594406, + 0.006910280790179968, + -0.010252057574689388, + -0.001853091991506517, + -0.0913243219256401, + -0.002333340235054493, + -0.06833508610725403, + -0.036118894815444946, + -0.04885319992899895, + -0.03572823479771614, + 0.007848757319152355, + 0.10101168602705002, + 0.003496446879580617, + 0.025352496653795242, + 0.03209223598241806, + 0.0325760543346405, + 0.03989514708518982, + 0.015532057732343674, + -0.021875029429793358, + -0.025946108624339104, + -0.013637121766805649, + -0.02750370278954506, + -0.04700135812163353, + 0.08841202408075333, + 0.028265755623579025, + -0.0970795676112175, + 0.01630762405693531, + 0.010174736380577087, + 0.014503592625260353, + -0.0423160158097744, + -0.009772919118404388, + 0.07388070225715637, + -0.004844279959797859, + 0.021707557141780853, + -0.018038559705018997, + 0.012316379696130753, + 0.04172240197658539, + 0.01600329950451851, + -0.012855985201895237, + 0.03520265966653824, + 0.015767207369208336, + -0.0032294609118252993, + 0.03187984228134155, + 0.015515872277319431, + -0.08745593577623367, + 0.06370770931243896, + 0.0038995437789708376, + -0.10077762603759766, + -0.0148259736597538, + 0.037863839417696, + 0.023515818640589714, + -0.06396253407001495, + -0.0157978106290102, + 0.0063615161925554276, + -0.014544572681188583, + -0.12159331887960434, + 0.006495440844446421, + 0.015578111633658409, + -0.11915647238492966, + -0.020969273522496223, + 0.009550845250487328, + 0.0456598736345768, + -0.06902560591697693, + -0.055572450160980225, + -0.04076768085360527, + -0.0858192890882492, + 0.013214251026511192, + -0.05774005874991417, + 0.04115181788802147, + -0.04440724477171898, + 0.10992207378149033, + -0.059402018785476685, + -0.011489924974739552, + 0.049558766186237335, + 0.03260123357176781, + -0.047240324318408966, + 0.05939195305109024, + -0.08029346913099289, + -0.018232354894280434, + 0.08666443079710007, + 0.017984064295887947, + -0.007279377430677414, + 0.013131390325725079, + -0.008163711056113243, + -0.08223497122526169, + 0.0325545035302639, + -0.023152757436037064, + 0.04661094769835472, + -0.047534409910440445, + -0.011384853161871433, + -0.01910586841404438, + 0.05781078711152077, + 0.035906385630369186, + -0.049930207431316376, + -0.06839470565319061, + -2.241297636373929e-08, + -0.02613159827888012, + -0.11057504266500473, + -0.05429139360785484, + 0.021043429151177406, + -0.06642153114080429, + -0.04690678045153618, + -0.017695913091301918, + -0.07860098034143448, + -0.05177892744541168, + -0.04659184068441391, + 0.01579536870121956, + 0.05170011892914772, + -0.046133097261190414, + -0.06525831669569016, + 0.0674135833978653, + 0.0769902840256691, + -0.032410118728876114, + 0.012962165288627148, + 0.014129257760941982, + -0.01605103723704815, + -0.04004359617829323, + 0.08349233120679855, + 0.0497717559337616, + 0.00517548993229866, + -0.03042718581855297, + 0.040492944419384, + -0.03802589699625969, + 0.03464461863040924, + -0.009655438363552094, + 0.08368224650621414, + 0.06602353602647781, + -0.0010135304182767868, + -0.014906451106071472, + -0.017484012991189957, + 0.024504901841282845, + -0.08392273634672165, + 0.018526550382375717, + -0.000636918586678803, + -0.06303775310516357, + 0.07244495302438736, + 0.060248956084251404, + -0.014139545150101185, + -0.01382747944444418, + -0.007402775809168816, + -0.06279361993074417, + 0.010062279179692268, + 0.05955160781741142, + 0.05821730196475983, + -0.053061749786138535, + -0.22467562556266785, + -0.02135995216667652, + 0.06295096129179001, + -0.019786333665251732, + 0.03928013890981674, + -0.0907960832118988, + -0.013116680085659027, + -0.0030994208063930273, + 0.07905776053667068, + 0.008959842845797539, + 0.012829229235649109, + 0.049767933785915375, + -0.030451543629169464, + 0.028581073507666588, + 0.035454101860523224 + ], + "test-tube-bold||science,chemistry,experiment,vial": [ + -0.003954270388931036, + 0.020991118624806404, + -0.04721252620220184, + 0.010456342250108719, + 0.008569574914872646, + -0.060344379395246506, + 0.039609845727682114, + 0.08235043287277222, + -0.03785599023103714, + -0.021028880029916763, + -0.001656915876083076, + -0.02677902951836586, + 0.04445227235555649, + 0.023527873679995537, + -0.07269670814275742, + -0.017444299533963203, + 0.0070848106406629086, + -0.053008027374744415, + -0.029967527836561203, + -0.034300584346055984, + -0.0234933290630579, + 0.02715114876627922, + 0.07573137432336807, + 0.07496730983257294, + 0.023135589435696602, + 0.055445604026317596, + -0.016928458586335182, + 0.005485031753778458, + 0.010286880657076836, + -0.05655468627810478, + -0.00543490843847394, + 0.02974879927933216, + -0.006077718921005726, + -0.05805483087897301, + 0.10521377623081207, + -0.02801419235765934, + -0.06728091090917587, + -0.02413695678114891, + 0.04764730483293533, + 0.03338026627898216, + 0.09667116403579712, + -0.12888836860656738, + -0.01943441666662693, + 0.0378526896238327, + 0.041239190846681595, + -0.023526692762970924, + 0.026746900752186775, + -0.014775694347918034, + 0.052198681980371475, + 0.044848207384347916, + -0.03690379858016968, + -0.1260521411895752, + -0.08642638474702835, + 0.0029641035944223404, + -0.046793144196271896, + 0.018923485651612282, + -0.056068506091833115, + -0.030105898156762123, + 0.032597701996564865, + -0.00015229724522214383, + 0.0177699513733387, + -0.00760208535939455, + 0.03170361369848251, + 0.06246373429894447, + 0.06357966363430023, + -0.009595793671905994, + -0.0005542642320506275, + -0.04940979555249214, + 0.06742215156555176, + -0.017917094752192497, + 0.025009673088788986, + 0.034696996212005615, + -0.022679494693875313, + -0.004351491574198008, + -0.008023494854569435, + 0.0025065618101507425, + 0.05073223635554314, + -0.022560875862836838, + -0.0027867197059094906, + 0.06378286331892014, + -0.072907954454422, + -0.08325197547674179, + -0.011351805180311203, + 0.021235432475805283, + -0.03393891826272011, + 0.16121546924114227, + 0.056628771126270294, + -0.054877135902643204, + -0.08333276212215424, + -0.05708897486329079, + -0.04985884204506874, + 0.00540895527228713, + -0.04832521453499794, + 0.05644203722476959, + -0.05592088773846626, + 0.0015625725500285625, + 0.04653124511241913, + -0.011495916172862053, + 0.0030670813284814358, + 0.06572868674993515, + 0.04618033394217491, + -0.007300126366317272, + -0.038333307951688766, + 0.016893694177269936, + -0.1003439649939537, + -0.04655374214053154, + 0.01341086346656084, + -0.03863512724637985, + 0.04804397001862526, + 0.030179601162672043, + -0.003427250776439905, + -0.07594624906778336, + 0.03328905627131462, + 0.04562322050333023, + -0.03993678838014603, + -0.018462935462594032, + -0.035066522657871246, + 0.004222917836159468, + -0.012045655399560928, + 0.043594542890787125, + 0.033546216785907745, + -0.05088821426033974, + -0.02481229417026043, + -0.06340271234512329, + 0.0004638985265046358, + 0.04117546230554581, + 0.04065091162919998, + -4.154039078752572e-33, + -0.02007659338414669, + -0.023876355960965157, + 0.022218137979507446, + 0.08577977120876312, + 0.021526340395212173, + 0.05020427703857422, + -0.04925138130784035, + 0.0041518197394907475, + -0.06850290298461914, + 0.019690388813614845, + 0.01105375587940216, + 0.06775125861167908, + -0.02304559014737606, + 0.06384584307670593, + -0.08387407660484314, + -0.014744305983185768, + 0.013257415033876896, + -0.004756108392030001, + -0.04163125157356262, + 0.002083685016259551, + -0.04098933935165405, + -0.007917866110801697, + -0.05149297043681145, + -0.024562111124396324, + -0.026908038184046745, + -0.02637721225619316, + -0.0652189776301384, + 0.002514043590053916, + -0.03981097787618637, + 0.017108889296650887, + -0.005609265528619289, + 0.017954396083950996, + -0.02742920070886612, + 0.04676098749041557, + -0.05376395955681801, + -0.01728646084666252, + -0.06693705171346664, + -0.005292151588946581, + 0.002111364621669054, + 0.03682605177164078, + -0.0469597689807415, + 0.03649609163403511, + 0.07646383345127106, + 0.0928984135389328, + 0.05138839781284332, + 0.07617507874965668, + -0.0802258551120758, + -0.029498692601919174, + 0.08512086421251297, + 0.03016633354127407, + -0.034038372337818146, + 0.01784009486436844, + 0.01921301893889904, + -0.007819163613021374, + 0.05993944779038429, + 0.037674788385629654, + -0.015211096964776516, + 0.06681248545646667, + -0.029947781935334206, + -0.006134305149316788, + -0.03896983712911606, + 0.08681110292673111, + -0.00569581612944603, + 0.07956096529960632, + -0.038645535707473755, + 0.056691817939281464, + -0.1039024218916893, + 0.005078240297734737, + 0.11185302585363388, + -0.017708562314510345, + -0.07183536887168884, + 0.11866883188486099, + 0.0034223527181893587, + -0.012328419834375381, + 0.027154099196195602, + -0.026717323809862137, + 0.002483825199306011, + 0.034949708729982376, + 0.10120753943920135, + -0.15102973580360413, + 0.036208078265190125, + -0.09475737810134888, + -0.029260046780109406, + -0.07864581048488617, + -0.07869649678468704, + -0.009216997772455215, + -0.024720674380660057, + -0.05094592273235321, + 0.03762210160493851, + 0.009670406579971313, + 0.011974971741437912, + -0.0034102192148566246, + -0.07023897767066956, + -0.016490241512656212, + 0.003376261331140995, + 1.1616422519238007e-33, + 0.029046304523944855, + 0.004479704890400171, + -0.03454592451453209, + 0.055548034608364105, + 0.051855187863111496, + 0.012274876236915588, + 0.09198929369449615, + -0.09494571387767792, + 0.02580001763999462, + 0.0718291699886322, + 0.08363673090934753, + 0.03362333029508591, + -0.001604491495527327, + -0.023590615019202232, + -0.07364222407341003, + -0.005230853334069252, + 0.007063058204948902, + -0.048537477850914, + 0.014345226809382439, + 0.011929580941796303, + -0.09386778622865677, + 0.06025926023721695, + -0.051562827080488205, + -0.006639793980866671, + -0.029918253421783447, + 0.013633700087666512, + 0.031061187386512756, + -0.11663620918989182, + 0.020068833604454994, + 0.012571299448609352, + -0.07585838437080383, + 0.024369537830352783, + 0.03970642015337944, + 0.026857299730181694, + -0.025960711762309074, + 0.009550945833325386, + 0.14901871979236603, + -0.06481409817934036, + 0.05781349912285805, + -0.06500815600156784, + 0.007468003313988447, + 0.06072299927473068, + -0.030369462445378304, + -0.07772012054920197, + -0.011243078857660294, + 0.09703348577022552, + 0.04334169253706932, + -0.05023084580898285, + 0.020186971873044968, + 0.03494321182370186, + 0.047770578414201736, + -0.007513968273997307, + -0.01659652777016163, + 0.02492409013211727, + 0.004191650077700615, + 0.019568132236599922, + -0.05854795128107071, + -0.0014697839505970478, + -0.02632947266101837, + 0.02333187125623226, + -0.00907213892787695, + -0.01629788614809513, + -0.02213960886001587, + 0.02487117238342762, + -0.04274298995733261, + -0.06489541381597519, + 0.035248804837465286, + 0.0458885133266449, + 0.10736558586359024, + -0.041600216180086136, + 0.07120178639888763, + 0.011351398192346096, + 0.06916036456823349, + -0.03211453557014465, + 0.0902593657374382, + -0.08541306853294373, + -0.021397672593593597, + -0.04507248103618622, + 0.02469676174223423, + 0.011355411261320114, + -0.07219907641410828, + 0.019106503576040268, + -0.004529254976660013, + 0.06370990723371506, + 0.0458361990749836, + -0.0480722077190876, + 0.0033433670178055763, + 0.04660703241825104, + -0.07137498259544373, + 0.013932748697698116, + 0.057386364787817, + 0.0500153973698616, + -0.05065835267305374, + -0.01646447367966175, + 0.1343681663274765, + -1.887027067937197e-08, + 0.02593657746911049, + -0.01889536902308464, + -0.03788868710398674, + -0.02060048095881939, + 0.016545863822102547, + -0.05167771875858307, + -0.024327486753463745, + -0.04831225797533989, + -0.02702820487320423, + -0.05103345587849617, + -0.016988981515169144, + 0.1044897809624672, + -0.047025568783283234, + -0.018765704706311226, + 0.04675080627202988, + 0.03333740308880806, + -0.1513858437538147, + -0.01995699852705002, + -0.0233962070196867, + -0.06690829992294312, + -0.0678698718547821, + 0.029607456177473068, + 0.0838937759399414, + -0.0327332504093647, + -0.058487869799137115, + 0.08145605772733688, + 0.03032180294394493, + 0.040851905941963196, + 0.020960865542292595, + 0.010501318611204624, + 0.00021660116908606142, + 0.004297183360904455, + 0.004118279553949833, + -0.09040539711713791, + -0.04432319477200508, + -0.025181744247674942, + -0.01616845093667507, + 0.05977775901556015, + 0.05918709561228752, + 0.12154842913150787, + -0.08029402792453766, + -0.11560908704996109, + 0.014119313098490238, + -0.016079040244221687, + -0.033123765140771866, + 0.02440544031560421, + -0.005211877636611462, + 0.02631557546555996, + -0.0815957561135292, + -0.08830816298723221, + 0.040256477892398834, + -0.03297597914934158, + 0.034786198288202286, + -0.00018772139446809888, + -0.045692939311265945, + 0.0217771977186203, + 0.022067349404096603, + 0.059736717492341995, + -0.10750558227300644, + 0.010018596425652504, + 0.08950615674257278, + 0.04472401365637779, + 0.07917022705078125, + -0.0851484164595604 + ], + "text-a-underline-bold||typography,typeface,print,font,underscore,emphasis": [ + -0.032640986144542694, + 0.005475234240293503, + -0.04883906617760658, + 0.06913646310567856, + 0.0035503937397152185, + -0.03166157752275467, + 0.059429656714200974, + -0.02158574014902115, + -0.032288238406181335, + -0.015059785917401314, + 0.034416649490594864, + 0.036122940480709076, + 0.06946612894535065, + -0.053839415311813354, + 0.043293777853250504, + 0.046887896955013275, + 0.051777031272649765, + -0.03841907158493996, + 0.022394122555851936, + -0.010714584030210972, + 0.020633069798350334, + 0.0457649789750576, + 0.015935875475406647, + 0.0007813494303263724, + 0.06598819047212601, + 0.0015094263944774866, + -0.009657296352088451, + 0.050479162484407425, + -0.02013120800256729, + -0.07038816809654236, + -0.05417035520076752, + -0.0444854274392128, + 0.12741008400917053, + 0.010917721316218376, + 0.048102933913469315, + 0.03206951543688774, + -0.015692543238401413, + 0.008177520707249641, + 0.03799652308225632, + 0.05042527988553047, + -0.010816166177392006, + -0.09739859402179718, + -0.04323412850499153, + 0.08643246442079544, + 0.01696854457259178, + -0.0564580075442791, + -0.12369443476200104, + -0.00819155853241682, + 0.00201987661421299, + -0.009942294098436832, + -0.060415565967559814, + -0.027182303369045258, + -0.12271124124526978, + -0.031119024381041527, + -0.042858146131038666, + 0.014598898589611053, + -0.020164186134934425, + -0.011997521854937077, + -0.01433703862130642, + -0.06568712741136551, + -0.03328106924891472, + 0.0171832088381052, + -0.017505526542663574, + 0.05453247204422951, + 0.03412569314241409, + 0.03405611217021942, + 0.013879679143428802, + 0.03608126565814018, + -0.03562755510210991, + 0.06304840743541718, + -0.001348574529401958, + -0.02809486724436283, + -0.01733853854238987, + 0.036902252584695816, + -0.018450096249580383, + -0.04902816563844681, + 0.004051091615110636, + 0.03769991174340248, + -0.006573165766894817, + -0.020102906972169876, + -0.02012493833899498, + 0.02850731648504734, + 0.0003662333474494517, + 0.06586569547653198, + 0.052984870970249176, + 0.0706033706665039, + -0.014058222062885761, + -0.12074471265077591, + -0.024022525176405907, + 0.040406547486782074, + -0.028388360515236855, + -0.08308675140142441, + 0.05013522878289223, + 0.05424131453037262, + -0.13938458263874054, + 0.017700903117656708, + 0.06950195878744125, + 0.002039117505773902, + -0.007788792718201876, + 0.0931854322552681, + -0.008353297598659992, + 0.04564866051077843, + 0.03177104890346527, + 0.031256552785634995, + -0.08275274187326431, + -0.03375004604458809, + 0.02322733961045742, + -0.08509984612464905, + 0.002103904727846384, + -0.012023412622511387, + 0.024377765133976936, + -0.08525249361991882, + -0.06753436475992203, + -0.04148397967219353, + -0.02404768206179142, + -0.04311618581414223, + -0.002781477989628911, + -0.02360338531434536, + 0.13512632250785828, + 0.05525156483054161, + -0.030493302270770073, + -0.019062750041484833, + -0.05875459313392639, + -0.02497326023876667, + -0.054019950330257416, + 0.022004902362823486, + 0.042123835533857346, + -5.49806671788164e-34, + 0.03914405778050423, + 0.0309795793145895, + -0.037017423659563065, + 0.10528486222028732, + 0.017551930621266365, + 0.0471947006881237, + -0.1211368516087532, + -0.055375825613737106, + -0.07965189218521118, + 0.04651996120810509, + 0.04683755338191986, + 0.008905061520636082, + -0.046539220958948135, + 0.052283916622400284, + -0.005975211504846811, + -0.015520897693932056, + 0.07741154730319977, + -0.010944950394332409, + -0.07945193350315094, + 0.03262509033083916, + -0.07039006054401398, + 0.01529006939381361, + 0.005098659545183182, + -0.0029239701107144356, + 0.0091472202911973, + -0.01747858338057995, + 0.03040156699717045, + -0.04860711470246315, + -0.10428140312433243, + 0.004321649670600891, + 0.021728307008743286, + -0.051922984421253204, + 0.08550617098808289, + -3.572869172785431e-05, + -0.0755201056599617, + 0.05564006417989731, + -0.020414505153894424, + 0.0015913499519228935, + 0.02900565229356289, + 0.00814907718449831, + -0.150349423289299, + 0.03126627951860428, + 0.01674414984881878, + -0.06133297085762024, + 0.03804696723818779, + 0.08935444802045822, + -0.023321283981204033, + -0.015296545810997486, + 0.03575470298528671, + 0.04007834196090698, + 0.007116327993571758, + -0.037710316479206085, + 0.002464321441948414, + 0.07629380375146866, + 0.022169487550854683, + 0.015703190118074417, + -0.04047257825732231, + 0.06879997998476028, + 0.0246119424700737, + -0.03315108269453049, + 0.0690855160355568, + -0.03470519185066223, + 0.048661693930625916, + -0.0031063484493643045, + -0.05344615876674652, + 0.015343619510531425, + -0.06346628069877625, + 0.007547996938228607, + 0.08012878149747849, + 0.04381248354911804, + -0.007672034669667482, + 0.026557790115475655, + -0.028955820947885513, + 0.1050138995051384, + -0.03827761486172676, + 0.07302529364824295, + -0.04648879915475845, + -0.07810845226049423, + 0.06614673882722855, + -0.006807797122746706, + -0.09551750868558884, + 0.0062445662915706635, + -0.024297351017594337, + 0.0223334189504385, + -0.01336391270160675, + 0.04270418733358383, + -0.013048592023551464, + -0.10112995654344559, + 0.038611460477113724, + 0.026291990652680397, + -0.11238212883472443, + -0.011264363303780556, + -0.016592256724834442, + -0.13185948133468628, + -0.002727164886891842, + -2.8128898395795848e-33, + 0.060078173875808716, + -0.009360778145492077, + -0.04338996484875679, + -0.029077503830194473, + -0.05217143893241882, + 0.08887020498514175, + 0.016736643388867378, + 0.02483174577355385, + 0.001043808995746076, + 0.10297831147909164, + 0.025832930579781532, + 0.027882838621735573, + -0.053448501974344254, + -0.11282957345247269, + -0.0024994879495352507, + -0.015091544948518276, + 0.0008897126535885036, + 0.05084110051393509, + 0.027012363076210022, + 0.02638067677617073, + -0.025481797754764557, + -0.07228465378284454, + -0.029458239674568176, + 0.07026791572570801, + 0.04440651834011078, + -0.005713490303605795, + -0.0006077212165109813, + 0.013525724411010742, + -0.08186168223619461, + -0.005498029757291079, + 0.01090335939079523, + 0.03977188095450401, + 0.06112322211265564, + 0.04353778064250946, + -0.08804455399513245, + 0.05096716433763504, + 0.012676716782152653, + 0.019948536530137062, + -0.03129219263792038, + 0.0247108843177557, + 0.028769899159669876, + 0.023242779076099396, + 0.048978667706251144, + 0.03295578062534332, + -0.026231367141008377, + 0.02457273006439209, + -0.11850617825984955, + -0.0842328816652298, + 0.044604163616895676, + 0.03872618451714516, + 0.010863960720598698, + -0.04467432573437691, + 0.037184443324804306, + 0.02408258058130741, + -0.11884043365716934, + -0.004441773984581232, + -0.004529469646513462, + 0.016223028302192688, + -0.11333440989255905, + 0.029743095859885216, + 0.033161405473947525, + -0.00824250653386116, + -0.06496870517730713, + 0.033318791538476944, + 0.022941922768950462, + -0.07144279778003693, + 0.021444886922836304, + -0.03915031626820564, + 0.00360085372813046, + -0.04350998252630234, + 0.015112251043319702, + -0.0028289337642490864, + -0.057272884994745255, + 0.028798256069421768, + -0.01996784098446369, + -0.05299483984708786, + 0.026906544342637062, + 0.008352255448698997, + -0.006692110560834408, + 0.004591146484017372, + -0.006070199888199568, + 0.02091718278825283, + -0.06497160345315933, + 0.05628645420074463, + -0.07402847707271576, + 0.07297810167074203, + -0.016118735074996948, + 0.03397795557975769, + -0.01906329207122326, + -0.0026621981523931026, + -0.008975416421890259, + 0.0700133889913559, + -0.024999801069498062, + -0.022108376026153564, + -0.09444522857666016, + -2.4877433446590658e-08, + 0.00988249946385622, + -0.10046875476837158, + 0.012699894607067108, + -0.044754162430763245, + 0.00016987451817840338, + 0.028495363891124725, + -0.018973208963871002, + -0.12529899179935455, + -0.014751473441720009, + -0.09072984755039215, + 0.006339140236377716, + 0.03493081033229828, + -0.06463135033845901, + -0.06869073212146759, + 0.06581226736307144, + 0.009017514064908028, + 0.018378902226686478, + 0.07945912331342697, + -0.05715528875589371, + -0.026821967214345932, + 0.013009076938033104, + 0.049489423632621765, + -0.005224199034273624, + 0.025546465069055557, + 0.04508361965417862, + 0.003575553884729743, + -0.10764092206954956, + 0.06708649545907974, + 0.07312307506799698, + 0.09963750094175339, + 0.044022075831890106, + 0.049775511026382446, + 0.02432931587100029, + -0.056713055819272995, + -0.014293186366558075, + -0.021373646333813667, + 0.08491290360689163, + -0.07516849786043167, + 0.011254913173615932, + 0.13806602358818054, + -0.031550075858831406, + -0.026742756366729736, + -0.03132675588130951, + -0.03116302564740181, + 0.013158648274838924, + 0.0025849512312561274, + 0.020413856953382492, + -0.004727478139102459, + -0.04484669491648674, + -0.057273220270872116, + 0.027793824672698975, + 0.018750404939055443, + 0.05207371711730957, + 0.06284338980913162, + -0.11691372096538544, + -0.01045276690274477, + 0.020725464448332787, + 0.09796904772520065, + -0.039494287222623825, + -0.018533572554588318, + 0.1048167422413826, + -0.04434732720255852, + 0.08577542006969452, + -0.002072102390229702 + ], + "text-aa-bold||typography,typeface,print,font": [ + 0.006734898313879967, + 0.01699995808303356, + -0.08673345297574997, + 0.04467008635401726, + -0.030667446553707123, + 0.01517779566347599, + 0.06082994118332863, + -0.03290841728448868, + -0.018106713891029358, + 0.06855739653110504, + 0.0615830272436142, + 0.02761845849454403, + 0.03471476584672928, + -0.0330207459628582, + 0.05280981585383415, + 0.006516833323985338, + 0.018555931746959686, + -0.036948759108781815, + 0.04545829817652702, + -0.013169647194445133, + -0.028008198365569115, + 0.08712295442819595, + 0.08956379443407059, + 0.014183501712977886, + 0.043097637593746185, + 0.05226849392056465, + -0.020994964987039566, + 0.03582970052957535, + 0.03449942544102669, + -0.06601424515247345, + -0.03502124920487404, + 0.007278995122760534, + 0.10207805037498474, + 0.0396115779876709, + 0.020792119204998016, + -0.01374377217143774, + -0.024983331561088562, + 0.03205305337905884, + 0.027645669877529144, + 0.004259501583874226, + 0.04167572408914566, + -0.09516787528991699, + -0.010518910363316536, + 0.08997172117233276, + -0.049528270959854126, + -0.048063185065984726, + -0.11630751192569733, + 0.04669816419482231, + -0.004611334763467312, + 0.020628638565540314, + -0.013319442048668861, + -0.09251914173364639, + -0.06316898763179779, + -0.03794599696993828, + 0.025284461677074432, + 0.012048796750605106, + -0.021668503060936928, + 0.03901105746626854, + 0.00017218865104950964, + -0.05350575968623161, + -0.025844762101769447, + 0.02980359084904194, + 0.0010547469137236476, + 0.05500711873173714, + 0.0500640906393528, + 0.03047802671790123, + 0.019883906468749046, + 0.020153453573584557, + -0.08798903971910477, + 0.014870119281113148, + 0.027781734243035316, + -0.03148937597870827, + -0.0034787359181791544, + -0.02087128534913063, + -0.007514660246670246, + 0.03457842022180557, + 0.04627636447548866, + -0.047011252492666245, + -0.02070736326277256, + 0.012425809167325497, + -0.06353425979614258, + 0.022930042818188667, + -0.005958224646747112, + 0.10128794610500336, + 0.01896488107740879, + 0.0640229806303978, + -0.024116618558764458, + -0.11744090169668198, + -0.02868354693055153, + 3.824326631729491e-05, + -0.04006865248084068, + -0.025211744010448456, + 0.04319629818201065, + -0.018549887463450432, + -0.10804282128810883, + 0.01971723698079586, + -0.007563088089227676, + -0.004476049914956093, + -0.05240156129002571, + 0.07031237334012985, + 0.03437569737434387, + 0.044566381722688675, + 0.029837874695658684, + 0.004351999145001173, + -0.08791304379701614, + -0.03707689791917801, + 0.016050316393375397, + -0.07097029685974121, + 0.017145099118351936, + 0.0075166053138673306, + 0.07301175594329834, + -0.07403815537691116, + -0.08448944240808487, + -0.061875563114881516, + -0.013475913554430008, + -0.07150498032569885, + -0.022853083908557892, + -0.016747891902923584, + 0.1173127293586731, + 0.027508661150932312, + -0.08338237553834915, + -0.04354449734091759, + -0.038645096123218536, + -0.07029593735933304, + -0.004473380744457245, + 0.01633182354271412, + 0.08087731152772903, + -8.081062647712514e-34, + 0.05988322198390961, + 0.07940855622291565, + -0.06201789528131485, + 0.12366092205047607, + 0.043516457080841064, + 0.01732386089861393, + -0.07368187606334686, + -0.04823188856244087, + -0.055099014192819595, + -0.005011707544326782, + 0.03774848207831383, + 0.05058387294411659, + -0.029595067724585533, + 0.04350306838750839, + 0.04839230701327324, + 0.007785438094288111, + 0.011982565745711327, + -0.027910800650715828, + -0.08952736109495163, + 0.036515239626169205, + -0.04471622779965401, + -0.01632886379957199, + -0.018164226785302162, + -0.018448226153850555, + -0.03698492422699928, + 0.018829206004738808, + 0.06555547565221786, + 0.01130681112408638, + -0.09280698746442795, + 0.009008117020130157, + 0.0019269741605967283, + 0.07079818844795227, + 0.03592713922262192, + -0.02550375834107399, + -0.020132191479206085, + -0.03174480423331261, + -0.04336203634738922, + 0.015793992206454277, + 0.027812974527478218, + -0.007968490943312645, + -0.11125725507736206, + 0.037550367414951324, + 0.04205155000090599, + -0.034202732145786285, + 0.05023416876792908, + 0.14051170647144318, + -0.022677574306726456, + -0.026476921513676643, + 0.03791915252804756, + 0.049031443893909454, + 0.035128992050886154, + -0.025843260809779167, + -0.004245648626238108, + 0.05483930930495262, + 0.017407584935426712, + -0.011332838796079159, + -0.04621904715895653, + 0.046342283487319946, + 0.05756880342960358, + 0.005925311706960201, + 0.019292300567030907, + -0.005194456782191992, + 0.04651999473571777, + 0.0015756483189761639, + -0.07785074412822723, + 0.08174692094326019, + -0.032829735428094864, + -0.04418642073869705, + 0.08009845018386841, + -0.025616083294153214, + 0.06225742772221565, + 0.027375241741538048, + -0.0009395626839250326, + 0.09125687181949615, + -0.04963857680559158, + 0.07320760935544968, + 0.04113247990608215, + -0.06719790399074554, + 0.017996901646256447, + -0.054316334426403046, + -0.08133617043495178, + 0.0025575861800462008, + -0.02631523460149765, + 0.024615898728370667, + 0.0022779032588005066, + -0.006917690392583609, + -0.04287288710474968, + -0.10810980945825577, + 0.04441019520163536, + 0.03131818771362305, + -0.08793413639068604, + 0.0008741628262214363, + -0.02773757092654705, + -0.10873296856880188, + -0.0671839788556099, + -1.6646496926230966e-33, + 0.03104609064757824, + -0.011737978085875511, + -0.0829053670167923, + -0.10037775337696075, + -0.029390018433332443, + 0.007223098073154688, + 0.05066946521401405, + 0.06190919131040573, + 0.05194549635052681, + 0.0420694425702095, + 0.06799500435590744, + 0.04201875999569893, + -0.031272195279598236, + -0.0767747312784195, + -0.021496107801795006, + -0.034919846802949905, + 0.06859204173088074, + 0.033388301730155945, + 0.01575353555381298, + -0.0053754025138914585, + -0.007826698012650013, + -0.05419081449508667, + -0.0008391765877604485, + 0.08429577946662903, + 0.05409970507025719, + 0.020689677447080612, + 0.0015092432731762528, + 0.03860887885093689, + -0.07159052044153214, + -0.022342728450894356, + 0.03526315465569496, + 0.022683685645461082, + 0.07917395979166031, + 0.0882217139005661, + -0.10544345527887344, + 0.027427982538938522, + 0.012547153048217297, + -0.012769395485520363, + -0.023032307624816895, + 0.015441606752574444, + 0.05560779199004173, + 0.006553881801664829, + 0.00026455390616320074, + 0.032482124865055084, + -0.055930495262145996, + 0.0007879532058723271, + -0.09124701470136642, + -0.108317531645298, + 0.035672880709171295, + 0.05311824381351471, + 0.02428063005208969, + -0.022950302809476852, + 0.03952789306640625, + 0.011943827383220196, + -0.1204288899898529, + -0.03441169112920761, + 0.017651328817009926, + -0.0016480336198583245, + -0.11329662054777145, + 0.07401132583618164, + 0.017279453575611115, + 0.033290039747953415, + -0.019987568259239197, + 0.007889055646955967, + 0.018719622865319252, + -0.08282186090946198, + 0.041240379214286804, + -0.051919177174568176, + -0.010010656900703907, + 0.005388224963098764, + 0.021761579439044, + 0.011212063021957874, + 0.01773020066320896, + 0.0759611576795578, + -0.01113953348249197, + -0.03563243895769119, + 0.04183770716190338, + 0.04203085973858833, + -0.023414477705955505, + 0.007508930750191212, + -0.011488649994134903, + 0.04698050767183304, + -0.07095591723918915, + 0.07904743403196335, + -0.048769619315862656, + 0.06601663678884506, + -0.028858155012130737, + -0.020060675218701363, + -0.006055233534425497, + 0.01787904091179371, + -0.04141440987586975, + 0.04623865708708763, + 0.0041823661886155605, + 0.018402915447950363, + -0.05325451120734215, + -2.0007306034131034e-08, + 0.003951112274080515, + -0.07903780043125153, + -0.013190269470214844, + -0.005337314680218697, + -0.040416914969682693, + -0.022958213463425636, + -0.030995482578873634, + -0.1365998536348343, + -0.020766546949744225, + -0.08844401687383652, + 0.006351697724312544, + 0.0114310747012496, + -0.07159871608018875, + -0.04469919577240944, + 0.05014951899647713, + 0.02217351645231247, + -0.0036193702835589647, + -0.009395245462656021, + -0.08800029009580612, + -0.13717542588710785, + -0.001189752365462482, + 0.0003458961728028953, + 0.0592394657433033, + -0.0020595991518348455, + 0.0077603654935956, + 0.019333316013216972, + -0.11186213791370392, + -0.009377328678965569, + 0.036833882331848145, + 0.08415735512971878, + 0.01816214807331562, + 0.04482928290963173, + 0.030104735866189003, + -0.025663426145911217, + -0.04256795719265938, + -0.037584029138088226, + 0.05535145103931427, + -0.04577108100056648, + 0.019773060455918312, + 0.16163761913776398, + -0.048383817076683044, + -0.02763982303440571, + -0.03303435817360878, + -0.018311193212866783, + 0.0019117562333121896, + 0.011907818727195263, + 0.08631359785795212, + -0.015659023076295853, + -0.034449800848960876, + -0.060490623116493225, + 0.025000499561429024, + 0.025597766041755676, + -0.012861338444054127, + 0.09062311798334122, + -0.12051627784967422, + -0.09787032753229141, + 0.018493587151169777, + 0.06413347274065018, + -0.007164821494370699, + -0.0027441929560154676, + 0.1317141354084015, + -0.043538887053728104, + 0.07414465397596359, + -0.003567578736692667 + ], + "text-align-center-bold||*updated*,typography,print,font,alignment,centered": [ + -0.017606180161237717, + 0.004705356899648905, + -0.09409945458173752, + 0.040618155151605606, + 0.048086218535900116, + 0.016810504719614983, + -0.013367021456360817, + -0.030701030045747757, + -0.0033189477398991585, + 0.07080638408660889, + 0.04003126174211502, + 0.0558868907392025, + 0.04058274254202843, + -0.052394796162843704, + -0.01671718619763851, + 0.020333005115389824, + -0.042771317064762115, + 0.01989852823317051, + 0.02002292312681675, + 0.05559282377362251, + -0.11652683466672897, + 0.016575442627072334, + 0.03827022388577461, + 0.08683526515960693, + -0.006232139654457569, + 0.12596483528614044, + 0.0030089549254626036, + 0.03128636255860329, + -0.026443172246217728, + -0.11312691867351532, + -0.06607132405042648, + -0.0017036012141034007, + 0.15283235907554626, + 0.010970448143780231, + 0.028086403384804726, + -0.003007835941389203, + -0.0220031775534153, + -0.037030450999736786, + 0.052554063498973846, + -0.0038777890149503946, + 0.019414491951465607, + -0.13730111718177795, + 0.00522230239585042, + 0.01662702113389969, + -0.0131349703297019, + 0.024097958579659462, + -0.1438719928264618, + 0.03895638883113861, + 0.039920613169670105, + -0.01315927691757679, + -0.10097233951091766, + -0.10370992124080658, + -0.09581119567155838, + -0.022253254428505898, + 0.046249859035015106, + 0.053057316690683365, + -0.015553544275462627, + -0.010610625147819519, + 0.11758722364902496, + -0.12491655349731445, + 0.10266449302434921, + 0.049138009548187256, + 0.032700181007385254, + 0.12377980351448059, + 0.04548710212111473, + 0.018611131235957146, + 0.04479074850678444, + 0.033604882657527924, + -0.03091445565223694, + -0.006655030883848667, + -0.0374312549829483, + 0.011939709074795246, + 0.03149302303791046, + -0.047647420316934586, + -0.03057965636253357, + -0.004448614548891783, + 0.0018933947430923581, + -0.014574464410543442, + -0.024519536644220352, + 0.006549064069986343, + -0.06297192722558975, + 0.044055819511413574, + 0.048041608184576035, + 0.057848647236824036, + 0.023591000586748123, + 0.01986573450267315, + -0.03339748457074165, + -0.0689883753657341, + -0.01639179140329361, + -0.04120640456676483, + 0.0039612529799342155, + -0.044656168669462204, + -0.04074918478727341, + -0.01722220703959465, + -0.12256384640932083, + 0.07220921665430069, + -0.038477856665849686, + -0.01564747840166092, + -0.05013420432806015, + 0.08390562981367111, + 0.028609348461031914, + 0.10023758560419083, + -0.0005089011392556131, + -0.060113273561000824, + -0.008231225423514843, + -0.05370433256030083, + -0.017165619879961014, + -0.003768094116821885, + -0.029023051261901855, + -0.01705281250178814, + -0.015414031222462654, + -0.06676328182220459, + -0.09427205473184586, + -0.05237105116248131, + -0.0748777836561203, + -0.029253726825118065, + 0.022413598373532295, + -0.006527275312691927, + 0.09523235261440277, + -0.002230260754004121, + 0.015027423389256, + -0.009431428276002407, + -0.07887338101863861, + -0.0673246905207634, + -0.04952183738350868, + 0.03841390460729599, + 0.06271569430828094, + -1.5599845939808417e-33, + 0.001567413448356092, + 0.025877755135297775, + 0.010036763735115528, + 0.1286279410123825, + -0.012956277467310429, + 0.032914187759160995, + -0.09141194820404053, + -0.03425491228699684, + -0.012491871602833271, + -0.024559643119573593, + 0.05559718608856201, + 0.09375329315662384, + -0.013387784361839294, + -0.004714771639555693, + 0.001975530292838812, + -0.0565778985619545, + -0.02507471665740013, + 0.03131626173853874, + -0.11531166732311249, + 0.03128507733345032, + -0.020389515906572342, + 0.033294759690761566, + 0.012211392633616924, + -0.0372004397213459, + -0.0058709559962153435, + -0.021186163648962975, + 0.023743396624922752, + 0.031830158084630966, + -0.1862805187702179, + -0.02136414311826229, + 0.04502883553504944, + 0.042052168399095535, + 0.08366039395332336, + -0.003423427464440465, + -0.01447228156030178, + 0.026777636259794235, + -0.03082231990993023, + -0.057353660464286804, + -0.00027106766356155276, + 0.044638898223638535, + -0.12175820767879486, + 0.008389747701585293, + -0.006858746986836195, + -0.08380186557769775, + 0.11035652458667755, + 0.1251448690891266, + -0.057710081338882446, + -0.03918857499957085, + 0.10647064447402954, + -0.060617174953222275, + -0.018165385350584984, + 0.023765403777360916, + -0.06406866014003754, + -0.007739505264908075, + -0.026453910395503044, + 0.02856810763478279, + 0.023441776633262634, + 0.038033973425626755, + 0.042232293635606766, + -0.02196229249238968, + -0.003556162351742387, + -0.07096868753433228, + 0.002872595563530922, + -0.06590647995471954, + -0.013792325742542744, + 0.005800480023026466, + -0.030297700315713882, + -0.0064465817995369434, + 0.10185003280639648, + 0.013069422915577888, + 0.0038124199490994215, + 0.01225454080849886, + 0.006550545804202557, + 0.1331453025341034, + -0.02905009686946869, + 0.049233194440603256, + 0.008933975361287594, + -0.05082843825221062, + -0.04538290947675705, + -0.031156135722994804, + -0.006953778211027384, + 0.018003525212407112, + -0.014114500023424625, + 0.04717252030968666, + -0.0037310589104890823, + -0.014484627172350883, + -0.01706675812602043, + -0.028260769322514534, + 0.02058500610291958, + 0.0664287880063057, + -0.06892414391040802, + -0.018796546384692192, + 0.015641916543245316, + -0.0551808662712574, + -0.04435556381940842, + -2.017487546333853e-33, + 0.05131777748465538, + 0.0011277078883722425, + -0.05989289656281471, + 0.024532580748200417, + -0.03156987205147743, + 0.09477882087230682, + 0.054271943867206573, + 0.013689376413822174, + 0.029995456337928772, + 0.06518090516328812, + 0.05239458009600639, + 0.0028166386764496565, + -0.052553754299879074, + -0.032727908343076706, + -0.05775396525859833, + 0.07840947806835175, + 0.07153461128473282, + 0.011310471221804619, + -0.07300952821969986, + -0.0019427452934905887, + 0.00013595730706583709, + -0.02822447568178177, + -0.030928967520594597, + 0.06499677896499634, + 0.06449194252490997, + 0.020277153700590134, + -0.03111082874238491, + 0.00840378925204277, + -0.03559257835149765, + 0.005910701584070921, + 0.005360642913728952, + -0.05093615874648094, + 0.03560404106974602, + 0.04926026612520218, + -0.012148473411798477, + -0.013018050231039524, + -0.00328511418774724, + 0.02575465478003025, + -0.006011315155774355, + 0.04633625969290733, + 0.03891964629292488, + 0.039421942085027695, + -0.012586011551320553, + 0.01976107805967331, + 0.031553130596876144, + 0.0022394966799765825, + -0.039974406361579895, + -0.08192119002342224, + -0.06480631232261658, + 0.08608724176883698, + 0.027304846793413162, + 0.005203779321163893, + 0.00840734038501978, + -0.0456002913415432, + -0.03217752277851105, + 0.05025911331176758, + -0.0338372178375721, + 0.005413504783064127, + -0.10053425282239914, + 0.04165541008114815, + -7.992783503141254e-05, + 0.03949853777885437, + 0.01599198207259178, + 0.00032863201340660453, + -0.0087076211348176, + -0.0008718507597222924, + 0.03881531581282616, + 0.02093217335641384, + -0.060697078704833984, + 0.014998230151832104, + 0.03300333768129349, + -0.04637042433023453, + -0.042605746537446976, + 0.006839062552899122, + -0.024271294474601746, + -0.06820254772901535, + 0.043808382004499435, + -0.0015801165718585253, + -0.01238091941922903, + -0.0005896752118133008, + 0.02217661775648594, + 0.037672169506549835, + -0.02281634882092476, + 0.01645740307867527, + -0.10191308706998825, + 0.06078525260090828, + 0.046423740684986115, + -0.015656454488635063, + 0.03906640037894249, + -0.050936222076416016, + -0.0868610069155693, + -0.004027160350233316, + 0.0009256303892470896, + -0.04045797139406204, + -0.05161254480481148, + -2.403834464814736e-08, + -0.025631267577409744, + -0.12126955389976501, + -0.03986113518476486, + 0.06509733200073242, + -0.009492834098637104, + -0.051766641438007355, + -0.004164865706115961, + -0.09518584609031677, + -0.040750060230493546, + -0.03551192954182625, + 0.0060210335068404675, + 0.020412862300872803, + -0.06976333260536194, + -0.09416398406028748, + 0.04561428725719452, + 0.04021407663822174, + -0.08236633241176605, + 0.032878290861845016, + -0.06105464696884155, + -0.07467147707939148, + 0.019898729398846626, + 0.05089963600039482, + 0.02631266415119171, + -0.021934613585472107, + 0.06356354057788849, + -0.00041686854092404246, + -0.0759734958410263, + 0.05303730443120003, + 0.04883401468396187, + -0.027928514406085014, + 0.0381988026201725, + 0.010375866666436195, + 0.04402219131588936, + -0.013015632517635822, + -0.07212012261152267, + -0.06348001211881638, + 0.02952766977250576, + 0.009634044952690601, + 0.051956646144390106, + 0.09959502518177032, + -0.025862108916044235, + 0.04197555407881737, + 0.023592142388224602, + -0.007437246851623058, + -0.03973979502916336, + -0.01705009862780571, + 0.017313137650489807, + 0.0410500094294548, + -0.042886003851890564, + -0.09602361917495728, + 0.02134963870048523, + 0.040426094084978104, + 0.05031841620802879, + 0.06339391320943832, + -0.07007312774658203, + -0.0229193065315485, + 0.033357564359903336, + 0.03420208394527435, + 0.02062114141881466, + -0.04237069934606552, + 0.048885997384786606, + -0.03978399559855461, + 0.05065426975488663, + 0.0062761735171079636 + ], + "text-align-justify-bold||*updated*,typography,print,font,alignment,justified": [ + -0.040367115288972855, + 0.04194340854883194, + -0.07885286957025528, + 0.017778271809220314, + 0.03328293189406395, + 0.005402081646025181, + -0.013425206765532494, + -0.04801168665289879, + -0.015837768092751503, + 0.04357115924358368, + 0.0328386016190052, + 0.008464372716844082, + 0.04103972762823105, + -0.053824931383132935, + -0.0020818866323679686, + 0.005393609404563904, + 0.018711328506469727, + 0.018801849335432053, + -0.010823862627148628, + 0.025161704048514366, + -0.08744332939386368, + 0.05931800976395607, + 0.048691004514694214, + 0.09329506009817123, + -0.03213346377015114, + 0.13509491086006165, + 0.027354054152965546, + 0.015640635043382645, + 0.015448275953531265, + -0.09105051308870316, + -0.030180012807250023, + -0.006119569297879934, + 0.1474790722131729, + -0.004439699463546276, + 0.02379704639315605, + 0.017759131267666817, + -0.018493445590138435, + -0.013259426690638065, + 0.047212254256010056, + -0.028760552406311035, + -0.04704367369413376, + -0.12802807986736298, + -0.03447124734520912, + 0.037842873483896255, + 0.017253704369068146, + -0.008119693025946617, + -0.10611683130264282, + 0.01326688565313816, + 0.04348326474428177, + -0.014302056282758713, + -0.106098473072052, + -0.05919238552451134, + -0.11129304021596909, + -0.03599642589688301, + 0.02924901805818081, + 0.05405015870928764, + 0.0027064168825745583, + 0.032185737043619156, + 0.07238053530454636, + -0.08375900983810425, + 0.08587902784347534, + 0.045474983751773834, + 0.004255776759237051, + 0.10285046696662903, + 0.005187207832932472, + 0.05626697093248367, + 0.03940073028206825, + 0.007463491056114435, + -0.03178277239203453, + 0.056625813245773315, + -0.04690638557076454, + 0.04761306568980217, + -0.021065721288323402, + -0.04091190919280052, + -0.07955977320671082, + -0.0019042729400098324, + 0.030414508655667305, + -0.01964079588651657, + 0.006142798345535994, + 0.008592959493398666, + -0.058406274765729904, + 0.007101000752300024, + -0.005684114061295986, + 0.03242965787649155, + 0.009727331809699535, + -0.03701561689376831, + -0.025760116055607796, + -0.06920989602804184, + 0.01872102916240692, + -0.03841901570558548, + 0.043131135404109955, + -0.04286566376686096, + 1.8506625565350987e-05, + 0.02607676014304161, + -0.13822714984416962, + 0.06780429929494858, + -0.031584352254867554, + 0.01393391564488411, + -0.034364212304353714, + 0.0852910652756691, + -0.0003511922259349376, + 0.06508265435695648, + -0.030099807307124138, + -0.02717818319797516, + -0.02810884453356266, + -0.06919834762811661, + -0.01638743467628956, + -0.02020949311554432, + -3.7644014810211957e-05, + 0.0005977053660899401, + 0.025318142026662827, + -0.08255881071090698, + -0.09147495031356812, + 0.004602155648171902, + -0.0366416797041893, + -0.04104315862059593, + -0.014347230084240437, + -0.006388688925653696, + 0.0918450802564621, + 0.028072010725736618, + 0.003819915931671858, + -0.009566105902194977, + -0.08391869068145752, + -0.03186674788594246, + -0.036614950746297836, + -0.021817892789840698, + 0.042720258235931396, + -1.3865202905433546e-33, + 0.019010262563824654, + 0.046135760843753815, + 0.02746942639350891, + 0.10666127502918243, + -0.01666231080889702, + 0.015635428950190544, + -0.10520302504301071, + -0.05071678012609482, + -0.027303753420710564, + 0.010670001618564129, + 0.03744884580373764, + 0.09952856600284576, + -0.020418183878064156, + 0.002347189001739025, + -0.02747306041419506, + -0.04782175272703171, + -0.057414982467889786, + 0.08104231208562851, + -0.09632602334022522, + 0.08478409796953201, + -0.04572731629014015, + 0.007655984256416559, + 0.007263479754328728, + -0.019611302763223648, + -0.019835742190480232, + -0.0512348935008049, + 0.01077670231461525, + 0.01640443317592144, + -0.15631398558616638, + -0.025402316823601723, + 0.0463574193418026, + 0.0006158147589303553, + 0.07634245604276657, + 0.0007505706162191927, + -0.014935056678950787, + 0.008959957398474216, + -0.05049661546945572, + -0.05526819825172424, + -0.0062773572281003, + -0.0033232246059924364, + -0.1343739777803421, + 0.030737778171896935, + 0.03233317658305168, + -0.0889788344502449, + 0.13206647336483002, + 0.09265884757041931, + -0.051357660442590714, + -0.032083600759506226, + 0.1055714562535286, + -0.010594166815280914, + -0.007297217380255461, + 0.01891152374446392, + -0.06374233216047287, + -0.016230402514338493, + -0.06243707612156868, + -0.007868277840316296, + -0.002361744875088334, + 0.07042048126459122, + -0.0037754373624920845, + 0.011606203392148018, + 0.03308359533548355, + -0.07268831133842468, + 0.020845983177423477, + -0.07603034377098083, + -0.03589269518852234, + 0.03886890038847923, + -0.02300383150577545, + 0.013230700977146626, + 0.05338288098573685, + 0.041321542114019394, + -0.019962044432759285, + 0.02556542120873928, + -0.0023694622796028852, + 0.10252250730991364, + -0.010135477408766747, + 0.047430623322725296, + -0.009879844263195992, + -0.03207628056406975, + -0.007271090522408485, + -0.005110721103847027, + -0.05703042447566986, + 0.022817101329565048, + -0.05572216585278511, + 0.026753894984722137, + -0.03761552274227142, + -0.02061600051820278, + -0.007583144586533308, + -0.023402515798807144, + 0.04084652289748192, + 0.06943797320127487, + -0.05751541256904602, + 0.03697642683982849, + -0.006757356226444244, + -0.08030717819929123, + -0.019731881096959114, + -2.6381116456985653e-33, + 0.0792773887515068, + -0.018877282738685608, + -0.043981943279504776, + -0.014532649889588356, + 0.002133576897904277, + 0.13268259167671204, + 0.012568297795951366, + 0.031110383570194244, + 0.03376098722219467, + 0.03244546055793762, + 0.07722458243370056, + -0.019794926047325134, + -0.05510708689689636, + -0.01678510382771492, + -0.10918423533439636, + 0.05035289376974106, + 0.05029652640223503, + 0.032049261033535004, + -0.04596497863531113, + 0.013564446941018105, + 0.006630975287407637, + 0.0015312143368646502, + -0.05005086958408356, + 0.06264737993478775, + 0.07285156100988388, + 0.01495809480547905, + -0.02370045892894268, + 0.01443630363792181, + 0.01470804214477539, + 0.010408466681838036, + -0.00469142897054553, + -0.06142459437251091, + 0.003005523234605789, + 0.008369795978069305, + -0.018485238775610924, + 0.010216114111244678, + 0.015426290221512318, + 0.010580800473690033, + 0.0046074967831373215, + 0.0438346341252327, + 0.03302733600139618, + 0.056086525321006775, + -0.010115138255059719, + 0.03914859890937805, + -0.010732323862612247, + -0.014174572192132473, + -0.02700772136449814, + -0.11476147174835205, + -0.06426409631967545, + 0.04353583976626396, + 0.046009697020053864, + 0.004046224988996983, + -0.0019155993359163404, + -0.02021058276295662, + -0.02504020743072033, + -0.008626851253211498, + -0.0516124926507473, + 0.012095831334590912, + -0.09017591178417206, + 0.018285254016518593, + -0.023899590596556664, + 0.08602535724639893, + 0.011063921265304089, + 0.03310185298323631, + 0.018074514344334602, + -0.018023554235696793, + 0.07458844035863876, + -0.040653716772794724, + -0.0570928119122982, + -0.024552686139941216, + 0.04542082920670509, + -0.04985266178846359, + -0.04932599514722824, + 0.0216015987098217, + -0.0070476955734193325, + -0.07580682635307312, + 0.06019345670938492, + -0.04290298745036125, + -0.007894128561019897, + -0.034484174102544785, + 0.030981700867414474, + 0.045242439955472946, + -0.020453322678804398, + 0.03284107521176338, + -0.15286755561828613, + 0.027668394148349762, + 0.020002394914627075, + 0.0029082519467920065, + 0.022473903372883797, + 0.030610378831624985, + -0.09882393479347229, + 0.028907524421811104, + 0.006916626822203398, + 0.002271327655762434, + -0.0581045001745224, + -2.4256696207203277e-08, + -0.015538796782493591, + -0.09178818762302399, + -0.05478699132800102, + 0.047110214829444885, + -0.017764225602149963, + -0.03684813901782036, + 0.0008265372016467154, + -0.08924949914216995, + -0.048695482313632965, + -0.07572280615568161, + 0.04550214484333992, + 0.030016949400305748, + -0.08350103348493576, + -0.0797203928232193, + 0.016654353588819504, + 0.02321949414908886, + -0.09395075589418411, + 0.0030597178265452385, + -0.051017485558986664, + -0.02354583330452442, + 0.008470477536320686, + 0.03021685779094696, + -0.016258517280220985, + -0.02563832700252533, + 0.08821991831064224, + 0.006247785873711109, + -0.08132704347372055, + 0.04281597211956978, + 0.051149386912584305, + -0.0008614230318926275, + 0.05765170603990555, + -0.016370441764593124, + 0.07473325729370117, + -0.05260705575346947, + -0.05819562450051308, + -0.0569881796836853, + 0.018937919288873672, + -0.019910890609025955, + 0.0696878731250763, + 0.14466619491577148, + -0.0597110353410244, + 0.0623408667743206, + 0.015522497706115246, + 0.018744297325611115, + 0.0240794625133276, + -0.006323325913399458, + 0.015520762652158737, + 0.0445193350315094, + -0.09855522960424423, + -0.12387455254793167, + 0.0020574189256876707, + 0.02143426425755024, + 0.05071672424674034, + 0.04021453112363815, + -0.08992383629083633, + -0.003349721198901534, + 0.027590949088335037, + 0.06024419888854027, + 0.07084710896015167, + -0.02107890322804451, + 0.09036781638860703, + -0.014844772405922413, + 0.10060849785804749, + -0.004682650323957205 + ], + "text-align-left-bold||*updated*,typography,print,font,alignment,flush left": [ + -0.017326796427369118, + 0.04130834341049194, + -0.05128202587366104, + 0.09147466719150543, + -0.0004543160612229258, + -0.0005798697820864618, + -0.025766143575310707, + -0.07097900658845901, + -0.01904495805501938, + 0.0625954270362854, + 0.054571039974689484, + 0.06465187668800354, + 0.03141084313392639, + -0.07728581130504608, + -0.022549323737621307, + 0.03553759306669235, + -0.029389316216111183, + 0.04043598473072052, + 0.006460016593337059, + 0.04888371005654335, + -0.17046397924423218, + 0.05022679641842842, + 0.025341695174574852, + 0.09648223966360092, + -0.004537074826657772, + 0.10566787421703339, + 0.01721816323697567, + -0.016988584771752357, + -0.019834188744425774, + -0.1115976944565773, + -0.04391874745488167, + 0.014216496609151363, + 0.13551084697246552, + 0.0014975082594901323, + 0.013585043139755726, + 0.023699069395661354, + -0.02227238193154335, + -0.032386939972639084, + 0.05972437188029289, + -0.008568337187170982, + -0.024820664897561073, + -0.1438526213169098, + -0.017303338274359703, + 0.032949525862932205, + -0.01918100193142891, + -0.015145817771553993, + -0.11657904833555222, + 0.02645786665380001, + 0.05302809923887253, + 0.011927125975489616, + -0.1087985634803772, + -0.04447760060429573, + -0.08993256837129593, + 0.010967012494802475, + -0.018045732751488686, + 0.06008442863821983, + -4.259211345924996e-05, + -0.009366614744067192, + 0.07509339600801468, + -0.057436056435108185, + 0.08470431715250015, + 0.059657346457242966, + -0.011008575558662415, + 0.06332811713218689, + 0.020509470254182816, + 0.026905884966254234, + 0.06205886974930763, + 0.007230323273688555, + -0.029958024621009827, + 0.04341418296098709, + -0.02372283861041069, + 0.026197051629424095, + -0.027598166838288307, + -0.06627486646175385, + -0.04301176965236664, + 0.011073555797338486, + 0.05987770855426788, + 0.027397396042943, + -0.015540510416030884, + 0.03971129655838013, + -0.025214001536369324, + 0.023147374391555786, + 0.019450554624199867, + 0.0518752858042717, + 0.03563135489821434, + -0.011975279077887535, + -0.05159204453229904, + -0.051925960928201675, + 0.012192505411803722, + -0.04296071082353592, + 0.009789454750716686, + -0.026108497753739357, + 0.013728003948926926, + 0.005854963790625334, + -0.09037815779447556, + 0.039529841393232346, + 0.015065591782331467, + 0.036305662244558334, + -0.059349361807107925, + 0.07859539985656738, + 0.008302868343889713, + 0.07929927855730057, + -0.031148672103881836, + -0.04226091504096985, + -0.020374253392219543, + -0.022435542196035385, + -0.021090947091579437, + -0.02472890354692936, + -0.03261458873748779, + -0.01096150279045105, + 0.015477926470339298, + -0.08712445944547653, + -0.07553474605083466, + -0.016666067764163017, + -0.053814537823200226, + -0.011751941405236721, + -0.02313290350139141, + -0.006800181232392788, + 0.08151896297931671, + 0.005820796359330416, + -0.030064640566706657, + -0.0052257804200053215, + -0.08301585167646408, + -0.06274089962244034, + -0.03229829668998718, + 0.018956005573272705, + 0.054153718054294586, + -2.1779693411859734e-33, + 0.019231146201491356, + 0.0015400702832266688, + 0.031609293073415756, + 0.12010632455348969, + 0.004283529706299305, + 0.0426635779440403, + -0.1193566620349884, + -0.04851136729121208, + -0.03777976706624031, + 0.013155963271856308, + 0.07634296268224716, + 0.07278650999069214, + -0.03683481365442276, + -0.009070814587175846, + -0.0565294548869133, + -0.08284268528223038, + -0.040294501930475235, + 0.03261426463723183, + -0.11477024108171463, + 0.08153939247131348, + -0.03609832376241684, + 0.01151589211076498, + -0.023518553003668785, + -0.04338783025741577, + -0.0018344257259741426, + -0.010588436387479305, + 0.039279062300920486, + 0.003095813561230898, + -0.15874101221561432, + -0.006965499836951494, + 0.029645366594195366, + 0.029508791863918304, + 0.0997692346572876, + -0.02705858089029789, + -0.03900928050279617, + -0.0007232240168377757, + -0.04550660029053688, + -0.04928840696811676, + 0.0030864982400089502, + 0.022641334682703018, + -0.14429882168769836, + 0.04001746326684952, + 0.00240318407304585, + -0.09191466867923737, + 0.08711979538202286, + 0.076776422560215, + -0.024666018784046173, + -0.021034756675362587, + 0.12039903551340103, + -0.006183004938066006, + -0.018103646114468575, + 0.02259358949959278, + -0.08138265460729599, + -0.0033112450037151575, + -0.06064284220337868, + 0.0045754434540867805, + 0.022079331800341606, + 0.08426149934530258, + 0.006508184596896172, + -0.017130590975284576, + 0.006249577272683382, + -0.04093035310506821, + -0.01335639227181673, + -0.05509655922651291, + -0.04866151139140129, + 0.016000444069504738, + -0.005923050455749035, + -0.00964425690472126, + 0.09092244505882263, + -0.010973098687827587, + -0.004563876893371344, + 0.00839489046484232, + -0.004181500989943743, + 0.10114563256502151, + -0.04135496914386749, + 0.03518446907401085, + -0.024779587984085083, + -0.05477852001786232, + 0.011551277711987495, + -0.028099270537495613, + 0.00395004590973258, + 0.0005891050095669925, + -0.06222205609083176, + 0.029889749363064766, + 0.014354308135807514, + -0.05088811367750168, + -0.040393441915512085, + -0.007717014290392399, + 0.018280064687132835, + 0.08114028722047806, + -0.07259270548820496, + 0.005783055908977985, + 0.023089153692126274, + -0.07165729999542236, + -0.012805800884962082, + -1.774831349519562e-33, + 0.053558025509119034, + -0.05883150175213814, + -0.07489123195409775, + 0.020054686814546585, + -0.03837307170033455, + 0.11218379437923431, + 0.061891958117485046, + 0.06313654780387878, + 0.03170875832438469, + 0.06625867635011673, + 0.07190731912851334, + 0.031862277537584305, + -0.09953614324331284, + -0.03197038918733597, + -0.05661088228225708, + 0.08851628005504608, + 0.08116268366575241, + 0.022727228701114655, + -0.03368036448955536, + 0.018194478005170822, + -0.02491818182170391, + -0.04662620276212692, + 0.000630125286988914, + 0.11451868712902069, + 0.052539072930812836, + 0.00596021581441164, + 0.0045801498927176, + 0.03507842496037483, + -0.040864553302526474, + 0.025441689416766167, + -0.013536136597394943, + -0.017530065029859543, + 0.051437508314847946, + 0.005208786576986313, + -0.013384510762989521, + -0.005373526364564896, + 0.0018796002259477973, + 0.0044889128766953945, + 0.016701549291610718, + 0.0567842572927475, + 0.036992862820625305, + 0.017368055880069733, + -0.03392577916383743, + 0.038112375885248184, + -0.00016564782708883286, + 0.016628103330731392, + -0.089384064078331, + -0.09181880950927734, + -0.04366208240389824, + 0.05291150510311127, + 0.043028149753808975, + 0.05426192656159401, + 0.013718181289732456, + -0.02856600657105446, + -0.03035994991660118, + -0.022361071780323982, + -0.08850336074829102, + 0.03668900951743126, + -0.0928119644522667, + 0.06269502639770508, + -0.005457588005810976, + 0.07108842581510544, + 0.04890449717640877, + -0.024277273565530777, + 0.02639594115316868, + -0.002610368188470602, + 0.05027962103486061, + -0.02356864884495735, + -0.04450942948460579, + -0.011938519775867462, + 0.04363688826560974, + -0.04222371429204941, + -0.061579011380672455, + 0.01553200464695692, + 0.012884587980806828, + -0.05997374653816223, + 0.03100600838661194, + -0.020145339891314507, + 0.0015138544840738177, + 0.004385808017104864, + 0.019572891294956207, + 0.030599849298596382, + -0.020625252276659012, + 0.010191475972533226, + -0.11032400280237198, + 0.0006908277282491326, + 0.019492896273732185, + -0.01871364377439022, + 0.014115367084741592, + -0.013689802959561348, + -0.06638285517692566, + -0.006113546900451183, + 0.013474415056407452, + -0.015118377283215523, + -0.059092309325933456, + -2.525707110123676e-08, + 0.02867196872830391, + -0.13538604974746704, + -0.021137306466698647, + 0.05263683572411537, + -0.039002884179353714, + -0.020353488624095917, + -0.02902545966207981, + -0.04904553294181824, + -0.046373892575502396, + -0.07556236535310745, + 0.03643905371427536, + 0.058899614959955215, + -0.0451350174844265, + -0.09872268885374069, + 0.04552251845598221, + 0.006603548768907785, + -0.13928815722465515, + -0.013864683918654919, + -0.058107759803533554, + -0.026374809443950653, + 0.057330891489982605, + 0.034191329032182693, + 0.025239843875169754, + 0.013728884048759937, + 0.08755627274513245, + 0.009768476709723473, + -0.05963428318500519, + 0.022076113149523735, + 0.03815614432096481, + -0.02176796644926071, + 0.059426628053188324, + -0.03160463273525238, + 0.039765365421772, + -0.02821812406182289, + -0.04628279432654381, + -0.0482211634516716, + 0.03625808283686638, + -0.02783399634063244, + 0.04781448468565941, + 0.11203514784574509, + -0.07311540096998215, + 0.05315680429339409, + -0.011919140815734863, + -0.010139144025743008, + -0.050369370728731155, + -0.017144953832030296, + 0.040539734065532684, + 0.033902741968631744, + -0.04806967079639435, + -0.12123812735080719, + 0.01487033348530531, + 0.051955919712781906, + 0.05701373890042305, + 0.0431649349629879, + -0.07106927037239075, + -0.005373999010771513, + 0.026342103257775307, + 0.055523309856653214, + 0.03409862890839577, + -0.020367655903100967, + 0.06486088037490845, + 0.014342378824949265, + 0.054112549871206284, + -0.002999544143676758 + ], + "text-align-right-bold||*updated*,typography,print,font,alignment,flush right": [ + -0.025129351764917374, + 0.03607485815882683, + -0.06023046746850014, + 0.08796512335538864, + -0.015264781191945076, + 0.018678169697523117, + -0.024247903376817703, + -0.06831000000238419, + -0.018747583031654358, + 0.06306973099708557, + 0.0662088617682457, + 0.06682902574539185, + 0.02958502061665058, + -0.07616718858480453, + -0.01887482777237892, + 0.026024840772151947, + -0.03795960918068886, + 0.03398216888308525, + 0.011780848726630211, + 0.03511836752295494, + -0.15467225015163422, + 0.047596756368875504, + 0.02530365251004696, + 0.094241663813591, + -0.008785107173025608, + 0.10559791326522827, + 0.014233437366783619, + -0.01634523831307888, + -0.02282574772834778, + -0.10760252177715302, + -0.04614653438329697, + 0.009086859412491322, + 0.13651835918426514, + 0.004313516430556774, + 0.01828085258603096, + 0.03537523001432419, + -0.030074534937739372, + -0.02630484104156494, + 0.05003383755683899, + -0.02440289966762066, + -0.03246861323714256, + -0.15831880271434784, + -0.02110033854842186, + 0.02227683924138546, + -0.02414041943848133, + -0.0017434959299862385, + -0.09678702056407928, + 0.025011569261550903, + 0.050082728266716, + 0.011893162503838539, + -0.11104592680931091, + -0.03737059608101845, + -0.08995416760444641, + 0.000966025865636766, + -0.0006538168527185917, + 0.07619646936655045, + -0.00887523777782917, + 9.565077925799415e-05, + 0.07134068757295609, + -0.057773105800151825, + 0.0681120976805687, + 0.04887835308909416, + -0.017277562990784645, + 0.07296840101480484, + 0.02878100983798504, + 0.04240873083472252, + 0.05542717128992081, + -0.00176629691850394, + -0.0413929745554924, + 0.05265078321099281, + -0.024562720209360123, + 0.026809202507138252, + -0.025532839819788933, + -0.051541879773139954, + -0.03914692997932434, + 0.009447057731449604, + 0.0544060654938221, + 0.023511378094553947, + -0.016668330878019333, + 0.0449204221367836, + -0.02835259772837162, + 0.01982228271663189, + 0.008785121142864227, + 0.06446386873722076, + 0.041449856013059616, + -0.01075905654579401, + -0.04623100161552429, + -0.05270170047879219, + 0.018192918971180916, + -0.04204978793859482, + 0.02396412380039692, + -0.04243111610412598, + 0.02061619982123375, + 0.01845565438270569, + -0.09721588343381882, + 0.03502899035811424, + 0.0207672081887722, + 0.021679215133190155, + -0.0589321106672287, + 0.06639565527439117, + 0.014307337813079357, + 0.06207895278930664, + -0.030541304498910904, + -0.042353637516498566, + -0.01649957150220871, + -0.031712111085653305, + -0.011195553466677666, + -0.01305977813899517, + -0.01760965958237648, + -0.0011818315833806992, + 0.01583237759768963, + -0.0941445603966713, + -0.08545109629631042, + -0.008287631906569004, + -0.06147085130214691, + -0.0052341618575155735, + -0.027251677587628365, + -0.017259854823350906, + 0.0714653804898262, + 0.005920361261814833, + -0.03294098749756813, + 0.00893198512494564, + -0.09592872858047485, + -0.06665560603141785, + -0.039570845663547516, + 0.011578274890780449, + 0.048950035125017166, + -2.0944985893600366e-33, + 0.008796214126050472, + 0.004506472032517195, + 0.03632727637887001, + 0.11426423490047455, + 0.004809482488781214, + 0.033997587859630585, + -0.1270190328359604, + -0.05798618122935295, + -0.037124693393707275, + 0.03393218666315079, + 0.07715538889169693, + 0.058070167899131775, + -0.03695821017026901, + 0.004676640499383211, + -0.05095752701163292, + -0.07956475764513016, + -0.04101526364684105, + 0.046956002712249756, + -0.10953892767429352, + 0.07818936556577682, + -0.039694368839263916, + 0.011563173495233059, + -0.0206759013235569, + -0.051477573812007904, + -0.006769296247512102, + -0.01056057307869196, + 0.034642551094293594, + 0.0029864339157938957, + -0.15015366673469543, + -0.006842074915766716, + 0.014411072246730328, + 0.015464111231267452, + 0.0999768003821373, + -0.026037780568003654, + -0.037057019770145416, + -0.013754723593592644, + -0.040188029408454895, + -0.050644174218177795, + -0.0038410865236073732, + 0.018282920122146606, + -0.13937653601169586, + 0.04773317649960518, + -0.005020414479076862, + -0.08252515643835068, + 0.10865418612957001, + 0.07194104045629501, + -0.02006642147898674, + -0.00958453118801117, + 0.12147141993045807, + -0.008640769869089127, + -0.012252011336386204, + 0.03205645829439163, + -0.07505334913730621, + 0.016586454585194588, + -0.0666259378194809, + 0.009685948491096497, + 0.028266044333577156, + 0.09601587057113647, + -0.004856562707573175, + -0.019275173544883728, + 0.0024296140763908625, + -0.0452602282166481, + -0.0027099933940917253, + -0.07075847685337067, + -0.04404614865779877, + 0.020240982994437218, + -0.0046410150825977325, + -0.006230561062693596, + 0.0950636938214302, + -0.00767007889226079, + -0.012897440232336521, + 0.021639952436089516, + -0.013324526138603687, + 0.0987011045217514, + -0.04564643278717995, + 0.03523005172610283, + -0.027172094210982323, + -0.05148296430706978, + 0.027266310527920723, + -0.016970118507742882, + -0.006161152850836515, + -0.00368534866720438, + -0.06907939165830612, + 0.02358073554933071, + -0.000942983606364578, + -0.06564071029424667, + -0.04211295768618584, + -0.004036984406411648, + 0.024483781307935715, + 0.07756083458662033, + -0.05749843269586563, + 0.014449212700128555, + 0.024500107392668724, + -0.06972848623991013, + -0.010057240724563599, + -2.010507681283861e-33, + 0.05819031596183777, + -0.05823544040322304, + -0.060032494366168976, + 0.03336649015545845, + -0.04180731996893883, + 0.1130540743470192, + 0.06439388543367386, + 0.05869236961007118, + 0.03573288023471832, + 0.07036134600639343, + 0.07487807422876358, + 0.029874177649617195, + -0.0945964902639389, + -0.03654902055859566, + -0.05471004918217659, + 0.08904072642326355, + 0.0778871551156044, + 0.027296889573335648, + -0.02363002859055996, + 0.015497476793825626, + -0.029080627486109734, + -0.05482316389679909, + 0.001328066922724247, + 0.11416998505592346, + 0.055873021483421326, + 0.007591428700834513, + 0.004324419889599085, + 0.03669992461800575, + -0.03166401386260986, + 0.03821612149477005, + -0.0047133490443229675, + -0.02632874809205532, + 0.02252139151096344, + 0.011221177875995636, + -0.006799250841140747, + -0.017593303695321083, + 0.004034608136862516, + 0.010398020036518574, + 0.017522050067782402, + 0.05984029918909073, + 0.04845094308257103, + 0.016551636159420013, + -0.03483784571290016, + 0.046024225652217865, + -0.002108801854774356, + 0.022110145539045334, + -0.08604196459054947, + -0.09212367236614227, + -0.04910797253251076, + 0.043026939034461975, + 0.03426733985543251, + 0.05072162672877312, + 0.017854508012533188, + -0.034607257694005966, + -0.028070123866200447, + -0.020011069253087044, + -0.08191356807947159, + 0.03083675354719162, + -0.10720279067754745, + 0.06041746959090233, + 0.0016052323626354337, + 0.07261724025011063, + 0.03560209646821022, + -0.025327222421765327, + 0.026971587911248207, + -0.011036751791834831, + 0.04602775350213051, + -0.025087876245379448, + -0.04328477382659912, + -0.021012673154473305, + 0.028003450483083725, + -0.056775644421577454, + -0.05445981025695801, + 0.017432445660233498, + 0.00854463316500187, + -0.07916580140590668, + 0.042120758444070816, + -0.018038181588053703, + 0.01946122758090496, + -0.008944191038608551, + 0.032453957945108414, + 0.046720780432224274, + -0.028070805594325066, + 0.01955745555460453, + -0.11340674012899399, + 0.004258675500750542, + 0.019513219594955444, + -0.019687864929437637, + 0.01757960394024849, + -0.019183993339538574, + -0.06586291640996933, + 0.012297718785703182, + 0.008127848617732525, + -0.006642308086156845, + -0.06524614989757538, + -2.540800636552376e-08, + 0.01225457713007927, + -0.12636007368564606, + -0.012526056729257107, + 0.04353455826640129, + -0.031151264905929565, + -0.03189048543572426, + -0.03371264412999153, + -0.04180682823061943, + -0.040608953684568405, + -0.08295739442110062, + 0.018602734431624413, + 0.05181850120425224, + -0.04720325395464897, + -0.08782951533794403, + 0.06055304780602455, + -0.004164947662502527, + -0.1465158313512802, + -0.0156350526958704, + -0.05837244912981987, + -0.03486066311597824, + 0.0358177088201046, + 0.02486223168671131, + 0.022565172985196114, + 0.002753931563347578, + 0.08573450893163681, + 0.0085695656016469, + -0.05717996880412102, + 0.02959206886589527, + 0.023127032443881035, + -0.022628355771303177, + 0.05136711150407791, + -0.02848071977496147, + 0.03669602423906326, + -0.025683173909783363, + -0.029818948358297348, + -0.035385794937610626, + 0.040487390011548996, + -0.028362298384308815, + 0.07177167385816574, + 0.09933868050575256, + -0.06790291517972946, + 0.05507311224937439, + -0.01486003678292036, + -0.009362714365124702, + -0.052503712475299835, + -0.018691081553697586, + 0.05029178783297539, + 0.035494860261678696, + -0.050416287034749985, + -0.12986278533935547, + 0.008147147484123707, + 0.06309966742992401, + 0.06177910417318344, + 0.033725786954164505, + -0.0639793798327446, + 0.0039037554524838924, + 0.022046126425266266, + 0.04794478788971901, + 0.04813219606876373, + -0.02582176774740219, + 0.08506311476230621, + 0.016584979370236397, + 0.0458972342312336, + -0.0030887278262525797 + ], + "text-b-bold||typography,typeface,print,font,bold,boldface,emphasis": [ + 0.03646283596754074, + -0.008163192309439182, + -0.06755650043487549, + 0.019373543560504913, + 0.004746423102915287, + -0.0006644407985731959, + 0.06832562386989594, + -0.0445600226521492, + -0.0456014946103096, + -0.018012914806604385, + 0.03304021805524826, + 0.013830957002937794, + 0.0775260329246521, + -0.036161575466394424, + 0.04968510940670967, + 0.046944692730903625, + 0.03544465824961662, + -0.05757276713848114, + 0.039492908865213394, + -0.006775612477213144, + -0.02903982438147068, + 0.06034193933010101, + 0.037304580211639404, + 0.01102280244231224, + 0.03520115464925766, + 0.05790996178984642, + -0.014451292343437672, + 0.019202636554837227, + 0.04496775195002556, + -0.08829611539840698, + -0.05201992392539978, + -0.013384468853473663, + 0.12395034730434418, + 0.026654869318008423, + 0.04085628688335419, + -0.010566811077296734, + 0.0009676891495473683, + 0.015140247531235218, + -0.0010501036886125803, + 0.030684763565659523, + -0.019705461338162422, + -0.1388283222913742, + -0.04228692874312401, + 0.07328620553016663, + 0.009218689054250717, + -0.007473285775631666, + -0.10700662434101105, + 0.013168594799935818, + 0.01760203018784523, + -0.023943785578012466, + -0.057791903614997864, + -0.0784563347697258, + -0.1299060583114624, + 0.02548164501786232, + 0.01933516375720501, + 0.04354744404554367, + -0.030209166929125786, + 0.018956376239657402, + 0.026987338438630104, + -0.06549534201622009, + -0.02802214026451111, + 0.046398013830184937, + 0.0038466425612568855, + 0.06230971962213516, + 0.06580176204442978, + 0.05963427200913429, + 0.02901890128850937, + 0.04256057366728783, + -0.06282872706651688, + 0.050985176116228104, + -0.003021765034645796, + -0.007950947619974613, + -0.05851045995950699, + 0.016794994473457336, + -0.06120539456605911, + 0.0017659022705629468, + 0.016099954023957253, + 0.000862223852891475, + -0.046210646629333496, + -0.03469560667872429, + -0.08020038157701492, + -0.010264106094837189, + -0.01591304875910282, + 0.07539315521717072, + 0.006912846118211746, + 0.05320150777697563, + -0.04954832047224045, + -0.12402183562517166, + -0.028745174407958984, + 0.024694034829735756, + -0.02842709608376026, + -0.07313712686300278, + 0.03798193112015724, + 0.031249871477484703, + -0.13960795104503632, + -0.008558597415685654, + 0.006440795958042145, + 0.016134582459926605, + 0.00021943562023807317, + 0.07642009854316711, + -0.023028289899230003, + 0.028486059978604317, + 0.02354276366531849, + -0.006982963066548109, + -0.08316589891910553, + -0.058450791984796524, + 0.02242630161345005, + -0.06557338684797287, + 0.05377912521362305, + -0.015472092665731907, + 0.046410854905843735, + -0.058515384793281555, + -0.06832266598939896, + -0.07090436667203903, + -0.004729434382170439, + -0.07416702061891556, + -0.024928702041506767, + -0.009637812152504921, + 0.14668741822242737, + 0.042106445878744125, + -0.020458340644836426, + -0.01859462447464466, + -0.054198186844587326, + -0.08690585941076279, + -0.060412194579839706, + -0.024336079135537148, + 0.07338063418865204, + 4.2281301203429165e-34, + 0.08743157982826233, + 0.05343036353588104, + -0.03986451402306557, + 0.146930530667305, + 0.0022808455396443605, + 0.056804850697517395, + -0.09552089124917984, + -0.054825883358716965, + -0.08788983523845673, + 0.032389622181653976, + 0.0436372347176075, + 0.038514360785484314, + -0.027968263253569603, + 0.054082032293081284, + 0.0527782179415226, + 0.007300417870283127, + 0.0473831444978714, + -0.016570959240198135, + -0.1053074523806572, + 0.02416379563510418, + -0.03603314608335495, + 0.05313153937458992, + -0.0171907227486372, + -0.021871274337172508, + -0.028258688747882843, + 0.004767967388033867, + 0.06639940291643143, + 0.011389922350645065, + -0.1104653999209404, + 0.009096285328269005, + 0.005298852454870939, + 0.029114456847310066, + 0.06485813856124878, + -0.0015300557715818286, + -0.013873022049665451, + 0.011163776740431786, + -0.04625777527689934, + 0.011546838097274303, + 0.021142570301890373, + -0.007113211788237095, + -0.13261757791042328, + 0.0067221070639789104, + 0.002029191004112363, + -0.03352687507867813, + 0.06287553906440735, + 0.1253449022769928, + -0.021383194252848625, + -0.030118973925709724, + 0.04531111940741539, + 0.011444633826613426, + 0.0462915264070034, + -0.02098044380545616, + 0.003983794245868921, + 0.08155597001314163, + 0.03973360359668732, + -0.0006984943174757063, + 9.199350461130962e-05, + 0.07878391444683075, + 0.03009846992790699, + 0.03515869006514549, + 0.04788186028599739, + 0.0025505104567855597, + 0.06325595825910568, + -0.023092815652489662, + -0.042512256652116776, + 0.057237230241298676, + -0.045777976512908936, + 0.0017929947935044765, + 0.05467820540070534, + -0.011477314867079258, + -0.010101957246661186, + 0.025412365794181824, + 0.011843910440802574, + 0.06864859163761139, + -0.03067675046622753, + 0.04581591114401817, + -0.025513460859656334, + -0.05897628143429756, + 0.023005641996860504, + -0.04770304262638092, + -0.06778550148010254, + -0.012296147644519806, + -0.022616755217313766, + 0.03012884594500065, + -0.025238443166017532, + 0.03275192901492119, + -0.0018094092374667525, + -0.11336324363946915, + 0.040255628526210785, + 0.0027756511699408293, + -0.10632926970720291, + -0.004573551472276449, + -0.01235503051429987, + -0.10176438093185425, + -0.06451936811208725, + -2.7553835539114046e-33, + 0.04376217722892761, + 0.016064342111349106, + -0.06448256224393845, + -0.032253846526145935, + -0.050019487738609314, + 0.06236008554697037, + 0.08251745253801346, + 0.0028469606768339872, + 0.04424222186207771, + 0.09246332943439484, + 0.06027885526418686, + -0.005988456308841705, + -0.04271648824214935, + -0.06688985973596573, + -0.01724344491958618, + -0.019947512075304985, + 0.05495370551943779, + 0.012520582415163517, + -0.03937481716275215, + -6.35510150459595e-05, + -0.05069366842508316, + -0.08283170312643051, + -0.019721519201993942, + 0.08037936687469482, + 0.04336182773113251, + 0.022985590621829033, + 0.017686259001493454, + 0.06156454235315323, + -0.050632331520318985, + -0.032956209033727646, + 0.009094842709600925, + 0.005210652947425842, + 0.05920650064945221, + 0.050219401717185974, + -0.08356168121099472, + 0.021332068368792534, + -0.011374786496162415, + -0.006052670534700155, + 0.03299717605113983, + 0.019598089158535004, + 0.018022596836090088, + 0.016353750601410866, + 0.03438617289066315, + 0.03978441655635834, + -0.06208671256899834, + 0.012013779953122139, + -0.11010731756687164, + -0.13348355889320374, + 0.03035627119243145, + 0.04007798060774803, + 0.020026465877890587, + 0.016421115025877953, + 0.0035514007322490215, + -0.003143472597002983, + -0.09598983824253082, + -0.08346126228570938, + -0.009424668736755848, + 0.0011708628153428435, + -0.05791933834552765, + 0.045700374990701675, + -0.005732859019190073, + 0.013847637921571732, + 0.009571387432515621, + 0.05140598863363266, + 0.03556292504072189, + -0.05097976326942444, + 0.022140881046652794, + -0.05226457864046097, + 0.017740396782755852, + -0.03514771908521652, + 0.035299208015203476, + 0.0082210972905159, + 0.01650901697576046, + 0.04911908507347107, + -0.06285621970891953, + -0.04671241343021393, + 0.05592866986989975, + -0.003541636746376753, + -0.013220295310020447, + 0.01966205984354019, + 0.014531598426401615, + -0.007927658967673779, + -0.03727174550294876, + 0.06488171964883804, + -0.08624047785997391, + 0.05034325271844864, + -0.040431030094623566, + -0.004385196603834629, + 0.021939007565379143, + 0.009876782074570656, + -0.03506975993514061, + 0.09117002785205841, + 0.022415461018681526, + -0.021062485873699188, + -0.055084604769945145, + -2.265578302740323e-08, + -0.026928560808300972, + -0.10621470212936401, + -0.025048913434147835, + 0.021207580342888832, + 0.0033732543233782053, + -0.025220131501555443, + -0.026288453489542007, + -0.1025514304637909, + -0.04348701983690262, + -0.0755772516131401, + 0.021847179159522057, + 0.0239157285541296, + -0.10205069184303284, + -0.08799966424703598, + 0.05816582217812538, + 0.03642750531435013, + -0.003932428080588579, + -0.01678750105202198, + -0.04293091967701912, + -0.04454145208001137, + 0.03093893453478813, + 0.013172797858715057, + 0.04796353355050087, + -0.002922610379755497, + 0.0414142869412899, + 0.008865434676408768, + -0.09701396524906158, + 0.046136610209941864, + 0.08968618512153625, + 0.08004531264305115, + 0.05380845442414284, + 0.03755224123597145, + 0.0069449483416974545, + -0.04110730066895485, + -0.04499441385269165, + -0.019545335322618484, + 0.010503471828997135, + -0.0152504313737154, + 0.03588935732841492, + 0.17378626763820648, + -0.03015218675136566, + -0.04039487615227699, + -0.03856619447469711, + -0.007991836406290531, + -0.0016970483120530844, + -0.003011707216501236, + 0.024334654211997986, + 0.00628209812566638, + -0.05548291280865669, + -0.08290819823741913, + 0.047647155821323395, + 1.0547946658334695e-05, + 0.04284675419330597, + 0.09000901132822037, + -0.10618169605731964, + -0.035083986818790436, + 0.026655644178390503, + 0.07359012961387634, + 0.022794201970100403, + 0.008977789431810379, + 0.10978513211011887, + 0.012531064450740814, + 0.06439285725355148, + -0.022247886285185814 + ], + "text-columns-bold||*updated*,typography,print,font,alignment,article": [ + 0.04089655727148056, + 0.003694307990372181, + -0.14382177591323853, + 0.05604808032512665, + 0.06758391112089157, + -0.0066673643887043, + -0.030067693442106247, + -0.02520718052983284, + -0.009761771187186241, + 0.0688779354095459, + 0.04666401818394661, + 0.06773051619529724, + 0.01120936218649149, + -0.07171419262886047, + -0.0258819367736578, + 0.012939452193677425, + 0.015711762011051178, + 0.03387922793626785, + -0.0028667179867625237, + 0.002796117914840579, + -0.10816220939159393, + 0.042041927576065063, + 0.08117983490228653, + 0.04519067332148552, + 0.011016326025128365, + 0.13933394849300385, + -0.01947111077606678, + 0.030585553497076035, + -0.01994156278669834, + -0.11443543434143066, + -0.0873039960861206, + 0.009563394822180271, + 0.12601259350776672, + 0.0040238164365291595, + 0.02780972607433796, + -0.0028246468864381313, + 0.004584441892802715, + 0.01365144643932581, + 0.031102348119020462, + 0.04042603075504303, + 0.0008967361645773053, + -0.1971551477909088, + -0.0368969589471817, + 0.06716036796569824, + -0.02548343688249588, + -0.0502479188144207, + -0.11626982688903809, + -0.0011567685287445784, + 0.004476981703191996, + -0.00911731831729412, + -0.07759573310613632, + -0.04260406643152237, + -0.09831961244344711, + -0.02606095001101494, + -0.004552789498120546, + -0.01013647299259901, + -0.03875600919127464, + 0.028293538838624954, + 0.04810214042663574, + -0.056117866188287735, + 0.02855873852968216, + 0.047586746513843536, + 0.028341300785541534, + 0.0886755883693695, + 0.03480561822652817, + 0.014748106710612774, + -0.015708601102232933, + -0.0014085457660257816, + -0.0325467586517334, + 0.02941122092306614, + -0.0036297691985964775, + 0.019688015803694725, + 0.004164619371294975, + -0.06477464735507965, + -0.06618307530879974, + 0.037084102630615234, + 0.043960873037576675, + -0.007551569491624832, + 0.004128545057028532, + 0.009707609191536903, + -0.032178301364183426, + 0.018083788454532623, + -0.00563406478613615, + 0.03217300400137901, + 0.006177806761115789, + -0.007570755202323198, + -0.04396256431937218, + -0.08364298939704895, + -0.0581490732729435, + -0.021816644817590714, + 0.007674583699554205, + -0.07744196802377701, + 0.030921708792448044, + 0.02004704624414444, + -0.14644043147563934, + 0.05448960140347481, + 0.024062778800725937, + -0.024242980405688286, + -0.017495831474661827, + 0.07740963995456696, + 0.02350463718175888, + 0.047160398215055466, + 0.011261495761573315, + 0.03758929669857025, + -0.022308336570858955, + -0.04831739142537117, + -0.006548163015395403, + 0.025687815621495247, + 0.011276437900960445, + 0.012747458182275295, + 0.019542988389730453, + -0.07665498554706573, + -0.12660059332847595, + -0.10138431191444397, + -0.028084320947527885, + -0.04168112576007843, + -0.03838275000452995, + -0.03800197318196297, + 0.09252326935529709, + 0.03492707759141922, + 0.010851100087165833, + -0.014855233952403069, + -0.07191263139247894, + -0.08109655976295471, + -0.044994521886110306, + 0.04789863899350166, + 0.05121389031410217, + -1.2056756274571305e-33, + 0.015701400116086006, + 0.0743153989315033, + -0.010677355341613293, + 0.1274738907814026, + -0.0038429212290793657, + 0.028885893523693085, + -0.06154690682888031, + -0.08402719348669052, + -0.004752108361572027, + 0.008909011259675026, + 0.08885002881288528, + 0.13168351352214813, + -0.053870342671871185, + 0.06337647140026093, + 0.001961245434358716, + -0.050395868718624115, + 0.004564308561384678, + 0.002716208342462778, + -0.1152535006403923, + 0.046425219625234604, + -0.0003737271763384342, + -0.010174847207963467, + -0.010288508608937263, + -0.03465120494365692, + 0.04473648592829704, + -0.022780675441026688, + 0.017560850828886032, + 0.005579814780503511, + -0.12098870426416397, + -0.004598504863679409, + 0.024601615965366364, + 0.02192588709294796, + 0.042315103113651276, + -0.004975614137947559, + -0.022110413759946823, + -0.008211630396544933, + -0.03813875839114189, + -0.020761102437973022, + 0.020573213696479797, + -0.014028581790626049, + -0.12649373710155487, + 0.008855878375470638, + 0.019493723288178444, + -0.059764910489320755, + 0.07559242844581604, + 0.14040204882621765, + -0.026211092248558998, + -0.033675823360681534, + 0.038194380700588226, + -0.06380991637706757, + 0.042187463492155075, + 0.008962828665971756, + -0.013640298508107662, + 0.038116857409477234, + 0.05107114091515541, + -0.012889320962131023, + 0.010305735282599926, + 0.05598725378513336, + 0.05490850284695625, + -0.014158977195620537, + 0.04136157035827637, + -0.023370157927274704, + 0.00019190624880138785, + -0.02986273169517517, + -0.03860621899366379, + 0.06569094210863113, + -0.05839671939611435, + 0.0004996680654585361, + 0.08010373264551163, + 0.00956517830491066, + 0.020176688209176064, + 0.041228923946619034, + 0.03451605141162872, + 0.07435525953769684, + -0.056890714913606644, + 0.06785695254802704, + -0.00395215256139636, + -0.07860445231199265, + -0.029183827340602875, + -0.052600182592868805, + -0.0012483703903853893, + 0.02453172206878662, + -0.052026379853487015, + 0.029096636921167374, + -0.03005964495241642, + 0.001346793258562684, + -0.015435878187417984, + -0.04189029708504677, + 0.0036801896058022976, + 0.01931772194802761, + -0.05139195919036865, + 0.03274904564023018, + 0.003120682667940855, + -0.07858721166849136, + -0.05228150263428688, + -2.5688952322442873e-33, + 0.04219481348991394, + -0.0075154691003263, + -0.08404739201068878, + -0.04592607542872429, + 0.0012696984922513366, + 0.08284009993076324, + -0.04870724305510521, + 0.04426901042461395, + 0.048581477254629135, + 0.02286890149116516, + 0.06442487239837646, + -0.01586873270571232, + -0.09513285756111145, + -0.03015955165028572, + -0.02900094725191593, + 0.05305729806423187, + 0.02581452764570713, + 0.041898973286151886, + -0.07109915465116501, + 0.0038458267226815224, + -0.03824494779109955, + 0.037409406155347824, + -0.029116380959749222, + 0.11442189663648605, + 0.04680338501930237, + -0.03288935869932175, + 0.0017107614548876882, + -0.031657543033361435, + -0.06406809389591217, + -0.02027645707130432, + -0.04895787313580513, + -0.05734614282846451, + 0.040157150477170944, + 0.07443463057279587, + -0.039388760924339294, + 0.06902523338794708, + 0.021341843530535698, + -0.03612719476222992, + 0.01872778870165348, + 0.03437395766377449, + -0.004085436463356018, + 0.033289335668087006, + 0.012401287443935871, + 0.034574318677186966, + -0.012997952289879322, + 0.029605651274323463, + -0.04076781123876572, + -0.07786216586828232, + 0.004163285251706839, + 0.03899611160159111, + 0.03415532782673836, + 0.010469676926732063, + -0.014880607835948467, + 0.009553922340273857, + -0.04225378483533859, + -0.015799492597579956, + -0.00796540081501007, + 0.023168325424194336, + -0.06794101744890213, + 0.028770850971341133, + -0.008526161313056946, + 0.08776386082172394, + -0.026189781725406647, + 0.011125985532999039, + 0.04706096649169922, + -0.0679037794470787, + -0.018045470118522644, + -0.0814206674695015, + -0.00691747572273016, + 0.0044005317613482475, + 0.007420873269438744, + -0.04204832762479782, + -0.03384274244308472, + 0.03322043642401695, + 0.05753013864159584, + -0.0773577094078064, + 0.009810667484998703, + 0.011758033186197281, + -0.025890760123729706, + -0.021955447271466255, + 0.009405186399817467, + 0.01755869761109352, + 0.02377432771027088, + 0.056452564895153046, + -0.0831475555896759, + 0.0731634572148323, + 0.007420824375003576, + -0.04834009334445, + -0.013345122337341309, + 0.005328143015503883, + -0.046530209481716156, + -0.02106657810509205, + -0.0010472032008692622, + 0.00955803133547306, + -0.09268487244844437, + -2.315467284574879e-08, + 0.04055619239807129, + -0.08699186146259308, + -0.0749034434556961, + 0.004171880427747965, + 0.0008955601952038705, + -0.0487515851855278, + -0.011262254789471626, + -0.053360093384981155, + -0.03949204087257385, + -0.028090059757232666, + 0.02744254283607006, + 0.054302528500556946, + -0.07872051000595093, + -0.08059804141521454, + 0.05277709290385246, + 0.034171827137470245, + -0.03249534219503403, + 0.047716185450553894, + -0.02489793859422207, + -0.09010142087936401, + 0.04860566928982735, + 0.06916072964668274, + -0.003178149927407503, + 0.008980593644082546, + 0.08200695365667343, + 0.017230255529284477, + -0.06460080295801163, + 0.0004080513899680227, + 0.0903080552816391, + 0.04849624261260033, + 0.05752056837081909, + -0.005238104611635208, + 0.021959751844406128, + -0.024166934192180634, + -0.016477324068546295, + -0.045788150280714035, + 0.05003713443875313, + -0.023354774340987206, + -0.013297643512487411, + 0.12550391256809235, + -0.056111738085746765, + -0.011044018901884556, + -0.051745276898145676, + -0.015929415822029114, + -0.024733414873480797, + 0.048338040709495544, + 0.024938415735960007, + 0.015566525980830193, + -0.06532298773527145, + -0.14031517505645752, + 0.011940049938857555, + -0.011143171228468418, + 0.06846657395362854, + 0.022710464894771576, + -0.06370816379785538, + -0.006192939355969429, + 0.057568296790122986, + 0.12211717665195465, + 0.08917314559221268, + -0.033557917922735214, + 0.08618196845054626, + 0.019146917387843132, + 0.0593741200864315, + -0.015305384993553162 + ], + "text-h-bold||heading,typography,print": [ + 0.01988271251320839, + 0.053218256682157516, + -0.03329085931181908, + 0.059380363672971725, + 0.053611963987350464, + 0.017141243442893028, + 0.036493316292762756, + -0.011005244217813015, + -0.019367171451449394, + -0.007230596151202917, + 0.011310448870062828, + 0.030999870970845222, + 0.08901172876358032, + -0.07652872055768967, + -0.0043753283098340034, + -0.010064139030873775, + 0.0047654882073402405, + 0.01948908530175686, + 0.05270000174641609, + -0.01256098598241806, + -0.0418604351580143, + 0.10538855195045471, + 0.07401859760284424, + 0.054790906608104706, + -0.0246107280254364, + 0.03823855519294739, + -0.0073321363888680935, + 0.03775208443403244, + -0.024524440988898277, + -0.07796097546815872, + -0.026426181197166443, + -0.052251048386096954, + 0.10177676379680634, + 0.03138887137174606, + 0.06054164096713066, + 0.02687615156173706, + 0.015729699283838272, + -0.04015974700450897, + 0.05078306421637535, + 0.025184253230690956, + 0.024586103856563568, + -0.12029223144054413, + -0.0792679637670517, + 0.07647714763879776, + 0.002901417901739478, + -0.02184201218187809, + -0.08694708347320557, + 0.0069449106231331825, + 0.005333633627742529, + -0.021713269874453545, + -0.04360124468803406, + -0.09404993057250977, + -0.054987479001283646, + -0.0505472868680954, + 0.018077174201607704, + 0.093874491751194, + -0.032231107354164124, + 0.00923672504723072, + 0.038035497069358826, + -0.06172546371817589, + -0.039492085576057434, + 0.029835524037480354, + 0.026880333200097084, + -0.015776600688695908, + 0.07212423533201218, + 0.0035162223502993584, + 0.002342172432690859, + 0.0951862782239914, + -0.09439194202423096, + 0.10352587699890137, + 0.0261329784989357, + 0.005148199386894703, + -0.011672409251332283, + -0.06069805845618248, + -0.037362802773714066, + -0.003262753365561366, + 0.006377578712999821, + -0.04224465414881706, + 0.01104450412094593, + -0.009923723526299, + -0.08977294713258743, + 0.020153654739260674, + 0.014115323312580585, + 0.10134773701429367, + 0.01213749311864376, + 0.0730554461479187, + -0.08669884502887726, + -0.12047871202230453, + -0.05470864102244377, + -4.27696795668453e-06, + -0.03482954949140549, + -0.08249519765377045, + 0.016165444627404213, + 0.01799006201326847, + -0.12866008281707764, + 0.049649108201265335, + 0.04612725228071213, + 0.010517163202166557, + -0.02976112626492977, + 0.06736500561237335, + 0.011700314469635487, + 0.036730218678712845, + 0.023601368069648743, + 0.0011549823684617877, + -0.04910039156675339, + 0.02529001422226429, + 0.007791443727910519, + -0.039968788623809814, + -0.0069003477692604065, + -0.013916180469095707, + 0.028042349964380264, + -0.07266310602426529, + -0.10599719732999802, + -0.06964777410030365, + -0.05206406116485596, + -0.0546845979988575, + -0.018512962386012077, + -0.03690936788916588, + 0.09948098659515381, + 0.0048306831158697605, + -0.010774867609143257, + -0.026193920522928238, + -0.03467075526714325, + -0.05243053659796715, + -0.00592218479141593, + -0.02492542751133442, + 0.08932661265134811, + -2.2912956291418807e-33, + 0.04429715871810913, + 0.06874017417430878, + -0.03932631388306618, + 0.10562453418970108, + 0.004856009501963854, + 0.042628996074199677, + -0.0780845433473587, + -0.03411572426557541, + -0.07088621705770493, + 0.017726987600326538, + 0.04305196553468704, + 0.01158179808408022, + -0.013335060328245163, + 0.020404286682605743, + -0.015953416004776955, + -0.06932383030653, + -0.0018786141881719232, + -0.010756785981357098, + -0.15234465897083282, + 0.03535876050591469, + -0.08055278658866882, + 0.020440151914954185, + -0.0064783948473632336, + -0.0798211395740509, + -0.04250890016555786, + -0.010278603993356228, + 0.04102810099720955, + -0.012936333194375038, + -0.06422830373048782, + 0.02901054359972477, + 0.04075009375810623, + 0.02411244623363018, + 0.05106118693947792, + -0.04464235156774521, + -0.04908331111073494, + 0.019370848312973976, + -0.10138481110334396, + -0.002096925163641572, + -0.0066793509759008884, + 0.0318789929151535, + -0.10440778732299805, + 0.0484284833073616, + 0.04935522377490997, + -0.06399202346801758, + 0.020880745723843575, + 0.18859761953353882, + 0.026534829288721085, + -0.04220782592892647, + 0.005565059836953878, + -0.004473785869777203, + 0.020452845841646194, + -0.03132243454456329, + 0.0017318993341177702, + 0.0283405352383852, + 0.03230929374694824, + -0.03342610225081444, + -0.01248444989323616, + 0.09875744581222534, + 0.06933166086673737, + 0.002074059098958969, + 0.05524340271949768, + 0.03312913328409195, + 0.04081610217690468, + 0.04281749203801155, + -0.0162664745002985, + 0.06808362901210785, + -0.006416988559067249, + 0.03394315391778946, + 0.05850406736135483, + -0.03714456409215927, + 0.031351201236248016, + 0.0263210516422987, + -0.012961950153112411, + 0.07125162333250046, + -0.03560171276330948, + 0.05342526733875275, + 0.02400018274784088, + -0.07260694354772568, + 0.04972708225250244, + -0.07295344769954681, + -0.02902427688241005, + -0.0020036862697452307, + 0.028434796258807182, + 0.030829686671495438, + 0.026638798415660858, + -0.004017745144665241, + -0.044707030057907104, + -0.05205419659614563, + -0.011211536824703217, + 0.06895551085472107, + -0.0750712901353836, + -0.046210113912820816, + 0.0217929407954216, + -0.10998181998729706, + -0.07140259444713593, + -2.568979996407241e-34, + 0.04501715302467346, + -0.011319943703711033, + -0.0813366174697876, + -0.06218590587377548, + -0.05366339907050133, + 0.05668559670448303, + 0.02893112786114216, + 0.040063098073005676, + -0.009452448226511478, + 0.028958367183804512, + 0.04500884935259819, + 0.021172737702727318, + -0.055476535111665726, + -0.03064371459186077, + 0.010444016195833683, + -0.0099443094804883, + 0.036874786019325256, + 0.036497995257377625, + -0.06204219534993172, + 0.014568036422133446, + -0.033789534121751785, + -0.09867755323648453, + -0.0330837145447731, + 0.09951847791671753, + 0.07182393223047256, + 0.019971836358308792, + 0.028480548411607742, + 0.06304140388965607, + -0.0365121029317379, + 0.007472395431250334, + 0.0051585291512310505, + -0.03283372521400452, + 0.07311264425516129, + 0.046716660261154175, + -0.032395947724580765, + 0.0035718069411814213, + -0.01304532028734684, + 0.00537638645619154, + 0.04501397907733917, + 0.007289964240044355, + 0.001893635024316609, + -0.008613650687038898, + 0.09036125242710114, + -0.03481617942452431, + -0.0625191181898117, + 0.05031844228506088, + -0.0460844486951828, + -0.08534668385982513, + 0.030176177620887756, + 0.10350210964679718, + 0.02234666608273983, + -0.006981679704040289, + 0.009253212250769138, + 0.01606372371315956, + -0.08893979340791702, + -0.027155403047800064, + -0.03489066660404205, + 0.0465967021882534, + -0.08832217752933502, + 0.04131900146603584, + 0.006086241453886032, + 0.0830957442522049, + -0.03532597795128822, + 0.05627543479204178, + 0.029283922165632248, + -0.04647114872932434, + -0.003697050968185067, + -0.08852461725473404, + 0.0012822459684684873, + -0.008306585252285004, + -0.003978565335273743, + -0.013066422194242477, + 0.022455425933003426, + 0.04677015542984009, + -0.01919315941631794, + -0.02666318789124489, + 0.024089578539133072, + 0.03416462987661362, + -0.04000413045287132, + 0.0238688662648201, + -0.0003777619276661426, + 0.01902942731976509, + -0.06987882405519485, + 0.042600322514772415, + -0.037717532366514206, + 0.013116110116243362, + -0.03520893305540085, + -0.03309774398803711, + 0.0059911832213401794, + -0.02288849838078022, + 0.0007990110898390412, + 0.012297160923480988, + 0.022141829133033752, + 0.023792320862412453, + -0.06903143227100372, + -1.8781108224175114e-08, + 0.009236607700586319, + -0.1332564353942871, + 0.02087618224322796, + -0.0005410073790699244, + -0.040433138608932495, + 0.025245221331715584, + 0.0020024487748742104, + -0.137004092335701, + -0.05582844838500023, + -0.01963498815894127, + 0.026834949851036072, + -0.022039709612727165, + -0.06867098063230515, + -0.12039081752300262, + 0.017514821141958237, + 0.0031726760789752007, + -0.0004223607247695327, + 0.03503483533859253, + -0.06339222192764282, + -0.10230801999568939, + -0.0024140076711773872, + 0.04825787991285324, + 0.04876610264182091, + -0.0016919324407353997, + 0.027232661843299866, + -0.000651675567496568, + -0.06489551812410355, + -0.00979533139616251, + 0.09429039806127548, + -0.024301474913954735, + 0.06594457477331161, + 0.05389545485377312, + -0.0023906806018203497, + 0.018092766404151917, + -0.01575792394578457, + -0.04059402644634247, + -0.002362145110964775, + 0.01226274948567152, + 0.030866431072354317, + 0.1292569637298584, + -0.0805586650967598, + 0.03952066972851753, + 0.004571889527142048, + -0.012456274591386318, + 0.034051358699798584, + 0.0213110763579607, + 0.06293075531721115, + 0.002671027323231101, + -0.03046359308063984, + -0.10526947677135468, + 0.01457121316343546, + 0.012788047082722187, + 0.052932046353816986, + 0.0766228437423706, + -0.09254641830921173, + -0.01867673359811306, + 0.08188102394342422, + 0.06350962817668915, + -0.04804575443267822, + -0.032099008560180664, + 0.10287375003099442, + -0.027218153700232506, + 0.06418592482805252, + 0.006133947521448135 + ], + "text-h-five-bold||heading,h5,typography,print": [ + -0.006740578915923834, + 0.05512884259223938, + 0.008407999761402607, + 0.04581431671977043, + 0.07999073714017868, + 0.017183568328619003, + 0.01561842579394579, + -0.030511273071169853, + -0.03076303005218506, + 0.00821633916348219, + 0.01647849567234516, + 0.03361954912543297, + 0.05027215555310249, + -0.09484429657459259, + -0.037371568381786346, + -0.006779600866138935, + -0.027745850384235382, + 0.0017224869225174189, + -0.011564504355192184, + -0.04166748747229576, + 0.0020740332547575235, + 0.07419987767934799, + 0.047650426626205444, + 0.06697140634059906, + -0.031100286170840263, + 0.04600900784134865, + -0.017941856756806374, + 0.06678659468889236, + -0.03944778814911842, + -0.09314486384391785, + -0.036508750170469284, + -0.017087405547499657, + 0.05952512472867966, + 0.007250307127833366, + 0.030199283733963966, + 0.03546423837542534, + -0.00218997523188591, + -0.02209170162677765, + 0.059208452701568604, + 0.023884765803813934, + 0.027622617781162262, + -0.15048621594905853, + -0.08692649006843567, + 0.07960721850395203, + 0.0010420605540275574, + -0.019987931475043297, + -0.1149362325668335, + 0.01778205670416355, + 0.019541235640645027, + -0.023136582225561142, + -0.06983955204486847, + -0.10556544363498688, + -0.07421895116567612, + -0.07599632441997528, + -0.005320562515407801, + 0.0533268041908741, + -0.0284477099776268, + -0.011769971810281277, + 0.05016814172267914, + -0.06727950274944305, + -0.038159869611263275, + 0.026210973039269447, + 0.012013260275125504, + -0.0033509074710309505, + 0.05462149158120155, + 0.017601292580366135, + -0.006108020897954702, + 0.05562266707420349, + -0.08949121832847595, + 0.13812366127967834, + 0.020002545788884163, + -0.011928762309253216, + 0.005486960522830486, + -0.03463282808661461, + -0.05409267544746399, + -0.02559836022555828, + -0.007403139490634203, + -0.0551467090845108, + 0.03455358371138573, + 0.005750519689172506, + -0.11276847124099731, + 0.03845341503620148, + 0.0035695014521479607, + 0.11418738961219788, + -0.0011987490579485893, + 0.05306433141231537, + -0.0849759578704834, + -0.09286182373762131, + -0.056098151952028275, + -0.03963819891214371, + -0.04191388562321663, + -0.07429569959640503, + 0.0069814082235097885, + 0.003282629419118166, + -0.14912572503089905, + 0.059381261467933655, + 0.017548328265547752, + -0.0066115050576627254, + -0.029855018481612206, + 0.05230037495493889, + 0.016121719032526016, + 0.003117433749139309, + 0.01997004821896553, + -0.014142835512757301, + -0.04408613219857216, + -0.005825637839734554, + 0.020911026746034622, + -0.02465522289276123, + -0.010144760832190514, + -0.04766179993748665, + -0.014085568487644196, + -0.054935067892074585, + -0.09640808403491974, + -0.07617796957492828, + -0.02899937704205513, + -0.0407356359064579, + -0.03535175696015358, + -0.027415139600634575, + 0.11692109704017639, + -0.016036704182624817, + -0.0014308372046798468, + -0.009196601808071136, + -0.02061714045703411, + -0.06191367283463478, + -0.03793609142303467, + -0.04364074021577835, + 0.054513294249773026, + -1.1544975421582052e-33, + 0.03035234846174717, + 0.05481017380952835, + -0.01590636931359768, + 0.15752409398555756, + 0.004744133912026882, + 0.0328792966902256, + -0.07062869518995285, + -0.031064242124557495, + -0.06577229499816895, + 0.03782908618450165, + 0.06274189054965973, + 0.016043411567807198, + -0.015410292893648148, + -0.003515017218887806, + 0.02696952037513256, + -0.05913542956113815, + -0.0010082164080813527, + 0.004912508185952902, + -0.15347769856452942, + 0.03271464258432388, + -0.06887485086917877, + 0.04782997444272041, + -0.007512585259974003, + -0.08179036527872086, + -0.03043697029352188, + 0.04919973015785217, + 0.04213174432516098, + -0.02643490582704544, + -0.022702768445014954, + 0.034337252378463745, + 0.029409807175397873, + 0.028197046369314194, + 0.06107988581061363, + -0.06559938937425613, + -0.012624338269233704, + 0.04844672605395317, + -0.06404121220111847, + 0.030937744304537773, + 0.005735707934945822, + 0.024604016914963722, + -0.060354698449373245, + 0.02989831566810608, + 0.014111651107668877, + -0.015725333243608475, + 0.046530768275260925, + 0.20189185440540314, + -0.0013162054819986224, + -0.04583245515823364, + -0.0009602668578736484, + -0.016218679025769234, + 0.0015675175236538053, + -0.02895156852900982, + 0.04118615388870239, + 0.01821655035018921, + 0.016283147037029266, + -0.025942372158169746, + -0.017208008095622063, + 0.10671304166316986, + 0.049135737121105194, + 0.02579822763800621, + 0.0616413913667202, + 0.040499042719602585, + 0.030750395730137825, + 0.04653143882751465, + -0.014142383821308613, + 0.08061626553535461, + -0.007317082025110722, + 0.011024067178368568, + 0.06967350840568542, + -0.010127348825335503, + 0.021302692592144012, + 0.07056935131549835, + 0.028235312551259995, + 0.10090532898902893, + -0.03521845117211342, + 0.04258425533771515, + 0.0323653519153595, + -0.0514347180724144, + 0.027137013152241707, + -0.040216781198978424, + -0.049508824944496155, + -0.025352714583277702, + 0.04448241367936134, + 0.018574966117739677, + 0.0275209229439497, + -0.007012832909822464, + -0.01239958219230175, + -0.06336027383804321, + -0.012539776973426342, + 0.06603635102510452, + -0.03270673006772995, + -0.07036688923835754, + 0.05015753209590912, + -0.09165965020656586, + -0.07049107551574707, + -1.4676789000825216e-33, + 0.04512028768658638, + -0.03081461973488331, + -0.06329624354839325, + -0.03641330450773239, + -0.06305063515901566, + 0.06954020261764526, + 0.03341817483305931, + 0.014966508373618126, + -0.03328195586800575, + 0.04560859873890877, + 0.05251612514257431, + 0.04945347458124161, + -0.05281957983970642, + 0.00015996568254195154, + 0.0012525847414508462, + 0.010360625572502613, + 0.04151846840977669, + 0.03183089196681976, + -0.03190276026725769, + 0.025226015597581863, + 0.0032905559055507183, + -0.09441183507442474, + -0.04448382928967476, + 0.0933782085776329, + 0.10808529704809189, + 0.05592062324285507, + 0.063998281955719, + 0.007157930638641119, + -0.026450227946043015, + -0.014579585753381252, + -0.007693808525800705, + -0.04911547526717186, + 0.07854847609996796, + 0.041844408959150314, + -0.02780936285853386, + -0.015898551791906357, + -0.030670026317238808, + 0.02954515442252159, + -0.001133375451900065, + 0.01867063157260418, + -0.015237315557897091, + -0.005228368099778891, + 0.09371906518936157, + -0.009251735173165798, + -0.08553255349397659, + 0.022702867165207863, + -0.04881378635764122, + -0.056117620319128036, + 0.014397518709301949, + 0.09044769406318665, + 0.029017742723226547, + -0.021934032440185547, + -0.03870343044400215, + -0.00639813207089901, + -0.10580780357122421, + -0.012515795417129993, + 0.0011560412822291255, + 0.05107411742210388, + -0.08617011457681656, + 0.06604466587305069, + -0.0017624602187424898, + 0.07557319849729538, + -0.028484797105193138, + 0.04273499920964241, + 0.04453699663281441, + -0.01689619943499565, + 0.006199799943715334, + -0.07944948226213455, + -0.038909438997507095, + -0.024512190371751785, + -0.028077730908989906, + -0.02186056226491928, + 0.04037191718816757, + 0.015384318307042122, + -0.018666984513401985, + -0.014388908632099628, + 0.039889395236968994, + 0.05496110022068024, + -0.025501983240246773, + 0.04232601076364517, + -0.010992677882313728, + 0.0027782476972788572, + -0.10343458503484726, + 0.05666651949286461, + -0.05253952741622925, + -0.010590439662337303, + -0.01827913708984852, + -0.007903147488832474, + 0.04270753636956215, + 0.006910369265824556, + 0.010952621698379517, + 0.030182426795363426, + 0.02434154599905014, + 0.014104428701102734, + -0.07165130972862244, + -1.9801516870643354e-08, + 0.019688282161951065, + -0.13874484598636627, + 0.03489264100790024, + -0.008323664776980877, + -0.03964891657233238, + 0.04096216708421707, + -0.016543427482247353, + -0.13940240442752838, + -0.015665194019675255, + 0.021401645615696907, + 0.04091138765215874, + -0.021902499720454216, + -0.057453908026218414, + -0.09596958756446838, + -0.0022751130163669586, + -0.013670504093170166, + -0.018203267827630043, + 0.04246552288532257, + -0.03454744815826416, + -0.0905577540397644, + -0.04313144460320473, + 0.02844422496855259, + 0.04812377691268921, + -0.0158231183886528, + 0.038971908390522, + -0.03880266845226288, + -0.036239687353372574, + -0.007482360117137432, + 0.07437872141599655, + -0.03568276762962341, + 0.05276181176304817, + 0.07356508821249008, + -0.014581099152565002, + 0.029715711250901222, + 0.004341667518019676, + -0.0012776532676070929, + -0.0261387936770916, + 0.023027164861559868, + 0.018222825601696968, + 0.12224669009447098, + -0.09882880747318268, + -0.010881949216127396, + 0.003761645406484604, + -0.014819140546023846, + 0.034920498728752136, + -0.011608542874455452, + 0.06094275042414665, + -0.02909514680504799, + -0.016513770446181297, + -0.1174212396144867, + -0.018547995015978813, + 0.007527041248977184, + 0.0650368332862854, + 0.054462406784296036, + -0.08027960360050201, + -0.004907635971903801, + 0.10344231873750687, + 0.03160395473241806, + -0.041555799543857574, + -0.012487850151956081, + 0.07357543706893921, + -0.006254866719245911, + 0.0631953552365303, + 0.020126178860664368 + ], + "text-h-four-bold||*updated*,heading,h4,typography,print": [ + 0.0386606864631176, + 0.07991418987512589, + -0.01161645445972681, + 0.031653132289648056, + 0.04907657951116562, + 0.012642431072890759, + 0.01212688535451889, + -0.04195651784539223, + -0.027700578793883324, + 0.010263814590871334, + 0.021698065102100372, + 0.02605942077934742, + 0.05440798029303551, + -0.11177696287631989, + -0.04531913623213768, + 0.03245903179049492, + -0.025308318436145782, + 0.027059324085712433, + -0.006109512876719236, + -0.027664732187986374, + -0.06067298725247383, + 0.07110780477523804, + 0.03802849352359772, + 0.07986870408058167, + -0.023761572316288948, + 0.07614709436893463, + -0.03494303300976753, + 0.016069162636995316, + -0.01696777157485485, + -0.0891808271408081, + -0.011023839935660362, + -0.007155274972319603, + 0.11370711773633957, + 0.006706365384161472, + 0.06304022669792175, + 0.0003456470731180161, + 0.02660573646426201, + -0.020832689478993416, + 0.06163942068815231, + 0.05976760759949684, + 0.040452003479003906, + -0.12658631801605225, + -0.06772062927484512, + 0.08102098852396011, + -0.024131689220666885, + -0.0053914329037070274, + -0.08360189199447632, + -0.015772849321365356, + 0.017479483038187027, + -0.021738167852163315, + -0.04437489062547684, + -0.11496996879577637, + -0.09403298795223236, + -0.06007819622755051, + 0.006289255805313587, + 0.05454030632972717, + -0.016142433509230614, + 0.011929666623473167, + 0.06026313453912735, + -0.05907045677304268, + 0.029656967148184776, + 0.03762674704194069, + 0.03674640133976936, + -0.0008484820718877017, + 0.05124596878886223, + 0.0075982967391610146, + 0.011371215805411339, + 0.015569520182907581, + -0.06202738359570503, + 0.0938006117939949, + 0.039287835359573364, + 0.05398258939385414, + 0.006781062576919794, + -0.0699249804019928, + -0.05243359133601189, + -0.03808630630373955, + 0.021693529561161995, + -0.02471771277487278, + 0.03501402586698532, + -0.013437090441584587, + -0.04741828143596649, + -0.0009478142601437867, + 0.014414634555578232, + 0.04277969151735306, + 0.008020590990781784, + 0.03704068064689636, + -0.07562455534934998, + -0.13750648498535156, + -0.05964981019496918, + -0.01742105558514595, + -0.027887223288416862, + -0.09861454367637634, + 0.00645351130515337, + -0.017738889902830124, + -0.16636385023593903, + 0.08148519694805145, + 0.038417696952819824, + -0.007642388343811035, + 0.020844971761107445, + 0.10727924108505249, + 0.015423051081597805, + 0.041819747537374496, + -0.030268942937254906, + 0.00502659659832716, + -0.029263487085700035, + 0.015101103112101555, + 0.010170087218284607, + 0.02111891470849514, + -0.010415646247565746, + -0.0005294831935316324, + -0.004542400594800711, + -0.07954584062099457, + -0.09685682505369186, + -0.0829525962471962, + -0.059903524816036224, + -0.03453949838876724, + -0.011085145175457, + -0.016883485019207, + 0.05885082110762596, + 0.028886210173368454, + 0.03519868478178978, + -0.021908294409513474, + 0.003374279011040926, + -0.06581002473831177, + -0.02477174997329712, + -0.039921242743730545, + 0.07088268548250198, + -1.4131532272776452e-33, + 0.0608009435236454, + 0.07133904844522476, + -0.009977108798921108, + 0.11402244120836258, + 0.00860667321830988, + 0.02884104661643505, + -0.07309362292289734, + -0.07235555350780487, + -0.0658409595489502, + 0.003411045763641596, + 0.06625571101903915, + 0.03813248127698898, + -0.024240558966994286, + 0.022531278431415558, + -0.023641057312488556, + -0.11175841838121414, + 0.035610631108284, + -0.00042003209819085896, + -0.09858199208974838, + 0.046431440860033035, + -0.07992710918188095, + 0.03984072804450989, + -0.018090100958943367, + -0.0558396652340889, + -0.013705743476748466, + 0.008478835225105286, + 0.045965466648340225, + -0.014681750908493996, + -0.035634271800518036, + 0.023416319862008095, + 0.03008260205388069, + 0.04604880139231682, + 0.04902609437704086, + -0.06432990729808807, + -0.04821043461561203, + -0.006548586301505566, + -0.10709266364574432, + -0.03855203837156296, + -0.0016236650990322232, + -0.008418090641498566, + -0.09720858186483383, + 0.022713694721460342, + -0.005442493129521608, + -0.08447803556919098, + 0.0685114935040474, + 0.16470061242580414, + -0.034051403403282166, + -0.031238602474331856, + 0.015125769190490246, + -0.03147153556346893, + -0.004718186799436808, + 0.008060261607170105, + -0.00857290904968977, + -0.0011602716986089945, + -0.024697018787264824, + -0.04790004342794418, + -0.034408967941999435, + 0.07117051631212234, + 0.06852512061595917, + -0.026599600911140442, + 0.0846465677022934, + 0.03387909010052681, + -0.004615437239408493, + 0.039798323065042496, + 0.0019842619076371193, + 0.052960753440856934, + 0.01030866801738739, + -0.005785850808024406, + 0.047791462391614914, + 0.005226411856710911, + 0.011695392429828644, + 0.014321129769086838, + 0.02451092191040516, + 0.0848514512181282, + -0.03464441001415253, + 0.01649799756705761, + -0.014548365958034992, + -0.046690575778484344, + 0.033749449998140335, + -0.07077084481716156, + -0.020547661930322647, + -0.007386777084320784, + 0.022915560752153397, + 0.0429045669734478, + 0.059784721583127975, + -0.03416632488369942, + -0.008567537181079388, + -0.012024318799376488, + -0.00647444324567914, + 0.06902943551540375, + -0.07548202574253082, + -0.02205534279346466, + -0.01692023128271103, + -0.11211888492107391, + -0.04935465008020401, + -1.984193505556735e-33, + 0.06519625335931778, + 0.03442531079053879, + -0.10167992115020752, + -0.04160040616989136, + -0.06540920585393906, + 0.07359807938337326, + 0.0026640184223651886, + 0.0584867037832737, + 0.01609661802649498, + 0.02630424313247204, + 0.07701940834522247, + 0.016435610130429268, + -0.0721544697880745, + -0.0418124794960022, + 0.005722482688724995, + 0.053705550730228424, + -0.0018436777172610164, + -0.0036446580197662115, + -0.08133098483085632, + 0.05518195778131485, + -0.02929925173521042, + -0.0618974007666111, + -0.06245008483529091, + 0.10423930734395981, + 0.09410978853702545, + -0.012883116491138935, + 0.06981788575649261, + 0.044485390186309814, + -0.025252291932702065, + -0.0015037221601232886, + -0.040484894067049026, + -0.049301255494356155, + 0.04740393906831741, + 0.0842297151684761, + -0.03254033997654915, + -0.008424841798841953, + 0.028495488688349724, + -0.0197783000767231, + -0.007564880885183811, + 0.04038853943347931, + 0.018458347767591476, + 0.024908283725380898, + 0.08460251241922379, + 0.019818993285298347, + -0.04144113138318062, + 0.03400564193725586, + -0.06387235224246979, + -0.025167671963572502, + -0.015711717307567596, + 0.07440150529146194, + 0.024741768836975098, + -0.04543525353074074, + -0.029409613460302353, + -0.008777692914009094, + -0.05004027485847473, + 0.0010739980498328805, + -0.026521842926740646, + 0.03884793445467949, + -0.10593163222074509, + 0.05437498167157173, + -0.036438945680856705, + 0.05342818424105644, + 0.006140316370874643, + 0.04578247666358948, + 0.027745991945266724, + -0.049657680094242096, + -0.0407433919608593, + -0.11226418614387512, + -0.01583225652575493, + -0.03981013223528862, + 0.01767755299806595, + -0.03234165161848068, + -0.03658256679773331, + 0.012962124310433865, + 0.014554383233189583, + -0.043216947466135025, + -0.0016998029313981533, + -0.0074088419787585735, + -0.04889393597841263, + 0.0171084925532341, + -0.034418754279613495, + 0.02610160782933235, + -0.02223900705575943, + 0.03783255070447922, + -0.057342540472745895, + 0.00822572223842144, + -0.01254344917833805, + 0.01152120716869831, + 0.03701318800449371, + -0.0545421838760376, + -0.00019989817519672215, + 0.03731636703014374, + 0.03859790787100792, + 0.027539294213056564, + -0.08545632660388947, + -2.434070900392271e-08, + 0.021381976082921028, + -0.10567983239889145, + 0.016989246010780334, + 0.014547787606716156, + -0.026870882138609886, + 0.01172739826142788, + -0.028689570724964142, + -0.10774661600589752, + -0.04247630760073662, + -0.06494777649641037, + 0.04211395978927612, + -0.002130273263901472, + -0.05272851139307022, + -0.1225886270403862, + 0.049352385103702545, + 0.005218924954533577, + -0.05646565183997154, + 0.006519865710288286, + -0.05408035218715668, + -0.1010325625538826, + -0.013469822704792023, + 0.056201331317424774, + 0.037942804396152496, + 0.00722051365301013, + 0.04485531523823738, + -0.009168018586933613, + -0.03267529979348183, + 0.0012036269763484597, + 0.05313541367650032, + -0.029494279995560646, + 0.1173282265663147, + 0.05294637009501457, + 0.013636660762131214, + -0.002089734422042966, + -0.004844261333346367, + -0.04947493225336075, + 0.0177609883248806, + 0.037606533616781235, + 0.05021345242857933, + 0.1382874995470047, + -0.05675546079874039, + -0.002548523712903261, + -0.019246773794293404, + 0.007384506519883871, + 0.017842229455709457, + 0.018422555178403854, + 0.016687463968992233, + -0.04397450014948845, + -0.05080506578087807, + -0.11554279178380966, + 0.002573626348748803, + 0.034061383455991745, + 0.07131436467170715, + 0.0839228555560112, + -0.06699977815151215, + 0.0040615820325911045, + 0.09510120004415512, + 0.06375322490930557, + -0.015307556837797165, + -0.048235755413770676, + 0.0998711884021759, + -0.01983674429357052, + 0.05742037296295166, + 0.022017447277903557 + ], + "text-h-one-bold||heading,h1,typography,print": [ + 0.02042054943740368, + 0.05069749429821968, + -0.02067774161696434, + 0.047713037580251694, + 0.06503576040267944, + 0.007929212413728237, + 0.0402958020567894, + -0.011169985868036747, + -0.027499239891767502, + -0.03162771090865135, + 0.015537169761955738, + 0.019397124648094177, + 0.09426090866327286, + -0.0940929502248764, + -0.020631950348615646, + -0.01938873529434204, + -0.008240163326263428, + -0.0014731349656358361, + 0.0577043779194355, + -0.015705350786447525, + -0.022661304101347923, + 0.09036288410425186, + 0.05290450155735016, + 0.06739040464162827, + -0.025119420140981674, + 0.03445998206734657, + -0.03131765127182007, + 0.06307213008403778, + -0.027781838551163673, + -0.10036493837833405, + -0.0038513613399118185, + -0.06328999251127243, + 0.10254911333322525, + 0.06104857102036476, + 0.06473847478628159, + 0.0164529699832201, + 0.029713476076722145, + -0.027464624494314194, + 0.038994938135147095, + 0.026122502982616425, + 0.03642827272415161, + -0.11203913390636444, + -0.07522942125797272, + 0.051905643194913864, + -0.012503446079790592, + -0.026776205748319626, + -0.08330833166837692, + 0.02348802611231804, + 0.007346232887357473, + -0.00948445126414299, + -0.03549646586179733, + -0.08869045227766037, + -0.06427427381277084, + -0.051731184124946594, + 0.04649019241333008, + 0.1035597175359726, + -0.0454878956079483, + 0.031407106667757034, + 0.031088078394532204, + -0.05508168786764145, + -0.04902435839176178, + 0.01464285608381033, + 0.034929972141981125, + -0.014619236811995506, + 0.07829577475786209, + -0.021437106654047966, + 0.006017098668962717, + 0.06737076491117477, + -0.09543611854314804, + 0.1176355630159378, + 0.008938435465097427, + -0.002105992753058672, + -0.020445989444851875, + -0.04940534755587578, + -0.04563479870557785, + -0.012644954025745392, + -0.0073425075970590115, + -0.0339738167822361, + 0.0323239304125309, + -0.008574042469263077, + -0.09753043204545975, + 0.009813309647142887, + 0.009617741219699383, + 0.10392136126756668, + 0.005188180133700371, + 0.07082746177911758, + -0.07391095161437988, + -0.10689644515514374, + -0.05310390144586563, + -0.02434048056602478, + -0.03665352985262871, + -0.09499618411064148, + 0.046156469732522964, + 0.005328864324837923, + -0.1358954906463623, + 0.043267399072647095, + 0.04254927486181259, + 0.03368416056036949, + -0.006789291277527809, + 0.06805747747421265, + -0.017792869359254837, + 0.025138363242149353, + 0.033445604145526886, + 0.014707309193909168, + -0.04977914318442345, + 0.005155297461897135, + 0.012255880050361156, + -0.04756728932261467, + 0.018770523369312286, + -0.00843840092420578, + 0.01570608653128147, + -0.06863901019096375, + -0.0917934849858284, + -0.0723552405834198, + -0.06360511481761932, + -0.025485068559646606, + -0.003419655142351985, + -0.0007265580934472382, + 0.11522102355957031, + -0.000562475819606334, + -0.005047470331192017, + -0.046937741339206696, + -0.0031891493126749992, + -0.07093605399131775, + -0.01492544449865818, + -0.06606306880712509, + 0.054363153874874115, + -1.4392750076403204e-33, + 0.038046251982450485, + 0.045814916491508484, + -0.04888042062520981, + 0.10880658030509949, + -0.0044876388274133205, + 0.03683341294527054, + -0.07904074341058731, + -0.02219671569764614, + -0.062545046210289, + 0.020468030124902725, + 0.05632444843649864, + 0.025670213624835014, + -0.020265191793441772, + 0.019040172919631004, + -0.03397580608725548, + -0.07322315126657486, + 0.011221145279705524, + -0.014007202349603176, + -0.14844073355197906, + 0.028828030452132225, + -0.09142819792032242, + 0.037343353033065796, + -0.0016048576217144728, + -0.07830654829740524, + -0.040463920682668686, + -0.021036943420767784, + 0.04649024084210396, + -0.020652709528803825, + -0.04547211155295372, + 0.028113150969147682, + 0.028093798086047173, + 0.011356902308762074, + 0.021134722977876663, + -0.04649948328733444, + -0.059012219309806824, + 0.020728683099150658, + -0.0808575376868248, + 0.003384383162483573, + 0.005860626697540283, + 0.02080662176012993, + -0.10690554231405258, + 0.062172286212444305, + 0.05076520889997482, + -0.08297260105609894, + 0.037708964198827744, + 0.16936901211738586, + 0.001149684307165444, + -0.018442939966917038, + -0.0016129338182508945, + -0.017243020236492157, + 0.0006609283154830337, + -0.02715831622481346, + 0.012211316265165806, + 0.023808429017663002, + 0.02387957088649273, + -0.03989074379205704, + -0.014669418334960938, + 0.08507590740919113, + 0.05528048053383827, + 0.004149758722633123, + 0.044826045632362366, + 0.03531091660261154, + 0.02088051848113537, + 0.05638644099235535, + -0.010784241370856762, + 0.05822347104549408, + -0.005856511183083057, + 0.024636071175336838, + 0.04491543024778366, + -0.023564815521240234, + 0.026755450293421745, + 0.01534882839769125, + -0.01781284436583519, + 0.05311525985598564, + -0.04316175356507301, + 0.04916869476437569, + 0.01722905971109867, + -0.055806562304496765, + 0.04767951741814613, + -0.06275489181280136, + -0.05666586756706238, + -0.007812798954546452, + 0.04008285701274872, + 0.02733052894473076, + 0.01636914536356926, + -0.013251833617687225, + -0.02612917125225067, + -0.06393071264028549, + -0.01707480102777481, + 0.05686996132135391, + -0.06425277888774872, + -0.03236503154039383, + 0.03971366211771965, + -0.12400012463331223, + -0.0536033995449543, + -1.1672932573443866e-33, + 0.010781778022646904, + -0.001664171926677227, + -0.05806554853916168, + -0.05698055401444435, + -0.056420426815748215, + 0.08549042046070099, + 0.034183524549007416, + 0.024698931723833084, + -0.01038531493395567, + 0.03618325665593147, + 0.050632406026124954, + 0.022762028500437737, + -0.08339999616146088, + -0.03941509127616882, + 0.006920682732015848, + -0.01353753823786974, + 0.03536680340766907, + 0.03892959654331207, + -0.06360574811697006, + 0.0338783860206604, + -0.030726980417966843, + -0.09128125011920929, + -0.05881064385175705, + 0.10103265196084976, + 0.05892330780625343, + 0.008088666945695877, + 0.05843585729598999, + 0.061392638832330704, + -0.016324341297149658, + 0.00926907267421484, + -0.007805091328918934, + -0.02018342912197113, + 0.08693712949752808, + 0.05584642291069031, + -0.038586586713790894, + -0.004330421332269907, + -0.036756038665771484, + 0.001408522599376738, + 0.04067264497280121, + 0.03647615388035774, + 0.009781590662896633, + -0.01973014511168003, + 0.09653123468160629, + -0.020744221284985542, + -0.06362784653902054, + 0.053793150931596756, + -0.04094932600855827, + -0.06753145903348923, + 0.007027307525277138, + 0.07208024710416794, + -0.010416783392429352, + 0.016989674419164658, + -0.0016444409266114235, + -0.006296980660408735, + -0.0717027336359024, + -0.022710593417286873, + -0.01119095180183649, + 0.06159614026546478, + -0.0976034477353096, + 0.05257957801222801, + 0.02570723183453083, + 0.08810780197381973, + -0.0445849671959877, + 0.08472934365272522, + 0.018471181392669678, + -0.058180466294288635, + -0.013711691834032536, + -0.09370175004005432, + -0.02517697587609291, + 0.004866693168878555, + 0.02235431969165802, + -0.008827539160847664, + 0.03807499632239342, + 0.011990750208497047, + -0.014656804502010345, + -0.01928505301475525, + 0.0004098484059795737, + 0.016705017536878586, + -0.04827442392706871, + 0.0012779026292264462, + 0.008238817565143108, + 0.030787670984864235, + -0.09619059413671494, + 0.04393286257982254, + -0.012917713262140751, + 0.015735410153865814, + -0.010547803714871407, + -0.025930039584636688, + -0.002116052433848381, + -0.009910454973578453, + 0.013236959464848042, + 0.03502411022782326, + 0.033936332911252975, + 0.03950934484601021, + -0.09962885826826096, + -2.1445277553766573e-08, + -0.004649224691092968, + -0.16371119022369385, + 0.05892203748226166, + -0.004119966644793749, + -0.06610503047704697, + 0.046803683042526245, + -0.009745854884386063, + -0.12018989026546478, + -0.04425401985645294, + -0.020804207772016525, + 0.0073610348626971245, + 0.008449800312519073, + -0.052042677998542786, + -0.12069565057754517, + 0.03167102113366127, + 0.011007801629602909, + -0.020201988518238068, + 0.030402153730392456, + -0.06066056713461876, + -0.08781912177801132, + -0.012162460945546627, + 0.03216838464140892, + 0.03962903842329979, + -0.022914336994290352, + 0.018884465098381042, + -0.013284939341247082, + -0.058893635869026184, + 0.014776172116398811, + 0.09382279962301254, + -0.0350259467959404, + 0.06392236053943634, + 0.06549172848463058, + 0.00840641837567091, + 0.01569489762187004, + 0.01714591309428215, + -0.04293029382824898, + -0.0030045679304748774, + 0.03996533527970314, + 0.03504358232021332, + 0.091075599193573, + -0.06248057261109352, + 0.03737226501107216, + -0.002189352409914136, + -0.009729866869747639, + 0.05155211314558983, + 0.03898243233561516, + 0.0660131573677063, + -0.015598839148879051, + -0.04367086663842201, + -0.10949960350990295, + 0.008449702523648739, + 0.020493464544415474, + 0.06856191903352737, + 0.05643804371356964, + -0.0971231460571289, + 0.014245131053030491, + 0.08786869049072266, + 0.06262534856796265, + -0.020965702831745148, + -0.015849482268095016, + 0.09470710903406143, + 0.0009887603810057044, + 0.06726938486099243, + 0.018524209037423134 + ], + "text-h-six-bold||heading,h6,typography,print": [ + 0.010904381982982159, + 0.04528257995843887, + -0.030937286093831062, + 0.037482332438230515, + 0.03677050769329071, + 0.04457443207502365, + -0.008369718678295612, + -0.011507404036819935, + -0.021601010113954544, + -0.007914630696177483, + 0.014919977635145187, + 0.051642727106809616, + 0.03402278944849968, + -0.12323617190122604, + -0.016357319429516792, + -0.004533226601779461, + -0.05165873467922211, + 0.013677879236638546, + -0.0020148700568825006, + 0.018763644620776176, + -0.0289112851023674, + 0.1076940968632698, + 0.06792440265417099, + 0.06676943600177765, + -0.008268889039754868, + 0.021675754338502884, + 0.003431999823078513, + 0.08171603083610535, + 0.00523994630202651, + -0.06970781087875366, + -0.026366809383034706, + 0.009026446379721165, + 0.06734238564968109, + 0.05477175489068031, + 0.07529304176568985, + 0.040225423872470856, + 0.025460628792643547, + -0.022992484271526337, + 0.05749454349279404, + 0.015204978175461292, + 0.013365511782467365, + -0.11615829914808273, + -0.049170706421136856, + 0.0399625226855278, + 0.010003156028687954, + -0.0207775067538023, + -0.10295252501964569, + 0.03901933878660202, + 0.03845226392149925, + -0.021089762449264526, + -0.03413154557347298, + -0.11426541954278946, + -0.07954081892967224, + -0.0520731620490551, + 0.020029041916131973, + 0.08178183436393738, + -0.0643651932477951, + -0.02591879479587078, + 0.04735496640205383, + -0.037421587854623795, + -0.053495291620492935, + 0.02708244137465954, + 0.04134198650717735, + 0.023676106706261635, + 0.07619855552911758, + -0.014466909691691399, + -0.0014160519931465387, + 0.08751793205738068, + -0.09401718527078629, + 0.10961521416902542, + -0.004753902554512024, + 0.005749050993472338, + 0.005195715464651585, + -0.05165958032011986, + -0.05748111382126808, + -0.009106596000492573, + -0.025054126977920532, + -0.07808485627174377, + 0.02621757797896862, + -0.022282343357801437, + -0.09727167338132858, + 0.016252227127552032, + 0.0009068933431990445, + 0.1343892514705658, + -0.0012529253726825118, + 0.032399460673332214, + -0.06240570917725563, + -0.11091998219490051, + -0.06517306715250015, + -0.007200851570814848, + -0.006897964049130678, + -0.06685664504766464, + 0.014999640174210072, + -0.03223935514688492, + -0.15642313659191132, + 0.06009163334965706, + 0.036088354885578156, + 0.017229406163096428, + -2.2538470147992484e-05, + 0.07017013430595398, + 0.03145873174071312, + 0.014715928584337234, + -0.0007710424833931029, + -0.01861303485929966, + -0.006308451294898987, + 0.015336424112319946, + -0.010811380110681057, + 0.01654447428882122, + -0.004822876304388046, + -0.029253585264086723, + -0.008821606636047363, + -0.05096292868256569, + -0.08590574562549591, + -0.05596296489238739, + -0.030709922313690186, + -0.04624580964446068, + -0.03433188050985336, + -0.03183396905660629, + 0.11146280169487, + -0.0024042597506195307, + -0.010907414369285107, + -0.0018129124073311687, + -0.007083074655383825, + -0.04947894439101219, + -0.027731314301490784, + -0.05052504688501358, + 0.08366416394710541, + -1.679466431573227e-33, + 0.03026413917541504, + 0.06319786608219147, + 0.0015750855673104525, + 0.09761080890893936, + 0.015189441852271557, + 0.019559428095817566, + -0.06317140907049179, + -0.03318413347005844, + -0.11284275352954865, + 0.03941727802157402, + 0.04516437277197838, + 0.020024720579385757, + -0.02108140103518963, + 0.011273384094238281, + 0.05144324526190758, + -0.06940724700689316, + 0.024232178926467896, + -0.0011631711386144161, + -0.14125493168830872, + 0.02865941822528839, + -0.06322798132896423, + 0.04128843918442726, + 0.014614300802350044, + -0.08954354375600815, + -0.04138389974832535, + 0.045055799186229706, + 0.04850837215781212, + -0.004996837582439184, + -0.06226203218102455, + 0.02534894086420536, + 0.03222862631082535, + 0.03863139823079109, + 0.06834635138511658, + -0.04953723028302193, + -0.03368000313639641, + 0.02327309362590313, + -0.11169503629207611, + -0.003406279720366001, + 0.003926714416593313, + 0.006433228030800819, + -0.048142414540052414, + 0.0364142470061779, + -0.023531053215265274, + -0.03183799237012863, + 0.027976254001259804, + 0.17241424322128296, + 0.04179194197058678, + -0.05904912203550339, + 0.016989266499876976, + -0.0012888578930869699, + -0.0060163456946611404, + -0.044440705329179764, + 0.048630490899086, + 0.010033017955720425, + 0.046314407140016556, + -0.05494865030050278, + -0.02593287080526352, + 0.11009591817855835, + 0.06468428671360016, + 0.028346119448542595, + 0.06041675806045532, + 0.022049658000469208, + 0.0217409860342741, + 0.09161428362131119, + -0.02078051120042801, + 0.03261077031493187, + -0.005754660349339247, + 0.020937692373991013, + 0.015621718019247055, + -0.009121107868850231, + 0.0069962795823812485, + 0.037386756390333176, + -0.010464778169989586, + 0.09104396402835846, + -0.043588362634181976, + 0.03845163807272911, + 0.010312463156878948, + -0.06853342801332474, + 0.007068057544529438, + -0.09215350449085236, + -0.013576691970229149, + 0.009880023077130318, + 0.038730911910533905, + 0.018857432529330254, + 0.005516394507139921, + -0.008859742432832718, + -0.05092150717973709, + -0.06748655438423157, + -0.028460215777158737, + 0.07112369686365128, + -0.019534889608621597, + -0.06578156352043152, + -0.004958823788911104, + -0.09124916046857834, + -0.0542108379304409, + -1.3025905449076202e-33, + 0.038228657096624374, + 0.009436849504709244, + -0.04997040703892708, + -0.05969369411468506, + -0.03752864524722099, + 0.06371957808732986, + 0.07557171583175659, + 0.026084592565894127, + -0.022830313071608543, + 0.002115503652021289, + 0.03276089206337929, + 0.04819519445300102, + -0.05200593173503876, + -0.0311640165746212, + 0.0063660587184131145, + 0.00855141319334507, + 0.05070231482386589, + 0.027825426310300827, + -0.01071947067975998, + 0.0033391639590263367, + -0.04292527586221695, + -0.11043237894773483, + -0.08185289800167084, + 0.0741182193160057, + 0.08498132973909378, + 0.03603449463844299, + 0.07461676001548767, + -0.0009908286156132817, + -0.035909585654735565, + -0.004452479537576437, + -0.002009541727602482, + -0.04672439023852348, + 0.07881060987710953, + 0.05402702838182449, + -0.03939918801188469, + -0.007533251773566008, + -0.016152266412973404, + -0.0025884490460157394, + 0.016564467921853065, + 0.02559524215757847, + 0.00720641016960144, + -0.028558148071169853, + 0.09058728069067001, + -0.018168427050113678, + -0.044624775648117065, + 0.006376205012202263, + -0.02268986590206623, + -0.050418779253959656, + -0.008438963443040848, + 0.11136049777269363, + 0.027635542675852776, + -0.03693285956978798, + 0.0007527836132794619, + 0.029724067077040672, + -0.08640209585428238, + -0.04560154676437378, + -0.006090108770877123, + -0.008284879848361015, + -0.0876476913690567, + 0.06733237206935883, + 0.019981205463409424, + 0.06977622210979462, + -0.06491803377866745, + 0.039387766271829605, + 0.010999131016433239, + -0.01997086964547634, + 0.011408780701458454, + -0.07222790271043777, + -0.04718650504946709, + -0.024920225143432617, + 0.022262156009674072, + -0.009831255301833153, + -0.007495715748518705, + -0.002406629966571927, + -0.02001642994582653, + -0.019877398386597633, + 0.029463358223438263, + 0.048520512878894806, + -0.029700681567192078, + 0.0419890433549881, + -0.033898551017045975, + 0.0209263376891613, + -0.11075109988451004, + 0.1000366136431694, + -0.027854984626173973, + 0.007963563315570354, + 0.014457672834396362, + -0.028359007090330124, + -0.012497219257056713, + -0.006863357964903116, + 0.023237507790327072, + 0.001660043839365244, + 0.03488082438707352, + 0.008485796861350536, + -0.07704474031925201, + -2.009267241476209e-08, + 0.016703274101018906, + -0.18685473501682281, + 0.038975100964307785, + -0.03605315834283829, + -0.01849246397614479, + 0.023297535255551338, + 0.0038339581806212664, + -0.11367137730121613, + -0.08334304392337799, + -0.010583819821476936, + 0.04659201204776764, + -0.035177264362573624, + -0.051387250423431396, + -0.12675118446350098, + -0.0012626785319298506, + -0.028516463935375214, + -0.021727098152041435, + 0.05315789207816124, + -0.07692021876573563, + -0.08949815481901169, + -0.008131494745612144, + 0.028152145445346832, + 0.05190692096948624, + -0.0020701969042420387, + 0.033353179693222046, + -0.010891256853938103, + -0.04729016125202179, + 0.005066657904535532, + 0.07043991982936859, + -0.0335119403898716, + 0.06686286628246307, + 0.049587126821279526, + -0.029686490073800087, + 0.01348628755658865, + 0.009647962637245655, + 0.005881752818822861, + 0.00666040787473321, + 0.00202183797955513, + 0.02535531111061573, + 0.09598106890916824, + -0.0809914693236351, + -0.01085688266903162, + 0.007114810403436422, + -0.018830345943570137, + 0.03567563742399216, + 0.03796553239226341, + 0.042451921850442886, + -0.01686752587556839, + -0.03597453609108925, + -0.08547648042440414, + 0.009097869507968426, + 0.011915821582078934, + 0.05815794691443443, + 0.06429430097341537, + -0.07744898647069931, + 0.001350282458588481, + 0.10559200495481491, + 0.01865452341735363, + -0.047148849815130234, + -0.002183950738981366, + 0.11399371176958084, + -0.011354407295584679, + 0.0759885162115097, + 0.00142175133805722 + ], + "text-h-three-bold||heading,h3,typography,print": [ + 0.007464719004929066, + 0.04275557026267052, + -0.04849115014076233, + 0.024340635165572166, + 0.06216313689947128, + 0.018078790977597237, + 0.016906846314668655, + -0.02783639170229435, + -0.0015675992472097278, + -0.023904532194137573, + 0.027252856642007828, + 0.0017130142077803612, + 0.0608072467148304, + -0.08048797398805618, + 0.01443807315081358, + -0.016069119796156883, + -0.035451825708150864, + 0.023854030296206474, + 0.02994697168469429, + -0.017817823216319084, + -0.008511326275765896, + 0.07425642758607864, + 0.0930742472410202, + 0.07774093747138977, + -0.03444541245698929, + 0.06750843673944473, + -0.006401051767170429, + 0.04405098035931587, + -0.027332056313753128, + -0.07961061596870422, + -0.034622933715581894, + -0.05824827030301094, + 0.10092394053936005, + 0.018269287422299385, + 0.06608198583126068, + -0.0002855397469829768, + -0.013077042996883392, + -0.027325982227921486, + 0.026299243792891502, + 0.05298643186688423, + 0.026610976085066795, + -0.10087580978870392, + -0.06171586737036705, + 0.0551055446267128, + -0.008387904614210129, + -0.007539419922977686, + -0.10894802212715149, + -0.008017726242542267, + 0.029541341587901115, + -0.02641778625547886, + -0.04662356153130531, + -0.11339817196130753, + -0.055187974125146866, + -0.04532260820269585, + 0.004755889531224966, + 0.07276307046413422, + -0.03137219697237015, + 0.02308567985892296, + 0.03675900399684906, + -0.04694680869579315, + -0.019007442519068718, + 0.05241083726286888, + 0.026426559314131737, + -0.020846646279096603, + 0.10965348035097122, + -0.006294956896454096, + -0.023592805489897728, + 0.057039592415094376, + -0.1077120378613472, + 0.13546016812324524, + 0.01565193198621273, + -0.0029101187828928232, + -0.023296844214200974, + -0.06508816033601761, + -0.018623728305101395, + -0.0028113420121371746, + 0.024327967315912247, + -0.03664072975516319, + -0.002180670388042927, + -0.012947377748787403, + -0.08278384059667587, + 0.02355288527905941, + 0.0032901547383517027, + 0.14646121859550476, + -0.009993400424718857, + 0.04338305816054344, + -0.12230169773101807, + -0.12448571622371674, + -0.07297120243310928, + 0.00029226436163298786, + -0.05293314903974533, + -0.07123127579689026, + 0.003019940573722124, + 0.026743734255433083, + -0.12221118807792664, + 0.07152542471885681, + 0.0478772334754467, + -0.004427755251526833, + -0.0057585472241044044, + 0.07575851678848267, + 0.022157831117510796, + 0.02964284084737301, + 0.02065066434442997, + -0.007780627813190222, + -0.04230119660496712, + 0.030224092304706573, + -0.01900389976799488, + -0.029970720410346985, + -0.02333623729646206, + 0.009611113928258419, + 0.013603854924440384, + -0.0681171640753746, + -0.10132692009210587, + -0.07754478603601456, + -0.06855233758687973, + -0.010604588314890862, + -0.007648301776498556, + -0.03543946146965027, + 0.12535105645656586, + -0.007480191998183727, + 0.007570949848741293, + -0.022587059065699577, + -0.005234649870544672, + -0.08550173044204712, + -0.005148221738636494, + -0.041941866278648376, + 0.06479404121637344, + -1.2995720039844032e-33, + 0.027795782312750816, + 0.05904477462172508, + -0.04396555945277214, + 0.11863526701927185, + -0.0032262690365314484, + 0.040725551545619965, + -0.08845105022192001, + -0.04129387438297272, + -0.08035430312156677, + 0.01619003526866436, + 0.05160665139555931, + 0.017864486202597618, + -0.0011365581303834915, + 0.007306857965886593, + -0.016603782773017883, + -0.08545299619436264, + 0.0017896140925586224, + -0.014120076783001423, + -0.1523730754852295, + 0.02555326744914055, + -0.04779181629419327, + 0.016951462253928185, + -0.012073754332959652, + -0.06760627031326294, + -0.03960464149713516, + 0.0013149733422324061, + 0.03272740915417671, + -0.023305514827370644, + -0.037427306175231934, + 0.026581745594739914, + 0.0773799866437912, + 0.020647762343287468, + 0.039196841418743134, + -0.0690656527876854, + -0.04385058581829071, + 0.02856350690126419, + -0.1013098806142807, + -0.033065397292375565, + -0.007903547026216984, + 0.04881489276885986, + -0.08799601346254349, + 0.03285574913024902, + 0.054186441004276276, + -0.06535189598798752, + 0.03112775832414627, + 0.19278627634048462, + 0.03466134890913963, + -0.04670819267630577, + 0.0035165627487003803, + -0.013487104326486588, + 0.031171081587672234, + -0.033054884523153305, + 0.0324832946062088, + 0.03185182809829712, + 0.021929176524281502, + -0.03759867697954178, + -0.029001178219914436, + 0.10146564990282059, + 0.0726899579167366, + -0.008779564872384071, + 0.035161737352609634, + 0.027353186160326004, + 0.03485023230314255, + 0.05987917631864548, + -0.01305876299738884, + 0.0774071216583252, + -0.03159508481621742, + 0.033794473856687546, + 0.06725233793258667, + -0.010868475772440434, + 0.013081220909953117, + 0.021518835797905922, + 0.003196798963472247, + 0.07837622612714767, + -0.039968203753232956, + 0.03843247890472412, + -0.014676476828753948, + -0.055459003895521164, + 0.049512047320604324, + -0.08315307646989822, + -0.0488586500287056, + -0.0032801462803035975, + 0.06204484403133392, + 0.035779498517513275, + 0.010124108754098415, + -0.03258855268359184, + -0.03435241058468819, + -0.07022349536418915, + -0.012959285639226437, + 0.05776878073811531, + -0.0643480122089386, + -0.017448607832193375, + 0.044270001351833344, + -0.08729442954063416, + -0.06697779893875122, + -1.1216090469321207e-33, + 0.03580528497695923, + 0.01854829676449299, + -0.05446620285511017, + -0.06751620024442673, + -0.0545831024646759, + 0.060492001473903656, + 0.031853269785642624, + 0.04396447166800499, + -0.01581050455570221, + 0.0323910191655159, + 0.0513506755232811, + 0.021232502534985542, + -0.04783949628472328, + -0.05283164232969284, + 0.018396947532892227, + 0.012085246853530407, + 0.03312935307621956, + -0.0051800040528178215, + -0.04868146777153015, + 0.026692697778344154, + 0.013950718566775322, + -0.10180295258760452, + -0.06646489351987839, + 0.09291519969701767, + 0.046672381460666656, + 0.02130771242082119, + 0.052610572427511215, + 0.01820104755461216, + -0.03092426061630249, + 0.01622161455452442, + -0.01392686553299427, + -0.04162803292274475, + 0.07611948996782303, + 0.056365977972745895, + -0.03376926854252815, + -0.011326989158987999, + -0.00130084075499326, + 0.013682450167834759, + 0.02464713528752327, + 0.006721036043018103, + 0.005719614680856466, + -0.0063942112028598785, + 0.09803713113069534, + -0.0013509609270840883, + -0.05982374772429466, + 0.07747094333171844, + -0.020731404423713684, + -0.05224553868174553, + 0.017308950424194336, + 0.1050085499882698, + -0.00344666070304811, + -0.04952888563275337, + 0.0033292986918240786, + 0.01145157590508461, + -0.0690016821026802, + -0.019299043342471123, + -0.0168946273624897, + 0.01935037598013878, + -0.06793791055679321, + 0.0632844939827919, + 0.00961974635720253, + 0.07325852662324905, + -0.011330779641866684, + 0.05235596373677254, + 0.019580261781811714, + -0.03310709819197655, + -0.03207958862185478, + -0.08159705996513367, + 0.0023765668738633394, + -0.002592726144939661, + -0.010225473903119564, + 0.0014168706256896257, + 0.022285547107458115, + 0.004155970178544521, + -0.020313017070293427, + -0.03098086453974247, + 0.0072303516790270805, + 0.054429199546575546, + -0.039880573749542236, + 0.019425030797719955, + 0.003723936853930354, + 0.012245096266269684, + -0.06805060058832169, + 0.07161564379930496, + -0.029858961701393127, + -0.0042968555353581905, + -0.030908750370144844, + -0.009517253376543522, + 0.0021174647845327854, + -0.03535690903663635, + 0.008097718469798565, + 0.04575829580426216, + 0.036085959523916245, + 0.04442032054066658, + -0.06798158586025238, + -2.0532946010121123e-08, + 0.026275290176272392, + -0.13116350769996643, + 0.03366871178150177, + 0.0035952453035861254, + -0.07338114082813263, + 0.03170522302389145, + 0.007814488373696804, + -0.10258754342794418, + -0.04835920035839081, + -7.77100576669909e-05, + 0.0269500520080328, + -0.026582462713122368, + -0.0675230547785759, + -0.1277199685573578, + 0.03296493738889694, + -0.0015181165654212236, + -0.0059455339796841145, + 0.03320534527301788, + -0.061086323112249374, + -0.1021621972322464, + -0.019625673070549965, + 0.03947943449020386, + 0.05437639355659485, + 0.00389694282785058, + 0.03480076044797897, + 0.027448046952486038, + -0.06008745729923248, + -0.0033481961581856012, + 0.06608906388282776, + -0.024655776098370552, + 0.06690744310617447, + 0.06389841437339783, + 0.013642935082316399, + 0.0309336818754673, + -0.013511687517166138, + -0.05355583876371384, + -0.02772013656795025, + 0.0120083037763834, + 0.040532223880290985, + 0.08962539583444595, + -0.0633724182844162, + 0.037115368992090225, + -0.011294007301330566, + -0.00606513861566782, + 0.04407554864883423, + 0.012015985324978828, + 0.03657248988747597, + 0.00400359695777297, + -0.043719418346881866, + -0.11359023302793503, + -0.010274464264512062, + -0.00768893351778388, + 0.06425846368074417, + 0.08947264403104782, + -0.06750433146953583, + -0.01990545727312565, + 0.06629960238933563, + 0.047993674874305725, + -0.052321042865514755, + -0.03372153267264366, + 0.09468875825405121, + -0.024638846516609192, + 0.05642476677894592, + 0.023128002882003784 + ], + "text-h-two-bold||heading,h2,typography,print": [ + 0.02701677568256855, + 0.060088325291872025, + -0.010921726934611797, + 0.04951854795217514, + 0.05887079983949661, + 0.005285484716296196, + 0.009540037252008915, + 0.004908027593046427, + -0.01929326541721821, + -0.029139922931790352, + 0.033572252839803696, + 0.00888112373650074, + 0.0791749507188797, + -0.08849025517702103, + 0.0058011338114738464, + 0.007238670717924833, + -0.02463582716882229, + 0.0014363790396600962, + 0.0534450002014637, + -0.015721915289759636, + 0.0016368887154385448, + 0.07560600340366364, + 0.07010549306869507, + 0.05102947726845741, + -0.041010793298482895, + 0.06788410991430283, + -0.03470658138394356, + 0.07065573334693909, + -0.01971472054719925, + -0.090304896235466, + 0.0040251086466014385, + -0.06102079525589943, + 0.06799507886171341, + 0.039395470172166824, + 0.05724351853132248, + -0.023007985204458237, + 0.03736298158764839, + -0.028450394049286842, + 0.035360757261514664, + -0.003594474634155631, + 0.038632482290267944, + -0.11377785354852676, + -0.07982204854488373, + 0.05674440413713455, + 0.0010178957600146532, + 9.025723556987941e-05, + -0.07302501797676086, + 0.017193639650940895, + 0.004882222507148981, + -0.022957712411880493, + -0.051182400435209274, + -0.10584920644760132, + -0.05008620396256447, + -0.06022361293435097, + 0.03372761607170105, + 0.12148964405059814, + -0.04622532054781914, + 0.032551348209381104, + 0.044554416090250015, + -0.05478416755795479, + -0.011003422550857067, + 0.02549522928893566, + 0.014708642847836018, + -0.016238000243902206, + 0.08071579039096832, + -0.030098695307970047, + -0.013676741160452366, + 0.07385212182998657, + -0.10732518136501312, + 0.12884847819805145, + 0.019953569397330284, + 0.0179049801081419, + -0.004207496531307697, + -0.07098124176263809, + -0.026057828217744827, + -0.02590342052280903, + -0.00886471662670374, + -0.03687112405896187, + 0.024250246584415436, + -0.024855954572558403, + -0.0864316001534462, + -0.0020577048417180777, + 0.015320399776101112, + 0.11437303572893143, + -0.003932436928153038, + 0.05061478540301323, + -0.09364774078130722, + -0.12204723805189133, + -0.07036092877388, + -0.016688132658600807, + -0.028929440304636955, + -0.08338820189237595, + 0.0508100651204586, + 0.027708470821380615, + -0.1252322942018509, + 0.051848869770765305, + 0.04937416687607765, + 0.040916040539741516, + -0.008911551907658577, + 0.07573636621236801, + -0.01703674905002117, + 0.014204141683876514, + 0.007539035752415657, + -0.023189011961221695, + -0.03292826935648918, + -0.008094292134046555, + -0.009493265300989151, + -0.048581596463918686, + 0.029408108443021774, + -0.014826147817075253, + 0.04732736200094223, + -0.039433613419532776, + -0.10101423412561417, + -0.06230999156832695, + -0.03843788430094719, + 0.0007860708865337074, + 0.011621629819273949, + -0.002658676356077194, + 0.1130003109574318, + -0.00874725729227066, + -0.02017936296761036, + -0.04508740454912186, + -0.014900214038789272, + -0.08122245222330093, + -0.016883857548236847, + -0.0661877915263176, + 0.06054076552391052, + -1.7331808296050437e-33, + 0.030024230480194092, + 0.059732913970947266, + -0.04050396755337715, + 0.12757349014282227, + -0.0005425451090559363, + 0.0321541391313076, + -0.10042130947113037, + -0.04545503109693527, + -0.061413560062646866, + 0.01748334802687168, + 0.044923461973667145, + -0.008631166070699692, + -0.008888090960681438, + 0.027147997170686722, + -0.011724171228706837, + -0.10414388030767441, + 0.034024011343717575, + -0.013271105475723743, + -0.1252402812242508, + 0.03341840207576752, + -0.07404284179210663, + 0.05593657121062279, + 0.0060153380036354065, + -0.07538740336894989, + -0.02136239968240261, + -0.00457623228430748, + 0.05118086189031601, + -0.032310664653778076, + -0.027787551283836365, + 0.04096579551696777, + 0.05510317534208298, + 0.0024999079760164022, + 0.03711233288049698, + -0.03475817292928696, + -0.05013918876647949, + 0.004235208034515381, + -0.10502980649471283, + -0.0017008364666253328, + 0.0004644205910153687, + 0.013503157533705235, + -0.08556152135133743, + 0.056452032178640366, + 0.05510177090764046, + -0.06586780399084091, + 0.03926421329379082, + 0.13924455642700195, + 0.025199199095368385, + -0.038822319358587265, + 0.016628406941890717, + -0.027961978688836098, + -0.005064287688583136, + -0.025455739349126816, + 0.01777803711593151, + 0.04530991241335869, + 0.029136095196008682, + -0.03079507313668728, + -0.007382605690509081, + 0.08839952945709229, + 0.0634729191660881, + 0.014056110754609108, + 0.035343315452337265, + 0.04964732378721237, + 0.029602613300085068, + 0.04387683421373367, + -0.018780821934342384, + 0.06345609575510025, + -0.019139856100082397, + 0.016419148072600365, + 0.0384896881878376, + -0.004912103526294231, + 0.03364904597401619, + 0.009343044832348824, + 0.03062564693391323, + 0.06818215548992157, + -0.039304692298173904, + 0.034887947142124176, + 0.025843586772680283, + -0.07121932506561279, + 0.08264752477407455, + -0.06337845325469971, + -0.053059108555316925, + 0.004582893569022417, + 0.046835046261548996, + 0.027450205758213997, + 0.00980314426124096, + -0.039086103439331055, + -0.04741832613945007, + -0.05314328894019127, + -0.026271594688296318, + 0.09185413271188736, + -0.08863286674022675, + -0.022238612174987793, + 0.006674648262560368, + -0.11989663541316986, + -0.028201762586832047, + -1.1513598905964713e-33, + 0.019499747082591057, + 0.02882363460958004, + -0.06655602157115936, + -0.06472955644130707, + -0.052666205912828445, + 0.05622955039143562, + 0.04632559418678284, + 0.01936475560069084, + 0.0007240762934088707, + 0.0343206450343132, + 0.07280916720628738, + 0.023968985304236412, + -0.05484991520643234, + -0.029064077883958817, + 0.020383264869451523, + -0.01901285909116268, + 0.03659616410732269, + 0.02882215566933155, + -0.0408049076795578, + 0.008746187202632427, + -0.0006757721421308815, + -0.08988412469625473, + -0.038052864372730255, + 0.09282396733760834, + 0.0744645893573761, + 0.008874441497027874, + 0.05138416215777397, + 0.04751542583107948, + -0.0332597941160202, + 0.020551813766360283, + -0.003067923942580819, + -0.02595285139977932, + 0.07401858270168304, + 0.05726265907287598, + -0.036657076328992844, + -0.03321937844157219, + -0.032275114208459854, + -0.002747866790741682, + 0.009420991875231266, + 0.0063265543431043625, + 0.0023230682127177715, + -0.007626415695995092, + 0.10308396071195602, + -0.008610665798187256, + -0.06596251577138901, + 0.04535635560750961, + -0.015831300988793373, + -0.06806658208370209, + -0.005476381164044142, + 0.05360252782702446, + -0.004166418686509132, + -0.013149814680218697, + -0.021277211606502533, + 0.017814477905631065, + -0.09562014043331146, + -0.03801990672945976, + -0.044096849858760834, + 0.05396285653114319, + -0.07966683059930801, + 0.05039890855550766, + 0.020988017320632935, + 0.06805560737848282, + -0.051049791276454926, + 0.06243257597088814, + 0.024817006662487984, + -0.06432968378067017, + -0.02164885215461254, + -0.08067793399095535, + -0.02149803377687931, + 0.006124654784798622, + -0.006373140029609203, + -0.016546232625842094, + 0.02340206876397133, + 0.012832865118980408, + -0.03565727174282074, + -0.023268597200512886, + -0.004069124348461628, + 0.023763660341501236, + -0.02680111862719059, + 0.00953897088766098, + -0.011668367311358452, + 0.018609367311000824, + -0.05987398326396942, + 0.055578894913196564, + -0.030421238392591476, + -0.012119057588279247, + -0.03408578783273697, + -0.014616968110203743, + -0.0020184963941574097, + -0.0312662310898304, + 0.020805012434720993, + 0.031081801280379295, + 0.028692424297332764, + 0.03645382076501846, + -0.08480020612478256, + -2.189109693517821e-08, + -0.004669598303735256, + -0.16764776408672333, + 0.055849477648735046, + -0.005792833399027586, + -0.06939876079559326, + 0.03023427538573742, + -0.026361219584941864, + -0.10072486847639084, + -0.03931368514895439, + -0.01685052178800106, + -0.005773970391601324, + 0.012294922024011612, + -0.05838872492313385, + -0.13387151062488556, + 0.011942878365516663, + 0.019375981763005257, + 0.0069352807477116585, + 0.03398726135492325, + -0.06547967344522476, + -0.11201909929513931, + -0.008821562863886356, + 0.025972405448555946, + 0.046944841742515564, + 0.0027219585608690977, + 0.00508172158151865, + 0.007634133566170931, + -0.05831028148531914, + -0.0234316885471344, + 0.07868713140487671, + -0.04388738423585892, + 0.08089780807495117, + 0.05389266833662987, + 0.004053695593029261, + 0.00983587745577097, + 0.003187670838087797, + -0.055021584033966064, + -0.012403339147567749, + 0.021390246227383614, + 0.03541141748428345, + 0.09064736217260361, + -0.061496883630752563, + 0.04451754689216614, + 0.011954952962696552, + 0.024717610329389572, + 0.07135950028896332, + 0.026562537997961044, + 0.06191468611359596, + 0.0016615280183032155, + -0.04049205407500267, + -0.12714022397994995, + 0.021909818053245544, + 0.01282560732215643, + 0.06656741350889206, + 0.07381881028413773, + -0.10395825654268265, + -0.003708322998136282, + 0.06679196655750275, + 0.061285071074962616, + -0.046063393354415894, + -0.036778975278139114, + 0.11804405599832535, + 0.009235658682882786, + 0.0558946430683136, + 0.010010998696088791 + ], + "text-indent-bold||*updated*,alignment,tab,menu": [ + -0.01451601181179285, + 0.015139782801270485, + -0.04440668970346451, + 0.04393840208649635, + -0.005955125205218792, + -0.0136459581553936, + 0.0036767462734133005, + -0.08014870434999466, + 0.02190154604613781, + 0.09668682515621185, + -0.004038868471980095, + 0.022595124319195747, + 0.02058805525302887, + -0.06059359386563301, + 0.03781154751777649, + 0.010864363983273506, + 0.026101769879460335, + 0.04058093577623367, + -0.02914649248123169, + -0.010008332319557667, + -0.05030984804034233, + 0.10813634842634201, + 0.10163837671279907, + 0.07120296359062195, + 0.01262724306434393, + 0.06132001057267189, + 0.050340887159109116, + -0.01341076847165823, + -0.0414610356092453, + -0.09489484876394272, + -0.025782641023397446, + -0.014441029168665409, + 0.0804821252822876, + -0.018787072971463203, + 0.03348636254668236, + -0.05762205645442009, + -0.0543045811355114, + -0.046451929956674576, + 0.024644359946250916, + 0.01686159148812294, + -0.05123640596866608, + -0.11865802109241486, + 0.011279518716037273, + -0.014737372286617756, + -0.024453135207295418, + -0.07627417892217636, + -0.0612143911421299, + -0.004256353247910738, + 0.018850194290280342, + -0.019753756001591682, + -0.03815701976418495, + -0.0398891344666481, + -0.08351758122444153, + -0.042976126074790955, + -0.0609285905957222, + 0.014083212241530418, + -0.061909228563308716, + -0.04185551777482033, + 0.0626886785030365, + -0.047254301607608795, + 0.0698019415140152, + 0.026014581322669983, + 0.05302298441529274, + 0.06813248991966248, + 0.0014526891754940152, + 0.053494278341531754, + 0.08035996556282043, + 0.0016778871649876237, + -0.06682517379522324, + 0.005228795111179352, + 0.08247364312410355, + -0.044329650700092316, + -0.0026430280413478613, + -0.026789579540491104, + -0.000610438990406692, + -0.05566177889704704, + 0.04816253483295441, + 0.08839645981788635, + -0.06152264401316643, + 0.0007024036603979766, + -0.0012031524674966931, + 0.029180513694882393, + 0.008101312443614006, + 0.03662159666419029, + 0.025248222053050995, + -0.020484736189246178, + 0.013429229147732258, + -0.027417927980422974, + -0.011180022731423378, + 0.0018371859332546592, + 0.043645184487104416, + -0.024000175297260284, + -0.027098074555397034, + 0.04220723733305931, + -0.05164404958486557, + 0.03866669163107872, + -0.0020695989951491356, + 0.0036322767846286297, + -0.06424824148416519, + 0.09983500838279724, + 0.004097990226000547, + 0.10865741223096848, + 0.011494876816868782, + 0.06135363504290581, + -0.037979789078235626, + 0.030271606519818306, + 0.07094038277864456, + -0.012546787038445473, + -0.028175195679068565, + -0.005006727296859026, + 0.029950281605124474, + -0.13012877106666565, + -0.09061820060014725, + -0.05587882176041603, + -0.07578472048044205, + -0.0195832010358572, + -0.017221931368112564, + 0.00290384772233665, + 0.08652602136135101, + 0.06077643856406212, + 0.02581731043756008, + -0.025168048217892647, + -0.09508652240037918, + 0.028023729100823402, + -0.017245985567569733, + 0.08618027716875076, + 0.04926201328635216, + -3.405814149251139e-33, + 0.021106572821736336, + 0.03485965356230736, + -0.015248987823724747, + 0.11176696419715881, + 0.03839489072561264, + 0.04173322767019272, + -0.08486643433570862, + -0.03406986594200134, + -0.047388169914484024, + -0.022378360852599144, + 0.058262523263692856, + 0.056636687368154526, + -0.06495177745819092, + 0.005916209425777197, + 0.0323902852833271, + -0.0724642351269722, + -0.04065781086683273, + 0.04647858440876007, + -0.057544805109500885, + 0.023217299953103065, + -0.03019259124994278, + 0.06663234531879425, + 0.00957863312214613, + -0.056827131658792496, + 0.03727654367685318, + -0.011520765721797943, + 0.034054290503263474, + 0.029499610885977745, + -0.12156923115253448, + -0.000983692705631256, + 0.030599607154726982, + 0.006709556095302105, + 0.06021825224161148, + -0.051090460270643234, + -0.062904492020607, + 0.04276037588715553, + -0.11651161313056946, + -0.017044581472873688, + 0.020596742630004883, + 0.005593442358076572, + -0.0524199977517128, + -0.0005714106955565512, + 0.01244862750172615, + -0.07037250697612762, + 0.05206894874572754, + 0.05904906615614891, + -0.051480744034051895, + -0.040598005056381226, + 0.07112052291631699, + 0.031881555914878845, + 0.005882064811885357, + 0.03850531205534935, + -0.00979677401483059, + -0.010484173893928528, + -0.0697849914431572, + 0.05037732049822807, + -0.01860940456390381, + 0.07448185235261917, + 0.020452840253710747, + -0.00020672273240052164, + 0.0005033638444729149, + -0.03005370683968067, + 0.029938919469714165, + 0.0058038923889398575, + -0.027471480891108513, + 0.037518344819545746, + -0.034915465861558914, + 0.05647759884595871, + 0.1004948616027832, + -0.07176084816455841, + -0.02129136025905609, + 0.009408775717020035, + -0.002472151769325137, + 0.06799007952213287, + -0.03481577709317207, + -0.035518828779459, + -0.0004219289112370461, + -0.07671564072370529, + 0.015804337337613106, + -0.090699702501297, + 0.047322675585746765, + -0.025991234928369522, + -0.04369918629527092, + 0.05554473400115967, + 0.00012743150000460446, + 0.024566393345594406, + 0.007390277925878763, + 0.020551543682813644, + 0.04309120401740074, + 0.11375919729471207, + -0.006187464576214552, + 0.02801017463207245, + 0.026379967108368874, + -0.07163701951503754, + -0.01342043187469244, + -3.4289891122130967e-34, + 0.07556402683258057, + -0.04979756101965904, + -0.06517551839351654, + 0.009477834217250347, + -0.031395167112350464, + 0.061569370329380035, + -0.02057553082704544, + 0.09056487679481506, + -0.010292360559105873, + 0.043033719062805176, + 0.060951076447963715, + 0.07010821998119354, + -0.05669211968779564, + -0.0872306153178215, + -0.013042504899203777, + 0.10088317096233368, + 0.01334166806191206, + 0.015756431967020035, + -0.006887814495712519, + 0.0074357460252940655, + 0.014451160095632076, + -0.01634811796247959, + -0.022814471274614334, + 0.002954394556581974, + 0.03729283809661865, + -0.028965238481760025, + 0.0018129812087863684, + 0.08169808238744736, + -0.016113994643092155, + -0.0315183587372303, + 0.0032754098065197468, + 0.026041114702820778, + -0.027294008061289787, + -0.01696089096367359, + -0.017641423270106316, + 0.000418553565395996, + 0.020242618396878242, + -0.04750189185142517, + -0.019189530983567238, + 0.035650212317705154, + -0.016426702961325645, + 0.039399925619363785, + -0.032218143343925476, + -0.003568504936993122, + 0.008832082152366638, + 0.05537853762507439, + 0.022508857771754265, + -0.0715152695775032, + -0.053507957607507706, + 0.034988563507795334, + 0.03581130504608154, + -0.044428836554288864, + 0.004346510395407677, + -0.012614032253623009, + 0.01759066805243492, + 0.0036654651630669832, + -0.034549593925476074, + 0.02399216592311859, + -0.10191737115383148, + 0.007399771362543106, + -0.03893899545073509, + 0.09641662240028381, + 0.08898785710334778, + 0.015021668747067451, + 0.07833532243967056, + -0.01020565815269947, + 0.0036032304633408785, + -0.03830624371767044, + -0.018290279433131218, + 0.01591661013662815, + 0.06266118586063385, + -0.11093797534704208, + -0.12791724503040314, + -0.011955127120018005, + 0.01461011078208685, + -0.05228791758418083, + 0.04570518806576729, + -0.02685743197798729, + -0.07138174027204514, + -0.053026724606752396, + 0.027098529040813446, + 0.0013262940337881446, + -0.031865984201431274, + -0.03745521605014801, + -0.12190385162830353, + 0.02020258828997612, + 0.05808279290795326, + -0.02064577490091324, + -0.017598528414964676, + 0.006937623955309391, + -0.06146148592233658, + -0.06151818484067917, + -0.006621533073484898, + -0.026060087606310844, + -0.13598236441612244, + -2.186450132057871e-08, + -0.004004248883575201, + -0.07006809115409851, + -0.10666577517986298, + 0.10365047305822372, + 0.014943853951990604, + -0.07314291596412659, + -0.01869216375052929, + -0.07055076211690903, + -0.01404697634279728, + -0.09164827316999435, + 0.005987967364490032, + 0.028399009257555008, + 0.008755350485444069, + -0.06784233450889587, + 0.007072460372000933, + 0.07082688063383102, + -0.11114569753408432, + 0.010079133324325085, + -0.02881910279393196, + -0.026045098900794983, + 0.017081959173083305, + 0.11405225098133087, + 0.08337706327438354, + 0.044776901602745056, + 0.05761520564556122, + 0.06135324016213417, + -0.0979224145412445, + 0.022948483005166054, + 0.04328403249382973, + 0.02257516235113144, + 0.07193078845739365, + -0.019012849777936935, + 0.0634809210896492, + -0.028833361342549324, + -0.06878500431776047, + -0.12205207347869873, + 0.011081923730671406, + -0.009863530285656452, + 0.03210824355483055, + 0.03859223425388336, + -0.03739139437675476, + -0.017935262992978096, + -0.012851866893470287, + -0.03693830966949463, + -0.08003602176904678, + -0.00757656991481781, + 0.019147248938679695, + 0.07447554171085358, + -0.10576708614826202, + -0.11534210294485092, + -0.04290523752570152, + 0.04396243020892143, + 0.029842928051948547, + 0.018830453976988792, + -0.06635304540395737, + -0.019885960966348648, + 0.041186507791280746, + 0.08558063954114914, + 0.04461425542831421, + -0.04791203886270523, + 0.11100513488054276, + 0.007808270864188671, + 0.01042093988507986, + -0.009625577367842197 + ], + "text-italic-bold||typography,typeface,print,font,slant,oblique,stress,emphasis,calligraphy": [ + 0.005469219759106636, + -0.04282861948013306, + -0.043923795223236084, + 0.005940963514149189, + -0.00985715538263321, + -0.0018530981615185738, + 0.06668272614479065, + 0.05263946205377579, + -0.007522685918956995, + 0.018009930849075317, + 0.03179774060845375, + 0.002779581816866994, + 0.029363811016082764, + 0.0009545644861645997, + 0.05661711096763611, + 0.005745716858655214, + 0.038373496383428574, + -0.08226882666349411, + 0.08579578250646591, + 0.0513397678732872, + 0.04902531951665878, + 0.06842389702796936, + 0.002100901445373893, + 0.017674339935183525, + 0.053579699248075485, + 0.04694098234176636, + -0.012642706744372845, + 0.008200605399906635, + 0.0455109141767025, + -0.050866469740867615, + -0.08857755362987518, + 0.00528696971014142, + 0.1133635863661766, + 0.05543818324804306, + -0.013277937658131123, + 0.021862993016839027, + 0.019556799903512, + 0.026993919163942337, + 0.018446464091539383, + 0.054017480462789536, + -0.033871572464704514, + -0.07595086097717285, + -0.046822357922792435, + 0.0477442629635334, + 0.04080384969711304, + -0.005759452469646931, + -0.09804252535104752, + 0.0352817066013813, + -0.08684320002794266, + 0.041289400309324265, + -0.0543956533074379, + -0.060648586601018906, + -0.12385449558496475, + -0.006438420619815588, + 0.014429303817451, + 0.06564414501190186, + 0.015778306871652603, + 0.0049581751227378845, + 0.007634212262928486, + -0.060959551483392715, + -0.02536190301179886, + -0.004358194302767515, + -0.05804299935698509, + 0.07930391281843185, + 0.00040170573629438877, + 0.02820008620619774, + 0.05320281162858009, + 0.03223380818963051, + -0.04008500650525093, + 0.044566817581653595, + 0.011588837951421738, + 0.00010507101251278073, + -0.046263497322797775, + -0.01798432506620884, + -0.0126469936221838, + -0.017217600718140602, + 0.04358122870326042, + -0.04366493597626686, + -0.0001838571479311213, + -0.08105500042438507, + -0.06271243095397949, + 0.024786828085780144, + -0.036711204797029495, + 0.03748878091573715, + -0.00725166779011488, + 0.03990953043103218, + -0.010314691811800003, + -0.07816474884748459, + -0.006970266345888376, + -0.011547145433723927, + 0.031222766265273094, + -0.04890172928571701, + 0.021010681986808777, + 0.0373108871281147, + -0.09090684354305267, + 0.06007743626832962, + 0.05112495645880699, + -0.016590919345617294, + 0.007644495461136103, + 0.04304411634802818, + 0.040323950350284576, + -0.021724501624703407, + 0.021388469263911247, + 0.014456839300692081, + -0.03930424898862839, + -0.04771421104669571, + 0.006971297785639763, + -0.12284346669912338, + 0.04301086440682411, + -0.0048880260437726974, + -0.03392203152179718, + -0.07538367807865143, + -0.06746132671833038, + -0.07952941209077835, + -0.015964340418577194, + -0.061311449855566025, + -0.06517591327428818, + -0.037866879254579544, + 0.09573555737733841, + 0.07755265384912491, + -0.042897745966911316, + -0.008126060478389263, + 0.02373231202363968, + -0.03869447857141495, + -0.05258028209209442, + 0.008747444488108158, + 0.06824038177728653, + -1.8390080146156818e-33, + 0.08279787749052048, + 0.06262272596359253, + -0.03881654888391495, + 0.08504752069711685, + -0.034087181091308594, + 0.01263139583170414, + -0.0892549678683281, + -0.07069598883390427, + -0.05604273080825806, + 0.01480663102120161, + 0.011608065105974674, + 0.0544620119035244, + -0.06391148269176483, + 0.10792402923107147, + 0.03312264010310173, + 0.00786492321640253, + 0.04379305616021156, + 0.003648394253104925, + -0.05369919165968895, + 0.01310557872056961, + -0.01827712543308735, + 0.07434947788715363, + 0.019182691350579262, + 0.0005681050242856145, + -0.018763644620776176, + -0.035172902047634125, + 0.062188129872083664, + -0.038571424782276154, + -0.15943793952465057, + 0.017259150743484497, + 0.02857629582285881, + -0.008418443612754345, + 0.04292707517743111, + -0.06104433164000511, + -0.00642290199175477, + 0.003314580302685499, + -0.004608973860740662, + -0.01352426502853632, + 0.03937126323580742, + -0.0044379327446222305, + -0.1674821525812149, + 0.004661691375076771, + 0.024320553988218307, + -0.0021084235049784184, + 0.06197839975357056, + 0.09390387684106827, + -0.00496439216658473, + -0.04022808000445366, + 0.04376860707998276, + -0.0019264204893261194, + 0.013600076548755169, + -0.012619394809007645, + 0.004844367504119873, + 0.03807283565402031, + 0.07333815842866898, + 0.024300869554281235, + 0.0022508061956614256, + 0.05951353535056114, + -0.003616601461544633, + 0.02115650847554207, + 0.03981475159525871, + -0.015859901905059814, + 0.03554939851164818, + -0.010170210152864456, + -0.04558059200644493, + 0.05041475594043732, + -0.09628583490848541, + -0.0235489122569561, + 0.1018391028046608, + 0.00636605778709054, + -0.01031440868973732, + 0.04478868097066879, + 0.0026941571850329638, + 0.07598818838596344, + -0.025194508954882622, + 0.06955862045288086, + -0.005260889884084463, + -0.029241496697068214, + -0.027005186304450035, + 0.013278085738420486, + -0.11675358563661575, + -0.012128705158829689, + -0.04584271460771561, + -0.013996274210512638, + -0.04943268373608589, + 0.035116732120513916, + 0.0014881115639582276, + -0.10801899433135986, + 0.04069850221276283, + 0.04577808454632759, + -0.0996270403265953, + 0.0020275802817195654, + -0.02236022986471653, + -0.08272621780633926, + -0.03529144823551178, + -1.0882889248740937e-33, + -0.05470984801650047, + 0.014633840881288052, + -0.12117172032594681, + 0.0021502140443772078, + -0.02238423563539982, + 0.08427280187606812, + 0.024067556485533714, + 0.05453992262482643, + 0.05093355476856232, + 0.05853221192955971, + 0.03484282270073891, + -0.008562557399272919, + -0.06458825618028641, + -0.09043499082326889, + -0.0355377160012722, + 0.0007404098869301379, + 0.015773480758070946, + 0.042924050241708755, + -0.02268502302467823, + 0.023959960788488388, + -0.02309870347380638, + -0.11815489828586578, + -0.04962542653083801, + 0.09861841797828674, + 0.07278735190629959, + 0.044567007571458817, + -0.01932421699166298, + -0.03527778387069702, + -0.01782098039984703, + -0.0031411913223564625, + 0.0415908508002758, + -0.03508420288562775, + 0.09726998955011368, + 0.04641175642609596, + -0.049436427652835846, + -0.01105981320142746, + 0.004809861071407795, + -0.00745130330324173, + -0.0089357765391469, + 0.008647232316434383, + 0.043744396418333054, + 0.031145518645644188, + 0.14420047402381897, + 0.03576936572790146, + -0.040093373507261276, + 0.017119325697422028, + -0.13644319772720337, + -0.08220311254262924, + 0.004478077869862318, + 0.04595229774713516, + 0.03573397919535637, + -0.017114989459514618, + -0.005748918745666742, + 0.035475339740514755, + -0.06904172897338867, + -0.10798386484384537, + 0.017790967598557472, + -0.03171193227171898, + -0.06330736726522446, + 0.07589957118034363, + -0.005670584738254547, + 0.005971544422209263, + -0.020719144493341446, + 0.02377556636929512, + 0.02335703745484352, + -0.10451741516590118, + 0.01684568263590336, + -0.06737732142210007, + -0.018268322572112083, + -0.015077048912644386, + 0.05031070113182068, + 0.012702074833214283, + 0.0008662982727400959, + 0.015999164432287216, + -0.03101448342204094, + -0.0350971445441246, + 0.03777701407670975, + 0.008360070176422596, + -0.03476954251527786, + 0.03107413649559021, + 0.048326097428798676, + 0.0037359294947236776, + -0.021455874666571617, + 0.062053874135017395, + -0.09100557863712311, + 0.04363824054598808, + -0.008978785015642643, + -0.010260941460728645, + 0.02489057183265686, + -0.012259863317012787, + -0.06337124109268188, + 0.06406913697719574, + -0.029118899255990982, + -0.005236697383224964, + -0.023356013000011444, + -2.4826320554893755e-08, + 0.0012084203772246838, + -0.09641283005475998, + 0.02804573066532612, + -0.038550082594156265, + -0.06342852115631104, + -0.058690790086984634, + 0.03726416081190109, + -0.07927848398685455, + -0.04032466560602188, + -0.08652178943157196, + 0.045111048966646194, + 0.03983577713370323, + -0.058734994381666183, + -0.06751832365989685, + 0.07626952230930328, + -0.01860472746193409, + 0.01079616229981184, + 0.03880540281534195, + -0.024495990946888924, + -0.073273204267025, + 0.025144357234239578, + -0.00808389950543642, + -0.01725662313401699, + -0.026281680911779404, + 0.0160351749509573, + 0.0328914150595665, + -0.05653535947203636, + 0.034548427909612656, + 0.08540350198745728, + 0.057169508188962936, + 0.005658602807670832, + 0.052562881261110306, + -0.008602326735854149, + -0.02735835686326027, + -0.0810806155204773, + 0.08217477798461914, + 0.020414838567376137, + -0.05336764454841614, + 0.008313070051372051, + 0.15468913316726685, + -0.00985868088901043, + -0.03485701605677605, + -0.01906798966228962, + -0.03332289308309555, + 0.043415144085884094, + -0.007103074807673693, + 0.02496436983346939, + 0.014994997531175613, + -0.004108935594558716, + -0.1343441605567932, + -0.0431242510676384, + 0.008469698019325733, + 0.04351593926548958, + 0.08675221353769302, + -0.0746128261089325, + 0.00973359402269125, + 0.017792193219065666, + 0.07002504914999008, + 0.013868152163922787, + -0.06480708718299866, + 0.13766281306743622, + 0.01360258087515831, + 0.085515096783638, + 0.0037260851822793484 + ], + "text-outdent-bold||*updated*,alignment,tab,unindent,dedent,menu": [ + -0.005879295524209738, + 0.04145216941833496, + -0.04041195288300514, + 0.05987933650612831, + -0.011827257461845875, + -0.04138583317399025, + 0.035188112407922745, + -0.04112136736512184, + 0.0009942847536876798, + 0.11162755638360977, + 0.01687641069293022, + 0.000577007420361042, + 0.05525732785463333, + -0.09100538492202759, + 0.06587748229503632, + 0.006968531291931868, + 0.0051369392313063145, + 0.0562748908996582, + -0.02171221934258938, + 0.002540141809731722, + -0.02198295295238495, + 0.0772116407752037, + 0.031039012596011162, + 0.06467419117689133, + 0.01614050380885601, + 0.04808232933282852, + 0.023533184081315994, + -0.026542318984866142, + -0.024053050205111504, + -0.07329078763723373, + -0.030489802360534668, + -0.01102352049201727, + 0.10616841912269592, + -0.024704763665795326, + 0.020938772708177567, + -0.00988754816353321, + -0.030169449746608734, + -0.011167686432600021, + 0.023451365530490875, + 0.012756812386214733, + -0.0549473911523819, + -0.09477542340755463, + 0.0009396997047588229, + -0.015537155792117119, + -0.015542834997177124, + -0.07255025953054428, + -0.08122298866510391, + -0.037721067667007446, + -0.0070504676550626755, + -0.011795894242823124, + 0.009677750058472157, + -0.02659153752028942, + -0.0904194712638855, + 0.009437860921025276, + -0.07238263636827469, + 0.029108071699738503, + -0.0761696994304657, + -0.028998326510190964, + 0.037131417542696, + -0.02061341144144535, + 0.08434966951608658, + 0.017965514212846756, + -0.007286533247679472, + 0.049017954617738724, + -0.0207463838160038, + 0.06546475738286972, + 0.08356205374002457, + -0.049110233783721924, + -0.04983716458082199, + 0.002263298723846674, + 0.07207654416561127, + -0.04110562801361084, + 0.04160561040043831, + -0.05189501494169235, + -0.017792481929063797, + -0.06045921519398689, + 0.04125071316957474, + 0.03949308767914772, + -0.030294355005025864, + -0.01150414627045393, + 0.05828313156962395, + 0.03156225010752678, + -0.008261816576123238, + 0.07559234648942947, + 0.07419829070568085, + 0.022880181670188904, + -0.014992034994065762, + -0.042931802570819855, + -0.04993845894932747, + 0.029713761061429977, + -0.0021362658590078354, + -0.047446057200431824, + 0.028635194525122643, + 0.02709330804646015, + -0.08963995426893234, + 0.014643740840256214, + -0.011841968633234501, + 0.059808265417814255, + -0.05917642265558243, + 0.12357357889413834, + -0.00313543900847435, + 0.09776768833398819, + 0.029331648722290993, + 0.07604970037937164, + -0.017713826149702072, + 0.011748182587325573, + 0.06858210265636444, + -0.06963513791561127, + -0.0007823553751222789, + -0.018593041226267815, + 0.03079206682741642, + -0.10765960812568665, + -0.014823971316218376, + -0.053337253630161285, + -0.06541426479816437, + 0.02365153469145298, + -0.0032573079224675894, + 0.01646486110985279, + 0.07567787170410156, + 0.07629381865262985, + 0.02816895954310894, + -0.03779759258031845, + -0.08072660118341446, + -0.020486244931817055, + -0.00677165063098073, + 0.07436022162437439, + 0.05675438046455383, + -1.8217418393120256e-33, + 0.009580719284713268, + 0.030704161152243614, + 0.02001773752272129, + 0.11965146660804749, + 0.059206075966358185, + 0.05042196810245514, + -0.1029563695192337, + -0.0703452080488205, + -0.0784398764371872, + -0.02799861505627632, + 0.08688116818666458, + 0.0344550721347332, + -0.040529776364564896, + 0.0866682231426239, + 0.039959508925676346, + -0.05989263951778412, + 0.02986936643719673, + 0.03993034362792969, + -0.04489169642329216, + 0.012193882837891579, + -0.03476778045296669, + 0.057785823941230774, + -0.020267821848392487, + -0.03041127510368824, + 0.03460303694009781, + 0.03131978213787079, + 0.03470747172832489, + 0.01969977840781212, + -0.14023447036743164, + 0.004074831958860159, + 0.020664023235440254, + 0.015233862213790417, + 0.0456571951508522, + -0.003570365021005273, + -0.0341016910970211, + -0.003517271252349019, + -0.10036908835172653, + -0.02733531780540943, + 0.013271234929561615, + -0.04601007327437401, + -0.08827104419469833, + -0.018280312418937683, + -0.007860606536269188, + -0.0719076469540596, + 0.01369095966219902, + 0.04864564910531044, + -0.03210003301501274, + -0.049804214388132095, + 0.07794388383626938, + -0.0013023839564993978, + 0.019883405417203903, + 0.07669631391763687, + -0.04266425967216492, + -0.030901659280061722, + -0.11765990406274796, + 0.002055073156952858, + -0.017190733924508095, + 0.11807804554700851, + 0.024544095620512962, + 0.035382576286792755, + -0.029692774638533592, + -0.03004118986427784, + 0.013360138982534409, + 0.0210761409252882, + -0.025255030021071434, + 0.043979644775390625, + -0.0908169075846672, + -0.012757961638271809, + 0.05932125449180603, + -0.04383944720029831, + -0.019521713256835938, + 0.036853108555078506, + -0.011769545264542103, + 0.05910682678222656, + -0.053217705339193344, + 0.005306430160999298, + 0.014265180565416813, + -0.08589692413806915, + 0.02495630271732807, + -0.05559670925140381, + 0.026803255081176758, + -0.03787557780742645, + -0.03883223608136177, + 0.05371371656656265, + 0.004798072390258312, + 0.007968967780470848, + 0.021978015080094337, + -0.02222193405032158, + 0.07385141402482986, + 0.07215462625026703, + -0.07877922058105469, + 0.029890745878219604, + -0.029047375544905663, + -0.08695489913225174, + -0.020236555486917496, + -1.909822549374101e-33, + 0.07064568251371384, + -0.022339437156915665, + -0.07347225397825241, + -0.039713967591524124, + -0.020990774035453796, + 0.09495777636766434, + -0.005944785661995411, + 0.09171181917190552, + -0.01498456858098507, + -0.012735076248645782, + 0.06108961999416351, + 0.09323491901159286, + -0.04381527379155159, + -0.052208028733730316, + 0.01699131168425083, + 0.1062486544251442, + -0.040144991129636765, + 0.033130284398794174, + -0.044893331825733185, + 0.009271488524973392, + 0.034721896052360535, + -0.01822267845273018, + -0.0038589350879192352, + 0.020070454105734825, + 0.0034837094135582447, + -0.053185660392045975, + 0.03143830597400665, + 0.09078781306743622, + -0.014458145946264267, + -0.056708019226789474, + 0.012682574801146984, + 0.032607659697532654, + -0.02364962361752987, + -0.005267922300845385, + -0.043783627450466156, + 0.03565381467342377, + -0.05055277422070503, + -0.0480823814868927, + -0.07202831655740738, + 0.07258399575948715, + -0.037386972457170486, + 0.03643561899662018, + 0.0019142230739817023, + -0.003895610338076949, + 0.008318056352436543, + 0.04222498834133148, + 0.0024444807786494493, + -0.10316897928714752, + -0.06560398638248444, + 0.05917821452021599, + 0.04260985553264618, + -0.05401549115777016, + 0.007448162417858839, + -0.005927025340497494, + -0.005397723522037268, + -0.009172124788165092, + -0.02436242438852787, + 0.006350663490593433, + -0.08699997514486313, + 0.01555947121232748, + -0.017992259934544563, + 0.10662567615509033, + 0.03950243815779686, + 0.042337723076343536, + 0.057918939739465714, + -0.016639435663819313, + -0.0080112274736166, + 0.0030789324082434177, + -0.05003662779927254, + -0.0062476033344864845, + 0.06818146258592606, + -0.16554121673107147, + -0.10434818267822266, + -0.009292510338127613, + 0.023138482123613358, + -0.06569112837314606, + 0.03642715513706207, + -0.037038277834653854, + -0.05735321715474129, + -0.058845508843660355, + 0.024795107543468475, + -0.02971920743584633, + 0.015090770088136196, + -0.010144389234483242, + -0.09041569381952286, + 0.020320950075984, + 0.03463253378868103, + 0.003989410120993853, + -0.030599648132920265, + 0.04010218754410744, + -0.05727720260620117, + 0.015454234555363655, + -0.00806264579296112, + -0.026951229199767113, + -0.06619638204574585, + -2.553563405172099e-08, + -0.04843372106552124, + -0.08427435904741287, + -0.10221249610185623, + 0.08726342022418976, + 0.007580766454339027, + -0.09557895362377167, + -0.020814359188079834, + -0.05443902313709259, + -0.01958419755101204, + -0.06111086532473564, + 0.012821990065276623, + 0.0008223176700994372, + -0.0054141744039952755, + -0.06162480264902115, + 0.029642287641763687, + 0.05319271981716156, + -0.07966078072786331, + 0.031957320868968964, + -0.0529109388589859, + -0.04862174019217491, + -0.008498727343976498, + 0.0755261555314064, + 0.06230490282177925, + 0.024171680212020874, + 0.035457853227853775, + 0.03969470039010048, + -0.1134772077202797, + 0.0279244314879179, + 0.030001003295183182, + 0.0870671272277832, + 0.07711915671825409, + 0.030828211456537247, + 0.014885598793625832, + -0.03966086730360985, + -0.058853719383478165, + -0.06291479617357254, + -0.003957219421863556, + -0.011858932673931122, + 0.04883059114217758, + 0.07612238079309464, + -0.012361968867480755, + -0.043905094265937805, + -0.003050803439691663, + 0.013730228878557682, + -0.08047473430633545, + -0.0006472113309428096, + 0.05471787974238396, + 0.06841476261615753, + -0.041704121977090836, + -0.1020050123333931, + -0.02074349671602249, + 0.03376995772123337, + 0.029223676770925522, + 0.0003789331822190434, + -0.08477013558149338, + -0.008601008914411068, + 0.0476204939186573, + 0.1319737434387207, + 0.04418368265032768, + -0.02575109526515007, + 0.09514037519693375, + -0.012477561831474304, + -0.007613607682287693, + -0.04012342542409897 + ], + "text-strikethrough-bold||typography,typeface,print,font,struck,remove,delete,change": [ + 0.03222618252038956, + 0.03982633352279663, + -0.06149514019489288, + 0.08892182260751724, + 0.027752768248319626, + 0.022766895592212677, + 0.06863398104906082, + -0.005189523100852966, + -0.001914115040563047, + 0.024762628600001335, + 0.04602659121155739, + 0.04696091264486313, + 0.029497304931282997, + -0.04721991717815399, + 0.046655140817165375, + -0.0037874439731240273, + 0.010086050257086754, + -0.01595461368560791, + 0.03532934561371803, + -0.01322940830141306, + -0.03480664640665054, + 0.0380837582051754, + 0.027165325358510017, + 0.040559329092502594, + 0.06488081812858582, + 0.051788315176963806, + 0.018078528344631195, + 0.018588341772556305, + 0.01992723159492016, + -0.0782979428768158, + -0.038936227560043335, + 0.08026227355003357, + 0.11665917932987213, + 0.0465158149600029, + 0.006917970720678568, + -0.013545998372137547, + 0.014695703983306885, + 0.046542491763830185, + 0.011116717010736465, + -0.012965147383511066, + -0.03088567405939102, + -0.10680627822875977, + -0.047134801745414734, + 0.016938520595431328, + -0.007724249269813299, + -0.031009292230010033, + -0.081697478890419, + 0.00441224779933691, + -0.017372000962495804, + 0.002552120480686426, + 0.03383007273077965, + -0.08513602614402771, + -0.08907413482666016, + -0.0025289664044976234, + 0.023783061653375626, + -0.0039960844442248344, + 0.03478848934173584, + 0.028702793642878532, + 0.029431210830807686, + -0.032166987657547, + -0.017155427485704422, + 0.023970885202288628, + -0.014173946343362331, + 0.00952689815312624, + 0.0257620420306921, + 0.011341029778122902, + 0.09499099105596542, + -0.03492351993918419, + -0.04138351231813431, + 0.036250174045562744, + 0.033071231096982956, + -0.006341735832393169, + -0.009593971073627472, + -0.023581458255648613, + -0.025503283366560936, + -0.0015309376176446676, + 0.03506118059158325, + -0.007057506125420332, + -0.02006329409778118, + -0.03400975838303566, + -0.08321087807416916, + 0.008995753712952137, + -0.026709115132689476, + 0.10380089282989502, + 0.05534285679459572, + 0.07048021256923676, + -0.0502794086933136, + -0.0482436902821064, + -0.018460016697645187, + -0.0059631261974573135, + -0.06412095576524734, + -0.0028413073159754276, + 0.053679175674915314, + -0.029986701905727386, + -0.10657165199518204, + -0.001056161243468523, + 0.011306960135698318, + -0.041537411510944366, + -0.0385906808078289, + 0.09819821268320084, + -0.0046539162285625935, + -0.024369878694415092, + 0.006996915675699711, + 0.0028094069566577673, + -0.05507950484752655, + -0.004403808154165745, + -0.012595596723258495, + -0.10539860278367996, + -0.006569061428308487, + -0.039015352725982666, + 0.03682532534003258, + -0.08104981482028961, + -0.06588681042194366, + -0.08514618873596191, + -0.010211370885372162, + -0.06126107648015022, + -0.020985424518585205, + -0.017770105972886086, + 0.10980323702096939, + 0.037307605147361755, + 0.027896573767066002, + -0.046480465680360794, + -0.07650350034236908, + -0.08105576038360596, + -0.047343768179416656, + -0.0028639098163694143, + 0.13450023531913757, + -7.427696714409081e-34, + 0.10119714587926865, + 0.0756392851471901, + -0.08138468116521835, + 0.0902404636144638, + 0.06849659979343414, + 0.025933869183063507, + -0.09063290804624557, + -0.04791198670864105, + -0.042315300554037094, + 0.010899927467107773, + 0.0798337385058403, + 0.02377844788134098, + 0.01593564823269844, + 0.04655366390943527, + 0.07398100942373276, + -0.03283471241593361, + 0.02912859059870243, + -0.029170306399464607, + -0.08215460926294327, + 0.03755105286836624, + -0.02385837957262993, + 0.02004869282245636, + -0.024997569620609283, + -0.03554709628224373, + -0.04552271589636803, + 0.028111591935157776, + 0.03550243750214577, + -0.049343425780534744, + -0.1092197597026825, + 0.0060633388347923756, + -0.00807860866189003, + 0.019432680681347847, + 0.059465035796165466, + 0.05296552926301956, + -0.015513932332396507, + 0.009287294000387192, + -0.019648659974336624, + -0.053501028567552567, + 0.023664114996790886, + -0.02964652329683304, + -0.13078650832176208, + 0.006444156169891357, + -0.010302243754267693, + -0.085809625685215, + 0.06826085597276688, + 0.10132889449596405, + -0.038943782448768616, + -0.02294350601732731, + 0.05400153249502182, + -0.010900570079684258, + 0.03975466638803482, + 0.047176916152238846, + 0.08303719013929367, + 0.049389488995075226, + 0.04950721934437752, + -0.03950237110257149, + -0.03602949157357216, + 0.057859499007463455, + 0.0987527146935463, + 0.04303303360939026, + 0.03823547810316086, + -0.014736514538526535, + 0.018607009202241898, + 0.041481684893369675, + -0.002627687295898795, + 0.09708523005247116, + -0.09921838343143463, + -0.031166380271315575, + 0.02810494415462017, + -0.035064902156591415, + -0.009185963310301304, + 0.0685020163655281, + -0.0034088180400431156, + 0.07859309017658234, + -0.03787916153669357, + 0.022870881482958794, + -0.017634114250540733, + -0.012617959640920162, + 0.02586781419813633, + -0.039061687886714935, + -0.04171709716320038, + -0.011098683811724186, + -0.029247364029288292, + -0.00685607036575675, + 0.05221384018659592, + -0.0049161240458488464, + 0.03130659461021423, + -0.11343211680650711, + -0.00011183905735379085, + 0.020284544676542282, + -0.11747832596302032, + -0.036425452679395676, + 0.04271361976861954, + -0.05965413525700569, + -0.006849484983831644, + -6.664647515446833e-34, + -0.0255931094288826, + 0.06382425129413605, + -0.10011117905378342, + 0.025648297742009163, + -0.04532904922962189, + 0.047523416578769684, + -0.007402919232845306, + 0.08077287673950195, + 0.003258987795561552, + 0.042006585747003555, + 0.09106128662824631, + -0.007499679923057556, + -0.09991949796676636, + -0.08110139518976212, + -0.036593325436115265, + -0.015531732700765133, + 0.018817823380231857, + 0.04179300367832184, + -0.06244081258773804, + 0.002865338232368231, + -0.00630979286506772, + -0.08209114521741867, + -0.04494372010231018, + 0.046270329505205154, + 0.04904485121369362, + -0.009489425458014011, + 0.020718013867735863, + 0.024525292217731476, + -0.07005097717046738, + -0.0067525217309594154, + -0.009148400276899338, + 0.04402747377753258, + 0.07066398113965988, + 0.017952527850866318, + -0.04118548333644867, + 0.028949059545993805, + 0.02534135989844799, + 0.013339932076632977, + -0.0008995094685815275, + 0.041609447449445724, + 0.039437755942344666, + -0.0011926338775083423, + 0.026216117665171623, + 0.05774617940187454, + -0.08647830039262772, + 0.007804547902196646, + -0.13194642961025238, + -0.06219535320997238, + 0.04430259019136429, + 0.05324292182922363, + 0.054380152374506, + -0.030724646523594856, + 0.02376755140721798, + -0.015703734010457993, + -0.062219154089689255, + -0.0704277753829956, + 0.04020398110151291, + -0.01954098418354988, + -0.060697607696056366, + 0.04558109492063522, + -0.042841993272304535, + 0.026887869462370872, + -0.0008490157197229564, + 0.08752787113189697, + 0.08214154094457626, + -0.0529218390583992, + -0.05044582113623619, + -0.013324741274118423, + -0.036915458738803864, + 0.010167267173528671, + -0.02058643475174904, + 0.02025425061583519, + 0.0826163962483406, + 0.0030336992349475622, + -0.0013993392931297421, + -0.10029037296772003, + 0.05480577051639557, + 0.009835341013967991, + -0.053184960037469864, + 0.057829685509204865, + 0.0780472606420517, + -0.040831100195646286, + -0.05478222668170929, + 0.01762133091688156, + -0.06351175904273987, + 0.0446893647313118, + -0.1085686907172203, + 0.02384430356323719, + 0.006816098466515541, + -0.015923287719488144, + -0.07556319981813431, + 0.07760332524776459, + 0.0631108433008194, + -0.031762100756168365, + -0.02013421058654785, + -2.6787224882696137e-08, + -0.039904139935970306, + -0.08627627044916153, + -0.05011025443673134, + -0.016933225095272064, + 0.007163670379668474, + 0.029850609600543976, + -0.0016195069765672088, + -0.08226057887077332, + -0.021082833409309387, + -0.10343433916568756, + 0.06418666243553162, + 0.047049157321453094, + -0.025688566267490387, + -0.12538599967956543, + 0.022679641842842102, + -0.000627630390226841, + 0.008571089245378971, + -0.005807095672935247, + -0.06197123974561691, + -0.043088920414447784, + 0.004229947924613953, + 0.03604833781719208, + 0.06177692860364914, + -0.04051637649536133, + -0.01166079007089138, + 0.0011507136514410377, + -0.04445052891969681, + 0.019560156390070915, + 0.053107161074876785, + 0.0855921059846878, + 0.028826449066400528, + 0.060087624937295914, + 0.03177864849567413, + 0.003916347399353981, + -0.08382519334554672, + -0.010517674498260021, + 0.021270746365189552, + 0.007896468974649906, + 0.027791140601038933, + 0.13549327850341797, + -0.07289571315050125, + 0.0047414666041731834, + -0.09417887032032013, + -0.014337639324367046, + -0.042941734194755554, + -0.043359726667404175, + 0.05731743201613426, + -0.04557371512055397, + -0.05221659317612648, + -0.07584452629089355, + -0.003971681464463472, + 0.04612411558628082, + 0.021322933956980705, + 0.07067646831274033, + -0.05232875421643257, + -0.009193604812026024, + 0.08051788061857224, + 0.07691982388496399, + 0.007455016486346722, + 0.006262491457164288, + 0.09530539810657501, + -0.025224411860108376, + 0.09800627827644348, + 0.004143185913562775 + ], + "text-subscript-bold||*new*,typography,font,formatting,mathematics,power,exponent,calculator": [ + -0.047866713255643845, + -0.005010492634028196, + -0.01264152955263853, + 0.03709612041711807, + 0.0049781277775764465, + -0.06134409457445145, + 0.024482930079102516, + 0.022697877138853073, + -0.0186836589127779, + 0.02349705994129181, + 0.006715322379022837, + 0.017097538337111473, + 0.06753905117511749, + -0.01775025948882103, + 0.0395108200609684, + 0.09356549382209778, + 0.006553099025040865, + 0.006184435915201902, + 0.01900644414126873, + -0.03707975149154663, + 0.06729044765233994, + 0.04201715812087059, + 0.026933278888463974, + 0.0193039458245039, + 0.057740021497011185, + 0.04473956301808357, + 0.03443913534283638, + -0.0132092060521245, + 0.05493937432765961, + -0.0007660791161470115, + -0.06636781990528107, + -0.0671696737408638, + 0.12238439917564392, + -0.03229759633541107, + 0.03826335817575455, + 0.047692809253931046, + 0.014764849096536636, + -0.030591409653425217, + 0.002415744122117758, + 0.1020992323756218, + -0.02251417748630047, + -0.1551796793937683, + -0.0017173894448205829, + 0.07959181070327759, + 0.005621974356472492, + -0.0430779755115509, + -0.11352350562810898, + 0.02736714854836464, + -0.04612118750810623, + 0.005402046255767345, + -0.028171086683869362, + -0.07472565770149231, + -0.1338343471288681, + 0.014458652585744858, + 0.047491610050201416, + -0.015433032065629959, + -0.013268266804516315, + -0.028365356847643852, + 0.05399826914072037, + -0.09169356524944305, + -0.016622986644506454, + 0.018160564824938774, + 0.05591106787323952, + 0.0010167912114411592, + 0.07013383507728577, + 0.041425738483667374, + -0.02280445769429207, + 0.05193359777331352, + -0.027339108288288116, + 0.13324151933193207, + -0.03972872346639633, + 0.007937420159578323, + -0.040660224854946136, + 0.026773011311888695, + -0.06336426734924316, + -0.0581318661570549, + 0.017881907522678375, + -0.030882984399795532, + 0.012580392882227898, + -0.017847223207354546, + -0.08708371967077255, + -0.039100900292396545, + -0.042519260197877884, + 0.05119991675019264, + 0.04620634391903877, + 0.036012161523103714, + 0.032572612166404724, + -0.03917579725384712, + 0.018176622688770294, + -0.030156632885336876, + -0.04813310131430626, + -0.06304832547903061, + 0.01761641725897789, + 0.01782393641769886, + -0.11476871371269226, + 0.016738634556531906, + 0.02113977074623108, + -0.024798786267638206, + 0.024190707132220268, + 0.025469714775681496, + -0.023521868512034416, + 0.08108985424041748, + 0.039207424968481064, + 0.0007249950431287289, + -0.10837505012750626, + -0.032690200954675674, + 0.016279207542538643, + -0.008346548303961754, + 0.026383021846413612, + 0.05552937835454941, + 0.0018746632849797606, + -0.05439429730176926, + -0.0473482571542263, + -0.03309566155076027, + 0.014912135899066925, + 0.025218194350600243, + 0.011526312679052353, + -0.011661008931696415, + 0.10753114521503448, + 0.12738682329654694, + 0.016215384006500244, + 0.018352730199694633, + 0.04120638966560364, + -0.03378104418516159, + 0.002248608972877264, + -0.02674913965165615, + 0.012326924130320549, + 4.219264780721305e-34, + 0.00033364162663929164, + 0.06781264394521713, + -0.0352264940738678, + 0.10220639407634735, + -0.02444528229534626, + 0.03434234857559204, + -0.07006741315126419, + -0.022127827629446983, + -0.10410809516906738, + 0.08309892565011978, + 0.047501835972070694, + 0.1897428035736084, + -0.006320715881884098, + 0.030955012887716293, + 0.04986710101366043, + -0.0321270190179348, + 0.08828019350767136, + -0.05967124551534653, + -0.03797085955739021, + -0.02490249276161194, + -0.045225679874420166, + 0.050621550530195236, + 0.014241867698729038, + 0.06430788338184357, + -0.04729059338569641, + -0.01074246596544981, + 0.059081949293613434, + 0.045945748686790466, + -0.07182497531175613, + -0.010019528679549694, + -0.015111026354134083, + 0.034682996571063995, + 0.039926886558532715, + -0.021539971232414246, + 0.031041350215673447, + 0.014539915136992931, + 0.0020450467709451914, + -0.061197057366371155, + 0.07907691597938538, + 0.038798920810222626, + -0.10911046713590622, + -0.0010003235656768084, + 0.04956207796931267, + -0.038114577531814575, + 0.0381542332470417, + 0.06425781548023224, + -0.03881067410111427, + -0.016892174258828163, + 0.0939730852842331, + 0.006503029260784388, + -0.07488018274307251, + 0.00834332499653101, + 0.010972492396831512, + -0.014677749015390873, + 0.02953375317156315, + -0.020458608865737915, + -0.05433985963463783, + 0.06263658404350281, + 0.05876106396317482, + -0.02598528005182743, + 0.024716969579458237, + -0.010695336386561394, + 0.09101484715938568, + -0.032673921436071396, + -0.10654757916927338, + -0.015250423923134804, + -0.07413266599178314, + 0.0018001554999500513, + 0.04439878463745117, + 0.030463827773928642, + -0.008635860867798328, + 0.07771626859903336, + -0.006517388392239809, + 0.07859503477811813, + 0.0028524459339678288, + 0.032418034970760345, + 0.03409443795681, + -0.04782494902610779, + -0.04537035524845123, + -0.025114797055721283, + -0.06057857349514961, + -0.012180010788142681, + -0.00954040139913559, + 0.061643246561288834, + 0.06880698353052139, + 0.01889667473733425, + -0.02929813228547573, + -0.061005160212516785, + -0.010829037986695766, + 0.046553902328014374, + -0.10457542538642883, + -0.05334645137190819, + -0.029665380716323853, + -0.13426712155342102, + -0.05088292434811592, + -2.678391796339414e-33, + -0.03994476795196533, + 0.02368823066353798, + -0.07997655868530273, + 0.013703208416700363, + -0.07120900601148605, + 0.02686295285820961, + -0.026582753285765648, + -0.019998496398329735, + 0.0677075982093811, + 0.02641010470688343, + 0.05363760516047478, + 0.06673287600278854, + -0.04330391809344292, + -0.1176004633307457, + 0.008216168731451035, + 0.0575321689248085, + -0.008337868377566338, + -0.04041394963860512, + -0.03400623798370361, + -0.03528691455721855, + -0.03960534930229187, + 0.029124105349183083, + -0.041644785553216934, + 0.051724862307310104, + 0.03272206336259842, + 0.03706534951925278, + -0.03239220753312111, + 0.014916179701685905, + -0.059994470328092575, + -0.02296169102191925, + -0.05358761176466942, + 0.00037011533277109265, + 0.09716745465993881, + 0.1224757581949234, + -0.08729905635118484, + -0.026583608239889145, + 0.08430122584104538, + -0.015474517829716206, + 0.031206561252474785, + -0.03567420318722725, + 0.010108494199812412, + -0.01774820126593113, + 0.07380586117506027, + 0.03891821205615997, + -0.0218068715184927, + -0.021332915872335434, + -0.029395146295428276, + -0.07515881210565567, + 0.00401488458737731, + 0.029920799657702446, + -0.03753811493515968, + -0.06620782613754272, + -0.013874892145395279, + -0.016814513131976128, + -0.10206932574510574, + -0.008124002255499363, + -0.018009811639785767, + 0.029837477952241898, + -0.07476212829351425, + 0.06644593179225922, + -0.022401317954063416, + 0.03951321169734001, + 0.05945625528693199, + 0.03117867186665535, + -0.05114302039146423, + -0.07158750295639038, + 0.0032004155218601227, + 0.017071407288312912, + 0.029836013913154602, + -0.04881353676319122, + 0.008712994866073132, + -0.03275569528341293, + 0.04063095897436142, + 0.031919024884700775, + -0.10253243893384933, + -0.05087605118751526, + 0.022942613810300827, + 0.01943325437605381, + -0.033610232174396515, + 0.022098036482930183, + 0.020941730588674545, + 0.08548348397016525, + -0.051710885018110275, + 0.013965212740004063, + -0.12717033922672272, + 0.0576406791806221, + 0.010394198819994926, + -0.0025219745002686977, + 0.0019517355831339955, + -0.0836193710565567, + -0.08369790762662888, + 0.06620979309082031, + 0.0015990959946066141, + -0.019831981509923935, + -0.09775958955287933, + -2.5120430180436415e-08, + -0.021654391661286354, + -0.02942429669201374, + -0.0277561042457819, + -0.02594512514770031, + 0.010336033999919891, + 0.0042089433409273624, + -0.04759884253144264, + -0.07203122973442078, + -0.047337476164102554, + -0.0014937687665224075, + 0.0921473279595375, + 0.011829420924186707, + -0.04690917208790779, + -0.056281205266714096, + -0.00910151656717062, + 0.035380229353904724, + 0.03270164132118225, + 0.039222851395606995, + -0.028325123712420464, + -0.07903814315795898, + -0.010672901757061481, + 0.06880038231611252, + 0.05895712226629257, + 0.04553565755486488, + -0.001899016322568059, + 0.025209318846464157, + -0.06508087366819382, + 0.0023303881753236055, + 0.03663501515984535, + 0.017119191586971283, + 0.06009566783905029, + 0.06399034708738327, + 0.021579816937446594, + -0.019446510821580887, + -0.09412824362516403, + -0.017734969034790993, + 0.05075318366289139, + 0.013138733804225922, + 0.017694955691695213, + 0.10075313597917557, + -0.010257622227072716, + -0.05356007441878319, + -0.033482637256383896, + 0.00868289079517126, + -0.029938792809844017, + 0.016286922618746758, + -0.01007593609392643, + -0.01677895523607731, + -0.005003947298973799, + -0.12378153204917908, + 0.010758460499346256, + 0.031105607748031616, + -0.01585705764591694, + 0.03572873771190643, + -0.04177888110280037, + 0.01605982519686222, + -0.0413145013153553, + 0.08244955539703369, + -0.01921376772224903, + -0.03582664579153061, + 0.06416889280080795, + 0.0028332665096968412, + 0.05830139294266701, + -0.059283994138240814 + ], + "text-superscript-bold||*new*,typography,font,formatting,mathematics,calculator": [ + -0.05481017008423805, + -0.020163144916296005, + -0.017191093415021896, + 0.03722594678401947, + -0.004965059459209442, + -0.014786627143621445, + 0.026474708691239357, + 0.04513553902506828, + -0.047823552042245865, + 0.04455143213272095, + 0.05161381885409355, + 0.05167844519019127, + 0.055440351366996765, + -0.02546018175780773, + 0.015235976316034794, + 0.025155117735266685, + 0.019409263506531715, + -0.04395797476172447, + -0.0028630101587623358, + -0.01949961856007576, + 0.07549506425857544, + 0.001221835264004767, + 0.013018216006457806, + 0.029782120138406754, + 0.08246483653783798, + 0.07915878295898438, + 0.018059559166431427, + -0.03779004514217377, + 0.05515822395682335, + -0.00492617953568697, + -0.07878205925226212, + -0.028261441737413406, + 0.1047983318567276, + -0.017561234533786774, + 0.014400406740605831, + 0.02356555126607418, + 0.014620689675211906, + -0.011402320116758347, + 0.0024157476145774126, + 0.021667033433914185, + -0.03359277918934822, + -0.15118412673473358, + -0.009777680039405823, + 0.07250833511352539, + 0.037677619606256485, + -0.012239447794854641, + -0.12044709920883179, + 0.04056014120578766, + -0.016440143808722496, + 0.021986395120620728, + -0.06398671120405197, + -0.07979040592908859, + -0.12107717990875244, + -0.009224973618984222, + 0.05064272880554199, + 0.04477647319436073, + -0.05149499326944351, + -0.06649935990571976, + 0.025672612711787224, + -0.08012966811656952, + -0.03723590075969696, + 0.034944113343954086, + 0.06473443657159805, + 0.02836015447974205, + 0.10663934797048569, + 0.054484665393829346, + -0.0576835572719574, + 0.041097525507211685, + -0.03147630766034126, + 0.14510609209537506, + -0.021832475438714027, + 0.031653691083192825, + -0.027308864519000053, + 0.046876028180122375, + -0.010492891073226929, + -0.04120878502726555, + 0.004778669681400061, + -0.03435736894607544, + -0.003669695695862174, + 0.016206257045269012, + -0.06696402281522751, + -0.08868634700775146, + -0.03383025899529457, + 0.05592672526836395, + 0.04586663469672203, + 0.03514908626675606, + 0.033540137112140656, + -0.03463432565331459, + 0.03817160800099373, + -0.019984573125839233, + -0.008260779082775116, + -0.07586731016635895, + -0.005641323514282703, + 0.006519663613289595, + -0.1355966329574585, + 0.050568412989377975, + 0.0006389997433871031, + -0.026409275829792023, + 0.016891872510313988, + 0.025981713086366653, + 0.01035257801413536, + -0.005203079432249069, + 0.023733394220471382, + -0.020056812092661858, + -0.04970284178853035, + -0.013211238197982311, + 0.02129816822707653, + -0.011068515479564667, + 0.020660948008298874, + 0.04791821166872978, + 0.004490947350859642, + -0.10354840010404587, + -0.05833067744970322, + -0.041554272174835205, + -0.03928964212536812, + -0.007173724938184023, + 0.009942611679434776, + -0.039854954928159714, + 0.10798899829387665, + 0.08529657125473022, + 0.035212744027376175, + 0.06710294634103775, + -0.0013976608170196414, + -0.018067210912704468, + -0.004174899775534868, + 0.00643123360350728, + 0.0006285845884121954, + -1.6949059299816786e-34, + 0.032010357826948166, + 0.06569094955921173, + -0.03995118290185928, + 0.08836514502763748, + -0.02976628765463829, + 0.05041615292429924, + -0.04337389022111893, + -0.004740819334983826, + -0.074507936835289, + 0.06306235492229462, + 0.06247644126415253, + 0.16548362374305725, + -0.01226870995014906, + 0.021660463884472847, + 0.05649145692586899, + -0.02228948287665844, + 0.05887376144528389, + -0.05057215690612793, + -0.012475317344069481, + -0.018048645928502083, + -0.03265955299139023, + 0.051320236176252365, + -0.011541037820279598, + 0.0283582154661417, + -0.05432910844683647, + -0.01595309004187584, + 0.07227690517902374, + 0.05422775819897652, + -0.10496815294027328, + -0.010508282110095024, + -0.005906641483306885, + -0.008091406896710396, + 0.02303772047162056, + 0.007436208892613649, + 0.0221920944750309, + 0.0204122643917799, + -0.010444285348057747, + -0.05222339183092117, + 0.07352730631828308, + 0.05894346907734871, + -0.11732011288404465, + 0.01865285076200962, + 0.014975895173847675, + -0.02752196602523327, + 0.02928840182721615, + 0.08989782631397247, + -0.0035766938235610723, + 0.03165479004383087, + 0.10554782301187515, + -0.025650229305028915, + -0.06392136961221695, + -0.012842939235270023, + -0.004341249354183674, + 0.030613133683800697, + 0.030598625540733337, + 0.007187938317656517, + -0.04383569955825806, + 0.07487653195858002, + 0.04725826531648636, + -0.03746245056390762, + 0.03661172837018967, + -0.023965613916516304, + 0.06823329627513885, + 0.003165971953421831, + -0.1078827977180481, + -0.02267136238515377, + -0.08252246677875519, + 0.02701473794877529, + 0.0687052384018898, + 0.04389619827270508, + -0.017063451930880547, + 0.08258464932441711, + 0.03587201237678528, + 0.055880654603242874, + -0.0026892039459198713, + 0.0452253483235836, + 0.0036547230556607246, + -0.07531768083572388, + -0.038013115525245667, + -0.019177576526999474, + -0.04940454661846161, + 0.03256111964583397, + -0.006724188569933176, + 0.07820774614810944, + 0.048085976392030716, + 0.02273293398320675, + -0.03636375442147255, + -0.08931544423103333, + 0.006206821650266647, + 0.013187817297875881, + -0.09719809144735336, + -0.0728815421462059, + -0.030607853084802628, + -0.11016135662794113, + -0.074559286236763, + -2.913157854665795e-33, + -0.07026846706867218, + 0.022679798305034637, + -0.018901647999882698, + 0.025376493111252785, + -0.04902658984065056, + 0.06597307324409485, + -0.005007562227547169, + -0.01895408146083355, + 0.07172423601150513, + -4.177982918918133e-05, + 0.08573433756828308, + 0.08845363557338715, + -0.005548591259866953, + -0.09034810960292816, + 0.012680701911449432, + 0.04639507457613945, + -0.0060196081176400185, + -0.03983966261148453, + -0.014817873947322369, + -0.0532083623111248, + -0.024388084188103676, + 0.006003034766763449, + -0.06503560394048691, + 0.08232120424509048, + 0.031586892902851105, + -0.008533687330782413, + -0.007318595889955759, + 0.04137689992785454, + -0.06810716539621353, + 0.021412892267107964, + -0.015808338299393654, + -0.023696856573224068, + 0.0786115825176239, + 0.10997437685728073, + -0.07151124626398087, + -0.008034071885049343, + 0.07106941193342209, + -0.015136118046939373, + 0.0009499770822003484, + 0.010627632960677147, + 0.023637818172574043, + -0.05945109575986862, + 0.06587086617946625, + 0.06267593801021576, + -0.03311512619256973, + 0.01762024685740471, + -0.043514709919691086, + -0.09086418151855469, + 0.040338434278964996, + 0.03048640675842762, + -0.03688524663448334, + -0.08141139894723892, + -0.03077155165374279, + -0.024624736979603767, + -0.10400369018316269, + -0.011594569310545921, + -0.027560370042920113, + -0.0007409812533296645, + -0.08217573165893555, + 0.07466965913772583, + 0.02155386283993721, + 0.026705993339419365, + 0.038652293384075165, + 0.0012741900281980634, + -0.022948656231164932, + -0.09741977602243423, + 0.0006164305959828198, + -0.0042327153496444225, + -0.020354965701699257, + -0.027778996154665947, + 0.03631575033068657, + -0.010805890895426273, + 0.002515258500352502, + 0.04192088916897774, + -0.07057236135005951, + -0.05782855674624443, + 0.03870410844683647, + 0.01631220243871212, + -0.03536626324057579, + 0.038567133247852325, + 0.027189483866095543, + 0.08209363371133804, + -0.04159053787589073, + 0.017544511705636978, + -0.09860195964574814, + 0.05652518570423126, + 0.006596533115953207, + 0.027768785133957863, + -0.0022864171769469976, + -0.059251781553030014, + -0.12494447082281113, + 0.1022348627448082, + -0.03726073354482651, + -0.04646718129515648, + -0.12134035676717758, + -2.3767354306869493e-08, + -0.04661380872130394, + -0.009312644600868225, + -0.049857430160045624, + -0.008451493456959724, + -0.024807879701256752, + -0.023951994255185127, + -0.05605241283774376, + -0.08332692831754684, + -0.029551466926932335, + -0.03814166784286499, + 0.06289166957139969, + -0.0004606044676620513, + -0.07805981487035751, + -0.05482027307152748, + 0.01937771774828434, + -0.0005127351614646614, + -0.02053706720471382, + 0.03551125153899193, + -0.037428680807352066, + -0.1325628161430359, + -0.006525402422994375, + 0.049081046134233475, + 0.05582277849316597, + -0.015981558710336685, + -0.013940841890871525, + 0.018641242757439613, + -0.03376336395740509, + 0.020838521420955658, + 0.05757276341319084, + 0.023037321865558624, + 0.03190331906080246, + 0.03732463717460632, + 0.012084899470210075, + -0.01579909585416317, + -0.08847737312316895, + -0.02918500453233719, + 0.026676120236516, + 0.035224832594394684, + 0.05717049539089203, + 0.11566989123821259, + 0.0006179312476888299, + -0.037853632122278214, + -0.06683706492185593, + 0.024444803595542908, + 0.004484675358980894, + 0.015140756964683533, + 0.03020973689854145, + -0.012099849991500378, + -0.018507560715079308, + -0.1416328251361847, + 0.013998688198626041, + 0.034723442047834396, + -0.013958304189145565, + 0.03968580439686775, + -0.01816907897591591, + -0.000746461097151041, + -0.0311611145734787, + 0.08021218329668045, + -0.017257101833820343, + -0.004928092937916517, + 0.09057022631168365, + 0.007817606441676617, + 0.023041002452373505, + -0.01980113610625267 + ], + "text-t-bold||typography,typeface,print,font": [ + 0.017233392223715782, + 0.0132406335324049, + -0.05120367929339409, + 0.06036101654171944, + 0.010686896741390228, + -0.011021178215742111, + 0.0703485831618309, + 0.014413985423743725, + -0.015531168319284916, + 0.011002293787896633, + 0.04314230754971504, + 0.03108190931379795, + 0.05242297798395157, + -0.03095558099448681, + 0.01808587647974491, + -0.03669280931353569, + 0.047402914613485336, + -0.04828249290585518, + 0.09509894996881485, + -0.012695273384451866, + -0.03351106122136116, + 0.06656894087791443, + 0.07335323095321655, + 0.02440730854868889, + 0.029794378206133842, + 0.04319804906845093, + -0.02188734896481037, + 0.005163028370589018, + 0.022384971380233765, + -0.05634656175971031, + -0.08656251430511475, + 0.00020595041860360652, + 0.06853233277797699, + 0.009691801853477955, + 0.013161541894078255, + 0.004566061310470104, + -0.007345437537878752, + 0.005702158901840448, + 0.020684028044342995, + 0.016542283818125725, + 0.0013802520697936416, + -0.1412389874458313, + -0.04865588620305061, + 0.06855877488851547, + 0.008019852451980114, + -0.05575637146830559, + -0.09101393818855286, + 0.013786297291517258, + -0.010789508000016212, + -0.027625640854239464, + -0.020302491262555122, + -0.07664000242948532, + -0.07673002779483795, + -0.01357250940054655, + 0.0190019179135561, + 0.041865330189466476, + -0.004344419576227665, + 0.020170018076896667, + 0.0049649630673229694, + -0.0694914385676384, + -0.008596362546086311, + 0.0473606251180172, + -0.0007449715631082654, + 0.031936511397361755, + 0.06209808960556984, + 0.05565802752971649, + 0.021837817505002022, + 0.06757305562496185, + -0.06963421404361725, + 0.018365705385804176, + 0.008690504357218742, + -0.017360102385282516, + -0.044330596923828125, + -0.02820180542767048, + -0.03839319944381714, + 0.014934594742953777, + 0.036100294440984726, + -0.04403160884976387, + -0.02026607096195221, + 0.008831356652081013, + -0.08265063911676407, + 0.008100856095552444, + -0.017080342397093773, + 0.05513911321759224, + 0.009393103420734406, + 0.07214146852493286, + -0.04674956575036049, + -0.0762406587600708, + -0.00699622044339776, + 0.02815602533519268, + -0.030803879722952843, + -0.01692945882678032, + 0.014211553148925304, + 0.019672544673085213, + -0.12023694068193436, + 0.006821777205914259, + -0.008264987729489803, + 0.01805656962096691, + -0.0229774322360754, + 0.08290071785449982, + 0.00840726774185896, + 0.06050362437963486, + 0.04124544933438301, + 0.021076999604701996, + -0.06066800281405449, + -0.01183132454752922, + 0.024400999769568443, + -0.0768199935555458, + 0.0158064104616642, + -0.025674285367131233, + 0.025088224560022354, + -0.07695858925580978, + -0.0724954903125763, + -0.05320470780134201, + -0.028235046193003654, + -0.06957286596298218, + -0.04043564572930336, + -0.014523199759423733, + 0.11965645849704742, + 0.032872263342142105, + -0.027463216334581375, + -0.014947216026484966, + -0.08327289670705795, + -0.08147349208593369, + 0.017785239964723587, + 0.017500057816505432, + 0.11122649908065796, + -8.99881516843763e-34, + 0.09641315042972565, + 0.07725809514522552, + -0.05507384613156319, + 0.15751045942306519, + 0.036750152707099915, + 0.07815868407487869, + -0.0953095480799675, + -0.05477399751543999, + -0.06245017424225807, + 0.02084318734705448, + 0.007886381819844246, + 0.02572542056441307, + -0.053459085524082184, + 0.04793047532439232, + 0.02802990935742855, + -0.006305135786533356, + 0.003606119891628623, + -0.0034709458705037832, + -0.09790745377540588, + 0.03621166944503784, + -0.038405340164899826, + 0.03309627249836922, + -0.029384475201368332, + -0.040332745760679245, + -0.016302814707159996, + 0.01573060266673565, + 0.018117886036634445, + 0.009965323843061924, + -0.11791995912790298, + 0.011554097756743431, + -0.009304676204919815, + 0.046224240213632584, + 0.06773725152015686, + -4.2671748815337196e-05, + -0.012112402357161045, + -0.017428157851099968, + -0.027219774201512337, + 0.003912877757102251, + 0.017797943204641342, + 0.011641109362244606, + -0.0940941870212555, + 0.04019884765148163, + 0.05492514371871948, + -0.07120540738105774, + 0.037656765431165695, + 0.1293872594833374, + 0.026647143065929413, + -0.027551066130399704, + 0.02272156998515129, + 0.015509406104683876, + 0.048169344663619995, + -0.027780840173363686, + -0.03091885708272457, + 0.061574842780828476, + 0.030019044876098633, + -0.006115972530096769, + -0.025188453495502472, + 0.06466437131166458, + 0.08937553316354752, + 0.0198231041431427, + 0.0266581941395998, + -0.023176053538918495, + 0.05672570317983627, + -0.018460378050804138, + -0.008861423470079899, + 0.07570520043373108, + -0.051689717918634415, + 0.0033536728005856276, + 0.07539473474025726, + -0.027898315340280533, + 0.03322890028357506, + 0.03798329457640648, + -0.011248939670622349, + 0.08199802786111832, + -0.011348185129463673, + 0.07825904339551926, + 0.03261977806687355, + -0.07138566672801971, + 0.016847830265760422, + -0.04065267741680145, + -0.06344915181398392, + -0.02050425298511982, + -0.014188606292009354, + 0.01740756817162037, + 0.029326679185032845, + 0.03163205459713936, + -0.024316057562828064, + -0.10270120203495026, + 0.05914862081408501, + 0.03428616002202034, + -0.12026166170835495, + -0.013013294897973537, + -0.014384324662387371, + -0.11713175475597382, + -0.07450580596923828, + -1.4037298033458814e-33, + 0.021589871495962143, + -0.01635996624827385, + -0.0852503627538681, + -0.08220364898443222, + -0.04122303053736687, + 0.03094729781150818, + 0.013704121112823486, + 0.04293316602706909, + 0.027883639559149742, + 0.06101994588971138, + 0.08315194398164749, + -0.021405233070254326, + -0.036284033209085464, + -0.09295626729726791, + -0.019633330404758453, + -0.035750407725572586, + 0.05954861268401146, + 0.029356790706515312, + -0.05136014148592949, + -0.017821649089455605, + -0.04270310699939728, + -0.09816868603229523, + -0.028628654778003693, + 0.10200932621955872, + 0.04555013030767441, + 0.027571499347686768, + -0.01696436107158661, + 0.05448223277926445, + -0.08515100181102753, + -0.0019724280573427677, + 0.009610512293875217, + -0.010043601505458355, + 0.09666413068771362, + 0.0862799808382988, + -0.03428685665130615, + 0.05494906008243561, + -0.006218493916094303, + 0.02085653506219387, + 0.04200706258416176, + 0.02176576852798462, + 0.03871465474367142, + -0.008604839444160461, + 0.027658551931381226, + 0.010304268449544907, + -0.08640466630458832, + 0.012283526360988617, + -0.08725818246603012, + -0.1328800916671753, + 0.06379245221614838, + 0.06743409484624863, + 0.07107808440923691, + 0.002163438592106104, + 0.026800211519002914, + -0.01091139018535614, + -0.08960060775279999, + -0.06760670989751816, + 0.021392174065113068, + 0.006763917859643698, + -0.08525887131690979, + 0.06758871674537659, + 0.026053888723254204, + 0.03058924898505211, + -0.0183080043643713, + 0.017786435782909393, + 0.04017838090658188, + -0.07412837445735931, + 0.00010262954310746863, + -0.03220406174659729, + 0.022039752453565598, + 0.006948208436369896, + 0.023303197696805, + 7.894970622146502e-05, + 0.029384979978203773, + 0.03526099771261215, + -0.02224569581449032, + -0.06542790681123734, + 0.029420316219329834, + 0.052496328949928284, + 0.00861157663166523, + 0.026055550202727318, + 0.023322470486164093, + 0.009964094497263432, + -0.03658447787165642, + 0.01682199537754059, + -0.08902749419212341, + 0.048720769584178925, + -0.029551969841122627, + -0.016371803358197212, + 0.004591898526996374, + -0.006244805175811052, + -0.04873669892549515, + 0.06874625384807587, + 0.007555592805147171, + 0.0092859398573637, + -0.016327302902936935, + -2.0511221165975257e-08, + 0.020637359470129013, + -0.10779775679111481, + -0.02581821009516716, + 0.01790756545960903, + -0.0308435820043087, + -0.03012506105005741, + -0.023549683392047882, + -0.1325562447309494, + -0.056282319128513336, + -0.070140041410923, + 0.016136541962623596, + -0.00412942748516798, + -0.04883570224046707, + -0.10284891724586487, + 0.06844304502010345, + -0.0069614979438483715, + -0.01667836494743824, + -0.008626006543636322, + -0.07799065113067627, + -0.11397378146648407, + 0.02687983401119709, + 0.004841078072786331, + 0.03694387897849083, + -0.029095420613884926, + 0.039573702961206436, + 0.004088106565177441, + -0.09893182665109634, + 0.020519649609923363, + 0.08886422961950302, + 0.06431183964014053, + 0.042627688497304916, + 0.02433851547539234, + -0.02560572884976864, + -0.00040306561277247965, + -0.055576179176568985, + -0.04267845302820206, + 0.007582971826195717, + -0.025112001225352287, + 0.0233006551861763, + 0.15625356137752533, + -0.05062473565340042, + 0.004819522146135569, + -0.034438952803611755, + -0.02404053695499897, + -0.022087737917900085, + 0.020184246823191643, + 0.0737864077091217, + 0.018675660714507103, + -0.03828265517950058, + -0.06923086941242218, + 0.0008827534038573503, + 0.04603569582104683, + 0.01795460842549801, + 0.08622176945209503, + -0.10302098840475082, + -0.060256022959947586, + 0.0505358912050724, + 0.11452022939920425, + -0.02348271571099758, + -0.013568751513957977, + 0.07375434041023254, + -0.0471520759165287, + 0.07962746173143387, + -0.02660837024450302 + ], + "text-t-slash-bold||*new*,typography,typeface,print,font,formatting,clear": [ + 0.002024570247158408, + 0.012162233702838421, + -0.033915117383003235, + 0.06140199676156044, + 0.010525764897465706, + -0.05868738889694214, + 0.025511594489216805, + 0.00027917951229028404, + -0.0230215173214674, + 0.03796224296092987, + 0.07825767248868942, + 0.024431535974144936, + 0.03272083401679993, + -0.02370251901447773, + -0.02595609985291958, + 0.009682344272732735, + 0.015417991206049919, + -0.03380436822772026, + 0.04262515529990196, + 0.00036890889168716967, + -0.03408166393637657, + 0.08177559822797775, + 0.00960159208625555, + 0.015380920842289925, + 0.03883322328329086, + 0.04272572696208954, + -0.004063636530190706, + -0.010003838688135147, + 0.03443645313382149, + -0.08321181684732437, + -0.05199183151125908, + -0.009196843951940536, + 0.13564294576644897, + 0.011319996789097786, + 0.07257451117038727, + 0.033579230308532715, + 0.05876190587878227, + -0.015816425904631615, + 0.019992759451270103, + 6.135061994427815e-05, + 0.006610661745071411, + -0.1525043100118637, + -0.07430065423250198, + 0.051651228219270706, + -0.0021211993880569935, + -0.048145052045583725, + -0.07503177970647812, + -0.008950365707278252, + 0.007243311498314142, + -0.0032847721595317125, + -0.05476266145706177, + -0.0860893651843071, + -0.12667369842529297, + -0.031375616788864136, + 0.06678332388401031, + 0.017099078744649887, + -0.009276042692363262, + 0.023882973939180374, + 0.006154865026473999, + -0.04441498592495918, + 0.021172363311052322, + 0.0302653256803751, + -0.016825145110487938, + 0.03907668963074684, + 0.03742462024092674, + 0.023237526416778564, + -0.029195183888077736, + 0.052022770047187805, + -0.04977649077773094, + 0.007436912041157484, + -0.042415838688611984, + -2.7525702535058372e-05, + -0.08063182979822159, + 0.03893526270985603, + -0.06888709962368011, + -0.023904500529170036, + 0.017843427136540413, + 0.0018584796926006675, + -0.0356171652674675, + 0.016219057142734528, + -0.02936963364481926, + -0.0023198630660772324, + -0.0008116026874631643, + 0.06970961391925812, + 0.011024116538465023, + 0.08618877828121185, + -0.0436074435710907, + -0.08405719697475433, + -0.017649145796895027, + -0.013955055736005306, + -0.011877581477165222, + -0.06019741669297218, + 0.008581866510212421, + 0.016366122290492058, + -0.14734295010566711, + 0.013531239703297615, + -0.0013071766588836908, + 0.002613917924463749, + -0.0012580759357661009, + 0.11520683765411377, + -0.02110011875629425, + 0.028339141979813576, + -0.005697211250662804, + -0.011999276466667652, + -0.051828160881996155, + 0.007572398521006107, + 0.03930879384279251, + -0.028732353821396828, + -0.002285983180627227, + 0.01991122215986252, + 0.01602274179458618, + -0.0951097160577774, + -0.1058683916926384, + -0.07045990973711014, + -0.010014398023486137, + -0.03032531403005123, + -0.07878798991441727, + -0.025824567303061485, + 0.11937495321035385, + 0.11199383437633514, + 0.0029768813401460648, + -0.0371711365878582, + -0.07687903940677643, + -0.05725444480776787, + -0.004823687020689249, + 0.014403212815523148, + 0.0919780358672142, + -4.348283091741224e-34, + 0.09870266169309616, + 0.09442992508411407, + -0.04764188081026077, + 0.1449863314628601, + 0.02952132374048233, + 0.07527077943086624, + -0.06978054344654083, + -0.03068934567272663, + -0.04469778761267662, + 0.01700555719435215, + 0.06230372563004494, + 0.004700179677456617, + -0.04558328539133072, + 0.04183896631002426, + 0.028340505436062813, + -0.03250662609934807, + 0.03170734643936157, + -0.04177452251315117, + -0.09352398663759232, + 0.003371822414919734, + -0.031170111149549484, + 0.109616219997406, + -0.022793162614107132, + -0.020027097314596176, + -0.0037991220597177744, + -0.02004963718354702, + 0.03792743384838104, + -0.01286284253001213, + -0.08929576724767685, + 0.015118187293410301, + -0.034151412546634674, + 0.009337302297353745, + 0.08564865589141846, + 0.03074834868311882, + -0.04244478419423103, + 0.09369757026433945, + -0.011544127948582172, + -0.012539169751107693, + 0.009207988157868385, + 0.023673657327890396, + -0.12459845095872879, + 0.009171683341264725, + -0.021657466888427734, + -0.056300148367881775, + 0.050494562834501266, + 0.10021021217107773, + -0.02956853061914444, + -0.06569584459066391, + -0.013208162970840931, + 0.032268136739730835, + -0.001995268976315856, + 0.015969322994351387, + 0.027164487168192863, + 0.07291688024997711, + -0.023304082453250885, + -0.03788632154464722, + -0.046044763177633286, + 0.035005394369363785, + 0.08494501560926437, + -0.017863161861896515, + 0.04249611496925354, + 0.01824260875582695, + 0.0221610888838768, + -0.0066719865426421165, + -0.055458731949329376, + 0.043576929718256, + -0.03511069342494011, + 0.025437410920858383, + 0.06407961249351501, + -0.011991537176072598, + -0.041843999177217484, + 0.03277881070971489, + -0.016938194632530212, + 0.07629737257957458, + -0.03646109625697136, + 0.037317123264074326, + 0.005800185259431601, + -0.073265939950943, + 0.023927459493279457, + -0.06375723332166672, + -0.0840352326631546, + 0.003489662893116474, + 0.002217554021626711, + 0.017481371760368347, + 0.05204537510871887, + -0.019985150545835495, + -0.010472502559423447, + -0.04207954928278923, + 0.0447913222014904, + 0.030351901426911354, + -0.08539219945669174, + -0.01486836839467287, + -0.05214496701955795, + -0.09994477778673172, + -0.04696178808808327, + -2.6565345809118276e-33, + 0.03157200664281845, + 0.038604214787483215, + -0.09045278280973434, + -0.023510541766881943, + -0.09367911517620087, + 0.0323636569082737, + 0.016006752848625183, + 0.04803244769573212, + 0.026254169642925262, + 0.03897557035088539, + 0.07726582139730453, + 0.04285246133804321, + 0.012074965983629227, + -0.10560118407011032, + 0.030963189899921417, + -0.0016129493014886975, + -0.003236593911424279, + -0.0032231202349066734, + -0.0515948124229908, + 0.006884624715894461, + -0.051436278969049454, + -0.07292550057172775, + -0.039329566061496735, + 0.08742313086986542, + 0.04357399418950081, + 0.007627394516021013, + 0.005545405671000481, + 0.03719058632850647, + -0.03596127778291702, + 0.018348898738622665, + 0.031023280695080757, + -0.004171791020780802, + 0.07799065858125687, + 0.09199938178062439, + -0.03236891329288483, + 0.04640880599617958, + -0.024499593302607536, + 0.04527900740504265, + 0.051749225705862045, + 0.0009261793456971645, + 0.03482554480433464, + -0.027501486241817474, + 0.020556148141622543, + 0.04895895719528198, + -0.08392344415187836, + -0.022919204086065292, + -0.08519339561462402, + -0.130278080701828, + 0.025741275399923325, + 0.038603778928518295, + 0.06905462592840195, + -0.01660187542438507, + 0.001759228645823896, + -0.03569842502474785, + -0.0708431601524353, + -0.024932540953159332, + -0.019266141578555107, + 0.04900322109460831, + -0.11594266444444656, + 0.08345872908830643, + -0.007488688919693232, + 0.034524571150541306, + -0.0670696571469307, + 0.01791284792125225, + 0.0466964989900589, + -0.11568690091371536, + -0.013485952280461788, + 0.006358901038765907, + -0.012472834438085556, + 0.003633099142462015, + 0.01598568633198738, + 0.045782145112752914, + -0.02644665539264679, + 0.01043249387294054, + -0.015336773358285427, + -0.08459676057100296, + 0.0018534254049882293, + 0.030503125861287117, + -0.008775131776928902, + 0.0659160241484642, + 0.03172949701547623, + 0.036352962255477905, + -0.04159168154001236, + 0.006776396185159683, + -0.06381068378686905, + 0.02982460893690586, + -0.04482463002204895, + 0.040400829166173935, + -0.009431581012904644, + -0.03191586956381798, + -0.0585818737745285, + 0.07383806258440018, + 0.0042310068383812904, + 0.02519405446946621, + -0.07394862174987793, + -2.5839737460842116e-08, + -0.007298121228814125, + -0.12208739668130875, + -0.01081336010247469, + 0.048503149300813675, + -0.0005844106199219823, + -0.0321112759411335, + -0.05593445152044296, + -0.08977845311164856, + -0.02027392014861107, + -0.06278203427791595, + 0.046668943017721176, + 0.017130281776189804, + -0.07645735889673233, + -0.08245011419057846, + 0.05649721249938011, + 0.020771309733390808, + -0.015374644659459591, + 0.0039224205538630486, + -0.049344081431627274, + -0.06535632908344269, + 0.004109562840312719, + 0.009008679538965225, + 0.05206592008471489, + -0.009538665413856506, + 0.04512860253453255, + -0.027708040550351143, + -0.06708398461341858, + 0.03562873601913452, + 0.07393140345811844, + 0.058003854006528854, + 0.06162082403898239, + 0.05014289543032646, + -0.010873631574213505, + -0.000889624294359237, + -0.057615216821432114, + -0.016512585803866386, + -0.0011749431723728776, + 0.01535588875412941, + 0.023527560755610466, + 0.135027214884758, + -0.0331268385052681, + -0.009431633166968822, + -0.024329205974936485, + -0.032532066106796265, + -0.06954223662614822, + -0.004681907594203949, + 0.05873393639922142, + 0.0231647752225399, + -0.04576537758111954, + -0.11536917835474014, + 0.009579873643815517, + 0.08360691368579865, + 0.009365221485495567, + 0.06923964619636536, + -0.05726258084177971, + -0.0011624431936070323, + 0.05526315048336983, + 0.13037878274917603, + -0.0014756249729543924, + -0.027602730318903923, + 0.07825583964586258, + -0.012423860840499401, + 0.07728692889213562, + -0.021204732358455658 + ], + "text-underline-bold||typography,typeface,print,font,underscore,emphasis": [ + -0.03177281841635704, + -0.0056548211723566055, + -0.03975706920027733, + 0.07704313844442368, + 0.021974321454763412, + -0.030535243451595306, + 0.05310165137052536, + -0.0190973449498415, + -0.0410170741379261, + -0.02341320365667343, + 0.020252615213394165, + 0.04738737270236015, + 0.05752548575401306, + -0.053031183779239655, + 0.04314480349421501, + 0.05221885070204735, + 0.06613510102033615, + -0.03692382946610451, + 0.017497777938842773, + -0.00172367412596941, + 0.03078402206301689, + 0.04342835769057274, + 0.013056352734565735, + -0.0055198511108756065, + 0.06459635496139526, + 0.0004270631179679185, + -0.0018443361623212695, + 0.03017011471092701, + -0.015078856609761715, + -0.07462561130523682, + -0.055642105638980865, + -0.052983298897743225, + 0.1296164095401764, + 0.003812143113464117, + 0.052087780088186264, + 0.026843450963497162, + -0.010706962086260319, + -0.008093317039310932, + 0.03210749104619026, + 0.04704940691590309, + -0.018032602965831757, + -0.10240056365728378, + -0.04973645135760307, + 0.08530650287866592, + 0.022778863087296486, + -0.05952901393175125, + -0.11394321173429489, + -0.02110598236322403, + -0.000514920218847692, + -0.012245072051882744, + -0.04732252284884453, + -0.02705898880958557, + -0.10874583572149277, + -0.01579800806939602, + -0.035989392548799515, + 0.0008360145729966462, + -0.017784563824534416, + -0.02538587711751461, + -0.01569538563489914, + -0.07495520263910294, + -0.03433004394173622, + -0.00022533480660058558, + -0.024254852905869484, + 0.03244075924158096, + 0.030481930822134018, + 0.04676944389939308, + 0.008894214406609535, + 0.060271281749010086, + -0.0404101125895977, + 0.07134674489498138, + 0.011746675707399845, + -0.022263014689087868, + -0.02116180583834648, + 0.026389582082629204, + -0.014114768244326115, + -0.036019809544086456, + 0.014083648100495338, + 0.03408624231815338, + 0.002744619967415929, + -0.02828487567603588, + -0.02305520884692669, + 0.02452637441456318, + 0.0003628922568168491, + 0.04880313575267792, + 0.04833928495645523, + 0.07488792389631271, + -0.015778083354234695, + -0.12291955202817917, + -0.0282910093665123, + 0.03625861927866936, + -0.023219337686896324, + -0.07561232149600983, + 0.03919057175517082, + 0.06361488997936249, + -0.14558914303779602, + 0.016529779881238937, + 0.07417884469032288, + 0.003909057937562466, + -0.008775223977863789, + 0.08524660021066666, + -0.006334582809358835, + 0.05897612124681473, + 0.037800490856170654, + 0.031664952635765076, + -0.07149341702461243, + -0.03990717604756355, + 0.04619503766298294, + -0.08800607919692993, + -0.006488259881734848, + -0.017367685213685036, + 0.01940046437084675, + -0.08628838509321213, + -0.05788394808769226, + -0.0298753771930933, + -0.03386803716421127, + -0.049941521137952805, + -0.00398775190114975, + -0.020082559436559677, + 0.12209723889827728, + 0.04917309060692787, + -0.0211682990193367, + -0.010228077881038189, + -0.0685960203409195, + -0.025233685970306396, + -0.046928174793720245, + 0.019355200231075287, + 0.05522209778428078, + 5.658147926299519e-35, + 0.038711171597242355, + 0.025371868163347244, + -0.04122446849942207, + 0.0927385613322258, + 0.03153142333030701, + 0.04052554443478584, + -0.11848443746566772, + -0.05193301662802696, + -0.08348999172449112, + 0.040769193321466446, + 0.04960935562849045, + 0.0025735606905072927, + -0.04290568083524704, + 0.03974480926990509, + -0.019548211246728897, + -0.03504922613501549, + 0.06728547066450119, + -0.0113043412566185, + -0.06375894695520401, + 0.04588685184717178, + -0.06927502900362015, + 0.016397807747125626, + -0.0007420014007948339, + -0.010593595914542675, + 0.014867790043354034, + -0.013714420609176159, + 0.024926945567131042, + -0.03686189651489258, + -0.11493983864784241, + 0.002139727119356394, + 0.03709949925541878, + -0.05622788518667221, + 0.08721522986888885, + 0.0065302057191729546, + -0.08520470559597015, + 0.06954587250947952, + -0.01759408973157406, + 0.0002172661043005064, + 0.02074994333088398, + 0.025225378572940826, + -0.13997870683670044, + 0.025936797261238098, + 0.01190316490828991, + -0.05769486725330353, + 0.04089885577559471, + 0.09879295527935028, + -0.019183704629540443, + -0.015408199280500412, + 0.034364815801382065, + 0.044507332146167755, + -0.01358813513070345, + -0.037795986980199814, + -0.0018951182719320059, + 0.0693882554769516, + 0.02954600751399994, + 0.01851082779467106, + -0.03451727330684662, + 0.06277015805244446, + 0.03556084260344505, + -0.04595709964632988, + 0.054766565561294556, + -0.047875188291072845, + 0.06417036056518555, + -0.010242450051009655, + -0.04363963380455971, + 0.014558636583387852, + -0.05428009852766991, + 0.027287021279335022, + 0.07616942375898361, + 0.04750997573137283, + -0.014136549085378647, + 0.03583135828375816, + -0.027587221935391426, + 0.10563036054372787, + -0.02871021442115307, + 0.07668370008468628, + -0.04213157668709755, + -0.08139415085315704, + 0.08152049779891968, + -0.0031177992932498455, + -0.0839504674077034, + 0.0009571906994096935, + -0.017805591225624084, + 0.025522716343402863, + 0.00244971108622849, + 0.03740773722529411, + -0.008680981583893299, + -0.10198851674795151, + 0.016306132078170776, + 0.05082695931196213, + -0.11328286677598953, + -0.023890072479844093, + -0.020218735560774803, + -0.12325195223093033, + -0.02993146888911724, + -2.7381923163726133e-33, + 0.06022410839796066, + -0.021971624344587326, + -0.03919094055891037, + -0.021880775690078735, + -0.054929301142692566, + 0.10248035192489624, + 0.01854533702135086, + 0.03086390532553196, + 0.0031200454104691744, + 0.10528948903083801, + 0.03492259979248047, + 0.014465978369116783, + -0.051382068544626236, + -0.09126581996679306, + 0.0034827408380806446, + -0.009420402348041534, + -0.009711415506899357, + 0.05900358036160469, + 0.027076227590441704, + 0.016843724995851517, + -0.02120879851281643, + -0.07272958755493164, + -0.028957828879356384, + 0.08692308515310287, + 0.03539857640862465, + 0.005916316527873278, + -0.00035797475720755756, + 0.009827339090406895, + -0.09651719033718109, + 0.014523998834192753, + 0.017134197056293488, + 0.03454674035310745, + 0.05298725888133049, + 0.035228703171014786, + -0.07028617709875107, + 0.0541333332657814, + 0.020693300291895866, + 0.033809565007686615, + -0.03163154423236847, + -0.0007809273665770888, + 0.017108721658587456, + 0.019619854167103767, + 0.033338211476802826, + 0.007824745029211044, + -0.02325410768389702, + 0.022103136405348778, + -0.10823891311883926, + -0.09067998081445694, + 0.0414392426609993, + 0.05395560711622238, + 0.02072068117558956, + -0.039995793253183365, + 0.03359642252326012, + 0.028258156031370163, + -0.11161380261182785, + -0.020923685282468796, + -0.003058908274397254, + 0.020019015297293663, + -0.11228033900260925, + 0.03066364862024784, + 0.025970662012696266, + 0.007936153560876846, + -0.05933308228850365, + 0.020895840600132942, + 0.03801719844341278, + -0.060003604739904404, + 0.0374566949903965, + -0.03868170827627182, + 0.00983639806509018, + -0.03155059739947319, + -0.0049432311207056046, + -0.012544214725494385, + -0.05251314491033554, + 0.028567543253302574, + -0.017319438979029655, + -0.021716376766562462, + 0.029973676428198814, + 0.021597610786557198, + -0.009368667379021645, + 0.02124757319688797, + 0.011485246941447258, + 0.019578924402594566, + -0.07776306569576263, + 0.05862126871943474, + -0.08326379209756851, + 0.06827261298894882, + -0.010489613749086857, + 0.04255376011133194, + -0.016988670453429222, + -0.00660797068849206, + -0.02791115827858448, + 0.07564392685890198, + -0.027893222868442535, + -0.03136695921421051, + -0.08552833646535873, + -2.3856674857825055e-08, + 0.012406417168676853, + -0.08737050741910934, + 0.019717970862984657, + -0.05109991505742073, + 0.009068351238965988, + 0.01448641438037157, + -0.013709510676562786, + -0.12768341600894928, + -0.0344817228615284, + -0.07909281551837921, + 0.009892330504953861, + 0.028452089056372643, + -0.05597393587231636, + -0.07907683402299881, + 0.07498189806938171, + 0.0006135496078059077, + 0.008864391595125198, + 0.07356172800064087, + -0.0489334911108017, + -0.03869124501943588, + 0.023251699283719063, + 0.05602923408150673, + 0.00521381851285696, + 0.012016664259135723, + 0.05588176101446152, + 0.0023964745923876762, + -0.08760928362607956, + 0.06585708260536194, + 0.08079199492931366, + 0.08990062028169632, + 0.05801612138748169, + 0.04394806921482086, + 0.019680701196193695, + -0.045794978737831116, + -0.019975101575255394, + -0.026460403576493263, + 0.07847024500370026, + -0.08097302168607712, + 0.00981593132019043, + 0.159806028008461, + -0.050154171884059906, + -0.028379550203680992, + -0.013256990350782871, + -0.04168809577822685, + 0.007339890580624342, + 0.006497693248093128, + 0.03331412002444267, + 0.017384573817253113, + -0.04179058223962784, + -0.07875682413578033, + 0.002773992484435439, + 0.021159488707780838, + 0.05021845921874046, + 0.0543455071747303, + -0.11922597885131836, + -0.0012287162244319916, + 0.016081850975751877, + 0.12033332139253616, + -0.04019339010119438, + -0.009631508029997349, + 0.10492172092199326, + -0.06615424901247025, + 0.09082712233066559, + -0.0029953995253890753 + ], + "textbox-bold||input,cursor,field": [ + 0.04504073038697243, + -0.03893198445439339, + -0.027786316350102425, + 0.06431643664836884, + 0.018735339865088463, + 0.03342090919613838, + 0.028248580172657967, + -0.043269407004117966, + 0.009619643911719322, + -0.038822829723358154, + -0.058751802891492844, + 0.04452775418758392, + 0.08337345719337463, + -0.09045537561178207, + -0.0021321054082363844, + 0.03183288127183914, + 0.008217738009989262, + -0.034426067024469376, + -0.023006035014986992, + 0.020016836002469063, + -0.07454245537519455, + 0.016103748232126236, + 0.026892855763435364, + 0.021707816049456596, + -0.04950880631804466, + 0.02255605161190033, + 0.062117692083120346, + -0.00847621913999319, + -0.05479695647954941, + -0.051718924194574356, + -0.05508287623524666, + -0.044054266065359116, + 0.08888554573059082, + 0.0049745780415833, + -0.005880629178136587, + 0.003008213359862566, + -0.0686473473906517, + -0.006705311592668295, + -0.04550556465983391, + 0.03481374680995941, + -0.005666408687829971, + -0.15081477165222168, + 0.04561573266983032, + 0.0358535572886467, + -0.008493522182106972, + -0.12034447491168976, + -0.021577930077910423, + -0.0770384892821312, + 0.06438397616147995, + 0.009483172558248043, + 0.016708150506019592, + -0.01561067160218954, + 0.00457565113902092, + 0.05667850375175476, + -0.008479149080812931, + 0.039691656827926636, + -0.01645655371248722, + -0.014850497245788574, + 0.035738006234169006, + -0.02034369856119156, + -0.043702222406864166, + 0.04322151467204094, + 0.050200995057821274, + -0.012954320758581161, + 0.07091930508613586, + 0.05522468686103821, + 0.038466811180114746, + 0.03487825393676758, + -0.02923387847840786, + -0.02279079519212246, + 0.058662597090005875, + 0.06407725811004639, + -0.04691215977072716, + -0.04306117072701454, + -0.07228268682956696, + 0.03005789779126644, + -0.04152495414018631, + 0.04044419154524803, + 0.037173714488744736, + 0.04050583019852638, + -0.0848628506064415, + -0.03633974492549896, + -0.05237060785293579, + 0.005136170890182257, + 0.08569960296154022, + 0.020203640684485435, + -0.0570022352039814, + -0.02144809253513813, + -0.012883617542684078, + 0.016050713136792183, + -0.025296185165643692, + -0.02920662611722946, + -0.005601508542895317, + 0.08683294802904129, + -0.08327654749155045, + -0.01885395310819149, + 0.054153066128492355, + -0.0032896276097744703, + -0.09012104570865631, + 0.013793982565402985, + 0.029838072136044502, + 0.02607380598783493, + 0.019040221348404884, + 0.010056640021502972, + 0.011735985055565834, + 0.01156307477504015, + 0.03990212827920914, + -0.0919942557811737, + -0.0012904168106615543, + -0.0023818870540708303, + -0.011741741560399532, + -0.15315410494804382, + -0.041839271783828735, + 0.010049707256257534, + -0.014252005144953728, + -0.0034203941468149424, + -0.030765745788812637, + -0.05101999640464783, + 0.0658799260854721, + 0.05508321523666382, + 0.07986346632242203, + -0.0417560413479805, + -0.09922338277101517, + -0.034161485731601715, + 0.005932127125561237, + 0.010796635411679745, + 0.055934078991413116, + -7.305504994996066e-34, + 0.03811834752559662, + 0.039293937385082245, + -0.0016259098192676902, + 0.10492449253797531, + 0.010975881479680538, + 0.06308659166097641, + -0.07499377429485321, + 0.06488773226737976, + -0.08209845423698425, + -0.0433354526758194, + 0.0504898838698864, + -0.019501129165291786, + -0.014035430736839771, + -0.02350466512143612, + 0.034286025911569595, + -0.11198113113641739, + -0.039841428399086, + 0.007447471842169762, + -0.06907917559146881, + 0.015725623816251755, + -0.017636507749557495, + 0.05715712159872055, + -0.056709375232458115, + 0.004657542333006859, + -0.05458708107471466, + -0.013405954465270042, + 0.008638757281005383, + 0.03326432406902313, + -0.05624385550618172, + 0.025406939908862114, + 0.017618395388126373, + 0.027608897536993027, + 0.020288540050387383, + 0.027376996353268623, + -0.05458739027380943, + 0.009141238406300545, + -0.03229827806353569, + -0.004468033090233803, + 0.09482041746377945, + 0.092997707426548, + -0.06402506679296494, + -0.06975064426660538, + 0.06658943742513657, + -0.049592502415180206, + 0.06601326167583466, + 0.0900634378194809, + -0.0069544389843940735, + -0.025872476398944855, + -0.05728188529610634, + -0.06408089399337769, + 0.0041705165058374405, + 0.025147734209895134, + -0.03598634526133537, + -0.009310505352914333, + 0.055136729031801224, + -0.03337686508893967, + -0.06336861848831177, + 0.07679072767496109, + 0.03918718546628952, + 0.03422244265675545, + 0.028018364682793617, + 0.026947956532239914, + 0.03286018967628479, + -0.004004831425845623, + -0.053052254021167755, + 0.056503474712371826, + -0.07596608996391296, + -0.0022946048993617296, + 0.07318774610757828, + -0.024237608537077904, + 0.09702256321907043, + 0.043409597128629684, + -0.04173271358013153, + 0.02643509954214096, + -0.03603172302246094, + 0.0571708045899868, + 0.016299283131957054, + -0.0964784324169159, + 0.025570981204509735, + -0.08993253856897354, + -0.06551413983106613, + 0.03448432683944702, + -0.04595576226711273, + 0.08471432328224182, + 0.002730006817728281, + 0.025225916877388954, + -0.02297959476709366, + -0.0006117461016401649, + 0.01108836755156517, + -0.00129362428560853, + 0.011391636915504932, + -0.034459710121154785, + -0.04786926135420799, + -0.13022936880588531, + -0.06872887909412384, + -9.20701450342245e-34, + 0.0626906156539917, + 0.012661091051995754, + -0.027379345148801804, + 0.022393200546503067, + 0.0058966949582099915, + 0.08221113681793213, + 0.012519575655460358, + 0.04089437797665596, + 0.053379543125629425, + 0.01930103451013565, + -0.009800704196095467, + 0.052030134946107864, + -0.048011187463998795, + -0.061925675719976425, + 0.026215892285108566, + 0.0727236419916153, + -0.003668405581265688, + 0.09353078156709671, + -0.024511339142918587, + -0.06816574186086655, + 0.031104812398552895, + -0.028869181871414185, + -0.05363330990076065, + 0.11621224135160446, + -0.09704726189374924, + -0.03759178891777992, + -0.04291420057415962, + -0.01711735688149929, + -0.04943706840276718, + 0.0344979353249073, + -0.028660010546445847, + 0.006328752730041742, + -0.006091170944273472, + 0.06961497664451599, + -0.0625162199139595, + 0.02500706911087036, + 0.04633360356092453, + -0.04965890198945999, + 0.02128075435757637, + 0.037284865975379944, + 0.03545701503753662, + 0.012823538854718208, + 0.011833850294351578, + -0.0047510527074337006, + -0.048827916383743286, + -0.01758396066725254, + -0.0206844974309206, + -0.013194099999964237, + 0.06173005327582359, + 0.0719355046749115, + -0.014756027609109879, + -0.052272893488407135, + -0.012917487882077694, + -0.0005488747265189886, + -0.11639270931482315, + -0.04486535117030144, + 0.03295886144042015, + -0.026740500703454018, + 0.02157534286379814, + 0.07174661755561829, + -0.025415698066353798, + 0.08921898156404495, + -0.00010345804184908047, + 0.026259921491146088, + 0.05437525734305382, + -0.061755869537591934, + 0.08669088780879974, + 0.05204116180539131, + 0.041370049118995667, + -0.03466163948178291, + 0.09935281425714493, + 0.011948877014219761, + 0.05654178559780121, + 0.09326095879077911, + 0.0874747633934021, + 0.0013965553371235728, + 0.03693637251853943, + 0.0035987994633615017, + -0.047124579548835754, + 0.0237918458878994, + 0.04804128408432007, + 0.006230826955288649, + 0.04276537150144577, + -0.042347878217697144, + -0.05907978489995003, + 0.06353701651096344, + 0.006629951298236847, + -0.010675985366106033, + -0.006281913258135319, + -0.06084209308028221, + -0.08149092644453049, + 0.009877415373921394, + -0.023138292133808136, + -0.04537752643227577, + -0.050697166472673416, + -1.8661241441009224e-08, + 0.00980314426124096, + -0.01966109126806259, + -0.06573805212974548, + -0.013698413036763668, + 0.020999474450945854, + -0.0419650673866272, + -0.030082374811172485, + -0.03126866742968559, + 0.05426010489463806, + -0.032058220356702805, + 0.0024839569814503193, + -0.003220176324248314, + -0.050038475543260574, + -0.10389507561922073, + 0.07038599997758865, + 0.07804802805185318, + -0.025228412821888924, + 0.04299640655517578, + -0.010797731578350067, + -0.03960065916180611, + 0.11740413308143616, + 0.04916252940893173, + 0.016843490302562714, + -0.007952193729579449, + -0.001816471223719418, + 0.007438575848937035, + -0.13643433153629303, + 0.07628864794969559, + 0.0646522268652916, + 0.09426726400852203, + 0.03972342237830162, + 0.01673033833503723, + 0.02086949348449707, + -0.006111013237386942, + -0.09711029380559921, + -0.05119454115629196, + 0.02647222764790058, + -0.028851645067334175, + -0.01574746146798134, + 0.1153838112950325, + -0.025309067219495773, + -0.009926206432282925, + -0.03204026818275452, + -0.09475995600223541, + -0.0488927848637104, + 0.040458086878061295, + 0.031364865601062775, + -0.024819543585181236, + -0.040615443140268326, + -0.12169674783945084, + -0.019970325753092766, + 0.05344625562429428, + 0.06147022917866707, + 0.07718659937381744, + -0.06466972827911377, + -0.09447871148586273, + -0.011273705400526524, + 0.10369254648685455, + -0.04845156893134117, + -0.038846418261528015, + 0.0967876985669136, + 0.06585019081830978, + 0.042992059141397476, + 0.018579868599772453 + ], + "thermometer-bold||meteorology,temperature,degrees,\u00b0,celcius,centigrade,kelvin,fahrenheit,hot,warm,cold": [ + -0.01490772981196642, + 0.007627416402101517, + -0.048697907477617264, + 0.05237700417637825, + 0.027726510539650917, + -0.01835327222943306, + 0.0294562466442585, + 0.020710904151201248, + 0.052065473049879074, + -0.04304216057062149, + 0.025602640584111214, + -0.13130319118499756, + 0.01910686306655407, + -0.031395915895700455, + -0.010424491949379444, + -0.07030782103538513, + -0.009606285952031612, + -0.037876468151807785, + 0.033425599336624146, + 0.029960284009575844, + -0.062104277312755585, + 0.04232081025838852, + 0.003193070413544774, + 0.1109825074672699, + 0.02684960328042507, + 0.02591853216290474, + -0.0014394883764907718, + 0.10345764458179474, + -0.0018527682404965162, + 0.05124058201909065, + -0.05623684823513031, + 0.02291785553097725, + 0.06185669079422951, + 0.03897600248456001, + 0.019628506153821945, + -0.0033760047517716885, + -0.0014479736564680934, + -0.03349444642663002, + -0.05774838477373123, + 0.058959074318408966, + 0.03744079917669296, + -0.07018730789422989, + 0.06399866193532944, + 0.03624580800533295, + -0.026849539950489998, + 0.06566842645406723, + -0.08590539544820786, + 0.0437006950378418, + -0.031892985105514526, + 0.029152289032936096, + -0.05467603728175163, + -0.029518216848373413, + -0.09768113493919373, + 0.024063019081950188, + 0.014508446678519249, + 0.10487059503793716, + -0.050905611366033554, + -0.05280780792236328, + 0.010289454832673073, + 0.035672880709171295, + -0.03130557760596275, + 0.08088430762290955, + -0.07368746399879456, + 0.07157266139984131, + 0.10449061542749405, + -0.04682130366563797, + 0.021800758317112923, + 0.029355479404330254, + 0.022899078205227852, + -0.010295047424733639, + 0.011187206953763962, + 0.012617652304470539, + 0.013558448292315006, + -0.004191057290881872, + -0.0004660554986912757, + -0.05939728021621704, + 0.029057804495096207, + -0.026205098256468773, + 0.023757366463541985, + -0.020209074020385742, + -0.05127989128232002, + -0.08166447281837463, + -0.0105969263240695, + 0.023282475769519806, + -0.00843935739248991, + 0.03495771810412407, + 0.020769907161593437, + -0.025477033108472824, + 0.010101355612277985, + -0.08348508179187775, + -0.05196598917245865, + -0.04542103782296181, + -0.08130675554275513, + 0.043874647468328476, + -0.0704592764377594, + 0.1334533393383026, + 0.04793863743543625, + 0.04527999088168144, + -0.015477195382118225, + 0.020118849352002144, + 0.010076511651277542, + -0.03717835620045662, + -0.0889410451054573, + 0.10722967982292175, + -0.0003246364649385214, + -0.017897678539156914, + 0.013200401328504086, + -0.06378188729286194, + 0.029323777183890343, + -0.010994479060173035, + -0.05394040420651436, + -0.0567534975707531, + -0.004794827662408352, + -0.054813727736473083, + 0.03774665668606758, + -0.0905059203505516, + -0.1173546314239502, + 0.004845703952014446, + 0.044618137180805206, + 0.009868713095784187, + -0.0683409720659256, + 0.018281931057572365, + -0.018433621153235435, + 0.05414620041847229, + -0.046655770391225815, + 0.01961694099009037, + 0.09859593212604523, + -2.110958081665441e-33, + 0.060344766825437546, + 0.021335527300834656, + 0.03204328194260597, + 0.0573909692466259, + 0.0015264343237504363, + -0.001378874178044498, + -0.08644673228263855, + 0.014215866103768349, + -0.009756002575159073, + 0.08972465991973877, + 0.07166486233472824, + 0.09225199371576309, + -0.041686829179525375, + 0.06309382617473602, + 0.031269900500774384, + 0.018062151968479156, + 0.0918295606970787, + 0.011347683146595955, + -0.06018970161676407, + 0.022341562435030937, + -0.056853245943784714, + 0.09210295975208282, + 0.009124628268182278, + -0.027643920853734016, + 0.034739911556243896, + 0.029279213398694992, + 0.005635610781610012, + 0.05969914793968201, + -0.08034351468086243, + 0.01812007650732994, + 0.06641567498445511, + -0.07224622368812561, + -0.049779631197452545, + -0.026566125452518463, + -0.0033048847690224648, + -0.03079800494015217, + -0.0476391427218914, + 0.051605474203825, + -0.01822962611913681, + 0.02590901032090187, + -0.04496600106358528, + -0.022918103262782097, + 0.04102857783436775, + 0.022832727059721947, + 0.050021056085824966, + 0.12336353212594986, + -0.06011304259300232, + -0.048302069306373596, + 0.05560027435421944, + 0.031428370624780655, + -0.043636176735162735, + -0.023017892614006996, + 0.010365224443376064, + -0.013885519467294216, + 0.042019058018922806, + 0.022228427231311798, + 0.025295725092291832, + 0.049147047102451324, + -0.055502910166978836, + -0.02844538725912571, + -0.0625571683049202, + 0.023152651265263557, + 0.05702727288007736, + -0.10037894546985626, + -0.006394513417035341, + 0.023990478366613388, + -0.06006750464439392, + 0.058913879096508026, + 0.05128650739789009, + -0.006008069962263107, + -0.05300389230251312, + 0.061900265514850616, + 0.05164206773042679, + 0.023303335532546043, + 0.009603098966181278, + 0.053923599421978, + 0.043276432901620865, + 0.006470993626862764, + 0.02524806745350361, + -0.014587483368813992, + -0.12290047109127045, + 0.0166972316801548, + 0.05483555793762207, + 0.0009154277504421771, + -0.022710176184773445, + -0.03995247185230255, + -0.0352347232401371, + -0.011709741316735744, + 0.06681455671787262, + 0.07649938017129898, + -0.07327109575271606, + -0.024630993604660034, + 0.009369482286274433, + 0.009425130672752857, + -0.11328288167715073, + -4.302147693536334e-34, + 0.012357911095023155, + -0.0005739774205721915, + -0.1073831096291542, + 0.05447256565093994, + -0.06093133985996246, + 0.02464904449880123, + 0.020721755921840668, + 0.04106416553258896, + -0.025729816406965256, + 0.029845846816897392, + 0.0810999795794487, + -0.06203913316130638, + -0.03726198524236679, + -0.14372362196445465, + 0.01898886263370514, + 0.08568420261144638, + -0.02435135468840599, + 0.10097113996744156, + -0.09805095940828323, + 0.057356175035238266, + -0.09849533438682556, + -0.02289598435163498, + -0.05079681798815727, + 0.05879798159003258, + -0.037324558943510056, + 0.034624695777893066, + 0.07973018288612366, + -0.04677886515855789, + -0.034937962889671326, + -0.02254551090300083, + -0.05532729998230934, + -0.07872167229652405, + 0.017978407442569733, + 0.0435858890414238, + -0.08392850309610367, + 0.055513959378004074, + 0.09910967946052551, + -0.09696460515260696, + -0.01449944730848074, + -0.029255082830786705, + 0.04391280189156532, + 0.0499873086810112, + 0.058676596730947495, + -0.008708065375685692, + -0.013397132977843285, + 0.025710484012961388, + -0.018188025802373886, + -0.017350677400827408, + 0.021918466314673424, + 0.0764814019203186, + 0.06470274180173874, + -0.0947025939822197, + -0.023820748552680016, + 0.006838396191596985, + -0.05788682401180267, + -0.04485141858458519, + -0.07842597365379333, + 0.02602052502334118, + 0.013008340261876583, + -0.0032323331106454134, + 0.03483542427420616, + -0.05622522905468941, + -0.0005120995920151472, + 0.08472996950149536, + -0.05339457094669342, + -0.07693354040384293, + -0.014888140372931957, + 0.028777655214071274, + 0.030809249728918076, + 0.022923706099390984, + 0.10454487800598145, + 0.02430800348520279, + -0.02893565595149994, + -0.021793395280838013, + 0.02829628251492977, + -0.03609536215662956, + 0.07255854457616806, + 0.011382143944501877, + -0.03388294577598572, + 0.060842230916023254, + -0.000895012984983623, + 0.006846604403108358, + -0.04239432513713837, + 0.09131241589784622, + 0.02519991435110569, + -0.028205467388033867, + 0.05900074914097786, + -0.031799063086509705, + -0.00494979927316308, + -0.0038311751559376717, + -0.055827442556619644, + 0.09708467125892639, + -0.062465548515319824, + 0.025516269728541374, + 0.0038712886162102222, + -2.8931630424722243e-08, + 0.018449969589710236, + -0.003891661064699292, + -0.010095678269863129, + -0.02702256105840206, + -0.012691736221313477, + -0.025536008179187775, + -0.03546940162777901, + -0.10840167105197906, + -0.04624911770224571, + 0.06274601817131042, + 0.038522347807884216, + 0.0601348876953125, + -0.04762466996908188, + -0.004716134630143642, + -0.007604402024298906, + -0.06928208470344543, + -0.06727307289838791, + -0.005939779337495565, + -0.015448757447302341, + -0.05473265424370766, + 0.007260331884026527, + 0.053272463381290436, + 0.03809838369488716, + -0.039315152913331985, + 0.06827352195978165, + 0.06909680366516113, + -0.08612799644470215, + 0.07080017030239105, + 0.05632992088794708, + 0.01670275442302227, + -0.04795881733298302, + -0.011034203693270683, + -0.006570646073669195, + 0.002929553622379899, + -0.055635955184698105, + 0.01480358187109232, + -0.03040986880660057, + 0.06669440865516663, + 0.014911405742168427, + 0.05558731034398079, + 0.0013514840975403786, + -0.054778873920440674, + -0.08561071008443832, + 0.035887930542230606, + -0.01888960413634777, + -0.08551938086748123, + 0.043234072625637054, + 0.017951400950551033, + -0.034721143543720245, + -0.02969546616077423, + -0.04614564776420593, + 0.018899815157055855, + 0.05333304777741432, + 0.038450147956609726, + -0.050945624709129333, + -0.0751158818602562, + -0.018084164708852768, + 0.02850799262523651, + -0.04952185973525047, + 0.01467512734234333, + 0.07297661900520325, + -0.005302099511027336, + -0.10323838889598846, + -0.020803751423954964 + ], + "thermometer-cold-bold||meteorology,temperature,degrees,\u00b0,celcius,centigrade,kelvin,fahrenheit": [ + -0.023559870198369026, + 0.012097192928195, + -0.041987255215644836, + 0.06341800838708878, + 0.02102304808795452, + -0.0095291156321764, + 0.026092417538166046, + 0.04597637429833412, + 0.06449949741363525, + -0.04893340915441513, + 0.0315483994781971, + -0.13052305579185486, + 0.0267163198441267, + -0.03721829131245613, + -0.013712730258703232, + -0.07863952964544296, + -0.0213200431317091, + -0.036392249166965485, + 0.02105972357094288, + 0.014200919307768345, + -0.059630200266838074, + 0.032939083874225616, + -0.01565764844417572, + 0.10506763309240341, + 0.029056623578071594, + 0.032287392765283585, + -0.010352570563554764, + 0.08164412528276443, + -0.0013100567739456892, + 0.07051396369934082, + -0.054008569568395615, + 0.021421749144792557, + 0.053157493472099304, + 0.030796101316809654, + 0.012776599265635014, + -0.012243478558957577, + 0.012122556567192078, + -0.016645634546875954, + -0.05059647560119629, + 0.047017376869916916, + 0.051535092294216156, + -0.06455906480550766, + 0.0682675689458847, + 0.030489251017570496, + -0.02129143290221691, + 0.07259522378444672, + -0.08345884084701538, + 0.06719835102558136, + -0.038685619831085205, + 0.028519226238131523, + -0.07425293326377869, + -0.028908656910061836, + -0.11365325003862381, + 0.047637149691581726, + 0.000802062451839447, + 0.11705300956964493, + -0.04919436573982239, + -0.04433036968111992, + -0.009266293607652187, + 0.032808318734169006, + -0.03950916603207588, + 0.07413432002067566, + -0.06222783774137497, + 0.07703012228012085, + 0.11685493588447571, + -0.051063522696495056, + 0.02078568935394287, + 0.016768738627433777, + 0.0341370515525341, + -0.0006386138265952468, + 0.01724180020391941, + 0.02049229107797146, + 0.009472326375544071, + -0.010844522155821323, + 0.007852775044739246, + -0.056741006672382355, + 0.007726029027253389, + -0.020701749250292778, + 0.02177644893527031, + -0.020016813650727272, + -0.01442208606749773, + -0.08429285138845444, + -0.0184317696839571, + 0.012425372377038002, + -0.015427193604409695, + 0.023833462968468666, + 0.04266129434108734, + -0.024499323219060898, + 0.01634344458580017, + -0.06994367390871048, + -0.049416739493608475, + -0.05106361210346222, + -0.09245403110980988, + 0.033401455730199814, + -0.07540202140808105, + 0.12540015578269958, + 0.0481889545917511, + 0.057993870228528976, + -0.01451654639095068, + 0.009749154560267925, + 0.014071259647607803, + -0.0447707436978817, + -0.08473125100135803, + 0.09497654438018799, + 0.00432042870670557, + -0.01770712248980999, + 0.013539179228246212, + -0.07235890626907349, + 0.025701135396957397, + -0.02307485044002533, + -0.04452982917428017, + -0.058686550706624985, + -0.018291372805833817, + -0.05443749204277992, + 0.0520009882748127, + -0.08508791774511337, + -0.12674736976623535, + 0.0018037483096122742, + 0.044706009328365326, + -0.001268495456315577, + -0.0767040029168129, + 0.037864942103624344, + -0.038022227585315704, + 0.05053450167179108, + -0.04643824324011803, + 0.03302457183599472, + 0.09051574766635895, + -1.576551533816751e-33, + 0.06109880656003952, + 0.012142549268901348, + 0.042448993772268295, + 0.05611884221434593, + 0.01406156551092863, + -0.011688693426549435, + -0.07590888440608978, + 0.03680561110377312, + -0.0038188013713806868, + 0.09840954095125198, + 0.08809784799814224, + 0.07369349896907806, + -0.04491378366947174, + 0.04125228896737099, + 0.031047554686665535, + 0.011360537260770798, + 0.08420413732528687, + -0.005250693764537573, + -0.05576510727405548, + 0.041561201214790344, + -0.032094672322273254, + 0.09026232361793518, + 0.006621045991778374, + -0.01327663753181696, + 0.0426967516541481, + 0.01537263486534357, + 0.0004672869690693915, + 0.065791554749012, + -0.06664209067821503, + 0.009510337375104427, + 0.06701105833053589, + -0.08006659895181656, + -0.06517631560564041, + -0.0272077489644289, + 0.002715396462008357, + -0.04049612209200859, + -0.033752281218767166, + 0.043105050921440125, + -0.0075782351195812225, + 0.012718411162495613, + -0.03602723404765129, + -0.02916669473052025, + 0.03839339688420296, + 0.011417094618082047, + 0.053316954523324966, + 0.10416239500045776, + -0.06456946581602097, + -0.06126262620091438, + 0.053907610476017, + 0.04024100303649902, + -0.03937814012169838, + -0.006926579400897026, + 0.006747119594365358, + -0.017355864867568016, + 0.054296281188726425, + 0.011824983172118664, + 0.019278988242149353, + 0.05493311583995819, + -0.04885002598166466, + -0.03395550325512886, + -0.0795348584651947, + 0.00016151736781466752, + 0.04776586592197418, + -0.10742504149675369, + -0.008599519729614258, + 0.03808465600013733, + -0.062093596905469894, + 0.07189631462097168, + 0.032422713935375214, + -0.005322842858731747, + -0.041181739419698715, + 0.0487268790602684, + 0.07130090147256851, + 0.023307176306843758, + 0.010003488510847092, + 0.053723156452178955, + 0.029881177470088005, + 0.009756091982126236, + 0.034144479781389236, + -0.014483886770904064, + -0.12485495209693909, + 0.03686419874429703, + 0.05255815386772156, + 0.012707768008112907, + -0.03131665289402008, + -0.03508737310767174, + -0.03326864540576935, + 0.0005565547617152333, + 0.06509824097156525, + 0.08490850031375885, + -0.062083348631858826, + -0.021555693820118904, + 0.004477894864976406, + 0.02705886773765087, + -0.10676445066928864, + -1.200912395777904e-33, + 0.008134037256240845, + -0.009409190155565739, + -0.10812362283468246, + 0.05086673051118851, + -0.0622403509914875, + 0.03986806422472, + 0.01877421885728836, + 0.0270693376660347, + -0.020082328468561172, + 0.03442278876900673, + 0.07853449136018753, + -0.05754794180393219, + -0.03367207199335098, + -0.12902942299842834, + 0.023352546617388725, + 0.07612147182226181, + -0.027746573090553284, + 0.10052035748958588, + -0.08914826065301895, + 0.06768757104873657, + -0.09392677992582321, + -0.024107487872242928, + -0.04283113405108452, + 0.04014259949326515, + -0.016692014411091805, + 0.03534962981939316, + 0.08914756029844284, + -0.03280917555093765, + -0.03364671766757965, + -0.03807760775089264, + -0.05914803221821785, + -0.07570042461156845, + 0.02243896760046482, + 0.0350826121866703, + -0.09566925466060638, + 0.059152644127607346, + 0.08160629123449326, + -0.10607466101646423, + -0.027392320334911346, + -0.03418505936861038, + 0.051470689475536346, + 0.038318704813718796, + 0.06321796774864197, + 0.002143499907106161, + -0.0015170960687100887, + 0.01593841053545475, + -0.03733379766345024, + -0.02598596177995205, + 0.027036074548959732, + 0.06745512038469315, + 0.06285171955823898, + -0.09544089436531067, + -0.036237459629774094, + -0.0026976871304214, + -0.0632583424448967, + -0.028956009075045586, + -0.07945775240659714, + 0.029535947367548943, + 0.02163676917552948, + -0.005125269293785095, + 0.03911655396223068, + -0.07578670978546143, + -0.0055160983465611935, + 0.05255468562245369, + -0.06036710366606712, + -0.07365377992391586, + -0.007389988284558058, + 0.03734755143523216, + 0.026492612436413765, + 0.022138386964797974, + 0.11263113468885422, + 0.022054392844438553, + -0.01881818287074566, + -0.031038424000144005, + 0.013075903989374638, + -0.038861989974975586, + 0.06875653564929962, + 0.02114020474255085, + -0.024498989805579185, + 0.0707235187292099, + -0.009430881589651108, + 0.0029412824660539627, + -0.046848345547914505, + 0.08472762256860733, + 0.03188513591885567, + -0.027208510786294937, + 0.055411893874406815, + -0.02778201550245285, + -0.015268003568053246, + 0.002460931893438101, + -0.0427318699657917, + 0.08793576806783676, + -0.06820772588253021, + 0.020398883149027824, + 0.02045457810163498, + -2.689665912214423e-08, + 0.021135320886969566, + 0.009117360226809978, + -0.012640814296901226, + -0.018772795796394348, + -0.001761149032972753, + -0.017091188579797745, + -0.039198242127895355, + -0.11221379041671753, + -0.05012351647019386, + 0.0706963986158371, + 0.014498730190098286, + 0.05180002748966217, + -0.03823466971516609, + -0.00933950487524271, + -0.018118202686309814, + -0.08146177977323532, + -0.09004800766706467, + -0.010271077044308186, + -0.012197728268802166, + -0.07301463931798935, + 0.004002647940069437, + 0.034851379692554474, + 0.02541123330593109, + -0.03461908549070358, + 0.053041037172079086, + 0.07618314027786255, + -0.0545320138335228, + 0.07886289805173874, + 0.05682136118412018, + 0.01919678971171379, + -0.068689726293087, + -0.018341651186347008, + 0.017457840964198112, + 0.002154197543859482, + -0.026259485632181168, + -0.011309687048196793, + -0.02659475989639759, + 0.07598976790904999, + 0.020316313952207565, + 0.05654004216194153, + 0.005498172249644995, + -0.05263518542051315, + -0.08598583936691284, + 0.039510369300842285, + -0.011742787435650826, + -0.07931992411613464, + 0.052257340401411057, + 0.0319124273955822, + -0.039805132895708084, + -0.014322178438305855, + -0.04721274971961975, + 0.026698239147663116, + 0.0388873927295208, + 0.04517873376607895, + -0.053077030926942825, + -0.05065823346376419, + -0.011478402651846409, + 0.023575713858008385, + -0.08115386962890625, + 0.015498640947043896, + 0.05355501547455788, + -0.01296453457325697, + -0.11536946892738342, + -0.015928389504551888 + ], + "thermometer-hot-bold||meteorology,temperature,degrees,\u00b0,celcius,centigrade,kelvin,fahrenheit,warm": [ + -0.013990274630486965, + 0.0019497661851346493, + -0.049459461122751236, + 0.04903117194771767, + 0.027614586055278778, + -0.02345007285475731, + 0.03294209763407707, + 0.0004402469494380057, + 0.049036409705877304, + -0.03363760933279991, + 0.04190802946686745, + -0.13851486146450043, + 0.02094062604010105, + -0.027830524370074272, + -0.006435264367610216, + -0.0724438950419426, + -0.009480351582169533, + -0.026798035949468613, + 0.03218865767121315, + 0.022441241890192032, + -0.07985028624534607, + 0.03438828885555267, + -0.01359336543828249, + 0.10515066236257553, + 0.031041383743286133, + 0.026616264134645462, + -0.007573033217340708, + 0.11058681458234787, + -0.02261708490550518, + 0.06611644476652145, + -0.043882254511117935, + 0.011187471449375153, + 0.036248646676540375, + 0.03785628080368042, + 0.022157661616802216, + 0.0009603071957826614, + -0.01698441430926323, + -0.03445613384246826, + -0.06571229547262192, + 0.05292169377207756, + 0.032180946320295334, + -0.08303361386060715, + 0.06625985354185104, + 0.0423525795340538, + -0.02049417234957218, + 0.057830631732940674, + -0.08146177232265472, + 0.04321039468050003, + -0.036416105926036835, + 0.032431889325380325, + -0.050454944372177124, + -0.043473999947309494, + -0.072250135242939, + 0.03159257024526596, + 0.008648277260363102, + 0.1043131947517395, + -0.045079056173563004, + -0.04539462924003601, + 0.011727221310138702, + 0.0434042289853096, + -0.03419842571020126, + 0.08423978090286255, + -0.08325948566198349, + 0.06855086982250214, + 0.09093333035707474, + -0.054009318351745605, + 0.037545446306467056, + 0.023550966754555702, + 0.020570553839206696, + -0.012644055299460888, + 0.0256410650908947, + 0.01959567703306675, + 0.013553122989833355, + -0.024772057309746742, + 0.006650188006460667, + -0.06779905408620834, + 0.026647770777344704, + -0.01886998862028122, + 0.03351116552948952, + -0.03136441856622696, + -0.02492716535925865, + -0.06602808833122253, + -0.01412933599203825, + 0.02133556269109249, + -0.020049626007676125, + 0.029860101640224457, + 0.0293009951710701, + -0.025777362287044525, + 0.006038852967321873, + -0.0819067656993866, + -0.053187184035778046, + -0.03116738051176071, + -0.07181116193532944, + 0.03697420656681061, + -0.05762192979454994, + 0.12318402528762817, + 0.035736873745918274, + 0.056522298604249954, + -0.005401620641350746, + 0.0021588823292404413, + 0.004309401381760836, + -0.03934302181005478, + -0.11496223509311676, + 0.11599216610193253, + 0.011384239420294762, + -0.008707917295396328, + 0.01842515543103218, + -0.04932134971022606, + 0.041137829422950745, + -0.01238279789686203, + -0.05197302624583244, + -0.042681366205215454, + 0.016363341361284256, + -0.056330595165491104, + 0.034786440432071686, + -0.08877731114625931, + -0.1142425611615181, + 0.012053667567670345, + 0.05582044646143913, + 0.0036479171831160784, + -0.06489382684230804, + 0.01630840264260769, + -0.026223214343190193, + 0.050447579473257065, + -0.05325986444950104, + 0.012623311951756477, + 0.09507989138364792, + -1.7828524454249933e-33, + 0.05659381300210953, + 0.05101243406534195, + 0.023814793676137924, + 0.05806396156549454, + 0.01810765080153942, + -0.01986379362642765, + -0.09119763225317001, + 0.021257581189274788, + -0.018505385145545006, + 0.08105111122131348, + 0.07108976691961288, + 0.08516260236501694, + -0.04370330274105072, + 0.07165993005037308, + 0.026887884363532066, + 0.017563022673130035, + 0.09093628078699112, + 0.02102476730942726, + -0.06806289404630661, + 0.03154826536774635, + -0.06410232186317444, + 0.090959332883358, + 0.017415866255760193, + -0.035814087837934494, + 0.029110435396432877, + 0.030802516266703606, + 0.004419559612870216, + 0.054517969489097595, + -0.08011101931333542, + 0.025340791791677475, + 0.055944349616765976, + -0.08678004145622253, + -0.039239443838596344, + -0.02667170763015747, + -0.005418301094323397, + -0.03393078222870827, + -0.05191872641444206, + 0.05613425746560097, + -0.020509453490376472, + 0.02470351755619049, + -0.03885490819811821, + -0.03978276625275612, + 0.03433876112103462, + 0.03088356740772724, + 0.057774145156145096, + 0.12795937061309814, + -0.06792445480823517, + -0.04698045551776886, + 0.0497155524790287, + 0.03167816624045372, + -0.0414794459939003, + -0.024868633598089218, + 0.015332234092056751, + -0.02267809398472309, + 0.03133019432425499, + 0.012779584154486656, + 0.025467844679951668, + 0.05418652296066284, + -0.04632314667105675, + -0.01711767353117466, + -0.05912763997912407, + 0.01935894601047039, + 0.0454007163643837, + -0.10023541003465652, + -0.011872360482811928, + 0.018606314435601234, + -0.05476824939250946, + 0.044608086347579956, + 0.05469094216823578, + 0.004263308830559254, + -0.06335698068141937, + 0.07129237055778503, + 0.04721309617161751, + 0.02322031743824482, + 0.012592063285410404, + 0.0446622297167778, + 0.0558503121137619, + 0.014175736345350742, + 0.04048122838139534, + -0.0011812745360657573, + -0.11625026166439056, + 0.0090062590315938, + 0.056734275072813034, + -0.01184038259088993, + -0.024952495470643044, + -0.05857519805431366, + -0.03826337680220604, + -0.0017599535640329123, + 0.07037302106618881, + 0.07317870855331421, + -0.06294603645801544, + -0.023562349379062653, + 0.0005459553212858737, + 0.013603691011667252, + -0.10112877190113068, + -9.343525213396419e-34, + 0.015522557310760021, + 0.0035184230655431747, + -0.10750120878219604, + 0.06555154919624329, + -0.07299914956092834, + 0.01821344904601574, + 0.020144077017903328, + 0.0347539559006691, + -0.034921761602163315, + 0.02981049381196499, + 0.08514878898859024, + -0.08191981911659241, + -0.04965459555387497, + -0.14783328771591187, + 0.016480932012200356, + 0.07472410798072815, + -0.0391262024641037, + 0.08298110961914062, + -0.09252703934907913, + 0.0750703439116478, + -0.09694065898656845, + -0.03704603761434555, + -0.045517805963754654, + 0.06063210591673851, + -0.03427473083138466, + 0.02277248166501522, + 0.07891019433736801, + -0.044991862028837204, + -0.02746434137225151, + -0.012931069359183311, + -0.04994840919971466, + -0.07389185577630997, + 0.009364231489598751, + 0.04367724433541298, + -0.08132151514291763, + 0.06838744133710861, + 0.10572226345539093, + -0.08378183096647263, + 0.008495034649968147, + -0.02430005930364132, + 0.04867949336767197, + 0.050552308559417725, + 0.06735450774431229, + -0.0010378233855590224, + -0.01413708459585905, + 0.03581496700644493, + -0.036278028041124344, + -0.01585613563656807, + 0.012596274726092815, + 0.0652509555220604, + 0.06963002681732178, + -0.11172875761985779, + -0.027160393074154854, + 0.014812142588198185, + -0.055310074239969254, + -0.04196589067578316, + -0.06519312411546707, + 0.026781849563121796, + 0.0016291332431137562, + -0.007645887788385153, + 0.026371676474809647, + -0.05930173024535179, + -0.0006723199039697647, + 0.1005522757768631, + -0.061295513063669205, + -0.06765315681695938, + -0.016238272190093994, + 0.024022849276661873, + 0.038446445018053055, + 0.020304035395383835, + 0.09720034897327423, + 0.019084347411990166, + -0.03497263416647911, + -0.021948598325252533, + 0.020358214154839516, + -0.03490737825632095, + 0.061875563114881516, + 0.014065087772905827, + -0.022016221657395363, + 0.05805999040603638, + -0.007575823459774256, + 0.01034779753535986, + -0.04910429194569588, + 0.09056227654218674, + 0.022740095853805542, + -0.015544276684522629, + 0.04782324284315109, + -0.026881275698542595, + -0.004868051502853632, + -0.014464608393609524, + -0.05625532567501068, + 0.09840305894613266, + -0.06926191598176956, + 0.02287297137081623, + 0.008831535466015339, + -2.7211269681970407e-08, + 0.02180357649922371, + -0.007725472096353769, + -0.00815266277641058, + -0.031539253890514374, + -0.0016837486764416099, + -0.02368529513478279, + -0.03397148847579956, + -0.1012689471244812, + -0.02784012258052826, + 0.06189560517668724, + 0.03082149103283882, + 0.06972777098417282, + -0.03131399676203728, + -0.010629239492118359, + -0.004147660918533802, + -0.08089839667081833, + -0.06639997661113739, + -0.005617204122245312, + -0.009937367402017117, + -0.039478693157434464, + 0.011156097054481506, + 0.06009926646947861, + 0.045932017266750336, + -0.03817807137966156, + 0.05904591083526611, + 0.06415504962205887, + -0.08157695829868317, + 0.09215305745601654, + 0.05323101207613945, + 0.0012617438333109021, + -0.04911593720316887, + -0.009097974747419357, + -0.03312835842370987, + -0.008509666658937931, + -0.04041510075330734, + 0.020413588732481003, + -0.03044302575290203, + 0.06493377685546875, + 0.020198168233036995, + 0.0393514521420002, + -0.004168825689703226, + -0.06201145425438881, + -0.07473845779895782, + 0.028178954496979713, + -0.02017543464899063, + -0.09994645416736603, + 0.034958209842443466, + 0.023004526272416115, + -0.03873676806688309, + -0.02568555437028408, + -0.04209888353943825, + 0.01938759908080101, + 0.044776786118745804, + 0.033076588064432144, + -0.06404891610145569, + -0.07351388782262802, + -0.016590839251875877, + 0.018481994047760963, + -0.03330354765057564, + 0.022410690784454346, + 0.08095034211874008, + 0.00038377000601030886, + -0.11349271237850189, + -0.016560588032007217 + ], + "thermometer-simple-bold||meteorology,temperature,degrees,\u00b0,celcius,centigrade,kelvin,fahrenheit,hot,warm,cold": [ + -0.01908452995121479, + 0.01936275139451027, + -0.03802262991666794, + 0.04520349204540253, + 0.030790140852332115, + -0.011076303198933601, + 0.02135215327143669, + 0.04481479898095131, + 0.05089482665061951, + -0.040310636162757874, + 0.031887467950582504, + -0.14644941687583923, + 0.01580989360809326, + -0.024989504367113113, + -0.003582537639886141, + -0.08726154267787933, + -0.025819357484579086, + -0.039717912673950195, + 0.03512829169631004, + 0.021699462085962296, + -0.07505819201469421, + 0.03594854474067688, + -0.01941637508571148, + 0.107218898832798, + 0.022404929623007774, + 0.04237266629934311, + -0.003857789095491171, + 0.1132153868675232, + 0.006735052447766066, + 0.06159801781177521, + -0.05987678840756416, + 0.02620752342045307, + 0.0575801283121109, + 0.03604203090071678, + 0.012477850541472435, + -0.006925036199390888, + 0.003471428295597434, + -0.02363579533994198, + -0.06844662874937057, + 0.053534720093011856, + 0.02443927340209484, + -0.07125408947467804, + 0.06389392167329788, + 0.04820357263088226, + -0.028917156159877777, + 0.06450915336608887, + -0.08204053342342377, + 0.050555385649204254, + -0.03809593245387077, + 0.020913103595376015, + -0.049670737236738205, + -0.033337417989969254, + -0.0965982973575592, + 0.018793374300003052, + 0.01711098849773407, + 0.10733635723590851, + -0.05077315866947174, + -0.035698968917131424, + 0.0043902830220758915, + 0.026689529418945312, + -0.024214306846261024, + 0.06326518207788467, + -0.08077753335237503, + 0.06854502856731415, + 0.0974743664264679, + -0.0565645731985569, + 0.020610636100172997, + 0.030736641958355904, + 0.01939902827143669, + -0.005334591027349234, + 0.0048284209333360195, + -0.0011136336252093315, + 0.0013705423334613442, + 0.008567262440919876, + 0.01042189635336399, + -0.07432346045970917, + 0.014539322815835476, + -0.01635894738137722, + 0.01893443614244461, + -0.001938887988217175, + -0.05345536768436432, + -0.07933936268091202, + -0.01767960749566555, + 0.03484765812754631, + -0.00917311105877161, + 0.026185913011431694, + 0.03180776163935661, + -0.016429537907242775, + 0.024808205664157867, + -0.08460166305303574, + -0.04861735925078392, + -0.033113379031419754, + -0.06892891228199005, + 0.03975849598646164, + -0.060154806822538376, + 0.12815377116203308, + 0.05203632265329361, + 0.04419099912047386, + -0.02468426525592804, + 0.012719514779746532, + 0.0065653156489133835, + -0.034102242439985275, + -0.07786233723163605, + 0.09220962226390839, + 0.005762917455285788, + -0.0207194946706295, + 0.01273335237056017, + -0.07627622783184052, + 0.030302410945296288, + -0.023628702387213707, + -0.05830556899309158, + -0.053493961691856384, + -0.0018567480146884918, + -0.056979965418577194, + 0.046608246862888336, + -0.08921678364276886, + -0.1252736896276474, + -0.0014202659949660301, + 0.045458968728780746, + 0.024553555995225906, + -0.06924162060022354, + 0.020007899031043053, + -0.030332425609230995, + 0.05756007507443428, + -0.04847075417637825, + 0.0280358474701643, + 0.10905253142118454, + -2.482306848994779e-33, + 0.06439157575368881, + 0.035291194915771484, + 0.03400425612926483, + 0.060881663113832474, + 0.0010949968127533793, + -0.0043347300961613655, + -0.09767389297485352, + 0.021081121638417244, + 0.0038892512675374746, + 0.08858447521924973, + 0.0889633446931839, + 0.08289363980293274, + -0.04447231814265251, + 0.06537321954965591, + 0.03079765848815441, + 0.01964336261153221, + 0.1022181436419487, + 0.010364963673055172, + -0.04607066139578819, + 0.00984189659357071, + -0.052403464913368225, + 0.11523427069187164, + 0.015617556869983673, + -0.037802599370479584, + 0.04287678003311157, + 0.036920949816703796, + 0.016204403713345528, + 0.05320998281240463, + -0.07925871014595032, + 0.011552111245691776, + 0.07429871708154678, + -0.07782485336065292, + -0.048930536955595016, + -0.018674712628126144, + -0.0005768558476120234, + -0.03637710213661194, + -0.02912924811244011, + 0.053543560206890106, + -0.02416756935417652, + 0.00877096876502037, + -0.050209272652864456, + -0.020649153739213943, + 0.04559401422739029, + 0.014427593909204006, + 0.06008676439523697, + 0.11672191321849823, + -0.06434612721204758, + -0.04552830010652542, + 0.056734949350357056, + 0.023076895624399185, + -0.04907800629734993, + -0.015863623470067978, + 0.010285220108926296, + -0.019504982978105545, + 0.04313163086771965, + 0.036598969250917435, + 0.01920323818922043, + 0.05099092796444893, + -0.06702285259962082, + -0.021318549290299416, + -0.06789976358413696, + 0.03418538719415665, + 0.04641245678067207, + -0.09804108738899231, + -0.00956816878169775, + 0.025296416133642197, + -0.06336788088083267, + 0.039575960487127304, + 0.05154528096318245, + -0.001194520853459835, + -0.06748143583536148, + 0.05730925127863884, + 0.04780886322259903, + 0.0030761719681322575, + 0.024948323145508766, + 0.056297991424798965, + 0.06163985654711723, + -0.015599213540554047, + 0.013366814702749252, + -0.004260551184415817, + -0.12177281081676483, + 0.016638053581118584, + 0.057865723967552185, + 0.0039145853370428085, + -0.04080875217914581, + -0.04848605766892433, + -0.037031352519989014, + 0.008875236846506596, + 0.05166403204202652, + 0.07081884890794754, + -0.07077503204345703, + -0.016895752400159836, + 0.002811489161103964, + 0.013834070414304733, + -0.0951676145195961, + -5.67257585671779e-35, + 0.008761845529079437, + -0.010944679379463196, + -0.11341603100299835, + 0.062376510351896286, + -0.06329085677862167, + 0.03501122072339058, + 0.029719209298491478, + 0.023493820801377296, + -0.013719666749238968, + 0.029458314180374146, + 0.07037457078695297, + -0.05649488419294357, + -0.036852914839982986, + -0.1340920627117157, + 0.013622766360640526, + 0.09403081983327866, + -0.04432263970375061, + 0.09740664809942245, + -0.09102076292037964, + 0.072359099984169, + -0.09083450585603714, + -0.011644518002867699, + -0.06187514588236809, + 0.03939223289489746, + -0.02838471718132496, + 0.03388393297791481, + 0.06774266064167023, + -0.041093867272138596, + -0.0368778370320797, + -0.020879296585917473, + -0.05292677879333496, + -0.08824896067380905, + 0.013555320911109447, + 0.03347836434841156, + -0.08328908681869507, + 0.05743491277098656, + 0.08523926883935928, + -0.09642262011766434, + -0.019352465867996216, + -0.028647102415561676, + 0.032584816217422485, + 0.05361155420541763, + 0.06633494794368744, + -0.020007187500596046, + -0.000243431975832209, + 0.025991691276431084, + -0.021311629563570023, + -0.027721082791686058, + 0.005375340580940247, + 0.0634080246090889, + 0.055624667555093765, + -0.10832345485687256, + -0.030337722972035408, + 0.009436484426259995, + -0.0445387028157711, + -0.038558799773454666, + -0.07674812525510788, + 0.035893894731998444, + 0.022032136097550392, + 0.00047988203004933894, + 0.03462080657482147, + -0.07028244435787201, + -0.014812572859227657, + 0.09000575542449951, + -0.06080032140016556, + -0.0663909837603569, + -0.020470380783081055, + 0.022304175421595573, + 0.020598430186510086, + 0.021358933299779892, + 0.1049022451043129, + 0.03784503415226936, + -0.019654784351587296, + -0.0373075008392334, + 0.024116041138768196, + -0.03439480811357498, + 0.06439673155546188, + 0.008991632610559464, + -0.03909052163362503, + 0.04614952579140663, + 0.010689769871532917, + 0.006937669590115547, + -0.047757022082805634, + 0.07278978824615479, + 0.031515952199697495, + -0.03103466145694256, + 0.051890768110752106, + -0.028205856680870056, + -0.001779816928319633, + 0.0016920707421377301, + -0.06480932980775833, + 0.09965918213129044, + -0.05483627691864967, + 0.03999686986207962, + -0.002792268991470337, + -2.8751570013696437e-08, + 0.017779609188437462, + -0.025841739028692245, + -0.0011900599347427487, + -0.028280818834900856, + 0.0013114814646542072, + -0.01872868649661541, + -0.030089497566223145, + -0.09996290504932404, + -0.03238692507147789, + 0.0748906284570694, + 0.02734983339905739, + 0.05617116764187813, + -0.049415383487939835, + 0.009433787316083908, + -0.017218274995684624, + -0.0469692200422287, + -0.06793707609176636, + 0.002279893262311816, + -0.007137530483305454, + -0.047577325254678726, + 0.010507810860872269, + 0.04371337592601776, + 0.027822401374578476, + -0.03558342158794403, + 0.06294498592615128, + 0.06906697154045105, + -0.0793442651629448, + 0.09327668696641922, + 0.06001066416501999, + 0.007277214899659157, + -0.04698605462908745, + -0.01078294962644577, + 0.003217831952497363, + -0.0001523522223578766, + -0.050128448754549026, + 0.03241192549467087, + -0.026357706636190414, + 0.07331452518701553, + 0.01296810433268547, + 0.03662603721022606, + 0.011848114430904388, + -0.0479511059820652, + -0.088636614382267, + 0.036214981228113174, + -0.01431381143629551, + -0.0819651409983635, + 0.04844788461923599, + 0.017735829576849937, + -0.03673703968524933, + -0.029280809685587883, + -0.03962303325533867, + 0.021247850731015205, + 0.050918933004140854, + 0.023887164890766144, + -0.05414719134569168, + -0.0613253191113472, + -0.003746694652363658, + 0.02258540503680706, + -0.05875791236758232, + 0.02321302331984043, + 0.0676284208893776, + 0.02595565840601921, + -0.1112624928355217, + -0.0248438511043787 + ], + "threads-logo-bold||*new*,meta,instagram,social media": [ + -0.014223738573491573, + -0.025791188701987267, + -0.005255889147520065, + -0.007253340445458889, + 0.13149426877498627, + -0.05012555047869682, + 0.07947520911693573, + -0.07353320717811584, + 0.07538572698831558, + 0.011448572389781475, + 0.02749267965555191, + 0.037926044315099716, + -0.005563956685364246, + -0.0462828166782856, + 0.028170989826321602, + -0.01886584423482418, + 0.004648423288017511, + -0.04868699982762337, + -0.017110902816057205, + -0.04927729815244675, + -0.0031467562075704336, + -0.009781031869351864, + -0.005473203491419554, + 0.04892740398645401, + 0.016951585188508034, + 0.01656314544379711, + -0.0373205691576004, + 0.006022161804139614, + 0.0033899194095283747, + -0.06954962015151978, + -0.020160486921668053, + -0.023807724937796593, + 0.02958633564412594, + 0.004510360304266214, + 0.0008322868961840868, + 2.3837597495912632e-07, + 0.02705327421426773, + 0.0016071612481027842, + 0.00789068266749382, + 0.009844561107456684, + 0.030988013371825218, + -0.08458391577005386, + -0.0007741342997178435, + 0.0166707132011652, + -0.06022370606660843, + 0.04955698177218437, + -0.04561072215437889, + 0.0126420296728611, + 0.013058078475296497, + 0.011697376146912575, + -0.0625448226928711, + -0.07991834729909897, + -0.094831183552742, + -0.029052603989839554, + 0.04489850252866745, + 0.012151474133133888, + -0.007909882813692093, + -0.04335777461528778, + 0.05016377940773964, + 0.022091515362262726, + 0.10369957238435745, + -0.018605226650834084, + 0.023200029507279396, + 0.11988411843776703, + 0.1220790222287178, + -0.04307986795902252, + 0.014141230843961239, + 0.06760586053133011, + -0.010931131429970264, + -0.0027620606124401093, + 0.0520835779607296, + 0.05870530381798744, + -0.06933607906103134, + 0.050801027566194534, + -0.016043344512581825, + 0.039740465581417084, + 0.004153154790401459, + -0.01986604370176792, + -0.05051477998495102, + -0.013166403397917747, + 0.001930664642713964, + 0.006311432458460331, + 0.04076218977570534, + 0.011466984637081623, + 0.07065796852111816, + 0.027037780731916428, + -0.05746946856379509, + -0.06066378951072693, + -0.048180051147937775, + 0.025471093133091927, + -0.09150651097297668, + 0.06280582398176193, + 0.024404985830187798, + 0.032625049352645874, + -0.09901648014783859, + 0.06984254717826843, + -0.04864482954144478, + -0.03601241484284401, + -0.11075679957866669, + 0.14646592736244202, + -0.01574268937110901, + 0.03515585884451866, + 0.04850342497229576, + -0.0027845846489071846, + 0.01922229863703251, + 0.05948323756456375, + -0.041790422052145004, + 0.023884400725364685, + -0.03304613009095192, + 0.0965953841805458, + 0.023529522120952606, + -0.007872005924582481, + -0.04162025824189186, + -0.039971623569726944, + 0.0031075873412191868, + -0.05304799973964691, + 0.014785446226596832, + -0.014688202179968357, + 0.13362744450569153, + 0.07393345236778259, + 0.0376768596470356, + -0.02291952818632126, + -0.11195174604654312, + -0.07826215028762817, + -0.011717862449586391, + 0.011766125448048115, + -0.06433893740177155, + -2.5240435106046937e-33, + 0.07040464133024216, + 0.10136247426271439, + 0.011130286380648613, + 0.0703340470790863, + -0.008230968378484249, + 0.05186440050601959, + -0.05537039786577225, + -0.08201855421066284, + -0.10724884271621704, + -0.03669216111302376, + 0.08828229457139969, + 0.023624802008271217, + -0.04304589331150055, + 0.04656749591231346, + 0.03578740358352661, + -0.062314704060554504, + 0.00658990116789937, + -0.003958187066018581, + -0.03657621145248413, + -0.030308037996292114, + 0.002332317177206278, + 0.0140064163133502, + -0.035942163318395615, + 0.002071949653327465, + -0.03610147163271904, + -0.04117907956242561, + 0.06254874914884567, + -0.05859207734465599, + -0.08574052900075912, + 0.040874361991882324, + -0.00027441277052275836, + 0.016480663791298866, + 0.06102021038532257, + 0.04271857067942619, + -0.021971864625811577, + -0.08321139216423035, + -0.007692375686019659, + -0.06358840316534042, + 0.01690472662448883, + 0.01748812012374401, + -0.04436144232749939, + -0.02709193527698517, + -0.07717234641313553, + 0.020367072895169258, + -0.021518442779779434, + 0.1358564794063568, + -0.043430887162685394, + -0.0563405379652977, + 0.06722013652324677, + 0.011815331876277924, + 0.03801198676228523, + -0.05920125171542168, + -0.01659664884209633, + -0.07327557355165482, + -0.01913282833993435, + -0.02111033722758293, + -0.05336104705929756, + 0.02932426892220974, + -0.0016525241080671549, + -0.004788562655448914, + 0.04133843258023262, + 0.018840521574020386, + 0.005951779894530773, + 0.0276095662266016, + -0.011278614401817322, + 0.08178050816059113, + -0.01578121818602085, + 0.0513283796608448, + 0.01495457161217928, + -0.0396278016269207, + -0.04727797210216522, + 0.01584726944565773, + 0.014682482928037643, + 0.06890557706356049, + -0.08437001705169678, + 0.011224913410842419, + -0.018099920824170113, + -0.05404353886842728, + -0.01711135543882847, + 0.04816124960780144, + -0.03943723067641258, + 0.01830100826919079, + -0.08055050671100616, + 0.029621761292219162, + 0.0193726047873497, + 0.0032960923854261637, + 0.00916511844843626, + -0.047541070729494095, + 0.002454818692058325, + 0.006908177863806486, + -0.04163476079702377, + 0.03213546425104141, + 0.03538007289171219, + 0.011876757256686687, + -0.17525142431259155, + -4.048901210976096e-34, + -0.022350892424583435, + 0.002879760228097439, + -0.008619248867034912, + -0.009755255654454231, + 0.02094590663909912, + 0.03751228749752045, + 0.003870168933644891, + 0.07665398716926575, + -0.014143615029752254, + 0.047452349215745926, + 0.06436578929424286, + -0.008870037272572517, + -0.1321285218000412, + -0.0067522660829126835, + 0.044591400772333145, + 0.01654120348393917, + 0.09569939970970154, + -0.012278683483600616, + -0.11039289832115173, + 0.07341448217630386, + -0.010994922369718552, + -0.021340133622288704, + -0.055195074528455734, + 0.06264069676399231, + 0.0027274524327367544, + -0.02348729595541954, + 0.10208184272050858, + 0.0043519181199371815, + -0.023461293429136276, + -0.024154318496584892, + -0.039682552218437195, + -0.0004918122431263328, + 0.014604191295802593, + 0.06845072656869888, + -0.012124949134886265, + 0.05831083282828331, + -0.048591867089271545, + -0.09797064960002899, + 0.02727925218641758, + 0.028494179248809814, + 0.010479903779923916, + -0.003934590145945549, + 0.022032305598258972, + 0.018586264923214912, + -0.09490260481834412, + -0.019194316118955612, + -0.10680731385946274, + -0.10857225954532623, + -0.06387331336736679, + 0.07728390395641327, + -0.007164221256971359, + -0.060884926468133926, + 0.039290815591812134, + 0.020435292273759842, + -0.08428896963596344, + -0.053190357983112335, + -0.005333584733307362, + 0.0462523028254509, + -0.01460354309529066, + 0.043617770075798035, + 0.009464681148529053, + 0.0152784064412117, + -0.10501637309789658, + -0.015284857712686062, + 0.03846298158168793, + -0.05878669023513794, + 0.03368339687585831, + -0.07354971021413803, + -0.07977152615785599, + 0.042077191174030304, + 0.07791715860366821, + 0.02195064350962639, + -0.024151088669896126, + -0.02926381677389145, + 0.007521452847868204, + -0.04399809241294861, + 0.05985480546951294, + 0.0054387799464166164, + -0.09178511053323746, + 0.05404159426689148, + -0.06445729732513428, + 0.05479523539543152, + -0.05075434222817421, + 0.02838987484574318, + 0.05895895138382912, + 0.025684719905257225, + -0.045861437916755676, + 0.08902092278003693, + 0.021694844588637352, + -0.0007578433724120259, + -0.010674512945115566, + 0.024980822578072548, + 0.037187881767749786, + 0.011760760098695755, + -0.03106965497136116, + -2.1671741734508032e-08, + -0.010598165914416313, + -0.044426459819078445, + 0.01743544638156891, + 0.0509071983397007, + 0.04257437214255333, + 0.0371728353202343, + -0.06990545988082886, + -0.1410026252269745, + 0.02153928019106388, + 0.003351563587784767, + -0.019619617611169815, + 0.04686322808265686, + -0.021057894453406334, + 0.042797766625881195, + 0.017033059149980545, + -0.054513104259967804, + -0.08414747565984726, + 0.06629937887191772, + -0.0031287081073969603, + -0.09180925786495209, + -0.05216626077890396, + 0.05014044791460037, + 0.01120650302618742, + -0.015845373272895813, + 0.037173233926296234, + 0.021277273073792458, + -0.04543375223875046, + -0.018309731036424637, + 0.03461084142327309, + 0.05735879763960838, + 0.018132951110601425, + 0.028777675703167915, + -0.016833486035466194, + -0.040455032140016556, + -0.12420933693647385, + 0.007323386613279581, + -0.04375019669532776, + -0.005115108098834753, + -0.04302274435758591, + -0.05601930245757103, + 0.03780150040984154, + 0.0026475312188267708, + 0.0656409040093422, + -0.0059386384673416615, + -0.02581709809601307, + 0.048397745937108994, + 0.025617917999625206, + 0.016255049034953117, + -0.04570275545120239, + -0.09943195432424545, + -0.05889870598912239, + -0.02800186350941658, + 0.013089320622384548, + 0.07164669781923294, + -0.01850590668618679, + -0.015500174835324287, + 0.04514918848872185, + 0.12141848355531693, + 0.02584073878824711, + 0.017510656267404556, + 0.15600675344467163, + 0.01199966762214899, + -0.031079720705747604, + -0.023995820432901382 + ], + "three-d-bold||*new*,3d,cad,model": [ + -0.04769710451364517, + -0.06673266738653183, + -0.031195512041449547, + -0.013949216343462467, + 0.010446655564010143, + -0.05855337902903557, + -0.04822501540184021, + -0.039022356271743774, + 0.0073082298040390015, + 0.014939785934984684, + -0.012615000829100609, + -0.01484200730919838, + 0.002770755672827363, + 0.006550317630171776, + 0.01677004061639309, + -0.0012492247624322772, + 0.0002801676164381206, + 0.04110008105635643, + -0.034671928733587265, + 0.10823741555213928, + 0.005349888000637293, + 0.024355875328183174, + 0.01409231312572956, + 0.023211300373077393, + 0.04328398406505585, + -0.010687470436096191, + 0.19358770549297333, + -0.011970838531851768, + -0.01118483580648899, + -0.04325348138809204, + 0.0017622096929699183, + -0.005704640876501799, + 0.03295663371682167, + 0.02088513784110546, + 0.09733355045318604, + -0.04799876734614372, + -0.0010183695703744888, + 0.026393281295895576, + -0.06184253469109535, + 0.037798989564180374, + 0.005968429613858461, + 0.013079904019832611, + 0.01061402726918459, + 0.0058705927804112434, + 0.007942168973386288, + 0.010096595622599125, + -0.1155494973063469, + -0.04037903621792793, + 0.0750843733549118, + -0.05387363210320473, + 0.009326789528131485, + -0.1314266473054886, + -0.12162822484970093, + -0.003449993906542659, + -0.008824888616800308, + 0.0386943519115448, + -0.026523133739829063, + -0.058777276426553726, + 0.036758601665496826, + -0.07209399342536926, + 0.06070084124803543, + 0.04928573966026306, + 0.06793824583292007, + -0.0011878928635269403, + 0.08580286800861359, + -0.0034375046379864216, + -0.10508082807064056, + -0.013973680324852467, + -0.06223862245678902, + 0.05088130012154579, + -0.008212588727474213, + -0.00737927109003067, + -0.03936835750937462, + -0.09537198394536972, + 0.056354451924562454, + -0.047319039702415466, + 0.1039900928735733, + -0.01330871507525444, + 0.004879103973507881, + -0.08568089455366135, + -0.02529754489660263, + 0.020107608288526535, + -0.04679642617702484, + 0.04376238211989403, + -0.027327794581651688, + 0.060467369854450226, + -0.1338784247636795, + -0.04074905440211296, + -0.04029557853937149, + -0.03048761561512947, + -0.018418146297335625, + -0.0010567099088802934, + -0.1412893384695053, + 0.03278955817222595, + -0.13018585741519928, + -0.0020656033884733915, + 0.0802903100848198, + -0.013103451579809189, + 0.01891321875154972, + 0.07725536823272705, + 0.03706948831677437, + 0.015193191356956959, + 0.040705204010009766, + 0.022308897227048874, + -0.05033379793167114, + 0.01610616035759449, + 0.01677694171667099, + 0.0062726521864533424, + -0.02427155338227749, + 0.010308030992746353, + 0.043038781732320786, + -0.06077646464109421, + -0.0336654968559742, + -0.04757910221815109, + -0.05315917730331421, + -0.019368167966604233, + -0.0614750012755394, + -0.003493777010589838, + 0.11357025802135468, + 0.027504077181220055, + 0.004263360984623432, + 0.002228803699836135, + 0.040782149881124496, + -0.05614243447780609, + -0.04267822951078415, + 0.008844672702252865, + 0.012110407464206219, + -2.423610742638376e-33, + 0.005730297416448593, + 0.09019105136394501, + -0.021257471293210983, + 0.15513400733470917, + 0.020137734711170197, + 0.020843999460339546, + -0.02340673841536045, + -0.03737807273864746, + -0.03418593853712082, + 0.03655683249235153, + -0.03393479436635971, + -0.0008906309958547354, + -0.04165200516581535, + 0.07833357900381088, + -0.007428213022649288, + -0.029133422300219536, + 0.014253329485654831, + -0.013666312210261822, + -0.09526031464338303, + 0.037353549152612686, + 0.03525563329458237, + 0.024236349388957024, + -0.018942682072520256, + 0.0009164885268546641, + 0.009485151618719101, + 0.007303850259631872, + -0.009748795069754124, + 0.009589653462171555, + -0.06101996451616287, + 0.029320422559976578, + 0.016526522114872932, + 0.05549407750368118, + 0.027647973969578743, + 0.018317146226763725, + -0.02694200538098812, + 0.04580824449658394, + -0.04211699962615967, + -0.03144114464521408, + -0.013885094784200191, + -0.005011755041778088, + -0.049711715430021286, + 0.01417984627187252, + 0.02992945909500122, + -0.0659361183643341, + -0.03508590906858444, + 0.17353343963623047, + 0.03642961382865906, + -0.035274915397167206, + 0.025522485375404358, + 0.02468199096620083, + 0.03369755670428276, + 0.035492539405822754, + 0.010918967425823212, + 0.004294168669730425, + -0.045065443962812424, + -0.05815064162015915, + -0.036033447831869125, + -0.0278264582157135, + 0.10564497113227844, + -0.012967538088560104, + -0.004121239762753248, + 0.03773118928074837, + 0.008352468721568584, + 0.05947719141840935, + -0.043073441833257675, + 0.08630681037902832, + -0.0036957659758627415, + 0.045997969806194305, + 0.10495714843273163, + 0.03097590059041977, + -0.07546589523553848, + 0.006603365298360586, + 0.003323392244055867, + 0.0170894768089056, + 0.0276197362691164, + -0.009115965105593204, + -0.015056285075843334, + -0.015963084995746613, + 0.06837695091962814, + -0.10865063220262527, + -0.11436630040407181, + 0.016479840502142906, + -0.05971527844667435, + 0.006212200038135052, + 0.0056885951198637486, + 0.0006767438026145101, + -0.014562059193849564, + -0.05722750350832939, + 0.007234189193695784, + 0.01995708979666233, + -0.13372282683849335, + -0.00661629531532526, + -0.04361473768949509, + -0.02161196991801262, + -0.019737744703888893, + -7.828962272144327e-34, + 0.01757628284394741, + 0.0004558377549983561, + -0.015052102506160736, + -0.0731511041522026, + -0.03286437317728996, + -0.0213385708630085, + -0.04686272516846657, + 0.06612786650657654, + -0.009548432193696499, + -0.010525275021791458, + 0.0987778753042221, + 0.02987241931259632, + -0.041776277124881744, + -0.005761968903243542, + 0.040830098092556, + 0.03741424158215523, + -0.050044670701026917, + -0.0802416130900383, + -0.04069623723626137, + 0.033116281032562256, + 0.05591965466737747, + -0.06325417757034302, + -0.15009748935699463, + 0.031933579593896866, + -0.04240530729293823, + 0.04221952706575394, + -0.01647293195128441, + -0.03261977806687355, + -0.01662861928343773, + 0.04954655095934868, + -0.047459378838539124, + -0.03441350907087326, + 0.05822117626667023, + 0.12674155831336975, + -0.09265034645795822, + 0.03351995721459389, + 0.044438377022743225, + -0.02579774148762226, + 0.014209287241101265, + -0.0438607856631279, + -0.016087548807263374, + 0.05460408702492714, + -0.02463981695473194, + 0.0946783721446991, + -0.06781257688999176, + 0.03699164092540741, + 0.03754987567663193, + -0.031110722571611404, + 0.015393197536468506, + 0.06714212894439697, + -0.011815471574664116, + -0.040460068732500076, + 0.07064545154571533, + 0.006480344105511904, + -0.04287935793399811, + -0.0407697819173336, + 0.0355832614004612, + -0.06038482487201691, + 0.0039826021529734135, + 0.07275817543268204, + -0.015514511615037918, + 0.01516728661954403, + -0.01425713486969471, + 0.011125127784907818, + 0.030028393492102623, + -0.052184171974658966, + 0.019427631050348282, + -0.05244358256459236, + 0.026216942816972733, + 0.008719013072550297, + 0.036406632512807846, + 0.04390087351202965, + -0.024638032540678978, + -0.013213125988841057, + -0.01069957297295332, + -0.13075999915599823, + 0.008767019025981426, + 0.0543295256793499, + 0.04567554593086243, + 0.0741349533200264, + 0.0041808984242379665, + -0.04746261611580849, + 0.04798766225576401, + 0.15413568913936615, + -0.018341559916734695, + 0.006819053087383509, + 0.005849943496286869, + 0.009816035628318787, + -0.04071441665291786, + -0.025667190551757812, + -0.06634332239627838, + 0.09607091546058655, + 0.03127369284629822, + 0.020112287253141403, + -0.04446782171726227, + -2.127533882401167e-08, + -0.032621074467897415, + -0.017208706587553024, + -0.03304922580718994, + -0.06659895926713943, + -0.034852027893066406, + -0.05856509134173393, + -0.06267695873975754, + -0.005669326521456242, + -0.04090617597103119, + -0.0326123870909214, + 0.03886621817946434, + -0.041128870099782944, + -0.06868136674165726, + 0.0031930990517139435, + 0.038180332630872726, + 0.031030990183353424, + -0.013830848038196564, + 0.05435475334525108, + -0.040012989193201065, + -0.06223558634519577, + -0.06720907241106033, + 0.09706490486860275, + 0.10836818069219589, + -0.010117311030626297, + 0.03734175115823746, + 0.04476940631866455, + -0.061949472874403, + -0.021643679589033127, + 0.036762870848178864, + 0.06477032601833344, + 0.03856421262025833, + 0.0235554538667202, + 0.032938402146101, + 0.07825864106416702, + -0.059837885200977325, + -0.03191491588950157, + -0.061811331659555435, + 0.005967649165540934, + 0.017573906108736992, + 0.056950513273477554, + -0.0291852205991745, + 0.06041869521141052, + -0.022850526496767998, + -0.03380025923252106, + 0.03156028687953949, + 0.0030356920324265957, + 0.014081673696637154, + -0.07457621395587921, + -0.06536684185266495, + -0.01777004636824131, + -0.06435398012399673, + 0.0010505173122510314, + -0.017031794413924217, + 0.06887970119714737, + -0.04283682629466057, + 0.00010779114381875843, + -0.04768424481153488, + 0.09814420342445374, + -0.0328763909637928, + -0.03095577284693718, + 0.10387909412384033, + -0.0566532127559185, + 0.009722824208438396, + 0.025597698986530304 + ], + "thumbs-down-bold||dislike,hate,emoji,no": [ + -0.05516672506928444, + 0.020232360810041428, + 0.012473639100790024, + -0.019760839641094208, + 0.058016713708639145, + -0.030476991087198257, + 0.10724414885044098, + -0.01902860961854458, + 0.07944881916046143, + -0.010063685476779938, + -0.011801048181951046, + 0.01610279455780983, + 0.0688692256808281, + -0.002260498935356736, + -0.08391078561544418, + 0.048978038132190704, + 0.024241836741566658, + 0.044220879673957825, + -0.029946912080049515, + 0.007832140661776066, + -0.050814442336559296, + 0.044899750500917435, + -0.014422977343201637, + -0.01841537468135357, + -0.018117351457476616, + 0.0065667652525007725, + -0.007877751253545284, + 0.03696113079786301, + -0.02787851355969906, + -0.03271625563502312, + -0.04518164321780205, + -0.03079117275774479, + 0.06990908086299896, + 0.008955546654760838, + -0.00848341640084982, + 0.013208425603806973, + 0.030652374029159546, + -0.006499648559838533, + 0.0027585045900195837, + 0.030276313424110413, + -0.022878538817167282, + -0.07253823429346085, + -0.017224960029125214, + -0.014478696510195732, + -0.0008914145291782916, + 0.019079338759183884, + -0.06466145068407059, + -0.018065432086586952, + -0.007630147505551577, + 0.024333331733942032, + 0.0008368217386305332, + -0.07766355574131012, + -0.024909740313887596, + -0.06204792857170105, + 0.050709400326013565, + -0.04219517856836319, + -0.06719723343849182, + -0.011638671159744263, + 0.04321805760264397, + 0.004203451797366142, + 0.056725554168224335, + -0.03150731697678566, + 0.05119403824210167, + 0.013833578675985336, + 0.09492313861846924, + -0.029024358838796616, + 0.03177405893802643, + -0.04035855829715729, + -0.05191339924931526, + 0.08450311422348022, + 0.03205558657646179, + -0.002701871795579791, + 0.03979259729385376, + 0.0445081852376461, + -0.06128938868641853, + 0.031246094033122063, + 0.025582021102309227, + -0.04327555000782013, + 0.008635072968900204, + -0.06574006378650665, + -0.025635385885834694, + 0.0382007360458374, + -0.04125893861055374, + -0.010100767947733402, + -0.0016309638740494847, + -0.0013540287036448717, + 0.013532111421227455, + 0.0004752418026328087, + -0.11706852912902832, + 0.021168282255530357, + -0.11863748729228973, + -0.01371290534734726, + 0.08790073543787003, + -0.026140574365854263, + -0.07270099222660065, + -0.002312742406502366, + -0.025712350383400917, + -0.06530015170574188, + -0.1545816957950592, + 0.10939688235521317, + 0.024700134992599487, + 0.08079732954502106, + -0.04931214079260826, + -0.039360929280519485, + -0.004431221168488264, + -0.012779449112713337, + -0.06328123062849045, + -0.02442864142358303, + -0.03553352132439613, + -0.01738574728369713, + -0.05592145398259163, + -0.04710015654563904, + -0.049218110740184784, + -0.10829723626375198, + -0.013328802771866322, + -0.09218377619981766, + 0.04259306192398071, + 0.010700665414333344, + 0.15477502346038818, + 0.04589671269059181, + 0.015582053922116756, + 0.010133747942745686, + -0.07207822054624557, + 0.016220614314079285, + 0.052634865045547485, + 0.012654691934585571, + -0.03873896598815918, + -2.4238638412657874e-33, + 0.07760254293680191, + 0.034971851855516434, + -0.01785842701792717, + -0.0037938517052680254, + 0.06643085181713104, + -0.009801053442060947, + -0.09116366505622864, + -0.03867066651582718, + -0.13084439933300018, + -0.006292098667472601, + 0.07235471904277802, + 0.08732889592647552, + -0.0429777093231678, + 0.07394697517156601, + 0.0794694647192955, + -0.006305358372628689, + 0.031151723116636276, + -0.05061815679073334, + -0.012666425667703152, + -0.04350840300321579, + -0.0032913002651184797, + 0.08966473489999771, + 0.013295604847371578, + -0.007069886662065983, + -0.060400933027267456, + -0.08461294323205948, + 0.014224517159163952, + 0.012483649887144566, + -0.04253169521689415, + 0.03823821246623993, + -0.03393913060426712, + 0.0045762453228235245, + 0.05035645514726639, + -0.043498359620571136, + 0.022574514150619507, + 0.001573485671542585, + -0.012847458943724632, + 0.022208208218216896, + -0.023814024403691292, + -0.032566461712121964, + -0.014721604995429516, + -0.005179569590836763, + -0.09791836887598038, + 0.0009016944095492363, + -0.01210076455026865, + 0.16880345344543457, + 0.004888277035206556, + -0.10307566076517105, + 0.030753526836633682, + -0.042949989438056946, + 0.015841864049434662, + -0.06070539355278015, + 0.030772078782320023, + 0.07297592610120773, + -0.016568344086408615, + -0.035741668194532394, + -0.05694672837853432, + 0.07057280838489532, + 0.015701960772275925, + -0.04239604249596596, + -0.04011034592986107, + 0.021056631579995155, + 0.05110657215118408, + -0.09955169260501862, + -0.009628690779209137, + 0.021345123648643494, + -0.08028770238161087, + 0.028318334370851517, + 0.044553402811288834, + -0.002280593616887927, + -0.010484104044735432, + 0.07755710929632187, + 0.0002593409735709429, + 0.011059047654271126, + -0.03163350373506546, + -0.0029577482491731644, + 0.038344696164131165, + -0.03390795737504959, + 0.08930527418851852, + -0.0017785611562430859, + 0.017303522676229477, + -0.041358716785907745, + -0.011012879200279713, + -0.04862181097269058, + 0.04719024896621704, + -0.017985742539167404, + 0.030663808807730675, + -0.09912015497684479, + -0.00850768480449915, + 0.003485451452434063, + -0.09303289651870728, + 0.0004745947662740946, + 0.09040453284978867, + -0.014676472172141075, + -0.135478213429451, + -5.948390568075744e-35, + -0.04671388864517212, + -0.01268143393099308, + -0.0229922067373991, + 0.05195019766688347, + -0.11375150084495544, + 0.03776787593960762, + -0.0468745157122612, + 0.07246975600719452, + -0.023584244772791862, + 0.04576960951089859, + 0.022016342729330063, + -0.06066447123885155, + 0.007768079172819853, + -0.06419955939054489, + 0.01198695506900549, + 0.006550389342010021, + 0.041500676423311234, + 0.0286157988011837, + -0.03288852050900459, + 0.03760727867484093, + -0.031992875039577484, + 0.04044274240732193, + -0.03795890137553215, + 0.10238152742385864, + -0.030773568898439407, + 0.04631192982196808, + 0.10083942860364914, + -0.016254473477602005, + -0.02609855867922306, + -0.09415771812200546, + 0.012816494330763817, + 0.034173231571912766, + -0.01679001748561859, + 0.009861024096608162, + -0.055215973407030106, + 0.005062384065240622, + -0.08171296864748001, + -0.04303295537829399, + 0.03367490693926811, + 0.059028901159763336, + 0.0469585657119751, + 0.03726513311266899, + 0.06496713310480118, + -0.013567729853093624, + -0.01976872608065605, + 0.01748664304614067, + -0.12561972439289093, + -0.010733457282185555, + 0.03977109491825104, + 0.02433122880756855, + -0.033876821398735046, + -0.03962323069572449, + -0.016566438600420952, + 0.068427175283432, + -0.017340095713734627, + -0.05331761762499809, + 0.05381098762154579, + 0.03683292493224144, + -0.010332480072975159, + 0.06225206330418587, + -0.06429074704647064, + -0.04916937276721001, + -0.006489398889243603, + 0.08484657108783722, + 0.018173227086663246, + -0.02411048300564289, + 0.058758240193128586, + 0.03420596197247505, + 0.028976820409297943, + -0.017914380878210068, + 0.05076246336102486, + 0.04454003646969795, + 0.006671612150967121, + -0.011126467026770115, + 0.05203867703676224, + -0.07304830104112625, + 0.009031787514686584, + 0.07700031250715256, + -0.0032170836348086596, + -0.0053769564256072044, + -0.013583940453827381, + -0.006078483536839485, + -0.10763103514909744, + 0.03082006424665451, + -0.016863875091075897, + 0.03609436750411987, + -0.0416983962059021, + 0.0882800742983818, + 0.0047028022818267345, + 0.04235514998435974, + 0.03409230709075928, + 0.06714322417974472, + 0.032705157995224, + 0.006693462375551462, + 0.0317104198038578, + -2.2260451260081027e-08, + 0.022672947496175766, + -0.0783851221203804, + -0.036580633372068405, + 0.006020017433911562, + -0.007309310603886843, + 0.0021294266916811466, + -0.04984190687537193, + -0.02081906609237194, + 0.016955843195319176, + -0.03832520544528961, + 0.08388890326023102, + 0.08497472107410431, + -0.08901939541101456, + -0.04495084658265114, + 0.005186816677451134, + 0.08741319179534912, + -0.003442303044721484, + 0.028902674093842506, + 0.046676550060510635, + -0.05074894055724144, + -0.03294423222541809, + 0.050421398133039474, + 0.010181356221437454, + 0.04045622795820236, + 0.014971224591135979, + 0.004405186045914888, + -0.045333996415138245, + -0.009992683306336403, + -0.05861673504114151, + 0.025892840698361397, + 0.08270054310560226, + 0.03138820827007294, + -0.07850378751754761, + -0.041453294456005096, + -0.07972528040409088, + 0.07066874951124191, + 0.003399400506168604, + -0.039245545864105225, + 0.0506298653781414, + 0.05164671689271927, + -0.01024868804961443, + 0.044943999499082565, + -0.017593935132026672, + -0.04101540148258209, + -0.09049767255783081, + -0.021188834682106972, + 0.05315336212515831, + -0.05572963133454323, + -0.08344461023807526, + -0.15140733122825623, + 0.03731663525104523, + 0.01324198767542839, + 0.019379664212465286, + 0.08473152667284012, + 0.046500593423843384, + -0.00286211259663105, + -0.015333113260567188, + 0.0690666064620018, + -0.006657997611910105, + 0.04243425279855728, + 0.1819438487291336, + 0.009095512330532074, + -0.013083423487842083, + 0.034497883170843124 + ], + "thumbs-up-bold||like,love,favorited,favorites,emoji,yes": [ + -0.08791318535804749, + -0.022491099312901497, + -0.00898044090718031, + -0.004703162703663111, + 0.0634215697646141, + 0.002507138531655073, + 0.1077464148402214, + -0.04334770888090134, + 0.0702030286192894, + -0.022341271862387657, + -0.018863637000322342, + 0.05771193653345108, + 0.0669231116771698, + 0.0021555963903665543, + -0.02176041342318058, + 0.05778834968805313, + 0.008946292102336884, + 0.045755162835121155, + -0.04561210423707962, + -0.004338560160249472, + -0.04000250622630119, + 0.019397014752030373, + 0.008590349927544594, + -0.004035651683807373, + 0.0004975670599378645, + 0.019880380481481552, + 0.043010126799345016, + 0.004876299295574427, + -0.045404836535453796, + -0.01959492824971676, + -0.019665857776999474, + -0.024274304509162903, + 0.0801766887307167, + -0.0014026700519025326, + 0.02117840014398098, + 0.0459720715880394, + -0.013739719055593014, + -0.008152132853865623, + 0.00043742216075770557, + 0.037362586706876755, + -0.03107271157205105, + -0.10186918079853058, + 0.0032288788352161646, + 0.0007325586047954857, + -0.004505874123424292, + 0.006390669383108616, + -0.06334523111581802, + -0.021708272397518158, + 0.01002675574272871, + 0.04891373589634895, + -0.016080506145954132, + -0.11023473739624023, + -0.05574066936969757, + -0.03294703736901283, + 0.04376530274748802, + -0.020871611312031746, + -0.08110684901475906, + -0.0612022839486599, + 0.031270354986190796, + -0.007543792482465506, + 0.036083102226257324, + -0.0030504376627504826, + 0.08378159254789352, + 0.02027558907866478, + 0.0937369167804718, + -0.07598158717155457, + 0.014103544875979424, + -0.013263312168419361, + -0.058707281947135925, + 0.06476230174303055, + 0.037274833768606186, + 0.026895785704255104, + 0.00222523370757699, + 0.01838833838701248, + -0.03772803023457527, + 0.07089879363775253, + -0.0054219383746385574, + -0.05475327745079994, + -0.003647698787972331, + -0.03417788818478584, + -0.06262178719043732, + -0.025026189163327217, + 0.004349908791482449, + -0.03494889289140701, + 0.02690756693482399, + 0.025797821581363678, + -0.04333547130227089, + -0.036332789808511734, + -0.12140050530433655, + 0.016945449635386467, + -0.09814413636922836, + -0.03169366717338562, + 0.058197058737277985, + -0.04944590851664543, + -0.08053123950958252, + 0.032978978008031845, + 0.02468925714492798, + -0.08678705245256424, + -0.1354207545518875, + 0.0786832943558693, + 0.011781243607401848, + 0.09410982578992844, + -0.026863189414143562, + -0.01980704441666603, + -0.0017270523821935058, + 0.04162249714136124, + -0.06489549577236176, + 0.0022838597651571035, + 0.0011809903662651777, + -0.02468646876513958, + -0.03669826686382294, + -0.045809198170900345, + -0.014922640286386013, + -0.087235227227211, + -0.03023994341492653, + -0.09937380999326706, + 0.0012117013102397323, + -0.01989283785223961, + 0.16538165509700775, + 0.04930407181382179, + 0.04326753690838814, + -0.025376178324222565, + -0.050244662910699844, + -0.02291174791753292, + -0.026591749861836433, + 0.019352177157998085, + 0.04997559264302254, + -2.5225360309352602e-34, + 0.06135189160704613, + 0.030058786273002625, + -0.02019760198891163, + -0.016380205750465393, + 0.014103081077337265, + -0.018883448094129562, + -0.09197079390287399, + -0.030868161469697952, + -0.1569349467754364, + -0.060744792222976685, + 0.06211741641163826, + 0.10857176035642624, + -0.018691005185246468, + 0.08429824560880661, + 0.04724776744842529, + -0.020472781732678413, + 0.005102253053337336, + -0.0324096642434597, + -0.031519949436187744, + -0.05520375818014145, + -0.020228223875164986, + 0.05588943138718605, + 0.029044542461633682, + -0.018646694719791412, + -0.05430612340569496, + -0.10932689160108566, + 0.04994165152311325, + 0.015757141634821892, + -0.028407249599695206, + 0.02500706911087036, + 0.011254283599555492, + 0.007394441869109869, + 0.01685762032866478, + -0.05783086270093918, + -0.005654595792293549, + 0.06136558577418327, + -0.01628800295293331, + -0.02013699896633625, + -0.0030118850991129875, + 0.022999921813607216, + 0.00464538112282753, + -0.040319137275218964, + -0.07092051953077316, + -0.006490902975201607, + -0.06519953161478043, + 0.18841667473316193, + -0.045987844467163086, + -0.05171482264995575, + 0.03439754620194435, + -0.08582776039838791, + 0.029367821291089058, + -0.07603250443935394, + -0.03135652840137482, + 0.035330891609191895, + -0.024302557110786438, + -0.010069340467453003, + 0.014286674559116364, + 0.10537663102149963, + 0.06336813420057297, + -0.06030731275677681, + -0.030053462833166122, + -0.02079911157488823, + 0.09080768376588821, + -0.07458195835351944, + -0.03566403687000275, + 0.0692995935678482, + -0.03874882310628891, + 0.053535230457782745, + 0.05859147012233734, + 0.06457725167274475, + -0.01010063011199236, + 0.09513022005558014, + -0.021575553342700005, + 0.015977704897522926, + -0.0526762455701828, + -0.04991782456636429, + 0.017823010683059692, + -0.05671103298664093, + 0.06273917853832245, + -0.009430021047592163, + -0.001098819077014923, + -0.0579390823841095, + -0.0003724683774635196, + 0.0021101695019751787, + 0.05393073707818985, + -0.011289226822555065, + -0.004967105574905872, + -0.09075267612934113, + -0.057208769023418427, + -0.013990414328873158, + -0.0629899874329567, + 0.023308565840125084, + 0.0966486856341362, + -0.043239373713731766, + -0.12262178212404251, + -1.549705079553893e-33, + -0.00441756471991539, + -0.013470304198563099, + -0.02872253581881523, + 0.05746359005570412, + -0.04018854722380638, + 0.014445291832089424, + -0.02691536396741867, + 0.05305451899766922, + -0.012421400286257267, + -0.005072720814496279, + 0.019893202930688858, + -0.04385378956794739, + -0.022284267470240593, + -0.07170312851667404, + -0.0008735400042496622, + 0.05400421470403671, + 0.034817904233932495, + 0.05786270648241043, + -0.05179722234606743, + 0.021968264132738113, + -0.07646700739860535, + -0.0525381825864315, + -0.04678695648908615, + 0.07794405519962311, + -0.035518042743206024, + 0.015068311244249344, + 0.05022580921649933, + -0.018218427896499634, + -0.03282027691602707, + -0.08136679232120514, + 0.05839381366968155, + 0.013609261251986027, + -0.036967117339372635, + 0.007982316426932812, + -0.04034021496772766, + 0.02575761079788208, + -0.040775272995233536, + -0.08896508812904358, + 0.036206427961587906, + 0.10730624943971634, + 0.038729216903448105, + 0.03365730494260788, + 0.029884057119488716, + 0.035572003573179245, + -0.007161545101553202, + -0.0009035212569870055, + -0.10173844546079636, + 0.01760832965373993, + -0.001204172964207828, + 0.06144699454307556, + 0.0023906033020466566, + -0.013569513335824013, + -0.023294156417250633, + 0.05866134911775589, + -0.010000942274928093, + -0.024680346250534058, + 0.07262817025184631, + 0.08632897585630417, + 0.021163275465369225, + 0.013233741745352745, + -0.054876044392585754, + -0.0042059533298015594, + 0.013130402192473412, + 0.048730507493019104, + 0.030986571684479713, + -0.027045203372836113, + 0.06100651994347572, + -0.0033644356299191713, + -0.020856881514191628, + 0.0006256868364289403, + 0.04554580897092819, + 0.056240618228912354, + 0.0027478537522256374, + 0.018918883055448532, + 0.05448246747255325, + -0.06745238602161407, + 0.041143905371427536, + 0.01711404137313366, + 0.006289022974669933, + -0.05191531032323837, + -0.020197251811623573, + 0.03353920951485634, + -0.08086152374744415, + 0.02252541109919548, + -0.012685941532254219, + 0.026821624487638474, + -0.020885713398456573, + 0.059627968817949295, + -0.03838952258229256, + 0.01833873987197876, + 0.049490779638290405, + 0.053956739604473114, + 0.028372066095471382, + 0.0008725527441129088, + 0.014964823611080647, + -2.457221093266071e-08, + -0.0013683938886970282, + -0.05225037410855293, + -0.05853137746453285, + -0.009349530562758446, + 0.03344866260886192, + -0.0021682647056877613, + -0.050567254424095154, + -0.04152495786547661, + 0.029054392129182816, + -0.09829005599021912, + 0.08738534897565842, + 0.06001761183142662, + -0.10210653394460678, + -0.04140930622816086, + 0.027651427313685417, + 0.024292994290590286, + 0.04095461219549179, + 0.06122177094221115, + 0.018763840198516846, + -0.02935260348021984, + -0.006721749901771545, + 0.1002236008644104, + 0.04180741310119629, + 0.007944568060338497, + 0.020218582823872566, + 0.05949403718113899, + -0.08202710747718811, + 0.004045624285936356, + -0.04130714014172554, + 0.04636339843273163, + 0.06732898205518723, + 0.012860659509897232, + -0.02822405844926834, + -0.043671417981386185, + -0.006778412032872438, + 0.07542432844638824, + 0.019745847210288048, + -0.057544007897377014, + 0.02439182996749878, + 0.04767971485853195, + 0.05047577992081642, + 0.027416255325078964, + 0.001757104299031198, + -0.02880924381315708, + -0.11651657521724701, + -0.022467629984021187, + 0.1044497936964035, + -0.08023695647716522, + -0.06810571998357773, + -0.14195361733436584, + -0.027116941288113594, + -0.03831753507256508, + 0.022792741656303406, + 0.04955155774950981, + 0.019297130405902863, + 0.004354917909950018, + -0.009003864601254463, + 0.06164399906992912, + 0.04041615501046181, + 0.0008745540981180966, + 0.17566411197185516, + 0.022117050364613533, + -0.007545186206698418, + 0.04949713870882988 + ], + "ticket-bold||ticketstub,movie ticket,entry,admissions,events": [ + 0.00331195374019444, + -0.043104998767375946, + -0.011603484861552715, + -0.04584045708179474, + 0.011062963865697384, + 0.09391611814498901, + 0.05270540714263916, + -0.008779013529419899, + -0.03440142422914505, + -0.0038858256302773952, + -0.044657353311777115, + 0.016038930043578148, + 0.022916559129953384, + 0.024050086736679077, + -0.02701016701757908, + -0.050562161952257156, + 0.09761469066143036, + -0.03409486636519432, + -0.0487842820584774, + -0.022496087476611137, + 0.005031466484069824, + -0.0037222388200461864, + -0.012993896380066872, + 0.07327637076377869, + -0.014109647832810879, + -0.00032639657729305327, + -0.0039946651086211205, + 0.021964607760310173, + -0.008295509964227676, + -0.010146495886147022, + -0.022132594138383865, + 0.03780237212777138, + -0.018375901505351067, + 0.033219367265701294, + 0.06648486107587814, + -0.05051369592547417, + -0.062058642506599426, + -0.09138435125350952, + -0.023772867396473885, + 0.023003067821264267, + 0.01755450665950775, + -0.06152595579624176, + 0.02805222198367119, + 0.08720690757036209, + 0.04144004359841347, + -0.06369859725236893, + -0.04706887528300285, + -0.05231161415576935, + 0.05111237242817879, + 0.031346991658210754, + 0.011894322000443935, + 0.00913089420646429, + -0.022817745804786682, + -0.04614214226603508, + -0.027167990803718567, + 0.05558238551020622, + -0.04943627119064331, + -0.020393919199705124, + 0.0033830853644758463, + -0.005727481562644243, + -0.04875922575592995, + -0.05778130888938904, + 0.026646235957741737, + 0.03959506005048752, + -0.05848723649978638, + -0.05058608949184418, + -0.05234719440340996, + 0.09277653694152832, + 0.05371972545981407, + 0.00968742836266756, + 0.026777425780892372, + 0.07022359222173691, + -0.010306469164788723, + -0.008753696456551552, + 0.002071990864351392, + -0.01921902969479561, + -0.04071079567074776, + 0.017630141228437424, + -0.0656038299202919, + -0.02388390526175499, + -0.06627392768859863, + -0.1769314706325531, + -0.04701144993305206, + -0.039620622992515564, + 0.10287535935640335, + 0.07806634902954102, + -0.029777638614177704, + -0.022305594757199287, + -0.060004789382219315, + 0.03183721378445625, + -0.0880928635597229, + -0.09004909545183182, + 0.07762713730335236, + 0.03836707025766373, + -0.08370966464281082, + 0.05722258239984512, + -0.021930787712335587, + -0.04125949740409851, + 0.05579013004899025, + 0.09748072177171707, + 0.03779153153300285, + 0.06337622553110123, + -0.00742308609187603, + 0.059323009103536606, + -0.011489135213196278, + -0.032141488045454025, + 0.02295236475765705, + 0.015169056132435799, + 0.021252581849694252, + -0.035575125366449356, + -0.05675838142633438, + -0.0423126295208931, + 0.13007114827632904, + 0.01672716625034809, + -0.07428396493196487, + 0.05405274033546448, + 0.0384833924472332, + 0.009950502775609493, + 0.12618516385555267, + -0.004651733208447695, + -0.018019527196884155, + 0.04138263687491417, + 0.047114964574575424, + -0.004395286552608013, + -0.14156915247440338, + -0.10260869562625885, + -0.008613421581685543, + -2.0430870582298777e-33, + 0.0197152066975832, + -0.018133696168661118, + -0.0491190180182457, + -0.017306651920080185, + 0.03705795481801033, + 0.03326859697699547, + -0.10599450767040253, + -0.015180938877165318, + -0.02495887130498886, + 0.0325089730322361, + -0.004430030472576618, + 0.017789596691727638, + 0.007197911851108074, + -0.01041251141577959, + 0.050006359815597534, + 0.05082791671156883, + -0.07912161946296692, + 0.04923882707953453, + -0.052938781678676605, + -0.025233423337340355, + -0.0910554900765419, + 0.03608549386262894, + -0.05003846064209938, + -0.00039316926267929375, + 0.011157606728374958, + -0.004035338759422302, + -0.03494235873222351, + -0.00561240129172802, + 0.02188405953347683, + 0.034946516156196594, + -0.0013600921956822276, + 0.026914523914456367, + -0.02330091781914234, + -0.016055267304182053, + 0.11223195493221283, + 0.018858617171645164, + -0.07175292074680328, + -0.06081361696124077, + 0.03213002160191536, + -0.028440576046705246, + -0.1302572637796402, + -0.0626014769077301, + -0.13532866537570953, + 0.014042087830603123, + -0.05529959127306938, + 0.14851735532283783, + -0.03384443745017052, + -0.03607949614524841, + 0.10914500057697296, + 0.047581110149621964, + -0.029239537194371223, + -0.001844092272222042, + -0.019550975412130356, + -0.1005423292517662, + -0.04716033115983009, + 0.0023778413888067007, + 0.0033709662966430187, + 0.01564818061888218, + 0.012742476537823677, + -0.027589919045567513, + -0.011630963534116745, + 0.005050378851592541, + 0.019397562369704247, + -0.025463631376624107, + -0.09360291808843613, + 0.05551362782716751, + -0.030753470957279205, + -0.04438341036438942, + 0.11212577670812607, + -0.06333467364311218, + 0.005839550867676735, + 0.054122865200042725, + 0.014841349795460701, + -0.021389422938227654, + 0.06741613894701004, + 0.023200584575533867, + 0.0030968161299824715, + -0.005168781615793705, + 0.021759286522865295, + -0.01405335497111082, + -0.04676947742700577, + -0.019884582608938217, + 0.021243181079626083, + 0.04929707199335098, + 0.06144469976425171, + 0.05557665973901749, + -0.01206368301063776, + -0.07253756374120712, + 0.028088403865695, + -0.03387138247489929, + 0.01746468059718609, + -0.011559629812836647, + -0.018091924488544464, + -0.005889784079045057, + -0.03066478669643402, + -8.581422838399559e-34, + 0.07496581971645355, + 0.008001499809324741, + -0.042941268533468246, + -0.071703240275383, + 0.029502568766474724, + 0.006531490013003349, + -0.05487475171685219, + 0.033732522279024124, + 0.13206154108047485, + 0.009486799128353596, + -0.06863205879926682, + 0.025186661630868912, + 0.02617853507399559, + -0.048390015959739685, + -0.0295974500477314, + -0.05506366491317749, + 0.08708158135414124, + 0.0040405746549367905, + 0.021517561748623848, + 0.06620583683252335, + -0.002975042909383774, + -0.0265837162733078, + -0.11830440163612366, + 0.012289104983210564, + 0.00032062860555015504, + 0.03336522355675697, + 0.06761601567268372, + 0.0018726252019405365, + -0.08100755512714386, + -0.04913238808512688, + -0.02417050488293171, + -0.03805653005838394, + -0.07120297849178314, + 0.011787710711359978, + -0.05687925964593887, + 0.012387581169605255, + 0.15718930959701538, + -0.0170978344976902, + -0.05589758977293968, + 0.006206698715686798, + 0.039918359369039536, + 0.00867449026554823, + 0.07347967475652695, + 0.04261188209056854, + 0.03448239341378212, + 0.045145388692617416, + -0.07844123244285583, + 0.02568216063082218, + 0.025149334222078323, + 0.03840568661689758, + -0.10629387944936752, + -0.017677947878837585, + 0.0025003503542393446, + 0.042664650827646255, + 0.03368811309337616, + 0.005711520556360483, + 0.014568956568837166, + 0.003280814504250884, + 0.03769616410136223, + 0.04523438587784767, + -0.03316182643175125, + 0.04576130956411362, + -0.06952927261590958, + 0.09644962847232819, + -0.0530729740858078, + -0.06145863980054855, + -0.025230450555682182, + -0.01099559385329485, + -0.052683889865875244, + 0.022815324366092682, + -0.017964260652661324, + -0.031964726746082306, + 0.013421491719782352, + 0.02196287363767624, + -0.004267581272870302, + -0.027666492387652397, + 0.07445656508207321, + 0.12338919937610626, + 0.014593063853681087, + -0.009835606440901756, + -0.03264971077442169, + 0.04294394329190254, + -0.016443947330117226, + 0.0038787471130490303, + 0.029145697131752968, + 0.057347990572452545, + 0.021024728193879128, + -0.006491254549473524, + 0.014519731514155865, + -0.008126265369355679, + 0.010507135652005672, + 0.002537235151976347, + 0.03166557475924492, + -0.032599519938230515, + -0.041472338140010834, + -1.9028568942758284e-08, + -0.0067797158844769, + 0.06367959082126617, + -0.0984310731291771, + 0.0049442630261182785, + 0.020000839605927467, + -0.07355903834104538, + -0.09523359686136246, + 0.08584267646074295, + -0.014405656605958939, + 0.006719163618981838, + 0.022430632263422012, + 0.03295457363128662, + -0.07868796586990356, + -0.036102551966905594, + -0.04475593939423561, + 0.09337282180786133, + -0.04189028590917587, + 0.01915799453854561, + -0.019253067672252655, + -0.06005620211362839, + -0.011646520346403122, + 0.041446469724178314, + 0.05254746600985527, + 0.001158690545707941, + -0.01990444026887417, + 0.08066605776548386, + -0.021608825773000717, + 0.04649725928902626, + 0.051117703318595886, + -0.01739273965358734, + -0.029110856354236603, + 0.07085602730512619, + -0.004138933029025793, + -0.06153133139014244, + -0.024165526032447815, + -0.08572225272655487, + 0.005566596519201994, + -0.06004898622632027, + 0.06408354640007019, + 0.05718141421675682, + -0.015994833782315254, + -0.09111661463975906, + 0.044483672827482224, + 0.015878848731517792, + 0.11118828505277634, + 0.06459958106279373, + 0.061662498861551285, + -0.01392876822501421, + -0.0018209578702226281, + -0.1189749613404274, + -0.026650596410036087, + -0.02658197283744812, + -0.07703415304422379, + 0.005997592117637396, + 0.017032548785209656, + 0.0013481503119692206, + 0.07947015017271042, + 0.026943089440464973, + -0.017995452508330345, + 0.011860215105116367, + 0.09549097716808319, + 0.0024545376654714346, + 0.0017973388312384486, + 0.05415165051817894 + ], + "tidal-logo-bold||music,logos": [ + 0.06109904125332832, + 0.02771848253905773, + 0.01839020475745201, + -0.04962950199842453, + 0.0331462100148201, + 0.001949301571585238, + 0.009795435704290867, + -0.09517407417297363, + 0.05926862731575966, + -0.023627400398254395, + -0.03220701962709427, + 0.00938602164387703, + 0.04538584128022194, + -0.09841203689575195, + 0.05124043673276901, + 0.008066462352871895, + -0.017339251935482025, + 0.03746962919831276, + 0.043997008353471756, + 0.017259815707802773, + -0.02675265446305275, + 0.0314561203122139, + -0.04578469321131706, + 0.008757088333368301, + 0.024575332179665565, + 0.04671446233987808, + 0.005614009220153093, + 0.029546286910772324, + 0.009889533743262291, + -0.058099452406167984, + 0.020961767062544823, + 0.038989171385765076, + 0.08197139203548431, + -0.049793049693107605, + 0.010915059596300125, + 0.04145767539739609, + -0.0469401553273201, + -0.062137849628925323, + -0.04688955843448639, + 0.00948222354054451, + 0.045255064964294434, + -0.03670388460159302, + 0.04809601977467537, + -0.013332474045455456, + -0.06379038095474243, + 0.006804839242249727, + -0.07786417752504349, + -0.04198509082198143, + 0.03670455142855644, + 0.02046801894903183, + 0.06414692848920822, + -0.17313773930072784, + -0.06415123492479324, + -0.049541398882865906, + -0.06461615115404129, + -0.044947002083063126, + -0.03756261244416237, + 0.06165006011724472, + 0.07777050137519836, + 0.013257603161036968, + 0.043477997183799744, + 0.03482560068368912, + 0.0337236188352108, + 0.046715427190065384, + 0.07877598702907562, + 0.041326940059661865, + -0.021519124507904053, + 0.04729362949728966, + -0.08324989676475525, + 0.04271210357546806, + 0.07985939085483551, + -0.03805221617221832, + -0.0007874128641560674, + -0.044160157442092896, + 0.025943949818611145, + 0.007274317555129528, + 0.06252526491880417, + 0.012574837543070316, + -0.07828734815120697, + -0.09111954271793365, + -0.044595904648303986, + -0.055626388639211655, + -0.06668257713317871, + -0.030628016218543053, + 0.08034276962280273, + 0.0504024513065815, + -0.051077838987112045, + -0.06720896065235138, + -0.023205973207950592, + 0.023361146450042725, + -0.10621776431798935, + 0.025585046038031578, + 0.03685494884848595, + -0.01221864391118288, + 0.013152272440493107, + 0.03974395990371704, + -0.034119512885808945, + -0.02674686349928379, + -0.0408799834549427, + 0.06776834279298782, + 0.007456009741872549, + 0.10801064223051071, + 0.07353872060775757, + -0.004255973733961582, + 0.01974872685968876, + -0.020144106820225716, + -0.015143086202442646, + 0.05263929441571236, + -0.0004964848631061614, + 0.01511793490499258, + 0.040956877171993256, + -0.03172176331281662, + -0.013653292320668697, + 0.020456425845623016, + -0.07830189168453217, + -0.021216802299022675, + 0.0014245773199945688, + -0.030612897127866745, + 0.0913204625248909, + 0.008969588205218315, + 0.04934677109122276, + -0.06701327115297318, + -0.09003103524446487, + -0.05497802793979645, + -0.016981162130832672, + 0.015743868425488472, + -0.045593973249197006, + -3.8480512870778075e-33, + 0.014782203361392021, + 0.031861621886491776, + 0.02464459277689457, + 0.0533393919467926, + 0.09801328927278519, + -0.01560176070779562, + -0.05939417704939842, + -0.023835325613617897, + -0.07167252153158188, + 0.047952800989151, + 0.06838821619749069, + 0.05833430215716362, + 0.002130798762664199, + 0.0427437499165535, + 0.014861151576042175, + -0.05697637051343918, + -0.015489829704165459, + -0.04579608142375946, + -0.08132650703191757, + -0.04401213675737381, + -0.09973575174808502, + -0.004178720060735941, + -0.07346053421497345, + -0.04101813584566116, + -0.029775923117995262, + -0.00342557649128139, + 0.05601298063993454, + -0.017185768112540245, + 0.0054577975533902645, + 0.006761104334145784, + 0.02193898893892765, + -0.045004840940237045, + 0.060485418885946274, + 0.013182122260332108, + -0.010913659818470478, + 0.017539840191602707, + -0.07252267748117447, + 0.02297745831310749, + -0.011201214976608753, + -0.011993340216577053, + 0.01929141953587532, + -0.05493532493710518, + -0.07529191672801971, + 0.0480474978685379, + -0.03521828353404999, + 0.1254054456949234, + 0.017607370391488075, + -0.10378638654947281, + 0.12421607971191406, + 0.010141703300178051, + 0.0425277054309845, + -0.00401850463822484, + -0.09327210485935211, + -0.023655248805880547, + 0.037759192287921906, + -0.04429425299167633, + -0.02219787798821926, + 0.11909569799900055, + -0.043750613927841187, + 0.0027256847824901342, + 0.024499965831637383, + 0.006924986373633146, + 0.11026899516582489, + -0.014031226746737957, + 0.009465997107326984, + 0.11998575925827026, + 0.07698263972997665, + 0.017299160361289978, + 0.029987283051013947, + -0.09611523896455765, + -0.03150879591703415, + -0.024434957653284073, + 0.09313555061817169, + 0.017183378338813782, + -0.09614390134811401, + 0.024821966886520386, + 0.05963602662086487, + -0.05078674480319023, + 0.053747471421957016, + 0.04112545773386955, + -0.0756823718547821, + 0.013534897938370705, + -0.030175618827342987, + 0.05383801460266113, + 0.014299064874649048, + 0.057768840342760086, + 0.02502438612282276, + -0.06829313933849335, + -0.060780785977840424, + 0.0026820749044418335, + -0.07223402708768845, + 0.06522613018751144, + 0.013179809786379337, + -0.02584446780383587, + -0.1357048749923706, + 1.59091056465403e-33, + 0.0066796885803341866, + -0.004575472325086594, + 0.06449280679225922, + -0.04461123049259186, + 0.005290844012051821, + 0.013107018545269966, + 0.059512536972761154, + 0.08555635064840317, + -0.03584250062704086, + 0.06206083670258522, + 0.08058539032936096, + -0.029193423688411713, + -0.10792577266693115, + -0.049520816653966904, + -0.06127452105283737, + 0.021860569715499878, + 0.06523622572422028, + 0.05170544609427452, + -0.06032731756567955, + 0.011631880886852741, + -0.023427525535225868, + -0.004958148114383221, + -2.9542579795815982e-05, + 0.08847160637378693, + -0.06487446278333664, + 0.046986352652311325, + 0.0622437559068203, + 0.028726495802402496, + -0.026210732758045197, + -0.01828669011592865, + -0.006982353515923023, + -0.01201687566936016, + -0.013792997226119041, + -0.04904889687895775, + 0.023679440841078758, + 0.023033341392874718, + 0.03619277477264404, + -0.000290114403469488, + -0.0338590033352375, + -0.0011876847129315138, + -0.07712095975875854, + -0.008250773884356022, + -0.008368194103240967, + -0.012699306011199951, + -0.02982265315949917, + -0.008903739973902702, + -0.013825546018779278, + -0.013572712428867817, + -0.08624010533094406, + 0.07269390672445297, + 0.08750418573617935, + -0.05428428575396538, + 0.061532944440841675, + 0.03831290081143379, + -0.09710444509983063, + 0.011779247783124447, + 0.0006525673670694232, + 0.03557717055082321, + 0.017846690490841866, + 0.03803494945168495, + 0.05443233624100685, + 0.006573618855327368, + -0.07594488561153412, + -0.03365776687860489, + -0.011802184395492077, + 0.04842567816376686, + 0.04652708023786545, + -0.022526564076542854, + -0.05393008142709732, + 0.11616311967372894, + -0.05761066451668739, + -0.00034486190997995436, + -0.05728777498006821, + 0.040400926023721695, + -0.040378257632255554, + -0.01667432300746441, + 0.05459262803196907, + -0.02782353386282921, + -0.06655984371900558, + 0.005065533332526684, + -0.04090580344200134, + 0.06452549248933792, + -0.06364410370588303, + 0.03520551696419716, + 0.028281042352318764, + 0.0014246772043406963, + 0.014205985702574253, + 0.012392159551382065, + 0.016594385728240013, + 0.04540247097611427, + -0.041481826454401016, + 0.052704982459545135, + -0.00804187823086977, + 0.020796889439225197, + -0.02644996903836727, + -1.4154961647250275e-08, + -0.010204719379544258, + -0.01842038333415985, + 0.028820687904953957, + -0.01942468248307705, + 0.022398691624403, + 0.025341812521219254, + 0.005919588264077902, + -0.12850534915924072, + -0.022955691441893578, + -0.03617842495441437, + -0.035571858286857605, + -0.04363815486431122, + -0.07699357718229294, + -0.02995731309056282, + -0.007221008650958538, + -0.007792519871145487, + -0.09535423666238785, + 0.11076533794403076, + -0.03494163975119591, + -0.05217937380075455, + -0.025245118886232376, + 0.11499074846506119, + 0.05585071071982384, + -0.06314405798912048, + 0.041281186044216156, + 0.038853999227285385, + 0.027508480474352837, + 0.007612544111907482, + 0.03834218531847, + 0.0012813783250749111, + -0.0035844179801642895, + 0.08136092126369476, + 0.00813379604369402, + -0.06183473765850067, + -0.09211278706789017, + -0.069036565721035, + -0.011157538741827011, + -0.026383282616734505, + -0.08781065046787262, + 0.06358086317777634, + -0.002621273510158062, + 0.05136057361960411, + -0.01157116238027811, + -0.009314466267824173, + -0.052913371473550797, + -0.015515632927417755, + 0.10741015523672104, + 0.1012803465127945, + -0.018496686592698097, + -0.012271548621356487, + 0.002651850925758481, + 0.0004462228389456868, + -0.026745017617940903, + 0.005045587196946144, + -0.03463147580623627, + -0.04826783016324043, + -0.03350771963596344, + 0.12129828333854675, + -0.02552208863198757, + 0.049573611468076706, + 0.07489387691020966, + -0.032690007239580154, + 0.05386900156736374, + -0.011904622428119183 + ], + "tiktok-logo-bold||logos,social media": [ + -0.03537192568182945, + 0.07840119302272797, + -0.045639630407094955, + -0.00230365339666605, + 0.0878102108836174, + -0.062230076640844345, + 0.048065874725580215, + -0.03920481353998184, + 0.055239707231521606, + 0.006266269367188215, + -0.002323244931176305, + 0.02175142616033554, + 0.08038775622844696, + -0.0380060039460659, + 0.0756339356303215, + -0.024104967713356018, + -0.01922370307147503, + 0.012187153100967407, + 0.02868994139134884, + -0.06688831001520157, + -0.04294097051024437, + -0.04280702397227287, + 0.01893042027950287, + -0.03467969596385956, + 0.05345800146460533, + -0.06331666558980942, + 0.019941432401537895, + -0.005920105613768101, + 0.006330680102109909, + -0.026882991194725037, + -0.018063195049762726, + 0.0093242721632123, + 0.035837769508361816, + 0.07296111434698105, + -0.014366168528795242, + 0.06524774432182312, + -0.02161971479654312, + -0.057002708315849304, + -0.0018954892875626683, + 0.08389844000339508, + 0.017607556656003, + -0.03579040244221687, + 0.00656659621745348, + -0.016846533864736557, + -0.04742051288485527, + 0.05656883493065834, + -0.05184270814061165, + -0.035537026822566986, + -0.00038738822331652045, + -0.01737121120095253, + -0.014532121829688549, + -0.1235203891992569, + -0.07480279356241226, + -0.0437912717461586, + 0.02379358746111393, + -0.044027600437402725, + -0.04660648852586746, + 0.012029888108372688, + 0.04449119418859482, + 0.028898486867547035, + 0.0595799945294857, + -0.01969701237976551, + 0.028520649299025536, + 0.07365526258945465, + 0.0724189430475235, + 0.013696865178644657, + -0.029276207089424133, + 0.09432951360940933, + -0.0653095617890358, + 0.04226766899228096, + 0.08877456188201904, + 0.00400683656334877, + -0.0317077562212944, + -0.01956973411142826, + -0.044067300856113434, + -0.02566388249397278, + 0.07309003174304962, + 0.04315681755542755, + 0.0018184728687629104, + -0.09300609678030014, + -0.04983283579349518, + -0.014661702327430248, + 0.02960214763879776, + 0.0069882976822555065, + 0.0330955907702446, + 0.0937584862112999, + -0.06539381295442581, + -0.011291335336863995, + -0.03006446547806263, + 0.09173189848661423, + -0.031399957835674286, + 0.08896095305681229, + 0.011977413669228554, + -0.014412549324333668, + -0.06852106750011444, + -0.01921321451663971, + 0.008026099763810635, + -0.03128699213266373, + -0.08269067108631134, + 0.09197807312011719, + -0.03482024744153023, + 0.0802493542432785, + 0.07939917594194412, + -0.028808504343032837, + 0.053440358489751816, + 0.03303433582186699, + 0.020641030743718147, + -0.04111839458346367, + 0.03207840397953987, + 0.08370204269886017, + -0.002831576857715845, + -0.015383729711174965, + -0.0759979858994484, + -0.020705705508589745, + -0.04532969370484352, + -0.06574972718954086, + -0.023196330294013023, + -0.015709901228547096, + 0.12952472269535065, + -0.0016109105199575424, + 0.011049848049879074, + 0.020704837515950203, + -0.09253837913274765, + -0.05112915486097336, + -0.001145827234722674, + 0.0269305482506752, + -0.05079679563641548, + -1.434737415775154e-33, + 0.04122023656964302, + 0.1053004264831543, + 0.0023294812999665737, + 0.032800786197185516, + 0.014198807068169117, + 0.022557441145181656, + -0.060915011912584305, + -0.11548060178756714, + -0.08435408025979996, + -0.013949018903076649, + 0.004601646214723587, + 0.06896892935037613, + -0.06277649104595184, + 0.09767729043960571, + 0.006345697678625584, + -0.05587484687566757, + -0.045805852860212326, + -0.013157152570784092, + -0.1131615862250328, + -0.044790491461753845, + -0.016006741672754288, + -0.0172889344394207, + -0.10249301791191101, + -0.027133699506521225, + -0.06829790025949478, + -0.05742264539003372, + 0.07414554059505463, + -0.016622310504317284, + -0.019104862585663795, + 0.014935948885977268, + 0.00416747760027647, + 0.008101834915578365, + 0.030162127688527107, + 0.03641979768872261, + -0.04430459067225456, + -0.07135976850986481, + -0.020832762122154236, + -0.027547895908355713, + 0.03548729419708252, + 0.04151766002178192, + 3.608874249039218e-05, + -0.0329289548099041, + -0.06162669509649277, + 0.04825270175933838, + -0.061307117342948914, + 0.14084883034229279, + 0.006813532672822475, + -0.09619007259607315, + 0.07037030905485153, + -0.02479633502662182, + -0.0017889479640871286, + -0.011599759571254253, + -0.011777563020586967, + -0.05240590497851372, + -0.021768255159258842, + -0.0726480558514595, + -0.02550307847559452, + -0.0012378657702356577, + 0.007659742143005133, + -0.029733994975686073, + 0.043729618191719055, + -0.027275804430246353, + 0.10281845927238464, + 0.010224112309515476, + -0.01145846676081419, + 0.09874309599399567, + -0.03889249637722969, + 0.02193218283355236, + -0.0025535249151289463, + -0.06508030742406845, + 0.032882969826459885, + 0.03412424027919769, + 0.07309933006763458, + -0.04231668636202812, + -0.05310303717851639, + -0.003640237497165799, + 0.03226928040385246, + 0.014241667464375496, + -0.05430962145328522, + 0.05286198481917381, + -0.0512806735932827, + -0.07279308885335922, + -0.0011403635144233704, + 0.013544763438403606, + 0.049305450171232224, + 0.04981617256999016, + 0.07542687654495239, + -0.08084047585725784, + -0.012431029230356216, + 0.09151848405599594, + -0.08787339180707932, + 0.021407881751656532, + -0.003653997089713812, + 0.004553840495646, + -0.14766991138458252, + 4.006698208716691e-34, + 0.029916752129793167, + 0.05511687695980072, + 0.01179432962089777, + 0.0006010544020682573, + -0.011380809359252453, + -0.005609450396150351, + 0.07101371139287949, + 0.026745690032839775, + -0.026517152786254883, + 0.04096851870417595, + 0.08545227348804474, + -0.016261758282780647, + -0.09237853437662125, + -0.033363133668899536, + -0.024329625070095062, + 0.01206396333873272, + 0.08289489895105362, + 0.05522535741329193, + -0.12472102046012878, + -0.049670394510030746, + -0.08768735826015472, + -0.035556450486183167, + -0.030834708362817764, + 0.10856941342353821, + 0.006326261442154646, + 0.005364555865526199, + 0.007522390689700842, + 0.04694124683737755, + -0.08331990242004395, + -0.04588749259710312, + 0.010574275627732277, + -0.08002544194459915, + 0.015686798840761185, + 0.10030220448970795, + 0.04764261096715927, + 0.03067117929458618, + 0.0014741469640284777, + -0.05909112095832825, + 0.022695306688547134, + 0.03814567252993584, + 0.03818453475832939, + -0.05479223281145096, + -0.07038501650094986, + 0.055650245398283005, + -0.07231712341308594, + 0.004057858604937792, + -0.08209829777479172, + -0.0911373570561409, + -0.07485049217939377, + 0.04539364576339722, + 0.04919188842177391, + -0.006016986444592476, + 0.04685785248875618, + 0.030315903946757317, + -0.09572478383779526, + -0.009384069591760635, + 0.018863361328840256, + 0.07092232257127762, + -0.07388574630022049, + 0.06075580418109894, + 0.013782733120024204, + 0.013273200020194054, + -0.05545042082667351, + -0.003054640954360366, + 0.016213351860642433, + -0.003025680547580123, + 0.025420082733035088, + 0.000851717428304255, + 0.007469248957931995, + 0.04734425246715546, + 0.07837726175785065, + 0.008082310669124126, + -0.01836593821644783, + 0.02780137211084366, + -0.010606836527585983, + -0.022487986832857132, + 0.09662451595067978, + 0.06974433362483978, + -0.06683246791362762, + -0.011746201664209366, + -0.04250819981098175, + 0.04625716805458069, + -0.033780328929424286, + 0.06257831305265427, + 0.01491217315196991, + 0.05421622097492218, + -0.022365974262356758, + 0.026621341705322266, + -0.0032065457198768854, + -0.000527100230101496, + -0.01632661744952202, + 0.0777193084359169, + 0.012862817384302616, + 0.09016793966293335, + 0.03711327910423279, + -1.6984241568707148e-08, + -0.06972745060920715, + -0.031349699944257736, + 0.018029307946562767, + 0.028000131249427795, + 0.020795704796910286, + 0.022260257974267006, + 0.045465074479579926, + -0.10871756076812744, + -0.03713447228074074, + 0.0014987490139901638, + -0.09713099896907806, + -0.04208141565322876, + -0.03164205700159073, + -0.01856216788291931, + 0.004535530228167772, + -0.03022380731999874, + -0.05845888331532478, + 0.07913579791784286, + 0.01416893769055605, + -0.020957432687282562, + -0.0710737556219101, + 0.03555627539753914, + 0.024502836167812347, + -0.023891424760222435, + -0.038685306906700134, + 0.057594574987888336, + -0.05176817253232002, + -0.00839338917285204, + 0.05734683945775032, + 0.031017985194921494, + -0.010349937714636326, + 0.036842718720436096, + -0.003072983818128705, + 0.011791071854531765, + -0.03839899227023125, + 0.015466410666704178, + -0.08010871708393097, + 0.001873598201200366, + -0.033040549606084824, + 0.06114998459815979, + 0.02461926080286503, + 0.012201964855194092, + 0.05088432505726814, + -0.01693028397858143, + -0.06289119273424149, + 0.010505309328436852, + 0.06934503465890884, + 0.025396784767508507, + 0.02744155377149582, + -0.01934855431318283, + 0.0091389250010252, + 0.053407590836286545, + -0.017668617889285088, + 0.059393905103206635, + -0.028532633557915688, + -0.09884367138147354, + -0.013625402934849262, + 0.12755006551742554, + 0.025791166350245476, + 0.07306762039661407, + 0.0962257906794548, + -0.050118058919906616, + -0.02447809837758541, + -0.0035469767171889544 + ], + "tilde-bold||*new*,~,\u223c,proportional,comparison,mathematics,arithmetic,calculator": [ + -0.04797646775841713, + -0.018181433901190758, + -0.011746035888791084, + -0.04670257121324539, + -0.06994009763002396, + -0.05090658366680145, + -0.030936945229768753, + -0.018200106918811798, + -0.01824362203478813, + 0.05995774641633034, + 0.069559745490551, + -0.04785194247961044, + 0.07154616713523865, + 0.0044355932623147964, + 0.011278540827333927, + -0.00026091246400028467, + -0.04446836933493614, + 0.09119009226560593, + -0.06745515018701553, + -0.04184465482831001, + 0.002931569702923298, + 0.017580730840563774, + -0.02844352088868618, + 0.03332667797803879, + 0.09337523579597473, + 0.006864008493721485, + 0.046899888664484024, + -0.079192616045475, + 0.1111852377653122, + -0.01808059774339199, + 0.00495095644146204, + 0.03704845532774925, + 0.14105740189552307, + 0.008967055007815361, + -0.019374117255210876, + -0.0014898503432050347, + 0.03669418767094612, + -0.03203924745321274, + -0.0027842100244015455, + 0.12690609693527222, + -0.03756818547844887, + -0.0652424544095993, + -0.0005459300591610372, + 0.04244324937462807, + -0.026431230828166008, + -0.0012958722654730082, + -0.06376799196004868, + -0.0009722753311507404, + -0.052919257432222366, + -0.04055517166852951, + -0.04408987984061241, + -0.04753547161817551, + -0.1343822479248047, + -0.023981638252735138, + 0.03377190977334976, + -0.007044133730232716, + 0.0006558903842233121, + -0.01094596553593874, + 0.02990431897342205, + -0.07970535010099411, + -0.004161360207945108, + 0.04019752889871597, + 0.040036991238594055, + 0.005382636096328497, + -0.009450734592974186, + 0.006985379848629236, + 0.0071458653546869755, + 0.00522053986787796, + 0.013009706512093544, + 0.09887726604938507, + -0.02021378092467785, + 0.024675453081727028, + -0.02577417902648449, + -0.003086886601522565, + -0.021966148167848587, + -0.04916229844093323, + 0.0674542486667633, + -0.016690755262970924, + -0.02670695260167122, + -0.07189378142356873, + -0.08469076454639435, + -0.04603365808725357, + -0.06603065133094788, + 0.022803589701652527, + 0.07247043401002884, + 0.07543303817510605, + -0.024099990725517273, + -0.04820230230689049, + 0.04735160246491432, + -0.044007014483213425, + 0.03468479588627815, + 0.002503221156075597, + -0.0459352545440197, + 0.07432213425636292, + -0.0497257262468338, + 0.035580288618803024, + 0.0499638095498085, + -0.00471591716632247, + 0.008108103647828102, + 0.07739835977554321, + -0.0012248966377228498, + 0.019647717475891113, + 0.02821134403347969, + 0.02195984683930874, + -0.026596006006002426, + -0.08118417859077454, + 0.04785068333148956, + -0.02722504362463951, + 0.08872224390506744, + 0.005833406466990709, + 0.02432442083954811, + -0.10173550248146057, + 0.01097157783806324, + -0.024213949218392372, + 0.00996679812669754, + -0.04773395508527756, + -0.029451090842485428, + 0.0003975867875851691, + 0.09991290420293808, + 0.06764135509729385, + 0.06948234885931015, + -0.0057647861540317535, + -0.035353608429431915, + 0.01041232980787754, + -0.0207049660384655, + -0.03431861475110054, + -0.052144862711429596, + -1.163067722495165e-33, + 0.029777981340885162, + 0.05534179508686066, + -0.020332740619778633, + 0.07489233464002609, + -0.03296096622943878, + 0.010903732851147652, + -0.061998818069696426, + -0.047848667949438095, + -0.05429831147193909, + 0.06685654073953629, + 0.04041048511862755, + 0.13371874392032623, + -0.08106768131256104, + 0.08787461370229721, + 0.06613542139530182, + -0.03817717730998993, + 0.018692469224333763, + 0.006117942277342081, + -0.08005499094724655, + -0.06873909384012222, + 0.024854285642504692, + 0.05168205499649048, + -0.053943321108818054, + 0.004907270427793264, + -0.05625968426465988, + -0.02030002884566784, + 0.08094193786382675, + -0.02242952212691307, + -0.029058147221803665, + 0.012179034762084484, + 0.016881044954061508, + -0.0202363058924675, + -0.0040544625371694565, + 0.009284217841923237, + 0.0022300733253359795, + -0.009342404082417488, + -0.031486351042985916, + -0.0393502376973629, + 0.02197077125310898, + 0.014075834304094315, + -0.11670788377523422, + -0.034340355545282364, + 0.04796915873885155, + -0.05980407074093819, + 0.035357147455215454, + 0.0037880728486925364, + 0.010835496708750725, + 0.0016186326975002885, + 0.09051008522510529, + -0.0373760387301445, + -0.01114292535930872, + -0.005914841778576374, + 0.03399602323770523, + 0.004948799032717943, + 0.01725669763982296, + -0.038484398275613785, + -0.03352990746498108, + 0.09181167185306549, + -0.007589179556816816, + 0.07267986983060837, + -0.054297883063554764, + 0.020482247695326805, + 0.06578206270933151, + -0.030495041981339455, + -0.1299041509628296, + 0.012817972339689732, + -0.09670106321573257, + -0.0661906898021698, + 0.0944812223315239, + 0.06024293974041939, + -0.018520472571253777, + 0.12504537403583527, + -0.030710991472005844, + -0.00898659136146307, + 0.024417303502559662, + -0.020391197875142097, + 0.046227749437093735, + -0.024845633655786514, + -0.02320251800119877, + -0.08200126886367798, + -0.07486845552921295, + -0.017160572111606598, + -0.01914837583899498, + -0.005469360388815403, + -0.017491839826107025, + -0.03929710388183594, + 0.021310828626155853, + 0.00728614954277873, + -0.0319553017616272, + -0.040776576846838, + -0.0640963762998581, + -0.04368774965405464, + -0.004976783413439989, + -0.11138805747032166, + -0.06650948524475098, + -1.4522936075756772e-33, + -0.09310680627822876, + 0.06791224330663681, + -0.03190985321998596, + 0.017997518181800842, + -0.08815081417560577, + 0.053411003202199936, + 0.03686492145061493, + 0.0010002017952501774, + 0.009248988702893257, + -0.06465340405702591, + -0.016330718994140625, + 0.016901889815926552, + 0.02594049461185932, + -0.06339363008737564, + 0.009914609603583813, + 0.056092269718647, + 0.0020651621744036674, + -0.03720725700259209, + -0.08265221118927002, + 0.06163038685917854, + -0.010744077153503895, + 0.03463153541088104, + -0.10019945353269577, + 0.047599028795957565, + 0.005574275739490986, + -0.0002740252821240574, + 0.0019019845640286803, + 0.011240707710385323, + 0.017410021275281906, + -0.00375807611271739, + 0.022309254854917526, + -0.06486181169748306, + 0.013611855916678905, + 0.03779619559645653, + -0.07436975091695786, + 0.0011277961311861873, + 0.08769211173057556, + -0.002341910731047392, + -0.049919404089450836, + -0.0005948013858869672, + -0.02468482218682766, + -0.06212068349123001, + 0.11171221733093262, + 0.04419804364442825, + 0.012616711668670177, + 0.01614505797624588, + 0.006199817173182964, + -0.027644235640764236, + -0.0035701345186680555, + 0.044529542326927185, + 0.051212478429079056, + -0.0373527854681015, + 0.022357961162924767, + 0.022397160530090332, + -0.016868306323885918, + 0.003637112909927964, + -0.08247702568769455, + 0.018870022147893906, + -0.03370717540383339, + 0.03488985449075699, + 0.011252102442085743, + 0.021823886781930923, + 0.044615618884563446, + 0.049191590398550034, + -0.07009562849998474, + -0.07140585780143738, + -0.04280366748571396, + -0.029120219871401787, + -0.0152672678232193, + -0.023449480533599854, + 0.03067200817167759, + 0.047664400190114975, + -0.01632910780608654, + -0.031189225614070892, + -0.10530552268028259, + -0.10183928161859512, + 0.04714927077293396, + 0.04668910801410675, + 0.005076927598565817, + 0.08934130519628525, + 0.05234875530004501, + 0.04479430615901947, + -0.012608190067112446, + -0.049288131296634674, + -0.10657653212547302, + 0.05983024835586548, + 0.10126414895057678, + 0.045638635754585266, + 0.05277395620942116, + -0.04889469966292381, + -0.12293333560228348, + 0.06293822079896927, + -0.07128694653511047, + -0.0057070073671638966, + 0.016299255192279816, + -2.6492799065636063e-08, + -0.015180007554590702, + -0.051842667162418365, + -0.07426401972770691, + -0.02692132443189621, + -0.0087545495480299, + -0.03773431479930878, + -0.023671751841902733, + -0.03622899577021599, + -0.08911474049091339, + -0.009888777509331703, + 0.07779380679130554, + 0.03329765051603317, + -0.08604009449481964, + -0.02377297729253769, + 0.059256020933389664, + 0.014258199371397495, + 0.04463472217321396, + -0.004151848144829273, + -0.02227073721587658, + -0.030754953622817993, + 0.019338423386216164, + 0.09074302762746811, + 0.05460591986775398, + -0.014537569135427475, + -0.00028731743805110455, + 0.03181096166372299, + -0.08476679772138596, + 0.02240210399031639, + 0.04605806991457939, + 0.03761801868677139, + 0.1164981797337532, + 0.03435583785176277, + 0.04033934324979782, + -0.04693751409649849, + -0.048608895391225815, + 0.06511969119310379, + -0.00906169880181551, + 0.08736508339643478, + 0.021197006106376648, + 0.1347133070230484, + -0.02169475145637989, + -0.04158181697130203, + 0.01426092628389597, + 0.029650583863258362, + 0.03976314887404442, + -0.029968688264489174, + 0.013794061727821827, + -0.04723571613430977, + -0.03648659214377403, + -0.12954548001289368, + 0.03196178004145622, + 0.0800081416964531, + -0.03111422061920166, + 0.01679428666830063, + -0.018202422186732292, + -0.008350729942321777, + -0.05590272694826126, + 0.07569704949855804, + -0.05753671005368233, + 0.05202862620353699, + 0.11116380244493484, + 0.009812839329242706, + 0.0177659559994936, + 0.04764056205749512 + ], + "timer-bold||clock,alarm,schedule,events,stopwatch,sports": [ + 0.027824729681015015, + -0.019521668553352356, + -0.03406548872590065, + -0.012454993091523647, + 0.05954120680689812, + 0.09914707392454147, + 0.10221410542726517, + -0.012561343610286713, + 0.03851500153541565, + -0.003241100115701556, + -0.011795099824666977, + -0.0344056561589241, + -0.001371809164993465, + -0.003200061386451125, + 0.0002012004842981696, + -0.03148142248392105, + 0.023650841787457466, + 0.011471929028630257, + 0.015218034386634827, + -0.05340007320046425, + 0.09729816019535065, + 0.0022094491869211197, + 0.05227020010352135, + 0.09115921705961227, + -0.028223976492881775, + 0.021371589973568916, + 0.026130380108952522, + 0.0235519390553236, + -0.007825545035302639, + -0.04089267551898956, + -0.05696595460176468, + -0.0595630444586277, + 0.07998446375131607, + 0.010171445086598396, + -0.004698823671787977, + 0.009598501957952976, + 0.026267336681485176, + 0.02742839977145195, + -0.027246953919529915, + 0.029188629239797592, + 0.03998621925711632, + -0.10058455914258957, + 0.030160803347826004, + 0.04261644929647446, + 0.017008045688271523, + 0.03843950852751732, + -0.05076705664396286, + -0.05049030855298042, + -0.057203687727451324, + 0.06506463140249252, + 0.026117289438843727, + -0.02450006827712059, + -0.03550245240330696, + -0.019695524126291275, + 0.14972031116485596, + 0.07904220372438431, + -0.05672978609800339, + 0.015647318214178085, + 0.044273700565099716, + 0.005624104291200638, + 0.0005307999672368169, + 0.008236522786319256, + -0.0723622515797615, + 0.044533293694257736, + -0.04084660857915878, + 0.04323223978281021, + -0.0544486902654171, + 0.05287209525704384, + 0.0625884011387825, + -0.025395801290869713, + -0.033351197838783264, + 0.018651500344276428, + 0.038583461195230484, + 0.03069285675883293, + -0.03982844203710556, + 0.013600087724626064, + 0.01027075108140707, + -0.024509303271770477, + -0.038592517375946045, + -0.04469035938382149, + -0.12428528815507889, + -0.10650547593832016, + 0.017267070710659027, + 0.012630144134163857, + 0.1002519354224205, + -0.01841016486287117, + 0.007809517439454794, + 0.01928374171257019, + -0.03865398094058037, + -0.034323371946811676, + -0.08236190676689148, + -0.036528654396533966, + 0.05006268247961998, + 0.012270449660718441, + -0.07001649588346481, + 0.07838927209377289, + -0.0150388702750206, + 0.011154224164783955, + -0.0019891993142664433, + 0.03767375275492668, + 0.019507907330989838, + -0.040050625801086426, + -0.04671391844749451, + 0.062389109283685684, + -0.05294456705451012, + -0.05273981764912605, + -0.07114597409963608, + -0.0026019569486379623, + -0.02318696491420269, + 0.02789430506527424, + 0.004737887065857649, + -0.028615890070796013, + -0.01592009887099266, + -0.09514367580413818, + 0.06866424530744553, + 0.03906808793544769, + -0.06314270943403244, + -0.0015577779849991202, + 0.16593815386295319, + 0.09760080277919769, + 0.04093261435627937, + 0.009506930597126484, + -0.04163876920938492, + -0.0648282989859581, + -0.020292451605200768, + 0.09749782085418701, + 0.03733209893107414, + -2.1564583455789024e-33, + 0.027904445305466652, + -0.00034862844040617347, + -0.05254412442445755, + 0.06787998229265213, + 0.04681392386555672, + 0.03913411498069763, + -0.056700922548770905, + -0.007248950656503439, + 0.014041529968380928, + 0.03065035492181778, + 0.07151012122631073, + 0.06077800318598747, + -0.0368245467543602, + 0.028972743079066277, + 0.09164795279502869, + -0.040825504809617996, + 0.0463249608874321, + 0.015863170847296715, + -0.007956823334097862, + -0.058654606342315674, + -0.06329826265573502, + 0.025547664612531662, + -0.03772326186299324, + 0.013571340590715408, + 0.013232571072876453, + 0.01671556942164898, + 0.0039054290391504765, + -0.0492108017206192, + -0.027155674993991852, + 0.03255569562315941, + 0.07568837702274323, + -0.05892406776547432, + -0.009385853074491024, + 0.01931603252887726, + 0.08322053402662277, + -0.028800765052437782, + -0.03977062925696373, + 0.0005186779308132827, + 0.00802883692085743, + -0.035499490797519684, + -0.0879645124077797, + -0.08460424095392227, + -0.07076669484376907, + -0.043896570801734924, + 0.05534769594669342, + 0.01629299856722355, + 0.007223535794764757, + 0.005887215957045555, + 0.036187682300806046, + 0.03398984670639038, + 0.033985432237386703, + 0.005234495736658573, + 0.043931640684604645, + -0.0933997631072998, + 0.03884419426321983, + 0.03888269513845444, + 0.03386019915342331, + 0.03954571485519409, + -0.01278435718268156, + 0.053283773362636566, + 0.0016343382885679603, + 0.06019359081983566, + 0.07586447894573212, + -0.05941333994269371, + -0.01712889038026333, + 0.07938869297504425, + -0.008362841792404652, + -0.007834956981241703, + 0.07463523745536804, + 0.01696942001581192, + -0.0026564726140350103, + 0.052282094955444336, + 0.07825367897748947, + 0.03318595141172409, + -0.04183266684412956, + 0.08363635838031769, + 0.06263647973537445, + -0.020953616127371788, + -0.08410685509443283, + -0.01595207490026951, + -0.015563344582915306, + -0.02598058618605137, + -0.03580426424741745, + 0.06455463916063309, + 0.030625002458691597, + -0.03468581289052963, + 0.010955504141747952, + -0.07485399395227432, + -0.017096880823373795, + -0.011242040432989597, + -0.06197782978415489, + -0.02167770266532898, + -0.0048853568732738495, + -0.007343166042119265, + -0.18335454165935516, + -4.820218818834929e-34, + 0.06839370727539062, + -0.03716277331113815, + -0.028507517650723457, + -0.0440298467874527, + 0.021095499396324158, + -0.024755587801337242, + -0.0002352175652049482, + 0.010905873030424118, + 0.02216763235628605, + 0.06530681252479553, + 0.06786280870437622, + -0.011040152981877327, + -0.05395185202360153, + -0.050834350287914276, + -0.08660585433244705, + -0.016056841239333153, + 0.04083305224776268, + 0.04342372342944145, + -0.01142177451401949, + -0.010155171155929565, + -0.01664286106824875, + -0.003559839678928256, + -0.12373571842908859, + -0.0201357901096344, + 0.011848339810967445, + 0.04032744839787483, + -0.018855169415473938, + -0.001217025681398809, + -0.022123446688055992, + -0.0030959893483668566, + -0.042881108820438385, + -0.04708980768918991, + 0.10982362926006317, + 0.0254051610827446, + -0.055944036692380905, + 0.01625717803835869, + 0.061029233038425446, + -0.04783228412270546, + -0.05503205582499504, + -0.03061404451727867, + 0.06783661246299744, + -0.003101552138105035, + 0.06317383795976639, + -0.000312251562718302, + -0.08649904280900955, + 0.0672735944390297, + -0.08487880975008011, + -0.01026824302971363, + -0.05719057470560074, + 0.07372703403234482, + -0.007787544745951891, + -0.11349570006132126, + -0.031984202563762665, + 0.02967812493443489, + -0.06580115854740143, + -0.03367899730801582, + -0.005830153822898865, + -0.054251015186309814, + -0.020182713866233826, + 0.03495892137289047, + -0.005451289005577564, + -0.02200164645910263, + -0.044072896242141724, + 0.07489319145679474, + 0.048363231122493744, + -0.03875752165913582, + -0.023580901324748993, + -0.038321103900671005, + -0.057693641632795334, + -0.07608046382665634, + 0.02352987974882126, + -0.012523083947598934, + -0.03657831996679306, + -0.03604644909501076, + -0.11828090995550156, + -0.01365936640650034, + -0.0004021056811325252, + 0.06285125762224197, + -0.08586934208869934, + 0.017762714996933937, + -0.04274282976984978, + -0.048510972410440445, + -0.0005462486878968775, + 0.030899778008461, + -0.05383295938372612, + 0.0697912648320198, + 0.023442920297384262, + 0.05442459136247635, + 0.04513753205537796, + 0.010302719660103321, + -0.045845307409763336, + 0.10018810629844666, + -0.005278567783534527, + 0.09090234339237213, + -0.028292512521147728, + -2.125016251852685e-08, + -0.026921533048152924, + 0.01650388538837433, + 0.008823762647807598, + -0.06378113478422165, + 0.018835976719856262, + -0.046687912195920944, + -0.01908011920750141, + -0.06119836866855621, + -0.005814036820083857, + -0.0035323461052030325, + 0.04470168426632881, + 0.011615355499088764, + -0.053037919104099274, + -0.060544371604919434, + 0.06280253827571869, + -0.029170138761401176, + -0.04728323221206665, + 0.04957880824804306, + -0.024867089465260506, + -0.05440559610724449, + -0.009000485762953758, + 0.04614391550421715, + 0.021823851391673088, + -0.0749020129442215, + 0.019162671640515327, + 0.04179757088422775, + -0.07291239500045776, + 0.045930564403533936, + 0.09027640521526337, + 0.0907427966594696, + 0.05012135207653046, + 0.07124033570289612, + -0.0101414630189538, + -0.02339114248752594, + -0.09906186163425446, + -0.04287441074848175, + -0.07613443583250046, + -0.03175955265760422, + 0.021634500473737717, + 0.09704248607158661, + 0.04449506849050522, + -0.12384191900491714, + -0.1311981976032257, + 0.06254178285598755, + 0.016575440764427185, + -0.04296591505408287, + 0.02151055634021759, + -0.11076319962739944, + -0.06434639543294907, + -0.0857713520526886, + -0.06724044680595398, + 0.0232507586479187, + 0.04015045985579491, + 0.011305728927254677, + 0.014488065615296364, + 0.05820615962147713, + 0.05403793230652809, + -0.04006987437605858, + -0.03636768087744713, + -0.019133921712636948, + 0.07958301901817322, + 0.06669770181179047, + -0.012185739353299141, + 0.015259169973433018 + ], + "tip-jar-bold||*new*,give,deposit,donation,savings,money": [ + -0.03415081277489662, + 0.02044038660824299, + -0.0019352940144017339, + -0.0026120285037904978, + 0.03780745342373848, + 0.013154185377061367, + 0.16804923117160797, + -0.0015832368517294526, + 0.008403617888689041, + -0.006438210606575012, + 0.11654934287071228, + -0.039955705404281616, + -0.019887560978531837, + -0.0564708486199379, + -0.0013495467137545347, + 0.0009894662071019411, + -0.013029052875936031, + 0.0287958811968565, + -0.022129982709884644, + -0.02351408824324608, + 0.07479090988636017, + -0.007869723252952099, + 0.0425247997045517, + 0.018978489562869072, + 0.10542725026607513, + 0.03771400824189186, + 0.00014063897833693773, + -0.024671589955687523, + -0.013095762580633163, + -0.0723622590303421, + -0.0066352966241538525, + 0.059393007308244705, + 0.0032958961091935635, + -0.08497903496026993, + 0.10144317150115967, + 0.0734100192785263, + -0.038325998932123184, + 0.03747372329235077, + 0.04188934341073036, + 0.031069550663232803, + -0.05693209171295166, + -0.1026984378695488, + -0.022642580792307854, + 0.03519492596387863, + -0.0765560045838356, + -0.05716109648346901, + 0.020952751860022545, + 0.07134061306715012, + 0.04952537268400192, + 0.08277972042560577, + 0.004287162330001593, + -0.08099017292261124, + -0.06313081830739975, + -0.03125198185443878, + 0.046351347118616104, + -0.006055113393813372, + 0.07125889509916306, + -0.014628120698034763, + -0.013994093984365463, + -0.04052368178963661, + 0.07177487760782242, + -0.014442820101976395, + 0.033403195440769196, + 0.023164566606283188, + 0.0677470713853836, + -0.05634651333093643, + -0.05030941590666771, + 0.02990611270070076, + -0.03844178467988968, + -0.007649802137166262, + -0.00105436856392771, + -0.0038198630791157484, + -0.015962034463882446, + -0.035983286798000336, + -0.016842961311340332, + -0.0007440790650434792, + 0.004255983047187328, + 0.06773602217435837, + -0.03551649674773216, + -0.006663354579359293, + -0.07154467701911926, + -0.024561818689107895, + 0.011520949192345142, + -0.028949793428182602, + -0.031984541565179825, + 0.07976707071065903, + -0.00374193605966866, + -0.028897760435938835, + 0.03702767193317413, + -0.020014341920614243, + -0.08606839925050735, + 0.020567307248711586, + -0.0186766367405653, + -0.045828159898519516, + -0.09563548862934113, + 0.026018833741545677, + -0.011926427483558655, + -0.013502666726708412, + -0.0617949478328228, + 0.09946537762880325, + 0.1006925031542778, + 0.06936530023813248, + 0.029665842652320862, + -0.009005365893244743, + 0.06654765456914902, + 0.009009283035993576, + -0.042383577674627304, + -0.06265244632959366, + 0.03495705500245094, + -0.034885305911302567, + -0.02063761092722416, + -0.0016098429914563894, + 0.018693458288908005, + -0.026594657450914383, + -0.038685865700244904, + -0.03395232930779457, + -0.06815016269683838, + -0.05591416358947754, + 0.07720397412776947, + 0.03325934708118439, + 0.13334441184997559, + -0.014089823700487614, + -0.0677783340215683, + -0.08021724224090576, + -0.11462408304214478, + 0.027150388807058334, + -0.014773054979741573, + -3.677821705321493e-33, + 0.004957298748195171, + 0.09846039116382599, + 0.004866704810410738, + 0.09794200956821442, + -0.023001736029982567, + -0.015090173110365868, + -0.05844637751579285, + 0.02144480310380459, + -0.14987048506736755, + -0.007315344177186489, + -0.006883698049932718, + -0.01733250916004181, + 0.0036642856430262327, + 0.07555340975522995, + -0.03575822710990906, + -0.05919443443417549, + 0.03162959963083267, + 0.00023599312407895923, + 0.07393753528594971, + -0.03846395015716553, + 0.022153755649924278, + 0.05552540346980095, + -0.010413138195872307, + -0.01976681873202324, + 0.0467989556491375, + -0.01918206177651882, + 0.015165389515459538, + -0.04452062025666237, + 0.02702663093805313, + 0.039227377623319626, + 0.06587821245193481, + -0.00551353394985199, + 0.0576603002846241, + -0.042392998933792114, + -0.05945102870464325, + -0.047660138458013535, + -0.02444387599825859, + -0.05245519429445267, + 0.030938267707824707, + -0.07315059751272202, + -0.060937199741601944, + -0.006356718484312296, + 0.01583908125758171, + 0.08563519269227982, + -0.016314750537276268, + 0.07181887328624725, + -0.03348546847701073, + -0.01215964276343584, + -0.007149483077228069, + 0.05756402015686035, + -0.024306438863277435, + -0.027385162189602852, + 0.014279707334935665, + 0.048685044050216675, + -0.021174971014261246, + -0.049394652247428894, + -0.03963562473654747, + 0.052551835775375366, + -0.049492351710796356, + -0.07285119593143463, + 0.059789471328258514, + 0.036120668053627014, + -0.049544207751750946, + 0.01703079231083393, + -0.06161201000213623, + 0.02090228535234928, + -0.017829492688179016, + 0.03404230624437332, + 0.07210389524698257, + 0.05461564287543297, + -0.0827789157629013, + 0.11105220019817352, + -0.011788883246481419, + 0.1262383908033371, + -0.004394278395920992, + -0.08049756288528442, + 0.02815612219274044, + -0.025525616481900215, + 0.04935447871685028, + -0.0882456973195076, + -0.04644196853041649, + -0.053429607301950455, + -0.013857576996088028, + 0.04043000563979149, + 0.023598307743668556, + 0.02175372838973999, + 0.0056655434891581535, + -0.12070037424564362, + 2.301119275216479e-05, + -0.005074724555015564, + -0.06687603890895844, + 0.031288992613554, + -0.03267093747854233, + -0.07637625187635422, + -0.0950254425406456, + 1.297593775561664e-33, + 0.04710053279995918, + -0.017021173611283302, + -0.03308853879570961, + 0.059385620057582855, + -0.050000712275505066, + 0.03692246228456497, + 0.01331961341202259, + -0.039682358503341675, + 0.06211955100297928, + 0.028483621776103973, + -0.11524929106235504, + 0.01023409329354763, + 0.02244720049202442, + 0.01648348942399025, + 0.05188213661313057, + -0.021571379154920578, + -0.017650149762630463, + -0.014883564785122871, + 0.010668774135410786, + 0.02470388635993004, + -0.03847154974937439, + 0.011493057012557983, + -0.011809812858700752, + 0.02450248971581459, + -0.0436539351940155, + -0.026551594957709312, + 0.007770204450935125, + 0.011641011573374271, + -0.0823751837015152, + 0.005738536827266216, + 0.01609923131763935, + -0.0175214521586895, + -0.030442310497164726, + 0.013377323746681213, + -0.06974226236343384, + -0.04329577833414078, + 0.0726059228181839, + -0.08583759516477585, + 0.00015061869635246694, + 0.08528844267129898, + 0.04497121274471283, + -0.05107054486870766, + 0.01328964065760374, + 0.017736129462718964, + -0.03398384153842926, + -0.07117567956447601, + -0.07932954281568527, + 0.01577501744031906, + 0.01661830022931099, + 0.01920904964208603, + 0.014841052703559399, + -0.10836262255907059, + -0.04396182298660278, + 0.011123934760689735, + -0.04724967107176781, + 0.07560545951128006, + 0.04407205432653427, + -0.05445355176925659, + 0.016618575900793076, + 0.04785401374101639, + -0.02879267744719982, + -0.001430230331607163, + -0.013390552252531052, + 0.10863640159368515, + 0.04184689372777939, + -0.11397736519575119, + 0.04038633033633232, + 0.014215328730642796, + -0.026290278881788254, + -0.013744913041591644, + 0.10130628198385239, + 0.067156121134758, + -0.022725537419319153, + -0.023947792127728462, + 0.031298112124204636, + 0.059689365327358246, + 0.03645273298025131, + -0.05415796488523483, + -0.029409261420369148, + -0.04991879686713219, + -0.03239508345723152, + 0.006099185906350613, + 0.0031969333067536354, + -0.010714818723499775, + 0.07048238813877106, + -0.004595776554197073, + 0.04636885225772858, + -0.004914392251521349, + -0.07888127118349075, + -0.007056774105876684, + -0.07349039614200592, + 0.019001726061105728, + 0.03140828385949135, + 0.05702054128050804, + -0.030148688703775406, + -2.1518451021051987e-08, + -0.022323623299598694, + 0.06448037177324295, + -0.026039455085992813, + -0.024229494854807854, + 0.04886815696954727, + -0.02165074460208416, + -0.024587299674749374, + -0.02213875763118267, + -0.008342815563082695, + -0.05057619512081146, + 0.04021032527089119, + 0.08521993458271027, + -0.0776340588927269, + 0.0035200605634599924, + 0.03249073028564453, + 0.03746245801448822, + -0.018287785351276398, + 0.019599786028265953, + -0.06727767735719681, + -0.043619535863399506, + 0.027217445895075798, + 0.08974730223417282, + 0.018475575372576714, + -0.03800152987241745, + -0.037468843162059784, + 0.03044930472970009, + 0.08444030582904816, + 0.1422378569841385, + 0.07761204987764359, + -0.0172371007502079, + 0.029820315539836884, + 0.042838796973228455, + -0.036769624799489975, + -0.0007200449472293258, + -0.10121608525514603, + 0.04439772665500641, + -0.04366518557071686, + 0.052363596856594086, + 0.04468703642487526, + 0.14991262555122375, + -0.034005168825387955, + 0.010116787627339363, + -0.09671694040298462, + -0.03720680624246597, + -0.06956254690885544, + 0.008363093249499798, + -0.003335908753797412, + -0.0011756063904613256, + -0.05227445065975189, + -0.10953711718320847, + -0.03599877655506134, + 0.022364750504493713, + 0.057297587394714355, + 0.030820773914456367, + 0.004379625432193279, + 0.01932339370250702, + 0.01817210204899311, + 0.09868001192808151, + 0.041725099086761475, + -0.03958789259195328, + 0.08676926791667938, + -0.04679442197084427, + 0.02547461725771427, + -0.0203962791711092 + ], + "tipi-bold||teepee,lodge,tent,outdoors,camping,tarp": [ + 0.017387472093105316, + 0.05338210240006447, + -0.00562452943995595, + 0.02764328382909298, + 0.07012853771448135, + -0.049877166748046875, + 0.10722911357879639, + -0.038912951946258545, + -0.037863194942474365, + 0.02148415334522724, + 0.05129573121666908, + -0.058479852974414825, + -0.061207354068756104, + -0.006540404167026281, + 0.02989940345287323, + 0.012445492669939995, + 0.006912266835570335, + -0.023448524996638298, + 0.08935100585222244, + -0.029157988727092743, + 0.013333861716091633, + 0.054451555013656616, + 0.05528043583035469, + 0.02789219468832016, + 0.018857257440686226, + -0.024825716391205788, + -0.03651118278503418, + 0.0944313034415245, + 0.002948139328509569, + -0.07339026033878326, + -0.07048317790031433, + 0.14000213146209717, + -0.04013791307806969, + -0.053868938237428665, + 0.05249571427702904, + 0.11386656761169434, + 0.007329246494919062, + -0.023775989189743996, + 0.0711132287979126, + 0.02946886420249939, + 0.05151158571243286, + -0.05263948813080788, + -0.02195342257618904, + -0.05432922765612602, + -0.030464857816696167, + 0.0060547394677996635, + -0.05794740095734596, + 0.07261425256729126, + 0.022960351780056953, + 0.016928929835557938, + 0.06785406172275543, + -0.00587554182857275, + -0.04425956681370735, + 0.06203197315335274, + 0.009962555021047592, + -0.08503109216690063, + -0.048320479691028595, + -0.05439985170960426, + 0.038254424929618835, + -0.0290701761841774, + 0.01938493363559246, + 0.026978956535458565, + 0.0018257423071190715, + 0.008411306887865067, + 0.036040373146533966, + -0.05314677208662033, + -0.0794614925980568, + 0.024779364466667175, + 0.02015288546681404, + -0.024619249626994133, + 0.0009504651534371078, + -0.008351334370672703, + -0.006111856084316969, + -0.058822326362133026, + -0.09065651148557663, + -0.007087372709065676, + 0.01453547365963459, + 0.03230389580130577, + -0.09349940717220306, + -0.0400705523788929, + -0.13107170164585114, + 0.049819882959127426, + 0.1065160259604454, + 0.002680196426808834, + -0.08130215108394623, + 0.04845599830150604, + -0.016138248145580292, + -0.00716338399797678, + 0.02164614573121071, + -0.01545443944633007, + -0.0519644133746624, + 0.029593227431178093, + -0.07389458268880844, + 0.002479225629940629, + 0.0018423739820718765, + 0.0072913519106805325, + 0.048561785370111465, + -0.04501749202609062, + -0.07295628637075424, + 0.07295555621385574, + 0.036534231156110764, + -0.03449961915612221, + 0.003919048700481653, + -0.06897391378879547, + 0.011830396018922329, + -0.007081753574311733, + 0.005376274231821299, + -0.08624933660030365, + 0.034828003495931625, + -0.037193410098552704, + -0.024761809036135674, + -0.019269909709692, + 0.041174404323101044, + -0.04569246992468834, + -0.046354494988918304, + -0.06086992844939232, + -0.05552880838513374, + -0.01002446934580803, + 0.08803871273994446, + 0.07040227949619293, + 0.030973028391599655, + 0.01692323386669159, + 0.06349708139896393, + 0.011728492565453053, + -0.04947785288095474, + -0.01846185140311718, + 0.05066870525479317, + -1.3397878697779415e-33, + 0.02594422549009323, + 0.08807237446308136, + -0.06813453882932663, + 0.07046450674533844, + 0.11002058535814285, + -0.02592412196099758, + -0.06669903546571732, + -0.05947774276137352, + -0.10415707528591156, + 0.05342317745089531, + -0.0033901408314704895, + -0.02143631875514984, + -0.0418865941464901, + 0.05401547625660896, + 0.08547450602054596, + -0.05877850204706192, + 0.005324769765138626, + -0.017726575955748558, + -0.018727820366621017, + -0.09373810887336731, + -0.06202193349599838, + 0.027151409536600113, + 0.008451361209154129, + -0.04049060121178627, + 0.009098021313548088, + -0.0020778761245310307, + 0.06837055832147598, + -0.0009252920281141996, + -0.03487589582800865, + 0.015234015882015228, + 0.11989399790763855, + -0.00617377320304513, + 0.06111351400613785, + -0.023162491619586945, + 0.023560578003525734, + 0.026625100523233414, + 0.019685523584485054, + -0.063383087515831, + -0.11224692314863205, + -0.003397466614842415, + -0.05816958099603653, + 0.009049415588378906, + 0.0050706104375422, + 0.03578629344701767, + -0.01842058263719082, + 0.050671130418777466, + 0.016332240775227547, + -0.02858361415565014, + -0.030527547001838684, + -0.03748276084661484, + -0.06785346567630768, + 0.04475407302379608, + 0.023729724809527397, + -0.0316222608089447, + -0.015692036598920822, + -0.034336041659116745, + 0.03736024349927902, + 0.006113450042903423, + 0.03113560564815998, + 0.01984623447060585, + 0.027254436165094376, + 0.01029258407652378, + -0.0599488765001297, + -0.08284155279397964, + -0.0669531375169754, + -0.00816118810325861, + -0.002442876109853387, + 0.02219940908253193, + 0.10625514388084412, + -0.05953121930360794, + -0.055823445320129395, + 0.09883269667625427, + 0.08594982326030731, + 0.07969500124454498, + 0.01756904274225235, + 0.023339342325925827, + 0.03670273348689079, + 0.0167003832757473, + 0.09098917245864868, + -0.06309259682893753, + -0.07741127908229828, + 0.013538815081119537, + -0.05984151363372803, + 0.062151987105607986, + 0.036912910640239716, + -0.08710235357284546, + 0.025195319205522537, + -0.08011581748723984, + -0.03947316110134125, + 0.02999432012438774, + -0.07293664664030075, + 0.0824027955532074, + 0.013902653940021992, + -0.13770990073680878, + -0.06692285090684891, + -8.131547375015446e-34, + 0.030799685046076775, + -0.013773424550890923, + -0.04253662750124931, + -0.03940177336335182, + -0.0023299797903746367, + 0.03269163891673088, + -0.037740834057331085, + -0.08402715623378754, + 0.04454923793673515, + -0.004817571956664324, + -0.05910201743245125, + 0.016959382221102715, + 0.01955481618642807, + 0.009921020828187466, + 0.03962726891040802, + 0.03782103210687637, + -0.006490386091172695, + 0.06207755580544472, + -0.00037594710011035204, + -0.031782232224941254, + -0.041213858872652054, + -0.02141169272363186, + -0.0696900486946106, + 0.02916784957051277, + -0.057956695556640625, + 0.03891132026910782, + -0.020659612491726875, + 0.022067219018936157, + -0.08869270235300064, + -0.03992948308587074, + 0.00012292005703784525, + -0.05270702391862869, + -0.0051497844979166985, + 0.06300712376832962, + -0.0514785498380661, + 0.024018151685595512, + 0.06434094905853271, + -0.024842621758580208, + -0.021425828337669373, + 0.00779063580557704, + 0.08958901464939117, + -0.07407569885253906, + 0.015218488872051239, + 0.005103728733956814, + -0.06335455179214478, + -0.07650365680456161, + -0.1028672605752945, + -0.020370427519083023, + -0.08208825439214706, + 0.05387989059090614, + 0.05828540399670601, + -0.04477747529745102, + -0.04130774736404419, + -0.06442419439554214, + -0.002983690705150366, + -0.05944375321269035, + -0.010257811285555363, + -0.018916241824626923, + -0.0877976045012474, + 0.05433812737464905, + 0.09424052387475967, + 0.03653038665652275, + 0.020525408908724785, + 0.13535834848880768, + 0.06486893445253372, + -0.02279016189277172, + -0.037157222628593445, + -0.04526668041944504, + -0.000849140458740294, + 0.06031561642885208, + 0.0004152082547079772, + -0.0010165637359023094, + -0.0003790615010075271, + 0.007719337474554777, + 0.030308019369840622, + -0.02394743263721466, + 0.07697730511426926, + 0.002166102174669504, + 0.07447360455989838, + -0.037172138690948486, + -0.03654322028160095, + -0.037806324660778046, + -0.07804374396800995, + 0.05407560244202614, + 0.0653139129281044, + 0.025598004460334778, + 0.062256041914224625, + 0.02237987332046032, + 0.01538137812167406, + 0.02594621479511261, + 0.028496626764535904, + 0.042451925575733185, + -0.01710413582623005, + 0.059107884764671326, + 0.022261077538132668, + -1.9535814743676383e-08, + -0.014833438210189342, + 0.05607770010828972, + -0.05763081833720207, + -0.004651355091482401, + 0.006325365975499153, + -0.03866971656680107, + 0.04436285421252251, + -0.06691685318946838, + -0.008516750298440456, + -0.017130617052316666, + 0.01931804232299328, + 0.043606601655483246, + 0.007657030131667852, + -0.0433163158595562, + 0.06403970718383789, + -0.0051764328964054585, + -0.04831564053893089, + 0.053962528705596924, + -0.05161062255501747, + -0.04558371752500534, + 0.009758898057043552, + 0.0887632742524147, + 0.002824413822963834, + -0.021477533504366875, + -0.010670199058949947, + -0.009092393331229687, + 0.018864072859287262, + 0.051336415112018585, + 0.06832517683506012, + 0.07705524563789368, + 0.0554460734128952, + 0.09211762249469757, + -0.03983690217137337, + -0.013696073554456234, + -0.07784545421600342, + 0.04137080907821655, + -0.06939315050840378, + 0.010980512946844101, + 0.017871754243969917, + 0.13501833379268646, + -0.024377653375267982, + -0.038357753306627274, + -0.04504369571805, + -0.0806947872042656, + -0.037422239780426025, + 0.029028447344899178, + 0.014505485072731972, + 0.017337266355752945, + -0.08806721121072769, + -0.10923048108816147, + -0.035917602479457855, + 0.04155278950929642, + 0.07128015905618668, + 0.10603511333465576, + -0.009766542352735996, + -0.018767237663269043, + 0.020094316452741623, + 0.054947566241025925, + 0.042398471385240555, + -0.04228290915489197, + 0.044503454118967056, + -0.03889554366469383, + -0.03930240496993065, + 0.0016789407236501575 + ], + "tire-bold||*new*,wheel,vehicles,transportation": [ + -0.009652791544795036, + -0.05433571711182594, + -0.025108767673373222, + 0.03620419278740883, + 0.040862053632736206, + -0.06076320260763168, + 0.036689016968011856, + -0.01193023007363081, + -0.02885049395263195, + -0.01830432005226612, + 0.061866626143455505, + 0.09362033009529114, + 0.03622842952609062, + -0.0005233351839706302, + -0.04749268665909767, + 0.0720355361700058, + 0.01744023524224758, + 0.036661598831415176, + -0.045449480414390564, + -0.014250099658966064, + 0.014752380549907684, + 0.04429145157337189, + 0.008872699923813343, + 0.057004742324352264, + 0.0033897042740136385, + 0.04095882177352905, + 0.059651073068380356, + 0.045720621943473816, + 0.015914998948574066, + -0.022472374141216278, + -0.0688714012503624, + 0.08344347774982452, + 0.07305454462766647, + -0.000432379572885111, + 0.062008824199438095, + -0.026953142136335373, + -0.022000590339303017, + -0.00539523595944047, + 0.03305882215499878, + -0.017245298251509666, + 0.020294487476348877, + -0.10307328402996063, + -0.032055627554655075, + 0.04314239323139191, + -0.010405398905277252, + -0.044798437505960464, + 0.032861098647117615, + 0.004226432181894779, + 0.043689679354429245, + 0.03306952491402626, + 0.024298198521137238, + -0.07878044992685318, + -0.07667328417301178, + -0.047825612127780914, + -0.013545721769332886, + -0.002344887237995863, + -0.1201690286397934, + 0.026705516502261162, + 0.00773243373259902, + -0.07399415969848633, + 0.11304235458374023, + -0.027635060250759125, + 0.06539051234722137, + 0.053109459578990936, + -0.0050345975905656815, + -0.014386561699211597, + 0.027472978457808495, + -0.04847142845392227, + -0.03392796218395233, + 0.024815691635012627, + 0.03617175295948982, + 0.0407891646027565, + -0.009388820268213749, + -0.0007049389532767236, + -0.017370451241731644, + -0.07652994990348816, + 0.07178611308336258, + 0.018439235165715218, + -0.05702666938304901, + -0.0522565096616745, + -0.04671850427985191, + -0.03944271802902222, + 0.06117597222328186, + -0.061320193111896515, + 0.002366812899708748, + -0.0037484217900782824, + -0.06041679531335831, + 0.005913381464779377, + -0.02630104310810566, + -0.030422136187553406, + -0.11151453107595444, + -0.04524420574307442, + -0.04526351019740105, + 0.019464263692498207, + -0.08945559710264206, + 0.06521112471818924, + 0.014494365081191063, + -0.024218427017331123, + -0.002009536838158965, + 0.09390540421009064, + 0.05013177543878555, + 0.034650590270757675, + 0.05039326474070549, + 0.07159639149904251, + -0.07750768959522247, + 0.06166581064462662, + -0.020826861262321472, + -0.01203323993831873, + -0.05607111379504204, + 0.08990781754255295, + 0.03332152217626572, + -0.02678695134818554, + -0.026848377659916878, + -0.04536101222038269, + -0.1207391619682312, + -0.05117058381438255, + -0.09521550685167313, + 0.05264303460717201, + 0.0898330807685852, + 0.13825924694538116, + -0.002070202026516199, + -0.02905266359448433, + -0.008526107296347618, + -0.0005671280086971819, + -0.020236674696207047, + -0.029186533764004707, + -0.018565185368061066, + -4.4163238271736876e-33, + -0.09772065281867981, + 0.07606932520866394, + 0.03076043538749218, + 0.10994698852300644, + -0.04029618203639984, + -0.017721151933073997, + -0.0389435850083828, + -0.0469045490026474, + 0.004710611421614885, + 0.02490534633398056, + 0.0024209339171648026, + 0.07095713168382645, + -0.0004370602546259761, + -0.016724130138754845, + 0.06338882446289062, + -0.051433760672807693, + -0.03267776966094971, + -0.040133826434612274, + -0.060478754341602325, + -0.010851221159100533, + -0.10305824875831604, + 0.07815977931022644, + 0.022458523511886597, + -0.045042943209409714, + 0.009765543043613434, + -0.06653457880020142, + 0.0415288470685482, + -0.03920406103134155, + 0.019993575289845467, + 0.034548550844192505, + -0.005586252547800541, + 0.06910775601863861, + 0.06216035783290863, + 0.0751442015171051, + -0.032146189361810684, + 0.05667675659060478, + -0.11059044301509857, + -0.06791216135025024, + -0.04263235628604889, + 0.010871008038520813, + -0.01362690981477499, + -0.04593905061483383, + -0.05687984079122543, + 0.009600529447197914, + -0.013538828119635582, + 0.16113163530826569, + -0.006637844722718, + -0.018180090934038162, + -0.023034799844026566, + 0.021500838920474052, + -0.06026490405201912, + -0.009159036912024021, + -0.06997223198413849, + -0.00809455942362547, + -0.014849850907921791, + -0.047844551503658295, + 0.006820880342274904, + 0.016482964158058167, + -0.034147147089242935, + -0.004483701195567846, + -0.02950584888458252, + 0.0325881689786911, + 0.05012645944952965, + -0.005833104252815247, + -0.036434356123209, + -0.0009616109309718013, + -0.0479273796081543, + 0.03343850374221802, + 0.008657591417431831, + 0.019404571503400803, + -0.016409004107117653, + 0.06468087434768677, + -0.01074470579624176, + 0.12951858341693878, + 0.038320448249578476, + 0.003612125525251031, + -1.875396992545575e-05, + 0.02815527841448784, + 0.0065189749002456665, + -0.1045532077550888, + -0.12812119722366333, + -0.02884279564023018, + -0.08332807570695877, + 0.030576199293136597, + 0.010337539948523045, + 0.019132761284708977, + -0.04488735646009445, + -0.10372138023376465, + 0.04366816207766533, + 0.034976810216903687, + -0.12782639265060425, + 0.012394971214234829, + -0.08600280433893204, + -0.01927853375673294, + -0.06769579648971558, + -4.203374025643607e-34, + 0.0082852803170681, + 0.07654029130935669, + -0.001666176482103765, + 0.0070566232316195965, + -0.03618043661117554, + 0.020740600302815437, + 0.01432703249156475, + -0.026141313835978508, + -0.009318958036601543, + 0.01474585011601448, + -0.012899644672870636, + -0.017142403870821, + -0.019929174333810806, + -0.019156599417328835, + 0.048912014812231064, + -0.004332937300205231, + 0.02840433456003666, + 0.031678542494773865, + -0.023260490968823433, + 0.02519661746919155, + -0.07068558037281036, + 0.01762896403670311, + -0.1180451512336731, + 0.01415459718555212, + -0.026357080787420273, + 0.010740187019109726, + -0.019816236570477486, + -0.025775911286473274, + -0.07428710907697678, + 0.020183295011520386, + -0.06953050196170807, + -0.05871370807290077, + 0.07858498394489288, + 0.1402909755706787, + -0.059738852083683014, + 0.07276468724012375, + 0.018062682822346687, + -0.10408587753772736, + -0.0013288058107718825, + -0.005491538438946009, + 0.037644967436790466, + -0.06991589814424515, + 0.053924281150102615, + 0.05811277776956558, + -0.08442734181880951, + -0.06761191785335541, + -2.6239300495944917e-05, + -0.007110103033483028, + 0.004160500131547451, + -0.020372048020362854, + 0.09956196695566177, + 0.03053702414035797, + 0.01376059465110302, + 0.010891670361161232, + 0.007138974033296108, + 0.049756668508052826, + 0.000135111142299138, + 8.857353350322228e-06, + -0.026675665751099586, + 0.013063054531812668, + -0.0048482706770300865, + 0.06356298923492432, + -0.06560330837965012, + 0.024797698482871056, + 0.015546425245702267, + -0.14837408065795898, + -0.013410667888820171, + -0.07407674938440323, + 0.007905053906142712, + 0.027305465191602707, + -0.004459198564291, + 0.04731527343392372, + -0.0425432026386261, + 0.009312428534030914, + 0.006136138923466206, + -0.04752616956830025, + 0.07419402152299881, + -0.006421424448490143, + 0.031231114640831947, + -0.03851854056119919, + -0.04665668308734894, + -0.01696493849158287, + 0.009619992226362228, + 0.1210421621799469, + -0.01656454987823963, + 0.03306662663817406, + -0.015810752287507057, + -0.04433954879641533, + 0.06235275790095329, + 0.033696841448545456, + 0.04159658029675484, + 0.07792118191719055, + -0.08882436901330948, + 0.06341157853603363, + -0.06332912296056747, + -2.073818272663175e-08, + 0.005843987688422203, + 0.06914453953504562, + -0.12137983739376068, + -0.031130224466323853, + 0.05180298164486885, + -0.05558439716696739, + 0.004593376070261002, + -0.020974045619368553, + -0.11725812405347824, + 0.055542364716529846, + 0.004959917161613703, + 0.012361928820610046, + -0.017593825235962868, + 0.007734234444797039, + 0.019406892359256744, + 0.009107413701713085, + -0.0134985176846385, + 0.0414641797542572, + -0.045073263347148895, + -0.07865560799837112, + -0.03622141107916832, + 0.04431993141770363, + 0.015591627918183804, + 0.02401036024093628, + 0.009149017743766308, + -0.019382216036319733, + 0.012940753251314163, + -0.02798205427825451, + 0.07605525851249695, + 0.02961418591439724, + 0.02207186073064804, + 0.07220052182674408, + 0.007148462813347578, + -0.00611534109339118, + -0.07734834402799606, + -0.04304828494787216, + -0.028661493211984634, + 0.03839985281229019, + 0.03461281210184097, + 0.1098909005522728, + -0.02867238037288189, + 0.06531752645969391, + -0.019383162260055542, + -0.019248591735959053, + 0.004416424781084061, + 0.013308770954608917, + -0.05187385156750679, + -0.011617426760494709, + -0.0926533117890358, + -0.09207793325185776, + -0.012435296550393105, + -0.01731766387820244, + 0.0031134781893342733, + 0.12576337158679962, + 0.017169557511806488, + 0.001308412291109562, + -0.0057710143737494946, + 0.07201287895441055, + -0.01974835991859436, + 0.02647576667368412, + 0.05140914022922516, + -0.01145786140114069, + 0.06800582259893417, + -0.0260324627161026 + ], + "toggle-left-bold||switch,controls,settings,preferences": [ + -0.008951332420110703, + -0.06839164346456528, + -0.06539066880941391, + 0.16079288721084595, + 0.021789932623505592, + 0.055078644305467606, + 0.06814946979284286, + -0.021205127239227295, + -0.06521114706993103, + 0.07656831294298172, + -0.011679611168801785, + 0.01713535375893116, + 0.01634618267416954, + -0.062166325747966766, + 0.045913517475128174, + 0.08495067059993744, + -5.318381226970814e-05, + -0.020130135118961334, + 0.006207706406712532, + 0.03056304156780243, + -0.04303636774420738, + -0.06760566681623459, + -0.002037531929090619, + 0.01836036704480648, + 0.004368336871266365, + 0.007420412264764309, + 0.02269626222550869, + -0.024148792028427124, + -0.051711976528167725, + -0.06946060061454773, + -0.0419577918946743, + -0.0023176453541964293, + 0.02277985028922558, + -0.04000498354434967, + -0.02011168748140335, + 0.0016996989725157619, + -0.028289498761296272, + -0.054610516875982285, + 0.005739628337323666, + 0.010627788491547108, + -0.02690085582435131, + -0.05781830847263336, + 0.020020296797156334, + -0.0415009930729866, + -0.06608940660953522, + 0.01665271632373333, + -0.039573848247528076, + 0.006124129984527826, + 0.04338390752673149, + -0.036859918385744095, + 0.10607626289129257, + -0.0031848312355577946, + 0.013077964074909687, + -0.03912867233157158, + 0.048193104565143585, + 0.0003520313766784966, + -0.028607504442334175, + 0.03144145384430885, + 0.08218712359666824, + -0.016526255756616592, + -0.011641370132565498, + 0.035780761390924454, + 0.02143922634422779, + 0.021371059119701385, + 0.009165803901851177, + 0.05469902604818344, + 0.05276307463645935, + -0.035875674337148666, + -0.02044125832617283, + 0.01882523111999035, + 0.012947655282914639, + 0.009359589777886868, + 0.05236540734767914, + -0.0040152110159397125, + -0.012076948769390583, + -0.021958598867058754, + 0.09271939843893051, + 0.0395573265850544, + -0.05519919469952583, + -0.018142763525247574, + -0.011538431979715824, + 0.014236744493246078, + -0.047984085977077484, + 0.007151680998504162, + 0.029182398691773415, + -0.01846521720290184, + -0.05950089171528816, + -0.01860681176185608, + -0.00966537743806839, + 0.01416011806577444, + -0.07960288971662521, + -0.011946850456297398, + 0.05524151772260666, + 0.01083939429372549, + -0.08025199919939041, + -0.003933157306164503, + 0.05329393595457077, + 0.02708369307219982, + -0.07018207758665085, + 0.03598553687334061, + 0.05150066688656807, + 0.01294656191021204, + 0.07933681458234787, + 0.007438989821821451, + -0.0004432532878126949, + -0.04451892152428627, + 0.02507277950644493, + -0.014812367968261242, + -0.06989400088787079, + 0.013996856287121773, + 0.042424000799655914, + -0.07776561379432678, + 0.030023803934454918, + -0.03686198219656944, + -0.009213858284056187, + -0.012303801253437996, + -0.03617292642593384, + 0.02559283748269081, + 0.08549728244543076, + 0.04904317855834961, + 0.0005935283843427896, + -0.0697503387928009, + -0.05150137469172478, + -0.07896851003170013, + 0.00971130095422268, + 0.08084780722856522, + -0.008248807862401009, + -1.2856489162473863e-33, + 0.08120956271886826, + 0.005917931441217661, + -0.049796637147665024, + 0.08450756222009659, + 0.020557263866066933, + 0.032805513590574265, + 0.0016701878048479557, + -0.020039014518260956, + -0.16387370228767395, + 0.031148774549365044, + 0.11621149629354477, + 0.05856819823384285, + -0.07528422027826309, + 0.018544098362326622, + 0.009320537559688091, + -0.05492513254284859, + 0.04811478033661842, + -0.025571683421730995, + -0.04571333900094032, + -0.08046967536211014, + -0.07412675023078918, + 0.06703878194093704, + -0.02466091886162758, + -0.0248029213398695, + -0.01960834115743637, + -0.03636926785111427, + 0.04585681110620499, + -0.04558229446411133, + -0.06628356128931046, + 0.020013477653265, + 0.025701843202114105, + 0.046594779938459396, + 0.059802573174238205, + -0.004627288319170475, + -0.012460083700716496, + 0.007563724648207426, + -0.04934895411133766, + -0.00010499772179173306, + 0.018126148730516434, + 0.05780518800020218, + -0.060654688626527786, + -0.03614641726016998, + 0.01211958471685648, + -0.07789893448352814, + 0.010730870999395847, + 0.15599775314331055, + 0.035672627389431, + -0.08555667847394943, + 0.02174561470746994, + -0.046681467443704605, + 0.009658632799983025, + 0.017152706161141396, + -0.0008393751922994852, + -0.0017235756386071444, + 0.07052870094776154, + -0.02501874975860119, + -0.017417777329683304, + 0.11576450616121292, + 0.07848679274320602, + 0.054184772074222565, + 0.011443502269685268, + 0.024747224524617195, + 0.06113516911864281, + 0.017062922939658165, + -0.04959351196885109, + 0.10167156904935837, + 0.0011862667743116617, + -0.04798801243305206, + -0.013746071606874466, + -0.09808934479951859, + -0.010462735779583454, + 0.054641157388687134, + -0.006008380092680454, + 0.00689953938126564, + -0.006820632144808769, + 0.027078935876488686, + 0.014579425565898418, + -0.09024738520383835, + 0.025334591045975685, + -0.112958624958992, + -0.002777397632598877, + 0.037984661757946014, + -0.07654283940792084, + 0.07579752802848816, + 0.03111162595450878, + -0.07217404246330261, + 0.0066979690454900265, + -0.00936910230666399, + -0.029789797961711884, + 0.0023529408499598503, + -0.029025617986917496, + -0.010158357210457325, + 0.01063480507582426, + -0.051368530839681625, + -0.08118575066328049, + -7.1081619931895625e-34, + 0.03353779390454292, + -0.015965750440955162, + -0.05786393582820892, + 0.025956176221370697, + -0.07818611711263657, + 0.027944477275013924, + 0.040983740240335464, + 0.05997248366475105, + -0.008532119914889336, + 0.05507596582174301, + 0.1532091349363327, + -0.01699514128267765, + -0.07224515080451965, + -0.05653904378414154, + -0.025870874524116516, + 0.04913089796900749, + 0.0378035306930542, + 0.07837004959583282, + 0.01617489755153656, + -0.02416609227657318, + -0.06121715158224106, + -0.06280899047851562, + -0.057133495807647705, + 0.11338860541582108, + -0.07581913471221924, + 0.012734662741422653, + -0.01840738020837307, + 0.05632583796977997, + -0.005800158716738224, + -0.043167777359485626, + -0.025862770155072212, + 0.028725694864988327, + 0.014072041027247906, + 0.021175716072320938, + -0.05926857143640518, + 0.04210809990763664, + -0.07105513662099838, + 0.035415735095739365, + -0.030184432864189148, + 0.05448983237147331, + -0.03819694742560387, + 0.027613049373030663, + 0.04816891625523567, + -0.02223518304526806, + -0.05867348238825798, + 0.07102332264184952, + -0.009915539994835854, + -0.06450118869543076, + -0.011833016760647297, + 0.0009827910689637065, + 0.03257469832897186, + -0.051951032131910324, + 0.0381615087389946, + -0.0049572112038731575, + -0.06869266927242279, + -0.06839098036289215, + -0.009002544917166233, + 0.017424775287508965, + -0.00536176236346364, + 0.06672072410583496, + 0.028246551752090454, + 0.0041787209920585155, + -0.04123922809958458, + 0.024248352274298668, + -0.0065494105219841, + 0.02065929025411606, + 0.062427129596471786, + -0.00897215772420168, + 0.08762485533952713, + -0.06163385510444641, + 0.09322784841060638, + -0.1301642656326294, + 0.025397587567567825, + -0.0640191063284874, + 0.04406328871846199, + -0.041491925716400146, + -0.006539805326610804, + -0.006210861727595329, + -0.01812046393752098, + 0.035216424614191055, + 0.03363161161541939, + -0.04070117697119713, + -0.0034257215447723866, + -0.0053545343689620495, + -0.08258400857448578, + 0.0732702985405922, + -0.027152642607688904, + 0.028721973299980164, + 0.02077089250087738, + -0.02833721786737442, + -0.06184176728129387, + 0.0005377006018534303, + 0.06423456221818924, + -0.06112989783287048, + -0.043658625334501266, + -2.360061479578235e-08, + 0.008371081203222275, + -0.0960659310221672, + 0.0631914734840393, + -0.03883269429206848, + -0.027833234518766403, + -0.013846197165548801, + -0.009219957515597343, + -0.048458974808454514, + -0.06481639295816422, + -0.007198690436780453, + -0.022610723972320557, + 0.06715931743383408, + 0.020208260044455528, + -0.012407409958541393, + 0.06753242760896683, + 0.046932000666856766, + -0.0997280552983284, + 0.1306452751159668, + -0.0050827497616410255, + -0.0019296449609100819, + 0.010134669952094555, + 0.004741574637591839, + 0.04766055941581726, + 0.021988103166222572, + 0.07924647629261017, + 0.02278769016265869, + -0.07821246236562729, + 0.012640065513551235, + 0.10739225149154663, + 0.07234285026788712, + 0.011624441482126713, + -0.04136178642511368, + -0.006522400304675102, + 0.01787208579480648, + -0.07993628829717636, + -0.022665996104478836, + -0.09109319746494293, + 0.00623006746172905, + 0.013893771916627884, + 0.07613623887300491, + -0.002118451287969947, + -0.07695363461971283, + -0.08261240273714066, + 0.0005546898464672267, + -0.17366187274456024, + -0.01671845279633999, + 0.08258584141731262, + 0.02984466217458248, + -0.10310886055231094, + -0.11522568762302399, + -0.03090880997478962, + 0.05034300684928894, + 0.03433823212981224, + 0.08248281478881836, + -0.017762547358870506, + -0.03592371195554733, + -0.005608793813735247, + 0.0765683501958847, + -0.04591955244541168, + -0.00796210952103138, + 0.09651156514883041, + 0.04321730136871338, + -0.032800912857055664, + -0.0045259916223585606 + ], + "toggle-right-bold||switch,controls,settings,preferences": [ + -0.01392978522926569, + -0.06994448602199554, + -0.07644709944725037, + 0.1557634025812149, + 0.010653475299477577, + 0.07269006222486496, + 0.06784277409315109, + -0.019704381003975868, + -0.07014408707618713, + 0.07086116820573807, + 0.0037932139821350574, + 0.022024154663085938, + 0.011057945899665356, + -0.06007014960050583, + 0.05584241822361946, + 0.0782797783613205, + -0.0007642997079528868, + -0.021026067435741425, + 0.015011245384812355, + 0.01390905398875475, + -0.026908395811915398, + -0.06420459598302841, + -0.0009626122191548347, + 0.017037365585565567, + 6.167143146740273e-05, + 0.008985976688563824, + 0.016547659412026405, + -0.029880477115511894, + -0.05248302221298218, + -0.06575008481740952, + -0.045893240720033646, + -0.01431073248386383, + 0.023809999227523804, + -0.03892769664525986, + -0.017299532890319824, + 0.013221941888332367, + -0.039444852620363235, + -0.055020954459905624, + -0.002508732723072171, + -3.807411121670157e-05, + -0.030340777710080147, + -0.06936371326446533, + 0.015438739210367203, + -0.05813548341393471, + -0.06570786237716675, + 0.02402200736105442, + -0.02371864579617977, + 0.004285756964236498, + 0.04042407125234604, + -0.03265697509050369, + 0.09624261409044266, + 1.234294018104265e-07, + 0.012282918207347393, + -0.0479317307472229, + 0.05951562523841858, + 0.022293327376246452, + -0.031638942658901215, + 0.03400006145238876, + 0.08361921459436417, + -0.016773095354437828, + -0.028531650081276894, + 0.028819099068641663, + 0.020166410133242607, + 0.023861220106482506, + 0.01733289286494255, + 0.06960608810186386, + 0.0473504401743412, + -0.04586213082075119, + -0.02731025591492653, + 0.027960598468780518, + 0.012061294168233871, + 0.007752666249871254, + 0.0664147138595581, + 0.008754883892834187, + -0.01109639834612608, + -0.028656944632530212, + 0.08881616592407227, + 0.036348383873701096, + -0.0556119903922081, + -0.008710947819054127, + -0.012793601490557194, + 0.0032405671663582325, + -0.05626187473535538, + 0.01565628871321678, + 0.036038853228092194, + -0.014996303245425224, + -0.054840169847011566, + -0.015582031570374966, + 0.001062885858118534, + 0.012582267634570599, + -0.07117936760187149, + -0.02737370692193508, + 0.053252968937158585, + 0.022950012236833572, + -0.08258365839719772, + -0.00239664688706398, + 0.05715304613113403, + 0.018755709752440453, + -0.06964315474033356, + 0.026512986049056053, + 0.057228852063417435, + -0.0001575343922013417, + 0.07768253982067108, + 0.005868651904165745, + 0.004924350418150425, + -0.05151087045669556, + 0.03308558091521263, + -0.0028225567657500505, + -0.05764121934771538, + 0.022403961047530174, + 0.04355723783373833, + -0.08704528957605362, + 0.020137306302785873, + -0.025451352819800377, + -0.010056147351861, + -0.00031082972418516874, + -0.03671259805560112, + 0.01814218796789646, + 0.07510852068662643, + 0.04706462472677231, + -0.00037925015203654766, + -0.05145171657204628, + -0.05624210461974144, + -0.0807545930147171, + 0.007080996874719858, + 0.06910329312086105, + -0.01432003267109394, + -1.247905170174925e-33, + 0.07582943886518478, + 0.0013255623634904623, + -0.04340321943163872, + 0.07542680203914642, + 0.017167886719107628, + 0.02094791829586029, + 0.0002712601562961936, + -0.03281429037451744, + -0.15991099178791046, + 0.05013297125697136, + 0.11677957326173782, + 0.04931547865271568, + -0.07795848697423935, + 0.02805992402136326, + 0.015529421158134937, + -0.05294310674071312, + 0.044003941118717194, + -0.014266026206314564, + -0.036547258496284485, + -0.08204863965511322, + -0.0748346820473671, + 0.06234877556562424, + -0.02123163267970085, + -0.030891211703419685, + -0.021730609238147736, + -0.03385913372039795, + 0.038848720490932465, + -0.04348279908299446, + -0.056510500609874725, + 0.01876232959330082, + 0.016342077404260635, + 0.03407791256904602, + 0.06391151994466782, + -0.0011283893836662173, + -0.011897263117134571, + -0.009629731997847557, + -0.04642751067876816, + 0.003003867343068123, + 0.017447680234909058, + 0.056522950530052185, + -0.05742741376161575, + -0.028770795091986656, + 0.006191288586705923, + -0.0707182064652443, + 0.019888000562787056, + 0.1490340381860733, + 0.03040654957294464, + -0.07776256650686264, + 0.021077288314700127, + -0.04627544432878494, + 0.015346198342740536, + 0.023756911978125572, + 0.0004669299232773483, + 0.019568780437111855, + 0.06558655202388763, + -0.02169009856879711, + -0.015310702845454216, + 0.13141703605651855, + 0.06475204229354858, + 0.041860613971948624, + 0.012262001633644104, + 0.018778527155518532, + 0.07147420942783356, + 0.007055075839161873, + -0.04701734334230423, + 0.10604865849018097, + 0.006334918551146984, + -0.04707595333456993, + -0.019304564222693443, + -0.08892230689525604, + -0.009144743904471397, + 0.06584911048412323, + -0.01708579622209072, + -0.0015774734783917665, + -0.010301218368113041, + 0.03218185901641846, + 0.008787878789007664, + -0.09712352603673935, + 0.03435136750340462, + -0.10356185585260391, + -0.005025451071560383, + 0.028736291453242302, + -0.08818010240793228, + 0.07509326189756393, + 0.017603565007448196, + -0.09121190756559372, + 0.006220550276339054, + -0.010962216183543205, + -0.026517000049352646, + 0.0018875852692872286, + -0.019416244700551033, + 0.002095669275149703, + 0.01580299437046051, + -0.055814217776060104, + -0.07898037135601044, + -9.442130822331177e-34, + 0.04361293837428093, + -0.019208626821637154, + -0.03871862217783928, + 0.032080523669719696, + -0.07945200800895691, + 0.030578510835766792, + 0.03658342733979225, + 0.059104759246110916, + -0.010581989772617817, + 0.06417152285575867, + 0.15317882597446442, + -0.0215927567332983, + -0.07118195295333862, + -0.06191829964518547, + -0.02026432752609253, + 0.05342525243759155, + 0.0339256227016449, + 0.08464489132165909, + 0.027149630710482597, + -0.020154427736997604, + -0.06491365283727646, + -0.0677468329668045, + -0.054652974009513855, + 0.11523593217134476, + -0.07928978651762009, + 0.014824026264250278, + -0.015329238027334213, + 0.055905088782310486, + -0.0005168276838958263, + -0.03794204071164131, + -0.021959520876407623, + 0.02190619334578514, + -0.00544132012873888, + 0.03190424293279648, + -0.05006075277924538, + 0.04129725694656372, + -0.07520126551389694, + 0.03655151277780533, + -0.03653677552938461, + 0.056105535477399826, + -0.01987135410308838, + 0.02088835835456848, + 0.036192264407873154, + -0.016427570953965187, + -0.05686339735984802, + 0.07605388760566711, + -0.005767510272562504, + -0.0623699426651001, + -0.016768870875239372, + -0.007953890599310398, + 0.0307837575674057, + -0.04837338998913765, + 0.043713584542274475, + -0.011495338752865791, + -0.06613040715456009, + -0.06309816241264343, + -0.00938617903739214, + 0.008491108193993568, + -0.025371473282575607, + 0.06450538337230682, + 0.0381966307759285, + -0.005210823845118284, + -0.05338132381439209, + 0.023511264473199844, + -0.00953198317438364, + 0.01856183633208275, + 0.06552969664335251, + -0.011100833304226398, + 0.08899946510791779, + -0.06680430471897125, + 0.08495096117258072, + -0.14385490119457245, + 0.029935291036963463, + -0.06360264867544174, + 0.04348370432853699, + -0.05928465351462364, + -0.00024155870778486133, + -0.006191638298332691, + -0.005668462719768286, + 0.019445238634943962, + 0.05373407527804375, + -0.027021730318665504, + -0.00536372372880578, + -0.005060971714556217, + -0.07942885905504227, + 0.0737607553601265, + -0.02584606409072876, + 0.027521036565303802, + 0.027009084820747375, + -0.03089967742562294, + -0.06261131912469864, + 0.017090296372771263, + 0.059840720146894455, + -0.05427602678537369, + -0.052202507853507996, + -2.3932489767730658e-08, + -0.005693284794688225, + -0.09130186587572098, + 0.0676192119717598, + -0.039748694747686386, + -0.019751640036702156, + -0.021843193098902702, + -0.013747361488640308, + -0.04311858490109444, + -0.0645761638879776, + -0.011918599717319012, + -0.0332895964384079, + 0.05413768067955971, + 0.024934301152825356, + -0.006420082878321409, + 0.08008328825235367, + 0.03523586317896843, + -0.10664238780736923, + 0.12470272928476334, + -0.000990639440715313, + -0.009352662600576878, + -0.0030493992380797863, + -0.0009435000829398632, + 0.04528862610459328, + 0.02189686894416809, + 0.07450110465288162, + 0.01955249346792698, + -0.07550979405641556, + 0.014469844289124012, + 0.09665022045373917, + 0.07576766610145569, + 0.0042777294293046, + -0.039453115314245224, + -0.010298128239810467, + 0.021012810990214348, + -0.06628578156232834, + -0.021321386098861694, + -0.08760102838277817, + 0.0007840394391678274, + 0.03741271793842316, + 0.06240793317556381, + -0.00038873672019690275, + -0.0721558928489685, + -0.08499155938625336, + -0.0006855701794847846, + -0.1774277538061142, + -0.019275501370429993, + 0.08916464447975159, + 0.024881059303879738, + -0.10322076827287674, + -0.1193418875336647, + -0.044351689517498016, + 0.06018441170454025, + 0.03423728793859482, + 0.07689299434423447, + -0.005754875484853983, + -0.03315446898341179, + -0.010876389220356941, + 0.07599193602800369, + -0.0358746275305748, + -0.011698512360453606, + 0.11279167979955673, + 0.039976369589567184, + -0.03680803254246712, + -0.005755486898124218 + ], + "toilet-bold||bathroom,restroom,lavatory,water closet": [ + 0.051922302693128586, + -0.007259822450578213, + 0.020131908357143402, + -0.020111892372369766, + -0.022690245881676674, + -0.025882108137011528, + 0.047058869153261185, + -0.061638593673706055, + 0.04681655019521713, + 0.004122110549360514, + -0.004298491403460503, + 0.01853368431329727, + 0.046986982226371765, + 0.049419887363910675, + -0.04303949698805809, + -0.07083103060722351, + 0.028111036866903305, + 0.06534720212221146, + 0.03525111824274063, + 0.022637037560343742, + 0.032400839030742645, + 0.08983786404132843, + 0.07161636650562286, + -0.0006502876640297472, + 0.017529042437672615, + 0.04626619815826416, + 0.056262776255607605, + 0.043442677706480026, + -0.0535796582698822, + -0.07063370198011398, + 0.02481946349143982, + -0.017759427428245544, + 0.08787933737039566, + -0.06556593626737595, + 0.08148657530546188, + -0.0028889249078929424, + 0.007731958758085966, + -0.04109005630016327, + 0.06102364882826805, + 0.02065095491707325, + -0.04303954541683197, + -0.080879345536232, + 0.009403334930539131, + 0.027337156236171722, + -0.03767821937799454, + 0.010325568728148937, + -0.04677155986428261, + -0.018406495451927185, + 0.0048958901315927505, + -0.027465524151921272, + -0.0032976181246340275, + -0.05317777395248413, + -0.08803433179855347, + 0.08878450095653534, + 0.01383066363632679, + -0.029553363099694252, + -0.01570630446076393, + -0.07595325261354446, + 0.03299630060791969, + -0.02731594443321228, + 0.05239981785416603, + 0.020755548030138016, + 0.02070915885269642, + 0.08312003314495087, + 0.030273932963609695, + -0.01827014610171318, + -0.012739259749650955, + 0.1042260080575943, + -0.01841817982494831, + -0.011636704206466675, + -0.05573013052344322, + 0.024555683135986328, + -0.02979341149330139, + 0.015267242677509785, + -0.05149107426404953, + 0.009820129722356796, + 0.005252626724541187, + -0.00761921564117074, + -0.084292933344841, + -0.012550094164907932, + -0.0494624599814415, + -0.0912933275103569, + -0.015580575913190842, + 0.051123183220624924, + 0.007063720840960741, + 0.036496181041002274, + -0.061888437718153, + -0.06433239579200745, + -0.03220120817422867, + -0.08836101740598679, + -0.07038974016904831, + -0.06079527735710144, + 0.0806724950671196, + -0.04409479349851608, + 0.0008464377606287599, + -0.024959567934274673, + 0.02407037653028965, + -0.041741035878658295, + -0.004575361963361502, + 0.044789690524339676, + -0.04826510697603226, + 0.05749311298131943, + 0.07690121233463287, + -0.022008193656802177, + 0.05222560092806816, + -0.07699447125196457, + -0.03048551082611084, + 0.015028346329927444, + 0.06404703110456467, + -0.00018472464580554515, + -0.017254464328289032, + -0.14141792058944702, + 0.01791304536163807, + -0.00914907455444336, + -0.05925704166293144, + -0.02866731956601143, + -0.009480705484747887, + -0.07881327718496323, + 0.0745791643857956, + 0.10082190483808517, + -0.06099514663219452, + -0.0404805988073349, + -0.04003971815109253, + -0.03507969155907631, + -0.08669135719537735, + -0.01646207459270954, + 0.032163526862859726, + -2.8589559938203717e-33, + 0.021239396184682846, + 0.029161976650357246, + 0.0018316182540729642, + 0.07328440994024277, + 0.06489089131355286, + 0.02094343490898609, + 0.0018178649479523301, + -0.07145178318023682, + -0.016836509108543396, + 0.04385934770107269, + 0.02889767289161682, + 0.030059916898608208, + -0.06760634481906891, + 0.04486943408846855, + 0.001523540704511106, + -0.0020543509162962437, + -0.0029459891375154257, + 0.03769831359386444, + -0.06386902928352356, + 0.02234782464802265, + 0.026516292244195938, + 0.09803794324398041, + -0.05437571555376053, + -0.02703978680074215, + -0.0034991679713129997, + -0.04319973662495613, + -0.018551437184214592, + 0.00575961172580719, + -0.010744770057499409, + 0.0365523062646389, + 0.0420682355761528, + 0.03792779892683029, + 0.035014405846595764, + 0.05598026514053345, + -0.010660490952432156, + -0.04853953793644905, + -0.0077210902236402035, + -0.013662031851708889, + -0.0639001876115799, + -0.036401014775037766, + -0.0801619365811348, + -0.04295645281672478, + 0.011600910685956478, + 0.0636153519153595, + 0.07835514098405838, + 0.07757624983787537, + -0.011708447709679604, + -0.034526415169239044, + 0.058272529393434525, + 0.056347232311964035, + -0.019628897309303284, + 0.06521899253129959, + -0.07074213773012161, + 0.024264654144644737, + -0.03986212983727455, + -0.12943875789642334, + -0.02301241271197796, + 0.004983996506780386, + 0.03603150695562363, + 0.04437060281634331, + -0.024246402084827423, + 0.15365953743457794, + 0.044408608227968216, + -0.038287315517663956, + -0.0049782101996243, + -0.017606722190976143, + 0.019397418946027756, + 0.059249382466077805, + 0.16852514445781708, + 0.06294123828411102, + -0.06374242156744003, + 0.039610855281353, + -0.0036765187978744507, + 0.06176264211535454, + -0.0033954831305891275, + -0.0009955537971109152, + -0.055703312158584595, + 0.002332943258807063, + -0.013811381533741951, + -0.06579131633043289, + -0.05995906889438629, + -0.05019555613398552, + -0.029830848798155785, + 0.13520973920822144, + 0.03245433047413826, + 0.04959839582443237, + 0.01654134877026081, + -0.01482465397566557, + -0.028443656861782074, + 0.040089044719934464, + -0.054371751844882965, + 0.019395893439650536, + -0.034059200435876846, + -0.04165922850370407, + -0.044347357004880905, + -5.387948151971035e-34, + 0.10778187960386276, + -0.020000843331217766, + -0.04468074440956116, + 0.04303160309791565, + 0.008500916883349419, + 0.031085513532161713, + -0.021528489887714386, + -0.03303965553641319, + -0.016002053394913673, + 0.08590908348560333, + -0.020843852311372757, + 0.01859980635344982, + 0.018074583262205124, + -0.09450682997703552, + 0.09152159839868546, + 0.053495343774557114, + 0.13209818303585052, + -0.09129410982131958, + -0.0322403721511364, + 0.09959309548139572, + -0.04207791015505791, + -0.07178200781345367, + -0.06165502592921257, + 0.033772729337215424, + -0.0651460513472557, + 0.047543611377477646, + 0.08179568499326706, + -0.02379636839032173, + -0.03616642579436302, + 0.020264795050024986, + -0.08315736800432205, + 0.05177496001124382, + -0.007168302312493324, + 0.041035015136003494, + -0.030468154698610306, + -0.00029882503440603614, + -0.03927620127797127, + -0.03088754042983055, + -0.030776554718613625, + -0.055630430579185486, + 0.06271512061357498, + -0.027592642232775688, + -0.003133264370262623, + 0.12471245974302292, + -0.04179876670241356, + -0.016007138416171074, + -0.0638691708445549, + -0.07257179915904999, + -0.011093194596469402, + 0.017883533611893654, + -0.0009668839047662914, + -0.0175161175429821, + 0.009510302916169167, + -0.045206218957901, + 0.0050930907018482685, + -0.021199215203523636, + -0.08281952887773514, + -0.026941148564219475, + -0.062303442507982254, + 0.08891085535287857, + 0.03502436727285385, + 0.11839289218187332, + -0.021716643124818802, + 0.04154239967465401, + -0.059050071984529495, + -0.06864620745182037, + -0.06131739541888237, + -0.022393185645341873, + -0.04882185906171799, + 0.051038891077041626, + -0.00612763362005353, + -0.01839212141931057, + 0.054704323410987854, + -0.054320599883794785, + 0.05070585384964943, + -0.0361044704914093, + 0.017044011503458023, + 0.013005200773477554, + -0.06636782735586166, + 0.043237943202257156, + -0.03797224909067154, + 0.00962792243808508, + -0.04687875136733055, + 0.011062486097216606, + 0.05440405383706093, + -0.06156556308269501, + -0.08354157209396362, + 0.060671575367450714, + -0.0038362755440175533, + 0.01709173060953617, + -0.0029247815255075693, + 0.06801590323448181, + -0.10962621122598648, + -0.03471996262669563, + 0.018137358129024506, + -1.9253626248882938e-08, + -0.03232887014746666, + -0.014001760631799698, + 0.015461486764252186, + 0.002397345844656229, + 0.028909942135214806, + -0.061468273401260376, + -0.019825991243124008, + 0.04340163618326187, + -0.03252159804105759, + 0.0452495738863945, + 0.04039714112877846, + 0.024667561054229736, + -0.030431481078267097, + 0.041345469653606415, + 0.015070361085236073, + 0.09407328814268112, + -0.06698212772607803, + -0.018543949350714684, + -0.050048112869262695, + -0.0009930062806233764, + -0.0037422338500618935, + -0.011996890418231487, + 0.03508114442229271, + -0.02443854510784149, + 0.036406878381967545, + 0.059724465012550354, + -0.06652742624282837, + -0.048934586346149445, + 0.0063934409990906715, + 0.018607869744300842, + 0.15502524375915527, + -0.01839238964021206, + -0.09480854868888855, + 0.05904644727706909, + -0.08430371433496475, + 0.0126994913443923, + 0.035691920667886734, + -0.03351331502199173, + -0.014674090780317783, + 0.029976017773151398, + -0.05608700215816498, + -0.12529924511909485, + -0.04302475228905678, + 0.012484848499298096, + -0.024368001148104668, + 0.011347755789756775, + 0.03211607411503792, + -0.009018823504447937, + -0.09809312224388123, + -0.04238324984908104, + -0.05407274514436722, + -0.04257429391145706, + 0.03182695060968399, + 0.03146642819046974, + 0.07129095494747162, + -0.0070399451069533825, + 0.07058784365653992, + 0.011077598668634892, + -0.02963937260210514, + 0.06353862583637238, + 0.10116366297006607, + 0.008516027592122555, + -0.011968436650931835, + -0.006399720907211304 + ], + "toilet-paper-bold||bathroom,restroom,lavatory,water closet": [ + -0.010738670825958252, + 0.017922133207321167, + 0.02849532663822174, + -0.0034652601461857557, + -0.024587782099843025, + -0.026723014190793037, + 0.0559360571205616, + -0.0742436945438385, + 0.029694367200136185, + 0.0213887058198452, + 0.005854248534888029, + 0.06984575092792511, + 0.04823571816086769, + 0.061844490468502045, + -0.0497504398226738, + -0.07436960935592651, + -0.010513762012124062, + 0.07613828033208847, + 0.027341263368725777, + 0.06972936540842056, + 0.05398711562156677, + 0.09207573533058167, + 0.06888193637132645, + 0.009632818400859833, + 0.024106359109282494, + 0.07650977373123169, + 0.02160828188061714, + 0.008176295086741447, + -0.04634801670908928, + -0.046833306550979614, + 0.03375880420207977, + -0.014237498864531517, + 0.09762617945671082, + -0.04042447730898857, + 0.1167607307434082, + -0.03098050132393837, + 0.02079862914979458, + -0.0247285608202219, + 0.08251002430915833, + 0.03817763924598694, + -0.04879193380475044, + -0.11240691691637039, + 0.004440551623702049, + 0.04500488564372063, + -0.009388321079313755, + -0.010022995993494987, + -0.06235067546367645, + 0.006212698761373758, + -0.021652303636074066, + -0.021284833550453186, + -0.002694475930184126, + -0.06550586968660355, + -0.09777360409498215, + 0.045693837106227875, + 0.01054142415523529, + -0.06483444571495056, + 0.018057458102703094, + -0.06728340685367584, + 0.016950353980064392, + -0.02386019565165043, + 0.03651852160692215, + 0.0496639758348465, + -0.023524358868598938, + 0.0695047378540039, + 0.030075764283537865, + 0.022262070327997208, + -0.04187650606036186, + 0.11309974640607834, + -0.05690670385956764, + -0.002624132903292775, + -0.05589834973216057, + 0.0482487678527832, + 0.0008638770086690784, + 0.010909534990787506, + -0.0012512007961049676, + -0.03193401172757149, + -0.0082325404509902, + -0.029472902417182922, + -0.07762958109378815, + -0.017004746943712234, + -0.025864018127322197, + -0.07990272343158722, + -0.01681431010365486, + 0.09347865730524063, + -0.015867002308368683, + 0.02314729057252407, + -0.053327132016420364, + -0.07086816430091858, + -0.009772926568984985, + -0.08348716795444489, + -0.043195731937885284, + -0.037835605442523956, + 0.08885238319635391, + -0.038441307842731476, + -0.03698895871639252, + -0.01718537136912346, + -0.016842128708958626, + -0.03368350490927696, + 0.026975397020578384, + 0.032169193029403687, + -0.03930665925145149, + 0.04343140125274658, + 0.09859208762645721, + -0.04778902605175972, + 0.0714738741517067, + -0.09775366634130478, + -0.040710605680942535, + -0.020480765029788017, + 0.08462130278348923, + -0.0015559635357931256, + 0.001033106236718595, + -0.1160808876156807, + -0.031677279621362686, + -0.0007936345646157861, + -0.06356441974639893, + -0.018803795799613, + -0.009234501980245113, + -0.09331320226192474, + 0.06951354444026947, + 0.07623660564422607, + -0.057658884674310684, + -0.012388302013278008, + -0.060040514916181564, + -0.045970652252435684, + -0.11832579225301743, + -0.012445286847651005, + 0.027251319959759712, + -3.618886459333095e-33, + 0.010126601904630661, + 0.07607563585042953, + -0.0060073803178966045, + 0.07357601076364517, + 0.06382108479738235, + 0.03034513257443905, + -0.013096967712044716, + -0.08202498406171799, + -0.017935926094651222, + 0.040264006704092026, + 0.02873663231730461, + 0.026488691568374634, + -0.057796623557806015, + 0.08629000186920166, + 0.011149656027555466, + 0.03938089683651924, + -0.03491949662566185, + 0.0404324010014534, + -0.051678143441677094, + 0.03940752148628235, + 0.01295157428830862, + 0.07428368926048279, + -0.025553731247782707, + -0.022983858361840248, + 0.007786856032907963, + -0.0063642957247793674, + -0.03502674773335457, + -0.004946741741150618, + -0.0049489582888782024, + 0.02841961197555065, + 0.06541026383638382, + 0.018132006749510765, + 0.041408222168684006, + 0.020264772698283195, + -0.060260459780693054, + -0.03655704855918884, + -0.02371072955429554, + -0.023692630231380463, + -0.04614259675145149, + -0.021087899804115295, + -0.11073983460664749, + -0.035671208053827286, + 0.042612120509147644, + 0.03808840736746788, + 0.10495122522115707, + 0.08463495224714279, + -0.008833793923258781, + -0.005363016854971647, + 0.07422350347042084, + 0.05545812472701073, + -0.021540727466344833, + 0.05205957964062691, + -0.08363725244998932, + 0.022291380912065506, + -0.034479770809412, + -0.13888446986675262, + 0.014169441536068916, + 0.013615012168884277, + 0.04092374071478844, + 0.012942718341946602, + 0.011362452059984207, + 0.15396755933761597, + 0.046974536031484604, + -0.03749889135360718, + -0.020834526047110558, + -0.01035323366522789, + 0.0061597456224262714, + 0.06903541833162308, + 0.14180701971054077, + 0.030742483213543892, + -0.05155065655708313, + 0.014148924499750137, + -0.025106731802225113, + 0.039709046483039856, + 0.004235511180013418, + 0.008999554440379143, + -0.02309579588472843, + -0.028659021481871605, + -0.01004375796765089, + -0.07497984170913696, + -0.07171127945184708, + -0.04658558964729309, + -0.037340786308050156, + 0.06519263237714767, + -0.0016251004999503493, + 0.0403464175760746, + 0.030841629952192307, + 0.015466119162738323, + -0.04174633324146271, + 0.023617252707481384, + -0.024087965488433838, + 0.014027699828147888, + -0.02343561127781868, + -0.02749732695519924, + -0.06377892196178436, + -3.969324835200235e-34, + 0.08045706152915955, + -0.048845645040273666, + -0.028857901692390442, + 0.0540991835296154, + 0.0128584373742342, + 0.02583106979727745, + -0.002548459218814969, + -0.021756790578365326, + 0.015562910586595535, + 0.10534565895795822, + -0.0006251543527469039, + -0.0061720688827335835, + 0.02273378148674965, + -0.054570358246564865, + 0.093488410115242, + 0.0343506783246994, + 0.0815373882651329, + -0.03544563055038452, + -0.036347225308418274, + 0.08985123038291931, + -0.06333056092262268, + -0.0691157877445221, + -0.039132893085479736, + 0.0785965621471405, + -0.0526651032269001, + 0.022555559873580933, + 0.07100126147270203, + -0.06802892684936523, + -0.0018286710837855935, + 0.03553859144449234, + -0.08854862302541733, + 0.010019653476774693, + 0.006082435604184866, + 0.054151419550180435, + -0.014013471081852913, + -0.006223064847290516, + -0.022779138758778572, + -0.03102296218276024, + -0.02662312053143978, + -0.05434470623731613, + 0.029883673414587975, + -0.036567144095897675, + 0.019451173022389412, + 0.11349338293075562, + -0.058032456785440445, + -0.02320796251296997, + -0.07593553513288498, + -0.049169961363077164, + -0.005953967571258545, + 0.03066117689013481, + 0.01742132380604744, + -0.010101305320858955, + 0.026851262897253036, + -0.07098998129367828, + -0.05479041114449501, + 0.021614547818899155, + -0.11124089360237122, + -0.027478354051709175, + -0.07835154235363007, + 0.10409343242645264, + 0.0015350322937592864, + 0.1312117874622345, + -0.03546049818396568, + 0.04932340979576111, + -0.039376549422740936, + -0.08686990290880203, + -0.05773394554853439, + -0.03306248039007187, + -0.07026184350252151, + 0.04669978469610214, + -0.02249106392264366, + 0.02466171607375145, + 0.0478585921227932, + -0.06484398990869522, + 0.04971378296613693, + -0.02019009180366993, + 0.0034766739699989557, + 0.022311216220259666, + -0.0769370049238205, + 0.019305812194943428, + -0.03545638546347618, + 0.04202008992433548, + -0.05674091726541519, + 0.017641166225075722, + 0.03507488965988159, + -0.06153026968240738, + -0.08416574448347092, + 0.03918200358748436, + -0.02619657851755619, + 0.0002378639328526333, + 0.0009688928257673979, + 0.07362216711044312, + -0.05049252510070801, + -0.01234523393213749, + 0.002149723470211029, + -2.0053263938279997e-08, + -0.041715994477272034, + -0.011951340362429619, + 0.03885402902960777, + -0.048304952681064606, + 0.017454301938414574, + -0.04973394796252251, + 0.028029313310980797, + 0.026417609304189682, + -0.032396212220191956, + 0.046727683395147324, + 0.04569467157125473, + -0.0023528540041297674, + -0.06812276691198349, + 0.03967185690999031, + -0.0023106972221285105, + 0.06802184134721756, + -0.05621219426393509, + -0.029168063774704933, + -0.04425035044550896, + -0.01708611287176609, + 0.017639126628637314, + -0.04286845773458481, + 0.025904279202222824, + -0.02302551455795765, + 0.018886975944042206, + 0.058101069182157516, + -0.03155650570988655, + -0.020884567871689796, + -0.00958666019141674, + 0.007437247317284346, + 0.12376464158296585, + 0.0160819161683321, + -0.09727828204631805, + 0.0644228458404541, + -0.07358897477388382, + 0.0011543090222403407, + 0.0838501900434494, + -0.03900233283638954, + -0.03427719697356224, + 0.04645026847720146, + -0.05996537581086159, + -0.13134551048278809, + -0.06814716756343842, + -0.00597695168107748, + 0.021037261933088303, + -0.007710259407758713, + 0.045091789215803146, + 0.00012078577128704637, + -0.09034424275159836, + -0.04383791610598564, + -0.030006766319274902, + -0.07382895052433014, + 0.0555262416601181, + 0.01766819879412651, + 0.05804738774895668, + -0.017161639407277107, + 0.0673065111041069, + 0.03289719671010971, + 0.010892554186284542, + 0.04806077852845192, + 0.08164744824171066, + 0.018202880397439003, + 0.008180785924196243, + 0.0103323794901371 + ], + "toolbox-bold||tools,carpentry,construction": [ + 0.025791389867663383, + 0.009283827617764473, + -0.02389603666961193, + 0.07733775675296783, + -0.021649150177836418, + -0.052722398191690445, + 0.05192602053284645, + -0.05812368541955948, + -0.0227251835167408, + 0.029515083879232407, + -0.045617904514074326, + -0.018822496756911278, + 0.06186497583985329, + -0.05615861341357231, + -0.03554904833436012, + 0.016614196822047234, + 0.03708565607666969, + -0.0107261398807168, + 0.03153897821903229, + 0.06818224489688873, + -0.008004811592400074, + 0.0777008906006813, + 0.02554827369749546, + -0.0074912686832249165, + 0.01520182378590107, + 0.06056671589612961, + -0.0023441538214683533, + 0.020021067932248116, + 0.035375822335481644, + -0.05320974066853523, + -6.688165740342811e-05, + 0.012647338211536407, + 0.0319497287273407, + 0.05295800790190697, + 0.09691866487264633, + 0.052347104996442795, + 0.0011689772363752127, + -0.01648392714560032, + 0.030643779784440994, + 0.0106776412576437, + -0.046418722718954086, + -0.0384201817214489, + 0.036266129463911057, + -0.01855366863310337, + -0.02189992368221283, + -0.04305656626820564, + -0.04551133140921593, + -0.10544552654027939, + 0.015813099220395088, + -0.02829275093972683, + 0.02184462919831276, + -0.09263764321804047, + -0.04550144448876381, + -0.0252296794205904, + 0.019550936296582222, + 0.05246926471590996, + -0.04092923924326897, + -0.03082125633955002, + 0.05668780207633972, + -0.012006898410618305, + 0.049037858843803406, + 0.08828825503587723, + 0.021533016115427017, + 0.012954614125192165, + 0.03596201539039612, + 0.03196341171860695, + 0.0011871277820318937, + 0.03319045901298523, + -0.09032236039638519, + 0.01888790726661682, + 0.0660625770688057, + 0.019865959882736206, + 0.001828397042118013, + -0.005967326927930117, + 0.048895176500082016, + -0.07431305199861526, + 0.00346796540543437, + 0.03283313289284706, + 0.008482461795210838, + -0.07445225119590759, + -0.10872220247983932, + 0.04505982622504234, + -0.025255490094423294, + 0.05273658037185669, + 0.016962895169854164, + 0.05561424046754837, + -0.03199278935790062, + -0.01799606904387474, + -0.000604659435339272, + -0.022690434008836746, + -0.0052756150253117085, + -0.023325735703110695, + -0.04558904841542244, + 0.061413004994392395, + -0.03734242916107178, + -0.05591363459825516, + -0.0013701424468308687, + -0.0027447580359876156, + -0.09218215942382812, + 0.06624141335487366, + -0.013484043069183826, + 0.004519685637205839, + 0.056434158235788345, + -0.05180688574910164, + -0.016025099903345108, + 0.017857633531093597, + -0.07973440736532211, + -0.05776023864746094, + -0.037570610642433167, + -0.003545899409800768, + 0.0058712437748909, + -0.15141697227954865, + -0.07787636667490005, + -0.03183404728770256, + -0.04205124080181122, + -0.08409766107797623, + -0.054711174219846725, + -0.06038978695869446, + 0.059881459921598434, + 0.004258480854332447, + 0.09099456667900085, + 0.01582472212612629, + -0.019802911207079887, + -0.05485425889492035, + 0.022106096148490906, + 0.032296136021614075, + 0.07317529618740082, + -2.0418796051263924e-33, + 0.07109314203262329, + -0.036739662289619446, + -0.07532402127981186, + 0.11535181105136871, + 0.08733505755662918, + 0.02874850481748581, + -0.01405104249715805, + 0.02053951472043991, + -0.03393690660595894, + 0.03379620611667633, + 0.07175610959529877, + 0.029506472870707512, + -0.09454084187746048, + 0.06903289258480072, + 0.08461280912160873, + -0.059982821345329285, + -0.03396172076463699, + -0.008146969601511955, + -0.10958395153284073, + 0.018291056156158447, + -0.12316318601369858, + 0.022592907771468163, + -0.05060593783855438, + 0.04442308470606804, + -0.008188431151211262, + -0.01721685193479061, + 0.07525616884231567, + -0.019146855920553207, + -0.08415140211582184, + 0.038461845368146896, + -0.07961393147706985, + 0.024344902485609055, + 0.08391239494085312, + 0.04819384962320328, + -0.09566967934370041, + 0.03133297711610794, + -0.03735188767313957, + -0.07306963205337524, + 0.03354494646191597, + 0.04538099095225334, + -0.05590016394853592, + -0.03900792822241783, + 0.026020489633083344, + -0.0683654323220253, + 0.07383967190980911, + 0.10161881893873215, + 0.0299180056899786, + 0.02472425252199173, + -0.0030663469806313515, + -0.002380466554313898, + -0.00787113793194294, + 0.08911639451980591, + 0.12336277961730957, + 0.06457015126943588, + -0.03827214613556862, + -0.043102700263261795, + -0.052343349903821945, + 0.0818454921245575, + 0.08940199762582779, + 0.05459149181842804, + -0.0493348054587841, + 0.043691933155059814, + 0.02755076065659523, + 0.033379584550857544, + -0.003883522003889084, + 0.05711977556347847, + -0.023073896765708923, + 0.0493609718978405, + 0.10772394388914108, + -0.013997921720147133, + -0.00831865519285202, + 0.011420744471251965, + -0.01635788008570671, + 0.08461498469114304, + -0.02215881645679474, + 0.0007051770808175206, + 0.018727315589785576, + -0.018401075154542923, + 0.05782139301300049, + -0.08000020682811737, + -0.07716444134712219, + 0.06934227049350739, + -0.023044254630804062, + 0.005700836423784494, + 0.020031509920954704, + 0.005638856440782547, + 0.03075402043759823, + -0.03956897184252739, + -0.016726182773709297, + 0.07571428269147873, + -0.11576587706804276, + -0.04304017499089241, + -0.05873442813754082, + -0.017450081184506416, + -0.07427279651165009, + -7.520590155482812e-34, + 0.012425192631781101, + -0.006391655188053846, + -0.07772485911846161, + 0.03973766788840294, + -0.008564634248614311, + 0.014625481329858303, + -0.03605211526155472, + -0.07076569646596909, + 0.0057162027806043625, + 0.016293633729219437, + 0.03651503846049309, + 0.03471103683114052, + -0.06550361961126328, + -0.03616978973150253, + 0.06408514827489853, + 0.012163952924311161, + -0.020472591742873192, + -0.00526441028341651, + -0.017922505736351013, + -0.008726421743631363, + 0.01816696487367153, + -0.006079521961510181, + -0.045975212007761, + 0.03230011463165283, + -0.05569620057940483, + -0.04093898460268974, + -0.07838122546672821, + -0.058047402650117874, + -0.05581662803888321, + 1.5086977327882778e-05, + -0.024114111438393593, + -0.07003144174814224, + 0.01733296923339367, + 0.04270963743329048, + -0.03812022507190704, + -0.008733963593840599, + 0.016564682126045227, + -0.025769874453544617, + 0.023929405957460403, + 0.005776421166956425, + 0.02371079847216606, + 0.017368916422128677, + -0.020721256732940674, + 0.011186215095221996, + -0.05631251633167267, + -0.02053072489798069, + -0.05836642161011696, + -0.05336849018931389, + -0.0016077586915344, + 0.05527299642562866, + 0.04330464079976082, + 0.03835839033126831, + 0.05047130212187767, + -0.07461898028850555, + -0.0734703540802002, + -0.06408319622278214, + -0.0026237843558192253, + -0.0870821624994278, + 0.01868520863354206, + 0.10395443439483643, + -0.006797167006880045, + 0.05272557958960533, + -0.0042234985157847404, + 0.06465234607458115, + 0.07415981590747833, + -0.028224118053913116, + 0.04213016480207443, + -0.03149937465786934, + -0.041790664196014404, + -0.022789260372519493, + 0.07387395948171616, + 0.049105558544397354, + 0.037354789674282074, + 0.003965694457292557, + 0.06137336418032646, + -0.03885852172970772, + 0.051584478467702866, + 0.003107729135081172, + 0.05128036439418793, + 0.0053368061780929565, + 0.033652689307928085, + -0.026818731799721718, + 0.07399675250053406, + 0.013970841653645039, + -0.13547557592391968, + -0.005119580775499344, + -0.04994009807705879, + 0.06939765810966492, + 0.005200847517699003, + -0.038694921880960464, + -0.020439261570572853, + -0.0009500853484496474, + -0.012530774809420109, + 0.0008774590096436441, + -0.07042188197374344, + -1.9925193939229757e-08, + -0.009989888407289982, + 0.03689171001315117, + -0.07043498754501343, + -0.0404011495411396, + -0.018087534233927727, + -0.005693129729479551, + 0.020483558997511864, + 0.018095403909683228, + -0.028718311339616776, + -0.02380751259624958, + 0.07246994972229004, + -0.04908670112490654, + -0.09101162105798721, + 0.030445965006947517, + 0.01136064063757658, + 0.017275530844926834, + -0.07934238016605377, + 0.03803897649049759, + -0.07639805227518082, + -0.08872140198945999, + 0.06522209942340851, + 0.016128942370414734, + 0.10243062674999237, + 0.039279498159885406, + -0.028956104069948196, + -0.005183147732168436, + -0.13131004571914673, + 0.01984575018286705, + 0.05576654151082039, + 0.14308127760887146, + 0.03803106024861336, + 0.0515567846596241, + -0.0024000294506549835, + 0.042996492236852646, + 0.01013126876205206, + -0.05596619471907616, + -0.090272918343544, + 0.026251032948493958, + 0.008989128284156322, + 0.15084652602672577, + -0.05178256332874298, + -0.06025893986225128, + -0.017644258216023445, + -0.0723041445016861, + -0.011418027803301811, + 0.015575740486383438, + 0.000565331254620105, + 0.0025464913342148066, + -0.08032485842704773, + -0.09570033848285675, + -0.03361623361706734, + 0.021409640088677406, + 0.04965982958674431, + 0.08341585099697113, + -0.01470890175551176, + -0.05378657951951027, + 0.03258154168725014, + 0.05912771821022034, + 0.0006210623541846871, + -0.0076425522565841675, + 0.029678992927074432, + 0.043338559567928314, + 0.034360915422439575, + 0.06694014370441437 + ], + "tooth-bold||teeth,dentistry,medical,medicine,doctor,cavity": [ + -0.0038395640440285206, + -0.037000883370637894, + -0.02220587059855461, + 0.019897092133760452, + -0.13471101224422455, + -0.0953504890203476, + -0.0016498524928465486, + 0.038907673209905624, + -0.033152077347040176, + 0.06127423793077469, + -0.004955777432769537, + -0.034519828855991364, + 0.0024979207664728165, + 0.02866229973733425, + -0.07610156387090683, + -0.010837364941835403, + -0.0026520469691604376, + 0.025818774476647377, + 0.017964277416467667, + 0.05819294974207878, + -0.0043289996683597565, + 0.10125061869621277, + 0.02264925092458725, + -7.413828279823065e-05, + 0.07343454658985138, + 0.02498205006122589, + 0.016568858176469803, + -0.04500763490796089, + 0.014201220124959946, + 0.012128302827477455, + -0.060100045055150986, + 0.009512619115412235, + 0.12009567022323608, + -0.06867709010839462, + 0.06314559280872345, + -0.041219569742679596, + -0.04237066209316254, + 0.027985820546746254, + 0.034150682389736176, + 0.02145453356206417, + 0.014613919891417027, + -0.020310314372181892, + 0.027415765449404716, + 0.02522515505552292, + 0.01570664532482624, + -0.02126084454357624, + -0.04284410923719406, + -0.0024021619465202093, + -0.026901554316282272, + -0.012334139086306095, + -0.04151472449302673, + -0.13136252760887146, + -0.12200808525085449, + 0.06946094334125519, + -0.0456978902220726, + -0.017597608268260956, + -0.06479521095752716, + -0.0052094063721597195, + -0.02731134369969368, + 0.04297851026058197, + 0.006622185464948416, + 0.009358910843729973, + 0.03516461327672005, + 0.10827124118804932, + -0.041928812861442566, + 0.021779442206025124, + 0.056945327669382095, + -0.014365668408572674, + -0.0787723958492279, + 0.030359163880348206, + 0.05311848968267441, + -0.02278425730764866, + 0.03269614279270172, + 0.011333845555782318, + 0.019595574587583542, + -0.05313703790307045, + 0.11237611621618271, + 0.03143145143985748, + -0.02535928599536419, + -0.036323826760053635, + -0.0301156397908926, + -0.0169210322201252, + -0.055322106927633286, + -0.028706824406981468, + -0.01965165324509144, + 0.014643607661128044, + -0.07487963885068893, + -0.08172467350959778, + -0.11149900406599045, + -0.04951351135969162, + -0.05702178552746773, + -0.03756076842546463, + 0.0397297665476799, + 0.015879910439252853, + -0.007534809876233339, + 0.052325520664453506, + 0.03909383714199066, + 0.04343592748045921, + 0.019853869453072548, + 0.03224873170256615, + -0.0536954402923584, + -0.02017252705991268, + -0.0061049507930874825, + 0.05649218708276749, + 0.030888473615050316, + 0.0023879895452409983, + -0.08280079811811447, + -0.06482475250959396, + 0.04471197724342346, + -0.039809390902519226, + 0.005826150998473167, + 0.019640814512968063, + -0.02124750427901745, + -0.048998791724443436, + -0.010357127524912357, + -0.028524989262223244, + -0.0333215668797493, + 0.002582101384177804, + 0.16475282609462738, + 0.12125711888074875, + -0.07281871885061264, + -0.04177618399262428, + -0.04320208355784416, + -0.10506322979927063, + 0.009210413321852684, + -0.01080153789371252, + 0.009438129141926765, + -5.182957732892967e-33, + 0.031591642647981644, + 0.006734752096235752, + -0.007275414653122425, + 0.04549146816134453, + -0.024235684424638748, + 0.047673117369413376, + 0.0016411597607657313, + -0.002831469289958477, + -0.05860788747668266, + -0.00047893746523186564, + 0.05508309602737427, + 0.04569082707166672, + -0.044460318982601166, + 0.036095235496759415, + -0.006634999066591263, + 0.12107355892658234, + -0.054798711091279984, + -0.04540574178099632, + -0.1237952783703804, + 0.05348331108689308, + -0.026472093537449837, + 0.06218082830309868, + -0.06392373144626617, + 0.11613454669713974, + -0.08030776679515839, + -0.05985719710588455, + -0.02813955582678318, + -0.10099684447050095, + -0.004211385268718004, + 0.011479448527097702, + 0.018685713410377502, + 0.013253707438707352, + 0.06495929509401321, + -0.03242603316903114, + -0.008741514757275581, + 0.036517184227705, + 0.0298235435038805, + -0.044705580919981, + -0.02971791662275791, + -0.006041333544999361, + -0.016656816005706787, + 0.022443460300564766, + -0.0021105308551341295, + 0.002117555122822523, + 0.06438950449228287, + 0.042916763573884964, + -0.054628703743219376, + 0.014409992843866348, + 0.035557299852371216, + 0.029639700427651405, + 0.00801259744912386, + -0.02510138601064682, + 0.00803413987159729, + 0.0440986305475235, + -0.03538018837571144, + 0.016559327021241188, + -0.023212576285004616, + 0.05834160000085831, + -0.06048043444752693, + 0.05170951038599014, + -0.013033822178840637, + -0.00822396855801344, + 0.0626133605837822, + 0.013528426177799702, + -0.033086277544498444, + 0.02727161906659603, + -0.019428957253694534, + 0.004378997255116701, + 0.030870746821165085, + 0.01331724226474762, + -0.0741058737039566, + 0.07586050033569336, + -0.08370637893676758, + 0.008776530623435974, + -0.04701259359717369, + 0.001365871517919004, + 0.07515451312065125, + 0.034294355660676956, + -0.010923516936600208, + -0.042178209871053696, + -0.0833699181675911, + 0.04247681796550751, + -0.06381296366453171, + 0.06513629853725433, + -0.027823984622955322, + 0.09258349239826202, + -0.018097050487995148, + -0.0847121998667717, + 0.09307841211557388, + 0.043985407799482346, + -0.05890723317861557, + -0.012833060696721077, + -0.025457628071308136, + -0.010574080049991608, + -0.09664507210254669, + 3.175831939672872e-34, + 0.01708229072391987, + -0.02932092174887657, + -0.045658890157938004, + 0.026849962770938873, + 0.033977214246988297, + 0.07736505568027496, + -0.02478800155222416, + 0.03603693097829819, + -0.016749318689107895, + -0.007774460595101118, + 0.016495535150170326, + 0.03894853591918945, + -0.0179289560765028, + -0.09466028213500977, + -0.026192476972937584, + -0.008078156039118767, + 0.024646127596497536, + 0.01227513886988163, + -0.06510214507579803, + 0.09957654774188995, + -0.04014544188976288, + 0.006754791364073753, + -0.05211467295885086, + -0.017169447615742683, + -0.0018768750596791506, + 0.062210068106651306, + -0.008904307149350643, + -0.024990139529109, + -0.037823814898729324, + 0.018246017396450043, + -0.024644672870635986, + 0.04084434360265732, + -0.0019410655368119478, + 0.020275574177503586, + -0.08123204112052917, + 0.09903403371572495, + 0.029439078643918037, + -0.09175390005111694, + -0.037344902753829956, + -0.027052249759435654, + 0.008622434921562672, + 0.003643123200163245, + 0.06273597478866577, + 0.10292807966470718, + -0.010929329320788383, + 0.0166903268545866, + -0.04793313518166542, + -0.02427591197192669, + -0.07478147000074387, + 0.13413476943969727, + 0.014864047057926655, + 0.01377497985959053, + -0.04520391672849655, + 0.03431878238916397, + -0.06769710779190063, + -0.06347811222076416, + -0.00813793670386076, + -0.06133570894598961, + -0.0374811589717865, + 0.05108371749520302, + 0.04782336205244064, + 0.03284110128879547, + -0.040959976613521576, + 0.07536951452493668, + -0.02204873226583004, + -0.039784025400877, + -0.0002487782621756196, + -0.012056289240717888, + 0.0182723980396986, + -0.02687162347137928, + 0.017504708841443062, + 0.005544659215956926, + -0.012458701618015766, + -0.023624569177627563, + 0.029399005696177483, + -0.029160406440496445, + 0.023425690829753876, + -0.08827899396419525, + -0.0746087059378624, + 0.040129005908966064, + -0.04530581459403038, + -0.01022469624876976, + 0.004818322136998177, + 0.12142937630414963, + -0.03239511698484421, + -0.02362317405641079, + -0.011338407173752785, + 0.014290943741798401, + -0.00205078162252903, + 0.010145222768187523, + -0.04007406160235405, + 0.08105167001485825, + -0.062382232397794724, + -0.09335649758577347, + 0.06743261218070984, + -2.0095512809348293e-08, + -0.010211117565631866, + 0.024979382753372192, + -0.10097479075193405, + -0.02176523394882679, + 0.007758637424558401, + -0.0909513384103775, + -0.11950261145830154, + -0.030316395685076714, + -0.03449157625436783, + 0.052495166659355164, + -0.003622807329520583, + 0.04064143821597099, + -0.07557363063097, + -0.08930227160453796, + 0.07859937846660614, + -0.014243798330426216, + -0.0470849834382534, + 0.040420178323984146, + -0.035329438745975494, + -0.04789850488305092, + -0.07855632901191711, + 0.017262032255530357, + 0.04131486266851425, + -0.02895924262702465, + 0.01898864097893238, + 0.025193676352500916, + -0.030926063656806946, + 0.01888253726065159, + 0.040543701499700546, + 0.0919853076338768, + 0.02131647802889347, + 0.1028980165719986, + 0.027074744924902916, + -0.013592103496193886, + -0.06801051646471024, + -0.05499175190925598, + 0.06057753786444664, + -0.05378112941980362, + -0.0422569178044796, + 0.04349876195192337, + 0.04720398411154747, + -0.06722523272037506, + 0.0010534540051594377, + -0.00801072921603918, + -0.05387064069509506, + 0.006162362173199654, + 0.1381407082080841, + 0.0716765746474266, + 0.06419520825147629, + -0.023165030404925346, + -0.008242690935730934, + -0.017591126263141632, + 0.021619781851768494, + -0.025132011622190475, + -0.10932588577270508, + 0.04863429814577103, + 0.10687409341335297, + 0.06055522337555885, + 0.015922052785754204, + 0.018989834934473038, + 0.10230880975723267, + -0.023056499660015106, + 0.0731552317738533, + 0.05500634014606476 + ], + "tornado-bold||*new*,meteorology,twister,storm,wind,disaster": [ + -0.049467213451862335, + -0.03868123143911362, + 0.0470128208398819, + 0.050447456538677216, + 0.060651157051324844, + 0.0019273030338808894, + -0.041786544024944305, + -0.028747424483299255, + 0.007665187586098909, + -0.042031429708004, + 0.01642010547220707, + 0.02466697245836258, + 0.020053120329976082, + -0.07102970033884048, + -0.036819539964199066, + 0.055068258196115494, + -0.02690328285098076, + -0.025742867961525917, + -0.018490763381123543, + 0.03278080374002457, + -0.02811938151717186, + 0.08176729083061218, + -0.09709379076957703, + 0.04563271254301071, + 0.09492020308971405, + 0.059912681579589844, + -0.03448156267404556, + 0.0480525828897953, + -0.029617682099342346, + -0.030415158718824387, + 0.03727581724524498, + 0.0001432878925697878, + 0.012883534654974937, + 0.017893852666020393, + 0.07535051554441452, + -0.0017339530168101192, + -0.02865016460418701, + 0.02049562893807888, + -0.05673424154520035, + 0.08934977650642395, + 0.0163844283670187, + -0.01385135855525732, + -0.002956816228106618, + -0.02261718176305294, + -0.03561091423034668, + -0.021347573027014732, + -0.05238240584731102, + -0.009428940713405609, + 0.034922562539577484, + -0.01642848178744316, + -0.024000259116292, + -0.05119425803422928, + -0.10257164388895035, + -0.01587195321917534, + 0.05086233839392662, + -0.010661900043487549, + -0.03363073244690895, + -0.06986169517040253, + 0.012511487118899822, + -0.03917856886982918, + 0.02680649794638157, + 0.04355839267373085, + -0.018052460625767708, + 0.06508731096982956, + 0.06620454043149948, + -0.007581035606563091, + 0.002709574531763792, + 0.08317475020885468, + 0.06466025859117508, + -0.015882039442658424, + -0.01644420437514782, + 0.013622253201901913, + 0.050755735486745834, + 0.0033573100809007883, + 0.0025881661567837, + -0.016926845535635948, + 0.051854413002729416, + -0.01640283688902855, + -0.056294191628694534, + -0.03613888472318649, + -0.01371168252080679, + -0.09129773080348969, + 0.0039320834912359715, + -0.1220453754067421, + 0.026784567162394524, + 0.08291790634393692, + -0.06424003094434738, + -0.008600197732448578, + 0.004390564747154713, + 0.020272571593523026, + -0.06897646188735962, + -0.09519093483686447, + 0.06497418135404587, + 0.05420828238129616, + -0.06423590332269669, + 0.09677625447511673, + 0.028543999418616295, + -0.11237429827451706, + -0.022260744124650955, + 0.08221972733736038, + -0.03503478690981865, + -0.09684852510690689, + 0.05817658454179764, + 0.05703648552298546, + 0.008186071179807186, + -0.03660877048969269, + -0.05108461156487465, + -0.037253428250551224, + -0.03923175111413002, + 0.014154118485748768, + 0.004226046148687601, + -0.00663265073671937, + 0.03629101812839508, + -0.10339011251926422, + 0.016850082203745842, + -0.09163670986890793, + -0.06558144837617874, + -0.019893985241651535, + -0.008439892902970314, + 0.0800090879201889, + 0.04019930213689804, + -0.004713636357337236, + -0.05805603042244911, + 0.0018632181454449892, + 0.014140749350190163, + 0.05854096636176109, + 0.02211608551442623, + -1.997352430130221e-33, + 0.11906887590885162, + 0.00913140457123518, + -0.023800456896424294, + 0.15217798948287964, + 0.03577527031302452, + 0.02605576626956463, + -0.07646812498569489, + -0.07915347069501877, + -0.03159201145172119, + 0.062246643006801605, + 0.03201970085501671, + 0.060577891767024994, + -0.011206223629415035, + 0.057991404086351395, + 0.002350913593545556, + -0.033555466681718826, + 0.008682294748723507, + -0.004957414232194424, + -0.04299112781882286, + 0.017809713259339333, + -0.1269867867231369, + 0.03483077138662338, + -0.0274067223072052, + -0.07306324690580368, + -0.047942258417606354, + -0.0263811107724905, + 0.0611133947968483, + -0.023529164493083954, + -0.041652947664260864, + 0.015605583786964417, + 0.036357756704092026, + 0.01261901669204235, + 0.05313203111290932, + 0.016355033963918686, + -0.014886300079524517, + 0.0028354523237794638, + -0.059418220072984695, + -0.07883421331644058, + 0.012490705586969852, + -0.0009318403317593038, + -0.1144711896777153, + -0.03246701881289482, + -0.14713819324970245, + 0.05227147415280342, + 0.13643591105937958, + 0.04789499565958977, + 0.01887107640504837, + -0.007569379638880491, + -0.017380235716700554, + -0.024459192529320717, + -0.024697910994291306, + -0.004425922874361277, + 0.014003187417984009, + 0.0041253031231462955, + 0.04248404502868652, + 0.03652089461684227, + 0.0611342117190361, + -0.02216305397450924, + 0.041445545852184296, + 0.021048665046691895, + -0.0022725944872945547, + 0.0446665957570076, + 0.031388916075229645, + -0.13243040442466736, + 0.06198126822710037, + 0.006510415114462376, + 0.06625008583068848, + 0.06545103341341019, + 0.020368969067931175, + 0.006015916354954243, + -0.06434789299964905, + 0.03183318302035332, + -0.018932893872261047, + 0.11093129962682724, + 0.04139178246259689, + 0.00839533843100071, + -0.0073934756219387054, + -0.014780714176595211, + -0.004476361442357302, + -0.013212460093200207, + -0.06411134451627731, + -0.015735691413283348, + 0.02761927619576454, + 0.07667645812034607, + -0.01774541474878788, + 0.03598552569746971, + 0.0010286289034411311, + -0.07027179002761841, + -0.05210718885064125, + 0.061686258763074875, + -0.05442509800195694, + 0.03230957314372063, + 0.07449289411306381, + -0.030754240229725838, + -0.05314638838171959, + -5.669585578168516e-34, + -0.041052039712667465, + -0.0015817441744729877, + -0.1476358324289322, + 0.0007445378578267992, + 0.0031724092550575733, + 0.026868918910622597, + -0.05036212131381035, + 0.030023450031876564, + 0.015185924246907234, + -0.026563506573438644, + -0.006764902733266354, + -0.007163347210735083, + -0.028847020119428635, + -0.060277655720710754, + 0.11698313057422638, + -0.0040038269944489, + -0.024617038667201996, + 0.04245185852050781, + -0.06107877939939499, + 0.03989676386117935, + -0.0015508345095440745, + -0.02903481386601925, + -0.1642874926328659, + -0.015528484247624874, + -0.0041307443752884865, + 0.00803963653743267, + 0.010301853530108929, + 0.002698043594136834, + 0.020386075600981712, + -0.03535806015133858, + -0.0589456632733345, + 0.011361157521605492, + 0.04352685436606407, + 0.08994301408529282, + -0.04399416968226433, + 0.11332875490188599, + 0.060447484254837036, + -0.1319151669740677, + -0.0003215006727259606, + -0.06021880358457565, + -0.03409712389111519, + 0.07148803770542145, + 0.08376699686050415, + 0.0180120300501585, + -0.07354473322629929, + 0.06623850017786026, + 0.017316587269306183, + 0.010432854294776917, + -0.039133258163928986, + 0.009502888657152653, + -0.008128095418214798, + -0.02504170499742031, + -0.07986018061637878, + 0.0549190454185009, + -0.004655102733522654, + -0.02113407291471958, + 0.030351029708981514, + -0.13426005840301514, + -0.03938566520810127, + 0.04796700179576874, + -0.03629578277468681, + 0.009578532539308071, + -0.04385659098625183, + 0.0569775328040123, + 0.025442328304052353, + -0.077971450984478, + -0.027836287394165993, + -0.0719260722398758, + -0.05524512380361557, + 0.031802948564291, + 0.02381211146712303, + 0.007431226782500744, + -0.061278510838747025, + -0.03367222473025322, + 0.0842922180891037, + -0.006148869171738625, + 0.006744189187884331, + 0.06311924755573273, + -0.03905470669269562, + 0.024311890825629234, + -0.03952576220035553, + 0.015592389740049839, + -0.039590466767549515, + 0.021966563537716866, + 0.015358680859208107, + 0.048327844589948654, + 0.05286716669797897, + -0.01713128387928009, + 0.05174144729971886, + 0.00228637782856822, + -0.023295344784855843, + 0.012164207175374031, + 0.0185397956520319, + 0.014032882638275623, + 0.00844334065914154, + -2.2131091625965382e-08, + 0.039368875324726105, + 0.031850796192884445, + -0.04988962784409523, + -0.05432238057255745, + 0.0595054067671299, + 0.017938973382115364, + -0.00036253873258829117, + -0.010148610919713974, + -0.05673770606517792, + 0.032778527587652206, + 0.040666840970516205, + 0.05096714571118355, + -0.03165001794695854, + 0.006676322314888239, + 0.04349555820226669, + -0.05464847385883331, + -0.062371984124183655, + 0.009044826030731201, + -0.05908873677253723, + -0.0652376040816307, + 0.04627302661538124, + 0.07198262214660645, + -0.03205392509698868, + -0.03709794208407402, + 0.10652351379394531, + 0.0270732119679451, + -0.02699904702603817, + 0.012295748107135296, + 0.03656051307916641, + 0.0738491415977478, + 0.000764867290854454, + 0.0014446262503042817, + -0.06067122519016266, + -0.04895806685090065, + -0.15847720205783844, + 0.0576648935675621, + 0.002308325143530965, + 0.05279790982604027, + 0.03984307870268822, + 0.053505271673202515, + 0.03263051062822342, + 0.007237550336867571, + -0.00018446621834300458, + 0.03093874827027321, + -0.038176823407411575, + -0.018156472593545914, + 0.04672379791736603, + -0.08835266530513763, + -0.021092528477311134, + -0.11549500375986099, + -0.005348392762243748, + -0.048267800360918045, + 0.04619763791561127, + 0.0559975728392601, + 0.07859165221452713, + 0.010001927614212036, + -0.0013770107179880142, + 0.031800564378499985, + 0.022537829354405403, + -0.023636706173419952, + 0.04314956068992615, + -0.029825912788510323, + -0.05660489201545715, + 0.049160659313201904 + ], + "tote-bold||suitcases,valises,baggage,tote-bag,portfolios": [ + 3.146712742818636e-06, + -2.5319286578451283e-05, + -0.07042154669761658, + 0.046496063470840454, + 0.07270777225494385, + 0.036369796842336655, + 0.15789665281772614, + -0.011824014596641064, + -0.0123978890478611, + 0.01202039048075676, + -0.03782700002193451, + 0.052589528262615204, + 0.030105186626315117, + 0.034826699644327164, + -0.04012362286448479, + 0.04649752005934715, + 0.026207013055682182, + 0.021289262920618057, + -0.03763541579246521, + 0.022789334878325462, + 0.013470549136400223, + 0.01253026258200407, + -0.01197116356343031, + 0.01690659485757351, + 0.025952603667974472, + 0.010766007006168365, + -0.005014638416469097, + -0.04268909618258476, + 0.007096876390278339, + -0.054848313331604004, + -0.03764822334051132, + 0.05105204880237579, + 0.010082563385367393, + 0.04426673427224159, + 0.05007799714803696, + 0.09888331592082977, + 0.0034479594323784113, + -0.03465143218636513, + 0.01033965777605772, + 0.025630421936511993, + -0.034243855625391006, + -0.01134620513767004, + -0.057221271097660065, + 0.059773243963718414, + 0.0012600927148014307, + -0.04213692620396614, + -0.013437792658805847, + -0.002768917940557003, + 0.009141875430941582, + 0.025620369240641594, + 0.04281625896692276, + -0.08415019512176514, + -0.09200301766395569, + -0.03396293893456459, + -0.07595301419496536, + 0.006034613586962223, + -0.06848406046628952, + -0.015064658597111702, + -0.0016506059328094125, + -0.07700780779123306, + 0.02672155201435089, + 0.03422709181904793, + 0.003140053479000926, + 0.0823693573474884, + 0.06108425185084343, + -0.02382313832640648, + 0.015043308958411217, + 0.04374563321471214, + -0.11717721074819565, + 0.009324501268565655, + 0.06529859453439713, + -0.031974829733371735, + -0.0534040741622448, + 0.08906955271959305, + -0.0270994920283556, + 0.0189715176820755, + 0.07736536860466003, + -0.0343521349132061, + -0.03669354319572449, + -0.07028547674417496, + -0.04805595800280571, + -0.021129503846168518, + -0.05967661738395691, + -0.03472648933529854, + 0.001055851113051176, + -0.02880791947245598, + -0.06688005477190018, + -0.037263356149196625, + 0.01732339709997177, + -0.00859716348350048, + -0.04497523233294487, + -0.023317493498325348, + 0.061731744557619095, + 0.1000257134437561, + -0.1266288310289383, + 0.028094125911593437, + 0.02911273203790188, + 0.06924676150083542, + -0.051626577973365784, + 0.04253072291612625, + 0.026983927935361862, + 0.05757782608270645, + 0.06377699226140976, + 0.0461554154753685, + -0.031559158116579056, + -0.021135786548256874, + 0.019569000229239464, + -0.06743279099464417, + 0.009394691325724125, + 0.006249400321394205, + -0.0709800124168396, + -0.02518385462462902, + 0.047479983419179916, + -0.09450521320104599, + -0.07989603281021118, + -0.0017947335727512836, + -0.07785839587450027, + 0.051783084869384766, + 0.06162084639072418, + 0.02334398776292801, + 0.04465119168162346, + -0.004897929262369871, + 0.05464594066143036, + -0.009546791203320026, + -0.07961146533489227, + -0.04999155178666115, + -0.008853069506585598, + -8.340564045916072e-34, + 0.011117047630250454, + 0.07671307027339935, + -0.0310145765542984, + 0.20834018290042877, + -0.0767330452799797, + -0.05943727865815163, + 0.00641289446502924, + -0.0225072018802166, + -0.08594217151403427, + 0.11441483348608017, + -0.020371781662106514, + 0.08171084523200989, + -0.044350698590278625, + 0.06514604389667511, + 0.05516490340232849, + -0.021921981126070023, + 0.010300865396857262, + -0.003776977304369211, + -0.008063556626439095, + -0.04191521927714348, + -0.1385827660560608, + 0.0031177119817584753, + 0.01888386905193329, + -0.016214998438954353, + 0.061806198209524155, + -0.05216105282306671, + 0.042946040630340576, + -0.06765008717775345, + -0.03265893831849098, + 0.05425082892179489, + 0.03465147688984871, + 0.029575204476714134, + 0.034962814301252365, + 0.03050546534359455, + -0.08490720391273499, + 0.007357883732765913, + -0.011927274987101555, + 0.005826767534017563, + 0.0019552239682525396, + 0.04080241173505783, + 0.004607921000570059, + -0.033892907202243805, + -0.014210747554898262, + 0.023791508749127388, + 0.016156036406755447, + 0.07313574850559235, + 0.03535064682364464, + 0.02302461862564087, + 0.00806379597634077, + -0.01423749327659607, + -0.03457363322377205, + -0.04955364391207695, + -0.0009133858839049935, + -0.03126499056816101, + -0.0177825428545475, + -0.008115679025650024, + 0.004252259153872728, + 0.06850729137659073, + 0.0393928699195385, + -0.019400089979171753, + 0.05926751717925072, + 0.04018159210681915, + 0.02172800526022911, + 0.0392986498773098, + -0.014397767372429371, + 0.02775067463517189, + 0.024120591580867767, + -0.02387501671910286, + 0.05355791375041008, + -0.030326703563332558, + -0.09019999206066132, + 0.12416063249111176, + 0.11195718497037888, + 0.07018648833036423, + 0.020985662937164307, + -0.022022901102900505, + 0.03753170743584633, + -0.010144917294383049, + -0.0025314821396023035, + -0.09627828001976013, + -0.04852234944701195, + -0.021771488711237907, + -0.007687195669859648, + 0.13759073615074158, + -0.03206261992454529, + 0.007290201261639595, + 0.06220239773392677, + -0.03638956695795059, + -0.012422303669154644, + 0.011425145901739597, + -0.07145722955465317, + 0.03171965852379799, + -0.025830455124378204, + -0.15531004965305328, + -0.015827514231204987, + 3.3581193154448643e-35, + 0.06300216913223267, + 0.000933583767618984, + -0.11508475244045258, + 0.020912323147058487, + 0.024736013263463974, + -0.014463236555457115, + -0.01804634928703308, + 0.012171659618616104, + -0.005088296718895435, + -0.0009897249983623624, + 0.007707206532359123, + -0.13522319495677948, + -0.01555553823709488, + -0.07231888175010681, + 0.004308436997234821, + 0.038383159786462784, + 0.004126234445720911, + -0.003299138741567731, + -0.06520558148622513, + -0.06335514038801193, + -0.027773499488830566, + -0.030010851100087166, + -0.035868965089321136, + 0.019627103582024574, + -0.10092271119356155, + 0.05253603681921959, + -0.05557161569595337, + -0.03985929116606712, + -0.01610565558075905, + 0.05810893326997757, + 0.029522698372602463, + -0.01985137164592743, + 0.07955487072467804, + 0.05779072642326355, + -0.08412040024995804, + 0.042153675109148026, + 0.003327225102111697, + 0.021160338073968887, + 0.011052321642637253, + 0.036684803664684296, + -0.01834885962307453, + -0.020944828167557716, + 0.0318714939057827, + -0.005589981563389301, + -0.02770133875310421, + -0.07737541943788528, + -0.03725642338395119, + -0.06878013163805008, + 0.09430919587612152, + -0.03995288908481598, + 0.0608416423201561, + 0.013569572940468788, + -0.07393378019332886, + 0.022532209753990173, + -0.012357186526060104, + 0.0195709727704525, + -0.011899508535861969, + -0.0793859213590622, + 0.008321724832057953, + -0.0032292651012539864, + 0.023412514477968216, + 0.09250202029943466, + 0.0040793512016534805, + -0.0274981539696455, + -0.008375012315809727, + -0.025424081832170486, + -0.08150624483823776, + -0.055583469569683075, + -0.043442949652671814, + 0.011158045381307602, + 0.012426077388226986, + -0.09232299029827118, + 0.04282178729772568, + 0.044246856123209, + 0.033078260719776154, + -0.06940232217311859, + 0.09681056439876556, + -0.007498882245272398, + 0.07388032227754593, + -0.05777302756905556, + -0.042657334357500076, + -0.032841164618730545, + -0.02072865702211857, + 0.10882946103811264, + 0.05774209648370743, + 0.04092319682240486, + -0.030341804027557373, + 0.020300306379795074, + 0.015309993177652359, + -0.040895186364650726, + 0.023081965744495392, + 0.01972607895731926, + 0.016486477106809616, + 0.0013233711943030357, + -0.0012387206079438329, + -2.187800696162867e-08, + 0.005494964774698019, + -0.020012015476822853, + -0.03157363086938858, + -0.012553845532238483, + -0.06798217445611954, + -0.012461096979677677, + 0.04539353400468826, + 0.021559197455644608, + -0.0062751867808401585, + -0.04422181099653244, + 0.041968852281570435, + 0.004595134407281876, + -0.1199406087398529, + -0.005316957365721464, + 0.01892518624663353, + 0.05248885974287987, + -0.06386957317590714, + 0.11543766409158707, + -0.08594129234552383, + -0.07886706292629242, + 0.022669970989227295, + 0.07315409183502197, + 0.018446842208504677, + -0.07621760666370392, + 0.019441602751612663, + 0.04780561476945877, + -0.07583402097225189, + -0.027341723442077637, + 0.14492464065551758, + 0.06691217422485352, + 0.0331781841814518, + 0.013171442784368992, + -0.055030107498168945, + -0.039636313915252686, + -0.009266241453588009, + 0.03193683177232742, + 0.010408172383904457, + -0.03756088390946388, + 0.03699437528848648, + 0.143382266163826, + -0.02089020609855652, + -0.06834245473146439, + -0.044932134449481964, + 0.04854050651192665, + 0.0086830360814929, + 0.015530673786997795, + -0.028503526002168655, + 0.042468488216400146, + -0.046076852828264236, + -0.06645283848047256, + -0.035217657685279846, + -0.046342767775058746, + -0.00014984409790486097, + 0.025368010625243187, + -0.00524870865046978, + -0.001702737994492054, + 0.01571882888674736, + 0.07194522023200989, + 0.028584422543644905, + -1.5047288798086811e-05, + 0.026883430778980255, + -0.028204139322042465, + -0.014669324271380901, + -0.014438881538808346 + ], + "tote-simple-bold||suitcases,valises,baggage,tote-bag,portfolios": [ + 0.005342142190784216, + 0.0035329265519976616, + -0.06259026378393173, + 0.055629946291446686, + 0.07352878898382187, + 0.031371958553791046, + 0.14198268949985504, + 0.0003722702094819397, + -0.025826815515756607, + 0.0197004321962595, + -0.036771148443222046, + 0.04377277195453644, + 0.027853848412632942, + 0.03561773896217346, + -0.04154583439230919, + 0.03984631225466728, + 0.015175103209912777, + 0.009509485214948654, + -0.033711012452840805, + 0.028720634058117867, + -0.006853895261883736, + 0.002968133892863989, + -0.026029687374830246, + 0.014795461669564247, + 0.02049320936203003, + 0.014095700345933437, + -0.004410328343510628, + -0.029153186827898026, + 0.01962636038661003, + -0.058220669627189636, + -0.031541891396045685, + 0.04834412410855293, + 0.016136381775140762, + 0.04227321967482567, + 0.048222508281469345, + 0.09276468306779861, + 0.008220432326197624, + -0.028301449492573738, + 0.0017456081695854664, + 0.022989798337221146, + -0.04108255356550217, + -0.013550703413784504, + -0.05115123465657234, + 0.07239574939012527, + -0.011736985296010971, + -0.04303257539868355, + -0.015228298492729664, + -0.0020210614893585443, + 0.013215243816375732, + 0.013413685373961926, + 0.04849300533533096, + -0.07974860072135925, + -0.0935247391462326, + -0.04525472968816757, + -0.07292875647544861, + 0.005419151857495308, + -0.08076301962137222, + -0.005913872271776199, + 0.0014470982132479548, + -0.08269768953323364, + 0.04083700478076935, + 0.02065282315015793, + 0.006278953980654478, + 0.07941576838493347, + 0.056935667991638184, + -0.024725263938307762, + 0.005085643380880356, + 0.039533987641334534, + -0.11318306624889374, + 0.006518603768199682, + 0.06492067873477936, + -0.041248075664043427, + -0.07237360626459122, + 0.0963338240981102, + -0.020319640636444092, + 0.0049259597435593605, + 0.06578086316585541, + -0.029433131217956543, + -0.04668169841170311, + -0.05409053713083267, + -0.06558860838413239, + -0.031297702342271805, + -0.0694013386964798, + -0.021167991682887077, + 0.005778399761766195, + -0.031459975987672806, + -0.07004323601722717, + -0.0323496013879776, + 0.028762947767972946, + -0.008893271908164024, + -0.037342388182878494, + -0.005124298390001059, + 0.06853387504816055, + 0.10164805501699448, + -0.12227132171392441, + 0.023055879399180412, + 0.04228568077087402, + 0.07261109352111816, + -0.07800889760255814, + 0.049419064074754715, + 0.024650758132338524, + 0.0651409700512886, + 0.085421122610569, + 0.03414897248148918, + -0.026096828281879425, + -0.019225526601076126, + 0.02475075237452984, + -0.07396259158849716, + 0.0059415437281131744, + -0.01121049840003252, + -0.07619503140449524, + -0.029777828603982925, + 0.051545798778533936, + -0.09270681440830231, + -0.07580720633268356, + -0.005788514390587807, + -0.08079349249601364, + 0.042955029755830765, + 0.059062350541353226, + 0.03979368880391121, + 0.047407474368810654, + -0.005247871391475201, + 0.043696872889995575, + -0.005309166386723518, + -0.0805080235004425, + -0.04047531634569168, + -0.0009648100822232664, + -1.0430586573193369e-33, + 0.017379295080900192, + 0.09335603564977646, + -0.031765472143888474, + 0.21381597220897675, + -0.07015016674995422, + -0.06397190690040588, + -0.00129704549908638, + -0.023406198248267174, + -0.08637236058712006, + 0.11822647601366043, + 0.0017568576149642467, + 0.07541746646165848, + -0.04410500079393387, + 0.07250691205263138, + 0.06151053309440613, + -0.02220846898853779, + 0.017246026545763016, + -0.007489052601158619, + -0.010923236608505249, + -0.05186661332845688, + -0.1432703137397766, + 0.029078401625156403, + 0.020008185878396034, + -0.03449825942516327, + 0.0604773685336113, + -0.0499773845076561, + 0.04859660193324089, + -0.0689954161643982, + -0.026530927047133446, + 0.05113483592867851, + 0.034920647740364075, + 0.02946728840470314, + 0.03310748189687729, + 0.035286661237478256, + -0.08631086349487305, + 0.004501629155129194, + 0.0006720070960000157, + 0.00950410682708025, + -0.002118152566254139, + 0.0290532149374485, + -0.005204982124269009, + -0.031630996614694595, + -0.007868423126637936, + 0.02145054191350937, + 0.022882899269461632, + 0.07324694097042084, + 0.03843114152550697, + 0.014337727800011635, + 0.011845425702631474, + -0.019604507833719254, + -0.042979877442121506, + -0.04597533121705055, + -0.004928602837026119, + -0.021425321698188782, + -0.012865010648965836, + 0.0030123332981020212, + 0.00474654883146286, + 0.06904831528663635, + 0.03767568618059158, + -0.01606835052371025, + 0.059146713465452194, + 0.04920788109302521, + 0.011349198408424854, + 0.041775915771722794, + -0.017705276608467102, + 0.0358499251306057, + 0.021891077980399132, + -0.02556600421667099, + 0.052989713847637177, + -0.022879621013998985, + -0.08820152282714844, + 0.12343619763851166, + 0.11041730642318726, + 0.04861142486333847, + 0.03662708401679993, + -0.010901778936386108, + 0.05858774110674858, + -0.029961179941892624, + -0.008006385527551174, + -0.09264000505208969, + -0.04691040888428688, + -0.014553979970514774, + -0.006277757231146097, + 0.14729568362236023, + -0.04970526322722435, + 0.006674278061836958, + 0.059710774570703506, + -0.021647199988365173, + -0.027276597917079926, + 0.0117225032299757, + -0.0768209770321846, + 0.03656691312789917, + -0.023876167833805084, + -0.15284954011440277, + -0.01484092976897955, + 3.1781739744136414e-34, + 0.06066201627254486, + -0.010065324604511261, + -0.11640641838312149, + 0.022213172167539597, + 0.02714863233268261, + -0.0068099540658295155, + -0.0091097392141819, + 0.010246103629469872, + -0.003401166759431362, + 0.007958946749567986, + 0.006029345560818911, + -0.13580553233623505, + -0.019938141107559204, + -0.06631655246019363, + 0.004389908630400896, + 0.04674311727285385, + -0.002027373295277357, + 0.007683381903916597, + -0.05522459000349045, + -0.062263425439596176, + -0.013167575933039188, + -0.0205230675637722, + -0.04581448808312416, + 0.006049474701285362, + -0.0942971408367157, + 0.059071190655231476, + -0.06710770726203918, + -0.029494961723685265, + -0.019366316497325897, + 0.054128434509038925, + 0.023165183141827583, + -0.03243609145283699, + 0.08092011511325836, + 0.04368012398481369, + -0.08381520211696625, + 0.04446972906589508, + -0.014585119672119617, + 0.024171261116862297, + 0.012838787399232388, + 0.028928488492965698, + -0.026844557374715805, + -0.019090695306658745, + 0.03887157142162323, + -0.01681375876069069, + -0.019648652523756027, + -0.08402298390865326, + -0.027000200003385544, + -0.0753578245639801, + 0.08039058744907379, + -0.04768133535981178, + 0.05486941710114479, + 0.0044720652513206005, + -0.07619553059339523, + 0.025877133011817932, + -0.005827928427606821, + 0.023175464943051338, + -0.0015677670016884804, + -0.068039670586586, + 0.008171949535608292, + 0.0013065279927104712, + 0.016024166718125343, + 0.09724964201450348, + -0.017237648367881775, + -0.027494054287672043, + -0.008661173284053802, + -0.026441384106874466, + -0.08106005936861038, + -0.06169746816158295, + -0.04901321977376938, + 0.006967326160520315, + 0.015819348394870758, + -0.0806993842124939, + 0.051643095910549164, + 0.029860664159059525, + 0.03562285378575325, + -0.06987477093935013, + 0.09776894003152847, + -0.009830910712480545, + 0.07769915461540222, + -0.06571334600448608, + -0.03056154027581215, + -0.03845979645848274, + -0.021235967054963112, + 0.09399252384901047, + 0.06156308576464653, + 0.035405728965997696, + -0.028983237221837044, + 0.015473921783268452, + 0.013300370424985886, + -0.027168430387973785, + 0.013424083590507507, + 0.03035558946430683, + 0.03238886594772339, + 0.00883517600595951, + -0.00857571605592966, + -2.2455587611602823e-08, + 0.003146538743749261, + -0.03455502912402153, + -0.037144772708415985, + -0.014532473869621754, + -0.05858125910162926, + -0.017496995627880096, + 0.04604339227080345, + 0.018035132437944412, + -0.008469776250422001, + -0.03280659019947052, + 0.038141973316669464, + -0.005124146584421396, + -0.12334335595369339, + 0.014968972653150558, + 0.0022806047927588224, + 0.06904838979244232, + -0.06799131631851196, + 0.11850430071353912, + -0.07853789627552032, + -0.07852496951818466, + 0.026383893564343452, + 0.07341455668210983, + 0.011488922871649265, + -0.0739443376660347, + 0.013351126573979855, + 0.048140935599803925, + -0.07276149839162827, + -0.011895502917468548, + 0.1469966322183609, + 0.061512161046266556, + 0.03184464946389198, + 0.019418304786086082, + -0.05093224346637726, + -0.029366975650191307, + -0.022138752043247223, + 0.03943725675344467, + 0.000846241891849786, + -0.03686585649847984, + 0.0206399355083704, + 0.12152814865112305, + -0.017765723168849945, + -0.05871002376079559, + -0.04312705248594284, + 0.03981401398777962, + 0.01309235766530037, + 0.013198978267610073, + -0.021665535867214203, + 0.031417496502399445, + -0.043018557131290436, + -0.06927134841680527, + -0.03367239981889725, + -0.04708153009414673, + 0.006629680749028921, + 0.017954111099243164, + -0.003418260719627142, + 0.003566848812624812, + 0.021414361894130707, + 0.07618103921413422, + 0.01567656174302101, + 0.005026551894843578, + 0.032930344343185425, + 6.432605732697994e-05, + -0.02055775746703148, + -0.010554540902376175 + ], + "towel-bold||*new*,clothing,linen,hotel,beach,pool,swimming,shower,bath": [ + -0.017352228984236717, + -0.005642267409712076, + 0.025348110124468803, + 0.05265761911869049, + 0.08836359530687332, + 0.0010898218024522066, + 0.08223173022270203, + -0.0824485793709755, + -0.021361881867051125, + 0.011026211082935333, + 0.08108334988355637, + -0.04804723709821701, + 0.001732789445668459, + 0.06266424059867859, + 0.05777963623404503, + -0.018651120364665985, + 0.02870427817106247, + 0.04598382115364075, + -0.0026211924850940704, + 0.01628371700644493, + 0.025125401094555855, + 0.07757352292537689, + 0.03175197169184685, + 0.009766897186636925, + 0.04856409877538681, + 0.030684081837534904, + 0.03339838609099388, + -0.0048376149497926235, + -0.008267847821116447, + -0.04568225145339966, + -0.010282307863235474, + 0.0651896670460701, + 0.1003311350941658, + -0.03256175294518471, + 0.08808159083127975, + 0.039622485637664795, + -0.019438738003373146, + -0.10768968611955643, + -0.013842317275702953, + 0.05320974811911583, + -0.035849764943122864, + -0.05308334529399872, + -0.02943502739071846, + 0.06010623276233673, + 0.027472997084259987, + 0.002393766539171338, + 0.06463615596294403, + 0.03455936908721924, + 0.0632394403219223, + 0.06808798015117645, + -0.00910819973796606, + -0.013720397837460041, + -0.10171918570995331, + 0.0010099170031026006, + -0.0032601060811430216, + -0.004258312284946442, + -0.03494061902165413, + -0.08036928623914719, + 0.02516508288681507, + 0.019992951303720474, + 0.04804283007979393, + -0.002118416130542755, + 0.033663827925920486, + 0.05670050531625748, + 0.043580878525972366, + -0.01826213300228119, + -0.03592829033732414, + 0.09280513226985931, + -0.03822456672787666, + -0.0034203308168798685, + -0.06791670620441437, + 0.06112883239984512, + 0.006690098438411951, + 0.07953699678182602, + -0.0380336195230484, + -0.04071516543626785, + 0.023215744644403458, + 0.038995422422885895, + -0.04953024163842201, + -0.02371639385819435, + -0.1266370713710785, + -0.13539204001426697, + 0.0009087971993722022, + 0.03908355534076691, + 0.01022686343640089, + 0.04038538411259651, + -0.035551171749830246, + -0.10680694878101349, + -0.01139145065099001, + -0.021877717226743698, + -0.0867740660905838, + -0.0743350014090538, + -0.037017181515693665, + 0.017999382689595222, + -0.11022920161485672, + 0.1019391193985939, + -0.08203352987766266, + 0.026794439181685448, + 0.0019186558201909065, + 0.0674404725432396, + -0.009224800392985344, + 0.02502869814634323, + 0.07029727101325989, + 0.04786011949181557, + -0.05129751190543175, + -0.09040015190839767, + -0.010779650881886482, + 0.017460912466049194, + 0.013529549352824688, + 0.009909246116876602, + -0.016210390254855156, + -0.09514310210943222, + -0.025814946740865707, + -0.041744403541088104, + -0.036764517426490784, + -0.008634078316390514, + 0.07018599659204483, + -0.010905695147812366, + 0.06019660457968712, + 0.14934325218200684, + 0.034534577280282974, + -0.03440803661942482, + 0.026069190353155136, + -0.043135229498147964, + -0.14313198626041412, + -0.0014122430002316833, + 0.061596810817718506, + -2.2784134967538147e-33, + -0.002772100968286395, + 0.017064327374100685, + 0.03332553431391716, + 0.09906791150569916, + -0.01404415350407362, + 0.00540959881618619, + -0.054579995572566986, + -0.043890371918678284, + -0.006743537727743387, + 0.02840581163764, + 0.024655133485794067, + 0.01357333641499281, + -0.0363909937441349, + 0.0831921249628067, + 0.047620438039302826, + 0.0327640138566494, + 0.023654932156205177, + -0.09057149291038513, + 0.02002057246863842, + -0.0031375300604850054, + -0.0397752970457077, + 0.07935287058353424, + 0.012334379367530346, + -0.027006477117538452, + -0.027431970462203026, + -0.06759267300367355, + 0.0211647879332304, + -0.03311704099178314, + -0.030975928530097008, + 0.037106748670339584, + -0.012420629151165485, + -0.055905260145664215, + 0.08347489684820175, + 0.037968434393405914, + -0.046742696315050125, + 0.061433419585227966, + -0.054088979959487915, + 0.004029486794024706, + 0.016958408057689667, + 0.03653327003121376, + -0.0776338279247284, + -0.005159684456884861, + -0.0027332708705216646, + 0.0665784478187561, + 0.03666875138878822, + 0.04260515049099922, + -0.0058124372735619545, + 0.014771796762943268, + 0.013549493625760078, + 0.0353945717215538, + 0.01682550460100174, + 0.023963365703821182, + 0.014647756703197956, + -0.0058505954220891, + -0.032483018934726715, + -0.0785069614648819, + -0.011758281849324703, + 0.04750770330429077, + -0.05949084088206291, + -0.00202041189186275, + 0.0590234100818634, + 0.07552006840705872, + -0.007345824968069792, + -0.0012808437459170818, + -0.024209171533584595, + 0.034194253385066986, + 0.02826271578669548, + 0.01548377051949501, + 0.02328488789498806, + -0.04770547151565552, + -0.12269140779972076, + 0.09672804921865463, + 0.04925953224301338, + 0.11470796167850494, + 0.023099029436707497, + -0.03236690163612366, + 0.029045218601822853, + 0.01651897095143795, + -0.0012579590547829866, + -0.09190382808446884, + -0.030118292197585106, + 0.036158762872219086, + -0.027209976688027382, + 0.19670827686786652, + -0.09760843962430954, + 0.05185238644480705, + 0.01996472291648388, + -0.008325100876390934, + 0.006407736334949732, + -0.05974398925900459, + -0.05398852750658989, + 0.050376761704683304, + 0.05936766043305397, + -0.09051784873008728, + -0.04998518154025078, + -1.3121942419183422e-33, + 0.09473440051078796, + -0.025546252727508545, + -0.039382897317409515, + -0.01341453567147255, + 0.0013563295360654593, + 0.036973804235458374, + -0.0419098436832428, + 0.01108895055949688, + -0.06532102823257446, + -0.006010114680975676, + -0.03985164314508438, + -0.05731387063860893, + -0.05867684260010719, + -0.09481250494718552, + 0.047349050641059875, + 0.08011294901371002, + 0.06646724790334702, + 0.0006782186683267355, + -0.030732305720448494, + 0.03290951997041702, + -0.003889368614181876, + 0.05399025231599808, + 0.05684155970811844, + -0.002144173253327608, + -0.05993036553263664, + -0.013095167465507984, + 0.06145268678665161, + -0.004500819835811853, + -0.07651740312576294, + -0.019314244389533997, + -0.060191698372364044, + -0.046972744166851044, + 0.0641775131225586, + 0.08649823814630508, + -0.029352853074669838, + 0.00928417406976223, + 0.018743332475423813, + -0.07303024083375931, + -0.03930448368191719, + 0.021528953686356544, + 0.044450171291828156, + -0.0991683304309845, + 0.033140335232019424, + 0.0536973737180233, + -0.02906433306634426, + 0.012763883918523788, + -0.13919073343276978, + -0.06274466961622238, + -0.0780891478061676, + 0.03352661058306694, + 0.021904045715928078, + -0.05334877967834473, + -0.06629739701747894, + -0.03825754299759865, + -0.01584302820265293, + -0.00021970704256091267, + -0.0735783651471138, + -0.018404334783554077, + -0.05732220038771629, + 0.10507607460021973, + -0.022360725328326225, + 0.06759980320930481, + -0.050409577786922455, + 0.038330454379320145, + 0.025641508400440216, + -0.026581261307001114, + -0.07287424057722092, + -0.004040389321744442, + -0.09815758466720581, + 0.030877145007252693, + -0.057741109281778336, + -0.002061091363430023, + -0.06469591706991196, + -0.025179682299494743, + 0.02598215825855732, + -0.03268710523843765, + 0.041000403463840485, + -0.029464129358530045, + -0.07157892733812332, + 0.033973030745983124, + -0.06031297519803047, + -0.022891784086823463, + -0.09288279712200165, + 0.03638196736574173, + 0.05461261048913002, + -0.05095064267516136, + -0.06654717773199081, + 0.015384216792881489, + 0.0227305106818676, + -0.004795103799551725, + -0.04456811398267746, + 0.00623310636729002, + -0.05409276485443115, + 0.031430717557668686, + -0.009303814731538296, + -2.3473919696925805e-08, + -0.03071778453886509, + 0.010552020743489265, + -0.013952487148344517, + -0.008191867731511593, + 0.03737948089838028, + -0.03739146888256073, + -0.06617138534784317, + -0.0003500871534924954, + -0.009110750630497932, + -0.0060657598078250885, + 0.025154858827590942, + 0.04559168592095375, + 0.013957695104181767, + 0.04394818842411041, + -0.04212803393602371, + 0.049800463020801544, + 0.007642827928066254, + 0.028980499133467674, + -0.03619224578142166, + -0.08257519453763962, + 0.0012620589695870876, + 0.007014164701104164, + -0.004829844925552607, + 0.03364009037613869, + 0.044710297137498856, + -0.016249848529696465, + -0.06139788404107094, + 0.020261185243725777, + 0.045817553997039795, + 0.008856075815856457, + 0.08431535214185715, + -0.04086604714393616, + -0.02660829946398735, + 0.0294078066945076, + -0.1223999410867691, + -0.01721302792429924, + 0.029107894748449326, + -0.0793180763721466, + -0.06369142979383469, + 0.07772313058376312, + -0.03860974684357643, + -0.036415256559848785, + -0.05613115429878235, + 0.004970930516719818, + 0.03067517653107643, + -0.050006214529275894, + 0.05815785378217697, + -0.027305759489536285, + -0.03635203465819359, + -0.06101249158382416, + -0.029425768181681633, + -0.06353640556335449, + 0.06654677540063858, + 0.059652578085660934, + 0.0010443844366818666, + 0.002954605733975768, + -0.0032918760553002357, + 0.03728758171200752, + 0.011234551668167114, + 0.04000457376241684, + 0.046818267554044724, + -0.04046647250652313, + -0.027076097205281258, + 0.024845952168107033 + ], + "tractor-bold||*new*,vehicles,farmer,field,farming,agriculture": [ + -0.014846020378172398, + -0.020763661712408066, + -0.0025077289901673794, + 0.01792576164007187, + 0.05882652848958969, + -0.010557572357356548, + -0.04120898246765137, + -0.08976539224386215, + -0.046540580689907074, + 0.007627089507877827, + 0.10780514776706696, + 0.012348187156021595, + 0.049386151134967804, + -0.0663006454706192, + -0.051875341683626175, + 0.10159508138895035, + 0.018246585503220558, + 0.033140990883111954, + -0.0194486565887928, + -0.060940731316804886, + -0.0007165492861531675, + 0.10243069380521774, + -0.036616429686546326, + 0.031421367079019547, + 0.061657894402742386, + 0.04151086136698723, + -0.007394121959805489, + 0.051709093153476715, + -0.040766581892967224, + -0.053154390305280685, + -0.08065679669380188, + 0.06328143924474716, + 0.09376923739910126, + 0.04872996732592583, + 0.04302903264760971, + 0.04880206286907196, + 0.02830427698791027, + 0.004910605493932962, + 0.02219095081090927, + 0.03222307190299034, + 0.0268703605979681, + -0.1125163808465004, + 0.002852232428267598, + -0.022931532934308052, + -0.016249243170022964, + 0.008851245045661926, + -0.02032381482422352, + -0.04341896250844002, + 0.10712911188602448, + -0.012678666971623898, + -0.0113918362185359, + -0.11218101531267166, + -0.07826834917068481, + 0.013307807967066765, + 0.023602701723575592, + 0.011950064450502396, + -0.0841534361243248, + 0.007425213698297739, + -0.013408840633928776, + 0.02062528021633625, + 0.016432786360383034, + 0.030690137296915054, + 0.03907076641917229, + 0.03083881549537182, + 0.02295924536883831, + -0.04171474650502205, + -0.0933947041630745, + 0.01245853677392006, + -0.0634067952632904, + 0.042153116315603256, + 0.039426613599061966, + 0.027756420895457268, + 0.001229580957442522, + -0.042344823479652405, + -0.096859872341156, + -0.020401017740368843, + 0.035648148506879807, + 0.04072270169854164, + 0.054134003818035126, + -0.07263790816068649, + -0.06083359196782112, + -0.017883921042084694, + -0.032755400985479355, + -0.07067243754863739, + -0.05215976759791374, + 0.03349095955491066, + -0.04346089065074921, + -0.01310606487095356, + 0.00972334947437048, + -0.057936422526836395, + -0.10048176348209381, + -0.1340520828962326, + -0.023229701444506645, + 0.07792150974273682, + -0.08789290487766266, + 0.047265905886888504, + 0.03593597933650017, + -0.07368680834770203, + -0.007851624861359596, + 0.03669355809688568, + 0.035735804587602615, + 0.004445910453796387, + 0.05526524782180786, + -0.011944547295570374, + -0.08142005652189255, + 0.03014553152024746, + -0.14733365178108215, + 0.007874157279729843, + -0.012620540335774422, + 0.042226847261190414, + 0.030109550803899765, + -0.03806376829743385, + -0.08562739193439484, + -0.026332255452871323, + -0.10826057940721512, + 0.003318669041618705, + -0.10315389186143875, + -0.0572064034640789, + 0.01173984445631504, + 0.08356541395187378, + 0.03478330373764038, + -0.0173712857067585, + 0.0053039174526929855, + -0.0095836715772748, + 0.04596776142716408, + 0.023139532655477524, + 0.03829958662390709, + -2.8028424852869236e-33, + -0.02994365617632866, + -0.0002923655847553164, + -0.0009846949251368642, + 0.0925946906208992, + 0.0006171915447339416, + 0.0025723304133862257, + -0.01607433333992958, + -0.013134862296283245, + -0.027297331020236015, + 0.004395252093672752, + -0.005577520001679659, + 0.032873038202524185, + -0.022035982459783554, + -0.0013403561897575855, + 0.05408467352390289, + -0.08284112066030502, + -0.05820059776306152, + -0.05079781264066696, + -0.0286819189786911, + 0.03160189837217331, + -0.09459569305181503, + 0.10107018798589706, + -0.058451954275369644, + -0.006718637887388468, + 0.006770561449229717, + -0.0491265170276165, + 0.08610821515321732, + -0.10217349231243134, + -0.012281065806746483, + 0.058193206787109375, + 0.07189006358385086, + 0.013089345768094063, + 0.0369824543595314, + 0.010091199539601803, + -0.029580850154161453, + 0.03197474032640457, + -0.04439767077565193, + -0.08249428123235703, + -0.04197297617793083, + 0.03594018518924713, + -0.06722469627857208, + -0.04993002116680145, + 0.017786789685487747, + -0.035452183336019516, + 0.015720391646027565, + 0.10675295442342758, + 0.02709938772022724, + 0.02785198763012886, + -0.03712742403149605, + 0.06235326826572418, + -0.01770836114883423, + 0.014422329142689705, + 0.03712483495473862, + -0.005501352250576019, + 0.01100219413638115, + -0.008958166465163231, + -0.013258462771773338, + 0.05498996376991272, + -0.028978129848837852, + 0.006262731738388538, + -0.008982568979263306, + 0.019508792087435722, + -0.0072870636358857155, + -0.010587282478809357, + -0.04148518666625023, + 0.012942668050527573, + -0.014213775284588337, + 0.025592414662241936, + 0.07662741094827652, + 0.13706046342849731, + 0.03519062325358391, + -0.007745022885501385, + -0.03966503217816353, + 0.08031966537237167, + 0.0300393458455801, + 0.013080540113151073, + 0.03281708061695099, + 0.0037679176311939955, + -0.027164999395608902, + -0.07330966740846634, + -0.11295805126428604, + 0.009857719764113426, + -0.10774721950292587, + 0.09561749547719955, + -0.030525600537657738, + -0.0030243766959756613, + -0.04091447591781616, + -0.04167823866009712, + 0.011836296878755093, + 0.015425329096615314, + -0.09451641142368317, + 0.06363595277070999, + -0.05960853770375252, + -0.031589191406965256, + -0.01990671269595623, + -1.5392698121254606e-33, + 0.02269269898533821, + 0.05838201195001602, + -0.021196451038122177, + 0.02156675234436989, + 0.009472544305026531, + -0.00551630649715662, + 0.03468232601881027, + 0.002404360566288233, + 0.023784834891557693, + 0.04130201414227486, + -0.031105533242225647, + 0.0402081236243248, + -0.06665927916765213, + -0.017182203009724617, + 0.015108323656022549, + -0.02465454488992691, + -0.05841654911637306, + 0.04962068051099777, + -0.009798199869692326, + 0.05421900004148483, + -0.0652589499950409, + 0.04650859534740448, + -0.04446275159716606, + 0.052308373153209686, + 0.03209657967090607, + 0.01355772279202938, + -0.07953858375549316, + 0.010913161560893059, + -0.06602093577384949, + -0.03656236454844475, + -0.041926633566617966, + -0.1456693708896637, + 0.04366597533226013, + 0.1117674857378006, + -0.0917135626077652, + 0.04223738983273506, + 0.037229154258966446, + -0.08638617396354675, + 0.020574748516082764, + 0.01538656372576952, + 0.05392028018832207, + -0.045559994876384735, + 0.02849702723324299, + 0.09654677659273148, + -0.10110244154930115, + -0.09672018885612488, + -0.023074418306350708, + -0.004329438786953688, + 0.03247501328587532, + 0.05470500513911247, + 0.0034980452619493008, + 0.042145323008298874, + -0.014711868949234486, + -0.007850399240851402, + -0.05836983397603035, + -0.0022840765304863453, + 0.02545301429927349, + -0.011941114440560341, + -0.07569586485624313, + 0.07503320276737213, + -0.019191911444067955, + 0.03280012309551239, + -0.01836169697344303, + 0.10138586163520813, + 0.015879688784480095, + -0.10188701003789902, + -0.017810707911849022, + -0.029281530529260635, + -0.0031478607561439276, + -0.0631496012210846, + -0.01592594012618065, + 0.010371820069849491, + -0.017967872321605682, + 0.027763603255152702, + -0.014454200863838196, + -0.03443277254700661, + 0.019224954769015312, + 0.0195410568267107, + 0.01537952572107315, + -0.027170877903699875, + 0.017983319237828255, + -0.08707039803266525, + 0.040302641689777374, + 0.11626148223876953, + 0.011969165876507759, + 0.06775810569524765, + 0.011641979217529297, + 0.021041203290224075, + 0.07915125787258148, + 0.014890089631080627, + 0.005034291185438633, + 0.06824128329753876, + -0.0006178555777296424, + 0.03002980351448059, + -0.07176803797483444, + -2.1280982309690444e-08, + -0.027831681072711945, + 0.025146925821900368, + -0.04043451324105263, + -0.03887559473514557, + 0.05487343668937683, + -0.08108630031347275, + -0.02850874699652195, + 0.013761247508227825, + -0.07439679652452469, + 0.0313287228345871, + 0.009353392757475376, + 0.07811269164085388, + -0.08945280313491821, + 0.023367865011096, + 0.04574868455529213, + -0.010967487469315529, + 0.00803961232304573, + 0.03584057092666626, + -0.053962867707014084, + -0.05276975408196449, + -0.05010643228888512, + 0.029711507260799408, + -0.05474769324064255, + 0.02680455893278122, + -0.01708650216460228, + 0.007007397711277008, + -0.03231291472911835, + -0.02155425027012825, + 0.13807442784309387, + 0.0745314508676529, + 0.033524300903081894, + 0.09430357813835144, + -0.037767693400382996, + -0.004657737445086241, + -0.09195631742477417, + -0.007867339067161083, + -0.0824250802397728, + 0.032236360013484955, + 0.014524873346090317, + 0.0827600359916687, + -0.0036566006019711494, + 0.05206051096320152, + 0.0028024811763316393, + -0.04411686584353447, + 0.016611406579613686, + 0.03129865974187851, + -0.020421024411916733, + -0.057210832834243774, + -0.06511996686458588, + -0.07458630949258804, + -0.031094761565327644, + -0.02968744747340679, + 0.05711209774017334, + 0.06139404699206352, + -0.0017316680168733, + -0.021477678790688515, + 0.016775965690612793, + -0.0278378464281559, + 0.06721500307321548, + -0.0297434963285923, + 0.06456183642148972, + 0.007343504577875137, + 0.07284340262413025, + 0.03807783126831055 + ], + "trademark-bold||tm,\u00ae,\u2122,intellectual property": [ + -0.027193652465939522, + -0.009835959412157536, + -0.024126190692186356, + -0.051025617867708206, + -0.005354161374270916, + -0.058126047253608704, + 0.10553573071956635, + 0.0447382926940918, + 0.03944958373904228, + -0.03798473998904228, + 0.03329165279865265, + 0.0445144921541214, + 0.06051148101687431, + -0.026839179918169975, + -0.030020220205187798, + 0.03424728661775589, + 0.07178784161806107, + 0.006237794645130634, + 0.07841575890779495, + -0.04957699030637741, + 0.02836720086634159, + 0.07451009005308151, + 0.03399255871772766, + 0.05467082932591438, + -0.042478129267692566, + 0.048640355467796326, + 0.0019639108795672655, + 0.0709654837846756, + 0.06460002809762955, + -0.0007014210568740964, + -0.05493898317217827, + 0.05189494416117668, + 0.04211123660206795, + 0.006778991315513849, + 0.009090887382626534, + 0.03802996873855591, + -0.07711447030305862, + -0.06477382779121399, + 0.02095642127096653, + -0.0008089382899925113, + 0.07010861486196518, + -0.12074099481105804, + -0.06333930790424347, + 0.058767758309841156, + 0.0012714467011392117, + 0.07462452352046967, + 0.01765860617160797, + 0.0221050214022398, + -0.0992492139339447, + 0.12142100930213928, + -0.02360106073319912, + -0.055886052548885345, + -0.06829730421304703, + -0.0032805295195430517, + 0.049189843237400055, + -0.019374297931790352, + 0.013318772427737713, + -0.011586546897888184, + -0.007813704200088978, + -0.019644923508167267, + -0.02103780396282673, + -0.02486424893140793, + -0.011459567584097385, + 0.08808879554271698, + 0.10471383482217789, + 0.0027600142639130354, + 0.017516879364848137, + 0.05739513039588928, + -0.04387645423412323, + -0.02981826290488243, + 0.05463365092873573, + -0.05485191568732262, + 0.010654077865183353, + 0.08565198630094528, + -0.1064688116312027, + 0.02584071084856987, + 0.030862698331475258, + 0.019437294453382492, + 0.01163151953369379, + -0.04091162979602814, + -0.018771063536405563, + -0.019536837935447693, + -0.01682247966527939, + -0.035718999803066254, + 0.018218975514173508, + 0.05638185515999794, + -0.022532526403665543, + -0.013820706866681576, + 0.08857672661542892, + 0.008487224578857422, + -0.023974820971488953, + -0.04834964871406555, + 0.020818233489990234, + 0.012400083243846893, + -0.1034902036190033, + -0.015000789426267147, + -0.02752644382417202, + 0.018013138324022293, + -0.04832359403371811, + 0.04810076951980591, + -0.03169626742601395, + 0.07455572485923767, + -0.04226687178015709, + 0.0030379868112504482, + 0.015256844460964203, + 0.011758946813642979, + -0.007715522777289152, + 0.0020611323416233063, + 0.10658598691225052, + 0.0602768212556839, + -0.02954222448170185, + -0.023295404389500618, + -0.006126824766397476, + -0.02925865538418293, + -0.034160204231739044, + -0.05608963966369629, + -0.03945394977927208, + -0.06714282184839249, + 0.16872751712799072, + -0.03368036821484566, + -0.011709768325090408, + -0.018645595759153366, + -0.03681469336152077, + -0.08970517665147781, + -0.005998489912599325, + -0.0533577986061573, + -0.03242551162838936, + -2.7398001722393474e-33, + 0.02368263341486454, + 0.13999468088150024, + -0.02396942675113678, + 0.1295265108346939, + 0.056769080460071564, + -0.01261124387383461, + 0.018539253622293472, + 0.018396152183413506, + -0.10894657671451569, + 0.06524293124675751, + 0.0031057638116180897, + 0.04742956534028053, + -0.023316390812397003, + 0.032214388251304626, + -0.0014684090856462717, + -0.04518501088023186, + -0.01878499798476696, + -0.041450317949056625, + 0.0042003546841442585, + -0.014089963398873806, + -0.05706610158085823, + 0.08335419744253159, + -0.004201948642730713, + 0.009150312282145023, + -0.031561266630887985, + -0.020241431891918182, + -0.0005923432181589305, + -0.019415320828557014, + -0.007806173525750637, + 0.036434587091207504, + 0.050944678485393524, + 0.013485624454915524, + 0.017306221649050713, + -0.08554412424564362, + 0.0367249920964241, + -0.020081937313079834, + -0.08449596911668777, + -0.08435482531785965, + 0.006093380972743034, + 0.03676830232143402, + 0.007338232360780239, + -0.03145621344447136, + -0.02259744517505169, + 0.03119502030313015, + -0.0378238782286644, + 0.08478927612304688, + -0.014247434213757515, + -0.09277768433094025, + 0.08001301437616348, + -0.029470302164554596, + 0.020662518218159676, + -0.0059620109386742115, + -0.04784338176250458, + -0.07139632105827332, + 0.03520914539694786, + -0.021627109497785568, + -0.08767369389533997, + 0.025278959423303604, + 0.014987979084253311, + -0.04114354029297829, + -0.0287089254707098, + -0.010184883140027523, + 0.022386584430933, + 0.03147468343377113, + -0.02033630758523941, + 0.06785107403993607, + 0.020385855808854103, + 0.03569856658577919, + 0.07290031760931015, + -0.05426255241036415, + 0.07178834080696106, + 0.029809843748807907, + -0.009301183745265007, + -0.010516589507460594, + -0.05216071382164955, + -0.04385758563876152, + 0.054173730313777924, + 0.01562284305691719, + 0.004958911798894405, + -0.04770534485578537, + -0.0871402695775032, + 0.019496975466609, + -0.01894199661910534, + -0.007563128601759672, + -0.017505774274468422, + 0.013921339996159077, + 0.023164620622992516, + -0.05926757678389549, + -0.047885019332170486, + 0.05447288975119591, + -0.01001059915870428, + 0.0030016121454536915, + -0.09096960723400116, + 0.04803574085235596, + -0.09484738856554031, + 5.436926777136976e-34, + -0.01643303968012333, + -0.033882852643728256, + -0.015831565484404564, + 0.05279925465583801, + -0.05307571217417717, + -0.04046310856938362, + -0.035261496901512146, + 0.09010773152112961, + -0.0509641133248806, + 0.0501476489007473, + 0.08383958786725998, + -0.018340878188610077, + -0.08642898499965668, + -0.02275923453271389, + 0.01456882618367672, + 0.02253713645040989, + 0.05627239868044853, + 0.007604644633829594, + -0.07640611380338669, + -0.0662752166390419, + 0.04412554204463959, + -0.07664629071950912, + -0.07789812237024307, + 0.10336605459451675, + -0.03315366432070732, + 0.10150305926799774, + -0.012291675433516502, + -0.03422577306628227, + -0.006180876865983009, + 0.048257771879434586, + -0.017715107649564743, + -0.030071133747696877, + -0.05765031650662422, + 0.11131782829761505, + -0.06448766589164734, + 0.08447260409593582, + 0.04175916314125061, + -0.03244318813085556, + 0.026272566989064217, + -0.025095561519265175, + 0.04479380324482918, + 0.008271884173154831, + 0.04185045510530472, + 0.03428643196821213, + -0.05971096456050873, + -0.010972249321639538, + -0.0030759971123188734, + -0.08911978453397751, + 0.06463406980037689, + -0.009164883755147457, + 0.08223158121109009, + -0.06374805420637131, + 0.042571138590574265, + -0.04233163222670555, + -0.09252266585826874, + -0.002557311672717333, + 0.009329959750175476, + -0.014452992007136345, + -0.04591383412480354, + 0.01507957186549902, + 0.16388893127441406, + 0.0262430589646101, + -0.03422871232032776, + 0.007057544309645891, + -0.04126092046499252, + -0.04322497919201851, + 0.036131054162979126, + 0.03574955835938454, + -0.019205184653401375, + -0.011766546405851841, + 0.05228281766176224, + 0.0553683303296566, + -0.06093715876340866, + -0.0624808706343174, + -0.013751322403550148, + -0.038232188671827316, + 0.0535598024725914, + 0.0019232453778386116, + -0.09348257631063461, + -0.02687271311879158, + 0.020735960453748703, + 0.03579602763056755, + -0.05654405429959297, + 0.13144606351852417, + -0.022231537848711014, + 0.011602331884205341, + 0.0022300127893686295, + 0.00212686019949615, + -0.024661144241690636, + 0.020548800006508827, + 0.031168054789304733, + 0.07106772810220718, + -0.06855949759483337, + 0.025801554322242737, + -0.018386224284768105, + -2.1768320479509384e-08, + -0.055264029651880264, + -0.08935917168855667, + -0.03721235319972038, + -0.018123067915439606, + -0.013748195953667164, + 0.006676144897937775, + -0.04812467843294144, + -0.08124235272407532, + 0.01784108392894268, + -0.02026633732020855, + 0.02921391651034355, + -0.03678396716713905, + -0.14747470617294312, + 0.03739209473133087, + 0.02425815537571907, + -0.05355820059776306, + -0.1313491314649582, + 0.057716578245162964, + -0.049486901611089706, + 0.011182569898664951, + -0.08282280713319778, + 0.07753586024045944, + 0.06898511946201324, + -0.07940206676721573, + 0.033657677471637726, + 0.05453795567154884, + -0.0024917342234402895, + -0.0015981512842699885, + 0.016438715159893036, + 0.04700233042240143, + 0.0029465509578585625, + 0.07733869552612305, + -0.0110299251973629, + 0.04374595358967781, + -0.062307801097631454, + -0.04350722208619118, + 0.03335493430495262, + 0.019474167376756668, + -0.01371187623590231, + 0.025662988424301147, + -0.05036940053105354, + -0.015716055408120155, + -0.03481077402830124, + 0.043683070689439774, + -0.034529030323028564, + 0.050860099494457245, + -0.03342493623495102, + 0.014157678931951523, + -0.049113187938928604, + -0.05287298932671547, + 0.025739479809999466, + 0.03192313387989998, + 0.010715821757912636, + 0.058527883142232895, + -0.06862565129995346, + -0.058507561683654785, + 0.001334895845502615, + 0.04365427792072296, + 0.009091218002140522, + -0.0540647991001606, + 0.08552978932857513, + -0.059488046914339066, + 0.08124279975891113, + -0.038016848266124725 + ], + "trademark-registered-bold||\u00ae,\u2122,intellectual property": [ + -0.06710861623287201, + -0.04528306797146797, + -0.07231259346008301, + -0.028849205002188683, + -0.0075564575381577015, + -0.03259013965725899, + 0.10368464887142181, + 0.03701457381248474, + 0.04866410419344902, + -0.08212408423423767, + -0.02223612368106842, + 0.0633402094244957, + 0.057390499860048294, + -0.051848482340574265, + -0.0545911006629467, + 0.0002901121333707124, + 0.041543636471033096, + 0.014379779808223248, + 0.03748677670955658, + -0.027677036821842194, + 0.054959312081336975, + 0.08518239110708237, + 0.029492083936929703, + 0.05189516395330429, + 0.006062747444957495, + 0.05925508216023445, + 0.040474507957696915, + 0.044388219714164734, + 0.10509593784809113, + -0.0217940341681242, + -0.0006199424969963729, + 0.028495481237769127, + 0.08304069936275482, + -0.02170076034963131, + 0.043141547590494156, + 0.0426364429295063, + -0.03878971189260483, + -0.05128854885697365, + 0.016787089407444, + 0.0127143869176507, + 0.0675748884677887, + -0.1360478699207306, + -0.06465307623147964, + 0.0965610146522522, + -0.023580724373459816, + 0.06992927193641663, + -0.044470302760601044, + 0.037627849727869034, + -0.045863304287195206, + 0.09068089723587036, + -0.018032800406217575, + -0.09467878192663193, + -0.06130383163690567, + -0.013282385654747486, + 0.0404810905456543, + -0.04562721028923988, + -0.022565865889191628, + -0.05141381174325943, + 0.03237114101648331, + 0.005048360675573349, + -0.0026488916482776403, + -0.01852496713399887, + 0.02548765018582344, + 0.05388307198882103, + 0.08298589289188385, + -0.006276661995798349, + -0.001459851861000061, + -0.0040009464137256145, + -0.035541635006666183, + -0.043034154921770096, + 0.03156546503305435, + -0.001410533906891942, + 0.0380808524787426, + 0.10237189382314682, + -0.08652964979410172, + 0.020404718816280365, + 0.04413818195462227, + 0.016546128317713737, + -0.001961041009053588, + -0.10113667696714401, + -0.009400624781847, + -0.03024033084511757, + -0.030420666560530663, + -0.02664368785917759, + 0.02384193055331707, + 0.06946142017841339, + -0.024921104311943054, + -0.021887125447392464, + 0.05249112844467163, + -0.0013600301463156939, + -0.04854771867394447, + -0.03851693123579025, + 0.02245679683983326, + -0.005687690805643797, + -0.1355201154947281, + 0.03288118541240692, + -0.011266747489571571, + 0.028299594298005104, + -0.06211681663990021, + 0.09000972658395767, + 0.0023247874341905117, + 0.06403586268424988, + -0.033710233867168427, + 0.007383549585938454, + 0.011909390799701214, + 0.0011111981002613902, + -0.02986237406730652, + -0.0043327645398676395, + 0.05566538870334625, + 0.04353448376059532, + -0.04784108325839043, + -0.038992710411548615, + -0.02213909476995468, + -0.04209023714065552, + -0.10154128074645996, + -0.020417625084519386, + -0.05350223556160927, + -0.04830578342080116, + 0.13786742091178894, + -0.04029868543148041, + -0.005751155316829681, + -0.005817871540784836, + -0.004767440725117922, + -0.11253997683525085, + -0.014836038462817669, + -0.05474888160824776, + -0.028934374451637268, + -3.6640283811405476e-33, + -0.04005071520805359, + 0.12388229370117188, + -0.02052500657737255, + 0.10743530839681625, + -0.009882771410048008, + -0.03842507302761078, + -0.013165522366762161, + -0.006320756860077381, + -0.12504450976848602, + 0.07101693004369736, + 0.0760904997587204, + 0.07798665761947632, + -0.023630671203136444, + 0.06068410351872444, + 0.0330667681992054, + -0.019479647278785706, + -0.008028430864214897, + -0.03316286578774452, + -0.014265472069382668, + -0.000474815780762583, + -0.024961015209555626, + 0.06105584651231766, + 0.003273140639066696, + 0.03401166945695877, + -0.06405806541442871, + -0.049478136003017426, + 0.0001223453291459009, + -0.03654417395591736, + -0.03036619909107685, + 0.03894326463341713, + 0.07770465314388275, + 0.010593343526124954, + 0.020585455000400543, + -0.0618140771985054, + 0.02459411509335041, + -0.009350505657494068, + -0.055011309683322906, + -0.11980481445789337, + 0.021752525120973587, + 0.08206714689731598, + -0.010003610514104366, + -0.04374378174543381, + -0.05432463437318802, + 0.045692894607782364, + -0.0019352801609784365, + 0.09623834490776062, + -0.02966451272368431, + -0.07447795569896698, + 0.07450461387634277, + -0.0064073121175169945, + 0.035639673471450806, + -0.008451197296380997, + -0.02822129614651203, + -0.07662661373615265, + 0.013049746863543987, + -0.031354304403066635, + -0.08582685142755508, + 0.029743053019046783, + -0.011647195555269718, + -0.040227118879556656, + 0.015400083735585213, + -0.01960332691669464, + -0.0051760016940534115, + 0.025174224749207497, + -0.04252295941114426, + 0.03348912298679352, + 0.03499234840273857, + 0.05981339514255524, + 0.06960467249155045, + -0.05862514674663544, + 0.06922462582588196, + 0.02795068547129631, + 0.005405972711741924, + -0.012662474997341633, + -0.08946605026721954, + -0.04422147572040558, + 0.02849249355494976, + 0.012996598146855831, + 0.021310025826096535, + -0.03819064423441887, + -0.13096651434898376, + 0.059040315449237823, + -0.05619914457201958, + 0.025442542508244514, + -0.04066384956240654, + 0.0466909259557724, + 0.00893496721982956, + -0.058682844042778015, + -0.0922725647687912, + 0.06053479388356209, + -0.007460796274244785, + -0.006519020069390535, + -0.10800251364707947, + 0.009258497506380081, + -0.10295591503381729, + 4.074677598037721e-34, + 0.005255282390862703, + -0.02870304323732853, + -0.028323790058493614, + 0.04713668301701546, + -0.0461648590862751, + -0.021108850836753845, + 0.019129004329442978, + 0.0850834771990776, + -0.05753914266824722, + 0.026050085201859474, + 0.08845782279968262, + 0.007392259314656258, + -0.09151261299848557, + -0.016161810606718063, + 0.03145776689052582, + 0.03574113920331001, + 0.05458549037575722, + 0.031102364882826805, + -0.042022109031677246, + -0.0308672022074461, + 0.04781947284936905, + -0.0814320519566536, + -0.08024949580430984, + 0.1057971715927124, + -0.02097952924668789, + 0.045486778020858765, + -0.005720116663724184, + -0.023707810789346695, + 0.0013135913759469986, + 0.004571003373712301, + -0.0039325193502008915, + 0.011014114134013653, + -0.06114008650183678, + 0.09474209696054459, + -0.05869065597653389, + 0.034841228276491165, + 0.08329323679208755, + -0.056756507605314255, + 0.00828590802848339, + -0.049272146075963974, + 0.008789289742708206, + 0.05132672190666199, + -0.02527976967394352, + 0.07123582065105438, + -0.026395950466394424, + -0.02751982770860195, + -0.015186074189841747, + -0.07865103334188461, + 0.08763237297534943, + -0.002313233446329832, + 0.07524784654378891, + -0.04306850954890251, + 0.029338035732507706, + -0.010671962052583694, + -0.10723485052585602, + -0.006489190738648176, + 0.005948557518422604, + -0.0043955049477517605, + -0.0037736771628260612, + 0.05007997527718544, + 0.11975553631782532, + 0.034376662224531174, + -0.04437924176454544, + 0.06385122984647751, + -0.030192475765943527, + -0.06136730685830116, + 0.05602681264281273, + 0.023114515468478203, + 0.01211412250995636, + -0.029730593785643578, + 0.059358254075050354, + 0.027634484693408012, + -0.06007019057869911, + -0.053403131663799286, + -0.021455420181155205, + -0.03484903648495674, + 0.06543125212192535, + 0.03786107152700424, + -0.09994830936193466, + -0.00503174401819706, + -0.00024287686392199248, + 0.018294965848326683, + -0.05253664031624794, + 0.12448399513959885, + -0.014514959417283535, + 0.00010139544610865414, + 0.012133274227380753, + 0.02231443300843239, + -0.03612450882792473, + -0.005235338117927313, + 0.01699790544807911, + 0.050696831196546555, + -0.06764290481805801, + 0.011632101610302925, + -0.04742532595992088, + -2.2044648773089648e-08, + -0.027784986421465874, + -0.0577973872423172, + -0.030418038368225098, + -0.04678953438997269, + 0.01563985086977482, + 0.014659509062767029, + -0.06477353721857071, + -0.07932686805725098, + -0.021923985332250595, + -0.004554048180580139, + 0.00011861316306749359, + -0.03578120097517967, + -0.10379252582788467, + 0.015030449256300926, + 0.015753399580717087, + -0.006858000066131353, + -0.05617985874414444, + 0.09704413264989853, + -0.030039114877581596, + 0.04275553673505783, + -0.08553925156593323, + 0.09068679064512253, + 0.04505648836493492, + -0.08437900990247726, + 0.005585705861449242, + 0.026419876143336296, + 0.00668571749702096, + -0.011665874160826206, + 0.02404726669192314, + 0.0525125190615654, + 0.031251322478055954, + 0.0985708087682724, + 0.01955951191484928, + -0.012396967969834805, + -0.05936871096491814, + -0.04089387133717537, + 0.031147504225373268, + 0.02367478795349598, + -0.021444600075483322, + 0.01853281259536743, + -0.05268289893865585, + 0.01832869090139866, + -0.037020761519670486, + -0.01180792972445488, + -0.011724257841706276, + 0.07137244194746017, + -0.034740135073661804, + 0.027161182835698128, + -0.039420776069164276, + -0.022239290177822113, + 0.009005988016724586, + -0.02170690894126892, + 0.009846847504377365, + 0.04921899735927582, + -0.06647097319364548, + -0.04908977821469307, + -0.02580595202744007, + 0.05871405825018883, + 0.01322806067764759, + -0.020931215956807137, + 0.10073500871658325, + -0.03152550756931305, + 0.09572470933198929, + -0.02459457516670227 + ], + "traffic-cone-bold||pylon,safety,transit,transportation": [ + 0.028055930510163307, + -0.022412901744246483, + -0.022950924932956696, + 0.045156706124544144, + -0.015110533684492111, + 0.009592849761247635, + 0.11618690937757492, + 0.04590269550681114, + -0.06872934103012085, + -0.017277512699365616, + 0.04431968554854393, + 0.0267055481672287, + -0.03936534374952316, + 0.07066076248884201, + -0.06057913228869438, + 0.0392780601978302, + 0.03266715630888939, + 0.016337774693965912, + -0.039233673363924026, + 0.023990750312805176, + 0.01857149600982666, + 0.01922854781150818, + 0.007550579495728016, + 0.06658144295215607, + -0.09724611043930054, + -0.029459889978170395, + 0.025667332112789154, + 0.051703546196222305, + 0.015556772239506245, + -0.047552552074193954, + -0.10084417462348938, + -0.028420783579349518, + -0.0033251584973186255, + 0.07219748198986053, + 0.033216170966625214, + -0.07355565577745438, + 0.03368068486452103, + -0.017654558643698692, + 0.095945805311203, + 0.03477488458156586, + 0.04315638169646263, + -0.07983427494764328, + -0.019445378333330154, + 0.007294381503015757, + -0.03325128182768822, + -0.011212551966309547, + 0.012302182614803314, + -0.015063897706568241, + 0.03633315488696098, + -0.060940757393836975, + 0.011504567228257656, + -0.024550504982471466, + -0.01246920507401228, + 0.006092697847634554, + 0.005375996697694063, + 0.020555829629302025, + -0.09790725260972977, + -0.00823035929352045, + 0.024766266345977783, + -0.06315498054027557, + -0.01564556360244751, + 0.018836069852113724, + -0.024334508925676346, + 0.07700664550065994, + -0.029774576425552368, + -0.025478985160589218, + -0.04251379892230034, + 0.013799593783915043, + 0.03909043222665787, + 0.05225912481546402, + 0.013850734569132328, + -0.015552912838757038, + -0.058225467801094055, + -0.05344279482960701, + 0.004612688906490803, + -0.06683169305324554, + 0.09702987968921661, + -0.024300403892993927, + -0.08047588169574738, + -0.08016161620616913, + 0.015173157677054405, + -0.07216078788042068, + -0.03683951497077942, + 0.019815657287836075, + 0.03629172220826149, + 0.01143231987953186, + -0.07759343832731247, + 0.0017163667362183332, + -0.036345433443784714, + -0.04606083035469055, + 0.027996713295578957, + -0.05787453427910805, + 0.016357257962226868, + -0.01272114273160696, + -0.08559834212064743, + 0.025178464129567146, + 0.03267555683851242, + -0.09444627910852432, + 0.0065164873376488686, + 0.09135305136442184, + 0.0027831292245537043, + 0.01886122301220894, + 0.028856512159109116, + 0.035341184586286545, + -0.025499314069747925, + 0.030892357230186462, + -0.006274310406297445, + 0.013847262598574162, + 0.025580622255802155, + 0.01858525536954403, + 0.06453467160463333, + -0.04051681607961655, + -0.02670472301542759, + -0.04106402024626732, + -0.08258388191461563, + 0.047007933259010315, + -0.09621679037809372, + 0.02135150134563446, + 0.11283548176288605, + 0.014948366209864616, + -0.05881413817405701, + -0.022884324193000793, + -0.013980615884065628, + 0.06694379448890686, + -0.0119697954505682, + -0.05653306841850281, + 0.03589630872011185, + -4.180315785597266e-33, + -0.06507869809865952, + 0.008231792598962784, + -0.007018102332949638, + 0.032658737152814865, + 0.024410847574472427, + 0.003249488305300474, + -0.07444625347852707, + -0.07332715392112732, + -0.006814336404204369, + -0.012546529993414879, + -0.01682906225323677, + -0.0002279301843373105, + -0.04666539654135704, + 0.04487723112106323, + 0.05925235524773598, + -0.016441531479358673, + -0.03571860119700432, + -0.001556089147925377, + -0.08518382161855698, + 0.023442411795258522, + -0.007654918357729912, + 0.010667117312550545, + -0.04310125857591629, + -0.03291761502623558, + -0.0005495495861396194, + 0.010517992079257965, + -0.044606346637010574, + 0.0010238495888188481, + -0.019484825432300568, + 0.05518364906311035, + -0.003009448992088437, + 0.17119713127613068, + 0.053979359567165375, + 0.0990307480096817, + -0.04318206384778023, + 0.02649369090795517, + -0.09765355288982391, + -0.08697661757469177, + -0.011508609168231487, + -0.019505469128489494, + -0.0922931581735611, + -0.08940540999174118, + -0.08509352803230286, + 0.042670514434576035, + -0.010992590337991714, + 0.05733165517449379, + -0.01647346094250679, + 0.011993308551609516, + -0.0031113140285015106, + 0.029847707599401474, + -0.04573481157422066, + 0.03875558078289032, + -0.030856352299451828, + -0.006620046682655811, + -0.04007302597165108, + 0.005721042398363352, + 0.0045053428038954735, + 0.073310486972332, + 0.05213822424411774, + -0.014548517763614655, + 0.021808218210935593, + 0.04387302324175835, + 0.02355697564780712, + -0.018047960475087166, + 0.06733915209770203, + 0.05226057022809982, + -0.04724039137363434, + 0.03967392072081566, + 0.08578970283269882, + 0.05272502079606056, + -0.014548247680068016, + 0.054673388600349426, + 0.005468136630952358, + 0.07064708322286606, + 0.07458031177520752, + 0.0062631722539663315, + -0.08301233500242233, + 0.07009800523519516, + 0.028655143454670906, + 0.012877305038273335, + -0.14061471819877625, + 0.06191898509860039, + -0.03405119851231575, + 0.02447875402867794, + 0.09217154234647751, + -0.027477070689201355, + 0.07494927197694778, + -0.037307530641555786, + -0.030576713383197784, + 0.06675241142511368, + -0.08515487611293793, + 0.011345891281962395, + -0.010694976896047592, + 0.046821512281894684, + -0.06897224485874176, + 5.6642109057558696e-34, + 0.03448216989636421, + 0.06550231575965881, + -0.03502951189875603, + -0.021981405094265938, + -0.10567827522754669, + -0.014306256547570229, + 0.054291483014822006, + 0.006883764173835516, + 0.034675583243370056, + 0.09498123824596405, + -0.016045693308115005, + -0.007411029655486345, + -0.017537672072649002, + -0.07444388419389725, + 0.09084944427013397, + -0.03043726645410061, + 0.08807779103517532, + 0.044833265244960785, + -0.062169305980205536, + 0.03245628625154495, + -0.068450927734375, + -0.03245639428496361, + -0.127378448843956, + 0.05838226526975632, + -0.03742189332842827, + -0.0016715590609237552, + 0.035321999341249466, + -0.05922316014766693, + -0.12379063665866852, + -0.018890827894210815, + -0.09911173582077026, + 0.026058342307806015, + 0.046085458248853683, + 0.024403231218457222, + -0.07300463318824768, + 0.08364271372556686, + -0.003022026503458619, + 0.001752181793563068, + -0.0004667222674470395, + -0.019732601940631866, + 0.042345114052295685, + 0.04100167006254196, + 0.07920244336128235, + 0.058887604624032974, + -0.027426011860370636, + -0.00037532224087044597, + -0.017788564786314964, + -0.02276231348514557, + -0.05720970407128334, + -0.009371423162519932, + 0.04012443125247955, + 0.03284871205687523, + 0.04886356741189957, + 0.04347676411271095, + 0.06436178088188171, + 0.09329545497894287, + 0.00811817217618227, + 0.0026645134203135967, + -0.04812754690647125, + -0.0565539114177227, + -0.01838270202279091, + 0.029331501573324203, + -0.10759928077459335, + 0.05005023628473282, + 0.04619509354233742, + -0.10714232176542282, + -0.04887176677584648, + -0.12239468842744827, + 0.07059311121702194, + -0.042055338621139526, + 0.042926665395498276, + 0.04724375903606415, + -0.009481148794293404, + 0.026691826060414314, + -0.040208712220191956, + -0.0585753358900547, + 0.08203235268592834, + 0.061000335961580276, + 0.02068113535642624, + 0.04576520249247551, + -0.008519759401679039, + -0.044717494398355484, + -0.006505848374217749, + 0.05361083522439003, + -0.0001406532828696072, + 0.006564253941178322, + -0.012237370945513248, + -0.00415580440312624, + -0.004412882961332798, + -0.03348049148917198, + 0.004538901150226593, + 0.0843568965792656, + -0.02008245326578617, + -0.0357854962348938, + -0.05659805238246918, + -1.8821918246203495e-08, + 0.052171338349580765, + -0.013690459541976452, + -0.10349594056606293, + -0.0027558384463191032, + 0.006684283725917339, + -0.06574678421020508, + 0.03343521058559418, + -0.010370233096182346, + -0.1711200326681137, + 0.010210889391601086, + 0.0221356600522995, + 0.06035764887928963, + -0.07414446771144867, + 0.0248643197119236, + -0.018699675798416138, + 0.03531702235341072, + -0.09415096789598465, + -0.002046123379841447, + -0.06114169955253601, + -0.024496223777532578, + -0.04179175943136215, + 0.017038019374012947, + -0.04609912633895874, + 0.06650042533874512, + -0.0273702684789896, + 0.09281478077173233, + 0.03551707789301872, + -0.011935078538954258, + 0.02559090405702591, + -0.019461186602711678, + 0.046634431928396225, + 0.0030364464037120342, + -0.06839811056852341, + 0.03815871849656105, + 0.0006805734592489898, + 0.02646046131849289, + -0.038100551813840866, + -0.014578195288777351, + 0.06797193735837936, + 0.08564158529043198, + 0.0012049195356667042, + -0.027793273329734802, + 0.05047885701060295, + 0.03655654937028885, + 0.0495314784348011, + 0.032957617193460464, + -0.07629095017910004, + 0.013182205148041248, + -0.0815594494342804, + -0.03912517428398132, + -0.011211782693862915, + -0.022863885387778282, + -0.030494466423988342, + 0.07941947132349014, + -0.04322388768196106, + -0.044254936277866364, + 0.03954688459634781, + 0.021778076887130737, + -0.08557604998350143, + 0.043463084846735, + 0.09069784730672836, + 0.05768495798110962, + 0.06838677823543549, + 0.011822270229458809 + ], + "traffic-sign-bold||road signs,transit,transportation": [ + 0.06918291747570038, + -0.07460743188858032, + 0.034567080438137054, + 0.044999025762081146, + -0.002631974406540394, + -0.01944989524781704, + 0.056929782032966614, + -0.04014182835817337, + -0.05296735092997551, + -0.05870214104652405, + 0.010059131309390068, + -0.008686162531375885, + 0.03964924439787865, + 0.034163665026426315, + -0.01472154539078474, + 0.020691486075520515, + 0.0591062530875206, + 0.02798951417207718, + 0.027339302003383636, + 0.01727433316409588, + -0.008447318337857723, + 0.011182943359017372, + -0.01679392158985138, + 0.029326314106583595, + 0.020070755854249, + 0.025275293737649918, + 0.07337561249732971, + 0.004557773470878601, + 0.010871722362935543, + -0.03393500670790672, + -0.0845528170466423, + 0.021727917715907097, + 0.0028816447593271732, + 0.043124109506607056, + -0.018172970041632652, + -0.02988550253212452, + 0.052811380475759506, + -0.00658291345462203, + 0.09651914238929749, + -0.01188648771494627, + 0.0519026443362236, + -0.13817629218101501, + -0.0051613617688417435, + 0.03686515986919403, + 0.005996584892272949, + -0.005181580316275358, + 0.010885903611779213, + 0.007753798272460699, + 0.026020310819149017, + -0.0269774179905653, + 0.045922424644231796, + -0.07633206248283386, + -0.0786411389708519, + 0.04572436958551407, + -0.011212718673050404, + -0.015091832727193832, + -0.0871964693069458, + 0.005265517625957727, + 0.01996130682528019, + 0.010117899626493454, + -0.02919161505997181, + 0.03240737318992615, + 0.013123135082423687, + 0.06024901941418648, + 0.033655375242233276, + 0.0007190931355580688, + -0.012181834317743778, + 0.008156562224030495, + -0.029536431655287743, + 0.07579168677330017, + 0.013104785233736038, + -0.00833221897482872, + -0.01757136546075344, + -0.0600101612508297, + 0.03144226223230362, + -0.033491529524326324, + 0.055314112454652786, + 0.043526504188776016, + -0.043736401945352554, + -0.13523459434509277, + -0.08501995354890823, + -0.0850154235959053, + -0.06878732144832611, + -0.0012172918068245053, + 0.025939445942640305, + 0.032900676131248474, + -0.09645823389291763, + -0.047122348099946976, + -0.006130429916083813, + -0.006555686239153147, + -0.027258992195129395, + -0.013769327662885189, + 0.061065465211868286, + -0.0374838225543499, + -0.09018001705408096, + 0.030486969277262688, + 0.022699609398841858, + -0.025327168405056, + 0.008022126741707325, + 0.0783674418926239, + 0.0023230696097016335, + 0.07711104303598404, + 0.05271482840180397, + 0.046956926584243774, + -0.008589014410972595, + 0.0038282484747469425, + -0.026646923273801804, + -0.01750052161514759, + 0.0033581475727260113, + 0.01718810200691223, + 0.05846163630485535, + -0.04706622287631035, + -0.029156271368265152, + -0.027851207181811333, + -0.08152768760919571, + 0.025769229978322983, + -0.03788059577345848, + -0.009924088604748249, + 0.11543179303407669, + -0.0033489945344626904, + -0.1124909445643425, + -0.06265764683485031, + -0.03984113037586212, + -0.020708004012703896, + -0.0009950374951586127, + -0.03182794153690338, + 0.048837870359420776, + -4.7732046467673034e-33, + -0.02032691054046154, + 0.040008675307035446, + 0.034728601574897766, + 0.0700838714838028, + 0.0329582653939724, + 0.0015137611189857125, + -0.10374391078948975, + -0.06753876805305481, + -0.033396054059267044, + 0.04451342672109604, + 0.07086504250764847, + 0.09847255796194077, + 0.011187329888343811, + 0.0716184452176094, + 0.0719480961561203, + 0.013426666148006916, + -0.010552195832133293, + -0.07612656056880951, + -0.08649103343486786, + 0.011320224963128567, + -0.04025721549987793, + -0.002703525824472308, + -0.036932408809661865, + -5.043964847573079e-05, + 0.0040509821847081184, + -0.023767363280057907, + 0.0255513247102499, + 0.01126934215426445, + 0.02306429110467434, + 0.033318303525447845, + 0.017636578530073166, + 0.10366666316986084, + 0.030693519860506058, + 0.03884049504995346, + -0.03594454005360603, + 0.016968771815299988, + -0.09829345345497131, + -0.04972109943628311, + -0.01499657891690731, + -0.000635046511888504, + -0.062494758516550064, + -0.07574765384197235, + -0.09959699958562851, + -0.0058372654020786285, + 0.02636655606329441, + 0.14602799713611603, + 0.04365501552820206, + -0.07019978761672974, + 0.0797058567404747, + 0.04339030757546425, + -0.0349535197019577, + -0.013520389795303345, + -0.06675133109092712, + -0.04603643715381622, + -0.04869721829891205, + 0.0062944721430540085, + -0.0004196537483949214, + 0.08295567333698273, + -0.02530270628631115, + -0.0036207290831953287, + -0.07445009797811508, + 0.02548159658908844, + 0.08706103265285492, + 0.007637048605829477, + 0.017738236114382744, + 0.03754786029458046, + -0.05957745015621185, + 0.017087144777178764, + 0.07391640543937683, + -0.004783380310982466, + 0.009700060822069645, + 0.04893941059708595, + 0.024977918714284897, + 0.08853907138109207, + 0.05435716733336449, + 0.012427580542862415, + -0.08605365455150604, + 0.002698204480111599, + 0.018029876053333282, + 0.02127137780189514, + -0.10877106338739395, + 0.03184342384338379, + -0.05753832682967186, + 0.06443490833044052, + 0.15563948452472687, + 0.00764524657279253, + 0.009790593758225441, + -0.1055774986743927, + -0.03547154739499092, + -0.014749857597053051, + -0.08227739483118057, + 0.06300047785043716, + 0.00038648289046250284, + 0.006577238440513611, + -0.09124474227428436, + 8.216193070179228e-34, + 0.037059806287288666, + 0.0565950870513916, + -0.040699295699596405, + 0.005212065763771534, + -0.09785587340593338, + -0.027094559744000435, + 0.03504515439271927, + -0.011755662970244884, + 0.05153781920671463, + 0.0920584499835968, + 0.013575861230492592, + 0.006812092382460833, + -0.028508232906460762, + -0.05778665840625763, + -0.004162495490163565, + -0.07410233467817307, + 0.11703671514987946, + 0.033241696655750275, + -0.061102185398340225, + 0.023951172828674316, + -0.10476434230804443, + -0.016776565462350845, + -0.059466402977705, + 0.05956488102674484, + -0.036041509360075, + 0.02682271972298622, + 0.017206838354468346, + -0.016525663435459137, + -0.09804322570562363, + 0.0003425376198720187, + -0.06682270765304565, + 0.03137560188770294, + 0.10548019409179688, + 0.0004251438658684492, + -0.06482002884149551, + 0.02970181033015251, + 0.01689578965306282, + -0.017317140474915504, + 0.02890085056424141, + -0.014749952591955662, + -0.007950734347105026, + -0.01868053711950779, + 0.11344695091247559, + 0.031606368720531464, + -0.03644976764917374, + -0.0007404402131214738, + -0.05486107990145683, + 0.0009228225098922849, + -0.06835740804672241, + 0.05884718522429466, + 0.07870258390903473, + 0.023056259378790855, + -0.03514762595295906, + 0.03793417289853096, + -0.00826923456043005, + 0.08907978236675262, + 0.023323245346546173, + 0.02215484529733658, + 0.022501705214381218, + 0.022083168849349022, + 0.0035126563161611557, + 0.07681634277105331, + -0.04121017828583717, + 0.03192220255732536, + 0.028054164722561836, + -0.11349017918109894, + 0.0060961623676121235, + -0.10291242599487305, + 0.03694077208638191, + -0.016169903799891472, + 0.06863100081682205, + 0.007662545889616013, + -0.04911484196782112, + 0.031090429052710533, + -0.006011446006596088, + -0.06950121372938156, + 0.09264709055423737, + 0.09280525892972946, + -0.01995442435145378, + 0.02445681393146515, + -0.028129901736974716, + -0.01109915878623724, + -0.05371859297156334, + 0.09818907827138901, + -0.07701872289180756, + -0.005511218681931496, + -0.05555804446339607, + -0.031036218628287315, + 0.007435863371938467, + 0.022783521562814713, + -0.03522709012031555, + 0.07003594934940338, + -0.05842756852507591, + -0.022670431062579155, + -0.08300349861383438, + -1.688468387328612e-08, + -0.01174962893128395, + 0.003810588736087084, + -0.08527472615242004, + -0.05686552822589874, + 0.006491139996796846, + -0.004991264548152685, + -0.009285102598369122, + 0.013624358922243118, + -0.0870601087808609, + 0.03026551567018032, + 0.030672261491417885, + 0.05227731913328171, + -0.13923783600330353, + 0.02466430887579918, + -0.0015402211574837565, + -0.001336229033768177, + -0.06540842354297638, + -0.014189131557941437, + -0.11039633303880692, + -0.045006416738033295, + -0.026397692039608955, + -0.0029149262700229883, + -0.032779280096292496, + 0.037330321967601776, + 0.030327722430229187, + 0.008692626841366291, + 0.000702515069860965, + 0.03712200000882149, + 0.034422531723976135, + -0.013975837267935276, + 0.010700714774429798, + 0.03085900843143463, + 0.019657736644148827, + -0.0536612793803215, + -0.03113979659974575, + -0.02184419147670269, + -0.01980806328356266, + -0.006332752760499716, + 0.08234169334173203, + 0.1435893476009369, + -0.012951125390827656, + -0.027457401156425476, + 0.002367877634242177, + -0.01105367112904787, + 0.030835837125778198, + 0.03262518718838692, + -0.004856349900364876, + 0.02421616017818451, + -0.05995883047580719, + -0.09142584353685379, + -0.03371080756187439, + -0.05452423542737961, + 0.014639723114669323, + 0.04881306365132332, + -0.03824311122298241, + -0.060121651738882065, + 0.034675076603889465, + 0.026538560166954994, + 0.015405832789838314, + 0.013351117260754108, + 0.15481333434581757, + 0.035425521433353424, + 0.011119508184492588, + 0.012747254222631454 + ], + "traffic-signal-bold||stop light,safety,transit,transportation": [ + 0.026629528030753136, + -0.06289085745811462, + 0.018774015828967094, + 0.011844998225569725, + 0.030022526159882545, + 0.026275133714079857, + 0.07432787120342255, + -0.030929671600461006, + -0.05849809944629669, + -0.005654439330101013, + 0.04055951535701752, + 0.009516631253063679, + 0.007410157937556505, + -0.008838582783937454, + -0.04089885950088501, + 0.045022498816251755, + 0.09351810812950134, + -0.015227333642542362, + -0.022033561021089554, + 0.003785488661378622, + 0.06281916052103043, + 0.01395453792065382, + -0.004528505261987448, + 0.030709346756339073, + -0.04320899769663811, + 0.02752632275223732, + 0.059573136270046234, + 0.03661970794200897, + 0.022269848734140396, + -0.03835093975067139, + -0.06805811822414398, + -0.010285290889441967, + 0.035239800810813904, + 0.030809924006462097, + -0.06377650052309036, + -0.05164729803800583, + 0.014826145954430103, + -0.03891035169363022, + 0.08392202109098434, + 0.01912698708474636, + 0.0038891572039574385, + -0.13930024206638336, + -0.0294642336666584, + 0.04175136238336563, + 0.010591628961265087, + -0.0179838165640831, + 0.018877262249588966, + -0.046328213065862656, + 0.02386278100311756, + -0.0787319615483284, + 0.04587622731924057, + -0.018710773438215256, + -0.06955178081989288, + 0.08134792745113373, + 0.05043549835681915, + -0.03182414546608925, + -0.07392965257167816, + 0.03647034987807274, + 0.04996458813548088, + -0.010924625210464, + -0.002478023525327444, + 0.028239456936717033, + -0.013549016788601875, + 0.03410597890615463, + 0.012267952784895897, + 0.0347997322678566, + -0.06453374773263931, + 0.004735707771033049, + 0.02616998180747032, + 0.04927290976047516, + -0.03114740364253521, + -0.003555150469765067, + 0.011445813812315464, + -0.010778991505503654, + 0.00692876148968935, + -0.032942768186330795, + 0.04006397724151611, + 0.016260894015431404, + -0.06600064784288406, + -0.0996129959821701, + -0.031214164569973946, + -0.09682884812355042, + -0.012196077033877373, + 0.014474211260676384, + 0.04648244008421898, + 0.04241134226322174, + -0.06617081165313721, + -0.014416608959436417, + -0.004166936967521906, + -0.024012481793761253, + -0.10130702704191208, + 0.004252591170370579, + 0.058251116424798965, + 0.00826913770288229, + -0.09122148156166077, + 0.008151546120643616, + -0.036311060190200806, + -0.0697653666138649, + 0.013753535225987434, + 0.05518520250916481, + 0.07299848645925522, + 0.03975396975874901, + 0.006374801974743605, + 0.07746537774801254, + -0.03656555339694023, + -0.04142991080880165, + -0.04442080110311508, + 0.06726773828268051, + 0.008742610923945904, + 0.03805620223283768, + 0.09273373335599899, + -0.04471484571695328, + -0.04496154561638832, + -0.05000988766551018, + -0.05787857249379158, + 0.03333043307065964, + -0.039946362376213074, + 0.01765001378953457, + 0.12193720787763596, + 0.033650416880846024, + -0.05416005849838257, + -0.03236931562423706, + -0.0053029172122478485, + 0.013564285822212696, + 0.03516022115945816, + -0.049238767474889755, + 0.07176036387681961, + -4.4488207358441544e-33, + -0.033486079424619675, + 0.0246159415692091, + -0.005210130009800196, + 0.06419330090284348, + 0.022851625457406044, + 0.002152730943635106, + -0.10917485505342484, + -0.04570282623171806, + -0.016673268750309944, + 0.05995424836874008, + 0.018285298720002174, + 0.06175391003489494, + -0.008228455670177937, + 0.014309035614132881, + 0.08487795293331146, + -0.04007858783006668, + -0.00994662195444107, + -0.050515834242105484, + -0.07723426073789597, + 0.012172291055321693, + -0.043892864137887955, + -0.03002375178039074, + -0.023750606924295425, + -0.013003614731132984, + -0.0025059643667191267, + 0.006984130945056677, + -0.018295791000127792, + -0.022633159533143044, + 0.014360547065734863, + 0.043244775384664536, + -0.040397826582193375, + 0.11726679652929306, + 0.04753686860203743, + 0.04227572679519653, + 0.02501220628619194, + 0.012631411664187908, + -0.08169160038232803, + -0.05135753005743027, + -0.053609929978847504, + -0.03308042138814926, + -0.09418483823537827, + -0.060361675918102264, + -0.061002884060144424, + 0.006905470974743366, + 0.05726144462823868, + 0.07202763110399246, + -0.024012768641114235, + -0.026511933654546738, + 0.02941644936800003, + 0.0776744931936264, + -0.051591772586107254, + -0.05878135934472084, + -0.03241370618343353, + -0.02777901105582714, + -0.036894913762807846, + 0.07154955714941025, + -0.03475677967071533, + 0.08779682964086533, + 0.0034138651099056005, + -0.01743125542998314, + -0.05192619562149048, + 0.0011706397635862231, + 0.06961590051651001, + -0.008492925204336643, + 0.0395849235355854, + 0.013853379525244236, + -0.0423424169421196, + -0.008743289858102798, + 0.024973014369606972, + 0.02018977887928486, + -0.01099506113678217, + 0.05707124248147011, + 0.019871052354574203, + 0.04815204441547394, + 0.05055695027112961, + 0.03466722369194031, + -0.1031481921672821, + 0.030832864344120026, + 0.00551042053848505, + 0.006307847797870636, + -0.08179070055484772, + 0.009860869497060776, + -0.05156444385647774, + -0.010661332868039608, + 0.1347106397151947, + 0.023989982903003693, + -0.003438058542087674, + -0.08509227633476257, + -0.06327715516090393, + 0.02180999144911766, + -0.10641850531101227, + 0.08491542190313339, + 0.006503382697701454, + 0.004664801526814699, + -0.12035132199525833, + 1.3483176424965919e-33, + 0.035357266664505005, + 0.05282789468765259, + -0.06793714314699173, + -0.028938788920640945, + -0.05303389951586723, + -0.011511147953569889, + 0.02273278310894966, + -0.018527811393141747, + 0.0643833577632904, + 0.14522850513458252, + 0.06181935966014862, + -0.057861216366291046, + -9.501912427367643e-05, + -0.0384417362511158, + -0.019290005788207054, + -0.08837372064590454, + 0.08720174431800842, + 0.03420009836554527, + -0.07192739844322205, + 0.025784406810998917, + -0.08056303858757019, + -0.0610157810151577, + -0.09375976771116257, + 0.03837656229734421, + -0.0821307972073555, + 0.04282713308930397, + 0.0011446507414802909, + 0.00984996184706688, + -0.0944182425737381, + 0.010985415428876877, + -0.07626770436763763, + 0.05047892406582832, + 0.07744523882865906, + 0.05124858021736145, + -0.0664655789732933, + 0.07561935484409332, + 0.06179393455386162, + -0.016544777899980545, + -0.006274321116507053, + -0.021703407168388367, + 0.008544660173356533, + 0.06161121279001236, + 0.09834647178649902, + -0.017909035086631775, + -0.08882169425487518, + -0.025299064815044403, + -0.05431581661105156, + 0.0007434636354446411, + -0.13631191849708557, + 0.015463047660887241, + 0.0466439388692379, + 0.014980399049818516, + -0.003319081384688616, + 0.05722460895776749, + -0.019847959280014038, + 0.08333149552345276, + 0.011956755071878433, + 0.02888651005923748, + -0.014449404552578926, + 0.02287372201681137, + 0.05079605057835579, + 0.06286299228668213, + -0.06741701811552048, + 0.06220082566142082, + 0.0804055854678154, + -0.0893784761428833, + -0.015382510609924793, + -0.08450247347354889, + 0.05563335865736008, + -0.013407660648226738, + 0.08332044631242752, + -0.008235545828938484, + -0.060970939695835114, + 0.0013087866827845573, + -0.02520805597305298, + -0.09042573720216751, + 0.06362541764974594, + 0.06445849686861038, + -0.0291000846773386, + 0.044251542538404465, + 0.010764643549919128, + -0.01991664245724678, + -0.015966871753335, + 0.11885121464729309, + -0.06933662295341492, + 0.02352093905210495, + -0.011061599478125572, + -0.0375964492559433, + -0.03814756125211716, + -0.01765800267457962, + -0.04606943577528, + 0.11954887211322784, + -0.07412311434745789, + -0.018572604283690453, + -0.055109817534685135, + -1.7676697439128475e-08, + -0.03137022256851196, + -0.0018228638218715787, + -0.12096557021141052, + -0.058270201086997986, + 0.03066573292016983, + -0.02069634199142456, + -0.02716277539730072, + -0.00688528036698699, + -0.11000856757164001, + -0.004557265900075436, + 0.048136573284864426, + 0.03953859210014343, + -0.08215634524822235, + 0.05541912838816643, + -0.0063467491418123245, + 0.0070854006335139275, + -0.045691050589084625, + -0.014251625165343285, + -0.05949613079428673, + 0.004701210651546717, + -0.001941507332958281, + 0.013746126554906368, + -0.037657588720321655, + 5.2965726354159415e-05, + 0.07807642221450806, + 0.06844472885131836, + 0.011808326467871666, + 0.049206189811229706, + 0.05109219253063202, + 0.018657315522432327, + 0.0353577584028244, + 0.03698884695768356, + 0.011364604346454144, + -0.022172480821609497, + -0.05966803431510925, + -0.012816722504794598, + 0.008882096968591213, + -0.002078373683616519, + 0.07671856880187988, + 0.10880614072084427, + 0.006890799850225449, + 0.0015911983791738749, + 0.005783978849649429, + 0.04412779211997986, + 0.05597740039229393, + 0.04151660576462746, + 0.00960370060056448, + 0.0038836353924125433, + -0.07260779291391373, + -0.019402949139475822, + -0.018243297934532166, + -0.049712881445884705, + 0.006521278992295265, + 0.04757821932435036, + -0.02877194620668888, + -0.08950718492269516, + 0.036543942987918854, + 0.022424088791012764, + -0.04854283109307289, + 0.02552623674273491, + 0.12911008298397064, + 0.06698532402515411, + 0.02560366690158844, + 0.011606029234826565 + ], + "train-bold||vehicles,subway,light rail,public transit,transportation,commuter,traveling,places,locations": [ + 0.037478670477867126, + -0.09414800256490707, + 0.03009643591940403, + 0.12576977908611298, + 0.015287076123058796, + 0.056266043335199356, + 0.03377392888069153, + 0.012681175954639912, + -0.10586795210838318, + -0.047186631709337234, + 0.027690663933753967, + 0.042180247604846954, + 0.005425216164439917, + 0.00513138622045517, + -0.03222663328051567, + 0.04359585419297218, + 0.1278025507926941, + 0.026303857564926147, + 0.032714273780584335, + 0.006989999674260616, + 0.049735456705093384, + -0.03763081878423691, + 1.8053813619189896e-05, + 0.058753643184900284, + 0.010873615741729736, + 0.030019527301192284, + 0.042837757617235184, + -0.030787471681833267, + -0.06490343064069748, + -0.04903914034366608, + -0.09740979969501495, + 0.0008786332327872515, + 0.04586900770664215, + 0.027975929901003838, + 0.02047877386212349, + 0.021056881174445152, + 0.022751348093152046, + -0.041349854320287704, + 0.06357171386480331, + 0.015882544219493866, + -0.04719049856066704, + -0.08462497591972351, + -0.034941013902425766, + 0.0453641340136528, + 0.020666981115937233, + -0.042607661336660385, + 0.005745366681367159, + -0.06994620710611343, + -0.008220716379582882, + -0.021802548319101334, + 0.033120591193437576, + -0.06757904589176178, + -0.05327240005135536, + 0.06228119134902954, + -0.034220028668642044, + -0.035839229822158813, + -0.09393954277038574, + 0.038653746247291565, + 0.05170195549726486, + 0.09535505622625351, + -0.03150021284818649, + 0.001892254687845707, + -0.012640050612390041, + 0.03657842427492142, + 0.0539981834590435, + -0.009065528400242329, + -0.06082227826118469, + 0.05432428792119026, + -0.008998090401291847, + -0.0540265254676342, + 0.07648923248052597, + 0.030280087143182755, + -0.01100223883986473, + -0.00796816498041153, + -0.008495857007801533, + -0.04642072692513466, + 0.018778325989842415, + 0.026929078623652458, + -0.0329551063477993, + -0.056942641735076904, + -0.0558268167078495, + -0.02039339765906334, + -0.008575614541769028, + -0.034615807235240936, + 0.029552418738603592, + 0.017025232315063477, + -0.025825098156929016, + -0.018985074013471603, + -0.057381145656108856, + -0.010588103905320168, + -0.05262412875890732, + -0.013232176192104816, + -0.023170603439211845, + 0.04332830011844635, + -0.05121752619743347, + 0.04269721731543541, + -0.04160211980342865, + 0.01271430030465126, + 0.019772393628954887, + 0.035997889935970306, + 0.04593352600932121, + 0.05880453437566757, + 0.05342065915465355, + 0.08264719694852829, + -0.06639885902404785, + -0.004520838148891926, + -0.021699631586670876, + -0.015123656019568443, + -0.00016435253201052547, + -0.0120288897305727, + 0.05843401700258255, + -0.06442443281412125, + -0.04401949793100357, + -0.047959279268980026, + -0.07744189351797104, + -0.042507272213697433, + -0.06841021776199341, + -0.013421825133264065, + 0.06361207365989685, + 0.07047048956155777, + -0.07563985139131546, + -0.07149431854486465, + 0.08057228475809097, + -0.0022033732384443283, + -0.060108836740255356, + -0.03600969538092613, + 0.04676712304353714, + -3.503443363190746e-33, + -0.06916037201881409, + 0.00979078933596611, + 0.011838896200060844, + 0.10568296164274216, + -0.017740262672305107, + -0.03449922800064087, + -0.062118399888277054, + -0.07296194136142731, + -0.026066264137625694, + 0.028062693774700165, + 0.031629834324121475, + 0.07629648596048355, + 0.0038419796619564295, + 0.08555525541305542, + 0.06636230647563934, + -0.05287758260965347, + -0.02638683281838894, + -0.03630944341421127, + -0.03787250816822052, + 0.005272659473121166, + 0.02714374288916588, + 0.06920279562473297, + -0.02241090126335621, + -0.07737527787685394, + -0.01739325560629368, + -0.030065102502703667, + -0.006588539108633995, + -0.03223556652665138, + -0.003333339001983404, + 0.056606486439704895, + 0.004733690991997719, + 0.11520992964506149, + 0.051004230976104736, + 0.05365719273686409, + -0.023757923394441605, + 0.008488948456943035, + -0.0199422650039196, + -0.0522838830947876, + -0.05014815926551819, + -0.035151053220033646, + -0.0333288311958313, + -0.051603253930807114, + -0.08169952034950256, + 0.044274408370256424, + 0.04181217402219772, + 0.10307960212230682, + 0.03235606849193573, + -0.07535865902900696, + 0.02890830673277378, + 0.06581639498472214, + -0.08390343189239502, + -0.0227955412119627, + -0.09264224767684937, + -0.061239372938871384, + -0.009400409646332264, + 0.013239833526313305, + -0.005283815320581198, + 0.05775926634669304, + 0.08474602550268173, + -0.006359019782394171, + -0.015582477673888206, + 0.04035095125436783, + 0.0689212828874588, + -0.021728038787841797, + 0.05462005361914635, + 0.01542932540178299, + -0.01172275748103857, + -0.03932051360607147, + 0.057085830718278885, + 0.058874282985925674, + 0.0025651922915130854, + 0.013688181526958942, + 0.023360291495919228, + 0.06603876501321793, + 0.09738866239786148, + -0.0233573280274868, + -0.08139894902706146, + 0.028725290670990944, + -0.05001714825630188, + 0.011313552036881447, + -0.13419079780578613, + -0.019594982266426086, + -0.08179780840873718, + 0.09946081787347794, + 0.14757826924324036, + 0.038318026810884476, + -0.022363873198628426, + -0.08267822861671448, + 0.020145520567893982, + 0.03323599323630333, + -0.09899601340293884, + 0.060996852815151215, + -0.01571640372276306, + -0.016252581030130386, + -0.056311510503292084, + -2.262674178409281e-34, + 0.09845481812953949, + 0.027609730139374733, + -0.011489366181194782, + -0.06342651695013046, + -0.06499607861042023, + 0.03705320507287979, + -0.01838815025985241, + -0.019911641255021095, + 0.04770204797387123, + 0.15786148607730865, + -0.029823588207364082, + -0.053377460688352585, + 0.005988735239952803, + -0.012960761785507202, + -0.02652495726943016, + -0.033073827624320984, + 0.052929311990737915, + 0.05715285241603851, + -0.08589323610067368, + 0.03813818469643593, + -0.06032540276646614, + -0.038446228951215744, + -0.13769222795963287, + 0.06359440088272095, + 0.0212026908993721, + 0.03444696590304375, + -0.030386274680495262, + -0.03914370760321617, + -0.04913197457790375, + -0.03436734154820442, + -0.09117882698774338, + -0.01132960058748722, + 0.06678953766822815, + 0.00413436209782958, + -0.10444265604019165, + 0.08899401873350143, + 0.04420290142297745, + 0.028887920081615448, + 0.024079138413071632, + -0.00730373989790678, + 0.004524842835962772, + -0.027707979083061218, + 0.08027106523513794, + 0.030608469620347023, + -0.03126123920083046, + -0.030605509877204895, + -0.08086441457271576, + -0.035508282482624054, + -0.07614420354366302, + 0.051105983555316925, + 0.035166963934898376, + -0.018991490826010704, + -0.06423475593328476, + -0.007775323931127787, + 0.03661064803600311, + -0.014486977830529213, + -0.007711992133408785, + -0.013787589967250824, + -0.041325945407152176, + -0.025412144139409065, + 0.041133034974336624, + 0.02904127910733223, + -0.03690619394183159, + 0.05068672075867653, + 0.023819398134946823, + -0.13785947859287262, + -0.021803610026836395, + -0.08182016015052795, + 0.04600299149751663, + -0.03528458997607231, + 0.052818018943071365, + -0.004188431426882744, + -0.0050559029914438725, + 0.03398357704281807, + -0.024454573169350624, + -0.032478004693984985, + 0.08155574649572372, + 0.13564737141132355, + 0.029523802921175957, + 0.019481424242258072, + 0.034417927265167236, + -0.0266435407102108, + -0.016230542212724686, + 0.037626150995492935, + -0.004410590976476669, + 0.0351092666387558, + 0.013098583556711674, + -0.0190145131200552, + -0.0014278913149610162, + -0.02347603440284729, + -0.009068031795322895, + 0.04072728008031845, + -0.019398855045437813, + -0.04985899105668068, + -0.10743236541748047, + -2.4858152869455807e-08, + 0.02358313649892807, + 0.0038762856274843216, + -0.07443550229072571, + -0.01515537966042757, + 0.021387813612818718, + -0.021971510723233223, + -0.02744383178651333, + 0.052325110882520676, + -0.12060106545686722, + 0.04300926253199577, + 0.03262069448828697, + 0.05549197271466255, + -0.07806375622749329, + 0.029109548777341843, + 0.030295217409729958, + 0.011074738577008247, + -0.06389138847589493, + 0.06647998839616776, + -0.032083187252283096, + -0.01763981394469738, + -0.023650629445910454, + 0.031191034242510796, + 0.021927673369646072, + 0.0728229507803917, + 0.024714641273021698, + 0.030979080125689507, + -0.02251535840332508, + 0.0024321735836565495, + 0.11063577234745026, + -0.0283700842410326, + 0.0653606504201889, + 0.05312146991491318, + 0.0036100188735872507, + -0.026928072795271873, + -0.057363640516996384, + -0.003917521331459284, + 0.004382499493658543, + 0.029843734577298164, + -0.004279464483261108, + 0.03328075259923935, + -0.008743103593587875, + -0.0682632327079773, + 0.013145207427442074, + -0.008540633134543896, + 0.062455542385578156, + 0.0428997203707695, + -0.0378752201795578, + -0.04758572205901146, + -0.08316314220428467, + -0.059740349650382996, + -0.11392844468355179, + -0.03275298327207565, + 0.004254489205777645, + 0.06634853035211563, + 0.025397272780537605, + -0.01325129996985197, + -0.022767556831240654, + -0.013918902724981308, + -0.053881868720054626, + -0.03507810831069946, + 0.08617955446243286, + 0.04531673714518547, + 0.01593649946153164, + 0.04149239882826805 + ], + "train-regional-bold||vehicles,subway,railroad,public transit,transportation,commuter,freight,shipping,traveling,places,locations": [ + 0.05771666020154953, + -0.09712494909763336, + 0.022882547229528427, + 0.11195502430200577, + -0.007153403479605913, + 0.05576121807098389, + -0.01911749318242073, + 0.021703479811549187, + -0.12481337785720825, + -0.03776843473315239, + 0.0015695877373218536, + 0.011129421181976795, + -0.009290805086493492, + 0.04146203398704529, + -0.04887945577502251, + 0.0038216570392251015, + 0.11218026280403137, + 0.006594774313271046, + 0.021970698609948158, + -0.0033852634951472282, + 0.02824428491294384, + -0.03249913081526756, + 0.00039922885480336845, + 0.04429253935813904, + 0.06061851233243942, + 0.009787945076823235, + 0.03313090652227402, + -0.016587672755122185, + -0.0524713397026062, + -0.027731385082006454, + -0.12515464425086975, + 0.043318018317222595, + 0.04050721600651741, + 0.02069198526442051, + 0.023612231016159058, + 0.022766003385186195, + 0.007699883542954922, + -0.01431305706501007, + 0.06064359471201897, + 0.011639228090643883, + -0.06307575106620789, + -0.051964037120342255, + -0.05411115288734436, + 0.0548454225063324, + 0.015917738899588585, + -0.059546466916799545, + 0.021261589601635933, + -0.031466033309698105, + -0.025431303307414055, + -0.008123012259602547, + 0.05231808125972748, + -0.058649901300668716, + -0.04692576825618744, + 0.07954558730125427, + -0.05006001144647598, + -0.027150020003318787, + -0.056821372359991074, + 0.04662144184112549, + 0.021380331367254257, + 0.11242768168449402, + -0.05251289904117584, + -0.002937665907666087, + -0.041737813502550125, + 0.03586362302303314, + 0.05365341156721115, + 0.0005559508572332561, + -0.0727558583021164, + 0.03732067346572876, + -0.043914202600717545, + -0.07182326167821884, + 0.08646048605442047, + -0.0027729335706681013, + -0.021133292466402054, + 0.007990910671651363, + 0.033273838460445404, + -0.027786459773778915, + -0.009651528671383858, + 0.01930670067667961, + 0.0002472879714332521, + -0.05002604424953461, + -0.05592964217066765, + 0.007306904532015324, + 0.006767653860151768, + -0.06349329650402069, + -0.015471173450350761, + 0.015369430184364319, + 0.01704588159918785, + -0.042471639811992645, + -0.06674938648939133, + -0.023453177884221077, + -0.035507164895534515, + 0.00010300598660251126, + 0.015492822974920273, + 0.010142588056623936, + -0.03946888446807861, + 0.040754418820142746, + -0.05284992232918739, + 0.021279456093907356, + 0.061018459498882294, + 0.01129707507789135, + 0.0579923614859581, + 0.026116909459233284, + 0.03588712587952614, + 0.04733790084719658, + -0.07150990515947342, + -0.0006115575088188052, + -0.031103918328881264, + -0.012643049471080303, + 0.020627563819289207, + 0.018626611679792404, + 0.06653022766113281, + -0.04211902990937233, + -0.04959523305296898, + -0.04880090802907944, + -0.07909345626831055, + 0.0028723087161779404, + -0.06773316860198975, + -0.03401712700724602, + 0.06253382563591003, + 0.053291160613298416, + -0.10022939741611481, + -0.08425839245319366, + 0.04664795100688934, + 0.008147068321704865, + -0.044191159307956696, + -0.030095594003796577, + 0.04961727559566498, + -4.221573065917236e-33, + -0.05139964818954468, + -0.02573006972670555, + 0.01694846712052822, + 0.08037690073251724, + -0.013165836222469807, + -0.033072251826524734, + -0.02842041850090027, + -0.0953061506152153, + 0.0009062554454430938, + 0.022178303450345993, + 0.008597157895565033, + 0.11384881287813187, + 0.016033301129937172, + 0.07302119582891464, + 0.05864487588405609, + -0.03516114875674248, + 0.0064976937137544155, + -0.02550521120429039, + 0.0014335487503558397, + -0.005748530849814415, + 0.031315840780735016, + 0.06234133243560791, + -0.016803797334432602, + -0.08931592851877213, + -0.030751647427678108, + -0.04117739945650101, + -0.029128359630703926, + -0.038524191826581955, + 0.011399360373616219, + 0.0545576736330986, + -0.015187476761639118, + 0.09577206522226334, + 0.02977212890982628, + 0.06387646496295929, + -0.06071691960096359, + -0.01158557366579771, + -0.020800314843654633, + -0.045190032571554184, + -0.038508087396621704, + -0.023751327767968178, + -0.03100600466132164, + -0.0651460736989975, + -0.07902827858924866, + 0.04865197837352753, + 0.04324527457356453, + 0.07772640138864517, + 0.030487043783068657, + -0.06750506907701492, + 0.03276892006397247, + 0.04400184378027916, + -0.09355893731117249, + -0.0076211728155612946, + -0.02911406382918358, + -0.09247522801160812, + -0.001271793502382934, + 0.037323109805583954, + 0.03309594839811325, + 0.028359895572066307, + 0.08224780112504959, + 0.011739403940737247, + -0.0037228413857519627, + 0.033091384917497635, + 0.07738854736089706, + -0.040596142411231995, + 0.038518957793712616, + -0.018672028556466103, + 0.0012672594748437405, + -0.03509199991822243, + 0.043279100209474564, + 0.043664682656526566, + 0.004065820015966892, + 0.015220043249428272, + 0.06028052791953087, + 0.0959843099117279, + 0.11689393222332001, + -0.006075977813452482, + -0.08269865810871124, + 0.05677466467022896, + -0.046814899891614914, + -0.01863904856145382, + -0.1475910097360611, + -0.045792821794748306, + -0.13674533367156982, + 0.12068856507539749, + 0.14955827593803406, + 0.031195558607578278, + -0.030883217230439186, + -0.06893711537122726, + 0.02368932031095028, + 0.03120407462120056, + -0.11206910759210587, + 0.05114273726940155, + -0.007368371356278658, + -0.004411582835018635, + -0.015577517449855804, + 9.755592921367248e-34, + 0.10057255625724792, + 0.0527733638882637, + -0.01619885116815567, + -0.05698298290371895, + -0.07635778188705444, + 0.028422566130757332, + -0.01246591191738844, + -0.017925912514328957, + 0.05173976719379425, + 0.11869792640209198, + -0.05242994427680969, + -0.03233787789940834, + 0.017174115404486656, + 0.0046501425094902515, + -0.03846227377653122, + -0.036053139716386795, + 0.0513572134077549, + 0.05548398941755295, + -0.0631277784705162, + 0.057836953550577164, + -0.055632028728723526, + -0.05622294172644615, + -0.14158029854297638, + 0.06811607629060745, + 0.026047000661492348, + 0.015913235023617744, + -0.02696320414543152, + -0.06357645243406296, + -0.033299025148153305, + -0.010135240852832794, + -0.07324753701686859, + -0.03196539729833603, + 0.08696293830871582, + 0.02001609466969967, + -0.14285743236541748, + 0.04385768249630928, + 0.08518176525831223, + 0.023495735600590706, + 0.045098498463630676, + -0.03992077335715294, + -0.007620548829436302, + -0.05857940763235092, + 0.08277145028114319, + 0.049190111458301544, + -0.016751490533351898, + -0.039524178951978683, + -0.09391804039478302, + -0.02603469416499138, + -0.08513998240232468, + 0.04929443821310997, + 0.026874173432588577, + 0.01861318200826645, + -0.0739821195602417, + -0.007384397555142641, + 0.03859446942806244, + 0.020003503188490868, + 0.018179994076490402, + -0.003014483954757452, + -0.014316692017018795, + -0.040582191199064255, + 0.04316845163702965, + 0.014907034114003181, + -0.018703965470194817, + 0.05275869369506836, + 0.023198483511805534, + -0.10141528397798538, + 0.012500504963099957, + -0.09622292965650558, + 0.04270927608013153, + -0.02780754491686821, + 0.026146307587623596, + 0.04890112578868866, + 0.002825705800205469, + 0.02370060421526432, + -0.03351655974984169, + -0.00017487221339251846, + 0.06910961866378784, + 0.10894233733415604, + 0.025005139410495758, + 0.03302273154258728, + 0.03210585191845894, + -0.046997781842947006, + -0.03011675551533699, + 0.052363380789756775, + -0.003667940618470311, + 0.03091244027018547, + 0.02844218723475933, + -0.007639045361429453, + 0.02249620482325554, + -0.021554462611675262, + -0.012231219559907913, + 0.043289218097925186, + -0.024797238409519196, + -0.037153564393520355, + -0.09321551024913788, + -2.5070022502404754e-08, + 0.03771282359957695, + -0.004316581878811121, + -0.09816713631153107, + -0.003240112215280533, + 0.010668819770216942, + -0.002564367139711976, + -0.023531250655651093, + 0.07555027306079865, + -0.11055709421634674, + 0.05156725272536278, + 0.03455035015940666, + 0.04576071351766586, + -0.07076378166675568, + 0.011727217584848404, + 0.034388311207294464, + 0.0008387238485738635, + -0.052596524357795715, + 0.07859331369400024, + -0.03155919536948204, + -0.07428279519081116, + -0.000776888569816947, + 0.03955288603901863, + 0.031812068074941635, + 0.07652565836906433, + 0.055393118411302567, + -0.003309475490823388, + -0.037793904542922974, + 0.03028399869799614, + 0.10445158928632736, + -0.050214983522892, + 0.05758717656135559, + 0.04303520917892456, + -0.007068449631333351, + -0.002177662681788206, + -0.02594609558582306, + -0.011800163425505161, + 0.0006110717076808214, + 0.04181250184774399, + -0.018715308979153633, + -0.01133769191801548, + 0.02236032858490944, + -0.08067657798528671, + 0.004390145651996136, + -0.024719538167119026, + 0.07544677704572678, + 0.02258523367345333, + -0.025473682209849358, + -0.022832902148365974, + -0.033422231674194336, + -0.03646897152066231, + -0.11255719512701035, + -0.009003045968711376, + -0.00610899506136775, + 0.07461771368980408, + 0.05091727524995804, + 0.0073106433264911175, + -0.022835412994027138, + -0.052463069558143616, + -0.016999024897813797, + 0.005240890197455883, + 0.051051169633865356, + 0.059275221079587936, + 0.012930265627801418, + 0.016464250162243843 + ], + "train-simple-bold||vehicles,subway,light rail,public transit,transportation,commuter,traveling,places,locations": [ + 0.04186386242508888, + -0.0765756368637085, + 0.044171251356601715, + 0.13081210851669312, + 0.02433367632329464, + 0.052392344921827316, + 0.030734889209270477, + 0.03856364265084267, + -0.1358577162027359, + -0.040959153324365616, + 0.030606258660554886, + 0.022579750046133995, + 0.0033448273316025734, + 0.0062906788662076, + -0.03592770919203758, + 0.02166464366018772, + 0.10878796130418777, + 0.0037649315781891346, + 0.03214196488261223, + 0.015080657787621021, + 0.01922597736120224, + -0.036769717931747437, + -0.03176281601190567, + 0.05198350548744202, + 0.0005835639894939959, + 0.046575430780649185, + 0.03449319303035736, + -0.007967590354382992, + -0.035964783281087875, + -0.06057491526007652, + -0.09434572607278824, + 0.004994102753698826, + 0.051999032497406006, + 0.02092644013464451, + 0.02394843101501465, + 0.013471542857587337, + 0.03512101620435715, + -0.030939878895878792, + 0.04481557756662369, + 0.009025240316987038, + -0.05968935042619705, + -0.08899421989917755, + -0.03395816683769226, + 0.060731980949640274, + 0.011283949948847294, + -0.04710054025053978, + 0.0064891125075519085, + -0.07513991743326187, + -0.017322668805718422, + -0.030545968562364578, + 0.045112673193216324, + -0.07040611654520035, + -0.05203091353178024, + 0.04517151415348053, + -0.02234826050698757, + -0.0328340157866478, + -0.10513125360012054, + 0.055281538516283035, + 0.053327202796936035, + 0.07414562255144119, + -0.022850360721349716, + -0.03199314698576927, + -0.006306542083621025, + 0.033874306827783585, + 0.04329650104045868, + -0.023717498406767845, + -0.05549653246998787, + 0.0462178960442543, + -0.006218208931386471, + -0.05527876317501068, + 0.07138064503669739, + 0.019532911479473114, + -0.040117841213941574, + 0.012358327396214008, + -0.007203485816717148, + -0.059507064521312714, + -0.002582929329946637, + 0.03078714944422245, + -0.04987253621220589, + -0.03707434609532356, + -0.08397263288497925, + -0.03816228359937668, + -0.030827665701508522, + -0.00964047759771347, + 0.021548418328166008, + 0.015173491090536118, + -0.01846100203692913, + -0.008893441408872604, + -0.033227019011974335, + -0.013834676705300808, + -0.04550694674253464, + 0.012523639015853405, + 0.0032131352927535772, + 0.042168427258729935, + -0.0447390042245388, + 0.039211347699165344, + -0.018407389521598816, + 0.01469138078391552, + -0.02572586014866829, + 0.04024573415517807, + 0.03692084923386574, + 0.06535029411315918, + 0.0847347229719162, + 0.058239396661520004, + -0.04777694493532181, + -0.007996183820068836, + -0.013965077698230743, + -0.03488234803080559, + 0.008596443571150303, + -0.032196518033742905, + 0.030084704980254173, + -0.07264415919780731, + -0.02634555473923683, + -0.05433017015457153, + -0.0641428679227829, + -0.04458340257406235, + -0.07920046150684357, + -0.03508486971259117, + 0.06446493417024612, + 0.08889950811862946, + -0.07498117536306381, + -0.06796372681856155, + 0.06721249222755432, + 0.0016653909115120769, + -0.062050145119428635, + -0.030990853905677795, + 0.0673755556344986, + -3.8241384259042205e-33, + -0.05279203876852989, + 0.04288865998387337, + 0.008272760547697544, + 0.10710445046424866, + -0.012511711567640305, + -0.039269737899303436, + -0.07096701115369797, + -0.06702627241611481, + -0.02185976691544056, + 0.03360714390873909, + 0.050643399357795715, + 0.06145554780960083, + -0.005517481826245785, + 0.0959634855389595, + 0.08009023219347, + -0.05073811113834381, + -0.0026454473845660686, + -0.034883785992860794, + -0.026949897408485413, + -0.01407600473612547, + 0.016834435984492302, + 0.11938463151454926, + -0.013363359495997429, + -0.09919102489948273, + -0.00864338967949152, + -0.03045688010752201, + -0.0012686469126492739, + -0.03799786791205406, + -0.003670766483992338, + 0.04776715487241745, + 0.003974637016654015, + 0.11227896809577942, + 0.04372778162360191, + 0.06990913301706314, + -0.029411962255835533, + -0.0003669862635433674, + 0.006221235264092684, + -0.04302552342414856, + -0.05081082135438919, + -0.0501004159450531, + -0.04875796288251877, + -0.04531067982316017, + -0.062358759343624115, + 0.024032728746533394, + 0.053056806325912476, + 0.120113804936409, + 0.03785278648138046, + -0.07764899730682373, + 0.02786305733025074, + 0.04764910042285919, + -0.09396068751811981, + -0.010422931984066963, + -0.09069904685020447, + -0.04991038888692856, + 0.002036085817962885, + 0.031305279582738876, + -0.003090354846790433, + 0.060387205332517624, + 0.07416117936372757, + 0.005558835808187723, + -0.012102142907679081, + 0.05252658203244209, + 0.06085655465722084, + -0.014224052429199219, + 0.04437818378210068, + 0.02155810222029686, + -0.018782133236527443, + -0.04691813886165619, + 0.05557537078857422, + 0.0664355605840683, + -0.009048187173902988, + 0.025861242786049843, + 0.017846491187810898, + 0.03169328346848488, + 0.12917757034301758, + -0.006829615216702223, + -0.03420192003250122, + -0.004381188191473484, + -0.0581958144903183, + 0.006737846415489912, + -0.12090352177619934, + -0.0036106857005506754, + -0.08332464098930359, + 0.1103639006614685, + 0.10563933104276657, + 0.03446662053465843, + -0.026048775762319565, + -0.060621924698352814, + -0.006236813962459564, + 0.04669088125228882, + -0.09924663603305817, + 0.06964810192584991, + -0.02565266750752926, + -0.018991997465491295, + -0.04312140867114067, + 2.5185517479344458e-34, + 0.08485402166843414, + 0.019025778397917747, + -0.017743974924087524, + -0.04733447730541229, + -0.05417283996939659, + 0.044481996446847916, + -0.0023736986331641674, + -0.02218092605471611, + 0.05433981865644455, + 0.16870927810668945, + -0.03184305876493454, + -0.0626368597149849, + -0.00691391434520483, + -0.01074810791760683, + -0.029705259948968887, + -0.019948376342654228, + 0.04692746326327324, + 0.07480461895465851, + -0.05645950138568878, + 0.050029538571834564, + -0.041345175355672836, + -0.02149975299835205, + -0.15629926323890686, + 0.03669776767492294, + 0.02943611331284046, + 0.04675721004605293, + -0.04690402001142502, + -0.02841358818113804, + -0.05657685548067093, + -0.03739418461918831, + -0.08022146672010422, + -0.02088792808353901, + 0.05775722861289978, + -0.008964410983026028, + -0.10578569769859314, + 0.08696647733449936, + 0.007965615950524807, + 0.025657162070274353, + 0.007871602661907673, + -0.0066062347032129765, + -0.017057308927178383, + -0.02412409707903862, + 0.08641893416643143, + 0.023642851039767265, + -0.01574406400322914, + -0.043047524988651276, + -0.0698353722691536, + -0.06933297961950302, + -0.09591710567474365, + 0.03594513610005379, + 0.02417038008570671, + -0.025567714124917984, + -0.06613094359636307, + -0.006136853713542223, + 0.04366549476981163, + -0.008091889321804047, + 0.010259131900966167, + -0.0016838132869452238, + -0.03318105638027191, + -0.016344711184501648, + 0.036208607256412506, + 0.024566806852817535, + -0.0653490349650383, + 0.04509808123111725, + 0.019845085218548775, + -0.1264203041791916, + -0.024819834157824516, + -0.09049849957227707, + 0.0309141892939806, + -0.03364800289273262, + 0.06281915307044983, + 0.0002999940188601613, + 0.0048093851655721664, + 0.016025202348828316, + -0.01358978170901537, + -0.028643812984228134, + 0.06817183643579483, + 0.11987797170877457, + 0.025099748745560646, + -0.00859207846224308, + 0.06186763569712639, + -0.025400876998901367, + -0.018786828964948654, + 0.012643421068787575, + 0.018610838800668716, + 0.03598833829164505, + 0.007501390762627125, + -0.013028307817876339, + 0.003135504899546504, + 0.0018408065661787987, + -0.018445299938321114, + 0.052438877522945404, + 0.012407966889441013, + -0.01982232742011547, + -0.1117853969335556, + -2.4879044602243994e-08, + 0.01702733151614666, + -0.035659901797771454, + -0.0692586600780487, + -0.02712366357445717, + 0.03228575736284256, + -0.019410381093621254, + -0.033598706126213074, + 0.04334281384944916, + -0.11931456625461578, + 0.06435996294021606, + 0.025507226586341858, + 0.04416731745004654, + -0.08409617841243744, + 0.07100968807935715, + 0.0008892628829926252, + 0.04944292828440666, + -0.06448421627283096, + 0.061391185969114304, + -0.023689454421401024, + -0.011314072646200657, + -0.02451174706220627, + 0.026388278231024742, + -0.0005321644712239504, + 0.07731902599334717, + 0.014537036418914795, + 0.02540052868425846, + -0.009869360364973545, + 0.025428742170333862, + 0.11463324725627899, + -0.027692904695868492, + 0.0650264099240303, + 0.05410478636622429, + 0.0020085680298507214, + -0.005030219443142414, + -0.0758344903588295, + 0.001203549443744123, + 0.00172407494392246, + 0.02793034352362156, + -0.02157014049589634, + 0.009539325721561909, + -0.00379567570053041, + -0.05497030168771744, + 0.007680618669837713, + -0.021441157907247543, + 0.058344729244709015, + 0.04640999436378479, + -0.022419579327106476, + -0.06050989031791687, + -0.08304351568222046, + -0.08024836331605911, + -0.09578563272953033, + -0.031793490052223206, + 0.0066957734525203705, + 0.05902707576751709, + 0.02768785133957863, + 0.0022564369719475508, + -0.009865902364253998, + -0.0024698879569768906, + -0.06329571455717087, + -0.03234269097447395, + 0.09033489972352982, + 0.087468720972538, + 0.003005619626492262, + 0.03239918500185013 + ], + "tram-bold||vehicles,subway,railroad,public transit,transportation,commuter,light rail,shipping,traveling,places,locations": [ + 0.08033276349306107, + -0.1337655484676361, + 0.00817835796624422, + 0.10905704647302628, + 0.005383800249546766, + -0.019486887380480766, + 0.02744375169277191, + 0.006661496590822935, + -0.11916426569223404, + -0.026581577956676483, + 0.07818298041820526, + 0.04535862058401108, + 0.005507469642907381, + 0.017033012583851814, + -0.035334911197423935, + 0.03020361252129078, + 0.11806544661521912, + 0.011465657502412796, + 0.04278978705406189, + -0.015225132927298546, + 0.03336566314101219, + -0.05107525736093521, + 0.009682885371148586, + 0.025835707783699036, + -0.034635789692401886, + 0.00033275515306741, + 0.02419675886631012, + -0.04460400342941284, + -0.060238316655159, + -0.050208836793899536, + -0.08267605304718018, + -0.010296499356627464, + 0.0323067232966423, + 0.016445714980363846, + 0.03829202800989151, + 0.007843864150345325, + 0.021482322365045547, + -0.04501497745513916, + 0.047601550817489624, + -0.03115469589829445, + -0.01645856350660324, + -0.08851348608732224, + -0.0008636972634121776, + 0.04729142412543297, + 0.03269162029027939, + -0.05173294246196747, + 0.025635361671447754, + -0.0474657379090786, + -0.011914953589439392, + 0.011489329859614372, + 0.08648255467414856, + -0.0361592099070549, + -0.028880415484309196, + 0.07345227897167206, + -0.03497918322682381, + -0.01635715365409851, + -0.06872180104255676, + 0.02635866589844227, + 0.05724602937698364, + 0.0565241202712059, + -0.0364764966070652, + 0.03896833583712578, + -0.02187730185687542, + 0.037689223885536194, + 0.08644992113113403, + -0.02021978795528412, + -0.0432029664516449, + 0.04108334332704544, + 0.015010319650173187, + -0.011580787599086761, + 0.008286009542644024, + 0.00013566082634497434, + 0.017488721758127213, + 0.04549858719110489, + -0.0018695048056542873, + -0.02027355134487152, + 0.033638469874858856, + 0.048188772052526474, + -0.04716959968209267, + -0.03816934674978256, + -0.029060805216431618, + -0.048056717962026596, + -0.07060681283473969, + -0.010118439793586731, + 0.010302718728780746, + 0.05613456666469574, + -0.022930961102247238, + -0.005757782142609358, + -0.0369228757917881, + -0.02849944680929184, + -0.012879803776741028, + -0.03833168372511864, + -0.018720343708992004, + 0.020376060158014297, + -0.13737446069717407, + -0.009117258712649345, + -0.04701188579201698, + 0.005557148717343807, + -0.01042141392827034, + 0.027398178353905678, + -0.021230217069387436, + 0.0514681339263916, + 0.0935593768954277, + 0.06918752193450928, + -0.1009097769856453, + -0.06976251304149628, + -0.03339654207229614, + -0.005592389032244682, + -0.039028704166412354, + 0.02346865087747574, + 0.00041339293238706887, + -0.052579302340745926, + -0.042322807013988495, + -0.01623859815299511, + -0.04520731419324875, + -0.03757481276988983, + -0.02450614795088768, + -0.023108918219804764, + 0.08373567461967468, + 0.027332695201039314, + -0.031014753505587578, + -0.03199484571814537, + 0.0698409378528595, + -0.00028501494671218097, + -0.08855993300676346, + -0.021597575396299362, + 0.04713005945086479, + -3.226147184567645e-33, + -0.061900652945041656, + 0.01866825483739376, + 0.005944677162915468, + 0.04952598735690117, + -0.0042266263626515865, + -0.05968482792377472, + -0.05003304034471512, + -0.10359837859869003, + 0.01792028173804283, + 0.08220406621694565, + 0.04682748019695282, + 0.050798505544662476, + 0.04373018816113472, + 0.0672105923295021, + 0.09707127511501312, + -0.01844009943306446, + 0.02125752903521061, + -0.058713871985673904, + -0.0451403371989727, + -0.0286793801933527, + -0.015670865774154663, + 0.10396147519350052, + -0.027065616101026535, + -0.09647092968225479, + -0.01507357694208622, + -0.037382930517196655, + -0.032164670526981354, + -0.05845717340707779, + 0.017556000500917435, + 0.04839964583516121, + 0.005721062421798706, + 0.09717274457216263, + 0.05264490097761154, + 0.09383094310760498, + -0.012437351979315281, + 0.01080927811563015, + -0.030859431251883507, + -0.0851452648639679, + -0.0306977741420269, + -0.007962127216160297, + -0.05891675502061844, + -0.0814407542347908, + -0.041147392243146896, + 0.06142982468008995, + 0.06729986518621445, + 0.04570327326655388, + 0.03830380365252495, + -0.10142122954130173, + 0.01207352988421917, + 0.06440693140029907, + -0.052111491560935974, + -0.018127422779798508, + -0.06603981554508209, + -0.08254530280828476, + 0.0038644822780042887, + -0.01751091703772545, + 0.020379304885864258, + 0.042229872196912766, + 0.07078947871923447, + 0.0005722647183574736, + -0.014467643573880196, + 0.013927817344665527, + 0.048822689801454544, + -0.05190541595220566, + 0.01788480579853058, + 0.010166057385504246, + -0.02021854743361473, + -0.018723871558904648, + 0.059362441301345825, + 0.042371716350317, + -0.03521207720041275, + 0.044943615794181824, + 0.05382135510444641, + 0.09979590773582458, + 0.08842618763446808, + -0.012936756014823914, + -0.0646815076470375, + 0.019247889518737793, + -0.01887514255940914, + -0.01973835565149784, + -0.125616654753685, + -0.05483902990818024, + -0.07725195586681366, + 0.1208919957280159, + 0.15909503400325775, + 0.03728189691901207, + -0.01584268920123577, + -0.046123918145895004, + -0.016086911782622337, + 0.03648439422249794, + -0.10145025700330734, + 0.08684975653886795, + -0.015340795740485191, + 0.009914274327456951, + -0.01683320850133896, + 1.1125297105154462e-35, + 0.05730145424604416, + 0.03259830176830292, + -0.05494669824838638, + -0.044434331357479095, + -0.09637540578842163, + -0.00818239152431488, + -0.03752091899514198, + -0.05274006351828575, + 0.024149227887392044, + 0.08441002666950226, + -0.12992256879806519, + -0.03556013107299805, + 0.012312096543610096, + -0.0078780148178339, + 0.04348137602210045, + 0.013027912937104702, + 0.04874303936958313, + 0.038377925753593445, + -0.06098461523652077, + 0.0231342650949955, + -0.034778524190187454, + 0.0060852342285215855, + -0.06723763048648834, + 0.051605477929115295, + 0.014626076444983482, + 0.002092156559228897, + 0.045467622578144073, + -0.01103812362998724, + -0.009160979650914669, + -0.024282321333885193, + -0.09875427931547165, + 0.007886683568358421, + 0.11893650889396667, + 0.021113336086273193, + -0.10473602265119553, + 0.06681106984615326, + 0.06825362145900726, + 0.039570365101099014, + 0.023602206259965897, + -0.03011150285601616, + 0.00370552996173501, + -0.04461123049259186, + 0.0786953940987587, + -0.0005467463051900268, + -0.012276628986001015, + -0.012313783168792725, + -0.08558384329080582, + -0.01443158183246851, + -0.07965020835399628, + 0.04055824503302574, + 0.038255929946899414, + -0.0267254039645195, + -0.034944020211696625, + -0.027784015983343124, + 0.07135261595249176, + -0.005492492113262415, + 0.007429876830428839, + -0.07866674661636353, + -0.040411315858364105, + -0.039404161274433136, + 0.04012620076537132, + 0.026989225298166275, + -0.030625391751527786, + 0.06628715246915817, + 0.06064007431268692, + -0.10378123819828033, + -0.016358431428670883, + -0.12448737770318985, + -0.056506458669900894, + -0.027267349883913994, + 0.019738806411623955, + -0.02397826313972473, + 0.00676695303991437, + 0.01058505941182375, + -0.029788756743073463, + -0.05347243696451187, + 0.05920042470097542, + 0.13798274099826813, + 0.015486231073737144, + -0.006985687185078859, + -0.023123927414417267, + 0.004568818956613541, + 0.001963849412277341, + 0.035589799284935, + -0.0266798734664917, + 0.026832276955246925, + -0.015749787911772728, + 0.008111502975225449, + 0.010113485157489777, + -0.019580841064453125, + 0.029045188799500465, + 0.053375858813524246, + -0.007724975235760212, + -0.029726916924118996, + -0.10004626214504242, + -2.4134729770253216e-08, + 0.034349873661994934, + 0.04310506954789162, + -0.068918876349926, + -0.005784963723272085, + 0.04186588525772095, + 0.07300490885972977, + -0.007393100298941135, + 0.04411334916949272, + -0.07288644462823868, + 0.03439312428236008, + 0.008304995484650135, + 0.0948798730969429, + -0.047838568687438965, + 0.0841246172785759, + 0.002006928436458111, + 0.02649557590484619, + -0.057766903191804886, + 0.017705395817756653, + -0.059393081814050674, + 0.028356164693832397, + -0.06260494887828827, + 0.035210780799388885, + 0.004899732768535614, + 0.07563626021146774, + 0.012501806952059269, + 0.04451468214392662, + -0.031441375613212585, + 0.005323753692209721, + 0.08729676902294159, + -0.037772051990032196, + 0.04961294308304787, + 0.022521372884511948, + 0.0032585752196609974, + -0.03413134440779686, + -0.07420022785663605, + 0.04801254719495773, + 0.034501709043979645, + -0.004058037884533405, + -0.0153770437464118, + 0.06961002200841904, + 0.009394942782819271, + -0.06972941011190414, + 0.013023936189711094, + 0.0042318301275372505, + 0.08283227682113647, + 0.020132871344685555, + -0.0665799230337143, + -0.041206758469343185, + -0.02315383218228817, + -0.08020004630088806, + -0.0717528685927391, + -0.05649940297007561, + 0.000952801201492548, + 0.04618292674422264, + 0.04647297039628029, + -0.03307175636291504, + -0.012580256909132004, + -0.020805971696972847, + -0.0011172224767506123, + 0.004507686942815781, + 0.11814926564693451, + 0.0466846227645874, + 0.002252351026982069, + 0.07089224457740784 + ], + "translate-bold||translation,languages,internationalization,i18n,speech": [ + -0.026436204090714455, + -0.013115729205310345, + -0.0304248183965683, + -0.03759678825736046, + 0.045988600701093674, + -0.032918255776166916, + 0.09830529242753983, + -0.023241961374878883, + 0.024907860904932022, + -0.04033801332116127, + -0.006151219829916954, + 0.02055206708610058, + 0.0055943438783288, + 0.004753481596708298, + -0.0028142891824245453, + -0.008223266340792179, + 0.014690227806568146, + 0.09238354861736298, + -0.05965649336576462, + -0.04242347925901413, + 0.07911347597837448, + 0.05752386897802353, + 0.0873681977391243, + 0.06813076883554459, + 0.08466564863920212, + 0.020455125719308853, + 0.04622636362910271, + -0.07982555031776428, + 0.07738290727138519, + -0.0735049620270729, + -0.03534609451889992, + -0.00612796563655138, + 0.09579987078905106, + 0.04336324706673622, + 0.01369973924010992, + 0.06836725771427155, + 0.013114579021930695, + -0.10339275002479553, + 0.015927894040942192, + 0.051902055740356445, + -0.03962269425392151, + -0.04185182601213455, + 0.029066743329167366, + -0.008473116904497147, + 0.03966522961854935, + -0.014603410847485065, + -0.057699475437402725, + 0.05232029780745506, + -0.047794755548238754, + 0.013926664367318153, + -0.10535415261983871, + -0.06600872427225113, + -0.03138057515025139, + 0.0278030838817358, + 0.036625877022743225, + -0.017408141866326332, + -0.026187708601355553, + 0.004542190581560135, + 0.07638327777385712, + -0.003499079728499055, + -0.03828144446015358, + 0.03595698997378349, + 0.033429697155952454, + 0.07868526875972748, + 0.02750943787395954, + 0.008173465728759766, + 0.04711953550577164, + 0.07257374376058578, + -0.03988811373710632, + 0.06805727630853653, + -0.01755458489060402, + -0.016642305999994278, + -0.008950432762503624, + 0.02982333116233349, + -0.057654425501823425, + -0.04921470582485199, + 0.027238955721259117, + -0.030058182775974274, + -0.02305534854531288, + -0.07920189201831818, + -0.010883411392569542, + -0.05831177532672882, + 0.022333648055791855, + -0.05414344370365143, + -0.0012319872621446848, + 0.011954088695347309, + -0.05265204235911369, + -0.03916725888848305, + -0.007813354022800922, + 0.021674931049346924, + -0.08535739779472351, + -0.004090619273483753, + 0.015413683839142323, + 0.08432044088840485, + -0.031715985387563705, + 0.018496442586183548, + 0.024148231372237206, + 0.005884726531803608, + -0.02130267769098282, + 0.07978116720914841, + 0.06037489324808121, + 0.06067294627428055, + 0.08284911513328552, + 0.03610660880804062, + -0.10802114754915237, + -0.04963068291544914, + 0.0005796670448035002, + -0.05962828919291496, + 0.008861029520630836, + -0.024694878607988358, + -0.008235670626163483, + -0.057332370430231094, + -0.039639152586460114, + -0.06881318241357803, + -0.01821294054389, + -0.05589580535888672, + -0.03169065713882446, + -0.02320357784628868, + 0.12144680321216583, + 0.01654348149895668, + -0.061571575701236725, + 0.030411744490265846, + 0.008287493139505386, + 0.01574166864156723, + -0.006508227437734604, + 0.023823674768209457, + 0.0443851575255394, + -1.5412169083150023e-33, + 0.08213609457015991, + 0.044621556997299194, + -0.04888206347823143, + 0.11950714886188507, + -0.03582443669438362, + -0.04166360944509506, + -0.028837693855166435, + -0.06141749396920204, + -0.0609944686293602, + -0.007863957434892654, + 0.0512390062212944, + 0.1186152994632721, + -0.057235751301050186, + 0.07582554221153259, + 0.03731813281774521, + 0.006513223517686129, + 0.07962950319051743, + 0.02658284641802311, + -0.018843071535229683, + 0.0930960401892662, + 0.04396499693393707, + 0.0641680583357811, + 0.005955853033810854, + -0.01291776541620493, + 0.03705702722072601, + -0.031481221318244934, + 0.05055886507034302, + -0.082432322204113, + -0.06739551573991776, + 0.02375544048845768, + -0.024349600076675415, + -0.034636374562978745, + 0.040474507957696915, + 0.001155748264864087, + 0.01651454158127308, + -0.049381550401449203, + -0.01049770787358284, + -0.03509242832660675, + -0.01316591165959835, + 0.01567857712507248, + -0.06342566758394241, + -0.04795281961560249, + -0.03225066885352135, + 0.02181948348879814, + 0.07643408328294754, + 0.09235383570194244, + -0.05865927040576935, + -0.025583907961845398, + 0.02383742667734623, + -0.01775285415351391, + -0.022517703473567963, + -0.03346296399831772, + -0.04740991070866585, + -0.021236171945929527, + 0.11698662489652634, + 0.04418162629008293, + 0.020484553650021553, + 0.0835862085223198, + 0.030635712668299675, + -0.0071883415803313255, + 0.008458212018013, + -0.02788517065346241, + 0.0660308301448822, + -0.0444573350250721, + 0.06784157454967499, + 0.019666612148284912, + -0.08455627411603928, + -0.006449549924582243, + 0.09842556715011597, + -0.07384942471981049, + -0.07521098107099533, + 0.009863891638815403, + 0.06918159127235413, + 0.0804472267627716, + 0.01745336875319481, + 0.07540829479694366, + -0.04921094328165054, + -0.047028202563524246, + 0.02841607667505741, + -0.02377992868423462, + -0.12083178013563156, + 0.004004916176199913, + -0.015786118805408478, + 0.046644557267427444, + 0.024113677442073822, + 0.06039933115243912, + -0.0009391772327944636, + -0.04160270467400551, + -0.002840634435415268, + 0.08244048804044724, + -0.07551667094230652, + 0.02363925240933895, + -0.003986143972724676, + -0.09023848176002502, + -0.09462659806013107, + -7.183880359771826e-34, + 0.004729023203253746, + 0.022464275360107422, + -0.06628475338220596, + 0.044781576842069626, + -0.08518321067094803, + 0.008307570591568947, + 0.013322173617780209, + 0.10433677583932877, + 0.08620823174715042, + -0.005551838781684637, + 0.013216144405305386, + -0.11351364850997925, + 0.015347983688116074, + -0.03173135966062546, + -0.042489949613809586, + -0.002193577354773879, + 0.05640743672847748, + -0.0008150029461830854, + 0.0013533171731978655, + 0.03492645174264908, + -0.07021509855985641, + 0.02139672264456749, + -0.08179976791143417, + 0.06935428082942963, + -0.06159967556595802, + -0.0074042449705302715, + -0.02374022826552391, + 0.030248429626226425, + -0.07270096242427826, + -0.01913217082619667, + 0.03150733560323715, + -0.08416226506233215, + 0.013961004093289375, + 0.049388520419597626, + -0.08621390908956528, + 0.05718645080924034, + 0.02802789770066738, + -0.04570577293634415, + 0.002577254083007574, + 0.027548838406801224, + 0.040565717965364456, + 0.03313731774687767, + -0.002524449722841382, + -0.027183106169104576, + -0.05262384191155434, + 0.01669647917151451, + -0.11782533675432205, + -0.04910857602953911, + -0.06705565005540848, + -0.01751692034304142, + 0.04769612103700638, + 0.0002811476879287511, + -0.028306901454925537, + -0.04622242599725723, + -0.0009081325842998922, + -0.10583508759737015, + 0.05502729117870331, + -0.05689413845539093, + -0.008353718556463718, + -0.041973572224378586, + -0.014202097430825233, + -0.0038446083199232817, + 0.0053827399387955666, + -0.0043314481154084206, + -0.02221805974841118, + 0.00010362740431446582, + 0.040697772055864334, + -0.016658009961247444, + 0.08286011964082718, + -0.03846045583486557, + 0.12598425149917603, + -0.0559534877538681, + 0.03341333940625191, + 0.08185147494077682, + -0.0009501866879872978, + -0.056231528520584106, + 0.04627483710646629, + -0.020716216415166855, + 0.010420340113341808, + -0.03894621506333351, + -0.07527656853199005, + -0.019002659246325493, + -0.04714413732290268, + 0.0033835689537227154, + -0.022911114618182182, + 0.0765988901257515, + -0.03251463174819946, + -0.009732067584991455, + 0.09446834027767181, + 0.02023615874350071, + -0.02545025385916233, + 0.0677059143781662, + -0.05347873643040657, + -0.036064520478248596, + -0.048380617052316666, + -2.205897509099941e-08, + -0.05634608492255211, + -0.0458257831633091, + -0.053146861493587494, + -0.03971800208091736, + 0.008822212927043438, + -0.07975706458091736, + -0.014992635697126389, + -0.05763307586312294, + -0.021880678832530975, + -0.04452183470129967, + -0.017149457708001137, + 0.05528777465224266, + -0.09205793589353561, + -0.0759592056274414, + 0.004235485568642616, + 0.04093574732542038, + -0.016047773882746696, + 0.09428036212921143, + 0.019128981977701187, + -0.03250020369887352, + 0.005809577647596598, + 0.11160086840391159, + 0.009202118031680584, + -0.035518571734428406, + 0.05117537081241608, + 0.018033234402537346, + -0.05476488918066025, + -0.009745076298713684, + 0.06858140975236893, + -0.01805303245782852, + 0.019450625404715538, + 0.046689778566360474, + 0.01984756626188755, + 0.0215466171503067, + -0.107878178358078, + -0.01092515978962183, + -0.029697204008698463, + -0.020604053512215614, + 0.026994870975613594, + 0.11953677982091904, + 0.07026086747646332, + 0.00513868872076273, + -0.062144096940755844, + -0.059866148978471756, + -0.027753746137022972, + 0.012403437867760658, + -0.028880534693598747, + -0.03153269737958908, + -0.027863044291734695, + -0.12603068351745605, + -0.03624463826417923, + -0.022641561925411224, + -0.01428037416189909, + 0.09183906018733978, + -0.0042472113855183125, + 0.02550060860812664, + 0.0033199016470462084, + -0.005544190760701895, + 0.05786273255944252, + 0.04819397255778313, + 0.11894058436155319, + 0.013586415909230709, + 0.009940109215676785, + -0.06354577839374542 + ], + "trash-bold||garbage,remove,delete,destroy,recycle,recycling": [ + -0.026395436376333237, + 0.011884601786732674, + -0.024824118241667747, + -0.00918835960328579, + 0.044813599437475204, + -0.03401070460677147, + 0.09858925640583038, + -0.07931062579154968, + 0.0378580205142498, + 0.013339146040380001, + 0.04713049158453941, + 0.017671367153525352, + 0.0731729045510292, + 0.010677107609808445, + -0.08683618903160095, + 0.032066505402326584, + -0.02905935049057007, + 0.05747346580028534, + -0.0003256344352848828, + 0.02479715831577778, + 0.08104556053876877, + 0.04082616791129112, + 0.03408409282565117, + 0.015899542719125748, + 0.062126524746418, + 0.051519330590963364, + 0.001300735748372972, + -0.023565106093883514, + -0.004656191915273666, + -0.13968738913536072, + 0.02952932007610798, + 0.015880726277828217, + 0.08000420033931732, + -0.0003218301571905613, + 0.09501028060913086, + 0.052298638969659805, + -0.004320560488849878, + -0.015530403703451157, + 0.005128469783812761, + -0.0454728864133358, + -0.03782476857304573, + -0.009354186244308949, + -0.060223374515771866, + 0.020590631291270256, + -0.053843747824430466, + -0.023301495239138603, + -0.07418930530548096, + -0.102116659283638, + 0.010453078895807266, + -0.0667719915509224, + 0.09512290358543396, + -0.048719052225351334, + -0.08116234093904495, + 0.005858052987605333, + 0.08935623615980148, + -0.05253998190164566, + 0.0058606150560081005, + -0.05978711321949959, + -0.003945975564420223, + -0.007919974625110626, + 0.03450601175427437, + 0.04092452675104141, + 0.015828076750040054, + 0.022771308198571205, + 0.11129970848560333, + 0.029016682878136635, + -0.005773160140961409, + 0.04498891532421112, + -0.049333203583955765, + 0.008124535903334618, + -0.024784330278635025, + 4.664534208131954e-05, + -0.012290098704397678, + -0.00949778314679861, + -0.04209441691637039, + 0.05584913119673729, + 0.046236321330070496, + 0.009058048017323017, + -0.12467528879642487, + 0.0079286377876997, + -0.07678958773612976, + -0.00612306036055088, + 0.006362231448292732, + -0.042922064661979675, + 0.017618093639612198, + 0.06742264330387115, + -0.07876555621623993, + -0.09410838782787323, + 0.033055584877729416, + -0.011079727672040462, + -0.04205175116658211, + 0.018440794199705124, + 0.10456406325101852, + 0.025532901287078857, + -0.11998647451400757, + -0.011668609455227852, + 0.05852516368031502, + -0.010878009721636772, + 0.0032021086663007736, + 0.09076153486967087, + -0.01498472224920988, + 0.09564400464296341, + 0.041513558477163315, + -0.03811003267765045, + -0.02831445261836052, + -0.03475348278880119, + -0.026546262204647064, + -0.02412749081850052, + -0.02912011556327343, + 0.010727595537900925, + -0.040777236223220825, + -0.060723092406988144, + -0.025973711162805557, + -0.0320705808699131, + -0.02814057096838951, + 0.01366734690964222, + -0.04218894615769386, + -0.01684829406440258, + 0.06138346344232559, + 0.010027283802628517, + 0.04162616655230522, + -0.07419547438621521, + -0.07309109717607498, + -0.03897099941968918, + -0.028665907680988312, + 0.027085023000836372, + 0.050208304077386856, + -5.765140411920906e-34, + 0.05739014223217964, + 0.008352524600923061, + -0.047575693577528, + 0.08332610875368118, + 0.04363885149359703, + -0.03698031231760979, + -0.02627337910234928, + -0.002081765793263912, + -0.028162634000182152, + 0.010311702266335487, + 0.05932459235191345, + 0.04698591306805611, + -0.04403049126267433, + 0.05886056274175644, + 0.06243281811475754, + -0.03616338223218918, + -0.008293642662465572, + 0.012616630643606186, + -0.06451999396085739, + -0.05994950979948044, + -0.0426541306078434, + 0.103895403444767, + -0.012791289947926998, + -0.010875867679715157, + 0.07095156610012054, + -0.03591287508606911, + 0.000755770830437541, + -0.03280780464410782, + -0.03809657320380211, + 0.0321168527007103, + 0.020969470962882042, + 0.027224555611610413, + -0.02972937561571598, + 0.046901341527700424, + -0.007851231843233109, + 0.01566343754529953, + -0.14002172648906708, + 0.04383685439825058, + -0.039462048560380936, + 0.005335086956620216, + -0.06933151930570602, + -0.039071060717105865, + -0.10685257613658905, + -0.040780648589134216, + 0.07168328016996384, + 0.021643608808517456, + 0.028143739327788353, + -0.0005590709042735398, + -0.02623697556555271, + -0.007077659480273724, + 0.040617119520902634, + 0.026897994801402092, + 0.011816276237368584, + 0.034436650574207306, + -0.02209179662168026, + -0.029008779674768448, + 0.049496423453092575, + -0.006367298774421215, + 0.029997345060110092, + 0.025901174172759056, + 0.07917569577693939, + 0.12595690786838531, + 0.010262212716042995, + -0.0061881872825324535, + 0.024040501564741135, + 0.05023045092821121, + -0.022046174854040146, + 0.08624474704265594, + 0.07956429570913315, + -0.014064066112041473, + 0.002724122954532504, + 0.03745733201503754, + 0.019219132140278816, + 0.08199719339609146, + -0.006961145903915167, + -0.03699548915028572, + 0.015118741430342197, + -0.07345390319824219, + 0.0544472336769104, + -0.08850911259651184, + -0.05619599670171738, + -0.041468359529972076, + -0.05723079666495323, + -0.02282625250518322, + -0.005766906309872866, + -0.001061397371813655, + 0.01741226203739643, + -0.06645441800355911, + 0.02679351158440113, + 0.028705980628728867, + -0.04094435274600983, + 0.01542347576469183, + 0.002881868975237012, + -0.11209595203399658, + -0.09680440276861191, + -1.5152331567030526e-33, + 0.09649060666561127, + 0.010172017849981785, + -0.024429529905319214, + 0.019220978021621704, + -0.09253772348165512, + -0.012217557057738304, + -0.04678935557603836, + 0.05707018822431564, + 0.04149940609931946, + 0.02778554894030094, + -0.07536744326353073, + 0.03010227344930172, + -0.028360329568386078, + -0.003986121620982885, + 0.06212671846151352, + 0.027576642110943794, + -0.011830141767859459, + -0.06964396685361862, + -0.10983222723007202, + 0.013392431661486626, + -0.045272096991539, + 0.003462572582066059, + -0.0451568067073822, + 0.09076988697052002, + -0.05618400126695633, + -0.013634704053401947, + -0.006849516183137894, + 0.014902252703905106, + 0.07710970193147659, + -0.05565783381462097, + -0.004000243730843067, + -0.0029511130414903164, + 0.05032346025109291, + -0.011949088424444199, + 0.002172210719436407, + -0.0780377984046936, + 0.01436465885490179, + -0.014638863503932953, + 0.018916206434369087, + 0.012168615125119686, + -0.027394304051995277, + 0.043917130678892136, + -0.0429246611893177, + 0.06488363444805145, + -0.04520430043339729, + -0.04204997420310974, + -0.1089940220117569, + -0.06510759890079498, + 0.06337805837392807, + -0.003414515173062682, + 0.08126841485500336, + -0.021288573741912842, + -0.05954982712864876, + -0.03794686496257782, + -0.008559433743357658, + 0.026627691462635994, + 0.053852785378694534, + -0.011340471915900707, + -0.0006451239460147917, + 0.016826827079057693, + -0.026238523423671722, + 0.006945210509002209, + -0.059818901121616364, + 0.03033069521188736, + 0.022032231092453003, + -0.09527187049388885, + 0.03153291717171669, + -0.021714963018894196, + -0.07640503346920013, + -0.01337976660579443, + 0.05749259516596794, + 0.01785329356789589, + -0.024000097066164017, + -0.039512015879154205, + 0.006347386632114649, + -0.06477141380310059, + 0.013916467316448689, + -0.0037792015355080366, + -0.01704392023384571, + -0.002004088368266821, + 0.0025076125748455524, + 0.00869214441627264, + -0.007505497429519892, + 0.041986629366874695, + -0.05944346636533737, + -0.05709955841302872, + -0.12191596627235413, + -0.00014909952005837113, + -0.01683867909014225, + 0.014150178991258144, + -0.010760040953755379, + -0.015067163854837418, + 0.016624795272946358, + 0.06376330554485321, + -0.031059982255101204, + -2.2062005555767428e-08, + -0.027991022914648056, + -0.03479505330324173, + 0.023743949830532074, + 0.028957568109035492, + 0.0542147196829319, + -0.021438734605908394, + 0.019368674606084824, + 0.08738701790571213, + -0.0011287963716313243, + -0.07036607712507248, + 0.08128947019577026, + 0.07367567718029022, + -0.11979863792657852, + -0.013195458799600601, + 0.043743208050727844, + 0.012869440950453281, + -0.013408780097961426, + 0.008013865910470486, + -0.04698177054524422, + 0.007747795898467302, + -0.07139220833778381, + 0.03806525468826294, + -0.020128337666392326, + 0.0448712520301342, + 0.036927688866853714, + -0.008893056772649288, + -0.02812390774488449, + 0.11658840626478195, + 0.05077159032225609, + 0.04345141723752022, + 0.11449114233255386, + 0.06661076843738556, + -0.008460355922579765, + 0.008748022839426994, + -0.07096230983734131, + 0.01587885431945324, + -7.634477515239269e-05, + 0.010547451674938202, + -0.007793579250574112, + 0.1539251059293747, + -0.03624769300222397, + -0.009462494403123856, + -0.05115170404314995, + 0.006608340423554182, + -0.07181155681610107, + -0.0124255595728755, + -0.03247687965631485, + -0.025063302367925644, + -0.05686941742897034, + -0.10164588689804077, + -0.07316315174102783, + 0.008720210753381252, + -0.036234300583601, + 0.1213340237736702, + -0.034412696957588196, + 0.005036987364292145, + 0.08478805422782898, + 0.06698572635650635, + 0.0237655658274889, + 0.020581340417265892, + 0.19614368677139282, + -0.001665895339101553, + 0.11148825287818909, + -0.022279122844338417 + ], + "trash-simple-bold||garbage,remove,delete,destroy,recycle,recycling": [ + -0.015831194818019867, + 0.02221008948981762, + -0.009911555796861649, + -0.002502571791410446, + 0.056397221982479095, + -0.030910519883036613, + 0.0818321704864502, + -0.06725762784481049, + 0.0077968486584723, + 0.022754963487386703, + 0.037874381989240646, + 0.0032369871623814106, + 0.0647718757390976, + 0.015841448679566383, + -0.0706784576177597, + 0.016800284385681152, + -0.032767925411462784, + 0.04000238701701164, + 0.0075096795335412025, + 0.03299972414970398, + 0.05453144758939743, + 0.019546179100871086, + 0.0189619492739439, + 0.015650007873773575, + 0.05300384387373924, + 0.056791067123413086, + -0.00295626325532794, + -0.003301298478618264, + 0.010027782991528511, + -0.13827504217624664, + 0.039696164429187775, + 0.006602565757930279, + 0.07949502021074295, + -0.013634908944368362, + 0.09619275480508804, + 0.04646327719092369, + 0.00846866238862276, + -0.0007347478531301022, + -0.0013535177567973733, + -0.04891576990485191, + -0.05184486508369446, + -0.004070861730724573, + -0.048590511083602905, + 0.02551480568945408, + -0.07892224937677383, + -0.03198108822107315, + -0.08712990581989288, + -0.10423897206783295, + 0.014166183769702911, + -0.08552706986665726, + 0.10824757814407349, + -0.046484656631946564, + -0.07275379449129105, + -0.003133791033178568, + 0.09880766272544861, + -0.045909445732831955, + -0.014063660986721516, + -0.043310828506946564, + 0.00010373061377322301, + -0.0065948148258030415, + 0.03759482875466347, + 0.02673719823360443, + 0.0202768724411726, + 0.016194822266697884, + 0.0918562039732933, + 0.02935151755809784, + -0.01754443533718586, + 0.031201865524053574, + -0.04495643451809883, + -0.004290648270398378, + -0.030724752694368362, + -0.016613997519016266, + -0.030624570325016975, + 0.003978426102548838, + -0.05106310173869133, + 0.040641188621520996, + 0.02949807047843933, + 0.023990187793970108, + -0.1403132975101471, + 0.035416584461927414, + -0.09142185747623444, + -0.02416432835161686, + -0.00854581966996193, + -0.017262833192944527, + 0.021498030051589012, + 0.06674941629171371, + -0.08220423012971878, + -0.08459009975194931, + 0.04338211938738823, + -0.017639284953475, + -0.03143146634101868, + 0.03811751678586006, + 0.11092592775821686, + 0.031580790877342224, + -0.10988783091306686, + -0.010759557597339153, + 0.06591406464576721, + -0.007057578302919865, + -0.039217762649059296, + 0.0939059630036354, + -0.017024165019392967, + 0.09602105617523193, + 0.06565048545598984, + -0.056614480912685394, + -0.02517884224653244, + -0.030046487227082253, + -0.01803349331021309, + -0.03438318893313408, + -0.034028176218271255, + -0.005473353434354067, + -0.04864912107586861, + -0.06431834399700165, + -0.012016147375106812, + -0.02643262967467308, + -0.008703362196683884, + 0.014826149679720402, + -0.04552879557013512, + -0.02242002822458744, + 0.05762734264135361, + 0.032883089035749435, + 0.04251398146152496, + -0.06836647540330887, + -0.09261910617351532, + -0.029523270204663277, + -0.030808759853243828, + 0.03657150641083717, + 0.060629721730947495, + -1.1173514614947401e-33, + 0.07537273317575455, + 0.029326852411031723, + -0.05184033140540123, + 0.101096011698246, + 0.047363996505737305, + -0.041282933205366135, + -0.03146907687187195, + 0.0037423630710691214, + -0.025136185809969902, + 0.013544782996177673, + 0.08499093353748322, + 0.02080237865447998, + -0.055562250316143036, + 0.061681896448135376, + 0.05822649598121643, + -0.037654127925634384, + 0.0037303150165826082, + 0.0025457146111875772, + -0.07091818749904633, + -0.07571683824062347, + -0.051065634936094284, + 0.1342317759990692, + -0.013555007986724377, + -0.020149992778897285, + 0.06627608090639114, + -0.023573851212859154, + 0.0057403817772865295, + -0.029280563816428185, + -0.03533020615577698, + 0.0293110478669405, + 0.01825128309428692, + 0.028812246397137642, + -0.02941684052348137, + 0.06412447243928909, + -0.016275769099593163, + 0.004773059859871864, + -0.11729063838720322, + 0.04630827531218529, + -0.04438057541847229, + -0.014001474715769291, + -0.0870947390794754, + -0.02969926968216896, + -0.09566114842891693, + -0.041103873401880264, + 0.08307058364152908, + 0.02464595064520836, + 0.025531133636832237, + -0.0100981080904603, + -0.015251412987709045, + -0.021463878452777863, + 0.030355358496308327, + 0.03565281629562378, + 0.0002853194600902498, + 0.044861868023872375, + -0.02573002688586712, + -0.0063902027904987335, + 0.04778209701180458, + 0.009792538359761238, + 0.042934514582157135, + 0.027773315086960793, + 0.07872646301984787, + 0.1290278136730194, + -0.007803515996783972, + 0.004362813662737608, + 0.022763116285204887, + 0.05129478499293327, + -0.023330897092819214, + 0.0731155276298523, + 0.06821740418672562, + -0.004879977088421583, + -0.001129278214648366, + 0.04729953035712242, + 0.017948081716895103, + 0.05887390300631523, + 0.014540371485054493, + -0.029529890045523643, + 0.043082237243652344, + -0.10022355616092682, + 0.05407398194074631, + -0.08297781646251678, + -0.03783365711569786, + -0.032058537006378174, + -0.06137977913022041, + -0.009816242381930351, + -0.030590111389756203, + -0.004106040112674236, + 0.022479547187685966, + -0.04032406955957413, + 0.021138228476047516, + 0.027062807232141495, + -0.05108238756656647, + 0.02222619205713272, + -0.007281252648681402, + -0.11822175234556198, + -0.09608813375234604, + -1.2268879740306957e-33, + 0.10366050153970718, + -0.002663337392732501, + -0.02809717133641243, + 0.023034673184156418, + -0.08013258129358292, + 0.0058712647296488285, + -0.031014274805784225, + 0.04866565391421318, + 0.04650645703077316, + 0.0304386205971241, + -0.07254721969366074, + 0.031175099313259125, + -0.04258310794830322, + 0.005600245203822851, + 0.06225260719656944, + 0.04258711263537407, + -0.024465030059218407, + -0.056054260581731796, + -0.09155125170946121, + 0.009327230975031853, + -0.030410055071115494, + 0.020667651668190956, + -0.06479033082723618, + 0.060562700033187866, + -0.04952997714281082, + -0.018421027809381485, + -0.017505552619695663, + 0.03511158004403114, + 0.080135278403759, + -0.05351600795984268, + -0.005181358195841312, + -0.00503910519182682, + 0.052344076335430145, + -0.012233099900186062, + 0.001041171490214765, + -0.06873214989900589, + -0.0067365518771111965, + -0.007911871187388897, + 0.010733822360634804, + 0.0070997788570821285, + -0.04620947316288948, + 0.03645719960331917, + -0.030647918581962585, + 0.04040546342730522, + -0.04612760990858078, + -0.05034036934375763, + -0.08381367474794388, + -0.08488152921199799, + 0.05225000157952309, + -0.009618444368243217, + 0.0745391845703125, + -0.03977709263563156, + -0.06280089914798737, + -0.03120248019695282, + -0.003081604838371277, + 0.019381685182452202, + 0.07528545707464218, + -0.007858113385736942, + -0.009479517117142677, + 0.024243274703621864, + -0.037371598184108734, + 0.02115287259221077, + -0.07168804854154587, + 0.020799286663532257, + 0.02071630209684372, + -0.08888077735900879, + 0.02469944767653942, + -0.03465171530842781, + -0.08621905744075775, + -0.01659073680639267, + 0.03862672299146652, + 0.020342707633972168, + -0.005411713849753141, + -0.05829431861639023, + 0.0123347332701087, + -0.06203300133347511, + 0.006245854776352644, + -0.008112619630992413, + -0.015262708067893982, + -0.022538842633366585, + 0.01980592869222164, + 0.004999758675694466, + -0.015658313408493996, + 0.01104183029383421, + -0.0499877966940403, + -0.05499928817152977, + -0.12003155052661896, + -0.001031033112667501, + -0.020620224997401237, + 0.016744554042816162, + -0.01946418359875679, + 0.0019196253269910812, + 0.05118021368980408, + 0.07045535743236542, + -0.034690141677856445, + -2.25737135650661e-08, + -0.015899410471320152, + -0.05595942959189415, + 0.011796659789979458, + 0.02504376508295536, + 0.06096254289150238, + -0.02454289421439171, + 0.012232205830514431, + 0.07669240236282349, + 0.0027379235252738, + -0.05882033333182335, + 0.0785064548254013, + 0.05878579616546631, + -0.11989063024520874, + 0.012544182129204273, + 0.02162289433181286, + 0.023683268576860428, + -0.027483047917485237, + 0.01577010750770569, + -0.03630921244621277, + 0.012517797760665417, + -0.06144878640770912, + 0.03393597528338432, + -0.02536098100244999, + 0.03803393244743347, + 0.03912424296140671, + 0.002948027104139328, + -0.02641495317220688, + 0.1287834197282791, + 0.053594231605529785, + 0.045651208609342575, + 0.10670491307973862, + 0.06760311871767044, + -0.002491389401257038, + 0.02153949998319149, + -0.07570461928844452, + 0.023309800773859024, + -0.01291858870536089, + 0.019328523427248, + -0.016387930139899254, + 0.1311633288860321, + -0.02384086512029171, + 0.000815120991319418, + -0.05456187576055527, + -0.003126996336504817, + -0.07322214543819427, + -0.02367464452981949, + -0.02842874266207218, + -0.03822694718837738, + -0.06059952452778816, + -0.10341332107782364, + -0.07007336616516113, + 0.020254064351320267, + -0.03775738924741745, + 0.10854774713516235, + -0.03424488753080368, + 0.016661422327160835, + 0.09372769296169281, + 0.06747501343488693, + 0.004241582006216049, + 0.025358015671372414, + 0.19192317128181458, + 0.038002751767635345, + 0.09993165731430054, + -0.02060631476342678 + ], + "tray-bold||inbox,mailbox,bin": [ + 0.010261102579534054, + 0.05782119929790497, + -0.05638517066836357, + 0.05430140346288681, + 0.048199884593486786, + -0.04046447202563286, + 0.08870641142129898, + -0.017354978248476982, + 0.007189428433775902, + 0.004188248887658119, + -0.06987302750349045, + -0.026046959683299065, + 0.0022545948158949614, + -0.03380729258060455, + 0.03281811997294426, + 0.0025130135472863913, + 0.04589470475912094, + -0.006405642721801996, + -0.00737308245152235, + 0.02369765006005764, + -0.017621537670493126, + 0.012034625746309757, + 0.04344948008656502, + 0.01534950640052557, + 0.007634974550455809, + 0.017146700993180275, + -0.015926280990242958, + -0.014228888787329197, + -0.0638299435377121, + -0.07158377021551132, + 0.07317889481782913, + -0.03146675229072571, + 0.1014469563961029, + 0.06495486199855804, + 0.07029693573713303, + 0.06579714268445969, + 0.06016340106725693, + -0.019907383248209953, + 0.0709356889128685, + -0.016742367297410965, + 0.05065843462944031, + 0.04954962059855461, + -0.005217177327722311, + -0.06029639393091202, + -0.017650997266173363, + -0.07548951357603073, + -0.06092500314116478, + -0.04787898436188698, + -0.028303496539592743, + -0.03501952812075615, + 0.012087267823517323, + -0.05556325614452362, + -0.0086111044511199, + 0.010674922727048397, + -0.06443211436271667, + -0.009471463970839977, + 0.006546743214130402, + -0.014158489182591438, + 0.018808476626873016, + -0.01953536830842495, + -0.04932897537946701, + 0.027116434648633003, + 0.07127609103918076, + -0.006205859128385782, + 0.0012429807102307677, + 0.01834857650101185, + -0.027137668803334236, + 0.004702071659266949, + 0.011113828979432583, + -0.006320711690932512, + 0.0059336107224226, + -0.005584269762039185, + 0.03717686980962753, + 0.025649061426520348, + 0.004294697195291519, + -0.108734630048275, + 0.05494925379753113, + 0.011471654288470745, + -0.0017660461599007249, + 0.0493803508579731, + -0.09870290756225586, + 0.02301495335996151, + -0.02532276138663292, + -0.016730375587940216, + 0.07455336302518845, + 0.0266894344240427, + -0.096872478723526, + 0.03154796361923218, + -0.027523428201675415, + 0.05197702720761299, + 0.015602800995111465, + -0.004429109860211611, + -0.05372243374586105, + 0.08503507822751999, + -0.09242858737707138, + -0.07358168810606003, + 0.006141782272607088, + 0.02548663318157196, + -0.09289693832397461, + 0.09824270755052567, + 0.07967330515384674, + 0.011972960084676743, + 0.011036308482289314, + 0.012622266076505184, + 0.004871981684118509, + -0.07701967656612396, + 0.04639780893921852, + -0.11808620393276215, + -0.0483231395483017, + 0.001010940526612103, + -0.009230962023139, + -0.1300838589668274, + 0.037501804530620575, + -0.05548156425356865, + -0.042984817177057266, + -0.031291067600250244, + -0.05875535309314728, + 0.016039423644542694, + 0.08302997052669525, + 0.031109478324651718, + 0.038795437663793564, + -0.07709266990423203, + -0.0270228274166584, + -0.025361688807606697, + -0.01329450961202383, + 0.011982082389295101, + 0.04573201760649681, + -1.6693981387874417e-33, + -0.04645436629652977, + -0.03808504715561867, + 0.030885690823197365, + 0.12144405394792557, + 0.10124368965625763, + 0.044243499636650085, + -0.05783247575163841, + 0.02720988728106022, + -0.030190182849764824, + -0.07869137823581696, + 0.038165878504514694, + 0.0221975427120924, + -0.04182148724794388, + 0.01581350341439247, + -0.04593734070658684, + -0.06381375342607498, + -0.07501057535409927, + 0.042261313647031784, + -0.06936755776405334, + -0.03870593383908272, + -0.07754898816347122, + -0.01289127767086029, + -0.0685625895857811, + 0.019984489306807518, + 0.012980081140995026, + 0.023217985406517982, + 0.06065076217055321, + 0.018646975979208946, + -0.012264740653336048, + 0.06255325675010681, + 0.05932105705142021, + 0.036960482597351074, + 0.03736221045255661, + 0.0815507024526596, + -0.10002515465021133, + -0.009500857442617416, + -0.10833442956209183, + -0.01598549447953701, + 0.039135780185461044, + 0.12393877655267715, + -0.031399596482515335, + -0.020261775702238083, + 0.06270289421081543, + -0.034056223928928375, + -0.014397342689335346, + 0.10956873744726181, + 0.05014489218592644, + 0.03829455003142357, + 0.036538682878017426, + -0.05744512006640434, + 0.07924313843250275, + 0.009454004466533661, + -0.022570572793483734, + -0.010360689833760262, + 0.009739610366523266, + -0.0021286802366375923, + -0.022310474887490273, + 0.0648912563920021, + 0.0826149731874466, + 0.0028637500945478678, + 0.026990219950675964, + 0.004837541375309229, + 0.08507785201072693, + -0.043560873717069626, + 0.020047049969434738, + 0.0592777281999588, + -0.04637979343533516, + 0.014652982354164124, + 0.011269167996942997, + -0.001126409275457263, + 0.04691343009471893, + -0.023250101134181023, + 0.001658666762523353, + 0.060747649520635605, + -0.012204091064631939, + -0.021724818274378777, + 0.05891859531402588, + -0.05021757632493973, + -0.012494973838329315, + -0.0963265523314476, + -0.010409258306026459, + -0.011750588193535805, + -0.04150035232305527, + -0.009765379130840302, + -0.004122661892324686, + -0.0007864127983339131, + 0.08462304621934891, + 0.03678302466869354, + -0.014469516463577747, + 0.03389872610569, + -0.07131219655275345, + -0.059292271733284, + -0.10026146471500397, + -0.025548066943883896, + -0.028869539499282837, + -3.476351662235398e-34, + 0.06237868219614029, + -0.020198654383420944, + -0.09169026464223862, + -0.041166745126247406, + -0.0606490783393383, + 0.04848876968026161, + 0.022503776475787163, + -0.0008527765749022365, + 0.07347121834754944, + 0.08224480599164963, + -0.01081901416182518, + 0.014658729545772076, + -0.07231085747480392, + 0.058105044066905975, + -0.017805857583880424, + 0.06479599326848984, + -0.02561081014573574, + 0.07168639451265335, + -0.0021389909088611603, + -0.07080686837434769, + -0.08637285977602005, + 0.006526370532810688, + -0.049132052809000015, + 0.06007596105337143, + -0.11157625168561935, + -0.03355439007282257, + -0.02356264740228653, + 0.03360464796423912, + 0.0332179069519043, + -0.05882921442389488, + -0.017457399517297745, + 0.032418619841337204, + -0.02517065592110157, + 0.05841710790991783, + 0.003537453943863511, + -0.04226082190871239, + 0.005590696353465319, + -0.10106918215751648, + 0.0439990758895874, + 0.03294350579380989, + 0.022674234583973885, + 0.011010454967617989, + -0.04638378322124481, + 0.010603605769574642, + -0.006023719906806946, + -0.03642676770687103, + -0.03356713056564331, + 0.010569245554506779, + 0.007272820919752121, + 0.103275828063488, + -0.028020376339554787, + -0.07297442853450775, + 0.06026381626725197, + 0.008091715164482594, + -0.05683824047446251, + 0.013272855430841446, + -0.054903704673051834, + 0.021330611780285835, + 0.01572919450700283, + -0.004906197544187307, + -0.09171926975250244, + -0.01676815375685692, + 0.031942158937454224, + -0.013519243337213993, + 0.021752681583166122, + -0.07606827467679977, + 0.026819389313459396, + 0.024302130565047264, + 0.08438090234994888, + -0.02912195585668087, + 0.08063647896051407, + -0.0349777452647686, + -0.05176614224910736, + -0.03847772628068924, + 0.044112470000982285, + 0.053084224462509155, + 0.03653008118271828, + -0.015791788697242737, + -0.027705930173397064, + 0.004039762541651726, + -0.08317895978689194, + -0.020400026813149452, + 0.013881106860935688, + 0.010341275483369827, + -0.11153198033571243, + -0.05303999409079552, + 0.022200746461749077, + 0.04415544494986534, + -0.015485964715480804, + 0.0005914049688726664, + -0.010904324240982533, + 0.03369345888495445, + 0.06262082606554031, + -0.01062538381665945, + -0.09619931876659393, + -1.8038075921822383e-08, + -0.024374844506382942, + -0.08461514115333557, + 0.012190688401460648, + 0.03725143149495125, + 0.033112943172454834, + 0.01000384334474802, + -0.031137892976403236, + -0.03566925227642059, + -0.035310208797454834, + -0.014618603512644768, + 0.00320945936255157, + -0.069361113011837, + -0.06532245129346848, + -0.061848003417253494, + 0.04451816901564598, + 0.055439483374357224, + -0.10023917257785797, + 0.06409047544002533, + -0.020340315997600555, + -0.007633809000253677, + 0.029917782172560692, + 0.08796407282352448, + 0.11251477152109146, + 0.011340721510350704, + -0.03419526293873787, + 0.08326630294322968, + -0.07272247225046158, + 0.02355685830116272, + 0.008313335478305817, + 0.07919084280729294, + 0.013892070390284061, + -0.0077318535186350346, + 0.02382086031138897, + 0.01734049804508686, + -0.11726570874452591, + -0.021114462986588478, + -0.08136790990829468, + -0.01700727455317974, + 0.003559181932359934, + 0.09044536203145981, + 0.09061545133590698, + -0.1455005556344986, + 0.0074019706808030605, + -0.06799041479825974, + -0.0444553904235363, + 0.06902213394641876, + 0.015525288879871368, + 0.01480167731642723, + -0.02262391895055771, + -0.017390301451086998, + -0.025987055152654648, + 0.05948541685938835, + 0.003613947657868266, + 0.10897564888000488, + -0.09921407699584961, + -0.05937366932630539, + -0.013919896446168423, + 0.008997207507491112, + 0.1080554723739624, + 0.08194232732057571, + 0.04267098382115364, + 0.038744036108255386, + 0.06875909119844437, + 0.028539493680000305 + ], + "tray-arrow-down-bold||inbox,saved,saving,archived,archiving,archival,downloaded,downloading": [ + -0.03166493400931358, + 0.024223778396844864, + -0.07896346598863602, + 0.0511590801179409, + 0.07846897840499878, + -0.002923625521361828, + 0.07447778433561325, + -0.010966134257614613, + 0.03996768221259117, + 0.04819558560848236, + -0.026811253279447556, + 0.08440250903367996, + 0.005614161491394043, + -0.015044529922306538, + -0.07087015360593796, + 0.020795157179236412, + -0.01790192350745201, + 0.02051723748445511, + -0.010637467727065086, + -0.018581537529826164, + -0.052047595381736755, + -0.010053697973489761, + 0.03021657094359398, + 0.02568833716213703, + 0.028082311153411865, + 0.029843831434845924, + -0.08342178910970688, + -0.008925803005695343, + 0.0025047881063073874, + -0.062442198395729065, + -0.02093227207660675, + -0.05468973144888878, + 0.11413624882698059, + 0.08666568994522095, + 0.005348358768969774, + 0.021098006516695023, + 0.007151814177632332, + 0.003241450060158968, + 0.025360891595482826, + -0.004693558439612389, + 0.05636579915881157, + 0.0027743796817958355, + -0.008293460123240948, + -0.0012169665424153209, + -0.04972122982144356, + -0.045903630554676056, + -0.0698636919260025, + -0.05542264133691788, + -0.028700795024633408, + 0.07439199835062027, + -0.009663690812885761, + -0.05462976172566414, + -0.11733205616474152, + 0.03703387454152107, + -0.01126154325902462, + 0.015614748001098633, + -0.005174713674932718, + -0.033198654651641846, + -0.0025574469473212957, + 0.02256486564874649, + 0.006479901727288961, + -0.002897321479395032, + 0.005236018914729357, + 0.05786027014255524, + -0.024988850578665733, + 0.0716472789645195, + -0.050329823046922684, + 0.04506724700331688, + 0.013247041031718254, + -0.023691443726420403, + 0.0015588273527100682, + 0.019003095105290413, + -0.019906802102923393, + 0.02647475153207779, + 0.005163397639989853, + -0.11623471230268478, + 0.0830954760313034, + 0.07404554635286331, + -0.04033444821834564, + -0.016810530796647072, + -0.00323423370718956, + 0.0007853392162360251, + -0.039674319326877594, + 0.037340059876441956, + 0.04475310817360878, + 0.044731851667165756, + -0.02379397116601467, + -0.043468721210956573, + -0.018369462341070175, + -0.04111478477716446, + -0.012897822074592113, + -0.010116231627762318, + 0.056492771953344345, + 0.015637556090950966, + -0.1454106867313385, + -0.02144082821905613, + 0.07038744539022446, + -0.039206985384225845, + -0.06303229928016663, + 0.07170483469963074, + 0.06259127706289291, + 0.00650232145562768, + 0.059629663825035095, + -0.05297181010246277, + -0.006477953400462866, + -0.06839102506637573, + 0.07282733172178268, + -0.08864215761423111, + -0.013036973774433136, + 0.048576585948467255, + -0.047354556620121, + -0.12188450247049332, + -0.011939113959670067, + -0.08095774799585342, + -0.046088460832834244, + -0.019167980179190636, + -0.13620340824127197, + 0.02882586047053337, + 0.11466643214225769, + 0.018817726522684097, + 0.08771974593400955, + -0.06568875163793564, + -0.009270889684557915, + -0.06565997004508972, + -0.03678130358457565, + 0.02603759989142418, + 0.015914060175418854, + -2.768701353893244e-33, + 0.039841245859861374, + -0.002973539289087057, + -0.014679518528282642, + 0.07290478050708771, + 0.08516444265842438, + 0.014055504463613033, + -0.05463618412613869, + -0.04283229634165764, + -0.108548603951931, + -0.06814143806695938, + 0.09108636528253555, + 0.02759541943669319, + -0.11505348980426788, + 0.09659365564584732, + 0.05223429575562477, + -0.04214244335889816, + -0.05190354585647583, + 0.07728902995586395, + -0.015261789783835411, + -0.05538785830140114, + -0.054850175976753235, + 0.013752643950283527, + -0.06703546643257141, + 0.023591535165905952, + 0.06309275329113007, + 0.0073281582444906235, + 0.03186677396297455, + -0.016379473730921745, + -0.04665752500295639, + 0.03052809089422226, + 0.027915753424167633, + -0.0036800424568355083, + 0.035350412130355835, + -0.031454455107450485, + -0.07688769698143005, + -0.010493356734514236, + -0.13181646168231964, + -0.025040552020072937, + 0.048915497958660126, + 0.029178326949477196, + -0.05019085109233856, + -0.07167953252792358, + -0.01956314966082573, + -0.050167016685009, + 0.016844477504491806, + 0.04066454619169235, + 0.029820334166288376, + -0.0011170028010383248, + 0.028007926419377327, + -0.03434186801314354, + 0.034989338368177414, + -0.01854420267045498, + 0.00752433342859149, + -0.026577908545732498, + -0.02354472503066063, + 0.011552244424819946, + -0.021284455433487892, + 0.09346236288547516, + 0.06468053162097931, + 0.023064931854605675, + 0.040707409381866455, + -0.015946615487337112, + 0.07363865524530411, + -0.024454794824123383, + -0.0018448446644470096, + 0.032379623502492905, + -0.019174326211214066, + 0.01711152493953705, + 0.056521207094192505, + 0.01768985390663147, + -0.02339049056172371, + -0.07265022397041321, + 0.03499625250697136, + 0.015263885259628296, + -0.020922811701893806, + -0.016206445172429085, + -0.019894331693649292, + -0.04556133970618248, + -0.02099449746310711, + -0.07935365289449692, + -0.10646936297416687, + -0.07854954153299332, + -0.07184990495443344, + 0.0011309873079881072, + 0.033540915697813034, + -0.02362508326768875, + 0.08842101693153381, + -0.04125827178359032, + -0.012473098933696747, + 0.03783582150936127, + -0.0854988768696785, + 0.026356717571616173, + -0.049170948565006256, + -0.027985557913780212, + -0.04320228099822998, + 1.1165773800976244e-33, + 0.05348647013306618, + -0.015122483484447002, + -0.10410555452108383, + -0.004600397311151028, + -0.08598202466964722, + 0.05378701537847519, + 0.03252558037638664, + 0.07251756638288498, + 0.04056793078780174, + 0.06661109626293182, + 0.008256025612354279, + 0.06057560816407204, + -0.06772975623607635, + -0.0034661225508898497, + -0.011438886635005474, + 0.07401254028081894, + 0.062116846442222595, + 0.03170262277126312, + -0.018515726551413536, + -0.07906898856163025, + -0.05680960789322853, + -0.06322290003299713, + -0.04384451359510422, + 0.09497997909784317, + -0.024209538474678993, + -0.011719292029738426, + 0.0710458755493164, + 0.02460572123527527, + 0.035109445452690125, + -0.08998088538646698, + 0.02599235251545906, + 0.032865069806575775, + -0.006326830480247736, + 0.0025914141442626715, + 0.003361623967066407, + -0.025495178997516632, + 0.036896221339702606, + -0.03936927393078804, + -0.04158962517976761, + 0.04282354190945625, + 0.01150772999972105, + 0.02445337176322937, + 0.0018626004457473755, + 0.020080680027604103, + 0.028515908867120743, + -0.03762432932853699, + -0.05347829312086105, + 0.025532307103276253, + 0.0014325601514428854, + 0.08364810049533844, + 0.026250973343849182, + -0.1029740646481514, + -0.0012913604732602835, + -0.0024728458374738693, + -0.04126568138599396, + 0.03358800336718559, + 0.007347531151026487, + 0.10894942283630371, + -0.0026615557726472616, + -0.0567467175424099, + -0.059249792248010635, + -0.05065593495965004, + -0.024484489113092422, + -0.00948077067732811, + -0.021543147042393684, + -0.04037736728787422, + 0.055741358548402786, + 0.0019157560309395194, + -0.10036130249500275, + 0.024595675989985466, + 0.03853185847401619, + 0.009388468228280544, + -0.02068435028195381, + -0.049518074840307236, + 0.06306061893701553, + -0.01678883656859398, + 0.06751945614814758, + -0.005725289229303598, + -0.04007517918944359, + -0.07375825196504593, + -0.06503970921039581, + 0.04655079171061516, + 0.02513893134891987, + -0.012933922000229359, + -0.07863843441009521, + -0.03728632628917694, + -0.03125172480940819, + 0.062453318387269974, + 0.005117327440530062, + -0.0365019366145134, + -0.03600817546248436, + 0.04086614400148392, + 0.03494240716099739, + 0.0018982182955369353, + -0.04248708114027977, + -2.4759817307540288e-08, + -0.06858912855386734, + -0.027695519849658012, + -0.009935341775417328, + -0.006251719780266285, + 0.029241938143968582, + -0.02151283249258995, + -0.0027485783211886883, + 0.054337162524461746, + -0.00714006507769227, + -0.07850825786590576, + 0.07758444547653198, + -0.017969660460948944, + -0.11571919918060303, + -0.00542617030441761, + 0.057159069925546646, + 0.07723083347082138, + -0.06532249599695206, + 0.06133202090859413, + 0.004703395534306765, + -0.05191987007856369, + 0.04252342879772186, + 0.0722334235906601, + 0.0760534256696701, + 0.05046119540929794, + -0.008073839358985424, + 0.025204544886946678, + -0.0054025608114898205, + 0.08803759515285492, + 0.055591803044080734, + 0.03605644777417183, + 0.031193189322948456, + 0.03259299322962761, + 0.05639219656586647, + -0.036542389541864395, + -0.034679021686315536, + 0.023189349099993706, + -0.05886682868003845, + 0.004726619925349951, + 0.01865806058049202, + 0.06735006719827652, + 0.11485571414232254, + -0.11508890241384506, + -0.0044201393611729145, + -0.05066929757595062, + -0.08180822432041168, + 0.05311095342040062, + 0.0446651391685009, + 0.02075313776731491, + -0.006926473695784807, + -0.05561947077512741, + -0.05880130082368851, + -0.012188167311251163, + 0.07785214483737946, + 0.09064827859401703, + -0.044285234063863754, + -0.029154719784855843, + 0.03514848276972771, + 0.021770427003502846, + 0.11280275881290436, + 0.05185379460453987, + 0.1112968921661377, + 0.08519929647445679, + 0.06151769682765007, + 0.060023173689842224 + ], + "tray-arrow-up-bold||*new*,outbox,archival,unarchive,uploaded,uploading": [ + -0.04478637874126434, + -0.0034109449479728937, + -0.0670604556798935, + 0.04173869639635086, + 0.07804182171821594, + -0.0025102640502154827, + 0.02509334497153759, + -0.04119992256164551, + 0.020723193883895874, + 0.0569087453186512, + -0.004352412652224302, + 0.09506803005933762, + 0.009551639668643475, + -0.02781575359404087, + -0.03739739954471588, + -0.03089095652103424, + -0.007289981935173273, + -0.016322411596775055, + -0.006943825166672468, + -0.028122976422309875, + -0.07433480769395828, + -0.02093305066227913, + 0.02175687439739704, + -0.008655327372252941, + 0.03960472345352173, + 0.016997339203953743, + -0.05949757248163223, + -0.018093038350343704, + -0.0002623934706207365, + -0.05666593834757805, + -0.018137047067284584, + -0.041887156665325165, + 0.07025139033794403, + 0.05269107595086098, + 0.042672887444496155, + 0.00853265356272459, + 0.0356627032160759, + -0.013294936157763004, + -0.029251208528876305, + 0.008547919802367687, + 0.07229586690664291, + -0.008985495194792747, + -0.023135092109441757, + -0.027628406882286072, + -0.0581398606300354, + -0.03896372392773628, + -0.057715002447366714, + -0.04519852250814438, + -0.020247681066393852, + 0.05816476419568062, + -0.015512287616729736, + -0.11741122603416443, + -0.1050746813416481, + 0.057575300335884094, + -0.02642253041267395, + 0.008847959339618683, + -0.014783320017158985, + -0.05005112290382385, + 0.00946329440921545, + -0.02203304134309292, + -0.027255695313215256, + -0.010191191919147968, + 0.038572702556848526, + 0.04969862103462219, + 0.0365346260368824, + 0.04004524648189545, + -0.06012936681509018, + 0.043245650827884674, + 0.009503194130957127, + 0.022314628586173058, + 0.017760206013917923, + 0.06717310100793839, + -0.005252900067716837, + 0.025164075195789337, + 0.0011433191830292344, + -0.18020521104335785, + 0.07485570013523102, + 0.07913907617330551, + 0.03043299727141857, + -0.036664463579654694, + 0.04254690930247307, + -0.017773287370800972, + -0.06686149537563324, + 0.019274648278951645, + 0.019934603944420815, + 0.04928949847817421, + -0.08099689334630966, + -0.024637537077069283, + -0.06426739692687988, + -0.07263541221618652, + -0.03204811364412308, + 0.0012710923328995705, + 0.02953190915286541, + 0.018572090193629265, + -0.11997424066066742, + -0.022931966930627823, + 0.05448853597044945, + -0.033307548612356186, + -0.06414005905389786, + 0.07434166222810745, + 0.01260882057249546, + 0.0013702798169106245, + 0.07634816318750381, + -0.04204558953642845, + 0.006635931320488453, + -0.0280926413834095, + 0.04557718336582184, + -0.07451815158128738, + -0.002557741478085518, + 0.03264426812529564, + -0.036136358976364136, + -0.1250268965959549, + -0.019993575289845467, + -0.09143061935901642, + -0.03951922431588173, + 0.016719333827495575, + -0.11238700151443481, + 0.021409880369901657, + 0.034140411764383316, + -0.003471051575616002, + 0.11333705484867096, + -0.07621335238218307, + -0.041888151317834854, + -0.05017548426985741, + -0.04238027334213257, + 0.003801126265898347, + 0.005332469008862972, + -1.637801585321308e-33, + 0.046256598085165024, + -0.0017839389620348811, + -0.008826121687889099, + 0.06837241351604462, + 0.09715907275676727, + 0.015460812486708164, + -0.027599509805440903, + -0.02686181664466858, + -0.08321263641119003, + -0.037482548505067825, + 0.06676777452230453, + 0.02558540180325508, + -0.12299533933401108, + 0.09935057908296585, + 0.04979449883103371, + -0.07003273069858551, + -0.03749754652380943, + 0.11585637181997299, + -0.0027823823038488626, + -0.05462883040308952, + -0.0656011551618576, + -0.0024213583674281836, + -0.06528075039386749, + 0.006785119883716106, + 0.03306310623884201, + 0.00011350459681125358, + 0.024775968864560127, + -0.041803449392318726, + -0.04657992720603943, + 0.017853869125247, + 0.05130239948630333, + 0.02592557482421398, + 0.035872090607881546, + -0.002573786536231637, + -0.08955740183591843, + -0.029944047331809998, + -0.19146671891212463, + -0.04064788669347763, + 0.04484713450074196, + 0.03612058609724045, + -0.035668715834617615, + -0.08284447342157364, + -0.07971752434968948, + -0.02012939192354679, + 0.02046537585556507, + 0.05744262784719467, + 0.007920904085040092, + -0.05283215641975403, + 0.03475239872932434, + -0.020005587488412857, + 0.05813087150454521, + 0.008895340375602245, + -0.021148990839719772, + -0.02315766178071499, + -0.03139408677816391, + 0.01775773987174034, + -0.032694701105356216, + 0.0953555554151535, + 0.06759855896234512, + -0.0177683737128973, + 0.05539047345519066, + -0.015164854936301708, + 0.059607140719890594, + 0.03885700926184654, + -0.014956810511648655, + 0.046917445957660675, + -0.017596105113625526, + 0.02985219471156597, + 0.0772753357887268, + 0.033393193036317825, + -0.007046435493975878, + -0.03599412366747856, + -0.012285452336072922, + 0.022094639018177986, + -0.005061400588601828, + -0.020063478499650955, + -0.01622755266726017, + -0.06580722332000732, + -0.0429697148501873, + -0.03399214521050453, + -0.12282352894544601, + -0.053753457963466644, + -0.05540712550282478, + 0.022218698635697365, + 0.04726790636777878, + -0.025787677615880966, + 0.07882387191057205, + -0.009609716944396496, + -0.009591919369995594, + 0.02944241464138031, + -0.07022256404161453, + 0.04827011749148369, + -0.0590520054101944, + -0.039434581995010376, + -0.018696585670113564, + -4.277775012033484e-34, + 0.05757765471935272, + 0.025144249200820923, + -0.10526906698942184, + -0.023340852931141853, + -0.07148411124944687, + 0.0296881552785635, + 0.03373003378510475, + 0.09436327964067459, + 0.0937495157122612, + 0.07156885415315628, + -0.012006224133074284, + 0.057891398668289185, + -0.07916219532489777, + -0.0395633727312088, + -0.0034291448537260294, + 0.07218267768621445, + -0.006579585839062929, + 0.05096681788563728, + -0.029710229486227036, + -0.049224019050598145, + -0.026528844609856606, + -0.05915253236889839, + -0.013144643045961857, + 0.09465901553630829, + 0.003975091967731714, + -0.010718747042119503, + 0.08890538662672043, + 0.052170105278491974, + 0.03761718049645424, + -0.07684988528490067, + 0.02705558016896248, + -0.0005738077452406287, + 0.005833656061440706, + 0.0528961606323719, + 0.023601138964295387, + -0.0039006618317216635, + 0.0436418354511261, + -0.0009163772338069975, + -0.0011485792929306626, + 0.03516938164830208, + 0.005416493397206068, + 0.03105338104069233, + -0.023921474814414978, + 0.044685542583465576, + 0.006807603873312473, + -0.055579088628292084, + -0.03393253684043884, + 0.01818275824189186, + -0.027032382786273956, + 0.059777937829494476, + -0.006045599468052387, + -0.12014599144458771, + 0.0013352567330002785, + 0.012081417255103588, + -0.021315651014447212, + 0.07298879325389862, + 0.008193990215659142, + 0.10010724514722824, + 0.009323334321379662, + -0.030600471422076225, + -0.023576494306325912, + -0.017501097172498703, + -0.06310471147298813, + -0.00962439551949501, + -0.008933556266129017, + -0.04676676169037819, + 0.03310629725456238, + -0.02303219772875309, + -0.10012666136026382, + 0.05317061394453049, + 0.05272960290312767, + 0.035330262035131454, + -0.032155536115169525, + -0.023093828931450844, + 0.02996920794248581, + -0.0018231237772852182, + 0.06738321483135223, + -0.03174401447176933, + -0.017456935718655586, + -0.09223444759845734, + -0.09105707705020905, + 0.05623029172420502, + 0.012598537839949131, + 0.007831079885363579, + -0.035027194768190384, + 0.009731488302350044, + 0.013995307497680187, + 0.04956314340233803, + -0.011625793762505054, + -0.03895220905542374, + -0.03423379734158516, + 0.009241276420652866, + 0.04320759326219559, + 0.018992166966199875, + -0.024095922708511353, + -2.6418014442697313e-08, + -0.06486582010984421, + 0.007341246586292982, + -0.03082006610929966, + -0.020583301782608032, + 0.04512573778629303, + -0.041820984333753586, + -0.00991761963814497, + 0.03050818108022213, + 0.006759765557944775, + -0.1343662142753601, + 0.06844604760408401, + -0.019268829375505447, + -0.06451006978750229, + 0.017275694757699966, + 0.07802946865558624, + 0.055697403848171234, + -0.0638977587223053, + 0.072190061211586, + -0.03799773007631302, + -0.06936652213335037, + 0.0082405311986804, + 0.07393932342529297, + 0.04776414856314659, + 0.055153585970401764, + -0.03169744089245796, + 0.031760893762111664, + -0.01417580433189869, + 0.04779403656721115, + 0.06152423098683357, + 0.016397710889577866, + 0.037330906838178635, + 0.014344964176416397, + 0.05235771834850311, + -0.020595405250787735, + -0.015537803992629051, + 0.044160470366477966, + -0.06178788095712662, + 0.0006911041564308107, + -0.026084478944540024, + 0.04632100090384483, + 0.09855078160762787, + -0.05964485928416252, + 0.02265499159693718, + -0.06448356062173843, + -0.07077648490667343, + 0.03260095790028572, + 0.021385516971349716, + -0.011317812837660313, + -0.060529761016368866, + -0.07118186354637146, + -0.035031065344810486, + -0.025595208629965782, + 0.06061364710330963, + 0.08021494746208191, + 0.003264176193624735, + -0.007371790707111359, + 0.03543528914451599, + 0.049400877207517624, + 0.10859905183315277, + 0.08903790265321732, + 0.1102379709482193, + 0.08332950621843338, + 0.06855537742376328, + 0.06932481378316879 + ], + "treasure-chest-bold||*new*,loot,lootbox,inventory,rewards,gaming,pirate": [ + -0.012988666072487831, + 0.06294925510883331, + -0.020301461219787598, + -0.016994494944810867, + 0.037812769412994385, + 0.002616406884044409, + 0.0574154406785965, + -0.07722222059965134, + -0.050934772938489914, + 0.010532785207033157, + -0.005001674871891737, + -0.026410220190882683, + 0.05318109691143036, + -0.05644287168979645, + 0.02555750124156475, + 0.05111803859472275, + 0.0779220312833786, + 0.03366706892848015, + 0.0199040025472641, + 0.00570677500218153, + 0.01931047812104225, + 0.012728961184620857, + -0.005203657317906618, + 0.039900023490190506, + 0.002991819055750966, + 0.030351122841238976, + -0.03254154324531555, + -0.005159361753612757, + -0.012864074669778347, + -0.10529477149248123, + -0.010120219551026821, + 0.0363335944712162, + 0.12038197368383408, + 0.044637177139520645, + -0.03081892803311348, + 0.08612886816263199, + -0.02684415876865387, + -0.004315497353672981, + -0.01805325224995613, + 0.0007569539011456072, + -0.02097768522799015, + -0.032009415328502655, + -0.08208845555782318, + 0.10799945145845413, + -0.02202899008989334, + -0.04494289308786392, + -0.03763161972165108, + -0.012151336297392845, + -0.018285633996129036, + 0.08720216155052185, + 0.030999355018138885, + -0.07278220355510712, + -0.1359855681657791, + 0.032713375985622406, + 0.034576836973428726, + 0.007692649029195309, + -0.04572600871324539, + -0.04343225061893463, + 0.03239692747592926, + -0.06888836622238159, + 0.058598216623067856, + 0.06228284537792206, + 0.058892831206321716, + 0.05305120721459389, + 0.03610965982079506, + -0.017132053151726723, + -0.00029311073012650013, + 0.0329185388982296, + -0.06181244179606438, + 0.008297123946249485, + 0.0297771655023098, + 0.013027208857238293, + -0.026158886030316353, + -0.004355624783784151, + -0.015239126980304718, + -0.025998612865805626, + -0.02503923326730728, + -0.037463437765836716, + -0.04564614221453667, + -0.05037549510598183, + -0.10080333799123764, + -0.02342212200164795, + -0.09921315312385559, + -0.007917351089417934, + -0.004477652255445719, + 0.05756097286939621, + -0.09595048427581787, + -0.020830489695072174, + -0.049255575984716415, + -0.08631448447704315, + 0.011568043380975723, + -0.04030287265777588, + 0.04721953719854355, + 0.049240391701459885, + -0.0535164549946785, + 0.051665063947439194, + 0.046071141958236694, + -0.015395799651741982, + -0.06467608362436295, + 0.049442678689956665, + 0.07852713763713837, + 0.04337190091609955, + 0.05712924897670746, + -0.04969807714223862, + 0.051330942660570145, + -0.024979418143630028, + -0.013740207068622112, + -0.029470179229974747, + -0.012491876259446144, + 0.03129817172884941, + -0.0604601725935936, + -0.0571603998541832, + -0.00198160856962204, + -0.11254910379648209, + -0.037840425968170166, + 0.08189783990383148, + -0.13645751774311066, + 0.0357118621468544, + -0.01672542281448841, + 0.058563146740198135, + 0.14772160351276398, + -0.06845466047525406, + 0.03909434750676155, + -0.0708317905664444, + -0.1068507581949234, + -0.021122073754668236, + 0.010467824526131153, + -9.979369393210387e-34, + 0.07803942263126373, + -0.00658574840053916, + -0.03374910354614258, + 0.07267635315656662, + 0.0596608966588974, + 0.0023496118374168873, + 0.05487137287855148, + 0.05048077553510666, + -0.12576885521411896, + 0.09507967531681061, + -0.009628815576434135, + 0.10163937509059906, + -0.03421817347407341, + 0.07993967086076736, + 0.03117154911160469, + -0.050082676112651825, + -0.03366628289222717, + -0.045456793159246445, + 0.06459421664476395, + -0.03619281202554703, + -0.005789414048194885, + 0.038660503923892975, + -0.01025693491101265, + 0.013916779309511185, + -0.005928381346166134, + 0.0124967684969306, + -0.005581993144005537, + -0.030120419338345528, + -0.034453775733709335, + 0.039389707148075104, + 0.02731180191040039, + -0.005200246348977089, + 0.09540119767189026, + -0.023056956008076668, + -0.04129327833652496, + 0.0031212850008159876, + -0.053709711879491806, + -0.0141145633533597, + -0.00944661907851696, + -0.038385555148124695, + -0.06650901585817337, + -0.07520472258329391, + -0.06388892978429794, + -0.06318648159503937, + -0.010524912737309933, + -0.012192617170512676, + 0.05052309110760689, + -0.020776282995939255, + -0.02504931204020977, + 0.037735216319561005, + -0.02703183889389038, + -0.03171098977327347, + -0.05047300457954407, + -0.0029006507247686386, + -0.08944150805473328, + -0.06294675171375275, + -0.04338858649134636, + 0.05853913724422455, + -0.010817200876772404, + -0.04752560704946518, + 0.0952547937631607, + -0.004582609515637159, + 0.12064895778894424, + -0.014208958484232426, + -0.04091727361083031, + 0.07090669870376587, + -0.008597510866820812, + -0.0027717698831111193, + 0.05369583144783974, + 0.045173224061727524, + 0.016614535823464394, + 0.06768590956926346, + -0.0038231604266911745, + 0.02965708076953888, + 0.02409469150006771, + 0.004127293825149536, + -0.02912799082696438, + -0.041565895080566406, + -0.0024210463743656874, + -0.10719982534646988, + -0.11186758428812027, + 0.03175455331802368, + -0.07164974510669708, + 0.14924024045467377, + -0.04757993295788765, + 0.05973111465573311, + 0.04360775277018547, + -0.06308197975158691, + -0.026021834462881088, + -0.0041446625255048275, + -0.030593255534768105, + -0.02722875401377678, + -0.02005620487034321, + -0.10430934280157089, + -0.0615718774497509, + -8.141590504875284e-34, + 0.03538442775607109, + -0.026292327791452408, + -0.033290643244981766, + -0.023848185315728188, + 0.02425467222929001, + 0.017797298729419708, + -0.00028349729836918414, + 0.007837492972612381, + -0.012281371280550957, + 0.04014664143323898, + -0.05469825118780136, + 0.0355980359017849, + -0.07254352420568466, + -0.04189133271574974, + 0.06444208323955536, + 0.034264061599969864, + 0.023515060544013977, + 0.020384754985570908, + 0.002268329029902816, + 0.023302117362618446, + 0.015407911501824856, + -0.016558917239308357, + -0.07045833766460419, + 0.006608985830098391, + 0.0274518970400095, + 0.02716713957488537, + 0.020947597920894623, + -0.08334819972515106, + 0.057854387909173965, + 0.017582232132554054, + 0.018141498789191246, + 0.06932618468999863, + 0.04316224530339241, + 0.026283692568540573, + -0.08204203099012375, + -0.03841693699359894, + 0.07732453942298889, + -0.018195675686001778, + -0.06929272413253784, + -0.018457194790244102, + -0.0041286516934633255, + -0.019731098785996437, + -0.03075905330479145, + 0.05742528662085533, + -0.001589499064721167, + -0.03723775967955589, + -0.028333602473139763, + 0.010760514065623283, + 0.02809867635369301, + 0.06907113641500473, + 0.07258614897727966, + -0.07736680656671524, + -0.02414245530962944, + -0.033044036477804184, + -0.04656313359737396, + 0.1211911290884018, + -0.12182387709617615, + 0.023955456912517548, + 0.06356517225503922, + -0.012464870698750019, + -0.009200097061693668, + 0.03735349699854851, + -0.053215838968753815, + 0.07310986518859863, + 0.011117341928184032, + 0.02034120447933674, + 0.028829330578446388, + 0.04164153337478638, + -0.0682341456413269, + -0.0022166052367538214, + -0.008526095189154148, + 0.035990308970212936, + -0.037521570920944214, + -0.015867717564105988, + 0.02614307776093483, + -0.044093649834394455, + 0.0001585785939823836, + 0.0008517224341630936, + -0.014573092572391033, + 0.037792205810546875, + -0.0396338514983654, + 0.025002242997288704, + 0.006241961382329464, + 0.013303888030350208, + -0.051862478256225586, + -0.06500142067670822, + -0.002595750615000725, + 0.052137330174446106, + -0.0132793840020895, + -0.04082096740603447, + -0.048930637538433075, + 0.06772059947252274, + -0.013766273856163025, + 0.020715774968266487, + 0.0021955822594463825, + -2.3304322027684066e-08, + -0.06513509899377823, + -0.01606442593038082, + -0.03918685019016266, + 0.011543956585228443, + 0.028134526684880257, + -0.0005230403039604425, + -0.002074793679639697, + 0.05868544429540634, + -0.03596455231308937, + -0.029251843690872192, + 0.10799720883369446, + 0.014981972053647041, + -0.08393082767724991, + -0.0980130136013031, + 0.07432851195335388, + 0.014344573952257633, + 0.0030994543340057135, + 0.04322074353694916, + -0.034317634999752045, + -0.0690595805644989, + 0.10548219829797745, + 0.05303815379738808, + 0.06153535842895508, + -0.05230069160461426, + -0.009193518199026585, + 0.01402521226555109, + -0.04877246916294098, + -0.003181590000167489, + 0.09495159983634949, + 0.096607506275177, + 0.0727335587143898, + 0.008786480873823166, + 0.04037075117230415, + -0.03265330567955971, + -0.012371140532195568, + 0.003684168914332986, + -0.08584446460008621, + 0.0058908285573124886, + 0.005378758069127798, + 0.10412252694368362, + 0.016107158735394478, + -0.04365101456642151, + -0.002081470564007759, + -0.00856736209243536, + -0.06059551611542702, + -0.04207441583275795, + -0.05120360851287842, + -0.0016153526958078146, + 0.008080185391008854, + -0.15945157408714294, + -0.005426498595625162, + -0.020108861848711967, + 0.013874023221433163, + 0.012155454605817795, + 0.0245473962277174, + 0.023431317880749702, + 0.07507916539907455, + 0.059390630573034286, + 0.08923567831516266, + -0.034618061035871506, + 0.1093943789601326, + -0.01934274099767208, + 0.03726503252983093, + 0.011848014779388905 + ], + "tree-bold||plants,branches,leaves,green,environmental": [ + 0.05331237241625786, + 0.013698519207537174, + -0.005671625956892967, + 0.04983941465616226, + 0.09098970890045166, + -0.003881592070683837, + 0.03802973031997681, + -0.02335059829056263, + 0.027848076075315475, + 0.050965242087841034, + 0.06459982693195343, + -0.05027281120419502, + 0.02656746283173561, + -0.05625549703836441, + -0.027842851355671883, + 0.07050903886556625, + -0.06897742301225662, + 0.0541953481733799, + -0.03990459442138672, + -0.017051955685019493, + 0.05460787191987038, + 0.09497339278459549, + -0.012505399994552135, + 0.0473778173327446, + 0.04526500031352043, + -0.012028000317513943, + -0.06729622185230255, + 0.0489182211458683, + 0.044254470616579056, + -0.11444210261106491, + -0.05808468163013458, + 0.047290533781051636, + 0.128339946269989, + 0.06403673440217972, + -0.004531247075647116, + -0.0017459942027926445, + 0.03392896428704262, + -0.09931871294975281, + 0.004638492129743099, + 0.07581676542758942, + 0.010715114884078503, + 0.039598964154720306, + 0.019090600311756134, + -0.01320989802479744, + -0.04119633138179779, + 0.0295534860342741, + -0.07780970633029938, + -0.015562759712338448, + -0.01719682104885578, + 0.003952673636376858, + -0.012907030060887337, + -0.12219954282045364, + -0.1459749937057495, + -0.010621544905006886, + -0.005911055486649275, + 0.03132098540663719, + -0.014559783972799778, + -0.05571909248828888, + 0.07327713817358017, + 0.05511714145541191, + 0.09408693760633469, + 0.04205574840307236, + -0.00262853573076427, + 0.04786784201860428, + 0.042691752314567566, + 0.07219447195529938, + -0.06222916021943092, + 0.060285840183496475, + 0.035880737006664276, + -0.038875531405210495, + 0.04407106339931488, + -0.002688930369913578, + -0.07830794900655746, + -0.011721163056790829, + -0.03711060807108879, + 0.018886860460042953, + 0.04357611760497093, + 0.06116602569818497, + -0.05433608219027519, + -0.08998711407184601, + -0.08852100372314453, + -0.028841855004429817, + -0.09284058213233948, + -0.020294642075896263, + 0.002426162362098694, + 0.05431535467505455, + -0.09858225286006927, + 0.012680470012128353, + -0.06321197003126144, + -0.00562477158382535, + -0.059181854128837585, + -0.018745243549346924, + 0.0037920193281024694, + 0.024553459137678146, + -0.13280852138996124, + 0.10463446378707886, + 0.08535569161176682, + -0.0782342478632927, + -0.0178193598985672, + 0.03128207474946976, + 0.021077454090118408, + 0.027524590492248535, + 0.04492255672812462, + -0.05630655214190483, + -0.13479818403720856, + -0.04696338623762131, + -0.09246282279491425, + -0.06532520800828934, + 0.013551682233810425, + -0.00881720706820488, + -0.024076124653220177, + -0.08113586902618408, + -0.09892019629478455, + -0.015326980501413345, + -0.039136890321969986, + -0.049021802842617035, + 0.003810257650911808, + -0.04204487428069115, + 0.07181692868471146, + 0.04451226443052292, + -0.014820534735918045, + -0.03654039278626442, + -0.0010197816882282495, + -0.0015469691716134548, + 0.007042388431727886, + -0.03602497652173042, + -0.01624346897006035, + -2.7717892306160604e-33, + 0.08327263593673706, + 0.013508733361959457, + 0.007309789769351482, + 0.04216594621539116, + 0.05806982144713402, + 0.0022722932044416666, + -0.033711452037096024, + -0.063280388712883, + -0.09183956682682037, + 0.02991824969649315, + -0.0418546237051487, + 0.025674493983387947, + -0.03921956568956375, + 0.006421977188438177, + 0.04518378525972366, + -0.008414595387876034, + -0.038518667221069336, + -0.06360415369272232, + -0.060484256595373154, + 0.05118142440915108, + -0.0407460480928421, + 0.07150085270404816, + -0.07028106600046158, + -0.004778134636580944, + 0.023444849997758865, + -0.07342346012592316, + 0.05793508142232895, + -0.03780604153871536, + -0.0164593905210495, + -0.0033274556044489145, + 0.07198088616132736, + -0.018921231850981712, + 0.035283125936985016, + 0.0010554604232311249, + 0.003427287098020315, + 0.009290633723139763, + -0.048817094415426254, + -0.017002642154693604, + 0.007227350026369095, + 0.03644878789782524, + -0.06774206459522247, + 0.006266847252845764, + 0.05547390505671501, + 0.03711678460240364, + 0.08332091569900513, + 0.10073886811733246, + -0.05487925931811333, + -0.036446597427129745, + 0.04020216688513756, + 0.0544295497238636, + -0.03716825693845749, + 0.04982199892401695, + 0.06699668616056442, + 0.014567917212843895, + -0.0306599922478199, + 0.04167195037007332, + 0.01137334480881691, + 0.1325998306274414, + -0.03884650394320488, + 0.06987892836332321, + 0.06239066272974014, + 0.03396932780742645, + 0.0158033799380064, + -0.04876890406012535, + 0.018250256776809692, + 0.12718617916107178, + -0.11658131331205368, + 0.007542597129940987, + 0.08441746234893799, + -0.013838316313922405, + -0.05043269321322441, + 0.013388714753091335, + 0.028980888426303864, + -0.006836704444140196, + 0.009949544444680214, + 0.031361181288957596, + -0.016350360587239265, + -0.007948125712573528, + -0.030584435909986496, + 0.01734238490462303, + -0.14162132143974304, + -0.004416253417730331, + -0.029779937118291855, + 0.020286308601498604, + 0.008430489338934422, + -0.028367670252919197, + 0.0023754364810884, + -0.01885414682328701, + 0.01265609823167324, + 0.04355122894048691, + -0.007146644871681929, + 0.05300864204764366, + -0.00102994404733181, + -0.05394063889980316, + -0.03565206378698349, + -1.0536763100431392e-33, + 0.020382534712553024, + 0.016975361853837967, + 0.024862227961421013, + -0.018831929191946983, + -0.03466543182730675, + 0.008262746036052704, + -0.13539138436317444, + -0.02111566625535488, + -0.009050297550857067, + 0.0182320736348629, + 0.023746613413095474, + 0.0758354663848877, + -0.0747828409075737, + -0.01898660697042942, + -0.0002422925317659974, + -0.028758998960256577, + 0.039146456867456436, + 0.10734023153781891, + -0.044429317116737366, + 0.03175550326704979, + -0.07980577647686005, + 0.047171808779239655, + -0.055841971188783646, + 0.0649775043129921, + -0.03328970447182655, + 0.014742323197424412, + -0.0035729745868593454, + -0.03585008159279823, + -0.01959630474448204, + -0.06256435066461563, + 0.013386993668973446, + -0.04279015585780144, + 0.014021072536706924, + 0.03186492621898651, + -0.061414480209350586, + -0.0386543795466423, + 0.004476794041693211, + -0.11269775032997131, + 0.0633794292807579, + 0.09298128634691238, + 0.01289404183626175, + 0.023363161832094193, + 0.04258088767528534, + -0.003997908905148506, + -0.04543379694223404, + -0.03429694473743439, + -0.044079698622226715, + -0.039835549890995026, + -0.048129789531230927, + 0.08404986560344696, + 0.062358055263757706, + 0.01113513670861721, + -0.002340534934774041, + 0.01825602911412716, + 0.012286859564483166, + -0.05703867971897125, + 4.504760727286339e-05, + 0.05869581550359726, + -0.019739482551813126, + 0.003998348489403725, + -0.03883843123912811, + -0.0025958127807825804, + -0.06456218659877777, + 0.0006474311812780797, + -0.00849219225347042, + -0.10036177933216095, + -0.03139270469546318, + -0.04653731361031532, + 0.026284489780664444, + -0.04681233689188957, + -0.024767432361841202, + 0.02523741126060486, + -0.04516100138425827, + 0.032811179757118225, + 0.020518720149993896, + -0.02215464971959591, + 0.014744462445378304, + -0.006407609675079584, + -0.041945930570364, + 0.052342332899570465, + -0.06982790678739548, + 0.021643878892064095, + -0.0581100732088089, + 0.04870665818452835, + 0.02033933997154236, + -0.003959823865443468, + -0.0437781922519207, + 0.027992146089673042, + 0.05108802020549774, + -0.028034407645463943, + -0.0040295785292983055, + 0.06470311433076859, + -0.01103705819696188, + 0.017610611394047737, + 0.023473558947443962, + -2.009468857977481e-08, + -0.024035053327679634, + 0.000130705680930987, + -0.04289674386382103, + 0.003979967907071114, + 0.01013145875185728, + -0.060778215527534485, + 0.03254134953022003, + -0.02652459591627121, + -0.09325800836086273, + 0.01198954414576292, + 0.0376669317483902, + 0.06311853975057602, + -0.08948804438114166, + -0.02717512659728527, + 0.08288655430078506, + -0.04949381947517395, + -0.020634321495890617, + 0.032118041068315506, + 0.011794558726251125, + 0.06392904371023178, + -0.010834687389433384, + 0.0029293217230588198, + -0.02178114652633667, + 0.06162772327661514, + 0.01151476614177227, + -0.006620593369007111, + 0.026845311746001244, + 0.024094730615615845, + 0.04046422988176346, + 0.1034863293170929, + 0.09489157050848007, + 0.10081096738576889, + -0.03217541426420212, + 0.023811770603060722, + -0.11869535595178604, + -0.04010121151804924, + -0.003995418082922697, + 0.02359624207019806, + -0.06517450511455536, + 0.09283848851919174, + 0.025012759491801262, + -0.05072711408138275, + -0.05371543765068054, + -0.015594189055263996, + -0.028261424973607063, + -0.028693456202745438, + 0.06412716954946518, + 0.05105651542544365, + -0.0003866479091811925, + -0.07136772572994232, + -0.04842281714081764, + -0.03622613102197647, + 0.019788287580013275, + 0.04208802431821823, + -0.06072503328323364, + -0.0728738084435463, + 0.036210376769304276, + 0.025028390809893608, + 0.0029681010637432337, + 0.008162901736795902, + 0.13637205958366394, + -0.025887154042720795, + 0.06607323884963989, + 0.03337782993912697 + ], + "tree-evergreen-bold||plants,branches,leaves,pine,conifer,green,environmental": [ + 0.05673527345061302, + -0.014118261635303497, + 0.012369638308882713, + 0.0443224273622036, + 0.07674064487218857, + 0.02832207642495632, + 0.042394381016492844, + -0.009149911813437939, + 0.041645124554634094, + 0.06612711399793625, + 0.046737369149923325, + -0.03135707601904869, + -0.008400236256420612, + -0.016310719773173332, + -0.014145777560770512, + 0.05737471580505371, + -0.056757714599370956, + 0.030174236744642258, + -0.01445693802088499, + 0.02973935194313526, + 0.0504278764128685, + 0.06337062269449234, + -0.029068032279610634, + 0.054283302277326584, + 0.04460114613175392, + -0.01742766797542572, + -0.10222253948450089, + 0.04051819071173668, + 0.03159931302070618, + -0.06733404099941254, + -0.024707533419132233, + -0.011070665903389454, + 0.11324582248926163, + 0.08621437847614288, + -0.04019464924931526, + 0.01377799641340971, + 0.025052208453416824, + -0.060961488634347916, + 0.008543480187654495, + 0.09774500876665115, + -0.0342785120010376, + 0.05751165747642517, + 0.004637116566300392, + -0.01717606745660305, + -0.052905477583408356, + 0.027911270037293434, + -0.05080551281571388, + 0.004758839495480061, + -0.037754107266664505, + 0.02054789662361145, + -0.017606869339942932, + -0.09327172487974167, + -0.18526725471019745, + -0.0036933731753379107, + -0.005441669840365648, + 0.024388136342167854, + -0.0011323934886604548, + -0.07690472900867462, + 0.06341627985239029, + 0.05510017275810242, + 0.0745706781744957, + 0.0013034652220085263, + -0.010722005739808083, + 0.06275703012943268, + -0.0124303437769413, + 0.07699928432703018, + -0.07186182588338852, + 0.09749201685190201, + 0.054093219339847565, + -0.043486710637807846, + 0.01619173027575016, + 0.023736432194709778, + -0.07817303389310837, + -0.015248037874698639, + -0.04848019406199455, + -0.004385286942124367, + 0.012474136427044868, + 0.022799303755164146, + -0.04558243602514267, + -0.07775653153657913, + -0.06239514797925949, + 0.018880633637309074, + -0.12073468416929245, + -0.004707913845777512, + -0.00515719223767519, + 0.060855455696582794, + -0.08310753852128983, + 0.026905519887804985, + -0.06584876030683517, + -0.04143032431602478, + -0.03472575917840004, + -0.027202662080526352, + 0.02557981200516224, + 0.021891150623559952, + -0.14089708030223846, + 0.11625154316425323, + 0.07894187420606613, + -0.06804678589105606, + 0.008419190533459187, + 0.004220707807689905, + 0.03230125829577446, + -0.0037170094437897205, + 0.05848052352666855, + -0.05554107949137688, + -0.13173532485961914, + -0.041934505105018616, + -0.12972868978977203, + -0.045393552631139755, + 0.01082210149616003, + -0.004490422550588846, + -0.014736508950591087, + -0.0758012980222702, + -0.10956724733114243, + 0.015153227373957634, + 0.009620330296456814, + 0.0036374363116919994, + -0.010393444448709488, + -0.049571964889764786, + 0.055032480508089066, + 0.02093823067843914, + -0.04327784478664398, + -0.06440253555774689, + 0.057787131518125534, + -0.008248323574662209, + -0.02508547343313694, + -0.03491538390517235, + 0.010795517824590206, + -2.100102758677582e-33, + 0.05897718667984009, + 0.008450805209577084, + 0.0029221533332020044, + 0.03828877583146095, + 0.024895023554563522, + -0.0008747672545723617, + -0.033433616161346436, + -0.004931578412652016, + -0.05127812176942825, + 0.05162892863154411, + -0.01352196466177702, + 0.05590628832578659, + -0.028446471318602562, + 0.04118698835372925, + 0.050740715116262436, + -0.005477235186845064, + -0.0030275920871645212, + -0.026376930996775627, + -0.06118491664528847, + 0.04491357505321503, + -0.02736543118953705, + 0.11208979785442352, + -0.03138880431652069, + 0.030079716816544533, + 0.0009426642791368067, + -0.11567956209182739, + 0.0357087068259716, + -0.043284762650728226, + -0.027284668758511543, + -0.02968069165945053, + 0.09957772493362427, + -0.01667899452149868, + 0.039976999163627625, + 0.029498131945729256, + 0.047056205570697784, + -0.043642930686473846, + -0.041628699749708176, + -0.009058102034032345, + 0.02384009025990963, + 0.012635620310902596, + -0.05396033823490143, + 0.009403381496667862, + 0.0682663843035698, + 0.07783550024032593, + 0.09145582467317581, + 0.06078345701098442, + -0.024034408852458, + -0.016479680314660072, + 0.04703599959611893, + 0.05992475152015686, + -0.06044236198067665, + 0.10461157560348511, + 0.058805543929338455, + -0.016373781487345695, + -0.04697372019290924, + 0.024303365498781204, + 0.004457552917301655, + 0.12882031500339508, + -0.02530219405889511, + 0.07086289674043655, + 0.03288531303405762, + 0.011190279386937618, + 0.002533002756536007, + -0.1027737557888031, + -0.017497489228844643, + 0.07614325731992722, + -0.11433719098567963, + 0.025894543156027794, + 0.06076474115252495, + 0.015500355511903763, + -0.018760791048407555, + -0.0033078850246965885, + 0.029683386906981468, + 0.016887027770280838, + 0.06769829988479614, + 0.06706055253744125, + -0.010549993254244328, + 0.037454187870025635, + -0.02886783704161644, + 0.02165641449391842, + -0.14281485974788666, + 0.017856234684586525, + -0.0354735404253006, + 0.02728799171745777, + -0.0338602140545845, + -0.03798146918416023, + 0.040504224598407745, + -0.019229020923376083, + 0.02508263662457466, + 0.05845674127340317, + -0.02075706422328949, + 0.08357036113739014, + -0.026515943929553032, + -0.045715656131505966, + -0.008856425993144512, + -1.5399190890832976e-33, + 0.03348440304398537, + -0.015801062807440758, + 0.00451271329075098, + -0.03118971362709999, + -0.019640251994132996, + 0.0412420928478241, + -0.11613912135362625, + -0.010586891323328018, + -0.012140109203755856, + 0.0007617097580805421, + 0.04452722147107124, + 0.07428459823131561, + -0.05174187198281288, + 0.008883338421583176, + -0.011888408102095127, + -0.06124171242117882, + 0.0023538346868008375, + 0.10074275732040405, + -0.06168651953339577, + 0.0286470465362072, + -0.06046561896800995, + 0.05363023653626442, + -0.07868016511201859, + 0.04196410998702049, + -0.013939598575234413, + 0.03069319948554039, + -0.0006062531028874218, + -0.06008962541818619, + 0.00020540731202345341, + -0.04938041791319847, + 0.0197548046708107, + -0.031163228675723076, + 0.009686164557933807, + 0.027580002322793007, + -0.0904998853802681, + -0.04576147720217705, + 0.012887137942016125, + -0.09737589955329895, + -0.010733185335993767, + 0.04763069376349449, + 0.03910933807492256, + 0.023113882169127464, + 0.0792820155620575, + 0.003950025886297226, + -0.03287152200937271, + -0.05987570062279701, + -0.09772942960262299, + -0.027485547587275505, + -0.025374656543135643, + 0.11966045200824738, + 0.03115200065076351, + -0.009608210064470768, + 0.010814054869115353, + 0.0023587646428495646, + 0.018310723826289177, + -0.06253673136234283, + 0.007020510733127594, + 0.06083455681800842, + -0.007562164217233658, + -0.019615400582551956, + -0.029204154387116432, + 0.015099799260497093, + -0.00928406324237585, + -0.027379360049962997, + 0.016877539455890656, + -0.11314333975315094, + -0.052794866263866425, + -0.08068491518497467, + -0.0008367823320440948, + -0.03874649479985237, + -0.04761049896478653, + 0.028042547404766083, + -0.03915100172162056, + -0.03292302414774895, + 0.030201012268662453, + -0.011488211341202259, + 0.022878702729940414, + -0.06889081001281738, + -0.06461990624666214, + 0.01788845658302307, + -0.04030614718794823, + 0.035507895052433014, + -0.03533453494310379, + 0.05279446393251419, + -0.012361654080450535, + 0.027650924399495125, + -0.023497167974710464, + 0.010097100399434566, + 0.05143503099679947, + -0.020488331094384193, + 0.0030156434513628483, + 0.05960894376039505, + -0.0229994785040617, + 0.01325003057718277, + 0.041066721081733704, + -2.0847986448302436e-08, + -0.010389910079538822, + 0.028144551441073418, + -0.041699107736349106, + -0.006773348432034254, + -0.01690760627388954, + -0.05164605751633644, + 0.03327661380171776, + -0.019898727536201477, + -0.10903286188840866, + 0.01278253085911274, + 0.06430008262395859, + 0.07279618829488754, + -0.08416461199522018, + -0.017215777188539505, + 0.05881218612194061, + -0.1014261394739151, + -0.05127955228090286, + 0.010902121663093567, + 0.019420167431235313, + 0.030657116323709488, + -0.010694511234760284, + -0.024651359766721725, + -0.012529872357845306, + 0.09795181453227997, + 0.015432043932378292, + -0.01998171955347061, + 0.05600130185484886, + 0.013195306062698364, + 0.048116717487573624, + 0.06215334311127663, + 0.10076645761728287, + 0.07678969949483871, + -0.017029639333486557, + 0.008499722927808762, + -0.06368610262870789, + -0.015446353703737259, + -0.02418253943324089, + 0.019067076966166496, + -0.08946245908737183, + 0.055520083755254745, + 0.059964049607515335, + -0.07612082362174988, + -0.06443001329898834, + 0.005274585913866758, + -0.013595807366073132, + -0.03587022051215172, + 0.03706043213605881, + 0.042571526020765305, + 0.012086845934391022, + -0.030259914696216583, + -0.05657697841525078, + -0.0396462045609951, + -0.010816277004778385, + 0.007626845967024565, + -0.0575098916888237, + -0.07344319671392441, + 0.006842829752713442, + -0.0001031517458613962, + 0.021969540044665337, + -0.0139637291431427, + 0.13611556589603424, + -0.036654867231845856, + 0.05954388901591301, + 0.027397986501455307 + ], + "tree-palm-bold||tropical,beach,plants,branches,leaves,green,environmental": [ + 0.06820914894342422, + -0.005958544556051493, + -0.015620366670191288, + 0.000878318038303405, + 0.1242527961730957, + -0.015357705764472485, + -0.007444455754011869, + -0.06553509086370468, + 0.022813808172941208, + 0.0858907625079155, + 0.13386930525302887, + -0.09218387305736542, + -0.05538298562169075, + -0.10209136456251144, + 0.05109506472945213, + 0.06713805347681046, + -0.03224943205714226, + 0.03229412063956261, + -0.005342674441635609, + -0.021487494930624962, + 0.06081632152199745, + 0.09925509244203568, + -0.013341446407139301, + 0.03544168546795845, + -0.06310749053955078, + -0.005741592962294817, + -0.026850294321775436, + 0.05458546429872513, + -0.00012171733396826312, + -0.0768098309636116, + -0.07357410341501236, + 0.12422505766153336, + 0.07711807638406754, + 0.028563180938363075, + -0.011086717247962952, + -0.041517775505781174, + -0.020442133769392967, + -0.08895096182823181, + -0.006196495611220598, + 0.04290905222296715, + -0.00878133438527584, + 0.00421317620202899, + 0.11097743362188339, + -0.02009330503642559, + -0.052724339067935944, + -0.030579572543501854, + -0.062137022614479065, + 0.029315292835235596, + 0.001906364457681775, + -0.003287015249952674, + 0.0051336330361664295, + -0.06567120552062988, + -0.15501829981803894, + -0.05735417455434799, + -0.012089153751730919, + 0.03528578206896782, + -0.0037190760485827923, + -0.04947748780250549, + 0.02602231502532959, + 0.10491008311510086, + 0.09174618870019913, + 0.07176247984170914, + -0.0599566325545311, + 0.030782828107476234, + 0.05631686747074127, + 0.034185733646154404, + -0.01243649423122406, + 0.031607482582330704, + 0.04248823598027229, + -0.05531911924481392, + 2.3326720111072063e-05, + -0.015319561585783958, + 0.009401951916515827, + 0.016057828441262245, + -0.09340178221464157, + -0.025354454293847084, + 0.043524254113435745, + 0.056405168026685715, + -0.05487232655286789, + -0.07924940437078476, + -0.05935340374708176, + 0.029729526489973068, + -0.028749026358127594, + -0.037458524107933044, + -0.01815478876233101, + 0.014001197181642056, + -0.06956890225410461, + 0.018766868859529495, + -0.013799441047012806, + 0.0027542735915631056, + -0.03665739670395851, + -0.024362560361623764, + -0.016837233677506447, + -0.015384886413812637, + -0.15728463232517242, + 0.11103294044733047, + 0.035275980830192566, + -0.09953998029232025, + -0.026926077902317047, + 0.018187755718827248, + 0.028572378680109978, + 0.041522055864334106, + 0.06599504500627518, + -0.08981534838676453, + -0.09799176454544067, + 0.021290838718414307, + -0.0954592227935791, + -0.07260218262672424, + 0.05106809735298157, + 0.047319479286670685, + -0.07404784858226776, + -0.012713463045656681, + -0.11670839041471481, + -0.0126718794927001, + -0.033192627131938934, + -0.029009366407990456, + 0.006570346187800169, + -0.06570266932249069, + 0.027302583679556847, + 0.055513281375169754, + -0.02325650304555893, + -0.0605630986392498, + 0.018803410232067108, + -0.04268518090248108, + -0.04082024469971657, + -0.04027213528752327, + 0.036253780126571655, + -4.3760760026274864e-33, + 0.06777876615524292, + 0.02136518619954586, + 0.08935714513063431, + 0.016224142163991928, + 0.09100350737571716, + -0.04726042225956917, + -0.0006717787473462522, + -0.08241032809019089, + -0.095460444688797, + 0.018063092604279518, + 0.014752209186553955, + -0.009826923720538616, + -0.07172749191522598, + 0.04195890948176384, + 0.06122333183884621, + 0.011341327801346779, + -0.025586478412151337, + -0.0805954560637474, + -0.06191492825746536, + 0.0036964719183743, + -0.02427746169269085, + 0.0718676894903183, + -0.07687627524137497, + -0.05974767729640007, + 0.05160626024007797, + -0.05166354402899742, + 0.05646491423249245, + -0.03030594065785408, + 0.024956874549388885, + 0.01848769001662731, + 0.06316345930099487, + -0.02538326568901539, + 0.015212265774607658, + -0.042248304933309555, + -0.03178154677152634, + -0.008615394122898579, + -0.0004680786223616451, + -0.057275351136922836, + 0.033430419862270355, + -0.025361763313412666, + 0.014961723238229752, + -0.03934308886528015, + 0.04807664081454277, + 0.07805449515581131, + 0.013797537423670292, + -0.002317963168025017, + 0.005363070406019688, + -0.06779003888368607, + 0.07242428511381149, + 0.007498896215111017, + -0.05750764161348343, + 0.0022410645615309477, + 0.016626037657260895, + 0.021112916991114616, + -0.060121048241853714, + 0.012449739500880241, + 0.011882144957780838, + 0.06094136834144592, + -0.060156095772981644, + 0.05124139413237572, + 0.07423758506774902, + -0.02267274633049965, + 0.004052984993904829, + -0.05875103920698166, + 0.025634262710809708, + 0.09696172922849655, + -0.07801219075918198, + -0.006413700524717569, + 0.054435864090919495, + -0.03842301294207573, + -0.02615763247013092, + -0.04880015179514885, + 0.09885512292385101, + -0.012072926387190819, + 0.02808685228228569, + 0.058657389134168625, + 0.0348258838057518, + 0.05677206814289093, + -0.05910215154290199, + 0.055710576474666595, + -0.1188669353723526, + 0.05561910942196846, + -0.004477344453334808, + 0.04558935761451721, + -0.014245014637708664, + 0.023398995399475098, + -0.03258159011602402, + -0.009640544652938843, + 0.03533507138490677, + -0.009799224324524403, + -0.03596039488911629, + 0.039506006985902786, + 0.02654910832643509, + -0.045121319591999054, + -0.03687015548348427, + -7.5418868070418505e-34, + 0.006087263114750385, + 0.033539220690727234, + 0.04534110054373741, + -0.036880869418382645, + 0.01402350701391697, + -0.013098844327032566, + -0.09428875148296356, + 0.008111130446195602, + -0.05737641081213951, + -0.08237753808498383, + -0.10731294006109238, + 0.05187477543950081, + -0.034640733152627945, + -0.1002798080444336, + 0.0192006416618824, + 0.005368943326175213, + 0.04645262658596039, + 0.09623150527477264, + -0.02251824177801609, + 0.0323677621781826, + -0.020831285044550896, + 0.04482375457882881, + 0.038369253277778625, + 0.035029370337724686, + -0.03153050318360329, + -0.012082267552614212, + 0.0019218173110857606, + -0.024189459159970284, + -0.03909546136856079, + -0.035384874790906906, + 0.03232184797525406, + -0.0033823756966739893, + 0.02286032773554325, + 0.06055489927530289, + -0.10264153778553009, + -0.07992564141750336, + -0.05809713155031204, + -0.10687163472175598, + 0.013914266601204872, + 0.1006721630692482, + 0.0335504487156868, + -0.00043608693522401154, + 0.08440513163805008, + -0.05477863550186157, + -0.021208589896559715, + -0.05465822294354439, + -0.07909426093101501, + -0.019713420420885086, + -0.016219230368733406, + 0.008958346210420132, + 0.07961682975292206, + 0.04100337624549866, + -0.03327425569295883, + 0.03625068441033363, + 0.04555773735046387, + -0.009030631743371487, + -0.0027914284728467464, + 0.04736325144767761, + 0.013162980787456036, + -0.005752919241786003, + -0.04905109480023384, + 0.029360637068748474, + -0.08891795575618744, + 0.007645063102245331, + 0.07325457036495209, + -0.04603906720876694, + 0.017724918201565742, + -0.008807854726910591, + -0.0052647097036242485, + -0.0409260168671608, + -0.04748665913939476, + 0.05063846334815025, + -0.05172894895076752, + 0.060621850192546844, + 0.027426058426499367, + 0.01613287255167961, + 0.00435067992657423, + -0.037305254489183426, + -0.05521136894822121, + 0.05557751655578613, + -0.03955909609794617, + -0.009191857650876045, + -0.04197632148861885, + 0.038274165242910385, + -0.013130401261150837, + 0.02194127067923546, + -0.01801178604364395, + -0.015098069794476032, + 0.044939566403627396, + -0.004434134345501661, + -0.01565876230597496, + 0.04853398725390434, + -0.05906638875603676, + 0.039448097348213196, + -0.025247016921639442, + -2.0065272110514343e-08, + 0.06272222101688385, + -0.006199491210281849, + -0.011314479634165764, + 0.009555932134389877, + -0.06568849831819534, + -0.02096257358789444, + 0.08509960770606995, + 0.03881467506289482, + -0.02365465648472309, + 0.023087909445166588, + -0.008908753283321857, + 0.01189586240798235, + -0.030146699398756027, + 0.036826711148023605, + 0.006115499883890152, + -0.05194149166345596, + -0.020843341946601868, + 0.060032472014427185, + 0.006789265666157007, + 0.015847986564040184, + -0.001888653845526278, + 0.0040998938493430614, + -0.003807338420301676, + 0.037211015820503235, + -0.025459885597229004, + 0.034192804247140884, + 0.017622699961066246, + 0.05341102182865143, + 0.04516071081161499, + 0.10548354685306549, + 0.014090911485254765, + 0.06698230654001236, + -0.039641838520765305, + 0.03716421499848366, + -0.05923832952976227, + -0.030453456565737724, + 0.012770348228514194, + -0.027029208838939667, + -0.09133654832839966, + 0.06925810873508453, + 0.04010562598705292, + -0.07312299311161041, + -0.03690926730632782, + 0.013133473694324493, + -0.021933559328317642, + -0.020268330350518227, + 0.062324266880750656, + 0.09738919883966446, + 0.01876373216509819, + -0.040233686566352844, + -0.012836545705795288, + 0.019275160506367683, + 0.004414510913193226, + -0.025352992117404938, + -0.04524813964962959, + -0.046854522079229355, + 0.033597271889448166, + 0.018888140097260475, + 0.044632669538259506, + 0.039264779537916183, + 0.13476960361003876, + -0.0689675435423851, + -0.013786951079964638, + 0.08103305101394653 + ], + "tree-structure-bold||data structures,family tree,genealogy,hierarchy,taxonomy,charts,flowchart": [ + 0.010110464878380299, + -0.0048581515438854694, + -0.01937784254550934, + 0.017737360671162605, + 0.030001061037182808, + -0.045245926827192307, + -0.050561074167490005, + -0.023070525377988815, + -0.005805331747978926, + 0.029798926785588264, + 0.05176270380616188, + -0.06284765899181366, + 0.028756214305758476, + -0.02462831139564514, + -0.016091063618659973, + 0.05687972903251648, + -0.07797062397003174, + 0.012305271811783314, + 0.03435242921113968, + -0.050610363483428955, + 0.017322683706879616, + 0.03391185775399208, + 0.020567504689097404, + 0.060604993253946304, + 0.03702884539961815, + 0.06391363590955734, + 0.007419310510158539, + 0.025899985805153847, + 0.026990355923771858, + -0.0860491469502449, + -0.02519119717180729, + -0.011316973716020584, + 0.14619068801403046, + 0.06515280157327652, + -0.05207601189613342, + -0.003272355766966939, + 0.07607952505350113, + 0.007600960321724415, + -0.0017789393896237016, + 0.09780466556549072, + -0.017086686566472054, + 0.04110417515039444, + 0.04514211788773537, + -0.013292178511619568, + -0.012091577984392643, + 0.04223436862230301, + -0.11311062425374985, + -0.034694429486989975, + -0.043593812733888626, + 0.08547920733690262, + -0.08786194771528244, + -0.07848478108644485, + -0.09751971065998077, + 0.03991490229964256, + 0.06605863571166992, + 0.09963205456733704, + -0.09486933797597885, + -0.06705357879400253, + 0.020806873217225075, + 0.023739904165267944, + 0.0261309202760458, + 0.06866633147001266, + -0.038051482290029526, + 0.023731688037514687, + 0.037789467722177505, + 0.09607192873954773, + -0.00961774680763483, + 0.07830529659986496, + 0.058303698897361755, + -0.005773577373474836, + 0.04142874851822853, + -0.002999837277457118, + -0.06358826905488968, + 0.049691878259181976, + -0.051831576973199844, + 0.022850636392831802, + 0.02770691178739071, + 0.005382686387747526, + -0.10635315626859665, + -0.1314491182565689, + -0.0830376073718071, + 0.046479225158691406, + -0.06667575985193253, + 0.012846793979406357, + -0.04561924189329147, + 0.05879487842321396, + -0.05118103325366974, + -0.04831093177199364, + -0.06644043326377869, + -0.0001081742811948061, + -0.03136646747589111, + -0.06867238134145737, + 0.04256739839911461, + 0.03175807744264603, + -0.0552934966981411, + 0.076645128428936, + 0.06389053165912628, + -0.05732513591647148, + 0.021600443869829178, + 0.03149282559752464, + 0.05343547835946083, + -0.018147679045796394, + 0.04510798305273056, + -0.01448460016399622, + -0.10810359567403793, + -0.05247034505009651, + -0.07684750854969025, + -0.03118858113884926, + 0.04032400995492935, + 0.00016033396241255105, + -0.05316454544663429, + -0.04448672756552696, + -0.10125979036092758, + -0.05546555295586586, + -0.09106293320655823, + -0.08385033160448074, + -0.05919449031352997, + -0.0587727427482605, + 0.035794828087091446, + 0.05832061544060707, + 0.017748448997735977, + 0.040265727788209915, + -0.0033364505507051945, + -0.03733077645301819, + 0.025110213086009026, + -0.04136371985077858, + -0.05682149901986122, + -1.0917213683784948e-33, + 0.03861774504184723, + 0.003465129993855953, + 0.006581260822713375, + 0.08826121687889099, + 0.05826245993375778, + -0.0002978464472107589, + -0.0794505774974823, + -0.04798774793744087, + -0.08882517367601395, + 0.06903744488954544, + 0.012075752019882202, + 0.10459300875663757, + -0.09773660451173782, + 0.03150753304362297, + 0.0299154594540596, + -0.016773274168372154, + 0.0272106621414423, + 0.024770522490143776, + -0.08334396779537201, + 0.009625275619328022, + -0.06374725699424744, + 0.07426977902650833, + -0.000557271356228739, + -0.010116718709468842, + 0.041468847543001175, + -0.01621566340327263, + 0.046326909214258194, + 0.011957879178225994, + -0.06289073824882507, + 0.010094170458614826, + -0.010380864143371582, + -0.03805367276072502, + 0.02021864429116249, + -0.04652082547545433, + 0.004321509972214699, + 0.02500213496387005, + -0.012901388108730316, + -0.09348747879266739, + 0.019716113805770874, + 0.026560241356492043, + -0.1254277378320694, + -0.026469476521015167, + 0.018138399347662926, + 0.035855114459991455, + 0.00038320146268233657, + 0.08756230026483536, + 0.003847102401778102, + -0.0613492988049984, + 0.04860016331076622, + 0.022936087101697922, + -0.02437763847410679, + 0.007872264832258224, + 0.055390141904354095, + 0.03136046603322029, + -0.028550567105412483, + 0.024823032319545746, + -0.0013235209044069052, + 0.0957178995013237, + -0.015934383496642113, + 0.0924755185842514, + 0.05530543997883797, + -0.009434428997337818, + 0.019542081281542778, + -0.059659019112586975, + -0.032947227358818054, + 0.05877377837896347, + -0.10509529709815979, + -0.00864807702600956, + 0.09902779757976532, + 0.001051918021403253, + 0.012466843239963055, + 0.04363644868135452, + 0.006230951752513647, + 0.023198120296001434, + 0.02894994430243969, + 0.0853620395064354, + -0.022046973928809166, + 0.013430316001176834, + -0.06791844218969345, + -0.019090615212917328, + -0.1393066793680191, + -0.024123698472976685, + 0.016512010246515274, + 0.04242026433348656, + 0.011296283453702927, + -0.05575253814458847, + 0.04372529685497284, + 0.027633151039481163, + -0.05975412204861641, + 0.049008067697286606, + -0.07838761061429977, + 0.0606728233397007, + 0.042886778712272644, + -0.05104531720280647, + 0.01572086103260517, + -2.06115550842797e-33, + -0.023922989144921303, + 0.027702629566192627, + 0.027913469821214676, + -0.03956442326307297, + 0.03307076543569565, + 0.024387123063206673, + -0.06374826282262802, + 0.02006608620285988, + 0.03238791599869728, + 0.0455482043325901, + 0.021581275388598442, + 0.011522839777171612, + -0.024738062173128128, + -0.08681460469961166, + -0.005377443041652441, + -0.006274079438298941, + 0.032303545624017715, + 0.021813081577420235, + -0.04731322452425957, + -0.006143838632851839, + -0.05709713697433472, + 0.11683148145675659, + -0.1331004798412323, + 0.05054792761802673, + 0.01130194216966629, + 0.00758958188816905, + -0.06876873970031738, + -0.013576679863035679, + -0.014596305787563324, + -0.016839439049363136, + -0.08398561924695969, + -0.08489784598350525, + 0.07529781758785248, + -0.03102867305278778, + -0.00314045837149024, + 0.020461253821849823, + 0.06003053858876228, + -0.06986170262098312, + -0.02964547835290432, + 0.004609567113220692, + -0.01087398361414671, + 0.0684320256114006, + -0.008755302987992764, + -0.0029953306075185537, + -0.02358795329928398, + 0.009020416997373104, + -0.05502460524439812, + -0.0008080397383309901, + 0.007975490763783455, + 0.031758178025484085, + 0.026678187772631645, + -0.00025086523965001106, + 0.07006542384624481, + -0.006749992724508047, + 0.013036133721470833, + -0.005762027110904455, + 0.034962303936481476, + 0.06534421443939209, + -0.05020344629883766, + 0.01189359836280346, + -0.07689933478832245, + 0.034369997680187225, + -0.04379476234316826, + 0.014212086796760559, + -0.023809047415852547, + -0.10849874466657639, + -0.05530969798564911, + -0.1252930462360382, + -0.03209097310900688, + -0.04337972030043602, + -0.028152745217084885, + 0.007354289293289185, + -0.012377582490444183, + 0.02893000841140747, + 0.037588026374578476, + -0.039659611880779266, + -0.02354765683412552, + 0.031227318570017815, + 0.01928320899605751, + 0.011760423891246319, + -0.005012986715883017, + 0.0025446072686463594, + 0.021634792909026146, + 0.09210305660963058, + 0.06410255283117294, + 0.008840395137667656, + 0.04127523675560951, + -0.020597035065293312, + 0.06583403795957565, + -0.018612151965498924, + 0.002727921586483717, + -0.03263995051383972, + -0.0305266622453928, + 0.0383467897772789, + 0.011808892711997032, + -2.114952124543379e-08, + -0.03297524154186249, + -0.06444975733757019, + -0.015874255448579788, + -0.031214116141200066, + 0.04356962814927101, + -0.038368985056877136, + 0.04775617644190788, + 0.10584704577922821, + -0.07670335471630096, + 0.03850442171096802, + 0.0381278395652771, + 0.07483485341072083, + -0.08033742755651474, + -0.061784498393535614, + 0.008743785321712494, + -0.055570267140865326, + 0.01521297823637724, + 0.03715997561812401, + -0.009329434484243393, + 0.02886264957487583, + 0.030811931937932968, + 0.04616399481892586, + -0.013176620937883854, + 0.0927586778998375, + 0.020253028720617294, + -0.05516497418284416, + 0.04310176521539688, + 0.02705773152410984, + -0.010482878424227238, + 0.05788726359605789, + 0.03388479724526405, + 0.03234325349330902, + -0.037272654473781586, + 0.03668348491191864, + -0.047627173364162445, + -0.049855850636959076, + -0.05244438350200653, + 0.07234130799770355, + -0.07737530767917633, + 0.08312305808067322, + -0.00807900633662939, + -0.04242764413356781, + -0.07194085419178009, + 0.00504129845649004, + -0.0067953127436339855, + 0.040110111236572266, + -0.02449679747223854, + 0.06405357271432877, + -0.02416708879172802, + -0.08928078413009644, + -0.07499532401561737, + -0.016628457233309746, + -0.004916068632155657, + 0.009594067931175232, + -0.013008002191781998, + -0.03682857006788254, + 0.019333334639668465, + 0.059463221579790115, + 0.012718063779175282, + -0.019186977297067642, + 0.1416339874267578, + -0.02226932719349861, + 0.09387568384408951, + -0.013476185500621796 + ], + "tree-view-bold||*new*,hierarchy": [ + -0.0017377532785758376, + -0.06673876196146011, + 0.023632917553186417, + 0.09009243547916412, + 0.05837531387805939, + -0.05997534468770027, + -0.05958050861954689, + -0.05360778793692589, + 0.02816658839583397, + 0.07367304712533951, + 0.0008522352436557412, + 0.0003585178346838802, + 0.0068729231134057045, + -0.023497721180319786, + 0.0274532288312912, + 0.07123685628175735, + -0.014850962907075882, + 0.036984268575906754, + 0.012401360087096691, + -0.04363468289375305, + 0.023538675159215927, + 0.01953967660665512, + 0.01525601465255022, + 0.018350649625062943, + 0.015171458944678307, + 0.0021920797880738974, + 0.019965743646025658, + -0.03972160443663597, + 0.0299045592546463, + -0.05591503158211708, + -0.02322324551641941, + -0.04276292398571968, + 0.12705492973327637, + 0.08665145188570023, + -0.013037046417593956, + -0.012398564256727695, + 0.056098051369190216, + -0.05368082597851753, + 0.021487625315785408, + 0.05360866338014603, + 0.025010088458657265, + 0.12335097789764404, + -0.039490070194005966, + -0.05288936197757721, + -0.04834110662341118, + -0.011563058011233807, + -0.0007210000185295939, + -0.042580921202898026, + 0.014304395765066147, + 0.004833434708416462, + -0.015481779351830482, + -0.09626714140176773, + -0.06609838455915451, + -0.057260818779468536, + 0.01705126091837883, + 0.08778601139783859, + -0.05572272464632988, + -0.07641308754682541, + 0.017527755349874496, + 0.06158678978681564, + 0.06861251592636108, + 0.06934641301631927, + 0.027270132675766945, + -0.014525696635246277, + 0.03713838756084442, + 0.035080403089523315, + -0.02929581142961979, + 0.011217450723052025, + 0.013176515698432922, + 0.02234015427529812, + 0.03430941328406334, + 0.007688184268772602, + -0.003254405688494444, + -0.03370114788413048, + -0.031884510070085526, + -0.004031789489090443, + 0.05767497792840004, + 0.027839014306664467, + -0.01981501840054989, + -0.058785825967788696, + -0.045095570385456085, + 0.03390739858150482, + -0.07633732259273529, + -0.014072390273213387, + 0.06875090301036835, + 0.0519772432744503, + -0.11417965590953827, + -0.047482315450906754, + -0.10446839779615402, + 0.013426232151687145, + -0.058724984526634216, + -0.05866976082324982, + -0.03818495199084282, + 0.10287020355463028, + -0.12353915721178055, + 0.0004633402277249843, + 0.07066870480775833, + -0.041153084486722946, + -0.049338508397340775, + 0.04174186289310455, + -0.04854658991098404, + 0.047719020396471024, + 0.05632588267326355, + -0.024437760934233665, + -0.08570587635040283, + -0.013520804233849049, + -0.05766533315181732, + -0.04016615077853203, + -0.042313653975725174, + 0.03308858349919319, + 0.010888115502893925, + -0.05480608344078064, + -0.040125008672475815, + -0.021666664630174637, + -0.10693929344415665, + 0.003502839244902134, + -0.018089549615979195, + -0.024014946073293686, + 0.028309229761362076, + 0.07426580041646957, + 0.10069504380226135, + -0.04819692671298981, + -0.011598414741456509, + 0.016051510348916054, + 0.056790757924318314, + -0.02523527853190899, + -0.07141256332397461, + -3.4761770370394535e-33, + 0.06670046597719193, + 0.06583573669195175, + -0.008014530874788761, + 0.09187854081392288, + 0.05225744843482971, + 0.05475505068898201, + -0.04235048219561577, + -0.016332736238837242, + -0.07063575088977814, + 0.02658616565167904, + 0.027418402954936028, + 0.0021603754721581936, + -0.03731267899274826, + -0.04666231572628021, + 0.024679172784090042, + -0.016969136893749237, + -0.028085656464099884, + -0.006214568391442299, + -0.08923006057739258, + -0.0398864783346653, + -0.1353466510772705, + 0.09476849436759949, + -0.07425005733966827, + -0.04391771927475929, + -0.0004194470529910177, + -0.0014135695528239012, + 0.047779325395822525, + -0.038932833820581436, + -0.07205380499362946, + 0.0183135736733675, + -0.035233233124017715, + -0.014123700559139252, + 0.0074253082275390625, + -0.009269041009247303, + -0.06388422101736069, + 0.0497208870947361, + 0.03793545439839363, + -0.05660964921116829, + 0.041824910789728165, + -0.007359713781625032, + -0.10255755484104156, + 0.014337345026433468, + 0.03848907724022865, + -0.010017318651080132, + 0.010031838901340961, + 0.11179087311029434, + -0.04377591609954834, + -0.029835877940058708, + -0.03545535355806351, + -0.002375907264649868, + -0.012145265936851501, + 0.03338145464658737, + 0.023693444207310677, + 0.008293054066598415, + -0.05468982830643654, + 0.0029626633040606976, + -0.030087783932685852, + 0.11912563443183899, + 0.08443672955036163, + 0.049102865159511566, + 0.0695023164153099, + -0.03495792672038078, + -0.012424478307366371, + 0.05283605679869652, + -0.05046387016773224, + 0.10349516570568085, + -0.0009054773254320025, + 0.03987325355410576, + 0.08565127849578857, + -0.006200332660228014, + 0.024102142080664635, + 0.08563622832298279, + -0.030841048806905746, + 0.011170975863933563, + -0.02239527367055416, + 0.006420403253287077, + 0.005238884594291449, + -0.0030846339650452137, + 0.06832491606473923, + -0.06509552896022797, + -0.11153113842010498, + -0.012104397639632225, + 0.05063658952713013, + 0.0691419318318367, + 0.0766446590423584, + -0.074429951608181, + 0.02979111485183239, + 0.07427484542131424, + -0.01732138730585575, + 0.029653532430529594, + -0.08172417432069778, + -0.040584828704595566, + 0.03563598915934563, + -0.07022038847208023, + 0.06388545036315918, + 5.471393557200032e-34, + 0.06498782336711884, + -0.005823126994073391, + -0.003191225463524461, + -0.09094621986150742, + -0.0495547354221344, + -0.005850434768944979, + -0.09894578158855438, + 0.013353024609386921, + -0.04545703902840614, + 0.02329174615442753, + 0.03997347503900528, + 0.06498261541128159, + -0.003565046237781644, + -8.234082633862272e-05, + 0.06798620522022247, + -0.033898428082466125, + -0.026095742359757423, + 0.04054759070277214, + -0.07152587175369263, + 0.02265908569097519, + 0.05241305008530617, + 0.056011296808719635, + -0.08800175786018372, + 0.0778786912560463, + 0.028857266530394554, + -0.05070951208472252, + -0.015337052755057812, + 0.06982624530792236, + 0.013374170288443565, + -0.023517705500125885, + -0.02360190451145172, + -0.04392758011817932, + 0.04699776694178581, + 0.03663918003439903, + -0.0374709889292717, + 0.03377985954284668, + -0.023144718259572983, + -0.10458973795175552, + 0.01818554848432541, + 0.06629391759634018, + -0.023559603840112686, + -0.012599706649780273, + -0.007060747127979994, + -0.015627752989530563, + -0.043175917118787766, + 0.00304377730935812, + 0.05934653431177139, + -0.0020356185268610716, + -0.01648748852312565, + 0.010636892169713974, + 0.010843013413250446, + -0.02229795791208744, + 0.034772634506225586, + 0.03756093978881836, + -0.05094039440155029, + 0.060768574476242065, + -0.005715610459446907, + 0.04479745775461197, + -0.0059379590675234795, + -0.00585327809676528, + 0.004817110951989889, + -0.0020221308805048466, + -0.10818523168563843, + -0.021930834278464317, + -0.032332539558410645, + -0.09889722615480423, + -0.05353698134422302, + -0.05716528743505478, + 0.03707488253712654, + -0.05051861330866814, + -0.027815088629722595, + 0.003474295139312744, + -0.06841718405485153, + 0.013088274747133255, + 0.04038266837596893, + -0.06813042610883713, + 0.010710975155234337, + 0.034024883061647415, + 0.009747560136020184, + -0.024243999272584915, + -0.057986509054899216, + -0.01344146765768528, + -0.020696599036455154, + 0.03918815776705742, + 0.09604841470718384, + 0.003088112687692046, + 0.024325085803866386, + 0.01454023364931345, + 0.0010331524536013603, + -0.05696713924407959, + -0.025569556280970573, + -0.04531285539269447, + 0.004267087671905756, + 0.00642635952681303, + -0.06017596647143364, + -1.6719313933322155e-08, + -0.11463072896003723, + 0.007043243385851383, + -0.0030339534860104322, + 0.038432084023952484, + 0.029160648584365845, + -0.05914943665266037, + -0.05016867816448212, + 0.03862260654568672, + -0.1052316203713417, + -0.003247424028813839, + -0.002325407462194562, + 0.054197121411561966, + -0.02123383618891239, + -0.042677704244852066, + 0.06075740605592728, + -0.011324248276650906, + 0.005091959144920111, + 0.04681987315416336, + -0.029040593653917313, + 0.07328778505325317, + -0.013965487480163574, + 0.08234034478664398, + 0.02911890111863613, + 0.09301866590976715, + 0.0036773134488612413, + -0.03682013228535652, + -0.02067527547478676, + -0.03015550598502159, + 0.04141058772802353, + 0.08786450326442719, + 0.053900256752967834, + 0.08508972823619843, + -0.014551708474755287, + 0.0886181890964508, + -0.10249146819114685, + -0.04111555591225624, + -0.04163389652967453, + 0.08853219449520111, + -0.015344814397394657, + 0.08225850760936737, + -0.030193304643034935, + -0.046395450830459595, + -0.007195136044174433, + 0.023802395910024643, + -0.06342228502035141, + 0.020297935232520103, + -0.0022005029022693634, + -0.004316485952585936, + 0.055631123483181, + -0.0697251558303833, + -0.029985496774315834, + 0.014855052344501019, + -0.021523158997297287, + -0.0013562418753281236, + -0.033007871359586716, + -0.008234540931880474, + -0.002808772958815098, + 0.09055139869451523, + -0.016799980774521828, + 0.017638757824897766, + 0.19437675178050995, + -0.052843235433101654, + 0.0782320648431778, + 0.05855628103017807 + ], + "trend-down-bold||graphs,graphing,charts,statistics,analyze,analysis,decrease,arrows": [ + -0.001772695453837514, + -0.0424233078956604, + -0.022727934643626213, + 0.015519147738814354, + 0.023927755653858185, + -0.020667072385549545, + -0.023982327431440353, + 0.05929484963417053, + -0.024593660607933998, + 0.02837764471769333, + 0.0017291214317083359, + 0.06912689656019211, + 0.07744836807250977, + 0.037794824689626694, + 0.0059210327453911304, + 0.04464089870452881, + -0.01358102634549141, + 0.0024051626678556204, + 0.027845460921525955, + -0.030476853251457214, + -0.035944707691669464, + -0.01908189430832863, + -0.028251802548766136, + 0.02328522503376007, + 0.06689062714576721, + -0.014322297647595406, + 0.0019630847964435816, + 0.010765725746750832, + 0.04399539530277252, + -0.03879491239786148, + -0.07789406925439835, + 0.02656526118516922, + 0.10799281299114227, + 0.0396735817193985, + -0.06392042338848114, + -0.045640550553798676, + 0.0363149531185627, + 0.03886919468641281, + 0.014391288161277771, + 0.12322012335062027, + -0.013903693296015263, + -0.030898243188858032, + 0.009951847605407238, + 0.016277294605970383, + 0.00046321068657562137, + -0.006652915384620428, + -0.12035493552684784, + -0.005195099860429764, + -0.025642329826951027, + 0.050321657210588455, + -0.08507075160741806, + -0.08497949689626694, + -0.1252039074897766, + 0.01215886976569891, + 0.04032253846526146, + 0.01566576212644577, + -0.06702223420143127, + -0.062249429523944855, + 0.0935392901301384, + -0.028846563771367073, + 0.0918847918510437, + -0.022621458396315575, + -0.018311770632863045, + 0.04970941320061684, + 0.04371217265725136, + 0.053132109344005585, + 0.01855728216469288, + 0.06384246051311493, + 0.01363181322813034, + 0.1103774830698967, + -0.016250599175691605, + -0.039136819541454315, + -0.049672335386276245, + -0.030467940494418144, + -0.016875406727194786, + 0.017681501805782318, + 0.014947778545320034, + 0.021736973896622658, + -0.03424062207341194, + -0.16097550094127655, + -0.037286244332790375, + -0.0277823768556118, + -0.06554063409566879, + 0.027542533352971077, + -0.03942495211958885, + 0.04307469353079796, + -0.04538631811738014, + -0.07705409079790115, + -0.030173342674970627, + -0.020655905827879906, + -0.046893831342458725, + 0.018305471166968346, + -0.04464906081557274, + 0.02470300905406475, + -0.06754542887210846, + 0.059896208345890045, + 0.020031364634633064, + -0.09057053178548813, + 0.028511762619018555, + 0.10429596900939941, + 0.021218005567789078, + -0.03237588703632355, + 0.04651200771331787, + -0.007264134474098682, + -0.056262705475091934, + -0.07710936665534973, + 0.026764631271362305, + -9.151173435384408e-05, + 0.03289151191711426, + 0.02640293911099434, + -0.03912515193223953, + 0.014423547312617302, + -0.053929489105939865, + -0.038301799446344376, + 0.011553204618394375, + -0.08159533888101578, + -0.02235635556280613, + -0.017086440697312355, + 0.04916936904191971, + 0.07702688872814178, + 0.024215057492256165, + 0.03478476032614708, + -0.030363798141479492, + -0.028555914759635925, + -0.0060551585629582405, + 0.057073917239904404, + -0.06677062809467316, + -2.5509863921385174e-33, + 0.08192910254001617, + -0.03869573399424553, + -0.012719444930553436, + 0.04644246771931648, + 0.016622891649603844, + 0.022328948602080345, + -0.15101400017738342, + -0.09635286778211594, + -0.04382217675447464, + 0.07340069115161896, + 0.05107615143060684, + 0.14649294316768646, + -0.03435683995485306, + 0.08896932005882263, + 0.1154581606388092, + -0.07239075005054474, + 0.06599930673837662, + 0.011341664008796215, + -0.03645520657300949, + -0.07068637758493423, + -0.056485626846551895, + 0.0019437221344560385, + 0.004043243825435638, + 0.01176153589040041, + 0.03342774510383606, + 0.03708701580762863, + 0.020507173612713814, + -0.02258163131773472, + -0.08751250058412552, + 0.006843851413577795, + 0.020415814593434334, + 0.05096818134188652, + -0.007956328801810741, + -0.032840125262737274, + -0.019472423940896988, + -0.035436224192380905, + -0.09199208766222, + -0.015301722101867199, + 0.012574850581586361, + -0.01886623539030552, + -0.10437331348657608, + -0.03451361507177353, + -0.06337685883045197, + -0.0219154953956604, + 0.02542342059314251, + 0.12145651131868362, + 0.002899871440604329, + -0.047763098031282425, + 0.0562952384352684, + 0.019308410584926605, + -0.05529366433620453, + -0.03314992040395737, + 0.03382982313632965, + 0.017600860446691513, + 0.008385353721678257, + 0.040013741701841354, + 0.01098600309342146, + 0.024157844483852386, + -0.013881830498576164, + 0.006099469494074583, + 0.0031773399095982313, + -0.0007302239537239075, + 0.060643650591373444, + -0.07482787221670151, + -0.054364144802093506, + 0.06639458239078522, + -0.07877449691295624, + 0.026572460308670998, + 0.015357478521764278, + 0.05859586223959923, + -0.027320528402924538, + 0.07942347228527069, + -0.023053286597132683, + 0.008740212768316269, + 0.06082669645547867, + 0.021915048360824585, + -0.022488320246338844, + -0.025296805426478386, + -0.006326391827315092, + -0.05522327497601509, + -0.14513805508613586, + -0.07856623828411102, + -0.02112148515880108, + -0.026220981031656265, + 0.023211412131786346, + -0.010048755444586277, + 0.02695382386445999, + -0.030249476432800293, + 0.017822066321969032, + 0.012043306604027748, + -0.15082915127277374, + 0.028435654938220978, + -0.0020613379310816526, + 0.016429336741566658, + -0.042161740362644196, + 4.783787046140018e-35, + -0.08092649281024933, + 0.08820180594921112, + -0.03667280822992325, + 0.0947391614317894, + 0.0006471636006608605, + 0.04768499732017517, + 0.01802380383014679, + 0.04102208465337753, + 0.06590530276298523, + 0.06429746001958847, + 0.07075581699609756, + -0.03614150360226631, + -0.09074268490076065, + -0.035365622490644455, + -0.006544048897922039, + -0.014104032889008522, + 0.018640907481312752, + -0.022510426118969917, + -0.060136545449495316, + -0.0044436524622142315, + -0.07131852209568024, + 0.03552394360303879, + -0.12475422769784927, + -0.010038933716714382, + 0.03616106137633324, + 0.060296256095170975, + -0.0359218530356884, + 0.015195658430457115, + -0.05085458979010582, + -0.03315724804997444, + -0.09003113955259323, + -0.013295128010213375, + 0.052362874150276184, + 0.0005629340885207057, + -0.07715511322021484, + 0.057815633714199066, + 0.07367730885744095, + -0.057565588504076004, + -0.023903097957372665, + 0.005825215484946966, + 0.027842428535223007, + 0.04590766131877899, + 0.0678410530090332, + -0.01001011673361063, + -0.03949987143278122, + 0.03860858827829361, + -0.052264388650655746, + 0.021112410351634026, + -0.0320015586912632, + 0.05991731211543083, + 0.027948886156082153, + 0.027453063055872917, + 0.018810831010341644, + 0.012695194222033024, + -0.0838683620095253, + -0.056266460567712784, + 0.07209014147520065, + 0.044519394636154175, + -0.1346823126077652, + 0.06528604030609131, + -0.046581871807575226, + -0.00026241058367304504, + -0.04737864434719086, + 0.005858696065843105, + -0.04794813320040703, + -0.06963469833135605, + 0.03016912378370762, + -0.1143752709031105, + -0.01625305972993374, + 0.025717318058013916, + 0.06117115914821625, + 0.028614355251193047, + -0.004666301421821117, + -0.03064400516450405, + 0.03035280667245388, + -0.09329573065042496, + 0.012529953382909298, + 0.04412270337343216, + 0.005990785546600819, + -0.019802629947662354, + -0.0025039436295628548, + 0.008125457912683487, + -0.008670386858284473, + 0.0817214697599411, + -0.03596435859799385, + 0.04536028951406479, + -0.0821000337600708, + 0.04342573881149292, + 0.05147803574800491, + 0.011113079264760017, + -0.04490518197417259, + -0.04437083378434181, + -0.06595447659492493, + 0.009922242723405361, + 0.0038664420135319233, + -2.1775667491397144e-08, + -0.0481991320848465, + 0.011297499760985374, + 0.02604563720524311, + -0.027893565595149994, + 0.09900780767202377, + 0.023635707795619965, + 0.02167331986129284, + 0.04972156509757042, + -0.006373549811542034, + -0.023367995396256447, + 0.0960482805967331, + 0.02030818723142147, + -0.09132572263479233, + -0.01681237481534481, + 0.020374352112412453, + -0.0027516314294189215, + -0.032160211354494095, + 0.04055974259972572, + 0.0005516607780009508, + -0.08658898621797562, + -0.04434071481227875, + 0.04331132397055626, + 0.023159807547926903, + 0.030036848038434982, + 0.07855940610170364, + -0.034459080547094345, + -0.009695331566035748, + 0.09551443159580231, + -0.0008076351368799806, + 0.03084850311279297, + 0.022544167935848236, + 0.028703711926937103, + 0.027151552960276604, + -0.031131191179156303, + -0.02821565605700016, + 0.04087948054075241, + -0.019640563055872917, + 0.040519461035728455, + 0.0008130994974635541, + 0.11238522827625275, + -0.0649694874882698, + 0.03131946176290512, + -0.018522050231695175, + 0.005300479009747505, + -0.01323414221405983, + 0.04223940148949623, + 0.028871197253465652, + 0.028704635798931122, + 0.014925847761332989, + -0.11937757581472397, + -0.039698004722595215, + -0.04484448581933975, + 0.04670692980289459, + 0.05745074152946472, + -0.0016340740257874131, + 0.021504860371351242, + 0.007788193877786398, + 0.06322499364614487, + -0.04945754632353783, + 0.02651309035718441, + 0.08123724907636642, + -0.03078911080956459, + -0.006544265430420637, + -0.009983593598008156 + ], + "trend-up-bold||graphs,graphing,charts,statistics,analyze,analysis,increase,arrows": [ + -0.029818333685398102, + -0.056208349764347076, + -0.043650589883327484, + 0.010770502500236034, + 0.03753480315208435, + -0.01407508086413145, + -0.03510972484946251, + 0.043160971254110336, + -0.029792308807373047, + 0.03370373323559761, + 0.013991079293191433, + 0.08089930564165115, + 0.05905584245920181, + 0.013708294369280338, + 0.023279795423150063, + 0.060030121356248856, + -0.020696429535746574, + 0.0026499636005610228, + 0.02369050495326519, + -0.038426633924245834, + -0.03556201606988907, + -0.03063473105430603, + 0.007139330729842186, + 0.030414508655667305, + 0.0695800706744194, + 0.001382514019496739, + 0.01852070912718773, + 0.013263793662190437, + 0.03317846357822418, + -0.023845653980970383, + -0.0641605481505394, + 0.027577774599194527, + 0.10467827320098877, + 0.01965627260506153, + -0.0300879068672657, + -0.039387453347444534, + 0.04731435328722, + 0.04710860922932625, + -0.007398416753858328, + 0.1191563829779625, + -0.025682616978883743, + -0.06681578606367111, + 0.014835418201982975, + -0.0010538531932979822, + 0.01438280288130045, + -0.01500510610640049, + -0.12187348306179047, + 0.012754052877426147, + 0.010375437326729298, + 0.029843326658010483, + -0.09936636686325073, + -0.11727103590965271, + -0.12418340146541595, + 0.008814841508865356, + 0.031197505071759224, + 0.015670504420995712, + -0.08144748955965042, + -0.06354138255119324, + 0.10448808968067169, + -0.04956071078777313, + 0.06081407517194748, + 0.0010951475705951452, + 0.025373980402946472, + 0.0753454640507698, + 0.061668943613767624, + 0.03347395360469818, + 0.011540246196091175, + 0.08945702761411667, + 0.0223592147231102, + 0.10302625596523285, + -0.009690193459391594, + -0.01997576467692852, + -0.054738909006118774, + -0.03964463248848915, + 0.0027593737468123436, + 0.01571629010140896, + -0.0009908122010529041, + 0.009989511221647263, + -0.001082204282283783, + -0.15602342784404755, + -0.06329213827848434, + -0.05195716768503189, + -0.06213090196251869, + 0.014352135360240936, + -0.03377453610301018, + 0.043876763433218, + -0.05213586986064911, + -0.073882557451725, + -0.037354059517383575, + -0.0012892386876046658, + -0.05648253113031387, + 0.021109119057655334, + -0.05060141161084175, + 0.019048048183321953, + -0.06320510804653168, + 0.07233031839132309, + 0.0007294510724022985, + -0.0974918007850647, + 0.03212781995534897, + 0.08697741478681564, + 0.03363972529768944, + -0.038154326379299164, + 0.04654763638973236, + 0.021411729976534843, + -0.06043841689825058, + -0.05638851970434189, + 0.025357654318213463, + 0.026946447789669037, + 0.034885600209236145, + 0.02571455016732216, + -0.03438439220190048, + 0.0035044075921177864, + -0.06226511672139168, + -0.037776075303554535, + 0.009783991612493992, + -0.06983746588230133, + -0.035450078547000885, + -0.02064451575279236, + 0.04603195935487747, + 0.07370568811893463, + 0.044136010110378265, + 0.014368685893714428, + -0.0432700477540493, + -0.01695171743631363, + -0.020981237292289734, + 0.06091567501425743, + -0.04368266463279724, + -2.745387076483615e-33, + 0.08104310184717178, + -0.01506530400365591, + -0.009998733177781105, + 0.0582868717610836, + 0.006064858753234148, + 0.020848751068115234, + -0.1429494172334671, + -0.08832857757806778, + -0.036674629896879196, + 0.07610581815242767, + 0.03426267206668854, + 0.17420579493045807, + -0.028971729800105095, + 0.08732246607542038, + 0.11369384080171585, + -0.07556494325399399, + 0.0591370053589344, + 0.02794734574854374, + -0.03596068173646927, + -0.06829653680324554, + -0.03665750101208687, + -0.02211281657218933, + 0.024539252743124962, + 0.012907607480883598, + 0.019243158400058746, + 0.019776562228798866, + 0.019890042021870613, + -0.009959639981389046, + -0.09229465574026108, + 0.00347905489616096, + 0.048727042973041534, + 0.05677415803074837, + -0.014627776108682156, + -0.018620671704411507, + -0.03056706115603447, + -0.028430422767996788, + -0.06802095472812653, + -0.04123546555638313, + 0.017053289338946342, + 0.00045796946506015956, + -0.09958945214748383, + -0.035190753638744354, + -0.04173219949007034, + -0.022022366523742676, + 0.019277092069387436, + 0.14137496054172516, + -0.03624829649925232, + -0.04392557963728905, + 0.07677576690912247, + 0.029143886640667915, + -0.05898413807153702, + -0.027634263038635254, + 0.040817491710186005, + 0.0014102977002039552, + -0.008724475279450417, + 0.04019881784915924, + 0.018676191568374634, + 0.027387546375393867, + 0.004568456206470728, + -0.0024834589567035437, + -0.00953163392841816, + 0.004096444230526686, + 0.06293623149394989, + -0.05854032561182976, + -0.0713345929980278, + 0.07078130543231964, + -0.06314419209957123, + 0.03177047148346901, + 0.0273895226418972, + 0.0556001253426075, + -0.03709316626191139, + 0.07734441757202148, + -0.04172927141189575, + 0.04048444330692291, + 0.05621238797903061, + 0.00020859889627899975, + -0.043120309710502625, + -0.03188299015164375, + -0.0300114918500185, + -0.024982307106256485, + -0.12544023990631104, + -0.08557629585266113, + -0.023652831092476845, + -0.028372256085276604, + 0.024174420163035393, + -0.007647440768778324, + -0.0031511117704212666, + -0.026984326541423798, + 0.016022052615880966, + 0.017449529841542244, + -0.1285397708415985, + 0.04321146756410599, + 0.014983389526605606, + 0.018366698175668716, + -0.047812364995479584, + -1.5147916403361175e-35, + -0.05470028519630432, + 0.0891394093632698, + -0.028109317645430565, + 0.06973132491111755, + 0.02572540007531643, + 0.06152503937482834, + 0.008451518602669239, + 0.03178062289953232, + 0.08156419545412064, + 0.03510783240199089, + 0.037153925746679306, + -0.020997852087020874, + -0.07992173731327057, + -0.0500398650765419, + -0.014827183447778225, + -0.017351113259792328, + 0.011194480583071709, + -0.003270466811954975, + -0.07087904959917068, + 0.006050629075616598, + -0.07684830576181412, + 0.006939108483493328, + -0.12225990742444992, + -0.01659630797803402, + 0.03089779056608677, + 0.06036560609936714, + -0.056374672800302505, + 0.00675016175955534, + -0.052439864724874496, + -0.0181121863424778, + -0.0780840590596199, + -0.01710871234536171, + 0.049291085451841354, + 0.0106220543384552, + -0.06947939842939377, + 0.055122993886470795, + 0.09953057020902634, + -0.08952725678682327, + 0.0013566019479185343, + 0.03272201865911484, + 0.037493787705898285, + 0.024241885170340538, + 0.04536112770438194, + 0.00664305966347456, + -0.041085418313741684, + 0.025434473529458046, + -0.039113763719797134, + 0.026931224390864372, + -0.065237857401371, + 0.07023988664150238, + 0.025186294689774513, + 0.04352252930402756, + 0.01138751208782196, + -0.013327914290130138, + -0.06251443922519684, + -0.04850279539823532, + 0.05138464644551277, + 0.053395867347717285, + -0.11400339752435684, + 0.04067818820476532, + -0.03347441554069519, + 0.025043662637472153, + -0.05855463445186615, + -0.004882717505097389, + -0.05777342617511749, + -0.07075361162424088, + 0.04701835662126541, + -0.13751958310604095, + -0.02884487248957157, + 0.026696715503931046, + 0.05928109586238861, + 0.019039202481508255, + -0.01953485980629921, + -0.01748574711382389, + 0.009949895553290844, + -0.08281518518924713, + 0.026841871440410614, + 0.02996818721294403, + 0.013821099884808064, + -0.033449649810791016, + -0.02083887904882431, + 0.008265175856649876, + 0.005385925993323326, + 0.09980351477861404, + -0.04681511968374252, + 0.05620425194501877, + -0.048708412796258926, + 0.03699373081326485, + 0.052793290466070175, + -0.011286540888249874, + -0.036582887172698975, + -0.04812348261475563, + -0.09040556848049164, + 0.025382960215210915, + 0.0020832514856010675, + -2.1678136619129873e-08, + -0.046870630234479904, + 0.010546868667006493, + 0.0031145953107625246, + -0.023924602195620537, + 0.11467757076025009, + -0.0022178359795361757, + 0.023176230490207672, + 0.04868873953819275, + -0.01683708280324936, + -0.04633929207921028, + 0.0907425805926323, + 0.03279389068484306, + -0.08002985268831253, + -0.02209911309182644, + 0.024694055318832397, + -0.0069842212833464146, + -0.03604276105761528, + 0.05399381369352341, + -0.0193080622702837, + -0.08579777181148529, + -0.047121185809373856, + 0.06573213636875153, + 0.03799934685230255, + 0.01279403269290924, + 0.07932679355144501, + -0.031208835542201996, + -0.030971584841609, + 0.06629978120326996, + 0.0069266390055418015, + 0.03087073378264904, + 0.019750595092773438, + -0.00011513496428960934, + 0.015636006370186806, + -0.02643197402358055, + -0.012884181924164295, + 0.04959283024072647, + -0.021363887935876846, + 0.03941977024078369, + -0.01744920201599598, + 0.0950002372264862, + -0.05165383592247963, + 0.04315340518951416, + 0.00596535112708807, + 0.0033855426590889692, + -0.0218744445592165, + 0.0433090440928936, + 0.009702102281153202, + 0.020581332966685295, + -0.02202436327934265, + -0.11479322612285614, + -0.04951775446534157, + -0.057369623333215714, + 0.039958517998456955, + 0.0457652248442173, + 0.0028594511095434427, + 0.018874194473028183, + 0.0023033046163618565, + 0.06184668466448784, + -0.03207343816757202, + 0.02540658973157406, + 0.09929715842008591, + -0.037267204374074936, + -0.008013899438083172, + -0.004747598897665739 + ], + "triangle-bold||3,shapes,polygons": [ + 0.04887355864048004, + 0.027223505079746246, + -0.06714452803134918, + 0.030646780505776405, + -0.01329035498201847, + -0.047996636480093, + 0.013694253750145435, + -0.06706110388040543, + 0.007668137084692717, + -0.026132749393582344, + -0.02304927445948124, + -0.061612799763679504, + 0.015068226493895054, + -0.013433819636702538, + 0.08042336255311966, + 0.009229003451764584, + 0.008245423436164856, + 0.00623544305562973, + 0.0008356301113963127, + 0.012142154388129711, + 0.0009401021525263786, + -0.020785758271813393, + 0.03046252205967903, + 0.06195804104208946, + 0.01528945006430149, + 0.03401888161897659, + 0.10469748824834824, + -0.04252198711037636, + -0.004687293898314238, + -0.07044461369514465, + -0.04775160178542137, + -0.022914065048098564, + 0.08586174249649048, + -0.02702183462679386, + -0.013748137280344963, + -0.05489511042833328, + -0.07468108087778091, + 0.024712026119232178, + 0.036744922399520874, + 0.12176523357629776, + -0.029232248663902283, + -0.019056981429457664, + 0.08445830643177032, + 0.02763264812529087, + -0.08871783316135406, + 0.03281940147280693, + -0.11867836862802505, + 0.03810065984725952, + 0.044418174773454666, + -0.07673568278551102, + -0.004370217211544514, + -0.14482934772968292, + -0.13549001514911652, + -0.014493359252810478, + 0.010885885916650295, + -0.03411861136555672, + -0.06507164239883423, + -0.02034907042980194, + 0.05020980164408684, + -0.06106531247496605, + 0.05987372621893883, + 0.036826033145189285, + 0.0598321408033371, + 0.02639026753604412, + 0.020923124626278877, + 0.08967740833759308, + 0.016948675736784935, + -0.02126026526093483, + -0.05005958303809166, + 0.02690212056040764, + 0.02013177052140236, + 0.08121289312839508, + -0.06174509972333908, + -0.09358017891645432, + -0.030728191137313843, + -0.03504730761051178, + 0.04389309138059616, + 0.03486395254731178, + -0.03905084729194641, + -0.09306076914072037, + -0.11910629272460938, + -0.014945943839848042, + -0.010586562566459179, + 0.012984066270291805, + 0.0006039062864147127, + 0.10763194411993027, + -0.1184692308306694, + -0.08742798119783401, + -0.043076321482658386, + 0.008449234999716282, + -0.003464924870058894, + 0.09808146953582764, + -0.02037663944065571, + 0.052149612456560135, + -0.06553470343351364, + 0.02629043161869049, + 0.07469632476568222, + 0.0114746680483222, + -0.015772486105561256, + 0.0706622302532196, + 0.11090575903654099, + 0.04492204263806343, + 0.025046447291970253, + -0.05031365901231766, + -0.0338505282998085, + 0.04869331419467926, + 0.01793014630675316, + -0.00815375242382288, + 0.015554151497781277, + 0.10278143733739853, + -0.021146204322576523, + -0.06357739865779877, + 0.009658501483500004, + -0.08641146868467331, + -0.11138256639242172, + -0.010397161357104778, + -0.04139566794037819, + -0.03856869041919708, + 0.0947258323431015, + 0.03334255516529083, + 0.013962135650217533, + -0.010437247343361378, + 0.002196883549913764, + -0.005437064450234175, + 0.0542101114988327, + 0.033367183059453964, + 0.001667420961894095, + -2.426440928958973e-33, + 0.03382429853081703, + -0.026414362713694572, + -0.026529520750045776, + 0.10472270846366882, + 0.03947225958108902, + -0.018055954948067665, + 0.0024575144052505493, + -0.11115536093711853, + -0.03666665032505989, + 0.04325180500745773, + -0.0761047750711441, + 0.039736706763505936, + 0.008960803039371967, + 0.008353344164788723, + 0.09102443605661392, + -0.03552022948861122, + -0.0015134979039430618, + -0.02250005677342415, + -0.1264520287513733, + 0.004083484411239624, + 0.03656097501516342, + 0.0052560013718903065, + -0.048583246767520905, + -0.045654263347387314, + -0.06571473181247711, + -0.017422599717974663, + 0.02005877159535885, + 0.052702125161886215, + -0.043087322264909744, + 0.033603932708501816, + 0.02780327759683132, + -0.008324184454977512, + -0.009597686119377613, + 0.013689613901078701, + -0.04577958211302757, + 0.010189894586801529, + -0.03984920680522919, + -0.013486918993294239, + 0.04430471360683441, + 0.0021254296880215406, + 0.011723589152097702, + -0.021563682705163956, + 0.039720624685287476, + -0.012756670825183392, + 0.052187658846378326, + 0.15259552001953125, + 0.0053803883492946625, + -0.07232089340686798, + -0.03400469198822975, + -0.0004201334959361702, + 0.03588750213384628, + -0.012739991769194603, + 0.011126135475933552, + 0.04079173132777214, + -0.01831655018031597, + -0.04190145432949066, + -0.05309455841779709, + 0.06662402302026749, + -0.021334372460842133, + 0.055882472544908524, + 0.026676852256059647, + 0.04696793481707573, + 0.04019959643483162, + -0.010454921051859856, + -0.10679485648870468, + 0.02339339815080166, + -0.062060579657554626, + 0.0718618631362915, + 0.091026172041893, + -0.045780714601278305, + 0.03694259375333786, + 0.029220962896943092, + 0.02444891259074211, + 0.010394837707281113, + -0.02759053185582161, + 0.047790080308914185, + -0.04708937555551529, + 0.026001187041401863, + 0.012331054545938969, + -0.025121932849287987, + -0.03629535064101219, + -0.0495312437415123, + -0.007922152057290077, + 0.005670954938977957, + 0.014240490272641182, + 0.0050320252776145935, + 0.028097067028284073, + -0.07507339119911194, + -0.019804038107395172, + 0.06583057343959808, + -0.10008945316076279, + -0.007853219285607338, + 0.043198395520448685, + 0.007136065512895584, + -0.03915327042341232, + 1.3726714747638555e-34, + -0.05515666306018829, + 0.01762453466653824, + -0.033889289945364, + -0.0943271741271019, + -0.03332938253879547, + 0.0264334287494421, + 0.023432690650224686, + -0.0056379796005785465, + -0.11928294599056244, + -0.007159006781876087, + -0.012705354951322079, + -0.006842763628810644, + -0.03756256029009819, + -0.11139188706874847, + -0.022328127175569534, + -0.02208803780376911, + 0.011629899963736534, + -0.008155722171068192, + -0.08910155296325684, + -0.013784967362880707, + -0.024481654167175293, + -0.06681957095861435, + -0.08242356777191162, + 0.03466897830367088, + -0.04416600614786148, + 0.07940343022346497, + -0.0506875179708004, + -0.030554870143532753, + -0.025083230808377266, + 0.007479291874915361, + -0.026103321462869644, + -0.05360199138522148, + 0.05322197824716568, + 0.05262763425707817, + -0.07459194958209991, + -0.04619552567601204, + 0.02919500693678856, + -0.05753377079963684, + 0.0861956849694252, + -0.0023117298260331154, + 0.01750589907169342, + -0.0054623219184577465, + 0.005229048430919647, + 0.10338183492422104, + -0.031693749129772186, + 0.08935724943876266, + 0.03170061111450195, + -0.0838993489742279, + -0.046089984476566315, + 0.02788715809583664, + -0.04675650596618652, + -0.059660229831933975, + 0.07710057497024536, + 0.03834529593586922, + 0.03934694081544876, + -0.02217862196266651, + -0.0010321399895474315, + 0.02028736285865307, + 0.007234275806695223, + 0.08554881811141968, + -0.04266366362571716, + 0.0574631504714489, + 0.009845794178545475, + 0.07683608680963516, + 0.07261651754379272, + 0.011152072809636593, + 0.06692188233137131, + -0.04956265911459923, + 0.03175482898950577, + 0.04941859096288681, + 0.07012032717466354, + 0.06059776246547699, + -0.04872766509652138, + 0.02549058012664318, + 0.0017642541788518429, + -0.02595295011997223, + 0.007665536366403103, + 0.04384366795420647, + -0.06865301728248596, + 0.06686601787805557, + -0.04116259515285492, + -0.06364799290895462, + 0.007448369637131691, + 0.06353139877319336, + -0.01852268911898136, + -0.021137408912181854, + 0.05162582919001579, + -0.010291501879692078, + -0.003753169672563672, + 0.0156690813601017, + -0.05382971465587616, + 0.07618635147809982, + 0.021925805136561394, + 0.005314210895448923, + 0.06925496459007263, + -1.7209105251936307e-08, + 0.014960390515625477, + -0.03910350427031517, + -0.05544102191925049, + -0.044392071664333344, + 0.015691855922341347, + -0.016602400690317154, + -0.033965691924095154, + -0.04189552739262581, + -0.10857103019952774, + 0.021225081756711006, + 0.006044325884431601, + 0.006953903008252382, + -0.0780637189745903, + 0.013393818400800228, + 0.01398672629147768, + -0.013173422776162624, + 0.023916862905025482, + 0.025887100026011467, + 0.0013689990155398846, + -0.0859394371509552, + -0.008238284848630428, + 0.03337298706173897, + 0.04263802990317345, + 0.01921936124563217, + 0.044019103050231934, + 0.0332409143447876, + -0.025622552260756493, + 0.017948973923921585, + 0.11794568598270416, + 0.07743038982152939, + -0.014759758487343788, + 0.023927923291921616, + 0.06105302274227142, + 0.017389768734574318, + -0.05739615485072136, + -0.042406920343637466, + -0.051813092082738876, + -0.02141331508755684, + -0.038285523653030396, + 0.09184829145669937, + -0.018436353653669357, + -0.009218859486281872, + 0.022531699389219284, + -0.07204923778772354, + 0.01933717355132103, + 0.021183233708143234, + 0.01892188936471939, + 0.024979950860142708, + -0.04369465634226799, + -0.05286882817745209, + -0.06188846006989479, + 0.01819201186299324, + 0.031452253460884094, + 0.11958102136850357, + -0.04657777398824692, + -0.08694425970315933, + -0.01186073012650013, + 0.07791415601968765, + 0.007216821890324354, + 0.0405857115983963, + 0.12833204865455627, + -0.015901004895567894, + 0.021742701530456543, + -0.01664111576974392 + ], + "triangle-dashed-bold||*new*,3,shapes,polygons,missing": [ + -0.008535599336028099, + -0.014227423816919327, + 0.015664882957935333, + 0.029793696478009224, + 0.008788155391812325, + -0.058745115995407104, + -0.02463662065565586, + -0.10374826937913895, + -0.007395997643470764, + -0.0026834607124328613, + 0.03318352252244949, + -0.029271060600876808, + -0.021602969616651535, + -0.052610184997320175, + 0.09830554574728012, + 0.03775682672858238, + -0.02276269905269146, + -0.08423074334859848, + -0.00808127224445343, + 0.003921928815543652, + -0.07638479024171829, + -0.05398915335536003, + -0.040091488510370255, + 0.06010562926530838, + 0.053091779351234436, + 0.07103005796670914, + 0.07392549514770508, + -0.05009465664625168, + -0.03268595039844513, + -0.0738738477230072, + -0.05370710790157318, + 0.027225112542510033, + 0.0797673761844635, + -0.05420030280947685, + 0.0540534183382988, + -0.04734482243657112, + -0.018751930445432663, + 0.04382077232003212, + 0.02385731041431427, + 0.05287492275238037, + -0.019839052110910416, + -0.02010526694357395, + 0.02239161543548107, + 0.030540112406015396, + -0.08399607986211777, + 0.0061623635701835155, + -0.06995683908462524, + -0.01283557340502739, + 0.09026860445737839, + -0.04647577926516533, + -0.023795034736394882, + -0.10518933087587357, + -0.10122305899858475, + -0.03345326706767082, + 0.019733892753720284, + 0.039093080908060074, + -0.03554404154419899, + 0.013207758776843548, + 0.05288611724972725, + -0.06145773455500603, + 0.06158412992954254, + 0.03287127986550331, + 0.042525529861450195, + 0.019739408046007156, + 0.0017210579244419932, + 0.024953491985797882, + -0.06301487982273102, + -0.06212026625871658, + -0.04982238635420799, + 0.10482040047645569, + 0.00974343903362751, + 0.08763464540243149, + -0.08559399843215942, + -0.0455886647105217, + -0.005688023287802935, + -0.041941650211811066, + 0.02734806016087532, + 0.04576346278190613, + -0.020158013328909874, + -0.0827510878443718, + -0.09227801114320755, + -0.007139937952160835, + -0.04106386750936508, + 0.017381802201271057, + 0.04569053277373314, + 0.13203395903110504, + -0.10600595921278, + -0.11814054101705551, + -0.06319194287061691, + -0.01914445124566555, + -0.005495074205100536, + 0.0173203032463789, + -0.044040337204933167, + 0.0633944720029831, + -0.07590559124946594, + -0.021691111847758293, + 0.12064837664365768, + 0.047404590994119644, + 0.006857803091406822, + 0.1038394570350647, + 0.06577454507350922, + 0.012456814758479595, + 0.06586064398288727, + 0.005612588953226805, + -0.07356053590774536, + 0.0527377612888813, + -0.03756996989250183, + 0.020989391952753067, + 0.014457687735557556, + 0.09575125575065613, + -0.006123172119259834, + -0.04288526996970177, + 0.04674551263451576, + -0.08322121948003769, + -0.11319107562303543, + 0.010512576438486576, + -0.12282302230596542, + -0.09242706000804901, + 0.09963876754045486, + 0.0903170183300972, + 0.05313986912369728, + -0.020172161981463432, + -0.010371685028076172, + -0.011337355710566044, + 0.01715778559446335, + 0.006197869777679443, + -0.041004449129104614, + -2.718316176268147e-33, + 0.02564883790910244, + 0.009209811687469482, + -0.0020976581145077944, + 0.08150666207075119, + 0.013134465552866459, + 0.029655251652002335, + 0.01858871802687645, + -0.07661677896976471, + -0.03156129643321037, + 0.01257369015365839, + -0.04525134339928627, + 0.04137342795729637, + 0.024252641946077347, + 0.04094221442937851, + -0.0035638571716845036, + -0.01607837714254856, + 0.0684782862663269, + -0.06276171654462814, + -0.10512908548116684, + 5.5806645832490176e-05, + 0.016861017793416977, + 0.06062500923871994, + -0.07358293980360031, + -0.06694814562797546, + -0.10300008952617645, + 0.02912028692662716, + 0.04616430401802063, + -0.001319156144745648, + -0.044699642807245255, + 0.05793427675962448, + -0.01002200786024332, + 0.0021262012887746096, + 0.07801312208175659, + -0.011869270354509354, + -0.0525059849023819, + 0.049242693930864334, + -0.02179141156375408, + -0.062289923429489136, + 0.0035351645201444626, + -0.02453172765672207, + 0.037283383309841156, + -0.027089353650808334, + -0.006480063311755657, + 0.03538554161787033, + 0.05752501264214516, + 0.11284417659044266, + 0.04466494917869568, + -0.05451136454939842, + -0.05004864186048508, + 0.008996332995593548, + -0.05755750089883804, + 0.026244914159178734, + 0.03889117017388344, + 0.02522381581366062, + -0.0305632334202528, + -0.06251664459705353, + -0.06372831016778946, + 0.04517892375588417, + -0.019088277593255043, + -2.861779648810625e-05, + 0.09375306963920593, + 0.10077635943889618, + 0.005819121841341257, + -0.005439235363155603, + -0.062480974942445755, + 0.039885904639959335, + -0.057132553309202194, + 0.1037047952413559, + 0.05212538689374924, + -0.030505340546369553, + 0.03535381704568863, + 0.02976241707801819, + 0.026480089873075485, + 0.09650931507349014, + 0.0350678488612175, + -0.0021088465582579374, + -0.00654618302360177, + 0.015951864421367645, + 0.02478286437690258, + -0.09150931984186172, + -0.024171853438019753, + -0.025652794167399406, + -0.007883950136601925, + -0.011439860798418522, + 0.004152811598032713, + -0.05432931333780289, + 0.06667938828468323, + -0.05489513650536537, + -0.07239038497209549, + 0.07565776258707047, + -0.07104696333408356, + -0.00923890620470047, + -0.037175826728343964, + 0.023779014125466347, + -0.05393759906291962, + -6.930690815219206e-34, + -0.044593967497348785, + 0.0569792203605175, + -0.057541221380233765, + -0.10449588298797607, + -0.08440724015235901, + 0.05104074999690056, + 0.07390735298395157, + -0.0434645414352417, + -0.05953127518296242, + -0.008340624161064625, + 0.007593702990561724, + 0.026304438710212708, + 0.0031311209313571453, + -0.06419242918491364, + 0.01785990782082081, + 0.03266986459493637, + -0.00949570070952177, + -0.031776607036590576, + -0.09123367071151733, + -0.004671771544963121, + -0.0497073233127594, + -0.02545168437063694, + -0.04331705719232559, + 0.04057376831769943, + -0.02540021575987339, + 0.031053002923727036, + 0.04734766483306885, + -0.02834327332675457, + -0.03496536239981651, + 0.004931775853037834, + -0.05876301974058151, + -0.06104997545480728, + -0.006185411009937525, + 0.08927075564861298, + -0.05828753113746643, + -0.029297854751348495, + 0.012251573614776134, + -0.061439745128154755, + 0.04894286394119263, + -0.030027059838175774, + -0.015049879439175129, + -0.06266064196825027, + 0.03783652186393738, + 0.08283400535583496, + -0.017927734181284904, + 0.067036934196949, + 0.03656288981437683, + -0.015241766348481178, + -0.03876136988401413, + 0.031505100429058075, + 0.02237064018845558, + -0.09156899899244308, + 0.09444493055343628, + -0.0006200289353728294, + 0.035731419920921326, + 0.005930143874138594, + 0.017184698954224586, + 0.03064340353012085, + 0.005520457401871681, + 0.09446389228105545, + -0.06438124924898148, + 0.0810599997639656, + -0.02102578990161419, + 0.045136768370866776, + 0.04742048680782318, + -0.016032259911298752, + 0.036390915513038635, + -0.0649334266781807, + 0.04401005432009697, + -0.00599236786365509, + -0.0015821539564058185, + 0.08805849403142929, + -0.08026646822690964, + -0.021675145253539085, + 0.01587744988501072, + 0.0215031486004591, + -0.012730876915156841, + 0.044553354382514954, + -0.06301495432853699, + 0.08202573657035828, + -0.03292127326130867, + -0.0654701367020607, + 0.016068752855062485, + 0.05079269036650658, + 0.01512551587074995, + -0.009050780907273293, + -0.027488091960549355, + 0.032282184809446335, + -0.016205327585339546, + -0.012606924399733543, + -0.01499660313129425, + 0.09153912216424942, + -0.014703541062772274, + 0.059483446180820465, + 0.03711926192045212, + -2.156227552063683e-08, + 0.024890689179301262, + -0.007786615751683712, + -0.05966325104236603, + -0.021776707842946053, + 0.059091221541166306, + -0.04513053968548775, + -0.011528901755809784, + -0.056609392166137695, + -0.12403462082147598, + -0.01337253674864769, + -0.022738972678780556, + -0.008175997994840145, + -0.049688104540109634, + 0.05720430240035057, + 0.002217078348621726, + -0.0179595947265625, + 0.04678777605295181, + 0.027611514553427696, + -0.0177915021777153, + -0.09941090643405914, + -0.044783543795347214, + 0.0325891450047493, + 0.05866752564907074, + -0.0005260045290924609, + 0.04210086539387703, + -0.01729859597980976, + -0.005600441247224808, + -0.019889550283551216, + 0.043494291603565216, + 0.04366075620055199, + -0.013582668267190456, + 0.032768551260232925, + 0.046135369688272476, + -0.04944261163473129, + -0.03821074217557907, + -0.03017221763730049, + -0.057588741183280945, + 0.043953824788331985, + -0.013941007666289806, + 0.004648592788726091, + -0.02213890478014946, + 0.01719719171524048, + 0.04103439673781395, + -0.04881993308663368, + 0.00615798681974411, + 0.037508733570575714, + 0.02460271120071411, + 0.034589990973472595, + -0.04177537187933922, + -0.10383971780538559, + -0.03001166321337223, + 0.0062711359933018684, + 0.020337741822004318, + 0.08501305431127548, + -0.023637207224965096, + -0.04391906410455704, + 0.018771298229694366, + 0.08141845464706421, + 0.041362788528203964, + 0.03102916106581688, + 0.1051841750741005, + -0.04233371838927269, + -0.005205854307860136, + 0.016341300681233406 + ], + "trolley-bold||*new*,airport,briefcase,valise,baggage": [ + 0.0278937965631485, + 0.016458066180348396, + -0.04259048029780388, + 0.0626009926199913, + 0.02259089983999729, + -0.020416075363755226, + 0.0643988773226738, + -0.02324954979121685, + -0.026257431134581566, + -0.025355052202939987, + 0.06166388466954231, + 0.046974994242191315, + 0.018742278218269348, + 0.0034436522983014584, + -0.03503204509615898, + 0.04495888203382492, + 0.05061035230755806, + 0.0118859289214015, + -0.09366651624441147, + 0.05108604207634926, + -0.024765031412243843, + 0.058673348277807236, + -0.019973410293459892, + 0.005668379832059145, + 0.025636941194534302, + 0.030925290659070015, + 0.05264841765165329, + -0.022847402840852737, + 0.027679573744535446, + -0.06036677584052086, + 0.002537256106734276, + -0.016642317175865173, + 0.02600758895277977, + 0.02955576591193676, + 0.05676087364554405, + 0.062471892684698105, + 0.03968006372451782, + -0.024426549673080444, + 0.045576293021440506, + -0.04534656181931496, + -0.012399966828525066, + -0.01739887334406376, + -0.026444071903824806, + 0.09229830652475357, + -0.026371007785201073, + -0.06948502361774445, + 0.0004482520744204521, + -0.01805969700217247, + 0.016652414575219154, + 0.021650591865181923, + 0.025096345692873, + -0.10268279910087585, + -0.07041317969560623, + 0.05045979842543602, + -0.05330139398574829, + 0.021550141274929047, + -0.030523179098963737, + -0.020821725949645042, + 0.03717504069209099, + -0.022309524938464165, + 0.0007053450681269169, + 0.024478642269968987, + 0.043170370161533356, + 0.02448595128953457, + 0.036804020404815674, + -0.0031407640781253576, + -0.015902824699878693, + -0.01922197826206684, + -0.07141325622797012, + 0.004350562114268541, + 0.03776466101408005, + -0.012641302309930325, + -0.05850156396627426, + -0.008758370764553547, + -0.002677042270079255, + -0.03504553064703941, + 0.011271596886217594, + -0.0019380933372303843, + -0.03782340884208679, + -0.0029692649841308594, + -0.08107168972492218, + -0.04423605278134346, + -0.07013082504272461, + 0.017489798367023468, + -0.018145039677619934, + 0.0032309680245816708, + -0.07332417368888855, + -0.057905688881874084, + -0.06495319306850433, + -0.0023855355102568865, + -0.03212413191795349, + -0.05786081776022911, + -0.03491273149847984, + 0.04106882959604263, + -0.11713439971208572, + 0.029803965240716934, + -0.02338884212076664, + 0.07078244537115097, + -0.013543186709284782, + 0.04676438122987747, + 0.021352455019950867, + 0.09308574348688126, + 0.07670235633850098, + 0.061147384345531464, + -0.04640047252178192, + -0.010982567444443703, + 0.0112305274233222, + -0.12337923794984818, + -0.05777455493807793, + -0.005768847186118364, + 0.03453631326556206, + -0.051812753081321716, + 0.004940434359014034, + -0.0687718540430069, + -0.04781051352620125, + 0.0010326405754312873, + -0.03515475615859032, + 0.05915820971131325, + -0.016566773876547813, + 0.08042003214359283, + 0.042239803820848465, + -0.00014458337682299316, + 0.0704948753118515, + -0.006239685229957104, + -0.09475810825824738, + -0.010228448547422886, + 0.021533288061618805, + -2.4333565091616543e-33, + -0.07659909874200821, + 0.014860745519399643, + -0.013142744079232216, + 0.12685558199882507, + 0.019864235073328018, + -0.05563730001449585, + -0.07891569286584854, + 0.004980744794011116, + -0.023058386519551277, + 0.06052349507808685, + -0.0020651090890169144, + 0.03234216570854187, + -0.0171032901853323, + -0.008380696177482605, + 0.05002335086464882, + -0.0489548034965992, + -0.016679618507623672, + -0.046398479491472244, + -0.012335479259490967, + -0.05470000207424164, + -0.07129843533039093, + 0.00033883293508552015, + 0.019987711682915688, + -0.08792968094348907, + 0.021915875375270844, + -0.008867472410202026, + 0.07980455458164215, + -0.05427171289920807, + 0.023545190691947937, + 0.061074916273355484, + -0.050875142216682434, + 0.09582231193780899, + 0.04924365505576134, + 0.07994379848241806, + -0.07207737863063812, + 0.023306705057621002, + -0.06951349973678589, + -0.0072005512192845345, + -0.03343840315937996, + 0.014877263456583023, + -0.0683637410402298, + -0.06826245784759521, + -0.04769207164645195, + 0.06334881484508514, + -0.017498111352324486, + 0.05199155956506729, + 0.016435647383332253, + -0.03926417976617813, + 0.04123658314347267, + 0.0591302327811718, + -0.04834730550646782, + -0.051162589341402054, + -0.02865183912217617, + 0.027022454887628555, + -0.01991754025220871, + -0.07509560137987137, + 0.007851831614971161, + 0.0808359831571579, + 0.05275147035717964, + -0.03780970722436905, + 0.06609643250703812, + 0.07057056576013565, + 0.06393453478813171, + 0.05595410242676735, + 0.07604764401912689, + 0.04336686432361603, + -0.006210396531969309, + -0.03403967246413231, + 0.08805353939533234, + 0.02260790579020977, + -0.07670596241950989, + 0.0780145525932312, + 0.04702029749751091, + 0.10868442803621292, + 0.03913092240691185, + 0.01601383648812771, + 0.002914750948548317, + 0.02744901366531849, + 0.032193295657634735, + -0.12676256895065308, + -0.1594727337360382, + 0.017625534906983376, + 0.0016959492349997163, + 0.15043306350708008, + 0.05790330097079277, + -0.04817778989672661, + 0.0069129690527915955, + -0.06919880956411362, + -0.03643876686692238, + 0.0037264334969222546, + -0.14832718670368195, + 0.04194820299744606, + -0.05320911854505539, + -0.052311740815639496, + 0.0070324004627764225, + 3.7001152771090745e-34, + 0.15570902824401855, + 0.03584401682019234, + -0.037517957389354706, + -0.023077523335814476, + -0.03435518220067024, + -0.02644219435751438, + -0.028646402060985565, + -0.023399194702506065, + -0.03600781410932541, + 0.06911209225654602, + -0.08521364629268646, + -0.06469125300645828, + 0.004105228930711746, + 0.0312819704413414, + 0.1301545947790146, + -0.0061041321605443954, + 0.035866428166627884, + -0.014640958979725838, + -0.03718347102403641, + 0.016654210165143013, + -0.003321866039186716, + -0.024885231629014015, + -0.08173070102930069, + 0.03177197650074959, + -0.04705958813428879, + 0.014869023114442825, + 0.009246339090168476, + -0.0507703460752964, + -0.032563574612140656, + 0.010858051478862762, + -0.08097661286592484, + 0.002240599598735571, + 0.08916839957237244, + 0.07585128396749496, + -0.08485689759254456, + 0.03872009366750717, + 0.06565798819065094, + -0.007853691466152668, + 0.07294037193059921, + -0.033024244010448456, + -0.0003342322597745806, + -0.0013679477851837873, + -0.006521257106214762, + -0.0016042761271819472, + -0.055300552397966385, + -0.11544440686702728, + -0.02175523340702057, + 0.016942009329795837, + 0.028386015444993973, + -0.028685303404927254, + 0.08543510735034943, + 0.029864158481359482, + -0.11576995998620987, + 0.02488601766526699, + 0.007454369217157364, + 0.07858240604400635, + -0.022011421620845795, + -0.10904453694820404, + 0.039576370269060135, + -0.03831542283296585, + -0.0076681748032569885, + 0.05397583171725273, + -0.04988161846995354, + 0.010448774322867393, + -0.014671258628368378, + -0.06491124629974365, + -0.0065123531967401505, + -0.052451614290475845, + -0.05547590181231499, + 0.06907307356595993, + 0.021114755421876907, + 0.001931266626343131, + 0.03682294115424156, + 0.023393413051962852, + 0.06856676936149597, + -0.0006592749268747866, + 0.07073089480400085, + -0.0032501902896910906, + 0.05568188801407814, + -0.014375955797731876, + -0.012707841582596302, + -0.018415851518511772, + -0.031864020973443985, + 0.08979547023773193, + 0.04352602735161781, + 0.01149776205420494, + -0.013127818703651428, + -0.0061706253327429295, + -0.00577886588871479, + -0.04417313635349274, + 0.053808361291885376, + 0.038725778460502625, + -0.0532994382083416, + 0.024245567619800568, + -0.02441752701997757, + -2.035397095312419e-08, + -0.033270105719566345, + 0.023456303402781487, + -0.09162755310535431, + 0.003078159410506487, + -0.01277637667953968, + -0.04483627527952194, + -0.032643843442201614, + 0.010301091708242893, + -0.0803503468632698, + 0.017015524208545685, + 0.06504733860492706, + 0.04601043835282326, + -0.13587279617786407, + 0.03775002434849739, + -0.04984179884195328, + 0.05067899078130722, + -0.0681869238615036, + 0.025347955524921417, + -0.05865182355046272, + -0.046189602464437485, + -0.00898531824350357, + 0.030532406643033028, + 0.04273386672139168, + -0.031881533563137054, + -0.021872883662581444, + 0.02247362583875656, + -0.0820048525929451, + -0.05319901928305626, + 0.11595343798398972, + 0.003465397283434868, + 0.075125552713871, + 0.06850290298461914, + -0.03516474366188049, + -0.04477087780833244, + -0.09720076620578766, + -0.007760451640933752, + 0.03520027920603752, + 0.012168238870799541, + 0.012818051502108574, + 0.1321903020143509, + 0.006380958016961813, + -0.04814435541629791, + -0.03670553117990494, + -0.017659354954957962, + 0.009293312206864357, + 0.0057752798311412334, + -0.0006436812109313905, + 0.024001551792025566, + -0.06866440922021866, + -0.03996880725026131, + -0.02214319258928299, + -0.027845541015267372, + 0.05816763639450073, + 0.055543992668390274, + 0.019683487713336945, + 0.02095535211265087, + 0.006330478936433792, + 0.05963698774576187, + -0.027818970382213593, + 0.061316534876823425, + 0.07407210022211075, + 0.023236844688653946, + 0.04312515631318092, + -0.00789570901542902 + ], + "trolley-suitcase-bold||*new*,airport,briefcase,valise,baggage": [ + 0.0285375714302063, + 0.026646427810192108, + -0.04210389778017998, + 0.06016284599900246, + 0.050547532737255096, + -0.027509696781635284, + 0.05950207635760307, + -0.00870890449732542, + -0.013112143613398075, + -0.026546338573098183, + 0.06620077043771744, + 0.04079467058181763, + 0.02520122565329075, + 0.014380393549799919, + -0.012519015930593014, + 0.04332391172647476, + 0.033342961221933365, + 0.01578185334801674, + -0.11145597696304321, + 0.05287416651844978, + -0.02485114336013794, + 0.04614212363958359, + -0.028462029993534088, + -0.00031982746440917253, + 0.04758691415190697, + 0.035045504570007324, + 0.0694844126701355, + -0.026845689862966537, + 0.03195355087518692, + -0.04014761373400688, + 0.004624590743333101, + -0.011994299478828907, + 0.01927882805466652, + 0.04437902569770813, + 0.06206818297505379, + 0.06003011763095856, + 0.021238278597593307, + -0.024942725896835327, + 0.02256019599735737, + -0.031366001814603806, + -0.01838950254023075, + -0.016628447920084, + -0.02932271920144558, + 0.09135876595973969, + -0.02802271768450737, + -0.08131876587867737, + 0.0068725342862308025, + -0.006020180881023407, + 0.012067245319485664, + 0.03491522744297981, + 0.011799466796219349, + -0.11034892499446869, + -0.0800982192158699, + 0.059117816388607025, + -0.06899893283843994, + 0.028546961024403572, + -0.04186198115348816, + -0.019893217831850052, + 0.029453832656145096, + -0.02763531543314457, + 0.004003460984677076, + 0.03553326055407524, + 0.03891165554523468, + 0.021474793553352356, + 0.03423488140106201, + -0.010553074069321156, + -0.005117804277688265, + -0.026432722806930542, + -0.092660091817379, + 0.011522284708917141, + 0.05079592019319534, + -0.006459491327404976, + -0.0606536827981472, + 0.014222989790141582, + -0.0028312616050243378, + -0.04561065882444382, + -0.0018565909704193473, + -0.004158382769674063, + -0.04470151662826538, + 0.03568950667977333, + -0.06824836134910583, + -0.03694429621100426, + -0.08243433386087418, + -0.002561459317803383, + -0.02344379760324955, + 7.761578308418393e-05, + -0.06796398758888245, + -0.043073661625385284, + -0.07633030414581299, + 0.0009336258517578244, + -0.044061947613954544, + -0.05240026116371155, + -0.01407182589173317, + 0.04416745528578758, + -0.11730080842971802, + 0.04347541555762291, + -0.01653982512652874, + 0.0878286138176918, + -0.012762807309627533, + 0.03302434831857681, + 0.015020866878330708, + 0.08645092695951462, + 0.0776405856013298, + 0.07510700821876526, + -0.03768589720129967, + -0.01430965680629015, + 0.01586405374109745, + -0.11267174780368805, + -0.0387633740901947, + 0.0026332593988627195, + 0.012539775110781193, + -0.04438361898064613, + 0.021621210500597954, + -0.08397658169269562, + -0.056607868522405624, + 0.006261441390961409, + -0.03896946460008621, + 0.07816256582736969, + -0.014650633558630943, + 0.07035855203866959, + 0.07153215259313583, + -0.011690318584442139, + 0.07858041673898697, + -0.003623625263571739, + -0.0905550867319107, + -0.013584641739726067, + 0.019811859354376793, + -2.961886319940202e-33, + -0.06869612634181976, + 0.03497307002544403, + -0.01629222184419632, + 0.14850670099258423, + 0.013513712212443352, + -0.04043182358145714, + -0.0712684914469719, + 0.013930539600551128, + -0.014678976498544216, + 0.06310457736253738, + -0.025757234543561935, + 0.042966078966856, + -0.01981939747929573, + -0.002410725224763155, + 0.0424041785299778, + -0.03954555094242096, + -0.016559341922402382, + -0.04497009143233299, + 0.006171197630465031, + -0.041860681027173996, + -0.05369633808732033, + -0.01317196898162365, + 0.034130875021219254, + -0.08643550425767899, + 0.006652357522398233, + 0.002081099199131131, + 0.08411148190498352, + -0.07046392560005188, + 0.018458833917975426, + 0.05220257118344307, + -0.04817517101764679, + 0.08860350400209427, + 0.042384613305330276, + 0.07376682758331299, + -0.06459354609251022, + 0.010418658144772053, + -0.05438351631164551, + 0.005296831484884024, + -0.04523186385631561, + 0.022531382739543915, + -0.0659680962562561, + -0.07563240826129913, + -0.037999287247657776, + 0.06637389957904816, + -0.00027762737590819597, + 0.04136525094509125, + 0.019129671156406403, + -0.04078938066959381, + 0.05259181559085846, + 0.03654252737760544, + -0.038647036999464035, + -0.056458380073308945, + -0.017818039283156395, + 0.03071819618344307, + -0.011561164632439613, + -0.07792883366346359, + 0.004546681884676218, + 0.07841099053621292, + 0.03379294276237488, + -0.038809243589639664, + 0.07294037938117981, + 0.06543402373790741, + 0.07048468291759491, + 0.06009797006845474, + 0.07669395208358765, + 0.0325872078537941, + -0.00559952249750495, + -0.022135714069008827, + 0.08455774933099747, + 0.009047835133969784, + -0.07697723060846329, + 0.07737968862056732, + 0.05709720402956009, + 0.10270563513040543, + 0.03513287007808685, + 0.00495584262534976, + 0.019019536674022675, + 0.026204591616988182, + 0.03453565016388893, + -0.12841549515724182, + -0.1556333601474762, + 0.006552266888320446, + 0.01335103902965784, + 0.14050373435020447, + 0.04209580644965172, + -0.030862363055348396, + -0.0018183073261752725, + -0.04101407527923584, + -0.03619825094938278, + -0.010369270108640194, + -0.15053658187389374, + 0.03952022269368172, + -0.03757727891206741, + -0.056087296456098557, + 0.014594321139156818, + 8.249621190780737e-34, + 0.15387693047523499, + 0.022759180516004562, + -0.05364266782999039, + -0.024903425946831703, + -0.013492862693965435, + -0.03790873661637306, + -0.024864505976438522, + -0.013169145211577415, + -0.04059427231550217, + 0.06174829229712486, + -0.0736633762717247, + -0.09865933656692505, + -0.003977575339376926, + 0.02634698525071144, + 0.12570974230766296, + 0.015192613936960697, + 0.03147843852639198, + -0.022617649286985397, + -0.038518715649843216, + 0.022084463387727737, + -0.01694061979651451, + -0.023533593863248825, + -0.08348734676837921, + 0.026608018204569817, + -0.046411700546741486, + 0.0075592175126075745, + 0.022590242326259613, + -0.054889969527721405, + -0.027414988726377487, + 0.02534109726548195, + -0.06868106126785278, + 0.017986251041293144, + 0.09369268268346786, + 0.07390159368515015, + -0.07484231144189835, + 0.04702679440379143, + 0.03300487622618675, + -0.006978812627494335, + 0.08227452635765076, + -0.02655978500843048, + -0.01068081334233284, + -0.006763574667274952, + -0.027221878990530968, + 0.00199400307610631, + -0.04986339062452316, + -0.10937382280826569, + -0.02347591146826744, + 0.00014042691327631474, + 0.03536897525191307, + -0.03716132044792175, + 0.09044456481933594, + 0.03287286311388016, + -0.13428130745887756, + 0.014863545075058937, + 0.021801356226205826, + 0.06983593106269836, + -0.06518625468015671, + -0.10420859605073929, + 0.049390990287065506, + -0.047495752573013306, + -0.0003802636929322034, + 0.06848132610321045, + -0.04048427566885948, + -0.0028259875252842903, + -0.016656167805194855, + -0.04623847454786301, + -0.014745577238500118, + -0.03376401588320732, + -0.0705958679318428, + 0.06819786876440048, + 0.02274971455335617, + 0.004289478994905949, + 0.03343392163515091, + 0.024771934375166893, + 0.07844828069210052, + -0.019786760210990906, + 0.07054881751537323, + -0.010289870202541351, + 0.06217695400118828, + -0.014422374777495861, + -0.02423861250281334, + -0.03367900848388672, + -0.05024676024913788, + 0.05376121774315834, + 0.03101811371743679, + -0.002683863043785095, + -0.028789618983864784, + 0.0011389961000531912, + -0.0013119472423568368, + -0.041742339730262756, + 0.04891519993543625, + 0.04131007939577103, + -0.04879859462380409, + 0.019261034205555916, + -0.009596429765224457, + -2.0201214923076805e-08, + -0.018429266288876534, + 0.026547349989414215, + -0.09446320682764053, + 0.002470556180924177, + -0.015284874476492405, + -0.046218808740377426, + -0.034404754638671875, + 0.019353728741407394, + -0.06063162535429001, + 0.004905813839286566, + 0.05402487516403198, + 0.03018151968717575, + -0.13388286530971527, + 0.03319331258535385, + -0.05787086486816406, + 0.06375744938850403, + -0.07681623846292496, + 0.053297363221645355, + -0.04511857032775879, + -0.05191019922494888, + -0.010866299271583557, + 0.033161092549562454, + 0.04111762344837189, + -0.03984813019633293, + -0.023410126566886902, + 0.018382251262664795, + -0.10628006607294083, + -0.06307271122932434, + 0.11079193651676178, + 0.003941282629966736, + 0.06594017148017883, + 0.05606798082590103, + -0.052552539855241776, + -0.05590501055121422, + -0.09118562936782837, + -0.002428531413897872, + 0.047950901091098785, + -0.0038914980832487345, + 0.01794005185365677, + 0.10353832691907883, + 0.0014971924247220159, + -0.058865975588560104, + -0.05286828428506851, + -0.01971273496747017, + -0.0035879022907465696, + -0.0077222599647939205, + 0.012767142616212368, + 0.021418359130620956, + -0.06228608265519142, + -0.015671072527766228, + -0.006578150670975447, + -0.030618291348218918, + 0.04961922764778137, + 0.03323613107204437, + 0.04360741749405861, + 0.02469598688185215, + 0.013036451302468777, + 0.05956590548157692, + -0.014055985026061535, + 0.06710220128297806, + 0.04630201682448387, + 0.017208050936460495, + 0.054987214505672455, + -0.015506358817219734 + ], + "trophy-bold||ribbons,medals,winning,victory,awards,prize": [ + -0.022690659388899803, + 0.09945198148488998, + 0.0011159174609929323, + -0.028870968148112297, + -0.030468227341771126, + 0.07757579535245895, + 0.0940905511379242, + -0.013986711390316486, + -0.024170737713575363, + -0.008643647655844688, + -0.04412749782204628, + -0.048399992287158966, + 0.04515640810132027, + 0.03621210157871246, + -0.1017354428768158, + 0.05265733599662781, + 0.03495412692427635, + -0.009235856123268604, + 0.017327960580587387, + -0.025589533150196075, + 0.07382991164922714, + -0.001787530374713242, + -0.015063834376633167, + 0.06793814152479172, + -0.019878460094332695, + 0.02776671014726162, + -0.10838405787944794, + 0.02433575876057148, + -0.007430534344166517, + -0.019991833716630936, + -0.0966956615447998, + -0.1312706470489502, + 0.011148717254400253, + 0.06114810332655907, + -0.03504474461078644, + 0.012487406842410564, + -0.011616428382694721, + -0.020142752677202225, + -0.01999885030090809, + 0.053282480686903, + -0.004244206473231316, + -0.07018499821424484, + 0.009141224436461926, + 0.05484166368842125, + 0.05872758850455284, + 0.027837447822093964, + -0.019872425124049187, + -0.03733602166175842, + -0.032803356647491455, + 0.024226130917668343, + -0.021569879725575447, + -0.05462928116321564, + -0.03473644331097603, + -0.0591827854514122, + 0.0626625046133995, + 0.0024419231340289116, + -0.007687928155064583, + -0.0756569355726242, + -0.01050278265029192, + 0.020628320053219795, + 0.029198914766311646, + 0.00854575913399458, + -0.057660169899463654, + 0.08157885819673538, + -0.03662915900349617, + -0.05203497037291527, + -0.0023201764561235905, + 0.12733310461044312, + -0.020949823781847954, + 0.013276769779622555, + 0.10646354407072067, + -0.002279411070048809, + 0.02315969206392765, + -0.0657549649477005, + 0.04627593606710434, + 0.04261083900928497, + -0.014957647770643234, + 0.013745573349297047, + -0.006024572066962719, + 0.042308349162340164, + -0.06931371241807938, + -0.06694290041923523, + 0.0050796084105968475, + -0.005491133779287338, + 0.07116840779781342, + 0.028764670714735985, + -0.05151917785406113, + -0.07458962500095367, + 0.00037863891338929534, + -0.04125875607132912, + -0.04305518791079521, + -0.0035739652812480927, + 0.05987989529967308, + 0.005772508215159178, + -0.07324941456317902, + 0.011016175150871277, + 0.013434999622404575, + -0.020544670522212982, + 0.012363028712570667, + 0.09190256893634796, + -0.00486777676269412, + 0.06282125413417816, + -0.011856225319206715, + 0.011234559118747711, + 0.06664931029081345, + 0.04952133446931839, + -0.06660183519124985, + -0.0005138113046996295, + 0.031835708767175674, + -0.010365672409534454, + -0.004380715545266867, + -0.019157633185386658, + 0.018566720187664032, + 0.0025144987739622593, + -0.07898233830928802, + 0.04053761810064316, + -0.1520003229379654, + -0.03533323481678963, + 0.06514811515808105, + 0.004698524251580238, + 0.012564967386424541, + -0.04238327965140343, + 0.008653709664940834, + -0.08456716686487198, + -0.04846413806080818, + -0.0017760122427716851, + 0.0071615660563111305, + -3.786143877091752e-33, + 0.03305879980325699, + -4.310108124627732e-05, + 0.03507125377655029, + 0.10779540240764618, + -0.04419253021478653, + 0.011487340554594994, + 0.0003491921816021204, + -0.046038415282964706, + -0.11818679422140121, + -0.018082203343510628, + -0.040395595133304596, + 0.11419840902090073, + -0.017894908785820007, + 0.019314439967274666, + 0.059635013341903687, + -0.006857893895357847, + -0.06512393802404404, + -0.062296029180288315, + -0.04271650314331055, + 0.01629815623164177, + -0.0155994463711977, + 0.027959315106272697, + 0.017865676432847977, + 0.0002571815566625446, + 0.023109806701540947, + -0.027348242700099945, + -0.00398572301492095, + -0.030251629650592804, + -0.058784764260053635, + 0.036762870848178864, + 0.0689409077167511, + -0.04662231728434563, + 0.053187038749456406, + -0.04003724083304405, + -0.0629783421754837, + -0.009750456549227238, + -0.04261523857712746, + -0.06181786209344864, + 0.05194816738367081, + 0.035051897168159485, + -0.001821681740693748, + -0.04887683317065239, + -0.06999198347330093, + 0.07259451597929001, + -0.009528717957437038, + 0.1059647649526596, + 0.030590424314141273, + 0.0011393761960789561, + 0.06887876242399216, + 0.02286873571574688, + 0.03746767342090607, + -0.04985014721751213, + -0.0060592335648834705, + -0.029702607542276382, + -0.008394650183618069, + 0.017466837540268898, + 0.01075347326695919, + 0.05392085760831833, + -0.06279993057250977, + -0.07075541466474533, + -0.01609555259346962, + -0.04610196128487587, + 0.06162336841225624, + -0.020870326086878777, + -0.05135359242558479, + 0.06703418493270874, + 0.027956709265708923, + -0.003413466503843665, + 0.0881248414516449, + -0.034361332654953, + -0.02124381810426712, + 0.0598701536655426, + 0.0056035201996564865, + -0.06340555101633072, + 0.02496224455535412, + 0.024949798360466957, + 0.036398980766534805, + -0.052495475858449936, + 0.0005728478427045047, + -0.0210847370326519, + -0.129791259765625, + 0.04739856719970703, + -0.024275003001093864, + -0.0021944488398730755, + 0.06813497096300125, + 0.06630585342645645, + 0.011773784644901752, + -0.10265173763036728, + -0.01855969801545143, + 0.03021043911576271, + 0.01034174021333456, + -0.0209225844591856, + 0.05369420349597931, + -0.031496915966272354, + -0.11629078537225723, + 2.1035704670125076e-33, + 0.050286900252103806, + -0.010658688843250275, + 0.03552323207259178, + -0.03098958730697632, + 0.08683868497610092, + 0.03330616280436516, + 0.007150968071073294, + 0.061223678290843964, + -0.056393932551145554, + 0.06196168065071106, + 0.06223072111606598, + 0.01684677228331566, + 0.004368365276604891, + -0.013355509378015995, + -0.022268669679760933, + -0.01342109963297844, + 0.025590864941477776, + 0.0653776004910469, + -0.056817349046468735, + 0.018092337995767593, + 0.06831400841474533, + 0.07551417499780655, + 0.00403448473662138, + -0.03473631665110588, + -0.0634329691529274, + 0.04195987805724144, + -0.0136830173432827, + -0.09050928056240082, + 0.028031686320900917, + -0.053397007286548615, + 0.07361151278018951, + -0.03483908623456955, + -0.06775917112827301, + 0.035167258232831955, + -0.00934012234210968, + 0.06323183327913284, + 0.0800357386469841, + -0.1265679895877838, + 0.05800052359700203, + 0.030442383140325546, + -0.013457346707582474, + -0.04527628794312477, + -0.039693497121334076, + 0.13340333104133606, + 0.03565889969468117, + -0.04599691182374954, + -0.09970143437385559, + -0.0312176626175642, + -0.006096595898270607, + 0.026958147063851357, + -0.04577575996518135, + -0.035157300531864166, + 0.0039800554513931274, + 0.0551188625395298, + -0.053901415318250656, + 0.030909284949302673, + -0.0662284791469574, + -0.023373188450932503, + -0.034374188631772995, + 0.11372680962085724, + -0.03247429430484772, + 0.009477953426539898, + -0.06884650141000748, + 0.07682707905769348, + 0.012828600592911243, + -0.04458274692296982, + 0.04836194962263107, + 0.016716770827770233, + -0.07967481762170792, + 0.03422029688954353, + 0.0017378890188410878, + 0.11283871531486511, + -0.019962847232818604, + 0.005516440607607365, + 0.016693567857146263, + 0.015431517735123634, + -0.028721680864691734, + 0.09586738795042038, + -0.010062049143016338, + 0.05467350035905838, + -0.11272325366735458, + 0.02326669730246067, + 0.025060636922717094, + 0.028647592291235924, + 0.008203557692468166, + -0.08572779595851898, + 0.1074943020939827, + -0.02889091521501541, + 0.021654222160577774, + 0.05069194361567497, + 0.032858043909072876, + 0.0042902398854494095, + 0.1387464702129364, + -0.039973970502614975, + 0.07035855203866959, + -1.909614333328591e-08, + 0.023749221116304398, + 0.0666676014661789, + -0.08560679107904434, + -0.04167043790221214, + -0.029492367058992386, + 0.04234391078352928, + -0.12114360183477402, + -0.04574674740433693, + -0.07088995724916458, + -0.018649639561772346, + 0.08784231543540955, + 0.05293801799416542, + -0.14690227806568146, + -0.03858978673815727, + -0.03515838086605072, + -0.051586635410785675, + -0.07379262894392014, + 0.036102548241615295, + -0.012283398769795895, + -0.08984062075614929, + 0.07552047073841095, + 0.009600304067134857, + 0.0045790476724505424, + -0.03769632801413536, + -0.08144502341747284, + -0.01983356475830078, + -0.041375480592250824, + 0.02184308134019375, + -0.015648890286684036, + 0.03660127520561218, + 0.01220126636326313, + 0.003533516312018037, + 0.027020882815122604, + -0.0012747399741783738, + 0.007144559174776077, + 0.014294665306806564, + -0.005521672777831554, + -0.04555082693696022, + -0.010324300266802311, + 0.04368019476532936, + 0.0350591205060482, + -0.03709932044148445, + -0.017039882019162178, + 0.010850509628653526, + -0.010648474097251892, + 0.0872371569275856, + 0.022621294483542442, + 0.0012200133642181754, + -0.01814190484583378, + 0.01117546483874321, + 0.03809726983308792, + -0.06840582191944122, + -0.05150818079710007, + -0.0005235056742094457, + -0.06206698343157768, + 8.360291394637898e-05, + 0.06892547756433487, + 0.031617172062397, + 0.03942486271262169, + 0.015588986687362194, + 0.07942511886358261, + -0.04215086251497269, + 0.04962170124053955, + 0.05533603951334953 + ], + "truck-bold||trucks,cars,vehicles,automobile,shipping,delivery": [ + 0.007497098296880722, + -0.08531773090362549, + -0.006090837996453047, + 0.04914473369717598, + 0.05267088860273361, + 0.004621374420821667, + 0.03728688880801201, + -0.031301937997341156, + -0.04059997573494911, + -0.004115378018468618, + 0.05883366987109184, + 0.03384457528591156, + 0.053033892065286636, + -0.005998554173856974, + -0.007074179593473673, + 0.01702728495001793, + 0.10578959435224533, + -0.0256109107285738, + 0.0028211423195898533, + -0.01597585715353489, + 0.024685347452759743, + 0.09185918420553207, + 0.007629329338669777, + 0.03491329774260521, + 0.026103550568223, + 0.012992827221751213, + -0.02136271819472313, + 0.0065986053086817265, + -0.047739721834659576, + -0.11010833084583282, + -0.04757511243224144, + 0.0627744123339653, + 0.015367675572633743, + 0.01695583201944828, + 0.0659346729516983, + -0.017494602128863335, + 0.005194643512368202, + -0.019260957837104797, + 0.02518254891037941, + -0.021659236401319504, + -0.0173279270529747, + -0.08946722000837326, + -0.023380719125270844, + 0.03593221679329872, + -0.0038978110533207655, + -0.0646839588880539, + -0.006929153110831976, + 0.014559264294803143, + 0.05799190327525139, + -0.020841818302869797, + 0.018975069746375084, + -0.071673683822155, + -0.11603041738271713, + 0.047137197107076645, + 0.028112176805734634, + -0.015044902451336384, + -0.09345318377017975, + -0.0350336916744709, + 0.00524100149050355, + 0.028633665293455124, + -0.013422507792711258, + 0.024674152955412865, + 0.01377080287784338, + 0.038908738642930984, + 0.0303987767547369, + -0.007370977662503719, + -0.01676821894943714, + 0.0014842426171526313, + -0.07662074267864227, + 0.05628106743097305, + 0.04815087839961052, + 0.05782516300678253, + -0.008112799376249313, + 0.02814498543739319, + 0.009220540523529053, + -0.04684099927544594, + 0.11564306169748306, + -0.0066937291994690895, + -0.02523105964064598, + -0.07298928499221802, + -0.09936163574457169, + 0.007678854279220104, + -0.020001517608761787, + -0.09481998533010483, + -0.07580362260341644, + 0.005572362802922726, + -0.022810829803347588, + -0.024414122104644775, + -0.10090981423854828, + -0.0006922002066858113, + -0.07358766347169876, + -0.102373406291008, + 0.03257424756884575, + 0.049346812069416046, + -0.11457937955856323, + 0.00704630371183157, + 0.04806029796600342, + -0.008740649558603764, + 0.043405212461948395, + 0.04197493940591812, + 0.0483720488846302, + 0.035010602325201035, + 0.05663563311100006, + 0.008516336791217327, + -0.12571780383586884, + -0.03310391679406166, + -0.07895446568727493, + 0.003934120759367943, + -0.016128329560160637, + 0.003509057220071554, + -0.014369068667292595, + -0.040711402893066406, + -0.04283115267753601, + -0.00695825694128871, + -0.12691812217235565, + -0.059688132256269455, + -0.07944829016923904, + -0.0461612232029438, + 0.14480102062225342, + 0.01571548357605934, + -0.016975514590740204, + -0.03096156194806099, + 0.06359483301639557, + -0.026807313784956932, + -0.022609399631619453, + -0.01342473179101944, + 0.07430290430784225, + -4.2652650889113464e-33, + -0.022038999944925308, + -0.026448260992765427, + -0.005310061387717724, + 0.06629936397075653, + 0.019821755588054657, + -0.019964365288615227, + -0.06457710266113281, + -0.0011379087809473276, + -0.03575275093317032, + 0.09791530668735504, + -0.04044674336910248, + 0.0722305029630661, + -0.02914067916572094, + 0.053316451609134674, + 0.010971259325742722, + -0.004999153316020966, + -0.06465286761522293, + -0.01244906336069107, + -0.04604669287800789, + 0.0200369693338871, + -0.08434318006038666, + 0.1028481274843216, + -0.000564616871997714, + -0.011380638927221298, + 0.014054834842681885, + -0.04857764393091202, + -0.010380331426858902, + -0.011424040421843529, + 0.010195283219218254, + 0.06901094317436218, + 0.012261214666068554, + 0.06932094693183899, + 0.06295503675937653, + 0.041150711476802826, + -0.01858782023191452, + 0.0011709771351888776, + -0.07748958468437195, + -0.09930986166000366, + -0.06518885493278503, + 0.016201086342334747, + -0.06286631524562836, + -0.03679722547531128, + -0.10740457475185394, + 0.05428135395050049, + 0.009965334087610245, + 0.148702472448349, + 0.023358872160315514, + -0.07819347828626633, + 0.017015034332871437, + 0.05011142045259476, + -0.08891865611076355, + -0.05417114123702049, + 0.04023616760969162, + -0.03701223433017731, + -0.02514118142426014, + -0.018865447491407394, + 0.02097121812403202, + 0.012761445716023445, + 0.0039156293496489525, + 0.027293924242258072, + -0.05328821390867233, + 0.02169465646147728, + 0.07639642059803009, + -0.04665198549628258, + 0.021438535302877426, + -0.013726111501455307, + -0.005098023917526007, + 0.017213143408298492, + 0.06099339574575424, + 0.03379642963409424, + 0.013559138402342796, + 0.047223493456840515, + 0.037322819232940674, + 0.038383759558200836, + 0.1069975271821022, + 0.01837124302983284, + -0.0014904886484146118, + 0.029537631198763847, + -0.03145506978034973, + -0.045793842524290085, + -0.12796829640865326, + 0.01899047940969467, + -0.04931646212935448, + 0.09103990346193314, + 0.056968629360198975, + 0.05195000767707825, + -0.023757129907608032, + -0.07719489187002182, + 0.013436689041554928, + 0.03802914917469025, + -0.12978030741214752, + 0.047762926667928696, + -0.030787767842411995, + -0.05980944633483887, + -0.009761444292962551, + -1.941054102660755e-34, + 0.052241548895835876, + 0.039477039128541946, + -0.056747112423181534, + 0.02720530889928341, + 0.015626538544893265, + 0.051340799778699875, + 0.028520368039608, + 0.013197846710681915, + 0.05278613790869713, + 0.05576208233833313, + -0.05892937257885933, + -0.013491078279912472, + -0.027878088876605034, + -0.028550947085022926, + 0.00567600829526782, + -0.06152649223804474, + 0.04796716198325157, + 0.0018131183460354805, + -0.048931654542684555, + 0.07256317138671875, + -0.05783362686634064, + -0.03927568346261978, + -0.07244683057069778, + 0.03586952015757561, + 0.028530821204185486, + 0.048042215406894684, + -0.0651690661907196, + -0.0060737100429832935, + -0.06931540369987488, + -0.032925449311733246, + -0.020286481827497482, + -0.06847278773784637, + 0.08067536354064941, + 0.06125082075595856, + -0.0892719104886055, + 0.013634731061756611, + 0.04013455659151077, + 0.021627994254231453, + 0.0333092100918293, + -0.00912321824580431, + 0.00356979644857347, + -0.011782880872488022, + 0.04248616471886635, + 0.07768358290195465, + -0.020960887894034386, + -0.09270766377449036, + -0.07513310760259628, + -0.06122581288218498, + 0.05672381445765495, + 0.05231153592467308, + -0.04281850531697273, + 0.03489620238542557, + -0.035649340599775314, + 0.00615579541772604, + -0.05644518509507179, + 0.006877719424664974, + 0.045299749821424484, + -0.00037158437771722674, + 0.006457902956753969, + 0.09528720378875732, + -0.008522133342921734, + 0.047277532517910004, + 0.0270693339407444, + 0.029507579281926155, + 0.010431225411593914, + -0.11809834837913513, + 0.024022750556468964, + -0.11147633194923401, + 0.056088224053382874, + -0.035966213792562485, + 0.04407783970236778, + -0.013503072783350945, + -0.016915787011384964, + 0.037769678980112076, + -0.016994040459394455, + -0.03697408735752106, + 0.04153675213456154, + 0.03987649828195572, + -0.009701278060674667, + 0.017966480925679207, + 0.023944063112139702, + -0.059313539415597916, + 0.009275727905333042, + 0.14652325212955475, + -0.06449924409389496, + 0.011953068897128105, + 0.021034710109233856, + -0.02141019143164158, + 0.07859434932470322, + 0.024274345487356186, + 0.015201292932033539, + 0.03644911199808121, + -0.030023058876395226, + -0.008416405878961086, + -0.09526030719280243, + -1.9695271191721986e-08, + 0.028619349002838135, + 0.033209655433893204, + -0.07675155997276306, + -0.009889667853713036, + 0.02780204825103283, + -0.003105411073192954, + 0.018380675464868546, + 0.00596050638705492, + -0.12807494401931763, + 0.02005339413881302, + 0.014478198252618313, + 0.027697008103132248, + -0.09626463055610657, + 0.018406985327601433, + 0.02046903781592846, + 0.019503749907016754, + -0.005090558435767889, + 0.05022069811820984, + -0.05441184341907501, + -0.07133645564317703, + -0.0402141809463501, + 0.04020078107714653, + 0.027255650609731674, + 0.026776166632771492, + 0.024260003119707108, + 0.004411135800182819, + -0.018002936616539955, + -0.008746164850890636, + 0.14574328064918518, + 0.032662972807884216, + 0.02399132028222084, + 0.0785297378897667, + -0.051409315317869186, + -0.004760047886520624, + -0.0391080267727375, + -0.06262373179197311, + -0.008780105970799923, + 0.01830211840569973, + -0.021325860172510147, + 0.08032120019197464, + 0.0260918028652668, + -0.0040860711596906185, + -0.01959093287587166, + -0.04842454195022583, + 0.048192813992500305, + 0.03395558521151543, + -0.08317826688289642, + -0.05019943043589592, + -0.08128482103347778, + -0.041087556630373, + -0.0008751112036406994, + -0.026936156675219536, + -0.043213795870542526, + 0.11992955952882767, + 0.03851303085684776, + -0.04038640484213829, + 0.0011594059178605676, + -0.03905496001243591, + 0.026914283633232117, + 0.005094310734421015, + 0.08363064378499985, + 0.0004753246030304581, + 0.09275513142347336, + 0.021381326019763947 + ], + "truck-trailer-bold||*new*,vehicles,automobile,shipping,tractor,semi": [ + -0.03231096267700195, + -0.032028522342443466, + 0.012222334742546082, + 0.0384153351187706, + 0.05361045151948929, + 0.02678217552602291, + 3.7396199331851676e-05, + -0.01683620549738407, + -0.05928998813033104, + 0.006353092845529318, + 0.07324553281068802, + 0.05419886112213135, + 0.03590380772948265, + 0.008094989694654942, + -0.02312391623854637, + 0.049162544310092926, + 0.0996348038315773, + -0.04057835787534714, + -0.017278943210840225, + -0.007253063376992941, + 0.025872383266687393, + 0.07497777044773102, + -0.011420744471251965, + 0.04453875124454498, + 0.058571990579366684, + 0.0288394782692194, + 0.014287959784269333, + 0.05810295045375824, + -0.04862736910581589, + -0.0424618162214756, + -0.09553436189889908, + 0.025176484137773514, + 0.021478967741131783, + 0.029089171439409256, + 0.0922839343547821, + 0.012236949987709522, + 0.006387920118868351, + -0.006247755605727434, + 0.039721760898828506, + -0.02496783807873726, + 0.0014634303515776992, + -0.12353784590959549, + -0.024817461147904396, + 0.021148275583982468, + -0.008548048324882984, + -0.06850633025169373, + -0.02027401514351368, + -0.016391394659876823, + 0.08395581692457199, + -0.0031765070743858814, + 0.01774284802377224, + -0.0510244183242321, + -0.07080255448818207, + 0.030810343101620674, + -0.003172860248014331, + 0.000338533369358629, + -0.08381195366382599, + -0.0152136767283082, + 0.04050692543387413, + -0.0010238991817459464, + 0.047554224729537964, + 0.03999432548880577, + 0.052350003272295, + 0.03058389388024807, + 0.0064079915173351765, + -0.04485670477151871, + -0.03950820863246918, + -0.01867746189236641, + -0.06173669919371605, + 0.06985767930746078, + 0.02125273086130619, + 0.06981348991394043, + -0.01592370867729187, + 0.019967127591371536, + 0.006364166270941496, + -0.09724630415439606, + 0.06935106217861176, + 0.03981299698352814, + -0.030456416308879852, + -0.056836120784282684, + -0.04622848331928253, + 0.02170589007437229, + -0.005361021496355534, + -0.09228634834289551, + -0.10298000276088715, + 0.036240242421627045, + -0.012912104837596416, + 0.002992905443534255, + -0.07541140913963318, + -0.00012769747991114855, + -0.06622043997049332, + -0.08637680858373642, + -0.0003441128064878285, + 0.05801844969391823, + -0.12190243601799011, + 0.018303072080016136, + 0.007331759203225374, + -0.029175549745559692, + 0.03505571186542511, + 0.05186489224433899, + 0.03797532618045807, + 0.009340154007077217, + 0.04124227166175842, + 0.01002755481749773, + -0.06550002098083496, + 0.020015688613057137, + -0.08730180561542511, + 0.02833111584186554, + -0.02511199377477169, + 0.002150183077901602, + 0.02358241379261017, + -0.06069951131939888, + -0.01827888749539852, + -0.006368955597281456, + -0.11260748654603958, + -0.07042995095252991, + -0.1272229552268982, + -0.013988420367240906, + 0.08101299405097961, + 0.09074045717716217, + 0.055840905755758286, + -0.06538062542676926, + 0.07755247503519058, + -0.009054847061634064, + -0.004343478009104729, + -0.020519951358437538, + 0.02707982435822487, + -5.029540291747304e-33, + -0.058597173541784286, + 0.021591879427433014, + 0.007877939380705357, + 0.08570358902215958, + -0.00011474561324575916, + -0.012461725622415543, + -0.04694144055247307, + 0.030786965042352676, + -0.058634404093027115, + 0.054373957216739655, + -0.0020653631072491407, + 0.042744893580675125, + -0.04641138017177582, + 0.045552801340818405, + -0.00622009951621294, + -0.0668892040848732, + -0.06908665597438812, + -0.03321205452084541, + -0.01709640584886074, + -0.019378649070858955, + -0.12125466018915176, + 0.12180466204881668, + 0.023886702954769135, + -0.0629170835018158, + -0.010764733888208866, + -0.09913716465234756, + 0.031447406858205795, + -0.014035356231033802, + -0.005923309363424778, + 0.06012517213821411, + 0.03574829921126366, + 0.06620260328054428, + 0.09831354767084122, + 0.030588233843445778, + 0.00886425282806158, + -0.036990534514188766, + -0.06195176765322685, + -0.08659884333610535, + -0.11992758512496948, + 0.026934964582324028, + -0.06343179941177368, + -0.02020784467458725, + -0.07579601556062698, + 0.0086498549208045, + 0.015845978632569313, + 0.10370495170354843, + 0.036252327263355255, + -0.03155907616019249, + -0.03598552197217941, + 0.0401356965303421, + -0.06364889442920685, + -0.01738647371530533, + -0.006748526357114315, + -0.02571568824350834, + -0.03724663332104683, + -0.032512739300727844, + 0.010548130609095097, + 0.003078392008319497, + 0.009381616488099098, + 0.01129252277314663, + -0.0546896792948246, + 0.037162937223911285, + 0.03813423961400986, + -0.06446491926908493, + -0.036199361085891724, + -0.001813690410926938, + 0.022733692079782486, + 0.01718636229634285, + 0.04202432185411453, + 0.041804637759923935, + 0.011231185868382454, + -0.001241935882717371, + 0.023058351129293442, + 0.0959736779332161, + 0.09270843118429184, + -0.013353655114769936, + 0.026437178254127502, + 0.045887596905231476, + 0.0024083175230771303, + -0.0907365009188652, + -0.12372130900621414, + 0.025617891922593117, + -0.0456131249666214, + 0.087201789021492, + 0.01039179228246212, + -0.014882413670420647, + -0.039253342896699905, + -0.07459788024425507, + 0.014539020135998726, + 0.05987676605582237, + -0.12681035697460175, + 0.055811695754528046, + -0.07384137064218521, + -0.0495804138481617, + 0.023219715803861618, + 3.6170284894925744e-34, + 0.04408659785985947, + 0.046859316527843475, + -0.0806334912776947, + 0.0018562163459137082, + 0.0031173324678093195, + 0.02524568699300289, + 0.04388221725821495, + 0.008643454872071743, + 0.045140914618968964, + 0.06713870167732239, + 0.028730178251862526, + -0.014493188820779324, + -0.046790510416030884, + 0.002756306203082204, + 0.0571153424680233, + -0.04168105125427246, + 0.013184321112930775, + -0.021902021020650864, + -0.02535957656800747, + 0.08026526123285294, + -0.0287772286683321, + -0.008526128716766834, + -0.058508098125457764, + 0.07169725745916367, + 0.051807258278131485, + 0.032608479261398315, + -0.0855192095041275, + 0.06456100195646286, + -0.05921149253845215, + -0.031121036037802696, + -0.013180568814277649, + -0.10029412806034088, + 0.07082996517419815, + 0.11601921916007996, + -0.10403712093830109, + -0.003924555145204067, + 0.039678968489170074, + -0.02130536362528801, + 0.005417475011199713, + -0.026832997798919678, + 0.06641693413257599, + -0.06258386373519897, + 0.032693784683942795, + 0.06125906482338905, + -0.058962419629096985, + -0.09787657856941223, + -0.03832104429602623, + -0.04320121556520462, + 0.05661379173398018, + 0.025888757780194283, + -0.00210635457187891, + 0.025844883173704147, + -0.021337412297725677, + -0.006628591101616621, + -0.038030534982681274, + -0.010278284549713135, + 0.04717221483588219, + 0.011452692560851574, + -0.013237140141427517, + 0.10917598009109497, + 0.0075958045199513435, + 0.02008015103638172, + 0.022722812369465828, + 0.043427057564258575, + 0.009212546050548553, + -0.14611418545246124, + -0.01879909075796604, + -0.10031087696552277, + 0.008161358535289764, + -0.021448185667395592, + 0.0181245319545269, + 0.002928050234913826, + -0.026048265397548676, + -0.030419206246733665, + -0.044773705303668976, + -0.0647045150399208, + 0.027349336072802544, + -0.016768498346209526, + 0.003760122461244464, + 0.0038432099390774965, + 0.0073924195021390915, + -0.06994536519050598, + -0.0009201669599860907, + 0.11775439977645874, + -0.04803727567195892, + 0.03234170749783516, + -0.019064167514443398, + 0.0128569845110178, + 0.05962838605046272, + 0.04511847719550133, + 0.03835323080420494, + 0.03796478733420372, + -0.04530368745326996, + 0.047021038830280304, + -0.07270540297031403, + -2.161244871956569e-08, + 0.018986571580171585, + 0.06684893369674683, + -0.0738447904586792, + -0.04585903137922287, + 0.011621516197919846, + -0.04733720049262047, + 0.011564924381673336, + -0.015238035470247269, + -0.10154172778129578, + -0.002171026077121496, + 0.03485164791345596, + -0.002994237234815955, + -0.06985433399677277, + 0.05760875716805458, + -0.00861569494009018, + 0.0022227559238672256, + 0.0035673368256539106, + 0.06865368783473969, + -0.039402350783348083, + -0.09448347985744476, + -0.034240394830703735, + 0.023883093148469925, + -0.022100916132330894, + 0.00804323423653841, + 0.0013971924781799316, + -0.014916706830263138, + 0.014503727667033672, + -0.013163556344807148, + 0.12046481668949127, + 0.034664787352085114, + -0.0036309114657342434, + 0.07624446600675583, + -0.0800786167383194, + 0.01992437243461609, + -0.030288733541965485, + -0.0349765345454216, + -0.049420326948165894, + 0.024159405380487442, + -0.0150043535977602, + 0.07330545037984848, + 0.03214875981211662, + 0.06344849616289139, + -0.04698442295193672, + -0.05944976583123207, + 0.0738590881228447, + 0.04737839102745056, + -0.032769836485385895, + -0.027341483160853386, + -0.0981147363781929, + -0.07221706956624985, + 0.022163130342960358, + -0.05683589726686478, + -0.03721741586923599, + 0.10048764199018478, + 0.06072772294282913, + 0.020822133868932724, + 0.006135452538728714, + 0.0022500117775052786, + 0.026581328362226486, + 0.017049092799425125, + 0.05449691787362099, + 0.019130278378725052, + 0.09811218827962875, + 0.026780864223837852 + ], + "tumblr-logo-bold||*new*,social media,logos": [ + 0.01051422581076622, + -0.03456227108836174, + -0.02168387919664383, + 0.006989260669797659, + 0.1329631358385086, + -0.06627948582172394, + 0.05551736801862717, + -0.07542955130338669, + 0.05426967144012451, + 0.026600521057844162, + 0.04050588980317116, + 0.07374343276023865, + 0.027890576049685478, + -0.0501822754740715, + 0.0774473324418068, + -0.012792680412530899, + -0.02420143410563469, + 0.006559455301612616, + 0.02511768788099289, + -0.02077723667025566, + -0.01748552732169628, + 0.04294094443321228, + 0.017393808811903, + 0.03187292069196701, + 0.02011575736105442, + -0.018544483929872513, + -0.006900200620293617, + -0.029377995058894157, + -0.01783343404531479, + -0.0726839229464531, + 0.0006561827030964196, + -0.006714012008160353, + 0.082706019282341, + 0.024698201566934586, + 0.07051139324903488, + 0.04075499624013901, + 0.007410455495119095, + 0.03600091487169266, + 0.03209826722741127, + 0.018223904073238373, + 0.023580925539135933, + -0.09443294256925583, + 0.007523721549659967, + 0.05389595776796341, + -0.004671524278819561, + 0.0496378168463707, + -0.02936536632478237, + 0.007820133119821548, + 0.006805206649005413, + -0.017814788967370987, + -0.026523401960730553, + -0.13971178233623505, + -0.06218026950955391, + -0.030759094282984734, + 0.001094625680707395, + -0.0617595836520195, + -0.06640849262475967, + -0.060419127345085144, + 0.03543229401111603, + -0.026312144473195076, + 0.07191284745931625, + -0.020186131820082664, + 0.02176789566874504, + 0.11688593029975891, + 0.0791395828127861, + -0.04292963072657585, + 0.03097566030919552, + 0.07176133990287781, + -0.044245220720767975, + 0.07389669120311737, + 0.04670410603284836, + 0.02610432729125023, + -0.04177332669496536, + 0.045189253985881805, + -0.04467565938830376, + -0.022396529093384743, + 0.06901583820581436, + 0.006717818323522806, + -0.008539116010069847, + -0.046961843967437744, + 0.01362259779125452, + -0.005143471993505955, + 0.018847813829779625, + -0.005822405219078064, + 0.07682450860738754, + 0.059985361993312836, + -0.06642207503318787, + -0.07302949577569962, + -0.0530899278819561, + 0.036399126052856445, + -0.08281844109296799, + 0.062245775014162064, + 0.03310701251029968, + -0.010675243102014065, + -0.1244003027677536, + -0.008211762644350529, + -0.01595575548708439, + -0.055030617862939835, + -0.05003128945827484, + 0.1125887855887413, + -0.050300758332014084, + 0.08693426102399826, + 0.08886917680501938, + 0.00017028397996909916, + 0.04299836978316307, + 0.00966217927634716, + -0.0061225262470543385, + 0.0315416194498539, + 0.0017395543400198221, + 0.09929177165031433, + 0.03355976566672325, + -0.045274969190359116, + -0.044129833579063416, + -0.011369600892066956, + 0.0076424553990364075, + -0.04239067807793617, + -0.021011963486671448, + -0.03096681647002697, + 0.11736134439706802, + -0.013132271356880665, + -0.014274016954004765, + -0.021965568885207176, + -0.060393039137125015, + -0.0858352780342102, + -0.03317826986312866, + 0.046377986669540405, + -0.07381248474121094, + -1.4254374187502266e-33, + 0.04415011405944824, + 0.10460648685693741, + -0.006742666009813547, + 0.07570496946573257, + -0.006324609275907278, + 0.045767802745103836, + -0.07252705842256546, + -0.07037561386823654, + -0.13431623578071594, + 0.0020041384268552065, + 0.06942228227853775, + 0.016978470608592033, + 0.005911494605243206, + 0.10131128877401352, + 0.021232428029179573, + -0.05310312286019325, + -0.01992318034172058, + -0.048868678510189056, + -0.037084948271512985, + -0.05269460752606392, + -0.052355729043483734, + 0.03487694263458252, + -0.07708244025707245, + 0.03552226722240448, + -0.04930902272462845, + -0.1083601787686348, + 0.08954373002052307, + -0.03038056381046772, + -0.025744639337062836, + 0.024675941094756126, + 0.02136203832924366, + 0.06228279322385788, + 0.05497884005308151, + -0.00019715040980372578, + 0.02800125814974308, + -0.049077313393354416, + -0.009674571454524994, + -0.05075691267848015, + 0.031156489625573158, + 0.014746353961527348, + -0.022921370342373848, + 0.005057565867900848, + -0.05888640508055687, + 0.026345400139689445, + -0.006294662598520517, + 0.1907542198896408, + -0.04601117596030235, + -0.10060112923383713, + 0.05693229287862778, + 0.001903764670714736, + 0.033364687114953995, + -0.005389187019318342, + -0.0195742379873991, + -0.019541608169674873, + -0.01970653608441353, + -0.057518575340509415, + -0.059888530522584915, + 0.043458402156829834, + 0.02862233854830265, + -0.07611727714538574, + 0.039319172501564026, + 0.0019876016303896904, + 0.057195033878088, + 0.012091492302715778, + -0.02252691239118576, + 0.08150460571050644, + 0.01866762340068817, + -0.0001488279231125489, + 0.01675545610487461, + -0.0244973786175251, + -0.011492759920656681, + 0.0328238382935524, + 0.027354562655091286, + -0.008289770223200321, + -0.0550459623336792, + -0.008171581663191319, + -0.032309845089912415, + -0.04914534464478493, + -0.005657256580889225, + 0.04915793985128403, + -0.029552968218922615, + -0.019842645153403282, + -0.04602757841348648, + 0.045426905155181885, + 0.05330421030521393, + -0.0248766727745533, + 0.0444379523396492, + -0.03869595378637314, + -0.019241420552134514, + -0.0014980367850512266, + -0.05253992974758148, + 0.027534758672118187, + 0.002213536063209176, + 0.0027721228543668985, + -0.14669853448867798, + 9.286098296555793e-35, + 0.019886581227183342, + -0.0005828678840771317, + 0.03020777367055416, + 0.018517427146434784, + -0.061588648706674576, + -1.2304647498240229e-05, + 7.933477172628045e-05, + 0.052859701216220856, + 0.007177706807851791, + 0.0476197823882103, + 0.11775046586990356, + -0.015316583216190338, + -0.11456405371427536, + -0.020757779479026794, + 0.053901977837085724, + -0.01027511153370142, + 0.07298416644334793, + -0.014811762608587742, + -0.11715659499168396, + 0.03144178166985512, + 0.004187625367194414, + -0.023838048800826073, + -0.0314771942794323, + 0.06807103008031845, + 0.004562326706945896, + 0.0406821183860302, + 0.058189719915390015, + 0.05852324143052101, + -0.042867112904787064, + -0.0845029279589653, + -0.031357698142528534, + -0.019143592566251755, + 0.04913986474275589, + 0.0739578828215599, + -0.02368958480656147, + 0.04923664405941963, + -0.027561189606785774, + -0.09660980850458145, + 0.033600881695747375, + 0.028985969722270966, + 0.04572984203696251, + -0.0018131757387891412, + -0.011777844280004501, + 0.017996227368712425, + -0.09815748035907745, + -0.037580784410238266, + -0.11044406145811081, + -0.07394208014011383, + -0.05554229021072388, + 0.04227777570486069, + 0.02695942111313343, + -0.02870720438659191, + 0.033910591155290604, + -0.0035429210402071476, + -0.03071402944624424, + 0.0057714395225048065, + -0.014442680403590202, + 0.04544138163328171, + -0.04739256948232651, + 0.06447906047105789, + 5.6268490880029276e-05, + 0.03453889116644859, + -0.09200575947761536, + 0.012499150820076466, + -0.030838266015052795, + -0.04162418842315674, + -0.004795289598405361, + 0.01233766507357359, + -0.07853325456380844, + 0.08639772981405258, + -0.003173211356624961, + 0.06424778699874878, + -0.06730198115110397, + 0.012130619958043098, + -0.008986790664494038, + -0.058092255145311356, + 0.07649495452642441, + 0.045237042009830475, + -0.03573871776461601, + 0.047553371638059616, + -0.06158380210399628, + -0.012846744619309902, + -0.055562425404787064, + 0.09482687711715698, + 0.03088056854903698, + 0.0016347623895853758, + -0.0542408749461174, + 0.009894803166389465, + 0.004240183159708977, + -0.017757238820195198, + -0.04292086511850357, + 0.012574536725878716, + 0.044970568269491196, + 0.050570257008075714, + -0.023905577138066292, + -1.90442186465134e-08, + -0.038928329944610596, + -0.0989190936088562, + 0.0028961757197976112, + 0.014357486739754677, + 0.06873829662799835, + 0.0484963096678257, + -0.017963863909244537, + -0.11948899924755096, + -0.010956600308418274, + 0.01897731050848961, + -0.008165561594069004, + 0.030820485204458237, + -0.01785583235323429, + 0.032137684524059296, + -0.001878202660009265, + -0.011990594677627087, + -0.06982641667127609, + 0.01741696707904339, + 0.002483583288267255, + -0.07446403056383133, + -0.04129893705248833, + 0.03833671286702156, + -0.006159319542348385, + -0.00113109708763659, + 0.013833358883857727, + 0.03977441042661667, + -0.05265181139111519, + -0.0717969760298729, + -0.012161960825324059, + 0.012162542901933193, + -0.0004337446007411927, + 0.04863175004720688, + 0.0020021642558276653, + 0.0018424515146762133, + -0.08663246035575867, + -0.018221722915768623, + -0.06712955236434937, + -0.03246874734759331, + -0.03882825747132301, + 0.046829625964164734, + 0.04338223487138748, + 0.04297449812293053, + 0.030856844037771225, + -0.011681506410241127, + -0.07579655200242996, + 0.0162747111171484, + 0.0732034221291542, + 0.041224826127290726, + -0.06559540331363678, + -0.09550321847200394, + -0.025945251807570457, + 0.023844657465815544, + 0.009436017833650112, + 0.06253813952207565, + -0.042293842881917953, + -0.06266678869724274, + 0.01918869838118553, + 0.13959185779094696, + 0.015906529501080513, + 0.07191478461027145, + 0.12156113237142563, + -0.04999084025621414, + -0.00820857658982277, + -0.022689733654260635 + ], + "twitch-logo-bold||logos,streaming,livestream,gaming,video games,social media": [ + 0.003935974556952715, + -0.012838305905461311, + 0.005688981618732214, + -0.07803449779748917, + 0.11144869774580002, + -0.008174953050911427, + 0.08433523774147034, + -0.03835665434598923, + 0.07774082571268082, + 0.023751022294163704, + 0.002581004286184907, + 0.03296608850359917, + -0.03665155917406082, + -0.01843993179500103, + 0.044263504445552826, + -0.04449080675840378, + 0.015445542521774769, + -0.013969364576041698, + 0.04421527683734894, + -0.07460027933120728, + 0.05881083756685257, + -0.05132962018251419, + -0.01372609380632639, + 0.04157537221908569, + 0.04754610359668732, + 0.04747503995895386, + -0.0032906734850257635, + 0.07044213265180588, + 0.06092039868235588, + -0.09080588072538376, + -0.02593173272907734, + -0.0013564827386289835, + 0.012103886343538761, + -0.003611853579059243, + -0.017824659124016762, + -0.013612070120871067, + 0.013750305399298668, + -0.04155445843935013, + -0.0809871107339859, + 0.047066960483789444, + 0.07766678929328918, + -0.04840903356671333, + 0.03382057324051857, + 0.03558967262506485, + 0.0014657484134659171, + 0.07343242317438126, + -0.07832065969705582, + -0.01695794053375721, + -0.03129082918167114, + 0.0673542395234108, + -0.030325451865792274, + -0.13908787071704865, + -0.04440539702773094, + -0.02678871341049671, + 0.036445628851652145, + -0.027048977091908455, + -0.05827900767326355, + 0.027116157114505768, + 0.07316741347312927, + -0.027785133570432663, + 0.05598236620426178, + -0.04265821725130081, + 0.008197421208024025, + 0.06976713240146637, + 0.02668670192360878, + -0.037062663584947586, + -0.00742689473554492, + 0.07641246914863586, + 0.0163431316614151, + 0.005238603334873915, + 0.01928606443107128, + 0.013758547604084015, + -0.0208817720413208, + -0.019090751186013222, + -0.027233650907874107, + -0.0316128134727478, + 0.07683393359184265, + -0.0018970119999721646, + -0.005763073451817036, + -0.05658693239092827, + 0.024031957611441612, + -0.038853004574775696, + -0.013496802188456059, + -0.052439115941524506, + 0.06608723104000092, + 0.06734032183885574, + -0.04607778415083885, + -0.058357566595077515, + -0.01702677272260189, + 0.008292628452181816, + -0.18945850431919098, + 0.07663711160421371, + 0.09516569972038269, + 0.00014532577188219875, + -0.0770665630698204, + 0.07809127122163773, + -0.023317202925682068, + -0.07959536463022232, + -0.041919685900211334, + 0.1013023778796196, + -0.005997090134769678, + 0.04000484570860863, + 0.07168460637331009, + 0.031993985176086426, + 0.03525925055146217, + 0.0022914258297532797, + -0.00838773138821125, + 0.09690141677856445, + 0.05077705159783363, + 0.07031238079071045, + -0.07082738727331161, + 0.037390828132629395, + -0.05595938116312027, + -0.035438135266304016, + -0.01649007946252823, + -0.001816940726712346, + -0.07893015444278717, + 0.0029591384809464216, + 0.10598177462816238, + -0.01516213733702898, + 0.0007949472055770457, + 0.002083635190501809, + -0.027785221114754677, + -0.05963250994682312, + 0.04248931258916855, + 0.0035184051375836134, + -0.030604824423789978, + -2.8698151738990695e-33, + 0.061771661043167114, + 0.05781204625964165, + -0.0030564682092517614, + 0.061430178582668304, + -0.01747768744826317, + 0.05619990453124046, + 0.01766570843756199, + -0.03151465952396393, + -0.09797261655330658, + 0.015259456820786, + -0.0013562708627432585, + 0.0767219215631485, + -0.03941715508699417, + 0.15771356225013733, + 0.07091683894395828, + -0.0934620201587677, + -0.016949301585555077, + -0.04970706254243851, + -0.05592528358101845, + -0.07640209048986435, + -0.011946136131882668, + 0.018446914851665497, + -0.0237616878002882, + 0.023267218843102455, + -0.017330003902316093, + -0.04620932787656784, + -0.01460537314414978, + -0.06208081915974617, + -0.0005109031335450709, + 0.03074866347014904, + 0.05782955884933472, + -0.0006037689745426178, + 0.010727611370384693, + -0.06117954105138779, + 0.03400413319468498, + -0.0635257437825203, + -0.03408518806099892, + -0.08655344694852829, + -0.017854657024145126, + 0.06161092221736908, + -0.004903240129351616, + -0.04035235941410065, + -0.12334286421537399, + -0.025661105290055275, + -0.06880498677492142, + 0.09166394919157028, + 0.016987571492791176, + -0.1243399977684021, + 0.018375566229224205, + -0.03319241851568222, + -0.003168135415762663, + -0.00046253352775238454, + 0.02740224450826645, + -0.025340549647808075, + -0.007300889119505882, + -0.03354082629084587, + -0.04021778702735901, + 0.02741512469947338, + -0.006815330125391483, + -0.03205448016524315, + 0.0007766206981614232, + -0.003481760621070862, + 0.062497418373823166, + -0.004557700362056494, + -0.03276006132364273, + 0.04781689867377281, + 0.09424024820327759, + 0.031002001836895943, + 0.041680000722408295, + -0.056194402277469635, + 0.00023649005743209273, + 0.03806265816092491, + 0.04951643571257591, + -0.017649967223405838, + -0.07482746243476868, + 0.01635613851249218, + -0.04216330125927925, + -0.024714060127735138, + -0.06063074618577957, + 0.07915248721837997, + -0.058148663491010666, + -0.03577250614762306, + -0.002214526291936636, + 0.04439479857683182, + 0.0542156882584095, + 0.02645021677017212, + 0.06025597080588341, + -0.13895969092845917, + -0.04605137184262276, + -0.005609475541859865, + -0.15702849626541138, + 0.07192319631576538, + 0.06989347189664841, + 0.006673486903309822, + -0.08879821002483368, + 1.3751269033835058e-33, + -0.02431577816605568, + 0.033672623336315155, + 0.04838649556040764, + 0.02126319333910942, + -0.011038398370146751, + -0.029516831040382385, + 0.08357102423906326, + 0.056390825659036636, + 0.020186064764857292, + 0.005717850755900145, + 0.03199755400419235, + -0.02645573578774929, + -0.13627050817012787, + -0.03129475563764572, + -0.0454593263566494, + -0.025511953979730606, + 0.03181951493024826, + -0.008265567012131214, + -0.02365223504602909, + 0.011658807285130024, + -0.005569966044276953, + -0.07083245366811752, + -0.07133617997169495, + 0.04954569786787033, + 0.029786424711346626, + 0.04391364008188248, + 0.057476457208395004, + -0.018843354657292366, + -0.06769103556871414, + 0.014100193977355957, + 0.02405581623315811, + 0.008359484374523163, + 0.04588069021701813, + 0.04347853735089302, + 0.026507560163736343, + 0.04461335763335228, + 0.06294633448123932, + 0.0038230400532484055, + 0.0022547368425875902, + -0.0356745570898056, + 0.02596108987927437, + 0.014701764099299908, + 0.04292725771665573, + 0.03606396168470383, + 0.028681719675660133, + 0.019147338345646858, + -0.1004435271024704, + -0.05350090563297272, + -0.10819336026906967, + 0.050498560070991516, + 0.0372399277985096, + -0.028124667704105377, + 0.010669597424566746, + 0.04755470156669617, + -0.05733494088053703, + -0.07441037148237228, + -0.014840307645499706, + 0.053517717868089676, + 0.0030655069276690483, + 0.030296633020043373, + 0.05927431583404541, + -0.03212474659085274, + -0.12260886281728745, + 0.03630010783672333, + 0.04073907807469368, + 0.0019289079355075955, + 0.07895614951848984, + -0.017757991328835487, + -0.03341030329465866, + -0.019934814423322678, + 0.0165545716881752, + -0.015020734630525112, + -0.038323476910591125, + 0.01822478324174881, + -0.05701468139886856, + -0.021085113286972046, + 0.05971211940050125, + 0.07728690654039383, + -0.009562171995639801, + 0.03249344974756241, + -0.025469783693552017, + 0.007643586955964565, + -0.06350892782211304, + 0.030441148206591606, + 0.052480295300483704, + 0.02315739169716835, + 0.044845789670944214, + -0.006577415391802788, + 0.006415790878236294, + -0.05199894681572914, + 0.014955965802073479, + 0.04924456775188446, + -0.01805303618311882, + 0.023583516478538513, + 0.029754161834716797, + -1.9919163207759993e-08, + -0.04366964101791382, + -0.029374385252594948, + -0.020989924669265747, + -0.014573082327842712, + 0.0283781997859478, + 0.015046417713165283, + -0.0036388568114489317, + -0.10531938821077347, + 0.036195993423461914, + -0.04178459569811821, + 0.0072117955423891544, + -0.05446460470557213, + -0.053850725293159485, + -0.012193846516311169, + 0.07130952179431915, + -0.0300709530711174, + -0.14798545837402344, + 0.06831122189760208, + -0.003832791233435273, + 0.020234717056155205, + -0.05408494547009468, + 0.08516345918178558, + 0.018119245767593384, + -0.05077308416366577, + -0.02907741256058216, + -0.009169367142021656, + 0.04939684644341469, + -0.03850576654076576, + 0.07255527377128601, + -0.011649368330836296, + 0.003254308132454753, + 0.07017280161380768, + 0.05755220726132393, + -0.04400840774178505, + -0.08085033297538757, + 0.014174073934555054, + 0.008041140623390675, + -0.006745708640664816, + -0.03078502230346203, + 0.03815099596977234, + 0.054109763354063034, + -0.05534973368048668, + 0.0435062050819397, + -0.026714833453297615, + -0.02858683466911316, + 0.046321380883455276, + 0.0468190498650074, + 0.00287768361158669, + -0.029973139986395836, + -0.09117470681667328, + -0.04270131140947342, + 0.0702885165810585, + 0.014392007142305374, + 0.020142583176493645, + -0.007549547590315342, + -0.05990877375006676, + 0.036199212074279785, + 0.06118738651275635, + 0.011543982662260532, + -0.023378467187285423, + 0.15164348483085632, + -0.005349048413336277, + -0.04386011138558388, + -0.0007194906938821077 + ], + "twitter-logo-bold||logos,social media,tweets,birds": [ + 0.03047461435198784, + 0.03281180560588837, + -0.015260880813002586, + -0.006495687644928694, + 0.10861710458993912, + -0.049040134996175766, + 0.058423057198524475, + -0.03863506764173508, + 0.1343250423669815, + 0.021409204229712486, + 0.035996247082948685, + 0.06870045512914658, + 0.024328790605068207, + -0.02194700576364994, + 0.02580161951482296, + -0.007651167921721935, + -0.02500917576253414, + -0.02547704242169857, + 0.05823807045817375, + -0.06798108667135239, + -0.04995030537247658, + 0.03664633259177208, + 0.02372668869793415, + 0.04978395998477936, + 0.031215084716677666, + 0.005132530815899372, + -0.05429375171661377, + -0.03006332367658615, + -0.025066865608096123, + -0.04459990933537483, + -0.07546601444482803, + -0.004298112355172634, + 0.025768844410777092, + 0.03922932967543602, + -0.024773476645350456, + 0.03290695324540138, + -0.0015543835470452905, + 0.0057821874506771564, + 0.049106497317552567, + 0.03588104993104935, + 0.03481603041291237, + -0.13653400540351868, + -0.010365103371441364, + 0.0356312170624733, + -0.029982244595885277, + 0.04653504118323326, + -0.07973013073205948, + 0.016816839575767517, + -0.060053225606679916, + 0.009302549064159393, + -0.02211337722837925, + -0.10401900112628937, + -0.0801856741309166, + -0.006273147650063038, + 0.01897028461098671, + 0.010130694136023521, + -0.060918260365724564, + -0.003858973039314151, + 0.03551097586750984, + -0.029141437262296677, + 0.03215593472123146, + -0.0003814772062469274, + 0.008731813170015812, + 0.10241533070802689, + 0.09241174161434174, + -0.01705103926360607, + -0.04411628469824791, + 0.08224616944789886, + -0.048046085983514786, + 0.03359589725732803, + 0.0881710797548294, + 0.020481308922171593, + -0.02236182428896427, + -0.012549271807074547, + -0.029776010662317276, + 0.025240598246455193, + 0.08757655322551727, + 0.0013090957654640079, + -0.016289042308926582, + -0.045245397835969925, + -0.02562127634882927, + -0.03434768319129944, + -0.01482305582612753, + -0.04627267271280289, + 0.07625064253807068, + 0.054146140813827515, + -0.09929431974887848, + -0.03896081820130348, + -0.03672314062714577, + 0.02252803184092045, + -0.08909962326288223, + 0.04108262434601784, + 0.051186226308345795, + -0.010769005864858627, + -0.05829424411058426, + 0.02235245145857334, + -0.022985728457570076, + -0.11688918620347977, + -0.07213102281093597, + 0.09315040707588196, + -0.05673811584711075, + 0.05570748448371887, + 0.10853493958711624, + -0.032076578587293625, + 0.029332468286156654, + 0.04448643699288368, + -0.013332095928490162, + 0.003986205905675888, + 0.052502330392599106, + 0.0796731635928154, + -0.017864219844341278, + -0.009287145920097828, + -0.07142732292413712, + -0.014525304548442364, + -0.011456786654889584, + -0.08844446390867233, + -0.044862255454063416, + -0.022045796737074852, + 0.13394179940223694, + -0.02549886889755726, + -0.0027727880515158176, + 0.0022007666993886232, + -0.0601237490773201, + -0.09543000906705856, + 0.013518104329705238, + 0.05413953959941864, + -0.07534690201282501, + -2.1498366389639266e-33, + 0.08052200078964233, + 0.059268221259117126, + 0.013480497524142265, + 0.07078750431537628, + 0.03484712541103363, + 0.06111527979373932, + -0.08515152335166931, + -0.06874649971723557, + -0.13206157088279724, + -0.0004901098436675966, + -0.004674956202507019, + 0.06064565107226372, + -0.020188862457871437, + 0.08239389210939407, + 0.08297503739595413, + -0.05662244185805321, + -0.008626324124634266, + -0.02359025925397873, + -0.042360950261354446, + -0.05809425935149193, + -0.03801273927092552, + 0.07732193171977997, + -0.07136678695678711, + 0.0034881276078522205, + -0.017853515222668648, + -0.07841362804174423, + 0.07692880928516388, + -0.08933667838573456, + -0.043929655104875565, + 0.0326530747115612, + 0.022600160911679268, + 0.04024126008152962, + 0.0028032625559717417, + -0.004499739967286587, + 0.029368434101343155, + -0.04233582317829132, + -0.02920532412827015, + -0.06820213049650192, + 0.013848630711436272, + 0.04175720736384392, + 0.02009803056716919, + -0.02510961703956127, + -0.015283471904695034, + 0.024328116327524185, + 0.0016476806486025453, + 0.16345684230327606, + 0.00932000670582056, + -0.07466907799243927, + 0.06194807216525078, + 0.010350250639021397, + 0.043991636484861374, + -0.03614288195967674, + -0.0395624004304409, + -0.06878909468650818, + -0.004618848208338022, + -0.03740163892507553, + -0.03827877715229988, + 0.04295793175697327, + 0.033046938478946686, + -0.02792344242334366, + 0.0027011688798666, + -0.02834772877395153, + 0.0708230584859848, + -0.04152385890483856, + 0.014452886767685413, + 0.03385738655924797, + -0.06178669258952141, + 0.012559411115944386, + 0.006838412955403328, + -0.005145747680217028, + 0.05808677151799202, + 0.05674227699637413, + 0.037328027188777924, + -0.04752105474472046, + -0.09008253365755081, + 0.027445990592241287, + 0.006843263283371925, + 0.003706853836774826, + 0.021318474784493446, + 0.07610007375478745, + -0.024799874052405357, + -0.02618672512471676, + 0.018534613773226738, + -0.003189254552125931, + 0.037683095782995224, + 0.04778281971812248, + 0.032559968531131744, + -0.05837780982255936, + -0.01806679368019104, + 0.023920109495520592, + -0.07753147184848785, + 0.06404618173837662, + 0.028382720425724983, + -0.00958454329520464, + -0.14001432061195374, + 2.5891902340467303e-34, + -0.035161446779966354, + -0.013080473057925701, + 0.033194709569215775, + 0.045711033046245575, + -0.024358125403523445, + -0.01695765182375908, + 0.010929442942142487, + 0.05360617861151695, + -0.008561617694795132, + 0.03393404930830002, + 0.027628319337964058, + 0.0042705112136900425, + -0.14804796874523163, + -0.07216096669435501, + -0.008799893781542778, + -0.028164181858301163, + 0.10585243254899979, + -0.014494244009256363, + -0.09417178481817245, + 0.0017713659908622503, + 0.006925727240741253, + -0.05080452561378479, + -0.05464502424001694, + 0.09903079271316528, + -0.027301909402012825, + 0.03611161932349205, + 0.054382406175136566, + 0.003319739131256938, + -0.08939240872859955, + -0.025134332478046417, + -0.04577776789665222, + -0.014404024928808212, + 0.040980011224746704, + 0.05934302881360054, + -0.0025280113331973553, + 0.04920530691742897, + -0.02987261489033699, + -0.052183687686920166, + 0.045462194830179214, + 0.015304211527109146, + 0.05168723315000534, + -0.0037038240116089582, + 0.016913680359721184, + 0.024578314274549484, + -0.037886373698711395, + 0.00819212757050991, + -0.10197170823812485, + -0.11395624279975891, + -0.08322115987539291, + 0.07972674816846848, + 0.043854136019945145, + -0.013924947939813137, + 0.024425389245152473, + 0.03716874122619629, + -0.052325539290905, + -0.07193051278591156, + -0.016360018402338028, + 0.03267717733979225, + -0.004306950140744448, + 0.04218222200870514, + 0.012039502151310444, + 0.03590758889913559, + -0.05458945408463478, + 0.028552524745464325, + -0.02236299030482769, + -0.06587442010641098, + -0.005789007991552353, + -0.021602284163236618, + -0.02859700284898281, + 0.029151882976293564, + 0.05536133050918579, + 0.009249416179955006, + -0.04078010469675064, + 0.0050334990955889225, + -0.011286234483122826, + -0.04718012362718582, + 0.0727381631731987, + 0.0656786635518074, + -0.04738650843501091, + 0.06011977419257164, + -0.02805129811167717, + -0.003072977066040039, + -0.0824117511510849, + 0.06114112585783005, + 0.022943396121263504, + 0.01634354330599308, + -0.019230661913752556, + 0.018410896882414818, + 0.007909932173788548, + 0.01761322095990181, + 0.014643209055066109, + 0.08097660541534424, + 0.013899330049753189, + 0.042744264006614685, + 0.002791640581563115, + -1.890800049864083e-08, + -0.0409214161336422, + -0.05265803262591362, + -0.010893591679632664, + 0.027674108743667603, + 0.08462460339069366, + 0.02529090642929077, + 0.03433556109666824, + -0.0939849317073822, + 0.01037297211587429, + 0.0010360258165746927, + -0.04530814290046692, + -0.024440428242087364, + -0.06300831586122513, + -0.01115865632891655, + 0.02326713688671589, + -0.010596618056297302, + -0.1254110038280487, + -0.00520620122551918, + 0.001478500897064805, + -0.01661449670791626, + -0.09041396528482437, + 0.08079878240823746, + -0.003428262658417225, + -0.028290769085288048, + 0.03738711029291153, + 0.03733095899224281, + -0.04329495504498482, + -0.040875572711229324, + 0.03999718278646469, + 0.014672302640974522, + -0.002478442620486021, + 0.07370559126138687, + -0.03933798894286156, + -0.013043321669101715, + -0.0977448895573616, + -0.019201066344976425, + 0.015137814916670322, + -0.045672208070755005, + -0.01982402801513672, + 0.027781803160905838, + 0.03368940204381943, + 0.016601193696260452, + 0.023251011967658997, + -0.03696804493665695, + -0.06326351314783096, + 0.03273314610123634, + 0.05196917802095413, + 0.030927708372473717, + -0.038228295743465424, + -0.07918710261583328, + -0.024266831576824188, + 0.04222646728157997, + 0.01847882941365242, + 0.06264057010412216, + -0.013983147218823433, + -0.07680882513523102, + 0.054919663816690445, + 0.07225046306848526, + 0.06453613936901093, + 0.017591996118426323, + 0.16550977528095245, + -0.07418277859687805, + -0.021975934505462646, + -0.010503622703254223 + ], + "umbrella-bold||raining,rainy,insurance": [ + 0.029212677851319313, + 0.07542610168457031, + 0.06720777601003647, + 0.07945280522108078, + 0.11645045876502991, + 0.013766882941126823, + 0.15120677649974823, + -0.07571182399988174, + 0.019050540402531624, + -0.0009550652466714382, + 0.012643196620047092, + -0.040857236832380295, + -0.0012954953126609325, + -0.0021640504710376263, + -0.02192169800400734, + 0.04157351702451706, + -0.033769041299819946, + -0.009625890292227268, + -0.01720603182911873, + 0.006044503301382065, + -0.039611585438251495, + 0.04737548157572746, + -0.04475192353129387, + 0.019449852406978607, + 0.015150250867009163, + 0.055818088352680206, + 0.04427152872085571, + 0.028553420677781105, + 0.011119885370135307, + -0.08046261221170425, + 0.0417921207845211, + 0.01917404495179653, + 0.0745711550116539, + -0.022767169401049614, + 0.03812132775783539, + -0.04184933751821518, + -0.015931138768792152, + -0.061875827610492706, + -0.04004853963851929, + 0.037383005023002625, + 0.03720986098051071, + -0.01623484678566456, + -0.05534185841679573, + -0.0483727864921093, + -0.02543468587100506, + -0.02510000951588154, + 0.018809569999575615, + 0.06945863366127014, + 0.01997414231300354, + 0.03904178738594055, + -0.005749342497438192, + -0.06127433478832245, + -0.06505852937698364, + -0.07565619051456451, + -0.0021663077641278505, + -0.014865197241306305, + -0.013791967183351517, + -0.01353172305971384, + 0.03893476724624634, + -0.019105255603790283, + 0.016012854874134064, + 0.02635648287832737, + -0.08412639051675797, + 0.07950741052627563, + 0.07300771027803421, + -0.009373060427606106, + -0.03746036812663078, + 0.09251819550991058, + -0.04796336591243744, + 0.04520546644926071, + 0.01689710095524788, + 0.09796369820833206, + 0.04006785526871681, + -0.014031078666448593, + -0.10221178084611893, + -0.004575056489557028, + 0.03268395736813545, + -0.042105477303266525, + -0.04395681619644165, + -0.020614685490727425, + -0.046170007437467575, + -0.053941112011671066, + -0.0024731403682380915, + -0.020222973078489304, + 0.0338171012699604, + 0.0673777312040329, + -0.027565613389015198, + -0.02718706801533699, + -0.04335230961441994, + -0.038983989506959915, + -0.055762480944395065, + -0.09471015632152557, + 0.027251411229372025, + 0.08059100806713104, + -0.07646683603525162, + 0.09425509721040726, + 0.07583128660917282, + -0.11037030816078186, + -0.061338841915130615, + 0.09765581786632538, + 0.021082153543829918, + 0.03204962983727455, + 0.012373802252113819, + -0.011025018990039825, + 0.004541792906820774, + -0.043608810752630234, + -0.046151455491781235, + -0.04761885851621628, + 0.019714446738362312, + 0.002757488517090678, + 0.0020583909936249256, + -0.12189866602420807, + 0.035968564450740814, + -0.029428623616695404, + -0.056516919285058975, + -0.041366975754499435, + -0.07963456958532333, + -0.048048269003629684, + 0.09025246649980545, + 0.010020595043897629, + -0.02424103021621704, + 0.014719031751155853, + -0.007863692007958889, + -0.004812648985534906, + 0.0012325331335887313, + -0.020634088665246964, + 0.07859393954277039, + -4.5704182795970274e-33, + 0.05608557537198067, + 0.012695643119513988, + -0.010332315228879452, + 0.10322926938533783, + 0.10320037603378296, + -0.0399380587041378, + -0.009753704071044922, + -0.004591669887304306, + -0.1092977374792099, + 0.05088368430733681, + 0.028614338487386703, + 0.03530498966574669, + -0.04401396960020065, + 0.01274790521711111, + 0.08205646276473999, + -0.030619563534855843, + 0.014280512928962708, + 0.034853074699640274, + -0.05198945105075836, + 0.031139258295297623, + -0.11197026073932648, + -0.025595027953386307, + -0.03698328882455826, + -0.030818365514278412, + -0.0037547554820775986, + -0.012822086922824383, + 0.06654691696166992, + -0.011555388569831848, + 0.04592565447092056, + 0.059326279908418655, + 0.06285734474658966, + 0.07546252012252808, + 0.08431039750576019, + 0.05767509341239929, + -0.022327233105897903, + 0.005661722272634506, + -0.06756088137626648, + -0.012257317081093788, + -0.02204943262040615, + -0.015544859692454338, + -0.10114540904760361, + -0.07114773988723755, + -0.018436655402183533, + 0.012726571410894394, + 0.0460614338517189, + 0.025032363831996918, + 0.01172091718763113, + -0.044403012841939926, + -0.03278044983744621, + -0.06417655199766159, + -0.010240932926535606, + 0.04910958930850029, + -0.0003655993496067822, + -0.015345062129199505, + 0.010912210680544376, + -0.004076967481523752, + 0.05311758071184158, + 0.09649522602558136, + -0.0016845809295773506, + -0.054668035358190536, + 9.023480379255489e-05, + 0.031112616881728172, + 0.006704084109514952, + -0.09718848764896393, + 0.008647714741528034, + 0.014795545488595963, + -0.03154231607913971, + 0.011646958999335766, + 0.07119481265544891, + -0.025899367406964302, + 0.0033716412726789713, + 0.05613206699490547, + 0.07380537688732147, + 0.0679948478937149, + 0.01727394014596939, + 0.031106211245059967, + -0.018009303137660027, + -0.030669599771499634, + 0.04418478161096573, + -0.012259026058018208, + -0.12419746071100235, + 0.061599619686603546, + 0.01504379790276289, + 0.046300798654556274, + 0.021925704553723335, + 0.037136804312467575, + 0.03169525787234306, + -0.0014435792108997703, + -0.06954210251569748, + 0.003035658737644553, + -0.019777348265051842, + 0.040152907371520996, + 0.0752628892660141, + -0.09452303498983383, + 0.003055730601772666, + 1.0853740662260391e-33, + 0.05023796111345291, + 0.016479728743433952, + -0.028909238055348396, + -0.058950748294591904, + -0.01074947789311409, + 0.041854336857795715, + -0.021649261936545372, + 0.013356233015656471, + 0.00716992374509573, + 0.03997306525707245, + -0.0874909833073616, + -0.0004518350469879806, + -0.05659690499305725, + -0.0523483082652092, + 0.0662967711687088, + 0.01276978850364685, + 0.00812231469899416, + 0.009878605604171753, + -0.010558828711509705, + -0.022161899134516716, + -0.008953822776675224, + -0.0588940754532814, + 0.026107069104909897, + 0.12628774344921112, + -0.06440698355436325, + 0.034122128039598465, + 0.062369655817747116, + -0.04146962985396385, + -0.04329493269324303, + 0.015545218251645565, + -0.09698633849620819, + 0.004289732314646244, + -0.047475770115852356, + 0.07526639103889465, + -0.09291243553161621, + 0.0064801378175616264, + -0.019987227395176888, + -0.10037393867969513, + -0.0638466626405716, + -0.03437274321913719, + -0.01909824274480343, + -0.05046414956450462, + 0.11271261423826218, + -0.05235336720943451, + 0.0436834841966629, + -0.07976668328046799, + 0.00010120787919731811, + -0.01963195763528347, + 0.03917727246880531, + -0.0137889813631773, + -0.023596912622451782, + -0.0038398252800107002, + -0.029350822791457176, + 0.12390134483575821, + 0.00865867268294096, + -0.09452255815267563, + -0.0013302282895892859, + -0.1113298237323761, + -0.09748172760009766, + 0.06050753593444824, + -0.038480740040540695, + 0.04161953553557396, + 0.016205333173274994, + 0.10801386833190918, + -0.04442178085446358, + -0.06690788269042969, + -0.07854638248682022, + -0.05645722523331642, + 0.023121360689401627, + 0.00045124610187485814, + 0.009576739743351936, + -0.01807010918855667, + -0.08741822838783264, + 0.013152534142136574, + 0.03689243271946907, + -0.013582429848611355, + 0.043368399143218994, + 0.0671464279294014, + -0.05723543092608452, + 0.03469192609190941, + -0.02326425164937973, + 0.011593555100262165, + -0.09666673094034195, + 0.07972142100334167, + 0.006036757025867701, + -0.08740093559026718, + 0.03938337415456772, + -0.0658242404460907, + -0.006064281798899174, + 0.07672756165266037, + -0.04833998158574104, + 0.10730284452438354, + -0.008596605621278286, + -0.008768221363425255, + -0.0406910702586174, + -1.4768028577805126e-08, + -0.038315095007419586, + 0.02714632824063301, + -0.018054982647299767, + -0.05727289989590645, + 0.027860013768076897, + -0.07972632348537445, + -0.032506220042705536, + -0.035791076719760895, + -0.051289938390254974, + -0.07648984342813492, + -0.0022128636483103037, + 0.030420975759625435, + -0.005236109718680382, + 0.09810090065002441, + 0.01601416990160942, + 0.0039503080770373344, + 0.039502717554569244, + 0.016238542273640633, + -0.05111401528120041, + -0.008604736067354679, + -0.0009307201253250241, + 0.022463900968432426, + -0.02390819974243641, + -0.012135853059589863, + -0.008613426238298416, + 0.05280572921037674, + -0.049477800726890564, + -0.053404297679662704, + 0.10235852003097534, + 0.13572005927562714, + -0.008585313335061073, + 0.057062458246946335, + -0.024361513555049896, + 0.034983083605766296, + -0.04183356463909149, + -0.003282335354015231, + 0.0713660940527916, + -0.0002496739907655865, + -0.04390532150864601, + 0.10643348097801208, + 0.03477945923805237, + 0.00316641922108829, + 0.01748252473771572, + -0.032187703996896744, + 0.03429030627012253, + 0.019978003576397896, + 0.01600486971437931, + -0.031141111627221107, + -0.06600020080804825, + -0.03351738676428795, + -0.013189161196351051, + -0.03430528566241264, + 0.0004586259601637721, + 0.09612836688756943, + 0.008896082639694214, + -0.03646712005138397, + 0.0013775763800367713, + 0.01565617509186268, + -0.04207192733883858, + 0.03549902141094208, + 0.090971440076828, + -0.05294453725218773, + -0.002402321668341756, + 0.06227429211139679 + ], + "umbrella-simple-bold||raining,rainy,insurance": [ + 0.04870065674185753, + 0.07598909735679626, + 0.07052895426750183, + 0.08186941593885422, + 0.11692803353071213, + 0.017641309648752213, + 0.14130909740924835, + -0.05850802734494209, + 0.0029553852509707212, + 0.009498324245214462, + 0.008737103082239628, + -0.04919616878032684, + 3.842196747427806e-07, + -0.0010073311859741807, + -0.023801274597644806, + 0.024864191189408302, + -0.04349350929260254, + -0.02507864125072956, + -0.024323664605617523, + 0.01708937995135784, + -0.04303596913814545, + 0.03609857335686684, + -0.06255992501974106, + 0.013230332173407078, + 0.00762693677097559, + 0.06215523183345795, + 0.043453481048345566, + 0.044854484498500824, + 0.034421518445014954, + -0.0837119072675705, + 0.03654962405562401, + 0.02888316474854946, + 0.08674236387014389, + -0.020793061703443527, + 0.03640972077846527, + -0.045339375734329224, + -0.01151618268340826, + -0.04512355104088783, + -0.039263952523469925, + 0.038334038108587265, + 0.019530564546585083, + -0.02697661705315113, + -0.05743160843849182, + -0.025274069979786873, + -0.03307622671127319, + -0.025681588798761368, + 0.012888142839074135, + 0.06811822205781937, + 0.014874986372888088, + 0.024285459890961647, + 0.0034310107585042715, + -0.0611935593187809, + -0.07974329590797424, + -0.08900543302297592, + 0.006020753178745508, + -0.007721784524619579, + -0.02758767455816269, + -0.005527216475456953, + 0.03885363042354584, + -0.03037191368639469, + 0.023544790223240852, + 0.007847280241549015, + -0.08156497031450272, + 0.07683788239955902, + 0.07036491483449936, + -0.010300842113792896, + -0.03950346261262894, + 0.07615816593170166, + -0.049094632267951965, + 0.0400952473282814, + 0.022621801123023033, + 0.08796102553606033, + 0.02664947509765625, + 0.007232497911900282, + -0.1045122891664505, + -0.03143284097313881, + 0.0210367850959301, + -0.030666759237647057, + -0.05293072760105133, + -0.0060205464251339436, + -0.06992173194885254, + -0.05596648156642914, + -0.018189404159784317, + -0.0019041619962081313, + 0.03524516150355339, + 0.05799112468957901, + -0.027423594146966934, + -0.03294314816594124, + -0.02830105647444725, + -0.03959300369024277, + -0.04153383523225784, + -0.07220564782619476, + 0.03838292136788368, + 0.07701020687818527, + -0.07232926040887833, + 0.08769939839839935, + 0.07995141297578812, + -0.1037328913807869, + -0.08012127876281738, + 0.10056444257497787, + 0.013799956068396568, + 0.03597891330718994, + 0.047010090202093124, + -0.029613012447953224, + -0.0004990821471437812, + -0.048962634056806564, + -0.04281332716345787, + -0.06312234699726105, + 0.02318415977060795, + -0.010549458675086498, + -0.010698659345507622, + -0.12654370069503784, + 0.03660642355680466, + -0.030547212809324265, + -0.040462642908096313, + -0.03589729592204094, + -0.07915525883436203, + -0.05253152176737785, + 0.09230831265449524, + 0.03106650337576866, + -0.018591061234474182, + 0.01826760731637478, + -0.009600430727005005, + -0.0009006365435197949, + -0.011884565465152264, + -0.013329693116247654, + 0.08869080245494843, + -4.4932349531800514e-33, + 0.06390904635190964, + 0.022366447374224663, + -0.014085087925195694, + 0.12029259651899338, + 0.0929160788655281, + -0.04694514721632004, + -0.019845690578222275, + -0.005027687642723322, + -0.09661894291639328, + 0.05220542103052139, + 0.05618134140968323, + 0.030337167903780937, + -0.045911774039268494, + 0.03531589359045029, + 0.08275873214006424, + -0.02494647353887558, + 0.024954117834568024, + 0.037147752940654755, + -0.04834567382931709, + 0.02174358069896698, + -0.11305007338523865, + 0.01126878708600998, + -0.03289584815502167, + -0.051983051002025604, + -0.00699366582557559, + -0.017548685893416405, + 0.07343947887420654, + -0.019680999219417572, + 0.030680086463689804, + 0.05337057262659073, + 0.07509475201368332, + 0.06541582196950912, + 0.0806632786989212, + 0.061472438275814056, + -0.0243705902248621, + -0.004449388477951288, + -0.042549144476652145, + -0.013307836838066578, + -0.018638700246810913, + -0.04115220159292221, + -0.118698351085186, + -0.0673559382557869, + -0.009162290021777153, + 0.007231833878904581, + 0.0672074407339096, + 0.03716634213924408, + 0.015792695805430412, + -0.04621219262480736, + -0.029590629041194916, + -0.06539714336395264, + -0.0149242477491498, + 0.0561404749751091, + 0.004937806166708469, + -0.013263711705803871, + 0.02060771733522415, + 0.016004212200641632, + 0.03965465724468231, + 0.10549529641866684, + -0.00536778150126338, + -0.04219822213053703, + 0.004835404455661774, + 0.04100899398326874, + -0.013645018450915813, + -0.07858812063932419, + 0.004517157096415758, + 0.02887480892241001, + -0.04372895509004593, + 0.008348999544978142, + 0.07623177021741867, + -0.029996849596500397, + -0.008239444345235825, + 0.06110779941082001, + 0.07151112705469131, + 0.05059663951396942, + 0.03692927584052086, + 0.03920726850628853, + 0.015403568744659424, + -0.05576224997639656, + 0.035636067390441895, + -0.00034260848769918084, + -0.1258564293384552, + 0.06749057024717331, + 0.010952875949442387, + 0.06069277226924896, + -0.012989476323127747, + 0.030250906944274902, + 0.03444502130150795, + 0.01677776500582695, + -0.08501630276441574, + 0.007627670653164387, + -0.03882911801338196, + 0.043595779687166214, + 0.07818305492401123, + -0.09937740117311478, + 0.008885752409696579, + 1.0062852450992809e-33, + 0.031212668865919113, + 0.011011033318936825, + -0.04376140981912613, + -0.04214148223400116, + -0.009723236784338951, + 0.05601333826780319, + -0.011430390179157257, + -2.4243125153589062e-05, + 0.02138102427124977, + 0.04644826799631119, + -0.08619498461484909, + -0.004143089056015015, + -0.07165824621915817, + -0.054090045392513275, + 0.05924543738365173, + 0.020103486254811287, + -0.0027864016592502594, + 0.03397434949874878, + -0.010085607878863811, + -0.014559119939804077, + -0.007879695855081081, + -0.03979024291038513, + -0.007173037156462669, + 0.09733790904283524, + -0.05080143362283707, + 0.038321737200021744, + 0.039651524275541306, + -0.04225781932473183, + -0.04631425812840462, + 0.013539391569793224, + -0.0865255817770958, + -0.011849776841700077, + -0.04490405693650246, + 0.06319986283779144, + -0.09623550623655319, + 0.0015027538174763322, + -0.0409708246588707, + -0.10213282704353333, + -0.06838497519493103, + -0.025878986343741417, + -0.024203969165682793, + -0.05069763585925102, + 0.1208089292049408, + -0.058672528713941574, + 0.04503747075796127, + -0.08708980679512024, + 0.011345794424414635, + -0.05149567872285843, + 0.020349621772766113, + -0.02262255921959877, + -0.02396557293832302, + -0.009065604768693447, + -0.03336706385016441, + 0.11755995452404022, + 0.016216639429330826, + -0.0879162847995758, + 0.0077178324572741985, + -0.10610504448413849, + -0.08550969511270523, + 0.06912089139223099, + -0.04327167570590973, + 0.04239625856280327, + -0.0030422171112149954, + 0.10026371479034424, + -0.042292337864637375, + -0.06800860911607742, + -0.08087721467018127, + -0.06466876715421677, + 0.009360979311168194, + -0.00671231048181653, + 0.005839548539370298, + -0.014575229957699776, + -0.0761868953704834, + -0.007850405760109425, + 0.042257558554410934, + -0.012605207972228527, + 0.04454009607434273, + 0.0595034621655941, + -0.05329268425703049, + 0.00821727979928255, + -0.004637880716472864, + 0.008102493360638618, + -0.10090517997741699, + 0.054231926798820496, + 0.009566324763000011, + -0.0894690603017807, + 0.03908737003803253, + -0.07070951908826828, + -0.0004124511615373194, + 0.08493558317422867, + -0.05727389454841614, + 0.11229127645492554, + 0.010695632547140121, + 0.0005216140998527408, + -0.04436711221933365, + -1.5527804819726043e-08, + -0.028295252472162247, + -0.0066565703600645065, + -0.013307265006005764, + -0.05852052569389343, + 0.031600724905729294, + -0.08002805709838867, + -0.020814627408981323, + -0.03903408721089363, + -0.05110291764140129, + -0.055389177054166794, + -0.003193432232365012, + 0.018875593319535255, + -0.019749227911233902, + 0.11233166605234146, + -0.0012392994249239564, + 0.017822515219449997, + 0.030006153509020805, + 0.022241070866584778, + -0.0434296652674675, + -0.004771812818944454, + 0.0013599107041954994, + 0.016770631074905396, + -0.04038865119218826, + -0.0044013578444719315, + -0.012067882344126701, + 0.055272847414016724, + -0.04815090447664261, + -0.027200352400541306, + 0.10319748520851135, + 0.13213008642196655, + 0.0019050739938393235, + 0.06328070163726807, + -0.021092336624860764, + 0.03644566237926483, + -0.05394613742828369, + 0.014559423550963402, + 0.061077021062374115, + -0.005456928629428148, + -0.05361996963620186, + 0.09073671698570251, + 0.04456275701522827, + 0.00834492314606905, + 0.014641478657722473, + -0.031864553689956665, + 0.04168570414185524, + 0.019638651981949806, + 0.016740133985877037, + -0.03590826690196991, + -0.05856950208544731, + -0.0500447042286396, + -0.015009122900664806, + -0.03204445168375969, + 0.017543036490678787, + 0.0846952274441719, + 0.00794923398643732, + -0.026664594188332558, + 0.016830135136842728, + 0.02538902312517166, + -0.04215053468942642, + 0.036917004734277725, + 0.09465712308883667, + -0.005157009698450565, + -0.009329873137176037, + 0.053871989250183105 + ], + "union-bold||*new*,\u222a,union,set,member,mathematics,arithmetic,calculator": [ + 0.00927697028964758, + 0.019657108932733536, + 0.018965216353535652, + 0.0523078553378582, + -0.05682438984513283, + -0.01162579283118248, + 0.039061687886714935, + -0.030389299616217613, + -0.04040032997727394, + 0.02913042902946472, + -0.04615930840373039, + -0.07411456853151321, + 0.05733616277575493, + -0.04901799187064171, + 0.022079821676015854, + 0.01803557202219963, + -0.041453514248132706, + -0.0032418121118098497, + 0.000439115974586457, + -0.061566274613142014, + 0.04772916063666344, + -0.023736722767353058, + -0.04554919898509979, + 0.09648304432630539, + 0.1037372276186943, + -0.014434644021093845, + 0.01127384789288044, + -0.031128792092204094, + 0.04623018950223923, + -0.029116274788975716, + -0.12569771707057953, + -0.08930818736553192, + 0.036528363823890686, + 0.035553429275751114, + 0.0009809727780520916, + -0.07388685643672943, + 0.05358763039112091, + 0.036163222044706345, + 0.01042806077748537, + 0.06445830315351486, + -0.04337764158844948, + -0.1179162785410881, + 0.016115279868245125, + 0.05363360419869423, + -0.021644407883286476, + 0.11574743688106537, + -0.03629808872938156, + 0.01713084802031517, + 0.030190695077180862, + -0.08282449096441269, + 0.01677892915904522, + -0.04607509821653366, + -0.0710357055068016, + 0.0005855525960214436, + 0.08594223111867905, + 0.05767808482050896, + -0.041014742106199265, + -0.041756510734558105, + 0.006941510364413261, + -0.024611355736851692, + -0.03150934353470802, + 0.002046438166871667, + 0.06795186549425125, + 0.010903201065957546, + 0.014384833164513111, + -0.02197525091469288, + -0.03387339040637016, + 0.13374429941177368, + 0.008168152533471584, + 0.04794909805059433, + -0.018906043842434883, + 0.06452871859073639, + -0.013658417388796806, + -0.004092742223292589, + -0.04582555964589119, + 0.027013907209038734, + 0.07067826390266418, + 0.07638692855834961, + -0.0036333990283310413, + 0.004816099535673857, + -0.11968489736318588, + -0.0023881650995463133, + -0.06494983285665512, + 0.01859084703028202, + 0.055495455861091614, + 0.005326241720467806, + -0.05300968512892723, + -0.09841199964284897, + -0.08371808379888535, + -0.0328848734498024, + -0.06905501335859299, + 0.009951830841600895, + 0.035910818725824356, + 0.031748976558446884, + 0.020862145349383354, + 0.016895046457648277, + 0.048024553805589676, + 0.04583628103137016, + 0.0016290780622512102, + 0.08471523970365524, + 0.002229614881798625, + 0.09434743970632553, + -0.0014469049638137221, + -0.00842776894569397, + -0.04947052150964737, + 0.011600447818636894, + -0.02213376760482788, + -0.008362396620213985, + 0.015057348646223545, + -0.05898898467421532, + 0.04634825140237808, + -0.16752567887306213, + -0.014841653406620026, + -0.04515489563345909, + -0.017222192138433456, + 0.006316810846328735, + -0.07543366402387619, + -0.03257637098431587, + 0.04762399196624756, + 0.04449518769979477, + 0.026760509237647057, + -0.04737164080142975, + -0.025625959038734436, + -0.07838745415210724, + -0.035446617752313614, + -0.028234213590621948, + 0.017629068344831467, + -1.7170649857262624e-33, + 0.023360854014754295, + 0.02912568300962448, + -0.05820567160844803, + 0.06871521472930908, + -0.016570793464779854, + 0.035570815205574036, + -0.018262337893247604, + -0.0267768707126379, + -0.0882154330611229, + 0.07832782715559006, + 0.029670821502804756, + 0.05861995741724968, + 0.027525147423148155, + 0.08874363452196121, + 0.03489888459444046, + -0.056085094809532166, + 0.03786274790763855, + -0.09460136294364929, + -0.09426301717758179, + 0.011243962682783604, + -0.009579054079949856, + 0.07219187915325165, + -0.06347218155860901, + 0.03397483378648758, + -0.0375359021127224, + 0.03333916515111923, + 0.03920452669262886, + -0.04251008480787277, + -0.0866255909204483, + 0.025874484330415726, + -0.030886812135577202, + 0.038975805044174194, + 0.06485333293676376, + 0.0017684802878648043, + 0.030120477080345154, + -0.007826327346265316, + 0.009908776730298996, + -0.04038243368268013, + 0.05198245123028755, + -0.09388761222362518, + -0.061642177402973175, + -0.028686698526144028, + 0.03365268558263779, + -0.003496374236419797, + 0.055619142949581146, + 0.11003641039133072, + -0.05615813285112381, + -0.06814049184322357, + 0.06773281842470169, + 0.013325173407793045, + 0.029745882377028465, + 0.020009702071547508, + -0.01203798595815897, + 0.0361844003200531, + -0.010791038163006306, + -0.018928786739706993, + -0.03795478865504265, + 0.11927354335784912, + 0.030493058264255524, + 0.0323297381401062, + 0.0035526901483535767, + 0.07383304089307785, + 0.06089869886636734, + 0.04324189946055412, + -0.1822292059659958, + 0.06671784818172455, + -0.07571874558925629, + 0.0230511873960495, + 0.09956719726324081, + 0.017990224063396454, + -0.009925597347319126, + 0.07162944972515106, + -0.06534025073051453, + 0.01998068392276764, + 0.06453400105237961, + -0.01100675668567419, + 0.06781546026468277, + -0.013841685838997364, + -0.032160114496946335, + -0.0571780689060688, + -0.04754960909485817, + 0.0034121766220778227, + -0.02964157983660698, + 0.07420603930950165, + 0.030448876321315765, + 0.007618554402142763, + -0.011000648140907288, + 0.0236932635307312, + 0.05116061493754387, + 0.04426455497741699, + -0.07576081156730652, + -0.031099636107683182, + 0.1031680777668953, + -0.040646590292453766, + -0.09160732477903366, + -1.6292700677282305e-33, + 0.03690625727176666, + 0.014548885636031628, + -0.025294532999396324, + -0.07260371744632721, + -0.05342425778508186, + -0.009070777334272861, + 0.08512359857559204, + -0.062090180814266205, + 0.018531005829572678, + 0.06411110609769821, + 0.07567618787288666, + 0.053320031613111496, + -0.07679282873868942, + -0.05316790193319321, + -0.006735548842698336, + -0.011135292239487171, + -0.034315671771764755, + -0.012440512888133526, + -0.019004710018634796, + 0.015283958055078983, + -0.06317538768053055, + 0.004033227451145649, + -0.03396186977624893, + -0.01305030845105648, + 0.05384135618805885, + 0.016455234959721565, + -0.03495212271809578, + 0.02585529536008835, + -0.02563292905688286, + -0.016912100836634636, + -0.014126812107861042, + -0.09141276776790619, + -0.013489879667758942, + 0.03861227631568909, + -0.048142723739147186, + -0.0519772469997406, + 0.11331233382225037, + -0.048705726861953735, + 0.028431041166186333, + -0.08612747490406036, + -0.02925049141049385, + -0.026331281289458275, + 0.09125856310129166, + 0.10307690501213074, + 0.04521270468831062, + -0.00901696365326643, + -0.0377911739051342, + -0.05908731371164322, + -0.06710287928581238, + 0.08451297879219055, + 0.013887012377381325, + -0.06899598985910416, + 0.04115289822220802, + -0.026173852384090424, + -0.027448873966932297, + 0.022821109741926193, + 0.017290610820055008, + 0.01040940172970295, + -0.02004225365817547, + 0.08160288631916046, + -0.006778219249099493, + 0.00794029701501131, + 0.04534406214952469, + 0.09361077845096588, + -0.012812720611691475, + -0.10402365028858185, + -0.019633688032627106, + 0.006321549881249666, + -0.00789275486022234, + 0.005058614071458578, + 0.016915345564484596, + 0.031836990267038345, + -0.04490084573626518, + 0.05509497970342636, + -0.02280205488204956, + -0.013677697628736496, + -0.004442240577191114, + 0.011442888528108597, + -0.06282354891300201, + 0.09046626836061478, + -0.055947624146938324, + -0.0014261036412790418, + -0.014123598113656044, + -0.022796867415308952, + -0.009642591699957848, + -0.009453389793634415, + 0.07947958260774612, + 0.0019951178692281246, + -0.03559502214193344, + -0.03209929168224335, + -0.10389669239521027, + -0.016719909384846687, + -0.011143328621983528, + -0.12444109469652176, + -0.07995901256799698, + -2.3257285874933586e-08, + 0.006836004089564085, + -0.09659220278263092, + -0.03887896239757538, + -0.0663483515381813, + 0.04491284117102623, + -0.0606614388525486, + -0.06959103047847748, + -0.025367211550474167, + -0.07745816558599472, + -0.027130693197250366, + 0.07912607491016388, + 0.061143651604652405, + -0.0661863461136818, + -0.08122263103723526, + 0.007167999166995287, + 0.005722586996853352, + 0.036268968135118484, + 0.0026072184555232525, + -0.02929946593940258, + -0.06281113624572754, + -0.010181264020502567, + 0.062373172491788864, + 0.02759234420955181, + 0.014367131516337395, + -0.031008213758468628, + 0.0019117629854008555, + -0.011774996295571327, + 0.06367234885692596, + 0.024416020140051842, + 0.0046400511637330055, + 0.04976867139339447, + 0.054602667689323425, + 0.04669852927327156, + 0.004428817890584469, + -0.012466682121157646, + -0.007672368548810482, + -0.0225677452981472, + 0.05766914784908295, + -0.013530159369111061, + 0.03899996727705002, + -0.05605866014957428, + 0.01921650767326355, + 0.0036661687772721052, + -0.029054341837763786, + 0.012052810750901699, + -0.046046290546655655, + -0.031160222366452217, + -0.04452063888311386, + -0.012909743003547192, + -0.08261524885892868, + -0.023223595693707466, + 0.0662248283624649, + 0.03167729079723358, + 0.050234243273735046, + -0.02163601480424404, + -0.033772680908441544, + -0.019358821213245392, + 0.009165335446596146, + -0.011160912923514843, + -0.01211227010935545, + 0.08059283345937729, + 0.015458755195140839, + 0.06103315204381943, + 0.025028839707374573 + ], + "unite-bold||*updated*,round,join,union,merge,combine,intersecting,intersection": [ + 0.038458190858364105, + -0.006174082402139902, + -0.03757048398256302, + 0.05393979698419571, + 0.014845076017081738, + -0.03694115951657295, + 0.004923759028315544, + -0.04008251428604126, + -0.039826586842536926, + -0.015166809782385826, + -0.012875360436737537, + -0.013774923980236053, + 0.002851086901500821, + -0.0442202165722847, + -0.0034683358389884233, + 0.06669682264328003, + -0.07583317905664444, + 0.009986485354602337, + -0.04533638432621956, + -0.009594972245395184, + -0.07822094857692719, + 0.008457074873149395, + 0.0008059069514274597, + 0.04272719845175743, + 0.0483841747045517, + 0.06488749384880066, + 0.02917826548218727, + 0.002244715578854084, + 0.041742682456970215, + -0.0976506844162941, + -0.019398752599954605, + 0.017819127067923546, + 0.0725201740860939, + 0.028857503086328506, + 0.015374284237623215, + -0.08620460331439972, + 0.014625183306634426, + 0.050299230962991714, + 0.09063902497291565, + 0.032694436609745026, + -0.00788898766040802, + -0.07395002245903015, + 0.07807215303182602, + 0.017432745546102524, + -0.04700596630573273, + 0.05624799802899361, + -0.14231088757514954, + 0.04883595183491707, + 0.0015406454913318157, + -0.017562702298164368, + 0.018484603613615036, + -0.11674743890762329, + -0.10302045941352844, + -0.001774120144546032, + 0.05573823302984238, + 0.058815546333789825, + -0.08220759779214859, + -0.07216116040945053, + 0.05610102787613869, + -0.008995046839118004, + -0.0067034694366157055, + -0.01764804683625698, + 0.03799210488796234, + 0.018206238746643066, + 0.033997152000665665, + -0.023743310943245888, + 0.054677896201610565, + 0.09273349493741989, + -0.029476439580321312, + 0.04296574369072914, + 0.019092820584774017, + 0.1183881163597107, + -0.056261543184518814, + -0.07996770739555359, + -0.03547721728682518, + 0.05744834989309311, + 0.03925352171063423, + -0.006459863856434822, + -0.01614549197256565, + 0.0012566072400659323, + -0.15466752648353577, + -0.010219107381999493, + -0.06093106046319008, + -0.007230613846331835, + 0.0866474136710167, + -0.022162247449159622, + -0.08575439453125, + -0.06714430451393127, + -0.0790400505065918, + -0.07540228217840195, + -0.09303202480077744, + 0.060573216527700424, + -0.002766975900158286, + -0.014282798394560814, + -0.05697726085782051, + 0.06121525168418884, + 0.08973883092403412, + 0.020827319473028183, + 0.004481990821659565, + 0.10890872031450272, + -0.02274532988667488, + 0.051880743354558945, + -0.01625249534845352, + -0.08194585144519806, + -0.0340348482131958, + 0.011699482798576355, + 0.016107818111777306, + 0.008507682941854, + 0.02536080591380596, + -0.05042222887277603, + 0.04179475083947182, + -0.12250476330518723, + 0.01503334753215313, + -0.06765274703502655, + -0.024828454479575157, + 0.00954735092818737, + -0.013955462723970413, + -0.03924589231610298, + 0.11287502944469452, + -0.01623351313173771, + 0.013787525705993176, + -0.015146853402256966, + -0.026228465139865875, + 0.004369337111711502, + -0.020777055993676186, + -0.0061957635916769505, + 0.042428966611623764, + -2.2877665746955214e-33, + 0.014911104924976826, + 0.010492874309420586, + -0.026666203513741493, + 0.09667085856199265, + 0.03466535732150078, + -0.006764543242752552, + -0.06458854675292969, + -0.12810608744621277, + -0.1064595878124237, + 0.06605801731348038, + 0.02023993991315365, + 0.14403358101844788, + 0.04202532768249512, + -0.009195971302688122, + 0.04095252603292465, + -0.09415017068386078, + 0.09927235543727875, + 0.0310837272554636, + -0.15742093324661255, + 0.01799401268362999, + -0.05093399062752724, + 0.06935830414295197, + -0.018573306500911713, + 0.05180571973323822, + -0.004825453739613295, + -0.010460373014211655, + 0.006986715830862522, + 0.0003432981320656836, + -0.016661101952195168, + 0.03036239743232727, + -0.027950188145041466, + 0.11639337241649628, + 0.02392890863120556, + 0.08431887626647949, + -0.01582086645066738, + 0.008472640998661518, + -0.03784388303756714, + -0.04986336827278137, + -0.00205011828802526, + 0.03275192528963089, + -0.03434447571635246, + -0.02319273166358471, + -0.004716209135949612, + -0.07209933549165726, + 0.08693154156208038, + 0.07914721965789795, + -0.07221642136573792, + 0.0030941152945160866, + 0.07193044573068619, + 0.009706300683319569, + -0.0017532785423099995, + 0.029145000502467155, + -0.031073926016688347, + 0.0005307469400577247, + -0.004528066609054804, + -0.011693264357745647, + -0.030465062707662582, + 0.08360029757022858, + 0.017677409574389458, + 0.07973921298980713, + -0.015407899394631386, + 0.019593387842178345, + -0.03623947873711586, + 0.03286682441830635, + -0.06879650056362152, + 0.078610859811306, + 0.005837403703480959, + 0.023370349779725075, + 0.07092292606830597, + -0.024076204746961594, + -0.0071707251481711864, + 0.06459581851959229, + -0.03959687426686287, + 0.09370672702789307, + -0.014554699882864952, + -0.03221519663929939, + 0.05201636999845505, + 0.05599465221166611, + 0.08165163546800613, + -0.06825381517410278, + -0.026700515300035477, + 0.03730159252882004, + -0.0753888413310051, + -0.024218035861849785, + -0.005501122679561377, + -0.011671742424368858, + 0.008781013078987598, + 0.018468283116817474, + -0.04512146860361099, + 0.02673034742474556, + -0.12957525253295898, + 0.021848192438483238, + 0.09221360087394714, + -0.06972650438547134, + -0.009645157493650913, + -8.223798656382293e-35, + 0.10526322573423386, + -0.006813894025981426, + -0.030290815979242325, + -0.04204564169049263, + -0.011554169468581676, + -0.014102923683822155, + 0.02775556966662407, + -0.06092773750424385, + 0.0029139521066099405, + 0.03231591358780861, + 0.0602085255086422, + 0.0038156132213771343, + -0.0601569227874279, + -0.07084071636199951, + -0.02008005417883396, + 0.0059991199523210526, + 0.04201841354370117, + -0.00907328724861145, + -0.019485287368297577, + 0.01352786086499691, + -0.014944580383598804, + -0.015176210552453995, + 0.0022811752278357744, + 0.04294588789343834, + 0.0016660597175359726, + 0.0021151939872652292, + -0.014627267606556416, + -0.04098663479089737, + 0.006237676367163658, + 0.015009017661213875, + -0.04364658147096634, + -0.11136017739772797, + 0.018444925546646118, + 0.0035664946772158146, + -0.049928486347198486, + -0.011248651891946793, + 0.07718626409769058, + -0.1087244376540184, + 0.041566040366888046, + -0.06092783808708191, + -0.01069937739521265, + -0.00024075046530924737, + -0.013613611459732056, + 0.09760485589504242, + 0.03556695953011513, + -0.004884157329797745, + -0.0449078343808651, + -0.024128543213009834, + -0.14497026801109314, + -0.03339192271232605, + -0.005055093672126532, + 0.012209627777338028, + -0.0024197371676564217, + -0.03937708958983421, + -0.013964866288006306, + -0.017850957810878754, + 0.05349475517868996, + -0.016030393540859222, + -0.044388700276613235, + 0.03668316453695297, + 0.015230304561555386, + 0.023844575509428978, + 0.020320776849985123, + 0.06720686703920364, + 0.048603981733322144, + -0.062007829546928406, + -0.04280515015125275, + -0.07830265909433365, + -0.04398329555988312, + 0.04224640876054764, + 0.04430259019136429, + 0.006464698351919651, + -0.03634354844689369, + 0.015833763405680656, + 0.01652921549975872, + -0.03157028928399086, + 0.05792243033647537, + -0.015974774956703186, + 0.0263822041451931, + 0.022831546142697334, + -0.11805861443281174, + -0.0027219189796596766, + 0.038605183362960815, + 0.06419381499290466, + -0.05197321996092796, + 0.0026837007608264685, + 0.01876170188188553, + 0.07343341410160065, + 0.033026766031980515, + -0.02686835452914238, + -0.08020026981830597, + -0.028627993538975716, + 0.0792652815580368, + -0.002036857418715954, + -0.016774702817201614, + -2.3654942893358566e-08, + 0.014813163317739964, + -0.054272133857011795, + -0.09821416437625885, + -0.014074643142521381, + 0.05710270628333092, + 0.006060152780264616, + -0.0849842056632042, + -0.04151541367173195, + -0.049746524542570114, + -0.013771217316389084, + 0.06208309903740883, + 0.06013195216655731, + -0.096466563642025, + -0.039049405604600906, + 0.01580030843615532, + -0.0001729341602185741, + -0.03962064906954765, + 0.020501896739006042, + -0.051451582461595535, + -0.056286368519067764, + -0.057963017374277115, + 0.07340218871831894, + 0.025738654658198357, + 0.007927777245640755, + 0.021095771342515945, + 0.006384892854839563, + -0.05045772343873978, + 0.06518088281154633, + 0.020298197865486145, + -0.020438050851225853, + 0.032822106033563614, + -0.0051165479235351086, + -0.03401845321059227, + 0.0400661937892437, + -0.011600163765251637, + -0.011265658773481846, + -0.0014916645595803857, + 0.06890540570020676, + 0.006959952414035797, + 0.0749097689986229, + -0.03360464423894882, + 0.0169550571590662, + 0.009318755008280277, + -0.019583094865083694, + 0.047888681292533875, + 0.0070920358411967754, + -0.015897545963525772, + -0.013394879177212715, + -0.03834708034992218, + -0.06675292551517487, + -0.0618806891143322, + 0.03192353621125221, + 0.05024217069149017, + 0.05102790892124176, + -0.0649494081735611, + 0.0028099240735173225, + 0.023317381739616394, + 0.07995125651359558, + 0.046931032091379166, + -0.020664922893047333, + 0.08503453433513641, + -0.01378344651311636, + -0.0076611898839473724, + 0.042794451117515564 + ], + "unite-square-bold||join,union,merge,combine,intersecting,intersection": [ + 0.07453299313783646, + -0.010369944386184216, + 0.003236067947000265, + 0.08255045861005783, + -0.010525899939239025, + 0.002571015851572156, + 0.004639039747416973, + -0.04605460166931152, + -0.037634484469890594, + -0.05186602473258972, + -0.01154096145182848, + 0.020595649257302284, + 0.03163788467645645, + -0.011104338802397251, + -0.042053837329149246, + 0.08009708672761917, + -0.04201497510075569, + 0.014620057307183743, + -0.04286545515060425, + -0.00014297929010353982, + -0.04159831628203392, + -0.032642215490341187, + 0.006771471817046404, + -0.004100956954061985, + 0.04584913328289986, + 0.04558297246694565, + 0.04313236102461815, + 0.046384088695049286, + 0.0481739342212677, + -0.07799804955720901, + 0.014090802520513535, + -0.03641612082719803, + 0.05908583104610443, + 0.05292348936200142, + 0.019241543486714363, + -0.0625191181898117, + 0.01963208056986332, + 0.02635766938328743, + 0.08621372282505035, + 0.017075177282094955, + -0.026038262993097305, + -0.09691976755857468, + 0.06990959495306015, + 0.006471527274698019, + -0.009137818589806557, + 0.0578358955681324, + -0.0975651890039444, + 0.031092258170247078, + 0.029176978394389153, + -0.042558975517749786, + 0.003587965853512287, + -0.08476214855909348, + -0.052566614001989365, + -0.04332616180181503, + 0.07734522968530655, + 0.09040245413780212, + -0.1033908948302269, + -0.05218221992254257, + 0.06132861226797104, + 0.0209894347935915, + -0.01809789054095745, + -0.00772192794829607, + 0.01794048584997654, + 0.02077718824148178, + 0.032578784972429276, + -0.013316499069333076, + 0.023085393011569977, + 0.13794319331645966, + -0.05848071351647377, + 0.056798793375492096, + 0.017210084944963455, + 0.10902859270572662, + -0.05707995966076851, + -0.05668843537569046, + -0.036880552768707275, + 0.029569562524557114, + 0.03763797879219055, + -0.005946800112724304, + -0.018779713660478592, + 0.017117857933044434, + -0.16288211941719055, + 0.008702179417014122, + -0.09917303174734116, + 0.0058677783235907555, + 0.062973253428936, + 0.014707722701132298, + -0.10526770353317261, + -0.06944587826728821, + -0.08871056884527206, + -0.09233158081769943, + -0.07461349666118622, + 0.035117026418447495, + 0.0081367501989007, + 0.013955628499388695, + -0.033041391521692276, + 0.023780468851327896, + 0.1024111658334732, + 0.012675144709646702, + -0.007545541040599346, + 0.08161142468452454, + -0.0348534882068634, + 0.028896963223814964, + 0.0013649177271872759, + -0.12472879886627197, + -0.011638403870165348, + -0.006086667533963919, + 0.045553795993328094, + 0.012866465374827385, + 0.037748415023088455, + -0.04388982057571411, + 0.04070720076560974, + -0.1193854808807373, + 0.0115720359608531, + -0.015436229296028614, + -0.01806103251874447, + 0.04052307456731796, + -0.020079081878066063, + -0.04790126904845238, + 0.15987813472747803, + -0.039193183183670044, + -0.006416422314941883, + -0.010186100378632545, + -0.021629497408866882, + -0.011843490414321423, + -0.02926032803952694, + -0.017479058355093002, + 0.006443184334784746, + -1.996125875243535e-33, + 0.01892540231347084, + 0.028546294197440147, + 0.0013590779853984714, + 0.11322372406721115, + 0.04210774227976799, + -0.04560825228691101, + -0.07947453111410141, + -0.13108736276626587, + -0.07703685015439987, + 0.10851586610078812, + 0.026064036414027214, + 0.09797430783510208, + 0.016816318035125732, + 0.015276502817869186, + 0.05389730632305145, + -0.055360693484544754, + 0.07483924180269241, + 0.016138454899191856, + -0.1270086020231247, + 0.025280844420194626, + -0.054317906498909, + 0.08695411682128906, + -0.013418632559478283, + 0.08209891617298126, + -0.011763534508645535, + -0.01902196928858757, + 0.03252897411584854, + -0.009042784571647644, + 0.028347782790660858, + 0.045825012028217316, + -0.02980433963239193, + 0.11756356805562973, + -0.016831329092383385, + 0.05091157183051109, + 0.00638888543471694, + 0.009046304039657116, + -0.0002798819914460182, + -0.04115160554647446, + -0.023913323879241943, + 0.03368010371923447, + -0.030875127762556076, + -0.013297098688781261, + 0.0357455238699913, + -0.06684061139822006, + 0.10251510143280029, + 0.03699864074587822, + -0.010690825060009956, + -0.04770467430353165, + 0.06996238976716995, + 0.04249856248497963, + -0.007550638169050217, + 0.009722894057631493, + -0.01225427258759737, + 0.023134388029575348, + 0.02970934472978115, + -0.012325327843427658, + -0.06794220954179764, + 0.07490243017673492, + 0.03484835475683212, + 0.11128516495227814, + -0.03421904146671295, + -0.023668495938181877, + -0.03971041366457939, + 0.028750302270054817, + -0.06327037513256073, + 0.06617697328329086, + -0.010110127739608288, + 0.016542725265026093, + 0.036374617367982864, + -0.06893962621688843, + -0.006111847702413797, + 0.020973818376660347, + -0.024258464574813843, + 0.041777603328228, + -0.020016435533761978, + -0.009326707571744919, + 0.02498832531273365, + 0.042341817170381546, + 0.10468781739473343, + -0.10686580836772919, + -0.042799368500709534, + 0.06041477993130684, + -0.08233994245529175, + -0.07280299067497253, + -0.013093690387904644, + -0.00453580915927887, + -0.011173124425113201, + -0.024219935759902, + -0.027105430141091347, + 0.05292312800884247, + -0.15230438113212585, + 0.013073661364614964, + 0.08363527059555054, + -0.06100259721279144, + -0.013890720903873444, + -5.310905058356692e-34, + 0.09009676426649094, + 0.0018424475565552711, + -0.028117241337895393, + -0.07141698896884918, + -0.005838613025844097, + -0.02866383083164692, + 0.05972963199019432, + -0.07997611910104752, + -0.032273292541503906, + 0.037746936082839966, + 0.061403438448905945, + -0.013606792315840721, + -0.043598439544439316, + -0.06613031029701233, + -0.01461447961628437, + 0.019519809633493423, + 0.08016946166753769, + 0.018596498295664787, + -0.028426218777894974, + -0.023116622120141983, + -0.03948713093996048, + -0.008008662611246109, + 0.05535822734236717, + 0.01549975574016571, + -0.007988053373992443, + 0.033051490783691406, + -0.011172463186085224, + -0.02242417261004448, + 0.0047086188569664955, + 0.05228867009282112, + -0.026914626359939575, + -0.0766477957367897, + 0.003174868877977133, + 0.031273577362298965, + -0.09422411024570465, + -0.024966305121779442, + 0.03745876997709274, + -0.0983186662197113, + 0.0633583813905716, + -0.11055805534124374, + 0.021191898733377457, + 0.0019715088419616222, + 0.010102366097271442, + 0.10269556194543839, + 0.02096732333302498, + 0.0028828373178839684, + -0.038885217159986496, + -0.06355339288711548, + -0.09843174368143082, + -0.05338601395487785, + -0.019480464980006218, + -0.0009342418052256107, + -0.008504817262291908, + -0.05097491666674614, + -0.03924448415637016, + -0.03617086634039879, + 0.06803138554096222, + 0.0118007967248559, + -0.04659169912338257, + 0.036963872611522675, + 0.04151085391640663, + 0.016074594110250473, + -0.0025172962341457605, + 0.06769586354494095, + 0.03803859278559685, + -0.08637076616287231, + 0.0022151002194732428, + -0.027987539768218994, + -0.025985855609178543, + 0.08771978318691254, + 0.028945233672857285, + -0.012960278429090977, + -0.03128485754132271, + 0.021144792437553406, + -0.007729928009212017, + 0.015317308716475964, + 0.022291993722319603, + -0.017184944823384285, + -0.00974619947373867, + 0.040560368448495865, + -0.10028961300849915, + 0.006105028558522463, + 0.026390252634882927, + 0.04874882102012634, + -0.026910006999969482, + -0.020638152956962585, + 0.00339983101002872, + 0.0685281828045845, + 0.023438168689608574, + -0.033317677676677704, + -0.05598928779363632, + -0.039549119770526886, + 0.052494123578071594, + -0.01928258128464222, + -0.007170367054641247, + -2.0422348256943224e-08, + 0.01936635747551918, + -0.0370456725358963, + -0.07912188768386841, + -0.059473276138305664, + 0.015335810370743275, + -0.029505645856261253, + -0.07652956992387772, + -0.03723687306046486, + -0.040336910635232925, + 0.018148615956306458, + 0.04487494006752968, + 0.05512133613228798, + -0.1280285120010376, + -0.04385066404938698, + -0.0011054716305807233, + 0.0008492771303281188, + -0.04465964809060097, + 0.01999554969370365, + -0.03617604076862335, + -0.044629860669374466, + -0.04458047077059746, + 0.019201232120394707, + -0.0007681855349801481, + 0.04938500374555588, + -0.02090083621442318, + 0.020567651838064194, + -0.05280473828315735, + 0.050347812473773956, + 0.04239537566900253, + 0.029502248391509056, + 0.03831305354833603, + 0.010028617456555367, + -0.04353521019220352, + -0.006878772750496864, + -0.00855633057653904, + -0.05039483308792114, + -0.029431767761707306, + 0.046045999974012375, + -0.014755694195628166, + 0.031106121838092804, + -0.003838127013295889, + 0.01781277172267437, + 0.03545748069882393, + -0.020166432484984398, + 0.07296673953533173, + 0.027287162840366364, + 0.0068418472073972225, + 0.0039026662707328796, + -0.019679903984069824, + -0.03914402797818184, + -0.06499738991260529, + 0.009738338179886341, + 0.017849478870630264, + 0.04310406744480133, + -0.0910196378827095, + -0.020819509401917458, + -0.009276794269680977, + 0.10031917691230774, + 0.061207257211208344, + -0.03427669405937195, + 0.09540793299674988, + 0.029568325728178024, + -0.024830520153045654, + 0.03647540137171745 + ], + "upload-bold||saved,saving,archived,archiving,archival,uploaded,uploading,hard drive,disk": [ + -0.03451083227992058, + 0.008987651206552982, + -0.08100346475839615, + 0.006589129567146301, + 0.11271990090608597, + 0.0033734110184013844, + 0.005235089920461178, + -0.017660291865468025, + 0.018683912232518196, + 0.05595119670033455, + 0.019741810858249664, + 0.09851435571908951, + 0.08500935882329941, + -0.04289070516824722, + -0.08226139843463898, + 0.02964903600513935, + -0.06539255380630493, + -0.011015355587005615, + -0.04099007695913315, + -0.0008186539635062218, + -0.016613565385341644, + 0.030343685299158096, + 0.05918204411864281, + 0.011029238812625408, + 0.06920517981052399, + -0.012560632079839706, + -0.013007200323045254, + -0.007905777543783188, + 0.03207767382264137, + -0.09518930315971375, + -0.03214016556739807, + -0.025518322363495827, + 0.08872966468334198, + 0.03421910107135773, + 0.07114218175411224, + 0.0802709311246872, + -0.010156351141631603, + 0.007184238638728857, + -0.021982889622449875, + -0.034099142998456955, + 0.0024187397211790085, + -0.06173893064260483, + -0.021926239132881165, + 0.0472230538725853, + -0.07387185096740723, + -0.027629241347312927, + -0.017078910022974014, + -0.05772014707326889, + 0.018395718187093735, + 0.03155522048473358, + 0.01858741231262684, + -0.08245696127414703, + -0.13504765927791595, + 0.07735278457403183, + 0.002627494279295206, + -0.01082681491971016, + -0.04421563819050789, + -0.018832843750715256, + -0.04884195327758789, + -0.007207298651337624, + -0.01690748520195484, + -0.0063167354092001915, + 0.0011114205699414015, + 0.04204249009490013, + 0.04536021873354912, + 0.06647958606481552, + 0.016578514128923416, + 0.03653908520936966, + -0.03167043253779411, + -0.043223485350608826, + -0.00603268900886178, + 0.05262262001633644, + -0.08964008092880249, + 0.0551510713994503, + -0.017402907833456993, + -0.023184604942798615, + 0.07971996068954468, + 0.07045182585716248, + -0.050692494958639145, + -0.059817247092723846, + 0.023092351853847504, + -0.07659812271595001, + -0.02678208239376545, + 0.012212791480123997, + 0.013432568870484829, + 0.0313309021294117, + -0.06751929968595505, + -0.07628528773784637, + -0.018405431881546974, + -0.08144279569387436, + -0.059972651302814484, + -0.023283058777451515, + 0.11866553872823715, + -0.0031360338907688856, + -0.1385134905576706, + -0.001203126390464604, + 0.11566365510225296, + 0.0473061166703701, + -0.012535177171230316, + 0.04532606527209282, + 0.020716188475489616, + 0.004893581848591566, + 0.052630845457315445, + -0.043967168778181076, + -0.03320464491844177, + -0.043114807456731796, + 0.07852067798376083, + -0.021505409851670265, + 0.024047642946243286, + -0.005628339480608702, + -0.0448177233338356, + -0.08057605475187302, + -0.07870945334434509, + -0.05386536195874214, + -0.010867412202060223, + -0.016305284574627876, + -0.13915205001831055, + 0.03516368567943573, + 0.04500483348965645, + 0.004090461414307356, + 0.061016082763671875, + -0.05279741808772087, + -0.01297171413898468, + -0.052299316972494125, + -0.020964691415429115, + -0.09077222645282745, + 0.0716807022690773, + 2.412789398784095e-34, + 0.10382353514432907, + 0.0398726649582386, + -0.015074480324983597, + 0.07660622149705887, + 0.04581828415393829, + -0.002643831539899111, + -0.054145678877830505, + -0.037283021956682205, + -0.11891944706439972, + -0.004020902328193188, + 0.07099945098161697, + 0.09615646302700043, + -0.0721839964389801, + 0.09907492250204086, + 0.04471082612872124, + -0.008879202418029308, + -0.0268145389854908, + 0.061413053423166275, + 0.028954029083251953, + -0.009301643818616867, + -0.04128022491931915, + 0.04766177758574486, + -0.05463235080242157, + 0.013149069622159004, + 0.045502133667469025, + -0.09155390411615372, + 0.04998362064361572, + -0.07401810586452484, + -0.02811351977288723, + -0.0032309771049767733, + 0.01732570119202137, + -0.05924038961529732, + 0.04118478670716286, + -0.004174310248345137, + -0.011558529920876026, + 0.018567735329270363, + -0.12637044489383698, + -0.0006860900903120637, + -0.009518824517726898, + 0.02884354256093502, + -0.007396786008030176, + -0.03016003780066967, + -0.03550776466727257, + -0.03422832861542702, + 0.018537603318691254, + 0.07235696166753769, + -0.03456840291619301, + -0.030734950676560402, + -0.005086861550807953, + 0.04085677117109299, + -0.00019364894251339138, + 0.009631185792386532, + 0.022949732840061188, + 0.0010438982862979174, + -0.02935514599084854, + 0.01712757535278797, + -0.0016647690208628774, + 0.0039256843738257885, + 0.03935630992054939, + -0.02909478358924389, + 0.06774395704269409, + -0.013603943400084972, + 0.03309055417776108, + 0.0005466305301524699, + -0.04089637100696564, + -0.002851409139111638, + 0.015988411381840706, + 0.014257824048399925, + 0.10086037963628769, + 0.04162416234612465, + -0.05798472464084625, + 0.0174575112760067, + -0.0233758557587862, + 0.018257340416312218, + 0.015570605173707008, + -0.026226622983813286, + -0.03979575261473656, + -0.04785585030913353, + -0.046325426548719406, + -0.032011132687330246, + -0.13740131258964539, + -0.0877743735909462, + -0.0862007588148117, + 0.04977843910455704, + 0.01650170050561428, + 0.03226674348115921, + 0.009216105565428734, + -0.03179381042718887, + -0.03990716114640236, + -0.0036976959090679884, + -0.015285637229681015, + 0.0598541796207428, + -0.005840322468429804, + -0.09903145581483841, + -0.07134389877319336, + -1.885179596006058e-33, + 0.031608499586582184, + -0.01610470935702324, + -0.06105703115463257, + 0.01962152123451233, + -0.020871272310614586, + 0.04405130818486214, + 0.031040633097290993, + 0.053186893463134766, + 0.0022300207056105137, + 0.015431100502610207, + 0.00015612576680723578, + 0.021556757390499115, + -0.08706892281770706, + -0.1123049184679985, + -0.05193407088518143, + 0.0012085165362805128, + 0.0022484411019831896, + -0.01309216022491455, + -0.04186772555112839, + 0.012589135207235813, + -0.06517928838729858, + -0.0016763809835538268, + 0.02718142233788967, + 0.12777939438819885, + 0.03674903139472008, + 0.03223937004804611, + -0.03803291544318199, + 0.023627441376447678, + -0.004994264338165522, + -0.0070879184640944, + -0.004398962017148733, + -0.001384315313771367, + 0.003223744221031666, + -0.0049572051502764225, + -0.046062491834163666, + -0.029615167528390884, + 0.09291760623455048, + 0.011209653690457344, + -0.015123574994504452, + 0.05065188184380531, + -0.004113779403269291, + 0.06459749490022659, + 0.004138700198382139, + 0.03875032067298889, + -0.01621413044631481, + -0.05460743233561516, + -0.09361815452575684, + -0.018054692074656487, + 0.004560935311019421, + 0.052390579134225845, + 0.05707466974854469, + -0.06292269378900528, + -0.04096104949712753, + 0.004073371645063162, + 0.05601273477077484, + 0.0011603564489632845, + 0.03727395087480545, + 0.028558380901813507, + 0.0074268789030611515, + 0.029018552973866463, + -0.02902473881840706, + 0.013929123058915138, + -0.04845486953854561, + 0.0044654966332018375, + -0.06961063295602798, + -0.04286344721913338, + 0.07126318663358688, + -0.05115465819835663, + -0.16640713810920715, + 0.04412110149860382, + 0.0005976232350803912, + -0.012674117460846901, + 0.007387438789010048, + 0.02865031734108925, + 0.037592723965644836, + -0.05820364132523537, + 0.07797697931528091, + 0.0006377174868248403, + -0.011427889578044415, + -0.023163460195064545, + -0.032401278614997864, + 0.06642211973667145, + -0.017375480383634567, + 0.0694715604186058, + -0.019080230966210365, + -0.01607760787010193, + -0.013209252618253231, + -0.019807709380984306, + 0.004399965982884169, + -0.058193955570459366, + -0.04855060949921608, + 0.07124482095241547, + 0.003175425576046109, + 0.006272242870181799, + -0.006098307203501463, + -2.394276066297607e-08, + -0.03670620545744896, + -0.004843540024012327, + -0.03959556296467781, + -0.0011385142570361495, + 0.05063438042998314, + -0.07421194016933441, + 0.0015783833805471659, + 0.062191497534513474, + 0.010577535256743431, + -0.14429327845573425, + 0.1108505055308342, + -0.04207644239068031, + -0.09075279533863068, + -0.03235960751771927, + 0.010248007252812386, + 0.03995282202959061, + 0.01445908285677433, + 0.03916153684258461, + -0.026384931057691574, + -0.03801542893052101, + 0.006508493795990944, + 0.04957359656691551, + 0.038457565009593964, + 0.0039726970717310905, + 0.05997345969080925, + 0.014422399923205376, + -0.021682873368263245, + 0.05152089148759842, + 0.09211888909339905, + 0.01005908939987421, + 0.06216040253639221, + 0.04909327253699303, + 0.03225380927324295, + -0.007600275333970785, + -0.04212786629796028, + 0.01777479238808155, + 0.025298163294792175, + 0.021493297070264816, + 0.0004623669374268502, + 0.1205846443772316, + 0.030187146738171577, + -0.009745529852807522, + 0.013130119070410728, + -0.03722335770726204, + -0.00010537169146118686, + -0.04429597780108452, + 0.027844401076436043, + 0.011451480910182, + -0.08488284051418304, + -0.08508511632680893, + -0.06991001963615417, + -0.028647633269429207, + 0.05755789950489998, + 0.13673965632915497, + 0.007556064985692501, + -0.052443116903305054, + 0.046495918184518814, + 0.08212456852197647, + 0.06812437623739243, + 0.031946368515491486, + 0.1798606663942337, + 0.004259360022842884, + 0.0420510433614254, + 0.024311305955052376 + ], + "upload-simple-bold||*updated*,saved,saving,archived,archiving,archival,uploaded,uploading,hard drive,disk": [ + -0.035753991454839706, + 0.016212284564971924, + -0.0747842937707901, + 0.013354717753827572, + 0.10292159765958786, + -0.009300652891397476, + 0.0014206287451088428, + -0.01150890439748764, + -0.008684404194355011, + 0.07367339730262756, + 0.024111391976475716, + 0.07256930321455002, + 0.08746397495269775, + -0.04702189192175865, + -0.07741750031709671, + 0.01635933481156826, + -0.06708545982837677, + -0.022957051172852516, + -0.036554671823978424, + 0.00028615552582778037, + -0.04719999060034752, + 0.022370081394910812, + 0.0341026671230793, + 0.01541106030344963, + 0.06227530911564827, + -0.005750529933720827, + -0.024534009397029877, + -0.007912321016192436, + 0.030355868861079216, + -0.0927906408905983, + -0.0348915196955204, + -0.023763563483953476, + 0.09523476660251617, + 0.025792783126235008, + 0.06401477009057999, + 0.058990418910980225, + 0.009751953184604645, + 0.01762939803302288, + -0.02856293134391308, + -0.03619760647416115, + 0.0024414490908384323, + -0.06686907261610031, + -0.023627158254384995, + 0.060364220291376114, + -0.0943559855222702, + -0.026784561574459076, + -0.03358882665634155, + -0.05320277065038681, + 0.01689409837126732, + 0.019530432298779488, + 0.02289033867418766, + -0.09608519077301025, + -0.1307203620672226, + 0.06363383680582047, + 0.00746941240504384, + -0.012686905451118946, + -0.051588572561740875, + -0.005044093355536461, + -0.042225297540426254, + -0.017011748626828194, + 0.008836108259856701, + -0.017383703961968422, + 0.008456658571958542, + 0.041050542145967484, + 0.040077634155750275, + 0.045198630541563034, + 0.0072549981996417046, + 0.0026844951789826155, + -0.027147842571139336, + -0.040460675954818726, + -0.00010613515769364312, + 0.0598776675760746, + -0.10118141025304794, + 0.047940339893102646, + -0.03148049861192703, + -0.05255021154880524, + 0.07700856775045395, + 0.08911702781915665, + -0.054100241512060165, + -0.041833411902189255, + 0.006758532952517271, + -0.09150610864162445, + -0.03515280783176422, + 0.024400943890213966, + 0.01616480201482773, + 0.007421637885272503, + -0.06948988884687424, + -0.06411316245794296, + -0.01773272454738617, + -0.0873769223690033, + -0.04398993030190468, + -0.012082785367965698, + 0.11932551115751266, + -0.004761177580803633, + -0.1365724503993988, + 0.017848903313279152, + 0.10980331897735596, + 0.04959070309996605, + -0.04680558666586876, + 0.05459379032254219, + 0.010289343073964119, + 0.021300416439771652, + 0.055331241339445114, + -0.05576669052243233, + -0.017348026856780052, + -0.03033130243420601, + 0.06908110529184341, + -0.024684609845280647, + 0.0159414391964674, + -0.015663467347621918, + -0.05431349202990532, + -0.09397450089454651, + -0.0686463788151741, + -0.059634286910295486, + -0.011331375688314438, + -0.009934245608747005, + -0.1220565140247345, + 0.047431446611881256, + 0.03667723014950752, + 0.020821833983063698, + 0.07535538822412491, + -0.06127748265862465, + -0.028435712680220604, + -0.043496858328580856, + -0.036131154745817184, + -0.07953261584043503, + 0.07368416339159012, + -7.592823824163361e-34, + 0.11290378868579865, + 0.0553068071603775, + -0.012843811884522438, + 0.08417615294456482, + 0.03885728493332863, + -0.008502780459821224, + -0.05756282061338425, + -0.032901350408792496, + -0.10221438854932785, + -0.0004750063526444137, + 0.09170829504728317, + 0.08972225338220596, + -0.07340583205223083, + 0.09731767326593399, + 0.040276654064655304, + -0.01248856633901596, + -0.019863132387399673, + 0.06423185765743256, + 0.03165758401155472, + -0.021099397912621498, + -0.041646964848041534, + 0.05736907571554184, + -0.06239882484078407, + -0.0011098086833953857, + 0.05354354530572891, + -0.08839157968759537, + 0.053543563932180405, + -0.07065358012914658, + -0.024571577087044716, + -0.0076630618423223495, + 0.023039186373353004, + -0.06464759260416031, + 0.04455467686057091, + 0.014715473167598248, + -0.01709658093750477, + 0.004814005922526121, + -0.11998966336250305, + -0.003529071109369397, + -0.013804120011627674, + 0.006913214456290007, + -0.006818542256951332, + -0.03803541883826256, + -0.04907998815178871, + -0.04632299393415451, + 0.03432434797286987, + 0.07918491959571838, + -0.046408332884311676, + -0.035600755363702774, + 0.005103136412799358, + 0.014272685162723064, + 0.005846307147294283, + 0.02016102895140648, + -0.00731760635972023, + 0.0038311402313411236, + -0.03529396653175354, + 0.024500088766217232, + 0.002865421585738659, + 0.01883409358561039, + 0.041894882917404175, + -0.025761421769857407, + 0.06926239281892776, + -0.01107869017869234, + 0.012763741426169872, + 0.01450005266815424, + -0.05189264193177223, + 0.0009110262035392225, + 0.021469155326485634, + -0.0017809562850743532, + 0.10406623780727386, + 0.054362952709198, + -0.07385735213756561, + 0.03255342319607735, + -0.025369450449943542, + 0.009431173093616962, + 0.023139918223023415, + -0.035556524991989136, + -0.029086505994200706, + -0.06363572180271149, + -0.053472403436899185, + -0.022000914439558983, + -0.11700176447629929, + -0.07355684787034988, + -0.09516192227602005, + 0.08091440796852112, + -0.0019782630261033773, + 0.037764325737953186, + 0.0017153765074908733, + 0.007800928317010403, + -0.056066159158945084, + -0.02001756802201271, + -0.029216919094324112, + 0.06371428817510605, + -0.02095595933496952, + -0.1051890179514885, + -0.05494515597820282, + -1.4261826638015486e-33, + 0.03785371407866478, + -0.022459592670202255, + -0.054800428450107574, + 0.019055679440498352, + -0.023340623825788498, + 0.04201218858361244, + 0.045061249285936356, + 0.06075528264045715, + 0.023569369688630104, + 0.023180123418569565, + 0.008079013787209988, + 0.019158583134412766, + -0.09558311849832535, + -0.11265968531370163, + -0.02697678469121456, + 0.025897027924656868, + -0.02729293517768383, + -0.0038492854218930006, + -0.040969546884298325, + 0.02633768878877163, + -0.06512439250946045, + 0.0005645405617542565, + 0.010558013804256916, + 0.11867997795343399, + 0.04328344762325287, + 0.02709963545203209, + -0.03510994836688042, + 0.03418149799108505, + 0.0034319560509175062, + -0.015537118539214134, + -0.004790949635207653, + -0.019893823191523552, + 0.0007584551349282265, + -0.010999680496752262, + -0.044375382363796234, + -0.011207012459635735, + 0.07386203110218048, + 0.013796011917293072, + -0.011667278595268726, + 0.05405279994010925, + -0.013502530753612518, + 0.06779156625270844, + 0.011716654524207115, + 0.036446768790483475, + 0.0012995499419048429, + -0.05874646082520485, + -0.07420664280653, + -0.02835785411298275, + -0.036389827728271484, + 0.037392422556877136, + 0.05051010102033615, + -0.08118845522403717, + -0.04912303388118744, + 0.018400805070996284, + 0.066407710313797, + 0.01610337197780609, + 0.04536399617791176, + 0.04116465523838997, + -0.0008028493612073362, + 0.031875405460596085, + -0.03779347613453865, + 0.01657683774828911, + -0.055980704724788666, + 0.00893618818372488, + -0.0776524469256401, + -0.026698360219597816, + 0.048269398510456085, + -0.07426513731479645, + -0.15462085604667664, + 0.042243681848049164, + 0.00946801993995905, + -0.006794601678848267, + 0.0024564228951931, + 0.013088596984744072, + 0.037772782146930695, + -0.05569465830922127, + 0.07547517120838165, + -0.010883614420890808, + -0.01202747505158186, + -0.0337052159011364, + -0.031918082386255264, + 0.06718728691339493, + -0.016523780301213264, + 0.042297832667827606, + -0.017164139077067375, + -0.00335795059800148, + -0.0017600093269720674, + -0.018269209191203117, + 0.003368769306689501, + -0.05027604103088379, + -0.06281080842018127, + 0.07140221446752548, + 0.02781590260565281, + 0.010196019895374775, + -0.011734489351511002, + -2.642154584009404e-08, + -0.03405730053782463, + -0.010582090355455875, + -0.04324278607964516, + 0.004684566054493189, + 0.06762171536684036, + -0.061704929918050766, + 0.0023129312321543694, + 0.044813401997089386, + 0.01828979328274727, + -0.1419709324836731, + 0.09946797043085098, + -0.04676573723554611, + -0.08287163078784943, + 0.0012570795370265841, + 0.011778195388615131, + 0.0657101646065712, + 0.004465993028134108, + 0.04691223055124283, + -0.01832456700503826, + -0.013348959386348724, + 0.008933087810873985, + 0.05390211567282677, + 0.02161536179482937, + 0.007759661879390478, + 0.06986813992261887, + 0.007628480438143015, + -0.026141265407204628, + 0.0708138644695282, + 0.08908707648515701, + 0.011121001094579697, + 0.06616397202014923, + 0.037582144141197205, + 0.03558621555566788, + 0.011794696561992168, + -0.056278981268405914, + 0.02962910756468773, + 0.021875761449337006, + 0.03120674192905426, + -0.015813462436199188, + 0.11282511800527573, + 0.042094357311725616, + 0.013438301160931587, + 0.01860836334526539, + -0.03828885033726692, + -0.001819223165512085, + -0.05364091694355011, + 0.020944762974977493, + -0.01842915453016758, + -0.0902804583311081, + -0.09747010469436646, + -0.06247015669941902, + -0.02561180293560028, + 0.06056367978453636, + 0.12011538445949554, + 0.005923542194068432, + -0.03163745999336243, + 0.05453561991453171, + 0.06964296102523804, + 0.05906910076737404, + 0.04057720676064491, + 0.1582019031047821, + 0.03172082453966141, + 0.034042879939079285, + 0.03523834049701691 + ], + "usb-bold||serial,port,plug,peripheral,device": [ + 0.0470425970852375, + -0.031825240701436996, + -0.053950343281030655, + -0.0238608717918396, + 0.048215944319963455, + -0.021771874278783798, + -0.0006425639730878174, + 0.010998614132404327, + 0.00417193491011858, + -0.020525317639112473, + 0.0917612612247467, + 0.04584220424294472, + 0.012055736966431141, + -0.019398223608732224, + -0.005110684782266617, + -0.028337622061371803, + -0.04273832589387894, + 0.015446923673152924, + 0.02859676443040371, + 0.06938139349222183, + 0.0532536618411541, + 0.026286128908395767, + -0.007675016298890114, + -0.03778725489974022, + -0.026410838589072227, + -0.021611211821436882, + 0.1481361836194992, + -0.0016209265450015664, + 0.03060721419751644, + -0.07685323804616928, + -0.04914424940943718, + -0.012015050277113914, + 0.06472272425889969, + 0.03472556173801422, + 0.02800166979432106, + -0.09701516479253769, + 0.019376615062355995, + -0.052687931805849075, + -0.08072009682655334, + -0.045799076557159424, + 0.07812358438968658, + -0.11110357195138931, + 0.022661982104182243, + 0.0699310451745987, + -0.025637580081820488, + -0.05599244683980942, + -0.050974201411008835, + -0.04413814842700958, + -0.014602824114263058, + -0.058330241590738297, + 0.015045061707496643, + -0.006571812089532614, + -0.11202777922153473, + 0.06899546086788177, + 0.007482060696929693, + -0.03991996496915817, + -0.010954172350466251, + 0.010668085888028145, + 0.09159884601831436, + -0.04638543725013733, + 0.022699564695358276, + 0.02546365186572075, + -0.006042785942554474, + -0.012160024605691433, + -0.03824305161833763, + -0.0024792260956019163, + -0.002336655743420124, + -0.0053903935477137566, + -0.033085767179727554, + 0.036474887281656265, + 0.014952759258449078, + -0.049494583159685135, + -0.049753546714782715, + -0.013443788513541222, + -0.007452424615621567, + 0.019427571445703506, + -0.006641165353357792, + 0.033522021025419235, + -0.060012370347976685, + -0.02538515068590641, + -0.052712488919496536, + -0.009675062261521816, + -0.06946112960577011, + 0.0024000611156225204, + 0.07040677219629288, + 0.07658274471759796, + -0.07576657831668854, + -0.013645460829138756, + -0.08689502626657486, + -0.031783975660800934, + -0.07942108064889908, + -0.008383695036172867, + 0.03121124394237995, + -0.022271625697612762, + -0.13175608217716217, + 0.028035415336489677, + 0.056707292795181274, + -0.028734419494867325, + -0.04304703325033188, + 0.055454071611166, + 0.023937031626701355, + 0.04260939359664917, + -0.06070438027381897, + 0.0212063230574131, + -0.06270727515220642, + -0.05068531259894371, + -0.03246292099356651, + -0.044223442673683167, + -0.01190490834414959, + -0.008297819644212723, + 0.013275807723402977, + -0.07052399218082428, + -0.10888165980577469, + -0.030347006395459175, + 0.0033343445975333452, + 0.0027239867486059666, + -0.06958937644958496, + 0.07896427810192108, + 0.11557863652706146, + 0.027379514649510384, + -0.019607441499829292, + -0.024604767560958862, + -0.03592315688729286, + -0.06675083935260773, + 0.037929508835077286, + -0.002393715549260378, + 0.03674420714378357, + -3.0466100752757185e-33, + 0.05160894617438316, + 0.019938146695494652, + -0.048390645533800125, + 0.06820666790008545, + -0.04921319708228111, + 0.019664211198687553, + 0.025437230244278908, + 0.03350549191236496, + -0.020083652809262276, + 0.06389542669057846, + 0.006141115911304951, + 0.08704682439565659, + -0.08460063487291336, + 0.128573477268219, + 0.051316022872924805, + -0.023397240787744522, + 0.0037796427495777607, + -0.0038149976171553135, + -0.006264874711632729, + 0.02111246809363365, + -0.017500178888440132, + 0.07021119445562363, + -0.003453552722930908, + -0.0656137466430664, + 0.04477100819349289, + 0.011768631637096405, + -0.02699391171336174, + 0.007867300882935524, + 0.02012304775416851, + 0.035489391535520554, + -0.034704726189374924, + 0.05048476532101631, + 0.06400763243436813, + 0.013503001071512699, + 0.012773767113685608, + -0.016583049669861794, + -0.011069429107010365, + -0.03749286010861397, + -0.010823306627571583, + -0.0012935661943629384, + -0.05851117894053459, + -0.05929453670978546, + -0.08264761418104172, + -0.061576228588819504, + -0.0047700838185846806, + 0.06783968955278397, + -0.017124902456998825, + -0.08947118371725082, + 0.029212327674031258, + 0.020096121355891228, + -0.05009125918149948, + -0.0421779528260231, + 0.06278509646654129, + 0.017527373507618904, + 0.026998966932296753, + -0.10145507007837296, + -0.08632220327854156, + 0.08992072939872742, + 0.0330667644739151, + -0.008578905835747719, + 0.049436502158641815, + 0.020902633666992188, + 0.05740228667855263, + 0.044989947229623795, + -0.029552476480603218, + 0.07157101482152939, + 0.03713010624051094, + 0.019459377974271774, + 0.04078510403633118, + 0.004664002917706966, + -0.04569370672106743, + 0.08353403210639954, + -0.014976127073168755, + -0.05480027571320534, + -0.05471673980355263, + 0.09724108874797821, + 0.01686844415962696, + -0.021336058154702187, + -0.0315292663872242, + -0.042417485266923904, + -0.11339870095252991, + 0.02622040919959545, + -0.07036034017801285, + 0.1364101618528366, + -0.013113855384290218, + 0.021794775500893593, + -0.04685739427804947, + -0.061815232038497925, + 0.0054823653772473335, + 0.04351872205734253, + -0.03614369034767151, + 0.05318104103207588, + -0.08002480119466782, + -0.044489264488220215, + -0.08101265132427216, + -8.436740605977452e-34, + -0.012568222358822823, + 0.01586119644343853, + -0.009428645484149456, + -0.04622387886047363, + -0.07086656242609024, + -0.01619180664420128, + -0.0012023553717881441, + 0.014431466348469257, + -0.01884128712117672, + 0.0029162627179175615, + 0.006544662639498711, + -0.01621047593653202, + -0.007469970732927322, + -0.07796403020620346, + 0.03127052262425423, + 0.037793003022670746, + -0.06860385090112686, + 0.035093411803245544, + 0.04273611307144165, + -0.008962002582848072, + -0.08323996514081955, + 0.05559227615594864, + 0.053259752690792084, + 0.04054863378405571, + 0.006108693778514862, + 0.004348869901150465, + 0.0158219113945961, + -0.022166648879647255, + -0.08198580145835876, + -0.002098181750625372, + 0.0716947540640831, + 0.019295785576105118, + 0.0527813583612442, + 0.06637550890445709, + -0.009276630356907845, + 0.06875257194042206, + 0.08416860550642014, + 0.017764432355761528, + 0.02861233614385128, + -0.022293854504823685, + 0.015136633068323135, + 0.027737898752093315, + -0.0005359022179618478, + 0.028580114245414734, + -0.0001050857754307799, + -0.08682189136743546, + -0.05038800835609436, + -0.08270923048257828, + 0.0909503772854805, + 0.07752008736133575, + 0.06370177865028381, + -0.009850439615547657, + -0.04731098935008049, + 0.0064459992572665215, + -0.05534490942955017, + -0.06414750963449478, + 0.04894421994686127, + 0.008226937614381313, + 0.0128011554479599, + 0.06789262592792511, + 0.04155385494232178, + -0.007079073693603277, + -0.0846070796251297, + -0.0010985019616782665, + -0.01320364698767662, + -0.03942951560020447, + 0.10052082687616348, + -0.025519544258713722, + -0.018345100805163383, + 0.026734258979558945, + 0.07007548213005066, + 0.013507007621228695, + 0.03168632090091705, + 0.08562306314706802, + 0.04300890490412712, + 0.01667741686105728, + -0.05832468718290329, + -0.06657998263835907, + -0.016626328229904175, + 0.07032875716686249, + -0.012552402913570404, + -0.005229142494499683, + -0.030971437692642212, + 0.03792979195713997, + -0.10718826949596405, + -0.006010783836245537, + 0.021346477791666985, + 0.016784828156232834, + 0.05658889189362526, + -0.02051924169063568, + -0.02781759947538376, + 0.02610587514936924, + -0.08765949308872223, + 0.027006369084119797, + -0.10707063972949982, + -2.0273578371643453e-08, + 0.03557775542140007, + -0.025496870279312134, + -0.03221895173192024, + 0.004519570153206587, + -0.0254764873534441, + -0.09275638312101364, + -0.021821176633238792, + -0.047985613346099854, + 0.016003916040062904, + -0.021609028801321983, + 0.04414064437150955, + -0.06848232448101044, + -0.029847076162695885, + -0.011591424234211445, + 0.13676254451274872, + 0.08827739208936691, + -0.053632043302059174, + 0.023404845967888832, + -0.04058225825428963, + -0.036129385232925415, + 0.03502272441983223, + 0.07451959699392319, + -0.00040614616591483355, + -0.04719662293791771, + 0.044269148260354996, + -0.05812622606754303, + -0.05418156832456589, + 0.0896238312125206, + 0.05766689032316208, + -0.00788782723248005, + 0.0814245417714119, + 0.0060556610114872456, + -0.003005069913342595, + 0.06993754208087921, + -0.10156197100877762, + 0.007366349920630455, + 0.03308771923184395, + 0.03422783315181732, + 0.025016823783516884, + 0.09764119237661362, + 0.03202155977487564, + -0.08807510137557983, + -0.15167202055454254, + -0.031819283962249756, + -0.007604049518704414, + 0.014996550045907497, + 0.020652834326028824, + -0.02989690564572811, + -0.09373849630355835, + -0.007798268925398588, + -0.08834192156791687, + 0.04130496829748154, + 0.0156734436750412, + 0.03455788269639015, + -0.028921930119395256, + -0.0360601581633091, + -0.019691141322255135, + 0.07451988011598587, + -0.03762431815266609, + -0.040494706481695175, + 0.10900463908910751, + 0.050259582698345184, + 0.10235215723514557, + 0.03896797075867653 + ], + "user-bold||person,users,profile,account,contact,login": [ + -0.012818888761103153, + -0.04724971950054169, + -0.07586794346570969, + 0.021904321387410164, + 0.0324474535882473, + -0.020906444638967514, + 0.1314043551683426, + -0.028941545635461807, + -0.013881072402000427, + -0.043309424072504044, + 0.01923062466084957, + -0.016156407073140144, + 0.06678378582000732, + -0.028554625809192657, + 0.0019134699832648039, + 0.011811955831944942, + -0.030578667297959328, + 0.06551259756088257, + 0.015784481540322304, + 0.008214461617171764, + 0.022038985043764114, + 0.014515337534248829, + 0.01824558526277542, + -0.008246442303061485, + 0.037511542439460754, + -0.059785183519124985, + 0.049614641815423965, + -0.003133393358439207, + -0.021484792232513428, + -0.050780609250068665, + 0.01982773281633854, + 0.010305739939212799, + 0.1095859631896019, + 0.0644487664103508, + 0.01620548591017723, + 0.0070664058439433575, + 0.010402326472103596, + 0.04114468768239021, + 0.0022044279612600803, + -0.01203500758856535, + -0.028498774394392967, + -0.07048200815916061, + -0.007331663742661476, + 0.039455655962228775, + -0.06087237223982811, + -0.018099643290042877, + -0.06263994425535202, + -0.03447422385215759, + 0.008621642366051674, + 0.0005933797219768167, + 0.01674073003232479, + -0.062269531190395355, + -0.06130451709032059, + 0.05865592509508133, + 0.03397214412689209, + 0.020809566602110863, + -0.035400647670030594, + -0.025234954431653023, + 0.02403372898697853, + 0.027912158519029617, + -0.04142672196030617, + 0.021514248102903366, + 0.05047903582453728, + 0.03235756233334541, + 0.0637679472565651, + 0.007974713109433651, + -0.028397085145115852, + -0.005327211227267981, + -0.04616037756204605, + 0.009557392448186874, + 0.017871469259262085, + -0.03378485143184662, + -0.07750626653432846, + -0.024446457624435425, + -0.01796881854534149, + -0.008029299788177013, + -0.012991218827664852, + 0.023381032049655914, + -0.007946181111037731, + -0.016411224380135536, + -0.05285802483558655, + -0.052788686007261276, + -0.0007808661903254688, + 0.0057341656647622585, + 0.09244466572999954, + 0.10486431419849396, + -0.08781716972589493, + -0.12392782419919968, + -0.10871035605669022, + -0.012309907004237175, + -0.01175959873944521, + -0.003944086842238903, + 0.10447526723146439, + 0.005078310612589121, + -0.13401703536510468, + 0.007742231711745262, + 0.05413326993584633, + 0.01654791831970215, + -0.03445678576827049, + 0.10547297447919846, + -0.06894131749868393, + 0.03539985790848732, + 0.05230194330215454, + 0.005286415107548237, + -0.010278727859258652, + -0.02447979710996151, + 0.018528025597333908, + -0.021768059581518173, + -0.005243962164968252, + -0.0058342572301626205, + 0.01584336720407009, + -0.06749673187732697, + -0.08711618930101395, + -0.06253433227539062, + 0.03990728035569191, + -0.08250602334737778, + -0.018284641206264496, + -0.015725696459412575, + 0.10597290098667145, + 0.058508872985839844, + 0.021630821749567986, + -0.02403900772333145, + -0.028291696682572365, + -0.04096412658691406, + -0.006012639030814171, + 0.013851461932063103, + 0.046511776745319366, + 4.074041178049346e-34, + 0.08231215178966522, + 0.09015370905399323, + -0.027878418564796448, + 0.09949354082345963, + -0.034133847802877426, + 0.05105916038155556, + -0.12919121980667114, + -0.06382764875888824, + -0.08602380007505417, + 0.01814420334994793, + 0.08096680790185928, + 0.09653464704751968, + 0.016303470358252525, + 0.08722192049026489, + 0.014425026252865791, + -0.018895264714956284, + 0.045748062431812286, + -0.006484384648501873, + -0.10157542675733566, + 0.041636910289525986, + -0.051309797912836075, + 0.040220603346824646, + -0.01608802005648613, + -0.000344692321959883, + -0.009457536041736603, + -0.010542675852775574, + 0.0687219500541687, + 0.008789297193288803, + -0.02485729195177555, + 0.019858097657561302, + 0.03274903818964958, + 0.02310924418270588, + 0.03557198494672775, + 0.05241130664944649, + 0.009849940426647663, + 0.029531223699450493, + -0.009970278479158878, + -0.017362263053655624, + -0.03243366628885269, + 0.04728426784276962, + -0.055259957909584045, + -0.03047400899231434, + 0.009771507233381271, + -0.06110778823494911, + -0.071180559694767, + 0.12937113642692566, + 0.026428956538438797, + -0.01629534363746643, + 0.014459207653999329, + 0.03534521535038948, + -0.0155884874984622, + 0.0018043541349470615, + -0.051307450979948044, + 0.033898551017045975, + 9.028717613546178e-05, + -0.04776681214570999, + -0.032114412635564804, + 0.061527639627456665, + -0.012986544519662857, + -0.02528768964111805, + -0.013276648707687855, + 0.0384293831884861, + 0.05284646153450012, + -0.03161666914820671, + -0.04174990952014923, + -0.03374296426773071, + -0.031630050390958786, + -0.03082607127726078, + 0.0741322711110115, + -0.02331610582768917, + -0.016003765165805817, + 0.09438353031873703, + 0.051174674183130264, + 0.03912486135959625, + -0.08459466695785522, + -0.0032907386776059866, + 0.02405001036822796, + 0.04244645684957504, + -0.02510502189397812, + 0.03255678713321686, + -0.04338791221380234, + 0.01370258443057537, + -0.09678926318883896, + 0.07558196783065796, + -0.025991326197981834, + 0.03147616609930992, + -0.009591526351869106, + -0.060773443430662155, + -0.07659213989973068, + 0.02514568716287613, + -0.012978033162653446, + -0.00938682071864605, + 0.038646992295980453, + -0.017048025503754616, + -0.1612713634967804, + -3.8625161124066604e-33, + 0.0326174721121788, + -0.015472459606826305, + -0.017346544191241264, + -0.0630454495549202, + 0.027728185057640076, + 0.002922751009464264, + 0.1237747073173523, + 0.03659708797931671, + -0.029771925881505013, + -0.007419606205075979, + 0.03564722463488579, + -0.032874464988708496, + -0.02513430453836918, + -0.020929649472236633, + 0.07301575690507889, + 0.0957929864525795, + -0.026870183646678925, + 0.05357029289007187, + -0.05130904167890549, + -0.02602139674127102, + -0.07483211159706116, + -0.022790469229221344, + -0.09885643422603607, + 0.05772639438509941, + 0.006791459862142801, + -0.010492311790585518, + 0.05096931755542755, + -0.019245997071266174, + -0.05159410834312439, + -0.03750716522336006, + 0.009605864994227886, + -0.003355516819283366, + -0.05446165055036545, + -0.006159747485071421, + -0.07465852051973343, + 0.023287443444132805, + -0.05314736068248749, + 0.015275311656296253, + 0.007557116914540529, + 0.024477750062942505, + 0.038821905851364136, + 0.09455389529466629, + -0.01234518177807331, + 0.006806380581110716, + -0.04361145943403244, + 0.015358101576566696, + -0.022515632212162018, + -0.15195700526237488, + -0.024549059569835663, + 0.09136521816253662, + 0.040937647223472595, + -0.06944936513900757, + 0.01777438074350357, + -0.008601878769695759, + -0.0519842803478241, + -0.0756060853600502, + 0.07589680701494217, + -0.019726840779185295, + 0.06139633432030678, + 0.020579012110829353, + -0.04555082321166992, + 0.033185336738824844, + -0.0004625979927368462, + 0.10730599611997604, + -0.03093419410288334, + -0.06549350172281265, + 0.00013377591676544398, + 0.012579163536429405, + -0.057058803737163544, + -0.09794700145721436, + 0.07162715494632721, + -0.11314389854669571, + -0.005142790265381336, + 0.04582137241959572, + 0.022605402395129204, + -0.09152884781360626, + -0.02145751379430294, + -0.00811091996729374, + -0.04368596896529198, + 0.0361020602285862, + 0.0023176276590675116, + 0.01785324327647686, + -0.09183410555124283, + 0.041510287672281265, + -0.026589184999465942, + -0.01983998902142048, + -0.013310647569596767, + 0.05926560238003731, + 0.0034012477844953537, + -0.029318753629922867, + -0.013944338075816631, + 0.04672444611787796, + -0.06152975186705589, + -0.06732227653265, + -0.11500369012355804, + -2.2657664189296156e-08, + -0.06084217503666878, + -0.0733891949057579, + 0.03572683036327362, + 0.015101336874067783, + 0.03179742768406868, + 0.0012487989151850343, + -0.0004107082786504179, + -0.06452710926532745, + -0.027182959020137787, + 0.011307592503726482, + -0.00800944585353136, + 0.05139508470892906, + -0.043433915823698044, + -0.0677906796336174, + 0.10329820960760117, + 0.02391153573989868, + -0.08159957081079483, + 0.042006418108940125, + -0.03482993319630623, + -0.03133339062333107, + -0.037902314215898514, + 0.08369753509759903, + -0.016550801694393158, + 0.014064148999750614, + 0.047372154891490936, + 0.07897476106882095, + -0.09047301858663559, + 0.017307981848716736, + 0.027473868802189827, + 0.03978927433490753, + 0.040330253541469574, + 0.10262750089168549, + 0.03096120059490204, + -0.039515696465969086, + -0.061620596796274185, + 0.002313624368980527, + -0.04126525670289993, + -0.017036573961377144, + -0.01439636666327715, + 0.1125822514295578, + 0.011211424134671688, + -0.048196855932474136, + -0.0028400695882737637, + 0.02319575846195221, + -0.012570297345519066, + -0.006681673228740692, + 0.049815304577350616, + -0.049090296030044556, + -0.021104564890265465, + -0.10052388161420822, + -0.060343578457832336, + -0.04220965504646301, + 0.012635437771677971, + 0.09998124092817307, + -0.07672114670276642, + -0.08607226610183716, + 0.06354953348636627, + 0.12001650780439377, + 0.04386504366993904, + -0.06123075634241104, + 0.06903037428855896, + 0.037580784410238266, + 0.005490588489919901, + 0.015752894803881645 + ], + "user-check-bold||*new*,person,users,profile,account,contact,login,verified": [ + -0.0012849658960476518, + -0.02002861350774765, + -0.10258227586746216, + 0.02144085429608822, + 0.04855029657483101, + -0.05235106498003006, + 0.16694200038909912, + -0.065476194024086, + -0.029262948781251907, + -0.013891245238482952, + 0.02998224087059498, + -0.049822960048913956, + 0.08711284399032593, + -0.03349345177412033, + -0.040343694388866425, + -0.009920385666191578, + -0.012420573271811008, + 0.02352564036846161, + 0.013652244582772255, + -0.03535011038184166, + -0.004661749582737684, + -0.0553118959069252, + 0.015932973474264145, + -0.007640127558261156, + 0.03140316531062126, + -0.07834452390670776, + 0.0361211784183979, + -0.00040422723395749927, + -0.036822836846113205, + -0.06421242654323578, + 0.015894433483481407, + 0.004240840673446655, + 0.10291949659585953, + 0.051603659987449646, + 0.057201411575078964, + 0.007307043764740229, + 0.02786988951265812, + 0.019495131447911263, + 0.02333233319222927, + -0.05367870628833771, + -0.06802083551883698, + -0.10681383311748505, + -0.033221662044525146, + 0.04493354633450508, + -0.05156508833169937, + 0.006567382253706455, + -0.05760834366083145, + -0.014097047969698906, + 0.02525077573955059, + 0.003493574680760503, + 0.02694924734532833, + -0.07715301960706711, + -0.053374018520116806, + -0.01640823297202587, + -0.0023839769419282675, + 0.033972520381212234, + -0.006934093311429024, + -0.0505150705575943, + -0.017478417605161667, + 0.0005382046801969409, + -0.030242424458265305, + 0.025648441165685654, + 0.031115880236029625, + 0.029690459370613098, + 0.05370441824197769, + 0.038808342069387436, + -0.08358917385339737, + -0.04442904144525528, + -0.016447139903903008, + 0.01757357455790043, + -0.02528361789882183, + -0.025149591267108917, + -0.02528098225593567, + 0.02427801676094532, + -0.055647991597652435, + -0.02017359994351864, + -0.013551121577620506, + 0.005411977414041758, + -0.015860317274928093, + -0.011243216693401337, + -0.06552663445472717, + -0.033179379999637604, + -0.03761015832424164, + 0.011773482896387577, + 0.07589439302682877, + 0.10156861692667007, + -0.05972038209438324, + -0.09964360296726227, + -0.09964277595281601, + -0.052018024027347565, + 0.03793937712907791, + 0.042952436953783035, + 0.040759310126304626, + -0.003442724235355854, + -0.11694866418838501, + 0.02999960444867611, + 0.007883148267865181, + 0.02021358162164688, + 0.027148565277457237, + 0.1218276247382164, + -0.07603419572114944, + 0.023376943543553352, + 0.040557585656642914, + -0.030331246554851532, + 0.026346348226070404, + 0.016970641911029816, + 0.02819162793457508, + -0.007930027320981026, + 0.015558069571852684, + 0.027864545583724976, + 0.013008148409426212, + -0.04519008845090866, + 0.02160855382680893, + -0.03671447932720184, + 0.04662725701928139, + -0.010987505316734314, + -0.006429691798985004, + 0.018653469160199165, + 0.050369784235954285, + 0.0573376789689064, + 0.057691168040037155, + -0.044778089970350266, + -0.03387213498353958, + -0.051809363067150116, + -0.009932685643434525, + -0.0035157667007297277, + 0.056715406477451324, + 8.015023742425302e-34, + 0.1068275049328804, + 0.11871305853128433, + -0.0021197465248405933, + 0.10793394595384598, + -0.07854977250099182, + 0.05109423026442528, + -0.09101755172014236, + -0.04471582919359207, + -0.06697806715965271, + 0.012942521832883358, + 0.08615706861019135, + 0.09310995787382126, + 0.007763880304992199, + 0.046761076897382736, + 0.017453694716095924, + 0.007070672232657671, + 0.05868442356586456, + -0.01334947906434536, + -0.06742352992296219, + 0.041304755955934525, + -0.0564100407063961, + -0.046580880880355835, + -0.002593722427263856, + 0.002908627735450864, + -0.010937835089862347, + -0.03262506052851677, + 0.07025977969169617, + 0.017989257350564003, + -0.02297521010041237, + 0.006624397821724415, + -0.01531372033059597, + -0.022961845621466637, + 0.024898111820220947, + 0.08490417897701263, + 0.024209599941968918, + 0.02863568440079689, + 0.0030876751989126205, + -0.004212604835629463, + -0.01825678162276745, + -0.004963304381817579, + -0.021938059478998184, + -0.047908078879117966, + 0.01911245658993721, + -0.04749824479222298, + -0.04668361321091652, + 0.1085282638669014, + -0.024812987074255943, + -0.009447835385799408, + 0.053029727190732956, + 0.02136445790529251, + 0.006093842443078756, + 0.045327913016080856, + -0.07365943491458893, + 0.035189881920814514, + -0.04469100013375282, + -0.055440470576286316, + -0.016706880182027817, + 0.05858790874481201, + 0.01494515035301447, + -0.0220966599881649, + -0.002403171267360449, + 0.045250602066516876, + -0.008264372125267982, + -0.03215396776795387, + -0.08950088918209076, + -0.043671611696481705, + -0.06054692715406418, + 0.0009605609811842442, + 0.0837097316980362, + 0.023703042417764664, + -0.03847592696547508, + 0.05906926095485687, + 0.04922061040997505, + 0.05447826161980629, + -0.058331456035375595, + -0.0195132065564394, + 0.008872034959495068, + 0.07022550702095032, + 0.014016736298799515, + -0.01559023279696703, + 0.010446455329656601, + 0.022210028022527695, + -0.12068752199411392, + 0.06556076556444168, + -0.03389750048518181, + -0.001069351565092802, + -0.004926810506731272, + -0.0486052930355072, + -0.08559402823448181, + -0.008144642226397991, + -0.05485551431775093, + -0.008403885178267956, + 0.014677164144814014, + -0.029030803591012955, + -0.10955645889043808, + -5.6228512288576835e-33, + 0.032095279544591904, + -0.04235915094614029, + 0.0031734800431877375, + -0.038576506078243256, + -0.03975242003798485, + -0.03252727910876274, + 0.08710405975580215, + 0.05578962713479996, + -0.0026707337237894535, + 0.0009681679075583816, + 0.09143081307411194, + -0.04147344455122948, + 0.016092943027615547, + -0.03834276273846626, + 0.051172081381082535, + 0.04648032784461975, + -0.08311843127012253, + 0.04975166544318199, + -0.03683698922395706, + 0.038628142327070236, + 0.011130915954709053, + 0.025227472186088562, + -0.08832680433988571, + 0.06941916793584824, + 0.006181866861879826, + -0.02475719526410103, + 0.04793695732951164, + -0.051009565591812134, + -0.0474049411714077, + 0.015074305236339569, + 0.03287922963500023, + 0.04111509770154953, + -0.04793939366936684, + 0.038697756826877594, + -0.057252187281847, + -0.050945110619068146, + -0.013517670333385468, + 0.03168829530477524, + 0.02525624819099903, + 0.059971701353788376, + 0.015235194936394691, + 0.05244387686252594, + -0.0011611472582444549, + -0.005774069111794233, + -0.06402009725570679, + -0.005258025135844946, + -0.016981296241283417, + -0.08710823953151703, + -0.03933991119265556, + 0.07153674960136414, + 0.03593762218952179, + -0.1047651618719101, + 0.022147778421640396, + -0.013038810342550278, + -0.031689245253801346, + -0.00952103454619646, + 0.06508791446685791, + -0.02216411754488945, + 0.05059283226728439, + 0.03201073780655861, + -0.08924833685159683, + 0.014659279026091099, + -0.0024712306912988424, + 0.09608633071184158, + -0.03323240578174591, + -0.06955298781394958, + 0.007982421666383743, + 0.016248350962996483, + -0.0006166327511891723, + -0.03197132796049118, + 0.07945472002029419, + -0.10841743648052216, + -0.03345661982893944, + 0.034212253987789154, + 0.0059783197939395905, + -0.08453833311796188, + -0.014754319563508034, + -0.03192371875047684, + -0.06561416387557983, + 0.05783471465110779, + 0.011460984125733376, + 0.00938071683049202, + -0.041205357760190964, + 0.03280423954129219, + -0.027529802173376083, + -0.02583448402583599, + -0.037029705941677094, + 0.012228763662278652, + -0.03478356450796127, + -0.012241058982908726, + -0.03797769173979759, + 0.026662403717637062, + -0.04814025014638901, + -0.12357483059167862, + -0.12429583817720413, + -2.8912195304542365e-08, + -0.08088178187608719, + -0.07285179197788239, + 0.03191998600959778, + 0.053057312965393066, + 0.06702480465173721, + -0.017881911247968674, + -0.04704985395073891, + -0.1126597598195076, + -0.002244822448119521, + -0.03754480183124542, + -0.01310359314084053, + 0.05150942504405975, + -0.05325477570295334, + -0.08351429551839828, + 0.07398876547813416, + 0.017792414873838425, + -0.07351367920637131, + 0.03755859285593033, + -0.03474312275648117, + -0.02323213964700699, + -0.049666132777929306, + 0.10585678368806839, + -0.03935563936829567, + 0.03986438736319542, + 0.024727044627070427, + 0.06941995024681091, + -0.08121641725301743, + 0.013555571436882019, + -0.0025849309749901295, + 0.05688345804810524, + 0.06542234867811203, + 0.08717483282089233, + 0.025481190532445908, + -0.07521161437034607, + -0.041293468326330185, + 0.049638018012046814, + -0.03990999236702919, + 0.015400009229779243, + -0.0025447974912822247, + 0.10052023082971573, + -0.0015158384339883924, + 0.018335886299610138, + -0.045062918215990067, + -0.0001499315694672987, + -0.06132832542061806, + -0.028492355719208717, + 0.04527461528778076, + -0.049907371401786804, + -0.0546405054628849, + -0.12284641712903976, + -0.0195933748036623, + -0.047684937715530396, + 0.027764230966567993, + 0.07270798087120056, + -0.1238371878862381, + -0.05042063072323799, + 0.05820424109697342, + 0.14635103940963745, + 0.06637289375066757, + -0.031109105795621872, + 0.097176194190979, + 0.014871013350784779, + 0.075980044901371, + -0.0222369022667408 + ], + "user-circle-bold||person,users,profile,account,contact,login": [ + -0.007555096875876188, + -0.02106286957859993, + -0.11516791582107544, + 0.034002240747213364, + 0.07127686589956284, + -0.05849994346499443, + 0.13020667433738708, + -0.02305498719215393, + 0.02032802253961563, + -0.07480663061141968, + 0.005740360356867313, + 0.008097406476736069, + 0.066964291036129, + -0.03953017666935921, + 0.032418858259916306, + -0.004142968449741602, + -0.06432963162660599, + 0.052197735756635666, + 0.03863424435257912, + -0.03241825848817825, + 0.0012993536656722426, + -0.010448787361383438, + 0.03218521177768707, + 0.04617742449045181, + 0.011861678212881088, + -0.026860203593969345, + 0.03675072640180588, + -0.009285627864301205, + -0.03621631860733032, + -0.0578041672706604, + -0.026112226769328117, + 0.04405046999454498, + 0.09421131014823914, + 0.04933275654911995, + -0.005531254690140486, + 0.0017968028550967574, + 0.0012981097679585218, + 0.06095283105969429, + 0.008838871493935585, + -0.051847390830516815, + 0.0003616219328250736, + -0.06309549510478973, + 0.027519941329956055, + 0.020242391154170036, + -0.05230044573545456, + 0.0019445891957730055, + -0.0999462753534317, + -0.024916615337133408, + -0.0007481482462026179, + 0.03600252792239189, + 0.014491083100438118, + -0.08769651502370834, + -0.07554224133491516, + 0.024785444140434265, + 0.04700271785259247, + 0.02852723002433777, + -0.03065931238234043, + -0.04562867432832718, + 0.04863213747739792, + 0.026922691613435745, + -0.0075165750458836555, + -0.0036029075272381306, + 0.07411132752895355, + 0.050106342881917953, + 0.03776780143380165, + -0.012043016962707043, + -0.033126406371593475, + -0.018529459834098816, + -0.04730069637298584, + -0.01853928714990616, + 0.007932444103062153, + -0.030072886496782303, + -0.08195997774600983, + -0.0385730043053627, + 0.017319153994321823, + 0.01600961573421955, + -0.037839073687791824, + 0.04328806325793266, + -0.036435239017009735, + -0.026591062545776367, + -0.024948695674538612, + -0.022500934079289436, + 0.026983410120010376, + 0.053429726511240005, + 0.10165289789438248, + 0.11205178499221802, + -0.054466333240270615, + -0.14037978649139404, + -0.1097065806388855, + -0.025478454306721687, + -0.035876721143722534, + 0.02502448484301567, + 0.06461727619171143, + -0.007002602331340313, + -0.1719965934753418, + -0.0013287430629134178, + 0.027754316106438637, + -0.023077279329299927, + -0.08669524639844894, + 0.11276032775640488, + -0.043350547552108765, + 0.02695278823375702, + 0.0732908695936203, + -0.016422659158706665, + -0.013201849535107613, + -0.03624553233385086, + 0.030389320105314255, + -0.018225912004709244, + -0.0045572188682854176, + 0.02240322157740593, + 0.007449110969901085, + -0.07160308212041855, + -0.08541271090507507, + -0.05198981240391731, + 0.019363895058631897, + -0.06694597005844116, + -0.033573660999536514, + -0.004900351632386446, + 0.12347055226564407, + 0.07276653498411179, + 0.02730502374470234, + -0.009484680369496346, + -0.06310177594423294, + -0.049386486411094666, + -0.04341776669025421, + 0.016114745289087296, + 0.0200509000569582, + -6.188448325443993e-34, + 0.07081419974565506, + 0.10971474647521973, + -0.01991153694689274, + 0.04832778498530388, + -0.05236932635307312, + 0.010913309641182423, + -0.11439093202352524, + -0.07685542851686478, + -0.030657628551125526, + 0.00476990407332778, + 0.07321344316005707, + 0.07109592854976654, + 0.013526705093681812, + 0.07023831456899643, + 0.030060645192861557, + -0.05056413635611534, + 0.06740663200616837, + -0.0170822124928236, + -0.10469833016395569, + 0.0009401988354511559, + -0.06876349449157715, + 0.04268209636211395, + -0.06388143450021744, + -0.007457123138010502, + -0.010439183562994003, + 0.0030416056979447603, + 0.06908170878887177, + 0.01764935813844204, + -0.013030266389250755, + 0.030117826536297798, + 0.03895431384444237, + 0.021938668563961983, + 0.042558297514915466, + 0.05932142958045006, + 0.025186311453580856, + 0.030610693618655205, + -0.01649070717394352, + -0.017700381577014923, + -0.04812673479318619, + 0.03908229619264603, + -0.05254535377025604, + -0.05948506295681, + -0.015450938604772091, + -0.02537037804722786, + -0.06667321175336838, + 0.13997948169708252, + 0.03675374016165733, + -0.008363078348338604, + 0.0010508125415071845, + 0.018549427390098572, + -0.04253039509057999, + 0.011102969758212566, + -0.06177951768040657, + 0.00502932770177722, + -0.010236876085400581, + -0.06352958083152771, + -0.019702011719346046, + 0.03682556003332138, + -0.0370035395026207, + -0.030777636915445328, + 0.0023656277917325497, + 0.039242591708898544, + 0.02441602759063244, + -0.04146767407655716, + -0.0597018226981163, + -0.01417613960802555, + -0.06161540001630783, + -0.05290289595723152, + 0.06143440678715706, + -0.053871072828769684, + -0.012446979992091656, + 0.10686387866735458, + 0.07942768186330795, + 0.06279872357845306, + -0.07957915216684341, + 0.007055474910885096, + 0.011398152448236942, + 0.05414243042469025, + -0.023030681535601616, + 0.030161526054143906, + -0.028471525758504868, + 0.008122577331960201, + -0.08921502530574799, + 0.03162567317485809, + 0.018977701663970947, + -0.008564591407775879, + 0.023981088772416115, + -0.041395153850317, + -0.06596790254116058, + 0.023294974118471146, + -0.015145964920520782, + 0.02011171728372574, + 0.07378166913986206, + 0.03353321552276611, + -0.17510953545570374, + -2.699666774721359e-33, + 0.03444667533040047, + -0.006526314653456211, + 0.020666511729359627, + -0.0409444160759449, + 0.042623139917850494, + 0.006925738416612148, + 0.11055974662303925, + 0.019272521138191223, + -0.02498372457921505, + 0.011744977906346321, + -0.002027238253504038, + -0.025981007143855095, + -0.009026429615914822, + -0.0004183153505437076, + 0.10979010164737701, + 0.1052955687046051, + -0.002957175485789776, + 0.066694475710392, + -0.05679625645279884, + -0.009877539239823818, + -0.08623383939266205, + -0.023295706138014793, + -0.08731923252344131, + 0.04935743287205696, + -0.023319533094763756, + 0.009141840040683746, + 0.0840180516242981, + -0.05638492479920387, + -0.05132509768009186, + -0.005118404049426317, + -0.04813884198665619, + -0.03650699928402901, + -0.016417957842350006, + 0.014153269119560719, + -0.02843759022653103, + -0.0009970690589398146, + -0.037984948605298996, + -0.022514713928103447, + -0.03515453264117241, + -0.02728624828159809, + 0.0039047016762197018, + 0.05433262139558792, + -0.0071993726305663586, + 0.006224524229764938, + -0.02114366553723812, + -0.020311689004302025, + 0.031206250190734863, + -0.07687068730592728, + -0.05484459921717644, + 0.10264647752046585, + 0.03518398478627205, + -0.04707321152091026, + 0.04424596205353737, + -0.002180227544158697, + -0.056438032537698746, + -0.030309196561574936, + 0.05281713977456093, + 0.02019542269408703, + 0.0824022889137268, + 0.00922524556517601, + -0.056312017142772675, + -0.00711795361712575, + -0.011478792876005173, + 0.13634741306304932, + -0.01119107287377119, + -0.04115793853998184, + 0.02099909447133541, + 0.019495192915201187, + -0.08819713443517685, + -0.03385215997695923, + 0.04464801773428917, + -0.04589328169822693, + -0.01391904428601265, + 0.02434798702597618, + 0.032276056706905365, + -0.06738916784524918, + 0.026347298175096512, + -0.03286268934607506, + -0.07683664560317993, + 0.03481650352478027, + -0.003025762503966689, + 0.031163953244686127, + -0.08186054229736328, + 0.019301827996969223, + -0.011350254528224468, + -0.034532658755779266, + -0.022713234648108482, + 0.06282739341259003, + -0.006397975608706474, + -0.018316589295864105, + -0.015180258080363274, + 0.05564357340335846, + -0.06117672473192215, + -0.02411908097565174, + -0.05788024887442589, + -2.173856650244943e-08, + -0.05945683270692825, + -0.06448479741811752, + 0.03553461283445358, + 0.030852332711219788, + 0.08272610604763031, + -0.012877763248980045, + -0.0053619700483977795, + -0.06627276539802551, + -0.03856160491704941, + 0.009914470836520195, + -0.018443439155817032, + 0.06797102093696594, + -0.06055855005979538, + -0.06319175660610199, + 0.06940395385026932, + 0.03438153117895126, + -0.07421399652957916, + 0.0582900270819664, + -0.009846142493188381, + -0.011804897338151932, + -0.023214923217892647, + 0.03722019121050835, + 0.019297949969768524, + -0.01437356323003769, + 0.019704490900039673, + 0.06067538633942604, + -0.06569616496562958, + 0.031227130442857742, + -0.00036048825131729245, + -0.0062445709481835365, + 0.022862903773784637, + 0.08558005839586258, + 0.02518129162490368, + -0.045682910829782486, + -0.047385506331920624, + -0.03641965612769127, + -0.0506962426006794, + 0.006873172242194414, + -0.0059051536954939365, + 0.1079205647110939, + 0.036975085735321045, + -0.023901918902993202, + 0.02634858340024948, + 0.03611218184232712, + -0.00961139053106308, + 0.023643970489501953, + 0.049219951033592224, + -0.05314471945166588, + -0.04137357696890831, + -0.10824986547231674, + -0.07690483331680298, + -0.05066001042723656, + 0.04612342268228531, + 0.08724506199359894, + -0.06292451173067093, + -0.08292365074157715, + 0.0891987755894661, + 0.1260412484407425, + -0.004592410754412413, + -0.015708550810813904, + 0.04076731577515602, + 0.06725770980119705, + 0.018243201076984406, + 0.02001837268471718 + ], + "user-circle-check-bold||*new*,person,users,profile,account,contact,login,verified": [ + 0.0015210764249786735, + -0.0067178038880229, + -0.13679422438144684, + 0.03226178139448166, + 0.08860219269990921, + -0.06546956300735474, + 0.14666901528835297, + -0.05493200942873955, + 0.007767410017549992, + -0.048057641834020615, + 0.028168663382530212, + -0.030906135216355324, + 0.08857220411300659, + -0.04627537727355957, + -0.0035594324581325054, + -0.025236565619707108, + -0.056179121136665344, + 0.034146420657634735, + 0.03658800199627876, + -0.07093748450279236, + -0.014908340759575367, + -0.06473912298679352, + 0.019339043647050858, + 0.03495745360851288, + 0.012979854829609394, + -0.03906501829624176, + 0.033443570137023926, + -0.004554538056254387, + -0.03896442428231239, + -0.07571689039468765, + -0.027551330626010895, + 0.028753995895385742, + 0.09661377221345901, + 0.05186073109507561, + 0.023393496870994568, + 0.0014437519712373614, + 0.008076461032032967, + 0.05378866195678711, + 0.027966640889644623, + -0.07918946444988251, + -0.0433063767850399, + -0.10350342094898224, + 0.002168203005567193, + 0.03241198509931564, + -0.033603325486183167, + 0.012588162906467915, + -0.09338268637657166, + 0.011894532479345798, + 0.009855441749095917, + 0.03861439973115921, + 0.016743332147598267, + -0.09838595241308212, + -0.0785040482878685, + -0.014251833781599998, + 0.015868302434682846, + 0.038200583308935165, + -0.006984752602875233, + -0.0731523185968399, + 0.01293067168444395, + 0.011223528534173965, + -0.006096979137510061, + 0.0020188542548567057, + 0.05975174531340599, + 0.052078574895858765, + 0.030769405886530876, + 0.017642870545387268, + -0.07037591934204102, + -0.059588514268398285, + -0.023391446098685265, + -0.01700464077293873, + -0.018310444429516792, + -0.016949456185102463, + -0.041648995131254196, + 0.007628544233739376, + -0.026494646444916725, + 0.0007909209234640002, + -0.05027516186237335, + 0.032975807785987854, + -0.041850414127111435, + -0.019871724769473076, + -0.03511660546064377, + -0.01315870601683855, + 0.012269278056919575, + 0.060313690453767776, + 0.08542918413877487, + 0.1136331781744957, + -0.04361613094806671, + -0.10978293418884277, + -0.11590400338172913, + -0.041120495647192, + 0.001415311940945685, + 0.054417721927165985, + 0.021571451798081398, + -0.019970638677477837, + -0.1562957763671875, + 0.01261006947606802, + -0.004290399141609669, + -0.021471379324793816, + -0.02567998878657818, + 0.1305094212293625, + -0.0659995749592781, + 0.014206849969923496, + 0.054671939462423325, + -0.042293187230825424, + 0.006725994870066643, + -0.0010139577789232135, + 0.035175077617168427, + -0.026477443054318428, + 0.013465765863656998, + 0.05094309151172638, + 0.008107076399028301, + -0.053603582084178925, + -0.004085107706487179, + -0.0418131947517395, + 0.03690296411514282, + -0.01630496419966221, + -0.018844744190573692, + 0.03175359591841698, + 0.06998266279697418, + 0.07139740139245987, + 0.05047038570046425, + -0.031613241881132126, + -0.04573148861527443, + -0.06390287727117538, + -0.05848246440291405, + 0.010204882360994816, + 0.023164328187704086, + 2.678974125220552e-34, + 0.07915113866329193, + 0.12328329682350159, + -0.004546348936855793, + 0.06131201982498169, + -0.09496234357357025, + 0.017119955271482468, + -0.08849035203456879, + -0.059915754944086075, + -0.030938269570469856, + 0.0026121269911527634, + 0.08614161610603333, + 0.0788741186261177, + 0.022912072017788887, + 0.04154020920395851, + 0.035489022731781006, + -0.019297322258353233, + 0.07583130151033401, + -0.01562669314444065, + -0.08748366683721542, + -0.0003166472597513348, + -0.06127823144197464, + -0.02058890089392662, + -0.04227965697646141, + 0.005871593952178955, + 0.005017411895096302, + -0.009906701743602753, + 0.07320360094308853, + 0.014080874621868134, + -0.007996230386197567, + 0.01764497719705105, + -0.0026454846374690533, + -0.020920587703585625, + 0.02823973074555397, + 0.08812184631824493, + 0.04187338054180145, + 0.035504478961229324, + -0.00556555250659585, + -0.015690695494413376, + -0.01708361878991127, + 0.0006792868371121585, + -0.01867792196571827, + -0.0708526149392128, + -0.011842637322843075, + -0.020064454525709152, + -0.0492883063852787, + 0.12179114669561386, + -0.0017459332011640072, + 0.00714891916140914, + 0.024389127269387245, + 0.014795374125242233, + -0.03179961070418358, + 0.03372149169445038, + -0.08636084198951721, + 0.00405574357137084, + -0.04501911997795105, + -0.055474165827035904, + -0.021956533193588257, + 0.043022073805332184, + -0.0190347321331501, + -0.02746868133544922, + 0.01583239622414112, + 0.05293884128332138, + -0.01729191653430462, + -0.03141045197844505, + -0.1008884608745575, + -0.03230249136686325, + -0.08381732553243637, + -0.05262498930096626, + 0.07760301232337952, + -0.020613348111510277, + -0.02626342698931694, + 0.07524874806404114, + 0.06605543196201324, + 0.07132744789123535, + -0.06799687445163727, + -0.018796613439917564, + -0.004081537947058678, + 0.0791202038526535, + 0.000876903417520225, + -0.008225002326071262, + 7.007110252743587e-05, + 0.015283176675438881, + -0.10193824023008347, + 0.025717318058013916, + 0.007611510809510946, + -0.046103574335575104, + 0.027990272268652916, + -0.026554109528660774, + -0.08399661630392075, + -0.009165105409920216, + -0.05099167302250862, + 0.01810392551124096, + 0.04597404599189758, + 0.018004130572080612, + -0.12977421283721924, + -4.258265387394184e-33, + 0.029171623289585114, + -0.02431429550051689, + 0.04765958711504936, + -0.02537141554057598, + -0.027783414348959923, + -0.024078264832496643, + 0.0877172127366066, + 0.03983261436223984, + -0.00731735909357667, + 0.020678754895925522, + 0.05065078288316727, + -0.022017348557710648, + 0.014902770519256592, + -0.018223842605948448, + 0.08806714415550232, + 0.0751701071858406, + -0.05514581874012947, + 0.06948584318161011, + -0.04626650735735893, + 0.04533935710787773, + -0.02674352005124092, + 0.013001815415918827, + -0.09121658653020859, + 0.05604352429509163, + -0.012977251783013344, + 0.0014400412328541279, + 0.0765954852104187, + -0.07867375016212463, + -0.04758274927735329, + 0.019555402919650078, + -0.01878095418214798, + -0.005048858467489481, + -0.025938458740711212, + 0.05413335561752319, + -0.018810516223311424, + -0.051084306091070175, + -0.0004291671793907881, + -0.006351144518703222, + -0.01598016358911991, + 0.02732442319393158, + -0.007833060808479786, + 0.03440620377659798, + -0.0010584829142317176, + 0.0030102215241640806, + -0.03615343198180199, + -0.036205798387527466, + 0.02753414213657379, + -0.04363459348678589, + -0.06312619894742966, + 0.08576104789972305, + 0.02759387530386448, + -0.08087585121393204, + 0.049603935331106186, + -0.011048109270632267, + -0.03562944382429123, + 0.026680126786231995, + 0.053029824048280716, + 0.016553346067667007, + 0.07775209099054337, + 0.019300686195492744, + -0.08662290126085281, + -0.02167554944753647, + -0.007914720103144646, + 0.14431479573249817, + -0.009697162546217442, + -0.05819487199187279, + 0.019028756767511368, + 0.03161804378032684, + -0.06821158528327942, + 0.0007523709209635854, + 0.05305861681699753, + -0.038955092430114746, + -0.034508153796195984, + 0.01375486608594656, + 0.020017096772789955, + -0.0721975564956665, + 0.014634550549089909, + -0.05109516903758049, + -0.09367364645004272, + 0.036248888820409775, + -0.007566235959529877, + 0.027549898251891136, + -0.04339027404785156, + 0.016771527007222176, + -0.02275807037949562, + -0.030493367463350296, + -0.02596544660627842, + 0.017080210149288177, + -0.03172055631875992, + -0.007829738780856133, + -0.033021822571754456, + 0.04357144609093666, + -0.045078344643116, + -0.06943195313215256, + -0.0706304982304573, + -2.6872443825709524e-08, + -0.08187425881624222, + -0.07719366252422333, + 0.040967412292957306, + 0.061962973326444626, + 0.1024785041809082, + -0.01845468021929264, + -0.03899768739938736, + -0.09578708559274673, + -0.021255414932966232, + -0.02980176918208599, + -0.016102487221360207, + 0.06976671516895294, + -0.06373060494661331, + -0.06760795414447784, + 0.0663997009396553, + 0.025120791047811508, + -0.053354039788246155, + 0.05147334933280945, + -0.010207266546785831, + -0.013250687159597874, + -0.024375298991799355, + 0.06377769261598587, + 0.0023385880049318075, + 0.005628267303109169, + 0.009489722549915314, + 0.05162256956100464, + -0.05656811222434044, + 0.024130605161190033, + -0.025824297219514847, + 0.02451409213244915, + 0.04084270820021629, + 0.07163551449775696, + 0.01678774505853653, + -0.06842924654483795, + -0.031147615984082222, + 0.010504532605409622, + -0.05745573341846466, + 0.03317271173000336, + 0.004596492741256952, + 0.11129280924797058, + 0.024596763774752617, + 0.02569444105029106, + -0.0205097496509552, + 0.011929046362638474, + -0.03950091078877449, + 0.012929900549352169, + 0.03907328471541405, + -0.0647638663649559, + -0.061891086399555206, + -0.12412512302398682, + -0.044845156371593475, + -0.05443790182471275, + 0.05520163103938103, + 0.06416251510381699, + -0.11018550395965576, + -0.04809686914086342, + 0.08432561904191971, + 0.1454625278711319, + 0.028798425570130348, + 0.0016170176677405834, + 0.06776116788387299, + 0.062353044748306274, + 0.06801088154315948, + -0.007941833697259426 + ], + "user-circle-dashed-bold||*new*,person,users,profile,account,contact,login,pending,missing,removed": [ + -0.03229136019945145, + -0.008545678108930588, + -0.0377391017973423, + 0.03590170666575432, + 0.07380068302154541, + -0.04721507430076599, + 0.1252150535583496, + -0.052429474890232086, + 0.006693633738905191, + -0.0523918978869915, + 0.0671691820025444, + 0.01682259887456894, + 0.03236446902155876, + -0.051618706434965134, + 0.009170432575047016, + 0.014218637719750404, + -0.06758476793766022, + -0.05254350230097771, + 0.006096229888498783, + -0.02264656312763691, + -0.07555952668190002, + -0.03465713933110237, + -0.04061711207032204, + 0.05640919879078865, + 0.055934593081474304, + 0.03181559965014458, + -0.0026468834839761257, + -0.0030679276678711176, + -0.05280827358365059, + -0.03642323985695839, + -0.04401322826743126, + 0.0673622339963913, + 0.09734833985567093, + 0.011803599074482918, + 0.03481195494532585, + -0.03490244224667549, + 0.03284575417637825, + 0.06778984516859055, + 0.020743967965245247, + -0.07663101702928543, + -0.018226368352770805, + -0.08032570779323578, + -0.008543390780687332, + 0.036237433552742004, + -0.03916943445801735, + -0.021519094705581665, + -0.09011297672986984, + -0.039357785135507584, + 0.014301308430731297, + 0.03314946964383125, + 0.004538952372968197, + -0.07889101654291153, + -0.08841826021671295, + -0.010852991603314877, + 0.03521409258246422, + 0.051143668591976166, + 0.014557326212525368, + -0.04688771814107895, + 0.02874826453626156, + -0.0001519513170933351, + 0.0002652612456586212, + 0.0120009146630764, + 0.0371500663459301, + 0.057217344641685486, + 0.03588014468550682, + -0.05598996579647064, + -0.052171170711517334, + -0.08203157782554626, + 0.0033451789058744907, + 0.060585714876651764, + -0.0036446137819439173, + 0.016464801505208015, + -0.10597293078899384, + 0.011124773882329464, + 0.010876672342419624, + -0.015729771926999092, + -0.022626729682087898, + 0.050661612302064896, + -0.0331033356487751, + -0.039296139031648636, + -0.01481354795396328, + -0.022375592961907387, + -0.019366499036550522, + 0.04296514764428139, + 0.06267713755369186, + 0.11524048447608948, + -0.05957276001572609, + -0.14238467812538147, + -0.10378867387771606, + -0.04192899167537689, + -0.031054876744747162, + 0.028887754306197166, + 0.055050596594810486, + -0.01901080831885338, + -0.16702236235141754, + -0.015903694555163383, + 0.051387056708335876, + -0.014947909861803055, + -0.06627678871154785, + 0.149587944149971, + -0.029846902936697006, + -0.01091707218438387, + 0.08811911940574646, + 0.0031772488728165627, + -0.030114181339740753, + -0.0204258244484663, + -0.019496578723192215, + -0.00865667313337326, + -0.015082369558513165, + 0.02783999592065811, + -0.005896653514355421, + -0.07384481281042099, + -0.03960598632693291, + -0.057417865842580795, + -0.00025056683807633817, + -0.02846577577292919, + -0.08273756504058838, + -0.023493273183703423, + 0.08017464727163315, + 0.11308830976486206, + 0.04792669415473938, + -0.024962715804576874, + -0.043642766773700714, + -0.06327255070209503, + -0.03440391644835472, + 0.016815943643450737, + 0.017492445185780525, + -2.0190952185295948e-33, + 0.056540101766586304, + 0.08770675957202911, + -0.027485748752951622, + 0.03556835651397705, + -0.010088333860039711, + 0.013890042901039124, + -0.07724938541650772, + -0.07505074888467789, + -0.0023176074028015137, + -0.013222815468907356, + 0.059193145483732224, + 0.08395420014858246, + 0.02601984143257141, + 0.08723966777324677, + -0.006166998762637377, + -0.05595434829592705, + 0.13425956666469574, + -0.028346052393317223, + -0.06817734241485596, + 0.0013027545064687729, + -0.045330967754125595, + 0.06766942888498306, + -0.056249748915433884, + -0.0037367772310972214, + -0.016262292861938477, + 0.011567375622689724, + 0.05105685442686081, + -0.01819978654384613, + -0.015713278204202652, + 0.04604913294315338, + 0.01359791774302721, + 0.021777117624878883, + 0.08655664324760437, + 0.01421466376632452, + 0.0009000198333524168, + 0.04692506417632103, + -0.016149677336215973, + -0.06887675821781158, + -0.04455341026186943, + 0.011321349069476128, + -0.04807230830192566, + -0.0612824372947216, + -0.05824049934744835, + 0.0068834987469017506, + -0.0247849952429533, + 0.1044815182685852, + 0.06913582235574722, + -0.021292684599757195, + -0.0035875265020877123, + 0.02922212891280651, + -0.07209795713424683, + 0.021809585392475128, + -0.01770131289958954, + -0.002356506185606122, + -0.06606722623109818, + -0.06296496838331223, + -0.024946637451648712, + 0.019875485450029373, + -0.02523895539343357, + -0.03701388090848923, + 0.07847991585731506, + 0.06854095309972763, + -0.0014046926517039537, + -0.052733346819877625, + -0.0345139354467392, + -0.04161477088928223, + -0.06196685507893562, + -0.041583143174648285, + 0.041619520634412766, + -0.03129349276423454, + -0.0381021574139595, + 0.06953514367341995, + 0.09510722011327744, + 0.09753112494945526, + -0.03903254494071007, + -0.019801661372184753, + 0.01142896618694067, + 0.04385242611169815, + -0.015015625394880772, + -0.016402428969740868, + -0.018737031146883965, + -0.0070762308314442635, + -0.08706147968769073, + -0.008743247017264366, + 0.0014202960301190615, + -0.017518628388643265, + 0.046864550560712814, + -0.03535816818475723, + -0.10567476600408554, + 0.013380010612308979, + -0.03225012496113777, + 0.05024123936891556, + 0.0002789883583318442, + 0.03599925339221954, + -0.11934457719326019, + -2.3407527172428053e-33, + 0.016144469380378723, + 0.004338394850492477, + -0.02221199870109558, + -0.037730876356363297, + 0.01422186754643917, + 0.034493230283260345, + 0.09051810204982758, + 0.03187382221221924, + 0.008087201975286007, + -0.01734979636967182, + 0.00376560864970088, + 0.026714568957686424, + 0.03344477713108063, + 0.012247457168996334, + 0.09223005175590515, + 0.10058924555778503, + -0.02012459933757782, + 0.02277746982872486, + -0.06442723423242569, + 0.04804383963346481, + -0.06489016860723495, + 0.026006285101175308, + -0.08751901984214783, + 0.04161430522799492, + -0.022894689813256264, + -0.0004945069667883217, + 0.12227585911750793, + -0.07220035046339035, + -0.040505390614271164, + -0.015733841806650162, + -0.03531324863433838, + -0.0685252770781517, + -0.018427178263664246, + 0.03900934383273125, + -0.0028611186426132917, + 0.003715414786711335, + -0.011576954275369644, + -0.024004915729165077, + -0.05917997285723686, + -0.009088676422834396, + -0.015346938744187355, + 0.02220997028052807, + 0.06675972789525986, + 0.01852651685476303, + -0.010302824899554253, + 0.00439857505261898, + 0.02138795331120491, + -0.02338072471320629, + -0.05676528066396713, + 0.10695479810237885, + 0.04713914915919304, + -0.04959295317530632, + 0.06792978942394257, + -0.014941323548555374, + -0.042190372943878174, + -0.018082980066537857, + 0.02497946470975876, + 0.008552604354918003, + 0.09532507508993149, + 0.03032580390572548, + -0.05808151885867119, + 0.035465579479932785, + -0.03731350228190422, + 0.11668308824300766, + -0.011835601180791855, + -0.06804277002811432, + 0.009827382862567902, + 0.004943522624671459, + -0.07354965060949326, + -0.06499902158975601, + 0.026123851537704468, + 0.014579483307898045, + -0.07641537487506866, + -0.03892761468887329, + 0.04210871458053589, + -0.03157898783683777, + 0.014044235460460186, + -0.03922523930668831, + -0.08858133107423782, + 0.06545351445674896, + -0.020154042169451714, + 0.026514481753110886, + -0.06110595911741257, + -0.00309890229254961, + -0.025888772681355476, + -0.05607439577579498, + -0.07099758833646774, + 0.07976652681827545, + 0.0019950747955590487, + -0.03807711601257324, + 0.0007364275516010821, + 0.05396275967359543, + -0.064353808760643, + 0.0034489016979932785, + -0.04962264001369476, + -2.671000132181689e-08, + -0.027352340519428253, + -0.04763917997479439, + 0.007049980107694864, + 0.04265201464295387, + 0.14179648458957672, + -0.04624529927968979, + -0.0068464078940451145, + -0.05318344756960869, + -0.04130888730287552, + -0.020169269293546677, + -0.009068830870091915, + 0.03189488500356674, + -0.10224249958992004, + -0.013710031285881996, + 0.053149767220020294, + 0.02756711281836033, + -0.06108162924647331, + 0.08691228926181793, + -0.018934397026896477, + -0.046934641897678375, + -0.0389956571161747, + 0.03452896699309349, + 0.019225988537073135, + -0.03221749886870384, + 0.0010971400188282132, + 0.03292416036128998, + -0.016494886949658394, + 0.00434647174552083, + -0.023504942655563354, + -0.0015954606933519244, + 0.0016198778757825494, + 0.08539988845586777, + 0.04545979201793671, + -0.07388950139284134, + -0.009192169643938541, + -0.013413556851446629, + -0.08368568122386932, + 0.05085344240069389, + -0.013176188804209232, + 0.040006570518016815, + 0.0464668832719326, + 0.02683287486433983, + 0.043481867760419846, + 0.024173151701688766, + -0.019459964707493782, + 0.012583179399371147, + 0.031674157828092575, + -0.03453473374247551, + -0.03128593787550926, + -0.14406470954418182, + -0.045967936515808105, + -0.033161286264657974, + 0.05158401280641556, + 0.07670268416404724, + -0.0362311489880085, + -0.026337023824453354, + 0.10702116787433624, + 0.11420198529958725, + 0.013673653826117516, + -0.01737155392765999, + 0.07432328164577484, + 0.0272696390748024, + 0.005376807879656553, + 0.03267384320497513 + ], + "user-circle-gear-bold||person,users,profile,account,contact,settings,preferences": [ + -0.035534925758838654, + -0.01823107711970806, + -0.1071324571967125, + 0.05296866223216057, + 0.045027509331703186, + -0.027899693697690964, + 0.11450303345918655, + 0.004323555622249842, + -0.014511500485241413, + -0.03475656732916832, + 0.020158803090453148, + 0.01523419190198183, + 0.09563342481851578, + -0.0873156487941742, + 0.05051424726843834, + -0.01105413492769003, + -0.020281009376049042, + 0.043228719383478165, + 0.039241667836904526, + -0.0035892578307539225, + 0.011210215277969837, + -0.0276036374270916, + 0.03617304190993309, + 0.029887886717915535, + 0.011354275047779083, + -0.019738320261240005, + 0.030896050855517387, + 0.020652862265706062, + -0.049549784511327744, + -0.06267662346363068, + -0.043969351798295975, + 0.06192665919661522, + 0.08335809409618378, + 0.0249850582331419, + -0.04891366884112358, + 0.0011657794238999486, + -0.007373359054327011, + 0.022390006110072136, + -0.016996139660477638, + -0.015730995684862137, + -0.007003369741141796, + -0.06876839697360992, + 0.017651142552495003, + -0.0007570601883344352, + -0.0335327573120594, + 0.03448737412691116, + -0.05430116131901741, + -0.015475122258067131, + -0.00807503703981638, + 0.03436899557709694, + 0.04317350313067436, + -0.0682678297162056, + -0.06099170446395874, + 0.026636647060513496, + 0.07161883264780045, + 0.038964927196502686, + -0.044588930904865265, + -0.005168917588889599, + 0.05237867310643196, + 0.014537042006850243, + 0.010718646459281445, + 0.015292751602828503, + 0.020764518529176712, + 0.08286118507385254, + 0.010877203196287155, + 0.03662483021616936, + 0.028906594961881638, + -0.018487457185983658, + -0.0556582473218441, + -0.03818415477871895, + 0.025791315361857414, + -0.025667129084467888, + -0.031114431098103523, + -0.027267662808299065, + 0.03952641785144806, + -0.012662803754210472, + 0.01617000252008438, + 0.0030299173668026924, + -0.07877016812562943, + -0.039302024990320206, + -0.053431715816259384, + 0.010519105941057205, + 0.03396747261285782, + 0.08192184567451477, + 0.09223637729883194, + 0.07896772772073746, + -0.025437479838728905, + -0.11099690198898315, + -0.09345310926437378, + 0.0017436888301745057, + -0.06958582252264023, + -0.016472751274704933, + 0.049418725073337555, + -0.04252463951706886, + -0.15700846910476685, + 0.050659552216529846, + -0.0029769332613795996, + -0.011031193658709526, + -0.10495449602603912, + 0.0822778195142746, + -0.038559336215257645, + -0.016628535464406013, + 0.06865804642438889, + 0.033340565860271454, + 0.010813682340085506, + -0.024139218032360077, + 0.014012236148118973, + 0.0033638805616647005, + -0.034776896238327026, + 0.04465193301439285, + 0.00401853583753109, + -0.04351544752717018, + -0.07277464121580124, + -0.07763060927391052, + 0.012172323651611805, + -0.04029824584722519, + -0.08268588036298752, + 0.023202313110232353, + 0.11779795587062836, + 0.07326561957597733, + 0.05341155081987381, + -0.03660034388303757, + -0.05055103823542595, + -0.06874648481607437, + -0.033261723816394806, + 0.048233889043331146, + 0.006825713906437159, + -2.7105165875794487e-33, + 0.04924489185214043, + 0.06291940063238144, + -0.0006542705814354122, + 0.051403943449258804, + -0.024326153099536896, + 0.017827577888965607, + -0.06773016601800919, + -0.06978880614042282, + -0.04194122925400734, + -0.004079150035977364, + 0.10023900866508484, + 0.12420372664928436, + -0.043507274240255356, + 0.12280304729938507, + 0.051584284752607346, + -0.05283607542514801, + 0.07029963284730911, + -0.0009822273859754205, + -0.05451647937297821, + -0.06172331050038338, + -0.04652354493737221, + 0.035194702446460724, + -0.06631847470998764, + -0.008482681587338448, + -0.004411982838064432, + 0.019906627014279366, + 0.09523054957389832, + 0.03888043388724327, + -0.04317338019609451, + 0.04721507802605629, + 0.005347462370991707, + 0.02100432850420475, + 0.07482369989156723, + 0.04067569226026535, + -0.018178049474954605, + 0.01526687666773796, + -0.07490577548742294, + -0.01555292122066021, + -0.06162777170538902, + 0.042609427124261856, + -0.008695829659700394, + -0.07668963819742203, + -0.07605522871017456, + -0.049827612936496735, + -0.10975339263677597, + 0.1297629177570343, + 0.07678528875112534, + -0.004978483077138662, + 0.013582359068095684, + 0.01740209572017193, + -0.010542867705225945, + -0.004971473012119532, + -0.02986837550997734, + 0.00981066282838583, + -0.01194041408598423, + -0.039410240948200226, + -0.026236820966005325, + 0.00901070050895214, + -0.032053735107183456, + -0.021288108080625534, + 0.009436937980353832, + 0.08018490672111511, + 0.09142974764108658, + -0.011141521856188774, + 0.0073168412782251835, + 0.03667840734124184, + -0.03666895255446434, + -0.0967480018734932, + 0.047977518290281296, + -0.04994519054889679, + -0.02686798945069313, + 0.07992275059223175, + 0.03971932828426361, + 0.03873540833592415, + -0.03441019728779793, + 0.006476740352809429, + -0.00996792409569025, + 0.03043447993695736, + -0.01129432674497366, + 0.004025938920676708, + -0.04977250099182129, + 0.014604666270315647, + -0.08717907220125198, + 0.036061014980077744, + 0.01673039421439171, + -0.050869740545749664, + 0.04349222034215927, + -0.01954582892358303, + -0.04850223660469055, + -0.01496947929263115, + -0.008355461061000824, + 0.003774957964196801, + 0.0416022390127182, + 0.023876531049609184, + -0.18037836253643036, + -3.6410705632092557e-34, + 0.0502629280090332, + -0.0027281492948532104, + 0.05370095372200012, + 0.009246176108717918, + 0.027761587873101234, + -0.014809533953666687, + 0.11231330037117004, + 0.04716222360730171, + -0.012728480622172356, + 0.053699884563684464, + 0.039984140545129776, + -0.029196055606007576, + -0.02065250650048256, + -0.030347194522619247, + 0.12266701459884644, + 0.0737249106168747, + -0.02230428159236908, + 0.054459501057863235, + -0.062424153089523315, + -0.02744472585618496, + -0.05297163873910904, + -0.06961958110332489, + -0.0634889006614685, + 0.06268732994794846, + -0.042299605906009674, + -0.02364480309188366, + 0.05574766919016838, + -0.027385616675019264, + -0.06403367221355438, + -0.035305142402648926, + -0.029586220160126686, + -0.003712431527674198, + -0.01628527231514454, + 0.006601758301258087, + -0.0066365692764520645, + 0.03886010870337486, + -0.08350861072540283, + -0.001744970795698464, + -0.07233970612287521, + 0.0072289444506168365, + -0.021013224497437477, + 0.0284939743578434, + -0.012896280735731125, + 0.014888003468513489, + -0.03640150651335716, + -0.02962849847972393, + 0.025324247777462006, + -0.10999257117509842, + -0.028354745358228683, + 0.0560465082526207, + 0.06646405905485153, + -0.021356135606765747, + 0.05570830777287483, + 0.005740828346461058, + -0.05527344346046448, + -0.002006816677749157, + 0.024438031017780304, + 0.02576017938554287, + 0.09286203235387802, + -0.009695076383650303, + -0.0013247053138911724, + -0.02027340792119503, + -0.06940656155347824, + 0.11747778207063675, + -0.004292685072869062, + -0.033491652458906174, + 0.02526577189564705, + -0.017895370721817017, + -0.07939209043979645, + -0.009781064465641975, + 0.04760754853487015, + -0.06646233052015305, + 0.02141551859676838, + -0.04390702769160271, + 0.03692018985748291, + -0.09840551763772964, + 0.019395554438233376, + -0.04033026844263077, + -0.04245295375585556, + 0.0190411563962698, + 0.027935033664107323, + 0.01787002943456173, + -0.03595533221960068, + 0.03976678103208542, + -0.08388853818178177, + 0.00905547197908163, + -0.034295737743377686, + 0.09497669339179993, + 0.024044198915362358, + 0.0058738719671964645, + -0.027571843937039375, + 0.0484972707927227, + -0.07332564890384674, + 0.009902628138661385, + -0.07128069549798965, + -2.228449602625915e-08, + -0.07312663644552231, + -0.04947591572999954, + 0.05956321582198143, + 0.04691275581717491, + 0.07042921334505081, + -0.014929000288248062, + 0.010921649634838104, + -0.028686949983239174, + -0.02547827549278736, + 0.03194814920425415, + 0.0015675891190767288, + 0.06773460656404495, + -0.028729848563671112, + -0.02712331712245941, + 0.0785863846540451, + 0.011109567247331142, + -0.06496351957321167, + 0.06330321729183197, + -0.03236154839396477, + -0.03677245229482651, + 0.011839643120765686, + 0.027706697583198547, + 0.02944880910217762, + -0.011800048872828484, + 0.07587146013975143, + 0.03130132704973221, + -0.07912664860486984, + 0.0406673438847065, + 0.011082131415605545, + 0.05262881517410278, + 0.033943090587854385, + 0.027773544192314148, + -0.00491325743496418, + -0.06982998549938202, + -0.05025629326701164, + -0.03426237031817436, + -0.09098943322896957, + 0.052393894642591476, + 0.03453877568244934, + 0.10032688826322556, + 0.019891127943992615, + -0.05963661149144173, + 0.009333102032542229, + 0.0608641654253006, + -0.06358201056718826, + 0.02554771862924099, + 0.03321194276213646, + -0.02652139961719513, + -0.10144844651222229, + -0.12087104469537735, + -0.06983296573162079, + -0.050224676728248596, + 0.025811197236180305, + 0.060994572937488556, + -0.07096213102340698, + -0.0785261020064354, + 0.07435940951108932, + 0.09855267405509949, + -0.020605044439435005, + -0.0292427446693182, + -0.01208253763616085, + 0.048590902239084244, + -0.0002418530493741855, + -0.0021111825481057167 + ], + "user-circle-minus-bold||person,users,profile,account,contact,delete,remove,-": [ + 0.0008900499669834971, + 0.012783464044332504, + -0.10800930857658386, + 0.04699763283133507, + 0.07108993083238602, + -0.0585460290312767, + 0.12753896415233612, + -0.030167441815137863, + 0.02509680762887001, + -0.05488774552941322, + 0.03529439494013786, + 0.01563207060098648, + 0.08254659920930862, + -0.04541292041540146, + -0.010665928944945335, + -0.0015700561925768852, + -0.07194454222917557, + 0.053932640701532364, + 0.024652749300003052, + -0.03818928077816963, + -0.010871353559195995, + -0.018326954916119576, + 0.01687890663743019, + 0.04030458256602287, + 0.06602003425359726, + -0.008020741865038872, + 0.027366500347852707, + -0.0017046347493305802, + -0.0428134948015213, + -0.049148932099342346, + -0.02702050842344761, + 0.0276342760771513, + 0.12902627885341644, + 0.03606155142188072, + -0.004836827050894499, + 0.005380608607083559, + -0.01885225810110569, + 0.05095355957746506, + 0.02145460620522499, + -0.042503926903009415, + 0.00990060530602932, + -0.058999959379434586, + -0.019927680492401123, + 0.008701229467988014, + -0.06389661878347397, + 0.024847468361258507, + -0.13969704508781433, + -0.03304179757833481, + -0.01040363498032093, + 0.03558289632201195, + 0.04659360274672508, + -0.06545902788639069, + -0.10319158434867859, + 0.03121430240571499, + 0.06931654363870621, + 0.011294427327811718, + -0.018930038437247276, + -0.05377804860472679, + 0.03463559225201607, + 0.004371042363345623, + 0.013658083975315094, + 0.0021070572547614574, + 0.03825577720999718, + 0.03743947669863701, + 0.045849233865737915, + -0.008085579611361027, + -0.022718995809555054, + -0.04435384273529053, + -0.023300476372241974, + 0.021351980045437813, + 0.0029708354268223047, + -0.029073264449834824, + -0.07799211889505386, + -0.03470080345869064, + -0.0040475777350366116, + 0.03786635026335716, + -0.03019765391945839, + 0.06986875832080841, + -0.06613987684249878, + -0.0017793973674997687, + -0.0015071475645527244, + -0.012850902043282986, + 0.029398802667856216, + 0.03785427659749985, + 0.07362881302833557, + 0.10955764353275299, + -0.04596877098083496, + -0.15640807151794434, + -0.08871527016162872, + -0.01747675985097885, + -0.04128061980009079, + 0.008376865647733212, + 0.08266165852546692, + -0.009142521768808365, + -0.17952372133731842, + -0.006686982698738575, + 0.021918728947639465, + 0.02047940157353878, + -0.09237666428089142, + 0.12080318480730057, + -0.048165056854486465, + 0.008557012304663658, + 0.03839096799492836, + -0.018035223707556725, + -0.035053055733442307, + -0.023841775953769684, + 0.010106108151376247, + -0.030895719304680824, + -0.015617978759109974, + 0.020079387351870537, + -0.008513295091688633, + -0.08635246008634567, + -0.07546552270650864, + -0.06657254695892334, + 0.0032807262614369392, + -0.027834955602884293, + -0.005409122910350561, + 0.030586929991841316, + 0.11262407153844833, + 0.055245064198970795, + 0.03598130866885185, + -0.03648580238223076, + -0.06377220153808594, + -0.02430438995361328, + -0.057914599776268005, + 0.045641522854566574, + 0.020309530198574066, + -1.842392887333073e-33, + 0.06774941086769104, + 0.09090539813041687, + -0.03204599395394325, + 0.02155565284192562, + -0.04229753091931343, + 0.01056316215544939, + -0.12097274512052536, + -0.06768349558115005, + -0.015045970678329468, + 0.03653930872678757, + 0.10092691332101822, + 0.06596633791923523, + 0.011408300139009953, + 0.056916072964668274, + 0.037599749863147736, + -0.01216907612979412, + 0.10022775828838348, + -0.05936209857463837, + -0.10773145407438278, + -0.020102620124816895, + -0.041302528232336044, + 0.0504547581076622, + -0.08275911957025528, + 0.014123938977718353, + 0.006936731748282909, + -0.021276598796248436, + 0.042274292558431625, + -0.021074706688523293, + -0.036528706550598145, + 0.03127565234899521, + 0.013541756197810173, + 0.01391010731458664, + 0.02957889251410961, + 0.06296227127313614, + 0.030710281804203987, + 0.04671866446733475, + -0.049721166491508484, + -0.015448205173015594, + -0.04256267100572586, + 0.04389210417866707, + -0.067445769906044, + -0.046068672090768814, + -0.037010688334703445, + -0.0483492948114872, + -0.040870215743780136, + 0.1321648210287094, + 0.062131498008966446, + -0.02399052120745182, + -0.01365229208022356, + 0.009624750353395939, + -0.014651484787464142, + 0.027353975921869278, + -0.023099234327673912, + -0.005749847274273634, + -0.036945853382349014, + -0.07503709197044373, + 0.01155897043645382, + 0.042651958763599396, + -0.015563308261334896, + -0.027403978630900383, + 0.032764729112386703, + 0.04226784035563469, + 0.023105334490537643, + -0.0321616604924202, + -0.04733222723007202, + -0.012904074043035507, + -0.10950282961130142, + -0.05332094058394432, + 0.040456779301166534, + -0.029949814081192017, + -0.03277469426393509, + 0.12017267942428589, + 0.08498896658420563, + 0.054341696202754974, + -0.06833616644144058, + -0.015569528564810753, + 0.022611044347286224, + 0.032889474183321, + 0.017545854672789574, + 0.018835749477148056, + -0.03642186149954796, + 0.02974451333284378, + -0.07977712899446487, + 0.0056821685284376144, + 0.011165042407810688, + -0.024878468364477158, + 0.04054861515760422, + -0.03337298333644867, + -0.037629250437021255, + 0.004086011089384556, + -0.01420208252966404, + 0.03261644020676613, + 0.0264714527875185, + 0.03627590090036392, + -0.16374723613262177, + -1.403215708238389e-33, + 0.016023846343159676, + 0.01178393978625536, + -0.0023260300513356924, + -0.04231904447078705, + -0.009541553445160389, + 0.0077647799625992775, + 0.11953926831483841, + 0.04334082826972008, + -0.004979515448212624, + 0.012999564409255981, + 0.003917946480214596, + -0.024080824106931686, + -0.030136052519083023, + -0.017880011349916458, + 0.10627708584070206, + 0.06990460306406021, + -0.03480739891529083, + 0.014012920670211315, + -0.0881371721625328, + 0.0058633433654904366, + -0.0821242704987526, + 0.0009113948326557875, + -0.06397350132465363, + 0.06391368806362152, + -0.024210836738348007, + -0.0185382142663002, + 0.09886804968118668, + -0.047949716448783875, + -0.03569803759455681, + -0.01906062662601471, + -0.0430949330329895, + -0.02509697899222374, + 0.015681076794862747, + -0.0077512385323643684, + -0.054026421159505844, + -0.025544287636876106, + -0.049219850450754166, + 0.007444316055625677, + -0.027711600065231323, + -0.007982907816767693, + -0.039692047983407974, + 0.05412213131785393, + 0.019961612299084663, + 0.020075974985957146, + -0.010391429997980595, + -0.0011638558935374022, + 0.001971849240362644, + -0.0720861479640007, + -0.04150761291384697, + 0.08485657721757889, + 0.026990579441189766, + -0.025242848321795464, + -0.0018935085972771049, + 0.0231030210852623, + -0.041974324733018875, + -0.0384247787296772, + 0.05433135852217674, + 0.02195706032216549, + 0.07204525917768478, + 0.0019515667809173465, + -0.0592426098883152, + 0.000689848733600229, + 0.007479594089090824, + 0.11967642605304718, + -0.01033303514122963, + -0.010249804705381393, + 0.03819601610302925, + 0.01614633947610855, + -0.07885102182626724, + -0.03367769345641136, + 0.057697393000125885, + -0.018046105280518532, + -0.04301607236266136, + 0.0003326638543512672, + 0.01910441741347313, + -0.09327288717031479, + 0.01826397515833378, + -0.024842003360390663, + -0.05852401629090309, + 0.03332345187664032, + -0.008208622224628925, + 0.030780469998717308, + -0.06689184904098511, + 0.02429964952170849, + -0.04638615623116493, + -0.046048425137996674, + -0.06768359988927841, + 0.06426987797021866, + -0.026124687865376472, + 0.013774041086435318, + -0.006203541997820139, + 0.030862102285027504, + -0.017527518793940544, + -0.024428721517324448, + -0.05329229310154915, + -2.4110246243935762e-08, + -0.05775758624076843, + -0.07880338281393051, + 0.019162490963935852, + 0.017172077670693398, + 0.07728476077318192, + -0.024809256196022034, + -0.001020425814203918, + -0.02807379700243473, + 0.0021036434918642044, + -0.007573883980512619, + 0.030138885602355003, + 0.08255591243505478, + -0.09515155106782913, + -0.08863543719053268, + 0.08231060951948166, + 0.04251145198941231, + -0.02968970127403736, + 0.0865456685423851, + -0.02057238295674324, + -0.005109596066176891, + -0.02250150591135025, + 0.053867995738983154, + 0.007514192722737789, + -0.003539705416187644, + 0.03164054825901985, + 0.0333571620285511, + -0.06429149210453033, + 0.05605185776948929, + -0.00023646088084205985, + -0.0036564089823514223, + 0.022223709151148796, + 0.06332768499851227, + 0.05308457463979721, + -0.029110761359333992, + -0.02894207090139389, + -0.030773792415857315, + -0.05581281706690788, + 0.045627739280462265, + -0.016471851617097855, + 0.13893644511699677, + 0.020261431112885475, + -0.010461926460266113, + 0.003784752683714032, + 0.053963322192430496, + -0.017956627532839775, + 0.00253854226320982, + 0.05997689813375473, + -0.06860122084617615, + -0.048612840473651886, + -0.10804183036088943, + -0.026560448110103607, + -0.03074416145682335, + 0.02962503954768181, + 0.08109646290540695, + -0.07993564754724503, + -0.06649796664714813, + 0.10848107933998108, + 0.10829182714223862, + -0.021636374294757843, + -0.02449330873787403, + 0.07315803319215775, + 0.057020239531993866, + 0.02779928781092167, + 0.0026608635671436787 + ], + "user-circle-plus-bold||person,users,profile,account,contact,add,create,+": [ + -0.021247396245598793, + -0.03648244962096214, + -0.12991881370544434, + 0.06309393793344498, + 0.0640464499592781, + -0.026163004338741302, + 0.10023348778486252, + -0.0185559019446373, + 0.01843811199069023, + -0.04112424701452255, + 0.016439709812402725, + -0.007026424165815115, + 0.06494411826133728, + -0.06821764260530472, + 0.03711594641208649, + 0.001617221045307815, + -0.08967036008834839, + 0.052947621792554855, + 0.04989664629101753, + -0.07689300179481506, + 0.012872088700532913, + -0.0433662086725235, + 0.049161601811647415, + 0.04221232607960701, + 0.04318828508257866, + -0.018272848799824715, + 0.019189102575182915, + 0.006027346942573786, + 0.014281529001891613, + -0.04578262194991112, + -0.008313150145113468, + 0.03080775775015354, + 0.1185859888792038, + 0.028485041111707687, + -0.022539226338267326, + 0.02753516100347042, + -0.018451442942023277, + 0.06940986961126328, + 0.00648748641833663, + -0.06181091442704201, + 0.005044202320277691, + -0.06167992949485779, + 0.016897037625312805, + 0.015191745012998581, + -0.059648219496011734, + -0.017171353101730347, + -0.10357225686311722, + -0.03214405104517937, + 0.021941982209682465, + 0.050126783549785614, + 0.03978177532553673, + -0.0893474891781807, + -0.09382086992263794, + 0.012961271218955517, + 0.0749344676733017, + 0.022258585318922997, + -0.06069337576627731, + -0.04898204654455185, + 0.044116370379924774, + 0.006756538525223732, + 0.020315775647759438, + -0.013381185941398144, + 0.07646150141954422, + 0.027941176667809486, + 0.015855293720960617, + -0.006928127259016037, + -0.05512685328722, + 0.008386893197894096, + -0.04224960505962372, + -0.0054533411748707294, + 0.021048367023468018, + -0.012302868068218231, + -0.06699936091899872, + -0.015694359317421913, + 0.006826264783740044, + 0.03058885969221592, + -0.04775584116578102, + 0.04994713515043259, + -0.047504205256700516, + -0.014829824678599834, + -0.022366531193256378, + -0.005522849503904581, + 0.03119814023375511, + 0.05623790621757507, + 0.10178736597299576, + 0.12089914083480835, + -0.02367098070681095, + -0.13899892568588257, + -0.1076144427061081, + -0.01835654117166996, + -0.03829319775104523, + 0.023024437949061394, + 0.043867867439985275, + -0.013813178986310959, + -0.17221903800964355, + 0.00024100829614326358, + 0.02206588163971901, + -0.03585454449057579, + -0.11375804245471954, + 0.08596914261579514, + -0.06181827560067177, + 0.0063598318956792355, + 0.0377485454082489, + 0.014467835426330566, + 0.017032213509082794, + -0.03917586803436279, + 0.013116609305143356, + -0.02506621554493904, + -0.02760065160691738, + 0.039666399359703064, + 0.010652702301740646, + -0.058642663061618805, + -0.07050782442092896, + -0.07302394509315491, + 0.013595043681561947, + -0.031501926481723785, + -0.03316988795995712, + -0.01111201848834753, + 0.13829787075519562, + 0.04752225801348686, + 0.07487701624631882, + -0.005448151845484972, + -0.060839276760816574, + -0.03717193379998207, + -0.08305465430021286, + 0.0107114277780056, + 0.00814934354275465, + -2.023989683132831e-33, + 0.0856676921248436, + 0.11945848912000656, + -0.016867194324731827, + 0.06936179101467133, + -0.06716491281986237, + 0.020253336057066917, + -0.12969674170017242, + -0.032635509967803955, + -0.03860139474272728, + -0.009181307628750801, + 0.08212287724018097, + 0.030928920954465866, + -0.0034014880657196045, + 0.09705860912799835, + 0.018427889794111252, + -0.04533911868929863, + 0.09062540531158447, + -0.03607052564620972, + -0.10251188278198242, + -0.009953799657523632, + -0.08140090852975845, + 0.041267674416303635, + -0.08463844656944275, + 0.025985928252339363, + 0.022561874240636826, + 0.022916914895176888, + 0.07712453603744507, + 0.0005628078943118453, + -0.014621701091527939, + 0.02102794498205185, + 0.025145305320620537, + -0.003709425451233983, + 0.022206876426935196, + 0.08085160702466965, + 0.024487124755978584, + 0.05769560486078262, + -0.02873246558010578, + -0.0052467770874500275, + -0.02633248269557953, + 0.05437864363193512, + -0.049255043268203735, + -0.05207150802016258, + -0.040179938077926636, + -0.05325186252593994, + -0.05667802318930626, + 0.13290102779865265, + 0.03215789422392845, + -0.027698013931512833, + -0.012214871123433113, + 0.0014523083809763193, + -0.04294911026954651, + 0.02067340351641178, + -0.05362069234251976, + 0.029704798012971878, + -0.04584406316280365, + -0.05895290896296501, + -0.02990701235830784, + 0.03030364215373993, + -0.03193889558315277, + -0.016608070582151413, + 0.013513904996216297, + 0.05743035301566124, + 0.024933595210313797, + -0.0005596200353465974, + -0.06296548992395401, + -0.012458911165595055, + -0.06429087370634079, + -0.057424258440732956, + 0.07859926670789719, + -0.0324542410671711, + -0.006552467122673988, + 0.10645191371440887, + 0.04705997183918953, + 0.06541058421134949, + -0.055577050894498825, + -0.01655452512204647, + 0.00838810857385397, + 0.03940131515264511, + -0.01956850104033947, + 0.027087153866887093, + -0.03180539980530739, + 0.008397800847887993, + -0.06245481222867966, + 0.010380159132182598, + 0.013780963607132435, + -0.021472571417689323, + 0.01704009808599949, + -0.022571325302124023, + -0.029369546100497246, + -0.007466926239430904, + -0.01950710639357567, + 0.010716859251260757, + 0.06591197848320007, + 0.03900153562426567, + -0.18194901943206787, + -9.740972710378896e-34, + 0.009867792949080467, + -0.011943419463932514, + -0.001533006434328854, + -0.05660639703273773, + 0.020671119913458824, + 0.008188205771148205, + 0.10423251986503601, + 0.009674247354269028, + -0.029739169403910637, + 0.01957886479794979, + -0.02484985813498497, + -0.018991203978657722, + -0.021328426897525787, + 0.005802823696285486, + 0.09664028882980347, + 0.06347692012786865, + -0.03639234974980354, + 0.0577218197286129, + -0.029658230021595955, + -0.014245505444705486, + -0.07262638211250305, + -0.00543533731251955, + -0.05558551847934723, + 0.04576864093542099, + 0.0015867300098761916, + 0.01843075640499592, + 0.06966493278741837, + -0.03802132606506348, + -0.03295868635177612, + -0.02788403443992138, + -0.03776034712791443, + -0.014860667288303375, + -0.012138599529862404, + 0.008159788325428963, + -0.025209233164787292, + -0.019417686387896538, + -0.049351394176483154, + -0.009423114359378815, + -0.010763108730316162, + -0.015038684010505676, + -0.004504108335822821, + 0.03688189014792442, + 0.009246460162103176, + 0.03481724485754967, + -0.003108096541836858, + -0.025273285806179047, + 0.05309918150305748, + -0.07201480120420456, + -0.07262019068002701, + 0.07099176198244095, + 0.0377715602517128, + -0.04837188497185707, + 0.0013729115016758442, + 0.008421070873737335, + -0.039888616651296616, + -0.043549004942178726, + 0.08007603138685226, + 0.02136983722448349, + 0.08673520386219025, + 0.0005039095412939787, + -0.06957697123289108, + -0.002521727466955781, + 0.011051828041672707, + 0.11576903611421585, + -0.010422879830002785, + -0.022930147126317024, + 0.04032425209879875, + -0.01865694858133793, + -0.09535245597362518, + -0.038722891360521317, + 0.04649832099676132, + -0.016420744359493256, + -0.04090274125337601, + 0.010840076021850109, + 0.0076568457297980785, + -0.07002118974924088, + 0.018475601449608803, + -0.010532548651099205, + -0.042384110391139984, + 0.019318468868732452, + -0.020290138199925423, + 0.028658468276262283, + -0.038920193910598755, + 0.021063843742012978, + -0.018885718658566475, + -0.0456206388771534, + -0.02702479250729084, + 0.09673234820365906, + -0.016581101343035698, + -0.0005933227366767824, + -0.01807262934744358, + 0.0768279954791069, + -0.08181184530258179, + -0.021782852709293365, + -0.0703941136598587, + -2.4386586972013902e-08, + -0.06660044938325882, + -0.06578636914491653, + -0.008322173729538918, + 0.011602668091654778, + 0.07611672580242157, + -0.034327182918787, + -0.012643659487366676, + -0.06683266907930374, + -0.02378007583320141, + -0.012323940172791481, + -0.007833455689251423, + 0.08900651335716248, + -0.0622517392039299, + -0.052737556397914886, + 0.07072324305772781, + 0.028889883309602737, + -0.02950734831392765, + 0.06653452664613724, + -0.015728116035461426, + -0.015273110009729862, + -0.0032739415764808655, + 0.08149277418851852, + 0.002379655372351408, + -0.018957557156682014, + 0.00786362960934639, + 0.0451090931892395, + -0.05983944982290268, + 0.005852960050106049, + -0.00816439650952816, + 0.015106220729649067, + 0.03066575527191162, + 0.07229337841272354, + 0.007887495681643486, + -0.0125107541680336, + -0.022041965276002884, + -0.030255990102887154, + -0.05011098459362984, + 0.03141815960407257, + -0.010459682904183865, + 0.120572529733181, + 0.04203566536307335, + -0.003284699749201536, + 0.024337880313396454, + 0.03610815480351448, + 0.014814253896474838, + 0.018780233338475227, + 0.028773842379450798, + -0.074407659471035, + -0.05227082595229149, + -0.1190936267375946, + -0.05948362126946449, + -0.05352232977747917, + 0.09170179069042206, + 0.04382699355483055, + -0.0830264762043953, + -0.06359401345252991, + 0.0891915038228035, + 0.13582639396190643, + 0.017292028293013573, + -0.013970872387290001, + 0.03514835983514786, + 0.02910785749554634, + 0.04352949187159538, + 0.03764639049768448 + ], + "user-focus-bold||identification,biometrics,facial recognition,profile,person,account,autofocus": [ + -0.01042184978723526, + -0.07962946593761444, + -0.08832202851772308, + -0.04665883630514145, + 0.04650630056858063, + -0.005538159981369972, + 0.11891966313123703, + -0.003077951492741704, + -0.05834381282329559, + -0.018361352384090424, + 0.020979933440685272, + -0.05950189009308815, + 0.034368228167295456, + -0.011106942780315876, + -0.05942036584019661, + -0.0050986879505217075, + 0.05133120343089104, + -0.017349151894450188, + -0.014049735851585865, + 0.022789258509874344, + 0.04981480911374092, + -0.036898717284202576, + 0.05026409029960632, + -0.023108405992388725, + 0.002488810569047928, + -0.009902761317789555, + 0.02219962328672409, + -0.014277077279984951, + -0.044730350375175476, + -0.06892785429954529, + -0.009410001337528229, + 0.024302415549755096, + 0.16087599098682404, + 0.0334663912653923, + -0.015402774326503277, + -0.06750710308551788, + -0.012653166428208351, + 0.03740386292338371, + -0.05035660043358803, + -0.05381447449326515, + -0.0892903283238411, + -0.06700596213340759, + -0.013730814680457115, + 0.09550973027944565, + 0.020778823643922806, + 0.007917793467640877, + -0.027844024822115898, + -0.005995030514895916, + 0.007029864937067032, + -0.0015705935657024384, + -0.0859975665807724, + -0.07137123495340347, + -0.08482716232538223, + 0.032391257584095, + -0.0029334118589758873, + 0.006183078978210688, + -0.05411946773529053, + -0.010218124836683273, + 0.04419206827878952, + 0.07340149581432343, + -0.03889528661966324, + -0.0011308437678962946, + 0.017567502334713936, + 0.08413787186145782, + 0.07776236534118652, + 0.04715626686811447, + 0.01742338202893734, + -0.10113856196403503, + -0.01462021004408598, + -0.008838603273034096, + -0.0383833572268486, + 0.019325394183397293, + -0.0688934400677681, + -0.06819663941860199, + -0.025623265653848648, + -0.03844733163714409, + 0.0022828890942037106, + -0.0680321604013443, + 0.006245756056159735, + -0.07300572097301483, + 0.016933420673012733, + -0.033352144062519073, + -0.0370720736682415, + -0.013330831192433834, + 0.10886622965335846, + 0.09187792986631393, + -0.11595850437879562, + -0.08206487447023392, + -0.10876724123954773, + -0.02307051047682762, + -0.05088115110993385, + -0.06583703309297562, + 0.006416616961359978, + -0.027628274634480476, + -0.06919655203819275, + -0.00930420309305191, + 0.046973347663879395, + -0.015507695265114307, + 0.00113750621676445, + 0.07158195972442627, + -0.005096874199807644, + -0.05208348110318184, + 0.028104349970817566, + 0.003490076633170247, + -0.0030807717703282833, + -0.03672332689166069, + 0.047248270362615585, + -0.007438874803483486, + 0.03713996708393097, + -0.001904848264530301, + 0.0028119569178670645, + -0.0478435717523098, + -0.11920858174562454, + -0.038487520068883896, + 0.05878249928355217, + 0.003059335518628359, + -0.028573857620358467, + 0.00262954318895936, + 0.11691603809595108, + 0.005780282896012068, + -0.016016537323594093, + -0.02044188603758812, + -0.01285950094461441, + -0.07496944069862366, + -0.02780868485569954, + -0.0136654581874609, + -0.04812227189540863, + 2.3054890346618387e-34, + 0.036027468740940094, + 0.04675714671611786, + -0.03733881190419197, + 0.12192253768444061, + -0.03250263258814812, + -0.013994940556585789, + -0.09672416746616364, + -0.05460045114159584, + -0.04439680278301239, + 0.0418870635330677, + 0.023824768140912056, + 0.1277644783258438, + -0.10618562996387482, + 0.1367633193731308, + 0.09703374654054642, + 0.017881006002426147, + 0.00454044109210372, + 0.07196174561977386, + -0.10536700487136841, + 0.013149004429578781, + -0.01757511869072914, + 0.06219363957643509, + -0.011761619709432125, + 0.0075228395871818066, + 0.047034263610839844, + -0.015586999244987965, + 0.02530668117105961, + 0.012069527059793472, + -0.024145497009158134, + 0.029049748554825783, + -0.037238892167806625, + 0.020098697394132614, + -0.004391271620988846, + -0.012160480953752995, + 0.020969074219465256, + 0.010956409387290478, + -0.03196265920996666, + -0.04160464555025101, + 0.017169127240777016, + 0.01193653978407383, + -0.08506608009338379, + 0.044038478285074234, + -0.03763638436794281, + -0.0171232707798481, + -0.049227215349674225, + 0.09033230692148209, + -0.015823937952518463, + 0.06704715639352798, + 0.0023756728041917086, + 0.0838497057557106, + -0.01961115188896656, + -0.014775375835597515, + -0.03304549306631088, + -0.05945092439651489, + -0.017602646723389626, + 0.0010987637797370553, + -0.024273598566651344, + 0.06700316071510315, + -0.0031853264663368464, + 0.0022575620096176863, + 0.024929072707891464, + -0.029849519953131676, + 0.011064661666750908, + -0.03838541731238365, + -0.029197625815868378, + 0.01709004119038582, + -0.0479821152985096, + -0.015456886030733585, + 0.055032603442668915, + 0.07245224714279175, + -0.03631933033466339, + 0.07740283757448196, + 0.02645234204828739, + 0.04598153010010719, + -0.0064881895668804646, + 0.013576341792941093, + 0.037389181554317474, + -0.007606199011206627, + -0.07784651219844818, + 0.05356154218316078, + -0.04714882746338844, + 0.06882285326719284, + -0.07972158491611481, + 0.024923991411924362, + -0.0916852131485939, + 0.030397960916161537, + 0.004051520023494959, + -0.08827170729637146, + -0.08986889570951462, + 0.008287603035569191, + -0.041077759116888046, + 0.039646048098802567, + -0.009835892356932163, + -0.009617337025702, + -0.1434008926153183, + -2.9989685749338374e-33, + -0.032160017639398575, + 0.013540747575461864, + -0.009838026016950607, + -0.005711666774004698, + 0.03185034170746803, + 0.07998020946979523, + 0.11427169293165207, + 0.04635995253920555, + 0.030091263353824615, + -0.002816777676343918, + 0.025163697078824043, + -0.03365962207317352, + 0.0020862037781625986, + -0.03401138260960579, + 0.00472639873623848, + 0.029840990900993347, + -0.04494320973753929, + 0.020797859877347946, + -0.05279562249779701, + 0.052319131791591644, + 0.009826770052313805, + 0.009415928274393082, + -0.062199801206588745, + 0.05304505303502083, + -0.025719214230775833, + 0.03104051947593689, + -0.036620430648326874, + -0.0371408686041832, + -0.02397497184574604, + -0.08345858752727509, + -0.01583993248641491, + 0.025489727035164833, + 0.0001691474171821028, + 0.05850701034069061, + -0.06720495969057083, + 0.06169496104121208, + -0.008932356722652912, + -0.04367534816265106, + -0.02175520732998848, + 0.08513248711824417, + 0.029585188254714012, + 0.07085612416267395, + 0.016985395923256874, + 0.02287658490240574, + -0.026773227378726006, + -0.03436718508601189, + -0.06472641974687576, + -0.05490284413099289, + -0.0033393115736544132, + 0.06438267230987549, + -0.018623322248458862, + 0.01273859478533268, + -0.022859107702970505, + 0.024710187688469887, + -0.07882797718048096, + -0.04067578539252281, + 0.035603445023298264, + -0.03162418305873871, + 0.044032249599695206, + 0.039011649787425995, + -0.009453441947698593, + 0.0008186826598830521, + -0.06457585841417313, + 0.08855550736188889, + -0.032172106206417084, + -0.07614974677562714, + 0.04931627959012985, + -0.005841603968292475, + -0.046110883355140686, + -0.012890243902802467, + 0.06892619282007217, + -0.10360869020223618, + 0.03432866558432579, + 0.027464978396892548, + -0.02822505123913288, + -0.053497303277254105, + -0.019655263051390648, + 0.008365869522094727, + -0.030226141214370728, + 0.022827208042144775, + 0.01510552503168583, + -0.003446337301284075, + 0.021833965554833412, + 0.10201894491910934, + -0.005860972683876753, + 0.10566574335098267, + 0.010169384069740772, + -0.024457652121782303, + 0.05047913268208504, + -0.017255544662475586, + -0.025519846007227898, + 0.08362855762243271, + -0.08426207304000854, + 0.0004699527926277369, + -0.09140899032354355, + -2.3349111089032704e-08, + -0.021250395104289055, + -7.669682236155495e-05, + 0.03353121131658554, + -0.020648781210184097, + -0.008062572218477726, + -0.043289877474308014, + -0.041167810559272766, + 0.018808534368872643, + 0.010286804288625717, + -0.03768771141767502, + 0.030408233404159546, + 0.02851824089884758, + -0.08673667162656784, + -0.03097255900502205, + 0.09903771430253983, + 0.0345156267285347, + -0.07001002877950668, + 0.10469858348369598, + 0.0043757096864283085, + -0.02976433001458645, + 0.014655093662440777, + 0.04958248883485794, + -0.017952727153897285, + -0.008319622837007046, + 0.04513690993189812, + 0.035324741154909134, + -0.09170767664909363, + 0.07971908897161484, + 0.015707185491919518, + 0.10185057669878006, + 0.03488679602742195, + 0.13075821101665497, + -0.012286262586712837, + -0.07030950486660004, + -0.10188256204128265, + 0.039445146918296814, + -0.00802311860024929, + -0.01675998792052269, + -0.054970428347587585, + 0.10588937252759933, + 0.012184708379209042, + -0.04748732969164848, + -0.025635728612542152, + 0.030052440240979195, + 0.0113222636282444, + 0.05255388095974922, + 0.03460145369172096, + -0.04788492992520332, + -0.019273104146122932, + -0.028615163639187813, + -0.02375612035393715, + -0.00819206703454256, + 0.0182954128831625, + 0.10240871459245682, + -0.03492337092757225, + 0.013953051529824734, + 0.07450787723064423, + 0.07246178388595581, + 0.044991105794906616, + -0.01665307581424713, + 0.12239159643650055, + 0.054312147200107574, + -0.030602091923356056, + 0.03414217382669449 + ], + "user-gear-bold||person,users,profile,account,contact,settings,preferences": [ + -0.04284399747848511, + -0.024204205721616745, + -0.0652410164475441, + 0.04291239380836487, + 0.012003512121737003, + 7.718300184933469e-05, + 0.1266171932220459, + 0.003495672019198537, + -0.045562487095594406, + -0.008083591237664223, + 0.03315366059541702, + -0.005319945979863405, + 0.104035384953022, + -0.07453899830579758, + 0.0331854410469532, + -0.0035560904070734978, + 0.010599426925182343, + 0.04696665331721306, + 0.025394190102815628, + 0.032252177596092224, + 0.0271963682025671, + -0.007561527192592621, + 0.026574814692139626, + -0.0016482723876833916, + 0.033343952149152756, + -0.04473058506846428, + 0.03317035734653473, + 0.03092106617987156, + -0.04571472853422165, + -0.055838413536548615, + -0.018751690164208412, + 0.041923653334379196, + 0.09267044812440872, + 0.02817176654934883, + -0.03536977246403694, + 0.01042212825268507, + 0.006567359436303377, + -0.005161341745406389, + -0.025260014459490776, + 0.024814385920763016, + -0.02878350019454956, + -0.07161067426204681, + -0.010234197601675987, + 0.015100007876753807, + -0.027256276458501816, + 0.023529719561338425, + -0.018035953864455223, + -0.022152287885546684, + 0.0001943369279615581, + 0.009745101444423199, + 0.04157223179936409, + -0.04636282101273537, + -0.039379652589559555, + 0.04445362091064453, + 0.05887937545776367, + 0.03803345188498497, + -0.044176384806632996, + 0.0038942096289247274, + 0.03240319713950157, + 0.0130235580727458, + -0.004887090064585209, + 0.03772861137986183, + -0.011238079518079758, + 0.07256227731704712, + 0.03485947847366333, + 0.05427876487374306, + 0.037329062819480896, + -0.005801526363939047, + -0.07220565527677536, + -0.007026178762316704, + 0.021343791857361794, + -0.03341374918818474, + -0.02158268913626671, + -0.010119386948645115, + 0.02355378307402134, + -0.037377212196588516, + 0.028124259784817696, + -0.015105665661394596, + -0.049564752727746964, + -0.03812917694449425, + -0.07078071683645248, + -0.0051428647711873055, + 0.015949713066220284, + 0.06069212779402733, + 0.08016587048768997, + 0.07328248769044876, + -0.04551791772246361, + -0.1021106019616127, + -0.0828394666314125, + 0.010434700176119804, + -0.057593997567892075, + -0.045542217791080475, + 0.07920607179403305, + -0.03369484096765518, + -0.11573600769042969, + 0.06479530036449432, + 0.01212657243013382, + 0.02490720897912979, + -0.0638015866279602, + 0.06812693178653717, + -0.050620876252651215, + -0.01671251468360424, + 0.05401784926652908, + 0.06205255165696144, + 0.007627612911164761, + -0.014203361235558987, + 0.004755434114485979, + 0.009517796337604523, + -0.03371806815266609, + 0.027765320613980293, + 0.01556155364960432, + -0.03897126019001007, + -0.07597332447767258, + -0.08225414901971817, + 0.02302020788192749, + -0.045391082763671875, + -0.08220012485980988, + 0.022120017558336258, + 0.09935485571622849, + 0.06184699013829231, + 0.0448613166809082, + -0.04505130276083946, + -0.025358160957694054, + -0.06669066101312637, + 0.0016597631620243192, + 0.04553987830877304, + 0.03250499069690704, + -2.331844490444488e-33, + 0.04839031398296356, + 0.04401618242263794, + 0.004048892762511969, + 0.0903744101524353, + -0.0004320050065871328, + 0.05000416189432144, + -0.0718306452035904, + -0.05355303734540939, + -0.07661163061857224, + 0.008693791925907135, + 0.09784126281738281, + 0.13979919254779816, + -0.05766274780035019, + 0.13701415061950684, + 0.043225839734077454, + -0.03942428529262543, + 0.05760614201426506, + 0.012703272514045238, + -0.042783886194229126, + -0.04063247889280319, + -0.03089446760714054, + 0.03881826996803284, + -0.03168686851859093, + -0.006325379945337772, + -0.0037855033297091722, + 0.008063826709985733, + 0.08665598928928375, + 0.035726480185985565, + -0.052383530884981155, + 0.04212971776723862, + -0.0020760411862283945, + 0.023477979004383087, + 0.06805268675088882, + 0.023849770426750183, + -0.04258080944418907, + -0.0056066433899104595, + -0.07969960570335388, + -0.012730015441775322, + -0.05689247325062752, + 0.03956229239702225, + -0.01088469848036766, + -0.06126270443201065, + -0.05456339940428734, + -0.08036284148693085, + -0.12092275172472, + 0.12006618082523346, + 0.08704327046871185, + -0.006493507418781519, + 0.028178179636597633, + 0.03475887328386307, + 0.00914653018116951, + -0.012572657316923141, + -0.012927859090268612, + 0.020655380561947823, + -0.010069825686514378, + -0.03073730506002903, + -0.03755854070186615, + 0.019890539348125458, + -0.01658042147755623, + -0.013424623757600784, + -0.011050799861550331, + 0.07630833983421326, + 0.12367500364780426, + 0.005619128234684467, + 0.022308427840471268, + 0.019329892471432686, + -0.008249062113463879, + -0.07770270109176636, + 0.05308518186211586, + -0.02640383690595627, + -0.03243543207645416, + 0.06392717361450195, + 0.01313196774572134, + 0.019868647679686546, + -0.020002607256174088, + 0.008390124887228012, + -0.00768106896430254, + 0.011208122596144676, + -0.013411493971943855, + -0.0038012396544218063, + -0.06307443231344223, + 0.015269958414137363, + -0.09805429726839066, + 0.07257088273763657, + -0.004594175610691309, + -0.019587144255638123, + 0.029009869322180748, + -0.03005066327750683, + -0.039214447140693665, + -0.004362909123301506, + -0.0052799624390900135, + -0.023493293672800064, + 0.01223184447735548, + -0.01510947197675705, + -0.16567470133304596, + -1.0561304300069692e-33, + 0.05315440893173218, + -0.009533820673823357, + 0.03225138410925865, + -0.00338030350394547, + 0.026003587990999222, + -0.019081193953752518, + 0.1184932217001915, + 0.0616140253841877, + -0.010862716473639011, + 0.04338366165757179, + 0.07935868948698044, + -0.03316797316074371, + -0.0401536226272583, + -0.045794740319252014, + 0.10033035278320312, + 0.07034305483102798, + -0.053459033370018005, + 0.04094323888421059, + -0.05190028250217438, + -0.03474519029259682, + -0.03233989328145981, + -0.07160352170467377, + -0.07191335409879684, + 0.06210941821336746, + -0.027708658948540688, + -0.04406893625855446, + 0.026427241042256355, + 0.007713610306382179, + -0.06750066578388214, + -0.04964835196733475, + 0.006681869272142649, + 0.0254653450101614, + -0.036238111555576324, + -0.007537427358329296, + -0.03541657328605652, + 0.058999866247177124, + -0.09876842796802521, + 0.026205286383628845, + -0.04810747876763344, + 0.03986097499728203, + 0.005847524851560593, + 0.03518153727054596, + -0.02061493508517742, + 0.011604337953031063, + -0.05093403533101082, + -0.008424430154263973, + -0.023415004834532738, + -0.17065660655498505, + -0.005169627722352743, + 0.05010445415973663, + 0.07193422317504883, + -0.025979232043027878, + 0.03394995257258415, + -0.0030582461040467024, + -0.06397875398397446, + -0.029116977006196976, + 0.016360318288207054, + -0.002525686752051115, + 0.07566554099321365, + -0.0032287719659507275, + 0.015659764409065247, + 0.01918085664510727, + -0.061691176146268845, + 0.08696257323026657, + -0.019358737394213676, + -0.05543326959013939, + 0.019087795168161392, + -0.021220237016677856, + -0.052338842302560806, + -0.05365194007754326, + 0.07668318599462509, + -0.12493983656167984, + 0.032405368983745575, + -0.04481763765215874, + 0.022319434210658073, + -0.12044167518615723, + -0.0028663543052971363, + -0.029197270050644875, + -0.011243192479014397, + 0.02029629983007908, + 0.046734269708395004, + 0.004434584639966488, + -0.044050976634025574, + 0.05420723930001259, + -0.10470473021268845, + 0.024270446971058846, + -0.03260219842195511, + 0.09539182484149933, + 0.03623344004154205, + 0.006762052420526743, + -0.03867058455944061, + 0.051190901547670364, + -0.07610242068767548, + -0.01209715474396944, + -0.11415718495845795, + -2.2452091741342883e-08, + -0.06467382609844208, + -0.0525786392390728, + 0.05796907842159271, + 0.029985295608639717, + 0.03148963302373886, + -0.006892544217407703, + 0.006716479081660509, + -0.019061947241425514, + -0.01554414164274931, + 0.04305034875869751, + 0.021888574585318565, + 0.04253610223531723, + -0.012415005825459957, + -0.028822241351008415, + 0.08765879273414612, + 0.0028295728843659163, + -0.07701165974140167, + 0.05521227419376373, + -0.0554109588265419, + -0.05729299783706665, + 0.0054777078330516815, + 0.05917312949895859, + 0.015702784061431885, + 0.010597250424325466, + 0.0924716368317604, + 0.04218402877449989, + -0.10179787874221802, + 0.0294581800699234, + 0.03380443900823593, + 0.08035340905189514, + 0.05209928750991821, + 0.03930388391017914, + -0.004110089037567377, + -0.06334356218576431, + -0.06289084255695343, + -0.023489059880375862, + -0.0888335183262825, + 0.043896112591028214, + 0.038135528564453125, + 0.08546154201030731, + -0.012310715392231941, + -0.0909210741519928, + 0.0030093644745647907, + 0.059290170669555664, + -0.08027142286300659, + 0.008424208499491215, + 0.026778986677527428, + -0.012993338517844677, + -0.09496382623910904, + -0.10948619991540909, + -0.05751274526119232, + -0.04236675053834915, + -0.005704769864678383, + 0.06764760613441467, + -0.07997403293848038, + -0.07828866690397263, + 0.05177753046154976, + 0.09377861022949219, + 0.003375518601387739, + -0.051472894847393036, + -0.00774092972278595, + 0.01643523946404457, + -0.007540353573858738, + -0.011989112012088299 + ], + "user-list-bold||person,users,profiles,accounts,members,address book": [ + -0.02947097271680832, + -0.030906684696674347, + -0.07867947220802307, + 0.05294077470898628, + 0.022759776562452316, + -0.01410293485969305, + 0.09474176913499832, + -0.027944790199398994, + -0.0263905618339777, + -0.04008299112319946, + -0.003190896939486265, + 0.0066275871358811855, + 0.08389633148908615, + -0.06081061810255051, + -0.02044847421348095, + 0.013204777613282204, + -0.02909543365240097, + 0.09010432660579681, + 0.06879093497991562, + -0.035484641790390015, + 0.02236005663871765, + 0.07323464751243591, + 0.024901332333683968, + -0.002912149764597416, + 0.027805525809526443, + -0.050769366323947906, + 0.04784562066197395, + -0.002107413951307535, + -0.06651066243648529, + -0.0641016811132431, + 0.02899811416864395, + -0.009609815664589405, + 0.11887177079916, + 0.048335105180740356, + 0.05610918998718262, + 0.0066062649711966515, + 0.035215750336647034, + 0.0419737845659256, + 0.019923238083720207, + -0.0018511565867811441, + -0.02715189754962921, + -0.04443955048918724, + -0.02136099524796009, + 0.022907758131623268, + -0.07572178542613983, + 0.01539307925850153, + -0.051349446177482605, + -0.04992859810590744, + 0.03189936652779579, + -0.0036734386812895536, + -0.011699935421347618, + -0.038201794028282166, + -0.07956723868846893, + 0.006837992463260889, + 0.04450505971908569, + 0.03913198038935661, + -0.056202251464128494, + -0.07459812611341476, + -0.008011376485228539, + -0.009467195719480515, + -0.01768561080098152, + 0.00882562343031168, + 0.04189573600888252, + 0.035639721900224686, + 0.03880959749221802, + 0.007873649708926678, + -0.03153466805815697, + 0.028121918439865112, + -0.05157472565770149, + -0.006938852835446596, + 0.008322722278535366, + 0.0006173833971843123, + -0.057238608598709106, + -0.011810273863375187, + -0.024938669055700302, + -0.011940746568143368, + -0.0052023944444954395, + 0.017078882083296776, + -0.03295093774795532, + -0.030436014756560326, + -0.06549994647502899, + -0.06060410290956497, + 0.015355964191257954, + -0.013199479319155216, + 0.05168042704463005, + 0.09370854496955872, + -0.07598094642162323, + -0.12526001036167145, + -0.11798921227455139, + -0.005362944211810827, + -0.0046546864323318005, + -0.008695753291249275, + 0.11765311658382416, + 0.006990411784499884, + -0.10703951865434647, + 0.03454861417412758, + 0.07617539167404175, + -0.007856955751776695, + -0.0750921294093132, + 0.07380136847496033, + -0.07689711451530457, + 0.05686938017606735, + 0.05698617175221443, + 0.01156492717564106, + -0.04154122620820999, + -0.03914514183998108, + 0.016262469813227654, + -0.024261152371764183, + -0.03701314702630043, + -0.023914972320199013, + 0.017242399975657463, + -0.04851660132408142, + -0.10260336101055145, + -0.1008056253194809, + 0.0183089692145586, + -0.0998167023062706, + 0.002385580912232399, + 0.0037074985448271036, + 0.07424136251211166, + 0.06556374579668045, + 0.022048188373446465, + -0.005710411351174116, + -0.02875208854675293, + -0.025623945519328117, + -0.03454000502824783, + 0.014136917889118195, + 0.02620374970138073, + -7.553524201114991e-34, + 0.059276409447193146, + 0.0702904537320137, + -0.016473781317472458, + 0.07820717990398407, + -0.0513034462928772, + 0.010944024659693241, + -0.12721195816993713, + -0.046193551272153854, + -0.06784144043922424, + 0.010287412442266941, + 0.12205511331558228, + 0.06723956763744354, + -0.004952854476869106, + 0.11046035587787628, + -0.010455412790179253, + 0.023831037804484367, + 0.03508847951889038, + 0.015084377489984035, + -0.12530456483364105, + 0.015970999374985695, + -0.028294071555137634, + 0.039910610765218735, + -0.030185554176568985, + 0.011557033285498619, + 0.006601233966648579, + -0.002839283552020788, + 0.03878068923950195, + 0.03050811216235161, + -0.039986759424209595, + 0.03159048780798912, + 0.012366519309580326, + 0.018302900716662407, + 0.05469619855284691, + -0.008084897883236408, + 0.02564585953950882, + 0.042764812707901, + -0.0199893768876791, + -0.03438280150294304, + -0.005837044678628445, + 0.03643026202917099, + -0.039689864963293076, + -0.012911416590213776, + 0.0441703200340271, + -0.04990586265921593, + -0.06762798130512238, + 0.14052808284759521, + 0.027759024873375893, + -0.010691764764487743, + 0.05738988518714905, + 0.08440300077199936, + 0.008573190309107304, + -0.0156297255307436, + -0.12442202866077423, + 0.05148230493068695, + -0.006522077135741711, + -0.0662754625082016, + -0.022274889051914215, + 0.07021444290876389, + 0.029283171519637108, + 0.019853683188557625, + -0.012240440584719181, + 0.06086774170398712, + 0.05095900222659111, + 0.0025467700324952602, + -0.04145565629005432, + -0.02003558538854122, + -0.041446611285209656, + -0.01288086362183094, + 0.0675174668431282, + -0.0029913729522377253, + 0.019434094429016113, + 0.08892731368541718, + 0.07245893776416779, + 0.03074260801076889, + -0.11905722320079803, + -0.008529084734618664, + 0.001676646526902914, + -0.02994399331510067, + -0.019580695778131485, + -0.01636618562042713, + -0.021634507924318314, + -0.022634392604231834, + -0.0844176635146141, + 0.07425547391176224, + -0.059192292392253876, + -0.0022452299017459154, + 0.0313912108540535, + -0.046544503420591354, + -0.040283750742673874, + 0.018720760941505432, + -0.00967512745410204, + 0.004305759444832802, + 0.015113108791410923, + -0.008873626589775085, + -0.16496001183986664, + -4.031342080439696e-33, + 0.08221413940191269, + -0.026653718203306198, + -0.0072366404347121716, + -0.10627926141023636, + 0.04723500460386276, + -0.002319538965821266, + 0.1161830797791481, + 0.0378139466047287, + -0.011501903645694256, + -0.007899568416178226, + -0.023822631686925888, + -0.023963870480656624, + -0.02673708274960518, + -0.028536483645439148, + 0.05202682688832283, + 0.031059706583619118, + -0.012810896150767803, + 0.007152077741920948, + -0.05698351562023163, + -0.033464934676885605, + -0.09497625380754471, + 0.0003401591384317726, + -0.048742637038230896, + 0.03905903175473213, + 0.0236296895891428, + -0.03831804543733597, + 0.022592643275856972, + -0.02980826608836651, + -0.0451858788728714, + -0.031223023310303688, + 0.029962904751300812, + -0.0027457214891910553, + -0.00848715752363205, + 0.0064156451262533665, + -0.09804144501686096, + 0.020087121054530144, + -0.051377516239881516, + 0.022394021973013878, + 0.03050856851041317, + 0.012429852038621902, + 0.013751339167356491, + 0.08905079215765, + -0.014185789041221142, + -0.031341247260570526, + -0.03898842632770538, + 0.014103910885751247, + -0.02377302572131157, + -0.11339344829320908, + 0.012586390599608421, + 0.07958098500967026, + 0.031657084822654724, + -0.04705937206745148, + 0.004733082838356495, + 0.0003633624583017081, + -0.02527604252099991, + -0.043583717197179794, + 0.05546318739652634, + -0.03413742035627365, + 0.11058856546878815, + 0.037738870829343796, + -0.09884827584028244, + 0.058269042521715164, + 0.021594541147351265, + 0.12519052624702454, + -0.02586967498064041, + -0.08800051361322403, + -0.02032616175711155, + -0.02591443993151188, + -0.026817897334694862, + -0.07654493302106857, + 0.0408712700009346, + -0.11872082203626633, + -0.022183844819664955, + 0.01924716867506504, + -0.014597702771425247, + -0.07577896118164062, + -0.007944256998598576, + 0.0062708547338843346, + -0.05124827101826668, + 0.012090306729078293, + -0.03037959896028042, + 0.01106330007314682, + -0.05089619383215904, + 0.04090451821684837, + -0.02753225713968277, + -0.030518440529704094, + -0.0036904204171150923, + 0.04662773013114929, + 0.008073664270341396, + 0.009283245541155338, + -0.020380863919854164, + -0.019265517592430115, + -0.038109637796878815, + -0.04549987614154816, + -0.09136879444122314, + -2.324521908292354e-08, + -0.1126963198184967, + -0.07232298702001572, + 0.013021828606724739, + 0.02355453185737133, + 0.009315541945397854, + -0.006716552190482616, + 0.03867293894290924, + -0.022597890347242355, + 0.0032310443930327892, + 0.0649380311369896, + 0.037444472312927246, + 0.03399889916181564, + -0.022325338795781136, + -0.05883033946156502, + 0.12118539959192276, + 0.04444090649485588, + -0.03311664238572121, + 0.030229801312088966, + -0.03431735187768936, + 0.017836159095168114, + -0.037875741720199585, + 0.0639793649315834, + -0.007077248767018318, + -0.01810017228126526, + 0.056497763842344284, + 0.08072718232870102, + -0.11952868849039078, + 0.014130309224128723, + 0.023696089163422585, + 0.054184749722480774, + 0.0225897878408432, + 0.09401959925889969, + 0.018795283511281013, + -0.025992510840296745, + 0.007535062730312347, + -0.010201253928244114, + -0.06435943394899368, + 0.011265767738223076, + -0.013220123946666718, + 0.1360062211751938, + -0.02225743979215622, + -0.027218906208872795, + -0.025781067088246346, + 0.0594053789973259, + 0.014581107534468174, + -0.023042773827910423, + 0.026226671412587166, + -0.03912961483001709, + -0.012722687795758247, + -0.10684733837842941, + -0.0445573665201664, + -0.03476531803607941, + 0.016869546845555305, + 0.04222329705953598, + -0.07897370308637619, + -0.04134887829422951, + 0.03945666924118996, + 0.12314148992300034, + 0.022579628974199295, + -0.07148720324039459, + 0.08008939027786255, + 0.006836061365902424, + -0.018298866227269173, + 0.059242088347673416 + ], + "user-minus-bold||person,users,profile,account,contact,delete,remove,-": [ + -0.004970460198819637, + 0.015430353581905365, + -0.04120606556534767, + 0.02674013189971447, + 0.028279583901166916, + -0.03680731728672981, + 0.12056571245193481, + -0.027427084743976593, + -0.01313704065978527, + -0.01938270591199398, + 0.061859503388404846, + -0.004233682062476873, + 0.08374961465597153, + -0.028048930689692497, + -0.03890366479754448, + 0.01672351360321045, + -0.03597911074757576, + 0.059802379459142685, + -7.277642907865811e-06, + -0.004955762065947056, + -0.010226570069789886, + 0.0013465402880683541, + -0.018414335325360298, + -0.010818827897310257, + 0.11276374012231827, + -0.027561139315366745, + 0.02379058673977852, + 0.01282837986946106, + -0.029281921684741974, + -0.03006790392100811, + 0.010775324888527393, + -0.001818466349504888, + 0.14747072756290436, + 0.04309837892651558, + 0.016035839915275574, + 0.008885219693183899, + 0.0036645960062742233, + 0.037857379764318466, + 0.015305982902646065, + -0.007085747551172972, + -0.009353774599730968, + -0.05917638540267944, + -0.062411319464445114, + 0.0359933078289032, + -0.0785265564918518, + 0.010202272795140743, + -0.1046169251203537, + -0.05719393491744995, + 0.013209016993641853, + 0.004791983403265476, + 0.05904531106352806, + -0.023853803053498268, + -0.10106208175420761, + 0.06139226630330086, + 0.05592476204037666, + 0.014939917251467705, + -0.020164042711257935, + -0.03784635663032532, + -0.0005825925036333501, + -0.004222584888339043, + -0.0034822444431483746, + 0.023662935942411423, + -0.007582484744489193, + 0.0015961077297106385, + 0.06840857863426208, + 0.008836506865918636, + -0.020633630454540253, + -0.02792477048933506, + -0.021502193063497543, + 0.07718934863805771, + -0.001021455624140799, + -0.04200242459774017, + -0.06993813812732697, + -0.026272261515259743, + -0.03894329071044922, + 0.03106326051056385, + -0.009704447351396084, + 0.05709787458181381, + -0.031441494822502136, + 0.012143331579864025, + -0.0063603781163692474, + -0.035748567432165146, + 0.003539517056196928, + 0.0013546235859394073, + 0.06199348345398903, + 0.10017973929643631, + -0.0622822642326355, + -0.1408010870218277, + -0.07959981262683868, + -0.013779732398688793, + -0.0336386002600193, + -0.025451675057411194, + 0.12353969365358353, + -0.007918305695056915, + -0.13601934909820557, + -0.0017533691134303808, + 0.030447479337453842, + 0.07667037844657898, + -0.048511236906051636, + 0.11581910401582718, + -0.06481950730085373, + 0.013957519084215164, + 0.012198940850794315, + -0.012375779449939728, + -0.03581646829843521, + -0.02749016508460045, + 0.002580398926511407, + -0.03319929912686348, + -0.01121446117758751, + -0.004867727868258953, + -0.005840345751494169, + -0.07536585628986359, + -0.0748746395111084, + -0.06534185260534286, + 0.024820810183882713, + -0.04090029373764992, + 0.02288876101374626, + 0.028761111199855804, + 0.09014321863651276, + 0.030564989894628525, + 0.027516484260559082, + -0.04972345754504204, + -0.03312820941209793, + -0.016506705433130264, + -0.018061837181448936, + 0.04651553928852081, + 0.04387461394071579, + -8.62215830943036e-34, + 0.07978347688913345, + 0.0657169297337532, + -0.028608102351427078, + 0.0584627129137516, + -0.011387534439563751, + 0.05075690522789955, + -0.14134792983531952, + -0.048343874514102936, + -0.0698670893907547, + 0.06599920988082886, + 0.1066146194934845, + 0.07272357493638992, + 0.003257372882217169, + 0.07574806362390518, + 0.013033782131969929, + 0.022812703624367714, + 0.09003544598817825, + -0.074067622423172, + -0.10310201346874237, + 0.012094165198504925, + -0.003109958954155445, + 0.04317772015929222, + -0.04677145555615425, + 0.01568378135561943, + 0.013732046820223331, + -0.041765131056308746, + 0.03526723012328148, + -0.028286950662732124, + -0.04225717857480049, + 0.017818449065089226, + -0.0035759408492594957, + 0.011002199724316597, + 0.027320781722664833, + 0.054306719452142715, + 0.011635825037956238, + 0.03782188892364502, + -0.04639994353055954, + -0.016268540173768997, + -0.029974527657032013, + 0.04235072061419487, + -0.08841538429260254, + -0.0005979251582175493, + -0.02229796163737774, + -0.08983584493398666, + -0.03827812895178795, + 0.10715834051370621, + 0.07323835790157318, + -0.03652734309434891, + 0.002541860332712531, + 0.02843455970287323, + -0.000670447014272213, + 0.02847113274037838, + -0.013467352837324142, + 0.0176383126527071, + -0.04416332766413689, + -0.07822296023368835, + -0.0006586202071048319, + 0.07730633020401001, + 0.012313726358115673, + -0.029062962159514427, + 0.029775770381093025, + 0.0352494977414608, + 0.04016603156924248, + -0.03414390981197357, + -0.02735641784965992, + -0.029227714985609055, + -0.09455818682909012, + -0.026121990755200386, + 0.044071417301893234, + 0.005133034195750952, + -0.04098180681467056, + 0.0992966741323471, + 0.06112658977508545, + 0.03070606291294098, + -0.059791985899209976, + -0.029304182156920433, + 0.03430166095495224, + 0.014127125963568687, + 0.02825855277478695, + 0.017216792330145836, + -0.048244658857584, + 0.026908764615654945, + -0.08016102015972137, + 0.030492417514324188, + -0.019281094893813133, + 0.002334836171939969, + 0.009236241690814495, + -0.057662345468997955, + -0.03855115920305252, + -0.006367281079292297, + -0.010929328389465809, + -0.000844521913677454, + -0.03119424544274807, + -0.008685107342898846, + -0.1384372115135193, + -2.608476698430366e-33, + 0.005988909397274256, + 0.0053004249930381775, + -0.058249711990356445, + -0.05968427658081055, + -0.021014099940657616, + 0.009030782617628574, + 0.14473919570446014, + 0.04923531785607338, + 0.003049621358513832, + -0.008086169138550758, + 0.037877459079027176, + -0.0192397627979517, + -0.053673937916755676, + -0.029763441532850266, + 0.07863505184650421, + 0.052125874906778336, + -0.06548553705215454, + -0.02125929482281208, + -0.07489153742790222, + -0.008076182566583157, + -0.06649431586265564, + 0.02005246840417385, + -0.06462785601615906, + 0.06866297125816345, + 0.0034990592394024134, + -0.043327588587999344, + 0.07773707062005997, + 0.0002635650453157723, + -0.03422599285840988, + -0.04794487729668617, + 0.0007143591647036374, + 0.025570858269929886, + -0.005468891933560371, + -0.03276296332478523, + -0.10948202013969421, + -0.017148936167359352, + -0.07584825903177261, + 0.05901011824607849, + 0.004937769379466772, + 0.028339525684714317, + -0.01748267561197281, + 0.07182644307613373, + 0.034590911120176315, + 0.03859465569257736, + -0.020741363987326622, + 0.040342602878808975, + -0.0580436997115612, + -0.13419227302074432, + -0.006343340501189232, + 0.062080640345811844, + 0.024189667776226997, + -0.04604749754071236, + -0.045985784381628036, + 0.022696468979120255, + -0.03879937529563904, + -0.07494781911373138, + 0.07811174541711807, + -0.015690045431256294, + 0.04501195624470711, + 0.028023840859532356, + -0.056794315576553345, + 0.042450856417417526, + 0.027885090559720993, + 0.08238223195075989, + -0.03435806557536125, + -0.013827333226799965, + 0.021320801228284836, + 0.012579553760588169, + -0.031115232035517693, + -0.09814868867397308, + 0.09241072833538055, + -0.06220784783363342, + -0.044749900698661804, + 0.0011248219525441527, + -0.010454552248120308, + -0.11713439971208572, + -0.018798768520355225, + 0.004901687614619732, + -0.010623173788189888, + 0.042420949786901474, + 0.003276514122262597, + 0.016088047996163368, + -0.08676112443208694, + 0.04003098979592323, + -0.059230558574199677, + -0.02916092611849308, + -0.07156574726104736, + 0.08369200676679611, + -0.034366387873888016, + 0.014104073867201805, + 0.002344081411138177, + 0.028222883120179176, + -0.017498208209872246, + -0.05411486700177193, + -0.09963757544755936, + -2.4767235373701624e-08, + -0.06098085641860962, + -0.0833435207605362, + 0.010238158516585827, + -0.0007537697092629969, + 0.023733535781502724, + -0.01418223138898611, + 0.006626917980611324, + -0.014027750119566917, + 0.03286818787455559, + -0.0035872089210897684, + 0.05124569684267044, + 0.059195321053266525, + -0.09476158767938614, + -0.09713201969861984, + 0.10126706212759018, + 0.045035503804683685, + -0.02816041000187397, + 0.08093280345201492, + -0.04577945917844772, + -0.013271902687847614, + -0.03087504766881466, + 0.0826195701956749, + -0.03074917569756508, + 0.019457513466477394, + 0.059356939047575, + 0.04971245676279068, + -0.07653201371431351, + 0.0525321289896965, + 0.020374178886413574, + 0.02899753302335739, + 0.04391442611813545, + 0.07659702748060226, + 0.07078079879283905, + -0.03513304144144058, + -0.03634347394108772, + -0.0007247197791002691, + -0.04299863055348396, + 0.03651147708296776, + -0.021734129637479782, + 0.11546649038791656, + -0.01004045084118843, + -0.03191620483994484, + -0.01162270363420248, + 0.048787690699100494, + -0.02745709754526615, + -0.021825779229402542, + 0.06027115508913994, + -0.055727798491716385, + -0.03175325319170952, + -0.08404237031936646, + 0.0164783988147974, + -0.013672392815351486, + -0.0006530811078846455, + 0.09035534411668777, + -0.0836237221956253, + -0.05796969309449196, + 0.07893449813127518, + 0.08410374075174332, + 0.019340110942721367, + -0.0625220537185669, + 0.09503642469644547, + 0.01709023490548134, + 0.017196089029312134, + -0.009067948907613754 + ], + "user-plus-bold||person,users,profile,account,contact,add,create,+": [ + -0.03668496385216713, + -0.050630632787942886, + -0.07756507396697998, + 0.05220426246523857, + 0.022506745532155037, + 0.010167322121560574, + 0.09780421853065491, + -0.030394110828638077, + -0.02420307882130146, + 0.0029077217914164066, + 0.03524674475193024, + -0.033711470663547516, + 0.057580336928367615, + -0.06475356966257095, + 0.0018181605264544487, + 0.018939023837447166, + -0.06387201696634293, + 0.06104932352900505, + 0.033966466784477234, + -0.0508631132543087, + 0.02781846933066845, + -0.03160790726542473, + 0.029257111251354218, + -0.0068192388862371445, + 0.07545659691095352, + -0.04176470637321472, + 0.0029514539055526257, + 0.015639595687389374, + 0.031042534857988358, + -0.024192964658141136, + 0.042447298765182495, + -0.0020990485791116953, + 0.13371816277503967, + 0.027981208637356758, + -0.0018987110815942287, + 0.038182396441698074, + 0.002542202826589346, + 0.05378860980272293, + -0.005398571491241455, + -0.03256908431649208, + -0.022127095609903336, + -0.062331877648830414, + -0.01094907522201538, + 0.026776757091283798, + -0.0709097608923912, + -0.04319242015480995, + -0.060582030564546585, + -0.06279511749744415, + 0.046498771756887436, + 0.01911677047610283, + 0.04265688359737396, + -0.06230787932872772, + -0.08700551092624664, + 0.04019180312752724, + 0.06411784887313843, + 0.02869752049446106, + -0.06766345351934433, + -0.033031195402145386, + 0.004664214327931404, + 0.005185400135815144, + -0.002435951493680477, + 0.009806443005800247, + 0.05248311161994934, + 0.010262599214911461, + 0.03461361303925514, + 0.018578706309199333, + -0.06178155168890953, + 0.03378898650407791, + -0.04554757475852966, + 0.038504891097545624, + 0.025124486535787582, + -0.016429470852017403, + -0.06713482737541199, + 0.001741463434882462, + -0.019746415317058563, + 0.007707532029598951, + -0.02541896514594555, + 0.03487894684076309, + -0.017172561958432198, + -0.002640335587784648, + -0.03855020925402641, + -0.029526617377996445, + 0.00035849082632921636, + 0.01876557618379593, + 0.08593938499689102, + 0.11464162915945053, + -0.03888547793030739, + -0.12480911612510681, + -0.09611216187477112, + -0.018322430551052094, + -0.01195436343550682, + -0.01212876383215189, + 0.06548948585987091, + 0.004643123596906662, + -0.12921865284442902, + 0.00967529509216547, + 0.03363896533846855, + 0.005514086224138737, + -0.07526324689388275, + 0.06754248589277267, + -0.08188463002443314, + 0.01389884389936924, + 0.02038581669330597, + 0.03574482724070549, + 0.024372797459363937, + -0.035036712884902954, + 0.004029478412121534, + -0.024214154109358788, + -0.02580164559185505, + 0.016976553946733475, + 0.028340794146060944, + -0.04578906670212746, + -0.07147886604070663, + -0.07722212374210358, + 0.03170203045010567, + -0.03466914966702461, + -0.02368752844631672, + -0.024115001782774925, + 0.12176141887903214, + 0.01910250075161457, + 0.08881790935993195, + -0.013067271560430527, + -0.03329477459192276, + -0.03305628150701523, + -0.044349610805511475, + 0.0025415720883756876, + 0.03396665304899216, + -1.437883791709023e-33, + 0.0960092544555664, + 0.10083193331956863, + -0.021132534369826317, + 0.12234348803758621, + -0.03617759421467781, + 0.061243172734975815, + -0.14575333893299103, + -0.007754231337457895, + -0.1030491292476654, + 0.010224868543446064, + 0.07821410894393921, + 0.037676237523555756, + -0.016798026859760284, + 0.12680737674236298, + -0.002184450626373291, + -0.03214177116751671, + 0.0807160809636116, + -0.0317106731235981, + -0.08982085436582565, + 0.034397561103105545, + -0.06103842705488205, + 0.039631206542253494, + -0.042254261672496796, + 0.03841450437903404, + 0.03779197111725807, + 0.016623562201857567, + 0.07482263445854187, + -0.009633476845920086, + -0.016253789886832237, + 0.011473010294139385, + 0.016009699553251266, + -0.00568952364847064, + 0.003178124316036701, + 0.07623789459466934, + 0.000866339891217649, + 0.05563279986381531, + -0.022925015538930893, + -0.006301654502749443, + -0.006498779635876417, + 0.05743546038866043, + -0.05950834974646568, + -0.021699361503124237, + -0.024070758372545242, + -0.10041021555662155, + -0.059995319694280624, + 0.11263178288936615, + 0.0231625959277153, + -0.04928766191005707, + 0.010529937222599983, + 0.015766769647598267, + -0.025844356045126915, + 0.01788397878408432, + -0.04482000693678856, + 0.07050907611846924, + -0.051630377769470215, + -0.033586811274290085, + -0.04634711518883705, + 0.06219865381717682, + -0.008610705845057964, + -0.008037963882088661, + -0.0006916807615198195, + 0.05418996885418892, + 0.048300016671419144, + 0.012594024650752544, + -0.053810711950063705, + -0.042359888553619385, + -0.02820270135998726, + -0.028040748089551926, + 0.09176583588123322, + 0.008376380428671837, + -0.016074085608124733, + 0.0847497433423996, + 0.01055951975286007, + 0.0528557151556015, + -0.03896702826023102, + -0.031946923583745956, + 0.011842451058328152, + 0.018601734191179276, + -0.01962796226143837, + 0.0293497946113348, + -0.04567506164312363, + 0.0047177886590361595, + -0.06725066900253296, + 0.042963724583387375, + -0.024777082726359367, + 0.020819051191210747, + -0.02473270334303379, + -0.036138150840997696, + -0.03267262503504753, + -0.008104716427624226, + -0.021462585777044296, + -0.016160594299435616, + 0.026202775537967682, + -0.007581152953207493, + -0.17835405468940735, + -2.064193793982861e-33, + 7.23546909284778e-05, + -0.03030535951256752, + -0.046181730926036835, + -0.07827924937009811, + 0.005288371350616217, + 0.006716555450111628, + 0.11289092898368835, + 0.017082417383790016, + -0.038101207464933395, + -0.005231110379099846, + 0.019429203122854233, + -0.010822778567671776, + -0.04089843109250069, + -0.007139178924262524, + 0.06730175763368607, + 0.033488813787698746, + -0.07324565201997757, + 0.032874539494514465, + -0.00938181672245264, + -0.026703661307692528, + -0.05033372715115547, + 0.0013010476250201464, + -0.055237554013729095, + 0.04009557515382767, + 0.03238971531391144, + 0.0068450202234089375, + 0.03848809748888016, + 0.00615721708163619, + -0.024590203538537025, + -0.05423187091946602, + 0.0180088821798563, + 0.03092794492840767, + -0.050450704991817474, + -0.011031235568225384, + -0.06834367662668228, + 0.0018517224816605449, + -0.0671403557062149, + 0.03683508560061455, + 0.026026252657175064, + 0.03240951895713806, + 0.03916995972394943, + 0.05745532736182213, + 0.00818597711622715, + 0.04162130877375603, + -0.022707849740982056, + 0.008366581983864307, + 0.0029249819926917553, + -0.13590145111083984, + -0.043464500457048416, + 0.05757724121212959, + 0.048033807426691055, + -0.06962242722511292, + -0.03532557561993599, + 1.772532232280355e-05, + -0.03937199339270592, + -0.08736901730298996, + 0.10688268393278122, + -0.021188363432884216, + 0.06259074807167053, + 0.005661231465637684, + -0.06471945345401764, + 0.051240626722574234, + 0.023029355332255363, + 0.07028957456350327, + -0.033936262130737305, + -0.038153886795043945, + 0.02417733334004879, + -0.026993386447429657, + -0.05754700303077698, + -0.10723087191581726, + 0.08390302211046219, + -0.0780649185180664, + -0.0456710122525692, + 0.025822537019848824, + -0.017284326255321503, + -0.0940740555524826, + -0.027627086266875267, + 0.011716501787304878, + 0.006072348915040493, + 0.02389238402247429, + -0.007073518354445696, + 0.01854602061212063, + -0.045593537390232086, + 0.040648896247148514, + -0.0285306666046381, + -0.037617746740579605, + -0.024424977600574493, + 0.1151433065533638, + -0.015358290635049343, + -0.006098386365920305, + -0.014615521766245365, + 0.08538602292537689, + -0.10251349955797195, + -0.060717687010765076, + -0.13497990369796753, + -2.5389127245034615e-08, + -0.05902917683124542, + -0.08254775404930115, + -0.031481269747018814, + -0.021403824910521507, + 0.031013278290629387, + -0.033362507820129395, + -0.014256233349442482, + -0.05909004807472229, + -0.008222022093832493, + -0.02595578134059906, + 0.007117309607565403, + 0.06784585118293762, + -0.0422387421131134, + -0.05377977713942528, + 0.08263691514730453, + 0.026834065094590187, + -0.04347004368901253, + 0.04927537962794304, + -0.0435590036213398, + -0.021537821739912033, + -0.02257273904979229, + 0.13754814863204956, + -0.04289684072136879, + 0.009400323033332825, + 0.01877455599606037, + 0.07191164046525955, + -0.06926613301038742, + -0.006120321340858936, + 0.01870894432067871, + 0.05342061072587967, + 0.05120210349559784, + 0.09269348531961441, + 0.004280934575945139, + -0.010343104600906372, + -0.019627906382083893, + 0.010981419123709202, + -0.04055413976311684, + 0.012795500457286835, + -0.015345904976129532, + 0.09894268959760666, + 0.009233379736542702, + -0.017472242936491966, + 0.019615910947322845, + 0.02960355021059513, + 0.01297293696552515, + -0.01925237849354744, + 0.025493834167718887, + -0.07237552106380463, + -0.03203914314508438, + -0.10472827404737473, + -0.030719688162207603, + -0.04392043128609657, + 0.07504766434431076, + 0.05847636237740517, + -0.10095423460006714, + -0.05906955897808075, + 0.058267991989851, + 0.13096313178539276, + 0.0668012723326683, + -0.04621431976556778, + 0.05342108756303787, + -0.03071369230747223, + 0.04082195833325386, + 0.035942401736974716 + ], + "user-rectangle-bold||person,users,profile,account,contact,login": [ + -0.024061331525444984, + -0.0162602998316288, + -0.06456904858350754, + 0.024746393784880638, + -0.005521929357200861, + -0.008265933021903038, + 0.12513476610183716, + -0.02343771792948246, + -0.009907525964081287, + -0.06922842562198639, + 0.006612527184188366, + -0.017156636342406273, + 0.04796195030212402, + -0.004437727387994528, + -0.027302095666527748, + 0.0035431270953267813, + -0.025594789534807205, + 0.03147520124912262, + 0.03135364502668381, + 0.00901777483522892, + -0.025336651131510735, + -0.04416145384311676, + 0.02998477593064308, + -0.03164767473936081, + 0.047421712428331375, + -0.026616904884576797, + 0.05456732213497162, + 0.02654862403869629, + 0.005906235426664352, + -0.06808532029390335, + 0.02115062065422535, + 0.02957015484571457, + 0.12029347568750381, + 0.08441221714019775, + 0.005019971635192633, + 0.013009577058255672, + 0.023584293201565742, + 0.08184085786342621, + 0.01043081283569336, + -0.012915513478219509, + -0.039444759488105774, + -0.039340369403362274, + 0.013486819341778755, + 0.0766657292842865, + -0.02467961236834526, + -0.002718632109463215, + -0.06608082354068756, + -0.006340712774544954, + -0.002386753913015127, + -0.02332148514688015, + 0.0504327230155468, + -0.08463438600301743, + -0.07631795853376389, + 0.07402587682008743, + 0.0446649007499218, + 0.019212182611227036, + 0.010250826366245747, + -0.022668352350592613, + 0.02594408392906189, + 0.026264749467372894, + -0.028303638100624084, + 0.012447794899344444, + 0.03422391042113304, + 0.04790005832910538, + 0.04932583123445511, + 0.025768036022782326, + -0.06026831641793251, + 0.0034619627986103296, + -0.057308733463287354, + -0.004802374169230461, + 0.009050861932337284, + -0.006357507314532995, + -0.06908135861158371, + -0.05701649561524391, + 0.019009120762348175, + -0.08136638253927231, + -0.021753128618001938, + 0.026512790471315384, + 0.0024199055042117834, + -0.006972577888518572, + -0.06769764423370361, + 0.010651806369423866, + 0.017195964232087135, + 0.05402533710002899, + 0.09360139071941376, + 0.08772194385528564, + -0.07360365986824036, + -0.12209990620613098, + -0.09578678756952286, + -0.047473736107349396, + -0.03484766185283661, + 0.027077283710241318, + 0.08159691840410233, + 0.016140153631567955, + -0.14062468707561493, + 0.01014055497944355, + 0.037464775145053864, + -0.00912497378885746, + -0.05851774290204048, + 0.08680764585733414, + -0.007737335748970509, + 0.004823492839932442, + 0.09244372695684433, + -0.0026658533606678247, + 0.012631173245608807, + -0.03362973779439926, + 0.03157041221857071, + -0.019170137122273445, + 0.002578572602942586, + 0.0023109344765543938, + 0.0176088847219944, + -0.07221585512161255, + -0.08895912766456604, + -0.036738764494657516, + -0.004719689022749662, + -0.09306952357292175, + -0.044084783643484116, + -0.029936926439404488, + 0.1172906756401062, + 0.02516775019466877, + 0.04374687373638153, + 0.007720103021711111, + -0.06287658959627151, + -0.07388340681791306, + -0.02694752998650074, + 0.0034622508101165295, + 0.0264730341732502, + -1.438928374560072e-34, + 0.04634879156947136, + 0.05748414248228073, + -0.02694583125412464, + 0.11821480840444565, + 0.03362394496798515, + 0.05812613293528557, + -0.13238562643527985, + -0.07922717928886414, + -0.06373006850481033, + 0.032469749450683594, + 0.05585261061787605, + 0.06317196786403656, + -0.02724551223218441, + 0.09968340396881104, + 0.04714462533593178, + -0.05625851824879646, + 0.00621821079403162, + 0.05183936655521393, + -0.12848812341690063, + 0.028037957847118378, + -0.07088243961334229, + 0.021766701713204384, + -0.04512226954102516, + -0.00921166967600584, + -0.019100293517112732, + 0.006327956449240446, + 0.059521134942770004, + 0.030334975570440292, + -0.021025031805038452, + 0.022908629849553108, + 0.02005763165652752, + 0.05802873149514198, + 0.021070294082164764, + 0.046536512672901154, + -0.008126297034323215, + -0.009181221015751362, + 0.004384137224406004, + -0.02438855729997158, + 0.00041836308082565665, + 0.05245745927095413, + -0.05109422281384468, + -0.039201512932777405, + 0.009880434721708298, + -0.06471212208271027, + -0.017118755728006363, + 0.05707133933901787, + 0.03206638619303703, + 0.025724155828356743, + 0.0015360875986516476, + 0.020992055535316467, + -0.003848531050607562, + 0.019468793645501137, + -0.03808793053030968, + 0.00031975723686628044, + 0.0022689334582537413, + -0.09871198236942291, + -0.04221197962760925, + 0.08903614431619644, + -0.015002884902060032, + -0.0009657129994593561, + 0.0006978809251450002, + 0.06026574224233627, + 0.03398535028100014, + -0.016377950087189674, + -0.054439857602119446, + -0.01820402219891548, + -0.023142613470554352, + -0.038281816989183426, + 0.03734063729643822, + -0.009807956404983997, + -0.017345992848277092, + 0.10899028927087784, + 0.062100332230329514, + 0.017195656895637512, + -0.05522696673870087, + -0.035708993673324585, + 0.022843554615974426, + 0.05985124781727791, + -0.04573051258921623, + 0.011071027256548405, + -0.048541564494371414, + 0.004890858195722103, + -0.1048809140920639, + 0.003914001863449812, + -0.046989694237709045, + -0.022099021822214127, + 0.03649548441171646, + -0.036358725279569626, + -0.060508135706186295, + -0.01623392105102539, + -0.025713421404361725, + -0.014564762823283672, + 0.040059030055999756, + -0.012256016954779625, + -0.10859571397304535, + -2.2164917604303583e-33, + 0.02078932709991932, + 0.012693709693849087, + -0.005530225578695536, + -0.07454036921262741, + 0.03620206192135811, + 0.007970944046974182, + 0.1385796219110489, + 0.06031186133623123, + -0.012596282176673412, + 0.031234847381711006, + 0.013821561820805073, + -0.016962701454758644, + -0.04126602038741112, + -0.008076148107647896, + 0.05977126955986023, + 0.1404116153717041, + -0.017581820487976074, + 0.04803630709648132, + -0.09205930680036545, + -0.09795127063989639, + -0.07838708907365799, + -0.04354230687022209, + -0.09878098964691162, + 0.07556436210870743, + -0.0489041693508625, + 0.03559616208076477, + 0.061973195523023605, + -0.03442557528614998, + -0.020366882905364037, + -0.005693377926945686, + -0.03258701041340828, + -0.04806454852223396, + -0.05532883107662201, + 0.03104986622929573, + -0.060549963265657425, + -0.03010466694831848, + -0.02294946275651455, + -0.0034333420917391777, + 0.0005610914085991681, + -0.017497748136520386, + 0.0440506674349308, + 0.06960666179656982, + -0.007626791950315237, + 0.06880230456590652, + -0.03750136122107506, + -0.005264053121209145, + -0.05648812651634216, + -0.08862583339214325, + -0.028773384168744087, + 0.06737756729125977, + -0.016475819051265717, + -0.047750577330589294, + 0.029166843742132187, + -0.02319001965224743, + -0.09875878691673279, + -0.04781252518296242, + 0.026406370103359222, + 0.009164896793663502, + 0.07914502173662186, + 0.030391428619623184, + -0.05214499682188034, + 0.017342327162623405, + -0.011793903075158596, + 0.14091363549232483, + 0.009001391939818859, + -0.06315580010414124, + 0.013549135997891426, + 0.011452719569206238, + -0.07852601259946823, + -0.029266657307744026, + 0.08429896086454391, + -0.02346171624958515, + -0.011443518102169037, + 0.0047895112074911594, + 0.03547770902514458, + -0.059495799243450165, + 0.03831293806433678, + -0.0031571942381560802, + -0.058394886553287506, + 0.06533569097518921, + 0.026252640411257744, + 0.023673053830862045, + -0.05880281329154968, + 0.035907771438360214, + -0.0046136523596942425, + -0.06143651530146599, + -0.04269249364733696, + 0.09989415854215622, + -0.004330179188400507, + -0.03809204325079918, + -0.0350928008556366, + 0.029442286118865013, + -0.08139022439718246, + -0.008725111372768879, + -0.04750373959541321, + -2.179342395436379e-08, + -0.06550609320402145, + -0.053995899856090546, + 0.018023330718278885, + -0.04567728936672211, + 0.01342796627432108, + 0.021519383415579796, + -0.012218769639730453, + -0.05028831586241722, + -0.026604613289237022, + -0.0018433013465255499, + 0.013563309796154499, + 0.0408029779791832, + -0.08300850540399551, + -0.015075590461492538, + 0.0962250754237175, + 0.052706919610500336, + -0.09763167798519135, + 0.033563610166311264, + -0.027028409764170647, + -0.030267862603068352, + 0.007237141951918602, + 0.03204459697008133, + 0.009924901649355888, + 0.06460240483283997, + -0.022450100630521774, + 0.0769604742527008, + -0.1283765286207199, + 0.07573430985212326, + 0.0013267261674627662, + 0.023495463654398918, + 0.03977781534194946, + 0.11306494474411011, + 0.07383759319782257, + -0.002642297185957432, + -0.05687209591269493, + -0.00877409242093563, + -0.03747014328837395, + 0.0066022714599967, + -0.025814425200223923, + 0.0672275573015213, + 0.0418752022087574, + -0.10531097650527954, + 0.026249950751662254, + 0.024836959317326546, + 0.026206113398075104, + 0.008329888805747032, + 0.07935620099306107, + -0.043172016739845276, + -0.0059745837934315205, + -0.061377160251140594, + -0.03804129362106323, + -0.04849088937044144, + 0.02769576758146286, + 0.0836469903588295, + -0.11121414601802826, + -0.06951212882995605, + 0.031326379626989365, + 0.0838255062699318, + 0.07531099021434784, + -0.023722976446151733, + 0.01275663636624813, + 0.08454629778862, + -0.007239940110594034, + 0.02134895697236061 + ], + "user-sound-bold||*new*,person,users,profile,speech,speaking,voice": [ + -0.010185318998992443, + -0.12556974589824677, + -0.06019055098295212, + -0.045766398310661316, + 0.007687704637646675, + -0.0002360604121349752, + 0.11316969245672226, + -0.070406973361969, + -0.02137981541454792, + -0.02929886430501938, + 5.9932219301117584e-05, + -0.030343398451805115, + 0.022119104862213135, + -0.027700746431946754, + 0.015456183813512325, + -0.0029632083605974913, + 0.040660660713911057, + 0.053427331149578094, + 0.04721873253583908, + -0.044439904391765594, + 0.03111163154244423, + 0.07843697816133499, + 0.019119538366794586, + -0.00813286378979683, + 0.049309778958559036, + -0.012716327793896198, + 0.012060889042913914, + 0.00834559928625822, + 0.027245130389928818, + -0.05080400034785271, + 0.030617225915193558, + 0.005860093981027603, + 0.18571004271507263, + 0.0365331694483757, + -0.019186438992619514, + -0.02593628130853176, + 0.0002482206909917295, + 0.02323915809392929, + -0.03405553847551346, + -0.03620550408959389, + -0.043400414288043976, + -0.04511547088623047, + -0.02412143349647522, + 0.04510028660297394, + -0.05348760634660721, + -0.05781250819563866, + -0.08563246577978134, + -0.045320503413677216, + -0.013688911683857441, + 0.024070952087640762, + -0.023605043068528175, + -0.09753483533859253, + -0.05171652510762215, + 0.06508374214172363, + -0.004188706167042255, + -0.006094764918088913, + 0.01708710938692093, + -0.0036517614498734474, + 0.02690598927438259, + 0.03887178376317024, + -0.031832821667194366, + -0.02392173744738102, + 0.059976834803819656, + 0.056472986936569214, + 0.05193822830915451, + 0.020747307687997818, + -0.04171984642744064, + -0.02633499912917614, + -0.03194792941212654, + 0.026026364415884018, + -0.049386899918317795, + 0.04017741605639458, + -0.0024810070171952248, + 0.039300672709941864, + -0.016560904681682587, + -0.04480024799704552, + 0.012206802144646645, + -0.022053658962249756, + 0.0035645142197608948, + -0.018604213371872902, + -0.02494732104241848, + -0.05906477943062782, + -0.024516845121979713, + -0.04383673891425133, + 0.06088252365589142, + 0.07839033752679825, + -0.07467801868915558, + -0.1154126301407814, + -0.13136954605579376, + -0.01393952313810587, + -0.11674298346042633, + -0.016031328588724136, + 0.041866011917591095, + 0.022463826462626457, + -0.11515989899635315, + 0.013464240357279778, + 0.01933007873594761, + -0.047643810510635376, + -0.007704104296863079, + 0.0922539234161377, + -0.07092007994651794, + -0.015658142045140266, + 0.05873598903417587, + -0.004117940086871386, + -0.029080210253596306, + -0.06450627744197845, + -0.05773352459073067, + -0.009846341796219349, + -0.02339106611907482, + 0.03280111402273178, + -0.0057226489298045635, + -0.08042586594820023, + -0.044166941195726395, + -0.07264402508735657, + 0.06802447140216827, + -0.012832866981625557, + -0.07699743658304214, + -0.003021849552169442, + 0.09519027173519135, + 0.05689144879579544, + 0.03425777330994606, + 0.01563749648630619, + -0.043380141258239746, + -0.005356511566787958, + -0.01878284104168415, + 0.005874007940292358, + -0.004632396157830954, + -7.535197968679183e-34, + 0.08891677856445312, + 0.10312595218420029, + -0.024293169379234314, + 0.1257072389125824, + -0.01747042126953602, + 0.00969698280096054, + -0.1088976114988327, + -0.023707902058959007, + -0.02976076863706112, + -0.012288536876440048, + 0.0499250628054142, + 0.07698283344507217, + -0.03172075003385544, + 0.08014487475156784, + 0.027566691860556602, + -0.0076240357011556625, + -0.004483334254473448, + 0.03218524158000946, + -0.0916316956281662, + -0.003312751417979598, + -0.032982680946588516, + 0.10182201117277145, + 0.013096977956593037, + 0.024276182055473328, + 0.04348260909318924, + -0.03804728016257286, + 0.07611352205276489, + -0.06591548770666122, + -0.0055832527577877045, + 0.02925075590610504, + -0.012365465983748436, + -0.02558615244925022, + 0.05791200324892998, + 0.026898065581917763, + 0.02959476225078106, + 0.012246621772646904, + -0.006146397441625595, + 0.0010392804397270083, + -0.017902357503771782, + -0.027656013146042824, + -0.05579572543501854, + -0.03160485252737999, + -0.013572201132774353, + -0.021900447085499763, + -0.08591213077306747, + 0.06024036929011345, + -0.04449598118662834, + -0.01230048667639494, + 0.025772832334041595, + 0.060209546238183975, + -0.001701568835414946, + 0.008864969946444035, + -0.043703023344278336, + 0.062441136687994, + 0.0017505638534203172, + -0.03468093276023865, + 0.013925603590905666, + 0.049165792763233185, + 0.059937164187431335, + -0.036147698760032654, + 0.045949745923280716, + 0.059989120811223984, + 0.10254038125276566, + -0.056495510041713715, + -0.006423269864171743, + -0.03127365559339523, + -0.056234799325466156, + -0.010102493688464165, + 0.08819269388914108, + 0.026420719921588898, + -0.0060014426708221436, + 0.03525318577885628, + 0.03434443473815918, + 0.05192730948328972, + -0.10272970050573349, + 0.020201288163661957, + 0.0007933862507343292, + 0.008282488211989403, + -0.027145719155669212, + 0.0001664709416218102, + -0.060380734503269196, + 0.035041578114032745, + -0.09438319504261017, + 0.05796018987894058, + -0.015095584094524384, + 0.02359282411634922, + -0.01809508167207241, + -0.10534821450710297, + -0.07239100337028503, + 0.022891810163855553, + -0.0618378184735775, + 0.00905083492398262, + -0.015454384498298168, + -0.02460199035704136, + -0.1406869739294052, + -3.2557578872648585e-33, + -0.0259543564170599, + 0.08109334856271744, + -0.006873311009258032, + -0.018918689340353012, + -0.016463305801153183, + 0.019530780613422394, + 0.1075877919793129, + 0.0801365077495575, + 0.0053739300929009914, + 0.029111474752426147, + 0.03083031438291073, + -0.03224785998463631, + 0.034953147172927856, + -0.04934310168027878, + 0.0582970455288887, + 0.03243204206228256, + -0.05298991873860359, + 0.03812188655138016, + -0.0018372044432908297, + 0.07842323184013367, + -0.02496413141489029, + -0.008846599608659744, + -0.1201293095946312, + 0.044674456119537354, + -0.043623894453048706, + -0.02401748299598694, + 0.023522181436419487, + -0.02422204241156578, + -0.046019669622182846, + -0.045334964990615845, + -0.042079877108335495, + 0.002609360497444868, + -0.07114992290735245, + -0.02186625264585018, + -0.03303952515125275, + 0.03786598891019821, + -0.012886540964245796, + -0.007573331706225872, + -0.004152004141360521, + 0.023167794570326805, + -0.000700438569765538, + 0.06678686290979385, + 0.008858167566359043, + -0.01184874214231968, + -0.03450204059481621, + -0.02081165835261345, + -0.06278945505619049, + -0.07084362953901291, + -0.047827474772930145, + 0.05179354548454285, + 0.053749315440654755, + -0.031249912455677986, + 0.06739331036806107, + -0.0015532461693510413, + -0.06520755589008331, + -0.042081210762262344, + 0.062345240265131, + -0.03974563255906105, + 0.05228852108120918, + 0.04536744952201843, + -0.05327692627906799, + 0.014423791319131851, + -0.05290146544575691, + 0.015248543582856655, + -0.0233493410050869, + -0.04337947815656662, + 0.01026858203113079, + -0.0025561926886439323, + -0.002039180137217045, + -0.06694160401821136, + 0.1067400649189949, + -0.02504041977226734, + -0.037857118993997574, + 0.020116282626986504, + -0.03352174907922745, + -0.09002351760864258, + -0.07225704938173294, + -0.09003591537475586, + -0.09245743602514267, + 0.002610371680930257, + -0.014234017580747604, + 0.02948162332177162, + -0.018806828185915947, + 0.023553991690278053, + 0.0005430026794783771, + 0.04013458266854286, + -0.013674786314368248, + 0.026598509401082993, + -0.00233973260037601, + 0.03579279035329819, + -0.029213881120085716, + 0.11439303308725357, + -0.06842293590307236, + -0.05016070231795311, + -0.09580647200345993, + -2.3653909053678035e-08, + -0.07959693670272827, + -0.039307381957769394, + 0.01730521023273468, + -0.007393034640699625, + 0.014842120930552483, + -0.05586548149585724, + -0.017068535089492798, + -0.09867037087678909, + 0.015574644319713116, + -0.026698719710111618, + 0.05161719769239426, + 0.01746327430009842, + -0.001932709594257176, + 0.016104189679026604, + 0.0637979507446289, + 0.04101604223251343, + -0.07070610672235489, + 0.10051747411489487, + -0.02920740470290184, + -0.10928946733474731, + 0.02759004570543766, + 0.13163748383522034, + -0.02910146676003933, + 0.007213020697236061, + 0.04743436351418495, + 0.03197396546602249, + -0.04874419420957565, + 0.001467826426960528, + -0.0020746325608342886, + 0.07401780784130096, + 0.027688974514603615, + 0.13803762197494507, + -0.029425160959362984, + -0.058368656784296036, + -0.05898106470704079, + 0.05811372399330139, + -0.10031915456056595, + 0.003958495799452066, + -0.003976029343903065, + 0.11532127112150192, + 0.03780129551887512, + 0.011180959641933441, + -0.035652339458465576, + 0.04566104710102081, + -0.021809853613376617, + 0.0019179715309292078, + 0.03714985400438309, + -0.08080355823040009, + -0.0131828673183918, + -0.07798271626234055, + -0.02533573843538761, + 0.015346664004027843, + 0.04093943163752556, + 0.04977233335375786, + 0.007709268480539322, + 0.020043285563588142, + 0.03291250020265579, + 0.12444683909416199, + 0.0416993610560894, + -0.03110305219888687, + 0.07104690372943878, + 0.05886049196124077, + 0.01896325685083866, + 0.012898673303425312 + ], + "user-square-bold||person,users,profile,account,contact,login": [ + 0.0020492328330874443, + -0.023371348157525063, + -0.0555092953145504, + 0.051146816462278366, + -0.004402077756822109, + 0.006372022908180952, + 0.10421419888734818, + -0.03198546916246414, + 0.0005514287622645497, + -0.04879502207040787, + 0.033246997743844986, + 0.025520700961351395, + 0.06675290316343307, + -0.03170184791088104, + -0.0355391763150692, + 0.013323647901415825, + -0.03266742825508118, + 0.043353110551834106, + 0.03663601726293564, + 0.0070412177592515945, + 0.030728094279766083, + -0.02545560896396637, + 0.0015034881653264165, + -0.007858139462769032, + 0.029605045914649963, + -0.050027407705783844, + 0.04539322480559349, + 0.0339776873588562, + -0.014170704409480095, + -0.05703726410865784, + 0.028003312647342682, + 0.023401012644171715, + 0.11718001961708069, + 0.05714040994644165, + -0.004043325781822205, + 0.006180059164762497, + 0.009647923521697521, + 0.0673433318734169, + 0.017813164740800858, + -0.022035203874111176, + -0.019492505118250847, + -0.09927386045455933, + 0.009281123988330364, + 0.04251198098063469, + -0.04811733216047287, + -0.031034912914037704, + -0.05054764822125435, + -0.03217360004782677, + 0.014049435034394264, + -0.007213017903268337, + 0.023446621373295784, + -0.07229369133710861, + -0.04470427334308624, + 0.027309494093060493, + 0.040043674409389496, + 0.00934671238064766, + -0.013331711292266846, + -0.03357817232608795, + 0.05598149448633194, + 0.04997854679822922, + -0.013831004500389099, + 0.01405876874923706, + 0.03689425066113472, + 0.0439310185611248, + 0.01921333558857441, + 0.027294252067804337, + -0.04810396581888199, + -0.018536215648055077, + -0.056084249168634415, + 0.013163875788450241, + 0.02496045082807541, + -0.004593666642904282, + -0.07922656089067459, + -0.013844234868884087, + 0.005921832285821438, + -0.0668620839715004, + -0.021803440526127815, + 0.004276235122233629, + 0.0030450578778982162, + 0.02455792762339115, + -0.06065803021192551, + -0.018960781395435333, + -0.01020309329032898, + 0.020964520052075386, + 0.0698988139629364, + 0.10489814728498459, + -0.058861926198005676, + -0.12497974932193756, + -0.11811210960149765, + -0.05708112195134163, + -0.016347674652934074, + 0.007761785294860601, + 0.11104574054479599, + 0.023813093081116676, + -0.15069207549095154, + -0.006340408697724342, + 0.07740364223718643, + 0.007795753888785839, + -0.06108517199754715, + 0.09315479546785355, + -0.03085705265402794, + 0.021870091557502747, + 0.05715733766555786, + -0.02107270248234272, + 0.019974753260612488, + -0.03452741354703903, + 0.07620155811309814, + -0.013586933724582195, + 0.0095268115401268, + 0.0030161896720528603, + 0.005022730212658644, + -0.06465473026037216, + -0.08627865463495255, + -0.021848274394869804, + 0.023641226813197136, + -0.06521051377058029, + -0.039439089596271515, + -0.03472667559981346, + 0.12977701425552368, + 0.03692349046468735, + 0.036763086915016174, + -0.011503178626298904, + -0.03184569254517555, + -0.04492601007223129, + -0.012124373577535152, + 0.023496178910136223, + 0.023360803723335266, + -6.090065417587418e-34, + 0.07092959433794022, + 0.11079836636781693, + 0.02042270265519619, + 0.10454662144184113, + -0.007755082566291094, + 0.02715478278696537, + -0.13177920877933502, + -0.0994853526353836, + -0.040297117084264755, + 0.03954985365271568, + 0.05941556766629219, + 0.05567752197384834, + -0.04103217273950577, + 0.1027899831533432, + 0.02660355530679226, + -0.03692875802516937, + 0.0537443570792675, + 0.028888370841741562, + -0.07353246212005615, + 0.03424530476331711, + -0.055122774094343185, + 0.02892724983394146, + -0.02774438075721264, + 0.012389772571623325, + 0.013294776901602745, + 0.012496035546064377, + 0.06416629254817963, + 0.006258013192564249, + 0.02473623678088188, + 0.044360607862472534, + 0.05508730933070183, + 0.0618559904396534, + 0.01594073884189129, + 0.017618227750062943, + 0.004727876279503107, + 0.002503469353541732, + 0.024550536647439003, + -0.014115088619291782, + -0.01685691811144352, + 0.03959574177861214, + -0.05057112127542496, + -0.03275252878665924, + 0.017137907445430756, + -0.07152779400348663, + -0.04431493207812309, + 0.09054359048604965, + 0.0660942867398262, + -0.005738418083637953, + 0.006679284851998091, + 0.008543020114302635, + -0.022670825943350792, + 0.0047379438765347, + -0.06295021623373032, + 0.05266087129712105, + 0.03011018969118595, + -0.08479753881692886, + -0.05182361602783203, + 0.054393917322158813, + 0.020306937396526337, + 0.007472142577171326, + 0.0032132400665432215, + 0.022254472598433495, + 0.030068891122937202, + -0.03662024065852165, + -0.06893698871135712, + -0.04869687557220459, + -0.029405327513813972, + -0.07949885725975037, + 0.030828755348920822, + -0.009390497580170631, + -0.023419689387083054, + 0.07219550758600235, + 0.07340030372142792, + 0.04219662398099899, + -0.0905756726861, + -0.01935913972556591, + 0.019225098192691803, + 0.044932249933481216, + -0.01456943154335022, + -0.008486464619636536, + -0.050268691033124924, + 0.022368144243955612, + -0.1358826458454132, + 0.008361604064702988, + -0.02421843819320202, + -0.006294607650488615, + -0.0039496589452028275, + -0.07516241073608398, + -0.09164867550134659, + 0.0035386504605412483, + -0.04803195595741272, + -0.012075545266270638, + 0.02775133028626442, + 0.007481376640498638, + -0.15746740996837616, + -2.559494767186563e-33, + 0.010590863414108753, + 0.015673035755753517, + -0.021770775318145752, + -0.05193999409675598, + 0.05660427734255791, + -0.003627182450145483, + 0.13071511685848236, + 0.022659899666905403, + -0.014048990793526173, + -0.0057300240732729435, + 0.028358735144138336, + -0.028244605287909508, + -0.03866684064269066, + -0.03279693052172661, + 0.09422922879457474, + 0.11589833348989487, + 0.019785109907388687, + 0.04134897142648697, + -0.10062993317842484, + -0.05076403543353081, + -0.07865604013204575, + -0.051059406250715256, + -0.061470866203308105, + 0.05330490693449974, + -0.003118813969194889, + 0.012302485294640064, + 0.06076975539326668, + -0.02057293802499771, + -0.021610772237181664, + 0.01496367622166872, + -0.014659253880381584, + -0.007521784398704767, + -0.06332656741142273, + 0.0015704476973041892, + -0.09383697062730789, + -0.007262289058417082, + -0.04779503121972084, + -0.005389667581766844, + -0.00029133225325495005, + 0.004453073255717754, + 0.052599918097257614, + 0.07124251127243042, + -0.011328361928462982, + 0.044228196144104004, + -0.01725204847753048, + 0.01614798791706562, + 0.003496631281450391, + -0.13583146035671234, + -0.01581672951579094, + 0.041242197155952454, + 0.016412271186709404, + -0.05762351676821709, + 0.0061119794845581055, + 0.012288707308471203, + -0.07509490847587585, + -0.0642232820391655, + 0.05272631347179413, + 0.03427617996931076, + 0.056103602051734924, + 0.020661843940615654, + -0.042639583349227905, + 0.024667471647262573, + 0.0024446516763418913, + 0.08626323938369751, + -0.04962880536913872, + -0.042757563292980194, + 0.02173951268196106, + 0.04468635469675064, + -0.07428273558616638, + -0.038459163159132004, + 0.057651497423648834, + -0.07392383366823196, + -0.02628384903073311, + 0.024943428114056587, + 0.009755869396030903, + -0.09211762249469757, + -0.04698391258716583, + -0.01809963397681713, + -0.06144098937511444, + 0.062240906059741974, + 0.028099434450268745, + 0.05200602114200592, + -0.06327659636735916, + -0.004536500666290522, + -0.02061627432703972, + -0.036755334585905075, + -0.006854715757071972, + 0.10260763019323349, + -0.0030840549152344465, + -0.023574385792016983, + -0.028352908790111542, + 0.03888029232621193, + -0.09292308986186981, + -0.03883259743452072, + -0.09927838295698166, + -2.2117994546988484e-08, + -0.07176347821950912, + -0.0590033084154129, + 0.058564625680446625, + -0.01948380656540394, + 0.015284770168364048, + -0.025149177759885788, + -0.016330046579241753, + -0.047727070748806, + -0.01786085031926632, + 0.001932314014993608, + -0.016312532126903534, + 0.0457930862903595, + -0.06200047954916954, + -0.06072358787059784, + 0.09415016323328018, + 0.036068253219127655, + -0.09603802114725113, + 0.04273182526230812, + -0.023938221856951714, + -0.02898024395108223, + -0.0230296291410923, + 0.0580117292702198, + -0.031087461858987808, + 0.03989899531006813, + -0.009706303477287292, + 0.07817962020635605, + -0.08770158141851425, + 0.04001348465681076, + 0.008908453397452831, + 0.04396994039416313, + 0.03911939263343811, + 0.11752215027809143, + 0.03596264123916626, + -0.042988236993551254, + -0.05665081366896629, + -0.036285851150751114, + -0.044387560337781906, + -0.0001242918660864234, + -0.0092342933639884, + 0.06998196244239807, + 0.04091433435678482, + -0.08352714776992798, + 0.025444429367780685, + 0.029934311285614967, + 0.015595453791320324, + 0.02938828244805336, + 0.06561722606420517, + -0.03722945973277092, + -0.024774566292762756, + -0.10090631246566772, + -0.047546736896038055, + -0.059768859297037125, + 0.005881045944988728, + 0.11817607283592224, + -0.08773957937955856, + -0.07774993777275085, + 0.020420081913471222, + 0.10234948247671127, + 0.049031950533390045, + -0.06268129497766495, + 0.05026686191558838, + 0.06625176221132278, + -0.015567908063530922, + 0.03263446316123009 + ], + "user-switch-bold||person,users,profile,account,login,logout,signin,signout,settings,preferences": [ + 0.03806423768401146, + -0.03612237051129341, + -0.08440614491701126, + 0.05019904300570488, + 0.007670253980904818, + 0.011226484552025795, + 0.13917164504528046, + -0.006379815749824047, + -0.0362098254263401, + -0.008799432776868343, + 0.02174687199294567, + 0.025990186259150505, + 0.028988095000386238, + -0.05071123316884041, + 0.04613697528839111, + 0.025991445407271385, + -0.03288106992840767, + 0.05356787145137787, + 0.01933700032532215, + 0.007226153742522001, + 0.03661879152059555, + -0.05134353041648865, + -0.051226384937763214, + 0.002659604884684086, + 0.03501259163022041, + -0.04924054816365242, + 0.052442800253629684, + -0.0436030738055706, + -0.06190922483801842, + -0.04815750569105148, + -0.0025764370802789927, + -0.0005270496476441622, + 0.03998018801212311, + -0.022296950221061707, + -0.010863881558179855, + -0.008170660585165024, + -0.020010408014059067, + -0.007718001026660204, + 0.01500442810356617, + -0.030592983588576317, + -0.0175012219697237, + -0.07869589328765869, + -0.010466115549206734, + -0.011874387972056866, + -0.10202710330486298, + 0.02505023591220379, + -0.05153398960828781, + -0.05056658759713173, + 0.018540911376476288, + -0.016431452706456184, + 0.09006331861019135, + -0.03007928468286991, + -0.051171302795410156, + 0.0184021033346653, + 0.05725232884287834, + 0.04687457159161568, + 0.012094810605049133, + -0.007377733942121267, + 0.07343818992376328, + 0.05748330056667328, + -0.05883000046014786, + 0.03685063496232033, + 0.04324091598391533, + 0.04415234550833702, + 0.05217353254556656, + 0.06592962890863419, + 0.013139394111931324, + -0.07218917459249496, + -0.03516901284456253, + -0.01653200015425682, + -0.04236692190170288, + -0.027693573385477066, + -0.01953439600765705, + -0.04429243505001068, + -0.0024755187332630157, + -0.06460914015769958, + 0.047613874077796936, + 0.007204405032098293, + -0.025161713361740112, + -0.028258493170142174, + -0.030637597665190697, + -0.0027121822349727154, + -0.021632660180330276, + 0.01113227941095829, + 0.09735815227031708, + 0.07491938024759293, + -0.08504931628704071, + -0.0926302820444107, + -0.09882479906082153, + -0.009317002259194851, + -0.06353989988565445, + -0.038050103932619095, + 0.10459741950035095, + -0.02881498821079731, + -0.12444866448640823, + -0.0047390093095600605, + 0.013179142028093338, + 0.01389035489410162, + -0.019078342244029045, + 0.06332742422819138, + -0.026601476594805717, + 0.03568214923143387, + 0.1045067235827446, + 0.007229580078274012, + -0.005261228419840336, + -0.0654066801071167, + 0.061028480529785156, + -0.04142283648252487, + -0.03713212162256241, + -0.014202548190951347, + 0.01324280072003603, + -0.036958664655685425, + -0.00888123270124197, + -0.03439803421497345, + 0.055682383477687836, + -0.014845212921500206, + -0.022085703909397125, + -0.002535511739552021, + 0.08087333291769028, + 0.09448603540658951, + 0.05681072920560837, + -0.05417829006910324, + -0.03877430781722069, + -0.06190699711441994, + -0.022727230563759804, + 0.05333267152309418, + 0.06980401277542114, + 1.0896940998008072e-33, + 0.08703786134719849, + 0.06540989875793457, + -0.04252089187502861, + 0.08571985363960266, + 0.024858128279447556, + 0.060570575296878815, + -0.08098752051591873, + -0.09170036762952805, + -0.10119001567363739, + 0.004251359961926937, + 0.08564230054616928, + 0.07013954222202301, + 0.0009138609748333693, + 0.0959942564368248, + 0.042249612510204315, + -0.06176401302218437, + 0.06752891838550568, + -0.010045488364994526, + -0.02655669115483761, + -0.035840682685375214, + -0.025071728974580765, + 0.08852910250425339, + 0.00150174624286592, + 0.002664042403921485, + -0.01725318469107151, + 0.0004615037760231644, + 0.028941646218299866, + -0.015852825716137886, + -0.06439801305532455, + 0.004568768199533224, + 0.027819184586405754, + 0.030008235946297646, + 0.021152740344405174, + 0.047162581235170364, + 0.011919323354959488, + -0.005152091849595308, + -0.017462918534874916, + -0.0024940944276750088, + -0.02777690254151821, + -0.010164848528802395, + -0.06917797029018402, + -0.027979249134659767, + -0.021542515605688095, + -0.04405674710869789, + -0.04991690441966057, + 0.08956456184387207, + 0.02395407296717167, + -0.06555382162332535, + 0.03211488202214241, + 0.0033217407763004303, + -0.016501106321811676, + 0.01953689567744732, + -0.039558131247758865, + 0.032705169171094894, + 0.03354787081480026, + -0.05967871844768524, + -0.0563804917037487, + 0.08022309839725494, + 0.02141149900853634, + -0.004655271302908659, + 0.0003126276424154639, + 0.05246341973543167, + 0.053617995232343674, + -0.01681113801896572, + -0.037643615156412125, + 0.05645296722650528, + -0.030743274837732315, + -0.0805499330163002, + -0.007846858352422714, + -0.05859895423054695, + -0.03187260776758194, + 0.061124179512262344, + 0.038958437740802765, + 0.014623090624809265, + -0.07292040437459946, + 0.01609921082854271, + 0.0001497276680311188, + 0.019115498289465904, + -0.013488439843058586, + -0.007416372187435627, + -0.0067857615649700165, + 0.02001469023525715, + -0.11696244776248932, + 0.024133365601301193, + 0.023156264796853065, + -0.006726296152919531, + -0.0018500409787520766, + -0.07415279000997543, + -0.09557627141475677, + 0.014597071334719658, + -0.0164895448833704, + 0.036867134273052216, + 0.05425450578331947, + -0.015239261090755463, + -0.1182253360748291, + -4.883706258532383e-33, + 0.02779592201113701, + -0.010664698667824268, + -0.008251386694610119, + 0.0025075050070881844, + -0.009548738598823547, + 0.01554279588162899, + 0.11510195583105087, + 0.05742105096578598, + -0.043631602078676224, + 0.014844420365989208, + 0.08164558559656143, + -0.0032170992344617844, + 0.0021730910521000624, + 0.0025576306506991386, + 0.03822581097483635, + 0.056536965072155, + -0.026529984548687935, + 0.0884125828742981, + -0.04877428337931633, + -0.017200767993927002, + -0.07492361217737198, + -0.01916438154876232, + -0.08873862773180008, + 0.07630088180303574, + -0.02620157226920128, + -0.02045230008661747, + 0.05480396747589111, + -0.00660059554502368, + -0.016396425664424896, + -0.07843182235956192, + 0.0019386206986382604, + 0.03971801698207855, + -0.05426188185811043, + 0.013885864987969398, + -0.035919345915317535, + 0.051443252712488174, + -0.09527342766523361, + 0.054133299738168716, + -0.09007202833890915, + 0.06427708268165588, + 0.0195387601852417, + 0.04545900225639343, + 0.013967110775411129, + -0.0014524580910801888, + -0.03623291477560997, + 0.07538371533155441, + -0.03260527178645134, + -0.1510678082704544, + -0.052376747131347656, + 0.07868082821369171, + 0.053112491965293884, + -0.07339468598365784, + 0.040837500244379044, + -0.02312924526631832, + -0.06113516539335251, + -0.10463844239711761, + 0.0719076469540596, + -0.007326480466872454, + 0.025993039831519127, + 0.01906570792198181, + 0.012804185040295124, + -0.0165876355022192, + 0.008168543688952923, + 0.0865616500377655, + -0.025478724390268326, + -0.07777658849954605, + 0.01949986442923546, + 0.03384227305650711, + -0.01145985908806324, + -0.07309965044260025, + 0.06671073287725449, + -0.1488342136144638, + 0.031359970569610596, + -0.017991743981838226, + -0.0034494802821427584, + -0.1291753202676773, + -0.009482254274189472, + -0.04107535630464554, + -0.04559410735964775, + 0.024273622781038284, + 0.030855486169457436, + -0.00838550366461277, + -0.06197838485240936, + 0.003679777029901743, + -0.04270557314157486, + 0.017146296799182892, + -0.07051068544387817, + 0.07674714177846909, + 0.011643259786069393, + -0.03690636157989502, + -0.05110160633921623, + 0.04639080911874771, + -0.020443424582481384, + -0.10684073716402054, + -0.09674528241157532, + -2.779781738126985e-08, + -0.04362386465072632, + -0.09282386302947998, + 0.1187579333782196, + 0.0102470014244318, + 0.010355480015277863, + 6.608288822462782e-05, + 0.01349424198269844, + -0.039114225655794144, + -0.047617167234420776, + 0.004279790446162224, + -0.013375278562307358, + 0.07520434260368347, + 0.031212791800498962, + -0.04317564144730568, + 0.05782129988074303, + 0.0704035833477974, + -0.06276710331439972, + 0.0413578562438488, + 0.011202615685760975, + -0.008224760182201862, + -0.08380991220474243, + 0.04225470498204231, + -0.02690695971250534, + 0.031463153660297394, + 0.02024640515446663, + 0.06342640519142151, + -0.06118146330118179, + 0.04946879297494888, + 0.022573871538043022, + 0.0467781201004982, + 0.0654410868883133, + 0.08675038069486618, + 0.025885114446282387, + -0.0791931301355362, + -0.06361947953701019, + 0.009438993409276009, + -0.060950107872486115, + 0.03186643868684769, + 0.0016304885502904654, + 0.04494284838438034, + 0.01824994385242462, + -0.06451942026615143, + -0.03645186126232147, + 0.03090422973036766, + -0.11408413201570511, + -0.0021411492489278316, + 0.04172295331954956, + 0.01791248843073845, + -0.04281122237443924, + -0.0826667845249176, + -0.06370018422603607, + -0.008141053840517998, + 0.016713310033082962, + 0.07565934211015701, + -0.024241337552666664, + -0.06943539530038834, + 0.06316304206848145, + 0.09301348775625229, + 0.04029953107237816, + -0.037192024290561676, + 0.07195236533880234, + 0.03351783752441406, + -0.0153744425624609, + -0.014447430148720741 + ], + "users-bold||user,group,team,people,profiles,accounts,contacts": [ + -0.018662650138139725, + -0.05784149467945099, + -0.08752787858247757, + 0.057085588574409485, + 0.024737684056162834, + -0.02721748873591423, + 0.10139711201190948, + -0.04608545079827309, + -0.00617873203009367, + -0.022407397627830505, + 0.01685137115418911, + -0.0006811211933381855, + 0.08098559826612473, + -0.02417377382516861, + -0.011155541054904461, + -0.013407302089035511, + -0.024856694042682648, + 0.02619991824030876, + 0.016671810299158096, + -0.05005386844277382, + 0.013059745542705059, + 0.005114426836371422, + 0.03430664911866188, + 0.004280861001461744, + 0.04614534229040146, + -0.041069500148296356, + 0.013996471650898457, + 0.01234069000929594, + -0.015808777883648872, + -0.06714746356010437, + -0.0199547428637743, + 0.020110948011279106, + 0.13076120615005493, + 0.06486526131629944, + 0.02391720376908779, + 0.03880250081419945, + 0.01838444545865059, + 0.029081519693136215, + -0.012337111867964268, + 0.013370553962886333, + -0.025911377742886543, + -0.04148215427994728, + -0.014966814778745174, + 0.04044709727168083, + -0.08207297325134277, + 0.015444585122168064, + -0.07229412347078323, + -0.028043624013662338, + 0.006135688163340092, + 0.04194033890962601, + 0.019046906381845474, + -0.06958306580781937, + -0.052138760685920715, + 0.037444815039634705, + 0.07611071318387985, + 0.004296185448765755, + -0.042552750557661057, + -0.04103373363614082, + 0.018630729988217354, + -0.0016916237073019147, + -0.011197932995855808, + 0.008792457170784473, + 0.037389107048511505, + 0.044986970722675323, + 0.04142354056239128, + 0.016655033454298973, + -0.02475903369486332, + 0.035557955503463745, + -0.06677433103322983, + -0.003474624827504158, + 0.044646911323070526, + -0.03279345855116844, + -0.05577244982123375, + -0.015506868250668049, + -0.023882105946540833, + 0.0090868528932333, + 0.003010766115039587, + 0.011409780941903591, + -0.002679693978279829, + -0.028221789747476578, + -0.03806915134191513, + -0.06157151237130165, + -0.028817905113101006, + 0.01149635761976242, + 0.06772268563508987, + 0.09777884930372238, + -0.07320691645145416, + -0.1146489828824997, + -0.09881487488746643, + -0.000455249915830791, + -0.03041810914874077, + 0.02505101077258587, + 0.09545647352933884, + 0.00868943054229021, + -0.15395425260066986, + 0.0306396521627903, + 0.0750427395105362, + 0.003591280896216631, + -0.04600071907043457, + 0.10467825829982758, + -0.04891251027584076, + 0.00740652484819293, + 0.043211936950683594, + -0.013320221565663815, + -0.06247524544596672, + -0.04240350052714348, + 0.02317805588245392, + -0.008437243290245533, + -0.011505699716508389, + 0.013579102233052254, + -0.003667789278551936, + -0.04487050697207451, + -0.09703532606363297, + -0.08815290778875351, + -0.002492927247658372, + -0.11702021211385727, + -0.025461357086896896, + -0.007556941360235214, + 0.08393238484859467, + 0.05133425071835518, + 0.053614292293787, + 0.0009486844064667821, + -0.003886802587658167, + -0.006439488846808672, + 0.02110881730914116, + 0.059649135917425156, + -0.002522043650969863, + -5.967694159779414e-34, + 0.08564844727516174, + 0.061928730458021164, + -0.03328166529536247, + 0.09302748739719391, + -0.03268900886178017, + 0.02780969627201557, + -0.11587434262037277, + -0.040199436247348785, + -0.12043304741382599, + -0.013446147553622723, + 0.07712231576442719, + 0.10209853947162628, + 0.02205660007894039, + 0.08087234944105148, + 0.023523280397057533, + -0.0192093588411808, + 0.04512552544474602, + 0.01068838220089674, + -0.1259729415178299, + 0.0074835410341620445, + -0.07895587384700775, + 0.053393784910440445, + -0.012157061137259007, + 0.02296576462686062, + -0.01485246792435646, + 6.52127928333357e-05, + 0.024636374786496162, + -0.01993747241795063, + -0.023656081408262253, + 0.03810065984725952, + 0.018315056338906288, + 0.03668676316738129, + 0.025728046894073486, + 0.03858594223856926, + -0.00801852811127901, + 0.06322034448385239, + -0.008260788396000862, + -0.0332888625562191, + -0.0007564213592559099, + 0.07195838540792465, + -0.051805999130010605, + -0.016277480870485306, + 0.0043113152496516705, + -0.08361494541168213, + -0.029469313099980354, + 0.127189502120018, + 0.01159356627613306, + -0.029920633882284164, + 0.004231586586683989, + 0.037780288606882095, + -0.0010853070998564363, + -0.01699211448431015, + -0.008205507881939411, + 0.03431984409689903, + 0.020663127303123474, + -0.03835362568497658, + -0.009808850474655628, + 0.07667656242847443, + -0.003866107203066349, + -0.024073636159300804, + -0.0017995351227000356, + 0.0661766305565834, + 0.07612111419439316, + -0.004081556107848883, + -0.042766910046339035, + -0.006451131775975227, + -0.04529732093214989, + -0.002570204669609666, + 0.09860756248235703, + -0.030520591884851456, + 0.010538407601416111, + 0.08653629571199417, + 0.02835272066295147, + 0.05947233736515045, + -0.08860205113887787, + -0.005937869660556316, + 0.006609579548239708, + 0.05758610740303993, + -0.017743214964866638, + 0.012768219225108624, + -0.053381018340587616, + -0.02955361269414425, + -0.11476971209049225, + 0.03494349867105484, + -0.02766560949385166, + 0.037862379103899, + 0.0030703702941536903, + -0.05333171784877777, + -0.06627965718507767, + 0.03419668599963188, + -0.047335147857666016, + -0.0036077608820050955, + 0.038457904011011124, + 0.005865446291863918, + -0.17354464530944824, + -3.524131329081249e-33, + 0.027487322688102722, + 0.007789639290422201, + -0.007224470842629671, + -0.07318154722452164, + 0.05349457636475563, + 0.005184927023947239, + 0.11069967597723007, + 0.013963384553790092, + -0.008421387523412704, + 0.03424343839287758, + 0.01873917318880558, + -0.03662896528840065, + -0.06305743008852005, + -0.03267998993396759, + 0.04406021162867546, + 0.038349371403455734, + 0.03696930781006813, + 0.01919029839336872, + -0.038780488073825836, + -0.00920652411878109, + -0.07092596590518951, + -0.03234388306736946, + -0.07976237684488297, + 0.09648354351520538, + 0.03357652202248573, + -0.017318306490778923, + 0.03246404975652695, + -0.0627271831035614, + -0.033903706818819046, + -0.034098412841558456, + 0.021001478657126427, + -0.03022078238427639, + -0.027167754247784615, + -0.013703249394893646, + -0.05313331261277199, + 0.033124372363090515, + -0.06539001315832138, + 0.016141636297106743, + 0.0015488784993067384, + 0.025649752467870712, + 0.024495743215084076, + 0.059504251927137375, + -0.01720723882317543, + 0.01668062061071396, + -0.05616499111056328, + 0.031458817422389984, + 0.00079737463966012, + -0.15427878499031067, + -0.05374084785580635, + 0.08143085241317749, + 0.031693920493125916, + -0.07360486686229706, + 0.009221451357007027, + -0.010308818891644478, + -0.05755008012056351, + -0.05311540141701698, + 0.0663236752152443, + -0.03433404862880707, + 0.042731873691082, + 0.028413675725460052, + -0.03425156697630882, + 0.03125610947608948, + -0.02559656836092472, + 0.09609735757112503, + -0.0467304028570652, + -0.06369701027870178, + 0.008352519012987614, + 0.009125933051109314, + -0.056570928543806076, + -0.059546660631895065, + 0.05818987637758255, + -0.090912826359272, + -0.04112552851438522, + 0.022440869361162186, + -0.0031365735922008753, + -0.05789291486144066, + -0.04420052841305733, + 0.0037890360690653324, + -0.04713873937726021, + 0.041866324841976166, + -0.014136483892798424, + 0.0226904209703207, + -0.05699215829372406, + 0.07899750769138336, + -0.04554283618927002, + -0.026855600997805595, + -0.006650744937360287, + 0.09489377588033676, + -0.005655177868902683, + 0.006945605389773846, + -0.014649566262960434, + -0.016859151422977448, + -0.018958333879709244, + -0.06145693361759186, + -0.1012420579791069, + -2.3282426653281618e-08, + -0.04963357001543045, + -0.022510508075356483, + 0.020422011613845825, + 0.008222337812185287, + 0.028389712795615196, + -0.041189227253198624, + -0.025794219225645065, + -0.035814281553030014, + 0.015952110290527344, + 0.04412134364247322, + 0.01275286078453064, + 0.0346074104309082, + -0.04976706951856613, + -0.049714334309101105, + 0.12748569250106812, + 0.03590405359864235, + -0.08060140907764435, + 0.05018618330359459, + -0.040323685854673386, + -0.05336307734251022, + -0.03783723711967468, + 0.07265184819698334, + -0.04906544089317322, + -0.004441631026566029, + 0.06190868839621544, + 0.06221291050314903, + -0.14477035403251648, + 0.00423038937151432, + 0.003858181880787015, + 0.026910647749900818, + 0.020935360342264175, + 0.07692961394786835, + -0.01045150775462389, + 0.004916585981845856, + -0.03942285478115082, + -0.023669831454753876, + -0.052554450929164886, + -0.010649478062987328, + 0.020666275173425674, + 0.11540480703115463, + -0.0062985667027533054, + -0.02791465073823929, + 0.0012843770673498511, + 0.03707891330122948, + -0.028564035892486572, + 0.01573220267891884, + 0.03603289648890495, + -0.06056606024503708, + -0.05305320397019386, + -0.1348775029182434, + -0.04735029488801956, + -0.049703266471624374, + -4.4273103412706405e-05, + 0.09135459363460541, + -0.05321976915001869, + -0.045463353395462036, + 0.04851187765598297, + 0.13220874965190887, + 0.04681024327874184, + -0.093247190117836, + 0.09393033385276794, + 0.05926482006907463, + -0.01126145664602518, + 0.01623447984457016 + ], + "users-four-bold||user,group,team,department,community,people,profiles,accounts,contacts": [ + 0.03010842576622963, + -0.05718556046485901, + -0.07514811307191849, + 0.01563856191933155, + -0.01044865045696497, + -0.011939581483602524, + 0.06922867894172668, + -0.0338594987988472, + -0.023395182564854622, + -0.02401675470173359, + 0.03547652065753937, + -0.037169139832258224, + 0.0703066810965538, + -0.014507490210235119, + -0.04263898730278015, + 0.022083431482315063, + -0.03488289192318916, + 0.014168698340654373, + -0.00510357366874814, + -0.04244563728570938, + 0.010999946855008602, + -0.005115746520459652, + 0.03498232737183571, + 0.010581949725747108, + 0.038620904088020325, + -0.020208079367876053, + -0.018622267991304398, + 0.005822001490741968, + -0.026055436581373215, + -0.05542813986539841, + 0.00199255277402699, + 0.05021299421787262, + 0.14420683681964874, + 0.060534924268722534, + 0.01985141821205616, + 0.011121462099254131, + 0.028941739350557327, + 0.04946913197636604, + 0.0005451463512144983, + 0.04064829647541046, + -0.018987732008099556, + -0.040661316365003586, + -0.00735883042216301, + 0.053881313651800156, + -0.08078078180551529, + 0.023615149781107903, + -0.07294997572898865, + -0.01643969677388668, + 0.030284544453024864, + 0.03457796573638916, + 0.03469828516244888, + -0.04730493947863579, + -0.06820227205753326, + 0.08134134113788605, + 0.05404185876250267, + -0.022935202345252037, + -0.05617538094520569, + -0.03726498410105705, + 0.0012110340176150203, + 0.024572905153036118, + 0.026452558115124702, + 0.011789836920797825, + 0.010294327512383461, + 0.06869267672300339, + 0.04432079568505287, + 0.0055519393645226955, + -0.05343657732009888, + 0.0009525927598588169, + -0.04981478676199913, + -0.02939521335065365, + 0.04642033949494362, + -0.014085235074162483, + -0.056076694279909134, + -0.014454478397965431, + 0.002791748382151127, + -0.02068912424147129, + 0.00881199911236763, + -0.012220224365592003, + 0.010386502370238304, + -0.047479115426540375, + -0.011203499510884285, + -0.013977550901472569, + -0.03324969857931137, + -0.010469673201441765, + 0.015724387019872665, + 0.08084268122911453, + -0.06409230083227158, + -0.1431184858083725, + -0.08427263051271439, + -0.004167736973613501, + -0.024503160268068314, + 0.03941305726766586, + 0.09959613531827927, + -0.01084734033793211, + -0.15310445427894592, + 0.03666364401578903, + 0.07892925292253494, + -0.03197942301630974, + -0.019236544147133827, + 0.11250467598438263, + -0.050374217331409454, + -0.01044220756739378, + 0.009477950632572174, + -0.030358193442225456, + -0.0594811737537384, + -0.059599701315164566, + 0.023475540801882744, + 0.012986364774405956, + -0.02059054560959339, + 0.01146276481449604, + 2.5657398509792984e-05, + -0.04580863192677498, + -0.08770115673542023, + -0.055443890392780304, + 0.007710223086178303, + -0.10098706930875778, + -0.02236093394458294, + 0.027635347098112106, + 0.06549915671348572, + 0.05541578680276871, + 0.012919802218675613, + 0.0067230830900371075, + 0.03057524561882019, + -0.0406612753868103, + 0.005736290477216244, + 0.058426085859537125, + -0.025104301050305367, + -1.852548240169216e-33, + 0.09642454236745834, + 0.0848030149936676, + -0.01813340187072754, + 0.078429214656353, + 0.002519183326512575, + 0.008611047640442848, + -0.11810174584388733, + -0.03556467965245247, + -0.12900525331497192, + 0.010267702862620354, + 0.06519868224859238, + 0.0707792267203331, + 0.021025339141488075, + 0.07766956090927124, + 0.04222332313656807, + -0.016680456697940826, + 0.048017945140600204, + 4.416971205500886e-05, + -0.08677355945110321, + 0.021461378782987595, + -0.06545194238424301, + 0.07849766314029694, + -0.002427088562399149, + 0.06195620074868202, + 0.013599789701402187, + 0.00389753351919353, + 0.009646929800510406, + -0.01620975136756897, + 0.03254728391766548, + 0.05122268944978714, + 0.00826255138963461, + 0.052454087883234024, + 0.006360284052789211, + -0.010354756377637386, + 0.022597219794988632, + 0.0397435687482357, + 0.009059554897248745, + -0.03888538479804993, + -0.01976885460317135, + 0.03967977315187454, + -0.08122631907463074, + -0.017340339720249176, + 0.008672908879816532, + -0.06951475143432617, + -0.01586141809821129, + 0.08418288081884384, + 0.016529010608792305, + -0.01904880627989769, + 0.018456049263477325, + 0.06294235587120056, + -0.016675470396876335, + -0.014767969027161598, + 0.008733456023037434, + 0.04319930076599121, + -0.01151772029697895, + -0.06822193413972855, + -0.019571276381611824, + 0.0500960536301136, + -0.006927025504410267, + -0.02940955013036728, + 0.02197360433638096, + 0.08168576657772064, + 0.03343906253576279, + -0.0103897824883461, + -0.016544122248888016, + -0.06222396716475487, + -0.022983064875006676, + -0.03979063406586647, + 0.10851960629224777, + 0.007572120521217585, + 0.0017255442216992378, + 0.06343670934438705, + 0.03760398551821709, + 0.0519009530544281, + -0.08909045159816742, + -0.004329435992985964, + -0.0037333681248128414, + 0.06005499139428139, + -0.015354952774941921, + 0.007275608368217945, + -0.07931115478277206, + -0.013606521300971508, + -0.11171029508113861, + 0.03585987165570259, + -0.014813998714089394, + 0.021017514169216156, + 0.010108428075909615, + -0.05675909295678139, + -0.027954500168561935, + 0.00584322540089488, + -0.06279892474412918, + 0.012407605536282063, + 0.024617062881588936, + 0.02443455532193184, + -0.15496933460235596, + -2.581943403209407e-33, + 0.011792799457907677, + 0.03057311661541462, + -0.02075253240764141, + -0.06480280309915543, + 0.04771207273006439, + 0.0007927738479338586, + 0.10698892176151276, + 0.004412262234836817, + -0.0020087198354303837, + 0.04475888982415199, + 0.03269563242793083, + -0.027494488283991814, + -0.061792951077222824, + -0.02170996554195881, + 0.06277555972337723, + 0.052749719470739365, + 0.02521486207842827, + -0.02643713541328907, + -0.05058896541595459, + 0.01973043940961361, + -0.05200614780187607, + -0.024985913187265396, + -0.0934060588479042, + 0.0960163101553917, + 0.057923492044210434, + -0.01818518154323101, + 0.08809204399585724, + -0.10909270495176315, + -0.03286922350525856, + -0.025967169553041458, + 0.0026553585194051266, + -0.049469172954559326, + -0.017235167324543, + -0.006345344241708517, + -0.08607684075832367, + 0.016149349510669708, + -0.04565991833806038, + 0.02049168199300766, + -0.015965310856699944, + 0.019243905320763588, + 0.020444978028535843, + 0.06479810923337936, + 0.023535046726465225, + 0.060594137758016586, + -0.0676269605755806, + 0.02214190550148487, + -0.013081333599984646, + -0.08671627938747406, + -0.06049662455916405, + 0.08151966333389282, + 0.007045496720820665, + -0.09077998995780945, + -0.007804221473634243, + -0.02081300877034664, + -0.036947622895240784, + -0.050003763288259506, + 0.06553993374109268, + -0.023314310237765312, + 0.023526934906840324, + 0.03696288913488388, + -0.05226961523294449, + -0.024608945474028587, + 0.012586171738803387, + 0.11228363960981369, + -0.042087458074092865, + -0.06476159393787384, + -0.012820228934288025, + -0.012114054523408413, + -0.09524039179086685, + -0.0636288970708847, + 0.058645494282245636, + -0.09846267104148865, + -0.055093999952077866, + -0.02107824943959713, + -0.020790986716747284, + -0.05253257229924202, + -0.07403251528739929, + -0.00602496275678277, + -0.07245612889528275, + 0.058558665215969086, + -0.03550132364034653, + 0.00786888413131237, + -0.029674120247364044, + 0.06170790269970894, + -0.03853771835565567, + -0.07831299304962158, + 0.019148170948028564, + 0.12314088642597198, + 0.013641741126775742, + 0.011878592893481255, + 0.01763179525732994, + 0.007000744342803955, + 0.00039547288906760514, + -0.058872733265161514, + -0.07662411034107208, + -2.521228736895864e-08, + -0.015664122998714447, + -0.0063244933262467384, + 0.012915336526930332, + 0.013609346933662891, + 0.022430419921875, + -0.025240344926714897, + -0.04276236519217491, + -0.0017297129379585385, + 0.0263082142919302, + 0.0358465313911438, + 0.045999836176633835, + 0.04135218635201454, + -0.09175749123096466, + -0.06394001841545105, + 0.1514580398797989, + 0.010788589715957642, + -0.10812273621559143, + 0.04671890288591385, + -0.04232451319694519, + -0.06827650964260101, + -0.025532104074954987, + 0.052478112280368805, + -0.0658002495765686, + -0.011708973906934261, + 0.04268590360879898, + 0.07943163812160492, + -0.1123548373579979, + 0.01165454275906086, + -0.02019607461988926, + 0.00036564646870829165, + 0.055838629603385925, + 0.08903324604034424, + -0.01581021212041378, + -0.04170551523566246, + -0.0373549722135067, + -0.019225342199206352, + -0.06940245628356934, + -0.011872915551066399, + 0.03789462521672249, + 0.08547965437173843, + 0.003630975494161248, + -0.05297594517469406, + 0.009486456401646137, + 0.046315427869558334, + -0.022682657465338707, + 0.03497573733329773, + 0.029133465141057968, + -0.04641672968864441, + -0.02721608430147171, + -0.12479091435670853, + -0.07181291282176971, + -0.04801356419920921, + 0.010976860299706459, + 0.09207940846681595, + -0.02944757230579853, + -0.02509978786110878, + 0.06565927714109421, + 0.10795001685619354, + 0.038869764655828476, + -0.10715220868587494, + 0.09083257615566254, + 0.07079155743122101, + -0.04152786359190941, + 0.02030796930193901 + ], + "users-three-bold||user,group,team,community,people,profiles,accounts,contacts": [ + -0.019291259348392487, + -0.08064085245132446, + -0.11569787561893463, + 0.02234640344977379, + 0.01168085914105177, + -0.02455183118581772, + 0.08313674479722977, + -0.04454365745186806, + -0.013848699629306793, + -0.02078426070511341, + 0.032024770975112915, + -0.05244024097919464, + 0.06115614250302315, + -0.011620137840509415, + -0.0023745631333440542, + 0.0013266081223264337, + -0.05003346502780914, + 0.022334838286042213, + 0.007212563417851925, + -0.03850795328617096, + 0.02182575687766075, + -0.001987746451050043, + 0.047195915132761, + 0.03267783299088478, + 0.05853351950645447, + -0.01416871603578329, + -0.008874401450157166, + 0.007963510230183601, + -0.024237899109721184, + -0.056569360196590424, + -0.012431053444743156, + 0.028023740276694298, + 0.14203327894210815, + 0.05579167604446411, + 0.03116695210337639, + -0.0012144895736128092, + -0.009678872302174568, + 0.046443723142147064, + -0.02853613905608654, + 0.028192264959216118, + -0.013718140311539173, + -0.03615209460258484, + -0.011457187123596668, + 0.026186535134911537, + -0.07245458662509918, + 0.025398580357432365, + -0.10816726088523865, + -0.021230066195130348, + 0.03020896203815937, + 0.044949740171432495, + 0.019857250154018402, + -0.07071669399738312, + -0.060604266822338104, + 0.06277628242969513, + 0.05569876357913017, + -0.013490593060851097, + -0.037971459329128265, + -0.022174352779984474, + 0.00563233345746994, + 0.002001531422138214, + 0.015489003621041775, + 0.025278734043240547, + 0.009372187778353691, + 0.049505218863487244, + 0.07753342390060425, + -0.011842194013297558, + -0.06819143891334534, + -0.012195560149848461, + -0.05902451276779175, + 0.004348330665379763, + 0.025339344516396523, + -0.038658108562231064, + -0.06828420609235764, + -0.033187683671712875, + 0.002329655457288027, + -0.0011737254681065679, + 0.01829332485795021, + -0.006927557289600372, + -0.027290621772408485, + -0.05155014619231224, + -0.009067985229194164, + -0.040205299854278564, + -0.032562002539634705, + 0.03282218053936958, + 0.027056101709604263, + 0.06186820939183235, + -0.09358565509319305, + -0.11306508630514145, + -0.09684740751981735, + 0.001378155779093504, + -0.03853804990649223, + 0.06324401497840881, + 0.10327188670635223, + 0.0059233298525214195, + -0.14726294577121735, + 0.048901770263910294, + 0.06531106680631638, + -0.011664112098515034, + -0.03688860684633255, + 0.12566839158535004, + -0.03524215146899223, + 0.002989166649058461, + 0.039595529437065125, + -0.030117172747850418, + -0.03904435783624649, + -0.04005458950996399, + 0.0010733261005952954, + -0.0014902702532708645, + -0.01765276864171028, + 0.025826388970017433, + -0.0071495226584374905, + -0.052778974175453186, + -0.08758706599473953, + -0.07807313650846481, + 0.0002778549387585372, + -0.0747431218624115, + -0.0012932023964822292, + 0.023778365924954414, + 0.10930619388818741, + 0.060521356761455536, + 0.03157499432563782, + -0.009758458472788334, + 0.01847813092172146, + -0.04158665984869003, + 0.004371384624391794, + 0.06379860639572144, + -0.015973733738064766, + -1.7013387080221834e-33, + 0.07065640389919281, + 0.05332071706652641, + -0.050820864737033844, + 0.10786851495504379, + -0.01055324636399746, + 0.020498525351285934, + -0.1203177273273468, + -0.056148555129766464, + -0.11996134370565414, + -0.014212358742952347, + 0.06721091270446777, + 0.08125609904527664, + 0.039555925875902176, + 0.08090628683567047, + 0.02756623923778534, + -0.021981023252010345, + 0.03006674163043499, + -0.0025381252635270357, + -0.11020607501268387, + 0.016251491382718086, + -0.0356636643409729, + 0.045419931411743164, + 0.0006926917703822255, + 0.03988482430577278, + 0.010427738539874554, + -0.016044847667217255, + 0.006144742947071791, + -0.020767470821738243, + 0.013552376069128513, + 0.03913810849189758, + 0.04867633432149887, + 0.04342958331108093, + 0.010612730868160725, + 0.006212329026311636, + 0.01402334962040186, + 0.05463482812047005, + 0.005499996244907379, + -0.05711929500102997, + -0.022271763533353806, + 0.07217065244913101, + -0.06276294589042664, + -0.022379396483302116, + 0.015282970853149891, + -0.07299964129924774, + -0.023691918700933456, + 0.10425323247909546, + 0.023858455941081047, + -0.012255525216460228, + 0.006746202707290649, + 0.04195496067404747, + 0.007417622953653336, + -0.014838241040706635, + -0.0023733621928840876, + 0.04735639691352844, + 0.0062492284923791885, + -0.048501741141080856, + -0.019601743668317795, + 0.07530521601438522, + 0.013651913031935692, + -0.03792354837059975, + -0.008185124956071377, + 0.07346084713935852, + 0.05992504209280014, + 0.00177097471896559, + -0.03388509154319763, + -0.010687342844903469, + -0.05153869092464447, + 0.0025445627979934216, + 0.11536438763141632, + -0.003189800539985299, + -0.011483882553875446, + 0.06718182563781738, + 0.027156246826052666, + 0.061842285096645355, + -0.09190823137760162, + -0.008107203990221024, + -0.03024616837501526, + 0.05045055225491524, + -0.01575862616300583, + 0.01105068065226078, + -0.059892743825912476, + -0.027272261679172516, + -0.10510345548391342, + 0.04644973576068878, + -0.03513301536440849, + 0.01759081333875656, + -0.017280371859669685, + -0.06515100598335266, + -0.047755032777786255, + -0.012331360951066017, + -0.04569514840841293, + 0.027131689712405205, + 0.0590115450322628, + 0.02489362843334675, + -0.15072257816791534, + -2.5952485298927768e-33, + 0.007149265147745609, + 0.03101155534386635, + -0.003270635847002268, + -0.07981787621974945, + 0.06413949280977249, + -0.013424629345536232, + 0.0878574550151825, + 0.004397550597786903, + -0.004390886519104242, + 0.041944604367017746, + 0.019575174897909164, + -0.021480098366737366, + -0.04671836644411087, + -0.044228143990039825, + 0.05643225833773613, + 0.04361740127205849, + 0.04328673332929611, + -0.013958919793367386, + -0.03929645195603371, + 0.010488633066415787, + -0.037301987409591675, + -0.04118937999010086, + -0.1094474270939827, + 0.09880729764699936, + 0.02414785698056221, + -0.016928941011428833, + 0.06053462624549866, + -0.10738255083560944, + -0.027415532618761063, + -0.02289981208741665, + -0.0029228529892861843, + -0.0352022759616375, + 0.002681699814274907, + -0.029048170894384384, + -0.04861387982964516, + 0.04224475473165512, + -0.051393065601587296, + 0.009493760764598846, + -0.005172914359718561, + 0.013907677493989468, + 0.021641766652464867, + 0.05826171115040779, + 0.01770257018506527, + 0.03634484112262726, + -0.06399131566286087, + 0.06652182340621948, + 0.011205256916582584, + -0.1108148917555809, + -0.05766700208187103, + 0.10243253409862518, + 0.010773495770990849, + -0.10490099340677261, + 0.014361567795276642, + -0.008194894529879093, + -0.031265195459127426, + -0.053664278239011765, + 0.0713190957903862, + -0.03745409473776817, + 0.04744197055697441, + 0.03836197778582573, + -0.03718001767992973, + -0.003528647357597947, + 0.002501268172636628, + 0.10465701669454575, + -0.038682423532009125, + -0.043548502027988434, + -0.0064162216149270535, + -0.0008723327191546559, + -0.07710162550210953, + -0.03695204108953476, + 0.04194079339504242, + -0.07078170031309128, + -0.045144859701395035, + -0.017920395359396935, + -0.022815696895122528, + -0.05421670898795128, + -0.05792580172419548, + 0.02462659776210785, + -0.04929409548640251, + 0.023719757795333862, + -0.010653829202055931, + 0.018707579001784325, + -0.028201669454574585, + 0.08278661221265793, + -0.028132468461990356, + -0.07694248855113983, + 0.008118253201246262, + 0.11863604933023453, + 0.001800693804398179, + -0.0017186379991471767, + 0.0025045282673090696, + 0.006074921227991581, + -0.0015300360973924398, + -0.054625727236270905, + -0.06968892365694046, + -2.3890526890113506e-08, + -0.019592666998505592, + -0.01666720025241375, + 0.001825415063649416, + 0.014985323883593082, + 0.03011743538081646, + -0.008677025325596333, + -0.036113638430833817, + -0.0029948544688522816, + 0.027265459299087524, + 0.05430087819695473, + 0.033680349588394165, + 0.029202895238995552, + -0.07056761533021927, + -0.05887778475880623, + 0.1476810723543167, + 0.011064275167882442, + -0.07311608642339706, + 0.057631440460681915, + -0.038316916674375534, + -0.07725957781076431, + -0.025658050552010536, + 0.0649075135588646, + -0.03510649502277374, + -0.013466578908264637, + 0.061221543699502945, + 0.07728778570890427, + -0.15153925120830536, + 0.016614852473139763, + -0.028544755652546883, + 0.002147334860637784, + 0.028845839202404022, + 0.07772783190011978, + -0.009491963312029839, + -0.005485827568918467, + -0.03518293797969818, + -0.015438889153301716, + -0.07751158624887466, + -0.013335580937564373, + 0.025800343602895737, + 0.06885296106338501, + 0.0024487145710736513, + -0.015831097960472107, + 0.003652754705399275, + 0.036240145564079285, + -0.023229708895087242, + 0.017831280827522278, + 0.020029528066515923, + -0.04316279664635658, + -0.0617966428399086, + -0.1423693746328354, + -0.06315504759550095, + -0.07072783261537552, + 0.020783323794603348, + 0.10038173198699951, + -0.03138330206274986, + -0.03851328417658806, + 0.03561859205365181, + 0.12036088854074478, + 0.041451532393693924, + -0.09628333896398544, + 0.08587361872196198, + 0.06292690336704254, + -0.03741675987839699, + 0.019453082233667374 + ], + "van-bold||westfalia,microbus,vanagon,cars,vehicles,automobile,transit,transportation,traveling": [ + 0.1399095505475998, + -0.02207881584763527, + 0.014173168689012527, + 0.00566416559740901, + -0.001055572065524757, + -0.026411958038806915, + -0.015377390198409557, + 0.008675621822476387, + -0.07922444492578506, + -0.026334058493375778, + 0.055954042822122574, + -0.013977152295410633, + 0.028205469250679016, + -0.024222631007432938, + -0.04980378970503807, + -0.025628842413425446, + 0.06992143392562866, + -0.04031391069293022, + 0.025648092851042747, + 0.03751620277762413, + 0.03169294819235802, + 0.015798702836036682, + 0.054598983377218246, + 0.022491516545414925, + 0.030071621760725975, + 0.06429064273834229, + 0.060935430228710175, + 0.007927048951387405, + -0.011356698349118233, + -0.06893470883369446, + -0.06294495612382889, + 0.06625543534755707, + -0.0013026982778683305, + 0.030227595940232277, + 0.014082595705986023, + -0.04818510636687279, + -0.010973641648888588, + 0.02283133566379547, + 0.051910966634750366, + -0.017235472798347473, + -0.013057223521173, + -0.09399614483118057, + 0.015778886154294014, + -0.011282183229923248, + -0.05545499175786972, + -0.0510665588080883, + 0.032904740422964096, + -0.02448200434446335, + 0.03658658638596535, + 0.006045476999133825, + 0.0671028271317482, + -0.07031179964542389, + -0.05574241280555725, + 0.06432369351387024, + -0.06630005687475204, + -0.028182590380311012, + -0.11791645735502243, + 0.042463675141334534, + 0.02468784525990486, + 0.0005899975076317787, + 0.05593913793563843, + 0.05396914482116699, + -0.049587491899728775, + 0.014788400381803513, + -0.0020587891340255737, + -0.048964280635118484, + -0.041434966027736664, + 0.015494335442781448, + -0.042096707969903946, + -0.012293699197471142, + 0.08373881131410599, + -0.00926144327968359, + -0.05485472455620766, + 0.010132049210369587, + -0.00905128289014101, + -0.004311858210712671, + 0.0700777992606163, + 0.010170895606279373, + -0.020816097036004066, + -0.061468686908483505, + -0.04747173562645912, + 0.03462548181414604, + -0.013507210649549961, + -0.038054198026657104, + -0.03397798165678978, + 0.06021963432431221, + -0.05611558258533478, + -0.05074961110949516, + -0.03842204064130783, + -0.0266097579151392, + -0.034715160727500916, + -0.10910026729106903, + -0.004033503122627735, + -0.021451197564601898, + -0.032410990446805954, + 0.015949919819831848, + -0.008846706710755825, + 0.015192382037639618, + 0.03401694446802139, + 0.0608430877327919, + 0.036265935748815536, + 0.04675925523042679, + 0.05531545728445053, + 0.010788359679281712, + -0.07909997552633286, + 0.018417978659272194, + -0.0023426993284374475, + -0.017212113365530968, + 0.02402428537607193, + -0.023247776553034782, + 0.0010447526583448052, + -0.06127902492880821, + -0.003264322644099593, + -0.02998216077685356, + -0.08142569661140442, + -0.03554626926779747, + -0.01641964167356491, + -0.014917036518454552, + 0.09269483387470245, + 0.03548119217157364, + -0.04650992527604103, + -0.05828458443284035, + 0.01922680251300335, + -0.007440388202667236, + -0.0006857913103885949, + -0.02327010966837406, + 0.04041231423616409, + -2.4879011000787393e-33, + -0.05037335678935051, + -0.004508274607360363, + 0.01741698384284973, + 0.0705447569489479, + 0.06753823906183243, + -0.0412190742790699, + -0.06260104477405548, + -0.04638306796550751, + -0.018480563536286354, + 0.027839429676532745, + -0.028986938297748566, + 0.08549891412258148, + 0.019654272124171257, + 0.03484266623854637, + 0.029737137258052826, + 0.012563063763082027, + -0.001475825789384544, + -0.046439316123723984, + -0.05825415253639221, + -0.02875945344567299, + -0.02149568311870098, + 0.08188548684120178, + 0.02721133828163147, + -0.037460699677467346, + -0.021888120099902153, + -0.06389887630939484, + -0.00407966086640954, + 0.009814413264393806, + 0.05202625319361687, + 0.06925233453512192, + -0.05101800337433815, + 0.09276075661182404, + 0.0505543053150177, + 0.035425055772066116, + -0.05085114762187004, + 0.04431014880537987, + -0.09833508729934692, + -0.0847030058503151, + -0.07191601395606995, + -0.06121231988072395, + 0.019180409610271454, + -0.008595592342317104, + -0.1237490177154541, + 0.06376518309116364, + 0.020182544365525246, + 0.08953988552093506, + 0.03118097595870495, + -0.06036306545138359, + 0.03656160831451416, + 0.018828151747584343, + -0.07026447355747223, + -0.015046832151710987, + -0.07897099107503891, + -0.07891354709863663, + -0.016662416979670525, + 0.011127909645438194, + 0.02490317076444626, + 0.093021459877491, + 0.015747984871268272, + 0.016025150194764137, + -0.009991898201406002, + 0.0743657574057579, + 0.07610581815242767, + -0.01345219835639, + 0.04837318882346153, + 0.018322838470339775, + -0.02984488196671009, + 0.06869781762361526, + 0.07002995163202286, + -0.021688276901841164, + 0.018386537209153175, + 0.01504102535545826, + 0.04318156838417053, + 0.041683781892061234, + 0.08112981915473938, + 0.06227604299783707, + -0.0519975908100605, + 0.02535485476255417, + -0.01460790541023016, + -0.05119825899600983, + -0.18018902838230133, + 0.017141399905085564, + -0.08667508512735367, + 0.09811238944530487, + 0.12433876097202301, + 0.06948596984148026, + -0.032677821815013885, + -0.07671642303466797, + 0.014830272644758224, + 0.0034798949491232634, + -0.12496747076511383, + 0.01709343120455742, + -0.03391757979989052, + 0.0005820936639793217, + -0.10832300782203674, + -9.173470670095782e-34, + -0.012596447952091694, + 0.004548406228423119, + -0.04838763177394867, + -0.000695887953042984, + -0.00181723409332335, + 0.0699094757437706, + -0.02894933894276619, + 0.01939205639064312, + -0.03101583756506443, + 0.03400157764554024, + -0.07150108367204666, + -0.05978778377175331, + 0.007693588268011808, + -0.01161986868828535, + 0.07036367058753967, + -0.0308721624314785, + 0.13971494138240814, + 0.01836453378200531, + -0.015620674937963486, + 0.07220662385225296, + -0.03757373243570328, + -0.006293257232755423, + -0.08634199947118759, + 0.03738013654947281, + -0.002345280023291707, + 0.009914244525134563, + -0.03128940984606743, + -0.008248689584434032, + -0.08225680887699127, + -0.02701321430504322, + -0.09586033225059509, + -0.024561652913689613, + 0.0903773084282875, + 0.07444605976343155, + -0.0713048130273819, + 0.038933224976062775, + 0.042325377464294434, + -0.04506595432758331, + 0.01470387727022171, + -0.041265763342380524, + 0.014252936467528343, + -0.02213108353316784, + 0.03240857645869255, + 0.06261864304542542, + -0.005298227537423372, + -0.06897471100091934, + -0.11967755109071732, + -0.09302043169736862, + -0.010567956604063511, + 0.03087390400469303, + 0.0536947138607502, + 0.0020318394526839256, + -0.024936068803071976, + 0.047147657722234726, + 0.0003250263398513198, + 0.04382835328578949, + 0.07346239686012268, + 0.0718952938914299, + 0.011944802477955818, + 0.03518009930849075, + -0.040752701461315155, + 0.007314519491046667, + -0.015876641497015953, + 0.0803477093577385, + 0.019083239138126373, + -0.10335499048233032, + -0.005253630690276623, + -0.03003130666911602, + 0.015904152765870094, + -0.055878181010484695, + 0.1038595661520958, + 0.024728404358029366, + -0.002054894808679819, + 0.020457571372389793, + -0.05209863558411598, + -0.055838946253061295, + 0.11268393695354462, + 0.015407469123601913, + -0.015895357355475426, + 0.023695308715105057, + -0.057992201298475266, + -0.06574892997741699, + -0.0347062423825264, + 0.08743786066770554, + -0.009681853465735912, + 0.04778192937374115, + -0.03359179571270943, + -0.02159254625439644, + 0.01932254619896412, + 0.040017690509557724, + 0.07451044768095016, + 0.027820151299238205, + -0.049843352288007736, + -0.03921469673514366, + -0.08889718353748322, + -2.427425016549023e-08, + 0.022956276312470436, + 0.0008521614945493639, + -0.08078116923570633, + 0.01226813904941082, + 0.0024081673473119736, + -0.022174419835209846, + 0.0008990753558464348, + 0.032591354101896286, + -0.15667586028575897, + 0.07935941964387894, + 0.06046025827527046, + 0.01759319193661213, + -0.03600218892097473, + 0.006927265785634518, + 0.030238039791584015, + 0.0322912223637104, + 0.002027652459219098, + 0.059897422790527344, + -0.06243450567126274, + -0.04828636348247528, + -0.06332748383283615, + 0.03402182087302208, + 0.07051155716180801, + 0.03195061907172203, + 0.06704230606555939, + 0.003289432032033801, + -0.016580229625105858, + -0.014139886945486069, + 0.07665818929672241, + -0.09683356434106827, + -0.02517022006213665, + 0.12455056607723236, + 0.01266282144933939, + -0.02106337994337082, + -0.07356751710176468, + -0.05923787131905556, + 0.0001959216024260968, + 0.05083703249692917, + -0.039899833500385284, + 0.05714619532227516, + 0.024564553052186966, + -0.008605459704995155, + -0.0019494041334837675, + -0.027751261368393898, + 0.043429914861917496, + 0.03394153341650963, + 0.01086669322103262, + -0.000329922535456717, + -0.044228117913007736, + -0.11247823387384415, + -0.05706050992012024, + 0.013397539034485817, + 0.012673267163336277, + 0.08031242340803146, + -0.0057172877714037895, + -0.04402686655521393, + -0.05256851390004158, + 0.012146414257586002, + -0.00467392522841692, + -0.0005571565707214177, + 0.09356717765331268, + 0.0855497270822525, + -0.000766460201703012, + -0.00625767232850194 + ], + "vault-bold||safe,bank,security,secured,authentication,authenticated,locked,encrypted,encryption": [ + 0.019215067848563194, + 0.01579698547720909, + -0.11015106737613678, + -0.0216437466442585, + -0.0012486400082707405, + -0.022143889218568802, + 0.06722767651081085, + -0.022292548790574074, + 0.04055357724428177, + -0.05294690281152725, + 0.009814186953008175, + 0.02588985674083233, + 0.07847394049167633, + -0.017035651952028275, + -0.007097778841853142, + 0.00922403484582901, + -0.01089773140847683, + 0.03536209464073181, + -0.031923580914735794, + 0.01981912925839424, + -0.033936262130737305, + -0.007064214441925287, + 0.018428297713398933, + 0.035716887563467026, + 0.006908630020916462, + -0.008224145509302616, + 0.0006414640811271966, + 0.0043519772589206696, + -0.024381019175052643, + -0.061112262308597565, + -0.028144583106040955, + -0.03107890486717224, + 0.06954321265220642, + 0.05090165510773659, + 0.028044672682881355, + 0.00322755821980536, + 0.02472575381398201, + 0.026840146631002426, + -0.03718780726194382, + -0.044961169362068176, + -0.07154251635074615, + -0.14170624315738678, + -0.058608099818229675, + 0.06804704666137695, + -0.012832311913371086, + -0.0032794566359370947, + -0.035013675689697266, + 0.010730606503784657, + -0.04899710416793823, + 0.010731822811067104, + 0.0318928100168705, + -0.052026502788066864, + -0.10453861951828003, + 0.11087606847286224, + -0.07608157396316528, + 0.02509380131959915, + -0.06175287067890167, + -0.001225734711624682, + 0.023966794833540916, + -0.05098511651158333, + 0.06377646327018738, + 0.09443433582782745, + -0.003253250615671277, + 0.08828210085630417, + 0.026115458458662033, + 0.05912157893180847, + 0.0077440631575882435, + 0.013351010158658028, + 0.016756514087319374, + -0.027978835627436638, + 0.0014429222792387009, + -0.06886235624551773, + -0.04931170120835304, + -0.02213135175406933, + -0.026416532695293427, + 0.027604861184954643, + 0.006340169347822666, + -0.033193785697221756, + -0.011463153176009655, + -0.03731679171323776, + 0.01750948838889599, + -0.044195257127285004, + -0.047921355813741684, + -0.00272951927036047, + -0.011135428212583065, + 0.09831320494413376, + -0.06958236545324326, + -0.06922580301761627, + 0.017692795023322105, + -0.06241760402917862, + -0.009743582457304, + -0.010435131378471851, + 0.051084719598293304, + -0.046192750334739685, + -0.004240402020514011, + -0.03009461984038353, + 0.004611835815012455, + -0.04490095004439354, + -0.07370417565107346, + 0.029472660273313522, + -0.016470350325107574, + 0.03483358025550842, + 0.04456668347120285, + -0.01767565682530403, + 0.054934531450271606, + 0.005406158044934273, + 0.02821720391511917, + -0.024253275245428085, + 0.003038538619875908, + 0.050763484090566635, + -0.02768782153725624, + -0.04691731929779053, + -0.004355169367045164, + -0.04011483117938042, + 0.013542822562158108, + 0.0322301872074604, + -0.16361233592033386, + 0.020100247114896774, + 0.0693979486823082, + 0.0739532858133316, + 0.05793754756450653, + 0.03852685168385506, + 0.05693577229976654, + -0.06343796104192734, + -0.07432129979133606, + -0.07389944046735764, + 0.00595050398260355, + -1.686561458335401e-33, + -0.005204401910305023, + 0.0542403906583786, + -0.04437445104122162, + 0.06745443493127823, + 0.014578481204807758, + 0.01045722421258688, + -0.020609328523278236, + -0.08667974174022675, + -0.09576327353715897, + 0.09235559403896332, + 0.05234432592988014, + 0.01454373262822628, + 0.0047658756375312805, + 0.0539371520280838, + 0.08968385308980942, + 0.04412112757563591, + -0.02289283461868763, + 0.009458483196794987, + 0.06130366027355194, + 0.014004115015268326, + 0.01647176593542099, + 0.14950354397296906, + 0.02104562148451805, + 0.019411347806453705, + 0.07893262058496475, + -0.10618912428617477, + 0.026870062574744225, + -0.019383475184440613, + -0.021025151014328003, + 0.017175773158669472, + -0.009811307303607464, + 0.01004251278936863, + 0.05408859625458717, + -0.022003021091222763, + 0.03284338116645813, + 0.012079117819666862, + 0.032071661204099655, + -0.08296940475702286, + 0.015563132241368294, + -0.055111490190029144, + -0.053257960826158524, + -0.06191585585474968, + 0.002149618463590741, + -0.010985298082232475, + 0.06482063233852386, + 0.049111027270555496, + -0.0305279903113842, + 0.003080000402405858, + -0.004199981689453125, + 0.028503717854619026, + -0.08998169004917145, + 0.011231319978833199, + -0.09115765243768692, + -0.06306156516075134, + -0.06674182415008545, + -0.08831598609685898, + -0.011498742736876011, + 0.07739673554897308, + -0.058905843645334244, + 0.032134898006916046, + -0.04325383901596069, + 0.01097507681697607, + 0.003382140537723899, + -0.10425589978694916, + -0.07489582151174545, + -0.0257000420242548, + -0.05978032201528549, + -0.017667438834905624, + 0.06587713211774826, + 0.0669204518198967, + -0.09519872069358826, + 0.0667465329170227, + 0.04875228554010391, + 0.05678324028849602, + -0.013457429595291615, + -0.03488943725824356, + 0.028345035389065742, + 0.05017706751823425, + 0.02231767401099205, + -0.017952006310224533, + -0.05495786294341087, + 0.003738029859960079, + -0.06607644259929657, + 0.16893605887889862, + -0.03371342271566391, + 0.09096452593803406, + 0.006649300456047058, + -0.04165937379002571, + -0.04277147725224495, + -0.015414112247526646, + -0.007610077038407326, + 0.015087902545928955, + 0.0774487853050232, + -0.02613787353038788, + -0.067811019718647, + -1.3176439439313497e-33, + 0.028631852939724922, + -0.07957113534212112, + -0.04372190311551094, + 0.08822721987962723, + 0.003951206803321838, + 0.03382033482193947, + -0.044442128390073776, + -0.005948238540440798, + -0.025919711217284203, + -0.012628745287656784, + -0.004360263701528311, + 0.02408423274755478, + 0.02200442925095558, + -0.05192754790186882, + 0.046559713780879974, + -0.035793550312519073, + 0.016987526789307594, + -0.02586168237030506, + 0.008730815723538399, + 0.07697446644306183, + 0.010446762666106224, + -0.031059840694069862, + -0.07173062115907669, + 0.09281785041093826, + 0.03582911565899849, + 0.024421045556664467, + -0.04121067747473717, + -0.013450686819851398, + 0.02882365696132183, + 0.021395474672317505, + 0.0015224302187561989, + 0.0238623209297657, + 0.05555135756731033, + 0.03916282579302788, + -0.10665254294872284, + -0.05529787018895149, + 0.12194313853979111, + -0.07715361565351486, + -0.04610813036561012, + -0.07136114686727524, + 0.024601832032203674, + -0.004138200543820858, + -0.03401445224881172, + -0.015398786403238773, + -0.039096731692552567, + -0.006884316448122263, + 0.005822822917252779, + -0.026196017861366272, + -0.0197173859924078, + -0.010060278698801994, + 0.057440999895334244, + -0.06700965762138367, + -0.03463555872440338, + 0.018831059336662292, + 0.004914276301860809, + 0.023614514619112015, + 0.014543152414262295, + -0.001709609292447567, + 0.05897083133459091, + 0.0360872782766819, + 0.04931657388806343, + 0.07648921757936478, + 0.03096369095146656, + 0.08684145659208298, + -0.005538318771868944, + -0.036208972334861755, + -0.014288007281720638, + 0.06662670522928238, + -0.1592576801776886, + 0.004024227615445852, + 0.06349418312311172, + -0.07583606243133545, + 0.04137444496154785, + 0.02295665070414543, + 0.03290204331278801, + -0.09897922724485397, + 0.006649464834481478, + -0.0996716246008873, + -0.024176476523280144, + 0.014286618679761887, + 0.0037797086406499147, + 0.013487518765032291, + -0.09713076055049896, + 0.08473236113786697, + 0.03583681210875511, + -0.01779933273792267, + 0.032463330775499344, + -0.02215741015970707, + 0.00034488909295760095, + -0.03981513902544975, + -0.04302676022052765, + 0.018314575776457787, + -0.05812331289052963, + 0.024620870128273964, + 0.04341146722435951, + -2.2964666612779183e-08, + 0.03426803648471832, + -0.015892261639237404, + -0.04543064534664154, + -0.05285614728927612, + 0.0594516396522522, + -0.039364252239465714, + -0.006795490626245737, + -0.022253310307860374, + -0.014382777735590935, + -0.05152278393507004, + 0.06041103973984718, + 0.0029181819409132004, + -0.12682504951953888, + -0.05426175892353058, + -0.0202773530036211, + 0.038195058703422546, + -0.0824979692697525, + -0.01909487135708332, + 0.00045692434650845826, + -0.04232903569936752, + 0.010432074777781963, + 0.03229815512895584, + -0.008619328029453754, + -0.0828261598944664, + 0.03356173634529114, + 0.06713040173053741, + 0.0014866316923871636, + 0.06625036150217056, + 0.10519443452358246, + 0.06273786723613739, + -0.0029589177574962378, + -0.025053218007087708, + 0.06127273663878441, + -0.0523814931511879, + -0.10495536774396896, + 0.08782202005386353, + 0.014298398979008198, + -0.013028950430452824, + 0.04323301836848259, + 0.0680897906422615, + 0.019959494471549988, + -0.06983669102191925, + 0.015828626230359077, + -0.013981529511511326, + -0.05070779472589493, + -0.023902010172605515, + 0.03547710180282593, + 0.026449376717209816, + 0.016492780297994614, + -0.06688129156827927, + -0.040201157331466675, + -0.059516631066799164, + 0.06386391073465347, + 0.08463744074106216, + 0.03541461005806923, + 0.0012084615882486105, + 0.016130035743117332, + 0.0206630676984787, + 0.11996419727802277, + 0.012669121846556664, + 0.1380515992641449, + -0.01909368485212326, + 0.05515473708510399, + -0.006920696701854467 + ], + "vector-three-bold||*new*,3d,xyz,cartesian,coordinates,plane,volume,dimensions,mathematics": [ + -0.001176244462840259, + -0.036597225815057755, + -0.05331423878669739, + -0.023713624104857445, + -0.014631425961852074, + -0.06781964004039764, + 0.025809267535805702, + -0.038531284779310226, + -0.05806536227464676, + 0.020293064415454865, + -0.02443770132958889, + 0.014146925881505013, + 0.02105253003537655, + 0.014563599601387978, + -0.027553599327802658, + 0.02188519574701786, + -0.07698141038417816, + 0.03907333314418793, + -0.038264404982328415, + 0.08055490255355835, + 0.020566558465361595, + 0.0436885729432106, + 0.04642574489116669, + 0.0412139892578125, + 0.09123572707176208, + 0.047382842749357224, + 0.1419762820005417, + 0.017453501001000404, + 0.0009677816415205598, + -0.04248298704624176, + 0.008303234353661537, + 0.020374227315187454, + 0.08781574666500092, + 0.015368935652077198, + -0.019724352285265923, + -0.009897955693304539, + -0.0028996809851378202, + 0.017553802579641342, + -0.045299798250198364, + 0.1342078149318695, + 0.017499765381217003, + 0.023831065744161606, + 0.035074856132268906, + 0.07005660235881805, + -0.021877825260162354, + 0.022212019190192223, + -0.10407916456460953, + -0.0393037274479866, + 0.058148279786109924, + -0.06764626502990723, + -0.0557163767516613, + -0.14038589596748352, + -0.1319281905889511, + 0.01610942743718624, + -0.002039103303104639, + 0.007044170051813126, + -0.044143471866846085, + 0.023505330085754395, + 0.03163927048444748, + -0.1177622601389885, + 0.04292606934905052, + 0.01909543015062809, + 0.054258525371551514, + 0.03293101117014885, + 0.10176244378089905, + 0.033744871616363525, + -0.05502069368958473, + 0.011255958117544651, + -0.07765214145183563, + 0.05708586424589157, + -0.05323878675699234, + 0.025874780490994453, + -0.08747180551290512, + -0.04101216420531273, + -0.01453483384102583, + 0.00478168111294508, + 0.050245992839336395, + 0.01326299924403429, + -0.061216771602630615, + -0.02826628088951111, + -0.04089949280023575, + -0.0015942296013236046, + -0.1286367028951645, + 0.08184250444173813, + -0.015224803239107132, + 0.07781356573104858, + -0.11071866005659103, + -0.04899103567004204, + -0.01117764413356781, + -0.0438234806060791, + -0.007121711038053036, + -0.006132911425083876, + -0.04124229773879051, + 0.03669199347496033, + -0.025512399151921272, + 0.047831084579229355, + 0.08335142582654953, + -0.062399957329034805, + 0.060637570917606354, + 0.045499466359615326, + 0.1020084023475647, + -0.038426369428634644, + 0.02053096890449524, + 0.06890856474637985, + -0.018765384331345558, + 0.024054886773228645, + 0.05487528070807457, + -0.02501259744167328, + 0.006442042998969555, + 0.01592244952917099, + -0.022506318986415863, + -0.05595182254910469, + -0.03807736188173294, + -0.0834500789642334, + -0.0291887316852808, + 0.028399962931871414, + -0.03739658743143082, + 0.037057798355817795, + 0.12695465981960297, + 0.03498559445142746, + 0.031707290560007095, + 0.010093079879879951, + 0.01060178317129612, + -0.03556298464536667, + -0.06281381100416183, + 0.042261719703674316, + -0.02139505371451378, + -4.649053525208261e-34, + -0.07185200601816177, + 0.05836823955178261, + -0.01158915739506483, + 0.1342596858739853, + 0.004395516123622656, + 0.022258508950471878, + 0.00025806803023442626, + -0.007001886609941721, + -0.001852218760177493, + 0.05631523206830025, + -0.02665797434747219, + 0.10865908861160278, + 0.0485328733921051, + 0.0671779066324234, + 0.015620092861354351, + -0.017423275858163834, + 0.07350317388772964, + 0.004529528319835663, + -0.05406968295574188, + 0.0025058859027922153, + 0.023695465177297592, + -0.0008494850480929017, + -0.02640637196600437, + -0.03437913581728935, + -0.05179308354854584, + -0.056634701788425446, + 0.007383570075035095, + -0.01564789190888405, + -0.088836669921875, + -0.019181789830327034, + 0.0340409055352211, + 0.038024622946977615, + -0.01581082120537758, + 0.013312947936356068, + -0.012384437024593353, + -0.004924006760120392, + -0.04749264568090439, + -0.04284033924341202, + 0.01448491495102644, + -0.06380070000886917, + -0.07965578138828278, + -0.03331727534532547, + 0.04100944846868515, + -0.0027283215895295143, + -0.006006342358887196, + 0.168943390250206, + -6.330610631266609e-05, + -0.04754054546356201, + 0.060809604823589325, + 0.02483772486448288, + -0.049531273543834686, + 0.018905997276306152, + 0.0010372953256592155, + -0.025002537295222282, + 0.006012050434947014, + 0.004048299044370651, + -0.06457977741956711, + 0.07448969036340714, + 0.018775945529341698, + -0.04434790089726448, + -0.014697491191327572, + 0.06960933655500412, + 0.06265267729759216, + -0.03617314621806145, + -0.06281721591949463, + 0.0019605921115726233, + -0.09711930900812149, + -0.003247107844799757, + 0.10581811517477036, + 0.0731537789106369, + -0.02964099869132042, + 0.06346508860588074, + -0.032859254628419876, + 0.008341336622834206, + 0.022935474291443825, + 0.051543254405260086, + -0.001168890856206417, + -0.07686039060354233, + 0.05650515854358673, + -0.06993471831083298, + -0.07668507099151611, + -0.028480233624577522, + -0.04927963763475418, + 0.0049756052903831005, + -0.015547617338597775, + -0.028642259538173676, + 0.004687594715505838, + -0.05734800174832344, + 0.0404275506734848, + 0.027003468945622444, + -0.16545464098453522, + -0.03516910597681999, + -0.01923077553510666, + -0.09061364829540253, + -0.08869626373052597, + -2.0116003400171488e-33, + -0.03981657326221466, + 0.015314916148781776, + -0.0741070881485939, + -0.0412164144217968, + -0.04710271582007408, + 0.0070870667695999146, + -0.016714446246623993, + 0.022091349586844444, + -0.02850976027548313, + -0.007088954094797373, + 0.04668038338422775, + 0.002746269339695573, + -0.004789912141859531, + -0.08000119030475616, + 0.04636136814951897, + 0.048268504440784454, + -0.043759867548942566, + -0.045942507684230804, + -0.050332896411418915, + -0.019114267081022263, + -0.015161600895226002, + 0.01003278885036707, + -0.07870951294898987, + 0.011059863492846489, + -0.0567290298640728, + 0.012526857666671276, + 0.04461583495140076, + -0.08169016987085342, + -0.05056149512529373, + 0.04316732659935951, + -0.003684503957629204, + -0.04686557874083519, + 0.05323036015033722, + 0.12374086678028107, + -0.0892959013581276, + 0.01760741136968136, + 0.10752853751182556, + -0.044437166303396225, + -0.006375567521899939, + -0.06470506638288498, + -0.002658330136910081, + 0.013568050228059292, + 0.0757819265127182, + 0.02038407325744629, + -0.02880864590406418, + 0.04698585718870163, + 0.03433288633823395, + -0.0070632100105285645, + 0.007363005541265011, + 0.0968543291091919, + -0.013137181289494038, + -0.03964698314666748, + 0.0634065717458725, + 0.01666267216205597, + 0.02772107720375061, + -0.014417732134461403, + -0.018766658380627632, + -0.05894793942570686, + 0.05990564823150635, + 0.031627606600522995, + -0.011216472834348679, + 0.003203541971743107, + 0.010632980614900589, + 0.029952945187687874, + -0.03011554479598999, + -0.0985514298081398, + -0.003534060437232256, + -0.010901588946580887, + 0.016237156465649605, + 0.008243505842983723, + 0.026641663163900375, + 0.05823935940861702, + 0.007903355173766613, + -0.013413509353995323, + -0.05808914452791214, + -0.04470302164554596, + 0.03186650946736336, + 0.03445626422762871, + -0.05315666273236275, + -0.003516031662002206, + 0.06959258019924164, + -0.0010722181759774685, + 0.01595611684024334, + 0.11582938581705093, + -0.03499290719628334, + 0.044786237180233, + 0.03761924058198929, + -0.010022146627306938, + -0.007301449775695801, + -0.031039124354720116, + -0.05032001808285713, + 0.0820557177066803, + -0.043946169316768646, + 0.017047129571437836, + 0.0024013409856706858, + -2.340978433323926e-08, + -0.013944569043815136, + -0.017752842977643013, + -0.05100429803133011, + -0.04938012734055519, + 0.0019893955904990435, + -0.04774339124560356, + -0.011804946698248386, + -0.021648848429322243, + -0.08057072013616562, + 0.027726098895072937, + 0.04425974562764168, + -0.03926806151866913, + -0.06109509617090225, + 0.01141667552292347, + 0.04295261204242706, + 0.02272133342921734, + -0.006137646269053221, + 0.009008282795548439, + -0.005862502846866846, + -0.048144880682229996, + 0.004310205113142729, + 0.10174013674259186, + 0.07195452600717545, + 0.014493840746581554, + 0.0929410308599472, + 0.054330453276634216, + -0.015324659645557404, + -0.019056210294365883, + 0.09384745359420776, + 0.017814770340919495, + 0.04644586145877838, + 0.05244060233235359, + 0.03653635457158089, + -0.007022209465503693, + -0.06784498691558838, + -0.01987871713936329, + -0.05950525030493736, + 0.001103417482227087, + -0.015807654708623886, + 0.06305188685655594, + -0.09434188902378082, + 0.052525367587804794, + 0.021782850846648216, + -0.023794105276465416, + 0.06939157843589783, + 0.02459382452070713, + 0.0027704592794179916, + -0.02638118900358677, + -0.0724579393863678, + -0.07687409222126007, + -0.0739639475941658, + 0.029383711516857147, + -0.005219581536948681, + 0.11590509116649628, + 0.016198134049773216, + -0.027851924300193787, + -0.06652392446994781, + 0.08533786237239838, + -0.030598454177379608, + -0.019503477960824966, + 0.06042839214205742, + 0.042211275547742844, + -0.025729337707161903, + -0.01715404912829399 + ], + "vector-two-bold||*new*,2d,xy,cartesian,coordinates,plane,dimensions,mathematics": [ + 0.02170654945075512, + -0.04445752128958702, + -0.02182420901954174, + -0.005837319418787956, + 0.010752517729997635, + -0.08354038745164871, + 0.005610508378595114, + -0.042253732681274414, + -0.0783083587884903, + 0.007406589109450579, + 0.02827860787510872, + 0.037795789539813995, + 0.017351625487208366, + -0.007309549022465944, + -0.018895428627729416, + 0.06824883073568344, + -0.07213516533374786, + 0.0020103256683796644, + -0.0010538335191085935, + 0.06637215614318848, + 0.03238098695874214, + 0.020817195996642113, + 0.0255459975451231, + 0.006293528247624636, + 0.07760107517242432, + 0.051752038300037384, + 0.15484179556369781, + 0.01892366260290146, + -0.0005380187649279833, + -0.029050474986433983, + 0.022785384207963943, + 0.023291276767849922, + 0.05722735449671745, + 0.04118707403540611, + -0.0432702973484993, + -0.00804420467466116, + 0.06918156892061234, + 0.051481980830430984, + -0.012129498645663261, + 0.07961762696504593, + 0.033118005841970444, + 0.0011972303036600351, + 0.03393852338194847, + 0.08427197486162186, + -0.030150527134537697, + 0.01233252976089716, + -0.05175986513495445, + -0.028315534815192223, + 0.06101985648274422, + -0.06374625861644745, + -0.056313563138246536, + -0.11616276949644089, + -0.1474839299917221, + -0.01717575080692768, + 0.03225519508123398, + 0.03193254768848419, + -0.06118049845099449, + 0.021461335942149162, + 0.04093120992183685, + -0.1273251324892044, + 0.059777162969112396, + 0.01735924929380417, + 0.0687440037727356, + 0.04282963275909424, + 0.06535518914461136, + -0.002210161415860057, + -0.0439731739461422, + 0.03343329206109047, + -0.05827339366078377, + 0.040471285581588745, + -0.05547668784856796, + 0.02749086543917656, + -0.06687811762094498, + -0.0330527126789093, + -0.025563698261976242, + -0.024095579981803894, + 0.03257184475660324, + 0.026001255959272385, + -0.028751762583851814, + -0.033477455377578735, + -0.050582997500896454, + -0.029292402788996696, + -0.0939893051981926, + 0.051648739725351334, + 0.0038163959980010986, + 0.08434554934501648, + -0.07981780171394348, + -0.07918895035982132, + 0.003415796672925353, + -0.05043477192521095, + 0.025638515129685402, + -0.0051321424543857574, + -0.0017437711358070374, + 0.0505087710916996, + -0.030652061104774475, + 0.03551045060157776, + 0.08143579959869385, + -0.0208943672478199, + 0.024623926728963852, + 0.04849392920732498, + 0.08156391978263855, + -0.0602991059422493, + -0.0015722541138529778, + 0.07009559124708176, + -0.017185289412736893, + -0.006661552470177412, + 0.049236275255680084, + -0.05286012217402458, + 0.050600502640008926, + -0.024598198011517525, + 0.0007812020485289395, + -0.04717337340116501, + -0.04102718457579613, + -0.05210405960679054, + -0.015478461980819702, + 0.02857203036546707, + -0.04307306557893753, + 0.08261998742818832, + 0.1368764191865921, + 0.015829266980290413, + 0.017307650297880173, + 0.013465071097016335, + 0.011654634959995747, + -0.02822333388030529, + -0.08027094602584839, + 0.01715928316116333, + -0.027647001668810844, + -7.119155161257155e-34, + -0.0474516823887825, + 0.09547913819551468, + -0.009021297097206116, + 0.1407870650291443, + -0.004880983382463455, + 0.005574648734182119, + -0.021902093663811684, + -0.0150914266705513, + 0.009481141343712807, + 0.07446031272411346, + -0.019720423966646194, + 0.07001949101686478, + 0.04508203640580177, + 0.09851055592298508, + 0.07046322524547577, + -0.028886578977108, + 0.1058354303240776, + -0.02448049746453762, + -0.004910278134047985, + 0.011041143909096718, + -0.012145495042204857, + 0.03947244957089424, + -0.02451016753911972, + -0.03021332249045372, + -0.06631514430046082, + -0.08118733018636703, + 0.008203794248402119, + -0.021360432729125023, + -0.10936093330383301, + -0.005555017851293087, + -0.01904156431555748, + 0.023003268986940384, + 0.004051302559673786, + 0.05718225985765457, + -0.035502295941114426, + -0.03225716948509216, + -0.03951677307486534, + -0.04206620901823044, + 0.02700263448059559, + -0.07077383249998093, + -0.07688325643539429, + 0.0015784802380949259, + 0.0244819987565279, + -0.010022145695984364, + -0.004188211634755135, + 0.1277460902929306, + -0.01650659367442131, + -0.025125261396169662, + 0.05056441202759743, + 0.03247811272740364, + -0.12138013541698456, + 0.021192526444792747, + 0.019060470163822174, + 0.0032535307109355927, + 0.015189440920948982, + 0.008494710549712181, + -0.020678609609603882, + 0.06118585914373398, + 0.022740548476576805, + -0.03844132646918297, + -0.03254755213856697, + 0.06830109655857086, + 0.06340362876653671, + -0.06376484781503677, + -0.07302547246217728, + -0.0029483286198228598, + -0.09225219488143921, + -0.02810305543243885, + 0.08849737793207169, + 0.06839872151613235, + -0.004032663535326719, + 0.06981465965509415, + -0.014635481871664524, + -0.01147693581879139, + 0.04763653874397278, + 0.03754834830760956, + 0.021525735035538673, + -0.08443521708250046, + 0.06580272316932678, + -0.06147041544318199, + -0.07411306351423264, + -0.008191847242414951, + -0.06971091032028198, + 0.0022854176349937916, + -0.019061734899878502, + -0.03049417771399021, + -0.005540685262531042, + -0.04299585148692131, + 0.020452160388231277, + 0.08475713431835175, + -0.20330727100372314, + -0.03009977750480175, + -0.0763569176197052, + -0.09348627924919128, + -0.04601430147886276, + -2.331447026417116e-33, + -0.06926204264163971, + 0.03523159399628639, + -0.07051529735326767, + -0.04708464443683624, + -0.06579868495464325, + -0.018298886716365814, + -0.000679460063111037, + 0.005423885770142078, + -0.014080879278481007, + 0.004985538776963949, + 0.03845018893480301, + -0.015815913677215576, + -0.0027493166271597147, + -0.0562589094042778, + 0.058276109397411346, + 0.045523788779973984, + -0.04041950777173042, + 0.002931999508291483, + -0.06661197543144226, + -0.06329686939716339, + -0.008410991169512272, + 0.03411995992064476, + -0.044626593589782715, + 0.0039976914413273335, + -0.026753563433885574, + 0.015129340812563896, + 0.05925384908914566, + -0.04701411351561546, + -0.07511772960424423, + 0.02850598283112049, + -0.011427893303334713, + -0.030913328751921654, + 0.05487791448831558, + 0.13246649503707886, + -0.08067941665649414, + 0.01727321185171604, + 0.07713757455348969, + -0.08315762132406235, + -0.019212208688259125, + -0.066581591963768, + 0.0024566182401031256, + 0.0037751230411231518, + 0.060695841908454895, + 0.04172899201512337, + -0.033719100058078766, + 0.014978455379605293, + 0.036781735718250275, + 0.010877327062189579, + -0.0012985588982701302, + 0.027636172249913216, + -0.029885239899158478, + 0.012475886382162571, + 0.03769554942846298, + 0.009873853996396065, + -0.013087480328977108, + -0.039594829082489014, + -0.03329207003116608, + -0.02225073054432869, + 0.041112083941698074, + 0.018004082143306732, + -0.01251698937267065, + -0.02300681360065937, + -0.039249468594789505, + 0.050827231258153915, + -0.017350129783153534, + -0.12929584085941315, + 0.02057419903576374, + 0.005331465974450111, + 0.01535163912922144, + -0.0026305976789444685, + 0.032514940947294235, + 0.03605825453996658, + -0.008717013522982597, + -0.003009055508300662, + -0.08133407682180405, + -0.05225900933146477, + 0.03885835036635399, + -0.007201747968792915, + -0.02816111035645008, + 0.011352194473147392, + 0.05331403762102127, + -0.01559485960751772, + 0.018323935568332672, + 0.09051573276519775, + -0.04786381497979164, + 0.05817835405468941, + 0.033084142953157425, + 0.010608323849737644, + 0.014843554235994816, + -0.049200233072042465, + -0.014423467218875885, + 0.07717742025852203, + -0.0774928629398346, + -0.0009708511061035097, + 0.009754585102200508, + -2.497069040430233e-08, + -0.06430928409099579, + -0.04266980290412903, + -0.027410496026277542, + -0.05408555641770363, + -0.011381990276277065, + -0.06031504273414612, + -0.024265199899673462, + -0.028400233015418053, + -0.0613105371594429, + 0.006305116228759289, + -0.0007195278885774314, + 0.01670907251536846, + -0.06296569108963013, + -0.01304085087031126, + 0.01152635458856821, + 0.03574327379465103, + 0.011956067755818367, + 0.016057346016168594, + -0.020355846732854843, + -0.060919731855392456, + 0.015184118412435055, + 0.05569849908351898, + 0.05600234493613243, + 0.01708195172250271, + 0.037331003695726395, + 0.011701969429850578, + 0.009065650403499603, + -0.02687881514430046, + 0.10363233089447021, + 0.039740048348903656, + 0.0424005463719368, + 0.026063956320285797, + 0.03132449835538864, + -0.034498125314712524, + -0.04302336275577545, + -0.04250018298625946, + -0.05164509639143944, + 0.012832172214984894, + -0.0027132569812238216, + 0.0741991326212883, + -0.12202924489974976, + 0.05081069841980934, + 0.02992020547389984, + 0.015202966518700123, + 0.10233358293771744, + 0.039011940360069275, + 0.029987026005983353, + -0.040061842650175095, + -0.078152596950531, + -0.10007341206073761, + -0.047167837619781494, + 0.048041701316833496, + 0.008417561650276184, + 0.0925218015909195, + -0.0347227081656456, + -0.01729360781610012, + -0.08174490183591843, + 0.1285826563835144, + -0.01793788932263851, + -0.0338287390768528, + 0.0667368695139885, + 0.062400948256254196, + -0.01121764350682497, + -0.04490330070257187 + ], + "vibrate-bold||audio,volume,viration,ringer,calls,silent,silenced": [ + -0.0047228699550032616, + -0.05748429149389267, + -0.038464609533548355, + -0.05092479661107063, + -0.06719038635492325, + -0.03267480432987213, + 0.06115005537867546, + -0.013392124325037003, + 0.013870189897716045, + -0.06372518837451935, + 0.04842330887913704, + -0.06529682129621506, + 0.003302833531051874, + -0.0543004609644413, + -0.04113310948014259, + 0.03760465979576111, + 0.15634404122829437, + 0.03501211851835251, + -0.024244338274002075, + 0.03710811957716942, + 0.05340946838259697, + 0.13923706114292145, + 0.04375511780381203, + 0.02777985669672489, + 0.0310988612473011, + 0.045758821070194244, + -0.002753389300778508, + 0.0402502715587616, + 0.03990493342280388, + -0.08212323486804962, + 0.024373944848775864, + 0.04057985916733742, + 0.12466719001531601, + -0.006762220058590174, + -0.039899297058582306, + -0.032067421823740005, + -0.03296022489666939, + -0.004584718961268663, + -0.025571590289473534, + -0.03241172432899475, + -0.03313376381993294, + -0.012290527112782001, + 0.04148321971297264, + -0.03268205747008324, + -0.053358811885118484, + -0.006622734013944864, + -0.04740743339061737, + -0.05790869891643524, + -0.008388128131628036, + -0.030340595170855522, + 0.029072558507323265, + -0.11507032811641693, + -0.02155907265841961, + 0.0806809738278389, + -0.032414861023426056, + 0.05154580995440483, + -0.015965450555086136, + -0.020772647112607956, + 0.023052632808685303, + -0.009104627184569836, + 0.010434713214635849, + 0.04543306678533554, + 0.03427721932530403, + 0.04990915209054947, + -0.006104274187237024, + 0.04081878438591957, + 0.04760882258415222, + 0.006319014355540276, + 0.022540653124451637, + 0.011883951723575592, + -0.0012040362926200032, + -0.00808700267225504, + 0.005479845684021711, + 0.008036808110773563, + -0.021073302254080772, + 0.021239103749394417, + 0.010264154523611069, + -0.05138356238603592, + -0.004286966752260923, + -0.003952492494136095, + -0.05640555918216705, + -0.13567854464054108, + -0.05673318728804588, + -0.015746435150504112, + 0.0377843901515007, + 0.026393581181764603, + 0.025642884895205498, + -0.06348973512649536, + -0.07502780854701996, + -0.011786442250013351, + -0.11166904121637344, + 0.01139917690306902, + -0.04651949182152748, + -0.01908540353178978, + -0.10205604881048203, + -0.009780875407159328, + 0.011939027346670628, + -0.08837246894836426, + 0.000988772138953209, + 0.08298756182193756, + -0.0461263582110405, + -0.05369221046566963, + 0.041176170110702515, + 0.038403283804655075, + -0.057686515152454376, + -0.03172282502055168, + -0.07290768623352051, + 0.018986212089657784, + -0.03550977632403374, + 0.030972560867667198, + -0.047045402228832245, + -0.0358600988984108, + -0.0019790648948401213, + -0.04330303147435188, + 0.06495142728090286, + 0.02668035961687565, + -0.057096682488918304, + 0.03062213957309723, + 0.13147349655628204, + -0.0045618582516908646, + 0.08342701941728592, + -0.06491098552942276, + -0.06806129217147827, + -0.07702136039733887, + 0.015566105023026466, + 0.0016876247245818377, + -0.011718879453837872, + -1.4583048836476908e-33, + 0.045153722167015076, + -0.014730430208146572, + -0.013024178333580494, + 0.08530647307634354, + 0.02045937441289425, + -0.0019834404811263084, + -0.04127603396773338, + -0.037459660321474075, + -0.015255803242325783, + 0.016107644885778427, + 0.04974232241511345, + 0.04113733395934105, + 0.059303686022758484, + -0.007545298431068659, + 0.04116864874958992, + -0.07444985955953598, + 0.04116716980934143, + -0.0013065708335489035, + -0.061359208077192307, + -0.08541228622198105, + -0.0017621148144826293, + 0.07570448517799377, + 0.015509342774748802, + 0.10055100917816162, + 0.01820814423263073, + -0.03554799407720566, + 0.0325537733733654, + -0.07159862667322159, + 0.0047114454209804535, + -0.0006230894941836596, + -0.0005934061482548714, + 0.057079166173934937, + 0.0616682767868042, + -0.016836481168866158, + 0.03560958430171013, + 0.06263265013694763, + -0.026496535167098045, + 0.01183560211211443, + -0.02531035616993904, + -0.031992457807064056, + -0.03553617745637894, + -0.057381514459848404, + -0.0957438200712204, + -0.040644265711307526, + 0.02982679195702076, + 0.02713588997721672, + -0.08241204917430878, + 0.023580633103847504, + 0.024197334423661232, + 0.05103495344519615, + 0.00985268410295248, + -0.000841030094306916, + 0.031823545694351196, + 0.05686332657933235, + 0.00986150186508894, + 0.017008008435368538, + 0.06856430321931839, + 0.037235524505376816, + -0.05464450269937515, + -0.024708043783903122, + 0.001686242874711752, + 0.01772422157227993, + 0.09143229573965073, + -0.10774748027324677, + -0.016654623672366142, + 0.03611396998167038, + -0.06839356571435928, + -0.05676192417740822, + 0.03757462278008461, + -0.011803197674453259, + 0.005655105225741863, + 0.09410027414560318, + 0.04221973195672035, + 0.04339444637298584, + -0.010936981998383999, + 0.02218806743621826, + -0.05876443162560463, + -0.065541572868824, + -0.003798284102231264, + -0.039996176958084106, + -0.04501703009009361, + 0.062226057052612305, + -0.07144683599472046, + 0.08220076560974121, + 0.047263968735933304, + -0.02878507226705551, + -0.019707420840859413, + -0.09304269403219223, + -0.03200673311948776, + 0.061658646911382675, + -0.09617410600185394, + 0.02558816410601139, + -0.02697438932955265, + -0.059142693877220154, + -0.06886251270771027, + -7.322927566149679e-34, + 0.018414245918393135, + 0.08127705752849579, + -0.02740146405994892, + 0.10676012933254242, + 0.026333658024668694, + 0.10426585376262665, + 0.03960743919014931, + 0.06285317987203598, + -0.052244577556848526, + -0.045492641627788544, + 0.07668589800596237, + -0.014593597501516342, + -0.0694568008184433, + -0.033157069236040115, + 0.003766394918784499, + 0.038792554289102554, + -0.02015758492052555, + -0.02565401792526245, + 0.05918911471962929, + 0.0783667042851448, + 0.005160515196621418, + -0.016201738268136978, + -0.029037676751613617, + 0.0876806452870369, + -0.06699677556753159, + -0.03787905350327492, + -0.023352181538939476, + -0.0022135290782898664, + -0.0007376056746579707, + -0.029192591086030006, + -0.009352613240480423, + 8.556732791475952e-05, + 0.03320924937725067, + -0.010899788700044155, + -0.00399418082088232, + 0.08393514901399612, + 0.10122890770435333, + -0.010167445056140423, + 0.023036785423755646, + -0.05871667340397835, + -0.03518248721957207, + 0.054782189428806305, + 0.03476599603891373, + -0.020436778664588928, + -0.0459829643368721, + -0.017485477030277252, + 0.012468015775084496, + -0.0015094851842150092, + -0.0780717059969902, + -0.00398516608402133, + 0.1282370388507843, + -0.023992979899048805, + 0.06123095750808716, + 0.07877466827630997, + -0.0468723401427269, + -0.0031878380104899406, + 0.046903014183044434, + -0.08374805003404617, + 0.016607223078608513, + 0.04701782017946243, + 0.026135042309761047, + 0.017672279849648476, + -0.03767724707722664, + -0.02863675355911255, + -0.019002286717295647, + 0.021338706836104393, + 0.0783962830901146, + -0.041031863540410995, + 0.07251961529254913, + -0.035652343183755875, + 0.07135528326034546, + 0.015368443913757801, + 0.058757808059453964, + 0.008559704758226871, + 0.07467779517173767, + -0.05219672620296478, + -0.06909500807523727, + -0.13868869841098785, + -0.09523820132017136, + -0.010729544796049595, + 0.042553141713142395, + 0.0008992788498289883, + 0.05333925783634186, + -0.027846360579133034, + -0.034797392785549164, + 0.009130177088081837, + 0.02521338127553463, + 0.0033932439982891083, + -0.008845834992825985, + 0.03412475064396858, + -0.018361831083893776, + 0.0738552138209343, + 0.003261093283072114, + -0.03678435832262039, + 0.018407143652439117, + -2.235039353593038e-08, + 0.02091372385621071, + -0.024218305945396423, + -0.03608162701129913, + -0.10782230645418167, + 0.05714312568306923, + -0.030232449993491173, + 0.07518772035837173, + -0.0978412851691246, + 0.028349922969937325, + -0.035929933190345764, + 0.0354432612657547, + -0.05148330330848694, + -0.025080833584070206, + 0.012054833583533764, + 0.05235742777585983, + 0.05007195472717285, + -0.058420274406671524, + 0.1194021925330162, + -0.07392332702875137, + -0.08851370960474014, + -0.012283368967473507, + 0.06553636491298676, + 0.006739109288901091, + -0.07468269765377045, + 0.07335742563009262, + 0.01315939798951149, + -0.03132925182580948, + -0.004587177187204361, + 0.03722893074154854, + 0.03948235139250755, + 0.031778037548065186, + 0.07283473014831543, + -0.009175711311399937, + -0.056187115609645844, + -0.13385052978992462, + 0.014188576489686966, + -0.061758048832416534, + -0.009299052879214287, + -0.011372373439371586, + 0.08066757023334503, + -0.0056989737786352634, + -0.016606053337454796, + -0.09929320961236954, + 0.013566127978265285, + 0.019566724076867104, + -0.03310763090848923, + 0.06450293213129044, + -0.0879054144024849, + -0.051211532205343246, + -0.017117543146014214, + -0.03101428970694542, + 0.07869265228509903, + 0.030696148052811623, + 0.06078314781188965, + -0.07591885328292847, + 0.035103000700473785, + 0.0169613528996706, + 0.09681142121553421, + -0.055054523050785065, + -0.015010652132332325, + 0.040481481701135635, + -0.024929162114858627, + 0.044301439076662064, + -0.010886148549616337 + ], + "video-bold||training,course,education,tutorial": [ + 0.01245925948023796, + -0.08997133374214172, + -0.03257957100868225, + -0.04443990811705589, + 0.08724489063024521, + 0.004831426776945591, + 0.0068596722558140755, + -0.03830414265394211, + -0.014791008085012436, + -0.030269112437963486, + 0.0014793166192248464, + 0.028374027460813522, + -0.02065899781882763, + 0.05129091814160347, + -0.05109472572803497, + -0.003827596316114068, + 0.03417998552322388, + 0.049092259258031845, + -0.018698260188102722, + -0.029699014499783516, + 0.04582677781581879, + -0.0059733944945037365, + 0.11327449977397919, + 0.01653117872774601, + 0.004392132628709078, + 0.024179497733712196, + 0.06151413917541504, + 0.05315249413251877, + 0.05178049951791763, + -0.10512629896402359, + 0.0008476582588627934, + -0.0047995285131037235, + 0.09352566301822662, + 0.05126507580280304, + -0.011619356460869312, + 0.016392868012189865, + 0.0008524679578840733, + -0.016922656446695328, + -0.09241000562906265, + 0.057411834597587585, + -0.035970378667116165, + 0.000518083747010678, + 0.034594886004924774, + -0.028195038437843323, + -0.011836167424917221, + -0.02256612852215767, + -0.018876558169722557, + -0.11404655873775482, + 0.05180277302861214, + -0.01239002589136362, + -0.12278352677822113, + -0.1424715518951416, + -0.08544053882360458, + -0.05597906932234764, + -0.04995278641581535, + 0.010840456001460552, + -0.014826968312263489, + -0.004078635014593601, + 0.06515326350927353, + -0.03678816929459572, + 0.05401165410876274, + -0.040035393089056015, + -0.00043893459951505065, + 0.05033973231911659, + 0.0370975099503994, + -0.041953250765800476, + 0.03727434203028679, + 0.08565622568130493, + 0.021843722090125084, + 0.014829475432634354, + -0.08202364295721054, + 0.0288617555052042, + -0.024365220218896866, + 0.007449849974364042, + -0.05914970487356186, + -0.036492880433797836, + 0.011739687994122505, + -0.0024300776422023773, + -0.013277932070195675, + -0.09005177021026611, + 0.025582410395145416, + -0.08846761286258698, + 0.018997792154550552, + -0.011615120805799961, + 0.04472004622220993, + 0.0356619693338871, + -0.012813261710107327, + -0.041622184216976166, + -0.04411075636744499, + 0.008564554154872894, + -0.10054704546928406, + 0.025580747053027153, + -0.038499876856803894, + 0.029518984258174896, + -0.04149423912167549, + -0.008246470242738724, + -0.0010993699543178082, + -0.1227806881070137, + -0.05833231657743454, + 0.08967140316963196, + 0.02895675040781498, + -0.05485563725233078, + 0.04841180145740509, + -0.02428968995809555, + -0.0723041370511055, + -0.029062747955322266, + 0.0182204507291317, + 0.0696328729391098, + 0.071966253221035, + 0.0032426288817077875, + 0.01568058505654335, + -0.022249609231948853, + -0.07051233947277069, + -0.053860630840063095, + 0.019856490194797516, + 0.0598444789648056, + -0.06421581655740738, + -0.012173308059573174, + 0.004825967364013195, + 0.07719361037015915, + 0.018307670950889587, + -0.03030344843864441, + -0.06001888960599899, + -0.040814053267240524, + 0.05576135590672493, + -0.0992078110575676, + 0.017545010894536972, + -2.10253492995783e-33, + 0.12913651764392853, + 0.06116485223174095, + -0.03187592700123787, + 0.1286322921514511, + 0.051504917442798615, + 0.006620669737458229, + 0.021415816619992256, + 0.02139824815094471, + -0.07996924221515656, + 0.08053360879421234, + 0.11169023811817169, + -0.004671350121498108, + -0.0550723634660244, + 0.10556536167860031, + 0.030882684513926506, + -0.05592948943376541, + -0.07143518328666687, + -0.032895028591156006, + -0.05111212655901909, + 0.06711578369140625, + -0.006768896244466305, + 0.04788074642419815, + 0.009028247557580471, + -0.030964050441980362, + -0.012343151494860649, + -0.030185600742697716, + 0.0382033996284008, + -0.009183613583445549, + 0.034069329500198364, + 0.02393735758960247, + -0.013473440892994404, + 0.01362705323845148, + -0.023483192548155785, + -0.03338534012436867, + 0.08623235672712326, + 0.013399418443441391, + -0.060184892266988754, + -0.035648733377456665, + 0.015678010880947113, + 0.00714557571336627, + -0.01671496219933033, + 0.012568439356982708, + -0.020456984639167786, + -0.06331353634595871, + -0.005886309314519167, + 0.09569035470485687, + 0.08413627743721008, + -0.015016110613942146, + -0.019727246835827827, + 0.045098911970853806, + -0.027720697224140167, + -0.027162160724401474, + -0.008970068767666817, + -0.09768696129322052, + 0.001398327643983066, + 0.07730743288993835, + 0.06576922535896301, + 0.09513883292675018, + -0.033518701791763306, + -0.08167257159948349, + 0.025561267510056496, + 0.02138170227408409, + -0.0012152179842814803, + 0.024683339521288872, + -0.07929549366235733, + -0.003271170426160097, + 0.0231174323707819, + 0.011094952002167702, + 0.13012343645095825, + -0.013240458443760872, + -0.045455798506736755, + 0.05752028897404671, + 0.03749533370137215, + -0.04651401937007904, + -0.0013214631471782923, + 0.011373729445040226, + -0.04425135627388954, + -0.019527671858668327, + 0.024495692923665047, + -0.023716920986771584, + -0.0677797868847847, + -0.011602124199271202, + 0.034695014357566833, + 0.034439630806446075, + 0.036043643951416016, + -0.0017926676664501429, + -0.004199027083814144, + -0.09427948296070099, + 0.0356396846473217, + 0.05140237882733345, + -0.0776626467704773, + -0.011731000617146492, + -0.038974255323410034, + -0.0204422976821661, + -0.009548690170049667, + 1.2547968731486053e-33, + 0.05418168380856514, + 0.12310750782489777, + -0.0301100742071867, + 0.026865817606449127, + 0.056059639900922775, + 0.06102914363145828, + 0.06149476766586304, + 0.10630076378583908, + 0.048146747052669525, + -0.029003208503127098, + -0.00933652464300394, + -0.07458242028951645, + -0.1383696049451828, + -0.02951192669570446, + -0.06089242547750473, + -0.04359585791826248, + 0.004092810675501823, + -0.019773704931139946, + -0.03861143812537193, + -0.019735395908355713, + -0.02547907643020153, + 0.02402370423078537, + 0.005773501005023718, + 0.011415505781769753, + -0.028258351609110832, + 0.01655583642423153, + 0.05506059527397156, + 0.08854959905147552, + -0.009592398069798946, + 0.0163076501339674, + 0.06233188509941101, + -0.08162994682788849, + 0.036718420684337616, + 0.04323931410908699, + -0.0855366587638855, + 0.09054159373044968, + 0.14085114002227783, + 0.0022174662444740534, + -0.0334877111017704, + 0.053902026265859604, + 0.03784199431538582, + 0.033070750534534454, + -0.0428127758204937, + -0.08245502412319183, + -0.026790400967001915, + -0.022809147834777832, + -0.03894948586821556, + -0.010408438742160797, + -0.03790736198425293, + 0.028895320370793343, + -0.015348747372627258, + -0.010898478329181671, + -0.01860634796321392, + -0.02216407097876072, + -0.010135415941476822, + -0.08825580030679703, + 0.023715045303106308, + 0.01626638136804104, + 0.034375399351119995, + 0.037908848375082016, + -0.0045255208387970924, + 0.0341513566672802, + -0.07807334512472153, + 0.014885926619172096, + 0.002045727102085948, + -0.01286279782652855, + -0.03960546851158142, + 0.01820436865091324, + 0.0030141121242195368, + 0.035838428884744644, + 0.0346292145550251, + 0.05691668018698692, + 0.03459138423204422, + 0.02161979489028454, + -0.014770086854696274, + -0.012414045631885529, + 0.024514246731996536, + 0.015417879447340965, + 0.019925802946090698, + -0.035414088517427444, + -0.006333577912300825, + -0.12258407473564148, + -0.0405353344976902, + 0.08343064039945602, + 0.06142675504088402, + 0.16724273562431335, + 0.06605483591556549, + 0.013043063692748547, + 0.0096038319170475, + -0.00041447411058470607, + -0.03985189273953438, + 0.07724253833293915, + 0.03925304114818573, + -0.03541867434978485, + -0.04816216602921486, + -1.8718189664923557e-08, + -0.07959724217653275, + -0.01819447986781597, + -0.06099497526884079, + -0.021603068336844444, + -0.02830328419804573, + -0.016913967207074165, + 0.009349513798952103, + -0.047779425978660583, + 0.006749155465513468, + -0.051915474236011505, + 0.012427407316863537, + -0.0027583413757383823, + -0.018887948244810104, + 0.019075874239206314, + 0.029422570019960403, + 0.055864013731479645, + -0.04617856815457344, + 0.0871594026684761, + -0.021837087348103523, + 0.032301224768161774, + 0.043052319437265396, + 0.009167593903839588, + 0.03910026326775551, + -0.02854175493121147, + -0.030791664496064186, + -0.0003312829649075866, + -0.019097357988357544, + 0.050564829260110855, + 0.018234413117170334, + 0.016137463971972466, + -0.00590814184397459, + 0.054903555661439896, + 0.022523978725075722, + -0.07728954404592514, + -0.0209526177495718, + -0.03444414958357811, + -0.012945926748216152, + -0.030929654836654663, + -0.01618736796081066, + 0.08583187311887741, + -0.0337480865418911, + -0.010159165598452091, + 0.0776507630944252, + -0.016455158591270447, + 0.03960035741329193, + 0.13470321893692017, + 0.006872734520584345, + -0.1102912425994873, + -0.0508401058614254, + -0.07266858965158463, + -0.06987877190113068, + -0.022907335311174393, + -0.06372365355491638, + 0.06319069862365723, + 0.04812011495232582, + 0.01290962565690279, + 0.08794142305850983, + 0.03763481602072716, + -0.09235527366399765, + 0.07130618393421173, + 0.04214072227478027, + 0.029157454147934914, + 0.0033849391620606184, + 0.007243587169796228 + ], + "video-camera-bold||videography,films,movies,recording": [ + -0.009732485748827457, + -0.0915883332490921, + -0.07179167121648788, + -0.07650132477283478, + 0.07786529511213303, + 0.002441096119582653, + 0.08064119517803192, + 0.009135293774306774, + 0.055291373282670975, + -0.042924657464027405, + 0.006278029642999172, + -0.015988020226359367, + -0.015824155882000923, + 0.04949348792433739, + -0.00031851083622314036, + -0.02362051233649254, + 0.06235529109835625, + 0.012320826761424541, + 0.012677636928856373, + 0.025028586387634277, + 0.016053706407546997, + -0.0383567176759243, + 0.10020393878221512, + 0.02718242071568966, + 0.03222623094916344, + -0.021970851346850395, + 0.04114268720149994, + 0.06797418743371964, + 0.014132984913885593, + -0.04350863769650459, + -0.0516439825296402, + 0.02952791191637516, + 0.10392586141824722, + 0.04354698956012726, + 0.022617259994149208, + -0.039902620017528534, + -0.007399610709398985, + -0.046304769814014435, + -0.09809405356645584, + 0.00573802599683404, + -0.002249595709145069, + 0.018189018592238426, + 0.05142969638109207, + 0.002120997989550233, + -0.02388944663107395, + 0.006801323499530554, + -0.0053553590551018715, + -0.025138551369309425, + -0.018191229552030563, + -0.035005465149879456, + -0.10319307446479797, + -0.026424316689372063, + -0.10556770861148834, + 0.012146281078457832, + -0.02715528942644596, + -0.024904340505599976, + -0.038684941828250885, + -0.03917431831359863, + 0.0658583715558052, + -0.025782383978366852, + 0.03497336059808731, + -0.006481051445007324, + 0.058849964290857315, + 0.077723927795887, + 0.05404944345355034, + 0.02212684415280819, + 0.07024892419576645, + 0.027032995596528053, + 0.004724525380879641, + -0.004447409883141518, + -0.08953823149204254, + 0.057190343737602234, + -0.03207843378186226, + -0.04630786553025246, + -0.06845267117023468, + -0.061028387397527695, + -0.009916779585182667, + -0.0017769573023542762, + -0.05098660662770271, + -0.13394875824451447, + 0.05377871170639992, + -0.10305245965719223, + -0.05804474279284477, + -0.010183285921812057, + 0.019160443916916847, + 0.05537277087569237, + -0.024968327954411507, + -0.04155104234814644, + -0.07617522776126862, + 0.0024010874330997467, + -0.16333886981010437, + -0.030333207920193672, + -0.0723848044872284, + -0.017909234389662743, + -0.07909927517175674, + -0.03658919781446457, + 0.027711879462003708, + -0.05178409442305565, + 0.027897214516997337, + 0.051394082605838776, + 0.03297102451324463, + -0.03194944187998772, + 0.05766671895980835, + 0.027562566101551056, + -0.012859230861067772, + -0.06206982955336571, + 0.013966073282063007, + 0.018337152898311615, + 0.03866427391767502, + 0.01428510993719101, + -0.044471971690654755, + -0.002911745570600033, + -0.03840791806578636, + -0.04618733748793602, + 0.04579891636967659, + 0.0384204164147377, + -0.06245027109980583, + 0.011141791008412838, + 0.05509096011519432, + 0.04218851402401924, + -0.012541082687675953, + -0.06464304774999619, + -0.06651386618614197, + -0.04875369369983673, + -0.017155850306153297, + -0.027158936485648155, + 0.08393313735723495, + -1.4808993544384337e-33, + 0.06553377211093903, + 0.042311057448387146, + 0.004154135473072529, + 0.09783964604139328, + -0.011856486089527607, + 0.039050132036209106, + -0.025314049795269966, + 0.04641664773225784, + -0.0444074422121048, + 0.04191194474697113, + 0.08438437432050705, + -0.004759937059134245, + -0.04082642123103142, + 0.08394092321395874, + 0.06785082817077637, + 0.05256296321749687, + -0.03812079131603241, + -0.02414381317794323, + -0.05744891241192818, + 0.025205248966813087, + -0.03580406680703163, + 0.08610659092664719, + 0.029046203941106796, + 0.04029545187950134, + -0.007795973680913448, + -0.07690688222646713, + 0.01249435730278492, + -0.013160900212824345, + -0.0025916779413819313, + 0.008758053183555603, + 0.024280890822410583, + 0.03847121074795723, + 0.06347689032554626, + -0.041116319596767426, + 0.07603417336940765, + 0.006324343383312225, + -0.09925082325935364, + -0.03436797484755516, + 0.013225739821791649, + -0.007353241555392742, + -0.10469859093427658, + 0.06091123819351196, + -0.08529657125473022, + -0.056851085275411606, + -0.013676982372999191, + 0.13098600506782532, + 0.014682636596262455, + 0.04889369010925293, + -0.05063507705926895, + 0.09779911488294601, + 0.020533066242933273, + 0.006303594913333654, + 0.004475640133023262, + -0.08089561015367508, + -0.03769144043326378, + 0.08655567467212677, + 0.010794004425406456, + 0.011696964502334595, + -0.016299273818731308, + -0.06251495331525803, + 0.015336601063609123, + 0.01693270169198513, + -0.015481716021895409, + -0.06726188212633133, + -0.08530641347169876, + 0.10957013815641403, + 0.055282410234212875, + 0.03884282335639, + 0.0659913644194603, + 0.03298567607998848, + -0.03958148509263992, + 0.044052887707948685, + -0.00010222988203167915, + -0.003051974344998598, + 0.05141070857644081, + 0.10618969798088074, + -0.058320481330156326, + -0.016535358503460884, + -0.01569712907075882, + 0.00550941564142704, + -0.14478254318237305, + 0.05487243831157684, + 0.011660421267151833, + 0.11200343072414398, + -0.02691209688782692, + 0.018895534798502922, + -0.059357598423957825, + -0.07918308675289154, + 0.040055498480796814, + 0.07579949498176575, + -0.07184701412916183, + 0.015256023034453392, + 0.00480593740940094, + -0.057637639343738556, + -0.08950308710336685, + -4.771324108353602e-35, + 0.05448569357395172, + 0.05695522576570511, + -0.05942607298493385, + -0.05502406507730484, + -0.014534474350512028, + -0.017856720834970474, + 0.041500501334667206, + 0.05592583119869232, + 0.10128185153007507, + -0.012556133791804314, + 0.022984351962804794, + -0.09531700611114502, + -0.10350237041711807, + -0.05156458169221878, + -0.05964916571974754, + -0.022380413487553596, + -0.007576509844511747, + -0.03563126549124718, + -0.022411523386836052, + 0.021142423152923584, + 0.030060723423957825, + -0.029840853065252304, + 0.03376683220267296, + 0.030805712565779686, + -0.014636116102337837, + 0.0549716055393219, + -0.01179418247193098, + 0.036232490092515945, + 0.009224344044923782, + -0.08980220556259155, + 0.06285375356674194, + -0.053042616695165634, + 0.05227452516555786, + 0.008052565157413483, + -0.0805978924036026, + 0.025600597262382507, + 0.11431662738323212, + -0.03849773481488228, + -0.011850039474666119, + 0.018622808158397675, + -0.018927903845906258, + 0.08719949424266815, + 0.003069166326895356, + 0.018336674198508263, + 0.0014703085180372, + -0.032288651913404465, + -0.0530400387942791, + 0.0051979622803628445, + -0.04066065326333046, + 0.03825575113296509, + -0.052916932851076126, + 0.007856050506234169, + 0.0007361976895481348, + -0.01461332943290472, + -0.030406203120946884, + -0.042809467762708664, + -0.03479435294866562, + -0.01143748126924038, + 0.0209378469735384, + 0.08631514757871628, + 0.00982131902128458, + 0.046083781868219376, + -0.09745964407920837, + -0.009072640910744667, + -0.02909504435956478, + -0.00850796326994896, + 0.018127601593732834, + -0.013151193968951702, + 0.033832110464572906, + -0.015035548247396946, + 0.04106604680418968, + -0.01540369912981987, + 0.04793444648385048, + 0.05621451139450073, + -0.04238618165254593, + -0.027231616899371147, + -0.013807252049446106, + -0.014787822961807251, + 0.05802964046597481, + -0.00019312551012262702, + -0.034607741981744766, + -0.0879763662815094, + 0.03301125764846802, + 0.09179285168647766, + 0.012853940017521381, + 0.10879569500684738, + 0.036259278655052185, + -0.042108602821826935, + 0.04442109167575836, + -0.002077867044135928, + -0.0025883663911372423, + 0.04691123217344284, + -0.003230149857699871, + -0.005312617402523756, + -0.03804587572813034, + -1.727656773198305e-08, + -0.07639965415000916, + -0.031623560935258865, + -0.032197728753089905, + -0.016119807958602905, + -0.03669726103544235, + -0.10139058530330658, + 0.015506977215409279, + 0.035905871540308, + 0.07059551775455475, + -0.09761109948158264, + 0.026948144659399986, + 0.0013392864493653178, + -0.033632975071668625, + -0.0138835608959198, + -0.014095667749643326, + 0.03808305412530899, + 0.01719721406698227, + 0.03076508268713951, + -0.02190321683883667, + -0.002416334580630064, + 0.004181378521025181, + -0.004537754692137241, + 0.052458640187978745, + -0.028606493026018143, + 0.008812478743493557, + -0.01575401984155178, + -0.03342647850513458, + -0.039654605090618134, + 0.09021400660276413, + 0.022979067638516426, + -0.007315363734960556, + 0.061924729496240616, + 0.022333690896630287, + -0.020158104598522186, + -0.044614750891923904, + -0.07025040686130524, + -0.004861241672188044, + -0.038522738963365555, + -0.0173664428293705, + 0.09186071902513504, + -0.004410302732139826, + -0.019010530784726143, + 0.0103013776242733, + -0.005459783598780632, + 0.06427017599344254, + 0.08760945498943329, + 0.11537110060453415, + -0.043701328337192535, + -0.07358956336975098, + -0.06420586258172989, + -0.10492058843374252, + 0.026350967586040497, + -0.012524809688329697, + 0.09777072817087173, + 0.013002421706914902, + -0.04237756505608559, + 0.09624098241329193, + 0.0630054920911789, + -0.060111816972494125, + 0.011656387709081173, + 0.09713876992464066, + -0.023285619914531708, + 0.03571527451276779, + 0.05204737186431885 + ], + "video-camera-slash-bold||videography,films,movies,recording,disabled": [ + -0.02763552777469158, + -0.09921150654554367, + -0.055368028581142426, + -0.06539013981819153, + 0.06220811977982521, + 0.0013230725890025496, + 0.032077714800834656, + 0.01348849292844534, + 0.05667266622185707, + -0.04429757595062256, + 0.06129126623272896, + 0.009553445503115654, + -0.035668689757585526, + 0.09062672406435013, + -0.036447614431381226, + -0.011715488508343697, + 0.0696236863732338, + 0.007645611651241779, + -0.002642255974933505, + 0.04471598565578461, + -0.018364667892456055, + 0.0006020034197717905, + 0.05901331454515457, + 0.015338058583438396, + 0.0439508818089962, + -0.03632673621177673, + 0.009548521600663662, + 0.071989044547081, + -0.0020816794130951166, + -0.03710489347577095, + -0.04410513862967491, + 0.003031375352293253, + 0.11466710269451141, + 0.03740844503045082, + 0.0527147501707077, + -0.0597546324133873, + 0.003934194799512625, + -0.07109115272760391, + -0.06918695569038391, + -0.015553044155240059, + -0.028102189302444458, + -0.020919622853398323, + 0.023714454844594002, + -0.03633977845311165, + -0.05119900032877922, + -0.006024446804076433, + -0.0016934261657297611, + -0.06481236219406128, + -0.03692587465047836, + -0.027378441765904427, + -0.07619024068117142, + 0.01223832368850708, + -0.09874265640974045, + 0.013509519398212433, + 0.007889686152338982, + -0.03564991056919098, + -0.03745683282613754, + 0.019508421421051025, + 0.07419497519731522, + 0.0052143000066280365, + 0.007063435856252909, + -0.021574240177869797, + 0.04717026278376579, + 0.05375320836901665, + 0.03994443267583847, + 0.0362255685031414, + 0.0651683360338211, + -0.006475154776126146, + -0.015742093324661255, + -0.003686385927721858, + -0.0821380689740181, + 0.025005558505654335, + -0.047583628445863724, + -0.018789369612932205, + -0.06535706669092178, + -0.060761708766222, + -0.008654024451971054, + -0.0017888648435473442, + -0.011433430947363377, + -0.13217376172542572, + 0.061050355434417725, + -0.07768379151821136, + -0.019988609477877617, + 0.040762703865766525, + 0.04226808249950409, + 0.07431880384683609, + -0.015389588661491871, + -0.05103399604558945, + -0.045450177043676376, + -0.02383030205965042, + -0.16419212520122528, + -0.05544549599289894, + 0.014687956310808659, + -0.010330496355891228, + -0.07376306504011154, + -0.0631909891963005, + 0.011168095283210278, + -0.04626946523785591, + -0.02084968611598015, + 0.049501411616802216, + 0.0447860024869442, + -0.047423847019672394, + 0.015117545612156391, + 0.018393592908978462, + 0.0041586002334952354, + -0.030192095786333084, + 0.059637170284986496, + 0.027573850005865097, + -0.01068435050547123, + -0.007233716081827879, + -0.03775198385119438, + 0.021725540980696678, + -0.04040023684501648, + -0.07075763493776321, + 0.011835823766887188, + 0.025470519438385963, + -0.09389521181583405, + -0.038751017302274704, + 0.05939974635839462, + 0.08986162394285202, + -0.03302253037691116, + -0.10255461931228638, + -0.07552365958690643, + -0.08050698786973953, + -0.00120228948071599, + -0.02004382573068142, + 0.09379386901855469, + -3.032409368833816e-33, + 0.07726790010929108, + 0.03859575092792511, + 0.011873693205416203, + 0.03324424847960472, + 0.027991924434900284, + 0.02066144533455372, + -0.027796626091003418, + 0.0505300872027874, + -0.06852301210165024, + 0.003449835116043687, + 0.10364015400409698, + -0.026243241503834724, + -0.022390812635421753, + 0.0636102557182312, + 0.05316666141152382, + 0.04569327458739281, + 0.01369340717792511, + -0.05214957892894745, + -0.05022936686873436, + -0.00125032605137676, + 0.01175591628998518, + 0.12615883350372314, + 0.00653048325330019, + 0.045392896980047226, + -0.00981828011572361, + -0.04853558912873268, + 0.0011790525168180466, + -0.01740937866270542, + 0.04218433052301407, + 0.03452436998486519, + -0.012576654553413391, + 0.042634498327970505, + 0.0731629878282547, + -0.03968043997883797, + 0.04750678688287735, + 0.04974415525794029, + -0.06634033471345901, + -0.017215855419635773, + -0.029408589005470276, + 0.01627640798687935, + -0.09958246350288391, + 0.019728930667042732, + -0.1255197525024414, + -0.05146585404872894, + -0.02917112596333027, + 0.09588228911161423, + 0.04218722879886627, + -0.010070769116282463, + -0.0800081267952919, + 0.09801596403121948, + 0.002943249186500907, + 0.05444254353642464, + 0.04777166619896889, + -0.08019308000802994, + -0.0595957487821579, + 0.04723603278398514, + -0.01565265655517578, + -0.001461218111217022, + -0.010797240771353245, + -0.06630547344684601, + 0.05083625763654709, + 0.019039638340473175, + -0.008944490924477577, + -0.05675121396780014, + -0.11300772428512573, + 0.08029158413410187, + 0.05892468988895416, + 0.04402085393667221, + 0.02577219530940056, + 0.019442342221736908, + -0.06095576286315918, + 0.01062165480107069, + 0.027794530615210533, + -0.00196382706053555, + 0.002956364070996642, + 0.08821908384561539, + -0.08913175761699677, + -0.03374091163277626, + -0.016778843477368355, + -0.009441948495805264, + -0.18143275380134583, + 0.02154332585632801, + 0.04708786681294441, + 0.08772923797369003, + 0.023691974580287933, + -0.035288095474243164, + -0.04839036986231804, + -0.04828840494155884, + 0.016295218840241432, + 0.048368364572525024, + -0.015409131534397602, + 0.009403156116604805, + -0.01833929307758808, + -0.0518462173640728, + -0.04295073077082634, + 1.4497129382981415e-33, + 0.06334780156612396, + 0.07641687989234924, + -0.09068125486373901, + -0.04438433423638344, + -0.049048781394958496, + -0.05103807896375656, + 0.035486407577991486, + 0.0622808113694191, + 0.09646535664796829, + -0.050482988357543945, + 0.05651271343231201, + -0.06224216893315315, + -0.07899104803800583, + -0.07858114689588547, + -0.019694101065397263, + -0.031896695494651794, + -0.05443722754716873, + -0.044567663222551346, + -0.0234652329236269, + 0.050676241517066956, + 0.02101435326039791, + -0.030034029856324196, + 0.04624241590499878, + 0.055150363594293594, + -0.010303651914000511, + 0.07778051495552063, + 0.01069606188684702, + 0.045658260583877563, + 0.05047842115163803, + -0.061316296458244324, + 0.0793929472565651, + -0.01520021352916956, + -0.011189707554876804, + -0.01665525510907173, + -0.05693273991346359, + 0.03378542140126228, + 0.03882757946848869, + 0.01245037466287613, + -0.03920813277363777, + -0.02199791930615902, + -0.0174825768917799, + 0.08877083659172058, + 0.020109912380576134, + 0.0731128677725792, + 0.031569939106702805, + -0.021373284980654716, + -0.05561676621437073, + -0.03734626993536949, + -0.008700220845639706, + 0.026522433385252953, + -0.0072928681038320065, + 0.009437649510800838, + 0.017085352912545204, + 0.0009230900323018432, + -0.029143691062927246, + -0.03393218666315079, + -0.0646359845995903, + 0.034012384712696075, + -0.025079170241951942, + 0.12350533157587051, + 0.06736240535974503, + 0.02774009108543396, + -0.12689754366874695, + -0.01363629475235939, + 0.0016192272305488586, + -0.0005795996403321624, + 0.009312811307609081, + 0.0333879292011261, + 0.0361381433904171, + -0.007555049378424883, + 0.05702909454703331, + 0.028263678774237633, + 0.06060406565666199, + 0.015685230493545532, + 0.018391845747828484, + -0.034648653119802475, + -0.058035507798194885, + 0.015214191749691963, + 0.045238249003887177, + 0.02453826740384102, + -0.00478574400767684, + -0.07198671996593475, + 0.022890781983733177, + 0.0818883553147316, + 0.016029780730605125, + 0.061917468905448914, + -0.0009674946195445955, + 0.02550131268799305, + 0.04704314097762108, + -0.06132177636027336, + -0.035841621458530426, + 0.027847692370414734, + -0.002914934419095516, + 0.039239805191755295, + -0.06395019590854645, + -1.9075180546224146e-08, + -0.07918162643909454, + -0.04742889851331711, + -0.03087298572063446, + 0.007738362532109022, + 0.000419261516071856, + -0.07525370270013809, + -0.009251988492906094, + 0.03469301015138626, + 0.09099359810352325, + -0.08667192608118057, + 0.021888749673962593, + -0.017954016104340553, + -0.021592821925878525, + -0.025381246581673622, + -0.007572801783680916, + 0.048558905720710754, + 0.007134340237826109, + 0.06298332661390305, + -0.02369246631860733, + 0.022181298583745956, + -0.03467896953225136, + -0.015013953670859337, + 0.0670018270611763, + -0.019322514533996582, + 0.012032606638967991, + -0.034057892858982086, + -0.012383577413856983, + -0.04374406486749649, + 0.07998369634151459, + 0.005867641419172287, + -0.016496725380420685, + 0.05990277975797653, + 0.019521698355674744, + -0.02563769929111004, + -0.029350578784942627, + -0.005929907318204641, + -0.002508391160517931, + 0.000742047093808651, + 0.016773652285337448, + 0.0584833025932312, + 0.019343417137861252, + -0.06529723852872849, + 0.026760011911392212, + -0.005112733691930771, + 0.03950100019574165, + 0.07785467803478241, + 0.12275437265634537, + -0.0024223006330430508, + -0.06894975155591965, + -0.07087365537881851, + -0.07238983362913132, + 0.07478803396224976, + -0.0236403476446867, + 0.1009473130106926, + 0.03471467271447182, + -0.03889506682753563, + 0.1281333863735199, + 0.06090927869081497, + -0.07101982086896896, + 0.017724577337503433, + 0.11977186799049377, + -0.03398154303431511, + 0.038211122155189514, + 0.042758166790008545 + ], + "video-conference-bold||*new*,video call,zoom,skype,discord,facetime,meeting": [ + -0.002392352791503072, + -0.0964074656367302, + 0.002032354474067688, + -0.008260269649326801, + 0.06490183621644974, + 0.007266069296747446, + 0.05754425749182701, + -0.059565220028162, + 0.04688815772533417, + -0.03340115770697594, + -0.04805826023221016, + -0.0015249031130224466, + -0.0894608199596405, + 0.011356947012245655, + 0.04026486724615097, + -0.039202731102705, + 0.07127408683300018, + -0.03574476018548012, + -0.03205090016126633, + 0.0027733067981898785, + 0.03254155069589615, + -0.04846051335334778, + 0.01773076131939888, + 0.04615926742553711, + 0.07079299539327621, + -0.020865779370069504, + -0.008428199216723442, + 0.027549492195248604, + 0.1084616556763649, + -0.08970461785793304, + 0.015965502709150314, + 0.051825933158397675, + 0.1311379224061966, + 0.07017157226800919, + 0.030700378119945526, + -0.015072543174028397, + 0.0133473239839077, + -0.009487604722380638, + -0.09927021712064743, + 0.02680453471839428, + -0.007778899744153023, + -0.02782759629189968, + 0.03093663975596428, + 0.0021795653738081455, + -0.01607082597911358, + -0.07352077215909958, + -0.032923053950071335, + -0.04477791115641594, + 0.04191342368721962, + 0.03544562682509422, + -0.047735873609781265, + -0.11596265435218811, + -0.09586864709854126, + -0.02014041505753994, + -0.00746889179572463, + 0.06045498326420784, + -0.05721762031316757, + -0.02434672601521015, + 0.08625411987304688, + 0.0053514945320785046, + -0.013731135055422783, + -0.025154853239655495, + 0.025006162002682686, + 0.07602345943450928, + -0.04023972153663635, + 0.07361501455307007, + 0.02039945125579834, + 0.03573945164680481, + -0.02459687739610672, + -0.0005822335951961577, + -0.08576454222202301, + 0.03581336885690689, + -0.05202268436551094, + -0.014910878613591194, + -0.0275284294039011, + -0.057320307940244675, + 0.005047980695962906, + -0.05264529213309288, + -0.030373651534318924, + -0.023554261773824692, + 0.06957657635211945, + -0.05386795103549957, + -0.03925831615924835, + -0.05106986686587334, + 0.11302404850721359, + 0.006803669035434723, + -0.07347051054239273, + -0.07598758488893509, + -0.101609006524086, + -0.03399372473359108, + -0.22725152969360352, + 0.03484177589416504, + -0.02839622274041176, + -0.02137189358472824, + -0.09038849920034409, + -0.012901931069791317, + 0.011947152204811573, + -0.1279049664735794, + 0.03205465152859688, + 0.08597298711538315, + -0.02087376080453396, + -0.008649172261357307, + 0.04985197260975838, + 0.012552575208246708, + -0.02807902917265892, + -0.02704479545354843, + -0.011234436184167862, + 0.025978269055485725, + 0.046731382608413696, + 0.09232884645462036, + -0.06218591332435608, + -0.053659241646528244, + -0.03099924512207508, + -0.1153637021780014, + 0.015952767804265022, + 0.059331439435482025, + -0.03953295573592186, + -0.02719498611986637, + 0.10469358414411545, + 0.03470255434513092, + 0.040428999811410904, + -0.012042085640132427, + -0.014505969360470772, + -0.017450211569666862, + -0.008441144600510597, + 0.0018372691702097654, + 0.0686417818069458, + -9.877291484165895e-34, + 0.0777096375823021, + -0.00026191258803009987, + -0.03847416862845421, + 0.13356225192546844, + 0.07610233873128891, + 0.0678274855017662, + -0.011294039897620678, + -0.021229751408100128, + -0.10784444212913513, + -0.014073832891881466, + 0.058943942189216614, + -0.029575813561677933, + 0.04074208065867424, + 0.023816708475351334, + 0.050885893404483795, + -0.05156519263982773, + 0.005647338926792145, + 0.031129660084843636, + -0.09509676694869995, + -0.03811841458082199, + -0.07261798530817032, + 0.05645008012652397, + -0.0061057861894369125, + 0.09240857511758804, + 0.04537762328982353, + -0.0029869121499359608, + 0.07163652032613754, + -0.012654286809265614, + 0.05475262552499771, + 0.004253968596458435, + -0.02016572095453739, + 0.0476691797375679, + 0.0485619455575943, + 0.0383232943713665, + 0.07978720217943192, + 0.06315706670284271, + -0.09668394923210144, + -0.06832049787044525, + 0.03276572749018669, + 0.022025736048817635, + -0.11827748268842697, + -0.0026181365828961134, + -0.10738164931535721, + -0.08585745096206665, + 0.018697207793593407, + 0.08239370584487915, + -0.01718558743596077, + -0.009464066475629807, + -0.018208015710115433, + 0.027735086157917976, + -0.01662185601890087, + 0.052405837923288345, + -0.012670978903770447, + -0.0007250854978337884, + -0.012473362497985363, + -0.043170686811208725, + 0.036034535616636276, + 0.030086537823081017, + 0.009998791851103306, + -0.046480320394039154, + 0.013628857210278511, + 0.021040543913841248, + -0.05327824503183365, + 0.017036613076925278, + -0.0525992251932621, + 0.039603158831596375, + 0.0022786662448197603, + 0.06376329064369202, + 0.0769648551940918, + -0.036485906690359116, + 0.037660352885723114, + 0.08463983237743378, + 0.009846910834312439, + 0.021161116659641266, + -0.0012154907453805208, + 0.020558319985866547, + -0.04407449811697006, + 0.004497487563639879, + -0.00330164167098701, + 0.0685853436589241, + -0.037787701934576035, + 0.02492472529411316, + 0.0122272539883852, + 0.054684948176145554, + -0.011596032418310642, + -0.0032891782466322184, + 0.023829171434044838, + -0.07775069028139114, + -0.056237172335386276, + 0.029184743762016296, + -0.09785880148410797, + 0.031877364963293076, + 0.04259033128619194, + 0.011703774333000183, + -0.0673508495092392, + -1.853085340068496e-35, + 0.06464885920286179, + 0.0908171758055687, + -0.014782060869038105, + -0.013215691782534122, + 0.023839274421334267, + 0.02444024384021759, + 0.11969044804573059, + 0.020040206611156464, + 0.05183308944106102, + -0.020064890384674072, + 0.0663326233625412, + -0.05634734034538269, + -0.051783740520477295, + -0.07809145748615265, + -0.0033325874246656895, + -0.006309572607278824, + 0.028078662231564522, + -0.06684219837188721, + -0.0354619100689888, + 0.018670670688152313, + 0.055742278695106506, + -0.04180695489048958, + -0.03139197453856468, + 0.0013818703591823578, + -0.03499772772192955, + -0.030067935585975647, + 0.029851380735635757, + 0.006040394306182861, + 0.024318356066942215, + -0.04122654348611832, + -0.018703756853938103, + 0.007089403923600912, + -0.01589120924472809, + 0.05381340906023979, + 0.03134533390402794, + 0.06930118054151535, + 0.04515323415398598, + -0.00017534034850541502, + -0.024245034903287888, + -0.055914755910634995, + 0.043475255370140076, + 0.01680546998977661, + 0.0029169097542762756, + -0.005974214058369398, + 0.03644061088562012, + -0.013879253529012203, + -0.11431426554918289, + -0.0158421341329813, + -0.10579244792461395, + -0.007608466781675816, + -0.03523900359869003, + -0.0405237190425396, + -0.02658439241349697, + -0.004969913046807051, + -0.07185673713684082, + 0.008818341419100761, + -0.014698851853609085, + 0.011134149506688118, + 0.048704225569963455, + 0.02308860793709755, + 0.0006714425981044769, + -0.0037238358054310083, + -0.046991296112537384, + 0.04050935432314873, + 0.05809706449508667, + 0.017225254327058792, + -0.016307437792420387, + 0.050284817814826965, + -0.0011476683430373669, + 0.031145893037319183, + 0.06756598502397537, + -0.002965141786262393, + 0.029153142124414444, + 0.018728304654359818, + -0.024366825819015503, + -0.014837129972875118, + 0.028888963162899017, + 0.034647028893232346, + -0.0005618100985884666, + 0.01661144755780697, + -0.008754614740610123, + 0.010934477671980858, + 0.014789699576795101, + 0.03888297080993652, + 0.009494534693658352, + 0.1256445348262787, + 0.0980159118771553, + 0.0386933907866478, + -0.04849317669868469, + 0.004291747696697712, + -0.08474759757518768, + -0.010471649467945099, + 0.041892752051353455, + 0.025625696405768394, + 0.008118649944663048, + -2.2580282532658202e-08, + -0.08821044862270355, + 0.007601569872349501, + -0.046856414526700974, + -0.024543341249227524, + -0.019033269956707954, + -0.06340374797582626, + 0.0005816487246192992, + -0.05830736085772514, + 0.05579415336251259, + -0.05294128879904747, + -0.013343200087547302, + -0.0029657413251698017, + -0.045641086995601654, + 0.08072451502084732, + 0.02978188917040825, + 0.009405956603586674, + -0.06777085363864899, + 0.02973640337586403, + 0.006714591756463051, + -0.04474346339702606, + -0.02979603409767151, + -0.003300960874184966, + 0.02190360240638256, + -0.003968412522226572, + -0.034781742841005325, + 0.020616844296455383, + -0.06296458095312119, + 0.0650814026594162, + 0.0374620258808136, + -0.011531874537467957, + -0.03138730302453041, + 0.055960554629564285, + -0.028547819703817368, + -0.03570624068379402, + -0.0507940948009491, + -0.052311502397060394, + -0.07888395339250565, + -0.03872364014387131, + 0.05131322517991066, + 0.1312897801399231, + 0.010852265171706676, + -0.0014835785841569304, + 0.027606558054685593, + 0.005170408636331558, + 0.027021164074540138, + 0.08474018424749374, + 0.0294125284999609, + -0.1056533083319664, + -0.0405266247689724, + -0.09871555864810944, + -0.0793292373418808, + 0.025143129751086235, + -0.004903026856482029, + 0.029854781925678253, + 0.03758114576339722, + 0.015494653955101967, + 0.1242087259888649, + 0.032983433455228806, + 0.0005144651513546705, + 0.02402220480144024, + 0.03128417581319809, + 0.03223840892314911, + -0.0674164742231369, + 0.07378251850605011 + ], + "vignette-bold||photography,darkroom,movie,analog": [ + -0.007867066189646721, + -0.054951369762420654, + -0.04831314831972122, + -0.03697019815444946, + -0.0015095090493559837, + 0.007375901564955711, + 0.0456375889480114, + -0.0016659004613757133, + 0.013268094509840012, + -0.047396015375852585, + 0.009207352995872498, + -0.012548602186143398, + 0.018913427367806435, + -0.02008918486535549, + -0.005035777576267719, + 0.040850359946489334, + 0.1220562532544136, + 0.05152367055416107, + 0.006346339825540781, + 0.07446161657571793, + -0.043276097625494, + 0.003145506838336587, + 0.0448814332485199, + -0.024127081036567688, + 0.026567941531538963, + 0.014628453180193901, + 0.04644811898469925, + 0.05188456177711487, + -0.04981248080730438, + -0.07420963048934937, + -0.003981927875429392, + 0.0877762883901596, + 0.021800756454467773, + 0.010288975201547146, + 0.02852880209684372, + -0.014815405942499638, + -0.10473083704710007, + -0.043294746428728104, + -0.026303475722670555, + 0.04932030290365219, + -0.06832025945186615, + 0.0030069875065237284, + 0.018192704766988754, + 0.02275456115603447, + -0.024898041039705276, + -0.044733926653862, + 0.045534245669841766, + -0.0036649706307798624, + 0.0029914292972534895, + 0.0033492427319288254, + -0.06200285628437996, + -0.08522898703813553, + -0.12882617115974426, + 0.04128921404480934, + -0.008640160784125328, + 0.06023354455828667, + -0.019629206508398056, + -0.08002787828445435, + 0.0039337254129350185, + -0.025826675817370415, + 0.029743816703557968, + 0.02773907221853733, + 0.02735409513115883, + 0.04751327261328697, + 0.0944821834564209, + 0.004268241114914417, + 0.0069619216956198215, + 0.005879772361367941, + -0.0029095120262354612, + -0.0066818054765462875, + -0.038467805832624435, + 0.03888397663831711, + -0.04994206130504608, + -0.009080038405954838, + -0.05515318363904953, + -0.014193188399076462, + -0.027152372524142265, + -0.015074322931468487, + 0.022026363760232925, + -0.09746608883142471, + 0.017140014097094536, + -0.10756581276655197, + -0.054971009492874146, + 0.0018755653873085976, + -0.011998563073575497, + 0.04504094272851944, + 0.009375683963298798, + -0.046060994267463684, + -0.04547503963112831, + -0.027443427592515945, + -0.11274688690900803, + -0.0322340652346611, + -0.09919650852680206, + -0.019576380029320717, + -0.04290539026260376, + -0.0227974783629179, + -0.023707054555416107, + -0.04817567393183708, + 0.003221050836145878, + 0.059487003833055496, + 0.03801587596535683, + -0.07118285447359085, + 0.016613997519016266, + 0.033871039748191833, + -0.010672611184418201, + -0.05953608825802803, + 0.07361851632595062, + 0.033972401171922684, + -0.02645350620150566, + -0.008736270479857922, + -0.0374690517783165, + -0.007344350218772888, + -0.002646759385243058, + -0.07329852133989334, + 0.07250577211380005, + -0.012938352301716805, + 0.04688321053981781, + -0.002724596532061696, + 0.074264757335186, + 0.07237055152654648, + 0.09135625511407852, + -0.02876424230635166, + -0.048564378172159195, + -0.05676567181944847, + -0.06953895092010498, + -0.04161156713962555, + 0.12170924246311188, + -5.01171878719838e-34, + 0.04957779869437218, + 0.06447193771600723, + 0.05889961123466492, + 0.11757560819387436, + 0.08316413313150406, + 0.029014358296990395, + -0.02502046525478363, + 0.029737910255789757, + -0.1219814196228981, + 0.0615108348429203, + 0.031773291528224945, + -0.015091925859451294, + -0.03975070267915726, + 0.08448782563209534, + 0.022943004965782166, + -0.007245250511914492, + 0.02172357775270939, + -0.055742714554071426, + -0.046387720853090286, + -0.02516346238553524, + -0.04055313393473625, + 0.06453192979097366, + -0.010476479306817055, + 0.05757160112261772, + -0.15644337236881256, + -0.04013623297214508, + 0.006225363817065954, + 0.01000450924038887, + 0.0034998462069779634, + 0.01755785197019577, + -0.027596738189458847, + 0.07813050597906113, + 0.05174100771546364, + -0.027652785181999207, + 0.012544959783554077, + 0.00026855774922296405, + -0.07217094302177429, + -0.05796036869287491, + 0.05319448187947273, + 0.04004798084497452, + -0.048231881111860275, + 0.07859249413013458, + -0.05915243923664093, + 0.003057126421481371, + 0.02432951331138611, + 0.14208179712295532, + 0.027131805196404457, + 0.06378459185361862, + -0.0021157492883503437, + 0.08804961293935776, + 0.014483954757452011, + -0.04261687397956848, + 0.006466835271567106, + -0.017026390880346298, + -0.02963409386575222, + 0.016488250344991684, + 0.031051648780703545, + 0.008479277603328228, + -0.002969784429296851, + -0.06697110086679459, + 0.06835847347974777, + 0.044387336820364, + 0.022996416315436363, + -0.018310116603970528, + -0.019007911905646324, + 0.07773815840482712, + 0.07159270346164703, + -0.03369281440973282, + 0.04624323919415474, + 0.02082785964012146, + -0.0567144900560379, + 0.05538030341267586, + -0.007798134349286556, + -0.02295832149684429, + 0.02783612161874771, + 0.0212839525192976, + -0.07381314039230347, + -0.028801796957850456, + 0.03915530443191528, + -0.06257832795381546, + -0.1646251529455185, + 0.05943303555250168, + -0.0487232469022274, + 0.055094048380851746, + -0.043776754289865494, + 0.010528330691158772, + -0.03745613619685173, + -0.054327841848134995, + 0.02102811075747013, + 0.04782210662961006, + -0.05646621808409691, + 0.020038846880197525, + 0.026627980172634125, + -0.062318917363882065, + -0.042980488389730453, + -4.88988430786542e-34, + 0.014370853081345558, + 0.008332564495503902, + -0.05827396363019943, + 0.03218216821551323, + 0.039430197328329086, + 0.04930613189935684, + -0.03439553454518318, + 0.00838738027960062, + 0.04590018466114998, + 0.022982969880104065, + 0.013387740589678288, + -0.05659753084182739, + -0.07935382425785065, + -0.0876035988330841, + -0.007886017672717571, + -0.005194348283112049, + 0.04498007148504257, + -0.06397680938243866, + -0.0256857480853796, + 0.06255711615085602, + 0.03889239951968193, + -0.03626842796802521, + 0.013288428075611591, + 0.025699103251099586, + -0.01685544289648533, + 0.057754240930080414, + 0.03376626595854759, + -0.009450670331716537, + -0.030712371692061424, + 0.03238765522837639, + -0.01831836812198162, + -0.017315326258540154, + 0.07793258130550385, + 0.0728716254234314, + -0.038170211017131805, + 0.06069907918572426, + 0.11012699455022812, + -0.07954203337430954, + 0.00047450631973333657, + -0.01893506571650505, + -0.04261401295661926, + 0.047127414494752884, + 0.01820811629295349, + 0.009126843884587288, + -0.029574265703558922, + -0.06101001054048538, + -0.0912654846906662, + 0.027980713173747063, + -0.009046964347362518, + 0.06021018326282501, + -0.05325011909008026, + -0.030165061354637146, + -0.03134676814079285, + 0.02218399941921234, + -0.09662476927042007, + -0.006984409410506487, + -0.03461386635899544, + -0.022720366716384888, + 0.08855592459440231, + 0.1342100203037262, + -0.007971251383423805, + 0.046887755393981934, + -0.10701654106378555, + -0.05117456614971161, + -0.021904466673731804, + 0.03137795254588127, + -0.011681664735078812, + 0.027121514081954956, + 0.049199268221855164, + 0.017810286954045296, + 0.07070882618427277, + 0.05965038016438484, + 0.04328278452157974, + 0.033399734646081924, + 0.010623198002576828, + -0.07952896505594254, + 0.08016598224639893, + -0.008370083756744862, + -0.0025197584182024, + -0.005778237711638212, + -0.012501681223511696, + -0.08199077844619751, + 0.005882931873202324, + 0.0439995676279068, + -0.018821824342012405, + 0.034440696239471436, + -0.002390137407928705, + -0.0037449158262461424, + 0.0036676551681011915, + 0.0114904111251235, + -0.039049141108989716, + 0.04614153504371643, + -0.0024878508411347866, + -0.050390779972076416, + 0.006318619474768639, + -2.009433330840693e-08, + -0.038521070033311844, + 0.0013350307708606124, + -0.03508182242512703, + -0.04878645017743111, + 0.05146912857890129, + -0.07190241664648056, + -0.03764469549059868, + -0.001517038675956428, + 0.09785698354244232, + -0.014101979322731495, + 0.03818775340914726, + -0.010612193495035172, + 0.00582160335034132, + 0.01513530220836401, + -0.013923047110438347, + 0.07599465548992157, + -0.01353533286601305, + 0.06717752665281296, + -0.05009777843952179, + 0.006668859161436558, + 0.0448395237326622, + 0.03759322315454483, + 0.07731369137763977, + -0.09624557197093964, + 0.002705410122871399, + 0.04969976842403412, + -0.06567777693271637, + -0.061399538069963455, + 0.060367878526449203, + 0.029895642772316933, + 0.0788833424448967, + 0.08822996914386749, + 0.07452397048473358, + -0.017061308026313782, + -0.18829768896102905, + -0.03585975244641304, + 0.020341157913208008, + 0.005772256758064032, + -0.016334788873791695, + 0.02080375887453556, + -0.024370113387703896, + -0.0823865681886673, + -0.001824255334213376, + -0.036857184022665024, + -0.012000564485788345, + 0.013776157982647419, + 0.13328588008880615, + -0.04699962958693504, + -0.04812629148364067, + -0.0003453381941653788, + -0.06163766607642174, + 0.0030648214742541313, + 0.020563464611768723, + 0.09158068895339966, + -0.02797236479818821, + -0.0840953141450882, + 0.053267981857061386, + 0.12337083369493484, + -0.05736050009727478, + -0.020997151732444763, + 0.03403933718800545, + -0.01472303457558155, + -0.00428643636405468, + 0.0017047382425516844 + ], + "vinyl-record-bold||recording,audio,album,music,ep,lp": [ + 0.03576519340276718, + 0.04458722099661827, + -0.040006380528211594, + -0.04968203231692314, + -0.016488127410411835, + 0.043299414217472076, + 0.059468552470207214, + -0.028572531417012215, + 0.01262824609875679, + -0.052919141948223114, + -0.009774431586265564, + -0.02055899053812027, + 0.007385381031781435, + -0.07778715342283249, + -0.046151161193847656, + 0.03088350035250187, + -0.017957637086510658, + 0.08568814396858215, + 0.021300621330738068, + 0.07251518219709396, + 0.024887634441256523, + 0.06528843939304352, + 0.02200695313513279, + 0.02024567499756813, + 0.02095135673880577, + 0.029500722885131836, + -0.04066859930753708, + 0.07049573957920074, + 0.05377035588026047, + -0.06483841687440872, + -0.0068304394371807575, + 0.007932409644126892, + 0.08499079942703247, + 0.01895364373922348, + 0.09126538783311844, + 0.0005467920564115047, + -0.0645049586892128, + -0.010763414204120636, + -0.03233567625284195, + 0.032764118164777756, + 0.06075001507997513, + -0.036531683057546616, + -0.08680016547441483, + 0.007409797515720129, + -0.1009851023554802, + -0.022414622828364372, + -0.035367198288440704, + -0.028229832649230957, + -0.062236085534095764, + 0.020114386454224586, + -0.002708589192479849, + -0.06076190993189812, + -0.049781445413827896, + 0.02520182356238365, + -0.0480429045855999, + -0.027734093368053436, + -0.006543577648699284, + 0.07535510510206223, + 0.016139034181833267, + 0.01167328655719757, + 0.024261929094791412, + 0.018604014068841934, + -0.025778494775295258, + 0.03727078065276146, + 0.015765871852636337, + 0.02839507907629013, + 0.0015545926289632916, + 0.08919284492731094, + -0.009625047445297241, + 0.03446941077709198, + -0.044475357979536057, + 0.05786579102277756, + -0.011015031486749649, + -0.006414648145437241, + 0.028035208582878113, + -0.04410434141755104, + -0.03136000037193298, + -0.004899832420051098, + -0.03297343850135803, + -0.05354229360818863, + -0.011553025804460049, + -0.03169802576303482, + -0.047561999410390854, + -0.06352365761995316, + 0.010625488124787807, + 0.044802237302064896, + -0.03197389468550682, + -0.04553314670920372, + -0.06954674422740936, + -0.04689649119973183, + -0.11994851380586624, + -0.017618808895349503, + -0.009412159211933613, + -0.05071462690830231, + -0.059775885194540024, + 0.056740447878837585, + 0.07147758454084396, + -0.036732807755470276, + 0.0610831193625927, + 0.04462470859289169, + 0.05489736050367355, + 0.03615220636129379, + -0.02689901366829872, + 0.03598322346806526, + -0.03970737010240555, + -0.12381362915039062, + 0.0017111514462158084, + 0.010089618153870106, + 0.0002604130422696471, + -0.05328589677810669, + -0.01671532541513443, + -0.05339192599058151, + -0.0232233889400959, + -0.08845210820436478, + 0.03638732433319092, + 0.013941936194896698, + -0.08470100909471512, + 0.019999833777546883, + 0.04139058291912079, + -0.04932187497615814, + -0.01923804171383381, + -0.13395464420318604, + -0.04768027365207672, + -0.004950717557221651, + -0.07516362518072128, + -0.006404235027730465, + 0.10737829655408859, + -3.171982608933662e-33, + 0.0893956646323204, + 0.026813892647624016, + -0.0251225084066391, + 0.026726586744189262, + 0.08044996112585068, + 0.030634963884949684, + -0.034667808562517166, + 0.019242258742451668, + -0.06225220113992691, + 0.10537736117839813, + 0.06652498990297318, + 0.016966883093118668, + -0.038727838546037674, + 0.0503397211432457, + 0.010036430321633816, + 0.05066615343093872, + -0.07848907262086868, + 0.05748364329338074, + -0.05530116707086563, + -0.027910154312849045, + -0.1020982414484024, + 0.05909794196486473, + 0.05501598119735718, + 0.007351336535066366, + 0.01131861936300993, + -0.055383071303367615, + -0.0036925089079886675, + -0.051449842751026154, + -0.01683797873556614, + 0.0008482763078063726, + -0.007938163354992867, + -0.010402831248939037, + 0.09403875470161438, + -0.03440621495246887, + 0.0007887552492320538, + 0.07987799495458603, + -0.07584753632545471, + 0.02683696709573269, + 0.011253703385591507, + -0.057323556393384933, + -0.04707631096243858, + 0.00434613972902298, + 0.016646675765514374, + -0.08112479746341705, + 0.028648067265748978, + 0.09155475348234177, + -0.06207132339477539, + -0.004369450733065605, + 0.046795837581157684, + 0.026163773611187935, + 0.04180289804935455, + 0.00012619768676813692, + -0.04321896284818649, + 0.021404067054390907, + -0.0036320204380899668, + 0.00586928054690361, + 0.026708003133535385, + 0.093346007168293, + -0.012116299010813236, + 0.04019312560558319, + 0.039470374584198, + 0.031271953135728836, + 0.10050992667675018, + -0.06577737629413605, + -0.029053345322608948, + 0.12624867260456085, + 0.0057477643713355064, + -0.06414088606834412, + 0.1442869007587433, + -0.014307201839983463, + -0.07268454879522324, + 0.021066004410386086, + 0.001825009472668171, + -0.027725353837013245, + 0.046338289976119995, + 0.07204071432352066, + -0.015128517523407936, + -0.05189596116542816, + 0.019836759194731712, + -0.019911937415599823, + -0.12218121439218521, + 0.08782562613487244, + -0.1284450739622116, + 0.0723995566368103, + -0.022880593314766884, + 0.039181243628263474, + 0.003886391408741474, + -0.06155197322368622, + -0.005496007390320301, + 0.023747842758893967, + -0.04685528203845024, + 0.05918506160378456, + -0.04367218166589737, + -0.04002612084150314, + -0.07468458265066147, + -4.362097905428271e-34, + 0.0901946872472763, + 0.08139079809188843, + 0.025149811059236526, + -0.026544339954853058, + 0.001473946962505579, + 0.005919895134866238, + 0.036120686680078506, + 0.07651261240243912, + 0.006809307262301445, + 0.05096689984202385, + 0.012357200495898724, + -0.08382726460695267, + -0.061991725116968155, + 0.0051734913140535355, + -0.07105109840631485, + -0.013753130100667477, + -0.01470459159463644, + 0.05075249820947647, + 0.04968421533703804, + 0.05094921961426735, + -0.016833148896694183, + -0.0030894672963768244, + 0.05286119878292084, + 0.15865376591682434, + -0.029543012380599976, + -0.014933264814317226, + 0.03135005012154579, + 0.006826016120612621, + 0.0016787812346592546, + -0.06310991197824478, + 0.0333453007042408, + -0.04001682624220848, + 0.007620427291840315, + -0.036502137780189514, + -0.03630867600440979, + -0.06286074221134186, + 0.10884764790534973, + -0.0005419671069830656, + -0.024500420317053795, + -0.04609931632876396, + -0.05347568914294243, + 0.03252767398953438, + -0.026225950568914413, + -0.014400934800505638, + -0.05487093701958656, + -0.05515178665518761, + -0.04330714792013168, + 0.05573999881744385, + -0.0029181484133005142, + 0.0680614784359932, + 0.0045960224233567715, + -0.04235998913645744, + 0.003664683550596237, + 0.007748173549771309, + -0.023949062451720238, + -0.003408347489312291, + -0.06794732809066772, + -0.041812051087617874, + -0.027975404635071754, + 0.10841073095798492, + -0.028846360743045807, + 0.09089915454387665, + -0.05583799630403519, + -0.009973998181521893, + 0.013589686714112759, + -0.019264208152890205, + 0.06025092303752899, + -0.06208527460694313, + -0.04945151135325432, + 0.023523103445768356, + 0.020896967500448227, + 0.023540040478110313, + 0.018718844279646873, + 0.06984809786081314, + -0.011958902701735497, + -0.051164474338293076, + -0.06375665962696075, + -0.05391271784901619, + -0.04619058966636658, + 0.02477693371474743, + -0.08773662894964218, + -0.007290243171155453, + -0.008885442279279232, + 0.05086902901530266, + -0.029620680958032608, + 0.052295561879873276, + 0.05129355937242508, + -0.05832163244485855, + 0.00013899235636927187, + -0.00801006332039833, + 0.041496578603982925, + 0.06048548221588135, + -0.020924583077430725, + 0.005458768457174301, + -0.01239148247987032, + -1.812566807757321e-08, + -0.03441190347075462, + 0.015885086730122566, + 0.019027383998036385, + -0.08655862510204315, + 0.012830876745283604, + -0.05577642098069191, + 0.06602507829666138, + -0.030715402215719223, + -0.03186091035604477, + -0.09029541909694672, + 0.09448737651109695, + -0.06225912645459175, + -0.06756225973367691, + -0.014760870486497879, + 0.0021824913565069437, + 0.02038605324923992, + -0.051161862909793854, + 0.03451506420969963, + -0.06863116472959518, + -0.05340788513422012, + -0.028420886024832726, + 0.03219372779130936, + 0.07065513730049133, + -0.055212754756212234, + 0.061682071536779404, + -0.03188316896557808, + -0.021471168845891953, + 0.04757368564605713, + 0.04642365127801895, + -0.0012098948936909437, + 0.05704604834318161, + 0.07659035921096802, + 0.0815550908446312, + 0.07936175912618637, + -0.046624768525362015, + -0.04966706037521362, + -0.02039429172873497, + 0.019508367404341698, + -0.0804724469780922, + 0.06049758195877075, + -0.046436090022325516, + -0.013379533775150776, + -0.03693852946162224, + -0.004480390809476376, + 0.022299285978078842, + 0.009229354560375214, + 0.10301375389099121, + 0.011622341349720955, + -0.07215769588947296, + -0.10152985155582428, + -0.0395074188709259, + -0.03301703557372093, + 0.026499751955270767, + 0.04918637499213219, + -0.038211021572351456, + -0.023817021399736404, + -0.03231396526098251, + 0.16280242800712585, + -0.009256940335035324, + -0.010289045050740242, + 0.07237771898508072, + -0.02698894590139389, + 0.05358951538801193, + 0.04694375768303871 + ], + "virtual-reality-bold||virtual reality,vr,headset,metaverse": [ + 0.04971569404006004, + -0.047986842691898346, + -0.015289506874978542, + -0.054224830120801926, + 0.015617088414728642, + -0.02257612906396389, + -0.02063056267797947, + -0.010398812592029572, + -0.0031398609280586243, + 0.06026840955018997, + -0.017999697476625443, + -0.045374900102615356, + -0.06210329756140709, + -0.0818224772810936, + 0.03657142072916031, + -0.08841542154550552, + 0.07495199888944626, + 0.022310348227620125, + -0.006290326826274395, + 0.09313437342643738, + 0.0031982746440917253, + 0.0800715982913971, + 0.021855849772691727, + 0.043402064591646194, + 0.05251886323094368, + 0.07700624316930771, + -0.030770329758524895, + 0.027742663398385048, + -0.014801379293203354, + -0.09360803663730621, + -0.03210752457380295, + 0.06062982976436615, + -0.010170080699026585, + 0.0061643896624445915, + -0.04240984842181206, + 0.011215899139642715, + 0.02413448691368103, + -0.060025885701179504, + -0.1285787671804428, + -0.03672794625163078, + -0.05149029567837715, + -0.04197176918387413, + -0.006249273661524057, + -0.007031487766653299, + 0.013261023908853531, + -0.008110394701361656, + -0.058770183473825455, + -0.06474892795085907, + 0.061071667820215225, + 0.011319841258227825, + -0.020398778840899467, + -0.10911528766155243, + -0.0034506330266594887, + 0.07382375746965408, + -0.03215278312563896, + 0.07409638166427612, + -0.025237146764993668, + 0.02448408678174019, + -0.01763973757624626, + 0.030145833268761635, + 0.09761177003383636, + 0.02374398522078991, + 0.0074607860296964645, + 0.06703892350196838, + 0.009043179452419281, + 0.0007313797832466662, + -0.007888855412602425, + -0.005374306812882423, + -0.01781644858419895, + -0.051441602408885956, + -0.10397980362176895, + 0.06858665496110916, + -0.04831233620643616, + -0.10810168087482452, + 0.04166697710752487, + 0.04076250270009041, + -0.03055073320865631, + -0.06320980191230774, + 0.03115747682750225, + 0.03350847214460373, + 0.09206024557352066, + -0.020585117861628532, + -0.0744529664516449, + -0.03874050825834274, + -0.06345422565937042, + 0.011826194822788239, + -0.08143071830272675, + -0.042242564260959625, + -0.02777578867971897, + -0.04254448041319847, + -0.1321151852607727, + -0.026355227455496788, + 0.05496974289417267, + 0.059598952531814575, + 0.008707606233656406, + -0.022082405164837837, + -0.03392503410577774, + -0.06069052219390869, + 0.05487944558262825, + 0.07116271555423737, + 0.00886344164609909, + -0.03411547467112541, + 0.045317284762859344, + 0.07992333173751831, + 0.014742045663297176, + 0.01374778151512146, + -0.04537875950336456, + -0.027652190998196602, + -0.017966145649552345, + -0.044072624295949936, + -0.05409242957830429, + -0.07920128107070923, + -0.00489841541275382, + -0.05048983916640282, + 0.049732718616724014, + 0.07266881316900253, + -0.01567942649126053, + 0.07638971507549286, + 0.10757773369550705, + -0.07484541833400726, + -0.014063974842429161, + -0.022923335433006287, + 0.037532735615968704, + -0.03263912722468376, + 0.03169383108615875, + -0.08514822274446487, + -0.02421739138662815, + -1.3294266217594123e-33, + -0.027267945930361748, + 0.06398096680641174, + 0.031436987221241, + 0.035242483019828796, + 0.05370950326323509, + 0.0011062314733862877, + -0.02193043753504753, + -0.023389888927340508, + 0.019985264167189598, + 0.04363251104950905, + 0.054926712065935135, + 0.07547149807214737, + -0.018774881958961487, + 0.08256345987319946, + 0.08473742008209229, + -0.0396902821958065, + -0.041142258793115616, + 0.05188615992665291, + -0.1145387813448906, + -0.02097497694194317, + 0.02548983320593834, + 0.011274782009422779, + -0.033230964094400406, + -0.02325212024152279, + 0.03188454359769821, + 0.02061128243803978, + -0.033309806138277054, + 0.026807645335793495, + -0.06640632450580597, + 0.01382514089345932, + -0.0461672767996788, + 0.08142933249473572, + 0.04259161278605461, + -0.05491453781723976, + 0.021797850728034973, + 0.085333451628685, + -0.0014364705421030521, + -0.042157817631959915, + -0.048361822962760925, + 0.020669063553214073, + -0.03540721535682678, + 0.049482233822345734, + -0.05607220530509949, + -0.033885907381772995, + 0.005312727298587561, + 0.10647603869438171, + 0.017939450219273567, + -0.006913463119417429, + -0.01627381704747677, + 0.09335581958293915, + -0.10612378269433975, + -0.011183975264430046, + -0.03354320302605629, + -0.009318418800830841, + 0.056139323860406876, + -0.08387595415115356, + -0.016408033668994904, + 0.10042688250541687, + 0.013505559414625168, + 0.04134003445506096, + 0.0028993140440434217, + -0.03553612530231476, + -0.02505374699831009, + -0.007397359237074852, + -0.09390939027070999, + 0.03944118320941925, + 0.06639736145734787, + -0.00648735836148262, + 0.04886504262685776, + 0.03851689398288727, + -0.02753547951579094, + 0.09248604625463486, + -0.03304070979356766, + -0.018378490582108498, + 0.03843891620635986, + 0.01684802584350109, + -0.043238088488578796, + -0.01666896790266037, + -0.05979727953672409, + 0.021519942209124565, + -0.03642265126109123, + 0.10884465277194977, + -0.0526282861828804, + 0.058672159910202026, + 0.03074634075164795, + -0.006483766715973616, + -0.0642351359128952, + -0.07709404081106186, + 0.01265310775488615, + 0.03525802865624428, + -0.09132866561412811, + -0.0007544809486716986, + 0.07583033293485641, + -0.02004864625632763, + -0.11131028085947037, + -2.0709425550067715e-34, + -0.028551990166306496, + 0.029073508456349373, + -0.031106088310480118, + 0.014498417265713215, + 0.03662934899330139, + 0.025789184495806694, + 0.04688286408782005, + 0.017316678538918495, + -0.05527811124920845, + -0.040743403136730194, + -0.021100495010614395, + 0.006400345358997583, + -0.008146306499838829, + 0.01662488467991352, + -0.036522381007671356, + -0.0396600104868412, + 0.05836208164691925, + -0.09591561555862427, + 0.03229992836713791, + 0.07966970652341843, + 0.09690733999013901, + 0.00649505527690053, + -0.09900915622711182, + 0.024562129750847816, + -0.010561282746493816, + -0.007811539340764284, + 0.008647811599075794, + 0.0014485280262306333, + -0.0335339792072773, + 0.00186124537140131, + -0.0021633272990584373, + -0.009799185208976269, + 0.01868368871510029, + -0.026737896725535393, + 0.06676513701677322, + 0.08856300264596939, + 0.05053992196917534, + 0.010216968134045601, + -0.03281413018703461, + -0.11556293815374374, + 0.010668570175766945, + 0.0009947657817974687, + 0.03972277417778969, + -0.06482861191034317, + -0.01557867880910635, + -0.018624678254127502, + -0.08471022546291351, + 0.01167994923889637, + 0.006545423064380884, + 0.006186852231621742, + -0.027904534712433815, + -0.008111868984997272, + -0.01790858991444111, + -0.059708982706069946, + -0.061496883630752563, + -0.04412773251533508, + -0.049697667360305786, + 0.05003263056278229, + 0.01814977265894413, + 0.05337521806359291, + 0.06408575177192688, + 0.0031394667457789183, + -0.07910507172346115, + -0.016837215051054955, + 0.0184793621301651, + 0.03934808075428009, + 0.024019276723265648, + 0.016875475645065308, + 0.056468017399311066, + -0.010351551696658134, + -0.019041474908590317, + 0.030864601954817772, + 0.014982799999415874, + 0.014062589034438133, + 0.012929907999932766, + 0.002820146968588233, + 0.011657055467367172, + -0.02299993485212326, + 0.039746642112731934, + 0.11580336093902588, + -0.0065057841129601, + -0.01705247536301613, + 0.05745678022503853, + 0.05265868082642555, + 0.013938164338469505, + 0.11536073684692383, + -0.07758283615112305, + -0.04094446823000908, + -0.04917564243078232, + 0.026083556935191154, + -0.01632588542997837, + -0.012067954055964947, + -0.036583155393600464, + 0.03950870409607887, + -0.023580024018883705, + -1.7231567284170524e-08, + 0.04710588604211807, + -0.04642171785235405, + 0.02623995766043663, + -0.05071002244949341, + -0.037387948483228683, + -0.0011013164184987545, + 0.00997237116098404, + -0.06771498173475266, + -0.023753391578793526, + -0.0014734866563230753, + -0.026408487930893898, + 0.002441089367493987, + 0.009886547923088074, + 0.12877371907234192, + 0.06574136018753052, + 0.07283367961645126, + -0.07869566977024078, + 0.12376555055379868, + -0.033364202827215195, + -0.02515854686498642, + 0.04442492127418518, + 0.115183524787426, + 0.0903790295124054, + -0.10052337497472763, + 0.07853778451681137, + 0.020133931189775467, + -0.027476811781525612, + 0.030554061755537987, + 0.02553323283791542, + 0.08870120346546173, + 0.030990559607744217, + 0.05137898027896881, + -0.08349703997373581, + -0.009534069336950779, + -0.12113647162914276, + -0.11350306123495102, + -0.023589815944433212, + 0.03137560561299324, + -0.026886440813541412, + -0.010551088489592075, + -0.005574350710958242, + -0.02432321384549141, + 0.010682710446417332, + 0.005007345229387283, + 0.005137740634381771, + -0.007086665369570255, + 0.0802423506975174, + -0.06081269681453705, + -0.04687649756669998, + -0.09935552626848221, + -0.0631982609629631, + 0.0523306243121624, + 0.006256368942558765, + 0.04113604128360748, + 0.03479119390249252, + 0.015063611790537834, + 0.10266568511724472, + 0.04304139316082001, + -0.004117817617952824, + 0.022361312061548233, + 0.060781437903642654, + -0.01748223602771759, + 0.00860991608351469, + 0.07079697400331497 + ], + "virus-bold||germs,disease,illness": [ + -0.0176014956086874, + 0.016202980652451515, + -0.03620913624763489, + 0.01072017103433609, + 0.02756294421851635, + -0.02271743305027485, + 0.0698365867137909, + 0.07121768593788147, + -0.026647817343473434, + 0.05623774975538254, + 0.005651434883475304, + 0.018509909510612488, + 0.050305794924497604, + 0.0381665974855423, + -0.07739464193582535, + -0.000993694644421339, + -0.05854272469878197, + -0.04232226684689522, + 0.0010479879565536976, + 0.07978247106075287, + -0.00043493066914379597, + 0.11267158389091492, + 0.04146590456366539, + -0.02930626831948757, + -0.015852468088269234, + 0.03299201652407646, + -0.0018803043058142066, + 0.06439808011054993, + -0.011005598120391369, + 0.00031031170510686934, + -0.04995782673358917, + -0.010225620120763779, + 0.09282632917165756, + 0.005797247868031263, + 0.027456695213913918, + 0.030579665675759315, + -0.021168824285268784, + -0.06268851459026337, + 0.0059150271117687225, + 0.06971798837184906, + 0.055153682827949524, + 0.006302653346210718, + 0.03398541361093521, + 0.07886724174022675, + -0.03489844501018524, + 0.028229791671037674, + -0.11546022444963455, + 0.015322137624025345, + 0.05364399030804634, + -0.014702696353197098, + -0.033752068877220154, + -0.0812268853187561, + -0.04099133983254433, + 0.02054797112941742, + 0.016490289941430092, + 0.0061398777179419994, + -0.1308215856552124, + -0.08863114565610886, + -0.042681656777858734, + 0.018639270216226578, + -0.00848300475627184, + 0.04700636491179466, + 0.08815497159957886, + 0.017917506396770477, + 0.028361855074763298, + -0.03115927428007126, + 0.05545462295413017, + 0.09705883264541626, + 0.012055890634655952, + 0.06902911514043808, + 0.03824058547616005, + -0.010595607571303844, + -0.10264310240745544, + 0.08937633037567139, + -0.07654321938753128, + 0.01967444270849228, + 0.050978511571884155, + -0.008757849223911762, + 0.04427698999643326, + -0.03971745818853378, + -0.06079084426164627, + -0.04379640892148018, + 0.04867281764745712, + 0.012131364084780216, + -0.03379319608211517, + -0.005439385771751404, + -0.038186557590961456, + -0.07303652167320251, + 0.005031411536037922, + 0.033303532749414444, + -0.026140227913856506, + -0.06489095091819763, + 0.05577423423528671, + 0.056809064000844955, + -0.028140300884842873, + 0.05875999853014946, + 0.09445089101791382, + -0.06216444820165634, + -0.051103487610816956, + 0.06477734446525574, + -0.06993511319160461, + -0.07964549213647842, + 0.07128874212503433, + 0.013335190713405609, + -0.0373690165579319, + -0.01828780211508274, + -0.00864040944725275, + 0.005064554512500763, + -0.04340294748544693, + -0.024478185921907425, + -0.013161629438400269, + 0.005271304398775101, + 0.030024463310837746, + -0.09304437786340714, + 0.019352274015545845, + -0.020264094695448875, + -0.01986590586602688, + -0.0863233432173729, + 0.015198476612567902, + 0.016137687489390373, + -0.015232463367283344, + -0.07153627276420593, + -0.0002601768064778298, + -0.020261239260435104, + -0.010704143904149532, + -0.0032823190558701754, + 0.05650706961750984, + -3.162145925269187e-33, + 0.026782343164086342, + -0.021054523065686226, + 0.01551672350615263, + 0.11492087692022324, + 0.05810346454381943, + 0.03768298774957657, + -0.009749599732458591, + -0.04557740315794945, + -0.031290452927351, + -0.018038883805274963, + 0.04510748013854027, + -0.010021899826824665, + 0.04914405196905136, + 0.07516983896493912, + -0.06620074808597565, + 0.03801534324884415, + 0.0228718351572752, + -0.02160002291202545, + -0.08995355665683746, + 0.023747440427541733, + 0.056990087032318115, + 0.08298041671514511, + 0.0470893420279026, + -0.05914057791233063, + -0.00523190526291728, + -0.053102076053619385, + -0.06775414198637009, + -0.022967198863625526, + 0.042768705636262894, + -0.015311667695641518, + 0.034691255539655685, + 0.06984274834394455, + 0.0018883172888308764, + -0.011275901459157467, + -0.09409556537866592, + 0.03737576678395271, + -0.04843684658408165, + -0.042844388633966446, + -0.023902704939246178, + 0.008728361688554287, + 0.04251474514603615, + 0.008618627674877644, + 0.004278635140508413, + 0.027911994606256485, + 0.07664616405963898, + 0.07176226377487183, + -0.08581829816102982, + -0.041590385138988495, + -0.036582399159669876, + 0.05102774128317833, + 0.00440977280959487, + 0.02039053663611412, + 0.0025777455884963274, + -0.009335379116237164, + -0.035429999232292175, + -0.03158238157629967, + 0.019716674461960793, + 0.05543803051114082, + -0.02878277376294136, + -0.04698338359594345, + 0.07665799558162689, + 0.08282966911792755, + 0.04139259457588196, + -0.015410080552101135, + -0.04342281073331833, + -0.0760495513677597, + 0.00307791237719357, + -0.0009354034555144608, + -0.018599355593323708, + 0.06300687789916992, + 0.0105786994099617, + 0.0049054562114179134, + -0.032819729298353195, + -0.03013826347887516, + -0.021930541843175888, + 0.0003618610789999366, + -0.0714334174990654, + -0.0916706994175911, + -0.017906619235873222, + -0.06994691491127014, + -0.13784527778625488, + -0.0037588882260024548, + 0.0673656016588211, + 0.09549372643232346, + -0.03467840328812599, + 0.029157381504774094, + -0.05694759264588356, + -0.03112238086760044, + -0.011029528453946114, + 0.07200312614440918, + 0.024794312193989754, + 0.028033258393406868, + -0.023328419774770737, + -0.0030330659355968237, + -0.13644738495349884, + -6.616921985625967e-34, + 0.013660365715622902, + -0.006693837698549032, + -0.0541793517768383, + -0.007112480700016022, + -0.0286928229033947, + 0.08155173808336258, + 0.015162657015025616, + 0.05104030668735504, + -0.024587120860815048, + 0.0015078886644914746, + 0.035704903304576874, + -0.024058030918240547, + -0.05621884763240814, + -0.07608290761709213, + -0.0004289782955311239, + 0.0423690602183342, + 0.05552741140127182, + 0.09328380972146988, + -0.04317688196897507, + 0.0045640491880476475, + -0.08651654422283173, + 0.01176299899816513, + -0.0603066124022007, + 0.02704199030995369, + 0.012092381715774536, + 0.027522826567292213, + 0.056880731135606766, + 0.014686430804431438, + -0.11681272089481354, + -0.023538708686828613, + 0.02312914840877056, + 0.015775606036186218, + 0.02254902757704258, + 0.04908684641122818, + 0.001232281094416976, + 0.03563676029443741, + 0.05413021147251129, + -0.11521227657794952, + 0.03221689909696579, + -0.12678679823875427, + 0.029503047466278076, + 0.02679046057164669, + 0.0406266525387764, + 0.07773841172456741, + 0.009488202631473541, + 0.09251602739095688, + -0.046657245606184006, + 0.03145695477724075, + 0.09676138311624527, + 0.07684829831123352, + 0.039147283881902695, + -0.0595930740237236, + -0.0007377789006568491, + 0.01051489170640707, + -0.07812485098838806, + -0.07472559064626694, + -0.09687713533639908, + -0.047139644622802734, + -0.0009955884888768196, + 0.04382570460438728, + -0.01787923462688923, + -0.018907997757196426, + -0.11036565899848938, + -0.016850829124450684, + 0.02326367050409317, + 0.0070594847202301025, + 0.05738382786512375, + 0.04764069616794586, + 0.11894511431455612, + -0.11340431869029999, + 0.008439249359071255, + 0.03333047404885292, + -0.04890185967087746, + -0.049397122114896774, + 0.01702081598341465, + -0.017749615013599396, + -0.019379371777176857, + 0.009082234464585781, + 0.01255896408110857, + 0.02707371488213539, + -0.012461884878575802, + -0.04310271516442299, + -0.014841757714748383, + 0.021940460428595543, + 0.007479104679077864, + -0.01345175039023161, + -0.0008950306801125407, + 0.025386281311511993, + -0.008712208829820156, + 0.02985876239836216, + -0.024802010506391525, + 0.0036762412637472153, + -0.04496325924992561, + -0.050373733043670654, + -0.003097177017480135, + -1.9244449589450596e-08, + 0.07636246085166931, + -0.014275062829256058, + -0.03166941553354263, + -0.05585714429616928, + 0.022682102397084236, + 0.002678676974028349, + -0.1022370383143425, + -0.01051952876150608, + 0.052790988236665726, + 0.10196828097105026, + -0.013579016551375389, + 0.02746088244020939, + -0.01907670684158802, + -0.03590499237179756, + 0.08005073666572571, + 0.015724722295999527, + -0.1443951576948166, + 0.08309314399957657, + -0.08403868228197098, + -0.09743466973304749, + -0.03411301225423813, + 0.01124236173927784, + -0.04023453965783119, + 0.006246000528335571, + 0.034695398062467575, + -0.0035579227842390537, + -0.025306500494480133, + 0.00466734217479825, + 0.05331559106707573, + -0.0643119141459465, + -0.02957223355770111, + 0.07002357393503189, + -0.02532253786921501, + 0.06147053837776184, + -0.09661485254764557, + -0.05486304685473442, + 0.050907354801893234, + -0.04195648059248924, + 0.010447707958519459, + 0.03783253952860832, + 0.040192149579524994, + -0.04946195334196091, + 0.0029026856645941734, + -0.04507559537887573, + -0.0879262313246727, + -0.06216663494706154, + 0.013671860098838806, + 0.00016721828433219343, + 0.01115543395280838, + -0.0959077924489975, + 0.032101549208164215, + -0.0036002013366669416, + 0.03120698221027851, + 0.10834039747714996, + -0.11788984388113022, + -0.04465180262923241, + 0.0070854960940778255, + 0.05019738897681236, + 0.010683802887797356, + 0.0067957928404212, + 0.07038603723049164, + -0.08385506272315979, + 0.03624110668897629, + 0.050473202019929886 + ], + "visor-bold||*new*,goggles,vision": [ + -0.009923928417265415, + -0.025903308764100075, + 0.022517912089824677, + 0.0028404253534972668, + 0.0835924819111824, + -0.02645976096391678, + 0.09944417327642441, + -0.040643513202667236, + -0.00047951360465958714, + -0.003982501570135355, + 0.07373664528131485, + -0.03712978586554527, + -0.005122344009578228, + 0.010128267109394073, + 0.021081315353512764, + 0.0034871697425842285, + -0.015283684246242046, + 0.023597929626703262, + -0.017297491431236267, + -0.006417615804821253, + 0.06006857752799988, + 0.0036819179076701403, + -0.04870665445923805, + 0.04996446892619133, + -0.027940038591623306, + 0.07104925811290741, + 0.044812705367803574, + -0.08272045105695724, + 0.019436566159129143, + -0.05284019187092781, + -0.0767911896109581, + -0.030254660174250603, + 0.018211927264928818, + 0.0413958765566349, + -0.0010677925311028957, + -0.05526430532336235, + -0.015441520139575005, + 0.023442992940545082, + -0.05468033254146576, + 0.06451140344142914, + -0.03644412383437157, + -0.05719539523124695, + -0.10605940967798233, + -0.022178979590535164, + 0.009454735554754734, + 0.08992063999176025, + 0.04348669573664665, + 0.044130776077508926, + 0.034210849553346634, + -0.0004632655472960323, + -0.06653445214033127, + -0.0975283682346344, + -0.08564511686563492, + -0.0811186134815216, + 0.04806685820221901, + 0.061698202043771744, + -0.09388255327939987, + -0.05027139186859131, + 0.07545438408851624, + -0.031129978597164154, + 0.06616292148828506, + -0.0030421288684010506, + 0.046493932604789734, + 0.076987624168396, + -0.005042747128754854, + 0.0030127752106636763, + -0.03696770966053009, + -0.01886020600795746, + 0.01193714328110218, + 0.09247700124979019, + 0.0014772363938391209, + 0.04920177534222603, + 0.012481171637773514, + -0.07712634652853012, + -0.08380217105150223, + -0.018024489283561707, + 0.07257129997015, + -0.0027787131257355213, + 0.009615251794457436, + -0.004504087846726179, + -0.009117383509874344, + -0.037048641592264175, + -0.011662029661238194, + 0.009639379568397999, + 0.07496184855699539, + 0.05978165566921234, + -0.12864552438259125, + -0.09791348874568939, + -0.04444587230682373, + -0.004929014947265387, + -0.05234801396727562, + -0.01639511063694954, + -0.0500965490937233, + 0.025700146332383156, + 0.02219473198056221, + -0.029763322323560715, + 0.01553633064031601, + -0.04864633455872536, + 0.010258377529680729, + 0.09238852560520172, + 0.01576937362551689, + -0.027512596920132637, + 0.10292413085699081, + 0.04486272111535072, + 0.02178119868040085, + -0.003769997274503112, + 0.03058232180774212, + 0.032003194093704224, + 0.02038288675248623, + 0.03994469344615936, + 0.06319071352481842, + -0.05570285767316818, + 0.04289170354604721, + -0.05966167524456978, + -0.05697283521294594, + -0.009556609205901623, + -0.080537810921669, + 0.016288140788674355, + 0.0857309028506279, + 0.07813180238008499, + 0.04382789134979248, + -0.029513129964470863, + -0.00023243740724865347, + -0.0246447641402483, + 0.04626999422907829, + -0.0023214162793010473, + -0.04015151411294937, + -1.1028745138803944e-33, + 0.04556908458471298, + 0.06274399161338806, + -0.043350476771593094, + 0.10283801704645157, + -0.010499315336346626, + 0.05839046463370323, + -0.0034585860557854176, + -0.023455696180462837, + -0.0821637511253357, + 0.006422856356948614, + -0.001575614558532834, + 0.04284535348415375, + -0.09268496185541153, + 0.12011010944843292, + 0.035921983420848846, + -0.06859640032052994, + 0.010727250017225742, + 0.02333945780992508, + -0.11450374871492386, + -0.016809340566396713, + -0.03792516514658928, + 0.044207535684108734, + -0.04621053859591484, + -0.006322111934423447, + -0.028048211708664894, + 0.009784970432519913, + 0.04474978521466255, + -0.05701849237084389, + -0.08880912512540817, + 0.0392947681248188, + -0.012782138772308826, + 0.07623273134231567, + 0.08742760866880417, + 0.003785941516980529, + -0.006768454797565937, + 0.05796150118112564, + -0.043858837336301804, + -0.02358500473201275, + -0.024243932217359543, + -0.00028584690880961716, + -0.09544529020786285, + 0.030573319643735886, + -0.042765263468027115, + 0.009347799234092236, + -0.013462822884321213, + 0.1167384460568428, + -0.0069280159659683704, + 0.08750450611114502, + -0.051162928342819214, + -0.02562752552330494, + -0.024055154994130135, + 0.009278030134737492, + -0.08527150005102158, + -0.03955862671136856, + -0.038001496344804764, + -0.01500116940587759, + -0.04468774423003197, + 0.0932430550456047, + 0.013559559360146523, + -0.0704895555973053, + -0.03219316154718399, + 0.08203016966581345, + 0.03125375881791115, + 0.03578941524028778, + 1.7475555068813264e-05, + -0.013125881552696228, + -0.00031403792672790587, + 0.020058827474713326, + 0.013032447546720505, + -0.037493206560611725, + -0.019121991470456123, + 0.07978056371212006, + -0.027413582429289818, + 0.027921609580516815, + 0.014393117278814316, + 0.004723279271274805, + 0.05285636708140373, + 0.01100122183561325, + 0.029896147549152374, + -0.08886440098285675, + -0.07989590615034103, + 0.06493465602397919, + 0.018638551235198975, + 0.036043666303157806, + 0.005356913898140192, + 0.018362371250987053, + 0.02366771176457405, + -0.06718093901872635, + -0.04554673656821251, + 0.006840519607067108, + -0.014811043627560139, + -0.03010161779820919, + -0.03202900290489197, + -0.06094977259635925, + -0.07723716646432877, + -1.4322342556563756e-33, + 0.014531637541949749, + -0.0264164749532938, + 0.01575668528676033, + 0.004578472580760717, + -0.011339918710291386, + -0.00178991025313735, + 0.0446140430867672, + 0.0773041769862175, + 0.030380845069885254, + -0.008021051995456219, + 0.04137495532631874, + 0.004978856537491083, + -0.0635511726140976, + -0.03246551379561424, + 0.05180029571056366, + 0.026334309950470924, + 0.0083816172555089, + 0.024469925090670586, + -0.04374687373638153, + 0.03271356225013733, + 0.0252535380423069, + -0.028989627957344055, + -0.05287710577249527, + 0.011429288424551487, + -0.055703163146972656, + 0.05796525999903679, + 0.03426281735301018, + -0.021049128845334053, + -0.12921208143234253, + -0.04318465292453766, + -0.02395506761968136, + -0.06383796781301498, + -0.0017299054889008403, + 0.12085121124982834, + 0.01645899936556816, + 0.04012547433376312, + -0.03755573555827141, + -0.07456905394792557, + -0.03313721343874931, + 0.018973208963871002, + -0.014359332621097565, + -0.03775501251220703, + 0.086186982691288, + 0.019467167556285858, + -0.004823719616979361, + -0.035295601934194565, + 0.012116978876292706, + -0.05345620587468147, + -0.025810398161411285, + 0.010417493991553783, + -0.05095552280545235, + -0.06587885320186615, + 0.0003118830209132284, + 0.016293227672576904, + -0.08670447766780853, + -0.01575925573706627, + -0.021674813702702522, + -0.017512010410428047, + -0.014762935228645802, + 0.07351560890674591, + 0.03448805212974548, + -0.004888438154011965, + -0.11313538998365402, + 0.032462675124406815, + -6.901247979840264e-05, + -0.0604933500289917, + 0.00501264538615942, + -0.002296800957992673, + 0.05454983934760094, + 0.003885501530021429, + 0.08928880840539932, + -0.06272319704294205, + -0.04067687690258026, + 0.007115891203284264, + 0.011140375398099422, + -0.06987791508436203, + 0.018806371837854385, + 0.031434569507837296, + -0.020032133907079697, + 0.09933381527662277, + -0.03607778623700142, + -0.029516523703932762, + 0.028831154108047485, + 0.10447941720485687, + 0.015332923270761967, + 0.09595846384763718, + 0.016499869525432587, + 0.006968029774725437, + -0.0013734519015997648, + -0.001507743145339191, + -0.087249755859375, + 0.025521114468574524, + -0.050397489219903946, + 0.026369068771600723, + -0.044765882194042206, + -2.0226000430056956e-08, + -0.024531837552785873, + 0.02126225270330906, + -0.02959541417658329, + -0.06936299800872803, + 0.010809587314724922, + -0.06312964856624603, + -0.09449668228626251, + -0.026651808992028236, + -0.1129542887210846, + -0.05174369364976883, + 0.012171614915132523, + -0.017824240028858185, + -0.013429248705506325, + -0.005254568997770548, + 0.1164555475115776, + 0.021282291039824486, + -0.05363921448588371, + 0.06471025198698044, + -0.046311650425195694, + -0.07659647613763809, + -0.03786826878786087, + 0.025519076734781265, + 0.059681158512830734, + 0.029114725068211555, + 0.01969258114695549, + 0.0047629899345338345, + -0.040357593446969986, + -0.008583031594753265, + 0.018900437280535698, + 0.08913695067167282, + 0.06477905809879303, + 0.09581560641527176, + -0.008601481094956398, + 0.034915708005428314, + -0.04694106802344322, + -0.0024198885075747967, + -0.08056947588920593, + 0.05170050635933876, + 0.01956082507967949, + 0.11858823150396347, + -0.030675945803523064, + 0.0020821429789066315, + 0.07878427952528, + 0.038270819932222366, + -0.05147154629230499, + -0.018172144889831543, + 0.08980182558298111, + -0.12894484400749207, + -0.10933253169059753, + -0.07326462864875793, + 0.009803052060306072, + 0.007381650619208813, + -0.00802997499704361, + 0.1524674892425537, + -0.06527495384216309, + -0.08407775312662125, + 0.07082188874483109, + 0.04346117749810219, + -0.05862277373671532, + 0.018803194165229797, + 0.06651502102613449, + -0.009967462159693241, + 0.005430017132312059, + 0.014887108467519283 + ], + "voicemail-bold||phonecalls,missed,recording,telephone,landline": [ + -0.07184017449617386, + -0.04426067695021629, + 0.05411452427506447, + -0.045480526983737946, + -0.012928333133459091, + -0.04389588162302971, + 0.03027261234819889, + -0.019402360543608665, + 0.06086433678865433, + -0.08086768537759781, + -0.07140354067087173, + -0.014965830370783806, + -0.010563921183347702, + -0.024872198700904846, + -0.041413962841033936, + -0.047524139285087585, + -0.01763206161558628, + -0.0015836581587791443, + -0.041854217648506165, + 0.07035524398088455, + 0.0012237729970365763, + 0.13844415545463562, + 0.02825091779232025, + 0.018881097435951233, + 0.11059257388114929, + -0.031365685164928436, + -0.04947929084300995, + 0.02523748017847538, + 0.0123484767973423, + -0.06336813420057297, + -0.0018896384863182902, + 0.11176466196775436, + 0.15742366015911102, + 0.03271140530705452, + 0.041575878858566284, + 0.036877989768981934, + 0.038504526019096375, + 0.03529449552297592, + -0.04883619025349617, + -0.013439903035759926, + 0.0032538806553930044, + -0.015857554972171783, + 0.028568550944328308, + 0.03061230108141899, + -0.054106704890728, + -0.05533946678042412, + -0.0913260281085968, + 0.005113003309816122, + -0.020738212391734123, + 0.009556714445352554, + 0.011933005414903164, + -0.050102341920137405, + -0.07214206457138062, + 0.05444399267435074, + -0.08585735410451889, + 0.03254525363445282, + 0.016186334192752838, + 0.04797789826989174, + 0.03669348359107971, + 0.043355975300073624, + -0.029549892991781235, + 0.07870511710643768, + -0.048372697085142136, + 0.001369243604131043, + -0.025233224034309387, + 0.046149976551532745, + -0.10632278025150299, + -0.046773046255111694, + 0.021465986967086792, + 0.04911145195364952, + -0.08162856101989746, + 0.01288929209113121, + 0.008275450207293034, + 0.027515335008502007, + -0.0060554388910532, + -0.0029225002508610487, + 0.008272065781056881, + -0.058223553001880646, + -0.013795657083392143, + -0.0023858570493757725, + -0.03373469039797783, + -0.09365261346101761, + 0.00770553108304739, + -0.0025399192236363888, + 0.12868338823318481, + -0.012887617573142052, + -0.043455544859170914, + -0.04409073665738106, + -0.009525744244456291, + -0.0636354386806488, + -0.10112570226192474, + -0.038746386766433716, + -0.055787961930036545, + 0.03518753871321678, + -0.13791073858737946, + 0.014499499462544918, + -0.03735416755080223, + -0.0630853995680809, + -0.04232347756624222, + 0.08647889643907547, + 0.055471938103437424, + 0.017456209287047386, + -0.011274495162069798, + -0.017526131123304367, + -0.029679518193006516, + -0.062099918723106384, + -0.032380666583776474, + -0.0609724186360836, + -0.014801270328462124, + 0.005812064744532108, + 0.016770627349615097, + -0.04661696404218674, + -0.020043471828103065, + -0.034793104976415634, + 0.03490840271115303, + -0.05902572721242905, + -0.056956540793180466, + -0.029513513669371605, + 0.13873988389968872, + -0.021019885316491127, + -0.08058157563209534, + -0.026404988020658493, + -0.02596951834857464, + -0.06064930558204651, + -0.012141842395067215, + -0.021663522347807884, + 0.14720840752124786, + -1.4667936058995586e-33, + 0.0017414340982213616, + 0.06090686097741127, + 0.011116343550384045, + 0.05969812348484993, + 0.04097752273082733, + -0.014293532818555832, + -0.020281048491597176, + -0.004894609097391367, + -0.008918591775000095, + 0.019072633236646652, + 0.01935659348964691, + 0.00887036882340908, + 0.05282525345683098, + -0.02552841603755951, + -0.02894011326134205, + 0.04223078861832619, + 0.007512331008911133, + -0.012758978642523289, + -0.03150474280118942, + -0.02687445655465126, + 0.007629055995494127, + 0.065970778465271, + 0.03865304961800575, + 0.020548727363348007, + 0.12290211021900177, + -0.0675208792090416, + 0.07008831948041916, + -0.030182184651494026, + 0.037182264029979706, + 0.025340469554066658, + 0.015608269721269608, + -0.007505976594984531, + 0.07676437497138977, + 0.06723751127719879, + 0.0501694492995739, + 0.10408519953489304, + -0.0028556878678500652, + -0.05715739354491234, + -0.05735233426094055, + 0.06179526820778847, + -0.07924503087997437, + -0.004241272807121277, + -0.023576965555548668, + -0.053794506937265396, + -0.02492930181324482, + 0.03253939375281334, + -0.006387512665241957, + 0.004128572531044483, + 0.06793230026960373, + 0.0361306294798851, + -0.016447924077510834, + 0.04163041338324547, + -0.01614878699183464, + -0.007650988642126322, + -0.01021613646298647, + -0.038382645696401596, + 0.04587944597005844, + -0.029335737228393555, + 0.02389385737478733, + 0.0063042971305549145, + 0.036199260503053665, + -0.054102372378110886, + 0.0420764796435833, + -0.045536335557699203, + -0.02007933519780636, + -0.05692711099982262, + -0.043434180319309235, + -0.033737458288669586, + 0.01979874074459076, + 0.003632655832916498, + 0.026376506313681602, + 0.008784967474639416, + 0.09096305817365646, + 0.09711244702339172, + -0.02079489827156067, + 0.07719356566667557, + 0.028709586709737778, + 0.019613660871982574, + 0.034969229251146317, + 0.022202886641025543, + 0.01142707746475935, + 0.031313467770814896, + -0.05582698434591293, + 0.09394510835409164, + 0.08010968565940857, + -0.03702304884791374, + -0.01499649602919817, + -0.12279804050922394, + -0.05507127195596695, + 0.1381356120109558, + -0.13010486960411072, + -0.07343372702598572, + -0.06406719982624054, + 0.014817480929195881, + -0.08702149987220764, + -8.770317433737008e-34, + -0.017737654969096184, + 0.03595919534564018, + -0.023052072152495384, + 0.03409981355071068, + -0.06223509460687637, + -0.016609279438853264, + 0.10680758208036423, + 0.09084124863147736, + 0.013853516429662704, + 0.01937350258231163, + 0.0022725032176822424, + 0.028773078694939613, + 0.041535984724760056, + -0.01594853214919567, + -0.04221084341406822, + -0.0023266621865332127, + 0.04694492369890213, + -0.021976832300424576, + -0.011542321182787418, + 0.06683454662561417, + 0.021605193614959717, + -0.00983446091413498, + -0.022888805717229843, + 0.13311374187469482, + -0.00048478515236638486, + -0.023532450199127197, + -0.05927784740924835, + 0.020049013197422028, + -0.008310266770422459, + -0.08231297880411148, + -0.015502547845244408, + 0.013590206392109394, + 0.01044788770377636, + 0.02797533944249153, + -0.0360848605632782, + 0.03440205007791519, + 0.1080377995967865, + 0.055714040994644165, + 0.037201203405857086, + -0.012732344679534435, + 0.06923570483922958, + 0.06218443810939789, + 0.04289264231920242, + -0.046205587685108185, + 0.0015455622924491763, + -0.05981986224651337, + -0.09602859616279602, + 0.04265212267637253, + -0.07986454665660858, + 0.036835309118032455, + 0.051032159477472305, + -0.025652972981333733, + 0.03196854889392853, + 0.09296201169490814, + -0.07660916447639465, + 0.03150542080402374, + 0.03586113825440407, + -0.08522794395685196, + 0.043836839497089386, + 0.06169437617063522, + -0.00117555633187294, + -0.04558442905545235, + -0.036042243242263794, + -0.06979063153266907, + 0.07104659080505371, + 0.03329367935657501, + 0.03820495679974556, + -0.017873836681246758, + 0.07359766960144043, + 0.006461138371378183, + -0.01579449139535427, + -0.049387041479349136, + -0.02576240710914135, + -0.03212610259652138, + -0.0045580086298286915, + -0.009546064771711826, + -0.07875191420316696, + -0.015703339129686356, + -0.05389854684472084, + 0.005745250731706619, + 0.06562665104866028, + -0.04946944862604141, + -0.026376791298389435, + 0.002451004460453987, + 0.033828288316726685, + 0.08103277534246445, + 0.031171532347798347, + 0.01947924867272377, + 0.04529697820544243, + -0.04272380471229553, + -0.05175681412220001, + 0.05752876400947571, + -0.05180545896291733, + 0.017465991899371147, + -0.045869141817092896, + -2.177570657124761e-08, + 0.01158902607858181, + -0.022264389321208, + 0.013350596651434898, + -0.06253499537706375, + -0.013992720283567905, + -0.09006602317094803, + 0.05652844160795212, + -0.0721600204706192, + 0.03520219773054123, + -0.03149699047207832, + -0.04503630846738815, + -0.10477929562330246, + -0.065861776471138, + 0.017929673194885254, + 0.06498745083808899, + -0.0019631197210401297, + -0.0135245556011796, + 0.02928035706281662, + -0.0562736839056015, + -0.03568873181939125, + 0.05363408848643303, + 0.07840892672538757, + -0.0008491173502989113, + -0.03498624265193939, + 0.03789803013205528, + -0.030284900218248367, + 0.013435864821076393, + 0.10466782003641129, + 0.014435137622058392, + -0.01746734417974949, + 0.0009874663082882762, + 0.06263777613639832, + -0.04035025089979172, + -0.014312895014882088, + -0.15555524826049805, + -0.018514785915613174, + -0.008709270507097244, + -0.05010099336504936, + 0.014759575948119164, + 0.011515596881508827, + 0.04670797660946846, + -0.051304031163454056, + -0.05526009202003479, + 0.011819650419056416, + 0.06805168837308884, + -0.014778460375964642, + 0.010061309672892094, + -0.0498688705265522, + 0.027079567313194275, + -0.08410607278347015, + -0.030576014891266823, + 0.004808131139725447, + 0.030202077701687813, + 0.03183911368250847, + 0.016689695417881012, + -0.057172276079654694, + 0.05805372819304466, + -0.014780283905565739, + 0.03358551487326622, + 0.06590213626623154, + 0.007967246696352959, + -0.00045032918569631875, + -0.05330529063940048, + 0.0033367422875016928 + ], + "volleyball-bold||sports": [ + -0.011577501893043518, + 0.0459119938313961, + 0.011146105825901031, + -0.043018266558647156, + -0.023635847494006157, + 0.009915117174386978, + 0.05293603241443634, + -0.062127258628606796, + 0.0504346527159214, + 0.07339724898338318, + -0.044134072959423065, + -0.006145032588392496, + 0.03413131460547447, + -0.010866088792681694, + 0.050290342420339584, + 0.02506192959845066, + 0.07380535453557968, + 0.045554324984550476, + 0.002350274007767439, + -0.011373840272426605, + 0.033223263919353485, + 0.05293753370642662, + -0.022973928600549698, + 0.0218207985162735, + 0.028338445350527763, + 0.007055779919028282, + 0.03598003834486008, + 0.0796220675110817, + -0.09536439180374146, + -0.05775962769985199, + -0.06167854368686676, + -0.0035401671193540096, + 0.06001104414463043, + 0.057782962918281555, + -0.03488187491893768, + 0.03167138621211052, + -0.027119901031255722, + -0.024637490510940552, + -0.0025116493925452232, + 0.09398974478244781, + 0.023031312972307205, + -0.08342564851045609, + 0.05304548144340515, + 0.011266468092799187, + -0.06317919492721558, + 0.07762903720140457, + -0.01015253085643053, + -0.02093994989991188, + -0.024038664996623993, + 0.09063123166561127, + -0.014665310271084309, + -0.015488549135625362, + 0.000309578375890851, + 0.020611772313714027, + 0.06892367452383041, + 0.03953415900468826, + -0.030682140961289406, + 0.06013358011841774, + -0.014660379849374294, + 0.00640358729287982, + 0.010279514826834202, + 0.03408770263195038, + -0.031182697042822838, + 0.0663374736905098, + -0.0477125383913517, + -0.05240057036280632, + 0.0008887968142516911, + 0.031487561762332916, + -0.029258402064442635, + -0.026650400832295418, + 0.05881394073367119, + 0.0031969191040843725, + 0.011488315649330616, + -0.03995046392083168, + 0.02324974164366722, + 0.06750500947237015, + 0.0692334771156311, + -0.01730545610189438, + -0.030101066455245018, + -0.05643697455525398, + -0.04892757162451744, + -0.1387951672077179, + -0.09066648036241531, + 0.004621472675353289, + 0.00879674032330513, + -0.014150840230286121, + -0.022540973499417305, + -0.0009706895798444748, + 0.011292368173599243, + 0.0321347676217556, + -0.10334751754999161, + 0.01442188210785389, + 0.0372462272644043, + 0.06450830399990082, + -0.06298966705799103, + 0.11082100868225098, + -0.07612017542123795, + -0.0804695412516594, + -0.05322851613163948, + 0.09801702946424484, + 0.042298633605241776, + 0.05044929310679436, + 0.04839621111750603, + 0.05129510536789894, + 0.03346638008952141, + -0.029131941497325897, + 0.030466772615909576, + 0.0552007257938385, + 0.040979791432619095, + 0.029798535630106926, + 0.007254003547132015, + -0.053652528673410416, + 0.022908668965101242, + 0.024428077042102814, + -0.06805530935525894, + 0.014037572778761387, + 0.030375001952052116, + -0.030292293056845665, + 0.0115926843136549, + 0.033206507563591, + 0.039784256368875504, + -0.040562666952610016, + -0.06651279330253601, + -0.0375678576529026, + 0.0028268483001738787, + 0.09616312384605408, + 0.06957755237817764, + -5.4611494912746004e-33, + 0.02423589862883091, + -0.02777240052819252, + -0.001291961409151554, + 0.06338240206241608, + -0.06000535190105438, + -0.030736012384295464, + 0.008626861497759819, + -0.09266743063926697, + -0.057058434933423996, + -0.01725909486413002, + 0.007961142808198929, + 0.08321375399827957, + -0.011644387617707253, + 0.051726195961236954, + 0.09761034697294235, + -0.039877988398075104, + 0.0023974322248250246, + -0.06158838048577309, + -0.04599815234541893, + 0.0602528378367424, + 0.011363908648490906, + 0.04796904698014259, + -0.048532068729400635, + -0.06652390956878662, + -0.11342784762382507, + -0.006336025428026915, + 0.04934264346957207, + -0.11725207418203354, + -0.046279966831207275, + 0.028360793367028236, + 0.08178063482046127, + -0.026346856728196144, + -0.01119611319154501, + 0.040552105754613876, + 0.03456146642565727, + 0.007550493814051151, + -0.01022510789334774, + -0.00568876089528203, + 0.0006494211847893894, + -0.019005827605724335, + -0.06278319656848907, + -0.05384330824017525, + -0.03369709476828575, + 0.011018889024853706, + 0.013057472184300423, + 0.03643317148089409, + -0.04588335007429123, + -0.08362189680337906, + 0.006166757550090551, + -0.03714687377214432, + 0.03365405648946762, + -0.010223924182355404, + 0.05998573824763298, + -0.04512171447277069, + 0.05075248330831528, + -0.039779115468263626, + 0.02209519036114216, + 0.0472433976829052, + -0.08944567292928696, + -0.06570017337799072, + 0.03514106944203377, + -0.00817112810909748, + 0.06230970472097397, + 0.010492230765521526, + -0.01592389866709709, + 0.005892908200621605, + 0.03832975775003433, + -0.00820255745202303, + 0.09474622458219528, + -0.07319165766239166, + 0.03344064950942993, + 0.015358763746917248, + 0.06119544431567192, + 0.02131110616028309, + 0.02378874644637108, + 0.07239829748868942, + 0.0412631519138813, + -0.015227851457893848, + 0.005576412193477154, + -0.08535727113485336, + -0.02556592971086502, + -0.0171163622289896, + -0.09401240199804306, + 0.040638092905282974, + 0.0007814624696038663, + 0.01828877069056034, + -0.0035597255919128656, + -0.07027387619018555, + -0.005337102804332972, + 0.05675288662314415, + -0.12987710535526276, + -0.025807280093431473, + -0.07296933233737946, + 0.004898110870271921, + -0.09026972204446793, + 2.474693319021297e-33, + 0.019680561497807503, + 0.011337467469274998, + -0.03591237589716911, + -0.04546549543738365, + 0.022289423272013664, + -0.0008746417006477714, + -0.0002138856943929568, + 0.11010865122079849, + -0.016419826075434685, + 0.045958735048770905, + 0.010920364409685135, + -0.10184311866760254, + -0.07019184529781342, + -0.055722907185554504, + 0.03173882141709328, + -0.039291929453611374, + 0.021033843979239464, + 0.07250165194272995, + -0.011542391031980515, + 0.05869670957326889, + 0.02744274027645588, + -0.016726989299058914, + -0.03363310545682907, + 0.09419696033000946, + 0.009602269157767296, + -0.009982054121792316, + 0.03395315259695053, + 0.02199840173125267, + -0.09510616958141327, + -0.04410827159881592, + 0.022285817191004753, + 0.032197847962379456, + 0.08546973764896393, + 0.032312408089637756, + -0.08102451264858246, + 0.09583874046802521, + 0.038460616022348404, + -0.03691079840064049, + 0.04276427626609802, + -0.06941244006156921, + 0.05002019554376602, + -0.07007579505443573, + -0.009969174861907959, + 0.01009201630949974, + 0.03931745886802673, + 0.004815654829144478, + -0.049459367990493774, + 0.0034982224460691214, + -0.047116510570049286, + 0.07321561127901077, + -0.05553657189011574, + -0.027098851278424263, + -0.05329664424061775, + 0.011226550675928593, + 0.03665938973426819, + -0.06702139973640442, + -0.04859135299921036, + -0.012723740190267563, + -0.07319100201129913, + -0.011892653070390224, + -0.022701220586895943, + 0.1142861470580101, + -0.1332230120897293, + 0.10610164701938629, + 0.040473274886608124, + 0.06209986284375191, + 0.0007221237756311893, + -0.04413073882460594, + -0.07581723481416702, + 0.009114697575569153, + -0.0691956877708435, + -0.01065525971353054, + -0.022741762921214104, + 0.029975371435284615, + 0.03402635455131531, + -0.05015381798148155, + -0.04570269584655762, + 0.09556367993354797, + -0.03492291271686554, + 0.08968758583068848, + -0.04031476378440857, + -0.03655971214175224, + -0.0821639895439148, + 0.053551606833934784, + 0.00419880636036396, + 0.03935803100466728, + 0.06243753805756569, + 0.06526152044534683, + -0.0407625287771225, + -0.017717447131872177, + 0.05547446757555008, + 0.045630134642124176, + -0.04549821838736534, + -0.06917648762464523, + 0.027726542204618454, + -1.4554952798562226e-08, + 0.0339348204433918, + 0.09282031655311584, + -0.0567045696079731, + 0.010578306391835213, + -0.032577238976955414, + 0.0034711286425590515, + -0.011948131024837494, + -0.08580667525529861, + -0.0029214739333838224, + -0.06397122144699097, + 0.02302466705441475, + -0.03909111022949219, + 0.031280066817998886, + -0.012660011649131775, + 0.041898827999830246, + 0.0561942458152771, + -0.11237610131502151, + 0.05665942654013634, + -0.06409678608179092, + 0.01603209786117077, + -0.009132406674325466, + -0.008498224429786205, + -0.019795840606093407, + -0.03548801317811012, + -0.02471056394279003, + -0.010255513712763786, + -0.12998275458812714, + -0.06660646200180054, + 0.0031562750227749348, + -0.006255888845771551, + 0.06020020321011543, + 0.04598258063197136, + 0.030700111761689186, + -0.0377032645046711, + -0.09055633097887039, + 0.0410299077630043, + 0.06309480220079422, + -0.08261404186487198, + -0.006615620572119951, + 0.07497268915176392, + -0.09004556387662888, + -0.00091550376964733, + 0.030896620824933052, + -0.025068603456020355, + 0.011976946145296097, + -0.02233787253499031, + 0.07983813434839249, + -0.06347095221281052, + -0.07358228415250778, + -0.07720304280519485, + -0.028765030205249786, + 0.0047001163475215435, + 0.051952678710222244, + -0.011379349045455456, + -0.01765534281730652, + 0.05308958888053894, + -0.007963278330862522, + 0.08358399569988251, + -0.009852788411080837, + 0.03677970543503761, + 0.14876368641853333, + -0.002547054085880518, + -0.015531004406511784, + 0.04566680267453194 + ], + "wall-bold||firewall,security,secured,blocks,bricks": [ + 0.02679159864783287, + 0.07002881914377213, + -0.09182094037532806, + 0.0017208551289513707, + 0.06109583377838135, + -0.011082631535828114, + 0.00019943444931413978, + -0.042411234229803085, + -0.06766543537378311, + -0.03118300251662731, + 0.00676259770989418, + 0.0015653868904337287, + 0.0678466409444809, + 0.01884673722088337, + 0.04855481535196304, + 0.01866462454199791, + 0.0170699805021286, + -0.03944616764783859, + -0.0006604930968023837, + -0.020456969738006592, + -0.046749942004680634, + -0.0016071073478087783, + -0.0401720255613327, + -0.030934082344174385, + 0.001920933835208416, + 0.015462207607924938, + 0.01117456890642643, + -0.008605225011706352, + 0.002649550326168537, + -0.10365070402622223, + -0.05699402093887329, + -0.04342665150761604, + 0.05398603901267052, + 0.06486260890960693, + 0.0324474535882473, + -0.015821324661374092, + 0.049645911902189255, + 0.018477845937013626, + -0.004447343293577433, + -0.022252198308706284, + 0.0017662998288869858, + -0.06945355236530304, + -0.027549562975764275, + 0.05180955305695534, + -0.025806130841374397, + -0.0010985799599438906, + -0.034383565187454224, + -0.0493478924036026, + 0.005617722403258085, + -0.02973797731101513, + -0.01176559180021286, + 0.00026139611145481467, + -0.09051791578531265, + 0.0474201925098896, + 0.05578494817018509, + -0.06431210786104202, + 0.004295059479773045, + 0.016534285619854927, + 0.05567174404859543, + -0.048253633081912994, + 0.0584275908768177, + 0.04177061840891838, + -0.029445018619298935, + 0.07150416076183319, + 0.035949211567640305, + -0.0365062952041626, + -0.04377034306526184, + 0.07581593841314316, + -0.003770597279071808, + 0.01949864625930786, + 0.03472186252474785, + 0.013000460341572762, + 0.019641408696770668, + -0.010371272452175617, + 0.05143093690276146, + -0.007896102033555508, + -0.029061108827590942, + 0.031401392072439194, + -0.010630887001752853, + -0.08685804158449173, + -0.04558919742703438, + -0.08065769821405411, + -0.08720587939023972, + 0.027875438332557678, + -0.034432463347911835, + 0.04038885608315468, + -0.09551355987787247, + -0.07618197798728943, + 0.062468402087688446, + -0.019219424575567245, + -0.02356819249689579, + -0.01839153841137886, + 0.07321454584598541, + 0.08718066662549973, + -0.007564428728073835, + -0.03893912211060524, + 0.02433839999139309, + -0.09907086193561554, + -0.13762864470481873, + 0.07615618407726288, + 0.03382407873868942, + -0.011111338622868061, + 0.006165042519569397, + 0.017169876024127007, + 0.007158322259783745, + -0.03376322612166405, + -0.004674678668379784, + 0.0062258061952888966, + 0.0014175156829878688, + 0.043375469744205475, + 0.01019245944917202, + -0.0975177213549614, + -0.05325021967291832, + -0.06907222419977188, + -0.043440137058496475, + -0.06826940923929214, + -0.06874951720237732, + -0.04357815533876419, + 0.12177836894989014, + 0.01653873734176159, + 0.05261563882231712, + 0.07539761066436768, + 0.01289499644190073, + -0.09637254476547241, + -0.02075382135808468, + -0.03304053843021393, + -0.006604382768273354, + -3.445152067701407e-33, + 0.023514972999691963, + 0.047740403562784195, + -0.1242634579539299, + 0.08510974049568176, + 0.07229181379079819, + -0.020502978935837746, + 0.005723871290683746, + -0.03334846347570419, + -0.01658317632973194, + 0.07758156210184097, + 0.046674538403749466, + 0.04785280302166939, + -0.0037210825830698013, + 0.07223731279373169, + 0.07705768197774887, + -0.028483636677265167, + -0.0016310482751578093, + -0.059160735458135605, + -0.026766369119286537, + 0.08252587914466858, + 0.006103560794144869, + 0.055296190083026886, + 0.013284679502248764, + 0.06104379892349243, + 0.03241072595119476, + -0.06495820730924606, + 0.004077833611518145, + -0.002032562857493758, + -0.03243749588727951, + 0.05309560149908066, + -0.021853405982255936, + 0.02723838947713375, + 0.04742088168859482, + 0.025070955976843834, + 0.013857255689799786, + 0.07182257622480392, + -0.036640714854002, + -0.08867468684911728, + -0.01605411060154438, + -0.09652085602283478, + -0.07702848315238953, + -0.0771789699792862, + -0.06034529209136963, + -0.0011726683005690575, + 0.09952949732542038, + 0.06119918450713158, + -0.05336976796388626, + -0.050276704132556915, + -0.07924765348434448, + -0.019525298848748207, + -0.036487746983766556, + 0.009440692141652107, + -0.05320543795824051, + 0.011106804944574833, + 0.016970057040452957, + -0.10241523385047913, + -0.0026639176066964865, + 0.0981382504105568, + 0.028221827000379562, + 0.06447495520114899, + 0.003891673870384693, + 0.07168303430080414, + 0.026352254673838615, + 0.01582328975200653, + -0.0667862594127655, + 0.039472416043281555, + -0.06503871083259583, + 0.07116034626960754, + 0.06623335182666779, + -0.024410249665379524, + -0.05755726993083954, + 0.07753929495811462, + 0.08176661282777786, + 0.06950318068265915, + -0.04789714887738228, + 0.0009253529133275151, + -0.035769011825323105, + 0.028912756592035294, + -0.03529297932982445, + -0.027333570644259453, + -0.0641503781080246, + 0.04578056186437607, + -0.03491624817252159, + 0.09279574453830719, + -0.009674794040620327, + 0.02680075727403164, + 0.02556154876947403, + -0.05833757668733597, + -0.04795801267027855, + 0.07157226651906967, + -0.051565982401371, + -0.024419523775577545, + 0.09267422556877136, + 0.02773512899875641, + -0.0787818655371666, + 6.609189436849464e-34, + -0.004071508068591356, + -0.000986655824817717, + -0.004154096823185682, + -0.026305463165044785, + -0.06370620429515839, + -0.01529222633689642, + 0.003369203070178628, + -0.013531162403523922, + -0.002002906519919634, + 0.0810253843665123, + -0.04153704270720482, + 0.020574135705828667, + 0.02373484894633293, + -0.048561062663793564, + 0.046918921172618866, + -0.001871374435722828, + 0.03793175891041756, + 0.000532431760802865, + -0.026096513494849205, + 0.0367547944188118, + -0.06608445942401886, + 0.0017261854372918606, + -0.12264705449342728, + 0.11890654265880585, + -0.003326042555272579, + 0.06564301997423172, + -0.03155384585261345, + -0.0720299705862999, + -0.01854066736996174, + 0.016108820214867592, + -0.044701579958200455, + -0.029353365302085876, + -0.040287330746650696, + 0.08208315819501877, + -0.022112248465418816, + 0.024122068658471107, + 0.11736182868480682, + -0.0008153060334734619, + -0.011706053279340267, + -0.13580423593521118, + 0.03270900994539261, + 0.06743718683719635, + 0.007673271931707859, + 0.03425205126404762, + -0.06402324140071869, + 0.030381884425878525, + 0.01132111344486475, + -0.07535234093666077, + -0.0923134982585907, + 0.044766392558813095, + 0.04483328014612198, + -0.013562713749706745, + 0.006783067248761654, + -0.03175297752022743, + -0.002348497975617647, + -0.048369310796260834, + 0.023667018860578537, + 0.0895366445183754, + 0.07022787630558014, + 0.08904807269573212, + 0.07158210128545761, + -0.03178637474775314, + -0.04716482013463974, + 0.07941412925720215, + -0.00579486507922411, + -0.021164439618587494, + 0.0013234078651294112, + 0.04799472913146019, + -0.0028820675797760487, + 0.03506796434521675, + 0.08373702317476273, + 0.1005580872297287, + -0.008467625826597214, + 0.034612685441970825, + 0.008213593624532223, + -0.002494863932952285, + 0.07568731904029846, + -0.04948817938566208, + -0.10592973232269287, + 0.09665466845035553, + -0.025897793471813202, + 0.008039817214012146, + -0.1076149046421051, + 0.04764621704816818, + 0.020167194306850433, + -0.0404122956097126, + 0.00038067909190431237, + 0.01307318452745676, + 0.05243922397494316, + -0.03409048914909363, + -0.052847325801849365, + -0.0043390910141170025, + -0.04114237427711487, + -0.02468344010412693, + 0.02890312857925892, + -1.9283755037236006e-08, + -0.015713529661297798, + -0.052418578416109085, + -0.04873090609908104, + -0.06919105350971222, + -0.011851555667817593, + -0.003837946569547057, + -0.004334006924182177, + -0.11617442220449448, + 0.023444119840860367, + -0.09180706739425659, + 0.07174665480852127, + 0.04659276083111763, + -0.0915641188621521, + -0.026356644928455353, + -0.035449299961328506, + 0.014071326702833176, + -0.06945312023162842, + 0.04938819259405136, + 0.000525288749486208, + 0.023593420162796974, + 0.0040948339737951756, + -0.020160194486379623, + -0.02763492427766323, + 0.03338116779923439, + 0.045743223279714584, + -0.007536155171692371, + -0.07632625848054886, + -0.0527389757335186, + 0.0740131288766861, + 0.07889766991138458, + 0.012987111695110798, + -0.008016799576580524, + 0.03660394623875618, + -0.03335783630609512, + -0.01866755820810795, + 0.04466712847352028, + 0.0096361692994833, + -0.011941185221076012, + 0.04083312302827835, + 0.10534918308258057, + 0.01422685943543911, + -0.08857417106628418, + 0.02304258942604065, + -0.019819889217615128, + -0.0731879398226738, + -0.015814654529094696, + -0.06583588570356369, + -0.02135026641190052, + -0.007296268362551928, + -0.07306735217571259, + 0.006051261443644762, + 0.0002345708489883691, + 0.062000442296266556, + 0.06474699079990387, + 0.02002924121916294, + -0.030027514323592186, + 0.026656458154320717, + 0.004822339862585068, + 0.08646129816770554, + 0.0062474035657942295, + 0.09950584918260574, + 0.03164762631058693, + 0.04197188466787338, + 0.0399378202855587 + ], + "wallet-bold||money,payment,paying,purchase": [ + -0.0062130047008395195, + 0.03815259039402008, + -0.06060491129755974, + 0.016526762396097183, + -0.005309633444994688, + -0.04984461888670921, + 0.10634371638298035, + -0.057547129690647125, + 0.040994156152009964, + -0.029334526509046555, + 0.021536031737923622, + 0.0004583330010063946, + 0.08454980701208115, + -0.05807159096002579, + -0.0022916090674698353, + -0.01977548561990261, + -0.020192770287394524, + 0.017030812799930573, + 0.04506010562181473, + 0.043780311942100525, + -0.057816505432128906, + 0.0053293402306735516, + -0.007840384729206562, + 0.018269870430231094, + 0.0460629016160965, + -0.003038765862584114, + 0.04929635673761368, + -0.004268495365977287, + 0.0016928390832617879, + -0.06325109302997589, + 0.06717684119939804, + 0.04280637204647064, + 0.14362557232379913, + 0.005109607242047787, + 0.015300505794584751, + 0.024930423125624657, + -0.007092365995049477, + 0.002813102910295129, + -0.05623047426342964, + 0.024139538407325745, + 0.016657663509249687, + -0.0926845446228981, + -0.011910040862858295, + 0.03005761094391346, + -0.01980174146592617, + -0.008869236335158348, + -0.030410628765821457, + 0.06218219920992851, + 0.025064285844564438, + 0.04349909722805023, + -0.005280079320073128, + -0.0958639606833458, + -0.1403116136789322, + 0.023526858538389206, + -0.0302767064422369, + 0.028316950425505638, + -0.03819591924548149, + -0.004753813613206148, + 0.024143492802977562, + -0.08177133649587631, + 0.05384889990091324, + 0.03826900199055672, + -0.0017945290310308337, + 0.04258929193019867, + 0.01640269346535206, + 0.05966902896761894, + -0.00666632317006588, + 0.044278960675001144, + -0.05496571958065033, + 0.028714336454868317, + 0.07127003371715546, + -0.008581304922699928, + -0.03412042558193207, + -0.11547958105802536, + -0.05219220370054245, + 0.05457286164164543, + 0.09660183638334274, + -0.03488239273428917, + -0.07422735542058945, + -0.01059022918343544, + -0.09053891152143478, + -0.06622567027807236, + -0.05827489495277405, + -0.04376692324876785, + 0.06305047869682312, + 0.08228258788585663, + -0.08226557075977325, + -0.07665679603815079, + 0.024990536272525787, + -0.08524934947490692, + 0.004343562759459019, + 0.03879188746213913, + 0.014249048195779324, + -0.032227106392383575, + -0.026537863537669182, + 0.03563550114631653, + 0.12077166885137558, + -0.0405389629304409, + -0.04762983322143555, + 0.04603972285985947, + 0.06261605769395828, + 0.09507147967815399, + 0.05296442285180092, + -0.0019719155970960855, + 0.08240193128585815, + -0.0046152775175869465, + 0.022823160514235497, + 0.023959631100296974, + -0.00017946037405636162, + 0.01571393758058548, + -0.07120215892791748, + -0.04745625704526901, + 0.04138423874974251, + -0.055670104920864105, + -0.03088982030749321, + 0.08167221397161484, + -0.07522670924663544, + -0.005015564151108265, + 0.10960006713867188, + 0.07519406825304031, + 0.05178793519735336, + 0.03328296169638634, + -0.08695831894874573, + -0.08790796250104904, + -0.059994183480739594, + -0.021706074476242065, + 0.049437154084444046, + -2.5709756735742504e-33, + 0.05499918758869171, + 0.024424755945801735, + -0.05370195582509041, + 0.0661591961979866, + 0.0033162813633680344, + 0.038051407784223557, + 0.015121781267225742, + -0.02377251721918583, + -0.11957623064517975, + 0.05219181627035141, + 0.07181815057992935, + 0.00961004663258791, + 0.012237990275025368, + 0.11998642235994339, + -0.01727389544248581, + -0.014881430193781853, + -0.044776249676942825, + 0.012150405906140804, + 0.05106185004115105, + 0.06212304159998894, + -0.0640076994895935, + 0.005714823491871357, + -0.03959387540817261, + 0.010045788250863552, + 0.055287331342697144, + -0.019851189106702805, + 0.03766526281833649, + 0.036676790565252304, + 0.026008976623415947, + 0.00823418702930212, + 0.05755310505628586, + -0.02249380573630333, + 0.0003970176330767572, + 0.016183966770768166, + -0.03867610916495323, + 0.03571043908596039, + -0.020460674539208412, + 0.00553458696231246, + 0.0382830835878849, + 0.0049799056723713875, + -0.06640869379043579, + -0.0335911363363266, + -0.06060197204351425, + -0.05071914196014404, + -0.013798669911921024, + 0.12383902817964554, + -0.015602248720824718, + -0.045624956488609314, + 0.024341611191630363, + 0.019132573157548904, + -0.058680638670921326, + -0.03217032179236412, + -0.044972553849220276, + -0.014137059450149536, + -0.04101812466979027, + -0.10574658215045929, + 0.0035956038627773523, + 0.05563643202185631, + -0.04249805584549904, + -0.0988839641213417, + -0.0006756460061296821, + -0.06021180376410484, + 0.02723628096282482, + -0.04288509860634804, + -0.04431794211268425, + 0.08286453783512115, + -0.06666605919599533, + -0.006378570105880499, + 0.04490203782916069, + 0.07482443004846573, + -0.035311002284288406, + 0.11438506096601486, + 0.08668308705091476, + 0.08270744979381561, + 0.022223837673664093, + 0.02045173943042755, + 0.018500322476029396, + 0.004024708643555641, + 0.05873546749353409, + -0.0002380308142164722, + -0.06968255341053009, + 0.05544870346784592, + -0.007820523343980312, + 0.17513686418533325, + 0.036742690950632095, + 0.1205311119556427, + 0.017305422574281693, + -0.10242068767547607, + -0.02960319258272648, + -0.02644539624452591, + -0.01424229796975851, + -0.006682978011667728, + 0.017506398260593414, + -0.11984187364578247, + -0.03212397173047066, + 5.591124544493494e-34, + 0.027432717382907867, + 0.0023753673303872347, + -0.037558700889348984, + -0.009360174648463726, + -0.05228772014379501, + 0.06572885811328888, + -0.0038207327015697956, + 0.03683166950941086, + 0.017428148537874222, + -0.005560929886996746, + -0.018802452832460403, + 0.014668140560388565, + -0.034941770136356354, + -0.03450779989361763, + 0.053131770342588425, + -0.03412652015686035, + 0.02562764286994934, + -0.031377170234918594, + 0.017994698137044907, + 0.013232754543423653, + -0.0613703615963459, + -0.053640980273485184, + -0.026438793167471886, + 0.04384967312216759, + -0.017495419830083847, + 0.0021865705493837595, + 0.0021039796993136406, + 0.0022982791997492313, + -0.08311428874731064, + 0.031617019325494766, + 0.02408614195883274, + -0.006194618996232748, + -0.00493203429505229, + 0.03486858680844307, + -0.06735493242740631, + 0.03735854849219322, + -0.01746007427573204, + 0.05118989571928978, + 0.048537179827690125, + -0.014602268114686012, + -0.0017294264398515224, + -0.04768741503357887, + 0.006866529583930969, + 0.009276317432522774, + -0.015571453608572483, + -0.10035473853349686, + 0.0174840297549963, + -0.06606023758649826, + 0.007512554991990328, + -4.4422336941352114e-05, + 0.019424252212047577, + -0.045005813241004944, + -0.02230527065694332, + 0.032716717571020126, + -0.09017690271139145, + 0.09094595164060593, + 0.08798271417617798, + 0.025168824940919876, + 0.028143053874373436, + 0.03542531654238701, + -0.026769326999783516, + 0.07374683022499084, + 0.023236634209752083, + 0.013726108707487583, + -0.0342516154050827, + -0.02110990695655346, + 0.04381992667913437, + -0.05230731889605522, + 0.042171038687229156, + -0.03041560761630535, + -0.007160162553191185, + -0.013584737665951252, + -0.01132750790566206, + 0.047186531126499176, + 0.05711446702480316, + 0.007256327196955681, + 0.013742967508733273, + -0.011946406215429306, + 0.02301929146051407, + 0.033734969794750214, + 0.01446423027664423, + 0.006272504106163979, + 0.031629178673028946, + 0.03237277269363403, + -0.05077982693910599, + -0.03786930441856384, + -0.03060133382678032, + -0.03971407562494278, + -0.06039314344525337, + -0.05783424153923988, + -0.043013252317905426, + 0.033904772251844406, + -0.030619772151112556, + -0.005192882381379604, + -0.025969870388507843, + -1.736643362448831e-08, + -0.03300703689455986, + -0.027664653956890106, + 0.00581040233373642, + 0.002703289035707712, + 0.03786717727780342, + -0.03284691646695137, + -0.03366256132721901, + -0.07503040134906769, + -0.040625233203172684, + 0.026150787249207497, + -0.01870901882648468, + -0.015405706129968166, + -0.10220331698656082, + -0.09273655712604523, + 0.012473619543015957, + -0.00743955560028553, + -0.003685234347358346, + -0.0471215546131134, + -0.09072676301002502, + -0.05660463497042656, + 0.004465814679861069, + 0.057185783982276917, + 0.015435723587870598, + -0.01786494068801403, + 0.018790824338793755, + 0.006991956848651171, + 0.04161956161260605, + 0.08434174209833145, + 0.086912140250206, + 0.033521030098199844, + 0.02215529978275299, + 0.04226222634315491, + 0.05136413499712944, + -0.01623186655342579, + -0.05693801864981651, + -0.09062537550926208, + -0.03637514263391495, + 0.020370060577988625, + -0.012821684591472149, + 0.15831568837165833, + 0.00406824704259634, + -0.0782611146569252, + -0.08078864961862564, + -0.05271323770284653, + -0.03543723374605179, + 0.014458959922194481, + -0.004622168373316526, + -0.07081161439418793, + -0.03380681574344635, + -0.10029677301645279, + 0.008454227820038795, + -0.005536161828786135, + 0.10989443212747574, + 0.058788832277059555, + -0.07159189134836197, + -0.07237111032009125, + 0.04543024301528931, + 0.09047192335128784, + 0.04219277203083038, + -0.015177721157670021, + 0.10441327095031738, + -0.0507669560611248, + 0.037315160036087036, + -0.041840117424726486 + ], + "warehouse-bold||storage,industry,manufacture,buildings,places,locations": [ + 0.07063589990139008, + -0.020592445507645607, + -0.07417406141757965, + 0.06448797881603241, + 0.00023164319281931967, + 0.006628821603953838, + -0.02824356034398079, + -0.034640729427337646, + -0.005097634624689817, + -0.021355507895350456, + 0.07934398949146271, + -0.0010274277301505208, + 0.06922201812267303, + 0.005977927707135677, + -0.05519992858171463, + 0.03086760826408863, + 0.07937705516815186, + 0.016819266602396965, + -0.02229313552379608, + -0.00840197503566742, + 0.008441041223704815, + 0.03638684004545212, + 0.007218231447041035, + 0.024384276941418648, + 0.04361289367079735, + 0.0649082288146019, + -0.03494643047451973, + 0.03397712484002113, + 0.0008780212374404073, + -0.07792863249778748, + -0.06588615477085114, + 0.009150628931820393, + 0.07344723492860794, + 0.06681953370571136, + 0.12941685318946838, + 0.05603807792067528, + -0.014333670027554035, + -0.04094868525862694, + 0.10253426432609558, + -0.034346770495176315, + 0.016337241977453232, + -0.02710002474486828, + -0.010498992167413235, + -0.002872694516554475, + -0.07403361052274704, + -0.028239138424396515, + -0.024586450308561325, + -0.05531294271349907, + 0.04062015563249588, + 0.008048812858760357, + 0.0036680421326309443, + -0.01050142478197813, + -0.05855432525277138, + 0.04459621012210846, + -0.003337898524478078, + 0.040480468422174454, + -0.06522389501333237, + 0.0036988304927945137, + -0.023955753073096275, + -0.0351712666451931, + 0.13250921666622162, + -0.031355585902929306, + 0.035195618867874146, + -0.029766296967864037, + 0.05140751972794533, + 0.03125868737697601, + -0.039722442626953125, + 0.06728300452232361, + -0.05965370312333107, + -0.06781605631113052, + 0.02292942814528942, + 0.01030663214623928, + -0.029423553496599197, + 0.039457056671381, + -0.011977900750935078, + -0.03634645789861679, + 0.03502484783530235, + -0.01138230785727501, + 0.00612945482134819, + -0.029331687837839127, + -0.01627933233976364, + 0.005774283315986395, + -0.04743955284357071, + 0.02603975124657154, + -0.1389629989862442, + -0.010393841192126274, + -0.028042232617735863, + 0.028784506022930145, + 0.017363719642162323, + -0.09609360992908478, + 0.006525108590722084, + -0.05724663287401199, + -0.07296246290206909, + -0.029881302267313004, + -0.10876350849866867, + 0.003500218503177166, + -0.02038642019033432, + 0.0579109750688076, + 0.04540828987956047, + -0.01523770485073328, + 0.06451838463544846, + 0.07449597120285034, + 0.06153225526213646, + -0.016599977388978004, + -0.16310396790504456, + -0.09333207458257675, + -0.08535321056842804, + 0.043471820652484894, + -0.044592566788196564, + 0.013326886110007763, + -0.019140733405947685, + -0.012512139976024628, + -0.07730825990438461, + -0.0023324573412537575, + -0.06213400140404701, + 0.05530771613121033, + -0.04134272038936615, + -0.05789555236697197, + 0.06003466993570328, + -0.04176104813814163, + 0.02965865470468998, + -0.05214152857661247, + 0.020647214725613594, + -0.002189811086282134, + -0.04370175674557686, + 0.008938559330999851, + -0.020776575431227684, + -3.6978355986701966e-33, + -0.04444434121251106, + 0.005395402666181326, + -0.01213261391967535, + 0.08388510346412659, + 0.041209496557712555, + -0.052321095019578934, + -0.010777177289128304, + -0.008650670759379864, + 0.00400753365829587, + 0.026032332330942154, + 0.015786228701472282, + 0.07559645920991898, + -0.056166280061006546, + 0.018865186721086502, + 0.05218518525362015, + -0.025723358616232872, + -0.009237290360033512, + 0.019419603049755096, + -0.03300594538450241, + -0.04244683310389519, + -0.059646740555763245, + 0.026205124333500862, + -0.02872331067919731, + 0.04251045733690262, + 0.05602116510272026, + -0.007476457394659519, + 0.017615167424082756, + -0.019420431926846504, + -0.01505903247743845, + 0.042844656854867935, + 0.07017852365970612, + 0.056322645395994186, + 0.0063555133529007435, + -0.014333524741232395, + 0.017615118995308876, + 0.028633246198296547, + -0.06721587479114532, + -0.011928495019674301, + -0.0188874714076519, + -0.06135621666908264, + -0.02723880670964718, + 0.03564190864562988, + 0.002750998130068183, + 0.05115680396556854, + 0.0031669761519879103, + 0.10893335938453674, + -0.03651804476976395, + -0.03794335946440697, + 0.06781282275915146, + -0.01570454239845276, + -0.07343443483114243, + 0.04169662669301033, + -0.023455694317817688, + 0.01881970837712288, + 0.05243459716439247, + -0.07528141885995865, + 0.00676273787394166, + -0.047213364392519, + 0.049120936542749405, + 0.0504658967256546, + -0.02044587954878807, + 0.05477673560380936, + -0.008649954572319984, + 0.04397493600845337, + -0.02477293647825718, + -0.026884539052844048, + -0.008865172043442726, + 0.036780472844839096, + 0.05836445093154907, + 0.04934148117899895, + 0.043859511613845825, + 0.025440862402319908, + 0.08110161125659943, + 0.04490857571363449, + -0.01811940222978592, + 0.05862372741103172, + -0.05547028407454491, + 0.0644250139594078, + -0.039981476962566376, + -0.09633953124284744, + -0.06476285308599472, + -0.010548165999352932, + -0.02105177752673626, + 0.10405481606721878, + -0.0254941675812006, + -0.054792068898677826, + 0.025018393993377686, + -0.03583378344774246, + -0.024316171184182167, + 0.03333687409758568, + -0.12232217192649841, + 0.07125366479158401, + -0.0428580567240715, + -0.008142572827637196, + -0.08596982061862946, + -1.3387821103828932e-34, + 0.07184214144945145, + -0.05279039964079857, + -0.0393131747841835, + -0.02978670597076416, + -0.05206696316599846, + 0.039696455001831055, + -0.004802858456969261, + -0.0447772778570652, + 0.05620057135820389, + 0.01551849115639925, + -0.08323068171739578, + 0.027414297685027122, + 0.005605369806289673, + 0.03294607996940613, + 0.005086282268166542, + 0.016621852293610573, + 0.05856604129076004, + -0.05640607327222824, + -0.03745756298303604, + 0.022881245240569115, + -0.04903334006667137, + -0.01495688408613205, + -0.06327665597200394, + 0.08192302286624908, + -0.062165260314941406, + 0.047332167625427246, + -0.0800446942448616, + -0.07648812979459763, + -0.03926507383584976, + -0.01620618626475334, + -0.09722307324409485, + -0.06574928760528564, + 0.03720107674598694, + 0.13412471115589142, + -0.12357287853956223, + -0.035628631711006165, + 0.046029165387153625, + 0.011607514694333076, + 0.062268223613500595, + -0.02519284561276436, + 0.04734008386731148, + 0.006681860890239477, + -0.03646580129861832, + 0.08966078609228134, + -0.01169300265610218, + -0.09089627861976624, + -0.06712495535612106, + -0.10285703837871552, + 0.08356171101331711, + -0.051925551146268845, + 0.013207929208874702, + 0.028482090681791306, + -0.043870240449905396, + -0.06641466915607452, + -0.06154448166489601, + 0.09501495957374573, + -0.006431907415390015, + 0.012852475978434086, + -0.035202596336603165, + 0.03962427005171776, + -0.015965797007083893, + 0.04507280886173248, + -0.0010744925821200013, + 0.055087801069021225, + -0.06114400178194046, + -0.013517772778868675, + 0.05554676055908203, + -0.051562391221523285, + -0.025930650532245636, + 0.003902408992871642, + 0.0557878278195858, + 0.0040085879154503345, + -0.003474694211035967, + 0.05236773192882538, + -0.011688717640936375, + -0.038691408932209015, + 0.06015070527791977, + 0.027814339846372604, + 0.009429396130144596, + 0.01414317637681961, + -0.005470329895615578, + -0.01698850840330124, + -0.023207038640975952, + 0.08157236129045486, + 0.010883670300245285, + -0.004194959998130798, + -0.0025784121826291084, + 0.015169505961239338, + 0.00011041311518056318, + -0.03882857412099838, + -0.07001437991857529, + -0.007817976176738739, + -0.15264004468917847, + -0.023846667259931564, + -0.03952682763338089, + -2.0813843093492324e-08, + -0.07408194988965988, + 0.002854461781680584, + 0.0012257982743903995, + 0.016036074608564377, + -0.028950056061148643, + -0.09855498373508453, + 0.14632007479667664, + 0.1813364028930664, + -0.005960803013294935, + 0.05103606730699539, + 0.02605922520160675, + -0.04886686056852341, + -0.12399328500032425, + 0.017064237967133522, + -0.032630208879709244, + 0.01908140257000923, + -0.09008338302373886, + 0.05715717002749443, + -0.025657493621110916, + -0.050778135657310486, + 0.014027779921889305, + 0.04909515753388405, + 0.09927844256162643, + -0.007290423847734928, + -0.009448074735701084, + 0.001748722861520946, + -0.041767291724681854, + 0.0043763029389083385, + 0.054350633174180984, + 0.028080081567168236, + 0.05772438272833824, + 0.05143764615058899, + 0.04337277263402939, + 0.006792176049202681, + -0.017494214698672295, + -0.038415540009737015, + 0.03786049038171768, + 0.0334562249481678, + -0.03590361401438713, + 0.029121972620487213, + -0.07605540007352829, + -0.078916534781456, + -0.0520903654396534, + 0.003453959012404084, + 0.09714765846729279, + 0.026173429563641548, + -0.02010243386030197, + 0.01181014720350504, + 0.025801600888371468, + 0.0054940213449299335, + -0.05223357304930687, + -0.039518099278211594, + 0.056452661752700806, + 0.04399130120873451, + -0.03080745041370392, + -0.015610238537192345, + -0.013306848704814911, + -0.03732707351446152, + 0.020813781768083572, + 0.03199538215994835, + 0.11846280097961426, + -0.03325823321938515, + 0.034213874489068985, + 0.06093393266201019 + ], + "warning-bold||alert,danger,dangerous,caution,errors": [ + 0.027183745056390762, + 0.009260841645300388, + -0.0355842150747776, + 0.0705207884311676, + 0.11584489792585373, + 0.005570987705141306, + 0.11677437275648117, + 0.028937065973877907, + -0.00031424002372659743, + -0.01215449534356594, + 0.050437528640031815, + -0.024663571268320084, + 0.11444701254367828, + 0.003975159488618374, + -0.0890464335680008, + 0.029629604890942574, + -0.0037316458765417337, + -0.024947388097643852, + -0.045582279562950134, + 0.024994349107146263, + 0.043430205434560776, + 0.10053091496229172, + 0.024457698687911034, + 0.05570012331008911, + -0.050021953880786896, + -0.007378907408565283, + -0.01236432883888483, + 0.04517792537808418, + -0.037061404436826706, + -0.06015050411224365, + -0.027606457471847534, + -0.002953673480078578, + 0.11128051578998566, + 0.012645636685192585, + 0.028466064482927322, + 0.026145219802856445, + 0.007616499904543161, + -0.007434722501784563, + 0.032237377017736435, + -0.0028539320919662714, + -0.007189097814261913, + -0.07477129250764847, + -0.0010440058540552855, + 0.07768961787223816, + -0.06502189487218857, + -0.0443628765642643, + -0.07441632449626923, + -0.09614501148462296, + 0.00142163026612252, + -0.04200024530291557, + -0.021220501512289047, + -0.06930086761713028, + -0.04880480095744133, + -0.06021622568368912, + 0.03660481423139572, + -0.04814060404896736, + -0.0955551266670227, + -0.034226853400468826, + 0.02031596563756466, + 0.0025420754682272673, + 0.0408782996237278, + 0.007440009154379368, + 0.026028510183095932, + 0.033866338431835175, + 0.0035387123934924603, + -0.006216180510818958, + -0.046562694013118744, + 0.02483273297548294, + -0.01024852879345417, + 0.09768570959568024, + -0.0016742460429668427, + -0.013117015361785889, + -0.010635576210916042, + 0.0418105274438858, + -0.03699098899960518, + 0.03266582265496254, + 0.055581312626600266, + -0.029225822538137436, + -0.01261171791702509, + -0.07488692551851273, + -0.08656619489192963, + -0.0676516592502594, + 0.005466076545417309, + -0.011325350031256676, + 0.07525552064180374, + 0.07970748841762543, + -0.05298001319169998, + -0.03823066130280495, + 0.014332955703139305, + 0.012181960046291351, + -0.007098653353750706, + -0.11578646302223206, + 0.03165348246693611, + 0.13942670822143555, + -0.05115117132663727, + 0.003248891793191433, + -0.015738777816295624, + -0.06681325286626816, + -0.07536105066537857, + 0.05829628184437752, + 0.028062207624316216, + 0.037286076694726944, + -0.015340904705226421, + 0.004754945170134306, + -0.03276791796088219, + -0.0736958235502243, + -0.00470945006236434, + 0.005463370122015476, + -0.00935148261487484, + -0.0006215485045686364, + -0.025178562849760056, + -0.043846871703863144, + 0.022849122062325478, + -0.10153767466545105, + -0.04537401720881462, + 0.012209619395434856, + -0.07624296844005585, + -0.015536044724285603, + 0.08026263117790222, + 0.10117877274751663, + 0.04507904127240181, + -0.060787711292505264, + -0.013983801938593388, + -0.030960021540522575, + 0.0707540512084961, + -0.027538036927580833, + 0.059429217129945755, + -2.2519274049778807e-33, + 0.09501282870769501, + 0.06493765115737915, + -0.03885897248983383, + 0.077298603951931, + 0.013259678147733212, + 0.005437888670712709, + -0.07692467421293259, + -0.08095448464155197, + -0.08853231370449066, + 0.036605071276426315, + 0.06201329454779625, + 0.06474603712558746, + -0.016683319583535194, + 0.006707591470330954, + 0.011315467767417431, + 0.01967727765440941, + 0.04016333818435669, + 0.021241065114736557, + -0.04026060923933983, + -0.06204596534371376, + -0.037200648337602615, + -0.01483266893774271, + -0.02305806428194046, + -0.011662463657557964, + -0.005698899272829294, + 0.02786107361316681, + 0.017307916656136513, + 0.0047988612204790115, + 0.00392324011772871, + 0.03032361902296543, + -0.04293901473283768, + 0.008389713242650032, + 0.04166049882769585, + 0.006157943047583103, + 0.0326119065284729, + 0.06062743812799454, + -0.12148382514715195, + -0.029802490025758743, + -0.029345370829105377, + 0.00824988167732954, + -0.05035349354147911, + -0.042416904121637344, + -0.03270230069756508, + 0.021312516182661057, + 0.11692019551992416, + 0.07180353999137878, + -0.05684724077582359, + -0.004837804939597845, + 0.007390740793198347, + -0.0016349486541002989, + -0.03479830175638199, + 0.012123572640120983, + 0.055989064276218414, + 0.07807368040084839, + -0.03734293580055237, + 0.023934710770845413, + 0.008130262605845928, + 0.026894692331552505, + -0.029515044763684273, + -0.035188693553209305, + 0.004335946403443813, + 0.037943024188280106, + 0.015632174909114838, + -0.09947440773248672, + 0.012316063046455383, + -0.0010505740065127611, + -0.022209130227565765, + 0.04104242101311684, + 0.0316341407597065, + -0.02164386957883835, + -0.07805879414081573, + -0.0007984896074049175, + 0.0681360512971878, + 0.05812757462263107, + -0.059163935482501984, + -0.021563921123743057, + -0.011658336035907269, + -0.014672217890620232, + 0.058726221323013306, + -0.13288690149784088, + -0.07694413512945175, + -0.04485797509551048, + -0.02487780898809433, + 0.09461573511362076, + 0.002008548704907298, + -0.0052139428444206715, + -0.035189464688301086, + -0.036749329417943954, + -0.11932295560836792, + 0.15852265059947968, + -0.008708001114428043, + 0.007778361905366182, + 0.021486813202500343, + -0.026567714288830757, + -0.12079691886901855, + -5.731101398729095e-36, + 0.009328041225671768, + 0.031136898323893547, + -0.07155528664588928, + -0.003399571171030402, + -0.0839293897151947, + -0.021661553531885147, + 0.0485064871609211, + 0.04670226573944092, + 0.04149339720606804, + -0.003872499568387866, + -0.055998545140028, + -0.02833310142159462, + -0.009066108614206314, + -0.038816481828689575, + -0.001313144457526505, + 0.010829473845660686, + 0.005402443930506706, + 0.059333935379981995, + -0.03411673381924629, + 0.015330962836742401, + -0.013220338150858879, + -0.0037104978691786528, + -0.10131194442510605, + 0.09269687533378601, + -0.06209813430905342, + 0.06969881057739258, + 0.02203676477074623, + -0.01919184811413288, + -0.0871346965432167, + -0.029160959646105766, + -0.003900133306160569, + 0.05049371346831322, + 0.02172623947262764, + 0.10319247841835022, + -0.02245921641588211, + -0.0016478763427585363, + 0.09017646312713623, + -0.12947200238704681, + -0.014458874240517616, + 0.02942878007888794, + 0.033782873302698135, + 0.09473655372858047, + 0.048704154789447784, + -0.00398158747702837, + -0.05344732478260994, + -0.0033706158865243196, + 0.04571890830993652, + -0.0487484447658062, + -0.024006018415093422, + 0.056455377489328384, + 0.00963728316128254, + -0.054180748760700226, + -0.029898494482040405, + 0.012934255413711071, + -0.03572434186935425, + -0.023941650986671448, + 0.011871346272528172, + -0.04296460747718811, + -0.053897976875305176, + 0.08330002427101135, + -0.013468042947351933, + 0.03597433120012283, + -0.06700515747070312, + 0.0319071002304554, + 0.003805772168561816, + -0.05054692551493645, + -0.036435291171073914, + -0.005603353027254343, + 0.08480595052242279, + 0.00024387503799516708, + 0.08851329982280731, + 0.016634531319141388, + -0.07184585928916931, + -0.04099103808403015, + 0.0071222223341465, + -0.12278825789690018, + 0.018128423020243645, + -0.00357579393312335, + -0.04781777784228325, + 0.004907593596726656, + 0.05940157547593117, + 0.008550353348255157, + -0.008667915128171444, + 0.06334275752305984, + -0.04367588087916374, + 0.02774456888437271, + 0.022054610773921013, + 0.08052090555429459, + -0.03388193994760513, + -0.007858695462346077, + -0.0407058410346508, + 0.08430325239896774, + 0.02296568639576435, + 0.02375948242843151, + -0.03829986974596977, + -1.7567618471048263e-08, + -0.041668061167001724, + -0.006861093919724226, + -0.030942490324378014, + -0.062227170914411545, + 0.07145417481660843, + -0.05938062071800232, + -0.03431142866611481, + -0.06584813445806503, + -0.07120736688375473, + -0.052170686423778534, + 0.04188881814479828, + 0.012924551963806152, + -0.0363968089222908, + -0.06398559361696243, + 0.04833308607339859, + -0.023649822920560837, + -0.053497448563575745, + 0.04903041943907738, + -0.05968013405799866, + -0.020127886906266212, + 0.00225062551908195, + 0.05736241862177849, + -0.04415052384138107, + -0.024105042219161987, + 0.08777652680873871, + -0.009025040082633495, + -0.030491847544908524, + 0.047489508986473083, + 0.018933631479740143, + 0.08719618618488312, + 0.017281007021665573, + 0.031553592532873154, + 0.016323553398251534, + 0.02050631493330002, + -0.0505070760846138, + 0.08743025362491608, + 0.07189783453941345, + -0.030550822615623474, + 0.04372919350862503, + 0.14193010330200195, + 0.0024431634228676558, + -0.007699343375861645, + -0.00862641166895628, + 0.029487421736121178, + -0.03414066880941391, + 0.0005066825542598963, + -0.0018430008785799146, + -0.03751282021403313, + -0.0017927602166309953, + -0.09026342630386353, + -0.0005641977186314762, + -0.018109478056430817, + 0.004821328446269035, + 0.1230916753411293, + -0.030207453295588493, + -0.04565664753317833, + 0.013947108760476112, + 0.06785299628973007, + 0.009877217002213001, + 0.06797507405281067, + 0.1174762174487114, + -0.028710471466183662, + 0.05031590163707733, + -1.4643995882579475e-06 + ], + "warning-circle-bold||alert,danger,dangerous,caution,errors,round": [ + 0.0356353335082531, + 0.031907591968774796, + -0.08904293924570084, + 0.06424790620803833, + 0.1275760382413864, + -0.021059948951005936, + 0.1159314215183258, + 0.033502258360385895, + 0.036712758243083954, + -0.05073411017656326, + 0.036399103701114655, + -0.021725203841924667, + 0.10766393691301346, + -0.008097185753285885, + -0.06145205348730087, + 0.0158603023737669, + -0.05349498242139816, + -0.02657046727836132, + -0.02347632311284542, + -0.014139930717647076, + 0.018588274717330933, + 0.07560528814792633, + 0.03247140720486641, + 0.08762715011835098, + -0.07003075629472733, + 0.0338265523314476, + -0.002803279785439372, + 0.04552238807082176, + -0.040666431188583374, + -0.08456578850746155, + -0.06097852438688278, + 0.031529221683740616, + 0.09870372712612152, + 0.005415105260908604, + 0.0021805190481245518, + 0.004531116224825382, + 0.0029420319478958845, + 0.028042683377861977, + 0.04805411025881767, + -0.024183090776205063, + 0.018448038026690483, + -0.06774097681045532, + 0.030162552371621132, + 0.05588671192526817, + -0.06730131059885025, + -0.020816540345549583, + -0.11976908892393112, + -0.06853349506855011, + 0.0011632232926785946, + -0.008988653309643269, + -0.02204837091267109, + -0.10506173968315125, + -0.07878841459751129, + -0.06425967812538147, + 0.046158067882061005, + -0.03248296305537224, + -0.06921374797821045, + -0.051500506699085236, + 0.042584292590618134, + -0.008158151991665363, + 0.053894445300102234, + -0.01785421557724476, + 0.03696927800774574, + 0.052150581032037735, + -0.022645197808742523, + -0.012098117731511593, + -0.04515514522790909, + -0.020651858299970627, + -0.00742298923432827, + 0.05005651339888573, + 0.0050230869092047215, + 0.0035459818318486214, + -0.02411198616027832, + 0.014799943193793297, + -0.012865625321865082, + 0.03993126377463341, + 0.014533680863678455, + -0.008770938962697983, + -0.0318644680082798, + -0.07602625340223312, + -0.06682392209768295, + -0.03716814145445824, + 0.027309587225317955, + 0.02333883009850979, + 0.07314162701368332, + 0.10213024914264679, + -0.021678613498806953, + -0.05483010411262512, + 0.006977901794016361, + 0.013450771570205688, + -0.031788747757673264, + -0.07115282118320465, + 0.00011789995187427849, + 0.1084466502070427, + -0.08206958323717117, + 0.017102139070630074, + -0.014396827667951584, + -0.0851173847913742, + -0.10153312981128693, + 0.06349080801010132, + 0.052630286663770676, + 0.016086295247077942, + 0.003875807859003544, + -0.020924193784594536, + -0.037050511687994, + -0.07072532922029495, + 0.006466404534876347, + 0.013139177113771439, + 0.004655334632843733, + 0.011790608987212181, + -0.027949366718530655, + -0.04776144027709961, + 0.024612581357359886, + -0.0890612006187439, + -0.056949712336063385, + 0.012776113115251064, + -0.0902901440858841, + -0.014187580905854702, + 0.08509770035743713, + 0.10464570671319962, + 0.052080586552619934, + -0.04211108013987541, + -0.05043493211269379, + -0.037863053381443024, + 0.03872975334525108, + 0.0048551722429692745, + 0.03765539824962616, + -2.897310170435795e-33, + 0.07088220864534378, + 0.08074925094842911, + -0.031329039484262466, + 0.045637357980012894, + -0.000672980269882828, + -0.027949322015047073, + -0.061005983501672745, + -0.07843253761529922, + -0.05152670666575432, + 0.023929698392748833, + 0.042545247822999954, + 0.052327148616313934, + -0.018822362646460533, + -0.003494095988571644, + 0.04522265866398811, + -0.013873056508600712, + 0.0844113826751709, + -0.0013694356894120574, + -0.07892197370529175, + -0.0905442163348198, + -0.0584426149725914, + -0.009518878534436226, + -0.052548062056303024, + -0.006887640338391066, + -0.0006011835066601634, + 0.05358625948429108, + 0.013778889551758766, + 0.012277190573513508, + -0.0032776491716504097, + 0.04123970493674278, + -0.014745487831532955, + 0.014741999097168446, + 0.03190971910953522, + 0.02255081757903099, + 0.04021916911005974, + 0.049232013523578644, + -0.10536223649978638, + -0.0201790202409029, + -0.026260562241077423, + 0.009247264824807644, + -0.05566614493727684, + -0.05750526115298271, + -0.051772791892290115, + 0.0420549139380455, + 0.1034887433052063, + 0.07980746775865555, + -0.041861642152071, + 0.0016907730605453253, + -0.008544651791453362, + -0.01755034364759922, + -0.04897967353463173, + 0.028340984135866165, + 0.033060990273952484, + 0.04631693288683891, + -0.02387731522321701, + 0.004378517623990774, + 0.019165106117725372, + 0.022768082097172737, + -0.06071923300623894, + -0.035008639097213745, + 0.026090672239661217, + 0.05277729034423828, + 0.00546223996207118, + -0.1074351817369461, + -0.005089808255434036, + 0.015087158419191837, + -0.06201314553618431, + 0.009420396760106087, + 0.03712303936481476, + -0.026249539107084274, + -0.06744371354579926, + 0.02598990872502327, + 0.09227149933576584, + 0.09490936994552612, + -0.06135702505707741, + -0.018258480355143547, + -0.0033231652341783047, + 0.0019668019376695156, + 0.058448296040296555, + -0.10630182921886444, + -0.08367060124874115, + -0.026397407054901123, + -0.02566578797996044, + 0.042376574128866196, + 0.034692421555519104, + -0.0393364243209362, + -0.004554008599370718, + -0.04414509981870651, + -0.11542800813913345, + 0.11531532555818558, + -0.027430303394794464, + 0.03338116779923439, + 0.05137571319937706, + 0.01752188615500927, + -0.1533086895942688, + 6.4825740015865185e-34, + 0.002399588003754616, + 0.03873714804649353, + -0.03659459948539734, + 0.013908233493566513, + -0.07264890521764755, + -0.006916393060237169, + 0.036077696830034256, + 0.03116138093173504, + 0.039834048599004745, + 0.020687617361545563, + -0.06523014605045319, + -0.020024875178933144, + -0.007211964577436447, + -0.023641152307391167, + 0.05030027776956558, + 0.021577373147010803, + 0.01879189722239971, + 0.06712670624256134, + -0.03855782002210617, + 0.025976579636335373, + -0.012990978546440601, + -0.014956392347812653, + -0.09501568973064423, + 0.0733528807759285, + -0.06340303272008896, + 0.07428520172834396, + 0.05026863515377045, + -0.06678326427936554, + -0.0754205733537674, + 0.006267952732741833, + -0.052253711968660355, + 0.01142793707549572, + 0.053749412298202515, + 0.09921532869338989, + -0.019544286653399467, + -0.03933225944638252, + 0.09991676360368729, + -0.16048726439476013, + -0.04008425772190094, + 0.0032428756821900606, + 0.01101592555642128, + 0.05927620083093643, + 0.04908594489097595, + -0.00022115393949206918, + -0.05170788988471031, + -0.03936440870165825, + 0.09076640009880066, + 0.002530330093577504, + -0.06318943202495575, + 0.06138657405972481, + 0.022552035748958588, + -0.030193593353033066, + -0.0017313429852947593, + 0.02391996793448925, + -0.03604190796613693, + 0.008888513781130314, + -0.014835278503596783, + -0.00705293333157897, + -0.022503560408949852, + 0.08215219527482986, + -0.022312182933092117, + 0.01781577430665493, + -0.05933636426925659, + 0.058892011642456055, + 0.014246366918087006, + -0.019057385623455048, + -0.02702367678284645, + -0.00030600751051679254, + 0.031579550355672836, + 0.036279596388339996, + 0.05981018766760826, + 0.07487139105796814, + -0.05989993363618851, + -0.05314380303025246, + 0.00806012749671936, + -0.09744131565093994, + 0.04459086433053017, + -0.01765996590256691, + -0.062444377690553665, + 0.02369457483291626, + 0.053786441683769226, + 0.015207169577479362, + -0.011966093443334103, + 0.04300891235470772, + -0.02952326089143753, + 0.01554014626890421, + 0.018835052847862244, + 0.09373210370540619, + -0.036752793937921524, + 0.011288712732493877, + -0.025310467928647995, + 0.0994148999452591, + 0.027473239228129387, + 0.03910470008850098, + 0.0028635102789849043, + -1.8745829777344625e-08, + -0.04993116483092308, + -0.00567686976864934, + -0.024139145389199257, + -0.04230543598532677, + 0.10160494595766068, + -0.055581528693437576, + -0.01820521242916584, + -0.08741679787635803, + -0.08855997025966644, + -0.06439446657896042, + 0.02543405257165432, + 0.02674628049135208, + -0.04532811418175697, + -0.06483176350593567, + 0.027333838865160942, + -0.012948035262525082, + -0.045937709510326385, + 0.06962767243385315, + -0.04120972380042076, + -0.009486229158937931, + 0.007462827954441309, + 0.012306539341807365, + -0.024107180535793304, + -0.055635564029216766, + 0.056990351527929306, + -0.017492439597845078, + -0.03638603165745735, + 0.06208129972219467, + -0.007092779502272606, + 0.049104608595371246, + 0.00810820609331131, + 0.024111658334732056, + 0.004793811589479446, + 0.01577339880168438, + -0.04032765328884125, + 0.036693692207336426, + 0.054720133543014526, + -0.004683233797550201, + 0.04720797762274742, + 0.15092234313488007, + 0.015417169779539108, + 0.005855565890669823, + 0.004226451739668846, + 0.03291110694408417, + -0.020864976570010185, + 0.023698516190052032, + 0.014873531647026539, + -0.03861427679657936, + -0.028031695634126663, + -0.09619100391864777, + -0.014201502315700054, + -0.017707552760839462, + 0.03310975432395935, + 0.11572794616222382, + -0.023793566972017288, + -0.035559456795454025, + 0.05400718003511429, + 0.08062893897294998, + -0.030916361138224602, + 0.07967986166477203, + 0.07722914963960648, + -0.0010431058472022414, + 0.059985097497701645, + 0.006212330888956785 + ], + "warning-diamond-bold||alert,danger,dangerous,caution,errors": [ + 0.023789551109075546, + 0.03702445700764656, + -0.04860737919807434, + 0.0645388811826706, + 0.06690934300422668, + 0.016270525753498077, + 0.09793272614479065, + 0.024318017065525055, + -0.046410251408815384, + -0.03107311576604843, + 0.02955738641321659, + -0.06279361993074417, + 0.11106639355421066, + -0.02620910294353962, + -0.10158831626176834, + 0.05159100517630577, + 0.019369782879948616, + -0.0278819240629673, + -0.04235246405005455, + 0.019105182960629463, + 0.03891553729772568, + 0.08268968760967255, + 0.01568656414747238, + 0.061016056686639786, + -0.04952247440814972, + 0.04002223163843155, + -0.040029026567935944, + 0.07099542766809464, + -0.03842741250991821, + -0.09505955874919891, + -0.033016711473464966, + 0.03692832589149475, + 0.10864290595054626, + 0.024110853672027588, + 0.0033108911011368036, + 0.011223547160625458, + -0.04067197069525719, + 0.015837104991078377, + 0.02804449573159218, + -0.0004036998434457928, + -0.011701338924467564, + -0.07250510901212692, + -0.02926184982061386, + 0.08339707553386688, + -0.06970145553350449, + -0.023919958621263504, + -0.07486936450004578, + -0.061007481068372726, + -0.010376431979238987, + -0.04537151753902435, + -0.018215039744973183, + -0.07225009799003601, + -0.030678916722536087, + -0.08322722464799881, + 0.061779316514730453, + -0.041416484862565994, + -0.05393354594707489, + -0.038365114480257034, + 0.04044357314705849, + 0.00847363006323576, + 0.0540202334523201, + 0.018771221861243248, + 0.030108770355582237, + 0.030990799888968468, + -0.001226792111992836, + -0.00929336529225111, + -0.0662010982632637, + -0.00029694955446757376, + -0.028198447078466415, + 0.0688580647110939, + 0.03317517042160034, + 0.0022554094903171062, + -0.04953707754611969, + 0.03868132829666138, + -0.03880788013339043, + 0.0410311222076416, + 0.06513535231351852, + -0.02346874214708805, + -0.010063075460493565, + -0.05561652034521103, + -0.09975679218769073, + -0.06216735765337944, + 0.0001495236938353628, + -0.009604593738913536, + 0.06385537981987, + 0.09650734812021255, + -0.0729408785700798, + -0.02763022668659687, + 0.0001674897939665243, + 0.02206234820187092, + -0.016457712277770042, + -0.09038320928812027, + 0.03471391275525093, + 0.13594834506511688, + -0.06662537902593613, + 0.003904643701389432, + 0.027290353551506996, + -0.06584285199642181, + -0.0784326121211052, + 0.0642554759979248, + 0.039051495492458344, + 0.03154207766056061, + -0.038696106523275375, + -0.010082010179758072, + -0.02437056414783001, + -0.06986261904239655, + 0.011419215239584446, + 0.04255007952451706, + 0.009334859438240528, + 0.004435256589204073, + -0.01550205983221531, + -0.05021403357386589, + 0.01481056772172451, + -0.11654307693243027, + -0.08391069620847702, + 0.02087518386542797, + -0.11578672379255295, + 0.011620569042861462, + 0.11258520185947418, + 0.08739609271287918, + 0.036913879215717316, + -0.04131241887807846, + -0.049756914377212524, + -0.03182749077677727, + 0.032591670751571655, + -0.02741565741598606, + 0.03171156346797943, + -2.6363691589944635e-33, + 0.09225699305534363, + 0.06091570481657982, + -0.03498690947890282, + 0.08614829182624817, + 0.017158877104520798, + -0.015924517065286636, + -0.09739255160093307, + -0.05794231593608856, + -0.07162301987409592, + 0.022104371339082718, + 0.054647304117679596, + 0.06394287943840027, + -0.043486159294843674, + -0.005297746043652296, + 0.020661363378167152, + 0.04633999615907669, + 0.039050471037626266, + -0.016002781689167023, + -0.05832606181502342, + -0.06644041836261749, + -0.032621581107378006, + -0.04139559715986252, + -0.040227338671684265, + 0.017390036955475807, + -0.03368724510073662, + 0.0680977925658226, + 0.025861242786049843, + -0.002529407851397991, + 0.04519421234726906, + 0.04056809842586517, + 0.0037354491651058197, + 0.01567668467760086, + 0.056018803268671036, + 0.009996389970183372, + 0.015753882005810738, + 0.06552637368440628, + -0.11288729310035706, + -0.00827320571988821, + -0.050946664065122604, + -0.041991833597421646, + -0.03174098953604698, + -0.030983079224824905, + -0.04765874147415161, + 0.0030025083106011152, + 0.11694298684597015, + 0.0443471223115921, + -0.05810035392642021, + -0.004750382620841265, + -0.004682512022554874, + -0.009131182916462421, + -0.03282791003584862, + 0.01900961622595787, + 0.0682407096028328, + 0.1214464083313942, + -0.02994574047625065, + 0.028058119118213654, + -0.0007893072324804962, + 0.03939012065529823, + -0.020290076732635498, + -0.05911261960864067, + 0.03149719163775444, + 0.02412334829568863, + 0.011195939965546131, + -0.06044641137123108, + 0.013905372470617294, + 0.03107251599431038, + -0.05132950097322464, + 0.023009536787867546, + 0.023658208549022675, + -0.04297485202550888, + -0.07273831218481064, + 0.02855951525270939, + 0.08256606012582779, + 0.04510054737329483, + -0.08009742945432663, + -0.03135702386498451, + -0.020933376625180244, + -0.03788411244750023, + 0.034678325057029724, + -0.11299905925989151, + -0.08771856129169464, + -0.03263983502984047, + -0.03671182692050934, + 0.02450687624514103, + 0.013049389235675335, + -0.0038265769835561514, + -0.01770312339067459, + -0.06047477945685387, + -0.1133052408695221, + 0.15334787964820862, + -0.018044335767626762, + -0.01947166584432125, + 0.009213913232088089, + -0.010351364500820637, + -0.11034192144870758, + 4.651640990312513e-34, + 0.01916905865073204, + 0.014457810670137405, + -0.013455371372401714, + -0.006567033007740974, + -0.03012354113161564, + -0.031078079715371132, + 0.032762475311756134, + 0.03275870159268379, + 0.015438525006175041, + -0.004141613375395536, + -0.07317907363176346, + -0.029534516856074333, + -0.007585008163005114, + -0.05707308277487755, + 0.019126778468489647, + 0.002976747928187251, + 0.032799962908029556, + 0.06720388680696487, + -0.03977752849459648, + 0.0654013603925705, + -0.012862052768468857, + 0.013563188724219799, + -0.11099127680063248, + 0.06728391349315643, + -0.06836111098527908, + 0.05730627849698067, + 0.017804348841309547, + -0.0320703350007534, + -0.07125785201787949, + -0.011261576786637306, + -0.005993461702018976, + 0.06885568052530289, + 0.027639135718345642, + 0.10200616717338562, + -0.06565826386213303, + -0.0066620721481740475, + 0.07096608728170395, + -0.11957983672618866, + 0.0016128493007272482, + 0.06011755019426346, + 0.022836025804281235, + 0.06908547133207321, + -0.010164553299546242, + 0.00973290205001831, + -0.013679695315659046, + 0.019356394186615944, + 0.039081353694200516, + -0.024682186543941498, + -0.029806876555085182, + 0.05658862739801407, + 0.038237135857343674, + -0.04290640354156494, + -0.03919348120689392, + 0.04109591245651245, + -0.024875089526176453, + -0.01281062699854374, + -0.008358260616660118, + 0.008320718072354794, + -0.022994186729192734, + 0.07559370249509811, + 4.256810643710196e-05, + 0.028753792867064476, + -0.0665954202413559, + 0.037981461733579636, + -0.012728549540042877, + 0.018332766368985176, + -0.01285350788384676, + 0.023770680651068687, + 0.0641162171959877, + 0.014865304343402386, + 0.04273213446140289, + 0.05121826007962227, + -0.069667287170887, + -0.021748466417193413, + 0.03678266331553459, + -0.1270066350698471, + -0.023770587518811226, + 0.0011157854460179806, + -0.07295423746109009, + 0.00874144397675991, + 0.036469023674726486, + 0.029362211003899574, + 0.005803355015814304, + 0.057827576994895935, + 0.002551475539803505, + -0.004642554558813572, + 0.024225104600191116, + 0.08351349085569382, + -0.07692709565162659, + -0.008232547901570797, + -0.029608387500047684, + 0.09231676906347275, + 0.015567287802696228, + 0.005076074507087469, + -0.032355573028326035, + -1.8464605844314974e-08, + -0.021312566474080086, + 0.0019679563120007515, + -0.038642022758722305, + -0.07486637681722641, + 0.09216692298650742, + -0.05849525332450867, + 0.007082922849804163, + -0.05998554825782776, + -0.047712069004774094, + -0.058586712926626205, + 0.03716037794947624, + 0.006000070367008448, + -0.04200403392314911, + -0.08608516305685043, + 0.0683441311120987, + -0.03683194890618324, + -0.06401903182268143, + 0.036440957337617874, + -0.050704412162303925, + -0.03307471051812172, + 0.039101604372262955, + 0.0520622581243515, + 0.00044693396193906665, + -0.02095126174390316, + 0.03893756866455078, + -0.0108103659003973, + -0.026906931772828102, + 0.012882809154689312, + 0.026762235909700394, + 0.09188366681337357, + 0.030753837898373604, + 0.053493697196245193, + 0.07517506927251816, + -0.009790671057999134, + -0.05540259927511215, + 0.09459143131971359, + 0.07110066711902618, + -0.008989710360765457, + 0.05354532226920128, + 0.12158416211605072, + 0.0004282429290469736, + -0.024052534252405167, + -0.038823116570711136, + 0.02165624313056469, + -0.03972618654370308, + -0.006075405515730381, + 0.01754150353372097, + -0.010070263408124447, + -0.0060776472091674805, + -0.09400011599063873, + -0.002638261066749692, + -0.0001160087704192847, + -0.006719448138028383, + 0.0842408686876297, + -0.02996760606765747, + -0.009022444486618042, + 0.031200667843222618, + 0.07120347023010254, + -0.014304856769740582, + 0.07357575744390488, + 0.1261364072561264, + -0.07714211940765381, + 0.02739594504237175, + -0.0032847884576767683 + ], + "warning-octagon-bold||alert,danger,dangerous,caution,errors,8,eight": [ + 0.031725212931632996, + 0.030588164925575256, + -0.03723221644759178, + 0.07075924426317215, + 0.05044705793261528, + 0.002963075414299965, + 0.06491483747959137, + 0.05881939455866814, + 0.019033469259738922, + -0.04096934199333191, + 0.025160862132906914, + -0.06932377070188522, + 0.0122313741594553, + 0.006208146922290325, + -0.09654723107814789, + 0.02522195130586624, + -0.027355222031474113, + -0.02799469232559204, + -0.06060486659407616, + 0.0406632125377655, + 0.07636380940675735, + 0.06232411414384842, + 0.024963101372122765, + 0.061604879796504974, + -0.04846375063061714, + 0.04144498333334923, + -0.027165936306118965, + 0.06500062346458435, + -0.03881791606545448, + -0.0863388255238533, + -0.018964378163218498, + 0.01565270684659481, + 0.12045230716466904, + 0.00369998044334352, + 0.03384943678975105, + 0.009610769338905811, + -0.008854527026414871, + -0.005354742519557476, + 0.06825274974107742, + 0.02389388158917427, + -0.01793479546904564, + -0.06464357674121857, + 0.04467102885246277, + 0.04177749156951904, + -0.054303139448165894, + -0.010135963559150696, + -0.05824756622314453, + -0.029056429862976074, + 0.010982171632349491, + -0.034274883568286896, + 0.03091491386294365, + -0.15815243124961853, + -0.09776763617992401, + 4.2406285501783714e-05, + 0.04493839666247368, + -0.05412569269537926, + -0.08999398350715637, + -0.0685596913099289, + 0.018496444448828697, + -0.002651618793606758, + 0.060041699558496475, + 0.04881471395492554, + 0.012862968258559704, + 0.07167278975248337, + -0.03663807362318039, + -0.0028675261419266462, + -0.05714844912290573, + -0.01327730156481266, + -0.03219602257013321, + 0.12089668214321136, + 0.09382163733243942, + 0.055922843515872955, + -0.013041527010500431, + 0.009700811468064785, + -0.010326601564884186, + 0.014819584786891937, + 0.04568622261285782, + -0.04506680369377136, + 0.018562886863946915, + -0.08637624233961105, + -0.03413569927215576, + -0.028336545452475548, + 0.01369077991694212, + 0.01676897145807743, + 0.04797574132680893, + 0.07825124263763428, + -0.07757465541362762, + -0.017243990674614906, + -0.017007267102599144, + 0.03783514350652695, + -0.02929861843585968, + -0.04312915354967117, + 0.052165474742650986, + 0.08222902566194534, + -0.025379538536071777, + 0.010695800185203552, + -0.01834891550242901, + -0.05127514526247978, + -0.1127200722694397, + 0.057337723672389984, + 0.05595838278532028, + -0.015317816287279129, + -0.05147404968738556, + 0.0255545936524868, + 0.013917380943894386, + -0.032542213797569275, + -0.02046699821949005, + 0.0213167704641819, + 0.010283536277711391, + -0.003510848619043827, + -0.02986280247569084, + -0.057715464383363724, + 0.06651164591312408, + -0.09544464200735092, + -0.09582098573446274, + 0.0036862462293356657, + -0.10324715077877045, + -0.016929758712649345, + 0.03271619230508804, + 0.14198698103427887, + -0.02718760073184967, + -0.04472725838422775, + -0.006694556213915348, + -0.0168520025908947, + 0.037795353680849075, + 0.0033675108570605516, + 0.02381678856909275, + -3.0225390733777474e-33, + 0.07915861904621124, + 0.04453280195593834, + -0.019713345915079117, + 0.04816202446818352, + 0.03798255696892738, + -0.06004570424556732, + -0.04762886092066765, + -0.09874606132507324, + -0.06937241554260254, + 0.06303521990776062, + -0.047015998512506485, + 0.055139899253845215, + -0.044396668672561646, + 0.04683388024568558, + 0.09139694273471832, + -0.00814148597419262, + 0.04715419188141823, + 0.006590773351490498, + -0.08339010179042816, + -0.056968722492456436, + -0.005284415557980537, + -0.04894125461578369, + -0.050745557993650436, + -0.03344971314072609, + -0.02367945946753025, + 0.08823841065168381, + 0.031015489250421524, + 0.02794201858341694, + 0.0235910564661026, + 0.02993924543261528, + -0.03686387836933136, + 0.03768220543861389, + 0.023309698328375816, + -0.02366698533296585, + 0.050555165857076645, + 0.006024811416864395, + -0.05344648286700249, + -0.05107424035668373, + -0.061169371008872986, + 0.006283693015575409, + -0.018165720626711845, + -0.0372091606259346, + -0.06109784543514252, + 0.04198814556002617, + 0.1681809276342392, + 0.07299336791038513, + -0.023147592321038246, + 0.002865090034902096, + 0.058041997253894806, + -0.004645809531211853, + -0.012146617285907269, + 0.04651356115937233, + 0.03648678585886955, + 0.06348389387130737, + -0.0390777513384819, + -0.02194223366677761, + -0.006229395046830177, + 0.07371007651090622, + -0.05556471273303032, + -0.042088694870471954, + 0.044570986181497574, + 0.04003169760107994, + 0.05191645398736, + -0.08252813667058945, + -0.01851591467857361, + -0.014371324330568314, + -0.06761424988508224, + 0.009921419434249401, + 0.033708009868860245, + -0.06558297574520111, + -0.07304127514362335, + -0.00597673375159502, + 0.048879802227020264, + 0.04744010046124458, + -0.0056959581561386585, + -0.003670954843983054, + -0.024567151442170143, + 0.009707101620733738, + 0.06198174133896828, + -0.06275665760040283, + -0.048509396612644196, + -0.02128944918513298, + -0.031063010916113853, + -0.00027419798425398767, + -0.003231807379052043, + 0.009425768628716469, + 0.03624143823981285, + -0.03257307410240173, + -0.07947981357574463, + 0.1423303633928299, + -0.003746649017557502, + -0.037272799760103226, + 0.009407415986061096, + 0.002395870164036751, + -0.10881969332695007, + 5.558281875179992e-34, + -0.07293721288442612, + 0.0114499032497406, + -0.05662379041314125, + -0.0525200255215168, + -0.05638682469725609, + 0.015831809490919113, + -4.067103145644069e-05, + 0.06164145842194557, + 0.0037545333616435528, + -0.010270752012729645, + -0.07800877839326859, + 0.04486062005162239, + 0.031681034713983536, + -0.04276031255722046, + 0.057648058980703354, + -0.004915113095194101, + -0.037356674671173096, + 0.08357518911361694, + -0.02399539202451706, + 0.010728487744927406, + -0.0033002973068505526, + -0.031660884618759155, + -0.1321912705898285, + 0.07239033281803131, + -0.002774263033643365, + 0.07921329140663147, + 0.027112914249300957, + -0.05246645584702492, + 0.0043854969553649426, + -0.0007402441697195172, + -0.037813376635313034, + 0.028795752674341202, + 0.014084340073168278, + 0.13170288503170013, + -0.02363629825413227, + -0.021303515881299973, + 0.09818705171346664, + -0.14770828187465668, + -0.01897653006017208, + -0.013018357567489147, + 0.02559065632522106, + 0.0277896486222744, + 0.05988701805472374, + 0.057927437126636505, + -0.04454583302140236, + 0.004234600812196732, + 0.03534921631217003, + -0.0018711688462644815, + -0.05814584344625473, + 0.07116815447807312, + 0.0020380893256515265, + -0.04044444113969803, + -0.038084182888269424, + 0.03384993597865105, + 0.030923379585146904, + -0.01717015914618969, + -0.047978729009628296, + -0.047838177531957626, + 0.011368755251169205, + 0.07806993275880814, + -0.029228681698441505, + 0.0122947096824646, + -0.03858933225274086, + 0.043907374143600464, + 0.0025395401753485203, + 0.01072361133992672, + -0.03570361062884331, + -0.020939258858561516, + 0.0029355352744460106, + 0.016381924971938133, + 0.07325541228055954, + 0.015209583565592766, + -0.1261959671974182, + -0.04705263301730156, + 0.04951233044266701, + -0.11156854033470154, + 0.03066517412662506, + 0.040842074900865555, + -0.03882008045911789, + 0.0331132635474205, + -0.026508579030632973, + -0.026995427906513214, + 0.03023904375731945, + 0.07416243106126785, + 0.0026642554439604282, + -0.012752356007695198, + 0.05989877134561539, + 0.08811916410923004, + -0.01467026025056839, + 0.022324588149785995, + -0.015279076062142849, + 0.08010321855545044, + 0.02122040092945099, + -0.015872769057750702, + -0.024425486102700233, + -2.2526156939761677e-08, + 0.017474548891186714, + -0.04773973673582077, + -0.030043406412005424, + -0.08512314409017563, + 0.0415131039917469, + -0.06057319790124893, + -0.03129231557250023, + -0.0861671045422554, + -0.0844443291425705, + -0.04597705230116844, + 0.058665987104177475, + 0.03320092335343361, + -0.03454761207103729, + -0.039767440408468246, + 0.025668751448392868, + -0.05450714752078056, + -0.023687483742833138, + 0.03983753174543381, + -0.033264536410570145, + -0.03798655420541763, + -0.027523044496774673, + 0.017866646870970726, + 0.03014758788049221, + -0.06079623103141785, + 0.05395300313830376, + 0.001703073619864881, + -0.03930133953690529, + 0.06873401999473572, + -0.025783183053135872, + 0.07811728119850159, + 0.027751004323363304, + 0.07370413094758987, + -0.009134205989539623, + -0.007138726767152548, + -0.05292574316263199, + 0.08584913611412048, + 0.052484672516584396, + 0.018439989537000656, + 0.023059416562318802, + 0.06158699095249176, + 0.028752580285072327, + -0.052863672375679016, + 0.025340911000967026, + 0.04340421035885811, + 0.013917893171310425, + 0.008959759958088398, + 0.041707027703523636, + -0.014807464554905891, + -0.008691010996699333, + -0.10131235420703888, + -0.024427076801657677, + -0.035519666969776154, + -0.011493160389363766, + 0.1022389605641365, + -0.06052534282207489, + -0.08121239393949509, + 0.029457367956638336, + 0.01768791675567627, + -0.011337311938405037, + 0.07595391571521759, + 0.09757683426141739, + -0.02848876267671585, + 0.015055591240525246, + -0.03995373845100403 + ], + "washing-machine-bold||*new*,clothing,laundry,cleaning": [ + -0.050414230674505234, + -0.004449203610420227, + 0.060877684503793716, + 0.032277293503284454, + 0.10373971611261368, + -0.00747929560020566, + 0.013835680671036243, + -0.07877461612224579, + -0.0903281569480896, + 0.003665254218503833, + 0.03332078829407692, + 0.004031334538012743, + 0.06199125945568085, + -0.03658345341682434, + 0.012467170134186745, + 0.04429818317294121, + -0.013465788215398788, + 0.0352008081972599, + -0.026630287989974022, + -0.018687238916754723, + 0.03527744114398956, + 0.04727674648165703, + 0.021671025082468987, + 0.005783349275588989, + 0.04106561094522476, + 0.03679905831813812, + 0.027321772649884224, + 0.006796095985919237, + -0.017190655693411827, + -0.07791322469711304, + -0.009028779342770576, + 0.022288162261247635, + 0.058357659727334976, + 0.03807281702756882, + 0.08015086501836777, + 0.030166856944561005, + 0.029119262471795082, + -0.04576552286744118, + 0.0024154474958777428, + 0.03630608320236206, + 0.06615157425403595, + -0.1178617775440216, + -0.08136087656021118, + -0.009605107828974724, + -0.014325326308608055, + 0.06496146321296692, + 0.012124422937631607, + -0.011368014849722385, + 0.044691137969493866, + 0.036692552268505096, + -0.036738071590662, + -0.08298517763614655, + -0.016221165657043457, + 0.006249645724892616, + -0.016624899581074715, + -0.0018086497439071536, + 0.009872999973595142, + -0.06025443226099014, + -0.011598458513617516, + -0.03465768322348595, + 0.007548819296061993, + -0.0022415153216570616, + -0.027679380029439926, + 0.06186298280954361, + 0.116514652967453, + -0.03197193518280983, + -0.03379325568675995, + 0.07833100855350494, + -0.10421384871006012, + 0.05251217633485794, + -0.0387280210852623, + 0.02756715565919876, + 0.01925061084330082, + 0.12096717953681946, + -0.06122530251741409, + -0.026457462459802628, + 0.04537997767329216, + -0.00488651730120182, + -0.03597943112254143, + -0.021953796967864037, + -0.11593341827392578, + -0.06603462249040604, + 0.008228059858083725, + 0.010187212377786636, + 0.0004220089176669717, + 0.0781152993440628, + -0.09231668710708618, + -0.12846772372722626, + -0.014738555997610092, + -0.05973871052265167, + -0.05787908658385277, + -0.07793783396482468, + 0.011401715688407421, + 0.01280080433934927, + -0.030585668981075287, + 0.0541846826672554, + 0.01340275164693594, + 0.05377212166786194, + 0.037493713200092316, + 0.06341646611690521, + -0.02787640132009983, + 0.05546797439455986, + 0.10234164446592331, + 0.012477581389248371, + -0.0264135655015707, + -0.05199335888028145, + -0.017853403463959694, + 0.023771535605192184, + 0.0194864422082901, + 0.010285175405442715, + 0.012959890998899937, + -0.07762866467237473, + -0.022012554109096527, + -0.04533395543694496, + -0.004457079339772463, + -0.07475021481513977, + 0.009063302539288998, + 0.007871415466070175, + 0.0010581843089312315, + 0.12708327174186707, + 0.04350213333964348, + -0.07137791067361832, + -0.05252297967672348, + -0.07349059730768204, + -0.08626914024353027, + 0.0043021817691624165, + 0.03158141300082207, + -3.3874624783828954e-33, + 0.04788947105407715, + 0.02931777760386467, + 0.05080046132206917, + 0.07162507623434067, + 0.03286290913820267, + 0.02230365201830864, + -0.037944190204143524, + -1.0061631655844394e-05, + 0.034685686230659485, + 0.1050749272108078, + 0.04422401264309883, + 0.044084399938583374, + -0.07374206930398941, + 0.07231062650680542, + 0.012619090266525745, + -0.019761040806770325, + 0.014673050493001938, + -0.07430481165647507, + -0.022959953173995018, + 0.02577206678688526, + -0.04415959119796753, + 0.10716792941093445, + 0.00023701408645138144, + -0.022076454013586044, + -0.07682180404663086, + -0.06493610143661499, + 0.06005815416574478, + -0.03573702275753021, + -0.030320482328534126, + 0.02629094570875168, + 0.07108838856220245, + -0.014957313425838947, + 0.027455128729343414, + 0.03429098799824715, + -0.10994969308376312, + 0.00045472034253180027, + -0.10164779424667358, + -0.013470987789332867, + 0.00923540722578764, + -0.03630726784467697, + -0.050899773836135864, + -0.026598205789923668, + 0.013310771435499191, + -0.005144956521689892, + -0.010995599441230297, + 0.06844411045312881, + -0.0015386886661872268, + 0.002255789004266262, + 0.040538933128118515, + 0.03460163623094559, + 0.05009780451655388, + 0.016222340986132622, + -0.023033475503325462, + -0.032305315136909485, + -0.025650430470705032, + -0.027155272662639618, + 0.017330899834632874, + -0.006823558360338211, + -0.012058883905410767, + 0.03904859349131584, + 0.047283586114645004, + 0.08090212196111679, + 0.04249119758605957, + 0.038620028644800186, + -0.0017859964864328504, + 0.016028376296162605, + 0.03905419632792473, + 0.010583193972706795, + 0.07647078484296799, + 0.01115397084504366, + -0.06863637268543243, + 0.024707576259970665, + -0.009190057404339314, + 0.11166633665561676, + 0.05502697080373764, + 0.0016999217914417386, + 0.0026466131675988436, + -0.027154089882969856, + 0.0057213339023292065, + -0.11760934442281723, + -0.040022674947977066, + 0.0037217261269688606, + -0.08417915552854538, + 0.13536545634269714, + -0.04238659515976906, + 0.06566151231527328, + -0.02249385230243206, + -0.01226940006017685, + 0.0069629838690161705, + -0.01267185527831316, + -5.256435906630941e-05, + 0.026903290301561356, + -0.02117234095931053, + -0.05161816254258156, + -0.10768084228038788, + -3.0484682747049793e-34, + 0.11616719514131546, + 0.007439511362463236, + -0.04674497991800308, + 0.04113001003861427, + -0.033698853105306625, + 0.017951587215065956, + 0.009243305772542953, + 0.03659088537096977, + -0.053905144333839417, + 0.07745055109262466, + 0.09442058205604553, + -0.04087792709469795, + -0.08701236546039581, + -0.013464612886309624, + 0.03948013857007027, + 0.10427285730838776, + 0.032104093581438065, + 0.004783985670655966, + -0.039981238543987274, + -0.011430595070123672, + 0.016839858144521713, + 0.05036351457238197, + -0.020239420235157013, + 0.030999567359685898, + -0.015126191079616547, + -0.04135873541235924, + -0.008296329528093338, + 0.05158502981066704, + -0.030810996890068054, + -0.0347215011715889, + -0.0786302387714386, + -0.02563277818262577, + 0.07379598915576935, + 0.08118604123592377, + -0.025176890194416046, + -0.04587684944272041, + 0.007042399141937494, + -0.06296828389167786, + 0.06498775631189346, + 0.013264965265989304, + 0.03195052966475487, + -0.06506353616714478, + 0.021269146353006363, + 0.08401874452829361, + -0.03700711950659752, + -0.0558813139796257, + -0.15118207037448883, + -0.09536810219287872, + -0.05923633649945259, + 0.03991781175136566, + -0.0035466488916426897, + -0.004272923339158297, + -0.008545570075511932, + -0.06986015290021896, + -0.06065841391682625, + 0.06107402965426445, + -0.0410393550992012, + -0.07378049939870834, + -0.06828200817108154, + 0.08590478450059891, + -0.06414908170700073, + 0.09887945652008057, + -0.04239514097571373, + 0.02356182411313057, + -0.007864171639084816, + -0.059947457164525986, + 0.00833150465041399, + -0.01652035117149353, + -0.008389285765588284, + -0.03766046464443207, + -0.027086922898888588, + 0.030048059299588203, + 0.00030260824132710695, + -0.03963237628340721, + -0.05145487189292908, + -0.1077549085021019, + 0.017989400774240494, + -0.04850918427109718, + -0.02830466441810131, + 0.002181652234867215, + -0.037716351449489594, + -0.052228424698114395, + -0.03884521499276161, + 0.05529409646987915, + -0.027738863602280617, + 0.022021807730197906, + -0.013846015557646751, + 0.013655154034495354, + 0.02001824975013733, + 0.0005246239597909153, + 0.012526065111160278, + 0.015275904908776283, + -0.05357152223587036, + 0.08748183399438858, + -0.06388247758150101, + -1.9548521024148613e-08, + -0.012268668040633202, + -0.05351262912154198, + 0.03899208456277847, + 0.015193481929600239, + 0.07765867561101913, + -0.05282553285360336, + -0.08908378332853317, + -0.004223023075610399, + -0.04697427153587341, + 0.03718743473291397, + 0.04577294737100601, + 0.041857603937387466, + -0.06803186982870102, + 0.032137587666511536, + 0.00988286267966032, + -0.0101769445464015, + 0.01549944095313549, + 0.02301505208015442, + -0.06184770166873932, + -0.05636351555585861, + 0.009030170738697052, + 0.03866315633058548, + 0.009566468186676502, + 0.07527158409357071, + 0.0699579268693924, + 0.004675890784710646, + -0.05938524752855301, + 0.023138616234064102, + 0.009022017009556293, + 0.07096293568611145, + 0.04990457370877266, + 0.050026558339595795, + -0.03612053394317627, + 0.010291711427271366, + -0.13078072667121887, + -0.05383014678955078, + -0.00859682634472847, + -0.07180008292198181, + -0.005077560897916555, + 0.04294969141483307, + 0.014602870680391788, + 0.059598568826913834, + -0.03012625314295292, + 0.02220872789621353, + 0.027653267607092857, + -0.09122995287179947, + -0.03203549608588219, + -0.0848604217171669, + -0.04118282347917557, + -0.09776830673217773, + 0.017113428562879562, + -0.025650983676314354, + 0.07506301254034042, + 0.10485871136188507, + -0.019613755866885185, + -0.020068952813744545, + -0.0031434062402695417, + 0.020776886492967606, + 0.0012720308732241392, + 0.07268140465021133, + 0.11157833784818649, + -0.033636920154094696, + 0.0392744243144989, + -0.04185288026928902 + ], + "watch-bold||times,timer,alarm,schedule,events,clock,wristwatch,wearable": [ + -0.014347029849886894, + -0.03654729202389717, + -0.013404449447989464, + 0.008269358426332474, + 0.048149630427360535, + 0.07342151552438736, + 0.11259525269269943, + -0.029777856543660164, + 0.03028271719813347, + 0.000195543936570175, + 0.004228934179991484, + -0.013676842674612999, + -0.003129403805360198, + -0.004267361015081406, + -0.008890214376151562, + -0.03932756185531616, + 0.055179666727781296, + 0.0015387232415378094, + 0.025706302374601364, + -0.011664992198348045, + 0.06654320657253265, + -0.025700878351926804, + 0.08411817997694016, + 0.11118916422128677, + -0.0007793107652105391, + 0.006373398005962372, + 0.01415129005908966, + -0.0025862848851829767, + 0.00231503346003592, + -0.04182509705424309, + -0.05148416385054588, + -0.041979577392339706, + 0.08722047507762909, + 0.002125491388142109, + -0.023808788508176804, + -0.018569495528936386, + 0.03876705467700958, + 0.0029246981721371412, + -0.0749872699379921, + 0.03177719563245773, + 0.05262913554906845, + -0.058629922568798065, + 0.020549865439534187, + 0.04241665452718735, + 0.007113151252269745, + 0.029004910960793495, + -0.008340499363839626, + -0.04276830703020096, + -0.06377063691616058, + 0.04731142148375511, + -0.02756640687584877, + -0.03804991394281387, + -0.022782403975725174, + -0.015328681096434593, + 0.1029929667711258, + 0.022506410256028175, + -0.046046171337366104, + -0.008150962181389332, + 0.06370124220848083, + 0.013601374812424183, + 0.021076759323477745, + 0.014828510582447052, + -0.06268336623907089, + 0.05656399205327034, + -0.03733380511403084, + 0.04945390298962593, + -0.020800938829779625, + 0.0477306991815567, + 0.047438960522413254, + -0.0020339656621217728, + -0.04399450123310089, + 0.022775687277317047, + 0.04124024882912636, + 0.020664531737565994, + -0.05735306441783905, + 0.00038743330514989793, + 0.04587852582335472, + -0.06550732254981995, + -0.020569084212183952, + -0.05137136951088905, + -0.1664457619190216, + -0.10275323688983917, + -0.034451279789209366, + 0.019761454313993454, + 0.10587470978498459, + 0.023364251479506493, + -0.0072525739669799805, + -7.852671114960685e-05, + -0.038146212697029114, + -0.06884187459945679, + -0.050005439668893814, + -0.016960354521870613, + 0.0018392131896689534, + -0.025745490565896034, + -0.02967245504260063, + 0.06377054005861282, + 0.01695421151816845, + 0.0607777014374733, + -0.023839259520173073, + 0.02106860838830471, + 0.016727065667510033, + 0.001983673544600606, + -0.014472614973783493, + 0.09026211500167847, + -0.03383270278573036, + -0.08166894316673279, + -0.06922884285449982, + -0.0400160513818264, + 0.0006688795983791351, + 0.06635104864835739, + -0.0005164979957044125, + -0.04172004386782646, + -0.005609884858131409, + -0.0683973953127861, + 0.02888580411672592, + 0.03625226765871048, + -0.12817873060703278, + 0.04883764311671257, + 0.14690151810646057, + 0.15868492424488068, + 0.047351788729429245, + 0.008572343736886978, + -0.01574581116437912, + -0.08060596883296967, + 0.003874214133247733, + 0.0568234883248806, + 0.043580684810876846, + -1.9291744924664977e-33, + 0.03153606504201889, + 0.01579052023589611, + -0.06655392050743103, + 0.013147830963134766, + 0.011530822142958641, + 0.01766032911837101, + -0.06565956771373749, + -0.009776970371603966, + 0.025460021570324898, + 0.06463328748941422, + 0.05464945733547211, + 0.05084715038537979, + -0.03401840478181839, + 0.080039381980896, + 0.09402159601449966, + -0.008994593285024166, + 0.02341892570257187, + 0.015148174948990345, + -0.015982922166585922, + -0.056639231741428375, + -0.06121736764907837, + 0.02680719643831253, + -0.051932450383901596, + 0.015485289506614208, + 0.02156153693795204, + -0.012231961823999882, + 0.010369806550443172, + -0.0018294440815225244, + -0.015075144357979298, + 0.022180134430527687, + 0.06298048049211502, + -0.0504290834069252, + -0.006942616309970617, + -0.007932422682642937, + 0.04828836768865585, + -0.028013475239276886, + -0.030538780614733696, + -0.010691254399716854, + 5.272282214718871e-05, + -0.04128789156675339, + -0.0678686797618866, + -0.05123529210686684, + -0.0714707151055336, + -0.09106151014566422, + 0.04554195702075958, + 0.02317444421350956, + 0.02678079716861248, + 0.015379405580461025, + 0.04380709305405617, + 0.0036362323444336653, + 0.013138442300260067, + -0.013414894230663776, + 0.05493427440524101, + -0.12338041514158249, + 0.02820153906941414, + 0.05377496778964996, + 0.04938149079680443, + 0.03448980301618576, + 0.008829591795802116, + 0.06623411178588867, + -0.010163802653551102, + 0.05304050073027611, + 0.105649933218956, + -0.05404907837510109, + -0.0013789571821689606, + 0.06771139055490494, + 0.01105121336877346, + -0.03187282755970955, + 0.04076387733221054, + 0.040828969329595566, + -0.03485271334648132, + 0.02670767530798912, + 0.041309040039777756, + 0.038366418331861496, + -0.010036692954599857, + 0.03439231589436531, + 0.06032861769199371, + -0.005583175458014011, + -0.04467827454209328, + -0.038305822759866714, + -0.042163919657468796, + -0.028658054769039154, + 0.014869353733956814, + 0.1275235116481781, + 0.007264075800776482, + -0.02178429812192917, + -0.030732788145542145, + -0.11028985679149628, + -0.03570882976055145, + -0.031162085011601448, + -0.013584320433437824, + -0.030316244810819626, + 0.045550860464572906, + -0.05620525777339935, + -0.17290394008159637, + -4.4021570080298674e-34, + 0.005207589827477932, + -0.026759088039398193, + 0.0374428816139698, + -0.060010675340890884, + 0.014715065248310566, + -0.025460176169872284, + -0.03629413992166519, + 0.0013368609361350536, + 0.032110702246427536, + 0.07157137244939804, + 0.03694431856274605, + -0.04526479169726372, + -0.06618060171604156, + -0.03438277170062065, + -0.05155952647328377, + 0.03523890674114227, + 0.06536126881837845, + 0.03472825139760971, + 0.007232366129755974, + -0.021156128495931625, + 0.022148361429572105, + -0.02396988868713379, + -0.023408234119415283, + -0.02046092599630356, + 0.054696884006261826, + 0.021290989592671394, + 0.018237922340631485, + 0.020944198593497276, + -0.0178231131285429, + -0.0708479955792427, + -0.07047156244516373, + -0.05166570842266083, + 0.06928829848766327, + 0.05234694853425026, + -0.031524669378995895, + 0.007993772625923157, + 0.05383386090397835, + -0.02739190123975277, + -0.051933515816926956, + -0.043944913893938065, + 0.058875326067209244, + 0.03288479149341583, + 0.0956430584192276, + -0.0057613239623606205, + -0.0536932498216629, + 0.030529232695698738, + -0.09615065902471542, + 0.02708330936729908, + -0.08866329491138458, + 0.037740468978881836, + -0.01423659548163414, + -0.0811861902475357, + -0.028120560571551323, + -0.028587371110916138, + -0.09883277118206024, + 0.009176142513751984, + 0.004571838304400444, + -0.05462310090661049, + 0.01597934402525425, + 0.017473340034484863, + 0.011057620868086815, + -0.03223028779029846, + -0.03601183369755745, + 0.08928689360618591, + 0.016559286043047905, + 0.008139073848724365, + -0.007227552589029074, + -0.04746986925601959, + -0.041776761412620544, + -0.047850627452135086, + 0.03738744929432869, + -0.01212305761873722, + -0.05488821491599083, + -0.042634788900613785, + -0.06746005266904831, + -0.02159503847360611, + -0.008025872521102428, + 0.03584502637386322, + -0.09208951890468597, + -0.023006092756986618, + 0.0069543467834591866, + -0.03435764089226723, + 0.0075627160258591175, + 0.012572135776281357, + -0.03868485987186432, + 0.0954863652586937, + 0.031389735639095306, + 0.03584593906998634, + 0.047425415366888046, + 0.029140779748558998, + -0.05073598027229309, + 0.06810441613197327, + -0.02649601548910141, + 0.12704616785049438, + 0.002283013192936778, + -2.008897403982246e-08, + 0.005971700884401798, + 0.003378163790330291, + 0.026814961805939674, + -0.0791284367442131, + 0.013996189460158348, + -0.0817849338054657, + -0.030429299920797348, + -0.0659794732928276, + -0.022976839914917946, + -0.007869583554565907, + 0.04298355057835579, + -0.025562336668372154, + -0.07897358387708664, + -0.04491369053721428, + 0.08083263784646988, + -0.03205897659063339, + -0.024004440754652023, + 0.04270660877227783, + -0.055639173835515976, + -0.02668621577322483, + 0.03240117058157921, + 0.03600743040442467, + 0.04063521325588226, + -0.021410273388028145, + 0.03266138583421707, + 0.051270321011543274, + -0.0687183067202568, + 0.03144451603293419, + 0.09363585710525513, + 0.12208982557058334, + 0.05840005725622177, + 0.08841430395841599, + -0.0074385362677276134, + -0.031413428485393524, + -0.13964992761611938, + -0.09050095081329346, + -0.029216967523097992, + -0.036879878491163254, + 0.03310311585664749, + 0.1437038779258728, + 0.041261956095695496, + -0.11556209623813629, + -0.09035023301839828, + 0.07188723236322403, + -0.010505013167858124, + -0.08209086954593658, + 0.0204753614962101, + -0.12138548493385315, + -0.00781839620321989, + -0.08030242472887039, + -0.027967587113380432, + 0.015970995649695396, + 0.03944498300552368, + -0.0037716079968959093, + -0.002228722907602787, + 0.04475323483347893, + 0.07015617191791534, + -0.04043086618185043, + -0.03849221393465996, + -0.02928869053721428, + 0.09243855625391006, + -0.006832812447100878, + 0.013879095204174519, + 0.02179390750825405 + ], + "wave-sawtooth-bold||synth,synthesizer,sound,audio,music,waveform": [ + -0.06882042437791824, + -0.08842234313488007, + -0.02562551200389862, + -0.03394205495715141, + -0.03916371241211891, + -0.007181901950389147, + -0.002192314248532057, + -0.006428794469684362, + -0.0952695980668068, + -0.03919204697012901, + 0.008324782364070415, + -0.07213258743286133, + -0.008107079192996025, + -0.04982256516814232, + 0.03562459349632263, + 0.07342113554477692, + 0.05551750212907791, + 0.001235020812600851, + 0.05992394685745239, + 0.011947175487875938, + 0.05652211979031563, + 0.05958689749240875, + -0.014950251206755638, + -0.0069386460818350315, + 0.12819139659404755, + 0.037132810801267624, + 0.06750761717557907, + 0.020488053560256958, + 0.0658731684088707, + -0.07487137615680695, + 0.03403139486908913, + 0.07196120917797089, + 0.10276827961206436, + -0.03498047962784767, + -0.013299855403602123, + -0.016610145568847656, + -0.020247627049684525, + -0.05303070321679115, + -0.040922146290540695, + 0.016518112272024155, + -0.041825518012046814, + 0.032626230269670486, + -0.025750983506441116, + 0.027923882007598877, + -0.060834553092718124, + -0.05722642317414284, + -0.07376492768526077, + -0.047310542315244675, + -0.07006220519542694, + -0.049072641879320145, + -0.025612041354179382, + -0.12198289483785629, + -0.08206865191459656, + 0.03345247730612755, + -0.03307495638728142, + -0.002517272252589464, + -0.0009464520844630897, + 0.04443146660923958, + 0.08408834785223007, + -0.019150469452142715, + 0.034318845719099045, + 0.03814270719885826, + 0.04568461328744888, + -0.03410884737968445, + 0.0416729599237442, + 0.009822199121117592, + 0.0030056580435484648, + 0.041372738778591156, + 0.03637339919805527, + 0.022101765498518944, + 0.013206986710429192, + -0.007486717775464058, + 0.01514444686472416, + -0.00038419102202169597, + 0.01241301093250513, + -0.0373808927834034, + 0.03509442135691643, + -0.025562483817338943, + -0.02451074868440628, + -0.06637182086706161, + -0.0966339111328125, + -0.07596421241760254, + -0.1223294660449028, + -0.054981593042612076, + 0.04833927005529404, + 0.10448440909385681, + -0.019456464797258377, + -0.016789311543107033, + -0.10034731775522232, + 0.005459119100123644, + -0.155117005109787, + -0.030549777671694756, + -0.0829898864030838, + -0.01428704522550106, + -0.036777645349502563, + 0.04490864276885986, + 0.05452010780572891, + 0.039453718811273575, + 0.04264257475733757, + 0.04732995480298996, + 0.021922841668128967, + 0.009747812524437904, + 0.018140379339456558, + 0.04000132903456688, + -0.1038096472620964, + -0.10039915144443512, + -0.03723113611340523, + 0.08445063978433609, + 0.037431761622428894, + -0.022447781637310982, + -0.009230210445821285, + -0.03292171657085419, + -0.03624538704752922, + -0.029017334803938866, + 0.034579597413539886, + -0.04202141612768173, + -0.04755432903766632, + 0.005277627147734165, + 0.08488821983337402, + 0.10992215573787689, + 0.023445086553692818, + 0.0329291857779026, + -0.055935803800821304, + 0.03013714589178562, + 0.012585780583322048, + -0.03245611861348152, + 0.020831935107707977, + -2.7844015503164143e-33, + 0.11521854251623154, + 0.07738744467496872, + -0.04082927107810974, + 0.016690528020262718, + 0.09066446870565414, + -0.059527311474084854, + -0.09135809540748596, + -0.0013689141487702727, + -0.04722604900598526, + 0.08951959758996964, + -0.014883359894156456, + 0.05385301634669304, + -0.056208811700344086, + 0.0682898610830307, + 0.006753718946129084, + -0.07721983641386032, + -0.02333776280283928, + -0.020876452326774597, + -0.10045215487480164, + 0.011165644973516464, + -0.030755851417779922, + 0.10049509257078171, + -0.041084304451942444, + 0.03005063161253929, + -0.02074127271771431, + -0.006890447344630957, + 0.0012984846252948046, + -0.007137513719499111, + -0.020191136747598648, + 0.012791519053280354, + -0.017184866592288017, + 0.04537414014339447, + 0.003286030376330018, + -0.03376353532075882, + 0.010843358002603054, + -0.01968318410217762, + -0.05132823437452316, + 0.005212749820202589, + -0.015800252556800842, + -0.07539115101099014, + -0.05576910823583603, + -0.00895370077341795, + -0.053997255861759186, + -0.014420310966670513, + 0.03370194509625435, + 0.007775121368467808, + -0.03592480346560478, + 0.02642093412578106, + 0.0602898932993412, + 0.0005338703049346805, + -0.02123192511498928, + -0.001449167262762785, + 0.03634927421808243, + 0.07698530703783035, + 0.046914517879486084, + -0.021503206342458725, + 0.025136690586805344, + 0.03947758674621582, + -0.0019412165274843574, + 0.028232410550117493, + 0.08154042065143585, + 0.04409998655319214, + 0.0823696032166481, + -0.030843324959278107, + -0.042890045791864395, + 0.08605096489191055, + 0.015371887013316154, + -0.05583591386675835, + 0.08337625861167908, + -0.037130676209926605, + -0.04490481689572334, + 0.043614063411951065, + 0.012398194521665573, + 0.06217873468995094, + -0.047405991703271866, + 0.026560062542557716, + -0.0342584103345871, + -0.0015457984991371632, + -0.019286341965198517, + -0.005182997789233923, + -0.08509255945682526, + 0.04392128437757492, + -0.05478806048631668, + 0.061870772391557693, + 0.02715553529560566, + 0.053707145154476166, + -0.029009627178311348, + -0.1738375872373581, + -0.08048897981643677, + 0.024675237014889717, + -0.16209137439727783, + -0.016833966597914696, + -0.038190074265003204, + -0.08557946979999542, + -0.07170896232128143, + -6.941263147125654e-35, + 0.01944129914045334, + 0.09775254875421524, + 0.033701010048389435, + -0.042181164026260376, + -0.013174603693187237, + 0.0764809399843216, + 0.027021421119570732, + 0.05743355304002762, + 0.021445848047733307, + 0.06544961035251617, + 0.09390296041965485, + -0.05013323947787285, + -0.0005320314085111022, + -0.05611575394868851, + -0.045200273394584656, + 0.01340342778712511, + 0.04054718837141991, + -0.03377718850970268, + 0.04583409056067467, + 0.009065203368663788, + -0.030085377395153046, + -0.03640736639499664, + -0.061961084604263306, + 0.051748231053352356, + -0.036154236644506454, + 0.024757033213973045, + -0.017727840691804886, + -0.004369611851871014, + 0.015722820535302162, + -0.03162752091884613, + 0.03042793460190296, + -0.007336260750889778, + 0.047099288552999496, + -0.06029001995921135, + 0.003876625094562769, + 0.05806509405374527, + 0.05555305257439613, + 0.024030053988099098, + -0.005558300297707319, + -0.07235933095216751, + -0.006629381328821182, + 0.07784315943717957, + 0.06570395082235336, + 0.05297982692718506, + -0.02844861149787903, + 0.037602849304676056, + -0.037204306572675705, + 0.01852603070437908, + -0.07926487922668457, + 0.018913637846708298, + 0.1422223448753357, + 0.017691805958747864, + 0.0716254934668541, + -0.06302115321159363, + -0.08342953026294708, + -0.015832502394914627, + 0.01969696395099163, + -0.06574306637048721, + 0.028476469218730927, + 0.0475444458425045, + 0.02605416066944599, + 0.004782442934811115, + -0.03251468390226364, + -0.01660623587667942, + 0.010877511464059353, + 0.01926673948764801, + 0.004554842133074999, + -0.042386554181575775, + 0.07235290855169296, + -0.003654130734503269, + 0.037363383919000626, + 0.005949323531240225, + 0.017165249213576317, + 0.05356134846806526, + -0.00553858419880271, + -0.10482648760080338, + -0.060502294450998306, + -0.029680663719773293, + -0.04224008694291115, + 0.00277687213383615, + 0.04410725086927414, + 0.024306487292051315, + 0.0014790735440328717, + 0.03434976190328598, + 0.016807135194540024, + 0.029761577025055885, + -0.007960830815136433, + 0.02007562480866909, + 0.0004984952392987907, + 0.023479806259274483, + -0.026682399213314056, + 0.1053139865398407, + -0.04103391245007515, + -0.0024921365547925234, + -0.015759527683258057, + -2.012839495080243e-08, + 0.010924660600721836, + -8.221097232308239e-05, + -0.0053175389766693115, + -0.06472833454608917, + 0.007464289199560881, + -0.05415072664618492, + 0.04603138938546181, + -0.08397265523672104, + -0.02497280389070511, + -0.04862620681524277, + 0.03296240419149399, + -0.041902292519807816, + -0.07265101373195648, + -0.005285047926008701, + 0.043908942490816116, + 0.03454979509115219, + -0.08874084055423737, + 0.06943054497241974, + -0.022418590262532234, + -0.09187814593315125, + 0.03561148792505264, + 0.05071784555912018, + -0.0070027238689363, + -0.024005206301808357, + 0.06664272397756577, + -0.002449147403240204, + -0.029936842620372772, + 0.012152222916483879, + 0.03156350553035736, + 0.09430372714996338, + 0.024606216698884964, + 0.08359557390213013, + 0.003903446951881051, + -0.00955353956669569, + -0.08983585983514786, + -0.02169749140739441, + -0.05165321007370949, + -0.018306443467736244, + -0.05865810066461563, + 0.08992105722427368, + 0.02990208938717842, + 0.060530778020620346, + -0.03241610899567604, + 0.02179858647286892, + 0.016857780516147614, + -0.06307843327522278, + 0.07207095623016357, + -0.06699089705944061, + -0.04162080958485603, + -0.01678634248673916, + -0.038190845400094986, + 0.08918384462594986, + 0.007506645284593105, + 0.011236566118896008, + -0.018787767738103867, + 0.053903814405202866, + -0.051548656076192856, + 0.027449166402220726, + -0.05646156519651413, + -0.009810044430196285, + 0.07260337471961975, + 0.010701165534555912, + 0.04771174117922783, + 0.0637306421995163 + ], + "wave-sine-bold||synth,synthesizer,sound,audio,music,waveform": [ + -0.05825534090399742, + -0.05792688950896263, + -0.06351715326309204, + -0.038011614233255386, + -0.013891330920159817, + 0.0049590193666517735, + 0.020549219101667404, + -0.033414509147405624, + -0.03192221373319626, + -0.046496618539094925, + 0.014529915526509285, + -0.059417132288217545, + 0.001433774596080184, + -0.05238712206482887, + 0.040263913571834564, + 0.04075492173433304, + 0.010316511616110802, + 0.004487221594899893, + 0.05075042322278023, + 0.0009956542635336518, + 0.04955734312534332, + 0.05839495733380318, + -0.004596941638737917, + -0.011890865862369537, + 0.054368551820516586, + 0.07159239053726196, + 0.07522416859865189, + 0.04577156901359558, + 0.03766953945159912, + -0.09036991000175476, + 0.023909008130431175, + 0.10687407106161118, + 0.1174221858382225, + -0.026405051350593567, + -0.028257202357053757, + -0.014747673645615578, + -0.04542682692408562, + -0.05539429187774658, + -0.028800681233406067, + 0.03773365914821625, + -0.031148936599493027, + 0.004290061537176371, + -0.03862496837973595, + -0.0007155138300731778, + -0.08716253936290741, + -0.05565739795565605, + -0.0638962984085083, + -0.05721352621912956, + -0.047757502645254135, + -0.053866736590862274, + -0.007351934444159269, + -0.1297457069158554, + -0.11867769062519073, + 0.06786736100912094, + -0.01906658336520195, + -0.012081933207809925, + -0.0047906311228871346, + 0.015449338592588902, + 0.06526137888431549, + -0.02530353143811226, + 0.03687862306833267, + 0.04951215535402298, + 0.040828887373209, + 0.011211112141609192, + 0.031233662739396095, + 0.0065512219443917274, + 0.061182402074337006, + 0.024629075080156326, + 0.017343582585453987, + -0.013260426931083202, + 0.0017594859236851335, + -0.030720330774784088, + -0.013845383189618587, + 0.04083747789263725, + 0.001396635314449668, + -0.025531331077218056, + 0.001797652686946094, + 0.007623209152370691, + -0.03674604743719101, + -0.07723810523748398, + -0.0633864477276802, + -0.0781741589307785, + -0.09567531198263168, + -0.05729521065950394, + 0.03309069201350212, + 0.12801191210746765, + -0.046424418687820435, + -0.022426152601838112, + -0.012051393277943134, + 0.009310254827141762, + -0.16551798582077026, + -0.008745793253183365, + -0.06503815948963165, + 0.00680075166746974, + -0.006098039448261261, + 0.03892682120203972, + 0.05385105311870575, + 0.007801128085702658, + 0.022295551374554634, + 0.04349606856703758, + 0.014497214928269386, + 0.026239464059472084, + 0.03644759580492973, + 0.05396520346403122, + -0.06193949282169342, + -0.10341399163007736, + 0.006256527733057737, + 0.06027185916900635, + 0.0056441002525389194, + -0.03346189856529236, + -0.011101672425866127, + -0.028568385168910027, + -0.004147279541939497, + -0.06043476611375809, + 0.07461904734373093, + -0.019062984734773636, + -0.07213310897350311, + 0.019460031762719154, + 0.08326704055070877, + 0.08707689493894577, + 0.03271329775452614, + -0.01679265685379505, + -0.0635528415441513, + 0.05621165782213211, + -0.006831593345850706, + -0.027072850614786148, + -0.03577692434191704, + -2.4805992597792174e-33, + 0.11575018614530563, + 0.10156451910734177, + -0.01702502742409706, + 0.059205323457717896, + 0.045547932386398315, + -0.07995425164699554, + -0.08877690136432648, + -0.003552874317392707, + -0.03463751822710037, + 0.09141959995031357, + -0.026731466874480247, + 0.10001835972070694, + -0.06287805736064911, + 0.07138263434171677, + 0.03695645555853844, + -0.03560613468289375, + -0.011294109746813774, + -0.007653810549527407, + -0.10038728266954422, + -0.014544662088155746, + -0.04146743193268776, + 0.09402527660131454, + -0.00409254664555192, + -0.003194354474544525, + -0.0037420061416924, + 0.003456428647041321, + -0.0012487518833950162, + -0.014017892070114613, + -0.03277613967657089, + -0.007264153100550175, + 0.0124057587236166, + 0.027510054409503937, + 0.03643764927983284, + -0.0331130176782608, + 0.03529645502567291, + -0.016001544892787933, + -0.0701633095741272, + 0.028699450194835663, + -0.013401292264461517, + -0.004031775519251823, + -0.059331439435482025, + -0.0400974415242672, + -0.02227628044784069, + 0.012835080735385418, + 0.04642409458756447, + 0.022470757365226746, + -0.03285261616110802, + 0.002875413978472352, + 0.11095815896987915, + 0.050772856920957565, + -0.01636721007525921, + -0.01211374532431364, + 0.034269362688064575, + 0.06415323168039322, + 0.0026536516379565, + -0.0050195143558084965, + 0.045493386685848236, + 0.03469517454504967, + -0.047883667051792145, + 0.01848624460399151, + 0.02990611456334591, + 0.015377713367342949, + 0.07081469148397446, + -0.10240352153778076, + -0.049468085169792175, + 0.08072791993618011, + -0.042754221707582474, + -0.0585111640393734, + 0.08625335246324539, + 0.010411727242171764, + -0.027717474848031998, + 0.019866345450282097, + 0.03340643644332886, + 0.04288369417190552, + 0.01649339869618416, + 0.003879786003381014, + -0.044032223522663116, + -0.008686011657118797, + 0.004301588982343674, + -0.0011340456549078226, + -0.080757275223732, + 0.012303158640861511, + -0.06254979968070984, + 0.032293882220983505, + 0.0009472632664255798, + 0.07651619613170624, + 0.018535062670707703, + -0.10797983407974243, + -0.03734912723302841, + 0.013396906666457653, + -0.17617496848106384, + 0.04627906531095505, + -0.008978493511676788, + -0.08142586797475815, + -0.07710493355989456, + -4.014878455536964e-34, + 0.01478363573551178, + 0.07388035207986832, + -0.013244002126157284, + -0.0184622872620821, + -0.004865626804530621, + 0.08981069922447205, + 0.049390070140361786, + 0.06404172629117966, + 0.04065985977649689, + 0.03286227956414223, + 0.08274924755096436, + -0.06213853135704994, + 0.025304820388555527, + -0.08914753794670105, + -0.05893438681960106, + 0.016636718064546585, + -0.008512950502336025, + -0.031301818788051605, + 0.03595389053225517, + 0.02299996092915535, + -0.0760951116681099, + -0.04764290153980255, + -0.026625167578458786, + 0.047959234565496445, + -0.0422695092856884, + 0.004242370370775461, + 0.011291494593024254, + 0.00427503976970911, + 0.00601251469925046, + -0.016481738537549973, + 0.008185493759810925, + -0.023623531684279442, + 0.062032975256443024, + -0.040504585951566696, + -0.028888458386063576, + 0.07617464661598206, + 0.08769689500331879, + 0.027446992695331573, + -0.04058193042874336, + -0.05502064898610115, + -0.0411263145506382, + 0.018383150920271873, + 0.0792720764875412, + 0.05456990376114845, + -0.04750105366110802, + 0.023278983309864998, + -0.013219723477959633, + 0.001536234631203115, + -0.07343292236328125, + 0.055097248405218124, + 0.1298515945672989, + -0.03035745956003666, + 0.058853887021541595, + -0.04662902653217316, + -0.08234046399593353, + -0.029122386127710342, + -0.013831432908773422, + -0.0309575367718935, + -0.01580735482275486, + 0.03401975706219673, + 0.007019653916358948, + 0.0056593576446175575, + -0.01046545710414648, + -0.029068540781736374, + -0.01031230017542839, + 0.01597854122519493, + -0.008467593230307102, + -0.011449103243649006, + 0.08046506345272064, + 0.004628137685358524, + 0.027698079124093056, + -0.005599766504019499, + 0.0037433598190546036, + 0.017043691128492355, + -0.029815440997481346, + -0.1575566679239273, + -0.04334848001599312, + -0.02923581190407276, + -0.06998034566640854, + 0.00039048708276823163, + 0.008805837482213974, + 0.01881507597863674, + -0.045937057584524155, + 0.010010059922933578, + -0.05067165195941925, + 0.034256935119628906, + 0.009575927630066872, + -0.011003963649272919, + 0.007888773456215858, + 0.0153408357873559, + -0.00729535473510623, + 0.13801363110542297, + -0.04203616827726364, + -0.008607455529272556, + -0.005507062189280987, + -2.0101763809066142e-08, + 0.01740718074142933, + -0.0042280228808522224, + -0.022550025954842567, + -0.06447640061378479, + 0.05443541333079338, + -0.06433836370706558, + 0.0940636619925499, + -0.10495336353778839, + -0.02678813599050045, + -0.027333814650774002, + 0.02207316644489765, + -0.0031231106258928776, + -0.02844967506825924, + -0.03114693984389305, + 0.02831382304430008, + 0.04354849085211754, + -0.13371162116527557, + 0.11779230087995529, + -0.002418372081592679, + -0.08176026493310928, + 0.0804160013794899, + 0.09037380665540695, + 0.019501114264130592, + -0.02764221653342247, + 0.07219681143760681, + 0.024085575714707375, + -0.0028838184662163258, + -0.0041587441228330135, + 0.018296079710125923, + 0.0983627513051033, + 0.009097222238779068, + 0.04645467549562454, + 0.013895925134420395, + -0.0299565177410841, + -0.06405065208673477, + 0.007466822396963835, + -0.024336151778697968, + -0.02934594824910164, + -0.06185247376561165, + 0.10621599853038788, + 0.0027940322179347277, + 0.09507305920124054, + -0.04691075533628464, + 0.010175450704991817, + 0.007657335139811039, + -0.06647323071956635, + 0.05229971185326576, + -0.02154851332306862, + -0.0022621657699346542, + -0.031461451202631, + -0.013159406371414661, + 0.08655104786157608, + -0.02394372969865799, + -0.008844112977385521, + -0.03670267388224602, + 0.01922530122101307, + -0.06307868659496307, + 0.053472843021154404, + -0.04972926154732704, + 0.013836797326803207, + 0.05997676029801369, + 0.03227696940302849, + 0.09221790730953217, + 0.006935953628271818 + ], + "wave-square-bold||synth,synthesizer,sound,audio,music,waveform": [ + -0.025612544268369675, + -0.06694472581148148, + -0.03949825465679169, + -0.02531176619231701, + -0.05648638308048248, + 0.013645906001329422, + -0.00658453768119216, + -0.051296308636665344, + -0.029466789215803146, + -0.05439251288771629, + 0.020643459632992744, + -0.010169405490159988, + 0.01656508632004261, + -0.06436491757631302, + -0.004098678473383188, + 0.06799718737602234, + 0.0294685997068882, + -0.0049316659569740295, + 0.06553083658218384, + 0.009529984556138515, + 0.05442078784108162, + 0.022986629977822304, + -0.002098443452268839, + 0.005560625810176134, + 0.09218211472034454, + 0.05836324393749237, + 0.07508385926485062, + 0.08801450580358505, + 0.06306317448616028, + -0.07960069924592972, + 0.05830559879541397, + 0.08337574452161789, + 0.12285839766263962, + -0.015214496292173862, + -0.02849896438419819, + -0.007076750043779612, + -0.02364644967019558, + -0.03539549559354782, + -0.016582883894443512, + 0.03410445153713226, + -0.012993567623198032, + -0.02232583798468113, + -0.011412937194108963, + 0.04114086553454399, + -0.05587945878505707, + -0.07176348567008972, + -0.07113723456859589, + -0.07947792112827301, + -0.057922955602407455, + -0.04843837767839432, + -0.02132296934723854, + -0.13507838547229767, + -0.0789228305220604, + 0.058460600674152374, + -0.0055305552668869495, + -0.019594410434365273, + -0.01586473360657692, + 0.03955795615911484, + 0.09655605256557465, + -0.01960667409002781, + 0.030002962797880173, + 0.03415215015411377, + 0.044324710965156555, + -0.006438553333282471, + 0.016338782384991646, + 0.048649657517671585, + 0.004619512241333723, + 0.022264311090111732, + 0.03151273727416992, + 0.0163407139480114, + 0.0086330845952034, + 0.008283475413918495, + 0.0444447323679924, + 0.021727468818426132, + 0.02195075713098049, + -0.07425709068775177, + 0.011751005426049232, + -0.043496545404195786, + -0.03797779232263565, + -0.020546849817037582, + -0.06489256024360657, + -0.08387372642755508, + -0.12637393176555634, + -0.07247308641672134, + -0.0032857973128557205, + 0.09302699565887451, + -0.016480665653944016, + -0.06437890976667404, + -0.0542629174888134, + -0.031422048807144165, + -0.16072149574756622, + -0.022798197343945503, + -0.03204590827226639, + 0.016875645145773888, + -0.03706508129835129, + 0.047422993928194046, + 0.08358629047870636, + -0.008521219715476036, + 0.0397186242043972, + 0.038575734943151474, + 0.060671884566545486, + 0.009080120362341404, + 0.03399738296866417, + 0.018573034554719925, + -0.05413411930203438, + -0.10593391209840775, + 0.029399918392300606, + 0.06009138748049736, + 0.008404548279941082, + -0.03108532354235649, + -0.0021133541595190763, + -0.06040226295590401, + -0.018869975581765175, + -0.006879814434796572, + 0.04332761466503143, + -0.017643263563513756, + -0.04230274260044098, + -0.0022895331494510174, + 0.07761425524950027, + 0.0613093376159668, + 0.03830447420477867, + -0.025631293654441833, + -0.058974191546440125, + 0.03408721089363098, + -0.01297870185226202, + 0.00011743533104890957, + -0.0487176887691021, + -2.7814975282569063e-33, + 0.11157529056072235, + 0.1171211376786232, + 0.0005879512755200267, + 0.08200046420097351, + 0.07723509520292282, + -0.08017551153898239, + -0.07289597392082214, + -0.05793927237391472, + -0.015710923820734024, + 0.09813305735588074, + -0.0303695946931839, + 0.07756005972623825, + -0.11525540798902512, + 0.08486217260360718, + 0.0336846299469471, + -0.05689237266778946, + -0.004162969533354044, + 0.015411961823701859, + -0.06764943897724152, + 0.018312783911824226, + -0.053883057087659836, + 0.09171819686889648, + -0.032216399908065796, + -0.018270619213581085, + -0.012491744011640549, + 0.011980589479207993, + -0.0034589958377182484, + -0.02755727805197239, + -0.008167285472154617, + 0.028300929814577103, + 0.02898842841386795, + 0.07418345659971237, + 0.004112579394131899, + -0.05133531987667084, + 0.048135314136743546, + -0.021865375339984894, + -0.030225370079278946, + 0.032947149127721786, + 0.01900462619960308, + -0.019342554733157158, + -0.06929857283830643, + -0.025476783514022827, + -0.015816939994692802, + -0.01652696169912815, + 0.07337722927331924, + 0.012953565455973148, + 0.019474538043141365, + 0.015084798447787762, + 0.09339970350265503, + 0.011947250925004482, + -0.021735019981861115, + -0.027208324521780014, + -0.006879628635942936, + 0.06831134110689163, + 0.07152997702360153, + -0.02813120186328888, + 0.001957472413778305, + 0.05658745765686035, + 0.010921834036707878, + 0.06325111538171768, + 0.03499985858798027, + 0.014481873251497746, + 0.06359627097845078, + -0.0856403335928917, + -0.05173562094569206, + 0.06904252618551254, + -0.026076700538396835, + -0.06814540922641754, + 0.040541406720876694, + 0.014800723642110825, + -0.03801276534795761, + 0.02031475491821766, + 0.02872426249086857, + 0.042203813791275024, + -0.011232386343181133, + 0.0134846530854702, + -0.043590836226940155, + -0.02285202033817768, + 0.008697968907654285, + -0.04216513782739639, + -0.08791150152683258, + 0.04380964860320091, + -0.10622140765190125, + 0.005221401806920767, + -0.016257504001259804, + 0.04226219654083252, + -0.021469630300998688, + -0.130413219332695, + -0.07083377242088318, + 0.00342921307310462, + -0.1967899650335312, + 0.018335461616516113, + -0.007831752300262451, + -0.08297012001276016, + -0.10192153602838516, + -2.3122293009023544e-34, + 0.02199040725827217, + 0.08544103801250458, + -0.03427264839410782, + -0.012671739794313908, + 0.03360655531287193, + 0.07089682668447495, + 0.03759917989373207, + 0.03320006653666496, + 0.056928977370262146, + 0.07000790536403656, + 0.07525327801704407, + -0.07273205369710922, + -0.007282102946192026, + -0.07567298412322998, + -0.05862859636545181, + 0.03258580341935158, + 0.04140195995569229, + -0.015391225926578045, + -0.005334457382559776, + -0.02215101569890976, + -0.05339743196964264, + -0.05813483148813248, + -0.005930507555603981, + 0.05401966720819473, + -0.054678209125995636, + 0.045394811779260635, + -0.006175695918500423, + 0.005594225600361824, + 0.007497558835893869, + 0.013816365040838718, + -0.01722816936671734, + -0.03471071645617485, + 0.05900494381785393, + -0.03776102513074875, + -0.05951717495918274, + 0.05289442837238312, + 0.07193432748317719, + -0.004512917250394821, + -0.018594030290842056, + -0.06557627767324448, + -0.023104004561901093, + 0.03669477999210358, + 0.05539492890238762, + 0.03029155544936657, + -0.026158221065998077, + 0.024780692532658577, + 0.0017673393012955785, + 0.012805385515093803, + -0.05285356566309929, + -0.013830581679940224, + 0.11013305932283401, + -0.007019876502454281, + 0.053678035736083984, + -0.024505749344825745, + -0.07925095409154892, + -0.01689046248793602, + -0.024717086926102638, + -0.011309315450489521, + 0.008020441047847271, + 0.06808512657880783, + -0.004979520104825497, + 0.011671613901853561, + -0.02435050532221794, + -0.03857112675905228, + -0.02518276311457157, + 0.0123460553586483, + 0.03157728165388107, + -0.015550213865935802, + 0.062088217586278915, + 0.019412880763411522, + 0.03679113835096359, + 0.027236128225922585, + -0.0027945865876972675, + 0.04127160459756851, + -0.03672899678349495, + -0.1194736436009407, + -0.07265845686197281, + -0.03746861219406128, + -0.053735822439193726, + 0.04609393700957298, + 0.025701414793729782, + 0.030013540759682655, + -0.0019752332009375095, + 0.0015474822139367461, + -0.04438294097781181, + 0.04733021557331085, + 0.026541192084550858, + 0.01872286945581436, + -0.0014752541901543736, + 0.015918990597128868, + 0.00994840357452631, + 0.11881139129400253, + -0.06775234639644623, + -0.00793912261724472, + -0.0018287569982931018, + -2.0463545524762594e-08, + 0.0014137541875243187, + 0.005292575806379318, + -0.003086602548137307, + -0.07402276247739792, + 0.003842309582978487, + -0.07192622125148773, + 0.06830653548240662, + -0.0972130224108696, + -0.03225187584757805, + -0.06259648501873016, + 0.012366173788905144, + -0.008981943130493164, + -0.05607573688030243, + -0.0352679081261158, + 0.032522618770599365, + 0.025390375405550003, + -0.09680968523025513, + 0.09150129556655884, + -0.025354593992233276, + -0.07922618836164474, + 0.037552446126937866, + 0.055339112877845764, + -0.01231535617262125, + -0.01354154385626316, + 0.03856903314590454, + 0.010997386649250984, + -0.028021473437547684, + 0.016263673081994057, + 0.033945899456739426, + 0.10697900503873825, + 0.005741231609135866, + 0.07091421633958817, + 0.004592368844896555, + -0.023136945441365242, + -0.09252096712589264, + -0.05716744065284729, + -0.03989981487393379, + -0.020735247060656548, + -0.0763755664229393, + 0.10174055397510529, + 0.017568647861480713, + 0.03448379412293434, + -0.019356951117515564, + 0.009023243561387062, + 0.028375353664159775, + -0.006265467032790184, + 0.0776313915848732, + -0.06384477764368057, + -0.03297661244869232, + -0.02742188796401024, + -0.0025045338552445173, + 0.05518784746527672, + -0.011114608496427536, + 0.044124506413936615, + -0.01532305683940649, + 0.0317859873175621, + -0.10173065960407257, + 0.04503537341952324, + -0.05231570452451706, + -0.02213251404464245, + 0.06942173838615417, + 0.057033345103263855, + 0.0605253241956234, + 0.0564686544239521 + ], + "wave-triangle-bold||synth,synthesizer,sound,audio,music,waveform": [ + -0.05256148427724838, + -0.04404052719473839, + -0.09120249003171921, + -0.05136556178331375, + -0.05820005387067795, + -0.0058900462463498116, + -0.016431553289294243, + -0.033246371895074844, + -0.02259727194905281, + -0.05739731341600418, + 0.0237710140645504, + -0.06403722614049911, + -0.00856727547943592, + -0.07205002009868622, + 0.07819463312625885, + 0.08296117931604385, + 0.005479041486978531, + -0.04135436564683914, + 0.05656953901052475, + 0.0016221897676587105, + 0.029623694717884064, + 0.051802922040224075, + -0.017933307215571404, + 0.012317826971411705, + 0.07143478840589523, + 0.0845295861363411, + 0.07748312503099442, + 0.03708583489060402, + 0.03917213901877403, + -0.08025424182415009, + 0.035157185047864914, + 0.06506852060556412, + 0.1125711128115654, + -0.03446149080991745, + -0.024460602551698685, + -0.039278384298086166, + -0.04651656001806259, + -0.029693327844142914, + -0.01882767863571644, + 0.0574461854994297, + -0.06516256928443909, + 0.025377662852406502, + -0.004182511940598488, + 0.05411175638437271, + -0.09879498183727264, + -0.03532315790653229, + -0.08567679673433304, + -0.040062837302684784, + -0.05003315210342407, + -0.051255859434604645, + -0.03157314658164978, + -0.17239773273468018, + -0.12902705371379852, + 0.05686969310045242, + 0.026714613661170006, + 0.00793230626732111, + -0.010646101087331772, + 0.022781668230891228, + 0.09757145494222641, + -0.03274925425648689, + 0.03579210117459297, + 0.06471263617277145, + 0.04162546992301941, + -0.002399617340415716, + 0.06069536879658699, + 0.03791556879878044, + 0.008799239061772823, + -0.0007983844261616468, + 0.004888342227786779, + 0.0453517809510231, + 0.004479875322431326, + -0.009927636943757534, + 0.001159149338491261, + -0.01808086968958378, + 0.00617079995572567, + -0.04352055862545967, + 0.025555988773703575, + -0.009535876102745533, + -0.03064989484846592, + -0.0626673623919487, + -0.07381664961576462, + -0.06839877367019653, + -0.11700758337974548, + -0.083680659532547, + -0.025384096428751945, + 0.13015300035476685, + -0.03287084028124809, + -0.07570250332355499, + -0.022189341485500336, + -0.014802230522036552, + -0.10456819087266922, + -0.014273974113166332, + -0.07910488545894623, + 0.012341972440481186, + -0.022772658616304398, + 0.048769865185022354, + 0.09050275385379791, + -0.0008932026685215533, + 0.05010922998189926, + 0.05159593001008034, + 0.08696436136960983, + -0.001369837555103004, + 0.017273301258683205, + 0.03632573038339615, + -0.0957413986325264, + -0.06010439991950989, + -0.00021037051919847727, + 0.06734085083007812, + 0.0017483988776803017, + 0.02182692475616932, + -0.00406909454613924, + -0.04481114074587822, + -0.017519833520054817, + -0.03919343650341034, + 0.002313405741006136, + -0.025223828852176666, + -0.04463895782828331, + 0.0032321561593562365, + 0.08851046860218048, + 0.07139105349779129, + 0.035750847309827805, + 0.0030341516248881817, + -0.05347689613699913, + 0.0807623639702797, + -0.0043249595910310745, + -0.0035372672136873007, + -0.023144632577896118, + -3.561676985988497e-33, + 0.11590666323900223, + 0.06935933977365494, + -0.017709651961922646, + 0.0596599318087101, + 0.09474994987249374, + -0.07267742604017258, + -0.07902316749095917, + -0.029906466603279114, + -0.03395474702119827, + 0.07533767819404602, + -0.058437515050172806, + 0.07014552503824234, + -0.05356742441654205, + 0.040021151304244995, + 0.007807345595210791, + -0.06369541585445404, + -0.005976845044642687, + -0.029704328626394272, + -0.14367587864398956, + 0.003972616046667099, + -0.04204711690545082, + 0.08608120679855347, + -0.036107830703258514, + -0.008622240275144577, + -0.04192139580845833, + 0.02685229480266571, + -0.001562929362989962, + 0.010423067957162857, + -0.022841572761535645, + 0.017559107393026352, + 0.010265341959893703, + 0.021215859800577164, + 0.002504407661035657, + -0.05684460699558258, + 0.026986733078956604, + 0.0014792728470638394, + -0.03535671904683113, + 0.038080524653196335, + -0.006124091800302267, + -0.019945042207837105, + -0.03897438198328018, + -0.013129692524671555, + -0.03526376932859421, + 0.024928856641054153, + 0.07013233006000519, + 0.047767214477062225, + 0.0026943767443299294, + 0.0156417079269886, + 0.06419432908296585, + 0.016282744705677032, + -0.02207249216735363, + -0.0342123880982399, + 0.008222784847021103, + 0.06826560199260712, + 0.031024400144815445, + 0.000592520518694073, + 0.016474468633532524, + 0.03578100726008415, + -0.04501079395413399, + 0.020552432164549828, + 0.042320698499679565, + 0.049523137509822845, + 0.10736117511987686, + -0.06453029811382294, + -0.06253625452518463, + 0.06001545861363411, + -0.04514400660991669, + -0.021581681445240974, + 0.11542514711618423, + -0.013774540275335312, + -0.02187701314687729, + 0.02636762335896492, + 0.052785929292440414, + 0.06135476008057594, + -0.003975209314376116, + -0.0059347148053348064, + -0.05070452764630318, + 0.011817972175776958, + -0.012311515398323536, + -0.005197795573621988, + -0.0948546901345253, + 0.006560485810041428, + -0.03448619320988655, + 0.02058364637196064, + 0.014363887719810009, + 0.017527112737298012, + 0.008778764866292477, + -0.1386757493019104, + -0.07551541179418564, + 0.04224202781915665, + -0.17761032283306122, + 0.04660942032933235, + 0.00023743597557768226, + -0.07145155221223831, + -0.0616132952272892, + 2.269839872585749e-34, + 0.02375158853828907, + 0.05928654223680496, + -0.01254135463386774, + -0.05691356956958771, + 0.014583396725356579, + 0.06809215247631073, + 0.055941298604011536, + 0.03636955842375755, + 0.0008899468812160194, + 0.05559008941054344, + 0.0435919389128685, + -0.04317409172654152, + -0.0008351003052666783, + -0.0931067243218422, + -0.042615048587322235, + -0.00790936779230833, + 0.01171353179961443, + -0.01829403080046177, + -0.024961622431874275, + 0.021735062822699547, + -0.023346835747361183, + -0.0727393627166748, + -0.02169702760875225, + 0.0335213840007782, + -0.040025826543569565, + 0.03886878117918968, + 0.0030092124361544847, + -0.006577703170478344, + -0.0073982845060527325, + -0.020057300105690956, + -0.022872693836688995, + -0.037581268697977066, + 0.06637272983789444, + -0.05000082403421402, + -0.058364275842905045, + 0.041011154651641846, + 0.047847967594861984, + -0.020933233201503754, + -0.019180528819561005, + -0.08368901908397675, + -0.0502108633518219, + 0.05400928854942322, + 0.05351535603404045, + 0.03216606751084328, + -0.04234492778778076, + 0.05925685167312622, + 0.005805008579045534, + 0.01251023169606924, + -0.10211043804883957, + 0.010054472833871841, + 0.1066717803478241, + -0.017218466848134995, + 0.08615973591804504, + -0.014121981337666512, + -0.033615078777074814, + -0.012458090670406818, + -0.0014113510260358453, + -0.03655872121453285, + 0.02453926019370556, + 0.09069614112377167, + -0.01244595367461443, + 0.010562070645391941, + -0.026775600388646126, + -0.030329812318086624, + 0.033756934106349945, + 0.022674495354294777, + 0.027577949687838554, + -0.05040997266769409, + 0.07843901216983795, + 0.012040807865560055, + 0.043184127658605576, + 0.035379525274038315, + -0.030317941680550575, + 0.016854941844940186, + -0.054953306913375854, + -0.1187240332365036, + -0.04807044938206673, + -0.020534545183181763, + -0.0664513036608696, + 0.05043035000562668, + 0.005201300606131554, + -0.004603091161698103, + 0.009692090563476086, + 0.03894387185573578, + -0.03558969870209694, + 0.017304837703704834, + 0.029517289251089096, + 0.007913997396826744, + -0.010016031563282013, + 0.036269661039114, + -0.0037526520900428295, + 0.12541314959526062, + -0.05264696478843689, + -0.013112922199070454, + 0.05868658050894737, + -2.0157282065724758e-08, + -0.011134269647300243, + 0.0006544793141074479, + -0.03360172361135483, + -0.08139332383871078, + 0.0162819717079401, + -0.027383599430322647, + 0.05883638560771942, + -0.09243904054164886, + -0.03532608598470688, + -0.05329345539212227, + 0.009021303616464138, + -0.006090441253036261, + -0.05116306617856026, + 0.001510819885879755, + 0.009163754992187023, + 0.019106069579720497, + -0.08458229899406433, + 0.06973674148321152, + -0.02592465467751026, + -0.09163238853216171, + 0.024474557489156723, + 0.08611498028039932, + 0.013383659534156322, + -0.026297174394130707, + 0.054467298090457916, + 0.029074542224407196, + -0.003833371214568615, + 0.034623630344867706, + 0.0403834693133831, + 0.07862558215856552, + 0.0012369169853627682, + 0.05217495933175087, + 0.029815195128321648, + -0.015653058886528015, + -0.06553240120410919, + -0.024893762543797493, + -0.04186784476041794, + -0.024293558672070503, + -0.04624298959970474, + 0.1052108183503151, + -0.0059289936907589436, + 0.04822003096342087, + -0.01175182219594717, + 0.014639654196798801, + 0.022561118006706238, + -0.004130394663661718, + 0.07521215826272964, + -0.014765186235308647, + -0.05567210167646408, + -0.01614142768085003, + -0.01079762913286686, + 0.09181109070777893, + -0.0031453913543373346, + 0.03123687393963337, + -0.02324778586626053, + 0.021244831383228302, + -0.07629871368408203, + 0.07134547829627991, + -0.08569194376468658, + 0.01815558224916458, + 0.09748386591672897, + 0.03747537359595299, + 0.05706107243895531, + 0.027513591572642326 + ], + "waveform-bold||*updated*,audio,sound,spectrum,spectrograph,music": [ + 0.005751429125666618, + -0.07574696093797684, + -0.0702478289604187, + -0.028083959594368935, + -0.008904334157705307, + 0.014843868091702461, + 0.009739886969327927, + -0.06996158510446548, + -0.05099395290017128, + -0.03626934438943863, + -0.01749180629849434, + -0.02975897677242756, + -0.03659263625741005, + -0.08119373023509979, + 0.03231903538107872, + 0.04579786956310272, + 0.05074060708284378, + -0.00642461096867919, + 0.01264264527708292, + 0.020948385819792747, + 0.03169474005699158, + 0.059181153774261475, + -0.01955091580748558, + 0.016235459595918655, + 0.09004736691713333, + 0.029325712472200394, + 0.007004201412200928, + 0.030659295618534088, + 0.059883665293455124, + -0.0724368542432785, + 0.03448896110057831, + 0.06285618245601654, + 0.15539255738258362, + -0.0006409978959709406, + 0.025103546679019928, + -0.0662640929222107, + -0.008221767842769623, + -0.002222080947831273, + -0.0393141508102417, + 0.0344683863222599, + 0.015630526468157768, + -0.039646510034799576, + -0.05965786799788475, + 0.012096588499844074, + -0.08165740221738815, + -0.074618861079216, + -0.0943414717912674, + -0.060953833162784576, + -0.01546007301658392, + -0.0030657488387078047, + -0.026949461549520493, + -0.106803297996521, + -0.10888703167438507, + 0.05440013110637665, + -0.03836275264620781, + -0.00842854380607605, + -0.014379738830029964, + 0.005039401352405548, + 0.0924125462770462, + -0.05536966770887375, + 0.025941111147403717, + 0.030268365517258644, + 0.04418613016605377, + 0.023383358493447304, + 0.03065289929509163, + 0.04901786521077156, + -0.005755759309977293, + 0.028691116720438004, + 0.05274606868624687, + -0.011578012257814407, + -0.013657321222126484, + 0.01985565945506096, + 0.017516303807497025, + 0.010148521512746811, + 0.018755795434117317, + -0.021557625383138657, + 0.04615220054984093, + -0.05547112971544266, + -0.023984655737876892, + -0.07234767079353333, + -0.026228541508316994, + -0.08932489156723022, + -0.07515786588191986, + -0.05874936655163765, + 0.11160372197628021, + 0.04595302417874336, + -0.07284828275442123, + -0.06183546036481857, + -0.07571979612112045, + -0.049183741211891174, + -0.1371821165084839, + -0.04609270021319389, + -0.042772360146045685, + 0.0039400761015713215, + -0.0632733553647995, + 0.0703723132610321, + 0.024782484397292137, + -0.05430717021226883, + 0.03250899538397789, + 0.09921610355377197, + 0.03876808285713196, + 0.0038525841664522886, + -0.006408493500202894, + 0.06278327107429504, + -0.10811004787683487, + -0.09286190569400787, + -0.020472748205065727, + 0.08633095026016235, + 0.009200239554047585, + -0.0026097982190549374, + 0.047149308025836945, + -0.07048079371452332, + -0.0715249627828598, + -0.04343772307038307, + 0.057077012956142426, + 0.008105005137622356, + -0.0353313572704792, + 0.04997941851615906, + 0.04449266567826271, + 0.056070033460855484, + 0.025963250547647476, + -0.008015141822397709, + -0.027492906898260117, + 0.021453309804201126, + 0.001157640479505062, + -0.012105140835046768, + -3.871119406539947e-05, + -1.5136281706955734e-34, + 0.08847877383232117, + 0.06909828633069992, + -0.057929184287786484, + 0.09407800436019897, + 0.04793799668550491, + -0.017595676705241203, + -0.095510333776474, + 0.0014599158894270658, + -0.002526986412703991, + 0.049080073833465576, + 0.03305373340845108, + 0.14421558380126953, + -0.03412704914808273, + 0.0360373891890049, + -0.006844579242169857, + -0.03985363990068436, + -0.02791299670934677, + 0.06191844865679741, + -0.0660104975104332, + -0.0067685809917747974, + -0.049831535667181015, + 0.0696340948343277, + 0.003538347315043211, + -0.01809392124414444, + 0.004746128339320421, + 0.0027255285531282425, + 0.02886449173092842, + -0.0049173771403729916, + -0.03973684459924698, + 0.02091205306351185, + 0.007497340906411409, + -0.01966286078095436, + 0.05303335189819336, + 0.008660497143864632, + 0.04773635417222977, + 0.016448281705379486, + -0.06278188526630402, + -0.013533513061702251, + 0.028377387672662735, + -0.05515056475996971, + -0.10834673047065735, + -0.028862912207841873, + -0.047826118767261505, + -0.02003859542310238, + 0.013456946238875389, + 0.025608446449041367, + -0.04715503752231598, + 0.027817295864224434, + 0.09785807877779007, + 0.019317612051963806, + -0.04311813414096832, + 0.00908826757222414, + -0.020646940916776657, + 0.007615395821630955, + 0.00464120926335454, + 0.004528638441115618, + 0.009704669006168842, + 0.07209747284650803, + 0.03947744518518448, + -0.035084567964076996, + 0.04841706529259682, + 0.00897780992090702, + 0.04299113526940346, + -0.08583446592092514, + -0.053782399743795395, + 0.08736417442560196, + -0.02225813828408718, + -0.002795533277094364, + 0.06882743537425995, + 0.020736126229166985, + -0.052913278341293335, + 0.06818059086799622, + -0.0014819197822362185, + 0.07234498113393784, + -0.009060258977115154, + 0.02608013153076172, + -0.044612590223550797, + 0.007858514785766602, + -0.07022838294506073, + 0.013227449730038643, + -0.0851336419582367, + 0.03279548138380051, + -0.08062078058719635, + 0.09409861266613007, + 0.021115893498063087, + 0.05665101855993271, + -0.010355559177696705, + -0.1031593456864357, + -0.025859303772449493, + -0.016915740445256233, + -0.1453597992658615, + 0.06111573055386543, + -0.06571409106254578, + -0.06334497779607773, + -0.07905835658311844, + -1.9744280862372787e-33, + 0.019070276990532875, + 0.08565082401037216, + -0.03411596268415451, + -0.012231564149260521, + 0.010270536877214909, + 0.02562560886144638, + 0.03513200208544731, + 0.09042191505432129, + 0.03314577788114548, + 0.0409761406481266, + 0.11019246280193329, + -0.05236747860908508, + -0.05256973206996918, + -0.10671194642782211, + -0.08224309235811234, + -0.001298351096920669, + -0.049086470156908035, + 0.014557122252881527, + -0.016881199553608894, + 0.014365357346832752, + -0.043885692954063416, + -0.02852984331548214, + -0.05879830941557884, + 0.07763524353504181, + -0.05231264978647232, + 0.0023257650900632143, + -0.028872957453131676, + -0.03155650570988655, + 0.004737514536827803, + -0.02118757739663124, + -0.014987992122769356, + -0.010828491300344467, + 0.011444510892033577, + -0.04076872020959854, + -0.007360892370343208, + 0.06818448007106781, + 0.0924949049949646, + 0.000810135796200484, + -0.022405529394745827, + -0.015449932776391506, + -0.008750848472118378, + 0.07699500024318695, + 0.06818031519651413, + 0.0027466558385640383, + -0.044028956443071365, + 0.0037408156786113977, + -0.0116183552891016, + 0.028709322214126587, + -0.06023683026432991, + 0.007794175297021866, + 0.12406215071678162, + -0.03253856673836708, + 0.07446339726448059, + 0.004152920097112656, + -0.0719495564699173, + 0.0031178558710962534, + 0.01671776920557022, + -0.027218537405133247, + 0.008130275644361973, + 0.06832665950059891, + -0.026032933965325356, + 0.04892110452055931, + -0.027651946991682053, + -0.019265972077846527, + 0.054494209587574005, + 0.01686534471809864, + 0.035038355737924576, + -0.07242128998041153, + 0.05503086745738983, + 0.005888464394956827, + 0.05259545519948006, + -0.03395521640777588, + -0.03881539776921272, + 0.01870342716574669, + 0.025078224018216133, + -0.08491051197052002, + -0.05525229126214981, + -0.035184767097234726, + -0.036978330463171005, + 0.027955403551459312, + 0.02481045201420784, + 0.02623443491756916, + 0.011266430839896202, + 0.022118860855698586, + -0.01121358573436737, + 0.07996043562889099, + 0.024734754115343094, + 0.000674949144013226, + -0.009531271643936634, + -0.0003444703761488199, + -0.02221246436238289, + 0.1104072630405426, + -0.016598746180534363, + -0.014386771246790886, + -0.024353578686714172, + -2.1519081627729975e-08, + -0.018361393362283707, + 0.03278781473636627, + -0.0036380314268171787, + -0.058907460421323776, + 0.019779730588197708, + -0.08013887703418732, + 0.04332008212804794, + -0.1102563887834549, + -0.011769231408834457, + -0.06454984843730927, + 0.0535089410841465, + -0.05263562500476837, + -0.033468492329120636, + -0.03197425603866577, + 0.033349476754665375, + -0.025650478899478912, + -0.0631992444396019, + 0.08201146125793457, + -0.03278134763240814, + -0.10184575617313385, + 0.019648559391498566, + 0.08453977853059769, + 0.040031082928180695, + -0.021636659279465675, + 0.09798821806907654, + 0.020583337172865868, + 0.008659767918288708, + 0.03819035738706589, + 0.056486595422029495, + 0.09584638476371765, + 0.009219487197697163, + 0.06747013330459595, + 0.03356177359819412, + -0.0073049478232860565, + -0.10211732983589172, + 0.0011797738261520863, + -0.0666428953409195, + 0.008223636075854301, + -0.04738132655620575, + 0.1648959219455719, + -0.0306226909160614, + 0.05599667504429817, + -0.04938745126128197, + 0.009068482555449009, + -0.0016881184419617057, + -0.0187020655721426, + 0.038028307259082794, + -0.0008381879306398332, + -0.052357129752635956, + -0.04526620730757713, + -0.040993642061948776, + 0.03567776456475258, + -0.0011161469155922532, + 0.022222863510251045, + -0.052840206772089005, + 0.00808480754494667, + -0.03278258442878723, + 0.03160931169986725, + -0.059026554226875305, + -0.0017222012393176556, + 0.09306210279464722, + 0.01079840213060379, + 0.018350226804614067, + 0.02614443562924862 + ], + "waveform-slash-bold||*new*,audio,sound,spectrum,spectrograph,music": [ + 0.0028393191751092672, + -0.09355482459068298, + -0.06424721330404282, + -0.02893698960542679, + -0.029688509181141853, + 0.006929000839591026, + -0.014990929514169693, + -0.058191392570734024, + -0.028812069445848465, + -0.029380785301327705, + 0.02510804682970047, + -0.04950367286801338, + -0.03626833111047745, + -0.03047044575214386, + 0.018028726801276207, + 0.061846863478422165, + 0.03803732246160507, + 0.0017995855305343866, + 0.027755867689847946, + 0.023303966969251633, + 0.03682960197329521, + 0.08634018898010254, + -0.03505896031856537, + -0.0071976943872869015, + 0.08274433016777039, + 0.02414674498140812, + 0.01923418417572975, + 0.05463984236121178, + 0.06228422746062279, + -0.08293760567903519, + 0.06874746829271317, + 0.04420282319188118, + 0.1430751234292984, + 0.006266921292990446, + 0.06242188438773155, + -0.04797272011637688, + 0.027358874678611755, + -0.024491386488080025, + -0.023134425282478333, + 0.007695495150983334, + 0.020792409777641296, + -0.040787290781736374, + -0.07198820263147354, + 0.0018894159002229571, + -0.08917342126369476, + -0.07412520051002502, + -0.07805030047893524, + -0.07466714829206467, + -0.00307909632101655, + 0.00636874046176672, + -0.0340590700507164, + -0.097554050385952, + -0.1216113492846489, + 0.0642162412405014, + 0.0010429703397676349, + -0.0034885001368820667, + -0.0413217693567276, + 0.016841165721416473, + 0.09085232019424438, + -0.03385893255472183, + 0.032341908663511276, + 0.012167035602033138, + 0.04153349995613098, + 0.003048837883397937, + 0.01679973676800728, + 0.010647676885128021, + -0.02707012929022312, + 0.054692309349775314, + 0.026982272043824196, + -0.0014071930199861526, + -0.0437057763338089, + -0.010446833446621895, + -0.027733298018574715, + 0.038487810641527176, + 0.01262353453785181, + -0.028099145740270615, + 0.026447338983416557, + -0.03687959536910057, + -0.04744564741849899, + -0.07968368381261826, + -0.014971897006034851, + -0.05108260735869408, + -0.0681287869811058, + -0.011143750511109829, + 0.09134627133607864, + 0.07689719647169113, + -0.0714644119143486, + -0.0747603327035904, + -0.05646815150976181, + -0.06503862887620926, + -0.1467803418636322, + -0.07212816178798676, + -0.02136240527033806, + 0.021490583196282387, + -0.05660098418593407, + 0.05286716669797897, + 0.007223312743008137, + -0.0484558641910553, + 0.03609113395214081, + 0.08753640949726105, + 0.030468899756669998, + -0.008504906669259071, + -0.042154259979724884, + 0.0332360714673996, + -0.10082560777664185, + -0.0711335688829422, + -0.022300900891423225, + 0.07776859402656555, + 0.002526048570871353, + 0.008319822140038013, + 0.060601383447647095, + -0.06591590493917465, + -0.07604824751615524, + -0.04835960641503334, + 0.06242258474230766, + 0.005792522802948952, + -0.05676550045609474, + 0.015866199508309364, + 0.07163453847169876, + 0.10503344237804413, + 0.004880273714661598, + -0.03740667924284935, + -0.05741286650300026, + 0.020144786685705185, + 0.005848444066941738, + -0.012270237319171429, + 0.005213297437876463, + -3.8079475983428262e-34, + 0.1138831302523613, + 0.09079950302839279, + -0.04969191923737526, + 0.07463403791189194, + 0.052102115005254745, + -0.020588606595993042, + -0.09642405062913895, + 0.05566034093499184, + -0.016387198120355606, + 0.05436959117650986, + 0.022611266002058983, + 0.09260629117488861, + -0.016195639967918396, + 0.018639015033841133, + -0.013959283009171486, + -0.017030924558639526, + -0.009756341576576233, + 0.0016393723199144006, + -0.08287492394447327, + -0.037932127714157104, + -0.062287312000989914, + 0.1361604928970337, + 0.002623380161821842, + 0.0024685184471309185, + -0.006214152090251446, + -0.007258985657244921, + 0.03639428690075874, + -0.032123249024152756, + -0.017638131976127625, + 0.03433544561266899, + -0.018745651468634605, + -0.025137271732091904, + 0.07305139303207397, + 0.030586646869778633, + 0.04049995169043541, + 0.10114258527755737, + -0.023839624598622322, + 0.011194572784006596, + 0.006630151066929102, + -0.02776402048766613, + -0.1159481331706047, + -0.03602617233991623, + -0.0864952951669693, + 0.007154838647693396, + -0.004962411243468523, + -0.0033307026606053114, + -0.03663477674126625, + -0.02589733526110649, + 0.06829777359962463, + 0.031216200441122055, + -0.048961132764816284, + 0.0062464382499456406, + 0.04031015932559967, + 0.05658751353621483, + -0.015286363661289215, + -0.03465854749083519, + -0.025924140587449074, + 0.05983710661530495, + 0.057022206485271454, + -0.04483821243047714, + 0.030377747491002083, + 0.035155102610588074, + 0.03719033673405647, + -0.06005071476101875, + -0.08614149689674377, + 0.07811808586120605, + -0.021608635783195496, + 0.02080506645143032, + 0.06356900185346603, + 0.025226153433322906, + -0.06640487164258957, + 0.05205051228404045, + -0.0005894624628126621, + 0.0563751682639122, + -0.038135379552841187, + 0.02751413732767105, + -0.052595000714063644, + 0.0016437695594504476, + -0.044466275721788406, + 0.0011127301258966327, + -0.12661805748939514, + 0.04961039125919342, + -0.05193387717008591, + 0.08666033297777176, + 0.04500928893685341, + 0.024623719975352287, + 0.005984695162624121, + -0.11487206071615219, + -0.006264990195631981, + -0.03897305950522423, + -0.12902851402759552, + 0.04378471150994301, + -0.07609771192073822, + -0.05653473362326622, + -0.04415202513337135, + -1.9425139656254305e-33, + 0.029714500531554222, + 0.11707533895969391, + -0.03280644118785858, + -0.01643332652747631, + -0.012403324246406555, + 0.015488163568079472, + 0.04631572961807251, + 0.06106309965252876, + 0.0012225700775161386, + 0.04734552279114723, + 0.1106162965297699, + -0.021427176892757416, + -0.0121365487575531, + -0.12212906032800674, + -0.03596198931336403, + -0.02630716934800148, + -0.08140886574983597, + -0.00541350245475769, + 0.006752215791493654, + 0.029110582545399666, + -0.05010903254151344, + -0.02418781816959381, + -0.03936627507209778, + 0.07897251099348068, + -0.056733742356300354, + 0.013172919861972332, + 0.003993616905063391, + -0.03335995599627495, + 0.019681105390191078, + 0.015347967855632305, + 0.010075511410832405, + 0.009063980542123318, + 0.0049994648434221745, + -0.04383278265595436, + -0.02617759257555008, + 0.07349053025245667, + 0.009064550511538982, + 0.054132577031850815, + -0.005153495818376541, + -0.06142052635550499, + -0.02665880136191845, + 0.04512475058436394, + 0.07306014001369476, + 0.03463117778301239, + -0.06440500169992447, + -0.015338876284658909, + -0.0021190193947404623, + 0.006084988359361887, + -0.03842629864811897, + 0.00487708393484354, + 0.12859073281288147, + -0.037426650524139404, + 0.078428253531456, + -0.0038992860354483128, + -0.07619479298591614, + 0.010026286356151104, + -0.008993880823254585, + 0.010171211324632168, + -0.04204396530985832, + 0.1081634983420372, + -0.011163384653627872, + 0.021302638575434685, + -0.05936957523226738, + -0.017091818153858185, + 0.05541420727968216, + -0.009730016812682152, + 0.02129584178328514, + -0.039793405681848526, + 0.04943759739398956, + 0.006495057605206966, + 0.04289009049534798, + 0.036225926131010056, + -0.020184118300676346, + 0.0004826363001484424, + 0.011318071745336056, + -0.08292132616043091, + -0.08319792151451111, + -0.03133485093712807, + -0.02972966991364956, + 0.07098415493965149, + 0.025135377421975136, + 0.030537154525518417, + -0.01220402866601944, + 0.014334100298583508, + -0.0037421160377562046, + 0.050589367747306824, + -0.01644441857933998, + 0.04406055808067322, + -0.032067593187093735, + -0.022155677899718285, + -0.004306585527956486, + 0.12060555070638657, + -0.012437405064702034, + -0.0017759527545422316, + -0.050538502633571625, + -2.1466830091299016e-08, + -0.03634807467460632, + 0.019018178805708885, + 0.012115364894270897, + -0.03395905718207359, + 0.01514302659779787, + -0.06086605414748192, + 0.02568725496530533, + -0.09909389913082123, + 0.022599590942263603, + -0.01751151867210865, + 0.06253442168235779, + -0.04333687946200371, + -0.03982699662446976, + -0.025518281385302544, + -0.0021314192563295364, + -0.010431608185172081, + -0.027267033234238625, + 0.0920741930603981, + -0.034013453871011734, + -0.060857485979795456, + 0.014282327145338058, + 0.06770786643028259, + 0.05652916058897972, + -0.010563835501670837, + 0.08242186158895493, + 0.000774965388700366, + 0.0013019933830946684, + 0.019039977341890335, + 0.06011223793029785, + 0.10863019526004791, + 0.013116980902850628, + 0.07541670650243759, + 0.009678730741143227, + -0.0029988675378262997, + -0.12212435901165009, + 0.008902192115783691, + -0.08342031389474869, + 0.0283748060464859, + -0.04242607578635216, + 0.11813195049762726, + -0.021432891488075256, + 0.0211982149630785, + -0.028464555740356445, + 0.003050150815397501, + -0.03819028660655022, + -0.020627427846193314, + 0.05085380747914314, + 0.01824919506907463, + -0.04774468019604683, + -0.054475054144859314, + -0.03051547147333622, + 0.05798675864934921, + -0.011673632077872753, + 0.009480390697717667, + -0.03687429055571556, + 0.038728903979063034, + -0.031728215515613556, + 0.042795322835445404, + -0.07827001065015793, + -0.014278876595199108, + 0.09083309769630432, + 0.0141935795545578, + 0.02954762987792492, + 0.013967408798635006 + ], + "waves-bold||ocean,tides,surf": [ + -0.005132310092449188, + -0.020193303003907204, + 0.03316044807434082, + -0.011463071219623089, + -0.0017279685707762837, + -0.038201674818992615, + -0.006258874200284481, + -0.0701703131198883, + -0.03699903562664986, + -0.06308824568986893, + 0.050797607749700546, + -0.04420986399054527, + -0.0033969662617892027, + -0.03983522206544876, + 0.04296870157122612, + 0.12169633060693741, + -0.024782197549939156, + -0.01329225953668356, + -0.04263569042086601, + 0.05024954676628113, + 0.026528988033533096, + 0.09862786531448364, + -0.0671040490269661, + -0.03562884405255318, + 0.03289034962654114, + 0.037467025220394135, + 0.08407162874937057, + 0.0021793388295918703, + 0.014023480005562305, + -0.0243149995803833, + 0.002196844667196274, + 0.027904096990823746, + 0.05504905804991722, + 0.009445431642234325, + 0.024916743859648705, + 0.020307058468461037, + -0.06728038191795349, + -0.0228728074580431, + -0.02390781044960022, + 0.037940505892038345, + -0.0053901332430541515, + -0.0312761589884758, + 0.012154053896665573, + 0.052717458456754684, + 0.007486694026738405, + 0.006883089896291494, + -0.020777588710188866, + 0.012682612054049969, + 0.05333617702126503, + -0.012808511964976788, + -0.001606037956662476, + -0.1253131777048111, + -0.13658839464187622, + 0.030397050082683563, + -0.04932936653494835, + 0.012891944497823715, + -0.10800456255674362, + -0.02240191586315632, + 0.09468689560890198, + -0.01944146491587162, + 0.051547545939683914, + 0.08876793086528778, + 0.03322739526629448, + 0.046869900077581406, + 0.07179288566112518, + 0.022349221631884575, + -0.02582661807537079, + 0.032216716557741165, + -0.031866706907749176, + 0.0344848558306694, + 0.02257947437465191, + 0.01982332207262516, + 0.06091408431529999, + -0.022988131269812584, + -0.010098375380039215, + -0.049047961831092834, + 0.032324716448783875, + 0.0011446446878835559, + -0.07960055023431778, + -0.0912904366850853, + -0.13845160603523254, + -0.17645886540412903, + -0.09898567199707031, + 0.010516859591007233, + 0.02761879749596119, + 0.039181195199489594, + -0.05276362597942352, + -0.0736740231513977, + 0.008974353782832623, + 0.039590124040842056, + -0.0854010283946991, + -0.001811328111216426, + -0.07747874408960342, + 0.020988846197724342, + -0.023788100108504295, + 0.021969998255372047, + 0.0028743529692292213, + -0.013355409726500511, + -0.0120171420276165, + 0.059752341359853745, + 0.06447670608758926, + 0.02294173091650009, + 0.027689671143889427, + 0.06952077895402908, + -0.026520151644945145, + -0.06045509874820709, + -0.0264691561460495, + 0.024605443701148033, + 0.004873442463576794, + 0.035875387489795685, + -0.015484727919101715, + -0.040896281599998474, + 0.029229270294308662, + -0.04059072211384773, + -0.014380981214344501, + -0.060127146542072296, + -0.04351777583360672, + 0.009457910433411598, + 0.05149313062429428, + -0.012237289920449257, + 0.029350347816944122, + -0.01871534064412117, + -0.020018184557557106, + 0.005493510514497757, + -0.00473629729822278, + 0.02599313110113144, + 0.046296827495098114, + -2.9893730512822735e-33, + 0.10120939463376999, + 0.047944337129592896, + -0.01912476122379303, + 0.09591761976480484, + 0.03313629701733589, + 0.017398692667484283, + -0.037783458828926086, + -0.028062738478183746, + -0.06314442306756973, + 0.059392403811216354, + -0.07161638140678406, + 0.13932658731937408, + -0.04751455411314964, + 0.03517477586865425, + 0.03596510738134384, + -0.03715917095541954, + 0.05464310571551323, + -0.07480459660291672, + -0.10437193512916565, + 0.052418917417526245, + -0.053578052669763565, + 0.047002438455820084, + -0.04899980500340462, + -0.13001790642738342, + -0.08158190548419952, + -0.04085903242230415, + 0.01156055461615324, + -0.0031153971794992685, + -0.016242148354649544, + 0.0614127553999424, + 0.025835569947957993, + 0.02073504775762558, + 0.02877809666097164, + 0.01228212658315897, + 0.027767766267061234, + 0.06212174892425537, + -0.019775232300162315, + 0.036976370960474014, + -0.007550564594566822, + -0.002331320196390152, + -0.05699340999126434, + -0.01857316680252552, + 0.009844301268458366, + 0.017338555306196213, + 0.04078976809978485, + 0.014633565209805965, + 0.02888394147157669, + -0.007337577175348997, + 0.09033612906932831, + 0.06853563338518143, + -0.009106255136430264, + -0.08123285323381424, + -0.08089487254619598, + 0.014318877831101418, + 0.023886671289801598, + 0.02903241664171219, + 0.01609947718679905, + 0.049760010093450546, + -0.1056436151266098, + 0.002705924678593874, + -0.0364321768283844, + -0.016178986057639122, + 0.0994495153427124, + -0.06756909191608429, + 0.0193333700299263, + 0.07719627767801285, + 0.00736954202875495, + 0.054256025701761246, + 0.028092144057154655, + -0.04222682863473892, + -0.0538293831050396, + 0.04888545349240303, + 0.06354323029518127, + 0.04457910358905792, + 0.03841645270586014, + 0.03582906723022461, + 0.028779970481991768, + 0.030813472345471382, + 0.035430748015642166, + 0.02689218707382679, + -0.07685498893260956, + 0.03928818181157112, + -0.01171095110476017, + 0.030494965612888336, + -0.028216363862156868, + 0.07788029313087463, + -0.004992326721549034, + -0.08960467576980591, + -0.002920923987403512, + 0.03672294318675995, + -0.15383192896842957, + 0.05324840545654297, + 0.03880184143781662, + -0.08297517150640488, + -0.11688660830259323, + -8.13273572633573e-34, + -0.022133152931928635, + 0.040695663541555405, + -0.06176818534731865, + -0.04298069328069687, + 0.013843164779245853, + 0.050035588443279266, + 0.03528713434934616, + 0.06129221245646477, + -0.035900719463825226, + 0.0335877388715744, + -0.011387022212147713, + -0.08597422391176224, + -0.039136528968811035, + -0.043124113231897354, + -0.07416196167469025, + 0.022299036383628845, + 0.045841284096241, + 0.028113244101405144, + -0.03491176292300224, + -0.02797255665063858, + -0.04799210652709007, + -0.020478155463933945, + 0.0319979153573513, + 0.09255781024694443, + -0.03972692787647247, + 0.05516689643263817, + 0.050800222903490067, + -0.021437358111143112, + -0.01756337098777294, + 0.002332652686163783, + -0.06292570382356644, + 0.02094387635588646, + 0.06492498517036438, + -0.005522348452359438, + -0.07102083414793015, + 0.11818443983793259, + 0.07218850404024124, + -0.05096045136451721, + 0.008732166141271591, + -0.04981721192598343, + 0.015109552070498466, + 0.010382422246038914, + 0.0641251802444458, + -0.05819597467780113, + -0.06901023536920547, + 0.06236397847533226, + 0.045840729027986526, + 0.05660891532897949, + -0.11564970761537552, + 0.040638264268636703, + 0.014100149273872375, + -0.019999274984002113, + 0.021617282181978226, + 0.03355896472930908, + -0.02752559445798397, + 0.016677092760801315, + -0.01449629943817854, + -0.0562809556722641, + -0.021601704880595207, + 0.04019494354724884, + -0.04278203845024109, + 0.015430310741066933, + -0.07520292699337006, + 0.008657276630401611, + 0.00229720794595778, + 0.011811663396656513, + -0.0011936052469536662, + -0.04528677463531494, + 0.020427009090781212, + 0.006014854181557894, + -0.05736961588263512, + -0.029214803129434586, + -0.06218580901622772, + -0.02208785153925419, + 0.018682148307561874, + -0.09213864058256149, + -0.034956466406583786, + 0.0008341989596374333, + -0.0451866053044796, + 0.07242191582918167, + 0.001613981556147337, + 0.04810044914484024, + -0.011225683614611626, + 0.025630727410316467, + -0.06292539834976196, + 0.015249714255332947, + -0.04221215099096298, + -0.053263336420059204, + 0.028675798326730728, + -0.004990281071513891, + -0.004088396672159433, + 0.10749243944883347, + -0.09541021287441254, + -0.02927354723215103, + -0.01831124722957611, + -1.5279653098332346e-08, + 0.05584003031253815, + 0.02635928988456726, + -0.00469803623855114, + -0.08222261816263199, + 0.001620199647732079, + -0.01296093687415123, + 0.0057148863561451435, + -0.04647214710712433, + -0.03506019711494446, + -0.0632457360625267, + -0.0014430203009396791, + 0.0016932461876422167, + -0.11982293426990509, + -0.06447313725948334, + 0.024136343970894814, + -0.023764556273818016, + -0.061991650611162186, + 0.02542838081717491, + -0.034942932426929474, + -0.09902453422546387, + 0.008940132334828377, + 0.04377610608935356, + -0.012376363389194012, + 0.015394723042845726, + 0.07985972613096237, + 0.049430910497903824, + -0.03419538214802742, + -0.0038401626516133547, + 0.033926740288734436, + 0.07504700869321823, + 0.015638142824172974, + 0.011722475290298462, + -0.03462039306759834, + -0.020093686878681183, + -0.10647682845592499, + -0.05674552172422409, + -0.03419272229075432, + -0.03275749087333679, + -0.049748681485652924, + 0.15652309358119965, + -0.017917435616254807, + 0.0579068697988987, + -0.009292819537222385, + 0.018435193225741386, + 0.0331462062895298, + 0.04972374439239502, + 0.12186654657125473, + -0.019481509923934937, + -0.018957221880555153, + -0.024715688079595566, + -0.006277583539485931, + 0.02047131210565567, + 0.07951267808675766, + 0.0366569384932518, + 0.013992508873343468, + 0.030053231865167618, + -0.02265581674873829, + -0.010383573360741138, + -0.06618459522724152, + 0.05065752938389778, + 0.05801478028297424, + 0.007951495237648487, + 0.043258875608444214, + 0.051578864455223083 + ], + "webcam-bold||camera,video conference": [ + -0.008897699415683746, + -0.03562059998512268, + -0.014220815151929855, + -0.0520424023270607, + 0.12093283236026764, + -0.031128359958529472, + 0.08424776047468185, + -0.033251289278268814, + 0.04709362983703613, + 0.014975660480558872, + 0.0409260131418705, + -0.014083128422498703, + -0.05900958552956581, + 0.03622589260339737, + 0.08107911050319672, + -0.03349883481860161, + 0.057550691068172455, + -0.029503265395760536, + -0.04114986211061478, + 0.029075076803565025, + 0.0013457330642268062, + -0.07130981981754303, + 0.07941309362649918, + 0.0036378451623022556, + 0.024461396038532257, + -0.008553212508559227, + 0.019194144755601883, + 0.04314325004816055, + 0.07466350495815277, + -0.04745728522539139, + -0.018906960263848305, + -0.027361897751688957, + 0.12063554674386978, + 0.09665150195360184, + 0.05407869443297386, + -0.06406320631504059, + -0.004274080973118544, + -0.013797647319734097, + -0.10305589437484741, + 0.06456352770328522, + -0.02109917253255844, + -0.010178664699196815, + 0.062091343104839325, + -0.0011302568018436432, + -0.03514992818236351, + 0.01779763400554657, + 0.0015482851304113865, + -0.02031581848859787, + 0.03392389044165611, + -0.02348305471241474, + -0.08843138813972473, + -0.11020820587873459, + -0.01551111601293087, + -0.025179190561175346, + -0.024779941886663437, + 0.026337487623095512, + -0.07474412024021149, + -0.03045123629271984, + 0.08459817618131638, + -0.030281146988272667, + 0.02601567842066288, + -0.0006113187992013991, + 0.06662973016500473, + 0.057748593389987946, + 0.021979473531246185, + 0.08172784000635147, + 0.06759506464004517, + 0.03342847153544426, + -0.0003643000964075327, + -0.0026304577477276325, + -0.054955366998910904, + 0.019392678514122963, + -0.022572625428438187, + -0.022347019985318184, + -0.03653900325298309, + -0.011266627348959446, + 0.043427594006061554, + 0.015663912519812584, + -0.03418531268835068, + -0.048079926520586014, + 0.057880159467458725, + -0.06862548738718033, + -0.027952061966061592, + -0.02671016938984394, + 0.07448185235261917, + 0.033184733241796494, + -0.0656902864575386, + -0.04605545848608017, + -0.05463208258152008, + -0.048324014991521835, + -0.22640042006969452, + -0.017412874847650528, + -0.04153566434979439, + -0.03758738934993744, + -0.05927833542227745, + -0.04570480436086655, + 0.061105791479349136, + -0.07435242086648941, + 0.007627732586115599, + 0.07956361025571823, + 0.021769775077700615, + -0.03650876507163048, + 0.028842411935329437, + -0.014187414199113846, + -0.0076559558510780334, + -0.029915206134319305, + -0.024062642827630043, + 0.08392965793609619, + 0.09285909682512283, + 0.017955727875232697, + -0.03750671446323395, + 0.0099843330681324, + -0.00593153340741992, + -0.08106579631567001, + -0.017834143713116646, + 0.03903421387076378, + -0.03312810882925987, + -0.0030803612899035215, + 0.06817217916250229, + -0.0048719788901507854, + 0.05807410553097725, + -0.05566911771893501, + -0.052729956805706024, + 0.010141356848180294, + 0.03560250252485275, + -0.04433135688304901, + 0.11178243160247803, + -2.471659625241214e-33, + 0.06458398699760437, + 0.03011379949748516, + -0.049718227237463, + 0.0596824549138546, + 0.102751225233078, + 0.04042520374059677, + 0.015242324210703373, + 0.00726486137136817, + -0.13176237046718597, + -0.015332784503698349, + 0.05287774279713631, + -0.053037554025650024, + -0.004212827421724796, + 0.017829598858952522, + 0.03294040635228157, + 0.003773971227928996, + -0.032144416123628616, + -0.03083353489637375, + -0.06293877214193344, + 0.001452525844797492, + -0.0407429002225399, + 0.03185632824897766, + 0.008007766678929329, + 0.061247263103723526, + -0.0193789005279541, + 0.03331194445490837, + 0.06952692568302155, + 0.05478469654917717, + 0.058486275374889374, + 0.02771626226603985, + 0.012925121001899242, + 0.02578740380704403, + 0.013478816486895084, + -0.0018463579472154379, + 0.0936891958117485, + 0.02424844540655613, + -0.0836218073964119, + -0.021081052720546722, + 0.03565693274140358, + 0.03199202939867973, + -0.08704696595668793, + 0.04259934276342392, + -0.08953903615474701, + -0.0622844472527504, + 0.0343506895005703, + 0.0494048073887825, + -0.01523527316749096, + -0.005672383587807417, + -0.04166078567504883, + 0.02617068402469158, + -0.00815546978265047, + 0.02648935094475746, + -0.02427929826080799, + -0.027188710868358612, + -0.038039594888687134, + -0.0327003188431263, + 0.03224405273795128, + 0.03894304856657982, + -0.029404275119304657, + -0.059130921959877014, + -0.018028810620307922, + 0.022834651172161102, + -0.04157828539609909, + -0.012472373433411121, + -0.0953051894903183, + 0.03588496521115303, + 0.021753331646323204, + 0.07503941655158997, + 0.034787245094776154, + -0.03878405690193176, + 0.04218587279319763, + 0.041657455265522, + 0.024637114256620407, + -0.02469383366405964, + -0.00350485322996974, + 0.08091336488723755, + -0.06848731637001038, + -0.003167659044265747, + -0.008419433608651161, + 0.05193766579031944, + -0.1378854215145111, + 0.07609358429908752, + 0.053241487592458725, + 0.07993568480014801, + -0.035753242671489716, + -0.02569020353257656, + -0.01693129353225231, + -0.02141330949962139, + -0.0926089733839035, + 0.04749678820371628, + -0.031585000455379486, + 0.05123521760106087, + 0.024113450199365616, + -0.018473174422979355, + -0.035387031733989716, + 1.6063156017925483e-33, + 0.052982330322265625, + 0.14823421835899353, + -0.08784373104572296, + -0.03579902648925781, + -0.01729457639157772, + -0.03563215583562851, + 0.13099393248558044, + 0.04839077219367027, + 0.050786033272743225, + -0.025685152038931847, + 0.1028565838932991, + -0.09592751413583755, + -0.10975659638643265, + -0.025195416063070297, + 0.027885759249329567, + 0.011161341331899166, + 0.015275596641004086, + -0.05299241095781326, + -0.07592927664518356, + 0.020442530512809753, + 0.06890969723463058, + -0.04965141415596008, + 0.04132506251335144, + 0.049183811992406845, + 0.0027841306291520596, + 0.04112759232521057, + 0.025564515963196754, + 0.046987514942884445, + 0.010626092553138733, + -0.07844707369804382, + 0.008851874619722366, + -0.012515440583229065, + -0.0021209835540503263, + 0.0014802612131461501, + 0.020184680819511414, + 0.03986179828643799, + 0.006162966135889292, + -0.027043456211686134, + 0.001107525429688394, + -0.05281811207532883, + 0.009651673957705498, + 0.005212007090449333, + -0.012790882028639317, + -0.013504832051694393, + 0.006562268361449242, + -0.008556191809475422, + -0.04734358191490173, + -0.013567863963544369, + -0.023222927004098892, + 0.03385978937149048, + -0.020149165764451027, + -0.03105911798775196, + 0.00160165224224329, + 0.001982796471565962, + -0.042456552386283875, + -0.007074668537825346, + -0.02356288768351078, + 0.01559093501418829, + 0.027219325304031372, + 0.056923411786556244, + 0.018958918750286102, + 0.029694441705942154, + -0.051105499267578125, + 0.021046826615929604, + 0.040400952100753784, + 0.04402303695678711, + 0.01329765748232603, + 0.06739050149917603, + -0.012957020662724972, + 0.041501838713884354, + 0.0726422667503357, + 0.026839327067136765, + 0.06055952608585358, + 0.06774172931909561, + -0.010881885886192322, + -0.024418311193585396, + 0.031549327075481415, + 0.086788609623909, + 0.05141831189393997, + 0.024808231741189957, + -0.029264232143759727, + -0.047550931572914124, + 0.0011117899557575583, + 0.057631008327007294, + 0.04133380576968193, + 0.08112824708223343, + 0.07615410536527634, + -0.03400684893131256, + -0.05711713060736656, + -0.003884894773364067, + -0.08737731724977493, + -0.007894773967564106, + 0.01107108686119318, + -0.008198111318051815, + 0.018055953085422516, + -1.3834855039362992e-08, + -0.09903902560472488, + -4.215806984575465e-05, + -0.06121029704809189, + -0.037405550479888916, + -0.0216996930539608, + -0.08079162985086441, + -0.025592323392629623, + -0.05780999734997749, + 0.05422098934650421, + -0.07916534692049026, + 0.024919474497437477, + 0.033633701503276825, + -0.02728375419974327, + 0.027268895879387856, + -0.015204350464046001, + 0.00997205264866352, + -0.10615465044975281, + 0.014802652411162853, + 0.002359159057959914, + -0.034651950001716614, + -0.019655082374811172, + -0.06218240410089493, + 0.015866929665207863, + -0.016727423295378685, + -0.006335067097097635, + -0.0024962963070720434, + -0.08310385048389435, + 0.03275226056575775, + 0.04271235689520836, + -0.041411690413951874, + -0.07419364899396896, + 0.018907207995653152, + 0.007834505289793015, + 0.047418657690286636, + -0.03156331554055214, + -0.0653131827712059, + -0.1127953976392746, + -0.036361947655677795, + 0.029699768871068954, + 0.09801275283098221, + -0.04353085160255432, + -0.006462542340159416, + 0.02148999087512493, + -0.003123951843008399, + 0.05374109372496605, + 0.08008886128664017, + 0.08096016198396683, + -0.06623684614896774, + -0.09353144466876984, + -0.0457577221095562, + -0.09172003716230392, + -0.016551019623875618, + 0.002520536305382848, + 0.08194921165704727, + -0.004421842284500599, + -0.04598069563508034, + 0.14105142652988434, + -0.009631124325096607, + -0.05900458246469498, + 0.03898226469755173, + 0.04134708270430565, + 0.04371853917837143, + -0.06378872692584991, + 0.06264665722846985 + ], + "webcam-slash-bold||camera,video conference": [ + -0.017032675445079803, + -0.05916851386427879, + -0.003297844436019659, + -0.053974349051713943, + 0.10015561431646347, + -0.036477167159318924, + 0.040692899376153946, + -0.02083856798708439, + 0.07223299145698547, + 0.020109182223677635, + 0.06093767657876015, + -0.026898425072431564, + -0.07009070366621017, + 0.08171021938323975, + 0.054898787289857864, + -0.02187890186905861, + 0.044425126165151596, + -0.013306429609656334, + -0.028898093849420547, + 0.03576133772730827, + -0.009689070284366608, + -0.024871479719877243, + 0.063637875020504, + -0.00652323430404067, + 0.03801346197724342, + -0.011204633861780167, + 0.026766542345285416, + 0.05110691115260124, + 0.054610833525657654, + -0.049205925315618515, + -0.0022623075637966394, + -0.04529201611876488, + 0.1157890036702156, + 0.08698607981204987, + 0.09031716734170914, + -0.04550718143582344, + 0.01791454292833805, + -0.03686726093292236, + -0.05921638384461403, + 0.060088738799095154, + -0.0006045139161869884, + -0.0206849854439497, + 0.041100241243839264, + -0.009300178848206997, + -0.044259000569581985, + 0.0048399074003100395, + -0.006494687404483557, + -0.05508165434002876, + 0.014275074936449528, + -0.0008906579460017383, + -0.08699409663677216, + -0.08205883949995041, + -0.02599906548857689, + -0.01647503487765789, + 0.007884976454079151, + 0.0165698304772377, + -0.08111575245857239, + 0.019776003435254097, + 0.1159002035856247, + -0.006112698931246996, + 0.023177925497293472, + -0.03237337991595268, + 0.04978657886385918, + 0.03838780149817467, + 0.01377356518059969, + 0.061435386538505554, + 0.05794651061296463, + 0.025484109297394753, + -0.023052848875522614, + -0.0061456868425011635, + -0.06250224262475967, + 0.004707305226475, + -0.056495219469070435, + -0.01925215870141983, + -0.05611298978328705, + -0.00718477601185441, + 0.026757070794701576, + 0.027376359328627586, + -0.024310778826475143, + -0.06593775004148483, + 0.06873861700296402, + -0.0542135015130043, + -0.009379472583532333, + 0.013132761232554913, + 0.0961519107222557, + 0.04045579582452774, + -0.05606570467352867, + -0.0585448183119297, + -0.031162453815340996, + -0.056924205273389816, + -0.19756890833377838, + -0.04786687716841698, + -0.002924934960901737, + -0.023187965154647827, + -0.05632680654525757, + -0.03891357406973839, + 0.03217880055308342, + -0.052906595170497894, + -0.0056113991886377335, + 0.06790409237146378, + 0.025038693100214005, + -0.03742140159010887, + -0.03244819492101669, + -0.03791399300098419, + 0.01599971577525139, + -0.0072502074763178825, + -0.0023096005897969007, + 0.10163048654794693, + 0.06957206130027771, + 0.016958653926849365, + -0.024101978167891502, + 0.005738827865570784, + -0.021695975214242935, + -0.1007416844367981, + -0.022619295865297318, + 0.024727167561650276, + -0.05430058389902115, + -0.04036729782819748, + 0.07563237845897675, + 0.04801255837082863, + 0.03990385681390762, + -0.08034278452396393, + -0.08660005033016205, + 0.014705033972859383, + 0.02731752209365368, + -0.047511085867881775, + 0.12558676302433014, + -3.1345357670202794e-33, + 0.07284607738256454, + 0.03513167425990105, + -0.025279583409428596, + 0.026297742500901222, + 0.11121958494186401, + 0.01974514126777649, + 0.010527382604777813, + 0.03589983657002449, + -0.1361340582370758, + -0.02078068070113659, + 0.05865960940718651, + -0.07917876541614532, + 0.0006409271736629307, + -0.013053350150585175, + -0.0050516570918262005, + 0.018160514533519745, + -0.024933429434895515, + -0.05676967650651932, + -0.06972768157720566, + -0.007715709041804075, + -0.030271852388978004, + 0.0681186243891716, + 0.010348808020353317, + 0.06845265626907349, + -0.02148888073861599, + 0.02416534535586834, + 0.06546622514724731, + 0.040578875690698624, + 0.07676562666893005, + 0.03721880540251732, + -0.005085762124508619, + 0.018831035122275352, + 0.033057935535907745, + 0.014620465226471424, + 0.06477175652980804, + 0.06880290061235428, + -0.0536261647939682, + -0.0023201678413897753, + -0.004663909785449505, + 0.041005995124578476, + -0.08193125575780869, + 0.02153022401034832, + -0.12532079219818115, + -0.04354433715343475, + 0.017799701541662216, + 0.026370294392108917, + -0.008525272831320763, + -0.04080236703157425, + -0.049092791974544525, + 0.03284895047545433, + -0.029006831347942352, + 0.05184483155608177, + 0.02417486347258091, + 0.0016008189413696527, + -0.0440516322851181, + -0.05201064422726631, + 0.014315305277705193, + 0.025866536423563957, + -0.015117933042347431, + -0.07269618660211563, + -0.022640202194452286, + 0.046769458800554276, + -0.042917877435684204, + -5.768780465587042e-05, + -0.11420854181051254, + 0.043969739228487015, + 0.03038482554256916, + 0.09102648496627808, + 0.02484608069062233, + -0.04186171293258667, + 0.02761491946876049, + 0.028225567191839218, + 0.023889267817139626, + -0.030780553817749023, + -0.040834661573171616, + 0.07071036845445633, + -0.09180756658315659, + -0.004825921729207039, + 0.008380088023841381, + 0.03369179740548134, + -0.1570570319890976, + 0.061262097209692, + 0.0718035101890564, + 0.08012006431818008, + -0.003146612551063299, + -0.05284528806805611, + -0.0014460210222750902, + -0.01929537020623684, + -0.08304579555988312, + 0.03941167891025543, + -0.015534874983131886, + 0.03223636373877525, + 0.003778832731768489, + -0.011924905702471733, + -0.008112135343253613, + 2.4101827400611468e-33, + 0.06259074062108994, + 0.1691056340932846, + -0.09927108138799667, + -0.012272495776414871, + -0.04013355076313019, + -0.05845695361495018, + 0.11109568923711777, + 0.031777720898389816, + 0.05608091503381729, + -0.03431396186351776, + 0.09598682820796967, + -0.063479945063591, + -0.09625650197267532, + -0.059564705938100815, + 0.05255449190735817, + -0.009318928234279156, + -0.01388406939804554, + -0.06460607051849365, + -0.06914763897657394, + 0.02967039868235588, + 0.04468666389584541, + -0.05041256174445152, + 0.04649808630347252, + 0.05628971382975578, + 0.00075362907955423, + 0.06098597124218941, + 0.054361261427402496, + 0.04047646000981331, + 0.031502123922109604, + -0.04249224811792374, + 0.030776480212807655, + 0.005278162192553282, + -0.029573071748018265, + -0.01749684475362301, + 0.0035127191804349422, + 0.05540930852293968, + -0.03858311474323273, + 0.0168792512267828, + 0.011140435002744198, + -0.06445951759815216, + 0.011325037106871605, + -0.003837703261524439, + 0.0045515564270317554, + 0.03242866322398186, + 0.011002984829246998, + -0.027880510315299034, + -0.04802009090781212, + -0.03237469494342804, + -0.015627611428499222, + 0.035138729959726334, + 0.0023111989721655846, + -0.017015470191836357, + -0.0059638600796461105, + 0.02252187207341194, + -0.045255303382873535, + 0.0051818909123539925, + -0.058982331305742264, + 0.04783836752176285, + -0.0354977510869503, + 0.08898021280765533, + 0.04909929633140564, + 0.022859396412968636, + -0.06578154861927032, + 0.0064290850423276424, + 0.04263331741094589, + 0.026887672021985054, + -0.005637310910969973, + 0.06660711765289307, + -0.006034716498106718, + 0.033232513815164566, + 0.07341072708368301, + 0.05648276209831238, + 0.05637741833925247, + 0.0554286427795887, + 0.006058861967176199, + -0.04304897040128708, + 0.014627714641392231, + 0.09885842353105545, + 0.062302496284246445, + 0.05826278030872345, + -0.014143175445497036, + -0.034353118389844894, + 0.0036600306630134583, + 0.059427134692668915, + 0.020521987229585648, + 0.06385210901498795, + 0.05163776874542236, + 0.025706836953759193, + -0.05468621477484703, + -0.03440382331609726, + -0.08086864650249481, + -0.014624176546931267, + 0.016472890973091125, + 0.010625519789755344, + -0.016907766461372375, + -1.42518006285286e-08, + -0.10085085034370422, + -0.00392673397436738, + -0.05583203583955765, + -0.009441221132874489, + -0.022028015926480293, + -0.06027352437376976, + -0.029102100059390068, + -0.04757245257496834, + 0.07795178890228271, + -0.05521409213542938, + 0.049784548580646515, + 0.01895122230052948, + -0.015343539416790009, + 0.015670843422412872, + -0.024259284138679504, + 0.012356951832771301, + -0.07951565086841583, + 0.021610425785183907, + -0.0030019006226211786, + -0.00760377012193203, + -0.03794778138399124, + -0.06271448731422424, + 0.03570118546485901, + -0.008746074512600899, + 0.003722435561940074, + -0.028653733432292938, + -0.09005699306726456, + 0.01561841368675232, + 0.020427459850907326, + -0.04175359010696411, + -0.06922123581171036, + 0.022455696016550064, + 0.00010614950588205829, + 0.039232708513736725, + -0.03645167127251625, + -0.036039404571056366, + -0.09325872361660004, + -0.02443130873143673, + 0.04334833100438118, + 0.07548701018095016, + -0.0318327359855175, + -0.049587756395339966, + 0.031390197575092316, + -0.008451352827250957, + 0.0333360880613327, + 0.07792763411998749, + 0.10225027054548264, + -0.047424886375665665, + -0.0928182452917099, + -0.043648771941661835, + -0.06960663199424744, + 0.01055516954511404, + -0.01830858737230301, + 0.07925695925951004, + 0.02034538984298706, + -0.036758776754140854, + 0.14753618836402893, + -0.002894952893257141, + -0.07585511356592178, + 0.02450750395655632, + 0.051993079483509064, + 0.029024558141827583, + -0.049806900322437286, + 0.045553870499134064 + ], + "webhooks-logo-bold||api": [ + -0.042221054434776306, + 0.1006428599357605, + -0.05464242026209831, + 0.01604045182466507, + 0.08283834159374237, + -0.0829426497220993, + 0.021796179935336113, + -0.07774194329977036, + 0.03783344477415085, + -0.003840208984911442, + -0.011883094906806946, + -0.0248145442456007, + 0.044320885092020035, + -0.06879395991563797, + 0.1231207624077797, + -0.020310357213020325, + -0.012503143399953842, + 0.004235874395817518, + 0.013345790095627308, + -0.05903714522719383, + 0.04149699956178665, + 0.0031419144943356514, + 0.01220968272536993, + -0.02173342928290367, + -0.00011199847358511761, + -0.03519931435585022, + 0.06476736068725586, + -0.026726631447672844, + -0.007185210008174181, + -0.0424334816634655, + 0.002645656932145357, + -0.06057193875312805, + 0.0232135858386755, + 0.05029565468430519, + 0.01031448319554329, + 0.06518719345331192, + 0.036069732159376144, + -0.05038245767354965, + 0.07669401168823242, + 0.09311260282993317, + 0.06573672592639923, + -0.03772139549255371, + -0.017470581457018852, + -0.053958192467689514, + -0.07692499458789825, + -0.02214275673031807, + -0.04948137700557709, + -0.023451555520296097, + -0.03580714389681816, + 0.01011066883802414, + 0.021819675341248512, + -0.13898144662380219, + -0.0445048063993454, + -0.02789921686053276, + -0.014653039164841175, + -0.046601276844739914, + -0.08535008132457733, + 0.043306864798069, + 0.021498743444681168, + -0.019491024315357208, + 0.04507659003138542, + -0.023746322840452194, + 0.08202294260263443, + 0.02400539256632328, + 0.06477164477109909, + 0.007017351221293211, + -0.02114926464855671, + -0.022958721965551376, + -0.03590184077620506, + -0.0453198216855526, + 0.03878104314208031, + -0.03309575468301773, + 0.020121680572628975, + -0.03680033981800079, + -0.023783160373568535, + 0.05051935091614723, + 0.07159726321697235, + 0.07031485438346863, + 0.03568755090236664, + -0.08987236022949219, + -0.04964810982346535, + -0.01318266149610281, + 0.033350761979818344, + 0.09344805777072906, + 0.07201255112886429, + 0.08602092415094376, + -0.10292737185955048, + -0.02892228402197361, + -0.036511845886707306, + 0.044046103954315186, + -0.02273358590900898, + -0.07956799864768982, + -0.036198362708091736, + -0.009381033480167389, + -0.08106192946434021, + 0.009324857033789158, + -0.003399562556296587, + 0.027989232912659645, + -0.09937954694032669, + 0.08303288370370865, + -0.023415355011820793, + 0.03133729100227356, + 0.05885833129286766, + -0.04302142933011055, + 0.04392368718981743, + -0.011189321987330914, + 0.023109642788767815, + 0.00928227324038744, + 0.0335332527756691, + 0.055740877985954285, + -0.01635850965976715, + -0.019380029290914536, + -0.034337710589170456, + -0.004128992557525635, + -0.03074907511472702, + 0.016878662630915642, + -0.0013820813037455082, + -0.062151193618774414, + 0.09224998950958252, + 0.05662763491272926, + 0.03117401897907257, + -0.013236536644399166, + -0.03896411880850792, + -0.026948051527142525, + 0.033288199454545975, + 0.01596708968281746, + 0.06701400130987167, + -1.9295201612740364e-33, + 0.03514406085014343, + 0.12554660439491272, + -0.0027640112675726414, + -0.038656312972307205, + 0.03613590449094772, + -0.0368233285844326, + 0.017893441021442413, + -0.11812281608581543, + -0.07223278284072876, + -0.018337195739150047, + 0.06144847348332405, + 0.09755011647939682, + 0.026225438341498375, + 0.032292552292346954, + -0.025970716029405594, + -0.026245810091495514, + -0.042435504496097565, + -0.002096561249345541, + -0.0563335046172142, + -0.00374684389680624, + -0.045840922743082047, + -0.023491226136684418, + -0.06213369593024254, + -0.054791081696748734, + -0.06539874523878098, + -0.03766553848981857, + -0.01075814850628376, + 0.04135509580373764, + -0.049752846360206604, + 0.05534441024065018, + 0.03273458033800125, + -0.011159269139170647, + 0.014399313367903233, + 0.06979036331176758, + -0.08082359284162521, + -0.05791369080543518, + -0.07690906524658203, + -0.02255101315677166, + 0.012589151039719582, + 0.005044412333518267, + 0.005839108023792505, + -0.02672472409904003, + -0.0477316677570343, + 0.012250049971044064, + -0.0797736719250679, + 0.10505620390176773, + -0.03137023374438286, + -0.11561854928731918, + 0.024023160338401794, + -0.04648004099726677, + -0.056121744215488434, + 0.004155054222792387, + 0.031869225203990936, + -0.02974856086075306, + 0.0023941113613545895, + -0.09842975437641144, + 0.030683377757668495, + 0.003787765745073557, + -0.011815790086984634, + -0.08614445477724075, + 0.03445986658334732, + 0.016621045768260956, + 0.0888138860464096, + 0.0034877685829997063, + 0.004989678971469402, + 0.07459737360477448, + 0.010692683979868889, + 0.10270942747592926, + -0.05361057072877884, + -0.07802747189998627, + 0.09930706769227982, + 0.052675798535346985, + 0.07114975154399872, + 0.013250728137791157, + -0.10347001254558563, + -0.023387646302580833, + 0.09444493055343628, + 0.04974009841680527, + 0.008287046104669571, + 0.023271851241588593, + 0.05921090394258499, + -0.035834901034832, + -0.04048226401209831, + 0.020171301439404488, + -0.014791028574109077, + 0.033700354397296906, + 0.06788401305675507, + -0.026369065046310425, + -0.05278894305229187, + 0.03619116544723511, + -0.0010894022416323423, + -0.014475880190730095, + -0.035017047077417374, + -0.032605402171611786, + -0.11255995184183121, + -5.888606808020594e-34, + 0.05701582133769989, + 0.041637666523456573, + 0.015602700412273407, + -0.028821168467402458, + -0.03320750221610069, + 0.05184754729270935, + 0.12139873206615448, + 0.061339959502220154, + -0.061838336288928986, + -0.005588354542851448, + 0.1079380065202713, + 0.008307849988341331, + -0.16382676362991333, + 0.009065721184015274, + 0.013079002499580383, + 0.004778238944709301, + -0.007906711660325527, + 0.015576831065118313, + 0.007175399921834469, + -0.008801529183983803, + -0.003612610511481762, + -0.025745823979377747, + -0.07369329780340195, + 0.08277805894613266, + 0.015522925183176994, + -0.018121609464287758, + -0.0016278713010251522, + 0.03805128112435341, + -0.09525278210639954, + -0.044314101338386536, + -0.02374822273850441, + -0.005993097089231014, + 0.01717105135321617, + 0.0703827440738678, + -0.01617899350821972, + -0.05073940008878708, + -0.006147576961666346, + 0.028769170865416527, + 0.009059449657797813, + -0.035061608999967575, + 0.05758683383464813, + -0.08164545148611069, + -0.02089604362845421, + 0.043419938534498215, + -0.01082694623619318, + -0.022042879834771156, + -0.07088059186935425, + -0.07409711927175522, + -0.054252564907073975, + 0.08828998357057571, + 0.05557165667414665, + 0.023182811215519905, + 0.0355357825756073, + 0.08233249932527542, + -0.09671380370855331, + 0.055970512330532074, + -0.035436853766441345, + 0.060633931308984756, + -0.043361008167266846, + 0.02911694347858429, + -0.06842959672212601, + -0.019429175183176994, + -0.034461941570043564, + 0.08263713121414185, + 0.021338852122426033, + -0.021964291110634804, + -0.03228363022208214, + 0.013908086344599724, + -0.012310306541621685, + 0.011331102810800076, + 0.027083443477749825, + -0.04825891554355621, + 0.010311994701623917, + 0.04181121662259102, + 0.02029329352080822, + -0.05180293321609497, + 0.0659160390496254, + 0.0009320912649855018, + -0.06885670125484467, + 0.0038262372836470604, + -0.07769694179296494, + 0.003219152567908168, + -0.032550446689128876, + 0.07200819253921509, + 0.057247746735811234, + 0.018928848206996918, + -0.0269887987524271, + 0.06929494440555573, + -0.033639393746852875, + -0.021763086318969727, + -0.04016738384962082, + 0.03387230634689331, + -0.013316863216459751, + 0.03368865326046944, + -0.014444020576775074, + -1.6514382750187906e-08, + -0.07047055661678314, + -0.028010614216327667, + 0.06906924396753311, + 0.05351870134472847, + 0.024576494470238686, + 0.014620148576796055, + 0.01122341863811016, + -0.11563719063997269, + -0.05603109672665596, + 0.006515014450997114, + -0.06654032319784164, + 0.004917002283036709, + -0.013985435478389263, + -0.01806631311774254, + -0.022278062999248505, + -0.0361206941306591, + -0.040263328701257706, + 0.07516247779130936, + 0.02300325781106949, + -0.04978745058178902, + -0.0525154173374176, + 0.020348694175481796, + 0.061459172517061234, + -0.04942562058568001, + 0.07245707511901855, + 0.08910924941301346, + -0.05245351791381836, + 0.002912650816142559, + -0.03765678405761719, + 0.011706043034791946, + -0.03539494425058365, + 0.03660809248685837, + 0.01343662478029728, + 0.01055946946144104, + -0.037304915487766266, + -0.025993147864937782, + -0.08696390688419342, + -0.03386532515287399, + -0.06888210028409958, + 0.019146963953971863, + 0.005668743513524532, + 0.018401402980089188, + 0.0014500615652650595, + -0.01645652949810028, + 0.04927526414394379, + 0.03898709639906883, + 0.0921986997127533, + -0.005892378743737936, + 0.034132298082113266, + -0.019939204677939415, + 0.010580199770629406, + -0.008993338793516159, + 0.03283393755555153, + 0.05926937237381935, + -0.06622585654258728, + -0.12662817537784576, + 0.031668201088905334, + 0.08175206929445267, + 0.030602531507611275, + 0.09740888327360153, + 0.12410999834537506, + -0.05836692079901695, + 0.015734033659100533, + 0.019508181139826775 + ], + "wechat-logo-bold||weixin,logos": [ + 0.004163163714110851, + 0.052865169942379, + -0.02890889160335064, + 0.06140277162194252, + 0.06988108903169632, + -0.0673026442527771, + 0.0774584710597992, + 0.006684369407594204, + 0.07771754264831543, + -0.0651431605219841, + 0.05265437811613083, + 0.002842722460627556, + 0.03801116719841957, + 0.0030037916731089354, + 0.06743114441633224, + -0.0757237896323204, + -0.016478870064020157, + -0.047156836837530136, + 0.07456526905298233, + -0.011161635629832745, + 0.06296626478433609, + 0.008249466307461262, + 0.04959791153669357, + -0.02432919852435589, + 0.02036035992205143, + -0.02734474465250969, + 0.046989038586616516, + -0.013683862052857876, + -0.0009589529363438487, + -0.0758160650730133, + -0.02922910638153553, + -0.05304606631398201, + 0.04385999217629433, + 0.004005115479230881, + -0.021537423133850098, + 0.07206497341394424, + 0.07652753591537476, + -0.03406081348657608, + 0.06026354059576988, + 0.05238405615091324, + 0.023761361837387085, + -0.09078000485897064, + -0.004863130394369364, + 0.058917898684740067, + -0.03554638847708702, + 0.04835691303014755, + -0.11852551996707916, + 0.009286601096391678, + -0.016596704721450806, + 0.042019907385110855, + 0.012529777362942696, + -0.09717067331075668, + 0.015227533876895905, + 0.008019212633371353, + 0.026052754372358322, + -0.03446603938937187, + -0.036295149475336075, + 0.015542786568403244, + 0.06617517024278641, + -0.0055806199088692665, + -0.014142591506242752, + 0.017139898613095284, + 0.018331225961446762, + 0.056173574179410934, + 0.08032306283712387, + -0.047394949942827225, + 0.03709917515516281, + 0.034601740539073944, + -0.0780702754855156, + 0.030276363715529442, + 0.09391076862812042, + -0.01258784532546997, + -0.03855080157518387, + 0.0025839381851255894, + -0.028595736250281334, + 0.027032267302274704, + 0.0333876833319664, + 0.017640773206949234, + -0.04965125769376755, + -0.05834190919995308, + -0.027725014835596085, + 0.009265516884624958, + 0.008848065510392189, + 0.05643525347113609, + 0.05666221305727959, + 0.08175856620073318, + -0.10285675525665283, + -0.02976832166314125, + -0.0205939132720232, + 0.05599653720855713, + -0.06029917672276497, + 0.009920910932123661, + -0.01979137398302555, + 0.011493191123008728, + -0.08134979754686356, + 0.024221288040280342, + -0.009421790950000286, + 0.08179240673780441, + -0.09914394468069077, + 0.06605040282011032, + -0.021290818229317665, + 0.06152469664812088, + -0.0031914447899907827, + -0.04021802544593811, + 0.04318041354417801, + 0.024417361244559288, + 0.016296695917844772, + -0.03602689504623413, + 0.04637301713228226, + 0.024319475516676903, + 0.01881745457649231, + -0.11333099752664566, + -0.10614872723817825, + -0.029358739033341408, + -0.056634388864040375, + -0.07090326398611069, + 0.0311758890748024, + -0.03690684586763382, + 0.023353341966867447, + -0.06192401424050331, + 0.02022402174770832, + 0.019304309040308, + -0.045978449285030365, + -0.03614141792058945, + -0.019529588520526886, + -0.0418773889541626, + -0.02341143786907196, + -3.100390594864769e-33, + 0.030377117916941643, + 0.06912420690059662, + -0.09000514447689056, + 0.040467165410518646, + 0.025185488164424896, + 0.007092876825481653, + -0.05268281698226929, + -0.07686275988817215, + -0.12248142808675766, + 0.025808505713939667, + 0.05567166581749916, + 0.0369996652007103, + -0.04922205209732056, + 0.01618402823805809, + 0.030908070504665375, + -0.05713712424039841, + 0.04475774988532066, + -0.05798238515853882, + -0.038621045649051666, + -0.07804536074399948, + 0.020918933674693108, + 0.012348848395049572, + -0.012534674257040024, + -0.07967860996723175, + -0.015322215855121613, + 0.03780590370297432, + 0.10122963041067123, + 0.006046845577657223, + -0.0916694849729538, + 0.021416112780570984, + -0.0015260889194905758, + 0.03740896284580231, + -0.023318717256188393, + 0.040615566074848175, + 0.00876664835959673, + -0.03821271285414696, + -0.023832455277442932, + -0.0024500300642102957, + 0.009310281835496426, + 0.027674399316310883, + -0.002518767723813653, + -0.030499935150146484, + -0.03289284557104111, + -0.033355534076690674, + 0.03121154196560383, + 0.15706729888916016, + 0.0022633259650319815, + -0.026288239285349846, + 0.06721071153879166, + -0.045515138655900955, + -0.016140412539243698, + -0.0018958037253469229, + -0.028699830174446106, + -0.0021607002709060907, + -0.006903870031237602, + -0.03846582770347595, + 0.004506835248321295, + 0.04247177019715309, + -0.014771142974495888, + 0.003933986183255911, + -0.019880041480064392, + -0.034078069031238556, + 0.05405253544449806, + 0.0373079776763916, + -0.021046869456768036, + 0.07734986394643784, + -0.021027712151408195, + 0.07058309018611908, + -0.029310142621397972, + -0.03893274441361427, + 0.018348732963204384, + 0.020598068833351135, + 0.08715184777975082, + 0.028428738936781883, + -0.08014819025993347, + 0.007388825993984938, + -0.04506882652640343, + 0.050501976162195206, + 0.0419190376996994, + 0.01229132805019617, + -0.04963872954249382, + -0.041308894753456116, + -0.04817552864551544, + 0.023920709267258644, + 0.026906341314315796, + 0.06775800883769989, + 0.08474907279014587, + 0.029678210616111755, + -0.07369695603847504, + 0.002828095341101289, + -0.052882350981235504, + 0.020062915980815887, + 0.06129644066095352, + 0.002995468443259597, + -0.10008744895458221, + 7.503893084748847e-34, + 0.03076421655714512, + 0.054481782019138336, + 0.04090362787246704, + -0.017604852095246315, + -0.027129381895065308, + -0.008890696801245213, + 0.08558016270399094, + 0.1313602179288864, + -0.05615856498479843, + 0.03668417036533356, + 0.10741302371025085, + -0.007738017477095127, + -0.12155097723007202, + -0.06953290104866028, + 0.021999366581439972, + 0.08084756880998611, + 0.039932139217853546, + 0.03610601648688316, + -0.06626760959625244, + -0.08155035972595215, + -0.032665591686964035, + -0.014993766322731972, + -0.10349670052528381, + 0.1124977096915245, + -0.0009072954999282956, + 0.02479497529566288, + 0.08320974558591843, + 0.025977671146392822, + -0.028775740414857864, + 0.009583950974047184, + -0.11006619036197662, + -0.03920743614435196, + 0.0072155119851231575, + 0.018277667462825775, + 0.03816808760166168, + 0.04087290167808533, + 0.010366563685238361, + 0.03676912561058998, + 0.00876264926046133, + 0.04089890047907829, + 0.027231277897953987, + -0.04642187058925629, + -0.07110492885112762, + 0.07677584141492844, + -0.0038043358363211155, + -0.018263284116983414, + -0.0831221342086792, + -0.11507545411586761, + -0.05607827380299568, + 0.056403469294309616, + 0.08587045967578888, + -0.0682128369808197, + 0.02883259765803814, + 0.03875311464071274, + -0.1548624187707901, + -0.01812896318733692, + 0.009336191229522228, + 0.07148140668869019, + -0.011544393375515938, + -0.01208309456706047, + 0.0012011589715257287, + -0.006413498893380165, + 0.03195086866617203, + 0.013287032954394817, + -0.0006241326336748898, + -0.061975397169589996, + -0.013533317483961582, + -0.040836941450834274, + 0.035703014582395554, + 0.042012687772512436, + 0.04471909999847412, + -0.04249315336346626, + -0.039788998663425446, + -0.007621814962476492, + 0.012188305146992207, + -0.06795242428779602, + 0.06946151703596115, + 0.0026511908508837223, + -0.03145628422498703, + 0.07110755890607834, + 0.009096857160329819, + 0.04371218383312225, + -0.09995626658201218, + 0.08225380629301071, + 0.07376974821090698, + 0.0032891896553337574, + -0.00042695426964201033, + 0.09259752184152603, + -0.00697697140276432, + 0.0016715704696252942, + -0.05925672501325607, + 0.07095323503017426, + 0.04499329626560211, + 0.01364812720566988, + 0.0027535739354789257, + -1.590870901679864e-08, + -0.09691135585308075, + -0.048400331288576126, + 0.01873135380446911, + 0.03068568930029869, + 0.046279918402433395, + -0.0097282649949193, + -0.04593714326620102, + -0.09941305965185165, + -0.04566851258277893, + 0.019375687465071678, + -0.06772512942552567, + 0.06728258728981018, + -0.0635712519288063, + -0.0025309885386377573, + -0.011357142589986324, + -0.06744010746479034, + -0.05386046692728996, + 0.09889082610607147, + -0.005503190215677023, + -0.04831872135400772, + -0.05491990968585014, + 0.04213456064462662, + 0.031544581055641174, + 0.008477859199047089, + -0.05991530790925026, + 0.01928759180009365, + -0.07088629901409149, + 0.006010891404002905, + -0.018664654344320297, + 0.024783654138445854, + -0.03272010758519173, + 0.06305079907178879, + -0.013973154127597809, + -0.02796536684036255, + -0.07051683217287064, + -0.012839294970035553, + -0.08134474605321884, + -0.04727606475353241, + -0.0017218239372596145, + 0.06517305970191956, + -0.020557347685098648, + -0.03266897052526474, + 0.028608577325940132, + 0.005795563571155071, + -0.05526210740208626, + -0.002830736804753542, + 0.010760482400655746, + 0.02770102210342884, + -0.0011434166226536036, + -0.016934409737586975, + 0.05127880349755287, + -0.0687018483877182, + 0.003710707649588585, + -0.017788879573345184, + -0.09134145081043243, + -0.08782483637332916, + 0.04575292393565178, + 0.07592607289552689, + 0.02367478422820568, + 0.04345204681158066, + 0.10527584701776505, + -0.07449811697006226, + 0.053398020565509796, + -0.030592380091547966 + ], + "whatsapp-logo-bold||logos,messages,messaging": [ + 0.029972484335303307, + 0.07498243451118469, + -0.007549682632088661, + 0.01564849354326725, + 0.07906057685613632, + -0.05164483189582825, + 0.07760205119848251, + -0.048109181225299835, + 0.10128369182348251, + 0.05462401732802391, + 0.011689607053995132, + 0.0206040907651186, + 0.04631635174155235, + 0.04570548236370087, + 0.04594457894563675, + -0.04155895486474037, + -0.016879133880138397, + -0.067408487200737, + 0.015004807151854038, + -0.011007752269506454, + 0.049802057445049286, + 0.024982046335935593, + 0.05198778212070465, + 0.001018027774989605, + 0.004443502053618431, + 0.029326284304261208, + -0.016627926379442215, + 0.00584212364628911, + -0.01724054291844368, + -0.032713789492845535, + -0.032204870134592056, + -0.0048623476177453995, + 0.08545231074094772, + 0.09256112575531006, + -0.012337829917669296, + 0.002283149166032672, + 0.06784206628799438, + 0.03385182470083237, + 0.08806983381509781, + 0.08171743154525757, + 0.0011330071138218045, + -0.05445657670497894, + -0.01954522728919983, + -0.0005633014370687306, + 0.022601855918765068, + 0.012061584740877151, + -0.04983115941286087, + 0.0033726277761161327, + -0.016368497163057327, + 0.009584590792655945, + 0.06272005289793015, + -0.08744030445814133, + -0.09698036313056946, + 0.013502607122063637, + 0.062134236097335815, + 0.006922970060259104, + -0.08236143738031387, + 0.05739760771393776, + 0.05241628736257553, + -0.0062566716223955154, + -0.024767030030488968, + 0.01130352821201086, + 0.04457175359129906, + 0.055512525141239166, + 0.05489812791347504, + 0.0300748310983181, + -0.006703575607389212, + -0.009813928045332432, + -0.0774621069431305, + 0.04338771849870682, + 0.045293308794498444, + 0.008914162404835224, + 0.020145386457443237, + -0.048760347068309784, + -0.05391964316368103, + 0.028175553306937218, + 0.04162992537021637, + 0.03962133452296257, + -0.10708960890769958, + -0.06134944036602974, + -0.048444997519254684, + -0.01950523629784584, + -0.05311867967247963, + 0.011533867567777634, + 0.08604776114225388, + 0.04621795192360878, + -0.08512033522129059, + -0.06739849597215652, + -0.0066698528826236725, + -0.031016208231449127, + -0.07126978784799576, + -0.045017123222351074, + 0.013469642959535122, + 0.09037374705076218, + -0.10208263248205185, + 0.012999213300645351, + -0.011473705060780048, + 0.01169939897954464, + -0.06345689296722412, + 0.024897390976548195, + 0.013733990490436554, + 0.04024350270628929, + 0.09249179810285568, + -0.054676592350006104, + 0.04224466532468796, + 0.0725017711520195, + -0.028041435405611992, + -0.05576787516474724, + 0.05007484182715416, + 0.06105159595608711, + -0.028490381315350533, + -0.07171030342578888, + -0.043308548629283905, + 0.007026353385299444, + -0.009465169161558151, + -0.06787001341581345, + -0.026001987978816032, + -0.06736350804567337, + 0.07405675202608109, + -0.01762481965124607, + 0.04456501826643944, + -0.09225836396217346, + -0.0494164302945137, + 0.002455218229442835, + -0.09315194934606552, + 0.00097138702403754, + 0.010734411887824535, + -2.9098523278170843e-33, + 0.00704153859987855, + 0.06168416887521744, + -0.011526951566338539, + 0.07912274450063705, + -0.014545547775924206, + 0.042492352426052094, + -0.023916902020573616, + -0.08138632029294968, + -0.07960344851016998, + -0.003386846976354718, + 0.03120778501033783, + 0.09574685245752335, + -0.009964139200747013, + 0.09484952688217163, + 0.0032667615450918674, + -0.028370482847094536, + -0.042482972145080566, + -0.024980545043945312, + -0.03417031094431877, + -0.05572576820850372, + -0.06993529945611954, + 0.024341953918337822, + -0.11695607006549835, + -0.030352650210261345, + 0.04329128563404083, + -0.01583119109272957, + 0.14645062386989594, + -0.04788396507501602, + -0.03790776804089546, + -0.004722267389297485, + 0.0019763146992772818, + 0.030699795112013817, + 0.05166350677609444, + 0.014213415794074535, + 0.03350522369146347, + 0.015256853774189949, + -0.05998411402106285, + 0.022891167551279068, + -0.005492068361490965, + 0.07669524103403091, + 0.0074429260566830635, + -0.06811453402042389, + -0.058907315135002136, + 0.008221148513257504, + 0.03792787343263626, + 0.13885498046875, + 0.013461953960359097, + -0.06276843696832657, + -0.010048329830169678, + -0.03575560450553894, + -0.03147108852863312, + -0.06705901771783829, + -0.03690869361162186, + -0.016195571050047874, + -0.003477883990854025, + -0.04175162687897682, + -0.03143573924899101, + 0.03621760755777359, + 0.0047739348374307156, + -0.009811023250222206, + -0.035831380635499954, + -0.04321969300508499, + 0.017369702458381653, + -0.024935372173786163, + -0.015209924429655075, + 0.06262045353651047, + -0.07183258980512619, + 0.04291260242462158, + -0.021107440814375877, + 0.00921072717756033, + 0.0329037643969059, + 0.09901358187198639, + 0.07108045369386673, + 0.03886439651250839, + -0.08792150020599365, + 0.009635694324970245, + 0.007059893105179071, + 0.1377454698085785, + -0.013554495759308338, + 0.0370468869805336, + -0.01380409300327301, + 0.02302154153585434, + -0.05281419679522514, + 0.032979920506477356, + 0.015336418524384499, + 0.044559113681316376, + 0.06575509905815125, + -0.093015655875206, + -0.10056236386299133, + 0.0492134615778923, + -0.07006464153528214, + 0.0032809884287416935, + 0.06623858958482742, + -0.0072301942855119705, + -0.11228863149881363, + 4.984263647266987e-34, + 0.05124969035387039, + 0.05510669946670532, + 0.0006870969082228839, + -0.018449246883392334, + -0.006974192801862955, + -0.016634894534945488, + 0.09963706135749817, + 0.10187654942274094, + -0.05363721773028374, + 0.004488612990826368, + 0.04933210834860802, + -0.0481671541929245, + -0.10353617370128632, + -0.0483403205871582, + -0.03293677791953087, + 0.0447167232632637, + 0.0352257564663887, + 0.06335347145795822, + -0.07977472245693207, + -0.07051192224025726, + 0.005527705419808626, + -0.008241778239607811, + -0.017155544832348824, + 0.07308992743492126, + -0.036747243255376816, + -0.0029852765146642923, + 0.05841777101159096, + 0.003631225321441889, + -0.054413508623838425, + -0.0462188646197319, + -0.008916197344660759, + -0.01892581582069397, + 0.01492517814040184, + 0.041739825159311295, + 0.002820343477651477, + -0.026362530887126923, + -0.040571317076683044, + -0.04848013445734978, + 0.04177415370941162, + -0.021321851760149002, + 0.0174848772585392, + 0.013200412504374981, + -0.052704449743032455, + 0.03282485529780388, + -0.022626731544733047, + 0.026917068287730217, + -0.037593819200992584, + -0.12502913177013397, + -0.06567235291004181, + 0.08534794300794601, + 0.08046432584524155, + -0.08057548105716705, + 0.018334832042455673, + 0.03487824276089668, + -0.06636273115873337, + -0.04417887702584267, + 0.02353028766810894, + 0.06945069134235382, + -0.01288239099085331, + -0.018935471773147583, + 0.06631967425346375, + -0.022065162658691406, + -0.003226272761821747, + -0.04184708371758461, + 0.022825460880994797, + -0.04817579314112663, + 0.03802451118826866, + -0.019796740263700485, + -0.008889748714864254, + 0.06561778485774994, + 0.013963183388113976, + -0.14306750893592834, + -0.04675435647368431, + 0.056656062602996826, + 0.02536138705909252, + -0.04277043789625168, + 0.003996805753558874, + -0.03724506124854088, + -0.06202496960759163, + 0.03140699863433838, + -0.013102744705975056, + -0.049415331333875656, + -0.0228237546980381, + 0.08647391945123672, + 0.008815567009150982, + 0.051174815744161606, + -0.015451387502253056, + 0.005438019521534443, + -0.018265506252646446, + 0.028267791494727135, + -0.049181994050741196, + 0.05836255103349686, + 0.06322834640741348, + 0.011572233401238918, + 0.011948111467063427, + -1.710558628076342e-08, + -0.032038912177085876, + -0.09067139774560928, + 0.030400238931179047, + -0.009327754378318787, + 0.019449207931756973, + 0.010738869197666645, + -0.025233887135982513, + -0.0712701827287674, + 0.026600297540426254, + -0.0938473716378212, + -0.05333095043897629, + -0.01623533107340336, + -0.09369868040084839, + -0.03712259232997894, + -0.005807208828628063, + -0.028310775756835938, + -0.08450016379356384, + 0.007496219128370285, + 0.015159165486693382, + -0.05780637636780739, + -0.029730867594480515, + 0.09691454470157623, + -0.006854467559605837, + 0.02224878780543804, + 0.039798885583877563, + -0.021515794098377228, + -0.01650931127369404, + 0.003940106835216284, + -0.02881220355629921, + 0.06687196344137192, + -0.03585877642035484, + -0.008789257146418095, + 0.049130961298942566, + -0.02207850106060505, + -0.04215078055858612, + -0.049966175109148026, + -0.03274650499224663, + -0.03858593851327896, + -0.003437108127400279, + 0.07938086241483688, + 0.09963100403547287, + -0.019419169053435326, + -0.006403669714927673, + -0.018324581906199455, + -0.014274793677031994, + -0.010877172462642193, + 0.06812727451324463, + -0.01639191061258316, + -0.0498778373003006, + -0.04922783374786377, + 0.00024700615904293954, + 0.010841933079063892, + -0.005317894276231527, + 0.016433440148830414, + -0.08558046817779541, + -0.14346572756767273, + 0.05276761204004288, + 0.11385010927915573, + 0.03970347344875336, + 0.04325372725725174, + 0.13257406651973724, + 0.0069913119077682495, + 0.011546291410923004, + 0.029138682410120964 + ], + "wheelchair-bold||handicapped,medical,disabled,differently abled,accessible,accessibility,a11y": [ + 0.016738947480916977, + -0.04479128122329712, + -0.0031224617268890142, + 0.00266469269990921, + -0.056199222803115845, + 0.010567370802164078, + 0.03040749579668045, + 0.008841115050017834, + -0.05576302483677864, + -0.025024013593792915, + 0.051568448543548584, + 0.07917790859937668, + 0.05176603049039841, + -0.015115559101104736, + -0.0309088546782732, + 0.0007955310284160078, + 0.05484417825937271, + -0.018703650683164597, + -0.03110956773161888, + 0.04468248039484024, + 0.04157519340515137, + 0.09430351853370667, + -0.005147368647158146, + 0.028922218829393387, + -0.05869540572166443, + -0.025777718052268028, + 0.00015572202391922474, + 0.013859796337783337, + 0.0620015449821949, + -0.04665149748325348, + -0.05280252546072006, + -0.019714171066880226, + 0.022955331951379776, + -0.01719813235104084, + 0.015716146677732468, + -0.027518922463059425, + 0.02065715566277504, + 0.0050366767682135105, + -0.001582329161465168, + -0.03897350654006004, + -0.08098244667053223, + -0.09128141403198242, + 0.0011230597738176584, + -0.02430114336311817, + -0.0016735624521970749, + -0.03442990034818649, + -0.04298367351293564, + -0.05461358278989792, + 0.029332878068089485, + 0.032756298780441284, + -0.003253718838095665, + -0.07047493010759354, + 0.00128271768335253, + 0.014372065663337708, + 0.013680355623364449, + 0.0027786444406956434, + -0.0608595535159111, + 0.003677831729874015, + -0.0027008340694010258, + -0.0028886431828141212, + -0.017947299405932426, + -0.016367660835385323, + 0.058924850076436996, + 0.041535601019859314, + 0.04889732971787453, + 0.04436115548014641, + -0.037735238671302795, + -0.1730310618877411, + -0.026701435446739197, + -0.0251309797167778, + -0.02829650044441223, + -0.024142412468791008, + 0.06409966200590134, + -0.015057273209095001, + -0.02049443870782852, + -0.037188153713941574, + 0.04836537316441536, + -0.022191308438777924, + 0.06075482815504074, + -0.053163040429353714, + -0.045759111642837524, + 0.054844100028276443, + -0.04772404581308365, + 0.050458624958992004, + 0.01890585757791996, + 0.06099525839090347, + -0.09970910847187042, + 0.0279668141156435, + -0.03913203254342079, + -0.01972326450049877, + -0.030307848006486893, + -0.027774568647146225, + 0.06448797136545181, + -0.030758105218410492, + -0.06632662564516068, + -0.040202513337135315, + 0.12265745550394058, + -0.017412161454558372, + -0.04988190159201622, + 0.06640680134296417, + 0.003313393099233508, + 0.036243241280317307, + 0.10047221183776855, + 0.05918993800878525, + -0.014722243882715702, + -0.04314378648996353, + 0.03433491289615631, + -0.05479499325156212, + -0.041922084987163544, + 0.01138355489820242, + 0.011935412883758545, + -0.09637974947690964, + -0.017336813732981682, + 0.009902767837047577, + -0.08757758140563965, + -0.005507537629455328, + -0.12149878591299057, + -0.06204703822731972, + 0.10306165367364883, + -0.010911907069385052, + -0.03785073757171631, + 0.0004405694198794663, + 0.04741094633936882, + -0.024588288739323616, + -0.0024847183376550674, + -0.004030758980661631, + -0.03869921341538429, + -1.9496578488715607e-33, + -0.009492194280028343, + -0.004622494336217642, + -0.009448750875890255, + 0.034320395439863205, + 0.06844579428434372, + -0.022241797298192978, + -0.062447138130664825, + -0.029467467218637466, + -0.03346053883433342, + 0.002814322244375944, + 0.07026831060647964, + 0.07532620429992676, + 0.023938443511724472, + -0.006825561169534922, + 0.012832223437726498, + -0.026164216920733452, + 0.008038265630602837, + 0.01771506853401661, + -0.1548251509666443, + 0.023635389283299446, + 0.036163538694381714, + 0.08299240469932556, + 0.007481520529836416, + 0.03622803837060928, + -0.018461313098669052, + -0.014245839789509773, + -0.009545372799038887, + -0.0019226646982133389, + 0.09040380269289017, + 0.03215567022562027, + -0.02897433005273342, + 0.06217304617166519, + -0.07547491788864136, + -0.07529784739017487, + 0.00536384666338563, + -0.07298075407743454, + -0.01140513177961111, + -0.05944841727614403, + -0.0074369534850120544, + -0.0016914339503273368, + -0.08464634418487549, + -0.00794648751616478, + 0.022692818194627762, + -0.04976503923535347, + 0.014592604711651802, + 0.10778924822807312, + 0.06258343160152435, + -0.019580930471420288, + -0.03771621733903885, + -0.01681952178478241, + -0.07818381488323212, + 0.07838404178619385, + -0.059187158942222595, + -0.1300942301750183, + 0.019067421555519104, + -0.07060404121875763, + -0.06083729490637779, + 0.08699557930231094, + 0.00261863274499774, + 0.02622535452246666, + 0.09530262649059296, + 0.03092384524643421, + 0.06358427554368973, + -0.01649182289838791, + -0.03478604555130005, + -0.05039283633232117, + -0.024723542854189873, + -0.02286955900490284, + 0.09276405721902847, + 0.002029725117608905, + 0.044822681695222855, + 0.006923119071871042, + 0.052813056856393814, + 0.08498885482549667, + -0.024040767922997475, + 0.018279995769262314, + 0.025100460276007652, + -0.013465524651110172, + -0.023781640455126762, + -0.09236098825931549, + -0.10835590213537216, + 0.03717755898833275, + -0.07069814205169678, + 0.06972427666187286, + 0.04047941789031029, + -0.016566045582294464, + -0.0486670657992363, + -0.05189599096775055, + -0.04377911612391472, + -0.053061533719301224, + -0.06001138687133789, + 0.05231728032231331, + -0.0338541604578495, + -0.06400033831596375, + -0.06838560104370117, + -2.0904695824725932e-33, + 0.03929919749498367, + 0.041797395795583725, + 0.021957552060484886, + -0.0924854502081871, + 0.018474156036973, + -0.024172689765691757, + 0.010231384076178074, + -0.005592520348727703, + 0.08434408158063889, + 0.04084210470318794, + -0.05962270125746727, + 0.005642554257065058, + -0.006563681643456221, + -0.05390569567680359, + 0.003033648943528533, + -0.0076582361944019794, + -0.0621868260204792, + 0.04907872527837753, + -0.029015732929110527, + 0.12133704870939255, + 0.028327465057373047, + 0.07978153973817825, + -0.03568870946764946, + 0.07617781311273575, + -0.04159708321094513, + 0.05621396005153656, + -0.023092001676559448, + -0.006946645211428404, + -0.07402718812227249, + -0.013333294540643692, + -0.06784950941801071, + -0.011055839248001575, + 0.02410217933356762, + 0.03250545263290405, + -0.04376452416181564, + -0.012544326484203339, + -0.09865299612283707, + -0.0999787300825119, + -0.09474263340234756, + 0.025359613820910454, + 0.04809451848268509, + -0.010796375572681427, + 0.05198047310113907, + 0.0454668253660202, + 0.1048983633518219, + -0.014484716579318047, + -0.10110212862491608, + -0.048756759613752365, + 0.05181310698390007, + -0.02400556020438671, + 0.026685912162065506, + -0.0024250256828963757, + 0.034669019281864166, + 0.03400304168462753, + -0.010923436842858791, + -0.033012744039297104, + 0.0458759143948555, + -0.0995471328496933, + -0.0461982823908329, + 0.03462580591440201, + 0.008866887539625168, + 0.02298598922789097, + -0.061802905052900314, + 0.08766395598649979, + 0.04061780869960785, + -0.06437437236309052, + -0.035238344222307205, + -0.04722924157977104, + -0.01735508069396019, + 0.016969870775938034, + 0.08326461166143417, + -0.06675495207309723, + 0.03082825429737568, + -0.024483373388648033, + 0.0554511658847332, + -0.0029026633128523827, + 0.03831123188138008, + 0.047646623104810715, + -0.014712839387357235, + -0.004407078959047794, + -0.0022991381119936705, + -0.02512575313448906, + 0.04528357461094856, + 0.0911102369427681, + -0.0357489287853241, + 0.03531419485807419, + 0.03802856430411339, + -0.05353338271379471, + 0.021558310836553574, + 0.006800803355872631, + 0.0097018638625741, + 0.09635163098573685, + -0.047524068504571915, + 0.04552936926484108, + -0.03962377831339836, + -2.4542156751294897e-08, + 0.05530858039855957, + 0.021143043413758278, + -0.0472816601395607, + -0.05519852414727211, + -0.05277524143457413, + -0.03671941161155701, + -0.08476633578538895, + -0.0025065091904252768, + -0.07698678225278854, + 0.044107869267463684, + -0.0473182387650013, + 0.013450891710817814, + 0.012731782160699368, + 0.004047947004437447, + 0.08849439769983292, + 0.08841206133365631, + -0.09959187358617783, + 0.10242108255624771, + -0.03854988515377045, + 0.015163756906986237, + -0.02123572863638401, + -0.030865823850035667, + 0.01145566813647747, + 0.022350938990712166, + -0.009977765381336212, + 0.0033808592706918716, + -0.09639618545770645, + -0.05237327888607979, + -0.0605032853782177, + 0.045027848333120346, + 0.06667207926511765, + 0.07618378102779388, + 0.017031095921993256, + -0.010290372185409069, + -0.031010659411549568, + -0.038716960698366165, + 0.005838649347424507, + -0.021392080932855606, + 0.0027929439675062895, + 0.08779794722795486, + 0.026546232402324677, + -0.06706241518259048, + -0.011951352469623089, + 0.026387089863419533, + 0.025611931458115578, + 0.010889390483498573, + 0.005607279017567635, + -0.03251103684306145, + -0.049833767116069794, + -0.014119301922619343, + 0.0060118273831903934, + -0.008677627891302109, + 0.07545937597751617, + -0.006783822551369667, + 0.0070794615894556046, + 0.04400154575705528, + 0.042191386222839355, + 0.03858006373047829, + -0.057231418788433075, + 0.055511802434921265, + 0.20126554369926453, + 0.11434603482484818, + 0.06199662759900093, + -0.006822042167186737 + ], + "wheelchair-motion-bold||handicapped,medical,disabled,differently abled,accessible,accessibility,a11y": [ + 0.0044798292219638824, + -0.058516617864370346, + -0.005166142247617245, + -0.018879730254411697, + -0.06047975644469261, + 0.02872774563729763, + 0.026298968121409416, + 0.014427748508751392, + -0.044212862849235535, + -0.010226256214082241, + 0.06487646698951721, + 0.09074825048446655, + 0.04847671091556549, + -0.00877535529434681, + -0.04770445451140404, + 0.016838179901242256, + 0.05199901759624481, + 0.014858859591186047, + -0.02845284529030323, + 0.06828693300485611, + 0.04642109572887421, + 0.08502919226884842, + 0.00940792914479971, + 0.037994325160980225, + -0.06905413419008255, + -0.005621758289635181, + -0.0019444255158305168, + 0.02566739171743393, + 0.05742007866501808, + -0.04348340630531311, + -0.053932394832372665, + -0.002900397637858987, + 0.013644027523696423, + -0.012991786934435368, + -0.003301996039226651, + -0.019621288403868675, + 0.009192963130772114, + -0.015884993597865105, + -0.031230827793478966, + -0.024548964574933052, + -0.0753888264298439, + -0.08825331926345825, + 0.007721967529505491, + -0.038546424359083176, + 0.016731342300772667, + 0.0020847099367529154, + -0.0316561758518219, + -0.06081787869334221, + 0.01415601372718811, + 0.04376678541302681, + -0.01260081771761179, + -0.06191188469529152, + 0.019015396013855934, + 0.02409956604242325, + 0.010936913080513477, + 0.004510888829827309, + -0.044836338609457016, + 0.01425236277282238, + 0.023559298366308212, + -0.01790941320359707, + 0.025986280292272568, + -0.011779798194766045, + 0.04781069606542587, + 0.05056542158126831, + 0.029815679416060448, + 0.031142158433794975, + -0.046080853790044785, + -0.16566821932792664, + -0.023181991651654243, + -0.01028413139283657, + -0.04134503751993179, + -0.045865729451179504, + 0.07500877976417542, + -0.02039353922009468, + -0.016013722866773605, + -0.05816436558961868, + 0.04847598075866699, + -0.021495990455150604, + 0.04169236868619919, + -0.0801946222782135, + -0.022584671154618263, + 0.01610702835023403, + -0.05722116306424141, + 0.0416756197810173, + 0.011758465319871902, + 0.06707563251256943, + -0.09932412952184677, + 0.06716328114271164, + -0.01177049707621336, + -0.012617192231118679, + -0.04502340406179428, + -0.029166435822844505, + 0.03916563466191292, + -0.05290960520505905, + -0.054041534662246704, + -0.04280884936451912, + 0.08279980719089508, + -0.024766433984041214, + -0.03046257421374321, + 0.0519101545214653, + 0.017642084509134293, + 0.031721409410238266, + 0.09648219496011734, + 0.08814915269613266, + -0.014653325080871582, + -0.05084415525197983, + 0.044261153787374496, + -0.04642461985349655, + -0.027912870049476624, + 0.05362338200211525, + 0.010307860560715199, + -0.10226500034332275, + -0.009316579438745975, + 0.00980599969625473, + -0.07475938647985458, + 0.004617888480424881, + -0.1507176160812378, + -0.05284995213150978, + 0.10455939918756485, + -0.013790343888103962, + -0.014906528405845165, + -0.011412259191274643, + 0.0404115691781044, + -0.02433260716497898, + -0.010529039427638054, + -0.022855309769511223, + -0.03615579754114151, + -2.895217423149347e-33, + -0.008544301614165306, + -0.013906106352806091, + 0.021958347409963608, + 0.02229151502251625, + 0.06726476550102234, + -0.04570147767663002, + -0.06736303865909576, + -0.0409671887755394, + -0.009993933141231537, + 0.012265970930457115, + 0.0711510106921196, + 0.06949702650308609, + 0.03172393888235092, + 0.0002492786443326622, + 0.0030977532733231783, + -0.040790196508169174, + 0.01706467755138874, + 0.013766132295131683, + -0.14562161266803741, + 0.04821012541651726, + 0.06182064488530159, + 0.08369919657707214, + 0.007837070152163506, + 0.02934419922530651, + -0.029021713882684708, + 0.0015795761719346046, + -0.012485622428357601, + 0.002478219335898757, + 0.08481717854738235, + 0.031214825809001923, + -0.03612331673502922, + 0.060314975678920746, + -0.08951617032289505, + -0.08081021904945374, + 0.030341755598783493, + -0.06778128445148468, + -0.013336182571947575, + -0.07316035032272339, + 0.0006990166148170829, + 0.003983345814049244, + -0.09567470103502274, + -0.02060725726187229, + 0.010128612630069256, + -0.0646873489022255, + -0.010267935693264008, + 0.09664719551801682, + 0.08265338838100433, + -0.010124092921614647, + -0.0533408597111702, + 0.01652584783732891, + -0.07524840533733368, + 0.07554374635219574, + -0.056716736406087875, + -0.1462693065404892, + 0.03799178823828697, + -0.0606071837246418, + -0.06359022855758667, + 0.07720960676670074, + -0.01794593781232834, + 0.026915661990642548, + 0.0805865228176117, + 0.03668995946645737, + 0.0685894563794136, + -0.0531454011797905, + -0.028255153447389603, + -0.05127575248479843, + -0.027748096734285355, + -0.0015703507233411074, + 0.09228682518005371, + 0.01097683236002922, + 0.020886478945612907, + -0.0012569372775033116, + 0.05221769958734512, + 0.07778272032737732, + 0.004121644422411919, + 0.0134748425334692, + 0.008816245943307877, + -0.017949672415852547, + -0.03806052729487419, + -0.09643296897411346, + -0.13843072950839996, + 0.015043986029922962, + -0.0537133514881134, + 0.06144463270902634, + 0.03854013979434967, + -0.016643639653921127, + -0.05096545070409775, + -0.04129786044359207, + -0.06894077360630035, + -0.05166955664753914, + -0.05329155921936035, + 0.04524284601211548, + -0.0460333414375782, + -0.025498362258076668, + -0.060870107263326645, + -1.3783165338360651e-33, + 0.021975558251142502, + 0.05864659324288368, + 0.005964852869510651, + -0.06731991469860077, + 0.006207878701388836, + -0.012481593526899815, + 0.007297750096768141, + -0.014184731058776379, + 0.09903063625097275, + 0.04700135439634323, + -0.06584184616804123, + -0.017267143353819847, + -0.0112555380910635, + -0.049206655472517014, + 0.012675127945840359, + 0.0033356626518070698, + -0.04904242977499962, + 0.04322010278701782, + -0.0289886686950922, + 0.13716065883636475, + 0.030113982036709785, + 0.09517126530408859, + -0.02853114902973175, + 0.06994453072547913, + -0.02194468304514885, + 0.06139707565307617, + 0.012025173753499985, + -0.004880502354353666, + -0.06956617534160614, + -0.010691482573747635, + -0.07097254693508148, + -0.017437070608139038, + 0.02455565705895424, + 0.024449821561574936, + -0.04745129123330116, + -0.004983953200280666, + -0.09997428953647614, + -0.0847143605351448, + -0.09362253546714783, + -0.0022280048578977585, + 0.05394602194428444, + 0.007669104263186455, + 0.07319936156272888, + 0.03932977467775345, + 0.08987472951412201, + -0.004214197397232056, + -0.11150295287370682, + -0.010464536026120186, + 0.014416109770536423, + -0.021283136680722237, + 0.01420819852501154, + 0.010520764626562595, + 0.03178805485367775, + 0.009593755938112736, + -0.005539326928555965, + -0.013545311987400055, + 0.022569749504327774, + -0.09889721870422363, + -0.05756381154060364, + 0.0112224156036973, + 0.01925918087363243, + 0.03768590837717056, + -0.08462313562631607, + 0.07923834770917892, + 0.04053109884262085, + -0.024693595245480537, + -0.03178328648209572, + -0.06568259745836258, + -0.00991384219378233, + 0.010686741210520267, + 0.07186663150787354, + -0.04568945989012718, + 0.038527507334947586, + -0.026767870411276817, + 0.051178328692913055, + -0.015426759608089924, + 0.06334859877824783, + 0.04834970831871033, + -0.007627164479345083, + -0.027588460594415665, + 0.0040785628370940685, + -0.024736708030104637, + 0.06022146716713905, + 0.08366357535123825, + -0.06799473613500595, + 0.05440420284867287, + -0.004793437663465738, + -0.053919412195682526, + 0.015282297506928444, + 0.007656729780137539, + 0.007241025101393461, + 0.11736372858285904, + -0.03568920120596886, + 0.060369037091732025, + -0.03557361289858818, + -2.5373127598982137e-08, + 0.013822994194924831, + 0.03223482519388199, + -0.04437579587101936, + -0.08206911385059357, + -0.05582638084888458, + -0.01294909231364727, + -0.06579118221998215, + 0.010691645555198193, + -0.06975769996643066, + 0.026338670402765274, + -0.036901772022247314, + 0.0025040453765541315, + 0.04983843117952347, + 0.018444199115037918, + 0.07161803543567657, + 0.08091898262500763, + -0.09774556010961533, + 0.11396312713623047, + -0.054355915635824203, + 0.038918111473321915, + -0.0010737013071775436, + -0.045591894537210464, + 0.010671352036297321, + 0.004086647182703018, + -0.018283601850271225, + -0.00784162525087595, + -0.09459793567657471, + -0.06131841242313385, + -0.058917272835969925, + 0.028403403237462044, + 0.06314165145158768, + 0.07912755012512207, + 0.016500772908329964, + -0.02028544992208481, + -0.05430392175912857, + -0.03048301488161087, + 0.01909589394927025, + -0.017321981489658356, + -0.009558324702084064, + 0.08567774295806885, + 0.004695858806371689, + -0.023889636620879173, + -0.005589296109974384, + 0.036680325865745544, + 0.02060903236269951, + 0.003803952829912305, + 0.005352319683879614, + -0.04894377663731575, + -0.04125669226050377, + -0.02312762849032879, + 0.005166993010789156, + -0.01526743546128273, + 0.07007165253162384, + 0.009816762991249561, + 0.02641591615974903, + 0.07355835288763046, + 0.038627833127975464, + 0.024359868839383125, + -0.07885770499706268, + 0.04189993068575859, + 0.1704198271036148, + 0.09683655202388763, + 0.04880135506391525, + -0.006025122012943029 + ], + "wifi-high-bold||wireless,internet,network,connection,connectivity": [ + 0.007317907176911831, + 0.007415345404297113, + 0.0024171399418264627, + 0.015552500262856483, + -0.012959961779415607, + -0.04046070575714111, + 0.05380996689200401, + -0.05892767012119293, + -0.019385870546102524, + -0.030581343919038773, + 0.022209450602531433, + 0.10560498386621475, + 0.005265836138278246, + -0.052727971225976944, + 0.04207046329975128, + 0.020311668515205383, + 0.043563056737184525, + -0.10355276614427567, + -0.07151816040277481, + -0.04551694914698601, + 0.002501073759049177, + -0.03544018790125847, + 0.039498262107372284, + -0.010841039009392262, + 0.15245892107486725, + -0.00863630697131157, + 0.11263905465602875, + 0.017085915431380272, + -0.04112913832068443, + -0.023685164749622345, + -0.018185172230005264, + -0.023912105709314346, + 0.03441861271858215, + -0.04347004368901253, + 0.006971098482608795, + -0.08209914714097977, + -0.02597385086119175, + 0.0732649564743042, + 0.01304153073579073, + 0.012463904917240143, + 0.006841593887656927, + -0.07509276270866394, + 0.01550659816712141, + 0.11678551882505417, + -0.042213618755340576, + 0.0010201649274677038, + -0.06600456684827805, + 0.03370595723390579, + 0.007555752992630005, + -0.08659280836582184, + 0.03979477658867836, + -0.0512361079454422, + -0.08736167848110199, + 0.07887651771306992, + 0.0306251160800457, + 0.018797561526298523, + -0.05681520700454712, + 0.028006134554743767, + 0.09436190873384476, + -0.033786047250032425, + 0.0567932054400444, + 0.004549256060272455, + 0.014835136011242867, + 0.028967661783099174, + 0.05147619545459747, + 0.005778620485216379, + 0.0032098584342747927, + 0.0641617700457573, + -0.03466007858514786, + 0.034054193645715714, + 0.025710878893733025, + 0.06614255160093307, + -0.01572357676923275, + -0.03420891985297203, + 0.03919985890388489, + 0.014821247197687626, + 0.03896964341402054, + 0.049681127071380615, + 0.0026499240193516016, + -0.007889489643275738, + 0.02496076375246048, + 0.012251872569322586, + 0.006360627245157957, + -0.03475360572338104, + 0.08431240916252136, + 0.011081651784479618, + -0.05424296110868454, + -0.07227016240358353, + -0.024778883904218674, + -0.04010222479701042, + -0.07509133964776993, + -0.0004128271830268204, + -0.03306366503238678, + 0.0625900849699974, + -0.09315120428800583, + 0.025785503908991814, + 0.031221473589539528, + -0.119126096367836, + -0.07389337569475174, + 0.09852336347103119, + 0.04227811098098755, + 0.00667318282648921, + 0.0810910016298294, + 0.01326233521103859, + -0.005751356016844511, + -0.03457945957779884, + 0.02461325004696846, + 0.075599305331707, + 0.03591256961226463, + -0.005238484125584364, + -0.03070000186562538, + -0.07443605363368988, + -0.024349350482225418, + 0.01833081990480423, + -0.041053082793951035, + -0.003652941668406129, + 0.003791647031903267, + 0.06309119611978531, + 0.08272991329431534, + 0.0308596920222044, + -0.08002009987831116, + -0.055147964507341385, + -0.011262441985309124, + -0.041968394070863724, + 0.05167108029127121, + 0.015787074342370033, + 0.026031356304883957, + -7.287196211304528e-34, + 0.07718208432197571, + 0.07195347547531128, + -0.10052667558193207, + 0.06112082302570343, + 0.022860819473862648, + 0.0074446494691073895, + -0.02669369988143444, + -0.07403873652219772, + -0.028223583474755287, + 0.08123110979795456, + -0.03362549841403961, + 0.033220987766981125, + -0.06872300058603287, + 0.05057147890329361, + 0.0626884177327156, + -0.0977928414940834, + 0.014738881960511208, + -0.001866644830442965, + -0.007922464050352573, + 0.07872876524925232, + -0.014099479652941227, + -0.06869754940271378, + -0.05129729583859444, + -0.06551583856344223, + 0.032568443566560745, + -0.04440566152334213, + 0.04797811433672905, + 0.015293783508241177, + -0.02396526001393795, + 0.01364043727517128, + -0.009505150839686394, + -0.007780431304126978, + 0.03260231018066406, + -0.04256710410118103, + -0.019900893792510033, + 0.022925999015569687, + -0.09071964770555496, + -0.014812350273132324, + 0.024375442415475845, + 0.04638362303376198, + -0.04385973513126373, + -0.01061013713479042, + -0.08978080749511719, + 0.011394981294870377, + 0.09264291077852249, + 0.04653186723589897, + -0.021642351523041725, + -0.019377434626221657, + -0.06304562091827393, + 0.08540321886539459, + -0.1017233356833458, + -0.012043464928865433, + 0.01214954536408186, + -0.00617980444803834, + 0.004183201584964991, + 0.05147555097937584, + 0.020684918388724327, + 0.0708773136138916, + 0.07354892790317535, + -0.017004387453198433, + 0.008894464001059532, + -0.003181908745318651, + -0.020417548716068268, + -0.047212809324264526, + 0.0076880003325641155, + 0.001595247769728303, + -0.026912054046988487, + 0.06374768912792206, + 0.0026885326951742172, + 0.039720501750707626, + 0.01776135340332985, + 0.017969703301787376, + 0.039126262068748474, + -0.0034114771988242865, + 0.006335508078336716, + -0.0210557971149683, + -0.054568205028772354, + 0.048026494681835175, + -0.05286036804318428, + -0.0009869445348158479, + -0.02069588005542755, + 0.027499672025442123, + -0.020435234531760216, + 0.07898381352424622, + -0.022351505234837532, + -0.021446023136377335, + -0.0695044994354248, + -0.13104486465454102, + -0.07371718436479568, + 0.07990510761737823, + -0.008131558075547218, + 0.13795621693134308, + -0.03273175284266472, + -0.010484611615538597, + -0.06442044675350189, + 1.0914211351826803e-34, + 0.00333564099855721, + 0.08782806992530823, + 0.014828706160187721, + -0.0653420016169548, + -0.07382816821336746, + -0.0153059596195817, + 0.046093180775642395, + 0.038663651794195175, + -0.021605655550956726, + 0.051632754504680634, + 0.11578488349914551, + -0.03476467356085777, + -0.04058009386062622, + -0.03904913738369942, + 0.014618259854614735, + -0.03680983930826187, + 0.04072699695825577, + 0.017355890944600105, + 0.04454340785741806, + 0.006620432715862989, + -0.007204764522612095, + -0.04967904090881348, + -0.03450264409184456, + -0.021327469497919083, + 0.02030489780008793, + 0.01908055692911148, + -0.008830126374959946, + 0.010477191768586636, + -0.08207353949546814, + 0.0461885966360569, + -0.05399797484278679, + -0.011842280626296997, + 0.08121247589588165, + 0.05276629701256752, + 0.02332252822816372, + 0.09831503033638, + 0.02016746811568737, + -0.040047936141490936, + 0.01918131485581398, + -0.06310553103685379, + 0.0682051032781601, + 0.04368770867586136, + 0.019498886540532112, + 0.010144765488803387, + -0.006318549159914255, + -0.07581422477960587, + -0.07580684870481491, + -0.07721847295761108, + -0.0983690693974495, + 0.005454456899315119, + 0.08879731595516205, + 0.00033793688635341823, + -0.05545544996857643, + 0.06101379916071892, + -0.02562628500163555, + 0.02855299599468708, + -0.0025456647854298353, + -0.0036402575206011534, + -0.0631100982427597, + 0.058555807918310165, + 0.04524800926446915, + -0.04200541973114014, + -0.043380193412303925, + 0.07232995331287384, + 0.04973943531513214, + -0.038123968988657, + 0.05663764104247093, + -0.04020111635327339, + 0.044637903571128845, + 0.07771901786327362, + -0.059534043073654175, + -0.038583625108003616, + 0.054126035422086716, + 0.027843037620186806, + 0.0704069659113884, + -0.0814487412571907, + 0.05146091803908348, + 0.10319022089242935, + -0.046969152987003326, + 0.02880835346877575, + -0.032567426562309265, + 0.0823742225766182, + -0.07009728252887726, + -0.010234207846224308, + -0.03265562281012535, + 0.016950814053416252, + -0.02114858105778694, + -0.004610465839505196, + -0.01244489848613739, + -0.007748010102659464, + -0.03995847702026367, + 0.021430417895317078, + -0.07456129789352417, + 0.0033249836415052414, + -0.02714684046804905, + -1.9054390065775806e-08, + -0.08176527172327042, + -0.007239366881549358, + -0.04852097108960152, + -0.02123183198273182, + 0.040314141660928726, + -0.05746839940547943, + 0.03179037198424339, + -0.09990470856428146, + -0.012313815765082836, + -0.03735910728573799, + -0.028018048033118248, + 0.059501275420188904, + -0.14632350206375122, + -0.003759098472073674, + 0.07518181204795837, + -0.010564535856246948, + -0.10506104677915573, + -0.015694016590714455, + -0.026668773964047432, + -0.038066763430833817, + 0.015300304628908634, + 0.006299654021859169, + 0.04687296226620674, + 0.040398284792900085, + 0.10152384638786316, + 0.06526347249746323, + -0.004566919058561325, + 0.022659774869680405, + 0.031394440680742264, + 0.06687557697296143, + -0.043915148824453354, + -0.00806861836463213, + -0.02927672304213047, + -0.003777944715693593, + -0.13105793297290802, + 0.02215859293937683, + -0.06024862825870514, + 0.012475953437387943, + -0.03848568722605705, + 0.09952282160520554, + -0.055483490228652954, + -0.04226832464337349, + 0.017209844663739204, + -0.017673129215836525, + 0.01872941292822361, + 0.005803590174764395, + 0.0089151905849576, + 0.07694318890571594, + 0.011619002558290958, + -0.08084113895893097, + -0.0345454216003418, + -0.009287097491323948, + 0.030976977199316025, + -0.07854994386434555, + -0.07061190158128738, + -0.061015546321868896, + 0.09299439191818237, + 0.012286609038710594, + -0.05356698855757713, + 0.03665159270167351, + 0.10462700575590134, + -0.056726619601249695, + -0.013117614202201366, + -0.0019337713019922376 + ], + "wifi-low-bold||wireless,internet,network,connection,connectivity": [ + 0.026968911290168762, + 0.025517243891954422, + -0.00412004766985774, + 0.019985539838671684, + -0.01808970421552658, + -0.023856937885284424, + 0.04755455628037453, + -0.04506543651223183, + -0.022614920511841774, + -0.04317789897322655, + 0.04912722855806351, + 0.07658639550209045, + 0.026703180745244026, + -0.04479162022471428, + 0.03322751820087433, + 0.023385759443044662, + 0.043163932859897614, + -0.09684247523546219, + -0.062239278107881546, + -0.034500330686569214, + 0.0048160976730287075, + -0.02344594895839691, + 0.038005612790584564, + -0.028803711757063866, + 0.14145773649215698, + -0.01086020190268755, + 0.11717070639133453, + 0.017524709925055504, + -0.03155751898884773, + -0.01747438684105873, + -0.017308952286839485, + -0.034095291048288345, + 0.04257488623261452, + -0.04389313608407974, + 0.02145262435078621, + -0.0909649133682251, + 0.009172542952001095, + 0.0976405069231987, + 0.014232965186238289, + 0.021726226434111595, + -0.00644361088052392, + -0.06171117722988129, + -0.005437635816633701, + 0.12779000401496887, + -0.0427146852016449, + -0.00900061521679163, + -0.07357476651668549, + 0.026491273194551468, + -0.008384901098906994, + -0.09899129718542099, + 0.04492584988474846, + -0.04245290905237198, + -0.11422715336084366, + 0.08481287956237793, + 0.01966213621199131, + 0.012404724955558777, + -0.06664905697107315, + 0.03246824070811272, + 0.08575645834207535, + -0.03064044564962387, + 0.08257517218589783, + -0.02180936373770237, + 0.0032588141039013863, + 0.03044581599533558, + 0.0394858680665493, + 0.0016333621460944414, + 0.00037619989598169923, + 0.06856954842805862, + -0.0350290983915329, + 0.025434041395783424, + 0.008151769638061523, + 0.06673743575811386, + -0.008439800702035427, + -0.01616663485765457, + 0.012623071670532227, + 0.005576072260737419, + 0.04846952110528946, + 0.052118659019470215, + -0.002153389621526003, + -0.005143116693943739, + 0.01305737067013979, + -0.0007729872595518827, + -0.01311320997774601, + -0.03481392189860344, + 0.059669192880392075, + 0.003509791800752282, + -0.04673140123486519, + -0.07425397634506226, + -0.014377095736563206, + -0.044441286474466324, + -0.0649300366640091, + 0.014307346194982529, + -0.03955218940973282, + 0.04702329635620117, + -0.07968994975090027, + 0.022042324766516685, + 0.05070037022233009, + -0.10558326542377472, + -0.08848843723535538, + 0.11027740687131882, + 0.024389224126935005, + 0.0019036178709939122, + 0.0704185888171196, + -0.004580663051456213, + -0.006867046467959881, + -0.02574901096522808, + 0.02251184731721878, + 0.05510170757770538, + 0.022406384348869324, + -0.005817560479044914, + -0.017701519653201103, + -0.08330706506967545, + -0.027638455852866173, + -0.0011923160636797547, + -0.044772595167160034, + -0.00954804103821516, + 0.005592983216047287, + 0.05811677128076553, + 0.08644489198923111, + 0.05027884989976883, + -0.09271092712879181, + -0.059214044362306595, + -0.0037305792793631554, + -0.043998975306749344, + 0.047555167227983475, + 0.016976356506347656, + 0.01665300875902176, + -4.000564515928299e-34, + 0.09833715111017227, + 0.06137988343834877, + -0.10167332738637924, + 0.046542223542928696, + 0.04981532320380211, + 0.01741081289947033, + -0.037828411906957626, + -0.08717410266399384, + -0.02289533242583275, + 0.0906955823302269, + -0.02645205147564411, + 0.015187548473477364, + -0.0729399099946022, + 0.026980163529515266, + 0.07615861296653748, + -0.09333296865224838, + 0.02453208714723587, + -0.02004246599972248, + 0.018437819555401802, + 0.0811900869011879, + -0.025677135214209557, + -0.06344804912805557, + -0.05159773305058479, + -0.06256662309169769, + 0.028255000710487366, + -0.051699694246053696, + 0.0500769279897213, + -0.0010964120738208294, + -0.023373335599899292, + 0.013138865120708942, + -0.028837980702519417, + 0.000749428232666105, + 0.033139731734991074, + -0.04882131889462471, + -0.0006620241329073906, + 0.021259557455778122, + -0.09681698679924011, + -0.012225758284330368, + 0.01399372797459364, + 0.024178994819521904, + -0.04036813601851463, + -0.009349199011921883, + -0.08782069385051727, + -0.009752289392054081, + 0.10203836858272552, + 0.025710010901093483, + 0.0027624056674540043, + -0.017948677763342857, + -0.051692407578229904, + 0.083738774061203, + -0.09848376363515854, + -0.0007212029304355383, + -0.009820511564612389, + -0.005511757452040911, + 0.01723579503595829, + 0.043250225484371185, + 0.0014228958170861006, + 0.05661274120211601, + 0.059065189212560654, + -0.024699637666344643, + 0.011789956130087376, + 0.0054108076728880405, + -0.020302504301071167, + -0.06583511084318161, + 0.025958681479096413, + 0.0030083702877163887, + -0.039547331631183624, + 0.038432952016592026, + -0.009016613475978374, + 0.018751172348856926, + 0.007205470930784941, + 0.021486639976501465, + 0.04287635535001755, + 0.0043508755043148994, + 0.02948446199297905, + 0.00453103706240654, + -0.043782979249954224, + 0.03331884741783142, + -0.06096662953495979, + -0.00994018279016018, + 0.003684363327920437, + 0.036966193467378616, + -0.04301440715789795, + 0.10193748027086258, + -0.010414729826152325, + -0.024935059249401093, + -0.03927844017744064, + -0.099900983273983, + -0.06944441795349121, + 0.06657003611326218, + -0.03214803710579872, + 0.11862459033727646, + -0.06928258389234543, + -0.0015048172790557146, + -0.03964292258024216, + -1.9943852711671045e-34, + -0.009823190048336983, + 0.08637762814760208, + 0.021476639434695244, + -0.0494619682431221, + -0.07124507427215576, + -0.01758657768368721, + 0.071233831346035, + 0.01718565821647644, + 0.007787824608385563, + 0.07633871585130692, + 0.1090976670384407, + -0.035983920097351074, + -0.03052227944135666, + -0.038700755685567856, + 0.011585409753024578, + -0.02169419452548027, + 0.021784428507089615, + 0.00993263628333807, + 0.0579758882522583, + 0.024733420461416245, + -0.013035278767347336, + -0.023117193952202797, + -0.05272718518972397, + -0.025179561227560043, + 0.022923119366168976, + 0.02987896464765072, + 0.00036402823752723634, + 0.01640460267663002, + -0.10455866903066635, + 0.030800066888332367, + -0.05332301929593086, + -0.013669054955244064, + 0.0885535329580307, + 0.04861219599843025, + 0.014468226581811905, + 0.1026812419295311, + 0.014219513162970543, + -0.032341714948415756, + 0.008312120102345943, + -0.05858462676405907, + 0.08177843689918518, + 0.05649840086698532, + 0.017967725172638893, + 0.009706036187708378, + -0.01021401584148407, + -0.08084215968847275, + -0.0685047134757042, + -0.07801886647939682, + -0.11445177346467972, + -0.01072680950164795, + 0.08696874976158142, + -0.0030718704219907522, + -0.0699072927236557, + 0.0699596256017685, + -0.008915413171052933, + 0.03754159435629845, + 0.012038664892315865, + 0.004056618083268404, + -0.0496736541390419, + 0.08539152145385742, + 0.03249889612197876, + -0.057235442101955414, + -0.02864297293126583, + 0.07789911329746246, + 0.0488269180059433, + -0.043170198798179626, + 0.049194660037755966, + -0.013214543461799622, + 0.031311530619859695, + 0.06490031629800797, + -0.04079096391797066, + -0.029449693858623505, + 0.0705430805683136, + 0.002834675367921591, + 0.08567041158676147, + -0.07242413610219955, + 0.04984302446246147, + 0.11149828135967255, + -0.05986016243696213, + 0.03405100852251053, + -0.025813793763518333, + 0.08387286216020584, + -0.07926912605762482, + -0.020767802372574806, + -0.022433027625083923, + 0.021107150241732597, + -0.014820056036114693, + -0.013552767224609852, + -0.01490412000566721, + 0.0038782870396971703, + -0.06040756776928902, + 0.038701120764017105, + -0.03180095925927162, + 0.012424844317138195, + -0.03434532880783081, + -1.9268618700607476e-08, + -0.07574930787086487, + -0.014814089052379131, + -0.035829368978738785, + -0.02947814390063286, + 0.03779000788927078, + -0.05187976360321045, + 0.022636594250798225, + -0.1266418695449829, + -0.009627364575862885, + -0.013306453824043274, + -0.01921217329800129, + 0.06333249807357788, + -0.16159595549106598, + 0.01336437277495861, + 0.05948834866285324, + 0.015708569437265396, + -0.09550470858812332, + -0.029548320919275284, + -0.021795423701405525, + -0.0374906063079834, + 0.017342157661914825, + -0.005367435980588198, + 0.03453138470649719, + 0.04715246707201004, + 0.10645276308059692, + 0.04637856036424637, + 0.02203703485429287, + -0.0009090617531910539, + 0.03898042067885399, + 0.05383928120136261, + -0.041305579245090485, + 0.010705099441111088, + -0.02217293158173561, + -0.0019438824383541942, + -0.15358462929725647, + 0.02703014947474003, + -0.05897504836320877, + 0.016261208802461624, + -0.06071849912405014, + 0.10288125276565552, + -0.056021321564912796, + -0.04465007781982422, + 0.002825340488925576, + -0.02641712687909603, + 0.016061853617429733, + 0.003912845626473427, + 0.009492131881415844, + 0.06956406682729721, + 0.016683578491210938, + -0.06913363188505173, + -0.020710956305265427, + -0.00427273940294981, + 0.022111719474196434, + -0.07419716566801071, + -0.07036367058753967, + -0.05837623029947281, + 0.10378424823284149, + 0.004560057073831558, + -0.057506922632455826, + 0.029715411365032196, + 0.07933349907398224, + -0.04039933532476425, + 0.00017046596622094512, + -0.021926186978816986 + ], + "wifi-medium-bold||wireless,internet,network,connection,connectivity": [ + 0.033152204006910324, + -0.008799200877547264, + -0.022401409223675728, + 0.013313808478415012, + 0.02444349229335785, + -0.017904702574014664, + 0.05959552153944969, + -0.04393249377608299, + -0.042260389775037766, + -0.014170419424772263, + 0.04374713823199272, + 0.05530717596411705, + 0.0075412108562886715, + -0.012915313243865967, + 0.01618812419474125, + 0.0032597605604678392, + 0.012822351418435574, + -0.09892197698354721, + -0.04226207360625267, + -0.0388823077082634, + 0.010854301042854786, + -0.012990245595574379, + 0.04725434631109238, + -0.04647606238722801, + 0.13098405301570892, + -0.020634131506085396, + 0.08050363510847092, + 0.0019352557137608528, + -0.019955361261963844, + -0.0362190343439579, + -0.035302579402923584, + -0.006455441936850548, + 0.048879072070121765, + -0.008856026455760002, + -0.0025458240415900946, + -0.09719397127628326, + -0.02314227633178234, + 0.08188380300998688, + -0.019665326923131943, + 0.013883554376661777, + 0.014858880080282688, + -0.10435449331998825, + 0.006227691657841206, + 0.10345949977636337, + -0.041321419179439545, + -0.005895131733268499, + -0.07015115022659302, + 0.04768972098827362, + -0.016263358294963837, + -0.048507966101169586, + 0.015682261437177658, + -0.06605096161365509, + -0.10793985426425934, + 0.10350559651851654, + 0.03435981273651123, + 0.012232602573931217, + -0.04899061843752861, + 0.06709848344326019, + 0.09225254505872726, + -0.04846460372209549, + 0.06022736057639122, + -0.003934271167963743, + -0.006084051448851824, + 0.03741741552948952, + 0.07061287760734558, + 0.023227229714393616, + -0.014128019101917744, + 0.08095505833625793, + -0.04999041557312012, + 0.009623073972761631, + 0.0326639749109745, + 0.06487541645765305, + -0.010980344377458096, + -0.007125586271286011, + 0.04859371855854988, + -0.019811183214187622, + 0.05683409050107002, + 0.07112270593643188, + -0.025088338181376457, + 0.02037147991359234, + 0.012938647530972958, + 0.014934668317437172, + -0.010071361437439919, + -0.03061502054333687, + 0.07507441192865372, + -0.0023935690987855196, + -0.06257058680057526, + -0.07223652303218842, + -0.010182220488786697, + -0.04027978703379631, + -0.07297511398792267, + 0.008768833242356777, + -0.07152009755373001, + 0.03877049684524536, + -0.06026235222816467, + 0.00993253756314516, + -0.004000669810920954, + -0.09817727655172348, + -0.05119426175951958, + 0.07606154680252075, + 0.02346755377948284, + 0.007939024828374386, + 0.07217878103256226, + -0.0034299453254789114, + -0.029692096635699272, + -0.07469414919614792, + 0.008170567452907562, + 0.06951180100440979, + 0.06739619374275208, + -0.0027901646681129932, + -0.006083424668759108, + -0.06536976248025894, + -0.026805821806192398, + 0.006626004818826914, + -0.011698601767420769, + 0.012857280671596527, + 0.0026629967615008354, + 0.06821321696043015, + 0.1351115107536316, + 0.015723753720521927, + -0.0551881417632103, + -0.04056659713387489, + -0.016257269307971, + -0.06422999501228333, + 0.035953130573034286, + -0.003408488817512989, + 0.0463545098900795, + -4.729912842865449e-34, + 0.06362422555685043, + 0.03281766548752785, + -0.11946216970682144, + 0.07453611493110657, + 0.030498426407575607, + 0.002164957346394658, + -0.036999497562646866, + -0.09119311720132828, + -0.03556442633271217, + 0.04048455134034157, + -0.03442776948213577, + 0.07364241033792496, + -0.10123585909605026, + 0.03246253728866577, + 0.0764222964644432, + -0.065970778465271, + 0.04870299622416496, + 0.009393515065312386, + 0.016320697963237762, + 0.04852556437253952, + -0.008628920651972294, + -0.03756935894489288, + -0.05859451740980148, + -0.051987797021865845, + 0.04481823742389679, + -0.058746594935655594, + 0.0520595945417881, + -0.0066240523010492325, + -0.001869283732958138, + 0.013351836241781712, + -0.022362826392054558, + 0.003770817769691348, + 0.022879354655742645, + -0.04464089497923851, + 0.01180690061300993, + 0.027455219998955727, + -0.09562338143587112, + -0.011221086606383324, + 0.021271931007504463, + 0.012577335350215435, + -0.01799572817981243, + -0.015458988025784492, + -0.09341240674257278, + -0.007680885028094053, + 0.031043287366628647, + 0.026508333161473274, + -0.003467488568276167, + -0.011498335748910904, + -0.02538014017045498, + 0.07771022617816925, + -0.06666488200426102, + -0.02928183414041996, + 0.03358425572514534, + -0.02878585271537304, + 0.05371908098459244, + 0.06571807712316513, + 0.003950824029743671, + 0.08210913836956024, + 0.04905131831765175, + -0.01689489372074604, + 0.0224782545119524, + -0.01488407701253891, + 0.010312088765203953, + -0.06791658699512482, + 0.03609294444322586, + 0.029967758804559708, + -0.04489540681242943, + 0.03909838944673538, + 0.04143138602375984, + 0.011818822473287582, + -0.029073992744088173, + 0.024840205907821655, + 0.026053879410028458, + 0.031458672136068344, + 0.0038179641123861074, + -0.01174338348209858, + -0.06696475297212601, + 0.027460752055048943, + -0.07292062789201736, + 0.025531411170959473, + -0.037413645535707474, + 0.04430976137518883, + -0.06402354687452316, + 0.09838247299194336, + -0.027005963027477264, + -0.00782280508428812, + -0.025562893599271774, + -0.13020403683185577, + -0.07145050168037415, + 0.06151871383190155, + -0.060317616909742355, + 0.13515324890613556, + -0.014074278995394707, + 0.00861060805618763, + -0.04896852374076843, + -7.426253519586958e-34, + -0.034559499472379684, + 0.05649063363671303, + -0.02252272143959999, + -0.021796731278300285, + -0.0468408428132534, + -0.03798041492700577, + 0.05247620493173599, + 0.01680181920528412, + -0.0005004856502637267, + 0.05625753849744797, + 0.11583766341209412, + -0.053088877350091934, + -0.07978539168834686, + -0.06484633684158325, + -0.00494870962575078, + -0.018748214468359947, + 0.0010993676260113716, + -0.0049132900312542915, + 0.05161456763744354, + 0.019627954810857773, + -0.052020709961652756, + -0.07416573911905289, + -0.01417388953268528, + -0.005468759685754776, + -0.011816795915365219, + 0.008117000572383404, + 0.0382767878472805, + 0.006054175551980734, + -0.13597017526626587, + 0.032245296984910965, + -0.033781588077545166, + -0.024005917832255363, + 0.07600563764572144, + 0.049965936690568924, + 0.032867182046175, + 0.0900251641869545, + 0.053289130330085754, + -0.034429337829351425, + 0.008953012526035309, + -0.05569053441286087, + 0.09519227594137192, + 0.03641587123274803, + -0.012136228382587433, + -0.0083910021930933, + -0.009027650579810143, + -0.053693052381277084, + -0.023305561393499374, + -0.10999222099781036, + -0.1025262326002121, + -0.018778910860419273, + 0.13196517527103424, + -0.00979568064212799, + -0.021486565470695496, + 0.014752189628779888, + -0.0254101250320673, + 0.06411831080913544, + 0.013471444137394428, + 0.005020282231271267, + -0.05458740144968033, + 0.05485766381025314, + 0.03619302064180374, + -0.06677449494600296, + -0.03747739642858505, + 0.058257509022951126, + 0.04166041687130928, + -0.0459052212536335, + 0.05096783488988876, + -0.04362477734684944, + -0.021974654868245125, + 0.07062854617834091, + -0.05643652379512787, + -0.016407689079642296, + 0.06142931804060936, + 0.026677004992961884, + 0.0679270401597023, + -0.0847003161907196, + 0.03764747828245163, + 0.094284288585186, + -0.06725006550550461, + 0.050184186547994614, + -0.02741684392094612, + 0.09406446665525436, + -0.06591804325580597, + -0.03646138310432434, + -0.014277610927820206, + 0.02716124802827835, + 0.012819373048841953, + -0.005256642587482929, + -0.024819325655698776, + 0.01790940947830677, + -0.04197676107287407, + 0.030811818316578865, + -0.04452192038297653, + -0.01454169861972332, + -0.04454920068383217, + -1.884381894967646e-08, + -0.049842312932014465, + -0.035216737538576126, + -0.06485234200954437, + -0.033482957631349564, + 0.008017160929739475, + -0.04957925155758858, + 0.032464053481817245, + -0.14201228320598602, + 0.011606576852500439, + -0.017079640179872513, + -0.02284061722457409, + 0.04915926232933998, + -0.13665008544921875, + 0.042128872126340866, + 0.07280316948890686, + -0.012307955883443356, + -0.08436960726976395, + -0.04378559812903404, + -0.02840525656938553, + -0.05636267736554146, + 0.030266642570495605, + -0.0008265144424512982, + 0.009680655784904957, + 0.057108718901872635, + 0.10192042589187622, + 0.07728645950555801, + 0.006765810307115316, + -0.004000670276582241, + 0.05039359629154205, + 0.07880648970603943, + -0.03297562524676323, + -0.005259274505078793, + -0.03268243744969368, + 0.02637520618736744, + -0.15604400634765625, + 0.037862781435251236, + -0.04170111194252968, + 0.0030412341002374887, + -0.04855428263545036, + 0.11769793182611465, + -0.020051397383213043, + -0.027320927008986473, + 0.00385086121968925, + -0.028477385640144348, + 0.02787434123456478, + 0.02968074008822441, + 0.033174414187669754, + 0.09754739701747894, + -0.005503031890839338, + -0.04513813927769661, + -0.020421510562300682, + -0.00033613681443966925, + 0.012204754166305065, + -0.05708533897995949, + -0.036119572818279266, + -0.06071927770972252, + 0.09772899001836777, + 0.019473109394311905, + -0.03851287066936493, + 0.027376672253012657, + 0.06808513402938843, + -0.027537211775779724, + 0.026939958333969116, + 0.01656973361968994 + ], + "wifi-none-bold||wireless,internet,network,connection,connectivity": [ + -0.008069610223174095, + 0.024137025699019432, + -0.03752245008945465, + 0.017428016290068626, + 0.012405488640069962, + -0.0010754192480817437, + 0.03146664425730705, + -0.10290049761533737, + -0.005980123300105333, + -0.061890073120594025, + 0.0769830122590065, + 0.05364737659692764, + 0.0016961650690063834, + -0.040945641696453094, + -0.01648871973156929, + 0.021037837490439415, + -0.012255960144102573, + -0.14140291512012482, + -0.024491459131240845, + -0.03783898800611496, + -0.0042403386905789375, + -0.005559071432799101, + 0.02510635368525982, + -0.016403093934059143, + 0.15862971544265747, + 0.01223843079060316, + 0.09751782566308975, + 0.02367684431374073, + -0.028917592018842697, + -0.019091205671429634, + -0.03249916434288025, + -0.01398938987404108, + 0.016139093786478043, + -0.038031574338674545, + 0.07851464301347733, + -0.10109454393386841, + 0.002724196994677186, + 0.12632544338703156, + 0.02160693146288395, + -0.0171843022108078, + -0.02159685455262661, + -0.0733780562877655, + -0.023721277713775635, + 0.08914372324943542, + 0.004414908587932587, + 0.018123237416148186, + -0.07994388788938522, + -0.005740509368479252, + 0.013486932963132858, + -0.06923720240592957, + 0.03536531329154968, + -0.0394183024764061, + -0.09752410650253296, + 0.07710177451372147, + 0.03229910135269165, + 0.005381240975111723, + -0.0641278624534607, + 0.023749349638819695, + 0.05408058688044548, + -0.05737684667110443, + 0.07951033115386963, + -0.005479804240167141, + 0.020763805136084557, + 0.03924969583749771, + 0.03824283182621002, + 0.023546135053038597, + -0.016254309564828873, + 0.05378992483019829, + -0.04001398757100105, + 0.040483441203832626, + 0.014454994350671768, + 0.07268010079860687, + -0.022760456427931786, + -0.03283476084470749, + 0.018928594887256622, + 0.011798852123320103, + 0.05551057681441307, + 0.04416824132204056, + 0.00958834495395422, + 0.008191040717065334, + -0.012676567770540714, + 0.033678580075502396, + -0.002249952871352434, + -0.008970077149569988, + 0.06786920130252838, + 0.0179422777146101, + -0.057899538427591324, + -0.061969976872205734, + 0.022653141990303993, + -0.06513956189155579, + -0.10238877683877945, + 0.014161012135446072, + -0.04873291030526161, + 0.034792460501194, + -0.08320512622594833, + 0.03566327691078186, + 0.025763660669326782, + -0.06797609478235245, + -0.09782858192920685, + 0.10142463445663452, + 0.040872469544410706, + 0.012364324182271957, + 0.10826374590396881, + 0.01622234471142292, + -0.018586505204439163, + -0.02267547696828842, + 0.01322987861931324, + 0.04682678356766701, + 0.038810040801763535, + -0.01322211604565382, + -0.018244333565235138, + -0.08723526448011398, + -0.027862995862960815, + 0.020701684057712555, + -0.05100500211119652, + -0.02125202678143978, + -0.025326794013381004, + 0.051341913640499115, + 0.08883455395698547, + 0.050883177667856216, + -0.06764831393957138, + -0.05864981934428215, + -0.019635822623968124, + -0.049204178154468536, + 0.010006588883697987, + 0.021175066009163857, + 0.03578309714794159, + -9.871897067121575e-34, + 0.11453809589147568, + 0.03074878640472889, + -0.09040585160255432, + 0.04497775435447693, + 0.05357235297560692, + 0.011334024369716644, + -0.007234564051032066, + -0.09570720046758652, + -0.023591969162225723, + 0.08754365146160126, + -0.020695168524980545, + 0.005062018986791372, + -0.03718385100364685, + 0.022893182933330536, + 0.07443054020404816, + -0.058225445449352264, + 0.042981017380952835, + -0.017950482666492462, + 0.03862277418375015, + 0.07303717732429504, + 0.004990673158317804, + -0.05542369559407234, + -0.05099641904234886, + -0.06592871248722076, + 0.033605366945266724, + -0.017633279785513878, + 0.039885930716991425, + -0.012543934397399426, + -0.020266389474272728, + 0.010037068277597427, + -0.009679226204752922, + 0.022060081362724304, + 0.025775006040930748, + -0.05979475378990173, + 0.017123626545071602, + 0.023992503061890602, + -0.09589467942714691, + -0.018960969522595406, + 0.016246294602751732, + 0.013338507153093815, + -0.04880746826529503, + -0.04726821184158325, + -0.08038052916526794, + -0.034870829433202744, + 0.0950639620423317, + 0.007854264229536057, + 0.004568770062178373, + 0.007417534943670034, + -0.04441050812602043, + 0.09252634644508362, + -0.0960049256682396, + 0.015611578710377216, + 0.044436585158109665, + -0.040015093982219696, + 0.01600887067615986, + 0.034478139132261276, + -0.010639783926308155, + 0.08205919712781906, + 0.017567548900842667, + -0.06638690829277039, + 0.018063625320792198, + 0.004773777909576893, + -0.029230069369077682, + -0.0848366841673851, + 0.00939460564404726, + 0.023394502699375153, + -0.04915453493595123, + 0.04114362597465515, + 0.03846638277173042, + 0.0037658249493688345, + -0.033960338681936264, + 0.024054771289229393, + 0.03191777691245079, + 0.017074255272746086, + 0.014451688155531883, + -0.027574116364121437, + -0.07382490485906601, + 0.018979955464601517, + -0.0776604637503624, + 0.01188216358423233, + 0.01910102181136608, + 0.020033182576298714, + -0.04527430236339569, + 0.09378224611282349, + 0.012540888972580433, + -0.046958260238170624, + -0.029465077444911003, + -0.09574443101882935, + -0.036859553307294846, + 0.06553293764591217, + 0.022945301607251167, + 0.1438918560743332, + -0.07248137146234512, + 0.000689014676027, + -0.060586970299482346, + -4.450997879951572e-34, + 0.010685727000236511, + 0.06748387962579727, + 0.0012207102263346314, + -0.0649520680308342, + -0.07451599836349487, + -0.0022975020110607147, + 0.051742859184741974, + 0.01268900278955698, + 0.007855783216655254, + 0.02820398285984993, + 0.13308247923851013, + -0.02063954435288906, + -0.04091629758477211, + -0.08149167895317078, + 0.015405475161969662, + 0.029273590072989464, + -0.014339237473905087, + 0.00745416060090065, + 0.03151676431298256, + 0.0446198508143425, + -0.007834259420633316, + -0.022531041875481606, + -0.041683901101350784, + -0.006260863970965147, + -0.02116694487631321, + 0.03705677390098572, + 0.030817100778222084, + 0.009092846885323524, + -0.08174759894609451, + 0.05113506317138672, + -0.021225810050964355, + -0.015377122908830643, + 0.08488393574953079, + 0.047670554369688034, + 0.02944749966263771, + 0.10880854725837708, + 0.04382329061627388, + -0.04071613773703575, + 0.020842624828219414, + -0.0641397088766098, + 0.06554608047008514, + 0.06257615983486176, + 0.008987728506326675, + 0.03470854088664055, + -0.028692351654171944, + -0.07071410864591599, + -0.028821241110563278, + -0.08146476745605469, + -0.1020897850394249, + -0.0020068276207894087, + 0.09859222918748856, + 0.0018384826835244894, + -0.07660076022148132, + 0.01922318898141384, + 0.011460990644991398, + 0.0417378731071949, + 0.0011829574359580874, + -0.005333274602890015, + -0.019675791263580322, + 0.06863737851381302, + 0.027083715423941612, + -0.055831003934144974, + -0.027379877865314484, + 0.07466796785593033, + 0.02085302211344242, + -0.03887089341878891, + 0.03294625133275986, + 0.00655459426343441, + 0.033448297530412674, + 0.04868041351437569, + -0.04216231033205986, + -0.014684773981571198, + 0.05880042538046837, + -0.013769106939435005, + 0.07942371070384979, + -0.046051301062107086, + 0.03206270560622215, + 0.08886891603469849, + -0.07711842656135559, + 0.04587191715836525, + -0.009059860371053219, + 0.056081682443618774, + -0.09758684784173965, + -0.02165571227669716, + -0.013255339115858078, + -0.006544915493577719, + -0.008159423246979713, + 0.03354179114103317, + -0.022925764322280884, + 0.013868173584342003, + -0.0553315170109272, + 0.03331034630537033, + -0.05193323269486427, + 0.0567086823284626, + -0.03176617994904518, + -1.9293295849820424e-08, + -0.048704493790864944, + -0.009628023952245712, + -0.04833119362592697, + -0.04377810284495354, + 0.03340191766619682, + -0.05721847340464592, + 0.05597321689128876, + -0.14508913457393646, + -0.028214694932103157, + -0.021480675786733627, + -0.007600369397550821, + 0.06565823405981064, + -0.18414129316806793, + 0.015977991744875908, + 0.057065241038799286, + 0.009363858960568905, + -0.12348105013370514, + -0.028610000386834145, + -0.028762012720108032, + -0.017337616533041, + 0.019926892593503, + -0.023987239226698875, + 0.0013149456353858113, + 0.03286853805184364, + 0.10908273607492447, + 0.05097516253590584, + 0.002775381552055478, + -0.008865337818861008, + 0.057044386863708496, + 0.054698117077350616, + -0.04100560024380684, + 0.01566898077726364, + 0.006843757815659046, + 0.003747040405869484, + -0.1463349163532257, + 0.01344910729676485, + -0.024735605344176292, + 0.022744951769709587, + -0.058373209089040756, + 0.07765115052461624, + -0.045494385063648224, + -0.024722902104258537, + 0.0011181841837242246, + -0.03731784224510193, + -0.008101698942482471, + 0.025032522156834602, + 0.01356508582830429, + 0.059919778257608414, + 0.002011257456615567, + -0.07384958863258362, + -0.02358887903392315, + -0.02426408976316452, + -0.0004169199091847986, + -0.032562289386987686, + -0.06140425428748131, + -0.04884735867381096, + 0.10441027581691742, + -0.006670658476650715, + -0.039358388632535934, + 0.02137135900557041, + 0.07897665351629257, + -0.05349191278219223, + 0.007832041010260582, + -0.034097108989953995 + ], + "wifi-slash-bold||wireless,internet,network,connection,connectivity,disabled,disconnected": [ + -0.027240360155701637, + 0.012757892720401287, + -0.009802982211112976, + 0.036682091653347015, + 0.004971356131136417, + 0.001956117572262883, + 0.009340828284621239, + -0.06882717460393906, + -0.009819763712584972, + -0.035638611763715744, + 0.09007025510072708, + 0.09184442460536957, + 0.012684605084359646, + 0.022557346150279045, + -0.03394768387079239, + 0.04546475037932396, + 0.02482125349342823, + -0.09874890744686127, + -0.03281639888882637, + -0.015920935198664665, + 0.005310500040650368, + 0.05664203315973282, + 0.019921105355024338, + -0.026927858591079712, + 0.1548827886581421, + -0.008027194067835808, + 0.08994719386100769, + 0.036013271659612656, + -0.031147031113505363, + -0.005688435398042202, + -0.022049423307180405, + -0.02625468000769615, + 0.03844774514436722, + -0.048725903034210205, + 0.07524624466896057, + -0.07054944336414337, + -0.010471087880432606, + 0.09983421862125397, + 0.06485378742218018, + -0.049247391521930695, + -0.03260578215122223, + -0.09487786144018173, + -0.015236842446029186, + 0.05674699321389198, + -0.008020211011171341, + 0.0034350715577602386, + -0.06770846992731094, + -0.021931780502200127, + -0.01381634920835495, + -0.034122154116630554, + 0.05588686466217041, + -0.01687193289399147, + -0.08643993735313416, + 0.059217195957899094, + 0.08895757794380188, + -0.004746637772768736, + -0.057766325771808624, + 0.052040521055459976, + 0.08840741217136383, + -0.06142079457640648, + 0.04664286971092224, + -0.015407509170472622, + 0.0215863399207592, + 0.01115029864013195, + 0.007448910269886255, + 0.029763491824269295, + -0.016154300421476364, + 0.02386309579014778, + -0.029349805787205696, + 0.030427634716033936, + 0.003349507227540016, + 0.10996565222740173, + -0.03756450116634369, + -0.039352308958768845, + 0.02540702186524868, + 0.02508203685283661, + 0.034655436873435974, + 0.030743833631277084, + 0.006906269118189812, + -0.02684653550386429, + 0.006978652905672789, + -0.0011635603150352836, + 0.02018650248646736, + 0.016614556312561035, + 0.08116646856069565, + 0.0461602620780468, + -0.05373464897274971, + -0.05642954260110855, + 0.02002914436161518, + -0.07192210108041763, + -0.07797973603010178, + -0.01245325617492199, + 0.02646307833492756, + 0.018880274146795273, + -0.09016689658164978, + -0.005408031400293112, + 0.02032686583697796, + -0.04051437973976135, + -0.10009408742189407, + 0.08773200958967209, + 0.048669636249542236, + 0.019531231373548508, + 0.04329971969127655, + 0.01027766615152359, + 0.012495769187808037, + -0.04581526294350624, + 0.046906791627407074, + 0.038521658629179, + 0.011759527027606964, + -0.0478862039744854, + -0.005362645257264376, + -0.05440979450941086, + -0.018804257735610008, + 0.010606886819005013, + -0.02014770731329918, + -0.028940599411725998, + -0.03225712850689888, + 0.021842291578650475, + 0.11951602250337601, + 0.0651371031999588, + -0.06361500173807144, + -0.09636884182691574, + -0.022596348077058792, + -0.08601116389036179, + 0.029476864263415337, + 0.003844075370579958, + 0.06956227868795395, + -2.0075887818739754e-33, + 0.13423246145248413, + 0.045869264751672745, + -0.09033896774053574, + 0.03878963738679886, + 0.08204620331525803, + -0.023895932361483574, + -0.013026794418692589, + -0.045497871935367584, + -0.03993821516633034, + 0.04551473632454872, + 0.005370866972953081, + -0.0013683420838788152, + -0.02864372916519642, + -0.0063430024310946465, + 0.05337192118167877, + -0.07237502932548523, + 0.0827149897813797, + -0.011469335295259953, + -0.007893871515989304, + 0.06252461671829224, + 0.024252628907561302, + 0.010978063568472862, + -0.014982389286160469, + -0.026280604302883148, + 0.03439272195100784, + -0.013548579066991806, + 0.009999207220971584, + 0.028581656515598297, + 0.004880234133452177, + 0.019859468564391136, + -0.0016991469310596585, + 0.018526144325733185, + 0.009571935050189495, + -0.05285775661468506, + -0.011877484619617462, + 0.047009170055389404, + -0.08071120828390121, + 0.0024272073060274124, + -0.014292465522885323, + 0.025798147544264793, + -0.06612083315849304, + -0.06130632758140564, + -0.10973125696182251, + -0.0011347936233505607, + 0.0913986787199974, + -0.01908847689628601, + -0.0022595010232180357, + -0.051092009991407394, + -0.036582447588443756, + 0.07246603816747665, + -0.09298927336931229, + 0.009537971578538418, + 0.06774720549583435, + -0.03254838287830353, + 0.021973099559545517, + 0.013744284398853779, + -0.051283806562423706, + 0.05423182621598244, + 0.022125333547592163, + -0.06581857800483704, + 0.027908295392990112, + 0.010652455501258373, + 0.0049795364029705524, + -0.06688456982374191, + -0.010957264341413975, + 0.01892849989235401, + -0.022098328918218613, + 0.04463546723127365, + -0.010277929715812206, + 0.016833780333399773, + -0.04807299003005028, + 0.004885350354015827, + 0.023953119292855263, + 0.008984250016510487, + -0.03900985047221184, + -0.014700310304760933, + -0.08169272541999817, + 0.010799276642501354, + -0.07015076279640198, + 0.0026886335108429193, + -0.0070505887269973755, + 0.0008008479489944875, + -0.03257244825363159, + 0.07357683032751083, + 0.040666162967681885, + -0.04741005226969719, + -0.040067415684461594, + -0.09891890734434128, + -0.059954069554805756, + 0.038426708430051804, + 0.03026805818080902, + 0.13093863427639008, + -0.0849948301911354, + -0.018067937344312668, + -0.03784116730093956, + 5.801370433510195e-34, + 0.028658978641033173, + 0.09183475375175476, + -4.968325811205432e-05, + -0.0604202002286911, + -0.08526145666837692, + -0.04475034028291702, + 0.0065418416634202, + 0.020912611857056618, + -0.035927753895521164, + 0.019002877175807953, + 0.12272591143846512, + 0.008615647442638874, + -0.02920525334775448, + -0.09128502756357193, + -0.01133622694760561, + -0.007160180248320103, + -0.03996860608458519, + -0.017047066241502762, + 0.02285909652709961, + 0.07644154876470566, + -0.004772130399942398, + -0.017043111845850945, + -0.017589882016181946, + -0.001855976413935423, + -0.060577500611543655, + 0.049375906586647034, + 0.018828697502613068, + 0.020199241116642952, + -0.06244570016860962, + 0.0357050821185112, + -0.005698128137737513, + -0.007217629812657833, + 0.04216867312788963, + 0.03810644894838333, + 0.023877087980508804, + 0.09115685522556305, + -0.03736458718776703, + -0.023237092420458794, + -0.001295667258091271, + -0.0802609845995903, + 0.06838666647672653, + 0.05743405595421791, + 0.01681271195411682, + 0.08109156042337418, + -0.001639229361899197, + -0.0631650984287262, + -0.0146569162607193, + -0.1258552372455597, + -0.08545281738042831, + 0.00804118998348713, + 0.11087139695882797, + 0.0008392806048505008, + -0.04454340413212776, + 0.03968525305390358, + 0.004383159801363945, + 0.034995097666978836, + -0.0018672420410439372, + 0.009499950334429741, + -0.07117396593093872, + 0.08571390062570572, + 0.04095614701509476, + -0.04688073322176933, + -0.039597287774086, + 0.09091927856206894, + 0.038957707583904266, + -0.0594976469874382, + 0.011268001981079578, + 0.018943103030323982, + 0.03715210780501366, + 0.034587983042001724, + -0.02816642075777054, + -0.005940347909927368, + 0.05574454739689827, + 0.005141208879649639, + 0.10001780092716217, + -0.07677049189805984, + 0.004553258419036865, + 0.07682804018259048, + -0.062248311936855316, + 0.08709215372800827, + -0.00906563363969326, + 0.04249819740653038, + -0.12275142222642899, + -0.034204352647066116, + -0.022550195455551147, + -0.01866922900080681, + -0.0374709852039814, + 0.08821219205856323, + -0.025552360340952873, + -0.01770661771297455, + -0.07590693235397339, + 0.005158189218491316, + -0.06320515275001526, + 0.07557209581136703, + -0.0712176188826561, + -2.0986425042224255e-08, + -0.06725350022315979, + -0.007515874225646257, + -0.04070243611931801, + -0.033138323575258255, + 0.05948832258582115, + -0.04377105087041855, + 0.04466792941093445, + -0.14272570610046387, + -0.04112084209918976, + -0.013275088742375374, + -0.024415092542767525, + 0.06609788537025452, + -0.15287037193775177, + 0.03244633227586746, + 0.04442413151264191, + 0.018902365118265152, + -0.10558398067951202, + 0.009694535285234451, + -0.016425546258687973, + 0.018357878550887108, + 0.022656748071312904, + -0.016772989183664322, + 0.012239665724337101, + 0.04299153760075569, + 0.10758752375841141, + 0.03472553566098213, + 0.009246641770005226, + -0.01850031316280365, + 0.029450610280036926, + 0.04987464100122452, + -0.036033354699611664, + 0.01844666339457035, + 0.00721749709919095, + 0.00048555072862654924, + -0.12838327884674072, + 0.031885355710983276, + -0.03251077979803085, + 0.02959512546658516, + -0.03342686966061592, + 0.04518994316458702, + -0.024332905188202858, + -0.049110785126686096, + 0.03949204087257385, + -0.018530389294028282, + 0.005365598015487194, + 0.05339627340435982, + 0.020989209413528442, + 0.11584567278623581, + -0.005169617477804422, + -0.06146744638681412, + -0.04011862352490425, + -0.015304424799978733, + 0.003782555926591158, + -0.027837390080094337, + -0.06988987326622009, + -0.03836357593536377, + 0.09707550704479218, + -0.017249595373868942, + -0.06054127216339111, + -0.014278438873589039, + 0.08946749567985535, + -0.05934019386768341, + -0.008429999463260174, + -0.05945892259478569 + ], + "wifi-x-bold||wireless,internet,network,connection,connectivity,disconnected,errors": [ + -0.0014165642205625772, + 0.00893372017890215, + 0.01582428626716137, + 0.008589723147451878, + 0.03320223465561867, + -0.04272015765309334, + 0.07993824034929276, + -0.05491306632757187, + -0.04293936491012573, + -0.0310983844101429, + 0.09025048464536667, + 0.05846502259373665, + 0.0522732138633728, + -0.008608405478298664, + -0.004040081519633532, + 0.055857155472040176, + 5.665396020049229e-05, + -0.11240948736667633, + -0.044837586581707, + 0.004089118912816048, + 0.011440102010965347, + 0.026073550805449486, + 0.016613779589533806, + -0.00720227649435401, + 0.13833647966384888, + 0.029601648449897766, + 0.07608814537525177, + -0.0035678658168762922, + -0.02922664023935795, + -0.013206414878368378, + -0.02724814973771572, + -0.0148493442684412, + 0.017248645424842834, + -0.06525848060846329, + 0.08628108352422714, + -0.03413800150156021, + -0.013966934755444527, + 0.06938932836055756, + 0.0033816879149526358, + -0.020765917375683784, + 0.0027942578308284283, + -0.08854690194129944, + -0.001369428588077426, + 0.10521340370178223, + -0.03297635540366173, + -0.029044605791568756, + -0.07350855320692062, + 0.007350635249167681, + 0.018807606771588326, + -0.028198424726724625, + 0.0453726164996624, + -0.03045469895005226, + -0.06807884573936462, + 0.06277938187122345, + 0.0706975981593132, + 0.01530285645276308, + -0.08808883279561996, + 0.0471138060092926, + 0.0604417584836483, + -0.07534217834472656, + 0.07436101138591766, + 0.028048355132341385, + 0.04295217990875244, + 0.027700625360012054, + 0.02613213285803795, + 0.027761105448007584, + -0.00332607957534492, + 0.03010859526693821, + -0.029568811878561974, + 0.06134311109781265, + 0.022643698379397392, + 0.12104934453964233, + -0.04995356500148773, + -0.009306113235652447, + 0.004557263571768999, + 0.03358817100524902, + 0.06651761382818222, + 0.027443725615739822, + -0.02101755328476429, + -0.037850361317396164, + -0.014568483456969261, + 0.01844397932291031, + 0.006718755699694157, + 0.001230425899848342, + 0.0889001414179802, + 0.022976351901888847, + -0.051712460815906525, + -0.05092393979430199, + -0.018638594076037407, + -0.017795881256461143, + -0.04889146611094475, + 0.03197702020406723, + -0.0009451476507820189, + 0.03842362016439438, + -0.05001603439450264, + -0.00808725319802761, + 0.07388588786125183, + -0.06590013206005096, + -0.054711464792490005, + 0.09805797785520554, + 0.020351439714431763, + 0.003405087161809206, + 0.08038932830095291, + 0.027683038264513016, + -0.027780568227171898, + -0.05741119012236595, + -0.00019992612942587584, + 0.046161260455846786, + -0.005575777031481266, + -0.026855159550905228, + -0.029491601511836052, + -0.1250423789024353, + -2.0738107195938937e-06, + 0.0049853078089654446, + 0.02074647694826126, + -0.01366744190454483, + -0.0008645837078802288, + 0.0657256618142128, + 0.06382299959659576, + 0.02549297921359539, + -0.08396366238594055, + -0.10420376807451248, + -0.02352890744805336, + -0.03484474867582321, + 0.060841154307127, + 0.006777791306376457, + 0.054128844290971756, + -3.3995459633786235e-34, + 0.08222855627536774, + 0.06409630179405212, + -0.11887028813362122, + 0.07734937965869904, + 0.05358486995100975, + -0.034550461918115616, + 0.010785059072077274, + -0.06540853530168533, + -0.026546388864517212, + 0.08660048991441727, + -0.012806892395019531, + 0.014634653925895691, + -0.06022954359650612, + -0.01826375350356102, + 0.06449034065008163, + -0.07448176294565201, + 0.0459725521504879, + -0.0036752258893102407, + -0.03957948088645935, + 0.11537784337997437, + 0.0369548536837101, + -0.07519005984067917, + -0.05114949867129326, + -0.05329951271414757, + 0.038857586681842804, + 0.014776866883039474, + 0.02583230473101139, + 0.035992056131362915, + -0.012565860524773598, + -0.006888742558658123, + 0.0021064835600554943, + 0.02301994524896145, + 0.028774626553058624, + -0.06089932471513748, + -0.019984057173132896, + 0.036302726715803146, + -0.057982899248600006, + -0.0061884308233857155, + -0.017686190083622932, + 0.001445080852136016, + -0.0821034163236618, + -0.020779119804501534, + -0.08237572759389877, + -0.02550956979393959, + 0.12295567989349365, + -0.011066434904932976, + -0.030705567449331284, + -0.04720751941204071, + -0.0072803618386387825, + 0.05143468827009201, + -0.11208667606115341, + 0.0014925202121958137, + 0.004901254549622536, + -0.018776293843984604, + 0.044854536652565, + 0.039598237723112106, + -0.006783841177821159, + 0.10938610136508942, + 0.002150854328647256, + -0.020183676853775978, + 0.06835838407278061, + -0.038518354296684265, + -0.022160189226269722, + -0.10034231841564178, + 0.0313534215092659, + 0.01767372153699398, + -0.039565254002809525, + 0.004179535899311304, + -0.026495249941945076, + 0.0418950580060482, + -0.06693973392248154, + -0.029759060591459274, + 0.0551232174038887, + 0.012794061563909054, + 0.05074407905340195, + -0.047983504831790924, + -0.0947989672422409, + 0.027141572907567024, + -0.062262069433927536, + -0.018269764259457588, + 0.019299393519759178, + -0.008814699947834015, + -0.02472950704395771, + 0.0897088423371315, + -0.032596178352832794, + -0.0198170505464077, + -0.012297570705413818, + -0.058235540986061096, + -0.08593302220106125, + 0.10617150366306305, + 0.0002559333515819162, + 0.13477474451065063, + -0.058531925082206726, + -0.02898443676531315, + -0.10173968225717545, + -6.723265194289517e-34, + -0.027457278221845627, + 0.08568219095468521, + 0.033332034945487976, + -0.038103893399238586, + -0.07463010400533676, + -0.004732608795166016, + 0.03866330906748772, + 0.03908229246735573, + -0.008286853320896626, + 0.008091161027550697, + 0.1072225421667099, + -0.010784533806145191, + -0.06641817092895508, + -0.047694578766822815, + -0.04829466715455055, + 0.01451483741402626, + 0.03160732239484787, + -0.040895458310842514, + 0.020000824704766273, + 0.023641109466552734, + -0.010347672738134861, + 0.009805141016840935, + -0.026334302499890327, + -0.035135429352521896, + -0.04121902957558632, + 0.03971211984753609, + 0.05282013490796089, + 0.018764246255159378, + -0.08281003683805466, + -0.013310539536178112, + -0.041355930268764496, + 0.005874271038919687, + 0.06956992298364639, + 0.09081968665122986, + 0.04965806007385254, + 0.05533244460821152, + 0.026078026741743088, + -0.010016986168920994, + -0.008243926800787449, + -0.05219757556915283, + 0.09247693419456482, + 0.05587702617049217, + 0.016846153885126114, + 0.024760624393820763, + -0.018259013071656227, + -0.07128019630908966, + -0.04522307962179184, + -0.09075583517551422, + -0.09535910934209824, + 0.03660348802804947, + 0.10784195363521576, + -0.030382124707102776, + -0.06176314130425453, + 0.04816126450896263, + -0.01774262823164463, + 0.06948449462652206, + 0.009534444659948349, + 0.011607205495238304, + -0.04320116341114044, + 0.07547558844089508, + -0.014140498824417591, + -0.05900314450263977, + -0.004018212202936411, + 0.06625023484230042, + 0.03688530623912811, + -0.08125404268503189, + 0.016970304772257805, + -0.027827896177768707, + 0.05177517980337143, + 0.033151619136333466, + -0.027800042182207108, + -0.036326099187135696, + 0.03207020089030266, + 0.010346192866563797, + 0.06260673701763153, + -0.059953827410936356, + 0.004194737412035465, + 0.07167626917362213, + -0.06457644701004028, + 0.04910130053758621, + 0.010446419008076191, + 0.062065526843070984, + -0.062172215431928635, + 0.008363347500562668, + -0.012905319221317768, + 0.05055005103349686, + 0.017077140510082245, + 0.059443019330501556, + -0.013281992636620998, + -0.02652256190776825, + -0.057768695056438446, + 0.004550576210021973, + -0.04045413061976433, + 0.03591303899884224, + -0.02532665990293026, + -2.17043591987931e-08, + -0.09074631333351135, + 0.0037115251179784536, + -0.05693662166595459, + -0.03985392302274704, + 0.055034369230270386, + -0.05142851918935776, + 0.027610646560788155, + -0.15066225826740265, + -0.017622539773583412, + -0.01407590415328741, + -0.04089832678437233, + 0.06784834712743759, + -0.1648680865764618, + 0.010214310139417648, + 0.02692566253244877, + -0.04127371683716774, + -0.10376863181591034, + 0.009386816993355751, + -0.02335425280034542, + -0.03655167669057846, + 0.028573909774422646, + -0.006276145577430725, + -0.0028713822830468416, + -0.00457746721804142, + 0.07360625267028809, + 0.013546678237617016, + 0.01090111956000328, + 0.027313724160194397, + 0.055117081850767136, + 0.040686994791030884, + -0.06047021970152855, + 0.009439119137823582, + 0.031173497438430786, + -0.00993380881845951, + -0.10898758471012115, + 0.031215421855449677, + -0.03307981789112091, + -0.00620573153719306, + -0.03292696923017502, + 0.06916534900665283, + -0.047772884368896484, + -0.007307549938559532, + 0.046069104224443436, + -0.031012609601020813, + 0.025303982198238373, + 0.04479585215449333, + 0.017507638782262802, + 0.06515846401453018, + 0.011932230554521084, + -0.08602279424667358, + -0.016665061935782433, + -0.023958224803209305, + -0.011518767103552818, + -0.08267474174499512, + -0.07701431959867477, + -0.06165270879864693, + 0.0863695740699768, + -0.011364799924194813, + -0.032776787877082825, + -0.002779922913759947, + 0.044262614101171494, + -0.048484962433576584, + -0.0018689417047426105, + -0.06226072832942009 + ], + "wind-bold||meteorology,windy,stormy,blustery,gusty,air": [ + 0.017988575622439384, + -0.011583401821553707, + 0.0812135860323906, + 0.07308992743492126, + 0.045003846287727356, + -0.01914471946656704, + 0.015490243211388588, + -0.07472269237041473, + -0.007121612783521414, + -0.03587300702929497, + 0.008668249472975731, + -0.030386080965399742, + 0.003955035004764795, + -0.09026160836219788, + -0.004493906162679195, + 0.10163866728544235, + 0.009424712508916855, + -0.04386361315846443, + 0.013003537431359291, + 0.07059329003095627, + -0.05005080625414848, + 0.09878263622522354, + -0.09738026559352875, + 0.07318257540464401, + 0.09439536184072495, + 0.04619300737977028, + -0.04897364601492882, + 0.03417316451668739, + 0.005626466125249863, + -0.015638671815395355, + 0.000591796007938683, + 0.09125801920890808, + 0.03468728065490723, + 0.03425944596529007, + -0.007512825541198254, + -0.017691968008875847, + -0.019350750371813774, + -0.008525500074028969, + -0.06954033672809601, + 0.07984302937984467, + 0.012833098880946636, + 0.028140902519226074, + 0.019173257052898407, + -0.03816191479563713, + -0.01286315731704235, + 0.009933076798915863, + -0.057664670050144196, + 0.04354498162865639, + 0.05150027945637703, + 0.059462204575538635, + -0.07843364775180817, + -0.07134033739566803, + -0.10515696555376053, + 0.020144080743193626, + -0.014514556154608727, + 0.05348380655050278, + -0.038818586617708206, + -0.07761093229055405, + 0.03373662009835243, + -0.013927152380347252, + 0.009502684697508812, + 0.060851600021123886, + -0.06839292496442795, + 0.0696474239230156, + 0.08134672790765762, + -0.02275528758764267, + -0.05188910663127899, + 0.07705340534448624, + 0.06532549113035202, + -0.019492629915475845, + 0.026334788650274277, + 0.010527215898036957, + -0.004575368016958237, + 0.005070916377007961, + 0.0010597652290016413, + -0.04179039224982262, + 0.03690396994352341, + -0.06081074848771095, + -0.02855663001537323, + -0.09643789380788803, + -0.0451580248773098, + -0.07926903665065765, + -0.019116180017590523, + -0.05929119884967804, + 0.012741101905703545, + 0.060297831892967224, + -0.0065802717581391335, + 0.0011650116648525, + -0.004336193203926086, + -0.016619514673948288, + -0.07850885391235352, + -0.03404175490140915, + -0.011448578909039497, + 0.014544333331286907, + 0.017076250165700912, + 0.13277389109134674, + 0.10346084833145142, + -0.06832845509052277, + -0.03632006049156189, + 0.07223355770111084, + 0.031016236171126366, + -0.06053118407726288, + 0.04923892021179199, + 0.04372268170118332, + -0.032558292150497437, + 0.019372787326574326, + -0.01687752455472946, + -0.0607733391225338, + -0.006612725090235472, + -0.03080659918487072, + -0.04134759306907654, + -0.003795862663537264, + 0.03591069206595421, + -0.08528731018304825, + 0.028342368081212044, + -0.047108206897974014, + -0.051997046917676926, + -0.0026189126074314117, + -0.03458792343735695, + 0.0430508553981781, + 0.0192446019500494, + -0.002596672158688307, + -0.037912074476480484, + 0.014755627140402794, + 0.025481656193733215, + 0.015954259783029556, + 0.05274626612663269, + -1.7993573044655e-33, + 0.11870883405208588, + 0.032235343009233475, + -0.017472924664616585, + 0.15323318541049957, + 0.08742809295654297, + 0.0013415443245321512, + -0.0254043061286211, + -0.0758320614695549, + -0.072051040828228, + 0.07259836047887802, + -0.03140639141201973, + 0.07230149209499359, + -0.052962686866521835, + 0.07247201353311539, + 0.034046635031700134, + -0.09087053686380386, + -0.005194275639951229, + -0.047528259456157684, + -0.032972726970911026, + 0.0768829882144928, + -0.1161409467458725, + -0.019422253593802452, + -0.09207829087972641, + -0.10240856558084488, + -0.053347617387771606, + -0.05416467413306236, + 0.07867467403411865, + -0.007894232869148254, + -0.027485262602567673, + 0.046474747359752655, + 0.050943005830049515, + 0.058352991938591, + 0.03166508674621582, + -0.035795267671346664, + -0.052806053310632706, + -0.010678776539862156, + -0.08341100066900253, + -0.017536452040076256, + 0.07496153563261032, + 0.026242224499583244, + -0.07288321107625961, + -0.014382719062268734, + -0.12569494545459747, + 0.055133625864982605, + 0.034314706921577454, + 0.031130433082580566, + -0.010667177848517895, + -0.03249770775437355, + 0.02491036430001259, + 0.01527029275894165, + -0.030485548079013824, + 0.024110615253448486, + 0.002910605864599347, + 0.037442997097969055, + 0.016556914895772934, + 0.032684896141290665, + 0.08196451514959335, + 0.03460375964641571, + -0.031909044831991196, + 0.011403382755815983, + -0.004297328647226095, + 0.04724709689617157, + 0.05798317492008209, + -0.1221439316868782, + 0.05641569942235947, + -0.025975413620471954, + -0.0003559493343345821, + 0.0759444311261177, + -0.014479572884738445, + -0.0330580472946167, + 0.00386263825930655, + 0.018596258014440536, + 0.023606110364198685, + 0.04646538197994232, + 0.022944919764995575, + 0.030007379129529, + 0.026719845831394196, + 0.009967160411179066, + 0.027993790805339813, + 0.005200737155973911, + -0.09202379733324051, + 0.07138668745756149, + 0.028684033080935478, + 0.04818972945213318, + -0.04737002030014992, + -0.018165510147809982, + -0.03090549074113369, + -0.06545624881982803, + -0.03796936944127083, + 0.0485321506857872, + -0.07393182069063187, + 0.0626697987318039, + 0.10408979654312134, + -0.018205776810646057, + -0.06448513269424438, + -4.056933602647555e-34, + -0.01138237677514553, + 0.03223976865410805, + -0.09031275659799576, + 0.0017243147594854236, + -0.017688442021608353, + 0.0968969389796257, + 0.0003138198226224631, + 0.05514257401227951, + -0.04631137102842331, + -0.015203508548438549, + -0.019047390669584274, + -0.021193988621234894, + -0.07870148122310638, + -0.05661807954311371, + 0.11032071709632874, + 0.024973195046186447, + 0.032220520079135895, + 0.07401752471923828, + -0.04835784435272217, + 0.008070234209299088, + 0.029446018859744072, + -0.04961106553673744, + -0.06229788810014725, + 0.036738377064466476, + -0.00907832570374012, + 0.020069830119609833, + 0.04462656378746033, + -0.004575100727379322, + -0.0462157167494297, + -0.016842005774378777, + -0.04213530570268631, + 0.006414489354938269, + 0.005222451873123646, + 0.06907109171152115, + -0.006226749159395695, + 0.13738027215003967, + 0.09406030923128128, + -0.07521656900644302, + -0.03643067181110382, + -0.07896912097930908, + -0.06876771152019501, + 0.05820006877183914, + 0.12846645712852478, + -0.06651217490434647, + -0.002938252640888095, + 0.04825262725353241, + -0.0011615562252700329, + -0.0077031333930790424, + -0.018709739670157433, + -0.002742264186963439, + 0.0424082912504673, + -0.007916154339909554, + -0.050864074379205704, + 0.1203731968998909, + -0.011521976441144943, + -0.044707171618938446, + 0.0004957958590239286, + -0.09258206933736801, + -0.033214494585990906, + -0.011182679794728756, + -0.054765716195106506, + -0.013000323437154293, + -0.06649569422006607, + -0.010167406871914864, + -0.020735790953040123, + -0.07685038447380066, + -0.010902408510446548, + -0.06431944668292999, + -0.006127137690782547, + 0.02685864083468914, + -0.02371615543961525, + 0.0021790049504488707, + -0.02465975098311901, + 0.03077206388115883, + 0.06626711040735245, + 0.0167510025203228, + 0.08726852387189865, + 0.0308853592723608, + -0.056876812130212784, + 0.04647865146398544, + -0.006749443244189024, + 0.015598807483911514, + -0.005823309067636728, + -0.019571896642446518, + -0.04489276185631752, + 0.012963596731424332, + -0.008353655226528645, + -0.05647675320506096, + 0.04890913516283035, + 0.0259505994617939, + -0.006913753226399422, + 0.03886992856860161, + -0.06178576871752739, + -0.043610118329524994, + 0.02615695632994175, + -2.0322294957964004e-08, + 0.030326444655656815, + -0.026321014389395714, + 0.002555196639150381, + -0.05553874745965004, + -0.03548460453748703, + -0.020986156538128853, + -0.021493365988135338, + -0.04414108395576477, + -0.05007053166627884, + -0.0573449544608593, + 0.025151576846837997, + 0.012719747610390186, + -0.02929852344095707, + -0.015961134806275368, + 0.03403468430042267, + -0.05099028721451759, + -0.09990469366312027, + 0.009155788458883762, + -0.014991913922131062, + -0.10191692411899567, + 0.03937073051929474, + 0.08457730710506439, + -0.048968538641929626, + -0.0003867557388730347, + 0.0805778056383133, + 0.013864961452782154, + -0.03457501903176308, + 0.006000543478876352, + 0.0521593801677227, + 0.03882310166954994, + 0.005698389373719692, + 0.07002574950456619, + -0.06169028580188751, + -0.04822075366973877, + -0.09462675452232361, + -0.015511968173086643, + -0.053857170045375824, + 0.05590197816491127, + -0.03055129013955593, + 0.04867704212665558, + -0.0058722649700939655, + 0.012398426420986652, + -0.052860792726278305, + -0.010971739888191223, + 0.014234934002161026, + -0.02324320562183857, + 0.061968568712472916, + -0.047808244824409485, + -0.04573977738618851, + -0.0488974004983902, + 0.0307269636541605, + 0.026330972090363503, + 0.10847683995962143, + 0.07810078561306, + 0.007620504125952721, + 0.015076074749231339, + -0.04649684205651283, + 0.020153896883130074, + -0.00450350483879447, + -0.05568627268075943, + 0.02969353459775448, + -0.021037595346570015, + -0.08034979552030563, + 0.04531742259860039 + ], + "windmill-bold||*new*,turbine,energy,renewable,sustainability,countryside,landscape,green,power,buildings": [ + 0.03402850776910782, + 0.01118768285959959, + -0.0023359654005616903, + 0.03917989134788513, + 0.10078974813222885, + -0.009707191959023476, + -0.043655794113874435, + -0.08065913617610931, + -0.05124897137284279, + -0.04958455264568329, + 0.08797098696231842, + -0.06930680572986603, + 0.02170802466571331, + -0.07885640114545822, + 0.02921127714216709, + 0.058755576610565186, + -0.032670002430677414, + 0.01662604510784149, + -0.0015255624894052744, + -0.02034071274101734, + 0.012533828616142273, + -0.010644330643117428, + 0.028787042945623398, + 0.02339198999106884, + 0.10576122254133224, + 0.1083480715751648, + -0.04402383416891098, + 0.08531836420297623, + 0.011322665959596634, + -0.013484411872923374, + -0.022482771426439285, + 0.09641355276107788, + 0.006737204734236002, + -0.014185240492224693, + 0.05199198052287102, + 0.09431954473257065, + -0.008024907670915127, + 0.006438442971557379, + -0.00582818454131484, + 0.032415397465229034, + -0.04235701635479927, + -0.050455354154109955, + 0.05809931457042694, + -0.039237990975379944, + -0.03960759937763214, + 0.06974350661039352, + 0.02487853728234768, + -0.02049393020570278, + -0.00520265894010663, + -0.04949014633893967, + 0.002034040866419673, + -0.11004998534917831, + -0.0863100066781044, + -0.0047409250400960445, + 0.06203805282711983, + -0.00825732946395874, + 0.030537579208612442, + -0.025723019614815712, + 0.022153928875923157, + 0.06803397089242935, + 0.023868456482887268, + -0.05348870903253555, + -0.04349249601364136, + 0.04725003242492676, + 0.04663042351603508, + 0.010309617966413498, + -0.09081633388996124, + 0.055783674120903015, + -0.046640027314424515, + -0.06866248697042465, + 0.045486632734537125, + -0.09442070126533508, + -0.03139370307326317, + -0.026274478062987328, + -0.07932848483324051, + -0.04459298029541969, + -0.02492697164416313, + -0.009345564991235733, + -0.02334721013903618, + -0.03528391942381859, + 0.029726289212703705, + 0.002876400714740157, + -0.014364317059516907, + -0.04355257377028465, + 0.027572374790906906, + 0.05832467973232269, + -0.026167262345552444, + -0.06911925971508026, + 0.0344725102186203, + -0.02770521491765976, + -0.07978693395853043, + -0.019486160948872566, + 0.01770814135670662, + 0.07119838893413544, + 0.05557061731815338, + 0.14012087881565094, + -0.006961536593735218, + -0.03353847935795784, + -0.04019169509410858, + 0.051838938146829605, + 0.02367285266518593, + -0.01099640317261219, + 0.014624415896832943, + 0.035607051104307175, + -0.07400135695934296, + -0.006964433006942272, + -0.09615863114595413, + 0.04930179566144943, + -0.010062812827527523, + -0.04865769296884537, + 0.010292462073266506, + -0.00031289170146919787, + -0.022496633231639862, + -0.050674986094236374, + 0.02503114379942417, + -0.0553051121532917, + 0.02821759320795536, + -0.057863749563694, + 0.028513090685009956, + 0.09591322392225266, + 0.043931830674409866, + -0.009741109795868397, + -0.043262891471385956, + -0.038451775908470154, + -0.03422034904360771, + -0.002774846740067005, + -0.013791068457067013, + -4.312093477770245e-33, + -0.021947773173451424, + -0.008752740919589996, + 0.03239675238728523, + 0.10707821696996689, + 0.023480400443077087, + 0.04758452624082565, + -0.047624118626117706, + -0.02119864523410797, + -0.003536270000040531, + 0.038948241621255875, + 0.1137729063630104, + 0.057850781828165054, + -0.029111387208104134, + 0.05247896537184715, + 0.09683609008789062, + -0.1202312782406807, + 0.06508386880159378, + -0.010504748672246933, + -0.02140294760465622, + -0.010324819013476372, + -0.0033475691452622414, + 0.05293077230453491, + -0.01010822132229805, + -0.03346191719174385, + -0.02937137894332409, + -0.09495822340250015, + 0.0810643658041954, + -0.06506888568401337, + -0.03931760415434837, + 0.04653790965676308, + 0.02724582888185978, + -0.00045683252392336726, + -0.04902799054980278, + -0.023725563660264015, + -0.06441514939069748, + 0.0012070261873304844, + -0.03712392970919609, + -0.06023271754384041, + -0.028667869046330452, + 0.010020331479609013, + -0.11766669899225235, + -0.003945825155824423, + -0.09670445322990417, + 0.08618120849132538, + 0.06978165358304977, + 0.08580672740936279, + 0.008054640144109726, + 0.013573534786701202, + 0.03929375112056732, + 0.014533529058098793, + -0.03943096101284027, + 0.014480674639344215, + -0.0814148560166359, + -0.011270479299128056, + 0.05564338341355324, + 0.015345352701842785, + -0.017274029552936554, + 0.06254605203866959, + -0.029204919934272766, + 0.0013287394540384412, + -0.012452463619410992, + 0.019383175298571587, + -0.04067510366439819, + -0.04594649374485016, + 0.06699887663125992, + 0.0009900169679895043, + -0.02414814569056034, + 0.04749065265059471, + -0.01542526762932539, + 0.035044219344854355, + -0.0008767676772549748, + -0.011483460664749146, + 0.006253343541175127, + 0.1027202308177948, + 0.029969211667776108, + 0.059558041393756866, + -0.055540356785058975, + 0.058766044676303864, + -0.0813961997628212, + 0.014676247723400593, + -0.08269162476062775, + 0.09661459177732468, + -0.09856823086738586, + 0.035144686698913574, + 0.0026709067169576883, + -0.02468736469745636, + 0.015229395590722561, + -0.08236534148454666, + 0.030137671157717705, + -0.06531092524528503, + -0.051235318183898926, + 0.037768181413412094, + 0.07926948368549347, + -0.04886801168322563, + -0.13493022322654724, + 5.199246411175518e-34, + -0.03740164637565613, + 0.031920064240694046, + -0.06506959348917007, + -0.05299101024866104, + 0.00017999725241679698, + 0.03321564570069313, + -0.05307958275079727, + -0.028778675943613052, + -0.03390907868742943, + 0.050775010138750076, + -0.05476471036672592, + -0.0012391583295539021, + -0.06087499484419823, + -0.023903071880340576, + -0.0033851049374789, + -0.003159601939842105, + -0.02245861478149891, + 0.015014990232884884, + -0.052581075578927994, + 0.09889576584100723, + 0.009867128916084766, + 0.009427066892385483, + -0.07455231994390488, + 0.037062227725982666, + -0.031517140567302704, + 0.07149335741996765, + -0.09061826765537262, + -0.06991570442914963, + 0.0402878038585186, + 0.04685695096850395, + -0.08252127468585968, + -0.016780013218522072, + 0.03617300093173981, + 0.09893298894166946, + -0.05354849994182587, + 0.023637153208255768, + 0.027966119349002838, + -0.11179115623235703, + 0.0022482064086943865, + 0.060283418744802475, + 0.034479185938835144, + -0.04555998370051384, + 0.08477170765399933, + 0.010131105780601501, + -0.05737389996647835, + -0.04866994172334671, + -0.1241227313876152, + -0.03290354087948799, + -0.04414764419198036, + 0.024464895948767662, + 0.07942500710487366, + 0.032609082758426666, + -0.08181846886873245, + -0.029407674446702003, + 0.01365057285875082, + -0.08507560193538666, + 0.0773187205195427, + 0.001487330300733447, + -0.016678880900144577, + -0.024650219827890396, + -0.007485466543585062, + 0.008445806801319122, + -0.024671360850334167, + 0.12238078564405441, + -0.015595154836773872, + -0.04206124693155289, + 0.008302667178213596, + -0.03919938579201698, + -0.007483224850147963, + -0.06483549624681473, + -0.05020811781287193, + 0.08114396780729294, + -0.07338253408670425, + -0.050390396267175674, + -0.022266391664743423, + 0.03758951276540756, + 0.09419386088848114, + 0.03347545117139816, + -0.0402485728263855, + 0.0215898547321558, + -0.009667736478149891, + 0.02494231052696705, + 0.004658065270632505, + -0.019616669043898582, + -0.017076188698410988, + -0.04763462394475937, + -0.017025230452418327, + -0.08752439171075821, + 0.10871249437332153, + 0.028998976573348045, + -0.01316780224442482, + -0.019127829000353813, + -0.04750882461667061, + 0.05672328174114227, + 0.04186026379466057, + -2.524754094679338e-08, + -0.021997814998030663, + 0.002976047806441784, + 0.0022018959280103445, + -0.01391465961933136, + -0.006189591716974974, + -0.03426254168152809, + -0.013380076736211777, + -0.047425102442502975, + -0.03006494604051113, + 0.053812190890312195, + 0.02048538438975811, + 0.06361014395952225, + 0.020339293405413628, + 0.023877235129475594, + 0.040429070591926575, + -0.04700542986392975, + -0.04195305332541466, + 0.039936307817697525, + 0.012198444455862045, + -0.008033479563891888, + 0.009953483939170837, + 0.06366924941539764, + -0.043543219566345215, + 0.00043573271250352263, + 0.03671964257955551, + -0.006587285548448563, + -0.05708756670355797, + -0.028924472630023956, + 0.08546338975429535, + 0.047964852303266525, + 0.03500410541892052, + 0.04214255139231682, + -0.004076165147125721, + -0.06756415218114853, + -0.15610860288143158, + 0.019282804802060127, + -0.04357847571372986, + -0.009337428957223892, + -0.06406689435243607, + 0.009553828276693821, + -0.016921715810894966, + 0.00441701989620924, + -0.043971944600343704, + 0.01332145743072033, + 0.010471859946846962, + -0.024590957909822464, + 0.03618031367659569, + -0.04856061562895775, + 0.0035371624398976564, + -0.03524208813905716, + -0.04736080393195152, + -0.008084779605269432, + 0.1453353613615036, + 0.06717414408922195, + 0.002155083930119872, + 0.046896595507860184, + -0.030382491648197174, + -0.005033534485846758, + -0.020179083570837975, + -0.07815531641244888, + 0.11022082716226578, + 0.02629249542951584, + 0.04074545204639435, + 0.036550235003232956 + ], + "windows-logo-bold||microsoft,computers": [ + 0.030962014570832253, + 0.05505771189928055, + -0.05471866577863693, + 0.013980246149003506, + 0.05087822675704956, + -0.02276064269244671, + 0.07177955657243729, + -0.055815618485212326, + 0.04885106161236763, + -0.010835538618266582, + -0.03800145536661148, + 0.060412418097257614, + 0.035512883216142654, + -0.04996517673134804, + 0.01037500984966755, + -0.021006759256124496, + -0.03276917338371277, + -0.01660376600921154, + -0.0033113223034888506, + -0.00928068533539772, + 0.013606366701424122, + -0.026053452864289284, + -0.03029022179543972, + 0.009714791551232338, + 0.060409195721149445, + 0.0070571498945355415, + 0.0404866486787796, + -0.009330570697784424, + -0.020662149414420128, + -0.035801004618406296, + -0.06224953755736351, + -0.034902408719062805, + 0.09780318289995193, + 0.013782844878733158, + 0.05180484429001808, + -0.01796642690896988, + 0.032149042934179306, + 0.001086907577700913, + 0.021722670644521713, + -0.023106681182980537, + 0.03343700245022774, + -0.023753320798277855, + 0.08778879046440125, + 0.02803410403430462, + 0.0001574585767230019, + 0.021819494664669037, + -0.030605671927332878, + 0.0001595118665136397, + 0.01618114858865738, + -0.0005491286865435541, + 0.006162494886666536, + -0.1039758175611496, + -0.042873576283454895, + -0.08843299001455307, + -0.04005201533436775, + -0.05702792480587959, + 0.035579875111579895, + -0.005244762171059847, + 0.003133658552542329, + -0.05783449113368988, + 0.000546368071809411, + -0.024210337549448013, + 0.008792301639914513, + 0.07693557441234589, + 0.08800984919071198, + 0.009141485206782818, + 0.002730587963014841, + 0.01002566609531641, + -0.07207693159580231, + -0.011170454323291779, + 0.02959122136235237, + -0.022075502201914787, + -0.017296846956014633, + -0.0028854727279394865, + -0.06713072210550308, + 0.04918978363275528, + 0.04554567113518715, + 0.043951310217380524, + 0.006724169012159109, + -0.05085461586713791, + -0.047641269862651825, + -0.02066841535270214, + -0.03628510981798172, + 0.027727244421839714, + 0.0953654795885086, + 0.04057668522000313, + -0.12574957311153412, + -0.07307972013950348, + 0.007856938056647778, + 0.025780724361538887, + -0.10002714395523071, + -0.00254796608351171, + 0.05996384099125862, + 0.04109097644686699, + -0.0455329567193985, + -0.02475886046886444, + 0.03433690220117569, + -0.024820322170853615, + -0.04998743534088135, + 0.06342560052871704, + -0.02548369951546192, + 0.050357602536678314, + 0.1318795382976532, + -0.0355675108730793, + 0.005690235178917646, + 0.005625323858112097, + 0.03484419733285904, + -0.01746065728366375, + 0.025563916191458702, + -0.0019990948494523764, + -0.003051021136343479, + -0.029927032068371773, + -0.04291461408138275, + -0.03651653975248337, + -0.038586217910051346, + -0.06954314559698105, + -0.07981722056865692, + -0.024367835372686386, + 0.06105499342083931, + 0.003843161044642329, + -0.05314161255955696, + -0.08663392812013626, + -0.050127334892749786, + -0.08636061102151871, + 0.036967117339372635, + 0.013973436318337917, + 0.009695621207356453, + -3.678001702893963e-33, + 0.007069066632539034, + 0.06527122110128403, + -0.011281919665634632, + 0.08713670074939728, + 0.02626214362680912, + 0.039414942264556885, + -0.0048318482004106045, + -0.10814876109361649, + -0.06846025586128235, + 0.006417527329176664, + 0.04663629084825516, + 0.08904928714036942, + 0.05178461968898773, + 0.045997314155101776, + 0.04245961830019951, + -0.04709058627486229, + 0.03919666260480881, + -0.02674000710248947, + -0.11998291313648224, + -0.019299784675240517, + 0.002265172777697444, + 0.020616209134459496, + -0.07639042288064957, + -0.08080348372459412, + -0.04385242611169815, + -0.042822062969207764, + 0.004774591885507107, + 0.03666134551167488, + 0.024846451357007027, + 0.019311701878905296, + 0.06351018697023392, + 0.02570769004523754, + 0.02493005245923996, + 0.003304074751213193, + -0.046342071145772934, + -0.006218926981091499, + -0.020535442978143692, + -0.017468130216002464, + 0.0564744807779789, + 0.054854389280080795, + -0.0466308631002903, + -0.037613965570926666, + 0.038604069501161575, + -0.00927040632814169, + 0.03133903071284294, + 0.13111189007759094, + 0.009123622439801693, + -0.10966268926858902, + 0.02061159908771515, + -0.00577399181202054, + 0.004082284867763519, + -0.015970226377248764, + 0.007704606279730797, + -0.017610780894756317, + -0.019377896562218666, + -0.028460729867219925, + 0.008468542248010635, + 0.06912393867969513, + 0.029490429908037186, + -0.000967843399848789, + 0.0208834707736969, + 0.0036150042433291674, + 0.05357687175273895, + 0.01056881807744503, + -0.007700336631387472, + 0.06585767865180969, + 0.019619030877947807, + 0.049792639911174774, + 0.000876003410667181, + -0.0621144101023674, + 0.060320302844047546, + -0.01915052905678749, + 0.045727066695690155, + 0.024111777544021606, + -0.08621490001678467, + 0.03729880228638649, + 0.01923150196671486, + 0.038477327674627304, + -0.01886460930109024, + 0.027931105345487595, + -0.09123431891202927, + -0.032426655292510986, + -0.08839278668165207, + 0.025059999898076057, + 0.01937190815806389, + 0.034621354192495346, + -0.03859071061015129, + -0.02348821423947811, + -0.029496347531676292, + 0.03956075757741928, + -0.04144978150725365, + -0.02014179527759552, + -0.00737005053088069, + 0.053015224635601044, + -0.11385949701070786, + 1.1164321881781986e-33, + 0.024738026782870293, + 0.019315747544169426, + 0.018667863681912422, + -0.04691828042268753, + -0.05778311938047409, + 0.02288256399333477, + 0.06291806697845459, + -0.01635841839015484, + -0.08925368636846542, + 0.00590999610722065, + 0.1402546763420105, + 0.04287943243980408, + -0.0699351504445076, + -0.005736520513892174, + -0.010072162374854088, + 0.029301121830940247, + 0.11315219849348068, + 0.0999860167503357, + -0.08312305063009262, + -0.007603313773870468, + -0.04597819223999977, + -0.05864040553569794, + -0.103281669318676, + 0.07295018434524536, + 0.010904769413173199, + 0.02581797167658806, + -0.009055747650563717, + -0.016585489735007286, + -0.04729466885328293, + 0.0022091034334152937, + -0.031859152019023895, + 0.03600774705410004, + -0.020863806828856468, + 0.03129511699080467, + 0.029172927141189575, + -0.005862814374268055, + 0.002705593127757311, + -0.1326957494020462, + 0.0033101001754403114, + 0.012374580837786198, + -0.014731194823980331, + -0.014353243634104729, + 0.013014150783419609, + 0.09393288940191269, + -0.03142436966300011, + 0.012487969361245632, + -0.05981181189417839, + -0.13320225477218628, + -0.0560966394841671, + 0.11320262402296066, + 0.04834888130426407, + -0.06448715180158615, + 0.03529196232557297, + 0.01789783127605915, + -0.08198510855436325, + -0.05020272731781006, + -0.008870011195540428, + 0.07031434774398804, + 0.02407737635076046, + 0.08546464145183563, + -0.006650332827121019, + -0.010625431314110756, + -0.06436531990766525, + -0.0021909980569034815, + -0.029553165659308434, + 0.04553091526031494, + 0.10620342940092087, + 0.05415230616927147, + -0.01922161504626274, + 0.014199385419487953, + -0.013942403718829155, + -0.01728634536266327, + -0.024502770975232124, + 0.03717914968729019, + -0.043891940265893936, + -0.04803414270281792, + 0.09142585098743439, + -0.004808344412595034, + -0.09107588231563568, + 0.04592355713248253, + 0.0038709307555109262, + -0.013310188427567482, + -0.08071764558553696, + 0.06687946617603302, + -0.019697697833180428, + -0.016229800879955292, + -0.016667239367961884, + -0.00769818015396595, + -0.03513803705573082, + -0.023136023432016373, + -0.08310870826244354, + 0.023772461339831352, + 0.09945528209209442, + -0.018954580649733543, + -0.028977520763874054, + -1.6550844250673435e-08, + -0.0750802531838417, + -0.05931668356060982, + 0.05951301008462906, + -0.013358029536902905, + 0.040712401270866394, + 0.031590402126312256, + -0.06683169305324554, + -0.0950842797756195, + -0.03551393747329712, + -0.031848013401031494, + -0.06102324277162552, + -0.06699124723672867, + -0.04537587612867355, + -0.05031775310635567, + 0.050575513392686844, + 0.006171379238367081, + -0.1220933049917221, + 0.07197140902280807, + 0.015067540109157562, + -0.030119985342025757, + -0.010446710512042046, + 0.06697146594524384, + 0.11080118268728256, + 0.04263519495725632, + 0.010731645859777927, + 0.03853457048535347, + 0.004246546421200037, + -0.018124805763363838, + 0.06514659523963928, + 0.069243885576725, + 0.02122727781534195, + 0.09772588312625885, + 0.05874894559383392, + 0.03742459788918495, + -0.07291282713413239, + -0.03817598894238472, + 0.029113242402672768, + 0.06044420599937439, + -0.01396261341869831, + 0.057607151567935944, + -0.031060392037034035, + -0.004283217713236809, + -0.07175108790397644, + -0.01922021619975567, + 0.0036335252225399017, + 0.028039654716849327, + 0.020494086667895317, + 0.04391349479556084, + -0.07071225345134735, + -0.10646835714578629, + -0.020432719960808754, + 0.05765116214752197, + 0.024610081687569618, + 0.11704644560813904, + -0.08736222982406616, + -0.13186690211296082, + -0.014645732939243317, + 0.09437380731105804, + 0.04259572923183441, + 0.07199224084615707, + 0.13101515173912048, + -0.02965274453163147, + -0.011277830228209496, + -0.017374057322740555 + ], + "wine-bold||drinks,beverages,vineyard,places,locations,bars,restaurants,food,dining": [ + 0.08645883947610855, + -0.04011514037847519, + -0.04404539614915848, + 0.057105228304862976, + -0.009961589239537716, + 0.03855867683887482, + 0.012745941989123821, + -0.0923546776175499, + -0.051834773272275925, + -0.0461907796561718, + 0.02101731486618519, + -0.0222859475761652, + -0.013087475672364235, + -0.015850530937314034, + 0.010467492043972015, + -0.004954098723828793, + 0.10441022366285324, + -0.022995121777057648, + 0.08239632844924927, + 0.0025020642206072807, + 0.007064552512019873, + 0.01958383060991764, + 0.04534691572189331, + 0.05997670814394951, + 0.07630130648612976, + -0.004357834346592426, + -0.017979001626372337, + 0.08912262320518494, + -0.014623276889324188, + -0.042655184864997864, + -0.007968604564666748, + 0.0932106301188469, + 0.102618008852005, + -0.020265527069568634, + -0.018559124320745468, + -0.015370168723165989, + 0.021525884047150612, + -0.0750747099518776, + 0.03557939827442169, + 0.08945231139659882, + 0.02517458237707615, + 0.029110604897141457, + -0.028638601303100586, + 0.062400344759225845, + -0.031520698219537735, + -0.0048089236952364445, + -0.07768336683511734, + 0.03947846218943596, + 0.03477907180786133, + 0.051556702703237534, + -0.03383360058069229, + -0.04341603443026543, + -0.07493292540311813, + -0.026136063039302826, + 0.06018387898802757, + -0.04578869417309761, + -0.03759630769491196, + -0.005860089790076017, + 0.05006017908453941, + 0.06188162416219711, + 0.09181201457977295, + -0.0016642878763377666, + -0.028910966590046883, + 0.07652474194765091, + 0.007407790515571833, + 0.022767532616853714, + -0.06894499063491821, + 0.07280603051185608, + -0.07567397505044937, + -0.0794360339641571, + -0.012634022161364555, + -0.047132208943367004, + 0.03547542542219162, + -0.011057885363698006, + -0.08142567425966263, + -0.06281048059463501, + 0.05527930706739426, + -0.030178219079971313, + -0.07608737796545029, + 0.0055528366938233376, + -0.13746356964111328, + -0.026276327669620514, + -0.0556749664247036, + -0.0009723940165713429, + -0.04463723674416542, + 0.013997364789247513, + -0.06810317188501358, + -0.001564165111631155, + 0.027149097993969917, + -0.013404104858636856, + -0.12230755388736725, + -0.05340607091784477, + -0.07154438644647598, + -0.05244594067335129, + -0.018108665943145752, + 0.07051477581262589, + 0.07185225933790207, + -0.017546162009239197, + -0.003991438075900078, + 0.022156840190291405, + 0.049448251724243164, + 0.06786468625068665, + 0.0041724457405507565, + -0.04382439702749252, + -0.0765712633728981, + 0.03041563183069229, + -0.07884310185909271, + 0.041755449026823044, + 0.013754808343946934, + -0.0008793848101049662, + -0.06542866677045822, + 0.014847075566649437, + 0.03690396621823311, + -0.059404462575912476, + -0.03953167051076889, + 0.00038558259257115424, + 0.03863433748483658, + -0.012361998669803143, + 0.07908783107995987, + -0.012677415274083614, + -0.04741694778203964, + 0.024185558781027794, + 0.053633201867341995, + -0.026775958016514778, + -0.0549728199839592, + 0.017963066697120667, + 0.0343516543507576, + -4.367252080814642e-33, + -0.005701560527086258, + -0.05847113952040672, + -0.01854422688484192, + 0.09945396333932877, + 0.06820838898420334, + -0.03471590578556061, + -0.032536763697862625, + -0.04302927851676941, + -0.0767679512500763, + -0.0038546526338905096, + 0.08725877106189728, + -0.036028534173965454, + -0.012668601237237453, + 0.034192804247140884, + 0.09262184053659439, + -7.214322977233678e-05, + 0.05905965715646744, + -0.029011337086558342, + -0.10710941255092621, + -0.047315679490566254, + -0.04969782382249832, + -0.012936698272824287, + -0.024575423449277878, + 0.04583287984132767, + -0.1124332919716835, + -0.029035400599241257, + 0.07274644821882248, + 0.047747544944286346, + -0.010447483509778976, + 0.008422779850661755, + 0.021007275208830833, + 0.02659391611814499, + 0.03645776957273483, + -0.014532029628753662, + 0.004189626779407263, + 0.00990021787583828, + -0.07597342133522034, + -0.015366983599960804, + 0.029646307229995728, + 0.016002073884010315, + -0.0255526602268219, + 0.04403184354305267, + 0.023707397282123566, + 0.09698974341154099, + 0.009468065574765205, + 0.09258930385112762, + -0.03991024196147919, + -0.05261056125164032, + 0.03604617342352867, + 0.016193371266126633, + -0.06186376139521599, + -0.006566849537193775, + -0.022714396938681602, + 0.04526899382472038, + -0.05561743676662445, + 0.032729968428611755, + -0.032290056347846985, + 0.06189717724919319, + -0.004588172771036625, + -0.0711551308631897, + 0.041144050657749176, + 0.01700136810541153, + 0.04065448418259621, + -0.06472495198249817, + -0.040482889860868454, + 0.07130049914121628, + -0.047280509024858475, + -0.004732829984277487, + 0.09978022426366806, + -0.010456941090524197, + 0.009375280700623989, + 0.07582462579011917, + 0.043141044676303864, + 0.04927404597401619, + 0.05122411996126175, + 0.07675600051879883, + -0.020787201821804047, + -0.03969012200832367, + 0.011839824728667736, + -0.006415884010493755, + -0.12142398208379745, + -0.038146331906318665, + -0.0483587346971035, + 0.12698855996131897, + -0.036279600113630295, + 0.00643894262611866, + 0.012400216422975063, + -0.12380017340183258, + 0.029309041798114777, + -0.029849780723452568, + -0.11948716640472412, + -0.005194369237869978, + -0.0020389819983392954, + -0.08670390397310257, + -0.02818930149078369, + 3.7493108636346892e-34, + 0.0656537190079689, + -0.06062029302120209, + 0.031241968274116516, + -0.06942132115364075, + -0.007378285750746727, + -0.013292765244841576, + -0.05767212435603142, + -0.011739309877157211, + 0.011542676016688347, + -0.0325290709733963, + -0.09369976818561554, + 0.028164546936750412, + -0.062334924936294556, + -0.039526112377643585, + -0.06918696314096451, + 0.08095624297857285, + 0.11067871749401093, + 0.08800333738327026, + -0.0037097525782883167, + 0.004641522187739611, + -0.02065231278538704, + 0.019951535388827324, + -0.05491878464818001, + 0.0068416837602853775, + -0.001622496172785759, + 0.0471394918859005, + -0.021465370431542397, + -0.03802619129419327, + -0.08277712017297745, + -0.023869285359978676, + -0.011629500426352024, + -0.0409412682056427, + 0.04227806627750397, + 0.02372358739376068, + -0.07259039580821991, + 0.10635045170783997, + 0.019560523331165314, + -0.08359573781490326, + -0.01364454161375761, + 0.041617147624492645, + 0.08737414330244064, + -0.04285885766148567, + 0.011244633235037327, + 0.08004337549209595, + 0.04566110670566559, + 0.04677398502826691, + -0.10706634074449539, + -0.05432849004864693, + -0.003845758503302932, + 0.05241025984287262, + 0.05509534478187561, + 0.0521976538002491, + -0.0581529438495636, + 0.07559334486722946, + 0.03064924106001854, + -0.055451586842536926, + 0.0031727496534585953, + -0.006623024586588144, + -0.07625637948513031, + -0.012090858072042465, + -0.021782323718070984, + 0.09573979675769806, + -0.029151668772101402, + 0.039931271225214005, + 0.030727503821253777, + -0.023956507444381714, + -0.0072692581452429295, + -0.0053986599668860435, + 0.0044701057486236095, + -0.036955416202545166, + -0.023282213136553764, + -0.00934686977416277, + -0.03703225031495094, + 0.08622103929519653, + -0.04836812615394592, + -0.02873069979250431, + 0.009347635321319103, + 0.011221094988286495, + -0.04770620912313461, + 0.0898788720369339, + -0.027555080130696297, + -0.05206570029258728, + -0.03146999329328537, + 0.10884405672550201, + 0.010449431836605072, + -0.028525451198220253, + 0.02676996774971485, + -0.05275765433907509, + -0.017023740336298943, + 0.003406227333471179, + -0.027827883139252663, + 0.053012680262327194, + -0.06533218175172806, + -0.048037320375442505, + 0.011763404123485088, + -2.3345377186956284e-08, + 0.04071548208594322, + -0.004768189042806625, + -0.04804445058107376, + 0.08229824900627136, + -0.018423788249492645, + -0.09354046732187271, + 2.6639811039785855e-05, + 0.012984576635062695, + -0.03648652508854866, + 0.04899408668279648, + -0.03349275141954422, + 0.021649613976478577, + -0.03452480956912041, + -0.050202738493680954, + 0.04492578282952309, + 0.022434281185269356, + 0.008401858620345592, + 0.013655065558850765, + -0.011969592422246933, + -0.026010923087596893, + -0.01846322789788246, + 0.05167550593614578, + 0.005543365143239498, + -0.004091161768883467, + -0.04937586933374405, + -0.020083677023649216, + -0.025218132883310318, + 0.0013913062866777182, + 0.12699905037879944, + 0.016308777034282684, + 0.03300478309392929, + 0.06390077620744705, + -0.01490017119795084, + 0.034253641963005066, + -0.09081898629665375, + 0.022274861112236977, + -0.08775972574949265, + -0.015771836042404175, + -0.04385625198483467, + 0.06719028949737549, + -0.035898953676223755, + -0.09175451099872589, + -0.0724538266658783, + 0.0017183679156005383, + -0.026421688497066498, + 0.06491690874099731, + 0.03484167903661728, + 0.02356080897152424, + -0.027820490300655365, + -0.04867224022746086, + 0.0009489418007433414, + 0.06634441763162613, + 0.11134856194257736, + 0.008398439735174179, + -0.028652803972363472, + 0.02207387238740921, + -0.032237548381090164, + -0.01783948764204979, + 0.03845223784446716, + -0.009659918956458569, + 0.14206437766551971, + -0.028220409527420998, + 0.021016612648963928, + -0.016284486278891563 + ], + "wrench-bold||settings,setup,preferences,tools,machinery,mechanical,repairs": [ + -0.032397639006376266, + -0.040673766285181046, + -0.025849414989352226, + 0.07062797248363495, + -0.02771518938243389, + -0.04321593418717384, + 9.845283057074994e-05, + -0.020583882927894592, + -0.05828415974974632, + 0.00830750446766615, + 0.003400244517251849, + 0.021972225978970528, + 0.0238176416605711, + -0.0899907574057579, + -0.06010597571730614, + 0.025521086528897285, + 0.0003511877730488777, + -0.04471679404377937, + -0.040159422904253006, + -0.0029737127479165792, + -0.02160082384943962, + 0.025475211441516876, + 0.033721357583999634, + 0.03557531163096428, + 0.03702139854431152, + 0.03275778889656067, + 0.01865164376795292, + 0.0519409216940403, + 0.003677085740491748, + -0.07624435424804688, + -0.01932257041335106, + 0.0006530688260681927, + 0.04732992872595787, + -0.011005202308297157, + 0.06644052267074585, + 0.03626087307929993, + 0.008211216889321804, + -0.041588254272937775, + -0.018672272562980652, + -0.012678494676947594, + -0.012475420720875263, + -0.060167863965034485, + 0.027644507586956024, + -0.05207773298025131, + 0.010610311292111874, + 0.06334052979946136, + 0.004599824082106352, + -0.09422533959150314, + 0.06239200010895729, + -0.008252663537859917, + -0.0013551037991419435, + -0.10113956779241562, + -0.07656878978013992, + 0.002685898682102561, + 0.0270493533462286, + 0.06652414798736572, + -0.025344956666231155, + -0.027370939031243324, + 0.025064820423722267, + -0.05597260966897011, + 0.040333449840545654, + 0.023333530873060226, + -0.02094365656375885, + 0.10685262829065323, + 0.011083176359534264, + 0.05260959640145302, + 0.036802299320697784, + -0.07486125826835632, + -0.0034029583912342787, + -0.0021764582488685846, + 0.006502954289317131, + 0.01131350826472044, + -0.010048267431557178, + 0.0522364005446434, + -0.004888003226369619, + -0.051067497581243515, + 0.06121944263577461, + -0.012165779247879982, + 0.014898440800607204, + -0.004820385482162237, + -0.07717075943946838, + 0.02444777637720108, + 0.007417840883135796, + 0.05633166432380676, + 0.04411853477358818, + 0.030325014144182205, + -0.0137464739382267, + -0.066497802734375, + 0.06852727383375168, + 0.033632174134254456, + -0.09341470152139664, + -0.07489122450351715, + -0.032222870737314224, + 0.023516301065683365, + -0.08594067394733429, + 0.06523267924785614, + 0.05514557287096977, + 0.05065372213721275, + -0.07438193261623383, + 0.056969206780195236, + -0.00230551534332335, + -0.020006008446216583, + 0.08176275342702866, + 0.013708509504795074, + -0.07987075299024582, + -0.005136796738952398, + -0.044501207768917084, + 0.0307852104306221, + -0.011926728300750256, + -0.01413422916084528, + 0.04742083698511124, + -0.0222112238407135, + 0.002687302650883794, + -0.0535200834274292, + 0.021386105567216873, + -0.03595653176307678, + -0.05752114951610565, + 0.00029410209390334785, + 0.04911913722753525, + 0.08133155107498169, + 0.036789026111364365, + -0.05126624181866646, + -0.041033029556274414, + -0.08017062395811081, + 0.028340017423033714, + 0.10954785346984863, + 0.02327382192015648, + -3.377901668548879e-33, + 0.06733978539705276, + -0.039378274232149124, + -0.013357323594391346, + 0.08198865503072739, + -0.0012905006296932697, + 0.07124114036560059, + -0.022880475968122482, + -0.01624896377325058, + -0.06564830243587494, + 0.05872942879796028, + 0.11832807958126068, + 0.09178783744573593, + -0.09001395851373672, + 0.05444533750414848, + 0.06593862920999527, + -0.05510246381163597, + 0.03330538794398308, + 0.016597025096416473, + -0.08561883121728897, + -0.015537649393081665, + -0.05716285854578018, + 0.011769291944801807, + -0.06746862828731537, + 0.02019747905433178, + 0.03909500688314438, + 0.010168956592679024, + 0.07465820759534836, + 0.0299773458391428, + -0.03967328742146492, + 0.02388525754213333, + -0.03283064067363739, + 0.05229548364877701, + 0.05853935703635216, + 0.026071149855852127, + -0.07432135194540024, + -0.023706067353487015, + -0.07668306678533554, + -0.06275142729282379, + -0.002170385094359517, + 0.01235805731266737, + -0.05018485710024834, + -0.003048427402973175, + -0.08896911144256592, + -0.07778937369585037, + 0.0616859532892704, + 0.08099113404750824, + 0.002787570934742689, + 0.04180843383073807, + 0.028783153742551804, + 0.0053165084682404995, + -0.05412862449884415, + 0.034136585891246796, + 0.1117720976471901, + 0.08940613269805908, + 0.004970383830368519, + 0.004976134281605482, + 0.042960453778505325, + 0.01922674849629402, + 0.011896063573658466, + 0.04570794105529785, + -0.021523667499423027, + 0.04671210050582886, + 0.10491424053907394, + 0.03415914997458458, + 0.049571238458156586, + 0.04318585619330406, + 0.027471506968140602, + 0.042444124817848206, + 0.07291214913129807, + -0.032049503177404404, + -0.10383975505828857, + -0.00025435423594899476, + -0.015169723890721798, + 0.08072306215763092, + -0.06702177226543427, + 0.021803179755806923, + 0.044530365616083145, + 0.030123040080070496, + 0.010564971715211868, + -0.05987617000937462, + -0.08053334057331085, + 0.04862934723496437, + -0.05950776860117912, + 0.10431331396102905, + 0.02393154986202717, + -0.015209550969302654, + -0.011850161477923393, + -0.062413010746240616, + 0.015477911569178104, + 0.023574432358145714, + -0.0752471461892128, + -0.019801044836640358, + -0.09145798534154892, + 0.012793165631592274, + -0.10923656076192856, + 7.736973410707752e-34, + 0.024277564138174057, + -0.026892298832535744, + -0.05979633331298828, + 0.08208615332841873, + -0.04177463427186012, + 0.006790644023567438, + -0.008562593720853329, + -0.03203975409269333, + 0.05756466090679169, + 7.872514106566086e-05, + 0.06076987087726593, + 0.007799393497407436, + -0.10237353295087814, + -0.06322143971920013, + 0.028180275112390518, + 0.046369053423404694, + -0.04176171496510506, + -0.0052820597775280476, + -0.018093151971697807, + 0.021515194326639175, + -0.025182679295539856, + 0.020969651639461517, + -0.04578987509012222, + 0.03184393048286438, + 0.0037575378082692623, + -0.0313061885535717, + -0.08244982361793518, + -0.022383123636245728, + -0.11837727576494217, + -0.019209353253245354, + -0.04223165288567543, + -0.019714972004294395, + 0.05095624923706055, + 0.09135347604751587, + -0.0682179406285286, + 0.0007471731514669955, + 0.03240668773651123, + -0.03751674294471741, + 0.01798250712454319, + 0.07649969309568405, + 0.03129728510975838, + 0.08170054107904434, + -0.007383866235613823, + 0.0958658903837204, + -0.0793227031826973, + -0.0003480385057628155, + -0.04313897341489792, + -0.18084625899791718, + 0.008445745334029198, + 0.07326232641935349, + 0.04156823083758354, + -0.025049259886145592, + 0.03187040612101555, + 0.020980825647711754, + -0.08074980229139328, + -0.05098353698849678, + 0.006882917135953903, + -0.07800514996051788, + 0.004453899338841438, + 0.06550313532352448, + 0.014843607321381569, + 0.03588733822107315, + -0.035879846662282944, + 0.057714156806468964, + -0.02121846005320549, + -0.04716680571436882, + 0.03608054667711258, + -0.011533034034073353, + 0.005229854490607977, + -0.03499266877770424, + 0.03435535356402397, + -0.04801961034536362, + 0.11498746275901794, + -0.047154754400253296, + 0.06673138588666916, + -0.03841723874211311, + 0.032244954258203506, + -0.06959493458271027, + -0.01757262460887432, + 0.023529214784502983, + 0.02348732203245163, + -0.024894114583730698, + 0.02076101116836071, + 0.08881493657827377, + -0.11497444659471512, + 0.03866523504257202, + -0.05728864297270775, + 0.08106394857168198, + 0.01977831870317459, + -0.03038640320301056, + -0.04815440997481346, + 0.01269935816526413, + 0.02538604475557804, + 0.011730892583727837, + -0.09525221586227417, + -2.190380676836412e-08, + -0.05997835472226143, + -0.02429843693971634, + -0.004442532546818256, + -0.011922665871679783, + 0.07237031310796738, + -0.011974819004535675, + -0.00964354258030653, + 0.04316120967268944, + -0.08366037160158157, + 0.0022390896920114756, + 0.06158586964011192, + 9.223109373124316e-06, + -0.03244651481509209, + -0.020174561068415642, + 0.050577741116285324, + -0.0428861565887928, + -0.08663426339626312, + 0.08938484638929367, + -0.06919857859611511, + -0.11756685376167297, + 0.020064864307641983, + 0.008840449154376984, + 0.11147531867027283, + 0.0036691799759864807, + 0.06336917728185654, + -0.02333831414580345, + -0.10250511765480042, + 0.02739935927093029, + 0.016022173687815666, + 0.13000109791755676, + 0.009731092490255833, + 0.02677196078002453, + 0.03538600355386734, + -0.011900809593498707, + -0.04985782504081726, + -0.021764183416962624, + -0.07411819696426392, + 0.03597581759095192, + 0.0012477984419092536, + 0.07466237992048264, + -0.041024331003427505, + -0.028371961787343025, + -0.06408955901861191, + -0.005230696406215429, + -0.07800021767616272, + 0.036869242787361145, + 0.0009098423179239035, + -0.02215447463095188, + -0.07555870711803436, + -0.06310155242681503, + -0.006706537213176489, + 0.05332128703594208, + 0.054633889347314835, + 0.07336382567882538, + -0.03868401423096657, + 0.0011271541006863117, + 0.033102136105298996, + 0.027453072369098663, + -0.02750331349670887, + 0.00028323064907453954, + 0.01850453019142151, + 0.017252735793590546, + -0.005606846883893013, + -0.05031108856201172 + ], + "x-bold||\u00d7,closed,cancelled,dismissed,times,multiply,mulitplication,product,mathematics,arithmetic,calculator": [ + 0.016805164515972137, + -0.018515249714255333, + -0.03494096174836159, + -0.012824987061321735, + -0.04389054700732231, + -0.021548854187130928, + 0.07129787653684616, + 0.007430621888488531, + -0.008459409698843956, + 0.0029391436837613583, + 0.08126514405012131, + 0.01553120743483305, + 0.07598890364170074, + -0.026778552681207657, + -0.021043313667178154, + 0.06434895098209381, + -0.04245220869779587, + 0.016138065606355667, + -0.04327869787812233, + -0.026813071221113205, + 0.10619209706783295, + 0.03560567647218704, + -0.007700853515416384, + 0.060500819236040115, + 0.0985788106918335, + 0.07065626978874207, + 0.01622852496802807, + -0.0524129755795002, + 0.08088323473930359, + -0.06635670363903046, + -0.05205931141972542, + 0.002669558860361576, + 0.15006129443645477, + -0.011925309896469116, + 0.028191527351737022, + 0.02175658755004406, + -0.019185230135917664, + 0.006325243506580591, + -0.024080485105514526, + 0.0412040613591671, + -0.03268994390964508, + -0.12773413956165314, + -0.0001861369382822886, + 0.03938312828540802, + -0.024817736819386482, + -0.08057567477226257, + -0.05991408973932266, + -0.012715759687125683, + 0.016552867367863655, + 0.02718137949705124, + -0.026554305106401443, + -0.04287666082382202, + -0.17924529314041138, + 0.016531379893422127, + 0.10190782696008682, + -0.03633515536785126, + -0.05056037753820419, + -0.030327437445521355, + 0.01942717842757702, + -0.06583329290151596, + -0.008182910270988941, + 0.06238633021712303, + 0.004238433670252562, + 0.04066571593284607, + 0.03993701562285423, + 0.04080831632018089, + -0.02426031604409218, + -0.022683288902044296, + 0.010839983820915222, + 0.0810057520866394, + -0.006457729265093803, + 0.03384321182966232, + -0.023693477734923363, + -0.03144489973783493, + -0.0853838101029396, + 0.019912736490368843, + 0.0802675411105156, + -0.03202147036790848, + -0.029746944084763527, + 0.004914044868201017, + -0.0908571183681488, + -0.04423122480511665, + -0.0362410731613636, + 0.006050901021808386, + 0.02341635711491108, + 0.04032633826136589, + -0.004679386038333178, + -0.026721397414803505, + 0.02361515909433365, + -0.018764186650514603, + -0.06277001649141312, + -0.013677848502993584, + -0.007517653983086348, + 0.005217320751398802, + -0.0768357440829277, + 0.0036647289525717497, + 0.11351220309734344, + 0.003199891187250614, + 0.035282962024211884, + 0.09266351908445358, + 0.007980583235621452, + 0.011654337868094444, + 0.005912489257752895, + -0.0123508395627141, + -0.0665106549859047, + -0.0798245370388031, + -0.00016732898075133562, + -0.04694458097219467, + -0.018991898745298386, + 0.010760089382529259, + -0.025324301794171333, + -0.14467357099056244, + -0.012529512867331505, + -0.014177164062857628, + 0.0144183449447155, + 0.008019222877919674, + -0.03468925878405571, + -0.013882535509765148, + 0.12587282061576843, + -0.011371878907084465, + 0.036388102918863297, + -0.0017982380231842399, + 0.0014355279272422194, + -0.009346800856292248, + -0.04447164013981819, + -0.009505574591457844, + -0.021363459527492523, + -6.153050333449895e-34, + -0.06328222155570984, + 0.022078583016991615, + -0.08016889542341232, + 0.08056708425283432, + -0.02119646780192852, + -0.007317876443266869, + -0.040143102407455444, + 0.0064956690184772015, + -0.08163557201623917, + 0.12656167149543762, + 0.060960978269577026, + 0.13647803664207458, + 0.010722010396420956, + 0.04422860965132713, + 0.07566237449645996, + -0.022538522258400917, + 0.11645416170358658, + 0.03449414297938347, + -0.05842923745512962, + -0.014173847623169422, + 0.01447771955281496, + 0.028846437111496925, + -0.027216395363211632, + 0.030302051454782486, + -0.01121021993458271, + -0.004431118723005056, + 0.03594818711280823, + -0.05766337737441063, + -0.0250692181289196, + 0.011114129796624184, + -0.004085821099579334, + 0.0278744138777256, + 0.023387981578707695, + 0.0038986285217106342, + 0.030362630262970924, + 0.03255718573927879, + -0.00768484128639102, + -0.036198701709508896, + 0.09679024666547775, + 0.017070544883608818, + -0.12920062243938446, + -0.029456770047545433, + 0.012417874298989773, + -0.06572587788105011, + 0.07841464132070541, + 0.02974659577012062, + -0.04741226136684418, + -0.016918038949370384, + 0.06358252465724945, + 0.0029542658012360334, + -0.054187510162591934, + -0.0109458789229393, + 0.04437410831451416, + 0.02698361873626709, + 0.01666879467666149, + -0.010527271777391434, + -0.016471967101097107, + 0.06776974350214005, + -0.030439011752605438, + 0.09454397112131119, + -0.0016979072242975235, + 0.05954614654183388, + 0.03194722160696983, + -0.0640169009566307, + -0.1473420262336731, + 0.04652969539165497, + -0.07646502554416656, + -0.048774413764476776, + 0.09217172116041183, + 0.05745978280901909, + -0.09265850484371185, + 0.013129450380802155, + 0.0167563296854496, + -0.015903744846582413, + 0.06734756380319595, + -0.03470731899142265, + 0.025108929723501205, + -0.08372721821069717, + -0.0033427998423576355, + -0.04905793070793152, + -0.013841944746673107, + 0.0001985446288017556, + -0.014172840863466263, + 0.04446207731962204, + -0.020322909578680992, + -0.014350684359669685, + -0.0016013849526643753, + 0.00784896221011877, + -0.05283288657665253, + -0.0258401520550251, + -0.12895064055919647, + -0.00803057849407196, + 0.0007265754393301904, + -0.049177877604961395, + -0.06591476500034332, + -1.6024574089279588e-33, + -0.04817001149058342, + 0.02767726592719555, + -0.03604794666171074, + 0.03001205064356327, + -0.023910153657197952, + 0.020015152171254158, + 0.0024822880513966084, + -0.035367272794246674, + 0.03701252490282059, + -0.03752996772527695, + 0.05780966579914093, + 0.009415652602910995, + -0.022099003195762634, + -0.030373631045222282, + -0.06235441192984581, + 0.054132867604494095, + 0.020704170688986778, + -0.006623213645070791, + -0.08385496586561203, + -0.009212425909936428, + -0.02753022126853466, + 0.05589507892727852, + -0.03540812060236931, + -0.011609164997935295, + 0.026724178344011307, + 0.001453015604056418, + -0.03260324150323868, + -0.0740639865398407, + 0.029097583144903183, + -0.031526949256658554, + -0.05151334032416344, + -0.09767792373895645, + 0.08480756729841232, + 0.03315214812755585, + -0.08458814024925232, + -0.025692211464047432, + 0.10204974561929703, + -0.03911971673369408, + -0.011900722049176693, + -0.0475388765335083, + 0.04217704012989998, + 0.003110570600256324, + 0.10832760483026505, + 0.07161334902048111, + 0.015552520751953125, + 0.021777603775262833, + -0.03504062816500664, + -0.06890182942152023, + 0.05140062794089317, + 0.06993681937456131, + 0.01064300537109375, + -0.03552912175655365, + -0.03828629106283188, + 0.02721763215959072, + -0.0907156839966774, + 0.024652913212776184, + 0.010525121353566647, + 0.009725396521389484, + 0.0012700239894911647, + 0.06303058564662933, + -0.017512520775198936, + -0.0015276388730853796, + 0.06869430094957352, + 0.0322236530482769, + 0.013986179605126381, + -0.049358807504177094, + -0.00906972773373127, + -0.031201589852571487, + -0.06920678913593292, + -0.03041108511388302, + 0.04233277216553688, + 0.05271250382065773, + -0.041324906051158905, + -0.010306304320693016, + -0.06246984377503395, + -0.03197207674384117, + -0.005419005639851093, + 0.02401106245815754, + 0.013067999854683876, + 0.01722579263150692, + 0.08698983490467072, + 0.03906114771962166, + 0.024053573608398438, + 0.007464494090527296, + -0.09640570729970932, + 0.08397569507360458, + 0.057289738208055496, + 0.040600646287202835, + 0.015125724487006664, + -0.0473962277173996, + -0.04280213266611099, + 0.060846228152513504, + 0.004231830593198538, + -0.023716244846582413, + -0.032181017100811005, + -2.767807316672588e-08, + -0.08091279119253159, + -0.04969993233680725, + -0.014608918689191341, + -0.05375299230217934, + 0.0570000484585762, + -0.013190464116632938, + 0.014888050965964794, + -0.06072547659277916, + 0.002014816738665104, + -0.07014981657266617, + 0.0797276571393013, + 0.014993286691606045, + -0.13458335399627686, + -0.06623204797506332, + 0.008311497047543526, + -0.0017040383536368608, + 0.044035788625478745, + 0.05536981672048569, + -0.015252911485731602, + -0.09593610465526581, + -0.013673531822860241, + 0.046289607882499695, + 0.05704794451594353, + -0.0013063866645097733, + -0.020124057307839394, + -0.0292961522936821, + -0.0618414469063282, + 0.04439971223473549, + 0.08984431624412537, + 0.0586099736392498, + 0.05006730183959007, + 0.022924216464161873, + 0.0674796774983406, + -0.00013348138600122184, + -0.06500091403722763, + 0.0290847085416317, + 0.004170954693108797, + 0.08418600261211395, + -0.009599178098142147, + 0.12048216909170151, + -0.055019207298755646, + -0.07805372774600983, + -0.008579357527196407, + -0.0005821743980050087, + 0.08937142044305801, + 0.01981700398027897, + 0.016797471791505814, + -0.09694203734397888, + -0.06530226022005081, + -0.11117646098136902, + -0.009620053693652153, + 0.06726022809743881, + 0.0012435904936864972, + -0.03975865989923477, + -0.0359395369887352, + 0.017457135021686554, + -0.002023429609835148, + 0.026043543592095375, + -0.02472049929201603, + -0.0020979007240384817, + 0.06341446191072464, + 0.01420595683157444, + 0.024632461369037628, + -0.0007112753228284419 + ], + "x-circle-bold||closed,cancelled,dismissed,round": [ + 0.03506267070770264, + 0.025052204728126526, + -0.050748180598020554, + 0.08537404984235764, + 0.06865742802619934, + -0.043889548629522324, + 0.10569760203361511, + -0.012023399583995342, + 0.07232268899679184, + -0.06040113419294357, + 0.01032530702650547, + 0.06670907139778137, + 0.0221274234354496, + -0.06239329278469086, + -0.00800271425396204, + 0.024227967485785484, + -0.042055774480104446, + -0.056680385023355484, + 0.008435980416834354, + -0.013969696126878262, + 0.03243627771735191, + 0.06224748492240906, + 0.03694417327642441, + 0.090997114777565, + -0.027678992599248886, + 0.050031714141368866, + 0.026072908192873, + -0.04384376481175423, + 0.004432225599884987, + -0.07389621436595917, + -0.08916492015123367, + 0.07049355655908585, + 0.043494805693626404, + -0.045409247279167175, + 0.045636553317308426, + 0.022905653342604637, + -0.048220258206129074, + 0.038289930671453476, + 0.05108651891350746, + -0.03578924387693405, + 0.06191520020365715, + -0.05386326462030411, + 0.047989990562200546, + 0.005936394911259413, + -0.06848994642496109, + -0.01980673335492611, + -0.11599510908126831, + -0.04362533614039421, + -0.0219598188996315, + 0.04731101170182228, + 0.01418497134000063, + -0.11130478233098984, + -0.11508576571941376, + -0.02682354860007763, + 0.07123873382806778, + 0.008124861866235733, + -0.05345391854643822, + -0.06821511685848236, + 0.05975409969687462, + -0.029156329110264778, + 0.05065285041928291, + 0.003845009719952941, + -0.00368025922216475, + 0.04669138789176941, + 0.017458589747548103, + -0.023328308016061783, + -0.027937041595578194, + -0.10096480697393417, + 0.030670693144202232, + 0.017320871353149414, + 0.03928815573453903, + 0.04689943417906761, + -0.04564490169286728, + -0.07356412708759308, + -0.04879714921116829, + 0.037550829350948334, + 0.03757385537028313, + 0.01211344450712204, + -0.06515160948038101, + -0.030019491910934448, + -0.054513126611709595, + -0.08692340552806854, + -0.008397189900279045, + 0.02111506462097168, + -0.022793680429458618, + 0.09007731080055237, + 0.006032335106283426, + -0.1093648374080658, + -0.015131819061934948, + 0.050864849239587784, + -0.046400249004364014, + 0.06743626296520233, + -0.05855390429496765, + 0.045662712305784225, + -0.08690085262060165, + -0.05193872004747391, + 0.09223276376724243, + -0.003122122259810567, + -0.046737439930438995, + 0.1213984340429306, + 0.06643935292959213, + 0.014643095433712006, + 0.003912357147783041, + -0.05617207661271095, + -0.029664551839232445, + -0.06633511930704117, + 0.006313192658126354, + -0.03353826701641083, + -0.0454244464635849, + 0.012148641049861908, + -0.01895448938012123, + -0.1483210027217865, + 0.05127955973148346, + -0.013486596755683422, + -0.021474605426192284, + 0.06006701663136482, + -0.014262532815337181, + 0.004780866205692291, + 0.06380811333656311, + 0.03369670361280441, + 0.05949674919247627, + 0.03276116028428078, + -0.06629373878240585, + -0.020757105201482773, + -0.03903128579258919, + -0.012137005105614662, + 0.013432388193905354, + -2.542493812795811e-33, + -0.04539680480957031, + 0.05383618548512459, + -0.07223416119813919, + 0.014729042537510395, + 0.01907232217490673, + -0.07919400930404663, + -0.014485957100987434, + -0.009138801135122776, + -0.014667808078229427, + 0.0844741091132164, + 0.054484620690345764, + 0.04689432308077812, + -0.026945777237415314, + -0.028586875647306442, + 0.01930507831275463, + -0.07327874004840851, + 0.17606844007968903, + 0.007136515341699123, + -0.15116405487060547, + -0.0007127865101210773, + 0.011548333801329136, + 0.06790877878665924, + -0.10178770869970322, + -0.01589113473892212, + -0.06438430398702621, + 0.01879650168120861, + -0.008103578351438046, + -0.017861593514680862, + -0.032997388392686844, + 0.0548296757042408, + -0.008816251531243324, + 0.03034026548266411, + 0.06425505876541138, + 0.10167624801397324, + -0.006466452963650227, + 0.05768405273556709, + -0.011810367926955223, + -0.010043417103588581, + -0.0037258865777403116, + 0.010949613526463509, + -0.06620403379201889, + -0.01637577824294567, + -0.06482372432947159, + -0.02613874152302742, + 0.0413048155605793, + 0.040004100650548935, + -0.029325468465685844, + -0.00913180224597454, + -0.04504888504743576, + -0.02013057842850685, + -0.033062905073165894, + 0.05215836316347122, + -0.013513470068573952, + -0.0017620142316445708, + 0.02495095506310463, + -0.013003994710743427, + -0.004463826306164265, + 0.03061562590301037, + -0.0816459208726883, + -0.0007974489708431065, + 0.08466745167970657, + 0.034978821873664856, + 0.0008935542427934706, + -0.08080895990133286, + -0.07732836902141571, + 0.04243244603276253, + -0.06610022485256195, + -0.08561240881681442, + 0.03354979678988457, + -0.04923558607697487, + -0.0337437279522419, + 0.0210566408932209, + 0.08384276181459427, + 0.055616721510887146, + 0.06311941146850586, + 0.012849217280745506, + -0.021304793655872345, + 0.009748154319822788, + 0.10178133100271225, + -0.06896968930959702, + 0.05246875807642937, + 0.023786840960383415, + -0.051084280014038086, + -0.004040858708322048, + 0.023082908242940903, + -0.05367526412010193, + 0.04359559342265129, + 0.02066200040280819, + -0.0561942420899868, + 0.0036046237219125032, + -0.11448925733566284, + -0.0010361813474446535, + 0.028902463614940643, + 0.025916947051882744, + -0.08803429454565048, + 5.3168504883779604e-34, + 0.007941496558487415, + 0.058746106922626495, + -0.0333433598279953, + 0.024869507178664207, + -0.025632470846176147, + 0.04866171255707741, + -0.03987399488687515, + -0.002409289823845029, + -0.009017884731292725, + -0.008080752566456795, + 0.026498278602957726, + 0.0032057727221399546, + -0.014415442943572998, + 0.022539963945746422, + 0.023176776245236397, + -0.003549599787220359, + 0.09704254567623138, + -0.0007258686819113791, + -0.086943618953228, + 0.04949206858873367, + -0.025768404826521873, + -0.04048449918627739, + -0.039782240986824036, + -0.00015551512478850782, + -0.013199133798480034, + 0.03657636046409607, + 0.00505307549610734, + -0.06882482767105103, + -0.023248236626386642, + -0.005674767307937145, + -0.12466433644294739, + -0.11736208945512772, + 0.0645093321800232, + 0.038133323192596436, + 0.004354096949100494, + -0.04288306459784508, + 0.04130706936120987, + -0.08897119015455246, + -0.044921036809682846, + -0.0643424466252327, + 0.009967791847884655, + -0.012873268686234951, + 0.017842145636677742, + 0.05213000997900963, + 0.0007065710378810763, + -0.05445614457130432, + 0.05056989938020706, + 0.039248935878276825, + 0.013045181520283222, + 0.056843098253011703, + -0.029326219111680984, + -0.015677962452173233, + 0.05685579776763916, + 0.05791085958480835, + -0.07971181720495224, + 0.03775644302368164, + -0.00890413485467434, + 0.028031742200255394, + 0.014699749648571014, + 0.04109768196940422, + -0.01032539363950491, + -0.011543162167072296, + -0.003988734912127256, + 0.044427599757909775, + 0.046597693115472794, + -0.030139576643705368, + 0.029709290713071823, + 0.0033330279402434826, + -0.06615176796913147, + 0.04345760494470596, + 0.023365553468465805, + 0.08404286205768585, + -0.03821304440498352, + 0.0016948954435065389, + 0.03079936094582081, + 0.0018412122735753655, + 0.0540677048265934, + -0.05876021459698677, + 0.0043261609971523285, + 0.0486932173371315, + 0.021631808951497078, + 0.019456157460808754, + 0.00278377253562212, + 0.005716795567423105, + 0.011324959807097912, + 0.034337520599365234, + -0.02239016816020012, + 0.06065294146537781, + -0.031227262690663338, + -0.005345335230231285, + 0.0005010475870221853, + 0.021516552194952965, + 0.03244776651263237, + -0.01795433647930622, + 0.012771873734891415, + -2.045503144643135e-08, + -0.07308158278465271, + -0.023585552349686623, + -0.02862122468650341, + -0.006251954939216375, + 0.11089425534009933, + -0.03300616145133972, + -0.015832364559173584, + -0.08692993968725204, + -0.042689062654972076, + -0.05332552641630173, + -0.002909999107941985, + 0.02905849926173687, + -0.07608834654092789, + -0.030874021351337433, + -0.05829773098230362, + -0.004431284032762051, + 0.013162522576749325, + 0.07586247473955154, + -0.0013595027849078178, + -0.04203766956925392, + -0.05744841694831848, + -0.033441755920648575, + 0.06880826503038406, + -0.11900381743907928, + -0.002535200212150812, + -0.022589510306715965, + -0.03208763152360916, + 0.03212263062596321, + 0.011541523970663548, + 0.023893732577562332, + 0.030848287045955658, + 0.05027439817786217, + 0.0367165133357048, + 0.04092508926987648, + -0.07553515583276749, + -0.027836782857775688, + -0.012655205093324184, + 0.07518603652715683, + 0.019918926060199738, + 0.14103315770626068, + 0.0040733604691922665, + 0.0012024318566545844, + 0.04743819683790207, + 0.011513168923556805, + 0.06579095870256424, + 0.05147716775536537, + 0.08465529978275299, + -0.07294169813394547, + -0.09176038950681686, + -0.058688126504421234, + -0.05465951934456825, + 0.006972554139792919, + 0.05511995404958725, + 0.035070255398750305, + -0.01689516194164753, + -0.004525762051343918, + 0.07873880118131638, + 0.12121637165546417, + -0.11347576975822449, + 0.04618481174111366, + 0.03906695172190666, + 0.012769736349582672, + 0.008228746242821217, + -0.00038184921140782535 + ], + "x-logo-bold||*new*,twitter,logos,social media,tweets": [ + 0.01879163831472397, + 0.006657666061073542, + -0.03287626430392265, + -0.021498113870620728, + 0.14651048183441162, + -0.04429211840033531, + 0.08685866743326187, + -0.03468334302306175, + 0.0653054341673851, + 0.014472943730652332, + 0.057714931666851044, + 0.06927300989627838, + 0.0656820684671402, + -0.03960966318845749, + 0.039941027760505676, + 0.004785696975886822, + -0.02111847884953022, + -0.024107415229082108, + 0.03231224790215492, + -0.04910123348236084, + 0.022712375968694687, + -0.006767821963876486, + 0.004432831425219774, + 0.03443194553256035, + 0.044476449489593506, + 0.033627044409513474, + 0.005258789286017418, + -0.061033640056848526, + 0.009660164825618267, + -0.06841830909252167, + -0.06379763782024384, + 0.0017149153864011168, + 0.07691434770822525, + 0.014165874570608139, + 0.0018324912525713444, + 0.010825512930750847, + 0.03102770633995533, + 0.021496158093214035, + -0.008649175055325031, + 0.03791361302137375, + 0.020893163979053497, + -0.12622152268886566, + -0.006365353241562843, + 0.035134851932525635, + -0.01906886324286461, + 0.022161265835165977, + -0.03569381684064865, + -0.015110565349459648, + -0.035551972687244415, + 0.03831973299384117, + 0.013271940872073174, + -0.11710415035486221, + -0.09882418066263199, + -0.014046531170606613, + 0.04100802540779114, + -0.0305490680038929, + -0.06724511831998825, + -0.03691351041197777, + 0.03842230886220932, + -0.02284708432853222, + 0.04290996119379997, + 0.04609706252813339, + 0.03787598758935928, + 0.11389024555683136, + 0.0876104086637497, + -0.023936403915286064, + -0.031981926411390305, + 0.05495966225862503, + -0.05365630239248276, + 0.05333760008215904, + 0.03507411852478981, + 0.045400626957416534, + -0.030638277530670166, + -0.005236401688307524, + -0.04757196828722954, + 0.005873434711247683, + 0.1034853458404541, + -0.003977412357926369, + -0.03809528425335884, + -0.0582754872739315, + -0.04744454100728035, + -0.0029154943767935038, + -0.004433910362422466, + -0.013697889633476734, + 0.06099789962172508, + 0.07172434031963348, + -0.08832716196775436, + -0.02742067538201809, + -0.034472063183784485, + 0.056305963546037674, + -0.08464175462722778, + 0.059442710131406784, + 0.033866699784994125, + 0.006728671491146088, + -0.1083282083272934, + 0.017470914870500565, + 0.016197336837649345, + -0.08045048266649246, + -0.050950367003679276, + 0.09932210296392441, + -0.04962090775370598, + 0.043544914573431015, + 0.0928201675415039, + -0.013639290817081928, + -0.0002709645195864141, + 0.0067039006389677525, + -0.02086467482149601, + 0.009696590714156628, + 0.022695865482091904, + 0.10886064916849136, + 0.010129665024578571, + -0.05688876658678055, + -0.06959012895822525, + -0.03349669277667999, + -0.025961611419916153, + -0.06115118786692619, + -0.02396964468061924, + -0.006429759785532951, + 0.12337952107191086, + -0.0005304377409629524, + 0.012132647447288036, + -0.014627045020461082, + -0.07151329517364502, + -0.06062060222029686, + 0.004154965281486511, + 0.02607513777911663, + -0.061576779931783676, + -5.530820765941349e-34, + 0.05186930298805237, + 0.1071220114827156, + -0.022476978600025177, + 0.08021822571754456, + -0.022717392072081566, + 0.053778693079948425, + -0.037041231989860535, + -0.06259701400995255, + -0.10074285417795181, + 0.04923899099230766, + 0.026576222851872444, + 0.08650500327348709, + -0.02935113199055195, + 0.08208295702934265, + 0.04441392049193382, + -0.05432554706931114, + -0.018939262256026268, + -0.01703515835106373, + -0.08939404040575027, + -0.028482859954237938, + -0.0259392186999321, + 0.05261455848813057, + -0.05675569921731949, + 0.0013525108806788921, + -0.031522300094366074, + -0.07391494512557983, + 0.07178478688001633, + -0.0812176987528801, + -0.06976208835840225, + 0.018847165629267693, + 0.0006693750037811697, + 0.03188752010464668, + 0.025655528530478477, + 0.051352281123399734, + 0.0041285548359155655, + 0.012392391450703144, + -0.026534732431173325, + -0.04522808641195297, + 0.013966341502964497, + 0.031161829829216003, + -0.054052334278821945, + -0.021679561585187912, + -0.033748503774404526, + -0.012261536903679371, + 0.008653347380459309, + 0.14473524689674377, + -0.030981767922639847, + -0.12268145382404327, + 0.05793296918272972, + -0.04727945476770401, + 0.0005144385504536331, + -0.02320609614253044, + -0.03618847578763962, + -0.026947936043143272, + 0.007469487376511097, + -0.03692453354597092, + -0.04399052634835243, + 0.07010116428136826, + 0.03677063807845116, + -0.022450102493166924, + 0.03134749084711075, + -0.027723543345928192, + 0.04313870519399643, + -0.008773721754550934, + -0.03241590037941933, + 0.08813589066267014, + -0.015357207506895065, + -0.016075322404503822, + 0.005514572374522686, + -0.01157154981046915, + -0.0011863947147503495, + 0.028911162167787552, + 0.061042945832014084, + -0.009398032911121845, + -0.040968991816043854, + -0.0013610984897240996, + -0.02021697349846363, + -0.0019129537977278233, + 0.0077309375628829, + 0.03820127248764038, + -0.021519064903259277, + -0.03955056145787239, + -0.006509923376142979, + 0.030637728050351143, + 0.040235500782728195, + 0.0368303507566452, + 0.04220717400312424, + -0.030775366351008415, + -0.03761143237352371, + -0.0007405437645502388, + -0.10553634911775589, + -0.0032276646234095097, + -0.001660828711465001, + -0.024727264419198036, + -0.14587727189064026, + -1.6299625073692618e-33, + -0.01588115468621254, + 0.011623354628682137, + 0.053676385432481766, + 0.014599403366446495, + -0.043146342039108276, + 0.006586620118469, + 0.0005254093557596207, + 0.05766155570745468, + -0.02452290803194046, + 0.01964234933257103, + 0.11280155926942825, + 0.00990518182516098, + -0.14700528979301453, + -0.0411590039730072, + -0.001321962452493608, + 0.004739748314023018, + 0.09457489103078842, + 0.005183182191103697, + -0.13857214152812958, + 0.014737311750650406, + -0.011829392053186893, + -0.04549515247344971, + -0.08567991107702255, + 0.07557641714811325, + -0.023540599271655083, + 0.006376317702233791, + 0.062432900071144104, + 0.02325783669948578, + -0.059133049100637436, + -0.057093873620033264, + -0.09642519056797028, + -0.027487093582749367, + 0.06291975826025009, + 0.08424323052167892, + -0.011411053128540516, + 0.009139488451182842, + -0.03005450963973999, + -0.02602650783956051, + 0.03013795241713524, + 0.05338113009929657, + 0.03311154618859291, + -0.006540882866829634, + 0.0374772809445858, + 0.07661347836256027, + -0.07127942889928818, + -0.0009597224998287857, + -0.12239822745323181, + -0.10777159780263901, + -0.054089248180389404, + 0.09655197709798813, + 0.041689276695251465, + -0.02950052171945572, + 0.009462024085223675, + 0.03611521050333977, + -0.09535892307758331, + -0.027955330908298492, + -0.016452139243483543, + 0.06350534409284592, + -0.011899296194314957, + 0.06825647503137589, + 0.014254063367843628, + -0.0014119906118139625, + -0.05080535262823105, + 0.02525469660758972, + -0.01887073926627636, + -0.08488115668296814, + 0.00192920898552984, + -0.023919394239783287, + -0.07685717940330505, + 0.05980803444981575, + 0.07066866755485535, + 0.0004880260385107249, + -0.058230262249708176, + -0.018104957416653633, + -0.04702259600162506, + -0.09357555955648422, + 0.06157762557268143, + 0.01148423831909895, + -0.05536385625600815, + 0.010443059727549553, + -0.015413801185786724, + 0.028981097042560577, + -0.03842131420969963, + 0.05305745452642441, + 0.03659048676490784, + 0.06774305552244186, + -0.015472738072276115, + 0.045235250145196915, + 0.018971264362335205, + -0.025727082043886185, + -0.026623334735631943, + 0.06863326579332352, + 0.008194755762815475, + 0.02411145716905594, + -0.02301175892353058, + -2.241890406651237e-08, + -0.07457748055458069, + -0.06944414973258972, + -0.008530360646545887, + 0.021045729517936707, + 0.05961359292268753, + 0.03662828356027603, + -0.012909194454550743, + -0.0865248516201973, + 0.0011533800279721618, + -0.0173420999199152, + 0.006307778414338827, + -0.012244700454175472, + -0.09132848680019379, + 0.010024882853031158, + 0.02046879380941391, + -0.017116306349635124, + -0.08304667472839355, + 0.04283969849348068, + 0.004091184586286545, + -0.07780996710062027, + -0.0835813656449318, + 0.061799969524145126, + 0.01672070100903511, + -0.015397738665342331, + 0.04680430516600609, + 0.023113803938031197, + -0.04781433567404747, + -0.025500280782580376, + 0.06324601173400879, + 0.040662724524736404, + -0.008254720829427242, + 0.06067371368408203, + -0.019354652613401413, + -0.014618141576647758, + -0.07892077416181564, + 0.026392638683319092, + -0.009999248199164867, + -0.03315701708197594, + -0.02162344567477703, + 0.032988641411066055, + 0.03409136086702347, + -0.01415415108203888, + 0.0208719652146101, + -0.021443363279104233, + -0.05493038147687912, + 0.023881113156676292, + 0.045330990105867386, + -0.0028731650672852993, + -0.04617759585380554, + -0.11656055599451065, + 0.007217060774564743, + 0.03435450792312622, + 0.0112740658223629, + 0.024638863280415535, + -0.010907535441219807, + -0.03143651783466339, + 0.04235094040632248, + 0.09699571132659912, + 0.06859701126813889, + 0.04726410657167435, + 0.14050477743148804, + -0.0684298723936081, + 0.0007390432292595506, + -0.025029031559824944 + ], + "x-square-bold||closed,cancelled,dismissed": [ + 0.058979786932468414, + 0.009025253355503082, + 0.052185580134391785, + 0.11441900581121445, + 0.02861885353922844, + 0.02751309424638748, + 0.03701133653521538, + -0.02723962999880314, + 0.03195817023515701, + -0.02030467428267002, + 0.04282209649682045, + 0.13898521661758423, + 0.0273900106549263, + -0.05540283024311066, + -0.10333050042390823, + 0.044198330491781235, + -0.0018095338018611073, + -0.0791543573141098, + -0.011712984181940556, + 0.0510946586728096, + 0.04224865138530731, + 0.055813904851675034, + -0.003055446082726121, + 0.036222245544195175, + 0.01080731488764286, + 0.00990899559110403, + 0.013713641092181206, + -0.006712932605296373, + 0.012103979475796223, + -0.05237244442105293, + -0.012541351839900017, + 0.02320592850446701, + 0.06332149356603622, + -0.042009271681308746, + 0.09018809348344803, + 0.04475685954093933, + -0.022050820291042328, + -0.009285158477723598, + 0.06772583723068237, + -0.0021775017958134413, + 0.03625107556581497, + -0.08627001196146011, + -0.002371078822761774, + 0.026155028492212296, + -0.05150362104177475, + -0.05813175067305565, + -0.017694436013698578, + -0.08886651694774628, + -0.006054250989109278, + 0.016135064885020256, + 0.011701833456754684, + -0.060380253940820694, + -0.051441740244627, + -0.06299687176942825, + 0.05960247293114662, + -0.0011327144457027316, + -0.041060980409383774, + -0.04202877730131149, + 0.08153373748064041, + 0.003089098259806633, + 0.04784216731786728, + 0.03701077029109001, + -0.029000138863921165, + 0.02979976497590542, + 0.0012671715812757611, + 0.009898626245558262, + -0.03941481560468674, + -0.08437184244394302, + 0.02936648204922676, + 0.06133950874209404, + 0.08546942472457886, + 0.06352150440216064, + -0.019693247973918915, + -0.01898353174328804, + -0.05899102985858917, + -0.03922106698155403, + 0.07801097631454468, + -0.01375411357730627, + -0.008362152613699436, + 0.010194111615419388, + -0.05937822163105011, + -0.11183995008468628, + -0.050391413271427155, + -0.027663063257932663, + -0.031141629442572594, + 0.05383086949586868, + -0.014987485483288765, + -0.0834992527961731, + -0.029547536745667458, + 0.00965161807835102, + -0.01122531108558178, + 0.022113412618637085, + 0.005038742907345295, + 0.09326525032520294, + -0.04423686861991882, + -0.094533272087574, + 0.13622422516345978, + 0.03280726820230484, + -0.018981855362653732, + 0.09995581209659576, + 0.06118007004261017, + 0.043549198657274246, + -0.039048533886671066, + -0.06429804861545563, + 0.007928303442895412, + -0.06142197176814079, + 0.05571269243955612, + 0.0010975574841722846, + -0.05437377095222473, + -0.028418423607945442, + -0.007414472289383411, + -0.17122450470924377, + 0.059811074286699295, + 0.034045662730932236, + -0.02259066142141819, + 0.08109591156244278, + -0.013814616948366165, + -0.019852356985211372, + 0.044426657259464264, + -0.016679372638463974, + 0.05932401120662689, + 0.010102507658302784, + -0.007762714754790068, + -0.03588167205452919, + -0.028617480769753456, + -0.003777309088036418, + 0.010691178031265736, + -2.106601956740683e-33, + -0.02957654371857643, + 0.026819534599781036, + -0.06181143969297409, + 0.07146807760000229, + 0.07975337654352188, + -0.06346529722213745, + -0.02470417134463787, + -0.03521360456943512, + -0.033282987773418427, + 0.11890482157468796, + 0.09324987977743149, + 0.03881297633051872, + -0.09401019662618637, + 0.0033515836112201214, + -0.010845242999494076, + -0.044355954974889755, + 0.15546676516532898, + 0.046057865023612976, + -0.08615326881408691, + 0.03845898061990738, + 0.05911113694310188, + 0.062458109110593796, + -0.07779408991336823, + 0.005422859452664852, + -0.07777633517980576, + 0.015848075971007347, + 0.014992829412221909, + -0.028499195352196693, + 0.01345729548484087, + 0.05653088912367821, + -0.023989634588360786, + 0.0558624230325222, + 0.04881138727068901, + 0.05433777719736099, + -0.029839258641004562, + 0.02046148106455803, + 0.031029248610138893, + -0.02124040201306343, + 0.023516083136200905, + -0.0052903201431035995, + -0.05726032704114914, + 0.015340046025812626, + -0.021172381937503815, + -0.08604385703802109, + 0.09509825706481934, + -0.02578841708600521, + -0.0017379710916429758, + -0.041896577924489975, + -0.011255024001002312, + -0.03480963036417961, + -0.016470396891236305, + 0.022159472107887268, + -0.011562352068722248, + 0.05731702968478203, + 0.03619101643562317, + -0.02477104216814041, + -0.08379863947629929, + 0.05166829004883766, + -0.0025652076583355665, + 0.04535270109772682, + 0.08971811830997467, + 0.012950432486832142, + -0.013637798838317394, + -0.07883115857839584, + -0.06683513522148132, + 0.01753837987780571, + -0.016629954800009727, + -0.07409733533859253, + -0.023603498935699463, + -0.031128207221627235, + -0.046940289437770844, + -0.035798750817775726, + 0.06666707992553711, + 0.013056882657110691, + 0.06736306101083755, + -0.00880843959748745, + -0.050843495875597, + -0.005528387613594532, + 0.113920658826828, + -0.1341117024421692, + 0.08659385144710541, + 0.03248757869005203, + -0.06768422573804855, + -0.026380833238363266, + -0.01782333105802536, + -0.07244237512350082, + -0.009442375972867012, + -0.0011924364371225238, + -0.06582799553871155, + 0.03570692241191864, + -0.13313567638397217, + -0.03521101176738739, + -0.041959043592214584, + 0.00907579530030489, + -0.049438878893852234, + -1.3911984825531388e-34, + -0.012581078335642815, + 0.0808311253786087, + -0.09587143361568451, + -0.014073214493691921, + -0.04704488068819046, + 0.03055388852953911, + -0.04492243379354477, + -0.0025339433923363686, + -0.014651025645434856, + -0.04039793089032173, + 0.09180769324302673, + 0.003191432449966669, + -0.016099613159894943, + 0.013476894237101078, + -0.03020450472831726, + 0.03767506405711174, + 0.12097454816102982, + -0.019409332424402237, + -0.14532580971717834, + -0.012421619147062302, + -0.023703018203377724, + -0.06727655977010727, + 0.003242976265028119, + -0.006398999132215977, + 0.01079088356345892, + 0.05567629262804985, + -0.02501462586224079, + -0.0029547850135713816, + 0.016100430861115456, + 0.008180174976587296, + -0.061497822403907776, + -0.08460316061973572, + -0.0019201895920559764, + 0.037699535489082336, + -0.026722298935055733, + -0.022688547149300575, + 0.010472512803971767, + -0.07545057684183121, + -0.0015784301795065403, + -0.04398592188954353, + 0.07805570214986801, + 0.012592846527695656, + 0.027934836223721504, + 0.06165410205721855, + 0.025577444583177567, + 0.01790258102118969, + 0.017419442534446716, + -0.04951133206486702, + 0.10467059910297394, + -0.010520687326788902, + -0.06362979114055634, + -0.05087953060865402, + 0.024199778214097023, + 0.06073988601565361, + -0.10221510380506516, + 0.015096700750291348, + 0.02897268906235695, + 0.06614852696657181, + -0.03372383862733841, + 0.048956502228975296, + 0.023348873481154442, + 0.043771177530288696, + -0.017311831936240196, + -0.008754316717386246, + 0.030699048191308975, + -0.04207181558012962, + 0.0549517422914505, + 0.042508020997047424, + -0.0004907352267764509, + 0.028480608016252518, + 0.00836263783276081, + 0.05279606208205223, + -0.06535424292087555, + -0.003446966875344515, + 0.015386275947093964, + 0.030707549303770065, + -0.03218536451458931, + -0.052421342581510544, + -0.005862025078386068, + 0.06805559247732162, + 0.07014019787311554, + 0.04007483646273613, + 0.019663343206048012, + -0.03641746938228607, + 0.02337658405303955, + 0.027877308428287506, + -0.012217962183058262, + 0.08772174268960953, + -0.02398376353085041, + -0.03902369737625122, + 0.0010267467005178332, + -0.025274645537137985, + -0.009010566398501396, + -0.03395768627524376, + -0.04958096891641617, + -1.900218826733635e-08, + -0.08858689665794373, + -0.012707235291600227, + -0.0238339900970459, + -0.05361518636345863, + 0.040114764124155045, + -0.06340485066175461, + -0.035697951912879944, + -0.04904766008257866, + -0.017388030886650085, + -0.036330826580524445, + -0.05151817202568054, + -0.010256717912852764, + -0.08977901935577393, + -0.03106132708489895, + -0.050545454025268555, + -0.04316217079758644, + -0.017236705869436264, + 0.028180386871099472, + -0.0033287913538515568, + -0.08096630126237869, + -0.04596666246652603, + -0.03918585181236267, + 0.012174796313047409, + -0.03964465856552124, + -0.032044533640146255, + -0.0017327278619632125, + -0.019196445122361183, + 0.029811793938279152, + 0.03718913719058037, + 0.1041390672326088, + 0.04899728298187256, + 0.05710615962743759, + 0.04139231517910957, + 0.01366798859089613, + -0.0872919112443924, + -0.013926438987255096, + 0.0003512323019094765, + 0.06692621856927872, + 0.010073836892843246, + 0.0908854678273201, + -0.00022282431018538773, + -0.04533566161990166, + 0.04673286899924278, + 0.007383097894489765, + 0.0805155411362648, + 0.047582563012838364, + 0.08230213075876236, + -0.037753764539957047, + -0.0667690634727478, + -0.03494559973478317, + -0.021130627021193504, + -0.025696879252791405, + -0.013248595409095287, + 0.03941348195075989, + -0.05630413442850113, + -0.01320805773139, + -0.020914090797305107, + 0.10791023820638657, + -0.061262864619493484, + -0.007049829699099064, + 0.06521745026111603, + -0.020497091114521027, + -0.04295138642191887, + 0.02359600178897381 + ], + "yarn-bold||*new*,knitting,sewing": [ + -0.07103513926267624, + -0.035244978964328766, + -0.01231656689196825, + 0.051528144627809525, + 0.011401930823922157, + -0.019719643518328667, + 0.04024919494986534, + -0.05540934577584267, + -0.040644656866788864, + 0.08247112482786179, + -0.0040312898345291615, + 0.054738420993089676, + -0.002720083110034466, + 0.011166783981025219, + 0.009087015874683857, + 0.06073673814535141, + -0.0035081158857792616, + -0.02718435600399971, + -0.0482044592499733, + 0.04114354029297829, + -0.01425166241824627, + 0.020560696721076965, + 0.03150128573179245, + 0.03257570415735245, + 0.12217924743890762, + -0.04867792874574661, + 0.011969395913183689, + -0.008347831666469574, + 0.05234399810433388, + -0.014324283227324486, + 0.013577858917415142, + 0.025974005460739136, + 0.0697634369134903, + 0.05492974817752838, + 0.07259078323841095, + 0.02780434675514698, + 0.01806885004043579, + -0.09449620544910431, + -0.031827058643102646, + 0.05740545317530632, + 0.07626642286777496, + -0.04228502884507179, + -0.09265279024839401, + 0.017510076984763145, + -0.02051934413611889, + -0.026525180786848068, + 0.03556737303733826, + -0.023977510631084442, + 0.0004324737819842994, + 0.058562636375427246, + -0.10393712669610977, + -0.08648647367954254, + -0.07837141305208206, + -0.053222689777612686, + 0.05477089062333107, + 0.01985972747206688, + -0.006033649202436209, + -0.03618094325065613, + 0.0021018688566982746, + -0.05019640922546387, + 0.029219195246696472, + -0.024289773777127266, + 0.004680584650486708, + 0.06944212317466736, + 0.0438675619661808, + -0.04202558100223541, + 0.0256538987159729, + 0.07536286860704422, + -0.009826472960412502, + 0.023759786039590836, + -0.0045969560742378235, + 0.03793570026755333, + -0.022905688732862473, + 0.07536082714796066, + -0.029489882290363312, + -0.0003502106701489538, + 0.03317257761955261, + -0.01257291715592146, + -0.033054087311029434, + 0.026423610746860504, + -0.12321887165307999, + -0.016986742615699768, + 0.004258662927895784, + 0.04523158073425293, + -0.026380470022559166, + 0.0985340029001236, + -0.03865045681595802, + -0.08386315405368805, + -0.047586966305971146, + -0.06355840712785721, + -0.03299713134765625, + -0.019895361736416817, + -0.0200196523219347, + 0.06939946115016937, + -0.09769821912050247, + 0.05956483259797096, + 0.08645787835121155, + 0.044549018144607544, + -0.020147763192653656, + 0.052058249711990356, + -0.01737704686820507, + -0.0005687850061804056, + 0.03739345073699951, + -0.00020196207333356142, + -0.05898787081241608, + -0.06082083657383919, + -0.024416392669081688, + 0.03771980479359627, + -0.025127507746219635, + 0.003966465126723051, + 0.003520934609696269, + -0.08245857805013657, + -0.01392374373972416, + -0.058835286647081375, + -0.06305239349603653, + -0.017191890627145767, + -0.001636582426726818, + 0.0053660934790968895, + 0.06295772641897202, + 0.17258110642433167, + 0.0615677647292614, + -0.02800033427774906, + 0.021784687414765358, + -0.052105508744716644, + -0.07253385335206985, + -0.0342271514236927, + -0.0017534164944663644, + -1.9794604877557443e-33, + 0.08824526518583298, + 0.06873098760843277, + 0.02518097311258316, + 0.0771721825003624, + 0.0511576347053051, + 0.013494527898728848, + -0.08610235154628754, + -0.057878926396369934, + -0.0898679718375206, + 0.04168761149048805, + 0.031333860009908676, + 0.05588982626795769, + -0.0032373613212257624, + 0.05865383520722389, + 0.012670621275901794, + -0.10175364464521408, + -0.00040988315595313907, + -0.07920101284980774, + -0.019098348915576935, + 0.06522420048713684, + -0.05000258982181549, + 0.0419311486184597, + -0.00539011973887682, + 0.014538564719259739, + -0.10061847418546677, + -0.028824325650930405, + 0.07731471210718155, + -0.011779231950640678, + -0.08420222252607346, + 0.04609072580933571, + 0.0536842867732048, + -0.03527421876788139, + 0.021476132795214653, + 0.014792651869356632, + -0.057700660079717636, + -0.03749467805027962, + -0.06831644475460052, + -0.005494238808751106, + -0.026723627001047134, + 0.07491444051265717, + -0.019546298310160637, + -0.004134247079491615, + -0.013467196375131607, + 0.020155975595116615, + 0.05807933583855629, + 0.046622831374406815, + 0.002480144379660487, + 0.05050741136074066, + -0.018932506442070007, + 0.025732673704624176, + 0.0678194984793663, + 0.06260235607624054, + 0.0835624560713768, + 0.008395282551646233, + -0.020631004124879837, + -0.027462538331747055, + 0.007818106561899185, + -0.032243140041828156, + 0.014574959874153137, + 0.004324299283325672, + 0.016479160636663437, + -0.002872569253668189, + 0.04858700931072235, + 0.02800455503165722, + -0.03956875577569008, + 0.039364371448755264, + 0.024439465254545212, + -0.00233291182667017, + 0.06043834239244461, + 0.04163224622607231, + -0.04278554394841194, + 0.06493832916021347, + 0.02246374636888504, + 0.0618891678750515, + 0.00952516682446003, + -0.004233866464346647, + -0.0069353049620985985, + 0.004928962793201208, + 0.033061083406209946, + -0.13688839972019196, + -0.06519626826047897, + 0.01223529689013958, + -0.07157550752162933, + 0.06827288120985031, + -0.06698072701692581, + -0.03529781475663185, + -0.02660919353365898, + -0.03472762554883957, + -0.060718465596437454, + 0.03838617727160454, + -0.023141220211982727, + -0.009540980681777, + 0.0014742737403139472, + -0.13864167034626007, + -0.07007524371147156, + 1.0990957128022334e-34, + 0.07128771394491196, + 0.06693518906831741, + -0.09734368324279785, + -0.014435089193284512, + -0.04789044335484505, + 0.01160803809762001, + 0.04931563511490822, + 0.006731828674674034, + 0.013685480691492558, + 0.06327258795499802, + 0.07689657062292099, + -0.04795391485095024, + -0.036536235362291336, + 0.015471529215574265, + 0.016591785475611687, + 0.08899364620447159, + -0.0010070129064843059, + 0.015894245356321335, + 0.007666102610528469, + -0.023181719705462456, + 0.001981535227969289, + -0.03220168873667717, + -0.03903042525053024, + 0.008163952268660069, + 0.03185190632939339, + 0.02556685358285904, + -0.00011683091724989936, + 0.04274987429380417, + -0.08070340007543564, + -0.023784538730978966, + -0.009793858975172043, + -0.07945897430181503, + 0.040369126945734024, + 0.08637887984514236, + -0.06374350190162659, + 0.046981170773506165, + -0.005613551940768957, + -0.046304866671562195, + 0.0645216554403305, + -0.02394689805805683, + 0.029398029670119286, + -0.04794248566031456, + 0.05048910155892372, + 0.0985025018453598, + -0.07805541157722473, + -0.07240761816501617, + -0.11228632926940918, + -0.019253214821219444, + -0.019092777743935585, + 0.015995457768440247, + -0.021204616874456406, + 0.05323890596628189, + 0.05564109608530998, + -0.036514922976493835, + -0.020344356074929237, + -0.013871729373931885, + -0.018348321318626404, + -0.02956000342965126, + -0.0638023391366005, + 0.0988537147641182, + -0.021238557994365692, + 0.043385908007621765, + 0.012013091705739498, + 0.03827430680394173, + 0.05439556762576103, + -0.061421699821949005, + 3.187824404449202e-05, + -0.10876167565584183, + -0.02750670351088047, + -0.0059469761326909065, + 0.07078639417886734, + 0.025990420952439308, + -0.022249728441238403, + 0.015337929129600525, + -0.0229382012039423, + -0.06122554466128349, + 0.04515208303928375, + 0.055439770221710205, + -0.02218729816377163, + 0.059134289622306824, + -0.03841938078403473, + -0.038518670946359634, + -0.05572054907679558, + 0.05913782864809036, + -0.009590480476617813, + 0.011124047450721264, + 0.06372620165348053, + 0.05074353143572807, + 0.01184763852506876, + -0.010346692986786366, + -0.01675393618643284, + 0.007244072388857603, + -0.029621627181768417, + -0.013401438482105732, + 0.023902103304862976, + -1.61351643157559e-08, + -0.024816544726490974, + -0.047902628779411316, + -0.07372166216373444, + 0.0007744408212602139, + 0.06485874950885773, + -0.022116197273135185, + -0.12933991849422455, + -0.07729411125183105, + -0.08648069202899933, + 0.003399887355044484, + 0.10547270625829697, + 0.019687144085764885, + -0.04976268485188484, + 0.038861434906721115, + 0.09711170941591263, + -0.00915626809000969, + 0.03709329664707184, + 0.015917666256427765, + -0.0764918401837349, + -0.05072794854640961, + -0.054960254579782486, + 0.05626016482710838, + -0.031233450397849083, + 0.035111550241708755, + -0.005563898012042046, + -0.013873530551791191, + -0.08341774344444275, + -0.022233914583921432, + 0.02653571404516697, + 0.08493159711360931, + 0.04553583636879921, + 0.016412954777479172, + 0.025346199050545692, + 0.04948228597640991, + -0.2119806855916977, + -0.03545163571834564, + -0.055720772594213486, + -0.005990154575556517, + -0.009404396638274193, + 0.09162282198667526, + -0.04702656716108322, + 0.008359060622751713, + 0.0291372649371624, + -0.004373133648186922, + -0.03868359699845314, + -0.03713536262512207, + 0.04557954519987106, + -0.07648102194070816, + -0.09211277961730957, + -0.019723709672689438, + 0.04400685429573059, + -0.021187495440244675, + 0.034139759838581085, + 0.07186907529830933, + -0.057340651750564575, + 0.021693577989935875, + -0.018482400104403496, + 0.08363484591245651, + -0.02614513970911503, + 0.049386125057935715, + 0.059328097850084305, + -0.04919072240591049, + 0.03473097085952759, + -0.009758909232914448 + ], + "yin-yang-bold||symbol,good,evil,black,white": [ + -0.0033417337108403444, + 0.016864774748682976, + -0.010621793568134308, + 0.06594124436378479, + -0.012625258415937424, + 0.024432532489299774, + 0.09957842528820038, + -0.11914116144180298, + 0.047556839883327484, + -0.039270542562007904, + 0.05008164420723915, + -0.00878206267952919, + 0.006436590570956469, + 0.012250981293618679, + -0.025440813973546028, + 0.1175847202539444, + 0.010472375899553299, + -0.026726115494966507, + -0.04797539860010147, + -0.02094818465411663, + -0.05126944184303284, + -0.031073590740561485, + -0.016553526744246483, + -0.011204621754586697, + -0.06490498036146164, + 0.008065998554229736, + 0.004293193109333515, + 0.044090185314416885, + 0.12156473845243454, + -0.010704954154789448, + -0.0656559094786644, + 0.0039163329638540745, + 0.0567142479121685, + 0.08162581920623779, + -0.06415059417486191, + -0.004232097417116165, + 0.03790534287691116, + 0.010075146332383156, + -0.051917172968387604, + 0.007851004600524902, + 0.00521663436666131, + 0.01826159656047821, + -0.03381296247243881, + 0.030445145443081856, + -0.05684417858719826, + 0.04194945469498634, + -0.04565192013978958, + -0.014605505391955376, + 0.007181408815085888, + -0.07860323786735535, + -0.015717342495918274, + -0.11680600792169571, + -0.10485153645277023, + 0.09826240688562393, + 0.07522121071815491, + 0.05210253968834877, + -0.020396189764142036, + -0.02147127129137516, + 0.013388799503445625, + -0.02597234584391117, + -0.02928408980369568, + 0.05743211880326271, + 0.04158664867281914, + 0.03258325904607773, + 0.059301599860191345, + 0.07909208536148071, + 0.015933815389871597, + 0.0512363463640213, + -0.07427578419446945, + -0.0025701005943119526, + -0.00904292706400156, + 0.0050051286816596985, + -0.08743346482515335, + -0.03975215554237366, + -0.08010554313659668, + 0.021706819534301758, + 0.10095590353012085, + -0.016950691118836403, + 0.01496500801295042, + -0.027886848896741867, + -0.08695299178361893, + 0.026464734226465225, + 0.009517066180706024, + 0.07839387655258179, + 0.05637674778699875, + 0.09392404556274414, + -0.1265271157026291, + -0.0770779550075531, + -0.006353790406137705, + -0.011037045158445835, + -0.027621233835816383, + 0.053867585957050323, + 0.05217238515615463, + 0.01101035438477993, + 0.06088052690029144, + 0.07071300595998764, + 0.07066740095615387, + 0.007764890324324369, + -0.0568058043718338, + 0.06795905530452728, + 0.03680466115474701, + 0.033226341009140015, + -0.01771124266088009, + -0.0179755762219429, + 0.03845902159810066, + -0.02521914429962635, + -0.010462001897394657, + -0.04533884674310684, + 0.022150794044137, + -0.013613607734441757, + -0.030262457206845284, + -0.05900726839900017, + 0.0063194348476827145, + -0.06358149647712708, + -0.05879611894488335, + -0.04986721649765968, + -0.070886991918087, + 0.06762831658124924, + -0.018803795799613, + 0.003712825709953904, + 0.04317232221364975, + 0.027813047170639038, + -0.04045398533344269, + 0.0004953044117428362, + -0.06881149858236313, + -0.05159667134284973, + -0.046831801533699036, + -2.5014802638826445e-33, + 0.10736746340990067, + 0.06472602486610413, + 0.028523877263069153, + -0.010678122751414776, + 0.03546009585261345, + -0.0762174129486084, + -0.01707782782614231, + -0.03925348073244095, + -0.052122894674539566, + 0.08789565414190292, + -0.017089921981096268, + 0.043677736073732376, + -0.05828608199954033, + 0.04719175025820732, + 0.03763275593519211, + -0.0568641759455204, + 0.013554079458117485, + -0.10280357301235199, + -0.021843360736966133, + -0.051596369594335556, + 0.006100858561694622, + 0.03381289914250374, + -0.05596008151769638, + -0.07809992879629135, + -0.03219542279839516, + -0.06655667722225189, + 0.044765908271074295, + 0.07301755994558334, + -0.025198262184858322, + 0.002763959812000394, + 0.015134881250560284, + 0.014356609433889389, + 0.03503372147679329, + 0.004183696582913399, + -0.02407672442495823, + -0.0065132323652505875, + -0.07446926832199097, + -0.01747099868953228, + -0.013961784541606903, + 0.037760186940431595, + 0.05235708877444267, + -0.002236185362562537, + -0.0561651811003685, + 0.05344751849770546, + 0.07047545164823532, + 0.039015233516693115, + 0.01694663241505623, + -0.12679249048233032, + -0.01843664050102234, + -0.018874311819672585, + -0.0707053542137146, + -0.04630429297685623, + 0.011937244795262814, + -0.007879165932536125, + -0.04722348973155022, + -0.05697734281420708, + 0.06097344309091568, + 0.05149653181433678, + -0.07782679796218872, + 0.040594350546598434, + -0.049782220274209976, + -0.045209288597106934, + 0.0351482555270195, + -0.04528646171092987, + -0.020190026611089706, + -0.02890077233314514, + -0.10461413115262985, + 0.006428421940654516, + 0.03672719746828079, + -0.031378816813230515, + 0.007061133161187172, + 0.0716644749045372, + 0.03995390608906746, + -0.024532504379749298, + 0.003910962957888842, + -0.03184329718351364, + -0.029923802241683006, + -0.07777737826108932, + 0.046067629009485245, + -0.01101098582148552, + -0.10266028344631195, + 0.019490905106067657, + 0.002826120937243104, + 0.04461956396698952, + 0.008978037163615227, + -0.028876980766654015, + 0.009644071571528912, + -0.05328662320971489, + -0.004316052421927452, + 0.017153000459074974, + -0.08542080223560333, + 0.014560355804860592, + 0.07732249051332474, + -0.05513984337449074, + -0.14415237307548523, + 3.774551849753713e-34, + -0.036535657942295074, + 0.026986515149474144, + -0.06692549586296082, + 0.04059276729822159, + -0.027486370876431465, + -0.05298706889152527, + 0.01021447405219078, + 0.07425113022327423, + -0.008482151664793491, + 0.051396481692790985, + 0.060696572065353394, + 0.014701918698847294, + 0.003050063503906131, + 0.024550380185246468, + 0.027989229187369347, + 0.0017590324860066175, + 0.007128385826945305, + 0.11678536236286163, + 0.00965965073555708, + 0.0214284285902977, + 0.012272062711417675, + -0.042266447097063065, + -0.06970039010047913, + 0.014754610136151314, + -0.020440857857465744, + 0.1010027751326561, + 0.10158657282590866, + -0.06792186945676804, + -0.0512247271835804, + 0.04504953697323799, + 0.005050303880125284, + -0.07116196304559708, + -0.009113885462284088, + 0.05247215926647186, + 0.01238996535539627, + -0.056097593158483505, + 0.03714333847165108, + -0.12808234989643097, + -0.04375334829092026, + -0.019246533513069153, + 0.029131896793842316, + 0.029566233977675438, + 0.043880101293325424, + 0.04133069887757301, + -0.02057744935154915, + 0.05279511585831642, + -0.06086638942360878, + 0.05695264786481857, + -0.009317208081483841, + -0.040597930550575256, + 0.027466347441077232, + -0.042351849377155304, + 0.002142262412235141, + 0.09511175006628036, + -0.05516327917575836, + -0.05854224041104317, + 0.043041348457336426, + 0.002575536724179983, + 0.002327368361875415, + 0.0826253741979599, + -0.03740866109728813, + 0.014347342774271965, + -0.014416242949664593, + 0.04328077286481857, + -0.026388518512248993, + 0.029993195086717606, + 0.046439237892627716, + 0.09693889319896698, + 0.021134749054908752, + -0.060716982930898666, + -0.014972819946706295, + 0.006804734002798796, + -0.05293447896838188, + 0.030481966212391853, + -0.01062497217208147, + -0.055896252393722534, + 0.04591375216841698, + -0.01262629684060812, + -0.010364037938416004, + 0.13864976167678833, + -0.02812814526259899, + 0.059803299605846405, + -0.054359421133995056, + 0.03478949889540672, + -0.04413026571273804, + -0.008307642303407192, + -0.026390302926301956, + 0.11547877639532089, + 0.061980459839105606, + -0.002590022049844265, + -0.06900938600301743, + 0.040363967418670654, + -0.014934643171727657, + 0.0030648435931652784, + 0.03380488231778145, + -1.8136166346494065e-08, + -0.036247365176677704, + -0.0011910325847566128, + 0.023790108039975166, + -0.07202509045600891, + 0.011500927619636059, + -0.054354701191186905, + -0.021581310778856277, + -0.09620174765586853, + -0.026430025696754456, + 0.044313814491033554, + 0.04327474161982536, + 0.06940306723117828, + -0.14157617092132568, + -0.037097129970788956, + 0.013135434128344059, + 0.018780723214149475, + 0.008894308470189571, + 0.03733889013528824, + 0.041470278054475784, + -0.049008242785930634, + 0.031087161973118782, + 0.047398075461387634, + 0.0965270921587944, + -0.062146738171577454, + -0.0037195547483861446, + -0.03654751554131508, + -0.08383555710315704, + -0.002237472217530012, + -0.0007689211051911116, + 0.053531862795352936, + 0.017969975247979164, + 0.06511314958333969, + 0.020975226536393166, + -0.04949972778558731, + -0.07953263819217682, + 0.04392631724476814, + -0.10151101648807526, + -0.013730034232139587, + 0.06116904690861702, + 0.0965472087264061, + 0.05047125741839409, + 0.03531961143016815, + 0.0044110845774412155, + -0.03793785721063614, + 0.004314228892326355, + -0.04876713082194328, + 0.04592593386769295, + 0.03336047753691673, + -0.030308987945318222, + -0.03164059296250343, + 0.02259465865790844, + 0.025229807943105698, + 0.009837890043854713, + 0.02768523618578911, + -0.06388089805841446, + -0.08736404031515121, + -0.011437198147177696, + 0.044013697654008865, + 0.005194781348109245, + -0.048980582505464554, + 0.13550935685634613, + -0.02643735148012638, + 0.0027893814258277416, + -0.01003842893987894 + ], + "youtube-logo-bold||logos,google,videos,movies,social media": [ + -0.01781448721885681, + -0.052586037665605545, + -0.018336983397603035, + -0.06015481799840927, + 0.11709673702716827, + -0.031343717128038406, + 0.055459313094615936, + -0.050689972937107086, + 0.07168303430080414, + -0.02080017328262329, + 0.007129784673452377, + 0.09786750376224518, + -0.005807614419609308, + 0.0010080176871269941, + 0.032178644090890884, + -0.02050352469086647, + 0.05553266778588295, + 0.014727167785167694, + 0.034412287175655365, + -0.06712084263563156, + 0.007904311642050743, + 0.0024776204954832792, + 0.05252855643630028, + 0.030596300959587097, + -0.007151754107326269, + 0.025579866021871567, + -0.0021833842620253563, + 0.020946195349097252, + 0.031420137733221054, + -0.0940566435456276, + -0.03575163334608078, + -0.0033935357350856066, + 0.059766821563243866, + 0.028607022017240524, + -0.005170738324522972, + -0.03593410551548004, + -0.0348396971821785, + -0.00972591433674097, + -0.018801555037498474, + 0.026779990643262863, + 0.04221982881426811, + -0.059517912566661835, + 0.0676979124546051, + 0.018775997683405876, + -0.019303562119603157, + 0.014772013761103153, + -0.06708599627017975, + -0.04610629752278328, + 0.06433591991662979, + 0.00506051629781723, + -0.040940478444099426, + -0.09050053358078003, + -0.09776128083467484, + -0.07884499430656433, + -0.012298879213631153, + -0.057175882160663605, + -0.020853839814662933, + -0.010085459798574448, + 0.08239086717367172, + -0.002945892047137022, + 0.07286844402551651, + -0.027916666120290756, + 0.03805721551179886, + 0.11090556532144547, + 0.10795064270496368, + 0.008133082650601864, + 0.05063379183411598, + 0.048617009073495865, + -0.08653287589550018, + 0.03272012248635292, + -0.0022694433573633432, + 0.03781379014253616, + -0.08514754474163055, + -0.01620708778500557, + -0.030272359028458595, + -0.03767089918255806, + 0.0633353739976883, + 0.009425916709005833, + -0.038289960473775864, + -0.05705542489886284, + -0.02044755406677723, + -0.08542265743017197, + 0.02299017831683159, + -0.022412214428186417, + 0.06882546097040176, + 0.022898953408002853, + -0.024117400869727135, + -0.057379428297281265, + -0.01326184906065464, + 0.010600196197628975, + -0.19420789182186127, + 0.05126303806900978, + 0.03546089306473732, + 0.0025929100811481476, + -0.05317919701337814, + 0.021812831982970238, + -0.020010150969028473, + -0.10655056685209274, + -0.053959134966135025, + 0.0882238894701004, + -0.003328252350911498, + 0.050405871123075485, + 0.10268642753362656, + -0.021459676325321198, + -0.007034876383841038, + 0.05735916271805763, + -0.020925479009747505, + 0.05136614292860031, + 0.06813747435808182, + 0.06558410078287125, + -0.01708696037530899, + -0.0016434884164482355, + -0.04930027574300766, + -0.004245071206241846, + -0.04683176055550575, + -0.06335663050413132, + -0.047886718064546585, + -0.02143758349120617, + 0.12146846204996109, + 0.006109777372330427, + 0.0023240474984049797, + 0.017042428255081177, + -0.019641142338514328, + -0.12194473296403885, + -0.02496681734919548, + -0.001723186345770955, + -0.03911434859037399, + -3.7233041531487e-33, + 0.06457111984491348, + 0.01625220663845539, + -0.011763609014451504, + 0.05797829106450081, + 0.004288132302463055, + 0.09770428389310837, + -0.020006172358989716, + -0.003935514949262142, + -0.11613931506872177, + 0.004159602336585522, + 0.06954580545425415, + 0.03790559247136116, + -0.037139810621738434, + 0.092136450111866, + 0.06700477004051208, + -0.005753976758569479, + -0.01524573564529419, + -0.04746665060520172, + -0.04868339002132416, + -0.04980258643627167, + -0.0025668712332844734, + 0.08450639247894287, + -0.02779987081885338, + -0.0020815946627408266, + -0.06638002395629883, + -0.10656165331602097, + 0.03019801527261734, + -0.055821679532527924, + -0.04746168106794357, + 0.034599658101797104, + 0.027552952989935875, + 0.012867152690887451, + 0.0165164303034544, + -0.01878391019999981, + 0.04247960448265076, + -0.041489820927381516, + -0.10300769656896591, + -0.045880671590566635, + 0.015872729942202568, + 0.03631676733493805, + -0.03945823758840561, + -0.03977637365460396, + -0.09310787171125412, + 0.02006443403661251, + -0.045210644602775574, + 0.15102246403694153, + 0.027843957766890526, + -0.08486674726009369, + 0.07691004872322083, + 0.030556505545973778, + 0.01817258633673191, + -0.0001907767727971077, + -0.020373843610286713, + -0.11693254858255386, + -0.0460628978908062, + 0.023257983848452568, + 0.008273664861917496, + 0.03898967429995537, + -0.03170987218618393, + -0.07328397035598755, + -0.0027557690627872944, + 0.018527956679463387, + 0.04005689173936844, + -0.018778948113322258, + -0.04625927284359932, + 0.08044826984405518, + 0.07221098244190216, + 0.05670745670795441, + 0.07526759058237076, + -0.009329501539468765, + 0.005689793266355991, + 0.036427922546863556, + 0.07245653867721558, + -0.002805850002914667, + -0.08367779850959778, + -3.0575763958040625e-05, + -0.0016925900708884, + -0.03265785425901413, + -0.03779738396406174, + 0.04360775649547577, + -0.030642418190836906, + -0.01005992479622364, + 0.051041945815086365, + 0.04029478505253792, + 0.03434348106384277, + -0.021417854353785515, + 0.01797156035900116, + -0.0670057162642479, + 0.0014532560016959906, + 0.013609834015369415, + -0.09403958171606064, + 0.007480835076421499, + 0.005745533388108015, + 0.009019390679895878, + -0.08913078904151917, + 1.067103577936399e-33, + -0.00993162952363491, + 0.01593732088804245, + 0.05044792592525482, + 0.006771794520318508, + 0.00436457060277462, + 0.004389788024127483, + 0.07604210823774338, + 0.033252280205488205, + 0.00017397959891241044, + 0.01358830276876688, + 0.045883744955062866, + -0.040643297135829926, + -0.14910946786403656, + -0.058500297367572784, + -0.04379022493958473, + 0.004576658830046654, + 0.029984991997480392, + -0.07237473130226135, + -0.10774490237236023, + -0.036607932299375534, + -0.015210874378681183, + -0.029323019087314606, + -0.02846924401819706, + 0.0913461446762085, + 0.0019294742960482836, + 0.0068449825048446655, + 0.02233545109629631, + -0.005889719817787409, + -0.03501558303833008, + 0.00830110628157854, + -0.004183694254606962, + -0.01815519668161869, + 0.007531393319368362, + 0.04990680515766144, + -0.009885660372674465, + 0.015159216709434986, + 0.03183409199118614, + -0.03157591447234154, + 0.00884062796831131, + -0.027112506330013275, + -0.008774618618190289, + 0.0849413201212883, + 0.004236422013491392, + -0.02180059440433979, + 0.0009797838283702731, + 0.02204139344394207, + -0.08662832528352737, + -0.07566095888614655, + -0.10769429057836533, + 0.04864712059497833, + 0.025503089651465416, + 0.005289298482239246, + 0.021494485437870026, + 0.025178546085953712, + -0.03674765303730965, + -0.0659402385354042, + -0.02992740459740162, + 0.0752004086971283, + 0.05441403388977051, + 0.04931509494781494, + 0.023044753819704056, + -0.025588465854525566, + -0.06607194989919662, + 0.02937427908182144, + -0.0520956926047802, + -0.020690372213721275, + 0.06137092784047127, + 0.03848275542259216, + -0.054132018238306046, + 0.011873789131641388, + 0.051594629883766174, + 0.0004260085697751492, + -0.002891391282901168, + 0.0561649389564991, + -0.016006607562303543, + -0.029249155893921852, + 0.09778887033462524, + 0.051016293466091156, + -0.027768375352025032, + 0.013931801542639732, + -0.008885890245437622, + 0.00215171673335135, + -0.057321254163980484, + 0.0565071702003479, + 0.060439467430114746, + 0.03703378885984421, + 0.006248137913644314, + 0.04346708208322525, + 0.026287894695997238, + -0.01979871280491352, + -0.024439407512545586, + 0.08518228679895401, + -0.023988964036107063, + 0.003969922661781311, + -0.013667600229382515, + -1.9241022997107393e-08, + -0.026637880131602287, + -0.014408530667424202, + 0.0024148505181074142, + 0.029445050284266472, + 0.03519627824425697, + 0.0005643672193400562, + 0.024097779765725136, + -0.022419888526201248, + 0.04270694777369499, + -0.0826820582151413, + -0.025677599012851715, + -0.010768295265734196, + -0.060219842940568924, + 0.022857559844851494, + -0.004490948747843504, + 0.018435010686516762, + -0.10982029139995575, + 0.029408350586891174, + 0.038285527378320694, + -0.012000671587884426, + -0.10981719940900803, + 0.046220216900110245, + 0.07374714314937592, + -0.061710916459560394, + -0.027267005294561386, + 0.02619851753115654, + -0.005063469056040049, + -0.02974514663219452, + 0.06681161373853683, + 0.005239415913820267, + -0.029004303738474846, + 0.06845258921384811, + -0.05126061290502548, + -0.10431573539972305, + -0.07590936124324799, + -0.03684359788894653, + 0.03130580484867096, + -0.03990394249558449, + -0.023715442046523094, + 0.047967929393053055, + 0.07061436027288437, + -0.02414548769593239, + 0.09784603863954544, + -0.017818421125411987, + -0.02537701465189457, + 0.10621874779462814, + 0.08224401623010635, + 0.025882503017783165, + -0.014436202123761177, + -0.0877336785197258, + -0.055335961282253265, + 0.02297624573111534, + -0.04930848255753517, + 0.05245521292090416, + 0.004256312269717455, + -0.09267750382423401, + 0.03293076157569885, + 0.08337274938821793, + -0.00905149057507515, + 0.01473904773592949, + 0.15503919124603271, + -0.002874154131859541, + 0.011620990931987762, + -0.01779821887612343 + ] +} \ No newline at end of file diff --git a/servers/fastapi/assets/icons.json b/servers/fastapi/assets/icons.json new file mode 100644 index 0000000..ef41b09 --- /dev/null +++ b/servers/fastapi/assets/icons.json @@ -0,0 +1,63510 @@ +{ + "sets": [{ "label": "Phosphor Icons", "id": 1 }], + "groups": [], + "icons": [ + { + "name": "acorn", + "content": "", + "style": "outline", + "tags": "*new*,savings,nut,vegetable,veggies,food,groceries,market", + "set_id": 1 + }, + { + "name": "address-book", + "content": "", + "style": "outline", + "tags": "contacts,directory,roledex", + "set_id": 1 + }, + { + "name": "address-book-tabs", + "content": "", + "style": "outline", + "tags": "*new*,contacts,directory,roledex", + "set_id": 1 + }, + { + "name": "air-traffic-control", + "content": "", + "style": "outline", + "tags": "airport,travel,transportation,buildings", + "set_id": 1 + }, + { + "name": "airplane", + "content": "", + "style": "outline", + "tags": "vehicles,airports,flights,flying,planes,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "airplane-in-flight", + "content": "", + "style": "outline", + "tags": "vehicles,airports,flights,flying,planes,transit,transportation,traveling,arrival", + "set_id": 1 + }, + { + "name": "airplane-landing", + "content": "", + "style": "outline", + "tags": "vehicles,airports,flights,flying,planes,transit,transportation,traveling,arrival", + "set_id": 1 + }, + { + "name": "airplane-takeoff", + "content": "", + "style": "outline", + "tags": "vehicles,airports,flights,flying,planes,transit,transportation,traveling,departure", + "set_id": 1 + }, + { + "name": "airplane-taxiing", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,airports,flights,flying,planes,transit,transportation,traveling,arrival", + "set_id": 1 + }, + { + "name": "airplane-tilt", + "content": "", + "style": "outline", + "tags": "vehicles,airports,flights,flying,planes,transit,transportation,traveling,departure", + "set_id": 1 + }, + { + "name": "airplay", + "content": "", + "style": "outline", + "tags": "apple,screencasting,television,tv", + "set_id": 1 + }, + { + "name": "alarm", + "content": "", + "style": "outline", + "tags": "times,timer,clock,schedule,events,watch", + "set_id": 1 + }, + { + "name": "alien", + "content": "", + "style": "outline", + "tags": "ufo,space,flying saucer,extra terrestrial,sci-fi", + "set_id": 1 + }, + { + "name": "align-bottom", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush bottom", + "set_id": 1 + }, + { + "name": "align-bottom-simple", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush bottom", + "set_id": 1 + }, + { + "name": "align-center-horizontal", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,centered,middle", + "set_id": 1 + }, + { + "name": "align-center-horizontal-simple", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,centered,middle", + "set_id": 1 + }, + { + "name": "align-center-vertical", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,centered,middle", + "set_id": 1 + }, + { + "name": "align-center-vertical-simple", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,centered,middle", + "set_id": 1 + }, + { + "name": "align-left", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush left", + "set_id": 1 + }, + { + "name": "align-left-simple", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush left", + "set_id": 1 + }, + { + "name": "align-right", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush right", + "set_id": 1 + }, + { + "name": "align-right-simple", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush right", + "set_id": 1 + }, + { + "name": "align-top", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush top", + "set_id": 1 + }, + { + "name": "align-top-simple", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush top", + "set_id": 1 + }, + { + "name": "amazon-logo", + "content": "", + "style": "outline", + "tags": "ecommerce,shopping,logos", + "set_id": 1 + }, + { + "name": "ambulance", + "content": "", + "style": "outline", + "tags": "*new*,first-aid,emt,medical,medicine,injury,safety,emergency,doctor,vehicles", + "set_id": 1 + }, + { + "name": "anchor", + "content": "", + "style": "outline", + "tags": "nautical,boats,ships,hope,safety,insurance", + "set_id": 1 + }, + { + "name": "anchor-simple", + "content": "", + "style": "outline", + "tags": "nautical,boats,ships,hope,safety,insurance", + "set_id": 1 + }, + { + "name": "android-logo", + "content": "", + "style": "outline", + "tags": "logos,google,mobile,phone,cellular,cellphone", + "set_id": 1 + }, + { + "name": "angle", + "content": "", + "style": "outline", + "tags": "*new*,geometry,trigonometry,degrees,radians,measurement,protractor,compass,arc", + "set_id": 1 + }, + { + "name": "angular-logo", + "content": "", + "style": "outline", + "tags": "framework,javascript,google,web", + "set_id": 1 + }, + { + "name": "aperture", + "content": "", + "style": "outline", + "tags": "photography,cameras,pictures,lens", + "set_id": 1 + }, + { + "name": "app-store-logo", + "content": "", + "style": "outline", + "tags": "macintosh,imac,iphone,ipad,macos,ios", + "set_id": 1 + }, + { + "name": "app-window", + "content": "", + "style": "outline", + "tags": "windows,software,programs,applications", + "set_id": 1 + }, + { + "name": "apple-logo", + "content": "", + "style": "outline", + "tags": "macintosh,imac,iphone,ipad,macos,ios", + "set_id": 1 + }, + { + "name": "apple-podcasts-logo", + "content": "", + "style": "outline", + "tags": "macintosh,imac,iphone,ipad,macos,ios", + "set_id": 1 + }, + { + "name": "approximate-equals", + "content": "", + "style": "outline", + "tags": "*new*,≈,is approximately equal to,congruent,equality,equivalent,equivalence,comparison,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "archive", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,downloaded,downloading", + "set_id": 1 + }, + { + "name": "armchair", + "content": "", + "style": "outline", + "tags": "seat,furniture", + "set_id": 1 + }, + { + "name": "arrow-arc-left", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-arc-right", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-double-up-left", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,reply-all", + "set_id": 1 + }, + { + "name": "arrow-bend-double-up-right", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-down-left", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-down-right", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-left-down", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-left-up", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-right-down", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-right-up", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-up-left", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,reply,re", + "set_id": 1 + }, + { + "name": "arrow-bend-up-right", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,forward,fwd", + "set_id": 1 + }, + { + "name": "arrow-circle-down", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-down-left", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-down-right", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-left", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-right", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-up", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-up-left", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-up-right", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-clockwise", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,redo,refreshing,rotate,spin,flip", + "set_id": 1 + }, + { + "name": "arrow-counter-clockwise", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,undo,refreshing,rotate,spin,flip", + "set_id": 1 + }, + { + "name": "arrow-down", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-down-left", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-down-right", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-down-left", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-down-right", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-left", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-left-down", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-left-up", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-right", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-right-down", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-right-up", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-up-left", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-up-right", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-fat-down", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-left", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-line-down", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-line-left", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-line-right", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-line-up", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,caps lock,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-lines-down", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-lines-left", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-lines-right", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-lines-up", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-right", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-up", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,shift,outlined", + "set_id": 1 + }, + { + "name": "arrow-left", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-line-down", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,bottom", + "set_id": 1 + }, + { + "name": "arrow-line-down-left", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-line-down-right", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-line-left", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-line-right", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-line-up", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,top", + "set_id": 1 + }, + { + "name": "arrow-line-up-left", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-line-up-right", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-right", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-down", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-down-left", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-down-right", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-in", + "content": "", + "style": "outline", + "tags": "import,directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-left", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-out", + "content": "", + "style": "outline", + "tags": "export,external,directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-right", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-up", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-up-left", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-up-right", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-u-down-left", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,undo,return,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-down-right", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,redo,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-left-down", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,undo,return,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-left-up", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,redo,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-right-down", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,undo,return,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-right-up", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,redo,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-up-left", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,undo,return,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-up-right", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,redo,u-turns", + "set_id": 1 + }, + { + "name": "arrow-up", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-up-left", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-up-right", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrows-clockwise", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,redo,refreshing,sync,synchronize,rotate,spin,flip", + "set_id": 1 + }, + { + "name": "arrows-counter-clockwise", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,undo,refreshing,rotate,spin,flip", + "set_id": 1 + }, + { + "name": "arrows-down-up", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrows-horizontal", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,cursor,resize,expand,left,right", + "set_id": 1 + }, + { + "name": "arrows-in", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,collapse,minimize,resize,shrink", + "set_id": 1 + }, + { + "name": "arrows-in-cardinal", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,collapse,minimize,resize,shrink", + "set_id": 1 + }, + { + "name": "arrows-in-line-horizontal", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,close,center,align", + "set_id": 1 + }, + { + "name": "arrows-in-line-vertical", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,close,center,align", + "set_id": 1 + }, + { + "name": "arrows-in-simple", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,collapse,minimize,resize", + "set_id": 1 + }, + { + "name": "arrows-left-right", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrows-merge", + "content": "", + "style": "outline", + "tags": "*updated*,arrowheads,join,combine", + "set_id": 1 + }, + { + "name": "arrows-out", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,expand,fullscreen,resize,grow", + "set_id": 1 + }, + { + "name": "arrows-out-cardinal", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,expand,fullscreen,resize,pan,move,grow", + "set_id": 1 + }, + { + "name": "arrows-out-line-horizontal", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,open,split", + "set_id": 1 + }, + { + "name": "arrows-out-line-vertical", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,open,split", + "set_id": 1 + }, + { + "name": "arrows-out-simple", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,expand,fullscreen,resize", + "set_id": 1 + }, + { + "name": "arrows-split", + "content": "", + "style": "outline", + "tags": "*updated*,arrowheads,fork", + "set_id": 1 + }, + { + "name": "arrows-vertical", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,cursor,resize,expand,up,down", + "set_id": 1 + }, + { + "name": "article", + "content": "", + "style": "outline", + "tags": "reading,writing,journals,periodicals,text,newspaper", + "set_id": 1 + }, + { + "name": "article-medium", + "content": "", + "style": "outline", + "tags": "*updated*,reading,writing,journals,periodicals,text,newspaper", + "set_id": 1 + }, + { + "name": "article-ny-times", + "content": "", + "style": "outline", + "tags": "*updated*,reading,writing,journals,periodicals,text,news,newspaper,nyt,new york times", + "set_id": 1 + }, + { + "name": "asclepius", + "content": "", + "style": "outline", + "tags": "*new*,caduceus,staff,mythology,rx,medicine,drugs,pharmacy,pharmacist,pharmaceuticals,doctor,hospital,snake,mercury,hermes", + "set_id": 1 + }, + { + "name": "asterisk", + "content": "", + "style": "outline", + "tags": "star,wildcard,bullet point,6,emergency", + "set_id": 1 + }, + { + "name": "asterisk-simple", + "content": "", + "style": "outline", + "tags": "*updated*,star,wildcard,bullet point,5,emergency", + "set_id": 1 + }, + { + "name": "at", + "content": "", + "style": "outline", + "tags": "@,address,email,at symbol,commercial at,arobase", + "set_id": 1 + }, + { + "name": "atom", + "content": "", + "style": "outline", + "tags": "atomic,nucleus,nuclear,reactor,science,physics,electron,automation,react", + "set_id": 1 + }, + { + "name": "avocado", + "content": "", + "style": "outline", + "tags": "*new*,food,vegetable,veggie,fruit,groceries,market", + "set_id": 1 + }, + { + "name": "axe", + "content": "", + "style": "outline", + "tags": "*new*,tools,carpentry,forestry,construction", + "set_id": 1 + }, + { + "name": "baby", + "content": "", + "style": "outline", + "tags": "infant,child,children,toddler", + "set_id": 1 + }, + { + "name": "baby-carriage", + "content": "", + "style": "outline", + "tags": "*new*,pram,stroller,infant,child,children,toddler", + "set_id": 1 + }, + { + "name": "backpack", + "content": "", + "style": "outline", + "tags": "knapsack,camping,school,bag", + "set_id": 1 + }, + { + "name": "backspace", + "content": "", + "style": "outline", + "tags": "keyboard,remove,delete", + "set_id": 1 + }, + { + "name": "bag", + "content": "", + "style": "outline", + "tags": "suitcase,valise,baggage,folders,portfolio", + "set_id": 1 + }, + { + "name": "bag-simple", + "content": "", + "style": "outline", + "tags": "suitcase,valise,baggage,folders,portfolio", + "set_id": 1 + }, + { + "name": "balloon", + "content": "", + "style": "outline", + "tags": "helium,birthday,party", + "set_id": 1 + }, + { + "name": "bandaids", + "content": "", + "style": "outline", + "tags": "bandages,medical,medicine,first aid,injury", + "set_id": 1 + }, + { + "name": "bank", + "content": "", + "style": "outline", + "tags": "banking,checking,money,savings,deposit,withdraw,places,locations", + "set_id": 1 + }, + { + "name": "barbell", + "content": "", + "style": "outline", + "tags": "gym,weights,dumbbells,strength training,workout,exercises,fitness", + "set_id": 1 + }, + { + "name": "barcode", + "content": "", + "style": "outline", + "tags": "upc,qr,products,shopping,scanner", + "set_id": 1 + }, + { + "name": "barn", + "content": "", + "style": "outline", + "tags": "*new*,animals,livestock,buildings,farming,agriculture", + "set_id": 1 + }, + { + "name": "barricade", + "content": "", + "style": "outline", + "tags": "construction,safety,gate", + "set_id": 1 + }, + { + "name": "baseball", + "content": "", + "style": "outline", + "tags": "sports,mlb", + "set_id": 1 + }, + { + "name": "baseball-cap", + "content": "", + "style": "outline", + "tags": "clothes,clothing,sports,hat", + "set_id": 1 + }, + { + "name": "baseball-helmet", + "content": "", + "style": "outline", + "tags": "*new*,sports,mlb", + "set_id": 1 + }, + { + "name": "basket", + "content": "", + "style": "outline", + "tags": "ecommerce,market,cart,buying,shopping,groceries,checkout,places,locations", + "set_id": 1 + }, + { + "name": "basketball", + "content": "", + "style": "outline", + "tags": "sports,nba", + "set_id": 1 + }, + { + "name": "bathtub", + "content": "", + "style": "outline", + "tags": "bath,shower,bathroom,faucet", + "set_id": 1 + }, + { + "name": "battery-charging", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-charging-vertical", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-empty", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power,dead", + "set_id": 1 + }, + { + "name": "battery-full", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power,filled", + "set_id": 1 + }, + { + "name": "battery-high", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-low", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-medium", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-plus", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-plus-vertical", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-vertical-empty", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power,dead", + "set_id": 1 + }, + { + "name": "battery-vertical-full", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-vertical-high", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-vertical-low", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-vertical-medium", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-warning", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power,empty,critical", + "set_id": 1 + }, + { + "name": "battery-warning-vertical", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power,empty,critical", + "set_id": 1 + }, + { + "name": "beach-ball", + "content": "", + "style": "outline", + "tags": "*new*,sports,ocean,party", + "set_id": 1 + }, + { + "name": "beanie", + "content": "", + "style": "outline", + "tags": "*new*,clothes,clothing,sports,hat,winter", + "set_id": 1 + }, + { + "name": "bed", + "content": "", + "style": "outline", + "tags": "hotels,accommodations,sleeping,places,locations,medical,hospital", + "set_id": 1 + }, + { + "name": "beer-bottle", + "content": "", + "style": "outline", + "tags": "drinks,beverages,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "beer-stein", + "content": "", + "style": "outline", + "tags": "drinks,beverages,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "behance-logo", + "content": "", + "style": "outline", + "tags": "logos,illustration,ui,interface", + "set_id": 1 + }, + { + "name": "bell", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,calls", + "set_id": 1 + }, + { + "name": "bell-ringing", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,calls", + "set_id": 1 + }, + { + "name": "bell-simple", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,calls", + "set_id": 1 + }, + { + "name": "bell-simple-ringing", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,calls", + "set_id": 1 + }, + { + "name": "bell-simple-slash", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,silent,silenced,disabled", + "set_id": 1 + }, + { + "name": "bell-simple-z", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,snooze", + "set_id": 1 + }, + { + "name": "bell-slash", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,silent,silenced,ringer,calls,disabled", + "set_id": 1 + }, + { + "name": "bell-z", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,snooze", + "set_id": 1 + }, + { + "name": "belt", + "content": "", + "style": "outline", + "tags": "*new*,clothes,clothing", + "set_id": 1 + }, + { + "name": "bezier-curve", + "content": "", + "style": "outline", + "tags": "shapes,drawing,path,pen,vector", + "set_id": 1 + }, + { + "name": "bicycle", + "content": "", + "style": "outline", + "tags": "bikers,bicycling,cyclists,transit,transportation,commuter,exercises,fitness", + "set_id": 1 + }, + { + "name": "binary", + "content": "", + "style": "outline", + "tags": "*new*,digital,0,1,programming,coding,executable", + "set_id": 1 + }, + { + "name": "binoculars", + "content": "", + "style": "outline", + "tags": "telescope,glasses,search,find,explore", + "set_id": 1 + }, + { + "name": "biohazard", + "content": "", + "style": "outline", + "tags": "*new*,contamination,quarantine,toxic,poison,danger,caution", + "set_id": 1 + }, + { + "name": "bird", + "content": "", + "style": "outline", + "tags": "*updated*,animals,pets", + "set_id": 1 + }, + { + "name": "blueprint", + "content": "", + "style": "outline", + "tags": "*new*,architecture,layout,floorplan,building,construction", + "set_id": 1 + }, + { + "name": "bluetooth", + "content": "", + "style": "outline", + "tags": "wireless,connection,connected,connectivity", + "set_id": 1 + }, + { + "name": "bluetooth-connected", + "content": "", + "style": "outline", + "tags": "wireless,connection,connected,connectivity", + "set_id": 1 + }, + { + "name": "bluetooth-slash", + "content": "", + "style": "outline", + "tags": "wireless,connection,connectivity,disconnected,disabled", + "set_id": 1 + }, + { + "name": "bluetooth-x", + "content": "", + "style": "outline", + "tags": "wireless,connection,connectivity,disconnected,errors", + "set_id": 1 + }, + { + "name": "boat", + "content": "", + "style": "outline", + "tags": "ferry,ship,cruise,vehicles,public transit,transportation,commuter,traveling,sailing,places,locations", + "set_id": 1 + }, + { + "name": "bomb", + "content": "", + "style": "outline", + "tags": "*new*,gaming,grenade,explosive,war,weapon,fuse", + "set_id": 1 + }, + { + "name": "bone", + "content": "", + "style": "outline", + "tags": "dogbone", + "set_id": 1 + }, + { + "name": "book", + "content": "", + "style": "outline", + "tags": "reading,reader,novel,story,library", + "set_id": 1 + }, + { + "name": "book-bookmark", + "content": "", + "style": "outline", + "tags": "reading,reader,novel,story,library,favorites,favorited", + "set_id": 1 + }, + { + "name": "book-open", + "content": "", + "style": "outline", + "tags": "*updated*,reading,reader,novel,story,library", + "set_id": 1 + }, + { + "name": "book-open-text", + "content": "", + "style": "outline", + "tags": "*updated*,reading,reader,novel,story,library", + "set_id": 1 + }, + { + "name": "book-open-user", + "content": "", + "style": "outline", + "tags": "*new*,reading,reader,easy read,library,places,locations", + "set_id": 1 + }, + { + "name": "bookmark", + "content": "", + "style": "outline", + "tags": "reading,reader,novel,story,placeholder,favorites,favorited,library", + "set_id": 1 + }, + { + "name": "bookmark-simple", + "content": "", + "style": "outline", + "tags": "reading,reader,novel,story,placeholder,favorites,favorited,library", + "set_id": 1 + }, + { + "name": "bookmarks", + "content": "", + "style": "outline", + "tags": "reading,reader,novel,story,placeholder,favorites,favorited,library", + "set_id": 1 + }, + { + "name": "bookmarks-simple", + "content": "", + "style": "outline", + "tags": "reading,reader,novel,story,placeholder,favorites,favorited,library", + "set_id": 1 + }, + { + "name": "books", + "content": "", + "style": "outline", + "tags": "reading,reader,bookshelf,library,places,locations", + "set_id": 1 + }, + { + "name": "boot", + "content": "", + "style": "outline", + "tags": "hiking,shoes,sports,exercise", + "set_id": 1 + }, + { + "name": "boules", + "content": "", + "style": "outline", + "tags": "*new*,balls,sports,pétanque,raffa,bocce,boule lyonnaise,lawn bowls", + "set_id": 1 + }, + { + "name": "bounding-box", + "content": "", + "style": "outline", + "tags": "polygon,shapes,outline,corners,rectangle", + "set_id": 1 + }, + { + "name": "bowl-food", + "content": "", + "style": "outline", + "tags": "ramen,food,meal,eating,restaurants,dining,locations", + "set_id": 1 + }, + { + "name": "bowl-steam", + "content": "", + "style": "outline", + "tags": "*new*,food,meal,eating,restaurants,dining,locations", + "set_id": 1 + }, + { + "name": "bowling-ball", + "content": "", + "style": "outline", + "tags": "*new*,sports,alley", + "set_id": 1 + }, + { + "name": "box-arrow-down", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,downloaded,downloading", + "set_id": 1 + }, + { + "name": "box-arrow-up", + "content": "", + "style": "outline", + "tags": "*new*,unarchive,archival,upload", + "set_id": 1 + }, + { + "name": "boxing-glove", + "content": "", + "style": "outline", + "tags": "*new*,sports,combat,martial arts,fight,gym", + "set_id": 1 + }, + { + "name": "brackets-angle", + "content": "", + "style": "outline", + "tags": "code,angle brackets,angle braces", + "set_id": 1 + }, + { + "name": "brackets-curly", + "content": "", + "style": "outline", + "tags": "code,curly brackets,curly braces", + "set_id": 1 + }, + { + "name": "brackets-round", + "content": "", + "style": "outline", + "tags": "code,parentheses,round brackets,round braces", + "set_id": 1 + }, + { + "name": "brackets-square", + "content": "", + "style": "outline", + "tags": "code,square brackets,square braces,array", + "set_id": 1 + }, + { + "name": "brain", + "content": "", + "style": "outline", + "tags": "mind,mental", + "set_id": 1 + }, + { + "name": "brandy", + "content": "", + "style": "outline", + "tags": "drinks,beverages,whiskey,cocktail,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "bread", + "content": "", + "style": "outline", + "tags": "*new*,food,meal,bakery,sandwich,gluten,loaf,toast,slice", + "set_id": 1 + }, + { + "name": "bridge", + "content": "", + "style": "outline", + "tags": "travel,transportation,infrastucture", + "set_id": 1 + }, + { + "name": "briefcase", + "content": "", + "style": "outline", + "tags": "suitcase,valise,baggage,folders,portfolio", + "set_id": 1 + }, + { + "name": "briefcase-metal", + "content": "", + "style": "outline", + "tags": "suitcase,valise,baggage,folders,portfolio", + "set_id": 1 + }, + { + "name": "broadcast", + "content": "", + "style": "outline", + "tags": "radio,hotspot,wifi,emit", + "set_id": 1 + }, + { + "name": "broom", + "content": "", + "style": "outline", + "tags": "sweeping,cleaning", + "set_id": 1 + }, + { + "name": "browser", + "content": "", + "style": "outline", + "tags": "web browsers,windows,internet,website,webpage,chrome,edge,firefox", + "set_id": 1 + }, + { + "name": "browsers", + "content": "", + "style": "outline", + "tags": "web browsers,windows,internet,website,webpage,chrome,edge,firefox", + "set_id": 1 + }, + { + "name": "bug", + "content": "", + "style": "outline", + "tags": "debug,errors,insect,ladybug", + "set_id": 1 + }, + { + "name": "bug-beetle", + "content": "", + "style": "outline", + "tags": "debug,errors,insect,ladybug", + "set_id": 1 + }, + { + "name": "bug-droid", + "content": "", + "style": "outline", + "tags": "debug,errors,insect,android,google", + "set_id": 1 + }, + { + "name": "building", + "content": "", + "style": "outline", + "tags": "*new*,places,locations,company,business,buildings", + "set_id": 1 + }, + { + "name": "building-apartment", + "content": "", + "style": "outline", + "tags": "*new*,places,locations,buildings", + "set_id": 1 + }, + { + "name": "building-office", + "content": "", + "style": "outline", + "tags": "*new*,places,locations,company,business,buildings", + "set_id": 1 + }, + { + "name": "buildings", + "content": "", + "style": "outline", + "tags": "places,locations,company,business", + "set_id": 1 + }, + { + "name": "bulldozer", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,construction,earth mover,dig,digger", + "set_id": 1 + }, + { + "name": "bus", + "content": "", + "style": "outline", + "tags": "vehicles,automobile,public transit,transportation,commuter,traveling,places,locations", + "set_id": 1 + }, + { + "name": "butterfly", + "content": "", + "style": "outline", + "tags": "animals,insects,moth", + "set_id": 1 + }, + { + "name": "cable-car", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,gondola,skiing,mountains,public transit,transportation,commuter,traveling,places,locations", + "set_id": 1 + }, + { + "name": "cactus", + "content": "", + "style": "outline", + "tags": "*updated*,plants,cacti,desert,western", + "set_id": 1 + }, + { + "name": "cake", + "content": "", + "style": "outline", + "tags": "dessert,birthday,celebration,event", + "set_id": 1 + }, + { + "name": "calculator", + "content": "", + "style": "outline", + "tags": "addition,sum,subtraction,difference,multiply,multiplication,product,divide,division,divisor,dividend,quotient,equals,equality,mathematics,arithmetic,+,-,±,×,÷,=", + "set_id": 1 + }, + { + "name": "calendar", + "content": "", + "style": "outline", + "tags": "dates,times,events,schedule,12", + "set_id": 1 + }, + { + "name": "calendar-blank", + "content": "", + "style": "outline", + "tags": "dates,times,events,schedule,none", + "set_id": 1 + }, + { + "name": "calendar-check", + "content": "", + "style": "outline", + "tags": "dates,times,events,schedule,todo,checklist", + "set_id": 1 + }, + { + "name": "calendar-dot", + "content": "", + "style": "outline", + "tags": "*new*,dates,times,events,schedule,today", + "set_id": 1 + }, + { + "name": "calendar-dots", + "content": "", + "style": "outline", + "tags": "*new*,dates,times,events,schedule", + "set_id": 1 + }, + { + "name": "calendar-heart", + "content": "", + "style": "outline", + "tags": "*new*,dates,times,events,schedule,favorite,star", + "set_id": 1 + }, + { + "name": "calendar-minus", + "content": "", + "style": "outline", + "tags": "*new*,dates,times,events,schedule,remove,delete", + "set_id": 1 + }, + { + "name": "calendar-plus", + "content": "", + "style": "outline", + "tags": "dates,times,events,schedule,add", + "set_id": 1 + }, + { + "name": "calendar-slash", + "content": "", + "style": "outline", + "tags": "*new*,dates,times,events,schedule,remove,delete,cancel. unavailable", + "set_id": 1 + }, + { + "name": "calendar-star", + "content": "", + "style": "outline", + "tags": "*new*,dates,times,events,schedule,favorite,star", + "set_id": 1 + }, + { + "name": "calendar-x", + "content": "", + "style": "outline", + "tags": "dates,times,events,schedule,closed,cancelled", + "set_id": 1 + }, + { + "name": "call-bell", + "content": "", + "style": "outline", + "tags": "service bell,reception,attendant,concierge bell", + "set_id": 1 + }, + { + "name": "camera", + "content": "", + "style": "outline", + "tags": "photography,pictures,lens", + "set_id": 1 + }, + { + "name": "camera-plus", + "content": "", + "style": "outline", + "tags": "photography,pictures,album,add", + "set_id": 1 + }, + { + "name": "camera-rotate", + "content": "", + "style": "outline", + "tags": "photography,pictures,orientation,portrait,landscape,selfie,flip", + "set_id": 1 + }, + { + "name": "camera-slash", + "content": "", + "style": "outline", + "tags": "photography,pictures,lens,disabled", + "set_id": 1 + }, + { + "name": "campfire", + "content": "", + "style": "outline", + "tags": "camping,flame,bonfire,outdoors", + "set_id": 1 + }, + { + "name": "car", + "content": "", + "style": "outline", + "tags": "*updated*,cars,vehicles,automobile,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "car-battery", + "content": "", + "style": "outline", + "tags": "*new*,charged,charger,charging,power,voltage,electricity", + "set_id": 1 + }, + { + "name": "car-profile", + "content": "", + "style": "outline", + "tags": "cars,vehicles,automobile,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "car-simple", + "content": "", + "style": "outline", + "tags": "cars,vehicles,automobile,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "cardholder", + "content": "", + "style": "outline", + "tags": "wallet,money,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "cards", + "content": "", + "style": "outline", + "tags": "card,slides,slideshow,windows,website,webpage,layers", + "set_id": 1 + }, + { + "name": "cards-three", + "content": "", + "style": "outline", + "tags": "*new*,card,slides,slideshow,windows,website,webpage,layers,stack", + "set_id": 1 + }, + { + "name": "caret-circle-double-down", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-double-left", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-double-right", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-double-up", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-down", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-left", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-right", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-up", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-up-down", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-double-down", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-double-left", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-double-right", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-double-up", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-down", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-left", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-line-down", + "content": "", + "style": "outline", + "tags": "*new*,chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-line-left", + "content": "", + "style": "outline", + "tags": "*new*,chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-line-right", + "content": "", + "style": "outline", + "tags": "*new*,chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-line-up", + "content": "", + "style": "outline", + "tags": "*new*,chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-right", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-up", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-up-down", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "carrot", + "content": "", + "style": "outline", + "tags": "food,vegetable,veggie,groceries,market", + "set_id": 1 + }, + { + "name": "cash-register", + "content": "", + "style": "outline", + "tags": "*new*,retail,point-of-sale,pos,transaction,sales,till", + "set_id": 1 + }, + { + "name": "cassette-tape", + "content": "", + "style": "outline", + "tags": "recording,audio,album,music", + "set_id": 1 + }, + { + "name": "castle-turret", + "content": "", + "style": "outline", + "tags": "*updated*,chess,rook", + "set_id": 1 + }, + { + "name": "cat", + "content": "", + "style": "outline", + "tags": "pets,animals,kitty,kitten", + "set_id": 1 + }, + { + "name": "cell-signal-full", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,reception,service", + "set_id": 1 + }, + { + "name": "cell-signal-high", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,reception,service", + "set_id": 1 + }, + { + "name": "cell-signal-low", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,reception,service", + "set_id": 1 + }, + { + "name": "cell-signal-medium", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,reception,service", + "set_id": 1 + }, + { + "name": "cell-signal-none", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,reception,service", + "set_id": 1 + }, + { + "name": "cell-signal-slash", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,disconnected,disabled,reception,service", + "set_id": 1 + }, + { + "name": "cell-signal-x", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,reception,disconnected,errors,service", + "set_id": 1 + }, + { + "name": "cell-tower", + "content": "", + "style": "outline", + "tags": "*new*,wireless,cellular,broadcast,phone,mobile,network,connection,connectivity", + "set_id": 1 + }, + { + "name": "certificate", + "content": "", + "style": "outline", + "tags": "*updated*,awards,certification,degree,diploma", + "set_id": 1 + }, + { + "name": "chair", + "content": "", + "style": "outline", + "tags": "seat,furniture", + "set_id": 1 + }, + { + "name": "chalkboard", + "content": "", + "style": "outline", + "tags": "blackboard,whiteboard,classroom,teacher,education,school,college,university", + "set_id": 1 + }, + { + "name": "chalkboard-simple", + "content": "", + "style": "outline", + "tags": "*updated*,blackboard,whiteboard,classroom,teacher,education,school,college,university", + "set_id": 1 + }, + { + "name": "chalkboard-teacher", + "content": "", + "style": "outline", + "tags": "blackboard,whiteboard,classroom,education,school,college,university", + "set_id": 1 + }, + { + "name": "champagne", + "content": "", + "style": "outline", + "tags": "glass,drinks,beverages,wine,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "charging-station", + "content": "", + "style": "outline", + "tags": "ev,charge,fuel,pump", + "set_id": 1 + }, + { + "name": "chart-bar", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,histogram,analyze,analysis", + "set_id": 1 + }, + { + "name": "chart-bar-horizontal", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,histogram,analyze,analysis", + "set_id": 1 + }, + { + "name": "chart-donut", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,analyze,analysis,circle", + "set_id": 1 + }, + { + "name": "chart-line", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,analyze,analysis,stocks", + "set_id": 1 + }, + { + "name": "chart-line-down", + "content": "", + "style": "outline", + "tags": "*updated*,graphs,graphing,charts,statistics,analyze,analysis,stocks", + "set_id": 1 + }, + { + "name": "chart-line-up", + "content": "", + "style": "outline", + "tags": "*updated*,graphs,graphing,charts,statistics,analyze,analysis,stocks", + "set_id": 1 + }, + { + "name": "chart-pie", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,circle,analyze,analysis", + "set_id": 1 + }, + { + "name": "chart-pie-slice", + "content": "", + "style": "outline", + "tags": "*updated*,graphs,graphing,charts,statistics,circle,analyze,analysis", + "set_id": 1 + }, + { + "name": "chart-polar", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,analyze,analysis,circle", + "set_id": 1 + }, + { + "name": "chart-scatter", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,analyze,analysis", + "set_id": 1 + }, + { + "name": "chat", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-centered", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-centered-dots", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-centered-slash", + "content": "", + "style": "outline", + "tags": "*new*,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-centered-text", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-circle", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,round,bubble", + "set_id": 1 + }, + { + "name": "chat-circle-dots", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,round,bubble", + "set_id": 1 + }, + { + "name": "chat-circle-slash", + "content": "", + "style": "outline", + "tags": "*new*,messages,messaging,sms,texting,comment,round,bubble", + "set_id": 1 + }, + { + "name": "chat-circle-text", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,round,bubble", + "set_id": 1 + }, + { + "name": "chat-dots", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-slash", + "content": "", + "style": "outline", + "tags": "*new*,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-teardrop", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,bubble", + "set_id": 1 + }, + { + "name": "chat-teardrop-dots", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,bubble", + "set_id": 1 + }, + { + "name": "chat-teardrop-slash", + "content": "", + "style": "outline", + "tags": "*new*,messages,messaging,sms,texting,comment,bubble", + "set_id": 1 + }, + { + "name": "chat-teardrop-text", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,bubble", + "set_id": 1 + }, + { + "name": "chat-text", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chats", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chats-circle", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,round,bubble", + "set_id": 1 + }, + { + "name": "chats-teardrop", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,bubble", + "set_id": 1 + }, + { + "name": "check", + "content": "", + "style": "outline", + "tags": "todo,to-do,task,list,checkbox,ok,done", + "set_id": 1 + }, + { + "name": "check-circle", + "content": "", + "style": "outline", + "tags": "todo,to-do,task,list,checkbox,round,ok,done", + "set_id": 1 + }, + { + "name": "check-fat", + "content": "", + "style": "outline", + "tags": "todo,to-do,task,list,checkbox,ok,done", + "set_id": 1 + }, + { + "name": "check-square", + "content": "", + "style": "outline", + "tags": "todo,to-do,task,list,checkbox,rectangle,ok,done", + "set_id": 1 + }, + { + "name": "check-square-offset", + "content": "", + "style": "outline", + "tags": "*updated*,todo,to-do,task,list,checkbox,rectangle,ok,done", + "set_id": 1 + }, + { + "name": "checkerboard", + "content": "", + "style": "outline", + "tags": "*new*,crossword", + "set_id": 1 + }, + { + "name": "checks", + "content": "", + "style": "outline", + "tags": "*updated*,todo,task,to-do,list,checkbox,ok,done", + "set_id": 1 + }, + { + "name": "cheers", + "content": "", + "style": "outline", + "tags": "*new*,glass,drinks,beverages,champagne,toast,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "cheese", + "content": "", + "style": "outline", + "tags": "*new*,dairy,wedge,food,dining", + "set_id": 1 + }, + { + "name": "chef-hat", + "content": "", + "style": "outline", + "tags": "*new*,cooking,cuisine,kitchen,clothes,clothing", + "set_id": 1 + }, + { + "name": "cherries", + "content": "", + "style": "outline", + "tags": "*new*,food,fruit,cherry,groceries,market", + "set_id": 1 + }, + { + "name": "church", + "content": "", + "style": "outline", + "tags": "christ,christianity,cathedral,religion,worship", + "set_id": 1 + }, + { + "name": "cigarette", + "content": "", + "style": "outline", + "tags": "*new*,smoking,tobacco", + "set_id": 1 + }, + { + "name": "cigarette-slash", + "content": "", + "style": "outline", + "tags": "*new*,non-smoking,tobacco", + "set_id": 1 + }, + { + "name": "circle", + "content": "", + "style": "outline", + "tags": "round,shapes,polygons", + "set_id": 1 + }, + { + "name": "circle-dashed", + "content": "", + "style": "outline", + "tags": "missing,round,shapes,polygons", + "set_id": 1 + }, + { + "name": "circle-half", + "content": "", + "style": "outline", + "tags": "round,shapes,contrast,brightness", + "set_id": 1 + }, + { + "name": "circle-half-tilt", + "content": "", + "style": "outline", + "tags": "round,shapes,contrast,brightness", + "set_id": 1 + }, + { + "name": "circle-notch", + "content": "", + "style": "outline", + "tags": "round,shapes,loading,loader,spinner,waiting,progress", + "set_id": 1 + }, + { + "name": "circles-four", + "content": "", + "style": "outline", + "tags": "round,shapes,polygons,4", + "set_id": 1 + }, + { + "name": "circles-three", + "content": "", + "style": "outline", + "tags": "round,shapes,polygons,3,asana", + "set_id": 1 + }, + { + "name": "circles-three-plus", + "content": "", + "style": "outline", + "tags": "round,shapes,polygons,3,+", + "set_id": 1 + }, + { + "name": "circuitry", + "content": "", + "style": "outline", + "tags": "processor,microchip,computer,circuit,electronics,motherboard", + "set_id": 1 + }, + { + "name": "city", + "content": "", + "style": "outline", + "tags": "*new*,skyline,skyscrapers,places,locations,buildings", + "set_id": 1 + }, + { + "name": "clipboard", + "content": "", + "style": "outline", + "tags": "copy,copied,checklist", + "set_id": 1 + }, + { + "name": "clipboard-text", + "content": "", + "style": "outline", + "tags": "copy,copied,checklist", + "set_id": 1 + }, + { + "name": "clock", + "content": "", + "style": "outline", + "tags": "times,timer,alarm,schedule,events,watch", + "set_id": 1 + }, + { + "name": "clock-afternoon", + "content": "", + "style": "outline", + "tags": "times,timer,alarm,schedule,events,watch", + "set_id": 1 + }, + { + "name": "clock-clockwise", + "content": "", + "style": "outline", + "tags": "times,timer,alarm,schedule,events,restore,fast forward,update", + "set_id": 1 + }, + { + "name": "clock-countdown", + "content": "", + "style": "outline", + "tags": "times,timer,alarm,schedule,events,watch", + "set_id": 1 + }, + { + "name": "clock-counter-clockwise", + "content": "", + "style": "outline", + "tags": "times,timer,alarm,schedule,events,backup,rewind,history", + "set_id": 1 + }, + { + "name": "clock-user", + "content": "", + "style": "outline", + "tags": "*new*,times,timer,shift,schedule,events,watch", + "set_id": 1 + }, + { + "name": "closed-captioning", + "content": "", + "style": "outline", + "tags": "subtitles,television,tv,transcribed,transcription,accessibility,a11y", + "set_id": 1 + }, + { + "name": "cloud", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,meteorology,cloudy,overcast", + "set_id": 1 + }, + { + "name": "cloud-arrow-down", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,download", + "set_id": 1 + }, + { + "name": "cloud-arrow-up", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,upload", + "set_id": 1 + }, + { + "name": "cloud-check", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,sync,synchronized", + "set_id": 1 + }, + { + "name": "cloud-fog", + "content": "", + "style": "outline", + "tags": "meteorology,cloudy,overcast,foggy,mist,haze", + "set_id": 1 + }, + { + "name": "cloud-lightning", + "content": "", + "style": "outline", + "tags": "meteorology,cloudy,overcast,stormy,thunderstorm", + "set_id": 1 + }, + { + "name": "cloud-moon", + "content": "", + "style": "outline", + "tags": "meteorology,cloudy,partly cloudy,night,evening", + "set_id": 1 + }, + { + "name": "cloud-rain", + "content": "", + "style": "outline", + "tags": "meteorology,cloudy,rainy,raining,stormy,rainstorm", + "set_id": 1 + }, + { + "name": "cloud-slash", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,sync,disabled", + "set_id": 1 + }, + { + "name": "cloud-snow", + "content": "", + "style": "outline", + "tags": "meteorology,cloudy,snowy,snowing,stormy,snowstorm", + "set_id": 1 + }, + { + "name": "cloud-sun", + "content": "", + "style": "outline", + "tags": "meteorology,cloudy,partly cloudy,partly sunny", + "set_id": 1 + }, + { + "name": "cloud-warning", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,errors", + "set_id": 1 + }, + { + "name": "cloud-x", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,errors", + "set_id": 1 + }, + { + "name": "clover", + "content": "", + "style": "outline", + "tags": "*new*,four leaf clover,plants,luck,lucky,irish", + "set_id": 1 + }, + { + "name": "club", + "content": "", + "style": "outline", + "tags": "clubs,suits,cards,gambling,casino,gaming", + "set_id": 1 + }, + { + "name": "coat-hanger", + "content": "", + "style": "outline", + "tags": "clothing,clothes,closet", + "set_id": 1 + }, + { + "name": "coda-logo", + "content": "", + "style": "outline", + "tags": "project management,productivity,documentation,wiki,logos", + "set_id": 1 + }, + { + "name": "code", + "content": "", + "style": "outline", + "tags": "angle brackets,angle braces,snippets", + "set_id": 1 + }, + { + "name": "code-block", + "content": "", + "style": "outline", + "tags": "angle brackets,angle braces,snippets", + "set_id": 1 + }, + { + "name": "code-simple", + "content": "", + "style": "outline", + "tags": "angle brackets,angle braces,snippets", + "set_id": 1 + }, + { + "name": "codepen-logo", + "content": "", + "style": "outline", + "tags": "ide,logos", + "set_id": 1 + }, + { + "name": "codesandbox-logo", + "content": "", + "style": "outline", + "tags": "ide,logos", + "set_id": 1 + }, + { + "name": "coffee", + "content": "", + "style": "outline", + "tags": "tea,java,beverages,drinks,cafe,cup,mug,espresso,cappuccino,latte,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "coffee-bean", + "content": "", + "style": "outline", + "tags": "*new*,tea,java,beverages,drinks,cafe,cup,mug,espresso,cappuccino,latte,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "coin", + "content": "", + "style": "outline", + "tags": "coins,cents,change,money,currency,payment,paying,purchase,price,sell", + "set_id": 1 + }, + { + "name": "coin-vertical", + "content": "", + "style": "outline", + "tags": "cents,change,money,currency,payment,paying,purchase,price,sell", + "set_id": 1 + }, + { + "name": "coins", + "content": "", + "style": "outline", + "tags": "cents,change,money,currency,payment,paying,purchase,price,sell", + "set_id": 1 + }, + { + "name": "columns", + "content": "", + "style": "outline", + "tags": "2,shapes,polygons,box,stack,list,table,cards", + "set_id": 1 + }, + { + "name": "columns-plus-left", + "content": "", + "style": "outline", + "tags": "*new*,2,shapes,polygons,box,stack,list,table,cards,prepend,insert", + "set_id": 1 + }, + { + "name": "columns-plus-right", + "content": "", + "style": "outline", + "tags": "*new*,2,shapes,polygons,box,stack,list,table,cards,append,insert", + "set_id": 1 + }, + { + "name": "command", + "content": "", + "style": "outline", + "tags": "apple,keyboard,shortcut,modifier,looped square,bowen knot,saint john's arms", + "set_id": 1 + }, + { + "name": "compass", + "content": "", + "style": "outline", + "tags": "navigation,directions,maps,safari,apple", + "set_id": 1 + }, + { + "name": "compass-rose", + "content": "", + "style": "outline", + "tags": "*new*,navigation,directions,maps,cardinal,cartography", + "set_id": 1 + }, + { + "name": "compass-tool", + "content": "", + "style": "outline", + "tags": "drawing,geometry,trigonometry,degrees,radians,measurement,protractor,compass,arc", + "set_id": 1 + }, + { + "name": "computer-tower", + "content": "", + "style": "outline", + "tags": "desktop,pc,imac", + "set_id": 1 + }, + { + "name": "confetti", + "content": "", + "style": "outline", + "tags": "tada,party,emoji", + "set_id": 1 + }, + { + "name": "contactless-payment", + "content": "", + "style": "outline", + "tags": "purchase,credit card,nfc", + "set_id": 1 + }, + { + "name": "control", + "content": "", + "style": "outline", + "tags": "ctrl,key,keyboard,shortcut,caret", + "set_id": 1 + }, + { + "name": "cookie", + "content": "", + "style": "outline", + "tags": "privacy,dessert,food,dining", + "set_id": 1 + }, + { + "name": "cooking-pot", + "content": "", + "style": "outline", + "tags": "stew,kitchen,steaming,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "copy", + "content": "", + "style": "outline", + "tags": "duplicated,copied,clipboard", + "set_id": 1 + }, + { + "name": "copy-simple", + "content": "", + "style": "outline", + "tags": "duplicated,copied,clipboard", + "set_id": 1 + }, + { + "name": "copyleft", + "content": "", + "style": "outline", + "tags": "🄯,intellectual property,copr.,symbol", + "set_id": 1 + }, + { + "name": "copyright", + "content": "", + "style": "outline", + "tags": "©,intellectual property,copr.,symbol", + "set_id": 1 + }, + { + "name": "corners-in", + "content": "", + "style": "outline", + "tags": "*updated*,collapse,windowed,minimized", + "set_id": 1 + }, + { + "name": "corners-out", + "content": "", + "style": "outline", + "tags": "*updated*,expand,fullscreen,maximized", + "set_id": 1 + }, + { + "name": "couch", + "content": "", + "style": "outline", + "tags": "furniture,seat", + "set_id": 1 + }, + { + "name": "court-basketball", + "content": "", + "style": "outline", + "tags": "*new*,sports,nba", + "set_id": 1 + }, + { + "name": "cow", + "content": "", + "style": "outline", + "tags": "*new*,animals,livestock,beef,bull,milk,dairy", + "set_id": 1 + }, + { + "name": "cowboy-hat", + "content": "", + "style": "outline", + "tags": "*new*,clothes,clothing,stetson", + "set_id": 1 + }, + { + "name": "cpu", + "content": "", + "style": "outline", + "tags": "processor,microchip,computer,circuit", + "set_id": 1 + }, + { + "name": "crane", + "content": "", + "style": "outline", + "tags": "*new*,construction,industry", + "set_id": 1 + }, + { + "name": "crane-tower", + "content": "", + "style": "outline", + "tags": "*new*,construction,industry", + "set_id": 1 + }, + { + "name": "credit-card", + "content": "", + "style": "outline", + "tags": "debit,visa,mastercard,money,payment,paying,purchase,swipe", + "set_id": 1 + }, + { + "name": "cricket", + "content": "", + "style": "outline", + "tags": "*new*,sports,ball,bat", + "set_id": 1 + }, + { + "name": "crop", + "content": "", + "style": "outline", + "tags": "photography,clip,screenshots", + "set_id": 1 + }, + { + "name": "cross", + "content": "", + "style": "outline", + "tags": "dagger,crucifix,christ,christianity,religion,worship,symbol", + "set_id": 1 + }, + { + "name": "crosshair", + "content": "", + "style": "outline", + "tags": "geolocation,gps,aiming,targeting", + "set_id": 1 + }, + { + "name": "crosshair-simple", + "content": "", + "style": "outline", + "tags": "geolocation,gps,aiming,targeting", + "set_id": 1 + }, + { + "name": "crown", + "content": "", + "style": "outline", + "tags": "*updated*,king,queen,royalty,monarch,ruler,leader,chess", + "set_id": 1 + }, + { + "name": "crown-cross", + "content": "", + "style": "outline", + "tags": "*new*,king,queen,royalty,monarch,ruler,leader,chess", + "set_id": 1 + }, + { + "name": "crown-simple", + "content": "", + "style": "outline", + "tags": "*updated*,king,queen,royalty,monarch,ruler,leader,chess", + "set_id": 1 + }, + { + "name": "cube", + "content": "", + "style": "outline", + "tags": "square,box,3d,volume,blocks", + "set_id": 1 + }, + { + "name": "cube-focus", + "content": "", + "style": "outline", + "tags": "augmented reality,ar,virual reality,vr,3d,scan", + "set_id": 1 + }, + { + "name": "cube-transparent", + "content": "", + "style": "outline", + "tags": "square,box,3d,volume,blocks,necker", + "set_id": 1 + }, + { + "name": "currency-btc", + "content": "", + "style": "outline", + "tags": "money,btc,bitcoin,crypto,cryptocurrency,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-circle-dollar", + "content": "", + "style": "outline", + "tags": "money,usd,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-cny", + "content": "", + "style": "outline", + "tags": "money,yuan,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-dollar", + "content": "", + "style": "outline", + "tags": "money,usd,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-dollar-simple", + "content": "", + "style": "outline", + "tags": "money,usd,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-eth", + "content": "", + "style": "outline", + "tags": "money,ethereum,crypto,cryptocurrency,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-eur", + "content": "", + "style": "outline", + "tags": "money,euros,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-gbp", + "content": "", + "style": "outline", + "tags": "money,pounds sterling,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-inr", + "content": "", + "style": "outline", + "tags": "money,rupees,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-jpy", + "content": "", + "style": "outline", + "tags": "money,yen,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-krw", + "content": "", + "style": "outline", + "tags": "money,won,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-kzt", + "content": "", + "style": "outline", + "tags": "money,kazakhstan,tenge,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-ngn", + "content": "", + "style": "outline", + "tags": "money,nigeria,naira,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-rub", + "content": "", + "style": "outline", + "tags": "money,rubles,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "cursor", + "content": "", + "style": "outline", + "tags": "pointer,arrowhead,mouse,click", + "set_id": 1 + }, + { + "name": "cursor-click", + "content": "", + "style": "outline", + "tags": "pointer,arrowhead,mouse", + "set_id": 1 + }, + { + "name": "cursor-text", + "content": "", + "style": "outline", + "tags": "i-beam,input,select", + "set_id": 1 + }, + { + "name": "cylinder", + "content": "", + "style": "outline", + "tags": "shapes,tube", + "set_id": 1 + }, + { + "name": "database", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,hard disk,storage,hdd,servers,databases", + "set_id": 1 + }, + { + "name": "desk", + "content": "", + "style": "outline", + "tags": "*new*,furniture,workspace,table", + "set_id": 1 + }, + { + "name": "desktop", + "content": "", + "style": "outline", + "tags": "computer,pc,imac,tower", + "set_id": 1 + }, + { + "name": "desktop-tower", + "content": "", + "style": "outline", + "tags": "*updated*,computer,pc,imac", + "set_id": 1 + }, + { + "name": "detective", + "content": "", + "style": "outline", + "tags": "incognito,police,law enforcement,spy,secret", + "set_id": 1 + }, + { + "name": "dev-to-logo", + "content": "", + "style": "outline", + "tags": "reading,writing,social media,logos", + "set_id": 1 + }, + { + "name": "device-mobile", + "content": "", + "style": "outline", + "tags": "cellphone,cellular", + "set_id": 1 + }, + { + "name": "device-mobile-camera", + "content": "", + "style": "outline", + "tags": "cellphone,cellular", + "set_id": 1 + }, + { + "name": "device-mobile-slash", + "content": "", + "style": "outline", + "tags": "*new*,cellphone,cellular", + "set_id": 1 + }, + { + "name": "device-mobile-speaker", + "content": "", + "style": "outline", + "tags": "cellphone,cellular", + "set_id": 1 + }, + { + "name": "device-rotate", + "content": "", + "style": "outline", + "tags": "*new*,orientation,landscape,portrait,spin,flip", + "set_id": 1 + }, + { + "name": "device-tablet", + "content": "", + "style": "outline", + "tags": "cellphone,cellular,ipad,phablet", + "set_id": 1 + }, + { + "name": "device-tablet-camera", + "content": "", + "style": "outline", + "tags": "cellphone,cellular,ipad,phablet", + "set_id": 1 + }, + { + "name": "device-tablet-speaker", + "content": "", + "style": "outline", + "tags": "cellphone,cellular,ipad,phablet", + "set_id": 1 + }, + { + "name": "devices", + "content": "", + "style": "outline", + "tags": "responsive,cellphone,cellular,tablet,destop", + "set_id": 1 + }, + { + "name": "diamond", + "content": "", + "style": "outline", + "tags": "rectangle,shapes,polygons,diamonds,suits,cards,gambling,casino,gaming", + "set_id": 1 + }, + { + "name": "diamonds-four", + "content": "", + "style": "outline", + "tags": "shapes,grid,component", + "set_id": 1 + }, + { + "name": "dice-five", + "content": "", + "style": "outline", + "tags": "die,rolling,gamble,gambling,casino,gaming,5", + "set_id": 1 + }, + { + "name": "dice-four", + "content": "", + "style": "outline", + "tags": "die,rolling,gamble,gambling,casino,gaming,4", + "set_id": 1 + }, + { + "name": "dice-one", + "content": "", + "style": "outline", + "tags": "die,rolling,gamble,gambling,casino,gaming,1", + "set_id": 1 + }, + { + "name": "dice-six", + "content": "", + "style": "outline", + "tags": "die,rolling,gamble,gambling,casino,gaming,6", + "set_id": 1 + }, + { + "name": "dice-three", + "content": "", + "style": "outline", + "tags": "die,rolling,gamble,gambling,casino,gaming,3", + "set_id": 1 + }, + { + "name": "dice-two", + "content": "", + "style": "outline", + "tags": "die,rolling,gamble,gambling,casino,gaming,2", + "set_id": 1 + }, + { + "name": "disc", + "content": "", + "style": "outline", + "tags": "cd-rom,compact disk,album,record", + "set_id": 1 + }, + { + "name": "disco-ball", + "content": "", + "style": "outline", + "tags": "*new*,danging,club,70s", + "set_id": 1 + }, + { + "name": "discord-logo", + "content": "", + "style": "outline", + "tags": "logos,messages,messaging,chat", + "set_id": 1 + }, + { + "name": "divide", + "content": "", + "style": "outline", + "tags": "division,divisor,dividend,quotient,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "dna", + "content": "", + "style": "outline", + "tags": "double helix,gene,genetics", + "set_id": 1 + }, + { + "name": "dog", + "content": "", + "style": "outline", + "tags": "pets,animals,puppy", + "set_id": 1 + }, + { + "name": "door", + "content": "", + "style": "outline", + "tags": "entrance,exit", + "set_id": 1 + }, + { + "name": "door-open", + "content": "", + "style": "outline", + "tags": "entrance,exit", + "set_id": 1 + }, + { + "name": "dot", + "content": "", + "style": "outline", + "tags": "dots,circles,shapes,polygons", + "set_id": 1 + }, + { + "name": "dot-outline", + "content": "", + "style": "outline", + "tags": "dots,circles,shapes,polygons", + "set_id": 1 + }, + { + "name": "dots-nine", + "content": "", + "style": "outline", + "tags": "grid,circles,shapes,polygons,9", + "set_id": 1 + }, + { + "name": "dots-six", + "content": "", + "style": "outline", + "tags": "*updated*,drag handle,knurling,circles,shapes,polygons,6", + "set_id": 1 + }, + { + "name": "dots-six-vertical", + "content": "", + "style": "outline", + "tags": "*updated*,drag handle,knurling,circles,shapes,polygons,6", + "set_id": 1 + }, + { + "name": "dots-three", + "content": "", + "style": "outline", + "tags": "menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more", + "set_id": 1 + }, + { + "name": "dots-three-circle", + "content": "", + "style": "outline", + "tags": "menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more", + "set_id": 1 + }, + { + "name": "dots-three-circle-vertical", + "content": "", + "style": "outline", + "tags": "menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more", + "set_id": 1 + }, + { + "name": "dots-three-outline", + "content": "", + "style": "outline", + "tags": "menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more", + "set_id": 1 + }, + { + "name": "dots-three-outline-vertical", + "content": "", + "style": "outline", + "tags": "menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more", + "set_id": 1 + }, + { + "name": "dots-three-vertical", + "content": "", + "style": "outline", + "tags": "menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more", + "set_id": 1 + }, + { + "name": "download", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,downloaded,downloading,hard drive,disk", + "set_id": 1 + }, + { + "name": "download-simple", + "content": "", + "style": "outline", + "tags": "*updated*,saved,saving,archived,archiving,archival,downloaded,downloading,hard drive,disk,import", + "set_id": 1 + }, + { + "name": "dress", + "content": "", + "style": "outline", + "tags": "clothes,clothing", + "set_id": 1 + }, + { + "name": "dresser", + "content": "", + "style": "outline", + "tags": "*new*,furniture,bedroom,storage,drawers,wardrobe", + "set_id": 1 + }, + { + "name": "dribbble-logo", + "content": "", + "style": "outline", + "tags": "logos,round,basketball,sports,design", + "set_id": 1 + }, + { + "name": "drone", + "content": "", + "style": "outline", + "tags": "*new*,aerial,uav,photography,remote", + "set_id": 1 + }, + { + "name": "drop", + "content": "", + "style": "outline", + "tags": "droplet,teardrop,raindrop,raining,meteorology,water,blur", + "set_id": 1 + }, + { + "name": "drop-half", + "content": "", + "style": "outline", + "tags": "droplet,teardrop,raindrop,humidity,water,contrast,brightness", + "set_id": 1 + }, + { + "name": "drop-half-bottom", + "content": "", + "style": "outline", + "tags": "droplet,teardrop,raindrop,humidity,water,contrast,brightness", + "set_id": 1 + }, + { + "name": "drop-simple", + "content": "", + "style": "outline", + "tags": "*new*,droplet,teardrop,raindrop,raining,humidity,meteorology,water,blur", + "set_id": 1 + }, + { + "name": "drop-slash", + "content": "", + "style": "outline", + "tags": "*new*,droplet,teardrop,raindrop,raining,humidity,meteorology,water,blur,disabled", + "set_id": 1 + }, + { + "name": "dropbox-logo", + "content": "", + "style": "outline", + "tags": "cloud,storage,backup,logos", + "set_id": 1 + }, + { + "name": "ear", + "content": "", + "style": "outline", + "tags": "hearing,audio,sound", + "set_id": 1 + }, + { + "name": "ear-slash", + "content": "", + "style": "outline", + "tags": "hearing,audio,sound,mute,accessible", + "set_id": 1 + }, + { + "name": "egg", + "content": "", + "style": "outline", + "tags": "chicken,food,meal,baby,hatch", + "set_id": 1 + }, + { + "name": "egg-crack", + "content": "", + "style": "outline", + "tags": "chicken,food,meal,baby,hatch,break", + "set_id": 1 + }, + { + "name": "eject", + "content": "", + "style": "outline", + "tags": "disconnect", + "set_id": 1 + }, + { + "name": "eject-simple", + "content": "", + "style": "outline", + "tags": "disconnect", + "set_id": 1 + }, + { + "name": "elevator", + "content": "", + "style": "outline", + "tags": "lift", + "set_id": 1 + }, + { + "name": "empty", + "content": "", + "style": "outline", + "tags": "*new*,∅,empty set,member,mathematics,arithmetic,calculator,null", + "set_id": 1 + }, + { + "name": "engine", + "content": "", + "style": "outline", + "tags": "*updated*,motor,repair,vehicles,automobile", + "set_id": 1 + }, + { + "name": "envelope", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,message,post,letter", + "set_id": 1 + }, + { + "name": "envelope-open", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,message,read,post,letter", + "set_id": 1 + }, + { + "name": "envelope-simple", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,message,post,letter", + "set_id": 1 + }, + { + "name": "envelope-simple-open", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,message,read,post,letter", + "set_id": 1 + }, + { + "name": "equalizer", + "content": "", + "style": "outline", + "tags": "music,audio,meter,volume,spectrum,eq,deezer", + "set_id": 1 + }, + { + "name": "equals", + "content": "", + "style": "outline", + "tags": "=,equality,equivalent,equivalence,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "eraser", + "content": "", + "style": "outline", + "tags": "write,writing,editing,undo,deleted", + "set_id": 1 + }, + { + "name": "escalator-down", + "content": "", + "style": "outline", + "tags": "stairs", + "set_id": 1 + }, + { + "name": "escalator-up", + "content": "", + "style": "outline", + "tags": "stairs", + "set_id": 1 + }, + { + "name": "exam", + "content": "", + "style": "outline", + "tags": "text,examination,paper,school,grade", + "set_id": 1 + }, + { + "name": "exclamation-mark", + "content": "", + "style": "outline", + "tags": "*new*,!,alert,warning,caution,interjection,punctuation,symbol", + "set_id": 1 + }, + { + "name": "exclude", + "content": "", + "style": "outline", + "tags": "venn-diagram,difference,intersection", + "set_id": 1 + }, + { + "name": "exclude-square", + "content": "", + "style": "outline", + "tags": "venn-diagram,difference,intersection", + "set_id": 1 + }, + { + "name": "export", + "content": "", + "style": "outline", + "tags": "share,send to,arrows", + "set_id": 1 + }, + { + "name": "eye", + "content": "", + "style": "outline", + "tags": "visible,hidden,show,hide,visibility,view", + "set_id": 1 + }, + { + "name": "eye-closed", + "content": "", + "style": "outline", + "tags": "visible,hidden,show,hide,visibility,view,invisible,private", + "set_id": 1 + }, + { + "name": "eye-slash", + "content": "", + "style": "outline", + "tags": "visible,hidden,show,hide,visibility,view,invisible,eyelashes,disabled,private", + "set_id": 1 + }, + { + "name": "eyedropper", + "content": "", + "style": "outline", + "tags": "colors,color picker,sample,arts", + "set_id": 1 + }, + { + "name": "eyedropper-sample", + "content": "", + "style": "outline", + "tags": "colors,color picker,arts", + "set_id": 1 + }, + { + "name": "eyeglasses", + "content": "", + "style": "outline", + "tags": "vision,spectacles", + "set_id": 1 + }, + { + "name": "eyes", + "content": "", + "style": "outline", + "tags": "*new*,look,glance", + "set_id": 1 + }, + { + "name": "face-mask", + "content": "", + "style": "outline", + "tags": "ppe,facemask,covid-19,coronavirus,flu,cold", + "set_id": 1 + }, + { + "name": "facebook-logo", + "content": "", + "style": "outline", + "tags": "logos,social media", + "set_id": 1 + }, + { + "name": "factory", + "content": "", + "style": "outline", + "tags": "industry,manufacture,buildings,places,locations", + "set_id": 1 + }, + { + "name": "faders", + "content": "", + "style": "outline", + "tags": "music,audio,sliders,filters,equalizer,volume,settings,preferences", + "set_id": 1 + }, + { + "name": "faders-horizontal", + "content": "", + "style": "outline", + "tags": "music,audio,sliders,filters,equalizer,volume,settings,preferences", + "set_id": 1 + }, + { + "name": "fallout-shelter", + "content": "", + "style": "outline", + "tags": "*new*,radiation,radioactive,nuclear,bunker,contamination,quarantine,toxic,danger,caution", + "set_id": 1 + }, + { + "name": "fan", + "content": "", + "style": "outline", + "tags": "desk fan,air conditioning", + "set_id": 1 + }, + { + "name": "farm", + "content": "", + "style": "outline", + "tags": "*new*,farmer,field,farming,agriculture", + "set_id": 1 + }, + { + "name": "fast-forward", + "content": "", + "style": "outline", + "tags": "audio,music,seek,scrub,scan,ahead,skip", + "set_id": 1 + }, + { + "name": "fast-forward-circle", + "content": "", + "style": "outline", + "tags": "audio,music,seek,scrub,scan,ahead,skip", + "set_id": 1 + }, + { + "name": "feather", + "content": "", + "style": "outline", + "tags": "bird", + "set_id": 1 + }, + { + "name": "fediverse-logo", + "content": "", + "style": "outline", + "tags": "*new*,social media,decentralized", + "set_id": 1 + }, + { + "name": "figma-logo", + "content": "", + "style": "outline", + "tags": "*updated*,logos,drawing,art,illustration,ui,interface,prototype,prototyping", + "set_id": 1 + }, + { + "name": "file", + "content": "", + "style": "outline", + "tags": "documents,files,save,write,page", + "set_id": 1 + }, + { + "name": "file-archive", + "content": "", + "style": "outline", + "tags": "documents,zip,compression", + "set_id": 1 + }, + { + "name": "file-arrow-down", + "content": "", + "style": "outline", + "tags": "documents,files,save,write,download,directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "file-arrow-up", + "content": "", + "style": "outline", + "tags": "documents,files,save,write,upload,directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "file-audio", + "content": "", + "style": "outline", + "tags": "documents,music,sound", + "set_id": 1 + }, + { + "name": "file-c", + "content": "", + "style": "outline", + "tags": "*new*,documents,code", + "set_id": 1 + }, + { + "name": "file-c-sharp", + "content": "", + "style": "outline", + "tags": "*new*,documents,code,c#", + "set_id": 1 + }, + { + "name": "file-cloud", + "content": "", + "style": "outline", + "tags": "documents,sync", + "set_id": 1 + }, + { + "name": "file-code", + "content": "", + "style": "outline", + "tags": "documents", + "set_id": 1 + }, + { + "name": "file-cpp", + "content": "", + "style": "outline", + "tags": "*new*,documents,code,c++", + "set_id": 1 + }, + { + "name": "file-css", + "content": "", + "style": "outline", + "tags": "documents,code", + "set_id": 1 + }, + { + "name": "file-csv", + "content": "", + "style": "outline", + "tags": "documents,data", + "set_id": 1 + }, + { + "name": "file-dashed", + "content": "", + "style": "outline", + "tags": "documents,files,browse,draft,open,dotted", + "set_id": 1 + }, + { + "name": "file-doc", + "content": "", + "style": "outline", + "tags": "documents,word,microsoft", + "set_id": 1 + }, + { + "name": "file-html", + "content": "", + "style": "outline", + "tags": "*updated*,documents,code", + "set_id": 1 + }, + { + "name": "file-image", + "content": "", + "style": "outline", + "tags": "documents,pictures,photograph", + "set_id": 1 + }, + { + "name": "file-ini", + "content": "", + "style": "outline", + "tags": "*new*,documents", + "set_id": 1 + }, + { + "name": "file-jpg", + "content": "", + "style": "outline", + "tags": "documents,pictures,photograph,jpeg", + "set_id": 1 + }, + { + "name": "file-js", + "content": "", + "style": "outline", + "tags": "documents,code,javascript", + "set_id": 1 + }, + { + "name": "file-jsx", + "content": "", + "style": "outline", + "tags": "documents,code,javascript", + "set_id": 1 + }, + { + "name": "file-lock", + "content": "", + "style": "outline", + "tags": "documents,secure,locked,private", + "set_id": 1 + }, + { + "name": "file-magnifying-glass", + "content": "", + "style": "outline", + "tags": "documents,files,search,find,locate,browse,missing", + "set_id": 1 + }, + { + "name": "file-md", + "content": "", + "style": "outline", + "tags": "*new*,documents,notes,markdown", + "set_id": 1 + }, + { + "name": "file-minus", + "content": "", + "style": "outline", + "tags": "documents,files,delete,write,remove,-", + "set_id": 1 + }, + { + "name": "file-pdf", + "content": "", + "style": "outline", + "tags": "documents,files,acrobat", + "set_id": 1 + }, + { + "name": "file-plus", + "content": "", + "style": "outline", + "tags": "documents,files,save,write,add,new,create,+", + "set_id": 1 + }, + { + "name": "file-png", + "content": "", + "style": "outline", + "tags": "documents,pictures,photograph", + "set_id": 1 + }, + { + "name": "file-ppt", + "content": "", + "style": "outline", + "tags": "documents,powerpoint,microsoft", + "set_id": 1 + }, + { + "name": "file-py", + "content": "", + "style": "outline", + "tags": "*new*,documents,code,python", + "set_id": 1 + }, + { + "name": "file-rs", + "content": "", + "style": "outline", + "tags": "documents,code,rust", + "set_id": 1 + }, + { + "name": "file-sql", + "content": "", + "style": "outline", + "tags": "documents,database", + "set_id": 1 + }, + { + "name": "file-svg", + "content": "", + "style": "outline", + "tags": "documents,images,vector", + "set_id": 1 + }, + { + "name": "file-text", + "content": "", + "style": "outline", + "tags": "documents,files,save,write", + "set_id": 1 + }, + { + "name": "file-ts", + "content": "", + "style": "outline", + "tags": "documents,code,typescript", + "set_id": 1 + }, + { + "name": "file-tsx", + "content": "", + "style": "outline", + "tags": "documents,code,typescript", + "set_id": 1 + }, + { + "name": "file-txt", + "content": "", + "style": "outline", + "tags": "*new*,documents", + "set_id": 1 + }, + { + "name": "file-video", + "content": "", + "style": "outline", + "tags": "documents,movie", + "set_id": 1 + }, + { + "name": "file-vue", + "content": "", + "style": "outline", + "tags": "documents,code", + "set_id": 1 + }, + { + "name": "file-x", + "content": "", + "style": "outline", + "tags": "documents,files,cancelled,deleted,removed,errors", + "set_id": 1 + }, + { + "name": "file-xls", + "content": "", + "style": "outline", + "tags": "documents,excel,microsoft", + "set_id": 1 + }, + { + "name": "file-zip", + "content": "", + "style": "outline", + "tags": "documents,archive,compression", + "set_id": 1 + }, + { + "name": "files", + "content": "", + "style": "outline", + "tags": "documents,open,library", + "set_id": 1 + }, + { + "name": "film-reel", + "content": "", + "style": "outline", + "tags": "videography,films,movies,recording", + "set_id": 1 + }, + { + "name": "film-script", + "content": "", + "style": "outline", + "tags": "screenplay,movie", + "set_id": 1 + }, + { + "name": "film-slate", + "content": "", + "style": "outline", + "tags": "*updated*,clapper,movie", + "set_id": 1 + }, + { + "name": "film-strip", + "content": "", + "style": "outline", + "tags": "camera,photography,darkroom,movie,analog", + "set_id": 1 + }, + { + "name": "fingerprint", + "content": "", + "style": "outline", + "tags": "security,secured,authentication,authenticated,login,locked,biometrics,encrypted,encryption", + "set_id": 1 + }, + { + "name": "fingerprint-simple", + "content": "", + "style": "outline", + "tags": "security,secured,authentication,authenticated,login,locked,biometrics,encrypted,encryption", + "set_id": 1 + }, + { + "name": "finn-the-human", + "content": "", + "style": "outline", + "tags": "adventure time,cartoons,television,tv,character", + "set_id": 1 + }, + { + "name": "fire", + "content": "", + "style": "outline", + "tags": "flame,burning,match,lighter", + "set_id": 1 + }, + { + "name": "fire-extinguisher", + "content": "", + "style": "outline", + "tags": "safety,prevention,emergency,hazard,danger,caution", + "set_id": 1 + }, + { + "name": "fire-simple", + "content": "", + "style": "outline", + "tags": "flame,burning,match,lighter", + "set_id": 1 + }, + { + "name": "fire-truck", + "content": "", + "style": "outline", + "tags": "*new*,first-aid,emt,medical,medicine,injury,safety,emergency,firefighter", + "set_id": 1 + }, + { + "name": "first-aid", + "content": "", + "style": "outline", + "tags": "hospital,cross,medical,medicine,injury,safety,emergency,doctor", + "set_id": 1 + }, + { + "name": "first-aid-kit", + "content": "", + "style": "outline", + "tags": "bandages,medical,medicine,injury,safety,emergency,doctor", + "set_id": 1 + }, + { + "name": "fish", + "content": "", + "style": "outline", + "tags": "animals,pets,food,seafood,restaurants,dining", + "set_id": 1 + }, + { + "name": "fish-simple", + "content": "", + "style": "outline", + "tags": "animals,pets,food,seafood,restaurants,dining", + "set_id": 1 + }, + { + "name": "flag", + "content": "", + "style": "outline", + "tags": "country,countries,finished,completed,flags", + "set_id": 1 + }, + { + "name": "flag-banner", + "content": "", + "style": "outline", + "tags": "ribbon,country,countries,finished,completed,flags,swallowtail", + "set_id": 1 + }, + { + "name": "flag-banner-fold", + "content": "", + "style": "outline", + "tags": "*new*,ribbon,country,countries,finished,completed,flags,swallowtail", + "set_id": 1 + }, + { + "name": "flag-checkered", + "content": "", + "style": "outline", + "tags": "flags,race,racing,finish line", + "set_id": 1 + }, + { + "name": "flag-pennant", + "content": "", + "style": "outline", + "tags": "flags,race,sports,team", + "set_id": 1 + }, + { + "name": "flame", + "content": "", + "style": "outline", + "tags": "fire,burning,match,lighter", + "set_id": 1 + }, + { + "name": "flashlight", + "content": "", + "style": "outline", + "tags": "torch,find,search,locate", + "set_id": 1 + }, + { + "name": "flask", + "content": "", + "style": "outline", + "tags": "beaker,science,chemistry,experiment,erlenmeyer", + "set_id": 1 + }, + { + "name": "flip-horizontal", + "content": "", + "style": "outline", + "tags": "*new*,mirror,rotate,invert", + "set_id": 1 + }, + { + "name": "flip-vertical", + "content": "", + "style": "outline", + "tags": "*new*,mirror,rotate,invert", + "set_id": 1 + }, + { + "name": "floppy-disk", + "content": "", + "style": "outline", + "tags": "diskette,directory,directories,folders,documents,files,save,write", + "set_id": 1 + }, + { + "name": "floppy-disk-back", + "content": "", + "style": "outline", + "tags": "*updated*,diskette,directory,directories,folders,documents,files,save,write", + "set_id": 1 + }, + { + "name": "flow-arrow", + "content": "", + "style": "outline", + "tags": "*updated*,flowchart,arrowhead", + "set_id": 1 + }, + { + "name": "flower", + "content": "", + "style": "outline", + "tags": "plants,green,environmental", + "set_id": 1 + }, + { + "name": "flower-lotus", + "content": "", + "style": "outline", + "tags": "plants,green,environmental,spirituality", + "set_id": 1 + }, + { + "name": "flower-tulip", + "content": "", + "style": "outline", + "tags": "plants,green,environmental", + "set_id": 1 + }, + { + "name": "flying-saucer", + "content": "", + "style": "outline", + "tags": "ufo,space,aliens,extra terrestrial,sci-fi", + "set_id": 1 + }, + { + "name": "folder", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders", + "set_id": 1 + }, + { + "name": "folder-dashed", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,missing,temporary,dotted", + "set_id": 1 + }, + { + "name": "folder-lock", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,private,secure", + "set_id": 1 + }, + { + "name": "folder-minus", + "content": "", + "style": "outline", + "tags": "directory,directories,files,delete,write,remove,-", + "set_id": 1 + }, + { + "name": "folder-open", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,load", + "set_id": 1 + }, + { + "name": "folder-plus", + "content": "", + "style": "outline", + "tags": "directory,directories,files,save,write,add,new,create,+", + "set_id": 1 + }, + { + "name": "folder-simple", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders", + "set_id": 1 + }, + { + "name": "folder-simple-dashed", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,missing,temporary,dotted", + "set_id": 1 + }, + { + "name": "folder-simple-lock", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,private,secure", + "set_id": 1 + }, + { + "name": "folder-simple-minus", + "content": "", + "style": "outline", + "tags": "directory,directories,files,delete,write,remove,-", + "set_id": 1 + }, + { + "name": "folder-simple-plus", + "content": "", + "style": "outline", + "tags": "directory,directories,files,save,write,add,new,create,+", + "set_id": 1 + }, + { + "name": "folder-simple-star", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,favorite,starred", + "set_id": 1 + }, + { + "name": "folder-simple-user", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,personal", + "set_id": 1 + }, + { + "name": "folder-star", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,favorite,starred", + "set_id": 1 + }, + { + "name": "folder-user", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,personal", + "set_id": 1 + }, + { + "name": "folders", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,copy,copied,duplicated", + "set_id": 1 + }, + { + "name": "football", + "content": "", + "style": "outline", + "tags": "sports,american football,nfl", + "set_id": 1 + }, + { + "name": "football-helmet", + "content": "", + "style": "outline", + "tags": "*new*,sports,american football,nfl", + "set_id": 1 + }, + { + "name": "footprints", + "content": "", + "style": "outline", + "tags": "path,trail,walk,route,hike,hiking", + "set_id": 1 + }, + { + "name": "fork-knife", + "content": "", + "style": "outline", + "tags": "food,meal,eating,restaurants,dining,utensils", + "set_id": 1 + }, + { + "name": "four-k", + "content": "", + "style": "outline", + "tags": "*new*,uhd,resolution,video", + "set_id": 1 + }, + { + "name": "frame-corners", + "content": "", + "style": "outline", + "tags": "expand,fullscreen,maximized,resize,windowed,capture", + "set_id": 1 + }, + { + "name": "framer-logo", + "content": "", + "style": "outline", + "tags": "logos,interface,ui,motion,prototype,prototyping", + "set_id": 1 + }, + { + "name": "function", + "content": "", + "style": "outline", + "tags": "mathematics,arithmetic,f-stop", + "set_id": 1 + }, + { + "name": "funnel", + "content": "", + "style": "outline", + "tags": "filters,refine,sorting", + "set_id": 1 + }, + { + "name": "funnel-simple", + "content": "", + "style": "outline", + "tags": "filters,refine,sorting", + "set_id": 1 + }, + { + "name": "funnel-simple-x", + "content": "", + "style": "outline", + "tags": "*new*,filters,refine,sorting", + "set_id": 1 + }, + { + "name": "funnel-x", + "content": "", + "style": "outline", + "tags": "*new*,filters,refine,sorting", + "set_id": 1 + }, + { + "name": "game-controller", + "content": "", + "style": "outline", + "tags": "gaming,video games,nintendo switch,sony playstation,microsoft xbox", + "set_id": 1 + }, + { + "name": "garage", + "content": "", + "style": "outline", + "tags": "vehicles,automobile,buildings,transportation", + "set_id": 1 + }, + { + "name": "gas-can", + "content": "", + "style": "outline", + "tags": "jerrycan,petrol,fuel,gasoline", + "set_id": 1 + }, + { + "name": "gas-pump", + "content": "", + "style": "outline", + "tags": "gas station,petrol,fuel,gasoline", + "set_id": 1 + }, + { + "name": "gauge", + "content": "", + "style": "outline", + "tags": "dashboard,meter,speed,speedometer,odometer,performance", + "set_id": 1 + }, + { + "name": "gavel", + "content": "", + "style": "outline", + "tags": "judge,justice,legal,law,court,hammer,government", + "set_id": 1 + }, + { + "name": "gear", + "content": "", + "style": "outline", + "tags": "8,settings,setup,preferences,cogs,gears,machinery,mechanical", + "set_id": 1 + }, + { + "name": "gear-fine", + "content": "", + "style": "outline", + "tags": "setup,preferences,cogs,gears,machinery,mechanical", + "set_id": 1 + }, + { + "name": "gear-six", + "content": "", + "style": "outline", + "tags": "6,settings,setup,preferences,cogs,gears,machinery,mechanical", + "set_id": 1 + }, + { + "name": "gender-female", + "content": "", + "style": "outline", + "tags": "woman,feminine,venus", + "set_id": 1 + }, + { + "name": "gender-intersex", + "content": "", + "style": "outline", + "tags": "transgender,non-binary", + "set_id": 1 + }, + { + "name": "gender-male", + "content": "", + "style": "outline", + "tags": "man,masculine,mars", + "set_id": 1 + }, + { + "name": "gender-neuter", + "content": "", + "style": "outline", + "tags": "agender,non-binary,asexual", + "set_id": 1 + }, + { + "name": "gender-nonbinary", + "content": "", + "style": "outline", + "tags": "intersex,non-binary", + "set_id": 1 + }, + { + "name": "gender-transgender", + "content": "", + "style": "outline", + "tags": "intersex,non-binary", + "set_id": 1 + }, + { + "name": "ghost", + "content": "", + "style": "outline", + "tags": "pac-man,spirit,scary,halloween", + "set_id": 1 + }, + { + "name": "gif", + "content": "", + "style": "outline", + "tags": "gifs,.gif,giphy", + "set_id": 1 + }, + { + "name": "gift", + "content": "", + "style": "outline", + "tags": "presents,holiday,birthday", + "set_id": 1 + }, + { + "name": "git-branch", + "content": "", + "style": "outline", + "tags": "*updated*,github,vcs,source control,version control,versioning,branches", + "set_id": 1 + }, + { + "name": "git-commit", + "content": "", + "style": "outline", + "tags": "github,vcs,source control,version control,versioning,commits", + "set_id": 1 + }, + { + "name": "git-diff", + "content": "", + "style": "outline", + "tags": "*updated*,github,vcs,source control,version control,versioning,difference,compare", + "set_id": 1 + }, + { + "name": "git-fork", + "content": "", + "style": "outline", + "tags": "*updated*,github,vcs,source control,version control,versioning,split", + "set_id": 1 + }, + { + "name": "git-merge", + "content": "", + "style": "outline", + "tags": "*updated*,github,vcs,source control,version control,versioning,split", + "set_id": 1 + }, + { + "name": "git-pull-request", + "content": "", + "style": "outline", + "tags": "*updated*,github,vcs,source control,version control,versioning,merge request", + "set_id": 1 + }, + { + "name": "github-logo", + "content": "", + "style": "outline", + "tags": "octocat,vcs,source control,version control,versioning,branches", + "set_id": 1 + }, + { + "name": "gitlab-logo", + "content": "", + "style": "outline", + "tags": "vcs,source control,version control,versioning,branches", + "set_id": 1 + }, + { + "name": "gitlab-logo-simple", + "content": "", + "style": "outline", + "tags": "vcs,source control,version control,versioning,branches", + "set_id": 1 + }, + { + "name": "globe", + "content": "", + "style": "outline", + "tags": "world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography,internet", + "set_id": 1 + }, + { + "name": "globe-hemisphere-east", + "content": "", + "style": "outline", + "tags": "world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography,europe,africa,asia,australia", + "set_id": 1 + }, + { + "name": "globe-hemisphere-west", + "content": "", + "style": "outline", + "tags": "world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography,north america,south america", + "set_id": 1 + }, + { + "name": "globe-simple", + "content": "", + "style": "outline", + "tags": "world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography", + "set_id": 1 + }, + { + "name": "globe-simple-x", + "content": "", + "style": "outline", + "tags": "*new*,world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography,internet", + "set_id": 1 + }, + { + "name": "globe-stand", + "content": "", + "style": "outline", + "tags": "world,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography", + "set_id": 1 + }, + { + "name": "globe-x", + "content": "", + "style": "outline", + "tags": "*new*,world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography,internet", + "set_id": 1 + }, + { + "name": "goggles", + "content": "", + "style": "outline", + "tags": "swim,swimming,sports,exercise,olympics,aquatics", + "set_id": 1 + }, + { + "name": "golf", + "content": "", + "style": "outline", + "tags": "*new*,sports,pga,tee,ball", + "set_id": 1 + }, + { + "name": "goodreads-logo", + "content": "", + "style": "outline", + "tags": "*updated*,reading,books,social media,logos", + "set_id": 1 + }, + { + "name": "google-cardboard-logo", + "content": "", + "style": "outline", + "tags": "virtual reality,vr,logos", + "set_id": 1 + }, + { + "name": "google-chrome-logo", + "content": "", + "style": "outline", + "tags": "web browsers,internet", + "set_id": 1 + }, + { + "name": "google-drive-logo", + "content": "", + "style": "outline", + "tags": "cloud,storage,backup,logos", + "set_id": 1 + }, + { + "name": "google-logo", + "content": "", + "style": "outline", + "tags": "logos,search engine,phone,mobile,android", + "set_id": 1 + }, + { + "name": "google-photos-logo", + "content": "", + "style": "outline", + "tags": "album,pictures,photography", + "set_id": 1 + }, + { + "name": "google-play-logo", + "content": "", + "style": "outline", + "tags": "logos,games,apps,applications,play store,app store,phone,mobile,android", + "set_id": 1 + }, + { + "name": "google-podcasts-logo", + "content": "", + "style": "outline", + "tags": "audio", + "set_id": 1 + }, + { + "name": "gps", + "content": "", + "style": "outline", + "tags": "*new*,geolocation,location,navigation", + "set_id": 1 + }, + { + "name": "gps-fix", + "content": "", + "style": "outline", + "tags": "*new*,geolocation,location,navigation", + "set_id": 1 + }, + { + "name": "gps-slash", + "content": "", + "style": "outline", + "tags": "*new*,geolocation,location,navigation,disabled", + "set_id": 1 + }, + { + "name": "gradient", + "content": "", + "style": "outline", + "tags": "fade,ombre,opacity", + "set_id": 1 + }, + { + "name": "graduation-cap", + "content": "", + "style": "outline", + "tags": "classroom,teacher,education,school,college,university,degree,graduate,hat", + "set_id": 1 + }, + { + "name": "grains", + "content": "", + "style": "outline", + "tags": "wheat,gluten,farm,farming,agriculture", + "set_id": 1 + }, + { + "name": "grains-slash", + "content": "", + "style": "outline", + "tags": "gluten-free,wheat,gluten,farm,farming,agriculture", + "set_id": 1 + }, + { + "name": "graph", + "content": "", + "style": "outline", + "tags": "nodes,tree", + "set_id": 1 + }, + { + "name": "graphics-card", + "content": "", + "style": "outline", + "tags": "*new*,graphics card,microchip,computer,circuit", + "set_id": 1 + }, + { + "name": "greater-than", + "content": "", + "style": "outline", + "tags": "*new*,>,greater than,gt,comparison,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "greater-than-or-equal", + "content": "", + "style": "outline", + "tags": "*new*,≥,greater than or equal,gte,comparison,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "grid-four", + "content": "", + "style": "outline", + "tags": "4,apps,applications,squares,tiles,cells,tables,tabular,spreadsheets,excel", + "set_id": 1 + }, + { + "name": "grid-nine", + "content": "", + "style": "outline", + "tags": "9,apps,applications,squares,tiles,cells,tables,tabular,spreadsheets,excel", + "set_id": 1 + }, + { + "name": "guitar", + "content": "", + "style": "outline", + "tags": "music,instrument", + "set_id": 1 + }, + { + "name": "hair-dryer", + "content": "", + "style": "outline", + "tags": "*new*,blow dryer,beauty,grooming,salon", + "set_id": 1 + }, + { + "name": "hamburger", + "content": "", + "style": "outline", + "tags": "fast food,party,places,locations,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "hammer", + "content": "", + "style": "outline", + "tags": "tools,carpentry,construction", + "set_id": 1 + }, + { + "name": "hand", + "content": "", + "style": "outline", + "tags": "pointers,cursors,emoji,backhand", + "set_id": 1 + }, + { + "name": "hand-arrow-down", + "content": "", + "style": "outline", + "tags": "*new*,take,receive,remove,withdraw,emoji", + "set_id": 1 + }, + { + "name": "hand-arrow-up", + "content": "", + "style": "outline", + "tags": "*new*,give,insert,deposit,donation,emoji", + "set_id": 1 + }, + { + "name": "hand-coins", + "content": "", + "style": "outline", + "tags": "donation,payment,money,paying,purchase", + "set_id": 1 + }, + { + "name": "hand-deposit", + "content": "", + "style": "outline", + "tags": "*new*,give,insert,donation,atm,emoji", + "set_id": 1 + }, + { + "name": "hand-eye", + "content": "", + "style": "outline", + "tags": "*updated*,emoji,hamsa,evil eye", + "set_id": 1 + }, + { + "name": "hand-fist", + "content": "", + "style": "outline", + "tags": "emoji,power,protest,blm", + "set_id": 1 + }, + { + "name": "hand-grabbing", + "content": "", + "style": "outline", + "tags": "pointers,cursors,emoji,drag,hold", + "set_id": 1 + }, + { + "name": "hand-heart", + "content": "", + "style": "outline", + "tags": "donation,care,emoji", + "set_id": 1 + }, + { + "name": "hand-palm", + "content": "", + "style": "outline", + "tags": "pointers,cursors,emoji,palm,stop,wait,hamsa,5", + "set_id": 1 + }, + { + "name": "hand-peace", + "content": "", + "style": "outline", + "tags": "*new*,emoji,victory", + "set_id": 1 + }, + { + "name": "hand-pointing", + "content": "", + "style": "outline", + "tags": "pointers,cursors,emoji,fingers,clicks,mouse", + "set_id": 1 + }, + { + "name": "hand-soap", + "content": "", + "style": "outline", + "tags": "dispenser,pump,sanitizer,disinfectant,lotion,bottle", + "set_id": 1 + }, + { + "name": "hand-swipe-left", + "content": "", + "style": "outline", + "tags": "pointers,cursors,gesture", + "set_id": 1 + }, + { + "name": "hand-swipe-right", + "content": "", + "style": "outline", + "tags": "pointers,cursors,gesture", + "set_id": 1 + }, + { + "name": "hand-tap", + "content": "", + "style": "outline", + "tags": "pointers,cursors,gesture", + "set_id": 1 + }, + { + "name": "hand-waving", + "content": "", + "style": "outline", + "tags": "emoji,palm,wave,hello,goodbye", + "set_id": 1 + }, + { + "name": "hand-withdraw", + "content": "", + "style": "outline", + "tags": "*new*,take,remove,withdrawal,atm,emoji", + "set_id": 1 + }, + { + "name": "handbag", + "content": "", + "style": "outline", + "tags": "suitcases,valises,baggage,purses", + "set_id": 1 + }, + { + "name": "handbag-simple", + "content": "", + "style": "outline", + "tags": "suitcases,valises,baggage,purses", + "set_id": 1 + }, + { + "name": "hands-clapping", + "content": "", + "style": "outline", + "tags": "emoji,clap,applause", + "set_id": 1 + }, + { + "name": "hands-praying", + "content": "", + "style": "outline", + "tags": "emoji,religion,worship,prayer,thanks,thank you", + "set_id": 1 + }, + { + "name": "handshake", + "content": "", + "style": "outline", + "tags": "emoji,deal,agreement", + "set_id": 1 + }, + { + "name": "hard-drive", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,hard disk,storage,hdd,servers,databases", + "set_id": 1 + }, + { + "name": "hard-drives", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,hard disk,storage,hdd,servers,databases", + "set_id": 1 + }, + { + "name": "hard-hat", + "content": "", + "style": "outline", + "tags": "*new*,safety,construction,industry,helmet,ppe", + "set_id": 1 + }, + { + "name": "hash", + "content": "", + "style": "outline", + "tags": "hashtag,octothorpe,pound sign,number sign,tic-tac-toe,symbol", + "set_id": 1 + }, + { + "name": "hash-straight", + "content": "", + "style": "outline", + "tags": "hashtag,octothorpe,pound sign,number sign,tic-tac-toe,symbol", + "set_id": 1 + }, + { + "name": "head-circuit", + "content": "", + "style": "outline", + "tags": "*new*,automaton,artificial intelligence,ai", + "set_id": 1 + }, + { + "name": "headlights", + "content": "", + "style": "outline", + "tags": "brights,high beams", + "set_id": 1 + }, + { + "name": "headphones", + "content": "", + "style": "outline", + "tags": "music,audio,listening", + "set_id": 1 + }, + { + "name": "headset", + "content": "", + "style": "outline", + "tags": "music,audio,listening,gaming,voice chat,microphone,headphones,support,customer-service,call-center", + "set_id": 1 + }, + { + "name": "heart", + "content": "", + "style": "outline", + "tags": "wellness,love,healthy,like,favorites,favorited,suits,cards,gambling,casino,gaming,emoji", + "set_id": 1 + }, + { + "name": "heart-break", + "content": "", + "style": "outline", + "tags": "love,hate,crack,split,divorce,emoji", + "set_id": 1 + }, + { + "name": "heart-half", + "content": "", + "style": "outline", + "tags": "wellness,love,healthy,like,favorites,favorited", + "set_id": 1 + }, + { + "name": "heart-straight", + "content": "", + "style": "outline", + "tags": "wellness,love,healthy,like,favorites,favorited,suits,cards,gambling,casino,gaming,emoji", + "set_id": 1 + }, + { + "name": "heart-straight-break", + "content": "", + "style": "outline", + "tags": "love,hate,crack,split,divorce,emoji", + "set_id": 1 + }, + { + "name": "heartbeat", + "content": "", + "style": "outline", + "tags": "wellness,healthy,ecg,ekg,vitals,monitor", + "set_id": 1 + }, + { + "name": "hexagon", + "content": "", + "style": "outline", + "tags": "6,shapes,polygons", + "set_id": 1 + }, + { + "name": "high-definition", + "content": "", + "style": "outline", + "tags": "*new*,hd,resolution,video", + "set_id": 1 + }, + { + "name": "high-heel", + "content": "", + "style": "outline", + "tags": "*updated*,pumps,clothes,clothing,shoes", + "set_id": 1 + }, + { + "name": "highlighter", + "content": "", + "style": "outline", + "tags": "*new*,marker,write,writing,editing", + "set_id": 1 + }, + { + "name": "highlighter-circle", + "content": "", + "style": "outline", + "tags": "write,writing,editing,drawing", + "set_id": 1 + }, + { + "name": "hockey", + "content": "", + "style": "outline", + "tags": "*new*,sports,nhl,stick,puck", + "set_id": 1 + }, + { + "name": "hoodie", + "content": "", + "style": "outline", + "tags": "clothes,clothing,sweatshirt", + "set_id": 1 + }, + { + "name": "horse", + "content": "", + "style": "outline", + "tags": "animals,equestrian,chess,knight,sports", + "set_id": 1 + }, + { + "name": "hospital", + "content": "", + "style": "outline", + "tags": "*new*,places,locations,medical,medicine,emergency,doctor,buildings", + "set_id": 1 + }, + { + "name": "hourglass", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-high", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-low", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-medium", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-simple", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-simple-high", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-simple-low", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-simple-medium", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "house", + "content": "", + "style": "outline", + "tags": "homes,buildings,places,locations", + "set_id": 1 + }, + { + "name": "house-line", + "content": "", + "style": "outline", + "tags": "*updated*,homes,buildings,places,locations", + "set_id": 1 + }, + { + "name": "house-simple", + "content": "", + "style": "outline", + "tags": "homes,buildings,places,locations", + "set_id": 1 + }, + { + "name": "hurricane", + "content": "", + "style": "outline", + "tags": "*new*,meteorology,cyclone,storm,disaster,wind", + "set_id": 1 + }, + { + "name": "ice-cream", + "content": "", + "style": "outline", + "tags": "food,dessert,cone", + "set_id": 1 + }, + { + "name": "identification-badge", + "content": "", + "style": "outline", + "tags": "license,credentials,nametag,user,verification", + "set_id": 1 + }, + { + "name": "identification-card", + "content": "", + "style": "outline", + "tags": "license,badge,credentials,nametag,user,verification", + "set_id": 1 + }, + { + "name": "image", + "content": "", + "style": "outline", + "tags": "*updated*,pictures,photographs,photography,wallpapers,gallery,landscape", + "set_id": 1 + }, + { + "name": "image-broken", + "content": "", + "style": "outline", + "tags": "*new*,pictures,photographs,photography,wallpapers,gallery,landscape,missing,error,404", + "set_id": 1 + }, + { + "name": "image-square", + "content": "", + "style": "outline", + "tags": "pictures,photographs,photography,wallpapers,gallery,landscape", + "set_id": 1 + }, + { + "name": "images", + "content": "", + "style": "outline", + "tags": "*updated*,pictures,photographs,photography,wallpapers,gallery,landscape,album", + "set_id": 1 + }, + { + "name": "images-square", + "content": "", + "style": "outline", + "tags": "pictures,photographs,photography,wallpapers,gallery,landscape,album", + "set_id": 1 + }, + { + "name": "infinity", + "content": "", + "style": "outline", + "tags": "infinite,lemniscate,figure-eight,mathematics,arithmetic,calculator,∞", + "set_id": 1 + }, + { + "name": "info", + "content": "", + "style": "outline", + "tags": "information,help,support", + "set_id": 1 + }, + { + "name": "instagram-logo", + "content": "", + "style": "outline", + "tags": "logos,social media,photography,camera", + "set_id": 1 + }, + { + "name": "intersect", + "content": "", + "style": "outline", + "tags": "round,join,union,merge,combine,intersecting,intersection", + "set_id": 1 + }, + { + "name": "intersect-square", + "content": "", + "style": "outline", + "tags": "venn-diagram,join,intersection", + "set_id": 1 + }, + { + "name": "intersect-three", + "content": "", + "style": "outline", + "tags": "venn-diagram,join,intersection,gender,pronouns", + "set_id": 1 + }, + { + "name": "intersection", + "content": "", + "style": "outline", + "tags": "*new*,∩,intersection,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "invoice", + "content": "", + "style": "outline", + "tags": "*new*,receipt,expense,bill", + "set_id": 1 + }, + { + "name": "island", + "content": "", + "style": "outline", + "tags": "*new*,geography,beach,ocean,tropical,palm,vacation,trip,locations,places", + "set_id": 1 + }, + { + "name": "jar", + "content": "", + "style": "outline", + "tags": "*new*,mason jar,kitchen,pantry,canning,preserves,food,condiments", + "set_id": 1 + }, + { + "name": "jar-label", + "content": "", + "style": "outline", + "tags": "*new*,mason jar,kitchen,pantry,canning,preserves,food,condiments", + "set_id": 1 + }, + { + "name": "jeep", + "content": "", + "style": "outline", + "tags": "*updated*,vehicles,automobile,suv,cars,trucks,wrangler,off-road,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "joystick", + "content": "", + "style": "outline", + "tags": "*new*,gaming,game controller,video games,arcade game,atari", + "set_id": 1 + }, + { + "name": "kanban", + "content": "", + "style": "outline", + "tags": "scheduling,tasks,project management,process,lean,agile", + "set_id": 1 + }, + { + "name": "key", + "content": "", + "style": "outline", + "tags": "padlock,security,secured,authentication,authenticated,login,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "key-return", + "content": "", + "style": "outline", + "tags": "keyboard,enter", + "set_id": 1 + }, + { + "name": "keyboard", + "content": "", + "style": "outline", + "tags": "typing,type,keys,input", + "set_id": 1 + }, + { + "name": "keyhole", + "content": "", + "style": "outline", + "tags": "lock,security,secured,authentication,authenticated,login,locked,encrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "knife", + "content": "", + "style": "outline", + "tags": "tools,food,meal,eating,restaurants,dining,utensils", + "set_id": 1 + }, + { + "name": "ladder", + "content": "", + "style": "outline", + "tags": "stairs,steps,climbing", + "set_id": 1 + }, + { + "name": "ladder-simple", + "content": "", + "style": "outline", + "tags": "stairs,steps,climbing", + "set_id": 1 + }, + { + "name": "lamp", + "content": "", + "style": "outline", + "tags": "light,furniture,appliances", + "set_id": 1 + }, + { + "name": "lamp-pendant", + "content": "", + "style": "outline", + "tags": "*new*,light,furniture,appliances", + "set_id": 1 + }, + { + "name": "laptop", + "content": "", + "style": "outline", + "tags": "computer,notebook,pc,macbook", + "set_id": 1 + }, + { + "name": "lasso", + "content": "", + "style": "outline", + "tags": "*new*,select,selection,loop,rope,cowboy", + "set_id": 1 + }, + { + "name": "lastfm-logo", + "content": "", + "style": "outline", + "tags": "*new*,scrobble,music,social media", + "set_id": 1 + }, + { + "name": "layout", + "content": "", + "style": "outline", + "tags": "wireframe,sidebar,ui,interface", + "set_id": 1 + }, + { + "name": "leaf", + "content": "", + "style": "outline", + "tags": "plants,trees,branches,leaves,nodes,green,environmental", + "set_id": 1 + }, + { + "name": "lectern", + "content": "", + "style": "outline", + "tags": "*new*,lecture,podium,pulpit,stand,speech,presentation,keynote", + "set_id": 1 + }, + { + "name": "lego", + "content": "", + "style": "outline", + "tags": "*new*,toys,blocks,bricks", + "set_id": 1 + }, + { + "name": "lego-smiley", + "content": "", + "style": "outline", + "tags": "*new*,face,emoji,toys,blocks,bricks", + "set_id": 1 + }, + { + "name": "less-than", + "content": "", + "style": "outline", + "tags": "*new*,<,less than,lt,comparison,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "less-than-or-equal", + "content": "", + "style": "outline", + "tags": "*new*,≤,less than or equal,lte,comparison,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "letter-circle-h", + "content": "", + "style": "outline", + "tags": "*new*,hospital,letter,glyph,character", + "set_id": 1 + }, + { + "name": "letter-circle-p", + "content": "", + "style": "outline", + "tags": "*new*,parking lot,valet,vehicles,letter,glyph,character", + "set_id": 1 + }, + { + "name": "letter-circle-v", + "content": "", + "style": "outline", + "tags": "*new*,vegan,letter,glyph,character", + "set_id": 1 + }, + { + "name": "lifebuoy", + "content": "", + "style": "outline", + "tags": "lifebelt,lifesaver,safety,help,support,nautical,boats,ships", + "set_id": 1 + }, + { + "name": "lightbulb", + "content": "", + "style": "outline", + "tags": "flashlight,bulbs,lighting,led,energy,idea", + "set_id": 1 + }, + { + "name": "lightbulb-filament", + "content": "", + "style": "outline", + "tags": "flashlight,bulbs,lighting,led,energy,idea", + "set_id": 1 + }, + { + "name": "lighthouse", + "content": "", + "style": "outline", + "tags": "buildings,nautical,navigation,boats,ships,safety", + "set_id": 1 + }, + { + "name": "lightning", + "content": "", + "style": "outline", + "tags": "meteorology,stormy,thunderstorm,thunderbolt,charged,charger,charging,power,electricity,flash", + "set_id": 1 + }, + { + "name": "lightning-a", + "content": "", + "style": "outline", + "tags": "flash,auto", + "set_id": 1 + }, + { + "name": "lightning-slash", + "content": "", + "style": "outline", + "tags": "thunderbolt,charged,charger,charging,power,electricity,disabled,flash", + "set_id": 1 + }, + { + "name": "line-segment", + "content": "", + "style": "outline", + "tags": "shapes,drawing,path,pen,vector", + "set_id": 1 + }, + { + "name": "line-segments", + "content": "", + "style": "outline", + "tags": "shapes,drawing,path,pen,vector", + "set_id": 1 + }, + { + "name": "line-vertical", + "content": "", + "style": "outline", + "tags": "*new*,bar,pipe,|,divider. symbol", + "set_id": 1 + }, + { + "name": "link", + "content": "", + "style": "outline", + "tags": "*updated*,anchor,hyperlink,hypertext,chains,chained", + "set_id": 1 + }, + { + "name": "link-break", + "content": "", + "style": "outline", + "tags": "anchor,hyperlink,hypertext,chains,chained,errors,broken", + "set_id": 1 + }, + { + "name": "link-simple", + "content": "", + "style": "outline", + "tags": "anchor,hyperlink,hypertext,chains,chained", + "set_id": 1 + }, + { + "name": "link-simple-break", + "content": "", + "style": "outline", + "tags": "anchor,hyperlink,hypertext,chains,chained,errors,broken", + "set_id": 1 + }, + { + "name": "link-simple-horizontal", + "content": "", + "style": "outline", + "tags": "anchor,hyperlink,hypertext,chains,chained", + "set_id": 1 + }, + { + "name": "link-simple-horizontal-break", + "content": "", + "style": "outline", + "tags": "anchor,hyperlink,hypertext,chains,chained,errors,broken", + "set_id": 1 + }, + { + "name": "linkedin-logo", + "content": "", + "style": "outline", + "tags": "logos,jobs,employment,social media", + "set_id": 1 + }, + { + "name": "linktree-logo", + "content": "", + "style": "outline", + "tags": "*new*,social media,links", + "set_id": 1 + }, + { + "name": "linux-logo", + "content": "", + "style": "outline", + "tags": "penguin,computer,animals", + "set_id": 1 + }, + { + "name": "list", + "content": "", + "style": "outline", + "tags": "*updated*,hamburger menu,overflow menu,sidebar,3,ul,ol,unordered list,ordered list,checklist,lines", + "set_id": 1 + }, + { + "name": "list-bullets", + "content": "", + "style": "outline", + "tags": "*updated*,ul,unordered list,bulleted list,checklist", + "set_id": 1 + }, + { + "name": "list-checks", + "content": "", + "style": "outline", + "tags": "*updated*,checklist,todo", + "set_id": 1 + }, + { + "name": "list-dashes", + "content": "", + "style": "outline", + "tags": "*updated*,ul,unordered list,dashed list,checklist", + "set_id": 1 + }, + { + "name": "list-heart", + "content": "", + "style": "outline", + "tags": "*new*,favorites,wishlist,liked", + "set_id": 1 + }, + { + "name": "list-magnifying-glass", + "content": "", + "style": "outline", + "tags": "search,find,locate,query,inspect", + "set_id": 1 + }, + { + "name": "list-numbers", + "content": "", + "style": "outline", + "tags": "*updated*,ol,ordered list,numbered list,checklist", + "set_id": 1 + }, + { + "name": "list-plus", + "content": "", + "style": "outline", + "tags": "*updated*,ul,ol,unordered list,ordered list,checklist,add,+", + "set_id": 1 + }, + { + "name": "list-star", + "content": "", + "style": "outline", + "tags": "*new*,favorites,wishlist,liked", + "set_id": 1 + }, + { + "name": "lock", + "content": "", + "style": "outline", + "tags": "padlock,security,secured,authentication,authenticated,login,locked,encrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "lock-key", + "content": "", + "style": "outline", + "tags": "padlock,security,secured,authentication,authenticated,login,locked,encrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "lock-key-open", + "content": "", + "style": "outline", + "tags": "padlock,security,unsecured,authentication,unauthenticated,login,unlocked,unencrypted,encryption,privacy", + "set_id": 1 + }, + { + "name": "lock-laminated", + "content": "", + "style": "outline", + "tags": "padlock,security,secured,authentication,authenticated,login,locked,encrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "lock-laminated-open", + "content": "", + "style": "outline", + "tags": "padlock,security,unsecured,authentication,unauthenticated,login,unlocked,unencrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "lock-open", + "content": "", + "style": "outline", + "tags": "padlock,security,unsecured,authentication,unauthenticated,login,unlocked,unencrypted,encryption,privacy", + "set_id": 1 + }, + { + "name": "lock-simple", + "content": "", + "style": "outline", + "tags": "padlock,security,secured,authentication,authenticated,login,locked,encrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "lock-simple-open", + "content": "", + "style": "outline", + "tags": "padlock,security,unsecured,authentication,unauthenticated,login,unlocked,unencrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "lockers", + "content": "", + "style": "outline", + "tags": "locker room,gym,storage", + "set_id": 1 + }, + { + "name": "log", + "content": "", + "style": "outline", + "tags": "*new*,tree,stump,stick,branch", + "set_id": 1 + }, + { + "name": "magic-wand", + "content": "", + "style": "outline", + "tags": "selection,wizard,games", + "set_id": 1 + }, + { + "name": "magnet", + "content": "", + "style": "outline", + "tags": "magnetism,science,physics", + "set_id": 1 + }, + { + "name": "magnet-straight", + "content": "", + "style": "outline", + "tags": "magnetism,science,physics", + "set_id": 1 + }, + { + "name": "magnifying-glass", + "content": "", + "style": "outline", + "tags": "search,find,locate,query,inspect", + "set_id": 1 + }, + { + "name": "magnifying-glass-minus", + "content": "", + "style": "outline", + "tags": "search,find,locate,query,inspect,zoom out,-", + "set_id": 1 + }, + { + "name": "magnifying-glass-plus", + "content": "", + "style": "outline", + "tags": "search,find,locate,query,inspect,zoom in,+", + "set_id": 1 + }, + { + "name": "mailbox", + "content": "", + "style": "outline", + "tags": "*new*,email,letters,messaging,post", + "set_id": 1 + }, + { + "name": "map-pin", + "content": "", + "style": "outline", + "tags": "maps,places,markers,pins,locations,poi,point of interest", + "set_id": 1 + }, + { + "name": "map-pin-area", + "content": "", + "style": "outline", + "tags": "*new*,maps,places,markers,pins,locations,poi,point of interest", + "set_id": 1 + }, + { + "name": "map-pin-line", + "content": "", + "style": "outline", + "tags": "maps,places,markers,pins,locations,poi,point of interest", + "set_id": 1 + }, + { + "name": "map-pin-plus", + "content": "", + "style": "outline", + "tags": "*new*,maps,places,markers,pins,locations,add,point of interest", + "set_id": 1 + }, + { + "name": "map-pin-simple", + "content": "", + "style": "outline", + "tags": "*new*,maps,places,markers,pins,locations,poi,point of interest", + "set_id": 1 + }, + { + "name": "map-pin-simple-area", + "content": "", + "style": "outline", + "tags": "*new*,maps,places,markers,pins,locations,poi,point of interest", + "set_id": 1 + }, + { + "name": "map-pin-simple-line", + "content": "", + "style": "outline", + "tags": "*new*,maps,places,markers,pins,locations,poi,point of interest", + "set_id": 1 + }, + { + "name": "map-trifold", + "content": "", + "style": "outline", + "tags": "maps,places,locations,cartography,geography", + "set_id": 1 + }, + { + "name": "markdown-logo", + "content": "", + "style": "outline", + "tags": "*new*,markup,editor,.md", + "set_id": 1 + }, + { + "name": "marker-circle", + "content": "", + "style": "outline", + "tags": "write,writing,editing,drawing", + "set_id": 1 + }, + { + "name": "martini", + "content": "", + "style": "outline", + "tags": "glass,drinks,beverages,cocktails,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "mask-happy", + "content": "", + "style": "outline", + "tags": "theater,costume,smile,smiling,thalia", + "set_id": 1 + }, + { + "name": "mask-sad", + "content": "", + "style": "outline", + "tags": "theater,costume,cry,crying,melpomene", + "set_id": 1 + }, + { + "name": "mastodon-logo", + "content": "", + "style": "outline", + "tags": "*new*,fediverse,social media,decentralized", + "set_id": 1 + }, + { + "name": "math-operations", + "content": "", + "style": "outline", + "tags": "addition,sum,subtraction,difference,multiply,multiplication,product,divide,division,divisor,dividend,quotient,equals,equality,mathematics,arithmetic,calculator,+,-,±,×,÷,=", + "set_id": 1 + }, + { + "name": "matrix-logo", + "content": "", + "style": "outline", + "tags": "*new*,matrix protocol,brands,logos", + "set_id": 1 + }, + { + "name": "medal", + "content": "", + "style": "outline", + "tags": "ribbons,winning,victory,awards,rosette", + "set_id": 1 + }, + { + "name": "medal-military", + "content": "", + "style": "outline", + "tags": "ribbons,winning,victory,awards,military", + "set_id": 1 + }, + { + "name": "medium-logo", + "content": "", + "style": "outline", + "tags": "logos,reading,writing,news,social media", + "set_id": 1 + }, + { + "name": "megaphone", + "content": "", + "style": "outline", + "tags": "bullhorn,announcements,loudspeaker,broadcast", + "set_id": 1 + }, + { + "name": "megaphone-simple", + "content": "", + "style": "outline", + "tags": "bullhorn,announcements,loudspeaker,broadcast", + "set_id": 1 + }, + { + "name": "member-of", + "content": "", + "style": "outline", + "tags": "*new*,∈,is element of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "memory", + "content": "", + "style": "outline", + "tags": "*new*,ram,microchip,computer,circuit,electronics", + "set_id": 1 + }, + { + "name": "messenger-logo", + "content": "", + "style": "outline", + "tags": "logos,facebook,social media", + "set_id": 1 + }, + { + "name": "meta-logo", + "content": "", + "style": "outline", + "tags": "*updated*,facebook,logos,social media,logos", + "set_id": 1 + }, + { + "name": "meteor", + "content": "", + "style": "outline", + "tags": "*new*,astronomy,asteroid,fireball", + "set_id": 1 + }, + { + "name": "metronome", + "content": "", + "style": "outline", + "tags": "music,beat,tempo,bpm", + "set_id": 1 + }, + { + "name": "microphone", + "content": "", + "style": "outline", + "tags": "audio,recording,music,sound,podcast,studio", + "set_id": 1 + }, + { + "name": "microphone-slash", + "content": "", + "style": "outline", + "tags": "audio,recording,music,sound,podcast,studio,muted,disabled", + "set_id": 1 + }, + { + "name": "microphone-stage", + "content": "", + "style": "outline", + "tags": "audio,recording,music,sound,performance,concert", + "set_id": 1 + }, + { + "name": "microscope", + "content": "", + "style": "outline", + "tags": "*new*,science,biology,experiment,magnify", + "set_id": 1 + }, + { + "name": "microsoft-excel-logo", + "content": "", + "style": "outline", + "tags": "tables,spreadsheets,tabular", + "set_id": 1 + }, + { + "name": "microsoft-outlook-logo", + "content": "", + "style": "outline", + "tags": "email,logos", + "set_id": 1 + }, + { + "name": "microsoft-powerpoint-logo", + "content": "", + "style": "outline", + "tags": "slides,slideshow,presentation", + "set_id": 1 + }, + { + "name": "microsoft-teams-logo", + "content": "", + "style": "outline", + "tags": "chat,video conference", + "set_id": 1 + }, + { + "name": "microsoft-word-logo", + "content": "", + "style": "outline", + "tags": "documents,word processor,doc,docx", + "set_id": 1 + }, + { + "name": "minus", + "content": "", + "style": "outline", + "tags": "-,subtraction,difference,mathematics,arithmetic,calculator,line,horizontal,divider", + "set_id": 1 + }, + { + "name": "minus-circle", + "content": "", + "style": "outline", + "tags": "-,subtraction,difference,mathematics,arithmetic,calculator,round", + "set_id": 1 + }, + { + "name": "minus-square", + "content": "", + "style": "outline", + "tags": "-,subtraction,difference,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "money", + "content": "", + "style": "outline", + "tags": "cash,dollars,paper bills,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "money-wavy", + "content": "", + "style": "outline", + "tags": "*new*,cash,dollars,paper bills,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "monitor", + "content": "", + "style": "outline", + "tags": "screen,television,tv,displays", + "set_id": 1 + }, + { + "name": "monitor-arrow-up", + "content": "", + "style": "outline", + "tags": "*new*,screen,screencast,screenshare,upload,video,movie", + "set_id": 1 + }, + { + "name": "monitor-play", + "content": "", + "style": "outline", + "tags": "screen,television,tv,displays,screencast,video,movie", + "set_id": 1 + }, + { + "name": "moon", + "content": "", + "style": "outline", + "tags": "night,evening,clear,sleep,snooze,night mode,dark mode,astronomy,stargazing", + "set_id": 1 + }, + { + "name": "moon-stars", + "content": "", + "style": "outline", + "tags": "night,evening,clear,sleep,snooze,night mode,dark mode,astronomy,stargazing,constellation", + "set_id": 1 + }, + { + "name": "moped", + "content": "", + "style": "outline", + "tags": "scooter,vehicles,vespa,transportation,travel", + "set_id": 1 + }, + { + "name": "moped-front", + "content": "", + "style": "outline", + "tags": "scooter,vehicles,vespa,transportation,travel", + "set_id": 1 + }, + { + "name": "mosque", + "content": "", + "style": "outline", + "tags": "islam,muslim,religion,worship", + "set_id": 1 + }, + { + "name": "motorcycle", + "content": "", + "style": "outline", + "tags": "vehicles,motorbike,transportation,travel", + "set_id": 1 + }, + { + "name": "mountains", + "content": "", + "style": "outline", + "tags": "*updated*,hills,outdoors,terrain,geology,adventure", + "set_id": 1 + }, + { + "name": "mouse", + "content": "", + "style": "outline", + "tags": "*updated*,clicks,input", + "set_id": 1 + }, + { + "name": "mouse-left-click", + "content": "", + "style": "outline", + "tags": "*new*,clicks,input", + "set_id": 1 + }, + { + "name": "mouse-middle-click", + "content": "", + "style": "outline", + "tags": "*new*,clicks,input", + "set_id": 1 + }, + { + "name": "mouse-right-click", + "content": "", + "style": "outline", + "tags": "*new*,clicks,input", + "set_id": 1 + }, + { + "name": "mouse-scroll", + "content": "", + "style": "outline", + "tags": "*new*,clicks,input", + "set_id": 1 + }, + { + "name": "mouse-simple", + "content": "", + "style": "outline", + "tags": "clicks,input", + "set_id": 1 + }, + { + "name": "music-note", + "content": "", + "style": "outline", + "tags": "songs,audio,playlist,albums", + "set_id": 1 + }, + { + "name": "music-note-simple", + "content": "", + "style": "outline", + "tags": "songs,audio,playlist,albums", + "set_id": 1 + }, + { + "name": "music-notes", + "content": "", + "style": "outline", + "tags": "songs,audio,playlist,albums", + "set_id": 1 + }, + { + "name": "music-notes-minus", + "content": "", + "style": "outline", + "tags": "*new*,songs,audio,playlist,albums,remove,subtract", + "set_id": 1 + }, + { + "name": "music-notes-plus", + "content": "", + "style": "outline", + "tags": "songs,audio,playlist,albums,add", + "set_id": 1 + }, + { + "name": "music-notes-simple", + "content": "", + "style": "outline", + "tags": "songs,audio,playlist,albums", + "set_id": 1 + }, + { + "name": "navigation-arrow", + "content": "", + "style": "outline", + "tags": "location,directions,compass,gps", + "set_id": 1 + }, + { + "name": "needle", + "content": "", + "style": "outline", + "tags": "sewing,thread,awl,tailor", + "set_id": 1 + }, + { + "name": "network", + "content": "", + "style": "outline", + "tags": "*new*,internet,ethernet,lan", + "set_id": 1 + }, + { + "name": "network-slash", + "content": "", + "style": "outline", + "tags": "*new*,internet,ethernet,lan,error", + "set_id": 1 + }, + { + "name": "network-x", + "content": "", + "style": "outline", + "tags": "*new*,internet,ethernet,lan,disabled", + "set_id": 1 + }, + { + "name": "newspaper", + "content": "", + "style": "outline", + "tags": "reading,writing,journals,periodicals", + "set_id": 1 + }, + { + "name": "newspaper-clipping", + "content": "", + "style": "outline", + "tags": "*updated*,reading,writing,journals,periodicals", + "set_id": 1 + }, + { + "name": "not-equals", + "content": "", + "style": "outline", + "tags": "*new*,≠,equality,equivalent,equivalence,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "not-member-of", + "content": "", + "style": "outline", + "tags": "*new*,∉,is not element of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "not-subset-of", + "content": "", + "style": "outline", + "tags": "*new*,⊄,not subset of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "not-superset-of", + "content": "", + "style": "outline", + "tags": "*new*,⊉,not superset of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "notches", + "content": "", + "style": "outline", + "tags": "textarea,resize,drag handle,knurling", + "set_id": 1 + }, + { + "name": "note", + "content": "", + "style": "outline", + "tags": "notes,note-taking,memorandum,post-it,reminders", + "set_id": 1 + }, + { + "name": "note-blank", + "content": "", + "style": "outline", + "tags": "notes,note-taking,memorandum,post-it,reminders", + "set_id": 1 + }, + { + "name": "note-pencil", + "content": "", + "style": "outline", + "tags": "notes,note-taking,memorandum,post-it,reminders", + "set_id": 1 + }, + { + "name": "notebook", + "content": "", + "style": "outline", + "tags": "notes,note-taking,memorandum,journal,diary,logs,logbook", + "set_id": 1 + }, + { + "name": "notepad", + "content": "", + "style": "outline", + "tags": "*updated*,logs,logbook,notes,note-taking,memorandum,journal,diary", + "set_id": 1 + }, + { + "name": "notification", + "content": "", + "style": "outline", + "tags": "badge,pip", + "set_id": 1 + }, + { + "name": "notion-logo", + "content": "", + "style": "outline", + "tags": "documentation,productivity,wiki,logos", + "set_id": 1 + }, + { + "name": "nuclear-plant", + "content": "", + "style": "outline", + "tags": "*new*,renewable,energy,power,electricity", + "set_id": 1 + }, + { + "name": "number-circle-eight", + "content": "", + "style": "outline", + "tags": "8,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-five", + "content": "", + "style": "outline", + "tags": "5,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-four", + "content": "", + "style": "outline", + "tags": "*updated*,4,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-nine", + "content": "", + "style": "outline", + "tags": "9,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-one", + "content": "", + "style": "outline", + "tags": "1,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-seven", + "content": "", + "style": "outline", + "tags": "7,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-six", + "content": "", + "style": "outline", + "tags": "6,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-three", + "content": "", + "style": "outline", + "tags": "3,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-two", + "content": "", + "style": "outline", + "tags": "2,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-zero", + "content": "", + "style": "outline", + "tags": "0,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-eight", + "content": "", + "style": "outline", + "tags": "8,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-five", + "content": "", + "style": "outline", + "tags": "5,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-four", + "content": "", + "style": "outline", + "tags": "*updated*,4,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-nine", + "content": "", + "style": "outline", + "tags": "9,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-one", + "content": "", + "style": "outline", + "tags": "1,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-seven", + "content": "", + "style": "outline", + "tags": "7,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-six", + "content": "", + "style": "outline", + "tags": "6,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-eight", + "content": "", + "style": "outline", + "tags": "8,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-five", + "content": "", + "style": "outline", + "tags": "5,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-four", + "content": "", + "style": "outline", + "tags": "*updated*,4,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-nine", + "content": "", + "style": "outline", + "tags": "9,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-one", + "content": "", + "style": "outline", + "tags": "1,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-seven", + "content": "", + "style": "outline", + "tags": "7,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-six", + "content": "", + "style": "outline", + "tags": "6,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-three", + "content": "", + "style": "outline", + "tags": "3,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-two", + "content": "", + "style": "outline", + "tags": "2,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-zero", + "content": "", + "style": "outline", + "tags": "0,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-three", + "content": "", + "style": "outline", + "tags": "3,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-two", + "content": "", + "style": "outline", + "tags": "2,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-zero", + "content": "", + "style": "outline", + "tags": "0,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "numpad", + "content": "", + "style": "outline", + "tags": "*new*,dialer,dialpad,call-center,telephone,landline,password,passcode", + "set_id": 1 + }, + { + "name": "nut", + "content": "", + "style": "outline", + "tags": "bolts,screws,machinery,tools,hexagon", + "set_id": 1 + }, + { + "name": "ny-times-logo", + "content": "", + "style": "outline", + "tags": "nyt,new york times,logos,reading,writing,news,newspaper", + "set_id": 1 + }, + { + "name": "octagon", + "content": "", + "style": "outline", + "tags": "8,shapes,polygons", + "set_id": 1 + }, + { + "name": "office-chair", + "content": "", + "style": "outline", + "tags": "furniture,seat", + "set_id": 1 + }, + { + "name": "onigiri", + "content": "", + "style": "outline", + "tags": "*new*,rice ball,japanese,food,restaurant", + "set_id": 1 + }, + { + "name": "open-ai-logo", + "content": "", + "style": "outline", + "tags": "*new*,artificial intelligence,ai,chatgpt,llm,logos", + "set_id": 1 + }, + { + "name": "option", + "content": "", + "style": "outline", + "tags": "keyboard,shortcut,modifier", + "set_id": 1 + }, + { + "name": "orange", + "content": "", + "style": "outline", + "tags": "*new*,food,fruit,juice,citrus,groceries,market", + "set_id": 1 + }, + { + "name": "orange-slice", + "content": "", + "style": "outline", + "tags": "food,fruit,juice,citrus,groceries,market", + "set_id": 1 + }, + { + "name": "oven", + "content": "", + "style": "outline", + "tags": "*new*,stove,stovetop,food,cooking,cuisine,kitchen", + "set_id": 1 + }, + { + "name": "package", + "content": "", + "style": "outline", + "tags": "packages,boxes,delivery,mail,postal service,bundles,library,libraries,shipping", + "set_id": 1 + }, + { + "name": "paint-brush", + "content": "", + "style": "outline", + "tags": "colors,color picker,arts", + "set_id": 1 + }, + { + "name": "paint-brush-broad", + "content": "", + "style": "outline", + "tags": "fill,colors,color picker,arts", + "set_id": 1 + }, + { + "name": "paint-brush-household", + "content": "", + "style": "outline", + "tags": "colors,color picker,arts", + "set_id": 1 + }, + { + "name": "paint-bucket", + "content": "", + "style": "outline", + "tags": "*updated*,paintbucket,colors,color picker,fill,arts", + "set_id": 1 + }, + { + "name": "paint-roller", + "content": "", + "style": "outline", + "tags": "colors,color picker,fill,arts,theme", + "set_id": 1 + }, + { + "name": "palette", + "content": "", + "style": "outline", + "tags": "paint,colors,color picker,arts", + "set_id": 1 + }, + { + "name": "panorama", + "content": "", + "style": "outline", + "tags": "*new*,image,picture,photography,landscape,360", + "set_id": 1 + }, + { + "name": "pants", + "content": "", + "style": "outline", + "tags": "clothing,clothes,jeans", + "set_id": 1 + }, + { + "name": "paper-plane", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,messages,messaging,toys,games", + "set_id": 1 + }, + { + "name": "paper-plane-right", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,messages,messaging,toys,games", + "set_id": 1 + }, + { + "name": "paper-plane-tilt", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,messages,messaging,toys,games", + "set_id": 1 + }, + { + "name": "paperclip", + "content": "", + "style": "outline", + "tags": "attachments,mail,email,office", + "set_id": 1 + }, + { + "name": "paperclip-horizontal", + "content": "", + "style": "outline", + "tags": "attachments,mail,email,office", + "set_id": 1 + }, + { + "name": "parachute", + "content": "", + "style": "outline", + "tags": "skydiving,safety", + "set_id": 1 + }, + { + "name": "paragraph", + "content": "", + "style": "outline", + "tags": "pilcrow", + "set_id": 1 + }, + { + "name": "parallelogram", + "content": "", + "style": "outline", + "tags": "shapes,bandcamp,logos", + "set_id": 1 + }, + { + "name": "park", + "content": "", + "style": "outline", + "tags": "bench,outdoors", + "set_id": 1 + }, + { + "name": "password", + "content": "", + "style": "outline", + "tags": "security,secured,authentication,authenticated,login,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "path", + "content": "", + "style": "outline", + "tags": "transit,travel,trail,gps,navigation,route,destination,vector", + "set_id": 1 + }, + { + "name": "patreon-logo", + "content": "", + "style": "outline", + "tags": "*updated*,crowdfunding,logos", + "set_id": 1 + }, + { + "name": "pause", + "content": "", + "style": "outline", + "tags": "music,audio,resume,start,stop", + "set_id": 1 + }, + { + "name": "pause-circle", + "content": "", + "style": "outline", + "tags": "music,audio,resume,start,stop,round", + "set_id": 1 + }, + { + "name": "paw-print", + "content": "", + "style": "outline", + "tags": "pets,pet store,pet shop,animals,cat,dog,veterinarian", + "set_id": 1 + }, + { + "name": "paypal-logo", + "content": "", + "style": "outline", + "tags": "payments,paying,purchase,logos", + "set_id": 1 + }, + { + "name": "peace", + "content": "", + "style": "outline", + "tags": "love,hippies,peace sign,symbols", + "set_id": 1 + }, + { + "name": "pen", + "content": "", + "style": "outline", + "tags": "ink,write,writing,editing,sign,signature", + "set_id": 1 + }, + { + "name": "pen-nib", + "content": "", + "style": "outline", + "tags": "ink,write,writing,editing,sign,signature,fountain pen,illustrator", + "set_id": 1 + }, + { + "name": "pen-nib-straight", + "content": "", + "style": "outline", + "tags": "ink,write,writing,editing,sign,signature,fountain pen,illustrator", + "set_id": 1 + }, + { + "name": "pencil", + "content": "", + "style": "outline", + "tags": "write,writing,editing,sign,signature", + "set_id": 1 + }, + { + "name": "pencil-circle", + "content": "", + "style": "outline", + "tags": "write,writing,editing,sign,signature", + "set_id": 1 + }, + { + "name": "pencil-line", + "content": "", + "style": "outline", + "tags": "write,writing,editing,sign,signature", + "set_id": 1 + }, + { + "name": "pencil-ruler", + "content": "", + "style": "outline", + "tags": "*new*,drawing,drafting,construction,tools", + "set_id": 1 + }, + { + "name": "pencil-simple", + "content": "", + "style": "outline", + "tags": "write,writing,editing,sign,signature", + "set_id": 1 + }, + { + "name": "pencil-simple-line", + "content": "", + "style": "outline", + "tags": "write,writing,editing,sign,signature", + "set_id": 1 + }, + { + "name": "pencil-simple-slash", + "content": "", + "style": "outline", + "tags": "read-only,write,writing,editing", + "set_id": 1 + }, + { + "name": "pencil-slash", + "content": "", + "style": "outline", + "tags": "read-only,write,writing,editing", + "set_id": 1 + }, + { + "name": "pentagon", + "content": "", + "style": "outline", + "tags": "*new*,shapes,polygons,5", + "set_id": 1 + }, + { + "name": "pentagram", + "content": "", + "style": "outline", + "tags": "star,wicca,satan,satanism,religion,spirituality,evil,magic", + "set_id": 1 + }, + { + "name": "pepper", + "content": "", + "style": "outline", + "tags": "food,spicy,chile,vegetable", + "set_id": 1 + }, + { + "name": "percent", + "content": "", + "style": "outline", + "tags": "%,percentage,percentile,ratio,delta,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "person", + "content": "", + "style": "outline", + "tags": "walking,human,woman,man,body,transit,transportation,travel,commuter,user", + "set_id": 1 + }, + { + "name": "person-arms-spread", + "content": "", + "style": "outline", + "tags": "accessibility,vitruvian,stretch,sports", + "set_id": 1 + }, + { + "name": "person-simple", + "content": "", + "style": "outline", + "tags": "pedestrian,walking,human,woman,man,body,transit,transportation,travel,commuter,user,exercise", + "set_id": 1 + }, + { + "name": "person-simple-bike", + "content": "", + "style": "outline", + "tags": "pedestrian,biking,bicycle,human,woman,man,body,sports,exercise", + "set_id": 1 + }, + { + "name": "person-simple-circle", + "content": "", + "style": "outline", + "tags": "*new*,human,accessibility,a11y,vitruvius,vitruvian", + "set_id": 1 + }, + { + "name": "person-simple-hike", + "content": "", + "style": "outline", + "tags": "*new*,pedestrian,climbing,mountaineering,bouldering", + "set_id": 1 + }, + { + "name": "person-simple-run", + "content": "", + "style": "outline", + "tags": "pedestrian,running,human,woman,man,body,transit,transportation,travel,commuter,user,exercise", + "set_id": 1 + }, + { + "name": "person-simple-ski", + "content": "", + "style": "outline", + "tags": "*new*,sports,skiing,winter,mountain", + "set_id": 1 + }, + { + "name": "person-simple-snowboard", + "content": "", + "style": "outline", + "tags": "*new*,sports,snowboarding,winter,mountain", + "set_id": 1 + }, + { + "name": "person-simple-swim", + "content": "", + "style": "outline", + "tags": "*new*,pedestrian,swimming,human,woman,man,body,sports,exercise", + "set_id": 1 + }, + { + "name": "person-simple-tai-chi", + "content": "", + "style": "outline", + "tags": "*new*,mindfulness,martial arts,meditation,sports,exercise,yoga", + "set_id": 1 + }, + { + "name": "person-simple-throw", + "content": "", + "style": "outline", + "tags": "pedestrian,tennis,human,woman,man,body,sports,exercise", + "set_id": 1 + }, + { + "name": "person-simple-walk", + "content": "", + "style": "outline", + "tags": "pedestrian,walking,human,woman,man,body,transit,transportation,travel,commuter,user,exercise", + "set_id": 1 + }, + { + "name": "perspective", + "content": "", + "style": "outline", + "tags": "3d,skew,warp,trapezoid", + "set_id": 1 + }, + { + "name": "phone", + "content": "", + "style": "outline", + "tags": "calls,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-call", + "content": "", + "style": "outline", + "tags": "calls,calling,ringing,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-disconnect", + "content": "", + "style": "outline", + "tags": "calls,hang up,disconnected,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-incoming", + "content": "", + "style": "outline", + "tags": "calls,calling,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-list", + "content": "", + "style": "outline", + "tags": "*new*,calls,call-center,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-outgoing", + "content": "", + "style": "outline", + "tags": "calls,calling,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-pause", + "content": "", + "style": "outline", + "tags": "*new*,calls,hold,call-center,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-plus", + "content": "", + "style": "outline", + "tags": "calls,telephone,landline,talk,conference,add", + "set_id": 1 + }, + { + "name": "phone-slash", + "content": "", + "style": "outline", + "tags": "calls,disabled,disconnected,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-transfer", + "content": "", + "style": "outline", + "tags": "*new*,calls,call-center,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-x", + "content": "", + "style": "outline", + "tags": "calls,missed,errors,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phosphor-logo", + "content": "", + "style": "outline", + "tags": "logos", + "set_id": 1 + }, + { + "name": "pi", + "content": "", + "style": "outline", + "tags": "π,symbol,mathematics,circle", + "set_id": 1 + }, + { + "name": "piano-keys", + "content": "", + "style": "outline", + "tags": "music,instrument,keyboard", + "set_id": 1 + }, + { + "name": "picnic-table", + "content": "", + "style": "outline", + "tags": "*new*,bench,park,outdoors", + "set_id": 1 + }, + { + "name": "picture-in-picture", + "content": "", + "style": "outline", + "tags": "pip,pop-out,minimize,maximize", + "set_id": 1 + }, + { + "name": "piggy-bank", + "content": "", + "style": "outline", + "tags": "savings,deposit,money,coins", + "set_id": 1 + }, + { + "name": "pill", + "content": "", + "style": "outline", + "tags": "capsule,medicine,rx,pharmacy,pharmacist,pharmaceuticals,prescription,drugs", + "set_id": 1 + }, + { + "name": "ping-pong", + "content": "", + "style": "outline", + "tags": "*new*,sports,paddle", + "set_id": 1 + }, + { + "name": "pint-glass", + "content": "", + "style": "outline", + "tags": "*new*,water,beverage,drinks,beverages,food,dining", + "set_id": 1 + }, + { + "name": "pinterest-logo", + "content": "", + "style": "outline", + "tags": "logos,vision board,mood board,social media", + "set_id": 1 + }, + { + "name": "pinwheel", + "content": "", + "style": "outline", + "tags": "toys,whirligig", + "set_id": 1 + }, + { + "name": "pipe", + "content": "", + "style": "outline", + "tags": "*new*,tube,plumber,plumbing,construction", + "set_id": 1 + }, + { + "name": "pipe-wrench", + "content": "", + "style": "outline", + "tags": "*new*,plumber,plumbing,tools,construction", + "set_id": 1 + }, + { + "name": "pix-logo", + "content": "", + "style": "outline", + "tags": "*new*,payments,paying,purchase,logos", + "set_id": 1 + }, + { + "name": "pizza", + "content": "", + "style": "outline", + "tags": "fast food,party,places,locations,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "placeholder", + "content": "", + "style": "outline", + "tags": "empty,notdef,tofu,rectangle slash,missing", + "set_id": 1 + }, + { + "name": "planet", + "content": "", + "style": "outline", + "tags": "saturn,world,globe,astronomy,space", + "set_id": 1 + }, + { + "name": "plant", + "content": "", + "style": "outline", + "tags": "sprout,vegan,farm,farming,garden,gardening", + "set_id": 1 + }, + { + "name": "play", + "content": "", + "style": "outline", + "tags": "music,audio,resume,start", + "set_id": 1 + }, + { + "name": "play-circle", + "content": "", + "style": "outline", + "tags": "music,audio,resume,start,round", + "set_id": 1 + }, + { + "name": "play-pause", + "content": "", + "style": "outline", + "tags": "music,audio,resume,start,stop", + "set_id": 1 + }, + { + "name": "playlist", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,queue", + "set_id": 1 + }, + { + "name": "plug", + "content": "", + "style": "outline", + "tags": "outlet,socket,plugin,integration", + "set_id": 1 + }, + { + "name": "plug-charging", + "content": "", + "style": "outline", + "tags": "outlet,socket,plugin,integration,charge,charging", + "set_id": 1 + }, + { + "name": "plugs", + "content": "", + "style": "outline", + "tags": "outlet,socket,plugin,integration,disconnected", + "set_id": 1 + }, + { + "name": "plugs-connected", + "content": "", + "style": "outline", + "tags": "*updated*,outlet,socket,plugin,integration", + "set_id": 1 + }, + { + "name": "plus", + "content": "", + "style": "outline", + "tags": "addition,sum,mathematics,arithmetic,calculator,+", + "set_id": 1 + }, + { + "name": "plus-circle", + "content": "", + "style": "outline", + "tags": "addition,sum,mathematics,arithmetic,calculator,round,+", + "set_id": 1 + }, + { + "name": "plus-minus", + "content": "", + "style": "outline", + "tags": "plus or minus,plus/minus,add/subtract,addition,sum,subtraction,difference,mathematics,arithmetic,calculator,+,-,±", + "set_id": 1 + }, + { + "name": "plus-square", + "content": "", + "style": "outline", + "tags": "addition,sum,mathematics,arithmetic,calculator,+", + "set_id": 1 + }, + { + "name": "poker-chip", + "content": "", + "style": "outline", + "tags": "chips,tokens,cards,gambling,casino", + "set_id": 1 + }, + { + "name": "police-car", + "content": "", + "style": "outline", + "tags": "*updated*,vehicles,cars,automobiles,law enforcement", + "set_id": 1 + }, + { + "name": "polygon", + "content": "", + "style": "outline", + "tags": "shapes,drawing", + "set_id": 1 + }, + { + "name": "popcorn", + "content": "", + "style": "outline", + "tags": "food,movies,theater", + "set_id": 1 + }, + { + "name": "popsicle", + "content": "", + "style": "outline", + "tags": "*new*,ice cream,dessert,summer,food", + "set_id": 1 + }, + { + "name": "potted-plant", + "content": "", + "style": "outline", + "tags": "sprout,vegan,garden,gardening", + "set_id": 1 + }, + { + "name": "power", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,on,off,on/off,switch,power switch", + "set_id": 1 + }, + { + "name": "prescription", + "content": "", + "style": "outline", + "tags": "rx,medicine,drugs,pharmacy,pharmacist,pharmaceuticals,doctor", + "set_id": 1 + }, + { + "name": "presentation", + "content": "", + "style": "outline", + "tags": "whiteboard,flipchart,charts,statistics,analyze,analysis,meeting", + "set_id": 1 + }, + { + "name": "presentation-chart", + "content": "", + "style": "outline", + "tags": "whiteboard,flipchart,graphs,graphing,charts,statistics,analyze,analysis,meeting", + "set_id": 1 + }, + { + "name": "printer", + "content": "", + "style": "outline", + "tags": "printing", + "set_id": 1 + }, + { + "name": "prohibit", + "content": "", + "style": "outline", + "tags": "forbidden,prohibited,cancelled,prevent,stop,do not enter", + "set_id": 1 + }, + { + "name": "prohibit-inset", + "content": "", + "style": "outline", + "tags": "forbidden,prohibited,cancelled,prevent,stop,do not enter", + "set_id": 1 + }, + { + "name": "projector-screen", + "content": "", + "style": "outline", + "tags": "projection,presentation,slideshow,movies,charts,statistics,analyze,analysis", + "set_id": 1 + }, + { + "name": "projector-screen-chart", + "content": "", + "style": "outline", + "tags": "projection,presentation,slideshow,graphs,graphing,charts,statistics,analyze,analysis", + "set_id": 1 + }, + { + "name": "pulse", + "content": "", + "style": "outline", + "tags": "activity,heartbeat,medical,ecg,ekg,vitals,monitor,medicine", + "set_id": 1 + }, + { + "name": "push-pin", + "content": "", + "style": "outline", + "tags": "favorites,favorited,pushpin", + "set_id": 1 + }, + { + "name": "push-pin-simple", + "content": "", + "style": "outline", + "tags": "favorites,favorited,pushpin", + "set_id": 1 + }, + { + "name": "push-pin-simple-slash", + "content": "", + "style": "outline", + "tags": "favorites,favorited,pushpin,disabled", + "set_id": 1 + }, + { + "name": "push-pin-slash", + "content": "", + "style": "outline", + "tags": "favorites,favorited,pushpin,disabled", + "set_id": 1 + }, + { + "name": "puzzle-piece", + "content": "", + "style": "outline", + "tags": "board game,element,component,extension,plugin", + "set_id": 1 + }, + { + "name": "qr-code", + "content": "", + "style": "outline", + "tags": "upc,barcode,products,shopping,scanner", + "set_id": 1 + }, + { + "name": "question", + "content": "", + "style": "outline", + "tags": "information,help,support,questions", + "set_id": 1 + }, + { + "name": "question-mark", + "content": "", + "style": "outline", + "tags": "*new*,?,information,help,support,questions,punctuation,symbol", + "set_id": 1 + }, + { + "name": "queue", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,playlist", + "set_id": 1 + }, + { + "name": "quotes", + "content": "", + "style": "outline", + "tags": "quoations,quotation marks,double-quotes,writing,books", + "set_id": 1 + }, + { + "name": "rabbit", + "content": "", + "style": "outline", + "tags": "*new*,hare,fast,animal", + "set_id": 1 + }, + { + "name": "racquet", + "content": "", + "style": "outline", + "tags": "*new*,sports,tennis,squash,pickleball", + "set_id": 1 + }, + { + "name": "radical", + "content": "", + "style": "outline", + "tags": "√,radix,radicand,square root,squareroot,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "radio", + "content": "", + "style": "outline", + "tags": "broadcast,fm,am,xm,transmitter,receiver", + "set_id": 1 + }, + { + "name": "radio-button", + "content": "", + "style": "outline", + "tags": "input,checkbox,checked", + "set_id": 1 + }, + { + "name": "radioactive", + "content": "", + "style": "outline", + "tags": "radiation,danger,warning,nuclear,atomic", + "set_id": 1 + }, + { + "name": "rainbow", + "content": "", + "style": "outline", + "tags": "meteorology,rainstorm,arc,pride,lgbtq+,leprechaun", + "set_id": 1 + }, + { + "name": "rainbow-cloud", + "content": "", + "style": "outline", + "tags": "meteorology,rainstorm,cloudy,partly cloudy,partly sunny,pride,lgbtq+,leprechaun", + "set_id": 1 + }, + { + "name": "ranking", + "content": "", + "style": "outline", + "tags": "*new*,medal,rank,leaderboard,winner,sports", + "set_id": 1 + }, + { + "name": "read-cv-logo", + "content": "", + "style": "outline", + "tags": "resume,jobs,logos", + "set_id": 1 + }, + { + "name": "receipt", + "content": "", + "style": "outline", + "tags": "purchase,money,clipping,expense", + "set_id": 1 + }, + { + "name": "receipt-x", + "content": "", + "style": "outline", + "tags": "purchase,money,clipping,expense,cancel", + "set_id": 1 + }, + { + "name": "record", + "content": "", + "style": "outline", + "tags": "music,audio,recording,recorder,voice memo", + "set_id": 1 + }, + { + "name": "rectangle", + "content": "", + "style": "outline", + "tags": "4,shapes,polygons,box", + "set_id": 1 + }, + { + "name": "rectangle-dashed", + "content": "", + "style": "outline", + "tags": "*new*,4,shapes,polygons,box,missing", + "set_id": 1 + }, + { + "name": "recycle", + "content": "", + "style": "outline", + "tags": "recycling,trash,environmental,green", + "set_id": 1 + }, + { + "name": "reddit-logo", + "content": "", + "style": "outline", + "tags": "logos,subreddit,snoo,social media", + "set_id": 1 + }, + { + "name": "repeat", + "content": "", + "style": "outline", + "tags": "music,audio,recycle", + "set_id": 1 + }, + { + "name": "repeat-once", + "content": "", + "style": "outline", + "tags": "music,audio,recycle", + "set_id": 1 + }, + { + "name": "replit-logo", + "content": "", + "style": "outline", + "tags": "*new*,logos,ide,editor,coding", + "set_id": 1 + }, + { + "name": "resize", + "content": "", + "style": "outline", + "tags": "*new*,maximize,expand,grow", + "set_id": 1 + }, + { + "name": "rewind", + "content": "", + "style": "outline", + "tags": "music,audio,seek,scrub,scan,skip,back,backwards,reverse", + "set_id": 1 + }, + { + "name": "rewind-circle", + "content": "", + "style": "outline", + "tags": "music,audio,seek,scrub,scan,skip,back,backwards,reverse", + "set_id": 1 + }, + { + "name": "road-horizon", + "content": "", + "style": "outline", + "tags": "trip,drive,road,travel,transportation,highway", + "set_id": 1 + }, + { + "name": "robot", + "content": "", + "style": "outline", + "tags": "automaton,artificial intelligence,ai", + "set_id": 1 + }, + { + "name": "rocket", + "content": "", + "style": "outline", + "tags": "spaceship,launch,deployment,rocketship", + "set_id": 1 + }, + { + "name": "rocket-launch", + "content": "", + "style": "outline", + "tags": "*updated*,spaceship,flying,blastoff,deployment,rocketship", + "set_id": 1 + }, + { + "name": "rows", + "content": "", + "style": "outline", + "tags": "2,shapes,polygons,box,stack,list,table,cards", + "set_id": 1 + }, + { + "name": "rows-plus-bottom", + "content": "", + "style": "outline", + "tags": "*new*,2,shapes,polygons,box,stack,list,table,cards,prepend,insert", + "set_id": 1 + }, + { + "name": "rows-plus-top", + "content": "", + "style": "outline", + "tags": "*new*,2,shapes,polygons,box,stack,list,table,cards,prepend,insert", + "set_id": 1 + }, + { + "name": "rss", + "content": "", + "style": "outline", + "tags": "radio,broadcast,web feed,news,aggregator", + "set_id": 1 + }, + { + "name": "rss-simple", + "content": "", + "style": "outline", + "tags": "radio,broadcast,web feed,news,aggregator", + "set_id": 1 + }, + { + "name": "rug", + "content": "", + "style": "outline", + "tags": "*updated*,tapestry,carpet", + "set_id": 1 + }, + { + "name": "ruler", + "content": "", + "style": "outline", + "tags": "measure,scale,distance", + "set_id": 1 + }, + { + "name": "sailboat", + "content": "", + "style": "outline", + "tags": "*new*,sailing,ship,vehicles,transportation,sports,places,locations", + "set_id": 1 + }, + { + "name": "scales", + "content": "", + "style": "outline", + "tags": "measure,balance,law,justice,government", + "set_id": 1 + }, + { + "name": "scan", + "content": "", + "style": "outline", + "tags": "upc,barcode,products,shopping,scanner", + "set_id": 1 + }, + { + "name": "scan-smiley", + "content": "", + "style": "outline", + "tags": "*new*,facial recognition,face unlock,scanner", + "set_id": 1 + }, + { + "name": "scissors", + "content": "", + "style": "outline", + "tags": "*updated*,cut,snip,clipboard", + "set_id": 1 + }, + { + "name": "scooter", + "content": "", + "style": "outline", + "tags": "vehicles,transportation,travel,transit", + "set_id": 1 + }, + { + "name": "screencast", + "content": "", + "style": "outline", + "tags": "apple,airplay,screencasting,screen share,television,tv", + "set_id": 1 + }, + { + "name": "screwdriver", + "content": "", + "style": "outline", + "tags": "*new*,tools,construction,flathead,drill", + "set_id": 1 + }, + { + "name": "scribble", + "content": "", + "style": "outline", + "tags": "*new*,doodles,squiggle,drawing,sign,signature", + "set_id": 1 + }, + { + "name": "scribble-loop", + "content": "", + "style": "outline", + "tags": "doodles,drawing,sign,signature", + "set_id": 1 + }, + { + "name": "scroll", + "content": "", + "style": "outline", + "tags": "*updated*,parchment,paper,script,spell,fantasy", + "set_id": 1 + }, + { + "name": "seal", + "content": "", + "style": "outline", + "tags": "badge,verified,verification,shapes,polygons,circle-wavy", + "set_id": 1 + }, + { + "name": "seal-check", + "content": "", + "style": "outline", + "tags": "badge,verified,verification,shapes,polygons,circle-wavy", + "set_id": 1 + }, + { + "name": "seal-percent", + "content": "", + "style": "outline", + "tags": "*new*,badge,discount,sale,shapes,polygons,circle-wavy", + "set_id": 1 + }, + { + "name": "seal-question", + "content": "", + "style": "outline", + "tags": "badge,unverified,verification,shapes,polygons,circle-wavy", + "set_id": 1 + }, + { + "name": "seal-warning", + "content": "", + "style": "outline", + "tags": "badge,unverified,verification,errors,shapes,polygons,circle-wavy", + "set_id": 1 + }, + { + "name": "seat", + "content": "", + "style": "outline", + "tags": "*new*,chair,car seat,airplane seat,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "seatbelt", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,safety", + "set_id": 1 + }, + { + "name": "security-camera", + "content": "", + "style": "outline", + "tags": "*new*,cctv,surveillance,video,monitor,motion detector,safety", + "set_id": 1 + }, + { + "name": "selection", + "content": "", + "style": "outline", + "tags": "marquis,select,square dashed", + "set_id": 1 + }, + { + "name": "selection-all", + "content": "", + "style": "outline", + "tags": "marquis,select all", + "set_id": 1 + }, + { + "name": "selection-background", + "content": "", + "style": "outline", + "tags": "marquis", + "set_id": 1 + }, + { + "name": "selection-foreground", + "content": "", + "style": "outline", + "tags": "marquis", + "set_id": 1 + }, + { + "name": "selection-inverse", + "content": "", + "style": "outline", + "tags": "marquis,invert", + "set_id": 1 + }, + { + "name": "selection-plus", + "content": "", + "style": "outline", + "tags": "marquis,add", + "set_id": 1 + }, + { + "name": "selection-slash", + "content": "", + "style": "outline", + "tags": "marquis,unselect", + "set_id": 1 + }, + { + "name": "shapes", + "content": "", + "style": "outline", + "tags": "geometry,square,circle,triangle", + "set_id": 1 + }, + { + "name": "share", + "content": "", + "style": "outline", + "tags": "send to,export,arrows", + "set_id": 1 + }, + { + "name": "share-fat", + "content": "", + "style": "outline", + "tags": "export,send to", + "set_id": 1 + }, + { + "name": "share-network", + "content": "", + "style": "outline", + "tags": "send to,export", + "set_id": 1 + }, + { + "name": "shield", + "content": "", + "style": "outline", + "tags": "badge,security,secured,defense,defended,authentication,authenticated,guarded,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "shield-check", + "content": "", + "style": "outline", + "tags": "badge,security,defense,authentication,authenticated,guarded,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "shield-checkered", + "content": "", + "style": "outline", + "tags": "badge,security,defense,authentication,authenticated,guarded,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "shield-chevron", + "content": "", + "style": "outline", + "tags": "badge,security,defense,authentication,authenticated,guarded,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "shield-plus", + "content": "", + "style": "outline", + "tags": "badge,security,defense,authentication,authenticated,guarded,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "shield-slash", + "content": "", + "style": "outline", + "tags": "badge,security,unsecured,defense,undefended,authentication,unauthenticated,unguarded,unlocked,unencrypted,encryption,disabled", + "set_id": 1 + }, + { + "name": "shield-star", + "content": "", + "style": "outline", + "tags": "badge,security,defense,authentication,authenticated,guarded,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "shield-warning", + "content": "", + "style": "outline", + "tags": "badge,security,unsecured,defense,undefended,authentication,unauthenticated,unguarded,unlocked,unencrypted,encryption,errors", + "set_id": 1 + }, + { + "name": "shipping-container", + "content": "", + "style": "outline", + "tags": "*new*,shipping,transportation,places,locations", + "set_id": 1 + }, + { + "name": "shirt-folded", + "content": "", + "style": "outline", + "tags": "clothes,clothing", + "set_id": 1 + }, + { + "name": "shooting-star", + "content": "", + "style": "outline", + "tags": "wish,comet,meteor", + "set_id": 1 + }, + { + "name": "shopping-bag", + "content": "", + "style": "outline", + "tags": "ecommerce,market,basket,cart,buying,checkout,places,locations", + "set_id": 1 + }, + { + "name": "shopping-bag-open", + "content": "", + "style": "outline", + "tags": "ecommerce,market,basket,cart,buying,checkout,places,locations", + "set_id": 1 + }, + { + "name": "shopping-cart", + "content": "", + "style": "outline", + "tags": "ecommerce,market,basket,buying,groceries,checkout,places,locations", + "set_id": 1 + }, + { + "name": "shopping-cart-simple", + "content": "", + "style": "outline", + "tags": "ecommerce,market,basket,buying,groceries,checkout,places,locations", + "set_id": 1 + }, + { + "name": "shovel", + "content": "", + "style": "outline", + "tags": "*new*,tools,digging,construction", + "set_id": 1 + }, + { + "name": "shower", + "content": "", + "style": "outline", + "tags": "bath,bathtub,bathroom,faucet", + "set_id": 1 + }, + { + "name": "shrimp", + "content": "", + "style": "outline", + "tags": "food,seafood,prawn", + "set_id": 1 + }, + { + "name": "shuffle", + "content": "", + "style": "outline", + "tags": "music,audio,randomize,crossed", + "set_id": 1 + }, + { + "name": "shuffle-angular", + "content": "", + "style": "outline", + "tags": "music,audio,randomize,crossed", + "set_id": 1 + }, + { + "name": "shuffle-simple", + "content": "", + "style": "outline", + "tags": "music,audio,randomize,crossed", + "set_id": 1 + }, + { + "name": "sidebar", + "content": "", + "style": "outline", + "tags": "left rail,wireframe,ui,interface", + "set_id": 1 + }, + { + "name": "sidebar-simple", + "content": "", + "style": "outline", + "tags": "left rail,wireframe,ui,interface", + "set_id": 1 + }, + { + "name": "sigma", + "content": "", + "style": "outline", + "tags": "σ,symbol,mathematics,sum", + "set_id": 1 + }, + { + "name": "sign-in", + "content": "", + "style": "outline", + "tags": "*updated*,signin,login,log in,enter", + "set_id": 1 + }, + { + "name": "sign-out", + "content": "", + "style": "outline", + "tags": "*updated*,signout,logout,log out,exit", + "set_id": 1 + }, + { + "name": "signature", + "content": "", + "style": "outline", + "tags": "*updated*,sign,autograph,verify", + "set_id": 1 + }, + { + "name": "signpost", + "content": "", + "style": "outline", + "tags": "direction,traffic,road sign,transit,transportation", + "set_id": 1 + }, + { + "name": "sim-card", + "content": "", + "style": "outline", + "tags": "*updated*,cellular,cellphone,mobile", + "set_id": 1 + }, + { + "name": "siren", + "content": "", + "style": "outline", + "tags": "alarm,police,lights,warning", + "set_id": 1 + }, + { + "name": "sketch-logo", + "content": "", + "style": "outline", + "tags": "drawing,art,illustration,ui,interface,prototype,prototyping,gemstone,diamond", + "set_id": 1 + }, + { + "name": "skip-back", + "content": "", + "style": "outline", + "tags": "music,audio,seek,scrub,scan,back,backwards,reverse,previous", + "set_id": 1 + }, + { + "name": "skip-back-circle", + "content": "", + "style": "outline", + "tags": "music,audio,seek,scrub,scan,back,backwards,reverse,previous", + "set_id": 1 + }, + { + "name": "skip-forward", + "content": "", + "style": "outline", + "tags": "music,audio,seek,scrub,scan,ahead,next", + "set_id": 1 + }, + { + "name": "skip-forward-circle", + "content": "", + "style": "outline", + "tags": "music,audio,seek,scrub,scan,ahead,next", + "set_id": 1 + }, + { + "name": "skull", + "content": "", + "style": "outline", + "tags": "death,dead,kill", + "set_id": 1 + }, + { + "name": "skype-logo", + "content": "", + "style": "outline", + "tags": "*new*,chat,video conference", + "set_id": 1 + }, + { + "name": "slack-logo", + "content": "", + "style": "outline", + "tags": "logos,messaging", + "set_id": 1 + }, + { + "name": "sliders", + "content": "", + "style": "outline", + "tags": "music,audio,faders,filters,equalizer,volume,settings,preferences", + "set_id": 1 + }, + { + "name": "sliders-horizontal", + "content": "", + "style": "outline", + "tags": "music,audio,faders,filters,equalizer,volume,settings,preferences", + "set_id": 1 + }, + { + "name": "slideshow", + "content": "", + "style": "outline", + "tags": "pictures,images,photography,gallery,carousel", + "set_id": 1 + }, + { + "name": "smiley", + "content": "", + "style": "outline", + "tags": "face,emoji,happy,grinning,smiling", + "set_id": 1 + }, + { + "name": "smiley-angry", + "content": "", + "style": "outline", + "tags": "face,emoji,mad,frown", + "set_id": 1 + }, + { + "name": "smiley-blank", + "content": "", + "style": "outline", + "tags": "face,emoji,unimpressed,no face", + "set_id": 1 + }, + { + "name": "smiley-meh", + "content": "", + "style": "outline", + "tags": "face,emoji,unimpressed,neutral", + "set_id": 1 + }, + { + "name": "smiley-melting", + "content": "", + "style": "outline", + "tags": "*new*,face,emoji,embarrassment,sarcasm,shame,hot,heat", + "set_id": 1 + }, + { + "name": "smiley-nervous", + "content": "", + "style": "outline", + "tags": "*updated*,face,emoji,anxious,uncomfortable,uneasy,queasy,sick,ill", + "set_id": 1 + }, + { + "name": "smiley-sad", + "content": "", + "style": "outline", + "tags": "face,emoji,unhappy,frowning", + "set_id": 1 + }, + { + "name": "smiley-sticker", + "content": "", + "style": "outline", + "tags": "face,emoji,happy,grinning,smiling", + "set_id": 1 + }, + { + "name": "smiley-wink", + "content": "", + "style": "outline", + "tags": "face,emoji,winking,flirting,cute", + "set_id": 1 + }, + { + "name": "smiley-x-eyes", + "content": "", + "style": "outline", + "tags": "face,emoji,dead,killed,unconscious", + "set_id": 1 + }, + { + "name": "snapchat-logo", + "content": "", + "style": "outline", + "tags": "logos,messaging,social media", + "set_id": 1 + }, + { + "name": "sneaker", + "content": "", + "style": "outline", + "tags": "clothes,clothing,shoes,trainers,sports", + "set_id": 1 + }, + { + "name": "sneaker-move", + "content": "", + "style": "outline", + "tags": "*updated*,clothes,clothing,shoes,trainers,sports", + "set_id": 1 + }, + { + "name": "snowflake", + "content": "", + "style": "outline", + "tags": "meteorology,snowy,snowing,snowstorm", + "set_id": 1 + }, + { + "name": "soccer-ball", + "content": "", + "style": "outline", + "tags": "*updated*,sports,football,mls", + "set_id": 1 + }, + { + "name": "sock", + "content": "", + "style": "outline", + "tags": "*new*,clothes,clothing", + "set_id": 1 + }, + { + "name": "solar-panel", + "content": "", + "style": "outline", + "tags": "*new*,renewable,energy,power,electricity", + "set_id": 1 + }, + { + "name": "solar-roof", + "content": "", + "style": "outline", + "tags": "*new*,renewable,energy,power,electricity", + "set_id": 1 + }, + { + "name": "sort-ascending", + "content": "", + "style": "outline", + "tags": "*updated*,sorted,sorting,increasing,a to z,arrows,list", + "set_id": 1 + }, + { + "name": "sort-descending", + "content": "", + "style": "outline", + "tags": "*updated*,sorted,sorting,decreasing,z to a,arrows,list", + "set_id": 1 + }, + { + "name": "soundcloud-logo", + "content": "", + "style": "outline", + "tags": "music,social media,logos", + "set_id": 1 + }, + { + "name": "spade", + "content": "", + "style": "outline", + "tags": "spades,suits,cards,gambling,casino,gaming", + "set_id": 1 + }, + { + "name": "sparkle", + "content": "", + "style": "outline", + "tags": "star,rate,ratings,favorites,favorited", + "set_id": 1 + }, + { + "name": "speaker-hifi", + "content": "", + "style": "outline", + "tags": "music,audio,sound,stereo", + "set_id": 1 + }, + { + "name": "speaker-high", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,volume,sound", + "set_id": 1 + }, + { + "name": "speaker-low", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,volume,sound", + "set_id": 1 + }, + { + "name": "speaker-none", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,muted,volume,sound", + "set_id": 1 + }, + { + "name": "speaker-simple-high", + "content": "", + "style": "outline", + "tags": "music,audio,volume,sound", + "set_id": 1 + }, + { + "name": "speaker-simple-low", + "content": "", + "style": "outline", + "tags": "music,audio,volume,sound", + "set_id": 1 + }, + { + "name": "speaker-simple-none", + "content": "", + "style": "outline", + "tags": "music,audio,muted,volume,sound", + "set_id": 1 + }, + { + "name": "speaker-simple-slash", + "content": "", + "style": "outline", + "tags": "music,audio,muted,volume,sound,disabled", + "set_id": 1 + }, + { + "name": "speaker-simple-x", + "content": "", + "style": "outline", + "tags": "music,audio,muted,volume,sound,disabled,errors", + "set_id": 1 + }, + { + "name": "speaker-slash", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,muted,volume,sound,disabled", + "set_id": 1 + }, + { + "name": "speaker-x", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,muted,volume,sound,disabled,errors", + "set_id": 1 + }, + { + "name": "speedometer", + "content": "", + "style": "outline", + "tags": "*new*,gauge,dashboard,meter,speed,odometer,performance", + "set_id": 1 + }, + { + "name": "sphere", + "content": "", + "style": "outline", + "tags": "*new*,circle,ball,3d,mesh,cad,model", + "set_id": 1 + }, + { + "name": "spinner", + "content": "", + "style": "outline", + "tags": "loading,loader,waiting,progress", + "set_id": 1 + }, + { + "name": "spinner-ball", + "content": "", + "style": "outline", + "tags": "*new*,loading,loader,waiting,progress", + "set_id": 1 + }, + { + "name": "spinner-gap", + "content": "", + "style": "outline", + "tags": "loading,loader,waiting,progress", + "set_id": 1 + }, + { + "name": "spiral", + "content": "", + "style": "outline", + "tags": "*updated*,spin,rotate,dizzy", + "set_id": 1 + }, + { + "name": "split-horizontal", + "content": "", + "style": "outline", + "tags": "resize,columns", + "set_id": 1 + }, + { + "name": "split-vertical", + "content": "", + "style": "outline", + "tags": "resize,rows", + "set_id": 1 + }, + { + "name": "spotify-logo", + "content": "", + "style": "outline", + "tags": "music,player,streaming", + "set_id": 1 + }, + { + "name": "spray-bottle", + "content": "", + "style": "outline", + "tags": "*new*,cleaner,cleaning", + "set_id": 1 + }, + { + "name": "square", + "content": "", + "style": "outline", + "tags": "4,shapes,polygons,box", + "set_id": 1 + }, + { + "name": "square-half", + "content": "", + "style": "outline", + "tags": "4,shapes,polygons,box,columns,sidebar,split vertical", + "set_id": 1 + }, + { + "name": "square-half-bottom", + "content": "", + "style": "outline", + "tags": "4,shapes,polygons,box,columns,sidebar,split vertical", + "set_id": 1 + }, + { + "name": "square-logo", + "content": "", + "style": "outline", + "tags": "squareup,payment", + "set_id": 1 + }, + { + "name": "square-split-horizontal", + "content": "", + "style": "outline", + "tags": "shapes,polygons,columns", + "set_id": 1 + }, + { + "name": "square-split-vertical", + "content": "", + "style": "outline", + "tags": "shapes,polygons,rows", + "set_id": 1 + }, + { + "name": "squares-four", + "content": "", + "style": "outline", + "tags": "4,shapes,polygons,apps,applications,grid,table,microsoft,logos", + "set_id": 1 + }, + { + "name": "stack", + "content": "", + "style": "outline", + "tags": "cards,layers", + "set_id": 1 + }, + { + "name": "stack-minus", + "content": "", + "style": "outline", + "tags": "*new*,cards,layers,remove,delete", + "set_id": 1 + }, + { + "name": "stack-overflow-logo", + "content": "", + "style": "outline", + "tags": "logos,code", + "set_id": 1 + }, + { + "name": "stack-plus", + "content": "", + "style": "outline", + "tags": "*new*,cards,layers,add", + "set_id": 1 + }, + { + "name": "stack-simple", + "content": "", + "style": "outline", + "tags": "cards,layers", + "set_id": 1 + }, + { + "name": "stairs", + "content": "", + "style": "outline", + "tags": "staircase,steps,escalator,exit,signs", + "set_id": 1 + }, + { + "name": "stamp", + "content": "", + "style": "outline", + "tags": "clone,seal,official", + "set_id": 1 + }, + { + "name": "standard-definition", + "content": "", + "style": "outline", + "tags": "*new*,sd,resolution,video", + "set_id": 1 + }, + { + "name": "star", + "content": "", + "style": "outline", + "tags": "rate,ratings,favorites,favorited", + "set_id": 1 + }, + { + "name": "star-and-crescent", + "content": "", + "style": "outline", + "tags": "islam,muslim,moon,religion,worship,symbol", + "set_id": 1 + }, + { + "name": "star-four", + "content": "", + "style": "outline", + "tags": "rate,ratings,favorites,favorited", + "set_id": 1 + }, + { + "name": "star-half", + "content": "", + "style": "outline", + "tags": "rate,ratings", + "set_id": 1 + }, + { + "name": "star-of-david", + "content": "", + "style": "outline", + "tags": "judaism,jewish,hexagram,religion,worship,symbol", + "set_id": 1 + }, + { + "name": "steam-logo", + "content": "", + "style": "outline", + "tags": "*new*,gaming,games", + "set_id": 1 + }, + { + "name": "steering-wheel", + "content": "", + "style": "outline", + "tags": "cars,vehicles,automobiles,driving", + "set_id": 1 + }, + { + "name": "steps", + "content": "", + "style": "outline", + "tags": "stairs,staircase,exit,signs", + "set_id": 1 + }, + { + "name": "stethoscope", + "content": "", + "style": "outline", + "tags": "hospital,medical,medicine,injury,safety,emergency,doctor,heart", + "set_id": 1 + }, + { + "name": "sticker", + "content": "", + "style": "outline", + "tags": "stickers,sticker pack,labels", + "set_id": 1 + }, + { + "name": "stool", + "content": "", + "style": "outline", + "tags": "chair,seat,furniture", + "set_id": 1 + }, + { + "name": "stop", + "content": "", + "style": "outline", + "tags": "music,audio", + "set_id": 1 + }, + { + "name": "stop-circle", + "content": "", + "style": "outline", + "tags": "music,audio,round", + "set_id": 1 + }, + { + "name": "storefront", + "content": "", + "style": "outline", + "tags": "shops,shopping,markets,stores,buildings,places,locations", + "set_id": 1 + }, + { + "name": "strategy", + "content": "", + "style": "outline", + "tags": "sports,strategem,plan,tic-tac-toe", + "set_id": 1 + }, + { + "name": "stripe-logo", + "content": "", + "style": "outline", + "tags": "payment", + "set_id": 1 + }, + { + "name": "student", + "content": "", + "style": "outline", + "tags": "pupil,graduate,classroom,teacher,education,school,college,university", + "set_id": 1 + }, + { + "name": "subset-of", + "content": "", + "style": "outline", + "tags": "*new*,⊆,subset of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "subset-proper-of", + "content": "", + "style": "outline", + "tags": "*new*,⊂,proper subset of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "subtitles", + "content": "", + "style": "outline", + "tags": "subtitles,television,tv,transcribed,transcription,accessibility,a11y", + "set_id": 1 + }, + { + "name": "subtitles-slash", + "content": "", + "style": "outline", + "tags": "*new*,subtitles,television,tv,transcribed,transcription,accessibility,a11y,disabled", + "set_id": 1 + }, + { + "name": "subtract", + "content": "", + "style": "outline", + "tags": "boolean,intersection,combine,split,merge,union", + "set_id": 1 + }, + { + "name": "subtract-square", + "content": "", + "style": "outline", + "tags": "boolean,intersection,combine,split,merge,union", + "set_id": 1 + }, + { + "name": "subway", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,underground,train,tunnel,metro,light rail,public transit,transportation,commuter,traveling,places,locations", + "set_id": 1 + }, + { + "name": "suitcase", + "content": "", + "style": "outline", + "tags": "briefcase,valise,baggage,folders,portfolio", + "set_id": 1 + }, + { + "name": "suitcase-rolling", + "content": "", + "style": "outline", + "tags": "suitcase,luggage,travel,transportation", + "set_id": 1 + }, + { + "name": "suitcase-simple", + "content": "", + "style": "outline", + "tags": "briefcase,valise,baggage,folders,portfolio", + "set_id": 1 + }, + { + "name": "sun", + "content": "", + "style": "outline", + "tags": "day,daytime,daylight,clear,sunny,sunshine,light mode,brightness,lighten,brighten", + "set_id": 1 + }, + { + "name": "sun-dim", + "content": "", + "style": "outline", + "tags": "day,daytime,daylight,clear,sunny,sunshine,light mode,brightness,darken", + "set_id": 1 + }, + { + "name": "sun-horizon", + "content": "", + "style": "outline", + "tags": "day,daytime,daylight,clear,sunny,sunshine,sunrise,sunset", + "set_id": 1 + }, + { + "name": "sunglasses", + "content": "", + "style": "outline", + "tags": "vision,sun,spectacles", + "set_id": 1 + }, + { + "name": "superset-of", + "content": "", + "style": "outline", + "tags": "*new*,⊇,superset of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "superset-proper-of", + "content": "", + "style": "outline", + "tags": "*new*,⊃,proper superset of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "swap", + "content": "", + "style": "outline", + "tags": "layers,replace,exchange,reverse", + "set_id": 1 + }, + { + "name": "swatches", + "content": "", + "style": "outline", + "tags": "colors,color picker,samples,pantone", + "set_id": 1 + }, + { + "name": "swimming-pool", + "content": "", + "style": "outline", + "tags": "swim,sports,exercise,olympics,aquatics", + "set_id": 1 + }, + { + "name": "sword", + "content": "", + "style": "outline", + "tags": "weapon,knife,dagger,gladius,video games,rpg,gaming,war", + "set_id": 1 + }, + { + "name": "synagogue", + "content": "", + "style": "outline", + "tags": "jewish,judaism,temple,religion,worship", + "set_id": 1 + }, + { + "name": "syringe", + "content": "", + "style": "outline", + "tags": "needle,hypodermic,vaccine,medicine,doctor,shot,hospital", + "set_id": 1 + }, + { + "name": "t-shirt", + "content": "", + "style": "outline", + "tags": "clothes,clothing", + "set_id": 1 + }, + { + "name": "table", + "content": "", + "style": "outline", + "tags": "tables,tabular,speadsheets,excel,grid,form", + "set_id": 1 + }, + { + "name": "tabs", + "content": "", + "style": "outline", + "tags": "*updated*,browser,window,folders,files", + "set_id": 1 + }, + { + "name": "tag", + "content": "", + "style": "outline", + "tags": "tags,hashtag,labels,sale,sell,price,discount", + "set_id": 1 + }, + { + "name": "tag-chevron", + "content": "", + "style": "outline", + "tags": "tags,hashtag,labels,sale", + "set_id": 1 + }, + { + "name": "tag-simple", + "content": "", + "style": "outline", + "tags": "tags,hashtag,labels,sale,sell,price,discount", + "set_id": 1 + }, + { + "name": "target", + "content": "", + "style": "outline", + "tags": "bullseye,radar,archery,accuracy,precision", + "set_id": 1 + }, + { + "name": "taxi", + "content": "", + "style": "outline", + "tags": "*updated*,vehicles,cars,automobiles,livery,limousine,uber", + "set_id": 1 + }, + { + "name": "tea-bag", + "content": "", + "style": "outline", + "tags": "*new*,drinks,beverages,sachet,caffeine,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "telegram-logo", + "content": "", + "style": "outline", + "tags": "logos,messages,messaging", + "set_id": 1 + }, + { + "name": "television", + "content": "", + "style": "outline", + "tags": "screen,tv,displays", + "set_id": 1 + }, + { + "name": "television-simple", + "content": "", + "style": "outline", + "tags": "*updated*,screen,tv,displays", + "set_id": 1 + }, + { + "name": "tennis-ball", + "content": "", + "style": "outline", + "tags": "sports,mlb", + "set_id": 1 + }, + { + "name": "tent", + "content": "", + "style": "outline", + "tags": "camping,outdoors,tarp", + "set_id": 1 + }, + { + "name": "terminal", + "content": "", + "style": "outline", + "tags": "command line,cli,bash,shell,caret,console", + "set_id": 1 + }, + { + "name": "terminal-window", + "content": "", + "style": "outline", + "tags": "command line,cli,bash,shell,caret,console", + "set_id": 1 + }, + { + "name": "test-tube", + "content": "", + "style": "outline", + "tags": "science,chemistry,experiment,vial", + "set_id": 1 + }, + { + "name": "text-a-underline", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font,underscore,emphasis", + "set_id": 1 + }, + { + "name": "text-aa", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font", + "set_id": 1 + }, + { + "name": "text-align-center", + "content": "", + "style": "outline", + "tags": "*updated*,typography,print,font,alignment,centered", + "set_id": 1 + }, + { + "name": "text-align-justify", + "content": "", + "style": "outline", + "tags": "*updated*,typography,print,font,alignment,justified", + "set_id": 1 + }, + { + "name": "text-align-left", + "content": "", + "style": "outline", + "tags": "*updated*,typography,print,font,alignment,flush left", + "set_id": 1 + }, + { + "name": "text-align-right", + "content": "", + "style": "outline", + "tags": "*updated*,typography,print,font,alignment,flush right", + "set_id": 1 + }, + { + "name": "text-b", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font,bold,boldface,emphasis", + "set_id": 1 + }, + { + "name": "text-columns", + "content": "", + "style": "outline", + "tags": "*updated*,typography,print,font,alignment,article", + "set_id": 1 + }, + { + "name": "text-h", + "content": "", + "style": "outline", + "tags": "heading,typography,print", + "set_id": 1 + }, + { + "name": "text-h-five", + "content": "", + "style": "outline", + "tags": "heading,h5,typography,print", + "set_id": 1 + }, + { + "name": "text-h-four", + "content": "", + "style": "outline", + "tags": "*updated*,heading,h4,typography,print", + "set_id": 1 + }, + { + "name": "text-h-one", + "content": "", + "style": "outline", + "tags": "heading,h1,typography,print", + "set_id": 1 + }, + { + "name": "text-h-six", + "content": "", + "style": "outline", + "tags": "heading,h6,typography,print", + "set_id": 1 + }, + { + "name": "text-h-three", + "content": "", + "style": "outline", + "tags": "heading,h3,typography,print", + "set_id": 1 + }, + { + "name": "text-h-two", + "content": "", + "style": "outline", + "tags": "heading,h2,typography,print", + "set_id": 1 + }, + { + "name": "text-indent", + "content": "", + "style": "outline", + "tags": "*updated*,alignment,tab,menu", + "set_id": 1 + }, + { + "name": "text-italic", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font,slant,oblique,stress,emphasis,calligraphy", + "set_id": 1 + }, + { + "name": "text-outdent", + "content": "", + "style": "outline", + "tags": "*updated*,alignment,tab,unindent,dedent,menu", + "set_id": 1 + }, + { + "name": "text-strikethrough", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font,struck,remove,delete,change", + "set_id": 1 + }, + { + "name": "text-subscript", + "content": "", + "style": "outline", + "tags": "*new*,typography,font,formatting,mathematics,power,exponent,calculator", + "set_id": 1 + }, + { + "name": "text-superscript", + "content": "", + "style": "outline", + "tags": "*new*,typography,font,formatting,mathematics,calculator", + "set_id": 1 + }, + { + "name": "text-t", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font", + "set_id": 1 + }, + { + "name": "text-t-slash", + "content": "", + "style": "outline", + "tags": "*new*,typography,typeface,print,font,formatting,clear", + "set_id": 1 + }, + { + "name": "text-underline", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font,underscore,emphasis", + "set_id": 1 + }, + { + "name": "textbox", + "content": "", + "style": "outline", + "tags": "input,cursor,field", + "set_id": 1 + }, + { + "name": "thermometer", + "content": "", + "style": "outline", + "tags": "meteorology,temperature,degrees,°,celcius,centigrade,kelvin,fahrenheit,hot,warm,cold", + "set_id": 1 + }, + { + "name": "thermometer-cold", + "content": "", + "style": "outline", + "tags": "meteorology,temperature,degrees,°,celcius,centigrade,kelvin,fahrenheit", + "set_id": 1 + }, + { + "name": "thermometer-hot", + "content": "", + "style": "outline", + "tags": "meteorology,temperature,degrees,°,celcius,centigrade,kelvin,fahrenheit,warm", + "set_id": 1 + }, + { + "name": "thermometer-simple", + "content": "", + "style": "outline", + "tags": "meteorology,temperature,degrees,°,celcius,centigrade,kelvin,fahrenheit,hot,warm,cold", + "set_id": 1 + }, + { + "name": "threads-logo", + "content": "", + "style": "outline", + "tags": "*new*,meta,instagram,social media", + "set_id": 1 + }, + { + "name": "three-d", + "content": "", + "style": "outline", + "tags": "*new*,3d,cad,model", + "set_id": 1 + }, + { + "name": "thumbs-down", + "content": "", + "style": "outline", + "tags": "dislike,hate,emoji,no", + "set_id": 1 + }, + { + "name": "thumbs-up", + "content": "", + "style": "outline", + "tags": "like,love,favorited,favorites,emoji,yes", + "set_id": 1 + }, + { + "name": "ticket", + "content": "", + "style": "outline", + "tags": "ticketstub,movie ticket,entry,admissions,events", + "set_id": 1 + }, + { + "name": "tidal-logo", + "content": "", + "style": "outline", + "tags": "music,logos", + "set_id": 1 + }, + { + "name": "tiktok-logo", + "content": "", + "style": "outline", + "tags": "logos,social media", + "set_id": 1 + }, + { + "name": "tilde", + "content": "", + "style": "outline", + "tags": "*new*,~,∼,proportional,comparison,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "timer", + "content": "", + "style": "outline", + "tags": "clock,alarm,schedule,events,stopwatch,sports", + "set_id": 1 + }, + { + "name": "tip-jar", + "content": "", + "style": "outline", + "tags": "*new*,give,deposit,donation,savings,money", + "set_id": 1 + }, + { + "name": "tipi", + "content": "", + "style": "outline", + "tags": "teepee,lodge,tent,outdoors,camping,tarp", + "set_id": 1 + }, + { + "name": "tire", + "content": "", + "style": "outline", + "tags": "*new*,wheel,vehicles,transportation", + "set_id": 1 + }, + { + "name": "toggle-left", + "content": "", + "style": "outline", + "tags": "switch,controls,settings,preferences", + "set_id": 1 + }, + { + "name": "toggle-right", + "content": "", + "style": "outline", + "tags": "switch,controls,settings,preferences", + "set_id": 1 + }, + { + "name": "toilet", + "content": "", + "style": "outline", + "tags": "bathroom,restroom,lavatory,water closet", + "set_id": 1 + }, + { + "name": "toilet-paper", + "content": "", + "style": "outline", + "tags": "bathroom,restroom,lavatory,water closet", + "set_id": 1 + }, + { + "name": "toolbox", + "content": "", + "style": "outline", + "tags": "tools,carpentry,construction", + "set_id": 1 + }, + { + "name": "tooth", + "content": "", + "style": "outline", + "tags": "teeth,dentistry,medical,medicine,doctor,cavity", + "set_id": 1 + }, + { + "name": "tornado", + "content": "", + "style": "outline", + "tags": "*new*,meteorology,twister,storm,wind,disaster", + "set_id": 1 + }, + { + "name": "tote", + "content": "", + "style": "outline", + "tags": "suitcases,valises,baggage,tote-bag,portfolios", + "set_id": 1 + }, + { + "name": "tote-simple", + "content": "", + "style": "outline", + "tags": "suitcases,valises,baggage,tote-bag,portfolios", + "set_id": 1 + }, + { + "name": "towel", + "content": "", + "style": "outline", + "tags": "*new*,clothing,linen,hotel,beach,pool,swimming,shower,bath", + "set_id": 1 + }, + { + "name": "tractor", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,farmer,field,farming,agriculture", + "set_id": 1 + }, + { + "name": "trademark", + "content": "", + "style": "outline", + "tags": "tm,®,™,intellectual property", + "set_id": 1 + }, + { + "name": "trademark-registered", + "content": "", + "style": "outline", + "tags": "®,™,intellectual property", + "set_id": 1 + }, + { + "name": "traffic-cone", + "content": "", + "style": "outline", + "tags": "pylon,safety,transit,transportation", + "set_id": 1 + }, + { + "name": "traffic-sign", + "content": "", + "style": "outline", + "tags": "road signs,transit,transportation", + "set_id": 1 + }, + { + "name": "traffic-signal", + "content": "", + "style": "outline", + "tags": "stop light,safety,transit,transportation", + "set_id": 1 + }, + { + "name": "train", + "content": "", + "style": "outline", + "tags": "vehicles,subway,light rail,public transit,transportation,commuter,traveling,places,locations", + "set_id": 1 + }, + { + "name": "train-regional", + "content": "", + "style": "outline", + "tags": "vehicles,subway,railroad,public transit,transportation,commuter,freight,shipping,traveling,places,locations", + "set_id": 1 + }, + { + "name": "train-simple", + "content": "", + "style": "outline", + "tags": "vehicles,subway,light rail,public transit,transportation,commuter,traveling,places,locations", + "set_id": 1 + }, + { + "name": "tram", + "content": "", + "style": "outline", + "tags": "vehicles,subway,railroad,public transit,transportation,commuter,light rail,shipping,traveling,places,locations", + "set_id": 1 + }, + { + "name": "translate", + "content": "", + "style": "outline", + "tags": "translation,languages,internationalization,i18n,speech", + "set_id": 1 + }, + { + "name": "trash", + "content": "", + "style": "outline", + "tags": "garbage,remove,delete,destroy,recycle,recycling", + "set_id": 1 + }, + { + "name": "trash-simple", + "content": "", + "style": "outline", + "tags": "garbage,remove,delete,destroy,recycle,recycling", + "set_id": 1 + }, + { + "name": "tray", + "content": "", + "style": "outline", + "tags": "inbox,mailbox,bin", + "set_id": 1 + }, + { + "name": "tray-arrow-down", + "content": "", + "style": "outline", + "tags": "inbox,saved,saving,archived,archiving,archival,downloaded,downloading", + "set_id": 1 + }, + { + "name": "tray-arrow-up", + "content": "", + "style": "outline", + "tags": "*new*,outbox,archival,unarchive,uploaded,uploading", + "set_id": 1 + }, + { + "name": "treasure-chest", + "content": "", + "style": "outline", + "tags": "*new*,loot,lootbox,inventory,rewards,gaming,pirate", + "set_id": 1 + }, + { + "name": "tree", + "content": "", + "style": "outline", + "tags": "plants,branches,leaves,green,environmental", + "set_id": 1 + }, + { + "name": "tree-evergreen", + "content": "", + "style": "outline", + "tags": "plants,branches,leaves,pine,conifer,green,environmental", + "set_id": 1 + }, + { + "name": "tree-palm", + "content": "", + "style": "outline", + "tags": "tropical,beach,plants,branches,leaves,green,environmental", + "set_id": 1 + }, + { + "name": "tree-structure", + "content": "", + "style": "outline", + "tags": "data structures,family tree,genealogy,hierarchy,taxonomy,charts,flowchart", + "set_id": 1 + }, + { + "name": "tree-view", + "content": "", + "style": "outline", + "tags": "*new*,hierarchy", + "set_id": 1 + }, + { + "name": "trend-down", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,analyze,analysis,decrease,arrows", + "set_id": 1 + }, + { + "name": "trend-up", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,analyze,analysis,increase,arrows", + "set_id": 1 + }, + { + "name": "triangle", + "content": "", + "style": "outline", + "tags": "3,shapes,polygons", + "set_id": 1 + }, + { + "name": "triangle-dashed", + "content": "", + "style": "outline", + "tags": "*new*,3,shapes,polygons,missing", + "set_id": 1 + }, + { + "name": "trolley", + "content": "", + "style": "outline", + "tags": "*new*,airport,briefcase,valise,baggage", + "set_id": 1 + }, + { + "name": "trolley-suitcase", + "content": "", + "style": "outline", + "tags": "*new*,airport,briefcase,valise,baggage", + "set_id": 1 + }, + { + "name": "trophy", + "content": "", + "style": "outline", + "tags": "ribbons,medals,winning,victory,awards,prize", + "set_id": 1 + }, + { + "name": "truck", + "content": "", + "style": "outline", + "tags": "trucks,cars,vehicles,automobile,shipping,delivery", + "set_id": 1 + }, + { + "name": "truck-trailer", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,automobile,shipping,tractor,semi", + "set_id": 1 + }, + { + "name": "tumblr-logo", + "content": "", + "style": "outline", + "tags": "*new*,social media,logos", + "set_id": 1 + }, + { + "name": "twitch-logo", + "content": "", + "style": "outline", + "tags": "logos,streaming,livestream,gaming,video games,social media", + "set_id": 1 + }, + { + "name": "twitter-logo", + "content": "", + "style": "outline", + "tags": "logos,social media,tweets,birds", + "set_id": 1 + }, + { + "name": "umbrella", + "content": "", + "style": "outline", + "tags": "raining,rainy,insurance", + "set_id": 1 + }, + { + "name": "umbrella-simple", + "content": "", + "style": "outline", + "tags": "raining,rainy,insurance", + "set_id": 1 + }, + { + "name": "union", + "content": "", + "style": "outline", + "tags": "*new*,∪,union,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "unite", + "content": "", + "style": "outline", + "tags": "*updated*,round,join,union,merge,combine,intersecting,intersection", + "set_id": 1 + }, + { + "name": "unite-square", + "content": "", + "style": "outline", + "tags": "join,union,merge,combine,intersecting,intersection", + "set_id": 1 + }, + { + "name": "upload", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,uploaded,uploading,hard drive,disk", + "set_id": 1 + }, + { + "name": "upload-simple", + "content": "", + "style": "outline", + "tags": "*updated*,saved,saving,archived,archiving,archival,uploaded,uploading,hard drive,disk", + "set_id": 1 + }, + { + "name": "usb", + "content": "", + "style": "outline", + "tags": "serial,port,plug,peripheral,device", + "set_id": 1 + }, + { + "name": "user", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,login", + "set_id": 1 + }, + { + "name": "user-check", + "content": "", + "style": "outline", + "tags": "*new*,person,users,profile,account,contact,login,verified", + "set_id": 1 + }, + { + "name": "user-circle", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,login", + "set_id": 1 + }, + { + "name": "user-circle-check", + "content": "", + "style": "outline", + "tags": "*new*,person,users,profile,account,contact,login,verified", + "set_id": 1 + }, + { + "name": "user-circle-dashed", + "content": "", + "style": "outline", + "tags": "*new*,person,users,profile,account,contact,login,pending,missing,removed", + "set_id": 1 + }, + { + "name": "user-circle-gear", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,settings,preferences", + "set_id": 1 + }, + { + "name": "user-circle-minus", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,delete,remove,-", + "set_id": 1 + }, + { + "name": "user-circle-plus", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,add,create,+", + "set_id": 1 + }, + { + "name": "user-focus", + "content": "", + "style": "outline", + "tags": "identification,biometrics,facial recognition,profile,person,account,autofocus", + "set_id": 1 + }, + { + "name": "user-gear", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,settings,preferences", + "set_id": 1 + }, + { + "name": "user-list", + "content": "", + "style": "outline", + "tags": "person,users,profiles,accounts,members,address book", + "set_id": 1 + }, + { + "name": "user-minus", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,delete,remove,-", + "set_id": 1 + }, + { + "name": "user-plus", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,add,create,+", + "set_id": 1 + }, + { + "name": "user-rectangle", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,login", + "set_id": 1 + }, + { + "name": "user-sound", + "content": "", + "style": "outline", + "tags": "*new*,person,users,profile,speech,speaking,voice", + "set_id": 1 + }, + { + "name": "user-square", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,login", + "set_id": 1 + }, + { + "name": "user-switch", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,login,logout,signin,signout,settings,preferences", + "set_id": 1 + }, + { + "name": "users", + "content": "", + "style": "outline", + "tags": "user,group,team,people,profiles,accounts,contacts", + "set_id": 1 + }, + { + "name": "users-four", + "content": "", + "style": "outline", + "tags": "user,group,team,department,community,people,profiles,accounts,contacts", + "set_id": 1 + }, + { + "name": "users-three", + "content": "", + "style": "outline", + "tags": "user,group,team,community,people,profiles,accounts,contacts", + "set_id": 1 + }, + { + "name": "van", + "content": "", + "style": "outline", + "tags": "westfalia,microbus,vanagon,cars,vehicles,automobile,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "vault", + "content": "", + "style": "outline", + "tags": "safe,bank,security,secured,authentication,authenticated,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "vector-three", + "content": "", + "style": "outline", + "tags": "*new*,3d,xyz,cartesian,coordinates,plane,volume,dimensions,mathematics", + "set_id": 1 + }, + { + "name": "vector-two", + "content": "", + "style": "outline", + "tags": "*new*,2d,xy,cartesian,coordinates,plane,dimensions,mathematics", + "set_id": 1 + }, + { + "name": "vibrate", + "content": "", + "style": "outline", + "tags": "audio,volume,viration,ringer,calls,silent,silenced", + "set_id": 1 + }, + { + "name": "video", + "content": "", + "style": "outline", + "tags": "training,course,education,tutorial", + "set_id": 1 + }, + { + "name": "video-camera", + "content": "", + "style": "outline", + "tags": "videography,films,movies,recording", + "set_id": 1 + }, + { + "name": "video-camera-slash", + "content": "", + "style": "outline", + "tags": "videography,films,movies,recording,disabled", + "set_id": 1 + }, + { + "name": "video-conference", + "content": "", + "style": "outline", + "tags": "*new*,video call,zoom,skype,discord,facetime,meeting", + "set_id": 1 + }, + { + "name": "vignette", + "content": "", + "style": "outline", + "tags": "photography,darkroom,movie,analog", + "set_id": 1 + }, + { + "name": "vinyl-record", + "content": "", + "style": "outline", + "tags": "recording,audio,album,music,ep,lp", + "set_id": 1 + }, + { + "name": "virtual-reality", + "content": "", + "style": "outline", + "tags": "virtual reality,vr,headset,metaverse", + "set_id": 1 + }, + { + "name": "virus", + "content": "", + "style": "outline", + "tags": "germs,disease,illness", + "set_id": 1 + }, + { + "name": "visor", + "content": "", + "style": "outline", + "tags": "*new*,goggles,vision", + "set_id": 1 + }, + { + "name": "voicemail", + "content": "", + "style": "outline", + "tags": "phonecalls,missed,recording,telephone,landline", + "set_id": 1 + }, + { + "name": "volleyball", + "content": "", + "style": "outline", + "tags": "sports", + "set_id": 1 + }, + { + "name": "wall", + "content": "", + "style": "outline", + "tags": "firewall,security,secured,blocks,bricks", + "set_id": 1 + }, + { + "name": "wallet", + "content": "", + "style": "outline", + "tags": "money,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "warehouse", + "content": "", + "style": "outline", + "tags": "storage,industry,manufacture,buildings,places,locations", + "set_id": 1 + }, + { + "name": "warning", + "content": "", + "style": "outline", + "tags": "alert,danger,dangerous,caution,errors", + "set_id": 1 + }, + { + "name": "warning-circle", + "content": "", + "style": "outline", + "tags": "alert,danger,dangerous,caution,errors,round", + "set_id": 1 + }, + { + "name": "warning-diamond", + "content": "", + "style": "outline", + "tags": "alert,danger,dangerous,caution,errors", + "set_id": 1 + }, + { + "name": "warning-octagon", + "content": "", + "style": "outline", + "tags": "alert,danger,dangerous,caution,errors,8,eight", + "set_id": 1 + }, + { + "name": "washing-machine", + "content": "", + "style": "outline", + "tags": "*new*,clothing,laundry,cleaning", + "set_id": 1 + }, + { + "name": "watch", + "content": "", + "style": "outline", + "tags": "times,timer,alarm,schedule,events,clock,wristwatch,wearable", + "set_id": 1 + }, + { + "name": "wave-sawtooth", + "content": "", + "style": "outline", + "tags": "synth,synthesizer,sound,audio,music,waveform", + "set_id": 1 + }, + { + "name": "wave-sine", + "content": "", + "style": "outline", + "tags": "synth,synthesizer,sound,audio,music,waveform", + "set_id": 1 + }, + { + "name": "wave-square", + "content": "", + "style": "outline", + "tags": "synth,synthesizer,sound,audio,music,waveform", + "set_id": 1 + }, + { + "name": "wave-triangle", + "content": "", + "style": "outline", + "tags": "synth,synthesizer,sound,audio,music,waveform", + "set_id": 1 + }, + { + "name": "waveform", + "content": "", + "style": "outline", + "tags": "*updated*,audio,sound,spectrum,spectrograph,music", + "set_id": 1 + }, + { + "name": "waveform-slash", + "content": "", + "style": "outline", + "tags": "*new*,audio,sound,spectrum,spectrograph,music", + "set_id": 1 + }, + { + "name": "waves", + "content": "", + "style": "outline", + "tags": "ocean,tides,surf", + "set_id": 1 + }, + { + "name": "webcam", + "content": "", + "style": "outline", + "tags": "camera,video conference", + "set_id": 1 + }, + { + "name": "webcam-slash", + "content": "", + "style": "outline", + "tags": "camera,video conference", + "set_id": 1 + }, + { + "name": "webhooks-logo", + "content": "", + "style": "outline", + "tags": "api", + "set_id": 1 + }, + { + "name": "wechat-logo", + "content": "", + "style": "outline", + "tags": "weixin,logos", + "set_id": 1 + }, + { + "name": "whatsapp-logo", + "content": "", + "style": "outline", + "tags": "logos,messages,messaging", + "set_id": 1 + }, + { + "name": "wheelchair", + "content": "", + "style": "outline", + "tags": "handicapped,medical,disabled,differently abled,accessible,accessibility,a11y", + "set_id": 1 + }, + { + "name": "wheelchair-motion", + "content": "", + "style": "outline", + "tags": "handicapped,medical,disabled,differently abled,accessible,accessibility,a11y", + "set_id": 1 + }, + { + "name": "wifi-high", + "content": "", + "style": "outline", + "tags": "wireless,internet,network,connection,connectivity", + "set_id": 1 + }, + { + "name": "wifi-low", + "content": "", + "style": "outline", + "tags": "wireless,internet,network,connection,connectivity", + "set_id": 1 + }, + { + "name": "wifi-medium", + "content": "", + "style": "outline", + "tags": "wireless,internet,network,connection,connectivity", + "set_id": 1 + }, + { + "name": "wifi-none", + "content": "", + "style": "outline", + "tags": "wireless,internet,network,connection,connectivity", + "set_id": 1 + }, + { + "name": "wifi-slash", + "content": "", + "style": "outline", + "tags": "wireless,internet,network,connection,connectivity,disabled,disconnected", + "set_id": 1 + }, + { + "name": "wifi-x", + "content": "", + "style": "outline", + "tags": "wireless,internet,network,connection,connectivity,disconnected,errors", + "set_id": 1 + }, + { + "name": "wind", + "content": "", + "style": "outline", + "tags": "meteorology,windy,stormy,blustery,gusty,air", + "set_id": 1 + }, + { + "name": "windmill", + "content": "", + "style": "outline", + "tags": "*new*,turbine,energy,renewable,sustainability,countryside,landscape,green,power,buildings", + "set_id": 1 + }, + { + "name": "windows-logo", + "content": "", + "style": "outline", + "tags": "microsoft,computers", + "set_id": 1 + }, + { + "name": "wine", + "content": "", + "style": "outline", + "tags": "drinks,beverages,vineyard,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "wrench", + "content": "", + "style": "outline", + "tags": "settings,setup,preferences,tools,machinery,mechanical,repairs", + "set_id": 1 + }, + { + "name": "x", + "content": "", + "style": "outline", + "tags": "×,closed,cancelled,dismissed,times,multiply,mulitplication,product,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "x-circle", + "content": "", + "style": "outline", + "tags": "closed,cancelled,dismissed,round", + "set_id": 1 + }, + { + "name": "x-logo", + "content": "", + "style": "outline", + "tags": "*new*,twitter,logos,social media,tweets", + "set_id": 1 + }, + { + "name": "x-square", + "content": "", + "style": "outline", + "tags": "closed,cancelled,dismissed", + "set_id": 1 + }, + { + "name": "yarn", + "content": "", + "style": "outline", + "tags": "*new*,knitting,sewing", + "set_id": 1 + }, + { + "name": "yin-yang", + "content": "", + "style": "outline", + "tags": "symbol,good,evil,black,white", + "set_id": 1 + }, + { + "name": "youtube-logo", + "content": "", + "style": "outline", + "tags": "logos,google,videos,movies,social media", + "set_id": 1 + }, + { + "name": "acorn-thin", + "content": "", + "style": "outline", + "tags": "*new*,savings,nut,vegetable,veggies,food,groceries,market", + "set_id": 1 + }, + { + "name": "address-book-thin", + "content": "", + "style": "outline", + "tags": "contacts,directory,roledex", + "set_id": 1 + }, + { + "name": "address-book-tabs-thin", + "content": "", + "style": "outline", + "tags": "*new*,contacts,directory,roledex", + "set_id": 1 + }, + { + "name": "air-traffic-control-thin", + "content": "", + "style": "outline", + "tags": "airport,travel,transportation,buildings", + "set_id": 1 + }, + { + "name": "airplane-thin", + "content": "", + "style": "outline", + "tags": "vehicles,airports,flights,flying,planes,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "airplane-in-flight-thin", + "content": "", + "style": "outline", + "tags": "vehicles,airports,flights,flying,planes,transit,transportation,traveling,arrival", + "set_id": 1 + }, + { + "name": "airplane-landing-thin", + "content": "", + "style": "outline", + "tags": "vehicles,airports,flights,flying,planes,transit,transportation,traveling,arrival", + "set_id": 1 + }, + { + "name": "airplane-takeoff-thin", + "content": "", + "style": "outline", + "tags": "vehicles,airports,flights,flying,planes,transit,transportation,traveling,departure", + "set_id": 1 + }, + { + "name": "airplane-taxiing-thin", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,airports,flights,flying,planes,transit,transportation,traveling,arrival", + "set_id": 1 + }, + { + "name": "airplane-tilt-thin", + "content": "", + "style": "outline", + "tags": "vehicles,airports,flights,flying,planes,transit,transportation,traveling,departure", + "set_id": 1 + }, + { + "name": "airplay-thin", + "content": "", + "style": "outline", + "tags": "apple,screencasting,television,tv", + "set_id": 1 + }, + { + "name": "alarm-thin", + "content": "", + "style": "outline", + "tags": "times,timer,clock,schedule,events,watch", + "set_id": 1 + }, + { + "name": "alien-thin", + "content": "", + "style": "outline", + "tags": "ufo,space,flying saucer,extra terrestrial,sci-fi", + "set_id": 1 + }, + { + "name": "align-bottom-thin", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush bottom", + "set_id": 1 + }, + { + "name": "align-bottom-simple-thin", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush bottom", + "set_id": 1 + }, + { + "name": "align-center-horizontal-thin", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,centered,middle", + "set_id": 1 + }, + { + "name": "align-center-horizontal-simple-thin", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,centered,middle", + "set_id": 1 + }, + { + "name": "align-center-vertical-thin", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,centered,middle", + "set_id": 1 + }, + { + "name": "align-center-vertical-simple-thin", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,centered,middle", + "set_id": 1 + }, + { + "name": "align-left-thin", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush left", + "set_id": 1 + }, + { + "name": "align-left-simple-thin", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush left", + "set_id": 1 + }, + { + "name": "align-right-thin", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush right", + "set_id": 1 + }, + { + "name": "align-right-simple-thin", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush right", + "set_id": 1 + }, + { + "name": "align-top-thin", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush top", + "set_id": 1 + }, + { + "name": "align-top-simple-thin", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush top", + "set_id": 1 + }, + { + "name": "amazon-logo-thin", + "content": "", + "style": "outline", + "tags": "ecommerce,shopping,logos", + "set_id": 1 + }, + { + "name": "ambulance-thin", + "content": "", + "style": "outline", + "tags": "*new*,first-aid,emt,medical,medicine,injury,safety,emergency,doctor,vehicles", + "set_id": 1 + }, + { + "name": "anchor-thin", + "content": "", + "style": "outline", + "tags": "nautical,boats,ships,hope,safety,insurance", + "set_id": 1 + }, + { + "name": "anchor-simple-thin", + "content": "", + "style": "outline", + "tags": "nautical,boats,ships,hope,safety,insurance", + "set_id": 1 + }, + { + "name": "android-logo-thin", + "content": "", + "style": "outline", + "tags": "logos,google,mobile,phone,cellular,cellphone", + "set_id": 1 + }, + { + "name": "angle-thin", + "content": "", + "style": "outline", + "tags": "*new*,geometry,trigonometry,degrees,radians,measurement,protractor,compass,arc", + "set_id": 1 + }, + { + "name": "angular-logo-thin", + "content": "", + "style": "outline", + "tags": "framework,javascript,google,web", + "set_id": 1 + }, + { + "name": "aperture-thin", + "content": "", + "style": "outline", + "tags": "photography,cameras,pictures,lens", + "set_id": 1 + }, + { + "name": "app-store-logo-thin", + "content": "", + "style": "outline", + "tags": "macintosh,imac,iphone,ipad,macos,ios", + "set_id": 1 + }, + { + "name": "app-window-thin", + "content": "", + "style": "outline", + "tags": "windows,software,programs,applications", + "set_id": 1 + }, + { + "name": "apple-logo-thin", + "content": "", + "style": "outline", + "tags": "macintosh,imac,iphone,ipad,macos,ios", + "set_id": 1 + }, + { + "name": "apple-podcasts-logo-thin", + "content": "", + "style": "outline", + "tags": "macintosh,imac,iphone,ipad,macos,ios", + "set_id": 1 + }, + { + "name": "approximate-equals-thin", + "content": "", + "style": "outline", + "tags": "*new*,≈,is approximately equal to,congruent,equality,equivalent,equivalence,comparison,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "archive-thin", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,downloaded,downloading", + "set_id": 1 + }, + { + "name": "armchair-thin", + "content": "", + "style": "outline", + "tags": "seat,furniture", + "set_id": 1 + }, + { + "name": "arrow-arc-left-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-arc-right-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-double-up-left-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,reply-all", + "set_id": 1 + }, + { + "name": "arrow-bend-double-up-right-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-down-left-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-down-right-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-left-down-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-left-up-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-right-down-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-right-up-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-up-left-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,reply,re", + "set_id": 1 + }, + { + "name": "arrow-bend-up-right-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,forward,fwd", + "set_id": 1 + }, + { + "name": "arrow-circle-down-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-down-left-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-down-right-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-left-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-right-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-up-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-up-left-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-up-right-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-clockwise-thin", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,redo,refreshing,rotate,spin,flip", + "set_id": 1 + }, + { + "name": "arrow-counter-clockwise-thin", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,undo,refreshing,rotate,spin,flip", + "set_id": 1 + }, + { + "name": "arrow-down-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-down-left-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-down-right-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-down-left-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-down-right-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-left-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-left-down-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-left-up-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-right-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-right-down-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-right-up-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-up-left-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-up-right-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-fat-down-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-left-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-line-down-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-line-left-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-line-right-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-line-up-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,caps lock,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-lines-down-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-lines-left-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-lines-right-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-lines-up-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-right-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-up-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,shift,outlined", + "set_id": 1 + }, + { + "name": "arrow-left-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-line-down-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,bottom", + "set_id": 1 + }, + { + "name": "arrow-line-down-left-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-line-down-right-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-line-left-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-line-right-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-line-up-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,top", + "set_id": 1 + }, + { + "name": "arrow-line-up-left-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-line-up-right-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-right-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-down-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-down-left-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-down-right-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-in-thin", + "content": "", + "style": "outline", + "tags": "import,directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-left-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-out-thin", + "content": "", + "style": "outline", + "tags": "export,external,directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-right-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-up-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-up-left-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-up-right-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-u-down-left-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,undo,return,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-down-right-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,redo,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-left-down-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,undo,return,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-left-up-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,redo,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-right-down-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,undo,return,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-right-up-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,redo,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-up-left-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,undo,return,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-up-right-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,redo,u-turns", + "set_id": 1 + }, + { + "name": "arrow-up-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-up-left-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-up-right-thin", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrows-clockwise-thin", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,redo,refreshing,sync,synchronize,rotate,spin,flip", + "set_id": 1 + }, + { + "name": "arrows-counter-clockwise-thin", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,undo,refreshing,rotate,spin,flip", + "set_id": 1 + }, + { + "name": "arrows-down-up-thin", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrows-horizontal-thin", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,cursor,resize,expand,left,right", + "set_id": 1 + }, + { + "name": "arrows-in-thin", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,collapse,minimize,resize,shrink", + "set_id": 1 + }, + { + "name": "arrows-in-cardinal-thin", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,collapse,minimize,resize,shrink", + "set_id": 1 + }, + { + "name": "arrows-in-line-horizontal-thin", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,close,center,align", + "set_id": 1 + }, + { + "name": "arrows-in-line-vertical-thin", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,close,center,align", + "set_id": 1 + }, + { + "name": "arrows-in-simple-thin", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,collapse,minimize,resize", + "set_id": 1 + }, + { + "name": "arrows-left-right-thin", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrows-merge-thin", + "content": "", + "style": "outline", + "tags": "*updated*,arrowheads,join,combine", + "set_id": 1 + }, + { + "name": "arrows-out-thin", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,expand,fullscreen,resize,grow", + "set_id": 1 + }, + { + "name": "arrows-out-cardinal-thin", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,expand,fullscreen,resize,pan,move,grow", + "set_id": 1 + }, + { + "name": "arrows-out-line-horizontal-thin", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,open,split", + "set_id": 1 + }, + { + "name": "arrows-out-line-vertical-thin", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,open,split", + "set_id": 1 + }, + { + "name": "arrows-out-simple-thin", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,expand,fullscreen,resize", + "set_id": 1 + }, + { + "name": "arrows-split-thin", + "content": "", + "style": "outline", + "tags": "*updated*,arrowheads,fork", + "set_id": 1 + }, + { + "name": "arrows-vertical-thin", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,cursor,resize,expand,up,down", + "set_id": 1 + }, + { + "name": "article-thin", + "content": "", + "style": "outline", + "tags": "reading,writing,journals,periodicals,text,newspaper", + "set_id": 1 + }, + { + "name": "article-medium-thin", + "content": "", + "style": "outline", + "tags": "*updated*,reading,writing,journals,periodicals,text,newspaper", + "set_id": 1 + }, + { + "name": "article-ny-times-thin", + "content": "", + "style": "outline", + "tags": "*updated*,reading,writing,journals,periodicals,text,news,newspaper,nyt,new york times", + "set_id": 1 + }, + { + "name": "asclepius-thin", + "content": "", + "style": "outline", + "tags": "*new*,caduceus,staff,mythology,rx,medicine,drugs,pharmacy,pharmacist,pharmaceuticals,doctor,hospital,snake,mercury,hermes", + "set_id": 1 + }, + { + "name": "asterisk-thin", + "content": "", + "style": "outline", + "tags": "star,wildcard,bullet point,6,emergency", + "set_id": 1 + }, + { + "name": "asterisk-simple-thin", + "content": "", + "style": "outline", + "tags": "*updated*,star,wildcard,bullet point,5,emergency", + "set_id": 1 + }, + { + "name": "at-thin", + "content": "", + "style": "outline", + "tags": "@,address,email,at symbol,commercial at,arobase", + "set_id": 1 + }, + { + "name": "atom-thin", + "content": "", + "style": "outline", + "tags": "atomic,nucleus,nuclear,reactor,science,physics,electron,automation,react", + "set_id": 1 + }, + { + "name": "avocado-thin", + "content": "", + "style": "outline", + "tags": "*new*,food,vegetable,veggie,fruit,groceries,market", + "set_id": 1 + }, + { + "name": "axe-thin", + "content": "", + "style": "outline", + "tags": "*new*,tools,carpentry,forestry,construction", + "set_id": 1 + }, + { + "name": "baby-thin", + "content": "", + "style": "outline", + "tags": "infant,child,children,toddler", + "set_id": 1 + }, + { + "name": "baby-carriage-thin", + "content": "", + "style": "outline", + "tags": "*new*,pram,stroller,infant,child,children,toddler", + "set_id": 1 + }, + { + "name": "backpack-thin", + "content": "", + "style": "outline", + "tags": "knapsack,camping,school,bag", + "set_id": 1 + }, + { + "name": "backspace-thin", + "content": "", + "style": "outline", + "tags": "keyboard,remove,delete", + "set_id": 1 + }, + { + "name": "bag-thin", + "content": "", + "style": "outline", + "tags": "suitcase,valise,baggage,folders,portfolio", + "set_id": 1 + }, + { + "name": "bag-simple-thin", + "content": "", + "style": "outline", + "tags": "suitcase,valise,baggage,folders,portfolio", + "set_id": 1 + }, + { + "name": "balloon-thin", + "content": "", + "style": "outline", + "tags": "helium,birthday,party", + "set_id": 1 + }, + { + "name": "bandaids-thin", + "content": "", + "style": "outline", + "tags": "bandages,medical,medicine,first aid,injury", + "set_id": 1 + }, + { + "name": "bank-thin", + "content": "", + "style": "outline", + "tags": "banking,checking,money,savings,deposit,withdraw,places,locations", + "set_id": 1 + }, + { + "name": "barbell-thin", + "content": "", + "style": "outline", + "tags": "gym,weights,dumbbells,strength training,workout,exercises,fitness", + "set_id": 1 + }, + { + "name": "barcode-thin", + "content": "", + "style": "outline", + "tags": "upc,qr,products,shopping,scanner", + "set_id": 1 + }, + { + "name": "barn-thin", + "content": "", + "style": "outline", + "tags": "*new*,animals,livestock,buildings,farming,agriculture", + "set_id": 1 + }, + { + "name": "barricade-thin", + "content": "", + "style": "outline", + "tags": "construction,safety,gate", + "set_id": 1 + }, + { + "name": "baseball-thin", + "content": "", + "style": "outline", + "tags": "sports,mlb", + "set_id": 1 + }, + { + "name": "baseball-cap-thin", + "content": "", + "style": "outline", + "tags": "clothes,clothing,sports,hat", + "set_id": 1 + }, + { + "name": "baseball-helmet-thin", + "content": "", + "style": "outline", + "tags": "*new*,sports,mlb", + "set_id": 1 + }, + { + "name": "basket-thin", + "content": "", + "style": "outline", + "tags": "ecommerce,market,cart,buying,shopping,groceries,checkout,places,locations", + "set_id": 1 + }, + { + "name": "basketball-thin", + "content": "", + "style": "outline", + "tags": "sports,nba", + "set_id": 1 + }, + { + "name": "bathtub-thin", + "content": "", + "style": "outline", + "tags": "bath,shower,bathroom,faucet", + "set_id": 1 + }, + { + "name": "battery-charging-thin", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-charging-vertical-thin", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-empty-thin", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power,dead", + "set_id": 1 + }, + { + "name": "battery-full-thin", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power,filled", + "set_id": 1 + }, + { + "name": "battery-high-thin", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-low-thin", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-medium-thin", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-plus-thin", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-plus-vertical-thin", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-vertical-empty-thin", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power,dead", + "set_id": 1 + }, + { + "name": "battery-vertical-full-thin", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-vertical-high-thin", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-vertical-low-thin", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-vertical-medium-thin", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-warning-thin", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power,empty,critical", + "set_id": 1 + }, + { + "name": "battery-warning-vertical-thin", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power,empty,critical", + "set_id": 1 + }, + { + "name": "beach-ball-thin", + "content": "", + "style": "outline", + "tags": "*new*,sports,ocean,party", + "set_id": 1 + }, + { + "name": "beanie-thin", + "content": "", + "style": "outline", + "tags": "*new*,clothes,clothing,sports,hat,winter", + "set_id": 1 + }, + { + "name": "bed-thin", + "content": "", + "style": "outline", + "tags": "hotels,accommodations,sleeping,places,locations,medical,hospital", + "set_id": 1 + }, + { + "name": "beer-bottle-thin", + "content": "", + "style": "outline", + "tags": "drinks,beverages,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "beer-stein-thin", + "content": "", + "style": "outline", + "tags": "drinks,beverages,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "behance-logo-thin", + "content": "", + "style": "outline", + "tags": "logos,illustration,ui,interface", + "set_id": 1 + }, + { + "name": "bell-thin", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,calls", + "set_id": 1 + }, + { + "name": "bell-ringing-thin", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,calls", + "set_id": 1 + }, + { + "name": "bell-simple-thin", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,calls", + "set_id": 1 + }, + { + "name": "bell-simple-ringing-thin", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,calls", + "set_id": 1 + }, + { + "name": "bell-simple-slash-thin", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,silent,silenced,disabled", + "set_id": 1 + }, + { + "name": "bell-simple-z-thin", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,snooze", + "set_id": 1 + }, + { + "name": "bell-slash-thin", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,silent,silenced,ringer,calls,disabled", + "set_id": 1 + }, + { + "name": "bell-z-thin", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,snooze", + "set_id": 1 + }, + { + "name": "belt-thin", + "content": "", + "style": "outline", + "tags": "*new*,clothes,clothing", + "set_id": 1 + }, + { + "name": "bezier-curve-thin", + "content": "", + "style": "outline", + "tags": "shapes,drawing,path,pen,vector", + "set_id": 1 + }, + { + "name": "bicycle-thin", + "content": "", + "style": "outline", + "tags": "bikers,bicycling,cyclists,transit,transportation,commuter,exercises,fitness", + "set_id": 1 + }, + { + "name": "binary-thin", + "content": "", + "style": "outline", + "tags": "*new*,digital,0,1,programming,coding,executable", + "set_id": 1 + }, + { + "name": "binoculars-thin", + "content": "", + "style": "outline", + "tags": "telescope,glasses,search,find,explore", + "set_id": 1 + }, + { + "name": "biohazard-thin", + "content": "", + "style": "outline", + "tags": "*new*,contamination,quarantine,toxic,poison,danger,caution", + "set_id": 1 + }, + { + "name": "bird-thin", + "content": "", + "style": "outline", + "tags": "*updated*,animals,pets", + "set_id": 1 + }, + { + "name": "blueprint-thin", + "content": "", + "style": "outline", + "tags": "*new*,architecture,layout,floorplan,building,construction", + "set_id": 1 + }, + { + "name": "bluetooth-thin", + "content": "", + "style": "outline", + "tags": "wireless,connection,connected,connectivity", + "set_id": 1 + }, + { + "name": "bluetooth-connected-thin", + "content": "", + "style": "outline", + "tags": "wireless,connection,connected,connectivity", + "set_id": 1 + }, + { + "name": "bluetooth-slash-thin", + "content": "", + "style": "outline", + "tags": "wireless,connection,connectivity,disconnected,disabled", + "set_id": 1 + }, + { + "name": "bluetooth-x-thin", + "content": "", + "style": "outline", + "tags": "wireless,connection,connectivity,disconnected,errors", + "set_id": 1 + }, + { + "name": "boat-thin", + "content": "", + "style": "outline", + "tags": "ferry,ship,cruise,vehicles,public transit,transportation,commuter,traveling,sailing,places,locations", + "set_id": 1 + }, + { + "name": "bomb-thin", + "content": "", + "style": "outline", + "tags": "*new*,gaming,grenade,explosive,war,weapon,fuse", + "set_id": 1 + }, + { + "name": "bone-thin", + "content": "", + "style": "outline", + "tags": "dogbone", + "set_id": 1 + }, + { + "name": "book-thin", + "content": "", + "style": "outline", + "tags": "reading,reader,novel,story,library", + "set_id": 1 + }, + { + "name": "book-bookmark-thin", + "content": "", + "style": "outline", + "tags": "reading,reader,novel,story,library,favorites,favorited", + "set_id": 1 + }, + { + "name": "book-open-thin", + "content": "", + "style": "outline", + "tags": "*updated*,reading,reader,novel,story,library", + "set_id": 1 + }, + { + "name": "book-open-text-thin", + "content": "", + "style": "outline", + "tags": "*updated*,reading,reader,novel,story,library", + "set_id": 1 + }, + { + "name": "book-open-user-thin", + "content": "", + "style": "outline", + "tags": "*new*,reading,reader,easy read,library,places,locations", + "set_id": 1 + }, + { + "name": "bookmark-thin", + "content": "", + "style": "outline", + "tags": "reading,reader,novel,story,placeholder,favorites,favorited,library", + "set_id": 1 + }, + { + "name": "bookmark-simple-thin", + "content": "", + "style": "outline", + "tags": "reading,reader,novel,story,placeholder,favorites,favorited,library", + "set_id": 1 + }, + { + "name": "bookmarks-thin", + "content": "", + "style": "outline", + "tags": "reading,reader,novel,story,placeholder,favorites,favorited,library", + "set_id": 1 + }, + { + "name": "bookmarks-simple-thin", + "content": "", + "style": "outline", + "tags": "reading,reader,novel,story,placeholder,favorites,favorited,library", + "set_id": 1 + }, + { + "name": "books-thin", + "content": "", + "style": "outline", + "tags": "reading,reader,bookshelf,library,places,locations", + "set_id": 1 + }, + { + "name": "boot-thin", + "content": "", + "style": "outline", + "tags": "hiking,shoes,sports,exercise", + "set_id": 1 + }, + { + "name": "boules-thin", + "content": "", + "style": "outline", + "tags": "*new*,balls,sports,pétanque,raffa,bocce,boule lyonnaise,lawn bowls", + "set_id": 1 + }, + { + "name": "bounding-box-thin", + "content": "", + "style": "outline", + "tags": "polygon,shapes,outline,corners,rectangle", + "set_id": 1 + }, + { + "name": "bowl-food-thin", + "content": "", + "style": "outline", + "tags": "ramen,food,meal,eating,restaurants,dining,locations", + "set_id": 1 + }, + { + "name": "bowl-steam-thin", + "content": "", + "style": "outline", + "tags": "*new*,food,meal,eating,restaurants,dining,locations", + "set_id": 1 + }, + { + "name": "bowling-ball-thin", + "content": "", + "style": "outline", + "tags": "*new*,sports,alley", + "set_id": 1 + }, + { + "name": "box-arrow-down-thin", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,downloaded,downloading", + "set_id": 1 + }, + { + "name": "box-arrow-up-thin", + "content": "", + "style": "outline", + "tags": "*new*,unarchive,archival,upload", + "set_id": 1 + }, + { + "name": "boxing-glove-thin", + "content": "", + "style": "outline", + "tags": "*new*,sports,combat,martial arts,fight,gym", + "set_id": 1 + }, + { + "name": "brackets-angle-thin", + "content": "", + "style": "outline", + "tags": "code,angle brackets,angle braces", + "set_id": 1 + }, + { + "name": "brackets-curly-thin", + "content": "", + "style": "outline", + "tags": "code,curly brackets,curly braces", + "set_id": 1 + }, + { + "name": "brackets-round-thin", + "content": "", + "style": "outline", + "tags": "code,parentheses,round brackets,round braces", + "set_id": 1 + }, + { + "name": "brackets-square-thin", + "content": "", + "style": "outline", + "tags": "code,square brackets,square braces,array", + "set_id": 1 + }, + { + "name": "brain-thin", + "content": "", + "style": "outline", + "tags": "mind,mental", + "set_id": 1 + }, + { + "name": "brandy-thin", + "content": "", + "style": "outline", + "tags": "drinks,beverages,whiskey,cocktail,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "bread-thin", + "content": "", + "style": "outline", + "tags": "*new*,food,meal,bakery,sandwich,gluten,loaf,toast,slice", + "set_id": 1 + }, + { + "name": "bridge-thin", + "content": "", + "style": "outline", + "tags": "travel,transportation,infrastucture", + "set_id": 1 + }, + { + "name": "briefcase-thin", + "content": "", + "style": "outline", + "tags": "suitcase,valise,baggage,folders,portfolio", + "set_id": 1 + }, + { + "name": "briefcase-metal-thin", + "content": "", + "style": "outline", + "tags": "suitcase,valise,baggage,folders,portfolio", + "set_id": 1 + }, + { + "name": "broadcast-thin", + "content": "", + "style": "outline", + "tags": "radio,hotspot,wifi,emit", + "set_id": 1 + }, + { + "name": "broom-thin", + "content": "", + "style": "outline", + "tags": "sweeping,cleaning", + "set_id": 1 + }, + { + "name": "browser-thin", + "content": "", + "style": "outline", + "tags": "web browsers,windows,internet,website,webpage,chrome,edge,firefox", + "set_id": 1 + }, + { + "name": "browsers-thin", + "content": "", + "style": "outline", + "tags": "web browsers,windows,internet,website,webpage,chrome,edge,firefox", + "set_id": 1 + }, + { + "name": "bug-thin", + "content": "", + "style": "outline", + "tags": "debug,errors,insect,ladybug", + "set_id": 1 + }, + { + "name": "bug-beetle-thin", + "content": "", + "style": "outline", + "tags": "debug,errors,insect,ladybug", + "set_id": 1 + }, + { + "name": "bug-droid-thin", + "content": "", + "style": "outline", + "tags": "debug,errors,insect,android,google", + "set_id": 1 + }, + { + "name": "building-thin", + "content": "", + "style": "outline", + "tags": "*new*,places,locations,company,business,buildings", + "set_id": 1 + }, + { + "name": "building-apartment-thin", + "content": "", + "style": "outline", + "tags": "*new*,places,locations,buildings", + "set_id": 1 + }, + { + "name": "building-office-thin", + "content": "", + "style": "outline", + "tags": "*new*,places,locations,company,business,buildings", + "set_id": 1 + }, + { + "name": "buildings-thin", + "content": "", + "style": "outline", + "tags": "places,locations,company,business", + "set_id": 1 + }, + { + "name": "bulldozer-thin", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,construction,earth mover,dig,digger", + "set_id": 1 + }, + { + "name": "bus-thin", + "content": "", + "style": "outline", + "tags": "vehicles,automobile,public transit,transportation,commuter,traveling,places,locations", + "set_id": 1 + }, + { + "name": "butterfly-thin", + "content": "", + "style": "outline", + "tags": "animals,insects,moth", + "set_id": 1 + }, + { + "name": "cable-car-thin", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,gondola,skiing,mountains,public transit,transportation,commuter,traveling,places,locations", + "set_id": 1 + }, + { + "name": "cactus-thin", + "content": "", + "style": "outline", + "tags": "*updated*,plants,cacti,desert,western", + "set_id": 1 + }, + { + "name": "cake-thin", + "content": "", + "style": "outline", + "tags": "dessert,birthday,celebration,event", + "set_id": 1 + }, + { + "name": "calculator-thin", + "content": "", + "style": "outline", + "tags": "addition,sum,subtraction,difference,multiply,multiplication,product,divide,division,divisor,dividend,quotient,equals,equality,mathematics,arithmetic,+,-,±,×,÷,=", + "set_id": 1 + }, + { + "name": "calendar-thin", + "content": "", + "style": "outline", + "tags": "dates,times,events,schedule,12", + "set_id": 1 + }, + { + "name": "calendar-blank-thin", + "content": "", + "style": "outline", + "tags": "dates,times,events,schedule,none", + "set_id": 1 + }, + { + "name": "calendar-check-thin", + "content": "", + "style": "outline", + "tags": "dates,times,events,schedule,todo,checklist", + "set_id": 1 + }, + { + "name": "calendar-dot-thin", + "content": "", + "style": "outline", + "tags": "*new*,dates,times,events,schedule,today", + "set_id": 1 + }, + { + "name": "calendar-dots-thin", + "content": "", + "style": "outline", + "tags": "*new*,dates,times,events,schedule", + "set_id": 1 + }, + { + "name": "calendar-heart-thin", + "content": "", + "style": "outline", + "tags": "*new*,dates,times,events,schedule,favorite,star", + "set_id": 1 + }, + { + "name": "calendar-minus-thin", + "content": "", + "style": "outline", + "tags": "*new*,dates,times,events,schedule,remove,delete", + "set_id": 1 + }, + { + "name": "calendar-plus-thin", + "content": "", + "style": "outline", + "tags": "dates,times,events,schedule,add", + "set_id": 1 + }, + { + "name": "calendar-slash-thin", + "content": "", + "style": "outline", + "tags": "*new*,dates,times,events,schedule,remove,delete,cancel. unavailable", + "set_id": 1 + }, + { + "name": "calendar-star-thin", + "content": "", + "style": "outline", + "tags": "*new*,dates,times,events,schedule,favorite,star", + "set_id": 1 + }, + { + "name": "calendar-x-thin", + "content": "", + "style": "outline", + "tags": "dates,times,events,schedule,closed,cancelled", + "set_id": 1 + }, + { + "name": "call-bell-thin", + "content": "", + "style": "outline", + "tags": "service bell,reception,attendant,concierge bell", + "set_id": 1 + }, + { + "name": "camera-thin", + "content": "", + "style": "outline", + "tags": "photography,pictures,lens", + "set_id": 1 + }, + { + "name": "camera-plus-thin", + "content": "", + "style": "outline", + "tags": "photography,pictures,album,add", + "set_id": 1 + }, + { + "name": "camera-rotate-thin", + "content": "", + "style": "outline", + "tags": "photography,pictures,orientation,portrait,landscape,selfie,flip", + "set_id": 1 + }, + { + "name": "camera-slash-thin", + "content": "", + "style": "outline", + "tags": "photography,pictures,lens,disabled", + "set_id": 1 + }, + { + "name": "campfire-thin", + "content": "", + "style": "outline", + "tags": "camping,flame,bonfire,outdoors", + "set_id": 1 + }, + { + "name": "car-thin", + "content": "", + "style": "outline", + "tags": "*updated*,cars,vehicles,automobile,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "car-battery-thin", + "content": "", + "style": "outline", + "tags": "*new*,charged,charger,charging,power,voltage,electricity", + "set_id": 1 + }, + { + "name": "car-profile-thin", + "content": "", + "style": "outline", + "tags": "cars,vehicles,automobile,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "car-simple-thin", + "content": "", + "style": "outline", + "tags": "cars,vehicles,automobile,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "cardholder-thin", + "content": "", + "style": "outline", + "tags": "wallet,money,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "cards-thin", + "content": "", + "style": "outline", + "tags": "card,slides,slideshow,windows,website,webpage,layers", + "set_id": 1 + }, + { + "name": "cards-three-thin", + "content": "", + "style": "outline", + "tags": "*new*,card,slides,slideshow,windows,website,webpage,layers,stack", + "set_id": 1 + }, + { + "name": "caret-circle-double-down-thin", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-double-left-thin", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-double-right-thin", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-double-up-thin", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-down-thin", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-left-thin", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-right-thin", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-up-thin", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-up-down-thin", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-double-down-thin", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-double-left-thin", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-double-right-thin", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-double-up-thin", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-down-thin", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-left-thin", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-line-down-thin", + "content": "", + "style": "outline", + "tags": "*new*,chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-line-left-thin", + "content": "", + "style": "outline", + "tags": "*new*,chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-line-right-thin", + "content": "", + "style": "outline", + "tags": "*new*,chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-line-up-thin", + "content": "", + "style": "outline", + "tags": "*new*,chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-right-thin", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-up-thin", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-up-down-thin", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "carrot-thin", + "content": "", + "style": "outline", + "tags": "food,vegetable,veggie,groceries,market", + "set_id": 1 + }, + { + "name": "cash-register-thin", + "content": "", + "style": "outline", + "tags": "*new*,retail,point-of-sale,pos,transaction,sales,till", + "set_id": 1 + }, + { + "name": "cassette-tape-thin", + "content": "", + "style": "outline", + "tags": "recording,audio,album,music", + "set_id": 1 + }, + { + "name": "castle-turret-thin", + "content": "", + "style": "outline", + "tags": "*updated*,chess,rook", + "set_id": 1 + }, + { + "name": "cat-thin", + "content": "", + "style": "outline", + "tags": "pets,animals,kitty,kitten", + "set_id": 1 + }, + { + "name": "cell-signal-full-thin", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,reception,service", + "set_id": 1 + }, + { + "name": "cell-signal-high-thin", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,reception,service", + "set_id": 1 + }, + { + "name": "cell-signal-low-thin", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,reception,service", + "set_id": 1 + }, + { + "name": "cell-signal-medium-thin", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,reception,service", + "set_id": 1 + }, + { + "name": "cell-signal-none-thin", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,reception,service", + "set_id": 1 + }, + { + "name": "cell-signal-slash-thin", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,disconnected,disabled,reception,service", + "set_id": 1 + }, + { + "name": "cell-signal-x-thin", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,reception,disconnected,errors,service", + "set_id": 1 + }, + { + "name": "cell-tower-thin", + "content": "", + "style": "outline", + "tags": "*new*,wireless,cellular,broadcast,phone,mobile,network,connection,connectivity", + "set_id": 1 + }, + { + "name": "certificate-thin", + "content": "", + "style": "outline", + "tags": "*updated*,awards,certification,degree,diploma", + "set_id": 1 + }, + { + "name": "chair-thin", + "content": "", + "style": "outline", + "tags": "seat,furniture", + "set_id": 1 + }, + { + "name": "chalkboard-thin", + "content": "", + "style": "outline", + "tags": "blackboard,whiteboard,classroom,teacher,education,school,college,university", + "set_id": 1 + }, + { + "name": "chalkboard-simple-thin", + "content": "", + "style": "outline", + "tags": "*updated*,blackboard,whiteboard,classroom,teacher,education,school,college,university", + "set_id": 1 + }, + { + "name": "chalkboard-teacher-thin", + "content": "", + "style": "outline", + "tags": "blackboard,whiteboard,classroom,education,school,college,university", + "set_id": 1 + }, + { + "name": "champagne-thin", + "content": "", + "style": "outline", + "tags": "glass,drinks,beverages,wine,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "charging-station-thin", + "content": "", + "style": "outline", + "tags": "ev,charge,fuel,pump", + "set_id": 1 + }, + { + "name": "chart-bar-thin", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,histogram,analyze,analysis", + "set_id": 1 + }, + { + "name": "chart-bar-horizontal-thin", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,histogram,analyze,analysis", + "set_id": 1 + }, + { + "name": "chart-donut-thin", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,analyze,analysis,circle", + "set_id": 1 + }, + { + "name": "chart-line-thin", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,analyze,analysis,stocks", + "set_id": 1 + }, + { + "name": "chart-line-down-thin", + "content": "", + "style": "outline", + "tags": "*updated*,graphs,graphing,charts,statistics,analyze,analysis,stocks", + "set_id": 1 + }, + { + "name": "chart-line-up-thin", + "content": "", + "style": "outline", + "tags": "*updated*,graphs,graphing,charts,statistics,analyze,analysis,stocks", + "set_id": 1 + }, + { + "name": "chart-pie-thin", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,circle,analyze,analysis", + "set_id": 1 + }, + { + "name": "chart-pie-slice-thin", + "content": "", + "style": "outline", + "tags": "*updated*,graphs,graphing,charts,statistics,circle,analyze,analysis", + "set_id": 1 + }, + { + "name": "chart-polar-thin", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,analyze,analysis,circle", + "set_id": 1 + }, + { + "name": "chart-scatter-thin", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,analyze,analysis", + "set_id": 1 + }, + { + "name": "chat-thin", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-centered-thin", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-centered-dots-thin", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-centered-slash-thin", + "content": "", + "style": "outline", + "tags": "*new*,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-centered-text-thin", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-circle-thin", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,round,bubble", + "set_id": 1 + }, + { + "name": "chat-circle-dots-thin", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,round,bubble", + "set_id": 1 + }, + { + "name": "chat-circle-slash-thin", + "content": "", + "style": "outline", + "tags": "*new*,messages,messaging,sms,texting,comment,round,bubble", + "set_id": 1 + }, + { + "name": "chat-circle-text-thin", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,round,bubble", + "set_id": 1 + }, + { + "name": "chat-dots-thin", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-slash-thin", + "content": "", + "style": "outline", + "tags": "*new*,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-teardrop-thin", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,bubble", + "set_id": 1 + }, + { + "name": "chat-teardrop-dots-thin", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,bubble", + "set_id": 1 + }, + { + "name": "chat-teardrop-slash-thin", + "content": "", + "style": "outline", + "tags": "*new*,messages,messaging,sms,texting,comment,bubble", + "set_id": 1 + }, + { + "name": "chat-teardrop-text-thin", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,bubble", + "set_id": 1 + }, + { + "name": "chat-text-thin", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chats-thin", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chats-circle-thin", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,round,bubble", + "set_id": 1 + }, + { + "name": "chats-teardrop-thin", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,bubble", + "set_id": 1 + }, + { + "name": "check-thin", + "content": "", + "style": "outline", + "tags": "todo,to-do,task,list,checkbox,ok,done", + "set_id": 1 + }, + { + "name": "check-circle-thin", + "content": "", + "style": "outline", + "tags": "todo,to-do,task,list,checkbox,round,ok,done", + "set_id": 1 + }, + { + "name": "check-fat-thin", + "content": "", + "style": "outline", + "tags": "todo,to-do,task,list,checkbox,ok,done", + "set_id": 1 + }, + { + "name": "check-square-thin", + "content": "", + "style": "outline", + "tags": "todo,to-do,task,list,checkbox,rectangle,ok,done", + "set_id": 1 + }, + { + "name": "check-square-offset-thin", + "content": "", + "style": "outline", + "tags": "*updated*,todo,to-do,task,list,checkbox,rectangle,ok,done", + "set_id": 1 + }, + { + "name": "checkerboard-thin", + "content": "", + "style": "outline", + "tags": "*new*,crossword", + "set_id": 1 + }, + { + "name": "checks-thin", + "content": "", + "style": "outline", + "tags": "*updated*,todo,task,to-do,list,checkbox,ok,done", + "set_id": 1 + }, + { + "name": "cheers-thin", + "content": "", + "style": "outline", + "tags": "*new*,glass,drinks,beverages,champagne,toast,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "cheese-thin", + "content": "", + "style": "outline", + "tags": "*new*,dairy,wedge,food,dining", + "set_id": 1 + }, + { + "name": "chef-hat-thin", + "content": "", + "style": "outline", + "tags": "*new*,cooking,cuisine,kitchen,clothes,clothing", + "set_id": 1 + }, + { + "name": "cherries-thin", + "content": "", + "style": "outline", + "tags": "*new*,food,fruit,cherry,groceries,market", + "set_id": 1 + }, + { + "name": "church-thin", + "content": "", + "style": "outline", + "tags": "christ,christianity,cathedral,religion,worship", + "set_id": 1 + }, + { + "name": "cigarette-thin", + "content": "", + "style": "outline", + "tags": "*new*,smoking,tobacco", + "set_id": 1 + }, + { + "name": "cigarette-slash-thin", + "content": "", + "style": "outline", + "tags": "*new*,non-smoking,tobacco", + "set_id": 1 + }, + { + "name": "circle-thin", + "content": "", + "style": "outline", + "tags": "round,shapes,polygons", + "set_id": 1 + }, + { + "name": "circle-dashed-thin", + "content": "", + "style": "outline", + "tags": "missing,round,shapes,polygons", + "set_id": 1 + }, + { + "name": "circle-half-thin", + "content": "", + "style": "outline", + "tags": "round,shapes,contrast,brightness", + "set_id": 1 + }, + { + "name": "circle-half-tilt-thin", + "content": "", + "style": "outline", + "tags": "round,shapes,contrast,brightness", + "set_id": 1 + }, + { + "name": "circle-notch-thin", + "content": "", + "style": "outline", + "tags": "round,shapes,loading,loader,spinner,waiting,progress", + "set_id": 1 + }, + { + "name": "circles-four-thin", + "content": "", + "style": "outline", + "tags": "round,shapes,polygons,4", + "set_id": 1 + }, + { + "name": "circles-three-thin", + "content": "", + "style": "outline", + "tags": "round,shapes,polygons,3,asana", + "set_id": 1 + }, + { + "name": "circles-three-plus-thin", + "content": "", + "style": "outline", + "tags": "round,shapes,polygons,3,+", + "set_id": 1 + }, + { + "name": "circuitry-thin", + "content": "", + "style": "outline", + "tags": "processor,microchip,computer,circuit,electronics,motherboard", + "set_id": 1 + }, + { + "name": "city-thin", + "content": "", + "style": "outline", + "tags": "*new*,skyline,skyscrapers,places,locations,buildings", + "set_id": 1 + }, + { + "name": "clipboard-thin", + "content": "", + "style": "outline", + "tags": "copy,copied,checklist", + "set_id": 1 + }, + { + "name": "clipboard-text-thin", + "content": "", + "style": "outline", + "tags": "copy,copied,checklist", + "set_id": 1 + }, + { + "name": "clock-thin", + "content": "", + "style": "outline", + "tags": "times,timer,alarm,schedule,events,watch", + "set_id": 1 + }, + { + "name": "clock-afternoon-thin", + "content": "", + "style": "outline", + "tags": "times,timer,alarm,schedule,events,watch", + "set_id": 1 + }, + { + "name": "clock-clockwise-thin", + "content": "", + "style": "outline", + "tags": "times,timer,alarm,schedule,events,restore,fast forward,update", + "set_id": 1 + }, + { + "name": "clock-countdown-thin", + "content": "", + "style": "outline", + "tags": "times,timer,alarm,schedule,events,watch", + "set_id": 1 + }, + { + "name": "clock-counter-clockwise-thin", + "content": "", + "style": "outline", + "tags": "times,timer,alarm,schedule,events,backup,rewind,history", + "set_id": 1 + }, + { + "name": "clock-user-thin", + "content": "", + "style": "outline", + "tags": "*new*,times,timer,shift,schedule,events,watch", + "set_id": 1 + }, + { + "name": "closed-captioning-thin", + "content": "", + "style": "outline", + "tags": "subtitles,television,tv,transcribed,transcription,accessibility,a11y", + "set_id": 1 + }, + { + "name": "cloud-thin", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,meteorology,cloudy,overcast", + "set_id": 1 + }, + { + "name": "cloud-arrow-down-thin", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,download", + "set_id": 1 + }, + { + "name": "cloud-arrow-up-thin", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,upload", + "set_id": 1 + }, + { + "name": "cloud-check-thin", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,sync,synchronized", + "set_id": 1 + }, + { + "name": "cloud-fog-thin", + "content": "", + "style": "outline", + "tags": "meteorology,cloudy,overcast,foggy,mist,haze", + "set_id": 1 + }, + { + "name": "cloud-lightning-thin", + "content": "", + "style": "outline", + "tags": "meteorology,cloudy,overcast,stormy,thunderstorm", + "set_id": 1 + }, + { + "name": "cloud-moon-thin", + "content": "", + "style": "outline", + "tags": "meteorology,cloudy,partly cloudy,night,evening", + "set_id": 1 + }, + { + "name": "cloud-rain-thin", + "content": "", + "style": "outline", + "tags": "meteorology,cloudy,rainy,raining,stormy,rainstorm", + "set_id": 1 + }, + { + "name": "cloud-slash-thin", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,sync,disabled", + "set_id": 1 + }, + { + "name": "cloud-snow-thin", + "content": "", + "style": "outline", + "tags": "meteorology,cloudy,snowy,snowing,stormy,snowstorm", + "set_id": 1 + }, + { + "name": "cloud-sun-thin", + "content": "", + "style": "outline", + "tags": "meteorology,cloudy,partly cloudy,partly sunny", + "set_id": 1 + }, + { + "name": "cloud-warning-thin", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,errors", + "set_id": 1 + }, + { + "name": "cloud-x-thin", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,errors", + "set_id": 1 + }, + { + "name": "clover-thin", + "content": "", + "style": "outline", + "tags": "*new*,four leaf clover,plants,luck,lucky,irish", + "set_id": 1 + }, + { + "name": "club-thin", + "content": "", + "style": "outline", + "tags": "clubs,suits,cards,gambling,casino,gaming", + "set_id": 1 + }, + { + "name": "coat-hanger-thin", + "content": "", + "style": "outline", + "tags": "clothing,clothes,closet", + "set_id": 1 + }, + { + "name": "coda-logo-thin", + "content": "", + "style": "outline", + "tags": "project management,productivity,documentation,wiki,logos", + "set_id": 1 + }, + { + "name": "code-thin", + "content": "", + "style": "outline", + "tags": "angle brackets,angle braces,snippets", + "set_id": 1 + }, + { + "name": "code-block-thin", + "content": "", + "style": "outline", + "tags": "angle brackets,angle braces,snippets", + "set_id": 1 + }, + { + "name": "code-simple-thin", + "content": "", + "style": "outline", + "tags": "angle brackets,angle braces,snippets", + "set_id": 1 + }, + { + "name": "codepen-logo-thin", + "content": "", + "style": "outline", + "tags": "ide,logos", + "set_id": 1 + }, + { + "name": "codesandbox-logo-thin", + "content": "", + "style": "outline", + "tags": "ide,logos", + "set_id": 1 + }, + { + "name": "coffee-thin", + "content": "", + "style": "outline", + "tags": "tea,java,beverages,drinks,cafe,cup,mug,espresso,cappuccino,latte,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "coffee-bean-thin", + "content": "", + "style": "outline", + "tags": "*new*,tea,java,beverages,drinks,cafe,cup,mug,espresso,cappuccino,latte,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "coin-thin", + "content": "", + "style": "outline", + "tags": "coins,cents,change,money,currency,payment,paying,purchase,price,sell", + "set_id": 1 + }, + { + "name": "coin-vertical-thin", + "content": "", + "style": "outline", + "tags": "cents,change,money,currency,payment,paying,purchase,price,sell", + "set_id": 1 + }, + { + "name": "coins-thin", + "content": "", + "style": "outline", + "tags": "cents,change,money,currency,payment,paying,purchase,price,sell", + "set_id": 1 + }, + { + "name": "columns-thin", + "content": "", + "style": "outline", + "tags": "2,shapes,polygons,box,stack,list,table,cards", + "set_id": 1 + }, + { + "name": "columns-plus-left-thin", + "content": "", + "style": "outline", + "tags": "*new*,2,shapes,polygons,box,stack,list,table,cards,prepend,insert", + "set_id": 1 + }, + { + "name": "columns-plus-right-thin", + "content": "", + "style": "outline", + "tags": "*new*,2,shapes,polygons,box,stack,list,table,cards,append,insert", + "set_id": 1 + }, + { + "name": "command-thin", + "content": "", + "style": "outline", + "tags": "apple,keyboard,shortcut,modifier,looped square,bowen knot,saint john's arms", + "set_id": 1 + }, + { + "name": "compass-thin", + "content": "", + "style": "outline", + "tags": "navigation,directions,maps,safari,apple", + "set_id": 1 + }, + { + "name": "compass-rose-thin", + "content": "", + "style": "outline", + "tags": "*new*,navigation,directions,maps,cardinal,cartography", + "set_id": 1 + }, + { + "name": "compass-tool-thin", + "content": "", + "style": "outline", + "tags": "drawing,geometry,trigonometry,degrees,radians,measurement,protractor,compass,arc", + "set_id": 1 + }, + { + "name": "computer-tower-thin", + "content": "", + "style": "outline", + "tags": "desktop,pc,imac", + "set_id": 1 + }, + { + "name": "confetti-thin", + "content": "", + "style": "outline", + "tags": "tada,party,emoji", + "set_id": 1 + }, + { + "name": "contactless-payment-thin", + "content": "", + "style": "outline", + "tags": "purchase,credit card,nfc", + "set_id": 1 + }, + { + "name": "control-thin", + "content": "", + "style": "outline", + "tags": "ctrl,key,keyboard,shortcut,caret", + "set_id": 1 + }, + { + "name": "cookie-thin", + "content": "", + "style": "outline", + "tags": "privacy,dessert,food,dining", + "set_id": 1 + }, + { + "name": "cooking-pot-thin", + "content": "", + "style": "outline", + "tags": "stew,kitchen,steaming,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "copy-thin", + "content": "", + "style": "outline", + "tags": "duplicated,copied,clipboard", + "set_id": 1 + }, + { + "name": "copy-simple-thin", + "content": "", + "style": "outline", + "tags": "duplicated,copied,clipboard", + "set_id": 1 + }, + { + "name": "copyleft-thin", + "content": "", + "style": "outline", + "tags": "🄯,intellectual property,copr.,symbol", + "set_id": 1 + }, + { + "name": "copyright-thin", + "content": "", + "style": "outline", + "tags": "©,intellectual property,copr.,symbol", + "set_id": 1 + }, + { + "name": "corners-in-thin", + "content": "", + "style": "outline", + "tags": "*updated*,collapse,windowed,minimized", + "set_id": 1 + }, + { + "name": "corners-out-thin", + "content": "", + "style": "outline", + "tags": "*updated*,expand,fullscreen,maximized", + "set_id": 1 + }, + { + "name": "couch-thin", + "content": "", + "style": "outline", + "tags": "furniture,seat", + "set_id": 1 + }, + { + "name": "court-basketball-thin", + "content": "", + "style": "outline", + "tags": "*new*,sports,nba", + "set_id": 1 + }, + { + "name": "cow-thin", + "content": "", + "style": "outline", + "tags": "*new*,animals,livestock,beef,bull,milk,dairy", + "set_id": 1 + }, + { + "name": "cowboy-hat-thin", + "content": "", + "style": "outline", + "tags": "*new*,clothes,clothing,stetson", + "set_id": 1 + }, + { + "name": "cpu-thin", + "content": "", + "style": "outline", + "tags": "processor,microchip,computer,circuit", + "set_id": 1 + }, + { + "name": "crane-thin", + "content": "", + "style": "outline", + "tags": "*new*,construction,industry", + "set_id": 1 + }, + { + "name": "crane-tower-thin", + "content": "", + "style": "outline", + "tags": "*new*,construction,industry", + "set_id": 1 + }, + { + "name": "credit-card-thin", + "content": "", + "style": "outline", + "tags": "debit,visa,mastercard,money,payment,paying,purchase,swipe", + "set_id": 1 + }, + { + "name": "cricket-thin", + "content": "", + "style": "outline", + "tags": "*new*,sports,ball,bat", + "set_id": 1 + }, + { + "name": "crop-thin", + "content": "", + "style": "outline", + "tags": "photography,clip,screenshots", + "set_id": 1 + }, + { + "name": "cross-thin", + "content": "", + "style": "outline", + "tags": "dagger,crucifix,christ,christianity,religion,worship,symbol", + "set_id": 1 + }, + { + "name": "crosshair-thin", + "content": "", + "style": "outline", + "tags": "geolocation,gps,aiming,targeting", + "set_id": 1 + }, + { + "name": "crosshair-simple-thin", + "content": "", + "style": "outline", + "tags": "geolocation,gps,aiming,targeting", + "set_id": 1 + }, + { + "name": "crown-thin", + "content": "", + "style": "outline", + "tags": "*updated*,king,queen,royalty,monarch,ruler,leader,chess", + "set_id": 1 + }, + { + "name": "crown-cross-thin", + "content": "", + "style": "outline", + "tags": "*new*,king,queen,royalty,monarch,ruler,leader,chess", + "set_id": 1 + }, + { + "name": "crown-simple-thin", + "content": "", + "style": "outline", + "tags": "*updated*,king,queen,royalty,monarch,ruler,leader,chess", + "set_id": 1 + }, + { + "name": "cube-thin", + "content": "", + "style": "outline", + "tags": "square,box,3d,volume,blocks", + "set_id": 1 + }, + { + "name": "cube-focus-thin", + "content": "", + "style": "outline", + "tags": "augmented reality,ar,virual reality,vr,3d,scan", + "set_id": 1 + }, + { + "name": "cube-transparent-thin", + "content": "", + "style": "outline", + "tags": "square,box,3d,volume,blocks,necker", + "set_id": 1 + }, + { + "name": "currency-btc-thin", + "content": "", + "style": "outline", + "tags": "money,btc,bitcoin,crypto,cryptocurrency,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-circle-dollar-thin", + "content": "", + "style": "outline", + "tags": "money,usd,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-cny-thin", + "content": "", + "style": "outline", + "tags": "money,yuan,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-dollar-thin", + "content": "", + "style": "outline", + "tags": "money,usd,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-dollar-simple-thin", + "content": "", + "style": "outline", + "tags": "money,usd,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-eth-thin", + "content": "", + "style": "outline", + "tags": "money,ethereum,crypto,cryptocurrency,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-eur-thin", + "content": "", + "style": "outline", + "tags": "money,euros,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-gbp-thin", + "content": "", + "style": "outline", + "tags": "money,pounds sterling,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-inr-thin", + "content": "", + "style": "outline", + "tags": "money,rupees,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-jpy-thin", + "content": "", + "style": "outline", + "tags": "money,yen,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-krw-thin", + "content": "", + "style": "outline", + "tags": "money,won,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-kzt-thin", + "content": "", + "style": "outline", + "tags": "money,kazakhstan,tenge,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-ngn-thin", + "content": "", + "style": "outline", + "tags": "money,nigeria,naira,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-rub-thin", + "content": "", + "style": "outline", + "tags": "money,rubles,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "cursor-thin", + "content": "", + "style": "outline", + "tags": "pointer,arrowhead,mouse,click", + "set_id": 1 + }, + { + "name": "cursor-click-thin", + "content": "", + "style": "outline", + "tags": "pointer,arrowhead,mouse", + "set_id": 1 + }, + { + "name": "cursor-text-thin", + "content": "", + "style": "outline", + "tags": "i-beam,input,select", + "set_id": 1 + }, + { + "name": "cylinder-thin", + "content": "", + "style": "outline", + "tags": "shapes,tube", + "set_id": 1 + }, + { + "name": "database-thin", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,hard disk,storage,hdd,servers,databases", + "set_id": 1 + }, + { + "name": "desk-thin", + "content": "", + "style": "outline", + "tags": "*new*,furniture,workspace,table", + "set_id": 1 + }, + { + "name": "desktop-thin", + "content": "", + "style": "outline", + "tags": "computer,pc,imac,tower", + "set_id": 1 + }, + { + "name": "desktop-tower-thin", + "content": "", + "style": "outline", + "tags": "*updated*,computer,pc,imac", + "set_id": 1 + }, + { + "name": "detective-thin", + "content": "", + "style": "outline", + "tags": "incognito,police,law enforcement,spy,secret", + "set_id": 1 + }, + { + "name": "dev-to-logo-thin", + "content": "", + "style": "outline", + "tags": "reading,writing,social media,logos", + "set_id": 1 + }, + { + "name": "device-mobile-thin", + "content": "", + "style": "outline", + "tags": "cellphone,cellular", + "set_id": 1 + }, + { + "name": "device-mobile-camera-thin", + "content": "", + "style": "outline", + "tags": "cellphone,cellular", + "set_id": 1 + }, + { + "name": "device-mobile-slash-thin", + "content": "", + "style": "outline", + "tags": "*new*,cellphone,cellular", + "set_id": 1 + }, + { + "name": "device-mobile-speaker-thin", + "content": "", + "style": "outline", + "tags": "cellphone,cellular", + "set_id": 1 + }, + { + "name": "device-rotate-thin", + "content": "", + "style": "outline", + "tags": "*new*,orientation,landscape,portrait,spin,flip", + "set_id": 1 + }, + { + "name": "device-tablet-thin", + "content": "", + "style": "outline", + "tags": "cellphone,cellular,ipad,phablet", + "set_id": 1 + }, + { + "name": "device-tablet-camera-thin", + "content": "", + "style": "outline", + "tags": "cellphone,cellular,ipad,phablet", + "set_id": 1 + }, + { + "name": "device-tablet-speaker-thin", + "content": "", + "style": "outline", + "tags": "cellphone,cellular,ipad,phablet", + "set_id": 1 + }, + { + "name": "devices-thin", + "content": "", + "style": "outline", + "tags": "responsive,cellphone,cellular,tablet,destop", + "set_id": 1 + }, + { + "name": "diamond-thin", + "content": "", + "style": "outline", + "tags": "rectangle,shapes,polygons,diamonds,suits,cards,gambling,casino,gaming", + "set_id": 1 + }, + { + "name": "diamonds-four-thin", + "content": "", + "style": "outline", + "tags": "shapes,grid,component", + "set_id": 1 + }, + { + "name": "dice-five-thin", + "content": "", + "style": "outline", + "tags": "die,rolling,gamble,gambling,casino,gaming,5", + "set_id": 1 + }, + { + "name": "dice-four-thin", + "content": "", + "style": "outline", + "tags": "die,rolling,gamble,gambling,casino,gaming,4", + "set_id": 1 + }, + { + "name": "dice-one-thin", + "content": "", + "style": "outline", + "tags": "die,rolling,gamble,gambling,casino,gaming,1", + "set_id": 1 + }, + { + "name": "dice-six-thin", + "content": "", + "style": "outline", + "tags": "die,rolling,gamble,gambling,casino,gaming,6", + "set_id": 1 + }, + { + "name": "dice-three-thin", + "content": "", + "style": "outline", + "tags": "die,rolling,gamble,gambling,casino,gaming,3", + "set_id": 1 + }, + { + "name": "dice-two-thin", + "content": "", + "style": "outline", + "tags": "die,rolling,gamble,gambling,casino,gaming,2", + "set_id": 1 + }, + { + "name": "disc-thin", + "content": "", + "style": "outline", + "tags": "cd-rom,compact disk,album,record", + "set_id": 1 + }, + { + "name": "disco-ball-thin", + "content": "", + "style": "outline", + "tags": "*new*,danging,club,70s", + "set_id": 1 + }, + { + "name": "discord-logo-thin", + "content": "", + "style": "outline", + "tags": "logos,messages,messaging,chat", + "set_id": 1 + }, + { + "name": "divide-thin", + "content": "", + "style": "outline", + "tags": "division,divisor,dividend,quotient,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "dna-thin", + "content": "", + "style": "outline", + "tags": "double helix,gene,genetics", + "set_id": 1 + }, + { + "name": "dog-thin", + "content": "", + "style": "outline", + "tags": "pets,animals,puppy", + "set_id": 1 + }, + { + "name": "door-thin", + "content": "", + "style": "outline", + "tags": "entrance,exit", + "set_id": 1 + }, + { + "name": "door-open-thin", + "content": "", + "style": "outline", + "tags": "entrance,exit", + "set_id": 1 + }, + { + "name": "dot-thin", + "content": "", + "style": "outline", + "tags": "dots,circles,shapes,polygons", + "set_id": 1 + }, + { + "name": "dot-outline-thin", + "content": "", + "style": "outline", + "tags": "dots,circles,shapes,polygons", + "set_id": 1 + }, + { + "name": "dots-nine-thin", + "content": "", + "style": "outline", + "tags": "grid,circles,shapes,polygons,9", + "set_id": 1 + }, + { + "name": "dots-six-thin", + "content": "", + "style": "outline", + "tags": "*updated*,drag handle,knurling,circles,shapes,polygons,6", + "set_id": 1 + }, + { + "name": "dots-six-vertical-thin", + "content": "", + "style": "outline", + "tags": "*updated*,drag handle,knurling,circles,shapes,polygons,6", + "set_id": 1 + }, + { + "name": "dots-three-thin", + "content": "", + "style": "outline", + "tags": "menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more", + "set_id": 1 + }, + { + "name": "dots-three-circle-thin", + "content": "", + "style": "outline", + "tags": "menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more", + "set_id": 1 + }, + { + "name": "dots-three-circle-vertical-thin", + "content": "", + "style": "outline", + "tags": "menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more", + "set_id": 1 + }, + { + "name": "dots-three-outline-thin", + "content": "", + "style": "outline", + "tags": "menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more", + "set_id": 1 + }, + { + "name": "dots-three-outline-vertical-thin", + "content": "", + "style": "outline", + "tags": "menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more", + "set_id": 1 + }, + { + "name": "dots-three-vertical-thin", + "content": "", + "style": "outline", + "tags": "menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more", + "set_id": 1 + }, + { + "name": "download-thin", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,downloaded,downloading,hard drive,disk", + "set_id": 1 + }, + { + "name": "download-simple-thin", + "content": "", + "style": "outline", + "tags": "*updated*,saved,saving,archived,archiving,archival,downloaded,downloading,hard drive,disk,import", + "set_id": 1 + }, + { + "name": "dress-thin", + "content": "", + "style": "outline", + "tags": "clothes,clothing", + "set_id": 1 + }, + { + "name": "dresser-thin", + "content": "", + "style": "outline", + "tags": "*new*,furniture,bedroom,storage,drawers,wardrobe", + "set_id": 1 + }, + { + "name": "dribbble-logo-thin", + "content": "", + "style": "outline", + "tags": "logos,round,basketball,sports,design", + "set_id": 1 + }, + { + "name": "drone-thin", + "content": "", + "style": "outline", + "tags": "*new*,aerial,uav,photography,remote", + "set_id": 1 + }, + { + "name": "drop-thin", + "content": "", + "style": "outline", + "tags": "droplet,teardrop,raindrop,raining,meteorology,water,blur", + "set_id": 1 + }, + { + "name": "drop-half-thin", + "content": "", + "style": "outline", + "tags": "droplet,teardrop,raindrop,humidity,water,contrast,brightness", + "set_id": 1 + }, + { + "name": "drop-half-bottom-thin", + "content": "", + "style": "outline", + "tags": "droplet,teardrop,raindrop,humidity,water,contrast,brightness", + "set_id": 1 + }, + { + "name": "drop-simple-thin", + "content": "", + "style": "outline", + "tags": "*new*,droplet,teardrop,raindrop,raining,humidity,meteorology,water,blur", + "set_id": 1 + }, + { + "name": "drop-slash-thin", + "content": "", + "style": "outline", + "tags": "*new*,droplet,teardrop,raindrop,raining,humidity,meteorology,water,blur,disabled", + "set_id": 1 + }, + { + "name": "dropbox-logo-thin", + "content": "", + "style": "outline", + "tags": "cloud,storage,backup,logos", + "set_id": 1 + }, + { + "name": "ear-thin", + "content": "", + "style": "outline", + "tags": "hearing,audio,sound", + "set_id": 1 + }, + { + "name": "ear-slash-thin", + "content": "", + "style": "outline", + "tags": "hearing,audio,sound,mute,accessible", + "set_id": 1 + }, + { + "name": "egg-thin", + "content": "", + "style": "outline", + "tags": "chicken,food,meal,baby,hatch", + "set_id": 1 + }, + { + "name": "egg-crack-thin", + "content": "", + "style": "outline", + "tags": "chicken,food,meal,baby,hatch,break", + "set_id": 1 + }, + { + "name": "eject-thin", + "content": "", + "style": "outline", + "tags": "disconnect", + "set_id": 1 + }, + { + "name": "eject-simple-thin", + "content": "", + "style": "outline", + "tags": "disconnect", + "set_id": 1 + }, + { + "name": "elevator-thin", + "content": "", + "style": "outline", + "tags": "lift", + "set_id": 1 + }, + { + "name": "empty-thin", + "content": "", + "style": "outline", + "tags": "*new*,∅,empty set,member,mathematics,arithmetic,calculator,null", + "set_id": 1 + }, + { + "name": "engine-thin", + "content": "", + "style": "outline", + "tags": "*updated*,motor,repair,vehicles,automobile", + "set_id": 1 + }, + { + "name": "envelope-thin", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,message,post,letter", + "set_id": 1 + }, + { + "name": "envelope-open-thin", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,message,read,post,letter", + "set_id": 1 + }, + { + "name": "envelope-simple-thin", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,message,post,letter", + "set_id": 1 + }, + { + "name": "envelope-simple-open-thin", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,message,read,post,letter", + "set_id": 1 + }, + { + "name": "equalizer-thin", + "content": "", + "style": "outline", + "tags": "music,audio,meter,volume,spectrum,eq,deezer", + "set_id": 1 + }, + { + "name": "equals-thin", + "content": "", + "style": "outline", + "tags": "=,equality,equivalent,equivalence,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "eraser-thin", + "content": "", + "style": "outline", + "tags": "write,writing,editing,undo,deleted", + "set_id": 1 + }, + { + "name": "escalator-down-thin", + "content": "", + "style": "outline", + "tags": "stairs", + "set_id": 1 + }, + { + "name": "escalator-up-thin", + "content": "", + "style": "outline", + "tags": "stairs", + "set_id": 1 + }, + { + "name": "exam-thin", + "content": "", + "style": "outline", + "tags": "text,examination,paper,school,grade", + "set_id": 1 + }, + { + "name": "exclamation-mark-thin", + "content": "", + "style": "outline", + "tags": "*new*,!,alert,warning,caution,interjection,punctuation,symbol", + "set_id": 1 + }, + { + "name": "exclude-thin", + "content": "", + "style": "outline", + "tags": "venn-diagram,difference,intersection", + "set_id": 1 + }, + { + "name": "exclude-square-thin", + "content": "", + "style": "outline", + "tags": "venn-diagram,difference,intersection", + "set_id": 1 + }, + { + "name": "export-thin", + "content": "", + "style": "outline", + "tags": "share,send to,arrows", + "set_id": 1 + }, + { + "name": "eye-thin", + "content": "", + "style": "outline", + "tags": "visible,hidden,show,hide,visibility,view", + "set_id": 1 + }, + { + "name": "eye-closed-thin", + "content": "", + "style": "outline", + "tags": "visible,hidden,show,hide,visibility,view,invisible,private", + "set_id": 1 + }, + { + "name": "eye-slash-thin", + "content": "", + "style": "outline", + "tags": "visible,hidden,show,hide,visibility,view,invisible,eyelashes,disabled,private", + "set_id": 1 + }, + { + "name": "eyedropper-thin", + "content": "", + "style": "outline", + "tags": "colors,color picker,sample,arts", + "set_id": 1 + }, + { + "name": "eyedropper-sample-thin", + "content": "", + "style": "outline", + "tags": "colors,color picker,arts", + "set_id": 1 + }, + { + "name": "eyeglasses-thin", + "content": "", + "style": "outline", + "tags": "vision,spectacles", + "set_id": 1 + }, + { + "name": "eyes-thin", + "content": "", + "style": "outline", + "tags": "*new*,look,glance", + "set_id": 1 + }, + { + "name": "face-mask-thin", + "content": "", + "style": "outline", + "tags": "ppe,facemask,covid-19,coronavirus,flu,cold", + "set_id": 1 + }, + { + "name": "facebook-logo-thin", + "content": "", + "style": "outline", + "tags": "logos,social media", + "set_id": 1 + }, + { + "name": "factory-thin", + "content": "", + "style": "outline", + "tags": "industry,manufacture,buildings,places,locations", + "set_id": 1 + }, + { + "name": "faders-thin", + "content": "", + "style": "outline", + "tags": "music,audio,sliders,filters,equalizer,volume,settings,preferences", + "set_id": 1 + }, + { + "name": "faders-horizontal-thin", + "content": "", + "style": "outline", + "tags": "music,audio,sliders,filters,equalizer,volume,settings,preferences", + "set_id": 1 + }, + { + "name": "fallout-shelter-thin", + "content": "", + "style": "outline", + "tags": "*new*,radiation,radioactive,nuclear,bunker,contamination,quarantine,toxic,danger,caution", + "set_id": 1 + }, + { + "name": "fan-thin", + "content": "", + "style": "outline", + "tags": "desk fan,air conditioning", + "set_id": 1 + }, + { + "name": "farm-thin", + "content": "", + "style": "outline", + "tags": "*new*,farmer,field,farming,agriculture", + "set_id": 1 + }, + { + "name": "fast-forward-thin", + "content": "", + "style": "outline", + "tags": "audio,music,seek,scrub,scan,ahead,skip", + "set_id": 1 + }, + { + "name": "fast-forward-circle-thin", + "content": "", + "style": "outline", + "tags": "audio,music,seek,scrub,scan,ahead,skip", + "set_id": 1 + }, + { + "name": "feather-thin", + "content": "", + "style": "outline", + "tags": "bird", + "set_id": 1 + }, + { + "name": "fediverse-logo-thin", + "content": "", + "style": "outline", + "tags": "*new*,social media,decentralized", + "set_id": 1 + }, + { + "name": "figma-logo-thin", + "content": "", + "style": "outline", + "tags": "*updated*,logos,drawing,art,illustration,ui,interface,prototype,prototyping", + "set_id": 1 + }, + { + "name": "file-thin", + "content": "", + "style": "outline", + "tags": "documents,files,save,write,page", + "set_id": 1 + }, + { + "name": "file-archive-thin", + "content": "", + "style": "outline", + "tags": "documents,zip,compression", + "set_id": 1 + }, + { + "name": "file-arrow-down-thin", + "content": "", + "style": "outline", + "tags": "documents,files,save,write,download,directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "file-arrow-up-thin", + "content": "", + "style": "outline", + "tags": "documents,files,save,write,upload,directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "file-audio-thin", + "content": "", + "style": "outline", + "tags": "documents,music,sound", + "set_id": 1 + }, + { + "name": "file-c-thin", + "content": "", + "style": "outline", + "tags": "*new*,documents,code", + "set_id": 1 + }, + { + "name": "file-c-sharp-thin", + "content": "", + "style": "outline", + "tags": "*new*,documents,code,c#", + "set_id": 1 + }, + { + "name": "file-cloud-thin", + "content": "", + "style": "outline", + "tags": "documents,sync", + "set_id": 1 + }, + { + "name": "file-code-thin", + "content": "", + "style": "outline", + "tags": "documents", + "set_id": 1 + }, + { + "name": "file-cpp-thin", + "content": "", + "style": "outline", + "tags": "*new*,documents,code,c++", + "set_id": 1 + }, + { + "name": "file-css-thin", + "content": "", + "style": "outline", + "tags": "documents,code", + "set_id": 1 + }, + { + "name": "file-csv-thin", + "content": "", + "style": "outline", + "tags": "documents,data", + "set_id": 1 + }, + { + "name": "file-dashed-thin", + "content": "", + "style": "outline", + "tags": "documents,files,browse,draft,open,dotted", + "set_id": 1 + }, + { + "name": "file-doc-thin", + "content": "", + "style": "outline", + "tags": "documents,word,microsoft", + "set_id": 1 + }, + { + "name": "file-html-thin", + "content": "", + "style": "outline", + "tags": "*updated*,documents,code", + "set_id": 1 + }, + { + "name": "file-image-thin", + "content": "", + "style": "outline", + "tags": "documents,pictures,photograph", + "set_id": 1 + }, + { + "name": "file-ini-thin", + "content": "", + "style": "outline", + "tags": "*new*,documents", + "set_id": 1 + }, + { + "name": "file-jpg-thin", + "content": "", + "style": "outline", + "tags": "documents,pictures,photograph,jpeg", + "set_id": 1 + }, + { + "name": "file-js-thin", + "content": "", + "style": "outline", + "tags": "documents,code,javascript", + "set_id": 1 + }, + { + "name": "file-jsx-thin", + "content": "", + "style": "outline", + "tags": "documents,code,javascript", + "set_id": 1 + }, + { + "name": "file-lock-thin", + "content": "", + "style": "outline", + "tags": "documents,secure,locked,private", + "set_id": 1 + }, + { + "name": "file-magnifying-glass-thin", + "content": "", + "style": "outline", + "tags": "documents,files,search,find,locate,browse,missing", + "set_id": 1 + }, + { + "name": "file-md-thin", + "content": "", + "style": "outline", + "tags": "*new*,documents,notes,markdown", + "set_id": 1 + }, + { + "name": "file-minus-thin", + "content": "", + "style": "outline", + "tags": "documents,files,delete,write,remove,-", + "set_id": 1 + }, + { + "name": "file-pdf-thin", + "content": "", + "style": "outline", + "tags": "documents,files,acrobat", + "set_id": 1 + }, + { + "name": "file-plus-thin", + "content": "", + "style": "outline", + "tags": "documents,files,save,write,add,new,create,+", + "set_id": 1 + }, + { + "name": "file-png-thin", + "content": "", + "style": "outline", + "tags": "documents,pictures,photograph", + "set_id": 1 + }, + { + "name": "file-ppt-thin", + "content": "", + "style": "outline", + "tags": "documents,powerpoint,microsoft", + "set_id": 1 + }, + { + "name": "file-py-thin", + "content": "", + "style": "outline", + "tags": "*new*,documents,code,python", + "set_id": 1 + }, + { + "name": "file-rs-thin", + "content": "", + "style": "outline", + "tags": "documents,code,rust", + "set_id": 1 + }, + { + "name": "file-sql-thin", + "content": "", + "style": "outline", + "tags": "documents,database", + "set_id": 1 + }, + { + "name": "file-svg-thin", + "content": "", + "style": "outline", + "tags": "documents,images,vector", + "set_id": 1 + }, + { + "name": "file-text-thin", + "content": "", + "style": "outline", + "tags": "documents,files,save,write", + "set_id": 1 + }, + { + "name": "file-ts-thin", + "content": "", + "style": "outline", + "tags": "documents,code,typescript", + "set_id": 1 + }, + { + "name": "file-tsx-thin", + "content": "", + "style": "outline", + "tags": "documents,code,typescript", + "set_id": 1 + }, + { + "name": "file-txt-thin", + "content": "", + "style": "outline", + "tags": "*new*,documents", + "set_id": 1 + }, + { + "name": "file-video-thin", + "content": "", + "style": "outline", + "tags": "documents,movie", + "set_id": 1 + }, + { + "name": "file-vue-thin", + "content": "", + "style": "outline", + "tags": "documents,code", + "set_id": 1 + }, + { + "name": "file-x-thin", + "content": "", + "style": "outline", + "tags": "documents,files,cancelled,deleted,removed,errors", + "set_id": 1 + }, + { + "name": "file-xls-thin", + "content": "", + "style": "outline", + "tags": "documents,excel,microsoft", + "set_id": 1 + }, + { + "name": "file-zip-thin", + "content": "", + "style": "outline", + "tags": "documents,archive,compression", + "set_id": 1 + }, + { + "name": "files-thin", + "content": "", + "style": "outline", + "tags": "documents,open,library", + "set_id": 1 + }, + { + "name": "film-reel-thin", + "content": "", + "style": "outline", + "tags": "videography,films,movies,recording", + "set_id": 1 + }, + { + "name": "film-script-thin", + "content": "", + "style": "outline", + "tags": "screenplay,movie", + "set_id": 1 + }, + { + "name": "film-slate-thin", + "content": "", + "style": "outline", + "tags": "*updated*,clapper,movie", + "set_id": 1 + }, + { + "name": "film-strip-thin", + "content": "", + "style": "outline", + "tags": "camera,photography,darkroom,movie,analog", + "set_id": 1 + }, + { + "name": "fingerprint-thin", + "content": "", + "style": "outline", + "tags": "security,secured,authentication,authenticated,login,locked,biometrics,encrypted,encryption", + "set_id": 1 + }, + { + "name": "fingerprint-simple-thin", + "content": "", + "style": "outline", + "tags": "security,secured,authentication,authenticated,login,locked,biometrics,encrypted,encryption", + "set_id": 1 + }, + { + "name": "finn-the-human-thin", + "content": "", + "style": "outline", + "tags": "adventure time,cartoons,television,tv,character", + "set_id": 1 + }, + { + "name": "fire-thin", + "content": "", + "style": "outline", + "tags": "flame,burning,match,lighter", + "set_id": 1 + }, + { + "name": "fire-extinguisher-thin", + "content": "", + "style": "outline", + "tags": "safety,prevention,emergency,hazard,danger,caution", + "set_id": 1 + }, + { + "name": "fire-simple-thin", + "content": "", + "style": "outline", + "tags": "flame,burning,match,lighter", + "set_id": 1 + }, + { + "name": "fire-truck-thin", + "content": "", + "style": "outline", + "tags": "*new*,first-aid,emt,medical,medicine,injury,safety,emergency,firefighter", + "set_id": 1 + }, + { + "name": "first-aid-thin", + "content": "", + "style": "outline", + "tags": "hospital,cross,medical,medicine,injury,safety,emergency,doctor", + "set_id": 1 + }, + { + "name": "first-aid-kit-thin", + "content": "", + "style": "outline", + "tags": "bandages,medical,medicine,injury,safety,emergency,doctor", + "set_id": 1 + }, + { + "name": "fish-thin", + "content": "", + "style": "outline", + "tags": "animals,pets,food,seafood,restaurants,dining", + "set_id": 1 + }, + { + "name": "fish-simple-thin", + "content": "", + "style": "outline", + "tags": "animals,pets,food,seafood,restaurants,dining", + "set_id": 1 + }, + { + "name": "flag-thin", + "content": "", + "style": "outline", + "tags": "country,countries,finished,completed,flags", + "set_id": 1 + }, + { + "name": "flag-banner-thin", + "content": "", + "style": "outline", + "tags": "ribbon,country,countries,finished,completed,flags,swallowtail", + "set_id": 1 + }, + { + "name": "flag-banner-fold-thin", + "content": "", + "style": "outline", + "tags": "*new*,ribbon,country,countries,finished,completed,flags,swallowtail", + "set_id": 1 + }, + { + "name": "flag-checkered-thin", + "content": "", + "style": "outline", + "tags": "flags,race,racing,finish line", + "set_id": 1 + }, + { + "name": "flag-pennant-thin", + "content": "", + "style": "outline", + "tags": "flags,race,sports,team", + "set_id": 1 + }, + { + "name": "flame-thin", + "content": "", + "style": "outline", + "tags": "fire,burning,match,lighter", + "set_id": 1 + }, + { + "name": "flashlight-thin", + "content": "", + "style": "outline", + "tags": "torch,find,search,locate", + "set_id": 1 + }, + { + "name": "flask-thin", + "content": "", + "style": "outline", + "tags": "beaker,science,chemistry,experiment,erlenmeyer", + "set_id": 1 + }, + { + "name": "flip-horizontal-thin", + "content": "", + "style": "outline", + "tags": "*new*,mirror,rotate,invert", + "set_id": 1 + }, + { + "name": "flip-vertical-thin", + "content": "", + "style": "outline", + "tags": "*new*,mirror,rotate,invert", + "set_id": 1 + }, + { + "name": "floppy-disk-thin", + "content": "", + "style": "outline", + "tags": "diskette,directory,directories,folders,documents,files,save,write", + "set_id": 1 + }, + { + "name": "floppy-disk-back-thin", + "content": "", + "style": "outline", + "tags": "*updated*,diskette,directory,directories,folders,documents,files,save,write", + "set_id": 1 + }, + { + "name": "flow-arrow-thin", + "content": "", + "style": "outline", + "tags": "*updated*,flowchart,arrowhead", + "set_id": 1 + }, + { + "name": "flower-thin", + "content": "", + "style": "outline", + "tags": "plants,green,environmental", + "set_id": 1 + }, + { + "name": "flower-lotus-thin", + "content": "", + "style": "outline", + "tags": "plants,green,environmental,spirituality", + "set_id": 1 + }, + { + "name": "flower-tulip-thin", + "content": "", + "style": "outline", + "tags": "plants,green,environmental", + "set_id": 1 + }, + { + "name": "flying-saucer-thin", + "content": "", + "style": "outline", + "tags": "ufo,space,aliens,extra terrestrial,sci-fi", + "set_id": 1 + }, + { + "name": "folder-thin", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders", + "set_id": 1 + }, + { + "name": "folder-dashed-thin", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,missing,temporary,dotted", + "set_id": 1 + }, + { + "name": "folder-lock-thin", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,private,secure", + "set_id": 1 + }, + { + "name": "folder-minus-thin", + "content": "", + "style": "outline", + "tags": "directory,directories,files,delete,write,remove,-", + "set_id": 1 + }, + { + "name": "folder-open-thin", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,load", + "set_id": 1 + }, + { + "name": "folder-plus-thin", + "content": "", + "style": "outline", + "tags": "directory,directories,files,save,write,add,new,create,+", + "set_id": 1 + }, + { + "name": "folder-simple-thin", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders", + "set_id": 1 + }, + { + "name": "folder-simple-dashed-thin", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,missing,temporary,dotted", + "set_id": 1 + }, + { + "name": "folder-simple-lock-thin", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,private,secure", + "set_id": 1 + }, + { + "name": "folder-simple-minus-thin", + "content": "", + "style": "outline", + "tags": "directory,directories,files,delete,write,remove,-", + "set_id": 1 + }, + { + "name": "folder-simple-plus-thin", + "content": "", + "style": "outline", + "tags": "directory,directories,files,save,write,add,new,create,+", + "set_id": 1 + }, + { + "name": "folder-simple-star-thin", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,favorite,starred", + "set_id": 1 + }, + { + "name": "folder-simple-user-thin", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,personal", + "set_id": 1 + }, + { + "name": "folder-star-thin", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,favorite,starred", + "set_id": 1 + }, + { + "name": "folder-user-thin", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,personal", + "set_id": 1 + }, + { + "name": "folders-thin", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,copy,copied,duplicated", + "set_id": 1 + }, + { + "name": "football-thin", + "content": "", + "style": "outline", + "tags": "sports,american football,nfl", + "set_id": 1 + }, + { + "name": "football-helmet-thin", + "content": "", + "style": "outline", + "tags": "*new*,sports,american football,nfl", + "set_id": 1 + }, + { + "name": "footprints-thin", + "content": "", + "style": "outline", + "tags": "path,trail,walk,route,hike,hiking", + "set_id": 1 + }, + { + "name": "fork-knife-thin", + "content": "", + "style": "outline", + "tags": "food,meal,eating,restaurants,dining,utensils", + "set_id": 1 + }, + { + "name": "four-k-thin", + "content": "", + "style": "outline", + "tags": "*new*,uhd,resolution,video", + "set_id": 1 + }, + { + "name": "frame-corners-thin", + "content": "", + "style": "outline", + "tags": "expand,fullscreen,maximized,resize,windowed,capture", + "set_id": 1 + }, + { + "name": "framer-logo-thin", + "content": "", + "style": "outline", + "tags": "logos,interface,ui,motion,prototype,prototyping", + "set_id": 1 + }, + { + "name": "function-thin", + "content": "", + "style": "outline", + "tags": "mathematics,arithmetic,f-stop", + "set_id": 1 + }, + { + "name": "funnel-thin", + "content": "", + "style": "outline", + "tags": "filters,refine,sorting", + "set_id": 1 + }, + { + "name": "funnel-simple-thin", + "content": "", + "style": "outline", + "tags": "filters,refine,sorting", + "set_id": 1 + }, + { + "name": "funnel-simple-x-thin", + "content": "", + "style": "outline", + "tags": "*new*,filters,refine,sorting", + "set_id": 1 + }, + { + "name": "funnel-x-thin", + "content": "", + "style": "outline", + "tags": "*new*,filters,refine,sorting", + "set_id": 1 + }, + { + "name": "game-controller-thin", + "content": "", + "style": "outline", + "tags": "gaming,video games,nintendo switch,sony playstation,microsoft xbox", + "set_id": 1 + }, + { + "name": "garage-thin", + "content": "", + "style": "outline", + "tags": "vehicles,automobile,buildings,transportation", + "set_id": 1 + }, + { + "name": "gas-can-thin", + "content": "", + "style": "outline", + "tags": "jerrycan,petrol,fuel,gasoline", + "set_id": 1 + }, + { + "name": "gas-pump-thin", + "content": "", + "style": "outline", + "tags": "gas station,petrol,fuel,gasoline", + "set_id": 1 + }, + { + "name": "gauge-thin", + "content": "", + "style": "outline", + "tags": "dashboard,meter,speed,speedometer,odometer,performance", + "set_id": 1 + }, + { + "name": "gavel-thin", + "content": "", + "style": "outline", + "tags": "judge,justice,legal,law,court,hammer,government", + "set_id": 1 + }, + { + "name": "gear-thin", + "content": "", + "style": "outline", + "tags": "8,settings,setup,preferences,cogs,gears,machinery,mechanical", + "set_id": 1 + }, + { + "name": "gear-fine-thin", + "content": "", + "style": "outline", + "tags": "setup,preferences,cogs,gears,machinery,mechanical", + "set_id": 1 + }, + { + "name": "gear-six-thin", + "content": "", + "style": "outline", + "tags": "6,settings,setup,preferences,cogs,gears,machinery,mechanical", + "set_id": 1 + }, + { + "name": "gender-female-thin", + "content": "", + "style": "outline", + "tags": "woman,feminine,venus", + "set_id": 1 + }, + { + "name": "gender-intersex-thin", + "content": "", + "style": "outline", + "tags": "transgender,non-binary", + "set_id": 1 + }, + { + "name": "gender-male-thin", + "content": "", + "style": "outline", + "tags": "man,masculine,mars", + "set_id": 1 + }, + { + "name": "gender-neuter-thin", + "content": "", + "style": "outline", + "tags": "agender,non-binary,asexual", + "set_id": 1 + }, + { + "name": "gender-nonbinary-thin", + "content": "", + "style": "outline", + "tags": "intersex,non-binary", + "set_id": 1 + }, + { + "name": "gender-transgender-thin", + "content": "", + "style": "outline", + "tags": "intersex,non-binary", + "set_id": 1 + }, + { + "name": "ghost-thin", + "content": "", + "style": "outline", + "tags": "pac-man,spirit,scary,halloween", + "set_id": 1 + }, + { + "name": "gif-thin", + "content": "", + "style": "outline", + "tags": "gifs,.gif,giphy", + "set_id": 1 + }, + { + "name": "gift-thin", + "content": "", + "style": "outline", + "tags": "presents,holiday,birthday", + "set_id": 1 + }, + { + "name": "git-branch-thin", + "content": "", + "style": "outline", + "tags": "*updated*,github,vcs,source control,version control,versioning,branches", + "set_id": 1 + }, + { + "name": "git-commit-thin", + "content": "", + "style": "outline", + "tags": "github,vcs,source control,version control,versioning,commits", + "set_id": 1 + }, + { + "name": "git-diff-thin", + "content": "", + "style": "outline", + "tags": "*updated*,github,vcs,source control,version control,versioning,difference,compare", + "set_id": 1 + }, + { + "name": "git-fork-thin", + "content": "", + "style": "outline", + "tags": "*updated*,github,vcs,source control,version control,versioning,split", + "set_id": 1 + }, + { + "name": "git-merge-thin", + "content": "", + "style": "outline", + "tags": "*updated*,github,vcs,source control,version control,versioning,split", + "set_id": 1 + }, + { + "name": "git-pull-request-thin", + "content": "", + "style": "outline", + "tags": "*updated*,github,vcs,source control,version control,versioning,merge request", + "set_id": 1 + }, + { + "name": "github-logo-thin", + "content": "", + "style": "outline", + "tags": "octocat,vcs,source control,version control,versioning,branches", + "set_id": 1 + }, + { + "name": "gitlab-logo-thin", + "content": "", + "style": "outline", + "tags": "vcs,source control,version control,versioning,branches", + "set_id": 1 + }, + { + "name": "gitlab-logo-simple-thin", + "content": "", + "style": "outline", + "tags": "vcs,source control,version control,versioning,branches", + "set_id": 1 + }, + { + "name": "globe-thin", + "content": "", + "style": "outline", + "tags": "world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography,internet", + "set_id": 1 + }, + { + "name": "globe-hemisphere-east-thin", + "content": "", + "style": "outline", + "tags": "world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography,europe,africa,asia,australia", + "set_id": 1 + }, + { + "name": "globe-hemisphere-west-thin", + "content": "", + "style": "outline", + "tags": "world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography,north america,south america", + "set_id": 1 + }, + { + "name": "globe-simple-thin", + "content": "", + "style": "outline", + "tags": "world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography", + "set_id": 1 + }, + { + "name": "globe-simple-x-thin", + "content": "", + "style": "outline", + "tags": "*new*,world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography,internet", + "set_id": 1 + }, + { + "name": "globe-stand-thin", + "content": "", + "style": "outline", + "tags": "world,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography", + "set_id": 1 + }, + { + "name": "globe-x-thin", + "content": "", + "style": "outline", + "tags": "*new*,world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography,internet", + "set_id": 1 + }, + { + "name": "goggles-thin", + "content": "", + "style": "outline", + "tags": "swim,swimming,sports,exercise,olympics,aquatics", + "set_id": 1 + }, + { + "name": "golf-thin", + "content": "", + "style": "outline", + "tags": "*new*,sports,pga,tee,ball", + "set_id": 1 + }, + { + "name": "goodreads-logo-thin", + "content": "", + "style": "outline", + "tags": "*updated*,reading,books,social media,logos", + "set_id": 1 + }, + { + "name": "google-cardboard-logo-thin", + "content": "", + "style": "outline", + "tags": "virtual reality,vr,logos", + "set_id": 1 + }, + { + "name": "google-chrome-logo-thin", + "content": "", + "style": "outline", + "tags": "web browsers,internet", + "set_id": 1 + }, + { + "name": "google-drive-logo-thin", + "content": "", + "style": "outline", + "tags": "cloud,storage,backup,logos", + "set_id": 1 + }, + { + "name": "google-logo-thin", + "content": "", + "style": "outline", + "tags": "logos,search engine,phone,mobile,android", + "set_id": 1 + }, + { + "name": "google-photos-logo-thin", + "content": "", + "style": "outline", + "tags": "album,pictures,photography", + "set_id": 1 + }, + { + "name": "google-play-logo-thin", + "content": "", + "style": "outline", + "tags": "logos,games,apps,applications,play store,app store,phone,mobile,android", + "set_id": 1 + }, + { + "name": "google-podcasts-logo-thin", + "content": "", + "style": "outline", + "tags": "audio", + "set_id": 1 + }, + { + "name": "gps-thin", + "content": "", + "style": "outline", + "tags": "*new*,geolocation,location,navigation", + "set_id": 1 + }, + { + "name": "gps-fix-thin", + "content": "", + "style": "outline", + "tags": "*new*,geolocation,location,navigation", + "set_id": 1 + }, + { + "name": "gps-slash-thin", + "content": "", + "style": "outline", + "tags": "*new*,geolocation,location,navigation,disabled", + "set_id": 1 + }, + { + "name": "gradient-thin", + "content": "", + "style": "outline", + "tags": "fade,ombre,opacity", + "set_id": 1 + }, + { + "name": "graduation-cap-thin", + "content": "", + "style": "outline", + "tags": "classroom,teacher,education,school,college,university,degree,graduate,hat", + "set_id": 1 + }, + { + "name": "grains-thin", + "content": "", + "style": "outline", + "tags": "wheat,gluten,farm,farming,agriculture", + "set_id": 1 + }, + { + "name": "grains-slash-thin", + "content": "", + "style": "outline", + "tags": "gluten-free,wheat,gluten,farm,farming,agriculture", + "set_id": 1 + }, + { + "name": "graph-thin", + "content": "", + "style": "outline", + "tags": "nodes,tree", + "set_id": 1 + }, + { + "name": "graphics-card-thin", + "content": "", + "style": "outline", + "tags": "*new*,graphics card,microchip,computer,circuit", + "set_id": 1 + }, + { + "name": "greater-than-thin", + "content": "", + "style": "outline", + "tags": "*new*,>,greater than,gt,comparison,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "greater-than-or-equal-thin", + "content": "", + "style": "outline", + "tags": "*new*,≥,greater than or equal,gte,comparison,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "grid-four-thin", + "content": "", + "style": "outline", + "tags": "4,apps,applications,squares,tiles,cells,tables,tabular,spreadsheets,excel", + "set_id": 1 + }, + { + "name": "grid-nine-thin", + "content": "", + "style": "outline", + "tags": "9,apps,applications,squares,tiles,cells,tables,tabular,spreadsheets,excel", + "set_id": 1 + }, + { + "name": "guitar-thin", + "content": "", + "style": "outline", + "tags": "music,instrument", + "set_id": 1 + }, + { + "name": "hair-dryer-thin", + "content": "", + "style": "outline", + "tags": "*new*,blow dryer,beauty,grooming,salon", + "set_id": 1 + }, + { + "name": "hamburger-thin", + "content": "", + "style": "outline", + "tags": "fast food,party,places,locations,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "hammer-thin", + "content": "", + "style": "outline", + "tags": "tools,carpentry,construction", + "set_id": 1 + }, + { + "name": "hand-thin", + "content": "", + "style": "outline", + "tags": "pointers,cursors,emoji,backhand", + "set_id": 1 + }, + { + "name": "hand-arrow-down-thin", + "content": "", + "style": "outline", + "tags": "*new*,take,receive,remove,withdraw,emoji", + "set_id": 1 + }, + { + "name": "hand-arrow-up-thin", + "content": "", + "style": "outline", + "tags": "*new*,give,insert,deposit,donation,emoji", + "set_id": 1 + }, + { + "name": "hand-coins-thin", + "content": "", + "style": "outline", + "tags": "donation,payment,money,paying,purchase", + "set_id": 1 + }, + { + "name": "hand-deposit-thin", + "content": "", + "style": "outline", + "tags": "*new*,give,insert,donation,atm,emoji", + "set_id": 1 + }, + { + "name": "hand-eye-thin", + "content": "", + "style": "outline", + "tags": "*updated*,emoji,hamsa,evil eye", + "set_id": 1 + }, + { + "name": "hand-fist-thin", + "content": "", + "style": "outline", + "tags": "emoji,power,protest,blm", + "set_id": 1 + }, + { + "name": "hand-grabbing-thin", + "content": "", + "style": "outline", + "tags": "pointers,cursors,emoji,drag,hold", + "set_id": 1 + }, + { + "name": "hand-heart-thin", + "content": "", + "style": "outline", + "tags": "donation,care,emoji", + "set_id": 1 + }, + { + "name": "hand-palm-thin", + "content": "", + "style": "outline", + "tags": "pointers,cursors,emoji,palm,stop,wait,hamsa,5", + "set_id": 1 + }, + { + "name": "hand-peace-thin", + "content": "", + "style": "outline", + "tags": "*new*,emoji,victory", + "set_id": 1 + }, + { + "name": "hand-pointing-thin", + "content": "", + "style": "outline", + "tags": "pointers,cursors,emoji,fingers,clicks,mouse", + "set_id": 1 + }, + { + "name": "hand-soap-thin", + "content": "", + "style": "outline", + "tags": "dispenser,pump,sanitizer,disinfectant,lotion,bottle", + "set_id": 1 + }, + { + "name": "hand-swipe-left-thin", + "content": "", + "style": "outline", + "tags": "pointers,cursors,gesture", + "set_id": 1 + }, + { + "name": "hand-swipe-right-thin", + "content": "", + "style": "outline", + "tags": "pointers,cursors,gesture", + "set_id": 1 + }, + { + "name": "hand-tap-thin", + "content": "", + "style": "outline", + "tags": "pointers,cursors,gesture", + "set_id": 1 + }, + { + "name": "hand-waving-thin", + "content": "", + "style": "outline", + "tags": "emoji,palm,wave,hello,goodbye", + "set_id": 1 + }, + { + "name": "hand-withdraw-thin", + "content": "", + "style": "outline", + "tags": "*new*,take,remove,withdrawal,atm,emoji", + "set_id": 1 + }, + { + "name": "handbag-thin", + "content": "", + "style": "outline", + "tags": "suitcases,valises,baggage,purses", + "set_id": 1 + }, + { + "name": "handbag-simple-thin", + "content": "", + "style": "outline", + "tags": "suitcases,valises,baggage,purses", + "set_id": 1 + }, + { + "name": "hands-clapping-thin", + "content": "", + "style": "outline", + "tags": "emoji,clap,applause", + "set_id": 1 + }, + { + "name": "hands-praying-thin", + "content": "", + "style": "outline", + "tags": "emoji,religion,worship,prayer,thanks,thank you", + "set_id": 1 + }, + { + "name": "handshake-thin", + "content": "", + "style": "outline", + "tags": "emoji,deal,agreement", + "set_id": 1 + }, + { + "name": "hard-drive-thin", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,hard disk,storage,hdd,servers,databases", + "set_id": 1 + }, + { + "name": "hard-drives-thin", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,hard disk,storage,hdd,servers,databases", + "set_id": 1 + }, + { + "name": "hard-hat-thin", + "content": "", + "style": "outline", + "tags": "*new*,safety,construction,industry,helmet,ppe", + "set_id": 1 + }, + { + "name": "hash-thin", + "content": "", + "style": "outline", + "tags": "hashtag,octothorpe,pound sign,number sign,tic-tac-toe,symbol", + "set_id": 1 + }, + { + "name": "hash-straight-thin", + "content": "", + "style": "outline", + "tags": "hashtag,octothorpe,pound sign,number sign,tic-tac-toe,symbol", + "set_id": 1 + }, + { + "name": "head-circuit-thin", + "content": "", + "style": "outline", + "tags": "*new*,automaton,artificial intelligence,ai", + "set_id": 1 + }, + { + "name": "headlights-thin", + "content": "", + "style": "outline", + "tags": "brights,high beams", + "set_id": 1 + }, + { + "name": "headphones-thin", + "content": "", + "style": "outline", + "tags": "music,audio,listening", + "set_id": 1 + }, + { + "name": "headset-thin", + "content": "", + "style": "outline", + "tags": "music,audio,listening,gaming,voice chat,microphone,headphones,support,customer-service,call-center", + "set_id": 1 + }, + { + "name": "heart-thin", + "content": "", + "style": "outline", + "tags": "wellness,love,healthy,like,favorites,favorited,suits,cards,gambling,casino,gaming,emoji", + "set_id": 1 + }, + { + "name": "heart-break-thin", + "content": "", + "style": "outline", + "tags": "love,hate,crack,split,divorce,emoji", + "set_id": 1 + }, + { + "name": "heart-half-thin", + "content": "", + "style": "outline", + "tags": "wellness,love,healthy,like,favorites,favorited", + "set_id": 1 + }, + { + "name": "heart-straight-thin", + "content": "", + "style": "outline", + "tags": "wellness,love,healthy,like,favorites,favorited,suits,cards,gambling,casino,gaming,emoji", + "set_id": 1 + }, + { + "name": "heart-straight-break-thin", + "content": "", + "style": "outline", + "tags": "love,hate,crack,split,divorce,emoji", + "set_id": 1 + }, + { + "name": "heartbeat-thin", + "content": "", + "style": "outline", + "tags": "wellness,healthy,ecg,ekg,vitals,monitor", + "set_id": 1 + }, + { + "name": "hexagon-thin", + "content": "", + "style": "outline", + "tags": "6,shapes,polygons", + "set_id": 1 + }, + { + "name": "high-definition-thin", + "content": "", + "style": "outline", + "tags": "*new*,hd,resolution,video", + "set_id": 1 + }, + { + "name": "high-heel-thin", + "content": "", + "style": "outline", + "tags": "*updated*,pumps,clothes,clothing,shoes", + "set_id": 1 + }, + { + "name": "highlighter-thin", + "content": "", + "style": "outline", + "tags": "*new*,marker,write,writing,editing", + "set_id": 1 + }, + { + "name": "highlighter-circle-thin", + "content": "", + "style": "outline", + "tags": "write,writing,editing,drawing", + "set_id": 1 + }, + { + "name": "hockey-thin", + "content": "", + "style": "outline", + "tags": "*new*,sports,nhl,stick,puck", + "set_id": 1 + }, + { + "name": "hoodie-thin", + "content": "", + "style": "outline", + "tags": "clothes,clothing,sweatshirt", + "set_id": 1 + }, + { + "name": "horse-thin", + "content": "", + "style": "outline", + "tags": "animals,equestrian,chess,knight,sports", + "set_id": 1 + }, + { + "name": "hospital-thin", + "content": "", + "style": "outline", + "tags": "*new*,places,locations,medical,medicine,emergency,doctor,buildings", + "set_id": 1 + }, + { + "name": "hourglass-thin", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-high-thin", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-low-thin", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-medium-thin", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-simple-thin", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-simple-high-thin", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-simple-low-thin", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-simple-medium-thin", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "house-thin", + "content": "", + "style": "outline", + "tags": "homes,buildings,places,locations", + "set_id": 1 + }, + { + "name": "house-line-thin", + "content": "", + "style": "outline", + "tags": "*updated*,homes,buildings,places,locations", + "set_id": 1 + }, + { + "name": "house-simple-thin", + "content": "", + "style": "outline", + "tags": "homes,buildings,places,locations", + "set_id": 1 + }, + { + "name": "hurricane-thin", + "content": "", + "style": "outline", + "tags": "*new*,meteorology,cyclone,storm,disaster,wind", + "set_id": 1 + }, + { + "name": "ice-cream-thin", + "content": "", + "style": "outline", + "tags": "food,dessert,cone", + "set_id": 1 + }, + { + "name": "identification-badge-thin", + "content": "", + "style": "outline", + "tags": "license,credentials,nametag,user,verification", + "set_id": 1 + }, + { + "name": "identification-card-thin", + "content": "", + "style": "outline", + "tags": "license,badge,credentials,nametag,user,verification", + "set_id": 1 + }, + { + "name": "image-thin", + "content": "", + "style": "outline", + "tags": "*updated*,pictures,photographs,photography,wallpapers,gallery,landscape", + "set_id": 1 + }, + { + "name": "image-broken-thin", + "content": "", + "style": "outline", + "tags": "*new*,pictures,photographs,photography,wallpapers,gallery,landscape,missing,error,404", + "set_id": 1 + }, + { + "name": "image-square-thin", + "content": "", + "style": "outline", + "tags": "pictures,photographs,photography,wallpapers,gallery,landscape", + "set_id": 1 + }, + { + "name": "images-thin", + "content": "", + "style": "outline", + "tags": "*updated*,pictures,photographs,photography,wallpapers,gallery,landscape,album", + "set_id": 1 + }, + { + "name": "images-square-thin", + "content": "", + "style": "outline", + "tags": "pictures,photographs,photography,wallpapers,gallery,landscape,album", + "set_id": 1 + }, + { + "name": "infinity-thin", + "content": "", + "style": "outline", + "tags": "infinite,lemniscate,figure-eight,mathematics,arithmetic,calculator,∞", + "set_id": 1 + }, + { + "name": "info-thin", + "content": "", + "style": "outline", + "tags": "information,help,support", + "set_id": 1 + }, + { + "name": "instagram-logo-thin", + "content": "", + "style": "outline", + "tags": "logos,social media,photography,camera", + "set_id": 1 + }, + { + "name": "intersect-thin", + "content": "", + "style": "outline", + "tags": "round,join,union,merge,combine,intersecting,intersection", + "set_id": 1 + }, + { + "name": "intersect-square-thin", + "content": "", + "style": "outline", + "tags": "venn-diagram,join,intersection", + "set_id": 1 + }, + { + "name": "intersect-three-thin", + "content": "", + "style": "outline", + "tags": "venn-diagram,join,intersection,gender,pronouns", + "set_id": 1 + }, + { + "name": "intersection-thin", + "content": "", + "style": "outline", + "tags": "*new*,∩,intersection,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "invoice-thin", + "content": "", + "style": "outline", + "tags": "*new*,receipt,expense,bill", + "set_id": 1 + }, + { + "name": "island-thin", + "content": "", + "style": "outline", + "tags": "*new*,geography,beach,ocean,tropical,palm,vacation,trip,locations,places", + "set_id": 1 + }, + { + "name": "jar-thin", + "content": "", + "style": "outline", + "tags": "*new*,mason jar,kitchen,pantry,canning,preserves,food,condiments", + "set_id": 1 + }, + { + "name": "jar-label-thin", + "content": "", + "style": "outline", + "tags": "*new*,mason jar,kitchen,pantry,canning,preserves,food,condiments", + "set_id": 1 + }, + { + "name": "jeep-thin", + "content": "", + "style": "outline", + "tags": "*updated*,vehicles,automobile,suv,cars,trucks,wrangler,off-road,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "joystick-thin", + "content": "", + "style": "outline", + "tags": "*new*,gaming,game controller,video games,arcade game,atari", + "set_id": 1 + }, + { + "name": "kanban-thin", + "content": "", + "style": "outline", + "tags": "scheduling,tasks,project management,process,lean,agile", + "set_id": 1 + }, + { + "name": "key-thin", + "content": "", + "style": "outline", + "tags": "padlock,security,secured,authentication,authenticated,login,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "key-return-thin", + "content": "", + "style": "outline", + "tags": "keyboard,enter", + "set_id": 1 + }, + { + "name": "keyboard-thin", + "content": "", + "style": "outline", + "tags": "typing,type,keys,input", + "set_id": 1 + }, + { + "name": "keyhole-thin", + "content": "", + "style": "outline", + "tags": "lock,security,secured,authentication,authenticated,login,locked,encrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "knife-thin", + "content": "", + "style": "outline", + "tags": "tools,food,meal,eating,restaurants,dining,utensils", + "set_id": 1 + }, + { + "name": "ladder-thin", + "content": "", + "style": "outline", + "tags": "stairs,steps,climbing", + "set_id": 1 + }, + { + "name": "ladder-simple-thin", + "content": "", + "style": "outline", + "tags": "stairs,steps,climbing", + "set_id": 1 + }, + { + "name": "lamp-thin", + "content": "", + "style": "outline", + "tags": "light,furniture,appliances", + "set_id": 1 + }, + { + "name": "lamp-pendant-thin", + "content": "", + "style": "outline", + "tags": "*new*,light,furniture,appliances", + "set_id": 1 + }, + { + "name": "laptop-thin", + "content": "", + "style": "outline", + "tags": "computer,notebook,pc,macbook", + "set_id": 1 + }, + { + "name": "lasso-thin", + "content": "", + "style": "outline", + "tags": "*new*,select,selection,loop,rope,cowboy", + "set_id": 1 + }, + { + "name": "lastfm-logo-thin", + "content": "", + "style": "outline", + "tags": "*new*,scrobble,music,social media", + "set_id": 1 + }, + { + "name": "layout-thin", + "content": "", + "style": "outline", + "tags": "wireframe,sidebar,ui,interface", + "set_id": 1 + }, + { + "name": "leaf-thin", + "content": "", + "style": "outline", + "tags": "plants,trees,branches,leaves,nodes,green,environmental", + "set_id": 1 + }, + { + "name": "lectern-thin", + "content": "", + "style": "outline", + "tags": "*new*,lecture,podium,pulpit,stand,speech,presentation,keynote", + "set_id": 1 + }, + { + "name": "lego-thin", + "content": "", + "style": "outline", + "tags": "*new*,toys,blocks,bricks", + "set_id": 1 + }, + { + "name": "lego-smiley-thin", + "content": "", + "style": "outline", + "tags": "*new*,face,emoji,toys,blocks,bricks", + "set_id": 1 + }, + { + "name": "less-than-thin", + "content": "", + "style": "outline", + "tags": "*new*,<,less than,lt,comparison,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "less-than-or-equal-thin", + "content": "", + "style": "outline", + "tags": "*new*,≤,less than or equal,lte,comparison,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "letter-circle-h-thin", + "content": "", + "style": "outline", + "tags": "*new*,hospital,letter,glyph,character", + "set_id": 1 + }, + { + "name": "letter-circle-p-thin", + "content": "", + "style": "outline", + "tags": "*new*,parking lot,valet,vehicles,letter,glyph,character", + "set_id": 1 + }, + { + "name": "letter-circle-v-thin", + "content": "", + "style": "outline", + "tags": "*new*,vegan,letter,glyph,character", + "set_id": 1 + }, + { + "name": "lifebuoy-thin", + "content": "", + "style": "outline", + "tags": "lifebelt,lifesaver,safety,help,support,nautical,boats,ships", + "set_id": 1 + }, + { + "name": "lightbulb-thin", + "content": "", + "style": "outline", + "tags": "flashlight,bulbs,lighting,led,energy,idea", + "set_id": 1 + }, + { + "name": "lightbulb-filament-thin", + "content": "", + "style": "outline", + "tags": "flashlight,bulbs,lighting,led,energy,idea", + "set_id": 1 + }, + { + "name": "lighthouse-thin", + "content": "", + "style": "outline", + "tags": "buildings,nautical,navigation,boats,ships,safety", + "set_id": 1 + }, + { + "name": "lightning-thin", + "content": "", + "style": "outline", + "tags": "meteorology,stormy,thunderstorm,thunderbolt,charged,charger,charging,power,electricity,flash", + "set_id": 1 + }, + { + "name": "lightning-a-thin", + "content": "", + "style": "outline", + "tags": "flash,auto", + "set_id": 1 + }, + { + "name": "lightning-slash-thin", + "content": "", + "style": "outline", + "tags": "thunderbolt,charged,charger,charging,power,electricity,disabled,flash", + "set_id": 1 + }, + { + "name": "line-segment-thin", + "content": "", + "style": "outline", + "tags": "shapes,drawing,path,pen,vector", + "set_id": 1 + }, + { + "name": "line-segments-thin", + "content": "", + "style": "outline", + "tags": "shapes,drawing,path,pen,vector", + "set_id": 1 + }, + { + "name": "line-vertical-thin", + "content": "", + "style": "outline", + "tags": "*new*,bar,pipe,|,divider. symbol", + "set_id": 1 + }, + { + "name": "link-thin", + "content": "", + "style": "outline", + "tags": "*updated*,anchor,hyperlink,hypertext,chains,chained", + "set_id": 1 + }, + { + "name": "link-break-thin", + "content": "", + "style": "outline", + "tags": "anchor,hyperlink,hypertext,chains,chained,errors,broken", + "set_id": 1 + }, + { + "name": "link-simple-thin", + "content": "", + "style": "outline", + "tags": "anchor,hyperlink,hypertext,chains,chained", + "set_id": 1 + }, + { + "name": "link-simple-break-thin", + "content": "", + "style": "outline", + "tags": "anchor,hyperlink,hypertext,chains,chained,errors,broken", + "set_id": 1 + }, + { + "name": "link-simple-horizontal-thin", + "content": "", + "style": "outline", + "tags": "anchor,hyperlink,hypertext,chains,chained", + "set_id": 1 + }, + { + "name": "link-simple-horizontal-break-thin", + "content": "", + "style": "outline", + "tags": "anchor,hyperlink,hypertext,chains,chained,errors,broken", + "set_id": 1 + }, + { + "name": "linkedin-logo-thin", + "content": "", + "style": "outline", + "tags": "logos,jobs,employment,social media", + "set_id": 1 + }, + { + "name": "linktree-logo-thin", + "content": "", + "style": "outline", + "tags": "*new*,social media,links", + "set_id": 1 + }, + { + "name": "linux-logo-thin", + "content": "", + "style": "outline", + "tags": "penguin,computer,animals", + "set_id": 1 + }, + { + "name": "list-thin", + "content": "", + "style": "outline", + "tags": "*updated*,hamburger menu,overflow menu,sidebar,3,ul,ol,unordered list,ordered list,checklist,lines", + "set_id": 1 + }, + { + "name": "list-bullets-thin", + "content": "", + "style": "outline", + "tags": "*updated*,ul,unordered list,bulleted list,checklist", + "set_id": 1 + }, + { + "name": "list-checks-thin", + "content": "", + "style": "outline", + "tags": "*updated*,checklist,todo", + "set_id": 1 + }, + { + "name": "list-dashes-thin", + "content": "", + "style": "outline", + "tags": "*updated*,ul,unordered list,dashed list,checklist", + "set_id": 1 + }, + { + "name": "list-heart-thin", + "content": "", + "style": "outline", + "tags": "*new*,favorites,wishlist,liked", + "set_id": 1 + }, + { + "name": "list-magnifying-glass-thin", + "content": "", + "style": "outline", + "tags": "search,find,locate,query,inspect", + "set_id": 1 + }, + { + "name": "list-numbers-thin", + "content": "", + "style": "outline", + "tags": "*updated*,ol,ordered list,numbered list,checklist", + "set_id": 1 + }, + { + "name": "list-plus-thin", + "content": "", + "style": "outline", + "tags": "*updated*,ul,ol,unordered list,ordered list,checklist,add,+", + "set_id": 1 + }, + { + "name": "list-star-thin", + "content": "", + "style": "outline", + "tags": "*new*,favorites,wishlist,liked", + "set_id": 1 + }, + { + "name": "lock-thin", + "content": "", + "style": "outline", + "tags": "padlock,security,secured,authentication,authenticated,login,locked,encrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "lock-key-thin", + "content": "", + "style": "outline", + "tags": "padlock,security,secured,authentication,authenticated,login,locked,encrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "lock-key-open-thin", + "content": "", + "style": "outline", + "tags": "padlock,security,unsecured,authentication,unauthenticated,login,unlocked,unencrypted,encryption,privacy", + "set_id": 1 + }, + { + "name": "lock-laminated-thin", + "content": "", + "style": "outline", + "tags": "padlock,security,secured,authentication,authenticated,login,locked,encrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "lock-laminated-open-thin", + "content": "", + "style": "outline", + "tags": "padlock,security,unsecured,authentication,unauthenticated,login,unlocked,unencrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "lock-open-thin", + "content": "", + "style": "outline", + "tags": "padlock,security,unsecured,authentication,unauthenticated,login,unlocked,unencrypted,encryption,privacy", + "set_id": 1 + }, + { + "name": "lock-simple-thin", + "content": "", + "style": "outline", + "tags": "padlock,security,secured,authentication,authenticated,login,locked,encrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "lock-simple-open-thin", + "content": "", + "style": "outline", + "tags": "padlock,security,unsecured,authentication,unauthenticated,login,unlocked,unencrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "lockers-thin", + "content": "", + "style": "outline", + "tags": "locker room,gym,storage", + "set_id": 1 + }, + { + "name": "log-thin", + "content": "", + "style": "outline", + "tags": "*new*,tree,stump,stick,branch", + "set_id": 1 + }, + { + "name": "magic-wand-thin", + "content": "", + "style": "outline", + "tags": "selection,wizard,games", + "set_id": 1 + }, + { + "name": "magnet-thin", + "content": "", + "style": "outline", + "tags": "magnetism,science,physics", + "set_id": 1 + }, + { + "name": "magnet-straight-thin", + "content": "", + "style": "outline", + "tags": "magnetism,science,physics", + "set_id": 1 + }, + { + "name": "magnifying-glass-thin", + "content": "", + "style": "outline", + "tags": "search,find,locate,query,inspect", + "set_id": 1 + }, + { + "name": "magnifying-glass-minus-thin", + "content": "", + "style": "outline", + "tags": "search,find,locate,query,inspect,zoom out,-", + "set_id": 1 + }, + { + "name": "magnifying-glass-plus-thin", + "content": "", + "style": "outline", + "tags": "search,find,locate,query,inspect,zoom in,+", + "set_id": 1 + }, + { + "name": "mailbox-thin", + "content": "", + "style": "outline", + "tags": "*new*,email,letters,messaging,post", + "set_id": 1 + }, + { + "name": "map-pin-thin", + "content": "", + "style": "outline", + "tags": "maps,places,markers,pins,locations,poi,point of interest", + "set_id": 1 + }, + { + "name": "map-pin-area-thin", + "content": "", + "style": "outline", + "tags": "*new*,maps,places,markers,pins,locations,poi,point of interest", + "set_id": 1 + }, + { + "name": "map-pin-line-thin", + "content": "", + "style": "outline", + "tags": "maps,places,markers,pins,locations,poi,point of interest", + "set_id": 1 + }, + { + "name": "map-pin-plus-thin", + "content": "", + "style": "outline", + "tags": "*new*,maps,places,markers,pins,locations,add,point of interest", + "set_id": 1 + }, + { + "name": "map-pin-simple-thin", + "content": "", + "style": "outline", + "tags": "*new*,maps,places,markers,pins,locations,poi,point of interest", + "set_id": 1 + }, + { + "name": "map-pin-simple-area-thin", + "content": "", + "style": "outline", + "tags": "*new*,maps,places,markers,pins,locations,poi,point of interest", + "set_id": 1 + }, + { + "name": "map-pin-simple-line-thin", + "content": "", + "style": "outline", + "tags": "*new*,maps,places,markers,pins,locations,poi,point of interest", + "set_id": 1 + }, + { + "name": "map-trifold-thin", + "content": "", + "style": "outline", + "tags": "maps,places,locations,cartography,geography", + "set_id": 1 + }, + { + "name": "markdown-logo-thin", + "content": "", + "style": "outline", + "tags": "*new*,markup,editor,.md", + "set_id": 1 + }, + { + "name": "marker-circle-thin", + "content": "", + "style": "outline", + "tags": "write,writing,editing,drawing", + "set_id": 1 + }, + { + "name": "martini-thin", + "content": "", + "style": "outline", + "tags": "glass,drinks,beverages,cocktails,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "mask-happy-thin", + "content": "", + "style": "outline", + "tags": "theater,costume,smile,smiling,thalia", + "set_id": 1 + }, + { + "name": "mask-sad-thin", + "content": "", + "style": "outline", + "tags": "theater,costume,cry,crying,melpomene", + "set_id": 1 + }, + { + "name": "mastodon-logo-thin", + "content": "", + "style": "outline", + "tags": "*new*,fediverse,social media,decentralized", + "set_id": 1 + }, + { + "name": "math-operations-thin", + "content": "", + "style": "outline", + "tags": "addition,sum,subtraction,difference,multiply,multiplication,product,divide,division,divisor,dividend,quotient,equals,equality,mathematics,arithmetic,calculator,+,-,±,×,÷,=", + "set_id": 1 + }, + { + "name": "matrix-logo-thin", + "content": "", + "style": "outline", + "tags": "*new*,matrix protocol,brands,logos", + "set_id": 1 + }, + { + "name": "medal-thin", + "content": "", + "style": "outline", + "tags": "ribbons,winning,victory,awards,rosette", + "set_id": 1 + }, + { + "name": "medal-military-thin", + "content": "", + "style": "outline", + "tags": "ribbons,winning,victory,awards,military", + "set_id": 1 + }, + { + "name": "medium-logo-thin", + "content": "", + "style": "outline", + "tags": "logos,reading,writing,news,social media", + "set_id": 1 + }, + { + "name": "megaphone-thin", + "content": "", + "style": "outline", + "tags": "bullhorn,announcements,loudspeaker,broadcast", + "set_id": 1 + }, + { + "name": "megaphone-simple-thin", + "content": "", + "style": "outline", + "tags": "bullhorn,announcements,loudspeaker,broadcast", + "set_id": 1 + }, + { + "name": "member-of-thin", + "content": "", + "style": "outline", + "tags": "*new*,∈,is element of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "memory-thin", + "content": "", + "style": "outline", + "tags": "*new*,ram,microchip,computer,circuit,electronics", + "set_id": 1 + }, + { + "name": "messenger-logo-thin", + "content": "", + "style": "outline", + "tags": "logos,facebook,social media", + "set_id": 1 + }, + { + "name": "meta-logo-thin", + "content": "", + "style": "outline", + "tags": "*updated*,facebook,logos,social media,logos", + "set_id": 1 + }, + { + "name": "meteor-thin", + "content": "", + "style": "outline", + "tags": "*new*,astronomy,asteroid,fireball", + "set_id": 1 + }, + { + "name": "metronome-thin", + "content": "", + "style": "outline", + "tags": "music,beat,tempo,bpm", + "set_id": 1 + }, + { + "name": "microphone-thin", + "content": "", + "style": "outline", + "tags": "audio,recording,music,sound,podcast,studio", + "set_id": 1 + }, + { + "name": "microphone-slash-thin", + "content": "", + "style": "outline", + "tags": "audio,recording,music,sound,podcast,studio,muted,disabled", + "set_id": 1 + }, + { + "name": "microphone-stage-thin", + "content": "", + "style": "outline", + "tags": "audio,recording,music,sound,performance,concert", + "set_id": 1 + }, + { + "name": "microscope-thin", + "content": "", + "style": "outline", + "tags": "*new*,science,biology,experiment,magnify", + "set_id": 1 + }, + { + "name": "microsoft-excel-logo-thin", + "content": "", + "style": "outline", + "tags": "tables,spreadsheets,tabular", + "set_id": 1 + }, + { + "name": "microsoft-outlook-logo-thin", + "content": "", + "style": "outline", + "tags": "email,logos", + "set_id": 1 + }, + { + "name": "microsoft-powerpoint-logo-thin", + "content": "", + "style": "outline", + "tags": "slides,slideshow,presentation", + "set_id": 1 + }, + { + "name": "microsoft-teams-logo-thin", + "content": "", + "style": "outline", + "tags": "chat,video conference", + "set_id": 1 + }, + { + "name": "microsoft-word-logo-thin", + "content": "", + "style": "outline", + "tags": "documents,word processor,doc,docx", + "set_id": 1 + }, + { + "name": "minus-thin", + "content": "", + "style": "outline", + "tags": "-,subtraction,difference,mathematics,arithmetic,calculator,line,horizontal,divider", + "set_id": 1 + }, + { + "name": "minus-circle-thin", + "content": "", + "style": "outline", + "tags": "-,subtraction,difference,mathematics,arithmetic,calculator,round", + "set_id": 1 + }, + { + "name": "minus-square-thin", + "content": "", + "style": "outline", + "tags": "-,subtraction,difference,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "money-thin", + "content": "", + "style": "outline", + "tags": "cash,dollars,paper bills,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "money-wavy-thin", + "content": "", + "style": "outline", + "tags": "*new*,cash,dollars,paper bills,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "monitor-thin", + "content": "", + "style": "outline", + "tags": "screen,television,tv,displays", + "set_id": 1 + }, + { + "name": "monitor-arrow-up-thin", + "content": "", + "style": "outline", + "tags": "*new*,screen,screencast,screenshare,upload,video,movie", + "set_id": 1 + }, + { + "name": "monitor-play-thin", + "content": "", + "style": "outline", + "tags": "screen,television,tv,displays,screencast,video,movie", + "set_id": 1 + }, + { + "name": "moon-thin", + "content": "", + "style": "outline", + "tags": "night,evening,clear,sleep,snooze,night mode,dark mode,astronomy,stargazing", + "set_id": 1 + }, + { + "name": "moon-stars-thin", + "content": "", + "style": "outline", + "tags": "night,evening,clear,sleep,snooze,night mode,dark mode,astronomy,stargazing,constellation", + "set_id": 1 + }, + { + "name": "moped-thin", + "content": "", + "style": "outline", + "tags": "scooter,vehicles,vespa,transportation,travel", + "set_id": 1 + }, + { + "name": "moped-front-thin", + "content": "", + "style": "outline", + "tags": "scooter,vehicles,vespa,transportation,travel", + "set_id": 1 + }, + { + "name": "mosque-thin", + "content": "", + "style": "outline", + "tags": "islam,muslim,religion,worship", + "set_id": 1 + }, + { + "name": "motorcycle-thin", + "content": "", + "style": "outline", + "tags": "vehicles,motorbike,transportation,travel", + "set_id": 1 + }, + { + "name": "mountains-thin", + "content": "", + "style": "outline", + "tags": "*updated*,hills,outdoors,terrain,geology,adventure", + "set_id": 1 + }, + { + "name": "mouse-thin", + "content": "", + "style": "outline", + "tags": "*updated*,clicks,input", + "set_id": 1 + }, + { + "name": "mouse-left-click-thin", + "content": "", + "style": "outline", + "tags": "*new*,clicks,input", + "set_id": 1 + }, + { + "name": "mouse-middle-click-thin", + "content": "", + "style": "outline", + "tags": "*new*,clicks,input", + "set_id": 1 + }, + { + "name": "mouse-right-click-thin", + "content": "", + "style": "outline", + "tags": "*new*,clicks,input", + "set_id": 1 + }, + { + "name": "mouse-scroll-thin", + "content": "", + "style": "outline", + "tags": "*new*,clicks,input", + "set_id": 1 + }, + { + "name": "mouse-simple-thin", + "content": "", + "style": "outline", + "tags": "clicks,input", + "set_id": 1 + }, + { + "name": "music-note-thin", + "content": "", + "style": "outline", + "tags": "songs,audio,playlist,albums", + "set_id": 1 + }, + { + "name": "music-note-simple-thin", + "content": "", + "style": "outline", + "tags": "songs,audio,playlist,albums", + "set_id": 1 + }, + { + "name": "music-notes-thin", + "content": "", + "style": "outline", + "tags": "songs,audio,playlist,albums", + "set_id": 1 + }, + { + "name": "music-notes-minus-thin", + "content": "", + "style": "outline", + "tags": "*new*,songs,audio,playlist,albums,remove,subtract", + "set_id": 1 + }, + { + "name": "music-notes-plus-thin", + "content": "", + "style": "outline", + "tags": "songs,audio,playlist,albums,add", + "set_id": 1 + }, + { + "name": "music-notes-simple-thin", + "content": "", + "style": "outline", + "tags": "songs,audio,playlist,albums", + "set_id": 1 + }, + { + "name": "navigation-arrow-thin", + "content": "", + "style": "outline", + "tags": "location,directions,compass,gps", + "set_id": 1 + }, + { + "name": "needle-thin", + "content": "", + "style": "outline", + "tags": "sewing,thread,awl,tailor", + "set_id": 1 + }, + { + "name": "network-thin", + "content": "", + "style": "outline", + "tags": "*new*,internet,ethernet,lan", + "set_id": 1 + }, + { + "name": "network-slash-thin", + "content": "", + "style": "outline", + "tags": "*new*,internet,ethernet,lan,error", + "set_id": 1 + }, + { + "name": "network-x-thin", + "content": "", + "style": "outline", + "tags": "*new*,internet,ethernet,lan,disabled", + "set_id": 1 + }, + { + "name": "newspaper-thin", + "content": "", + "style": "outline", + "tags": "reading,writing,journals,periodicals", + "set_id": 1 + }, + { + "name": "newspaper-clipping-thin", + "content": "", + "style": "outline", + "tags": "*updated*,reading,writing,journals,periodicals", + "set_id": 1 + }, + { + "name": "not-equals-thin", + "content": "", + "style": "outline", + "tags": "*new*,≠,equality,equivalent,equivalence,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "not-member-of-thin", + "content": "", + "style": "outline", + "tags": "*new*,∉,is not element of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "not-subset-of-thin", + "content": "", + "style": "outline", + "tags": "*new*,⊄,not subset of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "not-superset-of-thin", + "content": "", + "style": "outline", + "tags": "*new*,⊉,not superset of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "notches-thin", + "content": "", + "style": "outline", + "tags": "textarea,resize,drag handle,knurling", + "set_id": 1 + }, + { + "name": "note-thin", + "content": "", + "style": "outline", + "tags": "notes,note-taking,memorandum,post-it,reminders", + "set_id": 1 + }, + { + "name": "note-blank-thin", + "content": "", + "style": "outline", + "tags": "notes,note-taking,memorandum,post-it,reminders", + "set_id": 1 + }, + { + "name": "note-pencil-thin", + "content": "", + "style": "outline", + "tags": "notes,note-taking,memorandum,post-it,reminders", + "set_id": 1 + }, + { + "name": "notebook-thin", + "content": "", + "style": "outline", + "tags": "notes,note-taking,memorandum,journal,diary,logs,logbook", + "set_id": 1 + }, + { + "name": "notepad-thin", + "content": "", + "style": "outline", + "tags": "*updated*,logs,logbook,notes,note-taking,memorandum,journal,diary", + "set_id": 1 + }, + { + "name": "notification-thin", + "content": "", + "style": "outline", + "tags": "badge,pip", + "set_id": 1 + }, + { + "name": "notion-logo-thin", + "content": "", + "style": "outline", + "tags": "documentation,productivity,wiki,logos", + "set_id": 1 + }, + { + "name": "nuclear-plant-thin", + "content": "", + "style": "outline", + "tags": "*new*,renewable,energy,power,electricity", + "set_id": 1 + }, + { + "name": "number-circle-eight-thin", + "content": "", + "style": "outline", + "tags": "8,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-five-thin", + "content": "", + "style": "outline", + "tags": "5,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-four-thin", + "content": "", + "style": "outline", + "tags": "*updated*,4,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-nine-thin", + "content": "", + "style": "outline", + "tags": "9,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-one-thin", + "content": "", + "style": "outline", + "tags": "1,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-seven-thin", + "content": "", + "style": "outline", + "tags": "7,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-six-thin", + "content": "", + "style": "outline", + "tags": "6,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-three-thin", + "content": "", + "style": "outline", + "tags": "3,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-two-thin", + "content": "", + "style": "outline", + "tags": "2,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-zero-thin", + "content": "", + "style": "outline", + "tags": "0,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-eight-thin", + "content": "", + "style": "outline", + "tags": "8,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-five-thin", + "content": "", + "style": "outline", + "tags": "5,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-four-thin", + "content": "", + "style": "outline", + "tags": "*updated*,4,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-nine-thin", + "content": "", + "style": "outline", + "tags": "9,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-one-thin", + "content": "", + "style": "outline", + "tags": "1,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-seven-thin", + "content": "", + "style": "outline", + "tags": "7,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-six-thin", + "content": "", + "style": "outline", + "tags": "6,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-eight-thin", + "content": "", + "style": "outline", + "tags": "8,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-five-thin", + "content": "", + "style": "outline", + "tags": "5,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-four-thin", + "content": "", + "style": "outline", + "tags": "*updated*,4,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-nine-thin", + "content": "", + "style": "outline", + "tags": "9,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-one-thin", + "content": "", + "style": "outline", + "tags": "1,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-seven-thin", + "content": "", + "style": "outline", + "tags": "7,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-six-thin", + "content": "", + "style": "outline", + "tags": "6,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-three-thin", + "content": "", + "style": "outline", + "tags": "3,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-two-thin", + "content": "", + "style": "outline", + "tags": "2,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-zero-thin", + "content": "", + "style": "outline", + "tags": "0,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-three-thin", + "content": "", + "style": "outline", + "tags": "3,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-two-thin", + "content": "", + "style": "outline", + "tags": "2,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-zero-thin", + "content": "", + "style": "outline", + "tags": "0,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "numpad-thin", + "content": "", + "style": "outline", + "tags": "*new*,dialer,dialpad,call-center,telephone,landline,password,passcode", + "set_id": 1 + }, + { + "name": "nut-thin", + "content": "", + "style": "outline", + "tags": "bolts,screws,machinery,tools,hexagon", + "set_id": 1 + }, + { + "name": "ny-times-logo-thin", + "content": "", + "style": "outline", + "tags": "nyt,new york times,logos,reading,writing,news,newspaper", + "set_id": 1 + }, + { + "name": "octagon-thin", + "content": "", + "style": "outline", + "tags": "8,shapes,polygons", + "set_id": 1 + }, + { + "name": "office-chair-thin", + "content": "", + "style": "outline", + "tags": "furniture,seat", + "set_id": 1 + }, + { + "name": "onigiri-thin", + "content": "", + "style": "outline", + "tags": "*new*,rice ball,japanese,food,restaurant", + "set_id": 1 + }, + { + "name": "open-ai-logo-thin", + "content": "", + "style": "outline", + "tags": "*new*,artificial intelligence,ai,chatgpt,llm,logos", + "set_id": 1 + }, + { + "name": "option-thin", + "content": "", + "style": "outline", + "tags": "keyboard,shortcut,modifier", + "set_id": 1 + }, + { + "name": "orange-thin", + "content": "", + "style": "outline", + "tags": "*new*,food,fruit,juice,citrus,groceries,market", + "set_id": 1 + }, + { + "name": "orange-slice-thin", + "content": "", + "style": "outline", + "tags": "food,fruit,juice,citrus,groceries,market", + "set_id": 1 + }, + { + "name": "oven-thin", + "content": "", + "style": "outline", + "tags": "*new*,stove,stovetop,food,cooking,cuisine,kitchen", + "set_id": 1 + }, + { + "name": "package-thin", + "content": "", + "style": "outline", + "tags": "packages,boxes,delivery,mail,postal service,bundles,library,libraries,shipping", + "set_id": 1 + }, + { + "name": "paint-brush-thin", + "content": "", + "style": "outline", + "tags": "colors,color picker,arts", + "set_id": 1 + }, + { + "name": "paint-brush-broad-thin", + "content": "", + "style": "outline", + "tags": "fill,colors,color picker,arts", + "set_id": 1 + }, + { + "name": "paint-brush-household-thin", + "content": "", + "style": "outline", + "tags": "colors,color picker,arts", + "set_id": 1 + }, + { + "name": "paint-bucket-thin", + "content": "", + "style": "outline", + "tags": "*updated*,paintbucket,colors,color picker,fill,arts", + "set_id": 1 + }, + { + "name": "paint-roller-thin", + "content": "", + "style": "outline", + "tags": "colors,color picker,fill,arts,theme", + "set_id": 1 + }, + { + "name": "palette-thin", + "content": "", + "style": "outline", + "tags": "paint,colors,color picker,arts", + "set_id": 1 + }, + { + "name": "panorama-thin", + "content": "", + "style": "outline", + "tags": "*new*,image,picture,photography,landscape,360", + "set_id": 1 + }, + { + "name": "pants-thin", + "content": "", + "style": "outline", + "tags": "clothing,clothes,jeans", + "set_id": 1 + }, + { + "name": "paper-plane-thin", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,messages,messaging,toys,games", + "set_id": 1 + }, + { + "name": "paper-plane-right-thin", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,messages,messaging,toys,games", + "set_id": 1 + }, + { + "name": "paper-plane-tilt-thin", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,messages,messaging,toys,games", + "set_id": 1 + }, + { + "name": "paperclip-thin", + "content": "", + "style": "outline", + "tags": "attachments,mail,email,office", + "set_id": 1 + }, + { + "name": "paperclip-horizontal-thin", + "content": "", + "style": "outline", + "tags": "attachments,mail,email,office", + "set_id": 1 + }, + { + "name": "parachute-thin", + "content": "", + "style": "outline", + "tags": "skydiving,safety", + "set_id": 1 + }, + { + "name": "paragraph-thin", + "content": "", + "style": "outline", + "tags": "pilcrow", + "set_id": 1 + }, + { + "name": "parallelogram-thin", + "content": "", + "style": "outline", + "tags": "shapes,bandcamp,logos", + "set_id": 1 + }, + { + "name": "park-thin", + "content": "", + "style": "outline", + "tags": "bench,outdoors", + "set_id": 1 + }, + { + "name": "password-thin", + "content": "", + "style": "outline", + "tags": "security,secured,authentication,authenticated,login,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "path-thin", + "content": "", + "style": "outline", + "tags": "transit,travel,trail,gps,navigation,route,destination,vector", + "set_id": 1 + }, + { + "name": "patreon-logo-thin", + "content": "", + "style": "outline", + "tags": "*updated*,crowdfunding,logos", + "set_id": 1 + }, + { + "name": "pause-thin", + "content": "", + "style": "outline", + "tags": "music,audio,resume,start,stop", + "set_id": 1 + }, + { + "name": "pause-circle-thin", + "content": "", + "style": "outline", + "tags": "music,audio,resume,start,stop,round", + "set_id": 1 + }, + { + "name": "paw-print-thin", + "content": "", + "style": "outline", + "tags": "pets,pet store,pet shop,animals,cat,dog,veterinarian", + "set_id": 1 + }, + { + "name": "paypal-logo-thin", + "content": "", + "style": "outline", + "tags": "payments,paying,purchase,logos", + "set_id": 1 + }, + { + "name": "peace-thin", + "content": "", + "style": "outline", + "tags": "love,hippies,peace sign,symbols", + "set_id": 1 + }, + { + "name": "pen-thin", + "content": "", + "style": "outline", + "tags": "ink,write,writing,editing,sign,signature", + "set_id": 1 + }, + { + "name": "pen-nib-thin", + "content": "", + "style": "outline", + "tags": "ink,write,writing,editing,sign,signature,fountain pen,illustrator", + "set_id": 1 + }, + { + "name": "pen-nib-straight-thin", + "content": "", + "style": "outline", + "tags": "ink,write,writing,editing,sign,signature,fountain pen,illustrator", + "set_id": 1 + }, + { + "name": "pencil-thin", + "content": "", + "style": "outline", + "tags": "write,writing,editing,sign,signature", + "set_id": 1 + }, + { + "name": "pencil-circle-thin", + "content": "", + "style": "outline", + "tags": "write,writing,editing,sign,signature", + "set_id": 1 + }, + { + "name": "pencil-line-thin", + "content": "", + "style": "outline", + "tags": "write,writing,editing,sign,signature", + "set_id": 1 + }, + { + "name": "pencil-ruler-thin", + "content": "", + "style": "outline", + "tags": "*new*,drawing,drafting,construction,tools", + "set_id": 1 + }, + { + "name": "pencil-simple-thin", + "content": "", + "style": "outline", + "tags": "write,writing,editing,sign,signature", + "set_id": 1 + }, + { + "name": "pencil-simple-line-thin", + "content": "", + "style": "outline", + "tags": "write,writing,editing,sign,signature", + "set_id": 1 + }, + { + "name": "pencil-simple-slash-thin", + "content": "", + "style": "outline", + "tags": "read-only,write,writing,editing", + "set_id": 1 + }, + { + "name": "pencil-slash-thin", + "content": "", + "style": "outline", + "tags": "read-only,write,writing,editing", + "set_id": 1 + }, + { + "name": "pentagon-thin", + "content": "", + "style": "outline", + "tags": "*new*,shapes,polygons,5", + "set_id": 1 + }, + { + "name": "pentagram-thin", + "content": "", + "style": "outline", + "tags": "star,wicca,satan,satanism,religion,spirituality,evil,magic", + "set_id": 1 + }, + { + "name": "pepper-thin", + "content": "", + "style": "outline", + "tags": "food,spicy,chile,vegetable", + "set_id": 1 + }, + { + "name": "percent-thin", + "content": "", + "style": "outline", + "tags": "%,percentage,percentile,ratio,delta,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "person-thin", + "content": "", + "style": "outline", + "tags": "walking,human,woman,man,body,transit,transportation,travel,commuter,user", + "set_id": 1 + }, + { + "name": "person-arms-spread-thin", + "content": "", + "style": "outline", + "tags": "accessibility,vitruvian,stretch,sports", + "set_id": 1 + }, + { + "name": "person-simple-thin", + "content": "", + "style": "outline", + "tags": "pedestrian,walking,human,woman,man,body,transit,transportation,travel,commuter,user,exercise", + "set_id": 1 + }, + { + "name": "person-simple-bike-thin", + "content": "", + "style": "outline", + "tags": "pedestrian,biking,bicycle,human,woman,man,body,sports,exercise", + "set_id": 1 + }, + { + "name": "person-simple-circle-thin", + "content": "", + "style": "outline", + "tags": "*new*,human,accessibility,a11y,vitruvius,vitruvian", + "set_id": 1 + }, + { + "name": "person-simple-hike-thin", + "content": "", + "style": "outline", + "tags": "*new*,pedestrian,climbing,mountaineering,bouldering", + "set_id": 1 + }, + { + "name": "person-simple-run-thin", + "content": "", + "style": "outline", + "tags": "pedestrian,running,human,woman,man,body,transit,transportation,travel,commuter,user,exercise", + "set_id": 1 + }, + { + "name": "person-simple-ski-thin", + "content": "", + "style": "outline", + "tags": "*new*,sports,skiing,winter,mountain", + "set_id": 1 + }, + { + "name": "person-simple-snowboard-thin", + "content": "", + "style": "outline", + "tags": "*new*,sports,snowboarding,winter,mountain", + "set_id": 1 + }, + { + "name": "person-simple-swim-thin", + "content": "", + "style": "outline", + "tags": "*new*,pedestrian,swimming,human,woman,man,body,sports,exercise", + "set_id": 1 + }, + { + "name": "person-simple-tai-chi-thin", + "content": "", + "style": "outline", + "tags": "*new*,mindfulness,martial arts,meditation,sports,exercise,yoga", + "set_id": 1 + }, + { + "name": "person-simple-throw-thin", + "content": "", + "style": "outline", + "tags": "pedestrian,tennis,human,woman,man,body,sports,exercise", + "set_id": 1 + }, + { + "name": "person-simple-walk-thin", + "content": "", + "style": "outline", + "tags": "pedestrian,walking,human,woman,man,body,transit,transportation,travel,commuter,user,exercise", + "set_id": 1 + }, + { + "name": "perspective-thin", + "content": "", + "style": "outline", + "tags": "3d,skew,warp,trapezoid", + "set_id": 1 + }, + { + "name": "phone-thin", + "content": "", + "style": "outline", + "tags": "calls,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-call-thin", + "content": "", + "style": "outline", + "tags": "calls,calling,ringing,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-disconnect-thin", + "content": "", + "style": "outline", + "tags": "calls,hang up,disconnected,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-incoming-thin", + "content": "", + "style": "outline", + "tags": "calls,calling,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-list-thin", + "content": "", + "style": "outline", + "tags": "*new*,calls,call-center,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-outgoing-thin", + "content": "", + "style": "outline", + "tags": "calls,calling,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-pause-thin", + "content": "", + "style": "outline", + "tags": "*new*,calls,hold,call-center,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-plus-thin", + "content": "", + "style": "outline", + "tags": "calls,telephone,landline,talk,conference,add", + "set_id": 1 + }, + { + "name": "phone-slash-thin", + "content": "", + "style": "outline", + "tags": "calls,disabled,disconnected,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-transfer-thin", + "content": "", + "style": "outline", + "tags": "*new*,calls,call-center,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-x-thin", + "content": "", + "style": "outline", + "tags": "calls,missed,errors,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phosphor-logo-thin", + "content": "", + "style": "outline", + "tags": "logos", + "set_id": 1 + }, + { + "name": "pi-thin", + "content": "", + "style": "outline", + "tags": "π,symbol,mathematics,circle", + "set_id": 1 + }, + { + "name": "piano-keys-thin", + "content": "", + "style": "outline", + "tags": "music,instrument,keyboard", + "set_id": 1 + }, + { + "name": "picnic-table-thin", + "content": "", + "style": "outline", + "tags": "*new*,bench,park,outdoors", + "set_id": 1 + }, + { + "name": "picture-in-picture-thin", + "content": "", + "style": "outline", + "tags": "pip,pop-out,minimize,maximize", + "set_id": 1 + }, + { + "name": "piggy-bank-thin", + "content": "", + "style": "outline", + "tags": "savings,deposit,money,coins", + "set_id": 1 + }, + { + "name": "pill-thin", + "content": "", + "style": "outline", + "tags": "capsule,medicine,rx,pharmacy,pharmacist,pharmaceuticals,prescription,drugs", + "set_id": 1 + }, + { + "name": "ping-pong-thin", + "content": "", + "style": "outline", + "tags": "*new*,sports,paddle", + "set_id": 1 + }, + { + "name": "pint-glass-thin", + "content": "", + "style": "outline", + "tags": "*new*,water,beverage,drinks,beverages,food,dining", + "set_id": 1 + }, + { + "name": "pinterest-logo-thin", + "content": "", + "style": "outline", + "tags": "logos,vision board,mood board,social media", + "set_id": 1 + }, + { + "name": "pinwheel-thin", + "content": "", + "style": "outline", + "tags": "toys,whirligig", + "set_id": 1 + }, + { + "name": "pipe-thin", + "content": "", + "style": "outline", + "tags": "*new*,tube,plumber,plumbing,construction", + "set_id": 1 + }, + { + "name": "pipe-wrench-thin", + "content": "", + "style": "outline", + "tags": "*new*,plumber,plumbing,tools,construction", + "set_id": 1 + }, + { + "name": "pix-logo-thin", + "content": "", + "style": "outline", + "tags": "*new*,payments,paying,purchase,logos", + "set_id": 1 + }, + { + "name": "pizza-thin", + "content": "", + "style": "outline", + "tags": "fast food,party,places,locations,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "placeholder-thin", + "content": "", + "style": "outline", + "tags": "empty,notdef,tofu,rectangle slash,missing", + "set_id": 1 + }, + { + "name": "planet-thin", + "content": "", + "style": "outline", + "tags": "saturn,world,globe,astronomy,space", + "set_id": 1 + }, + { + "name": "plant-thin", + "content": "", + "style": "outline", + "tags": "sprout,vegan,farm,farming,garden,gardening", + "set_id": 1 + }, + { + "name": "play-thin", + "content": "", + "style": "outline", + "tags": "music,audio,resume,start", + "set_id": 1 + }, + { + "name": "play-circle-thin", + "content": "", + "style": "outline", + "tags": "music,audio,resume,start,round", + "set_id": 1 + }, + { + "name": "play-pause-thin", + "content": "", + "style": "outline", + "tags": "music,audio,resume,start,stop", + "set_id": 1 + }, + { + "name": "playlist-thin", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,queue", + "set_id": 1 + }, + { + "name": "plug-thin", + "content": "", + "style": "outline", + "tags": "outlet,socket,plugin,integration", + "set_id": 1 + }, + { + "name": "plug-charging-thin", + "content": "", + "style": "outline", + "tags": "outlet,socket,plugin,integration,charge,charging", + "set_id": 1 + }, + { + "name": "plugs-thin", + "content": "", + "style": "outline", + "tags": "outlet,socket,plugin,integration,disconnected", + "set_id": 1 + }, + { + "name": "plugs-connected-thin", + "content": "", + "style": "outline", + "tags": "*updated*,outlet,socket,plugin,integration", + "set_id": 1 + }, + { + "name": "plus-thin", + "content": "", + "style": "outline", + "tags": "addition,sum,mathematics,arithmetic,calculator,+", + "set_id": 1 + }, + { + "name": "plus-circle-thin", + "content": "", + "style": "outline", + "tags": "addition,sum,mathematics,arithmetic,calculator,round,+", + "set_id": 1 + }, + { + "name": "plus-minus-thin", + "content": "", + "style": "outline", + "tags": "plus or minus,plus/minus,add/subtract,addition,sum,subtraction,difference,mathematics,arithmetic,calculator,+,-,±", + "set_id": 1 + }, + { + "name": "plus-square-thin", + "content": "", + "style": "outline", + "tags": "addition,sum,mathematics,arithmetic,calculator,+", + "set_id": 1 + }, + { + "name": "poker-chip-thin", + "content": "", + "style": "outline", + "tags": "chips,tokens,cards,gambling,casino", + "set_id": 1 + }, + { + "name": "police-car-thin", + "content": "", + "style": "outline", + "tags": "*updated*,vehicles,cars,automobiles,law enforcement", + "set_id": 1 + }, + { + "name": "polygon-thin", + "content": "", + "style": "outline", + "tags": "shapes,drawing", + "set_id": 1 + }, + { + "name": "popcorn-thin", + "content": "", + "style": "outline", + "tags": "food,movies,theater", + "set_id": 1 + }, + { + "name": "popsicle-thin", + "content": "", + "style": "outline", + "tags": "*new*,ice cream,dessert,summer,food", + "set_id": 1 + }, + { + "name": "potted-plant-thin", + "content": "", + "style": "outline", + "tags": "sprout,vegan,garden,gardening", + "set_id": 1 + }, + { + "name": "power-thin", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,on,off,on/off,switch,power switch", + "set_id": 1 + }, + { + "name": "prescription-thin", + "content": "", + "style": "outline", + "tags": "rx,medicine,drugs,pharmacy,pharmacist,pharmaceuticals,doctor", + "set_id": 1 + }, + { + "name": "presentation-thin", + "content": "", + "style": "outline", + "tags": "whiteboard,flipchart,charts,statistics,analyze,analysis,meeting", + "set_id": 1 + }, + { + "name": "presentation-chart-thin", + "content": "", + "style": "outline", + "tags": "whiteboard,flipchart,graphs,graphing,charts,statistics,analyze,analysis,meeting", + "set_id": 1 + }, + { + "name": "printer-thin", + "content": "", + "style": "outline", + "tags": "printing", + "set_id": 1 + }, + { + "name": "prohibit-thin", + "content": "", + "style": "outline", + "tags": "forbidden,prohibited,cancelled,prevent,stop,do not enter", + "set_id": 1 + }, + { + "name": "prohibit-inset-thin", + "content": "", + "style": "outline", + "tags": "forbidden,prohibited,cancelled,prevent,stop,do not enter", + "set_id": 1 + }, + { + "name": "projector-screen-thin", + "content": "", + "style": "outline", + "tags": "projection,presentation,slideshow,movies,charts,statistics,analyze,analysis", + "set_id": 1 + }, + { + "name": "projector-screen-chart-thin", + "content": "", + "style": "outline", + "tags": "projection,presentation,slideshow,graphs,graphing,charts,statistics,analyze,analysis", + "set_id": 1 + }, + { + "name": "pulse-thin", + "content": "", + "style": "outline", + "tags": "activity,heartbeat,medical,ecg,ekg,vitals,monitor,medicine", + "set_id": 1 + }, + { + "name": "push-pin-thin", + "content": "", + "style": "outline", + "tags": "favorites,favorited,pushpin", + "set_id": 1 + }, + { + "name": "push-pin-simple-thin", + "content": "", + "style": "outline", + "tags": "favorites,favorited,pushpin", + "set_id": 1 + }, + { + "name": "push-pin-simple-slash-thin", + "content": "", + "style": "outline", + "tags": "favorites,favorited,pushpin,disabled", + "set_id": 1 + }, + { + "name": "push-pin-slash-thin", + "content": "", + "style": "outline", + "tags": "favorites,favorited,pushpin,disabled", + "set_id": 1 + }, + { + "name": "puzzle-piece-thin", + "content": "", + "style": "outline", + "tags": "board game,element,component,extension,plugin", + "set_id": 1 + }, + { + "name": "qr-code-thin", + "content": "", + "style": "outline", + "tags": "upc,barcode,products,shopping,scanner", + "set_id": 1 + }, + { + "name": "question-thin", + "content": "", + "style": "outline", + "tags": "information,help,support,questions", + "set_id": 1 + }, + { + "name": "question-mark-thin", + "content": "", + "style": "outline", + "tags": "*new*,?,information,help,support,questions,punctuation,symbol", + "set_id": 1 + }, + { + "name": "queue-thin", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,playlist", + "set_id": 1 + }, + { + "name": "quotes-thin", + "content": "", + "style": "outline", + "tags": "quoations,quotation marks,double-quotes,writing,books", + "set_id": 1 + }, + { + "name": "rabbit-thin", + "content": "", + "style": "outline", + "tags": "*new*,hare,fast,animal", + "set_id": 1 + }, + { + "name": "racquet-thin", + "content": "", + "style": "outline", + "tags": "*new*,sports,tennis,squash,pickleball", + "set_id": 1 + }, + { + "name": "radical-thin", + "content": "", + "style": "outline", + "tags": "√,radix,radicand,square root,squareroot,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "radio-thin", + "content": "", + "style": "outline", + "tags": "broadcast,fm,am,xm,transmitter,receiver", + "set_id": 1 + }, + { + "name": "radio-button-thin", + "content": "", + "style": "outline", + "tags": "input,checkbox,checked", + "set_id": 1 + }, + { + "name": "radioactive-thin", + "content": "", + "style": "outline", + "tags": "radiation,danger,warning,nuclear,atomic", + "set_id": 1 + }, + { + "name": "rainbow-thin", + "content": "", + "style": "outline", + "tags": "meteorology,rainstorm,arc,pride,lgbtq+,leprechaun", + "set_id": 1 + }, + { + "name": "rainbow-cloud-thin", + "content": "", + "style": "outline", + "tags": "meteorology,rainstorm,cloudy,partly cloudy,partly sunny,pride,lgbtq+,leprechaun", + "set_id": 1 + }, + { + "name": "ranking-thin", + "content": "", + "style": "outline", + "tags": "*new*,medal,rank,leaderboard,winner,sports", + "set_id": 1 + }, + { + "name": "read-cv-logo-thin", + "content": "", + "style": "outline", + "tags": "resume,jobs,logos", + "set_id": 1 + }, + { + "name": "receipt-thin", + "content": "", + "style": "outline", + "tags": "purchase,money,clipping,expense", + "set_id": 1 + }, + { + "name": "receipt-x-thin", + "content": "", + "style": "outline", + "tags": "purchase,money,clipping,expense,cancel", + "set_id": 1 + }, + { + "name": "record-thin", + "content": "", + "style": "outline", + "tags": "music,audio,recording,recorder,voice memo", + "set_id": 1 + }, + { + "name": "rectangle-thin", + "content": "", + "style": "outline", + "tags": "4,shapes,polygons,box", + "set_id": 1 + }, + { + "name": "rectangle-dashed-thin", + "content": "", + "style": "outline", + "tags": "*new*,4,shapes,polygons,box,missing", + "set_id": 1 + }, + { + "name": "recycle-thin", + "content": "", + "style": "outline", + "tags": "recycling,trash,environmental,green", + "set_id": 1 + }, + { + "name": "reddit-logo-thin", + "content": "", + "style": "outline", + "tags": "logos,subreddit,snoo,social media", + "set_id": 1 + }, + { + "name": "repeat-thin", + "content": "", + "style": "outline", + "tags": "music,audio,recycle", + "set_id": 1 + }, + { + "name": "repeat-once-thin", + "content": "", + "style": "outline", + "tags": "music,audio,recycle", + "set_id": 1 + }, + { + "name": "replit-logo-thin", + "content": "", + "style": "outline", + "tags": "*new*,logos,ide,editor,coding", + "set_id": 1 + }, + { + "name": "resize-thin", + "content": "", + "style": "outline", + "tags": "*new*,maximize,expand,grow", + "set_id": 1 + }, + { + "name": "rewind-thin", + "content": "", + "style": "outline", + "tags": "music,audio,seek,scrub,scan,skip,back,backwards,reverse", + "set_id": 1 + }, + { + "name": "rewind-circle-thin", + "content": "", + "style": "outline", + "tags": "music,audio,seek,scrub,scan,skip,back,backwards,reverse", + "set_id": 1 + }, + { + "name": "road-horizon-thin", + "content": "", + "style": "outline", + "tags": "trip,drive,road,travel,transportation,highway", + "set_id": 1 + }, + { + "name": "robot-thin", + "content": "", + "style": "outline", + "tags": "automaton,artificial intelligence,ai", + "set_id": 1 + }, + { + "name": "rocket-thin", + "content": "", + "style": "outline", + "tags": "spaceship,launch,deployment,rocketship", + "set_id": 1 + }, + { + "name": "rocket-launch-thin", + "content": "", + "style": "outline", + "tags": "*updated*,spaceship,flying,blastoff,deployment,rocketship", + "set_id": 1 + }, + { + "name": "rows-thin", + "content": "", + "style": "outline", + "tags": "2,shapes,polygons,box,stack,list,table,cards", + "set_id": 1 + }, + { + "name": "rows-plus-bottom-thin", + "content": "", + "style": "outline", + "tags": "*new*,2,shapes,polygons,box,stack,list,table,cards,prepend,insert", + "set_id": 1 + }, + { + "name": "rows-plus-top-thin", + "content": "", + "style": "outline", + "tags": "*new*,2,shapes,polygons,box,stack,list,table,cards,prepend,insert", + "set_id": 1 + }, + { + "name": "rss-thin", + "content": "", + "style": "outline", + "tags": "radio,broadcast,web feed,news,aggregator", + "set_id": 1 + }, + { + "name": "rss-simple-thin", + "content": "", + "style": "outline", + "tags": "radio,broadcast,web feed,news,aggregator", + "set_id": 1 + }, + { + "name": "rug-thin", + "content": "", + "style": "outline", + "tags": "*updated*,tapestry,carpet", + "set_id": 1 + }, + { + "name": "ruler-thin", + "content": "", + "style": "outline", + "tags": "measure,scale,distance", + "set_id": 1 + }, + { + "name": "sailboat-thin", + "content": "", + "style": "outline", + "tags": "*new*,sailing,ship,vehicles,transportation,sports,places,locations", + "set_id": 1 + }, + { + "name": "scales-thin", + "content": "", + "style": "outline", + "tags": "measure,balance,law,justice,government", + "set_id": 1 + }, + { + "name": "scan-thin", + "content": "", + "style": "outline", + "tags": "upc,barcode,products,shopping,scanner", + "set_id": 1 + }, + { + "name": "scan-smiley-thin", + "content": "", + "style": "outline", + "tags": "*new*,facial recognition,face unlock,scanner", + "set_id": 1 + }, + { + "name": "scissors-thin", + "content": "", + "style": "outline", + "tags": "*updated*,cut,snip,clipboard", + "set_id": 1 + }, + { + "name": "scooter-thin", + "content": "", + "style": "outline", + "tags": "vehicles,transportation,travel,transit", + "set_id": 1 + }, + { + "name": "screencast-thin", + "content": "", + "style": "outline", + "tags": "apple,airplay,screencasting,screen share,television,tv", + "set_id": 1 + }, + { + "name": "screwdriver-thin", + "content": "", + "style": "outline", + "tags": "*new*,tools,construction,flathead,drill", + "set_id": 1 + }, + { + "name": "scribble-thin", + "content": "", + "style": "outline", + "tags": "*new*,doodles,squiggle,drawing,sign,signature", + "set_id": 1 + }, + { + "name": "scribble-loop-thin", + "content": "", + "style": "outline", + "tags": "doodles,drawing,sign,signature", + "set_id": 1 + }, + { + "name": "scroll-thin", + "content": "", + "style": "outline", + "tags": "*updated*,parchment,paper,script,spell,fantasy", + "set_id": 1 + }, + { + "name": "seal-thin", + "content": "", + "style": "outline", + "tags": "badge,verified,verification,shapes,polygons,circle-wavy", + "set_id": 1 + }, + { + "name": "seal-check-thin", + "content": "", + "style": "outline", + "tags": "badge,verified,verification,shapes,polygons,circle-wavy", + "set_id": 1 + }, + { + "name": "seal-percent-thin", + "content": "", + "style": "outline", + "tags": "*new*,badge,discount,sale,shapes,polygons,circle-wavy", + "set_id": 1 + }, + { + "name": "seal-question-thin", + "content": "", + "style": "outline", + "tags": "badge,unverified,verification,shapes,polygons,circle-wavy", + "set_id": 1 + }, + { + "name": "seal-warning-thin", + "content": "", + "style": "outline", + "tags": "badge,unverified,verification,errors,shapes,polygons,circle-wavy", + "set_id": 1 + }, + { + "name": "seat-thin", + "content": "", + "style": "outline", + "tags": "*new*,chair,car seat,airplane seat,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "seatbelt-thin", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,safety", + "set_id": 1 + }, + { + "name": "security-camera-thin", + "content": "", + "style": "outline", + "tags": "*new*,cctv,surveillance,video,monitor,motion detector,safety", + "set_id": 1 + }, + { + "name": "selection-thin", + "content": "", + "style": "outline", + "tags": "marquis,select,square dashed", + "set_id": 1 + }, + { + "name": "selection-all-thin", + "content": "", + "style": "outline", + "tags": "marquis,select all", + "set_id": 1 + }, + { + "name": "selection-background-thin", + "content": "", + "style": "outline", + "tags": "marquis", + "set_id": 1 + }, + { + "name": "selection-foreground-thin", + "content": "", + "style": "outline", + "tags": "marquis", + "set_id": 1 + }, + { + "name": "selection-inverse-thin", + "content": "", + "style": "outline", + "tags": "marquis,invert", + "set_id": 1 + }, + { + "name": "selection-plus-thin", + "content": "", + "style": "outline", + "tags": "marquis,add", + "set_id": 1 + }, + { + "name": "selection-slash-thin", + "content": "", + "style": "outline", + "tags": "marquis,unselect", + "set_id": 1 + }, + { + "name": "shapes-thin", + "content": "", + "style": "outline", + "tags": "geometry,square,circle,triangle", + "set_id": 1 + }, + { + "name": "share-thin", + "content": "", + "style": "outline", + "tags": "send to,export,arrows", + "set_id": 1 + }, + { + "name": "share-fat-thin", + "content": "", + "style": "outline", + "tags": "export,send to", + "set_id": 1 + }, + { + "name": "share-network-thin", + "content": "", + "style": "outline", + "tags": "send to,export", + "set_id": 1 + }, + { + "name": "shield-thin", + "content": "", + "style": "outline", + "tags": "badge,security,secured,defense,defended,authentication,authenticated,guarded,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "shield-check-thin", + "content": "", + "style": "outline", + "tags": "badge,security,defense,authentication,authenticated,guarded,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "shield-checkered-thin", + "content": "", + "style": "outline", + "tags": "badge,security,defense,authentication,authenticated,guarded,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "shield-chevron-thin", + "content": "", + "style": "outline", + "tags": "badge,security,defense,authentication,authenticated,guarded,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "shield-plus-thin", + "content": "", + "style": "outline", + "tags": "badge,security,defense,authentication,authenticated,guarded,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "shield-slash-thin", + "content": "", + "style": "outline", + "tags": "badge,security,unsecured,defense,undefended,authentication,unauthenticated,unguarded,unlocked,unencrypted,encryption,disabled", + "set_id": 1 + }, + { + "name": "shield-star-thin", + "content": "", + "style": "outline", + "tags": "badge,security,defense,authentication,authenticated,guarded,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "shield-warning-thin", + "content": "", + "style": "outline", + "tags": "badge,security,unsecured,defense,undefended,authentication,unauthenticated,unguarded,unlocked,unencrypted,encryption,errors", + "set_id": 1 + }, + { + "name": "shipping-container-thin", + "content": "", + "style": "outline", + "tags": "*new*,shipping,transportation,places,locations", + "set_id": 1 + }, + { + "name": "shirt-folded-thin", + "content": "", + "style": "outline", + "tags": "clothes,clothing", + "set_id": 1 + }, + { + "name": "shooting-star-thin", + "content": "", + "style": "outline", + "tags": "wish,comet,meteor", + "set_id": 1 + }, + { + "name": "shopping-bag-thin", + "content": "", + "style": "outline", + "tags": "ecommerce,market,basket,cart,buying,checkout,places,locations", + "set_id": 1 + }, + { + "name": "shopping-bag-open-thin", + "content": "", + "style": "outline", + "tags": "ecommerce,market,basket,cart,buying,checkout,places,locations", + "set_id": 1 + }, + { + "name": "shopping-cart-thin", + "content": "", + "style": "outline", + "tags": "ecommerce,market,basket,buying,groceries,checkout,places,locations", + "set_id": 1 + }, + { + "name": "shopping-cart-simple-thin", + "content": "", + "style": "outline", + "tags": "ecommerce,market,basket,buying,groceries,checkout,places,locations", + "set_id": 1 + }, + { + "name": "shovel-thin", + "content": "", + "style": "outline", + "tags": "*new*,tools,digging,construction", + "set_id": 1 + }, + { + "name": "shower-thin", + "content": "", + "style": "outline", + "tags": "bath,bathtub,bathroom,faucet", + "set_id": 1 + }, + { + "name": "shrimp-thin", + "content": "", + "style": "outline", + "tags": "food,seafood,prawn", + "set_id": 1 + }, + { + "name": "shuffle-thin", + "content": "", + "style": "outline", + "tags": "music,audio,randomize,crossed", + "set_id": 1 + }, + { + "name": "shuffle-angular-thin", + "content": "", + "style": "outline", + "tags": "music,audio,randomize,crossed", + "set_id": 1 + }, + { + "name": "shuffle-simple-thin", + "content": "", + "style": "outline", + "tags": "music,audio,randomize,crossed", + "set_id": 1 + }, + { + "name": "sidebar-thin", + "content": "", + "style": "outline", + "tags": "left rail,wireframe,ui,interface", + "set_id": 1 + }, + { + "name": "sidebar-simple-thin", + "content": "", + "style": "outline", + "tags": "left rail,wireframe,ui,interface", + "set_id": 1 + }, + { + "name": "sigma-thin", + "content": "", + "style": "outline", + "tags": "σ,symbol,mathematics,sum", + "set_id": 1 + }, + { + "name": "sign-in-thin", + "content": "", + "style": "outline", + "tags": "*updated*,signin,login,log in,enter", + "set_id": 1 + }, + { + "name": "sign-out-thin", + "content": "", + "style": "outline", + "tags": "*updated*,signout,logout,log out,exit", + "set_id": 1 + }, + { + "name": "signature-thin", + "content": "", + "style": "outline", + "tags": "*updated*,sign,autograph,verify", + "set_id": 1 + }, + { + "name": "signpost-thin", + "content": "", + "style": "outline", + "tags": "direction,traffic,road sign,transit,transportation", + "set_id": 1 + }, + { + "name": "sim-card-thin", + "content": "", + "style": "outline", + "tags": "*updated*,cellular,cellphone,mobile", + "set_id": 1 + }, + { + "name": "siren-thin", + "content": "", + "style": "outline", + "tags": "alarm,police,lights,warning", + "set_id": 1 + }, + { + "name": "sketch-logo-thin", + "content": "", + "style": "outline", + "tags": "drawing,art,illustration,ui,interface,prototype,prototyping,gemstone,diamond", + "set_id": 1 + }, + { + "name": "skip-back-thin", + "content": "", + "style": "outline", + "tags": "music,audio,seek,scrub,scan,back,backwards,reverse,previous", + "set_id": 1 + }, + { + "name": "skip-back-circle-thin", + "content": "", + "style": "outline", + "tags": "music,audio,seek,scrub,scan,back,backwards,reverse,previous", + "set_id": 1 + }, + { + "name": "skip-forward-thin", + "content": "", + "style": "outline", + "tags": "music,audio,seek,scrub,scan,ahead,next", + "set_id": 1 + }, + { + "name": "skip-forward-circle-thin", + "content": "", + "style": "outline", + "tags": "music,audio,seek,scrub,scan,ahead,next", + "set_id": 1 + }, + { + "name": "skull-thin", + "content": "", + "style": "outline", + "tags": "death,dead,kill", + "set_id": 1 + }, + { + "name": "skype-logo-thin", + "content": "", + "style": "outline", + "tags": "*new*,chat,video conference", + "set_id": 1 + }, + { + "name": "slack-logo-thin", + "content": "", + "style": "outline", + "tags": "logos,messaging", + "set_id": 1 + }, + { + "name": "sliders-thin", + "content": "", + "style": "outline", + "tags": "music,audio,faders,filters,equalizer,volume,settings,preferences", + "set_id": 1 + }, + { + "name": "sliders-horizontal-thin", + "content": "", + "style": "outline", + "tags": "music,audio,faders,filters,equalizer,volume,settings,preferences", + "set_id": 1 + }, + { + "name": "slideshow-thin", + "content": "", + "style": "outline", + "tags": "pictures,images,photography,gallery,carousel", + "set_id": 1 + }, + { + "name": "smiley-thin", + "content": "", + "style": "outline", + "tags": "face,emoji,happy,grinning,smiling", + "set_id": 1 + }, + { + "name": "smiley-angry-thin", + "content": "", + "style": "outline", + "tags": "face,emoji,mad,frown", + "set_id": 1 + }, + { + "name": "smiley-blank-thin", + "content": "", + "style": "outline", + "tags": "face,emoji,unimpressed,no face", + "set_id": 1 + }, + { + "name": "smiley-meh-thin", + "content": "", + "style": "outline", + "tags": "face,emoji,unimpressed,neutral", + "set_id": 1 + }, + { + "name": "smiley-melting-thin", + "content": "", + "style": "outline", + "tags": "*new*,face,emoji,embarrassment,sarcasm,shame,hot,heat", + "set_id": 1 + }, + { + "name": "smiley-nervous-thin", + "content": "", + "style": "outline", + "tags": "*updated*,face,emoji,anxious,uncomfortable,uneasy,queasy,sick,ill", + "set_id": 1 + }, + { + "name": "smiley-sad-thin", + "content": "", + "style": "outline", + "tags": "face,emoji,unhappy,frowning", + "set_id": 1 + }, + { + "name": "smiley-sticker-thin", + "content": "", + "style": "outline", + "tags": "face,emoji,happy,grinning,smiling", + "set_id": 1 + }, + { + "name": "smiley-wink-thin", + "content": "", + "style": "outline", + "tags": "face,emoji,winking,flirting,cute", + "set_id": 1 + }, + { + "name": "smiley-x-eyes-thin", + "content": "", + "style": "outline", + "tags": "face,emoji,dead,killed,unconscious", + "set_id": 1 + }, + { + "name": "snapchat-logo-thin", + "content": "", + "style": "outline", + "tags": "logos,messaging,social media", + "set_id": 1 + }, + { + "name": "sneaker-thin", + "content": "", + "style": "outline", + "tags": "clothes,clothing,shoes,trainers,sports", + "set_id": 1 + }, + { + "name": "sneaker-move-thin", + "content": "", + "style": "outline", + "tags": "*updated*,clothes,clothing,shoes,trainers,sports", + "set_id": 1 + }, + { + "name": "snowflake-thin", + "content": "", + "style": "outline", + "tags": "meteorology,snowy,snowing,snowstorm", + "set_id": 1 + }, + { + "name": "soccer-ball-thin", + "content": "", + "style": "outline", + "tags": "*updated*,sports,football,mls", + "set_id": 1 + }, + { + "name": "sock-thin", + "content": "", + "style": "outline", + "tags": "*new*,clothes,clothing", + "set_id": 1 + }, + { + "name": "solar-panel-thin", + "content": "", + "style": "outline", + "tags": "*new*,renewable,energy,power,electricity", + "set_id": 1 + }, + { + "name": "solar-roof-thin", + "content": "", + "style": "outline", + "tags": "*new*,renewable,energy,power,electricity", + "set_id": 1 + }, + { + "name": "sort-ascending-thin", + "content": "", + "style": "outline", + "tags": "*updated*,sorted,sorting,increasing,a to z,arrows,list", + "set_id": 1 + }, + { + "name": "sort-descending-thin", + "content": "", + "style": "outline", + "tags": "*updated*,sorted,sorting,decreasing,z to a,arrows,list", + "set_id": 1 + }, + { + "name": "soundcloud-logo-thin", + "content": "", + "style": "outline", + "tags": "music,social media,logos", + "set_id": 1 + }, + { + "name": "spade-thin", + "content": "", + "style": "outline", + "tags": "spades,suits,cards,gambling,casino,gaming", + "set_id": 1 + }, + { + "name": "sparkle-thin", + "content": "", + "style": "outline", + "tags": "star,rate,ratings,favorites,favorited", + "set_id": 1 + }, + { + "name": "speaker-hifi-thin", + "content": "", + "style": "outline", + "tags": "music,audio,sound,stereo", + "set_id": 1 + }, + { + "name": "speaker-high-thin", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,volume,sound", + "set_id": 1 + }, + { + "name": "speaker-low-thin", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,volume,sound", + "set_id": 1 + }, + { + "name": "speaker-none-thin", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,muted,volume,sound", + "set_id": 1 + }, + { + "name": "speaker-simple-high-thin", + "content": "", + "style": "outline", + "tags": "music,audio,volume,sound", + "set_id": 1 + }, + { + "name": "speaker-simple-low-thin", + "content": "", + "style": "outline", + "tags": "music,audio,volume,sound", + "set_id": 1 + }, + { + "name": "speaker-simple-none-thin", + "content": "", + "style": "outline", + "tags": "music,audio,muted,volume,sound", + "set_id": 1 + }, + { + "name": "speaker-simple-slash-thin", + "content": "", + "style": "outline", + "tags": "music,audio,muted,volume,sound,disabled", + "set_id": 1 + }, + { + "name": "speaker-simple-x-thin", + "content": "", + "style": "outline", + "tags": "music,audio,muted,volume,sound,disabled,errors", + "set_id": 1 + }, + { + "name": "speaker-slash-thin", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,muted,volume,sound,disabled", + "set_id": 1 + }, + { + "name": "speaker-x-thin", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,muted,volume,sound,disabled,errors", + "set_id": 1 + }, + { + "name": "speedometer-thin", + "content": "", + "style": "outline", + "tags": "*new*,gauge,dashboard,meter,speed,odometer,performance", + "set_id": 1 + }, + { + "name": "sphere-thin", + "content": "", + "style": "outline", + "tags": "*new*,circle,ball,3d,mesh,cad,model", + "set_id": 1 + }, + { + "name": "spinner-thin", + "content": "", + "style": "outline", + "tags": "loading,loader,waiting,progress", + "set_id": 1 + }, + { + "name": "spinner-ball-thin", + "content": "", + "style": "outline", + "tags": "*new*,loading,loader,waiting,progress", + "set_id": 1 + }, + { + "name": "spinner-gap-thin", + "content": "", + "style": "outline", + "tags": "loading,loader,waiting,progress", + "set_id": 1 + }, + { + "name": "spiral-thin", + "content": "", + "style": "outline", + "tags": "*updated*,spin,rotate,dizzy", + "set_id": 1 + }, + { + "name": "split-horizontal-thin", + "content": "", + "style": "outline", + "tags": "resize,columns", + "set_id": 1 + }, + { + "name": "split-vertical-thin", + "content": "", + "style": "outline", + "tags": "resize,rows", + "set_id": 1 + }, + { + "name": "spotify-logo-thin", + "content": "", + "style": "outline", + "tags": "music,player,streaming", + "set_id": 1 + }, + { + "name": "spray-bottle-thin", + "content": "", + "style": "outline", + "tags": "*new*,cleaner,cleaning", + "set_id": 1 + }, + { + "name": "square-thin", + "content": "", + "style": "outline", + "tags": "4,shapes,polygons,box", + "set_id": 1 + }, + { + "name": "square-half-thin", + "content": "", + "style": "outline", + "tags": "4,shapes,polygons,box,columns,sidebar,split vertical", + "set_id": 1 + }, + { + "name": "square-half-bottom-thin", + "content": "", + "style": "outline", + "tags": "4,shapes,polygons,box,columns,sidebar,split vertical", + "set_id": 1 + }, + { + "name": "square-logo-thin", + "content": "", + "style": "outline", + "tags": "squareup,payment", + "set_id": 1 + }, + { + "name": "square-split-horizontal-thin", + "content": "", + "style": "outline", + "tags": "shapes,polygons,columns", + "set_id": 1 + }, + { + "name": "square-split-vertical-thin", + "content": "", + "style": "outline", + "tags": "shapes,polygons,rows", + "set_id": 1 + }, + { + "name": "squares-four-thin", + "content": "", + "style": "outline", + "tags": "4,shapes,polygons,apps,applications,grid,table,microsoft,logos", + "set_id": 1 + }, + { + "name": "stack-thin", + "content": "", + "style": "outline", + "tags": "cards,layers", + "set_id": 1 + }, + { + "name": "stack-minus-thin", + "content": "", + "style": "outline", + "tags": "*new*,cards,layers,remove,delete", + "set_id": 1 + }, + { + "name": "stack-overflow-logo-thin", + "content": "", + "style": "outline", + "tags": "logos,code", + "set_id": 1 + }, + { + "name": "stack-plus-thin", + "content": "", + "style": "outline", + "tags": "*new*,cards,layers,add", + "set_id": 1 + }, + { + "name": "stack-simple-thin", + "content": "", + "style": "outline", + "tags": "cards,layers", + "set_id": 1 + }, + { + "name": "stairs-thin", + "content": "", + "style": "outline", + "tags": "staircase,steps,escalator,exit,signs", + "set_id": 1 + }, + { + "name": "stamp-thin", + "content": "", + "style": "outline", + "tags": "clone,seal,official", + "set_id": 1 + }, + { + "name": "standard-definition-thin", + "content": "", + "style": "outline", + "tags": "*new*,sd,resolution,video", + "set_id": 1 + }, + { + "name": "star-thin", + "content": "", + "style": "outline", + "tags": "rate,ratings,favorites,favorited", + "set_id": 1 + }, + { + "name": "star-and-crescent-thin", + "content": "", + "style": "outline", + "tags": "islam,muslim,moon,religion,worship,symbol", + "set_id": 1 + }, + { + "name": "star-four-thin", + "content": "", + "style": "outline", + "tags": "rate,ratings,favorites,favorited", + "set_id": 1 + }, + { + "name": "star-half-thin", + "content": "", + "style": "outline", + "tags": "rate,ratings", + "set_id": 1 + }, + { + "name": "star-of-david-thin", + "content": "", + "style": "outline", + "tags": "judaism,jewish,hexagram,religion,worship,symbol", + "set_id": 1 + }, + { + "name": "steam-logo-thin", + "content": "", + "style": "outline", + "tags": "*new*,gaming,games", + "set_id": 1 + }, + { + "name": "steering-wheel-thin", + "content": "", + "style": "outline", + "tags": "cars,vehicles,automobiles,driving", + "set_id": 1 + }, + { + "name": "steps-thin", + "content": "", + "style": "outline", + "tags": "stairs,staircase,exit,signs", + "set_id": 1 + }, + { + "name": "stethoscope-thin", + "content": "", + "style": "outline", + "tags": "hospital,medical,medicine,injury,safety,emergency,doctor,heart", + "set_id": 1 + }, + { + "name": "sticker-thin", + "content": "", + "style": "outline", + "tags": "stickers,sticker pack,labels", + "set_id": 1 + }, + { + "name": "stool-thin", + "content": "", + "style": "outline", + "tags": "chair,seat,furniture", + "set_id": 1 + }, + { + "name": "stop-thin", + "content": "", + "style": "outline", + "tags": "music,audio", + "set_id": 1 + }, + { + "name": "stop-circle-thin", + "content": "", + "style": "outline", + "tags": "music,audio,round", + "set_id": 1 + }, + { + "name": "storefront-thin", + "content": "", + "style": "outline", + "tags": "shops,shopping,markets,stores,buildings,places,locations", + "set_id": 1 + }, + { + "name": "strategy-thin", + "content": "", + "style": "outline", + "tags": "sports,strategem,plan,tic-tac-toe", + "set_id": 1 + }, + { + "name": "stripe-logo-thin", + "content": "", + "style": "outline", + "tags": "payment", + "set_id": 1 + }, + { + "name": "student-thin", + "content": "", + "style": "outline", + "tags": "pupil,graduate,classroom,teacher,education,school,college,university", + "set_id": 1 + }, + { + "name": "subset-of-thin", + "content": "", + "style": "outline", + "tags": "*new*,⊆,subset of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "subset-proper-of-thin", + "content": "", + "style": "outline", + "tags": "*new*,⊂,proper subset of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "subtitles-thin", + "content": "", + "style": "outline", + "tags": "subtitles,television,tv,transcribed,transcription,accessibility,a11y", + "set_id": 1 + }, + { + "name": "subtitles-slash-thin", + "content": "", + "style": "outline", + "tags": "*new*,subtitles,television,tv,transcribed,transcription,accessibility,a11y,disabled", + "set_id": 1 + }, + { + "name": "subtract-thin", + "content": "", + "style": "outline", + "tags": "boolean,intersection,combine,split,merge,union", + "set_id": 1 + }, + { + "name": "subtract-square-thin", + "content": "", + "style": "outline", + "tags": "boolean,intersection,combine,split,merge,union", + "set_id": 1 + }, + { + "name": "subway-thin", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,underground,train,tunnel,metro,light rail,public transit,transportation,commuter,traveling,places,locations", + "set_id": 1 + }, + { + "name": "suitcase-thin", + "content": "", + "style": "outline", + "tags": "briefcase,valise,baggage,folders,portfolio", + "set_id": 1 + }, + { + "name": "suitcase-rolling-thin", + "content": "", + "style": "outline", + "tags": "suitcase,luggage,travel,transportation", + "set_id": 1 + }, + { + "name": "suitcase-simple-thin", + "content": "", + "style": "outline", + "tags": "briefcase,valise,baggage,folders,portfolio", + "set_id": 1 + }, + { + "name": "sun-thin", + "content": "", + "style": "outline", + "tags": "day,daytime,daylight,clear,sunny,sunshine,light mode,brightness,lighten,brighten", + "set_id": 1 + }, + { + "name": "sun-dim-thin", + "content": "", + "style": "outline", + "tags": "day,daytime,daylight,clear,sunny,sunshine,light mode,brightness,darken", + "set_id": 1 + }, + { + "name": "sun-horizon-thin", + "content": "", + "style": "outline", + "tags": "day,daytime,daylight,clear,sunny,sunshine,sunrise,sunset", + "set_id": 1 + }, + { + "name": "sunglasses-thin", + "content": "", + "style": "outline", + "tags": "vision,sun,spectacles", + "set_id": 1 + }, + { + "name": "superset-of-thin", + "content": "", + "style": "outline", + "tags": "*new*,⊇,superset of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "superset-proper-of-thin", + "content": "", + "style": "outline", + "tags": "*new*,⊃,proper superset of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "swap-thin", + "content": "", + "style": "outline", + "tags": "layers,replace,exchange,reverse", + "set_id": 1 + }, + { + "name": "swatches-thin", + "content": "", + "style": "outline", + "tags": "colors,color picker,samples,pantone", + "set_id": 1 + }, + { + "name": "swimming-pool-thin", + "content": "", + "style": "outline", + "tags": "swim,sports,exercise,olympics,aquatics", + "set_id": 1 + }, + { + "name": "sword-thin", + "content": "", + "style": "outline", + "tags": "weapon,knife,dagger,gladius,video games,rpg,gaming,war", + "set_id": 1 + }, + { + "name": "synagogue-thin", + "content": "", + "style": "outline", + "tags": "jewish,judaism,temple,religion,worship", + "set_id": 1 + }, + { + "name": "syringe-thin", + "content": "", + "style": "outline", + "tags": "needle,hypodermic,vaccine,medicine,doctor,shot,hospital", + "set_id": 1 + }, + { + "name": "t-shirt-thin", + "content": "", + "style": "outline", + "tags": "clothes,clothing", + "set_id": 1 + }, + { + "name": "table-thin", + "content": "", + "style": "outline", + "tags": "tables,tabular,speadsheets,excel,grid,form", + "set_id": 1 + }, + { + "name": "tabs-thin", + "content": "", + "style": "outline", + "tags": "*updated*,browser,window,folders,files", + "set_id": 1 + }, + { + "name": "tag-thin", + "content": "", + "style": "outline", + "tags": "tags,hashtag,labels,sale,sell,price,discount", + "set_id": 1 + }, + { + "name": "tag-chevron-thin", + "content": "", + "style": "outline", + "tags": "tags,hashtag,labels,sale", + "set_id": 1 + }, + { + "name": "tag-simple-thin", + "content": "", + "style": "outline", + "tags": "tags,hashtag,labels,sale,sell,price,discount", + "set_id": 1 + }, + { + "name": "target-thin", + "content": "", + "style": "outline", + "tags": "bullseye,radar,archery,accuracy,precision", + "set_id": 1 + }, + { + "name": "taxi-thin", + "content": "", + "style": "outline", + "tags": "*updated*,vehicles,cars,automobiles,livery,limousine,uber", + "set_id": 1 + }, + { + "name": "tea-bag-thin", + "content": "", + "style": "outline", + "tags": "*new*,drinks,beverages,sachet,caffeine,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "telegram-logo-thin", + "content": "", + "style": "outline", + "tags": "logos,messages,messaging", + "set_id": 1 + }, + { + "name": "television-thin", + "content": "", + "style": "outline", + "tags": "screen,tv,displays", + "set_id": 1 + }, + { + "name": "television-simple-thin", + "content": "", + "style": "outline", + "tags": "*updated*,screen,tv,displays", + "set_id": 1 + }, + { + "name": "tennis-ball-thin", + "content": "", + "style": "outline", + "tags": "sports,mlb", + "set_id": 1 + }, + { + "name": "tent-thin", + "content": "", + "style": "outline", + "tags": "camping,outdoors,tarp", + "set_id": 1 + }, + { + "name": "terminal-thin", + "content": "", + "style": "outline", + "tags": "command line,cli,bash,shell,caret,console", + "set_id": 1 + }, + { + "name": "terminal-window-thin", + "content": "", + "style": "outline", + "tags": "command line,cli,bash,shell,caret,console", + "set_id": 1 + }, + { + "name": "test-tube-thin", + "content": "", + "style": "outline", + "tags": "science,chemistry,experiment,vial", + "set_id": 1 + }, + { + "name": "text-a-underline-thin", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font,underscore,emphasis", + "set_id": 1 + }, + { + "name": "text-aa-thin", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font", + "set_id": 1 + }, + { + "name": "text-align-center-thin", + "content": "", + "style": "outline", + "tags": "*updated*,typography,print,font,alignment,centered", + "set_id": 1 + }, + { + "name": "text-align-justify-thin", + "content": "", + "style": "outline", + "tags": "*updated*,typography,print,font,alignment,justified", + "set_id": 1 + }, + { + "name": "text-align-left-thin", + "content": "", + "style": "outline", + "tags": "*updated*,typography,print,font,alignment,flush left", + "set_id": 1 + }, + { + "name": "text-align-right-thin", + "content": "", + "style": "outline", + "tags": "*updated*,typography,print,font,alignment,flush right", + "set_id": 1 + }, + { + "name": "text-b-thin", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font,bold,boldface,emphasis", + "set_id": 1 + }, + { + "name": "text-columns-thin", + "content": "", + "style": "outline", + "tags": "*updated*,typography,print,font,alignment,article", + "set_id": 1 + }, + { + "name": "text-h-thin", + "content": "", + "style": "outline", + "tags": "heading,typography,print", + "set_id": 1 + }, + { + "name": "text-h-five-thin", + "content": "", + "style": "outline", + "tags": "heading,h5,typography,print", + "set_id": 1 + }, + { + "name": "text-h-four-thin", + "content": "", + "style": "outline", + "tags": "*updated*,heading,h4,typography,print", + "set_id": 1 + }, + { + "name": "text-h-one-thin", + "content": "", + "style": "outline", + "tags": "heading,h1,typography,print", + "set_id": 1 + }, + { + "name": "text-h-six-thin", + "content": "", + "style": "outline", + "tags": "heading,h6,typography,print", + "set_id": 1 + }, + { + "name": "text-h-three-thin", + "content": "", + "style": "outline", + "tags": "heading,h3,typography,print", + "set_id": 1 + }, + { + "name": "text-h-two-thin", + "content": "", + "style": "outline", + "tags": "heading,h2,typography,print", + "set_id": 1 + }, + { + "name": "text-indent-thin", + "content": "", + "style": "outline", + "tags": "*updated*,alignment,tab,menu", + "set_id": 1 + }, + { + "name": "text-italic-thin", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font,slant,oblique,stress,emphasis,calligraphy", + "set_id": 1 + }, + { + "name": "text-outdent-thin", + "content": "", + "style": "outline", + "tags": "*updated*,alignment,tab,unindent,dedent,menu", + "set_id": 1 + }, + { + "name": "text-strikethrough-thin", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font,struck,remove,delete,change", + "set_id": 1 + }, + { + "name": "text-subscript-thin", + "content": "", + "style": "outline", + "tags": "*new*,typography,font,formatting,mathematics,power,exponent,calculator", + "set_id": 1 + }, + { + "name": "text-superscript-thin", + "content": "", + "style": "outline", + "tags": "*new*,typography,font,formatting,mathematics,calculator", + "set_id": 1 + }, + { + "name": "text-t-thin", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font", + "set_id": 1 + }, + { + "name": "text-t-slash-thin", + "content": "", + "style": "outline", + "tags": "*new*,typography,typeface,print,font,formatting,clear", + "set_id": 1 + }, + { + "name": "text-underline-thin", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font,underscore,emphasis", + "set_id": 1 + }, + { + "name": "textbox-thin", + "content": "", + "style": "outline", + "tags": "input,cursor,field", + "set_id": 1 + }, + { + "name": "thermometer-thin", + "content": "", + "style": "outline", + "tags": "meteorology,temperature,degrees,°,celcius,centigrade,kelvin,fahrenheit,hot,warm,cold", + "set_id": 1 + }, + { + "name": "thermometer-cold-thin", + "content": "", + "style": "outline", + "tags": "meteorology,temperature,degrees,°,celcius,centigrade,kelvin,fahrenheit", + "set_id": 1 + }, + { + "name": "thermometer-hot-thin", + "content": "", + "style": "outline", + "tags": "meteorology,temperature,degrees,°,celcius,centigrade,kelvin,fahrenheit,warm", + "set_id": 1 + }, + { + "name": "thermometer-simple-thin", + "content": "", + "style": "outline", + "tags": "meteorology,temperature,degrees,°,celcius,centigrade,kelvin,fahrenheit,hot,warm,cold", + "set_id": 1 + }, + { + "name": "threads-logo-thin", + "content": "", + "style": "outline", + "tags": "*new*,meta,instagram,social media", + "set_id": 1 + }, + { + "name": "three-d-thin", + "content": "", + "style": "outline", + "tags": "*new*,3d,cad,model", + "set_id": 1 + }, + { + "name": "thumbs-down-thin", + "content": "", + "style": "outline", + "tags": "dislike,hate,emoji,no", + "set_id": 1 + }, + { + "name": "thumbs-up-thin", + "content": "", + "style": "outline", + "tags": "like,love,favorited,favorites,emoji,yes", + "set_id": 1 + }, + { + "name": "ticket-thin", + "content": "", + "style": "outline", + "tags": "ticketstub,movie ticket,entry,admissions,events", + "set_id": 1 + }, + { + "name": "tidal-logo-thin", + "content": "", + "style": "outline", + "tags": "music,logos", + "set_id": 1 + }, + { + "name": "tiktok-logo-thin", + "content": "", + "style": "outline", + "tags": "logos,social media", + "set_id": 1 + }, + { + "name": "tilde-thin", + "content": "", + "style": "outline", + "tags": "*new*,~,∼,proportional,comparison,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "timer-thin", + "content": "", + "style": "outline", + "tags": "clock,alarm,schedule,events,stopwatch,sports", + "set_id": 1 + }, + { + "name": "tip-jar-thin", + "content": "", + "style": "outline", + "tags": "*new*,give,deposit,donation,savings,money", + "set_id": 1 + }, + { + "name": "tipi-thin", + "content": "", + "style": "outline", + "tags": "teepee,lodge,tent,outdoors,camping,tarp", + "set_id": 1 + }, + { + "name": "tire-thin", + "content": "", + "style": "outline", + "tags": "*new*,wheel,vehicles,transportation", + "set_id": 1 + }, + { + "name": "toggle-left-thin", + "content": "", + "style": "outline", + "tags": "switch,controls,settings,preferences", + "set_id": 1 + }, + { + "name": "toggle-right-thin", + "content": "", + "style": "outline", + "tags": "switch,controls,settings,preferences", + "set_id": 1 + }, + { + "name": "toilet-thin", + "content": "", + "style": "outline", + "tags": "bathroom,restroom,lavatory,water closet", + "set_id": 1 + }, + { + "name": "toilet-paper-thin", + "content": "", + "style": "outline", + "tags": "bathroom,restroom,lavatory,water closet", + "set_id": 1 + }, + { + "name": "toolbox-thin", + "content": "", + "style": "outline", + "tags": "tools,carpentry,construction", + "set_id": 1 + }, + { + "name": "tooth-thin", + "content": "", + "style": "outline", + "tags": "teeth,dentistry,medical,medicine,doctor,cavity", + "set_id": 1 + }, + { + "name": "tornado-thin", + "content": "", + "style": "outline", + "tags": "*new*,meteorology,twister,storm,wind,disaster", + "set_id": 1 + }, + { + "name": "tote-thin", + "content": "", + "style": "outline", + "tags": "suitcases,valises,baggage,tote-bag,portfolios", + "set_id": 1 + }, + { + "name": "tote-simple-thin", + "content": "", + "style": "outline", + "tags": "suitcases,valises,baggage,tote-bag,portfolios", + "set_id": 1 + }, + { + "name": "towel-thin", + "content": "", + "style": "outline", + "tags": "*new*,clothing,linen,hotel,beach,pool,swimming,shower,bath", + "set_id": 1 + }, + { + "name": "tractor-thin", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,farmer,field,farming,agriculture", + "set_id": 1 + }, + { + "name": "trademark-thin", + "content": "", + "style": "outline", + "tags": "tm,®,™,intellectual property", + "set_id": 1 + }, + { + "name": "trademark-registered-thin", + "content": "", + "style": "outline", + "tags": "®,™,intellectual property", + "set_id": 1 + }, + { + "name": "traffic-cone-thin", + "content": "", + "style": "outline", + "tags": "pylon,safety,transit,transportation", + "set_id": 1 + }, + { + "name": "traffic-sign-thin", + "content": "", + "style": "outline", + "tags": "road signs,transit,transportation", + "set_id": 1 + }, + { + "name": "traffic-signal-thin", + "content": "", + "style": "outline", + "tags": "stop light,safety,transit,transportation", + "set_id": 1 + }, + { + "name": "train-thin", + "content": "", + "style": "outline", + "tags": "vehicles,subway,light rail,public transit,transportation,commuter,traveling,places,locations", + "set_id": 1 + }, + { + "name": "train-regional-thin", + "content": "", + "style": "outline", + "tags": "vehicles,subway,railroad,public transit,transportation,commuter,freight,shipping,traveling,places,locations", + "set_id": 1 + }, + { + "name": "train-simple-thin", + "content": "", + "style": "outline", + "tags": "vehicles,subway,light rail,public transit,transportation,commuter,traveling,places,locations", + "set_id": 1 + }, + { + "name": "tram-thin", + "content": "", + "style": "outline", + "tags": "vehicles,subway,railroad,public transit,transportation,commuter,light rail,shipping,traveling,places,locations", + "set_id": 1 + }, + { + "name": "translate-thin", + "content": "", + "style": "outline", + "tags": "translation,languages,internationalization,i18n,speech", + "set_id": 1 + }, + { + "name": "trash-thin", + "content": "", + "style": "outline", + "tags": "garbage,remove,delete,destroy,recycle,recycling", + "set_id": 1 + }, + { + "name": "trash-simple-thin", + "content": "", + "style": "outline", + "tags": "garbage,remove,delete,destroy,recycle,recycling", + "set_id": 1 + }, + { + "name": "tray-thin", + "content": "", + "style": "outline", + "tags": "inbox,mailbox,bin", + "set_id": 1 + }, + { + "name": "tray-arrow-down-thin", + "content": "", + "style": "outline", + "tags": "inbox,saved,saving,archived,archiving,archival,downloaded,downloading", + "set_id": 1 + }, + { + "name": "tray-arrow-up-thin", + "content": "", + "style": "outline", + "tags": "*new*,outbox,archival,unarchive,uploaded,uploading", + "set_id": 1 + }, + { + "name": "treasure-chest-thin", + "content": "", + "style": "outline", + "tags": "*new*,loot,lootbox,inventory,rewards,gaming,pirate", + "set_id": 1 + }, + { + "name": "tree-thin", + "content": "", + "style": "outline", + "tags": "plants,branches,leaves,green,environmental", + "set_id": 1 + }, + { + "name": "tree-evergreen-thin", + "content": "", + "style": "outline", + "tags": "plants,branches,leaves,pine,conifer,green,environmental", + "set_id": 1 + }, + { + "name": "tree-palm-thin", + "content": "", + "style": "outline", + "tags": "tropical,beach,plants,branches,leaves,green,environmental", + "set_id": 1 + }, + { + "name": "tree-structure-thin", + "content": "", + "style": "outline", + "tags": "data structures,family tree,genealogy,hierarchy,taxonomy,charts,flowchart", + "set_id": 1 + }, + { + "name": "tree-view-thin", + "content": "", + "style": "outline", + "tags": "*new*,hierarchy", + "set_id": 1 + }, + { + "name": "trend-down-thin", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,analyze,analysis,decrease,arrows", + "set_id": 1 + }, + { + "name": "trend-up-thin", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,analyze,analysis,increase,arrows", + "set_id": 1 + }, + { + "name": "triangle-thin", + "content": "", + "style": "outline", + "tags": "3,shapes,polygons", + "set_id": 1 + }, + { + "name": "triangle-dashed-thin", + "content": "", + "style": "outline", + "tags": "*new*,3,shapes,polygons,missing", + "set_id": 1 + }, + { + "name": "trolley-thin", + "content": "", + "style": "outline", + "tags": "*new*,airport,briefcase,valise,baggage", + "set_id": 1 + }, + { + "name": "trolley-suitcase-thin", + "content": "", + "style": "outline", + "tags": "*new*,airport,briefcase,valise,baggage", + "set_id": 1 + }, + { + "name": "trophy-thin", + "content": "", + "style": "outline", + "tags": "ribbons,medals,winning,victory,awards,prize", + "set_id": 1 + }, + { + "name": "truck-thin", + "content": "", + "style": "outline", + "tags": "trucks,cars,vehicles,automobile,shipping,delivery", + "set_id": 1 + }, + { + "name": "truck-trailer-thin", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,automobile,shipping,tractor,semi", + "set_id": 1 + }, + { + "name": "tumblr-logo-thin", + "content": "", + "style": "outline", + "tags": "*new*,social media,logos", + "set_id": 1 + }, + { + "name": "twitch-logo-thin", + "content": "", + "style": "outline", + "tags": "logos,streaming,livestream,gaming,video games,social media", + "set_id": 1 + }, + { + "name": "twitter-logo-thin", + "content": "", + "style": "outline", + "tags": "logos,social media,tweets,birds", + "set_id": 1 + }, + { + "name": "umbrella-thin", + "content": "", + "style": "outline", + "tags": "raining,rainy,insurance", + "set_id": 1 + }, + { + "name": "umbrella-simple-thin", + "content": "", + "style": "outline", + "tags": "raining,rainy,insurance", + "set_id": 1 + }, + { + "name": "union-thin", + "content": "", + "style": "outline", + "tags": "*new*,∪,union,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "unite-thin", + "content": "", + "style": "outline", + "tags": "*updated*,round,join,union,merge,combine,intersecting,intersection", + "set_id": 1 + }, + { + "name": "unite-square-thin", + "content": "", + "style": "outline", + "tags": "join,union,merge,combine,intersecting,intersection", + "set_id": 1 + }, + { + "name": "upload-thin", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,uploaded,uploading,hard drive,disk", + "set_id": 1 + }, + { + "name": "upload-simple-thin", + "content": "", + "style": "outline", + "tags": "*updated*,saved,saving,archived,archiving,archival,uploaded,uploading,hard drive,disk", + "set_id": 1 + }, + { + "name": "usb-thin", + "content": "", + "style": "outline", + "tags": "serial,port,plug,peripheral,device", + "set_id": 1 + }, + { + "name": "user-thin", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,login", + "set_id": 1 + }, + { + "name": "user-check-thin", + "content": "", + "style": "outline", + "tags": "*new*,person,users,profile,account,contact,login,verified", + "set_id": 1 + }, + { + "name": "user-circle-thin", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,login", + "set_id": 1 + }, + { + "name": "user-circle-check-thin", + "content": "", + "style": "outline", + "tags": "*new*,person,users,profile,account,contact,login,verified", + "set_id": 1 + }, + { + "name": "user-circle-dashed-thin", + "content": "", + "style": "outline", + "tags": "*new*,person,users,profile,account,contact,login,pending,missing,removed", + "set_id": 1 + }, + { + "name": "user-circle-gear-thin", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,settings,preferences", + "set_id": 1 + }, + { + "name": "user-circle-minus-thin", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,delete,remove,-", + "set_id": 1 + }, + { + "name": "user-circle-plus-thin", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,add,create,+", + "set_id": 1 + }, + { + "name": "user-focus-thin", + "content": "", + "style": "outline", + "tags": "identification,biometrics,facial recognition,profile,person,account,autofocus", + "set_id": 1 + }, + { + "name": "user-gear-thin", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,settings,preferences", + "set_id": 1 + }, + { + "name": "user-list-thin", + "content": "", + "style": "outline", + "tags": "person,users,profiles,accounts,members,address book", + "set_id": 1 + }, + { + "name": "user-minus-thin", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,delete,remove,-", + "set_id": 1 + }, + { + "name": "user-plus-thin", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,add,create,+", + "set_id": 1 + }, + { + "name": "user-rectangle-thin", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,login", + "set_id": 1 + }, + { + "name": "user-sound-thin", + "content": "", + "style": "outline", + "tags": "*new*,person,users,profile,speech,speaking,voice", + "set_id": 1 + }, + { + "name": "user-square-thin", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,login", + "set_id": 1 + }, + { + "name": "user-switch-thin", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,login,logout,signin,signout,settings,preferences", + "set_id": 1 + }, + { + "name": "users-thin", + "content": "", + "style": "outline", + "tags": "user,group,team,people,profiles,accounts,contacts", + "set_id": 1 + }, + { + "name": "users-four-thin", + "content": "", + "style": "outline", + "tags": "user,group,team,department,community,people,profiles,accounts,contacts", + "set_id": 1 + }, + { + "name": "users-three-thin", + "content": "", + "style": "outline", + "tags": "user,group,team,community,people,profiles,accounts,contacts", + "set_id": 1 + }, + { + "name": "van-thin", + "content": "", + "style": "outline", + "tags": "westfalia,microbus,vanagon,cars,vehicles,automobile,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "vault-thin", + "content": "", + "style": "outline", + "tags": "safe,bank,security,secured,authentication,authenticated,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "vector-three-thin", + "content": "", + "style": "outline", + "tags": "*new*,3d,xyz,cartesian,coordinates,plane,volume,dimensions,mathematics", + "set_id": 1 + }, + { + "name": "vector-two-thin", + "content": "", + "style": "outline", + "tags": "*new*,2d,xy,cartesian,coordinates,plane,dimensions,mathematics", + "set_id": 1 + }, + { + "name": "vibrate-thin", + "content": "", + "style": "outline", + "tags": "audio,volume,viration,ringer,calls,silent,silenced", + "set_id": 1 + }, + { + "name": "video-thin", + "content": "", + "style": "outline", + "tags": "training,course,education,tutorial", + "set_id": 1 + }, + { + "name": "video-camera-thin", + "content": "", + "style": "outline", + "tags": "videography,films,movies,recording", + "set_id": 1 + }, + { + "name": "video-camera-slash-thin", + "content": "", + "style": "outline", + "tags": "videography,films,movies,recording,disabled", + "set_id": 1 + }, + { + "name": "video-conference-thin", + "content": "", + "style": "outline", + "tags": "*new*,video call,zoom,skype,discord,facetime,meeting", + "set_id": 1 + }, + { + "name": "vignette-thin", + "content": "", + "style": "outline", + "tags": "photography,darkroom,movie,analog", + "set_id": 1 + }, + { + "name": "vinyl-record-thin", + "content": "", + "style": "outline", + "tags": "recording,audio,album,music,ep,lp", + "set_id": 1 + }, + { + "name": "virtual-reality-thin", + "content": "", + "style": "outline", + "tags": "virtual reality,vr,headset,metaverse", + "set_id": 1 + }, + { + "name": "virus-thin", + "content": "", + "style": "outline", + "tags": "germs,disease,illness", + "set_id": 1 + }, + { + "name": "visor-thin", + "content": "", + "style": "outline", + "tags": "*new*,goggles,vision", + "set_id": 1 + }, + { + "name": "voicemail-thin", + "content": "", + "style": "outline", + "tags": "phonecalls,missed,recording,telephone,landline", + "set_id": 1 + }, + { + "name": "volleyball-thin", + "content": "", + "style": "outline", + "tags": "sports", + "set_id": 1 + }, + { + "name": "wall-thin", + "content": "", + "style": "outline", + "tags": "firewall,security,secured,blocks,bricks", + "set_id": 1 + }, + { + "name": "wallet-thin", + "content": "", + "style": "outline", + "tags": "money,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "warehouse-thin", + "content": "", + "style": "outline", + "tags": "storage,industry,manufacture,buildings,places,locations", + "set_id": 1 + }, + { + "name": "warning-thin", + "content": "", + "style": "outline", + "tags": "alert,danger,dangerous,caution,errors", + "set_id": 1 + }, + { + "name": "warning-circle-thin", + "content": "", + "style": "outline", + "tags": "alert,danger,dangerous,caution,errors,round", + "set_id": 1 + }, + { + "name": "warning-diamond-thin", + "content": "", + "style": "outline", + "tags": "alert,danger,dangerous,caution,errors", + "set_id": 1 + }, + { + "name": "warning-octagon-thin", + "content": "", + "style": "outline", + "tags": "alert,danger,dangerous,caution,errors,8,eight", + "set_id": 1 + }, + { + "name": "washing-machine-thin", + "content": "", + "style": "outline", + "tags": "*new*,clothing,laundry,cleaning", + "set_id": 1 + }, + { + "name": "watch-thin", + "content": "", + "style": "outline", + "tags": "times,timer,alarm,schedule,events,clock,wristwatch,wearable", + "set_id": 1 + }, + { + "name": "wave-sawtooth-thin", + "content": "", + "style": "outline", + "tags": "synth,synthesizer,sound,audio,music,waveform", + "set_id": 1 + }, + { + "name": "wave-sine-thin", + "content": "", + "style": "outline", + "tags": "synth,synthesizer,sound,audio,music,waveform", + "set_id": 1 + }, + { + "name": "wave-square-thin", + "content": "", + "style": "outline", + "tags": "synth,synthesizer,sound,audio,music,waveform", + "set_id": 1 + }, + { + "name": "wave-triangle-thin", + "content": "", + "style": "outline", + "tags": "synth,synthesizer,sound,audio,music,waveform", + "set_id": 1 + }, + { + "name": "waveform-thin", + "content": "", + "style": "outline", + "tags": "*updated*,audio,sound,spectrum,spectrograph,music", + "set_id": 1 + }, + { + "name": "waveform-slash-thin", + "content": "", + "style": "outline", + "tags": "*new*,audio,sound,spectrum,spectrograph,music", + "set_id": 1 + }, + { + "name": "waves-thin", + "content": "", + "style": "outline", + "tags": "ocean,tides,surf", + "set_id": 1 + }, + { + "name": "webcam-thin", + "content": "", + "style": "outline", + "tags": "camera,video conference", + "set_id": 1 + }, + { + "name": "webcam-slash-thin", + "content": "", + "style": "outline", + "tags": "camera,video conference", + "set_id": 1 + }, + { + "name": "webhooks-logo-thin", + "content": "", + "style": "outline", + "tags": "api", + "set_id": 1 + }, + { + "name": "wechat-logo-thin", + "content": "", + "style": "outline", + "tags": "weixin,logos", + "set_id": 1 + }, + { + "name": "whatsapp-logo-thin", + "content": "", + "style": "outline", + "tags": "logos,messages,messaging", + "set_id": 1 + }, + { + "name": "wheelchair-thin", + "content": "", + "style": "outline", + "tags": "handicapped,medical,disabled,differently abled,accessible,accessibility,a11y", + "set_id": 1 + }, + { + "name": "wheelchair-motion-thin", + "content": "", + "style": "outline", + "tags": "handicapped,medical,disabled,differently abled,accessible,accessibility,a11y", + "set_id": 1 + }, + { + "name": "wifi-high-thin", + "content": "", + "style": "outline", + "tags": "wireless,internet,network,connection,connectivity", + "set_id": 1 + }, + { + "name": "wifi-low-thin", + "content": "", + "style": "outline", + "tags": "wireless,internet,network,connection,connectivity", + "set_id": 1 + }, + { + "name": "wifi-medium-thin", + "content": "", + "style": "outline", + "tags": "wireless,internet,network,connection,connectivity", + "set_id": 1 + }, + { + "name": "wifi-none-thin", + "content": "", + "style": "outline", + "tags": "wireless,internet,network,connection,connectivity", + "set_id": 1 + }, + { + "name": "wifi-slash-thin", + "content": "", + "style": "outline", + "tags": "wireless,internet,network,connection,connectivity,disabled,disconnected", + "set_id": 1 + }, + { + "name": "wifi-x-thin", + "content": "", + "style": "outline", + "tags": "wireless,internet,network,connection,connectivity,disconnected,errors", + "set_id": 1 + }, + { + "name": "wind-thin", + "content": "", + "style": "outline", + "tags": "meteorology,windy,stormy,blustery,gusty,air", + "set_id": 1 + }, + { + "name": "windmill-thin", + "content": "", + "style": "outline", + "tags": "*new*,turbine,energy,renewable,sustainability,countryside,landscape,green,power,buildings", + "set_id": 1 + }, + { + "name": "windows-logo-thin", + "content": "", + "style": "outline", + "tags": "microsoft,computers", + "set_id": 1 + }, + { + "name": "wine-thin", + "content": "", + "style": "outline", + "tags": "drinks,beverages,vineyard,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "wrench-thin", + "content": "", + "style": "outline", + "tags": "settings,setup,preferences,tools,machinery,mechanical,repairs", + "set_id": 1 + }, + { + "name": "x-thin", + "content": "", + "style": "outline", + "tags": "×,closed,cancelled,dismissed,times,multiply,mulitplication,product,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "x-circle-thin", + "content": "", + "style": "outline", + "tags": "closed,cancelled,dismissed,round", + "set_id": 1 + }, + { + "name": "x-logo-thin", + "content": "", + "style": "outline", + "tags": "*new*,twitter,logos,social media,tweets", + "set_id": 1 + }, + { + "name": "x-square-thin", + "content": "", + "style": "outline", + "tags": "closed,cancelled,dismissed", + "set_id": 1 + }, + { + "name": "yarn-thin", + "content": "", + "style": "outline", + "tags": "*new*,knitting,sewing", + "set_id": 1 + }, + { + "name": "yin-yang-thin", + "content": "", + "style": "outline", + "tags": "symbol,good,evil,black,white", + "set_id": 1 + }, + { + "name": "youtube-logo-thin", + "content": "", + "style": "outline", + "tags": "logos,google,videos,movies,social media", + "set_id": 1 + }, + { + "name": "acorn-light", + "content": "", + "style": "outline", + "tags": "*new*,savings,nut,vegetable,veggies,food,groceries,market", + "set_id": 1 + }, + { + "name": "address-book-light", + "content": "", + "style": "outline", + "tags": "contacts,directory,roledex", + "set_id": 1 + }, + { + "name": "address-book-tabs-light", + "content": "", + "style": "outline", + "tags": "*new*,contacts,directory,roledex", + "set_id": 1 + }, + { + "name": "air-traffic-control-light", + "content": "", + "style": "outline", + "tags": "airport,travel,transportation,buildings", + "set_id": 1 + }, + { + "name": "airplane-light", + "content": "", + "style": "outline", + "tags": "vehicles,airports,flights,flying,planes,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "airplane-in-flight-light", + "content": "", + "style": "outline", + "tags": "vehicles,airports,flights,flying,planes,transit,transportation,traveling,arrival", + "set_id": 1 + }, + { + "name": "airplane-landing-light", + "content": "", + "style": "outline", + "tags": "vehicles,airports,flights,flying,planes,transit,transportation,traveling,arrival", + "set_id": 1 + }, + { + "name": "airplane-takeoff-light", + "content": "", + "style": "outline", + "tags": "vehicles,airports,flights,flying,planes,transit,transportation,traveling,departure", + "set_id": 1 + }, + { + "name": "airplane-taxiing-light", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,airports,flights,flying,planes,transit,transportation,traveling,arrival", + "set_id": 1 + }, + { + "name": "airplane-tilt-light", + "content": "", + "style": "outline", + "tags": "vehicles,airports,flights,flying,planes,transit,transportation,traveling,departure", + "set_id": 1 + }, + { + "name": "airplay-light", + "content": "", + "style": "outline", + "tags": "apple,screencasting,television,tv", + "set_id": 1 + }, + { + "name": "alarm-light", + "content": "", + "style": "outline", + "tags": "times,timer,clock,schedule,events,watch", + "set_id": 1 + }, + { + "name": "alien-light", + "content": "", + "style": "outline", + "tags": "ufo,space,flying saucer,extra terrestrial,sci-fi", + "set_id": 1 + }, + { + "name": "align-bottom-light", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush bottom", + "set_id": 1 + }, + { + "name": "align-bottom-simple-light", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush bottom", + "set_id": 1 + }, + { + "name": "align-center-horizontal-light", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,centered,middle", + "set_id": 1 + }, + { + "name": "align-center-horizontal-simple-light", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,centered,middle", + "set_id": 1 + }, + { + "name": "align-center-vertical-light", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,centered,middle", + "set_id": 1 + }, + { + "name": "align-center-vertical-simple-light", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,centered,middle", + "set_id": 1 + }, + { + "name": "align-left-light", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush left", + "set_id": 1 + }, + { + "name": "align-left-simple-light", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush left", + "set_id": 1 + }, + { + "name": "align-right-light", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush right", + "set_id": 1 + }, + { + "name": "align-right-simple-light", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush right", + "set_id": 1 + }, + { + "name": "align-top-light", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush top", + "set_id": 1 + }, + { + "name": "align-top-simple-light", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush top", + "set_id": 1 + }, + { + "name": "amazon-logo-light", + "content": "", + "style": "outline", + "tags": "ecommerce,shopping,logos", + "set_id": 1 + }, + { + "name": "ambulance-light", + "content": "", + "style": "outline", + "tags": "*new*,first-aid,emt,medical,medicine,injury,safety,emergency,doctor,vehicles", + "set_id": 1 + }, + { + "name": "anchor-light", + "content": "", + "style": "outline", + "tags": "nautical,boats,ships,hope,safety,insurance", + "set_id": 1 + }, + { + "name": "anchor-simple-light", + "content": "", + "style": "outline", + "tags": "nautical,boats,ships,hope,safety,insurance", + "set_id": 1 + }, + { + "name": "android-logo-light", + "content": "", + "style": "outline", + "tags": "logos,google,mobile,phone,cellular,cellphone", + "set_id": 1 + }, + { + "name": "angle-light", + "content": "", + "style": "outline", + "tags": "*new*,geometry,trigonometry,degrees,radians,measurement,protractor,compass,arc", + "set_id": 1 + }, + { + "name": "angular-logo-light", + "content": "", + "style": "outline", + "tags": "framework,javascript,google,web", + "set_id": 1 + }, + { + "name": "aperture-light", + "content": "", + "style": "outline", + "tags": "photography,cameras,pictures,lens", + "set_id": 1 + }, + { + "name": "app-store-logo-light", + "content": "", + "style": "outline", + "tags": "macintosh,imac,iphone,ipad,macos,ios", + "set_id": 1 + }, + { + "name": "app-window-light", + "content": "", + "style": "outline", + "tags": "windows,software,programs,applications", + "set_id": 1 + }, + { + "name": "apple-logo-light", + "content": "", + "style": "outline", + "tags": "macintosh,imac,iphone,ipad,macos,ios", + "set_id": 1 + }, + { + "name": "apple-podcasts-logo-light", + "content": "", + "style": "outline", + "tags": "macintosh,imac,iphone,ipad,macos,ios", + "set_id": 1 + }, + { + "name": "approximate-equals-light", + "content": "", + "style": "outline", + "tags": "*new*,≈,is approximately equal to,congruent,equality,equivalent,equivalence,comparison,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "archive-light", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,downloaded,downloading", + "set_id": 1 + }, + { + "name": "armchair-light", + "content": "", + "style": "outline", + "tags": "seat,furniture", + "set_id": 1 + }, + { + "name": "arrow-arc-left-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-arc-right-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-double-up-left-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,reply-all", + "set_id": 1 + }, + { + "name": "arrow-bend-double-up-right-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-down-left-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-down-right-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-left-down-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-left-up-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-right-down-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-right-up-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-up-left-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,reply,re", + "set_id": 1 + }, + { + "name": "arrow-bend-up-right-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,forward,fwd", + "set_id": 1 + }, + { + "name": "arrow-circle-down-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-down-left-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-down-right-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-left-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-right-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-up-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-up-left-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-up-right-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-clockwise-light", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,redo,refreshing,rotate,spin,flip", + "set_id": 1 + }, + { + "name": "arrow-counter-clockwise-light", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,undo,refreshing,rotate,spin,flip", + "set_id": 1 + }, + { + "name": "arrow-down-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-down-left-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-down-right-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-down-left-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-down-right-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-left-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-left-down-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-left-up-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-right-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-right-down-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-right-up-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-up-left-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-up-right-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-fat-down-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-left-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-line-down-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-line-left-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-line-right-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-line-up-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,caps lock,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-lines-down-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-lines-left-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-lines-right-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-lines-up-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-right-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-up-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,shift,outlined", + "set_id": 1 + }, + { + "name": "arrow-left-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-line-down-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,bottom", + "set_id": 1 + }, + { + "name": "arrow-line-down-left-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-line-down-right-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-line-left-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-line-right-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-line-up-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,top", + "set_id": 1 + }, + { + "name": "arrow-line-up-left-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-line-up-right-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-right-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-down-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-down-left-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-down-right-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-in-light", + "content": "", + "style": "outline", + "tags": "import,directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-left-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-out-light", + "content": "", + "style": "outline", + "tags": "export,external,directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-right-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-up-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-up-left-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-up-right-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-u-down-left-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,undo,return,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-down-right-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,redo,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-left-down-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,undo,return,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-left-up-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,redo,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-right-down-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,undo,return,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-right-up-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,redo,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-up-left-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,undo,return,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-up-right-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,redo,u-turns", + "set_id": 1 + }, + { + "name": "arrow-up-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-up-left-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-up-right-light", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrows-clockwise-light", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,redo,refreshing,sync,synchronize,rotate,spin,flip", + "set_id": 1 + }, + { + "name": "arrows-counter-clockwise-light", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,undo,refreshing,rotate,spin,flip", + "set_id": 1 + }, + { + "name": "arrows-down-up-light", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrows-horizontal-light", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,cursor,resize,expand,left,right", + "set_id": 1 + }, + { + "name": "arrows-in-light", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,collapse,minimize,resize,shrink", + "set_id": 1 + }, + { + "name": "arrows-in-cardinal-light", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,collapse,minimize,resize,shrink", + "set_id": 1 + }, + { + "name": "arrows-in-line-horizontal-light", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,close,center,align", + "set_id": 1 + }, + { + "name": "arrows-in-line-vertical-light", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,close,center,align", + "set_id": 1 + }, + { + "name": "arrows-in-simple-light", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,collapse,minimize,resize", + "set_id": 1 + }, + { + "name": "arrows-left-right-light", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrows-merge-light", + "content": "", + "style": "outline", + "tags": "*updated*,arrowheads,join,combine", + "set_id": 1 + }, + { + "name": "arrows-out-light", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,expand,fullscreen,resize,grow", + "set_id": 1 + }, + { + "name": "arrows-out-cardinal-light", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,expand,fullscreen,resize,pan,move,grow", + "set_id": 1 + }, + { + "name": "arrows-out-line-horizontal-light", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,open,split", + "set_id": 1 + }, + { + "name": "arrows-out-line-vertical-light", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,open,split", + "set_id": 1 + }, + { + "name": "arrows-out-simple-light", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,expand,fullscreen,resize", + "set_id": 1 + }, + { + "name": "arrows-split-light", + "content": "", + "style": "outline", + "tags": "*updated*,arrowheads,fork", + "set_id": 1 + }, + { + "name": "arrows-vertical-light", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,cursor,resize,expand,up,down", + "set_id": 1 + }, + { + "name": "article-light", + "content": "", + "style": "outline", + "tags": "reading,writing,journals,periodicals,text,newspaper", + "set_id": 1 + }, + { + "name": "article-medium-light", + "content": "", + "style": "outline", + "tags": "*updated*,reading,writing,journals,periodicals,text,newspaper", + "set_id": 1 + }, + { + "name": "article-ny-times-light", + "content": "", + "style": "outline", + "tags": "*updated*,reading,writing,journals,periodicals,text,news,newspaper,nyt,new york times", + "set_id": 1 + }, + { + "name": "asclepius-light", + "content": "", + "style": "outline", + "tags": "*new*,caduceus,staff,mythology,rx,medicine,drugs,pharmacy,pharmacist,pharmaceuticals,doctor,hospital,snake,mercury,hermes", + "set_id": 1 + }, + { + "name": "asterisk-light", + "content": "", + "style": "outline", + "tags": "star,wildcard,bullet point,6,emergency", + "set_id": 1 + }, + { + "name": "asterisk-simple-light", + "content": "", + "style": "outline", + "tags": "*updated*,star,wildcard,bullet point,5,emergency", + "set_id": 1 + }, + { + "name": "at-light", + "content": "", + "style": "outline", + "tags": "@,address,email,at symbol,commercial at,arobase", + "set_id": 1 + }, + { + "name": "atom-light", + "content": "", + "style": "outline", + "tags": "atomic,nucleus,nuclear,reactor,science,physics,electron,automation,react", + "set_id": 1 + }, + { + "name": "avocado-light", + "content": "", + "style": "outline", + "tags": "*new*,food,vegetable,veggie,fruit,groceries,market", + "set_id": 1 + }, + { + "name": "axe-light", + "content": "", + "style": "outline", + "tags": "*new*,tools,carpentry,forestry,construction", + "set_id": 1 + }, + { + "name": "baby-light", + "content": "", + "style": "outline", + "tags": "infant,child,children,toddler", + "set_id": 1 + }, + { + "name": "baby-carriage-light", + "content": "", + "style": "outline", + "tags": "*new*,pram,stroller,infant,child,children,toddler", + "set_id": 1 + }, + { + "name": "backpack-light", + "content": "", + "style": "outline", + "tags": "knapsack,camping,school,bag", + "set_id": 1 + }, + { + "name": "backspace-light", + "content": "", + "style": "outline", + "tags": "keyboard,remove,delete", + "set_id": 1 + }, + { + "name": "bag-light", + "content": "", + "style": "outline", + "tags": "suitcase,valise,baggage,folders,portfolio", + "set_id": 1 + }, + { + "name": "bag-simple-light", + "content": "", + "style": "outline", + "tags": "suitcase,valise,baggage,folders,portfolio", + "set_id": 1 + }, + { + "name": "balloon-light", + "content": "", + "style": "outline", + "tags": "helium,birthday,party", + "set_id": 1 + }, + { + "name": "bandaids-light", + "content": "", + "style": "outline", + "tags": "bandages,medical,medicine,first aid,injury", + "set_id": 1 + }, + { + "name": "bank-light", + "content": "", + "style": "outline", + "tags": "banking,checking,money,savings,deposit,withdraw,places,locations", + "set_id": 1 + }, + { + "name": "barbell-light", + "content": "", + "style": "outline", + "tags": "gym,weights,dumbbells,strength training,workout,exercises,fitness", + "set_id": 1 + }, + { + "name": "barcode-light", + "content": "", + "style": "outline", + "tags": "upc,qr,products,shopping,scanner", + "set_id": 1 + }, + { + "name": "barn-light", + "content": "", + "style": "outline", + "tags": "*new*,animals,livestock,buildings,farming,agriculture", + "set_id": 1 + }, + { + "name": "barricade-light", + "content": "", + "style": "outline", + "tags": "construction,safety,gate", + "set_id": 1 + }, + { + "name": "baseball-light", + "content": "", + "style": "outline", + "tags": "sports,mlb", + "set_id": 1 + }, + { + "name": "baseball-cap-light", + "content": "", + "style": "outline", + "tags": "clothes,clothing,sports,hat", + "set_id": 1 + }, + { + "name": "baseball-helmet-light", + "content": "", + "style": "outline", + "tags": "*new*,sports,mlb", + "set_id": 1 + }, + { + "name": "basket-light", + "content": "", + "style": "outline", + "tags": "ecommerce,market,cart,buying,shopping,groceries,checkout,places,locations", + "set_id": 1 + }, + { + "name": "basketball-light", + "content": "", + "style": "outline", + "tags": "sports,nba", + "set_id": 1 + }, + { + "name": "bathtub-light", + "content": "", + "style": "outline", + "tags": "bath,shower,bathroom,faucet", + "set_id": 1 + }, + { + "name": "battery-charging-light", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-charging-vertical-light", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-empty-light", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power,dead", + "set_id": 1 + }, + { + "name": "battery-full-light", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power,filled", + "set_id": 1 + }, + { + "name": "battery-high-light", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-low-light", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-medium-light", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-plus-light", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-plus-vertical-light", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-vertical-empty-light", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power,dead", + "set_id": 1 + }, + { + "name": "battery-vertical-full-light", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-vertical-high-light", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-vertical-low-light", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-vertical-medium-light", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-warning-light", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power,empty,critical", + "set_id": 1 + }, + { + "name": "battery-warning-vertical-light", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power,empty,critical", + "set_id": 1 + }, + { + "name": "beach-ball-light", + "content": "", + "style": "outline", + "tags": "*new*,sports,ocean,party", + "set_id": 1 + }, + { + "name": "beanie-light", + "content": "", + "style": "outline", + "tags": "*new*,clothes,clothing,sports,hat,winter", + "set_id": 1 + }, + { + "name": "bed-light", + "content": "", + "style": "outline", + "tags": "hotels,accommodations,sleeping,places,locations,medical,hospital", + "set_id": 1 + }, + { + "name": "beer-bottle-light", + "content": "", + "style": "outline", + "tags": "drinks,beverages,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "beer-stein-light", + "content": "", + "style": "outline", + "tags": "drinks,beverages,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "behance-logo-light", + "content": "", + "style": "outline", + "tags": "logos,illustration,ui,interface", + "set_id": 1 + }, + { + "name": "bell-light", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,calls", + "set_id": 1 + }, + { + "name": "bell-ringing-light", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,calls", + "set_id": 1 + }, + { + "name": "bell-simple-light", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,calls", + "set_id": 1 + }, + { + "name": "bell-simple-ringing-light", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,calls", + "set_id": 1 + }, + { + "name": "bell-simple-slash-light", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,silent,silenced,disabled", + "set_id": 1 + }, + { + "name": "bell-simple-z-light", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,snooze", + "set_id": 1 + }, + { + "name": "bell-slash-light", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,silent,silenced,ringer,calls,disabled", + "set_id": 1 + }, + { + "name": "bell-z-light", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,snooze", + "set_id": 1 + }, + { + "name": "belt-light", + "content": "", + "style": "outline", + "tags": "*new*,clothes,clothing", + "set_id": 1 + }, + { + "name": "bezier-curve-light", + "content": "", + "style": "outline", + "tags": "shapes,drawing,path,pen,vector", + "set_id": 1 + }, + { + "name": "bicycle-light", + "content": "", + "style": "outline", + "tags": "bikers,bicycling,cyclists,transit,transportation,commuter,exercises,fitness", + "set_id": 1 + }, + { + "name": "binary-light", + "content": "", + "style": "outline", + "tags": "*new*,digital,0,1,programming,coding,executable", + "set_id": 1 + }, + { + "name": "binoculars-light", + "content": "", + "style": "outline", + "tags": "telescope,glasses,search,find,explore", + "set_id": 1 + }, + { + "name": "biohazard-light", + "content": "", + "style": "outline", + "tags": "*new*,contamination,quarantine,toxic,poison,danger,caution", + "set_id": 1 + }, + { + "name": "bird-light", + "content": "", + "style": "outline", + "tags": "*updated*,animals,pets", + "set_id": 1 + }, + { + "name": "blueprint-light", + "content": "", + "style": "outline", + "tags": "*new*,architecture,layout,floorplan,building,construction", + "set_id": 1 + }, + { + "name": "bluetooth-light", + "content": "", + "style": "outline", + "tags": "wireless,connection,connected,connectivity", + "set_id": 1 + }, + { + "name": "bluetooth-connected-light", + "content": "", + "style": "outline", + "tags": "wireless,connection,connected,connectivity", + "set_id": 1 + }, + { + "name": "bluetooth-slash-light", + "content": "", + "style": "outline", + "tags": "wireless,connection,connectivity,disconnected,disabled", + "set_id": 1 + }, + { + "name": "bluetooth-x-light", + "content": "", + "style": "outline", + "tags": "wireless,connection,connectivity,disconnected,errors", + "set_id": 1 + }, + { + "name": "boat-light", + "content": "", + "style": "outline", + "tags": "ferry,ship,cruise,vehicles,public transit,transportation,commuter,traveling,sailing,places,locations", + "set_id": 1 + }, + { + "name": "bomb-light", + "content": "", + "style": "outline", + "tags": "*new*,gaming,grenade,explosive,war,weapon,fuse", + "set_id": 1 + }, + { + "name": "bone-light", + "content": "", + "style": "outline", + "tags": "dogbone", + "set_id": 1 + }, + { + "name": "book-light", + "content": "", + "style": "outline", + "tags": "reading,reader,novel,story,library", + "set_id": 1 + }, + { + "name": "book-bookmark-light", + "content": "", + "style": "outline", + "tags": "reading,reader,novel,story,library,favorites,favorited", + "set_id": 1 + }, + { + "name": "book-open-light", + "content": "", + "style": "outline", + "tags": "*updated*,reading,reader,novel,story,library", + "set_id": 1 + }, + { + "name": "book-open-text-light", + "content": "", + "style": "outline", + "tags": "*updated*,reading,reader,novel,story,library", + "set_id": 1 + }, + { + "name": "book-open-user-light", + "content": "", + "style": "outline", + "tags": "*new*,reading,reader,easy read,library,places,locations", + "set_id": 1 + }, + { + "name": "bookmark-light", + "content": "", + "style": "outline", + "tags": "reading,reader,novel,story,placeholder,favorites,favorited,library", + "set_id": 1 + }, + { + "name": "bookmark-simple-light", + "content": "", + "style": "outline", + "tags": "reading,reader,novel,story,placeholder,favorites,favorited,library", + "set_id": 1 + }, + { + "name": "bookmarks-light", + "content": "", + "style": "outline", + "tags": "reading,reader,novel,story,placeholder,favorites,favorited,library", + "set_id": 1 + }, + { + "name": "bookmarks-simple-light", + "content": "", + "style": "outline", + "tags": "reading,reader,novel,story,placeholder,favorites,favorited,library", + "set_id": 1 + }, + { + "name": "books-light", + "content": "", + "style": "outline", + "tags": "reading,reader,bookshelf,library,places,locations", + "set_id": 1 + }, + { + "name": "boot-light", + "content": "", + "style": "outline", + "tags": "hiking,shoes,sports,exercise", + "set_id": 1 + }, + { + "name": "boules-light", + "content": "", + "style": "outline", + "tags": "*new*,balls,sports,pétanque,raffa,bocce,boule lyonnaise,lawn bowls", + "set_id": 1 + }, + { + "name": "bounding-box-light", + "content": "", + "style": "outline", + "tags": "polygon,shapes,outline,corners,rectangle", + "set_id": 1 + }, + { + "name": "bowl-food-light", + "content": "", + "style": "outline", + "tags": "ramen,food,meal,eating,restaurants,dining,locations", + "set_id": 1 + }, + { + "name": "bowl-steam-light", + "content": "", + "style": "outline", + "tags": "*new*,food,meal,eating,restaurants,dining,locations", + "set_id": 1 + }, + { + "name": "bowling-ball-light", + "content": "", + "style": "outline", + "tags": "*new*,sports,alley", + "set_id": 1 + }, + { + "name": "box-arrow-down-light", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,downloaded,downloading", + "set_id": 1 + }, + { + "name": "box-arrow-up-light", + "content": "", + "style": "outline", + "tags": "*new*,unarchive,archival,upload", + "set_id": 1 + }, + { + "name": "boxing-glove-light", + "content": "", + "style": "outline", + "tags": "*new*,sports,combat,martial arts,fight,gym", + "set_id": 1 + }, + { + "name": "brackets-angle-light", + "content": "", + "style": "outline", + "tags": "code,angle brackets,angle braces", + "set_id": 1 + }, + { + "name": "brackets-curly-light", + "content": "", + "style": "outline", + "tags": "code,curly brackets,curly braces", + "set_id": 1 + }, + { + "name": "brackets-round-light", + "content": "", + "style": "outline", + "tags": "code,parentheses,round brackets,round braces", + "set_id": 1 + }, + { + "name": "brackets-square-light", + "content": "", + "style": "outline", + "tags": "code,square brackets,square braces,array", + "set_id": 1 + }, + { + "name": "brain-light", + "content": "", + "style": "outline", + "tags": "mind,mental", + "set_id": 1 + }, + { + "name": "brandy-light", + "content": "", + "style": "outline", + "tags": "drinks,beverages,whiskey,cocktail,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "bread-light", + "content": "", + "style": "outline", + "tags": "*new*,food,meal,bakery,sandwich,gluten,loaf,toast,slice", + "set_id": 1 + }, + { + "name": "bridge-light", + "content": "", + "style": "outline", + "tags": "travel,transportation,infrastucture", + "set_id": 1 + }, + { + "name": "briefcase-light", + "content": "", + "style": "outline", + "tags": "suitcase,valise,baggage,folders,portfolio", + "set_id": 1 + }, + { + "name": "briefcase-metal-light", + "content": "", + "style": "outline", + "tags": "suitcase,valise,baggage,folders,portfolio", + "set_id": 1 + }, + { + "name": "broadcast-light", + "content": "", + "style": "outline", + "tags": "radio,hotspot,wifi,emit", + "set_id": 1 + }, + { + "name": "broom-light", + "content": "", + "style": "outline", + "tags": "sweeping,cleaning", + "set_id": 1 + }, + { + "name": "browser-light", + "content": "", + "style": "outline", + "tags": "web browsers,windows,internet,website,webpage,chrome,edge,firefox", + "set_id": 1 + }, + { + "name": "browsers-light", + "content": "", + "style": "outline", + "tags": "web browsers,windows,internet,website,webpage,chrome,edge,firefox", + "set_id": 1 + }, + { + "name": "bug-light", + "content": "", + "style": "outline", + "tags": "debug,errors,insect,ladybug", + "set_id": 1 + }, + { + "name": "bug-beetle-light", + "content": "", + "style": "outline", + "tags": "debug,errors,insect,ladybug", + "set_id": 1 + }, + { + "name": "bug-droid-light", + "content": "", + "style": "outline", + "tags": "debug,errors,insect,android,google", + "set_id": 1 + }, + { + "name": "building-light", + "content": "", + "style": "outline", + "tags": "*new*,places,locations,company,business,buildings", + "set_id": 1 + }, + { + "name": "building-apartment-light", + "content": "", + "style": "outline", + "tags": "*new*,places,locations,buildings", + "set_id": 1 + }, + { + "name": "building-office-light", + "content": "", + "style": "outline", + "tags": "*new*,places,locations,company,business,buildings", + "set_id": 1 + }, + { + "name": "buildings-light", + "content": "", + "style": "outline", + "tags": "places,locations,company,business", + "set_id": 1 + }, + { + "name": "bulldozer-light", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,construction,earth mover,dig,digger", + "set_id": 1 + }, + { + "name": "bus-light", + "content": "", + "style": "outline", + "tags": "vehicles,automobile,public transit,transportation,commuter,traveling,places,locations", + "set_id": 1 + }, + { + "name": "butterfly-light", + "content": "", + "style": "outline", + "tags": "animals,insects,moth", + "set_id": 1 + }, + { + "name": "cable-car-light", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,gondola,skiing,mountains,public transit,transportation,commuter,traveling,places,locations", + "set_id": 1 + }, + { + "name": "cactus-light", + "content": "", + "style": "outline", + "tags": "*updated*,plants,cacti,desert,western", + "set_id": 1 + }, + { + "name": "cake-light", + "content": "", + "style": "outline", + "tags": "dessert,birthday,celebration,event", + "set_id": 1 + }, + { + "name": "calculator-light", + "content": "", + "style": "outline", + "tags": "addition,sum,subtraction,difference,multiply,multiplication,product,divide,division,divisor,dividend,quotient,equals,equality,mathematics,arithmetic,+,-,±,×,÷,=", + "set_id": 1 + }, + { + "name": "calendar-light", + "content": "", + "style": "outline", + "tags": "dates,times,events,schedule,12", + "set_id": 1 + }, + { + "name": "calendar-blank-light", + "content": "", + "style": "outline", + "tags": "dates,times,events,schedule,none", + "set_id": 1 + }, + { + "name": "calendar-check-light", + "content": "", + "style": "outline", + "tags": "dates,times,events,schedule,todo,checklist", + "set_id": 1 + }, + { + "name": "calendar-dot-light", + "content": "", + "style": "outline", + "tags": "*new*,dates,times,events,schedule,today", + "set_id": 1 + }, + { + "name": "calendar-dots-light", + "content": "", + "style": "outline", + "tags": "*new*,dates,times,events,schedule", + "set_id": 1 + }, + { + "name": "calendar-heart-light", + "content": "", + "style": "outline", + "tags": "*new*,dates,times,events,schedule,favorite,star", + "set_id": 1 + }, + { + "name": "calendar-minus-light", + "content": "", + "style": "outline", + "tags": "*new*,dates,times,events,schedule,remove,delete", + "set_id": 1 + }, + { + "name": "calendar-plus-light", + "content": "", + "style": "outline", + "tags": "dates,times,events,schedule,add", + "set_id": 1 + }, + { + "name": "calendar-slash-light", + "content": "", + "style": "outline", + "tags": "*new*,dates,times,events,schedule,remove,delete,cancel. unavailable", + "set_id": 1 + }, + { + "name": "calendar-star-light", + "content": "", + "style": "outline", + "tags": "*new*,dates,times,events,schedule,favorite,star", + "set_id": 1 + }, + { + "name": "calendar-x-light", + "content": "", + "style": "outline", + "tags": "dates,times,events,schedule,closed,cancelled", + "set_id": 1 + }, + { + "name": "call-bell-light", + "content": "", + "style": "outline", + "tags": "service bell,reception,attendant,concierge bell", + "set_id": 1 + }, + { + "name": "camera-light", + "content": "", + "style": "outline", + "tags": "photography,pictures,lens", + "set_id": 1 + }, + { + "name": "camera-plus-light", + "content": "", + "style": "outline", + "tags": "photography,pictures,album,add", + "set_id": 1 + }, + { + "name": "camera-rotate-light", + "content": "", + "style": "outline", + "tags": "photography,pictures,orientation,portrait,landscape,selfie,flip", + "set_id": 1 + }, + { + "name": "camera-slash-light", + "content": "", + "style": "outline", + "tags": "photography,pictures,lens,disabled", + "set_id": 1 + }, + { + "name": "campfire-light", + "content": "", + "style": "outline", + "tags": "camping,flame,bonfire,outdoors", + "set_id": 1 + }, + { + "name": "car-light", + "content": "", + "style": "outline", + "tags": "*updated*,cars,vehicles,automobile,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "car-battery-light", + "content": "", + "style": "outline", + "tags": "*new*,charged,charger,charging,power,voltage,electricity", + "set_id": 1 + }, + { + "name": "car-profile-light", + "content": "", + "style": "outline", + "tags": "cars,vehicles,automobile,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "car-simple-light", + "content": "", + "style": "outline", + "tags": "cars,vehicles,automobile,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "cardholder-light", + "content": "", + "style": "outline", + "tags": "wallet,money,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "cards-light", + "content": "", + "style": "outline", + "tags": "card,slides,slideshow,windows,website,webpage,layers", + "set_id": 1 + }, + { + "name": "cards-three-light", + "content": "", + "style": "outline", + "tags": "*new*,card,slides,slideshow,windows,website,webpage,layers,stack", + "set_id": 1 + }, + { + "name": "caret-circle-double-down-light", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-double-left-light", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-double-right-light", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-double-up-light", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-down-light", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-left-light", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-right-light", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-up-light", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-up-down-light", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-double-down-light", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-double-left-light", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-double-right-light", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-double-up-light", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-down-light", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-left-light", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-line-down-light", + "content": "", + "style": "outline", + "tags": "*new*,chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-line-left-light", + "content": "", + "style": "outline", + "tags": "*new*,chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-line-right-light", + "content": "", + "style": "outline", + "tags": "*new*,chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-line-up-light", + "content": "", + "style": "outline", + "tags": "*new*,chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-right-light", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-up-light", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-up-down-light", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "carrot-light", + "content": "", + "style": "outline", + "tags": "food,vegetable,veggie,groceries,market", + "set_id": 1 + }, + { + "name": "cash-register-light", + "content": "", + "style": "outline", + "tags": "*new*,retail,point-of-sale,pos,transaction,sales,till", + "set_id": 1 + }, + { + "name": "cassette-tape-light", + "content": "", + "style": "outline", + "tags": "recording,audio,album,music", + "set_id": 1 + }, + { + "name": "castle-turret-light", + "content": "", + "style": "outline", + "tags": "*updated*,chess,rook", + "set_id": 1 + }, + { + "name": "cat-light", + "content": "", + "style": "outline", + "tags": "pets,animals,kitty,kitten", + "set_id": 1 + }, + { + "name": "cell-signal-full-light", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,reception,service", + "set_id": 1 + }, + { + "name": "cell-signal-high-light", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,reception,service", + "set_id": 1 + }, + { + "name": "cell-signal-low-light", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,reception,service", + "set_id": 1 + }, + { + "name": "cell-signal-medium-light", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,reception,service", + "set_id": 1 + }, + { + "name": "cell-signal-none-light", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,reception,service", + "set_id": 1 + }, + { + "name": "cell-signal-slash-light", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,disconnected,disabled,reception,service", + "set_id": 1 + }, + { + "name": "cell-signal-x-light", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,reception,disconnected,errors,service", + "set_id": 1 + }, + { + "name": "cell-tower-light", + "content": "", + "style": "outline", + "tags": "*new*,wireless,cellular,broadcast,phone,mobile,network,connection,connectivity", + "set_id": 1 + }, + { + "name": "certificate-light", + "content": "", + "style": "outline", + "tags": "*updated*,awards,certification,degree,diploma", + "set_id": 1 + }, + { + "name": "chair-light", + "content": "", + "style": "outline", + "tags": "seat,furniture", + "set_id": 1 + }, + { + "name": "chalkboard-light", + "content": "", + "style": "outline", + "tags": "blackboard,whiteboard,classroom,teacher,education,school,college,university", + "set_id": 1 + }, + { + "name": "chalkboard-simple-light", + "content": "", + "style": "outline", + "tags": "*updated*,blackboard,whiteboard,classroom,teacher,education,school,college,university", + "set_id": 1 + }, + { + "name": "chalkboard-teacher-light", + "content": "", + "style": "outline", + "tags": "blackboard,whiteboard,classroom,education,school,college,university", + "set_id": 1 + }, + { + "name": "champagne-light", + "content": "", + "style": "outline", + "tags": "glass,drinks,beverages,wine,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "charging-station-light", + "content": "", + "style": "outline", + "tags": "ev,charge,fuel,pump", + "set_id": 1 + }, + { + "name": "chart-bar-light", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,histogram,analyze,analysis", + "set_id": 1 + }, + { + "name": "chart-bar-horizontal-light", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,histogram,analyze,analysis", + "set_id": 1 + }, + { + "name": "chart-donut-light", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,analyze,analysis,circle", + "set_id": 1 + }, + { + "name": "chart-line-light", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,analyze,analysis,stocks", + "set_id": 1 + }, + { + "name": "chart-line-down-light", + "content": "", + "style": "outline", + "tags": "*updated*,graphs,graphing,charts,statistics,analyze,analysis,stocks", + "set_id": 1 + }, + { + "name": "chart-line-up-light", + "content": "", + "style": "outline", + "tags": "*updated*,graphs,graphing,charts,statistics,analyze,analysis,stocks", + "set_id": 1 + }, + { + "name": "chart-pie-light", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,circle,analyze,analysis", + "set_id": 1 + }, + { + "name": "chart-pie-slice-light", + "content": "", + "style": "outline", + "tags": "*updated*,graphs,graphing,charts,statistics,circle,analyze,analysis", + "set_id": 1 + }, + { + "name": "chart-polar-light", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,analyze,analysis,circle", + "set_id": 1 + }, + { + "name": "chart-scatter-light", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,analyze,analysis", + "set_id": 1 + }, + { + "name": "chat-light", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-centered-light", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-centered-dots-light", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-centered-slash-light", + "content": "", + "style": "outline", + "tags": "*new*,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-centered-text-light", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-circle-light", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,round,bubble", + "set_id": 1 + }, + { + "name": "chat-circle-dots-light", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,round,bubble", + "set_id": 1 + }, + { + "name": "chat-circle-slash-light", + "content": "", + "style": "outline", + "tags": "*new*,messages,messaging,sms,texting,comment,round,bubble", + "set_id": 1 + }, + { + "name": "chat-circle-text-light", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,round,bubble", + "set_id": 1 + }, + { + "name": "chat-dots-light", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-slash-light", + "content": "", + "style": "outline", + "tags": "*new*,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-teardrop-light", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,bubble", + "set_id": 1 + }, + { + "name": "chat-teardrop-dots-light", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,bubble", + "set_id": 1 + }, + { + "name": "chat-teardrop-slash-light", + "content": "", + "style": "outline", + "tags": "*new*,messages,messaging,sms,texting,comment,bubble", + "set_id": 1 + }, + { + "name": "chat-teardrop-text-light", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,bubble", + "set_id": 1 + }, + { + "name": "chat-text-light", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chats-light", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chats-circle-light", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,round,bubble", + "set_id": 1 + }, + { + "name": "chats-teardrop-light", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,bubble", + "set_id": 1 + }, + { + "name": "check-light", + "content": "", + "style": "outline", + "tags": "todo,to-do,task,list,checkbox,ok,done", + "set_id": 1 + }, + { + "name": "check-circle-light", + "content": "", + "style": "outline", + "tags": "todo,to-do,task,list,checkbox,round,ok,done", + "set_id": 1 + }, + { + "name": "check-fat-light", + "content": "", + "style": "outline", + "tags": "todo,to-do,task,list,checkbox,ok,done", + "set_id": 1 + }, + { + "name": "check-square-light", + "content": "", + "style": "outline", + "tags": "todo,to-do,task,list,checkbox,rectangle,ok,done", + "set_id": 1 + }, + { + "name": "check-square-offset-light", + "content": "", + "style": "outline", + "tags": "*updated*,todo,to-do,task,list,checkbox,rectangle,ok,done", + "set_id": 1 + }, + { + "name": "checkerboard-light", + "content": "", + "style": "outline", + "tags": "*new*,crossword", + "set_id": 1 + }, + { + "name": "checks-light", + "content": "", + "style": "outline", + "tags": "*updated*,todo,task,to-do,list,checkbox,ok,done", + "set_id": 1 + }, + { + "name": "cheers-light", + "content": "", + "style": "outline", + "tags": "*new*,glass,drinks,beverages,champagne,toast,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "cheese-light", + "content": "", + "style": "outline", + "tags": "*new*,dairy,wedge,food,dining", + "set_id": 1 + }, + { + "name": "chef-hat-light", + "content": "", + "style": "outline", + "tags": "*new*,cooking,cuisine,kitchen,clothes,clothing", + "set_id": 1 + }, + { + "name": "cherries-light", + "content": "", + "style": "outline", + "tags": "*new*,food,fruit,cherry,groceries,market", + "set_id": 1 + }, + { + "name": "church-light", + "content": "", + "style": "outline", + "tags": "christ,christianity,cathedral,religion,worship", + "set_id": 1 + }, + { + "name": "cigarette-light", + "content": "", + "style": "outline", + "tags": "*new*,smoking,tobacco", + "set_id": 1 + }, + { + "name": "cigarette-slash-light", + "content": "", + "style": "outline", + "tags": "*new*,non-smoking,tobacco", + "set_id": 1 + }, + { + "name": "circle-light", + "content": "", + "style": "outline", + "tags": "round,shapes,polygons", + "set_id": 1 + }, + { + "name": "circle-dashed-light", + "content": "", + "style": "outline", + "tags": "missing,round,shapes,polygons", + "set_id": 1 + }, + { + "name": "circle-half-light", + "content": "", + "style": "outline", + "tags": "round,shapes,contrast,brightness", + "set_id": 1 + }, + { + "name": "circle-half-tilt-light", + "content": "", + "style": "outline", + "tags": "round,shapes,contrast,brightness", + "set_id": 1 + }, + { + "name": "circle-notch-light", + "content": "", + "style": "outline", + "tags": "round,shapes,loading,loader,spinner,waiting,progress", + "set_id": 1 + }, + { + "name": "circles-four-light", + "content": "", + "style": "outline", + "tags": "round,shapes,polygons,4", + "set_id": 1 + }, + { + "name": "circles-three-light", + "content": "", + "style": "outline", + "tags": "round,shapes,polygons,3,asana", + "set_id": 1 + }, + { + "name": "circles-three-plus-light", + "content": "", + "style": "outline", + "tags": "round,shapes,polygons,3,+", + "set_id": 1 + }, + { + "name": "circuitry-light", + "content": "", + "style": "outline", + "tags": "processor,microchip,computer,circuit,electronics,motherboard", + "set_id": 1 + }, + { + "name": "city-light", + "content": "", + "style": "outline", + "tags": "*new*,skyline,skyscrapers,places,locations,buildings", + "set_id": 1 + }, + { + "name": "clipboard-light", + "content": "", + "style": "outline", + "tags": "copy,copied,checklist", + "set_id": 1 + }, + { + "name": "clipboard-text-light", + "content": "", + "style": "outline", + "tags": "copy,copied,checklist", + "set_id": 1 + }, + { + "name": "clock-light", + "content": "", + "style": "outline", + "tags": "times,timer,alarm,schedule,events,watch", + "set_id": 1 + }, + { + "name": "clock-afternoon-light", + "content": "", + "style": "outline", + "tags": "times,timer,alarm,schedule,events,watch", + "set_id": 1 + }, + { + "name": "clock-clockwise-light", + "content": "", + "style": "outline", + "tags": "times,timer,alarm,schedule,events,restore,fast forward,update", + "set_id": 1 + }, + { + "name": "clock-countdown-light", + "content": "", + "style": "outline", + "tags": "times,timer,alarm,schedule,events,watch", + "set_id": 1 + }, + { + "name": "clock-counter-clockwise-light", + "content": "", + "style": "outline", + "tags": "times,timer,alarm,schedule,events,backup,rewind,history", + "set_id": 1 + }, + { + "name": "clock-user-light", + "content": "", + "style": "outline", + "tags": "*new*,times,timer,shift,schedule,events,watch", + "set_id": 1 + }, + { + "name": "closed-captioning-light", + "content": "", + "style": "outline", + "tags": "subtitles,television,tv,transcribed,transcription,accessibility,a11y", + "set_id": 1 + }, + { + "name": "cloud-light", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,meteorology,cloudy,overcast", + "set_id": 1 + }, + { + "name": "cloud-arrow-down-light", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,download", + "set_id": 1 + }, + { + "name": "cloud-arrow-up-light", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,upload", + "set_id": 1 + }, + { + "name": "cloud-check-light", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,sync,synchronized", + "set_id": 1 + }, + { + "name": "cloud-fog-light", + "content": "", + "style": "outline", + "tags": "meteorology,cloudy,overcast,foggy,mist,haze", + "set_id": 1 + }, + { + "name": "cloud-lightning-light", + "content": "", + "style": "outline", + "tags": "meteorology,cloudy,overcast,stormy,thunderstorm", + "set_id": 1 + }, + { + "name": "cloud-moon-light", + "content": "", + "style": "outline", + "tags": "meteorology,cloudy,partly cloudy,night,evening", + "set_id": 1 + }, + { + "name": "cloud-rain-light", + "content": "", + "style": "outline", + "tags": "meteorology,cloudy,rainy,raining,stormy,rainstorm", + "set_id": 1 + }, + { + "name": "cloud-slash-light", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,sync,disabled", + "set_id": 1 + }, + { + "name": "cloud-snow-light", + "content": "", + "style": "outline", + "tags": "meteorology,cloudy,snowy,snowing,stormy,snowstorm", + "set_id": 1 + }, + { + "name": "cloud-sun-light", + "content": "", + "style": "outline", + "tags": "meteorology,cloudy,partly cloudy,partly sunny", + "set_id": 1 + }, + { + "name": "cloud-warning-light", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,errors", + "set_id": 1 + }, + { + "name": "cloud-x-light", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,errors", + "set_id": 1 + }, + { + "name": "clover-light", + "content": "", + "style": "outline", + "tags": "*new*,four leaf clover,plants,luck,lucky,irish", + "set_id": 1 + }, + { + "name": "club-light", + "content": "", + "style": "outline", + "tags": "clubs,suits,cards,gambling,casino,gaming", + "set_id": 1 + }, + { + "name": "coat-hanger-light", + "content": "", + "style": "outline", + "tags": "clothing,clothes,closet", + "set_id": 1 + }, + { + "name": "coda-logo-light", + "content": "", + "style": "outline", + "tags": "project management,productivity,documentation,wiki,logos", + "set_id": 1 + }, + { + "name": "code-light", + "content": "", + "style": "outline", + "tags": "angle brackets,angle braces,snippets", + "set_id": 1 + }, + { + "name": "code-block-light", + "content": "", + "style": "outline", + "tags": "angle brackets,angle braces,snippets", + "set_id": 1 + }, + { + "name": "code-simple-light", + "content": "", + "style": "outline", + "tags": "angle brackets,angle braces,snippets", + "set_id": 1 + }, + { + "name": "codepen-logo-light", + "content": "", + "style": "outline", + "tags": "ide,logos", + "set_id": 1 + }, + { + "name": "codesandbox-logo-light", + "content": "", + "style": "outline", + "tags": "ide,logos", + "set_id": 1 + }, + { + "name": "coffee-light", + "content": "", + "style": "outline", + "tags": "tea,java,beverages,drinks,cafe,cup,mug,espresso,cappuccino,latte,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "coffee-bean-light", + "content": "", + "style": "outline", + "tags": "*new*,tea,java,beverages,drinks,cafe,cup,mug,espresso,cappuccino,latte,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "coin-light", + "content": "", + "style": "outline", + "tags": "coins,cents,change,money,currency,payment,paying,purchase,price,sell", + "set_id": 1 + }, + { + "name": "coin-vertical-light", + "content": "", + "style": "outline", + "tags": "cents,change,money,currency,payment,paying,purchase,price,sell", + "set_id": 1 + }, + { + "name": "coins-light", + "content": "", + "style": "outline", + "tags": "cents,change,money,currency,payment,paying,purchase,price,sell", + "set_id": 1 + }, + { + "name": "columns-light", + "content": "", + "style": "outline", + "tags": "2,shapes,polygons,box,stack,list,table,cards", + "set_id": 1 + }, + { + "name": "columns-plus-left-light", + "content": "", + "style": "outline", + "tags": "*new*,2,shapes,polygons,box,stack,list,table,cards,prepend,insert", + "set_id": 1 + }, + { + "name": "columns-plus-right-light", + "content": "", + "style": "outline", + "tags": "*new*,2,shapes,polygons,box,stack,list,table,cards,append,insert", + "set_id": 1 + }, + { + "name": "command-light", + "content": "", + "style": "outline", + "tags": "apple,keyboard,shortcut,modifier,looped square,bowen knot,saint john's arms", + "set_id": 1 + }, + { + "name": "compass-light", + "content": "", + "style": "outline", + "tags": "navigation,directions,maps,safari,apple", + "set_id": 1 + }, + { + "name": "compass-rose-light", + "content": "", + "style": "outline", + "tags": "*new*,navigation,directions,maps,cardinal,cartography", + "set_id": 1 + }, + { + "name": "compass-tool-light", + "content": "", + "style": "outline", + "tags": "drawing,geometry,trigonometry,degrees,radians,measurement,protractor,compass,arc", + "set_id": 1 + }, + { + "name": "computer-tower-light", + "content": "", + "style": "outline", + "tags": "desktop,pc,imac", + "set_id": 1 + }, + { + "name": "confetti-light", + "content": "", + "style": "outline", + "tags": "tada,party,emoji", + "set_id": 1 + }, + { + "name": "contactless-payment-light", + "content": "", + "style": "outline", + "tags": "purchase,credit card,nfc", + "set_id": 1 + }, + { + "name": "control-light", + "content": "", + "style": "outline", + "tags": "ctrl,key,keyboard,shortcut,caret", + "set_id": 1 + }, + { + "name": "cookie-light", + "content": "", + "style": "outline", + "tags": "privacy,dessert,food,dining", + "set_id": 1 + }, + { + "name": "cooking-pot-light", + "content": "", + "style": "outline", + "tags": "stew,kitchen,steaming,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "copy-light", + "content": "", + "style": "outline", + "tags": "duplicated,copied,clipboard", + "set_id": 1 + }, + { + "name": "copy-simple-light", + "content": "", + "style": "outline", + "tags": "duplicated,copied,clipboard", + "set_id": 1 + }, + { + "name": "copyleft-light", + "content": "", + "style": "outline", + "tags": "🄯,intellectual property,copr.,symbol", + "set_id": 1 + }, + { + "name": "copyright-light", + "content": "", + "style": "outline", + "tags": "©,intellectual property,copr.,symbol", + "set_id": 1 + }, + { + "name": "corners-in-light", + "content": "", + "style": "outline", + "tags": "*updated*,collapse,windowed,minimized", + "set_id": 1 + }, + { + "name": "corners-out-light", + "content": "", + "style": "outline", + "tags": "*updated*,expand,fullscreen,maximized", + "set_id": 1 + }, + { + "name": "couch-light", + "content": "", + "style": "outline", + "tags": "furniture,seat", + "set_id": 1 + }, + { + "name": "court-basketball-light", + "content": "", + "style": "outline", + "tags": "*new*,sports,nba", + "set_id": 1 + }, + { + "name": "cow-light", + "content": "", + "style": "outline", + "tags": "*new*,animals,livestock,beef,bull,milk,dairy", + "set_id": 1 + }, + { + "name": "cowboy-hat-light", + "content": "", + "style": "outline", + "tags": "*new*,clothes,clothing,stetson", + "set_id": 1 + }, + { + "name": "cpu-light", + "content": "", + "style": "outline", + "tags": "processor,microchip,computer,circuit", + "set_id": 1 + }, + { + "name": "crane-light", + "content": "", + "style": "outline", + "tags": "*new*,construction,industry", + "set_id": 1 + }, + { + "name": "crane-tower-light", + "content": "", + "style": "outline", + "tags": "*new*,construction,industry", + "set_id": 1 + }, + { + "name": "credit-card-light", + "content": "", + "style": "outline", + "tags": "debit,visa,mastercard,money,payment,paying,purchase,swipe", + "set_id": 1 + }, + { + "name": "cricket-light", + "content": "", + "style": "outline", + "tags": "*new*,sports,ball,bat", + "set_id": 1 + }, + { + "name": "crop-light", + "content": "", + "style": "outline", + "tags": "photography,clip,screenshots", + "set_id": 1 + }, + { + "name": "cross-light", + "content": "", + "style": "outline", + "tags": "dagger,crucifix,christ,christianity,religion,worship,symbol", + "set_id": 1 + }, + { + "name": "crosshair-light", + "content": "", + "style": "outline", + "tags": "geolocation,gps,aiming,targeting", + "set_id": 1 + }, + { + "name": "crosshair-simple-light", + "content": "", + "style": "outline", + "tags": "geolocation,gps,aiming,targeting", + "set_id": 1 + }, + { + "name": "crown-light", + "content": "", + "style": "outline", + "tags": "*updated*,king,queen,royalty,monarch,ruler,leader,chess", + "set_id": 1 + }, + { + "name": "crown-cross-light", + "content": "", + "style": "outline", + "tags": "*new*,king,queen,royalty,monarch,ruler,leader,chess", + "set_id": 1 + }, + { + "name": "crown-simple-light", + "content": "", + "style": "outline", + "tags": "*updated*,king,queen,royalty,monarch,ruler,leader,chess", + "set_id": 1 + }, + { + "name": "cube-light", + "content": "", + "style": "outline", + "tags": "square,box,3d,volume,blocks", + "set_id": 1 + }, + { + "name": "cube-focus-light", + "content": "", + "style": "outline", + "tags": "augmented reality,ar,virual reality,vr,3d,scan", + "set_id": 1 + }, + { + "name": "cube-transparent-light", + "content": "", + "style": "outline", + "tags": "square,box,3d,volume,blocks,necker", + "set_id": 1 + }, + { + "name": "currency-btc-light", + "content": "", + "style": "outline", + "tags": "money,btc,bitcoin,crypto,cryptocurrency,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-circle-dollar-light", + "content": "", + "style": "outline", + "tags": "money,usd,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-cny-light", + "content": "", + "style": "outline", + "tags": "money,yuan,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-dollar-light", + "content": "", + "style": "outline", + "tags": "money,usd,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-dollar-simple-light", + "content": "", + "style": "outline", + "tags": "money,usd,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-eth-light", + "content": "", + "style": "outline", + "tags": "money,ethereum,crypto,cryptocurrency,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-eur-light", + "content": "", + "style": "outline", + "tags": "money,euros,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-gbp-light", + "content": "", + "style": "outline", + "tags": "money,pounds sterling,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-inr-light", + "content": "", + "style": "outline", + "tags": "money,rupees,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-jpy-light", + "content": "", + "style": "outline", + "tags": "money,yen,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-krw-light", + "content": "", + "style": "outline", + "tags": "money,won,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-kzt-light", + "content": "", + "style": "outline", + "tags": "money,kazakhstan,tenge,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-ngn-light", + "content": "", + "style": "outline", + "tags": "money,nigeria,naira,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-rub-light", + "content": "", + "style": "outline", + "tags": "money,rubles,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "cursor-light", + "content": "", + "style": "outline", + "tags": "pointer,arrowhead,mouse,click", + "set_id": 1 + }, + { + "name": "cursor-click-light", + "content": "", + "style": "outline", + "tags": "pointer,arrowhead,mouse", + "set_id": 1 + }, + { + "name": "cursor-text-light", + "content": "", + "style": "outline", + "tags": "i-beam,input,select", + "set_id": 1 + }, + { + "name": "cylinder-light", + "content": "", + "style": "outline", + "tags": "shapes,tube", + "set_id": 1 + }, + { + "name": "database-light", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,hard disk,storage,hdd,servers,databases", + "set_id": 1 + }, + { + "name": "desk-light", + "content": "", + "style": "outline", + "tags": "*new*,furniture,workspace,table", + "set_id": 1 + }, + { + "name": "desktop-light", + "content": "", + "style": "outline", + "tags": "computer,pc,imac,tower", + "set_id": 1 + }, + { + "name": "desktop-tower-light", + "content": "", + "style": "outline", + "tags": "*updated*,computer,pc,imac", + "set_id": 1 + }, + { + "name": "detective-light", + "content": "", + "style": "outline", + "tags": "incognito,police,law enforcement,spy,secret", + "set_id": 1 + }, + { + "name": "dev-to-logo-light", + "content": "", + "style": "outline", + "tags": "reading,writing,social media,logos", + "set_id": 1 + }, + { + "name": "device-mobile-light", + "content": "", + "style": "outline", + "tags": "cellphone,cellular", + "set_id": 1 + }, + { + "name": "device-mobile-camera-light", + "content": "", + "style": "outline", + "tags": "cellphone,cellular", + "set_id": 1 + }, + { + "name": "device-mobile-slash-light", + "content": "", + "style": "outline", + "tags": "*new*,cellphone,cellular", + "set_id": 1 + }, + { + "name": "device-mobile-speaker-light", + "content": "", + "style": "outline", + "tags": "cellphone,cellular", + "set_id": 1 + }, + { + "name": "device-rotate-light", + "content": "", + "style": "outline", + "tags": "*new*,orientation,landscape,portrait,spin,flip", + "set_id": 1 + }, + { + "name": "device-tablet-light", + "content": "", + "style": "outline", + "tags": "cellphone,cellular,ipad,phablet", + "set_id": 1 + }, + { + "name": "device-tablet-camera-light", + "content": "", + "style": "outline", + "tags": "cellphone,cellular,ipad,phablet", + "set_id": 1 + }, + { + "name": "device-tablet-speaker-light", + "content": "", + "style": "outline", + "tags": "cellphone,cellular,ipad,phablet", + "set_id": 1 + }, + { + "name": "devices-light", + "content": "", + "style": "outline", + "tags": "responsive,cellphone,cellular,tablet,destop", + "set_id": 1 + }, + { + "name": "diamond-light", + "content": "", + "style": "outline", + "tags": "rectangle,shapes,polygons,diamonds,suits,cards,gambling,casino,gaming", + "set_id": 1 + }, + { + "name": "diamonds-four-light", + "content": "", + "style": "outline", + "tags": "shapes,grid,component", + "set_id": 1 + }, + { + "name": "dice-five-light", + "content": "", + "style": "outline", + "tags": "die,rolling,gamble,gambling,casino,gaming,5", + "set_id": 1 + }, + { + "name": "dice-four-light", + "content": "", + "style": "outline", + "tags": "die,rolling,gamble,gambling,casino,gaming,4", + "set_id": 1 + }, + { + "name": "dice-one-light", + "content": "", + "style": "outline", + "tags": "die,rolling,gamble,gambling,casino,gaming,1", + "set_id": 1 + }, + { + "name": "dice-six-light", + "content": "", + "style": "outline", + "tags": "die,rolling,gamble,gambling,casino,gaming,6", + "set_id": 1 + }, + { + "name": "dice-three-light", + "content": "", + "style": "outline", + "tags": "die,rolling,gamble,gambling,casino,gaming,3", + "set_id": 1 + }, + { + "name": "dice-two-light", + "content": "", + "style": "outline", + "tags": "die,rolling,gamble,gambling,casino,gaming,2", + "set_id": 1 + }, + { + "name": "disc-light", + "content": "", + "style": "outline", + "tags": "cd-rom,compact disk,album,record", + "set_id": 1 + }, + { + "name": "disco-ball-light", + "content": "", + "style": "outline", + "tags": "*new*,danging,club,70s", + "set_id": 1 + }, + { + "name": "discord-logo-light", + "content": "", + "style": "outline", + "tags": "logos,messages,messaging,chat", + "set_id": 1 + }, + { + "name": "divide-light", + "content": "", + "style": "outline", + "tags": "division,divisor,dividend,quotient,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "dna-light", + "content": "", + "style": "outline", + "tags": "double helix,gene,genetics", + "set_id": 1 + }, + { + "name": "dog-light", + "content": "", + "style": "outline", + "tags": "pets,animals,puppy", + "set_id": 1 + }, + { + "name": "door-light", + "content": "", + "style": "outline", + "tags": "entrance,exit", + "set_id": 1 + }, + { + "name": "door-open-light", + "content": "", + "style": "outline", + "tags": "entrance,exit", + "set_id": 1 + }, + { + "name": "dot-light", + "content": "", + "style": "outline", + "tags": "dots,circles,shapes,polygons", + "set_id": 1 + }, + { + "name": "dot-outline-light", + "content": "", + "style": "outline", + "tags": "dots,circles,shapes,polygons", + "set_id": 1 + }, + { + "name": "dots-nine-light", + "content": "", + "style": "outline", + "tags": "grid,circles,shapes,polygons,9", + "set_id": 1 + }, + { + "name": "dots-six-light", + "content": "", + "style": "outline", + "tags": "*updated*,drag handle,knurling,circles,shapes,polygons,6", + "set_id": 1 + }, + { + "name": "dots-six-vertical-light", + "content": "", + "style": "outline", + "tags": "*updated*,drag handle,knurling,circles,shapes,polygons,6", + "set_id": 1 + }, + { + "name": "dots-three-light", + "content": "", + "style": "outline", + "tags": "menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more", + "set_id": 1 + }, + { + "name": "dots-three-circle-light", + "content": "", + "style": "outline", + "tags": "menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more", + "set_id": 1 + }, + { + "name": "dots-three-circle-vertical-light", + "content": "", + "style": "outline", + "tags": "menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more", + "set_id": 1 + }, + { + "name": "dots-three-outline-light", + "content": "", + "style": "outline", + "tags": "menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more", + "set_id": 1 + }, + { + "name": "dots-three-outline-vertical-light", + "content": "", + "style": "outline", + "tags": "menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more", + "set_id": 1 + }, + { + "name": "dots-three-vertical-light", + "content": "", + "style": "outline", + "tags": "menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more", + "set_id": 1 + }, + { + "name": "download-light", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,downloaded,downloading,hard drive,disk", + "set_id": 1 + }, + { + "name": "download-simple-light", + "content": "", + "style": "outline", + "tags": "*updated*,saved,saving,archived,archiving,archival,downloaded,downloading,hard drive,disk,import", + "set_id": 1 + }, + { + "name": "dress-light", + "content": "", + "style": "outline", + "tags": "clothes,clothing", + "set_id": 1 + }, + { + "name": "dresser-light", + "content": "", + "style": "outline", + "tags": "*new*,furniture,bedroom,storage,drawers,wardrobe", + "set_id": 1 + }, + { + "name": "dribbble-logo-light", + "content": "", + "style": "outline", + "tags": "logos,round,basketball,sports,design", + "set_id": 1 + }, + { + "name": "drone-light", + "content": "", + "style": "outline", + "tags": "*new*,aerial,uav,photography,remote", + "set_id": 1 + }, + { + "name": "drop-light", + "content": "", + "style": "outline", + "tags": "droplet,teardrop,raindrop,raining,meteorology,water,blur", + "set_id": 1 + }, + { + "name": "drop-half-light", + "content": "", + "style": "outline", + "tags": "droplet,teardrop,raindrop,humidity,water,contrast,brightness", + "set_id": 1 + }, + { + "name": "drop-half-bottom-light", + "content": "", + "style": "outline", + "tags": "droplet,teardrop,raindrop,humidity,water,contrast,brightness", + "set_id": 1 + }, + { + "name": "drop-simple-light", + "content": "", + "style": "outline", + "tags": "*new*,droplet,teardrop,raindrop,raining,humidity,meteorology,water,blur", + "set_id": 1 + }, + { + "name": "drop-slash-light", + "content": "", + "style": "outline", + "tags": "*new*,droplet,teardrop,raindrop,raining,humidity,meteorology,water,blur,disabled", + "set_id": 1 + }, + { + "name": "dropbox-logo-light", + "content": "", + "style": "outline", + "tags": "cloud,storage,backup,logos", + "set_id": 1 + }, + { + "name": "ear-light", + "content": "", + "style": "outline", + "tags": "hearing,audio,sound", + "set_id": 1 + }, + { + "name": "ear-slash-light", + "content": "", + "style": "outline", + "tags": "hearing,audio,sound,mute,accessible", + "set_id": 1 + }, + { + "name": "egg-light", + "content": "", + "style": "outline", + "tags": "chicken,food,meal,baby,hatch", + "set_id": 1 + }, + { + "name": "egg-crack-light", + "content": "", + "style": "outline", + "tags": "chicken,food,meal,baby,hatch,break", + "set_id": 1 + }, + { + "name": "eject-light", + "content": "", + "style": "outline", + "tags": "disconnect", + "set_id": 1 + }, + { + "name": "eject-simple-light", + "content": "", + "style": "outline", + "tags": "disconnect", + "set_id": 1 + }, + { + "name": "elevator-light", + "content": "", + "style": "outline", + "tags": "lift", + "set_id": 1 + }, + { + "name": "empty-light", + "content": "", + "style": "outline", + "tags": "*new*,∅,empty set,member,mathematics,arithmetic,calculator,null", + "set_id": 1 + }, + { + "name": "engine-light", + "content": "", + "style": "outline", + "tags": "*updated*,motor,repair,vehicles,automobile", + "set_id": 1 + }, + { + "name": "envelope-light", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,message,post,letter", + "set_id": 1 + }, + { + "name": "envelope-open-light", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,message,read,post,letter", + "set_id": 1 + }, + { + "name": "envelope-simple-light", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,message,post,letter", + "set_id": 1 + }, + { + "name": "envelope-simple-open-light", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,message,read,post,letter", + "set_id": 1 + }, + { + "name": "equalizer-light", + "content": "", + "style": "outline", + "tags": "music,audio,meter,volume,spectrum,eq,deezer", + "set_id": 1 + }, + { + "name": "equals-light", + "content": "", + "style": "outline", + "tags": "=,equality,equivalent,equivalence,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "eraser-light", + "content": "", + "style": "outline", + "tags": "write,writing,editing,undo,deleted", + "set_id": 1 + }, + { + "name": "escalator-down-light", + "content": "", + "style": "outline", + "tags": "stairs", + "set_id": 1 + }, + { + "name": "escalator-up-light", + "content": "", + "style": "outline", + "tags": "stairs", + "set_id": 1 + }, + { + "name": "exam-light", + "content": "", + "style": "outline", + "tags": "text,examination,paper,school,grade", + "set_id": 1 + }, + { + "name": "exclamation-mark-light", + "content": "", + "style": "outline", + "tags": "*new*,!,alert,warning,caution,interjection,punctuation,symbol", + "set_id": 1 + }, + { + "name": "exclude-light", + "content": "", + "style": "outline", + "tags": "venn-diagram,difference,intersection", + "set_id": 1 + }, + { + "name": "exclude-square-light", + "content": "", + "style": "outline", + "tags": "venn-diagram,difference,intersection", + "set_id": 1 + }, + { + "name": "export-light", + "content": "", + "style": "outline", + "tags": "share,send to,arrows", + "set_id": 1 + }, + { + "name": "eye-light", + "content": "", + "style": "outline", + "tags": "visible,hidden,show,hide,visibility,view", + "set_id": 1 + }, + { + "name": "eye-closed-light", + "content": "", + "style": "outline", + "tags": "visible,hidden,show,hide,visibility,view,invisible,private", + "set_id": 1 + }, + { + "name": "eye-slash-light", + "content": "", + "style": "outline", + "tags": "visible,hidden,show,hide,visibility,view,invisible,eyelashes,disabled,private", + "set_id": 1 + }, + { + "name": "eyedropper-light", + "content": "", + "style": "outline", + "tags": "colors,color picker,sample,arts", + "set_id": 1 + }, + { + "name": "eyedropper-sample-light", + "content": "", + "style": "outline", + "tags": "colors,color picker,arts", + "set_id": 1 + }, + { + "name": "eyeglasses-light", + "content": "", + "style": "outline", + "tags": "vision,spectacles", + "set_id": 1 + }, + { + "name": "eyes-light", + "content": "", + "style": "outline", + "tags": "*new*,look,glance", + "set_id": 1 + }, + { + "name": "face-mask-light", + "content": "", + "style": "outline", + "tags": "ppe,facemask,covid-19,coronavirus,flu,cold", + "set_id": 1 + }, + { + "name": "facebook-logo-light", + "content": "", + "style": "outline", + "tags": "logos,social media", + "set_id": 1 + }, + { + "name": "factory-light", + "content": "", + "style": "outline", + "tags": "industry,manufacture,buildings,places,locations", + "set_id": 1 + }, + { + "name": "faders-light", + "content": "", + "style": "outline", + "tags": "music,audio,sliders,filters,equalizer,volume,settings,preferences", + "set_id": 1 + }, + { + "name": "faders-horizontal-light", + "content": "", + "style": "outline", + "tags": "music,audio,sliders,filters,equalizer,volume,settings,preferences", + "set_id": 1 + }, + { + "name": "fallout-shelter-light", + "content": "", + "style": "outline", + "tags": "*new*,radiation,radioactive,nuclear,bunker,contamination,quarantine,toxic,danger,caution", + "set_id": 1 + }, + { + "name": "fan-light", + "content": "", + "style": "outline", + "tags": "desk fan,air conditioning", + "set_id": 1 + }, + { + "name": "farm-light", + "content": "", + "style": "outline", + "tags": "*new*,farmer,field,farming,agriculture", + "set_id": 1 + }, + { + "name": "fast-forward-light", + "content": "", + "style": "outline", + "tags": "audio,music,seek,scrub,scan,ahead,skip", + "set_id": 1 + }, + { + "name": "fast-forward-circle-light", + "content": "", + "style": "outline", + "tags": "audio,music,seek,scrub,scan,ahead,skip", + "set_id": 1 + }, + { + "name": "feather-light", + "content": "", + "style": "outline", + "tags": "bird", + "set_id": 1 + }, + { + "name": "fediverse-logo-light", + "content": "", + "style": "outline", + "tags": "*new*,social media,decentralized", + "set_id": 1 + }, + { + "name": "figma-logo-light", + "content": "", + "style": "outline", + "tags": "*updated*,logos,drawing,art,illustration,ui,interface,prototype,prototyping", + "set_id": 1 + }, + { + "name": "file-light", + "content": "", + "style": "outline", + "tags": "documents,files,save,write,page", + "set_id": 1 + }, + { + "name": "file-archive-light", + "content": "", + "style": "outline", + "tags": "documents,zip,compression", + "set_id": 1 + }, + { + "name": "file-arrow-down-light", + "content": "", + "style": "outline", + "tags": "documents,files,save,write,download,directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "file-arrow-up-light", + "content": "", + "style": "outline", + "tags": "documents,files,save,write,upload,directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "file-audio-light", + "content": "", + "style": "outline", + "tags": "documents,music,sound", + "set_id": 1 + }, + { + "name": "file-c-light", + "content": "", + "style": "outline", + "tags": "*new*,documents,code", + "set_id": 1 + }, + { + "name": "file-c-sharp-light", + "content": "", + "style": "outline", + "tags": "*new*,documents,code,c#", + "set_id": 1 + }, + { + "name": "file-cloud-light", + "content": "", + "style": "outline", + "tags": "documents,sync", + "set_id": 1 + }, + { + "name": "file-code-light", + "content": "", + "style": "outline", + "tags": "documents", + "set_id": 1 + }, + { + "name": "file-cpp-light", + "content": "", + "style": "outline", + "tags": "*new*,documents,code,c++", + "set_id": 1 + }, + { + "name": "file-css-light", + "content": "", + "style": "outline", + "tags": "documents,code", + "set_id": 1 + }, + { + "name": "file-csv-light", + "content": "", + "style": "outline", + "tags": "documents,data", + "set_id": 1 + }, + { + "name": "file-dashed-light", + "content": "", + "style": "outline", + "tags": "documents,files,browse,draft,open,dotted", + "set_id": 1 + }, + { + "name": "file-doc-light", + "content": "", + "style": "outline", + "tags": "documents,word,microsoft", + "set_id": 1 + }, + { + "name": "file-html-light", + "content": "", + "style": "outline", + "tags": "*updated*,documents,code", + "set_id": 1 + }, + { + "name": "file-image-light", + "content": "", + "style": "outline", + "tags": "documents,pictures,photograph", + "set_id": 1 + }, + { + "name": "file-ini-light", + "content": "", + "style": "outline", + "tags": "*new*,documents", + "set_id": 1 + }, + { + "name": "file-jpg-light", + "content": "", + "style": "outline", + "tags": "documents,pictures,photograph,jpeg", + "set_id": 1 + }, + { + "name": "file-js-light", + "content": "", + "style": "outline", + "tags": "documents,code,javascript", + "set_id": 1 + }, + { + "name": "file-jsx-light", + "content": "", + "style": "outline", + "tags": "documents,code,javascript", + "set_id": 1 + }, + { + "name": "file-lock-light", + "content": "", + "style": "outline", + "tags": "documents,secure,locked,private", + "set_id": 1 + }, + { + "name": "file-magnifying-glass-light", + "content": "", + "style": "outline", + "tags": "documents,files,search,find,locate,browse,missing", + "set_id": 1 + }, + { + "name": "file-md-light", + "content": "", + "style": "outline", + "tags": "*new*,documents,notes,markdown", + "set_id": 1 + }, + { + "name": "file-minus-light", + "content": "", + "style": "outline", + "tags": "documents,files,delete,write,remove,-", + "set_id": 1 + }, + { + "name": "file-pdf-light", + "content": "", + "style": "outline", + "tags": "documents,files,acrobat", + "set_id": 1 + }, + { + "name": "file-plus-light", + "content": "", + "style": "outline", + "tags": "documents,files,save,write,add,new,create,+", + "set_id": 1 + }, + { + "name": "file-png-light", + "content": "", + "style": "outline", + "tags": "documents,pictures,photograph", + "set_id": 1 + }, + { + "name": "file-ppt-light", + "content": "", + "style": "outline", + "tags": "documents,powerpoint,microsoft", + "set_id": 1 + }, + { + "name": "file-py-light", + "content": "", + "style": "outline", + "tags": "*new*,documents,code,python", + "set_id": 1 + }, + { + "name": "file-rs-light", + "content": "", + "style": "outline", + "tags": "documents,code,rust", + "set_id": 1 + }, + { + "name": "file-sql-light", + "content": "", + "style": "outline", + "tags": "documents,database", + "set_id": 1 + }, + { + "name": "file-svg-light", + "content": "", + "style": "outline", + "tags": "documents,images,vector", + "set_id": 1 + }, + { + "name": "file-text-light", + "content": "", + "style": "outline", + "tags": "documents,files,save,write", + "set_id": 1 + }, + { + "name": "file-ts-light", + "content": "", + "style": "outline", + "tags": "documents,code,typescript", + "set_id": 1 + }, + { + "name": "file-tsx-light", + "content": "", + "style": "outline", + "tags": "documents,code,typescript", + "set_id": 1 + }, + { + "name": "file-txt-light", + "content": "", + "style": "outline", + "tags": "*new*,documents", + "set_id": 1 + }, + { + "name": "file-video-light", + "content": "", + "style": "outline", + "tags": "documents,movie", + "set_id": 1 + }, + { + "name": "file-vue-light", + "content": "", + "style": "outline", + "tags": "documents,code", + "set_id": 1 + }, + { + "name": "file-x-light", + "content": "", + "style": "outline", + "tags": "documents,files,cancelled,deleted,removed,errors", + "set_id": 1 + }, + { + "name": "file-xls-light", + "content": "", + "style": "outline", + "tags": "documents,excel,microsoft", + "set_id": 1 + }, + { + "name": "file-zip-light", + "content": "", + "style": "outline", + "tags": "documents,archive,compression", + "set_id": 1 + }, + { + "name": "files-light", + "content": "", + "style": "outline", + "tags": "documents,open,library", + "set_id": 1 + }, + { + "name": "film-reel-light", + "content": "", + "style": "outline", + "tags": "videography,films,movies,recording", + "set_id": 1 + }, + { + "name": "film-script-light", + "content": "", + "style": "outline", + "tags": "screenplay,movie", + "set_id": 1 + }, + { + "name": "film-slate-light", + "content": "", + "style": "outline", + "tags": "*updated*,clapper,movie", + "set_id": 1 + }, + { + "name": "film-strip-light", + "content": "", + "style": "outline", + "tags": "camera,photography,darkroom,movie,analog", + "set_id": 1 + }, + { + "name": "fingerprint-light", + "content": "", + "style": "outline", + "tags": "security,secured,authentication,authenticated,login,locked,biometrics,encrypted,encryption", + "set_id": 1 + }, + { + "name": "fingerprint-simple-light", + "content": "", + "style": "outline", + "tags": "security,secured,authentication,authenticated,login,locked,biometrics,encrypted,encryption", + "set_id": 1 + }, + { + "name": "finn-the-human-light", + "content": "", + "style": "outline", + "tags": "adventure time,cartoons,television,tv,character", + "set_id": 1 + }, + { + "name": "fire-light", + "content": "", + "style": "outline", + "tags": "flame,burning,match,lighter", + "set_id": 1 + }, + { + "name": "fire-extinguisher-light", + "content": "", + "style": "outline", + "tags": "safety,prevention,emergency,hazard,danger,caution", + "set_id": 1 + }, + { + "name": "fire-simple-light", + "content": "", + "style": "outline", + "tags": "flame,burning,match,lighter", + "set_id": 1 + }, + { + "name": "fire-truck-light", + "content": "", + "style": "outline", + "tags": "*new*,first-aid,emt,medical,medicine,injury,safety,emergency,firefighter", + "set_id": 1 + }, + { + "name": "first-aid-light", + "content": "", + "style": "outline", + "tags": "hospital,cross,medical,medicine,injury,safety,emergency,doctor", + "set_id": 1 + }, + { + "name": "first-aid-kit-light", + "content": "", + "style": "outline", + "tags": "bandages,medical,medicine,injury,safety,emergency,doctor", + "set_id": 1 + }, + { + "name": "fish-light", + "content": "", + "style": "outline", + "tags": "animals,pets,food,seafood,restaurants,dining", + "set_id": 1 + }, + { + "name": "fish-simple-light", + "content": "", + "style": "outline", + "tags": "animals,pets,food,seafood,restaurants,dining", + "set_id": 1 + }, + { + "name": "flag-light", + "content": "", + "style": "outline", + "tags": "country,countries,finished,completed,flags", + "set_id": 1 + }, + { + "name": "flag-banner-light", + "content": "", + "style": "outline", + "tags": "ribbon,country,countries,finished,completed,flags,swallowtail", + "set_id": 1 + }, + { + "name": "flag-banner-fold-light", + "content": "", + "style": "outline", + "tags": "*new*,ribbon,country,countries,finished,completed,flags,swallowtail", + "set_id": 1 + }, + { + "name": "flag-checkered-light", + "content": "", + "style": "outline", + "tags": "flags,race,racing,finish line", + "set_id": 1 + }, + { + "name": "flag-pennant-light", + "content": "", + "style": "outline", + "tags": "flags,race,sports,team", + "set_id": 1 + }, + { + "name": "flame-light", + "content": "", + "style": "outline", + "tags": "fire,burning,match,lighter", + "set_id": 1 + }, + { + "name": "flashlight-light", + "content": "", + "style": "outline", + "tags": "torch,find,search,locate", + "set_id": 1 + }, + { + "name": "flask-light", + "content": "", + "style": "outline", + "tags": "beaker,science,chemistry,experiment,erlenmeyer", + "set_id": 1 + }, + { + "name": "flip-horizontal-light", + "content": "", + "style": "outline", + "tags": "*new*,mirror,rotate,invert", + "set_id": 1 + }, + { + "name": "flip-vertical-light", + "content": "", + "style": "outline", + "tags": "*new*,mirror,rotate,invert", + "set_id": 1 + }, + { + "name": "floppy-disk-light", + "content": "", + "style": "outline", + "tags": "diskette,directory,directories,folders,documents,files,save,write", + "set_id": 1 + }, + { + "name": "floppy-disk-back-light", + "content": "", + "style": "outline", + "tags": "*updated*,diskette,directory,directories,folders,documents,files,save,write", + "set_id": 1 + }, + { + "name": "flow-arrow-light", + "content": "", + "style": "outline", + "tags": "*updated*,flowchart,arrowhead", + "set_id": 1 + }, + { + "name": "flower-light", + "content": "", + "style": "outline", + "tags": "plants,green,environmental", + "set_id": 1 + }, + { + "name": "flower-lotus-light", + "content": "", + "style": "outline", + "tags": "plants,green,environmental,spirituality", + "set_id": 1 + }, + { + "name": "flower-tulip-light", + "content": "", + "style": "outline", + "tags": "plants,green,environmental", + "set_id": 1 + }, + { + "name": "flying-saucer-light", + "content": "", + "style": "outline", + "tags": "ufo,space,aliens,extra terrestrial,sci-fi", + "set_id": 1 + }, + { + "name": "folder-light", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders", + "set_id": 1 + }, + { + "name": "folder-dashed-light", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,missing,temporary,dotted", + "set_id": 1 + }, + { + "name": "folder-lock-light", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,private,secure", + "set_id": 1 + }, + { + "name": "folder-minus-light", + "content": "", + "style": "outline", + "tags": "directory,directories,files,delete,write,remove,-", + "set_id": 1 + }, + { + "name": "folder-open-light", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,load", + "set_id": 1 + }, + { + "name": "folder-plus-light", + "content": "", + "style": "outline", + "tags": "directory,directories,files,save,write,add,new,create,+", + "set_id": 1 + }, + { + "name": "folder-simple-light", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders", + "set_id": 1 + }, + { + "name": "folder-simple-dashed-light", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,missing,temporary,dotted", + "set_id": 1 + }, + { + "name": "folder-simple-lock-light", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,private,secure", + "set_id": 1 + }, + { + "name": "folder-simple-minus-light", + "content": "", + "style": "outline", + "tags": "directory,directories,files,delete,write,remove,-", + "set_id": 1 + }, + { + "name": "folder-simple-plus-light", + "content": "", + "style": "outline", + "tags": "directory,directories,files,save,write,add,new,create,+", + "set_id": 1 + }, + { + "name": "folder-simple-star-light", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,favorite,starred", + "set_id": 1 + }, + { + "name": "folder-simple-user-light", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,personal", + "set_id": 1 + }, + { + "name": "folder-star-light", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,favorite,starred", + "set_id": 1 + }, + { + "name": "folder-user-light", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,personal", + "set_id": 1 + }, + { + "name": "folders-light", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,copy,copied,duplicated", + "set_id": 1 + }, + { + "name": "football-light", + "content": "", + "style": "outline", + "tags": "sports,american football,nfl", + "set_id": 1 + }, + { + "name": "football-helmet-light", + "content": "", + "style": "outline", + "tags": "*new*,sports,american football,nfl", + "set_id": 1 + }, + { + "name": "footprints-light", + "content": "", + "style": "outline", + "tags": "path,trail,walk,route,hike,hiking", + "set_id": 1 + }, + { + "name": "fork-knife-light", + "content": "", + "style": "outline", + "tags": "food,meal,eating,restaurants,dining,utensils", + "set_id": 1 + }, + { + "name": "four-k-light", + "content": "", + "style": "outline", + "tags": "*new*,uhd,resolution,video", + "set_id": 1 + }, + { + "name": "frame-corners-light", + "content": "", + "style": "outline", + "tags": "expand,fullscreen,maximized,resize,windowed,capture", + "set_id": 1 + }, + { + "name": "framer-logo-light", + "content": "", + "style": "outline", + "tags": "logos,interface,ui,motion,prototype,prototyping", + "set_id": 1 + }, + { + "name": "function-light", + "content": "", + "style": "outline", + "tags": "mathematics,arithmetic,f-stop", + "set_id": 1 + }, + { + "name": "funnel-light", + "content": "", + "style": "outline", + "tags": "filters,refine,sorting", + "set_id": 1 + }, + { + "name": "funnel-simple-light", + "content": "", + "style": "outline", + "tags": "filters,refine,sorting", + "set_id": 1 + }, + { + "name": "funnel-simple-x-light", + "content": "", + "style": "outline", + "tags": "*new*,filters,refine,sorting", + "set_id": 1 + }, + { + "name": "funnel-x-light", + "content": "", + "style": "outline", + "tags": "*new*,filters,refine,sorting", + "set_id": 1 + }, + { + "name": "game-controller-light", + "content": "", + "style": "outline", + "tags": "gaming,video games,nintendo switch,sony playstation,microsoft xbox", + "set_id": 1 + }, + { + "name": "garage-light", + "content": "", + "style": "outline", + "tags": "vehicles,automobile,buildings,transportation", + "set_id": 1 + }, + { + "name": "gas-can-light", + "content": "", + "style": "outline", + "tags": "jerrycan,petrol,fuel,gasoline", + "set_id": 1 + }, + { + "name": "gas-pump-light", + "content": "", + "style": "outline", + "tags": "gas station,petrol,fuel,gasoline", + "set_id": 1 + }, + { + "name": "gauge-light", + "content": "", + "style": "outline", + "tags": "dashboard,meter,speed,speedometer,odometer,performance", + "set_id": 1 + }, + { + "name": "gavel-light", + "content": "", + "style": "outline", + "tags": "judge,justice,legal,law,court,hammer,government", + "set_id": 1 + }, + { + "name": "gear-light", + "content": "", + "style": "outline", + "tags": "8,settings,setup,preferences,cogs,gears,machinery,mechanical", + "set_id": 1 + }, + { + "name": "gear-fine-light", + "content": "", + "style": "outline", + "tags": "setup,preferences,cogs,gears,machinery,mechanical", + "set_id": 1 + }, + { + "name": "gear-six-light", + "content": "", + "style": "outline", + "tags": "6,settings,setup,preferences,cogs,gears,machinery,mechanical", + "set_id": 1 + }, + { + "name": "gender-female-light", + "content": "", + "style": "outline", + "tags": "woman,feminine,venus", + "set_id": 1 + }, + { + "name": "gender-intersex-light", + "content": "", + "style": "outline", + "tags": "transgender,non-binary", + "set_id": 1 + }, + { + "name": "gender-male-light", + "content": "", + "style": "outline", + "tags": "man,masculine,mars", + "set_id": 1 + }, + { + "name": "gender-neuter-light", + "content": "", + "style": "outline", + "tags": "agender,non-binary,asexual", + "set_id": 1 + }, + { + "name": "gender-nonbinary-light", + "content": "", + "style": "outline", + "tags": "intersex,non-binary", + "set_id": 1 + }, + { + "name": "gender-transgender-light", + "content": "", + "style": "outline", + "tags": "intersex,non-binary", + "set_id": 1 + }, + { + "name": "ghost-light", + "content": "", + "style": "outline", + "tags": "pac-man,spirit,scary,halloween", + "set_id": 1 + }, + { + "name": "gif-light", + "content": "", + "style": "outline", + "tags": "gifs,.gif,giphy", + "set_id": 1 + }, + { + "name": "gift-light", + "content": "", + "style": "outline", + "tags": "presents,holiday,birthday", + "set_id": 1 + }, + { + "name": "git-branch-light", + "content": "", + "style": "outline", + "tags": "*updated*,github,vcs,source control,version control,versioning,branches", + "set_id": 1 + }, + { + "name": "git-commit-light", + "content": "", + "style": "outline", + "tags": "github,vcs,source control,version control,versioning,commits", + "set_id": 1 + }, + { + "name": "git-diff-light", + "content": "", + "style": "outline", + "tags": "*updated*,github,vcs,source control,version control,versioning,difference,compare", + "set_id": 1 + }, + { + "name": "git-fork-light", + "content": "", + "style": "outline", + "tags": "*updated*,github,vcs,source control,version control,versioning,split", + "set_id": 1 + }, + { + "name": "git-merge-light", + "content": "", + "style": "outline", + "tags": "*updated*,github,vcs,source control,version control,versioning,split", + "set_id": 1 + }, + { + "name": "git-pull-request-light", + "content": "", + "style": "outline", + "tags": "*updated*,github,vcs,source control,version control,versioning,merge request", + "set_id": 1 + }, + { + "name": "github-logo-light", + "content": "", + "style": "outline", + "tags": "octocat,vcs,source control,version control,versioning,branches", + "set_id": 1 + }, + { + "name": "gitlab-logo-light", + "content": "", + "style": "outline", + "tags": "vcs,source control,version control,versioning,branches", + "set_id": 1 + }, + { + "name": "gitlab-logo-simple-light", + "content": "", + "style": "outline", + "tags": "vcs,source control,version control,versioning,branches", + "set_id": 1 + }, + { + "name": "globe-light", + "content": "", + "style": "outline", + "tags": "world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography,internet", + "set_id": 1 + }, + { + "name": "globe-hemisphere-east-light", + "content": "", + "style": "outline", + "tags": "world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography,europe,africa,asia,australia", + "set_id": 1 + }, + { + "name": "globe-hemisphere-west-light", + "content": "", + "style": "outline", + "tags": "world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography,north america,south america", + "set_id": 1 + }, + { + "name": "globe-simple-light", + "content": "", + "style": "outline", + "tags": "world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography", + "set_id": 1 + }, + { + "name": "globe-simple-x-light", + "content": "", + "style": "outline", + "tags": "*new*,world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography,internet", + "set_id": 1 + }, + { + "name": "globe-stand-light", + "content": "", + "style": "outline", + "tags": "world,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography", + "set_id": 1 + }, + { + "name": "globe-x-light", + "content": "", + "style": "outline", + "tags": "*new*,world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography,internet", + "set_id": 1 + }, + { + "name": "goggles-light", + "content": "", + "style": "outline", + "tags": "swim,swimming,sports,exercise,olympics,aquatics", + "set_id": 1 + }, + { + "name": "golf-light", + "content": "", + "style": "outline", + "tags": "*new*,sports,pga,tee,ball", + "set_id": 1 + }, + { + "name": "goodreads-logo-light", + "content": "", + "style": "outline", + "tags": "*updated*,reading,books,social media,logos", + "set_id": 1 + }, + { + "name": "google-cardboard-logo-light", + "content": "", + "style": "outline", + "tags": "virtual reality,vr,logos", + "set_id": 1 + }, + { + "name": "google-chrome-logo-light", + "content": "", + "style": "outline", + "tags": "web browsers,internet", + "set_id": 1 + }, + { + "name": "google-drive-logo-light", + "content": "", + "style": "outline", + "tags": "cloud,storage,backup,logos", + "set_id": 1 + }, + { + "name": "google-logo-light", + "content": "", + "style": "outline", + "tags": "logos,search engine,phone,mobile,android", + "set_id": 1 + }, + { + "name": "google-photos-logo-light", + "content": "", + "style": "outline", + "tags": "album,pictures,photography", + "set_id": 1 + }, + { + "name": "google-play-logo-light", + "content": "", + "style": "outline", + "tags": "logos,games,apps,applications,play store,app store,phone,mobile,android", + "set_id": 1 + }, + { + "name": "google-podcasts-logo-light", + "content": "", + "style": "outline", + "tags": "audio", + "set_id": 1 + }, + { + "name": "gps-light", + "content": "", + "style": "outline", + "tags": "*new*,geolocation,location,navigation", + "set_id": 1 + }, + { + "name": "gps-fix-light", + "content": "", + "style": "outline", + "tags": "*new*,geolocation,location,navigation", + "set_id": 1 + }, + { + "name": "gps-slash-light", + "content": "", + "style": "outline", + "tags": "*new*,geolocation,location,navigation,disabled", + "set_id": 1 + }, + { + "name": "gradient-light", + "content": "", + "style": "outline", + "tags": "fade,ombre,opacity", + "set_id": 1 + }, + { + "name": "graduation-cap-light", + "content": "", + "style": "outline", + "tags": "classroom,teacher,education,school,college,university,degree,graduate,hat", + "set_id": 1 + }, + { + "name": "grains-light", + "content": "", + "style": "outline", + "tags": "wheat,gluten,farm,farming,agriculture", + "set_id": 1 + }, + { + "name": "grains-slash-light", + "content": "", + "style": "outline", + "tags": "gluten-free,wheat,gluten,farm,farming,agriculture", + "set_id": 1 + }, + { + "name": "graph-light", + "content": "", + "style": "outline", + "tags": "nodes,tree", + "set_id": 1 + }, + { + "name": "graphics-card-light", + "content": "", + "style": "outline", + "tags": "*new*,graphics card,microchip,computer,circuit", + "set_id": 1 + }, + { + "name": "greater-than-light", + "content": "", + "style": "outline", + "tags": "*new*,>,greater than,gt,comparison,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "greater-than-or-equal-light", + "content": "", + "style": "outline", + "tags": "*new*,≥,greater than or equal,gte,comparison,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "grid-four-light", + "content": "", + "style": "outline", + "tags": "4,apps,applications,squares,tiles,cells,tables,tabular,spreadsheets,excel", + "set_id": 1 + }, + { + "name": "grid-nine-light", + "content": "", + "style": "outline", + "tags": "9,apps,applications,squares,tiles,cells,tables,tabular,spreadsheets,excel", + "set_id": 1 + }, + { + "name": "guitar-light", + "content": "", + "style": "outline", + "tags": "music,instrument", + "set_id": 1 + }, + { + "name": "hair-dryer-light", + "content": "", + "style": "outline", + "tags": "*new*,blow dryer,beauty,grooming,salon", + "set_id": 1 + }, + { + "name": "hamburger-light", + "content": "", + "style": "outline", + "tags": "fast food,party,places,locations,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "hammer-light", + "content": "", + "style": "outline", + "tags": "tools,carpentry,construction", + "set_id": 1 + }, + { + "name": "hand-light", + "content": "", + "style": "outline", + "tags": "pointers,cursors,emoji,backhand", + "set_id": 1 + }, + { + "name": "hand-arrow-down-light", + "content": "", + "style": "outline", + "tags": "*new*,take,receive,remove,withdraw,emoji", + "set_id": 1 + }, + { + "name": "hand-arrow-up-light", + "content": "", + "style": "outline", + "tags": "*new*,give,insert,deposit,donation,emoji", + "set_id": 1 + }, + { + "name": "hand-coins-light", + "content": "", + "style": "outline", + "tags": "donation,payment,money,paying,purchase", + "set_id": 1 + }, + { + "name": "hand-deposit-light", + "content": "", + "style": "outline", + "tags": "*new*,give,insert,donation,atm,emoji", + "set_id": 1 + }, + { + "name": "hand-eye-light", + "content": "", + "style": "outline", + "tags": "*updated*,emoji,hamsa,evil eye", + "set_id": 1 + }, + { + "name": "hand-fist-light", + "content": "", + "style": "outline", + "tags": "emoji,power,protest,blm", + "set_id": 1 + }, + { + "name": "hand-grabbing-light", + "content": "", + "style": "outline", + "tags": "pointers,cursors,emoji,drag,hold", + "set_id": 1 + }, + { + "name": "hand-heart-light", + "content": "", + "style": "outline", + "tags": "donation,care,emoji", + "set_id": 1 + }, + { + "name": "hand-palm-light", + "content": "", + "style": "outline", + "tags": "pointers,cursors,emoji,palm,stop,wait,hamsa,5", + "set_id": 1 + }, + { + "name": "hand-peace-light", + "content": "", + "style": "outline", + "tags": "*new*,emoji,victory", + "set_id": 1 + }, + { + "name": "hand-pointing-light", + "content": "", + "style": "outline", + "tags": "pointers,cursors,emoji,fingers,clicks,mouse", + "set_id": 1 + }, + { + "name": "hand-soap-light", + "content": "", + "style": "outline", + "tags": "dispenser,pump,sanitizer,disinfectant,lotion,bottle", + "set_id": 1 + }, + { + "name": "hand-swipe-left-light", + "content": "", + "style": "outline", + "tags": "pointers,cursors,gesture", + "set_id": 1 + }, + { + "name": "hand-swipe-right-light", + "content": "", + "style": "outline", + "tags": "pointers,cursors,gesture", + "set_id": 1 + }, + { + "name": "hand-tap-light", + "content": "", + "style": "outline", + "tags": "pointers,cursors,gesture", + "set_id": 1 + }, + { + "name": "hand-waving-light", + "content": "", + "style": "outline", + "tags": "emoji,palm,wave,hello,goodbye", + "set_id": 1 + }, + { + "name": "hand-withdraw-light", + "content": "", + "style": "outline", + "tags": "*new*,take,remove,withdrawal,atm,emoji", + "set_id": 1 + }, + { + "name": "handbag-light", + "content": "", + "style": "outline", + "tags": "suitcases,valises,baggage,purses", + "set_id": 1 + }, + { + "name": "handbag-simple-light", + "content": "", + "style": "outline", + "tags": "suitcases,valises,baggage,purses", + "set_id": 1 + }, + { + "name": "hands-clapping-light", + "content": "", + "style": "outline", + "tags": "emoji,clap,applause", + "set_id": 1 + }, + { + "name": "hands-praying-light", + "content": "", + "style": "outline", + "tags": "emoji,religion,worship,prayer,thanks,thank you", + "set_id": 1 + }, + { + "name": "handshake-light", + "content": "", + "style": "outline", + "tags": "emoji,deal,agreement", + "set_id": 1 + }, + { + "name": "hard-drive-light", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,hard disk,storage,hdd,servers,databases", + "set_id": 1 + }, + { + "name": "hard-drives-light", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,hard disk,storage,hdd,servers,databases", + "set_id": 1 + }, + { + "name": "hard-hat-light", + "content": "", + "style": "outline", + "tags": "*new*,safety,construction,industry,helmet,ppe", + "set_id": 1 + }, + { + "name": "hash-light", + "content": "", + "style": "outline", + "tags": "hashtag,octothorpe,pound sign,number sign,tic-tac-toe,symbol", + "set_id": 1 + }, + { + "name": "hash-straight-light", + "content": "", + "style": "outline", + "tags": "hashtag,octothorpe,pound sign,number sign,tic-tac-toe,symbol", + "set_id": 1 + }, + { + "name": "head-circuit-light", + "content": "", + "style": "outline", + "tags": "*new*,automaton,artificial intelligence,ai", + "set_id": 1 + }, + { + "name": "headlights-light", + "content": "", + "style": "outline", + "tags": "brights,high beams", + "set_id": 1 + }, + { + "name": "headphones-light", + "content": "", + "style": "outline", + "tags": "music,audio,listening", + "set_id": 1 + }, + { + "name": "headset-light", + "content": "", + "style": "outline", + "tags": "music,audio,listening,gaming,voice chat,microphone,headphones,support,customer-service,call-center", + "set_id": 1 + }, + { + "name": "heart-light", + "content": "", + "style": "outline", + "tags": "wellness,love,healthy,like,favorites,favorited,suits,cards,gambling,casino,gaming,emoji", + "set_id": 1 + }, + { + "name": "heart-break-light", + "content": "", + "style": "outline", + "tags": "love,hate,crack,split,divorce,emoji", + "set_id": 1 + }, + { + "name": "heart-half-light", + "content": "", + "style": "outline", + "tags": "wellness,love,healthy,like,favorites,favorited", + "set_id": 1 + }, + { + "name": "heart-straight-light", + "content": "", + "style": "outline", + "tags": "wellness,love,healthy,like,favorites,favorited,suits,cards,gambling,casino,gaming,emoji", + "set_id": 1 + }, + { + "name": "heart-straight-break-light", + "content": "", + "style": "outline", + "tags": "love,hate,crack,split,divorce,emoji", + "set_id": 1 + }, + { + "name": "heartbeat-light", + "content": "", + "style": "outline", + "tags": "wellness,healthy,ecg,ekg,vitals,monitor", + "set_id": 1 + }, + { + "name": "hexagon-light", + "content": "", + "style": "outline", + "tags": "6,shapes,polygons", + "set_id": 1 + }, + { + "name": "high-definition-light", + "content": "", + "style": "outline", + "tags": "*new*,hd,resolution,video", + "set_id": 1 + }, + { + "name": "high-heel-light", + "content": "", + "style": "outline", + "tags": "*updated*,pumps,clothes,clothing,shoes", + "set_id": 1 + }, + { + "name": "highlighter-light", + "content": "", + "style": "outline", + "tags": "*new*,marker,write,writing,editing", + "set_id": 1 + }, + { + "name": "highlighter-circle-light", + "content": "", + "style": "outline", + "tags": "write,writing,editing,drawing", + "set_id": 1 + }, + { + "name": "hockey-light", + "content": "", + "style": "outline", + "tags": "*new*,sports,nhl,stick,puck", + "set_id": 1 + }, + { + "name": "hoodie-light", + "content": "", + "style": "outline", + "tags": "clothes,clothing,sweatshirt", + "set_id": 1 + }, + { + "name": "horse-light", + "content": "", + "style": "outline", + "tags": "animals,equestrian,chess,knight,sports", + "set_id": 1 + }, + { + "name": "hospital-light", + "content": "", + "style": "outline", + "tags": "*new*,places,locations,medical,medicine,emergency,doctor,buildings", + "set_id": 1 + }, + { + "name": "hourglass-light", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-high-light", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-low-light", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-medium-light", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-simple-light", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-simple-high-light", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-simple-low-light", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-simple-medium-light", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "house-light", + "content": "", + "style": "outline", + "tags": "homes,buildings,places,locations", + "set_id": 1 + }, + { + "name": "house-line-light", + "content": "", + "style": "outline", + "tags": "*updated*,homes,buildings,places,locations", + "set_id": 1 + }, + { + "name": "house-simple-light", + "content": "", + "style": "outline", + "tags": "homes,buildings,places,locations", + "set_id": 1 + }, + { + "name": "hurricane-light", + "content": "", + "style": "outline", + "tags": "*new*,meteorology,cyclone,storm,disaster,wind", + "set_id": 1 + }, + { + "name": "ice-cream-light", + "content": "", + "style": "outline", + "tags": "food,dessert,cone", + "set_id": 1 + }, + { + "name": "identification-badge-light", + "content": "", + "style": "outline", + "tags": "license,credentials,nametag,user,verification", + "set_id": 1 + }, + { + "name": "identification-card-light", + "content": "", + "style": "outline", + "tags": "license,badge,credentials,nametag,user,verification", + "set_id": 1 + }, + { + "name": "image-light", + "content": "", + "style": "outline", + "tags": "*updated*,pictures,photographs,photography,wallpapers,gallery,landscape", + "set_id": 1 + }, + { + "name": "image-broken-light", + "content": "", + "style": "outline", + "tags": "*new*,pictures,photographs,photography,wallpapers,gallery,landscape,missing,error,404", + "set_id": 1 + }, + { + "name": "image-square-light", + "content": "", + "style": "outline", + "tags": "pictures,photographs,photography,wallpapers,gallery,landscape", + "set_id": 1 + }, + { + "name": "images-light", + "content": "", + "style": "outline", + "tags": "*updated*,pictures,photographs,photography,wallpapers,gallery,landscape,album", + "set_id": 1 + }, + { + "name": "images-square-light", + "content": "", + "style": "outline", + "tags": "pictures,photographs,photography,wallpapers,gallery,landscape,album", + "set_id": 1 + }, + { + "name": "infinity-light", + "content": "", + "style": "outline", + "tags": "infinite,lemniscate,figure-eight,mathematics,arithmetic,calculator,∞", + "set_id": 1 + }, + { + "name": "info-light", + "content": "", + "style": "outline", + "tags": "information,help,support", + "set_id": 1 + }, + { + "name": "instagram-logo-light", + "content": "", + "style": "outline", + "tags": "logos,social media,photography,camera", + "set_id": 1 + }, + { + "name": "intersect-light", + "content": "", + "style": "outline", + "tags": "round,join,union,merge,combine,intersecting,intersection", + "set_id": 1 + }, + { + "name": "intersect-square-light", + "content": "", + "style": "outline", + "tags": "venn-diagram,join,intersection", + "set_id": 1 + }, + { + "name": "intersect-three-light", + "content": "", + "style": "outline", + "tags": "venn-diagram,join,intersection,gender,pronouns", + "set_id": 1 + }, + { + "name": "intersection-light", + "content": "", + "style": "outline", + "tags": "*new*,∩,intersection,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "invoice-light", + "content": "", + "style": "outline", + "tags": "*new*,receipt,expense,bill", + "set_id": 1 + }, + { + "name": "island-light", + "content": "", + "style": "outline", + "tags": "*new*,geography,beach,ocean,tropical,palm,vacation,trip,locations,places", + "set_id": 1 + }, + { + "name": "jar-light", + "content": "", + "style": "outline", + "tags": "*new*,mason jar,kitchen,pantry,canning,preserves,food,condiments", + "set_id": 1 + }, + { + "name": "jar-label-light", + "content": "", + "style": "outline", + "tags": "*new*,mason jar,kitchen,pantry,canning,preserves,food,condiments", + "set_id": 1 + }, + { + "name": "jeep-light", + "content": "", + "style": "outline", + "tags": "*updated*,vehicles,automobile,suv,cars,trucks,wrangler,off-road,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "joystick-light", + "content": "", + "style": "outline", + "tags": "*new*,gaming,game controller,video games,arcade game,atari", + "set_id": 1 + }, + { + "name": "kanban-light", + "content": "", + "style": "outline", + "tags": "scheduling,tasks,project management,process,lean,agile", + "set_id": 1 + }, + { + "name": "key-light", + "content": "", + "style": "outline", + "tags": "padlock,security,secured,authentication,authenticated,login,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "key-return-light", + "content": "", + "style": "outline", + "tags": "keyboard,enter", + "set_id": 1 + }, + { + "name": "keyboard-light", + "content": "", + "style": "outline", + "tags": "typing,type,keys,input", + "set_id": 1 + }, + { + "name": "keyhole-light", + "content": "", + "style": "outline", + "tags": "lock,security,secured,authentication,authenticated,login,locked,encrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "knife-light", + "content": "", + "style": "outline", + "tags": "tools,food,meal,eating,restaurants,dining,utensils", + "set_id": 1 + }, + { + "name": "ladder-light", + "content": "", + "style": "outline", + "tags": "stairs,steps,climbing", + "set_id": 1 + }, + { + "name": "ladder-simple-light", + "content": "", + "style": "outline", + "tags": "stairs,steps,climbing", + "set_id": 1 + }, + { + "name": "lamp-light", + "content": "", + "style": "outline", + "tags": "light,furniture,appliances", + "set_id": 1 + }, + { + "name": "lamp-pendant-light", + "content": "", + "style": "outline", + "tags": "*new*,light,furniture,appliances", + "set_id": 1 + }, + { + "name": "laptop-light", + "content": "", + "style": "outline", + "tags": "computer,notebook,pc,macbook", + "set_id": 1 + }, + { + "name": "lasso-light", + "content": "", + "style": "outline", + "tags": "*new*,select,selection,loop,rope,cowboy", + "set_id": 1 + }, + { + "name": "lastfm-logo-light", + "content": "", + "style": "outline", + "tags": "*new*,scrobble,music,social media", + "set_id": 1 + }, + { + "name": "layout-light", + "content": "", + "style": "outline", + "tags": "wireframe,sidebar,ui,interface", + "set_id": 1 + }, + { + "name": "leaf-light", + "content": "", + "style": "outline", + "tags": "plants,trees,branches,leaves,nodes,green,environmental", + "set_id": 1 + }, + { + "name": "lectern-light", + "content": "", + "style": "outline", + "tags": "*new*,lecture,podium,pulpit,stand,speech,presentation,keynote", + "set_id": 1 + }, + { + "name": "lego-light", + "content": "", + "style": "outline", + "tags": "*new*,toys,blocks,bricks", + "set_id": 1 + }, + { + "name": "lego-smiley-light", + "content": "", + "style": "outline", + "tags": "*new*,face,emoji,toys,blocks,bricks", + "set_id": 1 + }, + { + "name": "less-than-light", + "content": "", + "style": "outline", + "tags": "*new*,<,less than,lt,comparison,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "less-than-or-equal-light", + "content": "", + "style": "outline", + "tags": "*new*,≤,less than or equal,lte,comparison,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "letter-circle-h-light", + "content": "", + "style": "outline", + "tags": "*new*,hospital,letter,glyph,character", + "set_id": 1 + }, + { + "name": "letter-circle-p-light", + "content": "", + "style": "outline", + "tags": "*new*,parking lot,valet,vehicles,letter,glyph,character", + "set_id": 1 + }, + { + "name": "letter-circle-v-light", + "content": "", + "style": "outline", + "tags": "*new*,vegan,letter,glyph,character", + "set_id": 1 + }, + { + "name": "lifebuoy-light", + "content": "", + "style": "outline", + "tags": "lifebelt,lifesaver,safety,help,support,nautical,boats,ships", + "set_id": 1 + }, + { + "name": "lightbulb-light", + "content": "", + "style": "outline", + "tags": "flashlight,bulbs,lighting,led,energy,idea", + "set_id": 1 + }, + { + "name": "lightbulb-filament-light", + "content": "", + "style": "outline", + "tags": "flashlight,bulbs,lighting,led,energy,idea", + "set_id": 1 + }, + { + "name": "lighthouse-light", + "content": "", + "style": "outline", + "tags": "buildings,nautical,navigation,boats,ships,safety", + "set_id": 1 + }, + { + "name": "lightning-light", + "content": "", + "style": "outline", + "tags": "meteorology,stormy,thunderstorm,thunderbolt,charged,charger,charging,power,electricity,flash", + "set_id": 1 + }, + { + "name": "lightning-a-light", + "content": "", + "style": "outline", + "tags": "flash,auto", + "set_id": 1 + }, + { + "name": "lightning-slash-light", + "content": "", + "style": "outline", + "tags": "thunderbolt,charged,charger,charging,power,electricity,disabled,flash", + "set_id": 1 + }, + { + "name": "line-segment-light", + "content": "", + "style": "outline", + "tags": "shapes,drawing,path,pen,vector", + "set_id": 1 + }, + { + "name": "line-segments-light", + "content": "", + "style": "outline", + "tags": "shapes,drawing,path,pen,vector", + "set_id": 1 + }, + { + "name": "line-vertical-light", + "content": "", + "style": "outline", + "tags": "*new*,bar,pipe,|,divider. symbol", + "set_id": 1 + }, + { + "name": "link-light", + "content": "", + "style": "outline", + "tags": "*updated*,anchor,hyperlink,hypertext,chains,chained", + "set_id": 1 + }, + { + "name": "link-break-light", + "content": "", + "style": "outline", + "tags": "anchor,hyperlink,hypertext,chains,chained,errors,broken", + "set_id": 1 + }, + { + "name": "link-simple-light", + "content": "", + "style": "outline", + "tags": "anchor,hyperlink,hypertext,chains,chained", + "set_id": 1 + }, + { + "name": "link-simple-break-light", + "content": "", + "style": "outline", + "tags": "anchor,hyperlink,hypertext,chains,chained,errors,broken", + "set_id": 1 + }, + { + "name": "link-simple-horizontal-light", + "content": "", + "style": "outline", + "tags": "anchor,hyperlink,hypertext,chains,chained", + "set_id": 1 + }, + { + "name": "link-simple-horizontal-break-light", + "content": "", + "style": "outline", + "tags": "anchor,hyperlink,hypertext,chains,chained,errors,broken", + "set_id": 1 + }, + { + "name": "linkedin-logo-light", + "content": "", + "style": "outline", + "tags": "logos,jobs,employment,social media", + "set_id": 1 + }, + { + "name": "linktree-logo-light", + "content": "", + "style": "outline", + "tags": "*new*,social media,links", + "set_id": 1 + }, + { + "name": "linux-logo-light", + "content": "", + "style": "outline", + "tags": "penguin,computer,animals", + "set_id": 1 + }, + { + "name": "list-light", + "content": "", + "style": "outline", + "tags": "*updated*,hamburger menu,overflow menu,sidebar,3,ul,ol,unordered list,ordered list,checklist,lines", + "set_id": 1 + }, + { + "name": "list-bullets-light", + "content": "", + "style": "outline", + "tags": "*updated*,ul,unordered list,bulleted list,checklist", + "set_id": 1 + }, + { + "name": "list-checks-light", + "content": "", + "style": "outline", + "tags": "*updated*,checklist,todo", + "set_id": 1 + }, + { + "name": "list-dashes-light", + "content": "", + "style": "outline", + "tags": "*updated*,ul,unordered list,dashed list,checklist", + "set_id": 1 + }, + { + "name": "list-heart-light", + "content": "", + "style": "outline", + "tags": "*new*,favorites,wishlist,liked", + "set_id": 1 + }, + { + "name": "list-magnifying-glass-light", + "content": "", + "style": "outline", + "tags": "search,find,locate,query,inspect", + "set_id": 1 + }, + { + "name": "list-numbers-light", + "content": "", + "style": "outline", + "tags": "*updated*,ol,ordered list,numbered list,checklist", + "set_id": 1 + }, + { + "name": "list-plus-light", + "content": "", + "style": "outline", + "tags": "*updated*,ul,ol,unordered list,ordered list,checklist,add,+", + "set_id": 1 + }, + { + "name": "list-star-light", + "content": "", + "style": "outline", + "tags": "*new*,favorites,wishlist,liked", + "set_id": 1 + }, + { + "name": "lock-light", + "content": "", + "style": "outline", + "tags": "padlock,security,secured,authentication,authenticated,login,locked,encrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "lock-key-light", + "content": "", + "style": "outline", + "tags": "padlock,security,secured,authentication,authenticated,login,locked,encrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "lock-key-open-light", + "content": "", + "style": "outline", + "tags": "padlock,security,unsecured,authentication,unauthenticated,login,unlocked,unencrypted,encryption,privacy", + "set_id": 1 + }, + { + "name": "lock-laminated-light", + "content": "", + "style": "outline", + "tags": "padlock,security,secured,authentication,authenticated,login,locked,encrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "lock-laminated-open-light", + "content": "", + "style": "outline", + "tags": "padlock,security,unsecured,authentication,unauthenticated,login,unlocked,unencrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "lock-open-light", + "content": "", + "style": "outline", + "tags": "padlock,security,unsecured,authentication,unauthenticated,login,unlocked,unencrypted,encryption,privacy", + "set_id": 1 + }, + { + "name": "lock-simple-light", + "content": "", + "style": "outline", + "tags": "padlock,security,secured,authentication,authenticated,login,locked,encrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "lock-simple-open-light", + "content": "", + "style": "outline", + "tags": "padlock,security,unsecured,authentication,unauthenticated,login,unlocked,unencrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "lockers-light", + "content": "", + "style": "outline", + "tags": "locker room,gym,storage", + "set_id": 1 + }, + { + "name": "log-light", + "content": "", + "style": "outline", + "tags": "*new*,tree,stump,stick,branch", + "set_id": 1 + }, + { + "name": "magic-wand-light", + "content": "", + "style": "outline", + "tags": "selection,wizard,games", + "set_id": 1 + }, + { + "name": "magnet-light", + "content": "", + "style": "outline", + "tags": "magnetism,science,physics", + "set_id": 1 + }, + { + "name": "magnet-straight-light", + "content": "", + "style": "outline", + "tags": "magnetism,science,physics", + "set_id": 1 + }, + { + "name": "magnifying-glass-light", + "content": "", + "style": "outline", + "tags": "search,find,locate,query,inspect", + "set_id": 1 + }, + { + "name": "magnifying-glass-minus-light", + "content": "", + "style": "outline", + "tags": "search,find,locate,query,inspect,zoom out,-", + "set_id": 1 + }, + { + "name": "magnifying-glass-plus-light", + "content": "", + "style": "outline", + "tags": "search,find,locate,query,inspect,zoom in,+", + "set_id": 1 + }, + { + "name": "mailbox-light", + "content": "", + "style": "outline", + "tags": "*new*,email,letters,messaging,post", + "set_id": 1 + }, + { + "name": "map-pin-light", + "content": "", + "style": "outline", + "tags": "maps,places,markers,pins,locations,poi,point of interest", + "set_id": 1 + }, + { + "name": "map-pin-area-light", + "content": "", + "style": "outline", + "tags": "*new*,maps,places,markers,pins,locations,poi,point of interest", + "set_id": 1 + }, + { + "name": "map-pin-line-light", + "content": "", + "style": "outline", + "tags": "maps,places,markers,pins,locations,poi,point of interest", + "set_id": 1 + }, + { + "name": "map-pin-plus-light", + "content": "", + "style": "outline", + "tags": "*new*,maps,places,markers,pins,locations,add,point of interest", + "set_id": 1 + }, + { + "name": "map-pin-simple-light", + "content": "", + "style": "outline", + "tags": "*new*,maps,places,markers,pins,locations,poi,point of interest", + "set_id": 1 + }, + { + "name": "map-pin-simple-area-light", + "content": "", + "style": "outline", + "tags": "*new*,maps,places,markers,pins,locations,poi,point of interest", + "set_id": 1 + }, + { + "name": "map-pin-simple-line-light", + "content": "", + "style": "outline", + "tags": "*new*,maps,places,markers,pins,locations,poi,point of interest", + "set_id": 1 + }, + { + "name": "map-trifold-light", + "content": "", + "style": "outline", + "tags": "maps,places,locations,cartography,geography", + "set_id": 1 + }, + { + "name": "markdown-logo-light", + "content": "", + "style": "outline", + "tags": "*new*,markup,editor,.md", + "set_id": 1 + }, + { + "name": "marker-circle-light", + "content": "", + "style": "outline", + "tags": "write,writing,editing,drawing", + "set_id": 1 + }, + { + "name": "martini-light", + "content": "", + "style": "outline", + "tags": "glass,drinks,beverages,cocktails,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "mask-happy-light", + "content": "", + "style": "outline", + "tags": "theater,costume,smile,smiling,thalia", + "set_id": 1 + }, + { + "name": "mask-sad-light", + "content": "", + "style": "outline", + "tags": "theater,costume,cry,crying,melpomene", + "set_id": 1 + }, + { + "name": "mastodon-logo-light", + "content": "", + "style": "outline", + "tags": "*new*,fediverse,social media,decentralized", + "set_id": 1 + }, + { + "name": "math-operations-light", + "content": "", + "style": "outline", + "tags": "addition,sum,subtraction,difference,multiply,multiplication,product,divide,division,divisor,dividend,quotient,equals,equality,mathematics,arithmetic,calculator,+,-,±,×,÷,=", + "set_id": 1 + }, + { + "name": "matrix-logo-light", + "content": "", + "style": "outline", + "tags": "*new*,matrix protocol,brands,logos", + "set_id": 1 + }, + { + "name": "medal-light", + "content": "", + "style": "outline", + "tags": "ribbons,winning,victory,awards,rosette", + "set_id": 1 + }, + { + "name": "medal-military-light", + "content": "", + "style": "outline", + "tags": "ribbons,winning,victory,awards,military", + "set_id": 1 + }, + { + "name": "medium-logo-light", + "content": "", + "style": "outline", + "tags": "logos,reading,writing,news,social media", + "set_id": 1 + }, + { + "name": "megaphone-light", + "content": "", + "style": "outline", + "tags": "bullhorn,announcements,loudspeaker,broadcast", + "set_id": 1 + }, + { + "name": "megaphone-simple-light", + "content": "", + "style": "outline", + "tags": "bullhorn,announcements,loudspeaker,broadcast", + "set_id": 1 + }, + { + "name": "member-of-light", + "content": "", + "style": "outline", + "tags": "*new*,∈,is element of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "memory-light", + "content": "", + "style": "outline", + "tags": "*new*,ram,microchip,computer,circuit,electronics", + "set_id": 1 + }, + { + "name": "messenger-logo-light", + "content": "", + "style": "outline", + "tags": "logos,facebook,social media", + "set_id": 1 + }, + { + "name": "meta-logo-light", + "content": "", + "style": "outline", + "tags": "*updated*,facebook,logos,social media,logos", + "set_id": 1 + }, + { + "name": "meteor-light", + "content": "", + "style": "outline", + "tags": "*new*,astronomy,asteroid,fireball", + "set_id": 1 + }, + { + "name": "metronome-light", + "content": "", + "style": "outline", + "tags": "music,beat,tempo,bpm", + "set_id": 1 + }, + { + "name": "microphone-light", + "content": "", + "style": "outline", + "tags": "audio,recording,music,sound,podcast,studio", + "set_id": 1 + }, + { + "name": "microphone-slash-light", + "content": "", + "style": "outline", + "tags": "audio,recording,music,sound,podcast,studio,muted,disabled", + "set_id": 1 + }, + { + "name": "microphone-stage-light", + "content": "", + "style": "outline", + "tags": "audio,recording,music,sound,performance,concert", + "set_id": 1 + }, + { + "name": "microscope-light", + "content": "", + "style": "outline", + "tags": "*new*,science,biology,experiment,magnify", + "set_id": 1 + }, + { + "name": "microsoft-excel-logo-light", + "content": "", + "style": "outline", + "tags": "tables,spreadsheets,tabular", + "set_id": 1 + }, + { + "name": "microsoft-outlook-logo-light", + "content": "", + "style": "outline", + "tags": "email,logos", + "set_id": 1 + }, + { + "name": "microsoft-powerpoint-logo-light", + "content": "", + "style": "outline", + "tags": "slides,slideshow,presentation", + "set_id": 1 + }, + { + "name": "microsoft-teams-logo-light", + "content": "", + "style": "outline", + "tags": "chat,video conference", + "set_id": 1 + }, + { + "name": "microsoft-word-logo-light", + "content": "", + "style": "outline", + "tags": "documents,word processor,doc,docx", + "set_id": 1 + }, + { + "name": "minus-light", + "content": "", + "style": "outline", + "tags": "-,subtraction,difference,mathematics,arithmetic,calculator,line,horizontal,divider", + "set_id": 1 + }, + { + "name": "minus-circle-light", + "content": "", + "style": "outline", + "tags": "-,subtraction,difference,mathematics,arithmetic,calculator,round", + "set_id": 1 + }, + { + "name": "minus-square-light", + "content": "", + "style": "outline", + "tags": "-,subtraction,difference,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "money-light", + "content": "", + "style": "outline", + "tags": "cash,dollars,paper bills,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "money-wavy-light", + "content": "", + "style": "outline", + "tags": "*new*,cash,dollars,paper bills,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "monitor-light", + "content": "", + "style": "outline", + "tags": "screen,television,tv,displays", + "set_id": 1 + }, + { + "name": "monitor-arrow-up-light", + "content": "", + "style": "outline", + "tags": "*new*,screen,screencast,screenshare,upload,video,movie", + "set_id": 1 + }, + { + "name": "monitor-play-light", + "content": "", + "style": "outline", + "tags": "screen,television,tv,displays,screencast,video,movie", + "set_id": 1 + }, + { + "name": "moon-light", + "content": "", + "style": "outline", + "tags": "night,evening,clear,sleep,snooze,night mode,dark mode,astronomy,stargazing", + "set_id": 1 + }, + { + "name": "moon-stars-light", + "content": "", + "style": "outline", + "tags": "night,evening,clear,sleep,snooze,night mode,dark mode,astronomy,stargazing,constellation", + "set_id": 1 + }, + { + "name": "moped-light", + "content": "", + "style": "outline", + "tags": "scooter,vehicles,vespa,transportation,travel", + "set_id": 1 + }, + { + "name": "moped-front-light", + "content": "", + "style": "outline", + "tags": "scooter,vehicles,vespa,transportation,travel", + "set_id": 1 + }, + { + "name": "mosque-light", + "content": "", + "style": "outline", + "tags": "islam,muslim,religion,worship", + "set_id": 1 + }, + { + "name": "motorcycle-light", + "content": "", + "style": "outline", + "tags": "vehicles,motorbike,transportation,travel", + "set_id": 1 + }, + { + "name": "mountains-light", + "content": "", + "style": "outline", + "tags": "*updated*,hills,outdoors,terrain,geology,adventure", + "set_id": 1 + }, + { + "name": "mouse-light", + "content": "", + "style": "outline", + "tags": "*updated*,clicks,input", + "set_id": 1 + }, + { + "name": "mouse-left-click-light", + "content": "", + "style": "outline", + "tags": "*new*,clicks,input", + "set_id": 1 + }, + { + "name": "mouse-middle-click-light", + "content": "", + "style": "outline", + "tags": "*new*,clicks,input", + "set_id": 1 + }, + { + "name": "mouse-right-click-light", + "content": "", + "style": "outline", + "tags": "*new*,clicks,input", + "set_id": 1 + }, + { + "name": "mouse-scroll-light", + "content": "", + "style": "outline", + "tags": "*new*,clicks,input", + "set_id": 1 + }, + { + "name": "mouse-simple-light", + "content": "", + "style": "outline", + "tags": "clicks,input", + "set_id": 1 + }, + { + "name": "music-note-light", + "content": "", + "style": "outline", + "tags": "songs,audio,playlist,albums", + "set_id": 1 + }, + { + "name": "music-note-simple-light", + "content": "", + "style": "outline", + "tags": "songs,audio,playlist,albums", + "set_id": 1 + }, + { + "name": "music-notes-light", + "content": "", + "style": "outline", + "tags": "songs,audio,playlist,albums", + "set_id": 1 + }, + { + "name": "music-notes-minus-light", + "content": "", + "style": "outline", + "tags": "*new*,songs,audio,playlist,albums,remove,subtract", + "set_id": 1 + }, + { + "name": "music-notes-plus-light", + "content": "", + "style": "outline", + "tags": "songs,audio,playlist,albums,add", + "set_id": 1 + }, + { + "name": "music-notes-simple-light", + "content": "", + "style": "outline", + "tags": "songs,audio,playlist,albums", + "set_id": 1 + }, + { + "name": "navigation-arrow-light", + "content": "", + "style": "outline", + "tags": "location,directions,compass,gps", + "set_id": 1 + }, + { + "name": "needle-light", + "content": "", + "style": "outline", + "tags": "sewing,thread,awl,tailor", + "set_id": 1 + }, + { + "name": "network-light", + "content": "", + "style": "outline", + "tags": "*new*,internet,ethernet,lan", + "set_id": 1 + }, + { + "name": "network-slash-light", + "content": "", + "style": "outline", + "tags": "*new*,internet,ethernet,lan,error", + "set_id": 1 + }, + { + "name": "network-x-light", + "content": "", + "style": "outline", + "tags": "*new*,internet,ethernet,lan,disabled", + "set_id": 1 + }, + { + "name": "newspaper-light", + "content": "", + "style": "outline", + "tags": "reading,writing,journals,periodicals", + "set_id": 1 + }, + { + "name": "newspaper-clipping-light", + "content": "", + "style": "outline", + "tags": "*updated*,reading,writing,journals,periodicals", + "set_id": 1 + }, + { + "name": "not-equals-light", + "content": "", + "style": "outline", + "tags": "*new*,≠,equality,equivalent,equivalence,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "not-member-of-light", + "content": "", + "style": "outline", + "tags": "*new*,∉,is not element of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "not-subset-of-light", + "content": "", + "style": "outline", + "tags": "*new*,⊄,not subset of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "not-superset-of-light", + "content": "", + "style": "outline", + "tags": "*new*,⊉,not superset of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "notches-light", + "content": "", + "style": "outline", + "tags": "textarea,resize,drag handle,knurling", + "set_id": 1 + }, + { + "name": "note-light", + "content": "", + "style": "outline", + "tags": "notes,note-taking,memorandum,post-it,reminders", + "set_id": 1 + }, + { + "name": "note-blank-light", + "content": "", + "style": "outline", + "tags": "notes,note-taking,memorandum,post-it,reminders", + "set_id": 1 + }, + { + "name": "note-pencil-light", + "content": "", + "style": "outline", + "tags": "notes,note-taking,memorandum,post-it,reminders", + "set_id": 1 + }, + { + "name": "notebook-light", + "content": "", + "style": "outline", + "tags": "notes,note-taking,memorandum,journal,diary,logs,logbook", + "set_id": 1 + }, + { + "name": "notepad-light", + "content": "", + "style": "outline", + "tags": "*updated*,logs,logbook,notes,note-taking,memorandum,journal,diary", + "set_id": 1 + }, + { + "name": "notification-light", + "content": "", + "style": "outline", + "tags": "badge,pip", + "set_id": 1 + }, + { + "name": "notion-logo-light", + "content": "", + "style": "outline", + "tags": "documentation,productivity,wiki,logos", + "set_id": 1 + }, + { + "name": "nuclear-plant-light", + "content": "", + "style": "outline", + "tags": "*new*,renewable,energy,power,electricity", + "set_id": 1 + }, + { + "name": "number-circle-eight-light", + "content": "", + "style": "outline", + "tags": "8,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-five-light", + "content": "", + "style": "outline", + "tags": "5,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-four-light", + "content": "", + "style": "outline", + "tags": "*updated*,4,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-nine-light", + "content": "", + "style": "outline", + "tags": "9,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-one-light", + "content": "", + "style": "outline", + "tags": "1,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-seven-light", + "content": "", + "style": "outline", + "tags": "7,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-six-light", + "content": "", + "style": "outline", + "tags": "6,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-three-light", + "content": "", + "style": "outline", + "tags": "3,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-two-light", + "content": "", + "style": "outline", + "tags": "2,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-zero-light", + "content": "", + "style": "outline", + "tags": "0,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-eight-light", + "content": "", + "style": "outline", + "tags": "8,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-five-light", + "content": "", + "style": "outline", + "tags": "5,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-four-light", + "content": "", + "style": "outline", + "tags": "*updated*,4,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-nine-light", + "content": "", + "style": "outline", + "tags": "9,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-one-light", + "content": "", + "style": "outline", + "tags": "1,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-seven-light", + "content": "", + "style": "outline", + "tags": "7,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-six-light", + "content": "", + "style": "outline", + "tags": "6,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-eight-light", + "content": "", + "style": "outline", + "tags": "8,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-five-light", + "content": "", + "style": "outline", + "tags": "5,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-four-light", + "content": "", + "style": "outline", + "tags": "*updated*,4,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-nine-light", + "content": "", + "style": "outline", + "tags": "9,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-one-light", + "content": "", + "style": "outline", + "tags": "1,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-seven-light", + "content": "", + "style": "outline", + "tags": "7,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-six-light", + "content": "", + "style": "outline", + "tags": "6,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-three-light", + "content": "", + "style": "outline", + "tags": "3,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-two-light", + "content": "", + "style": "outline", + "tags": "2,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-zero-light", + "content": "", + "style": "outline", + "tags": "0,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-three-light", + "content": "", + "style": "outline", + "tags": "3,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-two-light", + "content": "", + "style": "outline", + "tags": "2,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-zero-light", + "content": "", + "style": "outline", + "tags": "0,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "numpad-light", + "content": "", + "style": "outline", + "tags": "*new*,dialer,dialpad,call-center,telephone,landline,password,passcode", + "set_id": 1 + }, + { + "name": "nut-light", + "content": "", + "style": "outline", + "tags": "bolts,screws,machinery,tools,hexagon", + "set_id": 1 + }, + { + "name": "ny-times-logo-light", + "content": "", + "style": "outline", + "tags": "nyt,new york times,logos,reading,writing,news,newspaper", + "set_id": 1 + }, + { + "name": "octagon-light", + "content": "", + "style": "outline", + "tags": "8,shapes,polygons", + "set_id": 1 + }, + { + "name": "office-chair-light", + "content": "", + "style": "outline", + "tags": "furniture,seat", + "set_id": 1 + }, + { + "name": "onigiri-light", + "content": "", + "style": "outline", + "tags": "*new*,rice ball,japanese,food,restaurant", + "set_id": 1 + }, + { + "name": "open-ai-logo-light", + "content": "", + "style": "outline", + "tags": "*new*,artificial intelligence,ai,chatgpt,llm,logos", + "set_id": 1 + }, + { + "name": "option-light", + "content": "", + "style": "outline", + "tags": "keyboard,shortcut,modifier", + "set_id": 1 + }, + { + "name": "orange-light", + "content": "", + "style": "outline", + "tags": "*new*,food,fruit,juice,citrus,groceries,market", + "set_id": 1 + }, + { + "name": "orange-slice-light", + "content": "", + "style": "outline", + "tags": "food,fruit,juice,citrus,groceries,market", + "set_id": 1 + }, + { + "name": "oven-light", + "content": "", + "style": "outline", + "tags": "*new*,stove,stovetop,food,cooking,cuisine,kitchen", + "set_id": 1 + }, + { + "name": "package-light", + "content": "", + "style": "outline", + "tags": "packages,boxes,delivery,mail,postal service,bundles,library,libraries,shipping", + "set_id": 1 + }, + { + "name": "paint-brush-light", + "content": "", + "style": "outline", + "tags": "colors,color picker,arts", + "set_id": 1 + }, + { + "name": "paint-brush-broad-light", + "content": "", + "style": "outline", + "tags": "fill,colors,color picker,arts", + "set_id": 1 + }, + { + "name": "paint-brush-household-light", + "content": "", + "style": "outline", + "tags": "colors,color picker,arts", + "set_id": 1 + }, + { + "name": "paint-bucket-light", + "content": "", + "style": "outline", + "tags": "*updated*,paintbucket,colors,color picker,fill,arts", + "set_id": 1 + }, + { + "name": "paint-roller-light", + "content": "", + "style": "outline", + "tags": "colors,color picker,fill,arts,theme", + "set_id": 1 + }, + { + "name": "palette-light", + "content": "", + "style": "outline", + "tags": "paint,colors,color picker,arts", + "set_id": 1 + }, + { + "name": "panorama-light", + "content": "", + "style": "outline", + "tags": "*new*,image,picture,photography,landscape,360", + "set_id": 1 + }, + { + "name": "pants-light", + "content": "", + "style": "outline", + "tags": "clothing,clothes,jeans", + "set_id": 1 + }, + { + "name": "paper-plane-light", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,messages,messaging,toys,games", + "set_id": 1 + }, + { + "name": "paper-plane-right-light", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,messages,messaging,toys,games", + "set_id": 1 + }, + { + "name": "paper-plane-tilt-light", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,messages,messaging,toys,games", + "set_id": 1 + }, + { + "name": "paperclip-light", + "content": "", + "style": "outline", + "tags": "attachments,mail,email,office", + "set_id": 1 + }, + { + "name": "paperclip-horizontal-light", + "content": "", + "style": "outline", + "tags": "attachments,mail,email,office", + "set_id": 1 + }, + { + "name": "parachute-light", + "content": "", + "style": "outline", + "tags": "skydiving,safety", + "set_id": 1 + }, + { + "name": "paragraph-light", + "content": "", + "style": "outline", + "tags": "pilcrow", + "set_id": 1 + }, + { + "name": "parallelogram-light", + "content": "", + "style": "outline", + "tags": "shapes,bandcamp,logos", + "set_id": 1 + }, + { + "name": "park-light", + "content": "", + "style": "outline", + "tags": "bench,outdoors", + "set_id": 1 + }, + { + "name": "password-light", + "content": "", + "style": "outline", + "tags": "security,secured,authentication,authenticated,login,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "path-light", + "content": "", + "style": "outline", + "tags": "transit,travel,trail,gps,navigation,route,destination,vector", + "set_id": 1 + }, + { + "name": "patreon-logo-light", + "content": "", + "style": "outline", + "tags": "*updated*,crowdfunding,logos", + "set_id": 1 + }, + { + "name": "pause-light", + "content": "", + "style": "outline", + "tags": "music,audio,resume,start,stop", + "set_id": 1 + }, + { + "name": "pause-circle-light", + "content": "", + "style": "outline", + "tags": "music,audio,resume,start,stop,round", + "set_id": 1 + }, + { + "name": "paw-print-light", + "content": "", + "style": "outline", + "tags": "pets,pet store,pet shop,animals,cat,dog,veterinarian", + "set_id": 1 + }, + { + "name": "paypal-logo-light", + "content": "", + "style": "outline", + "tags": "payments,paying,purchase,logos", + "set_id": 1 + }, + { + "name": "peace-light", + "content": "", + "style": "outline", + "tags": "love,hippies,peace sign,symbols", + "set_id": 1 + }, + { + "name": "pen-light", + "content": "", + "style": "outline", + "tags": "ink,write,writing,editing,sign,signature", + "set_id": 1 + }, + { + "name": "pen-nib-light", + "content": "", + "style": "outline", + "tags": "ink,write,writing,editing,sign,signature,fountain pen,illustrator", + "set_id": 1 + }, + { + "name": "pen-nib-straight-light", + "content": "", + "style": "outline", + "tags": "ink,write,writing,editing,sign,signature,fountain pen,illustrator", + "set_id": 1 + }, + { + "name": "pencil-light", + "content": "", + "style": "outline", + "tags": "write,writing,editing,sign,signature", + "set_id": 1 + }, + { + "name": "pencil-circle-light", + "content": "", + "style": "outline", + "tags": "write,writing,editing,sign,signature", + "set_id": 1 + }, + { + "name": "pencil-line-light", + "content": "", + "style": "outline", + "tags": "write,writing,editing,sign,signature", + "set_id": 1 + }, + { + "name": "pencil-ruler-light", + "content": "", + "style": "outline", + "tags": "*new*,drawing,drafting,construction,tools", + "set_id": 1 + }, + { + "name": "pencil-simple-light", + "content": "", + "style": "outline", + "tags": "write,writing,editing,sign,signature", + "set_id": 1 + }, + { + "name": "pencil-simple-line-light", + "content": "", + "style": "outline", + "tags": "write,writing,editing,sign,signature", + "set_id": 1 + }, + { + "name": "pencil-simple-slash-light", + "content": "", + "style": "outline", + "tags": "read-only,write,writing,editing", + "set_id": 1 + }, + { + "name": "pencil-slash-light", + "content": "", + "style": "outline", + "tags": "read-only,write,writing,editing", + "set_id": 1 + }, + { + "name": "pentagon-light", + "content": "", + "style": "outline", + "tags": "*new*,shapes,polygons,5", + "set_id": 1 + }, + { + "name": "pentagram-light", + "content": "", + "style": "outline", + "tags": "star,wicca,satan,satanism,religion,spirituality,evil,magic", + "set_id": 1 + }, + { + "name": "pepper-light", + "content": "", + "style": "outline", + "tags": "food,spicy,chile,vegetable", + "set_id": 1 + }, + { + "name": "percent-light", + "content": "", + "style": "outline", + "tags": "%,percentage,percentile,ratio,delta,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "person-light", + "content": "", + "style": "outline", + "tags": "walking,human,woman,man,body,transit,transportation,travel,commuter,user", + "set_id": 1 + }, + { + "name": "person-arms-spread-light", + "content": "", + "style": "outline", + "tags": "accessibility,vitruvian,stretch,sports", + "set_id": 1 + }, + { + "name": "person-simple-light", + "content": "", + "style": "outline", + "tags": "pedestrian,walking,human,woman,man,body,transit,transportation,travel,commuter,user,exercise", + "set_id": 1 + }, + { + "name": "person-simple-bike-light", + "content": "", + "style": "outline", + "tags": "pedestrian,biking,bicycle,human,woman,man,body,sports,exercise", + "set_id": 1 + }, + { + "name": "person-simple-circle-light", + "content": "", + "style": "outline", + "tags": "*new*,human,accessibility,a11y,vitruvius,vitruvian", + "set_id": 1 + }, + { + "name": "person-simple-hike-light", + "content": "", + "style": "outline", + "tags": "*new*,pedestrian,climbing,mountaineering,bouldering", + "set_id": 1 + }, + { + "name": "person-simple-run-light", + "content": "", + "style": "outline", + "tags": "pedestrian,running,human,woman,man,body,transit,transportation,travel,commuter,user,exercise", + "set_id": 1 + }, + { + "name": "person-simple-ski-light", + "content": "", + "style": "outline", + "tags": "*new*,sports,skiing,winter,mountain", + "set_id": 1 + }, + { + "name": "person-simple-snowboard-light", + "content": "", + "style": "outline", + "tags": "*new*,sports,snowboarding,winter,mountain", + "set_id": 1 + }, + { + "name": "person-simple-swim-light", + "content": "", + "style": "outline", + "tags": "*new*,pedestrian,swimming,human,woman,man,body,sports,exercise", + "set_id": 1 + }, + { + "name": "person-simple-tai-chi-light", + "content": "", + "style": "outline", + "tags": "*new*,mindfulness,martial arts,meditation,sports,exercise,yoga", + "set_id": 1 + }, + { + "name": "person-simple-throw-light", + "content": "", + "style": "outline", + "tags": "pedestrian,tennis,human,woman,man,body,sports,exercise", + "set_id": 1 + }, + { + "name": "person-simple-walk-light", + "content": "", + "style": "outline", + "tags": "pedestrian,walking,human,woman,man,body,transit,transportation,travel,commuter,user,exercise", + "set_id": 1 + }, + { + "name": "perspective-light", + "content": "", + "style": "outline", + "tags": "3d,skew,warp,trapezoid", + "set_id": 1 + }, + { + "name": "phone-light", + "content": "", + "style": "outline", + "tags": "calls,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-call-light", + "content": "", + "style": "outline", + "tags": "calls,calling,ringing,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-disconnect-light", + "content": "", + "style": "outline", + "tags": "calls,hang up,disconnected,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-incoming-light", + "content": "", + "style": "outline", + "tags": "calls,calling,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-list-light", + "content": "", + "style": "outline", + "tags": "*new*,calls,call-center,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-outgoing-light", + "content": "", + "style": "outline", + "tags": "calls,calling,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-pause-light", + "content": "", + "style": "outline", + "tags": "*new*,calls,hold,call-center,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-plus-light", + "content": "", + "style": "outline", + "tags": "calls,telephone,landline,talk,conference,add", + "set_id": 1 + }, + { + "name": "phone-slash-light", + "content": "", + "style": "outline", + "tags": "calls,disabled,disconnected,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-transfer-light", + "content": "", + "style": "outline", + "tags": "*new*,calls,call-center,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-x-light", + "content": "", + "style": "outline", + "tags": "calls,missed,errors,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phosphor-logo-light", + "content": "", + "style": "outline", + "tags": "logos", + "set_id": 1 + }, + { + "name": "pi-light", + "content": "", + "style": "outline", + "tags": "π,symbol,mathematics,circle", + "set_id": 1 + }, + { + "name": "piano-keys-light", + "content": "", + "style": "outline", + "tags": "music,instrument,keyboard", + "set_id": 1 + }, + { + "name": "picnic-table-light", + "content": "", + "style": "outline", + "tags": "*new*,bench,park,outdoors", + "set_id": 1 + }, + { + "name": "picture-in-picture-light", + "content": "", + "style": "outline", + "tags": "pip,pop-out,minimize,maximize", + "set_id": 1 + }, + { + "name": "piggy-bank-light", + "content": "", + "style": "outline", + "tags": "savings,deposit,money,coins", + "set_id": 1 + }, + { + "name": "pill-light", + "content": "", + "style": "outline", + "tags": "capsule,medicine,rx,pharmacy,pharmacist,pharmaceuticals,prescription,drugs", + "set_id": 1 + }, + { + "name": "ping-pong-light", + "content": "", + "style": "outline", + "tags": "*new*,sports,paddle", + "set_id": 1 + }, + { + "name": "pint-glass-light", + "content": "", + "style": "outline", + "tags": "*new*,water,beverage,drinks,beverages,food,dining", + "set_id": 1 + }, + { + "name": "pinterest-logo-light", + "content": "", + "style": "outline", + "tags": "logos,vision board,mood board,social media", + "set_id": 1 + }, + { + "name": "pinwheel-light", + "content": "", + "style": "outline", + "tags": "toys,whirligig", + "set_id": 1 + }, + { + "name": "pipe-light", + "content": "", + "style": "outline", + "tags": "*new*,tube,plumber,plumbing,construction", + "set_id": 1 + }, + { + "name": "pipe-wrench-light", + "content": "", + "style": "outline", + "tags": "*new*,plumber,plumbing,tools,construction", + "set_id": 1 + }, + { + "name": "pix-logo-light", + "content": "", + "style": "outline", + "tags": "*new*,payments,paying,purchase,logos", + "set_id": 1 + }, + { + "name": "pizza-light", + "content": "", + "style": "outline", + "tags": "fast food,party,places,locations,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "placeholder-light", + "content": "", + "style": "outline", + "tags": "empty,notdef,tofu,rectangle slash,missing", + "set_id": 1 + }, + { + "name": "planet-light", + "content": "", + "style": "outline", + "tags": "saturn,world,globe,astronomy,space", + "set_id": 1 + }, + { + "name": "plant-light", + "content": "", + "style": "outline", + "tags": "sprout,vegan,farm,farming,garden,gardening", + "set_id": 1 + }, + { + "name": "play-light", + "content": "", + "style": "outline", + "tags": "music,audio,resume,start", + "set_id": 1 + }, + { + "name": "play-circle-light", + "content": "", + "style": "outline", + "tags": "music,audio,resume,start,round", + "set_id": 1 + }, + { + "name": "play-pause-light", + "content": "", + "style": "outline", + "tags": "music,audio,resume,start,stop", + "set_id": 1 + }, + { + "name": "playlist-light", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,queue", + "set_id": 1 + }, + { + "name": "plug-light", + "content": "", + "style": "outline", + "tags": "outlet,socket,plugin,integration", + "set_id": 1 + }, + { + "name": "plug-charging-light", + "content": "", + "style": "outline", + "tags": "outlet,socket,plugin,integration,charge,charging", + "set_id": 1 + }, + { + "name": "plugs-light", + "content": "", + "style": "outline", + "tags": "outlet,socket,plugin,integration,disconnected", + "set_id": 1 + }, + { + "name": "plugs-connected-light", + "content": "", + "style": "outline", + "tags": "*updated*,outlet,socket,plugin,integration", + "set_id": 1 + }, + { + "name": "plus-light", + "content": "", + "style": "outline", + "tags": "addition,sum,mathematics,arithmetic,calculator,+", + "set_id": 1 + }, + { + "name": "plus-circle-light", + "content": "", + "style": "outline", + "tags": "addition,sum,mathematics,arithmetic,calculator,round,+", + "set_id": 1 + }, + { + "name": "plus-minus-light", + "content": "", + "style": "outline", + "tags": "plus or minus,plus/minus,add/subtract,addition,sum,subtraction,difference,mathematics,arithmetic,calculator,+,-,±", + "set_id": 1 + }, + { + "name": "plus-square-light", + "content": "", + "style": "outline", + "tags": "addition,sum,mathematics,arithmetic,calculator,+", + "set_id": 1 + }, + { + "name": "poker-chip-light", + "content": "", + "style": "outline", + "tags": "chips,tokens,cards,gambling,casino", + "set_id": 1 + }, + { + "name": "police-car-light", + "content": "", + "style": "outline", + "tags": "*updated*,vehicles,cars,automobiles,law enforcement", + "set_id": 1 + }, + { + "name": "polygon-light", + "content": "", + "style": "outline", + "tags": "shapes,drawing", + "set_id": 1 + }, + { + "name": "popcorn-light", + "content": "", + "style": "outline", + "tags": "food,movies,theater", + "set_id": 1 + }, + { + "name": "popsicle-light", + "content": "", + "style": "outline", + "tags": "*new*,ice cream,dessert,summer,food", + "set_id": 1 + }, + { + "name": "potted-plant-light", + "content": "", + "style": "outline", + "tags": "sprout,vegan,garden,gardening", + "set_id": 1 + }, + { + "name": "power-light", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,on,off,on/off,switch,power switch", + "set_id": 1 + }, + { + "name": "prescription-light", + "content": "", + "style": "outline", + "tags": "rx,medicine,drugs,pharmacy,pharmacist,pharmaceuticals,doctor", + "set_id": 1 + }, + { + "name": "presentation-light", + "content": "", + "style": "outline", + "tags": "whiteboard,flipchart,charts,statistics,analyze,analysis,meeting", + "set_id": 1 + }, + { + "name": "presentation-chart-light", + "content": "", + "style": "outline", + "tags": "whiteboard,flipchart,graphs,graphing,charts,statistics,analyze,analysis,meeting", + "set_id": 1 + }, + { + "name": "printer-light", + "content": "", + "style": "outline", + "tags": "printing", + "set_id": 1 + }, + { + "name": "prohibit-light", + "content": "", + "style": "outline", + "tags": "forbidden,prohibited,cancelled,prevent,stop,do not enter", + "set_id": 1 + }, + { + "name": "prohibit-inset-light", + "content": "", + "style": "outline", + "tags": "forbidden,prohibited,cancelled,prevent,stop,do not enter", + "set_id": 1 + }, + { + "name": "projector-screen-light", + "content": "", + "style": "outline", + "tags": "projection,presentation,slideshow,movies,charts,statistics,analyze,analysis", + "set_id": 1 + }, + { + "name": "projector-screen-chart-light", + "content": "", + "style": "outline", + "tags": "projection,presentation,slideshow,graphs,graphing,charts,statistics,analyze,analysis", + "set_id": 1 + }, + { + "name": "pulse-light", + "content": "", + "style": "outline", + "tags": "activity,heartbeat,medical,ecg,ekg,vitals,monitor,medicine", + "set_id": 1 + }, + { + "name": "push-pin-light", + "content": "", + "style": "outline", + "tags": "favorites,favorited,pushpin", + "set_id": 1 + }, + { + "name": "push-pin-simple-light", + "content": "", + "style": "outline", + "tags": "favorites,favorited,pushpin", + "set_id": 1 + }, + { + "name": "push-pin-simple-slash-light", + "content": "", + "style": "outline", + "tags": "favorites,favorited,pushpin,disabled", + "set_id": 1 + }, + { + "name": "push-pin-slash-light", + "content": "", + "style": "outline", + "tags": "favorites,favorited,pushpin,disabled", + "set_id": 1 + }, + { + "name": "puzzle-piece-light", + "content": "", + "style": "outline", + "tags": "board game,element,component,extension,plugin", + "set_id": 1 + }, + { + "name": "qr-code-light", + "content": "", + "style": "outline", + "tags": "upc,barcode,products,shopping,scanner", + "set_id": 1 + }, + { + "name": "question-light", + "content": "", + "style": "outline", + "tags": "information,help,support,questions", + "set_id": 1 + }, + { + "name": "question-mark-light", + "content": "", + "style": "outline", + "tags": "*new*,?,information,help,support,questions,punctuation,symbol", + "set_id": 1 + }, + { + "name": "queue-light", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,playlist", + "set_id": 1 + }, + { + "name": "quotes-light", + "content": "", + "style": "outline", + "tags": "quoations,quotation marks,double-quotes,writing,books", + "set_id": 1 + }, + { + "name": "rabbit-light", + "content": "", + "style": "outline", + "tags": "*new*,hare,fast,animal", + "set_id": 1 + }, + { + "name": "racquet-light", + "content": "", + "style": "outline", + "tags": "*new*,sports,tennis,squash,pickleball", + "set_id": 1 + }, + { + "name": "radical-light", + "content": "", + "style": "outline", + "tags": "√,radix,radicand,square root,squareroot,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "radio-light", + "content": "", + "style": "outline", + "tags": "broadcast,fm,am,xm,transmitter,receiver", + "set_id": 1 + }, + { + "name": "radio-button-light", + "content": "", + "style": "outline", + "tags": "input,checkbox,checked", + "set_id": 1 + }, + { + "name": "radioactive-light", + "content": "", + "style": "outline", + "tags": "radiation,danger,warning,nuclear,atomic", + "set_id": 1 + }, + { + "name": "rainbow-light", + "content": "", + "style": "outline", + "tags": "meteorology,rainstorm,arc,pride,lgbtq+,leprechaun", + "set_id": 1 + }, + { + "name": "rainbow-cloud-light", + "content": "", + "style": "outline", + "tags": "meteorology,rainstorm,cloudy,partly cloudy,partly sunny,pride,lgbtq+,leprechaun", + "set_id": 1 + }, + { + "name": "ranking-light", + "content": "", + "style": "outline", + "tags": "*new*,medal,rank,leaderboard,winner,sports", + "set_id": 1 + }, + { + "name": "read-cv-logo-light", + "content": "", + "style": "outline", + "tags": "resume,jobs,logos", + "set_id": 1 + }, + { + "name": "receipt-light", + "content": "", + "style": "outline", + "tags": "purchase,money,clipping,expense", + "set_id": 1 + }, + { + "name": "receipt-x-light", + "content": "", + "style": "outline", + "tags": "purchase,money,clipping,expense,cancel", + "set_id": 1 + }, + { + "name": "record-light", + "content": "", + "style": "outline", + "tags": "music,audio,recording,recorder,voice memo", + "set_id": 1 + }, + { + "name": "rectangle-light", + "content": "", + "style": "outline", + "tags": "4,shapes,polygons,box", + "set_id": 1 + }, + { + "name": "rectangle-dashed-light", + "content": "", + "style": "outline", + "tags": "*new*,4,shapes,polygons,box,missing", + "set_id": 1 + }, + { + "name": "recycle-light", + "content": "", + "style": "outline", + "tags": "recycling,trash,environmental,green", + "set_id": 1 + }, + { + "name": "reddit-logo-light", + "content": "", + "style": "outline", + "tags": "logos,subreddit,snoo,social media", + "set_id": 1 + }, + { + "name": "repeat-light", + "content": "", + "style": "outline", + "tags": "music,audio,recycle", + "set_id": 1 + }, + { + "name": "repeat-once-light", + "content": "", + "style": "outline", + "tags": "music,audio,recycle", + "set_id": 1 + }, + { + "name": "replit-logo-light", + "content": "", + "style": "outline", + "tags": "*new*,logos,ide,editor,coding", + "set_id": 1 + }, + { + "name": "resize-light", + "content": "", + "style": "outline", + "tags": "*new*,maximize,expand,grow", + "set_id": 1 + }, + { + "name": "rewind-light", + "content": "", + "style": "outline", + "tags": "music,audio,seek,scrub,scan,skip,back,backwards,reverse", + "set_id": 1 + }, + { + "name": "rewind-circle-light", + "content": "", + "style": "outline", + "tags": "music,audio,seek,scrub,scan,skip,back,backwards,reverse", + "set_id": 1 + }, + { + "name": "road-horizon-light", + "content": "", + "style": "outline", + "tags": "trip,drive,road,travel,transportation,highway", + "set_id": 1 + }, + { + "name": "robot-light", + "content": "", + "style": "outline", + "tags": "automaton,artificial intelligence,ai", + "set_id": 1 + }, + { + "name": "rocket-light", + "content": "", + "style": "outline", + "tags": "spaceship,launch,deployment,rocketship", + "set_id": 1 + }, + { + "name": "rocket-launch-light", + "content": "", + "style": "outline", + "tags": "*updated*,spaceship,flying,blastoff,deployment,rocketship", + "set_id": 1 + }, + { + "name": "rows-light", + "content": "", + "style": "outline", + "tags": "2,shapes,polygons,box,stack,list,table,cards", + "set_id": 1 + }, + { + "name": "rows-plus-bottom-light", + "content": "", + "style": "outline", + "tags": "*new*,2,shapes,polygons,box,stack,list,table,cards,prepend,insert", + "set_id": 1 + }, + { + "name": "rows-plus-top-light", + "content": "", + "style": "outline", + "tags": "*new*,2,shapes,polygons,box,stack,list,table,cards,prepend,insert", + "set_id": 1 + }, + { + "name": "rss-light", + "content": "", + "style": "outline", + "tags": "radio,broadcast,web feed,news,aggregator", + "set_id": 1 + }, + { + "name": "rss-simple-light", + "content": "", + "style": "outline", + "tags": "radio,broadcast,web feed,news,aggregator", + "set_id": 1 + }, + { + "name": "rug-light", + "content": "", + "style": "outline", + "tags": "*updated*,tapestry,carpet", + "set_id": 1 + }, + { + "name": "ruler-light", + "content": "", + "style": "outline", + "tags": "measure,scale,distance", + "set_id": 1 + }, + { + "name": "sailboat-light", + "content": "", + "style": "outline", + "tags": "*new*,sailing,ship,vehicles,transportation,sports,places,locations", + "set_id": 1 + }, + { + "name": "scales-light", + "content": "", + "style": "outline", + "tags": "measure,balance,law,justice,government", + "set_id": 1 + }, + { + "name": "scan-light", + "content": "", + "style": "outline", + "tags": "upc,barcode,products,shopping,scanner", + "set_id": 1 + }, + { + "name": "scan-smiley-light", + "content": "", + "style": "outline", + "tags": "*new*,facial recognition,face unlock,scanner", + "set_id": 1 + }, + { + "name": "scissors-light", + "content": "", + "style": "outline", + "tags": "*updated*,cut,snip,clipboard", + "set_id": 1 + }, + { + "name": "scooter-light", + "content": "", + "style": "outline", + "tags": "vehicles,transportation,travel,transit", + "set_id": 1 + }, + { + "name": "screencast-light", + "content": "", + "style": "outline", + "tags": "apple,airplay,screencasting,screen share,television,tv", + "set_id": 1 + }, + { + "name": "screwdriver-light", + "content": "", + "style": "outline", + "tags": "*new*,tools,construction,flathead,drill", + "set_id": 1 + }, + { + "name": "scribble-light", + "content": "", + "style": "outline", + "tags": "*new*,doodles,squiggle,drawing,sign,signature", + "set_id": 1 + }, + { + "name": "scribble-loop-light", + "content": "", + "style": "outline", + "tags": "doodles,drawing,sign,signature", + "set_id": 1 + }, + { + "name": "scroll-light", + "content": "", + "style": "outline", + "tags": "*updated*,parchment,paper,script,spell,fantasy", + "set_id": 1 + }, + { + "name": "seal-light", + "content": "", + "style": "outline", + "tags": "badge,verified,verification,shapes,polygons,circle-wavy", + "set_id": 1 + }, + { + "name": "seal-check-light", + "content": "", + "style": "outline", + "tags": "badge,verified,verification,shapes,polygons,circle-wavy", + "set_id": 1 + }, + { + "name": "seal-percent-light", + "content": "", + "style": "outline", + "tags": "*new*,badge,discount,sale,shapes,polygons,circle-wavy", + "set_id": 1 + }, + { + "name": "seal-question-light", + "content": "", + "style": "outline", + "tags": "badge,unverified,verification,shapes,polygons,circle-wavy", + "set_id": 1 + }, + { + "name": "seal-warning-light", + "content": "", + "style": "outline", + "tags": "badge,unverified,verification,errors,shapes,polygons,circle-wavy", + "set_id": 1 + }, + { + "name": "seat-light", + "content": "", + "style": "outline", + "tags": "*new*,chair,car seat,airplane seat,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "seatbelt-light", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,safety", + "set_id": 1 + }, + { + "name": "security-camera-light", + "content": "", + "style": "outline", + "tags": "*new*,cctv,surveillance,video,monitor,motion detector,safety", + "set_id": 1 + }, + { + "name": "selection-light", + "content": "", + "style": "outline", + "tags": "marquis,select,square dashed", + "set_id": 1 + }, + { + "name": "selection-all-light", + "content": "", + "style": "outline", + "tags": "marquis,select all", + "set_id": 1 + }, + { + "name": "selection-background-light", + "content": "", + "style": "outline", + "tags": "marquis", + "set_id": 1 + }, + { + "name": "selection-foreground-light", + "content": "", + "style": "outline", + "tags": "marquis", + "set_id": 1 + }, + { + "name": "selection-inverse-light", + "content": "", + "style": "outline", + "tags": "marquis,invert", + "set_id": 1 + }, + { + "name": "selection-plus-light", + "content": "", + "style": "outline", + "tags": "marquis,add", + "set_id": 1 + }, + { + "name": "selection-slash-light", + "content": "", + "style": "outline", + "tags": "marquis,unselect", + "set_id": 1 + }, + { + "name": "shapes-light", + "content": "", + "style": "outline", + "tags": "geometry,square,circle,triangle", + "set_id": 1 + }, + { + "name": "share-light", + "content": "", + "style": "outline", + "tags": "send to,export,arrows", + "set_id": 1 + }, + { + "name": "share-fat-light", + "content": "", + "style": "outline", + "tags": "export,send to", + "set_id": 1 + }, + { + "name": "share-network-light", + "content": "", + "style": "outline", + "tags": "send to,export", + "set_id": 1 + }, + { + "name": "shield-light", + "content": "", + "style": "outline", + "tags": "badge,security,secured,defense,defended,authentication,authenticated,guarded,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "shield-check-light", + "content": "", + "style": "outline", + "tags": "badge,security,defense,authentication,authenticated,guarded,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "shield-checkered-light", + "content": "", + "style": "outline", + "tags": "badge,security,defense,authentication,authenticated,guarded,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "shield-chevron-light", + "content": "", + "style": "outline", + "tags": "badge,security,defense,authentication,authenticated,guarded,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "shield-plus-light", + "content": "", + "style": "outline", + "tags": "badge,security,defense,authentication,authenticated,guarded,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "shield-slash-light", + "content": "", + "style": "outline", + "tags": "badge,security,unsecured,defense,undefended,authentication,unauthenticated,unguarded,unlocked,unencrypted,encryption,disabled", + "set_id": 1 + }, + { + "name": "shield-star-light", + "content": "", + "style": "outline", + "tags": "badge,security,defense,authentication,authenticated,guarded,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "shield-warning-light", + "content": "", + "style": "outline", + "tags": "badge,security,unsecured,defense,undefended,authentication,unauthenticated,unguarded,unlocked,unencrypted,encryption,errors", + "set_id": 1 + }, + { + "name": "shipping-container-light", + "content": "", + "style": "outline", + "tags": "*new*,shipping,transportation,places,locations", + "set_id": 1 + }, + { + "name": "shirt-folded-light", + "content": "", + "style": "outline", + "tags": "clothes,clothing", + "set_id": 1 + }, + { + "name": "shooting-star-light", + "content": "", + "style": "outline", + "tags": "wish,comet,meteor", + "set_id": 1 + }, + { + "name": "shopping-bag-light", + "content": "", + "style": "outline", + "tags": "ecommerce,market,basket,cart,buying,checkout,places,locations", + "set_id": 1 + }, + { + "name": "shopping-bag-open-light", + "content": "", + "style": "outline", + "tags": "ecommerce,market,basket,cart,buying,checkout,places,locations", + "set_id": 1 + }, + { + "name": "shopping-cart-light", + "content": "", + "style": "outline", + "tags": "ecommerce,market,basket,buying,groceries,checkout,places,locations", + "set_id": 1 + }, + { + "name": "shopping-cart-simple-light", + "content": "", + "style": "outline", + "tags": "ecommerce,market,basket,buying,groceries,checkout,places,locations", + "set_id": 1 + }, + { + "name": "shovel-light", + "content": "", + "style": "outline", + "tags": "*new*,tools,digging,construction", + "set_id": 1 + }, + { + "name": "shower-light", + "content": "", + "style": "outline", + "tags": "bath,bathtub,bathroom,faucet", + "set_id": 1 + }, + { + "name": "shrimp-light", + "content": "", + "style": "outline", + "tags": "food,seafood,prawn", + "set_id": 1 + }, + { + "name": "shuffle-light", + "content": "", + "style": "outline", + "tags": "music,audio,randomize,crossed", + "set_id": 1 + }, + { + "name": "shuffle-angular-light", + "content": "", + "style": "outline", + "tags": "music,audio,randomize,crossed", + "set_id": 1 + }, + { + "name": "shuffle-simple-light", + "content": "", + "style": "outline", + "tags": "music,audio,randomize,crossed", + "set_id": 1 + }, + { + "name": "sidebar-light", + "content": "", + "style": "outline", + "tags": "left rail,wireframe,ui,interface", + "set_id": 1 + }, + { + "name": "sidebar-simple-light", + "content": "", + "style": "outline", + "tags": "left rail,wireframe,ui,interface", + "set_id": 1 + }, + { + "name": "sigma-light", + "content": "", + "style": "outline", + "tags": "σ,symbol,mathematics,sum", + "set_id": 1 + }, + { + "name": "sign-in-light", + "content": "", + "style": "outline", + "tags": "*updated*,signin,login,log in,enter", + "set_id": 1 + }, + { + "name": "sign-out-light", + "content": "", + "style": "outline", + "tags": "*updated*,signout,logout,log out,exit", + "set_id": 1 + }, + { + "name": "signature-light", + "content": "", + "style": "outline", + "tags": "*updated*,sign,autograph,verify", + "set_id": 1 + }, + { + "name": "signpost-light", + "content": "", + "style": "outline", + "tags": "direction,traffic,road sign,transit,transportation", + "set_id": 1 + }, + { + "name": "sim-card-light", + "content": "", + "style": "outline", + "tags": "*updated*,cellular,cellphone,mobile", + "set_id": 1 + }, + { + "name": "siren-light", + "content": "", + "style": "outline", + "tags": "alarm,police,lights,warning", + "set_id": 1 + }, + { + "name": "sketch-logo-light", + "content": "", + "style": "outline", + "tags": "drawing,art,illustration,ui,interface,prototype,prototyping,gemstone,diamond", + "set_id": 1 + }, + { + "name": "skip-back-light", + "content": "", + "style": "outline", + "tags": "music,audio,seek,scrub,scan,back,backwards,reverse,previous", + "set_id": 1 + }, + { + "name": "skip-back-circle-light", + "content": "", + "style": "outline", + "tags": "music,audio,seek,scrub,scan,back,backwards,reverse,previous", + "set_id": 1 + }, + { + "name": "skip-forward-light", + "content": "", + "style": "outline", + "tags": "music,audio,seek,scrub,scan,ahead,next", + "set_id": 1 + }, + { + "name": "skip-forward-circle-light", + "content": "", + "style": "outline", + "tags": "music,audio,seek,scrub,scan,ahead,next", + "set_id": 1 + }, + { + "name": "skull-light", + "content": "", + "style": "outline", + "tags": "death,dead,kill", + "set_id": 1 + }, + { + "name": "skype-logo-light", + "content": "", + "style": "outline", + "tags": "*new*,chat,video conference", + "set_id": 1 + }, + { + "name": "slack-logo-light", + "content": "", + "style": "outline", + "tags": "logos,messaging", + "set_id": 1 + }, + { + "name": "sliders-light", + "content": "", + "style": "outline", + "tags": "music,audio,faders,filters,equalizer,volume,settings,preferences", + "set_id": 1 + }, + { + "name": "sliders-horizontal-light", + "content": "", + "style": "outline", + "tags": "music,audio,faders,filters,equalizer,volume,settings,preferences", + "set_id": 1 + }, + { + "name": "slideshow-light", + "content": "", + "style": "outline", + "tags": "pictures,images,photography,gallery,carousel", + "set_id": 1 + }, + { + "name": "smiley-light", + "content": "", + "style": "outline", + "tags": "face,emoji,happy,grinning,smiling", + "set_id": 1 + }, + { + "name": "smiley-angry-light", + "content": "", + "style": "outline", + "tags": "face,emoji,mad,frown", + "set_id": 1 + }, + { + "name": "smiley-blank-light", + "content": "", + "style": "outline", + "tags": "face,emoji,unimpressed,no face", + "set_id": 1 + }, + { + "name": "smiley-meh-light", + "content": "", + "style": "outline", + "tags": "face,emoji,unimpressed,neutral", + "set_id": 1 + }, + { + "name": "smiley-melting-light", + "content": "", + "style": "outline", + "tags": "*new*,face,emoji,embarrassment,sarcasm,shame,hot,heat", + "set_id": 1 + }, + { + "name": "smiley-nervous-light", + "content": "", + "style": "outline", + "tags": "*updated*,face,emoji,anxious,uncomfortable,uneasy,queasy,sick,ill", + "set_id": 1 + }, + { + "name": "smiley-sad-light", + "content": "", + "style": "outline", + "tags": "face,emoji,unhappy,frowning", + "set_id": 1 + }, + { + "name": "smiley-sticker-light", + "content": "", + "style": "outline", + "tags": "face,emoji,happy,grinning,smiling", + "set_id": 1 + }, + { + "name": "smiley-wink-light", + "content": "", + "style": "outline", + "tags": "face,emoji,winking,flirting,cute", + "set_id": 1 + }, + { + "name": "smiley-x-eyes-light", + "content": "", + "style": "outline", + "tags": "face,emoji,dead,killed,unconscious", + "set_id": 1 + }, + { + "name": "snapchat-logo-light", + "content": "", + "style": "outline", + "tags": "logos,messaging,social media", + "set_id": 1 + }, + { + "name": "sneaker-light", + "content": "", + "style": "outline", + "tags": "clothes,clothing,shoes,trainers,sports", + "set_id": 1 + }, + { + "name": "sneaker-move-light", + "content": "", + "style": "outline", + "tags": "*updated*,clothes,clothing,shoes,trainers,sports", + "set_id": 1 + }, + { + "name": "snowflake-light", + "content": "", + "style": "outline", + "tags": "meteorology,snowy,snowing,snowstorm", + "set_id": 1 + }, + { + "name": "soccer-ball-light", + "content": "", + "style": "outline", + "tags": "*updated*,sports,football,mls", + "set_id": 1 + }, + { + "name": "sock-light", + "content": "", + "style": "outline", + "tags": "*new*,clothes,clothing", + "set_id": 1 + }, + { + "name": "solar-panel-light", + "content": "", + "style": "outline", + "tags": "*new*,renewable,energy,power,electricity", + "set_id": 1 + }, + { + "name": "solar-roof-light", + "content": "", + "style": "outline", + "tags": "*new*,renewable,energy,power,electricity", + "set_id": 1 + }, + { + "name": "sort-ascending-light", + "content": "", + "style": "outline", + "tags": "*updated*,sorted,sorting,increasing,a to z,arrows,list", + "set_id": 1 + }, + { + "name": "sort-descending-light", + "content": "", + "style": "outline", + "tags": "*updated*,sorted,sorting,decreasing,z to a,arrows,list", + "set_id": 1 + }, + { + "name": "soundcloud-logo-light", + "content": "", + "style": "outline", + "tags": "music,social media,logos", + "set_id": 1 + }, + { + "name": "spade-light", + "content": "", + "style": "outline", + "tags": "spades,suits,cards,gambling,casino,gaming", + "set_id": 1 + }, + { + "name": "sparkle-light", + "content": "", + "style": "outline", + "tags": "star,rate,ratings,favorites,favorited", + "set_id": 1 + }, + { + "name": "speaker-hifi-light", + "content": "", + "style": "outline", + "tags": "music,audio,sound,stereo", + "set_id": 1 + }, + { + "name": "speaker-high-light", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,volume,sound", + "set_id": 1 + }, + { + "name": "speaker-low-light", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,volume,sound", + "set_id": 1 + }, + { + "name": "speaker-none-light", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,muted,volume,sound", + "set_id": 1 + }, + { + "name": "speaker-simple-high-light", + "content": "", + "style": "outline", + "tags": "music,audio,volume,sound", + "set_id": 1 + }, + { + "name": "speaker-simple-low-light", + "content": "", + "style": "outline", + "tags": "music,audio,volume,sound", + "set_id": 1 + }, + { + "name": "speaker-simple-none-light", + "content": "", + "style": "outline", + "tags": "music,audio,muted,volume,sound", + "set_id": 1 + }, + { + "name": "speaker-simple-slash-light", + "content": "", + "style": "outline", + "tags": "music,audio,muted,volume,sound,disabled", + "set_id": 1 + }, + { + "name": "speaker-simple-x-light", + "content": "", + "style": "outline", + "tags": "music,audio,muted,volume,sound,disabled,errors", + "set_id": 1 + }, + { + "name": "speaker-slash-light", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,muted,volume,sound,disabled", + "set_id": 1 + }, + { + "name": "speaker-x-light", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,muted,volume,sound,disabled,errors", + "set_id": 1 + }, + { + "name": "speedometer-light", + "content": "", + "style": "outline", + "tags": "*new*,gauge,dashboard,meter,speed,odometer,performance", + "set_id": 1 + }, + { + "name": "sphere-light", + "content": "", + "style": "outline", + "tags": "*new*,circle,ball,3d,mesh,cad,model", + "set_id": 1 + }, + { + "name": "spinner-light", + "content": "", + "style": "outline", + "tags": "loading,loader,waiting,progress", + "set_id": 1 + }, + { + "name": "spinner-ball-light", + "content": "", + "style": "outline", + "tags": "*new*,loading,loader,waiting,progress", + "set_id": 1 + }, + { + "name": "spinner-gap-light", + "content": "", + "style": "outline", + "tags": "loading,loader,waiting,progress", + "set_id": 1 + }, + { + "name": "spiral-light", + "content": "", + "style": "outline", + "tags": "*updated*,spin,rotate,dizzy", + "set_id": 1 + }, + { + "name": "split-horizontal-light", + "content": "", + "style": "outline", + "tags": "resize,columns", + "set_id": 1 + }, + { + "name": "split-vertical-light", + "content": "", + "style": "outline", + "tags": "resize,rows", + "set_id": 1 + }, + { + "name": "spotify-logo-light", + "content": "", + "style": "outline", + "tags": "music,player,streaming", + "set_id": 1 + }, + { + "name": "spray-bottle-light", + "content": "", + "style": "outline", + "tags": "*new*,cleaner,cleaning", + "set_id": 1 + }, + { + "name": "square-light", + "content": "", + "style": "outline", + "tags": "4,shapes,polygons,box", + "set_id": 1 + }, + { + "name": "square-half-light", + "content": "", + "style": "outline", + "tags": "4,shapes,polygons,box,columns,sidebar,split vertical", + "set_id": 1 + }, + { + "name": "square-half-bottom-light", + "content": "", + "style": "outline", + "tags": "4,shapes,polygons,box,columns,sidebar,split vertical", + "set_id": 1 + }, + { + "name": "square-logo-light", + "content": "", + "style": "outline", + "tags": "squareup,payment", + "set_id": 1 + }, + { + "name": "square-split-horizontal-light", + "content": "", + "style": "outline", + "tags": "shapes,polygons,columns", + "set_id": 1 + }, + { + "name": "square-split-vertical-light", + "content": "", + "style": "outline", + "tags": "shapes,polygons,rows", + "set_id": 1 + }, + { + "name": "squares-four-light", + "content": "", + "style": "outline", + "tags": "4,shapes,polygons,apps,applications,grid,table,microsoft,logos", + "set_id": 1 + }, + { + "name": "stack-light", + "content": "", + "style": "outline", + "tags": "cards,layers", + "set_id": 1 + }, + { + "name": "stack-minus-light", + "content": "", + "style": "outline", + "tags": "*new*,cards,layers,remove,delete", + "set_id": 1 + }, + { + "name": "stack-overflow-logo-light", + "content": "", + "style": "outline", + "tags": "logos,code", + "set_id": 1 + }, + { + "name": "stack-plus-light", + "content": "", + "style": "outline", + "tags": "*new*,cards,layers,add", + "set_id": 1 + }, + { + "name": "stack-simple-light", + "content": "", + "style": "outline", + "tags": "cards,layers", + "set_id": 1 + }, + { + "name": "stairs-light", + "content": "", + "style": "outline", + "tags": "staircase,steps,escalator,exit,signs", + "set_id": 1 + }, + { + "name": "stamp-light", + "content": "", + "style": "outline", + "tags": "clone,seal,official", + "set_id": 1 + }, + { + "name": "standard-definition-light", + "content": "", + "style": "outline", + "tags": "*new*,sd,resolution,video", + "set_id": 1 + }, + { + "name": "star-light", + "content": "", + "style": "outline", + "tags": "rate,ratings,favorites,favorited", + "set_id": 1 + }, + { + "name": "star-and-crescent-light", + "content": "", + "style": "outline", + "tags": "islam,muslim,moon,religion,worship,symbol", + "set_id": 1 + }, + { + "name": "star-four-light", + "content": "", + "style": "outline", + "tags": "rate,ratings,favorites,favorited", + "set_id": 1 + }, + { + "name": "star-half-light", + "content": "", + "style": "outline", + "tags": "rate,ratings", + "set_id": 1 + }, + { + "name": "star-of-david-light", + "content": "", + "style": "outline", + "tags": "judaism,jewish,hexagram,religion,worship,symbol", + "set_id": 1 + }, + { + "name": "steam-logo-light", + "content": "", + "style": "outline", + "tags": "*new*,gaming,games", + "set_id": 1 + }, + { + "name": "steering-wheel-light", + "content": "", + "style": "outline", + "tags": "cars,vehicles,automobiles,driving", + "set_id": 1 + }, + { + "name": "steps-light", + "content": "", + "style": "outline", + "tags": "stairs,staircase,exit,signs", + "set_id": 1 + }, + { + "name": "stethoscope-light", + "content": "", + "style": "outline", + "tags": "hospital,medical,medicine,injury,safety,emergency,doctor,heart", + "set_id": 1 + }, + { + "name": "sticker-light", + "content": "", + "style": "outline", + "tags": "stickers,sticker pack,labels", + "set_id": 1 + }, + { + "name": "stool-light", + "content": "", + "style": "outline", + "tags": "chair,seat,furniture", + "set_id": 1 + }, + { + "name": "stop-light", + "content": "", + "style": "outline", + "tags": "music,audio", + "set_id": 1 + }, + { + "name": "stop-circle-light", + "content": "", + "style": "outline", + "tags": "music,audio,round", + "set_id": 1 + }, + { + "name": "storefront-light", + "content": "", + "style": "outline", + "tags": "shops,shopping,markets,stores,buildings,places,locations", + "set_id": 1 + }, + { + "name": "strategy-light", + "content": "", + "style": "outline", + "tags": "sports,strategem,plan,tic-tac-toe", + "set_id": 1 + }, + { + "name": "stripe-logo-light", + "content": "", + "style": "outline", + "tags": "payment", + "set_id": 1 + }, + { + "name": "student-light", + "content": "", + "style": "outline", + "tags": "pupil,graduate,classroom,teacher,education,school,college,university", + "set_id": 1 + }, + { + "name": "subset-of-light", + "content": "", + "style": "outline", + "tags": "*new*,⊆,subset of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "subset-proper-of-light", + "content": "", + "style": "outline", + "tags": "*new*,⊂,proper subset of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "subtitles-light", + "content": "", + "style": "outline", + "tags": "subtitles,television,tv,transcribed,transcription,accessibility,a11y", + "set_id": 1 + }, + { + "name": "subtitles-slash-light", + "content": "", + "style": "outline", + "tags": "*new*,subtitles,television,tv,transcribed,transcription,accessibility,a11y,disabled", + "set_id": 1 + }, + { + "name": "subtract-light", + "content": "", + "style": "outline", + "tags": "boolean,intersection,combine,split,merge,union", + "set_id": 1 + }, + { + "name": "subtract-square-light", + "content": "", + "style": "outline", + "tags": "boolean,intersection,combine,split,merge,union", + "set_id": 1 + }, + { + "name": "subway-light", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,underground,train,tunnel,metro,light rail,public transit,transportation,commuter,traveling,places,locations", + "set_id": 1 + }, + { + "name": "suitcase-light", + "content": "", + "style": "outline", + "tags": "briefcase,valise,baggage,folders,portfolio", + "set_id": 1 + }, + { + "name": "suitcase-rolling-light", + "content": "", + "style": "outline", + "tags": "suitcase,luggage,travel,transportation", + "set_id": 1 + }, + { + "name": "suitcase-simple-light", + "content": "", + "style": "outline", + "tags": "briefcase,valise,baggage,folders,portfolio", + "set_id": 1 + }, + { + "name": "sun-light", + "content": "", + "style": "outline", + "tags": "day,daytime,daylight,clear,sunny,sunshine,light mode,brightness,lighten,brighten", + "set_id": 1 + }, + { + "name": "sun-dim-light", + "content": "", + "style": "outline", + "tags": "day,daytime,daylight,clear,sunny,sunshine,light mode,brightness,darken", + "set_id": 1 + }, + { + "name": "sun-horizon-light", + "content": "", + "style": "outline", + "tags": "day,daytime,daylight,clear,sunny,sunshine,sunrise,sunset", + "set_id": 1 + }, + { + "name": "sunglasses-light", + "content": "", + "style": "outline", + "tags": "vision,sun,spectacles", + "set_id": 1 + }, + { + "name": "superset-of-light", + "content": "", + "style": "outline", + "tags": "*new*,⊇,superset of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "superset-proper-of-light", + "content": "", + "style": "outline", + "tags": "*new*,⊃,proper superset of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "swap-light", + "content": "", + "style": "outline", + "tags": "layers,replace,exchange,reverse", + "set_id": 1 + }, + { + "name": "swatches-light", + "content": "", + "style": "outline", + "tags": "colors,color picker,samples,pantone", + "set_id": 1 + }, + { + "name": "swimming-pool-light", + "content": "", + "style": "outline", + "tags": "swim,sports,exercise,olympics,aquatics", + "set_id": 1 + }, + { + "name": "sword-light", + "content": "", + "style": "outline", + "tags": "weapon,knife,dagger,gladius,video games,rpg,gaming,war", + "set_id": 1 + }, + { + "name": "synagogue-light", + "content": "", + "style": "outline", + "tags": "jewish,judaism,temple,religion,worship", + "set_id": 1 + }, + { + "name": "syringe-light", + "content": "", + "style": "outline", + "tags": "needle,hypodermic,vaccine,medicine,doctor,shot,hospital", + "set_id": 1 + }, + { + "name": "t-shirt-light", + "content": "", + "style": "outline", + "tags": "clothes,clothing", + "set_id": 1 + }, + { + "name": "table-light", + "content": "", + "style": "outline", + "tags": "tables,tabular,speadsheets,excel,grid,form", + "set_id": 1 + }, + { + "name": "tabs-light", + "content": "", + "style": "outline", + "tags": "*updated*,browser,window,folders,files", + "set_id": 1 + }, + { + "name": "tag-light", + "content": "", + "style": "outline", + "tags": "tags,hashtag,labels,sale,sell,price,discount", + "set_id": 1 + }, + { + "name": "tag-chevron-light", + "content": "", + "style": "outline", + "tags": "tags,hashtag,labels,sale", + "set_id": 1 + }, + { + "name": "tag-simple-light", + "content": "", + "style": "outline", + "tags": "tags,hashtag,labels,sale,sell,price,discount", + "set_id": 1 + }, + { + "name": "target-light", + "content": "", + "style": "outline", + "tags": "bullseye,radar,archery,accuracy,precision", + "set_id": 1 + }, + { + "name": "taxi-light", + "content": "", + "style": "outline", + "tags": "*updated*,vehicles,cars,automobiles,livery,limousine,uber", + "set_id": 1 + }, + { + "name": "tea-bag-light", + "content": "", + "style": "outline", + "tags": "*new*,drinks,beverages,sachet,caffeine,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "telegram-logo-light", + "content": "", + "style": "outline", + "tags": "logos,messages,messaging", + "set_id": 1 + }, + { + "name": "television-light", + "content": "", + "style": "outline", + "tags": "screen,tv,displays", + "set_id": 1 + }, + { + "name": "television-simple-light", + "content": "", + "style": "outline", + "tags": "*updated*,screen,tv,displays", + "set_id": 1 + }, + { + "name": "tennis-ball-light", + "content": "", + "style": "outline", + "tags": "sports,mlb", + "set_id": 1 + }, + { + "name": "tent-light", + "content": "", + "style": "outline", + "tags": "camping,outdoors,tarp", + "set_id": 1 + }, + { + "name": "terminal-light", + "content": "", + "style": "outline", + "tags": "command line,cli,bash,shell,caret,console", + "set_id": 1 + }, + { + "name": "terminal-window-light", + "content": "", + "style": "outline", + "tags": "command line,cli,bash,shell,caret,console", + "set_id": 1 + }, + { + "name": "test-tube-light", + "content": "", + "style": "outline", + "tags": "science,chemistry,experiment,vial", + "set_id": 1 + }, + { + "name": "text-a-underline-light", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font,underscore,emphasis", + "set_id": 1 + }, + { + "name": "text-aa-light", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font", + "set_id": 1 + }, + { + "name": "text-align-center-light", + "content": "", + "style": "outline", + "tags": "*updated*,typography,print,font,alignment,centered", + "set_id": 1 + }, + { + "name": "text-align-justify-light", + "content": "", + "style": "outline", + "tags": "*updated*,typography,print,font,alignment,justified", + "set_id": 1 + }, + { + "name": "text-align-left-light", + "content": "", + "style": "outline", + "tags": "*updated*,typography,print,font,alignment,flush left", + "set_id": 1 + }, + { + "name": "text-align-right-light", + "content": "", + "style": "outline", + "tags": "*updated*,typography,print,font,alignment,flush right", + "set_id": 1 + }, + { + "name": "text-b-light", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font,bold,boldface,emphasis", + "set_id": 1 + }, + { + "name": "text-columns-light", + "content": "", + "style": "outline", + "tags": "*updated*,typography,print,font,alignment,article", + "set_id": 1 + }, + { + "name": "text-h-light", + "content": "", + "style": "outline", + "tags": "heading,typography,print", + "set_id": 1 + }, + { + "name": "text-h-five-light", + "content": "", + "style": "outline", + "tags": "heading,h5,typography,print", + "set_id": 1 + }, + { + "name": "text-h-four-light", + "content": "", + "style": "outline", + "tags": "*updated*,heading,h4,typography,print", + "set_id": 1 + }, + { + "name": "text-h-one-light", + "content": "", + "style": "outline", + "tags": "heading,h1,typography,print", + "set_id": 1 + }, + { + "name": "text-h-six-light", + "content": "", + "style": "outline", + "tags": "heading,h6,typography,print", + "set_id": 1 + }, + { + "name": "text-h-three-light", + "content": "", + "style": "outline", + "tags": "heading,h3,typography,print", + "set_id": 1 + }, + { + "name": "text-h-two-light", + "content": "", + "style": "outline", + "tags": "heading,h2,typography,print", + "set_id": 1 + }, + { + "name": "text-indent-light", + "content": "", + "style": "outline", + "tags": "*updated*,alignment,tab,menu", + "set_id": 1 + }, + { + "name": "text-italic-light", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font,slant,oblique,stress,emphasis,calligraphy", + "set_id": 1 + }, + { + "name": "text-outdent-light", + "content": "", + "style": "outline", + "tags": "*updated*,alignment,tab,unindent,dedent,menu", + "set_id": 1 + }, + { + "name": "text-strikethrough-light", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font,struck,remove,delete,change", + "set_id": 1 + }, + { + "name": "text-subscript-light", + "content": "", + "style": "outline", + "tags": "*new*,typography,font,formatting,mathematics,power,exponent,calculator", + "set_id": 1 + }, + { + "name": "text-superscript-light", + "content": "", + "style": "outline", + "tags": "*new*,typography,font,formatting,mathematics,calculator", + "set_id": 1 + }, + { + "name": "text-t-light", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font", + "set_id": 1 + }, + { + "name": "text-t-slash-light", + "content": "", + "style": "outline", + "tags": "*new*,typography,typeface,print,font,formatting,clear", + "set_id": 1 + }, + { + "name": "text-underline-light", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font,underscore,emphasis", + "set_id": 1 + }, + { + "name": "textbox-light", + "content": "", + "style": "outline", + "tags": "input,cursor,field", + "set_id": 1 + }, + { + "name": "thermometer-light", + "content": "", + "style": "outline", + "tags": "meteorology,temperature,degrees,°,celcius,centigrade,kelvin,fahrenheit,hot,warm,cold", + "set_id": 1 + }, + { + "name": "thermometer-cold-light", + "content": "", + "style": "outline", + "tags": "meteorology,temperature,degrees,°,celcius,centigrade,kelvin,fahrenheit", + "set_id": 1 + }, + { + "name": "thermometer-hot-light", + "content": "", + "style": "outline", + "tags": "meteorology,temperature,degrees,°,celcius,centigrade,kelvin,fahrenheit,warm", + "set_id": 1 + }, + { + "name": "thermometer-simple-light", + "content": "", + "style": "outline", + "tags": "meteorology,temperature,degrees,°,celcius,centigrade,kelvin,fahrenheit,hot,warm,cold", + "set_id": 1 + }, + { + "name": "threads-logo-light", + "content": "", + "style": "outline", + "tags": "*new*,meta,instagram,social media", + "set_id": 1 + }, + { + "name": "three-d-light", + "content": "", + "style": "outline", + "tags": "*new*,3d,cad,model", + "set_id": 1 + }, + { + "name": "thumbs-down-light", + "content": "", + "style": "outline", + "tags": "dislike,hate,emoji,no", + "set_id": 1 + }, + { + "name": "thumbs-up-light", + "content": "", + "style": "outline", + "tags": "like,love,favorited,favorites,emoji,yes", + "set_id": 1 + }, + { + "name": "ticket-light", + "content": "", + "style": "outline", + "tags": "ticketstub,movie ticket,entry,admissions,events", + "set_id": 1 + }, + { + "name": "tidal-logo-light", + "content": "", + "style": "outline", + "tags": "music,logos", + "set_id": 1 + }, + { + "name": "tiktok-logo-light", + "content": "", + "style": "outline", + "tags": "logos,social media", + "set_id": 1 + }, + { + "name": "tilde-light", + "content": "", + "style": "outline", + "tags": "*new*,~,∼,proportional,comparison,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "timer-light", + "content": "", + "style": "outline", + "tags": "clock,alarm,schedule,events,stopwatch,sports", + "set_id": 1 + }, + { + "name": "tip-jar-light", + "content": "", + "style": "outline", + "tags": "*new*,give,deposit,donation,savings,money", + "set_id": 1 + }, + { + "name": "tipi-light", + "content": "", + "style": "outline", + "tags": "teepee,lodge,tent,outdoors,camping,tarp", + "set_id": 1 + }, + { + "name": "tire-light", + "content": "", + "style": "outline", + "tags": "*new*,wheel,vehicles,transportation", + "set_id": 1 + }, + { + "name": "toggle-left-light", + "content": "", + "style": "outline", + "tags": "switch,controls,settings,preferences", + "set_id": 1 + }, + { + "name": "toggle-right-light", + "content": "", + "style": "outline", + "tags": "switch,controls,settings,preferences", + "set_id": 1 + }, + { + "name": "toilet-light", + "content": "", + "style": "outline", + "tags": "bathroom,restroom,lavatory,water closet", + "set_id": 1 + }, + { + "name": "toilet-paper-light", + "content": "", + "style": "outline", + "tags": "bathroom,restroom,lavatory,water closet", + "set_id": 1 + }, + { + "name": "toolbox-light", + "content": "", + "style": "outline", + "tags": "tools,carpentry,construction", + "set_id": 1 + }, + { + "name": "tooth-light", + "content": "", + "style": "outline", + "tags": "teeth,dentistry,medical,medicine,doctor,cavity", + "set_id": 1 + }, + { + "name": "tornado-light", + "content": "", + "style": "outline", + "tags": "*new*,meteorology,twister,storm,wind,disaster", + "set_id": 1 + }, + { + "name": "tote-light", + "content": "", + "style": "outline", + "tags": "suitcases,valises,baggage,tote-bag,portfolios", + "set_id": 1 + }, + { + "name": "tote-simple-light", + "content": "", + "style": "outline", + "tags": "suitcases,valises,baggage,tote-bag,portfolios", + "set_id": 1 + }, + { + "name": "towel-light", + "content": "", + "style": "outline", + "tags": "*new*,clothing,linen,hotel,beach,pool,swimming,shower,bath", + "set_id": 1 + }, + { + "name": "tractor-light", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,farmer,field,farming,agriculture", + "set_id": 1 + }, + { + "name": "trademark-light", + "content": "", + "style": "outline", + "tags": "tm,®,™,intellectual property", + "set_id": 1 + }, + { + "name": "trademark-registered-light", + "content": "", + "style": "outline", + "tags": "®,™,intellectual property", + "set_id": 1 + }, + { + "name": "traffic-cone-light", + "content": "", + "style": "outline", + "tags": "pylon,safety,transit,transportation", + "set_id": 1 + }, + { + "name": "traffic-sign-light", + "content": "", + "style": "outline", + "tags": "road signs,transit,transportation", + "set_id": 1 + }, + { + "name": "traffic-signal-light", + "content": "", + "style": "outline", + "tags": "stop light,safety,transit,transportation", + "set_id": 1 + }, + { + "name": "train-light", + "content": "", + "style": "outline", + "tags": "vehicles,subway,light rail,public transit,transportation,commuter,traveling,places,locations", + "set_id": 1 + }, + { + "name": "train-regional-light", + "content": "", + "style": "outline", + "tags": "vehicles,subway,railroad,public transit,transportation,commuter,freight,shipping,traveling,places,locations", + "set_id": 1 + }, + { + "name": "train-simple-light", + "content": "", + "style": "outline", + "tags": "vehicles,subway,light rail,public transit,transportation,commuter,traveling,places,locations", + "set_id": 1 + }, + { + "name": "tram-light", + "content": "", + "style": "outline", + "tags": "vehicles,subway,railroad,public transit,transportation,commuter,light rail,shipping,traveling,places,locations", + "set_id": 1 + }, + { + "name": "translate-light", + "content": "", + "style": "outline", + "tags": "translation,languages,internationalization,i18n,speech", + "set_id": 1 + }, + { + "name": "trash-light", + "content": "", + "style": "outline", + "tags": "garbage,remove,delete,destroy,recycle,recycling", + "set_id": 1 + }, + { + "name": "trash-simple-light", + "content": "", + "style": "outline", + "tags": "garbage,remove,delete,destroy,recycle,recycling", + "set_id": 1 + }, + { + "name": "tray-light", + "content": "", + "style": "outline", + "tags": "inbox,mailbox,bin", + "set_id": 1 + }, + { + "name": "tray-arrow-down-light", + "content": "", + "style": "outline", + "tags": "inbox,saved,saving,archived,archiving,archival,downloaded,downloading", + "set_id": 1 + }, + { + "name": "tray-arrow-up-light", + "content": "", + "style": "outline", + "tags": "*new*,outbox,archival,unarchive,uploaded,uploading", + "set_id": 1 + }, + { + "name": "treasure-chest-light", + "content": "", + "style": "outline", + "tags": "*new*,loot,lootbox,inventory,rewards,gaming,pirate", + "set_id": 1 + }, + { + "name": "tree-light", + "content": "", + "style": "outline", + "tags": "plants,branches,leaves,green,environmental", + "set_id": 1 + }, + { + "name": "tree-evergreen-light", + "content": "", + "style": "outline", + "tags": "plants,branches,leaves,pine,conifer,green,environmental", + "set_id": 1 + }, + { + "name": "tree-palm-light", + "content": "", + "style": "outline", + "tags": "tropical,beach,plants,branches,leaves,green,environmental", + "set_id": 1 + }, + { + "name": "tree-structure-light", + "content": "", + "style": "outline", + "tags": "data structures,family tree,genealogy,hierarchy,taxonomy,charts,flowchart", + "set_id": 1 + }, + { + "name": "tree-view-light", + "content": "", + "style": "outline", + "tags": "*new*,hierarchy", + "set_id": 1 + }, + { + "name": "trend-down-light", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,analyze,analysis,decrease,arrows", + "set_id": 1 + }, + { + "name": "trend-up-light", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,analyze,analysis,increase,arrows", + "set_id": 1 + }, + { + "name": "triangle-light", + "content": "", + "style": "outline", + "tags": "3,shapes,polygons", + "set_id": 1 + }, + { + "name": "triangle-dashed-light", + "content": "", + "style": "outline", + "tags": "*new*,3,shapes,polygons,missing", + "set_id": 1 + }, + { + "name": "trolley-light", + "content": "", + "style": "outline", + "tags": "*new*,airport,briefcase,valise,baggage", + "set_id": 1 + }, + { + "name": "trolley-suitcase-light", + "content": "", + "style": "outline", + "tags": "*new*,airport,briefcase,valise,baggage", + "set_id": 1 + }, + { + "name": "trophy-light", + "content": "", + "style": "outline", + "tags": "ribbons,medals,winning,victory,awards,prize", + "set_id": 1 + }, + { + "name": "truck-light", + "content": "", + "style": "outline", + "tags": "trucks,cars,vehicles,automobile,shipping,delivery", + "set_id": 1 + }, + { + "name": "truck-trailer-light", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,automobile,shipping,tractor,semi", + "set_id": 1 + }, + { + "name": "tumblr-logo-light", + "content": "", + "style": "outline", + "tags": "*new*,social media,logos", + "set_id": 1 + }, + { + "name": "twitch-logo-light", + "content": "", + "style": "outline", + "tags": "logos,streaming,livestream,gaming,video games,social media", + "set_id": 1 + }, + { + "name": "twitter-logo-light", + "content": "", + "style": "outline", + "tags": "logos,social media,tweets,birds", + "set_id": 1 + }, + { + "name": "umbrella-light", + "content": "", + "style": "outline", + "tags": "raining,rainy,insurance", + "set_id": 1 + }, + { + "name": "umbrella-simple-light", + "content": "", + "style": "outline", + "tags": "raining,rainy,insurance", + "set_id": 1 + }, + { + "name": "union-light", + "content": "", + "style": "outline", + "tags": "*new*,∪,union,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "unite-light", + "content": "", + "style": "outline", + "tags": "*updated*,round,join,union,merge,combine,intersecting,intersection", + "set_id": 1 + }, + { + "name": "unite-square-light", + "content": "", + "style": "outline", + "tags": "join,union,merge,combine,intersecting,intersection", + "set_id": 1 + }, + { + "name": "upload-light", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,uploaded,uploading,hard drive,disk", + "set_id": 1 + }, + { + "name": "upload-simple-light", + "content": "", + "style": "outline", + "tags": "*updated*,saved,saving,archived,archiving,archival,uploaded,uploading,hard drive,disk", + "set_id": 1 + }, + { + "name": "usb-light", + "content": "", + "style": "outline", + "tags": "serial,port,plug,peripheral,device", + "set_id": 1 + }, + { + "name": "user-light", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,login", + "set_id": 1 + }, + { + "name": "user-check-light", + "content": "", + "style": "outline", + "tags": "*new*,person,users,profile,account,contact,login,verified", + "set_id": 1 + }, + { + "name": "user-circle-light", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,login", + "set_id": 1 + }, + { + "name": "user-circle-check-light", + "content": "", + "style": "outline", + "tags": "*new*,person,users,profile,account,contact,login,verified", + "set_id": 1 + }, + { + "name": "user-circle-dashed-light", + "content": "", + "style": "outline", + "tags": "*new*,person,users,profile,account,contact,login,pending,missing,removed", + "set_id": 1 + }, + { + "name": "user-circle-gear-light", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,settings,preferences", + "set_id": 1 + }, + { + "name": "user-circle-minus-light", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,delete,remove,-", + "set_id": 1 + }, + { + "name": "user-circle-plus-light", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,add,create,+", + "set_id": 1 + }, + { + "name": "user-focus-light", + "content": "", + "style": "outline", + "tags": "identification,biometrics,facial recognition,profile,person,account,autofocus", + "set_id": 1 + }, + { + "name": "user-gear-light", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,settings,preferences", + "set_id": 1 + }, + { + "name": "user-list-light", + "content": "", + "style": "outline", + "tags": "person,users,profiles,accounts,members,address book", + "set_id": 1 + }, + { + "name": "user-minus-light", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,delete,remove,-", + "set_id": 1 + }, + { + "name": "user-plus-light", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,add,create,+", + "set_id": 1 + }, + { + "name": "user-rectangle-light", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,login", + "set_id": 1 + }, + { + "name": "user-sound-light", + "content": "", + "style": "outline", + "tags": "*new*,person,users,profile,speech,speaking,voice", + "set_id": 1 + }, + { + "name": "user-square-light", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,login", + "set_id": 1 + }, + { + "name": "user-switch-light", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,login,logout,signin,signout,settings,preferences", + "set_id": 1 + }, + { + "name": "users-light", + "content": "", + "style": "outline", + "tags": "user,group,team,people,profiles,accounts,contacts", + "set_id": 1 + }, + { + "name": "users-four-light", + "content": "", + "style": "outline", + "tags": "user,group,team,department,community,people,profiles,accounts,contacts", + "set_id": 1 + }, + { + "name": "users-three-light", + "content": "", + "style": "outline", + "tags": "user,group,team,community,people,profiles,accounts,contacts", + "set_id": 1 + }, + { + "name": "van-light", + "content": "", + "style": "outline", + "tags": "westfalia,microbus,vanagon,cars,vehicles,automobile,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "vault-light", + "content": "", + "style": "outline", + "tags": "safe,bank,security,secured,authentication,authenticated,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "vector-three-light", + "content": "", + "style": "outline", + "tags": "*new*,3d,xyz,cartesian,coordinates,plane,volume,dimensions,mathematics", + "set_id": 1 + }, + { + "name": "vector-two-light", + "content": "", + "style": "outline", + "tags": "*new*,2d,xy,cartesian,coordinates,plane,dimensions,mathematics", + "set_id": 1 + }, + { + "name": "vibrate-light", + "content": "", + "style": "outline", + "tags": "audio,volume,viration,ringer,calls,silent,silenced", + "set_id": 1 + }, + { + "name": "video-light", + "content": "", + "style": "outline", + "tags": "training,course,education,tutorial", + "set_id": 1 + }, + { + "name": "video-camera-light", + "content": "", + "style": "outline", + "tags": "videography,films,movies,recording", + "set_id": 1 + }, + { + "name": "video-camera-slash-light", + "content": "", + "style": "outline", + "tags": "videography,films,movies,recording,disabled", + "set_id": 1 + }, + { + "name": "video-conference-light", + "content": "", + "style": "outline", + "tags": "*new*,video call,zoom,skype,discord,facetime,meeting", + "set_id": 1 + }, + { + "name": "vignette-light", + "content": "", + "style": "outline", + "tags": "photography,darkroom,movie,analog", + "set_id": 1 + }, + { + "name": "vinyl-record-light", + "content": "", + "style": "outline", + "tags": "recording,audio,album,music,ep,lp", + "set_id": 1 + }, + { + "name": "virtual-reality-light", + "content": "", + "style": "outline", + "tags": "virtual reality,vr,headset,metaverse", + "set_id": 1 + }, + { + "name": "virus-light", + "content": "", + "style": "outline", + "tags": "germs,disease,illness", + "set_id": 1 + }, + { + "name": "visor-light", + "content": "", + "style": "outline", + "tags": "*new*,goggles,vision", + "set_id": 1 + }, + { + "name": "voicemail-light", + "content": "", + "style": "outline", + "tags": "phonecalls,missed,recording,telephone,landline", + "set_id": 1 + }, + { + "name": "volleyball-light", + "content": "", + "style": "outline", + "tags": "sports", + "set_id": 1 + }, + { + "name": "wall-light", + "content": "", + "style": "outline", + "tags": "firewall,security,secured,blocks,bricks", + "set_id": 1 + }, + { + "name": "wallet-light", + "content": "", + "style": "outline", + "tags": "money,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "warehouse-light", + "content": "", + "style": "outline", + "tags": "storage,industry,manufacture,buildings,places,locations", + "set_id": 1 + }, + { + "name": "warning-light", + "content": "", + "style": "outline", + "tags": "alert,danger,dangerous,caution,errors", + "set_id": 1 + }, + { + "name": "warning-circle-light", + "content": "", + "style": "outline", + "tags": "alert,danger,dangerous,caution,errors,round", + "set_id": 1 + }, + { + "name": "warning-diamond-light", + "content": "", + "style": "outline", + "tags": "alert,danger,dangerous,caution,errors", + "set_id": 1 + }, + { + "name": "warning-octagon-light", + "content": "", + "style": "outline", + "tags": "alert,danger,dangerous,caution,errors,8,eight", + "set_id": 1 + }, + { + "name": "washing-machine-light", + "content": "", + "style": "outline", + "tags": "*new*,clothing,laundry,cleaning", + "set_id": 1 + }, + { + "name": "watch-light", + "content": "", + "style": "outline", + "tags": "times,timer,alarm,schedule,events,clock,wristwatch,wearable", + "set_id": 1 + }, + { + "name": "wave-sawtooth-light", + "content": "", + "style": "outline", + "tags": "synth,synthesizer,sound,audio,music,waveform", + "set_id": 1 + }, + { + "name": "wave-sine-light", + "content": "", + "style": "outline", + "tags": "synth,synthesizer,sound,audio,music,waveform", + "set_id": 1 + }, + { + "name": "wave-square-light", + "content": "", + "style": "outline", + "tags": "synth,synthesizer,sound,audio,music,waveform", + "set_id": 1 + }, + { + "name": "wave-triangle-light", + "content": "", + "style": "outline", + "tags": "synth,synthesizer,sound,audio,music,waveform", + "set_id": 1 + }, + { + "name": "waveform-light", + "content": "", + "style": "outline", + "tags": "*updated*,audio,sound,spectrum,spectrograph,music", + "set_id": 1 + }, + { + "name": "waveform-slash-light", + "content": "", + "style": "outline", + "tags": "*new*,audio,sound,spectrum,spectrograph,music", + "set_id": 1 + }, + { + "name": "waves-light", + "content": "", + "style": "outline", + "tags": "ocean,tides,surf", + "set_id": 1 + }, + { + "name": "webcam-light", + "content": "", + "style": "outline", + "tags": "camera,video conference", + "set_id": 1 + }, + { + "name": "webcam-slash-light", + "content": "", + "style": "outline", + "tags": "camera,video conference", + "set_id": 1 + }, + { + "name": "webhooks-logo-light", + "content": "", + "style": "outline", + "tags": "api", + "set_id": 1 + }, + { + "name": "wechat-logo-light", + "content": "", + "style": "outline", + "tags": "weixin,logos", + "set_id": 1 + }, + { + "name": "whatsapp-logo-light", + "content": "", + "style": "outline", + "tags": "logos,messages,messaging", + "set_id": 1 + }, + { + "name": "wheelchair-light", + "content": "", + "style": "outline", + "tags": "handicapped,medical,disabled,differently abled,accessible,accessibility,a11y", + "set_id": 1 + }, + { + "name": "wheelchair-motion-light", + "content": "", + "style": "outline", + "tags": "handicapped,medical,disabled,differently abled,accessible,accessibility,a11y", + "set_id": 1 + }, + { + "name": "wifi-high-light", + "content": "", + "style": "outline", + "tags": "wireless,internet,network,connection,connectivity", + "set_id": 1 + }, + { + "name": "wifi-low-light", + "content": "", + "style": "outline", + "tags": "wireless,internet,network,connection,connectivity", + "set_id": 1 + }, + { + "name": "wifi-medium-light", + "content": "", + "style": "outline", + "tags": "wireless,internet,network,connection,connectivity", + "set_id": 1 + }, + { + "name": "wifi-none-light", + "content": "", + "style": "outline", + "tags": "wireless,internet,network,connection,connectivity", + "set_id": 1 + }, + { + "name": "wifi-slash-light", + "content": "", + "style": "outline", + "tags": "wireless,internet,network,connection,connectivity,disabled,disconnected", + "set_id": 1 + }, + { + "name": "wifi-x-light", + "content": "", + "style": "outline", + "tags": "wireless,internet,network,connection,connectivity,disconnected,errors", + "set_id": 1 + }, + { + "name": "wind-light", + "content": "", + "style": "outline", + "tags": "meteorology,windy,stormy,blustery,gusty,air", + "set_id": 1 + }, + { + "name": "windmill-light", + "content": "", + "style": "outline", + "tags": "*new*,turbine,energy,renewable,sustainability,countryside,landscape,green,power,buildings", + "set_id": 1 + }, + { + "name": "windows-logo-light", + "content": "", + "style": "outline", + "tags": "microsoft,computers", + "set_id": 1 + }, + { + "name": "wine-light", + "content": "", + "style": "outline", + "tags": "drinks,beverages,vineyard,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "wrench-light", + "content": "", + "style": "outline", + "tags": "settings,setup,preferences,tools,machinery,mechanical,repairs", + "set_id": 1 + }, + { + "name": "x-light", + "content": "", + "style": "outline", + "tags": "×,closed,cancelled,dismissed,times,multiply,mulitplication,product,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "x-circle-light", + "content": "", + "style": "outline", + "tags": "closed,cancelled,dismissed,round", + "set_id": 1 + }, + { + "name": "x-logo-light", + "content": "", + "style": "outline", + "tags": "*new*,twitter,logos,social media,tweets", + "set_id": 1 + }, + { + "name": "x-square-light", + "content": "", + "style": "outline", + "tags": "closed,cancelled,dismissed", + "set_id": 1 + }, + { + "name": "yarn-light", + "content": "", + "style": "outline", + "tags": "*new*,knitting,sewing", + "set_id": 1 + }, + { + "name": "yin-yang-light", + "content": "", + "style": "outline", + "tags": "symbol,good,evil,black,white", + "set_id": 1 + }, + { + "name": "youtube-logo-light", + "content": "", + "style": "outline", + "tags": "logos,google,videos,movies,social media", + "set_id": 1 + }, + { + "name": "acorn-bold", + "content": "", + "style": "outline", + "tags": "*new*,savings,nut,vegetable,veggies,food,groceries,market", + "set_id": 1 + }, + { + "name": "address-book-bold", + "content": "", + "style": "outline", + "tags": "contacts,directory,roledex", + "set_id": 1 + }, + { + "name": "address-book-tabs-bold", + "content": "", + "style": "outline", + "tags": "*new*,contacts,directory,roledex", + "set_id": 1 + }, + { + "name": "air-traffic-control-bold", + "content": "", + "style": "outline", + "tags": "airport,travel,transportation,buildings", + "set_id": 1 + }, + { + "name": "airplane-bold", + "content": "", + "style": "outline", + "tags": "vehicles,airports,flights,flying,planes,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "airplane-in-flight-bold", + "content": "", + "style": "outline", + "tags": "vehicles,airports,flights,flying,planes,transit,transportation,traveling,arrival", + "set_id": 1 + }, + { + "name": "airplane-landing-bold", + "content": "", + "style": "outline", + "tags": "vehicles,airports,flights,flying,planes,transit,transportation,traveling,arrival", + "set_id": 1 + }, + { + "name": "airplane-takeoff-bold", + "content": "", + "style": "outline", + "tags": "vehicles,airports,flights,flying,planes,transit,transportation,traveling,departure", + "set_id": 1 + }, + { + "name": "airplane-taxiing-bold", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,airports,flights,flying,planes,transit,transportation,traveling,arrival", + "set_id": 1 + }, + { + "name": "airplane-tilt-bold", + "content": "", + "style": "outline", + "tags": "vehicles,airports,flights,flying,planes,transit,transportation,traveling,departure", + "set_id": 1 + }, + { + "name": "airplay-bold", + "content": "", + "style": "outline", + "tags": "apple,screencasting,television,tv", + "set_id": 1 + }, + { + "name": "alarm-bold", + "content": "", + "style": "outline", + "tags": "times,timer,clock,schedule,events,watch", + "set_id": 1 + }, + { + "name": "alien-bold", + "content": "", + "style": "outline", + "tags": "ufo,space,flying saucer,extra terrestrial,sci-fi", + "set_id": 1 + }, + { + "name": "align-bottom-bold", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush bottom", + "set_id": 1 + }, + { + "name": "align-bottom-simple-bold", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush bottom", + "set_id": 1 + }, + { + "name": "align-center-horizontal-bold", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,centered,middle", + "set_id": 1 + }, + { + "name": "align-center-horizontal-simple-bold", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,centered,middle", + "set_id": 1 + }, + { + "name": "align-center-vertical-bold", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,centered,middle", + "set_id": 1 + }, + { + "name": "align-center-vertical-simple-bold", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,centered,middle", + "set_id": 1 + }, + { + "name": "align-left-bold", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush left", + "set_id": 1 + }, + { + "name": "align-left-simple-bold", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush left", + "set_id": 1 + }, + { + "name": "align-right-bold", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush right", + "set_id": 1 + }, + { + "name": "align-right-simple-bold", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush right", + "set_id": 1 + }, + { + "name": "align-top-bold", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush top", + "set_id": 1 + }, + { + "name": "align-top-simple-bold", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush top", + "set_id": 1 + }, + { + "name": "amazon-logo-bold", + "content": "", + "style": "outline", + "tags": "ecommerce,shopping,logos", + "set_id": 1 + }, + { + "name": "ambulance-bold", + "content": "", + "style": "outline", + "tags": "*new*,first-aid,emt,medical,medicine,injury,safety,emergency,doctor,vehicles", + "set_id": 1 + }, + { + "name": "anchor-bold", + "content": "", + "style": "outline", + "tags": "nautical,boats,ships,hope,safety,insurance", + "set_id": 1 + }, + { + "name": "anchor-simple-bold", + "content": "", + "style": "outline", + "tags": "nautical,boats,ships,hope,safety,insurance", + "set_id": 1 + }, + { + "name": "android-logo-bold", + "content": "", + "style": "outline", + "tags": "logos,google,mobile,phone,cellular,cellphone", + "set_id": 1 + }, + { + "name": "angle-bold", + "content": "", + "style": "outline", + "tags": "*new*,geometry,trigonometry,degrees,radians,measurement,protractor,compass,arc", + "set_id": 1 + }, + { + "name": "angular-logo-bold", + "content": "", + "style": "outline", + "tags": "framework,javascript,google,web", + "set_id": 1 + }, + { + "name": "aperture-bold", + "content": "", + "style": "outline", + "tags": "photography,cameras,pictures,lens", + "set_id": 1 + }, + { + "name": "app-store-logo-bold", + "content": "", + "style": "outline", + "tags": "macintosh,imac,iphone,ipad,macos,ios", + "set_id": 1 + }, + { + "name": "app-window-bold", + "content": "", + "style": "outline", + "tags": "windows,software,programs,applications", + "set_id": 1 + }, + { + "name": "apple-logo-bold", + "content": "", + "style": "outline", + "tags": "macintosh,imac,iphone,ipad,macos,ios", + "set_id": 1 + }, + { + "name": "apple-podcasts-logo-bold", + "content": "", + "style": "outline", + "tags": "macintosh,imac,iphone,ipad,macos,ios", + "set_id": 1 + }, + { + "name": "approximate-equals-bold", + "content": "", + "style": "outline", + "tags": "*new*,≈,is approximately equal to,congruent,equality,equivalent,equivalence,comparison,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "archive-bold", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,downloaded,downloading", + "set_id": 1 + }, + { + "name": "armchair-bold", + "content": "", + "style": "outline", + "tags": "seat,furniture", + "set_id": 1 + }, + { + "name": "arrow-arc-left-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-arc-right-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-double-up-left-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,reply-all", + "set_id": 1 + }, + { + "name": "arrow-bend-double-up-right-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-down-left-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-down-right-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-left-down-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-left-up-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-right-down-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-right-up-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-up-left-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,reply,re", + "set_id": 1 + }, + { + "name": "arrow-bend-up-right-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,forward,fwd", + "set_id": 1 + }, + { + "name": "arrow-circle-down-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-down-left-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-down-right-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-left-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-right-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-up-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-up-left-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-up-right-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-clockwise-bold", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,redo,refreshing,rotate,spin,flip", + "set_id": 1 + }, + { + "name": "arrow-counter-clockwise-bold", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,undo,refreshing,rotate,spin,flip", + "set_id": 1 + }, + { + "name": "arrow-down-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-down-left-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-down-right-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-down-left-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-down-right-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-left-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-left-down-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-left-up-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-right-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-right-down-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-right-up-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-up-left-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-up-right-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-fat-down-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-left-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-line-down-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-line-left-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-line-right-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-line-up-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,caps lock,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-lines-down-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-lines-left-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-lines-right-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-lines-up-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-right-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-up-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,shift,outlined", + "set_id": 1 + }, + { + "name": "arrow-left-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-line-down-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,bottom", + "set_id": 1 + }, + { + "name": "arrow-line-down-left-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-line-down-right-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-line-left-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-line-right-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-line-up-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,top", + "set_id": 1 + }, + { + "name": "arrow-line-up-left-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-line-up-right-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-right-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-down-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-down-left-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-down-right-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-in-bold", + "content": "", + "style": "outline", + "tags": "import,directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-left-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-out-bold", + "content": "", + "style": "outline", + "tags": "export,external,directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-right-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-up-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-up-left-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-up-right-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-u-down-left-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,undo,return,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-down-right-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,redo,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-left-down-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,undo,return,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-left-up-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,redo,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-right-down-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,undo,return,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-right-up-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,redo,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-up-left-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,undo,return,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-up-right-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,redo,u-turns", + "set_id": 1 + }, + { + "name": "arrow-up-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-up-left-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-up-right-bold", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrows-clockwise-bold", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,redo,refreshing,sync,synchronize,rotate,spin,flip", + "set_id": 1 + }, + { + "name": "arrows-counter-clockwise-bold", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,undo,refreshing,rotate,spin,flip", + "set_id": 1 + }, + { + "name": "arrows-down-up-bold", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrows-horizontal-bold", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,cursor,resize,expand,left,right", + "set_id": 1 + }, + { + "name": "arrows-in-bold", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,collapse,minimize,resize,shrink", + "set_id": 1 + }, + { + "name": "arrows-in-cardinal-bold", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,collapse,minimize,resize,shrink", + "set_id": 1 + }, + { + "name": "arrows-in-line-horizontal-bold", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,close,center,align", + "set_id": 1 + }, + { + "name": "arrows-in-line-vertical-bold", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,close,center,align", + "set_id": 1 + }, + { + "name": "arrows-in-simple-bold", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,collapse,minimize,resize", + "set_id": 1 + }, + { + "name": "arrows-left-right-bold", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrows-merge-bold", + "content": "", + "style": "outline", + "tags": "*updated*,arrowheads,join,combine", + "set_id": 1 + }, + { + "name": "arrows-out-bold", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,expand,fullscreen,resize,grow", + "set_id": 1 + }, + { + "name": "arrows-out-cardinal-bold", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,expand,fullscreen,resize,pan,move,grow", + "set_id": 1 + }, + { + "name": "arrows-out-line-horizontal-bold", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,open,split", + "set_id": 1 + }, + { + "name": "arrows-out-line-vertical-bold", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,open,split", + "set_id": 1 + }, + { + "name": "arrows-out-simple-bold", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,expand,fullscreen,resize", + "set_id": 1 + }, + { + "name": "arrows-split-bold", + "content": "", + "style": "outline", + "tags": "*updated*,arrowheads,fork", + "set_id": 1 + }, + { + "name": "arrows-vertical-bold", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,cursor,resize,expand,up,down", + "set_id": 1 + }, + { + "name": "article-bold", + "content": "", + "style": "outline", + "tags": "reading,writing,journals,periodicals,text,newspaper", + "set_id": 1 + }, + { + "name": "article-medium-bold", + "content": "", + "style": "outline", + "tags": "*updated*,reading,writing,journals,periodicals,text,newspaper", + "set_id": 1 + }, + { + "name": "article-ny-times-bold", + "content": "", + "style": "outline", + "tags": "*updated*,reading,writing,journals,periodicals,text,news,newspaper,nyt,new york times", + "set_id": 1 + }, + { + "name": "asclepius-bold", + "content": "", + "style": "outline", + "tags": "*new*,caduceus,staff,mythology,rx,medicine,drugs,pharmacy,pharmacist,pharmaceuticals,doctor,hospital,snake,mercury,hermes", + "set_id": 1 + }, + { + "name": "asterisk-bold", + "content": "", + "style": "outline", + "tags": "star,wildcard,bullet point,6,emergency", + "set_id": 1 + }, + { + "name": "asterisk-simple-bold", + "content": "", + "style": "outline", + "tags": "*updated*,star,wildcard,bullet point,5,emergency", + "set_id": 1 + }, + { + "name": "at-bold", + "content": "", + "style": "outline", + "tags": "@,address,email,at symbol,commercial at,arobase", + "set_id": 1 + }, + { + "name": "atom-bold", + "content": "", + "style": "outline", + "tags": "atomic,nucleus,nuclear,reactor,science,physics,electron,automation,react", + "set_id": 1 + }, + { + "name": "avocado-bold", + "content": "", + "style": "outline", + "tags": "*new*,food,vegetable,veggie,fruit,groceries,market", + "set_id": 1 + }, + { + "name": "axe-bold", + "content": "", + "style": "outline", + "tags": "*new*,tools,carpentry,forestry,construction", + "set_id": 1 + }, + { + "name": "baby-bold", + "content": "", + "style": "outline", + "tags": "infant,child,children,toddler", + "set_id": 1 + }, + { + "name": "baby-carriage-bold", + "content": "", + "style": "outline", + "tags": "*new*,pram,stroller,infant,child,children,toddler", + "set_id": 1 + }, + { + "name": "backpack-bold", + "content": "", + "style": "outline", + "tags": "knapsack,camping,school,bag", + "set_id": 1 + }, + { + "name": "backspace-bold", + "content": "", + "style": "outline", + "tags": "keyboard,remove,delete", + "set_id": 1 + }, + { + "name": "bag-bold", + "content": "", + "style": "outline", + "tags": "suitcase,valise,baggage,folders,portfolio", + "set_id": 1 + }, + { + "name": "bag-simple-bold", + "content": "", + "style": "outline", + "tags": "suitcase,valise,baggage,folders,portfolio", + "set_id": 1 + }, + { + "name": "balloon-bold", + "content": "", + "style": "outline", + "tags": "helium,birthday,party", + "set_id": 1 + }, + { + "name": "bandaids-bold", + "content": "", + "style": "outline", + "tags": "bandages,medical,medicine,first aid,injury", + "set_id": 1 + }, + { + "name": "bank-bold", + "content": "", + "style": "outline", + "tags": "banking,checking,money,savings,deposit,withdraw,places,locations", + "set_id": 1 + }, + { + "name": "barbell-bold", + "content": "", + "style": "outline", + "tags": "gym,weights,dumbbells,strength training,workout,exercises,fitness", + "set_id": 1 + }, + { + "name": "barcode-bold", + "content": "", + "style": "outline", + "tags": "upc,qr,products,shopping,scanner", + "set_id": 1 + }, + { + "name": "barn-bold", + "content": "", + "style": "outline", + "tags": "*new*,animals,livestock,buildings,farming,agriculture", + "set_id": 1 + }, + { + "name": "barricade-bold", + "content": "", + "style": "outline", + "tags": "construction,safety,gate", + "set_id": 1 + }, + { + "name": "baseball-bold", + "content": "", + "style": "outline", + "tags": "sports,mlb", + "set_id": 1 + }, + { + "name": "baseball-cap-bold", + "content": "", + "style": "outline", + "tags": "clothes,clothing,sports,hat", + "set_id": 1 + }, + { + "name": "baseball-helmet-bold", + "content": "", + "style": "outline", + "tags": "*new*,sports,mlb", + "set_id": 1 + }, + { + "name": "basket-bold", + "content": "", + "style": "outline", + "tags": "ecommerce,market,cart,buying,shopping,groceries,checkout,places,locations", + "set_id": 1 + }, + { + "name": "basketball-bold", + "content": "", + "style": "outline", + "tags": "sports,nba", + "set_id": 1 + }, + { + "name": "bathtub-bold", + "content": "", + "style": "outline", + "tags": "bath,shower,bathroom,faucet", + "set_id": 1 + }, + { + "name": "battery-charging-bold", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-charging-vertical-bold", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-empty-bold", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power,dead", + "set_id": 1 + }, + { + "name": "battery-full-bold", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power,filled", + "set_id": 1 + }, + { + "name": "battery-high-bold", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-low-bold", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-medium-bold", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-plus-bold", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-plus-vertical-bold", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-vertical-empty-bold", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power,dead", + "set_id": 1 + }, + { + "name": "battery-vertical-full-bold", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-vertical-high-bold", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-vertical-low-bold", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-vertical-medium-bold", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-warning-bold", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power,empty,critical", + "set_id": 1 + }, + { + "name": "battery-warning-vertical-bold", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power,empty,critical", + "set_id": 1 + }, + { + "name": "beach-ball-bold", + "content": "", + "style": "outline", + "tags": "*new*,sports,ocean,party", + "set_id": 1 + }, + { + "name": "beanie-bold", + "content": "", + "style": "outline", + "tags": "*new*,clothes,clothing,sports,hat,winter", + "set_id": 1 + }, + { + "name": "bed-bold", + "content": "", + "style": "outline", + "tags": "hotels,accommodations,sleeping,places,locations,medical,hospital", + "set_id": 1 + }, + { + "name": "beer-bottle-bold", + "content": "", + "style": "outline", + "tags": "drinks,beverages,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "beer-stein-bold", + "content": "", + "style": "outline", + "tags": "drinks,beverages,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "behance-logo-bold", + "content": "", + "style": "outline", + "tags": "logos,illustration,ui,interface", + "set_id": 1 + }, + { + "name": "bell-bold", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,calls", + "set_id": 1 + }, + { + "name": "bell-ringing-bold", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,calls", + "set_id": 1 + }, + { + "name": "bell-simple-bold", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,calls", + "set_id": 1 + }, + { + "name": "bell-simple-ringing-bold", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,calls", + "set_id": 1 + }, + { + "name": "bell-simple-slash-bold", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,silent,silenced,disabled", + "set_id": 1 + }, + { + "name": "bell-simple-z-bold", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,snooze", + "set_id": 1 + }, + { + "name": "bell-slash-bold", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,silent,silenced,ringer,calls,disabled", + "set_id": 1 + }, + { + "name": "bell-z-bold", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,snooze", + "set_id": 1 + }, + { + "name": "belt-bold", + "content": "", + "style": "outline", + "tags": "*new*,clothes,clothing", + "set_id": 1 + }, + { + "name": "bezier-curve-bold", + "content": "", + "style": "outline", + "tags": "shapes,drawing,path,pen,vector", + "set_id": 1 + }, + { + "name": "bicycle-bold", + "content": "", + "style": "outline", + "tags": "bikers,bicycling,cyclists,transit,transportation,commuter,exercises,fitness", + "set_id": 1 + }, + { + "name": "binary-bold", + "content": "", + "style": "outline", + "tags": "*new*,digital,0,1,programming,coding,executable", + "set_id": 1 + }, + { + "name": "binoculars-bold", + "content": "", + "style": "outline", + "tags": "telescope,glasses,search,find,explore", + "set_id": 1 + }, + { + "name": "biohazard-bold", + "content": "", + "style": "outline", + "tags": "*new*,contamination,quarantine,toxic,poison,danger,caution", + "set_id": 1 + }, + { + "name": "bird-bold", + "content": "", + "style": "outline", + "tags": "*updated*,animals,pets", + "set_id": 1 + }, + { + "name": "blueprint-bold", + "content": "", + "style": "outline", + "tags": "*new*,architecture,layout,floorplan,building,construction", + "set_id": 1 + }, + { + "name": "bluetooth-bold", + "content": "", + "style": "outline", + "tags": "wireless,connection,connected,connectivity", + "set_id": 1 + }, + { + "name": "bluetooth-connected-bold", + "content": "", + "style": "outline", + "tags": "wireless,connection,connected,connectivity", + "set_id": 1 + }, + { + "name": "bluetooth-slash-bold", + "content": "", + "style": "outline", + "tags": "wireless,connection,connectivity,disconnected,disabled", + "set_id": 1 + }, + { + "name": "bluetooth-x-bold", + "content": "", + "style": "outline", + "tags": "wireless,connection,connectivity,disconnected,errors", + "set_id": 1 + }, + { + "name": "boat-bold", + "content": "", + "style": "outline", + "tags": "ferry,ship,cruise,vehicles,public transit,transportation,commuter,traveling,sailing,places,locations", + "set_id": 1 + }, + { + "name": "bomb-bold", + "content": "", + "style": "outline", + "tags": "*new*,gaming,grenade,explosive,war,weapon,fuse", + "set_id": 1 + }, + { + "name": "bone-bold", + "content": "", + "style": "outline", + "tags": "dogbone", + "set_id": 1 + }, + { + "name": "book-bold", + "content": "", + "style": "outline", + "tags": "reading,reader,novel,story,library", + "set_id": 1 + }, + { + "name": "book-bookmark-bold", + "content": "", + "style": "outline", + "tags": "reading,reader,novel,story,library,favorites,favorited", + "set_id": 1 + }, + { + "name": "book-open-bold", + "content": "", + "style": "outline", + "tags": "*updated*,reading,reader,novel,story,library", + "set_id": 1 + }, + { + "name": "book-open-text-bold", + "content": "", + "style": "outline", + "tags": "*updated*,reading,reader,novel,story,library", + "set_id": 1 + }, + { + "name": "book-open-user-bold", + "content": "", + "style": "outline", + "tags": "*new*,reading,reader,easy read,library,places,locations", + "set_id": 1 + }, + { + "name": "bookmark-bold", + "content": "", + "style": "outline", + "tags": "reading,reader,novel,story,placeholder,favorites,favorited,library", + "set_id": 1 + }, + { + "name": "bookmark-simple-bold", + "content": "", + "style": "outline", + "tags": "reading,reader,novel,story,placeholder,favorites,favorited,library", + "set_id": 1 + }, + { + "name": "bookmarks-bold", + "content": "", + "style": "outline", + "tags": "reading,reader,novel,story,placeholder,favorites,favorited,library", + "set_id": 1 + }, + { + "name": "bookmarks-simple-bold", + "content": "", + "style": "outline", + "tags": "reading,reader,novel,story,placeholder,favorites,favorited,library", + "set_id": 1 + }, + { + "name": "books-bold", + "content": "", + "style": "outline", + "tags": "reading,reader,bookshelf,library,places,locations", + "set_id": 1 + }, + { + "name": "boot-bold", + "content": "", + "style": "outline", + "tags": "hiking,shoes,sports,exercise", + "set_id": 1 + }, + { + "name": "boules-bold", + "content": "", + "style": "outline", + "tags": "*new*,balls,sports,pétanque,raffa,bocce,boule lyonnaise,lawn bowls", + "set_id": 1 + }, + { + "name": "bounding-box-bold", + "content": "", + "style": "outline", + "tags": "polygon,shapes,outline,corners,rectangle", + "set_id": 1 + }, + { + "name": "bowl-food-bold", + "content": "", + "style": "outline", + "tags": "ramen,food,meal,eating,restaurants,dining,locations", + "set_id": 1 + }, + { + "name": "bowl-steam-bold", + "content": "", + "style": "outline", + "tags": "*new*,food,meal,eating,restaurants,dining,locations", + "set_id": 1 + }, + { + "name": "bowling-ball-bold", + "content": "", + "style": "outline", + "tags": "*new*,sports,alley", + "set_id": 1 + }, + { + "name": "box-arrow-down-bold", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,downloaded,downloading", + "set_id": 1 + }, + { + "name": "box-arrow-up-bold", + "content": "", + "style": "outline", + "tags": "*new*,unarchive,archival,upload", + "set_id": 1 + }, + { + "name": "boxing-glove-bold", + "content": "", + "style": "outline", + "tags": "*new*,sports,combat,martial arts,fight,gym", + "set_id": 1 + }, + { + "name": "brackets-angle-bold", + "content": "", + "style": "outline", + "tags": "code,angle brackets,angle braces", + "set_id": 1 + }, + { + "name": "brackets-curly-bold", + "content": "", + "style": "outline", + "tags": "code,curly brackets,curly braces", + "set_id": 1 + }, + { + "name": "brackets-round-bold", + "content": "", + "style": "outline", + "tags": "code,parentheses,round brackets,round braces", + "set_id": 1 + }, + { + "name": "brackets-square-bold", + "content": "", + "style": "outline", + "tags": "code,square brackets,square braces,array", + "set_id": 1 + }, + { + "name": "brain-bold", + "content": "", + "style": "outline", + "tags": "mind,mental", + "set_id": 1 + }, + { + "name": "brandy-bold", + "content": "", + "style": "outline", + "tags": "drinks,beverages,whiskey,cocktail,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "bread-bold", + "content": "", + "style": "outline", + "tags": "*new*,food,meal,bakery,sandwich,gluten,loaf,toast,slice", + "set_id": 1 + }, + { + "name": "bridge-bold", + "content": "", + "style": "outline", + "tags": "travel,transportation,infrastucture", + "set_id": 1 + }, + { + "name": "briefcase-bold", + "content": "", + "style": "outline", + "tags": "suitcase,valise,baggage,folders,portfolio", + "set_id": 1 + }, + { + "name": "briefcase-metal-bold", + "content": "", + "style": "outline", + "tags": "suitcase,valise,baggage,folders,portfolio", + "set_id": 1 + }, + { + "name": "broadcast-bold", + "content": "", + "style": "outline", + "tags": "radio,hotspot,wifi,emit", + "set_id": 1 + }, + { + "name": "broom-bold", + "content": "", + "style": "outline", + "tags": "sweeping,cleaning", + "set_id": 1 + }, + { + "name": "browser-bold", + "content": "", + "style": "outline", + "tags": "web browsers,windows,internet,website,webpage,chrome,edge,firefox", + "set_id": 1 + }, + { + "name": "browsers-bold", + "content": "", + "style": "outline", + "tags": "web browsers,windows,internet,website,webpage,chrome,edge,firefox", + "set_id": 1 + }, + { + "name": "bug-bold", + "content": "", + "style": "outline", + "tags": "debug,errors,insect,ladybug", + "set_id": 1 + }, + { + "name": "bug-beetle-bold", + "content": "", + "style": "outline", + "tags": "debug,errors,insect,ladybug", + "set_id": 1 + }, + { + "name": "bug-droid-bold", + "content": "", + "style": "outline", + "tags": "debug,errors,insect,android,google", + "set_id": 1 + }, + { + "name": "building-bold", + "content": "", + "style": "outline", + "tags": "*new*,places,locations,company,business,buildings", + "set_id": 1 + }, + { + "name": "building-apartment-bold", + "content": "", + "style": "outline", + "tags": "*new*,places,locations,buildings", + "set_id": 1 + }, + { + "name": "building-office-bold", + "content": "", + "style": "outline", + "tags": "*new*,places,locations,company,business,buildings", + "set_id": 1 + }, + { + "name": "buildings-bold", + "content": "", + "style": "outline", + "tags": "places,locations,company,business", + "set_id": 1 + }, + { + "name": "bulldozer-bold", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,construction,earth mover,dig,digger", + "set_id": 1 + }, + { + "name": "bus-bold", + "content": "", + "style": "outline", + "tags": "vehicles,automobile,public transit,transportation,commuter,traveling,places,locations", + "set_id": 1 + }, + { + "name": "butterfly-bold", + "content": "", + "style": "outline", + "tags": "animals,insects,moth", + "set_id": 1 + }, + { + "name": "cable-car-bold", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,gondola,skiing,mountains,public transit,transportation,commuter,traveling,places,locations", + "set_id": 1 + }, + { + "name": "cactus-bold", + "content": "", + "style": "outline", + "tags": "*updated*,plants,cacti,desert,western", + "set_id": 1 + }, + { + "name": "cake-bold", + "content": "", + "style": "outline", + "tags": "dessert,birthday,celebration,event", + "set_id": 1 + }, + { + "name": "calculator-bold", + "content": "", + "style": "outline", + "tags": "addition,sum,subtraction,difference,multiply,multiplication,product,divide,division,divisor,dividend,quotient,equals,equality,mathematics,arithmetic,+,-,±,×,÷,=", + "set_id": 1 + }, + { + "name": "calendar-bold", + "content": "", + "style": "outline", + "tags": "dates,times,events,schedule,12", + "set_id": 1 + }, + { + "name": "calendar-blank-bold", + "content": "", + "style": "outline", + "tags": "dates,times,events,schedule,none", + "set_id": 1 + }, + { + "name": "calendar-check-bold", + "content": "", + "style": "outline", + "tags": "dates,times,events,schedule,todo,checklist", + "set_id": 1 + }, + { + "name": "calendar-dot-bold", + "content": "", + "style": "outline", + "tags": "*new*,dates,times,events,schedule,today", + "set_id": 1 + }, + { + "name": "calendar-dots-bold", + "content": "", + "style": "outline", + "tags": "*new*,dates,times,events,schedule", + "set_id": 1 + }, + { + "name": "calendar-heart-bold", + "content": "", + "style": "outline", + "tags": "*new*,dates,times,events,schedule,favorite,star", + "set_id": 1 + }, + { + "name": "calendar-minus-bold", + "content": "", + "style": "outline", + "tags": "*new*,dates,times,events,schedule,remove,delete", + "set_id": 1 + }, + { + "name": "calendar-plus-bold", + "content": "", + "style": "outline", + "tags": "dates,times,events,schedule,add", + "set_id": 1 + }, + { + "name": "calendar-slash-bold", + "content": "", + "style": "outline", + "tags": "*new*,dates,times,events,schedule,remove,delete,cancel. unavailable", + "set_id": 1 + }, + { + "name": "calendar-star-bold", + "content": "", + "style": "outline", + "tags": "*new*,dates,times,events,schedule,favorite,star", + "set_id": 1 + }, + { + "name": "calendar-x-bold", + "content": "", + "style": "outline", + "tags": "dates,times,events,schedule,closed,cancelled", + "set_id": 1 + }, + { + "name": "call-bell-bold", + "content": "", + "style": "outline", + "tags": "service bell,reception,attendant,concierge bell", + "set_id": 1 + }, + { + "name": "camera-bold", + "content": "", + "style": "outline", + "tags": "photography,pictures,lens", + "set_id": 1 + }, + { + "name": "camera-plus-bold", + "content": "", + "style": "outline", + "tags": "photography,pictures,album,add", + "set_id": 1 + }, + { + "name": "camera-rotate-bold", + "content": "", + "style": "outline", + "tags": "photography,pictures,orientation,portrait,landscape,selfie,flip", + "set_id": 1 + }, + { + "name": "camera-slash-bold", + "content": "", + "style": "outline", + "tags": "photography,pictures,lens,disabled", + "set_id": 1 + }, + { + "name": "campfire-bold", + "content": "", + "style": "outline", + "tags": "camping,flame,bonfire,outdoors", + "set_id": 1 + }, + { + "name": "car-bold", + "content": "", + "style": "outline", + "tags": "*updated*,cars,vehicles,automobile,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "car-battery-bold", + "content": "", + "style": "outline", + "tags": "*new*,charged,charger,charging,power,voltage,electricity", + "set_id": 1 + }, + { + "name": "car-profile-bold", + "content": "", + "style": "outline", + "tags": "cars,vehicles,automobile,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "car-simple-bold", + "content": "", + "style": "outline", + "tags": "cars,vehicles,automobile,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "cardholder-bold", + "content": "", + "style": "outline", + "tags": "wallet,money,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "cards-bold", + "content": "", + "style": "outline", + "tags": "card,slides,slideshow,windows,website,webpage,layers", + "set_id": 1 + }, + { + "name": "cards-three-bold", + "content": "", + "style": "outline", + "tags": "*new*,card,slides,slideshow,windows,website,webpage,layers,stack", + "set_id": 1 + }, + { + "name": "caret-circle-double-down-bold", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-double-left-bold", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-double-right-bold", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-double-up-bold", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-down-bold", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-left-bold", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-right-bold", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-up-bold", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-up-down-bold", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-double-down-bold", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-double-left-bold", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-double-right-bold", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-double-up-bold", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-down-bold", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-left-bold", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-line-down-bold", + "content": "", + "style": "outline", + "tags": "*new*,chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-line-left-bold", + "content": "", + "style": "outline", + "tags": "*new*,chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-line-right-bold", + "content": "", + "style": "outline", + "tags": "*new*,chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-line-up-bold", + "content": "", + "style": "outline", + "tags": "*new*,chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-right-bold", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-up-bold", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-up-down-bold", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "carrot-bold", + "content": "", + "style": "outline", + "tags": "food,vegetable,veggie,groceries,market", + "set_id": 1 + }, + { + "name": "cash-register-bold", + "content": "", + "style": "outline", + "tags": "*new*,retail,point-of-sale,pos,transaction,sales,till", + "set_id": 1 + }, + { + "name": "cassette-tape-bold", + "content": "", + "style": "outline", + "tags": "recording,audio,album,music", + "set_id": 1 + }, + { + "name": "castle-turret-bold", + "content": "", + "style": "outline", + "tags": "*updated*,chess,rook", + "set_id": 1 + }, + { + "name": "cat-bold", + "content": "", + "style": "outline", + "tags": "pets,animals,kitty,kitten", + "set_id": 1 + }, + { + "name": "cell-signal-full-bold", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,reception,service", + "set_id": 1 + }, + { + "name": "cell-signal-high-bold", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,reception,service", + "set_id": 1 + }, + { + "name": "cell-signal-low-bold", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,reception,service", + "set_id": 1 + }, + { + "name": "cell-signal-medium-bold", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,reception,service", + "set_id": 1 + }, + { + "name": "cell-signal-none-bold", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,reception,service", + "set_id": 1 + }, + { + "name": "cell-signal-slash-bold", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,disconnected,disabled,reception,service", + "set_id": 1 + }, + { + "name": "cell-signal-x-bold", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,reception,disconnected,errors,service", + "set_id": 1 + }, + { + "name": "cell-tower-bold", + "content": "", + "style": "outline", + "tags": "*new*,wireless,cellular,broadcast,phone,mobile,network,connection,connectivity", + "set_id": 1 + }, + { + "name": "certificate-bold", + "content": "", + "style": "outline", + "tags": "*updated*,awards,certification,degree,diploma", + "set_id": 1 + }, + { + "name": "chair-bold", + "content": "", + "style": "outline", + "tags": "seat,furniture", + "set_id": 1 + }, + { + "name": "chalkboard-bold", + "content": "", + "style": "outline", + "tags": "blackboard,whiteboard,classroom,teacher,education,school,college,university", + "set_id": 1 + }, + { + "name": "chalkboard-simple-bold", + "content": "", + "style": "outline", + "tags": "*updated*,blackboard,whiteboard,classroom,teacher,education,school,college,university", + "set_id": 1 + }, + { + "name": "chalkboard-teacher-bold", + "content": "", + "style": "outline", + "tags": "blackboard,whiteboard,classroom,education,school,college,university", + "set_id": 1 + }, + { + "name": "champagne-bold", + "content": "", + "style": "outline", + "tags": "glass,drinks,beverages,wine,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "charging-station-bold", + "content": "", + "style": "outline", + "tags": "ev,charge,fuel,pump", + "set_id": 1 + }, + { + "name": "chart-bar-bold", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,histogram,analyze,analysis", + "set_id": 1 + }, + { + "name": "chart-bar-horizontal-bold", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,histogram,analyze,analysis", + "set_id": 1 + }, + { + "name": "chart-donut-bold", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,analyze,analysis,circle", + "set_id": 1 + }, + { + "name": "chart-line-bold", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,analyze,analysis,stocks", + "set_id": 1 + }, + { + "name": "chart-line-down-bold", + "content": "", + "style": "outline", + "tags": "*updated*,graphs,graphing,charts,statistics,analyze,analysis,stocks", + "set_id": 1 + }, + { + "name": "chart-line-up-bold", + "content": "", + "style": "outline", + "tags": "*updated*,graphs,graphing,charts,statistics,analyze,analysis,stocks", + "set_id": 1 + }, + { + "name": "chart-pie-bold", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,circle,analyze,analysis", + "set_id": 1 + }, + { + "name": "chart-pie-slice-bold", + "content": "", + "style": "outline", + "tags": "*updated*,graphs,graphing,charts,statistics,circle,analyze,analysis", + "set_id": 1 + }, + { + "name": "chart-polar-bold", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,analyze,analysis,circle", + "set_id": 1 + }, + { + "name": "chart-scatter-bold", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,analyze,analysis", + "set_id": 1 + }, + { + "name": "chat-bold", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-centered-bold", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-centered-dots-bold", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-centered-slash-bold", + "content": "", + "style": "outline", + "tags": "*new*,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-centered-text-bold", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-circle-bold", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,round,bubble", + "set_id": 1 + }, + { + "name": "chat-circle-dots-bold", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,round,bubble", + "set_id": 1 + }, + { + "name": "chat-circle-slash-bold", + "content": "", + "style": "outline", + "tags": "*new*,messages,messaging,sms,texting,comment,round,bubble", + "set_id": 1 + }, + { + "name": "chat-circle-text-bold", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,round,bubble", + "set_id": 1 + }, + { + "name": "chat-dots-bold", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-slash-bold", + "content": "", + "style": "outline", + "tags": "*new*,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-teardrop-bold", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,bubble", + "set_id": 1 + }, + { + "name": "chat-teardrop-dots-bold", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,bubble", + "set_id": 1 + }, + { + "name": "chat-teardrop-slash-bold", + "content": "", + "style": "outline", + "tags": "*new*,messages,messaging,sms,texting,comment,bubble", + "set_id": 1 + }, + { + "name": "chat-teardrop-text-bold", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,bubble", + "set_id": 1 + }, + { + "name": "chat-text-bold", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chats-bold", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chats-circle-bold", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,round,bubble", + "set_id": 1 + }, + { + "name": "chats-teardrop-bold", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,bubble", + "set_id": 1 + }, + { + "name": "check-bold", + "content": "", + "style": "outline", + "tags": "todo,to-do,task,list,checkbox,ok,done", + "set_id": 1 + }, + { + "name": "check-circle-bold", + "content": "", + "style": "outline", + "tags": "todo,to-do,task,list,checkbox,round,ok,done", + "set_id": 1 + }, + { + "name": "check-fat-bold", + "content": "", + "style": "outline", + "tags": "todo,to-do,task,list,checkbox,ok,done", + "set_id": 1 + }, + { + "name": "check-square-bold", + "content": "", + "style": "outline", + "tags": "todo,to-do,task,list,checkbox,rectangle,ok,done", + "set_id": 1 + }, + { + "name": "check-square-offset-bold", + "content": "", + "style": "outline", + "tags": "*updated*,todo,to-do,task,list,checkbox,rectangle,ok,done", + "set_id": 1 + }, + { + "name": "checkerboard-bold", + "content": "", + "style": "outline", + "tags": "*new*,crossword", + "set_id": 1 + }, + { + "name": "checks-bold", + "content": "", + "style": "outline", + "tags": "*updated*,todo,task,to-do,list,checkbox,ok,done", + "set_id": 1 + }, + { + "name": "cheers-bold", + "content": "", + "style": "outline", + "tags": "*new*,glass,drinks,beverages,champagne,toast,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "cheese-bold", + "content": "", + "style": "outline", + "tags": "*new*,dairy,wedge,food,dining", + "set_id": 1 + }, + { + "name": "chef-hat-bold", + "content": "", + "style": "outline", + "tags": "*new*,cooking,cuisine,kitchen,clothes,clothing", + "set_id": 1 + }, + { + "name": "cherries-bold", + "content": "", + "style": "outline", + "tags": "*new*,food,fruit,cherry,groceries,market", + "set_id": 1 + }, + { + "name": "church-bold", + "content": "", + "style": "outline", + "tags": "christ,christianity,cathedral,religion,worship", + "set_id": 1 + }, + { + "name": "cigarette-bold", + "content": "", + "style": "outline", + "tags": "*new*,smoking,tobacco", + "set_id": 1 + }, + { + "name": "cigarette-slash-bold", + "content": "", + "style": "outline", + "tags": "*new*,non-smoking,tobacco", + "set_id": 1 + }, + { + "name": "circle-bold", + "content": "", + "style": "outline", + "tags": "round,shapes,polygons", + "set_id": 1 + }, + { + "name": "circle-dashed-bold", + "content": "", + "style": "outline", + "tags": "missing,round,shapes,polygons", + "set_id": 1 + }, + { + "name": "circle-half-bold", + "content": "", + "style": "outline", + "tags": "round,shapes,contrast,brightness", + "set_id": 1 + }, + { + "name": "circle-half-tilt-bold", + "content": "", + "style": "outline", + "tags": "round,shapes,contrast,brightness", + "set_id": 1 + }, + { + "name": "circle-notch-bold", + "content": "", + "style": "outline", + "tags": "round,shapes,loading,loader,spinner,waiting,progress", + "set_id": 1 + }, + { + "name": "circles-four-bold", + "content": "", + "style": "outline", + "tags": "round,shapes,polygons,4", + "set_id": 1 + }, + { + "name": "circles-three-bold", + "content": "", + "style": "outline", + "tags": "round,shapes,polygons,3,asana", + "set_id": 1 + }, + { + "name": "circles-three-plus-bold", + "content": "", + "style": "outline", + "tags": "round,shapes,polygons,3,+", + "set_id": 1 + }, + { + "name": "circuitry-bold", + "content": "", + "style": "outline", + "tags": "processor,microchip,computer,circuit,electronics,motherboard", + "set_id": 1 + }, + { + "name": "city-bold", + "content": "", + "style": "outline", + "tags": "*new*,skyline,skyscrapers,places,locations,buildings", + "set_id": 1 + }, + { + "name": "clipboard-bold", + "content": "", + "style": "outline", + "tags": "copy,copied,checklist", + "set_id": 1 + }, + { + "name": "clipboard-text-bold", + "content": "", + "style": "outline", + "tags": "copy,copied,checklist", + "set_id": 1 + }, + { + "name": "clock-bold", + "content": "", + "style": "outline", + "tags": "times,timer,alarm,schedule,events,watch", + "set_id": 1 + }, + { + "name": "clock-afternoon-bold", + "content": "", + "style": "outline", + "tags": "times,timer,alarm,schedule,events,watch", + "set_id": 1 + }, + { + "name": "clock-clockwise-bold", + "content": "", + "style": "outline", + "tags": "times,timer,alarm,schedule,events,restore,fast forward,update", + "set_id": 1 + }, + { + "name": "clock-countdown-bold", + "content": "", + "style": "outline", + "tags": "times,timer,alarm,schedule,events,watch", + "set_id": 1 + }, + { + "name": "clock-counter-clockwise-bold", + "content": "", + "style": "outline", + "tags": "times,timer,alarm,schedule,events,backup,rewind,history", + "set_id": 1 + }, + { + "name": "clock-user-bold", + "content": "", + "style": "outline", + "tags": "*new*,times,timer,shift,schedule,events,watch", + "set_id": 1 + }, + { + "name": "closed-captioning-bold", + "content": "", + "style": "outline", + "tags": "subtitles,television,tv,transcribed,transcription,accessibility,a11y", + "set_id": 1 + }, + { + "name": "cloud-bold", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,meteorology,cloudy,overcast", + "set_id": 1 + }, + { + "name": "cloud-arrow-down-bold", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,download", + "set_id": 1 + }, + { + "name": "cloud-arrow-up-bold", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,upload", + "set_id": 1 + }, + { + "name": "cloud-check-bold", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,sync,synchronized", + "set_id": 1 + }, + { + "name": "cloud-fog-bold", + "content": "", + "style": "outline", + "tags": "meteorology,cloudy,overcast,foggy,mist,haze", + "set_id": 1 + }, + { + "name": "cloud-lightning-bold", + "content": "", + "style": "outline", + "tags": "meteorology,cloudy,overcast,stormy,thunderstorm", + "set_id": 1 + }, + { + "name": "cloud-moon-bold", + "content": "", + "style": "outline", + "tags": "meteorology,cloudy,partly cloudy,night,evening", + "set_id": 1 + }, + { + "name": "cloud-rain-bold", + "content": "", + "style": "outline", + "tags": "meteorology,cloudy,rainy,raining,stormy,rainstorm", + "set_id": 1 + }, + { + "name": "cloud-slash-bold", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,sync,disabled", + "set_id": 1 + }, + { + "name": "cloud-snow-bold", + "content": "", + "style": "outline", + "tags": "meteorology,cloudy,snowy,snowing,stormy,snowstorm", + "set_id": 1 + }, + { + "name": "cloud-sun-bold", + "content": "", + "style": "outline", + "tags": "meteorology,cloudy,partly cloudy,partly sunny", + "set_id": 1 + }, + { + "name": "cloud-warning-bold", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,errors", + "set_id": 1 + }, + { + "name": "cloud-x-bold", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,errors", + "set_id": 1 + }, + { + "name": "clover-bold", + "content": "", + "style": "outline", + "tags": "*new*,four leaf clover,plants,luck,lucky,irish", + "set_id": 1 + }, + { + "name": "club-bold", + "content": "", + "style": "outline", + "tags": "clubs,suits,cards,gambling,casino,gaming", + "set_id": 1 + }, + { + "name": "coat-hanger-bold", + "content": "", + "style": "outline", + "tags": "clothing,clothes,closet", + "set_id": 1 + }, + { + "name": "coda-logo-bold", + "content": "", + "style": "outline", + "tags": "project management,productivity,documentation,wiki,logos", + "set_id": 1 + }, + { + "name": "code-bold", + "content": "", + "style": "outline", + "tags": "angle brackets,angle braces,snippets", + "set_id": 1 + }, + { + "name": "code-block-bold", + "content": "", + "style": "outline", + "tags": "angle brackets,angle braces,snippets", + "set_id": 1 + }, + { + "name": "code-simple-bold", + "content": "", + "style": "outline", + "tags": "angle brackets,angle braces,snippets", + "set_id": 1 + }, + { + "name": "codepen-logo-bold", + "content": "", + "style": "outline", + "tags": "ide,logos", + "set_id": 1 + }, + { + "name": "codesandbox-logo-bold", + "content": "", + "style": "outline", + "tags": "ide,logos", + "set_id": 1 + }, + { + "name": "coffee-bold", + "content": "", + "style": "outline", + "tags": "tea,java,beverages,drinks,cafe,cup,mug,espresso,cappuccino,latte,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "coffee-bean-bold", + "content": "", + "style": "outline", + "tags": "*new*,tea,java,beverages,drinks,cafe,cup,mug,espresso,cappuccino,latte,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "coin-bold", + "content": "", + "style": "outline", + "tags": "coins,cents,change,money,currency,payment,paying,purchase,price,sell", + "set_id": 1 + }, + { + "name": "coin-vertical-bold", + "content": "", + "style": "outline", + "tags": "cents,change,money,currency,payment,paying,purchase,price,sell", + "set_id": 1 + }, + { + "name": "coins-bold", + "content": "", + "style": "outline", + "tags": "cents,change,money,currency,payment,paying,purchase,price,sell", + "set_id": 1 + }, + { + "name": "columns-bold", + "content": "", + "style": "outline", + "tags": "2,shapes,polygons,box,stack,list,table,cards", + "set_id": 1 + }, + { + "name": "columns-plus-left-bold", + "content": "", + "style": "outline", + "tags": "*new*,2,shapes,polygons,box,stack,list,table,cards,prepend,insert", + "set_id": 1 + }, + { + "name": "columns-plus-right-bold", + "content": "", + "style": "outline", + "tags": "*new*,2,shapes,polygons,box,stack,list,table,cards,append,insert", + "set_id": 1 + }, + { + "name": "command-bold", + "content": "", + "style": "outline", + "tags": "apple,keyboard,shortcut,modifier,looped square,bowen knot,saint john's arms", + "set_id": 1 + }, + { + "name": "compass-bold", + "content": "", + "style": "outline", + "tags": "navigation,directions,maps,safari,apple", + "set_id": 1 + }, + { + "name": "compass-rose-bold", + "content": "", + "style": "outline", + "tags": "*new*,navigation,directions,maps,cardinal,cartography", + "set_id": 1 + }, + { + "name": "compass-tool-bold", + "content": "", + "style": "outline", + "tags": "drawing,geometry,trigonometry,degrees,radians,measurement,protractor,compass,arc", + "set_id": 1 + }, + { + "name": "computer-tower-bold", + "content": "", + "style": "outline", + "tags": "desktop,pc,imac", + "set_id": 1 + }, + { + "name": "confetti-bold", + "content": "", + "style": "outline", + "tags": "tada,party,emoji", + "set_id": 1 + }, + { + "name": "contactless-payment-bold", + "content": "", + "style": "outline", + "tags": "purchase,credit card,nfc", + "set_id": 1 + }, + { + "name": "control-bold", + "content": "", + "style": "outline", + "tags": "ctrl,key,keyboard,shortcut,caret", + "set_id": 1 + }, + { + "name": "cookie-bold", + "content": "", + "style": "outline", + "tags": "privacy,dessert,food,dining", + "set_id": 1 + }, + { + "name": "cooking-pot-bold", + "content": "", + "style": "outline", + "tags": "stew,kitchen,steaming,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "copy-bold", + "content": "", + "style": "outline", + "tags": "duplicated,copied,clipboard", + "set_id": 1 + }, + { + "name": "copy-simple-bold", + "content": "", + "style": "outline", + "tags": "duplicated,copied,clipboard", + "set_id": 1 + }, + { + "name": "copyleft-bold", + "content": "", + "style": "outline", + "tags": "🄯,intellectual property,copr.,symbol", + "set_id": 1 + }, + { + "name": "copyright-bold", + "content": "", + "style": "outline", + "tags": "©,intellectual property,copr.,symbol", + "set_id": 1 + }, + { + "name": "corners-in-bold", + "content": "", + "style": "outline", + "tags": "*updated*,collapse,windowed,minimized", + "set_id": 1 + }, + { + "name": "corners-out-bold", + "content": "", + "style": "outline", + "tags": "*updated*,expand,fullscreen,maximized", + "set_id": 1 + }, + { + "name": "couch-bold", + "content": "", + "style": "outline", + "tags": "furniture,seat", + "set_id": 1 + }, + { + "name": "court-basketball-bold", + "content": "", + "style": "outline", + "tags": "*new*,sports,nba", + "set_id": 1 + }, + { + "name": "cow-bold", + "content": "", + "style": "outline", + "tags": "*new*,animals,livestock,beef,bull,milk,dairy", + "set_id": 1 + }, + { + "name": "cowboy-hat-bold", + "content": "", + "style": "outline", + "tags": "*new*,clothes,clothing,stetson", + "set_id": 1 + }, + { + "name": "cpu-bold", + "content": "", + "style": "outline", + "tags": "processor,microchip,computer,circuit", + "set_id": 1 + }, + { + "name": "crane-bold", + "content": "", + "style": "outline", + "tags": "*new*,construction,industry", + "set_id": 1 + }, + { + "name": "crane-tower-bold", + "content": "", + "style": "outline", + "tags": "*new*,construction,industry", + "set_id": 1 + }, + { + "name": "credit-card-bold", + "content": "", + "style": "outline", + "tags": "debit,visa,mastercard,money,payment,paying,purchase,swipe", + "set_id": 1 + }, + { + "name": "cricket-bold", + "content": "", + "style": "outline", + "tags": "*new*,sports,ball,bat", + "set_id": 1 + }, + { + "name": "crop-bold", + "content": "", + "style": "outline", + "tags": "photography,clip,screenshots", + "set_id": 1 + }, + { + "name": "cross-bold", + "content": "", + "style": "outline", + "tags": "dagger,crucifix,christ,christianity,religion,worship,symbol", + "set_id": 1 + }, + { + "name": "crosshair-bold", + "content": "", + "style": "outline", + "tags": "geolocation,gps,aiming,targeting", + "set_id": 1 + }, + { + "name": "crosshair-simple-bold", + "content": "", + "style": "outline", + "tags": "geolocation,gps,aiming,targeting", + "set_id": 1 + }, + { + "name": "crown-bold", + "content": "", + "style": "outline", + "tags": "*updated*,king,queen,royalty,monarch,ruler,leader,chess", + "set_id": 1 + }, + { + "name": "crown-cross-bold", + "content": "", + "style": "outline", + "tags": "*new*,king,queen,royalty,monarch,ruler,leader,chess", + "set_id": 1 + }, + { + "name": "crown-simple-bold", + "content": "", + "style": "outline", + "tags": "*updated*,king,queen,royalty,monarch,ruler,leader,chess", + "set_id": 1 + }, + { + "name": "cube-bold", + "content": "", + "style": "outline", + "tags": "square,box,3d,volume,blocks", + "set_id": 1 + }, + { + "name": "cube-focus-bold", + "content": "", + "style": "outline", + "tags": "augmented reality,ar,virual reality,vr,3d,scan", + "set_id": 1 + }, + { + "name": "cube-transparent-bold", + "content": "", + "style": "outline", + "tags": "square,box,3d,volume,blocks,necker", + "set_id": 1 + }, + { + "name": "currency-btc-bold", + "content": "", + "style": "outline", + "tags": "money,btc,bitcoin,crypto,cryptocurrency,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-circle-dollar-bold", + "content": "", + "style": "outline", + "tags": "money,usd,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-cny-bold", + "content": "", + "style": "outline", + "tags": "money,yuan,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-dollar-bold", + "content": "", + "style": "outline", + "tags": "money,usd,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-dollar-simple-bold", + "content": "", + "style": "outline", + "tags": "money,usd,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-eth-bold", + "content": "", + "style": "outline", + "tags": "money,ethereum,crypto,cryptocurrency,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-eur-bold", + "content": "", + "style": "outline", + "tags": "money,euros,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-gbp-bold", + "content": "", + "style": "outline", + "tags": "money,pounds sterling,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-inr-bold", + "content": "", + "style": "outline", + "tags": "money,rupees,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-jpy-bold", + "content": "", + "style": "outline", + "tags": "money,yen,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-krw-bold", + "content": "", + "style": "outline", + "tags": "money,won,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-kzt-bold", + "content": "", + "style": "outline", + "tags": "money,kazakhstan,tenge,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-ngn-bold", + "content": "", + "style": "outline", + "tags": "money,nigeria,naira,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-rub-bold", + "content": "", + "style": "outline", + "tags": "money,rubles,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "cursor-bold", + "content": "", + "style": "outline", + "tags": "pointer,arrowhead,mouse,click", + "set_id": 1 + }, + { + "name": "cursor-click-bold", + "content": "", + "style": "outline", + "tags": "pointer,arrowhead,mouse", + "set_id": 1 + }, + { + "name": "cursor-text-bold", + "content": "", + "style": "outline", + "tags": "i-beam,input,select", + "set_id": 1 + }, + { + "name": "cylinder-bold", + "content": "", + "style": "outline", + "tags": "shapes,tube", + "set_id": 1 + }, + { + "name": "database-bold", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,hard disk,storage,hdd,servers,databases", + "set_id": 1 + }, + { + "name": "desk-bold", + "content": "", + "style": "outline", + "tags": "*new*,furniture,workspace,table", + "set_id": 1 + }, + { + "name": "desktop-bold", + "content": "", + "style": "outline", + "tags": "computer,pc,imac,tower", + "set_id": 1 + }, + { + "name": "desktop-tower-bold", + "content": "", + "style": "outline", + "tags": "*updated*,computer,pc,imac", + "set_id": 1 + }, + { + "name": "detective-bold", + "content": "", + "style": "outline", + "tags": "incognito,police,law enforcement,spy,secret", + "set_id": 1 + }, + { + "name": "dev-to-logo-bold", + "content": "", + "style": "outline", + "tags": "reading,writing,social media,logos", + "set_id": 1 + }, + { + "name": "device-mobile-bold", + "content": "", + "style": "outline", + "tags": "cellphone,cellular", + "set_id": 1 + }, + { + "name": "device-mobile-camera-bold", + "content": "", + "style": "outline", + "tags": "cellphone,cellular", + "set_id": 1 + }, + { + "name": "device-mobile-slash-bold", + "content": "", + "style": "outline", + "tags": "*new*,cellphone,cellular", + "set_id": 1 + }, + { + "name": "device-mobile-speaker-bold", + "content": "", + "style": "outline", + "tags": "cellphone,cellular", + "set_id": 1 + }, + { + "name": "device-rotate-bold", + "content": "", + "style": "outline", + "tags": "*new*,orientation,landscape,portrait,spin,flip", + "set_id": 1 + }, + { + "name": "device-tablet-bold", + "content": "", + "style": "outline", + "tags": "cellphone,cellular,ipad,phablet", + "set_id": 1 + }, + { + "name": "device-tablet-camera-bold", + "content": "", + "style": "outline", + "tags": "cellphone,cellular,ipad,phablet", + "set_id": 1 + }, + { + "name": "device-tablet-speaker-bold", + "content": "", + "style": "outline", + "tags": "cellphone,cellular,ipad,phablet", + "set_id": 1 + }, + { + "name": "devices-bold", + "content": "", + "style": "outline", + "tags": "responsive,cellphone,cellular,tablet,destop", + "set_id": 1 + }, + { + "name": "diamond-bold", + "content": "", + "style": "outline", + "tags": "rectangle,shapes,polygons,diamonds,suits,cards,gambling,casino,gaming", + "set_id": 1 + }, + { + "name": "diamonds-four-bold", + "content": "", + "style": "outline", + "tags": "shapes,grid,component", + "set_id": 1 + }, + { + "name": "dice-five-bold", + "content": "", + "style": "outline", + "tags": "die,rolling,gamble,gambling,casino,gaming,5", + "set_id": 1 + }, + { + "name": "dice-four-bold", + "content": "", + "style": "outline", + "tags": "die,rolling,gamble,gambling,casino,gaming,4", + "set_id": 1 + }, + { + "name": "dice-one-bold", + "content": "", + "style": "outline", + "tags": "die,rolling,gamble,gambling,casino,gaming,1", + "set_id": 1 + }, + { + "name": "dice-six-bold", + "content": "", + "style": "outline", + "tags": "die,rolling,gamble,gambling,casino,gaming,6", + "set_id": 1 + }, + { + "name": "dice-three-bold", + "content": "", + "style": "outline", + "tags": "die,rolling,gamble,gambling,casino,gaming,3", + "set_id": 1 + }, + { + "name": "dice-two-bold", + "content": "", + "style": "outline", + "tags": "die,rolling,gamble,gambling,casino,gaming,2", + "set_id": 1 + }, + { + "name": "disc-bold", + "content": "", + "style": "outline", + "tags": "cd-rom,compact disk,album,record", + "set_id": 1 + }, + { + "name": "disco-ball-bold", + "content": "", + "style": "outline", + "tags": "*new*,danging,club,70s", + "set_id": 1 + }, + { + "name": "discord-logo-bold", + "content": "", + "style": "outline", + "tags": "logos,messages,messaging,chat", + "set_id": 1 + }, + { + "name": "divide-bold", + "content": "", + "style": "outline", + "tags": "division,divisor,dividend,quotient,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "dna-bold", + "content": "", + "style": "outline", + "tags": "double helix,gene,genetics", + "set_id": 1 + }, + { + "name": "dog-bold", + "content": "", + "style": "outline", + "tags": "pets,animals,puppy", + "set_id": 1 + }, + { + "name": "door-bold", + "content": "", + "style": "outline", + "tags": "entrance,exit", + "set_id": 1 + }, + { + "name": "door-open-bold", + "content": "", + "style": "outline", + "tags": "entrance,exit", + "set_id": 1 + }, + { + "name": "dot-bold", + "content": "", + "style": "outline", + "tags": "dots,circles,shapes,polygons", + "set_id": 1 + }, + { + "name": "dot-outline-bold", + "content": "", + "style": "outline", + "tags": "dots,circles,shapes,polygons", + "set_id": 1 + }, + { + "name": "dots-nine-bold", + "content": "", + "style": "outline", + "tags": "grid,circles,shapes,polygons,9", + "set_id": 1 + }, + { + "name": "dots-six-bold", + "content": "", + "style": "outline", + "tags": "*updated*,drag handle,knurling,circles,shapes,polygons,6", + "set_id": 1 + }, + { + "name": "dots-six-vertical-bold", + "content": "", + "style": "outline", + "tags": "*updated*,drag handle,knurling,circles,shapes,polygons,6", + "set_id": 1 + }, + { + "name": "dots-three-bold", + "content": "", + "style": "outline", + "tags": "menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more", + "set_id": 1 + }, + { + "name": "dots-three-circle-bold", + "content": "", + "style": "outline", + "tags": "menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more", + "set_id": 1 + }, + { + "name": "dots-three-circle-vertical-bold", + "content": "", + "style": "outline", + "tags": "menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more", + "set_id": 1 + }, + { + "name": "dots-three-outline-bold", + "content": "", + "style": "outline", + "tags": "menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more", + "set_id": 1 + }, + { + "name": "dots-three-outline-vertical-bold", + "content": "", + "style": "outline", + "tags": "menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more", + "set_id": 1 + }, + { + "name": "dots-three-vertical-bold", + "content": "", + "style": "outline", + "tags": "menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more", + "set_id": 1 + }, + { + "name": "download-bold", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,downloaded,downloading,hard drive,disk", + "set_id": 1 + }, + { + "name": "download-simple-bold", + "content": "", + "style": "outline", + "tags": "*updated*,saved,saving,archived,archiving,archival,downloaded,downloading,hard drive,disk,import", + "set_id": 1 + }, + { + "name": "dress-bold", + "content": "", + "style": "outline", + "tags": "clothes,clothing", + "set_id": 1 + }, + { + "name": "dresser-bold", + "content": "", + "style": "outline", + "tags": "*new*,furniture,bedroom,storage,drawers,wardrobe", + "set_id": 1 + }, + { + "name": "dribbble-logo-bold", + "content": "", + "style": "outline", + "tags": "logos,round,basketball,sports,design", + "set_id": 1 + }, + { + "name": "drone-bold", + "content": "", + "style": "outline", + "tags": "*new*,aerial,uav,photography,remote", + "set_id": 1 + }, + { + "name": "drop-bold", + "content": "", + "style": "outline", + "tags": "droplet,teardrop,raindrop,raining,meteorology,water,blur", + "set_id": 1 + }, + { + "name": "drop-half-bold", + "content": "", + "style": "outline", + "tags": "droplet,teardrop,raindrop,humidity,water,contrast,brightness", + "set_id": 1 + }, + { + "name": "drop-half-bottom-bold", + "content": "", + "style": "outline", + "tags": "droplet,teardrop,raindrop,humidity,water,contrast,brightness", + "set_id": 1 + }, + { + "name": "drop-simple-bold", + "content": "", + "style": "outline", + "tags": "*new*,droplet,teardrop,raindrop,raining,humidity,meteorology,water,blur", + "set_id": 1 + }, + { + "name": "drop-slash-bold", + "content": "", + "style": "outline", + "tags": "*new*,droplet,teardrop,raindrop,raining,humidity,meteorology,water,blur,disabled", + "set_id": 1 + }, + { + "name": "dropbox-logo-bold", + "content": "", + "style": "outline", + "tags": "cloud,storage,backup,logos", + "set_id": 1 + }, + { + "name": "ear-bold", + "content": "", + "style": "outline", + "tags": "hearing,audio,sound", + "set_id": 1 + }, + { + "name": "ear-slash-bold", + "content": "", + "style": "outline", + "tags": "hearing,audio,sound,mute,accessible", + "set_id": 1 + }, + { + "name": "egg-bold", + "content": "", + "style": "outline", + "tags": "chicken,food,meal,baby,hatch", + "set_id": 1 + }, + { + "name": "egg-crack-bold", + "content": "", + "style": "outline", + "tags": "chicken,food,meal,baby,hatch,break", + "set_id": 1 + }, + { + "name": "eject-bold", + "content": "", + "style": "outline", + "tags": "disconnect", + "set_id": 1 + }, + { + "name": "eject-simple-bold", + "content": "", + "style": "outline", + "tags": "disconnect", + "set_id": 1 + }, + { + "name": "elevator-bold", + "content": "", + "style": "outline", + "tags": "lift", + "set_id": 1 + }, + { + "name": "empty-bold", + "content": "", + "style": "outline", + "tags": "*new*,∅,empty set,member,mathematics,arithmetic,calculator,null", + "set_id": 1 + }, + { + "name": "engine-bold", + "content": "", + "style": "outline", + "tags": "*updated*,motor,repair,vehicles,automobile", + "set_id": 1 + }, + { + "name": "envelope-bold", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,message,post,letter", + "set_id": 1 + }, + { + "name": "envelope-open-bold", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,message,read,post,letter", + "set_id": 1 + }, + { + "name": "envelope-simple-bold", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,message,post,letter", + "set_id": 1 + }, + { + "name": "envelope-simple-open-bold", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,message,read,post,letter", + "set_id": 1 + }, + { + "name": "equalizer-bold", + "content": "", + "style": "outline", + "tags": "music,audio,meter,volume,spectrum,eq,deezer", + "set_id": 1 + }, + { + "name": "equals-bold", + "content": "", + "style": "outline", + "tags": "=,equality,equivalent,equivalence,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "eraser-bold", + "content": "", + "style": "outline", + "tags": "write,writing,editing,undo,deleted", + "set_id": 1 + }, + { + "name": "escalator-down-bold", + "content": "", + "style": "outline", + "tags": "stairs", + "set_id": 1 + }, + { + "name": "escalator-up-bold", + "content": "", + "style": "outline", + "tags": "stairs", + "set_id": 1 + }, + { + "name": "exam-bold", + "content": "", + "style": "outline", + "tags": "text,examination,paper,school,grade", + "set_id": 1 + }, + { + "name": "exclamation-mark-bold", + "content": "", + "style": "outline", + "tags": "*new*,!,alert,warning,caution,interjection,punctuation,symbol", + "set_id": 1 + }, + { + "name": "exclude-bold", + "content": "", + "style": "outline", + "tags": "venn-diagram,difference,intersection", + "set_id": 1 + }, + { + "name": "exclude-square-bold", + "content": "", + "style": "outline", + "tags": "venn-diagram,difference,intersection", + "set_id": 1 + }, + { + "name": "export-bold", + "content": "", + "style": "outline", + "tags": "share,send to,arrows", + "set_id": 1 + }, + { + "name": "eye-bold", + "content": "", + "style": "outline", + "tags": "visible,hidden,show,hide,visibility,view", + "set_id": 1 + }, + { + "name": "eye-closed-bold", + "content": "", + "style": "outline", + "tags": "visible,hidden,show,hide,visibility,view,invisible,private", + "set_id": 1 + }, + { + "name": "eye-slash-bold", + "content": "", + "style": "outline", + "tags": "visible,hidden,show,hide,visibility,view,invisible,eyelashes,disabled,private", + "set_id": 1 + }, + { + "name": "eyedropper-bold", + "content": "", + "style": "outline", + "tags": "colors,color picker,sample,arts", + "set_id": 1 + }, + { + "name": "eyedropper-sample-bold", + "content": "", + "style": "outline", + "tags": "colors,color picker,arts", + "set_id": 1 + }, + { + "name": "eyeglasses-bold", + "content": "", + "style": "outline", + "tags": "vision,spectacles", + "set_id": 1 + }, + { + "name": "eyes-bold", + "content": "", + "style": "outline", + "tags": "*new*,look,glance", + "set_id": 1 + }, + { + "name": "face-mask-bold", + "content": "", + "style": "outline", + "tags": "ppe,facemask,covid-19,coronavirus,flu,cold", + "set_id": 1 + }, + { + "name": "facebook-logo-bold", + "content": "", + "style": "outline", + "tags": "logos,social media", + "set_id": 1 + }, + { + "name": "factory-bold", + "content": "", + "style": "outline", + "tags": "industry,manufacture,buildings,places,locations", + "set_id": 1 + }, + { + "name": "faders-bold", + "content": "", + "style": "outline", + "tags": "music,audio,sliders,filters,equalizer,volume,settings,preferences", + "set_id": 1 + }, + { + "name": "faders-horizontal-bold", + "content": "", + "style": "outline", + "tags": "music,audio,sliders,filters,equalizer,volume,settings,preferences", + "set_id": 1 + }, + { + "name": "fallout-shelter-bold", + "content": "", + "style": "outline", + "tags": "*new*,radiation,radioactive,nuclear,bunker,contamination,quarantine,toxic,danger,caution", + "set_id": 1 + }, + { + "name": "fan-bold", + "content": "", + "style": "outline", + "tags": "desk fan,air conditioning", + "set_id": 1 + }, + { + "name": "farm-bold", + "content": "", + "style": "outline", + "tags": "*new*,farmer,field,farming,agriculture", + "set_id": 1 + }, + { + "name": "fast-forward-bold", + "content": "", + "style": "outline", + "tags": "audio,music,seek,scrub,scan,ahead,skip", + "set_id": 1 + }, + { + "name": "fast-forward-circle-bold", + "content": "", + "style": "outline", + "tags": "audio,music,seek,scrub,scan,ahead,skip", + "set_id": 1 + }, + { + "name": "feather-bold", + "content": "", + "style": "outline", + "tags": "bird", + "set_id": 1 + }, + { + "name": "fediverse-logo-bold", + "content": "", + "style": "outline", + "tags": "*new*,social media,decentralized", + "set_id": 1 + }, + { + "name": "figma-logo-bold", + "content": "", + "style": "outline", + "tags": "*updated*,logos,drawing,art,illustration,ui,interface,prototype,prototyping", + "set_id": 1 + }, + { + "name": "file-bold", + "content": "", + "style": "outline", + "tags": "documents,files,save,write,page", + "set_id": 1 + }, + { + "name": "file-archive-bold", + "content": "", + "style": "outline", + "tags": "documents,zip,compression", + "set_id": 1 + }, + { + "name": "file-arrow-down-bold", + "content": "", + "style": "outline", + "tags": "documents,files,save,write,download,directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "file-arrow-up-bold", + "content": "", + "style": "outline", + "tags": "documents,files,save,write,upload,directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "file-audio-bold", + "content": "", + "style": "outline", + "tags": "documents,music,sound", + "set_id": 1 + }, + { + "name": "file-c-bold", + "content": "", + "style": "outline", + "tags": "*new*,documents,code", + "set_id": 1 + }, + { + "name": "file-c-sharp-bold", + "content": "", + "style": "outline", + "tags": "*new*,documents,code,c#", + "set_id": 1 + }, + { + "name": "file-cloud-bold", + "content": "", + "style": "outline", + "tags": "documents,sync", + "set_id": 1 + }, + { + "name": "file-code-bold", + "content": "", + "style": "outline", + "tags": "documents", + "set_id": 1 + }, + { + "name": "file-cpp-bold", + "content": "", + "style": "outline", + "tags": "*new*,documents,code,c++", + "set_id": 1 + }, + { + "name": "file-css-bold", + "content": "", + "style": "outline", + "tags": "documents,code", + "set_id": 1 + }, + { + "name": "file-csv-bold", + "content": "", + "style": "outline", + "tags": "documents,data", + "set_id": 1 + }, + { + "name": "file-dashed-bold", + "content": "", + "style": "outline", + "tags": "documents,files,browse,draft,open,dotted", + "set_id": 1 + }, + { + "name": "file-doc-bold", + "content": "", + "style": "outline", + "tags": "documents,word,microsoft", + "set_id": 1 + }, + { + "name": "file-html-bold", + "content": "", + "style": "outline", + "tags": "*updated*,documents,code", + "set_id": 1 + }, + { + "name": "file-image-bold", + "content": "", + "style": "outline", + "tags": "documents,pictures,photograph", + "set_id": 1 + }, + { + "name": "file-ini-bold", + "content": "", + "style": "outline", + "tags": "*new*,documents", + "set_id": 1 + }, + { + "name": "file-jpg-bold", + "content": "", + "style": "outline", + "tags": "documents,pictures,photograph,jpeg", + "set_id": 1 + }, + { + "name": "file-js-bold", + "content": "", + "style": "outline", + "tags": "documents,code,javascript", + "set_id": 1 + }, + { + "name": "file-jsx-bold", + "content": "", + "style": "outline", + "tags": "documents,code,javascript", + "set_id": 1 + }, + { + "name": "file-lock-bold", + "content": "", + "style": "outline", + "tags": "documents,secure,locked,private", + "set_id": 1 + }, + { + "name": "file-magnifying-glass-bold", + "content": "", + "style": "outline", + "tags": "documents,files,search,find,locate,browse,missing", + "set_id": 1 + }, + { + "name": "file-md-bold", + "content": "", + "style": "outline", + "tags": "*new*,documents,notes,markdown", + "set_id": 1 + }, + { + "name": "file-minus-bold", + "content": "", + "style": "outline", + "tags": "documents,files,delete,write,remove,-", + "set_id": 1 + }, + { + "name": "file-pdf-bold", + "content": "", + "style": "outline", + "tags": "documents,files,acrobat", + "set_id": 1 + }, + { + "name": "file-plus-bold", + "content": "", + "style": "outline", + "tags": "documents,files,save,write,add,new,create,+", + "set_id": 1 + }, + { + "name": "file-png-bold", + "content": "", + "style": "outline", + "tags": "documents,pictures,photograph", + "set_id": 1 + }, + { + "name": "file-ppt-bold", + "content": "", + "style": "outline", + "tags": "documents,powerpoint,microsoft", + "set_id": 1 + }, + { + "name": "file-py-bold", + "content": "", + "style": "outline", + "tags": "*new*,documents,code,python", + "set_id": 1 + }, + { + "name": "file-rs-bold", + "content": "", + "style": "outline", + "tags": "documents,code,rust", + "set_id": 1 + }, + { + "name": "file-sql-bold", + "content": "", + "style": "outline", + "tags": "documents,database", + "set_id": 1 + }, + { + "name": "file-svg-bold", + "content": "", + "style": "outline", + "tags": "documents,images,vector", + "set_id": 1 + }, + { + "name": "file-text-bold", + "content": "", + "style": "outline", + "tags": "documents,files,save,write", + "set_id": 1 + }, + { + "name": "file-ts-bold", + "content": "", + "style": "outline", + "tags": "documents,code,typescript", + "set_id": 1 + }, + { + "name": "file-tsx-bold", + "content": "", + "style": "outline", + "tags": "documents,code,typescript", + "set_id": 1 + }, + { + "name": "file-txt-bold", + "content": "", + "style": "outline", + "tags": "*new*,documents", + "set_id": 1 + }, + { + "name": "file-video-bold", + "content": "", + "style": "outline", + "tags": "documents,movie", + "set_id": 1 + }, + { + "name": "file-vue-bold", + "content": "", + "style": "outline", + "tags": "documents,code", + "set_id": 1 + }, + { + "name": "file-x-bold", + "content": "", + "style": "outline", + "tags": "documents,files,cancelled,deleted,removed,errors", + "set_id": 1 + }, + { + "name": "file-xls-bold", + "content": "", + "style": "outline", + "tags": "documents,excel,microsoft", + "set_id": 1 + }, + { + "name": "file-zip-bold", + "content": "", + "style": "outline", + "tags": "documents,archive,compression", + "set_id": 1 + }, + { + "name": "files-bold", + "content": "", + "style": "outline", + "tags": "documents,open,library", + "set_id": 1 + }, + { + "name": "film-reel-bold", + "content": "", + "style": "outline", + "tags": "videography,films,movies,recording", + "set_id": 1 + }, + { + "name": "film-script-bold", + "content": "", + "style": "outline", + "tags": "screenplay,movie", + "set_id": 1 + }, + { + "name": "film-slate-bold", + "content": "", + "style": "outline", + "tags": "*updated*,clapper,movie", + "set_id": 1 + }, + { + "name": "film-strip-bold", + "content": "", + "style": "outline", + "tags": "camera,photography,darkroom,movie,analog", + "set_id": 1 + }, + { + "name": "fingerprint-bold", + "content": "", + "style": "outline", + "tags": "security,secured,authentication,authenticated,login,locked,biometrics,encrypted,encryption", + "set_id": 1 + }, + { + "name": "fingerprint-simple-bold", + "content": "", + "style": "outline", + "tags": "security,secured,authentication,authenticated,login,locked,biometrics,encrypted,encryption", + "set_id": 1 + }, + { + "name": "finn-the-human-bold", + "content": "", + "style": "outline", + "tags": "adventure time,cartoons,television,tv,character", + "set_id": 1 + }, + { + "name": "fire-bold", + "content": "", + "style": "outline", + "tags": "flame,burning,match,lighter", + "set_id": 1 + }, + { + "name": "fire-extinguisher-bold", + "content": "", + "style": "outline", + "tags": "safety,prevention,emergency,hazard,danger,caution", + "set_id": 1 + }, + { + "name": "fire-simple-bold", + "content": "", + "style": "outline", + "tags": "flame,burning,match,lighter", + "set_id": 1 + }, + { + "name": "fire-truck-bold", + "content": "", + "style": "outline", + "tags": "*new*,first-aid,emt,medical,medicine,injury,safety,emergency,firefighter", + "set_id": 1 + }, + { + "name": "first-aid-bold", + "content": "", + "style": "outline", + "tags": "hospital,cross,medical,medicine,injury,safety,emergency,doctor", + "set_id": 1 + }, + { + "name": "first-aid-kit-bold", + "content": "", + "style": "outline", + "tags": "bandages,medical,medicine,injury,safety,emergency,doctor", + "set_id": 1 + }, + { + "name": "fish-bold", + "content": "", + "style": "outline", + "tags": "animals,pets,food,seafood,restaurants,dining", + "set_id": 1 + }, + { + "name": "fish-simple-bold", + "content": "", + "style": "outline", + "tags": "animals,pets,food,seafood,restaurants,dining", + "set_id": 1 + }, + { + "name": "flag-bold", + "content": "", + "style": "outline", + "tags": "country,countries,finished,completed,flags", + "set_id": 1 + }, + { + "name": "flag-banner-bold", + "content": "", + "style": "outline", + "tags": "ribbon,country,countries,finished,completed,flags,swallowtail", + "set_id": 1 + }, + { + "name": "flag-banner-fold-bold", + "content": "", + "style": "outline", + "tags": "*new*,ribbon,country,countries,finished,completed,flags,swallowtail", + "set_id": 1 + }, + { + "name": "flag-checkered-bold", + "content": "", + "style": "outline", + "tags": "flags,race,racing,finish line", + "set_id": 1 + }, + { + "name": "flag-pennant-bold", + "content": "", + "style": "outline", + "tags": "flags,race,sports,team", + "set_id": 1 + }, + { + "name": "flame-bold", + "content": "", + "style": "outline", + "tags": "fire,burning,match,lighter", + "set_id": 1 + }, + { + "name": "flashlight-bold", + "content": "", + "style": "outline", + "tags": "torch,find,search,locate", + "set_id": 1 + }, + { + "name": "flask-bold", + "content": "", + "style": "outline", + "tags": "beaker,science,chemistry,experiment,erlenmeyer", + "set_id": 1 + }, + { + "name": "flip-horizontal-bold", + "content": "", + "style": "outline", + "tags": "*new*,mirror,rotate,invert", + "set_id": 1 + }, + { + "name": "flip-vertical-bold", + "content": "", + "style": "outline", + "tags": "*new*,mirror,rotate,invert", + "set_id": 1 + }, + { + "name": "floppy-disk-bold", + "content": "", + "style": "outline", + "tags": "diskette,directory,directories,folders,documents,files,save,write", + "set_id": 1 + }, + { + "name": "floppy-disk-back-bold", + "content": "", + "style": "outline", + "tags": "*updated*,diskette,directory,directories,folders,documents,files,save,write", + "set_id": 1 + }, + { + "name": "flow-arrow-bold", + "content": "", + "style": "outline", + "tags": "*updated*,flowchart,arrowhead", + "set_id": 1 + }, + { + "name": "flower-bold", + "content": "", + "style": "outline", + "tags": "plants,green,environmental", + "set_id": 1 + }, + { + "name": "flower-lotus-bold", + "content": "", + "style": "outline", + "tags": "plants,green,environmental,spirituality", + "set_id": 1 + }, + { + "name": "flower-tulip-bold", + "content": "", + "style": "outline", + "tags": "plants,green,environmental", + "set_id": 1 + }, + { + "name": "flying-saucer-bold", + "content": "", + "style": "outline", + "tags": "ufo,space,aliens,extra terrestrial,sci-fi", + "set_id": 1 + }, + { + "name": "folder-bold", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders", + "set_id": 1 + }, + { + "name": "folder-dashed-bold", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,missing,temporary,dotted", + "set_id": 1 + }, + { + "name": "folder-lock-bold", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,private,secure", + "set_id": 1 + }, + { + "name": "folder-minus-bold", + "content": "", + "style": "outline", + "tags": "directory,directories,files,delete,write,remove,-", + "set_id": 1 + }, + { + "name": "folder-open-bold", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,load", + "set_id": 1 + }, + { + "name": "folder-plus-bold", + "content": "", + "style": "outline", + "tags": "directory,directories,files,save,write,add,new,create,+", + "set_id": 1 + }, + { + "name": "folder-simple-bold", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders", + "set_id": 1 + }, + { + "name": "folder-simple-dashed-bold", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,missing,temporary,dotted", + "set_id": 1 + }, + { + "name": "folder-simple-lock-bold", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,private,secure", + "set_id": 1 + }, + { + "name": "folder-simple-minus-bold", + "content": "", + "style": "outline", + "tags": "directory,directories,files,delete,write,remove,-", + "set_id": 1 + }, + { + "name": "folder-simple-plus-bold", + "content": "", + "style": "outline", + "tags": "directory,directories,files,save,write,add,new,create,+", + "set_id": 1 + }, + { + "name": "folder-simple-star-bold", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,favorite,starred", + "set_id": 1 + }, + { + "name": "folder-simple-user-bold", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,personal", + "set_id": 1 + }, + { + "name": "folder-star-bold", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,favorite,starred", + "set_id": 1 + }, + { + "name": "folder-user-bold", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,personal", + "set_id": 1 + }, + { + "name": "folders-bold", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,copy,copied,duplicated", + "set_id": 1 + }, + { + "name": "football-bold", + "content": "", + "style": "outline", + "tags": "sports,american football,nfl", + "set_id": 1 + }, + { + "name": "football-helmet-bold", + "content": "", + "style": "outline", + "tags": "*new*,sports,american football,nfl", + "set_id": 1 + }, + { + "name": "footprints-bold", + "content": "", + "style": "outline", + "tags": "path,trail,walk,route,hike,hiking", + "set_id": 1 + }, + { + "name": "fork-knife-bold", + "content": "", + "style": "outline", + "tags": "food,meal,eating,restaurants,dining,utensils", + "set_id": 1 + }, + { + "name": "four-k-bold", + "content": "", + "style": "outline", + "tags": "*new*,uhd,resolution,video", + "set_id": 1 + }, + { + "name": "frame-corners-bold", + "content": "", + "style": "outline", + "tags": "expand,fullscreen,maximized,resize,windowed,capture", + "set_id": 1 + }, + { + "name": "framer-logo-bold", + "content": "", + "style": "outline", + "tags": "logos,interface,ui,motion,prototype,prototyping", + "set_id": 1 + }, + { + "name": "function-bold", + "content": "", + "style": "outline", + "tags": "mathematics,arithmetic,f-stop", + "set_id": 1 + }, + { + "name": "funnel-bold", + "content": "", + "style": "outline", + "tags": "filters,refine,sorting", + "set_id": 1 + }, + { + "name": "funnel-simple-bold", + "content": "", + "style": "outline", + "tags": "filters,refine,sorting", + "set_id": 1 + }, + { + "name": "funnel-simple-x-bold", + "content": "", + "style": "outline", + "tags": "*new*,filters,refine,sorting", + "set_id": 1 + }, + { + "name": "funnel-x-bold", + "content": "", + "style": "outline", + "tags": "*new*,filters,refine,sorting", + "set_id": 1 + }, + { + "name": "game-controller-bold", + "content": "", + "style": "outline", + "tags": "gaming,video games,nintendo switch,sony playstation,microsoft xbox", + "set_id": 1 + }, + { + "name": "garage-bold", + "content": "", + "style": "outline", + "tags": "vehicles,automobile,buildings,transportation", + "set_id": 1 + }, + { + "name": "gas-can-bold", + "content": "", + "style": "outline", + "tags": "jerrycan,petrol,fuel,gasoline", + "set_id": 1 + }, + { + "name": "gas-pump-bold", + "content": "", + "style": "outline", + "tags": "gas station,petrol,fuel,gasoline", + "set_id": 1 + }, + { + "name": "gauge-bold", + "content": "", + "style": "outline", + "tags": "dashboard,meter,speed,speedometer,odometer,performance", + "set_id": 1 + }, + { + "name": "gavel-bold", + "content": "", + "style": "outline", + "tags": "judge,justice,legal,law,court,hammer,government", + "set_id": 1 + }, + { + "name": "gear-bold", + "content": "", + "style": "outline", + "tags": "8,settings,setup,preferences,cogs,gears,machinery,mechanical", + "set_id": 1 + }, + { + "name": "gear-fine-bold", + "content": "", + "style": "outline", + "tags": "setup,preferences,cogs,gears,machinery,mechanical", + "set_id": 1 + }, + { + "name": "gear-six-bold", + "content": "", + "style": "outline", + "tags": "6,settings,setup,preferences,cogs,gears,machinery,mechanical", + "set_id": 1 + }, + { + "name": "gender-female-bold", + "content": "", + "style": "outline", + "tags": "woman,feminine,venus", + "set_id": 1 + }, + { + "name": "gender-intersex-bold", + "content": "", + "style": "outline", + "tags": "transgender,non-binary", + "set_id": 1 + }, + { + "name": "gender-male-bold", + "content": "", + "style": "outline", + "tags": "man,masculine,mars", + "set_id": 1 + }, + { + "name": "gender-neuter-bold", + "content": "", + "style": "outline", + "tags": "agender,non-binary,asexual", + "set_id": 1 + }, + { + "name": "gender-nonbinary-bold", + "content": "", + "style": "outline", + "tags": "intersex,non-binary", + "set_id": 1 + }, + { + "name": "gender-transgender-bold", + "content": "", + "style": "outline", + "tags": "intersex,non-binary", + "set_id": 1 + }, + { + "name": "ghost-bold", + "content": "", + "style": "outline", + "tags": "pac-man,spirit,scary,halloween", + "set_id": 1 + }, + { + "name": "gif-bold", + "content": "", + "style": "outline", + "tags": "gifs,.gif,giphy", + "set_id": 1 + }, + { + "name": "gift-bold", + "content": "", + "style": "outline", + "tags": "presents,holiday,birthday", + "set_id": 1 + }, + { + "name": "git-branch-bold", + "content": "", + "style": "outline", + "tags": "*updated*,github,vcs,source control,version control,versioning,branches", + "set_id": 1 + }, + { + "name": "git-commit-bold", + "content": "", + "style": "outline", + "tags": "github,vcs,source control,version control,versioning,commits", + "set_id": 1 + }, + { + "name": "git-diff-bold", + "content": "", + "style": "outline", + "tags": "*updated*,github,vcs,source control,version control,versioning,difference,compare", + "set_id": 1 + }, + { + "name": "git-fork-bold", + "content": "", + "style": "outline", + "tags": "*updated*,github,vcs,source control,version control,versioning,split", + "set_id": 1 + }, + { + "name": "git-merge-bold", + "content": "", + "style": "outline", + "tags": "*updated*,github,vcs,source control,version control,versioning,split", + "set_id": 1 + }, + { + "name": "git-pull-request-bold", + "content": "", + "style": "outline", + "tags": "*updated*,github,vcs,source control,version control,versioning,merge request", + "set_id": 1 + }, + { + "name": "github-logo-bold", + "content": "", + "style": "outline", + "tags": "octocat,vcs,source control,version control,versioning,branches", + "set_id": 1 + }, + { + "name": "gitlab-logo-bold", + "content": "", + "style": "outline", + "tags": "vcs,source control,version control,versioning,branches", + "set_id": 1 + }, + { + "name": "gitlab-logo-simple-bold", + "content": "", + "style": "outline", + "tags": "vcs,source control,version control,versioning,branches", + "set_id": 1 + }, + { + "name": "globe-bold", + "content": "", + "style": "outline", + "tags": "world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography,internet", + "set_id": 1 + }, + { + "name": "globe-hemisphere-east-bold", + "content": "", + "style": "outline", + "tags": "world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography,europe,africa,asia,australia", + "set_id": 1 + }, + { + "name": "globe-hemisphere-west-bold", + "content": "", + "style": "outline", + "tags": "world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography,north america,south america", + "set_id": 1 + }, + { + "name": "globe-simple-bold", + "content": "", + "style": "outline", + "tags": "world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography", + "set_id": 1 + }, + { + "name": "globe-simple-x-bold", + "content": "", + "style": "outline", + "tags": "*new*,world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography,internet", + "set_id": 1 + }, + { + "name": "globe-stand-bold", + "content": "", + "style": "outline", + "tags": "world,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography", + "set_id": 1 + }, + { + "name": "globe-x-bold", + "content": "", + "style": "outline", + "tags": "*new*,world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography,internet", + "set_id": 1 + }, + { + "name": "goggles-bold", + "content": "", + "style": "outline", + "tags": "swim,swimming,sports,exercise,olympics,aquatics", + "set_id": 1 + }, + { + "name": "golf-bold", + "content": "", + "style": "outline", + "tags": "*new*,sports,pga,tee,ball", + "set_id": 1 + }, + { + "name": "goodreads-logo-bold", + "content": "", + "style": "outline", + "tags": "*updated*,reading,books,social media,logos", + "set_id": 1 + }, + { + "name": "google-cardboard-logo-bold", + "content": "", + "style": "outline", + "tags": "virtual reality,vr,logos", + "set_id": 1 + }, + { + "name": "google-chrome-logo-bold", + "content": "", + "style": "outline", + "tags": "web browsers,internet", + "set_id": 1 + }, + { + "name": "google-drive-logo-bold", + "content": "", + "style": "outline", + "tags": "cloud,storage,backup,logos", + "set_id": 1 + }, + { + "name": "google-logo-bold", + "content": "", + "style": "outline", + "tags": "logos,search engine,phone,mobile,android", + "set_id": 1 + }, + { + "name": "google-photos-logo-bold", + "content": "", + "style": "outline", + "tags": "album,pictures,photography", + "set_id": 1 + }, + { + "name": "google-play-logo-bold", + "content": "", + "style": "outline", + "tags": "logos,games,apps,applications,play store,app store,phone,mobile,android", + "set_id": 1 + }, + { + "name": "google-podcasts-logo-bold", + "content": "", + "style": "outline", + "tags": "audio", + "set_id": 1 + }, + { + "name": "gps-bold", + "content": "", + "style": "outline", + "tags": "*new*,geolocation,location,navigation", + "set_id": 1 + }, + { + "name": "gps-fix-bold", + "content": "", + "style": "outline", + "tags": "*new*,geolocation,location,navigation", + "set_id": 1 + }, + { + "name": "gps-slash-bold", + "content": "", + "style": "outline", + "tags": "*new*,geolocation,location,navigation,disabled", + "set_id": 1 + }, + { + "name": "gradient-bold", + "content": "", + "style": "outline", + "tags": "fade,ombre,opacity", + "set_id": 1 + }, + { + "name": "graduation-cap-bold", + "content": "", + "style": "outline", + "tags": "classroom,teacher,education,school,college,university,degree,graduate,hat", + "set_id": 1 + }, + { + "name": "grains-bold", + "content": "", + "style": "outline", + "tags": "wheat,gluten,farm,farming,agriculture", + "set_id": 1 + }, + { + "name": "grains-slash-bold", + "content": "", + "style": "outline", + "tags": "gluten-free,wheat,gluten,farm,farming,agriculture", + "set_id": 1 + }, + { + "name": "graph-bold", + "content": "", + "style": "outline", + "tags": "nodes,tree", + "set_id": 1 + }, + { + "name": "graphics-card-bold", + "content": "", + "style": "outline", + "tags": "*new*,graphics card,microchip,computer,circuit", + "set_id": 1 + }, + { + "name": "greater-than-bold", + "content": "", + "style": "outline", + "tags": "*new*,>,greater than,gt,comparison,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "greater-than-or-equal-bold", + "content": "", + "style": "outline", + "tags": "*new*,≥,greater than or equal,gte,comparison,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "grid-four-bold", + "content": "", + "style": "outline", + "tags": "4,apps,applications,squares,tiles,cells,tables,tabular,spreadsheets,excel", + "set_id": 1 + }, + { + "name": "grid-nine-bold", + "content": "", + "style": "outline", + "tags": "9,apps,applications,squares,tiles,cells,tables,tabular,spreadsheets,excel", + "set_id": 1 + }, + { + "name": "guitar-bold", + "content": "", + "style": "outline", + "tags": "music,instrument", + "set_id": 1 + }, + { + "name": "hair-dryer-bold", + "content": "", + "style": "outline", + "tags": "*new*,blow dryer,beauty,grooming,salon", + "set_id": 1 + }, + { + "name": "hamburger-bold", + "content": "", + "style": "outline", + "tags": "fast food,party,places,locations,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "hammer-bold", + "content": "", + "style": "outline", + "tags": "tools,carpentry,construction", + "set_id": 1 + }, + { + "name": "hand-bold", + "content": "", + "style": "outline", + "tags": "pointers,cursors,emoji,backhand", + "set_id": 1 + }, + { + "name": "hand-arrow-down-bold", + "content": "", + "style": "outline", + "tags": "*new*,take,receive,remove,withdraw,emoji", + "set_id": 1 + }, + { + "name": "hand-arrow-up-bold", + "content": "", + "style": "outline", + "tags": "*new*,give,insert,deposit,donation,emoji", + "set_id": 1 + }, + { + "name": "hand-coins-bold", + "content": "", + "style": "outline", + "tags": "donation,payment,money,paying,purchase", + "set_id": 1 + }, + { + "name": "hand-deposit-bold", + "content": "", + "style": "outline", + "tags": "*new*,give,insert,donation,atm,emoji", + "set_id": 1 + }, + { + "name": "hand-eye-bold", + "content": "", + "style": "outline", + "tags": "*updated*,emoji,hamsa,evil eye", + "set_id": 1 + }, + { + "name": "hand-fist-bold", + "content": "", + "style": "outline", + "tags": "emoji,power,protest,blm", + "set_id": 1 + }, + { + "name": "hand-grabbing-bold", + "content": "", + "style": "outline", + "tags": "pointers,cursors,emoji,drag,hold", + "set_id": 1 + }, + { + "name": "hand-heart-bold", + "content": "", + "style": "outline", + "tags": "donation,care,emoji", + "set_id": 1 + }, + { + "name": "hand-palm-bold", + "content": "", + "style": "outline", + "tags": "pointers,cursors,emoji,palm,stop,wait,hamsa,5", + "set_id": 1 + }, + { + "name": "hand-peace-bold", + "content": "", + "style": "outline", + "tags": "*new*,emoji,victory", + "set_id": 1 + }, + { + "name": "hand-pointing-bold", + "content": "", + "style": "outline", + "tags": "pointers,cursors,emoji,fingers,clicks,mouse", + "set_id": 1 + }, + { + "name": "hand-soap-bold", + "content": "", + "style": "outline", + "tags": "dispenser,pump,sanitizer,disinfectant,lotion,bottle", + "set_id": 1 + }, + { + "name": "hand-swipe-left-bold", + "content": "", + "style": "outline", + "tags": "pointers,cursors,gesture", + "set_id": 1 + }, + { + "name": "hand-swipe-right-bold", + "content": "", + "style": "outline", + "tags": "pointers,cursors,gesture", + "set_id": 1 + }, + { + "name": "hand-tap-bold", + "content": "", + "style": "outline", + "tags": "pointers,cursors,gesture", + "set_id": 1 + }, + { + "name": "hand-waving-bold", + "content": "", + "style": "outline", + "tags": "emoji,palm,wave,hello,goodbye", + "set_id": 1 + }, + { + "name": "hand-withdraw-bold", + "content": "", + "style": "outline", + "tags": "*new*,take,remove,withdrawal,atm,emoji", + "set_id": 1 + }, + { + "name": "handbag-bold", + "content": "", + "style": "outline", + "tags": "suitcases,valises,baggage,purses", + "set_id": 1 + }, + { + "name": "handbag-simple-bold", + "content": "", + "style": "outline", + "tags": "suitcases,valises,baggage,purses", + "set_id": 1 + }, + { + "name": "hands-clapping-bold", + "content": "", + "style": "outline", + "tags": "emoji,clap,applause", + "set_id": 1 + }, + { + "name": "hands-praying-bold", + "content": "", + "style": "outline", + "tags": "emoji,religion,worship,prayer,thanks,thank you", + "set_id": 1 + }, + { + "name": "handshake-bold", + "content": "", + "style": "outline", + "tags": "emoji,deal,agreement", + "set_id": 1 + }, + { + "name": "hard-drive-bold", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,hard disk,storage,hdd,servers,databases", + "set_id": 1 + }, + { + "name": "hard-drives-bold", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,hard disk,storage,hdd,servers,databases", + "set_id": 1 + }, + { + "name": "hard-hat-bold", + "content": "", + "style": "outline", + "tags": "*new*,safety,construction,industry,helmet,ppe", + "set_id": 1 + }, + { + "name": "hash-bold", + "content": "", + "style": "outline", + "tags": "hashtag,octothorpe,pound sign,number sign,tic-tac-toe,symbol", + "set_id": 1 + }, + { + "name": "hash-straight-bold", + "content": "", + "style": "outline", + "tags": "hashtag,octothorpe,pound sign,number sign,tic-tac-toe,symbol", + "set_id": 1 + }, + { + "name": "head-circuit-bold", + "content": "", + "style": "outline", + "tags": "*new*,automaton,artificial intelligence,ai", + "set_id": 1 + }, + { + "name": "headlights-bold", + "content": "", + "style": "outline", + "tags": "brights,high beams", + "set_id": 1 + }, + { + "name": "headphones-bold", + "content": "", + "style": "outline", + "tags": "music,audio,listening", + "set_id": 1 + }, + { + "name": "headset-bold", + "content": "", + "style": "outline", + "tags": "music,audio,listening,gaming,voice chat,microphone,headphones,support,customer-service,call-center", + "set_id": 1 + }, + { + "name": "heart-bold", + "content": "", + "style": "outline", + "tags": "wellness,love,healthy,like,favorites,favorited,suits,cards,gambling,casino,gaming,emoji", + "set_id": 1 + }, + { + "name": "heart-break-bold", + "content": "", + "style": "outline", + "tags": "love,hate,crack,split,divorce,emoji", + "set_id": 1 + }, + { + "name": "heart-half-bold", + "content": "", + "style": "outline", + "tags": "wellness,love,healthy,like,favorites,favorited", + "set_id": 1 + }, + { + "name": "heart-straight-bold", + "content": "", + "style": "outline", + "tags": "wellness,love,healthy,like,favorites,favorited,suits,cards,gambling,casino,gaming,emoji", + "set_id": 1 + }, + { + "name": "heart-straight-break-bold", + "content": "", + "style": "outline", + "tags": "love,hate,crack,split,divorce,emoji", + "set_id": 1 + }, + { + "name": "heartbeat-bold", + "content": "", + "style": "outline", + "tags": "wellness,healthy,ecg,ekg,vitals,monitor", + "set_id": 1 + }, + { + "name": "hexagon-bold", + "content": "", + "style": "outline", + "tags": "6,shapes,polygons", + "set_id": 1 + }, + { + "name": "high-definition-bold", + "content": "", + "style": "outline", + "tags": "*new*,hd,resolution,video", + "set_id": 1 + }, + { + "name": "high-heel-bold", + "content": "", + "style": "outline", + "tags": "*updated*,pumps,clothes,clothing,shoes", + "set_id": 1 + }, + { + "name": "highlighter-bold", + "content": "", + "style": "outline", + "tags": "*new*,marker,write,writing,editing", + "set_id": 1 + }, + { + "name": "highlighter-circle-bold", + "content": "", + "style": "outline", + "tags": "write,writing,editing,drawing", + "set_id": 1 + }, + { + "name": "hockey-bold", + "content": "", + "style": "outline", + "tags": "*new*,sports,nhl,stick,puck", + "set_id": 1 + }, + { + "name": "hoodie-bold", + "content": "", + "style": "outline", + "tags": "clothes,clothing,sweatshirt", + "set_id": 1 + }, + { + "name": "horse-bold", + "content": "", + "style": "outline", + "tags": "animals,equestrian,chess,knight,sports", + "set_id": 1 + }, + { + "name": "hospital-bold", + "content": "", + "style": "outline", + "tags": "*new*,places,locations,medical,medicine,emergency,doctor,buildings", + "set_id": 1 + }, + { + "name": "hourglass-bold", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-high-bold", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-low-bold", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-medium-bold", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-simple-bold", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-simple-high-bold", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-simple-low-bold", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-simple-medium-bold", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "house-bold", + "content": "", + "style": "outline", + "tags": "homes,buildings,places,locations", + "set_id": 1 + }, + { + "name": "house-line-bold", + "content": "", + "style": "outline", + "tags": "*updated*,homes,buildings,places,locations", + "set_id": 1 + }, + { + "name": "house-simple-bold", + "content": "", + "style": "outline", + "tags": "homes,buildings,places,locations", + "set_id": 1 + }, + { + "name": "hurricane-bold", + "content": "", + "style": "outline", + "tags": "*new*,meteorology,cyclone,storm,disaster,wind", + "set_id": 1 + }, + { + "name": "ice-cream-bold", + "content": "", + "style": "outline", + "tags": "food,dessert,cone", + "set_id": 1 + }, + { + "name": "identification-badge-bold", + "content": "", + "style": "outline", + "tags": "license,credentials,nametag,user,verification", + "set_id": 1 + }, + { + "name": "identification-card-bold", + "content": "", + "style": "outline", + "tags": "license,badge,credentials,nametag,user,verification", + "set_id": 1 + }, + { + "name": "image-bold", + "content": "", + "style": "outline", + "tags": "*updated*,pictures,photographs,photography,wallpapers,gallery,landscape", + "set_id": 1 + }, + { + "name": "image-broken-bold", + "content": "", + "style": "outline", + "tags": "*new*,pictures,photographs,photography,wallpapers,gallery,landscape,missing,error,404", + "set_id": 1 + }, + { + "name": "image-square-bold", + "content": "", + "style": "outline", + "tags": "pictures,photographs,photography,wallpapers,gallery,landscape", + "set_id": 1 + }, + { + "name": "images-bold", + "content": "", + "style": "outline", + "tags": "*updated*,pictures,photographs,photography,wallpapers,gallery,landscape,album", + "set_id": 1 + }, + { + "name": "images-square-bold", + "content": "", + "style": "outline", + "tags": "pictures,photographs,photography,wallpapers,gallery,landscape,album", + "set_id": 1 + }, + { + "name": "infinity-bold", + "content": "", + "style": "outline", + "tags": "infinite,lemniscate,figure-eight,mathematics,arithmetic,calculator,∞", + "set_id": 1 + }, + { + "name": "info-bold", + "content": "", + "style": "outline", + "tags": "information,help,support", + "set_id": 1 + }, + { + "name": "instagram-logo-bold", + "content": "", + "style": "outline", + "tags": "logos,social media,photography,camera", + "set_id": 1 + }, + { + "name": "intersect-bold", + "content": "", + "style": "outline", + "tags": "round,join,union,merge,combine,intersecting,intersection", + "set_id": 1 + }, + { + "name": "intersect-square-bold", + "content": "", + "style": "outline", + "tags": "venn-diagram,join,intersection", + "set_id": 1 + }, + { + "name": "intersect-three-bold", + "content": "", + "style": "outline", + "tags": "venn-diagram,join,intersection,gender,pronouns", + "set_id": 1 + }, + { + "name": "intersection-bold", + "content": "", + "style": "outline", + "tags": "*new*,∩,intersection,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "invoice-bold", + "content": "", + "style": "outline", + "tags": "*new*,receipt,expense,bill", + "set_id": 1 + }, + { + "name": "island-bold", + "content": "", + "style": "outline", + "tags": "*new*,geography,beach,ocean,tropical,palm,vacation,trip,locations,places", + "set_id": 1 + }, + { + "name": "jar-bold", + "content": "", + "style": "outline", + "tags": "*new*,mason jar,kitchen,pantry,canning,preserves,food,condiments", + "set_id": 1 + }, + { + "name": "jar-label-bold", + "content": "", + "style": "outline", + "tags": "*new*,mason jar,kitchen,pantry,canning,preserves,food,condiments", + "set_id": 1 + }, + { + "name": "jeep-bold", + "content": "", + "style": "outline", + "tags": "*updated*,vehicles,automobile,suv,cars,trucks,wrangler,off-road,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "joystick-bold", + "content": "", + "style": "outline", + "tags": "*new*,gaming,game controller,video games,arcade game,atari", + "set_id": 1 + }, + { + "name": "kanban-bold", + "content": "", + "style": "outline", + "tags": "scheduling,tasks,project management,process,lean,agile", + "set_id": 1 + }, + { + "name": "key-bold", + "content": "", + "style": "outline", + "tags": "padlock,security,secured,authentication,authenticated,login,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "key-return-bold", + "content": "", + "style": "outline", + "tags": "keyboard,enter", + "set_id": 1 + }, + { + "name": "keyboard-bold", + "content": "", + "style": "outline", + "tags": "typing,type,keys,input", + "set_id": 1 + }, + { + "name": "keyhole-bold", + "content": "", + "style": "outline", + "tags": "lock,security,secured,authentication,authenticated,login,locked,encrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "knife-bold", + "content": "", + "style": "outline", + "tags": "tools,food,meal,eating,restaurants,dining,utensils", + "set_id": 1 + }, + { + "name": "ladder-bold", + "content": "", + "style": "outline", + "tags": "stairs,steps,climbing", + "set_id": 1 + }, + { + "name": "ladder-simple-bold", + "content": "", + "style": "outline", + "tags": "stairs,steps,climbing", + "set_id": 1 + }, + { + "name": "lamp-bold", + "content": "", + "style": "outline", + "tags": "light,furniture,appliances", + "set_id": 1 + }, + { + "name": "lamp-pendant-bold", + "content": "", + "style": "outline", + "tags": "*new*,light,furniture,appliances", + "set_id": 1 + }, + { + "name": "laptop-bold", + "content": "", + "style": "outline", + "tags": "computer,notebook,pc,macbook", + "set_id": 1 + }, + { + "name": "lasso-bold", + "content": "", + "style": "outline", + "tags": "*new*,select,selection,loop,rope,cowboy", + "set_id": 1 + }, + { + "name": "lastfm-logo-bold", + "content": "", + "style": "outline", + "tags": "*new*,scrobble,music,social media", + "set_id": 1 + }, + { + "name": "layout-bold", + "content": "", + "style": "outline", + "tags": "wireframe,sidebar,ui,interface", + "set_id": 1 + }, + { + "name": "leaf-bold", + "content": "", + "style": "outline", + "tags": "plants,trees,branches,leaves,nodes,green,environmental", + "set_id": 1 + }, + { + "name": "lectern-bold", + "content": "", + "style": "outline", + "tags": "*new*,lecture,podium,pulpit,stand,speech,presentation,keynote", + "set_id": 1 + }, + { + "name": "lego-bold", + "content": "", + "style": "outline", + "tags": "*new*,toys,blocks,bricks", + "set_id": 1 + }, + { + "name": "lego-smiley-bold", + "content": "", + "style": "outline", + "tags": "*new*,face,emoji,toys,blocks,bricks", + "set_id": 1 + }, + { + "name": "less-than-bold", + "content": "", + "style": "outline", + "tags": "*new*,<,less than,lt,comparison,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "less-than-or-equal-bold", + "content": "", + "style": "outline", + "tags": "*new*,≤,less than or equal,lte,comparison,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "letter-circle-h-bold", + "content": "", + "style": "outline", + "tags": "*new*,hospital,letter,glyph,character", + "set_id": 1 + }, + { + "name": "letter-circle-p-bold", + "content": "", + "style": "outline", + "tags": "*new*,parking lot,valet,vehicles,letter,glyph,character", + "set_id": 1 + }, + { + "name": "letter-circle-v-bold", + "content": "", + "style": "outline", + "tags": "*new*,vegan,letter,glyph,character", + "set_id": 1 + }, + { + "name": "lifebuoy-bold", + "content": "", + "style": "outline", + "tags": "lifebelt,lifesaver,safety,help,support,nautical,boats,ships", + "set_id": 1 + }, + { + "name": "lightbulb-bold", + "content": "", + "style": "outline", + "tags": "flashlight,bulbs,lighting,led,energy,idea", + "set_id": 1 + }, + { + "name": "lightbulb-filament-bold", + "content": "", + "style": "outline", + "tags": "flashlight,bulbs,lighting,led,energy,idea", + "set_id": 1 + }, + { + "name": "lighthouse-bold", + "content": "", + "style": "outline", + "tags": "buildings,nautical,navigation,boats,ships,safety", + "set_id": 1 + }, + { + "name": "lightning-bold", + "content": "", + "style": "outline", + "tags": "meteorology,stormy,thunderstorm,thunderbolt,charged,charger,charging,power,electricity,flash", + "set_id": 1 + }, + { + "name": "lightning-a-bold", + "content": "", + "style": "outline", + "tags": "flash,auto", + "set_id": 1 + }, + { + "name": "lightning-slash-bold", + "content": "", + "style": "outline", + "tags": "thunderbolt,charged,charger,charging,power,electricity,disabled,flash", + "set_id": 1 + }, + { + "name": "line-segment-bold", + "content": "", + "style": "outline", + "tags": "shapes,drawing,path,pen,vector", + "set_id": 1 + }, + { + "name": "line-segments-bold", + "content": "", + "style": "outline", + "tags": "shapes,drawing,path,pen,vector", + "set_id": 1 + }, + { + "name": "line-vertical-bold", + "content": "", + "style": "outline", + "tags": "*new*,bar,pipe,|,divider. symbol", + "set_id": 1 + }, + { + "name": "link-bold", + "content": "", + "style": "outline", + "tags": "*updated*,anchor,hyperlink,hypertext,chains,chained", + "set_id": 1 + }, + { + "name": "link-break-bold", + "content": "", + "style": "outline", + "tags": "anchor,hyperlink,hypertext,chains,chained,errors,broken", + "set_id": 1 + }, + { + "name": "link-simple-bold", + "content": "", + "style": "outline", + "tags": "anchor,hyperlink,hypertext,chains,chained", + "set_id": 1 + }, + { + "name": "link-simple-break-bold", + "content": "", + "style": "outline", + "tags": "anchor,hyperlink,hypertext,chains,chained,errors,broken", + "set_id": 1 + }, + { + "name": "link-simple-horizontal-bold", + "content": "", + "style": "outline", + "tags": "anchor,hyperlink,hypertext,chains,chained", + "set_id": 1 + }, + { + "name": "link-simple-horizontal-break-bold", + "content": "", + "style": "outline", + "tags": "anchor,hyperlink,hypertext,chains,chained,errors,broken", + "set_id": 1 + }, + { + "name": "linkedin-logo-bold", + "content": "", + "style": "outline", + "tags": "logos,jobs,employment,social media", + "set_id": 1 + }, + { + "name": "linktree-logo-bold", + "content": "", + "style": "outline", + "tags": "*new*,social media,links", + "set_id": 1 + }, + { + "name": "linux-logo-bold", + "content": "", + "style": "outline", + "tags": "penguin,computer,animals", + "set_id": 1 + }, + { + "name": "list-bold", + "content": "", + "style": "outline", + "tags": "*updated*,hamburger menu,overflow menu,sidebar,3,ul,ol,unordered list,ordered list,checklist,lines", + "set_id": 1 + }, + { + "name": "list-bullets-bold", + "content": "", + "style": "outline", + "tags": "*updated*,ul,unordered list,bulleted list,checklist", + "set_id": 1 + }, + { + "name": "list-checks-bold", + "content": "", + "style": "outline", + "tags": "*updated*,checklist,todo", + "set_id": 1 + }, + { + "name": "list-dashes-bold", + "content": "", + "style": "outline", + "tags": "*updated*,ul,unordered list,dashed list,checklist", + "set_id": 1 + }, + { + "name": "list-heart-bold", + "content": "", + "style": "outline", + "tags": "*new*,favorites,wishlist,liked", + "set_id": 1 + }, + { + "name": "list-magnifying-glass-bold", + "content": "", + "style": "outline", + "tags": "search,find,locate,query,inspect", + "set_id": 1 + }, + { + "name": "list-numbers-bold", + "content": "", + "style": "outline", + "tags": "*updated*,ol,ordered list,numbered list,checklist", + "set_id": 1 + }, + { + "name": "list-plus-bold", + "content": "", + "style": "outline", + "tags": "*updated*,ul,ol,unordered list,ordered list,checklist,add,+", + "set_id": 1 + }, + { + "name": "list-star-bold", + "content": "", + "style": "outline", + "tags": "*new*,favorites,wishlist,liked", + "set_id": 1 + }, + { + "name": "lock-bold", + "content": "", + "style": "outline", + "tags": "padlock,security,secured,authentication,authenticated,login,locked,encrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "lock-key-bold", + "content": "", + "style": "outline", + "tags": "padlock,security,secured,authentication,authenticated,login,locked,encrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "lock-key-open-bold", + "content": "", + "style": "outline", + "tags": "padlock,security,unsecured,authentication,unauthenticated,login,unlocked,unencrypted,encryption,privacy", + "set_id": 1 + }, + { + "name": "lock-laminated-bold", + "content": "", + "style": "outline", + "tags": "padlock,security,secured,authentication,authenticated,login,locked,encrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "lock-laminated-open-bold", + "content": "", + "style": "outline", + "tags": "padlock,security,unsecured,authentication,unauthenticated,login,unlocked,unencrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "lock-open-bold", + "content": "", + "style": "outline", + "tags": "padlock,security,unsecured,authentication,unauthenticated,login,unlocked,unencrypted,encryption,privacy", + "set_id": 1 + }, + { + "name": "lock-simple-bold", + "content": "", + "style": "outline", + "tags": "padlock,security,secured,authentication,authenticated,login,locked,encrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "lock-simple-open-bold", + "content": "", + "style": "outline", + "tags": "padlock,security,unsecured,authentication,unauthenticated,login,unlocked,unencrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "lockers-bold", + "content": "", + "style": "outline", + "tags": "locker room,gym,storage", + "set_id": 1 + }, + { + "name": "log-bold", + "content": "", + "style": "outline", + "tags": "*new*,tree,stump,stick,branch", + "set_id": 1 + }, + { + "name": "magic-wand-bold", + "content": "", + "style": "outline", + "tags": "selection,wizard,games", + "set_id": 1 + }, + { + "name": "magnet-bold", + "content": "", + "style": "outline", + "tags": "magnetism,science,physics", + "set_id": 1 + }, + { + "name": "magnet-straight-bold", + "content": "", + "style": "outline", + "tags": "magnetism,science,physics", + "set_id": 1 + }, + { + "name": "magnifying-glass-bold", + "content": "", + "style": "outline", + "tags": "search,find,locate,query,inspect", + "set_id": 1 + }, + { + "name": "magnifying-glass-minus-bold", + "content": "", + "style": "outline", + "tags": "search,find,locate,query,inspect,zoom out,-", + "set_id": 1 + }, + { + "name": "magnifying-glass-plus-bold", + "content": "", + "style": "outline", + "tags": "search,find,locate,query,inspect,zoom in,+", + "set_id": 1 + }, + { + "name": "mailbox-bold", + "content": "", + "style": "outline", + "tags": "*new*,email,letters,messaging,post", + "set_id": 1 + }, + { + "name": "map-pin-bold", + "content": "", + "style": "outline", + "tags": "maps,places,markers,pins,locations,poi,point of interest", + "set_id": 1 + }, + { + "name": "map-pin-area-bold", + "content": "", + "style": "outline", + "tags": "*new*,maps,places,markers,pins,locations,poi,point of interest", + "set_id": 1 + }, + { + "name": "map-pin-line-bold", + "content": "", + "style": "outline", + "tags": "maps,places,markers,pins,locations,poi,point of interest", + "set_id": 1 + }, + { + "name": "map-pin-plus-bold", + "content": "", + "style": "outline", + "tags": "*new*,maps,places,markers,pins,locations,add,point of interest", + "set_id": 1 + }, + { + "name": "map-pin-simple-bold", + "content": "", + "style": "outline", + "tags": "*new*,maps,places,markers,pins,locations,poi,point of interest", + "set_id": 1 + }, + { + "name": "map-pin-simple-area-bold", + "content": "", + "style": "outline", + "tags": "*new*,maps,places,markers,pins,locations,poi,point of interest", + "set_id": 1 + }, + { + "name": "map-pin-simple-line-bold", + "content": "", + "style": "outline", + "tags": "*new*,maps,places,markers,pins,locations,poi,point of interest", + "set_id": 1 + }, + { + "name": "map-trifold-bold", + "content": "", + "style": "outline", + "tags": "maps,places,locations,cartography,geography", + "set_id": 1 + }, + { + "name": "markdown-logo-bold", + "content": "", + "style": "outline", + "tags": "*new*,markup,editor,.md", + "set_id": 1 + }, + { + "name": "marker-circle-bold", + "content": "", + "style": "outline", + "tags": "write,writing,editing,drawing", + "set_id": 1 + }, + { + "name": "martini-bold", + "content": "", + "style": "outline", + "tags": "glass,drinks,beverages,cocktails,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "mask-happy-bold", + "content": "", + "style": "outline", + "tags": "theater,costume,smile,smiling,thalia", + "set_id": 1 + }, + { + "name": "mask-sad-bold", + "content": "", + "style": "outline", + "tags": "theater,costume,cry,crying,melpomene", + "set_id": 1 + }, + { + "name": "mastodon-logo-bold", + "content": "", + "style": "outline", + "tags": "*new*,fediverse,social media,decentralized", + "set_id": 1 + }, + { + "name": "math-operations-bold", + "content": "", + "style": "outline", + "tags": "addition,sum,subtraction,difference,multiply,multiplication,product,divide,division,divisor,dividend,quotient,equals,equality,mathematics,arithmetic,calculator,+,-,±,×,÷,=", + "set_id": 1 + }, + { + "name": "matrix-logo-bold", + "content": "", + "style": "outline", + "tags": "*new*,matrix protocol,brands,logos", + "set_id": 1 + }, + { + "name": "medal-bold", + "content": "", + "style": "outline", + "tags": "ribbons,winning,victory,awards,rosette", + "set_id": 1 + }, + { + "name": "medal-military-bold", + "content": "", + "style": "outline", + "tags": "ribbons,winning,victory,awards,military", + "set_id": 1 + }, + { + "name": "medium-logo-bold", + "content": "", + "style": "outline", + "tags": "logos,reading,writing,news,social media", + "set_id": 1 + }, + { + "name": "megaphone-bold", + "content": "", + "style": "outline", + "tags": "bullhorn,announcements,loudspeaker,broadcast", + "set_id": 1 + }, + { + "name": "megaphone-simple-bold", + "content": "", + "style": "outline", + "tags": "bullhorn,announcements,loudspeaker,broadcast", + "set_id": 1 + }, + { + "name": "member-of-bold", + "content": "", + "style": "outline", + "tags": "*new*,∈,is element of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "memory-bold", + "content": "", + "style": "outline", + "tags": "*new*,ram,microchip,computer,circuit,electronics", + "set_id": 1 + }, + { + "name": "messenger-logo-bold", + "content": "", + "style": "outline", + "tags": "logos,facebook,social media", + "set_id": 1 + }, + { + "name": "meta-logo-bold", + "content": "", + "style": "outline", + "tags": "*updated*,facebook,logos,social media,logos", + "set_id": 1 + }, + { + "name": "meteor-bold", + "content": "", + "style": "outline", + "tags": "*new*,astronomy,asteroid,fireball", + "set_id": 1 + }, + { + "name": "metronome-bold", + "content": "", + "style": "outline", + "tags": "music,beat,tempo,bpm", + "set_id": 1 + }, + { + "name": "microphone-bold", + "content": "", + "style": "outline", + "tags": "audio,recording,music,sound,podcast,studio", + "set_id": 1 + }, + { + "name": "microphone-slash-bold", + "content": "", + "style": "outline", + "tags": "audio,recording,music,sound,podcast,studio,muted,disabled", + "set_id": 1 + }, + { + "name": "microphone-stage-bold", + "content": "", + "style": "outline", + "tags": "audio,recording,music,sound,performance,concert", + "set_id": 1 + }, + { + "name": "microscope-bold", + "content": "", + "style": "outline", + "tags": "*new*,science,biology,experiment,magnify", + "set_id": 1 + }, + { + "name": "microsoft-excel-logo-bold", + "content": "", + "style": "outline", + "tags": "tables,spreadsheets,tabular", + "set_id": 1 + }, + { + "name": "microsoft-outlook-logo-bold", + "content": "", + "style": "outline", + "tags": "email,logos", + "set_id": 1 + }, + { + "name": "microsoft-powerpoint-logo-bold", + "content": "", + "style": "outline", + "tags": "slides,slideshow,presentation", + "set_id": 1 + }, + { + "name": "microsoft-teams-logo-bold", + "content": "", + "style": "outline", + "tags": "chat,video conference", + "set_id": 1 + }, + { + "name": "microsoft-word-logo-bold", + "content": "", + "style": "outline", + "tags": "documents,word processor,doc,docx", + "set_id": 1 + }, + { + "name": "minus-bold", + "content": "", + "style": "outline", + "tags": "-,subtraction,difference,mathematics,arithmetic,calculator,line,horizontal,divider", + "set_id": 1 + }, + { + "name": "minus-circle-bold", + "content": "", + "style": "outline", + "tags": "-,subtraction,difference,mathematics,arithmetic,calculator,round", + "set_id": 1 + }, + { + "name": "minus-square-bold", + "content": "", + "style": "outline", + "tags": "-,subtraction,difference,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "money-bold", + "content": "", + "style": "outline", + "tags": "cash,dollars,paper bills,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "money-wavy-bold", + "content": "", + "style": "outline", + "tags": "*new*,cash,dollars,paper bills,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "monitor-bold", + "content": "", + "style": "outline", + "tags": "screen,television,tv,displays", + "set_id": 1 + }, + { + "name": "monitor-arrow-up-bold", + "content": "", + "style": "outline", + "tags": "*new*,screen,screencast,screenshare,upload,video,movie", + "set_id": 1 + }, + { + "name": "monitor-play-bold", + "content": "", + "style": "outline", + "tags": "screen,television,tv,displays,screencast,video,movie", + "set_id": 1 + }, + { + "name": "moon-bold", + "content": "", + "style": "outline", + "tags": "night,evening,clear,sleep,snooze,night mode,dark mode,astronomy,stargazing", + "set_id": 1 + }, + { + "name": "moon-stars-bold", + "content": "", + "style": "outline", + "tags": "night,evening,clear,sleep,snooze,night mode,dark mode,astronomy,stargazing,constellation", + "set_id": 1 + }, + { + "name": "moped-bold", + "content": "", + "style": "outline", + "tags": "scooter,vehicles,vespa,transportation,travel", + "set_id": 1 + }, + { + "name": "moped-front-bold", + "content": "", + "style": "outline", + "tags": "scooter,vehicles,vespa,transportation,travel", + "set_id": 1 + }, + { + "name": "mosque-bold", + "content": "", + "style": "outline", + "tags": "islam,muslim,religion,worship", + "set_id": 1 + }, + { + "name": "motorcycle-bold", + "content": "", + "style": "outline", + "tags": "vehicles,motorbike,transportation,travel", + "set_id": 1 + }, + { + "name": "mountains-bold", + "content": "", + "style": "outline", + "tags": "*updated*,hills,outdoors,terrain,geology,adventure", + "set_id": 1 + }, + { + "name": "mouse-bold", + "content": "", + "style": "outline", + "tags": "*updated*,clicks,input", + "set_id": 1 + }, + { + "name": "mouse-left-click-bold", + "content": "", + "style": "outline", + "tags": "*new*,clicks,input", + "set_id": 1 + }, + { + "name": "mouse-middle-click-bold", + "content": "", + "style": "outline", + "tags": "*new*,clicks,input", + "set_id": 1 + }, + { + "name": "mouse-right-click-bold", + "content": "", + "style": "outline", + "tags": "*new*,clicks,input", + "set_id": 1 + }, + { + "name": "mouse-scroll-bold", + "content": "", + "style": "outline", + "tags": "*new*,clicks,input", + "set_id": 1 + }, + { + "name": "mouse-simple-bold", + "content": "", + "style": "outline", + "tags": "clicks,input", + "set_id": 1 + }, + { + "name": "music-note-bold", + "content": "", + "style": "outline", + "tags": "songs,audio,playlist,albums", + "set_id": 1 + }, + { + "name": "music-note-simple-bold", + "content": "", + "style": "outline", + "tags": "songs,audio,playlist,albums", + "set_id": 1 + }, + { + "name": "music-notes-bold", + "content": "", + "style": "outline", + "tags": "songs,audio,playlist,albums", + "set_id": 1 + }, + { + "name": "music-notes-minus-bold", + "content": "", + "style": "outline", + "tags": "*new*,songs,audio,playlist,albums,remove,subtract", + "set_id": 1 + }, + { + "name": "music-notes-plus-bold", + "content": "", + "style": "outline", + "tags": "songs,audio,playlist,albums,add", + "set_id": 1 + }, + { + "name": "music-notes-simple-bold", + "content": "", + "style": "outline", + "tags": "songs,audio,playlist,albums", + "set_id": 1 + }, + { + "name": "navigation-arrow-bold", + "content": "", + "style": "outline", + "tags": "location,directions,compass,gps", + "set_id": 1 + }, + { + "name": "needle-bold", + "content": "", + "style": "outline", + "tags": "sewing,thread,awl,tailor", + "set_id": 1 + }, + { + "name": "network-bold", + "content": "", + "style": "outline", + "tags": "*new*,internet,ethernet,lan", + "set_id": 1 + }, + { + "name": "network-slash-bold", + "content": "", + "style": "outline", + "tags": "*new*,internet,ethernet,lan,error", + "set_id": 1 + }, + { + "name": "network-x-bold", + "content": "", + "style": "outline", + "tags": "*new*,internet,ethernet,lan,disabled", + "set_id": 1 + }, + { + "name": "newspaper-bold", + "content": "", + "style": "outline", + "tags": "reading,writing,journals,periodicals", + "set_id": 1 + }, + { + "name": "newspaper-clipping-bold", + "content": "", + "style": "outline", + "tags": "*updated*,reading,writing,journals,periodicals", + "set_id": 1 + }, + { + "name": "not-equals-bold", + "content": "", + "style": "outline", + "tags": "*new*,≠,equality,equivalent,equivalence,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "not-member-of-bold", + "content": "", + "style": "outline", + "tags": "*new*,∉,is not element of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "not-subset-of-bold", + "content": "", + "style": "outline", + "tags": "*new*,⊄,not subset of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "not-superset-of-bold", + "content": "", + "style": "outline", + "tags": "*new*,⊉,not superset of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "notches-bold", + "content": "", + "style": "outline", + "tags": "textarea,resize,drag handle,knurling", + "set_id": 1 + }, + { + "name": "note-bold", + "content": "", + "style": "outline", + "tags": "notes,note-taking,memorandum,post-it,reminders", + "set_id": 1 + }, + { + "name": "note-blank-bold", + "content": "", + "style": "outline", + "tags": "notes,note-taking,memorandum,post-it,reminders", + "set_id": 1 + }, + { + "name": "note-pencil-bold", + "content": "", + "style": "outline", + "tags": "notes,note-taking,memorandum,post-it,reminders", + "set_id": 1 + }, + { + "name": "notebook-bold", + "content": "", + "style": "outline", + "tags": "notes,note-taking,memorandum,journal,diary,logs,logbook", + "set_id": 1 + }, + { + "name": "notepad-bold", + "content": "", + "style": "outline", + "tags": "*updated*,logs,logbook,notes,note-taking,memorandum,journal,diary", + "set_id": 1 + }, + { + "name": "notification-bold", + "content": "", + "style": "outline", + "tags": "badge,pip", + "set_id": 1 + }, + { + "name": "notion-logo-bold", + "content": "", + "style": "outline", + "tags": "documentation,productivity,wiki,logos", + "set_id": 1 + }, + { + "name": "nuclear-plant-bold", + "content": "", + "style": "outline", + "tags": "*new*,renewable,energy,power,electricity", + "set_id": 1 + }, + { + "name": "number-circle-eight-bold", + "content": "", + "style": "outline", + "tags": "8,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-five-bold", + "content": "", + "style": "outline", + "tags": "5,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-four-bold", + "content": "", + "style": "outline", + "tags": "*updated*,4,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-nine-bold", + "content": "", + "style": "outline", + "tags": "9,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-one-bold", + "content": "", + "style": "outline", + "tags": "1,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-seven-bold", + "content": "", + "style": "outline", + "tags": "7,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-six-bold", + "content": "", + "style": "outline", + "tags": "6,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-three-bold", + "content": "", + "style": "outline", + "tags": "3,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-two-bold", + "content": "", + "style": "outline", + "tags": "2,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-zero-bold", + "content": "", + "style": "outline", + "tags": "0,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-eight-bold", + "content": "", + "style": "outline", + "tags": "8,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-five-bold", + "content": "", + "style": "outline", + "tags": "5,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-four-bold", + "content": "", + "style": "outline", + "tags": "*updated*,4,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-nine-bold", + "content": "", + "style": "outline", + "tags": "9,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-one-bold", + "content": "", + "style": "outline", + "tags": "1,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-seven-bold", + "content": "", + "style": "outline", + "tags": "7,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-six-bold", + "content": "", + "style": "outline", + "tags": "6,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-eight-bold", + "content": "", + "style": "outline", + "tags": "8,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-five-bold", + "content": "", + "style": "outline", + "tags": "5,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-four-bold", + "content": "", + "style": "outline", + "tags": "*updated*,4,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-nine-bold", + "content": "", + "style": "outline", + "tags": "9,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-one-bold", + "content": "", + "style": "outline", + "tags": "1,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-seven-bold", + "content": "", + "style": "outline", + "tags": "7,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-six-bold", + "content": "", + "style": "outline", + "tags": "6,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-three-bold", + "content": "", + "style": "outline", + "tags": "3,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-two-bold", + "content": "", + "style": "outline", + "tags": "2,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-zero-bold", + "content": "", + "style": "outline", + "tags": "0,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-three-bold", + "content": "", + "style": "outline", + "tags": "3,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-two-bold", + "content": "", + "style": "outline", + "tags": "2,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-zero-bold", + "content": "", + "style": "outline", + "tags": "0,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "numpad-bold", + "content": "", + "style": "outline", + "tags": "*new*,dialer,dialpad,call-center,telephone,landline,password,passcode", + "set_id": 1 + }, + { + "name": "nut-bold", + "content": "", + "style": "outline", + "tags": "bolts,screws,machinery,tools,hexagon", + "set_id": 1 + }, + { + "name": "ny-times-logo-bold", + "content": "", + "style": "outline", + "tags": "nyt,new york times,logos,reading,writing,news,newspaper", + "set_id": 1 + }, + { + "name": "octagon-bold", + "content": "", + "style": "outline", + "tags": "8,shapes,polygons", + "set_id": 1 + }, + { + "name": "office-chair-bold", + "content": "", + "style": "outline", + "tags": "furniture,seat", + "set_id": 1 + }, + { + "name": "onigiri-bold", + "content": "", + "style": "outline", + "tags": "*new*,rice ball,japanese,food,restaurant", + "set_id": 1 + }, + { + "name": "open-ai-logo-bold", + "content": "", + "style": "outline", + "tags": "*new*,artificial intelligence,ai,chatgpt,llm,logos", + "set_id": 1 + }, + { + "name": "option-bold", + "content": "", + "style": "outline", + "tags": "keyboard,shortcut,modifier", + "set_id": 1 + }, + { + "name": "orange-bold", + "content": "", + "style": "outline", + "tags": "*new*,food,fruit,juice,citrus,groceries,market", + "set_id": 1 + }, + { + "name": "orange-slice-bold", + "content": "", + "style": "outline", + "tags": "food,fruit,juice,citrus,groceries,market", + "set_id": 1 + }, + { + "name": "oven-bold", + "content": "", + "style": "outline", + "tags": "*new*,stove,stovetop,food,cooking,cuisine,kitchen", + "set_id": 1 + }, + { + "name": "package-bold", + "content": "", + "style": "outline", + "tags": "packages,boxes,delivery,mail,postal service,bundles,library,libraries,shipping", + "set_id": 1 + }, + { + "name": "paint-brush-bold", + "content": "", + "style": "outline", + "tags": "colors,color picker,arts", + "set_id": 1 + }, + { + "name": "paint-brush-broad-bold", + "content": "", + "style": "outline", + "tags": "fill,colors,color picker,arts", + "set_id": 1 + }, + { + "name": "paint-brush-household-bold", + "content": "", + "style": "outline", + "tags": "colors,color picker,arts", + "set_id": 1 + }, + { + "name": "paint-bucket-bold", + "content": "", + "style": "outline", + "tags": "*updated*,paintbucket,colors,color picker,fill,arts", + "set_id": 1 + }, + { + "name": "paint-roller-bold", + "content": "", + "style": "outline", + "tags": "colors,color picker,fill,arts,theme", + "set_id": 1 + }, + { + "name": "palette-bold", + "content": "", + "style": "outline", + "tags": "paint,colors,color picker,arts", + "set_id": 1 + }, + { + "name": "panorama-bold", + "content": "", + "style": "outline", + "tags": "*new*,image,picture,photography,landscape,360", + "set_id": 1 + }, + { + "name": "pants-bold", + "content": "", + "style": "outline", + "tags": "clothing,clothes,jeans", + "set_id": 1 + }, + { + "name": "paper-plane-bold", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,messages,messaging,toys,games", + "set_id": 1 + }, + { + "name": "paper-plane-right-bold", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,messages,messaging,toys,games", + "set_id": 1 + }, + { + "name": "paper-plane-tilt-bold", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,messages,messaging,toys,games", + "set_id": 1 + }, + { + "name": "paperclip-bold", + "content": "", + "style": "outline", + "tags": "attachments,mail,email,office", + "set_id": 1 + }, + { + "name": "paperclip-horizontal-bold", + "content": "", + "style": "outline", + "tags": "attachments,mail,email,office", + "set_id": 1 + }, + { + "name": "parachute-bold", + "content": "", + "style": "outline", + "tags": "skydiving,safety", + "set_id": 1 + }, + { + "name": "paragraph-bold", + "content": "", + "style": "outline", + "tags": "pilcrow", + "set_id": 1 + }, + { + "name": "parallelogram-bold", + "content": "", + "style": "outline", + "tags": "shapes,bandcamp,logos", + "set_id": 1 + }, + { + "name": "park-bold", + "content": "", + "style": "outline", + "tags": "bench,outdoors", + "set_id": 1 + }, + { + "name": "password-bold", + "content": "", + "style": "outline", + "tags": "security,secured,authentication,authenticated,login,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "path-bold", + "content": "", + "style": "outline", + "tags": "transit,travel,trail,gps,navigation,route,destination,vector", + "set_id": 1 + }, + { + "name": "patreon-logo-bold", + "content": "", + "style": "outline", + "tags": "*updated*,crowdfunding,logos", + "set_id": 1 + }, + { + "name": "pause-bold", + "content": "", + "style": "outline", + "tags": "music,audio,resume,start,stop", + "set_id": 1 + }, + { + "name": "pause-circle-bold", + "content": "", + "style": "outline", + "tags": "music,audio,resume,start,stop,round", + "set_id": 1 + }, + { + "name": "paw-print-bold", + "content": "", + "style": "outline", + "tags": "pets,pet store,pet shop,animals,cat,dog,veterinarian", + "set_id": 1 + }, + { + "name": "paypal-logo-bold", + "content": "", + "style": "outline", + "tags": "payments,paying,purchase,logos", + "set_id": 1 + }, + { + "name": "peace-bold", + "content": "", + "style": "outline", + "tags": "love,hippies,peace sign,symbols", + "set_id": 1 + }, + { + "name": "pen-bold", + "content": "", + "style": "outline", + "tags": "ink,write,writing,editing,sign,signature", + "set_id": 1 + }, + { + "name": "pen-nib-bold", + "content": "", + "style": "outline", + "tags": "ink,write,writing,editing,sign,signature,fountain pen,illustrator", + "set_id": 1 + }, + { + "name": "pen-nib-straight-bold", + "content": "", + "style": "outline", + "tags": "ink,write,writing,editing,sign,signature,fountain pen,illustrator", + "set_id": 1 + }, + { + "name": "pencil-bold", + "content": "", + "style": "outline", + "tags": "write,writing,editing,sign,signature", + "set_id": 1 + }, + { + "name": "pencil-circle-bold", + "content": "", + "style": "outline", + "tags": "write,writing,editing,sign,signature", + "set_id": 1 + }, + { + "name": "pencil-line-bold", + "content": "", + "style": "outline", + "tags": "write,writing,editing,sign,signature", + "set_id": 1 + }, + { + "name": "pencil-ruler-bold", + "content": "", + "style": "outline", + "tags": "*new*,drawing,drafting,construction,tools", + "set_id": 1 + }, + { + "name": "pencil-simple-bold", + "content": "", + "style": "outline", + "tags": "write,writing,editing,sign,signature", + "set_id": 1 + }, + { + "name": "pencil-simple-line-bold", + "content": "", + "style": "outline", + "tags": "write,writing,editing,sign,signature", + "set_id": 1 + }, + { + "name": "pencil-simple-slash-bold", + "content": "", + "style": "outline", + "tags": "read-only,write,writing,editing", + "set_id": 1 + }, + { + "name": "pencil-slash-bold", + "content": "", + "style": "outline", + "tags": "read-only,write,writing,editing", + "set_id": 1 + }, + { + "name": "pentagon-bold", + "content": "", + "style": "outline", + "tags": "*new*,shapes,polygons,5", + "set_id": 1 + }, + { + "name": "pentagram-bold", + "content": "", + "style": "outline", + "tags": "star,wicca,satan,satanism,religion,spirituality,evil,magic", + "set_id": 1 + }, + { + "name": "pepper-bold", + "content": "", + "style": "outline", + "tags": "food,spicy,chile,vegetable", + "set_id": 1 + }, + { + "name": "percent-bold", + "content": "", + "style": "outline", + "tags": "%,percentage,percentile,ratio,delta,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "person-bold", + "content": "", + "style": "outline", + "tags": "walking,human,woman,man,body,transit,transportation,travel,commuter,user", + "set_id": 1 + }, + { + "name": "person-arms-spread-bold", + "content": "", + "style": "outline", + "tags": "accessibility,vitruvian,stretch,sports", + "set_id": 1 + }, + { + "name": "person-simple-bold", + "content": "", + "style": "outline", + "tags": "pedestrian,walking,human,woman,man,body,transit,transportation,travel,commuter,user,exercise", + "set_id": 1 + }, + { + "name": "person-simple-bike-bold", + "content": "", + "style": "outline", + "tags": "pedestrian,biking,bicycle,human,woman,man,body,sports,exercise", + "set_id": 1 + }, + { + "name": "person-simple-circle-bold", + "content": "", + "style": "outline", + "tags": "*new*,human,accessibility,a11y,vitruvius,vitruvian", + "set_id": 1 + }, + { + "name": "person-simple-hike-bold", + "content": "", + "style": "outline", + "tags": "*new*,pedestrian,climbing,mountaineering,bouldering", + "set_id": 1 + }, + { + "name": "person-simple-run-bold", + "content": "", + "style": "outline", + "tags": "pedestrian,running,human,woman,man,body,transit,transportation,travel,commuter,user,exercise", + "set_id": 1 + }, + { + "name": "person-simple-ski-bold", + "content": "", + "style": "outline", + "tags": "*new*,sports,skiing,winter,mountain", + "set_id": 1 + }, + { + "name": "person-simple-snowboard-bold", + "content": "", + "style": "outline", + "tags": "*new*,sports,snowboarding,winter,mountain", + "set_id": 1 + }, + { + "name": "person-simple-swim-bold", + "content": "", + "style": "outline", + "tags": "*new*,pedestrian,swimming,human,woman,man,body,sports,exercise", + "set_id": 1 + }, + { + "name": "person-simple-tai-chi-bold", + "content": "", + "style": "outline", + "tags": "*new*,mindfulness,martial arts,meditation,sports,exercise,yoga", + "set_id": 1 + }, + { + "name": "person-simple-throw-bold", + "content": "", + "style": "outline", + "tags": "pedestrian,tennis,human,woman,man,body,sports,exercise", + "set_id": 1 + }, + { + "name": "person-simple-walk-bold", + "content": "", + "style": "outline", + "tags": "pedestrian,walking,human,woman,man,body,transit,transportation,travel,commuter,user,exercise", + "set_id": 1 + }, + { + "name": "perspective-bold", + "content": "", + "style": "outline", + "tags": "3d,skew,warp,trapezoid", + "set_id": 1 + }, + { + "name": "phone-bold", + "content": "", + "style": "outline", + "tags": "calls,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-call-bold", + "content": "", + "style": "outline", + "tags": "calls,calling,ringing,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-disconnect-bold", + "content": "", + "style": "outline", + "tags": "calls,hang up,disconnected,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-incoming-bold", + "content": "", + "style": "outline", + "tags": "calls,calling,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-list-bold", + "content": "", + "style": "outline", + "tags": "*new*,calls,call-center,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-outgoing-bold", + "content": "", + "style": "outline", + "tags": "calls,calling,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-pause-bold", + "content": "", + "style": "outline", + "tags": "*new*,calls,hold,call-center,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-plus-bold", + "content": "", + "style": "outline", + "tags": "calls,telephone,landline,talk,conference,add", + "set_id": 1 + }, + { + "name": "phone-slash-bold", + "content": "", + "style": "outline", + "tags": "calls,disabled,disconnected,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-transfer-bold", + "content": "", + "style": "outline", + "tags": "*new*,calls,call-center,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-x-bold", + "content": "", + "style": "outline", + "tags": "calls,missed,errors,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phosphor-logo-bold", + "content": "", + "style": "outline", + "tags": "logos", + "set_id": 1 + }, + { + "name": "pi-bold", + "content": "", + "style": "outline", + "tags": "π,symbol,mathematics,circle", + "set_id": 1 + }, + { + "name": "piano-keys-bold", + "content": "", + "style": "outline", + "tags": "music,instrument,keyboard", + "set_id": 1 + }, + { + "name": "picnic-table-bold", + "content": "", + "style": "outline", + "tags": "*new*,bench,park,outdoors", + "set_id": 1 + }, + { + "name": "picture-in-picture-bold", + "content": "", + "style": "outline", + "tags": "pip,pop-out,minimize,maximize", + "set_id": 1 + }, + { + "name": "piggy-bank-bold", + "content": "", + "style": "outline", + "tags": "savings,deposit,money,coins", + "set_id": 1 + }, + { + "name": "pill-bold", + "content": "", + "style": "outline", + "tags": "capsule,medicine,rx,pharmacy,pharmacist,pharmaceuticals,prescription,drugs", + "set_id": 1 + }, + { + "name": "ping-pong-bold", + "content": "", + "style": "outline", + "tags": "*new*,sports,paddle", + "set_id": 1 + }, + { + "name": "pint-glass-bold", + "content": "", + "style": "outline", + "tags": "*new*,water,beverage,drinks,beverages,food,dining", + "set_id": 1 + }, + { + "name": "pinterest-logo-bold", + "content": "", + "style": "outline", + "tags": "logos,vision board,mood board,social media", + "set_id": 1 + }, + { + "name": "pinwheel-bold", + "content": "", + "style": "outline", + "tags": "toys,whirligig", + "set_id": 1 + }, + { + "name": "pipe-bold", + "content": "", + "style": "outline", + "tags": "*new*,tube,plumber,plumbing,construction", + "set_id": 1 + }, + { + "name": "pipe-wrench-bold", + "content": "", + "style": "outline", + "tags": "*new*,plumber,plumbing,tools,construction", + "set_id": 1 + }, + { + "name": "pix-logo-bold", + "content": "", + "style": "outline", + "tags": "*new*,payments,paying,purchase,logos", + "set_id": 1 + }, + { + "name": "pizza-bold", + "content": "", + "style": "outline", + "tags": "fast food,party,places,locations,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "placeholder-bold", + "content": "", + "style": "outline", + "tags": "empty,notdef,tofu,rectangle slash,missing", + "set_id": 1 + }, + { + "name": "planet-bold", + "content": "", + "style": "outline", + "tags": "saturn,world,globe,astronomy,space", + "set_id": 1 + }, + { + "name": "plant-bold", + "content": "", + "style": "outline", + "tags": "sprout,vegan,farm,farming,garden,gardening", + "set_id": 1 + }, + { + "name": "play-bold", + "content": "", + "style": "outline", + "tags": "music,audio,resume,start", + "set_id": 1 + }, + { + "name": "play-circle-bold", + "content": "", + "style": "outline", + "tags": "music,audio,resume,start,round", + "set_id": 1 + }, + { + "name": "play-pause-bold", + "content": "", + "style": "outline", + "tags": "music,audio,resume,start,stop", + "set_id": 1 + }, + { + "name": "playlist-bold", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,queue", + "set_id": 1 + }, + { + "name": "plug-bold", + "content": "", + "style": "outline", + "tags": "outlet,socket,plugin,integration", + "set_id": 1 + }, + { + "name": "plug-charging-bold", + "content": "", + "style": "outline", + "tags": "outlet,socket,plugin,integration,charge,charging", + "set_id": 1 + }, + { + "name": "plugs-bold", + "content": "", + "style": "outline", + "tags": "outlet,socket,plugin,integration,disconnected", + "set_id": 1 + }, + { + "name": "plugs-connected-bold", + "content": "", + "style": "outline", + "tags": "*updated*,outlet,socket,plugin,integration", + "set_id": 1 + }, + { + "name": "plus-bold", + "content": "", + "style": "outline", + "tags": "addition,sum,mathematics,arithmetic,calculator,+", + "set_id": 1 + }, + { + "name": "plus-circle-bold", + "content": "", + "style": "outline", + "tags": "addition,sum,mathematics,arithmetic,calculator,round,+", + "set_id": 1 + }, + { + "name": "plus-minus-bold", + "content": "", + "style": "outline", + "tags": "plus or minus,plus/minus,add/subtract,addition,sum,subtraction,difference,mathematics,arithmetic,calculator,+,-,±", + "set_id": 1 + }, + { + "name": "plus-square-bold", + "content": "", + "style": "outline", + "tags": "addition,sum,mathematics,arithmetic,calculator,+", + "set_id": 1 + }, + { + "name": "poker-chip-bold", + "content": "", + "style": "outline", + "tags": "chips,tokens,cards,gambling,casino", + "set_id": 1 + }, + { + "name": "police-car-bold", + "content": "", + "style": "outline", + "tags": "*updated*,vehicles,cars,automobiles,law enforcement", + "set_id": 1 + }, + { + "name": "polygon-bold", + "content": "", + "style": "outline", + "tags": "shapes,drawing", + "set_id": 1 + }, + { + "name": "popcorn-bold", + "content": "", + "style": "outline", + "tags": "food,movies,theater", + "set_id": 1 + }, + { + "name": "popsicle-bold", + "content": "", + "style": "outline", + "tags": "*new*,ice cream,dessert,summer,food", + "set_id": 1 + }, + { + "name": "potted-plant-bold", + "content": "", + "style": "outline", + "tags": "sprout,vegan,garden,gardening", + "set_id": 1 + }, + { + "name": "power-bold", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,on,off,on/off,switch,power switch", + "set_id": 1 + }, + { + "name": "prescription-bold", + "content": "", + "style": "outline", + "tags": "rx,medicine,drugs,pharmacy,pharmacist,pharmaceuticals,doctor", + "set_id": 1 + }, + { + "name": "presentation-bold", + "content": "", + "style": "outline", + "tags": "whiteboard,flipchart,charts,statistics,analyze,analysis,meeting", + "set_id": 1 + }, + { + "name": "presentation-chart-bold", + "content": "", + "style": "outline", + "tags": "whiteboard,flipchart,graphs,graphing,charts,statistics,analyze,analysis,meeting", + "set_id": 1 + }, + { + "name": "printer-bold", + "content": "", + "style": "outline", + "tags": "printing", + "set_id": 1 + }, + { + "name": "prohibit-bold", + "content": "", + "style": "outline", + "tags": "forbidden,prohibited,cancelled,prevent,stop,do not enter", + "set_id": 1 + }, + { + "name": "prohibit-inset-bold", + "content": "", + "style": "outline", + "tags": "forbidden,prohibited,cancelled,prevent,stop,do not enter", + "set_id": 1 + }, + { + "name": "projector-screen-bold", + "content": "", + "style": "outline", + "tags": "projection,presentation,slideshow,movies,charts,statistics,analyze,analysis", + "set_id": 1 + }, + { + "name": "projector-screen-chart-bold", + "content": "", + "style": "outline", + "tags": "projection,presentation,slideshow,graphs,graphing,charts,statistics,analyze,analysis", + "set_id": 1 + }, + { + "name": "pulse-bold", + "content": "", + "style": "outline", + "tags": "activity,heartbeat,medical,ecg,ekg,vitals,monitor,medicine", + "set_id": 1 + }, + { + "name": "push-pin-bold", + "content": "", + "style": "outline", + "tags": "favorites,favorited,pushpin", + "set_id": 1 + }, + { + "name": "push-pin-simple-bold", + "content": "", + "style": "outline", + "tags": "favorites,favorited,pushpin", + "set_id": 1 + }, + { + "name": "push-pin-simple-slash-bold", + "content": "", + "style": "outline", + "tags": "favorites,favorited,pushpin,disabled", + "set_id": 1 + }, + { + "name": "push-pin-slash-bold", + "content": "", + "style": "outline", + "tags": "favorites,favorited,pushpin,disabled", + "set_id": 1 + }, + { + "name": "puzzle-piece-bold", + "content": "", + "style": "outline", + "tags": "board game,element,component,extension,plugin", + "set_id": 1 + }, + { + "name": "qr-code-bold", + "content": "", + "style": "outline", + "tags": "upc,barcode,products,shopping,scanner", + "set_id": 1 + }, + { + "name": "question-bold", + "content": "", + "style": "outline", + "tags": "information,help,support,questions", + "set_id": 1 + }, + { + "name": "question-mark-bold", + "content": "", + "style": "outline", + "tags": "*new*,?,information,help,support,questions,punctuation,symbol", + "set_id": 1 + }, + { + "name": "queue-bold", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,playlist", + "set_id": 1 + }, + { + "name": "quotes-bold", + "content": "", + "style": "outline", + "tags": "quoations,quotation marks,double-quotes,writing,books", + "set_id": 1 + }, + { + "name": "rabbit-bold", + "content": "", + "style": "outline", + "tags": "*new*,hare,fast,animal", + "set_id": 1 + }, + { + "name": "racquet-bold", + "content": "", + "style": "outline", + "tags": "*new*,sports,tennis,squash,pickleball", + "set_id": 1 + }, + { + "name": "radical-bold", + "content": "", + "style": "outline", + "tags": "√,radix,radicand,square root,squareroot,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "radio-bold", + "content": "", + "style": "outline", + "tags": "broadcast,fm,am,xm,transmitter,receiver", + "set_id": 1 + }, + { + "name": "radio-button-bold", + "content": "", + "style": "outline", + "tags": "input,checkbox,checked", + "set_id": 1 + }, + { + "name": "radioactive-bold", + "content": "", + "style": "outline", + "tags": "radiation,danger,warning,nuclear,atomic", + "set_id": 1 + }, + { + "name": "rainbow-bold", + "content": "", + "style": "outline", + "tags": "meteorology,rainstorm,arc,pride,lgbtq+,leprechaun", + "set_id": 1 + }, + { + "name": "rainbow-cloud-bold", + "content": "", + "style": "outline", + "tags": "meteorology,rainstorm,cloudy,partly cloudy,partly sunny,pride,lgbtq+,leprechaun", + "set_id": 1 + }, + { + "name": "ranking-bold", + "content": "", + "style": "outline", + "tags": "*new*,medal,rank,leaderboard,winner,sports", + "set_id": 1 + }, + { + "name": "read-cv-logo-bold", + "content": "", + "style": "outline", + "tags": "resume,jobs,logos", + "set_id": 1 + }, + { + "name": "receipt-bold", + "content": "", + "style": "outline", + "tags": "purchase,money,clipping,expense", + "set_id": 1 + }, + { + "name": "receipt-x-bold", + "content": "", + "style": "outline", + "tags": "purchase,money,clipping,expense,cancel", + "set_id": 1 + }, + { + "name": "record-bold", + "content": "", + "style": "outline", + "tags": "music,audio,recording,recorder,voice memo", + "set_id": 1 + }, + { + "name": "rectangle-bold", + "content": "", + "style": "outline", + "tags": "4,shapes,polygons,box", + "set_id": 1 + }, + { + "name": "rectangle-dashed-bold", + "content": "", + "style": "outline", + "tags": "*new*,4,shapes,polygons,box,missing", + "set_id": 1 + }, + { + "name": "recycle-bold", + "content": "", + "style": "outline", + "tags": "recycling,trash,environmental,green", + "set_id": 1 + }, + { + "name": "reddit-logo-bold", + "content": "", + "style": "outline", + "tags": "logos,subreddit,snoo,social media", + "set_id": 1 + }, + { + "name": "repeat-bold", + "content": "", + "style": "outline", + "tags": "music,audio,recycle", + "set_id": 1 + }, + { + "name": "repeat-once-bold", + "content": "", + "style": "outline", + "tags": "music,audio,recycle", + "set_id": 1 + }, + { + "name": "replit-logo-bold", + "content": "", + "style": "outline", + "tags": "*new*,logos,ide,editor,coding", + "set_id": 1 + }, + { + "name": "resize-bold", + "content": "", + "style": "outline", + "tags": "*new*,maximize,expand,grow", + "set_id": 1 + }, + { + "name": "rewind-bold", + "content": "", + "style": "outline", + "tags": "music,audio,seek,scrub,scan,skip,back,backwards,reverse", + "set_id": 1 + }, + { + "name": "rewind-circle-bold", + "content": "", + "style": "outline", + "tags": "music,audio,seek,scrub,scan,skip,back,backwards,reverse", + "set_id": 1 + }, + { + "name": "road-horizon-bold", + "content": "", + "style": "outline", + "tags": "trip,drive,road,travel,transportation,highway", + "set_id": 1 + }, + { + "name": "robot-bold", + "content": "", + "style": "outline", + "tags": "automaton,artificial intelligence,ai", + "set_id": 1 + }, + { + "name": "rocket-bold", + "content": "", + "style": "outline", + "tags": "spaceship,launch,deployment,rocketship", + "set_id": 1 + }, + { + "name": "rocket-launch-bold", + "content": "", + "style": "outline", + "tags": "*updated*,spaceship,flying,blastoff,deployment,rocketship", + "set_id": 1 + }, + { + "name": "rows-bold", + "content": "", + "style": "outline", + "tags": "2,shapes,polygons,box,stack,list,table,cards", + "set_id": 1 + }, + { + "name": "rows-plus-bottom-bold", + "content": "", + "style": "outline", + "tags": "*new*,2,shapes,polygons,box,stack,list,table,cards,prepend,insert", + "set_id": 1 + }, + { + "name": "rows-plus-top-bold", + "content": "", + "style": "outline", + "tags": "*new*,2,shapes,polygons,box,stack,list,table,cards,prepend,insert", + "set_id": 1 + }, + { + "name": "rss-bold", + "content": "", + "style": "outline", + "tags": "radio,broadcast,web feed,news,aggregator", + "set_id": 1 + }, + { + "name": "rss-simple-bold", + "content": "", + "style": "outline", + "tags": "radio,broadcast,web feed,news,aggregator", + "set_id": 1 + }, + { + "name": "rug-bold", + "content": "", + "style": "outline", + "tags": "*updated*,tapestry,carpet", + "set_id": 1 + }, + { + "name": "ruler-bold", + "content": "", + "style": "outline", + "tags": "measure,scale,distance", + "set_id": 1 + }, + { + "name": "sailboat-bold", + "content": "", + "style": "outline", + "tags": "*new*,sailing,ship,vehicles,transportation,sports,places,locations", + "set_id": 1 + }, + { + "name": "scales-bold", + "content": "", + "style": "outline", + "tags": "measure,balance,law,justice,government", + "set_id": 1 + }, + { + "name": "scan-bold", + "content": "", + "style": "outline", + "tags": "upc,barcode,products,shopping,scanner", + "set_id": 1 + }, + { + "name": "scan-smiley-bold", + "content": "", + "style": "outline", + "tags": "*new*,facial recognition,face unlock,scanner", + "set_id": 1 + }, + { + "name": "scissors-bold", + "content": "", + "style": "outline", + "tags": "*updated*,cut,snip,clipboard", + "set_id": 1 + }, + { + "name": "scooter-bold", + "content": "", + "style": "outline", + "tags": "vehicles,transportation,travel,transit", + "set_id": 1 + }, + { + "name": "screencast-bold", + "content": "", + "style": "outline", + "tags": "apple,airplay,screencasting,screen share,television,tv", + "set_id": 1 + }, + { + "name": "screwdriver-bold", + "content": "", + "style": "outline", + "tags": "*new*,tools,construction,flathead,drill", + "set_id": 1 + }, + { + "name": "scribble-bold", + "content": "", + "style": "outline", + "tags": "*new*,doodles,squiggle,drawing,sign,signature", + "set_id": 1 + }, + { + "name": "scribble-loop-bold", + "content": "", + "style": "outline", + "tags": "doodles,drawing,sign,signature", + "set_id": 1 + }, + { + "name": "scroll-bold", + "content": "", + "style": "outline", + "tags": "*updated*,parchment,paper,script,spell,fantasy", + "set_id": 1 + }, + { + "name": "seal-bold", + "content": "", + "style": "outline", + "tags": "badge,verified,verification,shapes,polygons,circle-wavy", + "set_id": 1 + }, + { + "name": "seal-check-bold", + "content": "", + "style": "outline", + "tags": "badge,verified,verification,shapes,polygons,circle-wavy", + "set_id": 1 + }, + { + "name": "seal-percent-bold", + "content": "", + "style": "outline", + "tags": "*new*,badge,discount,sale,shapes,polygons,circle-wavy", + "set_id": 1 + }, + { + "name": "seal-question-bold", + "content": "", + "style": "outline", + "tags": "badge,unverified,verification,shapes,polygons,circle-wavy", + "set_id": 1 + }, + { + "name": "seal-warning-bold", + "content": "", + "style": "outline", + "tags": "badge,unverified,verification,errors,shapes,polygons,circle-wavy", + "set_id": 1 + }, + { + "name": "seat-bold", + "content": "", + "style": "outline", + "tags": "*new*,chair,car seat,airplane seat,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "seatbelt-bold", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,safety", + "set_id": 1 + }, + { + "name": "security-camera-bold", + "content": "", + "style": "outline", + "tags": "*new*,cctv,surveillance,video,monitor,motion detector,safety", + "set_id": 1 + }, + { + "name": "selection-bold", + "content": "", + "style": "outline", + "tags": "marquis,select,square dashed", + "set_id": 1 + }, + { + "name": "selection-all-bold", + "content": "", + "style": "outline", + "tags": "marquis,select all", + "set_id": 1 + }, + { + "name": "selection-background-bold", + "content": "", + "style": "outline", + "tags": "marquis", + "set_id": 1 + }, + { + "name": "selection-foreground-bold", + "content": "", + "style": "outline", + "tags": "marquis", + "set_id": 1 + }, + { + "name": "selection-inverse-bold", + "content": "", + "style": "outline", + "tags": "marquis,invert", + "set_id": 1 + }, + { + "name": "selection-plus-bold", + "content": "", + "style": "outline", + "tags": "marquis,add", + "set_id": 1 + }, + { + "name": "selection-slash-bold", + "content": "", + "style": "outline", + "tags": "marquis,unselect", + "set_id": 1 + }, + { + "name": "shapes-bold", + "content": "", + "style": "outline", + "tags": "geometry,square,circle,triangle", + "set_id": 1 + }, + { + "name": "share-bold", + "content": "", + "style": "outline", + "tags": "send to,export,arrows", + "set_id": 1 + }, + { + "name": "share-fat-bold", + "content": "", + "style": "outline", + "tags": "export,send to", + "set_id": 1 + }, + { + "name": "share-network-bold", + "content": "", + "style": "outline", + "tags": "send to,export", + "set_id": 1 + }, + { + "name": "shield-bold", + "content": "", + "style": "outline", + "tags": "badge,security,secured,defense,defended,authentication,authenticated,guarded,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "shield-check-bold", + "content": "", + "style": "outline", + "tags": "badge,security,defense,authentication,authenticated,guarded,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "shield-checkered-bold", + "content": "", + "style": "outline", + "tags": "badge,security,defense,authentication,authenticated,guarded,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "shield-chevron-bold", + "content": "", + "style": "outline", + "tags": "badge,security,defense,authentication,authenticated,guarded,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "shield-plus-bold", + "content": "", + "style": "outline", + "tags": "badge,security,defense,authentication,authenticated,guarded,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "shield-slash-bold", + "content": "", + "style": "outline", + "tags": "badge,security,unsecured,defense,undefended,authentication,unauthenticated,unguarded,unlocked,unencrypted,encryption,disabled", + "set_id": 1 + }, + { + "name": "shield-star-bold", + "content": "", + "style": "outline", + "tags": "badge,security,defense,authentication,authenticated,guarded,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "shield-warning-bold", + "content": "", + "style": "outline", + "tags": "badge,security,unsecured,defense,undefended,authentication,unauthenticated,unguarded,unlocked,unencrypted,encryption,errors", + "set_id": 1 + }, + { + "name": "shipping-container-bold", + "content": "", + "style": "outline", + "tags": "*new*,shipping,transportation,places,locations", + "set_id": 1 + }, + { + "name": "shirt-folded-bold", + "content": "", + "style": "outline", + "tags": "clothes,clothing", + "set_id": 1 + }, + { + "name": "shooting-star-bold", + "content": "", + "style": "outline", + "tags": "wish,comet,meteor", + "set_id": 1 + }, + { + "name": "shopping-bag-bold", + "content": "", + "style": "outline", + "tags": "ecommerce,market,basket,cart,buying,checkout,places,locations", + "set_id": 1 + }, + { + "name": "shopping-bag-open-bold", + "content": "", + "style": "outline", + "tags": "ecommerce,market,basket,cart,buying,checkout,places,locations", + "set_id": 1 + }, + { + "name": "shopping-cart-bold", + "content": "", + "style": "outline", + "tags": "ecommerce,market,basket,buying,groceries,checkout,places,locations", + "set_id": 1 + }, + { + "name": "shopping-cart-simple-bold", + "content": "", + "style": "outline", + "tags": "ecommerce,market,basket,buying,groceries,checkout,places,locations", + "set_id": 1 + }, + { + "name": "shovel-bold", + "content": "", + "style": "outline", + "tags": "*new*,tools,digging,construction", + "set_id": 1 + }, + { + "name": "shower-bold", + "content": "", + "style": "outline", + "tags": "bath,bathtub,bathroom,faucet", + "set_id": 1 + }, + { + "name": "shrimp-bold", + "content": "", + "style": "outline", + "tags": "food,seafood,prawn", + "set_id": 1 + }, + { + "name": "shuffle-bold", + "content": "", + "style": "outline", + "tags": "music,audio,randomize,crossed", + "set_id": 1 + }, + { + "name": "shuffle-angular-bold", + "content": "", + "style": "outline", + "tags": "music,audio,randomize,crossed", + "set_id": 1 + }, + { + "name": "shuffle-simple-bold", + "content": "", + "style": "outline", + "tags": "music,audio,randomize,crossed", + "set_id": 1 + }, + { + "name": "sidebar-bold", + "content": "", + "style": "outline", + "tags": "left rail,wireframe,ui,interface", + "set_id": 1 + }, + { + "name": "sidebar-simple-bold", + "content": "", + "style": "outline", + "tags": "left rail,wireframe,ui,interface", + "set_id": 1 + }, + { + "name": "sigma-bold", + "content": "", + "style": "outline", + "tags": "σ,symbol,mathematics,sum", + "set_id": 1 + }, + { + "name": "sign-in-bold", + "content": "", + "style": "outline", + "tags": "*updated*,signin,login,log in,enter", + "set_id": 1 + }, + { + "name": "sign-out-bold", + "content": "", + "style": "outline", + "tags": "*updated*,signout,logout,log out,exit", + "set_id": 1 + }, + { + "name": "signature-bold", + "content": "", + "style": "outline", + "tags": "*updated*,sign,autograph,verify", + "set_id": 1 + }, + { + "name": "signpost-bold", + "content": "", + "style": "outline", + "tags": "direction,traffic,road sign,transit,transportation", + "set_id": 1 + }, + { + "name": "sim-card-bold", + "content": "", + "style": "outline", + "tags": "*updated*,cellular,cellphone,mobile", + "set_id": 1 + }, + { + "name": "siren-bold", + "content": "", + "style": "outline", + "tags": "alarm,police,lights,warning", + "set_id": 1 + }, + { + "name": "sketch-logo-bold", + "content": "", + "style": "outline", + "tags": "drawing,art,illustration,ui,interface,prototype,prototyping,gemstone,diamond", + "set_id": 1 + }, + { + "name": "skip-back-bold", + "content": "", + "style": "outline", + "tags": "music,audio,seek,scrub,scan,back,backwards,reverse,previous", + "set_id": 1 + }, + { + "name": "skip-back-circle-bold", + "content": "", + "style": "outline", + "tags": "music,audio,seek,scrub,scan,back,backwards,reverse,previous", + "set_id": 1 + }, + { + "name": "skip-forward-bold", + "content": "", + "style": "outline", + "tags": "music,audio,seek,scrub,scan,ahead,next", + "set_id": 1 + }, + { + "name": "skip-forward-circle-bold", + "content": "", + "style": "outline", + "tags": "music,audio,seek,scrub,scan,ahead,next", + "set_id": 1 + }, + { + "name": "skull-bold", + "content": "", + "style": "outline", + "tags": "death,dead,kill", + "set_id": 1 + }, + { + "name": "skype-logo-bold", + "content": "", + "style": "outline", + "tags": "*new*,chat,video conference", + "set_id": 1 + }, + { + "name": "slack-logo-bold", + "content": "", + "style": "outline", + "tags": "logos,messaging", + "set_id": 1 + }, + { + "name": "sliders-bold", + "content": "", + "style": "outline", + "tags": "music,audio,faders,filters,equalizer,volume,settings,preferences", + "set_id": 1 + }, + { + "name": "sliders-horizontal-bold", + "content": "", + "style": "outline", + "tags": "music,audio,faders,filters,equalizer,volume,settings,preferences", + "set_id": 1 + }, + { + "name": "slideshow-bold", + "content": "", + "style": "outline", + "tags": "pictures,images,photography,gallery,carousel", + "set_id": 1 + }, + { + "name": "smiley-bold", + "content": "", + "style": "outline", + "tags": "face,emoji,happy,grinning,smiling", + "set_id": 1 + }, + { + "name": "smiley-angry-bold", + "content": "", + "style": "outline", + "tags": "face,emoji,mad,frown", + "set_id": 1 + }, + { + "name": "smiley-blank-bold", + "content": "", + "style": "outline", + "tags": "face,emoji,unimpressed,no face", + "set_id": 1 + }, + { + "name": "smiley-meh-bold", + "content": "", + "style": "outline", + "tags": "face,emoji,unimpressed,neutral", + "set_id": 1 + }, + { + "name": "smiley-melting-bold", + "content": "", + "style": "outline", + "tags": "*new*,face,emoji,embarrassment,sarcasm,shame,hot,heat", + "set_id": 1 + }, + { + "name": "smiley-nervous-bold", + "content": "", + "style": "outline", + "tags": "*updated*,face,emoji,anxious,uncomfortable,uneasy,queasy,sick,ill", + "set_id": 1 + }, + { + "name": "smiley-sad-bold", + "content": "", + "style": "outline", + "tags": "face,emoji,unhappy,frowning", + "set_id": 1 + }, + { + "name": "smiley-sticker-bold", + "content": "", + "style": "outline", + "tags": "face,emoji,happy,grinning,smiling", + "set_id": 1 + }, + { + "name": "smiley-wink-bold", + "content": "", + "style": "outline", + "tags": "face,emoji,winking,flirting,cute", + "set_id": 1 + }, + { + "name": "smiley-x-eyes-bold", + "content": "", + "style": "outline", + "tags": "face,emoji,dead,killed,unconscious", + "set_id": 1 + }, + { + "name": "snapchat-logo-bold", + "content": "", + "style": "outline", + "tags": "logos,messaging,social media", + "set_id": 1 + }, + { + "name": "sneaker-bold", + "content": "", + "style": "outline", + "tags": "clothes,clothing,shoes,trainers,sports", + "set_id": 1 + }, + { + "name": "sneaker-move-bold", + "content": "", + "style": "outline", + "tags": "*updated*,clothes,clothing,shoes,trainers,sports", + "set_id": 1 + }, + { + "name": "snowflake-bold", + "content": "", + "style": "outline", + "tags": "meteorology,snowy,snowing,snowstorm", + "set_id": 1 + }, + { + "name": "soccer-ball-bold", + "content": "", + "style": "outline", + "tags": "*updated*,sports,football,mls", + "set_id": 1 + }, + { + "name": "sock-bold", + "content": "", + "style": "outline", + "tags": "*new*,clothes,clothing", + "set_id": 1 + }, + { + "name": "solar-panel-bold", + "content": "", + "style": "outline", + "tags": "*new*,renewable,energy,power,electricity", + "set_id": 1 + }, + { + "name": "solar-roof-bold", + "content": "", + "style": "outline", + "tags": "*new*,renewable,energy,power,electricity", + "set_id": 1 + }, + { + "name": "sort-ascending-bold", + "content": "", + "style": "outline", + "tags": "*updated*,sorted,sorting,increasing,a to z,arrows,list", + "set_id": 1 + }, + { + "name": "sort-descending-bold", + "content": "", + "style": "outline", + "tags": "*updated*,sorted,sorting,decreasing,z to a,arrows,list", + "set_id": 1 + }, + { + "name": "soundcloud-logo-bold", + "content": "", + "style": "outline", + "tags": "music,social media,logos", + "set_id": 1 + }, + { + "name": "spade-bold", + "content": "", + "style": "outline", + "tags": "spades,suits,cards,gambling,casino,gaming", + "set_id": 1 + }, + { + "name": "sparkle-bold", + "content": "", + "style": "outline", + "tags": "star,rate,ratings,favorites,favorited", + "set_id": 1 + }, + { + "name": "speaker-hifi-bold", + "content": "", + "style": "outline", + "tags": "music,audio,sound,stereo", + "set_id": 1 + }, + { + "name": "speaker-high-bold", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,volume,sound", + "set_id": 1 + }, + { + "name": "speaker-low-bold", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,volume,sound", + "set_id": 1 + }, + { + "name": "speaker-none-bold", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,muted,volume,sound", + "set_id": 1 + }, + { + "name": "speaker-simple-high-bold", + "content": "", + "style": "outline", + "tags": "music,audio,volume,sound", + "set_id": 1 + }, + { + "name": "speaker-simple-low-bold", + "content": "", + "style": "outline", + "tags": "music,audio,volume,sound", + "set_id": 1 + }, + { + "name": "speaker-simple-none-bold", + "content": "", + "style": "outline", + "tags": "music,audio,muted,volume,sound", + "set_id": 1 + }, + { + "name": "speaker-simple-slash-bold", + "content": "", + "style": "outline", + "tags": "music,audio,muted,volume,sound,disabled", + "set_id": 1 + }, + { + "name": "speaker-simple-x-bold", + "content": "", + "style": "outline", + "tags": "music,audio,muted,volume,sound,disabled,errors", + "set_id": 1 + }, + { + "name": "speaker-slash-bold", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,muted,volume,sound,disabled", + "set_id": 1 + }, + { + "name": "speaker-x-bold", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,muted,volume,sound,disabled,errors", + "set_id": 1 + }, + { + "name": "speedometer-bold", + "content": "", + "style": "outline", + "tags": "*new*,gauge,dashboard,meter,speed,odometer,performance", + "set_id": 1 + }, + { + "name": "sphere-bold", + "content": "", + "style": "outline", + "tags": "*new*,circle,ball,3d,mesh,cad,model", + "set_id": 1 + }, + { + "name": "spinner-bold", + "content": "", + "style": "outline", + "tags": "loading,loader,waiting,progress", + "set_id": 1 + }, + { + "name": "spinner-ball-bold", + "content": "", + "style": "outline", + "tags": "*new*,loading,loader,waiting,progress", + "set_id": 1 + }, + { + "name": "spinner-gap-bold", + "content": "", + "style": "outline", + "tags": "loading,loader,waiting,progress", + "set_id": 1 + }, + { + "name": "spiral-bold", + "content": "", + "style": "outline", + "tags": "*updated*,spin,rotate,dizzy", + "set_id": 1 + }, + { + "name": "split-horizontal-bold", + "content": "", + "style": "outline", + "tags": "resize,columns", + "set_id": 1 + }, + { + "name": "split-vertical-bold", + "content": "", + "style": "outline", + "tags": "resize,rows", + "set_id": 1 + }, + { + "name": "spotify-logo-bold", + "content": "", + "style": "outline", + "tags": "music,player,streaming", + "set_id": 1 + }, + { + "name": "spray-bottle-bold", + "content": "", + "style": "outline", + "tags": "*new*,cleaner,cleaning", + "set_id": 1 + }, + { + "name": "square-bold", + "content": "", + "style": "outline", + "tags": "4,shapes,polygons,box", + "set_id": 1 + }, + { + "name": "square-half-bold", + "content": "", + "style": "outline", + "tags": "4,shapes,polygons,box,columns,sidebar,split vertical", + "set_id": 1 + }, + { + "name": "square-half-bottom-bold", + "content": "", + "style": "outline", + "tags": "4,shapes,polygons,box,columns,sidebar,split vertical", + "set_id": 1 + }, + { + "name": "square-logo-bold", + "content": "", + "style": "outline", + "tags": "squareup,payment", + "set_id": 1 + }, + { + "name": "square-split-horizontal-bold", + "content": "", + "style": "outline", + "tags": "shapes,polygons,columns", + "set_id": 1 + }, + { + "name": "square-split-vertical-bold", + "content": "", + "style": "outline", + "tags": "shapes,polygons,rows", + "set_id": 1 + }, + { + "name": "squares-four-bold", + "content": "", + "style": "outline", + "tags": "4,shapes,polygons,apps,applications,grid,table,microsoft,logos", + "set_id": 1 + }, + { + "name": "stack-bold", + "content": "", + "style": "outline", + "tags": "cards,layers", + "set_id": 1 + }, + { + "name": "stack-minus-bold", + "content": "", + "style": "outline", + "tags": "*new*,cards,layers,remove,delete", + "set_id": 1 + }, + { + "name": "stack-overflow-logo-bold", + "content": "", + "style": "outline", + "tags": "logos,code", + "set_id": 1 + }, + { + "name": "stack-plus-bold", + "content": "", + "style": "outline", + "tags": "*new*,cards,layers,add", + "set_id": 1 + }, + { + "name": "stack-simple-bold", + "content": "", + "style": "outline", + "tags": "cards,layers", + "set_id": 1 + }, + { + "name": "stairs-bold", + "content": "", + "style": "outline", + "tags": "staircase,steps,escalator,exit,signs", + "set_id": 1 + }, + { + "name": "stamp-bold", + "content": "", + "style": "outline", + "tags": "clone,seal,official", + "set_id": 1 + }, + { + "name": "standard-definition-bold", + "content": "", + "style": "outline", + "tags": "*new*,sd,resolution,video", + "set_id": 1 + }, + { + "name": "star-bold", + "content": "", + "style": "outline", + "tags": "rate,ratings,favorites,favorited", + "set_id": 1 + }, + { + "name": "star-and-crescent-bold", + "content": "", + "style": "outline", + "tags": "islam,muslim,moon,religion,worship,symbol", + "set_id": 1 + }, + { + "name": "star-four-bold", + "content": "", + "style": "outline", + "tags": "rate,ratings,favorites,favorited", + "set_id": 1 + }, + { + "name": "star-half-bold", + "content": "", + "style": "outline", + "tags": "rate,ratings", + "set_id": 1 + }, + { + "name": "star-of-david-bold", + "content": "", + "style": "outline", + "tags": "judaism,jewish,hexagram,religion,worship,symbol", + "set_id": 1 + }, + { + "name": "steam-logo-bold", + "content": "", + "style": "outline", + "tags": "*new*,gaming,games", + "set_id": 1 + }, + { + "name": "steering-wheel-bold", + "content": "", + "style": "outline", + "tags": "cars,vehicles,automobiles,driving", + "set_id": 1 + }, + { + "name": "steps-bold", + "content": "", + "style": "outline", + "tags": "stairs,staircase,exit,signs", + "set_id": 1 + }, + { + "name": "stethoscope-bold", + "content": "", + "style": "outline", + "tags": "hospital,medical,medicine,injury,safety,emergency,doctor,heart", + "set_id": 1 + }, + { + "name": "sticker-bold", + "content": "", + "style": "outline", + "tags": "stickers,sticker pack,labels", + "set_id": 1 + }, + { + "name": "stool-bold", + "content": "", + "style": "outline", + "tags": "chair,seat,furniture", + "set_id": 1 + }, + { + "name": "stop-bold", + "content": "", + "style": "outline", + "tags": "music,audio", + "set_id": 1 + }, + { + "name": "stop-circle-bold", + "content": "", + "style": "outline", + "tags": "music,audio,round", + "set_id": 1 + }, + { + "name": "storefront-bold", + "content": "", + "style": "outline", + "tags": "shops,shopping,markets,stores,buildings,places,locations", + "set_id": 1 + }, + { + "name": "strategy-bold", + "content": "", + "style": "outline", + "tags": "sports,strategem,plan,tic-tac-toe", + "set_id": 1 + }, + { + "name": "stripe-logo-bold", + "content": "", + "style": "outline", + "tags": "payment", + "set_id": 1 + }, + { + "name": "student-bold", + "content": "", + "style": "outline", + "tags": "pupil,graduate,classroom,teacher,education,school,college,university", + "set_id": 1 + }, + { + "name": "subset-of-bold", + "content": "", + "style": "outline", + "tags": "*new*,⊆,subset of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "subset-proper-of-bold", + "content": "", + "style": "outline", + "tags": "*new*,⊂,proper subset of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "subtitles-bold", + "content": "", + "style": "outline", + "tags": "subtitles,television,tv,transcribed,transcription,accessibility,a11y", + "set_id": 1 + }, + { + "name": "subtitles-slash-bold", + "content": "", + "style": "outline", + "tags": "*new*,subtitles,television,tv,transcribed,transcription,accessibility,a11y,disabled", + "set_id": 1 + }, + { + "name": "subtract-bold", + "content": "", + "style": "outline", + "tags": "boolean,intersection,combine,split,merge,union", + "set_id": 1 + }, + { + "name": "subtract-square-bold", + "content": "", + "style": "outline", + "tags": "boolean,intersection,combine,split,merge,union", + "set_id": 1 + }, + { + "name": "subway-bold", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,underground,train,tunnel,metro,light rail,public transit,transportation,commuter,traveling,places,locations", + "set_id": 1 + }, + { + "name": "suitcase-bold", + "content": "", + "style": "outline", + "tags": "briefcase,valise,baggage,folders,portfolio", + "set_id": 1 + }, + { + "name": "suitcase-rolling-bold", + "content": "", + "style": "outline", + "tags": "suitcase,luggage,travel,transportation", + "set_id": 1 + }, + { + "name": "suitcase-simple-bold", + "content": "", + "style": "outline", + "tags": "briefcase,valise,baggage,folders,portfolio", + "set_id": 1 + }, + { + "name": "sun-bold", + "content": "", + "style": "outline", + "tags": "day,daytime,daylight,clear,sunny,sunshine,light mode,brightness,lighten,brighten", + "set_id": 1 + }, + { + "name": "sun-dim-bold", + "content": "", + "style": "outline", + "tags": "day,daytime,daylight,clear,sunny,sunshine,light mode,brightness,darken", + "set_id": 1 + }, + { + "name": "sun-horizon-bold", + "content": "", + "style": "outline", + "tags": "day,daytime,daylight,clear,sunny,sunshine,sunrise,sunset", + "set_id": 1 + }, + { + "name": "sunglasses-bold", + "content": "", + "style": "outline", + "tags": "vision,sun,spectacles", + "set_id": 1 + }, + { + "name": "superset-of-bold", + "content": "", + "style": "outline", + "tags": "*new*,⊇,superset of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "superset-proper-of-bold", + "content": "", + "style": "outline", + "tags": "*new*,⊃,proper superset of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "swap-bold", + "content": "", + "style": "outline", + "tags": "layers,replace,exchange,reverse", + "set_id": 1 + }, + { + "name": "swatches-bold", + "content": "", + "style": "outline", + "tags": "colors,color picker,samples,pantone", + "set_id": 1 + }, + { + "name": "swimming-pool-bold", + "content": "", + "style": "outline", + "tags": "swim,sports,exercise,olympics,aquatics", + "set_id": 1 + }, + { + "name": "sword-bold", + "content": "", + "style": "outline", + "tags": "weapon,knife,dagger,gladius,video games,rpg,gaming,war", + "set_id": 1 + }, + { + "name": "synagogue-bold", + "content": "", + "style": "outline", + "tags": "jewish,judaism,temple,religion,worship", + "set_id": 1 + }, + { + "name": "syringe-bold", + "content": "", + "style": "outline", + "tags": "needle,hypodermic,vaccine,medicine,doctor,shot,hospital", + "set_id": 1 + }, + { + "name": "t-shirt-bold", + "content": "", + "style": "outline", + "tags": "clothes,clothing", + "set_id": 1 + }, + { + "name": "table-bold", + "content": "", + "style": "outline", + "tags": "tables,tabular,speadsheets,excel,grid,form", + "set_id": 1 + }, + { + "name": "tabs-bold", + "content": "", + "style": "outline", + "tags": "*updated*,browser,window,folders,files", + "set_id": 1 + }, + { + "name": "tag-bold", + "content": "", + "style": "outline", + "tags": "tags,hashtag,labels,sale,sell,price,discount", + "set_id": 1 + }, + { + "name": "tag-chevron-bold", + "content": "", + "style": "outline", + "tags": "tags,hashtag,labels,sale", + "set_id": 1 + }, + { + "name": "tag-simple-bold", + "content": "", + "style": "outline", + "tags": "tags,hashtag,labels,sale,sell,price,discount", + "set_id": 1 + }, + { + "name": "target-bold", + "content": "", + "style": "outline", + "tags": "bullseye,radar,archery,accuracy,precision", + "set_id": 1 + }, + { + "name": "taxi-bold", + "content": "", + "style": "outline", + "tags": "*updated*,vehicles,cars,automobiles,livery,limousine,uber", + "set_id": 1 + }, + { + "name": "tea-bag-bold", + "content": "", + "style": "outline", + "tags": "*new*,drinks,beverages,sachet,caffeine,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "telegram-logo-bold", + "content": "", + "style": "outline", + "tags": "logos,messages,messaging", + "set_id": 1 + }, + { + "name": "television-bold", + "content": "", + "style": "outline", + "tags": "screen,tv,displays", + "set_id": 1 + }, + { + "name": "television-simple-bold", + "content": "", + "style": "outline", + "tags": "*updated*,screen,tv,displays", + "set_id": 1 + }, + { + "name": "tennis-ball-bold", + "content": "", + "style": "outline", + "tags": "sports,mlb", + "set_id": 1 + }, + { + "name": "tent-bold", + "content": "", + "style": "outline", + "tags": "camping,outdoors,tarp", + "set_id": 1 + }, + { + "name": "terminal-bold", + "content": "", + "style": "outline", + "tags": "command line,cli,bash,shell,caret,console", + "set_id": 1 + }, + { + "name": "terminal-window-bold", + "content": "", + "style": "outline", + "tags": "command line,cli,bash,shell,caret,console", + "set_id": 1 + }, + { + "name": "test-tube-bold", + "content": "", + "style": "outline", + "tags": "science,chemistry,experiment,vial", + "set_id": 1 + }, + { + "name": "text-a-underline-bold", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font,underscore,emphasis", + "set_id": 1 + }, + { + "name": "text-aa-bold", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font", + "set_id": 1 + }, + { + "name": "text-align-center-bold", + "content": "", + "style": "outline", + "tags": "*updated*,typography,print,font,alignment,centered", + "set_id": 1 + }, + { + "name": "text-align-justify-bold", + "content": "", + "style": "outline", + "tags": "*updated*,typography,print,font,alignment,justified", + "set_id": 1 + }, + { + "name": "text-align-left-bold", + "content": "", + "style": "outline", + "tags": "*updated*,typography,print,font,alignment,flush left", + "set_id": 1 + }, + { + "name": "text-align-right-bold", + "content": "", + "style": "outline", + "tags": "*updated*,typography,print,font,alignment,flush right", + "set_id": 1 + }, + { + "name": "text-b-bold", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font,bold,boldface,emphasis", + "set_id": 1 + }, + { + "name": "text-columns-bold", + "content": "", + "style": "outline", + "tags": "*updated*,typography,print,font,alignment,article", + "set_id": 1 + }, + { + "name": "text-h-bold", + "content": "", + "style": "outline", + "tags": "heading,typography,print", + "set_id": 1 + }, + { + "name": "text-h-five-bold", + "content": "", + "style": "outline", + "tags": "heading,h5,typography,print", + "set_id": 1 + }, + { + "name": "text-h-four-bold", + "content": "", + "style": "outline", + "tags": "*updated*,heading,h4,typography,print", + "set_id": 1 + }, + { + "name": "text-h-one-bold", + "content": "", + "style": "outline", + "tags": "heading,h1,typography,print", + "set_id": 1 + }, + { + "name": "text-h-six-bold", + "content": "", + "style": "outline", + "tags": "heading,h6,typography,print", + "set_id": 1 + }, + { + "name": "text-h-three-bold", + "content": "", + "style": "outline", + "tags": "heading,h3,typography,print", + "set_id": 1 + }, + { + "name": "text-h-two-bold", + "content": "", + "style": "outline", + "tags": "heading,h2,typography,print", + "set_id": 1 + }, + { + "name": "text-indent-bold", + "content": "", + "style": "outline", + "tags": "*updated*,alignment,tab,menu", + "set_id": 1 + }, + { + "name": "text-italic-bold", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font,slant,oblique,stress,emphasis,calligraphy", + "set_id": 1 + }, + { + "name": "text-outdent-bold", + "content": "", + "style": "outline", + "tags": "*updated*,alignment,tab,unindent,dedent,menu", + "set_id": 1 + }, + { + "name": "text-strikethrough-bold", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font,struck,remove,delete,change", + "set_id": 1 + }, + { + "name": "text-subscript-bold", + "content": "", + "style": "outline", + "tags": "*new*,typography,font,formatting,mathematics,power,exponent,calculator", + "set_id": 1 + }, + { + "name": "text-superscript-bold", + "content": "", + "style": "outline", + "tags": "*new*,typography,font,formatting,mathematics,calculator", + "set_id": 1 + }, + { + "name": "text-t-bold", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font", + "set_id": 1 + }, + { + "name": "text-t-slash-bold", + "content": "", + "style": "outline", + "tags": "*new*,typography,typeface,print,font,formatting,clear", + "set_id": 1 + }, + { + "name": "text-underline-bold", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font,underscore,emphasis", + "set_id": 1 + }, + { + "name": "textbox-bold", + "content": "", + "style": "outline", + "tags": "input,cursor,field", + "set_id": 1 + }, + { + "name": "thermometer-bold", + "content": "", + "style": "outline", + "tags": "meteorology,temperature,degrees,°,celcius,centigrade,kelvin,fahrenheit,hot,warm,cold", + "set_id": 1 + }, + { + "name": "thermometer-cold-bold", + "content": "", + "style": "outline", + "tags": "meteorology,temperature,degrees,°,celcius,centigrade,kelvin,fahrenheit", + "set_id": 1 + }, + { + "name": "thermometer-hot-bold", + "content": "", + "style": "outline", + "tags": "meteorology,temperature,degrees,°,celcius,centigrade,kelvin,fahrenheit,warm", + "set_id": 1 + }, + { + "name": "thermometer-simple-bold", + "content": "", + "style": "outline", + "tags": "meteorology,temperature,degrees,°,celcius,centigrade,kelvin,fahrenheit,hot,warm,cold", + "set_id": 1 + }, + { + "name": "threads-logo-bold", + "content": "", + "style": "outline", + "tags": "*new*,meta,instagram,social media", + "set_id": 1 + }, + { + "name": "three-d-bold", + "content": "", + "style": "outline", + "tags": "*new*,3d,cad,model", + "set_id": 1 + }, + { + "name": "thumbs-down-bold", + "content": "", + "style": "outline", + "tags": "dislike,hate,emoji,no", + "set_id": 1 + }, + { + "name": "thumbs-up-bold", + "content": "", + "style": "outline", + "tags": "like,love,favorited,favorites,emoji,yes", + "set_id": 1 + }, + { + "name": "ticket-bold", + "content": "", + "style": "outline", + "tags": "ticketstub,movie ticket,entry,admissions,events", + "set_id": 1 + }, + { + "name": "tidal-logo-bold", + "content": "", + "style": "outline", + "tags": "music,logos", + "set_id": 1 + }, + { + "name": "tiktok-logo-bold", + "content": "", + "style": "outline", + "tags": "logos,social media", + "set_id": 1 + }, + { + "name": "tilde-bold", + "content": "", + "style": "outline", + "tags": "*new*,~,∼,proportional,comparison,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "timer-bold", + "content": "", + "style": "outline", + "tags": "clock,alarm,schedule,events,stopwatch,sports", + "set_id": 1 + }, + { + "name": "tip-jar-bold", + "content": "", + "style": "outline", + "tags": "*new*,give,deposit,donation,savings,money", + "set_id": 1 + }, + { + "name": "tipi-bold", + "content": "", + "style": "outline", + "tags": "teepee,lodge,tent,outdoors,camping,tarp", + "set_id": 1 + }, + { + "name": "tire-bold", + "content": "", + "style": "outline", + "tags": "*new*,wheel,vehicles,transportation", + "set_id": 1 + }, + { + "name": "toggle-left-bold", + "content": "", + "style": "outline", + "tags": "switch,controls,settings,preferences", + "set_id": 1 + }, + { + "name": "toggle-right-bold", + "content": "", + "style": "outline", + "tags": "switch,controls,settings,preferences", + "set_id": 1 + }, + { + "name": "toilet-bold", + "content": "", + "style": "outline", + "tags": "bathroom,restroom,lavatory,water closet", + "set_id": 1 + }, + { + "name": "toilet-paper-bold", + "content": "", + "style": "outline", + "tags": "bathroom,restroom,lavatory,water closet", + "set_id": 1 + }, + { + "name": "toolbox-bold", + "content": "", + "style": "outline", + "tags": "tools,carpentry,construction", + "set_id": 1 + }, + { + "name": "tooth-bold", + "content": "", + "style": "outline", + "tags": "teeth,dentistry,medical,medicine,doctor,cavity", + "set_id": 1 + }, + { + "name": "tornado-bold", + "content": "", + "style": "outline", + "tags": "*new*,meteorology,twister,storm,wind,disaster", + "set_id": 1 + }, + { + "name": "tote-bold", + "content": "", + "style": "outline", + "tags": "suitcases,valises,baggage,tote-bag,portfolios", + "set_id": 1 + }, + { + "name": "tote-simple-bold", + "content": "", + "style": "outline", + "tags": "suitcases,valises,baggage,tote-bag,portfolios", + "set_id": 1 + }, + { + "name": "towel-bold", + "content": "", + "style": "outline", + "tags": "*new*,clothing,linen,hotel,beach,pool,swimming,shower,bath", + "set_id": 1 + }, + { + "name": "tractor-bold", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,farmer,field,farming,agriculture", + "set_id": 1 + }, + { + "name": "trademark-bold", + "content": "", + "style": "outline", + "tags": "tm,®,™,intellectual property", + "set_id": 1 + }, + { + "name": "trademark-registered-bold", + "content": "", + "style": "outline", + "tags": "®,™,intellectual property", + "set_id": 1 + }, + { + "name": "traffic-cone-bold", + "content": "", + "style": "outline", + "tags": "pylon,safety,transit,transportation", + "set_id": 1 + }, + { + "name": "traffic-sign-bold", + "content": "", + "style": "outline", + "tags": "road signs,transit,transportation", + "set_id": 1 + }, + { + "name": "traffic-signal-bold", + "content": "", + "style": "outline", + "tags": "stop light,safety,transit,transportation", + "set_id": 1 + }, + { + "name": "train-bold", + "content": "", + "style": "outline", + "tags": "vehicles,subway,light rail,public transit,transportation,commuter,traveling,places,locations", + "set_id": 1 + }, + { + "name": "train-regional-bold", + "content": "", + "style": "outline", + "tags": "vehicles,subway,railroad,public transit,transportation,commuter,freight,shipping,traveling,places,locations", + "set_id": 1 + }, + { + "name": "train-simple-bold", + "content": "", + "style": "outline", + "tags": "vehicles,subway,light rail,public transit,transportation,commuter,traveling,places,locations", + "set_id": 1 + }, + { + "name": "tram-bold", + "content": "", + "style": "outline", + "tags": "vehicles,subway,railroad,public transit,transportation,commuter,light rail,shipping,traveling,places,locations", + "set_id": 1 + }, + { + "name": "translate-bold", + "content": "", + "style": "outline", + "tags": "translation,languages,internationalization,i18n,speech", + "set_id": 1 + }, + { + "name": "trash-bold", + "content": "", + "style": "outline", + "tags": "garbage,remove,delete,destroy,recycle,recycling", + "set_id": 1 + }, + { + "name": "trash-simple-bold", + "content": "", + "style": "outline", + "tags": "garbage,remove,delete,destroy,recycle,recycling", + "set_id": 1 + }, + { + "name": "tray-bold", + "content": "", + "style": "outline", + "tags": "inbox,mailbox,bin", + "set_id": 1 + }, + { + "name": "tray-arrow-down-bold", + "content": "", + "style": "outline", + "tags": "inbox,saved,saving,archived,archiving,archival,downloaded,downloading", + "set_id": 1 + }, + { + "name": "tray-arrow-up-bold", + "content": "", + "style": "outline", + "tags": "*new*,outbox,archival,unarchive,uploaded,uploading", + "set_id": 1 + }, + { + "name": "treasure-chest-bold", + "content": "", + "style": "outline", + "tags": "*new*,loot,lootbox,inventory,rewards,gaming,pirate", + "set_id": 1 + }, + { + "name": "tree-bold", + "content": "", + "style": "outline", + "tags": "plants,branches,leaves,green,environmental", + "set_id": 1 + }, + { + "name": "tree-evergreen-bold", + "content": "", + "style": "outline", + "tags": "plants,branches,leaves,pine,conifer,green,environmental", + "set_id": 1 + }, + { + "name": "tree-palm-bold", + "content": "", + "style": "outline", + "tags": "tropical,beach,plants,branches,leaves,green,environmental", + "set_id": 1 + }, + { + "name": "tree-structure-bold", + "content": "", + "style": "outline", + "tags": "data structures,family tree,genealogy,hierarchy,taxonomy,charts,flowchart", + "set_id": 1 + }, + { + "name": "tree-view-bold", + "content": "", + "style": "outline", + "tags": "*new*,hierarchy", + "set_id": 1 + }, + { + "name": "trend-down-bold", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,analyze,analysis,decrease,arrows", + "set_id": 1 + }, + { + "name": "trend-up-bold", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,analyze,analysis,increase,arrows", + "set_id": 1 + }, + { + "name": "triangle-bold", + "content": "", + "style": "outline", + "tags": "3,shapes,polygons", + "set_id": 1 + }, + { + "name": "triangle-dashed-bold", + "content": "", + "style": "outline", + "tags": "*new*,3,shapes,polygons,missing", + "set_id": 1 + }, + { + "name": "trolley-bold", + "content": "", + "style": "outline", + "tags": "*new*,airport,briefcase,valise,baggage", + "set_id": 1 + }, + { + "name": "trolley-suitcase-bold", + "content": "", + "style": "outline", + "tags": "*new*,airport,briefcase,valise,baggage", + "set_id": 1 + }, + { + "name": "trophy-bold", + "content": "", + "style": "outline", + "tags": "ribbons,medals,winning,victory,awards,prize", + "set_id": 1 + }, + { + "name": "truck-bold", + "content": "", + "style": "outline", + "tags": "trucks,cars,vehicles,automobile,shipping,delivery", + "set_id": 1 + }, + { + "name": "truck-trailer-bold", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,automobile,shipping,tractor,semi", + "set_id": 1 + }, + { + "name": "tumblr-logo-bold", + "content": "", + "style": "outline", + "tags": "*new*,social media,logos", + "set_id": 1 + }, + { + "name": "twitch-logo-bold", + "content": "", + "style": "outline", + "tags": "logos,streaming,livestream,gaming,video games,social media", + "set_id": 1 + }, + { + "name": "twitter-logo-bold", + "content": "", + "style": "outline", + "tags": "logos,social media,tweets,birds", + "set_id": 1 + }, + { + "name": "umbrella-bold", + "content": "", + "style": "outline", + "tags": "raining,rainy,insurance", + "set_id": 1 + }, + { + "name": "umbrella-simple-bold", + "content": "", + "style": "outline", + "tags": "raining,rainy,insurance", + "set_id": 1 + }, + { + "name": "union-bold", + "content": "", + "style": "outline", + "tags": "*new*,∪,union,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "unite-bold", + "content": "", + "style": "outline", + "tags": "*updated*,round,join,union,merge,combine,intersecting,intersection", + "set_id": 1 + }, + { + "name": "unite-square-bold", + "content": "", + "style": "outline", + "tags": "join,union,merge,combine,intersecting,intersection", + "set_id": 1 + }, + { + "name": "upload-bold", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,uploaded,uploading,hard drive,disk", + "set_id": 1 + }, + { + "name": "upload-simple-bold", + "content": "", + "style": "outline", + "tags": "*updated*,saved,saving,archived,archiving,archival,uploaded,uploading,hard drive,disk", + "set_id": 1 + }, + { + "name": "usb-bold", + "content": "", + "style": "outline", + "tags": "serial,port,plug,peripheral,device", + "set_id": 1 + }, + { + "name": "user-bold", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,login", + "set_id": 1 + }, + { + "name": "user-check-bold", + "content": "", + "style": "outline", + "tags": "*new*,person,users,profile,account,contact,login,verified", + "set_id": 1 + }, + { + "name": "user-circle-bold", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,login", + "set_id": 1 + }, + { + "name": "user-circle-check-bold", + "content": "", + "style": "outline", + "tags": "*new*,person,users,profile,account,contact,login,verified", + "set_id": 1 + }, + { + "name": "user-circle-dashed-bold", + "content": "", + "style": "outline", + "tags": "*new*,person,users,profile,account,contact,login,pending,missing,removed", + "set_id": 1 + }, + { + "name": "user-circle-gear-bold", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,settings,preferences", + "set_id": 1 + }, + { + "name": "user-circle-minus-bold", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,delete,remove,-", + "set_id": 1 + }, + { + "name": "user-circle-plus-bold", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,add,create,+", + "set_id": 1 + }, + { + "name": "user-focus-bold", + "content": "", + "style": "outline", + "tags": "identification,biometrics,facial recognition,profile,person,account,autofocus", + "set_id": 1 + }, + { + "name": "user-gear-bold", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,settings,preferences", + "set_id": 1 + }, + { + "name": "user-list-bold", + "content": "", + "style": "outline", + "tags": "person,users,profiles,accounts,members,address book", + "set_id": 1 + }, + { + "name": "user-minus-bold", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,delete,remove,-", + "set_id": 1 + }, + { + "name": "user-plus-bold", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,add,create,+", + "set_id": 1 + }, + { + "name": "user-rectangle-bold", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,login", + "set_id": 1 + }, + { + "name": "user-sound-bold", + "content": "", + "style": "outline", + "tags": "*new*,person,users,profile,speech,speaking,voice", + "set_id": 1 + }, + { + "name": "user-square-bold", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,login", + "set_id": 1 + }, + { + "name": "user-switch-bold", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,login,logout,signin,signout,settings,preferences", + "set_id": 1 + }, + { + "name": "users-bold", + "content": "", + "style": "outline", + "tags": "user,group,team,people,profiles,accounts,contacts", + "set_id": 1 + }, + { + "name": "users-four-bold", + "content": "", + "style": "outline", + "tags": "user,group,team,department,community,people,profiles,accounts,contacts", + "set_id": 1 + }, + { + "name": "users-three-bold", + "content": "", + "style": "outline", + "tags": "user,group,team,community,people,profiles,accounts,contacts", + "set_id": 1 + }, + { + "name": "van-bold", + "content": "", + "style": "outline", + "tags": "westfalia,microbus,vanagon,cars,vehicles,automobile,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "vault-bold", + "content": "", + "style": "outline", + "tags": "safe,bank,security,secured,authentication,authenticated,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "vector-three-bold", + "content": "", + "style": "outline", + "tags": "*new*,3d,xyz,cartesian,coordinates,plane,volume,dimensions,mathematics", + "set_id": 1 + }, + { + "name": "vector-two-bold", + "content": "", + "style": "outline", + "tags": "*new*,2d,xy,cartesian,coordinates,plane,dimensions,mathematics", + "set_id": 1 + }, + { + "name": "vibrate-bold", + "content": "", + "style": "outline", + "tags": "audio,volume,viration,ringer,calls,silent,silenced", + "set_id": 1 + }, + { + "name": "video-bold", + "content": "", + "style": "outline", + "tags": "training,course,education,tutorial", + "set_id": 1 + }, + { + "name": "video-camera-bold", + "content": "", + "style": "outline", + "tags": "videography,films,movies,recording", + "set_id": 1 + }, + { + "name": "video-camera-slash-bold", + "content": "", + "style": "outline", + "tags": "videography,films,movies,recording,disabled", + "set_id": 1 + }, + { + "name": "video-conference-bold", + "content": "", + "style": "outline", + "tags": "*new*,video call,zoom,skype,discord,facetime,meeting", + "set_id": 1 + }, + { + "name": "vignette-bold", + "content": "", + "style": "outline", + "tags": "photography,darkroom,movie,analog", + "set_id": 1 + }, + { + "name": "vinyl-record-bold", + "content": "", + "style": "outline", + "tags": "recording,audio,album,music,ep,lp", + "set_id": 1 + }, + { + "name": "virtual-reality-bold", + "content": "", + "style": "outline", + "tags": "virtual reality,vr,headset,metaverse", + "set_id": 1 + }, + { + "name": "virus-bold", + "content": "", + "style": "outline", + "tags": "germs,disease,illness", + "set_id": 1 + }, + { + "name": "visor-bold", + "content": "", + "style": "outline", + "tags": "*new*,goggles,vision", + "set_id": 1 + }, + { + "name": "voicemail-bold", + "content": "", + "style": "outline", + "tags": "phonecalls,missed,recording,telephone,landline", + "set_id": 1 + }, + { + "name": "volleyball-bold", + "content": "", + "style": "outline", + "tags": "sports", + "set_id": 1 + }, + { + "name": "wall-bold", + "content": "", + "style": "outline", + "tags": "firewall,security,secured,blocks,bricks", + "set_id": 1 + }, + { + "name": "wallet-bold", + "content": "", + "style": "outline", + "tags": "money,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "warehouse-bold", + "content": "", + "style": "outline", + "tags": "storage,industry,manufacture,buildings,places,locations", + "set_id": 1 + }, + { + "name": "warning-bold", + "content": "", + "style": "outline", + "tags": "alert,danger,dangerous,caution,errors", + "set_id": 1 + }, + { + "name": "warning-circle-bold", + "content": "", + "style": "outline", + "tags": "alert,danger,dangerous,caution,errors,round", + "set_id": 1 + }, + { + "name": "warning-diamond-bold", + "content": "", + "style": "outline", + "tags": "alert,danger,dangerous,caution,errors", + "set_id": 1 + }, + { + "name": "warning-octagon-bold", + "content": "", + "style": "outline", + "tags": "alert,danger,dangerous,caution,errors,8,eight", + "set_id": 1 + }, + { + "name": "washing-machine-bold", + "content": "", + "style": "outline", + "tags": "*new*,clothing,laundry,cleaning", + "set_id": 1 + }, + { + "name": "watch-bold", + "content": "", + "style": "outline", + "tags": "times,timer,alarm,schedule,events,clock,wristwatch,wearable", + "set_id": 1 + }, + { + "name": "wave-sawtooth-bold", + "content": "", + "style": "outline", + "tags": "synth,synthesizer,sound,audio,music,waveform", + "set_id": 1 + }, + { + "name": "wave-sine-bold", + "content": "", + "style": "outline", + "tags": "synth,synthesizer,sound,audio,music,waveform", + "set_id": 1 + }, + { + "name": "wave-square-bold", + "content": "", + "style": "outline", + "tags": "synth,synthesizer,sound,audio,music,waveform", + "set_id": 1 + }, + { + "name": "wave-triangle-bold", + "content": "", + "style": "outline", + "tags": "synth,synthesizer,sound,audio,music,waveform", + "set_id": 1 + }, + { + "name": "waveform-bold", + "content": "", + "style": "outline", + "tags": "*updated*,audio,sound,spectrum,spectrograph,music", + "set_id": 1 + }, + { + "name": "waveform-slash-bold", + "content": "", + "style": "outline", + "tags": "*new*,audio,sound,spectrum,spectrograph,music", + "set_id": 1 + }, + { + "name": "waves-bold", + "content": "", + "style": "outline", + "tags": "ocean,tides,surf", + "set_id": 1 + }, + { + "name": "webcam-bold", + "content": "", + "style": "outline", + "tags": "camera,video conference", + "set_id": 1 + }, + { + "name": "webcam-slash-bold", + "content": "", + "style": "outline", + "tags": "camera,video conference", + "set_id": 1 + }, + { + "name": "webhooks-logo-bold", + "content": "", + "style": "outline", + "tags": "api", + "set_id": 1 + }, + { + "name": "wechat-logo-bold", + "content": "", + "style": "outline", + "tags": "weixin,logos", + "set_id": 1 + }, + { + "name": "whatsapp-logo-bold", + "content": "", + "style": "outline", + "tags": "logos,messages,messaging", + "set_id": 1 + }, + { + "name": "wheelchair-bold", + "content": "", + "style": "outline", + "tags": "handicapped,medical,disabled,differently abled,accessible,accessibility,a11y", + "set_id": 1 + }, + { + "name": "wheelchair-motion-bold", + "content": "", + "style": "outline", + "tags": "handicapped,medical,disabled,differently abled,accessible,accessibility,a11y", + "set_id": 1 + }, + { + "name": "wifi-high-bold", + "content": "", + "style": "outline", + "tags": "wireless,internet,network,connection,connectivity", + "set_id": 1 + }, + { + "name": "wifi-low-bold", + "content": "", + "style": "outline", + "tags": "wireless,internet,network,connection,connectivity", + "set_id": 1 + }, + { + "name": "wifi-medium-bold", + "content": "", + "style": "outline", + "tags": "wireless,internet,network,connection,connectivity", + "set_id": 1 + }, + { + "name": "wifi-none-bold", + "content": "", + "style": "outline", + "tags": "wireless,internet,network,connection,connectivity", + "set_id": 1 + }, + { + "name": "wifi-slash-bold", + "content": "", + "style": "outline", + "tags": "wireless,internet,network,connection,connectivity,disabled,disconnected", + "set_id": 1 + }, + { + "name": "wifi-x-bold", + "content": "", + "style": "outline", + "tags": "wireless,internet,network,connection,connectivity,disconnected,errors", + "set_id": 1 + }, + { + "name": "wind-bold", + "content": "", + "style": "outline", + "tags": "meteorology,windy,stormy,blustery,gusty,air", + "set_id": 1 + }, + { + "name": "windmill-bold", + "content": "", + "style": "outline", + "tags": "*new*,turbine,energy,renewable,sustainability,countryside,landscape,green,power,buildings", + "set_id": 1 + }, + { + "name": "windows-logo-bold", + "content": "", + "style": "outline", + "tags": "microsoft,computers", + "set_id": 1 + }, + { + "name": "wine-bold", + "content": "", + "style": "outline", + "tags": "drinks,beverages,vineyard,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "wrench-bold", + "content": "", + "style": "outline", + "tags": "settings,setup,preferences,tools,machinery,mechanical,repairs", + "set_id": 1 + }, + { + "name": "x-bold", + "content": "", + "style": "outline", + "tags": "×,closed,cancelled,dismissed,times,multiply,mulitplication,product,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "x-circle-bold", + "content": "", + "style": "outline", + "tags": "closed,cancelled,dismissed,round", + "set_id": 1 + }, + { + "name": "x-logo-bold", + "content": "", + "style": "outline", + "tags": "*new*,twitter,logos,social media,tweets", + "set_id": 1 + }, + { + "name": "x-square-bold", + "content": "", + "style": "outline", + "tags": "closed,cancelled,dismissed", + "set_id": 1 + }, + { + "name": "yarn-bold", + "content": "", + "style": "outline", + "tags": "*new*,knitting,sewing", + "set_id": 1 + }, + { + "name": "yin-yang-bold", + "content": "", + "style": "outline", + "tags": "symbol,good,evil,black,white", + "set_id": 1 + }, + { + "name": "youtube-logo-bold", + "content": "", + "style": "outline", + "tags": "logos,google,videos,movies,social media", + "set_id": 1 + }, + { + "name": "acorn-fill", + "content": "", + "style": "outline", + "tags": "*new*,savings,nut,vegetable,veggies,food,groceries,market", + "set_id": 1 + }, + { + "name": "address-book-fill", + "content": "", + "style": "outline", + "tags": "contacts,directory,roledex", + "set_id": 1 + }, + { + "name": "address-book-tabs-fill", + "content": "", + "style": "outline", + "tags": "*new*,contacts,directory,roledex", + "set_id": 1 + }, + { + "name": "air-traffic-control-fill", + "content": "", + "style": "outline", + "tags": "airport,travel,transportation,buildings", + "set_id": 1 + }, + { + "name": "airplane-fill", + "content": "", + "style": "outline", + "tags": "vehicles,airports,flights,flying,planes,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "airplane-in-flight-fill", + "content": "", + "style": "outline", + "tags": "vehicles,airports,flights,flying,planes,transit,transportation,traveling,arrival", + "set_id": 1 + }, + { + "name": "airplane-landing-fill", + "content": "", + "style": "outline", + "tags": "vehicles,airports,flights,flying,planes,transit,transportation,traveling,arrival", + "set_id": 1 + }, + { + "name": "airplane-takeoff-fill", + "content": "", + "style": "outline", + "tags": "vehicles,airports,flights,flying,planes,transit,transportation,traveling,departure", + "set_id": 1 + }, + { + "name": "airplane-taxiing-fill", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,airports,flights,flying,planes,transit,transportation,traveling,arrival", + "set_id": 1 + }, + { + "name": "airplane-tilt-fill", + "content": "", + "style": "outline", + "tags": "vehicles,airports,flights,flying,planes,transit,transportation,traveling,departure", + "set_id": 1 + }, + { + "name": "airplay-fill", + "content": "", + "style": "outline", + "tags": "apple,screencasting,television,tv", + "set_id": 1 + }, + { + "name": "alarm-fill", + "content": "", + "style": "outline", + "tags": "times,timer,clock,schedule,events,watch", + "set_id": 1 + }, + { + "name": "alien-fill", + "content": "", + "style": "outline", + "tags": "ufo,space,flying saucer,extra terrestrial,sci-fi", + "set_id": 1 + }, + { + "name": "align-bottom-fill", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush bottom", + "set_id": 1 + }, + { + "name": "align-bottom-simple-fill", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush bottom", + "set_id": 1 + }, + { + "name": "align-center-horizontal-fill", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,centered,middle", + "set_id": 1 + }, + { + "name": "align-center-horizontal-simple-fill", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,centered,middle", + "set_id": 1 + }, + { + "name": "align-center-vertical-fill", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,centered,middle", + "set_id": 1 + }, + { + "name": "align-center-vertical-simple-fill", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,centered,middle", + "set_id": 1 + }, + { + "name": "align-left-fill", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush left", + "set_id": 1 + }, + { + "name": "align-left-simple-fill", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush left", + "set_id": 1 + }, + { + "name": "align-right-fill", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush right", + "set_id": 1 + }, + { + "name": "align-right-simple-fill", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush right", + "set_id": 1 + }, + { + "name": "align-top-fill", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush top", + "set_id": 1 + }, + { + "name": "align-top-simple-fill", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush top", + "set_id": 1 + }, + { + "name": "amazon-logo-fill", + "content": "", + "style": "outline", + "tags": "ecommerce,shopping,logos", + "set_id": 1 + }, + { + "name": "ambulance-fill", + "content": "", + "style": "outline", + "tags": "*new*,first-aid,emt,medical,medicine,injury,safety,emergency,doctor,vehicles", + "set_id": 1 + }, + { + "name": "anchor-fill", + "content": "", + "style": "outline", + "tags": "nautical,boats,ships,hope,safety,insurance", + "set_id": 1 + }, + { + "name": "anchor-simple-fill", + "content": "", + "style": "outline", + "tags": "nautical,boats,ships,hope,safety,insurance", + "set_id": 1 + }, + { + "name": "android-logo-fill", + "content": "", + "style": "outline", + "tags": "logos,google,mobile,phone,cellular,cellphone", + "set_id": 1 + }, + { + "name": "angle-fill", + "content": "", + "style": "outline", + "tags": "*new*,geometry,trigonometry,degrees,radians,measurement,protractor,compass,arc", + "set_id": 1 + }, + { + "name": "angular-logo-fill", + "content": "", + "style": "outline", + "tags": "framework,javascript,google,web", + "set_id": 1 + }, + { + "name": "aperture-fill", + "content": "", + "style": "outline", + "tags": "photography,cameras,pictures,lens", + "set_id": 1 + }, + { + "name": "app-store-logo-fill", + "content": "", + "style": "outline", + "tags": "macintosh,imac,iphone,ipad,macos,ios", + "set_id": 1 + }, + { + "name": "app-window-fill", + "content": "", + "style": "outline", + "tags": "windows,software,programs,applications", + "set_id": 1 + }, + { + "name": "apple-logo-fill", + "content": "", + "style": "outline", + "tags": "macintosh,imac,iphone,ipad,macos,ios", + "set_id": 1 + }, + { + "name": "apple-podcasts-logo-fill", + "content": "", + "style": "outline", + "tags": "macintosh,imac,iphone,ipad,macos,ios", + "set_id": 1 + }, + { + "name": "approximate-equals-fill", + "content": "", + "style": "outline", + "tags": "*new*,≈,is approximately equal to,congruent,equality,equivalent,equivalence,comparison,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "archive-fill", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,downloaded,downloading", + "set_id": 1 + }, + { + "name": "armchair-fill", + "content": "", + "style": "outline", + "tags": "seat,furniture", + "set_id": 1 + }, + { + "name": "arrow-arc-left-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-arc-right-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-double-up-left-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,reply-all", + "set_id": 1 + }, + { + "name": "arrow-bend-double-up-right-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-down-left-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-down-right-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-left-down-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-left-up-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-right-down-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-right-up-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-up-left-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,reply,re", + "set_id": 1 + }, + { + "name": "arrow-bend-up-right-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,forward,fwd", + "set_id": 1 + }, + { + "name": "arrow-circle-down-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-down-left-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-down-right-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-left-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-right-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-up-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-up-left-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-up-right-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-clockwise-fill", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,redo,refreshing,rotate,spin,flip", + "set_id": 1 + }, + { + "name": "arrow-counter-clockwise-fill", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,undo,refreshing,rotate,spin,flip", + "set_id": 1 + }, + { + "name": "arrow-down-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-down-left-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-down-right-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-down-left-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-down-right-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-left-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-left-down-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-left-up-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-right-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-right-down-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-right-up-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-up-left-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-up-right-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-fat-down-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-left-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-line-down-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-line-left-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-line-right-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-line-up-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,caps lock,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-lines-down-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-lines-left-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-lines-right-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-lines-up-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-right-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-up-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,shift,outlined", + "set_id": 1 + }, + { + "name": "arrow-left-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-line-down-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,bottom", + "set_id": 1 + }, + { + "name": "arrow-line-down-left-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-line-down-right-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-line-left-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-line-right-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-line-up-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,top", + "set_id": 1 + }, + { + "name": "arrow-line-up-left-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-line-up-right-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-right-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-down-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-down-left-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-down-right-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-in-fill", + "content": "", + "style": "outline", + "tags": "import,directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-left-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-out-fill", + "content": "", + "style": "outline", + "tags": "export,external,directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-right-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-up-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-up-left-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-up-right-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-u-down-left-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,undo,return,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-down-right-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,redo,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-left-down-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,undo,return,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-left-up-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,redo,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-right-down-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,undo,return,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-right-up-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,redo,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-up-left-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,undo,return,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-up-right-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,redo,u-turns", + "set_id": 1 + }, + { + "name": "arrow-up-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-up-left-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-up-right-fill", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrows-clockwise-fill", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,redo,refreshing,sync,synchronize,rotate,spin,flip", + "set_id": 1 + }, + { + "name": "arrows-counter-clockwise-fill", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,undo,refreshing,rotate,spin,flip", + "set_id": 1 + }, + { + "name": "arrows-down-up-fill", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrows-horizontal-fill", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,cursor,resize,expand,left,right", + "set_id": 1 + }, + { + "name": "arrows-in-fill", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,collapse,minimize,resize,shrink", + "set_id": 1 + }, + { + "name": "arrows-in-cardinal-fill", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,collapse,minimize,resize,shrink", + "set_id": 1 + }, + { + "name": "arrows-in-line-horizontal-fill", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,close,center,align", + "set_id": 1 + }, + { + "name": "arrows-in-line-vertical-fill", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,close,center,align", + "set_id": 1 + }, + { + "name": "arrows-in-simple-fill", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,collapse,minimize,resize", + "set_id": 1 + }, + { + "name": "arrows-left-right-fill", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrows-merge-fill", + "content": "", + "style": "outline", + "tags": "*updated*,arrowheads,join,combine", + "set_id": 1 + }, + { + "name": "arrows-out-fill", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,expand,fullscreen,resize,grow", + "set_id": 1 + }, + { + "name": "arrows-out-cardinal-fill", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,expand,fullscreen,resize,pan,move,grow", + "set_id": 1 + }, + { + "name": "arrows-out-line-horizontal-fill", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,open,split", + "set_id": 1 + }, + { + "name": "arrows-out-line-vertical-fill", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,open,split", + "set_id": 1 + }, + { + "name": "arrows-out-simple-fill", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,expand,fullscreen,resize", + "set_id": 1 + }, + { + "name": "arrows-split-fill", + "content": "", + "style": "outline", + "tags": "*updated*,arrowheads,fork", + "set_id": 1 + }, + { + "name": "arrows-vertical-fill", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,cursor,resize,expand,up,down", + "set_id": 1 + }, + { + "name": "article-fill", + "content": "", + "style": "outline", + "tags": "reading,writing,journals,periodicals,text,newspaper", + "set_id": 1 + }, + { + "name": "article-medium-fill", + "content": "", + "style": "outline", + "tags": "*updated*,reading,writing,journals,periodicals,text,newspaper", + "set_id": 1 + }, + { + "name": "article-ny-times-fill", + "content": "", + "style": "outline", + "tags": "*updated*,reading,writing,journals,periodicals,text,news,newspaper,nyt,new york times", + "set_id": 1 + }, + { + "name": "asclepius-fill", + "content": "", + "style": "outline", + "tags": "*new*,caduceus,staff,mythology,rx,medicine,drugs,pharmacy,pharmacist,pharmaceuticals,doctor,hospital,snake,mercury,hermes", + "set_id": 1 + }, + { + "name": "asterisk-fill", + "content": "", + "style": "outline", + "tags": "star,wildcard,bullet point,6,emergency", + "set_id": 1 + }, + { + "name": "asterisk-simple-fill", + "content": "", + "style": "outline", + "tags": "*updated*,star,wildcard,bullet point,5,emergency", + "set_id": 1 + }, + { + "name": "at-fill", + "content": "", + "style": "outline", + "tags": "@,address,email,at symbol,commercial at,arobase", + "set_id": 1 + }, + { + "name": "atom-fill", + "content": "", + "style": "outline", + "tags": "atomic,nucleus,nuclear,reactor,science,physics,electron,automation,react", + "set_id": 1 + }, + { + "name": "avocado-fill", + "content": "", + "style": "outline", + "tags": "*new*,food,vegetable,veggie,fruit,groceries,market", + "set_id": 1 + }, + { + "name": "axe-fill", + "content": "", + "style": "outline", + "tags": "*new*,tools,carpentry,forestry,construction", + "set_id": 1 + }, + { + "name": "baby-fill", + "content": "", + "style": "outline", + "tags": "infant,child,children,toddler", + "set_id": 1 + }, + { + "name": "baby-carriage-fill", + "content": "", + "style": "outline", + "tags": "*new*,pram,stroller,infant,child,children,toddler", + "set_id": 1 + }, + { + "name": "backpack-fill", + "content": "", + "style": "outline", + "tags": "knapsack,camping,school,bag", + "set_id": 1 + }, + { + "name": "backspace-fill", + "content": "", + "style": "outline", + "tags": "keyboard,remove,delete", + "set_id": 1 + }, + { + "name": "bag-fill", + "content": "", + "style": "outline", + "tags": "suitcase,valise,baggage,folders,portfolio", + "set_id": 1 + }, + { + "name": "bag-simple-fill", + "content": "", + "style": "outline", + "tags": "suitcase,valise,baggage,folders,portfolio", + "set_id": 1 + }, + { + "name": "balloon-fill", + "content": "", + "style": "outline", + "tags": "helium,birthday,party", + "set_id": 1 + }, + { + "name": "bandaids-fill", + "content": "", + "style": "outline", + "tags": "bandages,medical,medicine,first aid,injury", + "set_id": 1 + }, + { + "name": "bank-fill", + "content": "", + "style": "outline", + "tags": "banking,checking,money,savings,deposit,withdraw,places,locations", + "set_id": 1 + }, + { + "name": "barbell-fill", + "content": "", + "style": "outline", + "tags": "gym,weights,dumbbells,strength training,workout,exercises,fitness", + "set_id": 1 + }, + { + "name": "barcode-fill", + "content": "", + "style": "outline", + "tags": "upc,qr,products,shopping,scanner", + "set_id": 1 + }, + { + "name": "barn-fill", + "content": "", + "style": "outline", + "tags": "*new*,animals,livestock,buildings,farming,agriculture", + "set_id": 1 + }, + { + "name": "barricade-fill", + "content": "", + "style": "outline", + "tags": "construction,safety,gate", + "set_id": 1 + }, + { + "name": "baseball-fill", + "content": "", + "style": "outline", + "tags": "sports,mlb", + "set_id": 1 + }, + { + "name": "baseball-cap-fill", + "content": "", + "style": "outline", + "tags": "clothes,clothing,sports,hat", + "set_id": 1 + }, + { + "name": "baseball-helmet-fill", + "content": "", + "style": "outline", + "tags": "*new*,sports,mlb", + "set_id": 1 + }, + { + "name": "basket-fill", + "content": "", + "style": "outline", + "tags": "ecommerce,market,cart,buying,shopping,groceries,checkout,places,locations", + "set_id": 1 + }, + { + "name": "basketball-fill", + "content": "", + "style": "outline", + "tags": "sports,nba", + "set_id": 1 + }, + { + "name": "bathtub-fill", + "content": "", + "style": "outline", + "tags": "bath,shower,bathroom,faucet", + "set_id": 1 + }, + { + "name": "battery-charging-fill", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-charging-vertical-fill", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-empty-fill", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power,dead", + "set_id": 1 + }, + { + "name": "battery-full-fill", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power,filled", + "set_id": 1 + }, + { + "name": "battery-high-fill", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-low-fill", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-medium-fill", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-plus-fill", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-plus-vertical-fill", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-vertical-empty-fill", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power,dead", + "set_id": 1 + }, + { + "name": "battery-vertical-full-fill", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-vertical-high-fill", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-vertical-low-fill", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-vertical-medium-fill", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-warning-fill", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power,empty,critical", + "set_id": 1 + }, + { + "name": "battery-warning-vertical-fill", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power,empty,critical", + "set_id": 1 + }, + { + "name": "beach-ball-fill", + "content": "", + "style": "outline", + "tags": "*new*,sports,ocean,party", + "set_id": 1 + }, + { + "name": "beanie-fill", + "content": "", + "style": "outline", + "tags": "*new*,clothes,clothing,sports,hat,winter", + "set_id": 1 + }, + { + "name": "bed-fill", + "content": "", + "style": "outline", + "tags": "hotels,accommodations,sleeping,places,locations,medical,hospital", + "set_id": 1 + }, + { + "name": "beer-bottle-fill", + "content": "", + "style": "outline", + "tags": "drinks,beverages,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "beer-stein-fill", + "content": "", + "style": "outline", + "tags": "drinks,beverages,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "behance-logo-fill", + "content": "", + "style": "outline", + "tags": "logos,illustration,ui,interface", + "set_id": 1 + }, + { + "name": "bell-fill", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,calls", + "set_id": 1 + }, + { + "name": "bell-ringing-fill", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,calls", + "set_id": 1 + }, + { + "name": "bell-simple-fill", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,calls", + "set_id": 1 + }, + { + "name": "bell-simple-ringing-fill", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,calls", + "set_id": 1 + }, + { + "name": "bell-simple-slash-fill", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,silent,silenced,disabled", + "set_id": 1 + }, + { + "name": "bell-simple-z-fill", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,snooze", + "set_id": 1 + }, + { + "name": "bell-slash-fill", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,silent,silenced,ringer,calls,disabled", + "set_id": 1 + }, + { + "name": "bell-z-fill", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,snooze", + "set_id": 1 + }, + { + "name": "belt-fill", + "content": "", + "style": "outline", + "tags": "*new*,clothes,clothing", + "set_id": 1 + }, + { + "name": "bezier-curve-fill", + "content": "", + "style": "outline", + "tags": "shapes,drawing,path,pen,vector", + "set_id": 1 + }, + { + "name": "bicycle-fill", + "content": "", + "style": "outline", + "tags": "bikers,bicycling,cyclists,transit,transportation,commuter,exercises,fitness", + "set_id": 1 + }, + { + "name": "binary-fill", + "content": "", + "style": "outline", + "tags": "*new*,digital,0,1,programming,coding,executable", + "set_id": 1 + }, + { + "name": "binoculars-fill", + "content": "", + "style": "outline", + "tags": "telescope,glasses,search,find,explore", + "set_id": 1 + }, + { + "name": "biohazard-fill", + "content": "", + "style": "outline", + "tags": "*new*,contamination,quarantine,toxic,poison,danger,caution", + "set_id": 1 + }, + { + "name": "bird-fill", + "content": "", + "style": "outline", + "tags": "*updated*,animals,pets", + "set_id": 1 + }, + { + "name": "blueprint-fill", + "content": "", + "style": "outline", + "tags": "*new*,architecture,layout,floorplan,building,construction", + "set_id": 1 + }, + { + "name": "bluetooth-fill", + "content": "", + "style": "outline", + "tags": "wireless,connection,connected,connectivity", + "set_id": 1 + }, + { + "name": "bluetooth-connected-fill", + "content": "", + "style": "outline", + "tags": "wireless,connection,connected,connectivity", + "set_id": 1 + }, + { + "name": "bluetooth-slash-fill", + "content": "", + "style": "outline", + "tags": "wireless,connection,connectivity,disconnected,disabled", + "set_id": 1 + }, + { + "name": "bluetooth-x-fill", + "content": "", + "style": "outline", + "tags": "wireless,connection,connectivity,disconnected,errors", + "set_id": 1 + }, + { + "name": "boat-fill", + "content": "", + "style": "outline", + "tags": "ferry,ship,cruise,vehicles,public transit,transportation,commuter,traveling,sailing,places,locations", + "set_id": 1 + }, + { + "name": "bomb-fill", + "content": "", + "style": "outline", + "tags": "*new*,gaming,grenade,explosive,war,weapon,fuse", + "set_id": 1 + }, + { + "name": "bone-fill", + "content": "", + "style": "outline", + "tags": "dogbone", + "set_id": 1 + }, + { + "name": "book-fill", + "content": "", + "style": "outline", + "tags": "reading,reader,novel,story,library", + "set_id": 1 + }, + { + "name": "book-bookmark-fill", + "content": "", + "style": "outline", + "tags": "reading,reader,novel,story,library,favorites,favorited", + "set_id": 1 + }, + { + "name": "book-open-fill", + "content": "", + "style": "outline", + "tags": "*updated*,reading,reader,novel,story,library", + "set_id": 1 + }, + { + "name": "book-open-text-fill", + "content": "", + "style": "outline", + "tags": "*updated*,reading,reader,novel,story,library", + "set_id": 1 + }, + { + "name": "book-open-user-fill", + "content": "", + "style": "outline", + "tags": "*new*,reading,reader,easy read,library,places,locations", + "set_id": 1 + }, + { + "name": "bookmark-fill", + "content": "", + "style": "outline", + "tags": "reading,reader,novel,story,placeholder,favorites,favorited,library", + "set_id": 1 + }, + { + "name": "bookmark-simple-fill", + "content": "", + "style": "outline", + "tags": "reading,reader,novel,story,placeholder,favorites,favorited,library", + "set_id": 1 + }, + { + "name": "bookmarks-fill", + "content": "", + "style": "outline", + "tags": "reading,reader,novel,story,placeholder,favorites,favorited,library", + "set_id": 1 + }, + { + "name": "bookmarks-simple-fill", + "content": "", + "style": "outline", + "tags": "reading,reader,novel,story,placeholder,favorites,favorited,library", + "set_id": 1 + }, + { + "name": "books-fill", + "content": "", + "style": "outline", + "tags": "reading,reader,bookshelf,library,places,locations", + "set_id": 1 + }, + { + "name": "boot-fill", + "content": "", + "style": "outline", + "tags": "hiking,shoes,sports,exercise", + "set_id": 1 + }, + { + "name": "boules-fill", + "content": "", + "style": "outline", + "tags": "*new*,balls,sports,pétanque,raffa,bocce,boule lyonnaise,lawn bowls", + "set_id": 1 + }, + { + "name": "bounding-box-fill", + "content": "", + "style": "outline", + "tags": "polygon,shapes,outline,corners,rectangle", + "set_id": 1 + }, + { + "name": "bowl-food-fill", + "content": "", + "style": "outline", + "tags": "ramen,food,meal,eating,restaurants,dining,locations", + "set_id": 1 + }, + { + "name": "bowl-steam-fill", + "content": "", + "style": "outline", + "tags": "*new*,food,meal,eating,restaurants,dining,locations", + "set_id": 1 + }, + { + "name": "bowling-ball-fill", + "content": "", + "style": "outline", + "tags": "*new*,sports,alley", + "set_id": 1 + }, + { + "name": "box-arrow-down-fill", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,downloaded,downloading", + "set_id": 1 + }, + { + "name": "box-arrow-up-fill", + "content": "", + "style": "outline", + "tags": "*new*,unarchive,archival,upload", + "set_id": 1 + }, + { + "name": "boxing-glove-fill", + "content": "", + "style": "outline", + "tags": "*new*,sports,combat,martial arts,fight,gym", + "set_id": 1 + }, + { + "name": "brackets-angle-fill", + "content": "", + "style": "outline", + "tags": "code,angle brackets,angle braces", + "set_id": 1 + }, + { + "name": "brackets-curly-fill", + "content": "", + "style": "outline", + "tags": "code,curly brackets,curly braces", + "set_id": 1 + }, + { + "name": "brackets-round-fill", + "content": "", + "style": "outline", + "tags": "code,parentheses,round brackets,round braces", + "set_id": 1 + }, + { + "name": "brackets-square-fill", + "content": "", + "style": "outline", + "tags": "code,square brackets,square braces,array", + "set_id": 1 + }, + { + "name": "brain-fill", + "content": "", + "style": "outline", + "tags": "mind,mental", + "set_id": 1 + }, + { + "name": "brandy-fill", + "content": "", + "style": "outline", + "tags": "drinks,beverages,whiskey,cocktail,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "bread-fill", + "content": "", + "style": "outline", + "tags": "*new*,food,meal,bakery,sandwich,gluten,loaf,toast,slice", + "set_id": 1 + }, + { + "name": "bridge-fill", + "content": "", + "style": "outline", + "tags": "travel,transportation,infrastucture", + "set_id": 1 + }, + { + "name": "briefcase-fill", + "content": "", + "style": "outline", + "tags": "suitcase,valise,baggage,folders,portfolio", + "set_id": 1 + }, + { + "name": "briefcase-metal-fill", + "content": "", + "style": "outline", + "tags": "suitcase,valise,baggage,folders,portfolio", + "set_id": 1 + }, + { + "name": "broadcast-fill", + "content": "", + "style": "outline", + "tags": "radio,hotspot,wifi,emit", + "set_id": 1 + }, + { + "name": "broom-fill", + "content": "", + "style": "outline", + "tags": "sweeping,cleaning", + "set_id": 1 + }, + { + "name": "browser-fill", + "content": "", + "style": "outline", + "tags": "web browsers,windows,internet,website,webpage,chrome,edge,firefox", + "set_id": 1 + }, + { + "name": "browsers-fill", + "content": "", + "style": "outline", + "tags": "web browsers,windows,internet,website,webpage,chrome,edge,firefox", + "set_id": 1 + }, + { + "name": "bug-fill", + "content": "", + "style": "outline", + "tags": "debug,errors,insect,ladybug", + "set_id": 1 + }, + { + "name": "bug-beetle-fill", + "content": "", + "style": "outline", + "tags": "debug,errors,insect,ladybug", + "set_id": 1 + }, + { + "name": "bug-droid-fill", + "content": "", + "style": "outline", + "tags": "debug,errors,insect,android,google", + "set_id": 1 + }, + { + "name": "building-fill", + "content": "", + "style": "outline", + "tags": "*new*,places,locations,company,business,buildings", + "set_id": 1 + }, + { + "name": "building-apartment-fill", + "content": "", + "style": "outline", + "tags": "*new*,places,locations,buildings", + "set_id": 1 + }, + { + "name": "building-office-fill", + "content": "", + "style": "outline", + "tags": "*new*,places,locations,company,business,buildings", + "set_id": 1 + }, + { + "name": "buildings-fill", + "content": "", + "style": "outline", + "tags": "places,locations,company,business", + "set_id": 1 + }, + { + "name": "bulldozer-fill", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,construction,earth mover,dig,digger", + "set_id": 1 + }, + { + "name": "bus-fill", + "content": "", + "style": "outline", + "tags": "vehicles,automobile,public transit,transportation,commuter,traveling,places,locations", + "set_id": 1 + }, + { + "name": "butterfly-fill", + "content": "", + "style": "outline", + "tags": "animals,insects,moth", + "set_id": 1 + }, + { + "name": "cable-car-fill", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,gondola,skiing,mountains,public transit,transportation,commuter,traveling,places,locations", + "set_id": 1 + }, + { + "name": "cactus-fill", + "content": "", + "style": "outline", + "tags": "*updated*,plants,cacti,desert,western", + "set_id": 1 + }, + { + "name": "cake-fill", + "content": "", + "style": "outline", + "tags": "dessert,birthday,celebration,event", + "set_id": 1 + }, + { + "name": "calculator-fill", + "content": "", + "style": "outline", + "tags": "addition,sum,subtraction,difference,multiply,multiplication,product,divide,division,divisor,dividend,quotient,equals,equality,mathematics,arithmetic,+,-,±,×,÷,=", + "set_id": 1 + }, + { + "name": "calendar-fill", + "content": "", + "style": "outline", + "tags": "dates,times,events,schedule,12", + "set_id": 1 + }, + { + "name": "calendar-blank-fill", + "content": "", + "style": "outline", + "tags": "dates,times,events,schedule,none", + "set_id": 1 + }, + { + "name": "calendar-check-fill", + "content": "", + "style": "outline", + "tags": "dates,times,events,schedule,todo,checklist", + "set_id": 1 + }, + { + "name": "calendar-dot-fill", + "content": "", + "style": "outline", + "tags": "*new*,dates,times,events,schedule,today", + "set_id": 1 + }, + { + "name": "calendar-dots-fill", + "content": "", + "style": "outline", + "tags": "*new*,dates,times,events,schedule", + "set_id": 1 + }, + { + "name": "calendar-heart-fill", + "content": "", + "style": "outline", + "tags": "*new*,dates,times,events,schedule,favorite,star", + "set_id": 1 + }, + { + "name": "calendar-minus-fill", + "content": "", + "style": "outline", + "tags": "*new*,dates,times,events,schedule,remove,delete", + "set_id": 1 + }, + { + "name": "calendar-plus-fill", + "content": "", + "style": "outline", + "tags": "dates,times,events,schedule,add", + "set_id": 1 + }, + { + "name": "calendar-slash-fill", + "content": "", + "style": "outline", + "tags": "*new*,dates,times,events,schedule,remove,delete,cancel. unavailable", + "set_id": 1 + }, + { + "name": "calendar-star-fill", + "content": "", + "style": "outline", + "tags": "*new*,dates,times,events,schedule,favorite,star", + "set_id": 1 + }, + { + "name": "calendar-x-fill", + "content": "", + "style": "outline", + "tags": "dates,times,events,schedule,closed,cancelled", + "set_id": 1 + }, + { + "name": "call-bell-fill", + "content": "", + "style": "outline", + "tags": "service bell,reception,attendant,concierge bell", + "set_id": 1 + }, + { + "name": "camera-fill", + "content": "", + "style": "outline", + "tags": "photography,pictures,lens", + "set_id": 1 + }, + { + "name": "camera-plus-fill", + "content": "", + "style": "outline", + "tags": "photography,pictures,album,add", + "set_id": 1 + }, + { + "name": "camera-rotate-fill", + "content": "", + "style": "outline", + "tags": "photography,pictures,orientation,portrait,landscape,selfie,flip", + "set_id": 1 + }, + { + "name": "camera-slash-fill", + "content": "", + "style": "outline", + "tags": "photography,pictures,lens,disabled", + "set_id": 1 + }, + { + "name": "campfire-fill", + "content": "", + "style": "outline", + "tags": "camping,flame,bonfire,outdoors", + "set_id": 1 + }, + { + "name": "car-fill", + "content": "", + "style": "outline", + "tags": "*updated*,cars,vehicles,automobile,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "car-battery-fill", + "content": "", + "style": "outline", + "tags": "*new*,charged,charger,charging,power,voltage,electricity", + "set_id": 1 + }, + { + "name": "car-profile-fill", + "content": "", + "style": "outline", + "tags": "cars,vehicles,automobile,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "car-simple-fill", + "content": "", + "style": "outline", + "tags": "cars,vehicles,automobile,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "cardholder-fill", + "content": "", + "style": "outline", + "tags": "wallet,money,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "cards-fill", + "content": "", + "style": "outline", + "tags": "card,slides,slideshow,windows,website,webpage,layers", + "set_id": 1 + }, + { + "name": "cards-three-fill", + "content": "", + "style": "outline", + "tags": "*new*,card,slides,slideshow,windows,website,webpage,layers,stack", + "set_id": 1 + }, + { + "name": "caret-circle-double-down-fill", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-double-left-fill", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-double-right-fill", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-double-up-fill", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-down-fill", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-left-fill", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-right-fill", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-up-fill", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-up-down-fill", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-double-down-fill", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-double-left-fill", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-double-right-fill", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-double-up-fill", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-down-fill", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-left-fill", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-line-down-fill", + "content": "", + "style": "outline", + "tags": "*new*,chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-line-left-fill", + "content": "", + "style": "outline", + "tags": "*new*,chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-line-right-fill", + "content": "", + "style": "outline", + "tags": "*new*,chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-line-up-fill", + "content": "", + "style": "outline", + "tags": "*new*,chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-right-fill", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-up-fill", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-up-down-fill", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "carrot-fill", + "content": "", + "style": "outline", + "tags": "food,vegetable,veggie,groceries,market", + "set_id": 1 + }, + { + "name": "cash-register-fill", + "content": "", + "style": "outline", + "tags": "*new*,retail,point-of-sale,pos,transaction,sales,till", + "set_id": 1 + }, + { + "name": "cassette-tape-fill", + "content": "", + "style": "outline", + "tags": "recording,audio,album,music", + "set_id": 1 + }, + { + "name": "castle-turret-fill", + "content": "", + "style": "outline", + "tags": "*updated*,chess,rook", + "set_id": 1 + }, + { + "name": "cat-fill", + "content": "", + "style": "outline", + "tags": "pets,animals,kitty,kitten", + "set_id": 1 + }, + { + "name": "cell-signal-full-fill", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,reception,service", + "set_id": 1 + }, + { + "name": "cell-signal-high-fill", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,reception,service", + "set_id": 1 + }, + { + "name": "cell-signal-low-fill", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,reception,service", + "set_id": 1 + }, + { + "name": "cell-signal-medium-fill", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,reception,service", + "set_id": 1 + }, + { + "name": "cell-signal-none-fill", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,reception,service", + "set_id": 1 + }, + { + "name": "cell-signal-slash-fill", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,disconnected,disabled,reception,service", + "set_id": 1 + }, + { + "name": "cell-signal-x-fill", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,reception,disconnected,errors,service", + "set_id": 1 + }, + { + "name": "cell-tower-fill", + "content": "", + "style": "outline", + "tags": "*new*,wireless,cellular,broadcast,phone,mobile,network,connection,connectivity", + "set_id": 1 + }, + { + "name": "certificate-fill", + "content": "", + "style": "outline", + "tags": "*updated*,awards,certification,degree,diploma", + "set_id": 1 + }, + { + "name": "chair-fill", + "content": "", + "style": "outline", + "tags": "seat,furniture", + "set_id": 1 + }, + { + "name": "chalkboard-fill", + "content": "", + "style": "outline", + "tags": "blackboard,whiteboard,classroom,teacher,education,school,college,university", + "set_id": 1 + }, + { + "name": "chalkboard-simple-fill", + "content": "", + "style": "outline", + "tags": "*updated*,blackboard,whiteboard,classroom,teacher,education,school,college,university", + "set_id": 1 + }, + { + "name": "chalkboard-teacher-fill", + "content": "", + "style": "outline", + "tags": "blackboard,whiteboard,classroom,education,school,college,university", + "set_id": 1 + }, + { + "name": "champagne-fill", + "content": "", + "style": "outline", + "tags": "glass,drinks,beverages,wine,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "charging-station-fill", + "content": "", + "style": "outline", + "tags": "ev,charge,fuel,pump", + "set_id": 1 + }, + { + "name": "chart-bar-fill", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,histogram,analyze,analysis", + "set_id": 1 + }, + { + "name": "chart-bar-horizontal-fill", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,histogram,analyze,analysis", + "set_id": 1 + }, + { + "name": "chart-donut-fill", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,analyze,analysis,circle", + "set_id": 1 + }, + { + "name": "chart-line-fill", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,analyze,analysis,stocks", + "set_id": 1 + }, + { + "name": "chart-line-down-fill", + "content": "", + "style": "outline", + "tags": "*updated*,graphs,graphing,charts,statistics,analyze,analysis,stocks", + "set_id": 1 + }, + { + "name": "chart-line-up-fill", + "content": "", + "style": "outline", + "tags": "*updated*,graphs,graphing,charts,statistics,analyze,analysis,stocks", + "set_id": 1 + }, + { + "name": "chart-pie-fill", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,circle,analyze,analysis", + "set_id": 1 + }, + { + "name": "chart-pie-slice-fill", + "content": "", + "style": "outline", + "tags": "*updated*,graphs,graphing,charts,statistics,circle,analyze,analysis", + "set_id": 1 + }, + { + "name": "chart-polar-fill", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,analyze,analysis,circle", + "set_id": 1 + }, + { + "name": "chart-scatter-fill", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,analyze,analysis", + "set_id": 1 + }, + { + "name": "chat-fill", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-centered-fill", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-centered-dots-fill", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-centered-slash-fill", + "content": "", + "style": "outline", + "tags": "*new*,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-centered-text-fill", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-circle-fill", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,round,bubble", + "set_id": 1 + }, + { + "name": "chat-circle-dots-fill", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,round,bubble", + "set_id": 1 + }, + { + "name": "chat-circle-slash-fill", + "content": "", + "style": "outline", + "tags": "*new*,messages,messaging,sms,texting,comment,round,bubble", + "set_id": 1 + }, + { + "name": "chat-circle-text-fill", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,round,bubble", + "set_id": 1 + }, + { + "name": "chat-dots-fill", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-slash-fill", + "content": "", + "style": "outline", + "tags": "*new*,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-teardrop-fill", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,bubble", + "set_id": 1 + }, + { + "name": "chat-teardrop-dots-fill", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,bubble", + "set_id": 1 + }, + { + "name": "chat-teardrop-slash-fill", + "content": "", + "style": "outline", + "tags": "*new*,messages,messaging,sms,texting,comment,bubble", + "set_id": 1 + }, + { + "name": "chat-teardrop-text-fill", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,bubble", + "set_id": 1 + }, + { + "name": "chat-text-fill", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chats-fill", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chats-circle-fill", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,round,bubble", + "set_id": 1 + }, + { + "name": "chats-teardrop-fill", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,bubble", + "set_id": 1 + }, + { + "name": "check-fill", + "content": "", + "style": "outline", + "tags": "todo,to-do,task,list,checkbox,ok,done", + "set_id": 1 + }, + { + "name": "check-circle-fill", + "content": "", + "style": "outline", + "tags": "todo,to-do,task,list,checkbox,round,ok,done", + "set_id": 1 + }, + { + "name": "check-fat-fill", + "content": "", + "style": "outline", + "tags": "todo,to-do,task,list,checkbox,ok,done", + "set_id": 1 + }, + { + "name": "check-square-fill", + "content": "", + "style": "outline", + "tags": "todo,to-do,task,list,checkbox,rectangle,ok,done", + "set_id": 1 + }, + { + "name": "check-square-offset-fill", + "content": "", + "style": "outline", + "tags": "*updated*,todo,to-do,task,list,checkbox,rectangle,ok,done", + "set_id": 1 + }, + { + "name": "checkerboard-fill", + "content": "", + "style": "outline", + "tags": "*new*,crossword", + "set_id": 1 + }, + { + "name": "checks-fill", + "content": "", + "style": "outline", + "tags": "*updated*,todo,task,to-do,list,checkbox,ok,done", + "set_id": 1 + }, + { + "name": "cheers-fill", + "content": "", + "style": "outline", + "tags": "*new*,glass,drinks,beverages,champagne,toast,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "cheese-fill", + "content": "", + "style": "outline", + "tags": "*new*,dairy,wedge,food,dining", + "set_id": 1 + }, + { + "name": "chef-hat-fill", + "content": "", + "style": "outline", + "tags": "*new*,cooking,cuisine,kitchen,clothes,clothing", + "set_id": 1 + }, + { + "name": "cherries-fill", + "content": "", + "style": "outline", + "tags": "*new*,food,fruit,cherry,groceries,market", + "set_id": 1 + }, + { + "name": "church-fill", + "content": "", + "style": "outline", + "tags": "christ,christianity,cathedral,religion,worship", + "set_id": 1 + }, + { + "name": "cigarette-fill", + "content": "", + "style": "outline", + "tags": "*new*,smoking,tobacco", + "set_id": 1 + }, + { + "name": "cigarette-slash-fill", + "content": "", + "style": "outline", + "tags": "*new*,non-smoking,tobacco", + "set_id": 1 + }, + { + "name": "circle-fill", + "content": "", + "style": "outline", + "tags": "round,shapes,polygons", + "set_id": 1 + }, + { + "name": "circle-dashed-fill", + "content": "", + "style": "outline", + "tags": "missing,round,shapes,polygons", + "set_id": 1 + }, + { + "name": "circle-half-fill", + "content": "", + "style": "outline", + "tags": "round,shapes,contrast,brightness", + "set_id": 1 + }, + { + "name": "circle-half-tilt-fill", + "content": "", + "style": "outline", + "tags": "round,shapes,contrast,brightness", + "set_id": 1 + }, + { + "name": "circle-notch-fill", + "content": "", + "style": "outline", + "tags": "round,shapes,loading,loader,spinner,waiting,progress", + "set_id": 1 + }, + { + "name": "circles-four-fill", + "content": "", + "style": "outline", + "tags": "round,shapes,polygons,4", + "set_id": 1 + }, + { + "name": "circles-three-fill", + "content": "", + "style": "outline", + "tags": "round,shapes,polygons,3,asana", + "set_id": 1 + }, + { + "name": "circles-three-plus-fill", + "content": "", + "style": "outline", + "tags": "round,shapes,polygons,3,+", + "set_id": 1 + }, + { + "name": "circuitry-fill", + "content": "", + "style": "outline", + "tags": "processor,microchip,computer,circuit,electronics,motherboard", + "set_id": 1 + }, + { + "name": "city-fill", + "content": "", + "style": "outline", + "tags": "*new*,skyline,skyscrapers,places,locations,buildings", + "set_id": 1 + }, + { + "name": "clipboard-fill", + "content": "", + "style": "outline", + "tags": "copy,copied,checklist", + "set_id": 1 + }, + { + "name": "clipboard-text-fill", + "content": "", + "style": "outline", + "tags": "copy,copied,checklist", + "set_id": 1 + }, + { + "name": "clock-fill", + "content": "", + "style": "outline", + "tags": "times,timer,alarm,schedule,events,watch", + "set_id": 1 + }, + { + "name": "clock-afternoon-fill", + "content": "", + "style": "outline", + "tags": "times,timer,alarm,schedule,events,watch", + "set_id": 1 + }, + { + "name": "clock-clockwise-fill", + "content": "", + "style": "outline", + "tags": "times,timer,alarm,schedule,events,restore,fast forward,update", + "set_id": 1 + }, + { + "name": "clock-countdown-fill", + "content": "", + "style": "outline", + "tags": "times,timer,alarm,schedule,events,watch", + "set_id": 1 + }, + { + "name": "clock-counter-clockwise-fill", + "content": "", + "style": "outline", + "tags": "times,timer,alarm,schedule,events,backup,rewind,history", + "set_id": 1 + }, + { + "name": "clock-user-fill", + "content": "", + "style": "outline", + "tags": "*new*,times,timer,shift,schedule,events,watch", + "set_id": 1 + }, + { + "name": "closed-captioning-fill", + "content": "", + "style": "outline", + "tags": "subtitles,television,tv,transcribed,transcription,accessibility,a11y", + "set_id": 1 + }, + { + "name": "cloud-fill", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,meteorology,cloudy,overcast", + "set_id": 1 + }, + { + "name": "cloud-arrow-down-fill", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,download", + "set_id": 1 + }, + { + "name": "cloud-arrow-up-fill", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,upload", + "set_id": 1 + }, + { + "name": "cloud-check-fill", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,sync,synchronized", + "set_id": 1 + }, + { + "name": "cloud-fog-fill", + "content": "", + "style": "outline", + "tags": "meteorology,cloudy,overcast,foggy,mist,haze", + "set_id": 1 + }, + { + "name": "cloud-lightning-fill", + "content": "", + "style": "outline", + "tags": "meteorology,cloudy,overcast,stormy,thunderstorm", + "set_id": 1 + }, + { + "name": "cloud-moon-fill", + "content": "", + "style": "outline", + "tags": "meteorology,cloudy,partly cloudy,night,evening", + "set_id": 1 + }, + { + "name": "cloud-rain-fill", + "content": "", + "style": "outline", + "tags": "meteorology,cloudy,rainy,raining,stormy,rainstorm", + "set_id": 1 + }, + { + "name": "cloud-slash-fill", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,sync,disabled", + "set_id": 1 + }, + { + "name": "cloud-snow-fill", + "content": "", + "style": "outline", + "tags": "meteorology,cloudy,snowy,snowing,stormy,snowstorm", + "set_id": 1 + }, + { + "name": "cloud-sun-fill", + "content": "", + "style": "outline", + "tags": "meteorology,cloudy,partly cloudy,partly sunny", + "set_id": 1 + }, + { + "name": "cloud-warning-fill", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,errors", + "set_id": 1 + }, + { + "name": "cloud-x-fill", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,errors", + "set_id": 1 + }, + { + "name": "clover-fill", + "content": "", + "style": "outline", + "tags": "*new*,four leaf clover,plants,luck,lucky,irish", + "set_id": 1 + }, + { + "name": "club-fill", + "content": "", + "style": "outline", + "tags": "clubs,suits,cards,gambling,casino,gaming", + "set_id": 1 + }, + { + "name": "coat-hanger-fill", + "content": "", + "style": "outline", + "tags": "clothing,clothes,closet", + "set_id": 1 + }, + { + "name": "coda-logo-fill", + "content": "", + "style": "outline", + "tags": "project management,productivity,documentation,wiki,logos", + "set_id": 1 + }, + { + "name": "code-fill", + "content": "", + "style": "outline", + "tags": "angle brackets,angle braces,snippets", + "set_id": 1 + }, + { + "name": "code-block-fill", + "content": "", + "style": "outline", + "tags": "angle brackets,angle braces,snippets", + "set_id": 1 + }, + { + "name": "code-simple-fill", + "content": "", + "style": "outline", + "tags": "angle brackets,angle braces,snippets", + "set_id": 1 + }, + { + "name": "codepen-logo-fill", + "content": "", + "style": "outline", + "tags": "ide,logos", + "set_id": 1 + }, + { + "name": "codesandbox-logo-fill", + "content": "", + "style": "outline", + "tags": "ide,logos", + "set_id": 1 + }, + { + "name": "coffee-fill", + "content": "", + "style": "outline", + "tags": "tea,java,beverages,drinks,cafe,cup,mug,espresso,cappuccino,latte,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "coffee-bean-fill", + "content": "", + "style": "outline", + "tags": "*new*,tea,java,beverages,drinks,cafe,cup,mug,espresso,cappuccino,latte,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "coin-fill", + "content": "", + "style": "outline", + "tags": "coins,cents,change,money,currency,payment,paying,purchase,price,sell", + "set_id": 1 + }, + { + "name": "coin-vertical-fill", + "content": "", + "style": "outline", + "tags": "cents,change,money,currency,payment,paying,purchase,price,sell", + "set_id": 1 + }, + { + "name": "coins-fill", + "content": "", + "style": "outline", + "tags": "cents,change,money,currency,payment,paying,purchase,price,sell", + "set_id": 1 + }, + { + "name": "columns-fill", + "content": "", + "style": "outline", + "tags": "2,shapes,polygons,box,stack,list,table,cards", + "set_id": 1 + }, + { + "name": "columns-plus-left-fill", + "content": "", + "style": "outline", + "tags": "*new*,2,shapes,polygons,box,stack,list,table,cards,prepend,insert", + "set_id": 1 + }, + { + "name": "columns-plus-right-fill", + "content": "", + "style": "outline", + "tags": "*new*,2,shapes,polygons,box,stack,list,table,cards,append,insert", + "set_id": 1 + }, + { + "name": "command-fill", + "content": "", + "style": "outline", + "tags": "apple,keyboard,shortcut,modifier,looped square,bowen knot,saint john's arms", + "set_id": 1 + }, + { + "name": "compass-fill", + "content": "", + "style": "outline", + "tags": "navigation,directions,maps,safari,apple", + "set_id": 1 + }, + { + "name": "compass-rose-fill", + "content": "", + "style": "outline", + "tags": "*new*,navigation,directions,maps,cardinal,cartography", + "set_id": 1 + }, + { + "name": "compass-tool-fill", + "content": "", + "style": "outline", + "tags": "drawing,geometry,trigonometry,degrees,radians,measurement,protractor,compass,arc", + "set_id": 1 + }, + { + "name": "computer-tower-fill", + "content": "", + "style": "outline", + "tags": "desktop,pc,imac", + "set_id": 1 + }, + { + "name": "confetti-fill", + "content": "", + "style": "outline", + "tags": "tada,party,emoji", + "set_id": 1 + }, + { + "name": "contactless-payment-fill", + "content": "", + "style": "outline", + "tags": "purchase,credit card,nfc", + "set_id": 1 + }, + { + "name": "control-fill", + "content": "", + "style": "outline", + "tags": "ctrl,key,keyboard,shortcut,caret", + "set_id": 1 + }, + { + "name": "cookie-fill", + "content": "", + "style": "outline", + "tags": "privacy,dessert,food,dining", + "set_id": 1 + }, + { + "name": "cooking-pot-fill", + "content": "", + "style": "outline", + "tags": "stew,kitchen,steaming,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "copy-fill", + "content": "", + "style": "outline", + "tags": "duplicated,copied,clipboard", + "set_id": 1 + }, + { + "name": "copy-simple-fill", + "content": "", + "style": "outline", + "tags": "duplicated,copied,clipboard", + "set_id": 1 + }, + { + "name": "copyleft-fill", + "content": "", + "style": "outline", + "tags": "🄯,intellectual property,copr.,symbol", + "set_id": 1 + }, + { + "name": "copyright-fill", + "content": "", + "style": "outline", + "tags": "©,intellectual property,copr.,symbol", + "set_id": 1 + }, + { + "name": "corners-in-fill", + "content": "", + "style": "outline", + "tags": "*updated*,collapse,windowed,minimized", + "set_id": 1 + }, + { + "name": "corners-out-fill", + "content": "", + "style": "outline", + "tags": "*updated*,expand,fullscreen,maximized", + "set_id": 1 + }, + { + "name": "couch-fill", + "content": "", + "style": "outline", + "tags": "furniture,seat", + "set_id": 1 + }, + { + "name": "court-basketball-fill", + "content": "", + "style": "outline", + "tags": "*new*,sports,nba", + "set_id": 1 + }, + { + "name": "cow-fill", + "content": "", + "style": "outline", + "tags": "*new*,animals,livestock,beef,bull,milk,dairy", + "set_id": 1 + }, + { + "name": "cowboy-hat-fill", + "content": "", + "style": "outline", + "tags": "*new*,clothes,clothing,stetson", + "set_id": 1 + }, + { + "name": "cpu-fill", + "content": "", + "style": "outline", + "tags": "processor,microchip,computer,circuit", + "set_id": 1 + }, + { + "name": "crane-fill", + "content": "", + "style": "outline", + "tags": "*new*,construction,industry", + "set_id": 1 + }, + { + "name": "crane-tower-fill", + "content": "", + "style": "outline", + "tags": "*new*,construction,industry", + "set_id": 1 + }, + { + "name": "credit-card-fill", + "content": "", + "style": "outline", + "tags": "debit,visa,mastercard,money,payment,paying,purchase,swipe", + "set_id": 1 + }, + { + "name": "cricket-fill", + "content": "", + "style": "outline", + "tags": "*new*,sports,ball,bat", + "set_id": 1 + }, + { + "name": "crop-fill", + "content": "", + "style": "outline", + "tags": "photography,clip,screenshots", + "set_id": 1 + }, + { + "name": "cross-fill", + "content": "", + "style": "outline", + "tags": "dagger,crucifix,christ,christianity,religion,worship,symbol", + "set_id": 1 + }, + { + "name": "crosshair-fill", + "content": "", + "style": "outline", + "tags": "geolocation,gps,aiming,targeting", + "set_id": 1 + }, + { + "name": "crosshair-simple-fill", + "content": "", + "style": "outline", + "tags": "geolocation,gps,aiming,targeting", + "set_id": 1 + }, + { + "name": "crown-fill", + "content": "", + "style": "outline", + "tags": "*updated*,king,queen,royalty,monarch,ruler,leader,chess", + "set_id": 1 + }, + { + "name": "crown-cross-fill", + "content": "", + "style": "outline", + "tags": "*new*,king,queen,royalty,monarch,ruler,leader,chess", + "set_id": 1 + }, + { + "name": "crown-simple-fill", + "content": "", + "style": "outline", + "tags": "*updated*,king,queen,royalty,monarch,ruler,leader,chess", + "set_id": 1 + }, + { + "name": "cube-fill", + "content": "", + "style": "outline", + "tags": "square,box,3d,volume,blocks", + "set_id": 1 + }, + { + "name": "cube-focus-fill", + "content": "", + "style": "outline", + "tags": "augmented reality,ar,virual reality,vr,3d,scan", + "set_id": 1 + }, + { + "name": "cube-transparent-fill", + "content": "", + "style": "outline", + "tags": "square,box,3d,volume,blocks,necker", + "set_id": 1 + }, + { + "name": "currency-btc-fill", + "content": "", + "style": "outline", + "tags": "money,btc,bitcoin,crypto,cryptocurrency,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-circle-dollar-fill", + "content": "", + "style": "outline", + "tags": "money,usd,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-cny-fill", + "content": "", + "style": "outline", + "tags": "money,yuan,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-dollar-fill", + "content": "", + "style": "outline", + "tags": "money,usd,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-dollar-simple-fill", + "content": "", + "style": "outline", + "tags": "money,usd,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-eth-fill", + "content": "", + "style": "outline", + "tags": "money,ethereum,crypto,cryptocurrency,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-eur-fill", + "content": "", + "style": "outline", + "tags": "money,euros,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-gbp-fill", + "content": "", + "style": "outline", + "tags": "money,pounds sterling,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-inr-fill", + "content": "", + "style": "outline", + "tags": "money,rupees,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-jpy-fill", + "content": "", + "style": "outline", + "tags": "money,yen,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-krw-fill", + "content": "", + "style": "outline", + "tags": "money,won,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-kzt-fill", + "content": "", + "style": "outline", + "tags": "money,kazakhstan,tenge,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-ngn-fill", + "content": "", + "style": "outline", + "tags": "money,nigeria,naira,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-rub-fill", + "content": "", + "style": "outline", + "tags": "money,rubles,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "cursor-fill", + "content": "", + "style": "outline", + "tags": "pointer,arrowhead,mouse,click", + "set_id": 1 + }, + { + "name": "cursor-click-fill", + "content": "", + "style": "outline", + "tags": "pointer,arrowhead,mouse", + "set_id": 1 + }, + { + "name": "cursor-text-fill", + "content": "", + "style": "outline", + "tags": "i-beam,input,select", + "set_id": 1 + }, + { + "name": "cylinder-fill", + "content": "", + "style": "outline", + "tags": "shapes,tube", + "set_id": 1 + }, + { + "name": "database-fill", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,hard disk,storage,hdd,servers,databases", + "set_id": 1 + }, + { + "name": "desk-fill", + "content": "", + "style": "outline", + "tags": "*new*,furniture,workspace,table", + "set_id": 1 + }, + { + "name": "desktop-fill", + "content": "", + "style": "outline", + "tags": "computer,pc,imac,tower", + "set_id": 1 + }, + { + "name": "desktop-tower-fill", + "content": "", + "style": "outline", + "tags": "*updated*,computer,pc,imac", + "set_id": 1 + }, + { + "name": "detective-fill", + "content": "", + "style": "outline", + "tags": "incognito,police,law enforcement,spy,secret", + "set_id": 1 + }, + { + "name": "dev-to-logo-fill", + "content": "", + "style": "outline", + "tags": "reading,writing,social media,logos", + "set_id": 1 + }, + { + "name": "device-mobile-fill", + "content": "", + "style": "outline", + "tags": "cellphone,cellular", + "set_id": 1 + }, + { + "name": "device-mobile-camera-fill", + "content": "", + "style": "outline", + "tags": "cellphone,cellular", + "set_id": 1 + }, + { + "name": "device-mobile-slash-fill", + "content": "", + "style": "outline", + "tags": "*new*,cellphone,cellular", + "set_id": 1 + }, + { + "name": "device-mobile-speaker-fill", + "content": "", + "style": "outline", + "tags": "cellphone,cellular", + "set_id": 1 + }, + { + "name": "device-rotate-fill", + "content": "", + "style": "outline", + "tags": "*new*,orientation,landscape,portrait,spin,flip", + "set_id": 1 + }, + { + "name": "device-tablet-fill", + "content": "", + "style": "outline", + "tags": "cellphone,cellular,ipad,phablet", + "set_id": 1 + }, + { + "name": "device-tablet-camera-fill", + "content": "", + "style": "outline", + "tags": "cellphone,cellular,ipad,phablet", + "set_id": 1 + }, + { + "name": "device-tablet-speaker-fill", + "content": "", + "style": "outline", + "tags": "cellphone,cellular,ipad,phablet", + "set_id": 1 + }, + { + "name": "devices-fill", + "content": "", + "style": "outline", + "tags": "responsive,cellphone,cellular,tablet,destop", + "set_id": 1 + }, + { + "name": "diamond-fill", + "content": "", + "style": "outline", + "tags": "rectangle,shapes,polygons,diamonds,suits,cards,gambling,casino,gaming", + "set_id": 1 + }, + { + "name": "diamonds-four-fill", + "content": "", + "style": "outline", + "tags": "shapes,grid,component", + "set_id": 1 + }, + { + "name": "dice-five-fill", + "content": "", + "style": "outline", + "tags": "die,rolling,gamble,gambling,casino,gaming,5", + "set_id": 1 + }, + { + "name": "dice-four-fill", + "content": "", + "style": "outline", + "tags": "die,rolling,gamble,gambling,casino,gaming,4", + "set_id": 1 + }, + { + "name": "dice-one-fill", + "content": "", + "style": "outline", + "tags": "die,rolling,gamble,gambling,casino,gaming,1", + "set_id": 1 + }, + { + "name": "dice-six-fill", + "content": "", + "style": "outline", + "tags": "die,rolling,gamble,gambling,casino,gaming,6", + "set_id": 1 + }, + { + "name": "dice-three-fill", + "content": "", + "style": "outline", + "tags": "die,rolling,gamble,gambling,casino,gaming,3", + "set_id": 1 + }, + { + "name": "dice-two-fill", + "content": "", + "style": "outline", + "tags": "die,rolling,gamble,gambling,casino,gaming,2", + "set_id": 1 + }, + { + "name": "disc-fill", + "content": "", + "style": "outline", + "tags": "cd-rom,compact disk,album,record", + "set_id": 1 + }, + { + "name": "disco-ball-fill", + "content": "", + "style": "outline", + "tags": "*new*,danging,club,70s", + "set_id": 1 + }, + { + "name": "discord-logo-fill", + "content": "", + "style": "outline", + "tags": "logos,messages,messaging,chat", + "set_id": 1 + }, + { + "name": "divide-fill", + "content": "", + "style": "outline", + "tags": "division,divisor,dividend,quotient,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "dna-fill", + "content": "", + "style": "outline", + "tags": "double helix,gene,genetics", + "set_id": 1 + }, + { + "name": "dog-fill", + "content": "", + "style": "outline", + "tags": "pets,animals,puppy", + "set_id": 1 + }, + { + "name": "door-fill", + "content": "", + "style": "outline", + "tags": "entrance,exit", + "set_id": 1 + }, + { + "name": "door-open-fill", + "content": "", + "style": "outline", + "tags": "entrance,exit", + "set_id": 1 + }, + { + "name": "dot-fill", + "content": "", + "style": "outline", + "tags": "dots,circles,shapes,polygons", + "set_id": 1 + }, + { + "name": "dot-outline-fill", + "content": "", + "style": "outline", + "tags": "dots,circles,shapes,polygons", + "set_id": 1 + }, + { + "name": "dots-nine-fill", + "content": "", + "style": "outline", + "tags": "grid,circles,shapes,polygons,9", + "set_id": 1 + }, + { + "name": "dots-six-fill", + "content": "", + "style": "outline", + "tags": "*updated*,drag handle,knurling,circles,shapes,polygons,6", + "set_id": 1 + }, + { + "name": "dots-six-vertical-fill", + "content": "", + "style": "outline", + "tags": "*updated*,drag handle,knurling,circles,shapes,polygons,6", + "set_id": 1 + }, + { + "name": "dots-three-fill", + "content": "", + "style": "outline", + "tags": "menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more", + "set_id": 1 + }, + { + "name": "dots-three-circle-fill", + "content": "", + "style": "outline", + "tags": "menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more", + "set_id": 1 + }, + { + "name": "dots-three-circle-vertical-fill", + "content": "", + "style": "outline", + "tags": "menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more", + "set_id": 1 + }, + { + "name": "dots-three-outline-fill", + "content": "", + "style": "outline", + "tags": "menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more", + "set_id": 1 + }, + { + "name": "dots-three-outline-vertical-fill", + "content": "", + "style": "outline", + "tags": "menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more", + "set_id": 1 + }, + { + "name": "dots-three-vertical-fill", + "content": "", + "style": "outline", + "tags": "menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more", + "set_id": 1 + }, + { + "name": "download-fill", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,downloaded,downloading,hard drive,disk", + "set_id": 1 + }, + { + "name": "download-simple-fill", + "content": "", + "style": "outline", + "tags": "*updated*,saved,saving,archived,archiving,archival,downloaded,downloading,hard drive,disk,import", + "set_id": 1 + }, + { + "name": "dress-fill", + "content": "", + "style": "outline", + "tags": "clothes,clothing", + "set_id": 1 + }, + { + "name": "dresser-fill", + "content": "", + "style": "outline", + "tags": "*new*,furniture,bedroom,storage,drawers,wardrobe", + "set_id": 1 + }, + { + "name": "dribbble-logo-fill", + "content": "", + "style": "outline", + "tags": "logos,round,basketball,sports,design", + "set_id": 1 + }, + { + "name": "drone-fill", + "content": "", + "style": "outline", + "tags": "*new*,aerial,uav,photography,remote", + "set_id": 1 + }, + { + "name": "drop-fill", + "content": "", + "style": "outline", + "tags": "droplet,teardrop,raindrop,raining,meteorology,water,blur", + "set_id": 1 + }, + { + "name": "drop-half-fill", + "content": "", + "style": "outline", + "tags": "droplet,teardrop,raindrop,humidity,water,contrast,brightness", + "set_id": 1 + }, + { + "name": "drop-half-bottom-fill", + "content": "", + "style": "outline", + "tags": "droplet,teardrop,raindrop,humidity,water,contrast,brightness", + "set_id": 1 + }, + { + "name": "drop-simple-fill", + "content": "", + "style": "outline", + "tags": "*new*,droplet,teardrop,raindrop,raining,humidity,meteorology,water,blur", + "set_id": 1 + }, + { + "name": "drop-slash-fill", + "content": "", + "style": "outline", + "tags": "*new*,droplet,teardrop,raindrop,raining,humidity,meteorology,water,blur,disabled", + "set_id": 1 + }, + { + "name": "dropbox-logo-fill", + "content": "", + "style": "outline", + "tags": "cloud,storage,backup,logos", + "set_id": 1 + }, + { + "name": "ear-fill", + "content": "", + "style": "outline", + "tags": "hearing,audio,sound", + "set_id": 1 + }, + { + "name": "ear-slash-fill", + "content": "", + "style": "outline", + "tags": "hearing,audio,sound,mute,accessible", + "set_id": 1 + }, + { + "name": "egg-fill", + "content": "", + "style": "outline", + "tags": "chicken,food,meal,baby,hatch", + "set_id": 1 + }, + { + "name": "egg-crack-fill", + "content": "", + "style": "outline", + "tags": "chicken,food,meal,baby,hatch,break", + "set_id": 1 + }, + { + "name": "eject-fill", + "content": "", + "style": "outline", + "tags": "disconnect", + "set_id": 1 + }, + { + "name": "eject-simple-fill", + "content": "", + "style": "outline", + "tags": "disconnect", + "set_id": 1 + }, + { + "name": "elevator-fill", + "content": "", + "style": "outline", + "tags": "lift", + "set_id": 1 + }, + { + "name": "empty-fill", + "content": "", + "style": "outline", + "tags": "*new*,∅,empty set,member,mathematics,arithmetic,calculator,null", + "set_id": 1 + }, + { + "name": "engine-fill", + "content": "", + "style": "outline", + "tags": "*updated*,motor,repair,vehicles,automobile", + "set_id": 1 + }, + { + "name": "envelope-fill", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,message,post,letter", + "set_id": 1 + }, + { + "name": "envelope-open-fill", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,message,read,post,letter", + "set_id": 1 + }, + { + "name": "envelope-simple-fill", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,message,post,letter", + "set_id": 1 + }, + { + "name": "envelope-simple-open-fill", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,message,read,post,letter", + "set_id": 1 + }, + { + "name": "equalizer-fill", + "content": "", + "style": "outline", + "tags": "music,audio,meter,volume,spectrum,eq,deezer", + "set_id": 1 + }, + { + "name": "equals-fill", + "content": "", + "style": "outline", + "tags": "=,equality,equivalent,equivalence,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "eraser-fill", + "content": "", + "style": "outline", + "tags": "write,writing,editing,undo,deleted", + "set_id": 1 + }, + { + "name": "escalator-down-fill", + "content": "", + "style": "outline", + "tags": "stairs", + "set_id": 1 + }, + { + "name": "escalator-up-fill", + "content": "", + "style": "outline", + "tags": "stairs", + "set_id": 1 + }, + { + "name": "exam-fill", + "content": "", + "style": "outline", + "tags": "text,examination,paper,school,grade", + "set_id": 1 + }, + { + "name": "exclamation-mark-fill", + "content": "", + "style": "outline", + "tags": "*new*,!,alert,warning,caution,interjection,punctuation,symbol", + "set_id": 1 + }, + { + "name": "exclude-fill", + "content": "", + "style": "outline", + "tags": "venn-diagram,difference,intersection", + "set_id": 1 + }, + { + "name": "exclude-square-fill", + "content": "", + "style": "outline", + "tags": "venn-diagram,difference,intersection", + "set_id": 1 + }, + { + "name": "export-fill", + "content": "", + "style": "outline", + "tags": "share,send to,arrows", + "set_id": 1 + }, + { + "name": "eye-fill", + "content": "", + "style": "outline", + "tags": "visible,hidden,show,hide,visibility,view", + "set_id": 1 + }, + { + "name": "eye-closed-fill", + "content": "", + "style": "outline", + "tags": "visible,hidden,show,hide,visibility,view,invisible,private", + "set_id": 1 + }, + { + "name": "eye-slash-fill", + "content": "", + "style": "outline", + "tags": "visible,hidden,show,hide,visibility,view,invisible,eyelashes,disabled,private", + "set_id": 1 + }, + { + "name": "eyedropper-fill", + "content": "", + "style": "outline", + "tags": "colors,color picker,sample,arts", + "set_id": 1 + }, + { + "name": "eyedropper-sample-fill", + "content": "", + "style": "outline", + "tags": "colors,color picker,arts", + "set_id": 1 + }, + { + "name": "eyeglasses-fill", + "content": "", + "style": "outline", + "tags": "vision,spectacles", + "set_id": 1 + }, + { + "name": "eyes-fill", + "content": "", + "style": "outline", + "tags": "*new*,look,glance", + "set_id": 1 + }, + { + "name": "face-mask-fill", + "content": "", + "style": "outline", + "tags": "ppe,facemask,covid-19,coronavirus,flu,cold", + "set_id": 1 + }, + { + "name": "facebook-logo-fill", + "content": "", + "style": "outline", + "tags": "logos,social media", + "set_id": 1 + }, + { + "name": "factory-fill", + "content": "", + "style": "outline", + "tags": "industry,manufacture,buildings,places,locations", + "set_id": 1 + }, + { + "name": "faders-fill", + "content": "", + "style": "outline", + "tags": "music,audio,sliders,filters,equalizer,volume,settings,preferences", + "set_id": 1 + }, + { + "name": "faders-horizontal-fill", + "content": "", + "style": "outline", + "tags": "music,audio,sliders,filters,equalizer,volume,settings,preferences", + "set_id": 1 + }, + { + "name": "fallout-shelter-fill", + "content": "", + "style": "outline", + "tags": "*new*,radiation,radioactive,nuclear,bunker,contamination,quarantine,toxic,danger,caution", + "set_id": 1 + }, + { + "name": "fan-fill", + "content": "", + "style": "outline", + "tags": "desk fan,air conditioning", + "set_id": 1 + }, + { + "name": "farm-fill", + "content": "", + "style": "outline", + "tags": "*new*,farmer,field,farming,agriculture", + "set_id": 1 + }, + { + "name": "fast-forward-fill", + "content": "", + "style": "outline", + "tags": "audio,music,seek,scrub,scan,ahead,skip", + "set_id": 1 + }, + { + "name": "fast-forward-circle-fill", + "content": "", + "style": "outline", + "tags": "audio,music,seek,scrub,scan,ahead,skip", + "set_id": 1 + }, + { + "name": "feather-fill", + "content": "", + "style": "outline", + "tags": "bird", + "set_id": 1 + }, + { + "name": "fediverse-logo-fill", + "content": "", + "style": "outline", + "tags": "*new*,social media,decentralized", + "set_id": 1 + }, + { + "name": "figma-logo-fill", + "content": "", + "style": "outline", + "tags": "*updated*,logos,drawing,art,illustration,ui,interface,prototype,prototyping", + "set_id": 1 + }, + { + "name": "file-fill", + "content": "", + "style": "outline", + "tags": "documents,files,save,write,page", + "set_id": 1 + }, + { + "name": "file-archive-fill", + "content": "", + "style": "outline", + "tags": "documents,zip,compression", + "set_id": 1 + }, + { + "name": "file-arrow-down-fill", + "content": "", + "style": "outline", + "tags": "documents,files,save,write,download,directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "file-arrow-up-fill", + "content": "", + "style": "outline", + "tags": "documents,files,save,write,upload,directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "file-audio-fill", + "content": "", + "style": "outline", + "tags": "documents,music,sound", + "set_id": 1 + }, + { + "name": "file-c-fill", + "content": "", + "style": "outline", + "tags": "*new*,documents,code", + "set_id": 1 + }, + { + "name": "file-c-sharp-fill", + "content": "", + "style": "outline", + "tags": "*new*,documents,code,c#", + "set_id": 1 + }, + { + "name": "file-cloud-fill", + "content": "", + "style": "outline", + "tags": "documents,sync", + "set_id": 1 + }, + { + "name": "file-code-fill", + "content": "", + "style": "outline", + "tags": "documents", + "set_id": 1 + }, + { + "name": "file-cpp-fill", + "content": "", + "style": "outline", + "tags": "*new*,documents,code,c++", + "set_id": 1 + }, + { + "name": "file-css-fill", + "content": "", + "style": "outline", + "tags": "documents,code", + "set_id": 1 + }, + { + "name": "file-csv-fill", + "content": "", + "style": "outline", + "tags": "documents,data", + "set_id": 1 + }, + { + "name": "file-dashed-fill", + "content": "", + "style": "outline", + "tags": "documents,files,browse,draft,open,dotted", + "set_id": 1 + }, + { + "name": "file-doc-fill", + "content": "", + "style": "outline", + "tags": "documents,word,microsoft", + "set_id": 1 + }, + { + "name": "file-html-fill", + "content": "", + "style": "outline", + "tags": "*updated*,documents,code", + "set_id": 1 + }, + { + "name": "file-image-fill", + "content": "", + "style": "outline", + "tags": "documents,pictures,photograph", + "set_id": 1 + }, + { + "name": "file-ini-fill", + "content": "", + "style": "outline", + "tags": "*new*,documents", + "set_id": 1 + }, + { + "name": "file-jpg-fill", + "content": "", + "style": "outline", + "tags": "documents,pictures,photograph,jpeg", + "set_id": 1 + }, + { + "name": "file-js-fill", + "content": "", + "style": "outline", + "tags": "documents,code,javascript", + "set_id": 1 + }, + { + "name": "file-jsx-fill", + "content": "", + "style": "outline", + "tags": "documents,code,javascript", + "set_id": 1 + }, + { + "name": "file-lock-fill", + "content": "", + "style": "outline", + "tags": "documents,secure,locked,private", + "set_id": 1 + }, + { + "name": "file-magnifying-glass-fill", + "content": "", + "style": "outline", + "tags": "documents,files,search,find,locate,browse,missing", + "set_id": 1 + }, + { + "name": "file-md-fill", + "content": "", + "style": "outline", + "tags": "*new*,documents,notes,markdown", + "set_id": 1 + }, + { + "name": "file-minus-fill", + "content": "", + "style": "outline", + "tags": "documents,files,delete,write,remove,-", + "set_id": 1 + }, + { + "name": "file-pdf-fill", + "content": "", + "style": "outline", + "tags": "documents,files,acrobat", + "set_id": 1 + }, + { + "name": "file-plus-fill", + "content": "", + "style": "outline", + "tags": "documents,files,save,write,add,new,create,+", + "set_id": 1 + }, + { + "name": "file-png-fill", + "content": "", + "style": "outline", + "tags": "documents,pictures,photograph", + "set_id": 1 + }, + { + "name": "file-ppt-fill", + "content": "", + "style": "outline", + "tags": "documents,powerpoint,microsoft", + "set_id": 1 + }, + { + "name": "file-py-fill", + "content": "", + "style": "outline", + "tags": "*new*,documents,code,python", + "set_id": 1 + }, + { + "name": "file-rs-fill", + "content": "", + "style": "outline", + "tags": "documents,code,rust", + "set_id": 1 + }, + { + "name": "file-sql-fill", + "content": "", + "style": "outline", + "tags": "documents,database", + "set_id": 1 + }, + { + "name": "file-svg-fill", + "content": "", + "style": "outline", + "tags": "documents,images,vector", + "set_id": 1 + }, + { + "name": "file-text-fill", + "content": "", + "style": "outline", + "tags": "documents,files,save,write", + "set_id": 1 + }, + { + "name": "file-ts-fill", + "content": "", + "style": "outline", + "tags": "documents,code,typescript", + "set_id": 1 + }, + { + "name": "file-tsx-fill", + "content": "", + "style": "outline", + "tags": "documents,code,typescript", + "set_id": 1 + }, + { + "name": "file-txt-fill", + "content": "", + "style": "outline", + "tags": "*new*,documents", + "set_id": 1 + }, + { + "name": "file-video-fill", + "content": "", + "style": "outline", + "tags": "documents,movie", + "set_id": 1 + }, + { + "name": "file-vue-fill", + "content": "", + "style": "outline", + "tags": "documents,code", + "set_id": 1 + }, + { + "name": "file-x-fill", + "content": "", + "style": "outline", + "tags": "documents,files,cancelled,deleted,removed,errors", + "set_id": 1 + }, + { + "name": "file-xls-fill", + "content": "", + "style": "outline", + "tags": "documents,excel,microsoft", + "set_id": 1 + }, + { + "name": "file-zip-fill", + "content": "", + "style": "outline", + "tags": "documents,archive,compression", + "set_id": 1 + }, + { + "name": "files-fill", + "content": "", + "style": "outline", + "tags": "documents,open,library", + "set_id": 1 + }, + { + "name": "film-reel-fill", + "content": "", + "style": "outline", + "tags": "videography,films,movies,recording", + "set_id": 1 + }, + { + "name": "film-script-fill", + "content": "", + "style": "outline", + "tags": "screenplay,movie", + "set_id": 1 + }, + { + "name": "film-slate-fill", + "content": "", + "style": "outline", + "tags": "*updated*,clapper,movie", + "set_id": 1 + }, + { + "name": "film-strip-fill", + "content": "", + "style": "outline", + "tags": "camera,photography,darkroom,movie,analog", + "set_id": 1 + }, + { + "name": "fingerprint-fill", + "content": "", + "style": "outline", + "tags": "security,secured,authentication,authenticated,login,locked,biometrics,encrypted,encryption", + "set_id": 1 + }, + { + "name": "fingerprint-simple-fill", + "content": "", + "style": "outline", + "tags": "security,secured,authentication,authenticated,login,locked,biometrics,encrypted,encryption", + "set_id": 1 + }, + { + "name": "finn-the-human-fill", + "content": "", + "style": "outline", + "tags": "adventure time,cartoons,television,tv,character", + "set_id": 1 + }, + { + "name": "fire-fill", + "content": "", + "style": "outline", + "tags": "flame,burning,match,lighter", + "set_id": 1 + }, + { + "name": "fire-extinguisher-fill", + "content": "", + "style": "outline", + "tags": "safety,prevention,emergency,hazard,danger,caution", + "set_id": 1 + }, + { + "name": "fire-simple-fill", + "content": "", + "style": "outline", + "tags": "flame,burning,match,lighter", + "set_id": 1 + }, + { + "name": "fire-truck-fill", + "content": "", + "style": "outline", + "tags": "*new*,first-aid,emt,medical,medicine,injury,safety,emergency,firefighter", + "set_id": 1 + }, + { + "name": "first-aid-fill", + "content": "", + "style": "outline", + "tags": "hospital,cross,medical,medicine,injury,safety,emergency,doctor", + "set_id": 1 + }, + { + "name": "first-aid-kit-fill", + "content": "", + "style": "outline", + "tags": "bandages,medical,medicine,injury,safety,emergency,doctor", + "set_id": 1 + }, + { + "name": "fish-fill", + "content": "", + "style": "outline", + "tags": "animals,pets,food,seafood,restaurants,dining", + "set_id": 1 + }, + { + "name": "fish-simple-fill", + "content": "", + "style": "outline", + "tags": "animals,pets,food,seafood,restaurants,dining", + "set_id": 1 + }, + { + "name": "flag-fill", + "content": "", + "style": "outline", + "tags": "country,countries,finished,completed,flags", + "set_id": 1 + }, + { + "name": "flag-banner-fill", + "content": "", + "style": "outline", + "tags": "ribbon,country,countries,finished,completed,flags,swallowtail", + "set_id": 1 + }, + { + "name": "flag-banner-fold-fill", + "content": "", + "style": "outline", + "tags": "*new*,ribbon,country,countries,finished,completed,flags,swallowtail", + "set_id": 1 + }, + { + "name": "flag-checkered-fill", + "content": "", + "style": "outline", + "tags": "flags,race,racing,finish line", + "set_id": 1 + }, + { + "name": "flag-pennant-fill", + "content": "", + "style": "outline", + "tags": "flags,race,sports,team", + "set_id": 1 + }, + { + "name": "flame-fill", + "content": "", + "style": "outline", + "tags": "fire,burning,match,lighter", + "set_id": 1 + }, + { + "name": "flashlight-fill", + "content": "", + "style": "outline", + "tags": "torch,find,search,locate", + "set_id": 1 + }, + { + "name": "flask-fill", + "content": "", + "style": "outline", + "tags": "beaker,science,chemistry,experiment,erlenmeyer", + "set_id": 1 + }, + { + "name": "flip-horizontal-fill", + "content": "", + "style": "outline", + "tags": "*new*,mirror,rotate,invert", + "set_id": 1 + }, + { + "name": "flip-vertical-fill", + "content": "", + "style": "outline", + "tags": "*new*,mirror,rotate,invert", + "set_id": 1 + }, + { + "name": "floppy-disk-fill", + "content": "", + "style": "outline", + "tags": "diskette,directory,directories,folders,documents,files,save,write", + "set_id": 1 + }, + { + "name": "floppy-disk-back-fill", + "content": "", + "style": "outline", + "tags": "*updated*,diskette,directory,directories,folders,documents,files,save,write", + "set_id": 1 + }, + { + "name": "flow-arrow-fill", + "content": "", + "style": "outline", + "tags": "*updated*,flowchart,arrowhead", + "set_id": 1 + }, + { + "name": "flower-fill", + "content": "", + "style": "outline", + "tags": "plants,green,environmental", + "set_id": 1 + }, + { + "name": "flower-lotus-fill", + "content": "", + "style": "outline", + "tags": "plants,green,environmental,spirituality", + "set_id": 1 + }, + { + "name": "flower-tulip-fill", + "content": "", + "style": "outline", + "tags": "plants,green,environmental", + "set_id": 1 + }, + { + "name": "flying-saucer-fill", + "content": "", + "style": "outline", + "tags": "ufo,space,aliens,extra terrestrial,sci-fi", + "set_id": 1 + }, + { + "name": "folder-fill", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders", + "set_id": 1 + }, + { + "name": "folder-dashed-fill", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,missing,temporary,dotted", + "set_id": 1 + }, + { + "name": "folder-lock-fill", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,private,secure", + "set_id": 1 + }, + { + "name": "folder-minus-fill", + "content": "", + "style": "outline", + "tags": "directory,directories,files,delete,write,remove,-", + "set_id": 1 + }, + { + "name": "folder-open-fill", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,load", + "set_id": 1 + }, + { + "name": "folder-plus-fill", + "content": "", + "style": "outline", + "tags": "directory,directories,files,save,write,add,new,create,+", + "set_id": 1 + }, + { + "name": "folder-simple-fill", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders", + "set_id": 1 + }, + { + "name": "folder-simple-dashed-fill", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,missing,temporary,dotted", + "set_id": 1 + }, + { + "name": "folder-simple-lock-fill", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,private,secure", + "set_id": 1 + }, + { + "name": "folder-simple-minus-fill", + "content": "", + "style": "outline", + "tags": "directory,directories,files,delete,write,remove,-", + "set_id": 1 + }, + { + "name": "folder-simple-plus-fill", + "content": "", + "style": "outline", + "tags": "directory,directories,files,save,write,add,new,create,+", + "set_id": 1 + }, + { + "name": "folder-simple-star-fill", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,favorite,starred", + "set_id": 1 + }, + { + "name": "folder-simple-user-fill", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,personal", + "set_id": 1 + }, + { + "name": "folder-star-fill", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,favorite,starred", + "set_id": 1 + }, + { + "name": "folder-user-fill", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,personal", + "set_id": 1 + }, + { + "name": "folders-fill", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,copy,copied,duplicated", + "set_id": 1 + }, + { + "name": "football-fill", + "content": "", + "style": "outline", + "tags": "sports,american football,nfl", + "set_id": 1 + }, + { + "name": "football-helmet-fill", + "content": "", + "style": "outline", + "tags": "*new*,sports,american football,nfl", + "set_id": 1 + }, + { + "name": "footprints-fill", + "content": "", + "style": "outline", + "tags": "path,trail,walk,route,hike,hiking", + "set_id": 1 + }, + { + "name": "fork-knife-fill", + "content": "", + "style": "outline", + "tags": "food,meal,eating,restaurants,dining,utensils", + "set_id": 1 + }, + { + "name": "four-k-fill", + "content": "", + "style": "outline", + "tags": "*new*,uhd,resolution,video", + "set_id": 1 + }, + { + "name": "frame-corners-fill", + "content": "", + "style": "outline", + "tags": "expand,fullscreen,maximized,resize,windowed,capture", + "set_id": 1 + }, + { + "name": "framer-logo-fill", + "content": "", + "style": "outline", + "tags": "logos,interface,ui,motion,prototype,prototyping", + "set_id": 1 + }, + { + "name": "function-fill", + "content": "", + "style": "outline", + "tags": "mathematics,arithmetic,f-stop", + "set_id": 1 + }, + { + "name": "funnel-fill", + "content": "", + "style": "outline", + "tags": "filters,refine,sorting", + "set_id": 1 + }, + { + "name": "funnel-simple-fill", + "content": "", + "style": "outline", + "tags": "filters,refine,sorting", + "set_id": 1 + }, + { + "name": "funnel-simple-x-fill", + "content": "", + "style": "outline", + "tags": "*new*,filters,refine,sorting", + "set_id": 1 + }, + { + "name": "funnel-x-fill", + "content": "", + "style": "outline", + "tags": "*new*,filters,refine,sorting", + "set_id": 1 + }, + { + "name": "game-controller-fill", + "content": "", + "style": "outline", + "tags": "gaming,video games,nintendo switch,sony playstation,microsoft xbox", + "set_id": 1 + }, + { + "name": "garage-fill", + "content": "", + "style": "outline", + "tags": "vehicles,automobile,buildings,transportation", + "set_id": 1 + }, + { + "name": "gas-can-fill", + "content": "", + "style": "outline", + "tags": "jerrycan,petrol,fuel,gasoline", + "set_id": 1 + }, + { + "name": "gas-pump-fill", + "content": "", + "style": "outline", + "tags": "gas station,petrol,fuel,gasoline", + "set_id": 1 + }, + { + "name": "gauge-fill", + "content": "", + "style": "outline", + "tags": "dashboard,meter,speed,speedometer,odometer,performance", + "set_id": 1 + }, + { + "name": "gavel-fill", + "content": "", + "style": "outline", + "tags": "judge,justice,legal,law,court,hammer,government", + "set_id": 1 + }, + { + "name": "gear-fill", + "content": "", + "style": "outline", + "tags": "8,settings,setup,preferences,cogs,gears,machinery,mechanical", + "set_id": 1 + }, + { + "name": "gear-fine-fill", + "content": "", + "style": "outline", + "tags": "setup,preferences,cogs,gears,machinery,mechanical", + "set_id": 1 + }, + { + "name": "gear-six-fill", + "content": "", + "style": "outline", + "tags": "6,settings,setup,preferences,cogs,gears,machinery,mechanical", + "set_id": 1 + }, + { + "name": "gender-female-fill", + "content": "", + "style": "outline", + "tags": "woman,feminine,venus", + "set_id": 1 + }, + { + "name": "gender-intersex-fill", + "content": "", + "style": "outline", + "tags": "transgender,non-binary", + "set_id": 1 + }, + { + "name": "gender-male-fill", + "content": "", + "style": "outline", + "tags": "man,masculine,mars", + "set_id": 1 + }, + { + "name": "gender-neuter-fill", + "content": "", + "style": "outline", + "tags": "agender,non-binary,asexual", + "set_id": 1 + }, + { + "name": "gender-nonbinary-fill", + "content": "", + "style": "outline", + "tags": "intersex,non-binary", + "set_id": 1 + }, + { + "name": "gender-transgender-fill", + "content": "", + "style": "outline", + "tags": "intersex,non-binary", + "set_id": 1 + }, + { + "name": "ghost-fill", + "content": "", + "style": "outline", + "tags": "pac-man,spirit,scary,halloween", + "set_id": 1 + }, + { + "name": "gif-fill", + "content": "", + "style": "outline", + "tags": "gifs,.gif,giphy", + "set_id": 1 + }, + { + "name": "gift-fill", + "content": "", + "style": "outline", + "tags": "presents,holiday,birthday", + "set_id": 1 + }, + { + "name": "git-branch-fill", + "content": "", + "style": "outline", + "tags": "*updated*,github,vcs,source control,version control,versioning,branches", + "set_id": 1 + }, + { + "name": "git-commit-fill", + "content": "", + "style": "outline", + "tags": "github,vcs,source control,version control,versioning,commits", + "set_id": 1 + }, + { + "name": "git-diff-fill", + "content": "", + "style": "outline", + "tags": "*updated*,github,vcs,source control,version control,versioning,difference,compare", + "set_id": 1 + }, + { + "name": "git-fork-fill", + "content": "", + "style": "outline", + "tags": "*updated*,github,vcs,source control,version control,versioning,split", + "set_id": 1 + }, + { + "name": "git-merge-fill", + "content": "", + "style": "outline", + "tags": "*updated*,github,vcs,source control,version control,versioning,split", + "set_id": 1 + }, + { + "name": "git-pull-request-fill", + "content": "", + "style": "outline", + "tags": "*updated*,github,vcs,source control,version control,versioning,merge request", + "set_id": 1 + }, + { + "name": "github-logo-fill", + "content": "", + "style": "outline", + "tags": "octocat,vcs,source control,version control,versioning,branches", + "set_id": 1 + }, + { + "name": "gitlab-logo-fill", + "content": "", + "style": "outline", + "tags": "vcs,source control,version control,versioning,branches", + "set_id": 1 + }, + { + "name": "gitlab-logo-simple-fill", + "content": "", + "style": "outline", + "tags": "vcs,source control,version control,versioning,branches", + "set_id": 1 + }, + { + "name": "globe-fill", + "content": "", + "style": "outline", + "tags": "world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography,internet", + "set_id": 1 + }, + { + "name": "globe-hemisphere-east-fill", + "content": "", + "style": "outline", + "tags": "world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography,europe,africa,asia,australia", + "set_id": 1 + }, + { + "name": "globe-hemisphere-west-fill", + "content": "", + "style": "outline", + "tags": "world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography,north america,south america", + "set_id": 1 + }, + { + "name": "globe-simple-fill", + "content": "", + "style": "outline", + "tags": "world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography", + "set_id": 1 + }, + { + "name": "globe-simple-x-fill", + "content": "", + "style": "outline", + "tags": "*new*,world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography,internet", + "set_id": 1 + }, + { + "name": "globe-stand-fill", + "content": "", + "style": "outline", + "tags": "world,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography", + "set_id": 1 + }, + { + "name": "globe-x-fill", + "content": "", + "style": "outline", + "tags": "*new*,world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography,internet", + "set_id": 1 + }, + { + "name": "goggles-fill", + "content": "", + "style": "outline", + "tags": "swim,swimming,sports,exercise,olympics,aquatics", + "set_id": 1 + }, + { + "name": "golf-fill", + "content": "", + "style": "outline", + "tags": "*new*,sports,pga,tee,ball", + "set_id": 1 + }, + { + "name": "goodreads-logo-fill", + "content": "", + "style": "outline", + "tags": "*updated*,reading,books,social media,logos", + "set_id": 1 + }, + { + "name": "google-cardboard-logo-fill", + "content": "", + "style": "outline", + "tags": "virtual reality,vr,logos", + "set_id": 1 + }, + { + "name": "google-chrome-logo-fill", + "content": "", + "style": "outline", + "tags": "web browsers,internet", + "set_id": 1 + }, + { + "name": "google-drive-logo-fill", + "content": "", + "style": "outline", + "tags": "cloud,storage,backup,logos", + "set_id": 1 + }, + { + "name": "google-logo-fill", + "content": "", + "style": "outline", + "tags": "logos,search engine,phone,mobile,android", + "set_id": 1 + }, + { + "name": "google-photos-logo-fill", + "content": "", + "style": "outline", + "tags": "album,pictures,photography", + "set_id": 1 + }, + { + "name": "google-play-logo-fill", + "content": "", + "style": "outline", + "tags": "logos,games,apps,applications,play store,app store,phone,mobile,android", + "set_id": 1 + }, + { + "name": "google-podcasts-logo-fill", + "content": "", + "style": "outline", + "tags": "audio", + "set_id": 1 + }, + { + "name": "gps-fill", + "content": "", + "style": "outline", + "tags": "*new*,geolocation,location,navigation", + "set_id": 1 + }, + { + "name": "gps-fix-fill", + "content": "", + "style": "outline", + "tags": "*new*,geolocation,location,navigation", + "set_id": 1 + }, + { + "name": "gps-slash-fill", + "content": "", + "style": "outline", + "tags": "*new*,geolocation,location,navigation,disabled", + "set_id": 1 + }, + { + "name": "gradient-fill", + "content": "", + "style": "outline", + "tags": "fade,ombre,opacity", + "set_id": 1 + }, + { + "name": "graduation-cap-fill", + "content": "", + "style": "outline", + "tags": "classroom,teacher,education,school,college,university,degree,graduate,hat", + "set_id": 1 + }, + { + "name": "grains-fill", + "content": "", + "style": "outline", + "tags": "wheat,gluten,farm,farming,agriculture", + "set_id": 1 + }, + { + "name": "grains-slash-fill", + "content": "", + "style": "outline", + "tags": "gluten-free,wheat,gluten,farm,farming,agriculture", + "set_id": 1 + }, + { + "name": "graph-fill", + "content": "", + "style": "outline", + "tags": "nodes,tree", + "set_id": 1 + }, + { + "name": "graphics-card-fill", + "content": "", + "style": "outline", + "tags": "*new*,graphics card,microchip,computer,circuit", + "set_id": 1 + }, + { + "name": "greater-than-fill", + "content": "", + "style": "outline", + "tags": "*new*,>,greater than,gt,comparison,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "greater-than-or-equal-fill", + "content": "", + "style": "outline", + "tags": "*new*,≥,greater than or equal,gte,comparison,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "grid-four-fill", + "content": "", + "style": "outline", + "tags": "4,apps,applications,squares,tiles,cells,tables,tabular,spreadsheets,excel", + "set_id": 1 + }, + { + "name": "grid-nine-fill", + "content": "", + "style": "outline", + "tags": "9,apps,applications,squares,tiles,cells,tables,tabular,spreadsheets,excel", + "set_id": 1 + }, + { + "name": "guitar-fill", + "content": "", + "style": "outline", + "tags": "music,instrument", + "set_id": 1 + }, + { + "name": "hair-dryer-fill", + "content": "", + "style": "outline", + "tags": "*new*,blow dryer,beauty,grooming,salon", + "set_id": 1 + }, + { + "name": "hamburger-fill", + "content": "", + "style": "outline", + "tags": "fast food,party,places,locations,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "hammer-fill", + "content": "", + "style": "outline", + "tags": "tools,carpentry,construction", + "set_id": 1 + }, + { + "name": "hand-fill", + "content": "", + "style": "outline", + "tags": "pointers,cursors,emoji,backhand", + "set_id": 1 + }, + { + "name": "hand-arrow-down-fill", + "content": "", + "style": "outline", + "tags": "*new*,take,receive,remove,withdraw,emoji", + "set_id": 1 + }, + { + "name": "hand-arrow-up-fill", + "content": "", + "style": "outline", + "tags": "*new*,give,insert,deposit,donation,emoji", + "set_id": 1 + }, + { + "name": "hand-coins-fill", + "content": "", + "style": "outline", + "tags": "donation,payment,money,paying,purchase", + "set_id": 1 + }, + { + "name": "hand-deposit-fill", + "content": "", + "style": "outline", + "tags": "*new*,give,insert,donation,atm,emoji", + "set_id": 1 + }, + { + "name": "hand-eye-fill", + "content": "", + "style": "outline", + "tags": "*updated*,emoji,hamsa,evil eye", + "set_id": 1 + }, + { + "name": "hand-fist-fill", + "content": "", + "style": "outline", + "tags": "emoji,power,protest,blm", + "set_id": 1 + }, + { + "name": "hand-grabbing-fill", + "content": "", + "style": "outline", + "tags": "pointers,cursors,emoji,drag,hold", + "set_id": 1 + }, + { + "name": "hand-heart-fill", + "content": "", + "style": "outline", + "tags": "donation,care,emoji", + "set_id": 1 + }, + { + "name": "hand-palm-fill", + "content": "", + "style": "outline", + "tags": "pointers,cursors,emoji,palm,stop,wait,hamsa,5", + "set_id": 1 + }, + { + "name": "hand-peace-fill", + "content": "", + "style": "outline", + "tags": "*new*,emoji,victory", + "set_id": 1 + }, + { + "name": "hand-pointing-fill", + "content": "", + "style": "outline", + "tags": "pointers,cursors,emoji,fingers,clicks,mouse", + "set_id": 1 + }, + { + "name": "hand-soap-fill", + "content": "", + "style": "outline", + "tags": "dispenser,pump,sanitizer,disinfectant,lotion,bottle", + "set_id": 1 + }, + { + "name": "hand-swipe-left-fill", + "content": "", + "style": "outline", + "tags": "pointers,cursors,gesture", + "set_id": 1 + }, + { + "name": "hand-swipe-right-fill", + "content": "", + "style": "outline", + "tags": "pointers,cursors,gesture", + "set_id": 1 + }, + { + "name": "hand-tap-fill", + "content": "", + "style": "outline", + "tags": "pointers,cursors,gesture", + "set_id": 1 + }, + { + "name": "hand-waving-fill", + "content": "", + "style": "outline", + "tags": "emoji,palm,wave,hello,goodbye", + "set_id": 1 + }, + { + "name": "hand-withdraw-fill", + "content": "", + "style": "outline", + "tags": "*new*,take,remove,withdrawal,atm,emoji", + "set_id": 1 + }, + { + "name": "handbag-fill", + "content": "", + "style": "outline", + "tags": "suitcases,valises,baggage,purses", + "set_id": 1 + }, + { + "name": "handbag-simple-fill", + "content": "", + "style": "outline", + "tags": "suitcases,valises,baggage,purses", + "set_id": 1 + }, + { + "name": "hands-clapping-fill", + "content": "", + "style": "outline", + "tags": "emoji,clap,applause", + "set_id": 1 + }, + { + "name": "hands-praying-fill", + "content": "", + "style": "outline", + "tags": "emoji,religion,worship,prayer,thanks,thank you", + "set_id": 1 + }, + { + "name": "handshake-fill", + "content": "", + "style": "outline", + "tags": "emoji,deal,agreement", + "set_id": 1 + }, + { + "name": "hard-drive-fill", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,hard disk,storage,hdd,servers,databases", + "set_id": 1 + }, + { + "name": "hard-drives-fill", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,hard disk,storage,hdd,servers,databases", + "set_id": 1 + }, + { + "name": "hard-hat-fill", + "content": "", + "style": "outline", + "tags": "*new*,safety,construction,industry,helmet,ppe", + "set_id": 1 + }, + { + "name": "hash-fill", + "content": "", + "style": "outline", + "tags": "hashtag,octothorpe,pound sign,number sign,tic-tac-toe,symbol", + "set_id": 1 + }, + { + "name": "hash-straight-fill", + "content": "", + "style": "outline", + "tags": "hashtag,octothorpe,pound sign,number sign,tic-tac-toe,symbol", + "set_id": 1 + }, + { + "name": "head-circuit-fill", + "content": "", + "style": "outline", + "tags": "*new*,automaton,artificial intelligence,ai", + "set_id": 1 + }, + { + "name": "headlights-fill", + "content": "", + "style": "outline", + "tags": "brights,high beams", + "set_id": 1 + }, + { + "name": "headphones-fill", + "content": "", + "style": "outline", + "tags": "music,audio,listening", + "set_id": 1 + }, + { + "name": "headset-fill", + "content": "", + "style": "outline", + "tags": "music,audio,listening,gaming,voice chat,microphone,headphones,support,customer-service,call-center", + "set_id": 1 + }, + { + "name": "heart-fill", + "content": "", + "style": "outline", + "tags": "wellness,love,healthy,like,favorites,favorited,suits,cards,gambling,casino,gaming,emoji", + "set_id": 1 + }, + { + "name": "heart-break-fill", + "content": "", + "style": "outline", + "tags": "love,hate,crack,split,divorce,emoji", + "set_id": 1 + }, + { + "name": "heart-half-fill", + "content": "", + "style": "outline", + "tags": "wellness,love,healthy,like,favorites,favorited", + "set_id": 1 + }, + { + "name": "heart-straight-fill", + "content": "", + "style": "outline", + "tags": "wellness,love,healthy,like,favorites,favorited,suits,cards,gambling,casino,gaming,emoji", + "set_id": 1 + }, + { + "name": "heart-straight-break-fill", + "content": "", + "style": "outline", + "tags": "love,hate,crack,split,divorce,emoji", + "set_id": 1 + }, + { + "name": "heartbeat-fill", + "content": "", + "style": "outline", + "tags": "wellness,healthy,ecg,ekg,vitals,monitor", + "set_id": 1 + }, + { + "name": "hexagon-fill", + "content": "", + "style": "outline", + "tags": "6,shapes,polygons", + "set_id": 1 + }, + { + "name": "high-definition-fill", + "content": "", + "style": "outline", + "tags": "*new*,hd,resolution,video", + "set_id": 1 + }, + { + "name": "high-heel-fill", + "content": "", + "style": "outline", + "tags": "*updated*,pumps,clothes,clothing,shoes", + "set_id": 1 + }, + { + "name": "highlighter-fill", + "content": "", + "style": "outline", + "tags": "*new*,marker,write,writing,editing", + "set_id": 1 + }, + { + "name": "highlighter-circle-fill", + "content": "", + "style": "outline", + "tags": "write,writing,editing,drawing", + "set_id": 1 + }, + { + "name": "hockey-fill", + "content": "", + "style": "outline", + "tags": "*new*,sports,nhl,stick,puck", + "set_id": 1 + }, + { + "name": "hoodie-fill", + "content": "", + "style": "outline", + "tags": "clothes,clothing,sweatshirt", + "set_id": 1 + }, + { + "name": "horse-fill", + "content": "", + "style": "outline", + "tags": "animals,equestrian,chess,knight,sports", + "set_id": 1 + }, + { + "name": "hospital-fill", + "content": "", + "style": "outline", + "tags": "*new*,places,locations,medical,medicine,emergency,doctor,buildings", + "set_id": 1 + }, + { + "name": "hourglass-fill", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-high-fill", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-low-fill", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-medium-fill", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-simple-fill", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-simple-high-fill", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-simple-low-fill", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-simple-medium-fill", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "house-fill", + "content": "", + "style": "outline", + "tags": "homes,buildings,places,locations", + "set_id": 1 + }, + { + "name": "house-line-fill", + "content": "", + "style": "outline", + "tags": "*updated*,homes,buildings,places,locations", + "set_id": 1 + }, + { + "name": "house-simple-fill", + "content": "", + "style": "outline", + "tags": "homes,buildings,places,locations", + "set_id": 1 + }, + { + "name": "hurricane-fill", + "content": "", + "style": "outline", + "tags": "*new*,meteorology,cyclone,storm,disaster,wind", + "set_id": 1 + }, + { + "name": "ice-cream-fill", + "content": "", + "style": "outline", + "tags": "food,dessert,cone", + "set_id": 1 + }, + { + "name": "identification-badge-fill", + "content": "", + "style": "outline", + "tags": "license,credentials,nametag,user,verification", + "set_id": 1 + }, + { + "name": "identification-card-fill", + "content": "", + "style": "outline", + "tags": "license,badge,credentials,nametag,user,verification", + "set_id": 1 + }, + { + "name": "image-fill", + "content": "", + "style": "outline", + "tags": "*updated*,pictures,photographs,photography,wallpapers,gallery,landscape", + "set_id": 1 + }, + { + "name": "image-broken-fill", + "content": "", + "style": "outline", + "tags": "*new*,pictures,photographs,photography,wallpapers,gallery,landscape,missing,error,404", + "set_id": 1 + }, + { + "name": "image-square-fill", + "content": "", + "style": "outline", + "tags": "pictures,photographs,photography,wallpapers,gallery,landscape", + "set_id": 1 + }, + { + "name": "images-fill", + "content": "", + "style": "outline", + "tags": "*updated*,pictures,photographs,photography,wallpapers,gallery,landscape,album", + "set_id": 1 + }, + { + "name": "images-square-fill", + "content": "", + "style": "outline", + "tags": "pictures,photographs,photography,wallpapers,gallery,landscape,album", + "set_id": 1 + }, + { + "name": "infinity-fill", + "content": "", + "style": "outline", + "tags": "infinite,lemniscate,figure-eight,mathematics,arithmetic,calculator,∞", + "set_id": 1 + }, + { + "name": "info-fill", + "content": "", + "style": "outline", + "tags": "information,help,support", + "set_id": 1 + }, + { + "name": "instagram-logo-fill", + "content": "", + "style": "outline", + "tags": "logos,social media,photography,camera", + "set_id": 1 + }, + { + "name": "intersect-fill", + "content": "", + "style": "outline", + "tags": "round,join,union,merge,combine,intersecting,intersection", + "set_id": 1 + }, + { + "name": "intersect-square-fill", + "content": "", + "style": "outline", + "tags": "venn-diagram,join,intersection", + "set_id": 1 + }, + { + "name": "intersect-three-fill", + "content": "", + "style": "outline", + "tags": "venn-diagram,join,intersection,gender,pronouns", + "set_id": 1 + }, + { + "name": "intersection-fill", + "content": "", + "style": "outline", + "tags": "*new*,∩,intersection,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "invoice-fill", + "content": "", + "style": "outline", + "tags": "*new*,receipt,expense,bill", + "set_id": 1 + }, + { + "name": "island-fill", + "content": "", + "style": "outline", + "tags": "*new*,geography,beach,ocean,tropical,palm,vacation,trip,locations,places", + "set_id": 1 + }, + { + "name": "jar-fill", + "content": "", + "style": "outline", + "tags": "*new*,mason jar,kitchen,pantry,canning,preserves,food,condiments", + "set_id": 1 + }, + { + "name": "jar-label-fill", + "content": "", + "style": "outline", + "tags": "*new*,mason jar,kitchen,pantry,canning,preserves,food,condiments", + "set_id": 1 + }, + { + "name": "jeep-fill", + "content": "", + "style": "outline", + "tags": "*updated*,vehicles,automobile,suv,cars,trucks,wrangler,off-road,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "joystick-fill", + "content": "", + "style": "outline", + "tags": "*new*,gaming,game controller,video games,arcade game,atari", + "set_id": 1 + }, + { + "name": "kanban-fill", + "content": "", + "style": "outline", + "tags": "scheduling,tasks,project management,process,lean,agile", + "set_id": 1 + }, + { + "name": "key-fill", + "content": "", + "style": "outline", + "tags": "padlock,security,secured,authentication,authenticated,login,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "key-return-fill", + "content": "", + "style": "outline", + "tags": "keyboard,enter", + "set_id": 1 + }, + { + "name": "keyboard-fill", + "content": "", + "style": "outline", + "tags": "typing,type,keys,input", + "set_id": 1 + }, + { + "name": "keyhole-fill", + "content": "", + "style": "outline", + "tags": "lock,security,secured,authentication,authenticated,login,locked,encrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "knife-fill", + "content": "", + "style": "outline", + "tags": "tools,food,meal,eating,restaurants,dining,utensils", + "set_id": 1 + }, + { + "name": "ladder-fill", + "content": "", + "style": "outline", + "tags": "stairs,steps,climbing", + "set_id": 1 + }, + { + "name": "ladder-simple-fill", + "content": "", + "style": "outline", + "tags": "stairs,steps,climbing", + "set_id": 1 + }, + { + "name": "lamp-fill", + "content": "", + "style": "outline", + "tags": "light,furniture,appliances", + "set_id": 1 + }, + { + "name": "lamp-pendant-fill", + "content": "", + "style": "outline", + "tags": "*new*,light,furniture,appliances", + "set_id": 1 + }, + { + "name": "laptop-fill", + "content": "", + "style": "outline", + "tags": "computer,notebook,pc,macbook", + "set_id": 1 + }, + { + "name": "lasso-fill", + "content": "", + "style": "outline", + "tags": "*new*,select,selection,loop,rope,cowboy", + "set_id": 1 + }, + { + "name": "lastfm-logo-fill", + "content": "", + "style": "outline", + "tags": "*new*,scrobble,music,social media", + "set_id": 1 + }, + { + "name": "layout-fill", + "content": "", + "style": "outline", + "tags": "wireframe,sidebar,ui,interface", + "set_id": 1 + }, + { + "name": "leaf-fill", + "content": "", + "style": "outline", + "tags": "plants,trees,branches,leaves,nodes,green,environmental", + "set_id": 1 + }, + { + "name": "lectern-fill", + "content": "", + "style": "outline", + "tags": "*new*,lecture,podium,pulpit,stand,speech,presentation,keynote", + "set_id": 1 + }, + { + "name": "lego-fill", + "content": "", + "style": "outline", + "tags": "*new*,toys,blocks,bricks", + "set_id": 1 + }, + { + "name": "lego-smiley-fill", + "content": "", + "style": "outline", + "tags": "*new*,face,emoji,toys,blocks,bricks", + "set_id": 1 + }, + { + "name": "less-than-fill", + "content": "", + "style": "outline", + "tags": "*new*,<,less than,lt,comparison,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "less-than-or-equal-fill", + "content": "", + "style": "outline", + "tags": "*new*,≤,less than or equal,lte,comparison,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "letter-circle-h-fill", + "content": "", + "style": "outline", + "tags": "*new*,hospital,letter,glyph,character", + "set_id": 1 + }, + { + "name": "letter-circle-p-fill", + "content": "", + "style": "outline", + "tags": "*new*,parking lot,valet,vehicles,letter,glyph,character", + "set_id": 1 + }, + { + "name": "letter-circle-v-fill", + "content": "", + "style": "outline", + "tags": "*new*,vegan,letter,glyph,character", + "set_id": 1 + }, + { + "name": "lifebuoy-fill", + "content": "", + "style": "outline", + "tags": "lifebelt,lifesaver,safety,help,support,nautical,boats,ships", + "set_id": 1 + }, + { + "name": "lightbulb-fill", + "content": "", + "style": "outline", + "tags": "flashlight,bulbs,lighting,led,energy,idea", + "set_id": 1 + }, + { + "name": "lightbulb-filament-fill", + "content": "", + "style": "outline", + "tags": "flashlight,bulbs,lighting,led,energy,idea", + "set_id": 1 + }, + { + "name": "lighthouse-fill", + "content": "", + "style": "outline", + "tags": "buildings,nautical,navigation,boats,ships,safety", + "set_id": 1 + }, + { + "name": "lightning-fill", + "content": "", + "style": "outline", + "tags": "meteorology,stormy,thunderstorm,thunderbolt,charged,charger,charging,power,electricity,flash", + "set_id": 1 + }, + { + "name": "lightning-a-fill", + "content": "", + "style": "outline", + "tags": "flash,auto", + "set_id": 1 + }, + { + "name": "lightning-slash-fill", + "content": "", + "style": "outline", + "tags": "thunderbolt,charged,charger,charging,power,electricity,disabled,flash", + "set_id": 1 + }, + { + "name": "line-segment-fill", + "content": "", + "style": "outline", + "tags": "shapes,drawing,path,pen,vector", + "set_id": 1 + }, + { + "name": "line-segments-fill", + "content": "", + "style": "outline", + "tags": "shapes,drawing,path,pen,vector", + "set_id": 1 + }, + { + "name": "line-vertical-fill", + "content": "", + "style": "outline", + "tags": "*new*,bar,pipe,|,divider. symbol", + "set_id": 1 + }, + { + "name": "link-fill", + "content": "", + "style": "outline", + "tags": "*updated*,anchor,hyperlink,hypertext,chains,chained", + "set_id": 1 + }, + { + "name": "link-break-fill", + "content": "", + "style": "outline", + "tags": "anchor,hyperlink,hypertext,chains,chained,errors,broken", + "set_id": 1 + }, + { + "name": "link-simple-fill", + "content": "", + "style": "outline", + "tags": "anchor,hyperlink,hypertext,chains,chained", + "set_id": 1 + }, + { + "name": "link-simple-break-fill", + "content": "", + "style": "outline", + "tags": "anchor,hyperlink,hypertext,chains,chained,errors,broken", + "set_id": 1 + }, + { + "name": "link-simple-horizontal-fill", + "content": "", + "style": "outline", + "tags": "anchor,hyperlink,hypertext,chains,chained", + "set_id": 1 + }, + { + "name": "link-simple-horizontal-break-fill", + "content": "", + "style": "outline", + "tags": "anchor,hyperlink,hypertext,chains,chained,errors,broken", + "set_id": 1 + }, + { + "name": "linkedin-logo-fill", + "content": "", + "style": "outline", + "tags": "logos,jobs,employment,social media", + "set_id": 1 + }, + { + "name": "linktree-logo-fill", + "content": "", + "style": "outline", + "tags": "*new*,social media,links", + "set_id": 1 + }, + { + "name": "linux-logo-fill", + "content": "", + "style": "outline", + "tags": "penguin,computer,animals", + "set_id": 1 + }, + { + "name": "list-fill", + "content": "", + "style": "outline", + "tags": "*updated*,hamburger menu,overflow menu,sidebar,3,ul,ol,unordered list,ordered list,checklist,lines", + "set_id": 1 + }, + { + "name": "list-bullets-fill", + "content": "", + "style": "outline", + "tags": "*updated*,ul,unordered list,bulleted list,checklist", + "set_id": 1 + }, + { + "name": "list-checks-fill", + "content": "", + "style": "outline", + "tags": "*updated*,checklist,todo", + "set_id": 1 + }, + { + "name": "list-dashes-fill", + "content": "", + "style": "outline", + "tags": "*updated*,ul,unordered list,dashed list,checklist", + "set_id": 1 + }, + { + "name": "list-heart-fill", + "content": "", + "style": "outline", + "tags": "*new*,favorites,wishlist,liked", + "set_id": 1 + }, + { + "name": "list-magnifying-glass-fill", + "content": "", + "style": "outline", + "tags": "search,find,locate,query,inspect", + "set_id": 1 + }, + { + "name": "list-numbers-fill", + "content": "", + "style": "outline", + "tags": "*updated*,ol,ordered list,numbered list,checklist", + "set_id": 1 + }, + { + "name": "list-plus-fill", + "content": "", + "style": "outline", + "tags": "*updated*,ul,ol,unordered list,ordered list,checklist,add,+", + "set_id": 1 + }, + { + "name": "list-star-fill", + "content": "", + "style": "outline", + "tags": "*new*,favorites,wishlist,liked", + "set_id": 1 + }, + { + "name": "lock-fill", + "content": "", + "style": "outline", + "tags": "padlock,security,secured,authentication,authenticated,login,locked,encrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "lock-key-fill", + "content": "", + "style": "outline", + "tags": "padlock,security,secured,authentication,authenticated,login,locked,encrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "lock-key-open-fill", + "content": "", + "style": "outline", + "tags": "padlock,security,unsecured,authentication,unauthenticated,login,unlocked,unencrypted,encryption,privacy", + "set_id": 1 + }, + { + "name": "lock-laminated-fill", + "content": "", + "style": "outline", + "tags": "padlock,security,secured,authentication,authenticated,login,locked,encrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "lock-laminated-open-fill", + "content": "", + "style": "outline", + "tags": "padlock,security,unsecured,authentication,unauthenticated,login,unlocked,unencrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "lock-open-fill", + "content": "", + "style": "outline", + "tags": "padlock,security,unsecured,authentication,unauthenticated,login,unlocked,unencrypted,encryption,privacy", + "set_id": 1 + }, + { + "name": "lock-simple-fill", + "content": "", + "style": "outline", + "tags": "padlock,security,secured,authentication,authenticated,login,locked,encrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "lock-simple-open-fill", + "content": "", + "style": "outline", + "tags": "padlock,security,unsecured,authentication,unauthenticated,login,unlocked,unencrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "lockers-fill", + "content": "", + "style": "outline", + "tags": "locker room,gym,storage", + "set_id": 1 + }, + { + "name": "log-fill", + "content": "", + "style": "outline", + "tags": "*new*,tree,stump,stick,branch", + "set_id": 1 + }, + { + "name": "magic-wand-fill", + "content": "", + "style": "outline", + "tags": "selection,wizard,games", + "set_id": 1 + }, + { + "name": "magnet-fill", + "content": "", + "style": "outline", + "tags": "magnetism,science,physics", + "set_id": 1 + }, + { + "name": "magnet-straight-fill", + "content": "", + "style": "outline", + "tags": "magnetism,science,physics", + "set_id": 1 + }, + { + "name": "magnifying-glass-fill", + "content": "", + "style": "outline", + "tags": "search,find,locate,query,inspect", + "set_id": 1 + }, + { + "name": "magnifying-glass-minus-fill", + "content": "", + "style": "outline", + "tags": "search,find,locate,query,inspect,zoom out,-", + "set_id": 1 + }, + { + "name": "magnifying-glass-plus-fill", + "content": "", + "style": "outline", + "tags": "search,find,locate,query,inspect,zoom in,+", + "set_id": 1 + }, + { + "name": "mailbox-fill", + "content": "", + "style": "outline", + "tags": "*new*,email,letters,messaging,post", + "set_id": 1 + }, + { + "name": "map-pin-fill", + "content": "", + "style": "outline", + "tags": "maps,places,markers,pins,locations,poi,point of interest", + "set_id": 1 + }, + { + "name": "map-pin-area-fill", + "content": "", + "style": "outline", + "tags": "*new*,maps,places,markers,pins,locations,poi,point of interest", + "set_id": 1 + }, + { + "name": "map-pin-line-fill", + "content": "", + "style": "outline", + "tags": "maps,places,markers,pins,locations,poi,point of interest", + "set_id": 1 + }, + { + "name": "map-pin-plus-fill", + "content": "", + "style": "outline", + "tags": "*new*,maps,places,markers,pins,locations,add,point of interest", + "set_id": 1 + }, + { + "name": "map-pin-simple-fill", + "content": "", + "style": "outline", + "tags": "*new*,maps,places,markers,pins,locations,poi,point of interest", + "set_id": 1 + }, + { + "name": "map-pin-simple-area-fill", + "content": "", + "style": "outline", + "tags": "*new*,maps,places,markers,pins,locations,poi,point of interest", + "set_id": 1 + }, + { + "name": "map-pin-simple-line-fill", + "content": "", + "style": "outline", + "tags": "*new*,maps,places,markers,pins,locations,poi,point of interest", + "set_id": 1 + }, + { + "name": "map-trifold-fill", + "content": "", + "style": "outline", + "tags": "maps,places,locations,cartography,geography", + "set_id": 1 + }, + { + "name": "markdown-logo-fill", + "content": "", + "style": "outline", + "tags": "*new*,markup,editor,.md", + "set_id": 1 + }, + { + "name": "marker-circle-fill", + "content": "", + "style": "outline", + "tags": "write,writing,editing,drawing", + "set_id": 1 + }, + { + "name": "martini-fill", + "content": "", + "style": "outline", + "tags": "glass,drinks,beverages,cocktails,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "mask-happy-fill", + "content": "", + "style": "outline", + "tags": "theater,costume,smile,smiling,thalia", + "set_id": 1 + }, + { + "name": "mask-sad-fill", + "content": "", + "style": "outline", + "tags": "theater,costume,cry,crying,melpomene", + "set_id": 1 + }, + { + "name": "mastodon-logo-fill", + "content": "", + "style": "outline", + "tags": "*new*,fediverse,social media,decentralized", + "set_id": 1 + }, + { + "name": "math-operations-fill", + "content": "", + "style": "outline", + "tags": "addition,sum,subtraction,difference,multiply,multiplication,product,divide,division,divisor,dividend,quotient,equals,equality,mathematics,arithmetic,calculator,+,-,±,×,÷,=", + "set_id": 1 + }, + { + "name": "matrix-logo-fill", + "content": "", + "style": "outline", + "tags": "*new*,matrix protocol,brands,logos", + "set_id": 1 + }, + { + "name": "medal-fill", + "content": "", + "style": "outline", + "tags": "ribbons,winning,victory,awards,rosette", + "set_id": 1 + }, + { + "name": "medal-military-fill", + "content": "", + "style": "outline", + "tags": "ribbons,winning,victory,awards,military", + "set_id": 1 + }, + { + "name": "medium-logo-fill", + "content": "", + "style": "outline", + "tags": "logos,reading,writing,news,social media", + "set_id": 1 + }, + { + "name": "megaphone-fill", + "content": "", + "style": "outline", + "tags": "bullhorn,announcements,loudspeaker,broadcast", + "set_id": 1 + }, + { + "name": "megaphone-simple-fill", + "content": "", + "style": "outline", + "tags": "bullhorn,announcements,loudspeaker,broadcast", + "set_id": 1 + }, + { + "name": "member-of-fill", + "content": "", + "style": "outline", + "tags": "*new*,∈,is element of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "memory-fill", + "content": "", + "style": "outline", + "tags": "*new*,ram,microchip,computer,circuit,electronics", + "set_id": 1 + }, + { + "name": "messenger-logo-fill", + "content": "", + "style": "outline", + "tags": "logos,facebook,social media", + "set_id": 1 + }, + { + "name": "meta-logo-fill", + "content": "", + "style": "outline", + "tags": "*updated*,facebook,logos,social media,logos", + "set_id": 1 + }, + { + "name": "meteor-fill", + "content": "", + "style": "outline", + "tags": "*new*,astronomy,asteroid,fireball", + "set_id": 1 + }, + { + "name": "metronome-fill", + "content": "", + "style": "outline", + "tags": "music,beat,tempo,bpm", + "set_id": 1 + }, + { + "name": "microphone-fill", + "content": "", + "style": "outline", + "tags": "audio,recording,music,sound,podcast,studio", + "set_id": 1 + }, + { + "name": "microphone-slash-fill", + "content": "", + "style": "outline", + "tags": "audio,recording,music,sound,podcast,studio,muted,disabled", + "set_id": 1 + }, + { + "name": "microphone-stage-fill", + "content": "", + "style": "outline", + "tags": "audio,recording,music,sound,performance,concert", + "set_id": 1 + }, + { + "name": "microscope-fill", + "content": "", + "style": "outline", + "tags": "*new*,science,biology,experiment,magnify", + "set_id": 1 + }, + { + "name": "microsoft-excel-logo-fill", + "content": "", + "style": "outline", + "tags": "tables,spreadsheets,tabular", + "set_id": 1 + }, + { + "name": "microsoft-outlook-logo-fill", + "content": "", + "style": "outline", + "tags": "email,logos", + "set_id": 1 + }, + { + "name": "microsoft-powerpoint-logo-fill", + "content": "", + "style": "outline", + "tags": "slides,slideshow,presentation", + "set_id": 1 + }, + { + "name": "microsoft-teams-logo-fill", + "content": "", + "style": "outline", + "tags": "chat,video conference", + "set_id": 1 + }, + { + "name": "microsoft-word-logo-fill", + "content": "", + "style": "outline", + "tags": "documents,word processor,doc,docx", + "set_id": 1 + }, + { + "name": "minus-fill", + "content": "", + "style": "outline", + "tags": "-,subtraction,difference,mathematics,arithmetic,calculator,line,horizontal,divider", + "set_id": 1 + }, + { + "name": "minus-circle-fill", + "content": "", + "style": "outline", + "tags": "-,subtraction,difference,mathematics,arithmetic,calculator,round", + "set_id": 1 + }, + { + "name": "minus-square-fill", + "content": "", + "style": "outline", + "tags": "-,subtraction,difference,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "money-fill", + "content": "", + "style": "outline", + "tags": "cash,dollars,paper bills,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "money-wavy-fill", + "content": "", + "style": "outline", + "tags": "*new*,cash,dollars,paper bills,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "monitor-fill", + "content": "", + "style": "outline", + "tags": "screen,television,tv,displays", + "set_id": 1 + }, + { + "name": "monitor-arrow-up-fill", + "content": "", + "style": "outline", + "tags": "*new*,screen,screencast,screenshare,upload,video,movie", + "set_id": 1 + }, + { + "name": "monitor-play-fill", + "content": "", + "style": "outline", + "tags": "screen,television,tv,displays,screencast,video,movie", + "set_id": 1 + }, + { + "name": "moon-fill", + "content": "", + "style": "outline", + "tags": "night,evening,clear,sleep,snooze,night mode,dark mode,astronomy,stargazing", + "set_id": 1 + }, + { + "name": "moon-stars-fill", + "content": "", + "style": "outline", + "tags": "night,evening,clear,sleep,snooze,night mode,dark mode,astronomy,stargazing,constellation", + "set_id": 1 + }, + { + "name": "moped-fill", + "content": "", + "style": "outline", + "tags": "scooter,vehicles,vespa,transportation,travel", + "set_id": 1 + }, + { + "name": "moped-front-fill", + "content": "", + "style": "outline", + "tags": "scooter,vehicles,vespa,transportation,travel", + "set_id": 1 + }, + { + "name": "mosque-fill", + "content": "", + "style": "outline", + "tags": "islam,muslim,religion,worship", + "set_id": 1 + }, + { + "name": "motorcycle-fill", + "content": "", + "style": "outline", + "tags": "vehicles,motorbike,transportation,travel", + "set_id": 1 + }, + { + "name": "mountains-fill", + "content": "", + "style": "outline", + "tags": "*updated*,hills,outdoors,terrain,geology,adventure", + "set_id": 1 + }, + { + "name": "mouse-fill", + "content": "", + "style": "outline", + "tags": "*updated*,clicks,input", + "set_id": 1 + }, + { + "name": "mouse-left-click-fill", + "content": "", + "style": "outline", + "tags": "*new*,clicks,input", + "set_id": 1 + }, + { + "name": "mouse-middle-click-fill", + "content": "", + "style": "outline", + "tags": "*new*,clicks,input", + "set_id": 1 + }, + { + "name": "mouse-right-click-fill", + "content": "", + "style": "outline", + "tags": "*new*,clicks,input", + "set_id": 1 + }, + { + "name": "mouse-scroll-fill", + "content": "", + "style": "outline", + "tags": "*new*,clicks,input", + "set_id": 1 + }, + { + "name": "mouse-simple-fill", + "content": "", + "style": "outline", + "tags": "clicks,input", + "set_id": 1 + }, + { + "name": "music-note-fill", + "content": "", + "style": "outline", + "tags": "songs,audio,playlist,albums", + "set_id": 1 + }, + { + "name": "music-note-simple-fill", + "content": "", + "style": "outline", + "tags": "songs,audio,playlist,albums", + "set_id": 1 + }, + { + "name": "music-notes-fill", + "content": "", + "style": "outline", + "tags": "songs,audio,playlist,albums", + "set_id": 1 + }, + { + "name": "music-notes-minus-fill", + "content": "", + "style": "outline", + "tags": "*new*,songs,audio,playlist,albums,remove,subtract", + "set_id": 1 + }, + { + "name": "music-notes-plus-fill", + "content": "", + "style": "outline", + "tags": "songs,audio,playlist,albums,add", + "set_id": 1 + }, + { + "name": "music-notes-simple-fill", + "content": "", + "style": "outline", + "tags": "songs,audio,playlist,albums", + "set_id": 1 + }, + { + "name": "navigation-arrow-fill", + "content": "", + "style": "outline", + "tags": "location,directions,compass,gps", + "set_id": 1 + }, + { + "name": "needle-fill", + "content": "", + "style": "outline", + "tags": "sewing,thread,awl,tailor", + "set_id": 1 + }, + { + "name": "network-fill", + "content": "", + "style": "outline", + "tags": "*new*,internet,ethernet,lan", + "set_id": 1 + }, + { + "name": "network-slash-fill", + "content": "", + "style": "outline", + "tags": "*new*,internet,ethernet,lan,error", + "set_id": 1 + }, + { + "name": "network-x-fill", + "content": "", + "style": "outline", + "tags": "*new*,internet,ethernet,lan,disabled", + "set_id": 1 + }, + { + "name": "newspaper-fill", + "content": "", + "style": "outline", + "tags": "reading,writing,journals,periodicals", + "set_id": 1 + }, + { + "name": "newspaper-clipping-fill", + "content": "", + "style": "outline", + "tags": "*updated*,reading,writing,journals,periodicals", + "set_id": 1 + }, + { + "name": "not-equals-fill", + "content": "", + "style": "outline", + "tags": "*new*,≠,equality,equivalent,equivalence,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "not-member-of-fill", + "content": "", + "style": "outline", + "tags": "*new*,∉,is not element of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "not-subset-of-fill", + "content": "", + "style": "outline", + "tags": "*new*,⊄,not subset of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "not-superset-of-fill", + "content": "", + "style": "outline", + "tags": "*new*,⊉,not superset of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "notches-fill", + "content": "", + "style": "outline", + "tags": "textarea,resize,drag handle,knurling", + "set_id": 1 + }, + { + "name": "note-fill", + "content": "", + "style": "outline", + "tags": "notes,note-taking,memorandum,post-it,reminders", + "set_id": 1 + }, + { + "name": "note-blank-fill", + "content": "", + "style": "outline", + "tags": "notes,note-taking,memorandum,post-it,reminders", + "set_id": 1 + }, + { + "name": "note-pencil-fill", + "content": "", + "style": "outline", + "tags": "notes,note-taking,memorandum,post-it,reminders", + "set_id": 1 + }, + { + "name": "notebook-fill", + "content": "", + "style": "outline", + "tags": "notes,note-taking,memorandum,journal,diary,logs,logbook", + "set_id": 1 + }, + { + "name": "notepad-fill", + "content": "", + "style": "outline", + "tags": "*updated*,logs,logbook,notes,note-taking,memorandum,journal,diary", + "set_id": 1 + }, + { + "name": "notification-fill", + "content": "", + "style": "outline", + "tags": "badge,pip", + "set_id": 1 + }, + { + "name": "notion-logo-fill", + "content": "", + "style": "outline", + "tags": "documentation,productivity,wiki,logos", + "set_id": 1 + }, + { + "name": "nuclear-plant-fill", + "content": "", + "style": "outline", + "tags": "*new*,renewable,energy,power,electricity", + "set_id": 1 + }, + { + "name": "number-circle-eight-fill", + "content": "", + "style": "outline", + "tags": "8,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-five-fill", + "content": "", + "style": "outline", + "tags": "5,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-four-fill", + "content": "", + "style": "outline", + "tags": "*updated*,4,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-nine-fill", + "content": "", + "style": "outline", + "tags": "9,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-one-fill", + "content": "", + "style": "outline", + "tags": "1,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-seven-fill", + "content": "", + "style": "outline", + "tags": "7,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-six-fill", + "content": "", + "style": "outline", + "tags": "6,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-three-fill", + "content": "", + "style": "outline", + "tags": "3,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-two-fill", + "content": "", + "style": "outline", + "tags": "2,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-zero-fill", + "content": "", + "style": "outline", + "tags": "0,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-eight-fill", + "content": "", + "style": "outline", + "tags": "8,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-five-fill", + "content": "", + "style": "outline", + "tags": "5,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-four-fill", + "content": "", + "style": "outline", + "tags": "*updated*,4,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-nine-fill", + "content": "", + "style": "outline", + "tags": "9,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-one-fill", + "content": "", + "style": "outline", + "tags": "1,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-seven-fill", + "content": "", + "style": "outline", + "tags": "7,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-six-fill", + "content": "", + "style": "outline", + "tags": "6,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-eight-fill", + "content": "", + "style": "outline", + "tags": "8,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-five-fill", + "content": "", + "style": "outline", + "tags": "5,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-four-fill", + "content": "", + "style": "outline", + "tags": "*updated*,4,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-nine-fill", + "content": "", + "style": "outline", + "tags": "9,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-one-fill", + "content": "", + "style": "outline", + "tags": "1,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-seven-fill", + "content": "", + "style": "outline", + "tags": "7,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-six-fill", + "content": "", + "style": "outline", + "tags": "6,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-three-fill", + "content": "", + "style": "outline", + "tags": "3,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-two-fill", + "content": "", + "style": "outline", + "tags": "2,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-zero-fill", + "content": "", + "style": "outline", + "tags": "0,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-three-fill", + "content": "", + "style": "outline", + "tags": "3,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-two-fill", + "content": "", + "style": "outline", + "tags": "2,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-zero-fill", + "content": "", + "style": "outline", + "tags": "0,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "numpad-fill", + "content": "", + "style": "outline", + "tags": "*new*,dialer,dialpad,call-center,telephone,landline,password,passcode", + "set_id": 1 + }, + { + "name": "nut-fill", + "content": "", + "style": "outline", + "tags": "bolts,screws,machinery,tools,hexagon", + "set_id": 1 + }, + { + "name": "ny-times-logo-fill", + "content": "", + "style": "outline", + "tags": "nyt,new york times,logos,reading,writing,news,newspaper", + "set_id": 1 + }, + { + "name": "octagon-fill", + "content": "", + "style": "outline", + "tags": "8,shapes,polygons", + "set_id": 1 + }, + { + "name": "office-chair-fill", + "content": "", + "style": "outline", + "tags": "furniture,seat", + "set_id": 1 + }, + { + "name": "onigiri-fill", + "content": "", + "style": "outline", + "tags": "*new*,rice ball,japanese,food,restaurant", + "set_id": 1 + }, + { + "name": "open-ai-logo-fill", + "content": "", + "style": "outline", + "tags": "*new*,artificial intelligence,ai,chatgpt,llm,logos", + "set_id": 1 + }, + { + "name": "option-fill", + "content": "", + "style": "outline", + "tags": "keyboard,shortcut,modifier", + "set_id": 1 + }, + { + "name": "orange-fill", + "content": "", + "style": "outline", + "tags": "*new*,food,fruit,juice,citrus,groceries,market", + "set_id": 1 + }, + { + "name": "orange-slice-fill", + "content": "", + "style": "outline", + "tags": "food,fruit,juice,citrus,groceries,market", + "set_id": 1 + }, + { + "name": "oven-fill", + "content": "", + "style": "outline", + "tags": "*new*,stove,stovetop,food,cooking,cuisine,kitchen", + "set_id": 1 + }, + { + "name": "package-fill", + "content": "", + "style": "outline", + "tags": "packages,boxes,delivery,mail,postal service,bundles,library,libraries,shipping", + "set_id": 1 + }, + { + "name": "paint-brush-fill", + "content": "", + "style": "outline", + "tags": "colors,color picker,arts", + "set_id": 1 + }, + { + "name": "paint-brush-broad-fill", + "content": "", + "style": "outline", + "tags": "fill,colors,color picker,arts", + "set_id": 1 + }, + { + "name": "paint-brush-household-fill", + "content": "", + "style": "outline", + "tags": "colors,color picker,arts", + "set_id": 1 + }, + { + "name": "paint-bucket-fill", + "content": "", + "style": "outline", + "tags": "*updated*,paintbucket,colors,color picker,fill,arts", + "set_id": 1 + }, + { + "name": "paint-roller-fill", + "content": "", + "style": "outline", + "tags": "colors,color picker,fill,arts,theme", + "set_id": 1 + }, + { + "name": "palette-fill", + "content": "", + "style": "outline", + "tags": "paint,colors,color picker,arts", + "set_id": 1 + }, + { + "name": "panorama-fill", + "content": "", + "style": "outline", + "tags": "*new*,image,picture,photography,landscape,360", + "set_id": 1 + }, + { + "name": "pants-fill", + "content": "", + "style": "outline", + "tags": "clothing,clothes,jeans", + "set_id": 1 + }, + { + "name": "paper-plane-fill", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,messages,messaging,toys,games", + "set_id": 1 + }, + { + "name": "paper-plane-right-fill", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,messages,messaging,toys,games", + "set_id": 1 + }, + { + "name": "paper-plane-tilt-fill", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,messages,messaging,toys,games", + "set_id": 1 + }, + { + "name": "paperclip-fill", + "content": "", + "style": "outline", + "tags": "attachments,mail,email,office", + "set_id": 1 + }, + { + "name": "paperclip-horizontal-fill", + "content": "", + "style": "outline", + "tags": "attachments,mail,email,office", + "set_id": 1 + }, + { + "name": "parachute-fill", + "content": "", + "style": "outline", + "tags": "skydiving,safety", + "set_id": 1 + }, + { + "name": "paragraph-fill", + "content": "", + "style": "outline", + "tags": "pilcrow", + "set_id": 1 + }, + { + "name": "parallelogram-fill", + "content": "", + "style": "outline", + "tags": "shapes,bandcamp,logos", + "set_id": 1 + }, + { + "name": "park-fill", + "content": "", + "style": "outline", + "tags": "bench,outdoors", + "set_id": 1 + }, + { + "name": "password-fill", + "content": "", + "style": "outline", + "tags": "security,secured,authentication,authenticated,login,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "path-fill", + "content": "", + "style": "outline", + "tags": "transit,travel,trail,gps,navigation,route,destination,vector", + "set_id": 1 + }, + { + "name": "patreon-logo-fill", + "content": "", + "style": "outline", + "tags": "*updated*,crowdfunding,logos", + "set_id": 1 + }, + { + "name": "pause-fill", + "content": "", + "style": "outline", + "tags": "music,audio,resume,start,stop", + "set_id": 1 + }, + { + "name": "pause-circle-fill", + "content": "", + "style": "outline", + "tags": "music,audio,resume,start,stop,round", + "set_id": 1 + }, + { + "name": "paw-print-fill", + "content": "", + "style": "outline", + "tags": "pets,pet store,pet shop,animals,cat,dog,veterinarian", + "set_id": 1 + }, + { + "name": "paypal-logo-fill", + "content": "", + "style": "outline", + "tags": "payments,paying,purchase,logos", + "set_id": 1 + }, + { + "name": "peace-fill", + "content": "", + "style": "outline", + "tags": "love,hippies,peace sign,symbols", + "set_id": 1 + }, + { + "name": "pen-fill", + "content": "", + "style": "outline", + "tags": "ink,write,writing,editing,sign,signature", + "set_id": 1 + }, + { + "name": "pen-nib-fill", + "content": "", + "style": "outline", + "tags": "ink,write,writing,editing,sign,signature,fountain pen,illustrator", + "set_id": 1 + }, + { + "name": "pen-nib-straight-fill", + "content": "", + "style": "outline", + "tags": "ink,write,writing,editing,sign,signature,fountain pen,illustrator", + "set_id": 1 + }, + { + "name": "pencil-fill", + "content": "", + "style": "outline", + "tags": "write,writing,editing,sign,signature", + "set_id": 1 + }, + { + "name": "pencil-circle-fill", + "content": "", + "style": "outline", + "tags": "write,writing,editing,sign,signature", + "set_id": 1 + }, + { + "name": "pencil-line-fill", + "content": "", + "style": "outline", + "tags": "write,writing,editing,sign,signature", + "set_id": 1 + }, + { + "name": "pencil-ruler-fill", + "content": "", + "style": "outline", + "tags": "*new*,drawing,drafting,construction,tools", + "set_id": 1 + }, + { + "name": "pencil-simple-fill", + "content": "", + "style": "outline", + "tags": "write,writing,editing,sign,signature", + "set_id": 1 + }, + { + "name": "pencil-simple-line-fill", + "content": "", + "style": "outline", + "tags": "write,writing,editing,sign,signature", + "set_id": 1 + }, + { + "name": "pencil-simple-slash-fill", + "content": "", + "style": "outline", + "tags": "read-only,write,writing,editing", + "set_id": 1 + }, + { + "name": "pencil-slash-fill", + "content": "", + "style": "outline", + "tags": "read-only,write,writing,editing", + "set_id": 1 + }, + { + "name": "pentagon-fill", + "content": "", + "style": "outline", + "tags": "*new*,shapes,polygons,5", + "set_id": 1 + }, + { + "name": "pentagram-fill", + "content": "", + "style": "outline", + "tags": "star,wicca,satan,satanism,religion,spirituality,evil,magic", + "set_id": 1 + }, + { + "name": "pepper-fill", + "content": "", + "style": "outline", + "tags": "food,spicy,chile,vegetable", + "set_id": 1 + }, + { + "name": "percent-fill", + "content": "", + "style": "outline", + "tags": "%,percentage,percentile,ratio,delta,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "person-fill", + "content": "", + "style": "outline", + "tags": "walking,human,woman,man,body,transit,transportation,travel,commuter,user", + "set_id": 1 + }, + { + "name": "person-arms-spread-fill", + "content": "", + "style": "outline", + "tags": "accessibility,vitruvian,stretch,sports", + "set_id": 1 + }, + { + "name": "person-simple-fill", + "content": "", + "style": "outline", + "tags": "pedestrian,walking,human,woman,man,body,transit,transportation,travel,commuter,user,exercise", + "set_id": 1 + }, + { + "name": "person-simple-bike-fill", + "content": "", + "style": "outline", + "tags": "pedestrian,biking,bicycle,human,woman,man,body,sports,exercise", + "set_id": 1 + }, + { + "name": "person-simple-circle-fill", + "content": "", + "style": "outline", + "tags": "*new*,human,accessibility,a11y,vitruvius,vitruvian", + "set_id": 1 + }, + { + "name": "person-simple-hike-fill", + "content": "", + "style": "outline", + "tags": "*new*,pedestrian,climbing,mountaineering,bouldering", + "set_id": 1 + }, + { + "name": "person-simple-run-fill", + "content": "", + "style": "outline", + "tags": "pedestrian,running,human,woman,man,body,transit,transportation,travel,commuter,user,exercise", + "set_id": 1 + }, + { + "name": "person-simple-ski-fill", + "content": "", + "style": "outline", + "tags": "*new*,sports,skiing,winter,mountain", + "set_id": 1 + }, + { + "name": "person-simple-snowboard-fill", + "content": "", + "style": "outline", + "tags": "*new*,sports,snowboarding,winter,mountain", + "set_id": 1 + }, + { + "name": "person-simple-swim-fill", + "content": "", + "style": "outline", + "tags": "*new*,pedestrian,swimming,human,woman,man,body,sports,exercise", + "set_id": 1 + }, + { + "name": "person-simple-tai-chi-fill", + "content": "", + "style": "outline", + "tags": "*new*,mindfulness,martial arts,meditation,sports,exercise,yoga", + "set_id": 1 + }, + { + "name": "person-simple-throw-fill", + "content": "", + "style": "outline", + "tags": "pedestrian,tennis,human,woman,man,body,sports,exercise", + "set_id": 1 + }, + { + "name": "person-simple-walk-fill", + "content": "", + "style": "outline", + "tags": "pedestrian,walking,human,woman,man,body,transit,transportation,travel,commuter,user,exercise", + "set_id": 1 + }, + { + "name": "perspective-fill", + "content": "", + "style": "outline", + "tags": "3d,skew,warp,trapezoid", + "set_id": 1 + }, + { + "name": "phone-fill", + "content": "", + "style": "outline", + "tags": "calls,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-call-fill", + "content": "", + "style": "outline", + "tags": "calls,calling,ringing,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-disconnect-fill", + "content": "", + "style": "outline", + "tags": "calls,hang up,disconnected,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-incoming-fill", + "content": "", + "style": "outline", + "tags": "calls,calling,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-list-fill", + "content": "", + "style": "outline", + "tags": "*new*,calls,call-center,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-outgoing-fill", + "content": "", + "style": "outline", + "tags": "calls,calling,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-pause-fill", + "content": "", + "style": "outline", + "tags": "*new*,calls,hold,call-center,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-plus-fill", + "content": "", + "style": "outline", + "tags": "calls,telephone,landline,talk,conference,add", + "set_id": 1 + }, + { + "name": "phone-slash-fill", + "content": "", + "style": "outline", + "tags": "calls,disabled,disconnected,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-transfer-fill", + "content": "", + "style": "outline", + "tags": "*new*,calls,call-center,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-x-fill", + "content": "", + "style": "outline", + "tags": "calls,missed,errors,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phosphor-logo-fill", + "content": "", + "style": "outline", + "tags": "logos", + "set_id": 1 + }, + { + "name": "pi-fill", + "content": "", + "style": "outline", + "tags": "π,symbol,mathematics,circle", + "set_id": 1 + }, + { + "name": "piano-keys-fill", + "content": "", + "style": "outline", + "tags": "music,instrument,keyboard", + "set_id": 1 + }, + { + "name": "picnic-table-fill", + "content": "", + "style": "outline", + "tags": "*new*,bench,park,outdoors", + "set_id": 1 + }, + { + "name": "picture-in-picture-fill", + "content": "", + "style": "outline", + "tags": "pip,pop-out,minimize,maximize", + "set_id": 1 + }, + { + "name": "piggy-bank-fill", + "content": "", + "style": "outline", + "tags": "savings,deposit,money,coins", + "set_id": 1 + }, + { + "name": "pill-fill", + "content": "", + "style": "outline", + "tags": "capsule,medicine,rx,pharmacy,pharmacist,pharmaceuticals,prescription,drugs", + "set_id": 1 + }, + { + "name": "ping-pong-fill", + "content": "", + "style": "outline", + "tags": "*new*,sports,paddle", + "set_id": 1 + }, + { + "name": "pint-glass-fill", + "content": "", + "style": "outline", + "tags": "*new*,water,beverage,drinks,beverages,food,dining", + "set_id": 1 + }, + { + "name": "pinterest-logo-fill", + "content": "", + "style": "outline", + "tags": "logos,vision board,mood board,social media", + "set_id": 1 + }, + { + "name": "pinwheel-fill", + "content": "", + "style": "outline", + "tags": "toys,whirligig", + "set_id": 1 + }, + { + "name": "pipe-fill", + "content": "", + "style": "outline", + "tags": "*new*,tube,plumber,plumbing,construction", + "set_id": 1 + }, + { + "name": "pipe-wrench-fill", + "content": "", + "style": "outline", + "tags": "*new*,plumber,plumbing,tools,construction", + "set_id": 1 + }, + { + "name": "pix-logo-fill", + "content": "", + "style": "outline", + "tags": "*new*,payments,paying,purchase,logos", + "set_id": 1 + }, + { + "name": "pizza-fill", + "content": "", + "style": "outline", + "tags": "fast food,party,places,locations,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "placeholder-fill", + "content": "", + "style": "outline", + "tags": "empty,notdef,tofu,rectangle slash,missing", + "set_id": 1 + }, + { + "name": "planet-fill", + "content": "", + "style": "outline", + "tags": "saturn,world,globe,astronomy,space", + "set_id": 1 + }, + { + "name": "plant-fill", + "content": "", + "style": "outline", + "tags": "sprout,vegan,farm,farming,garden,gardening", + "set_id": 1 + }, + { + "name": "play-fill", + "content": "", + "style": "outline", + "tags": "music,audio,resume,start", + "set_id": 1 + }, + { + "name": "play-circle-fill", + "content": "", + "style": "outline", + "tags": "music,audio,resume,start,round", + "set_id": 1 + }, + { + "name": "play-pause-fill", + "content": "", + "style": "outline", + "tags": "music,audio,resume,start,stop", + "set_id": 1 + }, + { + "name": "playlist-fill", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,queue", + "set_id": 1 + }, + { + "name": "plug-fill", + "content": "", + "style": "outline", + "tags": "outlet,socket,plugin,integration", + "set_id": 1 + }, + { + "name": "plug-charging-fill", + "content": "", + "style": "outline", + "tags": "outlet,socket,plugin,integration,charge,charging", + "set_id": 1 + }, + { + "name": "plugs-fill", + "content": "", + "style": "outline", + "tags": "outlet,socket,plugin,integration,disconnected", + "set_id": 1 + }, + { + "name": "plugs-connected-fill", + "content": "", + "style": "outline", + "tags": "*updated*,outlet,socket,plugin,integration", + "set_id": 1 + }, + { + "name": "plus-fill", + "content": "", + "style": "outline", + "tags": "addition,sum,mathematics,arithmetic,calculator,+", + "set_id": 1 + }, + { + "name": "plus-circle-fill", + "content": "", + "style": "outline", + "tags": "addition,sum,mathematics,arithmetic,calculator,round,+", + "set_id": 1 + }, + { + "name": "plus-minus-fill", + "content": "", + "style": "outline", + "tags": "plus or minus,plus/minus,add/subtract,addition,sum,subtraction,difference,mathematics,arithmetic,calculator,+,-,±", + "set_id": 1 + }, + { + "name": "plus-square-fill", + "content": "", + "style": "outline", + "tags": "addition,sum,mathematics,arithmetic,calculator,+", + "set_id": 1 + }, + { + "name": "poker-chip-fill", + "content": "", + "style": "outline", + "tags": "chips,tokens,cards,gambling,casino", + "set_id": 1 + }, + { + "name": "police-car-fill", + "content": "", + "style": "outline", + "tags": "*updated*,vehicles,cars,automobiles,law enforcement", + "set_id": 1 + }, + { + "name": "polygon-fill", + "content": "", + "style": "outline", + "tags": "shapes,drawing", + "set_id": 1 + }, + { + "name": "popcorn-fill", + "content": "", + "style": "outline", + "tags": "food,movies,theater", + "set_id": 1 + }, + { + "name": "popsicle-fill", + "content": "", + "style": "outline", + "tags": "*new*,ice cream,dessert,summer,food", + "set_id": 1 + }, + { + "name": "potted-plant-fill", + "content": "", + "style": "outline", + "tags": "sprout,vegan,garden,gardening", + "set_id": 1 + }, + { + "name": "power-fill", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,on,off,on/off,switch,power switch", + "set_id": 1 + }, + { + "name": "prescription-fill", + "content": "", + "style": "outline", + "tags": "rx,medicine,drugs,pharmacy,pharmacist,pharmaceuticals,doctor", + "set_id": 1 + }, + { + "name": "presentation-fill", + "content": "", + "style": "outline", + "tags": "whiteboard,flipchart,charts,statistics,analyze,analysis,meeting", + "set_id": 1 + }, + { + "name": "presentation-chart-fill", + "content": "", + "style": "outline", + "tags": "whiteboard,flipchart,graphs,graphing,charts,statistics,analyze,analysis,meeting", + "set_id": 1 + }, + { + "name": "printer-fill", + "content": "", + "style": "outline", + "tags": "printing", + "set_id": 1 + }, + { + "name": "prohibit-fill", + "content": "", + "style": "outline", + "tags": "forbidden,prohibited,cancelled,prevent,stop,do not enter", + "set_id": 1 + }, + { + "name": "prohibit-inset-fill", + "content": "", + "style": "outline", + "tags": "forbidden,prohibited,cancelled,prevent,stop,do not enter", + "set_id": 1 + }, + { + "name": "projector-screen-fill", + "content": "", + "style": "outline", + "tags": "projection,presentation,slideshow,movies,charts,statistics,analyze,analysis", + "set_id": 1 + }, + { + "name": "projector-screen-chart-fill", + "content": "", + "style": "outline", + "tags": "projection,presentation,slideshow,graphs,graphing,charts,statistics,analyze,analysis", + "set_id": 1 + }, + { + "name": "pulse-fill", + "content": "", + "style": "outline", + "tags": "activity,heartbeat,medical,ecg,ekg,vitals,monitor,medicine", + "set_id": 1 + }, + { + "name": "push-pin-fill", + "content": "", + "style": "outline", + "tags": "favorites,favorited,pushpin", + "set_id": 1 + }, + { + "name": "push-pin-simple-fill", + "content": "", + "style": "outline", + "tags": "favorites,favorited,pushpin", + "set_id": 1 + }, + { + "name": "push-pin-simple-slash-fill", + "content": "", + "style": "outline", + "tags": "favorites,favorited,pushpin,disabled", + "set_id": 1 + }, + { + "name": "push-pin-slash-fill", + "content": "", + "style": "outline", + "tags": "favorites,favorited,pushpin,disabled", + "set_id": 1 + }, + { + "name": "puzzle-piece-fill", + "content": "", + "style": "outline", + "tags": "board game,element,component,extension,plugin", + "set_id": 1 + }, + { + "name": "qr-code-fill", + "content": "", + "style": "outline", + "tags": "upc,barcode,products,shopping,scanner", + "set_id": 1 + }, + { + "name": "question-fill", + "content": "", + "style": "outline", + "tags": "information,help,support,questions", + "set_id": 1 + }, + { + "name": "question-mark-fill", + "content": "", + "style": "outline", + "tags": "*new*,?,information,help,support,questions,punctuation,symbol", + "set_id": 1 + }, + { + "name": "queue-fill", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,playlist", + "set_id": 1 + }, + { + "name": "quotes-fill", + "content": "", + "style": "outline", + "tags": "quoations,quotation marks,double-quotes,writing,books", + "set_id": 1 + }, + { + "name": "rabbit-fill", + "content": "", + "style": "outline", + "tags": "*new*,hare,fast,animal", + "set_id": 1 + }, + { + "name": "racquet-fill", + "content": "", + "style": "outline", + "tags": "*new*,sports,tennis,squash,pickleball", + "set_id": 1 + }, + { + "name": "radical-fill", + "content": "", + "style": "outline", + "tags": "√,radix,radicand,square root,squareroot,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "radio-fill", + "content": "", + "style": "outline", + "tags": "broadcast,fm,am,xm,transmitter,receiver", + "set_id": 1 + }, + { + "name": "radio-button-fill", + "content": "", + "style": "outline", + "tags": "input,checkbox,checked", + "set_id": 1 + }, + { + "name": "radioactive-fill", + "content": "", + "style": "outline", + "tags": "radiation,danger,warning,nuclear,atomic", + "set_id": 1 + }, + { + "name": "rainbow-fill", + "content": "", + "style": "outline", + "tags": "meteorology,rainstorm,arc,pride,lgbtq+,leprechaun", + "set_id": 1 + }, + { + "name": "rainbow-cloud-fill", + "content": "", + "style": "outline", + "tags": "meteorology,rainstorm,cloudy,partly cloudy,partly sunny,pride,lgbtq+,leprechaun", + "set_id": 1 + }, + { + "name": "ranking-fill", + "content": "", + "style": "outline", + "tags": "*new*,medal,rank,leaderboard,winner,sports", + "set_id": 1 + }, + { + "name": "read-cv-logo-fill", + "content": "", + "style": "outline", + "tags": "resume,jobs,logos", + "set_id": 1 + }, + { + "name": "receipt-fill", + "content": "", + "style": "outline", + "tags": "purchase,money,clipping,expense", + "set_id": 1 + }, + { + "name": "receipt-x-fill", + "content": "", + "style": "outline", + "tags": "purchase,money,clipping,expense,cancel", + "set_id": 1 + }, + { + "name": "record-fill", + "content": "", + "style": "outline", + "tags": "music,audio,recording,recorder,voice memo", + "set_id": 1 + }, + { + "name": "rectangle-fill", + "content": "", + "style": "outline", + "tags": "4,shapes,polygons,box", + "set_id": 1 + }, + { + "name": "rectangle-dashed-fill", + "content": "", + "style": "outline", + "tags": "*new*,4,shapes,polygons,box,missing", + "set_id": 1 + }, + { + "name": "recycle-fill", + "content": "", + "style": "outline", + "tags": "recycling,trash,environmental,green", + "set_id": 1 + }, + { + "name": "reddit-logo-fill", + "content": "", + "style": "outline", + "tags": "logos,subreddit,snoo,social media", + "set_id": 1 + }, + { + "name": "repeat-fill", + "content": "", + "style": "outline", + "tags": "music,audio,recycle", + "set_id": 1 + }, + { + "name": "repeat-once-fill", + "content": "", + "style": "outline", + "tags": "music,audio,recycle", + "set_id": 1 + }, + { + "name": "replit-logo-fill", + "content": "", + "style": "outline", + "tags": "*new*,logos,ide,editor,coding", + "set_id": 1 + }, + { + "name": "resize-fill", + "content": "", + "style": "outline", + "tags": "*new*,maximize,expand,grow", + "set_id": 1 + }, + { + "name": "rewind-fill", + "content": "", + "style": "outline", + "tags": "music,audio,seek,scrub,scan,skip,back,backwards,reverse", + "set_id": 1 + }, + { + "name": "rewind-circle-fill", + "content": "", + "style": "outline", + "tags": "music,audio,seek,scrub,scan,skip,back,backwards,reverse", + "set_id": 1 + }, + { + "name": "road-horizon-fill", + "content": "", + "style": "outline", + "tags": "trip,drive,road,travel,transportation,highway", + "set_id": 1 + }, + { + "name": "robot-fill", + "content": "", + "style": "outline", + "tags": "automaton,artificial intelligence,ai", + "set_id": 1 + }, + { + "name": "rocket-fill", + "content": "", + "style": "outline", + "tags": "spaceship,launch,deployment,rocketship", + "set_id": 1 + }, + { + "name": "rocket-launch-fill", + "content": "", + "style": "outline", + "tags": "*updated*,spaceship,flying,blastoff,deployment,rocketship", + "set_id": 1 + }, + { + "name": "rows-fill", + "content": "", + "style": "outline", + "tags": "2,shapes,polygons,box,stack,list,table,cards", + "set_id": 1 + }, + { + "name": "rows-plus-bottom-fill", + "content": "", + "style": "outline", + "tags": "*new*,2,shapes,polygons,box,stack,list,table,cards,prepend,insert", + "set_id": 1 + }, + { + "name": "rows-plus-top-fill", + "content": "", + "style": "outline", + "tags": "*new*,2,shapes,polygons,box,stack,list,table,cards,prepend,insert", + "set_id": 1 + }, + { + "name": "rss-fill", + "content": "", + "style": "outline", + "tags": "radio,broadcast,web feed,news,aggregator", + "set_id": 1 + }, + { + "name": "rss-simple-fill", + "content": "", + "style": "outline", + "tags": "radio,broadcast,web feed,news,aggregator", + "set_id": 1 + }, + { + "name": "rug-fill", + "content": "", + "style": "outline", + "tags": "*updated*,tapestry,carpet", + "set_id": 1 + }, + { + "name": "ruler-fill", + "content": "", + "style": "outline", + "tags": "measure,scale,distance", + "set_id": 1 + }, + { + "name": "sailboat-fill", + "content": "", + "style": "outline", + "tags": "*new*,sailing,ship,vehicles,transportation,sports,places,locations", + "set_id": 1 + }, + { + "name": "scales-fill", + "content": "", + "style": "outline", + "tags": "measure,balance,law,justice,government", + "set_id": 1 + }, + { + "name": "scan-fill", + "content": "", + "style": "outline", + "tags": "upc,barcode,products,shopping,scanner", + "set_id": 1 + }, + { + "name": "scan-smiley-fill", + "content": "", + "style": "outline", + "tags": "*new*,facial recognition,face unlock,scanner", + "set_id": 1 + }, + { + "name": "scissors-fill", + "content": "", + "style": "outline", + "tags": "*updated*,cut,snip,clipboard", + "set_id": 1 + }, + { + "name": "scooter-fill", + "content": "", + "style": "outline", + "tags": "vehicles,transportation,travel,transit", + "set_id": 1 + }, + { + "name": "screencast-fill", + "content": "", + "style": "outline", + "tags": "apple,airplay,screencasting,screen share,television,tv", + "set_id": 1 + }, + { + "name": "screwdriver-fill", + "content": "", + "style": "outline", + "tags": "*new*,tools,construction,flathead,drill", + "set_id": 1 + }, + { + "name": "scribble-fill", + "content": "", + "style": "outline", + "tags": "*new*,doodles,squiggle,drawing,sign,signature", + "set_id": 1 + }, + { + "name": "scribble-loop-fill", + "content": "", + "style": "outline", + "tags": "doodles,drawing,sign,signature", + "set_id": 1 + }, + { + "name": "scroll-fill", + "content": "", + "style": "outline", + "tags": "*updated*,parchment,paper,script,spell,fantasy", + "set_id": 1 + }, + { + "name": "seal-fill", + "content": "", + "style": "outline", + "tags": "badge,verified,verification,shapes,polygons,circle-wavy", + "set_id": 1 + }, + { + "name": "seal-check-fill", + "content": "", + "style": "outline", + "tags": "badge,verified,verification,shapes,polygons,circle-wavy", + "set_id": 1 + }, + { + "name": "seal-percent-fill", + "content": "", + "style": "outline", + "tags": "*new*,badge,discount,sale,shapes,polygons,circle-wavy", + "set_id": 1 + }, + { + "name": "seal-question-fill", + "content": "", + "style": "outline", + "tags": "badge,unverified,verification,shapes,polygons,circle-wavy", + "set_id": 1 + }, + { + "name": "seal-warning-fill", + "content": "", + "style": "outline", + "tags": "badge,unverified,verification,errors,shapes,polygons,circle-wavy", + "set_id": 1 + }, + { + "name": "seat-fill", + "content": "", + "style": "outline", + "tags": "*new*,chair,car seat,airplane seat,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "seatbelt-fill", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,safety", + "set_id": 1 + }, + { + "name": "security-camera-fill", + "content": "", + "style": "outline", + "tags": "*new*,cctv,surveillance,video,monitor,motion detector,safety", + "set_id": 1 + }, + { + "name": "selection-fill", + "content": "", + "style": "outline", + "tags": "marquis,select,square dashed", + "set_id": 1 + }, + { + "name": "selection-all-fill", + "content": "", + "style": "outline", + "tags": "marquis,select all", + "set_id": 1 + }, + { + "name": "selection-background-fill", + "content": "", + "style": "outline", + "tags": "marquis", + "set_id": 1 + }, + { + "name": "selection-foreground-fill", + "content": "", + "style": "outline", + "tags": "marquis", + "set_id": 1 + }, + { + "name": "selection-inverse-fill", + "content": "", + "style": "outline", + "tags": "marquis,invert", + "set_id": 1 + }, + { + "name": "selection-plus-fill", + "content": "", + "style": "outline", + "tags": "marquis,add", + "set_id": 1 + }, + { + "name": "selection-slash-fill", + "content": "", + "style": "outline", + "tags": "marquis,unselect", + "set_id": 1 + }, + { + "name": "shapes-fill", + "content": "", + "style": "outline", + "tags": "geometry,square,circle,triangle", + "set_id": 1 + }, + { + "name": "share-fill", + "content": "", + "style": "outline", + "tags": "send to,export,arrows", + "set_id": 1 + }, + { + "name": "share-fat-fill", + "content": "", + "style": "outline", + "tags": "export,send to", + "set_id": 1 + }, + { + "name": "share-network-fill", + "content": "", + "style": "outline", + "tags": "send to,export", + "set_id": 1 + }, + { + "name": "shield-fill", + "content": "", + "style": "outline", + "tags": "badge,security,secured,defense,defended,authentication,authenticated,guarded,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "shield-check-fill", + "content": "", + "style": "outline", + "tags": "badge,security,defense,authentication,authenticated,guarded,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "shield-checkered-fill", + "content": "", + "style": "outline", + "tags": "badge,security,defense,authentication,authenticated,guarded,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "shield-chevron-fill", + "content": "", + "style": "outline", + "tags": "badge,security,defense,authentication,authenticated,guarded,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "shield-plus-fill", + "content": "", + "style": "outline", + "tags": "badge,security,defense,authentication,authenticated,guarded,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "shield-slash-fill", + "content": "", + "style": "outline", + "tags": "badge,security,unsecured,defense,undefended,authentication,unauthenticated,unguarded,unlocked,unencrypted,encryption,disabled", + "set_id": 1 + }, + { + "name": "shield-star-fill", + "content": "", + "style": "outline", + "tags": "badge,security,defense,authentication,authenticated,guarded,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "shield-warning-fill", + "content": "", + "style": "outline", + "tags": "badge,security,unsecured,defense,undefended,authentication,unauthenticated,unguarded,unlocked,unencrypted,encryption,errors", + "set_id": 1 + }, + { + "name": "shipping-container-fill", + "content": "", + "style": "outline", + "tags": "*new*,shipping,transportation,places,locations", + "set_id": 1 + }, + { + "name": "shirt-folded-fill", + "content": "", + "style": "outline", + "tags": "clothes,clothing", + "set_id": 1 + }, + { + "name": "shooting-star-fill", + "content": "", + "style": "outline", + "tags": "wish,comet,meteor", + "set_id": 1 + }, + { + "name": "shopping-bag-fill", + "content": "", + "style": "outline", + "tags": "ecommerce,market,basket,cart,buying,checkout,places,locations", + "set_id": 1 + }, + { + "name": "shopping-bag-open-fill", + "content": "", + "style": "outline", + "tags": "ecommerce,market,basket,cart,buying,checkout,places,locations", + "set_id": 1 + }, + { + "name": "shopping-cart-fill", + "content": "", + "style": "outline", + "tags": "ecommerce,market,basket,buying,groceries,checkout,places,locations", + "set_id": 1 + }, + { + "name": "shopping-cart-simple-fill", + "content": "", + "style": "outline", + "tags": "ecommerce,market,basket,buying,groceries,checkout,places,locations", + "set_id": 1 + }, + { + "name": "shovel-fill", + "content": "", + "style": "outline", + "tags": "*new*,tools,digging,construction", + "set_id": 1 + }, + { + "name": "shower-fill", + "content": "", + "style": "outline", + "tags": "bath,bathtub,bathroom,faucet", + "set_id": 1 + }, + { + "name": "shrimp-fill", + "content": "", + "style": "outline", + "tags": "food,seafood,prawn", + "set_id": 1 + }, + { + "name": "shuffle-fill", + "content": "", + "style": "outline", + "tags": "music,audio,randomize,crossed", + "set_id": 1 + }, + { + "name": "shuffle-angular-fill", + "content": "", + "style": "outline", + "tags": "music,audio,randomize,crossed", + "set_id": 1 + }, + { + "name": "shuffle-simple-fill", + "content": "", + "style": "outline", + "tags": "music,audio,randomize,crossed", + "set_id": 1 + }, + { + "name": "sidebar-fill", + "content": "", + "style": "outline", + "tags": "left rail,wireframe,ui,interface", + "set_id": 1 + }, + { + "name": "sidebar-simple-fill", + "content": "", + "style": "outline", + "tags": "left rail,wireframe,ui,interface", + "set_id": 1 + }, + { + "name": "sigma-fill", + "content": "", + "style": "outline", + "tags": "σ,symbol,mathematics,sum", + "set_id": 1 + }, + { + "name": "sign-in-fill", + "content": "", + "style": "outline", + "tags": "*updated*,signin,login,log in,enter", + "set_id": 1 + }, + { + "name": "sign-out-fill", + "content": "", + "style": "outline", + "tags": "*updated*,signout,logout,log out,exit", + "set_id": 1 + }, + { + "name": "signature-fill", + "content": "", + "style": "outline", + "tags": "*updated*,sign,autograph,verify", + "set_id": 1 + }, + { + "name": "signpost-fill", + "content": "", + "style": "outline", + "tags": "direction,traffic,road sign,transit,transportation", + "set_id": 1 + }, + { + "name": "sim-card-fill", + "content": "", + "style": "outline", + "tags": "*updated*,cellular,cellphone,mobile", + "set_id": 1 + }, + { + "name": "siren-fill", + "content": "", + "style": "outline", + "tags": "alarm,police,lights,warning", + "set_id": 1 + }, + { + "name": "sketch-logo-fill", + "content": "", + "style": "outline", + "tags": "drawing,art,illustration,ui,interface,prototype,prototyping,gemstone,diamond", + "set_id": 1 + }, + { + "name": "skip-back-fill", + "content": "", + "style": "outline", + "tags": "music,audio,seek,scrub,scan,back,backwards,reverse,previous", + "set_id": 1 + }, + { + "name": "skip-back-circle-fill", + "content": "", + "style": "outline", + "tags": "music,audio,seek,scrub,scan,back,backwards,reverse,previous", + "set_id": 1 + }, + { + "name": "skip-forward-fill", + "content": "", + "style": "outline", + "tags": "music,audio,seek,scrub,scan,ahead,next", + "set_id": 1 + }, + { + "name": "skip-forward-circle-fill", + "content": "", + "style": "outline", + "tags": "music,audio,seek,scrub,scan,ahead,next", + "set_id": 1 + }, + { + "name": "skull-fill", + "content": "", + "style": "outline", + "tags": "death,dead,kill", + "set_id": 1 + }, + { + "name": "skype-logo-fill", + "content": "", + "style": "outline", + "tags": "*new*,chat,video conference", + "set_id": 1 + }, + { + "name": "slack-logo-fill", + "content": "", + "style": "outline", + "tags": "logos,messaging", + "set_id": 1 + }, + { + "name": "sliders-fill", + "content": "", + "style": "outline", + "tags": "music,audio,faders,filters,equalizer,volume,settings,preferences", + "set_id": 1 + }, + { + "name": "sliders-horizontal-fill", + "content": "", + "style": "outline", + "tags": "music,audio,faders,filters,equalizer,volume,settings,preferences", + "set_id": 1 + }, + { + "name": "slideshow-fill", + "content": "", + "style": "outline", + "tags": "pictures,images,photography,gallery,carousel", + "set_id": 1 + }, + { + "name": "smiley-fill", + "content": "", + "style": "outline", + "tags": "face,emoji,happy,grinning,smiling", + "set_id": 1 + }, + { + "name": "smiley-angry-fill", + "content": "", + "style": "outline", + "tags": "face,emoji,mad,frown", + "set_id": 1 + }, + { + "name": "smiley-blank-fill", + "content": "", + "style": "outline", + "tags": "face,emoji,unimpressed,no face", + "set_id": 1 + }, + { + "name": "smiley-meh-fill", + "content": "", + "style": "outline", + "tags": "face,emoji,unimpressed,neutral", + "set_id": 1 + }, + { + "name": "smiley-melting-fill", + "content": "", + "style": "outline", + "tags": "*new*,face,emoji,embarrassment,sarcasm,shame,hot,heat", + "set_id": 1 + }, + { + "name": "smiley-nervous-fill", + "content": "", + "style": "outline", + "tags": "*updated*,face,emoji,anxious,uncomfortable,uneasy,queasy,sick,ill", + "set_id": 1 + }, + { + "name": "smiley-sad-fill", + "content": "", + "style": "outline", + "tags": "face,emoji,unhappy,frowning", + "set_id": 1 + }, + { + "name": "smiley-sticker-fill", + "content": "", + "style": "outline", + "tags": "face,emoji,happy,grinning,smiling", + "set_id": 1 + }, + { + "name": "smiley-wink-fill", + "content": "", + "style": "outline", + "tags": "face,emoji,winking,flirting,cute", + "set_id": 1 + }, + { + "name": "smiley-x-eyes-fill", + "content": "", + "style": "outline", + "tags": "face,emoji,dead,killed,unconscious", + "set_id": 1 + }, + { + "name": "snapchat-logo-fill", + "content": "", + "style": "outline", + "tags": "logos,messaging,social media", + "set_id": 1 + }, + { + "name": "sneaker-fill", + "content": "", + "style": "outline", + "tags": "clothes,clothing,shoes,trainers,sports", + "set_id": 1 + }, + { + "name": "sneaker-move-fill", + "content": "", + "style": "outline", + "tags": "*updated*,clothes,clothing,shoes,trainers,sports", + "set_id": 1 + }, + { + "name": "snowflake-fill", + "content": "", + "style": "outline", + "tags": "meteorology,snowy,snowing,snowstorm", + "set_id": 1 + }, + { + "name": "soccer-ball-fill", + "content": "", + "style": "outline", + "tags": "*updated*,sports,football,mls", + "set_id": 1 + }, + { + "name": "sock-fill", + "content": "", + "style": "outline", + "tags": "*new*,clothes,clothing", + "set_id": 1 + }, + { + "name": "solar-panel-fill", + "content": "", + "style": "outline", + "tags": "*new*,renewable,energy,power,electricity", + "set_id": 1 + }, + { + "name": "solar-roof-fill", + "content": "", + "style": "outline", + "tags": "*new*,renewable,energy,power,electricity", + "set_id": 1 + }, + { + "name": "sort-ascending-fill", + "content": "", + "style": "outline", + "tags": "*updated*,sorted,sorting,increasing,a to z,arrows,list", + "set_id": 1 + }, + { + "name": "sort-descending-fill", + "content": "", + "style": "outline", + "tags": "*updated*,sorted,sorting,decreasing,z to a,arrows,list", + "set_id": 1 + }, + { + "name": "soundcloud-logo-fill", + "content": "", + "style": "outline", + "tags": "music,social media,logos", + "set_id": 1 + }, + { + "name": "spade-fill", + "content": "", + "style": "outline", + "tags": "spades,suits,cards,gambling,casino,gaming", + "set_id": 1 + }, + { + "name": "sparkle-fill", + "content": "", + "style": "outline", + "tags": "star,rate,ratings,favorites,favorited", + "set_id": 1 + }, + { + "name": "speaker-hifi-fill", + "content": "", + "style": "outline", + "tags": "music,audio,sound,stereo", + "set_id": 1 + }, + { + "name": "speaker-high-fill", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,volume,sound", + "set_id": 1 + }, + { + "name": "speaker-low-fill", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,volume,sound", + "set_id": 1 + }, + { + "name": "speaker-none-fill", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,muted,volume,sound", + "set_id": 1 + }, + { + "name": "speaker-simple-high-fill", + "content": "", + "style": "outline", + "tags": "music,audio,volume,sound", + "set_id": 1 + }, + { + "name": "speaker-simple-low-fill", + "content": "", + "style": "outline", + "tags": "music,audio,volume,sound", + "set_id": 1 + }, + { + "name": "speaker-simple-none-fill", + "content": "", + "style": "outline", + "tags": "music,audio,muted,volume,sound", + "set_id": 1 + }, + { + "name": "speaker-simple-slash-fill", + "content": "", + "style": "outline", + "tags": "music,audio,muted,volume,sound,disabled", + "set_id": 1 + }, + { + "name": "speaker-simple-x-fill", + "content": "", + "style": "outline", + "tags": "music,audio,muted,volume,sound,disabled,errors", + "set_id": 1 + }, + { + "name": "speaker-slash-fill", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,muted,volume,sound,disabled", + "set_id": 1 + }, + { + "name": "speaker-x-fill", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,muted,volume,sound,disabled,errors", + "set_id": 1 + }, + { + "name": "speedometer-fill", + "content": "", + "style": "outline", + "tags": "*new*,gauge,dashboard,meter,speed,odometer,performance", + "set_id": 1 + }, + { + "name": "sphere-fill", + "content": "", + "style": "outline", + "tags": "*new*,circle,ball,3d,mesh,cad,model", + "set_id": 1 + }, + { + "name": "spinner-fill", + "content": "", + "style": "outline", + "tags": "loading,loader,waiting,progress", + "set_id": 1 + }, + { + "name": "spinner-ball-fill", + "content": "", + "style": "outline", + "tags": "*new*,loading,loader,waiting,progress", + "set_id": 1 + }, + { + "name": "spinner-gap-fill", + "content": "", + "style": "outline", + "tags": "loading,loader,waiting,progress", + "set_id": 1 + }, + { + "name": "spiral-fill", + "content": "", + "style": "outline", + "tags": "*updated*,spin,rotate,dizzy", + "set_id": 1 + }, + { + "name": "split-horizontal-fill", + "content": "", + "style": "outline", + "tags": "resize,columns", + "set_id": 1 + }, + { + "name": "split-vertical-fill", + "content": "", + "style": "outline", + "tags": "resize,rows", + "set_id": 1 + }, + { + "name": "spotify-logo-fill", + "content": "", + "style": "outline", + "tags": "music,player,streaming", + "set_id": 1 + }, + { + "name": "spray-bottle-fill", + "content": "", + "style": "outline", + "tags": "*new*,cleaner,cleaning", + "set_id": 1 + }, + { + "name": "square-fill", + "content": "", + "style": "outline", + "tags": "4,shapes,polygons,box", + "set_id": 1 + }, + { + "name": "square-half-fill", + "content": "", + "style": "outline", + "tags": "4,shapes,polygons,box,columns,sidebar,split vertical", + "set_id": 1 + }, + { + "name": "square-half-bottom-fill", + "content": "", + "style": "outline", + "tags": "4,shapes,polygons,box,columns,sidebar,split vertical", + "set_id": 1 + }, + { + "name": "square-logo-fill", + "content": "", + "style": "outline", + "tags": "squareup,payment", + "set_id": 1 + }, + { + "name": "square-split-horizontal-fill", + "content": "", + "style": "outline", + "tags": "shapes,polygons,columns", + "set_id": 1 + }, + { + "name": "square-split-vertical-fill", + "content": "", + "style": "outline", + "tags": "shapes,polygons,rows", + "set_id": 1 + }, + { + "name": "squares-four-fill", + "content": "", + "style": "outline", + "tags": "4,shapes,polygons,apps,applications,grid,table,microsoft,logos", + "set_id": 1 + }, + { + "name": "stack-fill", + "content": "", + "style": "outline", + "tags": "cards,layers", + "set_id": 1 + }, + { + "name": "stack-minus-fill", + "content": "", + "style": "outline", + "tags": "*new*,cards,layers,remove,delete", + "set_id": 1 + }, + { + "name": "stack-overflow-logo-fill", + "content": "", + "style": "outline", + "tags": "logos,code", + "set_id": 1 + }, + { + "name": "stack-plus-fill", + "content": "", + "style": "outline", + "tags": "*new*,cards,layers,add", + "set_id": 1 + }, + { + "name": "stack-simple-fill", + "content": "", + "style": "outline", + "tags": "cards,layers", + "set_id": 1 + }, + { + "name": "stairs-fill", + "content": "", + "style": "outline", + "tags": "staircase,steps,escalator,exit,signs", + "set_id": 1 + }, + { + "name": "stamp-fill", + "content": "", + "style": "outline", + "tags": "clone,seal,official", + "set_id": 1 + }, + { + "name": "standard-definition-fill", + "content": "", + "style": "outline", + "tags": "*new*,sd,resolution,video", + "set_id": 1 + }, + { + "name": "star-fill", + "content": "", + "style": "outline", + "tags": "rate,ratings,favorites,favorited", + "set_id": 1 + }, + { + "name": "star-and-crescent-fill", + "content": "", + "style": "outline", + "tags": "islam,muslim,moon,religion,worship,symbol", + "set_id": 1 + }, + { + "name": "star-four-fill", + "content": "", + "style": "outline", + "tags": "rate,ratings,favorites,favorited", + "set_id": 1 + }, + { + "name": "star-half-fill", + "content": "", + "style": "outline", + "tags": "rate,ratings", + "set_id": 1 + }, + { + "name": "star-of-david-fill", + "content": "", + "style": "outline", + "tags": "judaism,jewish,hexagram,religion,worship,symbol", + "set_id": 1 + }, + { + "name": "steam-logo-fill", + "content": "", + "style": "outline", + "tags": "*new*,gaming,games", + "set_id": 1 + }, + { + "name": "steering-wheel-fill", + "content": "", + "style": "outline", + "tags": "cars,vehicles,automobiles,driving", + "set_id": 1 + }, + { + "name": "steps-fill", + "content": "", + "style": "outline", + "tags": "stairs,staircase,exit,signs", + "set_id": 1 + }, + { + "name": "stethoscope-fill", + "content": "", + "style": "outline", + "tags": "hospital,medical,medicine,injury,safety,emergency,doctor,heart", + "set_id": 1 + }, + { + "name": "sticker-fill", + "content": "", + "style": "outline", + "tags": "stickers,sticker pack,labels", + "set_id": 1 + }, + { + "name": "stool-fill", + "content": "", + "style": "outline", + "tags": "chair,seat,furniture", + "set_id": 1 + }, + { + "name": "stop-fill", + "content": "", + "style": "outline", + "tags": "music,audio", + "set_id": 1 + }, + { + "name": "stop-circle-fill", + "content": "", + "style": "outline", + "tags": "music,audio,round", + "set_id": 1 + }, + { + "name": "storefront-fill", + "content": "", + "style": "outline", + "tags": "shops,shopping,markets,stores,buildings,places,locations", + "set_id": 1 + }, + { + "name": "strategy-fill", + "content": "", + "style": "outline", + "tags": "sports,strategem,plan,tic-tac-toe", + "set_id": 1 + }, + { + "name": "stripe-logo-fill", + "content": "", + "style": "outline", + "tags": "payment", + "set_id": 1 + }, + { + "name": "student-fill", + "content": "", + "style": "outline", + "tags": "pupil,graduate,classroom,teacher,education,school,college,university", + "set_id": 1 + }, + { + "name": "subset-of-fill", + "content": "", + "style": "outline", + "tags": "*new*,⊆,subset of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "subset-proper-of-fill", + "content": "", + "style": "outline", + "tags": "*new*,⊂,proper subset of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "subtitles-fill", + "content": "", + "style": "outline", + "tags": "subtitles,television,tv,transcribed,transcription,accessibility,a11y", + "set_id": 1 + }, + { + "name": "subtitles-slash-fill", + "content": "", + "style": "outline", + "tags": "*new*,subtitles,television,tv,transcribed,transcription,accessibility,a11y,disabled", + "set_id": 1 + }, + { + "name": "subtract-fill", + "content": "", + "style": "outline", + "tags": "boolean,intersection,combine,split,merge,union", + "set_id": 1 + }, + { + "name": "subtract-square-fill", + "content": "", + "style": "outline", + "tags": "boolean,intersection,combine,split,merge,union", + "set_id": 1 + }, + { + "name": "subway-fill", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,underground,train,tunnel,metro,light rail,public transit,transportation,commuter,traveling,places,locations", + "set_id": 1 + }, + { + "name": "suitcase-fill", + "content": "", + "style": "outline", + "tags": "briefcase,valise,baggage,folders,portfolio", + "set_id": 1 + }, + { + "name": "suitcase-rolling-fill", + "content": "", + "style": "outline", + "tags": "suitcase,luggage,travel,transportation", + "set_id": 1 + }, + { + "name": "suitcase-simple-fill", + "content": "", + "style": "outline", + "tags": "briefcase,valise,baggage,folders,portfolio", + "set_id": 1 + }, + { + "name": "sun-fill", + "content": "", + "style": "outline", + "tags": "day,daytime,daylight,clear,sunny,sunshine,light mode,brightness,lighten,brighten", + "set_id": 1 + }, + { + "name": "sun-dim-fill", + "content": "", + "style": "outline", + "tags": "day,daytime,daylight,clear,sunny,sunshine,light mode,brightness,darken", + "set_id": 1 + }, + { + "name": "sun-horizon-fill", + "content": "", + "style": "outline", + "tags": "day,daytime,daylight,clear,sunny,sunshine,sunrise,sunset", + "set_id": 1 + }, + { + "name": "sunglasses-fill", + "content": "", + "style": "outline", + "tags": "vision,sun,spectacles", + "set_id": 1 + }, + { + "name": "superset-of-fill", + "content": "", + "style": "outline", + "tags": "*new*,⊇,superset of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "superset-proper-of-fill", + "content": "", + "style": "outline", + "tags": "*new*,⊃,proper superset of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "swap-fill", + "content": "", + "style": "outline", + "tags": "layers,replace,exchange,reverse", + "set_id": 1 + }, + { + "name": "swatches-fill", + "content": "", + "style": "outline", + "tags": "colors,color picker,samples,pantone", + "set_id": 1 + }, + { + "name": "swimming-pool-fill", + "content": "", + "style": "outline", + "tags": "swim,sports,exercise,olympics,aquatics", + "set_id": 1 + }, + { + "name": "sword-fill", + "content": "", + "style": "outline", + "tags": "weapon,knife,dagger,gladius,video games,rpg,gaming,war", + "set_id": 1 + }, + { + "name": "synagogue-fill", + "content": "", + "style": "outline", + "tags": "jewish,judaism,temple,religion,worship", + "set_id": 1 + }, + { + "name": "syringe-fill", + "content": "", + "style": "outline", + "tags": "needle,hypodermic,vaccine,medicine,doctor,shot,hospital", + "set_id": 1 + }, + { + "name": "t-shirt-fill", + "content": "", + "style": "outline", + "tags": "clothes,clothing", + "set_id": 1 + }, + { + "name": "table-fill", + "content": "", + "style": "outline", + "tags": "tables,tabular,speadsheets,excel,grid,form", + "set_id": 1 + }, + { + "name": "tabs-fill", + "content": "", + "style": "outline", + "tags": "*updated*,browser,window,folders,files", + "set_id": 1 + }, + { + "name": "tag-fill", + "content": "", + "style": "outline", + "tags": "tags,hashtag,labels,sale,sell,price,discount", + "set_id": 1 + }, + { + "name": "tag-chevron-fill", + "content": "", + "style": "outline", + "tags": "tags,hashtag,labels,sale", + "set_id": 1 + }, + { + "name": "tag-simple-fill", + "content": "", + "style": "outline", + "tags": "tags,hashtag,labels,sale,sell,price,discount", + "set_id": 1 + }, + { + "name": "target-fill", + "content": "", + "style": "outline", + "tags": "bullseye,radar,archery,accuracy,precision", + "set_id": 1 + }, + { + "name": "taxi-fill", + "content": "", + "style": "outline", + "tags": "*updated*,vehicles,cars,automobiles,livery,limousine,uber", + "set_id": 1 + }, + { + "name": "tea-bag-fill", + "content": "", + "style": "outline", + "tags": "*new*,drinks,beverages,sachet,caffeine,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "telegram-logo-fill", + "content": "", + "style": "outline", + "tags": "logos,messages,messaging", + "set_id": 1 + }, + { + "name": "television-fill", + "content": "", + "style": "outline", + "tags": "screen,tv,displays", + "set_id": 1 + }, + { + "name": "television-simple-fill", + "content": "", + "style": "outline", + "tags": "*updated*,screen,tv,displays", + "set_id": 1 + }, + { + "name": "tennis-ball-fill", + "content": "", + "style": "outline", + "tags": "sports,mlb", + "set_id": 1 + }, + { + "name": "tent-fill", + "content": "", + "style": "outline", + "tags": "camping,outdoors,tarp", + "set_id": 1 + }, + { + "name": "terminal-fill", + "content": "", + "style": "outline", + "tags": "command line,cli,bash,shell,caret,console", + "set_id": 1 + }, + { + "name": "terminal-window-fill", + "content": "", + "style": "outline", + "tags": "command line,cli,bash,shell,caret,console", + "set_id": 1 + }, + { + "name": "test-tube-fill", + "content": "", + "style": "outline", + "tags": "science,chemistry,experiment,vial", + "set_id": 1 + }, + { + "name": "text-a-underline-fill", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font,underscore,emphasis", + "set_id": 1 + }, + { + "name": "text-aa-fill", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font", + "set_id": 1 + }, + { + "name": "text-align-center-fill", + "content": "", + "style": "outline", + "tags": "*updated*,typography,print,font,alignment,centered", + "set_id": 1 + }, + { + "name": "text-align-justify-fill", + "content": "", + "style": "outline", + "tags": "*updated*,typography,print,font,alignment,justified", + "set_id": 1 + }, + { + "name": "text-align-left-fill", + "content": "", + "style": "outline", + "tags": "*updated*,typography,print,font,alignment,flush left", + "set_id": 1 + }, + { + "name": "text-align-right-fill", + "content": "", + "style": "outline", + "tags": "*updated*,typography,print,font,alignment,flush right", + "set_id": 1 + }, + { + "name": "text-b-fill", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font,bold,boldface,emphasis", + "set_id": 1 + }, + { + "name": "text-columns-fill", + "content": "", + "style": "outline", + "tags": "*updated*,typography,print,font,alignment,article", + "set_id": 1 + }, + { + "name": "text-h-fill", + "content": "", + "style": "outline", + "tags": "heading,typography,print", + "set_id": 1 + }, + { + "name": "text-h-five-fill", + "content": "", + "style": "outline", + "tags": "heading,h5,typography,print", + "set_id": 1 + }, + { + "name": "text-h-four-fill", + "content": "", + "style": "outline", + "tags": "*updated*,heading,h4,typography,print", + "set_id": 1 + }, + { + "name": "text-h-one-fill", + "content": "", + "style": "outline", + "tags": "heading,h1,typography,print", + "set_id": 1 + }, + { + "name": "text-h-six-fill", + "content": "", + "style": "outline", + "tags": "heading,h6,typography,print", + "set_id": 1 + }, + { + "name": "text-h-three-fill", + "content": "", + "style": "outline", + "tags": "heading,h3,typography,print", + "set_id": 1 + }, + { + "name": "text-h-two-fill", + "content": "", + "style": "outline", + "tags": "heading,h2,typography,print", + "set_id": 1 + }, + { + "name": "text-indent-fill", + "content": "", + "style": "outline", + "tags": "*updated*,alignment,tab,menu", + "set_id": 1 + }, + { + "name": "text-italic-fill", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font,slant,oblique,stress,emphasis,calligraphy", + "set_id": 1 + }, + { + "name": "text-outdent-fill", + "content": "", + "style": "outline", + "tags": "*updated*,alignment,tab,unindent,dedent,menu", + "set_id": 1 + }, + { + "name": "text-strikethrough-fill", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font,struck,remove,delete,change", + "set_id": 1 + }, + { + "name": "text-subscript-fill", + "content": "", + "style": "outline", + "tags": "*new*,typography,font,formatting,mathematics,power,exponent,calculator", + "set_id": 1 + }, + { + "name": "text-superscript-fill", + "content": "", + "style": "outline", + "tags": "*new*,typography,font,formatting,mathematics,calculator", + "set_id": 1 + }, + { + "name": "text-t-fill", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font", + "set_id": 1 + }, + { + "name": "text-t-slash-fill", + "content": "", + "style": "outline", + "tags": "*new*,typography,typeface,print,font,formatting,clear", + "set_id": 1 + }, + { + "name": "text-underline-fill", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font,underscore,emphasis", + "set_id": 1 + }, + { + "name": "textbox-fill", + "content": "", + "style": "outline", + "tags": "input,cursor,field", + "set_id": 1 + }, + { + "name": "thermometer-fill", + "content": "", + "style": "outline", + "tags": "meteorology,temperature,degrees,°,celcius,centigrade,kelvin,fahrenheit,hot,warm,cold", + "set_id": 1 + }, + { + "name": "thermometer-cold-fill", + "content": "", + "style": "outline", + "tags": "meteorology,temperature,degrees,°,celcius,centigrade,kelvin,fahrenheit", + "set_id": 1 + }, + { + "name": "thermometer-hot-fill", + "content": "", + "style": "outline", + "tags": "meteorology,temperature,degrees,°,celcius,centigrade,kelvin,fahrenheit,warm", + "set_id": 1 + }, + { + "name": "thermometer-simple-fill", + "content": "", + "style": "outline", + "tags": "meteorology,temperature,degrees,°,celcius,centigrade,kelvin,fahrenheit,hot,warm,cold", + "set_id": 1 + }, + { + "name": "threads-logo-fill", + "content": "", + "style": "outline", + "tags": "*new*,meta,instagram,social media", + "set_id": 1 + }, + { + "name": "three-d-fill", + "content": "", + "style": "outline", + "tags": "*new*,3d,cad,model", + "set_id": 1 + }, + { + "name": "thumbs-down-fill", + "content": "", + "style": "outline", + "tags": "dislike,hate,emoji,no", + "set_id": 1 + }, + { + "name": "thumbs-up-fill", + "content": "", + "style": "outline", + "tags": "like,love,favorited,favorites,emoji,yes", + "set_id": 1 + }, + { + "name": "ticket-fill", + "content": "", + "style": "outline", + "tags": "ticketstub,movie ticket,entry,admissions,events", + "set_id": 1 + }, + { + "name": "tidal-logo-fill", + "content": "", + "style": "outline", + "tags": "music,logos", + "set_id": 1 + }, + { + "name": "tiktok-logo-fill", + "content": "", + "style": "outline", + "tags": "logos,social media", + "set_id": 1 + }, + { + "name": "tilde-fill", + "content": "", + "style": "outline", + "tags": "*new*,~,∼,proportional,comparison,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "timer-fill", + "content": "", + "style": "outline", + "tags": "clock,alarm,schedule,events,stopwatch,sports", + "set_id": 1 + }, + { + "name": "tip-jar-fill", + "content": "", + "style": "outline", + "tags": "*new*,give,deposit,donation,savings,money", + "set_id": 1 + }, + { + "name": "tipi-fill", + "content": "", + "style": "outline", + "tags": "teepee,lodge,tent,outdoors,camping,tarp", + "set_id": 1 + }, + { + "name": "tire-fill", + "content": "", + "style": "outline", + "tags": "*new*,wheel,vehicles,transportation", + "set_id": 1 + }, + { + "name": "toggle-left-fill", + "content": "", + "style": "outline", + "tags": "switch,controls,settings,preferences", + "set_id": 1 + }, + { + "name": "toggle-right-fill", + "content": "", + "style": "outline", + "tags": "switch,controls,settings,preferences", + "set_id": 1 + }, + { + "name": "toilet-fill", + "content": "", + "style": "outline", + "tags": "bathroom,restroom,lavatory,water closet", + "set_id": 1 + }, + { + "name": "toilet-paper-fill", + "content": "", + "style": "outline", + "tags": "bathroom,restroom,lavatory,water closet", + "set_id": 1 + }, + { + "name": "toolbox-fill", + "content": "", + "style": "outline", + "tags": "tools,carpentry,construction", + "set_id": 1 + }, + { + "name": "tooth-fill", + "content": "", + "style": "outline", + "tags": "teeth,dentistry,medical,medicine,doctor,cavity", + "set_id": 1 + }, + { + "name": "tornado-fill", + "content": "", + "style": "outline", + "tags": "*new*,meteorology,twister,storm,wind,disaster", + "set_id": 1 + }, + { + "name": "tote-fill", + "content": "", + "style": "outline", + "tags": "suitcases,valises,baggage,tote-bag,portfolios", + "set_id": 1 + }, + { + "name": "tote-simple-fill", + "content": "", + "style": "outline", + "tags": "suitcases,valises,baggage,tote-bag,portfolios", + "set_id": 1 + }, + { + "name": "towel-fill", + "content": "", + "style": "outline", + "tags": "*new*,clothing,linen,hotel,beach,pool,swimming,shower,bath", + "set_id": 1 + }, + { + "name": "tractor-fill", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,farmer,field,farming,agriculture", + "set_id": 1 + }, + { + "name": "trademark-fill", + "content": "", + "style": "outline", + "tags": "tm,®,™,intellectual property", + "set_id": 1 + }, + { + "name": "trademark-registered-fill", + "content": "", + "style": "outline", + "tags": "®,™,intellectual property", + "set_id": 1 + }, + { + "name": "traffic-cone-fill", + "content": "", + "style": "outline", + "tags": "pylon,safety,transit,transportation", + "set_id": 1 + }, + { + "name": "traffic-sign-fill", + "content": "", + "style": "outline", + "tags": "road signs,transit,transportation", + "set_id": 1 + }, + { + "name": "traffic-signal-fill", + "content": "", + "style": "outline", + "tags": "stop light,safety,transit,transportation", + "set_id": 1 + }, + { + "name": "train-fill", + "content": "", + "style": "outline", + "tags": "vehicles,subway,light rail,public transit,transportation,commuter,traveling,places,locations", + "set_id": 1 + }, + { + "name": "train-regional-fill", + "content": "", + "style": "outline", + "tags": "vehicles,subway,railroad,public transit,transportation,commuter,freight,shipping,traveling,places,locations", + "set_id": 1 + }, + { + "name": "train-simple-fill", + "content": "", + "style": "outline", + "tags": "vehicles,subway,light rail,public transit,transportation,commuter,traveling,places,locations", + "set_id": 1 + }, + { + "name": "tram-fill", + "content": "", + "style": "outline", + "tags": "vehicles,subway,railroad,public transit,transportation,commuter,light rail,shipping,traveling,places,locations", + "set_id": 1 + }, + { + "name": "translate-fill", + "content": "", + "style": "outline", + "tags": "translation,languages,internationalization,i18n,speech", + "set_id": 1 + }, + { + "name": "trash-fill", + "content": "", + "style": "outline", + "tags": "garbage,remove,delete,destroy,recycle,recycling", + "set_id": 1 + }, + { + "name": "trash-simple-fill", + "content": "", + "style": "outline", + "tags": "garbage,remove,delete,destroy,recycle,recycling", + "set_id": 1 + }, + { + "name": "tray-fill", + "content": "", + "style": "outline", + "tags": "inbox,mailbox,bin", + "set_id": 1 + }, + { + "name": "tray-arrow-down-fill", + "content": "", + "style": "outline", + "tags": "inbox,saved,saving,archived,archiving,archival,downloaded,downloading", + "set_id": 1 + }, + { + "name": "tray-arrow-up-fill", + "content": "", + "style": "outline", + "tags": "*new*,outbox,archival,unarchive,uploaded,uploading", + "set_id": 1 + }, + { + "name": "treasure-chest-fill", + "content": "", + "style": "outline", + "tags": "*new*,loot,lootbox,inventory,rewards,gaming,pirate", + "set_id": 1 + }, + { + "name": "tree-fill", + "content": "", + "style": "outline", + "tags": "plants,branches,leaves,green,environmental", + "set_id": 1 + }, + { + "name": "tree-evergreen-fill", + "content": "", + "style": "outline", + "tags": "plants,branches,leaves,pine,conifer,green,environmental", + "set_id": 1 + }, + { + "name": "tree-palm-fill", + "content": "", + "style": "outline", + "tags": "tropical,beach,plants,branches,leaves,green,environmental", + "set_id": 1 + }, + { + "name": "tree-structure-fill", + "content": "", + "style": "outline", + "tags": "data structures,family tree,genealogy,hierarchy,taxonomy,charts,flowchart", + "set_id": 1 + }, + { + "name": "tree-view-fill", + "content": "", + "style": "outline", + "tags": "*new*,hierarchy", + "set_id": 1 + }, + { + "name": "trend-down-fill", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,analyze,analysis,decrease,arrows", + "set_id": 1 + }, + { + "name": "trend-up-fill", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,analyze,analysis,increase,arrows", + "set_id": 1 + }, + { + "name": "triangle-fill", + "content": "", + "style": "outline", + "tags": "3,shapes,polygons", + "set_id": 1 + }, + { + "name": "triangle-dashed-fill", + "content": "", + "style": "outline", + "tags": "*new*,3,shapes,polygons,missing", + "set_id": 1 + }, + { + "name": "trolley-fill", + "content": "", + "style": "outline", + "tags": "*new*,airport,briefcase,valise,baggage", + "set_id": 1 + }, + { + "name": "trolley-suitcase-fill", + "content": "", + "style": "outline", + "tags": "*new*,airport,briefcase,valise,baggage", + "set_id": 1 + }, + { + "name": "trophy-fill", + "content": "", + "style": "outline", + "tags": "ribbons,medals,winning,victory,awards,prize", + "set_id": 1 + }, + { + "name": "truck-fill", + "content": "", + "style": "outline", + "tags": "trucks,cars,vehicles,automobile,shipping,delivery", + "set_id": 1 + }, + { + "name": "truck-trailer-fill", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,automobile,shipping,tractor,semi", + "set_id": 1 + }, + { + "name": "tumblr-logo-fill", + "content": "", + "style": "outline", + "tags": "*new*,social media,logos", + "set_id": 1 + }, + { + "name": "twitch-logo-fill", + "content": "", + "style": "outline", + "tags": "logos,streaming,livestream,gaming,video games,social media", + "set_id": 1 + }, + { + "name": "twitter-logo-fill", + "content": "", + "style": "outline", + "tags": "logos,social media,tweets,birds", + "set_id": 1 + }, + { + "name": "umbrella-fill", + "content": "", + "style": "outline", + "tags": "raining,rainy,insurance", + "set_id": 1 + }, + { + "name": "umbrella-simple-fill", + "content": "", + "style": "outline", + "tags": "raining,rainy,insurance", + "set_id": 1 + }, + { + "name": "union-fill", + "content": "", + "style": "outline", + "tags": "*new*,∪,union,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "unite-fill", + "content": "", + "style": "outline", + "tags": "*updated*,round,join,union,merge,combine,intersecting,intersection", + "set_id": 1 + }, + { + "name": "unite-square-fill", + "content": "", + "style": "outline", + "tags": "join,union,merge,combine,intersecting,intersection", + "set_id": 1 + }, + { + "name": "upload-fill", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,uploaded,uploading,hard drive,disk", + "set_id": 1 + }, + { + "name": "upload-simple-fill", + "content": "", + "style": "outline", + "tags": "*updated*,saved,saving,archived,archiving,archival,uploaded,uploading,hard drive,disk", + "set_id": 1 + }, + { + "name": "usb-fill", + "content": "", + "style": "outline", + "tags": "serial,port,plug,peripheral,device", + "set_id": 1 + }, + { + "name": "user-fill", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,login", + "set_id": 1 + }, + { + "name": "user-check-fill", + "content": "", + "style": "outline", + "tags": "*new*,person,users,profile,account,contact,login,verified", + "set_id": 1 + }, + { + "name": "user-circle-fill", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,login", + "set_id": 1 + }, + { + "name": "user-circle-check-fill", + "content": "", + "style": "outline", + "tags": "*new*,person,users,profile,account,contact,login,verified", + "set_id": 1 + }, + { + "name": "user-circle-dashed-fill", + "content": "", + "style": "outline", + "tags": "*new*,person,users,profile,account,contact,login,pending,missing,removed", + "set_id": 1 + }, + { + "name": "user-circle-gear-fill", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,settings,preferences", + "set_id": 1 + }, + { + "name": "user-circle-minus-fill", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,delete,remove,-", + "set_id": 1 + }, + { + "name": "user-circle-plus-fill", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,add,create,+", + "set_id": 1 + }, + { + "name": "user-focus-fill", + "content": "", + "style": "outline", + "tags": "identification,biometrics,facial recognition,profile,person,account,autofocus", + "set_id": 1 + }, + { + "name": "user-gear-fill", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,settings,preferences", + "set_id": 1 + }, + { + "name": "user-list-fill", + "content": "", + "style": "outline", + "tags": "person,users,profiles,accounts,members,address book", + "set_id": 1 + }, + { + "name": "user-minus-fill", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,delete,remove,-", + "set_id": 1 + }, + { + "name": "user-plus-fill", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,add,create,+", + "set_id": 1 + }, + { + "name": "user-rectangle-fill", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,login", + "set_id": 1 + }, + { + "name": "user-sound-fill", + "content": "", + "style": "outline", + "tags": "*new*,person,users,profile,speech,speaking,voice", + "set_id": 1 + }, + { + "name": "user-square-fill", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,login", + "set_id": 1 + }, + { + "name": "user-switch-fill", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,login,logout,signin,signout,settings,preferences", + "set_id": 1 + }, + { + "name": "users-fill", + "content": "", + "style": "outline", + "tags": "user,group,team,people,profiles,accounts,contacts", + "set_id": 1 + }, + { + "name": "users-four-fill", + "content": "", + "style": "outline", + "tags": "user,group,team,department,community,people,profiles,accounts,contacts", + "set_id": 1 + }, + { + "name": "users-three-fill", + "content": "", + "style": "outline", + "tags": "user,group,team,community,people,profiles,accounts,contacts", + "set_id": 1 + }, + { + "name": "van-fill", + "content": "", + "style": "outline", + "tags": "westfalia,microbus,vanagon,cars,vehicles,automobile,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "vault-fill", + "content": "", + "style": "outline", + "tags": "safe,bank,security,secured,authentication,authenticated,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "vector-three-fill", + "content": "", + "style": "outline", + "tags": "*new*,3d,xyz,cartesian,coordinates,plane,volume,dimensions,mathematics", + "set_id": 1 + }, + { + "name": "vector-two-fill", + "content": "", + "style": "outline", + "tags": "*new*,2d,xy,cartesian,coordinates,plane,dimensions,mathematics", + "set_id": 1 + }, + { + "name": "vibrate-fill", + "content": "", + "style": "outline", + "tags": "audio,volume,viration,ringer,calls,silent,silenced", + "set_id": 1 + }, + { + "name": "video-fill", + "content": "", + "style": "outline", + "tags": "training,course,education,tutorial", + "set_id": 1 + }, + { + "name": "video-camera-fill", + "content": "", + "style": "outline", + "tags": "videography,films,movies,recording", + "set_id": 1 + }, + { + "name": "video-camera-slash-fill", + "content": "", + "style": "outline", + "tags": "videography,films,movies,recording,disabled", + "set_id": 1 + }, + { + "name": "video-conference-fill", + "content": "", + "style": "outline", + "tags": "*new*,video call,zoom,skype,discord,facetime,meeting", + "set_id": 1 + }, + { + "name": "vignette-fill", + "content": "", + "style": "outline", + "tags": "photography,darkroom,movie,analog", + "set_id": 1 + }, + { + "name": "vinyl-record-fill", + "content": "", + "style": "outline", + "tags": "recording,audio,album,music,ep,lp", + "set_id": 1 + }, + { + "name": "virtual-reality-fill", + "content": "", + "style": "outline", + "tags": "virtual reality,vr,headset,metaverse", + "set_id": 1 + }, + { + "name": "virus-fill", + "content": "", + "style": "outline", + "tags": "germs,disease,illness", + "set_id": 1 + }, + { + "name": "visor-fill", + "content": "", + "style": "outline", + "tags": "*new*,goggles,vision", + "set_id": 1 + }, + { + "name": "voicemail-fill", + "content": "", + "style": "outline", + "tags": "phonecalls,missed,recording,telephone,landline", + "set_id": 1 + }, + { + "name": "volleyball-fill", + "content": "", + "style": "outline", + "tags": "sports", + "set_id": 1 + }, + { + "name": "wall-fill", + "content": "", + "style": "outline", + "tags": "firewall,security,secured,blocks,bricks", + "set_id": 1 + }, + { + "name": "wallet-fill", + "content": "", + "style": "outline", + "tags": "money,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "warehouse-fill", + "content": "", + "style": "outline", + "tags": "storage,industry,manufacture,buildings,places,locations", + "set_id": 1 + }, + { + "name": "warning-fill", + "content": "", + "style": "outline", + "tags": "alert,danger,dangerous,caution,errors", + "set_id": 1 + }, + { + "name": "warning-circle-fill", + "content": "", + "style": "outline", + "tags": "alert,danger,dangerous,caution,errors,round", + "set_id": 1 + }, + { + "name": "warning-diamond-fill", + "content": "", + "style": "outline", + "tags": "alert,danger,dangerous,caution,errors", + "set_id": 1 + }, + { + "name": "warning-octagon-fill", + "content": "", + "style": "outline", + "tags": "alert,danger,dangerous,caution,errors,8,eight", + "set_id": 1 + }, + { + "name": "washing-machine-fill", + "content": "", + "style": "outline", + "tags": "*new*,clothing,laundry,cleaning", + "set_id": 1 + }, + { + "name": "watch-fill", + "content": "", + "style": "outline", + "tags": "times,timer,alarm,schedule,events,clock,wristwatch,wearable", + "set_id": 1 + }, + { + "name": "wave-sawtooth-fill", + "content": "", + "style": "outline", + "tags": "synth,synthesizer,sound,audio,music,waveform", + "set_id": 1 + }, + { + "name": "wave-sine-fill", + "content": "", + "style": "outline", + "tags": "synth,synthesizer,sound,audio,music,waveform", + "set_id": 1 + }, + { + "name": "wave-square-fill", + "content": "", + "style": "outline", + "tags": "synth,synthesizer,sound,audio,music,waveform", + "set_id": 1 + }, + { + "name": "wave-triangle-fill", + "content": "", + "style": "outline", + "tags": "synth,synthesizer,sound,audio,music,waveform", + "set_id": 1 + }, + { + "name": "waveform-fill", + "content": "", + "style": "outline", + "tags": "*updated*,audio,sound,spectrum,spectrograph,music", + "set_id": 1 + }, + { + "name": "waveform-slash-fill", + "content": "", + "style": "outline", + "tags": "*new*,audio,sound,spectrum,spectrograph,music", + "set_id": 1 + }, + { + "name": "waves-fill", + "content": "", + "style": "outline", + "tags": "ocean,tides,surf", + "set_id": 1 + }, + { + "name": "webcam-fill", + "content": "", + "style": "outline", + "tags": "camera,video conference", + "set_id": 1 + }, + { + "name": "webcam-slash-fill", + "content": "", + "style": "outline", + "tags": "camera,video conference", + "set_id": 1 + }, + { + "name": "webhooks-logo-fill", + "content": "", + "style": "outline", + "tags": "api", + "set_id": 1 + }, + { + "name": "wechat-logo-fill", + "content": "", + "style": "outline", + "tags": "weixin,logos", + "set_id": 1 + }, + { + "name": "whatsapp-logo-fill", + "content": "", + "style": "outline", + "tags": "logos,messages,messaging", + "set_id": 1 + }, + { + "name": "wheelchair-fill", + "content": "", + "style": "outline", + "tags": "handicapped,medical,disabled,differently abled,accessible,accessibility,a11y", + "set_id": 1 + }, + { + "name": "wheelchair-motion-fill", + "content": "", + "style": "outline", + "tags": "handicapped,medical,disabled,differently abled,accessible,accessibility,a11y", + "set_id": 1 + }, + { + "name": "wifi-high-fill", + "content": "", + "style": "outline", + "tags": "wireless,internet,network,connection,connectivity", + "set_id": 1 + }, + { + "name": "wifi-low-fill", + "content": "", + "style": "outline", + "tags": "wireless,internet,network,connection,connectivity", + "set_id": 1 + }, + { + "name": "wifi-medium-fill", + "content": "", + "style": "outline", + "tags": "wireless,internet,network,connection,connectivity", + "set_id": 1 + }, + { + "name": "wifi-none-fill", + "content": "", + "style": "outline", + "tags": "wireless,internet,network,connection,connectivity", + "set_id": 1 + }, + { + "name": "wifi-slash-fill", + "content": "", + "style": "outline", + "tags": "wireless,internet,network,connection,connectivity,disabled,disconnected", + "set_id": 1 + }, + { + "name": "wifi-x-fill", + "content": "", + "style": "outline", + "tags": "wireless,internet,network,connection,connectivity,disconnected,errors", + "set_id": 1 + }, + { + "name": "wind-fill", + "content": "", + "style": "outline", + "tags": "meteorology,windy,stormy,blustery,gusty,air", + "set_id": 1 + }, + { + "name": "windmill-fill", + "content": "", + "style": "outline", + "tags": "*new*,turbine,energy,renewable,sustainability,countryside,landscape,green,power,buildings", + "set_id": 1 + }, + { + "name": "windows-logo-fill", + "content": "", + "style": "outline", + "tags": "microsoft,computers", + "set_id": 1 + }, + { + "name": "wine-fill", + "content": "", + "style": "outline", + "tags": "drinks,beverages,vineyard,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "wrench-fill", + "content": "", + "style": "outline", + "tags": "settings,setup,preferences,tools,machinery,mechanical,repairs", + "set_id": 1 + }, + { + "name": "x-fill", + "content": "", + "style": "outline", + "tags": "×,closed,cancelled,dismissed,times,multiply,mulitplication,product,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "x-circle-fill", + "content": "", + "style": "outline", + "tags": "closed,cancelled,dismissed,round", + "set_id": 1 + }, + { + "name": "x-logo-fill", + "content": "", + "style": "outline", + "tags": "*new*,twitter,logos,social media,tweets", + "set_id": 1 + }, + { + "name": "x-square-fill", + "content": "", + "style": "outline", + "tags": "closed,cancelled,dismissed", + "set_id": 1 + }, + { + "name": "yarn-fill", + "content": "", + "style": "outline", + "tags": "*new*,knitting,sewing", + "set_id": 1 + }, + { + "name": "yin-yang-fill", + "content": "", + "style": "outline", + "tags": "symbol,good,evil,black,white", + "set_id": 1 + }, + { + "name": "youtube-logo-fill", + "content": "", + "style": "outline", + "tags": "logos,google,videos,movies,social media", + "set_id": 1 + }, + { + "name": "acorn-duotone", + "content": "", + "style": "outline", + "tags": "*new*,savings,nut,vegetable,veggies,food,groceries,market", + "set_id": 1 + }, + { + "name": "address-book-duotone", + "content": "", + "style": "outline", + "tags": "contacts,directory,roledex", + "set_id": 1 + }, + { + "name": "address-book-tabs-duotone", + "content": "", + "style": "outline", + "tags": "*new*,contacts,directory,roledex", + "set_id": 1 + }, + { + "name": "air-traffic-control-duotone", + "content": "", + "style": "outline", + "tags": "airport,travel,transportation,buildings", + "set_id": 1 + }, + { + "name": "airplane-duotone", + "content": "", + "style": "outline", + "tags": "vehicles,airports,flights,flying,planes,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "airplane-in-flight-duotone", + "content": "", + "style": "outline", + "tags": "vehicles,airports,flights,flying,planes,transit,transportation,traveling,arrival", + "set_id": 1 + }, + { + "name": "airplane-landing-duotone", + "content": "", + "style": "outline", + "tags": "vehicles,airports,flights,flying,planes,transit,transportation,traveling,arrival", + "set_id": 1 + }, + { + "name": "airplane-takeoff-duotone", + "content": "", + "style": "outline", + "tags": "vehicles,airports,flights,flying,planes,transit,transportation,traveling,departure", + "set_id": 1 + }, + { + "name": "airplane-taxiing-duotone", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,airports,flights,flying,planes,transit,transportation,traveling,arrival", + "set_id": 1 + }, + { + "name": "airplane-tilt-duotone", + "content": "", + "style": "outline", + "tags": "vehicles,airports,flights,flying,planes,transit,transportation,traveling,departure", + "set_id": 1 + }, + { + "name": "airplay-duotone", + "content": "", + "style": "outline", + "tags": "apple,screencasting,television,tv", + "set_id": 1 + }, + { + "name": "alarm-duotone", + "content": "", + "style": "outline", + "tags": "times,timer,clock,schedule,events,watch", + "set_id": 1 + }, + { + "name": "alien-duotone", + "content": "", + "style": "outline", + "tags": "ufo,space,flying saucer,extra terrestrial,sci-fi", + "set_id": 1 + }, + { + "name": "align-bottom-duotone", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush bottom", + "set_id": 1 + }, + { + "name": "align-bottom-simple-duotone", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush bottom", + "set_id": 1 + }, + { + "name": "align-center-horizontal-duotone", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,centered,middle", + "set_id": 1 + }, + { + "name": "align-center-horizontal-simple-duotone", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,centered,middle", + "set_id": 1 + }, + { + "name": "align-center-vertical-duotone", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,centered,middle", + "set_id": 1 + }, + { + "name": "align-center-vertical-simple-duotone", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,centered,middle", + "set_id": 1 + }, + { + "name": "align-left-duotone", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush left", + "set_id": 1 + }, + { + "name": "align-left-simple-duotone", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush left", + "set_id": 1 + }, + { + "name": "align-right-duotone", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush right", + "set_id": 1 + }, + { + "name": "align-right-simple-duotone", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush right", + "set_id": 1 + }, + { + "name": "align-top-duotone", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush top", + "set_id": 1 + }, + { + "name": "align-top-simple-duotone", + "content": "", + "style": "outline", + "tags": "alignment,arrangement,layout,flush top", + "set_id": 1 + }, + { + "name": "amazon-logo-duotone", + "content": "", + "style": "outline", + "tags": "ecommerce,shopping,logos", + "set_id": 1 + }, + { + "name": "ambulance-duotone", + "content": "", + "style": "outline", + "tags": "*new*,first-aid,emt,medical,medicine,injury,safety,emergency,doctor,vehicles", + "set_id": 1 + }, + { + "name": "anchor-duotone", + "content": "", + "style": "outline", + "tags": "nautical,boats,ships,hope,safety,insurance", + "set_id": 1 + }, + { + "name": "anchor-simple-duotone", + "content": "", + "style": "outline", + "tags": "nautical,boats,ships,hope,safety,insurance", + "set_id": 1 + }, + { + "name": "android-logo-duotone", + "content": "", + "style": "outline", + "tags": "logos,google,mobile,phone,cellular,cellphone", + "set_id": 1 + }, + { + "name": "angle-duotone", + "content": "", + "style": "outline", + "tags": "*new*,geometry,trigonometry,degrees,radians,measurement,protractor,compass,arc", + "set_id": 1 + }, + { + "name": "angular-logo-duotone", + "content": "", + "style": "outline", + "tags": "framework,javascript,google,web", + "set_id": 1 + }, + { + "name": "aperture-duotone", + "content": "", + "style": "outline", + "tags": "photography,cameras,pictures,lens", + "set_id": 1 + }, + { + "name": "app-store-logo-duotone", + "content": "", + "style": "outline", + "tags": "macintosh,imac,iphone,ipad,macos,ios", + "set_id": 1 + }, + { + "name": "app-window-duotone", + "content": "", + "style": "outline", + "tags": "windows,software,programs,applications", + "set_id": 1 + }, + { + "name": "apple-logo-duotone", + "content": "", + "style": "outline", + "tags": "macintosh,imac,iphone,ipad,macos,ios", + "set_id": 1 + }, + { + "name": "apple-podcasts-logo-duotone", + "content": "", + "style": "outline", + "tags": "macintosh,imac,iphone,ipad,macos,ios", + "set_id": 1 + }, + { + "name": "approximate-equals-duotone", + "content": "", + "style": "outline", + "tags": "*new*,≈,is approximately equal to,congruent,equality,equivalent,equivalence,comparison,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "archive-duotone", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,downloaded,downloading", + "set_id": 1 + }, + { + "name": "armchair-duotone", + "content": "", + "style": "outline", + "tags": "seat,furniture", + "set_id": 1 + }, + { + "name": "arrow-arc-left-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-arc-right-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-double-up-left-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,reply-all", + "set_id": 1 + }, + { + "name": "arrow-bend-double-up-right-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-down-left-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-down-right-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-left-down-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-left-up-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-right-down-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-right-up-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-bend-up-left-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,reply,re", + "set_id": 1 + }, + { + "name": "arrow-bend-up-right-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,forward,fwd", + "set_id": 1 + }, + { + "name": "arrow-circle-down-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-down-left-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-down-right-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-left-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-right-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-up-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-up-left-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-circle-up-right-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-clockwise-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,redo,refreshing,rotate,spin,flip", + "set_id": 1 + }, + { + "name": "arrow-counter-clockwise-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,undo,refreshing,rotate,spin,flip", + "set_id": 1 + }, + { + "name": "arrow-down-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-down-left-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-down-right-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-down-left-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-down-right-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-left-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-left-down-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-left-up-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-right-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-right-down-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-right-up-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-up-left-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-elbow-up-right-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-fat-down-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-left-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-line-down-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-line-left-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-line-right-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-line-up-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,caps lock,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-lines-down-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-lines-left-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-lines-right-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-lines-up-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-right-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,outlined", + "set_id": 1 + }, + { + "name": "arrow-fat-up-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,shift,outlined", + "set_id": 1 + }, + { + "name": "arrow-left-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-line-down-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,bottom", + "set_id": 1 + }, + { + "name": "arrow-line-down-left-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-line-down-right-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-line-left-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-line-right-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-line-up-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,top", + "set_id": 1 + }, + { + "name": "arrow-line-up-left-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-line-up-right-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-right-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-down-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-down-left-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-down-right-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-in-duotone", + "content": "", + "style": "outline", + "tags": "import,directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-left-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-out-duotone", + "content": "", + "style": "outline", + "tags": "export,external,directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-right-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-up-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-up-left-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-square-up-right-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-u-down-left-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,undo,return,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-down-right-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,redo,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-left-down-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,undo,return,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-left-up-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,redo,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-right-down-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,undo,return,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-right-up-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,redo,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-up-left-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,undo,return,u-turns", + "set_id": 1 + }, + { + "name": "arrow-u-up-right-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead,redo,u-turns", + "set_id": 1 + }, + { + "name": "arrow-up-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-up-left-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrow-up-right-duotone", + "content": "", + "style": "outline", + "tags": "directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrows-clockwise-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,redo,refreshing,sync,synchronize,rotate,spin,flip", + "set_id": 1 + }, + { + "name": "arrows-counter-clockwise-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,undo,refreshing,rotate,spin,flip", + "set_id": 1 + }, + { + "name": "arrows-down-up-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrows-horizontal-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,cursor,resize,expand,left,right", + "set_id": 1 + }, + { + "name": "arrows-in-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,collapse,minimize,resize,shrink", + "set_id": 1 + }, + { + "name": "arrows-in-cardinal-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,collapse,minimize,resize,shrink", + "set_id": 1 + }, + { + "name": "arrows-in-line-horizontal-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,close,center,align", + "set_id": 1 + }, + { + "name": "arrows-in-line-vertical-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,close,center,align", + "set_id": 1 + }, + { + "name": "arrows-in-simple-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,collapse,minimize,resize", + "set_id": 1 + }, + { + "name": "arrows-left-right-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "arrows-merge-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,arrowheads,join,combine", + "set_id": 1 + }, + { + "name": "arrows-out-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,expand,fullscreen,resize,grow", + "set_id": 1 + }, + { + "name": "arrows-out-cardinal-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,expand,fullscreen,resize,pan,move,grow", + "set_id": 1 + }, + { + "name": "arrows-out-line-horizontal-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,open,split", + "set_id": 1 + }, + { + "name": "arrows-out-line-vertical-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,open,split", + "set_id": 1 + }, + { + "name": "arrows-out-simple-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,pointing,arrowhead,expand,fullscreen,resize", + "set_id": 1 + }, + { + "name": "arrows-split-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,arrowheads,fork", + "set_id": 1 + }, + { + "name": "arrows-vertical-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,directional,pointer,cursor,resize,expand,up,down", + "set_id": 1 + }, + { + "name": "article-duotone", + "content": "", + "style": "outline", + "tags": "reading,writing,journals,periodicals,text,newspaper", + "set_id": 1 + }, + { + "name": "article-medium-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,reading,writing,journals,periodicals,text,newspaper", + "set_id": 1 + }, + { + "name": "article-ny-times-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,reading,writing,journals,periodicals,text,news,newspaper,nyt,new york times", + "set_id": 1 + }, + { + "name": "asclepius-duotone", + "content": "", + "style": "outline", + "tags": "*new*,caduceus,staff,mythology,rx,medicine,drugs,pharmacy,pharmacist,pharmaceuticals,doctor,hospital,snake,mercury,hermes", + "set_id": 1 + }, + { + "name": "asterisk-duotone", + "content": "", + "style": "outline", + "tags": "star,wildcard,bullet point,6,emergency", + "set_id": 1 + }, + { + "name": "asterisk-simple-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,star,wildcard,bullet point,5,emergency", + "set_id": 1 + }, + { + "name": "at-duotone", + "content": "", + "style": "outline", + "tags": "@,address,email,at symbol,commercial at,arobase", + "set_id": 1 + }, + { + "name": "atom-duotone", + "content": "", + "style": "outline", + "tags": "atomic,nucleus,nuclear,reactor,science,physics,electron,automation,react", + "set_id": 1 + }, + { + "name": "avocado-duotone", + "content": "", + "style": "outline", + "tags": "*new*,food,vegetable,veggie,fruit,groceries,market", + "set_id": 1 + }, + { + "name": "axe-duotone", + "content": "", + "style": "outline", + "tags": "*new*,tools,carpentry,forestry,construction", + "set_id": 1 + }, + { + "name": "baby-duotone", + "content": "", + "style": "outline", + "tags": "infant,child,children,toddler", + "set_id": 1 + }, + { + "name": "baby-carriage-duotone", + "content": "", + "style": "outline", + "tags": "*new*,pram,stroller,infant,child,children,toddler", + "set_id": 1 + }, + { + "name": "backpack-duotone", + "content": "", + "style": "outline", + "tags": "knapsack,camping,school,bag", + "set_id": 1 + }, + { + "name": "backspace-duotone", + "content": "", + "style": "outline", + "tags": "keyboard,remove,delete", + "set_id": 1 + }, + { + "name": "bag-duotone", + "content": "", + "style": "outline", + "tags": "suitcase,valise,baggage,folders,portfolio", + "set_id": 1 + }, + { + "name": "bag-simple-duotone", + "content": "", + "style": "outline", + "tags": "suitcase,valise,baggage,folders,portfolio", + "set_id": 1 + }, + { + "name": "balloon-duotone", + "content": "", + "style": "outline", + "tags": "helium,birthday,party", + "set_id": 1 + }, + { + "name": "bandaids-duotone", + "content": "", + "style": "outline", + "tags": "bandages,medical,medicine,first aid,injury", + "set_id": 1 + }, + { + "name": "bank-duotone", + "content": "", + "style": "outline", + "tags": "banking,checking,money,savings,deposit,withdraw,places,locations", + "set_id": 1 + }, + { + "name": "barbell-duotone", + "content": "", + "style": "outline", + "tags": "gym,weights,dumbbells,strength training,workout,exercises,fitness", + "set_id": 1 + }, + { + "name": "barcode-duotone", + "content": "", + "style": "outline", + "tags": "upc,qr,products,shopping,scanner", + "set_id": 1 + }, + { + "name": "barn-duotone", + "content": "", + "style": "outline", + "tags": "*new*,animals,livestock,buildings,farming,agriculture", + "set_id": 1 + }, + { + "name": "barricade-duotone", + "content": "", + "style": "outline", + "tags": "construction,safety,gate", + "set_id": 1 + }, + { + "name": "baseball-duotone", + "content": "", + "style": "outline", + "tags": "sports,mlb", + "set_id": 1 + }, + { + "name": "baseball-cap-duotone", + "content": "", + "style": "outline", + "tags": "clothes,clothing,sports,hat", + "set_id": 1 + }, + { + "name": "baseball-helmet-duotone", + "content": "", + "style": "outline", + "tags": "*new*,sports,mlb", + "set_id": 1 + }, + { + "name": "basket-duotone", + "content": "", + "style": "outline", + "tags": "ecommerce,market,cart,buying,shopping,groceries,checkout,places,locations", + "set_id": 1 + }, + { + "name": "basketball-duotone", + "content": "", + "style": "outline", + "tags": "sports,nba", + "set_id": 1 + }, + { + "name": "bathtub-duotone", + "content": "", + "style": "outline", + "tags": "bath,shower,bathroom,faucet", + "set_id": 1 + }, + { + "name": "battery-charging-duotone", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-charging-vertical-duotone", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-empty-duotone", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power,dead", + "set_id": 1 + }, + { + "name": "battery-full-duotone", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power,filled", + "set_id": 1 + }, + { + "name": "battery-high-duotone", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-low-duotone", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-medium-duotone", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-plus-duotone", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-plus-vertical-duotone", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-vertical-empty-duotone", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power,dead", + "set_id": 1 + }, + { + "name": "battery-vertical-full-duotone", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-vertical-high-duotone", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-vertical-low-duotone", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-vertical-medium-duotone", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power", + "set_id": 1 + }, + { + "name": "battery-warning-duotone", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power,empty,critical", + "set_id": 1 + }, + { + "name": "battery-warning-vertical-duotone", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,power,empty,critical", + "set_id": 1 + }, + { + "name": "beach-ball-duotone", + "content": "", + "style": "outline", + "tags": "*new*,sports,ocean,party", + "set_id": 1 + }, + { + "name": "beanie-duotone", + "content": "", + "style": "outline", + "tags": "*new*,clothes,clothing,sports,hat,winter", + "set_id": 1 + }, + { + "name": "bed-duotone", + "content": "", + "style": "outline", + "tags": "hotels,accommodations,sleeping,places,locations,medical,hospital", + "set_id": 1 + }, + { + "name": "beer-bottle-duotone", + "content": "", + "style": "outline", + "tags": "drinks,beverages,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "beer-stein-duotone", + "content": "", + "style": "outline", + "tags": "drinks,beverages,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "behance-logo-duotone", + "content": "", + "style": "outline", + "tags": "logos,illustration,ui,interface", + "set_id": 1 + }, + { + "name": "bell-duotone", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,calls", + "set_id": 1 + }, + { + "name": "bell-ringing-duotone", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,calls", + "set_id": 1 + }, + { + "name": "bell-simple-duotone", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,calls", + "set_id": 1 + }, + { + "name": "bell-simple-ringing-duotone", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,calls", + "set_id": 1 + }, + { + "name": "bell-simple-slash-duotone", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,silent,silenced,disabled", + "set_id": 1 + }, + { + "name": "bell-simple-z-duotone", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,snooze", + "set_id": 1 + }, + { + "name": "bell-slash-duotone", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,silent,silenced,ringer,calls,disabled", + "set_id": 1 + }, + { + "name": "bell-z-duotone", + "content": "", + "style": "outline", + "tags": "alarm,notifications,times,timer,clock,schedule,events,ringer,snooze", + "set_id": 1 + }, + { + "name": "belt-duotone", + "content": "", + "style": "outline", + "tags": "*new*,clothes,clothing", + "set_id": 1 + }, + { + "name": "bezier-curve-duotone", + "content": "", + "style": "outline", + "tags": "shapes,drawing,path,pen,vector", + "set_id": 1 + }, + { + "name": "bicycle-duotone", + "content": "", + "style": "outline", + "tags": "bikers,bicycling,cyclists,transit,transportation,commuter,exercises,fitness", + "set_id": 1 + }, + { + "name": "binary-duotone", + "content": "", + "style": "outline", + "tags": "*new*,digital,0,1,programming,coding,executable", + "set_id": 1 + }, + { + "name": "binoculars-duotone", + "content": "", + "style": "outline", + "tags": "telescope,glasses,search,find,explore", + "set_id": 1 + }, + { + "name": "biohazard-duotone", + "content": "", + "style": "outline", + "tags": "*new*,contamination,quarantine,toxic,poison,danger,caution", + "set_id": 1 + }, + { + "name": "bird-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,animals,pets", + "set_id": 1 + }, + { + "name": "blueprint-duotone", + "content": "", + "style": "outline", + "tags": "*new*,architecture,layout,floorplan,building,construction", + "set_id": 1 + }, + { + "name": "bluetooth-duotone", + "content": "", + "style": "outline", + "tags": "wireless,connection,connected,connectivity", + "set_id": 1 + }, + { + "name": "bluetooth-connected-duotone", + "content": "", + "style": "outline", + "tags": "wireless,connection,connected,connectivity", + "set_id": 1 + }, + { + "name": "bluetooth-slash-duotone", + "content": "", + "style": "outline", + "tags": "wireless,connection,connectivity,disconnected,disabled", + "set_id": 1 + }, + { + "name": "bluetooth-x-duotone", + "content": "", + "style": "outline", + "tags": "wireless,connection,connectivity,disconnected,errors", + "set_id": 1 + }, + { + "name": "boat-duotone", + "content": "", + "style": "outline", + "tags": "ferry,ship,cruise,vehicles,public transit,transportation,commuter,traveling,sailing,places,locations", + "set_id": 1 + }, + { + "name": "bomb-duotone", + "content": "", + "style": "outline", + "tags": "*new*,gaming,grenade,explosive,war,weapon,fuse", + "set_id": 1 + }, + { + "name": "bone-duotone", + "content": "", + "style": "outline", + "tags": "dogbone", + "set_id": 1 + }, + { + "name": "book-duotone", + "content": "", + "style": "outline", + "tags": "reading,reader,novel,story,library", + "set_id": 1 + }, + { + "name": "book-bookmark-duotone", + "content": "", + "style": "outline", + "tags": "reading,reader,novel,story,library,favorites,favorited", + "set_id": 1 + }, + { + "name": "book-open-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,reading,reader,novel,story,library", + "set_id": 1 + }, + { + "name": "book-open-text-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,reading,reader,novel,story,library", + "set_id": 1 + }, + { + "name": "book-open-user-duotone", + "content": "", + "style": "outline", + "tags": "*new*,reading,reader,easy read,library,places,locations", + "set_id": 1 + }, + { + "name": "bookmark-duotone", + "content": "", + "style": "outline", + "tags": "reading,reader,novel,story,placeholder,favorites,favorited,library", + "set_id": 1 + }, + { + "name": "bookmark-simple-duotone", + "content": "", + "style": "outline", + "tags": "reading,reader,novel,story,placeholder,favorites,favorited,library", + "set_id": 1 + }, + { + "name": "bookmarks-duotone", + "content": "", + "style": "outline", + "tags": "reading,reader,novel,story,placeholder,favorites,favorited,library", + "set_id": 1 + }, + { + "name": "bookmarks-simple-duotone", + "content": "", + "style": "outline", + "tags": "reading,reader,novel,story,placeholder,favorites,favorited,library", + "set_id": 1 + }, + { + "name": "books-duotone", + "content": "", + "style": "outline", + "tags": "reading,reader,bookshelf,library,places,locations", + "set_id": 1 + }, + { + "name": "boot-duotone", + "content": "", + "style": "outline", + "tags": "hiking,shoes,sports,exercise", + "set_id": 1 + }, + { + "name": "boules-duotone", + "content": "", + "style": "outline", + "tags": "*new*,balls,sports,pétanque,raffa,bocce,boule lyonnaise,lawn bowls", + "set_id": 1 + }, + { + "name": "bounding-box-duotone", + "content": "", + "style": "outline", + "tags": "polygon,shapes,outline,corners,rectangle", + "set_id": 1 + }, + { + "name": "bowl-food-duotone", + "content": "", + "style": "outline", + "tags": "ramen,food,meal,eating,restaurants,dining,locations", + "set_id": 1 + }, + { + "name": "bowl-steam-duotone", + "content": "", + "style": "outline", + "tags": "*new*,food,meal,eating,restaurants,dining,locations", + "set_id": 1 + }, + { + "name": "bowling-ball-duotone", + "content": "", + "style": "outline", + "tags": "*new*,sports,alley", + "set_id": 1 + }, + { + "name": "box-arrow-down-duotone", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,downloaded,downloading", + "set_id": 1 + }, + { + "name": "box-arrow-up-duotone", + "content": "", + "style": "outline", + "tags": "*new*,unarchive,archival,upload", + "set_id": 1 + }, + { + "name": "boxing-glove-duotone", + "content": "", + "style": "outline", + "tags": "*new*,sports,combat,martial arts,fight,gym", + "set_id": 1 + }, + { + "name": "brackets-angle-duotone", + "content": "", + "style": "outline", + "tags": "code,angle brackets,angle braces", + "set_id": 1 + }, + { + "name": "brackets-curly-duotone", + "content": "", + "style": "outline", + "tags": "code,curly brackets,curly braces", + "set_id": 1 + }, + { + "name": "brackets-round-duotone", + "content": "", + "style": "outline", + "tags": "code,parentheses,round brackets,round braces", + "set_id": 1 + }, + { + "name": "brackets-square-duotone", + "content": "", + "style": "outline", + "tags": "code,square brackets,square braces,array", + "set_id": 1 + }, + { + "name": "brain-duotone", + "content": "", + "style": "outline", + "tags": "mind,mental", + "set_id": 1 + }, + { + "name": "brandy-duotone", + "content": "", + "style": "outline", + "tags": "drinks,beverages,whiskey,cocktail,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "bread-duotone", + "content": "", + "style": "outline", + "tags": "*new*,food,meal,bakery,sandwich,gluten,loaf,toast,slice", + "set_id": 1 + }, + { + "name": "bridge-duotone", + "content": "", + "style": "outline", + "tags": "travel,transportation,infrastucture", + "set_id": 1 + }, + { + "name": "briefcase-duotone", + "content": "", + "style": "outline", + "tags": "suitcase,valise,baggage,folders,portfolio", + "set_id": 1 + }, + { + "name": "briefcase-metal-duotone", + "content": "", + "style": "outline", + "tags": "suitcase,valise,baggage,folders,portfolio", + "set_id": 1 + }, + { + "name": "broadcast-duotone", + "content": "", + "style": "outline", + "tags": "radio,hotspot,wifi,emit", + "set_id": 1 + }, + { + "name": "broom-duotone", + "content": "", + "style": "outline", + "tags": "sweeping,cleaning", + "set_id": 1 + }, + { + "name": "browser-duotone", + "content": "", + "style": "outline", + "tags": "web browsers,windows,internet,website,webpage,chrome,edge,firefox", + "set_id": 1 + }, + { + "name": "browsers-duotone", + "content": "", + "style": "outline", + "tags": "web browsers,windows,internet,website,webpage,chrome,edge,firefox", + "set_id": 1 + }, + { + "name": "bug-duotone", + "content": "", + "style": "outline", + "tags": "debug,errors,insect,ladybug", + "set_id": 1 + }, + { + "name": "bug-beetle-duotone", + "content": "", + "style": "outline", + "tags": "debug,errors,insect,ladybug", + "set_id": 1 + }, + { + "name": "bug-droid-duotone", + "content": "", + "style": "outline", + "tags": "debug,errors,insect,android,google", + "set_id": 1 + }, + { + "name": "building-duotone", + "content": "", + "style": "outline", + "tags": "*new*,places,locations,company,business,buildings", + "set_id": 1 + }, + { + "name": "building-apartment-duotone", + "content": "", + "style": "outline", + "tags": "*new*,places,locations,buildings", + "set_id": 1 + }, + { + "name": "building-office-duotone", + "content": "", + "style": "outline", + "tags": "*new*,places,locations,company,business,buildings", + "set_id": 1 + }, + { + "name": "buildings-duotone", + "content": "", + "style": "outline", + "tags": "places,locations,company,business", + "set_id": 1 + }, + { + "name": "bulldozer-duotone", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,construction,earth mover,dig,digger", + "set_id": 1 + }, + { + "name": "bus-duotone", + "content": "", + "style": "outline", + "tags": "vehicles,automobile,public transit,transportation,commuter,traveling,places,locations", + "set_id": 1 + }, + { + "name": "butterfly-duotone", + "content": "", + "style": "outline", + "tags": "animals,insects,moth", + "set_id": 1 + }, + { + "name": "cable-car-duotone", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,gondola,skiing,mountains,public transit,transportation,commuter,traveling,places,locations", + "set_id": 1 + }, + { + "name": "cactus-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,plants,cacti,desert,western", + "set_id": 1 + }, + { + "name": "cake-duotone", + "content": "", + "style": "outline", + "tags": "dessert,birthday,celebration,event", + "set_id": 1 + }, + { + "name": "calculator-duotone", + "content": "", + "style": "outline", + "tags": "addition,sum,subtraction,difference,multiply,multiplication,product,divide,division,divisor,dividend,quotient,equals,equality,mathematics,arithmetic,+,-,±,×,÷,=", + "set_id": 1 + }, + { + "name": "calendar-duotone", + "content": "", + "style": "outline", + "tags": "dates,times,events,schedule,12", + "set_id": 1 + }, + { + "name": "calendar-blank-duotone", + "content": "", + "style": "outline", + "tags": "dates,times,events,schedule,none", + "set_id": 1 + }, + { + "name": "calendar-check-duotone", + "content": "", + "style": "outline", + "tags": "dates,times,events,schedule,todo,checklist", + "set_id": 1 + }, + { + "name": "calendar-dot-duotone", + "content": "", + "style": "outline", + "tags": "*new*,dates,times,events,schedule,today", + "set_id": 1 + }, + { + "name": "calendar-dots-duotone", + "content": "", + "style": "outline", + "tags": "*new*,dates,times,events,schedule", + "set_id": 1 + }, + { + "name": "calendar-heart-duotone", + "content": "", + "style": "outline", + "tags": "*new*,dates,times,events,schedule,favorite,star", + "set_id": 1 + }, + { + "name": "calendar-minus-duotone", + "content": "", + "style": "outline", + "tags": "*new*,dates,times,events,schedule,remove,delete", + "set_id": 1 + }, + { + "name": "calendar-plus-duotone", + "content": "", + "style": "outline", + "tags": "dates,times,events,schedule,add", + "set_id": 1 + }, + { + "name": "calendar-slash-duotone", + "content": "", + "style": "outline", + "tags": "*new*,dates,times,events,schedule,remove,delete,cancel. unavailable", + "set_id": 1 + }, + { + "name": "calendar-star-duotone", + "content": "", + "style": "outline", + "tags": "*new*,dates,times,events,schedule,favorite,star", + "set_id": 1 + }, + { + "name": "calendar-x-duotone", + "content": "", + "style": "outline", + "tags": "dates,times,events,schedule,closed,cancelled", + "set_id": 1 + }, + { + "name": "call-bell-duotone", + "content": "", + "style": "outline", + "tags": "service bell,reception,attendant,concierge bell", + "set_id": 1 + }, + { + "name": "camera-duotone", + "content": "", + "style": "outline", + "tags": "photography,pictures,lens", + "set_id": 1 + }, + { + "name": "camera-plus-duotone", + "content": "", + "style": "outline", + "tags": "photography,pictures,album,add", + "set_id": 1 + }, + { + "name": "camera-rotate-duotone", + "content": "", + "style": "outline", + "tags": "photography,pictures,orientation,portrait,landscape,selfie,flip", + "set_id": 1 + }, + { + "name": "camera-slash-duotone", + "content": "", + "style": "outline", + "tags": "photography,pictures,lens,disabled", + "set_id": 1 + }, + { + "name": "campfire-duotone", + "content": "", + "style": "outline", + "tags": "camping,flame,bonfire,outdoors", + "set_id": 1 + }, + { + "name": "car-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,cars,vehicles,automobile,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "car-battery-duotone", + "content": "", + "style": "outline", + "tags": "*new*,charged,charger,charging,power,voltage,electricity", + "set_id": 1 + }, + { + "name": "car-profile-duotone", + "content": "", + "style": "outline", + "tags": "cars,vehicles,automobile,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "car-simple-duotone", + "content": "", + "style": "outline", + "tags": "cars,vehicles,automobile,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "cardholder-duotone", + "content": "", + "style": "outline", + "tags": "wallet,money,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "cards-duotone", + "content": "", + "style": "outline", + "tags": "card,slides,slideshow,windows,website,webpage,layers", + "set_id": 1 + }, + { + "name": "cards-three-duotone", + "content": "", + "style": "outline", + "tags": "*new*,card,slides,slideshow,windows,website,webpage,layers,stack", + "set_id": 1 + }, + { + "name": "caret-circle-double-down-duotone", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-double-left-duotone", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-double-right-duotone", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-double-up-duotone", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-down-duotone", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-left-duotone", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-right-duotone", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-up-duotone", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-circle-up-down-duotone", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-double-down-duotone", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-double-left-duotone", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-double-right-duotone", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-double-up-duotone", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-down-duotone", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-left-duotone", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-line-down-duotone", + "content": "", + "style": "outline", + "tags": "*new*,chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-line-left-duotone", + "content": "", + "style": "outline", + "tags": "*new*,chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-line-right-duotone", + "content": "", + "style": "outline", + "tags": "*new*,chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-line-up-duotone", + "content": "", + "style": "outline", + "tags": "*new*,chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-right-duotone", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-up-duotone", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "caret-up-down-duotone", + "content": "", + "style": "outline", + "tags": "chevron,directional,pointer,pointing,arrowhead,triangle", + "set_id": 1 + }, + { + "name": "carrot-duotone", + "content": "", + "style": "outline", + "tags": "food,vegetable,veggie,groceries,market", + "set_id": 1 + }, + { + "name": "cash-register-duotone", + "content": "", + "style": "outline", + "tags": "*new*,retail,point-of-sale,pos,transaction,sales,till", + "set_id": 1 + }, + { + "name": "cassette-tape-duotone", + "content": "", + "style": "outline", + "tags": "recording,audio,album,music", + "set_id": 1 + }, + { + "name": "castle-turret-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,chess,rook", + "set_id": 1 + }, + { + "name": "cat-duotone", + "content": "", + "style": "outline", + "tags": "pets,animals,kitty,kitten", + "set_id": 1 + }, + { + "name": "cell-signal-full-duotone", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,reception,service", + "set_id": 1 + }, + { + "name": "cell-signal-high-duotone", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,reception,service", + "set_id": 1 + }, + { + "name": "cell-signal-low-duotone", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,reception,service", + "set_id": 1 + }, + { + "name": "cell-signal-medium-duotone", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,reception,service", + "set_id": 1 + }, + { + "name": "cell-signal-none-duotone", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,reception,service", + "set_id": 1 + }, + { + "name": "cell-signal-slash-duotone", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,disconnected,disabled,reception,service", + "set_id": 1 + }, + { + "name": "cell-signal-x-duotone", + "content": "", + "style": "outline", + "tags": "wireless,cellular,phone,mobile,network,connection,connectivity,reception,disconnected,errors,service", + "set_id": 1 + }, + { + "name": "cell-tower-duotone", + "content": "", + "style": "outline", + "tags": "*new*,wireless,cellular,broadcast,phone,mobile,network,connection,connectivity", + "set_id": 1 + }, + { + "name": "certificate-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,awards,certification,degree,diploma", + "set_id": 1 + }, + { + "name": "chair-duotone", + "content": "", + "style": "outline", + "tags": "seat,furniture", + "set_id": 1 + }, + { + "name": "chalkboard-duotone", + "content": "", + "style": "outline", + "tags": "blackboard,whiteboard,classroom,teacher,education,school,college,university", + "set_id": 1 + }, + { + "name": "chalkboard-simple-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,blackboard,whiteboard,classroom,teacher,education,school,college,university", + "set_id": 1 + }, + { + "name": "chalkboard-teacher-duotone", + "content": "", + "style": "outline", + "tags": "blackboard,whiteboard,classroom,education,school,college,university", + "set_id": 1 + }, + { + "name": "champagne-duotone", + "content": "", + "style": "outline", + "tags": "glass,drinks,beverages,wine,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "charging-station-duotone", + "content": "", + "style": "outline", + "tags": "ev,charge,fuel,pump", + "set_id": 1 + }, + { + "name": "chart-bar-duotone", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,histogram,analyze,analysis", + "set_id": 1 + }, + { + "name": "chart-bar-horizontal-duotone", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,histogram,analyze,analysis", + "set_id": 1 + }, + { + "name": "chart-donut-duotone", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,analyze,analysis,circle", + "set_id": 1 + }, + { + "name": "chart-line-duotone", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,analyze,analysis,stocks", + "set_id": 1 + }, + { + "name": "chart-line-down-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,graphs,graphing,charts,statistics,analyze,analysis,stocks", + "set_id": 1 + }, + { + "name": "chart-line-up-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,graphs,graphing,charts,statistics,analyze,analysis,stocks", + "set_id": 1 + }, + { + "name": "chart-pie-duotone", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,circle,analyze,analysis", + "set_id": 1 + }, + { + "name": "chart-pie-slice-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,graphs,graphing,charts,statistics,circle,analyze,analysis", + "set_id": 1 + }, + { + "name": "chart-polar-duotone", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,analyze,analysis,circle", + "set_id": 1 + }, + { + "name": "chart-scatter-duotone", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,analyze,analysis", + "set_id": 1 + }, + { + "name": "chat-duotone", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-centered-duotone", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-centered-dots-duotone", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-centered-slash-duotone", + "content": "", + "style": "outline", + "tags": "*new*,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-centered-text-duotone", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-circle-duotone", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,round,bubble", + "set_id": 1 + }, + { + "name": "chat-circle-dots-duotone", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,round,bubble", + "set_id": 1 + }, + { + "name": "chat-circle-slash-duotone", + "content": "", + "style": "outline", + "tags": "*new*,messages,messaging,sms,texting,comment,round,bubble", + "set_id": 1 + }, + { + "name": "chat-circle-text-duotone", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,round,bubble", + "set_id": 1 + }, + { + "name": "chat-dots-duotone", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-slash-duotone", + "content": "", + "style": "outline", + "tags": "*new*,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chat-teardrop-duotone", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,bubble", + "set_id": 1 + }, + { + "name": "chat-teardrop-dots-duotone", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,bubble", + "set_id": 1 + }, + { + "name": "chat-teardrop-slash-duotone", + "content": "", + "style": "outline", + "tags": "*new*,messages,messaging,sms,texting,comment,bubble", + "set_id": 1 + }, + { + "name": "chat-teardrop-text-duotone", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,bubble", + "set_id": 1 + }, + { + "name": "chat-text-duotone", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chats-duotone", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,square,bubble", + "set_id": 1 + }, + { + "name": "chats-circle-duotone", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,round,bubble", + "set_id": 1 + }, + { + "name": "chats-teardrop-duotone", + "content": "", + "style": "outline", + "tags": "send,sent,messages,messaging,sms,texting,comment,bubble", + "set_id": 1 + }, + { + "name": "check-duotone", + "content": "", + "style": "outline", + "tags": "todo,to-do,task,list,checkbox,ok,done", + "set_id": 1 + }, + { + "name": "check-circle-duotone", + "content": "", + "style": "outline", + "tags": "todo,to-do,task,list,checkbox,round,ok,done", + "set_id": 1 + }, + { + "name": "check-fat-duotone", + "content": "", + "style": "outline", + "tags": "todo,to-do,task,list,checkbox,ok,done", + "set_id": 1 + }, + { + "name": "check-square-duotone", + "content": "", + "style": "outline", + "tags": "todo,to-do,task,list,checkbox,rectangle,ok,done", + "set_id": 1 + }, + { + "name": "check-square-offset-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,todo,to-do,task,list,checkbox,rectangle,ok,done", + "set_id": 1 + }, + { + "name": "checkerboard-duotone", + "content": "", + "style": "outline", + "tags": "*new*,crossword", + "set_id": 1 + }, + { + "name": "checks-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,todo,task,to-do,list,checkbox,ok,done", + "set_id": 1 + }, + { + "name": "cheers-duotone", + "content": "", + "style": "outline", + "tags": "*new*,glass,drinks,beverages,champagne,toast,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "cheese-duotone", + "content": "", + "style": "outline", + "tags": "*new*,dairy,wedge,food,dining", + "set_id": 1 + }, + { + "name": "chef-hat-duotone", + "content": "", + "style": "outline", + "tags": "*new*,cooking,cuisine,kitchen,clothes,clothing", + "set_id": 1 + }, + { + "name": "cherries-duotone", + "content": "", + "style": "outline", + "tags": "*new*,food,fruit,cherry,groceries,market", + "set_id": 1 + }, + { + "name": "church-duotone", + "content": "", + "style": "outline", + "tags": "christ,christianity,cathedral,religion,worship", + "set_id": 1 + }, + { + "name": "cigarette-duotone", + "content": "", + "style": "outline", + "tags": "*new*,smoking,tobacco", + "set_id": 1 + }, + { + "name": "cigarette-slash-duotone", + "content": "", + "style": "outline", + "tags": "*new*,non-smoking,tobacco", + "set_id": 1 + }, + { + "name": "circle-duotone", + "content": "", + "style": "outline", + "tags": "round,shapes,polygons", + "set_id": 1 + }, + { + "name": "circle-dashed-duotone", + "content": "", + "style": "outline", + "tags": "missing,round,shapes,polygons", + "set_id": 1 + }, + { + "name": "circle-half-duotone", + "content": "", + "style": "outline", + "tags": "round,shapes,contrast,brightness", + "set_id": 1 + }, + { + "name": "circle-half-tilt-duotone", + "content": "", + "style": "outline", + "tags": "round,shapes,contrast,brightness", + "set_id": 1 + }, + { + "name": "circle-notch-duotone", + "content": "", + "style": "outline", + "tags": "round,shapes,loading,loader,spinner,waiting,progress", + "set_id": 1 + }, + { + "name": "circles-four-duotone", + "content": "", + "style": "outline", + "tags": "round,shapes,polygons,4", + "set_id": 1 + }, + { + "name": "circles-three-duotone", + "content": "", + "style": "outline", + "tags": "round,shapes,polygons,3,asana", + "set_id": 1 + }, + { + "name": "circles-three-plus-duotone", + "content": "", + "style": "outline", + "tags": "round,shapes,polygons,3,+", + "set_id": 1 + }, + { + "name": "circuitry-duotone", + "content": "", + "style": "outline", + "tags": "processor,microchip,computer,circuit,electronics,motherboard", + "set_id": 1 + }, + { + "name": "city-duotone", + "content": "", + "style": "outline", + "tags": "*new*,skyline,skyscrapers,places,locations,buildings", + "set_id": 1 + }, + { + "name": "clipboard-duotone", + "content": "", + "style": "outline", + "tags": "copy,copied,checklist", + "set_id": 1 + }, + { + "name": "clipboard-text-duotone", + "content": "", + "style": "outline", + "tags": "copy,copied,checklist", + "set_id": 1 + }, + { + "name": "clock-duotone", + "content": "", + "style": "outline", + "tags": "times,timer,alarm,schedule,events,watch", + "set_id": 1 + }, + { + "name": "clock-afternoon-duotone", + "content": "", + "style": "outline", + "tags": "times,timer,alarm,schedule,events,watch", + "set_id": 1 + }, + { + "name": "clock-clockwise-duotone", + "content": "", + "style": "outline", + "tags": "times,timer,alarm,schedule,events,restore,fast forward,update", + "set_id": 1 + }, + { + "name": "clock-countdown-duotone", + "content": "", + "style": "outline", + "tags": "times,timer,alarm,schedule,events,watch", + "set_id": 1 + }, + { + "name": "clock-counter-clockwise-duotone", + "content": "", + "style": "outline", + "tags": "times,timer,alarm,schedule,events,backup,rewind,history", + "set_id": 1 + }, + { + "name": "clock-user-duotone", + "content": "", + "style": "outline", + "tags": "*new*,times,timer,shift,schedule,events,watch", + "set_id": 1 + }, + { + "name": "closed-captioning-duotone", + "content": "", + "style": "outline", + "tags": "subtitles,television,tv,transcribed,transcription,accessibility,a11y", + "set_id": 1 + }, + { + "name": "cloud-duotone", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,meteorology,cloudy,overcast", + "set_id": 1 + }, + { + "name": "cloud-arrow-down-duotone", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,download", + "set_id": 1 + }, + { + "name": "cloud-arrow-up-duotone", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,upload", + "set_id": 1 + }, + { + "name": "cloud-check-duotone", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,sync,synchronized", + "set_id": 1 + }, + { + "name": "cloud-fog-duotone", + "content": "", + "style": "outline", + "tags": "meteorology,cloudy,overcast,foggy,mist,haze", + "set_id": 1 + }, + { + "name": "cloud-lightning-duotone", + "content": "", + "style": "outline", + "tags": "meteorology,cloudy,overcast,stormy,thunderstorm", + "set_id": 1 + }, + { + "name": "cloud-moon-duotone", + "content": "", + "style": "outline", + "tags": "meteorology,cloudy,partly cloudy,night,evening", + "set_id": 1 + }, + { + "name": "cloud-rain-duotone", + "content": "", + "style": "outline", + "tags": "meteorology,cloudy,rainy,raining,stormy,rainstorm", + "set_id": 1 + }, + { + "name": "cloud-slash-duotone", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,sync,disabled", + "set_id": 1 + }, + { + "name": "cloud-snow-duotone", + "content": "", + "style": "outline", + "tags": "meteorology,cloudy,snowy,snowing,stormy,snowstorm", + "set_id": 1 + }, + { + "name": "cloud-sun-duotone", + "content": "", + "style": "outline", + "tags": "meteorology,cloudy,partly cloudy,partly sunny", + "set_id": 1 + }, + { + "name": "cloud-warning-duotone", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,errors", + "set_id": 1 + }, + { + "name": "cloud-x-duotone", + "content": "", + "style": "outline", + "tags": "serverless,backup,storage,errors", + "set_id": 1 + }, + { + "name": "clover-duotone", + "content": "", + "style": "outline", + "tags": "*new*,four leaf clover,plants,luck,lucky,irish", + "set_id": 1 + }, + { + "name": "club-duotone", + "content": "", + "style": "outline", + "tags": "clubs,suits,cards,gambling,casino,gaming", + "set_id": 1 + }, + { + "name": "coat-hanger-duotone", + "content": "", + "style": "outline", + "tags": "clothing,clothes,closet", + "set_id": 1 + }, + { + "name": "coda-logo-duotone", + "content": "", + "style": "outline", + "tags": "project management,productivity,documentation,wiki,logos", + "set_id": 1 + }, + { + "name": "code-duotone", + "content": "", + "style": "outline", + "tags": "angle brackets,angle braces,snippets", + "set_id": 1 + }, + { + "name": "code-block-duotone", + "content": "", + "style": "outline", + "tags": "angle brackets,angle braces,snippets", + "set_id": 1 + }, + { + "name": "code-simple-duotone", + "content": "", + "style": "outline", + "tags": "angle brackets,angle braces,snippets", + "set_id": 1 + }, + { + "name": "codepen-logo-duotone", + "content": "", + "style": "outline", + "tags": "ide,logos", + "set_id": 1 + }, + { + "name": "codesandbox-logo-duotone", + "content": "", + "style": "outline", + "tags": "ide,logos", + "set_id": 1 + }, + { + "name": "coffee-duotone", + "content": "", + "style": "outline", + "tags": "tea,java,beverages,drinks,cafe,cup,mug,espresso,cappuccino,latte,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "coffee-bean-duotone", + "content": "", + "style": "outline", + "tags": "*new*,tea,java,beverages,drinks,cafe,cup,mug,espresso,cappuccino,latte,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "coin-duotone", + "content": "", + "style": "outline", + "tags": "coins,cents,change,money,currency,payment,paying,purchase,price,sell", + "set_id": 1 + }, + { + "name": "coin-vertical-duotone", + "content": "", + "style": "outline", + "tags": "cents,change,money,currency,payment,paying,purchase,price,sell", + "set_id": 1 + }, + { + "name": "coins-duotone", + "content": "", + "style": "outline", + "tags": "cents,change,money,currency,payment,paying,purchase,price,sell", + "set_id": 1 + }, + { + "name": "columns-duotone", + "content": "", + "style": "outline", + "tags": "2,shapes,polygons,box,stack,list,table,cards", + "set_id": 1 + }, + { + "name": "columns-plus-left-duotone", + "content": "", + "style": "outline", + "tags": "*new*,2,shapes,polygons,box,stack,list,table,cards,prepend,insert", + "set_id": 1 + }, + { + "name": "columns-plus-right-duotone", + "content": "", + "style": "outline", + "tags": "*new*,2,shapes,polygons,box,stack,list,table,cards,append,insert", + "set_id": 1 + }, + { + "name": "command-duotone", + "content": "", + "style": "outline", + "tags": "apple,keyboard,shortcut,modifier,looped square,bowen knot,saint john's arms", + "set_id": 1 + }, + { + "name": "compass-duotone", + "content": "", + "style": "outline", + "tags": "navigation,directions,maps,safari,apple", + "set_id": 1 + }, + { + "name": "compass-rose-duotone", + "content": "", + "style": "outline", + "tags": "*new*,navigation,directions,maps,cardinal,cartography", + "set_id": 1 + }, + { + "name": "compass-tool-duotone", + "content": "", + "style": "outline", + "tags": "drawing,geometry,trigonometry,degrees,radians,measurement,protractor,compass,arc", + "set_id": 1 + }, + { + "name": "computer-tower-duotone", + "content": "", + "style": "outline", + "tags": "desktop,pc,imac", + "set_id": 1 + }, + { + "name": "confetti-duotone", + "content": "", + "style": "outline", + "tags": "tada,party,emoji", + "set_id": 1 + }, + { + "name": "contactless-payment-duotone", + "content": "", + "style": "outline", + "tags": "purchase,credit card,nfc", + "set_id": 1 + }, + { + "name": "control-duotone", + "content": "", + "style": "outline", + "tags": "ctrl,key,keyboard,shortcut,caret", + "set_id": 1 + }, + { + "name": "cookie-duotone", + "content": "", + "style": "outline", + "tags": "privacy,dessert,food,dining", + "set_id": 1 + }, + { + "name": "cooking-pot-duotone", + "content": "", + "style": "outline", + "tags": "stew,kitchen,steaming,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "copy-duotone", + "content": "", + "style": "outline", + "tags": "duplicated,copied,clipboard", + "set_id": 1 + }, + { + "name": "copy-simple-duotone", + "content": "", + "style": "outline", + "tags": "duplicated,copied,clipboard", + "set_id": 1 + }, + { + "name": "copyleft-duotone", + "content": "", + "style": "outline", + "tags": "🄯,intellectual property,copr.,symbol", + "set_id": 1 + }, + { + "name": "copyright-duotone", + "content": "", + "style": "outline", + "tags": "©,intellectual property,copr.,symbol", + "set_id": 1 + }, + { + "name": "corners-in-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,collapse,windowed,minimized", + "set_id": 1 + }, + { + "name": "corners-out-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,expand,fullscreen,maximized", + "set_id": 1 + }, + { + "name": "couch-duotone", + "content": "", + "style": "outline", + "tags": "furniture,seat", + "set_id": 1 + }, + { + "name": "court-basketball-duotone", + "content": "", + "style": "outline", + "tags": "*new*,sports,nba", + "set_id": 1 + }, + { + "name": "cow-duotone", + "content": "", + "style": "outline", + "tags": "*new*,animals,livestock,beef,bull,milk,dairy", + "set_id": 1 + }, + { + "name": "cowboy-hat-duotone", + "content": "", + "style": "outline", + "tags": "*new*,clothes,clothing,stetson", + "set_id": 1 + }, + { + "name": "cpu-duotone", + "content": "", + "style": "outline", + "tags": "processor,microchip,computer,circuit", + "set_id": 1 + }, + { + "name": "crane-duotone", + "content": "", + "style": "outline", + "tags": "*new*,construction,industry", + "set_id": 1 + }, + { + "name": "crane-tower-duotone", + "content": "", + "style": "outline", + "tags": "*new*,construction,industry", + "set_id": 1 + }, + { + "name": "credit-card-duotone", + "content": "", + "style": "outline", + "tags": "debit,visa,mastercard,money,payment,paying,purchase,swipe", + "set_id": 1 + }, + { + "name": "cricket-duotone", + "content": "", + "style": "outline", + "tags": "*new*,sports,ball,bat", + "set_id": 1 + }, + { + "name": "crop-duotone", + "content": "", + "style": "outline", + "tags": "photography,clip,screenshots", + "set_id": 1 + }, + { + "name": "cross-duotone", + "content": "", + "style": "outline", + "tags": "dagger,crucifix,christ,christianity,religion,worship,symbol", + "set_id": 1 + }, + { + "name": "crosshair-duotone", + "content": "", + "style": "outline", + "tags": "geolocation,gps,aiming,targeting", + "set_id": 1 + }, + { + "name": "crosshair-simple-duotone", + "content": "", + "style": "outline", + "tags": "geolocation,gps,aiming,targeting", + "set_id": 1 + }, + { + "name": "crown-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,king,queen,royalty,monarch,ruler,leader,chess", + "set_id": 1 + }, + { + "name": "crown-cross-duotone", + "content": "", + "style": "outline", + "tags": "*new*,king,queen,royalty,monarch,ruler,leader,chess", + "set_id": 1 + }, + { + "name": "crown-simple-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,king,queen,royalty,monarch,ruler,leader,chess", + "set_id": 1 + }, + { + "name": "cube-duotone", + "content": "", + "style": "outline", + "tags": "square,box,3d,volume,blocks", + "set_id": 1 + }, + { + "name": "cube-focus-duotone", + "content": "", + "style": "outline", + "tags": "augmented reality,ar,virual reality,vr,3d,scan", + "set_id": 1 + }, + { + "name": "cube-transparent-duotone", + "content": "", + "style": "outline", + "tags": "square,box,3d,volume,blocks,necker", + "set_id": 1 + }, + { + "name": "currency-btc-duotone", + "content": "", + "style": "outline", + "tags": "money,btc,bitcoin,crypto,cryptocurrency,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-circle-dollar-duotone", + "content": "", + "style": "outline", + "tags": "money,usd,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-cny-duotone", + "content": "", + "style": "outline", + "tags": "money,yuan,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-dollar-duotone", + "content": "", + "style": "outline", + "tags": "money,usd,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-dollar-simple-duotone", + "content": "", + "style": "outline", + "tags": "money,usd,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-eth-duotone", + "content": "", + "style": "outline", + "tags": "money,ethereum,crypto,cryptocurrency,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-eur-duotone", + "content": "", + "style": "outline", + "tags": "money,euros,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-gbp-duotone", + "content": "", + "style": "outline", + "tags": "money,pounds sterling,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-inr-duotone", + "content": "", + "style": "outline", + "tags": "money,rupees,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-jpy-duotone", + "content": "", + "style": "outline", + "tags": "money,yen,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-krw-duotone", + "content": "", + "style": "outline", + "tags": "money,won,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-kzt-duotone", + "content": "", + "style": "outline", + "tags": "money,kazakhstan,tenge,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-ngn-duotone", + "content": "", + "style": "outline", + "tags": "money,nigeria,naira,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "currency-rub-duotone", + "content": "", + "style": "outline", + "tags": "money,rubles,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "cursor-duotone", + "content": "", + "style": "outline", + "tags": "pointer,arrowhead,mouse,click", + "set_id": 1 + }, + { + "name": "cursor-click-duotone", + "content": "", + "style": "outline", + "tags": "pointer,arrowhead,mouse", + "set_id": 1 + }, + { + "name": "cursor-text-duotone", + "content": "", + "style": "outline", + "tags": "i-beam,input,select", + "set_id": 1 + }, + { + "name": "cylinder-duotone", + "content": "", + "style": "outline", + "tags": "shapes,tube", + "set_id": 1 + }, + { + "name": "database-duotone", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,hard disk,storage,hdd,servers,databases", + "set_id": 1 + }, + { + "name": "desk-duotone", + "content": "", + "style": "outline", + "tags": "*new*,furniture,workspace,table", + "set_id": 1 + }, + { + "name": "desktop-duotone", + "content": "", + "style": "outline", + "tags": "computer,pc,imac,tower", + "set_id": 1 + }, + { + "name": "desktop-tower-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,computer,pc,imac", + "set_id": 1 + }, + { + "name": "detective-duotone", + "content": "", + "style": "outline", + "tags": "incognito,police,law enforcement,spy,secret", + "set_id": 1 + }, + { + "name": "dev-to-logo-duotone", + "content": "", + "style": "outline", + "tags": "reading,writing,social media,logos", + "set_id": 1 + }, + { + "name": "device-mobile-duotone", + "content": "", + "style": "outline", + "tags": "cellphone,cellular", + "set_id": 1 + }, + { + "name": "device-mobile-camera-duotone", + "content": "", + "style": "outline", + "tags": "cellphone,cellular", + "set_id": 1 + }, + { + "name": "device-mobile-slash-duotone", + "content": "", + "style": "outline", + "tags": "*new*,cellphone,cellular", + "set_id": 1 + }, + { + "name": "device-mobile-speaker-duotone", + "content": "", + "style": "outline", + "tags": "cellphone,cellular", + "set_id": 1 + }, + { + "name": "device-rotate-duotone", + "content": "", + "style": "outline", + "tags": "*new*,orientation,landscape,portrait,spin,flip", + "set_id": 1 + }, + { + "name": "device-tablet-duotone", + "content": "", + "style": "outline", + "tags": "cellphone,cellular,ipad,phablet", + "set_id": 1 + }, + { + "name": "device-tablet-camera-duotone", + "content": "", + "style": "outline", + "tags": "cellphone,cellular,ipad,phablet", + "set_id": 1 + }, + { + "name": "device-tablet-speaker-duotone", + "content": "", + "style": "outline", + "tags": "cellphone,cellular,ipad,phablet", + "set_id": 1 + }, + { + "name": "devices-duotone", + "content": "", + "style": "outline", + "tags": "responsive,cellphone,cellular,tablet,destop", + "set_id": 1 + }, + { + "name": "diamond-duotone", + "content": "", + "style": "outline", + "tags": "rectangle,shapes,polygons,diamonds,suits,cards,gambling,casino,gaming", + "set_id": 1 + }, + { + "name": "diamonds-four-duotone", + "content": "", + "style": "outline", + "tags": "shapes,grid,component", + "set_id": 1 + }, + { + "name": "dice-five-duotone", + "content": "", + "style": "outline", + "tags": "die,rolling,gamble,gambling,casino,gaming,5", + "set_id": 1 + }, + { + "name": "dice-four-duotone", + "content": "", + "style": "outline", + "tags": "die,rolling,gamble,gambling,casino,gaming,4", + "set_id": 1 + }, + { + "name": "dice-one-duotone", + "content": "", + "style": "outline", + "tags": "die,rolling,gamble,gambling,casino,gaming,1", + "set_id": 1 + }, + { + "name": "dice-six-duotone", + "content": "", + "style": "outline", + "tags": "die,rolling,gamble,gambling,casino,gaming,6", + "set_id": 1 + }, + { + "name": "dice-three-duotone", + "content": "", + "style": "outline", + "tags": "die,rolling,gamble,gambling,casino,gaming,3", + "set_id": 1 + }, + { + "name": "dice-two-duotone", + "content": "", + "style": "outline", + "tags": "die,rolling,gamble,gambling,casino,gaming,2", + "set_id": 1 + }, + { + "name": "disc-duotone", + "content": "", + "style": "outline", + "tags": "cd-rom,compact disk,album,record", + "set_id": 1 + }, + { + "name": "disco-ball-duotone", + "content": "", + "style": "outline", + "tags": "*new*,danging,club,70s", + "set_id": 1 + }, + { + "name": "discord-logo-duotone", + "content": "", + "style": "outline", + "tags": "logos,messages,messaging,chat", + "set_id": 1 + }, + { + "name": "divide-duotone", + "content": "", + "style": "outline", + "tags": "division,divisor,dividend,quotient,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "dna-duotone", + "content": "", + "style": "outline", + "tags": "double helix,gene,genetics", + "set_id": 1 + }, + { + "name": "dog-duotone", + "content": "", + "style": "outline", + "tags": "pets,animals,puppy", + "set_id": 1 + }, + { + "name": "door-duotone", + "content": "", + "style": "outline", + "tags": "entrance,exit", + "set_id": 1 + }, + { + "name": "door-open-duotone", + "content": "", + "style": "outline", + "tags": "entrance,exit", + "set_id": 1 + }, + { + "name": "dot-duotone", + "content": "", + "style": "outline", + "tags": "dots,circles,shapes,polygons", + "set_id": 1 + }, + { + "name": "dot-outline-duotone", + "content": "", + "style": "outline", + "tags": "dots,circles,shapes,polygons", + "set_id": 1 + }, + { + "name": "dots-nine-duotone", + "content": "", + "style": "outline", + "tags": "grid,circles,shapes,polygons,9", + "set_id": 1 + }, + { + "name": "dots-six-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,drag handle,knurling,circles,shapes,polygons,6", + "set_id": 1 + }, + { + "name": "dots-six-vertical-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,drag handle,knurling,circles,shapes,polygons,6", + "set_id": 1 + }, + { + "name": "dots-three-duotone", + "content": "", + "style": "outline", + "tags": "menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more", + "set_id": 1 + }, + { + "name": "dots-three-circle-duotone", + "content": "", + "style": "outline", + "tags": "menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more", + "set_id": 1 + }, + { + "name": "dots-three-circle-vertical-duotone", + "content": "", + "style": "outline", + "tags": "menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more", + "set_id": 1 + }, + { + "name": "dots-three-outline-duotone", + "content": "", + "style": "outline", + "tags": "menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more", + "set_id": 1 + }, + { + "name": "dots-three-outline-vertical-duotone", + "content": "", + "style": "outline", + "tags": "menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more", + "set_id": 1 + }, + { + "name": "dots-three-vertical-duotone", + "content": "", + "style": "outline", + "tags": "menu,overflow,circles,shapes,polygons,3,ellipsis,ellipses,more", + "set_id": 1 + }, + { + "name": "download-duotone", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,downloaded,downloading,hard drive,disk", + "set_id": 1 + }, + { + "name": "download-simple-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,saved,saving,archived,archiving,archival,downloaded,downloading,hard drive,disk,import", + "set_id": 1 + }, + { + "name": "dress-duotone", + "content": "", + "style": "outline", + "tags": "clothes,clothing", + "set_id": 1 + }, + { + "name": "dresser-duotone", + "content": "", + "style": "outline", + "tags": "*new*,furniture,bedroom,storage,drawers,wardrobe", + "set_id": 1 + }, + { + "name": "dribbble-logo-duotone", + "content": "", + "style": "outline", + "tags": "logos,round,basketball,sports,design", + "set_id": 1 + }, + { + "name": "drone-duotone", + "content": "", + "style": "outline", + "tags": "*new*,aerial,uav,photography,remote", + "set_id": 1 + }, + { + "name": "drop-duotone", + "content": "", + "style": "outline", + "tags": "droplet,teardrop,raindrop,raining,meteorology,water,blur", + "set_id": 1 + }, + { + "name": "drop-half-duotone", + "content": "", + "style": "outline", + "tags": "droplet,teardrop,raindrop,humidity,water,contrast,brightness", + "set_id": 1 + }, + { + "name": "drop-half-bottom-duotone", + "content": "", + "style": "outline", + "tags": "droplet,teardrop,raindrop,humidity,water,contrast,brightness", + "set_id": 1 + }, + { + "name": "drop-simple-duotone", + "content": "", + "style": "outline", + "tags": "*new*,droplet,teardrop,raindrop,raining,humidity,meteorology,water,blur", + "set_id": 1 + }, + { + "name": "drop-slash-duotone", + "content": "", + "style": "outline", + "tags": "*new*,droplet,teardrop,raindrop,raining,humidity,meteorology,water,blur,disabled", + "set_id": 1 + }, + { + "name": "dropbox-logo-duotone", + "content": "", + "style": "outline", + "tags": "cloud,storage,backup,logos", + "set_id": 1 + }, + { + "name": "ear-duotone", + "content": "", + "style": "outline", + "tags": "hearing,audio,sound", + "set_id": 1 + }, + { + "name": "ear-slash-duotone", + "content": "", + "style": "outline", + "tags": "hearing,audio,sound,mute,accessible", + "set_id": 1 + }, + { + "name": "egg-duotone", + "content": "", + "style": "outline", + "tags": "chicken,food,meal,baby,hatch", + "set_id": 1 + }, + { + "name": "egg-crack-duotone", + "content": "", + "style": "outline", + "tags": "chicken,food,meal,baby,hatch,break", + "set_id": 1 + }, + { + "name": "eject-duotone", + "content": "", + "style": "outline", + "tags": "disconnect", + "set_id": 1 + }, + { + "name": "eject-simple-duotone", + "content": "", + "style": "outline", + "tags": "disconnect", + "set_id": 1 + }, + { + "name": "elevator-duotone", + "content": "", + "style": "outline", + "tags": "lift", + "set_id": 1 + }, + { + "name": "empty-duotone", + "content": "", + "style": "outline", + "tags": "*new*,∅,empty set,member,mathematics,arithmetic,calculator,null", + "set_id": 1 + }, + { + "name": "engine-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,motor,repair,vehicles,automobile", + "set_id": 1 + }, + { + "name": "envelope-duotone", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,message,post,letter", + "set_id": 1 + }, + { + "name": "envelope-open-duotone", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,message,read,post,letter", + "set_id": 1 + }, + { + "name": "envelope-simple-duotone", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,message,post,letter", + "set_id": 1 + }, + { + "name": "envelope-simple-open-duotone", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,message,read,post,letter", + "set_id": 1 + }, + { + "name": "equalizer-duotone", + "content": "", + "style": "outline", + "tags": "music,audio,meter,volume,spectrum,eq,deezer", + "set_id": 1 + }, + { + "name": "equals-duotone", + "content": "", + "style": "outline", + "tags": "=,equality,equivalent,equivalence,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "eraser-duotone", + "content": "", + "style": "outline", + "tags": "write,writing,editing,undo,deleted", + "set_id": 1 + }, + { + "name": "escalator-down-duotone", + "content": "", + "style": "outline", + "tags": "stairs", + "set_id": 1 + }, + { + "name": "escalator-up-duotone", + "content": "", + "style": "outline", + "tags": "stairs", + "set_id": 1 + }, + { + "name": "exam-duotone", + "content": "", + "style": "outline", + "tags": "text,examination,paper,school,grade", + "set_id": 1 + }, + { + "name": "exclamation-mark-duotone", + "content": "", + "style": "outline", + "tags": "*new*,!,alert,warning,caution,interjection,punctuation,symbol", + "set_id": 1 + }, + { + "name": "exclude-duotone", + "content": "", + "style": "outline", + "tags": "venn-diagram,difference,intersection", + "set_id": 1 + }, + { + "name": "exclude-square-duotone", + "content": "", + "style": "outline", + "tags": "venn-diagram,difference,intersection", + "set_id": 1 + }, + { + "name": "export-duotone", + "content": "", + "style": "outline", + "tags": "share,send to,arrows", + "set_id": 1 + }, + { + "name": "eye-duotone", + "content": "", + "style": "outline", + "tags": "visible,hidden,show,hide,visibility,view", + "set_id": 1 + }, + { + "name": "eye-closed-duotone", + "content": "", + "style": "outline", + "tags": "visible,hidden,show,hide,visibility,view,invisible,private", + "set_id": 1 + }, + { + "name": "eye-slash-duotone", + "content": "", + "style": "outline", + "tags": "visible,hidden,show,hide,visibility,view,invisible,eyelashes,disabled,private", + "set_id": 1 + }, + { + "name": "eyedropper-duotone", + "content": "", + "style": "outline", + "tags": "colors,color picker,sample,arts", + "set_id": 1 + }, + { + "name": "eyedropper-sample-duotone", + "content": "", + "style": "outline", + "tags": "colors,color picker,arts", + "set_id": 1 + }, + { + "name": "eyeglasses-duotone", + "content": "", + "style": "outline", + "tags": "vision,spectacles", + "set_id": 1 + }, + { + "name": "eyes-duotone", + "content": "", + "style": "outline", + "tags": "*new*,look,glance", + "set_id": 1 + }, + { + "name": "face-mask-duotone", + "content": "", + "style": "outline", + "tags": "ppe,facemask,covid-19,coronavirus,flu,cold", + "set_id": 1 + }, + { + "name": "facebook-logo-duotone", + "content": "", + "style": "outline", + "tags": "logos,social media", + "set_id": 1 + }, + { + "name": "factory-duotone", + "content": "", + "style": "outline", + "tags": "industry,manufacture,buildings,places,locations", + "set_id": 1 + }, + { + "name": "faders-duotone", + "content": "", + "style": "outline", + "tags": "music,audio,sliders,filters,equalizer,volume,settings,preferences", + "set_id": 1 + }, + { + "name": "faders-horizontal-duotone", + "content": "", + "style": "outline", + "tags": "music,audio,sliders,filters,equalizer,volume,settings,preferences", + "set_id": 1 + }, + { + "name": "fallout-shelter-duotone", + "content": "", + "style": "outline", + "tags": "*new*,radiation,radioactive,nuclear,bunker,contamination,quarantine,toxic,danger,caution", + "set_id": 1 + }, + { + "name": "fan-duotone", + "content": "", + "style": "outline", + "tags": "desk fan,air conditioning", + "set_id": 1 + }, + { + "name": "farm-duotone", + "content": "", + "style": "outline", + "tags": "*new*,farmer,field,farming,agriculture", + "set_id": 1 + }, + { + "name": "fast-forward-duotone", + "content": "", + "style": "outline", + "tags": "audio,music,seek,scrub,scan,ahead,skip", + "set_id": 1 + }, + { + "name": "fast-forward-circle-duotone", + "content": "", + "style": "outline", + "tags": "audio,music,seek,scrub,scan,ahead,skip", + "set_id": 1 + }, + { + "name": "feather-duotone", + "content": "", + "style": "outline", + "tags": "bird", + "set_id": 1 + }, + { + "name": "fediverse-logo-duotone", + "content": "", + "style": "outline", + "tags": "*new*,social media,decentralized", + "set_id": 1 + }, + { + "name": "figma-logo-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,logos,drawing,art,illustration,ui,interface,prototype,prototyping", + "set_id": 1 + }, + { + "name": "file-duotone", + "content": "", + "style": "outline", + "tags": "documents,files,save,write,page", + "set_id": 1 + }, + { + "name": "file-archive-duotone", + "content": "", + "style": "outline", + "tags": "documents,zip,compression", + "set_id": 1 + }, + { + "name": "file-arrow-down-duotone", + "content": "", + "style": "outline", + "tags": "documents,files,save,write,download,directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "file-arrow-up-duotone", + "content": "", + "style": "outline", + "tags": "documents,files,save,write,upload,directional,pointer,pointing,arrowhead", + "set_id": 1 + }, + { + "name": "file-audio-duotone", + "content": "", + "style": "outline", + "tags": "documents,music,sound", + "set_id": 1 + }, + { + "name": "file-c-duotone", + "content": "", + "style": "outline", + "tags": "*new*,documents,code", + "set_id": 1 + }, + { + "name": "file-c-sharp-duotone", + "content": "", + "style": "outline", + "tags": "*new*,documents,code,c#", + "set_id": 1 + }, + { + "name": "file-cloud-duotone", + "content": "", + "style": "outline", + "tags": "documents,sync", + "set_id": 1 + }, + { + "name": "file-code-duotone", + "content": "", + "style": "outline", + "tags": "documents", + "set_id": 1 + }, + { + "name": "file-cpp-duotone", + "content": "", + "style": "outline", + "tags": "*new*,documents,code,c++", + "set_id": 1 + }, + { + "name": "file-css-duotone", + "content": "", + "style": "outline", + "tags": "documents,code", + "set_id": 1 + }, + { + "name": "file-csv-duotone", + "content": "", + "style": "outline", + "tags": "documents,data", + "set_id": 1 + }, + { + "name": "file-dashed-duotone", + "content": "", + "style": "outline", + "tags": "documents,files,browse,draft,open,dotted", + "set_id": 1 + }, + { + "name": "file-doc-duotone", + "content": "", + "style": "outline", + "tags": "documents,word,microsoft", + "set_id": 1 + }, + { + "name": "file-html-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,documents,code", + "set_id": 1 + }, + { + "name": "file-image-duotone", + "content": "", + "style": "outline", + "tags": "documents,pictures,photograph", + "set_id": 1 + }, + { + "name": "file-ini-duotone", + "content": "", + "style": "outline", + "tags": "*new*,documents", + "set_id": 1 + }, + { + "name": "file-jpg-duotone", + "content": "", + "style": "outline", + "tags": "documents,pictures,photograph,jpeg", + "set_id": 1 + }, + { + "name": "file-js-duotone", + "content": "", + "style": "outline", + "tags": "documents,code,javascript", + "set_id": 1 + }, + { + "name": "file-jsx-duotone", + "content": "", + "style": "outline", + "tags": "documents,code,javascript", + "set_id": 1 + }, + { + "name": "file-lock-duotone", + "content": "", + "style": "outline", + "tags": "documents,secure,locked,private", + "set_id": 1 + }, + { + "name": "file-magnifying-glass-duotone", + "content": "", + "style": "outline", + "tags": "documents,files,search,find,locate,browse,missing", + "set_id": 1 + }, + { + "name": "file-md-duotone", + "content": "", + "style": "outline", + "tags": "*new*,documents,notes,markdown", + "set_id": 1 + }, + { + "name": "file-minus-duotone", + "content": "", + "style": "outline", + "tags": "documents,files,delete,write,remove,-", + "set_id": 1 + }, + { + "name": "file-pdf-duotone", + "content": "", + "style": "outline", + "tags": "documents,files,acrobat", + "set_id": 1 + }, + { + "name": "file-plus-duotone", + "content": "", + "style": "outline", + "tags": "documents,files,save,write,add,new,create,+", + "set_id": 1 + }, + { + "name": "file-png-duotone", + "content": "", + "style": "outline", + "tags": "documents,pictures,photograph", + "set_id": 1 + }, + { + "name": "file-ppt-duotone", + "content": "", + "style": "outline", + "tags": "documents,powerpoint,microsoft", + "set_id": 1 + }, + { + "name": "file-py-duotone", + "content": "", + "style": "outline", + "tags": "*new*,documents,code,python", + "set_id": 1 + }, + { + "name": "file-rs-duotone", + "content": "", + "style": "outline", + "tags": "documents,code,rust", + "set_id": 1 + }, + { + "name": "file-sql-duotone", + "content": "", + "style": "outline", + "tags": "documents,database", + "set_id": 1 + }, + { + "name": "file-svg-duotone", + "content": "", + "style": "outline", + "tags": "documents,images,vector", + "set_id": 1 + }, + { + "name": "file-text-duotone", + "content": "", + "style": "outline", + "tags": "documents,files,save,write", + "set_id": 1 + }, + { + "name": "file-ts-duotone", + "content": "", + "style": "outline", + "tags": "documents,code,typescript", + "set_id": 1 + }, + { + "name": "file-tsx-duotone", + "content": "", + "style": "outline", + "tags": "documents,code,typescript", + "set_id": 1 + }, + { + "name": "file-txt-duotone", + "content": "", + "style": "outline", + "tags": "*new*,documents", + "set_id": 1 + }, + { + "name": "file-video-duotone", + "content": "", + "style": "outline", + "tags": "documents,movie", + "set_id": 1 + }, + { + "name": "file-vue-duotone", + "content": "", + "style": "outline", + "tags": "documents,code", + "set_id": 1 + }, + { + "name": "file-x-duotone", + "content": "", + "style": "outline", + "tags": "documents,files,cancelled,deleted,removed,errors", + "set_id": 1 + }, + { + "name": "file-xls-duotone", + "content": "", + "style": "outline", + "tags": "documents,excel,microsoft", + "set_id": 1 + }, + { + "name": "file-zip-duotone", + "content": "", + "style": "outline", + "tags": "documents,archive,compression", + "set_id": 1 + }, + { + "name": "files-duotone", + "content": "", + "style": "outline", + "tags": "documents,open,library", + "set_id": 1 + }, + { + "name": "film-reel-duotone", + "content": "", + "style": "outline", + "tags": "videography,films,movies,recording", + "set_id": 1 + }, + { + "name": "film-script-duotone", + "content": "", + "style": "outline", + "tags": "screenplay,movie", + "set_id": 1 + }, + { + "name": "film-slate-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,clapper,movie", + "set_id": 1 + }, + { + "name": "film-strip-duotone", + "content": "", + "style": "outline", + "tags": "camera,photography,darkroom,movie,analog", + "set_id": 1 + }, + { + "name": "fingerprint-duotone", + "content": "", + "style": "outline", + "tags": "security,secured,authentication,authenticated,login,locked,biometrics,encrypted,encryption", + "set_id": 1 + }, + { + "name": "fingerprint-simple-duotone", + "content": "", + "style": "outline", + "tags": "security,secured,authentication,authenticated,login,locked,biometrics,encrypted,encryption", + "set_id": 1 + }, + { + "name": "finn-the-human-duotone", + "content": "", + "style": "outline", + "tags": "adventure time,cartoons,television,tv,character", + "set_id": 1 + }, + { + "name": "fire-duotone", + "content": "", + "style": "outline", + "tags": "flame,burning,match,lighter", + "set_id": 1 + }, + { + "name": "fire-extinguisher-duotone", + "content": "", + "style": "outline", + "tags": "safety,prevention,emergency,hazard,danger,caution", + "set_id": 1 + }, + { + "name": "fire-simple-duotone", + "content": "", + "style": "outline", + "tags": "flame,burning,match,lighter", + "set_id": 1 + }, + { + "name": "fire-truck-duotone", + "content": "", + "style": "outline", + "tags": "*new*,first-aid,emt,medical,medicine,injury,safety,emergency,firefighter", + "set_id": 1 + }, + { + "name": "first-aid-duotone", + "content": "", + "style": "outline", + "tags": "hospital,cross,medical,medicine,injury,safety,emergency,doctor", + "set_id": 1 + }, + { + "name": "first-aid-kit-duotone", + "content": "", + "style": "outline", + "tags": "bandages,medical,medicine,injury,safety,emergency,doctor", + "set_id": 1 + }, + { + "name": "fish-duotone", + "content": "", + "style": "outline", + "tags": "animals,pets,food,seafood,restaurants,dining", + "set_id": 1 + }, + { + "name": "fish-simple-duotone", + "content": "", + "style": "outline", + "tags": "animals,pets,food,seafood,restaurants,dining", + "set_id": 1 + }, + { + "name": "flag-duotone", + "content": "", + "style": "outline", + "tags": "country,countries,finished,completed,flags", + "set_id": 1 + }, + { + "name": "flag-banner-duotone", + "content": "", + "style": "outline", + "tags": "ribbon,country,countries,finished,completed,flags,swallowtail", + "set_id": 1 + }, + { + "name": "flag-banner-fold-duotone", + "content": "", + "style": "outline", + "tags": "*new*,ribbon,country,countries,finished,completed,flags,swallowtail", + "set_id": 1 + }, + { + "name": "flag-checkered-duotone", + "content": "", + "style": "outline", + "tags": "flags,race,racing,finish line", + "set_id": 1 + }, + { + "name": "flag-pennant-duotone", + "content": "", + "style": "outline", + "tags": "flags,race,sports,team", + "set_id": 1 + }, + { + "name": "flame-duotone", + "content": "", + "style": "outline", + "tags": "fire,burning,match,lighter", + "set_id": 1 + }, + { + "name": "flashlight-duotone", + "content": "", + "style": "outline", + "tags": "torch,find,search,locate", + "set_id": 1 + }, + { + "name": "flask-duotone", + "content": "", + "style": "outline", + "tags": "beaker,science,chemistry,experiment,erlenmeyer", + "set_id": 1 + }, + { + "name": "flip-horizontal-duotone", + "content": "", + "style": "outline", + "tags": "*new*,mirror,rotate,invert", + "set_id": 1 + }, + { + "name": "flip-vertical-duotone", + "content": "", + "style": "outline", + "tags": "*new*,mirror,rotate,invert", + "set_id": 1 + }, + { + "name": "floppy-disk-duotone", + "content": "", + "style": "outline", + "tags": "diskette,directory,directories,folders,documents,files,save,write", + "set_id": 1 + }, + { + "name": "floppy-disk-back-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,diskette,directory,directories,folders,documents,files,save,write", + "set_id": 1 + }, + { + "name": "flow-arrow-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,flowchart,arrowhead", + "set_id": 1 + }, + { + "name": "flower-duotone", + "content": "", + "style": "outline", + "tags": "plants,green,environmental", + "set_id": 1 + }, + { + "name": "flower-lotus-duotone", + "content": "", + "style": "outline", + "tags": "plants,green,environmental,spirituality", + "set_id": 1 + }, + { + "name": "flower-tulip-duotone", + "content": "", + "style": "outline", + "tags": "plants,green,environmental", + "set_id": 1 + }, + { + "name": "flying-saucer-duotone", + "content": "", + "style": "outline", + "tags": "ufo,space,aliens,extra terrestrial,sci-fi", + "set_id": 1 + }, + { + "name": "folder-duotone", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders", + "set_id": 1 + }, + { + "name": "folder-dashed-duotone", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,missing,temporary,dotted", + "set_id": 1 + }, + { + "name": "folder-lock-duotone", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,private,secure", + "set_id": 1 + }, + { + "name": "folder-minus-duotone", + "content": "", + "style": "outline", + "tags": "directory,directories,files,delete,write,remove,-", + "set_id": 1 + }, + { + "name": "folder-open-duotone", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,load", + "set_id": 1 + }, + { + "name": "folder-plus-duotone", + "content": "", + "style": "outline", + "tags": "directory,directories,files,save,write,add,new,create,+", + "set_id": 1 + }, + { + "name": "folder-simple-duotone", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders", + "set_id": 1 + }, + { + "name": "folder-simple-dashed-duotone", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,missing,temporary,dotted", + "set_id": 1 + }, + { + "name": "folder-simple-lock-duotone", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,private,secure", + "set_id": 1 + }, + { + "name": "folder-simple-minus-duotone", + "content": "", + "style": "outline", + "tags": "directory,directories,files,delete,write,remove,-", + "set_id": 1 + }, + { + "name": "folder-simple-plus-duotone", + "content": "", + "style": "outline", + "tags": "directory,directories,files,save,write,add,new,create,+", + "set_id": 1 + }, + { + "name": "folder-simple-star-duotone", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,favorite,starred", + "set_id": 1 + }, + { + "name": "folder-simple-user-duotone", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,personal", + "set_id": 1 + }, + { + "name": "folder-star-duotone", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,favorite,starred", + "set_id": 1 + }, + { + "name": "folder-user-duotone", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,personal", + "set_id": 1 + }, + { + "name": "folders-duotone", + "content": "", + "style": "outline", + "tags": "directory,directories,files,folders,copy,copied,duplicated", + "set_id": 1 + }, + { + "name": "football-duotone", + "content": "", + "style": "outline", + "tags": "sports,american football,nfl", + "set_id": 1 + }, + { + "name": "football-helmet-duotone", + "content": "", + "style": "outline", + "tags": "*new*,sports,american football,nfl", + "set_id": 1 + }, + { + "name": "footprints-duotone", + "content": "", + "style": "outline", + "tags": "path,trail,walk,route,hike,hiking", + "set_id": 1 + }, + { + "name": "fork-knife-duotone", + "content": "", + "style": "outline", + "tags": "food,meal,eating,restaurants,dining,utensils", + "set_id": 1 + }, + { + "name": "four-k-duotone", + "content": "", + "style": "outline", + "tags": "*new*,uhd,resolution,video", + "set_id": 1 + }, + { + "name": "frame-corners-duotone", + "content": "", + "style": "outline", + "tags": "expand,fullscreen,maximized,resize,windowed,capture", + "set_id": 1 + }, + { + "name": "framer-logo-duotone", + "content": "", + "style": "outline", + "tags": "logos,interface,ui,motion,prototype,prototyping", + "set_id": 1 + }, + { + "name": "function-duotone", + "content": "", + "style": "outline", + "tags": "mathematics,arithmetic,f-stop", + "set_id": 1 + }, + { + "name": "funnel-duotone", + "content": "", + "style": "outline", + "tags": "filters,refine,sorting", + "set_id": 1 + }, + { + "name": "funnel-simple-duotone", + "content": "", + "style": "outline", + "tags": "filters,refine,sorting", + "set_id": 1 + }, + { + "name": "funnel-simple-x-duotone", + "content": "", + "style": "outline", + "tags": "*new*,filters,refine,sorting", + "set_id": 1 + }, + { + "name": "funnel-x-duotone", + "content": "", + "style": "outline", + "tags": "*new*,filters,refine,sorting", + "set_id": 1 + }, + { + "name": "game-controller-duotone", + "content": "", + "style": "outline", + "tags": "gaming,video games,nintendo switch,sony playstation,microsoft xbox", + "set_id": 1 + }, + { + "name": "garage-duotone", + "content": "", + "style": "outline", + "tags": "vehicles,automobile,buildings,transportation", + "set_id": 1 + }, + { + "name": "gas-can-duotone", + "content": "", + "style": "outline", + "tags": "jerrycan,petrol,fuel,gasoline", + "set_id": 1 + }, + { + "name": "gas-pump-duotone", + "content": "", + "style": "outline", + "tags": "gas station,petrol,fuel,gasoline", + "set_id": 1 + }, + { + "name": "gauge-duotone", + "content": "", + "style": "outline", + "tags": "dashboard,meter,speed,speedometer,odometer,performance", + "set_id": 1 + }, + { + "name": "gavel-duotone", + "content": "", + "style": "outline", + "tags": "judge,justice,legal,law,court,hammer,government", + "set_id": 1 + }, + { + "name": "gear-duotone", + "content": "", + "style": "outline", + "tags": "8,settings,setup,preferences,cogs,gears,machinery,mechanical", + "set_id": 1 + }, + { + "name": "gear-fine-duotone", + "content": "", + "style": "outline", + "tags": "setup,preferences,cogs,gears,machinery,mechanical", + "set_id": 1 + }, + { + "name": "gear-six-duotone", + "content": "", + "style": "outline", + "tags": "6,settings,setup,preferences,cogs,gears,machinery,mechanical", + "set_id": 1 + }, + { + "name": "gender-female-duotone", + "content": "", + "style": "outline", + "tags": "woman,feminine,venus", + "set_id": 1 + }, + { + "name": "gender-intersex-duotone", + "content": "", + "style": "outline", + "tags": "transgender,non-binary", + "set_id": 1 + }, + { + "name": "gender-male-duotone", + "content": "", + "style": "outline", + "tags": "man,masculine,mars", + "set_id": 1 + }, + { + "name": "gender-neuter-duotone", + "content": "", + "style": "outline", + "tags": "agender,non-binary,asexual", + "set_id": 1 + }, + { + "name": "gender-nonbinary-duotone", + "content": "", + "style": "outline", + "tags": "intersex,non-binary", + "set_id": 1 + }, + { + "name": "gender-transgender-duotone", + "content": "", + "style": "outline", + "tags": "intersex,non-binary", + "set_id": 1 + }, + { + "name": "ghost-duotone", + "content": "", + "style": "outline", + "tags": "pac-man,spirit,scary,halloween", + "set_id": 1 + }, + { + "name": "gif-duotone", + "content": "", + "style": "outline", + "tags": "gifs,.gif,giphy", + "set_id": 1 + }, + { + "name": "gift-duotone", + "content": "", + "style": "outline", + "tags": "presents,holiday,birthday", + "set_id": 1 + }, + { + "name": "git-branch-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,github,vcs,source control,version control,versioning,branches", + "set_id": 1 + }, + { + "name": "git-commit-duotone", + "content": "", + "style": "outline", + "tags": "github,vcs,source control,version control,versioning,commits", + "set_id": 1 + }, + { + "name": "git-diff-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,github,vcs,source control,version control,versioning,difference,compare", + "set_id": 1 + }, + { + "name": "git-fork-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,github,vcs,source control,version control,versioning,split", + "set_id": 1 + }, + { + "name": "git-merge-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,github,vcs,source control,version control,versioning,split", + "set_id": 1 + }, + { + "name": "git-pull-request-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,github,vcs,source control,version control,versioning,merge request", + "set_id": 1 + }, + { + "name": "github-logo-duotone", + "content": "", + "style": "outline", + "tags": "octocat,vcs,source control,version control,versioning,branches", + "set_id": 1 + }, + { + "name": "gitlab-logo-duotone", + "content": "", + "style": "outline", + "tags": "vcs,source control,version control,versioning,branches", + "set_id": 1 + }, + { + "name": "gitlab-logo-simple-duotone", + "content": "", + "style": "outline", + "tags": "vcs,source control,version control,versioning,branches", + "set_id": 1 + }, + { + "name": "globe-duotone", + "content": "", + "style": "outline", + "tags": "world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography,internet", + "set_id": 1 + }, + { + "name": "globe-hemisphere-east-duotone", + "content": "", + "style": "outline", + "tags": "world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography,europe,africa,asia,australia", + "set_id": 1 + }, + { + "name": "globe-hemisphere-west-duotone", + "content": "", + "style": "outline", + "tags": "world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography,north america,south america", + "set_id": 1 + }, + { + "name": "globe-simple-duotone", + "content": "", + "style": "outline", + "tags": "world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography", + "set_id": 1 + }, + { + "name": "globe-simple-x-duotone", + "content": "", + "style": "outline", + "tags": "*new*,world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography,internet", + "set_id": 1 + }, + { + "name": "globe-stand-duotone", + "content": "", + "style": "outline", + "tags": "world,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography", + "set_id": 1 + }, + { + "name": "globe-x-duotone", + "content": "", + "style": "outline", + "tags": "*new*,world,earth,global,planet,circle,round,internationalization,i18n,languages,country,countries,geography,internet", + "set_id": 1 + }, + { + "name": "goggles-duotone", + "content": "", + "style": "outline", + "tags": "swim,swimming,sports,exercise,olympics,aquatics", + "set_id": 1 + }, + { + "name": "golf-duotone", + "content": "", + "style": "outline", + "tags": "*new*,sports,pga,tee,ball", + "set_id": 1 + }, + { + "name": "goodreads-logo-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,reading,books,social media,logos", + "set_id": 1 + }, + { + "name": "google-cardboard-logo-duotone", + "content": "", + "style": "outline", + "tags": "virtual reality,vr,logos", + "set_id": 1 + }, + { + "name": "google-chrome-logo-duotone", + "content": "", + "style": "outline", + "tags": "web browsers,internet", + "set_id": 1 + }, + { + "name": "google-drive-logo-duotone", + "content": "", + "style": "outline", + "tags": "cloud,storage,backup,logos", + "set_id": 1 + }, + { + "name": "google-logo-duotone", + "content": "", + "style": "outline", + "tags": "logos,search engine,phone,mobile,android", + "set_id": 1 + }, + { + "name": "google-photos-logo-duotone", + "content": "", + "style": "outline", + "tags": "album,pictures,photography", + "set_id": 1 + }, + { + "name": "google-play-logo-duotone", + "content": "", + "style": "outline", + "tags": "logos,games,apps,applications,play store,app store,phone,mobile,android", + "set_id": 1 + }, + { + "name": "google-podcasts-logo-duotone", + "content": "", + "style": "outline", + "tags": "audio", + "set_id": 1 + }, + { + "name": "gps-duotone", + "content": "", + "style": "outline", + "tags": "*new*,geolocation,location,navigation", + "set_id": 1 + }, + { + "name": "gps-fix-duotone", + "content": "", + "style": "outline", + "tags": "*new*,geolocation,location,navigation", + "set_id": 1 + }, + { + "name": "gps-slash-duotone", + "content": "", + "style": "outline", + "tags": "*new*,geolocation,location,navigation,disabled", + "set_id": 1 + }, + { + "name": "gradient-duotone", + "content": "", + "style": "outline", + "tags": "fade,ombre,opacity", + "set_id": 1 + }, + { + "name": "graduation-cap-duotone", + "content": "", + "style": "outline", + "tags": "classroom,teacher,education,school,college,university,degree,graduate,hat", + "set_id": 1 + }, + { + "name": "grains-duotone", + "content": "", + "style": "outline", + "tags": "wheat,gluten,farm,farming,agriculture", + "set_id": 1 + }, + { + "name": "grains-slash-duotone", + "content": "", + "style": "outline", + "tags": "gluten-free,wheat,gluten,farm,farming,agriculture", + "set_id": 1 + }, + { + "name": "graph-duotone", + "content": "", + "style": "outline", + "tags": "nodes,tree", + "set_id": 1 + }, + { + "name": "graphics-card-duotone", + "content": "", + "style": "outline", + "tags": "*new*,graphics card,microchip,computer,circuit", + "set_id": 1 + }, + { + "name": "greater-than-duotone", + "content": "", + "style": "outline", + "tags": "*new*,>,greater than,gt,comparison,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "greater-than-or-equal-duotone", + "content": "", + "style": "outline", + "tags": "*new*,≥,greater than or equal,gte,comparison,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "grid-four-duotone", + "content": "", + "style": "outline", + "tags": "4,apps,applications,squares,tiles,cells,tables,tabular,spreadsheets,excel", + "set_id": 1 + }, + { + "name": "grid-nine-duotone", + "content": "", + "style": "outline", + "tags": "9,apps,applications,squares,tiles,cells,tables,tabular,spreadsheets,excel", + "set_id": 1 + }, + { + "name": "guitar-duotone", + "content": "", + "style": "outline", + "tags": "music,instrument", + "set_id": 1 + }, + { + "name": "hair-dryer-duotone", + "content": "", + "style": "outline", + "tags": "*new*,blow dryer,beauty,grooming,salon", + "set_id": 1 + }, + { + "name": "hamburger-duotone", + "content": "", + "style": "outline", + "tags": "fast food,party,places,locations,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "hammer-duotone", + "content": "", + "style": "outline", + "tags": "tools,carpentry,construction", + "set_id": 1 + }, + { + "name": "hand-duotone", + "content": "", + "style": "outline", + "tags": "pointers,cursors,emoji,backhand", + "set_id": 1 + }, + { + "name": "hand-arrow-down-duotone", + "content": "", + "style": "outline", + "tags": "*new*,take,receive,remove,withdraw,emoji", + "set_id": 1 + }, + { + "name": "hand-arrow-up-duotone", + "content": "", + "style": "outline", + "tags": "*new*,give,insert,deposit,donation,emoji", + "set_id": 1 + }, + { + "name": "hand-coins-duotone", + "content": "", + "style": "outline", + "tags": "donation,payment,money,paying,purchase", + "set_id": 1 + }, + { + "name": "hand-deposit-duotone", + "content": "", + "style": "outline", + "tags": "*new*,give,insert,donation,atm,emoji", + "set_id": 1 + }, + { + "name": "hand-eye-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,emoji,hamsa,evil eye", + "set_id": 1 + }, + { + "name": "hand-fist-duotone", + "content": "", + "style": "outline", + "tags": "emoji,power,protest,blm", + "set_id": 1 + }, + { + "name": "hand-grabbing-duotone", + "content": "", + "style": "outline", + "tags": "pointers,cursors,emoji,drag,hold", + "set_id": 1 + }, + { + "name": "hand-heart-duotone", + "content": "", + "style": "outline", + "tags": "donation,care,emoji", + "set_id": 1 + }, + { + "name": "hand-palm-duotone", + "content": "", + "style": "outline", + "tags": "pointers,cursors,emoji,palm,stop,wait,hamsa,5", + "set_id": 1 + }, + { + "name": "hand-peace-duotone", + "content": "", + "style": "outline", + "tags": "*new*,emoji,victory", + "set_id": 1 + }, + { + "name": "hand-pointing-duotone", + "content": "", + "style": "outline", + "tags": "pointers,cursors,emoji,fingers,clicks,mouse", + "set_id": 1 + }, + { + "name": "hand-soap-duotone", + "content": "", + "style": "outline", + "tags": "dispenser,pump,sanitizer,disinfectant,lotion,bottle", + "set_id": 1 + }, + { + "name": "hand-swipe-left-duotone", + "content": "", + "style": "outline", + "tags": "pointers,cursors,gesture", + "set_id": 1 + }, + { + "name": "hand-swipe-right-duotone", + "content": "", + "style": "outline", + "tags": "pointers,cursors,gesture", + "set_id": 1 + }, + { + "name": "hand-tap-duotone", + "content": "", + "style": "outline", + "tags": "pointers,cursors,gesture", + "set_id": 1 + }, + { + "name": "hand-waving-duotone", + "content": "", + "style": "outline", + "tags": "emoji,palm,wave,hello,goodbye", + "set_id": 1 + }, + { + "name": "hand-withdraw-duotone", + "content": "", + "style": "outline", + "tags": "*new*,take,remove,withdrawal,atm,emoji", + "set_id": 1 + }, + { + "name": "handbag-duotone", + "content": "", + "style": "outline", + "tags": "suitcases,valises,baggage,purses", + "set_id": 1 + }, + { + "name": "handbag-simple-duotone", + "content": "", + "style": "outline", + "tags": "suitcases,valises,baggage,purses", + "set_id": 1 + }, + { + "name": "hands-clapping-duotone", + "content": "", + "style": "outline", + "tags": "emoji,clap,applause", + "set_id": 1 + }, + { + "name": "hands-praying-duotone", + "content": "", + "style": "outline", + "tags": "emoji,religion,worship,prayer,thanks,thank you", + "set_id": 1 + }, + { + "name": "handshake-duotone", + "content": "", + "style": "outline", + "tags": "emoji,deal,agreement", + "set_id": 1 + }, + { + "name": "hard-drive-duotone", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,hard disk,storage,hdd,servers,databases", + "set_id": 1 + }, + { + "name": "hard-drives-duotone", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,hard disk,storage,hdd,servers,databases", + "set_id": 1 + }, + { + "name": "hard-hat-duotone", + "content": "", + "style": "outline", + "tags": "*new*,safety,construction,industry,helmet,ppe", + "set_id": 1 + }, + { + "name": "hash-duotone", + "content": "", + "style": "outline", + "tags": "hashtag,octothorpe,pound sign,number sign,tic-tac-toe,symbol", + "set_id": 1 + }, + { + "name": "hash-straight-duotone", + "content": "", + "style": "outline", + "tags": "hashtag,octothorpe,pound sign,number sign,tic-tac-toe,symbol", + "set_id": 1 + }, + { + "name": "head-circuit-duotone", + "content": "", + "style": "outline", + "tags": "*new*,automaton,artificial intelligence,ai", + "set_id": 1 + }, + { + "name": "headlights-duotone", + "content": "", + "style": "outline", + "tags": "brights,high beams", + "set_id": 1 + }, + { + "name": "headphones-duotone", + "content": "", + "style": "outline", + "tags": "music,audio,listening", + "set_id": 1 + }, + { + "name": "headset-duotone", + "content": "", + "style": "outline", + "tags": "music,audio,listening,gaming,voice chat,microphone,headphones,support,customer-service,call-center", + "set_id": 1 + }, + { + "name": "heart-duotone", + "content": "", + "style": "outline", + "tags": "wellness,love,healthy,like,favorites,favorited,suits,cards,gambling,casino,gaming,emoji", + "set_id": 1 + }, + { + "name": "heart-break-duotone", + "content": "", + "style": "outline", + "tags": "love,hate,crack,split,divorce,emoji", + "set_id": 1 + }, + { + "name": "heart-half-duotone", + "content": "", + "style": "outline", + "tags": "wellness,love,healthy,like,favorites,favorited", + "set_id": 1 + }, + { + "name": "heart-straight-duotone", + "content": "", + "style": "outline", + "tags": "wellness,love,healthy,like,favorites,favorited,suits,cards,gambling,casino,gaming,emoji", + "set_id": 1 + }, + { + "name": "heart-straight-break-duotone", + "content": "", + "style": "outline", + "tags": "love,hate,crack,split,divorce,emoji", + "set_id": 1 + }, + { + "name": "heartbeat-duotone", + "content": "", + "style": "outline", + "tags": "wellness,healthy,ecg,ekg,vitals,monitor", + "set_id": 1 + }, + { + "name": "hexagon-duotone", + "content": "", + "style": "outline", + "tags": "6,shapes,polygons", + "set_id": 1 + }, + { + "name": "high-definition-duotone", + "content": "", + "style": "outline", + "tags": "*new*,hd,resolution,video", + "set_id": 1 + }, + { + "name": "high-heel-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,pumps,clothes,clothing,shoes", + "set_id": 1 + }, + { + "name": "highlighter-duotone", + "content": "", + "style": "outline", + "tags": "*new*,marker,write,writing,editing", + "set_id": 1 + }, + { + "name": "highlighter-circle-duotone", + "content": "", + "style": "outline", + "tags": "write,writing,editing,drawing", + "set_id": 1 + }, + { + "name": "hockey-duotone", + "content": "", + "style": "outline", + "tags": "*new*,sports,nhl,stick,puck", + "set_id": 1 + }, + { + "name": "hoodie-duotone", + "content": "", + "style": "outline", + "tags": "clothes,clothing,sweatshirt", + "set_id": 1 + }, + { + "name": "horse-duotone", + "content": "", + "style": "outline", + "tags": "animals,equestrian,chess,knight,sports", + "set_id": 1 + }, + { + "name": "hospital-duotone", + "content": "", + "style": "outline", + "tags": "*new*,places,locations,medical,medicine,emergency,doctor,buildings", + "set_id": 1 + }, + { + "name": "hourglass-duotone", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-high-duotone", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-low-duotone", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-medium-duotone", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-simple-duotone", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-simple-high-duotone", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-simple-low-duotone", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "hourglass-simple-medium-duotone", + "content": "", + "style": "outline", + "tags": "times,timer,alarms,clock,schedule,events,waiting,progress", + "set_id": 1 + }, + { + "name": "house-duotone", + "content": "", + "style": "outline", + "tags": "homes,buildings,places,locations", + "set_id": 1 + }, + { + "name": "house-line-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,homes,buildings,places,locations", + "set_id": 1 + }, + { + "name": "house-simple-duotone", + "content": "", + "style": "outline", + "tags": "homes,buildings,places,locations", + "set_id": 1 + }, + { + "name": "hurricane-duotone", + "content": "", + "style": "outline", + "tags": "*new*,meteorology,cyclone,storm,disaster,wind", + "set_id": 1 + }, + { + "name": "ice-cream-duotone", + "content": "", + "style": "outline", + "tags": "food,dessert,cone", + "set_id": 1 + }, + { + "name": "identification-badge-duotone", + "content": "", + "style": "outline", + "tags": "license,credentials,nametag,user,verification", + "set_id": 1 + }, + { + "name": "identification-card-duotone", + "content": "", + "style": "outline", + "tags": "license,badge,credentials,nametag,user,verification", + "set_id": 1 + }, + { + "name": "image-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,pictures,photographs,photography,wallpapers,gallery,landscape", + "set_id": 1 + }, + { + "name": "image-broken-duotone", + "content": "", + "style": "outline", + "tags": "*new*,pictures,photographs,photography,wallpapers,gallery,landscape,missing,error,404", + "set_id": 1 + }, + { + "name": "image-square-duotone", + "content": "", + "style": "outline", + "tags": "pictures,photographs,photography,wallpapers,gallery,landscape", + "set_id": 1 + }, + { + "name": "images-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,pictures,photographs,photography,wallpapers,gallery,landscape,album", + "set_id": 1 + }, + { + "name": "images-square-duotone", + "content": "", + "style": "outline", + "tags": "pictures,photographs,photography,wallpapers,gallery,landscape,album", + "set_id": 1 + }, + { + "name": "infinity-duotone", + "content": "", + "style": "outline", + "tags": "infinite,lemniscate,figure-eight,mathematics,arithmetic,calculator,∞", + "set_id": 1 + }, + { + "name": "info-duotone", + "content": "", + "style": "outline", + "tags": "information,help,support", + "set_id": 1 + }, + { + "name": "instagram-logo-duotone", + "content": "", + "style": "outline", + "tags": "logos,social media,photography,camera", + "set_id": 1 + }, + { + "name": "intersect-duotone", + "content": "", + "style": "outline", + "tags": "round,join,union,merge,combine,intersecting,intersection", + "set_id": 1 + }, + { + "name": "intersect-square-duotone", + "content": "", + "style": "outline", + "tags": "venn-diagram,join,intersection", + "set_id": 1 + }, + { + "name": "intersect-three-duotone", + "content": "", + "style": "outline", + "tags": "venn-diagram,join,intersection,gender,pronouns", + "set_id": 1 + }, + { + "name": "intersection-duotone", + "content": "", + "style": "outline", + "tags": "*new*,∩,intersection,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "invoice-duotone", + "content": "", + "style": "outline", + "tags": "*new*,receipt,expense,bill", + "set_id": 1 + }, + { + "name": "island-duotone", + "content": "", + "style": "outline", + "tags": "*new*,geography,beach,ocean,tropical,palm,vacation,trip,locations,places", + "set_id": 1 + }, + { + "name": "jar-duotone", + "content": "", + "style": "outline", + "tags": "*new*,mason jar,kitchen,pantry,canning,preserves,food,condiments", + "set_id": 1 + }, + { + "name": "jar-label-duotone", + "content": "", + "style": "outline", + "tags": "*new*,mason jar,kitchen,pantry,canning,preserves,food,condiments", + "set_id": 1 + }, + { + "name": "jeep-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,vehicles,automobile,suv,cars,trucks,wrangler,off-road,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "joystick-duotone", + "content": "", + "style": "outline", + "tags": "*new*,gaming,game controller,video games,arcade game,atari", + "set_id": 1 + }, + { + "name": "kanban-duotone", + "content": "", + "style": "outline", + "tags": "scheduling,tasks,project management,process,lean,agile", + "set_id": 1 + }, + { + "name": "key-duotone", + "content": "", + "style": "outline", + "tags": "padlock,security,secured,authentication,authenticated,login,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "key-return-duotone", + "content": "", + "style": "outline", + "tags": "keyboard,enter", + "set_id": 1 + }, + { + "name": "keyboard-duotone", + "content": "", + "style": "outline", + "tags": "typing,type,keys,input", + "set_id": 1 + }, + { + "name": "keyhole-duotone", + "content": "", + "style": "outline", + "tags": "lock,security,secured,authentication,authenticated,login,locked,encrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "knife-duotone", + "content": "", + "style": "outline", + "tags": "tools,food,meal,eating,restaurants,dining,utensils", + "set_id": 1 + }, + { + "name": "ladder-duotone", + "content": "", + "style": "outline", + "tags": "stairs,steps,climbing", + "set_id": 1 + }, + { + "name": "ladder-simple-duotone", + "content": "", + "style": "outline", + "tags": "stairs,steps,climbing", + "set_id": 1 + }, + { + "name": "lamp-duotone", + "content": "", + "style": "outline", + "tags": "light,furniture,appliances", + "set_id": 1 + }, + { + "name": "lamp-pendant-duotone", + "content": "", + "style": "outline", + "tags": "*new*,light,furniture,appliances", + "set_id": 1 + }, + { + "name": "laptop-duotone", + "content": "", + "style": "outline", + "tags": "computer,notebook,pc,macbook", + "set_id": 1 + }, + { + "name": "lasso-duotone", + "content": "", + "style": "outline", + "tags": "*new*,select,selection,loop,rope,cowboy", + "set_id": 1 + }, + { + "name": "lastfm-logo-duotone", + "content": "", + "style": "outline", + "tags": "*new*,scrobble,music,social media", + "set_id": 1 + }, + { + "name": "layout-duotone", + "content": "", + "style": "outline", + "tags": "wireframe,sidebar,ui,interface", + "set_id": 1 + }, + { + "name": "leaf-duotone", + "content": "", + "style": "outline", + "tags": "plants,trees,branches,leaves,nodes,green,environmental", + "set_id": 1 + }, + { + "name": "lectern-duotone", + "content": "", + "style": "outline", + "tags": "*new*,lecture,podium,pulpit,stand,speech,presentation,keynote", + "set_id": 1 + }, + { + "name": "lego-duotone", + "content": "", + "style": "outline", + "tags": "*new*,toys,blocks,bricks", + "set_id": 1 + }, + { + "name": "lego-smiley-duotone", + "content": "", + "style": "outline", + "tags": "*new*,face,emoji,toys,blocks,bricks", + "set_id": 1 + }, + { + "name": "less-than-duotone", + "content": "", + "style": "outline", + "tags": "*new*,<,less than,lt,comparison,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "less-than-or-equal-duotone", + "content": "", + "style": "outline", + "tags": "*new*,≤,less than or equal,lte,comparison,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "letter-circle-h-duotone", + "content": "", + "style": "outline", + "tags": "*new*,hospital,letter,glyph,character", + "set_id": 1 + }, + { + "name": "letter-circle-p-duotone", + "content": "", + "style": "outline", + "tags": "*new*,parking lot,valet,vehicles,letter,glyph,character", + "set_id": 1 + }, + { + "name": "letter-circle-v-duotone", + "content": "", + "style": "outline", + "tags": "*new*,vegan,letter,glyph,character", + "set_id": 1 + }, + { + "name": "lifebuoy-duotone", + "content": "", + "style": "outline", + "tags": "lifebelt,lifesaver,safety,help,support,nautical,boats,ships", + "set_id": 1 + }, + { + "name": "lightbulb-duotone", + "content": "", + "style": "outline", + "tags": "flashlight,bulbs,lighting,led,energy,idea", + "set_id": 1 + }, + { + "name": "lightbulb-filament-duotone", + "content": "", + "style": "outline", + "tags": "flashlight,bulbs,lighting,led,energy,idea", + "set_id": 1 + }, + { + "name": "lighthouse-duotone", + "content": "", + "style": "outline", + "tags": "buildings,nautical,navigation,boats,ships,safety", + "set_id": 1 + }, + { + "name": "lightning-duotone", + "content": "", + "style": "outline", + "tags": "meteorology,stormy,thunderstorm,thunderbolt,charged,charger,charging,power,electricity,flash", + "set_id": 1 + }, + { + "name": "lightning-a-duotone", + "content": "", + "style": "outline", + "tags": "flash,auto", + "set_id": 1 + }, + { + "name": "lightning-slash-duotone", + "content": "", + "style": "outline", + "tags": "thunderbolt,charged,charger,charging,power,electricity,disabled,flash", + "set_id": 1 + }, + { + "name": "line-segment-duotone", + "content": "", + "style": "outline", + "tags": "shapes,drawing,path,pen,vector", + "set_id": 1 + }, + { + "name": "line-segments-duotone", + "content": "", + "style": "outline", + "tags": "shapes,drawing,path,pen,vector", + "set_id": 1 + }, + { + "name": "line-vertical-duotone", + "content": "", + "style": "outline", + "tags": "*new*,bar,pipe,|,divider. symbol", + "set_id": 1 + }, + { + "name": "link-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,anchor,hyperlink,hypertext,chains,chained", + "set_id": 1 + }, + { + "name": "link-break-duotone", + "content": "", + "style": "outline", + "tags": "anchor,hyperlink,hypertext,chains,chained,errors,broken", + "set_id": 1 + }, + { + "name": "link-simple-duotone", + "content": "", + "style": "outline", + "tags": "anchor,hyperlink,hypertext,chains,chained", + "set_id": 1 + }, + { + "name": "link-simple-break-duotone", + "content": "", + "style": "outline", + "tags": "anchor,hyperlink,hypertext,chains,chained,errors,broken", + "set_id": 1 + }, + { + "name": "link-simple-horizontal-duotone", + "content": "", + "style": "outline", + "tags": "anchor,hyperlink,hypertext,chains,chained", + "set_id": 1 + }, + { + "name": "link-simple-horizontal-break-duotone", + "content": "", + "style": "outline", + "tags": "anchor,hyperlink,hypertext,chains,chained,errors,broken", + "set_id": 1 + }, + { + "name": "linkedin-logo-duotone", + "content": "", + "style": "outline", + "tags": "logos,jobs,employment,social media", + "set_id": 1 + }, + { + "name": "linktree-logo-duotone", + "content": "", + "style": "outline", + "tags": "*new*,social media,links", + "set_id": 1 + }, + { + "name": "linux-logo-duotone", + "content": "", + "style": "outline", + "tags": "penguin,computer,animals", + "set_id": 1 + }, + { + "name": "list-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,hamburger menu,overflow menu,sidebar,3,ul,ol,unordered list,ordered list,checklist,lines", + "set_id": 1 + }, + { + "name": "list-bullets-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,ul,unordered list,bulleted list,checklist", + "set_id": 1 + }, + { + "name": "list-checks-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,checklist,todo", + "set_id": 1 + }, + { + "name": "list-dashes-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,ul,unordered list,dashed list,checklist", + "set_id": 1 + }, + { + "name": "list-heart-duotone", + "content": "", + "style": "outline", + "tags": "*new*,favorites,wishlist,liked", + "set_id": 1 + }, + { + "name": "list-magnifying-glass-duotone", + "content": "", + "style": "outline", + "tags": "search,find,locate,query,inspect", + "set_id": 1 + }, + { + "name": "list-numbers-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,ol,ordered list,numbered list,checklist", + "set_id": 1 + }, + { + "name": "list-plus-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,ul,ol,unordered list,ordered list,checklist,add,+", + "set_id": 1 + }, + { + "name": "list-star-duotone", + "content": "", + "style": "outline", + "tags": "*new*,favorites,wishlist,liked", + "set_id": 1 + }, + { + "name": "lock-duotone", + "content": "", + "style": "outline", + "tags": "padlock,security,secured,authentication,authenticated,login,locked,encrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "lock-key-duotone", + "content": "", + "style": "outline", + "tags": "padlock,security,secured,authentication,authenticated,login,locked,encrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "lock-key-open-duotone", + "content": "", + "style": "outline", + "tags": "padlock,security,unsecured,authentication,unauthenticated,login,unlocked,unencrypted,encryption,privacy", + "set_id": 1 + }, + { + "name": "lock-laminated-duotone", + "content": "", + "style": "outline", + "tags": "padlock,security,secured,authentication,authenticated,login,locked,encrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "lock-laminated-open-duotone", + "content": "", + "style": "outline", + "tags": "padlock,security,unsecured,authentication,unauthenticated,login,unlocked,unencrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "lock-open-duotone", + "content": "", + "style": "outline", + "tags": "padlock,security,unsecured,authentication,unauthenticated,login,unlocked,unencrypted,encryption,privacy", + "set_id": 1 + }, + { + "name": "lock-simple-duotone", + "content": "", + "style": "outline", + "tags": "padlock,security,secured,authentication,authenticated,login,locked,encrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "lock-simple-open-duotone", + "content": "", + "style": "outline", + "tags": "padlock,security,unsecured,authentication,unauthenticated,login,unlocked,unencrypted,encryption,privacy,private", + "set_id": 1 + }, + { + "name": "lockers-duotone", + "content": "", + "style": "outline", + "tags": "locker room,gym,storage", + "set_id": 1 + }, + { + "name": "log-duotone", + "content": "", + "style": "outline", + "tags": "*new*,tree,stump,stick,branch", + "set_id": 1 + }, + { + "name": "magic-wand-duotone", + "content": "", + "style": "outline", + "tags": "selection,wizard,games", + "set_id": 1 + }, + { + "name": "magnet-duotone", + "content": "", + "style": "outline", + "tags": "magnetism,science,physics", + "set_id": 1 + }, + { + "name": "magnet-straight-duotone", + "content": "", + "style": "outline", + "tags": "magnetism,science,physics", + "set_id": 1 + }, + { + "name": "magnifying-glass-duotone", + "content": "", + "style": "outline", + "tags": "search,find,locate,query,inspect", + "set_id": 1 + }, + { + "name": "magnifying-glass-minus-duotone", + "content": "", + "style": "outline", + "tags": "search,find,locate,query,inspect,zoom out,-", + "set_id": 1 + }, + { + "name": "magnifying-glass-plus-duotone", + "content": "", + "style": "outline", + "tags": "search,find,locate,query,inspect,zoom in,+", + "set_id": 1 + }, + { + "name": "mailbox-duotone", + "content": "", + "style": "outline", + "tags": "*new*,email,letters,messaging,post", + "set_id": 1 + }, + { + "name": "map-pin-duotone", + "content": "", + "style": "outline", + "tags": "maps,places,markers,pins,locations,poi,point of interest", + "set_id": 1 + }, + { + "name": "map-pin-area-duotone", + "content": "", + "style": "outline", + "tags": "*new*,maps,places,markers,pins,locations,poi,point of interest", + "set_id": 1 + }, + { + "name": "map-pin-line-duotone", + "content": "", + "style": "outline", + "tags": "maps,places,markers,pins,locations,poi,point of interest", + "set_id": 1 + }, + { + "name": "map-pin-plus-duotone", + "content": "", + "style": "outline", + "tags": "*new*,maps,places,markers,pins,locations,add,point of interest", + "set_id": 1 + }, + { + "name": "map-pin-simple-duotone", + "content": "", + "style": "outline", + "tags": "*new*,maps,places,markers,pins,locations,poi,point of interest", + "set_id": 1 + }, + { + "name": "map-pin-simple-area-duotone", + "content": "", + "style": "outline", + "tags": "*new*,maps,places,markers,pins,locations,poi,point of interest", + "set_id": 1 + }, + { + "name": "map-pin-simple-line-duotone", + "content": "", + "style": "outline", + "tags": "*new*,maps,places,markers,pins,locations,poi,point of interest", + "set_id": 1 + }, + { + "name": "map-trifold-duotone", + "content": "", + "style": "outline", + "tags": "maps,places,locations,cartography,geography", + "set_id": 1 + }, + { + "name": "markdown-logo-duotone", + "content": "", + "style": "outline", + "tags": "*new*,markup,editor,.md", + "set_id": 1 + }, + { + "name": "marker-circle-duotone", + "content": "", + "style": "outline", + "tags": "write,writing,editing,drawing", + "set_id": 1 + }, + { + "name": "martini-duotone", + "content": "", + "style": "outline", + "tags": "glass,drinks,beverages,cocktails,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "mask-happy-duotone", + "content": "", + "style": "outline", + "tags": "theater,costume,smile,smiling,thalia", + "set_id": 1 + }, + { + "name": "mask-sad-duotone", + "content": "", + "style": "outline", + "tags": "theater,costume,cry,crying,melpomene", + "set_id": 1 + }, + { + "name": "mastodon-logo-duotone", + "content": "", + "style": "outline", + "tags": "*new*,fediverse,social media,decentralized", + "set_id": 1 + }, + { + "name": "math-operations-duotone", + "content": "", + "style": "outline", + "tags": "addition,sum,subtraction,difference,multiply,multiplication,product,divide,division,divisor,dividend,quotient,equals,equality,mathematics,arithmetic,calculator,+,-,±,×,÷,=", + "set_id": 1 + }, + { + "name": "matrix-logo-duotone", + "content": "", + "style": "outline", + "tags": "*new*,matrix protocol,brands,logos", + "set_id": 1 + }, + { + "name": "medal-duotone", + "content": "", + "style": "outline", + "tags": "ribbons,winning,victory,awards,rosette", + "set_id": 1 + }, + { + "name": "medal-military-duotone", + "content": "", + "style": "outline", + "tags": "ribbons,winning,victory,awards,military", + "set_id": 1 + }, + { + "name": "medium-logo-duotone", + "content": "", + "style": "outline", + "tags": "logos,reading,writing,news,social media", + "set_id": 1 + }, + { + "name": "megaphone-duotone", + "content": "", + "style": "outline", + "tags": "bullhorn,announcements,loudspeaker,broadcast", + "set_id": 1 + }, + { + "name": "megaphone-simple-duotone", + "content": "", + "style": "outline", + "tags": "bullhorn,announcements,loudspeaker,broadcast", + "set_id": 1 + }, + { + "name": "member-of-duotone", + "content": "", + "style": "outline", + "tags": "*new*,∈,is element of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "memory-duotone", + "content": "", + "style": "outline", + "tags": "*new*,ram,microchip,computer,circuit,electronics", + "set_id": 1 + }, + { + "name": "messenger-logo-duotone", + "content": "", + "style": "outline", + "tags": "logos,facebook,social media", + "set_id": 1 + }, + { + "name": "meta-logo-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,facebook,logos,social media,logos", + "set_id": 1 + }, + { + "name": "meteor-duotone", + "content": "", + "style": "outline", + "tags": "*new*,astronomy,asteroid,fireball", + "set_id": 1 + }, + { + "name": "metronome-duotone", + "content": "", + "style": "outline", + "tags": "music,beat,tempo,bpm", + "set_id": 1 + }, + { + "name": "microphone-duotone", + "content": "", + "style": "outline", + "tags": "audio,recording,music,sound,podcast,studio", + "set_id": 1 + }, + { + "name": "microphone-slash-duotone", + "content": "", + "style": "outline", + "tags": "audio,recording,music,sound,podcast,studio,muted,disabled", + "set_id": 1 + }, + { + "name": "microphone-stage-duotone", + "content": "", + "style": "outline", + "tags": "audio,recording,music,sound,performance,concert", + "set_id": 1 + }, + { + "name": "microscope-duotone", + "content": "", + "style": "outline", + "tags": "*new*,science,biology,experiment,magnify", + "set_id": 1 + }, + { + "name": "microsoft-excel-logo-duotone", + "content": "", + "style": "outline", + "tags": "tables,spreadsheets,tabular", + "set_id": 1 + }, + { + "name": "microsoft-outlook-logo-duotone", + "content": "", + "style": "outline", + "tags": "email,logos", + "set_id": 1 + }, + { + "name": "microsoft-powerpoint-logo-duotone", + "content": "", + "style": "outline", + "tags": "slides,slideshow,presentation", + "set_id": 1 + }, + { + "name": "microsoft-teams-logo-duotone", + "content": "", + "style": "outline", + "tags": "chat,video conference", + "set_id": 1 + }, + { + "name": "microsoft-word-logo-duotone", + "content": "", + "style": "outline", + "tags": "documents,word processor,doc,docx", + "set_id": 1 + }, + { + "name": "minus-duotone", + "content": "", + "style": "outline", + "tags": "-,subtraction,difference,mathematics,arithmetic,calculator,line,horizontal,divider", + "set_id": 1 + }, + { + "name": "minus-circle-duotone", + "content": "", + "style": "outline", + "tags": "-,subtraction,difference,mathematics,arithmetic,calculator,round", + "set_id": 1 + }, + { + "name": "minus-square-duotone", + "content": "", + "style": "outline", + "tags": "-,subtraction,difference,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "money-duotone", + "content": "", + "style": "outline", + "tags": "cash,dollars,paper bills,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "money-wavy-duotone", + "content": "", + "style": "outline", + "tags": "*new*,cash,dollars,paper bills,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "monitor-duotone", + "content": "", + "style": "outline", + "tags": "screen,television,tv,displays", + "set_id": 1 + }, + { + "name": "monitor-arrow-up-duotone", + "content": "", + "style": "outline", + "tags": "*new*,screen,screencast,screenshare,upload,video,movie", + "set_id": 1 + }, + { + "name": "monitor-play-duotone", + "content": "", + "style": "outline", + "tags": "screen,television,tv,displays,screencast,video,movie", + "set_id": 1 + }, + { + "name": "moon-duotone", + "content": "", + "style": "outline", + "tags": "night,evening,clear,sleep,snooze,night mode,dark mode,astronomy,stargazing", + "set_id": 1 + }, + { + "name": "moon-stars-duotone", + "content": "", + "style": "outline", + "tags": "night,evening,clear,sleep,snooze,night mode,dark mode,astronomy,stargazing,constellation", + "set_id": 1 + }, + { + "name": "moped-duotone", + "content": "", + "style": "outline", + "tags": "scooter,vehicles,vespa,transportation,travel", + "set_id": 1 + }, + { + "name": "moped-front-duotone", + "content": "", + "style": "outline", + "tags": "scooter,vehicles,vespa,transportation,travel", + "set_id": 1 + }, + { + "name": "mosque-duotone", + "content": "", + "style": "outline", + "tags": "islam,muslim,religion,worship", + "set_id": 1 + }, + { + "name": "motorcycle-duotone", + "content": "", + "style": "outline", + "tags": "vehicles,motorbike,transportation,travel", + "set_id": 1 + }, + { + "name": "mountains-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,hills,outdoors,terrain,geology,adventure", + "set_id": 1 + }, + { + "name": "mouse-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,clicks,input", + "set_id": 1 + }, + { + "name": "mouse-left-click-duotone", + "content": "", + "style": "outline", + "tags": "*new*,clicks,input", + "set_id": 1 + }, + { + "name": "mouse-middle-click-duotone", + "content": "", + "style": "outline", + "tags": "*new*,clicks,input", + "set_id": 1 + }, + { + "name": "mouse-right-click-duotone", + "content": "", + "style": "outline", + "tags": "*new*,clicks,input", + "set_id": 1 + }, + { + "name": "mouse-scroll-duotone", + "content": "", + "style": "outline", + "tags": "*new*,clicks,input", + "set_id": 1 + }, + { + "name": "mouse-simple-duotone", + "content": "", + "style": "outline", + "tags": "clicks,input", + "set_id": 1 + }, + { + "name": "music-note-duotone", + "content": "", + "style": "outline", + "tags": "songs,audio,playlist,albums", + "set_id": 1 + }, + { + "name": "music-note-simple-duotone", + "content": "", + "style": "outline", + "tags": "songs,audio,playlist,albums", + "set_id": 1 + }, + { + "name": "music-notes-duotone", + "content": "", + "style": "outline", + "tags": "songs,audio,playlist,albums", + "set_id": 1 + }, + { + "name": "music-notes-minus-duotone", + "content": "", + "style": "outline", + "tags": "*new*,songs,audio,playlist,albums,remove,subtract", + "set_id": 1 + }, + { + "name": "music-notes-plus-duotone", + "content": "", + "style": "outline", + "tags": "songs,audio,playlist,albums,add", + "set_id": 1 + }, + { + "name": "music-notes-simple-duotone", + "content": "", + "style": "outline", + "tags": "songs,audio,playlist,albums", + "set_id": 1 + }, + { + "name": "navigation-arrow-duotone", + "content": "", + "style": "outline", + "tags": "location,directions,compass,gps", + "set_id": 1 + }, + { + "name": "needle-duotone", + "content": "", + "style": "outline", + "tags": "sewing,thread,awl,tailor", + "set_id": 1 + }, + { + "name": "network-duotone", + "content": "", + "style": "outline", + "tags": "*new*,internet,ethernet,lan", + "set_id": 1 + }, + { + "name": "network-slash-duotone", + "content": "", + "style": "outline", + "tags": "*new*,internet,ethernet,lan,error", + "set_id": 1 + }, + { + "name": "network-x-duotone", + "content": "", + "style": "outline", + "tags": "*new*,internet,ethernet,lan,disabled", + "set_id": 1 + }, + { + "name": "newspaper-duotone", + "content": "", + "style": "outline", + "tags": "reading,writing,journals,periodicals", + "set_id": 1 + }, + { + "name": "newspaper-clipping-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,reading,writing,journals,periodicals", + "set_id": 1 + }, + { + "name": "not-equals-duotone", + "content": "", + "style": "outline", + "tags": "*new*,≠,equality,equivalent,equivalence,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "not-member-of-duotone", + "content": "", + "style": "outline", + "tags": "*new*,∉,is not element of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "not-subset-of-duotone", + "content": "", + "style": "outline", + "tags": "*new*,⊄,not subset of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "not-superset-of-duotone", + "content": "", + "style": "outline", + "tags": "*new*,⊉,not superset of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "notches-duotone", + "content": "", + "style": "outline", + "tags": "textarea,resize,drag handle,knurling", + "set_id": 1 + }, + { + "name": "note-duotone", + "content": "", + "style": "outline", + "tags": "notes,note-taking,memorandum,post-it,reminders", + "set_id": 1 + }, + { + "name": "note-blank-duotone", + "content": "", + "style": "outline", + "tags": "notes,note-taking,memorandum,post-it,reminders", + "set_id": 1 + }, + { + "name": "note-pencil-duotone", + "content": "", + "style": "outline", + "tags": "notes,note-taking,memorandum,post-it,reminders", + "set_id": 1 + }, + { + "name": "notebook-duotone", + "content": "", + "style": "outline", + "tags": "notes,note-taking,memorandum,journal,diary,logs,logbook", + "set_id": 1 + }, + { + "name": "notepad-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,logs,logbook,notes,note-taking,memorandum,journal,diary", + "set_id": 1 + }, + { + "name": "notification-duotone", + "content": "", + "style": "outline", + "tags": "badge,pip", + "set_id": 1 + }, + { + "name": "notion-logo-duotone", + "content": "", + "style": "outline", + "tags": "documentation,productivity,wiki,logos", + "set_id": 1 + }, + { + "name": "nuclear-plant-duotone", + "content": "", + "style": "outline", + "tags": "*new*,renewable,energy,power,electricity", + "set_id": 1 + }, + { + "name": "number-circle-eight-duotone", + "content": "", + "style": "outline", + "tags": "8,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-five-duotone", + "content": "", + "style": "outline", + "tags": "5,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-four-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,4,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-nine-duotone", + "content": "", + "style": "outline", + "tags": "9,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-one-duotone", + "content": "", + "style": "outline", + "tags": "1,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-seven-duotone", + "content": "", + "style": "outline", + "tags": "7,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-six-duotone", + "content": "", + "style": "outline", + "tags": "6,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-three-duotone", + "content": "", + "style": "outline", + "tags": "3,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-two-duotone", + "content": "", + "style": "outline", + "tags": "2,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-circle-zero-duotone", + "content": "", + "style": "outline", + "tags": "0,round,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-eight-duotone", + "content": "", + "style": "outline", + "tags": "8,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-five-duotone", + "content": "", + "style": "outline", + "tags": "5,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-four-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,4,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-nine-duotone", + "content": "", + "style": "outline", + "tags": "9,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-one-duotone", + "content": "", + "style": "outline", + "tags": "1,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-seven-duotone", + "content": "", + "style": "outline", + "tags": "7,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-six-duotone", + "content": "", + "style": "outline", + "tags": "6,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-eight-duotone", + "content": "", + "style": "outline", + "tags": "8,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-five-duotone", + "content": "", + "style": "outline", + "tags": "5,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-four-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,4,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-nine-duotone", + "content": "", + "style": "outline", + "tags": "9,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-one-duotone", + "content": "", + "style": "outline", + "tags": "1,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-seven-duotone", + "content": "", + "style": "outline", + "tags": "7,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-six-duotone", + "content": "", + "style": "outline", + "tags": "6,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-three-duotone", + "content": "", + "style": "outline", + "tags": "3,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-two-duotone", + "content": "", + "style": "outline", + "tags": "2,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-square-zero-duotone", + "content": "", + "style": "outline", + "tags": "0,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-three-duotone", + "content": "", + "style": "outline", + "tags": "3,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-two-duotone", + "content": "", + "style": "outline", + "tags": "2,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "number-zero-duotone", + "content": "", + "style": "outline", + "tags": "0,numbers,numerals,digits,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "numpad-duotone", + "content": "", + "style": "outline", + "tags": "*new*,dialer,dialpad,call-center,telephone,landline,password,passcode", + "set_id": 1 + }, + { + "name": "nut-duotone", + "content": "", + "style": "outline", + "tags": "bolts,screws,machinery,tools,hexagon", + "set_id": 1 + }, + { + "name": "ny-times-logo-duotone", + "content": "", + "style": "outline", + "tags": "nyt,new york times,logos,reading,writing,news,newspaper", + "set_id": 1 + }, + { + "name": "octagon-duotone", + "content": "", + "style": "outline", + "tags": "8,shapes,polygons", + "set_id": 1 + }, + { + "name": "office-chair-duotone", + "content": "", + "style": "outline", + "tags": "furniture,seat", + "set_id": 1 + }, + { + "name": "onigiri-duotone", + "content": "", + "style": "outline", + "tags": "*new*,rice ball,japanese,food,restaurant", + "set_id": 1 + }, + { + "name": "open-ai-logo-duotone", + "content": "", + "style": "outline", + "tags": "*new*,artificial intelligence,ai,chatgpt,llm,logos", + "set_id": 1 + }, + { + "name": "option-duotone", + "content": "", + "style": "outline", + "tags": "keyboard,shortcut,modifier", + "set_id": 1 + }, + { + "name": "orange-duotone", + "content": "", + "style": "outline", + "tags": "*new*,food,fruit,juice,citrus,groceries,market", + "set_id": 1 + }, + { + "name": "orange-slice-duotone", + "content": "", + "style": "outline", + "tags": "food,fruit,juice,citrus,groceries,market", + "set_id": 1 + }, + { + "name": "oven-duotone", + "content": "", + "style": "outline", + "tags": "*new*,stove,stovetop,food,cooking,cuisine,kitchen", + "set_id": 1 + }, + { + "name": "package-duotone", + "content": "", + "style": "outline", + "tags": "packages,boxes,delivery,mail,postal service,bundles,library,libraries,shipping", + "set_id": 1 + }, + { + "name": "paint-brush-duotone", + "content": "", + "style": "outline", + "tags": "colors,color picker,arts", + "set_id": 1 + }, + { + "name": "paint-brush-broad-duotone", + "content": "", + "style": "outline", + "tags": "fill,colors,color picker,arts", + "set_id": 1 + }, + { + "name": "paint-brush-household-duotone", + "content": "", + "style": "outline", + "tags": "colors,color picker,arts", + "set_id": 1 + }, + { + "name": "paint-bucket-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,paintbucket,colors,color picker,fill,arts", + "set_id": 1 + }, + { + "name": "paint-roller-duotone", + "content": "", + "style": "outline", + "tags": "colors,color picker,fill,arts,theme", + "set_id": 1 + }, + { + "name": "palette-duotone", + "content": "", + "style": "outline", + "tags": "paint,colors,color picker,arts", + "set_id": 1 + }, + { + "name": "panorama-duotone", + "content": "", + "style": "outline", + "tags": "*new*,image,picture,photography,landscape,360", + "set_id": 1 + }, + { + "name": "pants-duotone", + "content": "", + "style": "outline", + "tags": "clothing,clothes,jeans", + "set_id": 1 + }, + { + "name": "paper-plane-duotone", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,messages,messaging,toys,games", + "set_id": 1 + }, + { + "name": "paper-plane-right-duotone", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,messages,messaging,toys,games", + "set_id": 1 + }, + { + "name": "paper-plane-tilt-duotone", + "content": "", + "style": "outline", + "tags": "mail,email,send,sent,messages,messaging,toys,games", + "set_id": 1 + }, + { + "name": "paperclip-duotone", + "content": "", + "style": "outline", + "tags": "attachments,mail,email,office", + "set_id": 1 + }, + { + "name": "paperclip-horizontal-duotone", + "content": "", + "style": "outline", + "tags": "attachments,mail,email,office", + "set_id": 1 + }, + { + "name": "parachute-duotone", + "content": "", + "style": "outline", + "tags": "skydiving,safety", + "set_id": 1 + }, + { + "name": "paragraph-duotone", + "content": "", + "style": "outline", + "tags": "pilcrow", + "set_id": 1 + }, + { + "name": "parallelogram-duotone", + "content": "", + "style": "outline", + "tags": "shapes,bandcamp,logos", + "set_id": 1 + }, + { + "name": "park-duotone", + "content": "", + "style": "outline", + "tags": "bench,outdoors", + "set_id": 1 + }, + { + "name": "password-duotone", + "content": "", + "style": "outline", + "tags": "security,secured,authentication,authenticated,login,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "path-duotone", + "content": "", + "style": "outline", + "tags": "transit,travel,trail,gps,navigation,route,destination,vector", + "set_id": 1 + }, + { + "name": "patreon-logo-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,crowdfunding,logos", + "set_id": 1 + }, + { + "name": "pause-duotone", + "content": "", + "style": "outline", + "tags": "music,audio,resume,start,stop", + "set_id": 1 + }, + { + "name": "pause-circle-duotone", + "content": "", + "style": "outline", + "tags": "music,audio,resume,start,stop,round", + "set_id": 1 + }, + { + "name": "paw-print-duotone", + "content": "", + "style": "outline", + "tags": "pets,pet store,pet shop,animals,cat,dog,veterinarian", + "set_id": 1 + }, + { + "name": "paypal-logo-duotone", + "content": "", + "style": "outline", + "tags": "payments,paying,purchase,logos", + "set_id": 1 + }, + { + "name": "peace-duotone", + "content": "", + "style": "outline", + "tags": "love,hippies,peace sign,symbols", + "set_id": 1 + }, + { + "name": "pen-duotone", + "content": "", + "style": "outline", + "tags": "ink,write,writing,editing,sign,signature", + "set_id": 1 + }, + { + "name": "pen-nib-duotone", + "content": "", + "style": "outline", + "tags": "ink,write,writing,editing,sign,signature,fountain pen,illustrator", + "set_id": 1 + }, + { + "name": "pen-nib-straight-duotone", + "content": "", + "style": "outline", + "tags": "ink,write,writing,editing,sign,signature,fountain pen,illustrator", + "set_id": 1 + }, + { + "name": "pencil-duotone", + "content": "", + "style": "outline", + "tags": "write,writing,editing,sign,signature", + "set_id": 1 + }, + { + "name": "pencil-circle-duotone", + "content": "", + "style": "outline", + "tags": "write,writing,editing,sign,signature", + "set_id": 1 + }, + { + "name": "pencil-line-duotone", + "content": "", + "style": "outline", + "tags": "write,writing,editing,sign,signature", + "set_id": 1 + }, + { + "name": "pencil-ruler-duotone", + "content": "", + "style": "outline", + "tags": "*new*,drawing,drafting,construction,tools", + "set_id": 1 + }, + { + "name": "pencil-simple-duotone", + "content": "", + "style": "outline", + "tags": "write,writing,editing,sign,signature", + "set_id": 1 + }, + { + "name": "pencil-simple-line-duotone", + "content": "", + "style": "outline", + "tags": "write,writing,editing,sign,signature", + "set_id": 1 + }, + { + "name": "pencil-simple-slash-duotone", + "content": "", + "style": "outline", + "tags": "read-only,write,writing,editing", + "set_id": 1 + }, + { + "name": "pencil-slash-duotone", + "content": "", + "style": "outline", + "tags": "read-only,write,writing,editing", + "set_id": 1 + }, + { + "name": "pentagon-duotone", + "content": "", + "style": "outline", + "tags": "*new*,shapes,polygons,5", + "set_id": 1 + }, + { + "name": "pentagram-duotone", + "content": "", + "style": "outline", + "tags": "star,wicca,satan,satanism,religion,spirituality,evil,magic", + "set_id": 1 + }, + { + "name": "pepper-duotone", + "content": "", + "style": "outline", + "tags": "food,spicy,chile,vegetable", + "set_id": 1 + }, + { + "name": "percent-duotone", + "content": "", + "style": "outline", + "tags": "%,percentage,percentile,ratio,delta,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "person-duotone", + "content": "", + "style": "outline", + "tags": "walking,human,woman,man,body,transit,transportation,travel,commuter,user", + "set_id": 1 + }, + { + "name": "person-arms-spread-duotone", + "content": "", + "style": "outline", + "tags": "accessibility,vitruvian,stretch,sports", + "set_id": 1 + }, + { + "name": "person-simple-duotone", + "content": "", + "style": "outline", + "tags": "pedestrian,walking,human,woman,man,body,transit,transportation,travel,commuter,user,exercise", + "set_id": 1 + }, + { + "name": "person-simple-bike-duotone", + "content": "", + "style": "outline", + "tags": "pedestrian,biking,bicycle,human,woman,man,body,sports,exercise", + "set_id": 1 + }, + { + "name": "person-simple-circle-duotone", + "content": "", + "style": "outline", + "tags": "*new*,human,accessibility,a11y,vitruvius,vitruvian", + "set_id": 1 + }, + { + "name": "person-simple-hike-duotone", + "content": "", + "style": "outline", + "tags": "*new*,pedestrian,climbing,mountaineering,bouldering", + "set_id": 1 + }, + { + "name": "person-simple-run-duotone", + "content": "", + "style": "outline", + "tags": "pedestrian,running,human,woman,man,body,transit,transportation,travel,commuter,user,exercise", + "set_id": 1 + }, + { + "name": "person-simple-ski-duotone", + "content": "", + "style": "outline", + "tags": "*new*,sports,skiing,winter,mountain", + "set_id": 1 + }, + { + "name": "person-simple-snowboard-duotone", + "content": "", + "style": "outline", + "tags": "*new*,sports,snowboarding,winter,mountain", + "set_id": 1 + }, + { + "name": "person-simple-swim-duotone", + "content": "", + "style": "outline", + "tags": "*new*,pedestrian,swimming,human,woman,man,body,sports,exercise", + "set_id": 1 + }, + { + "name": "person-simple-tai-chi-duotone", + "content": "", + "style": "outline", + "tags": "*new*,mindfulness,martial arts,meditation,sports,exercise,yoga", + "set_id": 1 + }, + { + "name": "person-simple-throw-duotone", + "content": "", + "style": "outline", + "tags": "pedestrian,tennis,human,woman,man,body,sports,exercise", + "set_id": 1 + }, + { + "name": "person-simple-walk-duotone", + "content": "", + "style": "outline", + "tags": "pedestrian,walking,human,woman,man,body,transit,transportation,travel,commuter,user,exercise", + "set_id": 1 + }, + { + "name": "perspective-duotone", + "content": "", + "style": "outline", + "tags": "3d,skew,warp,trapezoid", + "set_id": 1 + }, + { + "name": "phone-duotone", + "content": "", + "style": "outline", + "tags": "calls,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-call-duotone", + "content": "", + "style": "outline", + "tags": "calls,calling,ringing,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-disconnect-duotone", + "content": "", + "style": "outline", + "tags": "calls,hang up,disconnected,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-incoming-duotone", + "content": "", + "style": "outline", + "tags": "calls,calling,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-list-duotone", + "content": "", + "style": "outline", + "tags": "*new*,calls,call-center,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-outgoing-duotone", + "content": "", + "style": "outline", + "tags": "calls,calling,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-pause-duotone", + "content": "", + "style": "outline", + "tags": "*new*,calls,hold,call-center,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-plus-duotone", + "content": "", + "style": "outline", + "tags": "calls,telephone,landline,talk,conference,add", + "set_id": 1 + }, + { + "name": "phone-slash-duotone", + "content": "", + "style": "outline", + "tags": "calls,disabled,disconnected,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-transfer-duotone", + "content": "", + "style": "outline", + "tags": "*new*,calls,call-center,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phone-x-duotone", + "content": "", + "style": "outline", + "tags": "calls,missed,errors,telephone,landline,talk", + "set_id": 1 + }, + { + "name": "phosphor-logo-duotone", + "content": "", + "style": "outline", + "tags": "logos", + "set_id": 1 + }, + { + "name": "pi-duotone", + "content": "", + "style": "outline", + "tags": "π,symbol,mathematics,circle", + "set_id": 1 + }, + { + "name": "piano-keys-duotone", + "content": "", + "style": "outline", + "tags": "music,instrument,keyboard", + "set_id": 1 + }, + { + "name": "picnic-table-duotone", + "content": "", + "style": "outline", + "tags": "*new*,bench,park,outdoors", + "set_id": 1 + }, + { + "name": "picture-in-picture-duotone", + "content": "", + "style": "outline", + "tags": "pip,pop-out,minimize,maximize", + "set_id": 1 + }, + { + "name": "piggy-bank-duotone", + "content": "", + "style": "outline", + "tags": "savings,deposit,money,coins", + "set_id": 1 + }, + { + "name": "pill-duotone", + "content": "", + "style": "outline", + "tags": "capsule,medicine,rx,pharmacy,pharmacist,pharmaceuticals,prescription,drugs", + "set_id": 1 + }, + { + "name": "ping-pong-duotone", + "content": "", + "style": "outline", + "tags": "*new*,sports,paddle", + "set_id": 1 + }, + { + "name": "pint-glass-duotone", + "content": "", + "style": "outline", + "tags": "*new*,water,beverage,drinks,beverages,food,dining", + "set_id": 1 + }, + { + "name": "pinterest-logo-duotone", + "content": "", + "style": "outline", + "tags": "logos,vision board,mood board,social media", + "set_id": 1 + }, + { + "name": "pinwheel-duotone", + "content": "", + "style": "outline", + "tags": "toys,whirligig", + "set_id": 1 + }, + { + "name": "pipe-duotone", + "content": "", + "style": "outline", + "tags": "*new*,tube,plumber,plumbing,construction", + "set_id": 1 + }, + { + "name": "pipe-wrench-duotone", + "content": "", + "style": "outline", + "tags": "*new*,plumber,plumbing,tools,construction", + "set_id": 1 + }, + { + "name": "pix-logo-duotone", + "content": "", + "style": "outline", + "tags": "*new*,payments,paying,purchase,logos", + "set_id": 1 + }, + { + "name": "pizza-duotone", + "content": "", + "style": "outline", + "tags": "fast food,party,places,locations,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "placeholder-duotone", + "content": "", + "style": "outline", + "tags": "empty,notdef,tofu,rectangle slash,missing", + "set_id": 1 + }, + { + "name": "planet-duotone", + "content": "", + "style": "outline", + "tags": "saturn,world,globe,astronomy,space", + "set_id": 1 + }, + { + "name": "plant-duotone", + "content": "", + "style": "outline", + "tags": "sprout,vegan,farm,farming,garden,gardening", + "set_id": 1 + }, + { + "name": "play-duotone", + "content": "", + "style": "outline", + "tags": "music,audio,resume,start", + "set_id": 1 + }, + { + "name": "play-circle-duotone", + "content": "", + "style": "outline", + "tags": "music,audio,resume,start,round", + "set_id": 1 + }, + { + "name": "play-pause-duotone", + "content": "", + "style": "outline", + "tags": "music,audio,resume,start,stop", + "set_id": 1 + }, + { + "name": "playlist-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,queue", + "set_id": 1 + }, + { + "name": "plug-duotone", + "content": "", + "style": "outline", + "tags": "outlet,socket,plugin,integration", + "set_id": 1 + }, + { + "name": "plug-charging-duotone", + "content": "", + "style": "outline", + "tags": "outlet,socket,plugin,integration,charge,charging", + "set_id": 1 + }, + { + "name": "plugs-duotone", + "content": "", + "style": "outline", + "tags": "outlet,socket,plugin,integration,disconnected", + "set_id": 1 + }, + { + "name": "plugs-connected-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,outlet,socket,plugin,integration", + "set_id": 1 + }, + { + "name": "plus-duotone", + "content": "", + "style": "outline", + "tags": "addition,sum,mathematics,arithmetic,calculator,+", + "set_id": 1 + }, + { + "name": "plus-circle-duotone", + "content": "", + "style": "outline", + "tags": "addition,sum,mathematics,arithmetic,calculator,round,+", + "set_id": 1 + }, + { + "name": "plus-minus-duotone", + "content": "", + "style": "outline", + "tags": "plus or minus,plus/minus,add/subtract,addition,sum,subtraction,difference,mathematics,arithmetic,calculator,+,-,±", + "set_id": 1 + }, + { + "name": "plus-square-duotone", + "content": "", + "style": "outline", + "tags": "addition,sum,mathematics,arithmetic,calculator,+", + "set_id": 1 + }, + { + "name": "poker-chip-duotone", + "content": "", + "style": "outline", + "tags": "chips,tokens,cards,gambling,casino", + "set_id": 1 + }, + { + "name": "police-car-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,vehicles,cars,automobiles,law enforcement", + "set_id": 1 + }, + { + "name": "polygon-duotone", + "content": "", + "style": "outline", + "tags": "shapes,drawing", + "set_id": 1 + }, + { + "name": "popcorn-duotone", + "content": "", + "style": "outline", + "tags": "food,movies,theater", + "set_id": 1 + }, + { + "name": "popsicle-duotone", + "content": "", + "style": "outline", + "tags": "*new*,ice cream,dessert,summer,food", + "set_id": 1 + }, + { + "name": "potted-plant-duotone", + "content": "", + "style": "outline", + "tags": "sprout,vegan,garden,gardening", + "set_id": 1 + }, + { + "name": "power-duotone", + "content": "", + "style": "outline", + "tags": "charged,charger,charging,on,off,on/off,switch,power switch", + "set_id": 1 + }, + { + "name": "prescription-duotone", + "content": "", + "style": "outline", + "tags": "rx,medicine,drugs,pharmacy,pharmacist,pharmaceuticals,doctor", + "set_id": 1 + }, + { + "name": "presentation-duotone", + "content": "", + "style": "outline", + "tags": "whiteboard,flipchart,charts,statistics,analyze,analysis,meeting", + "set_id": 1 + }, + { + "name": "presentation-chart-duotone", + "content": "", + "style": "outline", + "tags": "whiteboard,flipchart,graphs,graphing,charts,statistics,analyze,analysis,meeting", + "set_id": 1 + }, + { + "name": "printer-duotone", + "content": "", + "style": "outline", + "tags": "printing", + "set_id": 1 + }, + { + "name": "prohibit-duotone", + "content": "", + "style": "outline", + "tags": "forbidden,prohibited,cancelled,prevent,stop,do not enter", + "set_id": 1 + }, + { + "name": "prohibit-inset-duotone", + "content": "", + "style": "outline", + "tags": "forbidden,prohibited,cancelled,prevent,stop,do not enter", + "set_id": 1 + }, + { + "name": "projector-screen-duotone", + "content": "", + "style": "outline", + "tags": "projection,presentation,slideshow,movies,charts,statistics,analyze,analysis", + "set_id": 1 + }, + { + "name": "projector-screen-chart-duotone", + "content": "", + "style": "outline", + "tags": "projection,presentation,slideshow,graphs,graphing,charts,statistics,analyze,analysis", + "set_id": 1 + }, + { + "name": "pulse-duotone", + "content": "", + "style": "outline", + "tags": "activity,heartbeat,medical,ecg,ekg,vitals,monitor,medicine", + "set_id": 1 + }, + { + "name": "push-pin-duotone", + "content": "", + "style": "outline", + "tags": "favorites,favorited,pushpin", + "set_id": 1 + }, + { + "name": "push-pin-simple-duotone", + "content": "", + "style": "outline", + "tags": "favorites,favorited,pushpin", + "set_id": 1 + }, + { + "name": "push-pin-simple-slash-duotone", + "content": "", + "style": "outline", + "tags": "favorites,favorited,pushpin,disabled", + "set_id": 1 + }, + { + "name": "push-pin-slash-duotone", + "content": "", + "style": "outline", + "tags": "favorites,favorited,pushpin,disabled", + "set_id": 1 + }, + { + "name": "puzzle-piece-duotone", + "content": "", + "style": "outline", + "tags": "board game,element,component,extension,plugin", + "set_id": 1 + }, + { + "name": "qr-code-duotone", + "content": "", + "style": "outline", + "tags": "upc,barcode,products,shopping,scanner", + "set_id": 1 + }, + { + "name": "question-duotone", + "content": "", + "style": "outline", + "tags": "information,help,support,questions", + "set_id": 1 + }, + { + "name": "question-mark-duotone", + "content": "", + "style": "outline", + "tags": "*new*,?,information,help,support,questions,punctuation,symbol", + "set_id": 1 + }, + { + "name": "queue-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,playlist", + "set_id": 1 + }, + { + "name": "quotes-duotone", + "content": "", + "style": "outline", + "tags": "quoations,quotation marks,double-quotes,writing,books", + "set_id": 1 + }, + { + "name": "rabbit-duotone", + "content": "", + "style": "outline", + "tags": "*new*,hare,fast,animal", + "set_id": 1 + }, + { + "name": "racquet-duotone", + "content": "", + "style": "outline", + "tags": "*new*,sports,tennis,squash,pickleball", + "set_id": 1 + }, + { + "name": "radical-duotone", + "content": "", + "style": "outline", + "tags": "√,radix,radicand,square root,squareroot,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "radio-duotone", + "content": "", + "style": "outline", + "tags": "broadcast,fm,am,xm,transmitter,receiver", + "set_id": 1 + }, + { + "name": "radio-button-duotone", + "content": "", + "style": "outline", + "tags": "input,checkbox,checked", + "set_id": 1 + }, + { + "name": "radioactive-duotone", + "content": "", + "style": "outline", + "tags": "radiation,danger,warning,nuclear,atomic", + "set_id": 1 + }, + { + "name": "rainbow-duotone", + "content": "", + "style": "outline", + "tags": "meteorology,rainstorm,arc,pride,lgbtq+,leprechaun", + "set_id": 1 + }, + { + "name": "rainbow-cloud-duotone", + "content": "", + "style": "outline", + "tags": "meteorology,rainstorm,cloudy,partly cloudy,partly sunny,pride,lgbtq+,leprechaun", + "set_id": 1 + }, + { + "name": "ranking-duotone", + "content": "", + "style": "outline", + "tags": "*new*,medal,rank,leaderboard,winner,sports", + "set_id": 1 + }, + { + "name": "read-cv-logo-duotone", + "content": "", + "style": "outline", + "tags": "resume,jobs,logos", + "set_id": 1 + }, + { + "name": "receipt-duotone", + "content": "", + "style": "outline", + "tags": "purchase,money,clipping,expense", + "set_id": 1 + }, + { + "name": "receipt-x-duotone", + "content": "", + "style": "outline", + "tags": "purchase,money,clipping,expense,cancel", + "set_id": 1 + }, + { + "name": "record-duotone", + "content": "", + "style": "outline", + "tags": "music,audio,recording,recorder,voice memo", + "set_id": 1 + }, + { + "name": "rectangle-duotone", + "content": "", + "style": "outline", + "tags": "4,shapes,polygons,box", + "set_id": 1 + }, + { + "name": "rectangle-dashed-duotone", + "content": "", + "style": "outline", + "tags": "*new*,4,shapes,polygons,box,missing", + "set_id": 1 + }, + { + "name": "recycle-duotone", + "content": "", + "style": "outline", + "tags": "recycling,trash,environmental,green", + "set_id": 1 + }, + { + "name": "reddit-logo-duotone", + "content": "", + "style": "outline", + "tags": "logos,subreddit,snoo,social media", + "set_id": 1 + }, + { + "name": "repeat-duotone", + "content": "", + "style": "outline", + "tags": "music,audio,recycle", + "set_id": 1 + }, + { + "name": "repeat-once-duotone", + "content": "", + "style": "outline", + "tags": "music,audio,recycle", + "set_id": 1 + }, + { + "name": "replit-logo-duotone", + "content": "", + "style": "outline", + "tags": "*new*,logos,ide,editor,coding", + "set_id": 1 + }, + { + "name": "resize-duotone", + "content": "", + "style": "outline", + "tags": "*new*,maximize,expand,grow", + "set_id": 1 + }, + { + "name": "rewind-duotone", + "content": "", + "style": "outline", + "tags": "music,audio,seek,scrub,scan,skip,back,backwards,reverse", + "set_id": 1 + }, + { + "name": "rewind-circle-duotone", + "content": "", + "style": "outline", + "tags": "music,audio,seek,scrub,scan,skip,back,backwards,reverse", + "set_id": 1 + }, + { + "name": "road-horizon-duotone", + "content": "", + "style": "outline", + "tags": "trip,drive,road,travel,transportation,highway", + "set_id": 1 + }, + { + "name": "robot-duotone", + "content": "", + "style": "outline", + "tags": "automaton,artificial intelligence,ai", + "set_id": 1 + }, + { + "name": "rocket-duotone", + "content": "", + "style": "outline", + "tags": "spaceship,launch,deployment,rocketship", + "set_id": 1 + }, + { + "name": "rocket-launch-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,spaceship,flying,blastoff,deployment,rocketship", + "set_id": 1 + }, + { + "name": "rows-duotone", + "content": "", + "style": "outline", + "tags": "2,shapes,polygons,box,stack,list,table,cards", + "set_id": 1 + }, + { + "name": "rows-plus-bottom-duotone", + "content": "", + "style": "outline", + "tags": "*new*,2,shapes,polygons,box,stack,list,table,cards,prepend,insert", + "set_id": 1 + }, + { + "name": "rows-plus-top-duotone", + "content": "", + "style": "outline", + "tags": "*new*,2,shapes,polygons,box,stack,list,table,cards,prepend,insert", + "set_id": 1 + }, + { + "name": "rss-duotone", + "content": "", + "style": "outline", + "tags": "radio,broadcast,web feed,news,aggregator", + "set_id": 1 + }, + { + "name": "rss-simple-duotone", + "content": "", + "style": "outline", + "tags": "radio,broadcast,web feed,news,aggregator", + "set_id": 1 + }, + { + "name": "rug-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,tapestry,carpet", + "set_id": 1 + }, + { + "name": "ruler-duotone", + "content": "", + "style": "outline", + "tags": "measure,scale,distance", + "set_id": 1 + }, + { + "name": "sailboat-duotone", + "content": "", + "style": "outline", + "tags": "*new*,sailing,ship,vehicles,transportation,sports,places,locations", + "set_id": 1 + }, + { + "name": "scales-duotone", + "content": "", + "style": "outline", + "tags": "measure,balance,law,justice,government", + "set_id": 1 + }, + { + "name": "scan-duotone", + "content": "", + "style": "outline", + "tags": "upc,barcode,products,shopping,scanner", + "set_id": 1 + }, + { + "name": "scan-smiley-duotone", + "content": "", + "style": "outline", + "tags": "*new*,facial recognition,face unlock,scanner", + "set_id": 1 + }, + { + "name": "scissors-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,cut,snip,clipboard", + "set_id": 1 + }, + { + "name": "scooter-duotone", + "content": "", + "style": "outline", + "tags": "vehicles,transportation,travel,transit", + "set_id": 1 + }, + { + "name": "screencast-duotone", + "content": "", + "style": "outline", + "tags": "apple,airplay,screencasting,screen share,television,tv", + "set_id": 1 + }, + { + "name": "screwdriver-duotone", + "content": "", + "style": "outline", + "tags": "*new*,tools,construction,flathead,drill", + "set_id": 1 + }, + { + "name": "scribble-duotone", + "content": "", + "style": "outline", + "tags": "*new*,doodles,squiggle,drawing,sign,signature", + "set_id": 1 + }, + { + "name": "scribble-loop-duotone", + "content": "", + "style": "outline", + "tags": "doodles,drawing,sign,signature", + "set_id": 1 + }, + { + "name": "scroll-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,parchment,paper,script,spell,fantasy", + "set_id": 1 + }, + { + "name": "seal-duotone", + "content": "", + "style": "outline", + "tags": "badge,verified,verification,shapes,polygons,circle-wavy", + "set_id": 1 + }, + { + "name": "seal-check-duotone", + "content": "", + "style": "outline", + "tags": "badge,verified,verification,shapes,polygons,circle-wavy", + "set_id": 1 + }, + { + "name": "seal-percent-duotone", + "content": "", + "style": "outline", + "tags": "*new*,badge,discount,sale,shapes,polygons,circle-wavy", + "set_id": 1 + }, + { + "name": "seal-question-duotone", + "content": "", + "style": "outline", + "tags": "badge,unverified,verification,shapes,polygons,circle-wavy", + "set_id": 1 + }, + { + "name": "seal-warning-duotone", + "content": "", + "style": "outline", + "tags": "badge,unverified,verification,errors,shapes,polygons,circle-wavy", + "set_id": 1 + }, + { + "name": "seat-duotone", + "content": "", + "style": "outline", + "tags": "*new*,chair,car seat,airplane seat,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "seatbelt-duotone", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,safety", + "set_id": 1 + }, + { + "name": "security-camera-duotone", + "content": "", + "style": "outline", + "tags": "*new*,cctv,surveillance,video,monitor,motion detector,safety", + "set_id": 1 + }, + { + "name": "selection-duotone", + "content": "", + "style": "outline", + "tags": "marquis,select,square dashed", + "set_id": 1 + }, + { + "name": "selection-all-duotone", + "content": "", + "style": "outline", + "tags": "marquis,select all", + "set_id": 1 + }, + { + "name": "selection-background-duotone", + "content": "", + "style": "outline", + "tags": "marquis", + "set_id": 1 + }, + { + "name": "selection-foreground-duotone", + "content": "", + "style": "outline", + "tags": "marquis", + "set_id": 1 + }, + { + "name": "selection-inverse-duotone", + "content": "", + "style": "outline", + "tags": "marquis,invert", + "set_id": 1 + }, + { + "name": "selection-plus-duotone", + "content": "", + "style": "outline", + "tags": "marquis,add", + "set_id": 1 + }, + { + "name": "selection-slash-duotone", + "content": "", + "style": "outline", + "tags": "marquis,unselect", + "set_id": 1 + }, + { + "name": "shapes-duotone", + "content": "", + "style": "outline", + "tags": "geometry,square,circle,triangle", + "set_id": 1 + }, + { + "name": "share-duotone", + "content": "", + "style": "outline", + "tags": "send to,export,arrows", + "set_id": 1 + }, + { + "name": "share-fat-duotone", + "content": "", + "style": "outline", + "tags": "export,send to", + "set_id": 1 + }, + { + "name": "share-network-duotone", + "content": "", + "style": "outline", + "tags": "send to,export", + "set_id": 1 + }, + { + "name": "shield-duotone", + "content": "", + "style": "outline", + "tags": "badge,security,secured,defense,defended,authentication,authenticated,guarded,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "shield-check-duotone", + "content": "", + "style": "outline", + "tags": "badge,security,defense,authentication,authenticated,guarded,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "shield-checkered-duotone", + "content": "", + "style": "outline", + "tags": "badge,security,defense,authentication,authenticated,guarded,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "shield-chevron-duotone", + "content": "", + "style": "outline", + "tags": "badge,security,defense,authentication,authenticated,guarded,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "shield-plus-duotone", + "content": "", + "style": "outline", + "tags": "badge,security,defense,authentication,authenticated,guarded,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "shield-slash-duotone", + "content": "", + "style": "outline", + "tags": "badge,security,unsecured,defense,undefended,authentication,unauthenticated,unguarded,unlocked,unencrypted,encryption,disabled", + "set_id": 1 + }, + { + "name": "shield-star-duotone", + "content": "", + "style": "outline", + "tags": "badge,security,defense,authentication,authenticated,guarded,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "shield-warning-duotone", + "content": "", + "style": "outline", + "tags": "badge,security,unsecured,defense,undefended,authentication,unauthenticated,unguarded,unlocked,unencrypted,encryption,errors", + "set_id": 1 + }, + { + "name": "shipping-container-duotone", + "content": "", + "style": "outline", + "tags": "*new*,shipping,transportation,places,locations", + "set_id": 1 + }, + { + "name": "shirt-folded-duotone", + "content": "", + "style": "outline", + "tags": "clothes,clothing", + "set_id": 1 + }, + { + "name": "shooting-star-duotone", + "content": "", + "style": "outline", + "tags": "wish,comet,meteor", + "set_id": 1 + }, + { + "name": "shopping-bag-duotone", + "content": "", + "style": "outline", + "tags": "ecommerce,market,basket,cart,buying,checkout,places,locations", + "set_id": 1 + }, + { + "name": "shopping-bag-open-duotone", + "content": "", + "style": "outline", + "tags": "ecommerce,market,basket,cart,buying,checkout,places,locations", + "set_id": 1 + }, + { + "name": "shopping-cart-duotone", + "content": "", + "style": "outline", + "tags": "ecommerce,market,basket,buying,groceries,checkout,places,locations", + "set_id": 1 + }, + { + "name": "shopping-cart-simple-duotone", + "content": "", + "style": "outline", + "tags": "ecommerce,market,basket,buying,groceries,checkout,places,locations", + "set_id": 1 + }, + { + "name": "shovel-duotone", + "content": "", + "style": "outline", + "tags": "*new*,tools,digging,construction", + "set_id": 1 + }, + { + "name": "shower-duotone", + "content": "", + "style": "outline", + "tags": "bath,bathtub,bathroom,faucet", + "set_id": 1 + }, + { + "name": "shrimp-duotone", + "content": "", + "style": "outline", + "tags": "food,seafood,prawn", + "set_id": 1 + }, + { + "name": "shuffle-duotone", + "content": "", + "style": "outline", + "tags": "music,audio,randomize,crossed", + "set_id": 1 + }, + { + "name": "shuffle-angular-duotone", + "content": "", + "style": "outline", + "tags": "music,audio,randomize,crossed", + "set_id": 1 + }, + { + "name": "shuffle-simple-duotone", + "content": "", + "style": "outline", + "tags": "music,audio,randomize,crossed", + "set_id": 1 + }, + { + "name": "sidebar-duotone", + "content": "", + "style": "outline", + "tags": "left rail,wireframe,ui,interface", + "set_id": 1 + }, + { + "name": "sidebar-simple-duotone", + "content": "", + "style": "outline", + "tags": "left rail,wireframe,ui,interface", + "set_id": 1 + }, + { + "name": "sigma-duotone", + "content": "", + "style": "outline", + "tags": "σ,symbol,mathematics,sum", + "set_id": 1 + }, + { + "name": "sign-in-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,signin,login,log in,enter", + "set_id": 1 + }, + { + "name": "sign-out-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,signout,logout,log out,exit", + "set_id": 1 + }, + { + "name": "signature-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,sign,autograph,verify", + "set_id": 1 + }, + { + "name": "signpost-duotone", + "content": "", + "style": "outline", + "tags": "direction,traffic,road sign,transit,transportation", + "set_id": 1 + }, + { + "name": "sim-card-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,cellular,cellphone,mobile", + "set_id": 1 + }, + { + "name": "siren-duotone", + "content": "", + "style": "outline", + "tags": "alarm,police,lights,warning", + "set_id": 1 + }, + { + "name": "sketch-logo-duotone", + "content": "", + "style": "outline", + "tags": "drawing,art,illustration,ui,interface,prototype,prototyping,gemstone,diamond", + "set_id": 1 + }, + { + "name": "skip-back-duotone", + "content": "", + "style": "outline", + "tags": "music,audio,seek,scrub,scan,back,backwards,reverse,previous", + "set_id": 1 + }, + { + "name": "skip-back-circle-duotone", + "content": "", + "style": "outline", + "tags": "music,audio,seek,scrub,scan,back,backwards,reverse,previous", + "set_id": 1 + }, + { + "name": "skip-forward-duotone", + "content": "", + "style": "outline", + "tags": "music,audio,seek,scrub,scan,ahead,next", + "set_id": 1 + }, + { + "name": "skip-forward-circle-duotone", + "content": "", + "style": "outline", + "tags": "music,audio,seek,scrub,scan,ahead,next", + "set_id": 1 + }, + { + "name": "skull-duotone", + "content": "", + "style": "outline", + "tags": "death,dead,kill", + "set_id": 1 + }, + { + "name": "skype-logo-duotone", + "content": "", + "style": "outline", + "tags": "*new*,chat,video conference", + "set_id": 1 + }, + { + "name": "slack-logo-duotone", + "content": "", + "style": "outline", + "tags": "logos,messaging", + "set_id": 1 + }, + { + "name": "sliders-duotone", + "content": "", + "style": "outline", + "tags": "music,audio,faders,filters,equalizer,volume,settings,preferences", + "set_id": 1 + }, + { + "name": "sliders-horizontal-duotone", + "content": "", + "style": "outline", + "tags": "music,audio,faders,filters,equalizer,volume,settings,preferences", + "set_id": 1 + }, + { + "name": "slideshow-duotone", + "content": "", + "style": "outline", + "tags": "pictures,images,photography,gallery,carousel", + "set_id": 1 + }, + { + "name": "smiley-duotone", + "content": "", + "style": "outline", + "tags": "face,emoji,happy,grinning,smiling", + "set_id": 1 + }, + { + "name": "smiley-angry-duotone", + "content": "", + "style": "outline", + "tags": "face,emoji,mad,frown", + "set_id": 1 + }, + { + "name": "smiley-blank-duotone", + "content": "", + "style": "outline", + "tags": "face,emoji,unimpressed,no face", + "set_id": 1 + }, + { + "name": "smiley-meh-duotone", + "content": "", + "style": "outline", + "tags": "face,emoji,unimpressed,neutral", + "set_id": 1 + }, + { + "name": "smiley-melting-duotone", + "content": "", + "style": "outline", + "tags": "*new*,face,emoji,embarrassment,sarcasm,shame,hot,heat", + "set_id": 1 + }, + { + "name": "smiley-nervous-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,face,emoji,anxious,uncomfortable,uneasy,queasy,sick,ill", + "set_id": 1 + }, + { + "name": "smiley-sad-duotone", + "content": "", + "style": "outline", + "tags": "face,emoji,unhappy,frowning", + "set_id": 1 + }, + { + "name": "smiley-sticker-duotone", + "content": "", + "style": "outline", + "tags": "face,emoji,happy,grinning,smiling", + "set_id": 1 + }, + { + "name": "smiley-wink-duotone", + "content": "", + "style": "outline", + "tags": "face,emoji,winking,flirting,cute", + "set_id": 1 + }, + { + "name": "smiley-x-eyes-duotone", + "content": "", + "style": "outline", + "tags": "face,emoji,dead,killed,unconscious", + "set_id": 1 + }, + { + "name": "snapchat-logo-duotone", + "content": "", + "style": "outline", + "tags": "logos,messaging,social media", + "set_id": 1 + }, + { + "name": "sneaker-duotone", + "content": "", + "style": "outline", + "tags": "clothes,clothing,shoes,trainers,sports", + "set_id": 1 + }, + { + "name": "sneaker-move-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,clothes,clothing,shoes,trainers,sports", + "set_id": 1 + }, + { + "name": "snowflake-duotone", + "content": "", + "style": "outline", + "tags": "meteorology,snowy,snowing,snowstorm", + "set_id": 1 + }, + { + "name": "soccer-ball-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,sports,football,mls", + "set_id": 1 + }, + { + "name": "sock-duotone", + "content": "", + "style": "outline", + "tags": "*new*,clothes,clothing", + "set_id": 1 + }, + { + "name": "solar-panel-duotone", + "content": "", + "style": "outline", + "tags": "*new*,renewable,energy,power,electricity", + "set_id": 1 + }, + { + "name": "solar-roof-duotone", + "content": "", + "style": "outline", + "tags": "*new*,renewable,energy,power,electricity", + "set_id": 1 + }, + { + "name": "sort-ascending-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,sorted,sorting,increasing,a to z,arrows,list", + "set_id": 1 + }, + { + "name": "sort-descending-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,sorted,sorting,decreasing,z to a,arrows,list", + "set_id": 1 + }, + { + "name": "soundcloud-logo-duotone", + "content": "", + "style": "outline", + "tags": "music,social media,logos", + "set_id": 1 + }, + { + "name": "spade-duotone", + "content": "", + "style": "outline", + "tags": "spades,suits,cards,gambling,casino,gaming", + "set_id": 1 + }, + { + "name": "sparkle-duotone", + "content": "", + "style": "outline", + "tags": "star,rate,ratings,favorites,favorited", + "set_id": 1 + }, + { + "name": "speaker-hifi-duotone", + "content": "", + "style": "outline", + "tags": "music,audio,sound,stereo", + "set_id": 1 + }, + { + "name": "speaker-high-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,volume,sound", + "set_id": 1 + }, + { + "name": "speaker-low-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,volume,sound", + "set_id": 1 + }, + { + "name": "speaker-none-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,muted,volume,sound", + "set_id": 1 + }, + { + "name": "speaker-simple-high-duotone", + "content": "", + "style": "outline", + "tags": "music,audio,volume,sound", + "set_id": 1 + }, + { + "name": "speaker-simple-low-duotone", + "content": "", + "style": "outline", + "tags": "music,audio,volume,sound", + "set_id": 1 + }, + { + "name": "speaker-simple-none-duotone", + "content": "", + "style": "outline", + "tags": "music,audio,muted,volume,sound", + "set_id": 1 + }, + { + "name": "speaker-simple-slash-duotone", + "content": "", + "style": "outline", + "tags": "music,audio,muted,volume,sound,disabled", + "set_id": 1 + }, + { + "name": "speaker-simple-x-duotone", + "content": "", + "style": "outline", + "tags": "music,audio,muted,volume,sound,disabled,errors", + "set_id": 1 + }, + { + "name": "speaker-slash-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,muted,volume,sound,disabled", + "set_id": 1 + }, + { + "name": "speaker-x-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,music,audio,muted,volume,sound,disabled,errors", + "set_id": 1 + }, + { + "name": "speedometer-duotone", + "content": "", + "style": "outline", + "tags": "*new*,gauge,dashboard,meter,speed,odometer,performance", + "set_id": 1 + }, + { + "name": "sphere-duotone", + "content": "", + "style": "outline", + "tags": "*new*,circle,ball,3d,mesh,cad,model", + "set_id": 1 + }, + { + "name": "spinner-duotone", + "content": "", + "style": "outline", + "tags": "loading,loader,waiting,progress", + "set_id": 1 + }, + { + "name": "spinner-ball-duotone", + "content": "", + "style": "outline", + "tags": "*new*,loading,loader,waiting,progress", + "set_id": 1 + }, + { + "name": "spinner-gap-duotone", + "content": "", + "style": "outline", + "tags": "loading,loader,waiting,progress", + "set_id": 1 + }, + { + "name": "spiral-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,spin,rotate,dizzy", + "set_id": 1 + }, + { + "name": "split-horizontal-duotone", + "content": "", + "style": "outline", + "tags": "resize,columns", + "set_id": 1 + }, + { + "name": "split-vertical-duotone", + "content": "", + "style": "outline", + "tags": "resize,rows", + "set_id": 1 + }, + { + "name": "spotify-logo-duotone", + "content": "", + "style": "outline", + "tags": "music,player,streaming", + "set_id": 1 + }, + { + "name": "spray-bottle-duotone", + "content": "", + "style": "outline", + "tags": "*new*,cleaner,cleaning", + "set_id": 1 + }, + { + "name": "square-duotone", + "content": "", + "style": "outline", + "tags": "4,shapes,polygons,box", + "set_id": 1 + }, + { + "name": "square-half-duotone", + "content": "", + "style": "outline", + "tags": "4,shapes,polygons,box,columns,sidebar,split vertical", + "set_id": 1 + }, + { + "name": "square-half-bottom-duotone", + "content": "", + "style": "outline", + "tags": "4,shapes,polygons,box,columns,sidebar,split vertical", + "set_id": 1 + }, + { + "name": "square-logo-duotone", + "content": "", + "style": "outline", + "tags": "squareup,payment", + "set_id": 1 + }, + { + "name": "square-split-horizontal-duotone", + "content": "", + "style": "outline", + "tags": "shapes,polygons,columns", + "set_id": 1 + }, + { + "name": "square-split-vertical-duotone", + "content": "", + "style": "outline", + "tags": "shapes,polygons,rows", + "set_id": 1 + }, + { + "name": "squares-four-duotone", + "content": "", + "style": "outline", + "tags": "4,shapes,polygons,apps,applications,grid,table,microsoft,logos", + "set_id": 1 + }, + { + "name": "stack-duotone", + "content": "", + "style": "outline", + "tags": "cards,layers", + "set_id": 1 + }, + { + "name": "stack-minus-duotone", + "content": "", + "style": "outline", + "tags": "*new*,cards,layers,remove,delete", + "set_id": 1 + }, + { + "name": "stack-overflow-logo-duotone", + "content": "", + "style": "outline", + "tags": "logos,code", + "set_id": 1 + }, + { + "name": "stack-plus-duotone", + "content": "", + "style": "outline", + "tags": "*new*,cards,layers,add", + "set_id": 1 + }, + { + "name": "stack-simple-duotone", + "content": "", + "style": "outline", + "tags": "cards,layers", + "set_id": 1 + }, + { + "name": "stairs-duotone", + "content": "", + "style": "outline", + "tags": "staircase,steps,escalator,exit,signs", + "set_id": 1 + }, + { + "name": "stamp-duotone", + "content": "", + "style": "outline", + "tags": "clone,seal,official", + "set_id": 1 + }, + { + "name": "standard-definition-duotone", + "content": "", + "style": "outline", + "tags": "*new*,sd,resolution,video", + "set_id": 1 + }, + { + "name": "star-duotone", + "content": "", + "style": "outline", + "tags": "rate,ratings,favorites,favorited", + "set_id": 1 + }, + { + "name": "star-and-crescent-duotone", + "content": "", + "style": "outline", + "tags": "islam,muslim,moon,religion,worship,symbol", + "set_id": 1 + }, + { + "name": "star-four-duotone", + "content": "", + "style": "outline", + "tags": "rate,ratings,favorites,favorited", + "set_id": 1 + }, + { + "name": "star-half-duotone", + "content": "", + "style": "outline", + "tags": "rate,ratings", + "set_id": 1 + }, + { + "name": "star-of-david-duotone", + "content": "", + "style": "outline", + "tags": "judaism,jewish,hexagram,religion,worship,symbol", + "set_id": 1 + }, + { + "name": "steam-logo-duotone", + "content": "", + "style": "outline", + "tags": "*new*,gaming,games", + "set_id": 1 + }, + { + "name": "steering-wheel-duotone", + "content": "", + "style": "outline", + "tags": "cars,vehicles,automobiles,driving", + "set_id": 1 + }, + { + "name": "steps-duotone", + "content": "", + "style": "outline", + "tags": "stairs,staircase,exit,signs", + "set_id": 1 + }, + { + "name": "stethoscope-duotone", + "content": "", + "style": "outline", + "tags": "hospital,medical,medicine,injury,safety,emergency,doctor,heart", + "set_id": 1 + }, + { + "name": "sticker-duotone", + "content": "", + "style": "outline", + "tags": "stickers,sticker pack,labels", + "set_id": 1 + }, + { + "name": "stool-duotone", + "content": "", + "style": "outline", + "tags": "chair,seat,furniture", + "set_id": 1 + }, + { + "name": "stop-duotone", + "content": "", + "style": "outline", + "tags": "music,audio", + "set_id": 1 + }, + { + "name": "stop-circle-duotone", + "content": "", + "style": "outline", + "tags": "music,audio,round", + "set_id": 1 + }, + { + "name": "storefront-duotone", + "content": "", + "style": "outline", + "tags": "shops,shopping,markets,stores,buildings,places,locations", + "set_id": 1 + }, + { + "name": "strategy-duotone", + "content": "", + "style": "outline", + "tags": "sports,strategem,plan,tic-tac-toe", + "set_id": 1 + }, + { + "name": "stripe-logo-duotone", + "content": "", + "style": "outline", + "tags": "payment", + "set_id": 1 + }, + { + "name": "student-duotone", + "content": "", + "style": "outline", + "tags": "pupil,graduate,classroom,teacher,education,school,college,university", + "set_id": 1 + }, + { + "name": "subset-of-duotone", + "content": "", + "style": "outline", + "tags": "*new*,⊆,subset of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "subset-proper-of-duotone", + "content": "", + "style": "outline", + "tags": "*new*,⊂,proper subset of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "subtitles-duotone", + "content": "", + "style": "outline", + "tags": "subtitles,television,tv,transcribed,transcription,accessibility,a11y", + "set_id": 1 + }, + { + "name": "subtitles-slash-duotone", + "content": "", + "style": "outline", + "tags": "*new*,subtitles,television,tv,transcribed,transcription,accessibility,a11y,disabled", + "set_id": 1 + }, + { + "name": "subtract-duotone", + "content": "", + "style": "outline", + "tags": "boolean,intersection,combine,split,merge,union", + "set_id": 1 + }, + { + "name": "subtract-square-duotone", + "content": "", + "style": "outline", + "tags": "boolean,intersection,combine,split,merge,union", + "set_id": 1 + }, + { + "name": "subway-duotone", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,underground,train,tunnel,metro,light rail,public transit,transportation,commuter,traveling,places,locations", + "set_id": 1 + }, + { + "name": "suitcase-duotone", + "content": "", + "style": "outline", + "tags": "briefcase,valise,baggage,folders,portfolio", + "set_id": 1 + }, + { + "name": "suitcase-rolling-duotone", + "content": "", + "style": "outline", + "tags": "suitcase,luggage,travel,transportation", + "set_id": 1 + }, + { + "name": "suitcase-simple-duotone", + "content": "", + "style": "outline", + "tags": "briefcase,valise,baggage,folders,portfolio", + "set_id": 1 + }, + { + "name": "sun-duotone", + "content": "", + "style": "outline", + "tags": "day,daytime,daylight,clear,sunny,sunshine,light mode,brightness,lighten,brighten", + "set_id": 1 + }, + { + "name": "sun-dim-duotone", + "content": "", + "style": "outline", + "tags": "day,daytime,daylight,clear,sunny,sunshine,light mode,brightness,darken", + "set_id": 1 + }, + { + "name": "sun-horizon-duotone", + "content": "", + "style": "outline", + "tags": "day,daytime,daylight,clear,sunny,sunshine,sunrise,sunset", + "set_id": 1 + }, + { + "name": "sunglasses-duotone", + "content": "", + "style": "outline", + "tags": "vision,sun,spectacles", + "set_id": 1 + }, + { + "name": "superset-of-duotone", + "content": "", + "style": "outline", + "tags": "*new*,⊇,superset of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "superset-proper-of-duotone", + "content": "", + "style": "outline", + "tags": "*new*,⊃,proper superset of,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "swap-duotone", + "content": "", + "style": "outline", + "tags": "layers,replace,exchange,reverse", + "set_id": 1 + }, + { + "name": "swatches-duotone", + "content": "", + "style": "outline", + "tags": "colors,color picker,samples,pantone", + "set_id": 1 + }, + { + "name": "swimming-pool-duotone", + "content": "", + "style": "outline", + "tags": "swim,sports,exercise,olympics,aquatics", + "set_id": 1 + }, + { + "name": "sword-duotone", + "content": "", + "style": "outline", + "tags": "weapon,knife,dagger,gladius,video games,rpg,gaming,war", + "set_id": 1 + }, + { + "name": "synagogue-duotone", + "content": "", + "style": "outline", + "tags": "jewish,judaism,temple,religion,worship", + "set_id": 1 + }, + { + "name": "syringe-duotone", + "content": "", + "style": "outline", + "tags": "needle,hypodermic,vaccine,medicine,doctor,shot,hospital", + "set_id": 1 + }, + { + "name": "t-shirt-duotone", + "content": "", + "style": "outline", + "tags": "clothes,clothing", + "set_id": 1 + }, + { + "name": "table-duotone", + "content": "", + "style": "outline", + "tags": "tables,tabular,speadsheets,excel,grid,form", + "set_id": 1 + }, + { + "name": "tabs-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,browser,window,folders,files", + "set_id": 1 + }, + { + "name": "tag-duotone", + "content": "", + "style": "outline", + "tags": "tags,hashtag,labels,sale,sell,price,discount", + "set_id": 1 + }, + { + "name": "tag-chevron-duotone", + "content": "", + "style": "outline", + "tags": "tags,hashtag,labels,sale", + "set_id": 1 + }, + { + "name": "tag-simple-duotone", + "content": "", + "style": "outline", + "tags": "tags,hashtag,labels,sale,sell,price,discount", + "set_id": 1 + }, + { + "name": "target-duotone", + "content": "", + "style": "outline", + "tags": "bullseye,radar,archery,accuracy,precision", + "set_id": 1 + }, + { + "name": "taxi-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,vehicles,cars,automobiles,livery,limousine,uber", + "set_id": 1 + }, + { + "name": "tea-bag-duotone", + "content": "", + "style": "outline", + "tags": "*new*,drinks,beverages,sachet,caffeine,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "telegram-logo-duotone", + "content": "", + "style": "outline", + "tags": "logos,messages,messaging", + "set_id": 1 + }, + { + "name": "television-duotone", + "content": "", + "style": "outline", + "tags": "screen,tv,displays", + "set_id": 1 + }, + { + "name": "television-simple-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,screen,tv,displays", + "set_id": 1 + }, + { + "name": "tennis-ball-duotone", + "content": "", + "style": "outline", + "tags": "sports,mlb", + "set_id": 1 + }, + { + "name": "tent-duotone", + "content": "", + "style": "outline", + "tags": "camping,outdoors,tarp", + "set_id": 1 + }, + { + "name": "terminal-duotone", + "content": "", + "style": "outline", + "tags": "command line,cli,bash,shell,caret,console", + "set_id": 1 + }, + { + "name": "terminal-window-duotone", + "content": "", + "style": "outline", + "tags": "command line,cli,bash,shell,caret,console", + "set_id": 1 + }, + { + "name": "test-tube-duotone", + "content": "", + "style": "outline", + "tags": "science,chemistry,experiment,vial", + "set_id": 1 + }, + { + "name": "text-a-underline-duotone", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font,underscore,emphasis", + "set_id": 1 + }, + { + "name": "text-aa-duotone", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font", + "set_id": 1 + }, + { + "name": "text-align-center-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,typography,print,font,alignment,centered", + "set_id": 1 + }, + { + "name": "text-align-justify-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,typography,print,font,alignment,justified", + "set_id": 1 + }, + { + "name": "text-align-left-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,typography,print,font,alignment,flush left", + "set_id": 1 + }, + { + "name": "text-align-right-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,typography,print,font,alignment,flush right", + "set_id": 1 + }, + { + "name": "text-b-duotone", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font,bold,boldface,emphasis", + "set_id": 1 + }, + { + "name": "text-columns-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,typography,print,font,alignment,article", + "set_id": 1 + }, + { + "name": "text-h-duotone", + "content": "", + "style": "outline", + "tags": "heading,typography,print", + "set_id": 1 + }, + { + "name": "text-h-five-duotone", + "content": "", + "style": "outline", + "tags": "heading,h5,typography,print", + "set_id": 1 + }, + { + "name": "text-h-four-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,heading,h4,typography,print", + "set_id": 1 + }, + { + "name": "text-h-one-duotone", + "content": "", + "style": "outline", + "tags": "heading,h1,typography,print", + "set_id": 1 + }, + { + "name": "text-h-six-duotone", + "content": "", + "style": "outline", + "tags": "heading,h6,typography,print", + "set_id": 1 + }, + { + "name": "text-h-three-duotone", + "content": "", + "style": "outline", + "tags": "heading,h3,typography,print", + "set_id": 1 + }, + { + "name": "text-h-two-duotone", + "content": "", + "style": "outline", + "tags": "heading,h2,typography,print", + "set_id": 1 + }, + { + "name": "text-indent-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,alignment,tab,menu", + "set_id": 1 + }, + { + "name": "text-italic-duotone", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font,slant,oblique,stress,emphasis,calligraphy", + "set_id": 1 + }, + { + "name": "text-outdent-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,alignment,tab,unindent,dedent,menu", + "set_id": 1 + }, + { + "name": "text-strikethrough-duotone", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font,struck,remove,delete,change", + "set_id": 1 + }, + { + "name": "text-subscript-duotone", + "content": "", + "style": "outline", + "tags": "*new*,typography,font,formatting,mathematics,power,exponent,calculator", + "set_id": 1 + }, + { + "name": "text-superscript-duotone", + "content": "", + "style": "outline", + "tags": "*new*,typography,font,formatting,mathematics,calculator", + "set_id": 1 + }, + { + "name": "text-t-duotone", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font", + "set_id": 1 + }, + { + "name": "text-t-slash-duotone", + "content": "", + "style": "outline", + "tags": "*new*,typography,typeface,print,font,formatting,clear", + "set_id": 1 + }, + { + "name": "text-underline-duotone", + "content": "", + "style": "outline", + "tags": "typography,typeface,print,font,underscore,emphasis", + "set_id": 1 + }, + { + "name": "textbox-duotone", + "content": "", + "style": "outline", + "tags": "input,cursor,field", + "set_id": 1 + }, + { + "name": "thermometer-duotone", + "content": "", + "style": "outline", + "tags": "meteorology,temperature,degrees,°,celcius,centigrade,kelvin,fahrenheit,hot,warm,cold", + "set_id": 1 + }, + { + "name": "thermometer-cold-duotone", + "content": "", + "style": "outline", + "tags": "meteorology,temperature,degrees,°,celcius,centigrade,kelvin,fahrenheit", + "set_id": 1 + }, + { + "name": "thermometer-hot-duotone", + "content": "", + "style": "outline", + "tags": "meteorology,temperature,degrees,°,celcius,centigrade,kelvin,fahrenheit,warm", + "set_id": 1 + }, + { + "name": "thermometer-simple-duotone", + "content": "", + "style": "outline", + "tags": "meteorology,temperature,degrees,°,celcius,centigrade,kelvin,fahrenheit,hot,warm,cold", + "set_id": 1 + }, + { + "name": "threads-logo-duotone", + "content": "", + "style": "outline", + "tags": "*new*,meta,instagram,social media", + "set_id": 1 + }, + { + "name": "three-d-duotone", + "content": "", + "style": "outline", + "tags": "*new*,3d,cad,model", + "set_id": 1 + }, + { + "name": "thumbs-down-duotone", + "content": "", + "style": "outline", + "tags": "dislike,hate,emoji,no", + "set_id": 1 + }, + { + "name": "thumbs-up-duotone", + "content": "", + "style": "outline", + "tags": "like,love,favorited,favorites,emoji,yes", + "set_id": 1 + }, + { + "name": "ticket-duotone", + "content": "", + "style": "outline", + "tags": "ticketstub,movie ticket,entry,admissions,events", + "set_id": 1 + }, + { + "name": "tidal-logo-duotone", + "content": "", + "style": "outline", + "tags": "music,logos", + "set_id": 1 + }, + { + "name": "tiktok-logo-duotone", + "content": "", + "style": "outline", + "tags": "logos,social media", + "set_id": 1 + }, + { + "name": "tilde-duotone", + "content": "", + "style": "outline", + "tags": "*new*,~,∼,proportional,comparison,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "timer-duotone", + "content": "", + "style": "outline", + "tags": "clock,alarm,schedule,events,stopwatch,sports", + "set_id": 1 + }, + { + "name": "tip-jar-duotone", + "content": "", + "style": "outline", + "tags": "*new*,give,deposit,donation,savings,money", + "set_id": 1 + }, + { + "name": "tipi-duotone", + "content": "", + "style": "outline", + "tags": "teepee,lodge,tent,outdoors,camping,tarp", + "set_id": 1 + }, + { + "name": "tire-duotone", + "content": "", + "style": "outline", + "tags": "*new*,wheel,vehicles,transportation", + "set_id": 1 + }, + { + "name": "toggle-left-duotone", + "content": "", + "style": "outline", + "tags": "switch,controls,settings,preferences", + "set_id": 1 + }, + { + "name": "toggle-right-duotone", + "content": "", + "style": "outline", + "tags": "switch,controls,settings,preferences", + "set_id": 1 + }, + { + "name": "toilet-duotone", + "content": "", + "style": "outline", + "tags": "bathroom,restroom,lavatory,water closet", + "set_id": 1 + }, + { + "name": "toilet-paper-duotone", + "content": "", + "style": "outline", + "tags": "bathroom,restroom,lavatory,water closet", + "set_id": 1 + }, + { + "name": "toolbox-duotone", + "content": "", + "style": "outline", + "tags": "tools,carpentry,construction", + "set_id": 1 + }, + { + "name": "tooth-duotone", + "content": "", + "style": "outline", + "tags": "teeth,dentistry,medical,medicine,doctor,cavity", + "set_id": 1 + }, + { + "name": "tornado-duotone", + "content": "", + "style": "outline", + "tags": "*new*,meteorology,twister,storm,wind,disaster", + "set_id": 1 + }, + { + "name": "tote-duotone", + "content": "", + "style": "outline", + "tags": "suitcases,valises,baggage,tote-bag,portfolios", + "set_id": 1 + }, + { + "name": "tote-simple-duotone", + "content": "", + "style": "outline", + "tags": "suitcases,valises,baggage,tote-bag,portfolios", + "set_id": 1 + }, + { + "name": "towel-duotone", + "content": "", + "style": "outline", + "tags": "*new*,clothing,linen,hotel,beach,pool,swimming,shower,bath", + "set_id": 1 + }, + { + "name": "tractor-duotone", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,farmer,field,farming,agriculture", + "set_id": 1 + }, + { + "name": "trademark-duotone", + "content": "", + "style": "outline", + "tags": "tm,®,™,intellectual property", + "set_id": 1 + }, + { + "name": "trademark-registered-duotone", + "content": "", + "style": "outline", + "tags": "®,™,intellectual property", + "set_id": 1 + }, + { + "name": "traffic-cone-duotone", + "content": "", + "style": "outline", + "tags": "pylon,safety,transit,transportation", + "set_id": 1 + }, + { + "name": "traffic-sign-duotone", + "content": "", + "style": "outline", + "tags": "road signs,transit,transportation", + "set_id": 1 + }, + { + "name": "traffic-signal-duotone", + "content": "", + "style": "outline", + "tags": "stop light,safety,transit,transportation", + "set_id": 1 + }, + { + "name": "train-duotone", + "content": "", + "style": "outline", + "tags": "vehicles,subway,light rail,public transit,transportation,commuter,traveling,places,locations", + "set_id": 1 + }, + { + "name": "train-regional-duotone", + "content": "", + "style": "outline", + "tags": "vehicles,subway,railroad,public transit,transportation,commuter,freight,shipping,traveling,places,locations", + "set_id": 1 + }, + { + "name": "train-simple-duotone", + "content": "", + "style": "outline", + "tags": "vehicles,subway,light rail,public transit,transportation,commuter,traveling,places,locations", + "set_id": 1 + }, + { + "name": "tram-duotone", + "content": "", + "style": "outline", + "tags": "vehicles,subway,railroad,public transit,transportation,commuter,light rail,shipping,traveling,places,locations", + "set_id": 1 + }, + { + "name": "translate-duotone", + "content": "", + "style": "outline", + "tags": "translation,languages,internationalization,i18n,speech", + "set_id": 1 + }, + { + "name": "trash-duotone", + "content": "", + "style": "outline", + "tags": "garbage,remove,delete,destroy,recycle,recycling", + "set_id": 1 + }, + { + "name": "trash-simple-duotone", + "content": "", + "style": "outline", + "tags": "garbage,remove,delete,destroy,recycle,recycling", + "set_id": 1 + }, + { + "name": "tray-duotone", + "content": "", + "style": "outline", + "tags": "inbox,mailbox,bin", + "set_id": 1 + }, + { + "name": "tray-arrow-down-duotone", + "content": "", + "style": "outline", + "tags": "inbox,saved,saving,archived,archiving,archival,downloaded,downloading", + "set_id": 1 + }, + { + "name": "tray-arrow-up-duotone", + "content": "", + "style": "outline", + "tags": "*new*,outbox,archival,unarchive,uploaded,uploading", + "set_id": 1 + }, + { + "name": "treasure-chest-duotone", + "content": "", + "style": "outline", + "tags": "*new*,loot,lootbox,inventory,rewards,gaming,pirate", + "set_id": 1 + }, + { + "name": "tree-duotone", + "content": "", + "style": "outline", + "tags": "plants,branches,leaves,green,environmental", + "set_id": 1 + }, + { + "name": "tree-evergreen-duotone", + "content": "", + "style": "outline", + "tags": "plants,branches,leaves,pine,conifer,green,environmental", + "set_id": 1 + }, + { + "name": "tree-palm-duotone", + "content": "", + "style": "outline", + "tags": "tropical,beach,plants,branches,leaves,green,environmental", + "set_id": 1 + }, + { + "name": "tree-structure-duotone", + "content": "", + "style": "outline", + "tags": "data structures,family tree,genealogy,hierarchy,taxonomy,charts,flowchart", + "set_id": 1 + }, + { + "name": "tree-view-duotone", + "content": "", + "style": "outline", + "tags": "*new*,hierarchy", + "set_id": 1 + }, + { + "name": "trend-down-duotone", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,analyze,analysis,decrease,arrows", + "set_id": 1 + }, + { + "name": "trend-up-duotone", + "content": "", + "style": "outline", + "tags": "graphs,graphing,charts,statistics,analyze,analysis,increase,arrows", + "set_id": 1 + }, + { + "name": "triangle-duotone", + "content": "", + "style": "outline", + "tags": "3,shapes,polygons", + "set_id": 1 + }, + { + "name": "triangle-dashed-duotone", + "content": "", + "style": "outline", + "tags": "*new*,3,shapes,polygons,missing", + "set_id": 1 + }, + { + "name": "trolley-duotone", + "content": "", + "style": "outline", + "tags": "*new*,airport,briefcase,valise,baggage", + "set_id": 1 + }, + { + "name": "trolley-suitcase-duotone", + "content": "", + "style": "outline", + "tags": "*new*,airport,briefcase,valise,baggage", + "set_id": 1 + }, + { + "name": "trophy-duotone", + "content": "", + "style": "outline", + "tags": "ribbons,medals,winning,victory,awards,prize", + "set_id": 1 + }, + { + "name": "truck-duotone", + "content": "", + "style": "outline", + "tags": "trucks,cars,vehicles,automobile,shipping,delivery", + "set_id": 1 + }, + { + "name": "truck-trailer-duotone", + "content": "", + "style": "outline", + "tags": "*new*,vehicles,automobile,shipping,tractor,semi", + "set_id": 1 + }, + { + "name": "tumblr-logo-duotone", + "content": "", + "style": "outline", + "tags": "*new*,social media,logos", + "set_id": 1 + }, + { + "name": "twitch-logo-duotone", + "content": "", + "style": "outline", + "tags": "logos,streaming,livestream,gaming,video games,social media", + "set_id": 1 + }, + { + "name": "twitter-logo-duotone", + "content": "", + "style": "outline", + "tags": "logos,social media,tweets,birds", + "set_id": 1 + }, + { + "name": "umbrella-duotone", + "content": "", + "style": "outline", + "tags": "raining,rainy,insurance", + "set_id": 1 + }, + { + "name": "umbrella-simple-duotone", + "content": "", + "style": "outline", + "tags": "raining,rainy,insurance", + "set_id": 1 + }, + { + "name": "union-duotone", + "content": "", + "style": "outline", + "tags": "*new*,∪,union,set,member,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "unite-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,round,join,union,merge,combine,intersecting,intersection", + "set_id": 1 + }, + { + "name": "unite-square-duotone", + "content": "", + "style": "outline", + "tags": "join,union,merge,combine,intersecting,intersection", + "set_id": 1 + }, + { + "name": "upload-duotone", + "content": "", + "style": "outline", + "tags": "saved,saving,archived,archiving,archival,uploaded,uploading,hard drive,disk", + "set_id": 1 + }, + { + "name": "upload-simple-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,saved,saving,archived,archiving,archival,uploaded,uploading,hard drive,disk", + "set_id": 1 + }, + { + "name": "usb-duotone", + "content": "", + "style": "outline", + "tags": "serial,port,plug,peripheral,device", + "set_id": 1 + }, + { + "name": "user-duotone", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,login", + "set_id": 1 + }, + { + "name": "user-check-duotone", + "content": "", + "style": "outline", + "tags": "*new*,person,users,profile,account,contact,login,verified", + "set_id": 1 + }, + { + "name": "user-circle-duotone", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,login", + "set_id": 1 + }, + { + "name": "user-circle-check-duotone", + "content": "", + "style": "outline", + "tags": "*new*,person,users,profile,account,contact,login,verified", + "set_id": 1 + }, + { + "name": "user-circle-dashed-duotone", + "content": "", + "style": "outline", + "tags": "*new*,person,users,profile,account,contact,login,pending,missing,removed", + "set_id": 1 + }, + { + "name": "user-circle-gear-duotone", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,settings,preferences", + "set_id": 1 + }, + { + "name": "user-circle-minus-duotone", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,delete,remove,-", + "set_id": 1 + }, + { + "name": "user-circle-plus-duotone", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,add,create,+", + "set_id": 1 + }, + { + "name": "user-focus-duotone", + "content": "", + "style": "outline", + "tags": "identification,biometrics,facial recognition,profile,person,account,autofocus", + "set_id": 1 + }, + { + "name": "user-gear-duotone", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,settings,preferences", + "set_id": 1 + }, + { + "name": "user-list-duotone", + "content": "", + "style": "outline", + "tags": "person,users,profiles,accounts,members,address book", + "set_id": 1 + }, + { + "name": "user-minus-duotone", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,delete,remove,-", + "set_id": 1 + }, + { + "name": "user-plus-duotone", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,add,create,+", + "set_id": 1 + }, + { + "name": "user-rectangle-duotone", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,login", + "set_id": 1 + }, + { + "name": "user-sound-duotone", + "content": "", + "style": "outline", + "tags": "*new*,person,users,profile,speech,speaking,voice", + "set_id": 1 + }, + { + "name": "user-square-duotone", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,contact,login", + "set_id": 1 + }, + { + "name": "user-switch-duotone", + "content": "", + "style": "outline", + "tags": "person,users,profile,account,login,logout,signin,signout,settings,preferences", + "set_id": 1 + }, + { + "name": "users-duotone", + "content": "", + "style": "outline", + "tags": "user,group,team,people,profiles,accounts,contacts", + "set_id": 1 + }, + { + "name": "users-four-duotone", + "content": "", + "style": "outline", + "tags": "user,group,team,department,community,people,profiles,accounts,contacts", + "set_id": 1 + }, + { + "name": "users-three-duotone", + "content": "", + "style": "outline", + "tags": "user,group,team,community,people,profiles,accounts,contacts", + "set_id": 1 + }, + { + "name": "van-duotone", + "content": "", + "style": "outline", + "tags": "westfalia,microbus,vanagon,cars,vehicles,automobile,transit,transportation,traveling", + "set_id": 1 + }, + { + "name": "vault-duotone", + "content": "", + "style": "outline", + "tags": "safe,bank,security,secured,authentication,authenticated,locked,encrypted,encryption", + "set_id": 1 + }, + { + "name": "vector-three-duotone", + "content": "", + "style": "outline", + "tags": "*new*,3d,xyz,cartesian,coordinates,plane,volume,dimensions,mathematics", + "set_id": 1 + }, + { + "name": "vector-two-duotone", + "content": "", + "style": "outline", + "tags": "*new*,2d,xy,cartesian,coordinates,plane,dimensions,mathematics", + "set_id": 1 + }, + { + "name": "vibrate-duotone", + "content": "", + "style": "outline", + "tags": "audio,volume,viration,ringer,calls,silent,silenced", + "set_id": 1 + }, + { + "name": "video-duotone", + "content": "", + "style": "outline", + "tags": "training,course,education,tutorial", + "set_id": 1 + }, + { + "name": "video-camera-duotone", + "content": "", + "style": "outline", + "tags": "videography,films,movies,recording", + "set_id": 1 + }, + { + "name": "video-camera-slash-duotone", + "content": "", + "style": "outline", + "tags": "videography,films,movies,recording,disabled", + "set_id": 1 + }, + { + "name": "video-conference-duotone", + "content": "", + "style": "outline", + "tags": "*new*,video call,zoom,skype,discord,facetime,meeting", + "set_id": 1 + }, + { + "name": "vignette-duotone", + "content": "", + "style": "outline", + "tags": "photography,darkroom,movie,analog", + "set_id": 1 + }, + { + "name": "vinyl-record-duotone", + "content": "", + "style": "outline", + "tags": "recording,audio,album,music,ep,lp", + "set_id": 1 + }, + { + "name": "virtual-reality-duotone", + "content": "", + "style": "outline", + "tags": "virtual reality,vr,headset,metaverse", + "set_id": 1 + }, + { + "name": "virus-duotone", + "content": "", + "style": "outline", + "tags": "germs,disease,illness", + "set_id": 1 + }, + { + "name": "visor-duotone", + "content": "", + "style": "outline", + "tags": "*new*,goggles,vision", + "set_id": 1 + }, + { + "name": "voicemail-duotone", + "content": "", + "style": "outline", + "tags": "phonecalls,missed,recording,telephone,landline", + "set_id": 1 + }, + { + "name": "volleyball-duotone", + "content": "", + "style": "outline", + "tags": "sports", + "set_id": 1 + }, + { + "name": "wall-duotone", + "content": "", + "style": "outline", + "tags": "firewall,security,secured,blocks,bricks", + "set_id": 1 + }, + { + "name": "wallet-duotone", + "content": "", + "style": "outline", + "tags": "money,payment,paying,purchase", + "set_id": 1 + }, + { + "name": "warehouse-duotone", + "content": "", + "style": "outline", + "tags": "storage,industry,manufacture,buildings,places,locations", + "set_id": 1 + }, + { + "name": "warning-duotone", + "content": "", + "style": "outline", + "tags": "alert,danger,dangerous,caution,errors", + "set_id": 1 + }, + { + "name": "warning-circle-duotone", + "content": "", + "style": "outline", + "tags": "alert,danger,dangerous,caution,errors,round", + "set_id": 1 + }, + { + "name": "warning-diamond-duotone", + "content": "", + "style": "outline", + "tags": "alert,danger,dangerous,caution,errors", + "set_id": 1 + }, + { + "name": "warning-octagon-duotone", + "content": "", + "style": "outline", + "tags": "alert,danger,dangerous,caution,errors,8,eight", + "set_id": 1 + }, + { + "name": "washing-machine-duotone", + "content": "", + "style": "outline", + "tags": "*new*,clothing,laundry,cleaning", + "set_id": 1 + }, + { + "name": "watch-duotone", + "content": "", + "style": "outline", + "tags": "times,timer,alarm,schedule,events,clock,wristwatch,wearable", + "set_id": 1 + }, + { + "name": "wave-sawtooth-duotone", + "content": "", + "style": "outline", + "tags": "synth,synthesizer,sound,audio,music,waveform", + "set_id": 1 + }, + { + "name": "wave-sine-duotone", + "content": "", + "style": "outline", + "tags": "synth,synthesizer,sound,audio,music,waveform", + "set_id": 1 + }, + { + "name": "wave-square-duotone", + "content": "", + "style": "outline", + "tags": "synth,synthesizer,sound,audio,music,waveform", + "set_id": 1 + }, + { + "name": "wave-triangle-duotone", + "content": "", + "style": "outline", + "tags": "synth,synthesizer,sound,audio,music,waveform", + "set_id": 1 + }, + { + "name": "waveform-duotone", + "content": "", + "style": "outline", + "tags": "*updated*,audio,sound,spectrum,spectrograph,music", + "set_id": 1 + }, + { + "name": "waveform-slash-duotone", + "content": "", + "style": "outline", + "tags": "*new*,audio,sound,spectrum,spectrograph,music", + "set_id": 1 + }, + { + "name": "waves-duotone", + "content": "", + "style": "outline", + "tags": "ocean,tides,surf", + "set_id": 1 + }, + { + "name": "webcam-duotone", + "content": "", + "style": "outline", + "tags": "camera,video conference", + "set_id": 1 + }, + { + "name": "webcam-slash-duotone", + "content": "", + "style": "outline", + "tags": "camera,video conference", + "set_id": 1 + }, + { + "name": "webhooks-logo-duotone", + "content": "", + "style": "outline", + "tags": "api", + "set_id": 1 + }, + { + "name": "wechat-logo-duotone", + "content": "", + "style": "outline", + "tags": "weixin,logos", + "set_id": 1 + }, + { + "name": "whatsapp-logo-duotone", + "content": "", + "style": "outline", + "tags": "logos,messages,messaging", + "set_id": 1 + }, + { + "name": "wheelchair-duotone", + "content": "", + "style": "outline", + "tags": "handicapped,medical,disabled,differently abled,accessible,accessibility,a11y", + "set_id": 1 + }, + { + "name": "wheelchair-motion-duotone", + "content": "", + "style": "outline", + "tags": "handicapped,medical,disabled,differently abled,accessible,accessibility,a11y", + "set_id": 1 + }, + { + "name": "wifi-high-duotone", + "content": "", + "style": "outline", + "tags": "wireless,internet,network,connection,connectivity", + "set_id": 1 + }, + { + "name": "wifi-low-duotone", + "content": "", + "style": "outline", + "tags": "wireless,internet,network,connection,connectivity", + "set_id": 1 + }, + { + "name": "wifi-medium-duotone", + "content": "", + "style": "outline", + "tags": "wireless,internet,network,connection,connectivity", + "set_id": 1 + }, + { + "name": "wifi-none-duotone", + "content": "", + "style": "outline", + "tags": "wireless,internet,network,connection,connectivity", + "set_id": 1 + }, + { + "name": "wifi-slash-duotone", + "content": "", + "style": "outline", + "tags": "wireless,internet,network,connection,connectivity,disabled,disconnected", + "set_id": 1 + }, + { + "name": "wifi-x-duotone", + "content": "", + "style": "outline", + "tags": "wireless,internet,network,connection,connectivity,disconnected,errors", + "set_id": 1 + }, + { + "name": "wind-duotone", + "content": "", + "style": "outline", + "tags": "meteorology,windy,stormy,blustery,gusty,air", + "set_id": 1 + }, + { + "name": "windmill-duotone", + "content": "", + "style": "outline", + "tags": "*new*,turbine,energy,renewable,sustainability,countryside,landscape,green,power,buildings", + "set_id": 1 + }, + { + "name": "windows-logo-duotone", + "content": "", + "style": "outline", + "tags": "microsoft,computers", + "set_id": 1 + }, + { + "name": "wine-duotone", + "content": "", + "style": "outline", + "tags": "drinks,beverages,vineyard,places,locations,bars,restaurants,food,dining", + "set_id": 1 + }, + { + "name": "wrench-duotone", + "content": "", + "style": "outline", + "tags": "settings,setup,preferences,tools,machinery,mechanical,repairs", + "set_id": 1 + }, + { + "name": "x-duotone", + "content": "", + "style": "outline", + "tags": "×,closed,cancelled,dismissed,times,multiply,mulitplication,product,mathematics,arithmetic,calculator", + "set_id": 1 + }, + { + "name": "x-circle-duotone", + "content": "", + "style": "outline", + "tags": "closed,cancelled,dismissed,round", + "set_id": 1 + }, + { + "name": "x-logo-duotone", + "content": "", + "style": "outline", + "tags": "*new*,twitter,logos,social media,tweets", + "set_id": 1 + }, + { + "name": "x-square-duotone", + "content": "", + "style": "outline", + "tags": "closed,cancelled,dismissed", + "set_id": 1 + }, + { + "name": "yarn-duotone", + "content": "", + "style": "outline", + "tags": "*new*,knitting,sewing", + "set_id": 1 + }, + { + "name": "yin-yang-duotone", + "content": "", + "style": "outline", + "tags": "symbol,good,evil,black,white", + "set_id": 1 + }, + { + "name": "youtube-logo-duotone", + "content": "", + "style": "outline", + "tags": "logos,google,videos,movies,social media", + "set_id": 1 + } + ] + } \ No newline at end of file diff --git a/servers/fastapi/constants/__init__.py b/servers/fastapi/constants/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/servers/fastapi/constants/documents.py b/servers/fastapi/constants/documents.py new file mode 100644 index 0000000..1fe57d2 --- /dev/null +++ b/servers/fastapi/constants/documents.py @@ -0,0 +1,88 @@ +PDF_EXTENSIONS = [".pdf"] +TEXT_EXTENSIONS = [".txt"] + +WORD_EXTENSIONS = [".doc", ".docx", ".docm", ".odt", ".rtf"] +POWERPOINT_EXTENSIONS = [".ppt", ".pptx", ".pptm", ".odp"] +SPREADSHEET_EXTENSIONS = [".xls", ".xlsx", ".xlsm", ".ods", ".csv", ".tsv"] + +JPEG_EXTENSIONS = [".jpg", ".jpeg"] +PNG_EXTENSIONS = [".png"] +GIF_EXTENSIONS = [".gif"] +BMP_EXTENSIONS = [".bmp"] +TIFF_EXTENSIONS = [".tiff", ".tif"] +WEBP_EXTENSIONS = [".webp"] +SVG_EXTENSIONS = [".svg"] +IMAGE_EXTENSIONS = ( + JPEG_EXTENSIONS + + PNG_EXTENSIONS + + GIF_EXTENSIONS + + BMP_EXTENSIONS + + TIFF_EXTENSIONS + + WEBP_EXTENSIONS +) + +OFFICE_EXTENSIONS = WORD_EXTENSIONS + POWERPOINT_EXTENSIONS + SPREADSHEET_EXTENSIONS + +PDF_MIME_TYPES = ["application/pdf"] +TEXT_MIME_TYPES = ["text/plain", "text/markdown"] + +WORD_MIME_TYPES = [ + "application/msword", + "application/vnd.openxmlformats-officedocument.wordprocessingml.document", + "application/vnd.ms-word.document.macroenabled.12", + "application/vnd.oasis.opendocument.text", + "application/rtf", + "text/rtf", +] + +POWERPOINT_MIME_TYPES = [ + "application/vnd.ms-powerpoint", + "application/vnd.openxmlformats-officedocument.presentationml.presentation", + "application/vnd.ms-powerpoint.presentation.macroenabled.12", + "application/vnd.oasis.opendocument.presentation", +] + +SPREADSHEET_MIME_TYPES = [ + "application/vnd.ms-excel", + "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", + "application/vnd.ms-excel.sheet.macroenabled.12", + "application/vnd.oasis.opendocument.spreadsheet", + "text/csv", + "application/csv", + "text/tab-separated-values", + "text/tsv", +] + +IMAGE_MIME_TYPES = [ + "image/jpeg", + "image/png", + "image/gif", + "image/bmp", + "image/tiff", + "image/webp", +] + +UPLOAD_ACCEPTED_MIME_TYPES = ( + PDF_MIME_TYPES + + TEXT_MIME_TYPES + + WORD_MIME_TYPES + + POWERPOINT_MIME_TYPES + + SPREADSHEET_MIME_TYPES + + IMAGE_MIME_TYPES +) + +UPLOAD_ACCEPTED_EXTENSIONS = ( + PDF_EXTENSIONS + TEXT_EXTENSIONS + OFFICE_EXTENSIONS + IMAGE_EXTENSIONS +) + +# Includes both MIME types and extensions because some clients upload legacy +# office files with generic content-type values. +UPLOAD_ACCEPTED_FILE_TYPES = UPLOAD_ACCEPTED_MIME_TYPES + UPLOAD_ACCEPTED_EXTENSIONS + +# Kept for endpoints that strictly require modern .pptx files. +PPTX_MIME_TYPES = ["application/vnd.openxmlformats-officedocument.presentationml.presentation"] + +# Backward compatibility aliases used across existing modules. +POWERPOINT_TYPES = PPTX_MIME_TYPES +WORD_TYPES = WORD_MIME_TYPES +SPREADSHEET_TYPES = SPREADSHEET_MIME_TYPES diff --git a/servers/fastapi/constants/llm.py b/servers/fastapi/constants/llm.py new file mode 100644 index 0000000..592b42d --- /dev/null +++ b/servers/fastapi/constants/llm.py @@ -0,0 +1,23 @@ +OPENAI_URL = "https://api.openai.com/v1" + +# Default models +DEFAULT_OPENAI_MODEL = "gpt-4.1" +DEFAULT_DEEPSEEK_MODEL = "deepseek-chat" +DEFAULT_GOOGLE_MODEL = "models/gemini-2.5-flash" +DEFAULT_VERTEX_MODEL = "gemini-2.5-flash" +DEFAULT_AZURE_MODEL = "gpt-4.1" +DEFAULT_BEDROCK_MODEL = "us.anthropic.claude-3-5-haiku-20241022-v1:0" +DEFAULT_OPENROUTER_MODEL = "openai/gpt-4o" +DEFAULT_FIREWORKS_MODEL = "accounts/fireworks/models/llama-v3p1-8b-instruct" +DEFAULT_TOGETHER_MODEL = "openai/gpt-oss-20b" +DEFAULT_CEREBRAS_MODEL = "llama-3.3-70b" +DEFAULT_ANTHROPIC_MODEL = "claude-sonnet-4-20250514" +DEFAULT_LITELLM_MODEL = "gpt-4.1" +DEFAULT_LMSTUDIO_MODEL = "openai/gpt-oss-20b" +SUPPORTED_CODEX_MODELS = { + "gpt-5.5", + "gpt-5.4", + "gpt-5.4-mini", + "gpt-5.3-codex-spark", +} +DEFAULT_CODEX_MODEL = "gpt-5.5" diff --git a/servers/fastapi/constants/presentation.py b/servers/fastapi/constants/presentation.py new file mode 100644 index 0000000..49ebd24 --- /dev/null +++ b/servers/fastapi/constants/presentation.py @@ -0,0 +1,52 @@ +import re +from pathlib import Path + +MAX_NUMBER_OF_SLIDES = 50 +MAX_OUTLINE_CONTENT_WORDS = 500 + +_PREFERRED_TEMPLATE_ORDER = [ + "general", + "modern", + "standard", + "swift", + "code", + "education", + "product-overview", + "report", + "pitch-deck", + "neo-general", + "neo-standard", + "neo-modern", + "neo-swift", +] + + +def _normalize_template_group_id(directory_name: str) -> str: + """Map template folder names to the runtime template IDs.""" + cleaned = re.sub(r"(? list[str]: + templates_dir = ( + Path(__file__).resolve().parents[2] + / "nextjs" + / "app" + / "presentation-templates" + ) + + if not templates_dir.is_dir(): + return list(_PREFERRED_TEMPLATE_ORDER) + + discovered = { + _normalize_template_group_id(entry.name) + for entry in templates_dir.iterdir() + if entry.is_dir() and (entry / "settings.json").is_file() + } + + ordered = [name for name in _PREFERRED_TEMPLATE_ORDER if name in discovered] + extras = sorted(discovered - set(ordered)) + return ordered + extras + + +DEFAULT_TEMPLATES = _discover_default_templates() diff --git a/servers/fastapi/constants/supported_ollama_models.py b/servers/fastapi/constants/supported_ollama_models.py new file mode 100644 index 0000000..940bec8 --- /dev/null +++ b/servers/fastapi/constants/supported_ollama_models.py @@ -0,0 +1,354 @@ +from models.ollama_model_metadata import OllamaModelMetadata +from models.ollama_model_status import OllamaModelStatus + + +SUPPORTED_LLAMA_MODELS = { + "llama3:8b": OllamaModelMetadata( + label="Llama 3:8b", + value="llama3:8b", + size="4.7GB", + ), + "llama3:70b": OllamaModelMetadata( + label="Llama 3:70b", + value="llama3:70b", + size="40GB", + ), + "llama3.1:8b": OllamaModelMetadata( + label="Llama 3.1:8b", + value="llama3.1:8b", + size="4.9GB", + ), + "llama3.1:70b": OllamaModelMetadata( + label="Llama 3.1:70b", + value="llama3.1:70b", + size="43GB", + ), + "llama3.1:405b": OllamaModelMetadata( + label="Llama 3.1:405b", + value="llama3.1:405b", + size="243GB", + ), + "llama3.2:1b": OllamaModelMetadata( + label="Llama 3.2:1b", + value="llama3.2:1b", + size="1.3GB", + ), + "llama3.2:3b": OllamaModelMetadata( + label="Llama 3.2:3b", + value="llama3.2:3b", + size="2GB", + ), + "llama3.3:70b": OllamaModelMetadata( + label="Llama 3.3:70b", + value="llama3.3:70b", + size="43GB", + ), + "llama4:16x17b": OllamaModelMetadata( + label="Llama 4:16x17b", + value="llama4:16x17b", + size="67GB", + ), + "llama4:128x17b": OllamaModelMetadata( + label="Llama 4:128x17b", + value="llama4:128x17b", + size="245GB", + ), +} + +SUPPORTED_GEMMA_MODELS = { + "gemma3:1b": OllamaModelMetadata( + label="Gemma 3:1b", + value="gemma3:1b", + size="815MB", + ), + "gemma3:4b": OllamaModelMetadata( + label="Gemma 3:4b", + value="gemma3:4b", + size="3.3GB", + ), + "gemma3:12b": OllamaModelMetadata( + label="Gemma 3:12b", + value="gemma3:12b", + size="8.1GB", + ), + "gemma3:27b": OllamaModelMetadata( + label="Gemma 3:27b", + value="gemma3:27b", + size="17GB", + ), +} + +SUPPORTED_DEEPSEEK_MODELS = { + "deepseek-r1:1.5b": OllamaModelMetadata( + label="DeepSeek R1:1.5b", + value="deepseek-r1:1.5b", + size="1.1GB", + ), + "deepseek-r1:7b": OllamaModelMetadata( + label="DeepSeek R1:7b", + value="deepseek-r1:7b", + size="4.7GB", + ), + "deepseek-r1:8b": OllamaModelMetadata( + label="DeepSeek R1:8b", + value="deepseek-r1:8b", + size="5.2GB", + ), + "deepseek-r1:14b": OllamaModelMetadata( + label="DeepSeek R1:14b", + value="deepseek-r1:14b", + size="9GB", + ), + "deepseek-r1:32b": OllamaModelMetadata( + label="DeepSeek R1:32b", + value="deepseek-r1:32b", + size="20GB", + ), + "deepseek-r1:70b": OllamaModelMetadata( + label="DeepSeek R1:70b", + value="deepseek-r1:70b", + size="43GB", + ), + "deepseek-r1:671b": OllamaModelMetadata( + label="DeepSeek R1:671b", + value="deepseek-r1:671b", + size="404GB", + ), +} + +SUPPORTED_QWEN_MODELS = { + "qwen3:0.6b": OllamaModelMetadata( + label="Qwen 3:0.6b", + value="qwen3:0.6b", + size="523MB", + ), + "qwen3:1.7b": OllamaModelMetadata( + label="Qwen 3:1.7b", + value="qwen3:1.7b", + size="1.4GB", + ), + "qwen3:4b": OllamaModelMetadata( + label="Qwen 3:4b", + value="qwen3:4b", + size="2.6GB", + ), + "qwen3:8b": OllamaModelMetadata( + label="Qwen 3:8b", + value="qwen3:8b", + size="5.2GB", + ), + "qwen3:14b": OllamaModelMetadata( + label="Qwen 3:14b", + value="qwen3:14b", + size="9.3GB", + ), + "qwen3:30b": OllamaModelMetadata( + label="Qwen 3:30b", + value="qwen3:30b", + size="19GB", + ), + "qwen3:32b": OllamaModelMetadata( + label="Qwen 3:32b", + value="qwen3:32b", + size="20GB", + ), + "qwen3:235b": OllamaModelMetadata( + label="Qwen 3:235b", + value="qwen3:235b", + size="142GB", + ), +} + +SUPPORTED_GPT_OSS_MODELS = { + "gpt-oss:20b": OllamaModelMetadata( + label="GPT-OSS 20b", + value="gpt-oss:20b", + size="14GB", + ), + "gpt-oss:120b": OllamaModelMetadata( + label="GPT-OSS 120b", + value="gpt-oss:120b", + size="65GB", + ), +} + +SUPPORTED_GEMMA4_MODELS = { + "gemma4:latest": OllamaModelMetadata( + label="Gemma 4:latest", + value="gemma4:latest", + size="9.6GB", + ), + "gemma4:e2b": OllamaModelMetadata( + label="Gemma 4:e2b", + value="gemma4:e2b", + size="7.2GB", + ), + "gemma4:e4b": OllamaModelMetadata( + label="Gemma 4:e4b", + value="gemma4:e4b", + size="9.6GB", + ), + "gemma4:26b": OllamaModelMetadata( + label="Gemma 4:26b", + value="gemma4:26b", + size="18GB", + ), + "gemma4:31b": OllamaModelMetadata( + label="Gemma 4:31b", + value="gemma4:31b", + size="20GB", + ), + + # e2b variants + "gemma4:e2b-it-q4_K_M": OllamaModelMetadata( + label="Gemma 4:e2b-it-q4_K_M", + value="gemma4:e2b-it-q4_K_M", + size="7.2GB", + ), + "gemma4:e2b-it-q8_0": OllamaModelMetadata( + label="Gemma 4:e2b-it-q8_0", + value="gemma4:e2b-it-q8_0", + size="8.1GB", + ), + "gemma4:e2b-it-bf16": OllamaModelMetadata( + label="Gemma 4:e2b-it-bf16", + value="gemma4:e2b-it-bf16", + size="10GB", + ), + + # e4b variants + "gemma4:e4b-it-q4_K_M": OllamaModelMetadata( + label="Gemma 4:e4b-it-q4_K_M", + value="gemma4:e4b-it-q4_K_M", + size="9.6GB", + ), + "gemma4:e4b-it-q8_0": OllamaModelMetadata( + label="Gemma 4:e4b-it-q8_0", + value="gemma4:e4b-it-q8_0", + size="12GB", + ), + "gemma4:e4b-it-bf16": OllamaModelMetadata( + label="Gemma 4:e4b-it-bf16", + value="gemma4:e4b-it-bf16", + size="16GB", + ), + + # 26b variants + "gemma4:26b-a4b-it-q4_K_M": OllamaModelMetadata( + label="Gemma 4:26b-a4b-it-q4_K_M", + value="gemma4:26b-a4b-it-q4_K_M", + size="18GB", + ), + "gemma4:26b-a4b-it-q8_0": OllamaModelMetadata( + label="Gemma 4:26b-a4b-it-q8_0", + value="gemma4:26b-a4b-it-q8_0", + size="28GB", + ), + + # 31b variants + "gemma4:31b-it-q4_K_M": OllamaModelMetadata( + label="Gemma 4:31b-it-q4_K_M", + value="gemma4:31b-it-q4_K_M", + size="20GB", + ), + "gemma4:31b-it-q8_0": OllamaModelMetadata( + label="Gemma 4:31b-it-q8_0", + value="gemma4:31b-it-q8_0", + size="34GB", + ), + "gemma4:31b-it-bf16": OllamaModelMetadata( + label="Gemma 4:31b-it-bf16", + value="gemma4:31b-it-bf16", + size="63GB", + ) +} + +SUPPORTED_QWEN35_MODELS = { + "qwen3.5:latest": OllamaModelMetadata( + label="Qwen 3.5:latest", + value="qwen3.5:latest", + size="6.6GB", + ), + "qwen3.5:2b": OllamaModelMetadata( + label="Qwen 3.5:2b", + value="qwen3.5:2b", + size="2.7GB", + ), + "qwen3.5:4b": OllamaModelMetadata( + label="Qwen 3.5:4b", + value="qwen3.5:4b", + size="3.4GB", + ), + "qwen3.5:9b": OllamaModelMetadata( + label="Qwen 3.5:9b", + value="qwen3.5:9b", + size="6.6GB", + ), + "qwen3.5:27b": OllamaModelMetadata( + label="Qwen 3.5:27b", + value="qwen3.5:27b", + size="17GB", + ), + "qwen3.5:35b": OllamaModelMetadata( + label="Qwen 3.5:35b", + value="qwen3.5:35b", + size="24GB", + ), + "qwen3.5:122b": OllamaModelMetadata( + label="Qwen 3.5:122b", + value="qwen3.5:122b", + size="81GB", + ) +} + +TESTED_OLLAMA_MODELS = { + **SUPPORTED_LLAMA_MODELS, + **SUPPORTED_GEMMA_MODELS, + **SUPPORTED_DEEPSEEK_MODELS, + **SUPPORTED_QWEN_MODELS, + **SUPPORTED_GPT_OSS_MODELS, + **SUPPORTED_GEMMA4_MODELS, + **SUPPORTED_QWEN35_MODELS, +} + +SUPPORTED_OLLAMA_MODELS = TESTED_OLLAMA_MODELS + + +def format_ollama_model_size(size_bytes: int | None) -> str: + if size_bytes is None: + return "Unknown size" + + units = ("B", "KB", "MB", "GB", "TB") + size = float(size_bytes) + unit_index = 0 + while size >= 1024 and unit_index < len(units) - 1: + size /= 1024 + unit_index += 1 + + if unit_index == 0: + return f"{int(size)}{units[unit_index]}" + + return f"{size:.1f}{units[unit_index]}" + + +def get_supported_ollama_models( + pulled_models: list[OllamaModelStatus] | None = None, +) -> list[OllamaModelMetadata]: + models = list(TESTED_OLLAMA_MODELS.values()) + seen_model_values = set(TESTED_OLLAMA_MODELS) + + for pulled_model in pulled_models or []: + if not pulled_model.name or pulled_model.name in seen_model_values: + continue + + models.append( + OllamaModelMetadata( + label=pulled_model.name, + value=pulled_model.name, + size=format_ollama_model_size(pulled_model.size), + tested=False, + ) + ) + seen_model_values.add(pulled_model.name) + + return models diff --git a/servers/fastapi/enums/__init__.py b/servers/fastapi/enums/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/servers/fastapi/enums/image_provider.py b/servers/fastapi/enums/image_provider.py new file mode 100644 index 0000000..29d85c3 --- /dev/null +++ b/servers/fastapi/enums/image_provider.py @@ -0,0 +1,13 @@ +from enum import Enum + + +class ImageProvider(Enum): + PEXELS = "pexels" + PIXABAY = "pixabay" + GEMINI_FLASH = "gemini_flash" + NANOBANANA_PRO = "nanobanana_pro" + DALLE3 = "dall-e-3" + GPT_IMAGE_1_5 = "gpt-image-1.5" + COMFYUI = "comfyui" + OPEN_WEBUI = "open_webui" + OPENAI_COMPATIBLE = "openai_compatible" diff --git a/servers/fastapi/enums/llm_call_type.py b/servers/fastapi/enums/llm_call_type.py new file mode 100644 index 0000000..e37fe4a --- /dev/null +++ b/servers/fastapi/enums/llm_call_type.py @@ -0,0 +1,8 @@ +from enum import Enum + + +class LLMCallType(Enum): + UNSTRUCTURED = "unstructured" + UNSTRUCTURED_STREAM = "unstructured_stream" + STRUCTURED = "structured" + STRUCTURED_STREAM = "structured_stream" diff --git a/servers/fastapi/enums/llm_provider.py b/servers/fastapi/enums/llm_provider.py new file mode 100644 index 0000000..3731dbb --- /dev/null +++ b/servers/fastapi/enums/llm_provider.py @@ -0,0 +1,20 @@ +from enum import Enum + + +class LLMProvider(Enum): + OLLAMA = "ollama" + DEEPSEEK = "deepseek" + OPENAI = "openai" + GOOGLE = "google" + VERTEX = "vertex" + AZURE = "azure" + BEDROCK = "bedrock" + OPENROUTER = "openrouter" + FIREWORKS = "fireworks" + TOGETHER = "together" + CEREBRAS = "cerebras" + ANTHROPIC = "anthropic" + LITELLM = "litellm" + LMSTUDIO = "lmstudio" + CUSTOM = "custom" + CODEX = "codex" diff --git a/servers/fastapi/enums/tone.py b/servers/fastapi/enums/tone.py new file mode 100644 index 0000000..5679869 --- /dev/null +++ b/servers/fastapi/enums/tone.py @@ -0,0 +1,11 @@ +from enum import Enum + + +class Tone(str, Enum): + DEFAULT = "default" + CASUAL = "casual" + PROFESSIONAL = "professional" + FUNNY = "funny" + EDUCATIONAL = "educational" + SALES_PITCH = "sales_pitch" + diff --git a/servers/fastapi/enums/verbosity.py b/servers/fastapi/enums/verbosity.py new file mode 100644 index 0000000..aba4ffb --- /dev/null +++ b/servers/fastapi/enums/verbosity.py @@ -0,0 +1,8 @@ +from enum import Enum + + +class Verbosity(str, Enum): + CONCISE = "concise" + STANDARD = "standard" + TEXT_HEAVY = "text-heavy" + diff --git a/servers/fastapi/enums/web_search_provider.py b/servers/fastapi/enums/web_search_provider.py new file mode 100644 index 0000000..f747921 --- /dev/null +++ b/servers/fastapi/enums/web_search_provider.py @@ -0,0 +1,11 @@ +from enum import Enum + + +class WebSearchProvider(Enum): + AUTO = "auto" + NATIVE = "native" + SEARXNG = "searxng" + TAVILY = "tavily" + EXA = "exa" + BRAVE = "brave" + SERPER = "serper" diff --git a/servers/fastapi/enums/webhook_event.py b/servers/fastapi/enums/webhook_event.py new file mode 100644 index 0000000..ce1ca4a --- /dev/null +++ b/servers/fastapi/enums/webhook_event.py @@ -0,0 +1,6 @@ +from enum import Enum + + +class WebhookEvent(str, Enum): + PRESENTATION_GENERATION_COMPLETED = "presentation.generation.completed" + PRESENTATION_GENERATION_FAILED = "presentation.generation.failed" diff --git a/servers/fastapi/mcp_server.py b/servers/fastapi/mcp_server.py new file mode 100644 index 0000000..4d0c204 --- /dev/null +++ b/servers/fastapi/mcp_server.py @@ -0,0 +1,146 @@ +import sys +import argparse +import asyncio +import traceback +from pathlib import Path + +import httpx +from fastmcp import FastMCP +from fastmcp.server.auth import AccessToken, TokenVerifier +from fastmcp.server.dependencies import get_access_token, get_http_headers +import json + +from utils.get_env import is_disable_auth_enabled, is_presenton_electron_desktop +from utils.simple_auth import is_auth_configured, validate_session_token + +OPENAPI_SPEC_PATH = Path(__file__).with_name("openai_spec.json") +MCP_API_BASE_URL = "http://127.0.0.1:8000" +# Presentation generation can take several minutes; keep MCP upstream reads open. +MCP_API_TIMEOUT_SECONDS = 600.0 +MCP_API_CONNECT_TIMEOUT_SECONDS = 15.0 + +with OPENAPI_SPEC_PATH.open("r", encoding="utf-8") as f: + openapi_spec = json.load(f) + + +class PresentonTokenVerifier(TokenVerifier): + """Validate Presenton session tokens for MCP HTTP auth.""" + + async def verify_token(self, token: str) -> AccessToken | None: + username = validate_session_token(token) + if not username: + return None + + return AccessToken( + token=token, + client_id=username, + scopes=[], + claims={"u": username}, + ) + + +def is_mcp_server_enabled() -> bool: + """MCP is only supported in server/Docker deployments, not the Electron app.""" + return not is_presenton_electron_desktop() + + +def create_mcp_auth_provider() -> TokenVerifier | None: + """Enable MCP bearer auth only when app auth is configured.""" + if is_disable_auth_enabled() or not is_auth_configured(): + return None + return PresentonTokenVerifier() + + +def get_mcp_api_timeout() -> httpx.Timeout: + return httpx.Timeout( + timeout=MCP_API_TIMEOUT_SECONDS, + connect=MCP_API_CONNECT_TIMEOUT_SECONDS, + ) + + +def create_openapi_api_client() -> httpx.AsyncClient: + return httpx.AsyncClient( + base_url=MCP_API_BASE_URL, + timeout=get_mcp_api_timeout(), + event_hooks={"request": [attach_request_auth_header]}, + ) + + +async def attach_request_auth_header(request: httpx.Request) -> None: + """Forward the authenticated MCP caller token to FastAPI tool endpoints.""" + if "authorization" in request.headers: + return + + access_token = get_access_token() + if access_token: + request.headers["Authorization"] = f"Bearer {access_token.token}" + return + + forwarded_headers = get_http_headers(include={"authorization"}) + incoming_auth_header = forwarded_headers.get("authorization") + if incoming_auth_header: + request.headers["Authorization"] = incoming_auth_header + + +async def main(): + try: + if not is_mcp_server_enabled(): + print( + "INFO: MCP server is disabled in the Presenton Electron desktop app " + "(PRESENTON_ELECTRON=true)." + ) + return + + print("DEBUG: MCP (OpenAPI) Server startup initiated") + parser = argparse.ArgumentParser( + description="Run the MCP server (from OpenAPI)" + ) + parser.add_argument( + "--port", type=int, default=8001, help="Port for the MCP HTTP server" + ) + + parser.add_argument( + "--name", + type=str, + default="Presenton API (OpenAPI)", + help="Display name for the generated MCP server", + ) + args = parser.parse_args() + print(f"DEBUG: Parsed args - port={args.port}") + + async with create_openapi_api_client() as api_client: + # Build MCP server from OpenAPI + print("DEBUG: Creating FastMCP server from OpenAPI spec...") + mcp_auth_provider = create_mcp_auth_provider() + mcp = FastMCP.from_openapi( + openapi_spec=openapi_spec, + client=api_client, + name=args.name, + auth=mcp_auth_provider, + ) + print("DEBUG: MCP server created from OpenAPI successfully") + + # Start the MCP server + uvicorn_config = {"reload": True} + print(f"DEBUG: Starting MCP server on host=127.0.0.1, port={args.port}") + await mcp.run_async( + transport="http", + host="127.0.0.1", + port=args.port, + uvicorn_config=uvicorn_config, + ) + print("DEBUG: MCP server run_async completed") + except Exception as e: + print(f"ERROR: MCP server startup failed: {e}") + print(f"ERROR: Traceback: {traceback.format_exc()}") + raise + + +if __name__ == "__main__": + print("DEBUG: Starting MCP (OpenAPI) main function") + try: + asyncio.run(main()) + except Exception as e: + print(f"FATAL ERROR: {e}") + print(f"FATAL TRACEBACK: {traceback.format_exc()}") + sys.exit(1) diff --git a/servers/fastapi/migrations.py b/servers/fastapi/migrations.py new file mode 100644 index 0000000..3cc96ba --- /dev/null +++ b/servers/fastapi/migrations.py @@ -0,0 +1,275 @@ +import asyncio +from pathlib import Path + +from alembic import command +from alembic.config import Config +from alembic.script import ScriptDirectory +from sqlalchemy import create_engine, inspect, text + +from utils.db_utils import get_database_url_and_connect_args, to_sync_sqlalchemy_url +from utils.get_env import get_migrate_database_on_startup_env + + +LEGACY_BASELINE_REVISION = "00b3c27a13bc" +# Revision before 95b5127e93cd (template_create_infos); used when DB has theme but not that table. +REVISION_BEFORE_TEMPLATE_CREATE_INFO = "82abdbc476a7" +REVISION_TEMPLATE_CREATE_INFO = "95b5127e93cd" +REVISION_CHAT_HISTORY = "c7b70d0f31b1" +REVISION_TEMPLATE_V2 = "6e4a1b2c3d5f" +REVISION_SLIDE_UI = "7f5b2c3d4e6a" +REVISION_MERGED_TEMPLATE_V2 = "8a6c4d2e1f30" +REVISION_PRESENTATION_FONTS = "9b2d1c4e5f6a" +REVISION_TEMPLATE_V2_CHAT_SCOPE = "1d9a4c7b8e2f" +REVISION_TEMPLATE_V2_LAYOUTS_OPTIONAL = "2c8f4a1b9d7e" +REVISION_FONT_UPLOADS = "5d7e9a1b2c3f" +REVISION_TEMPLATE_V2_ID_STRINGS = "3f2a1b4c5d6e" +REVISION_TEMPLATE_V2_IS_DEFAULT = "4b7c9d0e1f2a" +REVISION_ASYNC_TASKS = "a7d4c9e2f1b3" + + +async def migrate_database_on_startup() -> None: + if get_migrate_database_on_startup_env() not in ["true", "True"]: + return + + try: + await asyncio.to_thread(_run_migrations) + print("Migrations run successfully", flush=True) + except Exception as exc: + print(f"Error running migrations: {exc}", flush=True) + raise + + +def _run_migrations() -> None: + # migrations.py lives at servers/fastapi/migrations.py + # so parents[0] = servers/fastapi/, where alembic/ lives alongside it. + base_dir = Path(__file__).resolve().parents[0] + config = Config() + config.set_main_option("script_location", str(base_dir / "alembic")) + + database_url, _ = get_database_url_and_connect_args() + + # Alembic uses synchronous engines; strip async driver prefixes. + database_url = to_sync_sqlalchemy_url(database_url) + + config.set_main_option("sqlalchemy.url", database_url) + _repair_orphan_alembic_revision(config, database_url) + _stamp_legacy_database_if_needed(config, database_url) + + try: + command.upgrade(config, "head") + except Exception: + # Safety net for edge cases; legacy DBs are stamped proactively above. + if _is_unversioned_populated_database(database_url): + _stamp_legacy_database_if_needed(config, database_url) + command.upgrade(config, "head") + return + raise + + +def _repair_orphan_alembic_revision(config: Config, database_url: str) -> None: + """ + If alembic_version points at a revision id that no longer exists in alembic/versions + (removed branch, old image, etc.), re-stamp from the live schema so upgrade can run. + """ + script = ScriptDirectory.from_config(config) + known = {rev.revision for rev in script.walk_revisions()} + heads = script.get_heads() + if len(heads) != 1: + return + head = heads[0] + + engine = create_engine(database_url) + try: + with engine.begin() as connection: + inspector = inspect(connection) + tables = set(inspector.get_table_names()) + if "alembic_version" not in tables: + return + version_num = connection.execute( + text("SELECT version_num FROM alembic_version LIMIT 1") + ).scalar_one_or_none() + if not version_num or version_num in known: + return + print( + f"Alembic revision {version_num!r} is missing from the codebase; " + "inferring applied migrations from schema and re-stamping.", + flush=True, + ) + target = _infer_revision_from_schema(inspector, tables, head) + connection.execute( + text("UPDATE alembic_version SET version_num = :revision"), + {"revision": target}, + ) + finally: + engine.dispose() + + +def _infer_revision_from_schema(inspector, tables: set[str], head_revision: str) -> str: + """Best-effort: map existing SQLite/Postgres schema to our linear migration chain.""" + if "template_v2" in tables: + cols = {c["name"] for c in inspector.get_columns("template_v2")} + final_template_columns = { + "description", + "raw_layouts", + "components", + "layouts", + "assets", + } + presentation_version_ready = ( + "presentations" not in tables + or _has_presentation_version_column(inspector, tables) + ) + slide_ui_ready = "slides" not in tables or _has_column( + inspector, "slides", "ui" + ) + presentation_fonts_ready = "presentations" not in tables or _has_column( + inspector, "presentations", "fonts" + ) + template_v2_chat_scope_ready = ( + "chat_history_messages" not in tables + or _has_column(inspector, "chat_history_messages", "template_v2_id") + ) + font_uploads_ready = "font_uploads" in tables + template_v2_id_strings_ready = _has_template_v2_id_string_columns( + inspector, + tables, + ) + template_v2_is_default_ready = _has_column( + inspector, "template_v2", "is_default" + ) + async_tasks_ready = "async_tasks" in tables + if ( + final_template_columns.issubset(cols) + and not {"cluster_candidates", "clusters"}.intersection(cols) + and presentation_version_ready + ): + if slide_ui_ready and presentation_fonts_ready and template_v2_chat_scope_ready: + if not font_uploads_ready: + return REVISION_TEMPLATE_V2_LAYOUTS_OPTIONAL + if not template_v2_id_strings_ready: + return REVISION_FONT_UPLOADS + if not template_v2_is_default_ready: + return REVISION_TEMPLATE_V2_ID_STRINGS + return ( + head_revision + if async_tasks_ready + else REVISION_TEMPLATE_V2_IS_DEFAULT + ) + if slide_ui_ready and presentation_fonts_ready: + return REVISION_PRESENTATION_FONTS + return REVISION_MERGED_TEMPLATE_V2 if slide_ui_ready else REVISION_TEMPLATE_V2 + return REVISION_CHAT_HISTORY + if "chat_history_messages" in tables: + return REVISION_CHAT_HISTORY + if "template_create_infos" in tables: + return REVISION_TEMPLATE_CREATE_INFO + if "presentations" in tables: + cols = {c["name"] for c in inspector.get_columns("presentations")} + if "theme" in cols: + return REVISION_BEFORE_TEMPLATE_CREATE_INFO + return LEGACY_BASELINE_REVISION + + +def _has_presentation_version_column(inspector, tables: set[str]) -> bool: + if "presentations" not in tables: + return False + + cols = {c["name"] for c in inspector.get_columns("presentations")} + return "version" in cols + + +def _has_column(inspector, table_name: str, column_name: str) -> bool: + columns = {column["name"] for column in inspector.get_columns(table_name)} + return column_name in columns + + +def _has_template_v2_id_string_columns(inspector, tables: set[str]) -> bool: + if "template_v2" not in tables or not _has_column(inspector, "template_v2", "id"): + return False + if _is_uuid_storage_column(inspector, "template_v2", "id"): + return False + if "chat_history_messages" in tables and _has_column( + inspector, + "chat_history_messages", + "template_v2_id", + ): + return not _is_uuid_storage_column( + inspector, + "chat_history_messages", + "template_v2_id", + ) + return True + + +def _is_uuid_storage_column(inspector, table_name: str, column_name: str) -> bool: + for column in inspector.get_columns(table_name): + if column["name"] != column_name: + continue + column_type = column["type"] + type_class = column_type.__class__.__name__.lower() + rendered_type = str(column_type).lower().replace(" ", "") + return type_class == "uuid" or rendered_type in {"uuid", "char(32)"} + return False + + +def _stamp_legacy_database_if_needed(config: Config, database_url: str) -> None: + """ + If the DB has app tables but no migration reference in alembic_version, + treat it as a legacy DB and stamp the latest revision already reflected by + the live schema before upgrading. + """ + if not _is_unversioned_populated_database(database_url): + return + + script = ScriptDirectory.from_config(config) + heads = script.get_heads() + head = heads[0] if len(heads) == 1 else script.get_base() + engine = create_engine(database_url) + try: + with engine.connect() as connection: + inspector = inspect(connection) + target_revision = _infer_revision_from_schema( + inspector, set(inspector.get_table_names()), head + ) + finally: + engine.dispose() + + print( + "Detected legacy database without migration reference. " + f"Stamping revision to {target_revision} before upgrading.", + flush=True, + ) + command.stamp(config, target_revision) + + +def _is_unversioned_populated_database(database_url: str) -> bool: + known_app_tables = { + "presentations", + "slides", + "templates", + "keyvaluesqlmodel", + "imageasset", + "presentation_layout_codes", + "async_presentation_generation_tasks", + "webhook_subscriptions", + "template_create_infos", + "chat_history_messages", + "template_v2", + "font_uploads", + } + engine = create_engine(database_url) + try: + with engine.connect() as connection: + inspector = inspect(connection) + table_names = set(inspector.get_table_names()) + has_alembic_version_table = "alembic_version" in table_names + has_applied_revision = False + if has_alembic_version_table: + revision_count = connection.execute( + text("SELECT COUNT(*) FROM alembic_version") + ).scalar_one() + has_applied_revision = revision_count > 0 + has_known_app_tables = len(table_names.intersection(known_app_tables)) > 0 + return has_known_app_tables and not has_applied_revision + finally: + engine.dispose() diff --git a/servers/fastapi/models/__init__.py b/servers/fastapi/models/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/servers/fastapi/models/api_error_model.py b/servers/fastapi/models/api_error_model.py new file mode 100644 index 0000000..9def72e --- /dev/null +++ b/servers/fastapi/models/api_error_model.py @@ -0,0 +1,13 @@ +from fastapi import HTTPException +from pydantic import BaseModel + + +class APIErrorModel(BaseModel): + status_code: int + detail: str + + @classmethod + def from_exception(cls, e: Exception) -> "APIErrorModel": + if isinstance(e, HTTPException): + return APIErrorModel(status_code=e.status_code, detail=e.detail) + return APIErrorModel(status_code=500, detail=str(e)) diff --git a/servers/fastapi/models/chat.py b/servers/fastapi/models/chat.py new file mode 100644 index 0000000..7cbf101 --- /dev/null +++ b/servers/fastapi/models/chat.py @@ -0,0 +1,53 @@ +import uuid +from typing import Literal, Optional + +from pydantic import BaseModel, ConfigDict, Field + + +class ChatAttachment(BaseModel): + type: Literal["document"] = "document" + name: str = Field(min_length=1, max_length=255) + file_path: str = Field(min_length=1, max_length=4000) + mime_type: Optional[str] = Field(default=None, max_length=255) + + model_config = ConfigDict(extra="forbid") + + +class ChatMessageRequest(BaseModel): + presentation_id: uuid.UUID + message: str = Field(min_length=1, max_length=8000) + conversation_id: Optional[uuid.UUID] = None + attachments: list[ChatAttachment] = Field(default_factory=list, max_length=8) + + model_config = ConfigDict(extra="forbid") + + +class ChatMessageResponse(BaseModel): + conversation_id: uuid.UUID + response: str + tool_calls: list[str] = Field(default_factory=list) + model_config = ConfigDict(extra="forbid") + + +class ChatHistoryMessageItem(BaseModel): + role: str + content: str + created_at: Optional[str] = None + + model_config = ConfigDict(extra="forbid") + + +class ChatHistoryResponse(BaseModel): + presentation_id: uuid.UUID + conversation_id: uuid.UUID + messages: list[ChatHistoryMessageItem] + + model_config = ConfigDict(extra="forbid") + + +class ChatConversationListItem(BaseModel): + conversation_id: uuid.UUID + updated_at: Optional[str] = None + last_message_preview: Optional[str] = None + + model_config = ConfigDict(extra="forbid") diff --git a/servers/fastapi/models/decomposed_file_info.py b/servers/fastapi/models/decomposed_file_info.py new file mode 100644 index 0000000..c6803aa --- /dev/null +++ b/servers/fastapi/models/decomposed_file_info.py @@ -0,0 +1,6 @@ +from pydantic import BaseModel + + +class DecomposedFileInfo(BaseModel): + name: str + file_path: str diff --git a/servers/fastapi/models/document_chunk.py b/servers/fastapi/models/document_chunk.py new file mode 100644 index 0000000..a7500be --- /dev/null +++ b/servers/fastapi/models/document_chunk.py @@ -0,0 +1,13 @@ +from pydantic import BaseModel + +from models.presentation_outline_model import SlideOutlineModel + + +class DocumentChunk(BaseModel): + heading: str + content: str + heading_index: int + score: float + + def to_slide_outline(self) -> SlideOutlineModel: + return SlideOutlineModel(content=f"{self.heading}\n{self.content}") diff --git a/servers/fastapi/models/generate_presentation_request.py b/servers/fastapi/models/generate_presentation_request.py new file mode 100644 index 0000000..d55f765 --- /dev/null +++ b/servers/fastapi/models/generate_presentation_request.py @@ -0,0 +1,46 @@ +from typing import List, Literal, Optional +from pydantic import BaseModel, Field + +from enums.tone import Tone +from enums.verbosity import Verbosity + + +class GeneratePresentationRequest(BaseModel): + content: str = Field(..., description="The content for generating the presentation") + slides_markdown: Optional[List[str]] = Field( + default=None, description="The markdown for the slides" + ) + instructions: Optional[str] = Field( + default=None, description="The instruction for generating the presentation" + ) + tone: Tone = Field(default=Tone.DEFAULT, description="The tone to use for the text") + verbosity: Verbosity = Field( + default=Verbosity.STANDARD, description="How verbose the presentation should be" + ) + web_search: bool = Field(default=False, description="Whether to enable web search") + n_slides: Optional[int] = Field( + default=None, + description="Number of slides to generate. If omitted, model auto-detects slide count.", + ) + language: Optional[str] = Field( + default=None, + description="Language for the presentation. If omitted, model auto-detects language.", + ) + template: str = Field( + default="general", description="Template to use for the presentation" + ) + include_table_of_contents: bool = Field( + default=False, description="Whether to include a table of contents" + ) + include_title_slide: bool = Field( + default=True, description="Whether to include a title slide" + ) + files: Optional[List[str]] = Field( + default=None, description="Files to use for the presentation" + ) + export_as: Literal["pptx", "pdf"] = Field( + default="pptx", description="Export format" + ) + trigger_webhook: bool = Field( + default=False, description="Whether to trigger subscribed webhooks" + ) diff --git a/servers/fastapi/models/image_prompt.py b/servers/fastapi/models/image_prompt.py new file mode 100644 index 0000000..f74638c --- /dev/null +++ b/servers/fastapi/models/image_prompt.py @@ -0,0 +1,10 @@ +from typing import Optional +from pydantic import BaseModel + + +class ImagePrompt(BaseModel): + prompt: str + theme_prompt: Optional[str] = None + + def get_image_prompt(self, with_theme: bool = False) -> str: + return f"{self.prompt}, {self.theme_prompt}" if with_theme else self.prompt diff --git a/servers/fastapi/models/json_path_guide.py b/servers/fastapi/models/json_path_guide.py new file mode 100644 index 0000000..58343a1 --- /dev/null +++ b/servers/fastapi/models/json_path_guide.py @@ -0,0 +1,14 @@ +from typing import List +from pydantic import BaseModel + + +class DictGuide(BaseModel): + key: str + + +class ListGuide(BaseModel): + index: int + + +class JsonPathGuide(BaseModel): + guides: List[DictGuide | ListGuide] diff --git a/servers/fastapi/models/ollama_model_metadata.py b/servers/fastapi/models/ollama_model_metadata.py new file mode 100644 index 0000000..ada3256 --- /dev/null +++ b/servers/fastapi/models/ollama_model_metadata.py @@ -0,0 +1,8 @@ +from pydantic import BaseModel + + +class OllamaModelMetadata(BaseModel): + label: str + value: str + size: str + tested: bool = True diff --git a/servers/fastapi/models/ollama_model_status.py b/servers/fastapi/models/ollama_model_status.py new file mode 100644 index 0000000..98e0bea --- /dev/null +++ b/servers/fastapi/models/ollama_model_status.py @@ -0,0 +1,12 @@ +from typing import Optional +from pydantic import BaseModel + + +class OllamaModelStatus(BaseModel): + name: str + parameters: Optional[str] = None + size: Optional[int] = None + downloaded: Optional[int] = None + status: str + done: bool + error: Optional[str] = None diff --git a/servers/fastapi/models/presentation_and_path.py b/servers/fastapi/models/presentation_and_path.py new file mode 100644 index 0000000..3f2cd7a --- /dev/null +++ b/servers/fastapi/models/presentation_and_path.py @@ -0,0 +1,11 @@ +from pydantic import BaseModel +import uuid + + +class PresentationAndPath(BaseModel): + presentation_id: uuid.UUID + path: str + + +class PresentationPathAndEditPath(PresentationAndPath): + edit_path: str diff --git a/servers/fastapi/models/presentation_from_template.py b/servers/fastapi/models/presentation_from_template.py new file mode 100644 index 0000000..9674485 --- /dev/null +++ b/servers/fastapi/models/presentation_from_template.py @@ -0,0 +1,14 @@ +from typing import List, Literal +from pydantic import BaseModel +import uuid + + +class SlideContentUpdate(BaseModel): + index: int + content: dict + + +class EditPresentationRequest(BaseModel): + presentation_id: uuid.UUID + slides: List[SlideContentUpdate] + export_as: Literal["pptx", "pdf"] = "pptx" diff --git a/servers/fastapi/models/presentation_layout.py b/servers/fastapi/models/presentation_layout.py new file mode 100644 index 0000000..5de22c7 --- /dev/null +++ b/servers/fastapi/models/presentation_layout.py @@ -0,0 +1,5 @@ +"""Re-export layout models defined in `templates.presentation_layout`.""" + +from templates.presentation_layout import PresentationLayoutModel, SlideLayoutModel + +__all__ = ["PresentationLayoutModel", "SlideLayoutModel"] diff --git a/servers/fastapi/models/presentation_outline_model.py b/servers/fastapi/models/presentation_outline_model.py new file mode 100644 index 0000000..7d8894b --- /dev/null +++ b/servers/fastapi/models/presentation_outline_model.py @@ -0,0 +1,31 @@ +from typing import List +from pydantic import BaseModel, Field, field_validator + +from constants.presentation import MAX_NUMBER_OF_SLIDES, MAX_OUTLINE_CONTENT_WORDS +from utils.outline_limits import normalize_outline_content + + +class SlideOutlineModel(BaseModel): + content: str = Field( + ..., + description=f"Markdown content for the slide. Maximum {MAX_OUTLINE_CONTENT_WORDS} words.", + ) + + @field_validator("content", mode="before") + @classmethod + def limit_content_words(cls, value): + return normalize_outline_content(value) + + +class PresentationOutlineModel(BaseModel): + slides: List[SlideOutlineModel] = Field( + description="List of slide outlines", + max_length=MAX_NUMBER_OF_SLIDES, + ) + + def to_string(self): + message = "" + for i, slide in enumerate(self.slides): + message += f"## Slide {i+1}:\n" + message += f" - Content: {slide} \n" + return message diff --git a/servers/fastapi/models/presentation_structure_model.py b/servers/fastapi/models/presentation_structure_model.py new file mode 100644 index 0000000..e6993e3 --- /dev/null +++ b/servers/fastapi/models/presentation_structure_model.py @@ -0,0 +1,6 @@ +from typing import List +from pydantic import BaseModel, Field + + +class PresentationStructureModel(BaseModel): + slides: List[int] = Field(description="List of slide layout indexes") diff --git a/servers/fastapi/models/presentation_with_slides.py b/servers/fastapi/models/presentation_with_slides.py new file mode 100644 index 0000000..c376fb2 --- /dev/null +++ b/servers/fastapi/models/presentation_with_slides.py @@ -0,0 +1,29 @@ +from typing import Any, List, Optional +from datetime import datetime +import uuid + +from pydantic import BaseModel + +from models.sql.slide import SlideModel + + +class PresentationWithSlides(BaseModel): + id: uuid.UUID + version: Optional[str] = None + content: str + n_slides: int + language: str + title: Optional[str] = None + created_at: datetime + updated_at: datetime + tone: Optional[str] = None + verbosity: Optional[str] = None + slides: List[SlideModel] + layout: Optional[dict] = None + structure: Optional[dict] = None + theme: Optional[dict] = None + fonts: Optional[Any] = None + + +class PresentationDetailWithSlides(PresentationWithSlides): + merged_components: Optional[Any] = None diff --git a/servers/fastapi/models/slide_layout_index.py b/servers/fastapi/models/slide_layout_index.py new file mode 100644 index 0000000..e519742 --- /dev/null +++ b/servers/fastapi/models/slide_layout_index.py @@ -0,0 +1,5 @@ +from pydantic import BaseModel + + +class SlideLayoutIndex(BaseModel): + index: int diff --git a/servers/fastapi/models/sql/async_presentation_generation_status.py b/servers/fastapi/models/sql/async_presentation_generation_status.py new file mode 100644 index 0000000..0431b04 --- /dev/null +++ b/servers/fastapi/models/sql/async_presentation_generation_status.py @@ -0,0 +1,22 @@ +from datetime import datetime +import secrets +from typing import Optional +import uuid + +from sqlalchemy import JSON, Column +from sqlmodel import Field, SQLModel + + +class AsyncPresentationGenerationTaskModel(SQLModel, table=True): + + __tablename__ = "async_presentation_generation_tasks" + + id: str = Field( + default_factory=lambda: f"task-{secrets.token_hex(32)}", primary_key=True + ) + status: str + message: Optional[str] = None + error: Optional[dict] = Field(sa_column=Column(JSON), default=None) + created_at: datetime = Field(default_factory=datetime.now) + updated_at: datetime = Field(default_factory=datetime.now) + data: Optional[dict] = Field(sa_column=Column(JSON), default=None) diff --git a/servers/fastapi/models/sql/async_task.py b/servers/fastapi/models/sql/async_task.py new file mode 100644 index 0000000..128296a --- /dev/null +++ b/servers/fastapi/models/sql/async_task.py @@ -0,0 +1,37 @@ +from datetime import datetime +import secrets +from typing import Any, Optional + +from sqlalchemy import JSON, Column, DateTime +from sqlmodel import Field, SQLModel + +from utils.datetime_utils import get_current_utc_datetime + + +class AsyncTaskModel(SQLModel, table=True): + __tablename__ = "async_tasks" + + id: str = Field( + default_factory=lambda: f"task-{secrets.token_hex(32)}", + primary_key=True, + ) + type: str = Field(index=True) + status: str = Field(index=True) + message: Optional[str] = None + error: Optional[dict[str, Any]] = Field(sa_column=Column(JSON), default=None) + data: Optional[dict[str, Any]] = Field(sa_column=Column(JSON), default=None) + created_at: datetime = Field( + sa_column=Column( + DateTime(timezone=True), + nullable=False, + default=get_current_utc_datetime, + ) + ) + updated_at: datetime = Field( + sa_column=Column( + DateTime(timezone=True), + nullable=False, + default=get_current_utc_datetime, + onupdate=get_current_utc_datetime, + ) + ) diff --git a/servers/fastapi/models/sql/chat_history_message.py b/servers/fastapi/models/sql/chat_history_message.py new file mode 100644 index 0000000..a0d5073 --- /dev/null +++ b/servers/fastapi/models/sql/chat_history_message.py @@ -0,0 +1,41 @@ +from datetime import datetime +from typing import Optional +import uuid + +from sqlalchemy import JSON, Column, DateTime, ForeignKey, String, Text +from sqlmodel import Field, SQLModel + +from utils.datetime_utils import get_current_utc_datetime + + +class ChatHistoryMessageModel(SQLModel, table=True): + __tablename__ = "chat_history_messages" + + id: uuid.UUID = Field(default_factory=uuid.uuid4, primary_key=True) + presentation_id: Optional[uuid.UUID] = Field( + default=None, + sa_column=Column( + ForeignKey("presentations.id", ondelete="CASCADE"), + index=True, + nullable=True, + ) + ) + template_v2_id: Optional[str] = Field( + default=None, + sa_column=Column( + String, + ForeignKey("template_v2.id", ondelete="CASCADE"), + index=True, + nullable=True, + ) + ) + conversation_id: uuid.UUID = Field(index=True) + position: int = Field(index=True, ge=1) + role: str + content: str = Field(sa_column=Column(Text, nullable=False)) + created_at: datetime = Field( + sa_column=Column( + DateTime(timezone=True), nullable=False, default=get_current_utc_datetime + ) + ) + tool_calls: Optional[list[str]] = Field(sa_column=Column(JSON), default=None) diff --git a/servers/fastapi/models/sql/font_upload.py b/servers/fastapi/models/sql/font_upload.py new file mode 100644 index 0000000..d7bf1c3 --- /dev/null +++ b/servers/fastapi/models/sql/font_upload.py @@ -0,0 +1,31 @@ +from datetime import datetime +from typing import Optional +import uuid + +from sqlalchemy import JSON, Column, DateTime, Integer, String +from sqlmodel import Field, SQLModel + +from utils.datetime_utils import get_current_utc_datetime + + +class FontUpload(SQLModel, table=True): + __tablename__ = "font_uploads" + + id: uuid.UUID = Field(default_factory=uuid.uuid4, primary_key=True) + created_at: datetime = Field( + sa_column=Column( + DateTime(timezone=True), nullable=False, default=get_current_utc_datetime + ), + ) + filename: str + path: str + normalized_family_name: str = Field(index=True) + family_name: Optional[str] = Field(sa_column=Column(String), default=None) + subfamily_name: Optional[str] = Field(sa_column=Column(String), default=None) + full_name: Optional[str] = Field(sa_column=Column(String), default=None) + postscript_name: Optional[str] = Field(sa_column=Column(String), default=None) + weight_class: Optional[int] = Field(sa_column=Column(Integer), default=None) + width_class: Optional[int] = Field(sa_column=Column(Integer), default=None) + format: Optional[str] = Field(sa_column=Column(String), default=None) + size_bytes: int + extras: Optional[dict] = Field(sa_column=Column(JSON), default=None) diff --git a/servers/fastapi/models/sql/image_asset.py b/servers/fastapi/models/sql/image_asset.py new file mode 100644 index 0000000..3efc99c --- /dev/null +++ b/servers/fastapi/models/sql/image_asset.py @@ -0,0 +1,20 @@ +from datetime import datetime +from typing import Optional +import uuid + +from sqlalchemy import JSON, Column, DateTime +from sqlmodel import Field, SQLModel + +from utils.datetime_utils import get_current_utc_datetime + + +class ImageAsset(SQLModel, table=True): + id: uuid.UUID = Field(default_factory=uuid.uuid4, primary_key=True) + created_at: datetime = Field( + sa_column=Column( + DateTime(timezone=True), nullable=False, default=get_current_utc_datetime + ), + ) + is_uploaded: bool = Field(default=False) + path: str + extras: Optional[dict] = Field(sa_column=Column(JSON), default=None) diff --git a/servers/fastapi/models/sql/key_value.py b/servers/fastapi/models/sql/key_value.py new file mode 100644 index 0000000..c7296ac --- /dev/null +++ b/servers/fastapi/models/sql/key_value.py @@ -0,0 +1,8 @@ +import uuid +from sqlmodel import Field, Column, JSON, SQLModel + + +class KeyValueSqlModel(SQLModel, table=True): + id: uuid.UUID = Field(default_factory=uuid.uuid4, primary_key=True) + key: str = Field(index=True) + value: dict = Field(sa_column=Column(JSON)) diff --git a/servers/fastapi/models/sql/ollama_pull_status.py b/servers/fastapi/models/sql/ollama_pull_status.py new file mode 100644 index 0000000..a9fa10a --- /dev/null +++ b/servers/fastapi/models/sql/ollama_pull_status.py @@ -0,0 +1,9 @@ +from datetime import datetime +import uuid +from sqlmodel import Field, Column, JSON, SQLModel, DateTime + + +class OllamaPullStatus(SQLModel, table=True): + id: str = Field(primary_key=True) + last_updated: datetime = Field(sa_column=Column(DateTime, default=datetime.now)) + status: dict = Field(sa_column=Column(JSON)) diff --git a/servers/fastapi/models/sql/presentation.py b/servers/fastapi/models/sql/presentation.py new file mode 100644 index 0000000..db65dfd --- /dev/null +++ b/servers/fastapi/models/sql/presentation.py @@ -0,0 +1,105 @@ +from datetime import datetime +from enum import Enum +from typing import List, Optional +import uuid +import copy +from sqlalchemy import JSON, Column, DateTime, Enum as SAEnum, String +from sqlmodel import Boolean, Field, SQLModel + +from models.presentation_outline_model import PresentationOutlineModel +from models.presentation_structure_model import PresentationStructureModel +from models.presentation_layout import PresentationLayoutModel +from utils.datetime_utils import get_current_utc_datetime + + +class PresentationVersion(str, Enum): + V1_STANDARD = "v1-standard" + V2_STANDARD = "v2-standard" + + +class PresentationModel(SQLModel, table=True): + __tablename__ = "presentations" + + id: uuid.UUID = Field(primary_key=True, default_factory=uuid.uuid4) + version: PresentationVersion = Field( + sa_column=Column( + SAEnum( + PresentationVersion, + values_callable=lambda enum: [item.value for item in enum], + name="presentation_version", + native_enum=False, + create_constraint=True, + ), + nullable=False, + ), + ) + content: str + n_slides: int + language: str + title: Optional[str] = None + file_paths: Optional[List[str]] = Field(sa_column=Column(JSON), default=None) + outlines: Optional[dict] = Field(sa_column=Column(JSON), default=None) + created_at: datetime = Field( + sa_column=Column( + DateTime(timezone=True), nullable=False, default=get_current_utc_datetime + ), + ) + updated_at: datetime = Field( + sa_column=Column( + DateTime(timezone=True), + nullable=False, + default=get_current_utc_datetime, + onupdate=get_current_utc_datetime, + ), + ) + layout: Optional[dict] = Field(sa_column=Column(JSON), default=None) + structure: Optional[dict] = Field(sa_column=Column(JSON), default=None) + instructions: Optional[str] = Field(sa_column=Column(String), default=None) + tone: Optional[str] = Field(sa_column=Column(String), default=None) + verbosity: Optional[str] = Field(sa_column=Column(String), default=None) + include_table_of_contents: bool = Field(sa_column=Column(Boolean), default=False) + include_title_slide: bool = Field(sa_column=Column(Boolean), default=True) + web_search: bool = Field(sa_column=Column(Boolean), default=False) + theme: Optional[dict] = Field(sa_column=Column(JSON), default=None) + fonts: Optional[dict] = Field(sa_column=Column(JSON), default=None) + + def get_new_presentation(self): + return PresentationModel( + id=uuid.uuid4(), + version=self.version, + content=self.content, + n_slides=self.n_slides, + language=self.language, + title=self.title, + file_paths=copy.deepcopy(self.file_paths), + outlines=copy.deepcopy(self.outlines), + layout=copy.deepcopy(self.layout), + structure=copy.deepcopy(self.structure), + instructions=self.instructions, + tone=self.tone, + verbosity=self.verbosity, + include_table_of_contents=self.include_table_of_contents, + include_title_slide=self.include_title_slide, + web_search=self.web_search, + theme=copy.deepcopy(self.theme), + fonts=copy.deepcopy(self.fonts), + ) + + def get_presentation_outline(self): + if not self.outlines: + return None + return PresentationOutlineModel(**self.outlines) + + def get_layout(self): + return PresentationLayoutModel(**self.layout) + + def set_layout(self, layout: PresentationLayoutModel): + self.layout = layout.model_dump() + + def get_structure(self): + if not self.structure: + return None + return PresentationStructureModel(**self.structure) + + def set_structure(self, structure: PresentationStructureModel): + self.structure = structure.model_dump() diff --git a/servers/fastapi/models/sql/presentation_layout_code.py b/servers/fastapi/models/sql/presentation_layout_code.py new file mode 100644 index 0000000..636ba58 --- /dev/null +++ b/servers/fastapi/models/sql/presentation_layout_code.py @@ -0,0 +1,38 @@ +from datetime import datetime +from typing import Optional +import uuid + +from sqlalchemy import JSON, Column, DateTime, Text +from sqlmodel import Field, SQLModel + +from utils.datetime_utils import get_current_utc_datetime + + +class PresentationLayoutCodeModel(SQLModel, table=True): + __tablename__ = "presentation_layout_codes" + + id: Optional[int] = Field(default=None, primary_key=True) + presentation: uuid.UUID = Field(index=True, description="UUID of the presentation") + layout_id: str = Field(description="Unique identifier for the layout") + layout_name: str = Field(description="Display name of the layout") + layout_code: str = Field( + sa_column=Column(Text), description="TSX/React component code for the layout" + ) + fonts: Optional[dict[str, str] | list[str]] = Field( + default=None, + sa_column=Column(JSON, nullable=True), + description="Optional font metadata associated with the layout", + ) + created_at: datetime = Field( + sa_column=Column( + DateTime(timezone=True), nullable=False, default=get_current_utc_datetime + ) + ) + updated_at: datetime = Field( + sa_column=Column( + DateTime(timezone=True), + nullable=False, + default=get_current_utc_datetime, + onupdate=get_current_utc_datetime, + ), + ) diff --git a/servers/fastapi/models/sql/slide.py b/servers/fastapi/models/sql/slide.py new file mode 100644 index 0000000..25a7065 --- /dev/null +++ b/servers/fastapi/models/sql/slide.py @@ -0,0 +1,36 @@ +from typing import Optional +import uuid +import copy +from sqlalchemy import ForeignKey +from sqlmodel import Field, Column, JSON, SQLModel + + +class SlideModel(SQLModel, table=True): + __tablename__ = "slides" + + id: uuid.UUID = Field(primary_key=True, default_factory=uuid.uuid4) + presentation: uuid.UUID = Field( + sa_column=Column(ForeignKey("presentations.id", ondelete="CASCADE"), index=True) + ) + layout_group: str + layout: str + index: int + content: dict = Field(sa_column=Column(JSON)) + html_content: Optional[str] = None + speaker_note: Optional[str] = None + properties: Optional[dict] = Field(sa_column=Column(JSON)) + ui: Optional[dict] = Field(default=None, sa_column=Column(JSON, nullable=True)) + + def get_new_slide(self, presentation: uuid.UUID, content: Optional[dict] = None): + return SlideModel( + id=uuid.uuid4(), + presentation=presentation, + layout_group=self.layout_group, + layout=self.layout, + index=self.index, + speaker_note=self.speaker_note, + content=copy.deepcopy(content or self.content), + html_content=self.html_content, + properties=copy.deepcopy(self.properties), + ui=copy.deepcopy(self.ui), + ) diff --git a/servers/fastapi/models/sql/template.py b/servers/fastapi/models/sql/template.py new file mode 100644 index 0000000..f372715 --- /dev/null +++ b/servers/fastapi/models/sql/template.py @@ -0,0 +1,27 @@ +from datetime import datetime +from typing import Optional +import uuid + +from sqlalchemy import Column, DateTime +from sqlmodel import Field, SQLModel + +from utils.datetime_utils import get_current_utc_datetime + + +class TemplateModel(SQLModel, table=True): + __tablename__ = "templates" + + id: uuid.UUID = Field( + default_factory=uuid.uuid4, + primary_key=True, + description="UUID for the template (matches presentation_id)", + ) + name: str = Field(description="Human friendly template name") + description: Optional[str] = Field( + default=None, description="Optional template description" + ) + created_at: datetime = Field( + sa_column=Column( + DateTime(timezone=True), nullable=False, default=get_current_utc_datetime + ), + ) diff --git a/servers/fastapi/models/sql/template_create_info.py b/servers/fastapi/models/sql/template_create_info.py new file mode 100644 index 0000000..ce36358 --- /dev/null +++ b/servers/fastapi/models/sql/template_create_info.py @@ -0,0 +1,25 @@ +from datetime import datetime +import uuid + +from sqlalchemy import JSON, Column, DateTime +from sqlmodel import Field, SQLModel + +from utils.datetime_utils import get_current_utc_datetime + + +class TemplateCreateInfoModel(SQLModel, table=True): + __tablename__ = "template_create_infos" + + id: uuid.UUID = Field(default_factory=uuid.uuid4, primary_key=True) + fonts: dict[str, str] | None = Field( + default=None, + sa_column=Column(JSON, nullable=True), + ) + pptx_url: str | None = Field(default=None) + slide_htmls: list[str] = Field(sa_column=Column(JSON, nullable=False)) + slide_image_urls: list[str] = Field(sa_column=Column(JSON, nullable=False)) + created_at: datetime = Field( + sa_column=Column( + DateTime(timezone=True), nullable=False, default=get_current_utc_datetime + ) + ) diff --git a/servers/fastapi/models/sql/template_v2.py b/servers/fastapi/models/sql/template_v2.py new file mode 100644 index 0000000..5d536d1 --- /dev/null +++ b/servers/fastapi/models/sql/template_v2.py @@ -0,0 +1,49 @@ +from datetime import datetime +from typing import Optional +import uuid + +from sqlmodel import Field, SQLModel +from sqlalchemy import JSON, Column, DateTime + +from utils.datetime_utils import get_current_utc_datetime + + +def _new_template_v2_id() -> str: + return str(uuid.uuid4()) + + +class TemplateV2(SQLModel, table=True): + __tablename__ = "template_v2" + + id: str = Field(primary_key=True, default_factory=_new_template_v2_id) + name: str = Field(nullable=False) + description: Optional[str] = Field(default=None, nullable=True) + raw_layouts: Optional[dict] = Field( + default=None, sa_column=Column(JSON, nullable=True) + ) + components: Optional[dict] = Field( + default=None, sa_column=Column(JSON, nullable=True) + ) + merged_components: Optional[dict] = Field( + default=None, sa_column=Column(JSON, nullable=True) + ) + layouts: Optional[dict] = Field( + default=None, sa_column=Column(JSON, nullable=True) + ) + assets: Optional[dict] = Field( + default=None, sa_column=Column(JSON, nullable=True) + ) + is_default: bool = Field(default=False, nullable=False) + created_at: datetime = Field( + sa_column=Column( + DateTime(timezone=True), nullable=False, default=get_current_utc_datetime + ) + ) + updated_at: datetime = Field( + sa_column=Column( + DateTime(timezone=True), + nullable=False, + default=get_current_utc_datetime, + onupdate=get_current_utc_datetime, + ) + ) diff --git a/servers/fastapi/models/sql/webhook_subscription.py b/servers/fastapi/models/sql/webhook_subscription.py new file mode 100644 index 0000000..7dfe075 --- /dev/null +++ b/servers/fastapi/models/sql/webhook_subscription.py @@ -0,0 +1,22 @@ +import secrets +from typing import Optional +import uuid +from datetime import datetime +from sqlmodel import Column, DateTime, Field, SQLModel + +from utils.datetime_utils import get_current_utc_datetime + + +class WebhookSubscription(SQLModel, table=True): + __tablename__ = "webhook_subscriptions" + + id: str = Field( + default_factory=lambda: f"webhook-{secrets.token_hex(32)}", primary_key=True + ) + created_at: datetime = Field( + sa_column=Column(DateTime(timezone=True), nullable=False), + default_factory=get_current_utc_datetime, + ) + url: str + secret: Optional[str] = None + event: str = Field(index=True) diff --git a/servers/fastapi/models/sse_response.py b/servers/fastapi/models/sse_response.py new file mode 100644 index 0000000..64213f0 --- /dev/null +++ b/servers/fastapi/models/sse_response.py @@ -0,0 +1,49 @@ +import json + +from pydantic import BaseModel + + +class SSEResponse(BaseModel): + event: str + data: str + + def to_string(self): + return f"event: {self.event}\ndata: {self.data}\n\n" + + +class SSEStatusResponse(BaseModel): + status: str + + def to_string(self): + return SSEResponse( + event="response", data=json.dumps({"type": "status", "status": self.status}) + ).to_string() + + +class SSETraceResponse(BaseModel): + trace: object + + def to_string(self): + return SSEResponse( + event="response", data=json.dumps({"type": "trace", "trace": self.trace}) + ).to_string() + + +class SSEErrorResponse(BaseModel): + detail: str + + def to_string(self): + return SSEResponse( + event="response", data=json.dumps({"type": "error", "detail": self.detail}) + ).to_string() + + +class SSECompleteResponse(BaseModel): + key: str + value: object + + def to_string(self): + return SSEResponse( + event="response", + data=json.dumps({"type": "complete", self.key: self.value}), + ).to_string() diff --git a/servers/fastapi/models/theme_data.py b/servers/fastapi/models/theme_data.py new file mode 100644 index 0000000..1383b33 --- /dev/null +++ b/servers/fastapi/models/theme_data.py @@ -0,0 +1,41 @@ +from pydantic import BaseModel +from typing import Dict + + +class ThemeData(BaseModel): + primary: str + background: str + card: str + stroke: str + background_text: str + primary_text: str + graph_0: str + graph_1: str + graph_2: str + graph_3: str + graph_4: str + graph_5: str + graph_6: str + graph_7: str + graph_8: str + graph_9: str + + +class GeneratedColorPalette(BaseModel): + primary: str + background: str + accent_1: str + accent_2: str + text_1: str + text_2: str + primary_variations: Dict[str, str] + background_variations: Dict[str, str] + accent_1_variations: Dict[str, str] + accent_2_variations: Dict[str, str] + primary_lightness: float + background_lightness: float + accent_1_lightness: float + accent_2_lightness: float + text_1_lightness: float + text_2_lightness: float + diff --git a/servers/fastapi/models/user_config.py b/servers/fastapi/models/user_config.py new file mode 100644 index 0000000..b8d4eef --- /dev/null +++ b/servers/fastapi/models/user_config.py @@ -0,0 +1,134 @@ +from typing import Optional +from pydantic import BaseModel + + +class UserConfig(BaseModel): + LLM: Optional[str] = None + + # OpenAI + OPENAI_API_KEY: Optional[str] = None + OPENAI_MODEL: Optional[str] = None + + # Google + GOOGLE_API_KEY: Optional[str] = None + GOOGLE_MODEL: Optional[str] = None + + # Vertex AI + VERTEX_API_KEY: Optional[str] = None + VERTEX_MODEL: Optional[str] = None + VERTEX_PROJECT: Optional[str] = None + VERTEX_LOCATION: Optional[str] = None + VERTEX_BASE_URL: Optional[str] = None + + # Azure OpenAI + AZURE_OPENAI_API_KEY: Optional[str] = None + AZURE_OPENAI_MODEL: Optional[str] = None + AZURE_OPENAI_ENDPOINT: Optional[str] = None + AZURE_OPENAI_BASE_URL: Optional[str] = None + AZURE_OPENAI_API_VERSION: Optional[str] = None + AZURE_OPENAI_DEPLOYMENT: Optional[str] = None + + # Amazon Bedrock + BEDROCK_REGION: Optional[str] = None + BEDROCK_API_KEY: Optional[str] = None + BEDROCK_AWS_ACCESS_KEY_ID: Optional[str] = None + BEDROCK_AWS_SECRET_ACCESS_KEY: Optional[str] = None + BEDROCK_AWS_SESSION_TOKEN: Optional[str] = None + BEDROCK_PROFILE_NAME: Optional[str] = None + BEDROCK_MODEL: Optional[str] = None + + # OpenRouter + OPENROUTER_API_KEY: Optional[str] = None + OPENROUTER_MODEL: Optional[str] = None + OPENROUTER_BASE_URL: Optional[str] = None + + # Fireworks + FIREWORKS_API_KEY: Optional[str] = None + FIREWORKS_MODEL: Optional[str] = None + FIREWORKS_BASE_URL: Optional[str] = None + + # Together AI + TOGETHER_API_KEY: Optional[str] = None + TOGETHER_MODEL: Optional[str] = None + TOGETHER_BASE_URL: Optional[str] = None + + # Cerebras + CEREBRAS_API_KEY: Optional[str] = None + CEREBRAS_MODEL: Optional[str] = None + CEREBRAS_BASE_URL: Optional[str] = None + + # LiteLLM (OpenAI-compatible gateway / proxy) + LITELLM_BASE_URL: Optional[str] = None + LITELLM_API_KEY: Optional[str] = None + LITELLM_MODEL: Optional[str] = None + + # LM Studio (local OpenAI-compatible server) + LMSTUDIO_BASE_URL: Optional[str] = None + LMSTUDIO_API_KEY: Optional[str] = None + LMSTUDIO_MODEL: Optional[str] = None + + # Anthropic + ANTHROPIC_API_KEY: Optional[str] = None + ANTHROPIC_MODEL: Optional[str] = None + + # Ollama + OLLAMA_URL: Optional[str] = None + OLLAMA_MODEL: Optional[str] = None + + # Custom LLM + CUSTOM_LLM_URL: Optional[str] = None + CUSTOM_LLM_API_KEY: Optional[str] = None + CUSTOM_MODEL: Optional[str] = None + + # DeepSeek + DEEPSEEK_BASE_URL: Optional[str] = None + DEEPSEEK_API_KEY: Optional[str] = None + DEEPSEEK_MODEL: Optional[str] = None + + # Image Provider + DISABLE_IMAGE_GENERATION: Optional[bool] = None + IMAGE_PROVIDER: Optional[str] = None + PEXELS_API_KEY: Optional[str] = None + PIXABAY_API_KEY: Optional[str] = None + + # ComfyUI + COMFYUI_URL: Optional[str] = None + COMFYUI_WORKFLOW: Optional[str] = None + + # Open WebUI Image Provider + OPEN_WEBUI_IMAGE_URL: Optional[str] = None + OPEN_WEBUI_IMAGE_API_KEY: Optional[str] = None + + # OpenAI Compatible Image Provider + OPENAI_COMPAT_IMAGE_BASE_URL: Optional[str] = None + OPENAI_COMPAT_IMAGE_API_KEY: Optional[str] = None + OPENAI_COMPAT_IMAGE_MODEL: Optional[str] = None + + # Dalle 3 Quality + DALL_E_3_QUALITY: Optional[str] = None + # Gpt Image 1.5 Quality + GPT_IMAGE_1_5_QUALITY: Optional[str] = None + + # Reasoning + DISABLE_THINKING: Optional[bool] = None + EXTENDED_REASONING: Optional[bool] = None + + # Web Search + WEB_GROUNDING: Optional[bool] = None + WEB_SEARCH_PROVIDER: Optional[str] = None + WEB_SEARCH_MAX_RESULTS: Optional[str] = None + SEARXNG_BASE_URL: Optional[str] = None + TAVILY_API_KEY: Optional[str] = None + EXA_API_KEY: Optional[str] = None + BRAVE_SEARCH_API_KEY: Optional[str] = None + SERPER_API_KEY: Optional[str] = None + + # Codex OAuth (ChatGPT) + CODEX_MODEL: Optional[str] = None + CODEX_ACCESS_TOKEN: Optional[str] = None + CODEX_REFRESH_TOKEN: Optional[str] = None + CODEX_TOKEN_EXPIRES: Optional[str] = None + CODEX_ACCOUNT_ID: Optional[str] = None + CODEX_USERNAME: Optional[str] = None + CODEX_EMAIL: Optional[str] = None + CODEX_IS_PRO: Optional[bool] = None diff --git a/servers/fastapi/openai_spec.json b/servers/fastapi/openai_spec.json new file mode 100644 index 0000000..91a26e1 --- /dev/null +++ b/servers/fastapi/openai_spec.json @@ -0,0 +1,270 @@ +{ + "openapi": "3.1.0", + "info": { + "title": "FastAPI", + "version": "0.1.0" + }, + "paths": { + "/api/v1/ppt/presentation/generate": { + "post": { + "tags": ["Presentation"], + "summary": "Returns base URL of generated presentation's PDF or PPTX.", + "operationId": "generate_presentation", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Body_generate_presentation_api_api_v1_ppt_presentation_generate_post" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/PresentationPathAndEditPath" + } + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + } + } + } + }, + "/api/v1/ppt/template/all": { + "get": { + "tags": ["Template"], + "summary": "Get all templates", + "description": "Returns built-in and custom templates for presentation creation.", + "operationId": "templates_list", + "parameters": [ + { + "name": "include_defaults", + "in": "query", + "required": false, + "schema": { + "type": "boolean", + "default": true, + "title": "Include Defaults" + } + } + ], + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/TemplateDetail" + }, + "title": "Response Get All Templates Api V1 Ppt Template All Get" + } + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + }, + "500": { + "description": "Internal server error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ErrorResponse" + } + } + } + } + } + } + } + }, + "components": { + "schemas": { + "Body_generate_presentation_api_api_v1_ppt_presentation_generate_post": { + "properties": { + "content": { + "type": "string", + "title": "Content", + "description": "The content for generating the presentation" + }, + "n_slides": { + "type": "integer", + "title": "N Slides", + "default": 8 + }, + "language": { + "type": "string", + "title": "Language", + "default": "English" + }, + "template": { + "type": "string", + "title": "Template", + "default": "general" + }, + "files": { + "anyOf": [ + { + "items": { + "type": "string", + "format": "binary" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "title": "Files" + }, + "export_as": { + "type": "string", + "enum": ["pptx", "pdf"], + "title": "Export As", + "default": "pptx" + } + }, + "type": "object", + "required": ["content"], + "title": "Body_generate_presentation_api_api_v1_ppt_presentation_generate_post" + }, + "PresentationPathAndEditPath": { + "properties": { + "presentation_id": { + "type": "string", + "title": "Presentation Id" + }, + "path": { + "type": "string", + "title": "Path" + }, + "edit_path": { + "type": "string", + "title": "Edit Path" + } + }, + "type": "object", + "required": ["presentation_id", "path", "edit_path"], + "title": "PresentationPathAndEditPath" + }, + "HTTPValidationError": { + "properties": { + "detail": { + "items": { + "$ref": "#/components/schemas/ValidationError" + }, + "type": "array", + "title": "Detail" + } + }, + "type": "object", + "title": "HTTPValidationError" + }, + "ValidationError": { + "properties": { + "loc": { + "items": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "integer" + } + ] + }, + "type": "array", + "title": "Location" + }, + "msg": { + "type": "string", + "title": "Message" + }, + "type": { + "type": "string", + "title": "Error Type" + } + }, + "type": "object", + "required": ["loc", "msg", "type"], + "title": "ValidationError" + }, + "TemplateDetail": { + "properties": { + "id": { + "type": "string", + "title": "Id" + }, + "name": { + "type": "string", + "title": "Name" + }, + "total_layouts": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "title": "Total Layouts" + } + }, + "type": "object", + "required": ["id", "name"], + "title": "TemplateDetail" + }, + "ErrorResponse": { + "properties": { + "success": { + "type": "boolean", + "title": "Success", + "default": false + }, + "detail": { + "type": "string", + "title": "Detail" + }, + "error_code": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Error Code" + } + }, + "type": "object", + "required": ["detail"], + "title": "ErrorResponse" + } + } + } +} \ No newline at end of file diff --git a/servers/fastapi/placeholder b/servers/fastapi/placeholder new file mode 100644 index 0000000..aa73729 Binary files /dev/null and b/servers/fastapi/placeholder differ diff --git a/servers/fastapi/pyproject.toml b/servers/fastapi/pyproject.toml new file mode 100644 index 0000000..a1db2aa --- /dev/null +++ b/servers/fastapi/pyproject.toml @@ -0,0 +1,82 @@ +[build-system] +requires = ["setuptools>=77", "wheel"] +build-backend = "setuptools.build_meta" + +[project] +name = "presenton-backend" +version = "0.1.0" +description = "Add your description here" +license = "Apache-2.0" +license-files = ["LICENSE", "NOTICE"] +requires-python = ">=3.11,<3.12" +dependencies = [ + "alembic>=1.14.0", + "aiohttp>=3.12.15", + "aiomysql>=0.2.0", + "aiosqlite>=0.21.0", + "asyncpg>=0.30.0", + "dirtyjson>=1.0.8", + "fastapi[standard]>=0.116.1", + "fastembed-vectorstore>=0.5.2", + "fastmcp>=2.11.0", + "greenlet>=3.0.3", + "google-genai>=1.28.0", + "mem0ai[nlp]>=0.1.115", + "nltk>=3.9.1", + "openai>=1.98.0", + "pathvalidate>=3.3.1", + "pdfplumber>=0.11.7", + "pillow>=12.2.0", + "psycopg[binary]>=3.2.0", + "sqlmodel>=0.0.24", + "llmai==0.2.8", + "jsonschema>=4.26.0", + "python-pptx>=1.0.2", + "fonttools>=4.55.0", +] + +[tool.uv] +index-strategy = "unsafe-best-match" + +[tool.setuptools.packages.find] +where = ["."] +include = [ + "api*", + "enums*", + "models*", + "services*", + "constants*", + "utils*", + "templates*", +] + +[tool.pyright] +typeCheckingMode = "off" + +[dependency-groups] +dev = [ + "pytest>=9.0.3", + "pytest-cov>=7.1.0", +] + +[tool.pytest.ini_options] +testpaths = ["tests"] + +# Line coverage defaults (omit non-runtime / generated paths). Branch coverage doubles +# the work for marginal signal; optimize for deterministic statement coverage runs. +[tool.coverage.run] +branch = false +relative_files = true +source = ["."] +omit = [ + "tests/*", + "**/.venv/*", + "**/venv/*", + "alembic/versions/*", + "scripts/*", +] + +[tool.coverage.report] +precision = 1 +skip_empty = true +show_missing = true diff --git a/servers/fastapi/scripts/warm_fastembed_cache.py b/servers/fastapi/scripts/warm_fastembed_cache.py new file mode 100644 index 0000000..18aa64f --- /dev/null +++ b/servers/fastapi/scripts/warm_fastembed_cache.py @@ -0,0 +1,49 @@ +"""Pre-download FastEmbed / Hugging Face weights at Docker image build time. + +Icon search uses AllMiniLML6V2 into ``fastembed_cache`` under the package tree. +Mem0 OSS defaults to ``BAAI/bge-small-en-v1.5`` via Hugging Face Hub under +``HF_HOME`` (default ``~/.cache/huggingface``). +""" + +from pathlib import Path +import os +import sys + + +FASTAPI_ROOT = Path(__file__).resolve().parents[1] +if str(FASTAPI_ROOT) not in sys.path: + sys.path.insert(0, str(FASTAPI_ROOT)) + + +from services.icon_finder_service import ICON_FINDER_SERVICE + + +def _warm_mem0_default_fastembed() -> None: + provider = (os.getenv("MEM0_EMBEDDER_PROVIDER") or "fastembed").strip() or "fastembed" + if provider != "fastembed": + print( + f"Skipping Mem0 embedder warmup (MEM0_EMBEDDER_PROVIDER={provider!r}, not fastembed)" + ) + return + model = (os.getenv("MEM0_EMBEDDER_MODEL") or "BAAI/bge-small-en-v1.5").strip() or ( + "BAAI/bge-small-en-v1.5" + ) + from fastembed import TextEmbedding + + embedder = TextEmbedding(model_name=model) + next(embedder.embed(["warmup"])) + print(f"Mem0 default fastembed model warmed: {model}") + + +def main() -> None: + if not ICON_FINDER_SERVICE.ensure_initialized(): + raise RuntimeError("Failed to prepare fastembed cache for icon search") + + print( + f"Fastembed cache prepared at {ICON_FINDER_SERVICE.cache_directory}" + ) + _warm_mem0_default_fastembed() + + +if __name__ == "__main__": + main() diff --git a/servers/fastapi/server.py b/servers/fastapi/server.py new file mode 100644 index 0000000..d8dbe8b --- /dev/null +++ b/servers/fastapi/server.py @@ -0,0 +1,33 @@ +import uvicorn +import argparse +import os +from api.main import app + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description="Run the FastAPI server") + parser.add_argument( + "--port", type=int, required=True, help="Port number to run the server on" + ) + parser.add_argument( + "--reload", type=str, default="false", help="Reload the server on code changes" + ) + parser.add_argument( + "--log-level", + type=str, + default="info", + help="Uvicorn log level", + ) + args = parser.parse_args() + reload = args.reload == "true" + host = "127.0.0.1" + + # Bind asset/base URL generation to the active runtime port (same env name as Next/Electron). + os.environ["NEXT_PUBLIC_FAST_API"] = f"http://{host}:{args.port}" + + uvicorn.run( + "api.main:app", + host=host, + port=args.port, + log_level=args.log_level, + reload=reload, + ) diff --git a/servers/fastapi/server.spec b/servers/fastapi/server.spec new file mode 100644 index 0000000..ee9fb4d --- /dev/null +++ b/servers/fastapi/server.spec @@ -0,0 +1,131 @@ +# -*- mode: python ; coding: utf-8 -*- +import os +from PyInstaller.utils.hooks import collect_all, collect_submodules + + +def safe_collect_submodules(package_name): + try: + return collect_submodules(package_name) + except Exception: + return [] + + +def safe_collect_all(package_name): + try: + return collect_all(package_name) + except Exception: + # Some optional packages are platform-dependent. + return [], [], [] + + +datas_fastembed, binaries_fastembed, hiddenimports_fastembed = safe_collect_all( + "fastembed" +) +datas_fastembed_vs, binaries_fastembed_vs, hiddenimports_fastembed_vs = ( + safe_collect_all("fastembed_vectorstore") +) +datas_onnx, binaries_onnx, hiddenimports_onnx = safe_collect_all("onnxruntime") +datas_pptx, binaries_pptx, hiddenimports_pptx = safe_collect_all("pptx") +datas_docx2everything, binaries_docx2everything, hiddenimports_docx2everything = ( + safe_collect_all("docx2everything") +) +datas_greenlet, binaries_greenlet, hiddenimports_greenlet = safe_collect_all( + "greenlet" +) + +datas_spacy, binaries_spacy, hiddenimports_spacy = safe_collect_all("spacy") +datas_spacy_model, binaries_spacy_model, hiddenimports_spacy_model = ( + safe_collect_all("en_core_web_sm") +) + +datas_fastembed_cache = ( + [("fastembed_cache", "fastembed_cache")] if os.path.isdir("fastembed_cache") else [] +) + +# mem0 validates vector store configs via dynamic __import__(mem0.configs.vector_stores.{provider}); +# PyInstaller does not trace those. Embedder/vector classes are loaded by string path at runtime. +hiddenimports_mem0 = safe_collect_submodules("mem0.configs.vector_stores") + [ + "mem0.embeddings.fastembed", + "mem0.llms.openai", + "mem0.vector_stores.qdrant", +] + +a = Analysis( + ["server.py"], + pathex=[], + binaries=binaries_fastembed + + binaries_fastembed_vs + + binaries_onnx + + binaries_pptx + + binaries_docx2everything + + binaries_greenlet + + binaries_spacy + + binaries_spacy_model, + datas=[ + ("assets", "assets"), + ("static", "static"), + ("alembic", "alembic"), + ] + + datas_fastembed_cache + + datas_fastembed + + datas_fastembed_vs + + datas_onnx + + datas_pptx + + datas_docx2everything + + datas_greenlet + + datas_spacy + + datas_spacy_model, + hiddenimports=[ + "aiosqlite", + "alembic", + "sqlite3", + "numpy", + "pandas", + "greenlet", + "greenlet._greenlet", + "importlib.metadata", + ] + + hiddenimports_fastembed + + hiddenimports_fastembed_vs + + hiddenimports_onnx + + hiddenimports_pptx + + hiddenimports_docx2everything + + hiddenimports_greenlet + + hiddenimports_spacy + + hiddenimports_spacy_model + + hiddenimports_mem0, + hookspath=[], + hooksconfig={}, + runtime_hooks=[], + excludes=[], + noarchive=False, + optimize=0, +) +pyz = PYZ(a.pure) + +exe = EXE( + pyz, + a.scripts, + [], + exclude_binaries=True, + name="fastapi", + debug=False, + bootloader_ignore_signals=False, + strip=False, + upx=False, + console=False, + disable_windowed_traceback=False, + argv_emulation=False, + target_arch=None, + codesign_identity=None, + entitlements_file=None, +) +coll = COLLECT( + exe, + a.binaries, + a.datas, + strip=False, + upx=False, + upx_exclude=[], + name="fastapi", +) diff --git a/servers/fastapi/services/__init__.py b/servers/fastapi/services/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/servers/fastapi/services/chat/__init__.py b/servers/fastapi/services/chat/__init__.py new file mode 100644 index 0000000..b11ffd0 --- /dev/null +++ b/servers/fastapi/services/chat/__init__.py @@ -0,0 +1,8 @@ +from services.chat.service import ChatTurnResult, PresentationChatService +from services.chat.presentation_context_store import PresentationContextStore + +__all__ = [ + "ChatTurnResult", + "PresentationChatService", + "PresentationContextStore", +] diff --git a/servers/fastapi/services/chat/chat_memory_store.py b/servers/fastapi/services/chat/chat_memory_store.py new file mode 100644 index 0000000..8031764 --- /dev/null +++ b/servers/fastapi/services/chat/chat_memory_store.py @@ -0,0 +1,350 @@ +import asyncio +from datetime import datetime, timezone +import logging +import os +from typing import Any, Optional +from uuid import UUID + +from services.mem0_oss_memory import get_shared_mem0_client + +LOGGER = logging.getLogger(__name__) +CHAT_TURN_TAG = "[chat_turn]" +DEFAULT_MAX_STORED_TURNS = 20 + + +class ChatMemoryStore: + def __init__(self): + self._enabled = self._to_bool(os.getenv("MEM0_ENABLED"), default=True) + self._runtime_enabled = True + self._top_k = self._to_int(os.getenv("MEM0_TOP_K"), default=8) + self._max_context_chars = self._to_int( + os.getenv("MEM0_MAX_CONTEXT_CHARS"), default=6000 + ) + self._max_stored_turns = self._to_int( + os.getenv("CHAT_MAX_STORED_TURNS"), default=DEFAULT_MAX_STORED_TURNS + ) + self._namespace_prefix = ( + os.getenv("MEM0_CHAT_NAMESPACE_PREFIX") + or os.getenv("MEM0_PRESENTATION_NAMESPACE_PREFIX") + or "presentation" + ).strip() or "presentation" + + @staticmethod + def _to_bool(value: Optional[str], default: bool = False) -> bool: + if value is None: + return default + return str(value).strip().lower() in {"1", "true", "yes", "on"} + + @staticmethod + def _to_int(value: Optional[str], default: int) -> int: + try: + parsed = int(value) if value is not None else default + return max(1, parsed) + except Exception: + return default + + @staticmethod + def _normalize(value: str) -> str: + return " ".join((value or "").split()) + + @staticmethod + def _is_nonfatal_mem0_error(exc: BaseException) -> bool: + return isinstance(exc, (Exception, SystemExit)) + + def _scope_user_id(self, presentation_id: UUID, conversation_id: UUID) -> str: + return ( + f"{self._namespace_prefix}:{presentation_id}:" + f"conversation:{conversation_id}" + ) + + def _truncate(self, text: str, limit: int = 20000) -> str: + if len(text) <= limit: + return text + return f"{text[:limit]}\n\n[TRUNCATED]" + + async def _get_client(self): + if not self._enabled or not self._runtime_enabled: + return None + return get_shared_mem0_client() + + def _disable_runtime(self, reason: str, *, exc: BaseException | None = None) -> None: + if not self._runtime_enabled: + return + self._runtime_enabled = False + if exc is None: + LOGGER.warning("Mem0 chat memory disabled for this process: %s", reason) + return + LOGGER.exception( + "Mem0 chat memory disabled for this process: %s", + reason, + exc_info=exc, + ) + + def _build_turn_payload(self, *, user_text: str, assistant_text: str) -> str: + memory_lines = [ + CHAT_TURN_TAG, + f"turn_created_at={datetime.now(timezone.utc).isoformat()}", + ] + if user_text: + memory_lines.append(f"user={user_text}") + if assistant_text: + memory_lines.append(f"assistant={assistant_text}") + return "\n".join(memory_lines) + + @staticmethod + def _extract_text_field(item: dict[str, Any]) -> str: + memory_text = item.get("memory") or item.get("text") or item.get("data") + return str(memory_text).strip() if memory_text is not None else "" + + def _collect_results(self, response: Any) -> list[dict[str, Any]]: + if isinstance(response, dict): + raw_results = ( + response.get("results") + or response.get("memories") + or response.get("items") + or [] + ) + if isinstance(raw_results, list): + return [item for item in raw_results if isinstance(item, dict)] + return [] + if isinstance(response, list): + return [item for item in response if isinstance(item, dict)] + return [] + + @staticmethod + def _safe_parse_datetime(raw_value: Any) -> datetime | None: + if not isinstance(raw_value, str) or not raw_value.strip(): + return None + value = raw_value.strip().replace("Z", "+00:00") + try: + parsed = datetime.fromisoformat(value) + if parsed.tzinfo is None: + return parsed.replace(tzinfo=timezone.utc) + return parsed + except Exception: + return None + + @staticmethod + def _extract_chat_turn_fields(text: str) -> tuple[str | None, str | None, datetime | None]: + if CHAT_TURN_TAG not in text: + return None, None, None + + user_text: str | None = None + assistant_text: str | None = None + turn_created_at: datetime | None = None + for line in text.splitlines(): + if line.startswith("user="): + user_text = line[len("user=") :].strip() + elif line.startswith("assistant="): + assistant_text = line[len("assistant=") :].strip() + elif line.startswith("turn_created_at="): + turn_created_at = ChatMemoryStore._safe_parse_datetime( + line[len("turn_created_at=") :].strip() + ) + return user_text, assistant_text, turn_created_at + + async def store_chat_turn( + self, + *, + presentation_id: UUID, + conversation_id: UUID, + user_message: str, + assistant_message: str, + ) -> None: + client = await self._get_client() + if client is None: + return + + user_text = self._normalize(user_message) + assistant_text = self._normalize(assistant_message) + if not user_text and not assistant_text: + return + + payload = [ + { + "role": "user", + "content": self._truncate( + self._build_turn_payload( + user_text=user_text, + assistant_text=assistant_text, + ) + ), + } + ] + scoped_user_id = self._scope_user_id(presentation_id, conversation_id) + + def _add(): + try: + return client.add(payload, user_id=scoped_user_id, infer=False) + except TypeError: + return client.add( + messages=payload, + user_id=scoped_user_id, + infer=False, + ) + + try: + await asyncio.to_thread(_add) + except BaseException as exc: + if not self._is_nonfatal_mem0_error(exc): + raise + if isinstance(exc, SystemExit): + self._disable_runtime("mem0 runtime failed while storing chat turns", exc=exc) + return + LOGGER.exception( + ( + "Failed to add chat mem0 memory " + "(presentation_id=%s, conversation_id=%s)" + ), + presentation_id, + conversation_id, + ) + + async def retrieve_context( + self, + *, + presentation_id: UUID, + conversation_id: UUID, + query: str, + ) -> str: + client = await self._get_client() + if client is None: + return "" + + trimmed_query = (query or "").strip() + if not trimmed_query: + return "" + + scoped_user_id = self._scope_user_id(presentation_id, conversation_id) + + def _search(): + try: + return client.search( + trimmed_query, + filters={"user_id": scoped_user_id}, + top_k=self._top_k, + ) + except TypeError: + return client.search( + trimmed_query, + user_id=scoped_user_id, + top_k=self._top_k, + ) + + try: + response = await asyncio.to_thread(_search) + except BaseException as exc: + if not self._is_nonfatal_mem0_error(exc): + raise + if isinstance(exc, SystemExit): + self._disable_runtime( + "mem0 runtime failed while searching chat memory", + exc=exc, + ) + return "" + LOGGER.exception( + ( + "Failed to search chat mem0 memory " + "(presentation_id=%s, conversation_id=%s)" + ), + presentation_id, + conversation_id, + ) + return "" + + results = self._collect_results(response) + memories: list[str] = [] + for item in results: + normalized = self._extract_text_field(item) + if normalized: + memories.append(normalized) + + if not memories: + return "" + + deduped = list(dict.fromkeys(memories)) + return self._truncate("\n\n".join(deduped), self._max_context_chars) + + async def load_history( + self, + *, + presentation_id: UUID, + conversation_id: UUID, + ) -> list[dict[str, str]]: + client = await self._get_client() + if client is None: + return [] + + scoped_user_id = self._scope_user_id(presentation_id, conversation_id) + + def _get_all(): + try: + return client.get_all( + filters={"user_id": scoped_user_id}, + limit=max(10, self._max_stored_turns * 4), + ) + except TypeError: + try: + return client.get_all( + user_id=scoped_user_id, + limit=max(10, self._max_stored_turns * 4), + ) + except TypeError: + try: + return client.get_all(filters={"user_id": scoped_user_id}) + except TypeError: + return client.get_all(user_id=scoped_user_id) + + try: + response = await asyncio.to_thread(_get_all) + except BaseException as exc: + if not self._is_nonfatal_mem0_error(exc): + raise + if isinstance(exc, SystemExit): + self._disable_runtime("mem0 runtime failed while loading chat history", exc=exc) + return [] + LOGGER.exception( + ( + "Failed to load chat mem0 history " + "(presentation_id=%s, conversation_id=%s)" + ), + presentation_id, + conversation_id, + ) + return [] + + results = self._collect_results(response) + ordered_turns: list[tuple[datetime, str, str]] = [] + for index, item in enumerate(results): + text_value = self._extract_text_field(item) + if not text_value: + continue + user_text, assistant_text, embedded_timestamp = self._extract_chat_turn_fields( + text_value + ) + if not user_text and not assistant_text: + continue + + item_created_at = ( + self._safe_parse_datetime(item.get("created_at")) + or self._safe_parse_datetime(item.get("updated_at")) + or self._safe_parse_datetime(item.get("event_at")) + ) + timestamp = embedded_timestamp or item_created_at or datetime.fromtimestamp( + index, tz=timezone.utc + ) + ordered_turns.append((timestamp, user_text or "", assistant_text or "")) + + ordered_turns.sort(key=lambda turn: turn[0]) + recent_turns = ordered_turns[-self._max_stored_turns :] + + history: list[dict[str, str]] = [] + for _, user_text, assistant_text in recent_turns: + if user_text: + history.append({"role": "user", "content": user_text}) + if assistant_text: + history.append({"role": "assistant", "content": assistant_text}) + return history + + +CHAT_MEMORY_STORE = ChatMemoryStore() diff --git a/servers/fastapi/services/chat/conversation_store.py b/servers/fastapi/services/chat/conversation_store.py new file mode 100644 index 0000000..6acc214 --- /dev/null +++ b/servers/fastapi/services/chat/conversation_store.py @@ -0,0 +1,80 @@ +import uuid + +from sqlalchemy.ext.asyncio import AsyncSession + +from services.chat.chat_memory_store import CHAT_MEMORY_STORE +from services.chat import sql_chat_history + + +class ChatConversationStore: + def __init__(self, sql_session: AsyncSession): + self._sql = sql_session + + async def load_history( + self, + *, + presentation_id: uuid.UUID, + conversation_id: uuid.UUID, + ) -> list[dict[str, str]]: + messages = await sql_chat_history.load_messages( + self._sql, + presentation_id=presentation_id, + conversation_id=conversation_id, + ) + if messages: + return messages + legacy = await CHAT_MEMORY_STORE.load_history( + presentation_id=presentation_id, + conversation_id=conversation_id, + ) + if legacy: + await sql_chat_history.replace_messages( + self._sql, + presentation_id=presentation_id, + conversation_id=conversation_id, + messages=legacy, + ) + return legacy + + async def append_turn( + self, + *, + presentation_id: uuid.UUID, + conversation_id: uuid.UUID, + user_message: str, + assistant_message: str, + tool_calls: list[str] | None = None, + ) -> None: + await sql_chat_history.append_turn( + self._sql, + presentation_id=presentation_id, + conversation_id=conversation_id, + user_message=user_message, + assistant_message=assistant_message, + tool_calls=tool_calls, + ) + await CHAT_MEMORY_STORE.store_chat_turn( + presentation_id=presentation_id, + conversation_id=conversation_id, + user_message=user_message, + assistant_message=assistant_message, + ) + + async def retrieve_semantic_context( + self, + *, + presentation_id: uuid.UUID, + conversation_id: uuid.UUID, + query: str, + ) -> str: + return await CHAT_MEMORY_STORE.retrieve_context( + presentation_id=presentation_id, + conversation_id=conversation_id, + query=query, + ) + + async def ensure_conversation_id( + self, + conversation_id: uuid.UUID | None, + ) -> uuid.UUID: + return conversation_id or uuid.uuid4() diff --git a/servers/fastapi/services/chat/llm_tools.py b/servers/fastapi/services/chat/llm_tools.py new file mode 100644 index 0000000..235e9ce --- /dev/null +++ b/servers/fastapi/services/chat/llm_tools.py @@ -0,0 +1,9 @@ +from llmai.shared import Tool # type: ignore[import-not-found] + + +def build_chat_llm_tools(function_tools: list[Tool]) -> list[Tool]: + """ + Chat needs only slide-edit function tools. Web search is intentionally + disabled for the assistant chat even when global web grounding is enabled. + """ + return list(function_tools) diff --git a/servers/fastapi/services/chat/memory_layer.py b/servers/fastapi/services/chat/memory_layer.py new file mode 100644 index 0000000..59cff23 --- /dev/null +++ b/servers/fastapi/services/chat/memory_layer.py @@ -0,0 +1,4232 @@ +import copy +import json +import logging +import os +import re +import uuid +from typing import Any + +from jsonschema import Draft202012Validator +from sqlalchemy.ext.asyncio import AsyncSession +from sqlmodel import select + +from constants.presentation import MAX_NUMBER_OF_SLIDES +from models.image_prompt import ImagePrompt +from models.presentation_outline_model import PresentationOutlineModel, SlideOutlineModel +from models.sql.image_asset import ImageAsset +from models.sql.key_value import KeyValueSqlModel +from models.sql.presentation import PresentationModel +from models.sql.slide import SlideModel +from models.sql.template_v2 import TemplateV2 +from services.icon_finder_service import ICON_FINDER_SERVICE +from services.documents_loader import DocumentsLoader +from services.image_generation_service import ImageGenerationService +from services.mem0_presentation_memory_service import MEM0_PRESENTATION_MEMORY_SERVICE +from services.temp_file_service import TEMP_FILE_SERVICE +from templates.presentation_layout import PresentationLayoutModel, SlideLayoutModel +from templates.v2.schema import get_template_schema +from utils.asset_directory_utils import ( + filesystem_image_path_to_app_data_url, + get_images_directory, + normalize_slide_asset_url, +) +from utils.icon_weights import DEFAULT_ICON_WEIGHT +from utils.outline_utils import get_presentation_title_from_presentation_outline +from utils.outline_limits import normalize_outline_content +from utils.process_slides import ( + process_old_and_new_slides_and_fetch_assets, + process_slide_and_fetch_assets, +) + +LOGGER = logging.getLogger(__name__) +MAX_SCHEMA_ERRORS = 10 +DEFAULT_SOURCE_DOCUMENT_CHARS = 12000 +MAX_SOURCE_DOCUMENT_CHARS = 30000 +SLIDE_STAGE_WIDTH = 1280.0 +SLIDE_STAGE_HEIGHT = 720.0 +BLANK_SLIDE_LAYOUT_ID = "__blank_slide__" +BLANK_TEMPLATE_V2_LAYOUT: dict[str, Any] = { + "id": BLANK_SLIDE_LAYOUT_ID, + "description": "Empty slide.", + "background": "#FFFFFF", + "components": [], + "elements": [ + { + "type": "rectangle", + "position": {"x": 0, "y": 0}, + "size": {"width": 1280, "height": 720}, + "fill": {"color": "#FFFFFF"}, + "decorative": True, + } + ], +} +TEMPLATE_V2_GENERATED_ELEMENT_TYPES = {"text", "image", "text-list", "table", "chart"} +# Keep URL runtime fields during validation because many slide schemas require them. +# Speaker note is handled separately and should not affect JSON-schema checks. +RUNTIME_CONTENT_FIELDS = {"__speaker_note__"} +DEFAULT_INSERT_BOXES = { + "chart": { + "position": {"x": 128.0, "y": 108.0}, + "size": {"width": 1024.0, "height": 460.0}, + "min_size": {"width": 320.0, "height": 180.0}, + }, + "table": { + "position": {"x": 128.0, "y": 120.0}, + "size": {"width": 1024.0, "height": 410.0}, + "min_size": {"width": 420.0, "height": 160.0}, + }, +} +THEMES_STORAGE_KEY = "presentation_custom_themes" +CHAT_BUILTIN_THEMES: list[dict[str, Any]] = [ + { + "id": "edge-yellow", + "name": "Edge Yellow", + "description": "Yellow and dark theme for professionalish and edge.", + "user": "system", + "logo": None, + "logo_url": None, + "company_name": None, + "data": { + "colors": { + "primary": "#f5f547", + "background": "#1f1f1f", + "card": "#424242", + "stroke": "#585858", + "primary_text": "#161616", + "background_text": "#f5f547", + "graph_0": "#ffff54", + "graph_1": "#f1f142", + "graph_2": "#dada15", + "graph_3": "#c1bf00", + "graph_4": "#a8a600", + "graph_5": "#908c00", + "graph_6": "#797400", + "graph_7": "#625c00", + "graph_8": "#4d4500", + "graph_9": "#382f00", + }, + "fonts": { + "textFont": { + "name": "Playfair Display", + "url": "https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400..900&display=swap", + } + }, + }, + }, + { + "id": "light-rose", + "name": "Light Rose", + "description": "Rose background with punchy font.", + "user": "system", + "logo": None, + "logo_url": None, + "company_name": None, + "data": { + "colors": { + "primary": "#030204", + "background": "#f69c9c", + "card": "#ffaeb4", + "stroke": "#bf6a6b", + "primary_text": "#bebebe", + "background_text": "#030202", + "graph_0": "#2f2c32", + "graph_1": "#444147", + "graph_2": "#5a565d", + "graph_3": "#706d73", + "graph_4": "#88848b", + "graph_5": "#a09da4", + "graph_6": "#b9b6bd", + "graph_7": "#d3cfd6", + "graph_8": "#eae6ed", + "graph_9": "#f7f3fb", + }, + "fonts": { + "textFont": { + "name": "Overpass", + "url": "https://fonts.googleapis.com/css2?family=Overpass:wght@100..900&display=swap", + } + }, + }, + }, + { + "id": "mint-blue", + "name": "Mint Blue", + "description": "Mint green with blue heading.", + "user": "system", + "logo": None, + "logo_url": None, + "company_name": None, + "data": { + "colors": { + "primary": "#3b3172", + "background": "#ffffff", + "card": "#80e7cf", + "stroke": "#d1d1d1", + "primary_text": "#ffffff", + "background_text": "#3b3172", + "graph_0": "#003d2d", + "graph_1": "#005341", + "graph_2": "#006a57", + "graph_3": "#00826d", + "graph_4": "#2b9a85", + "graph_5": "#4ab39d", + "graph_6": "#65cdb6", + "graph_7": "#80e7cf", + "graph_8": "#98ffe6", + "graph_9": "#a5fff4", + }, + "fonts": { + "textFont": { + "name": "Prompt", + "url": "https://fonts.googleapis.com/css2?family=Prompt:wght@100..900&display=swap", + } + }, + }, + }, + { + "id": "professional-blue", + "name": "Professional Blue", + "description": "Clean and professional blue theme.", + "user": "system", + "logo": None, + "logo_url": None, + "company_name": None, + "data": { + "colors": { + "primary": "#161616", + "background": "#ffffff", + "card": "#dae6ff", + "stroke": "#d1d1d1", + "primary_text": "#eeeaea", + "background_text": "#000000", + "graph_0": "#2e2e2e", + "graph_1": "#424242", + "graph_2": "#585858", + "graph_3": "#6f6f6f", + "graph_4": "#868686", + "graph_5": "#9e9e9e", + "graph_6": "#b7b7b7", + "graph_7": "#d1d1d1", + "graph_8": "#e8e8e8", + "graph_9": "#f5f5f5", + }, + "fonts": { + "textFont": { + "name": "Inter", + "url": "https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap", + } + }, + }, + }, + { + "id": "professional-dark", + "name": "Professional Dark", + "description": "Clean and professional for dark corporate usage.", + "user": "system", + "logo": None, + "logo_url": None, + "company_name": None, + "data": { + "colors": { + "primary": "#eff5f1", + "background": "#050505", + "card": "#424242", + "stroke": "#585858", + "primary_text": "#050505", + "background_text": "#eff5f1", + "graph_0": "#ebf6ff", + "graph_1": "#dee8fa", + "graph_2": "#c7d2e3", + "graph_3": "#aeb8c9", + "graph_4": "#959fb0", + "graph_5": "#7d8797", + "graph_6": "#666f7f", + "graph_7": "#505867", + "graph_8": "#3a4351", + "graph_9": "#262e3c", + }, + "fonts": { + "textFont": { + "name": "Instrument Sans", + "url": "https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap", + } + }, + }, + }, +] +THEME_COLOR_KEYS = [ + "primary", + "background", + "card", + "stroke", + "primary_text", + "background_text", + "graph_0", + "graph_1", + "graph_2", + "graph_3", + "graph_4", + "graph_5", + "graph_6", + "graph_7", + "graph_8", + "graph_9", +] +DEFAULT_THEME_FONT = { + "name": "Inter", + "url": "https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap", +} + + +class PresentationChatMemoryLayer: + """ + Memory abstraction for chat tools and context retrieval. + + This layer intentionally hides where data comes from (SQL-backed persisted state + and mem0 retrieval) behind `get` and `search`-style methods so chat logic stays + decoupled from storage details. + """ + + def __init__(self, sql_session: AsyncSession, presentation_id: uuid.UUID): + self._sql_session = sql_session + self._presentation_id = presentation_id + + async def get(self, key: str) -> Any: + if key != "presentation_outline": + return None + + # Prefer live slides from SQL so slide count and slide indices are always current. + slides_result = await self._sql_session.scalars( + select(SlideModel) + .where(SlideModel.presentation == self._presentation_id) + .order_by(SlideModel.index) + ) + slides = list(slides_result) + if slides: + LOGGER.info( + "Chat outline loaded from slides table (presentation_id=%s, slides=%d)", + self._presentation_id, + len(slides), + ) + return { + "source": "slides_table", + "slide_count": len(slides), + "slides": [ + { + "slide_id": str(slide.id), + "index": slide.index, + "layout_id": slide.layout, + "content": slide.content, + "speaker_note": slide.speaker_note, + } + for slide in slides + ], + } + + presentation = await self._sql_session.get(PresentationModel, self._presentation_id) + if not presentation or not presentation.outlines: + LOGGER.info( + "Chat memory miss for outline (presentation_id=%s)", + self._presentation_id, + ) + return None + + LOGGER.info( + "Chat outline fallback hit from presentation.outlines (presentation_id=%s)", + self._presentation_id, + ) + return presentation.outlines + + async def search(self, query: str, limit: int = 5) -> list[dict[str, Any]]: + """ + Search slides directly from SQL-backed slide rows. + + Results are intentionally compact (snippet-first) to keep tool-call payloads + small for models with limited context windows. + """ + + trimmed_query = (query or "").strip() + if not trimmed_query: + return [] + + slides_result = await self._sql_session.scalars( + select(SlideModel).where(SlideModel.presentation == self._presentation_id) + ) + slides = sorted(list(slides_result), key=lambda slide: slide.index) + if not slides: + LOGGER.info( + "Chat memory miss for slide search (presentation_id=%s, reason=no_slides)", + self._presentation_id, + ) + return [] + + query_lower = trimmed_query.lower() + query_tokens = set(re.findall(r"[a-z0-9]{2,}", query_lower)) + ranked: list[tuple[int, dict[str, Any]]] = [] + for slide in slides: + serialized = self._serialize_slide(slide) + searchable = serialized.lower() + + score = 0 + if query_lower in searchable: + score += 8 + if query_tokens: + score += sum(1 for token in query_tokens if token in searchable) + if score <= 0: + continue + + ranked.append( + ( + score, + { + "slide_id": str(slide.id), + "index": slide.index, + "slide_number": slide.index + 1, + "layout_id": slide.layout, + "snippet": self._build_snippet(serialized, query_lower), + "score": score, + }, + ) + ) + + ranked.sort(key=lambda item: (-item[0], item[1]["index"])) + results = [entry for _, entry in ranked[: max(1, limit)]] + LOGGER.info( + "Chat DB slide search completed (presentation_id=%s, query=%r, hits=%d)", + self._presentation_id, + trimmed_query, + len(results), + ) + return results + + async def get_slide_at_index( + self, index: int, *, include_full_content: bool = False + ) -> dict[str, Any] | None: + slide = await self._sql_session.scalar( + select(SlideModel).where( + SlideModel.presentation == self._presentation_id, + SlideModel.index == index, + ) + ) + if not slide: + LOGGER.info( + "Chat memory miss for slide by index (presentation_id=%s, index=%d)", + self._presentation_id, + index, + ) + return None + + response: dict[str, Any] = { + "slide_id": str(slide.id), + "index": slide.index, + "slide_number": slide.index + 1, + "layout_id": slide.layout, + "content_preview": self._build_snippet( + self._serialize_slide(slide), + query_lower="", + window=420, + ), + "speaker_note": slide.speaker_note, + } + if include_full_content: + response["content"] = slide.content + response["ui"] = slide.ui + ui = self._slide_ui_layout(slide) + if ui is not None: + response["ui_summary"] = await self.get_slide_ui_elements( + index=slide.index, + include_full_json=False, + ) + return response + + async def get_outline_draft(self) -> dict[str, Any]: + presentation = await self._sql_session.get(PresentationModel, self._presentation_id) + if not presentation: + return { + "found": False, + "message": "Presentation not found.", + "slide_count": 0, + "slides": [], + } + + slides = self._normalize_outline_slides(presentation.outlines) + if not slides: + return { + "found": False, + "message": "No outline draft is available yet.", + "slide_count": 0, + "slides": [], + } + + return { + "found": True, + "message": "Outline draft fetched successfully.", + "slide_count": len(slides), + "slides": [ + { + "index": index, + "slide_number": index + 1, + "title": self._extract_outline_title(slide["content"]), + "content": slide["content"], + } + for index, slide in enumerate(slides) + ], + } + + async def add_outline( + self, + *, + content: str, + index: int | None = None, + ) -> dict[str, Any]: + presentation = await self._sql_session.get(PresentationModel, self._presentation_id) + if not presentation: + return { + "saved": False, + "message": "Presentation not found.", + } + + slides = self._normalize_outline_slides(presentation.outlines) + if len(slides) >= MAX_NUMBER_OF_SLIDES: + return { + "saved": False, + "message": f"Outline slide limit reached. You can have at most {MAX_NUMBER_OF_SLIDES} outlines.", + "slide_count": len(slides), + "max_slide_count": MAX_NUMBER_OF_SLIDES, + } + insert_index = len(slides) if index is None else min(max(0, index), len(slides)) + slides.insert(insert_index, {"content": normalize_outline_content(content.strip())}) + await self._save_outline_slides(presentation, slides) + + return { + "saved": True, + "action": "created", + "message": f"Outline slide added at index {insert_index}.", + "index": insert_index, + "slide_count": len(slides), + } + + async def update_outline(self, *, index: int, content: str) -> dict[str, Any]: + presentation = await self._sql_session.get(PresentationModel, self._presentation_id) + if not presentation: + return { + "saved": False, + "message": "Presentation not found.", + } + + slides = self._normalize_outline_slides(presentation.outlines) + target_index = max(0, index) + if target_index >= len(slides): + return { + "saved": False, + "message": f"No outline slide found at index {target_index}.", + "index": target_index, + "slide_count": len(slides), + } + + slides[target_index] = {"content": normalize_outline_content(content.strip())} + await self._save_outline_slides(presentation, slides) + + return { + "saved": True, + "action": "updated", + "message": f"Outline slide at index {target_index} was updated.", + "index": target_index, + "slide_count": len(slides), + } + + async def delete_outline(self, *, index: int) -> dict[str, Any]: + presentation = await self._sql_session.get(PresentationModel, self._presentation_id) + if not presentation: + return { + "deleted": False, + "message": "Presentation not found.", + } + + slides = self._normalize_outline_slides(presentation.outlines) + target_index = max(0, index) + if target_index >= len(slides): + return { + "deleted": False, + "message": f"No outline slide found at index {target_index}.", + "index": target_index, + "slide_count": len(slides), + } + + slides.pop(target_index) + await self._save_outline_slides(presentation, slides) + + return { + "deleted": True, + "action": "deleted", + "message": f"Outline slide at index {target_index} was deleted.", + "index": target_index, + "slide_count": len(slides), + } + + async def move_outline(self, *, from_index: int, to_index: int) -> dict[str, Any]: + presentation = await self._sql_session.get(PresentationModel, self._presentation_id) + if not presentation: + return { + "saved": False, + "message": "Presentation not found.", + } + + slides = self._normalize_outline_slides(presentation.outlines) + source_index = max(0, from_index) + if source_index >= len(slides): + return { + "saved": False, + "message": f"No outline slide found at index {source_index}.", + "from_index": source_index, + "slide_count": len(slides), + } + + destination_index = min(max(0, to_index), len(slides) - 1) + [slide] = slides[source_index : source_index + 1] + del slides[source_index] + slides.insert(destination_index, slide) + await self._save_outline_slides(presentation, slides) + + return { + "saved": True, + "action": "moved", + "message": ( + f"Outline slide moved from index {source_index} " + f"to index {destination_index}." + ), + "from_index": source_index, + "to_index": destination_index, + "slide_count": len(slides), + } + + async def get_available_layouts(self) -> list[dict[str, Any]]: + presentation = await self._sql_session.get( + PresentationModel, self._presentation_id + ) + layout_model = await self._get_layout_model(presentation) + if not layout_model: + return [] + + return [ + { + "id": layout.id, + "name": layout.name, + "description": layout.description, + } + for layout in layout_model.slides + ] + + async def get_available_blocks( + self, + *, + query: str | None = None, + layout_id: str | None = None, + element_type: str | None = None, + block_id: str | None = None, + include_full_content: bool = False, + max_results: int = 20, + ) -> dict[str, Any]: + presentation = await self._sql_session.get( + PresentationModel, self._presentation_id + ) + if not presentation: + return { + "found": False, + "count": 0, + "blocks": [], + "message": "Presentation not found.", + } + + candidates = await self._collect_template_block_candidates(presentation) + query_text = (query or "").strip().lower() + layout_filter = (layout_id or "").strip() + element_filter = (element_type or "").strip().lower() + block_filter = (block_id or "").strip() + + matches: list[tuple[int, int, dict[str, Any]]] = [] + for source_index, candidate in enumerate(candidates): + if block_filter and candidate.get("block_id") != block_filter: + continue + if layout_filter and candidate.get("layout_id") != layout_filter: + continue + element_types = { + str(item).lower() + for item in candidate.get("element_types", []) + if item is not None + } + if element_filter and element_filter not in element_types: + continue + score = self._block_match_score(candidate, query_text) + if query_text and score <= 0: + continue + matches.append((score, source_index, candidate)) + + matches.sort( + key=lambda item: ( + -item[0], + bool(item[2].get("decorative")), + item[1], + ) + ) + + limit = min(max(max_results, 1), 50) + blocks = [ + self._format_available_block( + candidate, + include_full_content=include_full_content, + ) + for _, _, candidate in matches[:limit] + ] + return { + "found": bool(blocks), + "count": len(blocks), + "total_matches": len(matches), + "blocks": blocks, + "truncated": len(matches) > len(blocks), + "message": ( + f"Found {len(blocks)} matching block(s)." + if blocks + else "No matching blocks were found." + ), + } + + async def read_source_documents( + self, + *, + query: str | None = None, + max_chars: int | None = None, + ) -> dict[str, Any]: + presentation = await self._sql_session.get( + PresentationModel, self._presentation_id + ) + if not presentation: + return { + "found": False, + "message": "Presentation not found.", + "documents": [], + } + + char_budget = min( + max(max_chars or DEFAULT_SOURCE_DOCUMENT_CHARS, 1000), + MAX_SOURCE_DOCUMENT_CHARS, + ) + source_paths = [ + path + for path in (presentation.file_paths or []) + if isinstance(path, str) and path.strip() + ] + + documents: list[dict[str, Any]] = [] + errors: list[dict[str, str]] = [] + remaining_chars = char_budget + + for source_index, raw_path in enumerate(source_paths): + if remaining_chars <= 0: + break + + name = os.path.basename(raw_path) or f"Document {source_index + 1}" + try: + resolved_path = TEMP_FILE_SERVICE.resolve_temp_path( + raw_path, + must_exist=True, + ) + loader = DocumentsLoader( + file_paths=[resolved_path], + presentation_language=presentation.language, + ) + temp_dir = TEMP_FILE_SERVICE.create_temp_dir(str(uuid.uuid4())) + await loader.load_documents(temp_dir=temp_dir) + parsed_text = loader.documents[0] if loader.documents else "" + except Exception as exc: + errors.append({"name": name, "error": str(exc)}) + continue + + trimmed = self._trim_document_text(parsed_text, remaining_chars) + if not trimmed: + errors.append({"name": name, "error": "No text was extracted."}) + continue + + documents.append( + { + "index": source_index, + "name": name, + "content": trimmed, + "truncated": len(parsed_text.strip()) > len(trimmed), + } + ) + remaining_chars -= len(trimmed) + + if documents: + omitted_count = max(0, len(source_paths) - len(documents) - len(errors)) + return { + "found": True, + "source": "uploaded_files", + "count": len(documents), + "documents": documents, + "errors": errors, + "omitted_count": omitted_count, + "message": f"Read {len(documents)} source document(s).", + } + + fallback_query = ( + (query or "").strip() + or "uploaded source document extracted PDF document text summary" + ) + fallback_context = await MEM0_PRESENTATION_MEMORY_SERVICE.retrieve_context( + self._presentation_id, + fallback_query, + ) + if fallback_context.strip(): + return { + "found": True, + "source": "presentation_memory", + "count": 1, + "documents": [ + { + "index": 0, + "name": "Indexed source document context", + "content": self._trim_document_text( + fallback_context, + char_budget, + ), + "truncated": len(fallback_context.strip()) > char_budget, + } + ], + "errors": errors, + "message": ( + "Source upload files were unavailable, so indexed document " + "memory was returned instead." + ), + } + + if source_paths: + return { + "found": False, + "source": "uploaded_files", + "count": 0, + "documents": [], + "errors": errors, + "message": ( + "Source document files are recorded for this presentation, " + "but no readable text could be extracted." + ), + } + + return { + "found": False, + "source": "presentation", + "count": 0, + "documents": [], + "errors": errors, + "message": "No uploaded source documents are linked to this presentation.", + } + + async def get_content_schema_from_layout_id( + self, layout_id: str + ) -> dict[str, Any] | None: + layout = await self._get_layout_by_id(layout_id) + if not layout: + return None + return layout.json_schema + + async def _get_presentation_icon_weight( + self, presentation: PresentationModel | None = None + ) -> str: + if presentation is None: + presentation = await self._sql_session.get( + PresentationModel, self._presentation_id + ) + layout_model = await self._get_layout_model(presentation) + return layout_model.icon_weight if layout_model else DEFAULT_ICON_WEIGHT + + async def generate_image(self, prompt: str) -> str: + image_generation_service = ImageGenerationService(get_images_directory()) + image = await image_generation_service.generate_image(ImagePrompt(prompt=prompt)) + + if isinstance(image, ImageAsset): + self._sql_session.add(image) + await self._sql_session.commit() + return filesystem_image_path_to_app_data_url(image.path) + + return normalize_slide_asset_url(str(image)) + + async def generate_icon(self, query: str) -> str: + icons = await ICON_FINDER_SERVICE.search_icons( + query, + k=1, + weight=await self._get_presentation_icon_weight(), + ) + if icons: + return normalize_slide_asset_url(icons[0]) + return normalize_slide_asset_url("/static/icons/placeholder.svg") + + async def add_blank_slide(self, *, index: int | None = None) -> dict[str, Any]: + presentation = await self._sql_session.get(PresentationModel, self._presentation_id) + if not presentation: + return {"added": False, "message": "Presentation not found."} + + slides_result = await self._sql_session.scalars( + select(SlideModel) + .where(SlideModel.presentation == self._presentation_id) + .order_by(SlideModel.index) + ) + slides = list(slides_result) + if len(slides) >= MAX_NUMBER_OF_SLIDES: + return { + "added": False, + "message": f"Slide limit reached. You can have at most {MAX_NUMBER_OF_SLIDES} slides.", + "slide_count": len(slides), + "max_slide_count": MAX_NUMBER_OF_SLIDES, + } + insert_index = ( + len(slides) + if index is None + else min(max(0, index), len(slides)) + ) + for slide in sorted( + [slide for slide in slides if slide.index >= insert_index], + key=lambda each: each.index, + reverse=True, + ): + slide.index += 1 + self._sql_session.add(slide) + + presentation.n_slides = len(slides) + 1 + self._sql_session.add(presentation) + new_slide = SlideModel( + presentation=self._presentation_id, + layout_group=self._resolve_layout_group(presentation=presentation), + layout=BLANK_SLIDE_LAYOUT_ID, + index=insert_index, + content={}, + speaker_note="", + ui=self._blank_slide_ui(), + ) + self._sql_session.add(new_slide) + await self._sql_session.commit() + await self._sql_session.refresh(new_slide) + return { + "added": True, + "message": f"Blank slide added at index {insert_index}.", + "slide_id": str(new_slide.id), + "index": insert_index, + "slide_number": insert_index + 1, + } + + async def save_slide( + self, + *, + content: dict[str, Any], + layout_id: str, + index: int, + replace_old_slide_at_index: bool, + ) -> dict[str, Any]: + presentation = await self._sql_session.get(PresentationModel, self._presentation_id) + if not presentation: + return { + "saved": False, + "message": "Presentation not found.", + "validation_errors": [], + } + + layout = await self._get_layout_by_id(layout_id, presentation=presentation) + if not layout: + return { + "saved": False, + "message": f"Layout '{layout_id}' was not found in this presentation.", + "validation_errors": [f"Unknown layout_id '{layout_id}'."], + } + icon_weight = await self._get_presentation_icon_weight(presentation) + layout_group = self._resolve_layout_group(presentation=presentation) + + validation_errors = self._validate_slide_content( + content=content, + schema=layout.json_schema, + ) + if validation_errors: + return { + "saved": False, + "message": "Slide content failed schema validation.", + "validation_errors": validation_errors, + } + + target_index = max(0, index) + image_generation_service = ImageGenerationService(get_images_directory()) + + if replace_old_slide_at_index: + existing_slide = await self._sql_session.scalar( + select(SlideModel).where( + SlideModel.presentation == self._presentation_id, + SlideModel.index == target_index, + ) + ) + if not existing_slide: + return { + "saved": False, + "message": f"No existing slide found at index {target_index} to replace.", + "validation_errors": [], + } + + updated_content = copy.deepcopy(content) + image_warnings: list[dict] = [] + new_assets = await process_old_and_new_slides_and_fetch_assets( + image_generation_service=image_generation_service, + old_slide_content=existing_slide.content or {}, + new_slide_content=updated_content, + icon_weight=icon_weight, + use_template_v2_asset_fields=existing_slide.layout_group.startswith( + "template-v2" + ), + allow_image_fallback=True, + image_warnings=image_warnings, + ) + for warning in image_warnings: + LOGGER.warning( + "Chat slide replacement image generation warning: " + "presentation_id=%s slide_index=%s detail=%s", + self._presentation_id, + target_index, + warning.get("detail"), + ) + + existing_slide.id = uuid.uuid4() + existing_slide.layout = layout_id + existing_slide.layout_group = layout_group + existing_slide.content = updated_content + existing_slide.ui = await self._build_template_v2_slide_ui( + presentation=presentation, + layout_id=layout_id, + content=updated_content, + ) + existing_slide.speaker_note = self._extract_speaker_note(updated_content) + self._sql_session.add(existing_slide) + self._sql_session.add_all(new_assets) + await self._sql_session.commit() + + await MEM0_PRESENTATION_MEMORY_SERVICE.store_slide_edit( + presentation_id=self._presentation_id, + slide_index=target_index, + edit_prompt=f"[chat_tool_save_slide_replace] layout_id={layout_id}", + edited_slide_content=updated_content, + ) + + return { + "saved": True, + "action": "replaced", + "message": f"Slide at index {target_index} was replaced successfully.", + "slide_id": str(existing_slide.id), + "index": target_index, + } + + slides_result = await self._sql_session.scalars( + select(SlideModel) + .where(SlideModel.presentation == self._presentation_id) + .order_by(SlideModel.index) + ) + slides = list(slides_result) + if len(slides) >= MAX_NUMBER_OF_SLIDES: + return { + "saved": False, + "message": f"Slide limit reached. You can have at most {MAX_NUMBER_OF_SLIDES} slides.", + "validation_errors": [], + "slide_count": len(slides), + "max_slide_count": MAX_NUMBER_OF_SLIDES, + } + + if slides: + max_index = max(slide.index for slide in slides) + insert_index = min(target_index, max_index + 1) + slides_to_shift = [slide for slide in slides if slide.index >= insert_index] + else: + insert_index = 0 + slides_to_shift = [] + + for slide in sorted(slides_to_shift, key=lambda each: each.index, reverse=True): + slide.index += 1 + self._sql_session.add(slide) + + new_slide_content = copy.deepcopy(content) + new_slide = SlideModel( + presentation=self._presentation_id, + layout_group=layout_group, + layout=layout_id, + index=insert_index, + content=new_slide_content, + speaker_note=self._extract_speaker_note(new_slide_content), + ) + image_warnings: list[dict] = [] + new_assets = await process_slide_and_fetch_assets( + image_generation_service=image_generation_service, + slide=new_slide, + icon_weight=icon_weight, + allow_image_fallback=True, + image_warnings=image_warnings, + ) + for warning in image_warnings: + LOGGER.warning( + "Chat slide image generation warning: presentation_id=%s detail=%s", + self._presentation_id, + warning.get("detail"), + ) + new_slide.ui = await self._build_template_v2_slide_ui( + presentation=presentation, + layout_id=layout_id, + content=new_slide.content, + ) + + self._sql_session.add(new_slide) + self._sql_session.add_all(new_assets) + await self._sql_session.commit() + await self._sql_session.refresh(new_slide) + + await MEM0_PRESENTATION_MEMORY_SERVICE.store_slide_edit( + presentation_id=self._presentation_id, + slide_index=insert_index, + edit_prompt=f"[chat_tool_save_slide_new] layout_id={layout_id}", + edited_slide_content=new_slide.content, + ) + + return { + "saved": True, + "action": "created", + "message": f"New slide saved at index {insert_index}.", + "slide_id": str(new_slide.id), + "index": insert_index, + "shifted_slide_count": len(slides_to_shift), + } + + async def delete_slide(self, *, index: int) -> dict[str, Any]: + target_index = max(0, index) + slide = await self._sql_session.scalar( + select(SlideModel).where( + SlideModel.presentation == self._presentation_id, + SlideModel.index == target_index, + ) + ) + if not slide: + return { + "deleted": False, + "message": f"No slide found at index {target_index}.", + "index": target_index, + } + + presentation = await self._sql_session.get(PresentationModel, self._presentation_id) + slides_result = await self._sql_session.scalars( + select(SlideModel) + .where(SlideModel.presentation == self._presentation_id) + .order_by(SlideModel.index) + ) + slides = sorted(list(slides_result), key=lambda each: each.index) + deleted_slide_id = str(slide.id) + + if len(slides) <= 1: + fallback_slide = self._create_blank_slide_from_reference( + presentation=presentation, + source_slide=slide, + index=0, + ) + await self._sql_session.delete(slide) + if presentation: + presentation.n_slides = 1 + self._sql_session.add(presentation) + self._sql_session.add(fallback_slide) + await self._sql_session.commit() + await self._sql_session.refresh(fallback_slide) + + return { + "deleted": True, + "message": "Deleted the final slide and added a blank fallback slide.", + "deleted_slide_id": deleted_slide_id, + "slide_id": str(fallback_slide.id), + "index": 0, + "slide_number": 1, + "shifted_slide_count": 0, + "blank_fallback": True, + } + + await self._sql_session.delete(slide) + + remaining_slides = [ + each_slide for each_slide in slides if each_slide.id != slide.id + ] + shifted_count = 0 + for each_slide in remaining_slides: + if each_slide.index <= target_index: + continue + each_slide.index -= 1 + self._sql_session.add(each_slide) + shifted_count += 1 + + if presentation: + presentation.n_slides = len(remaining_slides) + self._sql_session.add(presentation) + + await self._sql_session.commit() + + return { + "deleted": True, + "message": f"Slide at index {target_index} was deleted successfully.", + "deleted_slide_id": deleted_slide_id, + "index": target_index, + "shifted_slide_count": shifted_count, + } + + async def _get_slide_by_index(self, index: int) -> SlideModel | None: + return await self._sql_session.scalar( + select(SlideModel).where( + SlideModel.presentation == self._presentation_id, + SlideModel.index == max(0, index), + ) + ) + + async def _get_current_theme(self) -> dict[str, Any] | None: + presentation = await self._sql_session.get( + PresentationModel, + self._presentation_id, + ) + return ( + copy.deepcopy(presentation.theme) + if presentation and isinstance(presentation.theme, dict) + else None + ) + + @staticmethod + def _blank_slide_ui() -> dict[str, Any]: + return copy.deepcopy(BLANK_TEMPLATE_V2_LAYOUT) + + def _create_blank_slide_from_reference( + self, + *, + presentation: PresentationModel | None, + source_slide: SlideModel, + index: int, + ) -> SlideModel: + layout_group = ( + source_slide.layout_group.strip() + if isinstance(source_slide.layout_group, str) + else "" + ) + if not layout_group and presentation: + layout_group = self._resolve_layout_group(presentation=presentation) + if not layout_group: + layout_group = "presentation" + + layout = ( + f"{layout_group}:{BLANK_SLIDE_LAYOUT_ID}" + if layout_group.startswith("custom-") + else BLANK_SLIDE_LAYOUT_ID + ) + return SlideModel( + presentation=self._presentation_id, + layout_group=layout_group, + layout=layout, + index=index, + content={}, + speaker_note="", + ui=self._blank_slide_ui(), + ) + + @staticmethod + def _slide_ui_layout(slide: SlideModel) -> dict[str, Any] | None: + ui = slide.ui + if not isinstance(ui, dict): + return None + if not isinstance(ui.get("components"), list): + return None + return ui + + async def _save_slide_ui(self, slide: SlideModel, ui: dict[str, Any]) -> None: + # Persist the mutated raw layout dict directly. We intentionally avoid + # round-tripping through pydantic so richer runtime fields on the slide + # UI (assets, tiptap ids, etc.) are preserved untouched. + slide.ui = ui + self._sql_session.add(slide) + await self._sql_session.commit() + await self._sql_session.refresh(slide) + + async def get_slide_ui_elements( + self, *, index: int, include_full_json: bool = False + ) -> dict[str, Any]: + # Imported lazily so chat startup does not load rendered-slide helper code + # unless the assistant actually inspects UI elements. + from services.chat.slide_ui_helpers import ( + _collect_editable_elements, + _compact_components, + ) + + slide = await self._get_slide_by_index(index) + if not slide: + return { + "found": False, + "message": f"No slide found at index {max(0, index)}.", + } + ui = self._slide_ui_layout(slide) + if ui is None: + return { + "found": True, + "editable": False, + "index": slide.index, + "slide_number": slide.index + 1, + "message": ( + "This slide is not a rendered template (ui) slide. Use " + "saveSlide or updateSlide to edit it instead." + ), + } + + editable = _collect_editable_elements(ui, include_visual_elements=True) + response: dict[str, Any] = { + "found": True, + "editable": True, + "index": slide.index, + "slide_number": slide.index + 1, + "layout_id": ui.get("id"), + "description": ui.get("description"), + "component_count": len(ui.get("components", [])), + "components": _compact_components(ui), + "editable_count": len(editable), + "elements": editable, + "message": ( + f"Slide {slide.index + 1} renders from its ui layout with " + f"{len(ui.get('components', []))} component(s) and " + f"{len(editable)} editable element(s)." + ), + } + if include_full_json: + response["ui"] = ui + return response + + async def update_slide_ui_element( + self, + *, + index: int, + element_path: str, + text: str | None = None, + items: list[str] | None = None, + table_cell: dict[str, Any] | None = None, + table: dict[str, Any] | None = None, + chart: dict[str, Any] | None = None, + element_patch: dict[str, Any] | None = None, + position: dict[str, Any] | None = None, + size: dict[str, Any] | None = None, + ) -> dict[str, Any]: + from services.chat.slide_ui_helpers import ( + _apply_element_style_patch, + _apply_image_element_value, + _component_id_for_path, + _content_update_requested_for_type, + _looks_like_asset_reference, + _normalize_chart_element, + _resolve_element_path, + _resolve_image_update_payload, + _update_chart_element, + _update_table_element, + _update_table_cell, + _update_text_element, + _update_text_list_element, + ) + + slide = await self._get_slide_by_index(index) + if not slide: + return {"updated": False, "message": f"No slide found at index {max(0, index)}."} + ui = self._slide_ui_layout(slide) + if ui is None: + return { + "updated": False, + "message": "This slide has no editable ui layout; use saveSlide instead.", + } + + ui = copy.deepcopy(ui) + element = _resolve_element_path(ui, element_path) + element_type = str(element.get("type") or "") + theme = await self._get_current_theme() + element_updated = False + if element_patch is not None: + if "type" in element_patch and not isinstance(element_patch.get("type"), str): + raise ValueError("element.type must be a string when provided.") + self._merge_ui_patch(element, element_patch) + self._sync_ui_text_fields(element) + _apply_element_style_patch(element, element_patch) + element_type = str(element.get("type") or element_type) + if element_type == "chart": + _normalize_chart_element(element, theme) + element_updated = True + content_update_requested = _content_update_requested_for_type( + element_type, + text=text, + items=items, + table_cell=table_cell, + table=table, + chart=chart, + ) + + if content_update_requested and element_type == "text": + if text is None: + raise ValueError("text is required for text elements.") + _update_text_element(element, text) + elif content_update_requested and element_type == "text-list": + if items is None: + raise ValueError("items is required for text-list elements.") + _update_text_list_element(element, items) + elif content_update_requested and element_type == "table": + if table is not None: + _update_table_element(element, table) + elif table_cell is not None: + _update_table_cell(element, table_cell) + else: + raise ValueError("table or tableCell is required for table elements.") + elif content_update_requested and element_type == "chart": + if chart is None: + raise ValueError("chart is required for chart elements.") + _update_chart_element(element, chart, theme) + elif content_update_requested and element_type == "image": + payload = _resolve_image_update_payload(text, items) + if payload is None: + raise ValueError( + "Image/icon updates require `text` with a URL returned by " + "generateAssets, generateImage, or generateIcon." + ) + if isinstance(payload, str) and not _looks_like_asset_reference(payload): + generated_url = await ( + self.generate_icon(payload) + if element.get("is_icon") is True + else self.generate_image(payload) + ) + element["data"] = generated_url + element["prompt"] = payload.strip() + else: + _apply_image_element_value(element, payload) + elif content_update_requested: + raise ValueError(f"Element type '{element_type}' is not content-editable.") + + geometry_updated = self._update_ui_box(element, position=position, size=size) + if not content_update_requested and not geometry_updated and not element_updated: + raise ValueError("No element content or geometry update was provided.") + + await self._save_slide_ui(slide, ui) + component_id = _component_id_for_path(ui, element_path) + return { + "updated": True, + "index": slide.index, + "slide_number": slide.index + 1, + "component_id": component_id, + "element_path": element_path, + "element_type": element_type, + "position": element.get("position"), + "size": element.get("size"), + "message": ( + f"Updated {element_type} content on slide {slide.index + 1}." + ), + } + + async def update_slide_ui_component( + self, + *, + index: int, + component_id: str, + action: str | None = None, + component_ids: list[str] | None = None, + position: dict[str, Any] | None = None, + size: dict[str, Any] | None = None, + replacement_component: dict[str, Any] | None = None, + ) -> dict[str, Any]: + slide = await self._get_slide_by_index(index) + if not slide: + return {"updated": False, "message": f"No slide found at index {max(0, index)}."} + ui = self._slide_ui_layout(slide) + if ui is None: + return { + "updated": False, + "message": "This slide has no editable ui layout; use saveSlide instead.", + } + + ui = copy.deepcopy(ui) + components = ui.get("components") + if not isinstance(components, list): + return {"updated": False, "message": "Slide has no components list."} + + normalized_action = self._normalize_component_action(action) + + if normalized_action == "ungroup": + return await self._ungroup_slide_ui_component( + slide=slide, + ui=ui, + components=components, + component_id=component_id, + ) + if normalized_action == "group": + return await self._group_slide_ui_components( + slide=slide, + ui=ui, + components=components, + component_id=component_id, + component_ids=component_ids or [component_id], + ) + if normalized_action == "duplicate": + return await self._duplicate_slide_ui_component( + slide=slide, + ui=ui, + components=components, + component_id=component_id, + ) + if normalized_action in { + "bring-to-front", + "bring-forward", + "send-backward", + "send-to-back", + }: + return await self._reorder_slide_ui_component( + slide=slide, + ui=ui, + components=components, + component_id=component_id, + action=normalized_action, + ) + + component = next( + ( + candidate + for candidate in components + if isinstance(candidate, dict) and candidate.get("id") == component_id + ), + None, + ) + if component is None: + return { + "updated": False, + "message": f"Component '{component_id}' was not found.", + } + updated = False + if replacement_component is not None: + from services.chat.slide_ui_helpers import ( + _normalize_chart_tree, + _normalize_image_tree, + _validate_chart_insert_tree, + ) + + if not isinstance(replacement_component.get("elements"), list): + raise ValueError("replacement component must include elements.") + replacement = copy.deepcopy(replacement_component) + _normalize_image_tree(replacement) + _validate_chart_insert_tree(replacement) + replacement["id"] = component_id + replacement.setdefault("description", component.get("description")) + replacement.setdefault("position", component.get("position")) + replacement.setdefault("size", component.get("size")) + component_index = components.index(component) + components[component_index] = replacement + component = replacement + self._sync_ui_text_fields(component) + self._normalize_added_visual_block(component) + _normalize_chart_tree(component, await self._get_current_theme()) + self._fit_component_to_stage(component) + updated = True + if size is not None: + # Match the editor's corner-resize behavior. Updating only the + # component frame leaves a standalone chart/image/table at its old + # size and creates empty space inside the enlarged selection box. + self._scale_component_contents_for_resize(component, size) + if self._update_ui_box(component, position=position, size=size): + updated = True + if not updated: + raise ValueError("No component geometry update was provided.") + + await self._save_slide_ui(slide, ui) + return { + "updated": True, + "index": slide.index, + "slide_number": slide.index + 1, + "component_id": component_id, + "position": component.get("position"), + "size": component.get("size"), + "message": f"Updated component '{component_id}' on slide {slide.index + 1}.", + } + + async def _ungroup_slide_ui_component( + self, + *, + slide: SlideModel, + ui: dict[str, Any], + components: list[Any], + component_id: str, + ) -> dict[str, Any]: + from services.chat.slide_ui_helpers import _ungrouped_components_from_component + + component_index, component = next( + ( + (idx, candidate) + for idx, candidate in enumerate(components) + if isinstance(candidate, dict) and candidate.get("id") == component_id + ), + (None, None), + ) + if component_index is None or not isinstance(component, dict): + return { + "updated": False, + "message": f"Component '{component_id}' was not found.", + } + + parts = _ungrouped_components_from_component( + component, + component_index, + used_ids={ + str(item.get("id")) + for idx, item in enumerate(components) + if idx != component_index and isinstance(item, dict) + }, + ) + if not parts: + raise ValueError("Component does not contain safely separable elements.") + + components[component_index : component_index + 1] = parts + await self._save_slide_ui(slide, ui) + return { + "updated": True, + "action": "ungrouped", + "index": slide.index, + "slide_number": slide.index + 1, + "component_id": component_id, + "created_component_ids": [part["id"] for part in parts], + "message": f"Ungrouped component '{component_id}' on slide {slide.index + 1}.", + } + + async def _group_slide_ui_components( + self, + *, + slide: SlideModel, + ui: dict[str, Any], + components: list[Any], + component_id: str, + component_ids: list[str], + ) -> dict[str, Any]: + requested_ids = [] + for raw_id in [component_id, *component_ids]: + if raw_id and raw_id not in requested_ids: + requested_ids.append(raw_id) + if len(requested_ids) < 2: + raise ValueError("Grouping requires at least two component ids.") + + selected: list[tuple[int, dict[str, Any]]] = [] + for idx, component in enumerate(components): + if isinstance(component, dict) and component.get("id") in requested_ids: + selected.append((idx, component)) + found_ids = {str(component.get("id")) for _, component in selected} + missing_ids = [item for item in requested_ids if item not in found_ids] + if missing_ids: + raise ValueError(f"Component(s) not found: {', '.join(missing_ids)}") + + boxes = [ + self._component_box(component) + for _, component in selected + ] + if any(box is None for box in boxes): + raise ValueError("Cannot group components without valid position and size.") + typed_boxes = [box for box in boxes if box is not None] + left = min(box["x"] for box in typed_boxes) + top = min(box["y"] for box in typed_boxes) + right = max(box["x"] + box["width"] for box in typed_boxes) + bottom = max(box["y"] + box["height"] for box in typed_boxes) + + grouped_elements: list[dict[str, Any]] = [] + for (_, component), box in zip(selected, typed_boxes): + elements = component.get("elements") + if not isinstance(elements, list): + continue + for element in elements: + if not isinstance(element, dict): + continue + copied = copy.deepcopy(element) + element_position = copied.get("position") + if isinstance(element_position, dict): + copied["position"] = { + "x": float(box["x"]) + float(element_position.get("x") or 0) - left, + "y": float(box["y"]) + float(element_position.get("y") or 0) - top, + } + else: + copied["position"] = { + "x": float(box["x"]) - left, + "y": float(box["y"]) - top, + } + grouped_elements.append(copied) + + if not grouped_elements: + raise ValueError("Cannot group components with no elements.") + + first_index = min(idx for idx, _ in selected) + selected_indices = {idx for idx, _ in selected} + group_id = self._unique_ui_component_id(component_id or "group", [ + component + for idx, component in enumerate(components) + if idx not in selected_indices + ]) + group_component = { + "id": group_id, + "description": "Grouped component", + "position": {"x": left, "y": top}, + "size": {"width": right - left, "height": bottom - top}, + "elements": grouped_elements, + } + + next_components = [ + component + for idx, component in enumerate(components) + if idx not in selected_indices + ] + next_components.insert(first_index, group_component) + ui["components"] = next_components + await self._save_slide_ui(slide, ui) + return { + "updated": True, + "action": "grouped", + "index": slide.index, + "slide_number": slide.index + 1, + "component_id": group_id, + "grouped_component_ids": requested_ids, + "message": f"Grouped {len(selected)} components on slide {slide.index + 1}.", + } + + async def _duplicate_slide_ui_component( + self, + *, + slide: SlideModel, + ui: dict[str, Any], + components: list[Any], + component_id: str, + ) -> dict[str, Any]: + component_index, component = self._find_ui_component(components, component_id) + if component_index is None or not isinstance(component, dict): + return { + "updated": False, + "message": f"Component '{component_id}' was not found.", + } + + duplicate = copy.deepcopy(component) + duplicate_id = self._unique_ui_component_id(f"{component_id}_copy", components) + duplicate["id"] = duplicate_id + position = duplicate.get("position") + if isinstance(position, dict): + duplicate["position"] = { + **position, + "x": float(position.get("x") or 0) + 16, + "y": float(position.get("y") or 0) + 16, + } + components.insert(component_index + 1, duplicate) + await self._save_slide_ui(slide, ui) + return { + "updated": True, + "action": "duplicated", + "index": slide.index, + "slide_number": slide.index + 1, + "component_id": duplicate_id, + "source_component_id": component_id, + "message": f"Duplicated component '{component_id}' on slide {slide.index + 1}.", + } + + async def _reorder_slide_ui_component( + self, + *, + slide: SlideModel, + ui: dict[str, Any], + components: list[Any], + component_id: str, + action: str, + ) -> dict[str, Any]: + component_index, component = self._find_ui_component(components, component_id) + if component_index is None or component is None: + return { + "updated": False, + "message": f"Component '{component_id}' was not found.", + } + + target_index = self._component_layer_target_index( + component_index, + len(components), + action, + ) + if target_index == component_index: + return { + "updated": False, + "action": action, + "index": slide.index, + "slide_number": slide.index + 1, + "component_id": component_id, + "message": f"Component '{component_id}' is already at that layer.", + } + + moved = components.pop(component_index) + components.insert(target_index, moved) + await self._save_slide_ui(slide, ui) + return { + "updated": True, + "action": action, + "index": slide.index, + "slide_number": slide.index + 1, + "component_id": component_id, + "component_index": target_index, + "message": f"Reordered component '{component_id}' on slide {slide.index + 1}.", + } + + @staticmethod + def _normalize_component_action(action: str | None) -> str: + return { + "bringToFront": "bring-to-front", + "bringForward": "bring-forward", + "sendBackward": "send-backward", + "sendToBack": "send-to-back", + }.get(action or "update", action or "update") + + @staticmethod + def _component_layer_target_index( + component_index: int, + component_count: int, + action: str, + ) -> int: + if component_count <= 1: + return component_index + if action == "send-to-back": + return 0 + if action == "send-backward": + return max(0, component_index - 1) + if action == "bring-forward": + return min(component_count - 1, component_index + 1) + if action == "bring-to-front": + return component_count - 1 + return component_index + + @staticmethod + def _find_ui_component( + components: list[Any], + component_id: str, + ) -> tuple[int | None, dict[str, Any] | None]: + return next( + ( + (idx, candidate) + for idx, candidate in enumerate(components) + if isinstance(candidate, dict) and candidate.get("id") == component_id + ), + (None, None), + ) + + @staticmethod + def _component_box(component: dict[str, Any]) -> dict[str, float] | None: + position = component.get("position") + size = component.get("size") + if not isinstance(position, dict) or not isinstance(size, dict): + return None + x = position.get("x") + y = position.get("y") + width = size.get("width") + height = size.get("height") + if not all(isinstance(value, (int, float)) for value in (x, y, width, height)): + return None + if width <= 0 or height <= 0: + return None + return { + "x": float(x), + "y": float(y), + "width": float(width), + "height": float(height), + } + + @classmethod + def _scale_component_contents_for_resize( + cls, + component: dict[str, Any], + target_size: dict[str, Any], + ) -> None: + current_size = component.get("size") + if not isinstance(current_size, dict): + return + current_width = current_size.get("width") + current_height = current_size.get("height") + target_width = target_size.get("width") + target_height = target_size.get("height") + if not all( + isinstance(value, (int, float)) + for value in (current_width, current_height, target_width, target_height) + ): + return + if current_width <= 0 or current_height <= 0: + return + + scale_x = float(target_width) / float(current_width) + scale_y = float(target_height) / float(current_height) + if abs(scale_x - 1.0) < 0.001 and abs(scale_y - 1.0) < 0.001: + return + + elements = component.get("elements") + if not isinstance(elements, list): + return + font_scale = (scale_x * scale_y) ** 0.5 + for element in elements: + if isinstance(element, dict): + cls._scale_ui_element_for_component_resize( + element, + scale_x=scale_x, + scale_y=scale_y, + font_scale=font_scale, + ) + + @classmethod + def _scale_ui_element_for_component_resize( + cls, + element: dict[str, Any], + *, + scale_x: float, + scale_y: float, + font_scale: float, + ) -> None: + position = element.get("position") + if isinstance(position, dict): + x = position.get("x") + y = position.get("y") + if isinstance(x, (int, float)) and isinstance(y, (int, float)): + element["position"] = { + "x": float(x) * scale_x, + "y": float(y) * scale_y, + } + + size = element.get("size") + if isinstance(size, dict): + width = size.get("width") + height = size.get("height") + if isinstance(width, (int, float)) and isinstance(height, (int, float)): + element["size"] = { + "width": max(1.0, float(width) * scale_x), + "height": max(1.0, float(height) * scale_y), + } + + if str(element.get("type") or "").lower() in {"text", "text-list", "table"}: + cls._scale_font_metrics_for_component_resize(element, font_scale) + + for key in ("children", "elements"): + children = element.get(key) + if isinstance(children, list): + for child in children: + if isinstance(child, dict): + cls._scale_ui_element_for_component_resize( + child, + scale_x=scale_x, + scale_y=scale_y, + font_scale=font_scale, + ) + child = element.get("child") + if isinstance(child, dict): + cls._scale_ui_element_for_component_resize( + child, + scale_x=scale_x, + scale_y=scale_y, + font_scale=font_scale, + ) + + @classmethod + def _scale_font_metrics_for_component_resize( + cls, + value: Any, + scale: float, + ) -> None: + if isinstance(value, list): + for item in value: + cls._scale_font_metrics_for_component_resize(item, scale) + return + if not isinstance(value, dict): + return + + font = value.get("font") + if isinstance(font, dict): + size = font.get("size") + if isinstance(size, (int, float)): + font["size"] = min(512.0, max(1.0, round(float(size) * scale, 2))) + for key in ("letter_spacing", "letterSpacing"): + spacing = font.get(key) + if isinstance(spacing, (int, float)): + font[key] = round(float(spacing) * scale, 2) + + # Child layout nodes are scaled separately so their text metrics are + # not applied twice. These fields contain only text/table content. + for key, child_value in value.items(): + if key in {"font", "children", "elements", "child"}: + continue + if isinstance(child_value, (dict, list)): + cls._scale_font_metrics_for_component_resize(child_value, scale) + + async def delete_slide_ui_component( + self, *, index: int, component_id: str + ) -> dict[str, Any]: + slide = await self._get_slide_by_index(index) + if not slide: + return {"deleted": False, "message": f"No slide found at index {max(0, index)}."} + ui = self._slide_ui_layout(slide) + if ui is None: + return { + "deleted": False, + "message": "This slide has no editable ui layout; use saveSlide instead.", + } + + ui = copy.deepcopy(ui) + components = ui.get("components") + before = len(components) + ui["components"] = [ + component + for component in components + if not ( + isinstance(component, dict) and component.get("id") == component_id + ) + ] + if len(ui["components"]) == before: + return { + "deleted": False, + "message": f"Component '{component_id}' was not found on slide {slide.index + 1}.", + } + + await self._save_slide_ui(slide, ui) + return { + "deleted": True, + "index": slide.index, + "slide_number": slide.index + 1, + "component_id": component_id, + "message": ( + f"Deleted component '{component_id}' from slide {slide.index + 1}." + ), + } + + async def delete_slide_ui_element( + self, *, index: int, element_path: str + ) -> dict[str, Any]: + from services.chat.slide_ui_helpers import _component_id_for_path + + slide = await self._get_slide_by_index(index) + if not slide: + return {"deleted": False, "message": f"No slide found at index {max(0, index)}."} + ui = self._slide_ui_layout(slide) + if ui is None: + return { + "deleted": False, + "message": "This slide has no editable ui layout; use saveSlide instead.", + } + + ui = copy.deepcopy(ui) + removed = self._remove_element_at_path(ui, element_path) + if not removed: + return { + "deleted": False, + "message": ( + f"Could not delete element at '{element_path}'. Only indexed " + "elements[] / children[] entries can be removed; to remove a whole " + "component use deleteComponent." + ), + } + + component_id = _component_id_for_path(ui, element_path) + await self._save_slide_ui(slide, ui) + return { + "deleted": True, + "index": slide.index, + "slide_number": slide.index + 1, + "component_id": component_id, + "element_path": element_path, + "message": f"Deleted element '{element_path}' on slide {slide.index + 1}.", + } + + async def add_slide_ui_component( + self, + *, + index: int, + component: dict[str, Any], + insert_index: int | None = None, + ) -> dict[str, Any]: + slide = await self._get_slide_by_index(index) + if not slide: + return {"added": False, "message": f"No slide found at index {max(0, index)}."} + ui = self._slide_ui_layout(slide) + if ui is None: + return { + "added": False, + "message": "This slide has no editable ui layout; use saveSlide instead.", + } + if not isinstance(component, dict): + raise ValueError("component must be a JSON object.") + elements = component.get("elements") + if not isinstance(elements, list) or not elements: + raise ValueError("component.elements must be a non-empty list.") + from services.chat.slide_ui_helpers import ( + _normalize_chart_tree, + _normalize_image_tree, + _validate_chart_insert_tree, + ) + + ui = copy.deepcopy(ui) + components = ui.get("components") + new_component = copy.deepcopy(component) + _normalize_image_tree(new_component) + _validate_chart_insert_tree(new_component) + existing_ids = { + str(existing.get("id")) + for existing in components + if isinstance(existing, dict) and existing.get("id") + } + new_id = str(new_component.get("id") or "").strip() + if not new_id or new_id in existing_ids: + base = new_id or "component" + suffix = len(components) + 1 + candidate = f"{base}_{suffix}" + while candidate in existing_ids: + suffix += 1 + candidate = f"{base}_{suffix}" + new_id = candidate + new_component["id"] = new_id + new_component.setdefault( + "description", f"Component {new_id} added via assistant." + ) + # Keep assistant-authored text content in the canonical renderable shape. + self._sync_ui_text_fields(new_component) + self._normalize_added_visual_block(new_component) + _normalize_chart_tree(new_component, await self._get_current_theme()) + self._fit_component_to_stage(new_component) + + position = ( + len(components) + if insert_index is None + else min(max(0, insert_index), len(components)) + ) + components.insert(position, new_component) + + await self._save_slide_ui(slide, ui) + return { + "added": True, + "index": slide.index, + "slide_number": slide.index + 1, + "component_id": new_id, + "component_index": position, + "message": ( + f"Added component '{new_id}' to slide {slide.index + 1}." + ), + } + + async def add_slide_ui_element( + self, + *, + index: int, + element: dict[str, Any], + component_id: str | None = None, + insert_index: int | None = None, + ) -> dict[str, Any]: + slide = await self._get_slide_by_index(index) + if not slide: + return {"added": False, "message": f"No slide found at index {max(0, index)}."} + ui = self._slide_ui_layout(slide) + if ui is None: + return { + "added": False, + "message": "This slide has no editable ui layout; use saveSlide instead.", + } + from services.chat.slide_ui_helpers import ( + _normalize_chart_element, + _normalize_image_tree, + _validate_chart_insert_tree, + ) + + ui = copy.deepcopy(ui) + components = ui.get("components") + if not isinstance(components, list): + return {"added": False, "message": "Slide has no components list."} + + new_element = copy.deepcopy(element) + _normalize_image_tree(new_element) + _validate_chart_insert_tree(new_element) + if component_id: + component_index, component = next( + ( + (idx, candidate) + for idx, candidate in enumerate(components) + if isinstance(candidate, dict) and candidate.get("id") == component_id + ), + (None, None), + ) + if component_index is None or not isinstance(component, dict): + return { + "added": False, + "message": f"Component '{component_id}' was not found.", + } + elements = component.setdefault("elements", []) + if not isinstance(elements, list): + raise ValueError("Target component has no elements list.") + position = len(elements) if insert_index is None else min(max(0, insert_index), len(elements)) + elements.insert(position, new_element) + path = f"components[{component_index}].elements[{position}]" + else: + position_box = new_element.get("position") if isinstance(new_element.get("position"), dict) else {} + size_box = new_element.get("size") if isinstance(new_element.get("size"), dict) else {} + component = { + "id": self._unique_ui_component_id( + str(new_element.get("name") or new_element.get("type") or "element"), + components, + ), + "description": f"Element {new_element.get('type') or ''} added via assistant.".strip(), + "position": { + "x": float(position_box.get("x") or 128), + "y": float(position_box.get("y") or 120), + }, + "size": { + "width": float(size_box.get("width") or 320), + "height": float(size_box.get("height") or 120), + }, + "elements": [new_element], + } + new_element["position"] = {"x": 0, "y": 0} + self._normalize_added_visual_block(component) + self._fit_component_to_stage(component) + if isinstance(component.get("size"), dict): + new_element["size"] = copy.deepcopy(component["size"]) + component_position = len(components) if insert_index is None else min(max(0, insert_index), len(components)) + components.insert(component_position, component) + component_id = str(component["id"]) + path = f"components[{component_position}].elements[0]" + + self._sync_ui_text_fields(new_element) + if new_element.get("type") == "chart": + _normalize_chart_element(new_element, await self._get_current_theme()) + await self._save_slide_ui(slide, ui) + return { + "added": True, + "index": slide.index, + "slide_number": slide.index + 1, + "component_id": component_id, + "element_path": path, + "message": f"Added element on slide {slide.index + 1}.", + } + + @staticmethod + def _unique_ui_component_id(base: str, components: list[Any]) -> str: + normalized = re.sub(r"[^a-z0-9]+", "_", base.strip().lower()).strip("_") or "component" + used = { + str(component.get("id")) + for component in components + if isinstance(component, dict) and component.get("id") + } + candidate = normalized[:80] + suffix = 2 + while candidate in used: + suffix_text = f"_{suffix}" + candidate = f"{normalized[: 80 - len(suffix_text)]}{suffix_text}" + suffix += 1 + return candidate + + @staticmethod + def _merge_ui_patch(target: dict[str, Any], patch: dict[str, Any]) -> None: + for key, value in patch.items(): + if isinstance(value, dict) and isinstance(target.get(key), dict): + PresentationChatMemoryLayer._merge_ui_patch(target[key], value) + else: + target[key] = copy.deepcopy(value) + + @staticmethod + def _sync_ui_text_fields(node: Any) -> None: + """Recursively keep assistant-authored text content renderable.""" + if isinstance(node, dict): + if node.get("type") == "text": + runs = node.get("runs") + if isinstance(runs, list) and runs: + joined = "".join( + str(run.get("text") or "") + for run in runs + if isinstance(run, dict) + ) + node["text"] = joined + elif isinstance(node.get("text"), str): + node["runs"] = [{"text": node["text"]}] + elif node.get("type") == "table": + PresentationChatMemoryLayer._sync_ui_table_cells(node) + for value in node.values(): + PresentationChatMemoryLayer._sync_ui_text_fields(value) + elif isinstance(node, list): + for value in node: + PresentationChatMemoryLayer._sync_ui_text_fields(value) + + @staticmethod + def _sync_ui_table_cells(element: dict[str, Any]) -> None: + fallback_font = element.get("font") + columns = element.get("columns") + if not isinstance(columns, list) and isinstance(element.get("headers"), list): + columns = element["headers"] + if isinstance(columns, list): + element["columns"] = [ + PresentationChatMemoryLayer._normalized_ui_table_cell( + cell, + fallback_font, + ) + for cell in columns + ] + + rows = element.get("rows") + if isinstance(rows, list): + element["rows"] = [ + [ + PresentationChatMemoryLayer._normalized_ui_table_cell( + cell, + fallback_font, + ) + for cell in row + ] + if isinstance(row, list) + else row + for row in rows + ] + + @staticmethod + def _normalized_ui_table_cell(cell: Any, fallback_font: Any) -> dict[str, Any]: + if isinstance(cell, dict): + normalized = copy.deepcopy(cell) + cell_font = normalized.get("font") or fallback_font + existing_runs = normalized.get("runs") + normalized_runs = ( + PresentationChatMemoryLayer._normalized_ui_text_runs( + existing_runs, + cell_font, + ) + if isinstance(existing_runs, list) + else [] + ) + alias_text = PresentationChatMemoryLayer._table_cell_alias_text(normalized) + if normalized_runs and ( + PresentationChatMemoryLayer._runs_plain_text(normalized_runs) + or not alias_text + ): + normalized["runs"] = normalized_runs + else: + normalized["runs"] = PresentationChatMemoryLayer._replacement_runs_from_existing( + existing_runs, + alias_text, + cell_font, + ) + return normalized + + return { + "runs": PresentationChatMemoryLayer._replacement_runs_from_existing( + None, + PresentationChatMemoryLayer._table_cell_text_value(cell), + fallback_font, + ) + } + + @staticmethod + def _normalized_ui_text_runs(runs: list[Any], fallback_font: Any) -> list[dict[str, Any]]: + normalized: list[dict[str, Any]] = [] + for run in runs: + if isinstance(run, dict): + next_run = copy.deepcopy(run) + next_run["text"] = PresentationChatMemoryLayer._table_cell_text_value( + next_run.get("text") + if "text" in next_run + else next_run.get("content") + if "content" in next_run + else next_run.get("value") + ) + normalized.append(next_run) + else: + next_run = { + "text": PresentationChatMemoryLayer._table_cell_text_value(run) + } + if isinstance(fallback_font, dict): + next_run["font"] = copy.deepcopy(fallback_font) + normalized.append(next_run) + return normalized + + @staticmethod + def _runs_plain_text(runs: list[dict[str, Any]]) -> str: + return "".join(str(run.get("text") or "") for run in runs) + + @staticmethod + def _table_cell_alias_text(cell: dict[str, Any]) -> str: + for key in ("text", "content", "value", "label", "data"): + if key in cell: + return PresentationChatMemoryLayer._table_cell_text_value(cell[key]) + return "" + + @staticmethod + def _table_cell_text_value(value: Any) -> str: + if value is None: + return "" + if isinstance(value, (str, int, float, bool)): + return str(value) + if isinstance(value, list): + return "".join( + PresentationChatMemoryLayer._table_cell_text_value(item) + for item in value + ) + if isinstance(value, dict): + runs = value.get("runs") + if isinstance(runs, list): + text = "".join( + PresentationChatMemoryLayer._table_cell_text_value(run) + for run in runs + ) + if text: + return text + for key in ("text", "content", "value", "label", "data"): + if key in value: + return PresentationChatMemoryLayer._table_cell_text_value(value[key]) + return "" + return str(value) + + @staticmethod + def _normalize_added_visual_block(component: dict[str, Any]) -> None: + kind = PresentationChatMemoryLayer._insert_visual_kind(component) + if kind is None: + return + defaults = DEFAULT_INSERT_BOXES[kind] + min_size = defaults["min_size"] + if PresentationChatMemoryLayer._box_too_small( + component.get("size"), + min_size, + ): + component["position"] = copy.deepcopy(defaults["position"]) + component["size"] = copy.deepcopy(defaults["size"]) + + component_size = component.get("size") + if not isinstance(component_size, dict): + return + for element in component.get("elements", []): + if not isinstance(element, dict) or element.get("type") != kind: + continue + if PresentationChatMemoryLayer._box_too_small( + element.get("size"), + min_size, + ): + element["position"] = {"x": 0, "y": 0} + element["size"] = { + "width": float(component_size["width"]), + "height": float(component_size["height"]), + } + + @staticmethod + def _fit_component_to_stage(component: dict[str, Any]) -> None: + position = component.get("position") + size = component.get("size") + if not isinstance(position, dict) or not isinstance(size, dict): + return + x = position.get("x") + y = position.get("y") + width = size.get("width") + height = size.get("height") + if not all(isinstance(value, (int, float)) for value in (x, y, width, height)): + return + width = min(max(1.0, float(width)), SLIDE_STAGE_WIDTH) + height = min(max(1.0, float(height)), SLIDE_STAGE_HEIGHT) + component["size"] = {"width": width, "height": height} + component["position"] = { + "x": min(max(0.0, float(x)), SLIDE_STAGE_WIDTH - width), + "y": min(max(0.0, float(y)), SLIDE_STAGE_HEIGHT - height), + } + + @staticmethod + def _insert_visual_kind(component: dict[str, Any]) -> str | None: + elements = component.get("elements") + if not isinstance(elements, list): + return None + types = { + element.get("type") + for element in elements + if isinstance(element, dict) + } + if "chart" in types: + return "chart" + if "table" in types: + return "table" + return None + + @staticmethod + def _box_too_small(size: Any, min_size: dict[str, float]) -> bool: + if not isinstance(size, dict): + return True + width = size.get("width") + height = size.get("height") + if not isinstance(width, (int, float)) or not isinstance(height, (int, float)): + return True + return width < min_size["width"] or height < min_size["height"] + + @staticmethod + def _remove_element_at_path(ui: dict[str, Any], path: str) -> bool: + segments = path.split(".") + if not segments: + return False + + last = segments[-1] + match = re.match(r"^(components|elements|children)\[(\d+)\]$", last) + if not match: + return False + key = match.group(1) + target_index = int(match.group(2)) + + parent: Any = ui + for segment in segments[:-1]: + if segment == "child": + if not isinstance(parent, dict) or not isinstance( + parent.get("child"), dict + ): + return False + parent = parent["child"] + continue + seg_match = re.match(r"^(components|elements|children)\[(\d+)\]$", segment) + if not seg_match: + return False + seg_key = seg_match.group(1) + seg_index = int(seg_match.group(2)) + if not isinstance(parent, dict) or not isinstance(parent.get(seg_key), list): + return False + values = parent[seg_key] + if seg_index >= len(values) or not isinstance(values[seg_index], dict): + return False + parent = values[seg_index] + + if not isinstance(parent, dict) or not isinstance(parent.get(key), list): + return False + values = parent[key] + if target_index >= len(values): + return False + values.pop(target_index) + return True + + @staticmethod + def _update_ui_box( + target: dict[str, Any], + *, + position: dict[str, Any] | None = None, + size: dict[str, Any] | None = None, + ) -> bool: + updated = False + if position is not None: + target["position"] = { + "x": float(position["x"]), + "y": float(position["y"]), + } + updated = True + if size is not None: + target["size"] = { + "width": float(size["width"]), + "height": float(size["height"]), + } + updated = True + return updated + + async def set_presentation_theme( + self, + *, + theme_query: str | None = None, + custom_theme: dict[str, Any] | None = None, + save_custom_theme: bool = True, + ) -> dict[str, Any]: + requested_theme = (theme_query or "").strip() + has_custom_theme = isinstance(custom_theme, dict) + if not requested_theme and not has_custom_theme: + return { + "applied": False, + "message": "Theme query or custom theme payload is required.", + } + + presentation = await self._sql_session.get(PresentationModel, self._presentation_id) + if not presentation: + return { + "applied": False, + "message": "Presentation not found.", + } + + current_theme = ( + presentation.theme if isinstance(presentation.theme, dict) else None + ) + available_themes = await self._get_chat_available_themes() + selected_theme: dict[str, Any] | None = None + custom_theme_saved = False + selected_source = "query" + + if has_custom_theme: + custom_theme_payload = custom_theme if isinstance(custom_theme, dict) else {} + selected_theme = self._build_custom_theme_from_payload( + custom_theme=custom_theme_payload, + requested_theme=requested_theme, + current_theme=current_theme, + available_themes=available_themes, + ) + if not selected_theme: + return { + "applied": False, + "message": ( + "Invalid custom theme payload. Include colors and optional font " + "details (name/url), or use a theme name/id query." + ), + "requested_theme": requested_theme or None, + } + + selected_source = "custom" + if save_custom_theme: + await self._upsert_custom_theme_in_store(selected_theme) + custom_theme_saved = True + else: + selected_theme = self._select_theme_for_query( + requested_theme, + available_themes, + current_theme, + ) + + if not selected_theme: + return { + "applied": False, + "message": ( + "No matching theme found. Try a specific theme name/id, " + "use 'dark'/'light'/'another', or provide customTheme." + ), + "requested_theme": requested_theme, + "available_themes": [ + {"id": str(theme.get("id") or ""), "name": str(theme.get("name") or "")} + for theme in available_themes + ], + } + + previous_theme = copy.deepcopy(current_theme) if current_theme else None + presentation.theme = copy.deepcopy(selected_theme) + self._sql_session.add(presentation) + await self._sql_session.commit() + + selected_name = str(selected_theme.get("name") or "selected theme") + selected_id = str(selected_theme.get("id") or "") + previous_name = self._extract_theme_name(previous_theme) + + return { + "applied": True, + "message": f"Theme changed to '{selected_name}'.", + "requested_theme": requested_theme or None, + "theme": selected_theme, + "theme_id": selected_id, + "theme_name": selected_name, + "theme_source": selected_source, + "custom_theme_saved": custom_theme_saved, + "previous_theme_name": previous_name, + } + + async def get_presentation_theme_catalog(self) -> dict[str, Any]: + presentation = await self._sql_session.get(PresentationModel, self._presentation_id) + if not presentation: + return { + "found": False, + "message": "Presentation not found.", + "current_theme": None, + "available_themes": [], + "count": 0, + } + + current_theme = ( + copy.deepcopy(presentation.theme) + if isinstance(presentation.theme, dict) + else None + ) + current_theme_id = ( + str((current_theme or {}).get("id") or "").strip().lower() + if current_theme + else "" + ) + builtin_theme_ids = { + str(theme.get("id") or "").strip().lower() for theme in CHAT_BUILTIN_THEMES + } + + available_themes = await self._get_chat_available_themes() + catalog: list[dict[str, Any]] = [] + for theme in available_themes: + theme_id = str(theme.get("id") or "").strip() + theme_name = str(theme.get("name") or "").strip() + if not theme_id and not theme_name: + continue + normalized_theme_id = theme_id.lower() + catalog.append( + { + "id": theme_id, + "name": theme_name or theme_id, + "description": str(theme.get("description") or "").strip(), + "source": ( + "built_in" + if normalized_theme_id in builtin_theme_ids + else "custom" + ), + "is_current": bool( + current_theme_id + and normalized_theme_id + and normalized_theme_id == current_theme_id + ), + } + ) + + current_theme_summary: dict[str, Any] | None = None + if current_theme: + current_theme_colors = self._extract_theme_colors(current_theme) + current_theme_summary = { + "id": str(current_theme.get("id") or "").strip(), + "name": str(current_theme.get("name") or "").strip(), + "description": str(current_theme.get("description") or "").strip(), + "colors": current_theme_colors, + "chart_colors": self._chart_palette_from_theme_colors( + current_theme_colors, + ), + } + + return { + "found": True, + "count": len(catalog), + "current_theme": current_theme_summary, + "available_themes": catalog, + "available_theme_ids": [theme["id"] for theme in catalog if theme.get("id")], + "message": "Theme catalog fetched successfully.", + } + + async def retrieve_context(self, query: str) -> str: + context = await MEM0_PRESENTATION_MEMORY_SERVICE.retrieve_context( + self._presentation_id, + query, + ) + if context: + LOGGER.info( + "Chat memory semantic context hit (presentation_id=%s, chars=%d)", + self._presentation_id, + len(context), + ) + else: + LOGGER.info( + "Chat memory semantic context miss (presentation_id=%s)", + self._presentation_id, + ) + return context + + async def _collect_template_block_candidates( + self, + presentation: PresentationModel, + ) -> list[dict[str, Any]]: + sources: list[tuple[str, dict[str, Any]]] = [] + if isinstance(presentation.layout, dict): + sources.append(("presentation_layout", presentation.layout)) + + seen_template_ids: set[str] = set() + for key in ("name", "template_id", "template_v2_id"): + template_id = self._extract_template_v2_id( + presentation.layout.get(key), + allow_bare=key in {"template_id", "template_v2_id"}, + ) + if not template_id or template_id in seen_template_ids: + continue + seen_template_ids.add(template_id) + template = await self._sql_session.get(TemplateV2, template_id) + if template: + sources.extend(self._template_block_sources(template)) + + candidates: list[dict[str, Any]] = [] + seen_block_ids: set[str] = set() + for source, payload in sources: + candidates.extend( + self._block_candidates_from_merged_components( + payload, + source=source, + seen_block_ids=seen_block_ids, + ) + ) + candidates.extend( + self._block_candidates_from_layouts( + payload, + source=source, + seen_block_ids=seen_block_ids, + ) + ) + return candidates + + @staticmethod + def _template_block_sources(template: TemplateV2) -> list[tuple[str, dict[str, Any]]]: + sources: list[tuple[str, dict[str, Any]]] = [] + for label, payload in ( + ("template_merged_components", template.merged_components), + ("template_components", template.components), + ("template_layouts", template.layouts), + ("template_raw_layouts", template.raw_layouts), + ): + if isinstance(payload, dict): + sources.append((label, payload)) + return sources + + @classmethod + def _block_candidates_from_merged_components( + cls, + payload: dict[str, Any], + *, + source: str, + seen_block_ids: set[str], + ) -> list[dict[str, Any]]: + raw_components = payload.get("components") + if not isinstance(raw_components, list): + return [] + + candidates: list[dict[str, Any]] = [] + for group_index, group in enumerate(raw_components): + if not isinstance(group, dict): + continue + variants = group.get("variants") + if not isinstance(variants, list): + variants = [group] + variant_count = len([item for item in variants if isinstance(item, dict)]) + for variant_index, component in enumerate(variants): + if not isinstance(component, dict): + continue + component_id = str( + component.get("id") + or group.get("id") + or f"component_{group_index + 1}" + ) + block_id = cls._unique_block_id( + f"merged:{group.get('id') or component_id}:{variant_index}", + seen_block_ids, + ) + candidates.append( + cls._build_block_candidate( + source=source, + block_id=block_id, + layout_id=None, + layout_description=None, + component=component, + component_id=component_id, + description=( + group.get("description") + or component.get("description") + or "" + ), + variant_index=variant_index, + variant_count=variant_count, + ) + ) + return candidates + + @classmethod + def _block_candidates_from_layouts( + cls, + payload: dict[str, Any], + *, + source: str, + seen_block_ids: set[str], + ) -> list[dict[str, Any]]: + layouts = payload.get("layouts") + if not isinstance(layouts, list): + return [] + + candidates: list[dict[str, Any]] = [] + for layout_index, layout in enumerate(layouts): + if not isinstance(layout, dict): + continue + components = layout.get("components") + if not isinstance(components, list): + continue + layout_id = str(layout.get("id") or f"layout_{layout_index + 1}") + layout_description = ( + str(layout.get("description")) + if layout.get("description") is not None + else None + ) + for component_index, component in enumerate(components): + if not isinstance(component, dict): + continue + component_id = str( + component.get("id") or f"component_{component_index + 1}" + ) + block_id = cls._unique_block_id( + f"layout:{layout_id}:{component_id}", + seen_block_ids, + ) + candidates.append( + cls._build_block_candidate( + source=source, + block_id=block_id, + layout_id=layout_id, + layout_description=layout_description, + component=component, + component_id=component_id, + description=str(component.get("description") or ""), + ) + ) + return candidates + + @classmethod + def _build_block_candidate( + cls, + *, + source: str, + block_id: str, + layout_id: str | None, + layout_description: str | None, + component: dict[str, Any], + component_id: str, + description: str, + variant_index: int | None = None, + variant_count: int | None = None, + ) -> dict[str, Any]: + candidate = { + "block_id": block_id, + "source": source, + "layout_id": layout_id, + "layout_description": layout_description, + "component_id": component_id, + "description": description, + "position": copy.deepcopy(component.get("position")), + "size": copy.deepcopy(component.get("size")), + "element_count": len(component.get("elements", [])) + if isinstance(component.get("elements"), list) + else 0, + "element_types": cls._component_element_types(component), + "element_names": cls._component_element_names(component), + "decorative": cls._component_is_decorative(component), + "component": copy.deepcopy(component), + } + if variant_index is not None: + candidate["variant_index"] = variant_index + if variant_count is not None: + candidate["variant_count"] = variant_count + return candidate + + @staticmethod + def _component_element_types(component: dict[str, Any]) -> list[str]: + seen: set[str] = set() + ordered: list[str] = [] + + def visit(element: Any) -> None: + if not isinstance(element, dict): + return + element_type = element.get("type") + if element_type is not None: + value = str(element_type) + if value not in seen: + seen.add(value) + ordered.append(value) + child = element.get("child") + if isinstance(child, dict): + visit(child) + children = element.get("children") + if isinstance(children, list): + for nested in children: + visit(nested) + + elements = component.get("elements") + if isinstance(elements, list): + for element in elements: + visit(element) + return ordered + + @staticmethod + def _component_element_names(component: dict[str, Any]) -> list[str]: + seen: set[str] = set() + ordered: list[str] = [] + + def visit(element: Any) -> None: + if not isinstance(element, dict): + return + name = element.get("name") + if name is not None: + value = str(name).strip() + if value and value not in seen: + seen.add(value) + ordered.append(value) + child = element.get("child") + if isinstance(child, dict): + visit(child) + children = element.get("children") + if isinstance(children, list): + for nested in children: + visit(nested) + + elements = component.get("elements") + if isinstance(elements, list): + for element in elements: + visit(element) + return ordered + + @staticmethod + def _component_is_decorative(component: dict[str, Any]) -> bool: + elements = component.get("elements") + if not isinstance(elements, list) or not elements: + return False + return all( + isinstance(element, dict) and element.get("decorative") is True + for element in elements + ) + + @staticmethod + def _unique_block_id(block_id: str, seen_block_ids: set[str]) -> str: + normalized = re.sub(r"[^a-zA-Z0-9:_-]+", "_", block_id).strip("_") + normalized = normalized or "block" + candidate = normalized + suffix = 2 + while candidate in seen_block_ids: + candidate = f"{normalized}:{suffix}" + suffix += 1 + seen_block_ids.add(candidate) + return candidate + + @staticmethod + def _block_match_score(candidate: dict[str, Any], query: str) -> int: + if not query: + return 1 + haystack = " ".join( + str(value or "") + for value in ( + candidate.get("block_id"), + candidate.get("component_id"), + candidate.get("description"), + candidate.get("layout_id"), + candidate.get("layout_description"), + " ".join(str(item) for item in candidate.get("element_types", [])), + " ".join(str(item) for item in candidate.get("element_names", [])), + ) + ).lower() + score = 0 + if query in haystack: + score += 10 + for word in re.findall(r"[a-z0-9_-]+", query): + if word in haystack: + score += 1 + return score + + @staticmethod + def _format_available_block( + candidate: dict[str, Any], + *, + include_full_content: bool, + ) -> dict[str, Any]: + keys = ( + "block_id", + "source", + "layout_id", + "layout_description", + "component_id", + "description", + "position", + "size", + "element_count", + "element_types", + "element_names", + "decorative", + "variant_index", + "variant_count", + ) + block = {key: candidate.get(key) for key in keys if key in candidate} + if include_full_content: + block["component"] = copy.deepcopy(candidate.get("component")) + return block + + async def _get_layout_by_id( + self, + layout_id: str, + presentation: PresentationModel | None = None, + ) -> SlideLayoutModel | None: + if not presentation: + presentation = await self._sql_session.get( + PresentationModel, self._presentation_id + ) + layout_model = await self._get_layout_model(presentation) + if not layout_model: + return None + + for layout in layout_model.slides: + if layout.id == layout_id: + return layout + return None + + async def _get_layout_model( + self, + presentation: PresentationModel | None, + ) -> PresentationLayoutModel | None: + if not presentation or not isinstance(presentation.layout, dict): + return None + + if self._is_template_v2_layout_payload(presentation.layout): + return self._build_template_v2_layout_model( + presentation.layout, + layout_name=str(presentation.layout.get("name") or "template-v2"), + ) + + try: + return presentation.get_layout() + except Exception: + template_model = await self._resolve_template_v2_layout_model(presentation) + if template_model: + return template_model + LOGGER.exception( + "Failed to parse presentation layout (presentation_id=%s)", + self._presentation_id, + ) + return None + + async def _resolve_template_v2_layout_model( + self, + presentation: PresentationModel, + ) -> PresentationLayoutModel | None: + candidate_ids: list[str] = [] + seen_ids: set[str] = set() + + if isinstance(presentation.layout, dict): + for key in ("name", "template_id", "template_v2_id"): + template_id = self._extract_template_v2_id( + presentation.layout.get(key), + allow_bare=key in {"template_id", "template_v2_id"}, + ) + if template_id and template_id not in seen_ids: + candidate_ids.append(template_id) + seen_ids.add(template_id) + + for template_id in candidate_ids: + template = await self._sql_session.get(TemplateV2, template_id) + if not template or not isinstance(template.layouts, dict): + continue + return self._build_template_v2_layout_model( + template.layouts, + layout_name=f"template-v2-{template.id}", + ) + + return None + + @staticmethod + def _is_template_v2_layout_payload(layout_payload: Any) -> bool: + return ( + isinstance(layout_payload, dict) + and isinstance(layout_payload.get("layouts"), list) + ) + + @staticmethod + def _extract_template_v2_id(value: Any, *, allow_bare: bool = False) -> str | None: + if not isinstance(value, str) or not value: + return None + + candidate = value.strip() + if not candidate: + return None + for prefix in ("template-v2-", "template-v2:"): + if candidate.startswith(prefix): + candidate = candidate[len(prefix) :].strip() + break + else: + if not allow_bare: + return None + return candidate or None + + @staticmethod + def _build_template_v2_layout_model( + layout_payload: dict[str, Any], + *, + layout_name: str, + ) -> PresentationLayoutModel: + template_schema = get_template_schema(layout_payload) + source_layouts = layout_payload.get("layouts") + if not isinstance(source_layouts, list): + source_layouts = [] + + slides: list[SlideLayoutModel] = [] + for index, schema_layout in enumerate(template_schema["layouts"]): + if not isinstance(schema_layout, dict): + continue + + source_layout = ( + source_layouts[index] + if index < len(source_layouts) + and isinstance(source_layouts[index], dict) + else {} + ) + layout_id = ( + schema_layout.get("layout_id") + or source_layout.get("id") + or f"layout_{index + 1}" + ) + layout_schema = schema_layout.get("schema") + if not isinstance(layout_schema, dict): + layout_schema = { + "title": str(layout_id), + "description": source_layout.get("description"), + } + + slides.append( + SlideLayoutModel( + id=str(layout_id), + name=source_layout.get("name") or layout_schema.get("title"), + description=source_layout.get("description") + or layout_schema.get("description"), + json_schema=layout_schema, + ) + ) + + return PresentationLayoutModel( + name=layout_name, + ordered=False, + slides=slides, + ) + + async def _build_template_v2_slide_ui( + self, + *, + presentation: PresentationModel, + layout_id: str, + content: dict[str, Any], + ) -> dict[str, Any] | None: + source_layout = await self._get_template_v2_raw_layout_by_id( + presentation=presentation, + layout_id=layout_id, + ) + if source_layout is None: + return None + + ui = copy.deepcopy(source_layout) + theme = presentation.theme if isinstance(presentation.theme, dict) else None + self._apply_template_v2_content_to_ui(ui, content, theme=theme) + self._sync_ui_text_fields(ui) + from services.chat.slide_ui_helpers import _normalize_chart_tree + + _normalize_chart_tree(ui, theme) + return ui + + async def _get_template_v2_raw_layout_by_id( + self, + *, + presentation: PresentationModel, + layout_id: str, + ) -> dict[str, Any] | None: + if isinstance(presentation.layout, dict): + source = self._raw_layout_from_payload(presentation.layout, layout_id) + if source is not None: + return source + + for key in ("name", "template_id", "template_v2_id"): + template_id = self._extract_template_v2_id( + presentation.layout.get(key), + allow_bare=key in {"template_id", "template_v2_id"}, + ) + if not template_id: + continue + template = await self._sql_session.get(TemplateV2, template_id) + if template and isinstance(template.layouts, dict): + source = self._raw_layout_from_payload(template.layouts, layout_id) + if source is not None: + return source + + return None + + @staticmethod + def _raw_layout_from_payload( + layout_payload: dict[str, Any], + layout_id: str, + ) -> dict[str, Any] | None: + layouts = layout_payload.get("layouts") + if not isinstance(layouts, list): + return None + + for layout in layouts: + if isinstance(layout, dict) and str(layout.get("id")) == str(layout_id): + return layout + return None + + @classmethod + def _apply_template_v2_content_to_ui( + cls, + ui: dict[str, Any], + content: dict[str, Any], + *, + theme: dict[str, Any] | None = None, + ) -> None: + components = ui.get("components") + if not isinstance(components, list): + return + + component_counts: dict[str, int] = {} + for component in components: + if isinstance(component, dict): + component_id = str(component.get("id") or "") + component_counts[component_id] = ( + component_counts.get(component_id, 0) + 1 + ) + + component_seen: dict[str, int] = {} + used_keys: set[str] = set() + for component in components: + if not isinstance(component, dict): + continue + component_id = str(component.get("id") or "") + occurrence_index = component_seen.get(component_id, 0) + component_seen[component_id] = occurrence_index + 1 + candidate_keys = [component_id] + if component_counts.get(component_id, 0) > 1: + candidate_keys.insert(0, f"{component_id}_{occurrence_index}") + + component_content = None + for key in candidate_keys: + if key in used_keys: + continue + value = content.get(key) + if isinstance(value, dict): + component_content = value + used_keys.add(key) + break + if component_content is None: + continue + + cls._apply_template_v2_component_content( + component, + component_content, + theme=theme, + ) + + @classmethod + def _apply_template_v2_component_content( + cls, + component: dict[str, Any], + content: dict[str, Any], + *, + theme: dict[str, Any] | None = None, + ) -> None: + elements = component.get("elements") + if not isinstance(elements, list): + return + + for element in elements: + if isinstance(element, dict): + cls._apply_template_v2_element_content( + element, + content, + theme=theme, + ) + + @classmethod + def _apply_template_v2_element_content( + cls, + element: dict[str, Any], + content: Any, + *, + theme: dict[str, Any] | None = None, + direct_value: bool = False, + ) -> None: + content_values = content if isinstance(content, dict) else {} + element_type = element.get("type") + name = element.get("name") + has_value = False + value = None + if isinstance(name, str): + has_value, value = cls._template_v2_content_value( + content_values, + name, + ) + + if ( + has_value + and element.get("decorative") is False + and element_type in TEMPLATE_V2_GENERATED_ELEMENT_TYPES + ): + cls._set_template_v2_element_value( + element, + value, + theme=theme, + ) + return + + if ( + direct_value + and not has_value + and element.get("decorative") is False + and element_type in TEMPLATE_V2_GENERATED_ELEMENT_TYPES + ): + cls._set_template_v2_element_value( + element, + content, + theme=theme, + ) + return + + nested_content = value if isinstance(value, dict) else content_values + nested_direct_value = direct_value and not has_value + + child = element.get("child") + if isinstance(child, dict): + cls._apply_template_v2_element_content( + child, + nested_content, + theme=theme, + direct_value=nested_direct_value, + ) + + children = element.get("children") + if isinstance(children, list): + if isinstance(value, list) and children: + next_children: list[Any] = [] + for index, item in enumerate(value): + source_child = copy.deepcopy(children[min(index, len(children) - 1)]) + if isinstance(source_child, dict): + cls._apply_template_v2_element_content( + source_child, + item, + theme=theme, + direct_value=True, + ) + next_children.append(source_child) + element["children"] = next_children + return + + for child_element in children: + if isinstance(child_element, dict): + cls._apply_template_v2_element_content( + child_element, + nested_content, + theme=theme, + direct_value=nested_direct_value, + ) + + @staticmethod + def _template_v2_content_value( + content: dict[str, Any], + name: str, + ) -> tuple[bool, Any]: + for candidate in PresentationChatMemoryLayer._template_v2_content_name_candidates( + name + ): + if candidate in content: + return True, content[candidate] + return False, None + + @staticmethod + def _template_v2_content_name_candidates(name: str) -> list[str]: + without_numeric_token = re.sub(r"_\d+(?=_|$)", "", name) + without_prefix = ( + without_numeric_token.split("_", 1)[1] + if "_" in without_numeric_token + else without_numeric_token + ) + + candidates: list[str] = [] + for candidate in (name, without_numeric_token, without_prefix): + if candidate and candidate not in candidates: + candidates.append(candidate) + return candidates + + @classmethod + def _set_template_v2_element_value( + cls, + element: dict[str, Any], + value: Any, + *, + theme: dict[str, Any] | None = None, + ) -> None: + element_type = element.get("type") + if element_type == "text": + text = cls._template_v2_text_value(value) + if text is None or text == "": + return + cls._set_template_v2_runs_text(element, text) + element["text"] = text + return + + if element_type == "text-list" and isinstance(value, list): + source_items = ( + element.get("items") if isinstance(element.get("items"), list) else [] + ) + element["items"] = [ + cls._replacement_runs_from_existing( + source_items[index] if index < len(source_items) else None, + cls._template_v2_text_value(item) or "", + element.get("font"), + ) + for index, item in enumerate(value) + ] + return + + if element_type == "image": + asset_url = cls._template_v2_asset_url(value) + if asset_url: + element["data"] = asset_url + prompt = cls._template_v2_asset_prompt( + value, + element.get("is_icon") is True, + ) + if prompt: + element["prompt"] = prompt + return + + if element_type == "chart" and isinstance(value, dict): + from services.chat.slide_ui_helpers import _apply_chart_content_update + + _apply_chart_content_update(element, value, theme) + return + + if element_type == "table": + if isinstance(value, dict): + cls._set_template_v2_table_content(element, value) + elif isinstance(value, list): + cls._set_template_v2_table_rows(element, value) + + @classmethod + def _set_template_v2_runs_text(cls, element: dict[str, Any], text: str) -> None: + element["runs"] = cls._replacement_runs_from_existing( + element.get("runs"), + text, + element.get("font"), + ) + + @staticmethod + def _template_v2_text_value(value: Any) -> str | None: + if isinstance(value, str): + return value + if isinstance(value, (int, float)) and not isinstance(value, bool): + return str(value) + if isinstance(value, dict): + text = value.get("text") + if isinstance(text, str): + return text + if isinstance(text, (int, float)) and not isinstance(text, bool): + return str(text) + return None + + @staticmethod + def _replacement_runs_from_existing( + existing_runs: Any, + text: str, + fallback_font: Any, + ) -> list[dict[str, Any]]: + if isinstance(existing_runs, list) and existing_runs: + first = existing_runs[0] + if isinstance(first, dict): + run = copy.deepcopy(first) + run["text"] = text + return [run] + run: dict[str, Any] = {"text": text} + if isinstance(fallback_font, dict): + run["font"] = copy.deepcopy(fallback_font) + return [run] + + @staticmethod + def _template_v2_asset_url(value: Any) -> str | None: + if isinstance(value, str): + return normalize_slide_asset_url(value) + if not isinstance(value, dict): + return None + + fallback_url: str | None = None + for key in ( + "data", + "url", + "image_url", + "icon_url", + "__image_url__", + "__icon_url__", + ): + asset_url = value.get(key) + if isinstance(asset_url, str) and asset_url.strip(): + normalized_url = normalize_slide_asset_url(asset_url) + if normalized_url.strip().startswith( + ("http://", "https://", "/app_data/", "/static/", "data:", "blob:") + ): + return normalized_url + if fallback_url is None: + fallback_url = normalized_url + return fallback_url + + @staticmethod + def _template_v2_asset_prompt(value: Any, is_icon: bool) -> str | None: + if not isinstance(value, dict): + return None + + prompt_keys = ( + ("icon_query", "__icon_query__", "query", "prompt") + if is_icon + else ("image_prompt", "__image_prompt__", "prompt", "query") + ) + for key in prompt_keys: + prompt = value.get(key) + if isinstance(prompt, str) and prompt.strip(): + return prompt + return None + + @classmethod + def _set_template_v2_table_content( + cls, + element: dict[str, Any], + value: dict[str, Any], + ) -> None: + columns = value.get("columns") + if isinstance(columns, list): + existing_columns = ( + element.get("columns") + if isinstance(element.get("columns"), list) + else [] + ) + element["columns"] = cls._template_v2_table_cells_from_values( + existing_columns, + columns, + element.get("font"), + ) + + rows = value.get("rows") + if isinstance(rows, list): + cls._set_template_v2_table_rows(element, rows) + + @classmethod + def _template_v2_table_cells_from_values( + cls, + existing_cells: list[Any], + values: list[Any], + fallback_font: Any, + ) -> list[dict[str, Any]]: + fallback_cell = existing_cells[-1] if existing_cells else None + cells: list[dict[str, Any]] = [] + for index, value in enumerate(values): + existing_cell = ( + existing_cells[index] + if index < len(existing_cells) + else fallback_cell + ) + existing_runs = ( + existing_cell.get("runs") + if isinstance(existing_cell, dict) + else None + ) + cell = copy.deepcopy(existing_cell) if isinstance(existing_cell, dict) else {} + cell["runs"] = cls._replacement_runs_from_existing( + existing_runs, + cls._table_cell_text_value(value), + cell.get("font") or fallback_font, + ) + cells.append(cell) + return cells + + @classmethod + def _set_template_v2_table_rows( + cls, + element: dict[str, Any], + rows: list[Any], + ) -> None: + existing_rows = ( + element.get("rows") if isinstance(element.get("rows"), list) else [] + ) + next_rows: list[list[dict[str, Any]]] = [] + for row_index, row in enumerate(rows): + if not isinstance(row, list): + continue + existing_row = ( + existing_rows[row_index] + if row_index < len(existing_rows) + and isinstance(existing_rows[row_index], list) + else [] + ) + next_rows.append( + cls._template_v2_table_cells_from_values( + existing_row, + row, + element.get("font"), + ) + ) + element["rows"] = next_rows + + def _validate_slide_content( + self, + *, + content: dict[str, Any], + schema: dict[str, Any], + ) -> list[str]: + validation_content = self._strip_runtime_fields(content) + validator = Draft202012Validator(schema) + errors = sorted(validator.iter_errors(validation_content), key=lambda err: err.path) + + if not errors: + return [] + + formatted_errors: list[str] = [] + for err in errors[:MAX_SCHEMA_ERRORS]: + location = ".".join([str(part) for part in err.path]) or "$" + formatted_errors.append(f"{location}: {err.message}") + return formatted_errors + + @staticmethod + def _strip_runtime_fields(value: Any) -> Any: + if isinstance(value, dict): + sanitized: dict[str, Any] = {} + for key, nested_value in value.items(): + if key in RUNTIME_CONTENT_FIELDS: + continue + sanitized[key] = PresentationChatMemoryLayer._strip_runtime_fields( + nested_value + ) + return sanitized + + if isinstance(value, list): + return [ + PresentationChatMemoryLayer._strip_runtime_fields(item) for item in value + ] + + return value + + @staticmethod + def _extract_speaker_note(content: dict[str, Any]) -> str: + value = content.get("__speaker_note__") + if isinstance(value, str): + return value + return "" + + @staticmethod + def _resolve_layout_group( + *, + presentation: PresentationModel, + fallback: str = "presentation", + ) -> str: + if isinstance(presentation.layout, dict): + name = str(presentation.layout.get("name") or "").strip() + if name: + return name + if PresentationChatMemoryLayer._is_template_v2_layout_payload( + presentation.layout + ): + return "template-v2" + return fallback + + @staticmethod + def _normalize_outline_slides(outlines: Any) -> list[dict[str, str]]: + if not isinstance(outlines, dict): + return [] + + raw_slides = outlines.get("slides") + if not isinstance(raw_slides, list): + return [] + + slides: list[dict[str, str]] = [] + for raw_slide in raw_slides: + raw_content: Any + if isinstance(raw_slide, dict): + raw_content = raw_slide.get("content", "") + else: + raw_content = raw_slide + + if isinstance(raw_content, str): + content = raw_content + elif raw_content is None: + content = "" + else: + try: + content = json.dumps(raw_content, ensure_ascii=False) + except Exception: + content = str(raw_content) + + slides.append({"content": normalize_outline_content(content)}) + + return slides + + async def _save_outline_slides( + self, + presentation: PresentationModel, + slides: list[dict[str, str]], + ) -> None: + outline_model = PresentationOutlineModel( + slides=[SlideOutlineModel(content=slide["content"]) for slide in slides] + ) + presentation.outlines = outline_model.model_dump(mode="json") + presentation.n_slides = len(outline_model.slides) + presentation.title = get_presentation_title_from_presentation_outline( + outline_model + ) + + self._sql_session.add(presentation) + await self._sql_session.commit() + + await MEM0_PRESENTATION_MEMORY_SERVICE.store_generated_outlines( + presentation.id, + presentation.outlines, + ) + + @staticmethod + def _extract_outline_title(markdown_content: str) -> str: + for line in markdown_content.splitlines(): + stripped = line.strip() + if not stripped: + continue + heading_match = re.match(r"^#{1,6}\s*(.+?)\s*$", stripped) + if heading_match: + return heading_match.group(1).strip() + return stripped[:120] + return "Untitled outline" + + @staticmethod + def _serialize_slide(slide: SlideModel) -> str: + content_text = "" + try: + content_text = json.dumps(slide.content or {}, ensure_ascii=False) + except Exception: + content_text = str(slide.content) + + speaker_note = slide.speaker_note or "" + return f"slide_index={slide.index}\nlayout_id={slide.layout}\n{content_text}\n{speaker_note}" + + @staticmethod + def _build_snippet(text: str, query_lower: str, window: int = 320) -> str: + normalized = " ".join(text.split()) + if not normalized: + return "" + + offset = normalized.lower().find(query_lower) + if offset == -1: + return normalized[:window] + + start = max(0, offset - window // 3) + end = min(len(normalized), start + window) + return normalized[start:end] + + @staticmethod + def _trim_document_text(text: str, limit: int) -> str: + normalized = (text or "").strip() + if not normalized: + return "" + if len(normalized) <= limit: + return normalized + return f"{normalized[:limit].rstrip()}\n[Document content truncated]" + + @staticmethod + def _extract_theme_colors(theme: dict[str, Any]) -> dict[str, Any]: + data = theme.get("data") + colors = data.get("colors") if isinstance(data, dict) else None + if isinstance(colors, dict): + return copy.deepcopy(colors) + colors = theme.get("colors") + return copy.deepcopy(colors) if isinstance(colors, dict) else {} + + @staticmethod + def _chart_palette_from_theme_colors(colors: dict[str, Any]) -> list[str]: + palette: list[str] = [] + for index in range(10): + value = colors.get(f"graph_{index}") + if not isinstance(value, str): + continue + color = PresentationChatMemoryLayer._normalize_hex_color(value) + if color: + palette.append(color) + if palette: + return palette + fallback_keys = ("primary", "card", "stroke", "background_text", "primary_text") + fallback_palette: list[str] = [] + for key in fallback_keys: + value = colors.get(key) + if not isinstance(value, str): + continue + color = PresentationChatMemoryLayer._normalize_hex_color(value) + if color: + fallback_palette.append(color) + return fallback_palette + + async def _get_chat_available_themes(self) -> list[dict[str, Any]]: + merged_themes: list[dict[str, Any]] = [copy.deepcopy(theme) for theme in CHAT_BUILTIN_THEMES] + row = await self._sql_session.scalar( + select(KeyValueSqlModel).where(KeyValueSqlModel.key == THEMES_STORAGE_KEY) + ) + if not row or not isinstance(row.value, dict): + return merged_themes + + custom_themes = row.value.get("themes") + if not isinstance(custom_themes, list): + return merged_themes + + existing_ids = { + str(theme.get("id") or "").strip().lower() for theme in merged_themes + } + for custom_theme in custom_themes: + if not isinstance(custom_theme, dict): + continue + theme_data = custom_theme.get("data") + colors = theme_data.get("colors") if isinstance(theme_data, dict) else None + if not isinstance(colors, dict) or "background" not in colors: + continue + + custom_theme_copy = copy.deepcopy(custom_theme) + custom_theme_copy.setdefault("user", "local") + theme_id = str(custom_theme_copy.get("id") or "").strip().lower() + if theme_id and theme_id in existing_ids: + continue + if theme_id: + existing_ids.add(theme_id) + merged_themes.append(custom_theme_copy) + return merged_themes + + async def _upsert_custom_theme_in_store(self, theme: dict[str, Any]) -> None: + row = await self._sql_session.scalar( + select(KeyValueSqlModel).where(KeyValueSqlModel.key == THEMES_STORAGE_KEY) + ) + themes: list[dict[str, Any]] = [] + if row and isinstance(row.value, dict): + raw_themes = row.value.get("themes") + if isinstance(raw_themes, list): + themes = copy.deepcopy(raw_themes) + + theme_id = str(theme.get("id") or "").strip().lower() + replaced = False + if theme_id: + for idx, existing_theme in enumerate(themes): + existing_id = str(existing_theme.get("id") or "").strip().lower() + if existing_id == theme_id: + themes[idx] = copy.deepcopy(theme) + replaced = True + break + if not replaced: + themes.append(copy.deepcopy(theme)) + + if row: + row.value = {"themes": themes} + self._sql_session.add(row) + return + self._sql_session.add(KeyValueSqlModel(key=THEMES_STORAGE_KEY, value={"themes": themes})) + + @staticmethod + def _resolve_base_theme_for_customization( + current_theme: dict[str, Any] | None, + available_themes: list[dict[str, Any]], + ) -> dict[str, Any]: + if isinstance(current_theme, dict): + data = current_theme.get("data") + colors = data.get("colors") if isinstance(data, dict) else None + if isinstance(colors, dict): + return copy.deepcopy(current_theme) + + preferred_base = PresentationChatMemoryLayer._find_theme_by_id( + available_themes, "professional-blue" + ) + if preferred_base: + return copy.deepcopy(preferred_base) + + if available_themes: + return copy.deepcopy(available_themes[0]) + + return { + "id": "professional-blue", + "name": "Professional Blue", + "description": "Fallback base theme.", + "user": "system", + "logo": None, + "logo_url": None, + "company_name": None, + "data": { + "colors": { + "primary": "#161616", + "background": "#ffffff", + "card": "#dae6ff", + "stroke": "#d1d1d1", + "primary_text": "#eeeaea", + "background_text": "#000000", + "graph_0": "#2e2e2e", + "graph_1": "#424242", + "graph_2": "#585858", + "graph_3": "#6f6f6f", + "graph_4": "#868686", + "graph_5": "#9e9e9e", + "graph_6": "#b7b7b7", + "graph_7": "#d1d1d1", + "graph_8": "#e8e8e8", + "graph_9": "#f5f5f5", + }, + "fonts": {"textFont": DEFAULT_THEME_FONT}, + }, + } + + @staticmethod + def _build_custom_theme_from_payload( + *, + custom_theme: dict[str, Any], + requested_theme: str, + current_theme: dict[str, Any] | None, + available_themes: list[dict[str, Any]], + ) -> dict[str, Any] | None: + base_theme = PresentationChatMemoryLayer._resolve_base_theme_for_customization( + current_theme, available_themes + ) + + payload = copy.deepcopy(custom_theme) + data_block = payload.get("data") if isinstance(payload.get("data"), dict) else payload + if not isinstance(data_block, dict): + return None + + colors_override = PresentationChatMemoryLayer._extract_colors_from_payload(data_block) + if not colors_override: + return None + + merged_colors = PresentationChatMemoryLayer._merge_theme_colors( + base_theme=base_theme, + color_overrides=colors_override, + ) + if not merged_colors: + return None + + text_font = PresentationChatMemoryLayer._extract_text_font_from_payload( + data_block, base_theme + ) + if not text_font: + return None + + name_candidates = [ + payload.get("name"), + data_block.get("name"), + requested_theme, + "Custom Theme", + ] + theme_name = next( + ( + str(candidate).strip() + for candidate in name_candidates + if isinstance(candidate, str) and str(candidate).strip() + ), + "Custom Theme", + ) + theme_id = PresentationChatMemoryLayer._sanitize_theme_id( + str(payload.get("id") or "") + ) + if not theme_id: + theme_id = PresentationChatMemoryLayer._sanitize_theme_id(theme_name) + if not theme_id: + theme_id = f"chat-custom-{uuid.uuid4().hex[:8]}" + + description = str( + payload.get("description") + or data_block.get("description") + or f"Custom theme generated from chat request: {theme_name}" + ).strip() + + theme_data = payload.get("data") + final_data = copy.deepcopy(theme_data) if isinstance(theme_data, dict) else {} + final_data["colors"] = merged_colors + final_data["fonts"] = {"textFont": text_font} + + return { + "id": theme_id, + "name": theme_name, + "description": description, + "user": str(payload.get("user") or "local"), + "logo": payload.get("logo"), + "logo_url": payload.get("logo_url"), + "company_name": payload.get("company_name"), + "data": final_data, + } + + @staticmethod + def _extract_colors_from_payload(data_block: dict[str, Any]) -> dict[str, str]: + raw_colors = data_block.get("colors") + if not isinstance(raw_colors, dict): + return {} + + normalized_colors: dict[str, str] = {} + for key in THEME_COLOR_KEYS: + value = raw_colors.get(key) + if not isinstance(value, str): + continue + normalized_hex = PresentationChatMemoryLayer._normalize_hex_color(value) + if normalized_hex: + normalized_colors[key] = normalized_hex + + return normalized_colors + + @staticmethod + def _merge_theme_colors( + *, + base_theme: dict[str, Any], + color_overrides: dict[str, str], + ) -> dict[str, str] | None: + data = base_theme.get("data") + base_colors = data.get("colors") if isinstance(data, dict) else None + if not isinstance(base_colors, dict): + return None + + merged: dict[str, str] = {} + for key in THEME_COLOR_KEYS: + override = color_overrides.get(key) + if override: + merged[key] = override + continue + + base_value = base_colors.get(key) + if isinstance(base_value, str): + normalized = PresentationChatMemoryLayer._normalize_hex_color(base_value) + merged[key] = normalized or base_value + continue + + # Keep resulting theme always complete for frontend variable mapping. + merged[key] = "#000000" + + return merged + + @staticmethod + def _extract_text_font_from_payload( + data_block: dict[str, Any], + base_theme: dict[str, Any], + ) -> dict[str, str] | None: + candidate: dict[str, Any] | None = None + fonts = data_block.get("fonts") + if isinstance(fonts, dict): + text_font = fonts.get("textFont") + if isinstance(text_font, dict): + candidate = text_font + if not candidate: + text_font = data_block.get("textFont") + if isinstance(text_font, dict): + candidate = text_font + + if not candidate: + base_data = base_theme.get("data") + base_fonts = base_data.get("fonts") if isinstance(base_data, dict) else None + base_text_font = base_fonts.get("textFont") if isinstance(base_fonts, dict) else None + if isinstance(base_text_font, dict): + candidate = base_text_font + + if not candidate: + candidate = DEFAULT_THEME_FONT + + name = candidate.get("name") + url = candidate.get("url") + if not isinstance(name, str) or not name.strip(): + return None + if not isinstance(url, str) or not url.strip(): + return None + + return {"name": name.strip(), "url": url.strip()} + + @staticmethod + def _sanitize_theme_id(value: str) -> str: + slug = re.sub(r"[^a-z0-9]+", "-", value.strip().lower()).strip("-") + return slug[:64] + + @staticmethod + def _normalize_hex_color(value: str) -> str | None: + normalized = value.strip().lower() + if not normalized: + return None + if normalized.startswith("#"): + normalized = normalized[1:] + + if len(normalized) == 3: + expanded = "".join(ch * 2 for ch in normalized) + if re.fullmatch(r"[0-9a-f]{6}", expanded): + return f"#{expanded}" + return None + + if len(normalized) != 6: + return None + if not re.fullmatch(r"[0-9a-f]{6}", normalized): + return None + return f"#{normalized}" + + @staticmethod + def _select_theme_for_query( + requested_theme: str, + available_themes: list[dict[str, Any]], + current_theme: dict[str, Any] | None, + ) -> dict[str, Any] | None: + normalized_query = requested_theme.strip().lower() + if not normalized_query: + return None + + # Direct exact match by id or name. + for theme in available_themes: + theme_id = str(theme.get("id") or "").strip().lower() + theme_name = str(theme.get("name") or "").strip().lower() + if normalized_query in {theme_id, theme_name}: + return theme + + current_theme_id = str((current_theme or {}).get("id") or "").strip().lower() + query_tokens = [token for token in re.split(r"[\s_-]+", normalized_query) if token] + + if "dark" in query_tokens or any( + token in normalized_query for token in ("night", "black") + ): + for preferred in ("professional-dark", "edge-yellow"): + theme = PresentationChatMemoryLayer._find_theme_by_id( + available_themes, preferred + ) + if theme: + return theme + + if "light" in query_tokens or any( + token in normalized_query for token in ("bright", "white") + ): + for preferred in ("professional-blue", "mint-blue", "light-rose"): + theme = PresentationChatMemoryLayer._find_theme_by_id( + available_themes, preferred + ) + if theme: + return theme + + if any(token in normalized_query for token in ("another", "different", "change")): + opposite = ( + not PresentationChatMemoryLayer._is_dark_theme(current_theme) + if current_theme + else True + ) + candidates = [ + theme + for theme in available_themes + if str(theme.get("id") or "").strip().lower() != current_theme_id + ] + for theme in candidates: + if PresentationChatMemoryLayer._is_dark_theme(theme) == opposite: + return theme + if candidates: + return candidates[0] + + # Fuzzy contains match over id/name/description. + for theme in available_themes: + haystack = " ".join( + [ + str(theme.get("id") or "").strip().lower(), + str(theme.get("name") or "").strip().lower(), + str(theme.get("description") or "").strip().lower(), + ] + ) + if normalized_query in haystack: + return theme + if query_tokens and all(token in haystack for token in query_tokens): + return theme + + return None + + @staticmethod + def _find_theme_by_id( + themes: list[dict[str, Any]], theme_id: str + ) -> dict[str, Any] | None: + normalized_theme_id = theme_id.strip().lower() + for theme in themes: + current_id = str(theme.get("id") or "").strip().lower() + if current_id == normalized_theme_id: + return theme + return None + + @staticmethod + def _extract_theme_name(theme: dict[str, Any] | None) -> str | None: + if not isinstance(theme, dict): + return None + name = theme.get("name") + if isinstance(name, str) and name.strip(): + return name.strip() + theme_id = theme.get("id") + if isinstance(theme_id, str) and theme_id.strip(): + return theme_id.strip() + return None + + @staticmethod + def _is_dark_theme(theme: dict[str, Any] | None) -> bool: + if not isinstance(theme, dict): + return False + data = theme.get("data") + if not isinstance(data, dict): + return False + colors = data.get("colors") + if not isinstance(colors, dict): + return False + background = colors.get("background") + if not isinstance(background, str): + return False + return PresentationChatMemoryLayer._is_dark_hex(background) + + @staticmethod + def _is_dark_hex(hex_color: str) -> bool: + normalized = hex_color.strip().lstrip("#") + if len(normalized) != 6: + return False + try: + red = int(normalized[0:2], 16) + green = int(normalized[2:4], 16) + blue = int(normalized[4:6], 16) + except ValueError: + return False + # Relative luminance approximation. + luma = (0.299 * red + 0.587 * green + 0.114 * blue) / 255 + return luma < 0.5 diff --git a/servers/fastapi/services/chat/presentation_context_store.py b/servers/fastapi/services/chat/presentation_context_store.py new file mode 100644 index 0000000..7100be2 --- /dev/null +++ b/servers/fastapi/services/chat/presentation_context_store.py @@ -0,0 +1,5 @@ +from services.chat.memory_layer import ( + PresentationChatMemoryLayer as PresentationContextStore, +) + +__all__ = ["PresentationContextStore"] diff --git a/servers/fastapi/services/chat/prompts.py b/servers/fastapi/services/chat/prompts.py new file mode 100644 index 0000000..6bade30 --- /dev/null +++ b/servers/fastapi/services/chat/prompts.py @@ -0,0 +1,172 @@ +from constants.presentation import MAX_NUMBER_OF_SLIDES, MAX_OUTLINE_CONTENT_WORDS + + +def _trim_block(label: str, text: str) -> str: + value = (text or "").strip() + if not value: + return "" + return f"\n{label}\n{value}\n" + +CHAT_AI_ASSISTANT_SYSTEM_PROMPT = f""" +You need to be a helpful slide AI assistant. Be concise, accurate, and action-oriented. +Use the available tools to inspect and edit the current presentation. + +# Steps: +1. Analyze the latest user request and identify the target slide, content, element, component, outline, asset, or theme. +2. Inspect the current deck state with the smallest useful discovery tool before editing. +3. Choose the narrowest mutating tool that can satisfy the request. +4. Call tools in a loop until the requested work succeeds or you are blocked. +5. Match the final reply to the latest tool results. + +# Source of Truth Rules: +- Tool outputs from this turn are authoritative for current deck state. +- Use memory only for uploaded-document meaning, original outline intent, and prior decisions. +- Never invent slide facts, tool results, asset urls, theme names, or document claims. +- If memory conflicts with a tool result, trust the tool result. +- If the user's target is ambiguous, use deck discovery or search before editing. +- If the user asks about an uploaded/source PDF, document, file, or attachment + and no parsed attachment text is already present in the latest user message, + call readSourceDocuments before making document claims or editing from it. + +# Slide Number Rules: +- User slide numbers are 1-based. +- Tool slide indexes are 0-based. +- If the user says slide N, call tools with index N-1. +- When reporting the result to the user, use slide numbers, not tool indexes. + +# Tool Protocol: +- Only use the tools you are given. Do not refer to unavailable or legacy chat tools. +- For deck discovery, use getTemplateSummary, searchSlide, getSlideAtIndex, readSourceDocuments, getAvailableLayouts, getAvailableBlocks, and getContentSchemaFromLayoutId. +- Use getTemplateSummary before choosing a layout, theme-aware direction, or broad deck edit. +- Use searchSlide when the user refers to content, topic, or text but does not give a slide number. +- Use readSourceDocuments when the user refers to the PDF/document uploaded for this deck or asks to summarize, quote, extract, chart, table, or build slide content from it. +- Use getSlideAtIndex before any visible edit to inspect current content, component ids, and element paths. +- Set includeFullContent=true when you need exact UI JSON, exact layout content, or a component shape to copy. +- Use getAvailableLayouts before addNewSlideLayout when a new slide should use a template layout. +- Use getAvailableBlocks before addComponent/createComponent when only a reusable block/component is needed. Prefer this over fetching a whole layout or schema just to find one block. +- Treat existing template blocks as the default style source. For new rendered slides or substantial slide composition, search for reusable title/header text blocks first with elementType="text" and title/header/heading query terms, then search for each requested content block type such as chart, table, image, card, callout, or metric. +- For new table or chart requests, getAvailableBlocks is mandatory before inserting. First search by elementType, then fetch the chosen block with includeFullContent=true, adapt its returned component JSON, and insert it with addComponent/createComponent using sourceBlockId. If the table or chart is part of a new slide, also fetch and reuse a matching title/header text block instead of creating a primitive title. +- After selecting a layout, use getContentSchemaFromLayoutId before addNewSlideLayout unless the exact content schema is already visible in this turn. +- Treat a mutating edit as successful only when the tool result says saved, added, updated, deleted, applied, or another clear success message. +- If a tool fails, report it briefly and choose the next tool only if recovery is obvious. + +# Tool Call Rules: +- Follow each tool schema exactly. +- Include required nullable fields with null when the schema requires them and you are not using them. +- Use JSON-serialized object strings for content, element, and component fields when the schema asks for a string. +- Keep generated element and component JSON valid and minimal. +- Do not call theme tools, asset generation tools, or full-slide save tools unless the request requires them. +- Do not end with only a plan when a tool can perform the requested work. + +# Visible Edit Rules: +- For visible edits, inspect with getSlideAtIndex first. +- Use addElement, updateElement, deleteElement, addComponent, createComponent, updateComponent, or deleteComponent for rendered slide UI edits. +- Do not use addElement to create a new table or chart while a reusable block exists. Use getAvailableBlocks plus addComponent/createComponent so the inserted content keeps the template block styling. +- Do not add primitive title, header, subtitle, section label, card, metric, table, or chart elements when a suitable reusable block/component exists. Fetch the block, adapt its returned component JSON, and preserve its typography, fills, decorative elements, spacing, and colors. Use primitives only after block search finds no suitable styled block or the request requires an unsupported shape. +- Use updateElement for element content, geometry, and toolbar-style properties. +- Toolbar-style properties include fill, stroke, font, alignment, opacity, chart type/colors, image fit/crop, table cell styling, and line styling. +- For text styling requests such as font family, font size, color, bold, italic, underline, line height, letter spacing, or alignment, call updateElement with the font, color, and/or alignment fields and wait for a successful update result. +- Use updateComponent for whole-component move, resize, replace, duplicate, layer order, group, and ungroup requests. +- Charts, tables, images, and other standalone items inserted from the editor tabs are stored as one-element components. When the user asks a selected standalone item to fill the slide or become full screen, scale to any size and update only that item's component to position {{"x": 0, "y": 0}} and size {{"width": 1280, "height": 720}}; do not resize unrelated components or the whole slide. +- Treat add/insert/include requests as additive: preserve existing substantive charts, tables, images, text, icons, and components unless the user explicitly asks to remove, replace, clear, or simplify them. +- When adding or creating a rendered component/block, include the requested final text/data/image/icon content in the same component payload. Do not add a blank or placeholder block and stop. +- When adding requested content as a rendered component/block, prioritize copying and adapting an existing block/component shape from getAvailableBlocks or getSlideAtIndex(includeFullContent=true). Use primitive elements only when the task cannot be achieved from existing blocks. +- When a request creates a new custom rendered slide from multiple pieces, compose it from reusable blocks in this order: title/header block, requested data/content blocks, then any remaining primitives needed to complete the slide. +- For partial content updates such as adding a proper header, title, subtitle, or description, update or add only those requested text elements and preserve existing charts, tables, images, and other non-target elements. +- Prefer addElement, addComponent, updateElement, updateComponent, move, resize, or layer-order changes over deleteElement/deleteComponent when making room for new content. +- Use deleteElement, deleteComponent, or deleteSlide only when deletion is explicitly requested, when replacing that exact target, or when a clearly empty/placeholder/conflicting element must be removed to satisfy the request without losing user content. +- Use deleteComponent when the user wants to remove a whole card, block, point, callout, or repeated component. +- Use deleteElement when the user wants to remove one specific rendered element inside a component. +- Keep new or moved rendered elements/components strictly inside the 1280x720 visible slide window. +- Preserve nearby layout patterns, spacing, typography, and colors unless the user asks to change them. + +# Chart Rules: +- Use real chart elements for chart requests; never generate a chart as an image. +- If the user supplies chart data in text, markdown, CSV-like rows, a table, or a document, preserve those labels and numbers exactly. Do not invent, smooth, average, or reorder values unless the user asks. +- If chart data is in an uploaded/source document and not already in the latest message, call readSourceDocuments before building the chart. +- Use the new chart model only: chartType, title, categories, series with numeric values, colors, axes, dataLabels, and legend. Use dataLabels as null or one of base, mid, top, outside. +- Supported chartType values are bar, horizontal_bar, stacked_bar, horizontal_stacked_bar, line, area, pie, donut, scatter, bubble, radar, and polar_area. +- For addElement/addComponent chart JSON, use type="chart" and chart_type with categories and series. Do not use chart data-only payloads. +- When the user gives colors, use them in colors. Otherwise omit colors so the tool applies the current theme graph colors. +- Use updateElement with the chart field for chart type, data, colors, axes, legend, and data labels. Do not use raw element patches for chart updates unless only geometry or non-chart styling is requested. +- For pie and donut charts, use one series and one category per slice. For bar, line, area, stacked, radar, scatter, bubble, and polar_area charts, keep every series.values length equal to categories length. +- If a chart insert/update fails because numeric data is missing, do not retry the same JSON. Rebuild it from the latest user labels and numbers with categories plus series.values, or report exactly what data is missing. + +# Table Rules: +- Use real table elements for table requests; never generate a table as an image or plain text. +- If the user supplies table headers/columns and rows in text, markdown, CSV-like rows, or a document, preserve those labels and cell values exactly. +- For addElement/addComponent table JSON, use type="table" with columns or headers plus rows. Do not add a blank table shell when the latest user message includes table data. +- If a table insert/update fails because table data is missing, do not retry the same JSON. Rebuild it from the latest user headers/columns and rows, or report exactly what data is missing. + +# Full Slide Rules: +- Use saveSlide or updateSlide only for full slide payload changes. +- Use addNewSlide for blank slides. +- Use addNewSlideLayout for layout-based slides after checking available layouts. +- When creating or replacing slide content, match the selected layout schema and keep content concise enough to fit. +- Prefer a matching template layout for whole-slide additions. If no full layout fits and a custom rendered slide is needed, add a blank slide and build it from reusable blocks before using primitives, starting with a styled title/header text block. +- addNewSlideLayout is the content-writing step, not just layout insertion: pass the final generated content for every requested layout field. Do not pass empty strings, placeholder labels, copied sample text, or an empty object unless the user explicitly asked for a blank placeholder slide. +- Do not give the final reply for a layout-based slide until addNewSlideLayout, saveSlide, or updateSlide reports a successful save with the intended content. +- Do not use full slide tools for small visible text, style, geometry, layering, or component edits. + +# Asset Rules: +- Generate required images and icons in batch with generateAssets before inserting them. +- Use image assets for photos, illustrations, backgrounds, or generated visuals. +- Use icon assets for symbolic or simple visual markers. +- Reuse generated asset urls exactly as returned by the tool. +- For addElement/addComponent image JSON, use type="image", set data to the returned url, and set is_icon=false unless inserting an icon. +- Do not add a blank image shell; if an image insert fails because data is missing, retry with the generated asset url in data. + +# Theme Rules: +- Use getPresentationTheme for theme lookup. +- Use setPresentationTheme only when the user asks to change the theme or provides theme-specific instructions. +- Do not change the theme as a side effect of ordinary slide edits. + +# Outline Protocol: +- For outline draft edits, use addOutline, updateOutline, and deleteOutline only. +- Outline tools mutate presentation.outlines only. +- Outline edits do not require layouts, assets, or rendered slide inspection unless the user also asks to edit slides. +- Keep outline drafts to at most {MAX_NUMBER_OF_SLIDES} slides. +- Keep each outline slide content to at most {MAX_OUTLINE_CONTENT_WORDS} words. + +# Common prompts: +1. Fix the slide +- Check if text/cards/items are overflowing the slide boundaries or text/cards/items are overlapping. +- If yes, fix by moving the element to a better position or resizing the element. +- If grouped text or elements still cannot be moved cleanly inside the group, ungroup them and reposition the individual parts. + +2. Make this better +- Inspect the target slide first. +- Improve the requested slide conservatively by fixing hierarchy, spacing, alignment, readability, and visual balance. +- Preserve the user's content and intent unless a specific rewrite is requested. + +3. Add or change an image/icon +- Generate assets first when a new asset is needed. +- Insert or update the image/icon only after you have the returned url. +- Keep the new visual inside the slide bounds and aligned with the existing layout. + +# Final Reply Rules: +- Final replies should be one or two short human-facing sentences. +- Mention what changed and where. +- Do not include raw tool names unless needed for an error. +- If blocked, say exactly what blocked the work and what information is needed. +""" + + +def build_system_prompt( + presentation_memory_context: str, + chat_memory_context: str, +) -> str: + presentation_block = _trim_block( + "Deck memory (background only; may be partial or stale):", + presentation_memory_context, + ) + chat_block = _trim_block( + "Chat memory (earlier messages in this conversation):", + chat_memory_context, + ) + return ( + CHAT_AI_ASSISTANT_SYSTEM_PROMPT.strip() + + "\n" + + presentation_block + + chat_block + ) diff --git a/servers/fastapi/services/chat/schemas.py b/servers/fastapi/services/chat/schemas.py new file mode 100644 index 0000000..76e6eb5 --- /dev/null +++ b/servers/fastapi/services/chat/schemas.py @@ -0,0 +1,958 @@ +import json +from typing import Any, Literal + +import dirtyjson # type: ignore[import-untyped] +from pydantic import BaseModel, ConfigDict, Field, field_validator, model_validator + +from constants.presentation import MAX_OUTLINE_CONTENT_WORDS + + +class StrictSchemaModel(BaseModel): + model_config = ConfigDict(extra="forbid", strict=True) + + +class OpenAIStrictSchemaModel(StrictSchemaModel): + @model_validator(mode="before") + @classmethod + def populate_missing_fields_with_none(cls, value: Any) -> Any: + if not isinstance(value, dict): + return value + + normalized = dict(value) + for field_name, field in cls.model_fields.items(): + alias = field.alias + if field_name in normalized or (alias and alias in normalized): + continue + normalized[alias or field_name] = None + return normalized + + +class NoArgsInput(StrictSchemaModel): + pass + + +class AddOutlineInput(OpenAIStrictSchemaModel): + content: str = Field( + ..., + min_length=1, + max_length=20000, + description=f"Markdown content for the new outline slide. Maximum {MAX_OUTLINE_CONTENT_WORDS} words.", + ) + index: int | None = Field( + ..., + ge=0, + le=1000, + description="Zero-based insert index. Use null to append to the end.", + ) + + +class UpdateOutlineInput(StrictSchemaModel): + index: int = Field(ge=0, le=1000) + content: str = Field( + min_length=1, + max_length=20000, + description=f"Replacement markdown content for this outline slide. Maximum {MAX_OUTLINE_CONTENT_WORDS} words.", + ) + + +class DeleteOutlineInput(StrictSchemaModel): + index: int = Field(ge=0, le=1000) + + +class MoveOutlineInput(StrictSchemaModel): + from_index: int = Field(alias="fromIndex", ge=0, le=1000) + to_index: int = Field(alias="toIndex", ge=0, le=1000) + + model_config = ConfigDict(extra="forbid", strict=True, populate_by_name=True) + + +class GetSlideAtIndexInput(StrictSchemaModel): + index: int = Field(ge=0, le=1000) + include_full_content: bool = Field(alias="includeFullContent") + + model_config = ConfigDict(extra="forbid", strict=True, populate_by_name=True) + + +class SearchSlidesInput(StrictSchemaModel): + query: str = Field(min_length=1, max_length=1000) + limit: int = Field(ge=1, le=10) + + +class ReadSourceDocumentsInput(OpenAIStrictSchemaModel): + query: str | None = Field( + ..., + min_length=1, + max_length=1000, + description=( + "Optional focus query for retrieving uploaded/source document content. " + "Use null when the user asks for a general summary." + ), + ) + max_chars: int | None = Field( + ..., + alias="maxChars", + ge=1000, + le=30000, + description="Maximum document text characters to return. Use null for the default.", + ) + + model_config = ConfigDict(extra="forbid", strict=True, populate_by_name=True) + + +class GetContentSchemaFromLayoutIdInput(StrictSchemaModel): + layout_id: str = Field(alias="layoutId", min_length=1, max_length=200) + + model_config = ConfigDict(extra="forbid", strict=True, populate_by_name=True) + + +class GetAvailableBlocksInput(OpenAIStrictSchemaModel): + query: str | None = Field( + ..., + min_length=1, + max_length=1000, + description=( + "Optional search text for block id, description, layout, or element types." + ), + ) + layout_id: str | None = Field( + ..., + alias="layoutId", + min_length=1, + max_length=200, + description="Optional layout id to restrict block candidates.", + ) + element_type: str | None = Field( + ..., + alias="elementType", + min_length=1, + max_length=80, + description=( + "Optional element type filter such as table, chart, image, text, " + "or text-list. For title/header/subtitle blocks, use text with a " + "title/header/subtitle query." + ), + ) + block_id: str | None = Field( + ..., + alias="blockId", + min_length=1, + max_length=300, + description=( + "Optional exact block id returned by a previous getAvailableBlocks call." + ), + ) + include_full_content: bool | None = Field( + ..., + alias="includeFullContent", + description=( + "Set true only when exact component JSON is needed for " + "addComponent/createComponent." + ), + ) + max_results: int | None = Field( + ..., + alias="maxResults", + ge=1, + le=50, + description=( + "Maximum matching block summaries to return. Use null for the default." + ), + ) + + model_config = ConfigDict(extra="forbid", strict=True, populate_by_name=True) + + +class GenerateImageInput(StrictSchemaModel): + prompt: str = Field(min_length=1, max_length=4000) + + +class GenerateIconInput(StrictSchemaModel): + query: str = Field(min_length=1, max_length=1000) + + +class GenerateAssetItemInput(StrictSchemaModel): + kind: Literal["image", "icon"] + prompt: str = Field( + min_length=1, + max_length=4000, + description="Image prompt or icon search query.", + ) + + +class GenerateAssetsInput(StrictSchemaModel): + assets: list[GenerateAssetItemInput] = Field(min_length=1, max_length=12) + + +class AddNewSlideInput(OpenAIStrictSchemaModel): + index: int | None = Field( + ..., + ge=0, + le=1000, + description="Zero-based insert index. Use null to append.", + ) + + +class SaveSlideInput(StrictSchemaModel): + content: str = Field( + min_length=2, + max_length=200000, + description=( + "A JSON-serialized object for slide content. " + "Example: '{\"title\": \"Q4 Revenue\", \"bullets\": [\"North America +22%\"]}'" + ), + ) + layout_id: str = Field(alias="layoutId", min_length=1, max_length=200) + index: int = Field(ge=0, le=1000) + replace_old_slide_at_index: bool = Field(alias="replaceOldSlideAtIndex") + + model_config = ConfigDict(extra="forbid", strict=True, populate_by_name=True) + + @field_validator("content") + @classmethod + def validate_content(cls, value: str) -> str: + try: + parsed: Any = dirtyjson.loads(value) + except Exception: + parsed = json.loads(value) + + if not isinstance(parsed, dict): + raise ValueError("'content' must be a JSON object.") + + return value + + +class AddNewSlideLayoutInput(StrictSchemaModel): + content: str = Field( + min_length=2, + max_length=200000, + description="A JSON-serialized object matching the selected layout schema.", + ) + layout_id: str = Field(alias="layoutId", min_length=1, max_length=200) + index: int = Field(ge=0, le=1000) + + model_config = ConfigDict(extra="forbid", strict=True, populate_by_name=True) + + @field_validator("content") + @classmethod + def validate_content(cls, value: str) -> str: + try: + parsed: Any = dirtyjson.loads(value) + except Exception: + parsed = json.loads(value) + + if not isinstance(parsed, dict): + raise ValueError("'content' must be a JSON object.") + + return value + + +class UpdateSlideInput(AddNewSlideLayoutInput): + pass + + +class DeleteSlideInput(StrictSchemaModel): + index: int = Field(ge=0, le=1000) + + +class GetSlideElementsInput(OpenAIStrictSchemaModel): + index: int = Field( + ..., + ge=0, + le=1000, + description="Zero-based slide index whose rendered UI layout you want to inspect.", + ) + include_full_json: bool | None = Field( + ..., + alias="includeFullJson", + description="Set true only when the exact UI layout JSON is required.", + ) + + model_config = ConfigDict(extra="forbid", strict=True, populate_by_name=True) + + +class SlideElementTableCellInput(OpenAIStrictSchemaModel): + section: Literal["columns", "rows"] + column_index: int = Field(..., alias="columnIndex", ge=0, le=100) + row_index: int | None = Field( + ..., + alias="rowIndex", + ge=0, + le=100, + description="Required when section is rows; ignored for columns.", + ) + text: str = Field(..., min_length=0, max_length=5000) + + model_config = ConfigDict(extra="forbid", strict=True, populate_by_name=True) + + @model_validator(mode="after") + def validate_row_target(self) -> "SlideElementTableCellInput": + if self.section == "rows" and self.row_index is None: + raise ValueError("rowIndex is required when section is rows.") + return self + + +class SlideElementChartSeriesInput(OpenAIStrictSchemaModel): + name: str = Field(..., min_length=1, max_length=200) + values: list[float] = Field(..., min_length=1, max_length=100) + + @model_validator(mode="before") + @classmethod + def normalize_data_alias(cls, value: Any) -> Any: + if not isinstance(value, dict): + return value + normalized = dict(value) + if "values" not in normalized and "data" in normalized: + normalized["values"] = normalized.pop("data") + return normalized + + +DataLabelPosition = Literal["base", "mid", "top", "outside"] + + +class SlideElementChartInput(OpenAIStrictSchemaModel): + chart_type: Literal[ + "area", + "bar", + "bubble", + "donut", + "horizontal_bar", + "horizontal_stacked_bar", + "line", + "pie", + "polar_area", + "radar", + "scatter", + "stacked_bar", + ] | None = Field( + ..., + alias="chartType", + description=( + "Chart type. Supports the same chart types as the editor: bar, " + "horizontal_bar, stacked_bar, horizontal_stacked_bar, line, area, " + "pie, donut, scatter, bubble, radar, and polar_area." + ), + ) + title: str | None = Field(..., min_length=0, max_length=500) + title_color: str | None = Field( + ..., alias="titleColor", min_length=1, max_length=32 + ) + categories: list[str] | None = Field(..., min_length=1, max_length=100) + series: list[SlideElementChartSeriesInput] | None = Field( + ..., min_length=1, max_length=20 + ) + colors: list[str] | None = Field( + ..., + min_length=1, + max_length=12, + description=( + "Optional chart palette. Use user-specified colors when provided; " + "otherwise omit/null so the current theme graph colors are used." + ), + ) + axis_color: str | None = Field(..., alias="axisColor", min_length=1, max_length=32) + grid_color: str | None = Field(..., alias="gridColor", min_length=1, max_length=32) + x_axis: bool | None = Field(..., alias="xAxis") + y_axis: bool | None = Field(..., alias="yAxis") + x_axis_grid: bool | None = Field(..., alias="xAxisGrid") + y_axis_grid: bool | None = Field(..., alias="yAxisGrid") + x_axis_title: str | None = Field(..., alias="xAxisTitle", min_length=0, max_length=200) + y_axis_title: str | None = Field(..., alias="yAxisTitle", min_length=0, max_length=200) + data_labels: DataLabelPosition | None = Field( + ..., + alias="dataLabels", + description=( + "Optional data label placement. Use null to hide labels; otherwise " + "use base, mid, top, or outside." + ), + ) + legend: bool | None = Field(...) + + model_config = ConfigDict(extra="forbid", strict=True, populate_by_name=True) + + +class SlideElementTableValueInput(StrictSchemaModel): + text: str = Field(min_length=0, max_length=5000) + + +SlideElementTableValue = ( + str | int | float | bool | None | SlideElementTableValueInput +) + + +class SlideElementTableInput(OpenAIStrictSchemaModel): + columns: list[SlideElementTableValue] | None = Field( + ..., min_length=1, max_length=100 + ) + headers: list[SlideElementTableValue] | None = Field( + ..., min_length=1, max_length=100 + ) + rows: list[list[SlideElementTableValue]] = Field(min_length=1, max_length=100) + + @model_validator(mode="after") + def validate_columns_or_headers(self) -> "SlideElementTableInput": + if self.columns is None and self.headers is None: + raise ValueError("columns or headers is required.") + return self + + +class SlideElementPositionInput(StrictSchemaModel): + x: float = Field(ge=-10000, le=10000) + y: float = Field(ge=-10000, le=10000) + + +class SlideElementSizeInput(StrictSchemaModel): + width: float = Field(ge=1, le=10000) + height: float = Field(ge=1, le=10000) + + +class SlideElementFontInput(OpenAIStrictSchemaModel): + family: str | None = Field(..., min_length=1, max_length=200) + size: float | None = Field(..., ge=1, le=512) + color: str | None = Field(..., min_length=1, max_length=64) + bold: bool | None = Field(...) + italic: bool | None = Field(...) + underline: bool | None = Field(...) + line_height: float | None = Field(..., alias="lineHeight", ge=0.1, le=10) + letter_spacing: float | None = Field(..., alias="letterSpacing", ge=-100, le=100) + wrap: Literal["word", "char", "none"] | None = Field(...) + opacity: float | None = Field(..., ge=0, le=1) + + model_config = ConfigDict(extra="forbid", strict=True, populate_by_name=True) + + @model_validator(mode="before") + @classmethod + def normalize_font_aliases(cls, value: Any) -> Any: + if not isinstance(value, dict): + return value + normalized = dict(value) + alias_pairs = ( + ("fontFamily", "family"), + ("font_family", "family"), + ("fontName", "family"), + ("font_name", "family"), + ("name", "family"), + ("fontSize", "size"), + ("font_size", "size"), + ("fontColor", "color"), + ("font_color", "color"), + ("textColor", "color"), + ("text_color", "color"), + ("line_height", "lineHeight"), + ("line-height", "lineHeight"), + ("letter_spacing", "letterSpacing"), + ("letter-spacing", "letterSpacing"), + ) + for source_key, target_key in alias_pairs: + if source_key in normalized and target_key not in normalized: + normalized[target_key] = normalized.pop(source_key) + return normalized + + +class SlideElementAlignmentInput(OpenAIStrictSchemaModel): + horizontal: Literal["left", "center", "right"] | None = Field(...) + vertical: Literal["top", "middle", "bottom"] | None = Field(...) + + +class SlideElementFillInput(OpenAIStrictSchemaModel): + color: str | None = Field(..., min_length=1, max_length=64) + opacity: float | None = Field(..., ge=0, le=1) + + +class SlideElementStrokeInput(OpenAIStrictSchemaModel): + color: str | None = Field(..., min_length=1, max_length=64) + opacity: float | None = Field(..., ge=0, le=1) + width: float | None = Field(..., ge=0, le=100) + dash: list[float] | None = Field(..., min_length=1, max_length=12) + + +class UpdateSlideElementInput(OpenAIStrictSchemaModel): + index: int = Field(..., ge=0, le=1000) + element_path: str = Field( + ..., + alias="elementPath", + min_length=1, + max_length=500, + description=( + "Element path returned by getSlideAtIndex, for example " + "components[0].elements[1].children[0]." + ), + ) + text: str | None = Field( + ..., + min_length=0, + max_length=20000, + description="Replacement text for a text element or replacement image/icon data.", + ) + items: list[str] | None = Field( + ..., + min_length=1, + max_length=100, + description="Replacement item text for a text-list element.", + ) + table_cell: SlideElementTableCellInput | None = Field( + ..., + alias="tableCell", + description="A single table header/body cell update.", + ) + chart: SlideElementChartInput | None = Field( + ..., + description=( + "Chart update using the new chart model: chartType, title, " + "categories, series.values, colors, axes, data labels, and legend." + ), + ) + table: SlideElementTableInput | None = Field( + ..., + description="Whole table update with columns/headers and rows.", + ) + element: str | None = Field( + ..., + min_length=2, + max_length=120000, + description=( + "Optional JSON-serialized element patch for toolbar-style properties " + "such as fill, stroke, font, alignment, opacity, crop, " + "border_radius, padding, shadow, or line dash. Prefer the chart field " + "for chart type, colors, axes, legend, and data labels. " + "Object values are merged into the current element." + ), + ) + font: SlideElementFontInput | None = Field( + ..., + description=( + "Toolbar-style text font patch. For text, text-list, and table " + "elements, this updates both the element font and existing text runs." + ), + ) + alignment: SlideElementAlignmentInput | None = Field( + ..., + description="Toolbar-style text alignment patch for text elements.", + ) + fill: SlideElementFillInput | None = Field( + ..., + description="Toolbar-style fill/background patch for elements that support fill.", + ) + stroke: SlideElementStrokeInput | None = Field( + ..., + description="Toolbar-style stroke/border/line patch.", + ) + color: str | None = Field( + ..., + min_length=1, + max_length=64, + description=( + "Convenience color patch. For text, text-list, and table elements this " + "means font.color; for icons/images it updates element color; for " + "basic shapes it updates fill color." + ), + ) + opacity: float | None = Field( + ..., + ge=0, + le=1, + description="Toolbar-style element opacity patch.", + ) + position: SlideElementPositionInput | None = Field( + ..., + description="Optional element position update for move requests.", + ) + size: SlideElementSizeInput | None = Field( + ..., + description="Optional element size update for resize/shrink/grow requests.", + ) + + model_config = ConfigDict(extra="forbid", strict=True, populate_by_name=True) + + @model_validator(mode="before") + @classmethod + def normalize_common_llm_payloads(cls, value: Any) -> Any: + if not isinstance(value, dict): + return value + normalized = dict(value) + chart_keys = ( + "axisColor", + "axis_color", + "categories", + "chartType", + "chart_type", + "colors", + "dataLabels", + "data_labels", + "gridColor", + "grid_color", + "legend", + "series", + "title", + "titleColor", + "title_color", + "xAxis", + "xAxisGrid", + "xAxisTitle", + "x_axis", + "x_axis_grid", + "x_axis_title", + "yAxis", + "yAxisGrid", + "yAxisTitle", + "y_axis", + "y_axis_grid", + "y_axis_title", + ) + if "chart" not in normalized and any( + key in normalized for key in chart_keys + ): + normalized["chart"] = { + key: normalized.pop(key) + for key in chart_keys + if key in normalized + } + + font_aliases = { + "fontFamily": "family", + "font_family": "family", + "fontName": "family", + "font_name": "family", + "fontSize": "size", + "font_size": "size", + "fontColor": "color", + "font_color": "color", + "textColor": "color", + "text_color": "color", + "bold": "bold", + "italic": "italic", + "underline": "underline", + "lineHeight": "lineHeight", + "line_height": "lineHeight", + "letterSpacing": "letterSpacing", + "letter_spacing": "letterSpacing", + "wrap": "wrap", + } + font_patch = ( + dict(normalized["font"]) + if isinstance(normalized.get("font"), dict) + else {} + ) + for source_key, target_key in font_aliases.items(): + if source_key in normalized and target_key not in font_patch: + font_patch[target_key] = normalized.pop(source_key) + if font_patch and "font" not in normalized: + normalized["font"] = font_patch + elif font_patch: + normalized["font"] = font_patch + + alignment_aliases = { + "align": "horizontal", + "textAlign": "horizontal", + "text_align": "horizontal", + "horizontalAlign": "horizontal", + "horizontal_align": "horizontal", + "horizontalAlignment": "horizontal", + "verticalAlign": "vertical", + "vertical_align": "vertical", + "verticalAlignment": "vertical", + } + alignment_patch = ( + dict(normalized["alignment"]) + if isinstance(normalized.get("alignment"), dict) + else {} + ) + for source_key, target_key in alignment_aliases.items(): + if source_key in normalized and target_key not in alignment_patch: + alignment_patch[target_key] = normalized.pop(source_key) + if alignment_patch: + normalized["alignment"] = alignment_patch + + fill_patch = ( + dict(normalized["fill"]) + if isinstance(normalized.get("fill"), dict) + else {} + ) + for source_key in ( + "fillColor", + "fill_color", + "backgroundColor", + "background_color", + ): + if source_key in normalized and "color" not in fill_patch: + fill_patch["color"] = normalized.pop(source_key) + if "fillOpacity" in normalized and "opacity" not in fill_patch: + fill_patch["opacity"] = normalized.pop("fillOpacity") + if "fill_opacity" in normalized and "opacity" not in fill_patch: + fill_patch["opacity"] = normalized.pop("fill_opacity") + if fill_patch: + normalized["fill"] = fill_patch + + stroke_patch = ( + dict(normalized["stroke"]) + if isinstance(normalized.get("stroke"), dict) + else {} + ) + for source_key in ("strokeColor", "stroke_color", "borderColor", "border_color"): + if source_key in normalized and "color" not in stroke_patch: + stroke_patch["color"] = normalized.pop(source_key) + for source_key in ("strokeWidth", "stroke_width", "borderWidth", "border_width"): + if source_key in normalized and "width" not in stroke_patch: + stroke_patch["width"] = normalized.pop(source_key) + if "strokeOpacity" in normalized and "opacity" not in stroke_patch: + stroke_patch["opacity"] = normalized.pop("strokeOpacity") + if "stroke_opacity" in normalized and "opacity" not in stroke_patch: + stroke_patch["opacity"] = normalized.pop("stroke_opacity") + if stroke_patch: + normalized["stroke"] = stroke_patch + return normalized + + +class UpdateSlideComponentInput(OpenAIStrictSchemaModel): + index: int = Field(..., ge=0, le=1000) + component_id: str = Field(..., alias="componentId", min_length=1, max_length=120) + position: SlideElementPositionInput | None = Field( + ..., + description="Optional component position update for move requests.", + ) + size: SlideElementSizeInput | None = Field( + ..., + description=( + "Optional component size update for resize/shrink/grow requests. " + "The component's contained elements scale with this size." + ), + ) + + model_config = ConfigDict(extra="forbid", strict=True, populate_by_name=True) + + +class DeleteSlideComponentInput(StrictSchemaModel): + index: int = Field(ge=0, le=1000) + component_id: str = Field(alias="componentId", min_length=1, max_length=120) + + model_config = ConfigDict(extra="forbid", strict=True, populate_by_name=True) + + +class DeleteSlideElementInput(StrictSchemaModel): + index: int = Field(ge=0, le=1000) + element_path: str = Field(alias="elementPath", min_length=1, max_length=500) + + model_config = ConfigDict(extra="forbid", strict=True, populate_by_name=True) + + +class AddElementInput(OpenAIStrictSchemaModel): + index: int = Field(..., ge=0, le=1000) + element: str = Field( + ..., + min_length=2, + max_length=120000, + description=( + "A JSON-serialized rendered UI element object. Use 1280 x 720 stage " + "pixels and keep new free-component geometry fully inside that window." + ), + ) + component_id: str | None = Field( + ..., + alias="componentId", + min_length=1, + max_length=120, + description="Optional target component id. Use null to add as a new free component.", + ) + insert_index: int | None = Field( + ..., + alias="insertIndex", + ge=0, + le=1000, + description="Zero-based insert position. Use null to append.", + ) + + model_config = ConfigDict(extra="forbid", strict=True, populate_by_name=True) + + +class AddSlideComponentInput(OpenAIStrictSchemaModel): + index: int = Field(..., ge=0, le=1000) + component: str = Field( + ..., + min_length=2, + max_length=200000, + description=( + "A JSON-serialized component object to add to the slide: " + '{"id": "...", "description": "...", "position": {"x": 128, "y": 120}, ' + '"size": {"width": 1024, "height": 410}, "elements": [ ... ]}. ' + "Use 1280 x 720 stage pixels, not normalized 0-1 values, and keep " + "position/size fully inside that visible window. " + "Copy the shape of an existing component from getAvailableBlocks or " + "getSlideAtIndex(includeFullContent=true)." + ), + ) + source_block_id: str | None = Field( + ..., + alias="sourceBlockId", + min_length=1, + max_length=300, + description=( + "Block id returned by getAvailableBlocks when this component is adapted " + "from a reusable block. Required for table/chart component additions " + "when a matching reusable block exists, and preferred for styled " + "title/header/card/metric/text additions when a matching block exists." + ), + ) + insert_index: int | None = Field( + ..., + alias="insertIndex", + ge=0, + le=1000, + description="Zero-based position among components. Use null to append at the end.", + ) + + model_config = ConfigDict(extra="forbid", strict=True, populate_by_name=True) + + +class UpdateComponentInput(OpenAIStrictSchemaModel): + index: int = Field(..., ge=0, le=1000) + component_id: str = Field(..., alias="componentId", min_length=1, max_length=120) + action: Literal[ + "update", + "group", + "ungroup", + "duplicate", + "bring-to-front", + "bring-forward", + "send-backward", + "send-to-back", + "bringToFront", + "bringForward", + "sendBackward", + "sendToBack", + ] | None = Field( + ..., + description=( + "Use update for move/resize/replace, group to combine components, " + "ungroup to split one component, duplicate to copy a component, or " + "a layer action to reorder it." + ), + ) + component_ids: list[str] | None = Field( + ..., + alias="componentIds", + min_length=2, + max_length=20, + description=( + "Component ids to group. Include componentId in this list; ignored for " + "update and ungroup." + ), + ) + position: SlideElementPositionInput | None = Field( + ..., + description="Optional component position update for move requests.", + ) + size: SlideElementSizeInput | None = Field( + ..., + description=( + "Optional component size update for resize/shrink/grow requests. " + "The component's contained elements scale with this size." + ), + ) + component: str | None = Field( + ..., + min_length=2, + max_length=200000, + description="Optional JSON-serialized replacement component.", + ) + + model_config = ConfigDict(extra="forbid", strict=True, populate_by_name=True) + + +class ThemeTextFontInput(OpenAIStrictSchemaModel): + name: str | None = Field(..., min_length=1, max_length=200) + url: str | None = Field(..., min_length=1, max_length=2000) + + +class ThemeFontsInput(OpenAIStrictSchemaModel): + textFont: ThemeTextFontInput | None = Field(...) + + +class ThemeColorsInput(OpenAIStrictSchemaModel): + primary: str | None = Field(..., min_length=4, max_length=16) + background: str | None = Field(..., min_length=4, max_length=16) + card: str | None = Field(..., min_length=4, max_length=16) + stroke: str | None = Field(..., min_length=4, max_length=16) + primary_text: str | None = Field(..., min_length=4, max_length=16) + background_text: str | None = Field(..., min_length=4, max_length=16) + graph_0: str | None = Field(..., min_length=4, max_length=16) + graph_1: str | None = Field(..., min_length=4, max_length=16) + graph_2: str | None = Field(..., min_length=4, max_length=16) + graph_3: str | None = Field(..., min_length=4, max_length=16) + graph_4: str | None = Field(..., min_length=4, max_length=16) + graph_5: str | None = Field(..., min_length=4, max_length=16) + graph_6: str | None = Field(..., min_length=4, max_length=16) + graph_7: str | None = Field(..., min_length=4, max_length=16) + graph_8: str | None = Field(..., min_length=4, max_length=16) + graph_9: str | None = Field(..., min_length=4, max_length=16) + + +class CustomThemeDataInput(OpenAIStrictSchemaModel): + name: str | None = Field(..., min_length=1, max_length=200) + description: str | None = Field(..., min_length=1, max_length=1000) + colors: ThemeColorsInput | None = Field(...) + fonts: ThemeFontsInput | None = Field(...) + textFont: ThemeTextFontInput | None = Field(...) + + +class CustomThemeInput(OpenAIStrictSchemaModel): + id: str | None = Field(..., min_length=1, max_length=200) + name: str | None = Field(..., min_length=1, max_length=200) + description: str | None = Field(..., min_length=1, max_length=1000) + user: str | None = Field(..., min_length=1, max_length=100) + logo: str | None = Field(..., min_length=1, max_length=500) + logo_url: str | None = Field( + ..., + alias="logoUrl", + min_length=1, + max_length=2000, + ) + company_name: str | None = Field( + ..., + alias="companyName", + min_length=1, + max_length=200, + ) + data: CustomThemeDataInput | None = Field(...) + colors: ThemeColorsInput | None = Field(...) + fonts: ThemeFontsInput | None = Field(...) + textFont: ThemeTextFontInput | None = Field(...) + + model_config = ConfigDict(extra="forbid", strict=True, populate_by_name=True) + + +class SetPresentationThemeInput(OpenAIStrictSchemaModel): + theme: str | None = Field( + ..., + min_length=1, + max_length=200, + description=( + "Theme target requested by the user (e.g., 'dark', " + "'professional-dark', 'light rose', or 'another'). Optional " + "when customTheme is provided." + ), + ) + custom_theme: CustomThemeInput | None = Field( + ..., + alias="customTheme", + description=( + "Optional custom theme payload. Supports minimal colors/fonts payloads or " + "a full theme object using only declared keys such as id, name, description, " + "data.colors, and data.fonts.textFont." + ), + ) + save_custom_theme: bool | None = Field( + ..., + alias="saveCustomTheme", + description=( + "When customTheme is provided, persist it into local custom themes for reuse." + ), + ) + + model_config = ConfigDict(extra="forbid", strict=True, populate_by_name=True) + + @model_validator(mode="after") + def validate_theme_request(self) -> "SetPresentationThemeInput": + if self.save_custom_theme is None: + object.__setattr__(self, "save_custom_theme", True) + if self.theme is None and self.custom_theme is None: + raise ValueError("Either 'theme' or 'customTheme' must be provided.") + return self diff --git a/servers/fastapi/services/chat/service.py b/servers/fastapi/services/chat/service.py new file mode 100644 index 0000000..c9edf05 --- /dev/null +++ b/servers/fastapi/services/chat/service.py @@ -0,0 +1,874 @@ +import asyncio +import json +import logging +import os +import re +import uuid +from collections.abc import AsyncGenerator +from dataclasses import dataclass +from typing import Any, Literal + +import dirtyjson # type: ignore[import-untyped] +from fastapi import HTTPException +from llmai import get_client # type: ignore[import-not-found] +from llmai.shared import ( # type: ignore[import-not-found] + AssistantMessage, + AssistantToolCall, + Message, + SystemMessage, + TextContentPart, + ToolResponseMessage, + UserMessage, +) +from sqlalchemy.ext.asyncio import AsyncSession + +from models.chat import ChatAttachment +from models.sql.presentation import PresentationModel +from services.chat.conversation_store import ChatConversationStore +from services.chat.presentation_context_store import PresentationContextStore +from services.chat.prompts import build_system_prompt +from services.chat.llm_tools import build_chat_llm_tools +from services.chat.tools import ChatToolMode, ChatTools +from services.documents_loader import DocumentsLoader +from services.mem0_presentation_memory_service import MEM0_PRESENTATION_MEMORY_SERVICE +from services.temp_file_service import TEMP_FILE_SERVICE +from utils.llm_client_error_handler import handle_llm_client_exceptions +from utils.llm_config import get_llm_config +from utils.llm_provider import get_model +from utils.llm_utils import ( + extract_text, + get_generate_kwargs, + stream_generate_events, +) + +LOGGER = logging.getLogger(__name__) +MAX_TOOL_ROUNDS = 40 +MAX_CHAT_ATTACHMENT_CONTEXT_CHARS = 6000 +MAX_CHAT_ATTACHMENT_FILE_CHARS = 3000 +DOCUMENT_CONTENT_INTENT_PATTERN = re.compile( + r"\b(read|extract|parse|analy[sz]e|summari[sz]e|review|reference|cite|quote|" + r"compare|content|from|data|numbers?|metrics?|table|chart|outline|" + r"presentation|create|generate|build|draft|write|convert)\b|" + r"\bbased\s+on\b|\baccording\s+to\b|" + r"\buse\s+(?:the\s+)?(?:attached|provided|this)\s+" + r"(?:document|pdf|file|attachment)\b", + re.IGNORECASE, +) +DIRECT_FILE_PLACEMENT_PATTERN = re.compile( + r"\b(place|put|insert|attach|display|show|move|resize|position|replace|add)\b", + re.IGNORECASE, +) + + +@dataclass(frozen=True) +class ChatTurnResult: + conversation_id: uuid.UUID + response_text: str + tool_calls: list[str] + + +ChatStreamEventType = Literal["chunk", "complete", "status", "trace"] +ChatStreamEventValue = str | ChatTurnResult | dict[str, Any] + + +class PresentationChatService: + def __init__( + self, + sql_session: AsyncSession, + presentation_id: uuid.UUID, + conversation_id: uuid.UUID | None, + chat_mode: ChatToolMode = "presentation", + ): + self._sql_session = sql_session + self._presentation_id = presentation_id + self._conversation_id = conversation_id + + self._conversation_store = ChatConversationStore(sql_session) + self._memory = PresentationContextStore(sql_session, presentation_id) + self._tools = ChatTools(self._memory, mode=chat_mode) + + async def generate_reply( + self, + user_message: str, + attachments: list[ChatAttachment] | None = None, + ) -> ChatTurnResult: + self._tools.set_turn_context(user_message) + conversation_id, messages, persisted_user_message = await self._prepare_turn_context( + user_message, + attachments or [], + ) + response_text, tool_calls = await self._run_llm_with_tools(messages) + return await self._persist_turn( + conversation_id=conversation_id, + user_message=persisted_user_message, + response_text=response_text, + tool_calls=tool_calls, + ) + + async def stream_reply( + self, + user_message: str, + attachments: list[ChatAttachment] | None = None, + ) -> AsyncGenerator[tuple[ChatStreamEventType, ChatStreamEventValue], None]: + self._tools.set_turn_context(user_message) + yield "status", "Reading deck context" + conversation_id, messages, persisted_user_message = await self._prepare_turn_context( + user_message, + attachments or [], + ) + + client = get_client(config=get_llm_config()) + model = get_model() + tools = build_chat_llm_tools(self._tools.get_tool_definitions()) + + called_tools: list[str] = [] + last_tool_results: list[dict[str, Any]] = [] + response_text: str | None = None + + for round_index in range(MAX_TOOL_ROUNDS): + completion_chunk: Any | None = None + round_content_chunks: list[str] = [] + thinking_chunks: list[str] = [] + + try: + async for event in stream_generate_events( + client, + **get_generate_kwargs( + model=model, + messages=messages, + tools=tools, + stream=True, + ), + ): + event_type = getattr(event, "type", None) + if event_type == "content": + chunk = getattr(event, "chunk", None) + if chunk: + round_content_chunks.append(chunk) + yield "chunk", chunk + elif event_type == "thinking": + thinking_text = self._event_text(event) + if thinking_text: + thinking_chunks.append(thinking_text) + elif event_type == "completion": + completion_chunk = event + except Exception as exc: + raise handle_llm_client_exceptions(exc) + + thinking_summary = self._summarize_model_note(thinking_chunks) + if thinking_summary: + yield "trace", { + "kind": "model_note", + "round": round_index + 1, + "status": "info", + "message": thinking_summary, + } + + completion_tool_calls = list( + getattr(completion_chunk, "tool_calls", []) or [] + ) + if completion_tool_calls: + tool_names = [tool_call.name for tool_call in completion_tool_calls] + called_tools.extend(tool_names) + yield "trace", { + "kind": "tool_plan", + "round": round_index + 1, + "tools": tool_names, + "message": f"Using tools: {', '.join(tool_names)}", + } + messages = self._append_sanitized_assistant_tool_turn( + messages, + content=getattr(completion_chunk, "content", None), + tool_calls=completion_tool_calls, + ) + + last_tool_results = [] + for tool_call in completion_tool_calls: + tool_focus = self._tool_focus_from_arguments( + tool_name=tool_call.name, + arguments=tool_call.arguments, + ) + start_trace: dict[str, Any] = { + "kind": "tool_call", + "round": round_index + 1, + "tool": tool_call.name, + "status": "start", + "message": self._tool_start_message(tool_call.name), + } + if tool_focus: + start_trace.update(tool_focus) + yield "trace", start_trace + tool_result = await self._tools.execute_tool_call(tool_call) + last_tool_results.append(tool_result) + resolved_tool_focus = self._tool_focus_from_result( + tool_name=tool_call.name, + tool_result=tool_result, + ) + complete_trace: dict[str, Any] = { + "kind": "tool_call", + "round": round_index + 1, + "tool": tool_call.name, + "status": "success" if tool_result.get("ok") else "error", + "message": self._summarize_tool_result( + tool_call.name, tool_result + ), + } + if resolved_tool_focus: + complete_trace.update(resolved_tool_focus) + yield "trace", complete_trace + tool_response_content = json.dumps(tool_result, ensure_ascii=False) + messages.append( + ToolResponseMessage( + id=tool_call.id, + content=[TextContentPart(text=tool_response_content)], + ) + ) + continue + + response_text = "".join(round_content_chunks) + if not response_text and completion_chunk: + response_text = extract_text(getattr(completion_chunk, "content", None)) + if not response_text: + response_text = "I could not generate a response for that request." + + if not round_content_chunks: + yield "chunk", response_text + break + else: + LOGGER.warning("Max tool rounds reached in chat stream flow") + yield "trace", { + "kind": "limit", + "message": ( + "Reached tool-call limit before final answer; " + "attempting best-effort summary." + ), + } + yield "status", "Finalizing response" + response_text = await self._try_final_response_without_tools( + client=client, + model=model, + messages=messages, + ) + if not response_text: + response_text = self._build_tool_limit_fallback(last_tool_results) + yield "chunk", response_text + + final_response_text = response_text or "I could not generate a response for that request." + if response_text is None: + yield "chunk", final_response_text + + yield "status", "Saving chat" + result = await self._persist_turn( + conversation_id=conversation_id, + user_message=persisted_user_message, + response_text=final_response_text, + tool_calls=called_tools, + ) + yield "complete", result + + async def _prepare_turn_context( + self, + user_message: str, + attachments: list[ChatAttachment] | None = None, + ) -> tuple[uuid.UUID, list[Message], str]: + if not (user_message or "").strip(): + raise HTTPException(status_code=400, detail="Message is required") + + presentation = await self._sql_session.get(PresentationModel, self._presentation_id) + if not presentation: + raise HTTPException(status_code=404, detail="Presentation not found") + + attachment_context, attachment_memory = await self._build_attachment_context( + user_message=user_message, + attachments=attachments or [], + presentation_language=getattr(presentation, "language", None), + ) + + conversation_id = await self._conversation_store.ensure_conversation_id( + self._conversation_id + ) + history = await self._conversation_store.load_history( + presentation_id=self._presentation_id, + conversation_id=conversation_id, + ) + history_messages = self._convert_history_to_messages(history) + + normalized_user_message = self._strip_ui_context_prefix(user_message) + attachment_names = " ".join( + self._attachment_display_name(attachment) for attachment in attachments or [] + ) + memory_query = " ".join( + part.strip() + for part in (normalized_user_message or user_message, attachment_names) + if part and part.strip() + ) + presentation_memory = await self._memory.retrieve_context(memory_query) + chat_memory = await self._conversation_store.retrieve_semantic_context( + presentation_id=self._presentation_id, + conversation_id=conversation_id, + query=memory_query, + ) + if attachment_memory: + await MEM0_PRESENTATION_MEMORY_SERVICE.store_generation_context( + presentation_id=self._presentation_id, + system_prompt=None, + user_prompt=None, + extracted_document_text=attachment_memory, + source_content=None, + instructions=None, + ) + model_user_message = self._compose_user_message_for_model( + user_message, + attachment_context, + ) + messages: list[Message] = [ + SystemMessage( + content=build_system_prompt( + presentation_memory_context=presentation_memory, + chat_memory_context=chat_memory, + ) + ), + *history_messages, + UserMessage(content=model_user_message), + ] + return conversation_id, messages, self._persisted_user_message( + user_message, + attachments or [], + ) + + async def _persist_turn( + self, + *, + conversation_id: uuid.UUID, + user_message: str, + response_text: str, + tool_calls: list[str], + ) -> ChatTurnResult: + await self._conversation_store.append_turn( + presentation_id=self._presentation_id, + conversation_id=conversation_id, + user_message=self._strip_ui_context_prefix(user_message) or user_message, + assistant_message=response_text, + tool_calls=tool_calls, + ) + await self._sql_session.commit() + + return ChatTurnResult( + conversation_id=conversation_id, + response_text=response_text, + tool_calls=tool_calls, + ) + + async def _run_llm_with_tools(self, messages: list[Message]) -> tuple[str, list[str]]: + client = get_client(config=get_llm_config()) + model = get_model() + tools = build_chat_llm_tools(self._tools.get_tool_definitions()) + + called_tools: list[str] = [] + last_tool_results: list[dict[str, Any]] = [] + + for _ in range(MAX_TOOL_ROUNDS): + try: + response = await asyncio.to_thread( + client.generate, + **get_generate_kwargs( + model=model, + messages=messages, + tools=tools, + ), + ) + except Exception as exc: + raise handle_llm_client_exceptions(exc) + + if not response.tool_calls: + response_text = extract_text(response.content) or ( + "I could not generate a response for that request." + ) + return response_text, called_tools + + called_tools.extend([tool_call.name for tool_call in response.tool_calls]) + messages = self._append_sanitized_assistant_tool_turn( + messages, + content=getattr(response, "content", None), + tool_calls=list(response.tool_calls), + ) + + last_tool_results = [] + for tool_call in response.tool_calls: + tool_result = await self._tools.execute_tool_call(tool_call) + last_tool_results.append(tool_result) + tool_response_content = json.dumps(tool_result, ensure_ascii=False) + messages.append( + ToolResponseMessage( + id=tool_call.id, + content=[TextContentPart(text=tool_response_content)], + ) + ) + + LOGGER.warning("Max tool rounds reached in chat flow") + final_response = await self._try_final_response_without_tools( + client=client, + model=model, + messages=messages, + ) + if final_response: + return final_response, called_tools + + return self._build_tool_limit_fallback(last_tool_results), called_tools + + async def _try_final_response_without_tools( + self, + *, + client: Any, + model: str, + messages: list[Message], + ) -> str | None: + try: + response = await asyncio.to_thread( + client.generate, + **get_generate_kwargs( + model=model, + messages=messages, + ), + ) + except Exception: + LOGGER.warning("Final no-tool synthesis call failed", exc_info=True) + return None + + return extract_text(response.content) + + @staticmethod + def _summarize_model_note(chunks: list[str]) -> str: + text = "".join(chunks).strip() + if not text or text in {"{}", "[]"}: + return "" + + compact = " ".join(text.split()) + if compact.lower() in {"start", "end"}: + return "" + if len(compact) > 600: + return f"{compact[:600].rstrip()}..." + return compact + + @staticmethod + def _event_text(event: Any) -> str: + for attr in ("chunk", "delta", "text", "content"): + value = getattr(event, attr, None) + if isinstance(value, str): + return value + return "" + + @staticmethod + def _append_sanitized_assistant_tool_turn( + messages: list[Message], + *, + content: Any, + tool_calls: list[AssistantToolCall], + ) -> list[Message]: + response_text = extract_text(content) + return [ + *messages, + AssistantMessage( + content=[response_text] if response_text else None, + tool_calls=list(tool_calls), + ), + ] + + @staticmethod + def _strip_ui_context_prefix(user_message: str) -> str: + marker = "\nUser message:" + if not user_message.startswith("UI context:"): + return user_message + marker_index = user_message.find(marker) + if marker_index == -1: + return user_message + return user_message[marker_index + len(marker) :].lstrip() + + @staticmethod + def _attachment_display_name(attachment: ChatAttachment) -> str: + name = (attachment.name or "").strip() + if name: + return name + return os.path.basename(attachment.file_path or "").strip() or "attachment" + + @staticmethod + def _trim_attachment_text(text: str, limit: int) -> str: + value = (text or "").strip() + if len(value) <= limit: + return value + return f"{value[:limit].rstrip()}\n[Attachment truncated]" + + @classmethod + def _should_parse_attachments( + cls, + user_message: str, + attachments: list[ChatAttachment], + ) -> bool: + if not attachments: + return False + + user_text = cls._strip_ui_context_prefix(user_message).strip() + if not user_text: + return True + if DOCUMENT_CONTENT_INTENT_PATTERN.search(user_text): + return True + if DIRECT_FILE_PLACEMENT_PATTERN.search(user_text): + return False + return True + + @classmethod + def _compose_user_message_for_model( + cls, + user_message: str, + attachment_context: str, + ) -> str: + if not attachment_context: + return user_message + + marker = "\nUser message:" + if user_message.startswith("UI context:"): + marker_index = user_message.find(marker) + if marker_index != -1: + return ( + f"{user_message[:marker_index].rstrip()}\n" + f"{attachment_context}\n" + f"{user_message[marker_index:].lstrip()}" + ) + + return f"{attachment_context}\n\nUser message: {user_message}" + + @classmethod + def _persisted_user_message( + cls, + user_message: str, + attachments: list[ChatAttachment], + ) -> str: + display_message = cls._strip_ui_context_prefix(user_message) or user_message + if not attachments: + return display_message + + attachment_list = ", ".join( + cls._attachment_display_name(attachment) for attachment in attachments + ) + return f"{display_message}\n\nAttached files: {attachment_list}" + + async def _build_attachment_context( + self, + *, + user_message: str, + attachments: list[ChatAttachment], + presentation_language: str | None, + ) -> tuple[str, str]: + if not attachments: + return "", "" + + should_parse = self._should_parse_attachments(user_message, attachments) + names = [ + f"Document {index + 1}: {self._attachment_display_name(attachment)}" + for index, attachment in enumerate(attachments) + ] + + if not should_parse: + context = "\n".join( + [ + ( + "UI context: the user attached document file(s), but this " + "request appears to place or reference the file rather than " + "read its contents. Use only the file names unless the user " + "asks to read, extract, summarize, or build from them." + ), + *names, + ] + ) + return context, "" + + temp_dir = TEMP_FILE_SERVICE.create_temp_dir(str(uuid.uuid4())) + loader = DocumentsLoader( + file_paths=[attachment.file_path for attachment in attachments], + presentation_language=presentation_language, + ) + await loader.load_documents(temp_dir=temp_dir) + + context_lines = [ + ( + "UI context: the user attached parsed document(s) to this chat " + "request. Use this content when the user asks to read, extract, " + "summarize, or build slide/chart/data content from attachments." + ) + ] + memory_lines: list[str] = [] + remaining_chars = MAX_CHAT_ATTACHMENT_CONTEXT_CHARS + + for index, attachment in enumerate(attachments): + if remaining_chars <= 0: + context_lines.append("[Additional attachment content omitted]") + break + + name = self._attachment_display_name(attachment) + parsed = loader.documents[index] if index < len(loader.documents) else "" + file_limit = min(MAX_CHAT_ATTACHMENT_FILE_CHARS, remaining_chars) + trimmed = self._trim_attachment_text(parsed, file_limit) + context_lines.append(f"Document {index + 1} ({name}):\n{trimmed}") + memory_lines.append(f"Document {index + 1} ({name}):\n{trimmed}") + remaining_chars -= len(trimmed) + + return "\n".join(context_lines), "\n\n".join(memory_lines).strip() + + @staticmethod + def _tool_focus_from_arguments( + *, + tool_name: str, + arguments: str | None, + ) -> dict[str, Any] | None: + if tool_name not in { + "getSlideAtIndex", + "addNewSlide", + "addNewSlideLayout", + "saveSlide", + "updateSlide", + "deleteSlide", + "addElement", + "updateElement", + "deleteElement", + "addComponent", + "createComponent", + "updateComponent", + "deleteComponent", + }: + return None + + parsed_args: dict[str, Any] + try: + parsed_args = dirtyjson.loads(arguments or "{}") + except Exception: + try: + parsed_args = json.loads(arguments or "{}") + except Exception: + return None + if not isinstance(parsed_args, dict): + return None + + focus_payload: dict[str, Any] = {} + index = parsed_args.get("index") + if isinstance(index, int): + normalized_index = max(0, index) + focus_payload["slide_index"] = normalized_index + focus_payload["slide_number"] = normalized_index + 1 + + component_id = parsed_args.get("componentId") or parsed_args.get("component_id") + if isinstance(component_id, str) and component_id: + focus_payload["component_id"] = component_id + element_path = parsed_args.get("elementPath") or parsed_args.get("element_path") + if isinstance(element_path, str) and element_path: + focus_payload["element_path"] = element_path + + target_slide_indices = PresentationChatService._extract_target_slide_indices( + parsed_args + ) + if target_slide_indices: + focus_payload["target_slide_indices"] = target_slide_indices + focus_payload["target_slide_numbers"] = [ + index + 1 for index in target_slide_indices + ] + + return focus_payload or None + + @staticmethod + def _tool_focus_from_result( + *, + tool_name: str, + tool_result: dict[str, Any], + ) -> dict[str, Any] | None: + if tool_name not in { + "getSlideAtIndex", + "addNewSlide", + "addNewSlideLayout", + "saveSlide", + "updateSlide", + "deleteSlide", + "addElement", + "updateElement", + "deleteElement", + "addComponent", + "createComponent", + "updateComponent", + "deleteComponent", + }: + return None + if not tool_result.get("ok"): + return None + + result = tool_result.get("result") + if not isinstance(result, dict): + return None + + focus_payload: dict[str, Any] = {} + index: int | None = None + resolved_index = result.get("resolved_index") + if isinstance(resolved_index, int): + index = resolved_index + else: + direct_index = result.get("index") + if isinstance(direct_index, int): + index = direct_index + else: + slide = result.get("slide") + if isinstance(slide, dict) and isinstance(slide.get("index"), int): + index = slide["index"] + + if index is not None: + normalized_index = max(0, index) + focus_payload["slide_index"] = normalized_index + focus_payload["slide_number"] = normalized_index + 1 + + component_id = result.get("component_id") + if isinstance(component_id, str) and component_id: + focus_payload["component_id"] = component_id + element_path = result.get("element_path") + if isinstance(element_path, str) and element_path: + focus_payload["element_path"] = element_path + + target_slide_indices = PresentationChatService._extract_target_slide_indices( + result + ) + if target_slide_indices: + focus_payload["target_slide_indices"] = target_slide_indices + focus_payload["target_slide_numbers"] = [ + index + 1 for index in target_slide_indices + ] + + return focus_payload or None + + @staticmethod + def _extract_target_slide_indices(payload: dict[str, Any]) -> list[int]: + raw_candidates = [] + for key in ( + "target_slide_indices", + "targetSlideIndices", + "target_indices", + "targetIndices", + "slide_indices", + "slideIndices", + "indices", + ): + value = payload.get(key) + if isinstance(value, list): + raw_candidates.extend(value) + + normalized_indices: list[int] = [] + seen_indices: set[int] = set() + for candidate in raw_candidates: + if not isinstance(candidate, int): + continue + normalized_index = max(0, candidate) + if normalized_index in seen_indices: + continue + seen_indices.add(normalized_index) + normalized_indices.append(normalized_index) + return normalized_indices + + @staticmethod + def _tool_start_message(tool_name: str) -> str: + labels = { + "addOutline": "Adding an outline slide", + "updateOutline": "Updating the outline slide", + "deleteOutline": "Deleting the outline slide", + "addNewSlide": "Adding a blank slide", + "addNewSlideLayout": "Adding slide from layout", + "getTemplateSummary": "Reading template summary", + "readSourceDocuments": "Reading source documents", + "searchSlide": "Searching relevant slides", + "getSlideAtIndex": "Opening the requested slide", + "getAvailableLayouts": "Checking available layouts", + "getContentSchemaFromLayoutId": "Reading layout content schema", + "generateAssets": "Generating slide assets", + "saveSlide": "Saving the slide", + "updateSlide": "Updating the slide", + "deleteSlide": "Deleting the slide", + "addElement": "Adding slide element", + "updateElement": "Updating slide element", + "deleteElement": "Removing slide element", + "addComponent": "Adding slide component", + "createComponent": "Creating slide component", + "updateComponent": "Updating slide component", + "deleteComponent": "Removing slide component", + "getPresentationTheme": "Checking available themes", + "setPresentationTheme": "Applying presentation theme", + } + return labels.get(tool_name, f"Running {tool_name}") + + @staticmethod + def _build_tool_limit_fallback(last_tool_results: list[dict[str, Any]]) -> str: + for entry in reversed(last_tool_results): + if not isinstance(entry, dict): + continue + if not entry.get("ok"): + continue + result = entry.get("result") + if not isinstance(result, dict): + continue + message = result.get("message") + if isinstance(message, str) and message.strip(): + return message.strip() + + return ( + "I completed several tool operations but could not finalize the response " + "within the tool limit. Please ask a follow-up and I will continue." + ) + + @staticmethod + def _summarize_tool_result(tool_name: str, tool_result: dict[str, Any]) -> str: + if not tool_result.get("ok"): + error = tool_result.get("error") + if isinstance(error, str) and error.strip(): + recovery = tool_result.get("recovery") + if isinstance(recovery, dict): + guidance = recovery.get("guidance") + if isinstance(guidance, list) and guidance: + first_guidance = str(guidance[0]).strip() + if first_guidance: + return ( + f"{tool_name} failed: {error.strip()} " + f"Recovery: {first_guidance}" + ) + return f"{tool_name} failed: {error.strip()}" + return f"{tool_name} failed." + + result = tool_result.get("result") + if isinstance(result, dict): + message = result.get("message") + if isinstance(message, str) and message.strip(): + return message.strip() + + note = result.get("note") + if isinstance(note, str) and note.strip(): + return note.strip() + + count = result.get("count") + if isinstance(count, int): + return f"{tool_name} returned {count} result(s)." + + found = result.get("found") + if isinstance(found, bool): + return ( + f"{tool_name} found requested data." + if found + else f"{tool_name} did not find matching data." + ) + + return f"{tool_name} completed." + + @staticmethod + def _convert_history_to_messages(history: list[dict[str, str]]) -> list[Message]: + messages: list[Message] = [] + for item in history: + role = item.get("role") + content = item.get("content") + if not content: + continue + if role == "user": + content = PresentationChatService._strip_ui_context_prefix(content) + messages.append(UserMessage(content=content)) + elif role == "assistant": + messages.append(AssistantMessage(content=[content])) + return messages diff --git a/servers/fastapi/services/chat/slide_ui_helpers.py b/servers/fastapi/services/chat/slide_ui_helpers.py new file mode 100644 index 0000000..25b5685 --- /dev/null +++ b/servers/fastapi/services/chat/slide_ui_helpers.py @@ -0,0 +1,1937 @@ +from __future__ import annotations + +import copy +import json +import math +import re +from typing import Any + +_PATH_SEGMENT_RE = re.compile(r"^(?Pcomponents|elements|children)\[(?P\d+)\]$") +CONTENT_EDITABLE_ELEMENT_TYPES = {"text", "text-list", "table", "image", "chart"} +VISIBLE_ELEMENT_TYPES = CONTENT_EDITABLE_ELEMENT_TYPES | { + "container", + "rectangle", + "ellipse", + "line", + "infographic", + "flex", + "grid", + "grid-view", + "group", +} +SUPPORTED_CHART_TYPES = { + "area", + "bar", + "bubble", + "donut", + "horizontal_bar", + "horizontal_stacked_bar", + "line", + "pie", + "polar_area", + "radar", + "scatter", + "stacked_bar", +} +DATA_LABEL_POSITIONS = {"base", "mid", "top", "outside"} +DEFAULT_CHART_COLORS = [ + "#7F22FE", + "#155DFC", + "#F59E0B", + "#12B76A", + "#EF4444", + "#06B6D4", + "#8B5CF6", + "#64748B", +] +THEME_GRAPH_COLOR_KEYS = tuple(f"graph_{index}" for index in range(10)) +CHART_UPDATE_KEYS = { + "axis_color", + "categories", + "chart_type", + "colors", + "data_labels", + "grid_color", + "legend", + "series", + "title", + "title_color", + "x_axis", + "x_axis_grid", + "x_axis_title", + "y_axis", + "y_axis_grid", + "y_axis_title", +} + + +def _normalize_chart_tree(node: Any, theme: dict[str, Any] | None = None) -> None: + if isinstance(node, dict): + if node.get("type") == "chart": + _normalize_chart_element(node, theme) + for value in node.values(): + _normalize_chart_tree(value, theme) + elif isinstance(node, list): + for value in node: + _normalize_chart_tree(value, theme) + + +def _normalize_chart_element( + element: dict[str, Any], + theme: dict[str, Any] | None = None, +) -> None: + element.pop("data_labels_color", None) + element.pop("dataLabelsColor", None) + element.pop("grid", None) + if "title_color" not in element and "titleColor" in element: + element["title_color"] = element.get("titleColor") + + chart_type = _normalize_chart_type( + element.get("chart_type"), + fallback=str(element.get("chart_type") or "bar"), + ) + element["chart_type"] = chart_type + + legacy_data = _normalize_legacy_chart_data(element.get("data")) + series = _normalize_chart_series( + element.get("series"), + fallback_name=str(element.get("title") or "Series 1"), + ) + if not series and legacy_data: + series = [ + { + "name": str(element.get("title") or "Series 1"), + "values": [item["value"] for item in legacy_data], + } + ] + if not series: + series = [{"name": "Series 1", "values": [0]}] + + legacy_categories = [item["label"] for item in legacy_data] + categories = _normalize_chart_categories( + element.get("categories") or legacy_categories, + _max_chart_value_length(series), + ) + _validate_chart_shape(chart_type, categories, series) + category_count = max(1, len(categories), _max_chart_value_length(series)) + categories = _normalize_chart_categories(categories, category_count) + for item in series: + item["values"] = _pad_chart_values( + item.get("values"), + category_count, + ) + + if not _read_chart_colors(element.get("colors")): + legacy_colors = [ + color + for item in legacy_data + if (color := _normalize_chart_color(item.get("color"))) + ] + if legacy_colors: + element["colors"] = legacy_colors + + color_count = _chart_color_target_count(chart_type, categories, series) + colors = _resolve_chart_colors( + element, + theme=theme, + count=color_count, + ) + element["colors"] = colors + element["color"] = colors[0] + element["categories"] = categories + element["series"] = series + element["data"] = _chart_data_from_series( + categories=categories, + series=series, + colors=colors, + chart_type=chart_type, + ) + + theme_colors = _theme_colors(theme) + if not _normalize_chart_color(element.get("axis_color")): + element["axis_color"] = ( + _normalize_chart_color(theme_colors.get("background_text")) + or _normalize_chart_color(theme_colors.get("primary")) + or "#475467" + ) + else: + element["axis_color"] = _normalize_chart_color(element.get("axis_color")) + if not _normalize_chart_color(element.get("grid_color")): + element["grid_color"] = ( + _normalize_chart_color(theme_colors.get("stroke")) + or _normalize_chart_color(theme_colors.get("card")) + or "#D0D5DD" + ) + else: + element["grid_color"] = _normalize_chart_color(element.get("grid_color")) + if _normalize_chart_color(element.get("title_color")): + element["title_color"] = _normalize_chart_color(element.get("title_color")) + + if ( + "x_axis" not in element + and chart_type not in {"pie", "donut", "polar_area", "radar"} + ): + element["x_axis"] = True + if ( + "y_axis" not in element + and chart_type not in {"pie", "donut", "polar_area", "radar"} + ): + element["y_axis"] = True + if "x_axis_grid" not in element and chart_type not in {"pie", "donut"}: + element["x_axis_grid"] = True + if "y_axis_grid" not in element and chart_type not in {"pie", "donut"}: + element["y_axis_grid"] = True + if "legend" not in element: + element["legend"] = chart_type in {"pie", "donut"} or len(series) > 1 + element["data_labels"] = _normalize_chart_data_labels(element.get("data_labels")) + + +def _apply_chart_content_update( + element: dict[str, Any], + chart: dict[str, Any], + theme: dict[str, Any] | None = None, +) -> None: + for source_key, target_key in ( + ("chart_type", "chart_type"), + ("title", "title"), + ("title_color", "title_color"), + ("categories", "categories"), + ("series", "series"), + ("colors", "colors"), + ("axis_color", "axis_color"), + ("grid_color", "grid_color"), + ("x_axis_title", "x_axis_title"), + ("y_axis_title", "y_axis_title"), + ): + if source_key in chart: + element[target_key] = copy.deepcopy(chart[source_key]) + + for source_key, target_key in ( + ("x_axis", "x_axis"), + ("y_axis", "y_axis"), + ("x_axis_grid", "x_axis_grid"), + ("y_axis_grid", "y_axis_grid"), + ("data_labels", "data_labels"), + ("legend", "legend"), + ): + if source_key in chart: + element[target_key] = chart[source_key] + + _normalize_chart_element(element, theme) + + +def _normalize_chart_data_labels(value: Any) -> str | None: + if value is True: + return "top" + if value is False or value is None: + return None + if isinstance(value, str): + normalized = value.strip().lower() + if normalized in DATA_LABEL_POSITIONS: + return normalized + return None + + +def _validate_visual_insert_tree(node: Any) -> None: + if isinstance(node, dict): + if node.get("type") == "chart" and not _chart_element_has_explicit_data(node): + raise ValueError( + "Chart elements must include numeric data via series.values or " + "data before they can be added." + ) + if node.get("type") == "table" and not _table_element_has_explicit_data(node): + raise ValueError( + "Table elements must include headers/columns and rows before " + "they can be added." + ) + if node.get("type") == "image" and not _image_element_has_explicit_data(node): + raise ValueError( + "Image elements must include an image/icon URL in data before " + "they can be added." + ) + for value in node.values(): + _validate_visual_insert_tree(value) + elif isinstance(node, list): + for value in node: + _validate_visual_insert_tree(value) + + +def _validate_chart_insert_tree(node: Any) -> None: + _validate_visual_insert_tree(node) + + +def _chart_element_has_explicit_data(element: dict[str, Any]) -> bool: + return bool( + _normalize_chart_series( + element.get("series"), + fallback_name=str(element.get("title") or "Series 1"), + ) + or _normalize_legacy_chart_data(element.get("data")) + ) + + +def _table_element_has_explicit_data(element: dict[str, Any]) -> bool: + columns = element.get("columns") + headers = element.get("headers") + rows = element.get("rows") + has_columns = isinstance(columns, list) and len(columns) > 0 + has_headers = isinstance(headers, list) and len(headers) > 0 + has_rows = isinstance(rows, list) and len(rows) > 0 + return (has_columns or has_headers) and has_rows + + +def _image_element_has_explicit_data(element: dict[str, Any]) -> bool: + asset_url = _template_v2_asset_url(element) + return bool(asset_url and _looks_like_asset_reference(asset_url)) + + +def _normalize_image_tree(node: Any) -> None: + if isinstance(node, dict): + if node.get("type") == "image": + _normalize_image_element(node) + for value in node.values(): + _normalize_image_tree(value) + elif isinstance(node, list): + for value in node: + _normalize_image_tree(value) + + +def _normalize_image_element(element: dict[str, Any]) -> None: + asset_url = _template_v2_asset_url(element) + if asset_url and _looks_like_asset_reference(asset_url): + element["data"] = asset_url + element.setdefault("is_icon", False) + prompt = _template_v2_asset_prompt( + element, + is_icon=element.get("is_icon") is True, + ) + if prompt: + element.setdefault("prompt", prompt) + + +def _normalize_chart_type(value: Any, *, fallback: str = "bar") -> str: + raw = value if isinstance(value, str) else fallback + normalized = raw.strip().lower() + return normalized if normalized in SUPPORTED_CHART_TYPES else "bar" + + +def _normalize_chart_series( + value: Any, + *, + fallback_name: str, +) -> list[dict[str, Any]]: + if not isinstance(value, list): + return [] + + series: list[dict[str, Any]] = [] + for index, item in enumerate(value[:20]): + if isinstance(item, dict): + raw_values = item.get("values") + if not isinstance(raw_values, list): + raw_values = item.get("data") + if not isinstance(raw_values, list): + continue + name = item.get("name") + series_name = ( + str(name).strip() + if isinstance(name, str) and name.strip() + else fallback_name + if index == 0 and fallback_name + else f"Series {index + 1}" + ) + elif isinstance(item, list): + raw_values = item + series_name = ( + fallback_name + if index == 0 and fallback_name + else f"Series {index + 1}" + ) + else: + continue + + values = [ + number + for raw_value in raw_values[:100] + if (number := _chart_number(raw_value)) is not None + ] + if values: + series.append({"name": series_name, "values": values}) + return series + + +def _chart_number(value: Any) -> float | int | None: + if isinstance(value, bool): + return None + if isinstance(value, (int, float)) and math.isfinite(float(value)): + number = float(value) + return int(number) if number.is_integer() else number + if isinstance(value, str): + match = re.search( + r"[-+]?(?:\d[\d,]*(?:\.\d+)?|\.\d+)(?:[eE][-+]?\d+)?", + value.strip(), + ) + if not match: + return None + try: + number = float(match.group(0).replace(",", "")) + except ValueError: + return None + if math.isfinite(number): + return int(number) if number.is_integer() else number + return None + + +def _normalize_legacy_chart_data(value: Any) -> list[dict[str, Any]]: + if not isinstance(value, list): + return [] + + rows: list[dict[str, Any]] = [] + for item in value[:100]: + direct_number = _chart_number(item) + if direct_number is not None: + rows.append({"label": "", "value": direct_number}) + continue + + if not isinstance(item, dict): + continue + number = _first_chart_number(item.get("value"), item.get("data"), item.get("y")) + if number is None: + continue + + row: dict[str, Any] = { + "label": _first_chart_label( + item.get("label"), + item.get("name"), + item.get("category"), + item.get("x"), + ), + "value": number, + } + color = _normalize_chart_color(item.get("color")) + if color: + row["color"] = color + rows.append(row) + return rows + + +def _first_chart_number(*values: Any) -> float | int | None: + for value in values: + number = _chart_number(value) + if number is not None: + return number + return None + + +def _first_chart_label(*values: Any) -> str: + for value in values: + if value is None: + continue + label = str(value).strip() + if label: + return label + return "" + + +def _normalize_chart_categories( + value: Any, + length: int, +) -> list[str]: + raw_values = value if isinstance(value, list) and value else [] + target_length = max(1, length, len(raw_values)) + return [ + str(raw_values[index]).strip() + if index < len(raw_values) and str(raw_values[index]).strip() + else f"Item {index + 1}" + for index in range(target_length) + ] + + +def _max_chart_value_length(series: list[dict[str, Any]]) -> int: + return max( + 0, + *[ + len(item.get("values")) + for item in series + if isinstance(item.get("values"), list) + ], + ) + + +def _validate_chart_shape( + chart_type: str, + categories: list[str], + series: list[dict[str, Any]], +) -> None: + if chart_type in {"pie", "donut"} and len(series) > 1: + raise ValueError("Pie and donut charts support exactly one series.") + if not categories: + return + category_count = len(categories) + for item in series: + values = item.get("values") + if isinstance(values, list) and len(values) != category_count: + raise ValueError("Each chart series must match the category count.") + + +def _pad_chart_values(value: Any, length: int) -> list[Any]: + values = value if isinstance(value, list) else [] + padded = values[:length] + while len(padded) < length: + padded.append(0) + return padded + + +def _resolve_chart_colors( + element: dict[str, Any], + *, + theme: dict[str, Any] | None, + count: int, +) -> list[str]: + source_colors = _read_chart_colors(element.get("colors")) + if not source_colors: + source_colors = _theme_chart_palette(theme) + if not source_colors: + source_colors = [ + _normalize_chart_color(element.get("color")) or DEFAULT_CHART_COLORS[0] + ] + + target_count = min(12, max(1, count, len(source_colors))) + return [ + source_colors[index % len(source_colors)] + for index in range(target_count) + ] + + +def _read_chart_colors(value: Any) -> list[str]: + if not isinstance(value, list): + return [] + colors = [_normalize_chart_color(item) for item in value] + return [color for color in colors if color] + + +def _chart_color_target_count( + chart_type: str, + categories: list[str], + series: list[dict[str, Any]], +) -> int: + if chart_type not in {"pie", "donut"} and len(series) > 1: + return len(series) + return len(categories) + + +def _chart_data_from_series( + *, + categories: list[str], + series: list[dict[str, Any]], + colors: list[str], + chart_type: str, +) -> list[dict[str, Any]]: + first = series[0] if series else {"values": [0]} + values = first.get("values") if isinstance(first.get("values"), list) else [0] + category_colors = chart_type in {"pie", "donut"} or len(series) == 1 + return [ + { + "label": ( + categories[index] if index < len(categories) else f"Item {index + 1}" + ), + "value": _chart_number(values[index] if index < len(values) else 0) or 0, + "color": colors[index % len(colors)] if category_colors else colors[0], + } + for index in range(min(8, max(len(categories), len(values), 1))) + ] + + +def _theme_chart_palette(theme: dict[str, Any] | None) -> list[str]: + colors = _theme_colors(theme) + palette = [ + color + for color in ( + _normalize_chart_color(colors.get(key)) for key in THEME_GRAPH_COLOR_KEYS + ) + if color + ] + if palette: + return palette + fallback_keys = ("primary", "card", "stroke", "background_text", "primary_text") + return [ + color + for color in (_normalize_chart_color(colors.get(key)) for key in fallback_keys) + if color + ] + + +def _theme_colors(theme: dict[str, Any] | None) -> dict[str, Any]: + if not isinstance(theme, dict): + return {} + data = theme.get("data") + if isinstance(data, dict): + colors = data.get("colors") + if isinstance(colors, dict): + return colors + colors = theme.get("colors") + return colors if isinstance(colors, dict) else {} + + +def _normalize_chart_color(value: Any) -> str | None: + if not isinstance(value, str): + return None + color = value.strip() + if not color: + return None + hex_match = re.match(r"^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$", color) + if hex_match: + raw = hex_match.group(1) + if len(raw) == 3: + raw = "".join(char + char for char in raw) + return f"#{raw.upper()}" + if re.match(r"^rgba?\([^)]+\)$", color, re.IGNORECASE): + return color + return color + + +def _model_dict(value: Any) -> dict[str, Any]: + if hasattr(value, "model_dump"): + return value.model_dump(mode="json", exclude_none=True) + return json.loads(json.dumps(value, ensure_ascii=False)) + + +def _ungrouped_components_from_component( + component: dict[str, Any], + component_index: int, + *, + used_ids: set[str], +) -> list[dict[str, Any]]: + component_box = _required_box(component, label="component") + id_base = _normalize_component_id( + str( + component.get("id") + or component.get("name") + or component.get("description") + or f"component_{component_index + 1}" + ) + ) + entries: list[dict[str, Any]] = [] + elements = component.get("elements") + if not isinstance(elements, list): + return [] + + valid_elements = [element for element in elements if isinstance(element, dict)] + if len(valid_elements) == 1: + element = valid_elements[0] + box = _box_or_default( + element, + { + "x": 0.0, + "y": 0.0, + "width": component_box["width"], + "height": component_box["height"], + }, + ) + entries.extend( + _ungroup_element_one_level( + element, + { + "x": component_box["x"] + box["x"], + "y": component_box["y"] + box["y"], + "width": box["width"], + "height": box["height"], + }, + ) + ) + else: + for element in valid_elements: + box = _box_or_default( + element, + { + "x": 0.0, + "y": 0.0, + "width": component_box["width"], + "height": component_box["height"], + }, + ) + entries.append( + { + "element": element, + "box": { + "x": component_box["x"] + box["x"], + "y": component_box["y"] + box["y"], + "width": box["width"], + "height": box["height"], + }, + } + ) + + parts: list[dict[str, Any]] = [] + for index, entry in enumerate(entries): + box = entry["box"] + element = copy.deepcopy(entry["element"]) + element["position"] = {"x": 0, "y": 0} + element["size"] = {"width": box["width"], "height": box["height"]} + component_id = _unique_component_id(f"{id_base}_part_{index + 1}", used_ids) + parts.append( + { + "id": component_id, + "description": "Ungrouped component element", + "position": {"x": box["x"], "y": box["y"]}, + "size": {"width": box["width"], "height": box["height"]}, + "elements": [element], + } + ) + return parts + + +def _ungroup_element_one_level( + element: dict[str, Any], + box: dict[str, float], +) -> list[dict[str, Any]]: + children = _child_items(element) + if not children: + return [] + + entries = [] + for child, child_box in _layout_child_boxes(element, children, box): + entries.append( + { + "element": child, + "box": { + "x": box["x"] + child_box["x"], + "y": box["y"] + child_box["y"], + "width": child_box["width"], + "height": child_box["height"], + }, + } + ) + return entries + + +def _child_items(element: dict[str, Any]) -> list[dict[str, Any]]: + for key in ("children", "elements"): + value = element.get(key) + if isinstance(value, list): + return [item for item in value if isinstance(item, dict)] + child = element.get("child") + return [child] if isinstance(child, dict) else [] + + +def _layout_child_boxes( + parent: dict[str, Any], + children: list[dict[str, Any]], + parent_box: dict[str, float], +) -> list[tuple[dict[str, Any], dict[str, float]]]: + parent_type = str(parent.get("type") or "") + if parent_type in {"flex", "list-view"}: + return _layout_flex_child_boxes(parent, children, parent_box) + if parent_type in {"grid", "grid-view"}: + return _layout_grid_child_boxes(parent, children, parent_box) + + padding = _padding(parent.get("padding")) if parent_type == "container" else {} + content = { + "x": float(padding.get("left", 0.0)), + "y": float(padding.get("top", 0.0)), + "width": max( + 1.0, + parent_box["width"] + - float(padding.get("left", 0.0)) + - float(padding.get("right", 0.0)), + ), + "height": max( + 1.0, + parent_box["height"] + - float(padding.get("top", 0.0)) + - float(padding.get("bottom", 0.0)), + ), + } + return [ + ( + child, + _box_or_default( + child, + { + "x": content["x"], + "y": content["y"], + "width": content["width"], + "height": content["height"], + }, + ), + ) + for child in children + ] + + +def _layout_flex_child_boxes( + parent: dict[str, Any], + children: list[dict[str, Any]], + parent_box: dict[str, float], +) -> list[tuple[dict[str, Any], dict[str, float]]]: + padding = _padding(parent.get("padding")) + direction = "row" if parent.get("direction") == "row" else "column" + gap = _number(parent.get("gap")) or 0.0 + content_x = padding["left"] + content_y = padding["top"] + content_w = max(1.0, parent_box["width"] - padding["left"] - padding["right"]) + content_h = max(1.0, parent_box["height"] - padding["top"] - padding["bottom"]) + count = max(1, len(children)) + if direction == "row": + width = max(1.0, (content_w - gap * (count - 1)) / count) + return [ + ( + child, + _box_or_default( + child, + { + "x": content_x + index * (width + gap), + "y": content_y, + "width": width, + "height": content_h, + }, + ), + ) + for index, child in enumerate(children) + ] + height = max(1.0, (content_h - gap * (count - 1)) / count) + return [ + ( + child, + _box_or_default( + child, + { + "x": content_x, + "y": content_y + index * (height + gap), + "width": content_w, + "height": height, + }, + ), + ) + for index, child in enumerate(children) + ] + + +def _layout_grid_child_boxes( + parent: dict[str, Any], + children: list[dict[str, Any]], + parent_box: dict[str, float], +) -> list[tuple[dict[str, Any], dict[str, float]]]: + padding = _padding(parent.get("padding")) + gap = _number(parent.get("gap")) or 0.0 + column_gap = _number(parent.get("column_gap")) + row_gap = _number(parent.get("row_gap")) + column_gap = gap if column_gap is None else column_gap + row_gap = gap if row_gap is None else row_gap + column_count = _number(parent.get("columns")) + if column_count is None and isinstance(parent.get("columns"), list): + column_count = len(parent["columns"]) + columns = max(1, int(column_count or 1)) + rows = max(1, math.ceil(len(children) / columns)) + content_w = max(1.0, parent_box["width"] - padding["left"] - padding["right"]) + content_h = max(1.0, parent_box["height"] - padding["top"] - padding["bottom"]) + cell_w = max(1.0, (content_w - column_gap * (columns - 1)) / columns) + cell_h = max(1.0, (content_h - row_gap * (rows - 1)) / rows) + + child_sizes = [_element_size_or_default(child, cell_w, cell_h) for child in children] + column_widths = [cell_w for _ in range(columns)] + row_heights = [cell_h for _ in range(rows)] + for index, child_size in enumerate(child_sizes): + column_index = index % columns + row_index = index // columns + column_widths[column_index] = max(column_widths[column_index], child_size["width"]) + row_heights[row_index] = max(row_heights[row_index], child_size["height"]) + + column_offsets = [padding["left"]] + for index in range(1, columns): + column_offsets.append(column_offsets[index - 1] + column_widths[index - 1] + column_gap) + row_offsets = [padding["top"]] + for index in range(1, rows): + row_offsets.append(row_offsets[index - 1] + row_heights[index - 1] + row_gap) + + return [ + ( + child, + _box_or_default( + child, + { + "x": column_offsets[index % columns], + "y": row_offsets[index // columns], + "width": child_sizes[index]["width"], + "height": child_sizes[index]["height"], + }, + ), + ) + for index, child in enumerate(children) + ] + + +def _element_size_or_default( + element: dict[str, Any], + default_width: float, + default_height: float, +) -> dict[str, float]: + size = element.get("size") + width = _finite_number(size.get("width")) if isinstance(size, dict) else None + height = _finite_number(size.get("height")) if isinstance(size, dict) else None + return { + "width": width if width is not None and width > 0 else default_width, + "height": height if height is not None and height > 0 else default_height, + } + + +def _required_box(value: dict[str, Any], *, label: str) -> dict[str, float]: + box = _optional_box(value) + if box is None: + raise ValueError(f"Cannot safely ungroup {label} without position and size.") + return box + + +def _box_or_default( + value: dict[str, Any], + default: dict[str, float], +) -> dict[str, float]: + position = value.get("position") + size = value.get("size") + x = _finite_number(position.get("x")) if isinstance(position, dict) else None + y = _finite_number(position.get("y")) if isinstance(position, dict) else None + width = _finite_number(size.get("width")) if isinstance(size, dict) else None + height = _finite_number(size.get("height")) if isinstance(size, dict) else None + return { + "x": x if x is not None else default["x"], + "y": y if y is not None else default["y"], + "width": width if width is not None and width > 0 else default["width"], + "height": height if height is not None and height > 0 else default["height"], + } + + +def _optional_box(value: dict[str, Any]) -> dict[str, float] | None: + position = value.get("position") + size = value.get("size") + if not isinstance(position, dict) or not isinstance(size, dict): + return None + x = _finite_number(position.get("x")) + y = _finite_number(position.get("y")) + width = _finite_number(size.get("width")) + height = _finite_number(size.get("height")) + if x is None or y is None or width is None or height is None: + return None + if width <= 0 or height <= 0: + return None + return {"x": x, "y": y, "width": width, "height": height} + + +def _finite_number(value: Any) -> float | None: + if isinstance(value, (int, float)) and not isinstance(value, bool): + number = float(value) + return number if math.isfinite(number) else None + return None + + +def _number(value: Any) -> float | None: + return _finite_number(value) + + +def _padding(value: Any) -> dict[str, float]: + if isinstance(value, (int, float)) and not isinstance(value, bool): + number = float(value) + return {"top": number, "right": number, "bottom": number, "left": number} + if not isinstance(value, dict): + return {"top": 0.0, "right": 0.0, "bottom": 0.0, "left": 0.0} + x = _number(value.get("x")) or _number(value.get("horizontal")) or 0.0 + y = _number(value.get("y")) or _number(value.get("vertical")) or 0.0 + return { + "top": _number(value.get("top")) or y, + "right": _number(value.get("right")) or x, + "bottom": _number(value.get("bottom")) or y, + "left": _number(value.get("left")) or x, + } + + +def _normalize_component_id(value: str) -> str: + normalized = re.sub(r"[^a-z0-9]+", "_", value.strip().lower()).strip("_") + return normalized or "component" + + +def _unique_component_id(base: str, used_ids: set[str]) -> str: + stem = base[:80].strip("_") or "component" + candidate = stem + suffix = 2 + while candidate in used_ids: + suffix_text = f"_{suffix}" + candidate = f"{stem[: 80 - len(suffix_text)]}{suffix_text}" + suffix += 1 + used_ids.add(candidate) + return candidate + + +def _compact_components(layout_dict: dict[str, Any]) -> list[dict[str, Any]]: + components: list[dict[str, Any]] = [] + for component in layout_dict.get("components", []): + if not isinstance(component, dict): + continue + components.append( + { + "component_id": component.get("id"), + "description": component.get("description"), + "element_count": len(component.get("elements", [])) + if isinstance(component.get("elements"), list) + else 0, + "element_types": [ + element.get("type") + for element in component.get("elements", []) + if isinstance(element, dict) + ], + } + ) + return components + + +def _collect_editable_elements( + layout_dict: dict[str, Any], + *, + include_visual_elements: bool = False, +) -> list[dict[str, Any]]: + editable: list[dict[str, Any]] = [] + root_elements = layout_dict.get("elements") + if isinstance(root_elements, list): + for element_index, element in enumerate(root_elements): + if isinstance(element, dict): + _visit_editable_element( + element=element, + path=f"elements[{element_index}]", + component_id="", + editable=editable, + include_visual_elements=include_visual_elements, + ) + + components = layout_dict.get("components", []) + if not isinstance(components, list): + return editable + + for component_index, component in enumerate(components): + if not isinstance(component, dict): + continue + component_id = str(component.get("id") or "") + elements = component.get("elements", []) + if not isinstance(elements, list): + continue + for element_index, element in enumerate(elements): + if isinstance(element, dict): + _visit_editable_element( + element=element, + path=f"components[{component_index}].elements[{element_index}]", + component_id=component_id, + editable=editable, + include_visual_elements=include_visual_elements, + ) + return editable + + +def _visit_editable_element( + *, + element: dict[str, Any], + path: str, + component_id: str, + editable: list[dict[str, Any]], + include_visual_elements: bool, +) -> None: + element_type = str(element.get("type") or "") + is_content_editable = element_type in CONTENT_EDITABLE_ELEMENT_TYPES + if is_content_editable or ( + include_visual_elements and element_type in VISIBLE_ELEMENT_TYPES + ): + editable.append( + { + "path": path, + "component_id": component_id, + "type": element_type, + "name": element.get("name"), + "decorative": element.get("decorative"), + "content_editable": is_content_editable, + "geometry_editable": True, + "content": _element_content(element), + "style": _element_style(element), + "limits": _element_limits(element), + } + ) + + child = element.get("child") + if isinstance(child, dict): + _visit_editable_element( + element=child, + path=f"{path}.child", + component_id=component_id, + editable=editable, + include_visual_elements=include_visual_elements, + ) + + children = element.get("children") + if isinstance(children, list): + for index, nested in enumerate(children): + if isinstance(nested, dict): + _visit_editable_element( + element=nested, + path=f"{path}.children[{index}]", + component_id=component_id, + editable=editable, + include_visual_elements=include_visual_elements, + ) + + +def _element_limits(element: dict[str, Any]) -> dict[str, Any]: + keys = ( + "max_length", + "min_length", + "max_items", + "min_items", + "max_item_length", + "min_item_length", + "max_columns", + "min_columns", + "max_rows", + "min_rows", + "max_children", + "min_children", + "max_value", + "min_value", + ) + return {key: element[key] for key in keys if key in element} + + +def _element_content(element: dict[str, Any]) -> Any: + element_type = element.get("type") + if element_type == "text": + return {"text": _runs_text(element.get("runs"))} + if element_type == "text-list": + items = element.get("items") if isinstance(element.get("items"), list) else [] + return {"items": [_runs_text(item) for item in items]} + if element_type == "table": + columns = element.get("columns") + if not isinstance(columns, list) and isinstance(element.get("headers"), list): + columns = element["headers"] + if not isinstance(columns, list): + columns = [] + return { + "columns": [_table_value_text(cell) for cell in columns], + "rows": [ + [_table_value_text(cell) for cell in row] + for row in element.get("rows", []) + if isinstance(row, list) + ], + } + if element_type == "chart": + return { + "chart_type": element.get("chart_type"), + "title": element.get("title"), + "title_color": element.get("title_color"), + "categories": element.get("categories"), + "series": element.get("series"), + "colors": element.get("colors"), + "axis_color": element.get("axis_color"), + "grid_color": element.get("grid_color"), + "x_axis": element.get("x_axis"), + "y_axis": element.get("y_axis"), + "x_axis_grid": element.get("x_axis_grid"), + "y_axis_grid": element.get("y_axis_grid"), + "x_axis_title": element.get("x_axis_title"), + "y_axis_title": element.get("y_axis_title"), + "data_labels": element.get("data_labels"), + "legend": element.get("legend"), + } + if element_type == "image": + return { + "data": element.get("data"), + "is_icon": element.get("is_icon"), + } + return None + + +def _element_style(element: dict[str, Any]) -> dict[str, Any]: + keys = ( + "font", + "alignment", + "fill", + "stroke", + "color", + "opacity", + "shadow", + "border_radius", + "borderRadius", + "padding", + "marker", + "fit", + "focus_x", + "focus_y", + "crop_scale", + ) + style = {key: copy.deepcopy(element[key]) for key in keys if key in element} + base_font = style.get("font") if isinstance(style.get("font"), dict) else {} + run_font = _first_text_font(element) or {} + if base_font or run_font: + style["font"] = {**copy.deepcopy(base_font), **run_font} + return style + + +def _first_text_font(element: dict[str, Any]) -> dict[str, Any] | None: + element_type = element.get("type") + if element_type == "text": + return _first_run_font(element.get("runs")) + if element_type == "text-list": + items = element.get("items") + if not isinstance(items, list): + return None + for item in items: + if isinstance(item, list): + font = _first_run_font(item) + elif isinstance(item, dict): + font = ( + copy.deepcopy(item["font"]) + if isinstance(item.get("font"), dict) + else _first_run_font(item.get("runs")) + ) + else: + font = None + if font: + return font + if element_type == "table": + columns = element.get("columns") + if isinstance(columns, list): + for cell in columns: + font = _table_cell_font(cell) + if font: + return font + rows = element.get("rows") + if isinstance(rows, list): + for row in rows: + if not isinstance(row, list): + continue + for cell in row: + font = _table_cell_font(cell) + if font: + return font + return None + + +def _table_cell_font(cell: Any) -> dict[str, Any] | None: + if not isinstance(cell, dict): + return None + if isinstance(cell.get("font"), dict): + return copy.deepcopy(cell["font"]) + return _first_run_font(cell.get("runs")) + + +def _first_run_font(runs: Any) -> dict[str, Any] | None: + if not isinstance(runs, list): + return None + for run in runs: + if isinstance(run, dict) and isinstance(run.get("font"), dict): + return copy.deepcopy(run["font"]) + return None + + +def _dicts(value: Any) -> list[dict[str, Any]]: + if not isinstance(value, list): + return [] + return [item for item in value if isinstance(item, dict)] + + +def _runs_text(value: Any) -> str: + if not isinstance(value, list): + return "" + return "".join(str(run.get("text") or "") for run in value if isinstance(run, dict)) + + +def _searchable_text(content: Any) -> str: + if content is None: + return "" + if isinstance(content, str): + return content + try: + return json.dumps(content, ensure_ascii=False) + except Exception: + return str(content) + + +def _snippet(text: str, query: str, limit: int = 220) -> str: + normalized = text.replace("\n", " ") + index = normalized.casefold().find(query.casefold()) + if index < 0: + return normalized[:limit] + start = max(0, index - 70) + end = min(len(normalized), index + len(query) + 140) + prefix = "..." if start > 0 else "" + suffix = "..." if end < len(normalized) else "" + return f"{prefix}{normalized[start:end]}{suffix}" + + +def _resolve_element_path(layout_dict: dict[str, Any], path: str) -> dict[str, Any]: + current: Any = layout_dict + for segment in path.split("."): + if segment == "child": + if not isinstance(current, dict) or not isinstance(current.get("child"), dict): + raise ValueError(f"Invalid element path segment: {segment}") + current = current["child"] + continue + + match = _PATH_SEGMENT_RE.match(segment) + if not match: + raise ValueError(f"Invalid element path segment: {segment}") + key = match.group("key") + index = int(match.group("index")) + if not isinstance(current, dict) or not isinstance(current.get(key), list): + raise ValueError(f"Invalid element path segment: {segment}") + values = current[key] + if index >= len(values) or not isinstance(values[index], dict): + raise ValueError(f"Invalid element path index: {segment}") + current = values[index] + + if not isinstance(current, dict) or not isinstance(current.get("type"), str): + raise ValueError("Path does not resolve to an element.") + return current + + +def _resolve_layout_item_parent( + layout_dict: dict[str, Any], + path: str, +) -> tuple[list[Any], int]: + current: Any = layout_dict + segments = path.split(".") + if not segments: + raise ValueError("Layout item path is required.") + + for segment in segments[:-1]: + if segment == "child": + if not isinstance(current, dict) or not isinstance(current.get("child"), dict): + raise ValueError(f"Invalid layout item path segment: {segment}") + current = current["child"] + continue + + match = _PATH_SEGMENT_RE.match(segment) + if not match: + raise ValueError(f"Invalid layout item path segment: {segment}") + key = match.group("key") + index = int(match.group("index")) + if not isinstance(current, dict) or not isinstance(current.get(key), list): + raise ValueError(f"Invalid layout item path segment: {segment}") + values = current[key] + if index >= len(values) or not isinstance(values[index], dict): + raise ValueError(f"Invalid layout item path index: {segment}") + current = values[index] + + match = _PATH_SEGMENT_RE.match(segments[-1]) + if not match: + raise ValueError(f"Invalid layout item path segment: {segments[-1]}") + key = match.group("key") + index = int(match.group("index")) + if not isinstance(current, dict) or not isinstance(current.get(key), list): + raise ValueError(f"Invalid layout item path segment: {segments[-1]}") + values = current[key] + if index >= len(values): + raise ValueError(f"Invalid layout item path index: {segments[-1]}") + return values, index + + +def _preserve_slot_fields( + target: dict[str, Any], + slot: dict[str, Any], + *, + keep_id: bool, +) -> None: + for key in ("position", "size", "rotation"): + if key in slot: + target[key] = copy.deepcopy(slot[key]) + else: + target.pop(key, None) + if keep_id: + target["id"] = slot.get("id") + + +def _is_top_level_component_path(path: str) -> bool: + match = _PATH_SEGMENT_RE.match(path) + return bool( + match + and match.group("key") == "components" + and match.group(0) == path + ) + + +def _component_id_for_path(layout_dict: dict[str, Any], path: str) -> str | None: + first = path.split(".", 1)[0] + match = _PATH_SEGMENT_RE.match(first) + if not match or match.group("key") != "components": + return None + index = int(match.group("index")) + components = layout_dict.get("components") + if not isinstance(components, list) or index >= len(components): + return None + component = components[index] + return str(component.get("id")) if isinstance(component, dict) else None + + +def _looks_like_chart_request(value: str) -> bool: + if _looks_like_asset_reference(value): + return False + normalized = " ".join(value.casefold().split()) + if not normalized: + return False + chart_phrases = ( + "pie chart", + "bar chart", + "line chart", + "area chart", + "donut chart", + "horizontal bar", + "horizontal stack bar", + "horizontal stacked bar", + "stacked bar", + "radial chart", + "chart with", + "chart showing", + "dummy metrics", + "dummy chart", + ) + if any(phrase in normalized for phrase in chart_phrases): + return True + if "chart" not in normalized: + return False + return any( + token in normalized + for token in ("pie", "bar", "line", "donut", "metrics", "graph", "visualization") + ) + + +def _chart_request_on_image_error() -> ValueError: + return ValueError( + "Chart requests must use a chart element, not an image. If the target is an " + "image/icon, delete that component and addComponent with type chart " + "(chart_type bar|horizontal_bar|stacked_bar|line|area|pie|donut|" + "scatter|bubble|radar|polar_area, title, categories, series with values, " + "and optional colors). If the target is already chart, use updateElement " + "with chart." + ) + + +def _looks_like_asset_reference(value: str) -> bool: + stripped = value.strip() + return stripped.startswith( + ("http://", "https://", "/app_data/", "/static/", "data:", "blob:") + ) + + +def _chart_update_has_content(chart: dict[str, Any] | None) -> bool: + if chart is None: + return False + return any(key in chart and chart.get(key) is not None for key in CHART_UPDATE_KEYS) + + +def _resolve_image_update_payload( + text: str | None, + items: list[str] | None, +) -> str | dict[str, Any] | None: + if text is not None: + stripped = text.strip() + if not stripped: + return None + if stripped.startswith("{") and stripped.endswith("}"): + try: + parsed = json.loads(stripped) + except json.JSONDecodeError: + parsed = None + if isinstance(parsed, dict): + return parsed + return text + if isinstance(items, list) and len(items) == 1: + candidate = str(items[0] or "").strip() + if candidate: + return candidate + return None + + +def _template_v2_asset_url(value: Any) -> str | None: + from utils.asset_directory_utils import normalize_slide_asset_url + + if isinstance(value, str): + return normalize_slide_asset_url(value) + if not isinstance(value, dict): + return None + + fallback_url: str | None = None + for key in ( + "data", + "url", + "image_url", + "icon_url", + "__image_url__", + "__icon_url__", + ): + asset_url = value.get(key) + if isinstance(asset_url, str) and asset_url.strip(): + normalized_url = normalize_slide_asset_url(asset_url) + if _looks_like_asset_reference(normalized_url): + return normalized_url + if fallback_url is None: + fallback_url = normalized_url + return fallback_url + + +def _template_v2_asset_prompt(value: Any, *, is_icon: bool) -> str | None: + if not isinstance(value, dict): + return None + + prompt_keys = ( + ("icon_query", "__icon_query__", "query", "prompt") + if is_icon + else ("image_prompt", "__image_prompt__", "prompt", "query") + ) + for key in prompt_keys: + prompt = value.get(key) + if isinstance(prompt, str) and prompt.strip(): + return prompt + return None + + +def _apply_image_element_value(element: dict[str, Any], value: Any) -> None: + asset_url = _template_v2_asset_url(value) + if not asset_url: + raise ValueError( + "Image/icon updates require `text` with an image or icon URL." + ) + element["data"] = asset_url + prompt = _template_v2_asset_prompt( + value, + is_icon=element.get("is_icon") is True, + ) + if prompt: + element["prompt"] = prompt + + +def _apply_image_element_update( + element: dict[str, Any], + *, + text: str | None, + items: list[str] | None, +) -> None: + payload = _resolve_image_update_payload(text, items) + if payload is None: + raise ValueError( + "Image/icon updates require `text` with an image or icon URL." + ) + if isinstance(payload, str) and _looks_like_chart_request(payload): + raise _chart_request_on_image_error() + _apply_image_element_value(element, payload) + + +def _content_update_requested_for_type( + element_type: str, + *, + text: str | None, + items: list[str] | None, + table_cell: dict[str, Any] | None, + table: dict[str, Any] | None, + chart: dict[str, Any] | None, +) -> bool: + if element_type == "text": + return text is not None + if element_type == "text-list": + return items is not None + if element_type == "table": + return table is not None or table_cell is not None + if element_type == "chart": + return _chart_update_has_content(chart) + if element_type == "image": + return _resolve_image_update_payload(text, items) is not None + return any( + value is not None + for value in (text, items, table_cell, table, chart) + ) + + +def _update_text_element(element: dict[str, Any], text: str) -> None: + _validate_text_length( + text, + min_length=element.get("min_length"), + max_length=element.get("max_length"), + label=str(element.get("name") or "text"), + ) + element["runs"] = _replacement_runs( + existing_runs=element.get("runs"), + text=text, + fallback_font=element.get("font"), + ) + # The Konva renderer reads the flattened top-level `text` in preference to + # `runs` (see rawTextContent in TemplateV2KonvaSlide.tsx), and the frontend + # inline editor always writes both. Keep them in sync so edits are visible. + element["text"] = text + + +def _update_text_list_element(element: dict[str, Any], items: list[str]) -> None: + min_items = _int_or_none(element.get("min_items")) + max_items = _int_or_none(element.get("max_items")) + if min_items is not None and len(items) < min_items: + raise ValueError(f"Text list requires at least {min_items} item(s).") + if max_items is not None and len(items) > max_items: + raise ValueError(f"Text list allows at most {max_items} item(s).") + + for index, item in enumerate(items): + _validate_text_length( + item, + min_length=element.get("min_item_length"), + max_length=element.get("max_item_length"), + label=f"list item {index + 1}", + ) + + source_items = element.get("items") if isinstance(element.get("items"), list) else [] + element["items"] = [ + _replacement_runs( + existing_runs=source_items[index] if index < len(source_items) else None, + text=item, + fallback_font=element.get("font"), + ) + for index, item in enumerate(items) + ] + + +def _update_table_cell(element: dict[str, Any], table_cell: dict[str, Any]) -> None: + section = table_cell["section"] + column_index = int(table_cell["column_index"]) + text = str(table_cell.get("text") or "") + if section == "columns": + columns = element.get("columns") + if not isinstance(columns, list) or column_index >= len(columns): + raise ValueError("Invalid table column index.") + target = columns[column_index] + else: + row_index = table_cell.get("row_index") + rows = element.get("rows") + if not isinstance(row_index, int) or not isinstance(rows, list) or row_index >= len(rows): + raise ValueError("Invalid table row index.") + row = rows[row_index] + if not isinstance(row, list) or column_index >= len(row): + raise ValueError("Invalid table cell column index.") + target = row[column_index] + + if not isinstance(target, dict): + raise ValueError("Target table cell is invalid.") + target["runs"] = _replacement_runs( + existing_runs=target.get("runs"), + text=text, + fallback_font=target.get("font"), + ) + + +def _update_table_element(element: dict[str, Any], table: dict[str, Any]) -> None: + columns = table.get("columns") or table.get("headers") + rows = table.get("rows") + if not isinstance(columns, list) or not isinstance(rows, list): + raise ValueError("table update requires columns/headers and rows.") + if not all(isinstance(row, list) for row in rows): + raise ValueError("table rows must be lists.") + + column_count = len(columns) + if column_count == 0: + raise ValueError("table must contain at least one column.") + if any(len(row) != column_count for row in rows): + raise ValueError("each table row must match the column count.") + + min_columns = int(element.get("min_columns") or 0) + max_columns = int(element.get("max_columns") or max(column_count, 100)) + min_rows = int(element.get("min_rows") or 0) + max_rows = int(element.get("max_rows") or max(len(rows), 100)) + if column_count < min_columns or column_count > max_columns: + raise ValueError("table column count is outside this element's limits.") + if len(rows) < min_rows or len(rows) > max_rows: + raise ValueError("table row count is outside this element's limits.") + + existing_columns = _dicts(element.get("columns")) + existing_rows = [ + _dicts(row) for row in element.get("rows", []) if isinstance(row, list) + ] + + element["columns"] = [ + _replacement_table_cell( + value=value, + existing=existing_columns[index] if index < len(existing_columns) else None, + ) + for index, value in enumerate(columns) + ] + element["rows"] = [ + [ + _replacement_table_cell( + value=value, + existing=( + existing_rows[row_index][column_index] + if row_index < len(existing_rows) + and column_index < len(existing_rows[row_index]) + else None + ), + ) + for column_index, value in enumerate(row) + ] + for row_index, row in enumerate(rows) + ] + + +def _replacement_table_cell(value: Any, existing: dict[str, Any] | None) -> dict[str, Any]: + cell = copy.deepcopy(existing) if isinstance(existing, dict) else {} + cell["runs"] = _replacement_runs( + existing_runs=cell.get("runs"), + text=_table_value_text(value), + fallback_font=cell.get("font"), + ) + return cell + + +def _table_value_text(value: Any) -> str: + if isinstance(value, dict): + runs = value.get("runs") + if isinstance(runs, list): + text = _runs_text(runs) + if text: + return text + for key in ("text", "content", "value", "label", "data"): + if key in value: + return _table_value_text(value[key]) + return "" + if isinstance(value, list): + return "".join(_table_value_text(item) for item in value) + if value is None: + return "" + return str(value) + + +def _update_chart_element( + element: dict[str, Any], + chart: dict[str, Any], + theme: dict[str, Any] | None = None, +) -> None: + _apply_chart_content_update(element, chart, theme) + + categories = element.get("categories") + series = element.get("series") + if isinstance(categories, list) and isinstance(series, list): + category_count = len(categories) + for item in series: + if not isinstance(item, dict): + continue + values = item.get("values") + if isinstance(values, list) and len(values) != category_count: + raise ValueError("Each chart series must match the category count.") + + +TEXT_STYLE_ELEMENT_TYPES = {"text", "text-list", "table"} + + +def _apply_element_style_patch( + element: dict[str, Any], + patch: dict[str, Any], +) -> None: + element_type = str(element.get("type") or "") + if "color" in patch: + _apply_direct_color_patch(element, element_type, patch.get("color"), patch) + + font_patch = _text_font_patch_from_element_patch(element_type, patch) + if not font_patch: + return + + if element_type == "text": + _apply_font_patch_to_text_element(element, font_patch) + elif element_type == "text-list": + _apply_font_patch_to_text_list_element(element, font_patch) + elif element_type == "table": + _apply_font_patch_to_table_element(element, font_patch) + + +def _apply_direct_color_patch( + element: dict[str, Any], + element_type: str, + value: Any, + patch: dict[str, Any], +) -> None: + if not isinstance(value, str) or not value.strip(): + return + if element_type in TEXT_STYLE_ELEMENT_TYPES: + font = element.get("font") if isinstance(element.get("font"), dict) else {} + element["font"] = {**font, "color": value} + return + if element_type == "line": + stroke = element.get("stroke") if isinstance(element.get("stroke"), dict) else {} + element["stroke"] = {**stroke, "color": value} + return + if "fill" not in patch and element_type in { + "container", + "ellipse", + "flex", + "grid", + "grid-view", + "group", + "infographic", + "rectangle", + }: + fill = element.get("fill") if isinstance(element.get("fill"), dict) else {} + element["fill"] = {**fill, "color": value} + + +def _text_font_patch_from_element_patch( + element_type: str, + patch: dict[str, Any], +) -> dict[str, Any]: + if element_type not in TEXT_STYLE_ELEMENT_TYPES: + return {} + + font_patch: dict[str, Any] = {} + raw_font = patch.get("font") + if isinstance(raw_font, dict): + font_patch.update(_normalize_font_patch(raw_font)) + direct_color = patch.get("color") + if isinstance(direct_color, str) and direct_color.strip(): + font_patch["color"] = direct_color + return { + key: copy.deepcopy(value) + for key, value in font_patch.items() + if value is not None + } + + +def _normalize_font_patch(value: dict[str, Any]) -> dict[str, Any]: + normalized: dict[str, Any] = {} + aliases = { + "family": "family", + "fontFamily": "family", + "font_family": "family", + "fontName": "family", + "font_name": "family", + "name": "family", + "size": "size", + "fontSize": "size", + "font_size": "size", + "color": "color", + "fontColor": "color", + "font_color": "color", + "textColor": "color", + "text_color": "color", + "bold": "bold", + "italic": "italic", + "underline": "underline", + "line_height": "line_height", + "lineHeight": "line_height", + "letter_spacing": "letter_spacing", + "letterSpacing": "letter_spacing", + "wrap": "wrap", + "ellipsis": "ellipsis", + "opacity": "opacity", + } + for source_key, target_key in aliases.items(): + if source_key in value: + normalized[target_key] = value[source_key] + return normalized + + +def _apply_font_patch_to_text_element( + element: dict[str, Any], + font_patch: dict[str, Any], +) -> None: + _merge_font_patch(element, font_patch) + runs = element.get("runs") + if not isinstance(runs, list) or not runs: + text = str(element.get("text") or "") + element["runs"] = [{"text": text, "font": copy.deepcopy(element["font"])}] + return + for run in runs: + if isinstance(run, dict): + _merge_font_patch(run, font_patch) + + +def _apply_font_patch_to_text_list_element( + element: dict[str, Any], + font_patch: dict[str, Any], +) -> None: + _merge_font_patch(element, font_patch) + items = element.get("items") + if not isinstance(items, list): + return + for index, item in enumerate(items): + if isinstance(item, list): + for run in item: + if isinstance(run, dict): + _merge_font_patch(run, font_patch) + elif isinstance(item, dict): + _merge_font_patch(item, font_patch) + runs = item.get("runs") + if isinstance(runs, list): + for run in runs: + if isinstance(run, dict): + _merge_font_patch(run, font_patch) + elif isinstance(item, str): + items[index] = [{"text": item, "font": copy.deepcopy(element["font"])}] + + +def _apply_font_patch_to_table_element( + element: dict[str, Any], + font_patch: dict[str, Any], +) -> None: + _merge_font_patch(element, font_patch) + columns = element.get("columns") + if isinstance(columns, list): + for cell in columns: + _apply_font_patch_to_table_cell(cell, font_patch) + rows = element.get("rows") + if isinstance(rows, list): + for row in rows: + if isinstance(row, list): + for cell in row: + _apply_font_patch_to_table_cell(cell, font_patch) + + +def _apply_font_patch_to_table_cell( + cell: Any, + font_patch: dict[str, Any], +) -> None: + if not isinstance(cell, dict): + return + _merge_font_patch(cell, font_patch) + runs = cell.get("runs") + if not isinstance(runs, list) or not runs: + return + for run in runs: + if isinstance(run, dict): + _merge_font_patch(run, font_patch) + + +def _merge_font_patch(target: dict[str, Any], font_patch: dict[str, Any]) -> None: + source = target.get("font") if isinstance(target.get("font"), dict) else {} + target["font"] = { + **source, + **copy.deepcopy(font_patch), + } + + +def _replacement_runs( + *, + existing_runs: Any, + text: str, + fallback_font: Any, +) -> list[dict[str, Any]]: + if isinstance(existing_runs, list) and existing_runs: + first = existing_runs[0] + if isinstance(first, dict): + run = copy.deepcopy(first) + run["text"] = text + return [run] + run: dict[str, Any] = {"text": text} + if isinstance(fallback_font, dict): + run["font"] = copy.deepcopy(fallback_font) + return [run] + + +def _validate_text_length( + text: str, + *, + min_length: Any, + max_length: Any, + label: str, +) -> None: + min_value = _int_or_none(min_length) + max_value = _int_or_none(max_length) + if min_value is not None and len(text) < min_value: + raise ValueError(f"{label} must be at least {min_value} character(s).") + if max_value is not None and len(text) > max_value: + raise ValueError(f"{label} must be at most {max_value} character(s).") + + +def _int_or_none(value: Any) -> int | None: + return value if isinstance(value, int) else None diff --git a/servers/fastapi/services/chat/sql_chat_history.py b/servers/fastapi/services/chat/sql_chat_history.py new file mode 100644 index 0000000..fd643e5 --- /dev/null +++ b/servers/fastapi/services/chat/sql_chat_history.py @@ -0,0 +1,272 @@ +"""Persist presentation chat threads in SQL rows.""" + +from __future__ import annotations + +import uuid +from datetime import datetime, timedelta, timezone +from typing import Any + +from sqlalchemy import delete as sa_delete +from sqlalchemy import func +from sqlalchemy.sql.elements import ColumnElement +from sqlalchemy.ext.asyncio import AsyncSession +from sqlmodel import select + +from models.sql.chat_history_message import ChatHistoryMessageModel +from utils.datetime_utils import get_current_utc_datetime + + +def _compact_preview(content: str) -> str: + preview = content.strip() + if len(preview) > 200: + return f"{preview[:200]}…" + return preview + + +def _serialize_created_at(value: Any) -> str | None: + if value is None: + return None + if hasattr(value, "isoformat"): + try: + return value.isoformat() + except Exception: + return None + if isinstance(value, str) and value.strip(): + return value.strip() + return None + + +def _parse_created_at(value: Any) -> datetime | None: + if isinstance(value, datetime): + return value if value.tzinfo else value.replace(tzinfo=timezone.utc) + if not isinstance(value, str) or not value.strip(): + return None + normalized = value.strip().replace("Z", "+00:00") + try: + parsed = datetime.fromisoformat(normalized) + except ValueError: + return None + return parsed if parsed.tzinfo else parsed.replace(tzinfo=timezone.utc) + + +def _resource_filter( + *, + presentation_id: uuid.UUID | None = None, + template_v2_id: str | None = None, +) -> ColumnElement[bool]: + if (presentation_id is None) == (template_v2_id is None): + raise ValueError("Exactly one chat resource id is required.") + if presentation_id is not None: + return ChatHistoryMessageModel.presentation_id == presentation_id + return ChatHistoryMessageModel.template_v2_id == template_v2_id + + +async def load_messages( + session: AsyncSession, + *, + presentation_id: uuid.UUID | None = None, + template_v2_id: str | None = None, + conversation_id: uuid.UUID, +) -> list[dict[str, str]]: + rows = await load_messages_with_meta( + session, + presentation_id=presentation_id, + template_v2_id=template_v2_id, + conversation_id=conversation_id, + ) + return [ + {"role": row["role"], "content": row["content"]} + for row in rows + if isinstance(row.get("role"), str) and isinstance(row.get("content"), str) + ] + + +async def load_messages_with_meta( + session: AsyncSession, + *, + presentation_id: uuid.UUID | None = None, + template_v2_id: str | None = None, + conversation_id: uuid.UUID, +) -> list[dict[str, Any]]: + resource_clause = _resource_filter( + presentation_id=presentation_id, + template_v2_id=template_v2_id, + ) + rows = list( + ( + await session.scalars( + select(ChatHistoryMessageModel) + .where( + resource_clause, + ChatHistoryMessageModel.conversation_id == conversation_id, + ) + .order_by(ChatHistoryMessageModel.position.asc()) + ) + ).all() + ) + out: list[dict[str, Any]] = [] + for row in rows: + entry: dict[str, Any] = { + "role": row.role, + "content": row.content, + } + created = _serialize_created_at(row.created_at) + if created: + entry["created_at"] = created + out.append(entry) + return out + + +async def replace_messages( + session: AsyncSession, + *, + presentation_id: uuid.UUID | None = None, + template_v2_id: str | None = None, + conversation_id: uuid.UUID, + messages: list[dict[str, str]], +) -> None: + resource_clause = _resource_filter( + presentation_id=presentation_id, + template_v2_id=template_v2_id, + ) + await session.execute( + sa_delete(ChatHistoryMessageModel).where( + resource_clause, + ChatHistoryMessageModel.conversation_id == conversation_id, + ) + ) + + next_position = 1 + base_time = get_current_utc_datetime() + for index, message in enumerate(messages): + role = message.get("role") + content = message.get("content") + if role not in ("user", "assistant"): + continue + if not isinstance(content, str) or not content.strip(): + continue + + created_at = _parse_created_at(message.get("created_at")) or ( + base_time + timedelta(microseconds=index) + ) + session.add( + ChatHistoryMessageModel( + presentation_id=presentation_id, + template_v2_id=template_v2_id, + conversation_id=conversation_id, + position=next_position, + role=role, + content=content, + created_at=created_at, + ) + ) + next_position += 1 + await session.flush() + + +async def delete_conversation( + session: AsyncSession, + *, + presentation_id: uuid.UUID | None = None, + template_v2_id: uuid.UUID | None = None, + conversation_id: uuid.UUID, +) -> None: + resource_clause = _resource_filter( + presentation_id=presentation_id, + template_v2_id=template_v2_id, + ) + await session.execute( + sa_delete(ChatHistoryMessageModel).where( + resource_clause, + ChatHistoryMessageModel.conversation_id == conversation_id, + ) + ) + await session.flush() + + +async def append_turn( + session: AsyncSession, + *, + presentation_id: uuid.UUID | None = None, + template_v2_id: str | None = None, + conversation_id: uuid.UUID, + user_message: str, + assistant_message: str, + tool_calls: list[str] | None = None, +) -> None: + resource_clause = _resource_filter( + presentation_id=presentation_id, + template_v2_id=template_v2_id, + ) + max_position = await session.scalar( + select(func.max(ChatHistoryMessageModel.position)).where( + resource_clause, + ChatHistoryMessageModel.conversation_id == conversation_id, + ) + ) + next_position = int(max_position or 0) + 1 + now = get_current_utc_datetime() + + session.add( + ChatHistoryMessageModel( + presentation_id=presentation_id, + template_v2_id=template_v2_id, + conversation_id=conversation_id, + position=next_position, + role="user", + content=user_message, + created_at=now, + ) + ) + session.add( + ChatHistoryMessageModel( + presentation_id=presentation_id, + template_v2_id=template_v2_id, + conversation_id=conversation_id, + position=next_position + 1, + role="assistant", + content=assistant_message, + created_at=now + timedelta(microseconds=1), + tool_calls=tool_calls or None, + ) + ) + await session.flush() + + +async def list_conversations( + session: AsyncSession, + *, + presentation_id: uuid.UUID | None = None, + template_v2_id: str | None = None, +) -> list[dict[str, Any]]: + resource_clause = _resource_filter( + presentation_id=presentation_id, + template_v2_id=template_v2_id, + ) + rows = list( + ( + await session.scalars( + select(ChatHistoryMessageModel) + .where(resource_clause) + .order_by( + ChatHistoryMessageModel.created_at.desc(), + ChatHistoryMessageModel.position.desc(), + ) + ) + ).all() + ) + + summary_by_conversation: dict[str, dict[str, Any]] = {} + for row in rows: + conversation_key = str(row.conversation_id) + if conversation_key in summary_by_conversation: + continue + summary_by_conversation[conversation_key] = { + "conversation_id": conversation_key, + "updated_at": _serialize_created_at(row.created_at), + "last_message_preview": _compact_preview(row.content), + } + + summaries = list(summary_by_conversation.values()) + summaries.sort(key=lambda item: item.get("updated_at") or "", reverse=True) + return summaries diff --git a/servers/fastapi/services/chat/tools.py b/servers/fastapi/services/chat/tools.py new file mode 100644 index 0000000..5f3b013 --- /dev/null +++ b/servers/fastapi/services/chat/tools.py @@ -0,0 +1,1664 @@ +import json +import logging +import re +from typing import Any, Awaitable, Callable, Literal + +import dirtyjson # type: ignore[import-untyped] +from llmai.shared import AssistantToolCall, Tool # type: ignore[import-not-found] + +from constants.presentation import MAX_NUMBER_OF_SLIDES, MAX_OUTLINE_CONTENT_WORDS +from services.chat.schemas import ( + AddElementInput, + AddNewSlideInput, + AddNewSlideLayoutInput, + AddOutlineInput, + AddSlideComponentInput, + DeleteSlideComponentInput, + DeleteSlideElementInput, + DeleteSlideInput, + DeleteOutlineInput, + GenerateAssetsInput, + GetAvailableBlocksInput, + GetContentSchemaFromLayoutIdInput, + GetSlideAtIndexInput, + NoArgsInput, + ReadSourceDocumentsInput, + SaveSlideInput, + SearchSlidesInput, + SetPresentationThemeInput, + UpdateComponentInput, + UpdateSlideInput, + UpdateSlideComponentInput, + UpdateOutlineInput, + UpdateSlideElementInput, +) +from services.chat.presentation_context_store import PresentationContextStore + +LOGGER = logging.getLogger(__name__) + +ToolHandler = Callable[[dict[str, Any]], Awaitable[dict[str, Any]]] +ChatToolMode = Literal["presentation", "outline"] +CHART_INSERT_TOOL_FIELDS = { + "addElement": "element", + "addComponent": "component", + "createComponent": "component", + "updateComponent": "component", +} +TABLE_INSERT_TOOL_FIELDS = CHART_INSERT_TOOL_FIELDS +IMAGE_INSERT_TOOL_FIELDS = CHART_INSERT_TOOL_FIELDS +BLOCK_PRIORITIZED_INSERT_TYPES = {"chart", "table"} +JSON_OBJECT_STRING_FIELDS = { + "addNewSlideLayout": ("content",), + "saveSlide": ("content",), + "updateSlide": ("content",), + "addElement": ("element",), + "updateElement": ("element",), + "addComponent": ("component",), + "createComponent": ("component",), + "updateComponent": ("component",), +} +MAX_TOOL_REPAIR_RETRIES = 1 + + +def _normalize_tool_argument_value(value: Any) -> Any: + if isinstance(value, str) and value.strip().lower() == "null": + return None + if isinstance(value, list): + return [_normalize_tool_argument_value(item) for item in value] + if isinstance(value, dict): + return { + key: _normalize_tool_argument_value(item) + for key, item in value.items() + } + return value + + +class ChatTools: + def __init__( + self, + memory: PresentationContextStore, + mode: ChatToolMode = "presentation", + ): + self._memory = memory + self._mode = mode + self._turn_user_message = "" + self._generated_assets: list[dict[str, Any]] = [] + self._tool_handlers: dict[str, ToolHandler] = { + "addOutline": self._add_outline, + "updateOutline": self._update_outline, + "deleteOutline": self._delete_outline, + "addNewSlide": self._add_new_slide, + "addNewSlideLayout": self._add_new_slide_layout, + "getTemplateSummary": self._get_template_summary, + "readSourceDocuments": self._read_source_documents, + "searchSlide": self._search_slides, + "getSlideAtIndex": self._get_slide_at_index, + "getAvailableLayouts": self._get_available_layouts, + "getAvailableBlocks": self._get_available_blocks, + "getContentSchemaFromLayoutId": self._get_content_schema_from_layout_id, + "generateAssets": self._generate_assets, + "saveSlide": self._save_slide, + "updateSlide": self._update_slide, + "deleteSlide": self._delete_slide, + "addElement": self._add_element, + "updateElement": self._update_slide_element, + "deleteElement": self._delete_slide_element, + "addComponent": self._add_slide_component, + "createComponent": self._add_slide_component, + "updateComponent": self._update_component, + "deleteComponent": self._delete_slide_component, + "getPresentationTheme": self._get_presentation_theme_catalog, + "setPresentationTheme": self._set_presentation_theme, + } + + def set_turn_context(self, user_message: str) -> None: + self._turn_user_message = user_message or "" + self._generated_assets = [] + + def get_tool_definitions(self) -> list[Tool]: + return [ + Tool( + name="addOutline", + description=( + "Insert a new markdown outline item into the outline draft. " + "This edits presentation.outlines only and does not require a layout. " + f"Do not exceed {MAX_NUMBER_OF_SLIDES} outline slides or " + f"{MAX_OUTLINE_CONTENT_WORDS} words in this outline item." + ), + schema=AddOutlineInput, + strict=False, + ), + Tool( + name="updateOutline", + description=( + "Replace the markdown content of one outline item by zero-based index. " + "This edits presentation.outlines only and does not require a layout. " + f"Keep this outline item within {MAX_OUTLINE_CONTENT_WORDS} words." + ), + schema=UpdateOutlineInput, + strict=False, + ), + Tool( + name="deleteOutline", + description=( + "Delete one outline item by zero-based index. This edits " + "presentation.outlines only and does not require a layout." + ), + schema=DeleteOutlineInput, + strict=False, + ), + Tool( + name="addNewSlide", + description=( + "Add a blank slide to the current presentation at a zero-based index " + "or append when index is null." + ), + schema=AddNewSlideInput, + strict=False, + ), + Tool( + name="addNewSlideLayout", + description=( + "Add a new slide from an available layout. Use getAvailableLayouts " + "first, then pass content as a JSON-serialized object matching the layout." + ), + schema=AddNewSlideLayoutInput, + strict=False, + ), + Tool( + name="getAvailableLayouts", + description="List available slide layout ids, names, and summaries.", + schema=NoArgsInput, + strict=False, + ), + Tool( + name="getAvailableBlocks", + description=( + "Search reusable template component blocks without fetching a whole layout. " + "Use this before addComponent/createComponent when the user asks to add " + "a styled block such as a title/header/subtitle, table, chart, card, " + "callout, metric, image panel, or repeated content item. For title " + "blocks use elementType=text with title/header/heading query terms. " + "Set includeFullContent=true only when exact component JSON is needed." + ), + schema=GetAvailableBlocksInput, + strict=False, + ), + Tool( + name="getContentSchemaFromLayoutId", + description=( + "Return the exact JSON content schema for one layout id. " + "Use this before addNewSlideLayout or updateSlide when composing " + "a full slide content payload." + ), + schema=GetContentSchemaFromLayoutIdInput, + strict=False, + ), + Tool( + name="getTemplateSummary", + description=( + "Read a compact summary of the current presentation template, " + "layouts, current slides, and theme. Use before choosing where/how to edit." + ), + schema=NoArgsInput, + strict=False, + ), + Tool( + name="readSourceDocuments", + description=( + "Read parsed text from the source document(s) uploaded for this " + "presentation, including PDFs. Use when the user refers to an " + "uploaded/source PDF, document, file, or the document used to " + "generate the deck. Use before summarizing, quoting, extracting " + "data, or creating slide content from uploaded documents." + ), + schema=ReadSourceDocumentsInput, + strict=False, + ), + Tool( + name="searchSlide", + description=( + "Search current slides for text/topics and return slide indices and snippets." + ), + schema=SearchSlidesInput, + strict=False, + ), + Tool( + name="getSlideAtIndex", + description=( + "Live SQL: one slide by index—authoritative for exact current content. " + "Set includeFullContent=true when you need full JSON (before saveSlide or precise edits). " + "If user says slide N, use zero-based index N-1." + ), + schema=GetSlideAtIndexInput, + strict=False, + ), + Tool( + name="saveSlide", + description=( + "Save full slide content for a layout. Use for complete slide payloads; " + "visible element/component edits should use element/component tools." + ), + schema=SaveSlideInput, + strict=False, + ), + Tool( + name="updateSlide", + description="Replace an existing slide's layout/content by zero-based index.", + schema=UpdateSlideInput, + strict=False, + ), + Tool( + name="deleteSlide", + description="Delete an existing slide by zero-based index and reindex the rest.", + schema=DeleteSlideInput, + strict=False, + ), + Tool( + name="addElement", + description=( + "Add one rendered UI element to a slide, either inside a componentId " + "or as a new free component when componentId is null. Do not use this " + "for new table/chart requests when a reusable block exists; use " + "getAvailableBlocks and addComponent/createComponent instead. Chart " + "elements must include numeric data as categories plus series.values, " + "or legacy data rows with label/value. Image elements must include " + "data set to a URL returned by generateAssets." + ), + schema=AddElementInput, + strict=False, + ), + Tool( + name="updateElement", + description=( + "Update visible element content or geometry using an elementPath returned " + "by getSlideAtIndex. Supports text, lists, table, chart, image data, " + "position, size, and toolbar-style font, color, fill, stroke, " + "alignment, opacity, and element property patches. For " + "charts, use the chart field for chartType, categories, " + "series.values, colors, axes, dataLabels placement, and legend." + ), + schema=UpdateSlideElementInput, + strict=False, + ), + Tool( + name="deleteElement", + description="Delete one rendered UI element by elementPath.", + schema=DeleteSlideElementInput, + strict=False, + ), + Tool( + name="addComponent", + description=( + "Add an existing/new rendered UI component block to a slide. Component " + "JSON must include id, description, position, size, and elements. Chart " + "elements must include numeric data as categories plus series.values, or " + "legacy data rows with label/value. Image elements must include data " + "set to a URL returned by generateAssets. For styled title/header, " + "table/chart, card, metric, or callout additions, adapt a component " + "returned by getAvailableBlocks and pass sourceBlockId." + ), + schema=AddSlideComponentInput, + strict=False, + ), + Tool( + name="createComponent", + description=( + "Create a grouped rendered UI component from provided component JSON " + "and add it to a slide. Chart elements must include numeric data as " + "categories plus series.values, or legacy data rows with label/value. " + "Image elements must include data set to a URL returned by generateAssets. " + "For styled title/header, table/chart, card, metric, or callout additions " + "adapt a component returned by getAvailableBlocks and pass sourceBlockId." + ), + schema=AddSlideComponentInput, + strict=False, + ), + Tool( + name="updateComponent", + description=( + "Move, resize, replace, duplicate, reorder, group, or ungroup rendered " + "UI components by componentId." + ), + schema=UpdateComponentInput, + strict=False, + ), + Tool( + name="deleteComponent", + description=( + "Remove one whole component (a block such as a numbered point, card, " + "or callout) from a rendered slide by componentId." + ), + schema=DeleteSlideComponentInput, + strict=False, + ), + Tool( + name="getPresentationTheme", + description="Read the current presentation theme and available themes.", + schema=NoArgsInput, + strict=False, + ), + Tool( + name="setPresentationTheme", + description=( + "Change the deck theme by theme name/id/query or customTheme payload." + ), + schema=SetPresentationThemeInput, + strict=False, + ), + Tool( + name="generateAssets", + description="Generate one or more image/icon assets for slide edits.", + schema=GenerateAssetsInput, + strict=False, + ), + ] + + async def execute_tool_call(self, tool_call: AssistantToolCall) -> dict[str, Any]: + handler = self._tool_handlers.get(tool_call.name) + if not handler: + return { + "ok": False, + "tool": tool_call.name, + "error": f"Unsupported tool: {tool_call.name}", + "recovery": { + "retryable": False, + "message": "Use one of the available chat tools.", + "guidance": ["Choose a tool from the tool definitions."], + }, + } + + parsed_args: dict[str, Any] | None = None + repair_notes: list[str] = [] + try: + parsed_args = self._parse_args(tool_call.arguments) + parsed_args, repair_notes = self._repair_tool_args( + tool_call.name, + parsed_args, + ) + LOGGER.info("Executing chat tool %s", tool_call.name) + try: + result = await handler(parsed_args) + except Exception as first_exc: + retried = False + for _attempt in range(MAX_TOOL_REPAIR_RETRIES): + retry_args, retry_notes = self._repair_tool_args( + tool_call.name, + parsed_args, + error=str(first_exc), + ) + if not retry_notes or self._args_equivalent(parsed_args, retry_args): + break + repair_notes.extend(retry_notes) + parsed_args = retry_args + LOGGER.info( + "Retrying chat tool %s after argument repair", + tool_call.name, + ) + result = await handler(parsed_args) + retried = True + break + if not retried: + raise first_exc + + if tool_call.name == "generateAssets": + self._remember_generated_assets(result) + + response = {"ok": True, "tool": tool_call.name, "result": result} + if repair_notes: + response["repair"] = { + "applied": True, + "notes": repair_notes, + } + return response + except Exception as exc: + LOGGER.exception("Chat tool failed: %s", tool_call.name) + return { + "ok": False, + "tool": tool_call.name, + "error": str(exc), + "repair": { + "attempted": bool(repair_notes), + "notes": repair_notes, + }, + "recovery": self._build_tool_recovery( + tool_name=tool_call.name, + args=parsed_args, + error=str(exc), + ), + } + + async def _get_presentation_outline(self, _: dict[str, Any]) -> dict[str, Any]: + outline = await self._memory.get("presentation_outline") + if not isinstance(outline, dict): + return { + "found": False, + "message": "Presentation outline is not available in memory yet.", + "sections": [], + } + + slides = outline.get("slides") + if not isinstance(slides, list) or not slides: + return { + "found": False, + "message": "Presentation outline exists but has no slides.", + "sections": [], + } + + sections: list[dict[str, Any]] = [] + for position, slide in enumerate(slides): + index = position + content = "" + if isinstance(slide, dict): + raw_index = slide.get("index") + if isinstance(raw_index, int): + index = raw_index + raw_content = slide.get("content") + if isinstance(raw_content, str): + content = raw_content + elif raw_content is not None: + try: + content = json.dumps(raw_content, ensure_ascii=False) + except Exception: + content = str(raw_content) + elif isinstance(slide, str): + content = slide + + title = self._extract_title(content) or f"Slide {index + 1}" + sections.append( + { + "index": index, + "slide_number": index + 1, + "title": title, + } + ) + + return { + "found": True, + "slide_count": len(sections), + "sections": sections, + "source": outline.get("source", "memory"), + } + + async def _search_slides(self, args: dict[str, Any]) -> dict[str, Any]: + payload = SearchSlidesInput(**args) + results = await self._memory.search(payload.query, payload.limit) + return { + "query": payload.query, + "count": len(results), + "results": results, + } + + async def _get_slide_at_index(self, args: dict[str, Any]) -> dict[str, Any]: + normalized_args = dict(args) + normalized_args.setdefault("includeFullContent", False) + payload = GetSlideAtIndexInput(**normalized_args) + slide = await self._memory.get_slide_at_index( + payload.index, + include_full_content=payload.include_full_content, + ) + if not slide and payload.index > 0: + # Users often refer to slides as 1-based; allow a safe fallback. + fallback_index = payload.index - 1 + fallback_slide = await self._memory.get_slide_at_index( + fallback_index, + include_full_content=payload.include_full_content, + ) + if fallback_slide: + return { + "found": True, + "slide": fallback_slide, + "requested_index": payload.index, + "resolved_index": fallback_index, + "note": ( + "No slide found at requested index; returned one-based fallback " + f"at index {fallback_index}." + ), + } + if not slide: + return { + "found": False, + "message": f"No slide found at index {payload.index}.", + } + return { + "found": True, + "slide": slide, + } + + async def _get_outline_draft(self, _: dict[str, Any]) -> dict[str, Any]: + return await self._memory.get_outline_draft() + + async def _add_outline(self, args: dict[str, Any]) -> dict[str, Any]: + payload = AddOutlineInput(**args) + return await self._memory.add_outline( + content=payload.content, + index=payload.index, + ) + + async def _update_outline(self, args: dict[str, Any]) -> dict[str, Any]: + payload = UpdateOutlineInput(**args) + return await self._memory.update_outline( + index=payload.index, + content=payload.content, + ) + + async def _delete_outline(self, args: dict[str, Any]) -> dict[str, Any]: + payload = DeleteOutlineInput(**args) + return await self._memory.delete_outline(index=payload.index) + + async def _add_new_slide(self, args: dict[str, Any]) -> dict[str, Any]: + payload = AddNewSlideInput(**args) + return await self._memory.add_blank_slide(index=payload.index) + + async def _add_new_slide_layout(self, args: dict[str, Any]) -> dict[str, Any]: + payload_args = json.loads(json.dumps(dict(args), ensure_ascii=False)) + raw_content = payload_args.get("content") + if isinstance(raw_content, dict): + payload_args["content"] = json.dumps(raw_content, ensure_ascii=False) + payload = AddNewSlideLayoutInput(**payload_args) + return await self._save_slide( + { + "content": payload.content, + "layoutId": payload.layout_id, + "index": payload.index, + "replaceOldSlideAtIndex": False, + } + ) + + async def _update_slide(self, args: dict[str, Any]) -> dict[str, Any]: + payload_args = json.loads(json.dumps(dict(args), ensure_ascii=False)) + raw_content = payload_args.get("content") + if isinstance(raw_content, dict): + payload_args["content"] = json.dumps(raw_content, ensure_ascii=False) + payload = UpdateSlideInput(**payload_args) + return await self._save_slide( + { + "content": payload.content, + "layoutId": payload.layout_id, + "index": payload.index, + "replaceOldSlideAtIndex": True, + } + ) + + async def _get_available_layouts(self, _: dict[str, Any]) -> dict[str, Any]: + layouts = await self._memory.get_available_layouts() + return { + "count": len(layouts), + "layouts": layouts, + } + + async def _get_available_blocks(self, args: dict[str, Any]) -> dict[str, Any]: + payload = GetAvailableBlocksInput(**args) + max_results = payload.max_results if payload.max_results is not None else 20 + return await self._memory.get_available_blocks( + query=payload.query, + layout_id=payload.layout_id, + element_type=payload.element_type, + block_id=payload.block_id, + include_full_content=bool(payload.include_full_content), + max_results=max_results, + ) + + async def _get_template_summary(self, _: dict[str, Any]) -> dict[str, Any]: + outline = await self._get_presentation_outline({}) + layouts = await self._get_available_layouts({}) + theme = await self._get_presentation_theme_catalog({}) + return { + "outline": outline, + "available_layouts": layouts, + "theme": theme, + "message": "Template summary fetched successfully.", + } + + async def _read_source_documents(self, args: dict[str, Any]) -> dict[str, Any]: + payload = ReadSourceDocumentsInput(**args) + return await self._memory.read_source_documents( + query=payload.query, + max_chars=payload.max_chars, + ) + + async def _get_presentation_theme_catalog( + self, _: dict[str, Any] + ) -> dict[str, Any]: + return await self._memory.get_presentation_theme_catalog() + + async def _get_content_schema_from_layout_id( + self, args: dict[str, Any] + ) -> dict[str, Any]: + payload = GetContentSchemaFromLayoutIdInput(**args) + schema = await self._memory.get_content_schema_from_layout_id(payload.layout_id) + if schema is None: + return { + "found": False, + "layout_id": payload.layout_id, + "message": "Layout schema not found for the provided layout id.", + } + return { + "found": True, + "layout_id": payload.layout_id, + "content_schema": schema, + } + + async def _generate_assets(self, args: dict[str, Any]) -> dict[str, Any]: + payload = GenerateAssetsInput(**args) + generated_assets: list[dict[str, Any]] = [] + + for index, asset in enumerate(payload.assets): + if asset.kind == "image": + url = await self._memory.generate_image(asset.prompt) + else: + url = await self._memory.generate_icon(asset.prompt) + + generated_assets.append( + { + "index": index, + "kind": asset.kind, + "prompt": asset.prompt, + "url": url, + } + ) + + return { + "count": len(generated_assets), + "assets": generated_assets, + "message": f"Generated {len(generated_assets)} asset(s).", + } + + async def _save_slide(self, args: dict[str, Any]) -> dict[str, Any]: + payload_args = json.loads(json.dumps(dict(args), ensure_ascii=False)) + raw_content = payload_args.get("content") + if isinstance(raw_content, dict): + payload_args["content"] = json.dumps(raw_content, ensure_ascii=False) + + payload = SaveSlideInput(**payload_args) + try: + content_parsed: Any = dirtyjson.loads(payload.content) + except Exception: + content_parsed = json.loads(payload.content) + + if not isinstance(content_parsed, dict): + raise ValueError("'content' must be a JSON object.") + + content_payload = json.loads(json.dumps(content_parsed, ensure_ascii=False)) + return await self._memory.save_slide( + content=content_payload, + layout_id=payload.layout_id, + index=payload.index, + replace_old_slide_at_index=payload.replace_old_slide_at_index, + ) + + async def _delete_slide(self, args: dict[str, Any]) -> dict[str, Any]: + payload = DeleteSlideInput(**args) + return await self._memory.delete_slide(index=payload.index) + + async def _get_slide_elements(self, args: dict[str, Any]) -> dict[str, Any]: + payload = GetSlideAtIndexInput( + index=int(args.get("index") or 0), + includeFullContent=bool(args.get("includeFullJson")), + ) + return await self._memory.get_slide_ui_elements( + index=payload.index, + include_full_json=payload.include_full_content, + ) + + async def _add_element(self, args: dict[str, Any]) -> dict[str, Any]: + payload = AddElementInput(**args) + try: + parsed: Any = dirtyjson.loads(payload.element) + except Exception: + parsed = json.loads(payload.element) + element = json.loads(json.dumps(parsed, ensure_ascii=False)) + if not isinstance(element, dict): + raise ValueError("'element' must be a JSON object.") + await self._require_reusable_block_first( + tree=element, + source_block_id=None, + primitive_tool="addElement", + ) + return await self._memory.add_slide_ui_element( + index=payload.index, + element=element, + component_id=payload.component_id, + insert_index=payload.insert_index, + ) + + async def _update_slide_element(self, args: dict[str, Any]) -> dict[str, Any]: + payload = UpdateSlideElementInput(**args) + element_patch: dict[str, Any] | None = None + if payload.element is not None: + try: + parsed: Any = dirtyjson.loads(payload.element) + except Exception: + parsed = json.loads(payload.element) + element_patch = json.loads(json.dumps(parsed, ensure_ascii=False)) + if not isinstance(element_patch, dict): + raise ValueError("'element' must be a JSON object.") + style_patch = self._element_style_patch_from_update_payload(payload) + if style_patch: + element_patch = self._merge_dict_patch(element_patch or {}, style_patch) + return await self._memory.update_slide_ui_element( + index=payload.index, + element_path=payload.element_path, + text=payload.text, + items=payload.items, + table_cell=( + payload.table_cell.model_dump(by_alias=False) + if payload.table_cell is not None + else None + ), + table=( + payload.table.model_dump() + if payload.table is not None + else None + ), + chart=( + payload.chart.model_dump(exclude_none=True) + if payload.chart is not None + else None + ), + element_patch=element_patch, + position=( + payload.position.model_dump() + if payload.position is not None + else None + ), + size=payload.size.model_dump() if payload.size is not None else None, + ) + + async def _update_slide_component(self, args: dict[str, Any]) -> dict[str, Any]: + payload = UpdateSlideComponentInput(**args) + return await self._memory.update_slide_ui_component( + index=payload.index, + component_id=payload.component_id, + position=( + payload.position.model_dump() + if payload.position is not None + else None + ), + size=payload.size.model_dump() if payload.size is not None else None, + ) + + async def _update_component(self, args: dict[str, Any]) -> dict[str, Any]: + payload = UpdateComponentInput(**args) + replacement_component: dict[str, Any] | None = None + if payload.component is not None: + try: + parsed: Any = dirtyjson.loads(payload.component) + except Exception: + parsed = json.loads(payload.component) + replacement_component = json.loads(json.dumps(parsed, ensure_ascii=False)) + if not isinstance(replacement_component, dict): + raise ValueError("'component' must be a JSON object.") + return await self._memory.update_slide_ui_component( + index=payload.index, + component_id=payload.component_id, + action=payload.action or "update", + component_ids=payload.component_ids, + position=( + payload.position.model_dump() + if payload.position is not None + else None + ), + size=payload.size.model_dump() if payload.size is not None else None, + replacement_component=replacement_component, + ) + + async def _delete_slide_component(self, args: dict[str, Any]) -> dict[str, Any]: + payload = DeleteSlideComponentInput(**args) + return await self._memory.delete_slide_ui_component( + index=payload.index, + component_id=payload.component_id, + ) + + async def _delete_slide_element(self, args: dict[str, Any]) -> dict[str, Any]: + payload = DeleteSlideElementInput(**args) + return await self._memory.delete_slide_ui_element( + index=payload.index, + element_path=payload.element_path, + ) + + async def _add_slide_component(self, args: dict[str, Any]) -> dict[str, Any]: + payload = AddSlideComponentInput(**args) + try: + component_parsed: Any = dirtyjson.loads(payload.component) + except Exception: + component_parsed = json.loads(payload.component) + if not isinstance(component_parsed, dict): + raise ValueError("'component' must be a JSON object.") + component_payload = json.loads(json.dumps(component_parsed, ensure_ascii=False)) + await self._require_reusable_block_first( + tree=component_payload, + source_block_id=payload.source_block_id, + primitive_tool="addComponent", + ) + return await self._memory.add_slide_ui_component( + index=payload.index, + component=component_payload, + insert_index=payload.insert_index, + ) + + async def _set_presentation_theme(self, args: dict[str, Any]) -> dict[str, Any]: + payload = SetPresentationThemeInput(**args) + return await self._memory.set_presentation_theme( + theme_query=payload.theme, + custom_theme=( + payload.custom_theme.model_dump(exclude_none=True) + if payload.custom_theme is not None + else None + ), + save_custom_theme=bool(payload.save_custom_theme), + ) + + @staticmethod + def _parse_args(arguments: str | None) -> dict[str, Any]: + if not arguments: + return {} + + parsed = ChatTools._loads_jsonish(arguments) + + normalized = _normalize_tool_argument_value( + json.loads(json.dumps(parsed, ensure_ascii=False)) + ) + if isinstance(normalized, dict): + return normalized + + raise ValueError("Tool arguments must be a JSON object.") + + async def _require_reusable_block_first( + self, + *, + tree: dict[str, Any], + source_block_id: str | None, + primitive_tool: str, + ) -> None: + requested_types = self._block_prioritized_element_types(tree) + if not requested_types: + return + + if source_block_id: + block_result = await self._memory.get_available_blocks( + block_id=source_block_id, + include_full_content=False, + max_results=1, + ) + blocks = ( + block_result.get("blocks") + if isinstance(block_result, dict) + else None + ) + block = blocks[0] if isinstance(blocks, list) and blocks else None + if not isinstance(block, dict): + raise ValueError( + "sourceBlockId was provided but no matching reusable block was found. " + "Call getAvailableBlocks again and use a returned block_id." + ) + block_types = { + str(item).lower() + for item in block.get("element_types", []) + if item is not None + } + if requested_types.isdisjoint(block_types): + raise ValueError( + "sourceBlockId does not match the table/chart type being inserted. " + "Use a block_id whose element_types include the requested type." + ) + return + + reusable = await self._first_available_reusable_block(requested_types) + if reusable is None: + return + + element_type, block = reusable + block_id = str(block.get("block_id") or "") + component_id = str(block.get("component_id") or "") + layout_id = str(block.get("layout_id") or "") + raise ValueError( + f"Reusable block available for {element_type} insertion " + f"(block_id='{block_id}', component_id='{component_id}', layout_id='{layout_id}'). " + f"Do not use {primitive_tool} to create this as a primitive. " + "Call getAvailableBlocks with that blockId and includeFullContent=true, " + "adapt the returned component JSON with the requested content, then call " + f"addComponent/createComponent with sourceBlockId='{block_id}'." + ) + + async def _first_available_reusable_block( + self, + requested_types: set[str], + ) -> tuple[str, dict[str, Any]] | None: + for element_type in sorted(requested_types): + block_result = await self._memory.get_available_blocks( + element_type=element_type, + include_full_content=False, + max_results=1, + ) + blocks = ( + block_result.get("blocks") + if isinstance(block_result, dict) + else None + ) + block = blocks[0] if isinstance(blocks, list) and blocks else None + if isinstance(block, dict): + return element_type, block + return None + + @staticmethod + def _block_prioritized_element_types(tree: Any) -> set[str]: + found: set[str] = set() + + def visit(value: Any) -> None: + if isinstance(value, dict): + element_type = value.get("type") + if isinstance(element_type, str): + normalized = element_type.strip().lower() + if normalized in BLOCK_PRIORITIZED_INSERT_TYPES: + found.add(normalized) + for nested in value.values(): + visit(nested) + elif isinstance(value, list): + for nested in value: + visit(nested) + + visit(tree) + return found + + @staticmethod + def _element_style_patch_from_update_payload( + payload: UpdateSlideElementInput, + ) -> dict[str, Any]: + patch: dict[str, Any] = {} + if payload.font is not None: + font = payload.font.model_dump(exclude_none=True) + if font: + patch["font"] = font + if payload.alignment is not None: + alignment = payload.alignment.model_dump(exclude_none=True) + if alignment: + patch["alignment"] = alignment + if payload.fill is not None: + fill = payload.fill.model_dump(exclude_none=True) + if fill: + patch["fill"] = fill + if payload.stroke is not None: + stroke = payload.stroke.model_dump(exclude_none=True) + if stroke: + patch["stroke"] = stroke + if payload.color is not None: + patch["color"] = payload.color + if payload.opacity is not None: + patch["opacity"] = payload.opacity + return patch + + @staticmethod + def _merge_dict_patch( + target: dict[str, Any], + patch: dict[str, Any], + ) -> dict[str, Any]: + merged = json.loads(json.dumps(target, ensure_ascii=False)) + for key, value in patch.items(): + if isinstance(value, dict) and isinstance(merged.get(key), dict): + merged[key] = ChatTools._merge_dict_patch(merged[key], value) + else: + merged[key] = json.loads(json.dumps(value, ensure_ascii=False)) + return merged + + def _repair_tool_args( + self, + tool_name: str, + args: dict[str, Any], + *, + error: str | None = None, + ) -> tuple[dict[str, Any], list[str]]: + repaired = dict(args) + notes: list[str] = [] + self._repair_json_object_string_fields(tool_name, repaired, notes) + repaired = self._repair_chart_insert_args( + tool_name, + repaired, + notes, + error=error, + ) + repaired = self._repair_table_insert_args( + tool_name, + repaired, + notes, + error=error, + ) + repaired = self._repair_image_insert_args( + tool_name, + repaired, + notes, + error=error, + ) + return repaired, notes + + @staticmethod + def _repair_json_object_string_fields( + tool_name: str, + args: dict[str, Any], + notes: list[str], + ) -> None: + for field_name in JSON_OBJECT_STRING_FIELDS.get(tool_name, ()): + if field_name not in args: + continue + value = args.get(field_name) + if value is None: + continue + if isinstance(value, dict): + args[field_name] = json.dumps(value, ensure_ascii=False) + notes.append( + f"Converted {field_name} from object to JSON string." + ) + continue + if not isinstance(value, str): + continue + parsed = ChatTools._loads_jsonish_object(value) + if parsed is None: + continue + canonical = json.dumps(parsed, ensure_ascii=False) + if canonical != value: + args[field_name] = canonical + notes.append(f"Repaired JSON string field {field_name}.") + + def _repair_chart_insert_args( + self, + tool_name: str, + args: dict[str, Any], + notes: list[str], + *, + error: str | None = None, + ) -> dict[str, Any]: + payload_field = CHART_INSERT_TOOL_FIELDS.get(tool_name) + if not payload_field or payload_field not in args: + return args + + chart_rows = self._extract_chart_rows_from_user_message( + self._turn_user_message, + ) + if not chart_rows: + return args + + payload = self._parse_json_object_field(args.get(payload_field)) + if payload is None: + return args + + title = self._infer_chart_title_from_user_message(self._turn_user_message) + if not self._inject_missing_chart_data(payload, chart_rows, title): + return args + + repaired = dict(args) + repaired[payload_field] = json.dumps(payload, ensure_ascii=False) + notes.append( + "Filled missing chart categories and series.values from the latest user message." + ) + return repaired + + def _repair_table_insert_args( + self, + tool_name: str, + args: dict[str, Any], + notes: list[str], + *, + error: str | None = None, + ) -> dict[str, Any]: + payload_field = TABLE_INSERT_TOOL_FIELDS.get(tool_name) + if not payload_field or payload_field not in args: + return args + + table_data = self._extract_table_from_user_message(self._turn_user_message) + if table_data is None: + return args + + payload = self._parse_json_object_field(args.get(payload_field)) + if payload is None: + return args + + if not self._inject_missing_table_data(payload, table_data): + return args + + repaired = dict(args) + repaired[payload_field] = json.dumps(payload, ensure_ascii=False) + notes.append( + "Filled missing table headers/columns and rows from the latest user message." + ) + return repaired + + def _repair_image_insert_args( + self, + tool_name: str, + args: dict[str, Any], + notes: list[str], + *, + error: str | None = None, + ) -> dict[str, Any]: + payload_field = IMAGE_INSERT_TOOL_FIELDS.get(tool_name) + if not payload_field or payload_field not in args: + return args + + payload = self._parse_json_object_field(args.get(payload_field)) + if payload is None: + return args + + if not self._inject_missing_image_data(payload): + return args + + repaired = dict(args) + repaired[payload_field] = json.dumps(payload, ensure_ascii=False) + notes.append( + "Filled missing image data from the generated asset URL in this turn." + ) + return repaired + + @staticmethod + def _parse_json_object_field(value: Any) -> dict[str, Any] | None: + if isinstance(value, dict): + return json.loads(json.dumps(value, ensure_ascii=False)) + if not isinstance(value, str) or not value.strip(): + return None + parsed = ChatTools._loads_jsonish_object(value) + if not isinstance(parsed, dict): + return None + return json.loads(json.dumps(parsed, ensure_ascii=False)) + + def _remember_generated_assets(self, result: dict[str, Any]) -> None: + assets = result.get("assets") if isinstance(result, dict) else None + if not isinstance(assets, list): + return + + for asset in assets: + if not isinstance(asset, dict): + continue + url = asset.get("url") + if not isinstance(url, str) or not url.strip(): + continue + self._generated_assets.append( + { + "kind": str(asset.get("kind") or "image"), + "prompt": str(asset.get("prompt") or ""), + "url": url.strip(), + } + ) + + @staticmethod + def _loads_jsonish_object(value: str) -> dict[str, Any] | None: + try: + parsed = ChatTools._loads_jsonish(value) + except Exception: + return None + return parsed if isinstance(parsed, dict) else None + + @staticmethod + def _loads_jsonish(value: str) -> Any: + last_exc: Exception | None = None + for candidate in ChatTools._jsonish_candidates(value): + try: + return dirtyjson.loads(candidate) + except Exception as exc: + last_exc = exc + try: + return json.loads(candidate) + except Exception as exc: + last_exc = exc + if last_exc: + raise last_exc + raise ValueError("JSON value is empty.") + + @staticmethod + def _jsonish_candidates(value: str) -> list[str]: + stripped = (value or "").strip() + if not stripped: + return [] + + candidates = [stripped] + fence_match = re.search( + r"```(?:json|javascript|js)?\s*(.*?)```", + stripped, + flags=re.IGNORECASE | re.DOTALL, + ) + if fence_match: + candidates.append(fence_match.group(1).strip()) + + for opener, closer in (("{", "}"), ("[", "]")): + start = stripped.find(opener) + end = stripped.rfind(closer) + if start != -1 and end > start: + candidates.append(stripped[start : end + 1].strip()) + + unique: list[str] = [] + seen: set[str] = set() + for candidate in candidates: + if not candidate or candidate in seen: + continue + seen.add(candidate) + unique.append(candidate) + return unique + + @classmethod + def _inject_missing_chart_data( + cls, + node: Any, + rows: list[dict[str, Any]], + title: str, + ) -> bool: + from services.chat.slide_ui_helpers import _chart_element_has_explicit_data + + changed = False + if isinstance(node, dict): + if node.get("type") == "chart" and not _chart_element_has_explicit_data(node): + categories = [row["label"] for row in rows] + values = [row["value"] for row in rows] + node.setdefault("chart_type", "bar") + node.setdefault("title", title) + node["categories"] = categories + node["series"] = [{"name": title or "Series 1", "values": values}] + node["data"] = [ + {"label": row["label"], "value": row["value"]} + for row in rows + ] + changed = True + for value in node.values(): + changed = cls._inject_missing_chart_data(value, rows, title) or changed + elif isinstance(node, list): + for value in node: + changed = cls._inject_missing_chart_data(value, rows, title) or changed + return changed + + @classmethod + def _inject_missing_table_data( + cls, + node: Any, + table_data: dict[str, Any], + ) -> bool: + from services.chat.slide_ui_helpers import _table_element_has_explicit_data + + changed = False + if isinstance(node, dict): + if node.get("type") == "table" and not _table_element_has_explicit_data(node): + columns = list(table_data["columns"]) + rows = [list(row) for row in table_data["rows"]] + node["columns"] = columns + node["rows"] = rows + node.setdefault("min_columns", 1) + node.setdefault("max_columns", max(len(columns), 1)) + node.setdefault("min_rows", 1) + node.setdefault("max_rows", max(len(rows), 1)) + changed = True + for value in node.values(): + changed = cls._inject_missing_table_data(value, table_data) or changed + elif isinstance(node, list): + for value in node: + changed = cls._inject_missing_table_data(value, table_data) or changed + return changed + + def _inject_missing_image_data(self, node: Any) -> bool: + from services.chat.slide_ui_helpers import _image_element_has_explicit_data + + changed = False + if isinstance(node, dict): + if node.get("type") == "image" and not _image_element_has_explicit_data(node): + asset = self._latest_generated_asset_for_image( + is_icon=node.get("is_icon") is True, + ) + if asset is not None: + node["data"] = asset["url"] + node.setdefault("is_icon", asset.get("kind") == "icon") + prompt = asset.get("prompt") + if isinstance(prompt, str) and prompt.strip(): + node.setdefault("prompt", prompt.strip()) + changed = True + for value in node.values(): + changed = self._inject_missing_image_data(value) or changed + elif isinstance(node, list): + for value in node: + changed = self._inject_missing_image_data(value) or changed + return changed + + def _latest_generated_asset_for_image( + self, + *, + is_icon: bool, + ) -> dict[str, Any] | None: + preferred_kind = "icon" if is_icon else "image" + for asset in reversed(self._generated_assets): + if asset.get("kind") == preferred_kind and asset.get("url"): + return asset + for asset in reversed(self._generated_assets): + if asset.get("url"): + return asset + return None + + @classmethod + def _extract_chart_rows_from_user_message( + cls, + user_message: str, + ) -> list[dict[str, Any]]: + text = cls._strip_ui_context_prefix(user_message) + if not text: + return [] + + rows: list[dict[str, Any]] = [] + seen_labels: set[str] = set() + segments = re.split(r"[\n;,|]+|\s+\band\b\s+", text, flags=re.IGNORECASE) + for segment in segments: + segment = segment.strip(" \t\r\n.:-–—") + if not segment: + continue + for match in re.finditer( + r"(?P